Repository: marczych/RayTracer Branch: main Commit: 4c9f2dd389ac Files: 95 Total size: 22.5 MB Directory structure: gitextract_04poqq6s/ ├── .gitignore ├── LICENSE ├── README.md ├── models/ │ ├── bunny.orig.m │ ├── bunny10k.m │ ├── bunny500.m │ ├── cessna500.m │ ├── cessna_color.m │ ├── cessna_color500.m │ ├── dragon10k.m │ ├── dragon1K.m │ ├── fandisk_10k.m │ ├── fandisk_1k.m │ ├── gameguy.m │ ├── gameguy1k.m │ ├── gameguy_color.m │ ├── gameguy_noinfo_20k.m │ ├── gargoyle500.m │ ├── gargoyle_2k.m │ ├── gg1k_noinfo.m │ ├── test1.m │ ├── test_simp1.m │ ├── tyra_100k.m │ ├── tyra_1k.m │ └── tyra_20k.m ├── samples/ │ └── 471Presentation.pptx ├── scenes/ │ ├── GenerateBallsOnAPlane.php │ ├── allMaterials.scn │ ├── ballsInAPit.scn │ ├── ballsOnAPlane.scn │ ├── ballsOnAPlaneClose.scn │ ├── bunny.scn │ ├── dragon.scn │ ├── line.scn │ ├── lineFar.scn │ ├── modelTest1.scn │ ├── modelTest2.scn │ ├── modelTest3.scn │ ├── texturesInYoFace.scn │ ├── triangleSpheres.scn │ ├── triangleTest1.scn │ └── tumbledStones.scn └── src/ ├── Air.cpp ├── Air.h ├── BSP.cpp ├── BSP.h ├── Boundaries.cpp ├── Boundaries.h ├── Camera.cpp ├── Camera.h ├── Checkerboard.cpp ├── Checkerboard.h ├── Color.cpp ├── Color.h ├── CrissCross.cpp ├── CrissCross.h ├── FlatColor.cpp ├── FlatColor.h ├── Glass.cpp ├── Glass.h ├── Image.cpp ├── Image.h ├── Intersection.cpp ├── Intersection.h ├── Light.cpp ├── Light.h ├── Makefile ├── Marble.cpp ├── Marble.h ├── Material.cpp ├── Material.h ├── NormalMap.cpp ├── NormalMap.h ├── Object.cpp ├── Object.h ├── PerlinNoise.cpp ├── PerlinNoise.h ├── Ray.cpp ├── Ray.h ├── RayTracer.cpp ├── RayTracer.h ├── ShinyColor.cpp ├── ShinyColor.h ├── Sphere.cpp ├── Sphere.h ├── Triangle.cpp ├── Triangle.h ├── Turbulence.cpp ├── Turbulence.h ├── Vector.cpp ├── Vector.h ├── Wood.cpp ├── Wood.h ├── main.cpp └── runAndOpenAll.sh ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ RayTracer *.tga *.gch *.out *.o ================================================ FILE: LICENSE ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================ FILE: README.md ================================================ # Ray Tracer! This is a simple ray tracer developed as a final project for CSC 471 Introduction to Graphics at Cal Poly and later extended in CSC 570. It currently supports phong lighting, shadows, reflections, refractions, procedural textures, super sampling, and depth of field. The only objects supported are spheres. ## Basic Ray Tracing The basic ray tracing model is as follows. A camera is placed in the world and rays are cast from the camera's position to points on an imaginary image plane. A ray is used to determine what light would be going towards the camera at that point and direction. In our case each ray represents a pixel in the output image and the resulting color of the ray determines the color output for the pixel. ## Intersections Each ray performs an intersection test with all objects in the scene to determine the closest intersection. The closest intersection is used to determine the resulting color. [](https://raw.github.com/marczych/RayTracer/master/samples/timeline/intersection.jpeg) ## Lighting In addition to objects, lights are positioned in the world to shade the objects. ### Diffuse Diffuse lighting is determined by computing the intensity of the light at a point on the sphere. If the angle is close to the normal at that point then the intensity will be increased. The intensity determines how much of the object's color to contribute. [](https://raw.github.com/marczych/RayTracer/master/samples/timeline/diffuse.jpeg) ### Shadows Shadows are incorporated into lighting. To determine if a light source should contribute to the lighting at an intersection point a shadow ray is cast from the intersection point to the light source. If there is an intersection before the light source then this point is in the shadow of that light source. [](https://raw.github.com/marczych/RayTracer/master/samples/timeline/shadows.jpeg) ### Specular Specular lighting is calculated by computing a reflection ray by reflecting the light vector about the normal at the intersection point. The view ray is compared to the reflection ray to determine how much specular lighting to contribute. The more parallel the vectors are the more specular lighting will be added. [](https://raw.github.com/marczych/RayTracer/master/samples/timeline/specular.jpeg) ## Reflections Reflections are performed by casting rays originating from the intersection point directed along the reflection vector. A portion of the reflected ray's color will be contributed to the original intersection point based on how reflective the surface is. Fortunately this is fairly easy given the a recursive approach for casting rays. There is an arbitrary limit on how many reflections a ray can perform before stopping to improve performance and eliminate potential infinite loops. [](https://raw.github.com/marczych/RayTracer/master/samples/timeline/reflections.jpeg) ## Refractions Refractions occur when rays intersect refractive spheres. The light at the intersection point is determined by blending the reflected and refracted light at that point. A reflective ray is cast in the same way as described in the previous section. The refractive ray is calculated by bending the original ray based on the angle of incidence and the indices of refraction of the two materials. The amount of reflective and refractive light at the point is determined by the Fresnel equation. [](https://raw.github.com/marczych/RayTracer/master/samples/refraction_2_1.jpg) ## Procedural Textures and Normal Mapping Procedural textures are a simple way to texture geometry without generating any texture files by hand. They can be used to simulate lots of different materials such as wood, marble, granite, metal, stone, etc. Procedural textures are typically generated using a noise function such as Perlin noise which produces coherent noise. Given some coordinates in space the noise function will return a number between -1 and 1. Noise functions can be used to generate procedural textures by sampling several versions of the function at different resolutions. The resulting value is used to blend multiple colors together to get the final color. Perlin noise can also be used to perform normal mapping in which the normals at an intersection point are modified from their original values. This affects lighting computations so the geometry appears to be deformed from its original state. [](https://raw.github.com/marczych/RayTracer/master/samples/allMaterials_2_1.jpg) ## Super Sampling (Anti-aliasing) Aliasing is an artifact of images that have sharp, jagged edges. Super sampling is an anti-aliasing technique to smooth out jagged edges. My super sampling algorithm works by casting more initial rays and averaging neighboring samples together. For example, 2x super sampling involves calculating 4 sub points for each pixel. The following images have 1, 2, and 3 time super sampling, respectively. [](https://raw.github.com/marczych/RayTracer/master/samples/timeline/superSamplingx1.jpeg) [](https://raw.github.com/marczych/RayTracer/master/samples/timeline/superSamplingx2.jpeg) [](https://raw.github.com/marczych/RayTracer/master/samples/timeline/superSamplingx3.jpeg) ## Depth of Field Depth of field is simulated by defining a sharp plane where all objects will be in focus. The idea is that the camera doesn't detect light at a single precise point. The final image is composed of light coming from slightly different directions because of the size of the camera. Any ray passing through the same point on the sharp plane will contribute to the same pixel on the image. Slightly randomizing the originating point from the camera makes objects not on the focus plane to be out of focus. Casting many randomized rays and averaging their results creates a blurred effect. If few rays are cast then the resulting image will be grainy and noisy. The images below were rendered by casting hundreds of rays per pixel to reduce this effect. [](https://raw.github.com/marczych/RayTracer/master/samples/line_4_300.jpeg) [](https://raw.github.com/marczych/RayTracer/master/samples/lineFar_4_300.jpeg) ## Final Renders __Note:__ Images rendered on a 4-core machine using OpenMP. [](https://raw.github.com/marczych/RayTracer/master/samples/ballsInAPit_2_60.jpg) 1,665,574,078 rays in 1121m33.392s (2x super sampling and 60 rays per pixel for depth of field) [](https://raw.github.com/marczych/RayTracer/master/samples/texturesInYoFace_3_1.jpg) 66,818,420 rays in 8m14.464s (3x super sampling) [](https://raw.github.com/marczych/RayTracer/master/samples/tumbledStones_3_1.jpg) 104,733,878 rays in 11m58.162s (3x super sampling) [](https://raw.github.com/marczych/RayTracer/master/samples/ballsOnAPlaneClose_3_1.jpeg) [](https://raw.github.com/marczych/RayTracer/master/samples/ballsOnAPlane_2_50.jpeg) [](https://raw.github.com/marczych/RayTracer/master/samples/triangleSpheres_4_300.jpeg) ================================================ FILE: models/bunny.orig.m ================================================ # |Created using: # | Filtermesh -ge -rmcomp 0 -ge -flip -triang -ge # |(Timing on cpu=sgi host=squiggle) # | (_readmesh: 11.83) # |Genus: c=1 b=5 v=35947 f=69451 e=104288 genus=-556 # |Removed 0 mesh components # |Removed 1113 isolated vertices # | (_rmcomponents: 2.44) # |Genus: c=1 b=5 v=34834 f=69451 e=104288 genus=0 # |Found 0 faces to triangulate # |Genus: c=1 b=5 v=34834 f=69451 e=104288 genus=0 # | (Filtermesh: 34.71) # Created using: # Filtermesh bunny_5h.m.gz -fillholes 25 -triang # (Timing on cpu=sgi host=squiggle) # (_readmesh: 9.34) # filling in hole with 22 sides # Filled in 1 holes # Sbndsub: (1 ) 1:1 av=1 sd=0 # Sbndlen: (1 ) 22:22 av=22 sd=0 # (_fillholes: 0.72) # Found 1 faces to triangulate # Sfverts: (1 ) 22:22 av=22 sd=0 # (Filtermesh: 10.32) Vertex 1 -0.0378297 0.12794 0.00447467 Vertex 2 -0.0447794 0.128887 0.00190497 Vertex 3 -0.0680095 0.151244 0.0371953 Vertex 4 -0.00228741 0.13015 0.0232201 Vertex 5 -0.0226054 0.126675 0.00715587 Vertex 6 -0.0251078 0.125921 0.00624226 Vertex 7 -0.0371209 0.127449 0.0017956 Vertex 8 0.033213 0.112692 0.0276861 Vertex 9 -0.0255083 0.112568 0.0366767 Vertex 10 -0.0245306 0.112636 0.0373469 Vertex 11 0.0274031 0.12156 0.0212208 Vertex 12 -0.0628961 0.158419 -0.0175871 Vertex 13 0.0400813 0.104202 0.0221684 Vertex 14 0.0451532 0.0931968 0.0111604 Vertex 15 -0.0324965 0.174231 -0.00238999 Vertex 16 -0.0724944 0.126022 0.052902 Vertex 17 0.00799809 0.131294 0.0169006 Vertex 18 0.0400265 0.10701 0.00816505 Vertex 19 0.0371657 0.0997172 -0.00981258 Vertex 20 -0.0905968 0.140629 0.0221693 Vertex 21 -0.0843417 0.109004 0.0243603 Vertex 22 -0.0688709 0.156258 0.0147705 Vertex 23 -0.0844782 0.152284 0.0269844 Vertex 24 0.00536718 0.125777 0.0317922 Vertex 25 0.00893209 0.124393 0.0330753 Vertex 26 -0.0315414 0.125778 0.00387502 Vertex 27 -0.049674 0.141672 0.0123895 Vertex 28 -0.0784825 0.135851 0.0506454 Vertex 29 -0.00425882 0.128035 0.0283342 Vertex 30 -0.0454789 0.123431 0.0251209 Vertex 31 -0.0235385 0.11268 0.0379979 Vertex 32 -0.0790203 0.0935614 -0.0105962 Vertex 33 0.0235742 0.124212 0.0226421 Vertex 34 -0.0902127 0.122664 0.0052855 Vertex 35 0.0403742 0.101353 -0.00282827 Vertex 36 0.041224 0.101389 -0.000814438 Vertex 37 -0.0859766 0.117044 0.000228439 Vertex 38 -0.0499053 0.141681 0.0133989 Vertex 39 -0.0325018 0.177105 -0.00443384 Vertex 40 -0.0774954 0.147028 0.0416906 Vertex 41 0.0240312 0.1242 0.0213823 Vertex 42 -0.0225205 0.112681 0.0384786 Vertex 43 -0.0202018 0.177138 -0.0227808 Vertex 44 -0.0381912 0.168168 -0.0127822 Vertex 45 -0.0214993 0.112665 0.0388138 Vertex 46 -0.0322365 0.126297 0.00653811 Vertex 47 -0.0303734 0.125779 0.00722581 Vertex 48 0.0104221 0.127848 0.0278469 Vertex 49 -0.0463671 0.133058 0.0160254 Vertex 50 -0.0263079 0.125672 0.00579971 Vertex 51 -0.0238556 0.126292 0.00669874 Vertex 52 0.0174667 0.122816 0.0304302 Vertex 53 0.0184111 0.122524 0.0307587 Vertex 54 0.0166382 0.123302 0.0301317 Vertex 55 0.0337656 0.111689 0.027893 Vertex 56 0.0320484 0.11465 0.0272407 Vertex 57 -0.0405044 0.166738 0.00354035 Vertex 58 -0.0891386 0.129503 0.00423129 Vertex 59 -0.0537547 0.143134 0.0264016 Vertex 60 0.0429765 0.0987175 0.0181666 Vertex 61 0.042638 0.101488 0.0111603 Vertex 62 0.040945 0.0957511 0.0281635 Vertex 63 -0.055076 0.154226 0.0167194 Vertex 64 -0.0246921 0.156571 -0.00408158 Vertex 65 -0.0685096 0.147001 0.0412847 Vertex 66 -0.0715343 0.141411 0.0464325 Vertex 67 -0.0700345 0.0631474 0.0200567 Vertex 68 -0.0904383 0.119966 0.00529664 Vertex 69 -0.0754938 0.127441 0.0530403 Vertex 70 -0.0405211 0.16525 0.00379284 Vertex 71 -0.0644897 0.161538 -0.0184978 Vertex 72 -0.0343115 0.126654 0.00282732 Vertex 73 -0.0460392 0.132757 0.0146796 Vertex 74 -0.0682754 0.155222 0.00480981 Vertex 75 -0.0921421 0.116123 0.0383102 Vertex 76 0.00630024 0.125509 0.0321214 Vertex 77 0.00717458 0.125139 0.032446 Vertex 78 0.00805559 0.124767 0.0327601 Vertex 79 -0.0324333 0.126109 0.00355422 Vertex 80 -0.0633574 0.155908 0.0123853 Vertex 81 0.0314417 0.115539 0.0270138 Vertex 82 0.0308488 0.116432 0.0267923 Vertex 83 0.0396492 0.0970274 -0.00677557 Vertex 84 -0.0715237 0.165101 -0.0167379 Vertex 85 -0.0725643 0.165173 -0.0170441 Vertex 86 -0.00749309 0.122405 0.0352331 Vertex 87 -0.008499 0.12243 0.035017 Vertex 88 0.0289099 0.0929198 0.0437028 Vertex 89 -0.0135013 0.163627 -0.011822 Vertex 90 -0.0434958 0.166715 0.00391556 Vertex 91 -0.0302474 0.125253 0.00290344 Vertex 92 -0.0427308 0.169809 0.000879537 Vertex 93 -0.0205091 0.112696 0.0389743 Vertex 94 -0.0905331 0.135117 0.0212107 Vertex 95 -0.0764984 0.127442 0.0532158 Vertex 96 -0.0194912 0.112675 0.0392933 Vertex 97 -0.0864902 0.103559 0.00540359 Vertex 98 -0.0500639 0.141673 0.0143962 Vertex 99 0.0322675 0.102123 0.0362847 Vertex 100 -0.0344941 0.171246 -0.000779029 Vertex 101 -0.0764811 0.141399 0.0471717 Vertex 102 -0.0764751 0.146968 0.0421376 Vertex 103 -0.0394762 0.17111 0.000601324 Vertex 104 0.0391769 0.106978 0.0201683 Vertex 105 -0.085121 0.108927 0.00536277 Vertex 106 0.0452897 0.0861791 0.0201631 Vertex 107 0.0172248 0.12732 0.0217261 Vertex 108 -0.000517251 0.0386237 0.0468325 Vertex 109 0.00049898 0.0385943 0.0466363 Vertex 110 0.00148534 0.0385845 0.0464325 Vertex 111 -0.0157632 0.12799 0.00385748 Vertex 112 -0.0725199 0.141421 0.0466976 Vertex 113 -0.0504991 0.156412 0.0101915 Vertex 114 -0.0907438 0.135107 0.0202099 Vertex 115 -0.0754962 0.141423 0.0471972 Vertex 116 -0.0355139 0.176726 -0.00796363 Vertex 117 0.0406665 0.105637 0.00516291 Vertex 118 -0.0920359 0.126943 0.0332532 Vertex 119 0.037492 0.0983062 -0.0097724 Vertex 120 0.0404914 0.098527 -0.00482713 Vertex 121 0.0418428 0.0986036 -0.00180869 Vertex 122 0.0306552 0.102095 0.0374778 Vertex 123 0.0457525 0.0862068 0.0131643 Vertex 124 -0.0305333 0.178655 -0.00565353 Vertex 125 -0.028415 0.178753 -0.00594863 Vertex 126 -0.0714932 0.121802 0.0535223 Vertex 127 -0.0725041 0.146981 0.0423864 Vertex 128 -0.0610006 0.129721 0.0398956 Vertex 129 0.0426086 0.0930422 0.0261716 Vertex 130 -0.00885946 0.13031 0.0150517 Vertex 131 -0.0173344 0.128368 0.0119773 Vertex 132 -0.0313084 0.126018 0.00688499 Vertex 133 -0.0700706 0.155642 0.00707306 Vertex 134 0.012157 0.123544 0.032833 Vertex 135 -0.0093317 0.127279 0.0279745 Vertex 136 -0.0657234 0.153927 0.0319321 Vertex 137 -0.0717789 0.154685 0.0298089 Vertex 138 0.0193029 0.12103 0.032512 Vertex 139 -0.0425159 0.17187 -0.00332083 Vertex 140 -0.0442176 0.170815 -0.00391429 Vertex 141 -0.0574617 0.0399955 0.0466824 Vertex 142 -0.0564911 0.0400264 0.0468768 Vertex 143 -0.0554873 0.0400326 0.0469712 Vertex 144 -0.0544992 0.0400332 0.0469658 Vertex 145 -0.018505 0.112714 0.0394706 Vertex 146 -0.0504965 0.157865 0.00943584 Vertex 147 -0.0754858 0.146995 0.0422823 Vertex 148 -0.0137239 0.16215 -0.0118322 Vertex 149 -0.0735613 0.16372 -0.0149978 Vertex 150 0.0386678 0.106943 0.0231645 Vertex 151 0.0390362 0.108381 0.0141662 Vertex 152 0.0421962 0.0929549 -0.00479827 Vertex 153 -0.0454996 0.163749 0.00555272 Vertex 154 -0.0435232 0.163746 0.00524284 Vertex 155 -0.0424866 0.0396651 0.043393 Vertex 156 -0.0415057 0.0396254 0.0430594 Vertex 157 -0.0703661 0.16678 -0.0206717 Vertex 158 -0.025416 0.0905129 0.0490114 Vertex 159 -0.0352058 0.126987 0.0025067 Vertex 160 -0.0872747 0.139127 0.00719289 Vertex 161 -0.0147356 0.124887 0.0290085 Vertex 162 -0.0360017 0.17408 -0.0118959 Vertex 163 -0.089164 0.0928946 0.0114433 Vertex 164 -0.033385 0.126374 0.00317306 Vertex 165 0.0192795 0.122165 0.0310901 Vertex 166 -0.0646073 0.15754 -0.0113176 Vertex 167 -0.0641033 0.156361 -0.011127 Vertex 168 -0.0635915 0.15525 -0.0109401 Vertex 169 -0.0709666 0.138448 -0.00754922 Vertex 170 -0.0705473 0.1414 0.0460484 Vertex 171 -0.0755718 0.165165 -0.0201548 Vertex 172 -0.0767116 0.165247 -0.022942 Vertex 173 0.0296197 0.117006 0.0277632 Vertex 174 0.0302544 0.115002 0.0294335 Vertex 175 0.0405971 0.101404 0.0241737 Vertex 176 0.0404422 0.105635 0.0151656 Vertex 177 -0.0174953 0.112701 0.0395679 Vertex 178 -0.073496 0.147014 0.0424214 Vertex 179 -0.0734653 0.11597 0.0519419 Vertex 180 0.0134925 0.114016 0.0379994 Vertex 181 0.0124885 0.114028 0.0382457 Vertex 182 -0.0826299 0.110259 0.0284001 Vertex 183 0.0417216 0.100008 -0.000812454 Vertex 184 -0.077491 0.135849 0.0507593 Vertex 185 -0.0164902 0.112704 0.0398029 Vertex 186 -0.0154996 0.112736 0.0400881 Vertex 187 -0.0354998 0.17123 0.000174393 Vertex 188 -0.0364553 0.171237 0.000642707 Vertex 189 -0.0375058 0.171208 0.000818011 Vertex 190 -0.0384996 0.171162 0.000767348 Vertex 191 -0.0619095 0.118087 -0.0102757 Vertex 192 -0.070971 0.166609 -0.0480118 Vertex 193 -0.091466 0.14613 0.0241501 Vertex 194 -0.0144894 0.112737 0.0404341 Vertex 195 -0.0134864 0.112741 0.0406725 Vertex 196 -0.012499 0.112778 0.04085 Vertex 197 0.00347876 0.039945 0.0459765 Vertex 198 -0.0215095 0.114043 0.0376946 Vertex 199 -0.0903131 0.126767 0.00528424 Vertex 200 0.0104915 0.114065 0.0387753 Vertex 201 0.0276403 0.118218 0.0284429 Vertex 202 0.0309816 0.102484 -0.0145328 Vertex 203 0.0424909 0.101472 0.00517268 Vertex 204 0.000497836 0.114196 0.0414191 Vertex 205 -0.0675175 0.146991 0.0409028 Vertex 206 0.0424058 0.101483 0.00416631 Vertex 207 0.0405495 0.0999198 -0.00379356 Vertex 208 -0.0724896 0.12743 0.0524304 Vertex 209 -0.0415986 0.169934 0.00129157 Vertex 210 -0.0145885 0.128899 0.00863716 Vertex 211 0.0043237 0.131753 0.0112849 Vertex 212 -0.0635102 0.151152 0.0361873 Vertex 213 0.034591 0.113857 0.0224952 Vertex 214 0.0213151 0.0393899 0.0411211 Vertex 215 0.0175297 0.092684 0.048312 Vertex 216 0.00701986 0.131464 0.0165435 Vertex 217 -0.0114796 0.112753 0.0411508 Vertex 218 0.0381875 0.10978 0.0131678 Vertex 219 -0.0793995 0.0962934 -0.0095136 Vertex 220 0.0412927 0.101424 0.0211601 Vertex 221 0.0419266 0.101462 0.0171593 Vertex 222 -0.0787984 0.113337 -0.0032043 Vertex 223 -0.0779682 0.135412 -0.00525448 Vertex 224 0.00613123 0.105885 -0.0208912 Vertex 225 0.00913637 0.105871 -0.0204027 Vertex 226 0.0111199 0.129735 0.0223368 Vertex 227 0.00437534 0.131145 0.0198749 Vertex 228 -0.00201716 0.131125 0.0175388 Vertex 229 -0.0363521 0.126723 0.0183002 Vertex 230 -0.0160775 0.128732 0.0124337 Vertex 231 -0.0331235 0.126633 0.00621772 Vertex 232 0.00953758 0.128186 0.0275085 Vertex 233 -0.0221316 0.122996 0.0264112 Vertex 234 -0.0709341 0.162789 -0.0122264 Vertex 235 -0.0620602 0.155611 0.00849054 Vertex 236 -0.0468392 0.132859 0.0202702 Vertex 237 -0.0410267 0.172571 -0.00282243 Vertex 238 -0.0385594 0.173184 -0.00190958 Vertex 239 -0.0141081 0.128922 0.00736661 Vertex 240 -0.0564742 0.041367 0.0464242 Vertex 241 -0.0554898 0.041398 0.0465154 Vertex 242 -0.0544756 0.0413314 0.0465715 Vertex 243 -0.0534963 0.0413918 0.0463882 Vertex 244 -0.0526044 0.041455 0.0460966 Vertex 245 -0.0415348 0.163761 0.00444738 Vertex 246 -0.00473635 0.13076 0.00793547 Vertex 247 -0.0898767 0.135147 0.0252168 Vertex 248 -0.00862433 0.122038 -0.0113292 Vertex 249 -0.0475127 0.0411749 0.0444313 Vertex 250 -0.0464937 0.0411703 0.0442462 Vertex 251 -0.0454852 0.0411575 0.0440424 Vertex 252 -0.0424856 0.0410553 0.0431368 Vertex 253 -0.0414945 0.041025 0.0428519 Vertex 254 -0.0650951 0.162442 -0.0187197 Vertex 255 -0.0336466 0.125738 0.0192922 Vertex 256 -0.0806268 0.150792 0.0343829 Vertex 257 -0.0650964 0.155112 0.00596226 Vertex 258 -0.00214115 0.127727 0.0291435 Vertex 259 -0.0897483 0.0929448 0.0154361 Vertex 260 0.0208676 0.121124 0.0316774 Vertex 261 0.0201038 0.121698 0.0313961 Vertex 262 -0.0652623 0.158339 -0.0115587 Vertex 263 -0.0319348 0.125225 0.000800634 Vertex 264 -0.0328435 0.125555 0.000439943 Vertex 265 -0.0337259 0.125903 0.000119567 Vertex 266 -0.0346506 0.126197 -0.000232823 Vertex 267 -0.0355882 0.126454 -0.000576513 Vertex 268 -0.0838755 0.106118 0.000396239 Vertex 269 -0.0164965 0.114086 0.0389356 Vertex 270 0.0422361 0.101506 0.0151693 Vertex 271 0.0394332 0.101324 0.027167 Vertex 272 0.0402348 0.101386 0.0251818 Vertex 273 0.0395793 0.107012 0.0171684 Vertex 274 -0.0524989 0.157892 0.00946562 Vertex 275 -0.0494896 0.157875 0.00921755 Vertex 276 -0.0485004 0.157854 0.0090451 Vertex 277 -0.0104878 0.112778 0.0413082 Vertex 278 -0.0374903 0.172653 -0.000576721 Vertex 279 0.0417828 0.101446 0.0181564 Vertex 280 0.0448261 0.0875458 0.0221634 Vertex 281 -0.0300853 0.179019 -0.00589649 Vertex 282 -0.0235755 0.157761 -0.0033973 Vertex 283 0.0234635 0.12256 0.0268857 Vertex 284 -0.00779065 0.130523 0.0125627 Vertex 285 0.04086 0.101423 0.0231764 Vertex 286 0.0382413 0.108427 0.0210592 Vertex 287 -0.0275027 0.115261 0.0337596 Vertex 288 -0.0255204 0.115294 0.0339151 Vertex 289 -0.021518 0.115416 0.036565 Vertex 290 -0.0205005 0.115412 0.03703 Vertex 291 -0.0754994 0.115715 0.0515239 Vertex 292 -0.000524008 0.041433 0.0467891 Vertex 293 0.000487446 0.041412 0.0465786 Vertex 294 0.00148054 0.0413996 0.0463959 Vertex 295 0.00248318 0.0413744 0.0461608 Vertex 296 0.00348805 0.0413645 0.0460201 Vertex 297 0.00450182 0.0413372 0.0458645 Vertex 298 0.00549603 0.0413259 0.0457036 Vertex 299 0.00648432 0.0413231 0.0455852 Vertex 300 0.00748602 0.041302 0.0454759 Vertex 301 0.00849456 0.0412846 0.0453159 Vertex 302 -0.0504978 0.159322 0.00851944 Vertex 303 -0.0484837 0.159357 0.00832828 Vertex 304 -0.0464924 0.159333 0.00779524 Vertex 305 -0.0094881 0.112787 0.0415502 Vertex 306 -0.00849378 0.112803 0.0415796 Vertex 307 -0.0755022 0.131669 0.0524935 Vertex 308 0.0269735 0.121605 0.0224835 Vertex 309 -0.0609269 0.155849 0.0219449 Vertex 310 -0.0175043 0.114096 0.0387143 Vertex 311 0.0303038 0.118886 0.0223059 Vertex 312 0.038029 0.105425 -0.00179734 Vertex 313 -0.0824071 0.136209 -0.001703 Vertex 314 0.0380176 0.101228 -0.00786632 Vertex 315 -0.00749383 0.112788 0.0415528 Vertex 316 -0.0365049 0.169731 0.000981263 Vertex 317 -0.0754975 0.123189 0.0531282 Vertex 318 0.0354525 0.106753 -0.0069512 Vertex 319 -0.0714939 0.126019 0.0527835 Vertex 320 0.0377471 0.104052 -0.00484079 Vertex 321 0.0414464 0.101443 0.020163 Vertex 322 0.0459345 0.0862193 0.0101703 Vertex 323 -0.0708515 0.0937008 -0.0159297 Vertex 324 -0.0698326 0.0937229 -0.0162704 Vertex 325 -0.0738109 0.0935956 -0.0146814 Vertex 326 -0.071815 0.0936645 -0.0155813 Vertex 327 -0.072824 0.0936306 -0.0150907 Vertex 328 -0.0274399 0.180304 -0.00715734 Vertex 329 -0.025431 0.180214 -0.00870569 Vertex 330 0.0102401 0.13009 0.0220074 Vertex 331 -0.0554437 0.158541 0.0079523 Vertex 332 -0.059742 0.156334 0.00641085 Vertex 333 -0.0624591 0.155071 0.0054624 Vertex 334 -0.0686509 0.155409 0.00612964 Vertex 335 -0.0354711 0.126342 0.0186171 Vertex 336 -0.023563 0.126621 0.00971624 Vertex 337 -0.0340011 0.127005 0.00589371 Vertex 338 -0.072851 0.148958 0.0401319 Vertex 339 -0.0719375 0.16298 -0.0125698 Vertex 340 -0.0469091 0.134066 0.0158053 Vertex 341 -0.0697412 0.154452 0.0305168 Vertex 342 -0.0772099 0.0954309 0.0368548 Vertex 343 -0.0397448 0.172952 -0.00234724 Vertex 344 -0.0574975 0.0426993 0.0453715 Vertex 345 -0.0564882 0.042714 0.0457133 Vertex 346 -0.0554949 0.0427291 0.0458455 Vertex 347 -0.0544973 0.0427375 0.0458563 Vertex 348 -0.0534987 0.0427392 0.045857 Vertex 349 -0.0525195 0.0426931 0.0456595 Vertex 350 -0.0372497 0.126436 -0.00264816 Vertex 351 0.0390771 0.099844 -0.00681802 Vertex 352 -0.0875792 0.134961 0.00324767 Vertex 353 -0.0484986 0.0425777 0.0442245 Vertex 354 -0.0475009 0.0425468 0.0439593 Vertex 355 -0.0465061 0.0425232 0.0438042 Vertex 356 -0.0454992 0.0425256 0.0437126 Vertex 357 -0.0445079 0.0424992 0.043443 Vertex 358 -0.0424905 0.0424327 0.0427417 Vertex 359 -0.0414965 0.0424145 0.0425934 Vertex 360 -0.040483 0.0423569 0.0419938 Vertex 361 -0.0394907 0.0422995 0.0416287 Vertex 362 -0.0702433 0.163232 -0.0134117 Vertex 363 -0.0693658 0.16286 -0.0130912 Vertex 364 -0.0685971 0.162283 -0.0128033 Vertex 365 -0.0678768 0.1616 -0.0125361 Vertex 366 -0.0672213 0.1608 -0.0122924 Vertex 367 -0.0665531 0.160013 -0.0120422 Vertex 368 -0.0659186 0.159142 -0.0118027 Vertex 369 -0.0310902 0.124844 0.00108587 Vertex 370 -0.030417 0.0360576 0.0517185 Vertex 371 -0.0285156 0.0433359 0.0513164 Vertex 372 -0.0274517 0.043312 0.0519115 Vertex 373 -0.0263289 0.0434924 0.0526862 Vertex 374 -0.0254805 0.0434932 0.0531599 Vertex 375 -0.0245014 0.043543 0.0534366 Vertex 376 -0.023487 0.0435372 0.0536017 Vertex 377 -0.0224934 0.0435545 0.0535652 Vertex 378 0.00943169 0.130854 0.0188531 Vertex 379 -0.0435085 0.165227 0.00470373 Vertex 380 -0.0445007 0.165214 0.00483168 Vertex 381 0.0219297 0.123716 0.0263137 Vertex 382 -0.0237608 0.156715 -0.0053038 Vertex 383 -0.00664529 0.1307 0.0129838 Vertex 384 -0.0145323 0.043279 0.0510718 Vertex 385 -0.0135206 0.0432479 0.0507363 Vertex 386 -0.012539 0.0432081 0.0504383 Vertex 387 -0.011518 0.0431769 0.0500228 Vertex 388 -0.0105379 0.0431327 0.0497176 Vertex 389 -0.0095237 0.0431051 0.0494016 Vertex 390 -0.00853122 0.0430617 0.0490142 Vertex 391 -0.0075399 0.0430305 0.0487452 Vertex 392 -0.00654714 0.043 0.0484741 Vertex 393 -0.00554666 0.0429634 0.0481135 Vertex 394 -0.0045458 0.042944 0.0478735 Vertex 395 -0.00354236 0.0429091 0.0474905 Vertex 396 -0.00253313 0.0428829 0.047136 Vertex 397 -0.000523566 0.0428273 0.0465064 Vertex 398 0.000556364 0.0427979 0.0462128 Vertex 399 0.00148401 0.0427923 0.0460657 Vertex 400 0.00249537 0.0427747 0.0458993 Vertex 401 0.00349523 0.0427434 0.0456833 Vertex 402 0.00450037 0.0427385 0.0456181 Vertex 403 0.0055205 0.0427186 0.0455303 Vertex 404 0.00649466 0.0427198 0.0454361 Vertex 405 0.00748686 0.0427091 0.0452774 Vertex 406 0.00848754 0.0426921 0.0451471 Vertex 407 0.00949394 0.0426698 0.0450285 Vertex 408 -0.0312712 0.125373 0.00251041 Vertex 409 0.0185111 0.114004 0.0370685 Vertex 410 -0.0166719 0.128014 0.0194984 Vertex 411 -0.00948977 0.114167 0.0408028 Vertex 412 -0.0114786 0.114128 0.0403922 Vertex 413 -0.0134888 0.11412 0.0398002 Vertex 414 -0.0255274 0.113962 0.0353265 Vertex 415 -0.0530543 0.14469 0.0223994 Vertex 416 -0.0623396 0.172509 -0.0536126 Vertex 417 -0.0381364 0.171203 -0.0118442 Vertex 418 -0.0538885 0.131144 0.0343613 Vertex 419 -0.065797 0.132562 0.0435297 Vertex 420 0.0425599 0.101502 0.0121632 Vertex 421 0.0269244 0.118903 0.0281816 Vertex 422 -0.0384984 0.169734 0.00180247 Vertex 423 -0.0938575 0.120136 0.0242923 Vertex 424 0.0455621 0.0889987 0.00417598 Vertex 425 -0.00649004 0.112763 0.0415025 Vertex 426 -0.00548831 0.112771 0.0416249 Vertex 427 -0.0768441 0.113421 -0.00459179 Vertex 428 -0.0461647 0.162128 -0.00806097 Vertex 429 -0.0411461 0.162173 -0.0113613 Vertex 430 -0.0506704 0.0680761 0.0375114 Vertex 431 -0.0358262 0.0929298 -0.0238031 Vertex 432 -0.0368263 0.0929138 -0.0236695 Vertex 433 -0.00449355 0.112805 0.041803 Vertex 434 0.0398162 0.107019 0.0141667 Vertex 435 -0.0715276 0.14003 0.0472238 Vertex 436 -0.0845757 0.151155 0.0298105 Vertex 437 -0.00349089 0.112806 0.0419152 Vertex 438 0.00931098 0.130351 0.0216675 Vertex 439 -0.0611888 0.155469 0.00589931 Vertex 440 -0.0686715 0.165205 -0.0529941 Vertex 441 -0.0657827 0.158229 -0.0103034 Vertex 442 -0.0646035 0.156332 -0.00986181 Vertex 443 -0.00112962 0.125371 0.0323555 Vertex 444 -0.0248162 0.126254 0.00926143 Vertex 445 -0.0388176 0.128112 0.00411022 Vertex 446 -0.0747959 0.149331 0.0394056 Vertex 447 0.0112941 0.127457 0.0281604 Vertex 448 -0.0707468 0.161979 -0.010709 Vertex 449 0.0184391 0.121423 0.0322194 Vertex 450 -0.0677549 0.154168 0.0312275 Vertex 451 -0.064733 0.15377 0.0322824 Vertex 452 -0.0574962 0.0440189 0.0444763 Vertex 453 -0.0564899 0.0440403 0.0448345 Vertex 454 -0.0554809 0.0440191 0.0450323 Vertex 455 -0.0544952 0.0440117 0.0450302 Vertex 456 -0.0535025 0.0440354 0.0449405 Vertex 457 -0.0515259 0.0439564 0.0445165 Vertex 458 -0.0505573 0.0439128 0.0441317 Vertex 459 -0.0495011 0.0439447 0.0438293 Vertex 460 -0.0485184 0.0438796 0.0435224 Vertex 461 -0.0475121 0.0438565 0.0432608 Vertex 462 -0.0465128 0.0438401 0.043121 Vertex 463 -0.0455024 0.0438631 0.0430524 Vertex 464 -0.0445045 0.0438483 0.042919 Vertex 465 -0.0435038 0.0438236 0.0424673 Vertex 466 -0.0425002 0.0437706 0.0420539 Vertex 467 -0.0414888 0.0437926 0.0421195 Vertex 468 -0.0404988 0.043751 0.0418177 Vertex 469 -0.039497 0.0436994 0.0413132 Vertex 470 -0.0384894 0.0436513 0.0409963 Vertex 471 -0.0143198 0.128437 0.0203415 Vertex 472 -0.0229389 0.126187 0.00412352 Vertex 473 -0.0241862 0.125789 0.00366503 Vertex 474 -0.0255023 0.125351 0.00317915 Vertex 475 -0.0266954 0.125077 0.00273937 Vertex 476 -0.0278953 0.124828 0.00229374 Vertex 477 -0.028881 0.124884 0.00195054 Vertex 478 -0.0300707 0.124739 0.00148409 Vertex 479 -0.0294793 0.0446083 0.0503994 Vertex 480 -0.0284587 0.0446173 0.0507119 Vertex 481 -0.0274798 0.0446461 0.0507675 Vertex 482 -0.0264922 0.0447022 0.0511549 Vertex 483 -0.0254758 0.0447668 0.0519525 Vertex 484 -0.0244827 0.044849 0.0526821 Vertex 485 -0.0234833 0.0448815 0.0530288 Vertex 486 -0.0224929 0.0448955 0.0530527 Vertex 487 -0.0205217 0.0448565 0.0528623 Vertex 488 -0.0664988 0.146992 0.0401715 Vertex 489 -0.0174883 0.044685 0.0517611 Vertex 490 -0.0165095 0.0446732 0.0513338 Vertex 491 -0.0155403 0.0446621 0.0510487 Vertex 492 -0.0145231 0.0446315 0.0506096 Vertex 493 -0.0135516 0.0445689 0.0502862 Vertex 494 -0.0125497 0.0445369 0.0499253 Vertex 495 -0.0115453 0.0445033 0.0495732 Vertex 496 -0.0105391 0.0444694 0.0492224 Vertex 497 -0.0095351 0.0444416 0.0488648 Vertex 498 -0.00853579 0.044404 0.0484956 Vertex 499 -0.00752629 0.0443832 0.0481509 Vertex 500 -0.00652958 0.0443624 0.0478753 Vertex 501 -0.0055195 0.0443362 0.047543 Vertex 502 -0.00452146 0.0443187 0.0472734 Vertex 503 -0.00351628 0.0442826 0.04692 Vertex 504 -0.00251639 0.0442645 0.0466529 Vertex 505 -0.00150749 0.0442279 0.0463824 Vertex 506 -0.000506085 0.0442149 0.046198 Vertex 507 0.000494981 0.0442085 0.0460563 Vertex 508 0.00150093 0.0441835 0.0459725 Vertex 509 0.00250242 0.0441898 0.0459568 Vertex 510 0.00350312 0.0441648 0.0458711 Vertex 511 0.00450017 0.0441843 0.0459802 Vertex 512 0.00550628 0.0441375 0.0457857 Vertex 513 0.00650269 0.044152 0.0457422 Vertex 514 0.00751849 0.0440876 0.0454461 Vertex 515 0.00849016 0.0441134 0.0451901 Vertex 516 0.00949781 0.0440631 0.0448456 Vertex 517 0.0194908 0.113962 0.0368661 Vertex 518 -0.000436317 0.122463 0.0356275 Vertex 519 0.00748358 0.11412 0.0398951 Vertex 520 -0.010493 0.114167 0.0405696 Vertex 521 -0.0124865 0.114128 0.0400495 Vertex 522 -0.023546 0.114036 0.0366055 Vertex 523 -0.0245515 0.114015 0.0358596 Vertex 524 -0.0195083 0.11546 0.0373373 Vertex 525 -0.0795053 0.148405 0.0389114 Vertex 526 -0.0784976 0.148406 0.0395361 Vertex 527 -0.0775017 0.148428 0.039927 Vertex 528 -0.0444613 0.12936 0.0182577 Vertex 529 -0.0804668 0.131637 0.0521945 Vertex 530 -0.0514917 0.154976 0.0111 Vertex 531 -0.0395009 0.16971 0.00189803 Vertex 532 0.0385319 0.0997972 -0.00779458 Vertex 533 0.0379028 0.0997575 -0.00879746 Vertex 534 0.0451983 0.0889806 0.0171667 Vertex 535 0.000137104 0.104495 -0.0221519 Vertex 536 -0.0738111 0.0907253 -0.0150698 Vertex 537 -0.0728162 0.0907583 -0.0154663 Vertex 538 -0.0718188 0.0907915 -0.0158595 Vertex 539 -0.070799 0.0908224 -0.0163205 Vertex 540 -0.0688127 0.0908552 -0.0166124 Vertex 541 -0.0698172 0.0908437 -0.0164973 Vertex 542 -0.033107 0.125984 0.00180258 Vertex 543 0.0255618 0.120425 0.027665 Vertex 544 -0.039513 0.166742 0.00312951 Vertex 545 -0.0384463 0.166779 0.00239389 Vertex 546 -0.00482205 0.130969 0.0150835 Vertex 547 -0.0735195 0.135848 0.0500526 Vertex 548 0.00828872 0.130472 0.0213052 Vertex 549 -0.015947 0.124632 0.0285893 Vertex 550 -0.0661935 0.155092 0.00556387 Vertex 551 -0.0651326 0.157423 -0.0100634 Vertex 552 -0.0671177 0.159814 -0.0107973 Vertex 553 -0.0222267 0.0906414 0.0528718 Vertex 554 -0.0349319 0.127285 0.00554823 Vertex 555 -0.0398081 0.128271 0.00374611 Vertex 556 -0.0920085 0.116136 0.0393096 Vertex 557 -0.00402267 0.0975528 0.0526596 Vertex 558 -0.0669805 0.1589 -0.00929727 Vertex 559 -0.0127755 0.126776 0.0267341 Vertex 560 -0.0139293 0.126622 0.0263262 Vertex 561 0.047185 0.0692848 0.0242283 Vertex 562 -0.0574743 0.0452883 0.0435332 Vertex 563 -0.0564615 0.0452367 0.0437224 Vertex 564 -0.0554801 0.0452738 0.0437595 Vertex 565 -0.052516 0.0452355 0.0436109 Vertex 566 -0.0515128 0.0452783 0.043411 Vertex 567 -0.0505103 0.0452467 0.0429196 Vertex 568 -0.0495176 0.0451863 0.0426306 Vertex 569 -0.0485029 0.0452121 0.0424266 Vertex 570 -0.047499 0.0451812 0.0421654 Vertex 571 -0.0464981 0.0451704 0.0419279 Vertex 572 -0.0454982 0.045182 0.0420491 Vertex 573 -0.044496 0.0451943 0.0419603 Vertex 574 -0.0434918 0.0451945 0.0416496 Vertex 575 -0.0424936 0.045133 0.0413379 Vertex 576 -0.0414975 0.045132 0.0414403 Vertex 577 -0.0404955 0.0451407 0.0414639 Vertex 578 -0.0395021 0.0450562 0.0411081 Vertex 579 -0.038496 0.0450464 0.0406484 Vertex 580 -0.069527 0.156219 -3.70248e-05 Vertex 581 -0.0725884 0.155473 0.0265843 Vertex 582 -0.0758153 0.155373 0.0254598 Vertex 583 -0.00601771 0.0990415 0.0504631 Vertex 584 0.0296092 0.114943 -0.00583865 Vertex 585 -0.0918829 0.116106 0.0333156 Vertex 586 -0.0294372 0.045874 0.0494957 Vertex 587 -0.02847 0.045966 0.0500228 Vertex 588 -0.0274618 0.045988 0.0503593 Vertex 589 -0.0264467 0.0459901 0.0505652 Vertex 590 -0.025466 0.0460651 0.0509844 Vertex 591 -0.0244855 0.0461464 0.0516096 Vertex 592 -0.0234881 0.0462034 0.0522022 Vertex 593 -0.0224893 0.0462052 0.0523041 Vertex 594 -0.0214969 0.0461967 0.0522939 Vertex 595 -0.0205102 0.0461853 0.0521703 Vertex 596 -0.0195364 0.0461211 0.0518679 Vertex 597 -0.0185448 0.0460852 0.0515079 Vertex 598 -0.0175443 0.0460366 0.0510389 Vertex 599 -0.0165385 0.0459978 0.0505746 Vertex 600 -0.0155349 0.0459646 0.0502157 Vertex 601 -0.0145321 0.0459268 0.0498594 Vertex 602 -0.0135288 0.0458914 0.0493586 Vertex 603 -0.012533 0.0458468 0.048979 Vertex 604 -0.0115387 0.0458293 0.048671 Vertex 605 -0.0105333 0.0457993 0.0483516 Vertex 606 -0.0095211 0.045789 0.0480158 Vertex 607 -0.00850771 0.0457646 0.047699 Vertex 608 -0.00750575 0.0457415 0.0474579 Vertex 609 -0.00649796 0.0457161 0.0472731 Vertex 610 -0.00549495 0.0456998 0.0471564 Vertex 611 -0.00449363 0.0456798 0.0470573 Vertex 612 -0.00349731 0.0456721 0.0469862 Vertex 613 -0.00248901 0.0456504 0.0469622 Vertex 614 -0.00149685 0.0456811 0.047029 Vertex 615 -0.000499367 0.0456802 0.0470389 Vertex 616 0.000501495 0.0457296 0.0472541 Vertex 617 0.00150908 0.0458287 0.0477014 Vertex 618 0.00251634 0.0459065 0.0480561 Vertex 619 0.00351191 0.0459363 0.0483003 Vertex 620 0.00450167 0.0459455 0.0484199 Vertex 621 0.00549045 0.0459551 0.048539 Vertex 622 0.00647697 0.0459611 0.0484012 Vertex 623 0.00747158 0.0458651 0.0478111 Vertex 624 0.00845531 0.04577 0.0469205 Vertex 625 0.00953188 0.0455622 0.0461832 Vertex 626 -0.0354984 0.115235 0.0327878 Vertex 627 -0.033517 0.115303 0.0329858 Vertex 628 -0.034501 0.115223 0.0328885 Vertex 629 -0.0484911 0.115278 0.0334198 Vertex 630 -0.00248977 0.112799 0.0419964 Vertex 631 0.0429479 0.0845778 -0.00579145 Vertex 632 -0.00749309 0.114174 0.0409291 Vertex 633 -0.00648723 0.114138 0.040862 Vertex 634 -0.0343726 0.127227 0.0072164 Vertex 635 -0.0675131 0.145595 0.0418048 Vertex 636 -0.0685186 0.1456 0.0424246 Vertex 637 -0.076485 0.148385 0.0403892 Vertex 638 -0.0393744 0.174134 -0.00504658 Vertex 639 0.0410678 0.10142 0.0221661 Vertex 640 -0.0514931 0.156432 0.0104716 Vertex 641 0.0202898 0.124676 0.0257091 Vertex 642 -0.0151278 0.128803 0.00988702 Vertex 643 -0.00149333 0.112805 0.0421166 Vertex 644 -0.0228105 0.123961 0.023212 Vertex 645 0.0405574 0.104219 0.0191648 Vertex 646 0.0315129 0.0439606 0.0299133 Vertex 647 0.0325099 0.0439072 0.0294151 Vertex 648 -0.0490964 0.156122 -0.00621407 Vertex 649 -0.0271937 0.174158 -0.0183459 Vertex 650 -0.0307256 0.0915724 -0.0247467 Vertex 651 -0.0318346 0.0915622 -0.0244444 Vertex 652 -0.0298676 0.0916468 -0.0252289 Vertex 653 -0.0494924 0.160775 0.00747898 Vertex 654 -0.0322408 0.125589 0.00213325 Vertex 655 -0.0888501 0.151809 0.0151852 Vertex 656 0.0343092 0.113032 0.0252402 Vertex 657 0.0375985 0.10834 0.0241868 Vertex 658 -0.0254275 0.181837 -0.00892324 Vertex 659 0.028089 0.0929174 0.0442737 Vertex 660 -0.000498881 0.112805 0.0421187 Vertex 661 0.00328959 0.131137 0.0194851 Vertex 662 -0.00316996 0.131012 0.0171239 Vertex 663 0.00680734 0.129132 0.0265205 Vertex 664 0.00773558 0.128847 0.0268569 Vertex 665 -0.0445078 0.128204 0.0197407 Vertex 666 -0.0288355 0.125617 0.00924976 Vertex 667 -0.0407972 0.128426 0.00338476 Vertex 668 -0.088826 0.122625 0.00229599 Vertex 669 -0.00326172 0.0994383 0.0499516 Vertex 670 -0.0426789 0.168728 0.0023488 Vertex 671 -0.0657091 0.157202 -0.00882727 Vertex 672 -0.0645952 0.155196 -0.0084031 Vertex 673 -0.0635463 0.153079 -0.00800928 Vertex 674 -0.0236453 0.0906062 0.0514725 Vertex 675 -0.0564936 0.0465915 0.0420515 Vertex 676 -0.0554996 0.0466308 0.0421953 Vertex 677 -0.053498 0.0465766 0.0420409 Vertex 678 -0.0525012 0.046573 0.0420391 Vertex 679 -0.0515001 0.0465582 0.0417907 Vertex 680 -0.0504972 0.0465484 0.0414292 Vertex 681 -0.0495014 0.0464837 0.0411417 Vertex 682 -0.048497 0.0464891 0.040915 Vertex 683 -0.0474979 0.0464882 0.040801 Vertex 684 -0.0464961 0.0464761 0.0407845 Vertex 685 -0.0454996 0.0464888 0.0408011 Vertex 686 -0.0444986 0.0465011 0.0409291 Vertex 687 -0.0435026 0.0465062 0.0407289 Vertex 688 -0.0424955 0.0464529 0.0406301 Vertex 689 -0.0414956 0.0464933 0.0408152 Vertex 690 -0.0404958 0.0464911 0.0408136 Vertex 691 -0.0394936 0.046476 0.0404962 Vertex 692 -0.0384944 0.0464446 0.0402202 Vertex 693 -0.0375004 0.0464372 0.040096 Vertex 694 -0.036507 0.0464425 0.0402005 Vertex 695 -0.0255118 0.0936195 -0.0293755 Vertex 696 -0.0297999 0.12434 0.000117203 Vertex 697 -0.0308235 0.12443 -0.00028071 Vertex 698 -0.0317456 0.124703 -0.000629789 Vertex 699 -0.0326323 0.125019 -0.000941466 Vertex 700 -0.0335104 0.125389 -0.00127044 Vertex 701 -0.0344386 0.125663 -0.00162003 Vertex 702 -0.0284556 0.0472262 0.0488083 Vertex 703 -0.0274608 0.0473022 0.0495228 Vertex 704 -0.0264774 0.0473675 0.0499125 Vertex 705 -0.0254423 0.0473682 0.0503166 Vertex 706 -0.0244616 0.0474336 0.050725 Vertex 707 -0.0234912 0.0474961 0.0510145 Vertex 708 -0.0224848 0.0474635 0.0510926 Vertex 709 -0.0214953 0.0474568 0.0509792 Vertex 710 -0.0205082 0.0474421 0.0508554 Vertex 711 -0.0195149 0.0474114 0.0506124 Vertex 712 -0.0185134 0.0473863 0.05026 Vertex 713 -0.0175351 0.0472943 0.0498404 Vertex 714 -0.0165233 0.0472885 0.0494939 Vertex 715 -0.0155034 0.0472755 0.0490261 Vertex 716 -0.0144968 0.0472352 0.0484474 Vertex 717 -0.0134961 0.0472092 0.0480936 Vertex 718 -0.0124976 0.0472007 0.0479814 Vertex 719 -0.0114987 0.0471911 0.0478612 Vertex 720 -0.010495 0.0471724 0.0477907 Vertex 721 -0.00949656 0.0471698 0.047803 Vertex 722 -0.00851871 0.0471234 0.047663 Vertex 723 -0.00750517 0.0471136 0.0478292 Vertex 724 -0.00650105 0.0472142 0.0482843 Vertex 725 -0.00549562 0.0472961 0.0485942 Vertex 726 -0.0044937 0.0473352 0.0489501 Vertex 727 -0.0034922 0.0473569 0.0490622 Vertex 728 -0.00249349 0.0474079 0.0491587 Vertex 729 -0.00147854 0.0474532 0.049375 Vertex 730 -0.000486036 0.047441 0.049521 Vertex 731 0.000507196 0.0474213 0.049671 Vertex 732 0.00150975 0.0474485 0.049901 Vertex 733 0.00250708 0.0474439 0.0499052 Vertex 734 0.00350193 0.0474397 0.0500395 Vertex 735 0.00449953 0.0474774 0.0501288 Vertex 736 0.00549435 0.0474709 0.0500045 Vertex 737 0.00648582 0.047441 0.0497645 Vertex 738 0.00747686 0.0474111 0.0493962 Vertex 739 0.00849245 0.0473031 0.0488481 Vertex 740 0.00946392 0.0472926 0.0483305 Vertex 741 0.0104364 0.0472441 0.0475563 Vertex 742 -0.0764988 0.13725 0.0499203 Vertex 743 -0.0774908 0.137247 0.0499166 Vertex 744 -0.0325172 0.115309 0.0332233 Vertex 745 0.0348698 0.112104 0.0254475 Vertex 746 -0.00549593 0.114185 0.0409403 Vertex 747 -0.0755046 0.137255 0.0498073 Vertex 748 -0.0745038 0.137269 0.049596 Vertex 749 -0.0735087 0.137262 0.0493527 Vertex 750 -0.0715111 0.145604 0.0434169 Vertex 751 -0.0725069 0.145589 0.0436497 Vertex 752 -0.0675145 0.148386 0.0398761 Vertex 753 -0.0663959 0.148276 0.0393784 Vertex 754 -0.0810243 0.0936828 -0.00856919 Vertex 755 0.0432798 0.100122 0.00916351 Vertex 756 -0.0475138 0.156385 0.00914965 Vertex 757 0.0402856 0.10561 0.017163 Vertex 758 -0.0774854 0.142838 0.0458543 Vertex 759 -0.0749127 0.151363 0.0363064 Vertex 760 -0.0284773 0.177212 -0.00607735 Vertex 761 0.0325091 0.0454335 0.0302933 Vertex 762 0.0335076 0.0453895 0.0300756 Vertex 763 0.0345025 0.0454126 0.0301845 Vertex 764 0.035496 0.0454077 0.0303438 Vertex 765 0.0364941 0.0454217 0.0304675 Vertex 766 0.0375013 0.045461 0.0306904 Vertex 767 0.0385027 0.0454964 0.0307784 Vertex 768 -0.0154988 0.114109 0.0392017 Vertex 769 -0.0475053 0.16079 0.00736091 Vertex 770 -0.0434424 0.160833 0.00573037 Vertex 771 -0.0127683 0.163589 -0.0126806 Vertex 772 0.0323217 0.116577 0.0230638 Vertex 773 -0.0414995 0.168206 0.00296291 Vertex 774 0.0393714 0.104176 0.025187 Vertex 775 0.0299608 0.102103 0.0382304 Vertex 776 -0.0255896 0.182763 -0.0105092 Vertex 777 -0.0245507 0.183147 -0.010424 Vertex 778 -0.0100076 0.130157 0.0146359 Vertex 779 -0.0185901 0.128007 0.0115203 Vertex 780 0.000382137 0.128869 0.0270967 Vertex 781 0.00961512 0.122501 0.0348066 Vertex 782 -0.0689992 0.150311 0.0384044 Vertex 783 -0.0742776 0.161639 -0.0118948 Vertex 784 -0.0699149 0.161541 -0.0103834 Vertex 785 -0.0437665 0.168716 0.00196199 Vertex 786 -0.00338001 0.130095 0.0228247 Vertex 787 -0.0637552 0.15245 -0.00517189 Vertex 788 -0.067462 0.157723 -0.00658264 Vertex 789 -0.0696084 0.159782 -0.00738408 Vertex 790 -0.0564952 0.047766 0.0395183 Vertex 791 -0.0554939 0.0477978 0.0398952 Vertex 792 -0.0544725 0.0478754 0.0402183 Vertex 793 -0.0534956 0.0478266 0.0400304 Vertex 794 -0.0524983 0.0477783 0.0397646 Vertex 795 -0.0514997 0.047729 0.0396118 Vertex 796 -0.0504949 0.0477308 0.0397221 Vertex 797 -0.0494981 0.0477699 0.0395132 Vertex 798 -0.0484934 0.047761 0.0395051 Vertex 799 -0.0474969 0.0477925 0.0396528 Vertex 800 -0.0464984 0.047794 0.0396541 Vertex 801 -0.045503 0.0478046 0.0396725 Vertex 802 -0.044502 0.0478297 0.0399289 Vertex 803 -0.0435018 0.0478421 0.040059 Vertex 804 -0.0425045 0.0478596 0.0401075 Vertex 805 -0.0414999 0.0478558 0.040117 Vertex 806 -0.0404958 0.0478428 0.0400733 Vertex 807 -0.0394895 0.0478295 0.0398724 Vertex 808 -0.0384924 0.0478181 0.0398313 Vertex 809 -0.0374932 0.0478153 0.0397186 Vertex 810 -0.0365036 0.0478079 0.0395886 Vertex 811 -0.0355275 0.04785 0.0396404 Vertex 812 -0.0697425 0.164473 -0.0161193 Vertex 813 -0.0689178 0.164003 -0.0158096 Vertex 814 -0.0681413 0.163425 -0.0155251 Vertex 815 -0.0673944 0.162815 -0.015253 Vertex 816 -0.0666931 0.162075 -0.0149837 Vertex 817 -0.0660878 0.161167 -0.014759 Vertex 818 -0.0654948 0.160255 -0.0145439 Vertex 819 -0.0274537 0.0485303 0.0479606 Vertex 820 -0.0264744 0.0486202 0.0485825 Vertex 821 -0.0254941 0.0486931 0.0489695 Vertex 822 -0.0244788 0.0486839 0.0492934 Vertex 823 -0.0234883 0.0487024 0.0493089 Vertex 824 -0.0224914 0.04868 0.0491885 Vertex 825 -0.0214981 0.0486638 0.0490621 Vertex 826 -0.0205025 0.0486482 0.0489372 Vertex 827 -0.0194857 0.0486564 0.0485018 Vertex 828 -0.0184963 0.0486167 0.0482304 Vertex 829 -0.017497 0.0485942 0.047882 Vertex 830 -0.0164973 0.0485745 0.0476342 Vertex 831 -0.0154987 0.0485755 0.0476399 Vertex 832 -0.0144966 0.0485988 0.0478804 Vertex 833 -0.013506 0.0486161 0.0481837 Vertex 834 -0.0125023 0.0486789 0.0487656 Vertex 835 -0.0114995 0.0486859 0.0490069 Vertex 836 -0.010491 0.0487865 0.0492904 Vertex 837 -0.00948608 0.0488348 0.0496357 Vertex 838 -0.0084766 0.0489124 0.0500846 Vertex 839 -0.00748372 0.0488969 0.0502433 Vertex 840 -0.00649633 0.0488329 0.050181 Vertex 841 -0.00549072 0.0488848 0.0502608 Vertex 842 -0.00449485 0.0488681 0.0504112 Vertex 843 -0.00348603 0.0489394 0.050606 Vertex 844 -0.00249719 0.0488761 0.0505372 Vertex 845 -0.00148646 0.0489421 0.0507365 Vertex 846 -0.000497779 0.0489051 0.0509033 Vertex 847 0.000506827 0.0489752 0.0512269 Vertex 848 0.0015066 0.0490028 0.0513272 Vertex 849 0.00250363 0.0489881 0.0513443 Vertex 850 0.00350274 0.0489558 0.0513808 Vertex 851 0.00450171 0.04895 0.0512539 Vertex 852 0.00549546 0.0489597 0.051102 Vertex 853 0.0064937 0.048929 0.05087 Vertex 854 0.00748827 0.048894 0.0505047 Vertex 855 0.0084996 0.0488213 0.0500608 Vertex 856 0.00949238 0.0487693 0.0494463 Vertex 857 0.0104455 0.0488162 0.0487077 Vertex 858 -0.0724967 0.123205 0.0535111 Vertex 859 -0.00949475 0.122405 0.0348735 Vertex 860 0.0449966 0.0931749 0.00418165 Vertex 861 -0.0893649 0.111932 0.017326 Vertex 862 0.000497507 0.112823 0.0420607 Vertex 863 -0.0744965 0.123196 0.0533572 Vertex 864 -0.0576724 0.155657 0.012957 Vertex 865 0.00599322 0.131555 0.0161709 Vertex 866 -0.0764972 0.123179 0.0527664 Vertex 867 -0.0735012 0.145587 0.0437725 Vertex 868 -0.074493 0.145596 0.0437863 Vertex 869 -0.0754893 0.145614 0.0436847 Vertex 870 -0.0764843 0.145607 0.0435529 Vertex 871 -0.0654644 0.148292 0.0388168 Vertex 872 -0.0645196 0.148285 0.0383203 Vertex 873 -0.063566 0.148289 0.0378536 Vertex 874 -0.0624682 0.148372 0.0373168 Vertex 875 -0.061629 0.148291 0.0370712 Vertex 876 -0.000397233 0.131333 0.0167016 Vertex 877 -0.00149054 0.131258 0.0163007 Vertex 878 0.0325208 0.0469245 0.0310812 Vertex 879 0.0335068 0.0468989 0.0306812 Vertex 880 0.0345037 0.0468848 0.0307194 Vertex 881 0.0354988 0.0469226 0.030944 Vertex 882 0.0364837 0.0469104 0.0311466 Vertex 883 0.0374899 0.0469458 0.0313688 Vertex 884 0.0384949 0.0469555 0.0314897 Vertex 885 0.0405026 0.0469928 0.0315524 Vertex 886 -0.0893231 0.14203 0.0321578 Vertex 887 0.00149473 0.112812 0.0419217 Vertex 888 -0.0774962 0.131676 0.0527303 Vertex 889 -0.00266999 0.131274 0.0130017 Vertex 890 -0.0625219 0.151129 0.0359075 Vertex 891 0.0444235 0.0917457 0.0211574 Vertex 892 0.00249002 0.112797 0.0416669 Vertex 893 0.0432951 0.0987146 0.0161577 Vertex 894 -0.0354636 0.172718 -0.000342918 Vertex 895 -0.02246 0.183226 -0.0115124 Vertex 896 0.0430875 0.0930739 0.0251589 Vertex 897 -0.0260776 0.125932 0.00880255 Vertex 898 -0.0358232 0.127618 0.00522677 Vertex 899 -0.0417874 0.128546 0.00302224 Vertex 900 -0.0728566 0.162156 -0.0114327 Vertex 901 -0.069106 0.161031 -0.0101008 Vertex 902 -0.0683786 0.160357 -0.00982452 Vertex 903 -0.0643494 0.153359 -0.00540282 Vertex 904 -0.0681652 0.158429 -0.00684039 Vertex 905 -0.0704807 0.1602 -0.00768602 Vertex 906 -0.0725078 0.160609 -0.0083559 Vertex 907 -0.0555 0.0488797 0.0362241 Vertex 908 0.00348618 0.11278 0.041408 Vertex 909 -0.0534691 0.0491595 0.0373719 Vertex 910 -0.05252 0.0490121 0.0379722 Vertex 911 -0.0515081 0.0490357 0.0376444 Vertex 912 -0.0505546 0.0490872 0.0373101 Vertex 913 -0.0495075 0.0490436 0.0377607 Vertex 914 -0.0485055 0.0490796 0.0381424 Vertex 915 -0.0475135 0.0491287 0.0385522 Vertex 916 -0.0465112 0.0491437 0.0387964 Vertex 917 -0.0454932 0.0491469 0.0390026 Vertex 918 -0.0445073 0.0491885 0.039305 Vertex 919 -0.0435045 0.0492094 0.0395536 Vertex 920 -0.0425019 0.049221 0.0396798 Vertex 921 -0.0415014 0.0492193 0.0396812 Vertex 922 -0.0404973 0.0492165 0.0395965 Vertex 923 -0.0394944 0.0492076 0.0395541 Vertex 924 -0.0384865 0.0492045 0.0394845 Vertex 925 -0.0374859 0.0491992 0.0393813 Vertex 926 -0.0364777 0.0491722 0.0391199 Vertex 927 -0.0354984 0.0491504 0.038916 Vertex 928 -0.00403191 0.0987119 0.0511654 Vertex 929 -0.0358096 0.12684 0.0170169 Vertex 930 -0.00679601 0.100851 0.0456503 Vertex 931 -0.0432963 0.128843 0.0142751 Vertex 932 -0.0581623 0.155642 0.0142378 Vertex 933 -0.0730465 0.158091 -0.00419381 Vertex 934 -0.0265027 0.0498541 0.0461184 Vertex 935 -0.0254896 0.049863 0.0466034 Vertex 936 -0.0244999 0.049902 0.0466266 Vertex 937 -0.0234974 0.0498976 0.0468652 Vertex 938 -0.0224974 0.0498852 0.046496 Vertex 939 -0.0214969 0.0498836 0.0466158 Vertex 940 -0.0205078 0.049871 0.046386 Vertex 941 -0.0194942 0.0498847 0.046612 Vertex 942 -0.0185111 0.0499058 0.0467842 Vertex 943 -0.0175003 0.0499225 0.0470061 Vertex 944 -0.0165027 0.0499584 0.0473896 Vertex 945 -0.0154803 0.0500282 0.047966 Vertex 946 -0.0144943 0.0500942 0.0487331 Vertex 947 -0.0134983 0.0501789 0.0495792 Vertex 948 -0.0125327 0.0502379 0.050201 Vertex 949 -0.0114878 0.0502762 0.0503958 Vertex 950 -0.0104937 0.0502816 0.0505289 Vertex 951 -0.00949487 0.0503088 0.0507661 Vertex 952 -0.0084955 0.0503277 0.0510127 Vertex 953 -0.00749319 0.0503553 0.0512463 Vertex 954 -0.00648958 0.0503786 0.0513549 Vertex 955 -0.00549746 0.0503818 0.0516227 Vertex 956 -0.00449958 0.0504123 0.0519892 Vertex 957 -0.00349567 0.0504603 0.052334 Vertex 958 -0.00249426 0.0505094 0.0526827 Vertex 959 -0.00149572 0.0505531 0.0529099 Vertex 960 -0.000498029 0.0505184 0.0529377 Vertex 961 0.000511374 0.0503823 0.0524384 Vertex 962 0.00150167 0.0504398 0.0522275 Vertex 963 0.00250222 0.0504849 0.0522926 Vertex 964 0.00349864 0.0505127 0.0525247 Vertex 965 0.00450189 0.050474 0.0524519 Vertex 966 0.00551166 0.0504095 0.0521406 Vertex 967 0.00650609 0.0503877 0.0517539 Vertex 968 0.00749105 0.050377 0.0513506 Vertex 969 0.00847112 0.0503629 0.0509458 Vertex 970 0.00951901 0.0504027 0.0504431 Vertex 971 -0.0625516 0.147537 -0.0115723 Vertex 972 -0.0908043 0.122683 0.00627651 Vertex 973 -0.0626008 0.160001 -0.0205855 Vertex 974 -0.0266054 0.0916781 -0.031606 Vertex 975 -0.0703512 0.170836 -0.0520339 Vertex 976 -0.0744896 0.128852 0.0526631 Vertex 977 -0.0617312 0.142927 -0.00565867 Vertex 978 -0.0945717 0.122812 0.0182725 Vertex 979 0.0327608 0.11383 -0.00261931 Vertex 980 -0.00947595 0.130265 0.0133884 Vertex 981 -0.0528475 0.140082 0.0254195 Vertex 982 -0.00648998 0.122405 0.0354776 Vertex 983 -0.013019 0.129549 0.0120959 Vertex 984 -0.0617146 0.155302 -0.0255819 Vertex 985 -0.0853384 0.107683 0.0213404 Vertex 986 -0.0774937 0.145636 0.0432119 Vertex 987 0.00323629 0.131729 0.0108817 Vertex 988 -0.0896348 0.140659 0.0301806 Vertex 989 -0.0267629 0.124714 0.018819 Vertex 990 -0.0293056 0.125075 0.00323421 Vertex 991 0.0335365 0.0483507 0.0312493 Vertex 992 0.0345069 0.0483661 0.0310725 Vertex 993 0.0354985 0.0483762 0.03122 Vertex 994 0.0364932 0.0484054 0.0314672 Vertex 995 0.0374917 0.0484328 0.0317174 Vertex 996 0.038489 0.0484512 0.0319961 Vertex 997 0.039494 0.0484532 0.0321483 Vertex 998 0.0405023 0.0484755 0.0322215 Vertex 999 -0.0394865 0.115305 0.0335817 Vertex 1000 -0.0881399 0.122604 0.000302573 Vertex 1001 0.0396737 0.107002 0.0161655 Vertex 1002 0.0398576 0.101362 0.0261824 Vertex 1003 -0.0744916 0.146991 0.0423999 Vertex 1004 -0.0424971 0.165251 0.00449932 Vertex 1005 -0.0704743 0.121802 0.053345 Vertex 1006 0.0267515 0.102116 0.0406018 Vertex 1007 -0.0878008 0.119885 0.00028492 Vertex 1008 -0.089797 0.129515 0.00524651 Vertex 1009 -0.0269413 0.181454 -0.0140289 Vertex 1010 -0.0307494 0.125973 0.00854668 Vertex 1011 -0.0747157 0.155426 0.0258403 Vertex 1012 -0.0624118 0.148891 -0.00459657 Vertex 1013 -0.0640913 0.154089 -0.00821335 Vertex 1014 -0.0630663 0.151874 -0.00782908 Vertex 1015 -0.075878 0.0954761 0.0383509 Vertex 1016 0.0169167 0.127898 0.0201801 Vertex 1017 -0.00552471 0.130134 0.0220582 Vertex 1018 -0.0148858 0.0985034 0.047376 Vertex 1019 -0.0088618 0.129865 0.0208462 Vertex 1020 -0.0384222 0.125448 0.0219859 Vertex 1021 -0.0504584 0.0502644 0.0363006 Vertex 1022 -0.0495137 0.0503617 0.0366255 Vertex 1023 -0.0485081 0.0504118 0.037253 Vertex 1024 -0.0475093 0.0504634 0.0377677 Vertex 1025 -0.0465214 0.0505047 0.038174 Vertex 1026 -0.0455152 0.0505363 0.0385492 Vertex 1027 -0.0445141 0.050571 0.038927 Vertex 1028 -0.0435279 0.0506014 0.0392212 Vertex 1029 -0.0425018 0.0506116 0.0394181 Vertex 1030 -0.0415011 0.0506114 0.0394281 Vertex 1031 -0.0404972 0.0506061 0.0393715 Vertex 1032 -0.0394902 0.0506047 0.0393469 Vertex 1033 -0.0384895 0.050603 0.0393394 Vertex 1034 -0.0374901 0.0505918 0.0391881 Vertex 1035 -0.036484 0.0505609 0.038833 Vertex 1036 -0.0354915 0.050532 0.0385401 Vertex 1037 -0.0344903 0.0505305 0.0383369 Vertex 1038 -0.0334893 0.050539 0.0382432 Vertex 1039 0.0299711 0.119398 0.020753 Vertex 1040 0.0306772 0.118704 0.0210209 Vertex 1041 0.0313679 0.117954 0.0212794 Vertex 1042 0.0320331 0.117177 0.0215305 Vertex 1043 0.0326927 0.116394 0.0217802 Vertex 1044 -0.0264808 0.0509031 0.0429156 Vertex 1045 -0.0254692 0.0509386 0.0434079 Vertex 1046 -0.0244966 0.0509689 0.0431921 Vertex 1047 -0.0234839 0.0509996 0.0435588 Vertex 1048 -0.0224071 0.0510134 0.0440995 Vertex 1049 -0.02141 0.0511007 0.0448554 Vertex 1050 -0.0205114 0.0512056 0.0456176 Vertex 1051 -0.0195075 0.0512747 0.046374 Vertex 1052 -0.0184955 0.0513594 0.0472431 Vertex 1053 -0.0174765 0.0514437 0.047967 Vertex 1054 -0.0164815 0.0515035 0.0485835 Vertex 1055 -0.015494 0.0515277 0.0489706 Vertex 1056 -0.0144633 0.051615 0.0495133 Vertex 1057 -0.0134374 0.0516868 0.0502089 Vertex 1058 -0.0124795 0.0517352 0.0508543 Vertex 1059 -0.0115065 0.0517326 0.051159 Vertex 1060 -0.010498 0.0517545 0.0512545 Vertex 1061 -0.00949945 0.0517772 0.0514996 Vertex 1062 -0.00849798 0.051815 0.0518583 Vertex 1063 -0.0074916 0.0518487 0.0520774 Vertex 1064 -0.0065051 0.0518538 0.05236 Vertex 1065 -0.00548466 0.051944 0.0528973 Vertex 1066 -0.00451507 0.0519264 0.0531932 Vertex 1067 -0.0034931 0.0519852 0.0535284 Vertex 1068 -0.00249774 0.0520145 0.0539036 Vertex 1069 -0.00150003 0.0520299 0.0541649 Vertex 1070 -0.000496894 0.0520342 0.0541515 Vertex 1071 0.000500504 0.0519731 0.0534094 Vertex 1072 0.00149895 0.0519342 0.0529111 Vertex 1073 0.00250445 0.0519435 0.0530423 Vertex 1074 0.00349695 0.0519735 0.0532512 Vertex 1075 0.00449781 0.0519669 0.0532713 Vertex 1076 0.00550647 0.0519309 0.0530702 Vertex 1077 0.00652038 0.0518639 0.0525018 Vertex 1078 0.00750786 0.0518308 0.0519822 Vertex 1079 0.00848446 0.0518256 0.0516867 Vertex 1080 0.00950265 0.0517655 0.0513753 Vertex 1081 -0.0734977 0.128836 0.0522844 Vertex 1082 -0.0725184 0.128806 0.0519752 Vertex 1083 0.042865 0.0958458 -0.000810373 Vertex 1084 0.0445611 0.0931651 0.0181595 Vertex 1085 0.0444356 0.0931566 0.0191609 Vertex 1086 -0.0754919 0.128859 0.0530266 Vertex 1087 0.00647696 0.11413 0.0402504 Vertex 1088 -0.0765071 0.126009 0.0528667 Vertex 1089 -0.0764996 0.128859 0.0532215 Vertex 1090 -0.0849208 0.114388 0.046865 Vertex 1091 -0.0918951 0.117319 0.00831437 Vertex 1092 -0.0735209 0.134443 0.0506533 Vertex 1093 -0.0745084 0.134461 0.0510337 Vertex 1094 -0.0754981 0.13448 0.0513067 Vertex 1095 -0.0764995 0.134472 0.0515165 Vertex 1096 0.0335187 0.113275 -0.00203325 Vertex 1097 -0.0922478 0.11733 0.00930597 Vertex 1098 0.0044777 0.112767 0.0412512 Vertex 1099 -0.00448954 0.122402 0.0358368 Vertex 1100 -0.00442605 0.128738 0.0268092 Vertex 1101 0.0161585 0.128774 0.0170439 Vertex 1102 0.0427229 0.10007 0.00318201 Vertex 1103 0.0156241 0.128368 0.0211329 Vertex 1104 0.0335218 0.0499029 0.0322045 Vertex 1105 0.0345233 0.0498189 0.0314944 Vertex 1106 0.0355057 0.0498307 0.031489 Vertex 1107 0.0364957 0.049851 0.0316154 Vertex 1108 0.0374928 0.0498822 0.031843 Vertex 1109 0.0384903 0.0499056 0.0320993 Vertex 1110 0.0394879 0.0499122 0.0322705 Vertex 1111 0.0404983 0.0499404 0.0324741 Vertex 1112 0.0415062 0.0499285 0.0325086 Vertex 1113 0.0425051 0.049941 0.0324381 Vertex 1114 -0.0704857 0.116111 0.0520944 Vertex 1115 0.0232634 0.124781 0.0210949 Vertex 1116 0.0208043 0.12624 0.020186 Vertex 1117 -0.00332845 0.128773 0.0271941 Vertex 1118 0.040053 0.107027 0.0101639 Vertex 1119 -0.0794099 0.141428 0.0463829 Vertex 1120 0.0220922 0.12286 0.0278182 Vertex 1121 -0.015772 0.160715 -0.00958045 Vertex 1122 -0.0775565 0.148654 -0.00488618 Vertex 1123 -0.0875531 0.12123 -0.000692815 Vertex 1124 -0.025877 0.125557 0.00449924 Vertex 1125 0.0220166 0.125337 0.0220596 Vertex 1126 -0.06497 0.154244 -0.00563561 Vertex 1127 0.012166 0.127075 0.0284779 Vertex 1128 -0.0151406 0.126373 0.0259068 Vertex 1129 -0.0405676 0.171048 0.000226569 Vertex 1130 -0.0417025 0.170926 -0.000183345 Vertex 1131 -0.0719231 0.155792 0.0253493 Vertex 1132 -0.0410851 0.123071 0.0255089 Vertex 1133 -0.0704025 0.156596 -0.000355665 Vertex 1134 0.0158791 0.123986 0.0298499 Vertex 1135 -0.0494029 0.0516267 0.0356191 Vertex 1136 -0.0484712 0.0517504 0.0365675 Vertex 1137 -0.0474808 0.0518309 0.037336 Vertex 1138 -0.0465141 0.0518831 0.0377757 Vertex 1139 -0.045508 0.0519257 0.0382686 Vertex 1140 -0.0444939 0.0519693 0.038747 Vertex 1141 -0.0435203 0.0519967 0.0390799 Vertex 1142 -0.0425091 0.0520201 0.0393163 Vertex 1143 -0.0415114 0.0520187 0.0393909 Vertex 1144 -0.0404977 0.0520197 0.0394004 Vertex 1145 -0.0394885 0.0520168 0.0393574 Vertex 1146 -0.0384859 0.0520062 0.0392089 Vertex 1147 -0.0374857 0.0519831 0.0389557 Vertex 1148 -0.0364795 0.0519621 0.0386972 Vertex 1149 -0.035474 0.0519266 0.0383228 Vertex 1150 -0.0344826 0.0519106 0.0380623 Vertex 1151 -0.0334582 0.0518969 0.0377238 Vertex 1152 -0.0324964 0.0518418 0.0373712 Vertex 1153 -0.0643667 0.159406 -0.0155654 Vertex 1154 -0.0637704 0.158563 -0.0153492 Vertex 1155 -0.0362227 0.121033 0.0288309 Vertex 1156 -0.0353536 0.12061 0.029103 Vertex 1157 -0.0345743 0.120058 0.0294165 Vertex 1158 -0.0254497 0.052221 0.0403383 Vertex 1159 -0.0244489 0.052187 0.0413714 Vertex 1160 -0.0234293 0.0522884 0.0423691 Vertex 1161 -0.0224569 0.0524128 0.0435307 Vertex 1162 -0.0214965 0.0525299 0.044709 Vertex 1163 -0.0204809 0.0526524 0.0459576 Vertex 1164 -0.0194396 0.0527865 0.0471813 Vertex 1165 -0.0184644 0.0528818 0.0482087 Vertex 1166 -0.0174692 0.0529782 0.0491698 Vertex 1167 -0.0164825 0.0530314 0.0497852 Vertex 1168 -0.0154865 0.0530505 0.0500296 Vertex 1169 -0.0144826 0.0530653 0.0501401 Vertex 1170 -0.0134843 0.053101 0.0504987 Vertex 1171 -0.0124761 0.0531764 0.0512005 Vertex 1172 -0.0114906 0.0532044 0.051601 Vertex 1173 -0.01051 0.0531978 0.0517663 Vertex 1174 -0.00949468 0.0532459 0.0520833 Vertex 1175 -0.00849647 0.0532799 0.0524507 Vertex 1176 -0.00749418 0.0533074 0.0526841 Vertex 1177 -0.00650042 0.0533369 0.0530605 Vertex 1178 -0.0054947 0.0533903 0.0535249 Vertex 1179 -0.00451061 0.0534011 0.0538125 Vertex 1180 -0.00349166 0.0534503 0.0541192 Vertex 1181 -0.00249263 0.0534855 0.0544759 Vertex 1182 -0.00149823 0.0535022 0.0547476 Vertex 1183 -0.000498287 0.0535066 0.0547347 Vertex 1184 0.000497149 0.0534577 0.0541163 Vertex 1185 0.00150153 0.0534013 0.0535077 Vertex 1186 0.00251869 0.05336 0.0534808 Vertex 1187 0.00350403 0.0533854 0.0535456 Vertex 1188 0.00450086 0.0533884 0.0535142 Vertex 1189 0.00550371 0.0533623 0.0533002 Vertex 1190 0.0065027 0.0533154 0.0528127 Vertex 1191 0.00750328 0.0532576 0.0522142 Vertex 1192 0.008486 0.0532759 0.0521458 Vertex 1193 0.00951284 0.0532319 0.0521285 Vertex 1194 0.0105195 0.053345 0.0519069 Vertex 1195 -0.0124978 0.122374 0.0339942 Vertex 1196 0.0366798 0.105376 -0.00582172 Vertex 1197 -0.0745126 0.131657 0.0521168 Vertex 1198 -0.0621605 0.170953 -0.0526019 Vertex 1199 0.00548112 0.11414 0.0405028 Vertex 1200 0.00448236 0.11415 0.0407558 Vertex 1201 -0.0435006 0.115257 0.0335166 Vertex 1202 -0.0785029 0.128864 0.0532728 Vertex 1203 -0.079504 0.128859 0.053141 Vertex 1204 0.0366571 0.0968397 -0.0108144 Vertex 1205 -0.0262668 0.179961 -0.0169689 Vertex 1206 -0.0225205 0.114038 0.037332 Vertex 1207 -0.0774938 0.134462 0.0515018 Vertex 1208 -0.0784776 0.134439 0.0514602 Vertex 1209 -0.0794917 0.134473 0.0511764 Vertex 1210 -0.0804551 0.134426 0.050865 Vertex 1211 -9.29522e-05 0.131467 0.0096514 Vertex 1212 -0.0809318 0.142082 0.0447817 Vertex 1213 0.0288769 0.120252 0.0217702 Vertex 1214 -0.0298175 0.125729 0.00888885 Vertex 1215 0.0398988 0.106999 0.0131638 Vertex 1216 0.0355423 0.0512597 0.0315836 Vertex 1217 0.0365033 0.0512847 0.031619 Vertex 1218 0.037495 0.0513025 0.031739 Vertex 1219 0.0384886 0.0513309 0.0319844 Vertex 1220 0.0394872 0.0513548 0.03224 Vertex 1221 0.0404949 0.0513767 0.0324659 Vertex 1222 0.0414995 0.0513848 0.032599 Vertex 1223 0.0425053 0.0513815 0.0326154 Vertex 1224 0.0435142 0.0513638 0.0325031 Vertex 1225 -0.0265155 0.115287 0.0336658 Vertex 1226 -0.0586545 0.152137 0.0330321 Vertex 1227 -0.0655672 0.149686 0.0379738 Vertex 1228 0.0284626 0.102127 0.0395666 Vertex 1229 0.0350916 0.102085 0.0333486 Vertex 1230 0.0308728 0.114122 0.0296728 Vertex 1231 0.0426395 0.101487 0.00716583 Vertex 1232 -0.0318889 0.124978 0.0199371 Vertex 1233 0.0398408 0.105612 0.0201716 Vertex 1234 -0.0688748 0.159133 -0.00709894 Vertex 1235 0.01303 0.126665 0.0287751 Vertex 1236 -0.0294715 0.117536 0.0312989 Vertex 1237 -0.0448162 0.12956 0.0195798 Vertex 1238 0.0138368 0.126165 0.029064 Vertex 1239 0.0138704 0.12508 0.0305218 Vertex 1240 -0.0729271 0.151083 0.037025 Vertex 1241 -0.0614531 0.154118 0.0305097 Vertex 1242 -0.0733037 0.155556 0.00591793 Vertex 1243 -0.0710688 0.156192 0.0139947 Vertex 1244 -0.048428 0.0531039 0.036022 Vertex 1245 -0.0475344 0.05323 0.0369443 Vertex 1246 -0.0464945 0.0532702 0.037612 Vertex 1247 -0.0445186 0.0533636 0.0386768 Vertex 1248 -0.0435006 0.0534118 0.0391466 Vertex 1249 -0.042519 0.0534194 0.039352 Vertex 1250 -0.0415063 0.0534301 0.0394734 Vertex 1251 -0.0404974 0.0534278 0.0394751 Vertex 1252 -0.0394917 0.0534182 0.0393765 Vertex 1253 -0.0384745 0.0533908 0.0391471 Vertex 1254 -0.03749 0.0533987 0.0390423 Vertex 1255 -0.036476 0.0533606 0.0387027 Vertex 1256 -0.0354965 0.0533413 0.0383699 Vertex 1257 -0.034498 0.0533048 0.037996 Vertex 1258 -0.0334673 0.0532523 0.0375728 Vertex 1259 -0.0324736 0.0532348 0.0372028 Vertex 1260 -0.0314741 0.053189 0.0369367 Vertex 1261 -0.0304869 0.0532061 0.0367531 Vertex 1262 -0.0600274 0.155812 0.00342033 Vertex 1263 -0.0649586 0.160381 -0.0157887 Vertex 1264 -0.0632603 0.157387 -0.0151607 Vertex 1265 -0.0883817 0.123968 0.00128346 Vertex 1266 -0.0676833 0.155656 0.026832 Vertex 1267 -0.0245117 0.0536384 0.0409132 Vertex 1268 -0.0234219 0.0537493 0.0424994 Vertex 1269 -0.0224181 0.05387 0.0440179 Vertex 1270 -0.021445 0.0539977 0.0453008 Vertex 1271 -0.020414 0.0541289 0.0465389 Vertex 1272 -0.0194474 0.054231 0.0477027 Vertex 1273 -0.0184804 0.0543192 0.0487134 Vertex 1274 -0.0174561 0.0544373 0.0497557 Vertex 1275 -0.0164926 0.0544756 0.0504072 Vertex 1276 -0.0154767 0.0545272 0.0507241 Vertex 1277 -0.0145052 0.0544906 0.0506759 Vertex 1278 -0.0134767 0.0545379 0.0508338 Vertex 1279 -0.0124579 0.0545987 0.0514221 Vertex 1280 -0.0114754 0.0546403 0.0519269 Vertex 1281 -0.0105014 0.0546468 0.0522278 Vertex 1282 -0.00949649 0.0546877 0.0525704 Vertex 1283 -0.00849625 0.0547108 0.0528122 Vertex 1284 -0.00749363 0.0547355 0.05304 Vertex 1285 -0.00650329 0.0547609 0.0534371 Vertex 1286 -0.00550412 0.0547964 0.0538028 Vertex 1287 -0.00449379 0.0548276 0.0540049 Vertex 1288 -0.00348783 0.0548509 0.0542207 Vertex 1289 -0.00248496 0.0548872 0.0545581 Vertex 1290 -0.00149759 0.0549023 0.0548542 Vertex 1291 -0.000496498 0.0549075 0.0548747 Vertex 1292 0.000535895 0.0548656 0.0545076 Vertex 1293 0.00151752 0.0547965 0.0538164 Vertex 1294 0.00250208 0.0547919 0.0536548 Vertex 1295 0.00350625 0.0547769 0.0535608 Vertex 1296 0.00450584 0.0547654 0.053433 Vertex 1297 0.0054972 0.0547598 0.0532635 Vertex 1298 0.00650352 0.0547197 0.0529464 Vertex 1299 0.00749482 0.0546914 0.0525351 Vertex 1300 0.00850697 0.0546686 0.0524774 Vertex 1301 0.00950273 0.0546854 0.0525766 Vertex 1302 -0.0805181 0.12599 0.0525745 Vertex 1303 -0.0795103 0.126002 0.0528073 Vertex 1304 -0.0785092 0.126003 0.0529555 Vertex 1305 -0.0775133 0.126 0.0528602 Vertex 1306 -0.0494959 0.115246 0.0337414 Vertex 1307 0.00348793 0.114165 0.0408953 Vertex 1308 -0.0445033 0.11527 0.0334071 Vertex 1309 -0.0425002 0.115266 0.0336474 Vertex 1310 -0.0335104 0.175675 -0.00315318 Vertex 1311 -0.0805024 0.128853 0.052889 Vertex 1312 -0.0814773 0.128835 0.0524787 Vertex 1313 0.0351546 0.112861 0.0227039 Vertex 1314 -0.0366664 0.175138 -0.00407486 Vertex 1315 -0.0620073 0.155313 -0.0175819 Vertex 1316 -0.00957953 0.177197 -0.0268263 Vertex 1317 0.0442559 0.0973532 0.00916034 Vertex 1318 0.0386307 0.106935 0.00116239 Vertex 1319 -0.0776201 0.171284 -0.03689 Vertex 1320 -0.0304741 0.177281 -0.004356 Vertex 1321 -0.089623 0.0983355 0.0134109 Vertex 1322 0.0014962 0.114186 0.0411808 Vertex 1323 -0.0745038 0.141441 0.0470955 Vertex 1324 0.0365187 0.0526805 0.0315096 Vertex 1325 0.0375018 0.0527008 0.0316063 Vertex 1326 0.038497 0.0527286 0.031838 Vertex 1327 0.0394926 0.052754 0.032086 Vertex 1328 0.0404835 0.052774 0.0322642 Vertex 1329 0.041497 0.0527902 0.0324777 Vertex 1330 0.0424986 0.0527982 0.0326152 Vertex 1331 0.0435095 0.0527832 0.0325495 Vertex 1332 0.0444807 0.0526489 0.0324592 Vertex 1333 0.0175085 0.114012 0.0373101 Vertex 1334 0.0254796 0.122858 0.0219249 Vertex 1335 0.0243371 0.123621 0.0229269 Vertex 1336 -0.0282153 0.125116 0.00364014 Vertex 1337 -0.00263978 0.131127 0.015882 Vertex 1338 -0.0624811 0.149792 0.0367836 Vertex 1339 -0.0614742 0.149784 0.0364078 Vertex 1340 -0.087948 0.102288 0.00840013 Vertex 1341 -0.0454844 0.1652 0.00481603 Vertex 1342 0.018594 0.125548 0.0250901 Vertex 1343 -0.0745647 0.162191 -0.0132518 Vertex 1344 -0.0200308 0.127492 0.00809368 Vertex 1345 -0.0719688 0.147362 0.0419058 Vertex 1346 -0.0713898 0.160567 -0.00801414 Vertex 1347 -0.0663516 0.155012 0.0287678 Vertex 1348 -0.0684694 0.153743 0.0324784 Vertex 1349 0.0145581 0.125506 0.0293407 Vertex 1350 -0.00661995 0.130084 0.0216557 Vertex 1351 -0.062494 0.155703 0.00979223 Vertex 1352 -0.0653695 0.151233 0.0366147 Vertex 1353 -0.0745121 0.155307 0.0054919 Vertex 1354 -0.0224768 0.123487 0.0248086 Vertex 1355 -0.0711203 0.163576 -0.0137477 Vertex 1356 -0.0153636 0.128543 0.00690549 Vertex 1357 -0.0574953 0.153709 0.0290191 Vertex 1358 -0.0238083 0.125586 0.00234805 Vertex 1359 -0.0445292 0.0547767 0.038815 Vertex 1360 -0.0435028 0.0548283 0.0392794 Vertex 1361 -0.0425065 0.0548487 0.0395533 Vertex 1362 -0.0415045 0.0548576 0.0396938 Vertex 1363 -0.0404982 0.0548597 0.0396645 Vertex 1364 -0.0394936 0.0548399 0.0395943 Vertex 1365 -0.0384864 0.0548303 0.0394681 Vertex 1366 -0.03748 0.0548048 0.0392179 Vertex 1367 -0.0364861 0.0547872 0.0389196 Vertex 1368 -0.0354687 0.054727 0.0384538 Vertex 1369 -0.0344916 0.0547205 0.0381399 Vertex 1370 -0.0334777 0.0546734 0.0376709 Vertex 1371 -0.0324718 0.0546382 0.0373194 Vertex 1372 -0.0314811 0.0546225 0.0370229 Vertex 1373 -0.0304966 0.0545819 0.0366047 Vertex 1374 -0.029505 0.0545565 0.0362962 Vertex 1375 -0.0285043 0.0545632 0.0363758 Vertex 1376 -0.0107039 0.129221 0.0216334 Vertex 1377 -0.00955325 0.129382 0.0220461 Vertex 1378 -0.027617 0.125471 0.0155889 Vertex 1379 -0.0725432 0.15415 0.0310449 Vertex 1380 -0.0786632 0.155487 0.0200952 Vertex 1381 -0.079327 0.169353 -0.0390258 Vertex 1382 -0.0768438 0.0975378 -0.0115852 Vertex 1383 -0.012834 0.128656 0.00349339 Vertex 1384 -0.00196689 0.131088 0.00752604 Vertex 1385 0.00256341 0.131601 0.00920655 Vertex 1386 0.0134351 0.129972 0.01319 Vertex 1387 -0.016529 0.0558872 0.0508401 Vertex 1388 -0.0154895 0.0559453 0.0511175 Vertex 1389 -0.0144925 0.0559441 0.0511232 Vertex 1390 -0.0134794 0.0559661 0.0512091 Vertex 1391 -0.0124902 0.0560062 0.0517339 Vertex 1392 -0.0114896 0.0560578 0.0523304 Vertex 1393 -0.0105297 0.0560622 0.0527517 Vertex 1394 -0.00947974 0.0561444 0.0530127 Vertex 1395 -0.00850551 0.0561268 0.0532043 Vertex 1396 -0.00750736 0.0561433 0.0534652 Vertex 1397 -0.00650086 0.0561902 0.0537938 Vertex 1398 -0.00550353 0.0561986 0.0539335 Vertex 1399 -0.00450247 0.056202 0.0539356 Vertex 1400 -0.00349598 0.0562185 0.05401 Vertex 1401 -0.00250456 0.0562401 0.0542942 Vertex 1402 -0.00149512 0.0562755 0.0546084 Vertex 1403 -0.000496913 0.056284 0.0547664 Vertex 1404 0.000502788 0.056275 0.0546165 Vertex 1405 0.00150976 0.0562224 0.0541662 Vertex 1406 0.00252507 0.0561606 0.0537161 Vertex 1407 0.00351715 0.0561463 0.0534882 Vertex 1408 0.00451269 0.0561377 0.0533474 Vertex 1409 0.00550694 0.0561304 0.0532033 Vertex 1410 0.00651257 0.056103 0.0529931 Vertex 1411 0.00750493 0.0561002 0.0528313 Vertex 1412 0.00850148 0.0561026 0.0528172 Vertex 1413 0.00951185 0.0560842 0.0527429 Vertex 1414 0.0104958 0.0560929 0.0526786 Vertex 1415 0.0045023 0.122399 0.0348631 Vertex 1416 0.00349789 0.122445 0.0347995 Vertex 1417 0.0023439 0.122378 0.0350184 Vertex 1418 0.0407559 0.0844033 -0.0107694 Vertex 1419 0.0103725 0.130878 0.016344 Vertex 1420 -0.0335039 0.113859 0.0341437 Vertex 1421 0.00248459 0.114158 0.0410016 Vertex 1422 -0.037487 0.115255 0.0329307 Vertex 1423 -0.0815194 0.125984 0.0522053 Vertex 1424 -0.0037337 0.131051 0.015481 Vertex 1425 0.0452295 0.0931909 0.0101587 Vertex 1426 0.00547548 0.112757 0.0410095 Vertex 1427 0.0064659 0.11274 0.0407332 Vertex 1428 0.0228866 0.122341 0.0280976 Vertex 1429 0.0316544 0.117354 0.0228159 Vertex 1430 -0.0547075 0.153861 0.0184094 Vertex 1431 -0.0208042 0.125974 0.0209606 Vertex 1432 0.00417447 0.127894 0.028461 Vertex 1433 -0.00381736 0.131135 0.0125816 Vertex 1434 0.0084546 0.131034 0.0184964 Vertex 1435 -0.0290201 0.125445 0.00626167 Vertex 1436 -0.0205709 0.127392 0.00935219 Vertex 1437 -0.0275449 0.178709 -0.00674077 Vertex 1438 -0.0784667 0.141403 0.0468168 Vertex 1439 0.0375206 0.0540908 0.0314327 Vertex 1440 0.0384994 0.0541178 0.0316123 Vertex 1441 0.0394926 0.0541437 0.0318453 Vertex 1442 0.0404914 0.0541681 0.032094 Vertex 1443 0.0414903 0.0541829 0.0322405 Vertex 1444 0.0424932 0.0541962 0.0323753 Vertex 1445 0.0435018 0.0542009 0.0324922 Vertex 1446 0.0445103 0.0541956 0.0324876 Vertex 1447 0.0455381 0.0540654 0.0323771 Vertex 1448 -0.0764978 0.13864 0.0490601 Vertex 1449 -0.0273424 0.0931435 -0.0275899 Vertex 1450 -0.0316129 0.119551 -0.0104429 Vertex 1451 -0.0474174 0.157905 0.00867917 Vertex 1452 -0.0204551 0.0879984 0.0554627 Vertex 1453 0.0197435 0.125962 0.0226458 Vertex 1454 -0.0835371 0.151134 0.0310567 Vertex 1455 0.0391698 0.101249 -0.00580082 Vertex 1456 -0.0775506 0.172738 -0.0395384 Vertex 1457 0.0314823 0.114431 0.0284596 Vertex 1458 0.0289756 0.116666 0.0289439 Vertex 1459 -0.0609581 0.142927 -0.00458074 Vertex 1460 -0.0737585 0.160179 -0.00884095 Vertex 1461 -0.0175794 0.128153 0.00899134 Vertex 1462 -0.066041 0.156288 0.0201296 Vertex 1463 -0.0758021 0.154133 0.0299324 Vertex 1464 -0.00771604 0.130016 0.0212618 Vertex 1465 -0.0613933 0.155777 0.0101812 Vertex 1466 -0.0090472 0.129209 0.0236827 Vertex 1467 0.0270825 0.114018 -0.00875387 Vertex 1468 -0.0365963 0.127614 0.0137714 Vertex 1469 -0.0165553 0.128252 0.0064647 Vertex 1470 0.00136992 0.128685 0.0274437 Vertex 1471 -0.0213082 0.126358 0.00326486 Vertex 1472 -0.0706171 0.164859 -0.0164358 Vertex 1473 -0.044501 0.0562098 0.0390177 Vertex 1474 -0.0435207 0.0562403 0.0394546 Vertex 1475 -0.042508 0.0562794 0.0398023 Vertex 1476 -0.041504 0.0562873 0.0399374 Vertex 1477 -0.0405006 0.0562797 0.0399754 Vertex 1478 -0.0394955 0.0562825 0.0399491 Vertex 1479 -0.0384935 0.0562767 0.0397971 Vertex 1480 -0.0374897 0.0562507 0.0395531 Vertex 1481 -0.0364959 0.0562316 0.0392716 Vertex 1482 -0.0354821 0.0561791 0.038801 Vertex 1483 -0.0344763 0.0561322 0.0383021 Vertex 1484 -0.0334848 0.0561021 0.0379001 Vertex 1485 -0.0324882 0.0560654 0.0375153 Vertex 1486 -0.0314956 0.0560344 0.0371147 Vertex 1487 -0.0304896 0.0559845 0.0366491 Vertex 1488 -0.0294988 0.0559628 0.0364214 Vertex 1489 -0.0285134 0.0559644 0.0364164 Vertex 1490 -0.0275116 0.0560234 0.0370088 Vertex 1491 -0.0247631 0.123128 0.0239793 Vertex 1492 0.0149217 0.127634 0.0251635 Vertex 1493 -0.0818191 0.154205 0.0234297 Vertex 1494 -0.0942641 0.126921 0.0212556 Vertex 1495 -0.0777677 0.0975799 -0.010556 Vertex 1496 -0.0115095 0.129073 0.00398865 Vertex 1497 -0.00311195 0.130927 0.00709886 Vertex 1498 0.00365619 0.131646 0.00960837 Vertex 1499 0.012555 0.130318 0.0128667 Vertex 1500 0.0195332 0.12729 0.0154357 Vertex 1501 -0.0165413 0.0573347 0.0511714 Vertex 1502 -0.0154965 0.0573571 0.0513792 Vertex 1503 -0.0144744 0.0573903 0.0514423 Vertex 1504 -0.0363729 0.176071 -0.00683571 Vertex 1505 -0.0115063 0.0575113 0.0530742 Vertex 1506 -0.0104794 0.0575747 0.0533869 Vertex 1507 -0.00951316 0.0575536 0.0537045 Vertex 1508 -0.00849376 0.0576353 0.0542501 Vertex 1509 -0.00749701 0.0576432 0.054379 Vertex 1510 -0.00649525 0.0576581 0.0543368 Vertex 1511 -0.0054972 0.0576157 0.054162 Vertex 1512 -0.00449169 0.0575673 0.0538908 Vertex 1513 -0.00349897 0.0575855 0.053786 Vertex 1514 -0.0025152 0.0575969 0.0540026 Vertex 1515 -0.00151732 0.0576213 0.0542293 Vertex 1516 -0.000508059 0.0576316 0.0544767 Vertex 1517 0.000501319 0.0576739 0.0545888 Vertex 1518 0.00150103 0.0576486 0.0543674 Vertex 1519 0.00250286 0.0576093 0.0540213 Vertex 1520 0.00351232 0.0575709 0.0538233 Vertex 1521 0.00450187 0.0575756 0.0536585 Vertex 1522 0.00550441 0.0575487 0.0534334 Vertex 1523 0.00650779 0.0575337 0.0533257 Vertex 1524 0.00751117 0.0575089 0.0530994 Vertex 1525 0.00850874 0.0575011 0.0529664 Vertex 1526 0.00952232 0.057476 0.0527668 Vertex 1527 0.0105117 0.057471 0.0526043 Vertex 1528 -0.0315128 0.115295 0.0334421 Vertex 1529 -0.0174938 0.122238 0.0311921 Vertex 1530 -0.0164768 0.122235 0.0319313 Vertex 1531 -0.0682947 0.162375 -0.0539731 Vertex 1532 -0.0241621 0.125878 0.0168174 Vertex 1533 -0.0345055 0.113874 0.0339275 Vertex 1534 -0.0354987 0.113848 0.0338946 Vertex 1535 -0.0305056 0.115271 0.0335326 Vertex 1536 0.00550466 0.122397 0.0349805 Vertex 1537 0.0339681 0.114736 0.0222644 Vertex 1538 -0.0343294 0.175491 -0.0032043 Vertex 1539 -0.0642372 0.158555 -0.0140759 Vertex 1540 -0.0648774 0.159303 -0.0143091 Vertex 1541 -0.0194915 0.120861 0.0324568 Vertex 1542 -0.0915531 0.115336 0.039285 Vertex 1543 -0.0638143 0.15519 -0.0396115 Vertex 1544 0.040097 0.105566 0.00218117 Vertex 1545 -0.0518485 0.147799 0.0174109 Vertex 1546 0.0259145 0.102099 0.0411479 Vertex 1547 -0.0374501 0.127748 0.0031441 Vertex 1548 -0.0174933 0.120917 0.0332266 Vertex 1549 -0.0615165 0.15114 0.0355512 Vertex 1550 0.040798 0.105646 0.00916422 Vertex 1551 -0.0924012 0.125564 0.030262 Vertex 1552 -0.0785035 0.127443 0.053282 Vertex 1553 0.0375436 0.055493 0.03143 Vertex 1554 0.0385307 0.0554981 0.0313684 Vertex 1555 0.0395 0.055533 0.0316092 Vertex 1556 0.0404941 0.0555582 0.0318463 Vertex 1557 0.041496 0.0555737 0.0320634 Vertex 1558 0.0424902 0.0555855 0.0321183 Vertex 1559 0.0434964 0.0555926 0.0322399 Vertex 1560 0.0445032 0.0555996 0.0323503 Vertex 1561 0.0455086 0.055594 0.0323303 Vertex 1562 0.0465727 0.0554592 0.0320923 Vertex 1563 -0.0774982 0.133088 0.0521596 Vertex 1564 -0.0784904 0.133065 0.0521095 Vertex 1565 -0.0794975 0.133078 0.0519067 Vertex 1566 -0.0775459 0.0688051 0.0117853 Vertex 1567 -0.0756208 0.166729 -0.0233779 Vertex 1568 -0.0383911 0.127983 0.00280515 Vertex 1569 0.0188647 0.126347 0.0223312 Vertex 1570 0.00946799 0.112678 0.0395888 Vertex 1571 0.0424151 0.101486 0.0141591 Vertex 1572 -0.00945917 0.175708 -0.0257473 Vertex 1573 -0.0225647 0.184728 -0.0122995 Vertex 1574 -0.0750934 0.159541 -0.00936327 Vertex 1575 -0.00717727 0.0999816 0.0485274 Vertex 1576 -0.074389 0.0874223 0.0399149 Vertex 1577 -0.00712049 0.126279 0.0302479 Vertex 1578 -0.0665222 0.156255 0.0214077 Vertex 1579 -0.00239285 0.100006 0.0487279 Vertex 1580 -0.060198 0.152175 0.0339452 Vertex 1581 -0.0178682 0.127784 0.00598386 Vertex 1582 0.00609443 0.127443 0.0291456 Vertex 1583 -0.0198477 0.126879 0.00378288 Vertex 1584 -0.0215304 0.127346 0.0119061 Vertex 1585 -0.0805747 0.154604 0.0238516 Vertex 1586 -0.0435068 0.0576714 0.0396679 Vertex 1587 -0.0425042 0.0577064 0.0400486 Vertex 1588 -0.0415058 0.0577139 0.0401965 Vertex 1589 -0.040496 0.0577326 0.0402811 Vertex 1590 -0.0394971 0.057712 0.040203 Vertex 1591 -0.0384946 0.0577019 0.0400515 Vertex 1592 -0.0374871 0.0576725 0.0398228 Vertex 1593 -0.0364968 0.0576627 0.0395237 Vertex 1594 -0.0354902 0.0576195 0.0391492 Vertex 1595 -0.0344815 0.0575696 0.0386716 Vertex 1596 -0.0334964 0.0575473 0.0382542 Vertex 1597 -0.0325132 0.0575193 0.0378292 Vertex 1598 -0.0314915 0.057461 0.0373842 Vertex 1599 -0.0304883 0.0574252 0.0370157 Vertex 1600 -0.0294978 0.0574079 0.0367222 Vertex 1601 -0.0285008 0.0573948 0.0366096 Vertex 1602 -0.0275166 0.057436 0.037149 Vertex 1603 -0.0231678 0.124994 -0.000333927 Vertex 1604 -0.0242322 0.124794 -0.000701199 Vertex 1605 -0.0308709 0.178515 -0.0130008 Vertex 1606 -0.0786212 0.0976351 -0.0095679 Vertex 1607 -0.0102634 0.129467 0.00444971 Vertex 1608 -0.00431736 0.130694 0.00665461 Vertex 1609 0.0047441 0.131688 0.0100125 Vertex 1610 0.0116725 0.130674 0.0125466 Vertex 1611 0.0203982 0.126887 0.0157559 Vertex 1612 -0.0164996 0.0587643 0.0515064 Vertex 1613 -0.0154906 0.0587868 0.0517337 Vertex 1614 -0.0145087 0.0587885 0.0518852 Vertex 1615 -0.0125152 0.0589286 0.0534547 Vertex 1616 -0.0114781 0.0589986 0.0537512 Vertex 1617 -0.0105137 0.0589924 0.0541839 Vertex 1618 -0.00950572 0.0590791 0.0548422 Vertex 1619 -0.0084928 0.0591086 0.0550857 Vertex 1620 -0.00750142 0.0590729 0.0550185 Vertex 1621 -0.00649422 0.0590504 0.0549316 Vertex 1622 -0.00549453 0.0590678 0.0548923 Vertex 1623 -0.00449702 0.0590031 0.0543234 Vertex 1624 -0.0035043 0.0589584 0.0540181 Vertex 1625 -0.00249479 0.0590139 0.0541301 Vertex 1626 -0.00150748 0.059016 0.0544507 Vertex 1627 -0.000499764 0.0590718 0.0548831 Vertex 1628 0.000501847 0.0590908 0.0549783 Vertex 1629 0.00150053 0.0591133 0.0550768 Vertex 1630 0.00250252 0.0590979 0.0551087 Vertex 1631 0.00350505 0.0590839 0.0549927 Vertex 1632 0.00449835 0.0590783 0.0547231 Vertex 1633 0.00548498 0.0590856 0.0545593 Vertex 1634 0.00649387 0.0590149 0.0539921 Vertex 1635 0.00749975 0.0589567 0.0535286 Vertex 1636 0.00964614 0.0589005 0.0527021 Vertex 1637 0.0106562 0.0589179 0.0524466 Vertex 1638 -0.0124881 0.120998 0.0354929 Vertex 1639 -0.0134923 0.120989 0.0351213 Vertex 1640 -0.0144851 0.120961 0.0347298 Vertex 1641 -0.0155011 0.120965 0.0341268 Vertex 1642 -0.0165005 0.120964 0.0336371 Vertex 1643 -0.0364913 0.113889 0.0338295 Vertex 1644 -0.0374809 0.113893 0.0340704 Vertex 1645 -0.0194949 0.122198 0.0303074 Vertex 1646 0.00650251 0.122426 0.0350167 Vertex 1647 0.00749947 0.122404 0.035106 Vertex 1648 0.00849573 0.122392 0.0350922 Vertex 1649 -0.014506 0.114132 0.0394731 Vertex 1650 0.0335837 0.114911 0.0235455 Vertex 1651 -0.0353742 0.125928 -0.00196324 Vertex 1652 -0.0400541 0.128036 0.0139949 Vertex 1653 -0.0661021 0.155727 0.025928 Vertex 1654 -0.00158005 0.131357 0.0134024 Vertex 1655 0.00547063 0.131454 0.017409 Vertex 1656 -0.026736 0.125755 0.00710307 Vertex 1657 -0.0106209 0.130105 0.0129711 Vertex 1658 -0.0118194 0.129824 0.0125318 Vertex 1659 0.0395657 0.0998694 -0.00580754 Vertex 1660 0.0103588 0.130588 0.0191927 Vertex 1661 -0.0354216 0.17545 -0.00362892 Vertex 1662 -0.0374813 0.169748 0.00157136 Vertex 1663 0.038562 0.0568882 0.0311978 Vertex 1664 0.0395203 0.0569025 0.0311403 Vertex 1665 0.040497 0.0569389 0.0314027 Vertex 1666 0.0414852 0.0569681 0.0316528 Vertex 1667 0.0424943 0.0569701 0.0318321 Vertex 1668 0.0434926 0.056984 0.0319757 Vertex 1669 0.0444988 0.0569914 0.0320977 Vertex 1670 0.0455074 0.0569933 0.0321208 Vertex 1671 0.0465619 0.0568462 0.0320779 Vertex 1672 0.0475192 0.0568404 0.0316921 Vertex 1673 0.0443161 0.095966 0.0141619 Vertex 1674 0.0444938 0.0959562 0.00517859 Vertex 1675 -0.0804891 0.133061 0.0515278 Vertex 1676 -0.0814521 0.13302 0.0511119 Vertex 1677 -0.0795217 0.123111 0.0512585 Vertex 1678 -0.0860777 0.110355 0.00735249 Vertex 1679 0.0394644 0.107011 0.0181712 Vertex 1680 -0.0620057 0.153738 -0.0265835 Vertex 1681 -0.0744939 0.127436 0.052791 Vertex 1682 0.0145889 0.124413 0.0307966 Vertex 1683 -0.00442413 0.130145 0.0224484 Vertex 1684 -0.0795255 0.0953936 0.0349279 Vertex 1685 -0.0768234 0.0927696 0.0379671 Vertex 1686 -0.0284025 0.119846 0.0286714 Vertex 1687 -0.00815712 0.126302 0.0298556 Vertex 1688 -0.0545817 0.152467 0.0257328 Vertex 1689 -0.0712761 0.153449 0.0330143 Vertex 1690 -0.0610187 0.152669 0.0336579 Vertex 1691 -0.0190623 0.127503 0.00554509 Vertex 1692 -0.0701097 0.156012 0.00122102 Vertex 1693 -0.0225598 0.125982 0.00280455 Vertex 1694 0.0122871 0.124953 0.0313975 Vertex 1695 -0.0769692 0.155214 0.0250641 Vertex 1696 -0.0435242 0.0590876 0.0398271 Vertex 1697 -0.0425056 0.0591222 0.0401769 Vertex 1698 -0.041507 0.0591281 0.0403212 Vertex 1699 -0.0404996 0.0591463 0.0404229 Vertex 1700 -0.0394972 0.0591632 0.0405173 Vertex 1701 -0.0384905 0.0591295 0.0404813 Vertex 1702 -0.0374964 0.0591338 0.0402834 Vertex 1703 -0.0364983 0.059104 0.0398977 Vertex 1704 -0.0354822 0.0590569 0.0395591 Vertex 1705 -0.034478 0.0590226 0.0391844 Vertex 1706 -0.0334706 0.0589721 0.0386927 Vertex 1707 -0.0325011 0.058955 0.0382451 Vertex 1708 -0.0315398 0.0589058 0.0377684 Vertex 1709 -0.030503 0.0588732 0.0373493 Vertex 1710 -0.0294983 0.0588236 0.0368769 Vertex 1711 -0.0285046 0.0588067 0.036767 Vertex 1712 -0.0275164 0.0588544 0.0372755 Vertex 1713 -0.0266186 0.0589226 0.0382515 Vertex 1714 -0.014074 0.128231 0.00303832 Vertex 1715 -0.0795696 0.0976882 -0.00856087 Vertex 1716 -0.00906667 0.129748 0.004892 Vertex 1717 -0.00546011 0.130518 0.00622904 Vertex 1718 0.00577065 0.131636 0.0103849 Vertex 1719 0.0107439 0.130936 0.0122066 Vertex 1720 0.0212208 0.126407 0.0160623 Vertex 1721 0.0288964 0.120556 0.0189249 Vertex 1722 -0.0164899 0.0602176 0.0520938 Vertex 1723 -0.0154981 0.060248 0.0524646 Vertex 1724 -0.0124985 0.0603974 0.0541523 Vertex 1725 -0.0114926 0.0604332 0.0544994 Vertex 1726 -0.0104903 0.0604984 0.0550813 Vertex 1727 -0.00950118 0.06052 0.0554819 Vertex 1728 -0.00851812 0.0604987 0.0555487 Vertex 1729 -0.00749367 0.0605601 0.0556586 Vertex 1730 -0.00649644 0.0605343 0.0557379 Vertex 1731 -0.00549595 0.0605287 0.0555985 Vertex 1732 -0.00449819 0.0604864 0.0551163 Vertex 1733 -0.00349094 0.060529 0.0547186 Vertex 1734 -0.00244861 0.0605864 0.0553645 Vertex 1735 -0.00148294 0.0606073 0.0558577 Vertex 1736 -0.000492298 0.0605899 0.0560413 Vertex 1737 0.000506781 0.0605965 0.0560209 Vertex 1738 0.00150254 0.0605844 0.0560506 Vertex 1739 0.002504 0.0605716 0.0560843 Vertex 1740 0.00349883 0.0605728 0.0559342 Vertex 1741 0.0044963 0.0605551 0.0556784 Vertex 1742 0.00553119 0.0603997 0.0554086 Vertex 1743 -0.015609 0.128774 0.0111587 Vertex 1744 -0.0155019 0.119619 0.0357771 Vertex 1745 0.000493498 0.119652 0.0380928 Vertex 1746 -0.0942207 0.120117 0.0202902 Vertex 1747 -0.0234909 0.120747 0.0300444 Vertex 1748 -0.0224887 0.120777 0.0306794 Vertex 1749 -0.0214979 0.120818 0.0311972 Vertex 1750 -0.0455015 0.115241 0.0333765 Vertex 1751 -0.0474934 0.115292 0.0331905 Vertex 1752 -0.0384898 0.113893 0.0344296 Vertex 1753 -0.0394837 0.113931 0.0345962 Vertex 1754 -0.0204678 0.122105 0.0297617 Vertex 1755 -0.0214771 0.122102 0.0291424 Vertex 1756 -0.0224613 0.12203 0.0284859 Vertex 1757 -0.0745006 0.142795 0.0461595 Vertex 1758 -0.0536299 0.144677 0.0243972 Vertex 1759 0.0216673 0.125834 0.0205048 Vertex 1760 -0.0816886 0.154881 0.0175845 Vertex 1761 0.0126438 0.130236 0.0157508 Vertex 1762 0.0373352 0.108319 0.0251875 Vertex 1763 -0.0620106 0.15528 -0.0315878 Vertex 1764 -0.0455612 0.125305 -0.00846085 Vertex 1765 0.0416081 0.101418 0.000182195 Vertex 1766 0.0426769 0.101505 0.0101616 Vertex 1767 -0.0699808 0.136988 -0.00795948 Vertex 1768 -0.084368 0.114299 0.000284663 Vertex 1769 -0.0235296 0.159196 -0.00227474 Vertex 1770 0.0395682 0.0582726 0.0307001 Vertex 1771 0.0405223 0.0582848 0.0307512 Vertex 1772 0.0414985 0.058326 0.0311197 Vertex 1773 0.0424926 0.0583469 0.0313486 Vertex 1774 0.0434891 0.0583702 0.0316051 Vertex 1775 0.0444976 0.0583814 0.0318302 Vertex 1776 0.0455013 0.0583861 0.0319381 Vertex 1777 0.0465079 0.0583728 0.0318256 Vertex 1778 0.0475195 0.0583521 0.0315949 Vertex 1779 0.0484836 0.0582148 0.031165 Vertex 1780 -0.0859867 0.140484 0.00417932 Vertex 1781 0.0442088 0.0931449 0.0211603 Vertex 1782 -0.0632381 0.170981 -0.0495819 Vertex 1783 -0.0737003 0.156269 0.0145144 Vertex 1784 -0.0823392 0.111551 0.0443764 Vertex 1785 -0.0444887 0.166716 0.00379579 Vertex 1786 -0.0896061 0.126751 0.00429509 Vertex 1787 -0.0623544 0.152149 -0.0255836 Vertex 1788 -0.0735334 0.165176 -0.017728 Vertex 1789 -0.0924363 0.118744 0.0263157 Vertex 1790 0.0105014 0.112682 0.0391847 Vertex 1791 0.0114979 0.112659 0.03891 Vertex 1792 -0.0575 0.0588269 0.0212602 Vertex 1793 0.0124968 0.112648 0.0387734 Vertex 1794 0.0134971 0.112635 0.0387508 Vertex 1795 -0.035368 0.122868 0.0260927 Vertex 1796 -0.0710693 0.155098 0.0285743 Vertex 1797 -0.0100751 0.129607 0.0204184 Vertex 1798 -0.0541438 0.151337 0.0259237 Vertex 1799 0.0215791 0.120444 0.0319368 Vertex 1800 -0.0801398 0.154387 0.00935749 Vertex 1801 -0.0203743 0.127028 0.00506457 Vertex 1802 -0.00823225 0.127328 0.0283641 Vertex 1803 -0.0251238 0.125152 0.00185767 Vertex 1804 -0.076884 0.155644 0.0221655 Vertex 1805 -0.0502879 0.133796 0.0278403 Vertex 1806 -0.0435044 0.0605182 0.0400424 Vertex 1807 -0.0425016 0.0605517 0.0404213 Vertex 1808 -0.0415072 0.0605699 0.0406995 Vertex 1809 -0.0405058 0.060576 0.0408455 Vertex 1810 -0.039497 0.060614 0.0410267 Vertex 1811 -0.0384926 0.0605846 0.0409778 Vertex 1812 -0.037493 0.0605801 0.0408152 Vertex 1813 -0.0364972 0.0605644 0.0405385 Vertex 1814 -0.0354996 0.0605317 0.0401535 Vertex 1815 -0.0344836 0.0604651 0.0395531 Vertex 1816 -0.0334912 0.0604137 0.038899 Vertex 1817 -0.0325027 0.0603855 0.0384943 Vertex 1818 -0.0314976 0.0603384 0.0380002 Vertex 1819 -0.0304988 0.0603029 0.0376116 Vertex 1820 -0.0294972 0.0602632 0.0372614 Vertex 1821 -0.028493 0.0602587 0.0370952 Vertex 1822 -0.0274915 0.0602914 0.037483 Vertex 1823 -0.0265857 0.0603669 0.0385952 Vertex 1824 -0.00786498 0.13001 0.00533674 Vertex 1825 -0.0066641 0.130277 0.00578337 Vertex 1826 -0.000819486 0.131234 0.00795191 Vertex 1827 0.00782583 0.131487 0.0111342 Vertex 1828 0.0169782 0.128539 0.0144983 Vertex 1829 0.0220436 0.125932 0.0163676 Vertex 1830 0.0281636 0.121218 0.0186511 Vertex 1831 0.032372 0.116958 0.0202394 Vertex 1832 -0.00645905 0.128953 0.0260767 Vertex 1833 -0.0164629 0.0616668 0.0525376 Vertex 1834 -0.0154642 0.0617228 0.0531313 Vertex 1835 -0.0135115 0.0617879 0.0541775 Vertex 1836 -0.012492 0.061843 0.0546212 Vertex 1837 -0.0114833 0.0618754 0.0549615 Vertex 1838 -0.0104902 0.0619157 0.0554492 Vertex 1839 -0.0094927 0.0619497 0.0558121 Vertex 1840 -0.00850445 0.0619527 0.0559735 Vertex 1841 -0.00750248 0.0619634 0.0561006 Vertex 1842 -0.00649716 0.0619561 0.0561245 Vertex 1843 -0.0054968 0.061946 0.0559894 Vertex 1844 -0.00449481 0.0619627 0.0557718 Vertex 1845 -0.00349601 0.0619414 0.0556852 Vertex 1846 -0.00249339 0.0619776 0.0560364 Vertex 1847 -0.00149436 0.0620061 0.056412 Vertex 1848 -0.000496937 0.0620135 0.0565388 Vertex 1849 0.000501079 0.0620074 0.0565701 Vertex 1850 0.00150309 0.0619973 0.0566118 Vertex 1851 0.00250176 0.0620246 0.0566613 Vertex 1852 0.00350624 0.0619975 0.0564502 Vertex 1853 0.00451197 0.0619711 0.0562284 Vertex 1854 0.00552678 0.0619607 0.0559576 Vertex 1855 0.00660499 0.0617786 0.0553203 Vertex 1856 0.0337482 0.102096 0.0349353 Vertex 1857 -0.0144951 0.119623 0.0361429 Vertex 1858 -0.000499702 0.119705 0.0381547 Vertex 1859 -0.00149547 0.119691 0.0381347 Vertex 1860 -0.00249391 0.119678 0.0379989 Vertex 1861 -0.00349428 0.119696 0.0379021 Vertex 1862 -0.00449084 0.119679 0.0378771 Vertex 1863 -0.00548321 0.119649 0.0378412 Vertex 1864 -0.0064872 0.119657 0.0377321 Vertex 1865 -0.00749647 0.119689 0.0375376 Vertex 1866 -0.0659203 0.122383 -0.00896938 Vertex 1867 -0.0408255 0.0914222 -0.0231618 Vertex 1868 -0.0943455 0.121485 0.0232874 Vertex 1869 -0.0114919 0.121016 0.0357517 Vertex 1870 -0.0104801 0.120983 0.0360777 Vertex 1871 -0.00949197 0.121025 0.0361236 Vertex 1872 -0.00848516 0.121007 0.0363393 Vertex 1873 -0.0941076 0.120125 0.0222927 Vertex 1874 -0.0942113 0.120123 0.0212925 Vertex 1875 -0.0529166 0.0566407 0.0191372 Vertex 1876 -0.0625812 0.150647 -0.00957658 Vertex 1877 -0.0628107 0.150584 -0.0245802 Vertex 1878 0.0439346 0.0959403 0.0181595 Vertex 1879 -0.0784743 0.140032 0.0478552 Vertex 1880 0.0368905 0.10997 0.023344 Vertex 1881 -0.0883977 0.0983242 0.022387 Vertex 1882 0.0370893 0.106835 -0.00283087 Vertex 1883 -0.0348521 0.0972102 -0.0229902 Vertex 1884 0.0419445 0.0972272 0.0251571 Vertex 1885 0.0414472 0.0971985 0.0261597 Vertex 1886 0.0409571 0.0971716 0.0271682 Vertex 1887 0.0405486 0.0596459 0.0301455 Vertex 1888 0.0415111 0.0596706 0.0303495 Vertex 1889 0.0424994 0.0597124 0.0306347 Vertex 1890 0.0434928 0.0597185 0.030951 Vertex 1891 0.0444883 0.05975 0.0312137 Vertex 1892 0.0455002 0.059749 0.0314265 Vertex 1893 0.0465043 0.0597504 0.0314309 Vertex 1894 0.0475108 0.0597433 0.0313293 Vertex 1895 0.0485157 0.0597129 0.0310438 Vertex 1896 0.0495183 0.0596792 0.0306871 Vertex 1897 0.0503974 0.0595708 0.0303584 Vertex 1898 0.0407085 0.0956949 -0.00580768 Vertex 1899 0.0296013 0.119582 0.02204 Vertex 1900 0.0281452 0.12091 0.0214948 Vertex 1901 0.0411647 0.0886413 -0.00977915 Vertex 1902 0.0112861 0.130316 0.0195341 Vertex 1903 -0.024907 0.0916549 -0.0335476 Vertex 1904 0.0407967 0.105643 0.0101649 Vertex 1905 0.0115111 0.114076 0.0384616 Vertex 1906 0.042138 0.101461 0.00217211 Vertex 1907 0.0144928 0.11263 0.0387455 Vertex 1908 0.0155048 0.112635 0.0385412 Vertex 1909 -0.0760639 0.155862 0.0136886 Vertex 1910 0.0152697 0.128852 0.0195703 Vertex 1911 -0.0628269 0.1502 -0.00476792 Vertex 1912 -0.0655762 0.155146 -0.00586759 Vertex 1913 -0.0585553 0.060477 0.023496 Vertex 1914 -0.0574179 0.0608499 0.024689 Vertex 1915 0.0164932 0.112605 0.0382483 Vertex 1916 0.017486 0.112589 0.0378808 Vertex 1917 -0.0533559 0.0609747 0.0280244 Vertex 1918 0.0152572 0.124805 0.0295869 Vertex 1919 -0.0327176 0.125444 0.0196276 Vertex 1920 0.0137336 0.122464 0.0333928 Vertex 1921 -0.0216874 0.126575 0.00458035 Vertex 1922 -0.0263156 0.124827 0.00142734 Vertex 1923 0.000667625 0.0985049 0.0513232 Vertex 1924 0.0158763 0.121559 0.0327664 Vertex 1925 0.0263229 0.122689 0.0193841 Vertex 1926 -0.0434938 0.0619471 0.0402773 Vertex 1927 -0.0424946 0.0619914 0.040787 Vertex 1928 -0.0415061 0.0620057 0.0410722 Vertex 1929 -0.0404923 0.0620428 0.0412639 Vertex 1930 -0.0394989 0.0620307 0.0413298 Vertex 1931 -0.0384965 0.0620329 0.0413169 Vertex 1932 -0.0374934 0.0620193 0.0412021 Vertex 1933 -0.036486 0.0619956 0.0409573 Vertex 1934 -0.0354995 0.0619703 0.0405316 Vertex 1935 -0.0345243 0.0619374 0.0399691 Vertex 1936 -0.0334995 0.0618586 0.0392638 Vertex 1937 -0.0325014 0.0618008 0.0386259 Vertex 1938 -0.031495 0.061765 0.0382603 Vertex 1939 -0.0305049 0.0617476 0.0379767 Vertex 1940 -0.0294951 0.0617035 0.0376524 Vertex 1941 -0.0285033 0.0616825 0.0373869 Vertex 1942 -0.0274823 0.0617236 0.037721 Vertex 1943 -0.0265671 0.0617846 0.0387137 Vertex 1944 0.00147793 0.131501 0.00880182 Vertex 1945 0.000326986 0.131385 0.00837406 Vertex 1946 0.00679991 0.131589 0.0107583 Vertex 1947 0.0160657 0.128852 0.0141586 Vertex 1948 0.0228597 0.125444 0.016672 Vertex 1949 0.0274329 0.121878 0.0183804 Vertex 1950 0.0330284 0.116174 0.0204895 Vertex 1951 0.00617007 0.126444 0.0306412 Vertex 1952 -0.0604932 0.155795 0.0206537 Vertex 1953 -0.0164541 0.0630817 0.0527623 Vertex 1954 -0.0155135 0.0631057 0.0533345 Vertex 1955 -0.037924 0.175153 -0.00739726 Vertex 1956 -0.0124743 0.0632507 0.0548154 Vertex 1957 -0.0114871 0.063283 0.055206 Vertex 1958 -0.0105123 0.0633015 0.0555068 Vertex 1959 -0.00949444 0.063336 0.0558203 Vertex 1960 -0.00850113 0.0633575 0.0560799 Vertex 1961 -0.00750585 0.0633646 0.0562436 Vertex 1962 -0.00650337 0.0633626 0.0562557 Vertex 1963 -0.00549722 0.0633676 0.0561862 Vertex 1964 -0.00449554 0.0633716 0.0561592 Vertex 1965 -0.00349688 0.0633763 0.0563118 Vertex 1966 -0.00250336 0.0633801 0.0564795 Vertex 1967 -0.00149888 0.0634085 0.0566876 Vertex 1968 -0.000501715 0.0634055 0.0567322 Vertex 1969 0.000499004 0.0634057 0.0567297 Vertex 1970 0.00150192 0.0634213 0.0567922 Vertex 1971 0.00250861 0.0634123 0.0567384 Vertex 1972 0.00351519 0.0634007 0.0566286 Vertex 1973 0.00451348 0.0633892 0.056472 Vertex 1974 0.00552401 0.0633596 0.0561453 Vertex 1975 0.00652265 0.0633208 0.0557678 Vertex 1976 0.00753471 0.0632773 0.055432 Vertex 1977 0.012487 0.118181 0.036207 Vertex 1978 -0.0867528 0.121192 -0.00171893 Vertex 1979 -0.0135041 0.11966 0.0364252 Vertex 1980 -0.0124895 0.119639 0.0367572 Vertex 1981 -0.0114857 0.119632 0.0369891 Vertex 1982 -0.0104925 0.119661 0.037142 Vertex 1983 -0.0094889 0.119647 0.0372435 Vertex 1984 -0.0875722 0.151019 0.0254764 Vertex 1985 -0.0705258 0.142815 0.0451961 Vertex 1986 -0.0755017 0.140041 0.0481 Vertex 1987 -0.0164574 0.11955 0.0353527 Vertex 1988 0.001497 0.119685 0.0377723 Vertex 1989 0.0441509 0.0959467 0.0161545 Vertex 1990 -0.0617076 0.156842 -0.0315932 Vertex 1991 0.0429803 0.0916104 -0.003806 Vertex 1992 0.0426083 0.0915862 -0.00481093 Vertex 1993 -0.0075036 0.12108 0.0363047 Vertex 1994 -0.00649673 0.121064 0.0364033 Vertex 1995 -0.00548988 0.121033 0.0366102 Vertex 1996 -0.00449347 0.121049 0.0367461 Vertex 1997 -0.00348704 0.121028 0.0369539 Vertex 1998 -0.00149798 0.121047 0.037107 Vertex 1999 0.000500084 0.12107 0.0367737 Vertex 2000 -0.079441 0.139988 0.0475582 Vertex 2001 -0.0355723 0.127236 0.00383072 Vertex 2002 -0.0144799 0.123658 0.0314246 Vertex 2003 -0.0154726 0.123613 0.0307813 Vertex 2004 -0.00850001 0.125156 0.0314578 Vertex 2005 -0.00749813 0.125151 0.0317009 Vertex 2006 0.0435925 0.0958855 0.00119521 Vertex 2007 0.0432433 0.0958712 0.000187851 Vertex 2008 0.0405445 0.0610221 0.0298369 Vertex 2009 0.0415387 0.0610238 0.0295203 Vertex 2010 0.0425062 0.0610428 0.0297234 Vertex 2011 0.043495 0.0610671 0.0301862 Vertex 2012 0.0444927 0.0610909 0.0304355 Vertex 2013 0.0454967 0.0611109 0.0306935 Vertex 2014 0.046501 0.0611194 0.0308227 Vertex 2015 0.0475064 0.0611159 0.0308231 Vertex 2016 0.0485116 0.0611011 0.0306918 Vertex 2017 0.0495286 0.0610841 0.0304744 Vertex 2018 0.0505141 0.0610459 0.0301699 Vertex 2019 0.0515419 0.0610093 0.0297195 Vertex 2020 -0.00301536 0.127034 0.030217 Vertex 2021 0.0184989 0.11258 0.037522 Vertex 2022 0.0165164 0.126586 0.0257514 Vertex 2023 -0.0334673 0.174268 -0.00177832 Vertex 2024 0.0360643 0.108191 -0.003826 Vertex 2025 0.0389991 0.108356 0.0151637 Vertex 2026 0.0194959 0.11257 0.0373879 Vertex 2027 -0.0294775 0.17726 -0.00505881 Vertex 2028 0.0205916 0.112587 0.0371117 Vertex 2029 -0.0271582 0.125819 0.00840694 Vertex 2030 -0.0368019 0.127806 0.00485952 Vertex 2031 -0.0428232 0.12861 0.00263817 Vertex 2032 -0.067466 0.154933 0.00219081 Vertex 2033 -0.000406928 0.0996624 0.04942 Vertex 2034 0.0144323 0.129298 0.0192627 Vertex 2035 -0.0661878 0.156038 -0.00610123 Vertex 2036 -0.0381245 0.162196 -0.0129852 Vertex 2037 -0.043053 0.153237 -0.00732462 Vertex 2038 -0.0564752 0.0624455 0.0290854 Vertex 2039 -0.0555013 0.0623754 0.0293782 Vertex 2040 -0.0544738 0.0624824 0.0299832 Vertex 2041 -0.053455 0.0625326 0.0304805 Vertex 2042 -0.0523859 0.0626167 0.0314055 Vertex 2043 -0.0514165 0.0627417 0.0327301 Vertex 2044 -0.050463 0.0627793 0.0338697 Vertex 2045 -0.0692317 0.155651 0.00154206 Vertex 2046 -0.0274601 0.124651 0.00100866 Vertex 2047 0.00601824 0.128477 0.0276707 Vertex 2048 0.000773445 0.126081 0.0315854 Vertex 2049 0.0270658 0.12207 0.0196667 Vertex 2050 -0.0183396 0.126605 0.021835 Vertex 2051 -0.043478 0.0633766 0.0405033 Vertex 2052 -0.0424707 0.0634258 0.0409808 Vertex 2053 -0.0414812 0.0634467 0.0412468 Vertex 2054 -0.0404969 0.0634536 0.0414219 Vertex 2055 -0.039496 0.0634667 0.0415276 Vertex 2056 -0.0384984 0.0634699 0.041507 Vertex 2057 -0.037501 0.0634549 0.0414009 Vertex 2058 -0.0364902 0.0634253 0.0412069 Vertex 2059 -0.0354974 0.0634085 0.0409173 Vertex 2060 -0.0345208 0.0633716 0.0403553 Vertex 2061 -0.033478 0.0632761 0.0395519 Vertex 2062 -0.0325077 0.0632413 0.0389915 Vertex 2063 -0.0315047 0.0631978 0.0384961 Vertex 2064 -0.0304985 0.0631621 0.0381216 Vertex 2065 -0.029494 0.0631194 0.0377814 Vertex 2066 -0.0284985 0.0631152 0.0376198 Vertex 2067 -0.0274987 0.0631476 0.0380009 Vertex 2068 -0.0265303 0.0632322 0.0390504 Vertex 2069 0.00977817 0.131153 0.0118468 Vertex 2070 0.00880568 0.131337 0.0114907 Vertex 2071 0.0178265 0.128119 0.0148069 Vertex 2072 0.0244543 0.124393 0.0172632 Vertex 2073 0.0267042 0.122545 0.0181085 Vertex 2074 0.0343104 0.114465 0.0209626 Vertex 2075 0.00803725 0.125889 0.0313 Vertex 2076 -0.0461368 0.13275 0.0116924 Vertex 2077 0.0108694 0.130662 0.0179509 Vertex 2078 -0.0164763 0.064491 0.0530345 Vertex 2079 -0.0154803 0.0645289 0.0535158 Vertex 2080 -0.0144784 0.0645279 0.0535035 Vertex 2081 -0.0134598 0.0645734 0.0539775 Vertex 2082 -0.0124605 0.0646213 0.0545516 Vertex 2083 -0.0114811 0.0646532 0.0550744 Vertex 2084 -0.0105091 0.0646847 0.0553841 Vertex 2085 -0.00951396 0.0647096 0.055646 Vertex 2086 -0.00851461 0.0647289 0.0558918 Vertex 2087 -0.00749994 0.0647419 0.0560829 Vertex 2088 -0.0064961 0.0647536 0.0562043 Vertex 2089 -0.00550336 0.0647558 0.0562438 Vertex 2090 -0.00450514 0.0647631 0.0563697 Vertex 2091 -0.00349826 0.0647878 0.0565544 Vertex 2092 -0.00250198 0.0647948 0.0567081 Vertex 2093 -0.00150357 0.0647954 0.0567431 Vertex 2094 -0.000498244 0.0647983 0.0567029 Vertex 2095 0.000503407 0.0647904 0.0566018 Vertex 2096 0.00150101 0.0647986 0.0566673 Vertex 2097 0.00251112 0.0647983 0.0566425 Vertex 2098 0.00350781 0.064793 0.0565955 Vertex 2099 0.00451245 0.064772 0.0563635 Vertex 2100 0.00550696 0.0647473 0.0560963 Vertex 2101 0.00651279 0.0647152 0.0557475 Vertex 2102 0.00750963 0.0646928 0.0554932 Vertex 2103 0.00852849 0.0646614 0.0551736 Vertex 2104 0.0135044 0.118213 0.0361594 Vertex 2105 -0.0767143 0.154218 -0.0048969 Vertex 2106 -0.0737112 0.155478 -0.0269075 Vertex 2107 -0.0843615 0.0993477 -0.00259153 Vertex 2108 0.0424402 0.100042 0.00119598 Vertex 2109 -0.0754947 0.142836 0.0460912 Vertex 2110 -0.077508 0.174998 -0.0490226 Vertex 2111 0.000190276 0.131527 0.0154789 Vertex 2112 -0.0175015 0.119559 0.0348485 Vertex 2113 0.00249824 0.119676 0.0375233 Vertex 2114 0.00349102 0.11963 0.0373483 Vertex 2115 0.0044907 0.119648 0.0370088 Vertex 2116 0.00549953 0.119637 0.0367537 Vertex 2117 0.006499 0.119638 0.036869 Vertex 2118 0.00749696 0.119642 0.0368719 Vertex 2119 -0.0205115 0.114066 0.0379617 Vertex 2120 -0.0181282 0.187252 -0.018852 Vertex 2121 0.0416377 0.084481 -0.00877138 Vertex 2122 -0.0464848 0.12067 0.0277891 Vertex 2123 -0.0454987 0.120637 0.0275066 Vertex 2124 -0.00249278 0.121064 0.0370013 Vertex 2125 -0.000500925 0.121055 0.0369996 Vertex 2126 -0.0745094 0.140045 0.0479791 Vertex 2127 -0.0922148 0.11614 0.0373108 Vertex 2128 -0.0134871 0.123689 0.0319378 Vertex 2129 -0.0104881 0.125079 0.0309157 Vertex 2130 -0.0509699 0.122064 -0.0109984 Vertex 2131 0.0199669 0.107838 -0.0162613 Vertex 2132 -0.0940806 0.122789 0.0152778 Vertex 2133 0.0405961 0.0624185 0.0297312 Vertex 2134 0.0415243 0.0623608 0.0290336 Vertex 2135 0.0425314 0.0623712 0.0287546 Vertex 2136 0.0434691 0.0624283 0.0290897 Vertex 2137 0.0444853 0.062436 0.0294527 Vertex 2138 0.0454875 0.0624627 0.0298224 Vertex 2139 0.0464905 0.0624784 0.0299685 Vertex 2140 0.0475024 0.06248 0.0300852 Vertex 2141 0.0485082 0.0624718 0.0300814 Vertex 2142 0.0495191 0.0624602 0.0299628 Vertex 2143 0.0505407 0.062451 0.0297568 Vertex 2144 0.0515344 0.0624078 0.0294591 Vertex 2145 0.0365694 0.109049 0.0260841 Vertex 2146 -0.00603107 0.130744 0.0146461 Vertex 2147 -0.0424989 0.16674 0.00381643 Vertex 2148 -0.0475653 0.166962 -0.00492463 Vertex 2149 -0.0471313 0.132491 0.00541336 Vertex 2150 -0.0926871 0.118696 0.0103064 Vertex 2151 -0.0870053 0.0954387 0.00242783 Vertex 2152 -0.0784995 0.162482 -0.0259435 Vertex 2153 -0.078491 0.121738 0.0515581 Vertex 2154 0.00224686 0.131192 0.0191047 Vertex 2155 -0.00426313 0.130924 0.016725 Vertex 2156 -0.011153 0.129981 0.0142184 Vertex 2157 -0.0197896 0.127727 0.0110836 Vertex 2158 -0.0283564 0.125587 0.00796681 Vertex 2159 -0.0410879 0.12806 0.000341883 Vertex 2160 -0.0421309 0.128083 -3.62159e-05 Vertex 2161 -0.00713141 0.127357 0.0287426 Vertex 2162 -0.00124361 0.130098 0.0236021 Vertex 2163 -0.0252829 0.0751884 0.0479421 Vertex 2164 -0.063251 0.15135 -0.00497603 Vertex 2165 -0.0668589 0.156842 -0.00635476 Vertex 2166 -0.0608875 0.104029 -0.0182853 Vertex 2167 -0.0598828 0.104039 -0.0184233 Vertex 2168 -0.0739165 0.113504 -0.00683708 Vertex 2169 -0.0628061 0.0896011 -0.0190246 Vertex 2170 -0.0308936 0.0901442 -0.0248987 Vertex 2171 -0.052462 0.0642313 0.0336351 Vertex 2172 -0.051438 0.0643214 0.0343604 Vertex 2173 -0.0503626 0.0642656 0.0349674 Vertex 2174 -0.0494719 0.0643044 0.0356628 Vertex 2175 -0.0228512 0.126901 0.0114323 Vertex 2176 -0.021597 0.124211 0.0236359 Vertex 2177 0.0277966 0.12141 0.0199376 Vertex 2178 -0.00541562 0.128879 0.0264449 Vertex 2179 -0.0661547 0.1622 -0.0162285 Vertex 2180 -0.0434723 0.0647942 0.0406198 Vertex 2181 -0.0424858 0.064826 0.0410217 Vertex 2182 -0.0414966 0.064844 0.0412967 Vertex 2183 -0.0404921 0.0648693 0.0415314 Vertex 2184 -0.0394972 0.0648803 0.0416583 Vertex 2185 -0.0384977 0.0648621 0.0416261 Vertex 2186 -0.0375049 0.0648832 0.0416292 Vertex 2187 -0.0364897 0.0648519 0.0414613 Vertex 2188 -0.035492 0.0648204 0.0410644 Vertex 2189 -0.0345021 0.0647803 0.0405279 Vertex 2190 -0.0335094 0.0647262 0.0398847 Vertex 2191 -0.0325205 0.0646875 0.0393461 Vertex 2192 -0.0314872 0.0646167 0.0387865 Vertex 2193 -0.0304944 0.064586 0.038393 Vertex 2194 -0.0294959 0.0645466 0.0380401 Vertex 2195 -0.0285046 0.0645461 0.0380462 Vertex 2196 -0.027486 0.0646029 0.0384895 Vertex 2197 0.0143125 0.129601 0.0135477 Vertex 2198 0.0151955 0.129241 0.0138359 Vertex 2199 0.0236525 0.124901 0.0169603 Vertex 2200 0.0259555 0.123153 0.0178233 Vertex 2201 0.0349362 0.113582 0.0211925 Vertex 2202 -0.00900002 0.1303 0.0121232 Vertex 2203 -0.0467325 0.133652 0.0114554 Vertex 2204 0.0472026 0.0681414 0.0256953 Vertex 2205 -0.0164672 0.0659336 0.0534892 Vertex 2206 -0.0154968 0.0659374 0.0537935 Vertex 2207 -0.014508 0.0659228 0.0537042 Vertex 2208 -0.0134952 0.0659366 0.0537869 Vertex 2209 -0.0124852 0.0659775 0.0542376 Vertex 2210 -0.0114925 0.06602 0.0547394 Vertex 2211 -0.0104895 0.0660607 0.0552117 Vertex 2212 -0.00950506 0.0660833 0.0554985 Vertex 2213 -0.00849416 0.0661021 0.0557034 Vertex 2214 -0.00750518 0.0661146 0.0558703 Vertex 2215 -0.00650089 0.0661332 0.0560881 Vertex 2216 -0.00550273 0.0661441 0.0562254 Vertex 2217 -0.00450592 0.0661541 0.056364 Vertex 2218 -0.0034975 0.0661744 0.0565538 Vertex 2219 -0.00249995 0.0661849 0.0567093 Vertex 2220 -0.00149822 0.0661867 0.0567241 Vertex 2221 -0.000497657 0.066177 0.0565989 Vertex 2222 0.000499624 0.0661631 0.0564081 Vertex 2223 0.0015045 0.0661578 0.0563313 Vertex 2224 0.00251128 0.0661582 0.0562906 Vertex 2225 0.00351414 0.0661565 0.0562774 Vertex 2226 0.0045204 0.0661365 0.0560558 Vertex 2227 0.00551724 0.0661119 0.0558057 Vertex 2228 0.00651157 0.066084 0.0555109 Vertex 2229 0.00750533 0.0660627 0.0552439 Vertex 2230 0.00851416 0.06604 0.0550264 Vertex 2231 0.0144977 0.11819 0.0360011 Vertex 2232 0.0154982 0.118174 0.0357451 Vertex 2233 0.0165026 0.118175 0.0355154 Vertex 2234 0.0175115 0.118187 0.0352964 Vertex 2235 0.0185027 0.118159 0.035136 Vertex 2236 -0.0387263 0.127561 -0.000266265 Vertex 2237 -0.0245336 0.118082 0.0325274 Vertex 2238 0.00949782 0.11825 0.0371477 Vertex 2239 0.00284904 0.131659 0.0150261 Vertex 2240 -0.0185008 0.119534 0.0344711 Vertex 2241 -0.0195067 0.119545 0.0340058 Vertex 2242 -0.0204952 0.119495 0.0334766 Vertex 2243 -0.0225483 0.119525 0.0321637 Vertex 2244 -0.0215106 0.119492 0.0328652 Vertex 2245 0.00849911 0.119651 0.036768 Vertex 2246 0.00950115 0.119644 0.0365249 Vertex 2247 -0.0367939 0.127143 0.000444502 Vertex 2248 0.012488 0.119576 0.0355898 Vertex 2249 0.0121624 0.129948 0.0198557 Vertex 2250 0.0164452 0.127885 0.0214354 Vertex 2251 -0.0725345 0.140015 0.0475615 Vertex 2252 0.0147905 0.128825 0.0208219 Vertex 2253 -0.0124935 0.123722 0.0323282 Vertex 2254 -0.0946145 0.122826 0.0212791 Vertex 2255 -0.0498404 0.122243 -0.0112035 Vertex 2256 0.0431391 0.098698 0.00317491 Vertex 2257 0.0442623 0.0959503 0.0151546 Vertex 2258 0.0406613 0.0638232 0.0297482 Vertex 2259 0.0416181 0.0637615 0.0286411 Vertex 2260 0.0425502 0.0637218 0.0280932 Vertex 2261 0.0435205 0.0637429 0.0281056 Vertex 2262 0.0444941 0.0637658 0.0284543 Vertex 2263 0.0454797 0.0637982 0.0288243 Vertex 2264 0.0464934 0.0638096 0.0291729 Vertex 2265 0.0474969 0.0638142 0.0292952 Vertex 2266 0.0485032 0.0638048 0.0293893 Vertex 2267 0.0495086 0.0638139 0.0293036 Vertex 2268 0.0505111 0.0637895 0.0291551 Vertex 2269 -0.0687402 0.156349 0.0177202 Vertex 2270 0.0161 0.12839 0.0198796 Vertex 2271 -0.0211124 0.182965 -0.0210132 Vertex 2272 0.030263 0.116206 0.0279976 Vertex 2273 0.0379602 0.108292 0.00117706 Vertex 2274 0.0387554 0.108357 0.00416438 Vertex 2275 -0.0613991 0.0718897 0.0389316 Vertex 2276 -0.0270737 0.125279 0.00405866 Vertex 2277 -0.061476 0.158429 -0.028587 Vertex 2278 0.0137449 0.12859 0.0232984 Vertex 2279 0.00735972 0.130718 0.020957 Vertex 2280 0.00115082 0.131147 0.0187057 Vertex 2281 -0.00541266 0.130784 0.0163058 Vertex 2282 -0.0123571 0.12972 0.0137799 Vertex 2283 -0.0210495 0.127369 0.0106273 Vertex 2284 -0.029395 0.125597 0.00758806 Vertex 2285 -0.0380634 0.127686 0.00145512 Vertex 2286 -0.0438011 0.128754 0.0022734 Vertex 2287 -0.0610057 0.155949 0.0190169 Vertex 2288 -0.0676703 0.159658 -0.00956407 Vertex 2289 -0.0663702 0.157999 -0.00906779 Vertex 2290 -0.065143 0.156205 -0.00860924 Vertex 2291 -0.0658189 0.0895406 -0.0182783 Vertex 2292 -0.0638201 0.089594 -0.0189434 Vertex 2293 -0.0709153 0.113624 -0.0087498 Vertex 2294 -0.061811 0.0896079 -0.0190442 Vertex 2295 -0.0317955 0.0901023 -0.0248195 Vertex 2296 -0.0361548 0.166687 -0.0142688 Vertex 2297 -0.0450711 0.153185 -0.00674331 Vertex 2298 -0.0548148 0.0883935 -0.0220325 Vertex 2299 -0.0418064 0.0884466 -0.0220226 Vertex 2300 -0.0505296 0.0657745 0.0361047 Vertex 2301 -0.0493845 0.0657885 0.0368321 Vertex 2302 -0.045035 0.131096 0.00921538 Vertex 2303 0.0285362 0.120755 0.0202147 Vertex 2304 0.00424945 0.126892 0.0299609 Vertex 2305 -0.0454889 0.0660999 0.0395126 Vertex 2306 -0.0434963 0.0661943 0.0406667 Vertex 2307 -0.0425031 0.0662262 0.0410651 Vertex 2308 -0.0414917 0.0662628 0.0414077 Vertex 2309 -0.0404937 0.0662835 0.0416604 Vertex 2310 -0.0394965 0.0662956 0.0417788 Vertex 2311 -0.0384968 0.066293 0.0418062 Vertex 2312 -0.0374975 0.0662835 0.0416878 Vertex 2313 -0.0364911 0.0662596 0.041455 Vertex 2314 -0.0355073 0.0662414 0.0411418 Vertex 2315 -0.0344904 0.0661905 0.0406967 Vertex 2316 -0.0335022 0.0661629 0.0402747 Vertex 2317 -0.0324978 0.0661054 0.0396515 Vertex 2318 -0.0314917 0.0660582 0.0391556 Vertex 2319 -0.0305014 0.066031 0.0387492 Vertex 2320 -0.0294956 0.0660091 0.0384906 Vertex 2321 -0.0284876 0.0660147 0.0384689 Vertex 2322 -0.0275277 0.0660102 0.0388181 Vertex 2323 -0.026605 0.06607 0.0397555 Vertex 2324 0.0186908 0.127724 0.0151265 Vertex 2325 0.0252163 0.1238 0.0175509 Vertex 2326 0.0296171 0.11988 0.0191943 Vertex 2327 0.0361181 0.111694 0.0216233 Vertex 2328 0.0378254 0.108706 0.0222481 Vertex 2329 -0.0741599 0.155538 0.00126713 Vertex 2330 0.0452046 0.0684536 0.0248447 Vertex 2331 0.0248702 0.121138 0.0274186 Vertex 2332 -0.0801768 0.155046 0.0137223 Vertex 2333 -0.0164761 0.0673645 0.0539812 Vertex 2334 -0.015485 0.0673895 0.0543529 Vertex 2335 -0.0144888 0.0673806 0.0542261 Vertex 2336 -0.013511 0.0673225 0.0538556 Vertex 2337 -0.0125029 0.0673483 0.0540527 Vertex 2338 -0.011518 0.0673875 0.054571 Vertex 2339 -0.010503 0.0674297 0.0550101 Vertex 2340 -0.00948933 0.0674612 0.0553354 Vertex 2341 -0.00849422 0.0674811 0.0555845 Vertex 2342 -0.00749086 0.0675042 0.0558082 Vertex 2343 -0.00650569 0.0675101 0.0559953 Vertex 2344 -0.00549741 0.0675328 0.0561955 Vertex 2345 -0.00450121 0.0675415 0.056336 Vertex 2346 -0.00350144 0.0675505 0.0564719 Vertex 2347 -0.0025007 0.0675576 0.0566246 Vertex 2348 -0.00149557 0.0675596 0.0566557 Vertex 2349 -0.000496537 0.0675633 0.0565514 Vertex 2350 0.000505152 0.0675448 0.0563482 Vertex 2351 0.00150869 0.0675259 0.0561223 Vertex 2352 0.00251277 0.0675114 0.055914 Vertex 2353 0.00351108 0.067509 0.0559028 Vertex 2354 0.00451102 0.0674972 0.0557889 Vertex 2355 0.0055201 0.0674746 0.0556049 Vertex 2356 0.00651867 0.0674599 0.0552944 Vertex 2357 0.00750596 0.0674413 0.055134 Vertex 2358 0.00850767 0.067431 0.0550095 Vertex 2359 0.00951997 0.0673959 0.0546877 Vertex 2360 0.0215785 0.11262 0.0367657 Vertex 2361 -0.0774971 0.128861 0.0533302 Vertex 2362 -0.0915343 0.140602 0.0181819 Vertex 2363 0.035616 0.10962 -0.00284805 Vertex 2364 0.00849857 0.118254 0.0373924 Vertex 2365 -0.0729498 0.156259 0.0191473 Vertex 2366 -0.0555057 0.153886 0.023914 Vertex 2367 0.00508264 0.128731 0.0273249 Vertex 2368 -0.0776837 0.154812 0.0263001 Vertex 2369 -0.0235467 0.119499 0.0316537 Vertex 2370 -0.0245147 0.119422 0.0312229 Vertex 2371 -0.0255089 0.119394 0.0308336 Vertex 2372 -0.0344987 0.119335 0.0301753 Vertex 2373 -0.0354943 0.119369 0.0303337 Vertex 2374 0.0135067 0.1196 0.0353985 Vertex 2375 -0.0504161 0.144734 0.0123765 Vertex 2376 -0.0694673 0.0635361 0.0216095 Vertex 2377 -0.050108 0.144746 0.0113816 Vertex 2378 -0.0778042 0.156927 -0.0169128 Vertex 2379 -0.073319 0.153662 0.0322986 Vertex 2380 -0.0114851 0.123708 0.0326887 Vertex 2381 0.0437731 0.0973301 0.016155 Vertex 2382 0.0438296 0.0973504 0.015162 Vertex 2383 -0.0875349 0.110472 0.0163392 Vertex 2384 -0.0879612 0.103656 0.0103875 Vertex 2385 0.0277412 0.121021 0.0227689 Vertex 2386 -0.0700794 0.154941 0.0289273 Vertex 2387 0.0259209 0.122835 0.0206655 Vertex 2388 0.0435313 0.065065 0.0273105 Vertex 2389 0.0445042 0.0650854 0.0275412 Vertex 2390 0.0454924 0.0651146 0.027904 Vertex 2391 0.0464851 0.0651547 0.0281822 Vertex 2392 0.0474936 0.0651497 0.0284001 Vertex 2393 0.0485013 0.0651587 0.0285278 Vertex 2394 0.0495045 0.0651553 0.0285253 Vertex 2395 0.0505096 0.0651476 0.0284061 Vertex 2396 0.0515215 0.0651377 0.0281771 Vertex 2397 0.0525369 0.0651172 0.0279377 Vertex 2398 0.053572 0.0650953 0.0274823 Vertex 2399 -0.0414982 0.166749 0.00369508 Vertex 2400 0.0421258 0.100042 0.000179811 Vertex 2401 -0.08755 0.12805 0.000278104 Vertex 2402 0.0444341 0.0861163 0.024155 Vertex 2403 0.0447845 0.0903596 0.0201575 Vertex 2404 0.0135274 0.12988 0.0160733 Vertex 2405 -0.0775002 0.156948 -0.0139048 Vertex 2406 0.0170314 0.126681 0.0245104 Vertex 2407 0.0128678 0.128966 0.0229731 Vertex 2408 0.00637271 0.130879 0.0205945 Vertex 2409 0.000169576 0.131258 0.0183392 Vertex 2410 -0.00656125 0.130634 0.0158888 Vertex 2411 -0.0136265 0.129395 0.0133241 Vertex 2412 -0.0223056 0.126998 0.0101726 Vertex 2413 -0.0400438 0.127998 0.000725921 Vertex 2414 -0.0390536 0.127857 0.00108873 Vertex 2415 0.0175177 0.121695 0.0318921 Vertex 2416 -0.071744 0.162192 -0.0110365 Vertex 2417 -0.0772789 0.154395 0.0279022 Vertex 2418 -0.0809037 0.153834 0.0267225 Vertex 2419 -0.0799402 0.132433 -0.00455304 Vertex 2420 -0.0408646 0.104225 -0.0205494 Vertex 2421 -0.0608155 0.0896295 -0.0193008 Vertex 2422 -0.0598094 0.0896854 -0.0200419 Vertex 2423 -0.0328294 0.0901297 -0.0245803 Vertex 2424 -0.0828365 0.116201 -0.00217327 Vertex 2425 -0.00983206 0.0896484 -0.0366649 Vertex 2426 -0.00682874 0.0896331 -0.0361816 Vertex 2427 -0.0719085 0.064649 0.0201308 Vertex 2428 -0.0609289 0.112535 -0.0147528 Vertex 2429 0.0131317 0.10725 -0.0189993 Vertex 2430 -0.0038734 0.104505 -0.022849 Vertex 2431 0.0292558 0.120076 0.0204837 Vertex 2432 -0.037003 0.126393 0.0195465 Vertex 2433 -0.0464696 0.0675313 0.0396048 Vertex 2434 -0.0454731 0.0675709 0.040115 Vertex 2435 -0.0434945 0.0676224 0.0409141 Vertex 2436 -0.042494 0.0676556 0.0412962 Vertex 2437 -0.0415011 0.0676725 0.0415782 Vertex 2438 -0.04049 0.0677003 0.0417506 Vertex 2439 -0.0394947 0.0676998 0.0417669 Vertex 2440 -0.0384975 0.0676842 0.0417259 Vertex 2441 -0.0374964 0.0676867 0.0416821 Vertex 2442 -0.0365005 0.0676756 0.0415398 Vertex 2443 -0.0355091 0.0676694 0.0413832 Vertex 2444 -0.0345105 0.0676457 0.041143 Vertex 2445 -0.0335093 0.0676035 0.0406399 Vertex 2446 -0.0325025 0.0675467 0.0400218 Vertex 2447 -0.031508 0.0675059 0.0394967 Vertex 2448 -0.0305 0.0674574 0.0390127 Vertex 2449 -0.0294982 0.0674485 0.03887 Vertex 2450 -0.0284943 0.0674472 0.03888 Vertex 2451 -0.027568 0.0674298 0.0392602 Vertex 2452 -0.0264702 0.0676761 0.0408217 Vertex 2453 0.0310274 0.118497 0.0197321 Vertex 2454 0.0303372 0.119206 0.0194646 Vertex 2455 0.0355348 0.112677 0.0214127 Vertex 2456 -0.0158225 0.127346 0.0227279 Vertex 2457 0.000543528 0.123331 0.0344653 Vertex 2458 -0.0190668 0.12797 0.0127969 Vertex 2459 -0.0663982 0.164105 -0.0192035 Vertex 2460 -0.0677428 0.164471 -0.018256 Vertex 2461 -0.0174894 0.0687336 0.053904 Vertex 2462 -0.0164665 0.068805 0.0544258 Vertex 2463 -0.0154888 0.0688106 0.054717 Vertex 2464 -0.0144966 0.0687907 0.0546395 Vertex 2465 -0.0135013 0.0687469 0.0541774 Vertex 2466 -0.0125103 0.0687513 0.0543288 Vertex 2467 -0.0115046 0.0688083 0.054897 Vertex 2468 -0.0104818 0.0688481 0.0551963 Vertex 2469 -0.00952254 0.0688375 0.0554289 Vertex 2470 -0.00850916 0.0688709 0.0557558 Vertex 2471 -0.00750084 0.0688979 0.0559719 Vertex 2472 -0.00652053 0.0688834 0.0561767 Vertex 2473 -0.00550834 0.0689154 0.0563731 Vertex 2474 -0.00450651 0.0689184 0.0565193 Vertex 2475 -0.00350265 0.0689326 0.0566398 Vertex 2476 -0.00249623 0.0689511 0.056733 Vertex 2477 -0.00149713 0.0689596 0.0566805 Vertex 2478 -0.000486159 0.0689333 0.056515 Vertex 2479 0.000510392 0.0689287 0.0563645 Vertex 2480 0.00152278 0.0688979 0.0560686 Vertex 2481 0.0025057 0.0688921 0.0558596 Vertex 2482 0.00350877 0.068881 0.0557692 Vertex 2483 0.00450508 0.0688823 0.055725 Vertex 2484 0.00550935 0.0688576 0.0555484 Vertex 2485 0.00650425 0.06886 0.0554952 Vertex 2486 0.00751041 0.0688465 0.0554032 Vertex 2487 0.00850711 0.0688384 0.055257 Vertex 2488 0.00950065 0.0688226 0.0549942 Vertex 2489 0.0369605 0.105409 -0.00483089 Vertex 2490 0.0390081 0.105539 0.000161276 Vertex 2491 0.00181081 0.131692 0.0146438 Vertex 2492 0.00444274 0.131539 0.0170385 Vertex 2493 -0.0605228 0.155495 0.0235493 Vertex 2494 0.0199666 0.126684 0.0198751 Vertex 2495 0.0415962 0.101461 0.0191676 Vertex 2496 0.00750189 0.118272 0.0376599 Vertex 2497 0.00648846 0.118239 0.0378444 Vertex 2498 0.00548892 0.118228 0.0378342 Vertex 2499 0.00449629 0.118272 0.0381357 Vertex 2500 -0.0639127 0.160548 -0.0182872 Vertex 2501 -0.0340875 0.177472 -0.00744261 Vertex 2502 -0.0825971 0.103328 -0.00360734 Vertex 2503 -0.0933098 0.126856 0.0132534 Vertex 2504 -0.0364979 0.119358 0.0304421 Vertex 2505 -0.01578 0.128598 0.00819831 Vertex 2506 -0.0636791 0.157483 -0.0138656 Vertex 2507 0.03476 0.113033 0.0239837 Vertex 2508 -0.0743937 0.157452 -0.00470821 Vertex 2509 -0.0104724 0.123683 0.0330383 Vertex 2510 0.0436028 0.0973418 0.0171655 Vertex 2511 0.0439353 0.0973509 0.0141605 Vertex 2512 -0.0918243 0.128307 0.0322434 Vertex 2513 -0.069479 0.123198 0.0530616 Vertex 2514 0.0211923 0.12581 0.0217553 Vertex 2515 0.0416849 0.100037 0.02216 Vertex 2516 0.0428754 0.100088 0.00417324 Vertex 2517 0.0425933 0.066459 0.0273252 Vertex 2518 0.0435266 0.0664036 0.0265247 Vertex 2519 0.0445305 0.0664178 0.0264316 Vertex 2520 0.0454709 0.0664599 0.0266758 Vertex 2521 0.0464907 0.0664648 0.0271426 Vertex 2522 0.0474899 0.0664975 0.0274045 Vertex 2523 0.0484981 0.0664872 0.0276228 Vertex 2524 0.0495021 0.0664943 0.0276338 Vertex 2525 0.0505119 0.0665023 0.0275359 Vertex 2526 0.0515169 0.0664883 0.0274059 Vertex 2527 0.052528 0.0664738 0.0271694 Vertex 2528 0.0363255 0.10537 -0.00683316 Vertex 2529 0.0400335 0.107013 0.011165 Vertex 2530 -0.0900384 0.135039 0.0102136 Vertex 2531 0.0447245 0.0861403 0.0231669 Vertex 2532 -0.0783399 0.174997 -0.0480125 Vertex 2533 0.0440584 0.0860884 0.0251529 Vertex 2534 -0.00096127 0.131397 0.0150615 Vertex 2535 0.0154483 0.127759 0.0239281 Vertex 2536 0.016279 0.127286 0.0242335 Vertex 2537 0.00535242 0.130989 0.0202309 Vertex 2538 -0.000925431 0.131188 0.0179397 Vertex 2539 -0.00771141 0.130468 0.0154714 Vertex 2540 -0.00211759 0.125578 0.0320366 Vertex 2541 0.00866181 0.128565 0.0271896 Vertex 2542 -0.0692325 0.161954 -0.0115912 Vertex 2543 -0.0700564 0.162427 -0.0118963 Vertex 2544 -0.0105331 0.127013 0.0275477 Vertex 2545 -0.0116319 0.126956 0.0271535 Vertex 2546 -0.0590284 0.155612 0.0197248 Vertex 2547 -0.0599273 0.122373 -0.00867944 Vertex 2548 -0.0218698 0.104438 -0.0229686 Vertex 2549 -0.033827 0.0901076 -0.0243377 Vertex 2550 -0.0348266 0.0900917 -0.0242073 Vertex 2551 -0.0358241 0.0900699 -0.0240653 Vertex 2552 -0.082826 0.11472 -0.00162443 Vertex 2553 -0.0606822 0.0362429 0.0450162 Vertex 2554 -0.00381375 0.0896299 -0.0357356 Vertex 2555 -0.00582898 0.0896214 -0.0360418 Vertex 2556 0.0121355 0.107265 -0.0192728 Vertex 2557 -0.00486881 0.104509 -0.0228932 Vertex 2558 0.00913312 0.10443 -0.020596 Vertex 2559 -0.0708677 0.158014 -0.00345716 Vertex 2560 -0.0655537 0.161293 -0.0160037 Vertex 2561 -0.0465015 0.0689677 0.0402969 Vertex 2562 -0.0454899 0.0690197 0.0407796 Vertex 2563 -0.0444898 0.0690526 0.0411578 Vertex 2564 -0.0434783 0.0690982 0.041489 Vertex 2565 -0.042493 0.0690949 0.0416622 Vertex 2566 -0.0414999 0.0690877 0.0417125 Vertex 2567 -0.0405007 0.0690879 0.0417151 Vertex 2568 -0.0394983 0.0690894 0.041721 Vertex 2569 -0.0384987 0.0691035 0.0417776 Vertex 2570 -0.0374998 0.0691046 0.0417769 Vertex 2571 -0.0365043 0.0691064 0.0417512 Vertex 2572 -0.0354963 0.0690808 0.0415601 Vertex 2573 -0.0345036 0.0690703 0.0414109 Vertex 2574 -0.0334941 0.0690232 0.0409338 Vertex 2575 -0.0324875 0.068969 0.0402984 Vertex 2576 -0.0315055 0.0689302 0.0397623 Vertex 2577 -0.0305029 0.0689001 0.0393777 Vertex 2578 -0.0295002 0.0688631 0.0391758 Vertex 2579 -0.0284901 0.0688983 0.0393825 Vertex 2580 -0.0275554 0.0689002 0.0398598 Vertex 2581 -0.0264962 0.0690788 0.0415599 Vertex 2582 0.0317014 0.117733 0.0199863 Vertex 2583 0.0336732 0.115326 0.0207292 Vertex 2584 -0.0288448 0.124881 0.0180835 Vertex 2585 -0.0793976 0.151048 0.0347829 Vertex 2586 -0.056711 0.153132 0.0293166 Vertex 2587 -0.0217893 0.122494 0.0280004 Vertex 2588 -0.0685258 0.165031 -0.0185494 Vertex 2589 -0.0669714 0.163891 -0.0179699 Vertex 2590 -0.0174958 0.0701523 0.0542792 Vertex 2591 -0.0164967 0.0701922 0.0547571 Vertex 2592 -0.0154911 0.0702181 0.054969 Vertex 2593 -0.0144955 0.0701698 0.0547379 Vertex 2594 -0.013497 0.0701643 0.0543951 Vertex 2595 -0.0124826 0.0701993 0.05486 Vertex 2596 -0.0115098 0.0702302 0.0553956 Vertex 2597 -0.0104698 0.070299 0.0557764 Vertex 2598 -0.00948303 0.0703233 0.0561585 Vertex 2599 -0.00849613 0.0703395 0.0565554 Vertex 2600 -0.00751 0.070341 0.0568254 Vertex 2601 -0.00649809 0.0703887 0.0571625 Vertex 2602 -0.00549985 0.0703921 0.057296 Vertex 2603 -0.00450341 0.0703715 0.0573471 Vertex 2604 -0.0034971 0.0703995 0.0574239 Vertex 2605 -0.00248857 0.0703789 0.0573235 Vertex 2606 -0.00148992 0.070365 0.0570874 Vertex 2607 -0.000484486 0.0703477 0.056848 Vertex 2608 0.000516139 0.0703294 0.0566091 Vertex 2609 0.00151372 0.070315 0.0563646 Vertex 2610 0.00251449 0.0702821 0.0560425 Vertex 2611 0.00350637 0.0702767 0.0558823 Vertex 2612 0.00450679 0.0702611 0.0557926 Vertex 2613 0.00550295 0.0702783 0.0558582 Vertex 2614 0.00650677 0.0702743 0.0558788 Vertex 2615 0.0075074 0.0702645 0.0557506 Vertex 2616 0.00852018 0.0702413 0.0555324 Vertex 2617 0.00952067 0.0702149 0.0551678 Vertex 2618 0.0185916 0.116689 0.0359263 Vertex 2619 0.0174963 0.116768 0.0361173 Vertex 2620 0.0155004 0.116786 0.0363781 Vertex 2621 0.0144965 0.116791 0.0366152 Vertex 2622 0.0165016 0.116787 0.0362663 Vertex 2623 0.0135086 0.116829 0.0366875 Vertex 2624 0.0124993 0.116805 0.0367613 Vertex 2625 0.00449367 0.115547 0.0400425 Vertex 2626 -0.0781375 0.103077 -0.00856917 Vertex 2627 -0.0464892 0.117969 0.0304809 Vertex 2628 -0.0455006 0.117978 0.0306048 Vertex 2629 -0.0445001 0.117958 0.0308281 Vertex 2630 -0.0435009 0.117967 0.030956 Vertex 2631 0.00349251 0.118288 0.0385113 Vertex 2632 -0.00649912 0.118331 0.038456 Vertex 2633 -0.00548585 0.118301 0.0387556 Vertex 2634 -0.0889838 0.099691 0.0193911 Vertex 2635 -0.0374964 0.119384 0.0304732 Vertex 2636 -0.0899954 0.135014 0.00922069 Vertex 2637 -0.0133248 0.129244 0.00909724 Vertex 2638 -0.0144945 0.115487 0.0386767 Vertex 2639 -0.0534472 0.146228 0.0234079 Vertex 2640 -0.0633264 0.159631 -0.0180726 Vertex 2641 -0.00847869 0.123725 0.0338017 Vertex 2642 -0.00947834 0.12371 0.0334225 Vertex 2643 -0.0886398 0.102364 0.0173768 Vertex 2644 -0.0894314 0.137929 0.0371779 Vertex 2645 0.0401119 0.105635 0.0181717 Vertex 2646 -0.0704758 0.123201 0.0533571 Vertex 2647 -0.0689448 0.129685 -0.00899835 Vertex 2648 -0.0745188 0.135846 0.0503978 Vertex 2649 -0.0764868 0.144228 0.0448323 Vertex 2650 0.0435793 0.0677809 0.0261624 Vertex 2651 0.0445696 0.0677675 0.0254424 Vertex 2652 0.0455301 0.0677752 0.0254231 Vertex 2653 0.0464982 0.0677769 0.0257597 Vertex 2654 0.0484971 0.0678077 0.0264809 Vertex 2655 0.0494979 0.0678406 0.0265165 Vertex 2656 0.0505072 0.0678423 0.0265215 Vertex 2657 0.0515085 0.0678015 0.0264788 Vertex 2658 0.0525355 0.0678367 0.0261828 Vertex 2659 0.0535161 0.0677623 0.0259787 Vertex 2660 -0.0878641 0.137757 0.00720039 Vertex 2661 0.0314293 0.102107 0.036834 Vertex 2662 0.044978 0.086159 0.0221711 Vertex 2663 -0.0574243 0.0613459 0.0260206 Vertex 2664 -0.0920426 0.126958 0.0362532 Vertex 2665 -0.0895466 0.0969995 0.0164128 Vertex 2666 0.0408293 0.101363 -0.00180736 Vertex 2667 0.0425261 0.101486 0.00616657 Vertex 2668 0.0146203 0.128223 0.0236197 Vertex 2669 0.0120392 0.129427 0.0226627 Vertex 2670 -0.0581897 0.157381 0.00697939 Vertex 2671 -0.00127622 0.127442 0.029403 Vertex 2672 0.0166245 0.122097 0.0315907 Vertex 2673 -0.0677948 0.160582 -0.0110564 Vertex 2674 -0.0684622 0.16137 -0.0113077 Vertex 2675 -0.0861176 0.152173 0.0250218 Vertex 2676 -0.0760712 0.152304 0.0343668 Vertex 2677 -0.0657288 0.163321 -0.0189522 Vertex 2678 -0.0398664 0.104215 -0.0203975 Vertex 2679 -0.0679463 0.128236 -0.00906158 Vertex 2680 -0.0570341 0.144219 -0.00185162 Vertex 2681 -0.0788514 0.116332 -0.0048797 Vertex 2682 -0.0208698 0.104444 -0.0228641 Vertex 2683 -0.0728795 0.116451 -0.00740226 Vertex 2684 -0.0361905 0.168183 -0.0140562 Vertex 2685 -0.0719091 0.107919 -0.010771 Vertex 2686 -0.0427983 0.0884442 -0.0218161 Vertex 2687 -0.00482566 0.0896201 -0.0359284 Vertex 2688 -0.00882418 0.0896578 -0.0365764 Vertex 2689 -0.00782909 0.0896438 -0.0364286 Vertex 2690 -0.00586693 0.104511 -0.0229142 Vertex 2691 -0.00281596 0.0896133 -0.0355773 Vertex 2692 -0.0679602 0.132601 -0.00851511 Vertex 2693 -0.0454832 0.0704956 0.0415155 Vertex 2694 -0.0444864 0.070528 0.0418968 Vertex 2695 -0.0434937 0.0705308 0.0420517 Vertex 2696 -0.0425054 0.0705013 0.0420152 Vertex 2697 -0.0414959 0.0705202 0.0419075 Vertex 2698 -0.040497 0.0705056 0.0418211 Vertex 2699 -0.0394974 0.0705046 0.0418138 Vertex 2700 -0.0384971 0.0705176 0.0419076 Vertex 2701 -0.0374974 0.0705158 0.0419336 Vertex 2702 -0.0364989 0.0705154 0.0419282 Vertex 2703 -0.0355056 0.0705073 0.0417804 Vertex 2704 -0.0345058 0.0704863 0.0415356 Vertex 2705 -0.0334992 0.0704401 0.0410454 Vertex 2706 -0.0325179 0.0704032 0.0404934 Vertex 2707 -0.0315001 0.070354 0.040029 Vertex 2708 -0.0304972 0.0703216 0.0396594 Vertex 2709 -0.0295 0.0703058 0.0395502 Vertex 2710 -0.0284992 0.0703316 0.0397848 Vertex 2711 -0.0275703 0.070462 0.0404211 Vertex 2712 0.0372544 0.109701 0.0220387 Vertex 2713 0.036686 0.110763 0.0218417 Vertex 2714 -0.0145604 0.127706 0.0231688 Vertex 2715 -0.0581309 0.155502 0.017154 Vertex 2716 0.0441694 0.0706598 0.0245614 Vertex 2717 -0.00523434 0.128086 0.0279795 Vertex 2718 -0.0710479 0.166372 -0.0194754 Vertex 2719 -0.0662562 0.163203 -0.0177078 Vertex 2720 -0.055712 0.155088 0.0136896 Vertex 2721 -0.0174765 0.0715932 0.0547125 Vertex 2722 -0.01652 0.0715906 0.0550352 Vertex 2723 -0.0155013 0.0716083 0.0551341 Vertex 2724 -0.0144862 0.0715775 0.0549247 Vertex 2725 -0.0135947 0.071631 0.0548042 Vertex 2726 -0.0124587 0.0716774 0.0554083 Vertex 2727 -0.0115057 0.0716604 0.0558672 Vertex 2728 -0.010497 0.0717087 0.0563199 Vertex 2729 -0.00947284 0.0717726 0.0568611 Vertex 2730 -0.00848477 0.0718045 0.0573713 Vertex 2731 -0.0075062 0.071811 0.0576623 Vertex 2732 -0.00649113 0.0718493 0.0579775 Vertex 2733 -0.00549985 0.07185 0.0581365 Vertex 2734 -0.00450192 0.0718383 0.058171 Vertex 2735 -0.00349422 0.0718336 0.0581766 Vertex 2736 -0.00249095 0.0718247 0.0580407 Vertex 2737 -0.00148178 0.0718081 0.0578063 Vertex 2738 -0.000460653 0.0717499 0.0573883 Vertex 2739 0.000514565 0.0717586 0.0570729 Vertex 2740 0.00152573 0.0717149 0.0566366 Vertex 2741 0.00252738 0.0716721 0.0561852 Vertex 2742 0.00350574 0.071674 0.0559901 Vertex 2743 0.00450108 0.0716864 0.0560951 Vertex 2744 0.00550383 0.0716948 0.0562222 Vertex 2745 0.00650555 0.0716952 0.056225 Vertex 2746 0.00750117 0.0716903 0.0560753 Vertex 2747 0.0085198 0.0716538 0.0557746 Vertex 2748 0.010477 0.116818 0.0374755 Vertex 2749 -0.0620027 0.172528 -0.0545971 Vertex 2750 -0.0734876 0.127439 0.0525898 Vertex 2751 -0.00449008 0.116939 0.0397737 Vertex 2752 -0.00348806 0.11693 0.0398821 Vertex 2753 -0.00249086 0.116945 0.0398999 Vertex 2754 -0.00149467 0.116953 0.0400314 Vertex 2755 0.0094903 0.116849 0.0377607 Vertex 2756 -0.0519903 0.161388 0.00628165 Vertex 2757 -0.0474929 0.163748 0.00542805 Vertex 2758 -0.0885619 0.129493 0.00323888 Vertex 2759 -0.0423634 0.121318 -0.0123099 Vertex 2760 -0.0735068 0.118971 0.0531919 Vertex 2761 -0.0425043 0.117982 0.0312159 Vertex 2762 -0.0405007 0.118003 0.0314814 Vertex 2763 -0.00749979 0.118315 0.0383098 Vertex 2764 -0.0725001 0.120391 0.0535845 Vertex 2765 -0.0385014 0.119389 0.0303589 Vertex 2766 -0.0532846 0.152692 0.0160461 Vertex 2767 -0.0124987 0.115524 0.0391996 Vertex 2768 -0.0538929 0.14622 0.0244012 Vertex 2769 0.0333375 0.115599 0.0220283 Vertex 2770 0.0250594 0.122946 0.0231962 Vertex 2771 0.0406194 0.104193 0.00117617 Vertex 2772 0.0381439 0.103967 -0.00387277 Vertex 2773 -0.0846334 0.108922 0.00436756 Vertex 2774 -0.0278908 0.0903405 -0.0316075 Vertex 2775 -0.00240135 0.128537 0.0275513 Vertex 2776 0.042474 0.101514 0.0131646 Vertex 2777 -0.0744952 0.144184 0.0450216 Vertex 2778 -0.0754912 0.144221 0.0449451 Vertex 2779 -0.0924811 0.125593 0.0372603 Vertex 2780 0.0445518 0.069148 0.0246508 Vertex 2781 -0.00944135 0.168135 -0.0197365 Vertex 2782 0.0421339 0.102871 0.00816377 Vertex 2783 -0.0627003 0.150649 -0.00857321 Vertex 2784 0.0484958 0.0691068 0.025078 Vertex 2785 -0.0934989 0.122762 0.0122811 Vertex 2786 0.0525192 0.0691267 0.0251103 Vertex 2787 -0.0449903 0.16693 -0.00785376 Vertex 2788 -0.0513967 0.161204 -0.00381805 Vertex 2789 -0.0239518 0.123773 0.0227902 Vertex 2790 0.0417869 0.088692 -0.00877741 Vertex 2791 -0.0634206 0.167809 -0.0425955 Vertex 2792 0.0275962 0.102142 0.0400686 Vertex 2793 0.0262381 0.119658 0.0279158 Vertex 2794 0.0241906 0.121901 0.0271611 Vertex 2795 0.0178192 0.126124 0.0248053 Vertex 2796 0.00583381 0.129313 0.0261699 Vertex 2797 -0.0543547 0.158623 0.00837339 Vertex 2798 -0.0635975 0.15411 -0.00948093 Vertex 2799 -0.0640946 0.155219 -0.00966954 Vertex 2800 -0.0664541 0.159015 -0.0105538 Vertex 2801 -0.0899696 0.15095 0.0147905 Vertex 2802 -0.0325959 0.124521 0.0211556 Vertex 2803 -0.0103882 0.129888 0.00873113 Vertex 2804 -0.0116527 0.129557 0.00826831 Vertex 2805 -0.0128512 0.129269 0.0078276 Vertex 2806 -0.0388642 0.104209 -0.02036 Vertex 2807 0.00518099 0.090879 -0.0329112 Vertex 2808 -0.0192289 0.178619 -0.0235673 Vertex 2809 -0.0281256 0.165243 -0.0164075 Vertex 2810 -0.0510936 0.156101 -0.00485677 Vertex 2811 -0.0749441 0.129634 -0.00796551 Vertex 2812 -0.0767139 0.070678 0.0244626 Vertex 2813 -0.0564238 0.0718073 0.0399857 Vertex 2814 -0.0438038 0.0884337 -0.0219011 Vertex 2815 -0.00986994 0.104508 -0.0232523 Vertex 2816 0.0101263 0.107276 -0.0197522 Vertex 2817 -0.0530851 0.151641 -0.00314317 Vertex 2818 -0.0709552 0.134052 -0.00817596 Vertex 2819 -0.00687105 0.104506 -0.0230032 Vertex 2820 -0.00186382 0.104504 -0.0225214 Vertex 2821 -0.0474992 0.0718408 0.0410603 Vertex 2822 -0.0464862 0.0718998 0.0415251 Vertex 2823 -0.0454912 0.0719252 0.0419203 Vertex 2824 -0.0444999 0.0719382 0.0422118 Vertex 2825 -0.0434973 0.0719505 0.0423325 Vertex 2826 -0.0425015 0.0719333 0.0422422 Vertex 2827 -0.0414982 0.0719267 0.042103 Vertex 2828 -0.0404967 0.071918 0.0419528 Vertex 2829 -0.0394983 0.0719214 0.0419294 Vertex 2830 -0.0384957 0.0719179 0.0419735 Vertex 2831 -0.0374981 0.0719295 0.0420686 Vertex 2832 -0.0365004 0.0719314 0.0420432 Vertex 2833 -0.0354914 0.0719062 0.0418497 Vertex 2834 -0.0344943 0.0718865 0.0415833 Vertex 2835 -0.0334964 0.0718545 0.0411869 Vertex 2836 -0.0324962 0.0718107 0.0406773 Vertex 2837 -0.0315034 0.0717826 0.0402663 Vertex 2838 -0.0304968 0.071744 0.0399232 Vertex 2839 -0.0294931 0.0717523 0.039896 Vertex 2840 -0.0285258 0.0717501 0.0402231 Vertex 2841 -0.027646 0.071755 0.0409574 Vertex 2842 -0.0265911 0.123944 0.0203778 Vertex 2843 -0.0203273 0.127615 0.0123404 Vertex 2844 -0.047302 0.16443 0.00497116 Vertex 2845 -0.0693087 0.165593 -0.0188405 Vertex 2846 -0.06502 0.161419 -0.0172527 Vertex 2847 -0.0667865 0.156181 0.0155153 Vertex 2848 -0.0174793 0.0730127 0.0550809 Vertex 2849 -0.0164865 0.0730277 0.0553332 Vertex 2850 -0.0154933 0.0730227 0.0553537 Vertex 2851 -0.0145068 0.0730096 0.0554058 Vertex 2852 -0.0134817 0.073078 0.0557755 Vertex 2853 -0.0125037 0.0730609 0.0559849 Vertex 2854 -0.0115028 0.0730832 0.0562182 Vertex 2855 -0.0104955 0.0731168 0.0565579 Vertex 2856 -0.00949277 0.073156 0.0570282 Vertex 2857 -0.00849692 0.0731924 0.0575239 Vertex 2858 -0.00751646 0.0732149 0.0579299 Vertex 2859 -0.00648913 0.0732625 0.0583326 Vertex 2860 -0.00551998 0.0732424 0.0584734 Vertex 2861 -0.00449908 0.0732747 0.0586205 Vertex 2862 -0.0034971 0.0732704 0.0586485 Vertex 2863 -0.0024916 0.073257 0.0585379 Vertex 2864 -0.00148369 0.0732377 0.0582942 Vertex 2865 -0.000474921 0.0732072 0.0579427 Vertex 2866 0.000540453 0.0731645 0.0574875 Vertex 2867 0.00152589 0.0731231 0.0568629 Vertex 2868 0.00252027 0.0730778 0.0562797 Vertex 2869 0.00350083 0.0730867 0.0562031 Vertex 2870 0.00450223 0.0730917 0.0563795 Vertex 2871 0.00550411 0.0731036 0.0564845 Vertex 2872 0.00650695 0.0731027 0.0564796 Vertex 2873 0.00752021 0.073081 0.0562837 Vertex 2874 0.00851959 0.0730626 0.056014 Vertex 2875 -0.0205044 0.11679 0.0360351 Vertex 2876 -0.0135132 0.116917 0.0382221 Vertex 2877 -0.0174998 0.115454 0.0379182 Vertex 2878 -0.0134922 0.122339 0.0335983 Vertex 2879 -0.0711473 0.17507 -0.0540267 Vertex 2880 -0.0155327 0.116851 0.0372458 Vertex 2881 -0.0145147 0.116898 0.0378441 Vertex 2882 -0.0124867 0.11689 0.0385307 Vertex 2883 0.00249078 0.115545 0.0403845 Vertex 2884 -0.0180519 0.128104 0.0102643 Vertex 2885 -0.0724981 0.121807 0.0536688 Vertex 2886 0.014393 0.129494 0.0163965 Vertex 2887 -0.0685095 0.148391 0.0402581 Vertex 2888 -0.0745085 0.118967 0.0529255 Vertex 2889 -0.0414996 0.117985 0.0314618 Vertex 2890 -0.00850406 0.11834 0.0382239 Vertex 2891 -0.0714938 0.120397 0.053531 Vertex 2892 -0.0395052 0.119385 0.0302298 Vertex 2893 -0.0929753 0.11876 0.0253083 Vertex 2894 -0.0255852 0.0930492 -0.0306058 Vertex 2895 -0.0134985 0.11551 0.0389419 Vertex 2896 -0.0887482 0.102363 0.0163794 Vertex 2897 -0.0815485 0.124491 0.0516101 Vertex 2898 0.0425401 0.0986672 0.000167984 Vertex 2899 0.0402375 0.104169 0.000177419 Vertex 2900 -0.0626979 0.149033 -0.0165859 Vertex 2901 0.0415042 0.104246 0.00816492 Vertex 2902 -0.0814657 0.130234 0.0522094 Vertex 2903 -0.0755086 0.133058 0.0519758 Vertex 2904 0.0447855 0.0917675 0.0181585 Vertex 2905 -0.0774688 0.144183 0.0446652 Vertex 2906 -0.0838169 0.107636 0.0253505 Vertex 2907 0.0416553 0.0900846 -0.00877196 Vertex 2908 -0.0588172 0.123244 -0.00816875 Vertex 2909 -0.052917 0.144693 0.0213981 Vertex 2910 -0.0944514 0.122808 0.0172688 Vertex 2911 0.0428559 0.0972978 0.0221679 Vertex 2912 0.0430852 0.0973049 0.0211625 Vertex 2913 0.0441966 0.0973694 0.0101636 Vertex 2914 -0.000867993 0.104495 -0.0223762 Vertex 2915 0.0450144 0.0945871 0.00816469 Vertex 2916 0.0448957 0.0945828 0.0101613 Vertex 2917 0.0448731 0.0945767 0.0111579 Vertex 2918 -0.0735479 0.162209 -0.012171 Vertex 2919 -0.0393811 0.128131 0.00244283 Vertex 2920 0.0337238 0.11401 0.0250189 Vertex 2921 -0.0945025 0.125547 0.0202583 Vertex 2922 0.00443138 0.126024 0.0314422 Vertex 2923 -0.0454976 0.13168 0.014882 Vertex 2924 -0.0334278 0.124984 0.0208436 Vertex 2925 -0.000536732 0.10034 0.0474846 Vertex 2926 0.0308738 0.115323 0.0282321 Vertex 2927 0.0320582 0.11345 0.0286813 Vertex 2928 0.0326073 0.112448 0.0288842 Vertex 2929 -0.0439578 0.12961 0.0140149 Vertex 2930 -0.0631406 0.152896 -0.00931447 Vertex 2931 -0.0732189 0.155097 0.0278276 Vertex 2932 -0.0102548 0.179004 -0.0295955 Vertex 2933 -0.0718118 0.14996 0.0389054 Vertex 2934 -0.00805064 0.130356 0.00959263 Vertex 2935 -0.0091854 0.130144 0.00917512 Vertex 2936 -0.0543656 0.153368 0.0199938 Vertex 2937 -0.0654224 0.156324 0.0217941 Vertex 2938 0.00418461 0.0908826 -0.0329329 Vertex 2939 0.00317447 0.0908801 -0.0331491 Vertex 2940 -0.0619388 0.0647772 0.0309092 Vertex 2941 -0.0538047 0.0884108 -0.022116 Vertex 2942 -0.0528013 0.0884055 -0.0219839 Vertex 2943 -0.051798 0.0884029 -0.0218862 Vertex 2944 -0.0585008 0.0732388 0.0410714 Vertex 2945 -0.0574944 0.0732758 0.0411576 Vertex 2946 -0.0564978 0.0732565 0.0410435 Vertex 2947 -0.0553906 0.073233 0.0409139 Vertex 2948 -0.0544961 0.0732542 0.0409056 Vertex 2949 -0.0534972 0.0732542 0.0410474 Vertex 2950 -0.0523543 0.073291 0.0414729 Vertex 2951 -0.0513529 0.0733082 0.0416893 Vertex 2952 -0.0504955 0.0733248 0.0417999 Vertex 2953 -0.0495043 0.073253 0.0416255 Vertex 2954 -0.0485008 0.0732772 0.0415918 Vertex 2955 -0.0475077 0.0732702 0.0416223 Vertex 2956 -0.0464944 0.0733156 0.0418074 Vertex 2957 -0.0454969 0.0733342 0.042072 Vertex 2958 -0.0444884 0.0733739 0.0424053 Vertex 2959 -0.0434944 0.0733818 0.0425428 Vertex 2960 -0.0424965 0.0733822 0.0425454 Vertex 2961 -0.0415001 0.0733705 0.042415 Vertex 2962 -0.0404948 0.0733395 0.0422389 Vertex 2963 -0.0395018 0.0733502 0.0421461 Vertex 2964 -0.0384993 0.0733372 0.0420402 Vertex 2965 -0.0374936 0.0733328 0.0420467 Vertex 2966 -0.0364993 0.0733348 0.0420574 Vertex 2967 -0.0354954 0.0733233 0.0419636 Vertex 2968 -0.0344935 0.0733008 0.0417052 Vertex 2969 -0.0335401 0.0732865 0.0413362 Vertex 2970 -0.0325067 0.0732308 0.0407775 Vertex 2971 -0.0315215 0.0732244 0.0404306 Vertex 2972 -0.030493 0.0731979 0.0402297 Vertex 2973 -0.0294789 0.0732089 0.0403736 Vertex 2974 -0.02858 0.0731702 0.040795 Vertex 2975 -0.0177178 0.125534 0.0250034 Vertex 2976 -0.0650198 0.154365 0.0307072 Vertex 2977 0.0117574 0.130329 0.0182774 Vertex 2978 -0.0460993 0.132381 0.0175967 Vertex 2979 -0.0701684 0.165994 -0.0191552 Vertex 2980 -0.0644192 0.16051 -0.0170316 Vertex 2981 0.00440154 0.12483 0.0329119 Vertex 2982 -0.0887181 0.123977 0.00228597 Vertex 2983 -0.0184891 0.0743773 0.0548673 Vertex 2984 -0.0174978 0.0744121 0.0553624 Vertex 2985 -0.0164935 0.0744329 0.0555937 Vertex 2986 -0.0154906 0.0744572 0.0558178 Vertex 2987 -0.0144845 0.0744882 0.056153 Vertex 2988 -0.0134963 0.0744967 0.0564394 Vertex 2989 -0.0124992 0.0745024 0.0565746 Vertex 2990 -0.0114929 0.0745162 0.0566704 Vertex 2991 -0.0105044 0.0745085 0.0567054 Vertex 2992 -0.00951606 0.0745243 0.0569833 Vertex 2993 -0.00849476 0.0745791 0.0575173 Vertex 2994 -0.00751948 0.0746046 0.0579524 Vertex 2995 -0.00651495 0.0746355 0.058305 Vertex 2996 -0.00551889 0.0746529 0.0585785 Vertex 2997 -0.00450103 0.0746726 0.0587526 Vertex 2998 -0.00349992 0.0746709 0.0587938 Vertex 2999 -0.00249354 0.0746702 0.0587588 Vertex 3000 -0.00149257 0.0746611 0.0586297 Vertex 3001 -0.000472995 0.0746288 0.0583091 Vertex 3002 0.000529964 0.0745913 0.0578265 Vertex 3003 0.00152786 0.0745369 0.0570999 Vertex 3004 0.00251466 0.0744821 0.0563666 Vertex 3005 0.00350858 0.074484 0.056374 Vertex 3006 0.00450201 0.0745047 0.0565768 Vertex 3007 0.00550174 0.0745058 0.0566062 Vertex 3008 0.00650523 0.0745046 0.0565842 Vertex 3009 0.00750123 0.074495 0.0564449 Vertex 3010 0.00849936 0.0744764 0.056192 Vertex 3011 -0.0285061 0.116641 0.0323888 Vertex 3012 -0.0195037 0.11681 0.0364149 Vertex 3013 0.00549638 0.115538 0.0397987 Vertex 3014 -0.01852 0.115493 0.0376203 Vertex 3015 -0.0164901 0.115444 0.0380258 Vertex 3016 -0.0185046 0.116829 0.0366774 Vertex 3017 -0.0175094 0.116845 0.0368185 Vertex 3018 -0.0165066 0.11684 0.0369313 Vertex 3019 0.00149278 0.115548 0.0405079 Vertex 3020 0.000499429 0.115573 0.0406664 Vertex 3021 0.00237701 0.131635 0.0162813 Vertex 3022 0.00049871 0.116947 0.0399069 Vertex 3023 0.00149552 0.116934 0.0397718 Vertex 3024 -0.0663081 0.150341 0.0377708 Vertex 3025 -0.0755221 0.11896 0.0528247 Vertex 3026 -0.00949582 0.118295 0.0381649 Vertex 3027 -0.0704838 0.120388 0.0533274 Vertex 3028 -0.0404957 0.119327 0.0301663 Vertex 3029 -0.061806 0.172532 -0.0555873 Vertex 3030 -0.0414124 0.128336 0.00169512 Vertex 3031 -0.0276791 0.155231 -0.00339809 Vertex 3032 -0.0610765 0.167736 -0.0598039 Vertex 3033 -0.0805286 0.124537 0.0519983 Vertex 3034 0.00750154 0.123796 0.0339733 Vertex 3035 -0.0870357 0.141902 0.00919077 Vertex 3036 -0.093713 0.126863 0.0152623 Vertex 3037 0.0309797 0.118122 0.0225615 Vertex 3038 -0.0379623 0.174733 -0.00453553 Vertex 3039 -0.0764978 0.13308 0.0521415 Vertex 3040 -0.0735123 0.142806 0.0460464 Vertex 3041 -0.0784392 0.144133 0.0443751 Vertex 3042 0.0420841 0.090131 -0.00780186 Vertex 3043 0.0251411 0.10209 0.0417928 Vertex 3044 0.0137177 0.0926941 0.0515916 Vertex 3045 -0.0628077 0.166262 -0.0415912 Vertex 3046 -0.0633942 0.159878 -0.0495887 Vertex 3047 0.0435886 0.091694 0.0241609 Vertex 3048 0.0371007 0.10968 0.00116733 Vertex 3049 -0.0897565 0.140652 0.029182 Vertex 3050 -0.0263202 0.0930635 -0.029586 Vertex 3051 -0.0744578 0.144386 -0.00789461 Vertex 3052 0.0440694 0.0973609 0.0121636 Vertex 3053 0.0440256 0.0973461 0.0131583 Vertex 3054 0.0441637 0.0973591 0.0111613 Vertex 3055 0.0366972 0.106807 -0.00382741 Vertex 3056 -0.00549411 0.130838 0.0134037 Vertex 3057 -0.0724136 0.156792 -0.00114359 Vertex 3058 -0.0235762 0.184403 -0.0123621 Vertex 3059 -0.0940215 0.120122 0.0233001 Vertex 3060 -0.0672387 0.155112 0.00519073 Vertex 3061 -0.075576 0.155851 0.0124034 Vertex 3062 -0.0550812 0.153793 0.0226168 Vertex 3063 0.0282931 0.118599 0.0272385 Vertex 3064 -0.0395373 0.172163 -0.000837254 Vertex 3065 -0.0579073 0.152669 0.031812 Vertex 3066 -0.0752191 0.155599 0.0242023 Vertex 3067 0.00976243 0.126251 0.030462 Vertex 3068 -0.0453894 0.130637 0.0193744 Vertex 3069 -0.00449056 0.130995 0.0108991 Vertex 3070 -0.00563766 0.13083 0.0104776 Vertex 3071 -0.00684325 0.130599 0.0100344 Vertex 3072 -0.0353577 0.174409 -0.00212011 Vertex 3073 -0.00926648 0.100073 0.0477845 Vertex 3074 -0.0174382 0.127681 0.00469302 Vertex 3075 -0.0186888 0.127303 0.00423263 Vertex 3076 -0.0799097 0.0706493 0.0132254 Vertex 3077 -0.062494 0.0746373 0.0407954 Vertex 3078 -0.061487 0.0746791 0.0411579 Vertex 3079 -0.0604756 0.0747304 0.0414998 Vertex 3080 -0.0594953 0.0747194 0.0418121 Vertex 3081 -0.058489 0.0747585 0.0420339 Vertex 3082 -0.0574953 0.0747475 0.0420563 Vertex 3083 -0.056498 0.07472 0.0419593 Vertex 3084 -0.0554996 0.0746996 0.0418498 Vertex 3085 -0.0544977 0.0747139 0.0418232 Vertex 3086 -0.0534934 0.0747559 0.0420439 Vertex 3087 -0.0524951 0.0747684 0.0423102 Vertex 3088 -0.0514866 0.0748352 0.0426181 Vertex 3089 -0.050496 0.074792 0.0427038 Vertex 3090 -0.049499 0.0747526 0.0426395 Vertex 3091 -0.0484939 0.0747239 0.0424157 Vertex 3092 -0.0474977 0.0747299 0.0422594 Vertex 3093 -0.0464974 0.074738 0.042075 Vertex 3094 -0.0454927 0.0747515 0.0421648 Vertex 3095 -0.0444968 0.0747696 0.0424527 Vertex 3096 -0.0434927 0.0747943 0.0426652 Vertex 3097 -0.0424937 0.0748068 0.0427898 Vertex 3098 -0.0414978 0.0748079 0.0427759 Vertex 3099 -0.0404951 0.0747761 0.0426102 Vertex 3100 -0.0394923 0.074754 0.042367 Vertex 3101 -0.038499 0.0747376 0.0420783 Vertex 3102 -0.0374985 0.0747273 0.041938 Vertex 3103 -0.0364949 0.0747255 0.0419725 Vertex 3104 -0.0354986 0.0747267 0.0419454 Vertex 3105 -0.0345032 0.0747169 0.0417978 Vertex 3106 -0.0335027 0.074683 0.04142 Vertex 3107 -0.032492 0.0746402 0.0409516 Vertex 3108 -0.0314973 0.0746234 0.0406619 Vertex 3109 -0.0304795 0.0746468 0.0405648 Vertex 3110 -0.0295455 0.0745738 0.040676 Vertex 3111 -0.0287306 0.074519 0.0412207 Vertex 3112 -0.0690929 0.156328 0.0219534 Vertex 3113 -0.0569847 0.153801 0.0277423 Vertex 3114 -0.0388249 0.122181 0.0278208 Vertex 3115 -0.0631219 0.156103 0.0153645 Vertex 3116 -0.0166094 0.128602 0.0136868 Vertex 3117 -0.0678285 0.156225 0.0151421 Vertex 3118 -0.0154583 0.128246 0.0199229 Vertex 3119 -0.0194809 0.0757644 0.0547346 Vertex 3120 -0.0185025 0.0757876 0.0552584 Vertex 3121 -0.0175019 0.0758159 0.0556202 Vertex 3122 -0.0164937 0.0758406 0.0558352 Vertex 3123 -0.0154881 0.0758696 0.0561745 Vertex 3124 -0.0144819 0.0759021 0.0565083 Vertex 3125 -0.0134956 0.0759117 0.0568004 Vertex 3126 -0.0125098 0.0759113 0.0569785 Vertex 3127 -0.0114916 0.0759418 0.0571389 Vertex 3128 -0.010501 0.0759377 0.0571751 Vertex 3129 -0.00950387 0.075936 0.0571919 Vertex 3130 -0.00851553 0.0759427 0.057359 Vertex 3131 -0.00751182 0.075985 0.0578234 Vertex 3132 -0.00651273 0.0760152 0.058184 Vertex 3133 -0.00550346 0.076042 0.0585145 Vertex 3134 -0.00451238 0.0760575 0.0586977 Vertex 3135 -0.00350074 0.0760658 0.0587997 Vertex 3136 -0.00249266 0.0760635 0.0587913 Vertex 3137 -0.00148881 0.0760516 0.0586512 Vertex 3138 -0.000477761 0.0760312 0.0584165 Vertex 3139 0.000516136 0.0760027 0.0580883 Vertex 3140 0.00152343 0.0759482 0.0573355 Vertex 3141 0.00252933 0.0758769 0.0564116 Vertex 3142 0.00350533 0.0758855 0.0563752 Vertex 3143 0.00450914 0.0758818 0.0564153 Vertex 3144 0.00550249 0.0758881 0.0564988 Vertex 3145 0.00650569 0.075888 0.056486 Vertex 3146 0.00750673 0.0758763 0.0563548 Vertex 3147 0.00851655 0.0758606 0.0561295 Vertex 3148 0.00950453 0.0758273 0.0557308 Vertex 3149 -0.00149487 0.115594 0.0408235 Vertex 3150 -0.00348845 0.115565 0.0406522 Vertex 3151 -0.0264982 0.113889 0.035131 Vertex 3152 -0.00549555 0.115561 0.0401898 Vertex 3153 -0.0295006 0.116619 0.032366 Vertex 3154 -0.0305006 0.116618 0.0322439 Vertex 3155 -0.0325031 0.116645 0.0321616 Vertex 3156 -0.0335001 0.116617 0.0321346 Vertex 3157 0.0064767 0.115498 0.0396093 Vertex 3158 -0.0114976 0.116917 0.038689 Vertex 3159 -0.00947746 0.116894 0.0392479 Vertex 3160 -0.000499113 0.11695 0.0400287 Vertex 3161 -0.0866178 0.151117 0.0269024 Vertex 3162 -0.0895137 0.135181 0.0391853 Vertex 3163 -0.0304982 0.117934 0.0308066 Vertex 3164 -0.0135115 0.118298 0.0374588 Vertex 3165 -0.0694862 0.120387 0.0531587 Vertex 3166 -0.041505 0.119362 0.0299569 Vertex 3167 -0.016864 0.128415 0.0107007 Vertex 3168 -0.0635616 0.174109 -0.0525858 Vertex 3169 0.0127826 0.0926962 0.0520031 Vertex 3170 -0.0635173 0.159862 -0.0515858 Vertex 3171 -0.0795325 0.124539 0.0521412 Vertex 3172 0.0393973 0.0899152 -0.0117774 Vertex 3173 -0.0708312 0.0951391 -0.0158707 Vertex 3174 -0.0251882 0.121015 0.0283088 Vertex 3175 -0.00359581 0.130946 0.00835725 Vertex 3176 -0.0745085 0.13306 0.0516401 Vertex 3177 -0.0170948 0.127006 0.022289 Vertex 3178 -0.0623314 0.0357831 0.0433788 Vertex 3179 0.0409333 0.0900371 -0.0097907 Vertex 3180 -0.0556334 0.121157 -0.00996616 Vertex 3181 -0.0424949 0.168218 0.00285877 Vertex 3182 -0.0934681 0.120116 0.0253121 Vertex 3183 0.0414143 0.104258 0.0111621 Vertex 3184 -0.0888835 0.0983415 0.0204012 Vertex 3185 -0.0855696 0.139064 0.00222203 Vertex 3186 -0.0617185 0.155298 -0.026582 Vertex 3187 -0.0748917 0.16378 -0.0359985 Vertex 3188 -0.0939853 0.126886 0.0172543 Vertex 3189 -0.049095 0.140149 0.0113941 Vertex 3190 -0.048723 0.166988 -0.000980568 Vertex 3191 -0.0484929 0.162245 0.00645185 Vertex 3192 -0.0195101 0.114089 0.03835 Vertex 3193 0.0405338 0.105622 0.0141627 Vertex 3194 -0.0713739 0.162409 -0.0439557 Vertex 3195 -0.0636484 0.15559 0.00937973 Vertex 3196 -0.0172476 0.12413 0.0281151 Vertex 3197 0.0261502 0.120654 0.0264581 Vertex 3198 -0.0384621 0.172216 -0.000421117 Vertex 3199 -0.0162799 0.127645 0.0211086 Vertex 3200 -0.0267774 0.122204 0.0247423 Vertex 3201 -0.0757916 0.155001 0.00503825 Vertex 3202 -0.00219357 0.131295 0.0117423 Vertex 3203 -0.00334167 0.13115 0.0113211 Vertex 3204 -0.0388302 0.173903 -0.00342781 Vertex 3205 -0.0375897 0.174214 -0.00298303 Vertex 3206 -0.0364509 0.174337 -0.00256774 Vertex 3207 -0.014877 0.12853 0.00563728 Vertex 3208 -0.016194 0.128088 0.0051496 Vertex 3209 -0.0746238 0.166812 -0.0222329 Vertex 3210 -0.0628076 0.0881622 -0.0190458 Vertex 3211 -0.0634812 0.0760895 0.041143 Vertex 3212 -0.0624979 0.0760891 0.0414437 Vertex 3213 -0.0614823 0.0761372 0.0417782 Vertex 3214 -0.0604976 0.0761414 0.0420756 Vertex 3215 -0.0594928 0.0761776 0.0424443 Vertex 3216 -0.0584967 0.0761953 0.0427061 Vertex 3217 -0.057498 0.0762057 0.0428357 Vertex 3218 -0.0564973 0.0762116 0.0428205 Vertex 3219 -0.055499 0.0761852 0.0427309 Vertex 3220 -0.054499 0.0761691 0.0426143 Vertex 3221 -0.0534988 0.0761753 0.0426023 Vertex 3222 -0.0524919 0.0762203 0.042799 Vertex 3223 -0.0514919 0.076238 0.0430598 Vertex 3224 -0.0505002 0.0762293 0.0432414 Vertex 3225 -0.0494979 0.0762481 0.043343 Vertex 3226 -0.0484988 0.0762375 0.0432182 Vertex 3227 -0.0474967 0.0761987 0.0428659 Vertex 3228 -0.0464963 0.076159 0.0423522 Vertex 3229 -0.0454972 0.0761548 0.042184 Vertex 3230 -0.0444942 0.0761733 0.0424299 Vertex 3231 -0.0434831 0.0762058 0.0427502 Vertex 3232 -0.042485 0.0762268 0.0429934 Vertex 3233 -0.0414957 0.0762285 0.0430404 Vertex 3234 -0.0405031 0.0762353 0.0429954 Vertex 3235 -0.0394998 0.076195 0.0426907 Vertex 3236 -0.0385157 0.0761871 0.0423388 Vertex 3237 -0.0375015 0.0761535 0.0421853 Vertex 3238 -0.0365028 0.0761422 0.0420368 Vertex 3239 -0.0355049 0.076131 0.0419036 Vertex 3240 -0.0345095 0.0761212 0.0417709 Vertex 3241 -0.0335058 0.0760991 0.0415371 Vertex 3242 -0.0325056 0.0760815 0.0412743 Vertex 3243 -0.0314965 0.0760483 0.040909 Vertex 3244 -0.0305089 0.0760274 0.0408429 Vertex 3245 -0.0296253 0.0759773 0.0411397 Vertex 3246 -0.0720629 0.166594 -0.0198059 Vertex 3247 -0.0730865 0.16659 -0.0202232 Vertex 3248 -0.0743971 0.166132 -0.0206985 Vertex 3249 -0.0178664 0.12824 0.013233 Vertex 3250 -0.0638466 0.159519 -0.0168205 Vertex 3251 -0.0335771 0.177292 -0.00581839 Vertex 3252 -0.0810787 0.154935 0.0192662 Vertex 3253 -0.0194892 0.0771957 0.0553527 Vertex 3254 -0.018487 0.0772258 0.0557066 Vertex 3255 -0.0174998 0.0772311 0.0559767 Vertex 3256 -0.0165098 0.0772307 0.0561424 Vertex 3257 -0.0154942 0.0772732 0.0564359 Vertex 3258 -0.0144972 0.0772805 0.0565653 Vertex 3259 -0.0134941 0.0773082 0.0569169 Vertex 3260 -0.0125077 0.0773203 0.0572074 Vertex 3261 -0.0115193 0.0773584 0.0574493 Vertex 3262 -0.0105025 0.0773598 0.0576687 Vertex 3263 -0.00950395 0.0773592 0.0576807 Vertex 3264 -0.00849865 0.0773628 0.0576515 Vertex 3265 -0.00749863 0.0773617 0.0576592 Vertex 3266 -0.00650962 0.0773868 0.0579538 Vertex 3267 -0.00550708 0.0774167 0.0583085 Vertex 3268 -0.0045144 0.0774415 0.0584948 Vertex 3269 -0.00350236 0.0774419 0.0585703 Vertex 3270 -0.00249513 0.0774404 0.0585569 Vertex 3271 -0.00149233 0.077429 0.0585147 Vertex 3272 -0.000475449 0.077417 0.0583222 Vertex 3273 0.000533962 0.0773889 0.0579724 Vertex 3274 0.00152141 0.0773467 0.0574533 Vertex 3275 0.00250507 0.0772798 0.0565792 Vertex 3276 0.00352032 0.0772514 0.0561756 Vertex 3277 0.00450615 0.0772491 0.0561317 Vertex 3278 0.00550075 0.0772523 0.0562045 Vertex 3279 0.0065091 0.0772612 0.0561769 Vertex 3280 0.00750831 0.0772509 0.056126 Vertex 3281 0.00850648 0.0772375 0.0559821 Vertex 3282 0.00950521 0.0772084 0.0556135 Vertex 3283 -0.0394943 0.116662 0.0325452 Vertex 3284 -0.00248723 0.115552 0.0407434 Vertex 3285 -0.0275013 0.113896 0.0350206 Vertex 3286 -0.0285016 0.113902 0.0349068 Vertex 3287 -0.00449865 0.115591 0.0404715 Vertex 3288 -0.0384792 0.116679 0.0322191 Vertex 3289 -0.0374929 0.116616 0.0320198 Vertex 3290 -0.0364958 0.116629 0.0319219 Vertex 3291 -0.0314993 0.116609 0.0322344 Vertex 3292 -0.0255237 0.116678 0.0329121 Vertex 3293 -0.0104786 0.116885 0.0389916 Vertex 3294 0.00249558 0.116934 0.0396534 Vertex 3295 0.0425837 0.100055 0.002186 Vertex 3296 -0.0255703 0.121939 -0.00698176 Vertex 3297 0.0378536 0.10688 -0.000832307 Vertex 3298 -0.0145239 0.118305 0.0371093 Vertex 3299 -0.0434968 0.119301 0.0295385 Vertex 3300 0.00128405 0.131584 0.0158806 Vertex 3301 -0.0615895 0.155312 -0.0215829 Vertex 3302 0.0394741 0.102755 0.0261825 Vertex 3303 -0.0839185 0.112898 0.00127069 Vertex 3304 -0.0785283 0.124553 0.0522615 Vertex 3305 0.00550365 0.123767 0.0339438 Vertex 3306 -0.08472 0.111015 0.033569 Vertex 3307 -0.0944357 0.121484 0.0222838 Vertex 3308 -0.0804698 0.130248 0.0526854 Vertex 3309 0.0227948 0.124775 0.0223512 Vertex 3310 -0.0755038 0.138646 0.0489499 Vertex 3311 -0.0735163 0.138649 0.0485985 Vertex 3312 0.0152822 0.129138 0.0167187 Vertex 3313 -0.0696939 0.158144 -0.0499358 Vertex 3314 -0.0708234 0.155869 0.0257344 Vertex 3315 -0.0861178 0.0953813 0.000442214 Vertex 3316 -0.061968 0.159998 -0.0366167 Vertex 3317 -0.0380638 0.174118 -0.00995608 Vertex 3318 0.0319925 0.114417 -0.00326976 Vertex 3319 0.0364319 0.108205 -0.00282023 Vertex 3320 0.0368294 0.108237 -0.00182731 Vertex 3321 -0.0855607 0.111744 0.0263451 Vertex 3322 -0.00398687 0.126095 0.0313534 Vertex 3323 -0.00305215 0.125834 0.0316944 Vertex 3324 -0.0185368 0.123815 0.0276913 Vertex 3325 0.0247646 0.122114 0.0259409 Vertex 3326 0.0105257 0.123354 0.0336723 Vertex 3327 -0.0591073 0.155657 0.0168017 Vertex 3328 0.00543597 0.131652 0.0145423 Vertex 3329 0.00440907 0.131695 0.0141669 Vertex 3330 -0.0417745 0.172541 -0.00446528 Vertex 3331 -0.0401847 0.173392 -0.00391542 Vertex 3332 -0.0111714 0.129564 0.00700207 Vertex 3333 -0.012432 0.12921 0.00653602 Vertex 3334 -0.0136228 0.128915 0.00609854 Vertex 3335 -0.0723372 0.156305 0.0208189 Vertex 3336 -0.0630381 0.154049 0.0314099 Vertex 3337 -0.0121811 0.0984293 0.0498089 Vertex 3338 -0.0634962 0.0775171 0.0416907 Vertex 3339 -0.0624928 0.0775409 0.0419345 Vertex 3340 -0.0614832 0.0775692 0.0421583 Vertex 3341 -0.06047 0.0776106 0.0424994 Vertex 3342 -0.059475 0.0776368 0.0428908 Vertex 3343 -0.0584858 0.0776493 0.0431837 Vertex 3344 -0.0574976 0.0776487 0.0433498 Vertex 3345 -0.0564979 0.0776594 0.043476 Vertex 3346 -0.0554974 0.0776601 0.0434775 Vertex 3347 -0.054499 0.0776179 0.0432703 Vertex 3348 -0.0534984 0.0776159 0.0431279 Vertex 3349 -0.0524939 0.0776533 0.0431774 Vertex 3350 -0.051497 0.0776631 0.0434639 Vertex 3351 -0.0504985 0.0776737 0.0437561 Vertex 3352 -0.0494972 0.0776899 0.0438666 Vertex 3353 -0.0484929 0.0776741 0.0437591 Vertex 3354 -0.0474977 0.0776489 0.0433419 Vertex 3355 -0.0465092 0.0776139 0.042786 Vertex 3356 -0.0454968 0.0775542 0.0422104 Vertex 3357 -0.0444848 0.0775765 0.0423436 Vertex 3358 -0.0434863 0.0776041 0.0427475 Vertex 3359 -0.0424851 0.0776249 0.0430145 Vertex 3360 -0.0414935 0.0776367 0.0431734 Vertex 3361 -0.0404979 0.0776396 0.043177 Vertex 3362 -0.0395047 0.0776369 0.0429957 Vertex 3363 -0.0385096 0.0776202 0.0427509 Vertex 3364 -0.0375072 0.0775843 0.0424046 Vertex 3365 -0.0365126 0.077567 0.0421306 Vertex 3366 -0.0355104 0.0775398 0.0419002 Vertex 3367 -0.0345086 0.0775176 0.0416541 Vertex 3368 -0.0335034 0.0774945 0.0414157 Vertex 3369 -0.0324932 0.0774699 0.0412179 Vertex 3370 -0.0314795 0.0774889 0.0410863 Vertex 3371 -0.030561 0.0774145 0.0410957 Vertex 3372 -0.0714969 0.156283 0.0152923 Vertex 3373 -0.0688653 0.0860793 0.0429202 Vertex 3374 -0.066692 0.1555 0.0271809 Vertex 3375 -0.0797525 0.15498 0.0124103 Vertex 3376 -0.0656284 0.162324 -0.0174746 Vertex 3377 -0.0322885 0.177691 -0.00536129 Vertex 3378 -0.0929984 0.129612 0.0152364 Vertex 3379 -0.0913439 0.11607 0.03131 Vertex 3380 -0.0204762 0.0786229 0.0556935 Vertex 3381 -0.0194871 0.0786419 0.0560662 Vertex 3382 -0.018505 0.0786406 0.056357 Vertex 3383 -0.0174935 0.0786826 0.056671 Vertex 3384 -0.0164906 0.0786958 0.056769 Vertex 3385 -0.0155011 0.0786732 0.0567092 Vertex 3386 -0.0144971 0.0786767 0.0566892 Vertex 3387 -0.0134995 0.0786948 0.0569449 Vertex 3388 -0.012498 0.078722 0.0572931 Vertex 3389 -0.011501 0.0787467 0.0576654 Vertex 3390 -0.0105236 0.0787711 0.0579243 Vertex 3391 -0.00949762 0.078776 0.0580091 Vertex 3392 -0.00849993 0.0787667 0.0579153 Vertex 3393 -0.00750217 0.0787518 0.0577101 Vertex 3394 -0.00650833 0.0787624 0.0577507 Vertex 3395 -0.00550703 0.0787847 0.0579843 Vertex 3396 -0.00451076 0.0788064 0.0581316 Vertex 3397 -0.00350137 0.0788045 0.0582113 Vertex 3398 -0.00249775 0.0787967 0.0582683 Vertex 3399 -0.00149388 0.0787876 0.0581499 Vertex 3400 -0.000483407 0.0787781 0.0579546 Vertex 3401 0.000523827 0.0787529 0.057707 Vertex 3402 0.00153616 0.078717 0.0572683 Vertex 3403 0.00252455 0.078679 0.0567626 Vertex 3404 0.00352005 0.0786345 0.0561775 Vertex 3405 0.00451349 0.0786214 0.0559314 Vertex 3406 0.00550646 0.078617 0.0558754 Vertex 3407 0.00651017 0.0786147 0.0558016 Vertex 3408 0.0075079 0.0786108 0.055765 Vertex 3409 0.00850767 0.0786 0.0556334 Vertex 3410 0.00950687 0.0785812 0.0553914 Vertex 3411 0.0175012 0.11539 0.036772 Vertex 3412 0.0135076 0.115425 0.0371825 Vertex 3413 -0.0295052 0.113904 0.0347936 Vertex 3414 -0.0325124 0.113906 0.0343195 Vertex 3415 0.00348766 0.115539 0.0402625 Vertex 3416 -0.00749303 0.115552 0.0402888 Vertex 3417 -0.0435047 0.116629 0.0323741 Vertex 3418 -0.0354976 0.116636 0.0319301 Vertex 3419 -0.0344972 0.116614 0.0320154 Vertex 3420 -0.0245528 0.116739 0.0335827 Vertex 3421 -0.00548676 0.116904 0.0394711 Vertex 3422 0.00349012 0.116915 0.0395094 Vertex 3423 0.0376424 0.109732 0.0031582 Vertex 3424 -0.0853981 0.109039 0.0213496 Vertex 3425 -0.0255191 0.118043 0.0319974 Vertex 3426 -0.0124889 0.118271 0.037774 Vertex 3427 -0.0764848 0.142819 0.0460732 Vertex 3428 -0.0444963 0.119293 0.0294103 Vertex 3429 0.00495998 0.131626 0.0157979 Vertex 3430 -0.0773727 0.156953 -0.0129034 Vertex 3431 0.038604 0.108395 0.0191762 Vertex 3432 -0.0455019 0.122005 0.0261109 Vertex 3433 -0.0775213 0.124569 0.0523637 Vertex 3434 0.00450339 0.123789 0.033846 Vertex 3435 -0.0497701 0.140145 0.0153991 Vertex 3436 -0.0884159 0.102321 0.0103913 Vertex 3437 -0.079509 0.130274 0.0528999 Vertex 3438 0.00747725 0.131195 0.0181386 Vertex 3439 -0.0745142 0.138634 0.0488155 Vertex 3440 0.00214512 0.131665 0.0104804 Vertex 3441 -0.0171987 0.127433 0.00332106 Vertex 3442 -0.0336421 0.175583 -0.0129563 Vertex 3443 -0.0514963 0.157854 0.00954267 Vertex 3444 -0.0723264 0.176481 -0.0540086 Vertex 3445 -0.0810179 0.0964125 -0.00756981 Vertex 3446 0.0283215 0.117455 0.0287048 Vertex 3447 -0.0265539 0.180361 -0.00771033 Vertex 3448 -0.0679859 0.155562 0.00782161 Vertex 3449 -0.0676126 0.155322 0.00651001 Vertex 3450 0.0232877 0.123385 0.0253956 Vertex 3451 -0.0645148 0.15586 0.0250316 Vertex 3452 -0.0865509 0.152927 0.0144746 Vertex 3453 0.00646546 0.131591 0.014917 Vertex 3454 -0.0781312 0.100777 0.0347873 Vertex 3455 -0.0434907 0.171345 -0.00503558 Vertex 3456 -0.00877042 0.130092 0.00788453 Vertex 3457 -0.00997021 0.129828 0.00744342 Vertex 3458 -0.079214 0.155524 0.0184351 Vertex 3459 -0.0768992 0.155831 0.0192356 Vertex 3460 -0.0757456 0.155966 0.0196325 Vertex 3461 -0.0934962 0.117401 0.0173034 Vertex 3462 -0.0550659 0.154073 0.0197239 Vertex 3463 -0.0814436 0.153873 0.00890807 Vertex 3464 -0.0258145 0.0894344 -0.0348302 Vertex 3465 -0.0644951 0.0789605 0.0422031 Vertex 3466 -0.0634884 0.0789934 0.0424288 Vertex 3467 -0.0624977 0.0789785 0.042462 Vertex 3468 -0.0615068 0.0789665 0.042503 Vertex 3469 -0.0604863 0.0790224 0.042794 Vertex 3470 -0.0594798 0.0790546 0.0431577 Vertex 3471 -0.0585036 0.0790577 0.0434985 Vertex 3472 -0.0574727 0.0791252 0.0438951 Vertex 3473 -0.0564853 0.0791423 0.0441771 Vertex 3474 -0.0554963 0.0791301 0.0442202 Vertex 3475 -0.0544966 0.0791235 0.0440855 Vertex 3476 -0.0534968 0.0790911 0.0438637 Vertex 3477 -0.0524965 0.0790864 0.0437156 Vertex 3478 -0.0514974 0.0791051 0.0438079 Vertex 3479 -0.0504985 0.079101 0.0439987 Vertex 3480 -0.0494996 0.0791204 0.0440794 Vertex 3481 -0.0484873 0.0790818 0.0439275 Vertex 3482 -0.0475187 0.0790945 0.0436556 Vertex 3483 -0.0465355 0.0790498 0.0431447 Vertex 3484 -0.0454873 0.0789625 0.0423892 Vertex 3485 -0.0444976 0.0789577 0.0421738 Vertex 3486 -0.0434926 0.0789866 0.0425224 Vertex 3487 -0.0424937 0.0790081 0.0428161 Vertex 3488 -0.0414913 0.0790271 0.0430475 Vertex 3489 -0.0404902 0.0790417 0.0431478 Vertex 3490 -0.0395279 0.079033 0.0429651 Vertex 3491 -0.0384976 0.0790115 0.0428361 Vertex 3492 -0.0375089 0.0790164 0.0426336 Vertex 3493 -0.0364996 0.0789928 0.0425809 Vertex 3494 -0.0355107 0.0789772 0.0422885 Vertex 3495 -0.0344916 0.0789231 0.04184 Vertex 3496 -0.0335041 0.0789099 0.0415331 Vertex 3497 -0.0324984 0.0788891 0.0412743 Vertex 3498 -0.0315145 0.0788556 0.0411289 Vertex 3499 -0.0305755 0.0788685 0.0415824 Vertex 3500 -0.0295938 0.0789709 0.0427962 Vertex 3501 -0.075369 0.155134 0.0270903 Vertex 3502 -0.0595891 0.155231 0.0238846 Vertex 3503 -0.0348698 0.176878 -0.00628812 Vertex 3504 -0.031161 0.177923 -0.0048433 Vertex 3505 -0.0230309 0.0906523 0.0522978 Vertex 3506 -0.00834781 0.129635 0.0224773 Vertex 3507 -0.0847627 0.109032 0.02334 Vertex 3508 -0.0886162 0.100967 0.00940891 Vertex 3509 -0.0204853 0.0800483 0.0563065 Vertex 3510 -0.0195125 0.0800523 0.0567242 Vertex 3511 -0.0184886 0.0801089 0.0571361 Vertex 3512 -0.0174884 0.0801344 0.0573382 Vertex 3513 -0.0165008 0.0800909 0.0572191 Vertex 3514 -0.0155018 0.080076 0.0569734 Vertex 3515 -0.0144892 0.0800879 0.0568709 Vertex 3516 -0.0135001 0.0800899 0.0570677 Vertex 3517 -0.0124916 0.0801274 0.0575032 Vertex 3518 -0.0115071 0.0801438 0.0578104 Vertex 3519 -0.0104953 0.0801622 0.0580036 Vertex 3520 -0.00950254 0.0801627 0.0580817 Vertex 3521 -0.00849807 0.0801615 0.0580203 Vertex 3522 -0.0074977 0.0801462 0.0578122 Vertex 3523 -0.00649785 0.0801379 0.0576218 Vertex 3524 -0.00550326 0.0801395 0.0576107 Vertex 3525 -0.0045041 0.0801506 0.0577231 Vertex 3526 -0.00350013 0.0801522 0.057807 Vertex 3527 -0.00249685 0.08015 0.0577289 Vertex 3528 -0.00149437 0.0801423 0.0576885 Vertex 3529 -0.000488424 0.0801341 0.0575904 Vertex 3530 0.000521824 0.0801146 0.0573693 Vertex 3531 0.00150698 0.0801002 0.0571866 Vertex 3532 0.00252706 0.0800582 0.0567791 Vertex 3533 0.00351619 0.0800296 0.056385 Vertex 3534 0.00451933 0.0800063 0.0560543 Vertex 3535 0.00551566 0.0799926 0.0558154 Vertex 3536 0.00652044 0.0799801 0.0556018 Vertex 3537 0.00751862 0.0799738 0.0554444 Vertex 3538 0.00851174 0.0799624 0.0552814 Vertex 3539 0.00951792 0.0799496 0.0550675 Vertex 3540 0.0154945 0.115387 0.0371086 Vertex 3541 0.0145027 0.115416 0.0371643 Vertex 3542 -0.0305099 0.113915 0.0346878 Vertex 3543 -0.0315077 0.113893 0.0345441 Vertex 3544 -0.00648871 0.115533 0.0401374 Vertex 3545 -0.0104895 0.115533 0.0397944 Vertex 3546 -0.0115041 0.115551 0.0394745 Vertex 3547 -0.0415032 0.116675 0.0325492 Vertex 3548 -0.0265128 0.116639 0.0325108 Vertex 3549 -0.0235521 0.116765 0.0343279 Vertex 3550 -0.00649106 0.116924 0.0392844 Vertex 3551 0.00648697 0.11688 0.0387497 Vertex 3552 0.0391019 0.106936 0.00217583 Vertex 3553 -0.0326284 0.178159 -0.00692862 Vertex 3554 -0.0265289 0.11806 0.03154 Vertex 3555 -0.0114929 0.118282 0.0379089 Vertex 3556 -0.0415089 0.165252 0.00421093 Vertex 3557 -0.0425085 0.119367 0.0297171 Vertex 3558 -0.07744 0.155698 0.0205089 Vertex 3559 -0.0735116 0.140055 0.0477493 Vertex 3560 -0.0225807 0.159177 -0.00302445 Vertex 3561 -0.0464641 0.122081 0.0270508 Vertex 3562 -0.076502 0.12459 0.0526576 Vertex 3563 0.00350232 0.123774 0.0338316 Vertex 3564 -0.0859344 0.107632 0.00736881 Vertex 3565 -0.0424487 0.125177 -0.00834623 Vertex 3566 -0.0784998 0.130283 0.0530344 Vertex 3567 -0.0295052 0.11528 0.03366 Vertex 3568 -0.0927384 0.122733 0.00927055 Vertex 3569 0.0117209 0.130528 0.015412 Vertex 3570 -0.0804968 0.149757 0.0362335 Vertex 3571 0.0449223 0.0903552 0.00117592 Vertex 3572 0.0227019 0.123147 0.0266031 Vertex 3573 -0.0270163 0.155641 -0.00359794 Vertex 3574 -0.0263139 0.182659 -0.010558 Vertex 3575 0.0159015 0.122788 0.0313235 Vertex 3576 -0.0739197 0.151223 0.0366634 Vertex 3577 -0.0436117 0.125739 0.0201433 Vertex 3578 0.0200436 0.125383 0.0241901 Vertex 3579 0.0225187 0.123964 0.0251042 Vertex 3580 -0.0417803 0.126317 0.0192991 Vertex 3581 -0.003188 0.127967 0.0287063 Vertex 3582 0.00846774 0.13132 0.015646 Vertex 3583 -0.0296012 0.120713 0.0267425 Vertex 3584 0.00161401 0.13159 0.0117114 Vertex 3585 0.000580692 0.131584 0.0113306 Vertex 3586 -0.080479 0.155159 0.0180021 Vertex 3587 -0.0833163 0.106091 -0.000625527 Vertex 3588 -0.0818376 0.116236 -0.00283916 Vertex 3589 -0.0920057 0.11611 0.0343124 Vertex 3590 0.0248331 0.123944 0.0188283 Vertex 3591 0.0255922 0.123349 0.0191129 Vertex 3592 -0.0665386 0.0804536 0.042224 Vertex 3593 -0.0655112 0.0803784 0.0426229 Vertex 3594 -0.0644842 0.0804582 0.0430441 Vertex 3595 -0.0634956 0.0804499 0.0432131 Vertex 3596 -0.0624905 0.0804598 0.0431805 Vertex 3597 -0.0615036 0.0804118 0.0430159 Vertex 3598 -0.0604943 0.0804378 0.0430854 Vertex 3599 -0.0594862 0.0804633 0.0433033 Vertex 3600 -0.0584823 0.080492 0.0436889 Vertex 3601 -0.0574874 0.0805202 0.0440851 Vertex 3602 -0.0564979 0.0805451 0.0445004 Vertex 3603 -0.0554837 0.0805968 0.0447827 Vertex 3604 -0.0544975 0.080589 0.0448325 Vertex 3605 -0.0535039 0.0805657 0.0446207 Vertex 3606 -0.052501 0.0805516 0.0443114 Vertex 3607 -0.0514921 0.0804912 0.0440592 Vertex 3608 -0.0505067 0.0805184 0.044061 Vertex 3609 -0.0494929 0.0804959 0.044039 Vertex 3610 -0.0484976 0.0805051 0.0439961 Vertex 3611 -0.0474927 0.0804818 0.0437565 Vertex 3612 -0.0465231 0.0804789 0.0433941 Vertex 3613 -0.0454994 0.0804154 0.0426755 Vertex 3614 -0.044489 0.0803636 0.042222 Vertex 3615 -0.0434981 0.0803632 0.0422528 Vertex 3616 -0.042501 0.0803745 0.0423542 Vertex 3617 -0.0415029 0.0803953 0.042616 Vertex 3618 -0.0405081 0.080404 0.0427771 Vertex 3619 -0.0394882 0.0804267 0.0429074 Vertex 3620 -0.038495 0.0804525 0.0431634 Vertex 3621 -0.0375019 0.0804666 0.0432825 Vertex 3622 -0.0365138 0.0804626 0.0431357 Vertex 3623 -0.0355149 0.0804148 0.0426568 Vertex 3624 -0.0344927 0.0803488 0.0420944 Vertex 3625 -0.0334943 0.0803079 0.0415842 Vertex 3626 -0.0324906 0.080327 0.0414535 Vertex 3627 -0.0315243 0.0802674 0.0412906 Vertex 3628 -0.0305987 0.0803029 0.0419758 Vertex 3629 -0.0295471 0.0804664 0.0436378 Vertex 3630 -0.0600179 0.155783 0.0193707 Vertex 3631 -0.0872247 0.152479 0.0216964 Vertex 3632 -0.0857877 0.152992 0.0221351 Vertex 3633 -0.0119089 0.128954 0.021205 Vertex 3634 -0.0265193 0.12549 0.0159805 Vertex 3635 -0.0850483 0.109026 0.0223524 Vertex 3636 -0.0287178 0.121983 -0.00700749 Vertex 3637 -0.0228073 0.184465 -0.0170667 Vertex 3638 -0.0204789 0.081458 0.0566556 Vertex 3639 -0.0194927 0.0814879 0.0571676 Vertex 3640 -0.0184902 0.0815159 0.0575038 Vertex 3641 -0.0174947 0.0815257 0.0576296 Vertex 3642 -0.0164962 0.0815146 0.0575151 Vertex 3643 -0.0154864 0.0814755 0.0571167 Vertex 3644 -0.0144969 0.0814706 0.0569355 Vertex 3645 -0.0134986 0.081495 0.0573009 Vertex 3646 -0.0125091 0.0815143 0.0575917 Vertex 3647 -0.0115085 0.0815323 0.0578355 Vertex 3648 -0.0104972 0.0815462 0.0580111 Vertex 3649 -0.00949805 0.0815484 0.0580308 Vertex 3650 -0.00849679 0.081545 0.0579523 Vertex 3651 -0.00749897 0.0815283 0.0577578 Vertex 3652 -0.00649844 0.0814993 0.0573243 Vertex 3653 -0.00550026 0.0815011 0.0573318 Vertex 3654 -0.00450509 0.0815118 0.0573962 Vertex 3655 -0.00350098 0.0815126 0.05747 Vertex 3656 -0.00249882 0.081515 0.0574957 Vertex 3657 -0.00149717 0.0815096 0.0574492 Vertex 3658 -0.000491404 0.0814979 0.0573536 Vertex 3659 0.000511137 0.0814953 0.0573473 Vertex 3660 0.00151312 0.081484 0.0572224 Vertex 3661 0.00251501 0.0814623 0.0569927 Vertex 3662 0.00351281 0.081445 0.056735 Vertex 3663 0.00451331 0.0814276 0.0565046 Vertex 3664 0.00552563 0.0813962 0.0561869 Vertex 3665 0.00650836 0.0813916 0.0558754 Vertex 3666 0.00752119 0.0813632 0.0555605 Vertex 3667 0.00853139 0.0813381 0.0552215 Vertex 3668 0.0341932 0.113962 0.0237708 Vertex 3669 -0.0225355 0.115413 0.0360839 Vertex 3670 -0.0235661 0.115415 0.0353667 Vertex 3671 -0.00949145 0.115547 0.0400498 Vertex 3672 -0.0245658 0.115393 0.0346209 Vertex 3673 -0.00349196 0.114194 0.0413026 Vertex 3674 -0.0364943 0.115224 0.0327734 Vertex 3675 -0.0275167 0.116662 0.0324113 Vertex 3676 -0.022546 0.116788 0.03495 Vertex 3677 -0.00748374 0.116886 0.0393445 Vertex 3678 0.0084768 0.116844 0.0380952 Vertex 3679 -0.0781478 0.107183 -0.00659237 Vertex 3680 -0.0765193 0.119025 0.0524244 Vertex 3681 0.0420636 0.0915328 -0.00679501 Vertex 3682 -0.0104844 0.118266 0.038122 Vertex 3683 -0.0144999 0.162187 -0.0103051 Vertex 3684 -0.0454948 0.119311 0.0290591 Vertex 3685 -0.0123701 0.125297 0.0298351 Vertex 3686 -0.0725153 0.142823 0.0458217 Vertex 3687 0.000998881 0.131517 0.0100563 Vertex 3688 0.0251748 0.123444 0.0203849 Vertex 3689 -0.0754942 0.124603 0.052984 Vertex 3690 0.00247406 0.123881 0.0337357 Vertex 3691 -0.0838969 0.104764 -0.000610535 Vertex 3692 -0.0880434 0.125329 0.00027907 Vertex 3693 -0.0774969 0.130279 0.0531227 Vertex 3694 -0.0932568 0.121548 0.0382795 Vertex 3695 -0.0794946 0.12171 0.0507273 Vertex 3696 -0.0895151 0.151559 0.0181181 Vertex 3697 -0.0815042 0.149744 0.0353513 Vertex 3698 -0.0766567 0.112144 0.0469767 Vertex 3699 -0.0774993 0.127442 0.0532862 Vertex 3700 0.0144985 0.11402 0.0378951 Vertex 3701 -0.037534 0.168232 0.00175297 Vertex 3702 -0.0766831 0.148629 -0.00786722 Vertex 3703 -0.0669196 0.157864 -0.00782765 Vertex 3704 -0.0738652 0.150214 0.0382196 Vertex 3705 -0.0765172 0.154938 0.0266851 Vertex 3706 0.0175138 0.12671 0.0232635 Vertex 3707 -0.0623911 0.154382 0.0301734 Vertex 3708 -0.0723713 0.156038 0.0237254 Vertex 3709 -0.0135439 0.125168 0.0294386 Vertex 3710 0.00944321 0.131132 0.0160037 Vertex 3711 -0.067283 0.161835 -0.0137578 Vertex 3712 0.00276097 0.131717 0.0121378 Vertex 3713 -0.0857334 0.153425 0.016223 Vertex 3714 -0.0843259 0.153929 0.0166903 Vertex 3715 -0.0360471 0.125746 -0.0036679 Vertex 3716 -0.0742502 0.161028 -0.0329547 Vertex 3717 0.0224569 0.125562 0.0179459 Vertex 3718 0.0232801 0.125085 0.0182493 Vertex 3719 0.0240885 0.124582 0.018553 Vertex 3720 -0.0278605 0.124718 0.0184442 Vertex 3721 -0.0256554 0.124701 0.019279 Vertex 3722 -0.0665019 0.0818141 0.0428543 Vertex 3723 -0.0654928 0.0818627 0.0433416 Vertex 3724 -0.0645056 0.0818668 0.0436415 Vertex 3725 -0.063492 0.0819119 0.043822 Vertex 3726 -0.0624997 0.0818785 0.0437679 Vertex 3727 -0.0615004 0.0818818 0.0435978 Vertex 3728 -0.0604913 0.0818799 0.0434166 Vertex 3729 -0.0594903 0.081873 0.0434438 Vertex 3730 -0.0584923 0.0818911 0.043717 Vertex 3731 -0.0574741 0.0819362 0.0441691 Vertex 3732 -0.0564798 0.081975 0.044689 Vertex 3733 -0.0554773 0.0820103 0.045038 Vertex 3734 -0.0544906 0.0820201 0.0451936 Vertex 3735 -0.0534999 0.0820142 0.0450601 Vertex 3736 -0.0525108 0.0819776 0.0447141 Vertex 3737 -0.0514947 0.0819216 0.0442721 Vertex 3738 -0.0504965 0.0819144 0.0441383 Vertex 3739 -0.0494951 0.0819134 0.044146 Vertex 3740 -0.0484982 0.0819185 0.0441136 Vertex 3741 -0.0474843 0.0818872 0.0439119 Vertex 3742 -0.0464991 0.0818806 0.0436011 Vertex 3743 -0.0454963 0.0818291 0.0431013 Vertex 3744 -0.0444953 0.0817848 0.0424707 Vertex 3745 -0.0434949 0.0817618 0.042266 Vertex 3746 -0.0424979 0.0817557 0.0420871 Vertex 3747 -0.0414824 0.0817867 0.0423837 Vertex 3748 -0.0404837 0.0818282 0.0429123 Vertex 3749 -0.0394764 0.081876 0.0433844 Vertex 3750 -0.0384853 0.0819001 0.0436414 Vertex 3751 -0.0374987 0.0819015 0.0436538 Vertex 3752 -0.0365029 0.0818729 0.0434567 Vertex 3753 -0.0355255 0.0818589 0.0431427 Vertex 3754 -0.0345218 0.0818067 0.0425242 Vertex 3755 -0.0334936 0.0817447 0.0419617 Vertex 3756 -0.0324907 0.0817336 0.0416408 Vertex 3757 -0.0315082 0.0817114 0.0416031 Vertex 3758 -0.0306612 0.0816984 0.0420491 Vertex 3759 -0.0295465 0.0819132 0.0441437 Vertex 3760 -0.086324 0.106283 0.0073644 Vertex 3761 -0.0861009 0.106274 0.00635995 Vertex 3762 -0.0907151 0.116093 0.0293225 Vertex 3763 -0.0857477 0.109049 0.020349 Vertex 3764 -0.0865136 0.106289 0.0083757 Vertex 3765 -0.0858632 0.106258 0.00536057 Vertex 3766 -0.0863919 0.099468 0.00241821 Vertex 3767 0.000747713 0.131321 0.00709666 Vertex 3768 -0.0204805 0.0828473 0.0567838 Vertex 3769 -0.0194987 0.0828823 0.05729 Vertex 3770 -0.0184875 0.0829081 0.0576141 Vertex 3771 -0.0175006 0.0829087 0.0576844 Vertex 3772 -0.0164977 0.0828905 0.0574138 Vertex 3773 -0.0154785 0.0828416 0.0569929 Vertex 3774 -0.014497 0.082865 0.0570346 Vertex 3775 -0.0135008 0.082884 0.0573146 Vertex 3776 -0.012496 0.0828987 0.0575341 Vertex 3777 -0.0115038 0.082913 0.0576973 Vertex 3778 -0.0105023 0.0829243 0.0578427 Vertex 3779 -0.00949546 0.0829261 0.0578441 Vertex 3780 -0.00849594 0.0829198 0.0577964 Vertex 3781 -0.00750778 0.0828941 0.0575015 Vertex 3782 -0.00644119 0.0828529 0.0570838 Vertex 3783 -0.00549842 0.0828666 0.0570203 Vertex 3784 -0.00450662 0.0828853 0.0572758 Vertex 3785 -0.00350072 0.0828956 0.0574459 Vertex 3786 -0.00249881 0.0829011 0.0575494 Vertex 3787 -0.00149801 0.0828985 0.0574954 Vertex 3788 -0.000496629 0.0828922 0.0574621 Vertex 3789 0.000507304 0.0828912 0.0574668 Vertex 3790 0.00151221 0.0828796 0.0573767 Vertex 3791 0.00251304 0.0828672 0.0572444 Vertex 3792 0.00351301 0.0828608 0.0571024 Vertex 3793 0.0045246 0.0828376 0.0569094 Vertex 3794 0.00551778 0.0828244 0.0566316 Vertex 3795 0.00651309 0.0828012 0.0562471 Vertex 3796 -0.0682487 0.153053 0.0340661 Vertex 3797 0.0125018 0.115423 0.0374065 Vertex 3798 -0.0874475 0.125307 -0.000719081 Vertex 3799 -0.00320104 0.131164 0.014241 Vertex 3800 -0.0805311 0.123088 0.0509172 Vertex 3801 -0.00849662 0.115566 0.0401952 Vertex 3802 0.0414749 0.104231 0.00716597 Vertex 3803 0.0165049 0.115408 0.0369209 Vertex 3804 -0.00149662 0.114206 0.0415504 Vertex 3805 -0.002483 0.114172 0.0414823 Vertex 3806 -0.0404977 0.116683 0.0325662 Vertex 3807 -0.0215064 0.116765 0.0355266 Vertex 3808 -0.00849374 0.116931 0.0393004 Vertex 3809 0.00748556 0.116867 0.0384917 Vertex 3810 -0.0494919 0.154959 0.0103413 Vertex 3811 -0.0247385 0.124904 0.000549003 Vertex 3812 -0.0285052 0.11799 0.0309781 Vertex 3813 -0.0174811 0.118153 0.0357243 Vertex 3814 -0.0464975 0.163768 0.00545168 Vertex 3815 -0.046469 0.119345 0.0289808 Vertex 3816 -0.0808289 0.138985 -0.00281163 Vertex 3817 -0.0715222 0.142818 0.0455702 Vertex 3818 -0.0810735 0.143155 -0.000828212 Vertex 3819 -0.00877695 0.169647 -0.023748 Vertex 3820 -0.074497 0.124608 0.0532356 Vertex 3821 0.0411799 0.0844321 -0.00979241 Vertex 3822 0.00919687 0.124582 -0.00824181 Vertex 3823 0.0446243 0.0959671 0.00617079 Vertex 3824 -0.0764966 0.130271 0.0529935 Vertex 3825 -0.070517 0.146976 0.0420031 Vertex 3826 -0.073507 0.121801 0.0535653 Vertex 3827 0.0395669 0.101281 -0.00480928 Vertex 3828 0.0441819 0.0945484 0.0191589 Vertex 3829 -0.042499 0.113906 0.034677 Vertex 3830 0.041327 0.0986069 0.0251647 Vertex 3831 0.0389203 0.10838 0.0161659 Vertex 3832 -0.0384878 0.168246 0.00236894 Vertex 3833 0.0423363 0.101455 0.00317956 Vertex 3834 -0.0336328 0.126783 0.00457249 Vertex 3835 -0.0682521 0.15944 -0.00832765 Vertex 3836 -0.067572 0.158668 -0.00806913 Vertex 3837 -0.0629092 0.156144 0.021238 Vertex 3838 0.0151438 0.128336 0.0223847 Vertex 3839 -0.0643705 0.154697 0.0294695 Vertex 3840 -0.0381244 0.127641 0.0146907 Vertex 3841 -0.0611505 0.153585 0.0321143 Vertex 3842 0.0131047 0.129972 0.0173477 Vertex 3843 -0.0679623 0.16261 -0.0140168 Vertex 3844 0.00385238 0.131766 0.0125385 Vertex 3845 -0.0871129 0.152836 0.0157593 Vertex 3846 -0.0665146 0.16661 -0.0580261 Vertex 3847 -0.0295306 0.123946 -0.00125424 Vertex 3848 0.0208388 0.126564 0.0173475 Vertex 3849 0.0216627 0.126095 0.0176515 Vertex 3850 -0.072593 0.155911 0.00171291 Vertex 3851 -0.0716902 0.155937 0.00211062 Vertex 3852 -0.00405506 0.101077 0.0451334 Vertex 3853 -0.0675595 0.163657 -0.0167503 Vertex 3854 -0.0668255 0.162993 -0.016474 Vertex 3855 -0.0664798 0.0832826 0.043443 Vertex 3856 -0.0655003 0.083298 0.0438708 Vertex 3857 -0.0644896 0.0833289 0.0440861 Vertex 3858 -0.0634907 0.0833477 0.0441845 Vertex 3859 -0.0624968 0.0833205 0.0441176 Vertex 3860 -0.0614985 0.0833224 0.0439406 Vertex 3861 -0.0604975 0.0832903 0.0437356 Vertex 3862 -0.0594934 0.0832968 0.0436941 Vertex 3863 -0.0584862 0.0833066 0.0438144 Vertex 3864 -0.0574832 0.0833327 0.0441985 Vertex 3865 -0.0564789 0.0833746 0.0446901 Vertex 3866 -0.0554857 0.0834027 0.0450839 Vertex 3867 -0.0544934 0.0834141 0.0452404 Vertex 3868 -0.0534986 0.0833862 0.0450488 Vertex 3869 -0.0524965 0.0833785 0.044899 Vertex 3870 -0.0514954 0.0833657 0.0447762 Vertex 3871 -0.0504972 0.083371 0.044762 Vertex 3872 -0.0494922 0.0833478 0.0446801 Vertex 3873 -0.0484907 0.0833394 0.0445457 Vertex 3874 -0.0474984 0.0833402 0.0443799 Vertex 3875 -0.0464961 0.0833304 0.0442498 Vertex 3876 -0.045504 0.0832988 0.0437099 Vertex 3877 -0.0445094 0.0832466 0.0430632 Vertex 3878 -0.0435029 0.0832144 0.0426759 Vertex 3879 -0.0424907 0.0831788 0.0422885 Vertex 3880 -0.041491 0.0832013 0.0425516 Vertex 3881 -0.0404793 0.0832528 0.0431634 Vertex 3882 -0.0394783 0.0832832 0.0435432 Vertex 3883 -0.0384845 0.0833049 0.0437838 Vertex 3884 -0.0374978 0.0833038 0.0438252 Vertex 3885 -0.0365053 0.0832925 0.043701 Vertex 3886 -0.0355281 0.0832646 0.0432735 Vertex 3887 -0.0345081 0.0832025 0.0425625 Vertex 3888 -0.0334971 0.0831472 0.0419572 Vertex 3889 -0.0324967 0.0831278 0.0417023 Vertex 3890 -0.0315191 0.0831203 0.0417649 Vertex 3891 -0.0306281 0.0831438 0.0423752 Vertex 3892 -0.029443 0.0834063 0.0447309 Vertex 3893 -0.0879726 0.100935 0.0073995 Vertex 3894 -0.0883814 0.100948 0.00841627 Vertex 3895 -0.0855607 0.103501 0.00239284 Vertex 3896 -0.0855438 0.106245 0.00446783 Vertex 3897 -0.0891956 0.099693 0.0183885 Vertex 3898 -0.0893171 0.0996957 0.0173941 Vertex 3899 -0.000398209 0.131157 0.00667235 Vertex 3900 -0.020484 0.0842242 0.0566713 Vertex 3901 -0.019494 0.0842608 0.0571688 Vertex 3902 -0.0184932 0.0842766 0.0574008 Vertex 3903 -0.017501 0.0842912 0.0575736 Vertex 3904 -0.0164643 0.0842755 0.0572298 Vertex 3905 -0.0155024 0.084237 0.0568519 Vertex 3906 -0.0145005 0.0842486 0.056982 Vertex 3907 -0.0135056 0.0842656 0.0572305 Vertex 3908 -0.0124981 0.0842783 0.057419 Vertex 3909 -0.0114962 0.0842854 0.0575311 Vertex 3910 -0.0104999 0.0842933 0.0575891 Vertex 3911 -0.00949578 0.084298 0.0576062 Vertex 3912 -0.00849356 0.0842936 0.0575382 Vertex 3913 -0.0074932 0.0842694 0.0572981 Vertex 3914 -0.00649976 0.0842428 0.0569087 Vertex 3915 -0.00549946 0.0842482 0.0569765 Vertex 3916 -0.00450764 0.0842735 0.0572857 Vertex 3917 -0.00350236 0.0842813 0.0574606 Vertex 3918 -0.00250438 0.0842991 0.0575402 Vertex 3919 -0.00150012 0.0842876 0.0575029 Vertex 3920 -0.000497806 0.0842866 0.0575088 Vertex 3921 0.000504451 0.0842848 0.0575158 Vertex 3922 0.00150378 0.0842858 0.0575429 Vertex 3923 0.00250545 0.0842781 0.0574483 Vertex 3924 0.00350924 0.0842701 0.0573364 Vertex 3925 0.0045205 0.0842507 0.0571459 Vertex 3926 0.00551873 0.0842341 0.0568816 Vertex 3927 0.00651709 0.084208 0.0565081 Vertex 3928 0.00649755 0.131366 0.0177838 Vertex 3929 -0.0850976 0.106195 0.00337687 Vertex 3930 0.0388945 0.108364 0.0171641 Vertex 3931 0.0391583 0.108387 0.0121653 Vertex 3932 -0.0694944 0.11756 0.0525327 Vertex 3933 -0.0745039 0.117561 0.0526615 Vertex 3934 -0.0879688 0.113092 0.00628888 Vertex 3935 -0.0494799 0.116621 0.0323892 Vertex 3936 0.0281531 0.119463 0.0257844 Vertex 3937 0.0400371 0.107017 0.0091647 Vertex 3938 0.011475 0.115421 0.0379758 Vertex 3939 0.00549376 0.116905 0.0389072 Vertex 3940 0.0363189 0.106784 -0.00482843 Vertex 3941 0.00487825 0.131703 0.0129125 Vertex 3942 -0.0275139 0.118013 0.031246 Vertex 3943 -0.0165021 0.118207 0.0361456 Vertex 3944 -0.0195983 0.126231 0.0213862 Vertex 3945 0.0108333 0.130856 0.0150885 Vertex 3946 -0.0314011 0.178523 -0.00645128 Vertex 3947 -0.062763 0.149042 -0.0175788 Vertex 3948 0.0427221 0.101476 0.00816485 Vertex 3949 -0.0734977 0.124615 0.0532793 Vertex 3950 -0.0609083 0.169363 -0.0596932 Vertex 3951 -0.0887091 0.0983318 0.0213821 Vertex 3952 0.0446543 0.0959754 0.00716634 Vertex 3953 -0.0754874 0.130275 0.0528009 Vertex 3954 -0.0617277 0.159994 -0.0345941 Vertex 3955 -0.0707023 0.155807 0.00247134 Vertex 3956 -0.00149907 0.122451 0.0357652 Vertex 3957 0.0440561 0.0945388 0.0201582 Vertex 3958 0.0374772 0.106859 -0.00183322 Vertex 3959 -0.00348977 0.122389 0.0359468 Vertex 3960 -0.0394747 0.168236 0.00277528 Vertex 3961 -0.0404999 0.16823 0.00286674 Vertex 3962 -0.0746181 0.165272 -0.019163 Vertex 3963 -0.0697818 0.16064 -0.00887941 Vertex 3964 -0.0690003 0.160066 -0.00858817 Vertex 3965 -0.0578658 0.154169 0.0274197 Vertex 3966 0.0125251 0.129483 0.0214195 Vertex 3967 -0.0653079 0.154958 0.0291369 Vertex 3968 -0.0390631 0.127858 0.0143467 Vertex 3969 0.013984 0.129601 0.0176686 Vertex 3970 -0.0704303 0.164039 -0.0149268 Vertex 3971 0.00698354 0.131641 0.013682 Vertex 3972 -0.07134 0.156839 -0.0007386 Vertex 3973 -0.0833393 0.0979244 -0.00460929 Vertex 3974 0.0191428 0.127427 0.0167214 Vertex 3975 0.0199768 0.126969 0.0170274 Vertex 3976 -0.00407632 0.124795 0.032822 Vertex 3977 -0.081069 0.152209 0.0312004 Vertex 3978 -0.0698551 0.16523 -0.017589 Vertex 3979 -0.0691061 0.164802 -0.0173282 Vertex 3980 -0.0682887 0.164315 -0.0170259 Vertex 3981 -0.0230436 0.0879523 0.0537722 Vertex 3982 -0.0790398 0.119048 0.050662 Vertex 3983 -0.0666072 0.0846933 0.0437683 Vertex 3984 -0.065484 0.0847424 0.0442074 Vertex 3985 -0.0644959 0.084745 0.0443622 Vertex 3986 -0.0634981 0.0847405 0.0443851 Vertex 3987 -0.062498 0.0847471 0.0443617 Vertex 3988 -0.0614977 0.0847334 0.0442553 Vertex 3989 -0.0604976 0.0847283 0.0441029 Vertex 3990 -0.0594997 0.0846925 0.0439263 Vertex 3991 -0.0584939 0.0847167 0.0439692 Vertex 3992 -0.0574904 0.0847348 0.0442092 Vertex 3993 -0.0564709 0.0847764 0.0446514 Vertex 3994 -0.0554797 0.0848037 0.0450617 Vertex 3995 -0.0544959 0.0848124 0.0452537 Vertex 3996 -0.0534928 0.0848236 0.0453456 Vertex 3997 -0.0524963 0.0848256 0.0453696 Vertex 3998 -0.0514982 0.0848246 0.0453901 Vertex 3999 -0.050497 0.0848226 0.0453947 Vertex 4000 -0.0495055 0.0848369 0.0453213 Vertex 4001 -0.048499 0.0848032 0.0451307 Vertex 4002 -0.0475005 0.084795 0.044997 Vertex 4003 -0.0465015 0.0847604 0.0446321 Vertex 4004 -0.0454595 0.0846983 0.0440929 Vertex 4005 -0.0444845 0.0846726 0.04342 Vertex 4006 -0.0435133 0.0846552 0.0431729 Vertex 4007 -0.0424883 0.0846004 0.0426298 Vertex 4008 -0.0414996 0.0846033 0.0426094 Vertex 4009 -0.0404862 0.0846544 0.0431896 Vertex 4010 -0.0394892 0.0846821 0.0435801 Vertex 4011 -0.0384861 0.0847024 0.0437961 Vertex 4012 -0.0374992 0.0847101 0.0439351 Vertex 4013 -0.0365135 0.084703 0.0437856 Vertex 4014 -0.0355277 0.0846755 0.0433772 Vertex 4015 -0.0345226 0.0846315 0.0427551 Vertex 4016 -0.0334979 0.0845774 0.0421828 Vertex 4017 -0.0324923 0.0845615 0.0419149 Vertex 4018 -0.0314894 0.0845774 0.0421902 Vertex 4019 -0.0305568 0.0845973 0.042796 Vertex 4020 -0.0294567 0.0847909 0.044594 Vertex 4021 -0.011143 0.128894 0.00267925 Vertex 4022 -0.00989368 0.129282 0.00314288 Vertex 4023 -0.065333 0.177827 -0.0606985 Vertex 4024 -0.0867252 0.0994863 0.00342747 Vertex 4025 -0.0929503 0.128215 0.0122521 Vertex 4026 -0.00268932 0.130846 0.00581897 Vertex 4027 -0.00148382 0.131063 0.00627096 Vertex 4028 -0.020497 0.0855906 0.0563403 Vertex 4029 -0.0194885 0.0856172 0.056795 Vertex 4030 -0.0184879 0.0856371 0.0571362 Vertex 4031 -0.0174889 0.0856455 0.0572522 Vertex 4032 -0.0164998 0.0856439 0.0570811 Vertex 4033 -0.015502 0.0856307 0.0568812 Vertex 4034 -0.014497 0.0856418 0.0570702 Vertex 4035 -0.0134997 0.0856507 0.057198 Vertex 4036 -0.012503 0.0856552 0.057236 Vertex 4037 -0.0114987 0.0856547 0.0572923 Vertex 4038 -0.0104973 0.0856567 0.0572952 Vertex 4039 -0.00949755 0.0856659 0.0574293 Vertex 4040 -0.00849886 0.0856701 0.0574538 Vertex 4041 -0.00748541 0.0856517 0.0572176 Vertex 4042 -0.00649656 0.0856337 0.0569558 Vertex 4043 -0.00549934 0.085642 0.0570911 Vertex 4044 -0.00450177 0.0856564 0.0572774 Vertex 4045 -0.00350029 0.0856691 0.0572933 Vertex 4046 -0.00250061 0.0856648 0.0572816 Vertex 4047 -0.0014976 0.0856652 0.0573264 Vertex 4048 -0.00049716 0.0856626 0.0573342 Vertex 4049 0.000503516 0.0856702 0.0573793 Vertex 4050 0.00150486 0.0856703 0.0573817 Vertex 4051 0.00250408 0.0856622 0.0573274 Vertex 4052 0.00351036 0.0856577 0.0572413 Vertex 4053 0.00451386 0.0856474 0.057126 Vertex 4054 0.00551307 0.0856288 0.0568655 Vertex 4055 0.00650612 0.0856084 0.0565927 Vertex 4056 0.00752051 0.0855871 0.0562726 Vertex 4057 -0.0255949 0.125933 0.00752005 Vertex 4058 -0.00645978 0.0918654 -0.0354548 Vertex 4059 0.0307365 0.117405 0.0253192 Vertex 4060 -0.0253625 0.126177 0.010523 Vertex 4061 -0.0764966 0.117544 0.0520468 Vertex 4062 0.0453383 0.0861836 0.0191712 Vertex 4063 -0.0474944 0.116586 0.0319739 Vertex 4064 -0.0445005 0.116602 0.0322264 Vertex 4065 -0.0425028 0.11664 0.0325093 Vertex 4066 0.0184726 0.0851741 0.0505075 Vertex 4067 0.0194745 0.0851519 0.050256 Vertex 4068 0.00449641 0.11692 0.039168 Vertex 4069 -0.0434904 0.12843 0.000929671 Vertex 4070 -0.0754318 0.155396 0.00808247 Vertex 4071 0.0396392 0.106988 0.00416547 Vertex 4072 -0.0155184 0.118264 0.0365807 Vertex 4073 0.0450422 0.0931924 0.0131619 Vertex 4074 0.0278259 0.115624 -0.00659973 Vertex 4075 -0.0734033 0.167233 -0.0217479 Vertex 4076 -0.00249512 0.122376 0.0359373 Vertex 4077 -0.038486 0.115285 0.0333239 Vertex 4078 -0.0154972 0.122303 0.0324651 Vertex 4079 -0.0724827 0.124619 0.0532114 Vertex 4080 0.0404255 0.0914089 -0.00978781 Vertex 4081 0.0423355 0.0972587 0.0241615 Vertex 4082 0.0446156 0.0959646 0.00916087 Vertex 4083 0.0460213 0.0862262 0.00917159 Vertex 4084 -0.0279306 0.125506 0.00666413 Vertex 4085 -0.0815948 0.123081 0.0504133 Vertex 4086 0.0418343 0.0943991 0.0271656 Vertex 4087 -0.0921228 0.126953 0.0372491 Vertex 4088 0.0155 0.11402 0.0377783 Vertex 4089 -0.0764979 0.135856 0.0507679 Vertex 4090 -0.0244452 0.181836 -0.00961144 Vertex 4091 -0.0785284 0.123123 0.0516319 Vertex 4092 -0.0706182 0.161097 -0.00919138 Vertex 4093 -0.071556 0.161392 -0.00951947 Vertex 4094 0.00886384 0.130684 0.0200808 Vertex 4095 -0.0572292 0.155416 0.0145778 Vertex 4096 0.0331644 0.1138 0.0262385 Vertex 4097 0.0148515 0.129255 0.0180171 Vertex 4098 -0.0713104 0.164383 -0.0152637 Vertex 4099 0.00796175 0.131494 0.0140347 Vertex 4100 -0.0240415 0.126597 0.0109996 Vertex 4101 -0.0234875 0.125296 0.0010065 Vertex 4102 0.0183131 0.127887 0.0164149 Vertex 4103 -0.0164676 0.125926 0.0254562 Vertex 4104 -0.069998 0.157611 -0.0031485 Vertex 4105 -0.0717391 0.165925 -0.0182956 Vertex 4106 -0.0707386 0.165621 -0.0179174 Vertex 4107 -0.0357386 0.176065 -0.00515676 Vertex 4108 -0.0370933 0.175555 -0.00565624 Vertex 4109 -0.0386183 0.174771 -0.00621679 Vertex 4110 -0.0883767 0.125344 0.00127971 Vertex 4111 -0.0674749 0.0861001 0.0436947 Vertex 4112 -0.0664905 0.0861274 0.0441111 Vertex 4113 -0.0654783 0.0861634 0.0444498 Vertex 4114 -0.0644943 0.0861671 0.0446171 Vertex 4115 -0.0634905 0.0861851 0.0447067 Vertex 4116 -0.0624956 0.0861834 0.0447184 Vertex 4117 -0.0614983 0.0861808 0.0447299 Vertex 4118 -0.0604964 0.0861621 0.0446513 Vertex 4119 -0.059497 0.0861573 0.0445009 Vertex 4120 -0.0584956 0.0861498 0.0443498 Vertex 4121 -0.0574852 0.0861616 0.0444185 Vertex 4122 -0.0564932 0.0861648 0.0446121 Vertex 4123 -0.0554832 0.0861944 0.0449632 Vertex 4124 -0.0544905 0.0862124 0.0452239 Vertex 4125 -0.0534886 0.0862338 0.0454573 Vertex 4126 -0.0524982 0.0862336 0.045539 Vertex 4127 -0.0514974 0.086244 0.0456131 Vertex 4128 -0.0504958 0.0862332 0.0455716 Vertex 4129 -0.0495023 0.0862453 0.0455995 Vertex 4130 -0.0484952 0.0862244 0.0454118 Vertex 4131 -0.0474965 0.0862056 0.045143 Vertex 4132 -0.0464764 0.0861628 0.0446798 Vertex 4133 -0.0454819 0.0861255 0.0441555 Vertex 4134 -0.044493 0.0860963 0.0437549 Vertex 4135 -0.0435015 0.086056 0.04322 Vertex 4136 -0.0424904 0.0860159 0.0426903 Vertex 4137 -0.0414976 0.0860064 0.0425981 Vertex 4138 -0.0405007 0.0860467 0.0431081 Vertex 4139 -0.0394712 0.08608 0.0435352 Vertex 4140 -0.0384869 0.0860997 0.0437907 Vertex 4141 -0.0374976 0.0861098 0.0439188 Vertex 4142 -0.0365117 0.0860935 0.0436284 Vertex 4143 -0.0354635 0.0860418 0.0431394 Vertex 4144 -0.0344994 0.0860255 0.0426749 Vertex 4145 -0.0334973 0.0859864 0.0423406 Vertex 4146 -0.0324974 0.0859857 0.0423469 Vertex 4147 -0.0315044 0.0860003 0.0426216 Vertex 4148 -0.0304745 0.0860755 0.0433189 Vertex 4149 -0.0294246 0.0861745 0.0444819 Vertex 4150 -0.00503592 0.13043 0.00494647 Vertex 4151 -0.00624295 0.130196 0.00449841 Vertex 4152 -0.00743574 0.129906 0.00405669 Vertex 4153 -0.00869681 0.129559 0.00358698 Vertex 4154 0.00298644 0.131511 0.0079308 Vertex 4155 0.0018938 0.131459 0.00752669 Vertex 4156 -0.00383551 0.130671 0.00539431 Vertex 4157 0.00407718 0.131556 0.00833758 Vertex 4158 -0.0194848 0.0869694 0.0563134 Vertex 4159 -0.0184974 0.0869962 0.0565805 Vertex 4160 -0.017504 0.0870094 0.0567302 Vertex 4161 -0.0164852 0.0870004 0.0567616 Vertex 4162 -0.0154952 0.087016 0.0568367 Vertex 4163 -0.0145001 0.0870236 0.0569643 Vertex 4164 -0.0135045 0.0870342 0.0571061 Vertex 4165 -0.0124944 0.0870249 0.0570339 Vertex 4166 -0.0114972 0.0870124 0.0568248 Vertex 4167 -0.0105011 0.0870252 0.0569814 Vertex 4168 -0.00950131 0.0870429 0.0572309 Vertex 4169 -0.00850241 0.0870443 0.0572609 Vertex 4170 -0.00748945 0.0870384 0.0571349 Vertex 4171 -0.00649655 0.0870315 0.0570873 Vertex 4172 -0.00550074 0.0870334 0.0571343 Vertex 4173 -0.00449814 0.0870358 0.0571267 Vertex 4174 -0.00349748 0.0870382 0.0570453 Vertex 4175 -0.00249822 0.0870283 0.0569791 Vertex 4176 -0.00149439 0.0870302 0.0569025 Vertex 4177 -0.000495324 0.0870356 0.0569136 Vertex 4178 0.000502823 0.0870298 0.0569751 Vertex 4179 0.00150556 0.0870476 0.0569313 Vertex 4180 0.00250481 0.0870342 0.0569864 Vertex 4181 0.00350598 0.0870278 0.056972 Vertex 4182 0.00450466 0.087016 0.0568401 Vertex 4183 0.00551011 0.0870055 0.0566199 Vertex 4184 0.00651921 0.0869957 0.0564058 Vertex 4185 0.00751373 0.0869673 0.0561316 Vertex 4186 -0.0294813 0.179959 -0.00726258 Vertex 4187 0.03984 0.106962 0.00517391 Vertex 4188 0.0300894 0.118197 0.0250757 Vertex 4189 -0.0755066 0.11755 0.0524265 Vertex 4190 -0.048476 0.116631 0.0320328 Vertex 4191 -0.0464951 0.116619 0.0318843 Vertex 4192 -0.0455014 0.116621 0.0320048 Vertex 4193 0.0174813 0.0865744 0.0503122 Vertex 4194 0.0184933 0.0865452 0.0498488 Vertex 4195 0.0194608 0.0865014 0.0497298 Vertex 4196 0.0204938 0.0865196 0.0494812 Vertex 4197 -0.0143481 0.129147 0.0116153 Vertex 4198 -0.0847398 0.106178 0.00238203 Vertex 4199 -0.0703245 0.0805604 0.0403227 Vertex 4200 -0.0184922 0.11816 0.035496 Vertex 4201 0.0292295 0.102131 0.038919 Vertex 4202 -0.0279294 0.0931359 -0.0265478 Vertex 4203 -0.00983007 0.124748 -0.00821099 Vertex 4204 0.0185123 0.115397 0.0365584 Vertex 4205 -0.0404922 0.11531 0.0337051 Vertex 4206 0.0288607 0.118772 0.0260462 Vertex 4207 -0.0714922 0.124606 0.0531293 Vertex 4208 -0.0293662 0.0904135 -0.0285737 Vertex 4209 0.0426741 0.0972641 0.0231497 Vertex 4210 0.0446411 0.0959729 0.00816419 Vertex 4211 -0.0327551 0.126411 0.00489661 Vertex 4212 0.0363342 0.109637 -0.000829727 Vertex 4213 -0.0775985 0.123137 0.0521223 Vertex 4214 -0.0314688 0.175764 -0.00340966 Vertex 4215 0.0423623 0.0944394 0.0261744 Vertex 4216 0.0393896 0.106975 0.00316583 Vertex 4217 0.0386755 0.101225 -0.00680717 Vertex 4218 -0.0714676 0.155482 0.0269686 Vertex 4219 0.00494704 0.131338 0.0186496 Vertex 4220 -0.0795926 0.100727 0.0334268 Vertex 4221 -0.0645248 0.154173 -0.00692339 Vertex 4222 0.00793492 0.130935 0.0197362 Vertex 4223 -0.0858805 0.0926571 0.00145452 Vertex 4224 0.0325609 0.114759 0.0260072 Vertex 4225 0.0157394 0.128861 0.0183169 Vertex 4226 0.0242996 0.120934 0.0286395 Vertex 4227 0.0089357 0.131311 0.0143899 Vertex 4228 -0.0851808 0.153525 0.0149377 Vertex 4229 -0.0896361 0.0969931 0.0144152 Vertex 4230 0.0102886 0.13098 0.0134608 Vertex 4231 -0.0692559 0.157013 -0.00287665 Vertex 4232 -0.0741239 0.165568 -0.0191297 Vertex 4233 -0.0728415 0.165906 -0.0186805 Vertex 4234 -0.0333033 0.176609 -0.00426163 Vertex 4235 -0.0344415 0.176449 -0.00471515 Vertex 4236 -0.0940387 0.126929 0.0232615 Vertex 4237 -0.0660116 0.154522 0.0303582 Vertex 4238 -0.0873616 0.110481 0.0113565 Vertex 4239 -0.0776353 0.15693 -0.0189052 Vertex 4240 -0.0675187 0.0874976 0.0437834 Vertex 4241 -0.0664749 0.0875478 0.0443297 Vertex 4242 -0.0654933 0.0875673 0.0446215 Vertex 4243 -0.0644915 0.087588 0.0448694 Vertex 4244 -0.0634827 0.0876134 0.0450541 Vertex 4245 -0.0624974 0.0876076 0.0451456 Vertex 4246 -0.0614967 0.0876222 0.0452319 Vertex 4247 -0.0604957 0.0876028 0.045161 Vertex 4248 -0.0595027 0.0876292 0.04502 Vertex 4249 -0.0584973 0.0875674 0.0446281 Vertex 4250 -0.0574934 0.0875623 0.0444505 Vertex 4251 -0.0564919 0.0875695 0.0445907 Vertex 4252 -0.0554895 0.087587 0.0448409 Vertex 4253 -0.0544918 0.0876045 0.0451014 Vertex 4254 -0.0534974 0.0876167 0.045276 Vertex 4255 -0.0524964 0.0876231 0.0453765 Vertex 4256 -0.0514957 0.0876341 0.0455102 Vertex 4257 -0.0504965 0.087636 0.0455301 Vertex 4258 -0.0495004 0.0876335 0.045502 Vertex 4259 -0.0485039 0.0876217 0.0453743 Vertex 4260 -0.0475132 0.0875996 0.0450977 Vertex 4261 -0.0464914 0.08757 0.0446532 Vertex 4262 -0.0454819 0.0875316 0.0441596 Vertex 4263 -0.0444795 0.0874935 0.0436599 Vertex 4264 -0.0435318 0.087421 0.0430041 Vertex 4265 -0.042497 0.0874008 0.0424798 Vertex 4266 -0.0414986 0.0874028 0.042497 Vertex 4267 -0.0404897 0.0874362 0.0429424 Vertex 4268 -0.0394897 0.0874644 0.0433271 Vertex 4269 -0.0384918 0.0874952 0.0437107 Vertex 4270 -0.037505 0.0874848 0.0436782 Vertex 4271 -0.0365003 0.087456 0.0430956 Vertex 4272 -0.0354707 0.0874527 0.0429689 Vertex 4273 -0.034503 0.0874637 0.0428605 Vertex 4274 -0.0334955 0.0874648 0.043047 Vertex 4275 -0.0324895 0.0874934 0.0434306 Vertex 4276 -0.0314842 0.0875139 0.0436743 Vertex 4277 -0.0304696 0.0875178 0.0438182 Vertex 4278 -0.0293842 0.08757 0.0444817 Vertex 4279 0.00721829 0.131495 0.00948452 Vertex 4280 0.0082433 0.13138 0.00986533 Vertex 4281 0.00922467 0.131237 0.0102208 Vertex 4282 0.0101976 0.131045 0.010577 Vertex 4283 0.0120566 0.130535 0.0112565 Vertex 4284 0.0111186 0.130773 0.0109156 Vertex 4285 0.00516264 0.131576 0.00874185 Vertex 4286 0.00619086 0.131536 0.009113 Vertex 4287 0.0147323 0.129513 0.0122405 Vertex 4288 -0.0194871 0.0883195 0.0557235 Vertex 4289 -0.0185099 0.0883573 0.0560195 Vertex 4290 -0.0174841 0.088353 0.056296 Vertex 4291 -0.0164973 0.088378 0.056467 Vertex 4292 -0.0154917 0.0883884 0.056678 Vertex 4293 -0.0144987 0.0884006 0.0568363 Vertex 4294 -0.0134994 0.0884096 0.056966 Vertex 4295 -0.0125093 0.0883992 0.0567932 Vertex 4296 -0.0114976 0.0883765 0.0564607 Vertex 4297 -0.0105064 0.0884021 0.0567868 Vertex 4298 -0.00950098 0.0884225 0.0571104 Vertex 4299 -0.00849876 0.0884233 0.057199 Vertex 4300 -0.00749863 0.0884246 0.0571361 Vertex 4301 -0.00649589 0.0884166 0.05709 Vertex 4302 -0.00549337 0.088417 0.0570387 Vertex 4303 -0.00449408 0.088412 0.0569078 Vertex 4304 -0.00348929 0.0884115 0.0568027 Vertex 4305 -0.00249621 0.0883993 0.0567366 Vertex 4306 -0.00149343 0.0883979 0.0566431 Vertex 4307 -0.000496915 0.0883839 0.0565827 Vertex 4308 0.000506539 0.0883906 0.0565122 Vertex 4309 0.00150878 0.0883997 0.0564367 Vertex 4310 0.00250691 0.0883899 0.0564027 Vertex 4311 0.00350363 0.0883757 0.0563643 Vertex 4312 0.00450432 0.0883672 0.0562441 Vertex 4313 0.00550113 0.0883518 0.0561015 Vertex 4314 0.00650421 0.0883449 0.0558788 Vertex 4315 0.00751322 0.0883379 0.0556646 Vertex 4316 0.00850451 0.0883096 0.055394 Vertex 4317 0.0105044 0.115477 0.0381888 Vertex 4318 -0.0445017 0.163753 0.00542301 Vertex 4319 0.00590682 0.131658 0.0132863 Vertex 4320 -0.0445084 0.162276 0.00597583 Vertex 4321 -0.043533 0.162269 0.00566221 Vertex 4322 -0.0504899 0.115263 0.0337703 Vertex 4323 -0.0884987 0.102354 0.0183681 Vertex 4324 -0.0721793 0.15961 -0.0389315 Vertex 4325 0.0194777 0.0878818 0.0491927 Vertex 4326 0.0204946 0.0878829 0.0490965 Vertex 4327 0.0214723 0.0878669 0.0490265 Vertex 4328 -0.0636035 0.156128 0.0166435 Vertex 4329 -0.0755036 0.121787 0.0531411 Vertex 4330 -0.0205212 0.118181 0.0347958 Vertex 4331 0.0413546 0.0999884 -0.00181466 Vertex 4332 -0.0875459 0.110452 0.0143395 Vertex 4333 0.0396909 0.105526 0.00119339 Vertex 4334 -0.0285122 0.180211 -0.00692909 Vertex 4335 -0.0213522 0.127058 0.00761225 Vertex 4336 -0.0924819 0.125444 0.00927262 Vertex 4337 0.0432211 0.097315 0.0201647 Vertex 4338 0.0388579 0.0970015 -0.00784 Vertex 4339 -0.00946358 0.169654 -0.0207426 Vertex 4340 -0.00548333 0.122374 0.0356916 Vertex 4341 -0.0185076 0.120924 0.0327413 Vertex 4342 -0.0618553 0.153745 -0.0235803 Vertex 4343 0.0399676 0.101315 -0.00381805 Vertex 4344 -0.0639459 0.153257 -0.00670123 Vertex 4345 -0.0869174 0.117103 0.00125292 Vertex 4346 -0.0665983 0.155819 0.0112334 Vertex 4347 0.00173262 0.13137 0.0174841 Vertex 4348 0.00597565 0.131268 0.0190237 Vertex 4349 -0.0408127 0.127672 -0.0010356 Vertex 4350 0.0319596 0.11565 0.0257836 Vertex 4351 0.0166077 0.128469 0.0186355 Vertex 4352 -0.00795135 0.129264 0.0240771 Vertex 4353 0.00986741 0.131059 0.0147331 Vertex 4354 -0.0218317 0.124906 0.0220793 Vertex 4355 -0.0896263 0.0969991 0.0154111 Vertex 4356 0.00935699 0.131232 0.0131197 Vertex 4357 -0.068516 0.156454 -0.00263594 Vertex 4358 -0.0297919 0.108873 -0.0192723 Vertex 4359 -0.0726537 0.15621 0.0148854 Vertex 4360 -0.0555193 0.152453 0.0283051 Vertex 4361 -0.0827604 0.106087 -0.00164696 Vertex 4362 -0.0922703 0.125567 0.0322584 Vertex 4363 -0.0705043 0.0887655 0.0418556 Vertex 4364 -0.0293383 0.123554 -0.00265044 Vertex 4365 -0.0302932 0.123607 -0.00301843 Vertex 4366 -0.0674926 0.0889102 0.043735 Vertex 4367 -0.066502 0.0889512 0.0442634 Vertex 4368 -0.0654905 0.0889779 0.0446185 Vertex 4369 -0.0645002 0.0889975 0.0448988 Vertex 4370 -0.0634835 0.0890243 0.0452141 Vertex 4371 -0.0624954 0.0890364 0.0453804 Vertex 4372 -0.0614914 0.089051 0.0454546 Vertex 4373 -0.0604958 0.0890419 0.0453253 Vertex 4374 -0.059508 0.0890036 0.0450344 Vertex 4375 -0.0584837 0.088969 0.0446761 Vertex 4376 -0.057499 0.0889744 0.0446686 Vertex 4377 -0.0564995 0.0889847 0.0448198 Vertex 4378 -0.0554979 0.0889982 0.0448936 Vertex 4379 -0.054497 0.0889964 0.0448823 Vertex 4380 -0.0534965 0.0890047 0.0449968 Vertex 4381 -0.0524956 0.0890116 0.0451123 Vertex 4382 -0.051497 0.0890197 0.045238 Vertex 4383 -0.050498 0.0890212 0.0452499 Vertex 4384 -0.0494955 0.0890237 0.0451636 Vertex 4385 -0.0484982 0.0890084 0.0450201 Vertex 4386 -0.0474966 0.088987 0.0447599 Vertex 4387 -0.0465077 0.088954 0.0443573 Vertex 4388 -0.0455158 0.0889126 0.0438293 Vertex 4389 -0.0444708 0.0888726 0.0431834 Vertex 4390 -0.0434704 0.0888362 0.0427012 Vertex 4391 -0.0425006 0.0888114 0.0424593 Vertex 4392 -0.041501 0.0888244 0.0425932 Vertex 4393 -0.040488 0.088839 0.0428058 Vertex 4394 -0.039493 0.0888698 0.0432118 Vertex 4395 -0.0385075 0.0888951 0.0435504 Vertex 4396 -0.0374976 0.0888821 0.0433743 Vertex 4397 -0.0364935 0.0888766 0.0431732 Vertex 4398 -0.0354913 0.0889091 0.0432238 Vertex 4399 -0.0344955 0.0889014 0.0434521 Vertex 4400 -0.0334891 0.0889549 0.0439078 Vertex 4401 -0.0324957 0.0889348 0.0439847 Vertex 4402 -0.0314817 0.0889488 0.0439042 Vertex 4403 -0.0305059 0.0889327 0.0438397 Vertex 4404 -0.0294944 0.0889496 0.044252 Vertex 4405 -0.0284884 0.0890334 0.0453918 Vertex 4406 0.0190967 0.127602 0.0138576 Vertex 4407 0.0182337 0.128007 0.0135344 Vertex 4408 0.01736 0.128384 0.0132094 Vertex 4409 0.0164873 0.128764 0.0128859 Vertex 4410 0.0156501 0.129207 0.0125793 Vertex 4411 0.0138565 0.129875 0.0119166 Vertex 4412 0.0129712 0.130228 0.0115965 Vertex 4413 0.0199328 0.127154 0.0141603 Vertex 4414 -0.0722295 0.16736 -0.0213426 Vertex 4415 -0.0184842 0.0897075 0.0555921 Vertex 4416 -0.0174992 0.0897364 0.0558751 Vertex 4417 -0.0164918 0.0897515 0.056205 Vertex 4418 -0.015502 0.0897786 0.0564851 Vertex 4419 -0.0144938 0.0897854 0.0566872 Vertex 4420 -0.013497 0.089796 0.0568243 Vertex 4421 -0.0125102 0.0897843 0.0566766 Vertex 4422 -0.0114926 0.0897634 0.0564161 Vertex 4423 -0.0104962 0.0897854 0.05669 Vertex 4424 -0.00949856 0.0898059 0.0569552 Vertex 4425 -0.00849727 0.0898107 0.0570624 Vertex 4426 -0.00749789 0.0898138 0.0570783 Vertex 4427 -0.00649647 0.0898144 0.056995 Vertex 4428 -0.00549358 0.0898053 0.0568842 Vertex 4429 -0.00448657 0.0898027 0.0567005 Vertex 4430 -0.00349611 0.0897823 0.0565938 Vertex 4431 -0.00248752 0.0897873 0.0564419 Vertex 4432 -0.00150237 0.089761 0.0564112 Vertex 4433 -0.000494586 0.0897644 0.0562541 Vertex 4434 0.000507606 0.089764 0.0561546 Vertex 4435 0.00150774 0.0897546 0.056027 Vertex 4436 0.00250097 0.0897336 0.0558646 Vertex 4437 0.00350969 0.0897377 0.0556751 Vertex 4438 0.00451011 0.08973 0.0555486 Vertex 4439 0.00550651 0.0897139 0.0554063 Vertex 4440 0.00651372 0.089712 0.0551929 Vertex 4441 0.00749975 0.089676 0.055015 Vertex 4442 0.00850666 0.0896726 0.0548038 Vertex 4443 0.00950257 0.0896505 0.0545501 Vertex 4444 0.0104979 0.0896334 0.054299 Vertex 4445 0.00119043 0.0895238 -0.0341779 Vertex 4446 -0.0465027 0.162256 0.00645028 Vertex 4447 0.0378425 0.10835 0.0231802 Vertex 4448 0.00695321 0.13108 0.0193768 Vertex 4449 -0.0774743 0.140015 0.0480697 Vertex 4450 0.0184997 0.0892768 0.0486726 Vertex 4451 0.0194826 0.0892535 0.0485994 Vertex 4452 0.0205013 0.0892461 0.0486645 Vertex 4453 0.0214874 0.0892516 0.0486681 Vertex 4454 -0.0704211 0.15543 0.027334 Vertex 4455 -0.076491 0.140037 0.0480957 Vertex 4456 -0.0195033 0.118175 0.0352728 Vertex 4457 -0.0695125 0.145609 0.0428052 Vertex 4458 0.0359611 0.109622 -0.00183337 Vertex 4459 -0.0779551 0.163899 -0.0249456 Vertex 4460 -0.0104908 0.12238 0.0346088 Vertex 4461 -0.0464991 0.115243 0.033257 Vertex 4462 -0.0309822 0.125744 0.00553845 Vertex 4463 -0.0704978 0.124601 0.053003 Vertex 4464 -0.00349533 0.123738 0.0342998 Vertex 4465 0.0433406 0.0973216 0.0191637 Vertex 4466 0.0438908 0.0973298 0.0041758 Vertex 4467 -0.089531 0.0983552 0.0174009 Vertex 4468 0.0424523 0.0958497 0.0251568 Vertex 4469 0.0353317 0.112044 0.0241962 Vertex 4470 -0.076026 0.151346 0.0359505 Vertex 4471 0.0260142 0.118212 -0.00538239 Vertex 4472 -0.0921303 0.11612 0.0363104 Vertex 4473 -0.0915175 0.140609 0.0191776 Vertex 4474 0.0393065 0.105567 0.023165 Vertex 4475 -0.0678122 0.0908837 -0.0169858 Vertex 4476 -0.0811465 0.155009 0.0163089 Vertex 4477 0.0223132 0.124739 0.023599 Vertex 4478 -0.0397671 0.127634 -0.000654541 Vertex 4479 0.0313581 0.116535 0.0255569 Vertex 4480 0.0182602 0.127523 0.0192457 Vertex 4481 -0.0618581 0.153131 0.03333 Vertex 4482 0.0220807 0.125732 0.0192313 Vertex 4483 -0.00627368 0.128136 0.0276028 Vertex 4484 -0.0132005 0.128825 0.00480743 Vertex 4485 0.00637955 0.131641 0.0120332 Vertex 4486 0.00735987 0.131518 0.0123881 Vertex 4487 -0.0677271 0.155796 -0.00229118 Vertex 4488 -0.0748544 0.15611 0.0141114 Vertex 4489 -0.00575467 0.1008 0.0460186 Vertex 4490 -0.0822477 0.106043 -0.00262262 Vertex 4491 -0.0866496 0.106304 0.00937201 Vertex 4492 -0.0725291 0.0901409 0.0413911 Vertex 4493 -0.0715046 0.0901731 0.0417302 Vertex 4494 -0.0705035 0.0901829 0.0418541 Vertex 4495 -0.0694946 0.0902043 0.0422251 Vertex 4496 -0.0684915 0.0902546 0.0428415 Vertex 4497 -0.087261 0.137734 0.00520439 Vertex 4498 -0.0665084 0.0903473 0.0440273 Vertex 4499 -0.0655009 0.0903733 0.0443899 Vertex 4500 -0.0644925 0.0903995 0.0447493 Vertex 4501 -0.0634853 0.0904216 0.0451002 Vertex 4502 -0.0624955 0.0904382 0.0452713 Vertex 4503 -0.0614974 0.0904473 0.0454009 Vertex 4504 -0.0604973 0.0904382 0.0452731 Vertex 4505 -0.0594976 0.0904384 0.0451853 Vertex 4506 -0.058497 0.0904388 0.0452323 Vertex 4507 -0.0574961 0.0904385 0.0452768 Vertex 4508 -0.0564976 0.0904367 0.0452654 Vertex 4509 -0.0554962 0.0904299 0.0451691 Vertex 4510 -0.0545067 0.0904158 0.0449797 Vertex 4511 -0.0534973 0.0903982 0.0447559 Vertex 4512 -0.0524994 0.0903873 0.0447034 Vertex 4513 -0.0514988 0.090386 0.0447021 Vertex 4514 -0.050497 0.0903958 0.0446608 Vertex 4515 -0.0494977 0.0903933 0.0446494 Vertex 4516 -0.0484951 0.0903851 0.0445307 Vertex 4517 -0.047508 0.0903548 0.0442194 Vertex 4518 -0.046474 0.0903329 0.04369 Vertex 4519 -0.0454559 0.0902978 0.0432333 Vertex 4520 -0.0444607 0.0902688 0.0428496 Vertex 4521 -0.0434818 0.0902492 0.04268 Vertex 4522 -0.0424925 0.0902452 0.0426486 Vertex 4523 -0.0414961 0.0902351 0.0425692 Vertex 4524 -0.0405063 0.0902417 0.0426463 Vertex 4525 -0.0394974 0.0902763 0.0431118 Vertex 4526 -0.0384918 0.0903063 0.0434643 Vertex 4527 -0.0374817 0.0903202 0.0435434 Vertex 4528 -0.036497 0.0903135 0.0436162 Vertex 4529 -0.0354869 0.0903478 0.043788 Vertex 4530 -0.0344924 0.09037 0.0442186 Vertex 4531 -0.033491 0.0904012 0.0444067 Vertex 4532 -0.0324935 0.0903869 0.0442776 Vertex 4533 -0.0314952 0.0903684 0.0441958 Vertex 4534 -0.0304819 0.0903593 0.0440392 Vertex 4535 -0.0294925 0.0903536 0.0441109 Vertex 4536 -0.0284453 0.0903864 0.0448476 Vertex 4537 0.0207654 0.126697 0.0144664 Vertex 4538 0.0215945 0.126233 0.0147739 Vertex 4539 0.022422 0.125761 0.0150782 Vertex 4540 0.0232288 0.125257 0.0153837 Vertex 4541 0.0240159 0.124704 0.0156714 Vertex 4542 0.0248097 0.124191 0.0159771 Vertex 4543 0.0255848 0.123614 0.0162626 Vertex 4544 0.027072 0.122359 0.0168201 Vertex 4545 0.0263253 0.122966 0.0165355 Vertex 4546 -0.0174841 0.0910963 0.0554741 Vertex 4547 -0.0164849 0.0911174 0.0558291 Vertex 4548 -0.0154951 0.0911415 0.0560918 Vertex 4549 -0.0144839 0.0911543 0.0563071 Vertex 4550 -0.0134986 0.0911752 0.0564813 Vertex 4551 -0.0124858 0.0911558 0.0565265 Vertex 4552 -0.0114919 0.0911558 0.0564108 Vertex 4553 -0.0104995 0.091174 0.0564817 Vertex 4554 -0.00949777 0.091187 0.0566315 Vertex 4555 -0.00849948 0.0911907 0.056727 Vertex 4556 -0.00749562 0.091199 0.0567536 Vertex 4557 -0.00649604 0.0912014 0.0567618 Vertex 4558 -0.00549585 0.0911858 0.0567127 Vertex 4559 -0.00449141 0.0911839 0.0565229 Vertex 4560 -0.00349433 0.0911707 0.0563818 Vertex 4561 -0.00249248 0.0911617 0.056251 Vertex 4562 -0.00149595 0.0911539 0.0561263 Vertex 4563 -0.000494259 0.0911454 0.0560111 Vertex 4564 0.000504835 0.0911354 0.0558722 Vertex 4565 0.00150816 0.0911296 0.0556681 Vertex 4566 0.00251114 0.0911189 0.0554408 Vertex 4567 0.0034971 0.091096 0.055256 Vertex 4568 0.00450871 0.0910904 0.0550512 Vertex 4569 0.00550789 0.0910775 0.054811 Vertex 4570 0.00650044 0.0910463 0.0545358 Vertex 4571 0.00749229 0.091015 0.0542708 Vertex 4572 0.00849738 0.0910108 0.0540495 Vertex 4573 0.00950436 0.0910078 0.0538342 Vertex 4574 0.010498 0.0909888 0.0536897 Vertex 4575 0.011503 0.0909852 0.0534706 Vertex 4576 0.0124994 0.0909598 0.0531045 Vertex 4577 -0.000429299 0.131494 0.0138246 Vertex 4578 -0.0704928 0.117562 0.0527864 Vertex 4579 -0.0714928 0.117552 0.0529474 Vertex 4580 -0.072499 0.117558 0.0529308 Vertex 4581 -0.0735009 0.117559 0.0527975 Vertex 4582 0.0184912 0.0906471 0.0481735 Vertex 4583 0.0194927 0.0906432 0.0481529 Vertex 4584 0.020489 0.0906324 0.0482147 Vertex 4585 0.0214919 0.0906421 0.0482356 Vertex 4586 0.0224894 0.0906371 0.0481279 Vertex 4587 -0.0414977 0.115265 0.0337662 Vertex 4588 -0.0022788 0.119988 -0.0131916 Vertex 4589 -0.0235351 0.118111 0.0331575 Vertex 4590 -0.0705096 0.145613 0.0431794 Vertex 4591 -0.060041 0.155524 0.0222725 Vertex 4592 -0.0665787 0.163768 -0.0579853 Vertex 4593 0.0360094 0.105316 -0.00780471 Vertex 4594 0.0420818 0.101483 0.016165 Vertex 4595 -0.0144941 0.122325 0.033097 Vertex 4596 0.0435215 0.0973118 0.0181533 Vertex 4597 0.0442692 0.0973579 0.00816486 Vertex 4598 -0.00925832 0.177251 -0.027731 Vertex 4599 -0.0114975 0.12239 0.0342495 Vertex 4600 -0.0484946 0.156406 0.00957752 Vertex 4601 -0.0105509 0.165091 -0.0177492 Vertex 4602 -0.0909825 0.11607 0.0303184 Vertex 4603 -0.0478629 0.125952 -0.00709772 Vertex 4604 0.0164903 0.113991 0.0376096 Vertex 4605 0.0381316 0.109734 0.0151646 Vertex 4606 -0.0321679 0.120788 0.027294 Vertex 4607 0.0214921 0.125223 0.0232941 Vertex 4608 -0.0097273 0.130072 0.0104159 Vertex 4609 0.0294149 0.118962 0.0248216 Vertex 4610 0.0174027 0.127944 0.018931 Vertex 4611 -0.0594646 0.151494 0.0342364 Vertex 4612 0.023685 0.124697 0.0198268 Vertex 4613 -0.0707512 0.156365 0.0199172 Vertex 4614 -0.0144465 0.128429 0.00434765 Vertex 4615 -0.0119452 0.129197 0.00527137 Vertex 4616 0.00534877 0.131711 0.0116581 Vertex 4617 -0.0647933 0.15319 -0.00116291 Vertex 4618 -0.0670185 0.155095 -0.00202392 Vertex 4619 -0.0370064 0.121579 0.0285082 Vertex 4620 -0.0591933 0.155725 0.01387 Vertex 4621 -0.0798437 0.119249 -0.00499812 Vertex 4622 -0.0934071 0.117385 0.0163015 Vertex 4623 -0.0725279 0.091561 0.0413901 Vertex 4624 -0.0715197 0.0915892 0.0417662 Vertex 4625 -0.0705315 0.0915903 0.0419348 Vertex 4626 -0.0695005 0.091616 0.0421021 Vertex 4627 -0.0685195 0.0916417 0.0424016 Vertex 4628 -0.0675863 0.0915604 0.0429945 Vertex 4629 -0.0664939 0.0917254 0.0436166 Vertex 4630 -0.0654918 0.0917539 0.043991 Vertex 4631 -0.0644855 0.0917771 0.0443552 Vertex 4632 -0.0635024 0.0918143 0.0447779 Vertex 4633 -0.0624998 0.091833 0.0450322 Vertex 4634 -0.0614888 0.0918402 0.045217 Vertex 4635 -0.0604969 0.0918487 0.0452694 Vertex 4636 -0.0594957 0.0918578 0.0453847 Vertex 4637 -0.0584972 0.0918588 0.045399 Vertex 4638 -0.0574984 0.0918591 0.045399 Vertex 4639 -0.0564984 0.0918565 0.0453856 Vertex 4640 -0.055503 0.0918468 0.0452512 Vertex 4641 -0.0545043 0.0918174 0.0448821 Vertex 4642 -0.0535025 0.0917839 0.0444757 Vertex 4643 -0.0524976 0.0917711 0.0441581 Vertex 4644 -0.0514977 0.0917694 0.0441515 Vertex 4645 -0.0504992 0.0917781 0.0442368 Vertex 4646 -0.049492 0.0917757 0.044207 Vertex 4647 -0.0484736 0.0917654 0.0440291 Vertex 4648 -0.0474794 0.0917467 0.0438194 Vertex 4649 -0.0464789 0.0917181 0.0434263 Vertex 4650 -0.0454732 0.0917007 0.0431865 Vertex 4651 -0.0444858 0.091688 0.0430295 Vertex 4652 -0.0434801 0.0917165 0.0428888 Vertex 4653 -0.0424942 0.0916602 0.0426604 Vertex 4654 -0.0414975 0.0916447 0.0424797 Vertex 4655 -0.0404969 0.0916505 0.0425962 Vertex 4656 -0.0394992 0.0916803 0.0429883 Vertex 4657 -0.0384759 0.091717 0.0434324 Vertex 4658 -0.0374903 0.0917378 0.0437278 Vertex 4659 -0.0364756 0.0917702 0.0440382 Vertex 4660 -0.0354929 0.0917868 0.0443508 Vertex 4661 -0.0344884 0.0918084 0.0445658 Vertex 4662 -0.0334891 0.091814 0.044517 Vertex 4663 -0.032497 0.0917926 0.0443017 Vertex 4664 -0.0314963 0.0917789 0.0442247 Vertex 4665 -0.0304965 0.0917653 0.0441169 Vertex 4666 -0.0294909 0.0917678 0.0440939 Vertex 4667 -0.0284904 0.0917855 0.0443788 Vertex 4668 -0.0275307 0.0918372 0.0449329 Vertex 4669 0.0333782 0.11597 0.0192002 Vertex 4670 0.0327251 0.116757 0.0189485 Vertex 4671 0.0320656 0.117538 0.0186978 Vertex 4672 0.0313831 0.11825 0.0184294 Vertex 4673 0.0306925 0.119003 0.0181751 Vertex 4674 0.029259 0.120361 0.0176317 Vertex 4675 0.0278048 0.121695 0.017093 Vertex 4676 0.0285346 0.121033 0.017364 Vertex 4677 0.0299804 0.119686 0.0179058 Vertex 4678 -0.0174771 0.0924389 0.0547456 Vertex 4679 -0.0164537 0.0924837 0.0552632 Vertex 4680 -0.0154945 0.0925097 0.0555061 Vertex 4681 -0.0144952 0.092498 0.0556089 Vertex 4682 -0.0134957 0.0925258 0.0558596 Vertex 4683 -0.0124951 0.0925417 0.056096 Vertex 4684 -0.0115004 0.0925527 0.0561224 Vertex 4685 -0.0104988 0.09255 0.056119 Vertex 4686 -0.00950093 0.0925586 0.0561384 Vertex 4687 -0.00849427 0.0925522 0.0562249 Vertex 4688 -0.00749931 0.0925693 0.0562701 Vertex 4689 -0.00649896 0.092559 0.0563419 Vertex 4690 -0.00549615 0.0925657 0.0562617 Vertex 4691 -0.00449521 0.0925603 0.0561444 Vertex 4692 -0.00349386 0.0925503 0.0560196 Vertex 4693 -0.00249367 0.0925505 0.0559214 Vertex 4694 -0.00150095 0.0925253 0.0558525 Vertex 4695 -0.000492618 0.0925258 0.0556594 Vertex 4696 0.000505603 0.092515 0.0555251 Vertex 4697 0.00150906 0.0925101 0.0553138 Vertex 4698 0.00250661 0.0924946 0.055168 Vertex 4699 0.00351496 0.0924905 0.0549546 Vertex 4700 0.00450283 0.0924607 0.0546761 Vertex 4701 0.00549857 0.09243 0.054294 Vertex 4702 0.00649864 0.0924086 0.053834 Vertex 4703 0.00749052 0.0923616 0.0534281 Vertex 4704 0.00849261 0.092349 0.0531984 Vertex 4705 0.009491 0.0923319 0.053062 Vertex 4706 0.0104929 0.0923225 0.0529394 Vertex 4707 0.0114966 0.0923286 0.0527326 Vertex 4708 0.000663768 0.131541 0.0142252 Vertex 4709 0.0337889 0.112917 0.0264745 Vertex 4710 -0.0896888 0.137919 0.0321971 Vertex 4711 -0.0697061 0.156309 0.0202886 Vertex 4712 0.0184844 0.092024 0.0477707 Vertex 4713 0.0194957 0.0920261 0.0477827 Vertex 4714 0.0204977 0.0920241 0.0479175 Vertex 4715 0.0214843 0.092023 0.0479434 Vertex 4716 0.0224766 0.0920198 0.0478397 Vertex 4717 0.0190905 0.127062 0.0195525 Vertex 4718 -0.0755097 0.135846 0.0506323 Vertex 4719 -0.0225344 0.118142 0.03379 Vertex 4720 -0.0664528 0.145477 0.0410093 Vertex 4721 -0.0732183 0.172207 -0.0490431 Vertex 4722 -0.000499443 0.114191 0.0415203 Vertex 4723 0.0166529 0.120978 0.0330533 Vertex 4724 -0.0784807 0.13724 0.0497912 Vertex 4725 -0.0493916 0.144765 0.00938332 Vertex 4726 -0.0362968 0.126232 -0.00232089 Vertex 4727 -0.00748204 0.123738 0.0339317 Vertex 4728 0.0433826 0.0987102 0.00417641 Vertex 4729 0.0442649 0.0973538 0.00716867 Vertex 4730 -0.053518 0.1534 0.0145047 Vertex 4731 -0.0073165 0.13056 0.0112981 Vertex 4732 -0.0774871 0.138654 0.0489668 Vertex 4733 -0.0735032 0.144216 0.0449341 Vertex 4734 0.022476 0.125337 0.020807 Vertex 4735 -0.0311279 0.168264 -0.00654632 Vertex 4736 -0.0377436 0.127354 0.000111554 Vertex 4737 -0.054309 0.153692 0.0171048 Vertex 4738 -0.0531482 0.161241 0.00587596 Vertex 4739 -0.0675655 0.156308 0.0210392 Vertex 4740 0.0206619 0.125677 0.022985 Vertex 4741 -0.00852427 0.130326 0.0108566 Vertex 4742 -0.0891577 0.092949 0.0214162 Vertex 4743 0.0360267 0.110062 0.0258818 Vertex 4744 -0.0852903 0.152844 0.0238067 Vertex 4745 0.0244484 0.124114 0.020115 Vertex 4746 0.008888 0.126629 0.0301427 Vertex 4747 0.0370248 0.10907 0.0248298 Vertex 4748 -0.0106876 0.129553 0.00573838 Vertex 4749 0.0357348 0.111877 0.0229152 Vertex 4750 -0.0868795 0.0927253 0.00342064 Vertex 4751 -0.0924737 0.125588 0.0362608 Vertex 4752 -0.0701892 0.156285 0.021569 Vertex 4753 -0.0761724 0.154401 0.00198863 Vertex 4754 -0.0916556 0.116096 0.0323166 Vertex 4755 -0.071511 0.0930107 0.0417462 Vertex 4756 -0.0705133 0.0930254 0.0420143 Vertex 4757 -0.0694907 0.0930374 0.0422024 Vertex 4758 -0.0685147 0.0930476 0.0422841 Vertex 4759 -0.0674962 0.0930678 0.0426016 Vertex 4760 -0.0665114 0.0931036 0.0430214 Vertex 4761 -0.0655017 0.0931357 0.0435076 Vertex 4762 -0.0644838 0.0931562 0.0439721 Vertex 4763 -0.0635003 0.0931972 0.0443921 Vertex 4764 -0.0624726 0.093208 0.0448109 Vertex 4765 -0.0614885 0.0932285 0.0449784 Vertex 4766 -0.0604952 0.0932426 0.0451145 Vertex 4767 -0.0594987 0.0932573 0.0451741 Vertex 4768 -0.0584964 0.0932599 0.0452695 Vertex 4769 -0.0574951 0.093265 0.0451928 Vertex 4770 -0.0564987 0.0932477 0.0451284 Vertex 4771 -0.0554929 0.0932384 0.0449182 Vertex 4772 -0.054495 0.0932121 0.0445367 Vertex 4773 -0.0534962 0.0931826 0.0441514 Vertex 4774 -0.0524976 0.0931679 0.0439324 Vertex 4775 -0.0514985 0.0931716 0.0440238 Vertex 4776 -0.0504998 0.0931897 0.044287 Vertex 4777 -0.0494967 0.0932039 0.0445022 Vertex 4778 -0.0484872 0.0931824 0.0442201 Vertex 4779 -0.0474847 0.0931518 0.0438057 Vertex 4780 -0.0464855 0.0931347 0.0435353 Vertex 4781 -0.0454849 0.0931252 0.0434035 Vertex 4782 -0.0445007 0.0931064 0.043109 Vertex 4783 -0.0434939 0.0930777 0.0427388 Vertex 4784 -0.042508 0.0930307 0.0424902 Vertex 4785 -0.0415 0.0930514 0.0423592 Vertex 4786 -0.0404998 0.0930589 0.0424923 Vertex 4787 -0.0395093 0.0930879 0.0428865 Vertex 4788 -0.0384668 0.0931237 0.0434147 Vertex 4789 -0.0374862 0.0931566 0.0438456 Vertex 4790 -0.0364811 0.0931828 0.0441998 Vertex 4791 -0.0354775 0.0932002 0.0444179 Vertex 4792 -0.0344784 0.0932112 0.0445123 Vertex 4793 -0.0334907 0.0932064 0.044455 Vertex 4794 -0.0324927 0.0932098 0.0444316 Vertex 4795 -0.0314925 0.0932138 0.0444288 Vertex 4796 -0.030492 0.093206 0.0443051 Vertex 4797 -0.0294928 0.0931993 0.044345 Vertex 4798 -0.0284906 0.0932063 0.0444855 Vertex 4799 -0.0274983 0.0932247 0.0447643 Vertex 4800 -0.0266282 0.0932643 0.045173 Vertex 4801 -0.0141549 0.129252 0.0145753 Vertex 4802 0.0340287 0.115127 0.0194375 Vertex 4803 0.0346578 0.114254 0.0196698 Vertex 4804 0.0352633 0.113355 0.0198926 Vertex 4805 0.0364601 0.111481 0.0203251 Vertex 4806 0.0376363 0.109584 0.0207569 Vertex 4807 -0.0154115 0.128891 0.0141212 Vertex 4808 0.0370519 0.110502 0.0205344 Vertex 4809 0.0358716 0.112393 0.0201061 Vertex 4810 -0.0164997 0.0938314 0.054193 Vertex 4811 -0.015483 0.0938222 0.0546278 Vertex 4812 -0.0144923 0.093841 0.0546527 Vertex 4813 -0.0135421 0.093873 0.0547462 Vertex 4814 -0.0124997 0.0938947 0.0551641 Vertex 4815 -0.0114927 0.0938853 0.0554733 Vertex 4816 -0.0104958 0.0939039 0.0555039 Vertex 4817 -0.00949586 0.0938956 0.0554931 Vertex 4818 -0.00849618 0.0939016 0.0554996 Vertex 4819 -0.00749757 0.0939067 0.0556187 Vertex 4820 -0.00649817 0.0939276 0.0556503 Vertex 4821 -0.00549893 0.0939194 0.0556385 Vertex 4822 -0.00449744 0.0939058 0.0556112 Vertex 4823 -0.00349838 0.0938964 0.0554871 Vertex 4824 -0.00249784 0.0939038 0.0553992 Vertex 4825 -0.0014996 0.0938866 0.0553603 Vertex 4826 -0.000502218 0.0938722 0.0552243 Vertex 4827 0.000498438 0.0938703 0.0551155 Vertex 4828 0.00150188 0.0938741 0.0550191 Vertex 4829 0.00249981 0.0938632 0.054785 Vertex 4830 0.00351431 0.0938625 0.0544725 Vertex 4831 0.00450074 0.0938217 0.0540732 Vertex 4832 0.00549734 0.0937843 0.053579 Vertex 4833 0.00650022 0.0937602 0.0531051 Vertex 4834 0.00748123 0.0937253 0.0527164 Vertex 4835 0.00848126 0.0936832 0.0524446 Vertex 4836 0.00949153 0.0936876 0.0522363 Vertex 4837 0.0104883 0.0936688 0.0521003 Vertex 4838 0.0114833 0.0936471 0.0518498 Vertex 4839 0.0124869 0.0936385 0.0515089 Vertex 4840 0.0134712 0.0936014 0.0511282 Vertex 4841 0.0384483 0.10837 0.0201721 Vertex 4842 0.0406661 0.105634 0.0121644 Vertex 4843 -0.0504953 0.154968 0.0107183 Vertex 4844 0.0184724 0.0934238 0.0476306 Vertex 4845 0.0194892 0.0934174 0.0476186 Vertex 4846 0.0204871 0.0934146 0.0476927 Vertex 4847 0.0214864 0.0934187 0.0477129 Vertex 4848 0.022475 0.0933993 0.047467 Vertex 4849 -0.072501 0.11898 0.053434 Vertex 4850 -0.0324964 0.117987 0.0309791 Vertex 4851 -0.021523 0.118151 0.0342827 Vertex 4852 -0.0735089 0.120392 0.0535609 Vertex 4853 -0.061813 0.175696 -0.0586065 Vertex 4854 -0.00916969 0.168123 -0.0207225 Vertex 4855 0.0051585 0.127708 0.0288034 Vertex 4856 -0.0794167 0.137236 0.0495785 Vertex 4857 -0.0304675 0.175749 -0.00423829 Vertex 4858 -0.0697175 0.155623 0.0028257 Vertex 4859 -0.0064883 0.123768 0.0340789 Vertex 4860 0.043549 0.0987325 0.00516762 Vertex 4861 0.044036 0.0973464 0.00517085 Vertex 4862 -0.0245806 0.124862 0.0196194 Vertex 4863 -0.0734899 0.123206 0.0535424 Vertex 4864 -0.0784635 0.138605 0.0489019 Vertex 4865 -0.0725121 0.144203 0.0447958 Vertex 4866 -0.0329445 0.121338 0.0269922 Vertex 4867 -0.0586802 0.148237 0.034554 Vertex 4868 -0.0814624 0.13163 0.0517276 Vertex 4869 -0.0804996 0.127434 0.052885 Vertex 4870 -0.0732356 0.176411 -0.0530886 Vertex 4871 -0.0685481 0.156429 0.0206858 Vertex 4872 0.0230836 0.12416 0.0238853 Vertex 4873 -0.0108662 0.129871 0.00999779 Vertex 4874 -0.0384602 0.127124 -0.00162988 Vertex 4875 0.035443 0.111045 0.0256623 Vertex 4876 -0.069185 0.156032 0.0248455 Vertex 4877 0.0228724 0.125195 0.0195238 Vertex 4878 0.0212529 0.1262 0.0189269 Vertex 4879 0.0364765 0.110061 0.0246179 Vertex 4880 -0.00949201 0.129843 0.00617837 Vertex 4881 0.0363164 0.11089 0.0231265 Vertex 4882 -0.0662723 0.154476 -0.00173975 Vertex 4883 -0.0655548 0.153788 -0.00146085 Vertex 4884 0.0106021 0.12463 0.0322012 Vertex 4885 -0.0837218 0.154141 0.0154269 Vertex 4886 -0.00991923 0.0986226 0.0505787 Vertex 4887 0.0113328 0.124014 0.0325236 Vertex 4888 -0.0458806 0.10564 -0.0201801 Vertex 4889 -0.0704921 0.0944433 0.0420805 Vertex 4890 -0.0694824 0.0944579 0.0422945 Vertex 4891 -0.0684942 0.0944611 0.0423345 Vertex 4892 -0.067492 0.0944588 0.0423306 Vertex 4893 -0.0665096 0.0944832 0.0425185 Vertex 4894 -0.0654853 0.0944999 0.0429585 Vertex 4895 -0.064515 0.0945534 0.0434117 Vertex 4896 -0.0635019 0.0945759 0.0438874 Vertex 4897 -0.0624814 0.094591 0.0443423 Vertex 4898 -0.0614849 0.0946016 0.0445824 Vertex 4899 -0.0604857 0.094604 0.0446906 Vertex 4900 -0.0594974 0.0946317 0.0447571 Vertex 4901 -0.0584963 0.0946188 0.0448266 Vertex 4902 -0.0574955 0.0946379 0.0447737 Vertex 4903 -0.0565021 0.0946206 0.04473 Vertex 4904 -0.0555057 0.0946 0.044463 Vertex 4905 -0.0544999 0.0945829 0.0441089 Vertex 4906 -0.053497 0.0945663 0.0438533 Vertex 4907 -0.0524967 0.0945727 0.0438723 Vertex 4908 -0.0514961 0.0945888 0.044111 Vertex 4909 -0.0504886 0.0946205 0.0445363 Vertex 4910 -0.0494969 0.0946343 0.044743 Vertex 4911 -0.048501 0.0946267 0.0446158 Vertex 4912 -0.0474749 0.0945717 0.0440635 Vertex 4913 -0.0464518 0.0945568 0.0436355 Vertex 4914 -0.0454954 0.0945383 0.0433792 Vertex 4915 -0.0444648 0.0945053 0.0429498 Vertex 4916 -0.0434854 0.0944868 0.0426487 Vertex 4917 -0.0424855 0.09447 0.0423231 Vertex 4918 -0.0414998 0.0944525 0.0421484 Vertex 4919 -0.0405043 0.0944618 0.0422679 Vertex 4920 -0.0394914 0.0944889 0.0427101 Vertex 4921 -0.038479 0.0945169 0.0431902 Vertex 4922 -0.0374622 0.0945463 0.043653 Vertex 4923 -0.0364793 0.0945677 0.0439429 Vertex 4924 -0.0354827 0.0945899 0.0441989 Vertex 4925 -0.0344963 0.094609 0.0443801 Vertex 4926 -0.0334933 0.0946149 0.0444857 Vertex 4927 -0.0324852 0.0946249 0.0445277 Vertex 4928 -0.0314938 0.0946271 0.0446065 Vertex 4929 -0.0304948 0.094646 0.0448519 Vertex 4930 -0.0294901 0.0946648 0.0450535 Vertex 4931 -0.0284962 0.0946634 0.0451029 Vertex 4932 -0.0274872 0.094655 0.0450969 Vertex 4933 -0.0265055 0.0946665 0.044662 Vertex 4934 -0.0254987 0.0945485 0.0446378 Vertex 4935 -0.0665323 0.154667 0.00252946 Vertex 4936 -0.0455234 0.131922 0.0119481 Vertex 4937 -0.0315791 0.125791 0.0170798 Vertex 4938 -0.0297787 0.125132 0.0177406 Vertex 4939 -0.0133594 0.127978 0.0236019 Vertex 4940 0.000512384 0.127929 0.028588 Vertex 4941 0.00710349 0.126169 0.0309735 Vertex 4942 0.00523694 0.126704 0.0302977 Vertex 4943 0.00144942 0.127679 0.0289378 Vertex 4944 -0.0155009 0.0951913 0.0533641 Vertex 4945 -0.0144859 0.0951551 0.0535558 Vertex 4946 -0.0134899 0.0951663 0.0534531 Vertex 4947 -0.0125183 0.095238 0.0536312 Vertex 4948 -0.0114897 0.0951792 0.0542781 Vertex 4949 -0.0104933 0.0952299 0.0545267 Vertex 4950 -0.00948994 0.0952069 0.0546127 Vertex 4951 -0.00849797 0.0952525 0.0545557 Vertex 4952 -0.00749453 0.0952341 0.0547544 Vertex 4953 -0.0064991 0.0952675 0.0547927 Vertex 4954 -0.00549683 0.095262 0.0547887 Vertex 4955 -0.0044982 0.0952431 0.0547633 Vertex 4956 -0.00349883 0.095211 0.054715 Vertex 4957 -0.00249757 0.0952299 0.0546317 Vertex 4958 -0.00149834 0.095227 0.054625 Vertex 4959 -0.000500036 0.0952296 0.0545194 Vertex 4960 0.00049039 0.0952019 0.0544773 Vertex 4961 0.00148048 0.0952613 0.0542408 Vertex 4962 0.00249575 0.0952068 0.0540463 Vertex 4963 0.00347944 0.095162 0.0537659 Vertex 4964 0.00448177 0.0951431 0.0532987 Vertex 4965 0.00549498 0.0951378 0.0528545 Vertex 4966 0.00648653 0.0951017 0.0524749 Vertex 4967 0.00749418 0.095088 0.0520151 Vertex 4968 0.00848559 0.0950467 0.0516302 Vertex 4969 0.00948509 0.0950229 0.0512669 Vertex 4970 0.0104769 0.0949778 0.0509942 Vertex 4971 0.0114695 0.0949418 0.0507264 Vertex 4972 0.0124807 0.0949598 0.0504131 Vertex 4973 -0.057716 0.154704 0.0245626 Vertex 4974 0.0247834 0.123596 0.021665 Vertex 4975 0.0257715 0.122252 0.0234619 Vertex 4976 0.0174632 0.0948293 0.047857 Vertex 4977 0.0184887 0.0948214 0.0475148 Vertex 4978 0.0194938 0.0948135 0.0473832 Vertex 4979 0.0204841 0.0948066 0.0474378 Vertex 4980 0.0214853 0.0948038 0.0473574 Vertex 4981 0.0224755 0.0947811 0.0470955 Vertex 4982 -0.0334943 0.11802 0.0311453 Vertex 4983 -0.00448593 0.118295 0.0389891 Vertex 4984 -0.074497 0.120396 0.0533632 Vertex 4985 -0.0872512 0.106353 0.0133638 Vertex 4986 -0.0681737 0.074979 0.0383298 Vertex 4987 -0.032468 0.175717 -0.00291757 Vertex 4988 0.00949693 0.121023 0.0358683 Vertex 4989 0.0383178 0.106879 0.000185785 Vertex 4990 -0.0229947 0.122243 0.0275866 Vertex 4991 -0.00548754 0.123746 0.0343085 Vertex 4992 0.0422406 0.0986762 0.0221715 Vertex 4993 0.0357616 0.0967769 -0.0118087 Vertex 4994 -0.0673436 0.155169 0.0284164 Vertex 4995 -0.0714952 0.123214 0.0534125 Vertex 4996 -0.0794627 0.138625 0.0485832 Vertex 4997 -0.0715324 0.144165 0.0446205 Vertex 4998 0.00897367 0.131122 0.0172577 Vertex 4999 0.0363477 0.102053 0.0316389 Vertex 5000 -0.0794885 0.131664 0.0524764 Vertex 5001 0.0373196 0.105416 -0.00382358 Vertex 5002 0.0374508 0.109679 0.00217662 Vertex 5003 -0.00495697 0.0978375 0.052341 Vertex 5004 0.0238446 0.123573 0.0241681 Vertex 5005 -0.0121305 0.129539 0.00953518 Vertex 5006 -0.037475 0.126933 -0.001254 Vertex 5007 0.0324864 0.115764 0.0245556 Vertex 5008 -0.025634 0.122393 0.025161 Vertex 5009 -0.0771699 0.154422 0.00455736 Vertex 5010 0.0195548 0.127052 0.0182976 Vertex 5011 0.0359077 0.111056 0.0244077 Vertex 5012 -0.00828798 0.130102 0.00662088 Vertex 5013 0.0112135 0.130703 0.0137986 Vertex 5014 0.0121385 0.130422 0.0141392 Vertex 5015 0.0130152 0.130057 0.0144613 Vertex 5016 0.0139278 0.129741 0.0148027 Vertex 5017 0.014767 0.129313 0.0151085 Vertex 5018 -0.037685 0.127343 0.0163262 Vertex 5019 -0.0525315 0.149847 0.0192949 Vertex 5020 -0.0868422 0.134936 0.00226938 Vertex 5021 -0.0715256 0.0958228 0.0413941 Vertex 5022 -0.0705026 0.0958452 0.0418601 Vertex 5023 -0.0694956 0.0958583 0.0420894 Vertex 5024 -0.0684956 0.0958684 0.0422138 Vertex 5025 -0.0674874 0.0958602 0.0421807 Vertex 5026 -0.066499 0.0958724 0.0422345 Vertex 5027 -0.0655014 0.0958911 0.0424957 Vertex 5028 -0.0644795 0.0959078 0.0429389 Vertex 5029 -0.0635036 0.095949 0.0432601 Vertex 5030 -0.0624759 0.0959475 0.043683 Vertex 5031 -0.0614938 0.0959769 0.0438595 Vertex 5032 -0.0604906 0.0959808 0.043977 Vertex 5033 -0.0594946 0.0959853 0.0440949 Vertex 5034 -0.0584978 0.0959813 0.0440843 Vertex 5035 -0.0574984 0.0959784 0.0439666 Vertex 5036 -0.0564976 0.0959787 0.0438593 Vertex 5037 -0.0554959 0.0959795 0.0436611 Vertex 5038 -0.0544972 0.0959632 0.0436086 Vertex 5039 -0.0534962 0.0959644 0.0436141 Vertex 5040 -0.0524868 0.0959601 0.0436811 Vertex 5041 -0.0514936 0.0959907 0.0439844 Vertex 5042 -0.0504951 0.0960175 0.0443724 Vertex 5043 -0.0494978 0.0960237 0.0444817 Vertex 5044 -0.0484883 0.0960313 0.0444485 Vertex 5045 -0.0474662 0.0960033 0.0439936 Vertex 5046 -0.0464486 0.0959731 0.0434949 Vertex 5047 -0.0454824 0.0959409 0.0431744 Vertex 5048 -0.0444676 0.0959215 0.0428438 Vertex 5049 -0.0434867 0.0959016 0.0426578 Vertex 5050 -0.0424793 0.0958739 0.0423242 Vertex 5051 -0.0414969 0.095865 0.0421344 Vertex 5052 -0.0404927 0.0958661 0.0421915 Vertex 5053 -0.0394877 0.095879 0.0424449 Vertex 5054 -0.0384829 0.0959056 0.0428235 Vertex 5055 -0.0374873 0.0959326 0.0432114 Vertex 5056 -0.0364738 0.0959436 0.0435424 Vertex 5057 -0.0354714 0.0959602 0.0437897 Vertex 5058 -0.0344873 0.0959942 0.0440904 Vertex 5059 -0.0334914 0.0960174 0.044365 Vertex 5060 -0.032494 0.096035 0.0446186 Vertex 5061 -0.0314905 0.0960436 0.0448087 Vertex 5062 -0.0304938 0.0960556 0.0449536 Vertex 5063 -0.0294958 0.0960659 0.0449891 Vertex 5064 -0.0285 0.0960446 0.0448096 Vertex 5065 -0.0274981 0.0960112 0.0443229 Vertex 5066 -0.0264981 0.0959784 0.0437675 Vertex 5067 -0.0254875 0.0959781 0.0438332 Vertex 5068 0.0114621 0.125412 0.0310862 Vertex 5069 -0.0144911 0.124164 0.030554 Vertex 5070 -0.030372 0.124909 0.019004 Vertex 5071 0.00388987 0.0987683 0.0495103 Vertex 5072 -0.0894993 0.135155 0.0302067 Vertex 5073 -0.000225629 0.097747 0.0525183 Vertex 5074 0.00694939 0.128215 0.0280149 Vertex 5075 -0.0164554 0.0963571 0.0512639 Vertex 5076 -0.0153678 0.09644 0.0517723 Vertex 5077 -0.0124889 0.0964872 0.0522501 Vertex 5078 -0.0114785 0.0965129 0.0526113 Vertex 5079 -0.010476 0.0965182 0.0531854 Vertex 5080 -0.00948854 0.0965445 0.0534324 Vertex 5081 -0.00849451 0.0965679 0.0534544 Vertex 5082 -0.00749239 0.096543 0.0535421 Vertex 5083 -0.00649214 0.0965537 0.0536631 Vertex 5084 -0.00549542 0.0965711 0.0536823 Vertex 5085 -0.00449535 0.0965559 0.0536663 Vertex 5086 -0.0034976 0.0965806 0.0535793 Vertex 5087 -0.00249868 0.0965524 0.0536599 Vertex 5088 -0.00149973 0.0965741 0.0536819 Vertex 5089 -0.000502572 0.0965565 0.053664 Vertex 5090 0.000488577 0.0965409 0.0535304 Vertex 5091 0.00149843 0.0965502 0.0531993 Vertex 5092 0.00247314 0.0964836 0.053027 Vertex 5093 0.00347668 0.0964809 0.0526894 Vertex 5094 0.00448513 0.0964789 0.0523472 Vertex 5095 0.005469 0.0964333 0.0520715 Vertex 5096 0.00646924 0.0964123 0.0516046 Vertex 5097 0.00748545 0.0964088 0.0510363 Vertex 5098 0.00847616 0.0963576 0.0505263 Vertex 5099 0.00948792 0.0963424 0.0500581 Vertex 5100 0.0104732 0.0962984 0.0498872 Vertex 5101 0.0114882 0.0963254 0.0495798 Vertex 5102 0.0124693 0.0962821 0.0494059 Vertex 5103 0.0134626 0.0962698 0.0490469 Vertex 5104 0.0144666 0.0962642 0.0485999 Vertex 5105 0.015473 0.0962531 0.0481291 Vertex 5106 0.0164935 0.0962515 0.0477962 Vertex 5107 0.0174929 0.0962345 0.0475335 Vertex 5108 0.0184956 0.0962193 0.0472822 Vertex 5109 0.0194833 0.0961991 0.0471957 Vertex 5110 0.0204867 0.0961927 0.0470968 Vertex 5111 0.021477 0.0961774 0.0469631 Vertex 5112 -0.0344954 0.118007 0.0312549 Vertex 5113 -0.00349112 0.118315 0.0390164 Vertex 5114 -0.0755176 0.120378 0.0530566 Vertex 5115 -0.0334971 0.119329 0.0299275 Vertex 5116 -0.0744868 0.14835 0.0408614 Vertex 5117 0.00850062 0.121038 0.0360118 Vertex 5118 -0.0893812 0.113196 0.0217139 Vertex 5119 0.00393808 0.131671 0.0154244 Vertex 5120 0.0272653 0.121002 0.0240179 Vertex 5121 -0.0414264 0.125093 -0.00826982 Vertex 5122 -0.00496439 0.130958 0.0121612 Vertex 5123 -0.0663732 0.0796127 0.0418746 Vertex 5124 0.0367704 0.109675 0.000243105 Vertex 5125 -0.00429403 0.131101 0.0138416 Vertex 5126 0.0414017 0.104253 0.00516521 Vertex 5127 -0.078485 0.131655 0.0526796 Vertex 5128 -0.0921247 0.116117 0.0353113 Vertex 5129 -0.0458334 0.0927472 -0.0217986 Vertex 5130 -0.069928 0.113662 -0.00916203 Vertex 5131 -0.0672153 0.156284 0.0168104 Vertex 5132 0.0245725 0.122909 0.0244414 Vertex 5133 -0.0183558 0.127798 0.00725695 Vertex 5134 -0.0365184 0.126747 -0.000928274 Vertex 5135 0.0318733 0.11664 0.0243218 Vertex 5136 -0.0418108 0.128972 0.0103834 Vertex 5137 0.02042 0.126659 0.0186188 Vertex 5138 -0.0203015 0.124709 0.0241059 Vertex 5139 -0.00714757 0.130278 0.00704353 Vertex 5140 -0.00588102 0.130577 0.00751387 Vertex 5141 -0.03056 0.124009 -0.00164624 Vertex 5142 -0.0315292 0.124197 -0.00202254 Vertex 5143 -0.0932956 0.12823 0.014251 Vertex 5144 -0.0884031 0.101017 0.0203758 Vertex 5145 0.0156548 0.128965 0.0154331 Vertex 5146 -0.0253871 0.124202 0.0208009 Vertex 5147 -0.0686442 0.156175 0.0235781 Vertex 5148 -0.0705311 0.0972485 0.0414142 Vertex 5149 -0.069435 0.0972593 0.0417284 Vertex 5150 -0.0685036 0.0972643 0.0418698 Vertex 5151 -0.0674995 0.0972695 0.0419768 Vertex 5152 -0.0665061 0.0972756 0.0420058 Vertex 5153 -0.0655106 0.0972881 0.0421527 Vertex 5154 -0.0644877 0.0972949 0.0424471 Vertex 5155 -0.0634992 0.0973124 0.0426152 Vertex 5156 -0.0625026 0.0973365 0.0428841 Vertex 5157 -0.0614955 0.0973435 0.04311 Vertex 5158 -0.0604951 0.097348 0.0432235 Vertex 5159 -0.0594946 0.0973472 0.0432255 Vertex 5160 -0.0585016 0.0973698 0.0431908 Vertex 5161 -0.0574972 0.0973516 0.04313 Vertex 5162 -0.0564981 0.0973554 0.0431547 Vertex 5163 -0.0554983 0.0973521 0.0432389 Vertex 5164 -0.0544984 0.0973596 0.0432594 Vertex 5165 -0.0534968 0.0973516 0.0432358 Vertex 5166 -0.0524899 0.0973506 0.0433264 Vertex 5167 -0.051494 0.097382 0.0437255 Vertex 5168 -0.050495 0.0974075 0.0440057 Vertex 5169 -0.0494963 0.0974185 0.0440407 Vertex 5170 -0.0484974 0.0974063 0.0440017 Vertex 5171 -0.0475033 0.0973719 0.0436212 Vertex 5172 -0.0464922 0.097353 0.0431423 Vertex 5173 -0.0455017 0.0973341 0.0429686 Vertex 5174 -0.044481 0.0973337 0.0428134 Vertex 5175 -0.0435092 0.0973014 0.0425845 Vertex 5176 -0.0424946 0.0972875 0.0422451 Vertex 5177 -0.0415001 0.0972709 0.0420669 Vertex 5178 -0.0404973 0.0972715 0.0419896 Vertex 5179 -0.0395059 0.0972892 0.042147 Vertex 5180 -0.0385113 0.0973107 0.0424108 Vertex 5181 -0.0374891 0.0973119 0.0427062 Vertex 5182 -0.0364752 0.09732 0.0430461 Vertex 5183 -0.0354688 0.0973337 0.0432864 Vertex 5184 -0.0344737 0.0973629 0.0436701 Vertex 5185 -0.0335185 0.0974234 0.0440535 Vertex 5186 -0.0324865 0.0974182 0.0443398 Vertex 5187 -0.0314936 0.097435 0.044487 Vertex 5188 -0.0304964 0.0974331 0.0445755 Vertex 5189 -0.0295025 0.0974144 0.0445077 Vertex 5190 -0.0285002 0.097396 0.0440561 Vertex 5191 -0.0274965 0.0973724 0.0435854 Vertex 5192 -0.0264937 0.0973851 0.0437224 Vertex 5193 -0.0254927 0.0974122 0.0441083 Vertex 5194 -0.0286176 0.124173 0.0196508 Vertex 5195 0.0447715 0.070791 0.0233171 Vertex 5196 -0.0282629 0.122524 0.022734 Vertex 5197 0.0453129 0.0698237 0.023466 Vertex 5198 -0.0546525 0.154186 0.0155249 Vertex 5199 0.0511802 0.0687267 0.0256724 Vertex 5200 0.0461067 0.069238 0.0238359 Vertex 5201 -0.0154978 0.0977476 0.0489325 Vertex 5202 0.0423933 0.0901635 -0.00682346 Vertex 5203 -0.0931816 0.121543 0.0372829 Vertex 5204 -0.0944613 0.121476 0.0212834 Vertex 5205 -0.0493499 0.141685 0.00939558 Vertex 5206 -0.0678507 0.166619 -0.0550103 Vertex 5207 -0.00848562 0.0978428 0.0521021 Vertex 5208 -0.00748928 0.0978336 0.0520944 Vertex 5209 -0.00649249 0.0978569 0.0522238 Vertex 5210 -0.00549246 0.097843 0.0523265 Vertex 5211 -0.0623164 0.153672 -0.0306063 Vertex 5212 -0.0623115 0.16311 -0.0435951 Vertex 5213 -0.00150184 0.0978367 0.052434 Vertex 5214 0.000474346 0.0977989 0.0522897 Vertex 5215 0.00247063 0.0977635 0.0514765 Vertex 5216 0.00346471 0.0977538 0.051238 Vertex 5217 0.00446502 0.0977292 0.050995 Vertex 5218 0.00544999 0.097676 0.0507202 Vertex 5219 0.0064803 0.0977098 0.0499318 Vertex 5220 0.0074848 0.0976824 0.0494394 Vertex 5221 0.00848893 0.0976878 0.0492062 Vertex 5222 0.00948927 0.0976692 0.0490505 Vertex 5223 0.0104935 0.0976882 0.0488434 Vertex 5224 0.0114806 0.097647 0.0487825 Vertex 5225 0.012476 0.0976634 0.0485624 Vertex 5226 0.0134806 0.0976663 0.0482444 Vertex 5227 0.0144699 0.0976455 0.0479677 Vertex 5228 0.0154693 0.0976312 0.0477084 Vertex 5229 0.0164701 0.0976264 0.0474551 Vertex 5230 0.0174829 0.0976104 0.0472234 Vertex 5231 0.0184875 0.0976002 0.0470854 Vertex 5232 0.0194801 0.0975854 0.0469408 Vertex 5233 0.0204758 0.0975716 0.0468126 Vertex 5234 0.0214666 0.0975514 0.0465681 Vertex 5235 0.0224678 0.0975265 0.046211 Vertex 5236 -0.0354946 0.118017 0.0312708 Vertex 5237 -0.00249301 0.118317 0.039019 Vertex 5238 -0.076603 0.120411 0.0526033 Vertex 5239 -0.0324956 0.119317 0.0295507 Vertex 5240 -0.0754818 0.148362 0.0406222 Vertex 5241 -0.0433806 0.120699 0.0278302 Vertex 5242 0.00749727 0.121002 0.0360768 Vertex 5243 -0.0717062 0.159603 -0.040933 Vertex 5244 0.00341369 0.131576 0.0166618 Vertex 5245 0.0280038 0.120349 0.024295 Vertex 5246 -0.0649944 0.132589 -0.00831046 Vertex 5247 -0.0525045 0.159361 0.00819169 Vertex 5248 0.0130462 0.129592 0.0201813 Vertex 5249 0.0370837 0.103994 -0.00683208 Vertex 5250 -0.00244654 0.131114 0.00878185 Vertex 5251 -0.0774749 0.141413 0.0470689 Vertex 5252 -0.0424553 0.128377 0.00131486 Vertex 5253 0.0369538 0.108295 0.0261877 Vertex 5254 -0.0764958 0.131682 0.0526442 Vertex 5255 -0.0746833 0.155701 -0.000366346 Vertex 5256 -0.0264503 0.181668 -0.00853376 Vertex 5257 -0.0728912 0.11354 -0.00756484 Vertex 5258 0.00286804 0.129802 0.0250965 Vertex 5259 0.0252887 0.122228 0.0247087 Vertex 5260 -0.019615 0.127443 0.00679651 Vertex 5261 0.0185712 0.126949 0.0207922 Vertex 5262 0.0312116 0.11742 0.0240751 Vertex 5263 -0.0464485 0.132668 0.0189406 Vertex 5264 0.0187225 0.127515 0.0179893 Vertex 5265 -0.0189668 0.125144 0.0245507 Vertex 5266 -0.0641214 0.155412 0.0266328 Vertex 5267 -0.0243712 0.122748 0.0255975 Vertex 5268 -0.0785581 0.153669 0.00407716 Vertex 5269 -0.0435601 0.129686 0.00973169 Vertex 5270 -0.0459009 0.131661 0.0191601 Vertex 5271 -0.0781924 0.155673 0.0158655 Vertex 5272 -0.0741715 0.151271 -0.0318825 Vertex 5273 0.0165672 0.128654 0.015768 Vertex 5274 -0.024293 0.124271 0.0211991 Vertex 5275 -0.0712372 0.167165 -0.0209901 Vertex 5276 -0.0705221 0.098629 0.0408842 Vertex 5277 -0.0694918 0.0986232 0.041191 Vertex 5278 -0.0684985 0.0986495 0.0414678 Vertex 5279 -0.0674898 0.0986608 0.0416951 Vertex 5280 -0.0665138 0.0986787 0.0417758 Vertex 5281 -0.0655092 0.0986926 0.0420188 Vertex 5282 -0.0644854 0.0986987 0.0423063 Vertex 5283 -0.0635094 0.0987058 0.0422669 Vertex 5284 -0.0624966 0.0987153 0.0424769 Vertex 5285 -0.0614969 0.0987359 0.0427353 Vertex 5286 -0.0604873 0.0987275 0.0428004 Vertex 5287 -0.0595022 0.0987448 0.042776 Vertex 5288 -0.0585002 0.0987496 0.0428962 Vertex 5289 -0.0574975 0.0987515 0.0429871 Vertex 5290 -0.0564971 0.0987696 0.0431638 Vertex 5291 -0.0555018 0.0987713 0.0432834 Vertex 5292 -0.0544751 0.0987674 0.042954 Vertex 5293 -0.0534996 0.0987387 0.0427565 Vertex 5294 -0.0524927 0.0987339 0.0429361 Vertex 5295 -0.0514869 0.0987554 0.0433116 Vertex 5296 -0.050497 0.0987878 0.0435099 Vertex 5297 -0.0494959 0.0988033 0.0435442 Vertex 5298 -0.0484961 0.0987927 0.0435149 Vertex 5299 -0.0474987 0.0987688 0.0431343 Vertex 5300 -0.0464941 0.0987388 0.0427545 Vertex 5301 -0.0454908 0.0987379 0.0426533 Vertex 5302 -0.044494 0.0987314 0.042632 Vertex 5303 -0.043484 0.0987241 0.0424341 Vertex 5304 -0.0425023 0.0986936 0.0421906 Vertex 5305 -0.0414965 0.0986758 0.0418571 Vertex 5306 -0.0404977 0.0986657 0.0417206 Vertex 5307 -0.0395091 0.0986823 0.0417741 Vertex 5308 -0.0385061 0.0986889 0.0419871 Vertex 5309 -0.0375032 0.0987213 0.042382 Vertex 5310 -0.0364954 0.0987325 0.0427313 Vertex 5311 -0.0354848 0.0987251 0.0428224 Vertex 5312 -0.0344901 0.0987486 0.043091 Vertex 5313 -0.0334818 0.0987718 0.0435747 Vertex 5314 -0.0325019 0.0988116 0.0438807 Vertex 5315 -0.0314884 0.0988001 0.0440684 Vertex 5316 -0.030496 0.0988081 0.0439786 Vertex 5317 -0.0295082 0.0987895 0.0437091 Vertex 5318 -0.028491 0.0987621 0.0434122 Vertex 5319 -0.0275028 0.0988006 0.0435593 Vertex 5320 -0.0264937 0.098817 0.0439871 Vertex 5321 -0.025483 0.0988427 0.0444451 Vertex 5322 -0.0244818 0.0988555 0.0446892 Vertex 5323 -0.0234982 0.0988724 0.0447778 Vertex 5324 -0.0224928 0.0988548 0.044702 Vertex 5325 -0.021497 0.0988475 0.0444941 Vertex 5326 -0.0470246 0.133586 0.0187098 Vertex 5327 -0.0844521 0.153452 0.0225801 Vertex 5328 0.00787676 0.127927 0.0283381 Vertex 5329 -0.0655006 0.155906 0.0116223 Vertex 5330 0.0503042 0.0691243 0.0253774 Vertex 5331 -0.0409656 0.122163 0.0270528 Vertex 5332 -0.0853725 0.111782 0.0273822 Vertex 5333 -0.0875766 0.122583 -0.000713178 Vertex 5334 -0.0934477 0.121479 0.0262963 Vertex 5335 0.0441667 0.0973563 0.00616912 Vertex 5336 -0.0642915 0.169488 -0.0607786 Vertex 5337 -0.0875779 0.102333 0.0213648 Vertex 5338 -0.0781864 0.161095 -0.0229348 Vertex 5339 -0.0794888 0.111206 0.0453002 Vertex 5340 -0.0748963 0.0690517 0.0244939 Vertex 5341 -0.0106577 0.165418 -0.0198106 Vertex 5342 -0.063271 0.158522 -0.0165888 Vertex 5343 -0.062316 0.158431 -0.019584 Vertex 5344 -0.00921165 0.172686 -0.0275682 Vertex 5345 0.0448613 0.0903726 0.0191701 Vertex 5346 -0.0513173 0.146268 0.0144074 Vertex 5347 -0.0896848 0.0929338 0.0144339 Vertex 5348 0.0034577 0.0989815 0.0493164 Vertex 5349 0.00448398 0.0989824 0.0487111 Vertex 5350 0.00550054 0.0990386 0.0482677 Vertex 5351 0.00650478 0.0989998 0.0481043 Vertex 5352 0.00750734 0.0990008 0.0480837 Vertex 5353 0.00850898 0.0990197 0.0481875 Vertex 5354 0.00950564 0.0990636 0.0482467 Vertex 5355 0.0105224 0.0990052 0.0483243 Vertex 5356 0.0114933 0.0990667 0.0482243 Vertex 5357 0.012486 0.0990688 0.0481132 Vertex 5358 0.0134754 0.0990564 0.0479483 Vertex 5359 0.0144891 0.0990552 0.047648 Vertex 5360 0.0154871 0.0990335 0.0473819 Vertex 5361 0.0164968 0.0990289 0.0471605 Vertex 5362 0.0174821 0.0990004 0.0469682 Vertex 5363 0.018473 0.0989902 0.0468145 Vertex 5364 0.0194854 0.0989751 0.0466096 Vertex 5365 0.0214637 0.0989203 0.04607 Vertex 5366 -0.0364985 0.117968 0.0313259 Vertex 5367 -0.00149237 0.118319 0.0391398 Vertex 5368 0.00842909 0.131472 0.01278 Vertex 5369 -0.0861949 0.139089 0.00320204 Vertex 5370 -0.000497737 0.11557 0.0407823 Vertex 5371 -0.0423644 0.120691 0.0280931 Vertex 5372 0.00650273 0.121045 0.0359095 Vertex 5373 0.0400623 0.0956447 -0.00679711 Vertex 5374 -0.019377 0.127678 0.00978651 Vertex 5375 0.0414332 0.100023 0.0231582 Vertex 5376 -0.0717668 0.172238 -0.0510285 Vertex 5377 -0.0515046 0.159378 0.00834015 Vertex 5378 -0.0345217 0.127119 0.00425139 Vertex 5379 -0.0725117 0.163674 -0.014076 Vertex 5380 -0.0722654 0.153589 0.032663 Vertex 5381 0.0451235 0.093189 0.0121575 Vertex 5382 -0.0563767 0.0650155 0.0336358 Vertex 5383 -0.0619803 0.153737 -0.02558 Vertex 5384 -0.0745149 0.121791 0.0533186 Vertex 5385 0.0382636 0.109749 0.0121659 Vertex 5386 -0.0498185 0.0927102 -0.0215416 Vertex 5387 -0.04783 0.0927226 -0.0216222 Vertex 5388 -0.0468295 0.0927337 -0.0216687 Vertex 5389 0.00188261 0.129936 0.0247306 Vertex 5390 0.0260062 0.121547 0.0249766 Vertex 5391 -0.0208041 0.127131 0.0063587 Vertex 5392 0.0193916 0.12656 0.0211758 Vertex 5393 0.0305485 0.118199 0.0238252 Vertex 5394 -0.0695537 0.163673 -0.0146023 Vertex 5395 0.0170321 0.128388 0.0173658 Vertex 5396 0.0178664 0.127935 0.017674 Vertex 5397 -0.000572916 0.131478 0.0109076 Vertex 5398 -0.00171604 0.131316 0.0104838 Vertex 5399 -0.00281159 0.131227 0.0100802 Vertex 5400 -0.00395268 0.131078 0.00966125 Vertex 5401 -0.00521852 0.130779 0.0091953 Vertex 5402 -0.00636015 0.130593 0.00877385 Vertex 5403 -0.0113055 0.0991708 0.0485876 Vertex 5404 -0.0351946 0.125334 -0.00338173 Vertex 5405 0.0174435 0.128281 0.0160914 Vertex 5406 -0.0231537 0.124452 0.0216177 Vertex 5407 -0.0694874 0.100005 0.0406788 Vertex 5408 -0.0685089 0.100042 0.0409867 Vertex 5409 -0.067492 0.10005 0.0413205 Vertex 5410 -0.0665225 0.10009 0.04154 Vertex 5411 -0.0654981 0.100096 0.041968 Vertex 5412 -0.0644984 0.100116 0.0422372 Vertex 5413 -0.0635064 0.100118 0.0422551 Vertex 5414 -0.0624922 0.100117 0.0423224 Vertex 5415 -0.061495 0.100138 0.0425963 Vertex 5416 -0.0604937 0.100137 0.0425915 Vertex 5417 -0.0594966 0.100149 0.0427407 Vertex 5418 -0.0584986 0.100161 0.0428821 Vertex 5419 -0.0574972 0.100168 0.0430053 Vertex 5420 -0.0564969 0.100177 0.0431307 Vertex 5421 -0.0554937 0.100184 0.0430705 Vertex 5422 -0.0544965 0.100156 0.0427594 Vertex 5423 -0.0534975 0.100135 0.0423919 Vertex 5424 -0.0524987 0.100127 0.0423619 Vertex 5425 -0.0515005 0.100157 0.0426446 Vertex 5426 -0.0505003 0.100168 0.042883 Vertex 5427 -0.0494962 0.100168 0.0429965 Vertex 5428 -0.0484978 0.100158 0.0428666 Vertex 5429 -0.0474967 0.100136 0.0424923 Vertex 5430 -0.0464942 0.100125 0.0422537 Vertex 5431 -0.0454881 0.10014 0.0423159 Vertex 5432 -0.0444966 0.100126 0.0423688 Vertex 5433 -0.0434795 0.10013 0.0422114 Vertex 5434 -0.0424925 0.100104 0.042001 Vertex 5435 -0.0414824 0.100082 0.0415393 Vertex 5436 -0.0404973 0.10005 0.041322 Vertex 5437 -0.0395001 0.100068 0.0413695 Vertex 5438 -0.0384976 0.100064 0.0415702 Vertex 5439 -0.0374845 0.100078 0.0419234 Vertex 5440 -0.0364875 0.100095 0.0421869 Vertex 5441 -0.0355126 0.10012 0.0421792 Vertex 5442 -0.0344858 0.100109 0.0424402 Vertex 5443 -0.0334786 0.100129 0.0429194 Vertex 5444 -0.0324893 0.100164 0.0432113 Vertex 5445 -0.0315045 0.100214 0.0434156 Vertex 5446 -0.0305006 0.100206 0.0434038 Vertex 5447 -0.0294996 0.100187 0.0432585 Vertex 5448 -0.0284889 0.100156 0.0431683 Vertex 5449 -0.0274963 0.100194 0.0434874 Vertex 5450 -0.0264896 0.100224 0.0439794 Vertex 5451 -0.0254848 0.100235 0.0442056 Vertex 5452 -0.0244887 0.100244 0.0443393 Vertex 5453 -0.0234958 0.100256 0.0443804 Vertex 5454 -0.0224965 0.100254 0.0443771 Vertex 5455 -0.0214986 0.100246 0.0444424 Vertex 5456 -0.0204991 0.100239 0.044421 Vertex 5457 -0.0184988 0.100234 0.0438197 Vertex 5458 -0.0175006 0.10024 0.0438179 Vertex 5459 -0.0145298 0.100345 0.0444168 Vertex 5460 -0.0629867 0.155807 0.0241223 Vertex 5461 -0.0115592 0.100495 0.0448823 Vertex 5462 -0.0105339 0.100499 0.0452584 Vertex 5463 -0.00945074 0.100225 0.0471086 Vertex 5464 -0.00845767 0.100229 0.0476033 Vertex 5465 -0.0700395 0.077854 0.0390736 Vertex 5466 -0.0902184 0.117255 0.00530427 Vertex 5467 -0.0896451 0.11724 0.00430849 Vertex 5468 -0.0515285 0.144709 0.0153879 Vertex 5469 0.0376089 0.108292 0.000165208 Vertex 5470 -0.0882673 0.102346 0.019362 Vertex 5471 0.0456785 0.0862046 0.0141695 Vertex 5472 -0.0334865 0.126881 0.00753677 Vertex 5473 0.0420248 0.0845075 -0.00777453 Vertex 5474 0.00250457 0.100333 0.0462614 Vertex 5475 0.00351386 0.100332 0.0462561 Vertex 5476 0.00451352 0.10035 0.0463879 Vertex 5477 0.00553763 0.100304 0.04669 Vertex 5478 0.0065365 0.100373 0.0469448 Vertex 5479 0.00754987 0.100371 0.0472771 Vertex 5480 0.00853944 0.100396 0.0475311 Vertex 5481 0.00951942 0.100425 0.0477045 Vertex 5482 0.0105108 0.100431 0.0479236 Vertex 5483 0.0115006 0.100446 0.0479384 Vertex 5484 0.0124861 0.100431 0.0478938 Vertex 5485 0.0134789 0.100443 0.0476777 Vertex 5486 0.014479 0.100435 0.047468 Vertex 5487 0.0154605 0.100515 0.0471558 Vertex 5488 0.0164934 0.100411 0.0468922 Vertex 5489 0.0174821 0.10039 0.0467276 Vertex 5490 0.0184753 0.100361 0.0464541 Vertex 5491 -0.0714963 0.118989 0.0533881 Vertex 5492 -0.0374964 0.118015 0.0312717 Vertex 5493 -0.000498349 0.118323 0.0391474 Vertex 5494 -0.0259323 0.124597 0.000115117 Vertex 5495 0.0423459 0.0915624 -0.00580854 Vertex 5496 0.0349174 0.110993 0.0268865 Vertex 5497 -0.0414986 0.120686 0.028403 Vertex 5498 0.00550248 0.121034 0.0357708 Vertex 5499 -0.0802651 0.0963563 -0.00854135 Vertex 5500 -0.00717802 0.130589 0.0142265 Vertex 5501 -0.0761869 0.149999 -0.0118749 Vertex 5502 0.0396966 0.105593 0.0211678 Vertex 5503 -0.0494961 0.159354 0.00844009 Vertex 5504 -0.0300028 0.125562 0.00590559 Vertex 5505 -0.0679568 0.13115 -0.00879393 Vertex 5506 0.0266539 0.122169 0.0209401 Vertex 5507 0.040054 0.0998936 -0.00479776 Vertex 5508 -0.0783661 0.108548 -0.00557568 Vertex 5509 -0.025156 0.16972 -0.0189618 Vertex 5510 -0.044533 0.160785 0.0064482 Vertex 5511 -0.083008 0.154405 0.0171359 Vertex 5512 -0.0188353 0.12777 0.00853266 Vertex 5513 -0.0738828 0.103582 -0.0116089 Vertex 5514 -0.0713665 0.156324 0.018248 Vertex 5515 -0.0746893 0.154119 0.0302893 Vertex 5516 0.0267259 0.120866 0.0252428 Vertex 5517 -0.0221189 0.12668 0.005878 Vertex 5518 0.0203176 0.126182 0.0214303 Vertex 5519 0.0298839 0.118971 0.0235707 Vertex 5520 -0.068723 0.163208 -0.0142948 Vertex 5521 -0.0666208 0.161046 -0.0135117 Vertex 5522 -0.0660228 0.160133 -0.0132914 Vertex 5523 -0.0653912 0.159256 -0.0130566 Vertex 5524 -0.0647237 0.158466 -0.0128094 Vertex 5525 -0.0641628 0.157463 -0.0125984 Vertex 5526 -0.0636347 0.156368 -0.0124044 Vertex 5527 -0.079254 0.149169 0.0379325 Vertex 5528 -0.0636022 0.151642 0.0357576 Vertex 5529 -0.00750341 0.130405 0.00835201 Vertex 5530 -0.0735439 0.101276 0.0379813 Vertex 5531 -0.0725318 0.101313 0.038599 Vertex 5532 -0.0714995 0.101334 0.0391804 Vertex 5533 -0.0704991 0.101365 0.0396906 Vertex 5534 -0.0694928 0.101384 0.0400561 Vertex 5535 -0.0685022 0.101419 0.0404594 Vertex 5536 -0.0674677 0.10143 0.0408399 Vertex 5537 -0.0664999 0.101466 0.0412188 Vertex 5538 -0.0654857 0.101487 0.0416824 Vertex 5539 -0.0644855 0.101502 0.0419335 Vertex 5540 -0.0634892 0.101502 0.0420523 Vertex 5541 -0.0624918 0.101519 0.0421076 Vertex 5542 -0.0614982 0.101529 0.0422258 Vertex 5543 -0.0604928 0.101522 0.0423039 Vertex 5544 -0.0594971 0.101543 0.0424741 Vertex 5545 -0.058497 0.101559 0.0426268 Vertex 5546 -0.0574971 0.10156 0.0427298 Vertex 5547 -0.0564976 0.101562 0.0427397 Vertex 5548 -0.0554957 0.10156 0.042627 Vertex 5549 -0.0544907 0.101557 0.0424048 Vertex 5550 -0.0534909 0.101517 0.0419949 Vertex 5551 -0.0524991 0.101502 0.0417298 Vertex 5552 -0.0514967 0.101534 0.0419051 Vertex 5553 -0.0504989 0.101536 0.0421291 Vertex 5554 -0.0494967 0.101524 0.042218 Vertex 5555 -0.0484979 0.101507 0.0419588 Vertex 5556 -0.0474968 0.101477 0.0417865 Vertex 5557 -0.0464984 0.101529 0.041912 Vertex 5558 -0.045498 0.101529 0.0420301 Vertex 5559 -0.0444896 0.101534 0.0420576 Vertex 5560 -0.0434907 0.101526 0.0420227 Vertex 5561 -0.0424766 0.101515 0.0416909 Vertex 5562 -0.0414689 0.101488 0.0411988 Vertex 5563 -0.0404908 0.101464 0.0408992 Vertex 5564 -0.0395435 0.101505 0.0409276 Vertex 5565 -0.0384966 0.101445 0.0410637 Vertex 5566 -0.037499 0.101465 0.0412127 Vertex 5567 -0.0365021 0.101484 0.0413625 Vertex 5568 -0.0354939 0.101471 0.0414493 Vertex 5569 -0.0345053 0.101515 0.0417518 Vertex 5570 -0.0335134 0.101547 0.0420338 Vertex 5571 -0.032501 0.101545 0.0423652 Vertex 5572 -0.0315011 0.101567 0.0426346 Vertex 5573 -0.0304972 0.101559 0.0427282 Vertex 5574 -0.0294883 0.101537 0.0426799 Vertex 5575 -0.0284917 0.101554 0.0428228 Vertex 5576 -0.0274913 0.101587 0.0432231 Vertex 5577 -0.0264818 0.101588 0.0434387 Vertex 5578 -0.0254901 0.101602 0.0435889 Vertex 5579 -0.0244911 0.101622 0.043846 Vertex 5580 -0.0234977 0.101642 0.0439992 Vertex 5581 -0.0224957 0.101642 0.0440993 Vertex 5582 -0.0214966 0.101664 0.0441706 Vertex 5583 -0.0204813 0.10165 0.0438784 Vertex 5584 -0.0194973 0.101611 0.0435898 Vertex 5585 -0.0184976 0.101625 0.0435583 Vertex 5586 -0.0174971 0.101623 0.0437353 Vertex 5587 -0.0154952 0.101637 0.0439764 Vertex 5588 -0.0144882 0.101623 0.0437286 Vertex 5589 -0.0639777 0.155958 0.0237716 Vertex 5590 -0.0375331 0.127856 0.0134298 Vertex 5591 -0.0114996 0.101652 0.0440245 Vertex 5592 -0.0104849 0.101611 0.0440429 Vertex 5593 -0.00949559 0.10164 0.0439977 Vertex 5594 -0.00850157 0.101663 0.0440465 Vertex 5595 -0.00749507 0.10164 0.0441128 Vertex 5596 -0.0243325 0.126263 0.00798048 Vertex 5597 -0.0879259 0.102339 0.0203636 Vertex 5598 -0.0314789 0.174225 -0.0034609 Vertex 5599 -0.00248889 0.101618 0.0440339 Vertex 5600 -0.00049849 0.101653 0.0443576 Vertex 5601 0.000516492 0.101662 0.0444028 Vertex 5602 0.00150087 0.101618 0.0443156 Vertex 5603 0.00250961 0.101617 0.0444387 Vertex 5604 0.00352724 0.10161 0.0446753 Vertex 5605 0.00459507 0.101613 0.0450146 Vertex 5606 0.00557978 0.101599 0.0456072 Vertex 5607 0.00656148 0.101677 0.0461619 Vertex 5608 0.00755739 0.101711 0.046537 Vertex 5609 0.00854504 0.101743 0.0468013 Vertex 5610 0.00953649 0.101759 0.0470503 Vertex 5611 0.0105239 0.101777 0.0472989 Vertex 5612 0.0115087 0.101793 0.0474223 Vertex 5613 0.0124903 0.101789 0.047403 Vertex 5614 0.0134882 0.101805 0.0472084 Vertex 5615 0.0144842 0.101799 0.0469727 Vertex 5616 0.0154718 0.101771 0.0468044 Vertex 5617 0.0164832 0.101772 0.0464774 Vertex 5618 0.0174757 0.101745 0.0462033 Vertex 5619 0.0184783 0.101734 0.0458501 Vertex 5620 -0.070489 0.118975 0.0531649 Vertex 5621 -0.0384962 0.11803 0.0312871 Vertex 5622 0.000494108 0.118289 0.0391022 Vertex 5623 -0.0558701 0.154311 0.0223113 Vertex 5624 -0.0615062 0.158429 -0.0265894 Vertex 5625 0.0174985 0.119533 0.0343583 Vertex 5626 -0.0395098 0.12077 0.029092 Vertex 5627 -0.040502 0.120714 0.028794 Vertex 5628 0.0045004 0.121001 0.0358516 Vertex 5629 0.0438124 0.093116 0.0231537 Vertex 5630 -0.00832508 0.130422 0.0138058 Vertex 5631 -0.0906044 0.135075 0.015212 Vertex 5632 0.0376787 0.105425 -0.00281358 Vertex 5633 -0.0475108 0.159316 0.00812402 Vertex 5634 -0.0230844 0.126658 0.00843513 Vertex 5635 -0.0735166 0.141431 0.0469479 Vertex 5636 -0.0581679 0.154986 0.022946 Vertex 5637 0.0399446 0.107028 0.0121641 Vertex 5638 -0.0694805 0.121794 0.053195 Vertex 5639 -0.0454954 0.160804 0.00677344 Vertex 5640 -0.0404194 0.128239 0.00205017 Vertex 5641 0.0415141 0.104253 0.009162 Vertex 5642 0.00484292 0.129473 0.025811 Vertex 5643 0.0274448 0.120188 0.0255104 Vertex 5644 -0.0233682 0.126286 0.00541909 Vertex 5645 0.028716 0.119662 0.0245591 Vertex 5646 0.0284808 0.120403 0.0230436 Vertex 5647 0.0292004 0.119729 0.0233163 Vertex 5648 0.0122214 0.13032 0.0170232 Vertex 5649 0.0112951 0.130595 0.0166808 Vertex 5650 0.00749212 0.131495 0.0152913 Vertex 5651 0.00337546 0.131746 0.0137901 Vertex 5652 0.00228726 0.131702 0.0133903 Vertex 5653 0.00113903 0.131571 0.0129682 Vertex 5654 -1.32571e-05 0.13145 0.0125463 Vertex 5655 -0.00110521 0.131378 0.0121444 Vertex 5656 -0.0735157 0.102656 0.0375574 Vertex 5657 -0.0725057 0.102685 0.0380563 Vertex 5658 -0.0715304 0.102729 0.03849 Vertex 5659 -0.0705068 0.102745 0.0389474 Vertex 5660 -0.069508 0.102769 0.0393316 Vertex 5661 -0.0684959 0.10279 0.039811 Vertex 5662 -0.0674901 0.102816 0.040307 Vertex 5663 -0.0664983 0.102849 0.0407048 Vertex 5664 -0.0654906 0.102864 0.0410679 Vertex 5665 -0.0644897 0.102874 0.0413067 Vertex 5666 -0.0634945 0.102894 0.0414572 Vertex 5667 -0.0624968 0.102902 0.0415908 Vertex 5668 -0.0614963 0.102908 0.0417081 Vertex 5669 -0.0604933 0.102915 0.04183 Vertex 5670 -0.0594982 0.10293 0.0419773 Vertex 5671 -0.0584972 0.102936 0.0420973 Vertex 5672 -0.0574928 0.102919 0.0421703 Vertex 5673 -0.0564947 0.102955 0.042036 Vertex 5674 -0.0554949 0.102938 0.0419937 Vertex 5675 -0.0545067 0.102902 0.0418134 Vertex 5676 -0.0534903 0.102908 0.0413848 Vertex 5677 -0.0524988 0.102874 0.0411998 Vertex 5678 -0.0514978 0.10289 0.0412322 Vertex 5679 -0.050498 0.10288 0.0412159 Vertex 5680 -0.0494983 0.102885 0.0411106 Vertex 5681 -0.0485018 0.102883 0.0409949 Vertex 5682 -0.0474986 0.102884 0.0412273 Vertex 5683 -0.0464961 0.102903 0.0415914 Vertex 5684 -0.0454999 0.102932 0.0417867 Vertex 5685 -0.0444956 0.102933 0.0417949 Vertex 5686 -0.0434867 0.102921 0.0416521 Vertex 5687 -0.0424989 0.102887 0.0413486 Vertex 5688 -0.0414756 0.102877 0.0407886 Vertex 5689 -0.0404787 0.102851 0.0403978 Vertex 5690 -0.0394926 0.102848 0.0402648 Vertex 5691 -0.0384978 0.102835 0.0403416 Vertex 5692 -0.0375028 0.102851 0.0403695 Vertex 5693 -0.036497 0.102841 0.0405772 Vertex 5694 -0.0355052 0.102861 0.0407303 Vertex 5695 -0.0345002 0.10287 0.040969 Vertex 5696 -0.0334924 0.102881 0.0413291 Vertex 5697 -0.0325014 0.102916 0.0416129 Vertex 5698 -0.0314971 0.102929 0.041974 Vertex 5699 -0.0304987 0.10293 0.0419798 Vertex 5700 -0.0294922 0.102919 0.0420695 Vertex 5701 -0.0284862 0.102933 0.0423265 Vertex 5702 -0.0274957 0.102963 0.0425886 Vertex 5703 -0.0264895 0.102963 0.0427118 Vertex 5704 -0.0255027 0.103002 0.0430099 Vertex 5705 -0.0244921 0.103004 0.0433541 Vertex 5706 -0.0234913 0.103006 0.0434545 Vertex 5707 -0.0224982 0.103036 0.0436276 Vertex 5708 -0.021496 0.103017 0.0435858 Vertex 5709 -0.0204954 0.103009 0.0433484 Vertex 5710 -0.0194977 0.103001 0.0433214 Vertex 5711 -0.0184974 0.103009 0.0434402 Vertex 5712 -0.0174974 0.103031 0.0436129 Vertex 5713 -0.0164922 0.103019 0.043564 Vertex 5714 -0.0155006 0.103015 0.0432792 Vertex 5715 -0.0777065 0.155692 0.0145746 Vertex 5716 -0.0114889 0.103024 0.0436761 Vertex 5717 -0.0105008 0.103039 0.0436514 Vertex 5718 -0.00949715 0.103034 0.0436292 Vertex 5719 -0.00849121 0.103027 0.0437022 Vertex 5720 -0.00849418 0.114178 0.0409373 Vertex 5721 -0.005498 0.103045 0.0437796 Vertex 5722 -0.0908456 0.137855 0.0191944 Vertex 5723 -0.0034944 0.103046 0.0439357 Vertex 5724 -0.0024963 0.10305 0.0439671 Vertex 5725 -0.000403311 0.102922 0.0441774 Vertex 5726 0.000496502 0.103028 0.0440499 Vertex 5727 0.00149085 0.103013 0.043912 Vertex 5728 0.00251006 0.102973 0.0437486 Vertex 5729 0.00350742 0.103001 0.0436938 Vertex 5730 0.0045298 0.102977 0.0440255 Vertex 5731 0.00555478 0.102979 0.0445124 Vertex 5732 0.00659654 0.102942 0.0449664 Vertex 5733 0.00755707 0.10303 0.0452955 Vertex 5734 0.00853656 0.103079 0.0455737 Vertex 5735 0.00953694 0.103082 0.0459273 Vertex 5736 0.0105328 0.103079 0.0462759 Vertex 5737 0.011514 0.10312 0.0464311 Vertex 5738 0.0125017 0.103142 0.0463418 Vertex 5739 0.0134949 0.103141 0.0462202 Vertex 5740 0.0144787 0.103102 0.0461637 Vertex 5741 0.015477 0.103104 0.045929 Vertex 5742 0.0164745 0.103092 0.0456772 Vertex 5743 0.0174805 0.103096 0.0453391 Vertex 5744 -0.0694829 0.118967 0.0529378 Vertex 5745 -0.039498 0.118035 0.0314 Vertex 5746 0.00149573 0.118307 0.0388892 Vertex 5747 -0.0196334 0.0906851 0.0545345 Vertex 5748 0.0456174 0.0890068 0.0121612 Vertex 5749 0.0164933 0.119532 0.0345952 Vertex 5750 -0.0385 0.120755 0.0293207 Vertex 5751 0.00248882 0.121002 0.0363406 Vertex 5752 0.00349445 0.12099 0.0360851 Vertex 5753 0.0440466 0.0931306 0.0221521 Vertex 5754 -0.0646486 0.156189 0.0162701 Vertex 5755 0.0390432 0.106963 0.0211652 Vertex 5756 -0.0455037 0.159315 0.00726546 Vertex 5757 0.0366967 0.103968 -0.00783268 Vertex 5758 0.0330999 0.114889 0.024788 Vertex 5759 -0.0425011 0.163766 0.00491011 Vertex 5760 -0.0524893 0.156469 0.0106374 Vertex 5761 -0.0246171 0.125897 0.00496292 Vertex 5762 -0.0465076 0.160794 0.0071118 Vertex 5763 -0.0846404 0.107661 0.0233457 Vertex 5764 0.0426813 0.101508 0.00916223 Vertex 5765 -0.0770892 0.107143 -0.00760422 Vertex 5766 -0.0624902 0.155293 -0.0145941 Vertex 5767 -0.0626337 0.149615 -0.00617193 Vertex 5768 0.000752728 0.131478 0.01712 Vertex 5769 -0.0340325 0.126267 0.001455 Vertex 5770 0.0343769 0.112004 0.0266888 Vertex 5771 0.00352334 0.12519 0.0325857 Vertex 5772 -0.0371379 0.127502 0.0150528 Vertex 5773 -0.0687869 0.155336 0.00316719 Vertex 5774 -0.0541815 0.15229 0.0244282 Vertex 5775 -0.0700918 0.147968 0.0410511 Vertex 5776 -0.00159432 0.129182 0.0263815 Vertex 5777 -0.0263102 0.123352 0.021955 Vertex 5778 -0.025212 0.123605 0.0223303 Vertex 5779 -0.080116 0.153024 0.0299773 Vertex 5780 -0.0262234 0.119963 0.0294562 Vertex 5781 -0.073517 0.104058 0.0373151 Vertex 5782 -0.072512 0.104082 0.0376881 Vertex 5783 -0.0715096 0.1041 0.0379435 Vertex 5784 -0.0704953 0.104114 0.0382884 Vertex 5785 -0.069489 0.104131 0.0386578 Vertex 5786 -0.0684894 0.104161 0.0391613 Vertex 5787 -0.0675079 0.104205 0.0395869 Vertex 5788 -0.0665048 0.104229 0.0399675 Vertex 5789 -0.0654948 0.104238 0.0403184 Vertex 5790 -0.064492 0.104249 0.0405622 Vertex 5791 -0.0634932 0.104261 0.0408123 Vertex 5792 -0.0624989 0.104282 0.0409609 Vertex 5793 -0.0614955 0.104283 0.0410789 Vertex 5794 -0.0604949 0.104288 0.0411949 Vertex 5795 -0.0594968 0.104294 0.0413247 Vertex 5796 -0.0584961 0.104303 0.041452 Vertex 5797 -0.0574974 0.104327 0.0414929 Vertex 5798 -0.0564955 0.104323 0.0414899 Vertex 5799 -0.0554936 0.104327 0.041387 Vertex 5800 -0.0544985 0.104295 0.0412117 Vertex 5801 -0.053491 0.104292 0.0408761 Vertex 5802 -0.0525009 0.104252 0.0406803 Vertex 5803 -0.05149 0.104281 0.0405196 Vertex 5804 -0.0504976 0.104261 0.040368 Vertex 5805 -0.0494985 0.104247 0.040228 Vertex 5806 -0.0485021 0.104259 0.0404773 Vertex 5807 -0.0474986 0.104275 0.0408376 Vertex 5808 -0.0464999 0.104301 0.0412272 Vertex 5809 -0.0455034 0.104326 0.041412 Vertex 5810 -0.0444951 0.104328 0.0415155 Vertex 5811 -0.0434909 0.104315 0.0413728 Vertex 5812 -0.0424777 0.104302 0.0409096 Vertex 5813 -0.0414667 0.104283 0.0404247 Vertex 5814 -0.0404701 0.104257 0.0399236 Vertex 5815 -0.0394918 0.104211 0.0396007 Vertex 5816 -0.0384968 0.104212 0.0394832 Vertex 5817 -0.0375024 0.104216 0.0394845 Vertex 5818 -0.0365049 0.10423 0.0397359 Vertex 5819 -0.035507 0.104243 0.0399833 Vertex 5820 -0.0345088 0.104256 0.0402356 Vertex 5821 -0.033511 0.104273 0.0404948 Vertex 5822 -0.032502 0.104286 0.0408563 Vertex 5823 -0.0314961 0.10429 0.0412052 Vertex 5824 -0.0304932 0.104292 0.0413193 Vertex 5825 -0.0294961 0.104302 0.0413374 Vertex 5826 -0.0284959 0.10431 0.0415782 Vertex 5827 -0.0275054 0.104339 0.0416271 Vertex 5828 -0.0264983 0.10435 0.041876 Vertex 5829 -0.0255119 0.104394 0.0424048 Vertex 5830 -0.024481 0.104364 0.0426891 Vertex 5831 -0.0234882 0.104381 0.0428298 Vertex 5832 -0.0225002 0.104414 0.0430095 Vertex 5833 -0.0214963 0.104399 0.0429755 Vertex 5834 -0.0204972 0.104391 0.0429524 Vertex 5835 -0.0194977 0.104404 0.0429832 Vertex 5836 -0.0184963 0.10441 0.0431068 Vertex 5837 -0.0174973 0.104415 0.0431217 Vertex 5838 -0.0165146 0.104417 0.0427511 Vertex 5839 -0.015495 0.104397 0.0428489 Vertex 5840 -0.0144964 0.104421 0.0432413 Vertex 5841 -0.0134852 0.104433 0.0435318 Vertex 5842 -0.0124899 0.104431 0.0434394 Vertex 5843 -0.0114934 0.104435 0.0434539 Vertex 5844 -0.0104909 0.104437 0.0435533 Vertex 5845 -0.00949024 0.104446 0.0436658 Vertex 5846 -0.00849151 0.104452 0.0437135 Vertex 5847 -0.0074894 0.104457 0.0437929 Vertex 5848 -0.00649181 0.104468 0.0439265 Vertex 5849 -0.00549064 0.104476 0.0440202 Vertex 5850 -0.00449341 0.104477 0.0440393 Vertex 5851 -0.00349833 0.104479 0.0440938 Vertex 5852 -0.00250245 0.104479 0.0441797 Vertex 5853 -0.000520242 0.104454 0.0440018 Vertex 5854 0.000480507 0.104429 0.0436509 Vertex 5855 0.00148921 0.104407 0.0433078 Vertex 5856 0.00248615 0.104372 0.0430232 Vertex 5857 0.00350126 0.104382 0.0428343 Vertex 5858 0.0045048 0.104341 0.0428855 Vertex 5859 0.00551162 0.104351 0.0429177 Vertex 5860 0.00652621 0.104352 0.0432895 Vertex 5861 0.00753436 0.104363 0.0436686 Vertex 5862 0.00854197 0.104373 0.044167 Vertex 5863 0.00953036 0.10442 0.0445691 Vertex 5864 0.0105211 0.104445 0.0448284 Vertex 5865 0.0115122 0.104463 0.0449641 Vertex 5866 0.0125066 0.10443 0.0450477 Vertex 5867 0.0134975 0.104436 0.0449316 Vertex 5868 0.0144923 0.104443 0.0448169 Vertex 5869 0.0154936 0.104462 0.0445958 Vertex 5870 0.0164747 0.104398 0.044527 Vertex 5871 0.0174704 0.1044 0.0442882 Vertex 5872 0.0184737 0.104403 0.0439338 Vertex 5873 0.00248872 0.118285 0.0387448 Vertex 5874 -0.0371914 0.175481 -0.00856986 Vertex 5875 -0.0895362 0.119938 0.00329723 Vertex 5876 0.0155029 0.119565 0.0348769 Vertex 5877 -0.0374965 0.120729 0.0294163 Vertex 5878 0.00148883 0.121012 0.0365952 Vertex 5879 0.0440384 0.0959414 0.0171588 Vertex 5880 0.0443256 0.0931523 0.0201621 Vertex 5881 -0.0494861 0.156424 0.00985611 Vertex 5882 -0.0185094 0.114097 0.0385959 Vertex 5883 0.039324 0.106993 0.0191699 Vertex 5884 0.0381223 0.106958 0.0251953 Vertex 5885 -0.00617289 0.130741 0.0117189 Vertex 5886 0.032957 0.115724 0.0233075 Vertex 5887 -0.0843669 0.106153 0.00138874 Vertex 5888 -0.074494 0.126019 0.0529923 Vertex 5889 -0.0749499 0.112554 -0.00662315 Vertex 5890 -0.0414976 0.113906 0.0346806 Vertex 5891 -0.0484985 0.160789 0.00748776 Vertex 5892 0.0296208 0.115866 0.0291818 Vertex 5893 -0.0404915 0.113924 0.0347061 Vertex 5894 -0.0795038 0.127439 0.0531413 Vertex 5895 -0.0510947 0.138549 0.00140254 Vertex 5896 -0.0629502 0.151043 -0.0063137 Vertex 5897 0.00282967 0.131401 0.0178813 Vertex 5898 -0.0349236 0.126603 0.0011375 Vertex 5899 -0.0276983 0.125752 0.00966815 Vertex 5900 -0.0264982 0.125984 0.010106 Vertex 5901 -0.0780329 0.155476 0.0217657 Vertex 5902 -0.0771836 0.152278 0.0340017 Vertex 5903 -0.0708829 0.156323 0.0169624 Vertex 5904 0.0112412 0.122679 0.0339481 Vertex 5905 -0.0407158 0.171931 -0.00126808 Vertex 5906 0.0177023 0.127344 0.0204737 Vertex 5907 -0.0678163 0.0866062 -0.0177767 Vertex 5908 -0.0668006 0.086643 -0.0182518 Vertex 5909 -0.0735555 0.105459 0.0371635 Vertex 5910 -0.0725172 0.105485 0.0374705 Vertex 5911 -0.071509 0.105494 0.0375699 Vertex 5912 -0.0705079 0.105505 0.0376955 Vertex 5913 -0.0694905 0.10551 0.0380162 Vertex 5914 -0.0685061 0.105552 0.0384458 Vertex 5915 -0.067493 0.105571 0.0389191 Vertex 5916 -0.0665077 0.105605 0.0392145 Vertex 5917 -0.0654957 0.105611 0.0395613 Vertex 5918 -0.0644931 0.105621 0.039804 Vertex 5919 -0.0634873 0.105626 0.040045 Vertex 5920 -0.062496 0.105649 0.040196 Vertex 5921 -0.0614957 0.105649 0.0403113 Vertex 5922 -0.0604981 0.105663 0.0403307 Vertex 5923 -0.0595 0.105675 0.0404663 Vertex 5924 -0.0584982 0.105689 0.0406051 Vertex 5925 -0.0574991 0.105703 0.0407441 Vertex 5926 -0.0564975 0.105681 0.0408231 Vertex 5927 -0.0554974 0.10569 0.0407246 Vertex 5928 -0.054497 0.10568 0.0405938 Vertex 5929 -0.0534945 0.105667 0.0403502 Vertex 5930 -0.0524893 0.105673 0.0402508 Vertex 5931 -0.0515091 0.105631 0.0400498 Vertex 5932 -0.0504991 0.105636 0.0396146 Vertex 5933 -0.0494981 0.105619 0.0396922 Vertex 5934 -0.0484999 0.105649 0.0400819 Vertex 5935 -0.0474972 0.105664 0.0404447 Vertex 5936 -0.046496 0.105677 0.0407002 Vertex 5937 -0.045498 0.105695 0.0408472 Vertex 5938 -0.0444942 0.105717 0.0408954 Vertex 5939 -0.043493 0.105703 0.0408668 Vertex 5940 -0.0424838 0.105689 0.0405023 Vertex 5941 -0.0414785 0.105663 0.0400022 Vertex 5942 -0.0404538 0.105662 0.0393313 Vertex 5943 -0.0394792 0.105608 0.0388858 Vertex 5944 -0.0384934 0.105604 0.0386511 Vertex 5945 -0.0375014 0.105589 0.0387333 Vertex 5946 -0.0365034 0.105591 0.0389607 Vertex 5947 -0.0355104 0.105608 0.0391036 Vertex 5948 -0.0345174 0.105629 0.0392495 Vertex 5949 -0.0335079 0.105635 0.0395993 Vertex 5950 -0.032514 0.105674 0.0400124 Vertex 5951 -0.0315104 0.105689 0.0403731 Vertex 5952 -0.0305029 0.105682 0.0404793 Vertex 5953 -0.0294965 0.105676 0.0405837 Vertex 5954 -0.0284952 0.105677 0.0407009 Vertex 5955 -0.0274838 0.105666 0.0409158 Vertex 5956 -0.0264832 0.105687 0.0411729 Vertex 5957 -0.0254743 0.105723 0.0415881 Vertex 5958 -0.0244963 0.105758 0.0419767 Vertex 5959 -0.0235023 0.105779 0.0421282 Vertex 5960 -0.0224969 0.105778 0.0423492 Vertex 5961 -0.021494 0.10578 0.0424616 Vertex 5962 -0.0204959 0.105781 0.0424626 Vertex 5963 -0.0194999 0.105809 0.042534 Vertex 5964 -0.0184969 0.10579 0.0426906 Vertex 5965 -0.0174898 0.105786 0.0424611 Vertex 5966 -0.0164955 0.105778 0.0423459 Vertex 5967 -0.0155087 0.105817 0.0426846 Vertex 5968 -0.0144833 0.105825 0.0431811 Vertex 5969 -0.0134788 0.105828 0.0432751 Vertex 5970 -0.0124919 0.105832 0.0432095 Vertex 5971 -0.0114956 0.105842 0.0433599 Vertex 5972 -0.0104877 0.105844 0.0434252 Vertex 5973 -0.00949915 0.105857 0.0435217 Vertex 5974 -0.00849673 0.105867 0.0437425 Vertex 5975 -0.00748502 0.105882 0.0440003 Vertex 5976 -0.00649361 0.105887 0.04408 Vertex 5977 -0.00549096 0.105886 0.0440438 Vertex 5978 -0.00449526 0.10588 0.044033 Vertex 5979 -0.00350655 0.105885 0.0441283 Vertex 5980 -0.00251293 0.105882 0.0441369 Vertex 5981 -0.000508444 0.105851 0.0435843 Vertex 5982 0.000467241 0.105823 0.0432483 Vertex 5983 0.00148321 0.105804 0.0429258 Vertex 5984 0.00248489 0.105788 0.0426651 Vertex 5985 0.00348965 0.105764 0.0424132 Vertex 5986 0.00449494 0.105757 0.0421851 Vertex 5987 0.00550009 0.105744 0.0419393 Vertex 5988 0.00650458 0.105723 0.0419107 Vertex 5989 0.00750546 0.105745 0.0420743 Vertex 5990 0.00851027 0.105753 0.0425683 Vertex 5991 0.00952731 0.105746 0.0431674 Vertex 5992 0.0105403 0.105742 0.0436489 Vertex 5993 0.0115151 0.105777 0.0436811 Vertex 5994 0.0125104 0.105746 0.0436503 Vertex 5995 0.0135006 0.105771 0.0435499 Vertex 5996 0.0144947 0.105783 0.0434399 Vertex 5997 0.0154943 0.105779 0.0433144 Vertex 5998 0.0164877 0.105762 0.0431793 Vertex 5999 0.0174871 0.10577 0.0429453 Vertex 6000 0.0184831 0.105752 0.0426872 Vertex 6001 0.0194835 0.105739 0.0423148 Vertex 6002 -0.0264962 0.119343 0.030427 Vertex 6003 0.0144954 0.119572 0.0352389 Vertex 6004 -0.0364985 0.120712 0.0292752 Vertex 6005 0.023574 0.105697 0.0395934 Vertex 6006 -0.088803 0.151599 0.0211964 Vertex 6007 -0.0405267 0.169768 0.0017705 Vertex 6008 -0.0348887 0.174114 -0.0129217 Vertex 6009 -0.0745611 0.163685 -0.0159572 Vertex 6010 0.0429772 0.0902337 -0.00478341 Vertex 6011 -0.0012394 0.131315 0.00922853 Vertex 6012 -0.0895594 0.135155 0.0312102 Vertex 6013 -0.00448652 0.114189 0.0411781 Vertex 6014 -0.0171038 0.128182 0.00771491 Vertex 6015 -0.0901456 0.140633 0.0231701 Vertex 6016 0.0438044 0.0987496 0.00916312 Vertex 6017 -0.0596132 0.113903 0.0363038 Vertex 6018 -0.0504997 0.160817 0.00728082 Vertex 6019 -0.0944618 0.125537 0.019259 Vertex 6020 0.0262359 0.122255 0.0222063 Vertex 6021 -0.058487 0.113928 0.0361856 Vertex 6022 -0.0650869 0.155169 -0.00713868 Vertex 6023 0.00386952 0.131337 0.0182591 Vertex 6024 0.00983853 0.130485 0.0204326 Vertex 6025 -0.0358563 0.126885 0.000788129 Vertex 6026 -0.0370273 0.174099 -0.0109221 Vertex 6027 -0.0386753 0.127489 0.0159666 Vertex 6028 0.0209176 0.124997 0.0245115 Vertex 6029 0.0240424 0.122784 0.0256717 Vertex 6030 0.0254683 0.121415 0.0262007 Vertex 6031 0.0268493 0.119915 0.0267269 Vertex 6032 0.027565 0.119234 0.026993 Vertex 6033 -0.0849159 0.123546 -0.00333555 Vertex 6034 -0.0652193 0.1682 -0.0598394 Vertex 6035 -0.0438717 0.105649 -0.0205239 Vertex 6036 -0.0728992 0.107873 -0.010241 Vertex 6037 -0.072524 0.106883 0.0374001 Vertex 6038 -0.0715157 0.106884 0.0372861 Vertex 6039 -0.0706578 0.10688 0.0373417 Vertex 6040 -0.0695053 0.106913 0.0375568 Vertex 6041 -0.0684996 0.106934 0.0379267 Vertex 6042 -0.0674921 0.106947 0.0382762 Vertex 6043 -0.0665046 0.10698 0.0385746 Vertex 6044 -0.0655034 0.106997 0.0388261 Vertex 6045 -0.0644934 0.106993 0.039043 Vertex 6046 -0.0634902 0.106988 0.0392647 Vertex 6047 -0.0624896 0.106999 0.0393995 Vertex 6048 -0.061496 0.107016 0.0394252 Vertex 6049 -0.060493 0.107007 0.0395303 Vertex 6050 -0.0594923 0.107014 0.0396564 Vertex 6051 -0.0584999 0.107052 0.0397144 Vertex 6052 -0.0574989 0.107052 0.0398301 Vertex 6053 -0.0564997 0.107064 0.0398466 Vertex 6054 -0.0554984 0.107053 0.0399469 Vertex 6055 -0.0544948 0.107078 0.0398767 Vertex 6056 -0.0534959 0.107052 0.0398334 Vertex 6057 -0.0524918 0.107066 0.0397432 Vertex 6058 -0.051492 0.107057 0.0393982 Vertex 6059 -0.0505016 0.107064 0.0390734 Vertex 6060 -0.0495065 0.107045 0.0392662 Vertex 6061 -0.0484951 0.107035 0.0396855 Vertex 6062 -0.0474989 0.107059 0.0399589 Vertex 6063 -0.0464971 0.107057 0.0400682 Vertex 6064 -0.0454995 0.107082 0.0401134 Vertex 6065 -0.0444939 0.107088 0.0401229 Vertex 6066 -0.0434936 0.107078 0.040105 Vertex 6067 -0.0424861 0.107068 0.0398635 Vertex 6068 -0.0414578 0.107073 0.0393054 Vertex 6069 -0.0404413 0.10705 0.0387043 Vertex 6070 -0.0394722 0.107013 0.0383007 Vertex 6071 -0.0384808 0.106985 0.038039 Vertex 6072 -0.0375014 0.106979 0.038117 Vertex 6073 -0.036507 0.106984 0.0382357 Vertex 6074 -0.0355172 0.106999 0.038376 Vertex 6075 -0.0345047 0.106995 0.0387065 Vertex 6076 -0.0335137 0.107031 0.0389932 Vertex 6077 -0.0325038 0.107028 0.0393329 Vertex 6078 -0.0314981 0.107032 0.0395669 Vertex 6079 -0.0305128 0.10708 0.0396423 Vertex 6080 -0.0294962 0.107041 0.0398129 Vertex 6081 -0.028506 0.107069 0.0398546 Vertex 6082 -0.0275094 0.107088 0.0401149 Vertex 6083 -0.0265277 0.10717 0.0404632 Vertex 6084 -0.0254977 0.107106 0.0408331 Vertex 6085 -0.0244817 0.107102 0.0411704 Vertex 6086 -0.0234912 0.107132 0.0414501 Vertex 6087 -0.0225064 0.10717 0.041634 Vertex 6088 -0.0214945 0.10716 0.0418366 Vertex 6089 -0.0204903 0.107154 0.041938 Vertex 6090 -0.0194954 0.107168 0.0420699 Vertex 6091 -0.0184884 0.107161 0.042158 Vertex 6092 -0.0174825 0.107148 0.0420092 Vertex 6093 -0.0164994 0.107189 0.0421238 Vertex 6094 -0.0155015 0.10721 0.0425067 Vertex 6095 -0.0144859 0.107222 0.0429439 Vertex 6096 -0.0134922 0.107228 0.0429665 Vertex 6097 -0.012488 0.107228 0.0430572 Vertex 6098 -0.0114886 0.10724 0.0431864 Vertex 6099 -0.0104875 0.10724 0.0431922 Vertex 6100 -0.00949027 0.107257 0.0434611 Vertex 6101 -0.00847955 0.107265 0.0437628 Vertex 6102 -0.00748812 0.10728 0.0439222 Vertex 6103 -0.00648988 0.10728 0.0440126 Vertex 6104 -0.00549531 0.10728 0.0439307 Vertex 6105 -0.00449959 0.107273 0.0439086 Vertex 6106 -0.00350244 0.107276 0.0438161 Vertex 6107 -0.00251199 0.107268 0.0437857 Vertex 6108 -0.00151223 0.107257 0.0435513 Vertex 6109 -0.000512 0.107246 0.0433248 Vertex 6110 0.000481761 0.10723 0.0430499 Vertex 6111 0.00148166 0.107215 0.0427825 Vertex 6112 0.00249985 0.107203 0.0424791 Vertex 6113 0.0034868 0.107186 0.0422902 Vertex 6114 0.0045077 0.107168 0.0418669 Vertex 6115 0.00550135 0.107149 0.041587 Vertex 6116 0.00649798 0.107134 0.0414437 Vertex 6117 0.00749621 0.107111 0.0412811 Vertex 6118 0.00850109 0.107119 0.0411949 Vertex 6119 0.00950548 0.107102 0.041296 Vertex 6120 0.0105065 0.107115 0.0414414 Vertex 6121 0.0115191 0.107071 0.0419973 Vertex 6122 0.0125119 0.107097 0.0421465 Vertex 6123 0.0135054 0.10711 0.0421551 Vertex 6124 0.0144985 0.107111 0.0421568 Vertex 6125 0.0154947 0.107116 0.0420405 Vertex 6126 0.0164927 0.107123 0.0418084 Vertex 6127 0.0174897 0.107108 0.0415537 Vertex 6128 0.0184707 0.107054 0.0413783 Vertex 6129 0.0194806 0.107063 0.040905 Vertex 6130 0.0204972 0.107072 0.0404393 Vertex 6131 0.0215063 0.107058 0.0398344 Vertex 6132 0.0224909 0.107012 0.0395338 Vertex 6133 0.0235192 0.107033 0.0392433 Vertex 6134 0.0244991 0.106997 0.0390493 Vertex 6135 -0.0734967 0.126028 0.0530224 Vertex 6136 0.0414447 0.0957847 0.0271584 Vertex 6137 0.0432806 0.100121 0.0101615 Vertex 6138 0.0359235 0.106756 -0.00582268 Vertex 6139 -0.0574825 0.113918 0.0359516 Vertex 6140 -0.0564807 0.113914 0.0357075 Vertex 6141 0.01801 0.126774 0.0220214 Vertex 6142 0.0410386 0.099944 -0.00278716 Vertex 6143 -0.031677 0.126244 0.00820251 Vertex 6144 -0.0554982 0.113948 0.0354054 Vertex 6145 -0.0515065 0.160835 0.00704803 Vertex 6146 -0.0724038 0.116078 0.0519992 Vertex 6147 -0.078478 0.142827 0.0455967 Vertex 6148 -0.0545055 0.113958 0.0351234 Vertex 6149 -0.0656106 0.156261 -0.00734027 Vertex 6150 0.0107636 0.130209 0.0207729 Vertex 6151 0.0134356 0.129163 0.0217505 Vertex 6152 0.0159352 0.127804 0.0226817 Vertex 6153 0.0183414 0.126234 0.023568 Vertex 6154 0.0191744 0.125775 0.0238749 Vertex 6155 -0.0665162 0.155345 0.00690315 Vertex 6156 -0.0197213 0.123533 0.0272668 Vertex 6157 -0.0635768 0.155628 0.0253794 Vertex 6158 -0.0567915 0.158113 0.00751453 Vertex 6159 -0.0580787 0.133988 -0.00600022 Vertex 6160 -0.0468361 0.0970763 -0.0219471 Vertex 6161 -0.016261 0.181575 -0.0262548 Vertex 6162 -0.0410386 0.153314 -0.00775366 Vertex 6163 0.0151427 0.107227 -0.0182666 Vertex 6164 -0.0715005 0.108276 0.0374406 Vertex 6165 -0.0705038 0.108294 0.0372772 Vertex 6166 -0.0695161 0.108303 0.0373324 Vertex 6167 -0.0685163 0.108328 0.0375372 Vertex 6168 -0.0675133 0.108346 0.0377589 Vertex 6169 -0.0664975 0.108359 0.0380432 Vertex 6170 -0.0655034 0.108381 0.0382088 Vertex 6171 -0.0644937 0.108375 0.0384047 Vertex 6172 -0.0634989 0.108392 0.0384413 Vertex 6173 -0.0624964 0.108382 0.0385383 Vertex 6174 -0.0614977 0.108395 0.0385563 Vertex 6175 -0.0604943 0.108372 0.0386396 Vertex 6176 -0.0594963 0.1084 0.0386802 Vertex 6177 -0.0584982 0.108398 0.0387966 Vertex 6178 -0.0574962 0.108397 0.0389105 Vertex 6179 -0.0564983 0.108415 0.0389345 Vertex 6180 -0.0554997 0.108443 0.0389722 Vertex 6181 -0.0544968 0.108447 0.0390956 Vertex 6182 -0.0534959 0.108443 0.038977 Vertex 6183 -0.052497 0.108432 0.038849 Vertex 6184 -0.0514982 0.108428 0.0386132 Vertex 6185 -0.0504996 0.108397 0.0385655 Vertex 6186 -0.0495001 0.108413 0.0388185 Vertex 6187 -0.0485053 0.108444 0.0391022 Vertex 6188 -0.047499 0.10845 0.0392246 Vertex 6189 -0.0464966 0.108432 0.0393098 Vertex 6190 -0.0454977 0.108441 0.0393231 Vertex 6191 -0.0444934 0.108473 0.0392485 Vertex 6192 -0.0434804 0.108484 0.0391565 Vertex 6193 -0.0424683 0.108486 0.0389261 Vertex 6194 -0.0414563 0.108465 0.0385585 Vertex 6195 -0.0404738 0.108409 0.038128 Vertex 6196 -0.0394659 0.108422 0.0377073 Vertex 6197 -0.0384876 0.108386 0.0375357 Vertex 6198 -0.0374989 0.108379 0.0375203 Vertex 6199 -0.0365092 0.108385 0.0376381 Vertex 6200 -0.0355048 0.108366 0.0378272 Vertex 6201 -0.0345349 0.108408 0.0380462 Vertex 6202 -0.0335154 0.108413 0.0382413 Vertex 6203 -0.032507 0.108409 0.0384637 Vertex 6204 -0.0315115 0.108439 0.0386203 Vertex 6205 -0.0305016 0.108423 0.0388291 Vertex 6206 -0.0295118 0.108456 0.0388793 Vertex 6207 -0.028498 0.108421 0.0390601 Vertex 6208 -0.0274904 0.108416 0.0392888 Vertex 6209 -0.0265027 0.10847 0.0397156 Vertex 6210 -0.0255159 0.108511 0.0401259 Vertex 6211 -0.0245088 0.108515 0.0403619 Vertex 6212 -0.0235066 0.108523 0.0406075 Vertex 6213 -0.0225051 0.10854 0.0408657 Vertex 6214 -0.0215031 0.108553 0.041118 Vertex 6215 -0.0204902 0.108532 0.041306 Vertex 6216 -0.0195055 0.108574 0.0413935 Vertex 6217 -0.018498 0.108568 0.0416031 Vertex 6218 -0.0174912 0.108558 0.0415716 Vertex 6219 -0.0165087 0.10859 0.0417725 Vertex 6220 -0.0154871 0.10859 0.0421893 Vertex 6221 -0.0144984 0.108621 0.0424908 Vertex 6222 -0.0134808 0.108609 0.0426611 Vertex 6223 -0.0124833 0.108618 0.0427908 Vertex 6224 -0.0114905 0.108632 0.0428314 Vertex 6225 -0.0104845 0.10863 0.0429333 Vertex 6226 -0.00947876 0.108641 0.0432746 Vertex 6227 -0.00848834 0.10866 0.0434392 Vertex 6228 -0.0074892 0.108662 0.0435531 Vertex 6229 -0.0064934 0.10867 0.043581 Vertex 6230 -0.00549695 0.108658 0.0435455 Vertex 6231 -0.00449913 0.108643 0.0435023 Vertex 6232 -0.00350345 0.108655 0.04343 Vertex 6233 -0.0025035 0.108652 0.0433127 Vertex 6234 -0.00151033 0.108645 0.043169 Vertex 6235 -0.000516741 0.108636 0.04302 Vertex 6236 0.000488727 0.108629 0.0427903 Vertex 6237 0.00148661 0.108625 0.0426664 Vertex 6238 0.00249754 0.108619 0.0424686 Vertex 6239 0.00348525 0.108604 0.0422849 Vertex 6240 0.00449209 0.108585 0.0419458 Vertex 6241 0.00548706 0.108567 0.0416722 Vertex 6242 0.00649868 0.108551 0.0413323 Vertex 6243 0.00749695 0.108523 0.0409368 Vertex 6244 0.00849221 0.108496 0.0406568 Vertex 6245 0.00950305 0.108494 0.0403312 Vertex 6246 0.0104998 0.108437 0.040345 Vertex 6247 0.011503 0.108488 0.0403225 Vertex 6248 0.0125106 0.108449 0.040622 Vertex 6249 0.0135046 0.108467 0.0407674 Vertex 6250 0.0145003 0.108488 0.0407955 Vertex 6251 0.0154998 0.108504 0.0406925 Vertex 6252 0.0164872 0.108442 0.0405002 Vertex 6253 0.0174969 0.108466 0.0401752 Vertex 6254 0.0185107 0.108486 0.0398481 Vertex 6255 0.019505 0.108463 0.0397034 Vertex 6256 0.0205013 0.108449 0.0395681 Vertex 6257 0.0215013 0.108432 0.0393095 Vertex 6258 0.0225 0.108418 0.039052 Vertex 6259 0.0235041 0.108407 0.0388101 Vertex 6260 0.0405703 0.105644 0.0131657 Vertex 6261 0.0445999 0.0931357 0.00219092 Vertex 6262 0.0456444 0.086201 0.0151659 Vertex 6263 -0.053491 0.113891 0.0350292 Vertex 6264 -0.0524908 0.113899 0.0349209 Vertex 6265 -0.0514924 0.113914 0.0348157 Vertex 6266 -0.00211002 0.131247 0.0146415 Vertex 6267 0.0289767 0.117846 0.0275093 Vertex 6268 -0.0908979 0.126784 0.00627265 Vertex 6269 -0.0902562 0.135043 0.0112131 Vertex 6270 0.0419523 0.101425 0.00119033 Vertex 6271 0.0397783 0.106996 0.0151622 Vertex 6272 -0.0504737 0.113932 0.0347324 Vertex 6273 -0.0739383 0.160975 -0.0103701 Vertex 6274 -0.0726687 0.161352 -0.00991102 Vertex 6275 -0.0721189 0.15515 0.0282101 Vertex 6276 -0.00263717 0.12924 0.026005 Vertex 6277 -0.0668913 0.155545 0.00822429 Vertex 6278 -0.00387787 0.10737 -0.022403 Vertex 6279 -0.066989 0.136993 -0.00809827 Vertex 6280 -0.0341359 0.168185 -0.0152479 Vertex 6281 -0.0639936 0.132595 -0.00811291 Vertex 6282 -0.0669331 0.125307 -0.0088761 Vertex 6283 0.0121361 0.105839 -0.0196306 Vertex 6284 -0.00789542 0.108803 -0.0224197 Vertex 6285 -0.0494961 0.113894 0.0347794 Vertex 6286 -0.0340904 0.160759 -0.0135462 Vertex 6287 -0.065894 0.118002 -0.00906639 Vertex 6288 -0.0704588 0.109521 0.0380634 Vertex 6289 -0.0675029 0.109729 0.0377486 Vertex 6290 -0.0714911 0.116102 0.0521112 Vertex 6291 -0.0646169 0.109762 0.0377795 Vertex 6292 -0.0455052 0.162274 0.00622301 Vertex 6293 -0.0624965 0.109755 0.0377659 Vertex 6294 -0.0614975 0.10975 0.0377559 Vertex 6295 -0.0604978 0.109778 0.0376942 Vertex 6296 -0.0594984 0.109765 0.0377884 Vertex 6297 -0.0584973 0.109766 0.0377913 Vertex 6298 -0.0575003 0.109781 0.0378101 Vertex 6299 -0.0564977 0.109762 0.0379025 Vertex 6300 -0.0554977 0.109766 0.0379077 Vertex 6301 -0.0544964 0.10974 0.0378742 Vertex 6302 -0.0534989 0.109802 0.0378386 Vertex 6303 -0.0524991 0.109798 0.0378325 Vertex 6304 -0.0514986 0.109783 0.0378241 Vertex 6305 -0.0505005 0.109789 0.0379415 Vertex 6306 -0.0495024 0.109811 0.0380885 Vertex 6307 -0.048501 0.109818 0.0382143 Vertex 6308 -0.0475 0.109814 0.0383224 Vertex 6309 -0.0464997 0.109825 0.0383354 Vertex 6310 -0.0454967 0.109818 0.0383281 Vertex 6311 -0.0444932 0.109842 0.0382343 Vertex 6312 -0.043485 0.109867 0.0381531 Vertex 6313 -0.0424884 0.109818 0.0380938 Vertex 6314 -0.0414757 0.109827 0.0377618 Vertex 6315 -0.0404708 0.109814 0.0374017 Vertex 6316 -0.03948 0.109789 0.0371385 Vertex 6317 -0.0384844 0.109782 0.036904 Vertex 6318 -0.0374937 0.109757 0.0368609 Vertex 6319 -0.0365032 0.109752 0.0369592 Vertex 6320 -0.0355033 0.109745 0.0370663 Vertex 6321 -0.0345099 0.109779 0.0372255 Vertex 6322 -0.0335046 0.109774 0.0374515 Vertex 6323 -0.0325036 0.10978 0.0375732 Vertex 6324 -0.0315055 0.109789 0.0377033 Vertex 6325 -0.0305081 0.109824 0.0377476 Vertex 6326 -0.0295069 0.109802 0.0378356 Vertex 6327 -0.0285044 0.109801 0.0380702 Vertex 6328 -0.0275197 0.109846 0.0382427 Vertex 6329 -0.026518 0.10985 0.0386071 Vertex 6330 -0.0255231 0.109882 0.0391184 Vertex 6331 -0.024509 0.109889 0.0396002 Vertex 6332 -0.0235014 0.109891 0.0398372 Vertex 6333 -0.0225096 0.10992 0.040117 Vertex 6334 -0.0215043 0.109928 0.0403615 Vertex 6335 -0.0204956 0.109916 0.0405701 Vertex 6336 -0.019502 0.109944 0.0407387 Vertex 6337 -0.0184962 0.109943 0.0409607 Vertex 6338 -0.0175125 0.109971 0.0410978 Vertex 6339 -0.0164951 0.109966 0.0413377 Vertex 6340 -0.0154805 0.109966 0.0416657 Vertex 6341 -0.0144886 0.109993 0.0419529 Vertex 6342 -0.0134826 0.109991 0.0421694 Vertex 6343 -0.0124866 0.11001 0.0423152 Vertex 6344 -0.011487 0.110004 0.0424075 Vertex 6345 -0.010477 0.110005 0.0426237 Vertex 6346 -0.00949217 0.110042 0.0428369 Vertex 6347 -0.00849166 0.110041 0.0429425 Vertex 6348 -0.00746424 0.110009 0.0430329 Vertex 6349 -0.00649249 0.110023 0.0430195 Vertex 6350 -0.00549779 0.110034 0.0429298 Vertex 6351 -0.00449743 0.110031 0.0429169 Vertex 6352 -0.00350028 0.110017 0.0429859 Vertex 6353 -0.00250067 0.110029 0.0428965 Vertex 6354 -0.0015019 0.110031 0.0427805 Vertex 6355 -0.000505415 0.110024 0.0426421 Vertex 6356 0.000487515 0.110024 0.0426254 Vertex 6357 0.00149673 0.110036 0.0425823 Vertex 6358 0.00247871 0.110023 0.0425049 Vertex 6359 0.00348633 0.110018 0.042298 Vertex 6360 0.00447281 0.110003 0.0420134 Vertex 6361 -0.0823269 0.108767 -0.000607289 Vertex 6362 -0.00849082 0.119665 0.0373867 Vertex 6363 0.00844159 0.109753 0.0403226 Vertex 6364 0.00949393 0.109876 0.0399119 Vertex 6365 0.0104934 0.109851 0.0397458 Vertex 6366 0.0115037 0.109883 0.0397133 Vertex 6367 0.0125027 0.109886 0.0398286 Vertex 6368 0.0135065 0.109861 0.0400106 Vertex 6369 0.0144999 0.10985 0.0401157 Vertex 6370 0.015502 0.109895 0.0399577 Vertex 6371 0.0164894 0.10985 0.0397676 Vertex 6372 0.0174948 0.109841 0.0394103 Vertex 6373 0.0185004 0.109841 0.0391791 Vertex 6374 0.019508 0.109842 0.0390589 Vertex 6375 0.0204806 0.109788 0.0388648 Vertex 6376 0.021502 0.109802 0.0384228 Vertex 6377 0.0224953 0.109772 0.0381484 Vertex 6378 0.0235417 0.109895 0.0378397 Vertex 6379 -0.0842876 0.108899 0.00336188 Vertex 6380 -0.069531 0.14702 0.0417131 Vertex 6381 0.026502 0.121591 0.0237374 Vertex 6382 0.0410592 0.0985428 -0.00379645 Vertex 6383 0.0330202 0.102118 0.0356213 Vertex 6384 -0.0484961 0.113915 0.0346796 Vertex 6385 -0.0439793 0.169659 0.00035763 Vertex 6386 -0.0622824 0.159968 -0.0396048 Vertex 6387 -0.036496 0.17271 -0.000384966 Vertex 6388 -0.0551627 0.0709645 0.0393255 Vertex 6389 0.0259399 0.098006 -0.0197455 Vertex 6390 -0.0155155 0.115507 0.0382335 Vertex 6391 0.0377143 0.106919 0.0261871 Vertex 6392 -0.0752567 0.160324 -0.0108988 Vertex 6393 0.000838494 0.130009 0.0243594 Vertex 6394 0.0152242 0.123558 0.0310525 Vertex 6395 -0.0442894 0.126542 0.0198398 Vertex 6396 -0.0690298 0.155601 0.00744971 Vertex 6397 -0.0500333 0.148713 -0.00320857 Vertex 6398 -0.0288487 0.0944704 -0.0247187 Vertex 6399 -0.00688661 0.108791 -0.0226031 Vertex 6400 -0.07081 0.110507 0.0424798 Vertex 6401 -0.038884 0.108506 -0.019659 Vertex 6402 -0.0438179 0.0928034 -0.0224841 Vertex 6403 -0.0490488 0.150196 -0.0040443 Vertex 6404 -0.0540561 0.150161 -0.00256907 Vertex 6405 -0.0699384 0.129684 -0.00901632 Vertex 6406 -0.0668535 0.0938084 -0.0173106 Vertex 6407 0.0382387 0.108322 0.00216703 Vertex 6408 -0.0800761 0.0936246 -0.00957758 Vertex 6409 -0.0475033 0.113884 0.0346438 Vertex 6410 -0.0464973 0.113852 0.0344899 Vertex 6411 -0.0344513 0.172765 -0.000813008 Vertex 6412 0.013918 0.129208 0.0205036 Vertex 6413 -0.031866 0.126076 0.00521848 Vertex 6414 -0.042544 0.16227 0.00511409 Vertex 6415 -0.0855641 0.121149 -0.00272592 Vertex 6416 -0.0615714 0.111062 0.0370307 Vertex 6417 -0.0605024 0.111127 0.0368734 Vertex 6418 -0.0594975 0.111137 0.0367915 Vertex 6419 -0.0584972 0.111135 0.0367864 Vertex 6420 -0.0574963 0.111121 0.0367615 Vertex 6421 -0.0564969 0.111123 0.0367634 Vertex 6422 -0.0554964 0.111163 0.0367062 Vertex 6423 -0.054498 0.111159 0.0367038 Vertex 6424 -0.0535009 0.111177 0.0367213 Vertex 6425 -0.0524975 0.111152 0.036921 Vertex 6426 -0.0515006 0.111173 0.0369493 Vertex 6427 -0.0504992 0.111154 0.0370407 Vertex 6428 -0.0494996 0.111168 0.0370596 Vertex 6429 -0.0485004 0.111187 0.0370789 Vertex 6430 -0.0474976 0.111158 0.0371638 Vertex 6431 -0.0465008 0.111213 0.0371008 Vertex 6432 -0.0454975 0.111194 0.0370842 Vertex 6433 -0.0444957 0.111173 0.0370595 Vertex 6434 -0.0434945 0.111176 0.0370674 Vertex 6435 -0.042488 0.1112 0.0368617 Vertex 6436 -0.0414792 0.111213 0.0366505 Vertex 6437 -0.0404833 0.111172 0.036485 Vertex 6438 -0.0394866 0.111153 0.0363447 Vertex 6439 -0.0384921 0.111131 0.0361977 Vertex 6440 -0.0374903 0.111156 0.0359971 Vertex 6441 -0.0364976 0.111093 0.0360234 Vertex 6442 -0.0355002 0.111108 0.0360398 Vertex 6443 -0.0345116 0.111154 0.0360997 Vertex 6444 -0.0335083 0.11115 0.0363293 Vertex 6445 -0.0325075 0.11115 0.0364446 Vertex 6446 -0.0314959 0.111117 0.0366419 Vertex 6447 -0.0305063 0.111166 0.0367005 Vertex 6448 -0.0294974 0.111128 0.0367729 Vertex 6449 -0.0285131 0.111188 0.0369648 Vertex 6450 -0.0275135 0.111195 0.0372083 Vertex 6451 -0.0265179 0.111211 0.0374625 Vertex 6452 -0.02552 0.111233 0.0379672 Vertex 6453 -0.0245152 0.111258 0.0385919 Vertex 6454 -0.0235304 0.111308 0.039012 Vertex 6455 -0.0225065 0.111294 0.03935 Vertex 6456 -0.0215077 0.111305 0.0395987 Vertex 6457 -0.0204995 0.111306 0.0398343 Vertex 6458 -0.0194926 0.111309 0.040066 Vertex 6459 -0.0184975 0.111326 0.0402128 Vertex 6460 -0.0174928 0.111329 0.0404434 Vertex 6461 -0.0164929 0.11134 0.0406952 Vertex 6462 -0.0154754 0.111334 0.0410203 Vertex 6463 -0.0144984 0.11138 0.0412273 Vertex 6464 -0.01349 0.11138 0.0414506 Vertex 6465 -0.0124847 0.111379 0.041672 Vertex 6466 -0.0114747 0.111375 0.0418865 Vertex 6467 -0.0104567 0.111397 0.0420636 Vertex 6468 -0.00949487 0.11143 0.0422271 Vertex 6469 -0.00849115 0.111421 0.0423213 Vertex 6470 -0.00748755 0.111393 0.0423782 Vertex 6471 -0.00649552 0.111418 0.0421995 Vertex 6472 -0.0054932 0.111405 0.0422861 Vertex 6473 -0.00446924 0.111373 0.0424038 Vertex 6474 -0.00349512 0.111424 0.0424267 Vertex 6475 -0.00249465 0.111426 0.042426 Vertex 6476 -0.00149842 0.111423 0.0424113 Vertex 6477 -0.000499736 0.11143 0.0424297 Vertex 6478 0.000490707 0.111422 0.0424934 Vertex 6479 0.00149281 0.111426 0.0424095 Vertex 6480 0.00248558 0.111415 0.0422707 Vertex 6481 0.00348136 0.111402 0.0420175 Vertex 6482 0.00448658 0.111391 0.0416751 Vertex 6483 0.00548074 0.111376 0.0414038 Vertex 6484 -0.0204991 0.12085 0.0318342 Vertex 6485 0.00846909 0.111301 0.0401143 Vertex 6486 0.00950248 0.111292 0.0396928 Vertex 6487 0.010493 0.111264 0.0393941 Vertex 6488 0.0115009 0.111256 0.0392728 Vertex 6489 0.0124992 0.111251 0.0392691 Vertex 6490 0.0135008 0.111258 0.0394003 Vertex 6491 0.0145005 0.11127 0.0394252 Vertex 6492 0.0154995 0.111258 0.0392925 Vertex 6493 0.0165102 0.111269 0.0389693 Vertex 6494 0.0174899 0.111215 0.038757 Vertex 6495 0.0184693 0.111176 0.038468 Vertex 6496 0.0194916 0.111179 0.0380087 Vertex 6497 0.0205156 0.111203 0.0377036 Vertex 6498 0.0215009 0.111167 0.037529 Vertex 6499 -0.0285085 0.115306 0.0336868 Vertex 6500 -0.0218282 0.127027 0.00889322 Vertex 6501 -0.0777263 0.156926 -0.0159116 Vertex 6502 0.0414602 0.0985756 -0.00280597 Vertex 6503 -0.036508 0.127508 0.00348399 Vertex 6504 -0.0455004 0.113892 0.0345333 Vertex 6505 -0.0895401 0.135156 0.0272131 Vertex 6506 -0.0794788 0.13585 0.0504167 Vertex 6507 0.038384 0.106978 0.0241932 Vertex 6508 -0.0344434 0.174206 -0.0015497 Vertex 6509 0.0412949 0.104257 0.00416372 Vertex 6510 -0.0858985 0.111778 0.0253403 Vertex 6511 -0.0314085 0.177247 -0.00418119 Vertex 6512 -0.0245124 0.180278 -0.0098524 Vertex 6513 -0.0445 0.113887 0.0346508 Vertex 6514 0.00385761 0.129628 0.0254511 Vertex 6515 -0.0634388 0.152153 -0.00650488 Vertex 6516 -0.0662966 0.156977 -0.00759157 Vertex 6517 0.0116443 0.129846 0.0210966 Vertex 6518 0.0142764 0.128727 0.0220636 Vertex 6519 0.0167493 0.127305 0.0229819 Vertex 6520 -0.0694997 0.166373 -0.0203616 Vertex 6521 0.0217467 0.124535 0.0248197 Vertex 6522 -0.0298412 0.0944347 -0.0243277 Vertex 6523 -0.0718881 0.109321 -0.0102252 Vertex 6524 -0.0428329 0.0928281 -0.0227901 Vertex 6525 -0.0418435 0.0928469 -0.022966 Vertex 6526 -0.0448317 0.0927682 -0.0220335 Vertex 6527 0.00512317 0.107303 -0.0203142 Vertex 6528 -0.0500528 0.150184 -0.0037815 Vertex 6529 -0.0321069 0.162239 -0.0144989 Vertex 6530 -0.0488244 0.0927169 -0.0215945 Vertex 6531 -0.0289503 0.0931616 -0.025199 Vertex 6532 -0.0474982 0.162268 0.00647513 Vertex 6533 -0.0933703 0.118789 0.0242915 Vertex 6534 0.0388231 0.106965 0.0221712 Vertex 6535 -0.033489 0.172734 -0.00156283 Vertex 6536 -0.0755108 0.126011 0.0529241 Vertex 6537 -0.0704919 0.126012 0.052539 Vertex 6538 -0.0435018 0.113907 0.034675 Vertex 6539 -0.0815026 0.127419 0.0524098 Vertex 6540 -0.0714888 0.127424 0.0521873 Vertex 6541 -0.0614851 0.112533 0.0365644 Vertex 6542 -0.0604912 0.112522 0.03629 Vertex 6543 -0.0594926 0.112518 0.0361699 Vertex 6544 -0.0584874 0.112515 0.0360801 Vertex 6545 -0.057494 0.112512 0.0360215 Vertex 6546 -0.0564952 0.112508 0.0359017 Vertex 6547 -0.0554943 0.112513 0.0359102 Vertex 6548 -0.0544937 0.112536 0.0358256 Vertex 6549 -0.0534948 0.11254 0.0358256 Vertex 6550 -0.0525052 0.112524 0.0359139 Vertex 6551 -0.0514991 0.112527 0.0359192 Vertex 6552 -0.0504982 0.112495 0.0358796 Vertex 6553 -0.049499 0.112564 0.0357174 Vertex 6554 -0.0485029 0.112572 0.035725 Vertex 6555 -0.0474983 0.11254 0.0358059 Vertex 6556 -0.0465003 0.112564 0.0357108 Vertex 6557 -0.0454992 0.112558 0.0357052 Vertex 6558 -0.0444981 0.112567 0.0357183 Vertex 6559 -0.0434985 0.112577 0.0357301 Vertex 6560 -0.0424957 0.11253 0.0356818 Vertex 6561 -0.0414935 0.112526 0.0356807 Vertex 6562 -0.0404873 0.112547 0.0355988 Vertex 6563 -0.039483 0.112566 0.0355031 Vertex 6564 -0.0384866 0.112537 0.0353486 Vertex 6565 -0.0374892 0.112529 0.0350998 Vertex 6566 -0.0364947 0.112507 0.0349484 Vertex 6567 -0.0355007 0.112502 0.0349387 Vertex 6568 -0.0345112 0.112532 0.034973 Vertex 6569 -0.0335129 0.112536 0.0351002 Vertex 6570 -0.0325146 0.112544 0.0353443 Vertex 6571 -0.0315135 0.112545 0.0354646 Vertex 6572 -0.0305078 0.112529 0.0355647 Vertex 6573 -0.0295045 0.112518 0.0356692 Vertex 6574 -0.0285136 0.112565 0.0358423 Vertex 6575 -0.0275083 0.112548 0.0360564 Vertex 6576 -0.0264982 0.112519 0.0362632 Vertex 6577 -0.0458368 0.0956376 -0.0219211 Vertex 6578 -0.0448304 0.0956436 -0.0219722 Vertex 6579 -0.0478322 0.0956344 -0.0220665 Vertex 6580 -0.0508332 0.0956285 -0.0221275 Vertex 6581 -0.051836 0.0956238 -0.0221428 Vertex 6582 -0.052836 0.095613 -0.0220115 Vertex 6583 -0.053845 0.0955972 -0.0217935 Vertex 6584 0.0262469 0.11849 0.0293617 Vertex 6585 0.0255714 0.119263 0.0291067 Vertex 6586 -0.00987882 0.105925 -0.0227673 Vertex 6587 -0.0799934 0.136838 -0.00393652 Vertex 6588 -0.0408461 0.0957242 -0.0225993 Vertex 6589 -0.0418419 0.09571 -0.0225712 Vertex 6590 -0.0200723 0.0361973 0.0530852 Vertex 6591 0.0111444 0.104428 -0.02004 Vertex 6592 -0.0600127 0.131125 -0.00733582 Vertex 6593 -0.0779451 0.128117 -0.00684087 Vertex 6594 -0.0418712 0.105657 -0.0205306 Vertex 6595 -0.0748055 0.0863518 -0.0148055 Vertex 6596 -0.0737831 0.0864021 -0.0154104 Vertex 6597 -0.0688114 0.086573 -0.0173858 Vertex 6598 0.0061481 0.104478 -0.0212191 Vertex 6599 0.0111302 0.107269 -0.019511 Vertex 6600 0.00520355 0.0894816 -0.0332282 Vertex 6601 -0.0558128 0.0869147 -0.0214989 Vertex 6602 -0.0221249 0.165275 -0.017299 Vertex 6603 -0.0360717 0.157766 -0.0114869 Vertex 6604 -0.0497962 0.0869626 -0.02172 Vertex 6605 -0.0697905 0.0865423 -0.0170841 Vertex 6606 -0.0617992 0.0867358 -0.0192812 Vertex 6607 -0.0709683 0.136976 -0.00769814 Vertex 6608 -0.0613421 0.118288 0.041013 Vertex 6609 0.029005 0.115546 0.0303821 Vertex 6610 -0.0474654 0.135069 0.0155888 Vertex 6611 -0.030845 0.0944191 -0.0240931 Vertex 6612 -0.0818927 0.122139 -0.0045131 Vertex 6613 -0.0311396 0.166714 -0.0162904 Vertex 6614 -0.0161793 0.169751 -0.0220442 Vertex 6615 -0.0560506 0.150155 -0.00188433 Vertex 6616 -0.0687285 0.155709 0.0264626 Vertex 6617 -0.0687195 0.165823 -0.0200644 Vertex 6618 0.0126876 0.0376693 0.0445214 Vertex 6619 0.0137867 0.0377633 0.0443361 Vertex 6620 0.0148847 0.0378033 0.0441286 Vertex 6621 -0.0628015 0.0867155 -0.0190743 Vertex 6622 -0.0497623 0.0665865 0.0371903 Vertex 6623 0.0185494 0.0379494 0.0423026 Vertex 6624 -0.00587725 0.105934 -0.0226578 Vertex 6625 0.0201031 0.0379621 0.0410367 Vertex 6626 -0.087831 0.103641 0.0093887 Vertex 6627 -0.050904 0.119772 0.0333476 Vertex 6628 0.0357112 0.102065 0.0324889 Vertex 6629 0.0443987 0.0959613 0.0131589 Vertex 6630 0.0279524 0.103456 0.0388242 Vertex 6631 0.0302883 0.103408 0.0369471 Vertex 6632 -0.0729716 0.175028 -0.0520538 Vertex 6633 -0.0668407 0.0952437 -0.0171577 Vertex 6634 -0.0428426 0.0956907 -0.0224311 Vertex 6635 -0.0298463 0.0958488 -0.0239617 Vertex 6636 -0.0659991 0.136994 -0.00799651 Vertex 6637 -0.00587956 0.107379 -0.0226761 Vertex 6638 -0.0619636 0.125289 -0.00856668 Vertex 6639 -0.000859642 0.105926 -0.0219248 Vertex 6640 -0.0659124 0.113781 -0.0114133 Vertex 6641 -0.00487539 0.105927 -0.0225105 Vertex 6642 -0.0498232 0.0349806 0.0446412 Vertex 6643 -0.0487731 0.0349958 0.0444688 Vertex 6644 0.0296386 0.114736 0.0306143 Vertex 6645 0.0283559 0.116347 0.030146 Vertex 6646 0.0269409 0.117743 0.0296345 Vertex 6647 -0.0285902 0.125327 0.00496117 Vertex 6648 -0.027448 0.125478 0.0053817 Vertex 6649 -0.024201 0.0373653 0.0542269 Vertex 6650 -0.0230319 0.0374462 0.0541561 Vertex 6651 -0.0759547 0.129619 -0.00760722 Vertex 6652 -0.0208903 0.0376209 0.05361 Vertex 6653 -0.0199192 0.0375867 0.0533971 Vertex 6654 -0.0527937 0.0869491 -0.0216809 Vertex 6655 -0.0507933 0.0869468 -0.0215939 Vertex 6656 -0.0161865 0.0377383 0.0516902 Vertex 6657 -0.0152064 0.0377587 0.0513804 Vertex 6658 -0.0141822 0.0378114 0.0510973 Vertex 6659 -0.0131926 0.0378477 0.0507876 Vertex 6660 -0.0122192 0.0378665 0.050479 Vertex 6661 -0.0112578 0.037897 0.0501369 Vertex 6662 -0.0102585 0.0379591 0.0497745 Vertex 6663 -0.0568079 0.0869026 -0.0213473 Vertex 6664 -0.00826521 0.0380456 0.0491273 Vertex 6665 -0.00723161 0.0381024 0.0489495 Vertex 6666 -0.006265 0.0381462 0.0486516 Vertex 6667 -0.00523048 0.0381888 0.0482681 Vertex 6668 -0.00423381 0.0382248 0.0479393 Vertex 6669 -0.00324005 0.038276 0.0477168 Vertex 6670 -0.00223658 0.0383059 0.0473338 Vertex 6671 -0.00125765 0.0383424 0.0470318 Vertex 6672 -0.0640284 0.119984 0.047923 Vertex 6673 -0.0582446 0.13534 0.0351018 Vertex 6674 0.0402871 0.104196 0.0211608 Vertex 6675 0.00291054 0.0385481 0.0460492 Vertex 6676 0.00400584 0.0386131 0.0458842 Vertex 6677 0.00510611 0.0386758 0.0457599 Vertex 6678 0.00620362 0.0387395 0.045605 Vertex 6679 0.00513733 0.104474 -0.0214038 Vertex 6680 0.00954728 0.0389439 0.0451085 Vertex 6681 0.0106398 0.0390088 0.044914 Vertex 6682 0.0117341 0.0390743 0.0447312 Vertex 6683 0.0128315 0.0391361 0.0445812 Vertex 6684 0.013929 0.0392001 0.0444158 Vertex 6685 0.0150246 0.0392642 0.0442415 Vertex 6686 0.0161036 0.0393372 0.0440174 Vertex 6687 0.0170352 0.0393356 0.0436644 Vertex 6688 0.0179771 0.0393777 0.0432522 Vertex 6689 0.0188124 0.0393785 0.042705 Vertex 6690 0.0196959 0.0394038 0.04222 Vertex 6691 0.0205957 0.0394417 0.0417168 Vertex 6692 0.045275 0.0917907 0.0041773 Vertex 6693 -0.0192339 0.166857 -0.012207 Vertex 6694 -0.051547 0.125478 0.0342157 Vertex 6695 -0.0182573 0.181629 -0.0177335 Vertex 6696 -0.0226202 0.181624 -0.0117104 Vertex 6697 0.0318118 0.100781 0.0373962 Vertex 6698 0.0311382 0.100809 0.0381724 Vertex 6699 -0.062789 0.152113 -0.0295989 Vertex 6700 0.0297469 0.0929269 0.0431563 Vertex 6701 -0.0438412 0.0942345 -0.0223045 Vertex 6702 -0.045835 0.0941966 -0.0219229 Vertex 6703 -0.0528311 0.0941603 -0.0218064 Vertex 6704 -0.0538405 0.0941624 -0.0218364 Vertex 6705 -0.0587837 0.0940397 -0.0203993 Vertex 6706 -0.0597431 0.093988 -0.019461 Vertex 6707 -0.0608063 0.0939347 -0.0190005 Vertex 6708 -0.0492809 0.152135 0.0110836 Vertex 6709 0.00183737 0.0373069 0.04638 Vertex 6710 -0.0857257 0.0994313 0.000394941 Vertex 6711 -0.0600649 0.129705 0.039485 Vertex 6712 -0.0789513 0.128091 -0.00607242 Vertex 6713 -0.0783317 0.109572 0.0415234 Vertex 6714 -0.0548507 0.0955893 -0.0216695 Vertex 6715 -0.0668934 0.119448 -0.00885989 Vertex 6716 -0.056884 0.0955743 -0.0213395 Vertex 6717 -0.0485257 0.121087 0.0297472 Vertex 6718 -0.0608088 0.148246 0.0367611 Vertex 6719 -0.0155858 0.183111 -0.0209193 Vertex 6720 -0.0484797 0.126826 0.0298997 Vertex 6721 -0.0550359 0.12552 0.0379729 Vertex 6722 -0.000203909 0.130048 0.0239772 Vertex 6723 -0.0112103 0.129394 0.0199977 Vertex 6724 0.0302544 0.113856 0.0308506 Vertex 6725 -0.0341012 0.162237 -0.0142117 Vertex 6726 -0.0523124 0.0360662 0.0464431 Vertex 6727 -0.0512659 0.0360808 0.0462964 Vertex 6728 -0.0491119 0.0361611 0.0459929 Vertex 6729 -0.0480938 0.0362157 0.0456887 Vertex 6730 -0.0470685 0.0362699 0.0454096 Vertex 6731 -0.0460476 0.0363198 0.0451262 Vertex 6732 -0.0450739 0.0363473 0.0448052 Vertex 6733 -0.0440686 0.0364096 0.0444754 Vertex 6734 -0.0430994 0.12944 0.0113807 Vertex 6735 -0.00439411 0.0968663 -0.0305974 Vertex 6736 -0.0654707 0.155271 0.00728456 Vertex 6737 0.0276788 0.117119 0.0298812 Vertex 6738 -0.0398245 0.0942915 -0.0229995 Vertex 6739 -0.0306102 0.125527 0.00421635 Vertex 6740 -0.02963 0.125357 0.0045818 Vertex 6741 0.0295472 0.11806 0.0262972 Vertex 6742 -0.0671663 0.164687 -0.0194859 Vertex 6743 -0.0242177 0.0387671 0.0542484 Vertex 6744 -0.0230546 0.0388523 0.0540611 Vertex 6745 -0.0220141 0.0388944 0.0538623 Vertex 6746 -0.0209812 0.0389557 0.0535988 Vertex 6747 -0.0200013 0.0389743 0.053287 Vertex 6748 -0.0189776 0.0390241 0.0529956 Vertex 6749 -0.018017 0.0390618 0.0526069 Vertex 6750 -0.0171133 0.0390763 0.0521827 Vertex 6751 -0.0161521 0.03911 0.0518105 Vertex 6752 -0.0151896 0.0391404 0.0514631 Vertex 6753 -0.0141713 0.0391912 0.0511685 Vertex 6754 -0.0131867 0.0392232 0.050872 Vertex 6755 -0.0122347 0.0392642 0.0504717 Vertex 6756 -0.0112757 0.0392934 0.0501019 Vertex 6757 -0.0103201 0.0393296 0.0497389 Vertex 6758 -0.00928822 0.0393788 0.0494849 Vertex 6759 -0.00827202 0.0394277 0.049182 Vertex 6760 -0.00730388 0.0394625 0.048838 Vertex 6761 -0.00627779 0.0395112 0.048561 Vertex 6762 -0.00524162 0.0395598 0.0483202 Vertex 6763 -0.00422658 0.0396088 0.0480089 Vertex 6764 -0.00325216 0.0396403 0.0476826 Vertex 6765 -0.00222977 0.0396912 0.0474006 Vertex 6766 -0.00126307 0.039726 0.0470556 Vertex 6767 -0.000241537 0.0397743 0.0467748 Vertex 6768 0.000791005 0.0398223 0.046536 Vertex 6769 0.00187492 0.0398874 0.0463369 Vertex 6770 0.00289976 0.039936 0.0460731 Vertex 6771 0.00399334 0.0399971 0.0458959 Vertex 6772 0.00514365 0.0400743 0.045751 Vertex 6773 0.00624486 0.0401371 0.0456279 Vertex 6774 0.00740252 0.0402134 0.0455033 Vertex 6775 0.00849848 0.0402756 0.0453316 Vertex 6776 0.00959837 0.0403395 0.0451906 Vertex 6777 0.0107555 0.0404168 0.045078 Vertex 6778 0.0118541 0.0404814 0.0449158 Vertex 6779 0.0129483 0.0405423 0.0447572 Vertex 6780 0.0140441 0.0406072 0.0445814 Vertex 6781 0.015086 0.0406501 0.0443863 Vertex 6782 0.0161688 0.0407187 0.0441528 Vertex 6783 0.017193 0.0407686 0.0438767 Vertex 6784 0.0181431 0.0408036 0.0434958 Vertex 6785 0.0189976 0.0408013 0.0429893 Vertex 6786 0.0198342 0.0408002 0.0424386 Vertex 6787 0.0207007 0.040829 0.0419301 Vertex 6788 0.0215433 0.04083 0.0414017 Vertex 6789 0.0228822 0.0407495 0.0397886 Vertex 6790 0.0235133 0.0407023 0.0389233 Vertex 6791 0.0229651 0.0928857 0.047441 Vertex 6792 -0.0146742 0.180146 -0.0213737 Vertex 6793 0.0306462 0.0968954 0.0409575 Vertex 6794 -0.0876274 0.137747 0.00620032 Vertex 6795 0.0261935 0.0402752 0.032238 Vertex 6796 -0.060805 0.0867676 -0.0196616 Vertex 6797 -0.0758951 0.123764 -0.00763971 Vertex 6798 -0.0408247 0.092859 -0.0231395 Vertex 6799 -0.0638117 0.0867138 -0.0190744 Vertex 6800 -0.061937 0.111099 -0.0150221 Vertex 6801 0.0449899 0.0861501 0.00118902 Vertex 6802 -0.0301636 0.153871 -0.00371356 Vertex 6803 -0.0895642 0.139283 0.0271809 Vertex 6804 -0.0540878 0.128312 0.0358453 Vertex 6805 -0.0558676 0.0941545 -0.0217392 Vertex 6806 -0.0548497 0.0941617 -0.0218342 Vertex 6807 -0.0568623 0.0941345 -0.0215512 Vertex 6808 -0.0578481 0.0940916 -0.0211113 Vertex 6809 -0.0632023 0.166731 -0.0605917 Vertex 6810 0.00013405 0.105909 -0.0216496 Vertex 6811 -0.0470477 0.150201 -0.00445632 Vertex 6812 -0.0388402 0.0957243 -0.0226737 Vertex 6813 -0.0468309 0.0956366 -0.0220125 Vertex 6814 -0.0488321 0.0956358 -0.0221459 Vertex 6815 0.0289271 0.110086 0.0349831 Vertex 6816 -0.0762945 0.152787 -0.0118902 Vertex 6817 -0.0549619 0.14242 0.0292765 Vertex 6818 -0.0576661 0.143885 0.0324483 Vertex 6819 -0.0808584 0.15153 0.0328055 Vertex 6820 -0.067513 0.132633 0.0463034 Vertex 6821 -0.0361357 0.127268 0.00216052 Vertex 6822 -0.0556091 0.0372359 0.0469697 Vertex 6823 -0.054442 0.0373135 0.0469328 Vertex 6824 -0.0532705 0.0373829 0.0469289 Vertex 6825 -0.0522198 0.0374253 0.0467614 Vertex 6826 -0.05111 0.0375368 0.0465746 Vertex 6827 -0.0501186 0.0375352 0.0462556 Vertex 6828 -0.0491606 0.0375682 0.0458781 Vertex 6829 -0.0481382 0.0376145 0.0455768 Vertex 6830 -0.0470957 0.0376632 0.0453493 Vertex 6831 -0.0460199 0.0377083 0.0451098 Vertex 6832 -0.0451209 0.0377458 0.0446873 Vertex 6833 -0.0440293 0.0378087 0.0445145 Vertex 6834 -0.0431166 0.0378307 0.0441123 Vertex 6835 -0.0833395 0.103378 -0.00262342 Vertex 6836 -0.089178 0.137924 0.0381661 Vertex 6837 -0.0512299 0.133896 0.029412 Vertex 6838 -0.0518432 0.133909 0.0302884 Vertex 6839 -0.0855599 0.112052 0.0307632 Vertex 6840 0.0281295 0.110111 0.0355841 Vertex 6841 0.0302092 0.117283 0.0265434 Vertex 6842 -0.0826135 0.153724 0.024657 Vertex 6843 -0.0254725 0.0400777 0.0541415 Vertex 6844 -0.0242347 0.0401682 0.0541848 Vertex 6845 -0.0230647 0.0402418 0.0541248 Vertex 6846 -0.0219645 0.0403079 0.0539432 Vertex 6847 -0.0209874 0.04034 0.0536055 Vertex 6848 -0.0200226 0.0403705 0.0532551 Vertex 6849 -0.0190478 0.0404047 0.0529202 Vertex 6850 -0.0180327 0.0404537 0.0526147 Vertex 6851 -0.0170629 0.040485 0.0522671 Vertex 6852 -0.0161498 0.040504 0.0518582 Vertex 6853 -0.0151483 0.0405525 0.0515137 Vertex 6854 -0.0141847 0.0405865 0.0511605 Vertex 6855 -0.0132153 0.0406258 0.0508237 Vertex 6856 -0.012241 0.0406566 0.0504983 Vertex 6857 -0.0112354 0.0407042 0.0501624 Vertex 6858 -0.0102599 0.0407381 0.0498453 Vertex 6859 -0.00924245 0.0407867 0.049553 Vertex 6860 -0.00827698 0.0408222 0.049207 Vertex 6861 -0.00725841 0.0408714 0.048906 Vertex 6862 -0.00628355 0.0409075 0.0485853 Vertex 6863 -0.00525979 0.0409541 0.0483014 Vertex 6864 -0.00424346 0.0409986 0.0479883 Vertex 6865 -0.00327736 0.0410332 0.0476549 Vertex 6866 -0.00224884 0.0410819 0.0473849 Vertex 6867 -0.0012817 0.0411143 0.047028 Vertex 6868 -0.050793 0.124044 0.0335488 Vertex 6869 -0.0157908 0.169796 -0.0160148 Vertex 6870 -0.0243798 0.168291 -0.0108587 Vertex 6871 -0.0561131 0.145329 0.0311927 Vertex 6872 0.0247594 0.0929114 0.046503 Vertex 6873 0.0197097 0.119321 0.0339587 Vertex 6874 0.0374187 0.0855245 -0.0157145 Vertex 6875 0.00958152 0.0417197 0.0451866 Vertex 6876 0.0107427 0.041795 0.045086 Vertex 6877 0.0118435 0.0418607 0.0449613 Vertex 6878 0.0130004 0.0419341 0.0448362 Vertex 6879 0.014095 0.041997 0.0446638 Vertex 6880 0.0151979 0.0420601 0.0445385 Vertex 6881 0.0162788 0.0421207 0.0443108 Vertex 6882 0.0173062 0.0421724 0.0440438 Vertex 6883 0.0182702 0.0422045 0.0436952 Vertex 6884 0.0191204 0.042209 0.0431814 Vertex 6885 0.0199833 0.0422265 0.0426566 Vertex 6886 0.0207709 0.0422154 0.0420468 Vertex 6887 0.0216142 0.042218 0.0415059 Vertex 6888 0.0224333 0.0422246 0.0409441 Vertex 6889 0.0231834 0.0422122 0.040252 Vertex 6890 0.0238752 0.0421864 0.0394869 Vertex 6891 0.0245089 0.042142 0.038636 Vertex 6892 0.0265767 0.0994658 0.0420977 Vertex 6893 0.0371767 0.095465 0.0345819 Vertex 6894 0.0403868 0.0966272 0.0286723 Vertex 6895 0.0269196 0.0418157 0.0333163 Vertex 6896 0.0274612 0.0417732 0.0323464 Vertex 6897 0.0280618 0.0416802 0.0314173 Vertex 6898 0.0287437 0.0416628 0.0306503 Vertex 6899 0.0294554 0.0416168 0.02991 Vertex 6900 -0.0648009 0.0867059 -0.0190299 Vertex 6901 -0.0195264 0.159643 -0.00556617 Vertex 6902 -0.0127812 0.17424 -0.0204206 Vertex 6903 0.0207857 0.0994851 0.0460447 Vertex 6904 -0.0548201 0.128324 0.0365339 Vertex 6905 -0.0661452 0.115702 0.0482687 Vertex 6906 -0.0378274 0.0929022 -0.0235348 Vertex 6907 -0.038823 0.0928858 -0.0233898 Vertex 6908 -0.0528198 0.0927332 -0.0219739 Vertex 6909 -0.0518166 0.09273 -0.0219218 Vertex 6910 -0.0638596 0.0939187 -0.018635 Vertex 6911 -0.0688255 0.0937312 -0.0163709 Vertex 6912 -0.0678527 0.0937535 -0.0166708 Vertex 6913 -0.0628349 0.0939281 -0.0188357 Vertex 6914 -0.0618299 0.0939366 -0.0189413 Vertex 6915 -0.0498262 0.0941747 -0.0218116 Vertex 6916 -0.0488263 0.0941792 -0.0218889 Vertex 6917 -0.0368374 0.0957548 -0.023046 Vertex 6918 -0.0301525 0.168207 -0.0169318 Vertex 6919 -0.0561001 0.14389 0.0312058 Vertex 6920 -0.0568299 0.143897 0.0319274 Vertex 6921 -0.0647932 0.143933 0.0397518 Vertex 6922 0.0242791 0.118022 0.0317589 Vertex 6923 -0.0278275 0.158128 -8.54892e-06 Vertex 6924 -0.0414226 0.150668 0.00483874 Vertex 6925 0.0326457 0.113685 0.0274718 Vertex 6926 -0.0555634 0.0386377 0.0471443 Vertex 6927 -0.0543178 0.0387289 0.0471882 Vertex 6928 -0.0532086 0.0387959 0.0470712 Vertex 6929 -0.0522301 0.0388364 0.0467813 Vertex 6930 -0.0512629 0.0388692 0.0464256 Vertex 6931 -0.0503176 0.0388958 0.046006 Vertex 6932 -0.0493581 0.0389276 0.0456407 Vertex 6933 -0.0483957 0.0389613 0.0452757 Vertex 6934 -0.0473098 0.0390167 0.04506 Vertex 6935 -0.0462757 0.0390662 0.0448146 Vertex 6936 -0.0452605 0.0391077 0.0445023 Vertex 6937 -0.0442953 0.0391467 0.0441537 Vertex 6938 -0.0433217 0.0391871 0.0438385 Vertex 6939 -0.0423664 0.0392174 0.0434612 Vertex 6940 -0.070932 0.129672 -0.00889239 Vertex 6941 -0.0257849 0.174205 -0.0110873 Vertex 6942 -0.0219159 0.175693 -0.0142737 Vertex 6943 -0.0155071 0.175699 -0.0190868 Vertex 6944 -0.0323725 0.16532 -0.00484492 Vertex 6945 -0.0364476 0.166788 -0.00019754 Vertex 6946 0.00123889 0.0998292 0.0485145 Vertex 6947 -0.0255484 0.0414464 0.0539815 Vertex 6948 -0.0243246 0.0415463 0.0540712 Vertex 6949 -0.0230864 0.0416339 0.0540702 Vertex 6950 -0.0220331 0.041681 0.0538782 Vertex 6951 -0.0210104 0.0417331 0.053591 Vertex 6952 -0.0200406 0.0417644 0.0532372 Vertex 6953 -0.019019 0.0418114 0.0529435 Vertex 6954 -0.0180479 0.0418467 0.0526068 Vertex 6955 -0.0170777 0.0418831 0.0522589 Vertex 6956 -0.0161113 0.0419173 0.0519008 Vertex 6957 -0.0151514 0.041952 0.0515406 Vertex 6958 -0.0141936 0.0419832 0.0511586 Vertex 6959 -0.0132404 0.0420117 0.0507817 Vertex 6960 -0.0122664 0.0420539 0.0504523 Vertex 6961 -0.0113055 0.0420913 0.0500945 Vertex 6962 -0.0102821 0.0421361 0.0498123 Vertex 6963 -0.00925999 0.0421824 0.0495336 Vertex 6964 -0.00828946 0.0422134 0.0491908 Vertex 6965 -0.00727442 0.0422617 0.0488857 Vertex 6966 -0.00631217 0.0422986 0.0485312 Vertex 6967 -0.00534534 0.0423344 0.0481709 Vertex 6968 -0.00432524 0.0423738 0.047881 Vertex 6969 -0.00335674 0.0424141 0.0475525 Vertex 6970 -0.0023893 0.0424447 0.047211 Vertex 6971 -0.00138527 0.0424799 0.0468649 Vertex 6972 -0.0616099 0.158421 -0.0325909 Vertex 6973 -0.0555716 0.122697 0.0389476 Vertex 6974 -0.0541027 0.122637 0.0375656 Vertex 6975 -0.0395679 0.152136 0.0040279 Vertex 6976 -0.0353519 0.169773 -0.000327923 Vertex 6977 -0.0563034 0.124125 0.0396482 Vertex 6978 -0.0527116 0.12267 0.0360612 Vertex 6979 -0.0289779 0.174216 -0.00689295 Vertex 6980 -0.0638003 0.110914 0.037425 Vertex 6981 0.0296359 0.112746 0.0324848 Vertex 6982 0.0105917 0.043143 0.0448676 Vertex 6983 0.0117525 0.0432202 0.0447834 Vertex 6984 0.0128496 0.0432822 0.0446281 Vertex 6985 0.0140069 0.0433574 0.0445182 Vertex 6986 0.0151117 0.0434234 0.0444141 Vertex 6987 0.0162591 0.0434903 0.0442636 Vertex 6988 0.017284 0.0435398 0.0440147 Vertex 6989 0.0182033 0.0435661 0.0436183 Vertex 6990 0.0191474 0.0435971 0.0432171 Vertex 6991 0.019989 0.0436019 0.0426848 Vertex 6992 0.020822 0.043607 0.0421342 Vertex 6993 0.0216558 0.0436146 0.0415846 Vertex 6994 0.0224871 0.0436168 0.0410219 Vertex 6995 0.0233312 0.0436331 0.0404882 Vertex 6996 0.0240686 0.0436305 0.0398361 Vertex 6997 0.0247589 0.0435818 0.039017 Vertex 6998 0.025334 0.0435501 0.0381106 Vertex 6999 0.0259166 0.0434925 0.0371741 Vertex 7000 0.0264406 0.0434552 0.0361928 Vertex 7001 0.027039 0.0433782 0.0352623 Vertex 7002 0.0275719 0.0433403 0.0342886 Vertex 7003 0.0280869 0.0432543 0.0332457 Vertex 7004 0.0286707 0.0432432 0.0323583 Vertex 7005 0.0292762 0.0431552 0.0314362 Vertex 7006 0.029915 0.0430998 0.0305942 Vertex 7007 0.0306407 0.0431175 0.0298982 Vertex 7008 -0.0577458 0.131139 0.0375772 Vertex 7009 -0.0651404 0.112408 0.0390225 Vertex 7010 -0.0777857 0.156925 -0.0179137 Vertex 7011 -0.0681644 0.132655 0.0471068 Vertex 7012 0.0453685 0.090397 0.014157 Vertex 7013 -0.0638988 0.109582 -0.0144399 Vertex 7014 -0.0728744 0.10362 -0.0122376 Vertex 7015 -0.0679136 0.113718 -0.0102762 Vertex 7016 -0.033131 0.166707 -0.0157536 Vertex 7017 -0.0328324 0.0929676 -0.0240794 Vertex 7018 -0.0318386 0.0929851 -0.0242124 Vertex 7019 -0.0338313 0.0929547 -0.0239607 Vertex 7020 -0.034827 0.0929417 -0.0239227 Vertex 7021 -0.0508195 0.0927229 -0.0217389 Vertex 7022 -0.0538265 0.0927341 -0.0220469 Vertex 7023 -0.0548298 0.0927311 -0.0220321 Vertex 7024 -0.0478299 0.094184 -0.0219241 Vertex 7025 -0.0518271 0.094161 -0.0217872 Vertex 7026 -0.0902689 0.112791 0.0182006 Vertex 7027 -0.0578782 0.0955404 -0.0210377 Vertex 7028 -0.041838 0.0942787 -0.0228038 Vertex 7029 0.0402513 0.0940026 0.0302416 Vertex 7030 -0.0654625 0.143948 0.0405383 Vertex 7031 -0.0474034 0.126784 0.0277907 Vertex 7032 -0.0546077 0.131128 0.0350935 Vertex 7033 -0.0218748 0.174208 -0.0142339 Vertex 7034 -0.0226834 0.174208 -0.0136486 Vertex 7035 -0.0194066 0.174211 -0.0159442 Vertex 7036 -0.0514201 0.121192 0.0343754 Vertex 7037 -0.0575802 0.14965 0.0326026 Vertex 7038 -0.0534339 0.040168 0.0467985 Vertex 7039 -0.0523414 0.0402098 0.0465679 Vertex 7040 -0.0513639 0.0402537 0.0462611 Vertex 7041 -0.050462 0.0402796 0.0458238 Vertex 7042 -0.0495628 0.0402984 0.0453668 Vertex 7043 -0.0486202 0.0403225 0.04496 Vertex 7044 -0.0475948 0.0403553 0.044655 Vertex 7045 -0.0465484 0.0404249 0.0444582 Vertex 7046 -0.0454716 0.0404727 0.0442216 Vertex 7047 -0.0445641 0.0405033 0.0438121 Vertex 7048 -0.0435452 0.0405422 0.0435069 Vertex 7049 0.0445378 0.0959706 0.0101622 Vertex 7050 0.0434078 0.0958974 0.0221477 Vertex 7051 -0.0287922 0.165339 -0.00670006 Vertex 7052 -0.0211402 0.175693 -0.0149194 Vertex 7053 -0.0146968 0.175692 -0.019662 Vertex 7054 -0.0340447 0.1653 -0.00374721 Vertex 7055 -0.0432329 0.156565 0.00586077 Vertex 7056 -0.0522319 0.125489 0.0349878 Vertex 7057 -0.0489018 0.129654 0.0292632 Vertex 7058 -0.024542 0.0428919 0.0537128 Vertex 7059 -0.0233033 0.0429927 0.0537933 Vertex 7060 -0.021105 0.0431099 0.0534593 Vertex 7061 -0.020119 0.0431531 0.0531418 Vertex 7062 -0.0191016 0.0431933 0.0528315 Vertex 7063 -0.0181329 0.0432293 0.0524811 Vertex 7064 -0.0171714 0.0432613 0.0521182 Vertex 7065 -0.0161975 0.0432999 0.0517769 Vertex 7066 -0.0152962 0.0433291 0.0513434 Vertex 7067 -0.0473623 0.129578 0.0262098 Vertex 7068 -0.0465019 0.129507 0.0239285 Vertex 7069 0.0388648 0.0842467 -0.0137667 Vertex 7070 -0.0482032 0.131003 0.0267578 Vertex 7071 -0.0486855 0.131027 0.0278379 Vertex 7072 -0.0562637 0.142432 0.0309288 Vertex 7073 -0.0521483 0.153554 0.0122178 Vertex 7074 0.0393676 0.0927337 0.0325144 Vertex 7075 -0.0664004 0.120055 0.0514481 Vertex 7076 -0.0239226 0.16684 -0.0101968 Vertex 7077 0.024391 0.115338 0.0336864 Vertex 7078 0.026456 0.0929171 0.0454329 Vertex 7079 -0.0516682 0.152149 0.0128837 Vertex 7080 -0.0264155 0.169752 -0.0102811 Vertex 7081 -0.0317772 0.169741 -0.00573949 Vertex 7082 -0.0335104 0.169764 -0.00293532 Vertex 7083 -0.0187772 0.186086 -0.0166294 Vertex 7084 0.0238707 0.0929061 0.0469915 Vertex 7085 -0.0932424 0.12021 0.0392849 Vertex 7086 -0.0271731 0.174192 -0.00959576 Vertex 7087 -0.0273345 0.172717 -0.009826 Vertex 7088 -0.0166904 0.169787 -0.0155577 Vertex 7089 0.0104651 0.0444795 0.0447526 Vertex 7090 0.011492 0.0445292 0.0444785 Vertex 7091 0.0125747 0.0445985 0.0442752 Vertex 7092 0.0136703 0.0446634 0.0441067 Vertex 7093 0.0148253 0.0447411 0.0439981 Vertex 7094 0.0159735 0.0448127 0.0438765 Vertex 7095 0.0170625 0.0448711 0.043693 Vertex 7096 0.0180456 0.044911 0.0433906 Vertex 7097 0.0189949 0.0449386 0.0430002 Vertex 7098 0.0198821 0.0449543 0.0425235 Vertex 7099 0.0207685 0.0449736 0.0420523 Vertex 7100 0.0215827 0.0449804 0.0414892 Vertex 7101 0.0223863 0.0449715 0.0408911 Vertex 7102 0.0232083 0.0449556 0.0403488 Vertex 7103 0.0240034 0.0449703 0.0396985 Vertex 7104 0.0247856 0.0449735 0.0390757 Vertex 7105 0.0255017 0.0449453 0.0383425 Vertex 7106 0.0261947 0.0449183 0.0375802 Vertex 7107 0.0268698 0.0448976 0.0368034 Vertex 7108 0.0275411 0.044881 0.0360262 Vertex 7109 0.0281364 0.0448054 0.035097 Vertex 7110 0.0287018 0.0447465 0.0341399 Vertex 7111 0.0292606 0.0447502 0.0332372 Vertex 7112 0.0297787 0.0446629 0.032196 Vertex 7113 0.0304194 0.0446109 0.0313507 Vertex 7114 0.0311169 0.0445787 0.030603 Vertex 7115 -0.0528036 0.129718 0.0341858 Vertex 7116 -0.052373 0.126911 0.0347775 Vertex 7117 -0.0668418 0.138273 0.0438208 Vertex 7118 -0.06623 0.13826 0.0429445 Vertex 7119 -0.0326084 0.171239 -0.00339173 Vertex 7120 0.0274866 0.0994982 0.0416519 Vertex 7121 -0.0638846 0.103946 -0.0172176 Vertex 7122 -0.0351127 0.162221 -0.0139882 Vertex 7123 -0.0708102 0.086505 -0.0166182 Vertex 7124 -0.0728007 0.0864364 -0.0158265 Vertex 7125 -0.058796 0.0868581 -0.0207882 Vertex 7126 -0.0833705 0.0767799 0.0142875 Vertex 7127 -0.0629734 0.126755 -0.00855487 Vertex 7128 -0.0517979 0.0869425 -0.0216307 Vertex 7129 -0.071904 0.103673 -0.0126696 Vertex 7130 -0.0308424 0.0930072 -0.0244625 Vertex 7131 -0.0298299 0.09304 -0.0247313 Vertex 7132 -0.0508247 0.0941547 -0.0216781 Vertex 7133 -0.0468308 0.0941893 -0.021914 Vertex 7134 -0.0428369 0.0942645 -0.0226678 Vertex 7135 -0.0658054 0.0924099 -0.017991 Vertex 7136 0.03375 0.0929319 0.0401542 Vertex 7137 0.0187381 0.119283 0.0342968 Vertex 7138 -0.051308 0.153569 0.0116824 Vertex 7139 -0.0656926 0.125639 0.0489587 Vertex 7140 -0.0671096 0.125666 0.0504247 Vertex 7141 -0.02106 0.174206 -0.0148174 Vertex 7142 -0.018574 0.174216 -0.0164984 Vertex 7143 -0.0370531 0.166795 0.000693639 Vertex 7144 -0.0462814 0.155049 0.00841735 Vertex 7145 -0.011981 0.180127 -0.0244833 Vertex 7146 -0.00120988 0.105335 0.044053 Vertex 7147 -0.0197585 0.171251 -0.0147167 Vertex 7148 -0.0516597 0.0416063 0.0458402 Vertex 7149 -0.0506214 0.0416531 0.0455899 Vertex 7150 -0.0497297 0.0416675 0.0451167 Vertex 7151 -0.0488285 0.0416917 0.0446681 Vertex 7152 -0.0573508 0.121267 0.0398601 Vertex 7153 -0.062689 0.110949 0.0372761 Vertex 7154 -0.0554658 0.14959 0.0286413 Vertex 7155 -0.0559672 0.149602 0.0296453 Vertex 7156 -0.0436971 0.0419128 0.0432773 Vertex 7157 -0.0559297 0.13815 0.0313829 Vertex 7158 -0.0945397 0.121475 0.0202819 Vertex 7159 -0.0297036 0.165315 -0.00626903 Vertex 7160 -0.0203588 0.175699 -0.0155519 Vertex 7161 -0.0711733 0.128436 0.0516087 Vertex 7162 -0.0138948 0.17568 -0.0202542 Vertex 7163 -0.0362329 0.165306 -0.00162934 Vertex 7164 -0.0417786 0.156522 0.00614116 Vertex 7165 -0.0396922 0.156587 0.00568688 Vertex 7166 0.0451024 0.091769 0.003186 Vertex 7167 -0.0433646 0.153626 0.00736711 Vertex 7168 -0.0484634 0.122511 0.0297787 Vertex 7169 -0.0213253 0.0444675 0.0531428 Vertex 7170 -0.0193027 0.0445534 0.0525624 Vertex 7171 -0.0183468 0.0445922 0.0521871 Vertex 7172 0.0390662 0.103279 0.0267541 Vertex 7173 -0.0653253 0.142516 0.0407395 Vertex 7174 -0.0930555 0.120208 0.0402916 Vertex 7175 -0.0523769 0.119775 0.034728 Vertex 7176 0.0456627 0.0890114 0.0111648 Vertex 7177 -0.0896003 0.111903 0.0133388 Vertex 7178 -0.0597218 0.118329 0.0399103 Vertex 7179 -0.0424973 0.155091 0.0068798 Vertex 7180 0.0434376 0.0874432 0.0261531 Vertex 7181 -0.0578054 0.142438 0.0322424 Vertex 7182 0.0409317 0.0971197 -0.00479362 Vertex 7183 0.022067 0.0981797 0.0461337 Vertex 7184 0.0387224 0.1084 0.018173 Vertex 7185 -0.0538472 0.144686 0.025416 Vertex 7186 -0.0501252 0.138572 0.00341268 Vertex 7187 -0.0522249 0.152155 0.0138449 Vertex 7188 -0.0220745 0.169763 -0.0127977 Vertex 7189 -0.0162469 0.184587 -0.0200786 Vertex 7190 -0.0863798 0.100827 0.00341316 Vertex 7191 -0.0543637 0.116891 0.0353365 Vertex 7192 -0.0181983 0.18599 -0.0174024 Vertex 7193 -0.0332203 0.171246 -0.00251328 Vertex 7194 -0.0699145 0.135483 0.0481625 Vertex 7195 -0.059392 0.149673 0.0353015 Vertex 7196 -0.0548348 0.124111 0.0382711 Vertex 7197 0.0103735 0.0460953 0.0463477 Vertex 7198 0.0109544 0.0459934 0.0454216 Vertex 7199 0.0116939 0.0459283 0.0447695 Vertex 7200 0.0125996 0.0459414 0.0443461 Vertex 7201 0.0136057 0.0460076 0.0440344 Vertex 7202 0.0146321 0.0460649 0.043757 Vertex 7203 0.0157166 0.0461353 0.0435597 Vertex 7204 0.0167377 0.0461846 0.0432665 Vertex 7205 0.0177513 0.0462342 0.0429632 Vertex 7206 0.0187045 0.0462587 0.0425837 Vertex 7207 0.0196022 0.0462781 0.0421275 Vertex 7208 0.0205709 0.0463131 0.0417824 Vertex 7209 0.0214143 0.0463213 0.0412437 Vertex 7210 0.0222429 0.0463236 0.0406841 Vertex 7211 0.0230588 0.0463265 0.0401038 Vertex 7212 0.0238729 0.0463312 0.0395213 Vertex 7213 0.0247031 0.0463341 0.0389677 Vertex 7214 0.0255511 0.0463382 0.0384325 Vertex 7215 0.026348 0.0463448 0.037827 Vertex 7216 0.0271142 0.0463333 0.0371793 Vertex 7217 0.0278587 0.0463325 0.0365003 Vertex 7218 0.0285634 0.0463012 0.0357516 Vertex 7219 0.0291872 0.0462618 0.034893 Vertex 7220 0.0297504 0.0462054 0.0339396 Vertex 7221 0.0302609 0.0461225 0.032895 Vertex 7222 0.0308648 0.0460986 0.0320207 Vertex 7223 0.031559 0.0460718 0.0312637 Vertex 7224 0.0323835 0.0460752 0.0307026 Vertex 7225 -0.0557637 0.121264 0.0386516 Vertex 7226 -0.0590987 0.135299 0.0356206 Vertex 7227 -0.0599957 0.135288 0.0360766 Vertex 7228 -0.0606335 0.122654 0.0421622 Vertex 7229 0.0202304 0.105998 0.0417108 Vertex 7230 0.0412042 0.046738 0.0312341 Vertex 7231 0.0421124 0.0467315 0.0307997 Vertex 7232 0.0429421 0.0467386 0.030224 Vertex 7233 0.0445157 0.0467554 0.0289718 Vertex 7234 0.0452769 0.0467388 0.0283148 Vertex 7235 0.0460481 0.046714 0.0276632 Vertex 7236 0.0468601 0.0467385 0.0270828 Vertex 7237 0.0476236 0.0467222 0.0264254 Vertex 7238 0.048317 0.0466984 0.0256626 Vertex 7239 0.0489576 0.0466396 0.0248167 Vertex 7240 0.0495971 0.0465817 0.0239661 Vertex 7241 0.0503991 0.0466746 0.0233055 Vertex 7242 0.0518495 0.0464359 0.0201911 Vertex 7243 -0.0353516 0.166776 -0.00214363 Vertex 7244 -0.0849284 0.107666 0.0223625 Vertex 7245 -0.00751389 0.102333 0.0437439 Vertex 7246 -0.0686541 0.12565 0.0517171 Vertex 7247 -0.0151953 0.168341 -0.0151527 Vertex 7248 -0.0177411 0.17422 -0.017052 Vertex 7249 0.0210633 0.106016 0.0411627 Vertex 7250 -0.011641 0.172783 -0.0205328 Vertex 7251 -0.0455099 0.155064 0.0077969 Vertex 7252 -0.0198225 0.168315 -0.0130587 Vertex 7253 -0.0629684 0.139576 0.0370615 Vertex 7254 0.0217664 0.106013 0.0404033 Vertex 7255 -0.0520295 0.0429585 0.0453289 Vertex 7256 -0.0510681 0.0429687 0.0449412 Vertex 7257 -0.0501084 0.0429877 0.0445637 Vertex 7258 -0.0491293 0.0430398 0.0442413 Vertex 7259 0.0225195 0.106011 0.0397482 Vertex 7260 -0.0225871 0.168294 -0.0117855 Vertex 7261 -0.0554928 0.148133 0.0286364 Vertex 7262 -0.0589342 0.12267 0.0410891 Vertex 7263 -0.0439305 0.0432632 0.0429545 Vertex 7264 0.0245524 0.106048 0.0391612 Vertex 7265 -0.0634859 0.146784 0.0381458 Vertex 7266 -0.0306082 0.165302 -0.00581873 Vertex 7267 -0.0171047 0.17569 -0.0178772 Vertex 7268 -0.0110217 0.175722 -0.0231509 Vertex 7269 -0.0116954 0.175688 -0.0223293 Vertex 7270 -0.0483961 0.150684 0.0105827 Vertex 7271 -0.0620233 0.159983 -0.0376027 Vertex 7272 -0.0283728 0.156641 -0.000811787 Vertex 7273 0.0281029 0.0968693 0.0425418 Vertex 7274 -0.0633963 0.145356 0.0382744 Vertex 7275 0.0255102 0.106068 0.0387825 Vertex 7276 0.0264539 0.106068 0.0383874 Vertex 7277 0.0273536 0.106086 0.0379553 Vertex 7278 0.0282036 0.106111 0.0374341 Vertex 7279 0.0290261 0.106116 0.036871 Vertex 7280 -0.0633716 0.143922 0.0382956 Vertex 7281 -0.0606527 0.151084 0.0352378 Vertex 7282 -0.0858054 0.102155 0.00239755 Vertex 7283 -0.0476365 0.150675 0.00992423 Vertex 7284 -0.0468871 0.150669 0.00925072 Vertex 7285 -0.0273383 0.17123 -0.0098418 Vertex 7286 -0.0119937 0.164096 -0.013967 Vertex 7287 0.0413723 0.0971667 -0.00382246 Vertex 7288 -0.033844 0.171255 -0.00164046 Vertex 7289 -0.0570356 0.142438 0.0315884 Vertex 7290 -0.0181795 0.183113 -0.0176247 Vertex 7291 -0.014344 0.183095 -0.0226028 Vertex 7292 -0.0130965 0.169821 -0.0173751 Vertex 7293 -0.0175848 0.169785 -0.0150947 Vertex 7294 -0.0198636 0.184564 -0.0147357 Vertex 7295 -0.0156627 0.184575 -0.0209705 Vertex 7296 -0.0341025 0.169759 -0.00204136 Vertex 7297 -0.0232213 0.183101 -0.0108227 Vertex 7298 0.0375934 0.102015 0.0299178 Vertex 7299 0.0298444 0.106115 0.0363002 Vertex 7300 0.0305908 0.106106 0.0356297 Vertex 7301 0.0313444 0.106098 0.0349666 Vertex 7302 0.0109534 0.0475021 0.0472035 Vertex 7303 0.011631 0.0474937 0.0464252 Vertex 7304 0.0125029 0.0475354 0.045933 Vertex 7305 0.0133395 0.0475307 0.0453837 Vertex 7306 0.0141656 0.0475343 0.0448184 Vertex 7307 0.0149498 0.0475024 0.0442108 Vertex 7308 0.0158441 0.0475203 0.043749 Vertex 7309 0.0166876 0.0475243 0.0432195 Vertex 7310 0.0175786 0.0475536 0.0427473 Vertex 7311 0.0184606 0.0475775 0.0422564 Vertex 7312 0.0193551 0.0475975 0.0417872 Vertex 7313 0.0203005 0.047637 0.041402 Vertex 7314 0.0212154 0.0476501 0.0409677 Vertex 7315 0.0220994 0.0476682 0.0404859 Vertex 7316 0.0229251 0.0476731 0.039919 Vertex 7317 0.0237846 0.0476926 0.0394013 Vertex 7318 0.0246905 0.0477085 0.0389599 Vertex 7319 0.0255945 0.0477251 0.0385093 Vertex 7320 0.0264669 0.0477487 0.0380114 Vertex 7321 0.0272987 0.047751 0.0374572 Vertex 7322 0.0281109 0.0477624 0.0368744 Vertex 7323 0.0288766 0.0477511 0.0362254 Vertex 7324 0.0295798 0.047722 0.0354768 Vertex 7325 0.0301953 0.0476864 0.0346108 Vertex 7326 0.0307633 0.0476275 0.0336614 Vertex 7327 0.0313304 0.0475675 0.0327114 Vertex 7328 0.0319703 0.0475137 0.0318758 Vertex 7329 0.0327662 0.0475454 0.0312717 Vertex 7330 0.0320567 0.106099 0.0342281 Vertex 7331 -0.0640141 0.128346 0.0443555 Vertex 7332 -0.0634251 0.128316 0.0434644 Vertex 7333 -0.062835 0.128322 0.0425151 Vertex 7334 0.0326969 0.10609 0.0333845 Vertex 7335 0.033372 0.106071 0.0326127 Vertex 7336 0.0418096 0.0482673 0.0320498 Vertex 7337 0.0427154 0.0482477 0.0316879 Vertex 7338 0.0435987 0.0482711 0.0311843 Vertex 7339 0.0444321 0.0482656 0.0306384 Vertex 7340 0.0452145 0.0482364 0.0300085 Vertex 7341 0.0460187 0.0482649 0.029417 Vertex 7342 0.0467715 0.0482711 0.0287479 Vertex 7343 0.0475389 0.0482604 0.0280949 Vertex 7344 0.0482658 0.0482112 0.0273759 Vertex 7345 0.0490097 0.0482239 0.0267018 Vertex 7346 0.0497106 0.0482066 0.0259506 Vertex 7347 0.050389 0.0482108 0.0251806 Vertex 7348 0.0510319 0.0481609 0.0243415 Vertex 7349 0.0517118 0.048146 0.0235716 Vertex 7350 0.0522449 0.0480372 0.0225432 Vertex 7351 0.0528302 0.048039 0.0216552 Vertex 7352 0.0395831 0.0953666 0.0310696 Vertex 7353 -0.0527869 0.124083 0.0359567 Vertex 7354 -0.0571323 0.14819 0.0314465 Vertex 7355 -0.0188778 0.168283 -0.0134663 Vertex 7356 0.0271211 0.103444 0.039376 Vertex 7357 0.00749812 0.109597 0.0408218 Vertex 7358 -0.0265586 0.171236 -0.0104749 Vertex 7359 -0.0169066 0.174228 -0.0176024 Vertex 7360 -0.0419337 0.160883 0.00416203 Vertex 7361 -0.0434567 0.155083 0.00724724 Vertex 7362 -0.0444935 0.155066 0.00750552 Vertex 7363 0.0154861 0.0927165 0.0506449 Vertex 7364 0.0340178 0.106064 0.0317678 Vertex 7365 -0.0524783 0.0442541 0.0446515 Vertex 7366 0.0346837 0.106039 0.030986 Vertex 7367 0.0353616 0.106017 0.0302164 Vertex 7368 0.0360105 0.106014 0.0293761 Vertex 7369 0.0223261 0.116663 0.0342169 Vertex 7370 -0.0553627 0.139574 0.0304759 Vertex 7371 -0.0621593 0.13389 0.0382274 Vertex 7372 -0.0592645 0.138135 0.0336221 Vertex 7373 0.0366723 0.106016 0.0285439 Vertex 7374 0.0373363 0.105992 0.0277645 Vertex 7375 -0.0563111 0.122698 0.0396267 Vertex 7376 -0.0464295 0.156494 0.00819518 Vertex 7377 -0.0314988 0.165308 -0.00534483 Vertex 7378 -0.0332166 0.165305 -0.0043102 Vertex 7379 -0.013157 0.175712 -0.0209577 Vertex 7380 0.0422452 0.0986357 -0.000817871 Vertex 7381 -0.0724396 0.129821 0.051541 Vertex 7382 0.037882 0.105959 0.026802 Vertex 7383 -0.0147714 0.163994 -0.0109737 Vertex 7384 -0.0275574 0.156658 -0.00139783 Vertex 7385 -0.0498016 0.128288 0.0314623 Vertex 7386 -0.0293172 0.172724 -0.00740528 Vertex 7387 -0.0660181 0.127026 0.048508 Vertex 7388 0.0405341 0.105626 0.00416435 Vertex 7389 -0.0543933 0.14384 0.0284354 Vertex 7390 -0.0389566 0.155104 0.00497717 Vertex 7391 -0.0685902 0.112767 0.0465657 Vertex 7392 -0.0185636 0.161122 -0.00592394 Vertex 7393 -0.0193913 0.161115 -0.00536021 Vertex 7394 -0.0201769 0.16108 -0.00474531 Vertex 7395 -0.0461015 0.150679 0.0086365 Vertex 7396 -0.0427476 0.159417 0.00474491 Vertex 7397 -0.0201931 0.18164 -0.0152257 Vertex 7398 -0.0162281 0.181624 -0.0200739 Vertex 7399 -0.0123081 0.181626 -0.0249909 Vertex 7400 -0.0675811 0.143978 0.0427672 Vertex 7401 -0.0176301 0.183064 -0.0184359 Vertex 7402 0.0296649 0.110072 0.0343033 Vertex 7403 -0.0139903 0.169817 -0.0169155 Vertex 7404 -0.0184806 0.169783 -0.0146335 Vertex 7405 -0.0229677 0.169763 -0.0123298 Vertex 7406 -0.0272508 0.169746 -0.00972716 Vertex 7407 -0.0323986 0.169744 -0.00487272 Vertex 7408 -0.0387576 0.152152 0.00343994 Vertex 7409 -0.0379926 0.15214 0.00278328 Vertex 7410 -0.021763 0.159801 -0.0034487 Vertex 7411 0.0407791 0.105635 0.00716484 Vertex 7412 0.0114179 0.0489704 0.047894 Vertex 7413 0.0122811 0.0490196 0.0473922 Vertex 7414 0.0130474 0.0490028 0.046739 Vertex 7415 0.0138699 0.049008 0.0461763 Vertex 7416 0.0147035 0.0490065 0.0456198 Vertex 7417 0.0155215 0.0490175 0.0450471 Vertex 7418 0.0163088 0.048977 0.0444188 Vertex 7419 0.0171685 0.0490344 0.0439112 Vertex 7420 0.0179624 0.0489942 0.0433049 Vertex 7421 0.0187298 0.0489829 0.0426596 Vertex 7422 0.0194996 0.0489742 0.0420155 Vertex 7423 0.0203907 0.0490438 0.0415331 Vertex 7424 0.0212843 0.0490624 0.0410711 Vertex 7425 0.0221626 0.0490425 0.0405889 Vertex 7426 0.0230336 0.049071 0.0400904 Vertex 7427 0.0238579 0.0490757 0.0395236 Vertex 7428 0.0247439 0.0490967 0.0390469 Vertex 7429 0.0256959 0.0491338 0.0386649 Vertex 7430 0.0265887 0.0491527 0.0382012 Vertex 7431 0.0274263 0.0491525 0.0376576 Vertex 7432 0.028309 0.049176 0.0371723 Vertex 7433 0.0291455 0.0491758 0.0366259 Vertex 7434 0.0299119 0.0491593 0.0359714 Vertex 7435 0.030569 0.0491561 0.035175 Vertex 7436 0.0311853 0.0491232 0.0343139 Vertex 7437 0.0317849 0.0490447 0.0333888 Vertex 7438 0.0324736 0.0490215 0.0326282 Vertex 7439 0.0386899 0.0941002 0.0332667 Vertex 7440 -0.0598164 0.122657 0.0415831 Vertex 7441 -0.0610259 0.126912 0.0416133 Vertex 7442 -0.0601974 0.126918 0.041055 Vertex 7443 -0.0593157 0.126918 0.0405689 Vertex 7444 -0.0654105 0.124234 0.0493774 Vertex 7445 0.0256389 0.0929167 0.0460121 Vertex 7446 0.00655625 0.109588 0.0412446 Vertex 7447 0.0440424 0.0496996 0.0318585 Vertex 7448 0.0449219 0.0497223 0.0313654 Vertex 7449 0.0457541 0.0497206 0.0308161 Vertex 7450 0.0465277 0.0497043 0.0301725 Vertex 7451 0.0473251 0.0497353 0.0295737 Vertex 7452 0.048051 0.0496945 0.0288529 Vertex 7453 0.048793 0.049707 0.0281736 Vertex 7454 0.0495003 0.0496818 0.0274333 Vertex 7455 0.0502478 0.0496891 0.0267596 Vertex 7456 0.0509184 0.0496314 0.0259504 Vertex 7457 0.0515991 0.0496316 0.0251833 Vertex 7458 0.0522529 0.049588 0.0243549 Vertex 7459 0.052927 0.0495927 0.0235839 Vertex 7460 0.0535299 0.049514 0.0226619 Vertex 7461 -0.019247 0.158526 -0.00845424 Vertex 7462 0.00949301 0.118213 -0.015379 Vertex 7463 -0.0205565 0.183109 -0.0139659 Vertex 7464 0.0272037 0.100805 0.0412523 Vertex 7465 0.0262764 0.100811 0.0416679 Vertex 7466 0.0452514 0.0931962 0.00916141 Vertex 7467 -0.0163316 0.166866 -0.0132843 Vertex 7468 -0.056116 0.131133 0.036427 Vertex 7469 -0.0143864 0.174216 -0.0192271 Vertex 7470 -0.0168438 0.180138 -0.0192059 Vertex 7471 0.0409886 0.104212 0.016155 Vertex 7472 0.0305338 0.0929359 0.042541 Vertex 7473 0.0273486 0.110085 0.0362063 Vertex 7474 -0.0532837 0.0454354 0.0434394 Vertex 7475 0.0437374 0.0902563 -0.00280325 Vertex 7476 0.0208841 0.115302 0.0356376 Vertex 7477 0.0199488 0.115322 0.0360728 Vertex 7478 -0.0505409 0.146308 0.012527 Vertex 7479 -0.0546722 0.139567 0.0297056 Vertex 7480 -0.054069 0.139552 0.0288194 Vertex 7481 -0.0655581 0.135384 0.0421104 Vertex 7482 -0.0578223 0.12834 0.0392194 Vertex 7483 -0.0670308 0.141141 0.0435296 Vertex 7484 -0.0625718 0.1468 0.0377209 Vertex 7485 -0.0457713 0.156483 0.00739285 Vertex 7486 -0.0450603 0.156487 0.00667449 Vertex 7487 -0.0348542 0.165303 -0.00316457 Vertex 7488 -0.0104302 0.175693 -0.0238578 Vertex 7489 0.0432299 0.0944972 0.0241641 Vertex 7490 -0.0935142 0.126862 0.0142561 Vertex 7491 -0.0213985 0.181639 -0.0134576 Vertex 7492 -0.0262045 0.163884 -0.00647025 Vertex 7493 -0.0370175 0.163827 -0.00102436 Vertex 7494 -0.0350102 0.158094 0.00367693 Vertex 7495 -0.0340535 0.158097 0.00328753 Vertex 7496 -0.0163209 0.175704 -0.0185048 Vertex 7497 -0.0252429 0.163867 -0.00684922 Vertex 7498 -0.0420636 0.159404 0.00394669 Vertex 7499 -0.037536 0.159586 0.00182669 Vertex 7500 -0.0276413 0.159598 0.000270855 Vertex 7501 -0.0488679 0.135513 0.00441971 Vertex 7502 -0.0739006 0.162422 -0.0359639 Vertex 7503 -0.0113677 0.180126 -0.0253581 Vertex 7504 -0.0372275 0.160948 0.000450465 Vertex 7505 -0.0425799 0.160887 0.00499665 Vertex 7506 -0.0195581 0.181635 -0.0160858 Vertex 7507 -0.0155327 0.181625 -0.0208343 Vertex 7508 0.044722 0.0945895 0.0131657 Vertex 7509 -0.0218128 0.183092 -0.0122978 Vertex 7510 -0.0169176 0.183111 -0.0193016 Vertex 7511 -0.0497324 0.138579 0.00441928 Vertex 7512 -0.0289938 0.16114 -0.00164375 Vertex 7513 -0.0232543 0.181611 -0.01087 Vertex 7514 -0.0467665 0.152145 0.00944802 Vertex 7515 -0.0451779 0.152141 0.00822921 Vertex 7516 -0.0419573 0.15213 0.00584722 Vertex 7517 -0.0581231 0.149655 0.0336366 Vertex 7518 -0.0586918 0.149676 0.0345486 Vertex 7519 0.0318584 0.0981802 0.0392129 Vertex 7520 -0.0323351 0.172733 -0.00297212 Vertex 7521 0.0103976 0.0505032 0.04997 Vertex 7522 0.0112751 0.0505364 0.0494832 Vertex 7523 0.0120506 0.0505153 0.0488388 Vertex 7524 0.0128141 0.0504969 0.0481838 Vertex 7525 0.0135718 0.0504901 0.0475195 Vertex 7526 0.0143367 0.0504741 0.0468665 Vertex 7527 0.0151599 0.050478 0.0463014 Vertex 7528 0.0160439 0.0505074 0.0458237 Vertex 7529 0.0168973 0.0504721 0.0453108 Vertex 7530 0.0178346 0.0505132 0.0449253 Vertex 7531 0.0187703 0.0504962 0.0444745 Vertex 7532 0.0196134 0.0505877 0.0439573 Vertex 7533 0.0203519 0.0506032 0.0432764 Vertex 7534 0.0209931 0.0505428 0.042434 Vertex 7535 0.0217583 0.0505253 0.0417779 Vertex 7536 0.0226208 0.0505695 0.0412719 Vertex 7537 0.0234524 0.0505688 0.0407158 Vertex 7538 0.0241621 0.0505303 0.0399762 Vertex 7539 0.024912 0.0505255 0.0392969 Vertex 7540 0.0258633 0.0505634 0.0389033 Vertex 7541 0.0268091 0.0506065 0.038521 Vertex 7542 0.027653 0.0506012 0.0379885 Vertex 7543 0.028537 0.0506236 0.0375191 Vertex 7544 0.0294478 0.0506302 0.0370841 Vertex 7545 0.0302802 0.0506319 0.0365295 Vertex 7546 0.0309795 0.0506032 0.0357766 Vertex 7547 0.0315994 0.0505647 0.0349136 Vertex 7548 0.0322304 0.0505255 0.0340589 Vertex 7549 0.032875 0.0504741 0.0332188 Vertex 7550 0.0336067 0.0504819 0.0325279 Vertex 7551 -0.0619704 0.118373 0.041992 Vertex 7552 0.0239371 0.103424 0.0418106 Vertex 7553 -0.0642323 0.124186 0.0475964 Vertex 7554 -0.0647985 0.124215 0.0485 Vertex 7555 -0.0630437 0.12273 0.0457647 Vertex 7556 -0.0940023 0.125512 0.016258 Vertex 7557 -0.0429798 0.150656 0.00610371 Vertex 7558 0.0226682 0.115322 0.0347114 Vertex 7559 0.0443268 0.0511334 0.0322609 Vertex 7560 0.0452831 0.0511563 0.0319003 Vertex 7561 0.0461177 0.0511569 0.0313544 Vertex 7562 0.0469336 0.0511672 0.030779 Vertex 7563 0.0477122 0.0511499 0.0301456 Vertex 7564 0.0484686 0.0511467 0.0294828 Vertex 7565 0.0492058 0.0511603 0.0287949 Vertex 7566 0.0499493 0.051169 0.0281186 Vertex 7567 0.0506886 0.0511228 0.0274131 Vertex 7568 0.0514024 0.0510939 0.0266785 Vertex 7569 0.0521064 0.0510719 0.0259326 Vertex 7570 0.0527588 0.0510331 0.0250995 Vertex 7571 0.0534457 0.0510274 0.0243391 Vertex 7572 0.0541184 0.0510309 0.0235647 Vertex 7573 0.0547677 0.0509942 0.0227339 Vertex 7574 -0.0658844 0.114191 0.045149 Vertex 7575 0.0420568 0.0986443 0.0231563 Vertex 7576 -0.0151083 0.184586 -0.0219884 Vertex 7577 -0.0124071 0.172769 -0.0198823 Vertex 7578 0.0400088 0.107038 0.00721094 Vertex 7579 -0.0791963 0.108632 0.0349508 Vertex 7580 -0.0945263 0.121474 0.0192827 Vertex 7581 -0.0600908 0.115373 0.0375616 Vertex 7582 -0.049306 0.147765 0.0110054 Vertex 7583 -0.0113059 0.174226 -0.0217772 Vertex 7584 -0.0652787 0.173897 -0.0604957 Vertex 7585 -0.0175993 0.15966 -0.00802789 Vertex 7586 -0.0304269 0.169744 -0.0072967 Vertex 7587 -0.0864283 0.0954013 0.00141653 Vertex 7588 -0.0557216 0.125528 0.0387388 Vertex 7589 -0.0685912 0.131247 0.0482807 Vertex 7590 0.0246691 0.103387 0.0411037 Vertex 7591 -0.0632488 0.167828 -0.0435907 Vertex 7592 -0.0314998 0.155167 -8.72409e-05 Vertex 7593 0.0343966 0.0968432 0.0376227 Vertex 7594 0.0336609 0.0968599 0.0382997 Vertex 7595 0.0319556 0.0942571 0.0410831 Vertex 7596 -0.0201447 0.166816 -0.0117812 Vertex 7597 -0.0740333 0.13404 0.0510058 Vertex 7598 -0.0677529 0.141137 0.0442717 Vertex 7599 -0.0643328 0.146767 0.0386771 Vertex 7600 -0.0651408 0.146773 0.0392721 Vertex 7601 -0.0441588 0.156514 0.00623469 Vertex 7602 -0.0368214 0.16531 -0.000729186 Vertex 7603 -0.0875442 0.11045 0.0133403 Vertex 7604 0.0435656 0.0945094 0.0231538 Vertex 7605 -0.0678748 0.125664 0.0510849 Vertex 7606 -0.0233818 0.177171 -0.0128784 Vertex 7607 -0.0113718 0.177173 -0.0236196 Vertex 7608 -0.0188175 0.159674 -0.00630165 Vertex 7609 -0.0673807 0.115762 0.049991 Vertex 7610 -0.0223477 0.16248 -0.006155 Vertex 7611 -0.0291964 0.162421 -0.00376774 Vertex 7612 -0.0376923 0.162356 -0.000243841 Vertex 7613 -0.0674627 0.138295 0.0446438 Vertex 7614 -0.0368205 0.162344 -0.00074381 Vertex 7615 -0.0151964 0.178666 -0.0203777 Vertex 7616 -0.0161182 0.180144 -0.0199393 Vertex 7617 -0.0108703 0.180136 -0.0264173 Vertex 7618 -0.0381375 0.160902 0.00087141 Vertex 7619 -0.0399375 0.150681 0.00347523 Vertex 7620 -0.0214383 0.162534 -0.00657802 Vertex 7621 -0.0397849 0.155107 0.00553982 Vertex 7622 0.0436616 0.0987354 0.0121603 Vertex 7623 -0.0211614 0.183089 -0.0130948 Vertex 7624 -0.0355502 0.175589 -0.0109785 Vertex 7625 -0.089612 0.139257 0.0251846 Vertex 7626 -0.0491927 0.149222 0.0111539 Vertex 7627 -0.0345694 0.163827 -0.00275159 Vertex 7628 0.0156704 0.0936059 -0.0251021 Vertex 7629 0.0431201 0.0959054 0.0231686 Vertex 7630 0.0452857 0.0889846 0.0161633 Vertex 7631 0.00963825 0.115048 0.0386641 Vertex 7632 0.0100829 0.0519948 0.0512903 Vertex 7633 0.01097 0.0520216 0.0508135 Vertex 7634 0.0117499 0.0519912 0.0501875 Vertex 7635 0.0125099 0.0519837 0.0495237 Vertex 7636 0.0132667 0.0519749 0.0488584 Vertex 7637 0.0140142 0.0519753 0.0481823 Vertex 7638 0.0147704 0.0519654 0.0475176 Vertex 7639 0.0156112 0.0519525 0.0469795 Vertex 7640 0.0165747 0.0519808 0.0466207 Vertex 7641 0.0176026 0.0520233 0.0463575 Vertex 7642 0.0186389 0.0520546 0.0461071 Vertex 7643 0.0196453 0.0521206 0.045827 Vertex 7644 0.020413 0.0521197 0.0451417 Vertex 7645 0.0210892 0.0521114 0.044364 Vertex 7646 0.0217093 0.0520814 0.0434982 Vertex 7647 0.0224682 0.0520683 0.0428376 Vertex 7648 0.0231695 0.0520348 0.0420858 Vertex 7649 0.0239006 0.0520481 0.0413924 Vertex 7650 0.0245199 0.0520168 0.0405174 Vertex 7651 0.0253529 0.0520143 0.0399629 Vertex 7652 0.0262829 0.0520004 0.03955 Vertex 7653 0.0271955 0.0520724 0.0391174 Vertex 7654 0.0279356 0.0520839 0.0384098 Vertex 7655 0.0288613 0.0520696 0.0379853 Vertex 7656 0.0298168 0.052105 0.0376191 Vertex 7657 0.0306541 0.0520995 0.0370911 Vertex 7658 0.0313568 0.052068 0.0363454 Vertex 7659 0.0319954 0.0520213 0.0354999 Vertex 7660 0.0326336 0.0519746 0.0346532 Vertex 7661 0.0333394 0.0519958 0.0339463 Vertex 7662 0.0339979 0.0519394 0.0331121 Vertex 7663 0.0346832 0.0519191 0.0323364 Vertex 7664 0.0322341 0.112712 0.0291688 Vertex 7665 -0.0645764 0.139638 0.0400104 Vertex 7666 -0.0640931 0.122778 0.0478095 Vertex 7667 -0.063571 0.122754 0.0468224 Vertex 7668 -0.089161 0.137877 0.0251937 Vertex 7669 -0.0552077 0.119827 0.0376818 Vertex 7670 -0.0532978 0.147774 0.0234078 Vertex 7671 -0.0833424 0.104748 -0.00163012 Vertex 7672 0.0454513 0.052559 0.0321398 Vertex 7673 0.0464062 0.0525822 0.0317783 Vertex 7674 0.047238 0.0525837 0.0312359 Vertex 7675 0.0480167 0.0525694 0.0306027 Vertex 7676 0.048778 0.0525636 0.0299433 Vertex 7677 0.0495572 0.0525985 0.0293193 Vertex 7678 0.0503401 0.0525815 0.0286903 Vertex 7679 0.0511643 0.0525875 0.0281258 Vertex 7680 0.0519418 0.0525693 0.0274887 Vertex 7681 0.0526979 0.0525681 0.0268245 Vertex 7682 0.053394 0.0525543 0.0260735 Vertex 7683 0.0540378 0.0525213 0.0252382 Vertex 7684 0.0546919 0.0524816 0.0244106 Vertex 7685 0.0553581 0.0524903 0.0236336 Vertex 7686 0.0559546 0.0524347 0.0227151 Vertex 7687 0.0565327 0.0523952 0.0217798 Vertex 7688 0.0375235 0.0968947 -0.00979522 Vertex 7689 -0.0535442 0.129727 0.0348674 Vertex 7690 -0.0162539 0.171251 -0.016682 Vertex 7691 -0.0542914 0.129735 0.0355428 Vertex 7692 0.0353682 0.103387 0.0319873 Vertex 7693 -0.0663764 0.12565 0.049733 Vertex 7694 -0.0492044 0.143127 0.00539863 Vertex 7695 -0.00703497 0.101085 0.0445106 Vertex 7696 -0.0521465 0.121207 0.0350569 Vertex 7697 -0.092911 0.118706 0.0113064 Vertex 7698 -0.00908512 0.169637 -0.0217386 Vertex 7699 -0.043282 0.147753 0.00390043 Vertex 7700 -0.0850289 0.111596 0.00326083 Vertex 7701 -0.0467733 0.12389 0.0269319 Vertex 7702 -0.0516467 0.0481272 0.0388737 Vertex 7703 -0.0288706 0.171229 -0.00855169 Vertex 7704 -0.0306651 0.155159 -0.000638202 Vertex 7705 -0.0299153 0.155169 -0.001314 Vertex 7706 -0.0867205 0.102198 0.00542391 Vertex 7707 -0.0659345 0.109414 0.0377967 Vertex 7708 -0.0731223 0.134062 0.0505767 Vertex 7709 -0.0722303 0.134063 0.0500963 Vertex 7710 0.0146525 0.0927004 0.0511905 Vertex 7711 0.0230909 0.103393 0.0423419 Vertex 7712 -0.0687416 0.11428 0.0497375 Vertex 7713 -0.0406606 0.156554 0.00601794 Vertex 7714 -0.0492183 0.150688 0.0111503 Vertex 7715 0.0439268 0.0945301 0.0211547 Vertex 7716 -0.0226614 0.177177 -0.0135831 Vertex 7717 -0.0134729 0.17718 -0.0214028 Vertex 7718 0.03817 0.0983612 -0.0088053 Vertex 7719 -0.0278003 0.174225 -0.00868668 Vertex 7720 -0.0225444 0.178667 -0.0133919 Vertex 7721 -0.0144529 0.178665 -0.0210547 Vertex 7722 0.0357067 0.0981492 -0.0118335 Vertex 7723 -0.0384539 0.162349 0.000413916 Vertex 7724 -0.0241436 0.180147 -0.0104229 Vertex 7725 -0.0196754 0.180147 -0.0162801 Vertex 7726 -0.0153829 0.18014 -0.0206255 Vertex 7727 -0.0219245 0.161037 -0.00376903 Vertex 7728 -0.0139638 0.180133 -0.0220777 Vertex 7729 -0.0453102 0.150665 0.00801555 Vertex 7730 -0.0377749 0.150712 0.00133662 Vertex 7731 -0.0255881 0.169753 -0.0108444 Vertex 7732 -0.0124184 0.175705 -0.0216387 Vertex 7733 -0.0680504 0.12005 0.0525411 Vertex 7734 -0.0169241 0.181626 -0.0193127 Vertex 7735 -0.0182252 0.159192 -0.00975232 Vertex 7736 -0.0477527 0.149202 0.00972608 Vertex 7737 -0.0618749 0.161566 -0.0365945 Vertex 7738 -0.0523357 0.136679 0.027812 Vertex 7739 0.0387891 0.096727 0.0316453 Vertex 7740 -0.0894234 0.0956355 0.01542 Vertex 7741 -0.045027 0.168395 -0.00690925 Vertex 7742 -0.0475977 0.15214 0.0100027 Vertex 7743 0.0457823 0.0862054 0.00618349 Vertex 7744 -0.0281399 0.0917982 -0.0286003 Vertex 7745 0.0384784 0.105492 -0.00082855 Vertex 7746 0.0113635 0.0534706 0.0514016 Vertex 7747 0.012127 0.0534588 0.0507501 Vertex 7748 0.0128784 0.0534523 0.0500797 Vertex 7749 0.0136405 0.0534411 0.0494225 Vertex 7750 0.014348 0.0534071 0.0486823 Vertex 7751 0.0151695 0.0534137 0.0481113 Vertex 7752 0.0161135 0.0534638 0.0477167 Vertex 7753 0.0171483 0.0535046 0.047456 Vertex 7754 0.0181885 0.053509 0.04724 Vertex 7755 0.0193075 0.0536075 0.0470681 Vertex 7756 0.0201633 0.0535759 0.04656 Vertex 7757 0.0209419 0.0535563 0.0459234 Vertex 7758 0.021663 0.053586 0.0452157 Vertex 7759 0.0223265 0.0535979 0.0444334 Vertex 7760 0.0229945 0.0535474 0.0436214 Vertex 7761 0.0236683 0.0535376 0.0428398 Vertex 7762 0.0243441 0.0535282 0.0420575 Vertex 7763 0.0250466 0.0534973 0.0413033 Vertex 7764 0.0259096 0.0534724 0.0407837 Vertex 7765 0.0267966 0.0534918 0.0403155 Vertex 7766 0.0276118 0.053509 0.0397341 Vertex 7767 0.028423 0.0535254 0.0391477 Vertex 7768 0.0293325 0.0535401 0.0386956 Vertex 7769 0.0302182 0.0535528 0.0382346 Vertex 7770 0.031043 0.0535582 0.0376713 Vertex 7771 0.0317499 0.0535218 0.0369319 Vertex 7772 0.03243 0.0535036 0.0361605 Vertex 7773 0.0330783 0.0534528 0.0353209 Vertex 7774 0.0337476 0.0534432 0.0345417 Vertex 7775 0.0343862 0.0533953 0.033694 Vertex 7776 0.0350254 0.0533499 0.0328505 Vertex 7777 0.035717 0.0533288 0.0320909 Vertex 7778 0.0206219 0.119357 0.0335278 Vertex 7779 0.0238242 0.0981836 0.0451545 Vertex 7780 0.0432493 0.100107 0.00716752 Vertex 7781 0.0433138 0.0902166 -0.00378785 Vertex 7782 -0.0567046 0.11983 0.0390246 Vertex 7783 -0.0553953 0.118382 0.0373919 Vertex 7784 0.0454971 0.0861837 0.00419421 Vertex 7785 -0.0541716 0.144673 0.0274046 Vertex 7786 0.0465231 0.0539629 0.0319545 Vertex 7787 0.047415 0.0539813 0.0314992 Vertex 7788 0.0482509 0.0539799 0.0309574 Vertex 7789 0.0490482 0.0539975 0.0303486 Vertex 7790 0.0498583 0.0540108 0.0297623 Vertex 7791 0.0507066 0.0540083 0.0292331 Vertex 7792 0.0515475 0.0540038 0.0286923 Vertex 7793 0.0523683 0.0540101 0.0281247 Vertex 7794 0.0531089 0.0539671 0.0274209 Vertex 7795 0.0538412 0.0539826 0.0267309 Vertex 7796 0.0544797 0.0539552 0.0258897 Vertex 7797 0.0551094 0.0539301 0.0250409 Vertex 7798 0.0557633 0.0538969 0.024211 Vertex 7799 0.056383 0.0538774 0.0233551 Vertex 7800 0.0569799 0.0538694 0.0224893 Vertex 7801 0.0575606 0.0537805 0.0213286 Vertex 7802 -0.032324 0.161031 -0.00122654 Vertex 7803 -0.0390311 0.160893 0.00133569 Vertex 7804 -0.0611099 0.11531 0.0378549 Vertex 7805 -0.0692562 0.143958 0.0438704 Vertex 7806 0.0226049 0.0994887 0.0451477 Vertex 7807 -0.0565093 0.148178 0.0306333 Vertex 7808 0.0210399 0.118016 0.0341276 Vertex 7809 -0.0918252 0.118761 0.028299 Vertex 7810 0.0445209 0.095967 0.011159 Vertex 7811 -0.054126 0.0491389 0.0369634 Vertex 7812 0.0249862 0.118037 0.0310154 Vertex 7813 -0.0550635 0.116914 0.036091 Vertex 7814 -0.0128833 0.165453 -0.0135102 Vertex 7815 -0.0145881 0.165422 -0.0124907 Vertex 7816 -0.0421778 0.150669 0.00550662 Vertex 7817 -0.0597544 0.151092 0.0347772 Vertex 7818 -0.0341053 0.162392 -0.00207929 Vertex 7819 -0.0896332 0.0983435 0.0144056 Vertex 7820 0.0408155 0.0939721 0.0292858 Vertex 7821 -0.010288 0.172711 -0.0218803 Vertex 7822 -0.0707401 0.13973 0.0469958 Vertex 7823 -0.0387324 0.156611 0.00532643 Vertex 7824 -0.0313565 0.161046 -0.00157639 Vertex 7825 -0.00759782 0.103673 0.0436498 Vertex 7826 -0.0219158 0.177176 -0.0142605 Vertex 7827 -0.0683486 0.124257 0.0521552 Vertex 7828 -0.0718527 0.158151 -0.00382487 Vertex 7829 -0.0148262 0.181632 -0.021586 Vertex 7830 0.0391693 0.108394 0.0111647 Vertex 7831 -0.0460118 0.126697 0.0245216 Vertex 7832 -0.0640701 0.113939 0.0406208 Vertex 7833 -0.0545922 0.126915 0.0368606 Vertex 7834 -0.023502 0.180157 -0.0112302 Vertex 7835 0.0344381 0.102088 0.0341795 Vertex 7836 -0.0210968 0.161053 -0.00432438 Vertex 7837 0.0344933 0.0929192 0.0394802 Vertex 7838 -0.053876 0.126919 0.0361236 Vertex 7839 -0.048793 0.155022 0.0100543 Vertex 7840 -0.0292466 0.166794 -0.00735295 Vertex 7841 -0.0180211 0.168338 -0.0139614 Vertex 7842 -0.00485752 0.103786 0.0439754 Vertex 7843 -0.0114184 0.169868 -0.0184586 Vertex 7844 0.00705483 0.113673 0.0402142 Vertex 7845 -0.043267 0.149185 0.00566881 Vertex 7846 -0.0648688 0.0938916 -0.0183701 Vertex 7847 -0.0473301 0.134807 0.0120125 Vertex 7848 -0.0906686 0.139207 0.0161786 Vertex 7849 -0.0168713 0.184583 -0.0192109 Vertex 7850 0.0382486 0.104643 0.0273123 Vertex 7851 -0.0311183 0.172722 -0.00474304 Vertex 7852 -0.0678588 0.128454 0.0493479 Vertex 7853 -0.0548518 0.122696 0.0382478 Vertex 7854 0.0107799 0.0548821 0.052327 Vertex 7855 0.0116668 0.0548951 0.0518589 Vertex 7856 0.0124372 0.0548875 0.0512192 Vertex 7857 0.0131577 0.0548631 0.0504935 Vertex 7858 0.013902 0.054865 0.0498147 Vertex 7859 0.0146633 0.0548535 0.0491553 Vertex 7860 0.0154848 0.0548588 0.0485877 Vertex 7861 0.0164447 0.0548852 0.0482217 Vertex 7862 0.0175889 0.0549386 0.0481228 Vertex 7863 0.018728 0.0549999 0.0480114 Vertex 7864 0.0196905 0.0550135 0.047657 Vertex 7865 0.0205756 0.0550317 0.0471809 Vertex 7866 0.0212994 0.0550028 0.0464604 Vertex 7867 0.0220311 0.0550166 0.0457656 Vertex 7868 0.022681 0.0549804 0.0449373 Vertex 7869 0.0233417 0.0549864 0.0441504 Vertex 7870 0.0239959 0.0549509 0.0433236 Vertex 7871 0.0247244 0.0549721 0.0426251 Vertex 7872 0.0255474 0.054922 0.0420386 Vertex 7873 0.0264254 0.054947 0.041554 Vertex 7874 0.027252 0.0549488 0.0409918 Vertex 7875 0.0280387 0.0549866 0.0403705 Vertex 7876 0.028889 0.0549767 0.0398373 Vertex 7877 0.0297724 0.0549903 0.0393628 Vertex 7878 0.0306109 0.0549842 0.038821 Vertex 7879 0.0313895 0.0549645 0.0381834 Vertex 7880 0.0321354 0.0549697 0.0375085 Vertex 7881 0.0328247 0.054955 0.0367483 Vertex 7882 0.0335055 0.0549395 0.0359782 Vertex 7883 0.0341544 0.0548861 0.0351403 Vertex 7884 0.0347756 0.0548514 0.0342768 Vertex 7885 0.0354002 0.054813 0.0334165 Vertex 7886 0.0360371 0.0547702 0.0325687 Vertex 7887 0.0367132 0.0547551 0.0317845 Vertex 7888 0.0303449 0.112749 0.0317399 Vertex 7889 -0.0559485 0.119826 0.0383628 Vertex 7890 0.0454245 0.0904044 0.0131633 Vertex 7891 -0.0575438 0.119835 0.0395668 Vertex 7892 -0.0585001 0.119809 0.0399342 Vertex 7893 0.0455462 0.0861954 0.016167 Vertex 7894 0.0288925 0.112764 0.0331675 Vertex 7895 -0.0678289 0.135464 0.0458614 Vertex 7896 0.0475648 0.0553802 0.031711 Vertex 7897 0.0484031 0.0553841 0.03118 Vertex 7898 0.049194 0.055373 0.030576 Vertex 7899 0.0500544 0.0553974 0.0300563 Vertex 7900 0.0509435 0.0554131 0.029582 Vertex 7901 0.0518058 0.0553999 0.0290848 Vertex 7902 0.0526679 0.0554283 0.0285725 Vertex 7903 0.0534095 0.0553934 0.0278769 Vertex 7904 0.0541315 0.0553714 0.0271399 Vertex 7905 0.0547917 0.0553704 0.0263503 Vertex 7906 0.0554005 0.0553511 0.0254886 Vertex 7907 0.0560337 0.0553031 0.0245952 Vertex 7908 0.0566718 0.0553009 0.0238011 Vertex 7909 0.0572674 0.0552579 0.0228777 Vertex 7910 0.0578262 0.0552267 0.0219335 Vertex 7911 0.0398757 0.096658 0.0297176 Vertex 7912 0.0393482 0.0966985 0.0306886 Vertex 7913 -0.0369427 0.15804 0.00437449 Vertex 7914 0.0136046 0.121889 0.0339065 Vertex 7915 0.0190336 0.11528 0.0364777 Vertex 7916 -0.0937861 0.128264 0.0182441 Vertex 7917 -0.0207276 0.168298 -0.0126147 Vertex 7918 -0.0141433 0.181604 -0.0223083 Vertex 7919 0.0455391 0.0875946 0.0141649 Vertex 7920 0.0438165 0.0959355 0.0191615 Vertex 7921 -0.0747362 0.0663817 0.0145125 Vertex 7922 -0.0155441 0.165408 -0.0121335 Vertex 7923 -0.0306212 0.159741 -0.0134031 Vertex 7924 -0.0127734 0.171309 -0.0186592 Vertex 7925 0.0329828 0.110047 0.0302661 Vertex 7926 -0.055098 0.146723 0.029184 Vertex 7927 0.0111265 0.120476 0.0355761 Vertex 7928 -0.0384682 0.15361 0.00387723 Vertex 7929 -0.0378831 0.156583 0.00477982 Vertex 7930 -0.0507328 0.121196 0.0335979 Vertex 7931 -0.0157015 0.164 -0.0105798 Vertex 7932 -0.0272214 0.163934 -0.00616346 Vertex 7933 -0.0376877 0.163829 -0.000238726 Vertex 7934 -0.0493593 0.121175 0.032055 Vertex 7935 -0.0570388 0.149629 0.0316784 Vertex 7936 -0.0218743 0.178667 -0.0141782 Vertex 7937 -0.0130273 0.178658 -0.0225027 Vertex 7938 0.0436954 0.0959268 0.0201595 Vertex 7939 -0.0228869 0.180156 -0.0121058 Vertex 7940 -0.0529232 0.125495 0.0357533 Vertex 7941 -0.0258342 0.159627 -0.000620301 Vertex 7942 0.0277648 0.098182 0.0420578 Vertex 7943 0.0321792 0.0929416 0.0413986 Vertex 7944 -0.0656041 0.136814 0.0420793 Vertex 7945 -0.0640626 0.136748 0.0389546 Vertex 7946 -0.0341251 0.166782 -0.00385534 Vertex 7947 -0.0326251 0.166779 -0.00520273 Vertex 7948 -0.046455 0.126722 0.0256927 Vertex 7949 -0.0751879 0.179229 -0.0530087 Vertex 7950 0.0235113 0.118015 0.0324132 Vertex 7951 -0.0483573 0.129635 0.0282843 Vertex 7952 -0.0513902 0.122634 0.0344378 Vertex 7953 -0.0478246 0.129609 0.027299 Vertex 7954 -0.0590695 0.143884 0.0338908 Vertex 7955 -0.0232564 0.171248 -0.0127378 Vertex 7956 -0.0625254 0.138119 0.0359126 Vertex 7957 -0.0509363 0.126898 0.0333376 Vertex 7958 -0.0495769 0.126877 0.0317874 Vertex 7959 -0.0489995 0.126854 0.0308899 Vertex 7960 -0.0469166 0.129554 0.0250362 Vertex 7961 0.010951 0.0562864 0.05258 Vertex 7962 0.0118426 0.0562933 0.0521284 Vertex 7963 0.012618 0.0562866 0.0514947 Vertex 7964 0.013378 0.056283 0.0508299 Vertex 7965 0.0141304 0.056278 0.0501629 Vertex 7966 0.0148603 0.0562539 0.0494599 Vertex 7967 0.0157351 0.0562704 0.0489701 Vertex 7968 0.0167477 0.0563074 0.0486799 Vertex 7969 0.0178908 0.0563588 0.0485803 Vertex 7970 0.0189816 0.0563976 0.0484166 Vertex 7971 0.0199591 0.0564127 0.0480725 Vertex 7972 0.0208153 0.0564412 0.0475406 Vertex 7973 0.0215752 0.056436 0.0468827 Vertex 7974 0.0222885 0.0564166 0.0461469 Vertex 7975 0.0229642 0.0564103 0.0453711 Vertex 7976 0.0236359 0.056409 0.0445932 Vertex 7977 0.0243198 0.0564051 0.0438207 Vertex 7978 0.0251418 0.056415 0.0432482 Vertex 7979 0.0260147 0.0563895 0.0427437 Vertex 7980 0.0268173 0.0563551 0.0421393 Vertex 7981 0.0275656 0.0563642 0.0414619 Vertex 7982 0.0283669 0.0563832 0.0408635 Vertex 7983 0.0292092 0.0563773 0.0403225 Vertex 7984 0.0300864 0.0564003 0.0398351 Vertex 7985 0.030957 0.0564285 0.0393343 Vertex 7986 0.0317881 0.0564278 0.038783 Vertex 7987 0.0325669 0.0564098 0.0381516 Vertex 7988 0.0332799 0.0564373 0.0374441 Vertex 7989 0.0339261 0.0564017 0.0366181 Vertex 7990 0.034582 0.0563647 0.0357928 Vertex 7991 0.0351768 0.0563002 0.0348659 Vertex 7992 0.0357585 0.0562848 0.0339755 Vertex 7993 0.0363518 0.0562159 0.0330449 Vertex 7994 0.0369848 0.0561762 0.0322 Vertex 7995 0.0377227 0.0561747 0.0314909 Vertex 7996 0.0396169 0.0843072 -0.0127653 Vertex 7997 -0.0622396 0.155257 -0.0325976 Vertex 7998 -0.017538 0.18639 -0.0186026 Vertex 7999 0.0362687 0.0941823 0.0368117 Vertex 8000 -0.0182673 0.180142 -0.0177524 Vertex 8001 -0.086697 0.114875 0.0460769 Vertex 8002 -0.00109314 0.103948 0.0441727 Vertex 8003 -0.0483251 0.123967 0.0299918 Vertex 8004 0.0484167 0.0567471 0.0312254 Vertex 8005 0.0492859 0.0567642 0.0307116 Vertex 8006 0.0501668 0.0567787 0.0302284 Vertex 8007 0.0510761 0.0567889 0.0297952 Vertex 8008 0.0519851 0.0567984 0.0293579 Vertex 8009 0.0528545 0.0568172 0.0288563 Vertex 8010 0.0536301 0.0568087 0.0282148 Vertex 8011 0.0543448 0.0567886 0.0274783 Vertex 8012 0.0549908 0.0567623 0.0266396 Vertex 8013 0.0555936 0.0567472 0.0257684 Vertex 8014 0.0561988 0.0567015 0.0248562 Vertex 8015 0.0568205 0.0566796 0.0240006 Vertex 8016 0.0574465 0.0566575 0.0231489 Vertex 8017 0.0580765 0.0566038 0.0222343 Vertex 8018 0.029871 0.0968887 0.0415927 Vertex 8019 -0.0253214 0.158135 -0.00165461 Vertex 8020 -0.0484639 0.149215 0.0104667 Vertex 8021 -0.00505247 0.102417 0.0438081 Vertex 8022 -0.0625921 0.1213 0.0447428 Vertex 8023 -0.0144519 0.166922 -0.0140569 Vertex 8024 -0.0621631 0.164652 -0.0535815 Vertex 8025 -0.0667756 0.124253 0.0509201 Vertex 8026 -0.0309567 0.166794 -0.00630909 Vertex 8027 -0.0582639 0.12123 0.0402958 Vertex 8028 -0.0286955 0.175698 -0.00647862 Vertex 8029 -0.018438 0.165372 -0.011068 Vertex 8030 -0.0469298 0.126751 0.026776 Vertex 8031 -0.042206 0.147853 0.000366775 Vertex 8032 -0.05562 0.146743 0.0301728 Vertex 8033 -0.0368355 0.153629 0.00272174 Vertex 8034 -0.0504943 0.147794 0.0128405 Vertex 8035 -0.0592485 0.148248 0.0355123 Vertex 8036 -0.0267733 0.15662 -0.0020223 Vertex 8037 -0.0259693 0.156664 -0.00260696 Vertex 8038 -0.0252695 0.156633 -0.00336931 Vertex 8039 -0.0179511 0.175707 -0.0173471 Vertex 8040 -0.045698 0.157938 0.00750606 Vertex 8041 -0.0132407 0.164048 -0.012311 Vertex 8042 0.0099296 0.113714 0.0390911 Vertex 8043 -0.0406031 0.160882 0.00257136 Vertex 8044 -0.0137397 0.178677 -0.0217984 Vertex 8045 -0.0497211 0.131062 0.0298847 Vertex 8046 -0.0222707 0.180155 -0.0129798 Vertex 8047 -0.0625429 0.143922 0.0377415 Vertex 8048 -0.026729 0.159626 -0.000161004 Vertex 8049 0.0400949 0.095337 0.0300286 Vertex 8050 -0.0645444 0.136771 0.0400377 Vertex 8051 -0.065068 0.136793 0.0410949 Vertex 8052 -0.063562 0.136724 0.0379539 Vertex 8053 -0.0606205 0.136712 0.0351771 Vertex 8054 -0.0596849 0.136693 0.0347693 Vertex 8055 -0.0571389 0.136712 0.0331888 Vertex 8056 -0.056363 0.13673 0.0325483 Vertex 8057 -0.0556122 0.136727 0.0318764 Vertex 8058 -0.0517083 0.131123 0.0322407 Vertex 8059 -0.0338617 0.168258 -0.00349456 Vertex 8060 0.021919 0.118008 0.0336347 Vertex 8061 -0.0509894 0.131098 0.0315417 Vertex 8062 -0.0502302 0.126885 0.0326315 Vertex 8063 -0.0194278 0.169807 -0.0142312 Vertex 8064 -0.0166929 0.178668 -0.0190282 Vertex 8065 -0.058632 0.131139 0.0380532 Vertex 8066 -0.0595215 0.131137 0.0385262 Vertex 8067 0.0118091 0.0576645 0.0520801 Vertex 8068 0.0126063 0.0576596 0.0514859 Vertex 8069 0.013386 0.0576661 0.0508541 Vertex 8070 0.0141618 0.0576523 0.0502255 Vertex 8071 0.0150017 0.0576648 0.0496654 Vertex 8072 0.0158981 0.0576764 0.0492073 Vertex 8073 0.016916 0.0577101 0.0489225 Vertex 8074 0.0180643 0.0577618 0.0488361 Vertex 8075 0.0191559 0.0577995 0.0486799 Vertex 8076 0.020119 0.0578214 0.0483165 Vertex 8077 0.0209984 0.0578395 0.0478214 Vertex 8078 0.0217645 0.057833 0.0471676 Vertex 8079 0.0224822 0.0578106 0.0464363 Vertex 8080 0.0231825 0.0577956 0.0456852 Vertex 8081 0.023852 0.057789 0.0449027 Vertex 8082 0.0245929 0.0577938 0.0442192 Vertex 8083 0.0254863 0.0578069 0.043747 Vertex 8084 0.0263587 0.0577877 0.0432503 Vertex 8085 0.0271615 0.0578042 0.0426556 Vertex 8086 0.027906 0.0578072 0.0419759 Vertex 8087 0.0286533 0.0578113 0.0412965 Vertex 8088 0.0295012 0.0578054 0.0407589 Vertex 8089 0.0303768 0.0578247 0.0402716 Vertex 8090 0.0312208 0.0578184 0.0397344 Vertex 8091 0.0320683 0.0578123 0.0392046 Vertex 8092 0.0328914 0.0578172 0.038629 Vertex 8093 0.0336441 0.0578174 0.0379601 Vertex 8094 0.0343069 0.0578226 0.0371782 Vertex 8095 0.0349695 0.0577828 0.0363582 Vertex 8096 0.0356049 0.0577583 0.0355158 Vertex 8097 0.0361089 0.0577094 0.0344737 Vertex 8098 0.0366578 0.0576635 0.0335112 Vertex 8099 0.0372748 0.0576283 0.0326444 Vertex 8100 0.0379248 0.0575872 0.0318029 Vertex 8101 -0.0679473 0.136882 0.0457212 Vertex 8102 -0.0673163 0.13687 0.0448543 Vertex 8103 -0.0646221 0.122809 0.0487379 Vertex 8104 -0.0652467 0.122825 0.0496059 Vertex 8105 -0.0658758 0.122838 0.0504663 Vertex 8106 -0.0665656 0.122847 0.0512252 Vertex 8107 -0.0667166 0.136853 0.0439657 Vertex 8108 -0.0661523 0.136835 0.0429956 Vertex 8109 -0.0364708 0.152123 0.0014574 Vertex 8110 0.049326 0.0581361 0.0307698 Vertex 8111 0.0502404 0.0581527 0.030355 Vertex 8112 0.0511798 0.0581784 0.029952 Vertex 8113 0.0520769 0.0581909 0.0294992 Vertex 8114 0.0529297 0.0581906 0.02898 Vertex 8115 0.0537368 0.0581963 0.0283843 Vertex 8116 0.0544596 0.058178 0.0276568 Vertex 8117 0.0551355 0.0581678 0.0268835 Vertex 8118 0.0557201 0.0581302 0.0259556 Vertex 8119 0.0563147 0.0580894 0.0250386 Vertex 8120 0.0569296 0.058069 0.024171 Vertex 8121 0.0576125 0.0580597 0.0234109 Vertex 8122 0.058244 0.0580344 0.0225642 Vertex 8123 0.0366057 0.0954909 0.0355184 Vertex 8124 0.0327331 0.0942636 0.0404449 Vertex 8125 -0.0498856 0.149233 0.0119087 Vertex 8126 -0.0630097 0.121328 0.0458592 Vertex 8127 -0.0189873 0.180146 -0.0170482 Vertex 8128 -0.0125655 0.164041 -0.0130929 Vertex 8129 -0.0351753 0.160922 -0.000113952 Vertex 8130 -0.0280768 0.169745 -0.00916431 Vertex 8131 0.0444376 0.0959725 0.0121619 Vertex 8132 -0.0274521 0.175685 -0.00821886 Vertex 8133 -0.0194597 0.165415 -0.0107679 Vertex 8134 -0.0203751 0.165368 -0.0103486 Vertex 8135 -0.0614696 0.136692 0.0357094 Vertex 8136 -0.0562712 0.146757 0.030967 Vertex 8137 -0.0472527 0.147738 0.00869118 Vertex 8138 0.0325643 0.0981766 0.0384761 Vertex 8139 -0.0527627 0.115451 0.034109 Vertex 8140 0.0378702 0.100686 0.0303226 Vertex 8141 -0.0714891 0.129823 0.0511416 Vertex 8142 -0.0662836 0.114247 0.046332 Vertex 8143 -0.0568394 0.145329 0.0319256 Vertex 8144 -0.0449507 0.157934 0.00683281 Vertex 8145 -0.0245154 0.158144 -0.00224812 Vertex 8146 -0.0535056 0.136701 0.0296589 Vertex 8147 0.0243457 0.102123 0.0424029 Vertex 8148 -0.0123464 0.178658 -0.023274 Vertex 8149 0.00551455 0.110936 0.0415028 Vertex 8150 -0.0827158 0.108829 0.000295564 Vertex 8151 -0.0403921 0.162356 0.00287494 Vertex 8152 -0.0324319 0.159505 0.00208324 Vertex 8153 -0.0667178 0.127063 0.0492263 Vertex 8154 -0.0626162 0.142488 0.0376248 Vertex 8155 -0.0601666 0.138122 0.0340792 Vertex 8156 -0.0636379 0.131123 0.0413473 Vertex 8157 -0.0642658 0.131126 0.0422113 Vertex 8158 -0.0648724 0.131147 0.0430922 Vertex 8159 0.0267262 0.114038 0.0335472 Vertex 8160 -0.0693376 0.131255 0.0489674 Vertex 8161 -0.0700881 0.131265 0.0496481 Vertex 8162 -0.0708777 0.131245 0.0502751 Vertex 8163 -0.0520723 0.122646 0.0352105 Vertex 8164 -0.0468135 0.1536 0.00939603 Vertex 8165 -0.0686311 0.136892 0.0464956 Vertex 8166 0.024552 0.110059 0.0374287 Vertex 8167 -0.0939473 0.122782 0.0142819 Vertex 8168 -0.044345 0.152142 0.00768226 Vertex 8169 -0.0489146 0.121146 0.0309679 Vertex 8170 0.00882114 0.0589209 0.053036 Vertex 8171 -0.0357383 0.152143 0.000762654 Vertex 8172 -0.0548531 0.149577 0.0276913 Vertex 8173 0.0117081 0.0589891 0.0519593 Vertex 8174 0.0124938 0.0589954 0.0513278 Vertex 8175 0.0132853 0.0589897 0.0507165 Vertex 8176 0.0141254 0.0589894 0.0501816 Vertex 8177 0.0150592 0.0590177 0.0497649 Vertex 8178 0.0160048 0.0590435 0.0493667 Vertex 8179 0.0170299 0.0590745 0.0491032 Vertex 8180 0.0181085 0.0591163 0.0489014 Vertex 8181 0.0192013 0.0591556 0.0487522 Vertex 8182 0.0202169 0.0591906 0.0484605 Vertex 8183 0.021114 0.0592021 0.0480036 Vertex 8184 0.021851 0.0591836 0.0473037 Vertex 8185 0.0226226 0.0591926 0.0466634 Vertex 8186 0.0233319 0.059176 0.0459237 Vertex 8187 0.0240318 0.0591603 0.0451764 Vertex 8188 0.024788 0.0591582 0.0445118 Vertex 8189 0.0257137 0.0591918 0.0440938 Vertex 8190 0.0266247 0.0591987 0.0436528 Vertex 8191 0.0274474 0.0591653 0.0430806 Vertex 8192 0.0281313 0.0591962 0.0423168 Vertex 8193 0.0288434 0.0591735 0.0415864 Vertex 8194 0.0296673 0.0591775 0.0410177 Vertex 8195 0.0305372 0.0592022 0.0405121 Vertex 8196 0.0314319 0.059214 0.0400505 Vertex 8197 0.0323433 0.0592178 0.0396143 Vertex 8198 0.033177 0.0592197 0.0390624 Vertex 8199 0.0338995 0.0591949 0.0383404 Vertex 8200 0.0346034 0.0592134 0.0376264 Vertex 8201 0.035265 0.0591791 0.0368077 Vertex 8202 0.0358939 0.0591552 0.0359628 Vertex 8203 0.0364442 0.0590953 0.0349595 Vertex 8204 0.03698 0.0590759 0.0339965 Vertex 8205 0.0375229 0.0590309 0.0330268 Vertex 8206 0.0380982 0.0589726 0.0320786 Vertex 8207 0.0387801 0.058953 0.031306 Vertex 8208 -0.00144558 0.106667 0.0437112 Vertex 8209 -0.0636907 0.124164 0.0466174 Vertex 8210 -0.0631629 0.124137 0.0456282 Vertex 8211 -0.0625935 0.12412 0.0446596 Vertex 8212 -0.0620012 0.1241 0.0437622 Vertex 8213 -0.0486707 0.147744 0.0101492 Vertex 8214 0.0455115 0.0861913 0.0171661 Vertex 8215 -0.0929641 0.121523 0.0342815 Vertex 8216 0.0512217 0.0595245 0.030012 Vertex 8217 0.0521127 0.0595383 0.0295528 Vertex 8218 0.0529677 0.0595446 0.0290441 Vertex 8219 0.0538026 0.0595499 0.0284925 Vertex 8220 0.0545625 0.0595427 0.0278248 Vertex 8221 0.0552547 0.0595292 0.0270628 Vertex 8222 0.0558536 0.0594884 0.0261475 Vertex 8223 0.0564645 0.0594668 0.0252844 Vertex 8224 0.0571049 0.0594437 0.0244408 Vertex 8225 0.0577316 0.0594186 0.0235899 Vertex 8226 0.0583601 0.0593964 0.0227402 Vertex 8227 0.0589085 0.0593684 0.0217913 Vertex 8228 0.0317135 0.0955631 0.0407455 Vertex 8229 -0.0572856 0.125533 0.0399888 Vertex 8230 -0.0299241 0.172727 -0.00652243 Vertex 8231 0.0397718 0.0940445 0.031303 Vertex 8232 -0.0548894 0.136747 0.0311423 Vertex 8233 -0.0733475 0.129801 0.0519745 Vertex 8234 -0.040383 0.152127 0.00460721 Vertex 8235 0.0395925 0.0979794 0.0293107 Vertex 8236 0.0377275 0.0928421 0.0353087 Vertex 8237 0.00646432 0.110948 0.0411124 Vertex 8238 -0.0268549 0.175688 -0.00910606 Vertex 8239 -0.0213358 0.165379 -0.00997448 Vertex 8240 0.0319133 0.103439 0.0357737 Vertex 8241 -0.0569748 0.146758 0.0317266 Vertex 8242 -0.0476647 0.15359 0.00991943 Vertex 8243 -0.011137 0.171308 -0.0197957 Vertex 8244 -0.0593537 0.140997 0.0335026 Vertex 8245 -0.0701665 0.143936 0.0443089 Vertex 8246 0.022957 0.0981907 0.0456622 Vertex 8247 -0.0550692 0.121281 0.0379498 Vertex 8248 0.0454926 0.0875897 0.015162 Vertex 8249 0.0270163 0.115378 0.0322111 Vertex 8250 -0.0355718 0.165308 -0.0024565 Vertex 8251 -0.0567507 0.13816 0.0319811 Vertex 8252 -0.011686 0.178646 -0.0240587 Vertex 8253 -0.0876501 0.0954829 0.0054069 Vertex 8254 -0.0397906 0.162354 0.00198884 Vertex 8255 -0.034444 0.159452 0.00265373 Vertex 8256 0.0458295 0.0890233 0.00817039 Vertex 8257 -0.0640539 0.142491 0.0390245 Vertex 8258 -0.0650134 0.13537 0.0410634 Vertex 8259 -0.0925078 0.121485 0.0292837 Vertex 8260 0.0449523 0.0945963 0.00616781 Vertex 8261 -0.0735699 0.131215 0.0516643 Vertex 8262 0.0284451 0.114053 0.0325229 Vertex 8263 0.0275851 0.114088 0.0330397 Vertex 8264 0.0403422 0.10564 0.0161674 Vertex 8265 0.0448755 0.0917539 0.00218552 Vertex 8266 0.0364251 0.0840505 -0.0167267 Vertex 8267 -0.0731261 0.154051 -0.0329012 Vertex 8268 -0.0681029 0.138305 0.0455026 Vertex 8269 -0.00787685 0.105931 -0.0227718 Vertex 8270 -0.0344162 0.168264 -0.00253059 Vertex 8271 0.00638417 0.060281 0.0547831 Vertex 8272 0.00728906 0.0602827 0.0543511 Vertex 8273 0.00824317 0.0602927 0.0539848 Vertex 8274 0.0090211 0.0602846 0.0533569 Vertex 8275 0.00985328 0.0602892 0.0527986 Vertex 8276 0.0107752 0.0603237 0.0523688 Vertex 8277 0.0116378 0.0603198 0.0518663 Vertex 8278 0.0123855 0.0603174 0.0511841 Vertex 8279 0.0132697 0.0603324 0.0507028 Vertex 8280 0.014169 0.0603418 0.050255 Vertex 8281 0.0151319 0.0603601 0.0498992 Vertex 8282 0.0161292 0.0604031 0.0495734 Vertex 8283 0.017085 0.0604224 0.0492086 Vertex 8284 0.0180964 0.0604579 0.0488964 Vertex 8285 0.0191745 0.060499 0.0487078 Vertex 8286 0.0201512 0.0605237 0.0483852 Vertex 8287 0.0211099 0.0605491 0.0480139 Vertex 8288 0.0219313 0.0605513 0.0474343 Vertex 8289 0.0226823 0.0605452 0.0467602 Vertex 8290 0.023391 0.0605296 0.0460187 Vertex 8291 0.0241246 0.0605253 0.0453245 Vertex 8292 0.0249679 0.0605263 0.0447882 Vertex 8293 0.0258836 0.0605349 0.0443599 Vertex 8294 0.0268259 0.0605622 0.0439609 Vertex 8295 0.0276605 0.0605608 0.0434107 Vertex 8296 0.0283556 0.0605487 0.0426528 Vertex 8297 0.0290367 0.060539 0.0418753 Vertex 8298 0.029813 0.0605585 0.0412449 Vertex 8299 0.0306718 0.0605569 0.0407187 Vertex 8300 0.0315748 0.0605586 0.0402762 Vertex 8301 0.0325363 0.0605817 0.0399114 Vertex 8302 0.0333786 0.06058 0.0393695 Vertex 8303 0.0341142 0.0605859 0.0386759 Vertex 8304 0.0348151 0.0605689 0.0379285 Vertex 8305 0.0355013 0.0605581 0.0371681 Vertex 8306 0.0361371 0.0605355 0.0363255 Vertex 8307 0.0367672 0.0605146 0.0354804 Vertex 8308 0.0373089 0.0604869 0.0345236 Vertex 8309 0.0378012 0.0604211 0.0334272 Vertex 8310 0.0383551 0.0603737 0.0324667 Vertex 8311 0.0388894 0.060327 0.0314833 Vertex 8312 0.0395752 0.0602985 0.0307005 Vertex 8313 0.0403564 0.0602895 0.0300713 Vertex 8314 -0.0444606 0.147723 0.0056898 Vertex 8315 -0.0617795 0.126914 0.0422805 Vertex 8316 -0.0624532 0.126929 0.0430601 Vertex 8317 -0.0630295 0.126909 0.044075 Vertex 8318 -0.063605 0.126943 0.0449774 Vertex 8319 -0.0641619 0.126957 0.0459503 Vertex 8320 -0.0591241 0.1154 0.0371963 Vertex 8321 -0.0490056 0.122549 0.0307687 Vertex 8322 0.0520606 0.0608742 0.0294954 Vertex 8323 0.0529468 0.0608894 0.0290245 Vertex 8324 0.0537838 0.0608937 0.0284739 Vertex 8325 0.0545857 0.0608947 0.0278753 Vertex 8326 0.0553162 0.0608807 0.0271604 Vertex 8327 0.0560044 0.0608622 0.0263962 Vertex 8328 0.0566532 0.0608369 0.0255651 Vertex 8329 0.0572801 0.0608152 0.0247108 Vertex 8330 0.0578867 0.0607943 0.0238444 Vertex 8331 0.0584586 0.0607609 0.022909 Vertex 8332 0.0589875 0.0607291 0.021951 Vertex 8333 0.0390425 0.0953983 0.0320312 Vertex 8334 -0.0629848 0.136718 0.0370028 Vertex 8335 0.0350602 0.0968439 0.0368099 Vertex 8336 0.0316669 0.110076 0.0318865 Vertex 8337 -0.026115 0.158145 -0.00104516 Vertex 8338 -0.0535658 0.132546 0.0330634 Vertex 8339 -0.0288774 0.169748 -0.00856256 Vertex 8340 -0.0690092 0.122845 0.052951 Vertex 8341 0.0387947 0.101959 0.0281808 Vertex 8342 -0.0249373 0.175681 -0.0116247 Vertex 8343 -0.0223022 0.165377 -0.00961273 Vertex 8344 -0.0659739 0.131145 -0.00872206 Vertex 8345 -0.0577187 0.146758 0.0323537 Vertex 8346 0.0417112 0.0986332 0.0241669 Vertex 8347 -0.0701785 0.136914 0.0477863 Vertex 8348 -0.065551 0.112475 0.040245 Vertex 8349 -0.0831639 0.108847 0.00132792 Vertex 8350 -0.0473203 0.122487 0.0279328 Vertex 8351 -0.0507263 0.122615 0.0336033 Vertex 8352 0.00801932 0.113693 0.0398597 Vertex 8353 -0.0630414 0.149018 -0.0195802 Vertex 8354 0.0454314 0.088986 0.0031764 Vertex 8355 -0.0478947 0.122501 0.0288841 Vertex 8356 -0.011074 0.178648 -0.0249266 Vertex 8357 -0.0942962 0.120123 0.0192891 Vertex 8358 -0.0391691 0.162354 0.00112683 Vertex 8359 -0.0358778 0.159506 0.00240863 Vertex 8360 0.0406232 0.0953057 0.0289912 Vertex 8361 -0.0646755 0.142507 0.0398915 Vertex 8362 0.0377103 0.0955073 -0.00984226 Vertex 8363 -0.053938 0.138144 0.0289679 Vertex 8364 -0.0882785 0.102304 0.00940329 Vertex 8365 -0.0611441 0.169381 -0.0576009 Vertex 8366 -0.0615988 0.156867 -0.0225865 Vertex 8367 -0.0552402 0.138165 0.0306253 Vertex 8368 -0.043783 0.147719 0.00491206 Vertex 8369 -0.0718355 0.0757492 0.0369191 Vertex 8370 -0.0688238 0.1383 0.0462399 Vertex 8371 -0.0530781 0.119794 0.0354828 Vertex 8372 -0.0587859 0.118384 0.0394982 Vertex 8373 0.0456793 0.0890097 0.00617442 Vertex 8374 -0.0516452 0.119776 0.0340339 Vertex 8375 0.00766079 0.0616753 0.0549139 Vertex 8376 0.00860516 0.061703 0.0545256 Vertex 8377 0.00946449 0.0616923 0.0540126 Vertex 8378 0.0102284 0.0616887 0.0533551 Vertex 8379 0.0109283 0.0616839 0.0526314 Vertex 8380 0.0116633 0.0616767 0.0519085 Vertex 8381 0.0125203 0.0616669 0.0514026 Vertex 8382 0.0134639 0.0616949 0.0510096 Vertex 8383 0.0144567 0.0617415 0.0506755 Vertex 8384 0.0153695 0.0617406 0.0502582 Vertex 8385 0.016314 0.061771 0.0498607 Vertex 8386 0.0172046 0.061784 0.0493931 Vertex 8387 0.0181009 0.0617863 0.0489038 Vertex 8388 0.0190254 0.061825 0.0484929 Vertex 8389 0.0200527 0.0618555 0.0482337 Vertex 8390 0.0210051 0.0618768 0.0478546 Vertex 8391 0.0218954 0.061892 0.0473866 Vertex 8392 0.0226817 0.0618915 0.0467691 Vertex 8393 0.0234288 0.0618809 0.0460892 Vertex 8394 0.0241305 0.0618675 0.0453428 Vertex 8395 0.0250243 0.0618819 0.0448807 Vertex 8396 0.0259713 0.0619044 0.0444933 Vertex 8397 0.026913 0.0619271 0.0440949 Vertex 8398 0.0277553 0.0619298 0.0435605 Vertex 8399 0.0285114 0.0619268 0.0428923 Vertex 8400 0.0292021 0.0619142 0.0421314 Vertex 8401 0.0299135 0.0618945 0.0413957 Vertex 8402 0.0307935 0.0619124 0.0409121 Vertex 8403 0.0317346 0.0619381 0.0405155 Vertex 8404 0.0326592 0.0619445 0.0401066 Vertex 8405 0.033494 0.0619462 0.0395497 Vertex 8406 0.0342924 0.0619556 0.0389482 Vertex 8407 0.0349985 0.0619413 0.0382049 Vertex 8408 0.0356753 0.0619319 0.0374332 Vertex 8409 0.0363022 0.0619082 0.0365841 Vertex 8410 0.0369413 0.0618853 0.0357448 Vertex 8411 0.0375704 0.0618629 0.0348997 Vertex 8412 0.0380924 0.0618152 0.0338774 Vertex 8413 0.0386074 0.0617702 0.0328492 Vertex 8414 0.0391514 0.0617239 0.0318804 Vertex 8415 0.0396969 0.0616754 0.0309066 Vertex 8416 0.0458685 0.0862133 0.0111669 Vertex 8417 0.0290304 0.0968725 0.0421292 Vertex 8418 -0.0621699 0.128298 0.0417254 Vertex 8419 -0.0613599 0.128292 0.04114 Vertex 8420 -0.0605051 0.128314 0.040613 Vertex 8421 -0.059558 0.128315 0.0402204 Vertex 8422 -0.0586682 0.128313 0.0397417 Vertex 8423 -0.066886 0.129814 0.0472408 Vertex 8424 -0.04812 0.128214 0.028687 Vertex 8425 0.0519577 0.0621966 0.0293389 Vertex 8426 0.0528574 0.0622185 0.0288955 Vertex 8427 0.0537262 0.0622241 0.0283948 Vertex 8428 0.0545285 0.0622324 0.0277996 Vertex 8429 0.0553211 0.0622297 0.0271921 Vertex 8430 0.0560342 0.0622175 0.0264602 Vertex 8431 0.0567172 0.0621967 0.0256596 Vertex 8432 0.0573764 0.0621793 0.0248727 Vertex 8433 0.0579498 0.0621469 0.0239372 Vertex 8434 0.0585035 0.0621132 0.0229868 Vertex 8435 0.0589788 0.062133 0.0220601 Vertex 8436 -0.0541694 0.136721 0.0304424 Vertex 8437 -0.0630463 0.113863 0.0385547 Vertex 8438 -0.0447414 0.149173 0.00704529 Vertex 8439 -0.028552 0.159576 0.000695282 Vertex 8440 0.0245994 0.0981921 0.0445203 Vertex 8441 -0.0165839 0.159908 -0.00982549 Vertex 8442 -0.0649816 0.114139 0.0429675 Vertex 8443 0.035697 0.096801 0.0360155 Vertex 8444 -0.0645154 0.121409 0.0489254 Vertex 8445 -0.0693724 0.136902 0.0471868 Vertex 8446 -0.024223 0.17569 -0.0123366 Vertex 8447 -0.023212 0.165344 -0.00918469 Vertex 8448 0.00863383 0.115058 0.0390007 Vertex 8449 -0.0583932 0.146765 0.0331817 Vertex 8450 0.0417109 0.0957641 -0.00380547 Vertex 8451 -0.0650996 0.115729 0.046366 Vertex 8452 0.0101968 0.116422 0.0377394 Vertex 8453 -0.013346 0.168342 -0.0159797 Vertex 8454 -0.0281377 0.171231 -0.00924208 Vertex 8455 0.034067 0.0981569 0.0371457 Vertex 8456 -0.0153586 0.171251 -0.0171482 Vertex 8457 -0.0533672 0.143136 0.0253913 Vertex 8458 -0.053656 0.116868 0.0345992 Vertex 8459 -0.010533 0.178644 -0.025906 Vertex 8460 -0.0302254 0.162455 -0.00347789 Vertex 8461 -0.033406 0.159477 0.0024166 Vertex 8462 0.0333858 0.103442 0.0343819 Vertex 8463 -0.0633642 0.142485 0.0383017 Vertex 8464 -0.0688326 0.13265 0.047942 Vertex 8465 0.0395325 0.105566 0.0221621 Vertex 8466 -0.0545656 0.13815 0.0298405 Vertex 8467 -0.0680338 0.142566 0.0438693 Vertex 8468 -0.0704322 0.13832 0.0474328 Vertex 8469 -0.0606083 0.118309 0.0403758 Vertex 8470 0.00564306 0.109569 0.0416563 Vertex 8471 -0.0392773 0.153597 0.0044688 Vertex 8472 -0.0696099 0.138316 0.0468524 Vertex 8473 -0.0916942 0.124053 0.00727726 Vertex 8474 -0.0162544 0.183109 -0.0200888 Vertex 8475 -0.0635183 0.159851 -0.052592 Vertex 8476 0.00890036 0.0630937 0.0549611 Vertex 8477 0.00979876 0.0631089 0.0545118 Vertex 8478 0.010569 0.0630758 0.0538717 Vertex 8479 0.0111874 0.0630268 0.0529412 Vertex 8480 0.0119148 0.0630446 0.0522963 Vertex 8481 0.0129339 0.063079 0.0520141 Vertex 8482 0.0138934 0.0631004 0.0516475 Vertex 8483 0.0147818 0.0631153 0.0511723 Vertex 8484 0.0156625 0.0631375 0.0506866 Vertex 8485 0.0165486 0.0631544 0.0502063 Vertex 8486 0.0173793 0.0631583 0.049653 Vertex 8487 0.0182222 0.0631608 0.0491228 Vertex 8488 0.0189895 0.0631559 0.0484766 Vertex 8489 0.0198889 0.0631747 0.0480195 Vertex 8490 0.0208176 0.0631975 0.0476002 Vertex 8491 0.0217176 0.0632088 0.0471364 Vertex 8492 0.0225815 0.0632207 0.0466294 Vertex 8493 0.02338 0.0632213 0.0460213 Vertex 8494 0.0241356 0.0632152 0.0453534 Vertex 8495 0.0250125 0.0632249 0.0448766 Vertex 8496 0.0259569 0.0632491 0.0444844 Vertex 8497 0.0268989 0.0632714 0.044083 Vertex 8498 0.0277812 0.063284 0.0436054 Vertex 8499 0.0285711 0.0632767 0.0429905 Vertex 8500 0.0293196 0.0632732 0.0423131 Vertex 8501 0.0300578 0.0632721 0.0416198 Vertex 8502 0.0308902 0.0632769 0.0410591 Vertex 8503 0.0317544 0.0632771 0.0405733 Vertex 8504 0.0327193 0.0632979 0.0402054 Vertex 8505 0.0335961 0.0633113 0.0397473 Vertex 8506 0.0344101 0.0633165 0.0391255 Vertex 8507 0.0351494 0.0633173 0.038442 Vertex 8508 0.0358388 0.063303 0.0376893 Vertex 8509 0.0364696 0.0632797 0.0368445 Vertex 8510 0.0370985 0.0632585 0.0359995 Vertex 8511 0.0377191 0.0632143 0.0350986 Vertex 8512 0.0383109 0.0632029 0.0342252 Vertex 8513 0.038908 0.0631632 0.033303 Vertex 8514 0.0394641 0.063132 0.032359 Vertex 8515 0.03989 0.0630598 0.0312004 Vertex 8516 0.0403936 0.0629925 0.0301493 Vertex 8517 0.0372258 0.108268 -0.000834485 Vertex 8518 -0.0119403 0.171322 -0.0192115 Vertex 8519 -0.0609535 0.135292 0.0364528 Vertex 8520 -0.0618596 0.135275 0.0369058 Vertex 8521 -0.0626699 0.13529 0.0374908 Vertex 8522 -0.0633856 0.13531 0.0381918 Vertex 8523 -0.0639806 0.135327 0.039077 Vertex 8524 0.0516914 0.0635003 0.0289607 Vertex 8525 0.0526393 0.0635217 0.0285801 Vertex 8526 0.0535357 0.0635428 0.028124 Vertex 8527 0.0544233 0.0635568 0.0276516 Vertex 8528 0.0552187 0.0635647 0.027041 Vertex 8529 0.0559752 0.0635544 0.0263749 Vertex 8530 0.0566888 0.0635446 0.0256358 Vertex 8531 0.0573405 0.0635192 0.0248021 Vertex 8532 0.0579353 0.0634887 0.0239229 Vertex 8533 0.0584978 0.0634546 0.0229811 Vertex 8534 -0.0645108 0.135348 0.0400634 Vertex 8535 -0.068364 0.143961 0.043402 Vertex 8536 -0.0528151 0.132539 0.0323863 Vertex 8537 -0.0440117 0.149183 0.00634807 Vertex 8538 -0.0111277 0.166928 -0.0162357 Vertex 8539 -0.0290239 0.0918566 -0.0266024 Vertex 8540 -0.0171613 0.159788 -0.00903074 Vertex 8541 -0.0157849 0.172748 -0.017746 Vertex 8542 -0.00234233 0.10113 0.044176 Vertex 8543 -0.0583717 0.138143 0.0331568 Vertex 8544 -0.0234602 0.17569 -0.0129988 Vertex 8545 -0.0241715 0.165363 -0.00880477 Vertex 8546 0.00772266 0.115023 0.0394097 Vertex 8547 -0.0588318 0.146817 0.0344225 Vertex 8548 -0.0693319 0.141141 0.045512 Vertex 8549 -0.0683563 0.134056 0.04686 Vertex 8550 -0.0642262 0.115635 0.0441038 Vertex 8551 0.00922858 0.116392 0.0380826 Vertex 8552 -0.0142459 0.168321 -0.0155387 Vertex 8553 -0.0451757 0.14769 0.00639824 Vertex 8554 -0.0886066 0.113065 0.00725433 Vertex 8555 0.0168316 0.0926978 0.0490711 Vertex 8556 0.0311691 0.0942449 0.0417029 Vertex 8557 0.0211901 0.113994 0.0360983 Vertex 8558 -0.0331365 0.162399 -0.0024379 Vertex 8559 -0.0314011 0.159502 0.00180977 Vertex 8560 -0.0609595 0.142497 0.0365005 Vertex 8561 -0.069561 0.132665 0.0486469 Vertex 8562 0.0390778 0.105565 0.0241719 Vertex 8563 -0.0458268 0.125298 0.0247658 Vertex 8564 0.0354218 0.100763 0.0338403 Vertex 8565 -0.0558569 0.135328 0.0332838 Vertex 8566 -0.0171147 0.161213 -0.00734926 Vertex 8567 -0.0506513 0.150706 0.0125676 Vertex 8568 0.0390714 0.108406 0.0131668 Vertex 8569 -0.081854 0.0937329 -0.00756112 Vertex 8570 -0.0510104 0.149266 0.0138316 Vertex 8571 -0.080771 0.105947 -0.00458985 Vertex 8572 -0.0147199 0.184604 -0.0232088 Vertex 8573 0.0209137 0.102084 0.0444516 Vertex 8574 0.0189959 0.104672 0.0434338 Vertex 8575 0.0111403 0.105858 -0.0199086 Vertex 8576 0.0098313 0.0644618 0.0545535 Vertex 8577 0.0106165 0.0644536 0.0539383 Vertex 8578 0.0113423 0.0644371 0.0532354 Vertex 8579 0.0122384 0.0644368 0.0527864 Vertex 8580 0.0132903 0.0644915 0.0525417 Vertex 8581 0.0142425 0.0645148 0.0521595 Vertex 8582 0.0151151 0.0645034 0.0516546 Vertex 8583 0.0158912 0.0644868 0.0510299 Vertex 8584 0.0166896 0.0645037 0.050425 Vertex 8585 0.0175453 0.0645325 0.0499023 Vertex 8586 0.0183954 0.0645286 0.0493775 Vertex 8587 0.0191746 0.064523 0.0487473 Vertex 8588 0.0199305 0.0645206 0.0480779 Vertex 8589 0.0207575 0.0645289 0.0475184 Vertex 8590 0.0215982 0.0645366 0.046975 Vertex 8591 0.0224361 0.0645464 0.046427 Vertex 8592 0.0232549 0.0645506 0.0458531 Vertex 8593 0.0240878 0.0645552 0.0452968 Vertex 8594 0.0249807 0.0645674 0.0448324 Vertex 8595 0.0258782 0.0645831 0.0443789 Vertex 8596 0.02686 0.0646091 0.0440244 Vertex 8597 0.0277273 0.0646184 0.0435417 Vertex 8598 0.0285947 0.0646316 0.0430307 Vertex 8599 0.0293752 0.0646271 0.0424024 Vertex 8600 0.0301266 0.0646197 0.0417292 Vertex 8601 0.0309421 0.0646254 0.0411415 Vertex 8602 0.0317796 0.0647744 0.0406274 Vertex 8603 0.0327247 0.0646521 0.0402099 Vertex 8604 0.0336503 0.0646637 0.0398008 Vertex 8605 0.0344933 0.0646793 0.0392567 Vertex 8606 0.0352313 0.064664 0.0385641 Vertex 8607 0.0359549 0.0646627 0.0378653 Vertex 8608 0.0366123 0.064635 0.0370437 Vertex 8609 0.0372523 0.0646113 0.0362056 Vertex 8610 0.0378584 0.0645918 0.0353403 Vertex 8611 0.0384287 0.064558 0.0344028 Vertex 8612 0.0390555 0.064539 0.0335561 Vertex 8613 0.0396386 0.064502 0.0326274 Vertex 8614 0.0400501 0.0644468 0.0314841 Vertex 8615 0.0404558 0.0643575 0.0302495 Vertex 8616 0.0409886 0.0643095 0.0292691 Vertex 8617 0.0416741 0.0642804 0.0284921 Vertex 8618 0.0424682 0.0642865 0.0278791 Vertex 8619 0.0253647 0.107408 0.0385761 Vertex 8620 -0.0656743 0.138242 0.0419702 Vertex 8621 -0.0651151 0.138224 0.0409979 Vertex 8622 -0.0645614 0.138204 0.0400205 Vertex 8623 -0.0640566 0.138182 0.0390191 Vertex 8624 -0.0635813 0.138158 0.0379352 Vertex 8625 0.0263222 0.107421 0.038207 Vertex 8626 0.0541591 0.0648613 0.0272743 Vertex 8627 0.0550352 0.064867 0.0267865 Vertex 8628 0.0558147 0.064873 0.0261542 Vertex 8629 0.056541 0.064854 0.0254614 Vertex 8630 0.0572159 0.0648465 0.024658 Vertex 8631 0.0578503 0.0648244 0.0238145 Vertex 8632 0.0584157 0.0647883 0.022872 Vertex 8633 0.0589424 0.064749 0.0219118 Vertex 8634 0.059454 0.0647075 0.0208869 Vertex 8635 -0.0228186 0.161021 -0.00330981 Vertex 8636 0.0384382 0.0954258 0.0328906 Vertex 8637 -0.0455156 0.14919 0.00769333 Vertex 8638 -0.0489525 0.123989 0.0308621 Vertex 8639 -0.0765303 0.0961207 -0.0124976 Vertex 8640 -0.00382186 0.102465 0.0438439 Vertex 8641 0.0435599 0.0987371 0.0131605 Vertex 8642 -0.01542 0.16691 -0.0137031 Vertex 8643 -0.0227031 0.175691 -0.0136597 Vertex 8644 -0.0251232 0.165382 -0.00841584 Vertex 8645 0.0272256 0.10745 0.0377741 Vertex 8646 -0.0592557 0.146819 0.0355066 Vertex 8647 -0.0685122 0.141137 0.0449382 Vertex 8648 -0.0690362 0.134069 0.0476421 Vertex 8649 -0.063822 0.115596 0.0429106 Vertex 8650 0.00821862 0.116409 0.0384227 Vertex 8651 0.0280941 0.107442 0.0372758 Vertex 8652 0.0289072 0.10744 0.0367037 Vertex 8653 -0.0504088 0.153575 0.0112235 Vertex 8654 -0.0222119 0.158173 -0.00418672 Vertex 8655 0.0296356 0.107455 0.0360045 Vertex 8656 -0.0211595 0.178661 -0.0149212 Vertex 8657 0.0202943 0.113982 0.0365633 Vertex 8658 -0.0321751 0.162395 -0.00280539 Vertex 8659 -0.0405048 0.15944 0.00272423 Vertex 8660 -0.0413443 0.159411 0.00325579 Vertex 8661 -0.0487462 0.118344 0.031163 Vertex 8662 -0.0602206 0.142504 0.0358229 Vertex 8663 -0.0719982 0.132651 0.0504199 Vertex 8664 0.0388075 0.10554 0.0251669 Vertex 8665 -0.0463216 0.125305 0.0258345 Vertex 8666 0.0372771 0.100696 0.0312566 Vertex 8667 -0.0550975 0.13533 0.0326236 Vertex 8668 0.0303546 0.107428 0.0353018 Vertex 8669 0.0310626 0.107429 0.0345663 Vertex 8670 -0.0199842 0.183117 -0.0149159 Vertex 8671 -0.037643 0.153612 0.00331291 Vertex 8672 -0.0342528 0.161016 -0.000502552 Vertex 8673 0.0317406 0.107408 0.0337947 Vertex 8674 -0.0658919 0.11864 0.0504465 Vertex 8675 0.0375072 0.103901 -0.00584413 Vertex 8676 -0.015926 0.178652 -0.0196554 Vertex 8677 0.0323761 0.107397 0.032947 Vertex 8678 0.0330114 0.107386 0.0320976 Vertex 8679 0.00980894 0.0658051 0.0545289 Vertex 8680 0.0106377 0.0658124 0.0539651 Vertex 8681 0.0114981 0.0658063 0.0534716 Vertex 8682 0.0125705 0.0658518 0.0532694 Vertex 8683 0.0135851 0.0658847 0.0529797 Vertex 8684 0.0144807 0.0658974 0.0525165 Vertex 8685 0.0152433 0.0658912 0.0518711 Vertex 8686 0.0160126 0.0658829 0.0512178 Vertex 8687 0.0168274 0.0658911 0.0506364 Vertex 8688 0.0176716 0.0658898 0.0500991 Vertex 8689 0.0185331 0.065881 0.0495848 Vertex 8690 0.0194077 0.0659 0.0490938 Vertex 8691 0.0201466 0.0658754 0.0483972 Vertex 8692 0.0209269 0.0658956 0.0477693 Vertex 8693 0.0216497 0.065881 0.0470485 Vertex 8694 0.0223728 0.0658814 0.0463438 Vertex 8695 0.0231843 0.0658868 0.0457612 Vertex 8696 0.0240158 0.0658883 0.0452055 Vertex 8697 0.0249025 0.0659023 0.0447242 Vertex 8698 0.0258384 0.0659192 0.0443144 Vertex 8699 0.0267481 0.0659374 0.0438828 Vertex 8700 0.0276466 0.0659543 0.0434322 Vertex 8701 0.0285253 0.065965 0.0429423 Vertex 8702 0.0293518 0.0659692 0.0423806 Vertex 8703 0.0301634 0.0659717 0.0417895 Vertex 8704 0.0309495 0.065969 0.041175 Vertex 8705 0.0318042 0.0661523 0.0406683 Vertex 8706 0.0327067 0.0659933 0.0401778 Vertex 8707 0.033595 0.0660055 0.039722 Vertex 8708 0.0344601 0.0660136 0.0392214 Vertex 8709 0.035272 0.0660164 0.0386352 Vertex 8710 0.0359859 0.0660034 0.0379002 Vertex 8711 0.0366758 0.0659888 0.0371374 Vertex 8712 0.0373151 0.0659642 0.0362985 Vertex 8713 0.0379519 0.0659398 0.0354557 Vertex 8714 0.038582 0.0659177 0.034606 Vertex 8715 0.0391807 0.0658814 0.0336832 Vertex 8716 0.0397392 0.0658643 0.0327972 Vertex 8717 0.0401246 0.0657991 0.0315825 Vertex 8718 0.0405117 0.0657145 0.0303349 Vertex 8719 0.0410401 0.0656705 0.029359 Vertex 8720 0.0416085 0.0656213 0.0284032 Vertex 8721 0.0422961 0.0655994 0.0276352 Vertex 8722 0.0336777 0.107392 0.0312726 Vertex 8723 -0.0680503 0.114246 0.0489904 Vertex 8724 0.0404169 0.104204 0.0201615 Vertex 8725 -0.0945117 0.124183 0.0222757 Vertex 8726 -0.0918785 0.141976 0.0181723 Vertex 8727 0.00739775 0.110951 0.0406753 Vertex 8728 -0.0220459 0.166878 -0.0109827 Vertex 8729 0.0343886 0.107359 0.0305696 Vertex 8730 0.0350466 0.107363 0.0297386 Vertex 8731 0.0538716 0.0661448 0.0268494 Vertex 8732 0.0547452 0.0661481 0.0263648 Vertex 8733 0.0555832 0.0661715 0.0258304 Vertex 8734 0.0562967 0.0661688 0.0251012 Vertex 8735 0.0569921 0.0661536 0.0243514 Vertex 8736 0.0576451 0.0661396 0.0235216 Vertex 8737 0.0582502 0.0661055 0.0226582 Vertex 8738 0.0588141 0.0660698 0.0217199 Vertex 8739 0.0593498 0.066038 0.0207029 Vertex 8740 -0.0193156 0.162502 -0.00702982 Vertex 8741 -0.0183092 0.162495 -0.00732366 Vertex 8742 -0.0896326 0.092928 0.0134378 Vertex 8743 -0.0286777 0.158132 0.000508817 Vertex 8744 -0.0411616 0.152146 0.00524032 Vertex 8745 0.0234256 0.0994865 0.0445818 Vertex 8746 0.0145806 0.0953173 0.0493246 Vertex 8747 -0.0250378 0.174204 -0.0117666 Vertex 8748 -0.0310269 0.122601 -0.0056394 Vertex 8749 -0.0262483 0.175689 -0.00998917 Vertex 8750 -0.0278862 0.165359 -0.00713919 Vertex 8751 0.0356733 0.107346 0.028881 Vertex 8752 -0.0616087 0.146812 0.0373554 Vertex 8753 0.02687 0.0981666 0.0425225 Vertex 8754 -0.0713393 0.134067 0.0496215 Vertex 8755 -0.0634008 0.115527 0.0417242 Vertex 8756 -0.0619683 0.12268 0.0437909 Vertex 8757 0.00727028 0.11232 0.040519 Vertex 8758 0.00823253 0.112336 0.0401545 Vertex 8759 0.026785 0.0955535 0.0441601 Vertex 8760 -0.0642124 0.145356 0.038849 Vertex 8761 0.0363312 0.107346 0.0280412 Vertex 8762 0.0369412 0.107321 0.0271722 Vertex 8763 -0.0204109 0.178661 -0.0155986 Vertex 8764 0.0435098 0.098719 0.0141568 Vertex 8765 -0.0312005 0.162424 -0.00314295 Vertex 8766 -0.0501563 0.11976 0.0326732 Vertex 8767 -0.0697019 0.142554 0.0449861 Vertex 8768 -0.0618022 0.142496 0.0370478 Vertex 8769 -0.0728584 0.132623 0.0509226 Vertex 8770 0.0455125 0.0918121 0.0101608 Vertex 8771 -0.0468272 0.125328 0.0268353 Vertex 8772 0.0452718 0.0917995 0.0131601 Vertex 8773 0.0451896 0.0875706 0.0191665 Vertex 8774 -0.0188178 0.158773 -0.00942574 Vertex 8775 0.0199962 0.120682 0.0326204 Vertex 8776 0.0190263 0.120653 0.0329746 Vertex 8777 -0.0164884 0.161116 -0.0081783 Vertex 8778 -0.0512269 0.150712 0.0135153 Vertex 8779 0.0272712 0.0929162 0.0448522 Vertex 8780 -0.0665361 0.11864 0.0512424 Vertex 8781 0.0413993 0.0942972 -0.00577735 Vertex 8782 -0.0583279 0.116979 0.0383609 Vertex 8783 -0.0676248 0.117206 0.0513943 Vertex 8784 -0.0626788 0.119898 0.0446407 Vertex 8785 -0.0543257 0.121248 0.0372193 Vertex 8786 0.0107631 0.0671702 0.0541647 Vertex 8787 0.0117494 0.0671858 0.0538619 Vertex 8788 0.0127465 0.0672208 0.05354 Vertex 8789 0.0136958 0.0672461 0.0531523 Vertex 8790 0.0145592 0.0672414 0.0526521 Vertex 8791 0.0153602 0.0672491 0.0520407 Vertex 8792 0.0161339 0.0672434 0.0514025 Vertex 8793 0.0170086 0.0672594 0.0509139 Vertex 8794 0.0178682 0.0672532 0.0504022 Vertex 8795 0.0187375 0.0672729 0.0498973 Vertex 8796 0.0195403 0.0672509 0.0492981 Vertex 8797 0.0203517 0.0672611 0.0487139 Vertex 8798 0.0211493 0.0672779 0.0481082 Vertex 8799 0.0218458 0.0672628 0.0473581 Vertex 8800 0.0224908 0.0672402 0.0465227 Vertex 8801 0.0232051 0.0672264 0.0457926 Vertex 8802 0.0239769 0.0672243 0.0451455 Vertex 8803 0.0248126 0.0672364 0.0446067 Vertex 8804 0.0257216 0.0672521 0.0441644 Vertex 8805 0.0266626 0.0672707 0.0437593 Vertex 8806 0.0275533 0.0672844 0.0433037 Vertex 8807 0.0283911 0.0672932 0.0427559 Vertex 8808 0.0292682 0.0673021 0.0422638 Vertex 8809 0.0301602 0.0673157 0.0417954 Vertex 8810 0.0309974 0.0673207 0.0412553 Vertex 8811 0.0318595 0.0673315 0.0407335 Vertex 8812 0.0326609 0.0673309 0.0401471 Vertex 8813 0.0335232 0.0673414 0.0396281 Vertex 8814 0.0343622 0.0673468 0.0390872 Vertex 8815 0.0351918 0.0673501 0.0385292 Vertex 8816 0.0359531 0.0673443 0.0378699 Vertex 8817 0.0366467 0.0673305 0.0371158 Vertex 8818 0.0373115 0.0673123 0.0362946 Vertex 8819 0.0379734 0.0672941 0.0355158 Vertex 8820 0.0386277 0.0672715 0.0346845 Vertex 8821 0.0392491 0.0672477 0.0338308 Vertex 8822 0.0397983 0.0672171 0.0328832 Vertex 8823 0.0401742 0.0671588 0.0316675 Vertex 8824 0.0405833 0.0670896 0.0305002 Vertex 8825 0.0410895 0.0670315 0.0294468 Vertex 8826 0.0416371 0.0669849 0.0284796 Vertex 8827 0.042292 0.0669509 0.0276386 Vertex 8828 0.0380905 0.0941294 0.0341306 Vertex 8829 0.0374948 0.0941477 0.0350502 Vertex 8830 -0.0533723 0.122605 0.0368904 Vertex 8831 -0.0499699 0.150693 0.011804 Vertex 8832 0.0289699 0.100814 0.0402993 Vertex 8833 0.0270691 0.0942437 0.0445649 Vertex 8834 -0.0173046 0.166847 -0.0129407 Vertex 8835 -0.0660514 0.11246 0.0412419 Vertex 8836 0.012627 0.12184 0.0342326 Vertex 8837 0.0543584 0.0674371 0.0258007 Vertex 8838 0.0551973 0.0674594 0.0252672 Vertex 8839 0.055991 0.067441 0.024671 Vertex 8840 0.0566945 0.0674374 0.0239376 Vertex 8841 0.0573469 0.0674291 0.0231143 Vertex 8842 0.057983 0.0674087 0.022273 Vertex 8843 0.0585628 0.0673807 0.0213416 Vertex 8844 0.0591195 0.067343 0.0203999 Vertex 8845 -0.0108819 0.168382 -0.0176467 Vertex 8846 -0.0871678 0.11039 0.0183619 Vertex 8847 0.0262873 0.0942382 0.0451936 Vertex 8848 0.0254813 0.0942452 0.0457882 Vertex 8849 0.0425948 0.0873487 -0.0068057 Vertex 8850 0.0242439 0.0994852 0.044008 Vertex 8851 0.0222133 0.103397 0.0428172 Vertex 8852 0.0382182 0.0855917 -0.0147556 Vertex 8853 0.0227131 0.118044 0.0330191 Vertex 8854 -0.0645332 0.120008 0.0489179 Vertex 8855 -0.0256005 0.175695 -0.0107936 Vertex 8856 -0.0269915 0.165366 -0.00760144 Vertex 8857 0.0311369 0.0982118 0.0399163 Vertex 8858 -0.060703 0.146825 0.0369155 Vertex 8859 0.0346875 0.0955379 0.0380285 Vertex 8860 -0.0704989 0.134077 0.0490714 Vertex 8861 0.0402562 0.0857576 -0.0117696 Vertex 8862 -0.08903 0.119932 0.00232561 Vertex 8863 0.0199447 0.104671 0.0430468 Vertex 8864 0.0261701 0.115347 0.0327443 Vertex 8865 -0.0313524 0.158102 0.00192058 Vertex 8866 -0.0716025 0.135501 0.0492566 Vertex 8867 0.0208423 0.104696 0.0425993 Vertex 8868 -0.0665376 0.142546 0.0425061 Vertex 8869 -0.0243462 0.1625 -0.00551798 Vertex 8870 -0.0564715 0.132545 0.0359114 Vertex 8871 -0.0287301 0.172704 -0.00834509 Vertex 8872 -0.0626161 0.12969 0.0410793 Vertex 8873 -0.0703202 0.132668 0.0493213 Vertex 8874 -0.0737927 0.132633 0.0513524 Vertex 8875 -0.0521163 0.12407 0.0351298 Vertex 8876 -0.061834 0.155291 -0.0275862 Vertex 8877 -0.0472614 0.125357 0.0280089 Vertex 8878 0.0360361 0.100737 0.0329764 Vertex 8879 -0.071322 0.138326 0.0479203 Vertex 8880 -0.0556635 0.140996 0.0299986 Vertex 8881 -0.0571296 0.124118 0.0402058 Vertex 8882 0.0141724 0.0940368 0.0505038 Vertex 8883 -0.0681757 0.118633 0.0523539 Vertex 8884 -0.0673284 0.11863 0.0518333 Vertex 8885 -0.0181358 0.159669 -0.00704365 Vertex 8886 -0.0593768 0.116855 0.0386274 Vertex 8887 -0.066902 0.117219 0.0507079 Vertex 8888 -0.0850563 0.112998 0.00231897 Vertex 8889 -0.0349979 0.152158 8.20736e-05 Vertex 8890 0.0109305 0.0685438 0.0544088 Vertex 8891 0.0118954 0.0685639 0.0540604 Vertex 8892 0.0127964 0.0685744 0.0536204 Vertex 8893 0.0136873 0.0685864 0.0531495 Vertex 8894 0.0145324 0.0686382 0.0526166 Vertex 8895 0.0154246 0.0685991 0.0521564 Vertex 8896 0.0163171 0.0686116 0.0516854 Vertex 8897 0.0172066 0.068625 0.0512164 Vertex 8898 0.0180859 0.068641 0.0507282 Vertex 8899 0.0189031 0.068639 0.0501604 Vertex 8900 0.0196742 0.0686359 0.0495084 Vertex 8901 0.0205204 0.0686316 0.0489712 Vertex 8902 0.0213879 0.0686569 0.0484685 Vertex 8903 0.0220783 0.0686046 0.0476717 Vertex 8904 0.0227469 0.0686119 0.0468992 Vertex 8905 0.0234128 0.0685823 0.0460905 Vertex 8906 0.0240933 0.0685753 0.045325 Vertex 8907 0.0248522 0.0685926 0.0446792 Vertex 8908 0.0256802 0.0685786 0.0440967 Vertex 8909 0.0265401 0.0686018 0.0436052 Vertex 8910 0.0274255 0.0686124 0.0431235 Vertex 8911 0.02824 0.0686155 0.0425458 Vertex 8912 0.0291321 0.0686302 0.0420784 Vertex 8913 0.0300864 0.0686462 0.0416997 Vertex 8914 0.0309993 0.0686673 0.04128 Vertex 8915 0.0318792 0.0686784 0.0407831 Vertex 8916 0.0327041 0.0686805 0.0402125 Vertex 8917 0.0335035 0.0686838 0.0396083 Vertex 8918 0.0342696 0.0686799 0.038964 Vertex 8919 0.0350895 0.0686836 0.0383949 Vertex 8920 0.0358581 0.0686798 0.0377462 Vertex 8921 0.0365837 0.0686678 0.0370221 Vertex 8922 0.0372641 0.0686531 0.0362559 Vertex 8923 0.0379445 0.0686366 0.0354907 Vertex 8924 0.0386091 0.0686148 0.0346703 Vertex 8925 0.0392359 0.0685928 0.0338195 Vertex 8926 0.0397534 0.0685495 0.0327941 Vertex 8927 0.0402167 0.0685122 0.0317439 Vertex 8928 0.0407099 0.0684593 0.0306869 Vertex 8929 0.0412086 0.0684033 0.0296357 Vertex 8930 0.0417276 0.0683416 0.0285931 Vertex 8931 0.0423379 0.0683118 0.0277209 Vertex 8932 0.0429413 0.0682748 0.0268013 Vertex 8933 -0.0451437 0.162134 -0.00879907 Vertex 8934 0.0385464 0.0954957 -0.00890109 Vertex 8935 -0.0907403 0.135093 0.0162106 Vertex 8936 -0.0889612 0.111861 0.0183359 Vertex 8937 0.0348249 0.110986 -0.0028353 Vertex 8938 -0.0577114 0.148197 0.0324041 Vertex 8939 -0.0317958 0.166782 -0.0057687 Vertex 8940 0.0101281 0.105858 -0.0202342 Vertex 8941 -0.0410438 0.162368 0.00371458 Vertex 8942 -0.0210995 0.166843 -0.0113898 Vertex 8943 0.0547648 0.068691 0.024634 Vertex 8944 0.0555795 0.068697 0.0240751 Vertex 8945 0.0563251 0.0686891 0.0234174 Vertex 8946 0.0582269 0.0686747 0.0208601 Vertex 8947 0.030839 0.0995119 0.0394948 Vertex 8948 0.0300963 0.0995295 0.0401727 Vertex 8949 0.0293195 0.0995163 0.0407971 Vertex 8950 0.0257555 0.0994695 0.0426751 Vertex 8951 0.025022 0.0994981 0.0433749 Vertex 8952 -0.0332792 0.168261 -0.00439757 Vertex 8953 -0.063261 0.129725 0.0418859 Vertex 8954 -0.0118724 0.166916 -0.0155725 Vertex 8955 -0.0561549 0.118392 0.0380484 Vertex 8956 0.0457594 0.0890174 0.0101642 Vertex 8957 -0.0511271 0.116882 0.0329705 Vertex 8958 0.0234999 0.0955508 0.0464417 Vertex 8959 -0.0299391 0.175699 -0.00474628 Vertex 8960 -0.0280713 0.175691 -0.00734553 Vertex 8961 -0.0260362 0.165356 -0.00798775 Vertex 8962 -0.0628457 0.158366 -0.0406006 Vertex 8963 -0.0598823 0.146825 0.0363335 Vertex 8964 -0.0623153 0.13671 0.0362243 Vertex 8965 -0.0697355 0.134074 0.048407 Vertex 8966 0.0444906 0.0861036 -0.00180248 Vertex 8967 -0.025842 0.091626 -0.0326108 Vertex 8968 -0.0636699 0.112355 0.0376208 Vertex 8969 0.021724 0.104691 0.0421173 Vertex 8970 0.00897502 0.113705 0.0394792 Vertex 8971 -0.0576238 0.145329 0.032529 Vertex 8972 -0.0322455 0.15809 0.00238998 Vertex 8973 -0.0389196 0.163835 0.00150184 Vertex 8974 -0.0269539 0.17866 -0.00745161 Vertex 8975 -0.0196772 0.178663 -0.0162873 Vertex 8976 -0.0233093 0.162498 -0.00577898 Vertex 8977 -0.0127527 0.177163 -0.0221029 Vertex 8978 -0.0336234 0.153659 0.000337049 Vertex 8979 -0.0691412 0.109612 0.0381472 Vertex 8980 -0.0711513 0.132664 0.0498849 Vertex 8981 -0.0501055 0.129693 0.0310292 Vertex 8982 -0.0494838 0.129682 0.0301574 Vertex 8983 -0.0477839 0.125387 0.0290716 Vertex 8984 -0.0631388 0.0620641 0.0242 Vertex 8985 -0.0722375 0.138308 0.048356 Vertex 8986 0.0225321 0.104677 0.0415312 Vertex 8987 0.0385227 0.108358 0.00315989 Vertex 8988 -0.0651299 0.139658 0.0409855 Vertex 8989 0.0394117 0.0870933 -0.0127933 Vertex 8990 -0.0170638 0.168326 -0.0143421 Vertex 8991 -0.0308588 0.171231 -0.00613945 Vertex 8992 0.0108601 0.117776 0.0369396 Vertex 8993 -0.0603515 0.116839 0.0389782 Vertex 8994 -0.0662568 0.117183 0.0498756 Vertex 8995 -0.0636469 0.11387 0.0394431 Vertex 8996 0.0396279 0.0857065 -0.0127726 Vertex 8997 0.0100468 0.0698695 0.0549195 Vertex 8998 0.0109957 0.0698921 0.0545336 Vertex 8999 0.0118973 0.0699023 0.0540919 Vertex 9000 0.0127846 0.0699169 0.0536174 Vertex 9001 0.0137184 0.0699424 0.0531931 Vertex 9002 0.0146499 0.0699433 0.0528108 Vertex 9003 0.0155988 0.0699697 0.0524229 Vertex 9004 0.0164839 0.0699861 0.0519409 Vertex 9005 0.0173223 0.0699836 0.0514025 Vertex 9006 0.018149 0.0699846 0.0508404 Vertex 9007 0.0189748 0.0699869 0.0502663 Vertex 9008 0.0198393 0.0700116 0.0497622 Vertex 9009 0.0207672 0.0700064 0.0493524 Vertex 9010 0.0216229 0.0700379 0.048827 Vertex 9011 0.022407 0.0700249 0.0481925 Vertex 9012 0.0230994 0.0700125 0.0474321 Vertex 9013 0.0237226 0.0699627 0.0465409 Vertex 9014 0.0243671 0.0699418 0.0457082 Vertex 9015 0.0250153 0.0699448 0.0449142 Vertex 9016 0.0257185 0.0699313 0.0441746 Vertex 9017 0.0265464 0.0699406 0.043619 Vertex 9018 0.0273636 0.0699427 0.0430425 Vertex 9019 0.0281616 0.0699505 0.0424355 Vertex 9020 0.029005 0.0699505 0.0419019 Vertex 9021 0.0299489 0.069977 0.0415097 Vertex 9022 0.0309459 0.0700081 0.0411857 Vertex 9023 0.0319241 0.0700307 0.0408624 Vertex 9024 0.032766 0.0700345 0.0403232 Vertex 9025 0.0335736 0.0700381 0.039723 Vertex 9026 0.0342867 0.0700233 0.0389954 Vertex 9027 0.0350254 0.0700182 0.0383083 Vertex 9028 0.0357777 0.070014 0.0376374 Vertex 9029 0.0365023 0.0700019 0.0369139 Vertex 9030 0.037196 0.0699864 0.036159 Vertex 9031 0.0378948 0.0699732 0.0354084 Vertex 9032 0.0385734 0.0699568 0.0346425 Vertex 9033 0.039204 0.0699354 0.0337973 Vertex 9034 0.0397845 0.0699028 0.0328672 Vertex 9035 0.0402901 0.0698645 0.0318359 Vertex 9036 0.0407992 0.0698146 0.0307925 Vertex 9037 0.0413281 0.0697537 0.029756 Vertex 9038 0.041872 0.069712 0.028792 Vertex 9039 0.0424296 0.0696684 0.0278335 Vertex 9040 0.0429689 0.0696277 0.0268653 Vertex 9041 0.0435566 0.0695959 0.0259839 Vertex 9042 -0.0609918 0.138116 0.0346365 Vertex 9043 -0.0472353 0.12392 0.0280317 Vertex 9044 -0.0564929 0.14962 0.0306387 Vertex 9045 -0.089555 0.092956 0.0194329 Vertex 9046 -0.0856221 0.107687 0.0203552 Vertex 9047 -0.0132244 0.172771 -0.0193112 Vertex 9048 0.025387 0.103408 0.0403826 Vertex 9049 -0.012493 0.16839 -0.0164935 Vertex 9050 0.0196457 0.116633 0.0356159 Vertex 9051 -0.0465526 0.147719 0.00793526 Vertex 9052 -0.0923088 0.114683 0.0143254 Vertex 9053 0.0424576 0.0845381 -0.00679736 Vertex 9054 0.035312 0.0840703 -0.0177861 Vertex 9055 -0.087117 0.119846 -0.000719646 Vertex 9056 -0.0295401 0.0904607 -0.0275932 Vertex 9057 -0.0869304 0.137738 0.00419643 Vertex 9058 -0.0591124 0.121234 0.0408265 Vertex 9059 -0.0166266 0.172732 -0.0172138 Vertex 9060 -0.0126907 0.166905 -0.0150111 Vertex 9061 -0.0534544 0.124093 0.0367404 Vertex 9062 -0.00359831 0.101107 0.0440537 Vertex 9063 -0.018333 0.172741 -0.0161594 Vertex 9064 -0.0276246 0.160982 -0.00149388 Vertex 9065 0.0239184 0.116674 0.0330029 Vertex 9066 -0.0292161 0.178518 -0.014988 Vertex 9067 -0.0717812 0.166615 -0.0459981 Vertex 9068 -0.021174 0.184521 -0.0131308 Vertex 9069 -0.0180884 0.184586 -0.0174536 Vertex 9070 -0.0518449 0.146252 0.0164181 Vertex 9071 -0.0121699 0.165481 -0.0142428 Vertex 9072 -0.0293004 0.175699 -0.00559167 Vertex 9073 -0.0175288 0.165418 -0.0114925 Vertex 9074 -0.0672114 0.120049 0.0520179 Vertex 9075 -0.042525 0.149193 0.00498605 Vertex 9076 0.0377895 0.0954381 0.0337234 Vertex 9077 -0.0676947 0.134039 0.046063 Vertex 9078 0.0232916 0.104676 0.0408599 Vertex 9079 0.0454321 0.0861887 0.0181684 Vertex 9080 -0.0625128 0.145366 0.0377954 Vertex 9081 -0.0627767 0.112367 0.0371562 Vertex 9082 0.0415013 0.104244 0.010161 Vertex 9083 -0.0282274 0.162443 -0.0041123 Vertex 9084 -0.0331542 0.158077 0.00281987 Vertex 9085 -0.0383322 0.163825 0.00056966 Vertex 9086 0.0214629 0.119376 0.0329783 Vertex 9087 -0.018937 0.178659 -0.0169738 Vertex 9088 -0.0165785 0.162548 -0.00831661 Vertex 9089 -0.0246821 0.177174 -0.0112336 Vertex 9090 -0.0520915 0.129726 0.0334448 Vertex 9091 -0.065267 0.132559 0.042478 Vertex 9092 -0.0507289 0.129704 0.0318965 Vertex 9093 -0.0483005 0.12541 0.0300666 Vertex 9094 -0.0495314 0.12548 0.031876 Vertex 9095 0.0451823 0.091796 0.014161 Vertex 9096 -0.0601994 0.14968 0.0358889 Vertex 9097 -0.0174189 0.178658 -0.0183022 Vertex 9098 0.0141007 0.120583 0.0346592 Vertex 9099 -0.0187779 0.183117 -0.0166827 Vertex 9100 -0.0644392 0.112372 0.0382632 Vertex 9101 -0.00881786 0.169637 -0.0227487 Vertex 9102 0.0367516 0.111162 0.00316661 Vertex 9103 -0.0594982 0.143919 0.0350801 Vertex 9104 -0.0618021 0.116863 0.0404147 Vertex 9105 -0.061134 0.11687 0.0396165 Vertex 9106 -0.0656399 0.11715 0.0490043 Vertex 9107 -0.064559 0.11407 0.0417666 Vertex 9108 -0.0588484 0.13671 0.0342246 Vertex 9109 -0.0256856 0.161028 -0.00218154 Vertex 9110 0.0101515 0.071231 0.055077 Vertex 9111 0.0110379 0.0712445 0.0546046 Vertex 9112 0.0119051 0.0711889 0.0540767 Vertex 9113 0.0128317 0.0712714 0.0536973 Vertex 9114 0.0138055 0.0712841 0.0533593 Vertex 9115 0.014817 0.0713159 0.0530708 Vertex 9116 0.0156656 0.0713152 0.0525386 Vertex 9117 0.0164758 0.0713296 0.0519403 Vertex 9118 0.0172645 0.0713208 0.051333 Vertex 9119 0.01814 0.0713245 0.0508426 Vertex 9120 0.0190831 0.0713469 0.0504539 Vertex 9121 0.0200754 0.0713524 0.0501382 Vertex 9122 0.0210136 0.0713836 0.0497227 Vertex 9123 0.0218587 0.0714183 0.0491823 Vertex 9124 0.0226382 0.0714084 0.0485432 Vertex 9125 0.0233607 0.0713858 0.0478141 Vertex 9126 0.0240483 0.0713748 0.0470522 Vertex 9127 0.0246484 0.0713321 0.0461382 Vertex 9128 0.0252483 0.0713214 0.0452679 Vertex 9129 0.0259161 0.0713197 0.0444841 Vertex 9130 0.0266728 0.0713177 0.0438181 Vertex 9131 0.0275195 0.0713136 0.0432798 Vertex 9132 0.0283147 0.0712973 0.0426773 Vertex 9133 0.0291103 0.0713139 0.0420683 Vertex 9134 0.0299408 0.0713176 0.0415086 Vertex 9135 0.0308676 0.0713453 0.0410867 Vertex 9136 0.0318279 0.0713659 0.0407221 Vertex 9137 0.0327952 0.0713854 0.0403707 Vertex 9138 0.0336335 0.0713894 0.0398251 Vertex 9139 0.0344259 0.0713949 0.0392126 Vertex 9140 0.0351443 0.071382 0.0384881 Vertex 9141 0.0358497 0.0713653 0.0377445 Vertex 9142 0.0365208 0.0713424 0.036933 Vertex 9143 0.03717 0.0713299 0.0361376 Vertex 9144 0.0378679 0.0713179 0.0353865 Vertex 9145 0.0385608 0.0713011 0.0346329 Vertex 9146 0.0391956 0.0712805 0.0337887 Vertex 9147 0.0398005 0.0712586 0.0329247 Vertex 9148 0.040355 0.0712163 0.0319238 Vertex 9149 0.0409071 0.0711839 0.0309718 Vertex 9150 0.041469 0.0711384 0.0300167 Vertex 9151 0.0420248 0.0710795 0.0289899 Vertex 9152 0.0425358 0.0710418 0.0280089 Vertex 9153 0.0430366 0.0709859 0.0269587 Vertex 9154 0.0435542 0.0709351 0.0259153 Vertex 9155 -0.0175786 0.180143 -0.0185198 Vertex 9156 0.0238985 0.104719 0.0399907 Vertex 9157 -0.0550412 0.129739 0.0362139 Vertex 9158 -0.0412659 0.160879 0.0033623 Vertex 9159 0.0247695 0.1047 0.0394768 Vertex 9160 0.0294623 0.103445 0.0374919 Vertex 9161 0.0287346 0.10342 0.0381993 Vertex 9162 0.016206 0.0927227 0.0499244 Vertex 9163 0.0234983 0.102092 0.0429315 Vertex 9164 0.044803 0.0945847 0.0121616 Vertex 9165 0.0449279 0.0945923 0.00916323 Vertex 9166 0.0404227 0.0885874 -0.0107894 Vertex 9167 -0.0635581 0.170962 -0.0485923 Vertex 9168 0.0424628 0.0943961 -0.00280162 Vertex 9169 0.0437182 0.0944809 0.000197915 Vertex 9170 -0.0629007 0.115475 0.040648 Vertex 9171 -0.0549375 0.140991 0.0293007 Vertex 9172 -0.0296475 0.169744 -0.0079151 Vertex 9173 -0.00469334 0.101051 0.0441761 Vertex 9174 -0.00579523 0.10109 0.0444886 Vertex 9175 -0.0618436 0.129703 0.0404325 Vertex 9176 0.0257469 0.104744 0.0391433 Vertex 9177 -0.0148223 0.129108 0.012888 Vertex 9178 0.0428473 0.0944698 0.0251639 Vertex 9179 -0.0617056 0.1325 0.0388812 Vertex 9180 -0.055795 0.129741 0.0368819 Vertex 9181 -0.0146178 0.161254 -0.0115208 Vertex 9182 -0.010869 0.165486 -0.0158779 Vertex 9183 -0.0114637 0.165492 -0.0149909 Vertex 9184 -0.013694 0.165443 -0.0129401 Vertex 9185 -0.0165631 0.165424 -0.0118502 Vertex 9186 -0.0265381 0.155425 -0.00506198 Vertex 9187 -0.049617 0.115589 0.0334474 Vertex 9188 -0.0492065 0.128269 0.0305743 Vertex 9189 -0.0671166 0.134015 0.0451603 Vertex 9190 -0.0151683 0.160834 -0.010917 Vertex 9191 -0.0811951 0.147316 0.000164965 Vertex 9192 0.040955 0.104188 0.00218636 Vertex 9193 -0.0662654 0.129803 0.0463681 Vertex 9194 -0.0930208 0.116049 0.0173125 Vertex 9195 0.0230988 0.111339 0.037076 Vertex 9196 0.0368789 0.0941727 0.035906 Vertex 9197 -0.043544 0.157959 0.00535766 Vertex 9198 -0.0300578 0.163895 -0.00500569 Vertex 9199 -0.0621481 0.159972 -0.0385982 Vertex 9200 -0.0181797 0.178658 -0.0176382 Vertex 9201 -0.0158151 0.162561 -0.00896512 Vertex 9202 -0.0479563 0.0699321 0.0400053 Vertex 9203 0.0260945 0.0981604 0.0431638 Vertex 9204 0.0329891 0.092935 0.0408139 Vertex 9205 -0.0480021 0.126873 0.0289133 Vertex 9206 -0.051366 0.129708 0.032749 Vertex 9207 -0.0489136 0.125469 0.0310273 Vertex 9208 -0.0825795 0.0937805 -0.00656944 Vertex 9209 -0.0938694 0.121489 0.0252875 Vertex 9210 -0.0354553 0.163829 -0.00227816 Vertex 9211 0.0150413 0.120568 0.0342385 Vertex 9212 -0.0145095 0.171282 -0.0176637 Vertex 9213 0.029169 0.114081 0.0318014 Vertex 9214 -0.0664147 0.112558 0.0425241 Vertex 9215 -0.0580383 0.122682 0.0406302 Vertex 9216 -0.0894336 0.0956291 0.0144221 Vertex 9217 -0.0645869 0.117148 0.0471018 Vertex 9218 -0.0650728 0.117149 0.0481049 Vertex 9219 -0.0692254 0.124258 0.0526584 Vertex 9220 0.0293141 0.095566 0.0425395 Vertex 9221 -0.0523232 0.13528 0.029621 Vertex 9222 0.00931572 0.0725689 0.0556419 Vertex 9223 0.0102149 0.0725802 0.055192 Vertex 9224 0.0110403 0.0725847 0.0546235 Vertex 9225 0.0119312 0.0725978 0.0541603 Vertex 9226 0.0129485 0.0726239 0.0538836 Vertex 9227 0.0140119 0.072675 0.0536492 Vertex 9228 0.0148576 0.0726711 0.0531263 Vertex 9229 0.0156666 0.0726831 0.0525311 Vertex 9230 0.0164183 0.0726599 0.0518741 Vertex 9231 0.0173125 0.0726566 0.0514253 Vertex 9232 0.0183688 0.0727072 0.0511848 Vertex 9233 0.0194047 0.0727279 0.0509389 Vertex 9234 0.0203473 0.0727595 0.0505294 Vertex 9235 0.021227 0.0727783 0.05004 Vertex 9236 0.0220024 0.0727679 0.0493999 Vertex 9237 0.0227593 0.0727654 0.0487302 Vertex 9238 0.0235224 0.0727618 0.0480692 Vertex 9239 0.024237 0.0727429 0.0473317 Vertex 9240 0.0248868 0.0727438 0.0465386 Vertex 9241 0.0254616 0.0727112 0.0456024 Vertex 9242 0.0260763 0.0726986 0.044735 Vertex 9243 0.0269054 0.0726895 0.0441444 Vertex 9244 0.0277999 0.0727164 0.0436883 Vertex 9245 0.0286828 0.072686 0.0432253 Vertex 9246 0.0295237 0.0727272 0.042682 Vertex 9247 0.0302378 0.0727042 0.0419554 Vertex 9248 0.0310541 0.0727142 0.0413756 Vertex 9249 0.0318915 0.0727133 0.0408308 Vertex 9250 0.0327797 0.0727287 0.040356 Vertex 9251 0.03367 0.072742 0.0398859 Vertex 9252 0.0345395 0.0727588 0.0393885 Vertex 9253 0.0352999 0.0727523 0.0387329 Vertex 9254 0.0360152 0.072737 0.038003 Vertex 9255 0.0366581 0.0727136 0.0371657 Vertex 9256 0.0371829 0.0726727 0.036151 Vertex 9257 0.0378457 0.0726607 0.0353699 Vertex 9258 0.038544 0.0726461 0.034619 Vertex 9259 0.0391967 0.0726247 0.033788 Vertex 9260 0.0398166 0.0726016 0.0329349 Vertex 9261 0.0404333 0.0725805 0.0320798 Vertex 9262 0.0409764 0.0725373 0.0310711 Vertex 9263 0.0415492 0.0724945 0.03012 Vertex 9264 0.0421092 0.0724515 0.0291612 Vertex 9265 0.0426104 0.0723991 0.0281081 Vertex 9266 0.0431148 0.0723568 0.0271232 Vertex 9267 0.0435836 0.0722927 0.0259867 Vertex 9268 0.0440515 0.0722274 0.0248494 Vertex 9269 0.0445188 0.0721805 0.0237826 Vertex 9270 -0.0904705 0.135055 0.0132171 Vertex 9271 -0.0761608 0.175035 -0.0499961 Vertex 9272 0.0101664 0.120462 0.0359466 Vertex 9273 -0.067061 0.0617728 0.0200983 Vertex 9274 0.0430185 0.100102 0.00517011 Vertex 9275 0.0429574 0.0859786 -0.00579554 Vertex 9276 -0.0865396 0.139093 0.00420465 Vertex 9277 -0.0500004 0.121197 0.0329094 Vertex 9278 -0.0855325 0.107606 0.0053458 Vertex 9279 -0.0639176 0.153606 -0.0366205 Vertex 9280 -0.0286016 0.109083 -0.0194963 Vertex 9281 -0.0274751 0.109286 -0.019717 Vertex 9282 0.0360023 0.103374 0.0311349 Vertex 9283 -0.062221 0.119852 0.0434664 Vertex 9284 0.0398312 0.0992984 0.027798 Vertex 9285 -0.084276 0.107651 0.0243439 Vertex 9286 0.0452717 0.0903987 0.0151606 Vertex 9287 -0.0360191 0.153642 0.00214438 Vertex 9288 -0.0821184 0.0782385 0.0256306 Vertex 9289 0.0437433 0.0945326 0.0221692 Vertex 9290 -0.0781679 0.14865 -0.00288263 Vertex 9291 -0.041856 0.149196 0.00419837 Vertex 9292 -0.0462327 0.128102 0.0242709 Vertex 9293 -0.0340138 0.155107 0.00155033 Vertex 9294 -0.0331866 0.15511 0.000984746 Vertex 9295 -0.0323163 0.155148 0.000487548 Vertex 9296 -0.0291189 0.15522 -0.00190906 Vertex 9297 -0.0484259 0.152144 0.0105657 Vertex 9298 0.0112135 0.116429 0.0374582 Vertex 9299 0.0417012 0.085878 -0.00880084 Vertex 9300 -0.0665318 0.134006 0.0442059 Vertex 9301 0.0440002 0.0888695 -0.00280666 Vertex 9302 -0.0515897 0.146262 0.0154112 Vertex 9303 -0.0584949 0.143878 0.0330085 Vertex 9304 0.04114 0.104231 0.00317036 Vertex 9305 0.0240569 0.111353 0.0367066 Vertex 9306 -0.0238626 0.169762 -0.0118641 Vertex 9307 -0.0247145 0.161052 -0.00252569 Vertex 9308 0.0257313 0.0968616 0.0444005 Vertex 9309 -0.044247 0.157947 0.00609665 Vertex 9310 -0.0290382 0.16386 -0.00530596 Vertex 9311 -0.0234782 0.174205 -0.0130294 Vertex 9312 -0.0263171 0.178663 -0.00829314 Vertex 9313 -0.0628558 0.170957 -0.0505963 Vertex 9314 -0.0203373 0.158355 -0.00674555 Vertex 9315 0.0266877 0.104744 0.0387392 Vertex 9316 -0.0459915 0.152139 0.00880917 Vertex 9317 -0.0646654 0.132541 0.0415985 Vertex 9318 -0.0573808 0.129734 0.0381066 Vertex 9319 0.044441 0.093115 0.00120191 Vertex 9320 -0.088546 0.102334 0.0113879 Vertex 9321 -0.053626 0.1255 0.0365054 Vertex 9322 -0.0243375 0.1639 -0.00728245 Vertex 9323 0.0159567 0.120613 0.0338084 Vertex 9324 0.0305387 0.114047 0.0302625 Vertex 9325 -0.0225303 0.159751 -0.00283877 Vertex 9326 0.0458052 0.08902 0.00916777 Vertex 9327 -0.0859996 0.118394 -0.000793117 Vertex 9328 0.0454023 0.0875829 0.0161653 Vertex 9329 0.0366462 0.100736 0.0320541 Vertex 9330 0.0438672 0.0916755 -0.00180444 Vertex 9331 -0.0607941 0.143953 0.0367655 Vertex 9332 0.0355444 0.109985 0.0269213 Vertex 9333 0.0181166 0.118416 -0.011621 Vertex 9334 0.0093902 0.0739182 0.0557875 Vertex 9335 0.0102664 0.0739304 0.0552835 Vertex 9336 0.0111129 0.0739356 0.0547693 Vertex 9337 0.0120599 0.0739551 0.0543847 Vertex 9338 0.013184 0.0740073 0.0542309 Vertex 9339 0.0141451 0.0740257 0.0538731 Vertex 9340 0.0149724 0.0740286 0.0533099 Vertex 9341 0.0157288 0.0740195 0.0526622 Vertex 9342 0.0166416 0.0740317 0.0522091 Vertex 9343 0.0176795 0.0740469 0.0519763 Vertex 9344 0.0187407 0.0740964 0.0517477 Vertex 9345 0.0196906 0.074125 0.0513576 Vertex 9346 0.0205417 0.0741225 0.0508294 Vertex 9347 0.0213439 0.0741385 0.0502206 Vertex 9348 0.0220764 0.0741142 0.049509 Vertex 9349 0.0228611 0.0741302 0.0488936 Vertex 9350 0.0236414 0.0741206 0.0482553 Vertex 9351 0.0244049 0.0741131 0.0475942 Vertex 9352 0.0250862 0.0741055 0.0468243 Vertex 9353 0.025639 0.0740461 0.0458389 Vertex 9354 0.0262357 0.0740751 0.0449841 Vertex 9355 0.0271512 0.0740976 0.0445232 Vertex 9356 0.0280502 0.0740858 0.0440821 Vertex 9357 0.0290027 0.0741128 0.0436952 Vertex 9358 0.0298673 0.0740916 0.0431977 Vertex 9359 0.0305998 0.0741029 0.0424942 Vertex 9360 0.0313861 0.0740897 0.0418701 Vertex 9361 0.0321478 0.0740867 0.0412125 Vertex 9362 0.0328708 0.0740673 0.0404957 Vertex 9363 0.0337034 0.0740969 0.0399489 Vertex 9364 0.0345611 0.0740948 0.0394254 Vertex 9365 0.0353716 0.0741014 0.0388421 Vertex 9366 0.0361319 0.074097 0.0381795 Vertex 9367 0.0367705 0.074074 0.0373409 Vertex 9368 0.0373383 0.0740435 0.0363986 Vertex 9369 0.0379386 0.07401 0.0354837 Vertex 9370 0.0385799 0.0739884 0.0346445 Vertex 9371 0.0392087 0.0739776 0.0338431 Vertex 9372 0.0398305 0.0739567 0.0329917 Vertex 9373 0.0404449 0.0739232 0.0320846 Vertex 9374 0.0410157 0.0739041 0.031202 Vertex 9375 0.0415736 0.0738523 0.0301911 Vertex 9376 0.0421423 0.0738117 0.0292393 Vertex 9377 0.042672 0.0737568 0.0282004 Vertex 9378 0.0431795 0.0737197 0.0272167 Vertex 9379 0.0436314 0.0736519 0.026072 Vertex 9380 0.0440963 0.0735854 0.0249308 Vertex 9381 0.0445131 0.0735224 0.0237705 Vertex 9382 0.0449394 0.0734628 0.0226146 Vertex 9383 -0.0888952 0.137894 0.0271916 Vertex 9384 0.0407626 0.105627 0.00616707 Vertex 9385 0.038419 0.105512 0.0261645 Vertex 9386 0.0404448 0.0985503 0.0271661 Vertex 9387 -0.0492036 0.131059 0.0288275 Vertex 9388 -0.0503264 0.131112 0.0307063 Vertex 9389 0.0353256 0.109535 -0.00390394 Vertex 9390 -0.0524183 0.131115 0.0329855 Vertex 9391 -0.0531501 0.13113 0.0336749 Vertex 9392 -0.0629366 0.147438 -0.0146052 Vertex 9393 0.0405945 0.102819 0.0221712 Vertex 9394 0.0401875 0.102783 0.0241636 Vertex 9395 0.0250182 0.11137 0.036342 Vertex 9396 -0.0161012 0.16832 -0.0147108 Vertex 9397 -0.0528526 0.147782 0.0214111 Vertex 9398 -0.0160443 0.174209 -0.0181164 Vertex 9399 -0.0135602 0.174221 -0.0197865 Vertex 9400 -0.021529 0.17126 -0.0137526 Vertex 9401 -0.0526201 0.14007 0.0244025 Vertex 9402 0.040243 0.0970923 -0.00582991 Vertex 9403 0.0275361 0.10477 0.0382193 Vertex 9404 -0.0365356 0.155076 0.00317988 Vertex 9405 -0.0356646 0.155102 0.0026804 Vertex 9406 -0.0348371 0.155104 0.00211833 Vertex 9407 -0.0495888 0.146296 0.0105853 Vertex 9408 -0.0500812 0.146304 0.0115954 Vertex 9409 0.0329112 0.096871 0.0389677 Vertex 9410 -0.0252811 0.168282 -0.0104061 Vertex 9411 -0.0495972 0.118308 0.0316941 Vertex 9412 -0.053795 0.115431 0.0343764 Vertex 9413 -0.0660018 0.133981 0.0432166 Vertex 9414 -0.0929299 0.122874 0.0352771 Vertex 9415 -0.029909 0.0904807 -0.0265953 Vertex 9416 -0.0928176 0.120043 0.0102955 Vertex 9417 -0.0600502 0.143934 0.0360579 Vertex 9418 0.0258671 0.111418 0.0358303 Vertex 9419 -0.0549717 0.132532 0.0345672 Vertex 9420 -0.0571091 0.140994 0.0314586 Vertex 9421 0.0272041 0.0968528 0.0430049 Vertex 9422 -0.0195403 0.1757 -0.0161256 Vertex 9423 -0.0281276 0.163902 -0.00573037 Vertex 9424 -0.0107378 0.177152 -0.0244143 Vertex 9425 -0.0256504 0.178665 -0.00908499 Vertex 9426 -0.0943565 0.12553 0.0182582 Vertex 9427 -0.0209099 0.158178 -0.00579641 Vertex 9428 -0.0656393 0.145367 0.0403005 Vertex 9429 0.0371269 0.09285 0.0362758 Vertex 9430 -0.0640313 0.13251 0.040793 Vertex 9431 -0.0582589 0.129739 0.0385905 Vertex 9432 0.0441644 0.0931187 0.000177172 Vertex 9433 -0.0897267 0.135137 0.0262095 Vertex 9434 -0.0566171 0.135321 0.0339425 Vertex 9435 -0.0613494 0.131082 0.0393909 Vertex 9436 0.0208911 0.120687 0.0321527 Vertex 9437 -0.0287063 0.168278 -0.00832187 Vertex 9438 0.0275463 0.095549 0.0435012 Vertex 9439 -0.0673565 0.112647 0.0446949 Vertex 9440 -0.0599288 0.145383 0.0362513 Vertex 9441 -0.062214 0.131105 0.0398962 Vertex 9442 -0.0444555 0.121377 -0.0123561 Vertex 9443 -0.044143 0.159411 0.00624881 Vertex 9444 0.0456488 0.0861985 0.00518381 Vertex 9445 -0.0570307 0.151068 0.0316808 Vertex 9446 0.0400386 0.0871415 -0.0117889 Vertex 9447 -0.0636327 0.155181 -0.0386163 Vertex 9448 -0.0629696 0.131105 0.0405653 Vertex 9449 0.00942317 0.0752723 0.0558271 Vertex 9450 0.0102648 0.0752773 0.0552991 Vertex 9451 0.0111453 0.0752893 0.0548169 Vertex 9452 0.012216 0.0753282 0.0545969 Vertex 9453 0.0133103 0.0753629 0.0544488 Vertex 9454 0.0143121 0.0753991 0.0540935 Vertex 9455 0.0151412 0.0754034 0.0535569 Vertex 9456 0.0160506 0.0754058 0.0531341 Vertex 9457 0.0170529 0.075444 0.0528157 Vertex 9458 0.0180116 0.0754634 0.0524537 Vertex 9459 0.0189467 0.0754919 0.0520404 Vertex 9460 0.0197898 0.0754906 0.0515075 Vertex 9461 0.0205837 0.0754832 0.0508919 Vertex 9462 0.0213851 0.0754916 0.050294 Vertex 9463 0.0221612 0.0754835 0.0496518 Vertex 9464 0.0229768 0.0754886 0.0490742 Vertex 9465 0.0238113 0.0754906 0.0485213 Vertex 9466 0.0246103 0.075474 0.0479027 Vertex 9467 0.0253565 0.075473 0.0472224 Vertex 9468 0.0259518 0.075434 0.0462884 Vertex 9469 0.0265757 0.0754454 0.0454823 Vertex 9470 0.0274663 0.0754645 0.0450048 Vertex 9471 0.0283128 0.0754542 0.0444772 Vertex 9472 0.0291938 0.0754716 0.043989 Vertex 9473 0.0300773 0.0754873 0.0435133 Vertex 9474 0.0309112 0.0754873 0.0429619 Vertex 9475 0.0316901 0.0754766 0.0423249 Vertex 9476 0.0324423 0.0754774 0.0416539 Vertex 9477 0.0331199 0.0754691 0.0408773 Vertex 9478 0.0337836 0.0754424 0.0400679 Vertex 9479 0.0346025 0.0754478 0.0394941 Vertex 9480 0.035425 0.0754528 0.0389267 Vertex 9481 0.0361622 0.075448 0.0382492 Vertex 9482 0.0368364 0.0754262 0.037436 Vertex 9483 0.0374605 0.0754022 0.0365814 Vertex 9484 0.0380379 0.075373 0.0356471 Vertex 9485 0.0386345 0.0753534 0.0347776 Vertex 9486 0.0392221 0.075321 0.0338531 Vertex 9487 0.0398535 0.0752995 0.0330037 Vertex 9488 0.0404723 0.0752779 0.0321515 Vertex 9489 0.0410346 0.0752467 0.03121 Vertex 9490 0.0415613 0.0751972 0.0301802 Vertex 9491 0.0421217 0.0751567 0.0292241 Vertex 9492 0.042675 0.0751161 0.0282624 Vertex 9493 0.0432386 0.0750761 0.0273062 Vertex 9494 0.043716 0.0750115 0.0261739 Vertex 9495 0.0441351 0.0749462 0.0250125 Vertex 9496 0.044544 0.0748845 0.0238506 Vertex 9497 0.044971 0.0748214 0.0226935 Vertex 9498 0.0454055 0.0747572 0.0215389 Vertex 9499 0.0457818 0.0746903 0.0202853 Vertex 9500 -0.0521847 0.140082 0.0224024 Vertex 9501 0.0425362 0.0972508 -0.000830625 Vertex 9502 0.0436438 0.0973161 0.0031761 Vertex 9503 -0.0711713 0.176467 -0.0550529 Vertex 9504 -0.087232 0.102325 0.0223672 Vertex 9505 -0.066899 0.132617 0.0454244 Vertex 9506 -0.00121407 0.102594 0.0440764 Vertex 9507 -0.0303556 0.168269 -0.0071929 Vertex 9508 0.0186534 0.103359 0.0446898 Vertex 9509 0.0267956 0.111385 0.0354031 Vertex 9510 0.0276406 0.111416 0.0348725 Vertex 9511 -0.0242749 0.174204 -0.0124276 Vertex 9512 -0.0202598 0.174222 -0.0154191 Vertex 9513 -0.0385004 0.150676 0.00203305 Vertex 9514 -0.0362032 0.160944 0.000172036 Vertex 9515 -0.0415192 0.155101 0.00654483 Vertex 9516 -0.0406156 0.155109 0.0060988 Vertex 9517 -0.0381352 0.155099 0.00439417 Vertex 9518 -0.037361 0.155079 0.00374727 Vertex 9519 -0.0476849 0.146264 0.00805502 Vertex 9520 -0.048358 0.146267 0.00883601 Vertex 9521 -0.0490107 0.146266 0.00962371 Vertex 9522 -0.0568261 0.139571 0.0318926 Vertex 9523 -0.0560722 0.13957 0.0312222 Vertex 9524 -0.0535426 0.139527 0.0278286 Vertex 9525 0.0353489 0.0955322 0.0372114 Vertex 9526 -0.0654784 0.133956 0.0422213 Vertex 9527 -0.0666269 0.131204 0.0458398 Vertex 9528 -0.0775093 0.0961888 -0.0115304 Vertex 9529 -0.0672658 0.131206 0.0466969 Vertex 9530 -0.0712276 0.159591 -0.0429327 Vertex 9531 0.0408833 0.10285 0.0201769 Vertex 9532 -0.0501719 0.132485 0.029178 Vertex 9533 -0.0507215 0.132501 0.0301542 Vertex 9534 -0.0578499 0.140998 0.0321632 Vertex 9535 -0.0332327 0.160967 -0.000804209 Vertex 9536 -0.071875 0.136886 0.0488574 Vertex 9537 -0.017618 0.163994 -0.00984759 Vertex 9538 -0.0101902 0.177186 -0.0254506 Vertex 9539 0.0220735 0.113988 0.0356074 Vertex 9540 0.0366353 0.0982561 -0.0107953 Vertex 9541 -0.0215772 0.158162 -0.00503193 Vertex 9542 -0.0649431 0.145366 0.0395451 Vertex 9543 -0.0352015 0.153653 0.00157065 Vertex 9544 -0.0633147 0.132484 0.0400888 Vertex 9545 -0.0591545 0.129731 0.0390508 Vertex 9546 0.0419587 0.0958192 0.0261617 Vertex 9547 0.0435587 0.0959151 0.0211557 Vertex 9548 -0.0574217 0.135337 0.0345321 Vertex 9549 -0.0472578 0.121113 0.0280085 Vertex 9550 0.0217235 0.120687 0.0315848 Vertex 9551 0.0311284 0.103423 0.0364018 Vertex 9552 -0.0660205 0.131186 0.0449542 Vertex 9553 0.0453303 0.0875809 0.0171699 Vertex 9554 0.0200283 0.102079 0.0449293 Vertex 9555 -0.050269 0.11691 0.032477 Vertex 9556 -0.0710158 0.13691 0.0483444 Vertex 9557 0.0429561 0.100122 0.0141624 Vertex 9558 -0.0265893 0.161003 -0.00174275 Vertex 9559 -0.0626188 0.166275 -0.0435849 Vertex 9560 -0.0706254 0.129856 0.0506426 Vertex 9561 -0.0627171 0.147502 -0.0125815 Vertex 9562 -0.0616146 0.158432 -0.0255892 Vertex 9563 0.010276 0.076623 0.0552854 Vertex 9564 0.0111753 0.0766426 0.0548499 Vertex 9565 0.0122509 0.0766796 0.0546284 Vertex 9566 0.0134061 0.0767276 0.0545687 Vertex 9567 0.0143682 0.0767494 0.0542274 Vertex 9568 0.0153262 0.0767707 0.0538598 Vertex 9569 0.0163312 0.0767998 0.0535416 Vertex 9570 0.0172403 0.0768113 0.0531129 Vertex 9571 0.0181983 0.0768373 0.0527356 Vertex 9572 0.0190348 0.0768352 0.0521916 Vertex 9573 0.0198002 0.0768324 0.0515324 Vertex 9574 0.020602 0.0768409 0.0509288 Vertex 9575 0.0214316 0.0768422 0.0503677 Vertex 9576 0.0222613 0.0768462 0.049813 Vertex 9577 0.0231426 0.0768603 0.0493195 Vertex 9578 0.0239979 0.0768543 0.0488301 Vertex 9579 0.024828 0.0768588 0.0482443 Vertex 9580 0.0255432 0.0768418 0.0475089 Vertex 9581 0.0261579 0.0768253 0.0466356 Vertex 9582 0.0268748 0.0768062 0.0459093 Vertex 9583 0.0276842 0.0768145 0.0453329 Vertex 9584 0.0284966 0.0768217 0.0447581 Vertex 9585 0.0293522 0.0768437 0.0442363 Vertex 9586 0.0301995 0.0768447 0.0437008 Vertex 9587 0.0310665 0.0768618 0.0431993 Vertex 9588 0.0318624 0.0768516 0.0425881 Vertex 9589 0.0326237 0.0768475 0.0419257 Vertex 9590 0.0333079 0.0768384 0.0411622 Vertex 9591 0.0339687 0.0768049 0.0403387 Vertex 9592 0.0347021 0.0768104 0.0396564 Vertex 9593 0.0354665 0.0768048 0.0390018 Vertex 9594 0.0361753 0.0767902 0.0382584 Vertex 9595 0.0368491 0.0767795 0.0374896 Vertex 9596 0.0374841 0.076757 0.0366434 Vertex 9597 0.0381071 0.0767371 0.0357901 Vertex 9598 0.0386883 0.0767039 0.0348633 Vertex 9599 0.0392901 0.0766734 0.0339466 Vertex 9600 0.0398861 0.0766416 0.0330246 Vertex 9601 0.0405001 0.076619 0.0321646 Vertex 9602 0.0410646 0.07659 0.0312229 Vertex 9603 0.0415736 0.0765545 0.0302447 Vertex 9604 0.0420847 0.0764929 0.0291356 Vertex 9605 0.0426389 0.0764517 0.0281735 Vertex 9606 0.0431893 0.0764104 0.0272109 Vertex 9607 0.0436976 0.0763605 0.0261605 Vertex 9608 0.0441778 0.076309 0.025099 Vertex 9609 0.044615 0.0762444 0.0239446 Vertex 9610 0.0450661 0.0761937 0.0228711 Vertex 9611 0.0454669 0.0761165 0.0216249 Vertex 9612 0.045843 0.0760483 0.0203743 Vertex 9613 0.0461172 0.0759623 0.0190037 Vertex 9614 0.043113 0.0972735 0.00118522 Vertex 9615 0.0433792 0.0972945 0.00218055 Vertex 9616 0.0428516 0.0972538 0.000192155 Vertex 9617 0.0422051 0.0972089 -0.00180239 Vertex 9618 -0.0635357 0.119961 0.0469254 Vertex 9619 -0.0467235 0.128128 0.0253508 Vertex 9620 -0.00995662 0.169734 -0.0198047 Vertex 9621 -0.0135581 0.166929 -0.0145181 Vertex 9622 0.019545 0.103378 0.0442321 Vertex 9623 0.0373005 0.103362 0.0294506 Vertex 9624 0.0284806 0.111435 0.0343318 Vertex 9625 -0.026505 0.174198 -0.0103819 Vertex 9626 -0.0358918 0.166781 -0.00116722 Vertex 9627 -0.0376796 0.16681 0.00156763 Vertex 9628 -0.0478768 0.15504 0.00962757 Vertex 9629 -0.0470469 0.155045 0.00906939 Vertex 9630 -0.0451864 0.146266 0.00463419 Vertex 9631 -0.0458225 0.146281 0.00549558 Vertex 9632 0.0412879 0.0914659 -0.00877665 Vertex 9633 -0.0470607 0.146242 0.00718592 Vertex 9634 -0.059344 0.139552 0.0335155 Vertex 9635 -0.0584486 0.139576 0.0330542 Vertex 9636 -0.0576346 0.139576 0.0324737 Vertex 9637 -0.0612769 0.133878 0.0377403 Vertex 9638 -0.0629724 0.133897 0.038809 Vertex 9639 -0.0637361 0.133925 0.0394224 Vertex 9640 -0.0643911 0.133918 0.0402655 Vertex 9641 -0.0649507 0.13395 0.041174 Vertex 9642 -0.0160192 0.104518 -0.0227486 Vertex 9643 -0.0624265 0.163056 -0.0535855 Vertex 9644 0.0452819 0.0932028 0.00617084 Vertex 9645 0.0393368 0.0984458 -0.00682083 Vertex 9646 0.0410804 0.10284 0.0191681 Vertex 9647 -0.0893883 0.0956403 0.0164184 Vertex 9648 -0.0586032 0.141 0.0328315 Vertex 9649 -0.0543206 0.140979 0.0284164 Vertex 9650 -0.00956353 0.172645 -0.0227849 Vertex 9651 -0.0165661 0.163924 -0.0100865 Vertex 9652 -0.0211568 0.177178 -0.0149257 Vertex 9653 0.0415318 0.09261 0.0284783 Vertex 9654 -0.0401471 0.163848 0.00326215 Vertex 9655 -0.0419021 0.157999 0.00424081 Vertex 9656 -0.0593675 0.145365 0.0352791 Vertex 9657 -0.0634881 0.121359 0.0469409 Vertex 9658 -0.0599006 0.132533 0.037981 Vertex 9659 -0.0650557 0.129761 0.0446036 Vertex 9660 0.0283827 0.10475 0.0376855 Vertex 9661 -0.078373 0.161039 -0.0249642 Vertex 9662 0.00906582 0.123154 0.0343752 Vertex 9663 -0.0528207 0.121242 0.0358805 Vertex 9664 -0.0479877 0.121051 0.028756 Vertex 9665 0.023086 0.119339 0.0317977 Vertex 9666 -0.0462852 0.149202 0.00834502 Vertex 9667 0.0452979 0.0875774 0.0181674 Vertex 9668 -0.0202678 0.159643 -0.00488449 Vertex 9669 0.0280693 0.112767 0.0337398 Vertex 9670 0.0358259 0.0928903 0.0378885 Vertex 9671 -0.0679264 0.131258 0.0474463 Vertex 9672 -0.0494476 0.122586 0.0319364 Vertex 9673 0.0449595 0.0889486 0.000172046 Vertex 9674 -0.0555411 0.128344 0.0372391 Vertex 9675 -0.0707237 0.135491 0.0487549 Vertex 9676 -0.0542782 0.132533 0.0338047 Vertex 9677 0.044262 0.0945325 0.00218274 Vertex 9678 0.0102029 0.0779579 0.0551886 Vertex 9679 0.011103 0.0779768 0.0547588 Vertex 9680 0.0121741 0.0780107 0.0545179 Vertex 9681 0.013384 0.078066 0.0545225 Vertex 9682 0.0144021 0.0780973 0.054252 Vertex 9683 0.0154243 0.0781303 0.053988 Vertex 9684 0.0163345 0.0781449 0.0535802 Vertex 9685 0.0173388 0.0781757 0.0532571 Vertex 9686 0.0181919 0.0781799 0.0527467 Vertex 9687 0.0190515 0.0781917 0.0522129 Vertex 9688 0.0197913 0.0781802 0.0515303 Vertex 9689 0.0206498 0.0781917 0.0510092 Vertex 9690 0.0214935 0.0781932 0.0504764 Vertex 9691 0.0223647 0.0782061 0.0499784 Vertex 9692 0.0232091 0.0782074 0.0494446 Vertex 9693 0.0241031 0.0782197 0.0489777 Vertex 9694 0.0249209 0.0782259 0.0483953 Vertex 9695 0.0256558 0.0782254 0.0477034 Vertex 9696 0.0263146 0.0782009 0.0468843 Vertex 9697 0.0270307 0.0781852 0.0461538 Vertex 9698 0.0278367 0.0781921 0.0455692 Vertex 9699 0.0286115 0.078186 0.0449305 Vertex 9700 0.0294369 0.0781918 0.0443709 Vertex 9701 0.0302902 0.078207 0.0438447 Vertex 9702 0.0311358 0.0782102 0.04331 Vertex 9703 0.0319454 0.0782138 0.0427262 Vertex 9704 0.0326986 0.0781958 0.0420379 Vertex 9705 0.0334291 0.0781951 0.0413414 Vertex 9706 0.0341204 0.0781827 0.0405841 Vertex 9707 0.0348071 0.0781711 0.0398247 Vertex 9708 0.0355131 0.0781566 0.0390786 Vertex 9709 0.0361586 0.0781359 0.0382445 Vertex 9710 0.0368134 0.0781201 0.03746 Vertex 9711 0.0374548 0.0781001 0.0366194 Vertex 9712 0.0381002 0.078079 0.0357853 Vertex 9713 0.0387571 0.0780554 0.0349576 Vertex 9714 0.0393814 0.0780345 0.0341058 Vertex 9715 0.0399371 0.077993 0.0331058 Vertex 9716 0.0405297 0.0779725 0.0322363 Vertex 9717 0.0410972 0.0779427 0.031296 Vertex 9718 0.0415851 0.0779004 0.0302476 Vertex 9719 0.0420852 0.077848 0.0291974 Vertex 9720 0.0425828 0.0778099 0.0282065 Vertex 9721 0.0432025 0.0777701 0.0272794 Vertex 9722 0.0436886 0.0777182 0.0262206 Vertex 9723 0.0441945 0.077668 0.0251701 Vertex 9724 0.0446992 0.0776181 0.0241159 Vertex 9725 0.0451425 0.0775553 0.0229667 Vertex 9726 0.0455444 0.0774866 0.0217209 Vertex 9727 0.0458807 0.0774123 0.0204549 Vertex 9728 0.0461466 0.0773319 0.0190905 Vertex 9729 0.0373574 0.0841251 -0.0157743 Vertex 9730 0.0456324 0.0875991 0.0131626 Vertex 9731 0.0464327 0.0769932 0.014129 Vertex 9732 -0.083856 0.108875 0.00233606 Vertex 9733 -0.0295018 0.159581 0.00108834 Vertex 9734 0.0407616 0.105622 0.0111617 Vertex 9735 -0.0138894 0.183111 -0.0237643 Vertex 9736 0.038441 0.100665 0.0293761 Vertex 9737 0.0390213 0.100628 0.0284944 Vertex 9738 0.0366464 0.103365 0.0302885 Vertex 9739 0.0292794 0.111414 0.0337321 Vertex 9740 -0.0283944 0.174224 -0.00779385 Vertex 9741 -0.0347686 0.16678 -0.00304399 Vertex 9742 0.0291715 0.104768 0.0370747 Vertex 9743 0.0413201 0.104267 0.012164 Vertex 9744 0.0299951 0.111426 0.0329993 Vertex 9745 -0.0623578 0.139562 0.0361839 Vertex 9746 -0.0616452 0.139553 0.0354433 Vertex 9747 -0.0609826 0.13955 0.0346529 Vertex 9748 -0.0602761 0.139548 0.0339321 Vertex 9749 -0.0585604 0.133937 0.0364008 Vertex 9750 -0.0594536 0.133932 0.0368692 Vertex 9751 -0.0603715 0.133894 0.0372893 Vertex 9752 -0.0623186 0.155306 -0.0155862 Vertex 9753 -0.0933662 0.126937 0.0262691 Vertex 9754 -0.0278391 0.168266 -0.00883037 Vertex 9755 0.0457806 0.0890199 0.00717609 Vertex 9756 -0.0850765 0.107567 0.00438106 Vertex 9757 -0.0516941 0.147804 0.0164166 Vertex 9758 0.0441233 0.0959295 0.00318315 Vertex 9759 0.0399617 0.0984844 -0.00581339 Vertex 9760 -0.0750322 0.144421 -0.00688246 Vertex 9761 -0.0640239 0.14106 0.0390925 Vertex 9762 -0.0250309 0.172718 -0.0117738 Vertex 9763 -0.0335527 0.156609 0.00223348 Vertex 9764 -0.0120489 0.177175 -0.0228491 Vertex 9765 -0.0278278 0.177181 -0.00696301 Vertex 9766 0.0204347 0.103384 0.043762 Vertex 9767 -0.0394934 0.163848 0.00245451 Vertex 9768 -0.0427881 0.157985 0.00470835 Vertex 9769 -0.0589607 0.145338 0.0340833 Vertex 9770 0.0398803 0.0927067 0.0314285 Vertex 9771 -0.0590047 0.132542 0.0375172 Vertex 9772 -0.0656415 0.129793 0.0454963 Vertex 9773 0.0451851 0.0861731 0.0211635 Vertex 9774 -0.0817276 0.0964548 -0.00656413 Vertex 9775 0.0100844 0.123139 0.0340691 Vertex 9776 -0.0535677 0.121244 0.0365515 Vertex 9777 0.0437257 0.0902921 0.0241674 Vertex 9778 0.0428831 0.0902351 0.0261862 Vertex 9779 0.04335 0.0902653 0.0251673 Vertex 9780 0.0300054 0.104778 0.0365239 Vertex 9781 -0.072674 0.131225 0.051196 Vertex 9782 -0.0641358 0.117113 0.0460384 Vertex 9783 0.0378723 0.109729 0.00416584 Vertex 9784 -0.0241791 0.159685 -0.00173809 Vertex 9785 -0.0385777 0.1595 0.00203018 Vertex 9786 -0.0500289 0.122604 0.03284 Vertex 9787 -0.0624131 0.11535 0.0394932 Vertex 9788 -0.0625354 0.122703 0.0447625 Vertex 9789 -0.0689 0.115705 0.0512836 Vertex 9790 -0.0516419 0.126901 0.0340875 Vertex 9791 -0.0618586 0.161576 -0.034591 Vertex 9792 0.0100662 0.0792875 0.0550109 Vertex 9793 0.0110253 0.0793101 0.0546505 Vertex 9794 0.0120332 0.0793354 0.0543348 Vertex 9795 0.0131787 0.0793804 0.0542326 Vertex 9796 0.0142616 0.0794232 0.0540604 Vertex 9797 0.0152869 0.0794603 0.0538116 Vertex 9798 0.016253 0.0794879 0.0534651 Vertex 9799 0.017256 0.079507 0.0531399 Vertex 9800 0.0181719 0.0795251 0.0527143 Vertex 9801 0.0190476 0.0795376 0.0522219 Vertex 9802 0.0198481 0.0795335 0.0516115 Vertex 9803 0.0206734 0.0795401 0.0510479 Vertex 9804 0.0215152 0.0795452 0.0505127 Vertex 9805 0.0223647 0.0795488 0.0499944 Vertex 9806 0.0232695 0.0795597 0.0495474 Vertex 9807 0.0241683 0.0795725 0.0490812 Vertex 9808 0.024983 0.0795787 0.048494 Vertex 9809 0.0257124 0.0795754 0.0477924 Vertex 9810 0.0263535 0.0795425 0.0469281 Vertex 9811 0.0270604 0.0795391 0.0462139 Vertex 9812 0.0278273 0.0795375 0.0455649 Vertex 9813 0.0286155 0.0795328 0.044942 Vertex 9814 0.0294578 0.079544 0.0444105 Vertex 9815 0.0302795 0.0795477 0.0438394 Vertex 9816 0.0311277 0.0795524 0.0433085 Vertex 9817 0.0319539 0.0795563 0.0427459 Vertex 9818 0.0327302 0.0795508 0.0421017 Vertex 9819 0.0335012 0.0795469 0.0414506 Vertex 9820 0.0342103 0.0795441 0.0407378 Vertex 9821 0.0348653 0.0795228 0.0399156 Vertex 9822 0.0355134 0.0795005 0.0390801 Vertex 9823 0.0361188 0.0794771 0.0382118 Vertex 9824 0.0367263 0.0794489 0.0373046 Vertex 9825 0.037431 0.0794424 0.0366005 Vertex 9826 0.0381363 0.0794306 0.0358549 Vertex 9827 0.0388132 0.0794166 0.0350891 Vertex 9828 0.0394095 0.0793879 0.0341721 Vertex 9829 0.0399868 0.0793585 0.0332409 Vertex 9830 0.0405765 0.0793262 0.0323176 Vertex 9831 0.0411288 0.0792971 0.0313687 Vertex 9832 0.0416337 0.0792551 0.0303335 Vertex 9833 0.042117 0.0792074 0.0292753 Vertex 9834 0.0425933 0.0791563 0.0282081 Vertex 9835 0.0431809 0.0791159 0.0272636 Vertex 9836 0.0437324 0.0790794 0.0263023 Vertex 9837 0.0441999 0.0790177 0.0251667 Vertex 9838 0.04471 0.0789677 0.024116 Vertex 9839 0.0451596 0.0789195 0.0230398 Vertex 9840 0.0455563 0.078849 0.0217954 Vertex 9841 0.0458875 0.0787805 0.0205292 Vertex 9842 0.0461192 0.0786876 0.0190773 Vertex 9843 0.0461881 0.0785676 0.017326 Vertex 9844 0.0462455 0.0784487 0.0155769 Vertex 9845 -0.0494399 0.119744 0.0319359 Vertex 9846 0.0144595 0.121944 0.0333941 Vertex 9847 -0.0602298 0.119796 0.0409592 Vertex 9848 -0.0350082 0.162373 -0.00163299 Vertex 9849 -0.056511 0.121265 0.0393235 Vertex 9850 -0.0884166 0.13498 0.0042424 Vertex 9851 0.0347714 0.100763 0.034674 Vertex 9852 0.0379635 0.103337 0.0286718 Vertex 9853 0.030718 0.111397 0.0323042 Vertex 9854 -0.0308563 0.174216 -0.00433975 Vertex 9855 -0.0334339 0.166782 -0.00461644 Vertex 9856 -0.0062818 0.102371 0.0437669 Vertex 9857 -0.0234208 0.172725 -0.0129655 Vertex 9858 -0.0242433 0.172722 -0.0123976 Vertex 9859 -0.0640511 0.139618 0.0390194 Vertex 9860 -0.0635247 0.139599 0.0380296 Vertex 9861 -0.055443 0.13396 0.033868 Vertex 9862 -0.0561584 0.13394 0.0346041 Vertex 9863 -0.056914 0.133942 0.035273 Vertex 9864 -0.0576807 0.133928 0.0359191 Vertex 9865 0.0313753 0.111403 0.0314731 Vertex 9866 -0.0425303 0.153621 0.00682011 Vertex 9867 -0.0853172 0.110382 0.0233555 Vertex 9868 0.0354061 0.0981387 0.0355669 Vertex 9869 -0.0319114 0.16826 -0.00591385 Vertex 9870 -0.0891175 0.0983455 0.0194044 Vertex 9871 0.0264007 0.116693 0.0313169 Vertex 9872 0.0246987 0.1167 0.0323736 Vertex 9873 -0.0571826 0.122684 0.0401181 Vertex 9874 0.0442909 0.0959534 0.0041727 Vertex 9875 -0.0829532 0.112769 0.000219247 Vertex 9876 0.0387126 0.0984064 -0.00782785 Vertex 9877 -0.0803464 0.147298 -0.000827063 Vertex 9878 0.0393128 0.0955964 -0.00780286 Vertex 9879 -0.064598 0.141073 0.0399979 Vertex 9880 0.0406981 0.104234 0.0181671 Vertex 9881 -0.0344217 0.156595 0.00275895 Vertex 9882 -0.0203438 0.180146 -0.0154935 Vertex 9883 -0.0271652 0.177189 -0.00775302 Vertex 9884 -0.0203988 0.177179 -0.0155929 Vertex 9885 -0.0309707 0.163858 -0.00458082 Vertex 9886 -0.0548214 0.143869 0.0295389 Vertex 9887 -0.0584473 0.145323 0.0330944 Vertex 9888 -0.0464525 0.146291 0.00643191 Vertex 9889 -0.0581184 0.132538 0.0370402 Vertex 9890 -0.0538087 0.119788 0.0361741 Vertex 9891 -0.0578787 0.118384 0.0390612 Vertex 9892 0.023524 0.11536 0.0341991 Vertex 9893 -0.0599597 0.121237 0.0413621 Vertex 9894 0.0455164 0.0904085 0.0121603 Vertex 9895 -0.0470106 0.149195 0.00904699 Vertex 9896 -0.0789343 0.0700266 0.0104198 Vertex 9897 -0.0686207 0.128453 0.0500102 Vertex 9898 0.0387661 0.0870401 -0.0137857 Vertex 9899 0.0201914 0.117982 0.0346477 Vertex 9900 -0.0636966 0.117092 0.044917 Vertex 9901 -0.0633087 0.117017 0.0436447 Vertex 9902 -0.0618119 0.115344 0.0386033 Vertex 9903 0.040969 0.0926354 0.0294955 Vertex 9904 0.0335081 0.0942386 0.0398247 Vertex 9905 -0.0684451 0.117201 0.0519481 Vertex 9906 -0.0528554 0.116872 0.0339893 Vertex 9907 0.0253964 0.0981715 0.0439168 Vertex 9908 -0.0608025 0.132515 0.0384279 Vertex 9909 0.00992987 0.0806149 0.0548353 Vertex 9910 0.010878 0.0806434 0.0544608 Vertex 9911 0.0118445 0.0806629 0.0540991 Vertex 9912 0.0129121 0.0806948 0.0538726 Vertex 9913 0.0139994 0.0807368 0.0537041 Vertex 9914 0.0150227 0.080777 0.0534508 Vertex 9915 0.0160357 0.0807986 0.0531419 Vertex 9916 0.0170456 0.0808203 0.0528345 Vertex 9917 0.0180138 0.0808533 0.0524986 Vertex 9918 0.0189066 0.0808659 0.0520326 Vertex 9919 0.0197271 0.0808668 0.051456 Vertex 9920 0.0205921 0.0807207 0.0509473 Vertex 9921 0.0214733 0.0808843 0.0504673 Vertex 9922 0.0224079 0.0809035 0.0500644 Vertex 9923 0.0233172 0.0809188 0.0496338 Vertex 9924 0.0241695 0.0809229 0.0490966 Vertex 9925 0.0249548 0.0809223 0.0484627 Vertex 9926 0.0256741 0.0809122 0.047736 Vertex 9927 0.0263623 0.0808978 0.0469671 Vertex 9928 0.0270479 0.080882 0.0462053 Vertex 9929 0.02777 0.0808734 0.0454779 Vertex 9930 0.028524 0.0808687 0.0448153 Vertex 9931 0.0293569 0.0808765 0.0442663 Vertex 9932 0.0302023 0.0808798 0.0437374 Vertex 9933 0.0310862 0.0808926 0.0432566 Vertex 9934 0.0319146 0.0808971 0.042698 Vertex 9935 0.0327323 0.0809002 0.0421262 Vertex 9936 0.0334855 0.0808915 0.0414362 Vertex 9937 0.0342014 0.0808856 0.0407312 Vertex 9938 0.0348585 0.0808647 0.0399076 Vertex 9939 0.0354622 0.0808406 0.0390375 Vertex 9940 0.03603 0.0808066 0.0380541 Vertex 9941 0.0366921 0.0807912 0.0372758 Vertex 9942 0.0374146 0.0807844 0.0365828 Vertex 9943 0.0381262 0.080772 0.035847 Vertex 9944 0.0388076 0.0807597 0.0350812 Vertex 9945 0.0394316 0.0807401 0.0342345 Vertex 9946 0.0399613 0.0806226 0.0334139 Vertex 9947 0.0406295 0.0806796 0.0323988 Vertex 9948 0.0411698 0.0806497 0.0314486 Vertex 9949 0.0416487 0.0806113 0.0304012 Vertex 9950 0.0421516 0.0805501 0.0292856 Vertex 9951 0.0426825 0.0805137 0.0283126 Vertex 9952 0.0432388 0.0804742 0.027354 Vertex 9953 0.0437773 0.0804492 0.0262342 Vertex 9954 0.0442212 0.0804374 0.0252067 Vertex 9955 0.044682 0.0804275 0.0241291 Vertex 9956 0.0458285 0.0801218 0.0204223 Vertex 9957 0.0460177 0.0800284 0.0189631 Vertex 9958 0.00612795 0.107304 -0.0203065 Vertex 9959 -0.0314363 0.171254 -0.00518552 Vertex 9960 0.0359645 0.0981106 0.0346243 Vertex 9961 0.0365334 0.0980835 0.033685 Vertex 9962 0.0372061 0.0980869 0.0328651 Vertex 9963 0.0378754 0.0980648 0.0320906 Vertex 9964 -0.0262192 0.162456 -0.00472466 Vertex 9965 0.0315208 0.0994913 0.038731 Vertex 9966 0.0340782 0.100772 0.035418 Vertex 9967 0.0385436 0.103322 0.0277283 Vertex 9968 0.0320171 0.111398 0.0306261 Vertex 9969 -0.0302069 0.174221 -0.00514504 Vertex 9970 -0.0301141 0.166809 -0.00684471 Vertex 9971 -0.023191 0.178657 -0.0125853 Vertex 9972 -0.06629 0.139698 0.0427919 Vertex 9973 -0.0669079 0.139705 0.0437201 Vertex 9974 -0.05391 0.13392 0.032587 Vertex 9975 -0.0546568 0.133929 0.033262 Vertex 9976 -0.0623017 0.163119 -0.0425932 Vertex 9977 0.0326456 0.111384 0.0297678 Vertex 9978 0.0332874 0.111381 0.0289227 Vertex 9979 0.0213206 0.103387 0.0432887 Vertex 9980 -0.0553875 0.143884 0.0305002 Vertex 9981 0.032332 0.110047 0.0311032 Vertex 9982 -0.027189 0.162441 -0.00437298 Vertex 9983 -0.0667548 0.115724 0.0491405 Vertex 9984 -0.0624218 0.113827 0.0376933 Vertex 9985 -0.0668542 0.114225 0.0472279 Vertex 9986 0.0255211 0.116701 0.0317994 Vertex 9987 -0.0655655 0.115703 0.0473772 Vertex 9988 -0.0359664 0.162375 -0.00125909 Vertex 9989 -0.0623926 0.155248 -0.0336012 Vertex 9990 0.0448999 0.0861351 0.000186186 Vertex 9991 0.0413096 0.0957202 -0.00478826 Vertex 9992 -0.0657925 0.14111 0.0417765 Vertex 9993 0.0408211 0.10424 0.0171662 Vertex 9994 -0.0369817 0.156591 0.00432745 Vertex 9995 -0.0177948 0.161129 -0.00657359 Vertex 9996 -0.0932761 0.122751 0.0112823 Vertex 9997 -0.0196064 0.177176 -0.0161969 Vertex 9998 -0.019553 0.163976 -0.00913576 Vertex 9999 0.02054 0.116646 0.0351499 Vertex 10000 0.0419877 0.102851 0.0121565 Vertex 10001 -0.0537032 0.140954 0.0276054 Vertex 10002 -0.0513643 0.132495 0.031006 Vertex 10003 -0.057003 0.128342 0.0386502 Vertex 10004 0.0414492 0.10286 0.0161642 Vertex 10005 -0.0347085 0.169768 -0.00115359 Vertex 10006 0.043448 0.0916342 -0.00278755 Vertex 10007 -0.0607789 0.121227 0.0419471 Vertex 10008 -0.0806197 0.114932 0.047462 Vertex 10009 -0.048265 0.136372 0.0159973 Vertex 10010 -0.050492 0.149246 0.012837 Vertex 10011 -0.0480399 0.136313 0.0145941 Vertex 10012 -0.0693797 0.128452 0.0506772 Vertex 10013 -0.0509981 0.147813 0.0138388 Vertex 10014 -0.0409256 0.153594 0.00561766 Vertex 10015 0.026251 0.103389 0.0398709 Vertex 10016 -0.062851 0.116991 0.0425454 Vertex 10017 -0.0624013 0.116928 0.041368 Vertex 10018 -0.00990791 0.168128 -0.0187599 Vertex 10019 -0.0574019 0.116942 0.0379675 Vertex 10020 -0.0565657 0.11693 0.0374284 Vertex 10021 -0.064655 0.115706 0.0452756 Vertex 10022 0.00698645 0.0818884 0.0558396 Vertex 10023 0.00799401 0.0819204 0.0555296 Vertex 10024 0.00894357 0.0819404 0.0551438 Vertex 10025 0.00990951 0.0819581 0.0548044 Vertex 10026 0.0108109 0.0819726 0.0543646 Vertex 10027 0.0116998 0.0819851 0.0538895 Vertex 10028 0.0126468 0.0820043 0.0535026 Vertex 10029 0.0136708 0.0820393 0.0532361 Vertex 10030 0.0146913 0.0820798 0.0529703 Vertex 10031 0.0157074 0.0821031 0.0526782 Vertex 10032 0.0167269 0.0821369 0.052401 Vertex 10033 0.0177377 0.0821568 0.0520978 Vertex 10034 0.0186318 0.0821747 0.0516425 Vertex 10035 0.0195225 0.0821843 0.0511684 Vertex 10036 0.020479 0.0822082 0.0508036 Vertex 10037 0.0214495 0.0822346 0.0504578 Vertex 10038 0.0223756 0.0822421 0.0500191 Vertex 10039 0.0232238 0.0822541 0.0494986 Vertex 10040 0.0240603 0.0822578 0.0489414 Vertex 10041 0.0248435 0.0822524 0.0483141 Vertex 10042 0.025553 0.0822419 0.0475803 Vertex 10043 0.026308 0.0822369 0.0469135 Vertex 10044 0.0270529 0.0822264 0.0462092 Vertex 10045 0.0277791 0.0822205 0.0455159 Vertex 10046 0.0284244 0.0822003 0.0446831 Vertex 10047 0.0291993 0.0821983 0.0440432 Vertex 10048 0.0300675 0.0822073 0.0435477 Vertex 10049 0.0309512 0.0822193 0.0430727 Vertex 10050 0.0318377 0.0822312 0.0425933 Vertex 10051 0.03264 0.0822319 0.0419892 Vertex 10052 0.033406 0.0822268 0.04133 Vertex 10053 0.03413 0.0822192 0.0406334 Vertex 10054 0.0347852 0.0821986 0.0398055 Vertex 10055 0.0353694 0.082169 0.0388786 Vertex 10056 0.0359801 0.0821479 0.0380155 Vertex 10057 0.0366613 0.0821332 0.0372523 Vertex 10058 0.0373859 0.082128 0.0365587 Vertex 10059 0.0380671 0.0821074 0.0357563 Vertex 10060 0.0387814 0.0821002 0.0350599 Vertex 10061 0.0394621 0.0820907 0.0342997 Vertex 10062 0.0400834 0.082061 0.0334038 Vertex 10063 0.0406549 0.0820323 0.0324674 Vertex 10064 0.041166 0.0819934 0.0314416 Vertex 10065 0.0416732 0.0819555 0.0304093 Vertex 10066 0.042201 0.0819186 0.0294354 Vertex 10067 0.0427673 0.0818692 0.0284169 Vertex 10068 0.0433132 0.0818321 0.0274518 Vertex 10069 0.0438502 0.081834 0.0262681 Vertex 10070 0.0237088 0.0942271 0.0467477 Vertex 10071 0.0413648 0.0939401 0.0283252 Vertex 10072 -0.0752504 0.177839 -0.0529463 Vertex 10073 0.0153592 0.0953434 0.0487033 Vertex 10074 -0.0520342 0.116871 0.0334143 Vertex 10075 -0.0900898 0.119956 0.00430245 Vertex 10076 0.030344 0.1101 0.0335023 Vertex 10077 -0.0398973 0.160894 0.00183362 Vertex 10078 -0.0654403 0.114174 0.0440564 Vertex 10079 -0.031704 0.172718 -0.00384226 Vertex 10080 0.0336533 0.110026 0.0294894 Vertex 10081 0.023814 0.119372 0.031074 Vertex 10082 0.0321818 0.0994934 0.0379171 Vertex 10083 0.033357 0.100796 0.0361067 Vertex 10084 0.0420206 0.092566 0.0274869 Vertex 10085 0.0345089 0.111329 0.0271807 Vertex 10086 0.022982 0.114019 0.0351746 Vertex 10087 -0.0275254 0.1668 -0.00838328 Vertex 10088 -0.0444883 0.150664 0.00744383 Vertex 10089 -0.0681226 0.115765 0.0506532 Vertex 10090 -0.0675712 0.139722 0.0445155 Vertex 10091 -0.0532046 0.133931 0.0318349 Vertex 10092 0.0369028 0.0954111 -0.0108822 Vertex 10093 0.0425779 0.0929869 -0.00379718 Vertex 10094 0.0459145 0.0862168 0.00717824 Vertex 10095 0.0356112 0.0942094 0.0375896 Vertex 10096 0.0349485 0.0942163 0.0384062 Vertex 10097 -0.0451092 0.153606 0.00834539 Vertex 10098 0.0214 0.116687 0.0346491 Vertex 10099 -0.0832913 0.0938266 -0.00556456 Vertex 10100 -0.0237994 0.178657 -0.0117033 Vertex 10101 -0.0417663 0.162365 0.00442786 Vertex 10102 -0.0607717 0.113836 0.03657 Vertex 10103 -0.0616758 0.113831 0.0370124 Vertex 10104 -0.0674289 0.114212 0.0481237 Vertex 10105 0.0217345 0.0994968 0.0456553 Vertex 10106 -0.0326318 0.168236 -0.00522072 Vertex 10107 0.0231488 0.116662 0.0336476 Vertex 10108 -0.0624191 0.163107 -0.0445959 Vertex 10109 -0.0901544 0.148798 0.0121684 Vertex 10110 -0.0582078 0.148218 0.0334722 Vertex 10111 -0.0663625 0.141125 0.0427387 Vertex 10112 -0.0659446 0.146784 0.0398667 Vertex 10113 -0.0360977 0.156596 0.00383263 Vertex 10114 -0.03739 0.165304 0.000185179 Vertex 10115 -0.0629277 0.161435 -0.0535909 Vertex 10116 -0.0188551 0.177186 -0.0168879 Vertex 10117 -0.0185844 0.16399 -0.00948536 Vertex 10118 0.0308134 0.104771 0.0359398 Vertex 10119 -0.0233106 0.15969 -0.00223977 Vertex 10120 0.025787 0.114054 0.0339562 Vertex 10121 0.0239825 0.114006 0.0348506 Vertex 10122 -0.0630684 0.138136 0.036884 Vertex 10123 0.0419002 0.102864 0.0131587 Vertex 10124 -0.0311093 0.169745 -0.00652433 Vertex 10125 0.0445386 0.0917351 0.000179816 Vertex 10126 -0.0615042 0.121243 0.0426924 Vertex 10127 0.0456475 0.0890064 0.00517807 Vertex 10128 0.0250825 0.10872 0.0381638 Vertex 10129 -0.0584166 0.126929 0.0401124 Vertex 10130 -0.0575286 0.126935 0.0396404 Vertex 10131 -0.0566945 0.126945 0.0390945 Vertex 10132 -0.0559448 0.126938 0.0384169 Vertex 10133 -0.0278327 0.179989 -0.0150111 Vertex 10134 0.0226208 0.102094 0.0434114 Vertex 10135 -0.0140602 0.172758 -0.0187663 Vertex 10136 -0.0631576 0.119928 0.0457283 Vertex 10137 -0.0197554 0.158352 -0.00754965 Vertex 10138 -0.0148886 0.169807 -0.0164639 Vertex 10139 0.0259904 0.108758 0.0377477 Vertex 10140 0.00620145 0.0832401 0.0564613 Vertex 10141 0.00716038 0.0832586 0.0561062 Vertex 10142 0.00817319 0.0832888 0.0558122 Vertex 10143 0.00912223 0.0833108 0.0554277 Vertex 10144 0.0100166 0.0833203 0.0549696 Vertex 10145 0.0109129 0.0833325 0.0545132 Vertex 10146 0.0117318 0.0833298 0.0539432 Vertex 10147 0.0125192 0.0833344 0.053329 Vertex 10148 0.0134353 0.0833572 0.0528968 Vertex 10149 0.014411 0.0833733 0.0525453 Vertex 10150 0.0154254 0.0834009 0.0522607 Vertex 10151 0.0163998 0.0834424 0.0519345 Vertex 10152 0.0174045 0.0834609 0.0516215 Vertex 10153 0.0269837 0.108749 0.0374141 Vertex 10154 0.0193158 0.0835035 0.0508805 Vertex 10155 0.0203307 0.08353 0.050588 Vertex 10156 0.0213023 0.0835644 0.0502546 Vertex 10157 0.022246 0.0835763 0.0498509 Vertex 10158 0.0231289 0.0835821 0.0493611 Vertex 10159 0.0239145 0.0835849 0.0487444 Vertex 10160 0.0246944 0.0835826 0.0481083 Vertex 10161 0.0254329 0.0835701 0.0474102 Vertex 10162 0.0262875 0.0835737 0.0468767 Vertex 10163 0.0271048 0.0835778 0.0462962 Vertex 10164 0.0277963 0.0835666 0.045536 Vertex 10165 0.0284181 0.0835438 0.0446794 Vertex 10166 0.0289959 0.083514 0.0437755 Vertex 10167 0.0298569 0.0835122 0.0432289 Vertex 10168 0.030827 0.0835413 0.0428747 Vertex 10169 0.0317594 0.0835691 0.0424885 Vertex 10170 0.032603 0.0835706 0.0419526 Vertex 10171 0.0333657 0.0835669 0.0412915 Vertex 10172 0.0340507 0.0835544 0.0405264 Vertex 10173 0.0347443 0.08354 0.0397721 Vertex 10174 0.0353453 0.0835128 0.0388598 Vertex 10175 0.0359903 0.0834983 0.0380665 Vertex 10176 0.0366379 0.08347 0.0371909 Vertex 10177 0.0373474 0.083464 0.036489 Vertex 10178 0.0380556 0.0834519 0.0357476 Vertex 10179 0.0387649 0.0834441 0.0350467 Vertex 10180 0.0394335 0.0834241 0.0342316 Vertex 10181 0.0400441 0.0834026 0.0333734 Vertex 10182 0.0406313 0.0833746 0.032449 Vertex 10183 0.0411666 0.0833385 0.031438 Vertex 10184 0.0416569 0.0832977 0.0303966 Vertex 10185 0.0421796 0.0832522 0.0293553 Vertex 10186 0.0427502 0.0832247 0.0284671 Vertex 10187 0.0438316 0.0832073 0.0263179 Vertex 10188 0.0418909 0.0939077 0.0272858 Vertex 10189 0.046015 0.0862238 0.00817489 Vertex 10190 0.0162383 0.0953367 0.0482094 Vertex 10191 0.0376746 0.104662 0.0282621 Vertex 10192 -0.0533361 0.138123 0.0280776 Vertex 10193 0.0310154 0.110075 0.0327245 Vertex 10194 0.0232354 0.0968772 0.0460698 Vertex 10195 0.0241216 0.0968854 0.045587 Vertex 10196 0.0249428 0.0968855 0.0450153 Vertex 10197 0.038172 0.0967289 0.0325586 Vertex 10198 0.0313864 0.0929268 0.0420114 Vertex 10199 -0.05283 0.138085 0.0270749 Vertex 10200 0.032953 0.0994589 0.0373001 Vertex 10201 0.032601 0.100801 0.0367685 Vertex 10202 -0.0788405 0.11444 0.0481937 Vertex 10203 0.0396829 0.102719 -0.00275708 Vertex 10204 0.0246022 0.0942401 0.0462765 Vertex 10205 -0.02118 0.169768 -0.013264 Vertex 10206 -0.0257335 0.166803 -0.00931015 Vertex 10207 -0.0938957 0.124187 0.0252761 Vertex 10208 0.0316126 0.104759 0.0353509 Vertex 10209 -0.0683005 0.139737 0.0452157 Vertex 10210 -0.0525174 0.133925 0.0310668 Vertex 10211 -0.0626054 0.158425 -0.0185846 Vertex 10212 -0.0257594 0.171231 -0.0110774 Vertex 10213 -0.0562403 0.128346 0.0379943 Vertex 10214 -0.0462534 0.123907 0.0259058 Vertex 10215 0.0447631 0.0931576 0.00318223 Vertex 10216 0.0278197 0.108769 0.0368873 Vertex 10217 0.0285939 0.108783 0.0362583 Vertex 10218 0.0323738 0.104756 0.0346971 Vertex 10219 -0.0210306 0.180146 -0.0147237 Vertex 10220 -0.0651094 0.121429 0.0498115 Vertex 10221 -0.0707473 0.127025 0.0521985 Vertex 10222 0.0293349 0.108769 0.0355782 Vertex 10223 -0.0669203 0.110822 0.0381745 Vertex 10224 -0.0221399 0.16826 -0.0191908 Vertex 10225 -0.0763629 0.108471 -0.00759882 Vertex 10226 -0.0613807 0.122656 0.0428396 Vertex 10227 -0.0624931 0.153672 -0.0316068 Vertex 10228 0.040773 0.0858024 -0.0107788 Vertex 10229 -0.0485787 0.153602 0.0103738 Vertex 10230 -0.0651932 0.141087 0.0409428 Vertex 10231 0.0300323 0.108764 0.0348296 Vertex 10232 -0.0352518 0.156597 0.00331287 Vertex 10233 -0.037944 0.165312 0.00115508 Vertex 10234 -0.0122139 0.169818 -0.0178463 Vertex 10235 -0.0180623 0.177182 -0.017491 Vertex 10236 -0.024023 0.17718 -0.0120308 Vertex 10237 0.0307322 0.108762 0.0340805 Vertex 10238 0.02524 0.115374 0.03316 Vertex 10239 0.0313941 0.108732 0.0332945 Vertex 10240 0.0248886 0.114037 0.0344109 Vertex 10241 -0.0529076 0.136719 0.0287121 Vertex 10242 0.0319993 0.108737 0.0323781 Vertex 10243 -0.0186551 0.184576 -0.0164922 Vertex 10244 -0.019368 0.183116 -0.0157888 Vertex 10245 -0.0620569 0.121268 0.0436785 Vertex 10246 -0.0220003 0.181634 -0.0125756 Vertex 10247 -0.0298186 0.154044 -0.00457012 Vertex 10248 0.0326521 0.108705 0.0315863 Vertex 10249 0.0333249 0.108715 0.0307644 Vertex 10250 -0.0176367 0.181628 -0.0186063 Vertex 10251 -0.0552688 0.126926 0.0376418 Vertex 10252 -0.0647364 0.118589 0.0486106 Vertex 10253 -0.0652697 0.118619 0.0495916 Vertex 10254 -0.0642519 0.118577 0.0476092 Vertex 10255 -0.0637803 0.118542 0.0465326 Vertex 10256 -0.0634166 0.118511 0.0453283 Vertex 10257 -0.0625131 0.11843 0.0430565 Vertex 10258 0.0340202 0.108707 0.0300072 Vertex 10259 0.0346979 0.108688 0.0292348 Vertex 10260 0.00731658 0.0846292 0.0563131 Vertex 10261 0.00828982 0.0846467 0.0559983 Vertex 10262 0.00924009 0.0846665 0.0556174 Vertex 10263 0.0101261 0.0846794 0.0551401 Vertex 10264 0.0110129 0.0846936 0.0546683 Vertex 10265 0.011809 0.0846857 0.0540696 Vertex 10266 0.0126182 0.0846922 0.0534757 Vertex 10267 0.0134328 0.0846923 0.0528905 Vertex 10268 0.0142478 0.0846938 0.0523116 Vertex 10269 0.0151781 0.0847217 0.0519158 Vertex 10270 0.0161405 0.0847501 0.0515574 Vertex 10271 0.0170772 0.0847646 0.051153 Vertex 10272 0.0353212 0.108669 0.0283742 Vertex 10273 0.0359735 0.108741 0.0274101 Vertex 10274 0.0210858 0.0848756 0.0499424 Vertex 10275 0.0220421 0.0848959 0.0495666 Vertex 10276 0.0228849 0.0849076 0.049031 Vertex 10277 0.02366 0.0848996 0.0483924 Vertex 10278 0.0245051 0.0849065 0.0478503 Vertex 10279 0.02539 0.0849287 0.0474039 Vertex 10280 0.026315 0.0849274 0.0469361 Vertex 10281 0.0271246 0.0849281 0.0463473 Vertex 10282 0.0277845 0.0849076 0.045525 Vertex 10283 0.0283981 0.0848865 0.0446615 Vertex 10284 0.0289709 0.0848578 0.043728 Vertex 10285 0.0298088 0.0848631 0.0431899 Vertex 10286 0.0307617 0.0848812 0.0428147 Vertex 10287 0.0317605 0.08491 0.0425067 Vertex 10288 0.0326379 0.0849202 0.042017 Vertex 10289 0.0334132 0.0849144 0.041374 Vertex 10290 0.0340796 0.0848941 0.0405554 Vertex 10291 0.0347392 0.0848817 0.0397697 Vertex 10292 0.0354037 0.0848596 0.0389463 Vertex 10293 0.0360179 0.0848402 0.038086 Vertex 10294 0.0366496 0.0848209 0.0372394 Vertex 10295 0.0373294 0.0848074 0.0364738 Vertex 10296 0.0380257 0.084795 0.0357219 Vertex 10297 0.0387003 0.0847793 0.034951 Vertex 10298 0.0393533 0.0847596 0.0341247 Vertex 10299 0.039991 0.0847392 0.0332858 Vertex 10300 0.0405942 0.0847142 0.0324234 Vertex 10301 0.0411571 0.0846831 0.0314273 Vertex 10302 0.0416527 0.0846461 0.030449 Vertex 10303 0.0421362 0.0845969 0.0293292 Vertex 10304 0.0427332 0.084569 0.0284544 Vertex 10305 0.043295 0.084533 0.027498 Vertex 10306 0.0437747 0.084485 0.0264379 Vertex 10307 -0.0174159 0.162512 -0.00777918 Vertex 10308 -0.0666503 0.135429 0.0440071 Vertex 10309 0.0387218 0.0993392 0.0297824 Vertex 10310 0.0452912 0.0903849 0.0031762 Vertex 10311 -0.0776599 0.103464 0.0342449 Vertex 10312 -0.0893403 0.0983511 0.0184032 Vertex 10313 -0.0503963 0.1183 0.0322871 Vertex 10314 -0.0616651 0.119834 0.0424717 Vertex 10315 -0.0634966 0.109514 0.0378318 Vertex 10316 -0.0379377 0.157973 0.00463177 Vertex 10317 0.0367923 0.0967547 0.0340658 Vertex 10318 -0.00287196 0.105931 -0.0223953 Vertex 10319 -0.0541404 0.124102 0.0375109 Vertex 10320 0.0336937 0.0994802 0.0365924 Vertex 10321 0.024692 0.100819 0.0429025 Vertex 10322 0.0254608 0.100767 0.0422505 Vertex 10323 0.0333218 0.0981688 0.0378146 Vertex 10324 0.0451301 0.0903696 0.00218472 Vertex 10325 0.0278762 0.0942373 0.043974 Vertex 10326 -0.0247835 0.166781 -0.00970724 Vertex 10327 -0.0888827 0.140531 0.0122011 Vertex 10328 0.0330435 0.104766 0.033885 Vertex 10329 -0.069034 0.139725 0.045939 Vertex 10330 0.045282 0.0889737 0.0021781 Vertex 10331 -0.061193 0.167783 -0.0585846 Vertex 10332 -0.024103 0.171237 -0.0122056 Vertex 10333 -0.0501776 0.124028 0.032677 Vertex 10334 -0.0495852 0.124005 0.0317323 Vertex 10335 -0.0284035 0.166813 -0.0078902 Vertex 10336 -0.0569157 0.131148 0.0370227 Vertex 10337 -0.0225729 0.172715 -0.0135004 Vertex 10338 -0.0740765 0.0662649 0.0182774 Vertex 10339 0.0337121 0.104741 0.0331059 Vertex 10340 -0.0664425 0.121454 0.0513831 Vertex 10341 -0.0657333 0.121445 0.0506733 Vertex 10342 -0.0116602 0.168404 -0.0170453 Vertex 10343 0.0442558 0.0917077 -0.00080891 Vertex 10344 -0.0266384 0.166791 -0.00886205 Vertex 10345 -0.0673634 0.110954 0.0392365 Vertex 10346 0.00812544 0.105869 -0.0206053 Vertex 10347 -0.0304968 0.172715 -0.00561384 Vertex 10348 0.0284295 0.0955564 0.0430179 Vertex 10349 -0.0659181 0.10388 -0.0158661 Vertex 10350 0.0442177 0.0860807 -0.00279659 Vertex 10351 -0.0261346 0.168251 -0.00989215 Vertex 10352 -0.0634479 0.141036 0.0381413 Vertex 10353 -0.0514307 0.12406 0.0344067 Vertex 10354 -0.0327087 0.156604 0.00170747 Vertex 10355 -0.0385753 0.165326 0.00202421 Vertex 10356 -0.020486 0.18455 -0.0138786 Vertex 10357 -0.0172908 0.177187 -0.018141 Vertex 10358 -0.0205931 0.163965 -0.00888333 Vertex 10359 -0.0691207 0.112747 0.0474107 Vertex 10360 0.0321816 0.0968615 0.0396789 Vertex 10361 0.0447686 0.0889311 -0.000811854 Vertex 10362 0.0411659 0.0952708 0.0280268 Vertex 10363 -0.0660809 0.135405 0.0431027 Vertex 10364 -0.0502228 0.125461 0.0326401 Vertex 10365 -0.0329481 0.169751 -0.00390259 Vertex 10366 0.0392898 0.0993144 0.028831 Vertex 10367 -0.0135146 0.181607 -0.0231689 Vertex 10368 -0.0407211 0.150643 0.00408479 Vertex 10369 -0.0152136 0.174214 -0.0186712 Vertex 10370 0.0381951 0.102007 0.0289909 Vertex 10371 -0.0434333 0.15941 0.00551467 Vertex 10372 -0.0320296 0.171249 -0.00429305 Vertex 10373 -0.0610188 0.119808 0.0416066 Vertex 10374 -0.056455 0.12554 0.0394323 Vertex 10375 -0.0265916 0.172718 -0.0105089 Vertex 10376 -0.0269838 0.158131 -0.000540227 Vertex 10377 -0.0359122 0.158048 0.00410154 Vertex 10378 -0.0464636 0.157957 0.00818306 Vertex 10379 0.0383322 0.0928141 0.0344469 Vertex 10380 0.038476 0.104075 -0.00282883 Vertex 10381 -0.025021 0.178659 -0.00994683 Vertex 10382 0.0326792 0.103442 0.0351236 Vertex 10383 0.00828387 0.0859903 0.0560092 Vertex 10384 0.00922789 0.0860105 0.0556146 Vertex 10385 0.0101565 0.0860282 0.0551829 Vertex 10386 0.0110199 0.0860342 0.0546992 Vertex 10387 0.0119151 0.0860485 0.0542349 Vertex 10388 0.0127323 0.0860509 0.0536553 Vertex 10389 0.0135127 0.0860479 0.0530247 Vertex 10390 0.0142472 0.0860448 0.0523279 Vertex 10391 0.0151023 0.0860518 0.0518047 Vertex 10392 0.0159863 0.0860656 0.0513294 Vertex 10393 0.016819 0.0860765 0.050782 Vertex 10394 0.0431463 0.100109 0.00616795 Vertex 10395 0.0255132 0.110081 0.0370706 Vertex 10396 -0.0639988 0.121381 0.0479339 Vertex 10397 0.0217652 0.0862022 0.0491664 Vertex 10398 0.022652 0.0862116 0.0486888 Vertex 10399 0.0235632 0.0862591 0.0483322 Vertex 10400 0.0245364 0.0862451 0.0478999 Vertex 10401 0.0254315 0.0862638 0.0474376 Vertex 10402 0.026296 0.0862676 0.0469202 Vertex 10403 0.0270421 0.0862601 0.0462384 Vertex 10404 0.0276821 0.0862408 0.0453967 Vertex 10405 0.0282773 0.0862159 0.0445154 Vertex 10406 0.02895 0.086199 0.0437135 Vertex 10407 0.0298019 0.0862025 0.0431971 Vertex 10408 0.0308141 0.0862286 0.0429136 Vertex 10409 0.0318663 0.0862689 0.0426688 Vertex 10410 0.0327708 0.0862789 0.0422215 Vertex 10411 0.0335588 0.0862851 0.0416032 Vertex 10412 0.0342152 0.0862629 0.0407864 Vertex 10413 0.034843 0.0862437 0.0399362 Vertex 10414 0.0354707 0.0862229 0.039086 Vertex 10415 0.0360644 0.0861926 0.0381664 Vertex 10416 0.0366768 0.0861722 0.0373065 Vertex 10417 0.0373244 0.0861524 0.0364715 Vertex 10418 0.037986 0.0861315 0.0356473 Vertex 10419 0.0386471 0.086118 0.0348681 Vertex 10420 0.0392931 0.086096 0.0340337 Vertex 10421 0.0399369 0.0860773 0.0331939 Vertex 10422 0.040546 0.0860518 0.0323351 Vertex 10423 0.0410852 0.0860175 0.0313838 Vertex 10424 0.0415957 0.0859827 0.0303559 Vertex 10425 0.0420715 0.0859357 0.0292923 Vertex 10426 0.0426426 0.0858997 0.0283401 Vertex 10427 0.0432125 0.0858656 0.0273897 Vertex 10428 0.0436775 0.0859385 0.0262014 Vertex 10429 -0.0252491 0.162472 -0.00507229 Vertex 10430 -0.0517798 0.115481 0.0337859 Vertex 10431 0.0280677 0.100848 0.0407486 Vertex 10432 -0.0572883 0.132547 0.0364836 Vertex 10433 -0.0545051 0.119806 0.0369329 Vertex 10434 -0.0569887 0.118401 0.0385929 Vertex 10435 0.022545 0.0955327 0.0468247 Vertex 10436 0.0359993 0.0955223 0.036379 Vertex 10437 0.0447287 0.0917385 0.00119217 Vertex 10438 0.0374765 0.0967619 0.0332563 Vertex 10439 -0.0788357 0.148682 -0.00186858 Vertex 10440 -0.0690033 0.127063 0.0512206 Vertex 10441 0.0344187 0.0994578 0.0359067 Vertex 10442 0.0363106 0.0994119 0.033375 Vertex 10443 0.0238643 0.100811 0.0434608 Vertex 10444 -0.0395514 0.159448 0.00235113 Vertex 10445 -0.0682257 0.127075 0.0505767 Vertex 10446 -0.0391909 0.150688 0.00279786 Vertex 10447 -0.0109096 0.172768 -0.0212178 Vertex 10448 -0.022958 0.166842 -0.0105567 Vertex 10449 0.0296006 0.0982071 0.041203 Vertex 10450 0.0343704 0.104711 0.0323207 Vertex 10451 -0.0698527 0.139727 0.0465118 Vertex 10452 0.0450967 0.0889619 0.00117113 Vertex 10453 -0.0511173 0.128308 0.0330935 Vertex 10454 -0.0684868 0.135467 0.0467048 Vertex 10455 -0.0589296 0.1241 0.041105 Vertex 10456 -0.0355709 0.168274 -0.000671324 Vertex 10457 -0.0372423 0.152141 0.00211029 Vertex 10458 -0.0580097 0.136726 0.0336791 Vertex 10459 0.0303852 0.098223 0.0405823 Vertex 10460 -0.0680972 0.121444 0.0525081 Vertex 10461 -0.0672887 0.121448 0.0519139 Vertex 10462 -0.0234801 0.168298 -0.011313 Vertex 10463 0.026474 0.110098 0.0367031 Vertex 10464 0.0369819 0.102039 0.0307859 Vertex 10465 -0.051716 0.150726 0.0145842 Vertex 10466 -0.0302445 0.16108 -0.00171322 Vertex 10467 -0.0663379 0.132604 0.0444522 Vertex 10468 0.0253164 0.112728 0.0350367 Vertex 10469 0.0271768 0.112761 0.0342135 Vertex 10470 -0.0659605 0.110851 0.0377691 Vertex 10471 -0.0437406 0.150663 0.00676805 Vertex 10472 -0.0896534 0.0983503 0.0154045 Vertex 10473 0.0446953 0.0861142 -0.000824781 Vertex 10474 -0.0188762 0.171241 -0.0152046 Vertex 10475 -0.0627733 0.141026 0.037362 Vertex 10476 0.0217763 0.115313 0.0351727 Vertex 10477 -0.0318141 0.156607 0.00124178 Vertex 10478 -0.0392482 0.165334 0.00281642 Vertex 10479 -0.0174749 0.184587 -0.0183292 Vertex 10480 -0.0165017 0.177176 -0.0187481 Vertex 10481 -0.0215027 0.163915 -0.00845889 Vertex 10482 -0.0253167 0.177183 -0.0103739 Vertex 10483 0.0314182 0.0968966 0.040312 Vertex 10484 0.0192377 0.117984 0.0350388 Vertex 10485 -0.0520794 0.132523 0.0317044 Vertex 10486 -0.0742583 0.12978 0.0523998 Vertex 10487 -0.0509023 0.125469 0.0333647 Vertex 10488 -0.0591308 0.125513 0.0408421 Vertex 10489 0.0360463 0.0953891 -0.0118379 Vertex 10490 0.0287151 0.0982016 0.0416756 Vertex 10491 -0.0427202 0.152139 0.00651185 Vertex 10492 -0.0435275 0.152141 0.00710463 Vertex 10493 -0.0557053 0.132552 0.0352577 Vertex 10494 -0.0295434 0.168268 -0.00777595 Vertex 10495 -0.0529585 0.135327 0.0304274 Vertex 10496 0.044663 0.094574 0.0141596 Vertex 10497 -0.053643 0.135335 0.0311995 Vertex 10498 -0.0543474 0.135324 0.0319505 Vertex 10499 -0.0607049 0.145387 0.0368926 Vertex 10500 -0.0657248 0.120041 0.0506761 Vertex 10501 -0.0671254 0.128435 0.0486555 Vertex 10502 -0.0664402 0.128427 0.0478848 Vertex 10503 -0.064581 0.128354 0.0453237 Vertex 10504 0.0388816 0.0927717 0.0335536 Vertex 10505 -0.0209835 0.159643 -0.00415092 Vertex 10506 0.0350121 0.104701 0.0314746 Vertex 10507 0.00913683 0.0873343 0.0554698 Vertex 10508 0.0100793 0.0873522 0.0550703 Vertex 10509 0.0110023 0.0872551 0.0546654 Vertex 10510 0.0119513 0.0873992 0.0542929 Vertex 10511 0.0127955 0.0874066 0.0537621 Vertex 10512 0.0135801 0.0874029 0.0531363 Vertex 10513 0.0142802 0.0873929 0.0523851 Vertex 10514 0.0150914 0.0873948 0.0517971 Vertex 10515 0.0159587 0.0874032 0.0512942 Vertex 10516 0.0167493 0.0874098 0.0506847 Vertex 10517 0.0174898 0.0874014 0.0499964 Vertex 10518 0.0183745 0.0874107 0.0495162 Vertex 10519 -0.0580888 0.115436 0.0369297 Vertex 10520 -0.0668807 0.112599 0.0436137 Vertex 10521 0.0226438 0.0875613 0.0487078 Vertex 10522 0.0235949 0.0875751 0.0483132 Vertex 10523 0.0245253 0.0875975 0.0479106 Vertex 10524 0.0253549 0.0875981 0.0473346 Vertex 10525 0.026147 0.0875952 0.0467145 Vertex 10526 0.0268834 0.0875842 0.0460207 Vertex 10527 0.0275571 0.0875682 0.0452466 Vertex 10528 0.0282213 0.0875505 0.0444323 Vertex 10529 0.0290078 0.087549 0.0438096 Vertex 10530 0.029848 0.0875415 0.0432926 Vertex 10531 0.030847 0.0875798 0.0429743 Vertex 10532 0.0319159 0.0876168 0.0427503 Vertex 10533 0.0328487 0.0876389 0.0423414 Vertex 10534 0.0336134 0.0876336 0.0416906 Vertex 10535 0.0342709 0.0876121 0.0408726 Vertex 10536 0.0349072 0.0875927 0.04003 Vertex 10537 0.0355341 0.0875716 0.0391778 Vertex 10538 0.0361469 0.0875521 0.038321 Vertex 10539 0.0367284 0.0875226 0.0373878 Vertex 10540 0.0373285 0.0874946 0.0364747 Vertex 10541 0.0379656 0.0874795 0.0356781 Vertex 10542 0.0386176 0.0874608 0.0348475 Vertex 10543 0.0392263 0.0874331 0.033936 Vertex 10544 0.0398379 0.0874103 0.0331324 Vertex 10545 0.0404106 0.0873775 0.0321991 Vertex 10546 0.0409408 0.0873455 0.0311847 Vertex 10547 0.0414488 0.0873044 0.0301508 Vertex 10548 0.0419641 0.0872658 0.0291034 Vertex 10549 0.0425127 0.0872289 0.028142 Vertex 10550 0.0430592 0.0871926 0.0271788 Vertex 10551 0.00211138 0.110155 -0.0201605 Vertex 10552 0.0403539 0.105584 0.00317596 Vertex 10553 0.0388792 0.085648 -0.0137779 Vertex 10554 -0.0233757 0.163881 -0.00766181 Vertex 10555 -0.0302503 0.17123 -0.00702025 Vertex 10556 0.0370031 0.104683 0.029035 Vertex 10557 -0.0881957 0.146062 0.0092207 Vertex 10558 -0.0249764 0.159657 -0.0011434 Vertex 10559 0.0339652 0.0955609 0.0387182 Vertex 10560 0.0362345 0.0967824 0.0350211 Vertex 10561 -0.0224128 0.163867 -0.00803238 Vertex 10562 -0.0442602 0.153622 0.00782588 Vertex 10563 0.0350885 0.099465 0.0350983 Vertex 10564 0.0357221 0.0994501 0.0342567 Vertex 10565 0.0230237 0.100791 0.0439995 Vertex 10566 -0.0499113 0.147776 0.0118822 Vertex 10567 -0.0548599 0.145302 0.0295141 Vertex 10568 0.034236 0.094243 0.0391072 Vertex 10569 -0.0217726 0.172729 -0.0141007 Vertex 10570 -0.0182699 0.166848 -0.0125771 Vertex 10571 -0.0558038 0.116914 0.0367748 Vertex 10572 0.0356609 0.104701 0.030636 Vertex 10573 0.0392521 0.0940728 0.0323259 Vertex 10574 0.0417053 0.0943445 -0.00480688 Vertex 10575 -0.0525731 0.128311 0.0345149 Vertex 10576 -0.0692028 0.135485 0.0474165 Vertex 10577 -0.0606582 0.12408 0.0421371 Vertex 10578 0.0136813 0.0952834 0.0497668 Vertex 10579 -0.0903261 0.135124 0.0222174 Vertex 10580 0.0191348 0.102061 0.0453843 Vertex 10581 -0.0417008 0.153622 0.00625938 Vertex 10582 -0.0362035 0.16829 0.000195359 Vertex 10583 -0.0149394 0.183104 -0.021718 Vertex 10584 -0.0136101 0.17129 -0.0181213 Vertex 10585 0.0407885 0.10564 0.00816522 Vertex 10586 -0.0698407 0.127049 0.051763 Vertex 10587 -0.0668335 0.143964 0.0420823 Vertex 10588 -0.0660765 0.124251 0.0501642 Vertex 10589 -0.0582272 0.151065 0.033498 Vertex 10590 0.0262713 0.112733 0.0346521 Vertex 10591 -0.0204064 0.162527 -0.00684616 Vertex 10592 -0.0744171 0.1312 0.052182 Vertex 10593 -0.0649089 0.110873 0.0375872 Vertex 10594 -0.0126137 0.180121 -0.0236267 Vertex 10595 -0.00531922 0.0961442 -0.0318294 Vertex 10596 -0.0725346 0.145512 -0.0179133 Vertex 10597 0.0340795 0.103399 0.0336714 Vertex 10598 -0.0620302 0.141028 0.0366839 Vertex 10599 -0.0740753 0.174982 -0.0510829 Vertex 10600 -0.0309282 0.156627 0.000764301 Vertex 10601 0.0392299 0.108358 0.0101653 Vertex 10602 -0.0265438 0.177186 -0.00862049 Vertex 10603 -0.0157146 0.17719 -0.0193767 Vertex 10604 -0.0319662 0.163855 -0.00423083 Vertex 10605 -0.0362769 0.163827 -0.00170672 Vertex 10606 0.0264379 0.0968548 0.0436578 Vertex 10607 0.00975279 0.123922 0.0333795 Vertex 10608 -0.0471693 0.128157 0.0265222 Vertex 10609 -0.0644638 0.129733 0.0437115 Vertex 10610 -0.063853 0.129717 0.0428324 Vertex 10611 -0.059976 0.125502 0.0413668 Vertex 10612 -0.0607974 0.125499 0.0419374 Vertex 10613 -0.0615433 0.125505 0.042614 Vertex 10614 -0.0621766 0.125515 0.0434733 Vertex 10615 0.0412886 0.0858436 -0.00978207 Vertex 10616 -0.024717 0.169741 -0.0113487 Vertex 10617 -0.0202842 0.16977 -0.0137262 Vertex 10618 -0.0482395 0.144672 0.00644062 Vertex 10619 0.04371 0.0987542 0.0111628 Vertex 10620 -0.0555526 0.124119 0.0389742 Vertex 10621 -0.0657008 0.139678 0.041893 Vertex 10622 -0.052057 0.15088 0.0153954 Vertex 10623 -0.0187348 0.175696 -0.0167204 Vertex 10624 -0.0651714 0.128382 0.0462127 Vertex 10625 0.0363374 0.104678 0.0298648 Vertex 10626 -0.0575363 0.138153 0.0326058 Vertex 10627 0.0399806 0.105624 0.0191716 Vertex 10628 0.00988218 0.0886651 0.0547874 Vertex 10629 0.0108129 0.0887938 0.0544498 Vertex 10630 0.0118566 0.0887261 0.0541581 Vertex 10631 0.0127518 0.0887452 0.0537008 Vertex 10632 0.0135799 0.0887495 0.0531421 Vertex 10633 0.0142545 0.0887312 0.0523539 Vertex 10634 0.0151093 0.0887421 0.0518346 Vertex 10635 0.0159612 0.0887478 0.0513106 Vertex 10636 0.0167127 0.0887461 0.050636 Vertex 10637 0.0173624 0.088714 0.0498122 Vertex 10638 0.018083 0.0887399 0.0491141 Vertex 10639 -0.0672273 0.135447 0.0449702 Vertex 10640 -0.0562382 0.115455 0.0360976 Vertex 10641 -0.0477168 0.123954 0.0291105 Vertex 10642 0.0225511 0.0888829 0.0485585 Vertex 10643 0.0234643 0.0889079 0.0481435 Vertex 10644 0.0243668 0.0889213 0.0476805 Vertex 10645 0.0252321 0.0889244 0.0471615 Vertex 10646 0.0259941 0.0889184 0.046498 Vertex 10647 0.0267348 0.0889072 0.0458132 Vertex 10648 0.0274461 0.0888981 0.0450769 Vertex 10649 0.0281857 0.0888902 0.0443935 Vertex 10650 0.0289502 0.0888845 0.043761 Vertex 10651 0.0298766 0.0889056 0.0433386 Vertex 10652 0.0309103 0.088937 0.0430941 Vertex 10653 0.0319575 0.0889685 0.042819 Vertex 10654 0.0327921 0.0889736 0.0422708 Vertex 10655 0.0335486 0.0889696 0.0416029 Vertex 10656 0.0342459 0.0889575 0.0408509 Vertex 10657 0.0348898 0.0889372 0.0400127 Vertex 10658 0.0355637 0.0889227 0.0392444 Vertex 10659 0.0361767 0.0888967 0.0383392 Vertex 10660 0.0367682 0.0888721 0.037463 Vertex 10661 0.037341 0.0888457 0.0365275 Vertex 10662 0.0379525 0.0888235 0.0356698 Vertex 10663 0.0385774 0.0888011 0.0348199 Vertex 10664 0.0391468 0.0887707 0.0338836 Vertex 10665 0.0397094 0.0887389 0.0329441 Vertex 10666 0.0402616 0.088708 0.0319407 Vertex 10667 0.0407891 0.0886694 0.0309807 Vertex 10668 0.0412883 0.0886287 0.0299331 Vertex 10669 0.041807 0.0885902 0.0288907 Vertex 10670 0.0423208 0.0885482 0.027912 Vertex 10671 0.0428517 0.0885116 0.026874 Vertex 10672 -0.054132 0.143048 0.0274248 Vertex 10673 -0.0449077 0.159414 0.00690868 Vertex 10674 0.0453002 0.0932088 0.00816687 Vertex 10675 -0.078005 0.151454 -0.00188508 Vertex 10676 -0.0674332 0.127053 0.0499702 Vertex 10677 -0.0223649 0.171249 -0.0132085 Vertex 10678 0.0287102 0.0942447 0.0434182 Vertex 10679 0.0390362 0.0980073 0.030266 Vertex 10680 0.0324749 0.095557 0.0400886 Vertex 10681 -0.0244241 0.178665 -0.0108375 Vertex 10682 -0.0216847 0.180158 -0.0138785 Vertex 10683 0.0417114 0.091515 -0.00780409 Vertex 10684 0.0420736 0.0957824 -0.00279849 Vertex 10685 0.0369413 0.0993952 0.0325229 Vertex 10686 0.0221931 0.100779 0.0445472 Vertex 10687 0.0213321 0.100802 0.0450693 Vertex 10688 -0.0617898 0.16156 -0.0335933 Vertex 10689 -0.0645123 0.172574 -0.0485643 Vertex 10690 -0.0767176 0.159013 -0.0120318 Vertex 10691 -0.0209165 0.172715 -0.0146234 Vertex 10692 -0.0104869 0.166942 -0.0170857 Vertex 10693 -0.0766704 0.154203 -0.00290271 Vertex 10694 -0.0599778 0.148254 0.0362061 Vertex 10695 -0.0237266 0.161004 -0.00287357 Vertex 10696 0.0404099 0.0926692 0.0304567 Vertex 10697 0.0424555 0.0902012 0.0271644 Vertex 10698 -0.0533336 0.128311 0.0351755 Vertex 10699 -0.0930693 0.120128 0.0262942 Vertex 10700 -0.0614001 0.124084 0.0428232 Vertex 10701 -0.0350091 0.168257 -0.00164334 Vertex 10702 -0.0479777 0.147732 0.00938552 Vertex 10703 -0.0533452 0.118341 0.0350731 Vertex 10704 -0.0547216 0.118372 0.0366122 Vertex 10705 0.043578 0.0888313 -0.0037919 Vertex 10706 -0.0400971 0.153595 0.0050429 Vertex 10707 0.0115292 0.119123 0.0361473 Vertex 10708 0.010522 0.119127 0.036469 Vertex 10709 -0.0651106 0.120024 0.049809 Vertex 10710 -0.0615581 0.145382 0.0374116 Vertex 10711 -0.00188013 0.105918 -0.0222309 Vertex 10712 0.045363 0.0932019 0.00717004 Vertex 10713 0.0222809 0.11936 0.0323905 Vertex 10714 -0.0871972 0.102223 0.00642609 Vertex 10715 -0.0749615 0.135451 -0.00681495 Vertex 10716 -0.0581881 0.125521 0.0404357 Vertex 10717 -0.0929926 0.121477 0.0272936 Vertex 10718 -0.09232 0.126938 0.0302595 Vertex 10719 -0.025101 0.114847 -0.0155729 Vertex 10720 -0.0777217 0.159728 -0.0179219 Vertex 10721 -0.0612458 0.141043 0.0360828 Vertex 10722 -0.0280624 0.17271 -0.00913079 Vertex 10723 -0.0300912 0.15662 0.000215848 Vertex 10724 -0.0625405 0.132491 0.039434 Vertex 10725 -0.0259631 0.177171 -0.00957335 Vertex 10726 -0.067274 0.142559 0.0431983 Vertex 10727 -0.0328373 0.163842 -0.00376818 Vertex 10728 -0.0408691 0.158042 0.00401656 Vertex 10729 -0.0132844 0.180127 -0.0228495 Vertex 10730 -0.0192412 0.184576 -0.0155995 Vertex 10731 -0.0495036 0.153584 0.0107879 Vertex 10732 -0.0216854 0.168305 -0.0122385 Vertex 10733 -0.093152 0.121537 0.0362834 Vertex 10734 -0.0172565 0.181572 -0.0253576 Vertex 10735 -0.00687638 0.105938 -0.022783 Vertex 10736 -0.0553588 0.131132 0.0357618 Vertex 10737 -0.0627776 0.125519 0.0444184 Vertex 10738 -0.0633155 0.125546 0.0454063 Vertex 10739 -0.0644512 0.125591 0.047275 Vertex 10740 0.0451564 0.0931924 0.00517592 Vertex 10741 -0.06188 0.164622 -0.0566003 Vertex 10742 -0.0495247 0.141678 0.0113921 Vertex 10743 -0.0612252 0.0618413 0.0248018 Vertex 10744 -0.00885889 0.172674 -0.0247544 Vertex 10745 -0.0639713 0.0651159 0.0301523 Vertex 10746 -0.0493943 0.14168 0.0103932 Vertex 10747 0.0450677 0.0917906 0.015163 Vertex 10748 0.0454465 0.0903989 0.00417224 Vertex 10749 -0.0657901 0.128396 0.0470862 Vertex 10750 -0.0483279 0.119696 0.0300033 Vertex 10751 -0.0629727 0.118457 0.044154 Vertex 10752 -0.0531086 0.126902 0.0355005 Vertex 10753 0.021747 0.102101 0.0439088 Vertex 10754 0.0116453 0.090034 0.0538428 Vertex 10755 0.0125532 0.0900642 0.0534187 Vertex 10756 0.0133955 0.0900754 0.0528858 Vertex 10757 0.0141807 0.0900592 0.0522594 Vertex 10758 0.0150763 0.0900809 0.0517899 Vertex 10759 0.0159395 0.0900955 0.0512828 Vertex 10760 0.0166698 0.0900802 0.0505874 Vertex 10761 0.0172909 0.0900542 0.0497289 Vertex 10762 0.0179261 0.0900567 0.048881 Vertex 10763 -0.0458573 0.147704 0.00717141 Vertex 10764 -0.0554619 0.115432 0.0354757 Vertex 10765 -0.0571198 0.115445 0.0365816 Vertex 10766 -0.0623338 0.163141 -0.0335899 Vertex 10767 0.0233132 0.0902311 0.0479207 Vertex 10768 0.0242228 0.0902502 0.0474811 Vertex 10769 0.0251056 0.0902557 0.0469821 Vertex 10770 0.0259015 0.0902483 0.0463733 Vertex 10771 0.0266281 0.0902434 0.0456585 Vertex 10772 0.027396 0.0902329 0.0450202 Vertex 10773 0.0281375 0.0902298 0.0443276 Vertex 10774 0.0289857 0.090239 0.0438092 Vertex 10775 0.0299243 0.0902598 0.0434097 Vertex 10776 0.0308776 0.0902792 0.0430757 Vertex 10777 0.0318258 0.090298 0.0426417 Vertex 10778 0.0326751 0.0902947 0.0421046 Vertex 10779 0.0334236 0.0903004 0.0414245 Vertex 10780 0.0341402 0.0902832 0.0407178 Vertex 10781 0.0348067 0.0902706 0.0399059 Vertex 10782 0.0355137 0.0902592 0.0391607 Vertex 10783 0.0361389 0.0902387 0.0383091 Vertex 10784 0.0367367 0.0902141 0.03744 Vertex 10785 0.0373216 0.0901862 0.036514 Vertex 10786 0.037936 0.0901639 0.0356574 Vertex 10787 0.0385285 0.0901386 0.0347352 Vertex 10788 0.0390766 0.0901064 0.0338413 Vertex 10789 0.0396241 0.0900718 0.0328369 Vertex 10790 0.0401191 0.0900359 0.0318057 Vertex 10791 0.0406221 0.0899944 0.0307666 Vertex 10792 0.0411691 0.0899632 0.029736 Vertex 10793 0.0416966 0.0899224 0.0287651 Vertex 10794 0.0422067 0.0898824 0.0277847 Vertex 10795 0.0343005 0.110021 0.028645 Vertex 10796 -0.0760236 0.150016 -0.00789124 Vertex 10797 -0.0304354 0.159526 0.00145329 Vertex 10798 0.0173575 0.0940342 0.0480767 Vertex 10799 0.016571 0.0940211 0.0486896 Vertex 10800 0.0158596 0.0940217 0.0494261 Vertex 10801 0.0150912 0.0940152 0.0500689 Vertex 10802 0.0295409 0.0942529 0.0428642 Vertex 10803 -0.0120306 0.174239 -0.0210892 Vertex 10804 -0.0344414 0.153644 0.000910386 Vertex 10805 0.0332346 0.0955533 0.0394336 Vertex 10806 -0.0459743 0.153608 0.00885524 Vertex 10807 0.034944 0.10998 0.0278542 Vertex 10808 -0.0189243 0.181629 -0.0169471 Vertex 10809 -0.047649 0.128193 0.0275289 Vertex 10810 0.0375784 0.099381 0.0316743 Vertex 10811 0.0304753 0.100799 0.0389817 Vertex 10812 -0.0860589 0.113009 0.00328149 Vertex 10813 -0.0724692 0.135469 0.0497506 Vertex 10814 -0.0659296 0.14253 0.0416232 Vertex 10815 -0.0200653 0.172726 -0.0151523 Vertex 10816 -0.0868685 0.11045 0.00936714 Vertex 10817 -0.0937998 0.118753 0.0153042 Vertex 10818 0.0351689 0.0928995 0.0387113 Vertex 10819 -0.068257 0.129831 0.0487832 Vertex 10820 -0.0270041 0.168274 -0.00938266 Vertex 10821 -0.0518479 0.128319 0.033784 Vertex 10822 -0.0647288 0.126998 0.0468559 Vertex 10823 -0.0598342 0.124083 0.0415696 Vertex 10824 -0.0673703 0.122848 0.0518073 Vertex 10825 -0.0479423 0.118344 0.0305757 Vertex 10826 -0.016957 0.186039 -0.0193264 Vertex 10827 -0.0540718 0.118333 0.0357708 Vertex 10828 -0.0295615 0.171229 -0.00778742 Vertex 10829 0.0284454 0.0995183 0.0412905 Vertex 10830 0.0316414 0.11271 0.0301021 Vertex 10831 -0.0564793 0.151056 0.0307055 Vertex 10832 -0.055953 0.151039 0.0297159 Vertex 10833 -0.0249427 0.17123 -0.0116584 Vertex 10834 -0.0675492 0.129835 0.0480321 Vertex 10835 0.0244048 0.112688 0.0354614 Vertex 10836 -0.0695324 0.125657 0.0522171 Vertex 10837 -0.0709342 0.128224 -0.00904999 Vertex 10838 -0.069935 0.128232 -0.00913858 Vertex 10839 -0.0171387 0.171259 -0.0162017 Vertex 10840 -0.0565891 0.129759 0.0374849 Vertex 10841 -0.0859023 0.122521 -0.0027014 Vertex 10842 -0.0052769 0.0941788 -0.0338289 Vertex 10843 -0.0930778 0.121531 0.0352811 Vertex 10844 -0.0605388 0.141029 0.0353291 Vertex 10845 -0.0465912 0.145038 0.00283923 Vertex 10846 -0.0292113 0.156649 -0.000270817 Vertex 10847 -0.0554323 0.145321 0.0304155 Vertex 10848 -0.0149484 0.177196 -0.0200335 Vertex 10849 -0.0208004 0.181643 -0.0143459 Vertex 10850 -0.0408994 0.163853 0.00394115 Vertex 10851 -0.0391241 0.157933 0.00465789 Vertex 10852 -0.014903 0.172738 -0.0182312 Vertex 10853 0.0428444 0.0958802 0.0241636 Vertex 10854 -0.0688527 0.142579 0.0444582 Vertex 10855 -0.0596514 0.142474 0.0348633 Vertex 10856 0.0382386 0.084194 -0.0147697 Vertex 10857 -0.0624789 0.152144 -0.0275875 Vertex 10858 -0.0472716 0.130968 0.0245047 Vertex 10859 -0.089704 0.111925 0.0143387 Vertex 10860 -0.0142596 0.175663 -0.0267921 Vertex 10861 -0.0650593 0.125632 0.048098 Vertex 10862 -0.0638617 0.125566 0.0463833 Vertex 10863 0.0310181 0.112726 0.0309619 Vertex 10864 -0.0895155 0.0983259 0.0124123 Vertex 10865 0.0347485 0.0981702 0.0363481 Vertex 10866 0.044554 0.0917551 0.0201604 Vertex 10867 0.042165 0.0859172 -0.00778247 Vertex 10868 0.0457915 0.0862101 0.0121678 Vertex 10869 0.0444767 0.0889055 -0.00179899 Vertex 10870 -0.0697618 0.112838 0.0482345 Vertex 10871 0.0364996 0.0928818 0.0370772 Vertex 10872 -0.0702674 0.128451 0.0511564 Vertex 10873 -0.0488446 0.119728 0.0310062 Vertex 10874 -0.0476849 0.119711 0.0291692 Vertex 10875 -0.0258283 0.172717 -0.011167 Vertex 10876 0.0131268 0.120538 0.0349816 Vertex 10877 0.012093 0.120504 0.0352323 Vertex 10878 0.0131192 0.0913894 0.0524895 Vertex 10879 0.0140028 0.091392 0.0520062 Vertex 10880 0.0149304 0.0913967 0.05159 Vertex 10881 0.015783 0.0914175 0.0510677 Vertex 10882 0.016507 0.0913965 0.0503683 Vertex 10883 0.017105 0.0913787 0.0494605 Vertex 10884 0.017703 0.0913635 0.0485583 Vertex 10885 0.0184671 0.0913654 0.0479185 Vertex 10886 -0.0894038 0.140678 0.0331776 Vertex 10887 -0.0546448 0.115434 0.0349037 Vertex 10888 -0.0106393 0.169838 -0.0190633 Vertex 10889 0.0231687 0.0915577 0.0477207 Vertex 10890 0.0240747 0.0915746 0.0472686 Vertex 10891 0.0249549 0.0915796 0.0467751 Vertex 10892 0.0257721 0.0915784 0.0461947 Vertex 10893 0.0265834 0.0915781 0.0456097 Vertex 10894 0.0273368 0.091573 0.0449418 Vertex 10895 0.0281352 0.0915776 0.0443357 Vertex 10896 0.028994 0.0915879 0.0438177 Vertex 10897 0.0298506 0.0915959 0.0433109 Vertex 10898 0.0307316 0.091606 0.0428217 Vertex 10899 0.0316149 0.0916151 0.0423373 Vertex 10900 0.0324504 0.0916248 0.0417895 Vertex 10901 0.0332536 0.0916169 0.0411931 Vertex 10902 0.0339646 0.0916099 0.0404552 Vertex 10903 0.0346714 0.0916012 0.0397133 Vertex 10904 0.0353713 0.0915869 0.0389643 Vertex 10905 0.0359972 0.0915666 0.0381116 Vertex 10906 0.0366443 0.0915417 0.0373244 Vertex 10907 0.0372616 0.0915229 0.0364203 Vertex 10908 0.0378596 0.0914955 0.035553 Vertex 10909 0.0384501 0.0914717 0.0346309 Vertex 10910 0.0390056 0.0914413 0.0336848 Vertex 10911 0.039504 0.0914002 0.0327084 Vertex 10912 0.0400022 0.0913669 0.0315547 Vertex 10913 0.0405319 0.0913292 0.030651 Vertex 10914 0.041088 0.0912985 0.0296287 Vertex 10915 0.0416262 0.0912615 0.0286616 Vertex 10916 0.0421377 0.0912242 0.0276147 Vertex 10917 -0.0501537 0.152144 0.0115744 Vertex 10918 0.0195435 0.100771 0.0459866 Vertex 10919 -0.0486523 0.128248 0.029602 Vertex 10920 -0.0641167 0.143926 0.0389732 Vertex 10921 -0.0631641 0.149054 -0.0215452 Vertex 10922 -0.0563562 0.140993 0.0307629 Vertex 10923 -0.0717344 0.131221 0.0507858 Vertex 10924 0.0303543 0.0942493 0.0422823 Vertex 10925 -0.0174665 0.17272 -0.016673 Vertex 10926 0.0434109 0.0987186 0.0151565 Vertex 10927 0.0442448 0.0902943 -0.00180307 Vertex 10928 -0.0519213 0.118323 0.0336042 Vertex 10929 -0.0509634 0.152153 0.0121451 Vertex 10930 -0.055962 0.148162 0.0296522 Vertex 10931 0.0381679 0.0993665 0.0307411 Vertex 10932 0.0297368 0.100819 0.0396604 Vertex 10933 0.0347431 0.103404 0.0328426 Vertex 10934 -0.053281 0.144674 0.0233765 Vertex 10935 -0.0512091 0.118302 0.0328718 Vertex 10936 -0.0191804 0.172724 -0.0156293 Vertex 10937 -0.0675391 0.124252 0.0515729 Vertex 10938 0.0400863 0.0899903 -0.0108207 Vertex 10939 -0.054346 0.125513 0.0372066 Vertex 10940 0.0401192 0.0979552 0.0282751 Vertex 10941 -0.0460528 0.122513 0.026245 Vertex 10942 -0.0180254 0.171268 -0.0157212 Vertex 10943 -0.0504448 0.128295 0.0323161 Vertex 10944 -0.0653439 0.127011 0.0477296 Vertex 10945 -0.0580291 0.124109 0.0406616 Vertex 10946 -0.0681363 0.122845 0.0524474 Vertex 10947 -0.0875576 0.0954908 0.0044419 Vertex 10948 -0.0593417 0.119814 0.0404797 Vertex 10949 -0.0526579 0.118327 0.034303 Vertex 10950 -0.0576046 0.151067 0.0326375 Vertex 10951 -0.0776496 0.163935 -0.0239336 Vertex 10952 -0.0555708 0.142434 0.0301615 Vertex 10953 0.0301352 0.0955658 0.0419698 Vertex 10954 -0.066143 0.143958 0.0413147 Vertex 10955 0.0204354 0.100784 0.0455262 Vertex 10956 -0.0690116 0.129833 0.0494501 Vertex 10957 -0.0697675 0.129835 0.0501143 Vertex 10958 0.0234401 0.112665 0.0358138 Vertex 10959 0.0224949 0.112674 0.0362232 Vertex 10960 -0.054418 0.142404 0.0282888 Vertex 10961 -0.0206459 0.171255 -0.0142383 Vertex 10962 0.0383001 0.0969495 -0.00880451 Vertex 10963 -0.0926495 0.129588 0.0122381 Vertex 10964 -0.0295799 0.174217 -0.00600797 Vertex 10965 -0.0348452 0.0957896 -0.0233484 Vertex 10966 -0.0599745 0.14101 0.03437 Vertex 10967 -0.0468321 0.144886 0.00412892 Vertex 10968 -0.0233975 0.156883 -0.00572928 Vertex 10969 -0.0227366 0.157094 -0.00651614 Vertex 10970 -0.0114995 0.164138 -0.0150087 Vertex 10971 -0.0141839 0.177168 -0.0206609 Vertex 10972 0.0243862 0.0955601 0.0459654 Vertex 10973 -0.0615996 0.159996 -0.0335919 Vertex 10974 -0.0295604 0.158116 0.000994125 Vertex 10975 -0.030456 0.158107 0.0014598 Vertex 10976 0.038478 0.0980354 0.0312187 Vertex 10977 -0.0617686 0.159987 -0.035592 Vertex 10978 -0.0592101 0.142401 0.0336275 Vertex 10979 -0.0585904 0.142433 0.0328417 Vertex 10980 0.0309161 0.0955754 0.0413413 Vertex 10981 -0.0477554 0.130992 0.0255865 Vertex 10982 -0.060435 0.131107 0.0389542 Vertex 10983 -0.0654573 0.131176 0.0439868 Vertex 10984 -0.0617882 0.138121 0.0352393 Vertex 10985 -0.0614468 0.141404 -0.00570472 Vertex 10986 -0.0284893 0.0903534 -0.0305816 Vertex 10987 -0.0758557 0.103473 -0.0101675 Vertex 10988 -0.08595 0.110378 0.0213654 Vertex 10989 0.0252254 0.095572 0.0454222 Vertex 10990 0.0260206 0.095556 0.0448127 Vertex 10991 -0.0337241 0.163848 -0.00328844 Vertex 10992 -0.0658407 0.0938498 -0.0179236 Vertex 10993 0.010651 0.121836 0.0349107 Vertex 10994 0.0434619 0.0930961 0.0241585 Vertex 10995 -0.0678583 0.112732 0.0457592 Vertex 10996 0.0116064 0.121838 0.0345253 Vertex 10997 0.00969178 0.121836 0.0352946 Vertex 10998 -0.0616678 0.143939 0.037247 Vertex 10999 -0.0398464 0.0957237 -0.0225845 Vertex 11000 -0.0718123 0.0950995 -0.0154446 Vertex 11001 -0.069852 0.0951674 -0.0161643 Vertex 11002 -0.0925798 0.11747 0.0343056 Vertex 11003 -0.0761089 0.149998 -0.0108814 Vertex 11004 -0.0090863 0.16966 -0.0247514 Vertex 11005 -0.0615051 0.159991 -0.0325895 Vertex 11006 -0.0738138 0.0950345 -0.0145557 Vertex 11007 -0.0758939 0.107753 -0.00831552 Vertex 11008 -0.0649061 0.108122 -0.0141961 Vertex 11009 -0.076873 0.114866 -0.00505023 Vertex 11010 -0.043838 0.0956679 -0.0221641 Vertex 11011 -0.0630974 0.160042 -0.0195595 Vertex 11012 -0.0154766 0.160714 -0.011803 Vertex 11013 -0.0834254 0.141805 0.00220396 Vertex 11014 -0.0626773 0.153684 -0.0325991 Vertex 11015 0.0210547 0.0358177 -0.00168489 Vertex 11016 0.021052 0.0358187 -0.0026817 Vertex 11017 0.0205436 0.0357642 -0.00368285 Vertex 11018 0.0201601 0.0357218 -0.00467829 Vertex 11019 0.0196495 0.0356664 -0.00567711 Vertex 11020 0.0191388 0.0356129 -0.00667825 Vertex 11021 0.0191352 0.0356125 -0.00767677 Vertex 11022 0.0188777 0.03558 -0.00867348 Vertex 11023 0.0186225 0.0355557 -0.00967449 Vertex 11024 0.0183649 0.0355244 -0.0106716 Vertex 11025 0.0182349 0.0355117 -0.0116753 Vertex 11026 0.0181014 0.0354956 -0.0136744 Vertex 11027 0.0165095 0.0354073 -0.0166384 Vertex 11028 -0.0688351 0.0951745 -0.0162656 Vertex 11029 0.0200734 0.0372985 0.0402199 Vertex 11030 0.0207024 0.0373647 0.039246 Vertex 11031 0.0213046 0.0374522 0.0382518 Vertex 11032 0.0216857 0.0374896 0.0372608 Vertex 11033 0.0220645 0.0375334 0.0362702 Vertex 11034 0.0224472 0.0375897 0.0352799 Vertex 11035 0.0226059 0.0375679 0.034289 Vertex 11036 -0.0728269 0.0950692 -0.0149677 Vertex 11037 -0.0448348 0.0942101 -0.0220316 Vertex 11038 -0.0766843 0.15421 -0.00390102 Vertex 11039 -0.0887111 0.101017 0.0193703 Vertex 11040 -0.0629568 0.15367 -0.0336031 Vertex 11041 -0.0725091 0.147853 -0.0287195 Vertex 11042 0.0450284 0.0875565 0.0211548 Vertex 11043 -0.0635972 0.164728 -0.0295802 Vertex 11044 -0.0617504 0.158434 -0.0225881 Vertex 11045 -0.0611789 0.172541 -0.0596341 Vertex 11046 -0.0618817 0.161578 -0.0325898 Vertex 11047 -0.0674791 0.0622216 0.0214031 Vertex 11048 -0.0748306 0.094995 -0.0139518 Vertex 11049 -0.00487882 0.107372 -0.0225382 Vertex 11050 -0.00688399 0.107372 -0.022762 Vertex 11051 -0.0261438 0.168232 -0.0181898 Vertex 11052 -0.060805 0.0953608 -0.018741 Vertex 11053 -0.0308539 0.0958394 -0.0237431 Vertex 11054 0.0415131 0.0394077 0.00724875 Vertex 11055 0.0413586 0.0394374 0.00625535 Vertex 11056 0.0410852 0.0394499 0.00526393 Vertex 11057 0.0410047 0.0395957 0.0043142 Vertex 11058 0.039816 0.0393083 0.00327619 Vertex 11059 0.0381042 0.0392738 0.00134927 Vertex 11060 -0.0093342 0.174192 -0.0247468 Vertex 11061 0.0213045 0.0372836 -0.00268556 Vertex 11062 0.0218798 0.0374214 -0.00364164 Vertex 11063 0.0209941 0.0373175 -0.00464913 Vertex 11064 0.0204112 0.0371925 -0.00568428 Vertex 11065 0.0200283 0.0371524 -0.00668325 Vertex 11066 0.0197685 0.0371215 -0.00768223 Vertex 11067 0.0195119 0.0370935 -0.00868114 Vertex 11068 0.0193623 0.0370952 -0.00967348 Vertex 11069 0.0193556 0.0370965 -0.0106758 Vertex 11070 0.0191276 0.0370481 -0.0116797 Vertex 11071 0.0188962 0.0370007 -0.0126843 Vertex 11072 0.0187472 0.0369987 -0.01368 Vertex 11073 0.0185047 0.0369619 -0.0146835 Vertex 11074 0.0182327 0.0369462 -0.015679 Vertex 11075 0.0177475 0.036867 -0.0166881 Vertex 11076 0.017237 0.0368135 -0.0176915 Vertex 11077 0.0165569 0.0367823 -0.018664 Vertex 11078 0.0157741 0.036715 -0.0196413 Vertex 11079 0.0148967 0.0366228 -0.0205744 Vertex 11080 0.00946556 0.123094 -0.0106511 Vertex 11081 0.0230906 0.0973761 -0.0211755 Vertex 11082 -0.0494359 0.138587 0.00541192 Vertex 11083 -0.0615935 0.160001 -0.0315914 Vertex 11084 0.0207467 0.0387687 0.0412277 Vertex 11085 0.0214831 0.0388585 0.0402401 Vertex 11086 0.0219406 0.0388423 0.0393076 Vertex 11087 0.0225876 0.0388978 0.0383164 Vertex 11088 0.0230618 0.0389706 0.0372995 Vertex 11089 0.0234516 0.0389975 0.0363054 Vertex 11090 0.023933 0.0390696 0.0352942 Vertex 11091 0.0242087 0.039076 0.0343007 Vertex 11092 0.0244991 0.0390622 0.0333159 Vertex 11093 -0.0608313 0.092512 -0.0191943 Vertex 11094 -0.0476623 0.135572 0.0124001 Vertex 11095 -0.0398248 0.0928735 -0.0232663 Vertex 11096 -0.0887511 0.102351 0.0133854 Vertex 11097 -0.00927598 0.177254 -0.0287785 Vertex 11098 -0.0798195 0.105901 -0.00558882 Vertex 11099 -0.0101655 0.178729 -0.0267529 Vertex 11100 0.0414097 0.104256 0.00616512 Vertex 11101 -0.0622546 0.152185 -0.0195775 Vertex 11102 -0.0861558 0.100815 0.00240792 Vertex 11103 -0.0358424 0.095771 -0.0231986 Vertex 11104 -0.0631329 0.17411 -0.0535854 Vertex 11105 -0.0923754 0.118793 0.0312942 Vertex 11106 -0.0788893 0.125151 -0.00625598 Vertex 11107 -0.0677451 0.0629578 0.0224748 Vertex 11108 -0.0689415 0.128234 -0.0091158 Vertex 11109 -0.0679015 0.120916 -0.00896008 Vertex 11110 -0.0338357 0.095789 -0.0234311 Vertex 11111 0.0456517 0.0413562 0.00923967 Vertex 11112 0.0453867 0.0413474 0.00824507 Vertex 11113 0.0449984 0.0413097 0.00725015 Vertex 11114 0.044508 0.0412168 0.00624902 Vertex 11115 0.0440036 0.0411539 0.00525252 Vertex 11116 0.0436072 0.041137 0.00426675 Vertex 11117 0.0430768 0.0411155 0.00329204 Vertex 11118 0.0420833 0.0409609 0.00227771 Vertex 11119 0.0410408 0.0408917 0.00130956 Vertex 11120 0.0402098 0.04091 0.000378677 Vertex 11121 0.0390858 0.0407779 -0.000614316 Vertex 11122 -0.0479764 0.135553 0.00940627 Vertex 11123 0.0233356 0.0389315 -0.00470356 Vertex 11124 0.0220423 0.0388246 -0.00567731 Vertex 11125 0.0215585 0.0387445 -0.00669407 Vertex 11126 0.0210632 0.038679 -0.00769573 Vertex 11127 0.0209039 0.0386887 -0.00868617 Vertex 11128 0.0204663 0.0385832 -0.00969847 Vertex 11129 0.0202287 0.0385462 -0.010699 Vertex 11130 0.0200483 0.0385661 -0.0116898 Vertex 11131 0.0198232 0.0385183 -0.0126921 Vertex 11132 0.0196875 0.0385058 -0.013693 Vertex 11133 0.019441 0.0384709 -0.0146972 Vertex 11134 0.0190777 0.0384168 -0.0157069 Vertex 11135 0.0187727 0.038419 -0.0166964 Vertex 11136 0.0183006 0.0383341 -0.0177245 Vertex 11137 0.0176298 0.0382941 -0.0187111 Vertex 11138 0.016644 0.0381609 -0.019755 Vertex 11139 0.0154864 0.0380581 -0.0207587 Vertex 11140 -0.0105538 0.0962042 -0.0319333 Vertex 11141 -0.0908359 0.114163 0.0368153 Vertex 11142 -0.0505374 0.138563 0.00240881 Vertex 11143 -0.0623035 0.158393 -0.0375989 Vertex 11144 -0.0288792 0.104408 -0.0227314 Vertex 11145 -0.0938956 0.118755 0.0202995 Vertex 11146 0.0222077 0.0403059 0.0403109 Vertex 11147 0.0238248 0.0404881 0.03829 Vertex 11148 0.0244407 0.0405616 0.0372831 Vertex 11149 0.0247254 0.0405634 0.0363023 Vertex 11150 0.0249948 0.0405751 0.0353079 Vertex 11151 0.0254946 0.0406248 0.0343049 Vertex 11152 0.0259201 0.0406241 0.0333279 Vertex 11153 -0.0888783 0.111909 0.0103621 Vertex 11154 -0.0884724 0.111842 0.0093465 Vertex 11155 -0.0945826 0.122834 0.0222802 Vertex 11156 -0.0726588 0.143932 -0.0130219 Vertex 11157 -0.0487919 0.135536 0.0203921 Vertex 11158 -0.0631344 0.177233 -0.0567528 Vertex 11159 -0.0621666 0.152205 -0.0155784 Vertex 11160 0.0380593 0.0869714 -0.0147288 Vertex 11161 -0.00979568 0.178776 -0.0277733 Vertex 11162 -0.0615069 0.172523 -0.0575905 Vertex 11163 -0.062151 0.152195 -0.0205783 Vertex 11164 -0.00887643 0.105922 -0.0227472 Vertex 11165 -0.0639011 0.119458 -0.00893676 Vertex 11166 -0.0829976 0.133839 -0.00205551 Vertex 11167 -0.0408343 0.0942887 -0.0229156 Vertex 11168 0.0483264 0.0430255 0.0152188 Vertex 11169 0.0485976 0.0429932 0.0132228 Vertex 11170 0.0487043 0.0430197 0.0122221 Vertex 11171 0.0488884 0.0431235 0.0112233 Vertex 11172 0.0487537 0.043125 0.0102298 Vertex 11173 0.048521 0.043083 0.00923259 Vertex 11174 0.0484774 0.0431365 0.00824398 Vertex 11175 0.0481112 0.0431114 0.00725444 Vertex 11176 0.0475429 0.0429463 0.00623912 Vertex 11177 0.0472196 0.0430325 0.00527833 Vertex 11178 0.0464852 0.0429053 0.00427528 Vertex 11179 0.0458597 0.0428246 0.0032848 Vertex 11180 0.0450739 0.0427888 0.00232236 Vertex 11181 0.0433938 0.0426486 0.00136855 Vertex 11182 0.0417308 0.0422749 0.000248643 Vertex 11183 0.0400064 0.0422019 -0.00166327 Vertex 11184 0.0289287 0.100617 -0.0165368 Vertex 11185 -0.0876244 0.129442 0.00130199 Vertex 11186 0.0245092 0.0406191 -0.00557292 Vertex 11187 0.0231366 0.0404268 -0.00664294 Vertex 11188 0.0223219 0.0402539 -0.00770693 Vertex 11189 0.021964 0.0402022 -0.00870612 Vertex 11190 0.0215717 0.0401714 -0.00970048 Vertex 11191 0.0212145 0.0401172 -0.0107008 Vertex 11192 0.020848 0.0400652 -0.0117024 Vertex 11193 0.0206869 0.0400703 -0.0126929 Vertex 11194 0.0204668 0.0400207 -0.013702 Vertex 11195 0.0203254 0.040014 -0.0146997 Vertex 11196 0.0200755 0.0399795 -0.0157069 Vertex 11197 0.0197994 0.0399634 -0.0167042 Vertex 11198 0.0194281 0.0399108 -0.0177171 Vertex 11199 0.0187974 0.0398349 -0.0187285 Vertex 11200 0.0181073 0.0398088 -0.0196993 Vertex 11201 0.0170867 0.039703 -0.0206999 Vertex 11202 0.0160515 0.039741 -0.0214719 Vertex 11203 0.0084074 0.123136 -0.0106652 Vertex 11204 -0.0891628 0.0942977 0.0214104 Vertex 11205 -0.0106525 0.165176 -0.016643 Vertex 11206 -0.0919111 0.120015 0.00829626 Vertex 11207 -0.0908772 0.119982 0.00630567 Vertex 11208 -0.047972 0.135544 0.0173874 Vertex 11209 -0.0630191 0.169374 -0.0476038 Vertex 11210 -0.0623807 0.147545 -0.00857398 Vertex 11211 -0.0530423 0.14778 0.0224018 Vertex 11212 -0.051966 0.138521 0.000416067 Vertex 11213 -0.0622266 0.158391 -0.0366041 Vertex 11214 -0.0635063 0.156747 -0.0406118 Vertex 11215 -0.0619528 0.15527 -0.030594 Vertex 11216 0.0252284 0.0420597 0.0372934 Vertex 11217 0.0256473 0.0420743 0.0363142 Vertex 11218 0.0260496 0.0420955 0.0353242 Vertex 11219 0.0266603 0.0421651 0.0343135 Vertex 11220 -0.0491177 0.138604 0.00740359 Vertex 11221 -0.0613242 0.174126 -0.0596453 Vertex 11222 -0.0620463 0.158428 -0.0205873 Vertex 11223 -0.0616259 0.175734 -0.0596865 Vertex 11224 -0.0683202 0.166619 -0.0540065 Vertex 11225 -0.0628199 0.164682 -0.0345962 Vertex 11226 -0.0736181 0.0688668 0.0266732 Vertex 11227 -0.0621531 0.152198 -0.0185797 Vertex 11228 -0.0490828 0.13552 0.0213898 Vertex 11229 -0.00957846 0.178815 -0.0287373 Vertex 11230 0.0402454 0.0843611 -0.0117637 Vertex 11231 -0.0512049 0.147808 0.0143958 Vertex 11232 -0.0792715 0.107765 0.0320009 Vertex 11233 -0.0668226 0.0923514 -0.017257 Vertex 11234 0.0503986 0.0446075 0.0172106 Vertex 11235 0.0505278 0.0445977 0.0162148 Vertex 11236 0.0507656 0.0446256 0.0152142 Vertex 11237 0.0507854 0.0445928 0.0142166 Vertex 11238 0.0509994 0.044648 0.0132154 Vertex 11239 0.0509663 0.0446851 0.0122122 Vertex 11240 0.0508473 0.0446622 0.0112162 Vertex 11241 0.0508224 0.0446928 0.0102182 Vertex 11242 0.0506847 0.044695 0.00922239 Vertex 11243 0.0504194 0.0446982 0.00822878 Vertex 11244 0.0501729 0.0446765 0.00723117 Vertex 11245 0.0500217 0.0446984 0.00624267 Vertex 11246 0.049468 0.0445737 0.00523787 Vertex 11247 0.0492065 0.0445737 0.00425603 Vertex 11248 0.0483875 0.0444574 0.00325794 Vertex 11249 0.0476241 0.0444058 0.00228058 Vertex 11250 0.0469197 0.0444607 0.00136465 Vertex 11251 0.0454962 0.0443878 0.000424365 Vertex 11252 0.0322546 0.0987343 -0.0145759 Vertex 11253 -0.0345641 0.11594 -0.0146748 Vertex 11254 0.0297667 0.100164 -0.016062 Vertex 11255 0.0376515 0.0947835 -0.010301 Vertex 11256 0.0241599 0.0418198 -0.00678118 Vertex 11257 0.0234089 0.0418644 -0.00766906 Vertex 11258 0.0226563 0.0416586 -0.00875234 Vertex 11259 0.0222403 0.0416489 -0.00972259 Vertex 11260 0.0218834 0.0415901 -0.0107198 Vertex 11261 0.0216799 0.0415358 -0.0117265 Vertex 11262 0.021665 0.0416371 -0.0126942 Vertex 11263 0.0214529 0.0415824 -0.013701 Vertex 11264 0.0213104 0.0415776 -0.0147 Vertex 11265 0.0210681 0.0415437 -0.0156999 Vertex 11266 0.0208178 0.0415166 -0.0167046 Vertex 11267 0.0205519 0.0414936 -0.0177079 Vertex 11268 0.0201473 0.0414664 -0.0187017 Vertex 11269 0.0195943 0.041435 -0.0196763 Vertex 11270 0.0185142 0.0412688 -0.0207398 Vertex 11271 -0.0148841 0.0959887 -0.031739 Vertex 11272 -0.0810076 0.10869 -0.00259876 Vertex 11273 -0.0626256 0.150596 -0.021578 Vertex 11274 -0.092388 0.120024 0.00928585 Vertex 11275 -0.0914335 0.120003 0.00730918 Vertex 11276 -0.0625559 0.150623 -0.0205762 Vertex 11277 -0.0090473 0.168146 -0.0217175 Vertex 11278 -0.0630651 0.167844 -0.0445874 Vertex 11279 -0.0702901 0.063891 0.0211244 Vertex 11280 -0.0631168 0.15992 -0.0455978 Vertex 11281 -0.0631574 0.159924 -0.0465929 Vertex 11282 -0.0623577 0.147557 -0.00658086 Vertex 11283 -0.0633873 0.169402 -0.0465883 Vertex 11284 -0.0632263 0.153648 -0.0346156 Vertex 11285 -0.0135829 0.03702 0.0510108 Vertex 11286 -0.0724375 0.0643068 0.0185598 Vertex 11287 -0.054457 0.14621 0.0274041 Vertex 11288 -0.053792 0.141582 0.0273817 Vertex 11289 -0.0874242 0.111776 0.00733879 Vertex 11290 -0.0709606 0.172226 -0.0520527 Vertex 11291 -0.0908268 0.137853 0.0181986 Vertex 11292 -0.0409396 0.168342 -0.0108401 Vertex 11293 -0.0801811 0.108648 -0.00360377 Vertex 11294 -0.0839818 0.115583 0.0478751 Vertex 11295 -0.0620328 0.156862 -0.0185851 Vertex 11296 -0.00888297 0.175714 -0.027834 Vertex 11297 -0.0614858 0.175719 -0.0606762 Vertex 11298 -0.0881465 0.111869 0.0203319 Vertex 11299 -0.0626214 0.149057 -0.0155813 Vertex 11300 -0.0720239 0.158203 -0.0389152 Vertex 11301 -0.0483087 0.135537 0.00740851 Vertex 11302 -0.0627796 0.16313 -0.0285907 Vertex 11303 -0.0339969 0.152567 -0.000573454 Vertex 11304 -0.0618223 0.170491 -0.0617288 Vertex 11305 -0.0627671 0.15529 -0.013592 Vertex 11306 0.0422094 0.0873179 -0.00779978 Vertex 11307 0.0518591 0.0461434 0.019211 Vertex 11308 0.0522184 0.0461787 0.0182078 Vertex 11309 0.0525507 0.0462401 0.0172033 Vertex 11310 0.0525746 0.0462075 0.0162071 Vertex 11311 0.0527001 0.0462105 0.0152086 Vertex 11312 0.0529037 0.0462692 0.0142047 Vertex 11313 0.0530102 0.0462982 0.0132036 Vertex 11314 0.0529009 0.0462649 0.0122044 Vertex 11315 0.0527843 0.0462443 0.0112063 Vertex 11316 0.0526315 0.0462656 0.0102089 Vertex 11317 0.0522688 0.0462249 0.00921199 Vertex 11318 0.0519248 0.0461654 0.00821164 Vertex 11319 0.0517879 0.0461689 0.0072143 Vertex 11320 0.0515378 0.0461489 0.00621743 Vertex 11321 0.0514697 0.0462224 0.00523719 Vertex 11322 0.0510178 0.0461394 0.00424124 Vertex 11323 0.0505086 0.0461176 0.0032623 Vertex 11324 0.0499018 0.0460625 0.00228276 Vertex 11325 0.0491492 0.0460297 0.00132033 Vertex 11326 0.0482587 0.0460086 0.000382582 Vertex 11327 0.0305902 0.0996469 -0.0155371 Vertex 11328 0.0314256 0.0991914 -0.015062 Vertex 11329 0.0254079 0.10205 -0.0180571 Vertex 11330 -0.000173892 0.120963 -0.0122496 Vertex 11331 -0.0629554 0.156782 -0.0386059 Vertex 11332 0.0262206 0.0435744 -0.00668237 Vertex 11333 0.0255358 0.0435625 -0.00763706 Vertex 11334 0.0246717 0.0434401 -0.00867806 Vertex 11335 0.0239407 0.0433254 -0.00969837 Vertex 11336 0.0231261 0.0431609 -0.0107258 Vertex 11337 0.0226739 0.0430625 -0.011732 Vertex 11338 0.0224202 0.0430392 -0.0127301 Vertex 11339 0.022253 0.0430673 -0.0137151 Vertex 11340 0.0220365 0.0430228 -0.0147268 Vertex 11341 0.0218787 0.0430332 -0.0157248 Vertex 11342 0.0216235 0.0430155 -0.0167288 Vertex 11343 0.0213756 0.0429924 -0.0177346 Vertex 11344 0.0210931 0.0429808 -0.0187308 Vertex 11345 0.0206459 0.0429683 -0.0197059 Vertex 11346 0.0200866 0.0429332 -0.0206714 Vertex 11347 0.0190867 0.0428243 -0.0216805 Vertex 11348 0.0169695 0.107204 -0.0175448 Vertex 11349 -0.0345377 0.0353482 -0.0311793 Vertex 11350 -0.0682478 0.066271 0.0282875 Vertex 11351 0.0418115 0.0872841 -0.00879032 Vertex 11352 -0.0748894 0.152721 -0.0218881 Vertex 11353 -0.0832173 0.13898 0.000315163 Vertex 11354 -0.0926193 0.122848 0.0312739 Vertex 11355 -0.00912597 0.168128 -0.0227626 Vertex 11356 -0.0628784 0.16149 -0.0515871 Vertex 11357 -0.0619039 0.16157 -0.0305885 Vertex 11358 -0.0132739 0.162396 -0.014817 Vertex 11359 -0.0632815 0.159908 -0.0475928 Vertex 11360 -0.0628145 0.169399 -0.0485883 Vertex 11361 -0.00951883 0.17115 -0.0217635 Vertex 11362 -0.0101059 0.171125 -0.0207965 Vertex 11363 0.0418505 0.0929433 -0.00581175 Vertex 11364 -0.0616576 0.170967 -0.0555865 Vertex 11365 -0.0520495 0.147795 0.0183962 Vertex 11366 -0.0853298 0.111023 0.0405559 Vertex 11367 -0.0745076 0.115686 0.0517763 Vertex 11368 -0.0547119 0.146209 0.0284156 Vertex 11369 0.0412738 0.0872408 -0.00977382 Vertex 11370 -0.0486667 0.134012 0.00340208 Vertex 11371 -0.0482843 0.133992 0.00441773 Vertex 11372 0.042476 0.0986857 0.0211679 Vertex 11373 -0.0485461 0.135607 0.0194861 Vertex 11374 -0.051883 0.143128 0.0183637 Vertex 11375 -0.0884532 0.112251 0.0353052 Vertex 11376 -0.0616227 0.156855 -0.0295846 Vertex 11377 -0.0481741 0.135565 0.0182752 Vertex 11378 -0.00920453 0.175559 -0.0287981 Vertex 11379 0.0406445 0.0871881 -0.0107716 Vertex 11380 -0.0850528 0.0993835 -0.000573805 Vertex 11381 -0.0656034 0.0619186 0.0220381 Vertex 11382 -0.0187325 0.0374026 0.0529482 Vertex 11383 -0.00980958 0.166665 -0.0207735 Vertex 11384 0.0429603 0.0873797 -0.00580114 Vertex 11385 -0.063101 0.150495 -0.0266018 Vertex 11386 0.0437475 0.087439 -0.00380588 Vertex 11387 0.0532979 0.0476993 0.0202039 Vertex 11388 0.0537831 0.0477401 0.0192041 Vertex 11389 0.0541381 0.0477755 0.0182012 Vertex 11390 0.0541559 0.0477549 0.017206 Vertex 11391 0.0543739 0.0477987 0.0161989 Vertex 11392 0.0545899 0.0478435 0.0151974 Vertex 11393 0.0546992 0.0478618 0.0141962 Vertex 11394 0.0546976 0.0478581 0.0131951 Vertex 11395 0.0546048 0.0478149 0.0122009 Vertex 11396 0.0545544 0.0478595 0.011201 Vertex 11397 0.0544139 0.0478718 0.0102055 Vertex 11398 0.0542552 0.0478973 0.00920996 Vertex 11399 0.0539053 0.0478505 0.00821457 Vertex 11400 0.0535575 0.0477942 0.0072134 Vertex 11401 0.0531328 0.0476715 0.00620176 Vertex 11402 0.0528827 0.0476533 0.00520477 Vertex 11403 0.0526059 0.0476644 0.00422036 Vertex 11404 0.0522007 0.0476683 0.00324556 Vertex 11405 0.0515873 0.047616 0.00226708 Vertex 11406 0.0506418 0.0475027 0.0012667 Vertex 11407 0.0498828 0.0474685 0.000307011 Vertex 11408 0.0488619 0.047436 -0.000620948 Vertex 11409 0.0464132 0.0472054 -0.00271728 Vertex 11410 0.038459 0.094268 -0.00974763 Vertex 11411 0.0221547 0.0979182 -0.0216266 Vertex 11412 0.0445162 0.087501 -0.00181141 Vertex 11413 -0.00222052 0.117102 -0.0161156 Vertex 11414 0.0272261 0.0451183 -0.00768323 Vertex 11415 0.0267163 0.0450608 -0.00869474 Vertex 11416 0.0264125 0.0450979 -0.0096842 Vertex 11417 0.0260285 0.0450625 -0.0106845 Vertex 11418 0.0256365 0.0450396 -0.0116814 Vertex 11419 0.0250139 0.0449606 -0.012685 Vertex 11420 0.0242611 0.0448626 -0.0136813 Vertex 11421 0.0228667 0.0444458 -0.0147763 Vertex 11422 0.0225489 0.0444802 -0.0157666 Vertex 11423 0.0221671 0.0444704 -0.016762 Vertex 11424 0.0217692 0.0444645 -0.0177596 Vertex 11425 0.0214237 0.0444841 -0.0187153 Vertex 11426 0.021025 0.0444507 -0.0197096 Vertex 11427 0.0204505 0.044377 -0.0207645 Vertex 11428 0.0197334 0.044328 -0.0216983 Vertex 11429 0.0301337 0.0958138 -0.0174156 Vertex 11430 0.050676 0.0693821 0.00244948 Vertex 11431 -0.0628659 0.161473 -0.0525859 Vertex 11432 0.0555907 0.0604655 -0.000426808 Vertex 11433 -0.022965 0.108799 -0.0212234 Vertex 11434 -0.0896074 0.135171 0.0322127 Vertex 11435 -0.0926054 0.122844 0.0302746 Vertex 11436 -0.0926446 0.122835 0.02928 Vertex 11437 -0.0625045 0.160053 -0.0215634 Vertex 11438 -0.0619246 0.161563 -0.0295917 Vertex 11439 -0.0135011 0.162185 -0.0138332 Vertex 11440 -0.013526 0.162053 -0.0127433 Vertex 11441 -0.0625469 0.169393 -0.0495927 Vertex 11442 -0.00886294 0.171168 -0.0237423 Vertex 11443 -0.0091676 0.171172 -0.0227371 Vertex 11444 -0.0613803 0.17096 -0.0575947 Vertex 11445 -0.0615083 0.170965 -0.0565878 Vertex 11446 -0.0580149 0.0675718 0.0363481 Vertex 11447 -0.0523396 0.147791 0.0193952 Vertex 11448 -0.0639979 0.158311 -0.048587 Vertex 11449 -0.0633822 0.164679 -0.0305938 Vertex 11450 -0.0537237 0.147766 0.0244131 Vertex 11451 -0.0533301 0.1416 0.0264013 Vertex 11452 -0.0489909 0.133982 0.00241474 Vertex 11453 -0.0468429 0.132502 0.00641278 Vertex 11454 -0.0493716 0.143224 0.00839291 Vertex 11455 -0.0690863 0.0666121 0.0278101 Vertex 11456 -0.062693 0.156802 -0.0376031 Vertex 11457 -0.0297799 0.106834 -0.0211406 Vertex 11458 -0.0835905 0.112379 0.0452164 Vertex 11459 -0.0644851 0.0755505 0.0404189 Vertex 11460 -0.053883 0.150856 0.0253998 Vertex 11461 -0.0631402 0.158352 -0.0425984 Vertex 11462 -0.0361903 0.151017 -0.000604378 Vertex 11463 -0.0624362 0.150651 -0.0105777 Vertex 11464 -0.0624126 0.150651 -0.0115734 Vertex 11465 -0.0622911 0.150653 -0.0125749 Vertex 11466 -0.0615844 0.155311 -0.0225818 Vertex 11467 -0.0332242 0.152554 -0.00262082 Vertex 11468 -0.062838 0.153641 -0.0115615 Vertex 11469 0.0542673 0.0491964 0.0212031 Vertex 11470 0.0548799 0.0492406 0.0202107 Vertex 11471 0.0553645 0.0492819 0.0192078 Vertex 11472 0.0556876 0.0493473 0.0181935 Vertex 11473 0.0558148 0.0493476 0.0171957 Vertex 11474 0.0558223 0.0493444 0.0161931 Vertex 11475 0.056025 0.0493916 0.0151904 Vertex 11476 0.0561422 0.049398 0.0141897 Vertex 11477 0.0561478 0.0493933 0.0131905 Vertex 11478 0.0561271 0.0494063 0.0121912 Vertex 11479 0.0561175 0.0494119 0.0111925 Vertex 11480 0.0559734 0.0494153 0.0101945 Vertex 11481 0.0558337 0.0494217 0.00919997 Vertex 11482 0.0556221 0.0493651 0.00819776 Vertex 11483 0.0553932 0.0493283 0.0071983 Vertex 11484 0.0552084 0.0493743 0.00621284 Vertex 11485 0.0547499 0.0492946 0.00521444 Vertex 11486 0.0543559 0.049285 0.0042337 Vertex 11487 0.0537671 0.0492093 0.00323447 Vertex 11488 0.0531496 0.0491587 0.00225551 Vertex 11489 0.0524062 0.0491022 0.00128138 Vertex 11490 0.0514482 0.0490026 0.000289284 Vertex 11491 0.0504722 0.048918 -0.000684915 Vertex 11492 0.0495034 0.0488243 -0.00166079 Vertex 11493 0.0484396 0.0486951 -0.00266239 Vertex 11494 0.0408807 0.0948081 -0.00628698 Vertex 11495 -0.0828517 0.110648 0.028886 Vertex 11496 0.0289827 0.0467369 -0.00766304 Vertex 11497 0.0283692 0.0466516 -0.00870467 Vertex 11498 0.0280707 0.046664 -0.00969251 Vertex 11499 0.0277468 0.0465681 -0.0107176 Vertex 11500 0.0275877 0.0465825 -0.0117097 Vertex 11501 0.0272051 0.0465425 -0.0127095 Vertex 11502 0.0268226 0.046511 -0.0137061 Vertex 11503 0.0265924 0.0466157 -0.0146569 Vertex 11504 0.0260064 0.0465031 -0.0156607 Vertex 11505 0.0252085 0.0464911 -0.0166174 Vertex 11506 0.0226111 0.0458717 -0.017849 Vertex 11507 0.0217639 0.0458254 -0.0188683 Vertex 11508 0.0211703 0.0458979 -0.0197309 Vertex 11509 0.0203688 0.0459169 -0.020834 Vertex 11510 0.00442197 0.11861 -0.0157775 Vertex 11511 -0.01565 0.10151 -0.0235687 Vertex 11512 0.0212923 0.0982999 -0.0220426 Vertex 11513 -0.000266462 0.0936214 -0.0332218 Vertex 11514 -0.0241067 0.108647 -0.0210644 Vertex 11515 -0.0915859 0.128175 0.00825933 Vertex 11516 -0.0926373 0.122856 0.0322729 Vertex 11517 -0.0778403 0.10982 0.0432074 Vertex 11518 -0.0620402 0.161574 -0.0285866 Vertex 11519 -0.0625942 0.153749 -0.0125838 Vertex 11520 -0.0623698 0.169401 -0.0505859 Vertex 11521 -0.0625301 0.147537 -0.0105732 Vertex 11522 -0.00864981 0.171144 -0.0247734 Vertex 11523 0.0453844 0.091806 0.0121583 Vertex 11524 -0.0894331 0.150114 0.0121902 Vertex 11525 -0.0700516 0.177913 -0.0570165 Vertex 11526 -0.0525858 0.147787 0.0204037 Vertex 11527 -0.0636646 0.15831 -0.045603 Vertex 11528 -0.0622523 0.152181 -0.0215758 Vertex 11529 -0.0620187 0.175667 -0.057604 Vertex 11530 -0.0523892 0.141597 0.0213852 Vertex 11531 -0.0869096 0.111745 0.0223587 Vertex 11532 -0.0849795 0.0952966 -0.00257745 Vertex 11533 -0.0495225 0.143222 0.00950726 Vertex 11534 -0.0656099 0.0655077 0.0295065 Vertex 11535 -0.0785045 0.111148 0.0455755 Vertex 11536 -0.094215 0.120106 0.0172864 Vertex 11537 -0.0621937 0.156854 -0.0175927 Vertex 11538 -0.0541984 0.150844 0.02639 Vertex 11539 -0.0517714 0.14934 0.0163945 Vertex 11540 -0.0522155 0.149331 0.0183918 Vertex 11541 -0.0542038 0.149302 0.0263885 Vertex 11542 -0.0284871 0.0932302 -0.0255941 Vertex 11543 -0.0631749 0.149 -0.0205832 Vertex 11544 -0.0517809 0.138537 0.023394 Vertex 11545 -0.0512844 0.138511 0.0223666 Vertex 11546 -0.0612049 0.174131 -0.0607222 Vertex 11547 0.055706 0.0507437 0.0211984 Vertex 11548 0.0562825 0.0508178 0.0201866 Vertex 11549 0.0565626 0.0508082 0.0192018 Vertex 11550 0.0567976 0.0508328 0.0181941 Vertex 11551 0.0569923 0.0508892 0.0171854 Vertex 11552 0.0570161 0.0508675 0.0161892 Vertex 11553 0.0571307 0.0508797 0.0151878 Vertex 11554 0.0572481 0.0508905 0.0141872 Vertex 11555 0.0572432 0.0508915 0.0131865 Vertex 11556 0.0572429 0.0508905 0.0121849 Vertex 11557 0.0572117 0.0509068 0.011186 Vertex 11558 0.0570851 0.0508934 0.0101876 Vertex 11559 0.0569539 0.0508846 0.00918952 Vertex 11560 0.0567195 0.0508531 0.00818949 Vertex 11561 0.0565843 0.0508466 0.00719292 Vertex 11562 0.0563061 0.0508424 0.00620646 Vertex 11563 0.0559507 0.0508031 0.00520531 Vertex 11564 0.055466 0.0507517 0.00421414 Vertex 11565 0.0549036 0.0506667 0.00319831 Vertex 11566 0.0542609 0.050631 0.00222604 Vertex 11567 0.0535386 0.0505579 0.00123438 Vertex 11568 0.0527925 0.0505032 0.000257908 Vertex 11569 0.0516179 0.0503639 -0.000756444 Vertex 11570 0.05074 0.0503045 -0.00171178 Vertex 11571 0.0496613 0.0501912 -0.00270335 Vertex 11572 -0.0297834 0.121969 -0.0069874 Vertex 11573 0.0115331 0.101889 -0.0218781 Vertex 11574 0.0293799 0.0892796 -0.0205263 Vertex 11575 0.0303629 0.0483136 -0.00765132 Vertex 11576 0.0296733 0.0481683 -0.00874324 Vertex 11577 0.0293044 0.0481199 -0.00974071 Vertex 11578 0.0290556 0.0480892 -0.0107335 Vertex 11579 0.0287818 0.0480764 -0.0117305 Vertex 11580 0.0285217 0.0480557 -0.0127278 Vertex 11581 0.0282711 0.0480264 -0.0137299 Vertex 11582 0.0279061 0.0479696 -0.0147397 Vertex 11583 0.0276827 0.0480336 -0.0156964 Vertex 11584 0.0271939 0.0479684 -0.0167032 Vertex 11585 0.0262642 0.0479348 -0.017662 Vertex 11586 0.0252198 0.0478964 -0.0186081 Vertex 11587 0.0233928 0.0475951 -0.0196868 Vertex 11588 0.0346496 0.0972102 -0.0129196 Vertex 11589 0.0517359 0.0693876 0.00244776 Vertex 11590 -0.0106759 0.119083 -0.0141801 Vertex 11591 -0.0118269 0.118985 -0.0140536 Vertex 11592 -0.00628506 0.0952929 -0.0329709 Vertex 11593 0.0401137 0.0933035 -0.00871241 Vertex 11594 -0.0753578 0.0671035 0.0137678 Vertex 11595 -0.0626481 0.167836 -0.0465871 Vertex 11596 -0.0627949 0.167828 -0.0455908 Vertex 11597 -0.042812 0.14778 0.00347562 Vertex 11598 0.0416778 0.102863 0.015161 Vertex 11599 -0.0622212 0.169401 -0.0515858 Vertex 11600 -0.0268485 0.0931277 -0.028596 Vertex 11601 0.0453179 0.0861686 0.00320477 Vertex 11602 -0.0681775 0.0762505 0.039044 Vertex 11603 -0.062107 0.163118 -0.0365927 Vertex 11604 -0.0334767 0.152548 -0.00159465 Vertex 11605 -0.0638193 0.158306 -0.0465978 Vertex 11606 -0.0686144 0.0632303 0.0220506 Vertex 11607 -0.0711187 0.0642492 0.0206358 Vertex 11608 -0.0483068 0.13712 0.0113971 Vertex 11609 -0.0520122 0.14159 0.0203687 Vertex 11610 -0.0478122 0.134031 0.00640478 Vertex 11611 -0.0614986 0.158424 -0.0305881 Vertex 11612 -0.0496377 0.143234 0.0104059 Vertex 11613 -0.0885037 0.114225 0.0283481 Vertex 11614 -0.0424386 0.147805 0.00141712 Vertex 11615 -0.0616053 0.156855 -0.0285887 Vertex 11616 -0.0536146 0.150855 0.0243962 Vertex 11617 -0.0520364 0.14934 0.0173988 Vertex 11618 -0.0484861 0.137101 0.00939484 Vertex 11619 -0.0486795 0.137079 0.00840446 Vertex 11620 -0.0465876 0.132486 0.00741919 Vertex 11621 -0.0521631 0.138551 0.0244099 Vertex 11622 -0.0499851 0.135487 0.00142097 Vertex 11623 -0.0495672 0.135498 0.00241956 Vertex 11624 -0.0661815 0.0615106 0.0205126 Vertex 11625 0.0567694 0.0522665 0.0211855 Vertex 11626 0.0572369 0.0523165 0.0201815 Vertex 11627 0.0575871 0.0523587 0.0191771 Vertex 11628 0.057752 0.0523416 0.0181873 Vertex 11629 0.0578529 0.0523616 0.0171842 Vertex 11630 0.057949 0.0523838 0.0161799 Vertex 11631 0.0580719 0.0523893 0.015182 Vertex 11632 0.0580945 0.0523756 0.014183 Vertex 11633 0.0581139 0.0523629 0.0131822 Vertex 11634 0.0581028 0.0523658 0.0121806 Vertex 11635 0.0580527 0.0523859 0.0111812 Vertex 11636 0.0579126 0.0523842 0.0101848 Vertex 11637 0.0577131 0.0523367 0.00917793 Vertex 11638 0.0575508 0.0523393 0.00818574 Vertex 11639 0.0573171 0.0523102 0.00718519 Vertex 11640 0.0570523 0.0522954 0.00619533 Vertex 11641 0.0567142 0.0522491 0.00518691 Vertex 11642 0.0562413 0.0521934 0.00418603 Vertex 11643 0.055733 0.052157 0.00319809 Vertex 11644 0.0551015 0.0521065 0.00221795 Vertex 11645 0.0544062 0.0520207 0.00120422 Vertex 11646 0.0537506 0.0519895 0.000247391 Vertex 11647 0.0527009 0.0518645 -0.000768796 Vertex 11648 0.0518069 0.0518147 -0.00170668 Vertex 11649 0.0493524 0.0516707 -0.00371978 Vertex 11650 0.0241275 0.120631 -0.00401437 Vertex 11651 -0.0913489 0.117296 0.00730629 Vertex 11652 -0.0384872 0.0337149 -0.0296051 Vertex 11653 0.0315596 0.0497964 -0.00774264 Vertex 11654 0.0309277 0.0497348 -0.00874 Vertex 11655 0.030443 0.0496674 -0.00974777 Vertex 11656 0.030267 0.0496887 -0.0107252 Vertex 11657 0.0300872 0.0497043 -0.0117138 Vertex 11658 0.029585 0.0495591 -0.0127459 Vertex 11659 0.0293305 0.049536 -0.0137505 Vertex 11660 0.0291366 0.0495584 -0.0147305 Vertex 11661 0.028771 0.0495105 -0.0157345 Vertex 11662 0.0282746 0.0494546 -0.0167442 Vertex 11663 0.0276856 0.0494518 -0.0176966 Vertex 11664 0.0269239 0.0493817 -0.018692 Vertex 11665 0.0260218 0.0493062 -0.0196675 Vertex 11666 0.0354105 0.0965418 -0.0122281 Vertex 11667 0.0322641 0.11194 -0.00663069 Vertex 11668 -0.0218558 0.120004 -0.0110164 Vertex 11669 -0.0197872 0.118912 -0.0118682 Vertex 11670 0.0260624 0.113339 -0.0101501 Vertex 11671 -0.00844255 0.0358982 -0.0250895 Vertex 11672 -0.0534525 0.116245 -0.0149003 Vertex 11673 0.0220864 0.122759 -0.00230579 Vertex 11674 -0.0610973 0.169393 -0.058599 Vertex 11675 -0.062524 0.167829 -0.0475902 Vertex 11676 -0.0484771 0.135525 0.0064169 Vertex 11677 0.0418026 0.102869 0.0141608 Vertex 11678 -0.0616117 0.16 -0.0305904 Vertex 11679 -0.062649 0.164698 -0.0365908 Vertex 11680 -0.049274 0.1386 0.00640083 Vertex 11681 -0.0086601 0.174145 -0.0268323 Vertex 11682 -0.0611161 0.170955 -0.0586033 Vertex 11683 -0.0627435 0.14749 -0.0135844 Vertex 11684 -0.0639569 0.158297 -0.0475943 Vertex 11685 -0.0901834 0.114057 0.0406088 Vertex 11686 -0.0493281 0.143211 0.0074004 Vertex 11687 -0.0528479 0.141625 0.0244146 Vertex 11688 -0.0474407 0.134003 0.00841493 Vertex 11689 0.0425653 0.0859482 -0.00679004 Vertex 11690 -0.0497918 0.143216 0.0113941 Vertex 11691 -0.0692156 0.0343564 -0.00463486 Vertex 11692 -0.0424144 0.147803 0.00244515 Vertex 11693 -0.0674148 0.142782 -0.0112266 Vertex 11694 -0.0615924 0.156857 -0.0275883 Vertex 11695 -0.0534094 0.150878 0.0234093 Vertex 11696 -0.062506 0.149124 -0.0145611 Vertex 11697 -0.0487556 0.137056 0.00741027 Vertex 11698 -0.0489579 0.137072 0.00640402 Vertex 11699 -0.0720422 0.15541 -0.0389078 Vertex 11700 -0.050582 0.13546 0.000440434 Vertex 11701 -0.0852004 0.111887 0.0434561 Vertex 11702 -0.054786 0.147744 0.027387 Vertex 11703 -0.0871174 0.110466 0.0103621 Vertex 11704 -0.0614723 0.15843 -0.0295877 Vertex 11705 0.0579592 0.0537863 0.0201793 Vertex 11706 0.058207 0.0538058 0.0191798 Vertex 11707 0.0583564 0.0538008 0.0181861 Vertex 11708 0.0584743 0.0538121 0.0171841 Vertex 11709 0.0585617 0.0538351 0.0161785 Vertex 11710 0.0585888 0.0538213 0.0151823 Vertex 11711 0.0587007 0.0538335 0.0141792 Vertex 11712 0.0587274 0.0538199 0.013179 Vertex 11713 0.0587826 0.0538552 0.0121765 Vertex 11714 0.0586626 0.0538435 0.0111779 Vertex 11715 0.0584482 0.0538047 0.0101717 Vertex 11716 0.0582887 0.0538074 0.00917936 Vertex 11717 0.0581415 0.0538012 0.00818348 Vertex 11718 0.0578211 0.0537494 0.00717652 Vertex 11719 0.0575548 0.053733 0.00618309 Vertex 11720 0.0571986 0.0536922 0.00517882 Vertex 11721 0.0567259 0.0536428 0.00417778 Vertex 11722 0.0562076 0.0536042 0.00319408 Vertex 11723 0.055585 0.0535517 0.00220948 Vertex 11724 0.0549839 0.0534895 0.00121219 Vertex 11725 0.0543638 0.0534389 0.000229046 Vertex 11726 0.0535495 0.0533436 -0.000784809 Vertex 11727 0.0528846 0.0533107 -0.0017243 Vertex 11728 0.0514754 0.0531199 -0.00283685 Vertex 11729 -0.00559979 0.114688 -0.0175182 Vertex 11730 -0.00457753 0.11466 -0.0174869 Vertex 11731 -0.0907853 0.117276 0.00630342 Vertex 11732 -0.0924969 0.121493 0.0302824 Vertex 11733 0.0321413 0.0513188 -0.0087021 Vertex 11734 0.0316471 0.05126 -0.00972402 Vertex 11735 0.0312336 0.051167 -0.0107736 Vertex 11736 0.0309109 0.0511672 -0.0117352 Vertex 11737 0.030542 0.0511254 -0.0127382 Vertex 11738 0.0301658 0.0510827 -0.0137422 Vertex 11739 0.0297926 0.0510441 -0.0147439 Vertex 11740 0.0294314 0.0509988 -0.0157519 Vertex 11741 0.0290438 0.0509642 -0.0167532 Vertex 11742 0.0285441 0.0509095 -0.0177614 Vertex 11743 0.0279176 0.0508447 -0.0187774 Vertex 11744 0.0271973 0.0508207 -0.0197147 Vertex 11745 0.0261922 0.0507168 -0.0207207 Vertex 11746 -0.0096155 0.119132 -0.0142361 Vertex 11747 -0.0154402 0.120098 -0.0111735 Vertex 11748 0.0330707 0.110451 -0.00703014 Vertex 11749 0.0275945 0.106191 -0.0144774 Vertex 11750 0.049575 0.0693171 0.00251779 Vertex 11751 -0.00531173 0.100039 -0.0239686 Vertex 11752 -0.0579079 0.121934 -0.00872095 Vertex 11753 -0.0288953 0.122588 -0.00566495 Vertex 11754 -0.0614844 0.158425 -0.031588 Vertex 11755 -0.0623783 0.167824 -0.0485899 Vertex 11756 -0.0486962 0.13553 0.00541025 Vertex 11757 -0.062967 0.159919 -0.044604 Vertex 11758 -0.0623736 0.164689 -0.0415928 Vertex 11759 -0.0624754 0.163097 -0.0475912 Vertex 11760 -0.0869607 0.111738 0.00633151 Vertex 11761 0.0454345 0.0918112 0.0111626 Vertex 11762 -0.0609822 0.170956 -0.0597011 Vertex 11763 -0.0544369 0.147753 0.0264091 Vertex 11764 -0.0595895 0.0659394 0.0339087 Vertex 11765 -0.0483417 0.137106 0.010396 Vertex 11766 -0.0530161 0.141613 0.0254095 Vertex 11767 -0.0475913 0.133999 0.00741747 Vertex 11768 -0.0391911 0.149452 0.000405422 Vertex 11769 0.0450277 0.0945898 0.0071675 Vertex 11770 -0.0515948 0.137023 0.025408 Vertex 11771 -0.0499986 0.143197 0.012378 Vertex 11772 -0.0786649 0.0764169 0.0296559 Vertex 11773 -0.0643301 0.156694 -0.0446094 Vertex 11774 -0.0086058 0.172644 -0.0268228 Vertex 11775 -0.0309118 0.10664 -0.0209245 Vertex 11776 -0.0614753 0.15686 -0.0265876 Vertex 11777 -0.0532839 0.150877 0.0224035 Vertex 11778 -0.0622926 0.149098 -0.0115749 Vertex 11779 -0.0491197 0.137061 0.00540677 Vertex 11780 -0.0493167 0.137038 0.00442458 Vertex 11781 -0.0530679 0.140053 0.026392 Vertex 11782 -0.0629975 0.158364 -0.0415982 Vertex 11783 0.042 0.102859 0.00616839 Vertex 11784 0.0399168 0.0999289 0.0271558 Vertex 11785 -0.053548 0.149321 0.0244145 Vertex 11786 0.058143 0.0551653 0.0211996 Vertex 11787 0.0584714 0.0552095 0.0201836 Vertex 11788 0.0586943 0.0552354 0.0191792 Vertex 11789 0.0588331 0.0552392 0.0181818 Vertex 11790 0.0589666 0.0552427 0.017183 Vertex 11791 0.0590653 0.0552605 0.0161784 Vertex 11792 0.0591616 0.0552765 0.0151753 Vertex 11793 0.0591992 0.0552614 0.014176 Vertex 11794 0.0592863 0.0552837 0.0131736 Vertex 11795 0.0592051 0.0552531 0.0121703 Vertex 11796 0.0591522 0.0552732 0.011174 Vertex 11797 0.0590094 0.0552651 0.0101755 Vertex 11798 0.0587961 0.055231 0.00916964 Vertex 11799 0.0585485 0.0552063 0.00817117 Vertex 11800 0.0583177 0.0551766 0.00716644 Vertex 11801 0.0579783 0.0551346 0.00616127 Vertex 11802 0.0576745 0.0551294 0.00518333 Vertex 11803 0.0572102 0.0550739 0.00417234 Vertex 11804 0.0566953 0.0550372 0.00319006 Vertex 11805 0.0560084 0.0549549 0.0021707 Vertex 11806 0.0554664 0.0549257 0.00120797 Vertex 11807 0.0547864 0.0548406 0.00018303 Vertex 11808 0.0541546 0.0547912 -0.000791322 Vertex 11809 0.0534041 0.0547278 -0.00176167 Vertex 11810 0.0523694 0.0545712 -0.00274385 Vertex 11811 -0.0146702 0.122522 -0.00773793 Vertex 11812 -0.0119972 0.115638 -0.0165051 Vertex 11813 -0.0942867 0.122796 0.0162787 Vertex 11814 -0.0916761 0.122705 0.00729331 Vertex 11815 0.0343906 0.0529675 -0.00763383 Vertex 11816 0.0333333 0.0528011 -0.00875184 Vertex 11817 0.032607 0.0527076 -0.00976892 Vertex 11818 0.0320794 0.0526694 -0.0107538 Vertex 11819 0.0315143 0.0525771 -0.0117816 Vertex 11820 0.0312129 0.0525777 -0.012761 Vertex 11821 0.0308153 0.0525508 -0.0137522 Vertex 11822 0.0303873 0.0525299 -0.0147333 Vertex 11823 0.0299175 0.0524736 -0.0157475 Vertex 11824 0.0295344 0.0524338 -0.0167463 Vertex 11825 0.0290611 0.0523826 -0.0177704 Vertex 11826 0.0285377 0.0523356 -0.0187697 Vertex 11827 0.0278721 0.0522836 -0.0197543 Vertex 11828 0.0267286 0.0521731 -0.0207566 Vertex 11829 -0.0276563 0.12199 -0.007026 Vertex 11830 -0.0129236 0.118879 -0.0139348 Vertex 11831 -0.0140717 0.118746 -0.0137718 Vertex 11832 -0.0151271 0.118705 -0.0137294 Vertex 11833 -0.0297618 0.107877 -0.0202294 Vertex 11834 0.0111597 0.124256 -0.00791398 Vertex 11835 0.00739517 0.116252 -0.017256 Vertex 11836 -0.0133966 0.121962 -0.00916065 Vertex 11837 0.0456129 0.0904097 0.00518194 Vertex 11838 0.0456518 0.0904151 0.00617296 Vertex 11839 -0.062208 0.167823 -0.0505845 Vertex 11840 -0.0622359 0.167822 -0.0495929 Vertex 11841 -0.0620392 0.152203 -0.0175795 Vertex 11842 -0.0629538 0.164686 -0.0335942 Vertex 11843 -0.0946899 0.124172 0.0202666 Vertex 11844 -0.008712 0.171156 -0.0257232 Vertex 11845 -0.0638693 0.170945 -0.0476012 Vertex 11846 -0.0632339 0.164684 -0.0315914 Vertex 11847 -0.06359 0.153594 -0.035633 Vertex 11848 -0.0532397 0.146242 0.0224016 Vertex 11849 0.0426847 0.0986805 0.020158 Vertex 11850 -0.0482356 0.137094 0.0133979 Vertex 11851 -0.0640892 0.172567 -0.049571 Vertex 11852 0.0444762 0.0945372 0.00319063 Vertex 11853 -0.0511988 0.137011 0.0243968 Vertex 11854 -0.0502712 0.143189 0.0133798 Vertex 11855 -0.0759578 0.071995 0.0287387 Vertex 11856 -0.0640597 0.156709 -0.043612 Vertex 11857 -0.0813623 0.104616 -0.00457868 Vertex 11858 0.0455252 0.0918117 0.00617298 Vertex 11859 -0.0614699 0.156861 -0.0255852 Vertex 11860 -0.0623894 0.149097 -0.0105741 Vertex 11861 -0.0624074 0.1491 -0.0095736 Vertex 11862 -0.0930586 0.122743 0.0102788 Vertex 11863 -0.0623027 0.152202 -0.0135791 Vertex 11864 -0.0863384 0.102179 0.00442425 Vertex 11865 0.044965 0.0903773 0.0181662 Vertex 11866 -0.0144336 0.120974 -0.0101151 Vertex 11867 0.0585317 0.0565811 0.0212119 Vertex 11868 0.0589396 0.0566475 0.0201757 Vertex 11869 0.0590873 0.0566489 0.0191831 Vertex 11870 0.0592992 0.0566775 0.0181738 Vertex 11871 0.0595077 0.0567056 0.0171693 Vertex 11872 0.0595665 0.0566863 0.0161765 Vertex 11873 0.0596848 0.0566967 0.0151763 Vertex 11874 0.0597604 0.0567164 0.0141707 Vertex 11875 0.0597918 0.0567046 0.013171 Vertex 11876 0.0597837 0.0567045 0.0121686 Vertex 11877 0.0597511 0.0567143 0.0111681 Vertex 11878 0.0595997 0.0567108 0.0101713 Vertex 11879 0.0593671 0.0566851 0.00917266 Vertex 11880 0.0591195 0.05666 0.00817454 Vertex 11881 0.0588535 0.0566417 0.00718098 Vertex 11882 0.058528 0.0565928 0.00617045 Vertex 11883 0.0581659 0.056561 0.00517446 Vertex 11884 0.0577561 0.0565381 0.00419435 Vertex 11885 0.0572046 0.0564633 0.00317356 Vertex 11886 0.0565751 0.0564133 0.00219071 Vertex 11887 0.0559661 0.0563559 0.00119345 Vertex 11888 0.0553414 0.0563023 0.000211666 Vertex 11889 0.054626 0.0562289 -0.00078591 Vertex 11890 0.053783 0.0561466 -0.00178141 Vertex 11891 0.0528986 0.056075 -0.00272531 Vertex 11892 -0.0346229 0.116833 -0.0136016 Vertex 11893 -0.0887889 0.117194 0.003272 Vertex 11894 -0.0944779 0.122838 0.0232837 Vertex 11895 0.0196586 0.112307 -0.0150514 Vertex 11896 0.0355326 0.0544702 -0.00765701 Vertex 11897 0.0347163 0.0544411 -0.00865089 Vertex 11898 0.033772 0.0543003 -0.00971113 Vertex 11899 0.0329392 0.0541774 -0.0107445 Vertex 11900 0.0324154 0.0541402 -0.0117355 Vertex 11901 0.0318353 0.0540522 -0.0127622 Vertex 11902 0.0314991 0.054058 -0.0137198 Vertex 11903 0.0309191 0.0539829 -0.0147501 Vertex 11904 0.0302987 0.0539206 -0.0157566 Vertex 11905 0.0297243 0.0538559 -0.0167895 Vertex 11906 0.0292997 0.0538256 -0.0177694 Vertex 11907 0.0287562 0.053781 -0.0187512 Vertex 11908 0.0278843 0.0536982 -0.0197695 Vertex 11909 0.0265706 0.0535806 -0.0207269 Vertex 11910 -0.0294891 0.119549 -0.0104626 Vertex 11911 -0.0248096 0.123255 -0.00440954 Vertex 11912 -0.0225266 0.123574 -0.00478676 Vertex 11913 0.00646008 0.118492 -0.0156628 Vertex 11914 0.0258363 0.0844839 -0.0235493 Vertex 11915 -0.0375944 0.116238 -0.0149818 Vertex 11916 -0.00874782 0.125791 -0.00734235 Vertex 11917 -0.0919625 0.126955 0.0342506 Vertex 11918 -0.0928438 0.126838 0.0112559 Vertex 11919 0.0456884 0.0904192 0.00716979 Vertex 11920 0.0425976 0.0887597 -0.00680771 Vertex 11921 -0.0621056 0.167818 -0.0515918 Vertex 11922 -0.0623557 0.152158 -0.0235797 Vertex 11923 -0.0621803 0.161575 -0.027587 Vertex 11924 -0.0627141 0.159943 -0.0425974 Vertex 11925 -0.0616059 0.160004 -0.0295877 Vertex 11926 -0.0788477 0.0773102 0.0306071 Vertex 11927 -0.083926 0.0775674 0.0187821 Vertex 11928 0.0428837 0.0887839 -0.00581701 Vertex 11929 -0.0618767 0.15376 -0.0175826 Vertex 11930 -0.0530392 0.146248 0.021397 Vertex 11931 0.0457562 0.0904226 0.00816981 Vertex 11932 -0.0635915 0.172518 -0.0506017 Vertex 11933 -0.0882052 0.0955366 0.00643448 Vertex 11934 -0.0759561 0.112612 -0.00567952 Vertex 11935 -0.062341 0.164692 -0.0435908 Vertex 11936 -0.0508742 0.137048 0.0234112 Vertex 11937 -0.050513 0.143196 0.0143929 Vertex 11938 -0.0301736 0.0353405 0.0506988 Vertex 11939 -0.0638349 0.156748 -0.0426051 Vertex 11940 -0.0820994 0.104661 -0.00359906 Vertex 11941 0.0449566 0.0931917 0.0141646 Vertex 11942 -0.0625738 0.156865 -0.0165766 Vertex 11943 -0.0530342 0.15087 0.0203968 Vertex 11944 -0.0867701 0.113047 0.00428618 Vertex 11945 -0.0624427 0.149095 -0.00857615 Vertex 11946 -0.0937199 0.12277 0.0132819 Vertex 11947 -0.0631468 0.156791 -0.0395997 Vertex 11948 0.0432229 0.0888059 -0.00480108 Vertex 11949 -0.0627916 0.150662 -0.00757045 Vertex 11950 -0.076903 0.112654 -0.00467049 Vertex 11951 0.0589255 0.0580383 0.0211692 Vertex 11952 0.0592303 0.0580467 0.0201933 Vertex 11953 0.0595629 0.058084 0.0191786 Vertex 11954 0.0597169 0.0580863 0.0181825 Vertex 11955 0.0599261 0.0581121 0.0171753 Vertex 11956 0.0600492 0.0581198 0.0161748 Vertex 11957 0.0601522 0.0581329 0.0151721 Vertex 11958 0.0602482 0.0581464 0.0141691 Vertex 11959 0.060278 0.0581371 0.013168 Vertex 11960 0.0603506 0.0581587 0.0121666 Vertex 11961 0.060267 0.0581373 0.011162 Vertex 11962 0.0601313 0.0581272 0.0101639 Vertex 11963 0.0598737 0.0581052 0.00916393 Vertex 11964 0.0596228 0.0581166 0.00817617 Vertex 11965 0.0593748 0.0580631 0.00716733 Vertex 11966 0.059111 0.0580409 0.00617531 Vertex 11967 0.0587584 0.0580034 0.00517536 Vertex 11968 0.0582707 0.0579579 0.00417743 Vertex 11969 0.0577493 0.0579199 0.00320063 Vertex 11970 0.0570719 0.0578424 0.00217676 Vertex 11971 0.0564669 0.0577845 0.00118215 Vertex 11972 0.0557398 0.0577143 0.000186064 Vertex 11973 0.0550864 0.0576626 -0.000774412 Vertex 11974 -0.0289695 0.0380956 -0.0297496 Vertex 11975 -0.0641179 0.115013 -0.0114251 Vertex 11976 -0.087862 0.117151 0.00226309 Vertex 11977 -0.0942376 0.122836 0.024283 Vertex 11978 -0.0456556 0.126096 -0.00729728 Vertex 11979 0.0363562 0.0559126 -0.00774494 Vertex 11980 0.035799 0.0558975 -0.00871505 Vertex 11981 0.0351777 0.0559301 -0.00964394 Vertex 11982 0.0340769 0.0556934 -0.0107486 Vertex 11983 0.0336268 0.0557054 -0.0117007 Vertex 11984 0.0328851 0.0556122 -0.0127142 Vertex 11985 0.0319954 0.0554568 -0.0137989 Vertex 11986 0.0313289 0.0554154 -0.0147753 Vertex 11987 0.0305588 0.055351 -0.0157687 Vertex 11988 0.029856 0.0552774 -0.0168073 Vertex 11989 0.0292061 0.055224 -0.0177993 Vertex 11990 0.0285713 0.0551672 -0.0188053 Vertex 11991 0.0275533 0.0550749 -0.019815 Vertex 11992 0.025364 0.0547555 -0.0216571 Vertex 11993 0.0247051 0.054807 -0.022754 Vertex 11994 0.0240844 0.0547426 -0.0237664 Vertex 11995 -0.0201946 0.0918367 -0.0355405 Vertex 11996 0.00748229 0.118415 -0.0155852 Vertex 11997 -0.0198084 0.119865 -0.0108751 Vertex 11998 0.0127783 0.105278 -0.0195273 Vertex 11999 -0.0814183 0.138999 -0.00180871 Vertex 12000 -0.0855476 0.136296 0.00125685 Vertex 12001 -0.0932173 0.122834 0.0272862 Vertex 12002 -0.0149026 0.105901 -0.0222117 Vertex 12003 -0.0179932 0.0940702 -0.0337993 Vertex 12004 -0.0647036 0.0653044 0.0298737 Vertex 12005 -0.0878362 0.112676 0.0422322 Vertex 12006 0.0456774 0.0904203 0.00916591 Vertex 12007 -0.062275 0.152174 -0.0245791 Vertex 12008 0.0390548 0.0884875 -0.0128108 Vertex 12009 -0.0627318 0.159944 -0.0435973 Vertex 12010 -0.0619877 0.169385 -0.052596 Vertex 12011 -0.091122 0.115466 0.0410527 Vertex 12012 -0.0522361 0.15086 0.0163848 Vertex 12013 -0.0620309 0.153757 -0.0155846 Vertex 12014 -0.0523224 0.146252 0.0184018 Vertex 12015 -0.08743 0.111796 0.0214228 Vertex 12016 -0.0856264 0.110331 0.00634317 Vertex 12017 -0.049383 0.140141 0.0133936 Vertex 12018 -0.0886543 0.102345 0.0123871 Vertex 12019 -0.0762229 0.149992 -0.0128764 Vertex 12020 -0.0278526 0.181478 -0.0120494 Vertex 12021 -0.0623326 0.164687 -0.0445921 Vertex 12022 -0.050774 0.143198 0.0153986 Vertex 12023 -0.0292631 0.0351386 0.0510616 Vertex 12024 -0.0636754 0.156752 -0.0416076 Vertex 12025 -0.0825014 0.0978733 -0.00561152 Vertex 12026 0.0449079 0.0931824 0.0151569 Vertex 12027 -0.0627692 0.156841 -0.0155919 Vertex 12028 -0.0631555 0.156855 -0.014582 Vertex 12029 -0.0757616 0.109947 0.0435791 Vertex 12030 -0.0625369 0.149102 -0.00757295 Vertex 12031 -0.067993 0.0619274 0.01978 Vertex 12032 -0.0773226 0.108517 -0.00660544 Vertex 12033 -0.0817139 0.108721 -0.00159489 Vertex 12034 -0.0625159 0.163122 -0.0305925 Vertex 12035 0.0403239 0.0999619 0.0261672 Vertex 12036 0.0591828 0.0594427 0.0211715 Vertex 12037 0.0595491 0.0594739 0.0201736 Vertex 12038 0.0597447 0.0594744 0.0191904 Vertex 12039 0.0600207 0.0595165 0.0181686 Vertex 12040 0.0601893 0.0595178 0.0171788 Vertex 12041 0.0603913 0.0595429 0.0161691 Vertex 12042 0.0604945 0.0595549 0.015166 Vertex 12043 0.0605521 0.0595441 0.0141714 Vertex 12044 0.0606526 0.0595573 0.0131644 Vertex 12045 0.0607493 0.059571 0.0121639 Vertex 12046 0.0606492 0.0595518 0.0111602 Vertex 12047 0.0605105 0.0595417 0.010156 Vertex 12048 0.0603447 0.0595379 0.00916361 Vertex 12049 0.0600963 0.059514 0.00816569 Vertex 12050 0.059772 0.0594746 0.00715469 Vertex 12051 0.0594886 0.0594575 0.00616841 Vertex 12052 0.0591439 0.0594194 0.00516163 Vertex 12053 0.0587589 0.059387 0.00417226 Vertex 12054 0.0582234 0.0593447 0.00320204 Vertex 12055 0.0575358 0.0592738 0.00218909 Vertex 12056 0.0568425 0.0592039 0.0011688 Vertex 12057 0.0560899 0.059136 0.000193317 Vertex 12058 0.0553821 0.0590684 -0.000816519 Vertex 12059 -0.0518774 0.104165 -0.0200373 Vertex 12060 -0.0659757 0.132606 -0.00839654 Vertex 12061 -0.092065 0.118755 0.0273051 Vertex 12062 0.037704 0.0574555 -0.00668675 Vertex 12063 0.0372794 0.0574491 -0.00767997 Vertex 12064 0.0366139 0.0573407 -0.00875458 Vertex 12065 0.0360298 0.0573371 -0.00970954 Vertex 12066 0.0354668 0.0573224 -0.0106723 Vertex 12067 0.0345459 0.0571781 -0.011728 Vertex 12068 0.0338991 0.057119 -0.0127141 Vertex 12069 0.0331357 0.0570437 -0.0137102 Vertex 12070 0.0319374 0.0568888 -0.0147656 Vertex 12071 0.0308479 0.0567691 -0.0158074 Vertex 12072 0.030053 0.0567138 -0.0167759 Vertex 12073 0.0292004 0.0566287 -0.0178044 Vertex 12074 0.0284708 0.0565571 -0.0188308 Vertex 12075 0.0276189 0.0564968 -0.0197599 Vertex 12076 0.0266313 0.0563972 -0.0207832 Vertex 12077 0.0258436 0.0563286 -0.0217568 Vertex 12078 0.0251101 0.0562501 -0.0227775 Vertex 12079 0.0245832 0.0562081 -0.0237654 Vertex 12080 0.0239341 0.0561524 -0.0247597 Vertex 12081 0.0112198 0.0932651 -0.0287439 Vertex 12082 0.0237606 0.105983 -0.0162548 Vertex 12083 -0.018823 0.121694 -0.0088173 Vertex 12084 -0.0774116 0.159696 -0.0249188 Vertex 12085 0.00312416 0.107287 -0.0203844 Vertex 12086 -0.0928746 0.122834 0.0282828 Vertex 12087 0.0456485 0.0904179 0.0101632 Vertex 12088 -0.034174 0.107559 -0.0198979 Vertex 12089 -0.0623817 0.147548 -0.00757469 Vertex 12090 -0.0668021 0.0909191 -0.0174744 Vertex 12091 0.0455601 0.0904134 0.011166 Vertex 12092 -0.0839267 0.145982 0.00417548 Vertex 12093 0.0441984 0.0917353 0.0221589 Vertex 12094 -0.0620707 0.163126 -0.0385937 Vertex 12095 -0.0618524 0.169383 -0.0535961 Vertex 12096 -0.0860649 0.0994533 0.00140442 Vertex 12097 -0.0853556 0.095327 -0.00158429 Vertex 12098 -0.0623027 0.153756 -0.0145815 Vertex 12099 -0.0693902 0.0672718 0.0289371 Vertex 12100 0.00821621 0.124741 -0.00840458 Vertex 12101 -0.0510928 0.12386 -0.00885828 Vertex 12102 -0.0629712 0.145905 -0.0115915 Vertex 12103 -0.0815177 0.106 -0.00361682 Vertex 12104 -0.0927009 0.117475 0.0353038 Vertex 12105 -0.0896998 0.137926 0.0341919 Vertex 12106 -0.0623408 0.164683 -0.0455908 Vertex 12107 -0.0500704 0.137041 0.0213927 Vertex 12108 -0.0509887 0.143164 0.0163768 Vertex 12109 -0.0283135 0.0350192 0.0513697 Vertex 12110 -0.0625323 0.1568 -0.0366082 Vertex 12111 -0.0623412 0.156794 -0.0356173 Vertex 12112 0.040909 0.0985658 0.0261474 Vertex 12113 -0.0622512 0.175627 -0.0566298 Vertex 12114 -0.0893296 0.0956153 0.0124232 Vertex 12115 -0.0492132 0.138613 0.0153977 Vertex 12116 -0.0231675 0.184436 -0.0160624 Vertex 12117 -0.0875073 0.0954698 0.00341799 Vertex 12118 -0.0621215 0.15372 -0.0285871 Vertex 12119 -0.0918084 0.11461 0.0202058 Vertex 12120 -0.0524198 0.0648658 0.0346087 Vertex 12121 0.041209 0.10285 0.0181659 Vertex 12122 -0.0907178 0.142015 0.0241681 Vertex 12123 0.059297 0.0608379 0.0211666 Vertex 12124 0.0595932 0.0608555 0.0201843 Vertex 12125 0.0598453 0.0608733 0.0191849 Vertex 12126 0.0600903 0.0608951 0.0181821 Vertex 12127 0.0603494 0.0609121 0.0171857 Vertex 12128 0.0605626 0.0609358 0.0161739 Vertex 12129 0.060666 0.0609482 0.0151682 Vertex 12130 0.0607571 0.0609589 0.0141669 Vertex 12131 0.0608603 0.0609709 0.0131614 Vertex 12132 0.0609039 0.0609671 0.0121585 Vertex 12133 0.060906 0.0609648 0.0111554 Vertex 12134 0.0608524 0.0609661 0.0101561 Vertex 12135 0.0606167 0.0609422 0.00915424 Vertex 12136 0.0603694 0.0609168 0.00815448 Vertex 12137 0.0601048 0.0608967 0.00715985 Vertex 12138 0.0597675 0.0609389 0.00613027 Vertex 12139 0.0594014 0.060828 0.00515272 Vertex 12140 0.0589179 0.0607855 0.00414854 Vertex 12141 0.0583839 0.0607371 0.00317993 Vertex 12142 0.0576507 0.0606695 0.00219201 Vertex 12143 0.0567415 0.0605855 0.00115011 Vertex 12144 0.0559458 0.0605187 0.000117677 Vertex 12145 -0.0809167 0.107332 -0.00361395 Vertex 12146 -0.0910269 0.129538 0.0072515 Vertex 12147 -0.0939252 0.118758 0.016301 Vertex 12148 0.0387477 0.0589461 -0.0057234 Vertex 12149 0.0383205 0.0589284 -0.00670105 Vertex 12150 0.0379552 0.0588939 -0.00773658 Vertex 12151 0.0375503 0.0588742 -0.00872526 Vertex 12152 0.0368613 0.0587703 -0.00975684 Vertex 12153 0.0361211 0.0586877 -0.0107678 Vertex 12154 0.0355639 0.058664 -0.0117324 Vertex 12155 0.0348936 0.0586201 -0.0127038 Vertex 12156 0.0340234 0.0585319 -0.0137143 Vertex 12157 0.0331444 0.0584441 -0.0147212 Vertex 12158 0.0320792 0.05838 -0.0156698 Vertex 12159 0.0306755 0.0581744 -0.0167704 Vertex 12160 0.0295964 0.0580473 -0.0178274 Vertex 12161 0.0289187 0.0580129 -0.0187889 Vertex 12162 0.0282135 0.0579727 -0.0197309 Vertex 12163 0.0273731 0.0578707 -0.0207586 Vertex 12164 0.026592 0.0578126 -0.0217526 Vertex 12165 0.0258208 0.0577421 -0.0227411 Vertex 12166 0.0249849 0.0576546 -0.0237943 Vertex 12167 0.0242735 0.0576737 -0.0247443 Vertex 12168 0.0312874 0.108108 -0.0105276 Vertex 12169 0.0270498 0.0919981 -0.0213752 Vertex 12170 -0.0264967 0.121204 -0.00819998 Vertex 12171 -0.093142 0.118716 0.0123041 Vertex 12172 -0.0933659 0.118725 0.0133024 Vertex 12173 -0.0835287 0.11032 0.027366 Vertex 12174 0.0451698 0.0903876 0.0161628 Vertex 12175 0.0450682 0.090383 0.0171641 Vertex 12176 -0.0895496 0.13918 0.0132126 Vertex 12177 -0.0765465 0.107865 0.0361429 Vertex 12178 -0.0680331 0.17369 -0.0570223 Vertex 12179 -0.0887169 0.125354 0.00227396 Vertex 12180 -0.0619851 0.167813 -0.0525933 Vertex 12181 -0.0888712 0.101031 0.0183836 Vertex 12182 -0.0616877 0.169385 -0.0545934 Vertex 12183 -0.0320486 0.122707 -0.00572396 Vertex 12184 -0.0616079 0.160003 -0.0285892 Vertex 12185 -0.0620171 0.153759 -0.016582 Vertex 12186 -0.0623508 0.146001 -0.00658982 Vertex 12187 0.0125423 0.120941 -0.012332 Vertex 12188 -0.0624894 0.163088 -0.0505885 Vertex 12189 -0.0938592 0.11877 0.0212975 Vertex 12190 0.026048 0.117275 -0.00637096 Vertex 12191 -0.0518659 0.144686 0.0163701 Vertex 12192 -0.0624255 0.16468 -0.0465913 Vertex 12193 -0.0496962 0.137023 0.0203775 Vertex 12194 -0.0513993 0.14316 0.0173798 Vertex 12195 -0.0272788 0.0350567 0.0515587 Vertex 12196 -0.0734823 0.0649094 0.0160661 Vertex 12197 -0.0621097 0.156825 -0.0345957 Vertex 12198 -0.0889438 0.137894 0.0261932 Vertex 12199 -0.0849712 0.111906 0.0292041 Vertex 12200 -0.0707786 0.0690222 0.0306409 Vertex 12201 -0.0486882 0.138613 0.0123943 Vertex 12202 -0.048671 0.138621 0.0113976 Vertex 12203 -0.052801 0.144689 0.0203903 Vertex 12204 -0.049226 0.14015 0.0123965 Vertex 12205 -0.0938276 0.126933 0.0242666 Vertex 12206 -0.0788576 0.105851 -0.00657974 Vertex 12207 -0.028606 0.0356961 0.0524615 Vertex 12208 0.0593092 0.0622231 0.0211664 Vertex 12209 0.0596824 0.0622541 0.020173 Vertex 12210 0.0599778 0.0622697 0.0191849 Vertex 12211 0.0602047 0.0622908 0.0181797 Vertex 12212 0.0604641 0.0623144 0.017179 Vertex 12213 0.0606845 0.0623337 0.0161711 Vertex 12214 0.060795 0.0623425 0.0151668 Vertex 12215 0.0608733 0.0623548 0.014161 Vertex 12216 0.0609114 0.0623534 0.0131596 Vertex 12217 0.0610023 0.062364 0.012157 Vertex 12218 0.0610091 0.0623122 0.0111052 Vertex 12219 0.0609087 0.0623561 0.0101482 Vertex 12220 0.0607459 0.0623413 0.0091502 Vertex 12221 0.0604856 0.0623173 0.00815473 Vertex 12222 0.0601642 0.0622865 0.0071402 Vertex 12223 0.0598096 0.0622539 0.00613597 Vertex 12224 0.0593665 0.0622129 0.00511321 Vertex 12225 0.0589161 0.0621713 0.00415053 Vertex 12226 0.0583787 0.0621209 0.00318289 Vertex 12227 0.0575354 0.0620414 0.00218896 Vertex 12228 0.0562981 0.0619429 0.0011209 Vertex 12229 -0.0776736 0.10169 -0.00957801 Vertex 12230 -0.0794787 0.104524 -0.00660043 Vertex 12231 -0.0817304 0.107364 -0.00260486 Vertex 12232 -0.067835 0.0951999 -0.016639 Vertex 12233 -0.0580744 0.136937 -0.00566118 Vertex 12234 0.0398205 0.0604422 -0.00479028 Vertex 12235 0.0393181 0.0603877 -0.00577734 Vertex 12236 0.0389134 0.0603588 -0.00677348 Vertex 12237 0.0386112 0.0603508 -0.0077511 Vertex 12238 0.0382147 0.0603208 -0.00873991 Vertex 12239 0.0377251 0.0602627 -0.00973714 Vertex 12240 0.0368862 0.0601656 -0.0107732 Vertex 12241 0.0363318 0.0601344 -0.0117401 Vertex 12242 0.0353685 0.0600237 -0.0127796 Vertex 12243 0.0346003 0.059954 -0.013776 Vertex 12244 0.0339055 0.0599168 -0.014725 Vertex 12245 0.0330579 0.0598189 -0.0157593 Vertex 12246 0.0322222 0.0597861 -0.0166881 Vertex 12247 0.0313723 0.0597573 -0.0175925 Vertex 12248 0.0295583 0.0594698 -0.0188239 Vertex 12249 0.0288023 0.0594063 -0.0198054 Vertex 12250 0.0281353 0.0593598 -0.0207767 Vertex 12251 0.0273613 0.0592959 -0.0217662 Vertex 12252 0.0264018 0.0591975 -0.0228202 Vertex 12253 0.0253341 0.0591059 -0.0237971 Vertex 12254 0.0179185 0.121996 -0.0074786 Vertex 12255 -0.0494965 0.11266 -0.0171746 Vertex 12256 -0.0859627 0.109007 0.009354 Vertex 12257 0.0206432 0.121117 -0.00652883 Vertex 12258 -0.0935937 0.118737 0.0143019 Vertex 12259 0.0147782 0.0929392 -0.0263979 Vertex 12260 -0.0939345 0.122834 0.0252963 Vertex 12261 -0.0925995 0.118805 0.0322947 Vertex 12262 0.0455409 0.0918154 0.00916522 Vertex 12263 -0.0619689 0.153737 -0.0245819 Vertex 12264 -0.0628795 0.15219 -0.00958093 Vertex 12265 -0.0854234 0.100771 0.000422318 Vertex 12266 -0.0628433 0.16149 -0.0495873 Vertex 12267 -0.011814 0.163592 -0.0157611 Vertex 12268 -0.0618453 0.155287 -0.0285878 Vertex 12269 -0.0615314 0.169388 -0.0555899 Vertex 12270 -0.0286194 0.180015 -0.014033 Vertex 12271 -0.0617587 0.160001 -0.0265888 Vertex 12272 -0.0618601 0.153758 -0.0185818 Vertex 12273 -0.0620348 0.146024 -0.00560988 Vertex 12274 -0.0617126 0.170956 -0.0545977 Vertex 12275 0.0428658 0.0623821 -0.00251673 Vertex 12276 -0.0896222 0.111892 0.015334 Vertex 12277 -0.0921157 0.118792 0.0303066 Vertex 12278 -0.058698 0.0349789 0.0448461 Vertex 12279 -0.0890965 0.111935 0.0113594 Vertex 12280 -0.0761401 0.0728821 0.0296904 Vertex 12281 -0.0494036 0.13704 0.0193807 Vertex 12282 -0.0523714 0.143148 0.0193902 Vertex 12283 -0.0526124 0.143167 0.0204083 Vertex 12284 -0.0728419 0.0642516 0.016748 Vertex 12285 -0.0615795 0.156866 -0.0245858 Vertex 12286 -0.0614886 0.156862 -0.0235899 Vertex 12287 -0.0271327 0.0917299 -0.030613 Vertex 12288 -0.0946719 0.122818 0.0192736 Vertex 12289 -0.0665119 0.0621274 0.0216726 Vertex 12290 -0.0800885 0.0739226 0.0209531 Vertex 12291 -0.0524448 0.149335 0.0194038 Vertex 12292 -0.0870404 0.113136 0.0295379 Vertex 12293 -0.0190143 0.123258 -0.00649836 Vertex 12294 -0.0512927 0.135429 -0.000552487 Vertex 12295 -0.0619747 0.170963 -0.0535908 Vertex 12296 0.0589314 0.0635744 0.022157 Vertex 12297 0.0593532 0.0636103 0.0211835 Vertex 12298 0.0597267 0.0636404 0.0201833 Vertex 12299 0.060067 0.0636708 0.0191758 Vertex 12300 0.0603322 0.0636924 0.0181801 Vertex 12301 0.0605691 0.0637105 0.0171755 Vertex 12302 0.060777 0.0637293 0.0161648 Vertex 12303 0.0608734 0.0637391 0.0151617 Vertex 12304 0.0608914 0.0637395 0.0141606 Vertex 12305 0.0609254 0.0637423 0.0131584 Vertex 12306 0.0610039 0.0637491 0.0121545 Vertex 12307 0.0609826 0.0637492 0.0111528 Vertex 12308 0.0607975 0.0637336 0.0101416 Vertex 12309 0.0606094 0.0637127 0.00915317 Vertex 12310 0.0602932 0.0636878 0.00814035 Vertex 12311 0.0600133 0.0636587 0.00714888 Vertex 12312 0.0595925 0.0636093 0.00613697 Vertex 12313 0.0592296 0.0635939 0.00512091 Vertex 12314 0.0587422 0.0635506 0.00411936 Vertex 12315 0.0582061 0.0634965 0.00313887 Vertex 12316 0.0573538 0.0634191 0.00214341 Vertex 12317 -0.0798641 0.145899 -0.00181913 Vertex 12318 -0.0867821 0.10632 0.010369 Vertex 12319 -0.0822334 0.107404 -0.00162196 Vertex 12320 -0.0904479 0.129526 0.00625875 Vertex 12321 -0.0879901 0.0928029 0.00642738 Vertex 12322 0.0402464 0.0618954 -0.00472398 Vertex 12323 0.039774 0.0618507 -0.00575724 Vertex 12324 0.0394097 0.0618135 -0.00677045 Vertex 12325 0.0390675 0.0617702 -0.00778266 Vertex 12326 0.0387541 0.0617571 -0.00875906 Vertex 12327 0.0382522 0.0617095 -0.0097618 Vertex 12328 0.0376047 0.0616532 -0.0107499 Vertex 12329 0.0367516 0.061565 -0.0117718 Vertex 12330 0.0357612 0.0614637 -0.0127934 Vertex 12331 0.0348978 0.0613787 -0.0138096 Vertex 12332 0.034267 0.0613198 -0.014809 Vertex 12333 0.0335661 0.0612752 -0.015761 Vertex 12334 0.0328256 0.0611992 -0.0167775 Vertex 12335 0.0320447 0.061134 -0.0177676 Vertex 12336 0.0305387 0.0609912 -0.0187852 Vertex 12337 0.0292827 0.060879 -0.0197951 Vertex 12338 0.0284552 0.0607955 -0.0208488 Vertex 12339 0.0276877 0.0607373 -0.0218456 Vertex 12340 0.0267364 0.0606633 -0.022785 Vertex 12341 0.0253513 0.0605347 -0.0238887 Vertex 12342 0.0506397 0.0652197 -0.00133714 Vertex 12343 -0.0836964 0.106272 0.0263573 Vertex 12344 -0.0860408 0.109124 0.0103593 Vertex 12345 0.0197584 0.121448 -0.00690816 Vertex 12346 -0.0743851 0.163815 -0.0369793 Vertex 12347 -0.0935895 0.122834 0.0262964 Vertex 12348 -0.0928043 0.11882 0.0332998 Vertex 12349 -0.0911853 0.113324 0.0173235 Vertex 12350 -0.0682589 0.154325 -0.0506473 Vertex 12351 0.0432138 0.091668 0.0251628 Vertex 12352 -0.0561456 0.0642166 0.0326189 Vertex 12353 -0.0623548 0.166257 -0.0465894 Vertex 12354 -0.0624916 0.166267 -0.0445898 Vertex 12355 0.0447757 0.0875223 -0.000814326 Vertex 12356 -0.0628947 0.161497 -0.0505862 Vertex 12357 -0.0627087 0.161508 -0.0465953 Vertex 12358 -0.0675666 0.163787 -0.0559757 Vertex 12359 -0.0626379 0.152126 -0.0285986 Vertex 12360 -0.0613674 0.169388 -0.0565896 Vertex 12361 -0.0486888 0.138617 0.0104009 Vertex 12362 -0.0618725 0.160013 -0.0255862 Vertex 12363 -0.0618529 0.153757 -0.0195806 Vertex 12364 -0.0616292 0.146031 -0.00460349 Vertex 12365 -0.0769756 0.068555 0.0156381 Vertex 12366 -0.0931885 0.121553 0.0392843 Vertex 12367 -0.086179 0.107645 0.0083646 Vertex 12368 -0.048947 0.138616 0.00839947 Vertex 12369 -0.00919366 0.172678 -0.0237455 Vertex 12370 -0.0782342 0.0694181 0.011104 Vertex 12371 -0.0893331 0.111939 0.012355 Vertex 12372 -0.0491945 0.137084 0.0184007 Vertex 12373 -0.0489315 0.137078 0.0173942 Vertex 12374 -0.052837 0.143168 0.022419 Vertex 12375 -0.0616908 0.156845 -0.0305919 Vertex 12376 -0.0617331 0.156868 -0.0205842 Vertex 12377 -0.06337 0.156813 -0.0136043 Vertex 12378 0.041276 0.104245 0.0131611 Vertex 12379 -0.0624555 0.163099 -0.0465902 Vertex 12380 -0.094679 0.122825 0.0202733 Vertex 12381 -0.0793623 0.0739499 0.024599 Vertex 12382 -0.0359512 0.151053 -0.00163407 Vertex 12383 0.0417584 0.0971928 -0.00282344 Vertex 12384 -0.0839655 0.111209 0.0317911 Vertex 12385 -0.0628372 0.172536 -0.0525874 Vertex 12386 -0.0491537 0.135503 0.0034228 Vertex 12387 -0.0631703 0.172516 -0.0516045 Vertex 12388 -0.0526002 0.146245 0.0194042 Vertex 12389 0.0597099 0.0650292 0.0201784 Vertex 12390 0.0600686 0.0650603 0.0191749 Vertex 12391 0.0603421 0.0650847 0.0181826 Vertex 12392 0.0605804 0.0651016 0.017176 Vertex 12393 0.0607736 0.0651167 0.0161629 Vertex 12394 0.0608111 0.0651191 0.0151635 Vertex 12395 0.0608755 0.0651235 0.0141559 Vertex 12396 0.0609018 0.0651278 0.0131549 Vertex 12397 0.0608929 0.0651253 0.0121512 Vertex 12398 0.060768 0.0651161 0.0111484 Vertex 12399 0.0605435 0.0650981 0.0101416 Vertex 12400 0.0603039 0.0650788 0.0091381 Vertex 12401 0.0600369 0.0650499 0.00814341 Vertex 12402 0.0597512 0.0650182 0.00715554 Vertex 12403 0.0593281 0.0649895 0.00613553 Vertex 12404 0.0589446 0.0649523 0.0051412 Vertex 12405 0.0585127 0.0649229 0.00410871 Vertex 12406 0.0580762 0.0648724 0.00314588 Vertex 12407 0.0574118 0.0647963 0.00219725 Vertex 12408 -0.085954 0.146023 0.00719275 Vertex 12409 -0.0850056 0.146006 0.00617966 Vertex 12410 -0.0870127 0.10633 0.011369 Vertex 12411 -0.0865455 0.109036 0.0123603 Vertex 12412 -0.093028 0.117371 0.013308 Vertex 12413 -0.089472 0.092961 0.0204149 Vertex 12414 0.0407504 0.0633497 -0.00473671 Vertex 12415 0.0402874 0.063301 -0.00576463 Vertex 12416 0.0399096 0.0632641 -0.00677014 Vertex 12417 0.0395267 0.0632302 -0.00776648 Vertex 12418 0.0391263 0.0631992 -0.00875738 Vertex 12419 0.0385298 0.0631329 -0.0097765 Vertex 12420 0.037815 0.0630498 -0.0108066 Vertex 12421 0.0371109 0.0630101 -0.0117592 Vertex 12422 0.0360211 0.0628935 -0.0127986 Vertex 12423 0.0350456 0.0627954 -0.0138277 Vertex 12424 0.0344395 0.062733 -0.0148459 Vertex 12425 0.0338754 0.0626989 -0.015804 Vertex 12426 0.0330982 0.0626311 -0.0167961 Vertex 12427 0.032428 0.0625798 -0.0177725 Vertex 12428 0.0314312 0.0625198 -0.0186445 Vertex 12429 0.0294467 0.0623083 -0.0198501 Vertex 12430 0.0285202 0.0622348 -0.0207982 Vertex 12431 0.0275233 0.0621538 -0.0218174 Vertex 12432 -0.092876 0.129604 0.0142376 Vertex 12433 -0.0818638 0.147313 0.00119815 Vertex 12434 -0.0903736 0.13787 0.0221843 Vertex 12435 -0.0897153 0.135171 0.0332079 Vertex 12436 -0.0864494 0.107673 0.0113573 Vertex 12437 -0.0938278 0.128299 0.0222532 Vertex 12438 -0.0935248 0.128245 0.016248 Vertex 12439 0.044641 0.0945606 0.00417916 Vertex 12440 -0.092918 0.118828 0.0342968 Vertex 12441 -0.0913588 0.113353 0.0143394 Vertex 12442 -0.081976 0.138997 -0.000769762 Vertex 12443 0.0203578 0.0985304 -0.0223097 Vertex 12444 -0.0935435 0.118764 0.0233045 Vertex 12445 -0.0624498 0.166273 -0.0455815 Vertex 12446 -0.0942308 0.126903 0.0192529 Vertex 12447 -0.0627531 0.161513 -0.0475897 Vertex 12448 -0.0626588 0.161511 -0.0455953 Vertex 12449 -0.0625817 0.159955 -0.0415973 Vertex 12450 -0.0617319 0.160008 -0.0275856 Vertex 12451 -0.0619701 0.160031 -0.0245798 Vertex 12452 -0.0621336 0.16002 -0.0235787 Vertex 12453 -0.0618471 0.153751 -0.0215773 Vertex 12454 -0.0607772 0.146055 -0.00361746 Vertex 12455 -0.0771466 0.113816 0.049094 Vertex 12456 -0.0897739 0.137922 0.033196 Vertex 12457 0.0447988 0.0903457 0.000177034 Vertex 12458 0.0319929 0.088146 -0.0193446 Vertex 12459 -0.0918355 0.118761 0.0292947 Vertex 12460 -0.0758074 0.0766216 0.033593 Vertex 12461 0.0399293 0.104183 0.0231644 Vertex 12462 -0.0721186 0.0637108 0.0173676 Vertex 12463 -0.0486891 0.137066 0.0163891 Vertex 12464 -0.052704 0.143169 0.0214165 Vertex 12465 -0.0624967 0.149081 -0.013576 Vertex 12466 -0.061875 0.156868 -0.0195857 Vertex 12467 0.0449905 0.0917771 0.0161555 Vertex 12468 0.0430064 0.0930319 -0.00281527 Vertex 12469 -0.0828359 0.104706 -0.00261356 Vertex 12470 -0.0478194 0.135564 0.0104014 Vertex 12471 -0.0616144 0.155309 -0.0245851 Vertex 12472 -0.0757064 0.112028 0.0472849 Vertex 12473 -0.0622893 0.15065 -0.0135783 Vertex 12474 -0.0409029 0.149467 0.00342301 Vertex 12475 -0.0763652 0.1528 -0.0108857 Vertex 12476 -0.050851 0.138527 0.021367 Vertex 12477 -0.0504949 0.138575 0.0203939 Vertex 12478 0.0441946 0.0874765 -0.00278813 Vertex 12479 0.0594927 0.066407 0.020186 Vertex 12480 0.0598501 0.0664357 0.0191799 Vertex 12481 0.0601731 0.0664558 0.0181654 Vertex 12482 0.060413 0.0664733 0.017165 Vertex 12483 0.0605561 0.0664891 0.0161665 Vertex 12484 0.0606816 0.0664976 0.015162 Vertex 12485 0.0607002 0.0665033 0.01416 Vertex 12486 0.0607552 0.0664989 0.0131533 Vertex 12487 0.0606695 0.0664968 0.0121468 Vertex 12488 0.0605358 0.0664822 0.0111446 Vertex 12489 0.060304 0.0664655 0.0101406 Vertex 12490 0.0600635 0.0664445 0.00913698 Vertex 12491 0.05973 0.0664208 0.00812497 Vertex 12492 0.0594367 0.0663847 0.00713811 Vertex 12493 0.0590795 0.0663557 0.00613696 Vertex 12494 0.0587114 0.0663183 0.00513779 Vertex 12495 0.0583506 0.0662943 0.00413175 Vertex 12496 0.0578361 0.0662412 0.00314493 Vertex 12497 -0.0787914 0.14589 -0.00282549 Vertex 12498 -0.0902934 0.147439 0.0121579 Vertex 12499 -0.0871517 0.106348 0.0123653 Vertex 12500 -0.0862013 0.10903 0.0113533 Vertex 12501 -0.0904236 0.116034 0.0273085 Vertex 12502 -0.0903526 0.116014 0.0283099 Vertex 12503 -0.0717098 0.161007 -0.0419418 Vertex 12504 0.0410795 0.0647663 -0.00478377 Vertex 12505 0.0406946 0.0647331 -0.00578164 Vertex 12506 0.0404164 0.0647148 -0.00677085 Vertex 12507 0.0400167 0.0646852 -0.00776271 Vertex 12508 0.0395163 0.0646366 -0.0087647 Vertex 12509 0.0388727 0.0645792 -0.00975725 Vertex 12510 0.0381646 0.0644978 -0.0107883 Vertex 12511 0.0374992 0.0644481 -0.0117672 Vertex 12512 0.0364959 0.064355 -0.0127735 Vertex 12513 0.0354946 0.0642547 -0.0137843 Vertex 12514 0.0347681 0.0641816 -0.0148052 Vertex 12515 0.0341358 0.0641297 -0.0158137 Vertex 12516 0.0333657 0.0640658 -0.0168115 Vertex 12517 0.032684 0.0640121 -0.0177767 Vertex 12518 0.0317217 0.0639399 -0.0186866 Vertex 12519 0.0292435 0.0637114 -0.0199317 Vertex 12520 0.0282585 0.063629 -0.0207965 Vertex 12521 -0.0816965 0.144555 0.000152955 Vertex 12522 -0.0728966 0.155445 -0.0329107 Vertex 12523 -0.0823675 0.147331 0.00217458 Vertex 12524 -0.0404457 0.119913 -0.0128413 Vertex 12525 -0.0900211 0.137875 0.0231818 Vertex 12526 -0.088578 0.151544 0.0220955 Vertex 12527 -0.0862104 0.107661 0.0103578 Vertex 12528 -0.0719092 0.180772 -0.055937 Vertex 12529 -0.0899881 0.118599 0.00429898 Vertex 12530 -0.093011 0.118839 0.0352993 Vertex 12531 -0.091323 0.113292 0.0153266 Vertex 12532 0.0138426 0.11139 -0.0180298 Vertex 12533 -0.00436077 0.12603 -0.00766771 Vertex 12534 -0.0197383 0.108898 -0.0213322 Vertex 12535 -0.0868944 0.122556 -0.00173403 Vertex 12536 -0.0623619 0.166253 -0.047591 Vertex 12537 0.0450177 0.0875447 0.000184881 Vertex 12538 -0.0624633 0.170945 -0.051605 Vertex 12539 -0.0628376 0.161493 -0.0485893 Vertex 12540 -0.0618303 0.167813 -0.0535931 Vertex 12541 -0.0350329 0.037518 0.0477355 Vertex 12542 -0.0786005 0.174957 -0.0470491 Vertex 12543 -0.0870246 0.129415 0.000309032 Vertex 12544 -0.0843481 0.145997 0.00513587 Vertex 12545 -0.0618485 0.153752 -0.0205795 Vertex 12546 -0.0618449 0.153748 -0.0225793 Vertex 12547 -0.02429 0.121354 -0.00839434 Vertex 12548 -0.0596536 0.0350995 0.0445384 Vertex 12549 -0.0861323 0.103534 0.00440203 Vertex 12550 -0.0863242 0.111849 0.0243217 Vertex 12551 -0.0897135 0.12265 0.00431103 Vertex 12552 0.0215374 0.086463 -0.0256391 Vertex 12553 -0.091127 0.143391 0.0261688 Vertex 12554 -0.0896974 0.137929 0.0351902 Vertex 12555 -0.0713436 0.0632651 0.0179295 Vertex 12556 -0.048519 0.137086 0.0153953 Vertex 12557 -0.0497252 0.137033 0.00342407 Vertex 12558 -0.0616338 0.0739295 0.0406212 Vertex 12559 -0.060807 0.170968 -0.0607383 Vertex 12560 -0.089989 0.142041 0.0291697 Vertex 12561 0.0454091 0.0918015 0.00517469 Vertex 12562 -0.0507589 0.144713 0.0133585 Vertex 12563 -0.00964827 0.166616 -0.0197629 Vertex 12564 -0.0622964 0.150648 -0.0145762 Vertex 12565 -0.0624206 0.150641 -0.0155752 Vertex 12566 -0.0681397 0.0738079 0.0376094 Vertex 12567 -0.0762076 0.0680671 0.0162505 Vertex 12568 -0.0619782 0.15683 -0.0335967 Vertex 12569 0.0594437 0.0677773 0.0191638 Vertex 12570 0.0597202 0.067814 0.0181758 Vertex 12571 0.0599615 0.0678313 0.0171716 Vertex 12572 0.0602499 0.0678328 0.0161531 Vertex 12573 0.060415 0.0678562 0.0151973 Vertex 12574 0.0604451 0.0678689 0.0141533 Vertex 12575 0.0604235 0.0678625 0.0131519 Vertex 12576 0.0603302 0.0678632 0.0121432 Vertex 12577 0.0601999 0.0678503 0.0111396 Vertex 12578 0.060054 0.0678303 0.0101401 Vertex 12579 0.0597965 0.0678036 0.00914167 Vertex 12580 0.0594691 0.0677866 0.0081304 Vertex 12581 0.0591059 0.0677548 0.00712748 Vertex 12582 0.0588047 0.0677091 0.00614939 Vertex 12583 0.0583737 0.0676977 0.00512132 Vertex 12584 0.0579573 0.0676391 0.00414749 Vertex 12585 -0.069363 0.163799 -0.0509746 Vertex 12586 -0.0737025 0.144377 -0.00986626 Vertex 12587 -0.09225 0.125605 0.0402535 Vertex 12588 -0.0886572 0.111878 0.019323 Vertex 12589 -0.0378805 0.108506 -0.019759 Vertex 12590 -0.0907184 0.115992 0.0263684 Vertex 12591 0.0417187 0.066227 -0.00378154 Vertex 12592 0.0413114 0.0661977 -0.00477755 Vertex 12593 0.0411176 0.0661976 -0.00575682 Vertex 12594 0.0407967 0.0661529 -0.00677209 Vertex 12595 0.0404048 0.0661215 -0.00776758 Vertex 12596 0.0398123 0.066053 -0.00878746 Vertex 12597 0.0392908 0.0660103 -0.00977956 Vertex 12598 0.0387498 0.0659721 -0.0107606 Vertex 12599 0.0381172 0.0659142 -0.0117557 Vertex 12600 0.0372578 0.0658262 -0.0127785 Vertex 12601 0.0362974 0.0657667 -0.0137187 Vertex 12602 0.0352496 0.0656442 -0.0147977 Vertex 12603 0.0344134 0.0655586 -0.0158419 Vertex 12604 0.0337176 0.0655129 -0.0167917 Vertex 12605 0.0328144 0.0654355 -0.0177831 Vertex 12606 0.031763 0.0653471 -0.018741 Vertex 12607 0.0289004 0.0650837 -0.0199869 Vertex 12608 0.0278158 0.0649933 -0.0208789 Vertex 12609 0.0270423 0.0648893 -0.0216756 Vertex 12610 0.0255963 0.0648009 -0.0228004 Vertex 12611 -0.0331172 0.123673 -0.00477506 Vertex 12612 -0.0357951 0.124657 -0.0058294 Vertex 12613 -0.0707687 0.155356 -0.0469258 Vertex 12614 -0.0861823 0.107654 0.00936346 Vertex 12615 -0.0921162 0.126957 0.038246 Vertex 12616 -0.0931674 0.126844 0.0122586 Vertex 12617 -0.0905225 0.118622 0.0053153 Vertex 12618 -0.0930341 0.118841 0.0362969 Vertex 12619 -0.0924063 0.129578 0.0112381 Vertex 12620 -0.0283024 0.0362399 -0.0299084 Vertex 12621 -0.093138 0.120057 0.0112982 Vertex 12622 0.0376148 0.100847 -0.00874384 Vertex 12623 -0.0685057 0.159542 -0.0539539 Vertex 12624 -0.0622192 0.166249 -0.0495907 Vertex 12625 -0.0623474 0.166249 -0.0485903 Vertex 12626 -0.0627193 0.152197 -0.01058 Vertex 12627 0.0445653 0.094573 0.0151616 Vertex 12628 -0.0616692 0.167812 -0.0545903 Vertex 12629 -0.0625367 0.161521 -0.0446005 Vertex 12630 -0.0895837 0.137934 0.0361877 Vertex 12631 -0.0447475 0.146272 0.00240034 Vertex 12632 -0.0506725 0.0667938 0.036819 Vertex 12633 -0.0716693 0.147461 -0.0281971 Vertex 12634 -0.0733924 0.0656461 0.018954 Vertex 12635 -0.0178004 0.121647 -0.00876548 Vertex 12636 -0.0244946 0.0357757 0.0532784 Vertex 12637 -0.0329051 0.0359381 0.0496011 Vertex 12638 -0.0521695 0.144678 0.0173655 Vertex 12639 -0.0623389 0.163139 -0.0325913 Vertex 12640 0.0410596 0.104249 0.0151631 Vertex 12641 -0.00158589 0.110252 -0.0207823 Vertex 12642 0.0452758 0.0875665 0.00218329 Vertex 12643 -0.00876131 0.174216 -0.0276966 Vertex 12644 -0.0752039 0.0696978 0.0256249 Vertex 12645 -0.0501179 0.137029 0.00241503 Vertex 12646 -0.0506864 0.137014 0.00141591 Vertex 12647 -0.00977222 0.11683 -0.0157853 Vertex 12648 -0.0756514 0.0743685 0.0320217 Vertex 12649 -0.0892328 0.114145 0.0245988 Vertex 12650 -0.0499497 0.0724883 0.0409516 Vertex 12651 -0.0625466 0.16468 -0.0375945 Vertex 12652 -0.0498374 0.138571 0.0183794 Vertex 12653 -0.0621883 0.177235 -0.0596222 Vertex 12654 -0.0325574 0.126601 0.00788172 Vertex 12655 -0.0623836 0.163119 -0.0315939 Vertex 12656 -0.0727909 0.0685075 0.0271607 Vertex 12657 -0.0311459 0.0354418 0.0504241 Vertex 12658 -0.065976 0.0624665 0.0232686 Vertex 12659 -0.0778526 0.159695 -0.0239243 Vertex 12660 0.0590657 0.0691634 0.0182335 Vertex 12661 0.0593699 0.0691831 0.0171767 Vertex 12662 0.0596647 0.0691741 0.016158 Vertex 12663 0.0599111 0.0692057 0.0151972 Vertex 12664 0.0599479 0.0692188 0.0141571 Vertex 12665 0.0599383 0.0692126 0.0131498 Vertex 12666 0.0598509 0.0692231 0.0121425 Vertex 12667 0.059734 0.0692161 0.0111359 Vertex 12668 0.0595736 0.0691817 0.0101411 Vertex 12669 0.0593141 0.0691549 0.00914325 Vertex 12670 0.058968 0.0691324 0.00813536 Vertex 12671 0.0586666 0.0690768 0.00715872 Vertex 12672 -0.0847301 0.0966436 -0.00257686 Vertex 12673 -0.0890756 0.0982905 0.00941744 Vertex 12674 -0.000674255 0.10997 -0.0204918 Vertex 12675 -0.0750751 0.149943 -0.025867 Vertex 12676 -0.0616586 0.172539 -0.056588 Vertex 12677 -0.0838768 0.108986 0.0253683 Vertex 12678 -0.0846088 0.10754 0.00337493 Vertex 12679 0.0428284 0.0676747 -0.00179274 Vertex 12680 0.0423783 0.0676875 -0.00279832 Vertex 12681 0.0420557 0.0676716 -0.00377172 Vertex 12682 0.0417415 0.0676611 -0.00475281 Vertex 12683 0.0414338 0.0676164 -0.00577635 Vertex 12684 0.041165 0.0675922 -0.00677134 Vertex 12685 0.0407755 0.0675587 -0.00776366 Vertex 12686 0.0401757 0.067497 -0.00878165 Vertex 12687 0.0396853 0.0674479 -0.00978879 Vertex 12688 0.0391881 0.0673984 -0.0107969 Vertex 12689 0.0386173 0.0673644 -0.0117551 Vertex 12690 0.0377774 0.0672774 -0.012792 Vertex 12691 0.0368588 0.0672041 -0.0137655 Vertex 12692 0.0357587 0.067099 -0.014806 Vertex 12693 0.0347467 0.0670098 -0.0158076 Vertex 12694 0.0339284 0.0669478 -0.0167571 Vertex 12695 0.0329063 0.0668566 -0.0177475 Vertex 12696 0.0317419 0.0667553 -0.0187125 Vertex 12697 0.0289846 0.0664902 -0.0199255 Vertex 12698 0.0282217 0.0664463 -0.0207545 Vertex 12699 0.02743 0.0663837 -0.0217206 Vertex 12700 0.0264606 0.0663192 -0.0226274 Vertex 12701 -0.0564227 0.125779 -0.00685719 Vertex 12702 0.0198172 0.102563 -0.0205962 Vertex 12703 -0.0415646 0.125825 -0.00703356 Vertex 12704 -0.0302927 0.117007 -0.0138211 Vertex 12705 0.0256941 0.120543 -0.00190068 Vertex 12706 -0.0858928 0.108988 0.00834067 Vertex 12707 -0.0909761 0.118636 0.00631645 Vertex 12708 -0.0930791 0.118839 0.037294 Vertex 12709 -0.0915391 0.118654 0.00731945 Vertex 12710 -0.0920088 0.118668 0.00830639 Vertex 12711 -0.0924079 0.114699 0.0153245 Vertex 12712 -0.0934649 0.120072 0.0123034 Vertex 12713 0.0389827 0.104151 0.026189 Vertex 12714 -0.0889514 0.121274 0.00229944 Vertex 12715 -0.0750897 0.149941 -0.0248696 Vertex 12716 -0.0624226 0.152205 -0.0125757 Vertex 12717 -0.0624554 0.1522 -0.0115838 Vertex 12718 0.0438051 0.0987511 0.0101628 Vertex 12719 -0.0623435 0.161536 -0.0425937 Vertex 12720 -0.073147 0.0648981 0.0178865 Vertex 12721 -0.0624944 0.145991 -0.00758108 Vertex 12722 -0.0450098 0.146255 0.00342574 Vertex 12723 -0.0508226 0.162642 -0.00385759 Vertex 12724 -0.0726712 0.0651053 0.0195713 Vertex 12725 -0.0490908 0.140152 0.0103957 Vertex 12726 -0.0491744 0.14016 0.00939463 Vertex 12727 -0.0771179 0.165222 -0.035974 Vertex 12728 -0.0828817 0.143196 0.00216401 Vertex 12729 -0.0617323 0.155315 -0.018581 Vertex 12730 -0.0939826 0.118759 0.0192971 Vertex 12731 -0.0544221 0.144671 0.0284168 Vertex 12732 0.0427418 0.0916392 0.0261768 Vertex 12733 -0.0892569 0.122633 0.00330914 Vertex 12734 -0.0530923 0.143138 0.0243879 Vertex 12735 -0.052454 0.13854 0.0254099 Vertex 12736 -0.0482154 0.137103 0.0123981 Vertex 12737 -0.0512856 0.136981 0.000438627 Vertex 12738 -0.0527854 0.146248 0.0203946 Vertex 12739 -0.0489654 0.138607 0.014392 Vertex 12740 -0.0488087 0.138617 0.0133952 Vertex 12741 -0.0620479 0.155306 -0.016587 Vertex 12742 -0.0733982 0.114573 0.051125 Vertex 12743 -0.0723621 0.114661 0.051285 Vertex 12744 -0.0605969 0.06056 0.0225173 Vertex 12745 0.0454193 0.0875784 0.00318139 Vertex 12746 -0.00894653 0.174179 -0.0257648 Vertex 12747 -0.0638458 0.0366675 0.0422565 Vertex 12748 -0.0336555 0.0363317 0.0490618 Vertex 12749 -0.0699437 0.0669048 0.0273786 Vertex 12750 -0.0624573 0.163073 -0.0525854 Vertex 12751 0.0433566 0.094461 -0.000803958 Vertex 12752 0.0429729 0.0944315 -0.00180352 Vertex 12753 0.0588348 0.0704992 0.0161593 Vertex 12754 0.0591083 0.0705376 0.015147 Vertex 12755 0.0591153 0.0705615 0.014025 Vertex 12756 0.0410937 0.100015 0.0241739 Vertex 12757 0.0418577 0.100066 0.0211691 Vertex 12758 0.042064 0.10006 0.0201605 Vertex 12759 0.0581094 0.0704417 0.00814168 Vertex 12760 0.0577041 0.0703778 0.00716237 Vertex 12761 0.0416143 0.102832 0.00217563 Vertex 12762 0.0419622 0.102841 0.00417469 Vertex 12763 -0.0347028 0.122731 -0.00776716 Vertex 12764 -0.0793237 0.108591 -0.00458021 Vertex 12765 -0.0825172 0.108952 0.0273498 Vertex 12766 -0.0832597 0.10897 0.0263609 Vertex 12767 -0.0859599 0.106341 0.0203569 Vertex 12768 0.0433932 0.0691823 -0.000799598 Vertex 12769 0.0429858 0.0691484 -0.00178958 Vertex 12770 0.0426227 0.0691122 -0.00279622 Vertex 12771 0.0423451 0.0690926 -0.00378897 Vertex 12772 0.0421 0.0690665 -0.00478535 Vertex 12773 0.0418422 0.0690449 -0.00578965 Vertex 12774 0.0415397 0.0690275 -0.00677 Vertex 12775 0.0410434 0.0689808 -0.00777311 Vertex 12776 0.0404535 0.0689201 -0.00879299 Vertex 12777 0.0399488 0.0688733 -0.0097971 Vertex 12778 0.0394368 0.0688303 -0.0107955 Vertex 12779 0.0388034 0.0687739 -0.0117998 Vertex 12780 0.0380126 0.0687088 -0.0127776 Vertex 12781 0.0369946 0.0686204 -0.0137746 Vertex 12782 0.0359934 0.0685324 -0.0147875 Vertex 12783 0.0349752 0.0684447 -0.0157877 Vertex 12784 0.0339501 0.0683557 -0.0167775 Vertex 12785 0.0328041 0.0682575 -0.0177764 Vertex 12786 0.03144 0.0681325 -0.0188162 Vertex 12787 0.0296786 0.0679688 -0.0198342 Vertex 12788 0.0289606 0.0679277 -0.0207366 Vertex 12789 0.0280724 0.0678498 -0.0217391 Vertex 12790 0.0271486 0.0677873 -0.0226945 Vertex 12791 -0.0259227 0.123138 -0.0042558 Vertex 12792 -0.006336 0.10011 -0.0240468 Vertex 12793 0.02297 0.122414 -0.00191144 Vertex 12794 -0.0425873 0.125894 -0.0070983 Vertex 12795 -0.0897848 0.135174 0.0342114 Vertex 12796 -0.0855435 0.108961 0.00733555 Vertex 12797 0.0215589 0.120837 -0.00625561 Vertex 12798 -0.0930613 0.118852 0.0392987 Vertex 12799 -0.0887132 0.118572 0.00232339 Vertex 12800 -0.0756134 0.163772 -0.0350068 Vertex 12801 -0.0936604 0.128255 0.0172452 Vertex 12802 -0.0936226 0.120076 0.0132919 Vertex 12803 -0.00952557 0.169814 -0.0256004 Vertex 12804 -0.088594 0.121257 0.00130017 Vertex 12805 -0.0881544 0.121251 0.000301062 Vertex 12806 -0.0634329 0.159891 -0.0505847 Vertex 12807 -0.0623581 0.164692 -0.0425931 Vertex 12808 -0.0621574 0.152203 -0.016578 Vertex 12809 -0.0393802 0.149525 0.00137589 Vertex 12810 -0.0624348 0.161527 -0.0435948 Vertex 12811 0.0446233 0.0903218 -0.000806954 Vertex 12812 -0.0774975 0.111156 0.045792 Vertex 12813 -0.092535 0.126933 0.0292581 Vertex 12814 -0.0627683 0.164709 -0.0355885 Vertex 12815 -0.0617814 0.16156 -0.0355923 Vertex 12816 -0.0696054 0.110911 0.0424293 Vertex 12817 -0.0492135 0.140151 0.00839688 Vertex 12818 -0.0633454 0.159973 -0.0185957 Vertex 12819 -0.0308705 0.0385373 -0.0301935 Vertex 12820 -0.0913214 0.114759 0.0373166 Vertex 12821 -0.0617079 0.155317 -0.0205813 Vertex 12822 -0.0625714 0.164724 -0.0395894 Vertex 12823 -0.0483594 0.137097 0.0143972 Vertex 12824 -0.0792849 0.109686 0.041215 Vertex 12825 -0.0625363 0.158377 -0.0386027 Vertex 12826 -0.0922682 0.12272 0.00827864 Vertex 12827 -0.0391114 0.149509 -0.00165293 Vertex 12828 -0.0630601 0.155204 -0.0366146 Vertex 12829 -0.0654107 0.0782591 0.0414837 Vertex 12830 -0.0526872 0.144684 0.0193835 Vertex 12831 -0.0493817 0.138599 0.0163919 Vertex 12832 -0.049646 0.138599 0.0173958 Vertex 12833 -0.0797776 0.115912 0.0485816 Vertex 12834 -0.0466625 0.12523 -0.00836412 Vertex 12835 -0.0825526 0.110518 0.0415894 Vertex 12836 -0.00975768 0.167025 -0.0223761 Vertex 12837 0.0415402 0.0928967 -0.0067838 Vertex 12838 -0.0511539 0.144707 0.0143676 Vertex 12839 -0.0100477 0.178214 -0.0295899 Vertex 12840 -0.0889738 0.137888 0.0281941 Vertex 12841 -0.0804035 0.0745659 0.0220984 Vertex 12842 -0.0620154 0.164635 -0.0555847 Vertex 12843 -0.0627985 0.161541 -0.0235962 Vertex 12844 -0.0873725 0.140519 0.00919988 Vertex 12845 -0.0745653 0.158254 -0.0269305 Vertex 12846 -0.0622081 0.163133 -0.0355907 Vertex 12847 -0.048186 0.135579 0.00839494 Vertex 12848 -0.0540131 0.144678 0.0264098 Vertex 12849 0.0407264 0.0999947 0.0251764 Vertex 12850 -0.0872126 0.146051 0.00824907 Vertex 12851 0.0373688 0.102607 -0.00785264 Vertex 12852 0.0401633 0.102703 -0.00178896 Vertex 12853 0.0409984 0.102803 0.000176721 Vertex 12854 -0.0895701 0.151478 0.0161361 Vertex 12855 -0.0888501 0.102361 0.0153809 Vertex 12856 -0.0865431 0.106355 0.0183534 Vertex 12857 -0.0861037 0.109061 0.0193453 Vertex 12858 -0.0871093 0.106357 0.0153576 Vertex 12859 -0.0869351 0.106366 0.0163624 Vertex 12860 -0.0894763 0.140666 0.0321759 Vertex 12861 0.0435889 0.0706095 -0.000776861 Vertex 12862 0.043249 0.0705728 -0.00179391 Vertex 12863 0.0430009 0.0705508 -0.00279727 Vertex 12864 0.042717 0.0705281 -0.00378792 Vertex 12865 0.0423965 0.0704871 -0.00480867 Vertex 12866 0.0421291 0.070468 -0.00580336 Vertex 12867 0.0417289 0.0704356 -0.00679567 Vertex 12868 0.0412244 0.0703917 -0.00779979 Vertex 12869 0.04069 0.0703475 -0.0087868 Vertex 12870 0.0400896 0.0702922 -0.00980716 Vertex 12871 0.0395569 0.0702481 -0.0107925 Vertex 12872 0.0387854 0.0701818 -0.0117862 Vertex 12873 0.0378045 0.0701003 -0.0128173 Vertex 12874 0.0367682 0.0700097 -0.0138015 Vertex 12875 0.0357939 0.0699287 -0.0148404 Vertex 12876 0.0349018 0.0698502 -0.0158378 Vertex 12877 0.0339669 0.0697663 -0.0167955 Vertex 12878 0.0328915 0.0696754 -0.0177356 Vertex 12879 0.0314095 0.0695437 -0.0187779 Vertex 12880 0.0302998 0.0694384 -0.019812 Vertex 12881 0.0296062 0.0693912 -0.0207509 Vertex 12882 0.028746 0.0693043 -0.0217828 Vertex 12883 0.0277802 0.0692504 -0.0226951 Vertex 12884 0.0134367 0.121611 -0.0110511 Vertex 12885 -0.0291541 0.123106 -0.00418201 Vertex 12886 -0.0301817 0.12316 -0.0042413 Vertex 12887 -0.0855936 0.143251 0.00719107 Vertex 12888 -0.0933214 0.129622 0.0172404 Vertex 12889 -0.0863354 0.129395 -0.000699295 Vertex 12890 -0.0853889 0.108959 0.00634578 Vertex 12891 -0.084898 0.11701 -0.000772283 Vertex 12892 -0.0931447 0.118854 0.0382959 Vertex 12893 -0.0894143 0.118584 0.00330542 Vertex 12894 -0.0940603 0.120098 0.0152926 Vertex 12895 -0.0939163 0.120093 0.0142993 Vertex 12896 -0.0624367 0.153758 -0.0135798 Vertex 12897 -0.0898534 0.121302 0.00430136 Vertex 12898 -0.0894985 0.121276 0.00330358 Vertex 12899 -0.0620333 0.153738 -0.0275809 Vertex 12900 -0.0621975 0.166246 -0.0505873 Vertex 12901 -0.0759482 0.152671 -0.0129066 Vertex 12902 -0.0690953 0.0751628 0.0379926 Vertex 12903 -0.062327 0.161572 -0.0265871 Vertex 12904 -0.0630898 0.161515 -0.0224551 Vertex 12905 -0.0276364 0.0917699 -0.0296042 Vertex 12906 -0.0321324 0.154142 -0.000565596 Vertex 12907 -0.0786622 0.0733343 0.0252726 Vertex 12908 -0.0493972 0.140141 0.00739907 Vertex 12909 -0.0492762 0.143079 0.00435473 Vertex 12910 -0.0310964 0.160762 -0.0139612 Vertex 12911 -0.0927165 0.117489 0.0383035 Vertex 12912 -0.0384168 0.120732 -0.0116964 Vertex 12913 -0.089592 0.111931 0.0163329 Vertex 12914 -0.0749354 0.108383 0.0378851 Vertex 12915 -0.0700187 0.074071 0.0369567 Vertex 12916 0.0425651 0.10009 0.017161 Vertex 12917 -0.0543014 0.146215 0.0264084 Vertex 12918 -0.00995367 0.16681 -0.0217203 Vertex 12919 -0.0733601 0.156855 -0.0299134 Vertex 12920 -0.0488259 0.138613 0.00940263 Vertex 12921 -0.0625358 0.155244 -0.0346054 Vertex 12922 -0.0501104 0.138566 0.0193811 Vertex 12923 0.0451716 0.0889782 0.0181643 Vertex 12924 -0.0487458 0.123267 -0.0102852 Vertex 12925 -0.0624159 0.15064 -0.016574 Vertex 12926 -0.00972794 0.166651 -0.0186764 Vertex 12927 0.0451372 0.0875619 0.0011816 Vertex 12928 0.0450662 0.0889731 0.0191643 Vertex 12929 -0.089639 0.0983559 0.0164014 Vertex 12930 0.0453684 0.0889907 0.0151607 Vertex 12931 -0.0514727 0.147804 0.0154008 Vertex 12932 -0.0496185 0.140151 0.0144011 Vertex 12933 0.0454221 0.0889974 0.0141646 Vertex 12934 0.0445771 0.0875296 0.0231612 Vertex 12935 -0.0155474 0.160527 -0.0107791 Vertex 12936 0.0404265 0.102791 0.0231613 Vertex 12937 0.0407433 0.102836 0.021176 Vertex 12938 -0.0841107 0.0938743 -0.00455389 Vertex 12939 -0.0364114 0.175555 -0.00996795 Vertex 12940 -0.0894818 0.137913 0.0311948 Vertex 12941 -0.0765583 0.148625 -0.00886956 Vertex 12942 -0.0915885 0.128321 0.0362439 Vertex 12943 -0.0777504 0.112676 -0.00382147 Vertex 12944 0.0397669 0.0885289 -0.0117744 Vertex 12945 -0.0930152 0.116045 0.0163142 Vertex 12946 -0.0887855 0.102363 0.0143842 Vertex 12947 -0.0895811 0.137877 0.0241855 Vertex 12948 -0.0922724 0.125575 0.0332589 Vertex 12949 -0.0868724 0.106357 0.0173489 Vertex 12950 -0.087237 0.106355 0.0143591 Vertex 12951 0.0446574 0.0720977 0.0012022 Vertex 12952 0.0441531 0.0720542 0.000197496 Vertex 12953 0.0437393 0.0720229 -0.000789276 Vertex 12954 0.0434944 0.0719976 -0.00179535 Vertex 12955 0.0432611 0.071972 -0.00279979 Vertex 12956 0.0429791 0.071952 -0.00379352 Vertex 12957 0.0426284 0.0719164 -0.00480026 Vertex 12958 0.0423416 0.0718943 -0.00578991 Vertex 12959 0.0418633 0.0718502 -0.00680416 Vertex 12960 0.0413467 0.0718054 -0.00779903 Vertex 12961 0.0407806 0.0717592 -0.0087638 Vertex 12962 0.0401652 0.0717052 -0.00977551 Vertex 12963 0.0394261 0.0716433 -0.0107927 Vertex 12964 0.0386477 0.0715748 -0.0117783 Vertex 12965 0.0375264 0.0714822 -0.0127977 Vertex 12966 0.0363865 0.0713868 -0.0138007 Vertex 12967 0.0355169 0.0713149 -0.0148173 Vertex 12968 0.0347214 0.0712416 -0.0157876 Vertex 12969 0.0338477 0.0711662 -0.016803 Vertex 12970 0.0329357 0.0710876 -0.0177809 Vertex 12971 0.0318609 0.0710037 -0.0187224 Vertex 12972 0.0306903 0.0708797 -0.0198199 Vertex 12973 0.0300166 0.0708304 -0.0207823 Vertex 12974 0.0291436 0.0707502 -0.0218013 Vertex 12975 0.0282076 0.0706829 -0.0227535 Vertex 12976 0.012958 0.0904818 -0.0298536 Vertex 12977 0.0143759 0.121374 -0.0108038 Vertex 12978 -0.0251636 0.119759 -0.0107128 Vertex 12979 -0.0701499 0.0695315 0.0320822 Vertex 12980 -0.0714649 0.159596 -0.0419316 Vertex 12981 -0.0866591 0.107689 0.0123597 Vertex 12982 -0.0737739 0.0878479 -0.0153893 Vertex 12983 -0.0928802 0.118867 0.0402859 Vertex 12984 -0.087769 0.118492 0.00124641 Vertex 12985 -0.0846424 0.139002 0.00130344 Vertex 12986 -0.0922485 0.120133 0.0292903 Vertex 12987 -0.0923422 0.120143 0.0302906 Vertex 12988 -0.0907748 0.12133 0.00629364 Vertex 12989 -0.0902987 0.121315 0.00530766 Vertex 12990 -0.016347 0.159993 -0.0102438 Vertex 12991 -0.0620847 0.166243 -0.0515916 Vertex 12992 -0.0121936 0.163667 -0.0136225 Vertex 12993 -0.0733885 0.111282 0.0466166 Vertex 12994 -0.0885594 0.112819 0.0222051 Vertex 12995 -0.0621482 0.16155 -0.0395978 Vertex 12996 0.0429565 0.0986678 0.00218951 Vertex 12997 -0.0870553 0.118453 0.000244653 Vertex 12998 -0.0310386 0.154131 -0.00157547 Vertex 12999 -0.057289 0.0707546 0.0390509 Vertex 13000 -0.0495471 0.140136 0.00640196 Vertex 13001 -0.0616651 0.174109 -0.0575903 Vertex 13002 -0.03015 0.171175 -0.0170282 Vertex 13003 0.0449549 0.0889654 0.0201657 Vertex 13004 -0.0857094 0.107615 0.00636703 Vertex 13005 -0.0616196 0.156864 -0.0215888 Vertex 13006 0.0423754 0.100105 0.0181719 Vertex 13007 0.0422118 0.100079 0.0191646 Vertex 13008 0.0427075 0.100107 0.0161639 Vertex 13009 -0.062465 0.163086 -0.0495893 Vertex 13010 -0.0946116 0.124177 0.0212718 Vertex 13011 0.045537 0.0890033 0.0131643 Vertex 13012 -0.0898664 0.135182 0.0372006 Vertex 13013 -0.0628566 0.145948 -0.0105775 Vertex 13014 -0.0901978 0.11358 0.0212183 Vertex 13015 -0.0863431 0.112514 0.0302243 Vertex 13016 -0.0525878 0.149334 0.020403 Vertex 13017 -0.0528261 0.149337 0.0214103 Vertex 13018 -0.0624127 0.150637 -0.0175763 Vertex 13019 -0.0625194 0.150622 -0.0185752 Vertex 13020 -0.062529 0.150617 -0.0195776 Vertex 13021 -0.0622273 0.163125 -0.0345932 Vertex 13022 0.0448141 0.0889533 0.0211601 Vertex 13023 -0.0528028 0.0666303 0.0365007 Vertex 13024 -0.0541353 0.147754 0.0254132 Vertex 13025 0.0428254 0.0986969 0.0191637 Vertex 13026 0.0446015 0.0889424 0.0221651 Vertex 13027 0.0433237 0.0846089 -0.00479162 Vertex 13028 0.0442902 0.0875035 0.0241471 Vertex 13029 0.0450904 0.0875663 0.0201674 Vertex 13030 -0.0630692 0.153725 -0.0105955 Vertex 13031 0.0456643 0.0876028 0.0121678 Vertex 13032 0.0433553 0.0860087 -0.00480358 Vertex 13033 0.0438288 0.0860483 -0.00379124 Vertex 13034 -0.0883846 0.119913 0.00130167 Vertex 13035 -0.0679376 0.162368 -0.0549778 Vertex 13036 -0.0627029 0.150609 -0.0235776 Vertex 13037 -0.0908751 0.135104 0.0182068 Vertex 13038 -0.0264587 0.0902029 -0.033595 Vertex 13039 0.0457702 0.0735931 0.00320764 Vertex 13040 0.0453728 0.0735622 0.00221503 Vertex 13041 0.0448472 0.0735234 0.00122364 Vertex 13042 0.0444193 0.0734774 0.000193217 Vertex 13043 0.0440337 0.0734407 -0.000804833 Vertex 13044 0.0437981 0.0734503 -0.00176783 Vertex 13045 0.0434836 0.0734019 -0.00279222 Vertex 13046 0.0431065 0.0733659 -0.00379081 Vertex 13047 0.042732 0.0733313 -0.00479409 Vertex 13048 0.0423481 0.0732982 -0.00579253 Vertex 13049 0.041918 0.0732584 -0.00676718 Vertex 13050 0.0413134 0.0732089 -0.00778125 Vertex 13051 0.0406726 0.0731516 -0.00877611 Vertex 13052 0.0399619 0.0730961 -0.00981181 Vertex 13053 0.0392199 0.073038 -0.0108301 Vertex 13054 0.0384815 0.0729589 -0.0117402 Vertex 13055 0.0371376 0.0728556 -0.0127896 Vertex 13056 0.0359341 0.0727624 -0.0138488 Vertex 13057 0.0352424 0.0726953 -0.0147969 Vertex 13058 0.0344602 0.0726275 -0.0157808 Vertex 13059 0.0336358 0.0725575 -0.0168317 Vertex 13060 0.0329366 0.0724958 -0.0177814 Vertex 13061 0.0321511 0.0724311 -0.0187615 Vertex 13062 0.0311541 0.072342 -0.0197804 Vertex 13063 0.0302861 0.0722616 -0.0207987 Vertex 13064 0.0293781 0.0721886 -0.0217847 Vertex 13065 0.0284436 0.0721192 -0.0227379 Vertex 13066 0.0147132 0.0897404 -0.0290836 Vertex 13067 -0.0892011 0.0983026 0.0104143 Vertex 13068 -0.0928057 0.124227 0.0372672 Vertex 13069 -0.0897017 0.151503 0.0171224 Vertex 13070 -0.089716 0.139255 0.0241831 Vertex 13071 -0.0123225 0.124091 -0.00743567 Vertex 13072 -0.0866911 0.107697 0.0133542 Vertex 13073 -0.0688005 0.087996 -0.0171065 Vertex 13074 -0.0921507 0.129567 0.0102504 Vertex 13075 -0.0511894 0.0558131 0.0154354 Vertex 13076 -0.0403541 0.121097 -0.0120881 Vertex 13077 -0.0923082 0.120116 0.0282975 Vertex 13078 -0.0926124 0.120126 0.0272917 Vertex 13079 -0.0920663 0.121362 0.00826874 Vertex 13080 -0.0914924 0.12135 0.00727423 Vertex 13081 -0.0926366 0.121498 0.0312794 Vertex 13082 0.0431642 0.0987038 0.0171581 Vertex 13083 -0.062446 0.163101 -0.0455941 Vertex 13084 -0.0620712 0.16624 -0.0525885 Vertex 13085 0.0443232 0.0889197 0.0231574 Vertex 13086 -0.0295473 0.0358282 0.0521362 Vertex 13087 -0.0624126 0.161536 -0.0416011 Vertex 13088 -0.0622845 0.161545 -0.0405978 Vertex 13089 -0.0116746 0.164119 -0.0176003 Vertex 13090 -0.0907804 0.150219 0.0191245 Vertex 13091 0.044671 0.0931702 0.0171607 Vertex 13092 -0.0308113 0.153953 -0.00248259 Vertex 13093 -0.084288 0.111698 0.0438155 Vertex 13094 -0.04997 0.140123 0.00440621 Vertex 13095 0.0455985 0.0918132 0.00816712 Vertex 13096 -0.0858246 0.111645 0.00429163 Vertex 13097 -0.0874416 0.113109 0.00532366 Vertex 13098 0.0438525 0.0874765 0.0251696 Vertex 13099 -0.0860233 0.102167 0.0034068 Vertex 13100 -0.0624082 0.147544 -0.00957064 Vertex 13101 -0.0521665 0.136903 -0.000627156 Vertex 13102 -0.0784816 0.0755217 0.0287043 Vertex 13103 -0.0618853 0.158437 -0.0215849 Vertex 13104 0.0411669 0.104244 0.0141607 Vertex 13105 -0.0621627 0.163132 -0.0395927 Vertex 13106 -0.0629233 0.149038 -0.01858 Vertex 13107 -0.063685 0.169395 -0.0455915 Vertex 13108 -0.0633941 0.159891 -0.0485891 Vertex 13109 -0.0823617 0.110377 0.0328225 Vertex 13110 -0.0614661 0.174127 -0.0585981 Vertex 13111 -0.0530084 0.149326 0.0224058 Vertex 13112 -0.0400434 0.149481 0.00241998 Vertex 13113 0.0433285 0.0874073 -0.00479371 Vertex 13114 -0.0688901 0.0621533 0.0194032 Vertex 13115 -0.0697195 0.0625059 0.018914 Vertex 13116 -0.0107227 0.165105 -0.0188107 Vertex 13117 -0.061825 0.164563 -0.0576805 Vertex 13118 -0.0620511 0.164652 -0.0545872 Vertex 13119 -0.0621992 0.16466 -0.0525894 Vertex 13120 -0.0622205 0.164668 -0.0515889 Vertex 13121 -0.0620827 0.174072 -0.0556227 Vertex 13122 0.0455542 0.0875891 0.00417683 Vertex 13123 -0.0621725 0.160005 -0.022587 Vertex 13124 -0.0907002 0.137837 0.017198 Vertex 13125 -0.0747588 0.0669346 0.0175421 Vertex 13126 -0.0730559 0.14548 -0.015959 Vertex 13127 -0.0618555 0.155289 -0.0295874 Vertex 13128 0.0465387 0.0750529 0.00819241 Vertex 13129 0.0464517 0.0750534 0.00718936 Vertex 13130 0.0463863 0.075041 0.00619921 Vertex 13131 0.0461994 0.0750316 0.00518987 Vertex 13132 0.0460119 0.0750141 0.00420589 Vertex 13133 0.0457402 0.0749932 0.00321166 Vertex 13134 0.0453833 0.074968 0.00220665 Vertex 13135 0.0450172 0.0749324 0.00120229 Vertex 13136 0.0447259 0.0749152 0.000215102 Vertex 13137 0.0443985 0.0748779 -0.000803542 Vertex 13138 0.0441279 0.0748554 -0.00179683 Vertex 13139 0.0436422 0.0748109 -0.00280304 Vertex 13140 0.0432399 0.0747788 -0.00379578 Vertex 13141 0.0427329 0.0747306 -0.00479562 Vertex 13142 0.0422621 0.0746939 -0.00581448 Vertex 13143 0.0417928 0.0746499 -0.00676608 Vertex 13144 0.0411805 0.0745986 -0.0077775 Vertex 13145 0.0404486 0.0745397 -0.00879543 Vertex 13146 0.0396972 0.0744788 -0.00980523 Vertex 13147 0.0390327 0.0744186 -0.0107818 Vertex 13148 0.0381305 0.0743398 -0.0117665 Vertex 13149 0.0368421 0.0742334 -0.0127504 Vertex 13150 0.0357477 0.074144 -0.0137952 Vertex 13151 0.0351077 0.0740897 -0.0147891 Vertex 13152 0.0343469 0.0740244 -0.0157906 Vertex 13153 0.033587 0.0739599 -0.0167921 Vertex 13154 0.0328626 0.0738919 -0.0178203 Vertex 13155 0.0323759 0.0738626 -0.0187418 Vertex 13156 0.031592 0.0738009 -0.0197207 Vertex 13157 0.0306214 0.073711 -0.0207585 Vertex 13158 0.029581 0.0736246 -0.0217333 Vertex 13159 0.0285394 0.0735396 -0.0227021 Vertex 13160 -0.0356976 0.121856 -0.0088333 Vertex 13161 -0.0893331 0.0983151 0.0114073 Vertex 13162 -0.0880973 0.137764 0.00820327 Vertex 13163 -0.0726673 0.155437 -0.0339106 Vertex 13164 -0.0816033 0.101897 -0.00556882 Vertex 13165 -0.0179573 0.123303 -0.00653742 Vertex 13166 -0.0867595 0.107707 0.0143554 Vertex 13167 -0.0471272 0.159118 -0.00765489 Vertex 13168 -0.0909349 0.113307 0.0123445 Vertex 13169 -0.0911602 0.113316 0.0133388 Vertex 13170 0.0286778 0.116188 -0.00517917 Vertex 13171 -0.0610597 0.172553 -0.0606091 Vertex 13172 -0.0925801 0.120153 0.0312943 Vertex 13173 -0.0929281 0.121393 0.0102886 Vertex 13174 -0.0926147 0.121379 0.00928006 Vertex 13175 -0.0928035 0.121507 0.0322842 Vertex 13176 0.0445099 0.0945603 0.0161557 Vertex 13177 0.044397 0.0945546 0.0171571 Vertex 13178 -0.0619824 0.166238 -0.0535924 Vertex 13179 -0.0631947 0.163133 -0.0265887 Vertex 13180 0.0437965 0.0987467 0.00816432 Vertex 13181 -0.0615047 0.167821 -0.0555677 Vertex 13182 -0.0118859 0.163867 -0.0168515 Vertex 13183 -0.0590026 0.0609591 0.0242669 Vertex 13184 -0.0621779 0.061949 0.0245023 Vertex 13185 -0.0497158 0.140127 0.00540861 Vertex 13186 -0.0809179 0.0761444 0.0241516 Vertex 13187 -0.0880049 0.11182 0.00834875 Vertex 13188 -0.0864043 0.111678 0.00530063 Vertex 13189 -0.0512476 0.149342 0.0143776 Vertex 13190 -0.051601 0.149349 0.0154046 Vertex 13191 -0.0897198 0.135201 0.0382086 Vertex 13192 -0.062219 0.164671 -0.0505894 Vertex 13193 -0.0623583 0.164673 -0.0485921 Vertex 13194 -0.0640462 0.0622661 0.0238361 Vertex 13195 -0.0624763 0.163084 -0.0515885 Vertex 13196 -0.0623836 0.163016 -0.0556039 Vertex 13197 0.0421385 0.102872 0.00916356 Vertex 13198 0.0419441 0.102888 0.00516309 Vertex 13199 -0.0104184 0.179993 -0.0295246 Vertex 13200 -0.093475 0.1283 0.0242551 Vertex 13201 -0.0524497 0.140085 0.0234103 Vertex 13202 -0.0682817 0.156606 -0.0532672 Vertex 13203 -0.0918049 0.126804 0.00826817 Vertex 13204 -0.066871 0.0626922 0.0228964 Vertex 13205 -0.0366167 0.15106 0.000396988 Vertex 13206 0.0432765 0.10012 0.00816425 Vertex 13207 -0.0742229 0.109724 0.0423296 Vertex 13208 -0.0705529 0.0628294 0.0184736 Vertex 13209 -0.0654801 0.0675388 0.0330326 Vertex 13210 -0.0868755 0.112781 0.0262639 Vertex 13211 0.0446756 0.091763 0.0191604 Vertex 13212 -0.0588392 0.0371017 0.0463605 Vertex 13213 -0.0623369 0.16467 -0.04959 Vertex 13214 -0.0623602 0.164675 -0.0475927 Vertex 13215 -0.0520173 0.146257 0.0174096 Vertex 13216 -0.0516778 0.140064 0.0213757 Vertex 13217 0.0456484 0.0875951 0.00518134 Vertex 13218 0.0439647 0.0888964 0.0241631 Vertex 13219 0.0465562 0.0764652 0.0121829 Vertex 13220 0.0465334 0.07646 0.0111853 Vertex 13221 0.0464507 0.0764566 0.0101865 Vertex 13222 0.046481 0.0764536 0.00918999 Vertex 13223 0.0464212 0.0764513 0.00819032 Vertex 13224 0.0463722 0.0764454 0.00719365 Vertex 13225 0.0462734 0.0764388 0.00619417 Vertex 13226 0.0461397 0.0764263 0.0052018 Vertex 13227 0.0458945 0.0764062 0.00420006 Vertex 13228 0.045657 0.07639 0.00319799 Vertex 13229 0.045415 0.0763654 0.00219579 Vertex 13230 0.0452304 0.0763569 0.00121116 Vertex 13231 0.0449154 0.0763231 0.00019353 Vertex 13232 0.0446565 0.076299 -0.00080692 Vertex 13233 0.0443433 0.0762807 -0.00178421 Vertex 13234 0.0438483 0.076237 -0.00278527 Vertex 13235 0.0433489 0.0761902 -0.00378764 Vertex 13236 0.0428335 0.076148 -0.00478426 Vertex 13237 0.0422446 0.0760949 -0.00580476 Vertex 13238 0.0417455 0.0760505 -0.00673474 Vertex 13239 0.0410535 0.0759945 -0.00777525 Vertex 13240 0.0401892 0.0759203 -0.00879733 Vertex 13241 0.0394635 0.075864 -0.00982057 Vertex 13242 0.0386856 0.0757975 -0.0108084 Vertex 13243 0.0377573 0.0757194 -0.0117756 Vertex 13244 0.0365014 0.0756142 -0.0127863 Vertex 13245 0.0358746 0.0755562 -0.0137901 Vertex 13246 0.0352588 0.0755049 -0.0148105 Vertex 13247 0.0345167 0.0754586 -0.0157294 Vertex 13248 0.0336664 0.0753805 -0.0167583 Vertex 13249 0.0329576 0.0753133 -0.0177979 Vertex 13250 0.0324248 0.0752705 -0.0187807 Vertex 13251 0.0317565 0.0752189 -0.019756 Vertex 13252 0.0308475 0.0751439 -0.0207339 Vertex 13253 -0.0466697 0.166955 -0.00590454 Vertex 13254 -0.0824868 0.0965084 -0.00559576 Vertex 13255 0.0425177 0.0660617 -0.00221978 Vertex 13256 -0.0678094 0.180556 -0.0587896 Vertex 13257 -0.0824261 0.101938 -0.00456304 Vertex 13258 -0.0875967 0.100907 0.00640641 Vertex 13259 -0.086583 0.1077 0.0153543 Vertex 13260 -0.0864626 0.107749 0.0163884 Vertex 13261 -0.0865442 0.107736 0.017365 Vertex 13262 -0.0907186 0.113289 0.0113419 Vertex 13263 -0.00322809 0.0999661 -0.0238789 Vertex 13264 -0.0930264 0.120177 0.0342925 Vertex 13265 -0.0927311 0.120157 0.0322864 Vertex 13266 -0.0934924 0.121416 0.0122906 Vertex 13267 -0.0932554 0.121405 0.0112928 Vertex 13268 -0.0928405 0.121514 0.033281 Vertex 13269 -0.0855548 0.125248 -0.00272359 Vertex 13270 0.0438711 0.0959127 0.00218342 Vertex 13271 -0.0616803 0.166235 -0.0555923 Vertex 13272 -0.0618365 0.166237 -0.0545929 Vertex 13273 0.0437289 0.0987183 0.00617361 Vertex 13274 0.0437866 0.098742 0.00716534 Vertex 13275 -0.0615198 0.167807 -0.0565879 Vertex 13276 -0.0368558 0.0971787 -0.022608 Vertex 13277 -0.0498057 0.144755 0.010389 Vertex 13278 -0.0909094 0.114612 0.0400043 Vertex 13279 -0.0499442 0.140127 0.0163925 Vertex 13280 0.0435982 0.0888699 0.0251665 Vertex 13281 0.0431163 0.0888383 0.0261767 Vertex 13282 -0.0532082 0.149319 0.0233918 Vertex 13283 -0.0538672 0.149311 0.025406 Vertex 13284 0.0448665 0.0945715 0.00517989 Vertex 13285 0.0422255 0.0887323 -0.00780894 Vertex 13286 -0.0913745 0.142001 0.0211607 Vertex 13287 -0.0705862 0.166615 -0.0490027 Vertex 13288 -0.0942425 0.120105 0.0182851 Vertex 13289 -0.0906385 0.147509 0.0131579 Vertex 13290 0.0443454 0.0903358 0.0221636 Vertex 13291 -0.0912936 0.114724 0.0218532 Vertex 13292 0.0420895 0.102851 0.00717012 Vertex 13293 0.0413547 0.102812 0.0011821 Vertex 13294 0.0388283 0.102661 -0.00481845 Vertex 13295 0.0440882 0.090317 0.0231627 Vertex 13296 -0.078089 0.159705 -0.0229182 Vertex 13297 -0.0732448 0.144163 -0.0109449 Vertex 13298 -0.0618131 0.161554 -0.0315928 Vertex 13299 -0.048904 0.144756 0.0084067 Vertex 13300 0.042729 0.0901813 -0.0058099 Vertex 13301 -0.0476612 0.135572 0.0133995 Vertex 13302 0.044574 0.0903504 0.0211613 Vertex 13303 0.0448529 0.0917799 0.0171662 Vertex 13304 -0.0621573 0.163143 -0.0375929 Vertex 13305 -0.0136298 0.0943834 -0.0340901 Vertex 13306 0.0439472 0.0917185 0.0231564 Vertex 13307 -0.0723294 0.177884 -0.0550149 Vertex 13308 0.0216437 0.120011 -0.00733339 Vertex 13309 -0.0870689 0.0968011 0.00243877 Vertex 13310 0.0463963 0.0778578 0.0141787 Vertex 13311 0.0464379 0.0778615 0.0131806 Vertex 13312 0.0464938 0.0778639 0.0121785 Vertex 13313 0.0465019 0.0778624 0.0111839 Vertex 13314 0.0464355 0.0778581 0.0101835 Vertex 13315 0.0464068 0.0778555 0.00918735 Vertex 13316 0.04631 0.0778469 0.00818385 Vertex 13317 0.0462675 0.0778418 0.00718957 Vertex 13318 0.0461841 0.0778325 0.00618859 Vertex 13319 0.0460436 0.0778241 0.00519064 Vertex 13320 0.0458885 0.0778077 0.00419775 Vertex 13321 0.045728 0.077798 0.00320493 Vertex 13322 0.0455105 0.0777762 0.00219892 Vertex 13323 0.0452801 0.0777562 0.00119407 Vertex 13324 0.0451032 0.0777437 0.000209071 Vertex 13325 0.0447742 0.0777119 -0.00080388 Vertex 13326 0.0444401 0.0776895 -0.00177282 Vertex 13327 0.0439709 0.0776452 -0.00278508 Vertex 13328 0.043463 0.077603 -0.00378219 Vertex 13329 0.0429126 0.0775596 -0.00475805 Vertex 13330 0.042296 0.0775058 -0.00576261 Vertex 13331 0.0416044 0.0774454 -0.0068035 Vertex 13332 0.0409145 0.07739 -0.0077683 Vertex 13333 0.0400692 0.0773178 -0.00879643 Vertex 13334 0.0394034 0.0772645 -0.00977482 Vertex 13335 0.0386441 0.0772022 -0.0107761 Vertex 13336 0.0377538 0.0771288 -0.0117747 Vertex 13337 0.0369017 0.0770479 -0.0128074 Vertex 13338 0.0362901 0.0769906 -0.0138255 Vertex 13339 0.0356786 0.076967 -0.014745 Vertex 13340 0.0347555 0.0768972 -0.0157225 Vertex 13341 0.0338293 0.0767952 -0.0167877 Vertex 13342 0.0333063 0.076755 -0.0177777 Vertex 13343 0.03267 0.0767015 -0.0187757 Vertex 13344 0.0319543 0.0766492 -0.0197037 Vertex 13345 0.030786 0.0765476 -0.0208061 Vertex 13346 -0.0927289 0.125458 0.0102641 Vertex 13347 -0.0890273 0.0956446 0.021399 Vertex 13348 -0.0834239 0.0965619 -0.00458039 Vertex 13349 -0.0707759 0.162402 -0.0459559 Vertex 13350 -0.0883368 0.137775 0.00920322 Vertex 13351 -0.0252945 0.179999 -0.0179968 Vertex 13352 -0.0831709 0.101988 -0.00359129 Vertex 13353 -0.0852211 0.103481 0.00138673 Vertex 13354 -0.0922901 0.125582 0.0342578 Vertex 13355 -0.0817516 0.140386 -0.000790241 Vertex 13356 -0.0862889 0.10771 0.0183439 Vertex 13357 -0.0903031 0.113239 0.0103302 Vertex 13358 0.0326595 0.114633 -0.00147403 Vertex 13359 -0.0626019 0.174089 -0.0546038 Vertex 13360 -0.0929242 0.120168 0.0332909 Vertex 13361 -0.0939567 0.121435 0.0142863 Vertex 13362 -0.0937263 0.121427 0.0132848 Vertex 13363 -0.011946 0.163588 -0.0146751 Vertex 13364 -0.0894255 0.0956236 0.0134235 Vertex 13365 -0.0888328 0.0942898 0.0224093 Vertex 13366 -0.0614834 0.166203 -0.0576271 Vertex 13367 -0.0616183 0.16622 -0.0565931 Vertex 13368 0.00417139 0.0894659 -0.0333631 Vertex 13369 0.0427594 0.0986702 0.00117933 Vertex 13370 -0.062488 0.161561 -0.0255895 Vertex 13371 0.0434133 0.0930689 -0.00182579 Vertex 13372 -0.0507025 0.140081 0.0193694 Vertex 13373 -0.0615859 0.155307 -0.0235819 Vertex 13374 -0.0471129 0.13404 0.0104021 Vertex 13375 0.0424823 0.0958192 -0.00180898 Vertex 13376 -0.0511023 0.141628 0.018382 Vertex 13377 -0.0506782 0.141637 0.0173818 Vertex 13378 -0.0504724 0.141671 0.0164028 Vertex 13379 -0.0502115 0.141667 0.015397 Vertex 13380 -0.0494839 0.141682 0.00839735 Vertex 13381 -0.0495274 0.14168 0.00739502 Vertex 13382 0.0438612 0.0930832 -0.000804157 Vertex 13383 -0.0859116 0.107692 0.0193681 Vertex 13384 0.0371254 0.0869172 -0.0157926 Vertex 13385 -0.0622887 0.152203 -0.0145776 Vertex 13386 0.0429025 0.100097 0.0151567 Vertex 13387 0.0430409 0.10011 0.0131585 Vertex 13388 0.0406669 0.102735 -0.000789188 Vertex 13389 0.0418243 0.102828 0.00318021 Vertex 13390 -0.0388448 0.0971399 -0.0223049 Vertex 13391 0.00561249 0.0927088 -0.0322048 Vertex 13392 -0.0897234 0.125377 0.0042981 Vertex 13393 -0.0480228 0.144604 0.00545108 Vertex 13394 -0.0618544 0.174099 -0.0565963 Vertex 13395 -0.0500088 0.124901 -0.00796654 Vertex 13396 -0.0848075 0.100731 -0.000569426 Vertex 13397 0.0397017 0.104178 0.024171 Vertex 13398 -0.0719446 0.159605 -0.0399328 Vertex 13399 -0.0755817 0.14859 -0.0148673 Vertex 13400 -0.0884887 0.122612 0.00129126 Vertex 13401 0.0461634 0.0792418 0.0171768 Vertex 13402 0.0461889 0.0792428 0.016179 Vertex 13403 0.0462561 0.0792459 0.0151754 Vertex 13404 0.0463019 0.07925 0.0141776 Vertex 13405 0.0463796 0.0792543 0.0131749 Vertex 13406 0.0464006 0.0792571 0.0121793 Vertex 13407 0.0464344 0.0792618 0.0111808 Vertex 13408 0.0464307 0.0792576 0.0101822 Vertex 13409 0.0463488 0.0792498 0.00918224 Vertex 13410 0.0463679 0.0792556 0.0081871 Vertex 13411 0.0462936 0.0792458 0.00718673 Vertex 13412 0.0462048 0.0792353 0.00618416 Vertex 13413 0.0461381 0.0792322 0.00519228 Vertex 13414 0.0459393 0.0792136 0.00418579 Vertex 13415 0.0457654 0.0791979 0.00319646 Vertex 13416 0.045527 0.0791773 0.00219591 Vertex 13417 0.0453464 0.0791637 0.00120688 Vertex 13418 0.0451001 0.0791381 0.000209359 Vertex 13419 0.044826 0.0791184 -0.000782084 Vertex 13420 0.0444691 0.0790854 -0.00178456 Vertex 13421 0.0439772 0.079046 -0.00278888 Vertex 13422 0.0434554 0.0790039 -0.00377815 Vertex 13423 0.0428337 0.0789534 -0.0047828 Vertex 13424 0.0422984 0.0789118 -0.00576754 Vertex 13425 0.0417534 0.0788713 -0.00674491 Vertex 13426 0.041033 0.0788113 -0.0077656 Vertex 13427 0.0402499 0.0787503 -0.00875238 Vertex 13428 0.0397193 0.0787183 -0.00974279 Vertex 13429 0.0391307 0.0786589 -0.0107679 Vertex 13430 0.0384699 0.0786144 -0.011749 Vertex 13431 0.037525 0.0785071 -0.0127982 Vertex 13432 0.0369479 0.0784891 -0.0137448 Vertex 13433 0.0360857 0.0784054 -0.0147648 Vertex 13434 0.0351663 0.0783387 -0.0157415 Vertex 13435 0.0342862 0.0782566 -0.0167489 Vertex 13436 0.033576 0.0781814 -0.0177928 Vertex 13437 0.0328071 0.0781213 -0.0187889 Vertex 13438 0.0319638 0.0780558 -0.0197042 Vertex 13439 0.0306136 0.0779431 -0.0207534 Vertex 13440 -0.0927402 0.125562 0.0292626 Vertex 13441 -0.0890914 0.0956431 0.0204208 Vertex 13442 -0.0840733 0.0966087 -0.0036103 Vertex 13443 -0.0711139 0.162407 -0.0449498 Vertex 13444 -0.0906919 0.142015 0.0231619 Vertex 13445 -0.0743245 0.179234 -0.0539852 Vertex 13446 -0.0839359 0.102045 -0.00261805 Vertex 13447 -0.0842531 0.102059 -0.0016008 Vertex 13448 -0.0851088 0.102115 0.000391121 Vertex 13449 -0.0892862 0.137904 0.0301929 Vertex 13450 -0.0881528 0.129472 0.0022725 Vertex 13451 -0.0899231 0.113261 0.00935255 Vertex 13452 0.00304719 0.123088 -0.0105402 Vertex 13453 -0.0477406 0.135604 0.0113959 Vertex 13454 -0.091934 0.128302 0.0312437 Vertex 13455 -0.092242 0.128315 0.0292604 Vertex 13456 -0.094099 0.121442 0.0152795 Vertex 13457 -0.00990982 0.175697 -0.0247542 Vertex 13458 -0.0784525 0.0962411 -0.0105211 Vertex 13459 -0.0585981 0.0658974 0.0341563 Vertex 13460 -0.0160918 0.0359549 0.0514785 Vertex 13461 -0.0288776 0.0903901 -0.0295833 Vertex 13462 -0.0620219 0.161552 -0.0385959 Vertex 13463 -0.0627541 0.166279 -0.0425846 Vertex 13464 -0.0664863 0.0657678 0.0290911 Vertex 13465 -0.0501985 0.140132 0.0173988 Vertex 13466 -0.0503915 0.140104 0.0183826 Vertex 13467 -0.0502406 0.140114 0.00340131 Vertex 13468 -0.0473457 0.134062 0.00939848 Vertex 13469 -0.0515486 0.141607 0.0193759 Vertex 13470 0.0423147 0.091604 0.0271557 Vertex 13471 -0.0631272 0.0656833 0.0316274 Vertex 13472 -0.0738123 0.0655371 0.0172042 Vertex 13473 -0.0500909 0.0358963 0.0459805 Vertex 13474 -0.051271 0.0356477 0.0458842 Vertex 13475 -0.0495589 0.141679 0.00640064 Vertex 13476 -0.051136 0.140067 0.0203692 Vertex 13477 -0.0626407 0.163129 -0.0295903 Vertex 13478 -0.0320536 0.0356449 0.0500425 Vertex 13479 -0.0905235 0.137837 0.0161933 Vertex 13480 0.0431395 0.100108 0.0121576 Vertex 13481 0.0432452 0.100105 0.0111579 Vertex 13482 0.0420581 0.102887 0.0101643 Vertex 13483 -0.0732213 0.156852 -0.0309091 Vertex 13484 -0.0831442 0.107611 0.0263767 Vertex 13485 -0.0508809 0.104197 -0.0202021 Vertex 13486 -0.072488 0.172225 -0.0500329 Vertex 13487 -0.0941295 0.121483 0.024294 Vertex 13488 0.045739 0.0876044 0.00618298 Vertex 13489 0.0458506 0.0876137 0.00718075 Vertex 13490 0.0459022 0.0876188 0.00817319 Vertex 13491 0.0450698 0.0805625 0.0231647 Vertex 13492 0.0453551 0.0805854 0.0221747 Vertex 13493 0.0456498 0.0806034 0.02116 Vertex 13494 0.0459498 0.0806271 0.0191734 Vertex 13495 0.0459653 0.0806289 0.018177 Vertex 13496 0.046037 0.0806318 0.0171753 Vertex 13497 0.0461219 0.0806353 0.0161697 Vertex 13498 0.0461484 0.0806375 0.015174 Vertex 13499 0.046183 0.0806404 0.0141758 Vertex 13500 0.0462743 0.0806463 0.0131736 Vertex 13501 0.0463015 0.0806481 0.0121762 Vertex 13502 0.0463861 0.080656 0.0111753 Vertex 13503 0.0464078 0.0806576 0.0101793 Vertex 13504 0.0463872 0.0806547 0.00917972 Vertex 13505 0.0463101 0.0806468 0.00818141 Vertex 13506 0.046272 0.0806446 0.00718674 Vertex 13507 0.0461867 0.0806341 0.00618373 Vertex 13508 0.0461298 0.0806288 0.00519237 Vertex 13509 0.0459242 0.0806108 0.00418728 Vertex 13510 0.0457502 0.0805926 0.00319942 Vertex 13511 0.045522 0.0805737 0.00219452 Vertex 13512 0.0453408 0.0805541 0.00120995 Vertex 13513 0.0450117 0.0805305 0.000199058 Vertex 13514 0.0446984 0.0804984 -0.000780025 Vertex 13515 0.0442521 0.0804694 -0.00179963 Vertex 13516 0.0438423 0.0804362 -0.00278861 Vertex 13517 0.0433385 0.080395 -0.00378638 Vertex 13518 0.0428587 0.0803554 -0.00479839 Vertex 13519 0.0424477 0.0803262 -0.00578172 Vertex 13520 0.0419394 0.0802864 -0.00678235 Vertex 13521 0.0412418 0.0802411 -0.00774788 Vertex 13522 0.0406749 0.0801882 -0.00878559 Vertex 13523 0.0401736 0.0801429 -0.00978947 Vertex 13524 0.0397235 0.080129 -0.010751 Vertex 13525 0.0391332 0.0800655 -0.0117735 Vertex 13526 0.0385368 0.0800568 -0.0127167 Vertex 13527 0.0377117 0.0799594 -0.0137509 Vertex 13528 0.0369068 0.0799159 -0.0147176 Vertex 13529 0.0359194 0.0798211 -0.0157295 Vertex 13530 0.0350128 0.0797448 -0.0167143 Vertex 13531 0.0339767 0.0796167 -0.0178174 Vertex 13532 0.0331161 0.0795687 -0.0187107 Vertex 13533 0.0317521 0.0794454 -0.0197442 Vertex 13534 -0.0894168 0.0942943 0.0184246 Vertex 13535 -0.0692347 0.176505 -0.0570351 Vertex 13536 -0.0892037 0.0956419 0.0194144 Vertex 13537 -0.0834882 0.14321 0.00316117 Vertex 13538 -0.070351 0.158156 -0.0469171 Vertex 13539 -0.0764024 0.150045 -0.00692327 Vertex 13540 -0.0697083 0.1638 -0.0499695 Vertex 13541 -0.0776846 0.16386 -0.0329461 Vertex 13542 -0.0723232 0.163826 -0.0419605 Vertex 13543 -0.0845391 0.102087 -0.000621587 Vertex 13544 -0.0890326 0.125361 0.00330134 Vertex 13545 -0.0898903 0.135179 0.0352087 Vertex 13546 -0.0788429 0.112725 -0.00283498 Vertex 13547 -0.080097 0.11274 -0.00201289 Vertex 13548 -0.0941834 0.120103 0.0162919 Vertex 13549 -0.061863 0.0953699 -0.0186332 Vertex 13550 -0.0275751 0.181449 -0.0130337 Vertex 13551 -0.0943085 0.12145 0.0162821 Vertex 13552 -0.0621913 0.163125 -0.0405922 Vertex 13553 -0.0635554 0.166233 -0.0355972 Vertex 13554 -0.0637097 0.166224 -0.0345967 Vertex 13555 -0.0633588 0.166271 -0.0375898 Vertex 13556 -0.0896333 0.0929554 0.018431 Vertex 13557 -0.0509182 0.146274 0.0133981 Vertex 13558 -0.0619148 0.161553 -0.037594 Vertex 13559 -0.0633409 0.155276 -0.011594 Vertex 13560 -0.0596786 0.0738084 0.0412039 Vertex 13561 -0.07448 0.0662148 0.0164657 Vertex 13562 -0.0729302 0.110914 0.0452396 Vertex 13563 -0.0767072 0.0724697 0.0281768 Vertex 13564 -0.0865855 0.100865 0.00437928 Vertex 13565 -0.0527141 0.141625 0.0234145 Vertex 13566 -0.0622517 0.147555 -0.00557481 Vertex 13567 0.045113 0.0861573 0.00219478 Vertex 13568 -0.0622605 0.152178 -0.0225796 Vertex 13569 -0.0623945 0.164686 -0.0405941 Vertex 13570 -0.0497252 0.141657 0.00538484 Vertex 13571 -0.052457 0.144675 0.0183665 Vertex 13572 -0.0617229 0.155313 -0.01958 Vertex 13573 -0.062948 0.163113 -0.0275941 Vertex 13574 -0.0665305 0.155586 -0.0523326 Vertex 13575 -0.0623918 0.152158 -0.026581 Vertex 13576 0.0420203 0.102869 0.0111608 Vertex 13577 -0.0627936 0.15522 -0.0356106 Vertex 13578 0.0447325 0.0931835 0.0161662 Vertex 13579 -0.0693701 0.141497 -0.00893397 Vertex 13580 -0.0702669 0.176516 -0.0559875 Vertex 13581 0.0378591 0.102628 -0.00683982 Vertex 13582 0.0413233 0.102851 0.0171643 Vertex 13583 -0.0768403 0.0682209 0.0124564 Vertex 13584 0.0459041 0.087617 0.00917007 Vertex 13585 0.044284 0.0819099 0.0251484 Vertex 13586 0.044563 0.0819287 0.0241608 Vertex 13587 0.0449291 0.081953 0.02316 Vertex 13588 0.045212 0.0819736 0.0221688 Vertex 13589 0.0454654 0.0819915 0.0211715 Vertex 13590 0.0456344 0.0820067 0.0201819 Vertex 13591 0.0457999 0.0820138 0.0191697 Vertex 13592 0.0458177 0.0820138 0.0181729 Vertex 13593 0.0458863 0.0820184 0.0171704 Vertex 13594 0.045976 0.0820209 0.01617 Vertex 13595 0.0460317 0.0820288 0.0151733 Vertex 13596 0.0460542 0.0820303 0.0141751 Vertex 13597 0.0461391 0.0820336 0.0131698 Vertex 13598 0.0461918 0.0820393 0.0121748 Vertex 13599 0.0462789 0.0820452 0.011174 Vertex 13600 0.0463102 0.0820482 0.0101764 Vertex 13601 0.0463117 0.0820487 0.00917902 Vertex 13602 0.0462948 0.0820457 0.00817944 Vertex 13603 0.046259 0.0820395 0.0071847 Vertex 13604 0.0461456 0.0820314 0.0061875 Vertex 13605 0.0460131 0.0820178 0.0051921 Vertex 13606 0.04586 0.0820013 0.00419826 Vertex 13607 0.0456361 0.0819814 0.00319705 Vertex 13608 0.0454568 0.0819591 0.00221362 Vertex 13609 0.0450752 0.0819431 0.00117926 Vertex 13610 0.0447595 0.0819096 0.000199099 Vertex 13611 0.0443742 0.0818795 -0.000800454 Vertex 13612 0.0440001 0.081852 -0.00180195 Vertex 13613 0.0436968 0.0818627 -0.00278544 Vertex 13614 0.0433462 0.0818009 -0.00379375 Vertex 13615 0.04296 0.0817702 -0.00479044 Vertex 13616 0.04256 0.0817421 -0.00578018 Vertex 13617 0.0420458 0.0817019 -0.00677657 Vertex 13618 0.0415325 0.0816649 -0.00777347 Vertex 13619 0.0411083 0.0816433 -0.00876203 Vertex 13620 0.0406639 0.0815903 -0.00978474 Vertex 13621 0.0402398 0.0815675 -0.0107641 Vertex 13622 0.0396568 0.0815034 -0.0117853 Vertex 13623 0.0390954 0.0814754 -0.0127535 Vertex 13624 0.0384545 0.081427 -0.0137424 Vertex 13625 0.0377831 0.0813859 -0.0147095 Vertex 13626 0.0367009 0.0812747 -0.0157528 Vertex 13627 0.0358807 0.0812282 -0.0166923 Vertex 13628 0.0347498 0.081125 -0.0176886 Vertex 13629 -0.0893861 0.0943037 0.0204146 Vertex 13630 -0.0894416 0.0943032 0.0194238 Vertex 13631 -0.0371011 0.0461641 -0.0234326 Vertex 13632 -0.0892997 0.0956389 0.0174174 Vertex 13633 -0.086732 0.125284 -0.00171301 Vertex 13634 -0.0694684 0.158126 -0.0509379 Vertex 13635 -0.0823003 0.143183 0.00115625 Vertex 13636 -0.079388 0.147286 -0.00182539 Vertex 13637 -0.0776167 0.145877 -0.00384676 Vertex 13638 -0.0774489 0.163906 -0.0229523 Vertex 13639 -0.0876033 0.102265 0.00739801 Vertex 13640 -0.0891434 0.137902 0.0291936 Vertex 13641 -0.0898981 0.135185 0.0362087 Vertex 13642 0.00198723 0.123051 -0.0105036 Vertex 13643 -0.0930714 0.12018 0.0352857 Vertex 13644 -0.0931568 0.120191 0.0362904 Vertex 13645 -0.0864106 0.136323 0.00223079 Vertex 13646 -0.0944184 0.12146 0.0172829 Vertex 13647 -0.0634822 0.166302 -0.0366942 Vertex 13648 -0.0632393 0.166259 -0.0385929 Vertex 13649 -0.0626731 0.158367 -0.0396045 Vertex 13650 -0.063425 0.163107 -0.0254606 Vertex 13651 -0.0622179 0.153696 -0.0295936 Vertex 13652 -0.0627129 0.161593 -0.024579 Vertex 13653 -0.0616004 0.15843 -0.0275855 Vertex 13654 -0.0484658 0.144752 0.00741107 Vertex 13655 -0.0627516 0.145959 -0.00957815 Vertex 13656 -0.0652725 0.0613084 0.02088 Vertex 13657 -0.050675 0.140101 0.0024044 Vertex 13658 -0.0526204 0.141613 0.022402 Vertex 13659 -0.0492665 0.143175 0.00640774 Vertex 13660 -0.0620033 0.158406 -0.0355965 Vertex 13661 -0.0618685 0.158412 -0.0345942 Vertex 13662 0.0442849 0.0945485 0.0181566 Vertex 13663 -0.0631137 0.14437 -0.00863045 Vertex 13664 -0.0498122 0.141672 0.00439987 Vertex 13665 -0.0501485 0.141642 0.00337658 Vertex 13666 -0.0614458 0.0606683 0.0222701 Vertex 13667 -0.0616357 0.158429 -0.0245888 Vertex 13668 0.0456048 0.0918125 0.0071715 Vertex 13669 0.0398543 0.102779 0.025179 Vertex 13670 -0.00909377 0.175718 -0.0267745 Vertex 13671 -0.0616418 0.158426 -0.0235923 Vertex 13672 0.0420573 0.0943632 -0.00379153 Vertex 13673 -0.0277533 0.155598 -0.00253083 Vertex 13674 -0.0630387 0.15529 -0.0125891 Vertex 13675 -0.0613597 0.172535 -0.0585911 Vertex 13676 0.043481 0.0832455 0.0271768 Vertex 13677 0.0458421 0.0876102 0.0101629 Vertex 13678 0.0442188 0.0833029 0.0251703 Vertex 13679 0.0445886 0.0833307 0.0241696 Vertex 13680 0.0448639 0.0833492 0.023175 Vertex 13681 0.0451476 0.0833704 0.0221542 Vertex 13682 0.0453289 0.0833826 0.0211694 Vertex 13683 0.0455396 0.083395 0.0201668 Vertex 13684 0.0455932 0.0834007 0.019176 Vertex 13685 0.0456648 0.0834028 0.0181693 Vertex 13686 0.0457459 0.0834058 0.0171675 Vertex 13687 0.0458044 0.0834139 0.0161713 Vertex 13688 0.0458872 0.0834155 0.0151706 Vertex 13689 0.0459174 0.0834201 0.0141703 Vertex 13690 0.0460037 0.0834239 0.0131685 Vertex 13691 0.046059 0.0834308 0.0121726 Vertex 13692 0.0461434 0.0834347 0.0111711 Vertex 13693 0.0461779 0.083439 0.010174 Vertex 13694 0.0462595 0.0834414 0.00917612 Vertex 13695 0.0461952 0.0834391 0.00817714 Vertex 13696 0.0461375 0.0834298 0.00718398 Vertex 13697 0.0460228 0.0834207 0.0061859 Vertex 13698 0.0458454 0.0834099 0.00517797 Vertex 13699 0.0456753 0.0833922 0.00418733 Vertex 13700 0.0453927 0.0833662 0.00319518 Vertex 13701 0.045085 0.0833373 0.00221176 Vertex 13702 0.044722 0.0833037 0.0012072 Vertex 13703 0.044368 0.0832642 0.000211132 Vertex 13704 0.0441357 0.083266 -0.000805736 Vertex 13705 0.0439403 0.083251 -0.00181959 Vertex 13706 0.0437634 0.0832354 -0.00281017 Vertex 13707 0.0434814 0.0832239 -0.00379707 Vertex 13708 0.043167 0.0831963 -0.0047762 Vertex 13709 0.0427074 0.0831548 -0.00579292 Vertex 13710 0.0422807 0.0831292 -0.00677447 Vertex 13711 0.0418253 0.0830818 -0.00779351 Vertex 13712 0.0413986 0.0830578 -0.00877387 Vertex 13713 0.0409937 0.0830284 -0.00976566 Vertex 13714 0.0405174 0.0829825 -0.0107762 Vertex 13715 0.0400149 0.0829397 -0.0117765 Vertex 13716 0.0393871 0.0828883 -0.0127786 Vertex 13717 0.0387467 0.0828368 -0.0137708 Vertex 13718 0.0381247 0.0827831 -0.0147803 Vertex 13719 0.0372267 0.0827114 -0.0157704 Vertex 13720 0.0362923 0.0826461 -0.0167222 Vertex 13721 0.0352621 0.0826509 -0.01774 Vertex 13722 -0.0556554 0.124247 -0.00722427 Vertex 13723 -0.0286351 0.0918211 -0.0275955 Vertex 13724 -0.0930784 0.128223 0.0132485 Vertex 13725 -0.0858053 0.0953564 -0.000572964 Vertex 13726 -0.0892157 0.0956404 0.0184193 Vertex 13727 -0.092315 0.125571 0.0312621 Vertex 13728 -0.0904683 0.135081 0.0142287 Vertex 13729 -0.0776003 0.156937 -0.0149108 Vertex 13730 -0.0458977 0.166944 -0.00688513 Vertex 13731 -0.074091 0.144362 -0.00888576 Vertex 13732 -0.0887923 0.1378 0.0112057 Vertex 13733 -0.0855021 0.102147 0.00137916 Vertex 13734 -0.0689616 0.177928 -0.0580053 Vertex 13735 -0.0597956 0.0925385 -0.0196216 Vertex 13736 -0.0893947 0.113204 0.00833335 Vertex 13737 -0.0859796 0.119771 -0.00178632 Vertex 13738 -0.0932449 0.120197 0.0372886 Vertex 13739 -0.0932655 0.120203 0.038289 Vertex 13740 -0.0015963 0.0981039 -0.0279083 Vertex 13741 -0.0944412 0.121464 0.0182801 Vertex 13742 -0.0938873 0.12827 0.0192438 Vertex 13743 -0.0625286 0.164689 -0.038593 Vertex 13744 -0.0630274 0.166296 -0.040584 Vertex 13745 -0.0631905 0.166285 -0.0395881 Vertex 13746 0.0457389 0.0876049 0.0111625 Vertex 13747 -0.0926608 0.121474 0.0282925 Vertex 13748 -0.0622044 0.163118 -0.0415929 Vertex 13749 -0.0612579 0.167808 -0.0576007 Vertex 13750 -0.0631521 0.0360725 0.0429133 Vertex 13751 -0.0624284 0.159959 -0.0405984 Vertex 13752 -0.0626184 0.145978 -0.00858061 Vertex 13753 -0.0578274 0.0666818 0.0354001 Vertex 13754 -0.0540772 0.146211 0.0253916 Vertex 13755 -0.0454802 0.123445 -0.0105099 Vertex 13756 -0.0634397 0.158343 -0.0445972 Vertex 13757 -0.0632778 0.158345 -0.0436013 Vertex 13758 -0.00869718 0.172706 -0.0257786 Vertex 13759 -0.0617261 0.158412 -0.0335949 Vertex 13760 -0.0198811 0.121697 -0.00881459 Vertex 13761 -0.0517406 0.0704199 0.0388209 Vertex 13762 -0.0633419 0.155193 -0.0376165 Vertex 13763 -0.00977705 0.174183 -0.0237537 Vertex 13764 -0.0528816 0.143158 0.0234068 Vertex 13765 -0.0623881 0.149093 -0.0125752 Vertex 13766 -0.0618567 0.156837 -0.0325918 Vertex 13767 0.0440209 0.0945174 0.0011806 Vertex 13768 -0.0451105 0.146112 0.00345863 Vertex 13769 -0.0624744 0.163093 -0.0485882 Vertex 13770 -0.0596322 0.0604401 0.0228281 Vertex 13771 -0.046701 0.144949 0.00345496 Vertex 13772 -0.0103855 0.174149 -0.0227989 Vertex 13773 0.0441954 0.0847004 0.0251589 Vertex 13774 0.0445575 0.0847276 0.0241575 Vertex 13775 0.0448392 0.0847511 0.0231667 Vertex 13776 0.0450874 0.0847681 0.0221666 Vertex 13777 0.0452751 0.0847797 0.0211588 Vertex 13778 0.0453494 0.0847845 0.0201731 Vertex 13779 0.045458 0.0847917 0.019171 Vertex 13780 0.0455463 0.0847945 0.0181695 Vertex 13781 0.0455822 0.0848004 0.0171734 Vertex 13782 0.0456643 0.0848033 0.01617 Vertex 13783 0.0457714 0.0848094 0.0151676 Vertex 13784 0.0458128 0.0848143 0.0141708 Vertex 13785 0.0458803 0.0848141 0.013166 Vertex 13786 0.0459251 0.0848195 0.0121712 Vertex 13787 0.0460105 0.0848241 0.0111686 Vertex 13788 0.0460422 0.0848268 0.0101717 Vertex 13789 0.046121 0.0848311 0.00917504 Vertex 13790 0.0460721 0.0848306 0.00817735 Vertex 13791 0.0460203 0.0848226 0.00718276 Vertex 13792 0.0458812 0.084809 0.00618736 Vertex 13793 0.0457266 0.0847913 0.00519644 Vertex 13794 0.0455191 0.0847794 0.00419259 Vertex 13795 0.0452185 0.0847535 0.00320441 Vertex 13796 0.0449519 0.0847263 0.00223902 Vertex 13797 0.0447673 0.0847221 0.00118921 Vertex 13798 0.0445553 0.0846952 0.000180444 Vertex 13799 0.0443888 0.0846966 -0.000809941 Vertex 13800 0.0442166 0.0846846 -0.00180459 Vertex 13801 0.0440071 0.0846602 -0.00280808 Vertex 13802 0.0437196 0.0846401 -0.00379782 Vertex 13803 -0.0682581 0.156305 0.0164417 Vertex 13804 -0.0388918 0.123217 0.0263098 Vertex 13805 -0.0353048 0.127501 0.00687019 Vertex 13806 -0.0703978 0.156305 0.0156818 Vertex 13807 -0.0362408 0.12776 0.00652715 Vertex 13808 -0.0928216 0.122866 0.0342742 Vertex 13809 -0.0766606 0.163806 -0.0339802 Vertex 13810 -0.040399 0.128703 0.00942739 Vertex 13811 -0.0846396 0.153647 0.0136585 Vertex 13812 -0.0687371 0.155896 0.0104629 Vertex 13813 -0.0371778 0.128019 0.00618657 Vertex 13814 -0.0381186 0.128235 0.00584498 Vertex 13815 -0.06275 0.178179 -0.0598124 Vertex 13816 -0.0634376 0.179008 -0.0598746 Vertex 13817 -0.0736795 0.145791 -0.0128538 Vertex 13818 -0.0920989 0.117453 0.031314 Vertex 13819 -0.0693572 0.156301 0.0160519 Vertex 13820 -0.0317184 0.124145 0.0214762 Vertex 13821 -0.0742841 0.155582 0.00848891 Vertex 13822 -0.0391935 0.128299 0.00543562 Vertex 13823 -0.0401838 0.128459 0.00507702 Vertex 13824 -0.0625742 0.17727 -0.0581696 Vertex 13825 -0.0631142 0.178334 -0.0583576 Vertex 13826 -0.0637186 0.179242 -0.0585917 Vertex 13827 -0.0644378 0.17995 -0.0588828 Vertex 13828 -0.0653109 0.180421 -0.0593142 Vertex 13829 -0.0929915 0.122891 0.0372721 Vertex 13830 -0.0928924 0.122885 0.0362699 Vertex 13831 -0.0458599 0.129594 0.0221735 Vertex 13832 -0.053407 0.152198 0.0189083 Vertex 13833 -0.0752073 0.156095 0.0183637 Vertex 13834 -0.048723 0.134043 0.0239744 Vertex 13835 -0.0411724 0.128614 0.0047134 Vertex 13836 -0.0421609 0.128746 0.00435225 Vertex 13837 0.0131716 0.128382 0.0245166 Vertex 13838 -0.0635922 0.178326 -0.0570781 Vertex 13839 -0.0641915 0.179229 -0.0572988 Vertex 13840 -0.0649027 0.179945 -0.0575726 Vertex 13841 -0.065725 0.180452 -0.0578644 Vertex 13842 -0.0665966 0.180807 -0.0581921 Vertex 13843 -0.0413837 0.128875 0.00906534 Vertex 13844 -0.0371359 0.123595 0.025439 Vertex 13845 -0.0741019 0.156119 0.0187476 Vertex 13846 -0.0493266 0.134948 0.0237381 Vertex 13847 -0.0431381 0.128903 0.00398376 Vertex 13848 -0.0441053 0.129054 0.00361434 Vertex 13849 -0.0631195 0.176032 -0.0554618 Vertex 13850 -0.0636281 0.177112 -0.0556446 Vertex 13851 -0.0641686 0.178174 -0.0558405 Vertex 13852 -0.0647832 0.179003 -0.0560548 Vertex 13853 -0.0654729 0.17978 -0.0563035 Vertex 13854 -0.066211 0.180426 -0.0565833 Vertex 13855 -0.067036 0.180898 -0.0568882 Vertex 13856 -0.0679616 0.181138 -0.0572245 Vertex 13857 -0.085796 0.123875 -0.00272102 Vertex 13858 -0.04503 0.129294 0.00327025 Vertex 13859 -0.0380707 0.123893 0.0251235 Vertex 13860 -0.0499421 0.135837 0.0234945 Vertex 13861 -0.091814 0.116108 0.0403567 Vertex 13862 -0.0631955 0.174736 -0.0540401 Vertex 13863 -0.0636657 0.175908 -0.0542108 Vertex 13864 -0.064203 0.176904 -0.0544031 Vertex 13865 -0.0647828 0.177875 -0.0546137 Vertex 13866 -0.06539 0.178765 -0.0548301 Vertex 13867 -0.0660593 0.179544 -0.0550745 Vertex 13868 -0.0667582 0.180263 -0.0553199 Vertex 13869 -0.0675701 0.180805 -0.0555973 Vertex 13870 -0.0683506 0.181259 -0.055895 Vertex 13871 -0.0694847 0.181423 -0.0563964 Vertex 13872 -0.0703591 0.181312 -0.0565189 Vertex 13873 -0.0124153 0.129138 0.0195683 Vertex 13874 -0.045061 0.130334 0.0180279 Vertex 13875 -0.0859874 0.153017 0.0132012 Vertex 13876 -0.0655471 0.154522 0.00288522 Vertex 13877 -0.0605191 0.153857 0.0308432 Vertex 13878 -0.0637266 0.174609 -0.0527846 Vertex 13879 -0.0642224 0.175708 -0.0529566 Vertex 13880 -0.0647922 0.176686 -0.0531637 Vertex 13881 -0.0654028 0.177571 -0.0533847 Vertex 13882 -0.0660877 0.178333 -0.0536421 Vertex 13883 -0.0667075 0.179209 -0.0538653 Vertex 13884 -0.0674047 0.179923 -0.0541082 Vertex 13885 -0.0681573 0.180556 -0.0543707 Vertex 13886 -0.0689729 0.181022 -0.0546459 Vertex 13887 -0.0698279 0.181394 -0.0549266 Vertex 13888 -0.0710553 0.181198 -0.0554882 Vertex 13889 -0.0571934 0.155255 0.0174937 Vertex 13890 -0.0345272 0.121283 0.0279162 Vertex 13891 -0.0586534 0.154964 0.024223 Vertex 13892 -0.0332546 0.12417 0.0223928 Vertex 13893 -0.0679898 0.154859 0.0296647 Vertex 13894 -0.013621 0.128874 0.0191382 Vertex 13895 -0.0637279 0.173384 -0.0513558 Vertex 13896 -0.0642728 0.174473 -0.0515364 Vertex 13897 -0.0648153 0.175482 -0.051724 Vertex 13898 -0.0654135 0.17638 -0.0519366 Vertex 13899 -0.0660268 0.177263 -0.0521591 Vertex 13900 -0.0667255 0.178008 -0.0524224 Vertex 13901 -0.0674015 0.178779 -0.0526749 Vertex 13902 -0.0681005 0.179488 -0.0529195 Vertex 13903 -0.0688202 0.180176 -0.0531787 Vertex 13904 -0.0695824 0.180796 -0.0534457 Vertex 13905 -0.0704697 0.181218 -0.0537747 Vertex 13906 -0.0715585 0.181081 -0.0541999 Vertex 13907 -0.0726553 0.180933 -0.0546755 Vertex 13908 0.00122739 0.121444 0.0362285 Vertex 13909 -0.0539364 0.153495 0.0157968 Vertex 13910 -0.0567267 0.15478 0.0220083 Vertex 13911 -0.0927086 0.12286 0.0332776 Vertex 13912 -0.0771576 0.158311 -0.0229061 Vertex 13913 -0.0640837 0.156142 0.0179222 Vertex 13914 -0.0539979 0.153168 0.0186815 Vertex 13915 -0.0148242 0.128616 0.018702 Vertex 13916 -0.0503006 0.134918 0.0263293 Vertex 13917 -0.0793646 0.150083 0.036366 Vertex 13918 -0.0360726 0.1261 0.0198793 Vertex 13919 -0.0642587 0.173261 -0.0500973 Vertex 13920 -0.064798 0.174285 -0.0502768 Vertex 13921 -0.0654084 0.175187 -0.050486 Vertex 13922 -0.0660124 0.176151 -0.0507054 Vertex 13923 -0.0667029 0.176899 -0.0509708 Vertex 13924 -0.067363 0.177688 -0.0512074 Vertex 13925 -0.068057 0.178404 -0.0514469 Vertex 13926 -0.0687469 0.179151 -0.0517127 Vertex 13927 -0.069513 0.17974 -0.0519891 Vertex 13928 -0.0702797 0.180333 -0.0522624 Vertex 13929 -0.0711528 0.180791 -0.0525602 Vertex 13930 -0.0720139 0.180999 -0.0528377 Vertex 13931 -0.073516 0.18065 -0.0535934 Vertex 13932 -0.0741326 0.180484 -0.0536706 Vertex 13933 -0.0644326 0.152123 0.0354487 Vertex 13934 -0.0159686 0.128428 0.0182857 Vertex 13935 -0.0421812 0.123012 0.0251172 Vertex 13936 -0.0541813 0.154195 0.0142529 Vertex 13937 -0.073145 0.152886 0.0338966 Vertex 13938 -0.0692361 0.153199 0.0337122 Vertex 13939 -0.0754673 0.153642 0.0315487 Vertex 13940 -0.0826893 0.152358 0.0291683 Vertex 13941 -0.0423133 0.129133 0.00872164 Vertex 13942 -0.0431979 0.129461 0.00840104 Vertex 13943 -0.0440446 0.129866 0.0080667 Vertex 13944 -0.025918 0.122982 0.0235755 Vertex 13945 -0.0814119 0.152728 0.0295837 Vertex 13946 -0.04491 0.13036 0.00775303 Vertex 13947 -0.0851819 0.152725 0.0105454 Vertex 13948 -0.0455312 0.131052 0.00748081 Vertex 13949 -0.0461849 0.131841 0.0072241 Vertex 13950 -0.0172313 0.12808 0.0178394 Vertex 13951 -0.0438029 0.167379 0.00334272 Vertex 13952 -0.0769058 0.154074 0.0295482 Vertex 13953 -0.0612216 0.155927 0.0131437 Vertex 13954 -0.0693757 0.155378 0.0277002 Vertex 13955 -0.068331 0.155325 0.0280685 Vertex 13956 -0.0449049 0.167415 0.00301648 Vertex 13957 -0.0106905 0.18126 -0.0286694 Vertex 13958 -0.0870347 0.13912 0.00619253 Vertex 13959 -0.0619885 0.156033 0.0186659 Vertex 13960 -0.0552256 0.153277 0.0254807 Vertex 13961 -0.0718333 0.156164 0.022455 Vertex 13962 -0.0373694 0.173381 -0.00150317 Vertex 13963 0.0135568 0.129672 0.01894 Vertex 13964 -0.016322 0.128515 0.00945034 Vertex 13965 -0.0647783 0.173212 -0.0488362 Vertex 13966 -0.0653605 0.174136 -0.0490346 Vertex 13967 -0.0660235 0.174935 -0.0492702 Vertex 13968 -0.0666867 0.175728 -0.049503 Vertex 13969 -0.067333 0.1766 -0.0497355 Vertex 13970 -0.0680148 0.177312 -0.0499759 Vertex 13971 -0.0687325 0.178002 -0.0502345 Vertex 13972 -0.0694694 0.178653 -0.050518 Vertex 13973 -0.070203 0.179305 -0.0507979 Vertex 13974 -0.0710157 0.179813 -0.0510815 Vertex 13975 -0.0718351 0.180364 -0.0513557 Vertex 13976 -0.0727421 0.180568 -0.051639 Vertex 13977 -0.0739945 0.1802 -0.0521965 Vertex 13978 0.0071329 0.104451 -0.0211019 Vertex 13979 -0.0559476 0.153959 0.0252069 Vertex 13980 -0.0657027 0.155342 0.0275329 Vertex 13981 -0.0705018 0.155741 0.00837641 Vertex 13982 0.0196499 0.124334 0.0268969 Vertex 13983 -0.073564 0.156227 0.0174776 Vertex 13984 0.0241258 0.0914782 -0.0228484 Vertex 13985 -0.0558317 0.154614 0.0193814 Vertex 13986 -0.0337803 0.122942 0.0251825 Vertex 13987 -0.0528711 0.15259 0.0147483 Vertex 13988 -0.0711048 0.153963 -0.0459144 Vertex 13989 -0.0731746 0.154066 -0.0319096 Vertex 13990 0.00409629 0.128905 0.0269756 Vertex 13991 -0.0639512 0.156212 0.0208686 Vertex 13992 -0.0555168 0.154658 0.0152234 Vertex 13993 -0.0717922 0.153989 -0.0428988 Vertex 13994 -0.0635386 0.151731 -0.00361755 Vertex 13995 -0.0549293 0.154823 0.0139773 Vertex 13996 -0.0641121 0.152654 -0.0038572 Vertex 13997 -0.00415565 0.0996194 0.0496007 Vertex 13998 -0.00216392 0.0992947 0.0503069 Vertex 13999 -0.00116978 0.0991573 0.0506694 Vertex 14000 -0.0478366 0.133877 0.0213554 Vertex 14001 -0.0466801 0.130916 0.0233152 Vertex 14002 -0.0841478 0.15365 0.0123539 Vertex 14003 -0.0260706 0.125207 0.0176138 Vertex 14004 -0.0728404 0.156111 0.0119063 Vertex 14005 -0.0166425 0.0970062 0.0498004 Vertex 14006 -0.0647804 0.153444 -0.00410741 Vertex 14007 -0.0654456 0.154232 -0.00436037 Vertex 14008 -0.0663598 0.15609 0.0142173 Vertex 14009 -0.0673252 0.149334 0.0390086 Vertex 14010 -0.0661191 0.156294 0.0171964 Vertex 14011 -0.063845 0.150027 0.0371387 Vertex 14012 -0.0671323 0.152011 0.0359968 Vertex 14013 -0.0721929 0.152802 0.0342528 Vertex 14014 -0.0786185 0.152695 0.0319953 Vertex 14015 -0.0616544 0.15599 0.0144357 Vertex 14016 -0.0837769 0.153466 0.0110188 Vertex 14017 -0.0823192 0.154091 0.0115231 Vertex 14018 -0.0810086 0.154578 0.0119766 Vertex 14019 -0.0784832 0.155333 0.0128492 Vertex 14020 -0.077278 0.155614 0.0132673 Vertex 14021 -0.0660333 0.155202 -0.00458552 Vertex 14022 -0.0667119 0.155932 -0.00484005 Vertex 14023 -0.0498903 0.161248 0.00701432 Vertex 14024 -0.0673893 0.156703 -0.00509746 Vertex 14025 -0.0781465 0.155117 0.0246877 Vertex 14026 -0.0736149 0.155479 0.0262237 Vertex 14027 -0.0514267 0.135712 0.0273837 Vertex 14028 -0.0520176 0.136681 0.0271356 Vertex 14029 -0.06805 0.157495 -0.00534926 Vertex 14030 -0.0105893 0.180273 -0.0272114 Vertex 14031 -0.0109825 0.18157 -0.0273657 Vertex 14032 -0.0114267 0.182822 -0.0276369 Vertex 14033 -0.00540678 0.121074 -0.0123374 Vertex 14034 -0.0695221 0.143851 -0.0150076 Vertex 14035 -0.0486527 0.162759 0.00599863 Vertex 14036 -0.0174802 0.127364 0.0206736 Vertex 14037 -0.0519904 0.135575 0.0286552 Vertex 14038 -0.083614 0.154208 0.0184012 Vertex 14039 -0.0687471 0.158212 -0.0056007 Vertex 14040 -0.0636092 0.170093 -0.0469941 Vertex 14041 -0.0647018 0.172123 -0.0473675 Vertex 14042 -0.0653246 0.173014 -0.0475844 Vertex 14043 -0.0659606 0.17389 -0.0478108 Vertex 14044 -0.0666146 0.174697 -0.0480375 Vertex 14045 -0.0672645 0.175508 -0.0482636 Vertex 14046 -0.0679574 0.176267 -0.0485208 Vertex 14047 -0.0686886 0.176906 -0.0487674 Vertex 14048 -0.0694051 0.177621 -0.0490523 Vertex 14049 -0.0701614 0.178224 -0.0493215 Vertex 14050 -0.0709327 0.178806 -0.0496057 Vertex 14051 -0.0717036 0.179379 -0.0498901 Vertex 14052 -0.0725702 0.17984 -0.0501722 Vertex 14053 -0.0734779 0.180121 -0.0504836 Vertex 14054 -0.074698 0.179765 -0.0510072 Vertex 14055 -0.0821777 0.153468 0.0263012 Vertex 14056 -0.0878006 0.151251 0.0245374 Vertex 14057 0.0122982 0.128768 0.0241985 Vertex 14058 -0.069473 0.158882 -0.00587612 Vertex 14059 -0.0930739 0.122895 0.0382751 Vertex 14060 -0.0780471 0.153854 0.029137 Vertex 14061 -0.0496912 0.162854 0.00564102 Vertex 14062 -0.0708693 0.149702 0.0392474 Vertex 14063 -0.0699464 0.151677 0.0365135 Vertex 14064 -0.0241449 0.0905492 0.0505682 Vertex 14065 -0.0131682 0.0974746 0.0509922 Vertex 14066 -0.0484504 0.134772 0.0211152 Vertex 14067 -0.0689521 0.151509 0.0368557 Vertex 14068 -0.0697859 0.156365 0.01735 Vertex 14069 0.0097783 0.1251 0.0319006 Vertex 14070 -0.0285717 0.12063 0.0270994 Vertex 14071 -0.0274771 0.120676 0.0274866 Vertex 14072 -0.0703503 0.159267 -0.00619145 Vertex 14073 -0.0712367 0.159654 -0.00650092 Vertex 14074 -0.079558 0.151858 0.0332132 Vertex 14075 -0.0679369 0.165269 -0.0197719 Vertex 14076 -0.0764224 0.152995 0.0327283 Vertex 14077 -0.00822607 0.100046 0.0481626 Vertex 14078 -0.00613038 0.0999315 0.0488982 Vertex 14079 -0.0615955 0.15529 0.0260796 Vertex 14080 -0.0625329 0.155555 0.0257427 Vertex 14081 0.001434 0.0980064 0.0516014 Vertex 14082 -0.045692 0.126639 0.0237789 Vertex 14083 -0.0788838 0.153282 0.0303949 Vertex 14084 -0.0824105 0.154634 0.0158747 Vertex 14085 -0.0563344 0.154371 0.0236088 Vertex 14086 0.00990352 0.130871 0.0175976 Vertex 14087 -0.0358396 0.125396 0.0214464 Vertex 14088 -0.0728779 0.117943 -0.00788041 Vertex 14089 -0.0878637 0.152463 0.0169978 Vertex 14090 -0.0849416 0.153745 0.0179582 Vertex 14091 -0.0798758 0.155212 0.019678 Vertex 14092 -0.0751298 0.155996 0.0213056 Vertex 14093 -0.0740322 0.156054 0.0216877 Vertex 14094 -0.0718747 0.151003 0.0373736 Vertex 14095 -0.0711064 0.152637 0.0345827 Vertex 14096 -0.0773991 0.152954 0.0323974 Vertex 14097 -0.072308 0.159721 -0.00687103 Vertex 14098 -0.0821317 0.15265 0.0057634 Vertex 14099 -0.0469681 0.134154 0.0128397 Vertex 14100 -0.0141538 0.0965092 0.052175 Vertex 14101 -0.0101432 0.130124 0.0117041 Vertex 14102 -0.0697747 0.155761 0.0260978 Vertex 14103 -0.0738026 0.1492 0.0397758 Vertex 14104 0.0130981 0.124462 0.0316831 Vertex 14105 -0.0735836 0.159386 -0.00731186 Vertex 14106 0.0188202 0.124811 0.0265908 Vertex 14107 0.0157558 0.127182 0.025475 Vertex 14108 -0.0310964 0.125815 0.0157855 Vertex 14109 -0.0291841 0.125368 0.0164845 Vertex 14110 0.00258681 0.125467 0.0322572 Vertex 14111 -0.0830349 0.153941 0.0230111 Vertex 14112 -0.0428158 0.126503 0.0190139 Vertex 14113 0.0483298 0.0694277 0.0246416 Vertex 14114 -0.0508461 0.134795 0.0276114 Vertex 14115 -0.0276791 0.1239 0.019992 Vertex 14116 -0.0136795 0.0987823 0.0477955 Vertex 14117 -0.0115119 0.181449 -0.0261319 Vertex 14118 -0.0119274 0.182669 -0.0262872 Vertex 14119 -0.0123491 0.183911 -0.0264322 Vertex 14120 -0.0184858 0.127732 0.0173962 Vertex 14121 -0.0196877 0.127428 0.0169554 Vertex 14122 -0.059432 0.152725 0.0327387 Vertex 14123 -0.055495 0.154378 0.0181054 Vertex 14124 -0.0514117 0.134659 0.0288827 Vertex 14125 -0.0818934 0.154016 0.0102104 Vertex 14126 -0.0412575 0.123881 0.0239565 Vertex 14127 -0.00700363 0.0992954 0.0501023 Vertex 14128 -0.0640598 0.170094 -0.0457055 Vertex 14129 -0.0645973 0.171184 -0.0458828 Vertex 14130 -0.0651886 0.172101 -0.0460875 Vertex 14131 -0.065854 0.172894 -0.0463248 Vertex 14132 -0.0665218 0.173689 -0.0465659 Vertex 14133 -0.067172 0.174543 -0.0467986 Vertex 14134 -0.0679286 0.17514 -0.0470724 Vertex 14135 -0.0686329 0.175846 -0.0473222 Vertex 14136 -0.0693592 0.176521 -0.047588 Vertex 14137 -0.0701023 0.177167 -0.0478719 Vertex 14138 -0.0708559 0.177779 -0.0481346 Vertex 14139 -0.0716137 0.178389 -0.0484 Vertex 14140 -0.0724407 0.178857 -0.0487083 Vertex 14141 -0.0732669 0.179344 -0.0490063 Vertex 14142 -0.0742533 0.17954 -0.0493425 Vertex 14143 -0.0754312 0.179188 -0.0498593 Vertex 14144 -0.0728771 0.154609 0.0294193 Vertex 14145 -0.0784442 0.154274 0.027518 Vertex 14146 -0.0834391 0.153089 0.025871 Vertex 14147 -0.00309453 0.0984522 0.0515066 Vertex 14148 -0.0182235 0.123174 0.0292543 Vertex 14149 -0.0209427 0.127053 0.0165011 Vertex 14150 -0.0841262 0.110345 0.0263651 Vertex 14151 -0.09304 0.122895 0.0392709 Vertex 14152 -0.0928565 0.129591 0.0132418 Vertex 14153 -0.04739 0.113671 -0.0162364 Vertex 14154 -0.087958 0.12395 0.000268768 Vertex 14155 -0.0635624 0.152855 0.034229 Vertex 14156 -0.0792347 0.153789 0.0287725 Vertex 14157 -0.0918136 0.129556 0.00925121 Vertex 14158 -0.077566 0.155252 0.0102497 Vertex 14159 -0.0784019 0.152013 0.0336008 Vertex 14160 -0.00476401 0.100643 0.0463697 Vertex 14161 -0.080576 0.154494 0.0106641 Vertex 14162 -0.0763654 0.155962 0.0179624 Vertex 14163 -0.0624813 0.156041 0.0199412 Vertex 14164 -0.0796429 0.148681 -0.00084361 Vertex 14165 -0.0567286 0.155485 0.0133042 Vertex 14166 -0.0370133 0.1227 0.0269929 Vertex 14167 -0.0861865 0.0926674 0.00242789 Vertex 14168 -0.0714965 0.154091 0.0314059 Vertex 14169 -0.0794589 0.155317 0.0154304 Vertex 14170 -0.0671228 0.150867 0.0375155 Vertex 14171 -0.0222638 0.126605 0.016039 Vertex 14172 -0.0104152 0.0998773 0.0473736 Vertex 14173 -0.0587411 0.154535 0.0270999 Vertex 14174 -0.0597326 0.154693 0.0267485 Vertex 14175 -0.053757 0.152473 0.0202331 Vertex 14176 -0.0655517 0.155937 0.0246661 Vertex 14177 -0.0665534 0.156088 0.0243177 Vertex 14178 -0.0746595 0.15617 0.0170913 Vertex 14179 -0.0650382 0.153613 0.000196596 Vertex 14180 -0.0788442 0.154658 0.0259054 Vertex 14181 -0.0700593 0.152584 0.0349486 Vertex 14182 -0.0735905 0.154201 0.0306806 Vertex 14183 -0.0307813 0.122738 0.0233033 Vertex 14184 -0.0427276 0.129253 0.0100405 Vertex 14185 -0.0365497 0.124951 0.0226726 Vertex 14186 -0.0356597 0.12459 0.0229985 Vertex 14187 -0.0374342 0.125294 0.0223398 Vertex 14188 -0.0212542 0.126244 0.0193308 Vertex 14189 -0.0492373 0.132883 0.0267635 Vertex 14190 -0.0806754 0.155074 0.0150117 Vertex 14191 -0.0797904 0.152563 0.0316147 Vertex 14192 -0.0339024 0.123839 0.0236394 Vertex 14193 0.0114258 0.129163 0.0238841 Vertex 14194 -0.0434528 0.12491 0.0216806 Vertex 14195 -0.0603044 0.155837 0.0105687 Vertex 14196 -0.0234669 0.126337 0.0156088 Vertex 14197 -0.0399791 0.126816 0.018458 Vertex 14198 -0.0780191 0.149419 0.0383262 Vertex 14199 0.0138472 0.123867 0.0319554 Vertex 14200 -0.0200061 0.124102 0.0256765 Vertex 14201 -0.0922854 0.116039 0.0223382 Vertex 14202 -0.0448181 0.0898814 -0.0220536 Vertex 14203 -0.0923638 0.118682 0.00930083 Vertex 14204 -0.0939805 0.118754 0.0182968 Vertex 14205 -0.0301654 0.12556 0.01613 Vertex 14206 -0.0692244 0.15634 0.0190049 Vertex 14207 -0.0675989 0.156142 0.0239498 Vertex 14208 -0.0759039 0.154928 -0.00089291 Vertex 14209 -0.0643687 0.155314 0.00767719 Vertex 14210 0.0206378 0.123881 0.0271063 Vertex 14211 -0.0466417 0.133657 0.014443 Vertex 14212 -0.0337588 0.121858 0.0267132 Vertex 14213 -0.0651138 0.155569 0.0262833 Vertex 14214 -0.0692155 0.155426 0.0044718 Vertex 14215 -0.0701997 0.155611 0.00411308 Vertex 14216 -0.0712424 0.155684 0.00373917 Vertex 14217 -0.0723361 0.155599 0.00334302 Vertex 14218 -0.0125908 0.182249 -0.0250896 Vertex 14219 -0.0130686 0.183424 -0.0252779 Vertex 14220 -0.0135796 0.18457 -0.0255034 Vertex 14221 -0.0142757 0.185348 -0.0257883 Vertex 14222 0.0324897 0.100233 -0.014155 Vertex 14223 -0.065886 0.15405 -0.00011759 Vertex 14224 -0.0708783 0.150832 0.0377201 Vertex 14225 -0.0508607 0.133588 0.0291236 Vertex 14226 -0.0889341 0.0928773 0.0104474 Vertex 14227 -0.0782439 0.151233 0.0351897 Vertex 14228 -0.0734703 0.155395 0.00293075 Vertex 14229 -0.063913 0.169258 -0.0441943 Vertex 14230 -0.064466 0.170264 -0.0443864 Vertex 14231 -0.0650859 0.171096 -0.0446086 Vertex 14232 -0.0657123 0.171986 -0.0448274 Vertex 14233 -0.0663498 0.172859 -0.0450539 Vertex 14234 -0.0670839 0.173532 -0.0453192 Vertex 14235 -0.0678048 0.17421 -0.0455841 Vertex 14236 -0.0685375 0.17487 -0.0458569 Vertex 14237 -0.0692551 0.175557 -0.0461164 Vertex 14238 -0.0700117 0.176166 -0.0463861 Vertex 14239 -0.0707693 0.176767 -0.0466577 Vertex 14240 -0.0715386 0.177351 -0.0469381 Vertex 14241 -0.0723674 0.177806 -0.0472523 Vertex 14242 -0.0731839 0.178324 -0.0475338 Vertex 14243 -0.0740639 0.178692 -0.0478641 Vertex 14244 -0.075154 0.17882 -0.048244 Vertex 14245 -0.076236 0.178558 -0.0487103 Vertex 14246 -0.0747491 0.155081 0.00248708 Vertex 14247 -0.0666868 0.15458 -0.000433214 Vertex 14248 -0.0750347 0.154671 0.0286993 Vertex 14249 -0.0739196 0.15466 0.0290556 Vertex 14250 -0.0796085 0.154132 0.0271276 Vertex 14251 -0.0847891 0.15265 0.0254465 Vertex 14252 0.00795856 0.126912 0.0298215 Vertex 14253 -0.0348246 0.12664 0.0173665 Vertex 14254 -0.0247298 0.125997 0.0151584 Vertex 14255 0.0105508 0.12954 0.0235608 Vertex 14256 -0.0846054 0.11036 0.02536 Vertex 14257 -0.0242296 0.0941248 -0.0298734 Vertex 14258 0.0252231 0.117755 -0.00691168 Vertex 14259 0.0441357 0.0659575 -7.19207e-05 Vertex 14260 -0.0674507 0.155183 -0.000720573 Vertex 14261 -0.0641648 0.15616 0.0149932 Vertex 14262 -0.065493 0.153273 0.0335324 Vertex 14263 -0.0645039 0.15312 0.03389 Vertex 14264 -0.0805113 0.153427 0.0283513 Vertex 14265 -0.0682182 0.15577 -0.00101225 Vertex 14266 -0.0720961 0.156364 0.000513559 Vertex 14267 -0.00782261 0.0985178 0.051315 Vertex 14268 -0.0804072 0.155064 0.0209566 Vertex 14269 -0.0258738 0.125824 0.0147443 Vertex 14270 -0.027315 0.119916 0.0290701 Vertex 14271 -0.0561651 0.153258 0.0280528 Vertex 14272 -0.0674005 0.156127 0.0138467 Vertex 14273 -0.0811445 0.153633 0.00754624 Vertex 14274 -0.0825551 0.152911 0.00706582 Vertex 14275 -0.0626717 0.152516 0.0345768 Vertex 14276 -0.0614607 0.155749 0.0232098 Vertex 14277 -0.0587357 0.153161 0.0315118 Vertex 14278 -0.0763164 0.155546 0.0238171 Vertex 14279 -0.0270194 0.12568 0.0143315 Vertex 14280 -0.058599 0.155538 0.0184341 Vertex 14281 0.0283214 0.115107 0.0315696 Vertex 14282 -0.0532571 0.151368 0.0204421 Vertex 14283 0.027659 0.115893 0.031317 Vertex 14284 -0.0477088 0.132967 0.0228963 Vertex 14285 -0.0463447 0.129406 0.0234768 Vertex 14286 -0.0442161 0.123225 0.0243959 Vertex 14287 -0.0432285 0.12305 0.0247373 Vertex 14288 -0.0751884 0.153035 0.033144 Vertex 14289 0.0262273 0.117277 0.0307934 Vertex 14290 0.0255359 0.118038 0.0305151 Vertex 14291 0.0249311 0.118938 0.0303034 Vertex 14292 0.0243137 0.119818 0.0300741 Vertex 14293 -0.0894613 0.148789 0.0111841 Vertex 14294 0.0236959 0.120687 0.0298434 Vertex 14295 0.0229897 0.121378 0.0295865 Vertex 14296 -0.0497286 0.133927 0.0265636 Vertex 14297 0.0222732 0.12205 0.0293193 Vertex 14298 -0.0452756 0.131436 0.0105618 Vertex 14299 0.0214986 0.122612 0.0290301 Vertex 14300 -0.0874426 0.110454 0.0173412 Vertex 14301 -0.00127486 0.120883 -0.0121504 Vertex 14302 -0.0211708 0.123144 -0.00636628 Vertex 14303 -0.0891077 0.101031 0.0163881 Vertex 14304 0.0207235 0.123161 0.0287274 Vertex 14305 0.0198592 0.123572 0.0284223 Vertex 14306 0.0189962 0.123953 0.0281041 Vertex 14307 0.0181521 0.124421 0.0277923 Vertex 14308 -0.0867734 0.103584 0.00638913 Vertex 14309 -0.068761 0.17368 -0.0560297 Vertex 14310 -0.0471993 0.162132 -0.00733312 Vertex 14311 -0.0718999 0.113582 -0.00821597 Vertex 14312 -0.00529252 0.125273 -0.00885488 Vertex 14313 -0.0759079 0.150006 -0.00888842 Vertex 14314 -0.0760686 0.150008 -0.00987485 Vertex 14315 0.0173744 0.124995 0.027504 Vertex 14316 -0.0778099 0.148638 -0.00388521 Vertex 14317 0.0166594 0.125691 0.027245 Vertex 14318 -0.0689895 0.156345 -0.00130196 Vertex 14319 -0.0408822 0.128708 0.0107294 Vertex 14320 -0.0571357 0.158766 0.00595884 Vertex 14321 0.015933 0.126357 0.0269718 Vertex 14322 0.0151645 0.126939 0.0266898 Vertex 14323 -0.077651 0.154407 0.00585132 Vertex 14324 -0.079025 0.153836 0.00536375 Vertex 14325 -0.0769628 0.150462 0.0371334 Vertex 14326 -0.050909 0.135812 0.0260882 Vertex 14327 0.0143052 0.127349 0.0263844 Vertex 14328 -0.0132255 0.182074 -0.023933 Vertex 14329 -0.014166 0.184338 -0.0242563 Vertex 14330 -0.0146296 0.185817 -0.0244743 Vertex 14331 -0.0153476 0.186173 -0.0245951 Vertex 14332 -0.087002 0.140499 0.00821758 Vertex 14333 -0.0602648 0.153206 0.0324327 Vertex 14334 -0.063441 0.156071 0.0225051 Vertex 14335 0.0134717 0.127798 0.0260714 Vertex 14336 -0.0237797 0.125538 0.0184413 Vertex 14337 0.0126008 0.128196 0.0257553 Vertex 14338 -0.0637423 0.168365 -0.0426884 Vertex 14339 -0.0643109 0.169365 -0.0428818 Vertex 14340 -0.0649225 0.170267 -0.0430968 Vertex 14341 -0.0655596 0.171143 -0.0433207 Vertex 14342 -0.0662148 0.171945 -0.0435535 Vertex 14343 -0.066881 0.172737 -0.0437921 Vertex 14344 -0.06762 0.17339 -0.0440641 Vertex 14345 -0.0684218 0.173931 -0.0443685 Vertex 14346 -0.0691226 0.174646 -0.044619 Vertex 14347 -0.0698489 0.175309 -0.0448893 Vertex 14348 -0.0706135 0.175903 -0.0451833 Vertex 14349 -0.071418 0.176406 -0.0454588 Vertex 14350 -0.0721908 0.176974 -0.0457483 Vertex 14351 -0.0730605 0.177343 -0.046073 Vertex 14352 -0.0739332 0.177709 -0.0464055 Vertex 14353 -0.0749384 0.177982 -0.0467773 Vertex 14354 -0.0759405 0.177963 -0.0471435 Vertex 14355 -0.0771053 0.177652 -0.0476237 Vertex 14356 -0.0757231 0.155771 0.0225635 Vertex 14357 -0.0627957 0.153425 0.0330074 Vertex 14358 -0.066713 0.154086 0.0315791 Vertex 14359 -0.0686943 0.154419 0.0308917 Vertex 14360 -0.0707318 0.154624 0.0301689 Vertex 14361 -0.0761439 0.154623 0.0283179 Vertex 14362 -0.0573804 0.151726 0.0319973 Vertex 14363 0.0116873 0.128578 0.0254498 Vertex 14364 0.0108543 0.128955 0.0251156 Vertex 14365 0.00997537 0.129323 0.0247881 Vertex 14366 -0.0849555 0.110375 0.0243559 Vertex 14367 -0.084184 0.106292 0.0253661 Vertex 14368 -0.0866976 0.109058 0.0133472 Vertex 14369 -0.0866673 0.109085 0.0143521 Vertex 14370 -0.0865776 0.109066 0.0163469 Vertex 14371 -0.0875333 0.0927687 0.0054156 Vertex 14372 -0.038368 0.0457007 -0.0229731 Vertex 14373 -0.0928971 0.117368 0.0123132 Vertex 14374 0.00904657 0.129598 0.024451 Vertex 14375 -0.0321846 0.121876 0.025771 Vertex 14376 -0.0656879 0.156227 0.015899 Vertex 14377 -0.0664848 0.153437 0.0331838 Vertex 14378 -0.0674788 0.153589 0.0328337 Vertex 14379 -0.0817249 0.153192 0.027965 Vertex 14380 -0.0592802 0.154415 0.0283608 Vertex 14381 0.00811587 0.129858 0.0241077 Vertex 14382 -0.0876017 0.152029 0.0126504 Vertex 14383 -0.0819436 0.154696 0.0145801 Vertex 14384 -0.0740319 0.152138 0.0351116 Vertex 14385 -0.0494828 0.135763 0.0221907 Vertex 14386 -0.069971 0.156225 0.0143836 Vertex 14387 -0.0713089 0.156055 0.0109968 Vertex 14388 -0.0796959 0.154266 0.00805358 Vertex 14389 0.00713749 0.130032 0.0237524 Vertex 14390 -0.0341212 0.124555 0.022076 Vertex 14391 -0.0858293 0.151702 0.00893089 Vertex 14392 -0.0792484 0.154932 0.0111245 Vertex 14393 -0.0605353 0.155832 0.0177371 Vertex 14394 -0.0595443 0.155728 0.018094 Vertex 14395 -0.0556924 0.159448 0.00648476 Vertex 14396 0.00616007 0.130231 0.0233995 Vertex 14397 -0.0439068 0.129921 0.011069 Vertex 14398 -0.0413654 0.128702 0.0120304 Vertex 14399 -0.0385209 0.128019 0.0130694 Vertex 14400 -0.0271627 0.125166 0.0172175 Vertex 14401 -0.0652464 0.154114 0.00157024 Vertex 14402 -0.069822 0.156776 -0.00162593 Vertex 14403 -0.0724089 0.155986 0.0106072 Vertex 14404 0.00517895 0.130408 0.0230466 Vertex 14405 -0.0896787 0.135012 0.00721892 Vertex 14406 0.0042017 0.130577 0.0226921 Vertex 14407 -0.067594 0.162379 -0.0559888 Vertex 14408 -0.0887371 0.0955614 0.00743378 Vertex 14409 -0.0935783 0.124186 0.0262856 Vertex 14410 -0.094388 0.124185 0.0232804 Vertex 14411 0.00962203 0.129808 0.0232185 Vertex 14412 0.00321463 0.130705 0.0223233 Vertex 14413 0.00211859 0.130671 0.0219319 Vertex 14414 0.00107791 0.130709 0.0215491 Vertex 14415 -1.59767e-05 0.130672 0.0211571 Vertex 14416 -0.087234 0.0981695 0.00341761 Vertex 14417 -0.0853843 0.0980412 -0.000554198 Vertex 14418 -0.0849311 0.0980032 -0.00158096 Vertex 14419 -0.0891047 0.101026 0.0153901 Vertex 14420 -0.0792032 0.10313 -0.00756064 Vertex 14421 -0.0890821 0.101017 0.0143926 Vertex 14422 -0.0800798 0.103192 -0.0065999 Vertex 14423 -0.0404379 0.124957 -0.00812413 Vertex 14424 -0.0394569 0.124785 -0.00795634 Vertex 14425 -0.0842393 0.107513 0.00238784 Vertex 14426 -0.0837744 0.107497 0.00138169 Vertex 14427 -0.0719363 0.129668 -0.0086833 Vertex 14428 -0.00287353 0.108795 -0.0218002 Vertex 14429 -0.0638254 0.0924713 -0.0188016 Vertex 14430 -0.0922608 0.117447 0.0323019 Vertex 14431 -0.0917594 0.117442 0.030311 Vertex 14432 -0.0914492 0.117418 0.0293041 Vertex 14433 -0.0731283 0.155734 0.00889607 Vertex 14434 -0.0390704 0.124042 0.0247581 Vertex 14435 -0.0389634 0.128304 0.0114309 Vertex 14436 0.00874316 0.130156 0.0228898 Vertex 14437 0.00776642 0.130336 0.022539 Vertex 14438 -0.072697 0.155649 0.00759319 Vertex 14439 -0.076212 0.155059 0.00635026 Vertex 14440 -0.0705953 0.157132 -0.0018785 Vertex 14441 -0.0836837 0.151385 0.0303528 Vertex 14442 -0.0716243 0.157487 -0.00225608 Vertex 14443 -0.0672661 0.155709 0.00954294 Vertex 14444 -0.00111302 0.130629 0.0207594 Vertex 14445 -0.00209707 0.130745 0.0203917 Vertex 14446 -0.00324635 0.130613 0.0199814 Vertex 14447 -0.0150259 0.185694 -0.0231645 Vertex 14448 -0.0156461 0.186781 -0.0233704 Vertex 14449 -0.0937433 0.118772 0.0222988 Vertex 14450 0.0180016 0.125305 0.0262968 Vertex 14451 -0.0800697 0.154441 0.0255089 Vertex 14452 -0.0817292 0.154617 0.0205129 Vertex 14453 -0.054422 0.152991 0.0228754 Vertex 14454 -0.00434542 0.130565 0.019581 Vertex 14455 -0.0635933 0.167459 -0.0411888 Vertex 14456 -0.0641553 0.168532 -0.0413683 Vertex 14457 -0.0647592 0.169439 -0.0415812 Vertex 14458 -0.0653795 0.17033 -0.0418012 Vertex 14459 -0.0660426 0.171124 -0.0420386 Vertex 14460 -0.0667171 0.171901 -0.0422833 Vertex 14461 -0.0674328 0.172594 -0.0425404 Vertex 14462 -0.0681661 0.173216 -0.0428508 Vertex 14463 -0.0689362 0.173831 -0.0430963 Vertex 14464 -0.069711 0.1744 -0.043385 Vertex 14465 -0.0704834 0.174975 -0.0436743 Vertex 14466 -0.0712521 0.17555 -0.0439596 Vertex 14467 -0.0720698 0.176015 -0.0442709 Vertex 14468 -0.0728954 0.176495 -0.0445729 Vertex 14469 -0.0736872 0.176894 -0.0449171 Vertex 14470 -0.074679 0.177203 -0.0452121 Vertex 14471 -0.0757023 0.177226 -0.0456228 Vertex 14472 -0.0768893 0.176966 -0.046083 Vertex 14473 -0.0661966 0.15171 0.0363078 Vertex 14474 -0.0637376 0.15365 0.0326508 Vertex 14475 -0.0621042 0.153787 0.0317461 Vertex 14476 -0.0813458 0.154098 0.0250842 Vertex 14477 -0.0724662 0.156284 0.0178613 Vertex 14478 -0.0472567 0.132959 0.0215876 Vertex 14479 -0.0927119 0.117479 0.0363033 Vertex 14480 0.0067865 0.130497 0.0221788 Vertex 14481 0.00580886 0.130668 0.0218239 Vertex 14482 -0.0888763 0.0982745 0.00841224 Vertex 14483 -0.0923737 0.128196 0.0102559 Vertex 14484 -0.0817922 0.143171 0.000171875 Vertex 14485 -0.0616525 0.116813 -0.0113459 Vertex 14486 -0.0846182 0.106299 0.024344 Vertex 14487 -0.0848969 0.106313 0.0233612 Vertex 14488 -0.0865489 0.109072 0.0153468 Vertex 14489 -0.093041 0.12831 0.0262642 Vertex 14490 -0.0908913 0.139194 0.0171389 Vertex 14491 -0.0931626 0.117374 0.0143043 Vertex 14492 -0.00538241 0.130597 0.0192035 Vertex 14493 -0.0727258 0.157431 -0.00265266 Vertex 14494 -0.0740278 0.157006 -0.00316778 Vertex 14495 -0.0314035 0.121359 0.0260922 Vertex 14496 -0.0670917 0.155954 0.0255845 Vertex 14497 -0.0612038 0.154834 0.027675 Vertex 14498 -0.0602698 0.154572 0.0280125 Vertex 14499 -0.0681398 0.156014 0.0252192 Vertex 14500 -0.0820398 0.150272 0.03397 Vertex 14501 -0.0896372 0.0929496 0.0174335 Vertex 14502 -0.0750251 0.152273 0.0347437 Vertex 14503 -0.0689807 0.155012 0.0293114 Vertex 14504 -0.0702091 0.156071 0.0113882 Vertex 14505 -0.0157027 0.123907 0.0301351 Vertex 14506 -0.0924704 0.117461 0.033305 Vertex 14507 -0.0924453 0.114684 0.0163206 Vertex 14508 -0.0065332 0.130449 0.0187888 Vertex 14509 -0.0245954 0.122675 -0.00581505 Vertex 14510 -0.00443014 0.100204 0.0479984 Vertex 14511 -0.0709364 0.151841 0.036169 Vertex 14512 0.00477967 0.130785 0.0214562 Vertex 14513 -0.0572144 0.154757 0.0232881 Vertex 14514 -0.0622625 0.155951 0.0127725 Vertex 14515 0.0038008 0.130941 0.0210967 Vertex 14516 -0.0771272 0.155133 0.00894547 Vertex 14517 -0.0290767 0.121891 0.0239314 Vertex 14518 -0.0525571 0.150877 0.0178 Vertex 14519 -0.00768551 0.130297 0.0183702 Vertex 14520 -0.00883076 0.130134 0.0179537 Vertex 14521 -0.00998113 0.12997 0.0175362 Vertex 14522 -0.0862421 0.14327 0.00816028 Vertex 14523 -0.091117 0.143373 0.0231646 Vertex 14524 -0.0809488 0.144539 -0.000825536 Vertex 14525 -0.0737149 0.158251 -0.0299203 Vertex 14526 -0.0754296 0.152593 -0.0138871 Vertex 14527 -0.0889571 0.0955775 0.00843273 Vertex 14528 -0.0890892 0.0955882 0.00942496 Vertex 14529 -0.0891519 0.0956005 0.0104313 Vertex 14530 -0.0892111 0.0956026 0.0114219 Vertex 14531 -0.093596 0.126936 0.0252692 Vertex 14532 -0.0912918 0.11477 0.0353243 Vertex 14533 -0.0911122 0.11473 0.0343167 Vertex 14534 -0.0875561 0.0968363 0.00343541 Vertex 14535 -0.0878452 0.096803 0.00445868 Vertex 14536 -0.0879813 0.0968653 0.0054141 Vertex 14537 -0.0859359 0.0980836 0.000413824 Vertex 14538 -0.0782927 0.098997 -0.00960155 Vertex 14539 -0.0890673 0.101028 0.0173829 Vertex 14540 -0.0889728 0.101008 0.0133925 Vertex 14541 -0.0888771 0.100994 0.011394 Vertex 14542 -0.0809107 0.103235 -0.00559799 Vertex 14543 -0.0818428 0.103274 -0.0045788 Vertex 14544 -0.0385101 0.124563 -0.00772445 Vertex 14545 -0.0477678 0.125154 -0.0082648 Vertex 14546 -0.0831283 0.107448 0.000408412 Vertex 14547 -0.0825753 0.107428 -0.000626511 Vertex 14548 -0.0821717 0.11152 0.00033013 Vertex 14549 -0.0920931 0.126941 0.031257 Vertex 14550 -0.0800935 0.138964 -0.00379173 Vertex 14551 -0.0926576 0.117463 0.0373027 Vertex 14552 -0.0719733 0.155857 0.00930845 Vertex 14553 -0.0111299 0.129809 0.0171219 Vertex 14554 -0.0316114 0.123192 0.0229888 Vertex 14555 -0.0447319 0.125394 0.0226968 Vertex 14556 -0.0456062 0.127883 0.0223049 Vertex 14557 -0.0442317 0.12547 0.021384 Vertex 14558 0.0249541 0.12014 0.0288767 Vertex 14559 -0.0707351 0.156208 0.0228366 Vertex 14560 -0.0690676 0.152436 0.0353067 Vertex 14561 -0.0662219 0.155662 0.00991681 Vertex 14562 -0.0651233 0.155698 0.0103085 Vertex 14563 -0.0683614 0.15578 0.00913576 Vertex 14564 -0.0122771 0.129643 0.0167063 Vertex 14565 -0.0154824 0.185702 -0.0219175 Vertex 14566 -0.0159771 0.186924 -0.0221541 Vertex 14567 -0.0859011 0.134922 0.00126737 Vertex 14568 -0.0354864 0.12379 0.0245568 Vertex 14569 -0.0847135 0.152577 0.00925173 Vertex 14570 -0.013542 0.129298 0.0162538 Vertex 14571 -0.0147406 0.129011 0.0158201 Vertex 14572 -0.0634115 0.166723 -0.0396505 Vertex 14573 -0.0639453 0.167747 -0.0398404 Vertex 14574 -0.0645483 0.168715 -0.0400434 Vertex 14575 -0.0651763 0.16954 -0.0402745 Vertex 14576 -0.0658394 0.170333 -0.0405107 Vertex 14577 -0.0665181 0.171112 -0.0407548 Vertex 14578 -0.0672076 0.171872 -0.0410051 Vertex 14579 -0.067993 0.172429 -0.0412978 Vertex 14580 -0.0687437 0.173038 -0.0415702 Vertex 14581 -0.0695038 0.173637 -0.0418473 Vertex 14582 -0.0702811 0.17421 -0.0421289 Vertex 14583 -0.0710541 0.174778 -0.0424234 Vertex 14584 -0.0718647 0.175275 -0.0427173 Vertex 14585 -0.0726957 0.175719 -0.0430358 Vertex 14586 -0.0735436 0.175947 -0.0433626 Vertex 14587 -0.0744971 0.176396 -0.0436946 Vertex 14588 -0.0756137 0.176488 -0.0441876 Vertex 14589 -0.0767078 0.176155 -0.0445645 Vertex 14590 0.0172444 0.125917 0.0260258 Vertex 14591 -0.0762839 0.155844 0.0209052 Vertex 14592 -0.0160023 0.128658 0.015367 Vertex 14593 -0.0670539 0.154574 0.0299913 Vertex 14594 -0.0734894 0.156164 0.020416 Vertex 14595 -0.0745879 0.156108 0.0200327 Vertex 14596 -0.0780015 0.155773 0.018849 Vertex 14597 -0.0172605 0.128293 0.0149127 Vertex 14598 -0.0851868 0.0966727 -0.00156833 Vertex 14599 0.0569661 0.0701435 0.00568959 Vertex 14600 -0.0856518 0.096702 -0.000561949 Vertex 14601 -0.088653 0.0982606 0.00741366 Vertex 14602 -0.0885378 0.137788 0.0102157 Vertex 14603 -0.0770983 0.150031 -0.00589737 Vertex 14604 -0.0902136 0.13513 0.0232187 Vertex 14605 -0.0299989 0.178534 -0.0140055 Vertex 14606 -0.0851762 0.106326 0.0223754 Vertex 14607 -0.0866227 0.109058 0.0173532 Vertex 14608 -0.0914252 0.114627 0.0103302 Vertex 14609 -0.0719895 0.163815 -0.0429694 Vertex 14610 -0.0911855 0.114622 0.00933636 Vertex 14611 0.00310867 0.129093 0.0266332 Vertex 14612 -0.0482461 0.131793 0.0256765 Vertex 14613 -0.0786725 0.15564 0.0171569 Vertex 14614 -0.0734724 0.155984 0.0233451 Vertex 14615 -0.0183995 0.128105 0.0144964 Vertex 14616 -0.062196 0.154993 0.0273195 Vertex 14617 -0.0461819 0.130936 0.0220239 Vertex 14618 -0.0770801 0.15139 0.0355785 Vertex 14619 -0.064488 0.156133 0.0221359 Vertex 14620 -0.0538607 0.152062 0.0231076 Vertex 14621 -0.00904759 0.0994069 0.0493883 Vertex 14622 -0.0691125 0.156051 0.011784 Vertex 14623 -0.0171117 0.123425 0.0297114 Vertex 14624 -0.0196618 0.127752 0.0140421 Vertex 14625 -0.0766305 0.155099 0.0076657 Vertex 14626 -0.00691412 0.124317 0.0332409 Vertex 14627 -0.00592646 0.12418 0.0336126 Vertex 14628 -0.00213372 0.123188 0.0349488 Vertex 14629 -0.00125147 0.122854 0.0353 Vertex 14630 -0.078386 0.154762 0.00850622 Vertex 14631 -0.00570768 0.129479 0.0248833 Vertex 14632 -0.0710465 0.156278 0.000878407 Vertex 14633 -0.00501253 0.125042 0.0324689 Vertex 14634 -0.00605897 0.125119 0.0321155 Vertex 14635 -0.0209254 0.127401 0.0135903 Vertex 14636 -0.0221215 0.127119 0.0131583 Vertex 14637 0.0349031 0.111324 -0.00180439 Vertex 14638 0.0342895 0.112223 -0.00202032 Vertex 14639 -0.0781607 0.0935055 -0.0115755 Vertex 14640 -0.0772165 0.0934484 -0.0125951 Vertex 14641 -0.073438 0.145781 -0.0138542 Vertex 14642 -0.091649 0.146116 0.0221478 Vertex 14643 -0.09096 0.148814 0.0141536 Vertex 14644 -0.0743025 0.151276 -0.0308835 Vertex 14645 -0.0893667 0.135016 0.00621309 Vertex 14646 -0.0890002 0.134996 0.00522535 Vertex 14647 -0.0715687 0.153984 -0.0439053 Vertex 14648 -0.0941104 0.126894 0.0182531 Vertex 14649 -0.0772795 0.155549 -0.0169029 Vertex 14650 -0.0924522 0.125595 0.0392516 Vertex 14651 0.031866 0.115189 -0.00211013 Vertex 14652 -0.0762012 0.149986 -0.0138757 Vertex 14653 -0.0905185 0.148805 0.0131551 Vertex 14654 -0.0883434 0.0968836 0.00640652 Vertex 14655 -0.086306 0.0981081 0.00140707 Vertex 14656 -0.0773163 0.098935 -0.0105842 Vertex 14657 -0.0791658 0.0990564 -0.00863296 Vertex 14658 -0.0801842 0.0990978 -0.00757647 Vertex 14659 -0.0888256 0.100978 0.0104077 Vertex 14660 -0.0889531 0.100999 0.0124002 Vertex 14661 -0.0805618 0.101855 -0.00659893 Vertex 14662 -0.079699 0.101798 -0.00757602 Vertex 14663 -0.0488684 0.125064 -0.00815774 Vertex 14664 -0.0785113 0.10447 -0.00758869 Vertex 14665 -0.0861826 0.104908 0.00538017 Vertex 14666 -0.0798316 0.111318 -0.00180655 Vertex 14667 0.0250885 0.119458 -0.00473925 Vertex 14668 -0.0618301 0.0924936 -0.0189652 Vertex 14669 -0.0931712 0.117411 0.0223074 Vertex 14670 -0.0708769 0.155921 0.00969704 Vertex 14671 -0.0233794 0.126748 0.0127038 Vertex 14672 -0.076573 0.153595 0.0311713 Vertex 14673 -0.0769778 0.155918 0.0162848 Vertex 14674 -0.0504069 0.135839 0.0247969 Vertex 14675 -0.0441024 0.124581 0.0229348 Vertex 14676 -0.0299566 0.122268 0.0236125 Vertex 14677 -0.0451337 0.127804 0.0210049 Vertex 14678 -0.0618314 0.155872 0.0114752 Vertex 14679 -0.0640267 0.155773 0.0106957 Vertex 14680 -0.000378579 0.101174 0.0451223 Vertex 14681 -0.00338536 0.100168 0.0483773 Vertex 14682 -0.0807714 0.153393 0.00628177 Vertex 14683 -0.0793953 0.154018 0.0066962 Vertex 14684 -0.0246455 0.126418 0.012252 Vertex 14685 -0.0160151 0.185636 -0.0207096 Vertex 14686 -0.0163792 0.186908 -0.0208435 Vertex 14687 -0.0892823 0.141954 0.0132429 Vertex 14688 -0.0293794 0.119962 0.0282913 Vertex 14689 -0.0640268 0.154208 0.0310565 Vertex 14690 -0.0434655 0.127159 0.0186744 Vertex 14691 -0.0259005 0.126064 0.0117956 Vertex 14692 -0.0270407 0.125883 0.0113821 Vertex 14693 -0.063712 0.167032 -0.0383216 Vertex 14694 -0.0642974 0.167953 -0.0385345 Vertex 14695 -0.0649318 0.168832 -0.0387572 Vertex 14696 -0.0655972 0.169628 -0.0389928 Vertex 14697 -0.0662716 0.170413 -0.0392349 Vertex 14698 -0.0669901 0.171097 -0.0394962 Vertex 14699 -0.0677151 0.171772 -0.0397619 Vertex 14700 -0.0684896 0.172346 -0.0400602 Vertex 14701 -0.0692316 0.172989 -0.0403442 Vertex 14702 -0.070025 0.173518 -0.0406121 Vertex 14703 -0.0708508 0.173984 -0.0409178 Vertex 14704 -0.071633 0.174549 -0.0412084 Vertex 14705 -0.0724955 0.174948 -0.0415233 Vertex 14706 -0.073438 0.175304 -0.0418354 Vertex 14707 -0.0742949 0.17555 -0.0422185 Vertex 14708 -0.0752747 0.175704 -0.0425921 Vertex 14709 -0.0764469 0.175411 -0.0430646 Vertex 14710 -0.0776263 0.175005 -0.043567 Vertex 14711 0.0236097 0.121674 0.028372 Vertex 14712 -0.0110238 0.098585 0.0502027 Vertex 14713 -0.074262 0.155148 0.0274653 Vertex 14714 -0.071237 0.156366 0.0212013 Vertex 14715 -0.0281815 0.125725 0.0109634 Vertex 14716 -0.0292627 0.125707 0.0105611 Vertex 14717 -0.0301947 0.125922 0.0102205 Vertex 14718 -0.0311244 0.126183 0.00987945 Vertex 14719 0.0569193 0.0710092 0.00714855 Vertex 14720 0.0560223 0.0713695 0.00682475 Vertex 14721 -0.0860277 0.0967286 0.000430639 Vertex 14722 -0.0883068 0.098239 0.00641854 Vertex 14723 -0.092972 0.125468 0.0112596 Vertex 14724 -0.090971 0.141997 0.0221703 Vertex 14725 -0.0849952 0.141833 0.00418636 Vertex 14726 -0.0759663 0.179251 -0.0520449 Vertex 14727 -0.085611 0.106332 0.02136 Vertex 14728 -0.0865394 0.109089 0.0183378 Vertex 14729 -0.0538048 0.159768 -0.00183632 Vertex 14730 -0.0614351 0.156032 0.020314 Vertex 14731 -0.0320503 0.12646 0.00953655 Vertex 14732 -0.0842181 0.153993 0.0196689 Vertex 14733 -0.0792564 0.155246 0.0213567 Vertex 14734 -0.0452904 0.125307 0.0239255 Vertex 14735 -0.0584012 0.154047 0.0286827 Vertex 14736 -0.0488788 0.134867 0.0224297 Vertex 14737 -0.0740662 0.155757 0.0246008 Vertex 14738 -0.0329323 0.126815 0.00921204 Vertex 14739 -0.0467117 0.131872 0.0218067 Vertex 14740 -0.0680156 0.156066 0.0121787 Vertex 14741 -0.0253546 0.121816 0.0267508 Vertex 14742 -0.0728072 0.15012 0.0385587 Vertex 14743 -0.0706375 0.156126 0.0126907 Vertex 14744 -0.0338201 0.127158 0.00888963 Vertex 14745 -0.000391601 0.123621 0.0341495 Vertex 14746 -0.00127097 0.123959 0.0338052 Vertex 14747 -0.00226088 0.124171 0.0334893 Vertex 14748 -0.00308571 0.124589 0.0331408 Vertex 14749 -0.0683525 0.155277 0.00186884 Vertex 14750 -0.00680045 0.129424 0.0244883 Vertex 14751 -0.003677 0.129286 0.0256231 Vertex 14752 -0.00466385 0.129429 0.0252614 Vertex 14753 -0.0428508 0.127424 0.0174253 Vertex 14754 -0.0419902 0.127061 0.0177443 Vertex 14755 0.00275904 0.130985 0.0207146 Vertex 14756 0.0361312 0.11046 8.71157e-05 Vertex 14757 0.0354824 0.111268 -0.000157004 Vertex 14758 0.0348501 0.112087 -0.000408122 Vertex 14759 0.0342272 0.113045 -0.000582475 Vertex 14760 0.0335193 0.114014 -0.000843968 Vertex 14761 -0.0761849 0.0933719 -0.0135017 Vertex 14762 0.0120538 0.0907862 -0.0301745 Vertex 14763 -0.0568073 0.122 -0.00880521 Vertex 14764 -0.0761998 0.14998 -0.0148766 Vertex 14765 0.0291243 0.117712 -0.00241857 Vertex 14766 0.0283176 0.118208 -0.00273298 Vertex 14767 -0.0893959 0.0942918 0.0174254 Vertex 14768 -0.0894235 0.0942851 0.0164251 Vertex 14769 -0.0895241 0.094286 0.0154262 Vertex 14770 -0.0895098 0.0942825 0.014433 Vertex 14771 -0.0865451 0.110395 0.00835385 Vertex 14772 0.0419459 0.0625408 -0.0027477 Vertex 14773 -0.0757755 0.0948358 -0.0134771 Vertex 14774 -0.0765794 0.15423 -0.00189723 Vertex 14775 -0.0889751 0.0969295 0.00842099 Vertex 14776 -0.0867747 0.0981404 0.0024092 Vertex 14777 -0.0844928 0.0979861 -0.00258986 Vertex 14778 -0.0839499 0.0979633 -0.0036111 Vertex 14779 -0.0813824 0.099165 -0.00657823 Vertex 14780 -0.0824727 0.0992304 -0.00559052 Vertex 14781 -0.0264473 0.181471 -0.0150302 Vertex 14782 -0.0892091 0.137796 0.0122163 Vertex 14783 -0.0787438 0.101744 -0.00857364 Vertex 14784 -0.0941682 0.126929 0.0222624 Vertex 14785 -0.0791962 0.16801 -0.0379842 Vertex 14786 -0.0864925 0.10492 0.00639597 Vertex 14787 -0.0866603 0.10494 0.00737931 Vertex 14788 -0.0869937 0.104951 0.00838372 Vertex 14789 -0.0758029 0.111217 -0.00664466 Vertex 14790 -0.0628273 0.0924874 -0.0189476 Vertex 14791 -0.0933085 0.117399 0.0213072 Vertex 14792 -0.0347476 0.127441 0.00854521 Vertex 14793 -0.0110799 0.0973863 0.0517395 Vertex 14794 -0.0457101 0.131722 0.0089192 Vertex 14795 -0.0497977 0.134944 0.0250398 Vertex 14796 -0.0492123 0.134029 0.0252722 Vertex 14797 -0.0451868 0.126658 0.0224837 Vertex 14798 -0.0735593 0.15583 0.0102013 Vertex 14799 -0.0696323 0.156261 0.0232204 Vertex 14800 0.00141943 0.122927 0.0347542 Vertex 14801 -0.0607897 0.155834 0.0118473 Vertex 14802 -0.0560741 0.15232 0.0295584 Vertex 14803 -0.0829803 0.153189 0.00837374 Vertex 14804 -0.0621334 0.15599 0.0157191 Vertex 14805 -0.0404347 0.128451 0.0123721 Vertex 14806 -0.0618449 0.152018 0.0348716 Vertex 14807 -0.0356852 0.127701 0.00820492 Vertex 14808 -0.0169683 0.186741 -0.0196674 Vertex 14809 -0.0888224 0.0929368 0.0224135 Vertex 14810 -0.0366248 0.127943 0.00786237 Vertex 14811 -0.0375614 0.128197 0.00751871 Vertex 14812 -0.0780713 0.150403 0.0367551 Vertex 14813 -0.054091 0.152763 0.0215579 Vertex 14814 -0.038546 0.128369 0.00715642 Vertex 14815 0.00166319 0.130955 0.0203219 Vertex 14816 -0.0640415 0.167322 -0.0369994 Vertex 14817 -0.0646509 0.168222 -0.0372156 Vertex 14818 -0.0653015 0.169027 -0.0374543 Vertex 14819 -0.0659809 0.169803 -0.037696 Vertex 14820 -0.066705 0.170483 -0.0379595 Vertex 14821 -0.0674348 0.171149 -0.0382253 Vertex 14822 -0.0682097 0.171724 -0.0385204 Vertex 14823 -0.0689777 0.172299 -0.0388012 Vertex 14824 -0.0697889 0.172796 -0.0390999 Vertex 14825 -0.0706155 0.173275 -0.0394062 Vertex 14826 -0.0714268 0.173765 -0.0397048 Vertex 14827 -0.0722468 0.174258 -0.0400013 Vertex 14828 -0.0731244 0.174613 -0.0403365 Vertex 14829 -0.0741081 0.174769 -0.0407073 Vertex 14830 -0.0750852 0.174913 -0.0410877 Vertex 14831 -0.0763281 0.174543 -0.0415648 Vertex 14832 -0.0773785 0.174262 -0.0420678 Vertex 14833 -0.0395331 0.128532 0.0067941 Vertex 14834 -0.0601798 0.155861 0.0135147 Vertex 14835 -0.0405229 0.128682 0.00643622 Vertex 14836 -0.0680504 0.156343 0.0223236 Vertex 14837 -0.0378902 0.121927 0.0281694 Vertex 14838 -0.0680579 0.149988 0.0386907 Vertex 14839 -0.0416003 0.12872 0.00602836 Vertex 14840 0.0590343 0.06983 0.00945078 Vertex 14841 0.0583904 0.0706508 0.00920486 Vertex 14842 0.0575984 0.0711737 0.0088801 Vertex 14843 0.056791 0.0717301 0.0086079 Vertex 14844 0.0559073 0.0721087 0.0082759 Vertex 14845 0.0549279 0.0723085 0.00788581 Vertex 14846 -0.0865012 0.0967606 0.00143514 Vertex 14847 -0.087994 0.0981671 0.00544953 Vertex 14848 0.0165994 0.0933382 -0.024824 Vertex 14849 -0.0717164 0.163822 -0.0439567 Vertex 14850 -0.0781422 0.141688 -0.0047364 Vertex 14851 -0.0270715 0.179993 -0.0160072 Vertex 14852 -0.0862825 0.106347 0.0193454 Vertex 14853 -0.0425281 0.128954 0.00568377 Vertex 14854 -0.0434823 0.12913 0.00531313 Vertex 14855 -0.0662581 0.15274 0.0347724 Vertex 14856 -0.0150057 0.127967 0.0215456 Vertex 14857 -0.0471876 0.131943 0.0231102 Vertex 14858 -0.0567623 0.154944 0.0190948 Vertex 14859 -0.0064056 0.10047 0.0472751 Vertex 14860 -0.0443833 0.12939 0.00495951 Vertex 14861 -0.0452915 0.1298 0.0046882 Vertex 14862 -0.0748503 0.150353 0.0378605 Vertex 14863 -0.0669712 0.156006 0.0125516 Vertex 14864 -0.0266127 0.121438 0.026306 Vertex 14865 -0.0631289 0.155254 0.0269868 Vertex 14866 -0.0695415 0.15615 0.0130838 Vertex 14867 -0.04802 0.136068 0.0153684 Vertex 14868 -0.0446861 0.130064 0.0166863 Vertex 14869 -0.0441239 0.129077 0.0169132 Vertex 14870 -0.0435257 0.128183 0.0171556 Vertex 14871 -0.0249745 0.12528 0.0180213 Vertex 14872 0.0151622 0.122267 0.032438 Vertex 14873 -0.081815 0.108922 0.02836 Vertex 14874 -0.0281138 0.125637 0.0139342 Vertex 14875 -0.0893948 0.09291 0.012442 Vertex 14876 -0.0346758 0.127158 0.0144691 Vertex 14877 -0.0595569 0.153648 0.0312116 Vertex 14878 0.0360791 0.111295 0.00152105 Vertex 14879 0.0354301 0.112103 0.00127449 Vertex 14880 0.0348029 0.113058 0.00110003 Vertex 14881 0.0342026 0.113899 0.000840527 Vertex 14882 0.0335656 0.114779 0.000629741 Vertex 14883 0.0328625 0.115479 0.000361714 Vertex 14884 0.0321211 0.116144 0.000111339 Vertex 14885 0.0313677 0.11674 -0.000181085 Vertex 14886 0.0305901 0.117314 -0.000462026 Vertex 14887 0.0299199 0.11779 -0.000781916 Vertex 14888 0.0289937 0.118368 -0.00105099 Vertex 14889 0.0282135 0.118937 -0.00132982 Vertex 14890 0.02739 0.119413 -0.00163712 Vertex 14891 0.026559 0.119879 -0.0019388 Vertex 14892 -0.0272334 0.0902723 -0.0326005 Vertex 14893 -0.0847199 0.0939171 -0.00356265 Vertex 14894 -0.0892956 0.0942653 0.013432 Vertex 14895 -0.0888371 0.0942243 0.00943852 Vertex 14896 -0.088725 0.0942104 0.00844208 Vertex 14897 -0.0770466 0.0947961 -0.0125384 Vertex 14898 -0.0547576 0.161266 0.00105716 Vertex 14899 -0.0887521 0.0969152 0.00742291 Vertex 14900 -0.0892038 0.0969467 0.00941895 Vertex 14901 -0.0893298 0.0969555 0.0104169 Vertex 14902 -0.0925344 0.124191 0.0302708 Vertex 14903 -0.0932444 0.124186 0.027283 Vertex 14904 -0.083332 0.0992842 -0.00460735 Vertex 14905 -0.0842752 0.141807 0.00320102 Vertex 14906 -0.0896062 0.137812 0.0131974 Vertex 14907 -0.0900489 0.137821 0.0141988 Vertex 14908 -0.0902839 0.137831 0.0151959 Vertex 14909 -0.0254349 0.121225 -0.00822483 Vertex 14910 -0.0938789 0.125503 0.0152603 Vertex 14911 -0.0900893 0.135135 0.0242145 Vertex 14912 -0.0858238 0.104979 0.0223569 Vertex 14913 -0.0800669 0.107282 -0.00460113 Vertex 14914 -0.0388328 0.0943088 -0.0230504 Vertex 14915 -0.0914405 0.117414 0.0273008 Vertex 14916 -0.0913339 0.117411 0.0283055 Vertex 14917 -0.0729322 0.156105 0.0220745 Vertex 14918 -0.00992376 0.097544 0.0521376 Vertex 14919 -0.0324184 0.123701 0.0227019 Vertex 14920 -0.0872732 0.151714 0.0113029 Vertex 14921 -0.0423586 0.123855 0.0235885 Vertex 14922 -0.0433492 0.123979 0.0232099 Vertex 14923 -0.0544133 0.159808 0.00694146 Vertex 14924 0.0130767 0.125591 0.0302496 Vertex 14925 -0.0717396 0.156144 0.0122972 Vertex 14926 -0.0629292 0.155832 0.0110869 Vertex 14927 -0.085741 0.151793 0.0266482 Vertex 14928 -0.0843142 0.152356 0.00793113 Vertex 14929 -0.0684446 0.156174 0.0134711 Vertex 14930 -0.00485582 0.0989472 0.0508482 Vertex 14931 -0.00023307 0.0988811 0.0510016 Vertex 14932 -0.0644558 0.155894 0.01199 Vertex 14933 0.000625364 0.130997 0.01994 Vertex 14934 0.0122548 0.126063 0.0299441 Vertex 14935 -0.0457478 0.130844 0.0207105 Vertex 14936 -0.0649985 0.156251 0.0205012 Vertex 14937 -0.0759088 0.150426 0.0375079 Vertex 14938 -0.0345319 0.122423 0.0264163 Vertex 14939 -0.0547132 0.153591 0.0213081 Vertex 14940 -0.029145 0.125694 0.0135548 Vertex 14941 -0.0644057 0.16752 -0.0356951 Vertex 14942 -0.0650469 0.168333 -0.0359323 Vertex 14943 -0.0656974 0.169193 -0.0361564 Vertex 14944 -0.0664072 0.169883 -0.0364165 Vertex 14945 -0.0671575 0.17049 -0.0366968 Vertex 14946 -0.0679053 0.171131 -0.036968 Vertex 14947 -0.0687158 0.171626 -0.0372714 Vertex 14948 -0.069532 0.172114 -0.0375728 Vertex 14949 -0.070349 0.172644 -0.037875 Vertex 14950 -0.0711885 0.173044 -0.0381946 Vertex 14951 -0.0720651 0.173384 -0.0385311 Vertex 14952 -0.072956 0.173805 -0.0388399 Vertex 14953 -0.0738593 0.174047 -0.0391959 Vertex 14954 -0.0748301 0.174171 -0.0395847 Vertex 14955 -0.0760781 0.173825 -0.0400503 Vertex 14956 -0.0772285 0.173502 -0.0405421 Vertex 14957 0.011387 0.126452 0.0296316 Vertex 14958 -0.0767842 0.155599 0.0119802 Vertex 14959 -0.0814342 0.154656 0.0132857 Vertex 14960 -0.0670064 0.156281 0.0226936 Vertex 14961 -0.0399374 0.122179 0.0274746 Vertex 14962 -0.0619687 0.155933 0.0215789 Vertex 14963 -0.0672538 0.152901 0.0344187 Vertex 14964 0.0595186 0.0696512 0.0111197 Vertex 14965 0.058913 0.070492 0.0108657 Vertex 14966 0.0581844 0.0711857 0.0106064 Vertex 14967 0.0574073 0.0717824 0.0103168 Vertex 14968 0.0565518 0.0722252 0.0100192 Vertex 14969 0.0556563 0.0725898 0.00964459 Vertex 14970 0.0547011 0.0728313 0.00929699 Vertex 14971 0.0536465 0.0728799 0.00890065 Vertex 14972 0.0525444 0.0728335 0.00848027 Vertex 14973 0.051394 0.0726569 0.00804397 Vertex 14974 -0.0876687 0.0981895 0.00443327 Vertex 14975 -0.0944953 0.125552 0.0212653 Vertex 14976 -0.0908622 0.135106 0.0192089 Vertex 14977 0.0199544 0.117871 -0.0110405 Vertex 14978 -0.000472072 0.130948 0.0195451 Vertex 14979 0.0105543 0.126889 0.0293082 Vertex 14980 -0.00204808 0.0983649 0.051847 Vertex 14981 -0.0386541 0.126132 0.0204051 Vertex 14982 -0.00603192 0.127393 0.0291246 Vertex 14983 0.00702297 0.127188 0.0294846 Vertex 14984 0.0023065 0.128418 0.0277808 Vertex 14985 -0.0301237 0.12585 0.013192 Vertex 14986 -0.0310488 0.126128 0.0128475 Vertex 14987 0.000648366 0.101032 0.0453587 Vertex 14988 -0.0659293 0.156005 0.0129201 Vertex 14989 -0.0277551 0.121254 0.0258902 Vertex 14990 -0.0321019 0.119786 0.0288381 Vertex 14991 -0.0524014 0.152599 0.0134601 Vertex 14992 -0.0175484 0.124749 0.0265509 Vertex 14993 -0.0188136 0.124392 0.0261122 Vertex 14994 -0.0292509 0.122699 0.0223824 Vertex 14995 -0.0300755 0.123175 0.0220771 Vertex 14996 -0.0308933 0.12367 0.0217821 Vertex 14997 -0.0460219 0.166062 0.00401182 Vertex 14998 -0.0823623 0.154598 0.0188308 Vertex 14999 0.0145196 0.123096 0.0322223 Vertex 15000 0.0391529 0.107674 0.00402907 Vertex 15001 -0.0362833 0.17342 -0.00108904 Vertex 15002 0.012678 0.130036 0.0186174 Vertex 15003 -0.013866 0.129156 0.0103484 Vertex 15004 -0.00156343 0.13088 0.0191419 Vertex 15005 0.0359834 0.11203 0.00292702 Vertex 15006 0.0353283 0.112832 0.00268414 Vertex 15007 0.0347186 0.113797 0.00249877 Vertex 15008 0.0340849 0.114614 0.00225198 Vertex 15009 0.0334188 0.115464 0.00204907 Vertex 15010 0.0327231 0.116168 0.00178038 Vertex 15011 0.0319954 0.11684 0.00152318 Vertex 15012 0.0312312 0.117425 0.00123717 Vertex 15013 0.0304509 0.117992 0.000957505 Vertex 15014 0.0296461 0.118491 0.000643936 Vertex 15015 0.0288553 0.119043 0.000370228 Vertex 15016 0.0280536 0.119554 5.13011e-05 Vertex 15017 0.0272253 0.120021 -0.000250724 Vertex 15018 0.0264078 0.120534 -0.000510633 Vertex 15019 0.0256059 0.12104 -0.000826914 Vertex 15020 0.0247922 0.121532 -0.00113746 Vertex 15021 0.0239009 0.12202 -0.0014718 Vertex 15022 -0.0851109 0.0939488 -0.00257672 Vertex 15023 -0.0855876 0.0939777 -0.00157288 Vertex 15024 -0.0857862 0.0939971 -0.00056361 Vertex 15025 -0.0888687 0.0942285 0.0104297 Vertex 15026 -0.0788763 0.0949177 -0.010577 Vertex 15027 -0.0141262 0.119616 -0.0126879 Vertex 15028 -0.091546 0.146121 0.023146 Vertex 15029 -0.0731992 0.145774 -0.0148545 Vertex 15030 -0.0894422 0.0969694 0.0114146 Vertex 15031 -0.0896201 0.0969823 0.0124196 Vertex 15032 -0.0941673 0.124186 0.0242853 Vertex 15033 -0.0929791 0.124188 0.0282747 Vertex 15034 -0.0794636 0.141716 -0.00376694 Vertex 15035 -0.0908687 0.135097 0.0172074 Vertex 15036 -0.0881381 0.0996585 0.0223676 Vertex 15037 0.0236032 0.116718 -0.00979024 Vertex 15038 -0.029962 0.122606 -0.0056563 Vertex 15039 -0.0713206 0.156784 -0.042915 Vertex 15040 -0.085549 0.104961 0.0233427 Vertex 15041 -0.077037 0.111295 -0.0046823 Vertex 15042 -0.09118 0.143373 0.022161 Vertex 15043 -0.0913152 0.114759 0.0363194 Vertex 15044 -0.0921325 0.117269 0.0252198 Vertex 15045 -0.0926082 0.117405 0.0243082 Vertex 15046 -0.0596936 0.155857 0.0122367 Vertex 15047 -0.0121165 0.0973987 0.0513433 Vertex 15048 -0.0738542 0.15551 0.00718209 Vertex 15049 -0.0113442 0.129847 0.0112634 Vertex 15050 -0.0661823 0.154393 0.00121795 Vertex 15051 -0.0356104 0.127425 0.0141251 Vertex 15052 -0.0588103 0.157344 0.00530008 Vertex 15053 -0.0126044 0.12951 0.0108053 Vertex 15054 -0.0651287 0.156206 0.0175513 Vertex 15055 -0.0379003 0.123041 0.0266516 Vertex 15056 -0.0866438 0.152376 0.0233632 Vertex 15057 -0.0729629 0.155811 0.0249814 Vertex 15058 -0.00162661 0.100486 0.0474782 Vertex 15059 -0.0699807 0.149351 0.039589 Vertex 15060 -0.0590542 0.155341 0.0226214 Vertex 15061 -0.00371721 0.100591 0.046739 Vertex 15062 0.0140569 0.12802 0.0248446 Vertex 15063 -0.00260812 0.130913 0.0187596 Vertex 15064 -0.0558399 0.0666 0.0358943 Vertex 15065 -0.0884108 0.0928321 0.00744302 Vertex 15066 -0.0215138 0.185205 -0.0184453 Vertex 15067 -0.00514301 0.0997589 0.0492461 Vertex 15068 -0.0890662 0.123985 0.0032876 Vertex 15069 -0.0600611 0.155861 0.0164593 Vertex 15070 -0.0554731 0.154191 0.0210182 Vertex 15071 -0.0781956 0.163891 -0.0259488 Vertex 15072 -0.0923861 0.125586 0.0352607 Vertex 15073 -0.0641565 0.166823 -0.0341745 Vertex 15074 -0.0647866 0.167644 -0.0344082 Vertex 15075 -0.065431 0.168513 -0.0346313 Vertex 15076 -0.0661031 0.169296 -0.0348743 Vertex 15077 -0.0668287 0.169972 -0.0351376 Vertex 15078 -0.0675927 0.17056 -0.0354212 Vertex 15079 -0.068398 0.171087 -0.0357069 Vertex 15080 -0.0691914 0.171601 -0.0360136 Vertex 15081 -0.0700192 0.172057 -0.036324 Vertex 15082 -0.0708823 0.172457 -0.0366471 Vertex 15083 -0.0717609 0.172825 -0.0369735 Vertex 15084 -0.072708 0.173064 -0.0373345 Vertex 15085 -0.073631 0.173473 -0.03767 Vertex 15086 -0.0745832 0.173457 -0.038075 Vertex 15087 -0.0758319 0.173116 -0.0385323 Vertex 15088 -0.0644858 0.152894 -0.00250698 Vertex 15089 -0.0775236 0.155819 0.0175602 Vertex 15090 -0.0789069 0.155396 0.0141592 Vertex 15091 -0.0660163 0.156182 0.0230465 Vertex 15092 -0.0421185 0.122004 0.0266511 Vertex 15093 -0.0821317 0.151156 0.0323844 Vertex 15094 -0.00375638 0.13079 0.0183493 Vertex 15095 -0.0651889 0.153592 -0.00278678 Vertex 15096 0.0593202 0.0701868 0.012517 Vertex 15097 0.0586637 0.0709935 0.0122726 Vertex 15098 0.0579415 0.0716454 0.0119821 Vertex 15099 0.0571336 0.0721807 0.0116675 Vertex 15100 0.0562687 0.0726263 0.0113628 Vertex 15101 0.0553639 0.0729653 0.0110394 Vertex 15102 0.0543768 0.0731861 0.0106539 Vertex 15103 0.0533686 0.0732758 0.0102917 Vertex 15104 0.0522643 0.0732287 0.00987093 Vertex 15105 0.0510603 0.0729911 0.0094016 Vertex 15106 0.049877 0.0727457 0.00893584 Vertex 15107 0.0487458 0.0724992 0.00846572 Vertex 15108 -0.0877192 0.101 0.0223776 Vertex 15109 -0.0881296 0.100997 0.0213597 Vertex 15110 -0.0885895 0.126718 0.00227148 Vertex 15111 -0.06586 0.154377 -0.00304604 Vertex 15112 -0.0690967 0.148938 0.0398784 Vertex 15113 -0.0303567 0.119073 0.029499 Vertex 15114 -0.0558806 0.154815 0.016521 Vertex 15115 -0.0568165 0.155074 0.0161832 Vertex 15116 -0.0577063 0.155408 0.0158579 Vertex 15117 -0.058643 0.155634 0.0155202 Vertex 15118 -0.0648306 0.156078 0.013307 Vertex 15119 -0.0287913 0.121291 0.025511 Vertex 15120 -0.0329258 0.120263 0.0285346 Vertex 15121 -0.0530069 0.153493 0.0132253 Vertex 15122 -0.0162922 0.125122 0.0270033 Vertex 15123 -0.0586226 0.156199 0.00971481 Vertex 15124 -0.0574718 0.156359 0.0101234 Vertex 15125 -0.056364 0.156406 0.0105108 Vertex 15126 -0.0544491 0.156028 0.0112408 Vertex 15127 -0.0535748 0.155622 0.0115317 Vertex 15128 -0.0553853 0.15628 0.0108911 Vertex 15129 -0.0870329 0.152942 0.0187545 Vertex 15130 -0.0665414 0.155108 -0.00331096 Vertex 15131 0.039601 0.107391 0.00564087 Vertex 15132 0.0389649 0.108275 0.00542368 Vertex 15133 0.0383485 0.10917 0.00520513 Vertex 15134 0.0377445 0.110141 0.00501649 Vertex 15135 0.0371318 0.111041 0.00479819 Vertex 15136 0.0364907 0.111851 0.00455337 Vertex 15137 0.0358297 0.112651 0.00431137 Vertex 15138 0.0351839 0.113522 0.00409669 Vertex 15139 0.0345596 0.114411 0.00388032 Vertex 15140 0.0339044 0.115273 0.00366751 Vertex 15141 0.0332241 0.115988 0.0034015 Vertex 15142 0.0325339 0.116751 0.00316678 Vertex 15143 0.0317883 0.117354 0.00287906 Vertex 15144 0.0310215 0.117934 0.00259488 Vertex 15145 0.0302372 0.118499 0.00231637 Vertex 15146 0.029447 0.119051 0.00204245 Vertex 15147 0.0286891 0.119649 0.00175522 Vertex 15148 0.0278788 0.120142 0.00144262 Vertex 15149 0.0270636 0.120631 0.00113345 Vertex 15150 0.0262334 0.121101 0.000829633 Vertex 15151 0.0254417 0.121647 0.000551492 Vertex 15152 0.0246516 0.122175 0.000230276 Vertex 15153 0.0238372 0.12269 -3.58731e-05 Vertex 15154 -0.0842794 0.115636 -0.000747849 Vertex 15155 -0.0859939 0.0940196 0.000445293 Vertex 15156 -0.0889746 0.0942393 0.0114303 Vertex 15157 -0.0781065 0.0948585 -0.0115273 Vertex 15158 -0.079893 0.0949635 -0.0095262 Vertex 15159 -0.0807586 0.0950245 -0.00854945 Vertex 15160 -0.08951 0.140665 0.0311774 Vertex 15161 -0.0897915 0.135018 0.00821888 Vertex 15162 -0.0896385 0.0969877 0.0134181 Vertex 15163 -0.0894927 0.14204 0.0311659 Vertex 15164 -0.0927326 0.12419 0.0292678 Vertex 15165 -0.0921132 0.115989 0.0103178 Vertex 15166 -0.0913388 0.115949 0.00831473 Vertex 15167 -0.0884258 0.0996766 0.0213895 Vertex 15168 -0.0890962 0.0996533 0.0114017 Vertex 15169 -0.0890383 0.09964 0.0104144 Vertex 15170 -0.0201151 0.123178 -0.00639815 Vertex 15171 -0.0804527 0.143139 -0.00181198 Vertex 15172 -0.0851998 0.104954 0.024348 Vertex 15173 -0.0763933 0.111249 -0.00565203 Vertex 15174 -0.0780101 0.11134 -0.00369811 Vertex 15175 -0.0876555 0.144675 0.00917716 Vertex 15176 -0.0691184 0.165207 -0.0519806 Vertex 15177 -0.0934884 0.117419 0.0203018 Vertex 15178 -0.0587089 0.155741 0.0125904 Vertex 15179 -0.0153478 0.0972963 0.0501876 Vertex 15180 -0.0671961 0.15591 -0.00355939 Vertex 15181 -0.0314643 0.126198 0.0141678 Vertex 15182 -0.0282035 0.125211 0.0168448 Vertex 15183 -0.0531754 0.160014 0.00733632 Vertex 15184 -0.0508814 0.161419 0.0066624 Vertex 15185 -0.0346038 0.123422 0.0248791 Vertex 15186 -0.0312974 0.120401 0.0276066 Vertex 15187 -0.0679476 0.156599 -0.00385029 Vertex 15188 -0.00887703 0.0985896 0.0509585 Vertex 15189 -0.0280888 0.121741 0.0242898 Vertex 15190 -0.0698349 0.155896 0.010068 Vertex 15191 -0.0686037 0.157344 -0.00409918 Vertex 15192 -0.0838788 0.153353 0.0242347 Vertex 15193 -0.0515277 0.136697 0.0258426 Vertex 15194 -0.0693964 0.157876 -0.00437702 Vertex 15195 -0.0195891 0.186548 -0.0163318 Vertex 15196 -0.0203431 0.186558 -0.0166005 Vertex 15197 -0.022279 0.185099 -0.0171819 Vertex 15198 -0.00479304 0.130806 0.0179661 Vertex 15199 -0.0567073 0.152073 0.0307854 Vertex 15200 -0.0702694 0.156361 0.0186365 Vertex 15201 -0.0563002 0.154681 0.0207165 Vertex 15202 -0.0701845 0.158483 -0.00465374 Vertex 15203 -0.0633619 0.165109 -0.0324564 Vertex 15204 -0.0639501 0.166025 -0.0326719 Vertex 15205 -0.06455 0.166996 -0.0328772 Vertex 15206 -0.0651676 0.167884 -0.0330971 Vertex 15207 -0.0658513 0.168603 -0.0333515 Vertex 15208 -0.0665486 0.169315 -0.0336077 Vertex 15209 -0.0672777 0.169987 -0.0338702 Vertex 15210 -0.0680553 0.17056 -0.0341587 Vertex 15211 -0.0688509 0.171089 -0.0344529 Vertex 15212 -0.0696712 0.171569 -0.0347594 Vertex 15213 -0.070543 0.17193 -0.0350862 Vertex 15214 -0.0714609 0.172223 -0.0354286 Vertex 15215 -0.0723893 0.172498 -0.0357772 Vertex 15216 -0.0733228 0.17276 -0.036126 Vertex 15217 -0.0743656 0.172848 -0.0365047 Vertex 15218 -0.0756171 0.172473 -0.0369846 Vertex 15219 -0.0710496 0.158811 -0.00499394 Vertex 15220 -0.031974 0.126184 0.0154629 Vertex 15221 -0.00515103 0.127241 0.0295045 Vertex 15222 -0.0562907 0.154938 0.0178178 Vertex 15223 -0.0764922 0.155931 0.0149956 Vertex 15224 -0.06497 0.156112 0.0234152 Vertex 15225 -0.0721129 0.15894 -0.00533295 Vertex 15226 -0.0670825 0.156321 0.0197603 Vertex 15227 -0.0733382 0.158682 -0.00576511 Vertex 15228 -0.0746759 0.158036 -0.00628607 Vertex 15229 -0.00594439 0.13066 0.0175514 Vertex 15230 0.058376 0.0713467 0.0136326 Vertex 15231 0.0576189 0.0719687 0.0133447 Vertex 15232 0.0567814 0.0724634 0.0130365 Vertex 15233 0.0558934 0.0728505 0.0127047 Vertex 15234 0.0549936 0.0732019 0.0123756 Vertex 15235 0.0540437 0.0734433 0.0120297 Vertex 15236 0.052991 0.0735097 0.0116286 Vertex 15237 0.051883 0.0734548 0.0112114 Vertex 15238 0.050682 0.0731977 0.010749 Vertex 15239 0.0496058 0.0730794 0.0103455 Vertex 15240 0.0484731 0.0728694 0.00986875 Vertex 15241 0.0476495 0.073201 0.00955169 Vertex 15242 0.0469057 0.0738955 0.00933063 Vertex 15243 0.0465562 0.0753029 0.0092212 Vertex 15244 0.021311 0.123415 0.0275211 Vertex 15245 -0.0293809 0.118905 0.0298455 Vertex 15246 -0.0405119 0.125571 0.0212459 Vertex 15247 -0.0394107 0.125604 0.021627 Vertex 15248 -0.0347822 0.124221 0.0233214 Vertex 15249 -0.0322922 0.122832 0.0242564 Vertex 15250 -0.0314769 0.122323 0.024544 Vertex 15251 -0.0305995 0.121953 0.0248664 Vertex 15252 -0.029726 0.121561 0.0251755 Vertex 15253 -0.0353528 0.121762 0.0276148 Vertex 15254 -0.0536545 0.154299 0.0129697 Vertex 15255 -0.0149752 0.125602 0.0274605 Vertex 15256 -0.0597327 0.156046 0.0093301 Vertex 15257 -0.0443682 0.129764 0.015339 Vertex 15258 -0.0449132 0.130768 0.0151196 Vertex 15259 -0.0547922 0.153188 0.0241866 Vertex 15260 -0.00114981 0.12653 0.03091 Vertex 15261 -0.000215874 0.126274 0.0312521 Vertex 15262 -0.00202406 0.126832 0.0305449 Vertex 15263 -0.0319273 0.126498 0.0125244 Vertex 15264 -0.00709045 0.130506 0.0171336 Vertex 15265 0.0393898 0.107905 0.00701069 Vertex 15266 0.0387588 0.108855 0.00681782 Vertex 15267 0.0381409 0.109688 0.00657231 Vertex 15268 0.0375161 0.110639 0.00638069 Vertex 15269 0.0368852 0.111459 0.00613554 Vertex 15270 0.0362459 0.112339 0.00591924 Vertex 15271 0.0356067 0.113152 0.00567562 Vertex 15272 0.0349753 0.114037 0.00545779 Vertex 15273 0.0343452 0.114918 0.0052408 Vertex 15274 0.0336909 0.115719 0.00499933 Vertex 15275 0.0330035 0.116489 0.00476188 Vertex 15276 0.0322912 0.117174 0.00450048 Vertex 15277 0.0315716 0.117859 0.00423829 Vertex 15278 0.030827 0.118499 0.003976 Vertex 15279 0.0300401 0.11902 0.00366373 Vertex 15280 0.0292509 0.119574 0.0033793 Vertex 15281 0.02849 0.120167 0.00308975 Vertex 15282 0.0277057 0.120723 0.00280565 Vertex 15283 0.026879 0.121193 0.00250168 Vertex 15284 0.026052 0.121668 0.00219807 Vertex 15285 0.025254 0.122206 0.00192061 Vertex 15286 0.0245032 0.122816 0.00162459 Vertex 15287 0.0236993 0.12332 0.00130956 Vertex 15288 0.0228685 0.123786 0.00100726 Vertex 15289 0.0211914 0.124678 0.000362022 Vertex 15290 0.0203379 0.125091 8.19329e-05 Vertex 15291 -0.0862312 0.0940245 0.00140199 Vertex 15292 -0.0891671 0.0942549 0.0124334 Vertex 15293 -0.0884983 0.0941957 0.00744581 Vertex 15294 -0.0880011 0.0941555 0.00641769 Vertex 15295 -0.0815808 0.0950721 -0.00753639 Vertex 15296 -0.0822784 0.0951136 -0.0065238 Vertex 15297 -0.0887346 0.0956375 0.0224045 Vertex 15298 -0.0408808 0.115001 -0.0156637 Vertex 15299 -0.0908254 0.142021 0.0251655 Vertex 15300 -0.0826224 0.141799 0.00118353 Vertex 15301 -0.0784181 0.163881 -0.0269512 Vertex 15302 -0.0251041 0.0945178 -0.0276305 Vertex 15303 -0.0860481 0.114371 0.00228673 Vertex 15304 -0.088271 0.126713 0.00126975 Vertex 15305 -0.0891975 0.0996627 0.0124046 Vertex 15306 -0.0769111 0.100434 -0.0105662 Vertex 15307 -0.0728877 0.143976 -0.0119757 Vertex 15308 -0.0874489 0.105009 0.0173545 Vertex 15309 -0.0876028 0.105024 0.0163629 Vertex 15310 -0.0788672 0.111379 -0.00271807 Vertex 15311 -0.0366237 0.123115 -0.00817194 Vertex 15312 -0.0752855 0.176467 -0.0519633 Vertex 15313 -0.0933646 0.117392 0.0153085 Vertex 15314 -0.0917148 0.117385 0.0263102 Vertex 15315 -0.0681277 0.152206 0.0356633 Vertex 15316 -0.0142604 0.0974009 0.0506069 Vertex 15317 0.0130051 0.123122 0.0330958 Vertex 15318 -0.0395016 0.128216 0.0127148 Vertex 15319 -0.0306093 0.125854 0.0144859 Vertex 15320 -0.0296756 0.125596 0.0148252 Vertex 15321 -0.0465353 0.133196 0.0100953 Vertex 15322 -0.0123976 0.0991026 0.0482068 Vertex 15323 -0.0528865 0.15117 0.0191272 Vertex 15324 -0.071543 0.155755 0.00800576 Vertex 15325 -0.041821 0.0914074 -0.0230213 Vertex 15326 -0.0653187 0.152492 0.0351215 Vertex 15327 -0.0824094 0.151775 0.0307901 Vertex 15328 -0.0480086 0.134685 0.0198054 Vertex 15329 0.00183354 0.10009 0.0472603 Vertex 15330 -0.0629926 0.156114 0.0183129 Vertex 15331 0.000301963 0.100099 0.0481787 Vertex 15332 -0.0201986 0.186115 -0.0151371 Vertex 15333 -0.0212084 0.186026 -0.0155815 Vertex 15334 -0.0226586 0.185005 -0.0161016 Vertex 15335 -0.0563569 0.155043 0.0148967 Vertex 15336 -0.057302 0.152908 0.030569 Vertex 15337 -0.0552085 0.151192 0.0284379 Vertex 15338 -0.0101504 0.0993437 0.0489973 Vertex 15339 -0.0637125 0.165316 -0.0311513 Vertex 15340 -0.0643222 0.166215 -0.0313693 Vertex 15341 -0.0649388 0.16711 -0.0315896 Vertex 15342 -0.0655814 0.167928 -0.031824 Vertex 15343 -0.0662787 0.168684 -0.0320741 Vertex 15344 -0.0669945 0.169371 -0.0323347 Vertex 15345 -0.0677578 0.16996 -0.0326164 Vertex 15346 -0.0685451 0.170527 -0.0328985 Vertex 15347 -0.0693669 0.17099 -0.0332104 Vertex 15348 -0.0701909 0.171451 -0.0335218 Vertex 15349 -0.071113 0.171733 -0.033865 Vertex 15350 -0.0720408 0.171996 -0.0342175 Vertex 15351 -0.0730299 0.172199 -0.0345665 Vertex 15352 -0.0740734 0.172255 -0.0349568 Vertex 15353 -0.0752743 0.171989 -0.0354168 Vertex 15354 -0.0764914 0.171559 -0.0359139 Vertex 15355 -0.0729862 0.15207 0.0354642 Vertex 15356 -0.0328507 0.126562 0.0151396 Vertex 15357 -0.0750027 0.155319 0.00677634 Vertex 15358 -0.0328107 0.126843 0.0122027 Vertex 15359 -0.0741825 0.156237 0.0158024 Vertex 15360 -0.0601235 0.15512 0.0251504 Vertex 15361 -0.057663 0.155278 0.0187721 Vertex 15362 -0.040335 0.124745 0.0227896 Vertex 15363 -0.0343047 0.125361 0.0205265 Vertex 15364 -0.0744234 0.156022 0.0128056 Vertex 15365 0.0587398 0.0709245 0.0152557 Vertex 15366 0.0580311 0.0716366 0.0149943 Vertex 15367 0.0572674 0.0722428 0.0147076 Vertex 15368 0.0564285 0.0727253 0.0143999 Vertex 15369 0.0555021 0.0730293 0.0140468 Vertex 15370 0.0546053 0.0733755 0.0137165 Vertex 15371 0.0536189 0.0735747 0.0133449 Vertex 15372 0.0526044 0.0736805 0.0129696 Vertex 15373 0.0514504 0.0735674 0.0125302 Vertex 15374 0.0503561 0.073461 0.0121181 Vertex 15375 0.0491953 0.0732159 0.0116573 Vertex 15376 0.0481666 0.0731681 0.01124 Vertex 15377 0.047365 0.0735855 0.0109418 Vertex 15378 0.0468003 0.0745424 0.0107517 Vertex 15379 0.04653 0.0760573 0.0105389 Vertex 15380 -0.0426342 0.12559 0.0204963 Vertex 15381 -0.0416036 0.125525 0.0208631 Vertex 15382 -0.0407505 0.126266 0.0196745 Vertex 15383 -0.0487311 0.13178 0.0269763 Vertex 15384 -0.0827498 0.154172 0.0128373 Vertex 15385 -0.0447621 0.126552 0.0211574 Vertex 15386 -0.0777335 0.153443 0.0307864 Vertex 15387 -0.0396931 0.126183 0.0200311 Vertex 15388 -0.0399361 0.123254 0.0259269 Vertex 15389 -0.0543527 0.155034 0.0127444 Vertex 15390 -0.0136948 0.125921 0.0278767 Vertex 15391 -0.0696447 0.155522 0.00577511 Vertex 15392 -0.0437463 0.128889 0.0155826 Vertex 15393 -0.0745678 0.155931 0.022959 Vertex 15394 -0.0271883 0.118982 0.0306038 Vertex 15395 -0.060661 0.155018 0.0264156 Vertex 15396 -0.0460193 0.128067 0.0236255 Vertex 15397 -0.0477867 0.135371 0.0169352 Vertex 15398 0.00621882 0.12419 0.0335647 Vertex 15399 -0.0283423 0.118847 0.030216 Vertex 15400 -0.0536498 0.152894 0.0173581 Vertex 15401 0.0391497 0.108397 0.00837586 Vertex 15402 0.0385195 0.109282 0.00815775 Vertex 15403 0.0378869 0.110163 0.00793964 Vertex 15404 0.0372544 0.111046 0.00772111 Vertex 15405 0.0366228 0.111865 0.00747742 Vertex 15406 0.0359746 0.112738 0.007259 Vertex 15407 0.0353395 0.113619 0.00703904 Vertex 15408 0.0347176 0.114447 0.00679736 Vertex 15409 0.0340797 0.115381 0.00660331 Vertex 15410 0.0334294 0.116181 0.00636312 Vertex 15411 0.0327554 0.116907 0.00609585 Vertex 15412 0.0320708 0.117667 0.00585111 Vertex 15413 0.0313378 0.118325 0.00558524 Vertex 15414 0.0305837 0.118921 0.00529549 Vertex 15415 0.0298218 0.119509 0.00500708 Vertex 15416 0.0290675 0.120111 0.00471365 Vertex 15417 0.0282794 0.120663 0.00443205 Vertex 15418 0.0275059 0.121239 0.00414409 Vertex 15419 0.0266708 0.121701 0.00384182 Vertex 15420 0.0258883 0.12226 0.00355652 Vertex 15421 0.0251009 0.122815 0.00327552 Vertex 15422 0.0243085 0.123343 0.00295625 Vertex 15423 0.0235199 0.123889 0.00267512 Vertex 15424 0.0227041 0.124378 0.0023667 Vertex 15425 0.0218833 0.124858 0.00205716 Vertex 15426 0.0210505 0.125312 0.00175976 Vertex 15427 0.0201693 0.125674 0.00144037 Vertex 15428 0.0192952 0.126057 0.00111502 Vertex 15429 0.018385 0.126365 0.000765748 Vertex 15430 0.0174979 0.126711 0.000451693 Vertex 15431 0.0165768 0.126998 0.000104849 Vertex 15432 -0.0873547 0.094105 0.00537923 Vertex 15433 -0.087209 0.0941073 0.00444199 Vertex 15434 -0.0912331 0.114706 0.0382141 Vertex 15435 -0.0721007 0.175064 -0.0530188 Vertex 15436 -0.0912374 0.140583 0.0161703 Vertex 15437 -0.0893696 0.140675 0.0341739 Vertex 15438 -0.0722528 0.156819 -0.0369077 Vertex 15439 -0.0742948 0.147166 -0.0148659 Vertex 15440 -0.0915139 0.140599 0.0171878 Vertex 15441 -0.0884357 0.140552 0.0112052 Vertex 15442 -0.0942744 0.126919 0.0202522 Vertex 15443 -0.089435 0.0996945 0.016394 Vertex 15444 -0.0780733 0.100357 -0.00962255 Vertex 15445 -0.0741071 0.154101 -0.0239055 Vertex 15446 -0.0809353 0.145916 -0.000819165 Vertex 15447 -0.08784 0.105023 0.0143674 Vertex 15448 -0.0878453 0.10502 0.0133698 Vertex 15449 -0.0872189 0.103599 0.00739967 Vertex 15450 0.022698 0.118017 -0.00920048 Vertex 15451 -0.0926722 0.117507 0.0393006 Vertex 15452 -0.0704499 0.154022 0.0317661 Vertex 15453 -0.0530502 0.151987 0.0175947 Vertex 15454 0.00308348 0.0981539 0.0507387 Vertex 15455 -0.0331127 0.123309 0.0239558 Vertex 15456 -0.0323169 0.126646 0.013854 Vertex 15457 -0.0199983 0.126616 0.0197793 Vertex 15458 -0.04591 0.132311 0.0103278 Vertex 15459 -0.0242082 0.121982 0.0271598 Vertex 15460 -0.0799451 0.15529 0.0167266 Vertex 15461 -0.0263812 0.120789 0.0279195 Vertex 15462 -0.0886232 0.152074 0.0182297 Vertex 15463 -0.0610919 0.155915 0.0160896 Vertex 15464 -0.0741431 0.153026 0.0335308 Vertex 15465 -0.0625615 0.156051 0.017016 Vertex 15466 0.00277101 0.099815 0.0475918 Vertex 15467 -0.045336 0.129618 0.020889 Vertex 15468 -0.0474148 0.133778 0.0200381 Vertex 15469 -0.0208999 0.185581 -0.0139755 Vertex 15470 -0.021995 0.185609 -0.0143485 Vertex 15471 -0.0234016 0.184697 -0.0149423 Vertex 15472 0.0022525 0.0986072 0.0504164 Vertex 15473 -0.00688511 0.0982482 0.0516445 Vertex 15474 -0.0580426 0.153536 0.0303048 Vertex 15475 -0.0349607 0.125018 0.0217662 Vertex 15476 -0.0572069 0.155002 0.0203881 Vertex 15477 -0.0361331 0.122312 0.027301 Vertex 15478 0.00967962 0.127274 0.0289934 Vertex 15479 -0.0640888 0.165507 -0.029848 Vertex 15480 -0.0646908 0.166411 -0.0300665 Vertex 15481 -0.0653365 0.167223 -0.0303028 Vertex 15482 -0.0660205 0.167997 -0.0305503 Vertex 15483 -0.0667396 0.168684 -0.03081 Vertex 15484 -0.0674741 0.169344 -0.0310786 Vertex 15485 -0.0682563 0.169911 -0.0313673 Vertex 15486 -0.0690262 0.170476 -0.0316587 Vertex 15487 -0.0698895 0.170875 -0.0319754 Vertex 15488 -0.0707666 0.171245 -0.0323024 Vertex 15489 -0.071689 0.171513 -0.0326505 Vertex 15490 -0.0726695 0.171671 -0.0330178 Vertex 15491 -0.073715 0.17176 -0.0333959 Vertex 15492 -0.0748644 0.171601 -0.033829 Vertex 15493 -0.0760947 0.171183 -0.0343205 Vertex 15494 -0.0212669 0.123736 0.0252343 Vertex 15495 -0.0632135 0.155458 0.00808821 Vertex 15496 -0.0472373 0.134368 0.0171539 Vertex 15497 -0.073138 0.156184 0.0161734 Vertex 15498 -0.0582075 0.154657 0.0258383 Vertex 15499 -0.0472066 0.134653 0.0142236 Vertex 15500 -0.0424671 0.124776 0.022048 Vertex 15501 -0.0832568 0.154212 0.0141255 Vertex 15502 -0.0337468 0.127104 0.0118588 Vertex 15503 0.0589083 0.0700926 0.0167877 Vertex 15504 0.0582857 0.0709436 0.0165587 Vertex 15505 0.0576036 0.0717386 0.0163116 Vertex 15506 0.0568364 0.0723477 0.016027 Vertex 15507 0.0560042 0.0728404 0.0157211 Vertex 15508 0.0551137 0.0732038 0.0153863 Vertex 15509 0.0541727 0.0734662 0.0150335 Vertex 15510 0.0531674 0.0736169 0.0146631 Vertex 15511 0.0521155 0.073659 0.0142686 Vertex 15512 0.0510202 0.0736047 0.0138558 Vertex 15513 0.0498767 0.0734333 0.0134213 Vertex 15514 0.0488271 0.0733963 0.0130056 Vertex 15515 0.0478387 0.0734572 0.0126134 Vertex 15516 0.0470624 0.0740285 0.0123586 Vertex 15517 0.0466692 0.0754291 0.0122452 Vertex 15518 0.00881068 0.127643 0.0286728 Vertex 15519 -0.0585706 0.155353 0.0213449 Vertex 15520 -0.0346775 0.127387 0.0115177 Vertex 15521 -0.065794 0.155512 0.00862557 Vertex 15522 -0.064746 0.155508 0.00899366 Vertex 15523 -0.0581695 0.15592 0.011334 Vertex 15524 -0.0571277 0.155869 0.0117051 Vertex 15525 -0.0592055 0.155872 0.0109493 Vertex 15526 -0.0560848 0.155673 0.012015 Vertex 15527 -0.0552142 0.155428 0.0123927 Vertex 15528 -0.0124888 0.126191 0.0283067 Vertex 15529 -0.0706835 0.155594 0.0053992 Vertex 15530 -0.0430221 0.128224 0.015861 Vertex 15531 -0.0702279 0.156078 0.0244771 Vertex 15532 -0.062838 0.15526 0.00677387 Vertex 15533 -0.0639905 0.155091 0.00636862 Vertex 15534 -0.0406463 0.127804 0.0152535 Vertex 15535 -0.0397156 0.127552 0.0155957 Vertex 15536 -0.0415794 0.128056 0.0149128 Vertex 15537 -0.0424853 0.128365 0.0145816 Vertex 15538 0.00890997 0.125517 0.0316176 Vertex 15539 -0.0733029 0.15632 0.000130521 Vertex 15540 0.03891 0.10882 0.00971935 Vertex 15541 0.0382789 0.10977 0.00952257 Vertex 15542 0.0376477 0.110588 0.00928033 Vertex 15543 0.0370023 0.11146 0.00905905 Vertex 15544 0.0363552 0.112269 0.0088181 Vertex 15545 0.0357248 0.113154 0.00859849 Vertex 15546 0.0350985 0.114043 0.00837763 Vertex 15547 0.0344662 0.114921 0.00815778 Vertex 15548 0.0338144 0.115724 0.00791606 Vertex 15549 0.0331853 0.116604 0.00769666 Vertex 15550 0.0325029 0.117364 0.00744623 Vertex 15551 0.0318002 0.118052 0.00717688 Vertex 15552 0.0310854 0.118732 0.00690653 Vertex 15553 0.0303386 0.119339 0.00661655 Vertex 15554 0.0295902 0.119982 0.0063504 Vertex 15555 0.0288283 0.120572 0.00606361 Vertex 15556 0.0280639 0.121158 0.0057742 Vertex 15557 0.0272829 0.121723 0.00548626 Vertex 15558 0.0264872 0.122262 0.00520712 Vertex 15559 0.0256839 0.122773 0.00490001 Vertex 15560 0.0248936 0.12332 0.00461274 Vertex 15561 0.0240783 0.123806 0.00430528 Vertex 15562 0.0233024 0.124378 0.00401489 Vertex 15563 0.0224793 0.124852 0.00370943 Vertex 15564 0.0216273 0.125269 0.00337714 Vertex 15565 0.0207994 0.125738 0.00307388 Vertex 15566 0.0199608 0.126186 0.00277612 Vertex 15567 0.019082 0.126548 0.00245443 Vertex 15568 0.0182356 0.126981 0.00216332 Vertex 15569 0.0173214 0.127268 0.00181685 Vertex 15570 0.0164152 0.127597 0.00146207 Vertex 15571 0.015525 0.127932 0.00115163 Vertex 15572 0.014566 0.128157 0.000776346 Vertex 15573 0.0135945 0.128354 0.000408423 Vertex 15574 0.012653 0.128571 8.59956e-05 Vertex 15575 0.0251837 0.112665 -0.0114294 Vertex 15576 -0.0658954 0.166616 -0.0590008 Vertex 15577 -0.0885678 0.139164 0.0111992 Vertex 15578 -0.0818959 0.141783 0.000186922 Vertex 15579 -0.0917891 0.141969 0.0171701 Vertex 15580 -0.089717 0.142036 0.0301646 Vertex 15581 -0.0903646 0.135051 0.0122148 Vertex 15582 -0.0805557 0.0977534 -0.00758611 Vertex 15583 -0.089402 0.0996815 0.0144017 Vertex 15584 -0.0790004 0.100402 -0.00859092 Vertex 15585 -0.0799546 0.100457 -0.00758867 Vertex 15586 -0.0906275 0.137865 0.0211926 Vertex 15587 -0.0858362 0.103636 0.0243714 Vertex 15588 -0.0877186 0.105023 0.0153645 Vertex 15589 -0.0875094 0.103632 0.00838188 Vertex 15590 -0.0883137 0.103697 0.0153744 Vertex 15591 0.0310879 0.115727 -0.00269046 Vertex 15592 -0.092697 0.117351 0.0113077 Vertex 15593 -0.0925871 0.117342 0.0103086 Vertex 15594 -0.00134544 0.0999407 0.0490888 Vertex 15595 -0.0678931 0.0900993 0.043242 Vertex 15596 -0.0855527 0.153551 0.0192298 Vertex 15597 -0.00794001 0.0994214 0.049751 Vertex 15598 -0.0568081 0.154369 0.0248865 Vertex 15599 -0.0443004 0.130334 0.00946299 Vertex 15600 -0.0379773 0.128134 0.0117903 Vertex 15601 -0.0337351 0.126905 0.0148106 Vertex 15602 -0.0233454 0.122752 0.0259903 Vertex 15603 -0.0778434 0.153328 0.00140062 Vertex 15604 -0.0655551 0.156269 0.0188465 Vertex 15605 -0.0743637 0.153685 0.0319267 Vertex 15606 -0.0339393 0.126307 0.017694 Vertex 15607 -0.0356146 0.127659 0.0111781 Vertex 15608 -0.0615214 0.155998 0.0173864 Vertex 15609 -0.0863368 0.153207 0.0174967 Vertex 15610 -0.0330041 0.122377 0.0254817 Vertex 15611 -0.0312857 0.125233 0.0186818 Vertex 15612 -0.0445794 0.130477 0.0137726 Vertex 15613 -0.0243398 0.183957 -0.0138554 Vertex 15614 -0.0133826 0.1039 0.0435877 Vertex 15615 -0.0208657 0.123339 0.0268408 Vertex 15616 -0.0589919 0.15382 0.0299308 Vertex 15617 -0.0422429 0.129048 0.0117038 Vertex 15618 -0.0751026 0.155922 -0.00200459 Vertex 15619 -0.0365494 0.127902 0.0108341 Vertex 15620 -0.0638477 0.164736 -0.0283363 Vertex 15621 -0.0644726 0.165628 -0.0285568 Vertex 15622 -0.06512 0.166493 -0.0287867 Vertex 15623 -0.0657843 0.167288 -0.0290298 Vertex 15624 -0.0664918 0.167987 -0.0292876 Vertex 15625 -0.0672139 0.168667 -0.0295504 Vertex 15626 -0.067959 0.169303 -0.0298283 Vertex 15627 -0.0687786 0.16979 -0.0301319 Vertex 15628 -0.0695516 0.170347 -0.0304219 Vertex 15629 -0.0704174 0.170744 -0.0307374 Vertex 15630 -0.0713401 0.171022 -0.0310853 Vertex 15631 -0.0723219 0.171178 -0.0314543 Vertex 15632 -0.0733702 0.171289 -0.0318245 Vertex 15633 -0.0745177 0.171112 -0.0322615 Vertex 15634 -0.075709 0.170829 -0.032719 Vertex 15635 -0.0770198 0.170132 -0.03325 Vertex 15636 -0.0375363 0.128085 0.0104763 Vertex 15637 -0.0384762 0.128323 0.0101316 Vertex 15638 -0.0466776 0.13337 0.0173732 Vertex 15639 -0.0719809 0.156292 0.0165776 Vertex 15640 -0.0573264 0.15429 0.0261567 Vertex 15641 -0.0394154 0.128541 0.00978788 Vertex 15642 -0.00141239 0.101018 0.0444401 Vertex 15643 -0.0709721 0.148372 0.0407622 Vertex 15644 -0.00823999 0.130343 0.0167173 Vertex 15645 0.0584567 0.0701808 0.018095 Vertex 15646 0.0578227 0.0710073 0.0178627 Vertex 15647 0.0571135 0.071717 0.0176058 Vertex 15648 0.0563556 0.0723446 0.0173318 Vertex 15649 0.0555265 0.0728462 0.0170262 Vertex 15650 0.0546767 0.0732977 0.0167178 Vertex 15651 0.0537258 0.0735615 0.0163564 Vertex 15652 0.0527245 0.0736707 0.0159788 Vertex 15653 0.0516271 0.0736236 0.0155669 Vertex 15654 0.0505254 0.0735568 0.0151501 Vertex 15655 0.0494051 0.0734301 0.0147277 Vertex 15656 0.0483695 0.0734096 0.0143189 Vertex 15657 0.0474981 0.0737139 0.0139878 Vertex 15658 0.0467993 0.0745196 0.0137565 Vertex 15659 0.0465284 0.0761532 0.0136843 Vertex 15660 0.0231755 0.0916964 -0.0230758 Vertex 15661 -0.0722094 0.155629 0.00630789 Vertex 15662 -0.0711154 0.155676 0.00670049 Vertex 15663 0.000685965 0.124734 0.0330095 Vertex 15664 -0.00019365 0.125094 0.0326823 Vertex 15665 -0.00497421 0.126254 0.0309961 Vertex 15666 -0.00601913 0.126314 0.0306279 Vertex 15667 -0.00926128 0.126278 0.029483 Vertex 15668 -0.0102986 0.126308 0.029096 Vertex 15669 -0.0113988 0.126257 0.0287047 Vertex 15670 -0.0717279 0.155642 0.00502354 Vertex 15671 -0.0422272 0.127744 0.0161624 Vertex 15672 -0.0576415 0.155076 0.0216791 Vertex 15673 -0.0616261 0.155549 0.00719382 Vertex 15674 0.00251222 0.126485 0.0307749 Vertex 15675 0.00349921 0.126284 0.0311054 Vertex 15676 0.00163159 0.126824 0.0304308 Vertex 15677 0.000643571 0.127035 0.0301068 Vertex 15678 -0.0330104 0.126012 0.0180287 Vertex 15679 -0.0321664 0.125608 0.018357 Vertex 15680 -0.00938967 0.130192 0.0162996 Vertex 15681 0.0223101 0.120965 0.030775 Vertex 15682 0.0386236 0.109277 0.0110826 Vertex 15683 0.0380115 0.110174 0.0108643 Vertex 15684 0.0373643 0.110979 0.0106211 Vertex 15685 0.036728 0.111857 0.010401 Vertex 15686 0.0360996 0.112682 0.0101589 Vertex 15687 0.0354634 0.113562 0.00993821 Vertex 15688 0.0348186 0.114435 0.00971518 Vertex 15689 0.0341993 0.115326 0.00949444 Vertex 15690 0.0335642 0.11614 0.00925074 Vertex 15691 0.0329127 0.116986 0.00902312 Vertex 15692 0.0322191 0.117688 0.00875184 Vertex 15693 0.0315171 0.118424 0.0085036 Vertex 15694 0.030795 0.119096 0.00823469 Vertex 15695 0.030074 0.119769 0.00796635 Vertex 15696 0.0293267 0.120376 0.00767428 Vertex 15697 0.0285657 0.120967 0.00738594 Vertex 15698 0.0278403 0.121636 0.00711658 Vertex 15699 0.0270583 0.122199 0.00683201 Vertex 15700 0.0262422 0.122687 0.00652555 Vertex 15701 0.0254642 0.12325 0.0062381 Vertex 15702 0.0246632 0.123785 0.00595837 Vertex 15703 0.0238425 0.124265 0.00565298 Vertex 15704 0.0230359 0.124766 0.00534006 Vertex 15705 0.0222104 0.125239 0.00503339 Vertex 15706 0.0213842 0.125707 0.00472943 Vertex 15707 0.0205271 0.126116 0.00440152 Vertex 15708 0.0196844 0.126554 0.00410284 Vertex 15709 0.0188215 0.126955 0.00377584 Vertex 15710 0.0179495 0.127337 0.00345096 Vertex 15711 0.017067 0.127696 0.00312982 Vertex 15712 0.0161864 0.128058 0.00281004 Vertex 15713 0.0153058 0.128412 0.00248962 Vertex 15714 0.0143833 0.128699 0.00214848 Vertex 15715 0.0134519 0.128957 0.00181284 Vertex 15716 0.0124469 0.129111 0.00141235 Vertex 15717 -0.0911953 0.143381 0.0241598 Vertex 15718 -0.0866345 0.094046 0.00237751 Vertex 15719 -0.0765518 0.15421 -0.000899711 Vertex 15720 -0.0843726 0.0952582 -0.00357113 Vertex 15721 -0.0837476 0.0952109 -0.00455405 Vertex 15722 -0.0840799 0.143223 0.00416483 Vertex 15723 -0.0886136 0.0969805 0.0223931 Vertex 15724 -0.0814376 0.0978185 -0.00662583 Vertex 15725 -0.0892922 0.0996701 0.0134013 Vertex 15726 -0.0894247 0.0996886 0.0153976 Vertex 15727 -0.0889169 0.126733 0.0032966 Vertex 15728 -0.0810222 0.100509 -0.00657927 Vertex 15729 -0.0866185 0.103641 0.022352 Vertex 15730 -0.0847322 0.10481 0.00139005 Vertex 15731 -0.0842709 0.104792 0.000381661 Vertex 15732 -0.0882804 0.103688 0.0163664 Vertex 15733 -0.0298717 0.104385 -0.0225787 Vertex 15734 -0.00583539 0.0910195 -0.0356702 Vertex 15735 -0.00221102 0.0959857 -0.0316631 Vertex 15736 -0.0693598 0.153979 -0.049866 Vertex 15737 -0.00541506 0.100313 0.0476265 Vertex 15738 0.0215976 0.121636 0.0305088 Vertex 15739 0.0175304 0.120577 0.0333463 Vertex 15740 -0.0779359 0.154614 0.00720975 Vertex 15741 -0.0463338 0.132474 0.00863126 Vertex 15742 0.000144172 0.129559 0.0255502 Vertex 15743 -0.0360974 0.127648 0.0124754 Vertex 15744 0.0208653 0.122279 0.030221 Vertex 15745 -0.0769031 0.149462 0.0386995 Vertex 15746 -0.0758819 0.156006 0.016671 Vertex 15747 -0.0676976 0.156296 0.0180917 Vertex 15748 0.0200484 0.122759 0.029923 Vertex 15749 0.0191819 0.123133 0.0296014 Vertex 15750 -0.00314149 0.0972112 0.0530078 Vertex 15751 0.0182946 0.123502 0.0292701 Vertex 15752 -0.078629 0.155228 0.0230232 Vertex 15753 -0.0857072 0.152777 0.0118249 Vertex 15754 0.0174279 0.12392 0.0289777 Vertex 15755 -0.0249388 0.183594 -0.0126758 Vertex 15756 -0.0268796 0.181867 -0.0133655 Vertex 15757 0.00217615 0.12934 0.0262849 Vertex 15758 -0.065258 0.156162 0.0146042 Vertex 15759 -0.0598711 0.154188 0.0296083 Vertex 15760 -0.0645149 0.156191 0.0192193 Vertex 15761 -0.0687032 0.155739 0.000270534 Vertex 15762 0.0166765 0.12456 0.0286792 Vertex 15763 -0.0636848 0.163906 -0.0268361 Vertex 15764 -0.0642806 0.164881 -0.0270495 Vertex 15765 -0.0649084 0.165706 -0.0272764 Vertex 15766 -0.0655518 0.166572 -0.0275081 Vertex 15767 -0.0662458 0.167287 -0.027765 Vertex 15768 -0.0669695 0.167967 -0.0280306 Vertex 15769 -0.0677123 0.168615 -0.0283035 Vertex 15770 -0.0684803 0.169194 -0.0285889 Vertex 15771 -0.0692573 0.169753 -0.0288779 Vertex 15772 -0.0701178 0.170154 -0.0291958 Vertex 15773 -0.0709934 0.170517 -0.0295248 Vertex 15774 -0.0719831 0.170733 -0.0298702 Vertex 15775 -0.0729725 0.170894 -0.0302341 Vertex 15776 -0.0741328 0.170753 -0.0306566 Vertex 15777 -0.0753758 0.170369 -0.0311391 Vertex 15778 -0.076628 0.169808 -0.0316679 Vertex 15779 0.0159604 0.125249 0.0284184 Vertex 15780 -0.0596259 0.155781 0.0151651 Vertex 15781 0.0152596 0.125955 0.0281714 Vertex 15782 -0.0719917 0.151909 0.0358108 Vertex 15783 -0.0591899 0.154851 0.0254882 Vertex 15784 -0.048193 0.133027 0.0241926 Vertex 15785 -0.0413787 0.124797 0.0224172 Vertex 15786 0.0145253 0.126603 0.0278836 Vertex 15787 0.0585617 0.0692487 0.0195963 Vertex 15788 0.0579437 0.0700837 0.0193768 Vertex 15789 0.0573103 0.0709688 0.0191461 Vertex 15790 0.0565883 0.0716209 0.0188851 Vertex 15791 0.0558431 0.0722822 0.0186151 Vertex 15792 0.0550045 0.0727719 0.0183019 Vertex 15793 0.0541155 0.0731329 0.017974 Vertex 15794 0.0531688 0.0733724 0.0176223 Vertex 15795 0.0521231 0.0734583 0.0172399 Vertex 15796 0.0510305 0.0733741 0.0168194 Vertex 15797 0.0499455 0.0733656 0.0164225 Vertex 15798 0.0486963 0.0730972 0.0159514 Vertex 15799 0.047871 0.0733255 0.0156276 Vertex 15800 0.0471599 0.07398 0.0153485 Vertex 15801 0.0465947 0.0750442 0.0151558 Vertex 15802 0.0463511 0.0764838 0.0150474 Vertex 15803 0.013717 0.127103 0.0275992 Vertex 15804 0.00156461 0.124373 0.0333352 Vertex 15805 -0.0105374 0.130025 0.0158825 Vertex 15806 -0.0376712 0.125956 0.0207679 Vertex 15807 -0.0277867 0.0904111 0.0457123 Vertex 15808 -0.0781974 0.153502 0.00273811 Vertex 15809 -0.0766672 0.154399 0.00327135 Vertex 15810 -0.0753023 0.155004 0.00375308 Vertex 15811 -0.0740753 0.155198 0.0041876 Vertex 15812 -0.0728197 0.155564 0.00463235 Vertex 15813 -0.0412993 0.127471 0.0164976 Vertex 15814 -0.0759244 0.155422 0.00936737 Vertex 15815 -0.0603383 0.155998 0.00765284 Vertex 15816 -0.000345107 0.127203 0.0297544 Vertex 15817 -0.0112759 0.125368 0.030237 Vertex 15818 -0.0694586 0.153877 0.0321166 Vertex 15819 -0.0712698 0.156094 0.0241098 Vertex 15820 -0.0830831 0.152763 0.0275295 Vertex 15821 -0.049763 0.132774 0.0280532 Vertex 15822 -0.0624495 0.15591 0.022857 Vertex 15823 -0.000605671 0.129033 0.0267429 Vertex 15824 0.0128917 0.127573 0.0272919 Vertex 15825 0.0118921 0.127946 0.0270512 Vertex 15826 0.0377238 0.110496 0.0121805 Vertex 15827 0.0371019 0.111384 0.0119604 Vertex 15828 0.03646 0.112262 0.0117392 Vertex 15829 0.0358352 0.11315 0.0115155 Vertex 15830 0.0352114 0.113974 0.0112756 Vertex 15831 0.0345652 0.114846 0.0110543 Vertex 15832 0.0339253 0.115718 0.0108315 Vertex 15833 0.0332816 0.116574 0.0106008 Vertex 15834 0.0326144 0.117295 0.0103313 Vertex 15835 0.0319294 0.118052 0.0100791 Vertex 15836 0.0312326 0.118751 0.0098088 Vertex 15837 0.0305158 0.11943 0.00953878 Vertex 15838 0.0297856 0.120093 0.00926746 Vertex 15839 0.0290523 0.120756 0.00899975 Vertex 15840 0.0283038 0.121367 0.00870899 Vertex 15841 0.0275645 0.122014 0.00844231 Vertex 15842 0.026783 0.122575 0.00815739 Vertex 15843 0.0259953 0.123127 0.0078705 Vertex 15844 0.0251982 0.123641 0.0075622 Vertex 15845 0.0243858 0.124139 0.00725423 Vertex 15846 0.0235922 0.124679 0.00697037 Vertex 15847 0.0227625 0.125142 0.00666699 Vertex 15848 0.0219416 0.125622 0.00635903 Vertex 15849 0.0211162 0.126093 0.00605375 Vertex 15850 0.0202619 0.12651 0.00572713 Vertex 15851 0.0193849 0.126884 0.00540105 Vertex 15852 0.0185443 0.12732 0.00510228 Vertex 15853 0.017675 0.127712 0.00477874 Vertex 15854 0.0167938 0.128074 0.00445644 Vertex 15855 0.0159137 0.128436 0.00413586 Vertex 15856 0.0150002 0.128745 0.00378903 Vertex 15857 0.0141143 0.129082 0.00347211 Vertex 15858 0.0131837 0.129339 0.0031365 Vertex 15859 0.0122169 0.129551 0.00276868 Vertex 15860 0.0112459 0.129755 0.00240428 Vertex 15861 0.0102649 0.129908 0.00205228 Vertex 15862 0.00923557 0.129984 0.00166977 Vertex 15863 0.00819795 0.130005 0.00128654 Vertex 15864 0.00716146 0.130043 0.000903466 Vertex 15865 -0.0872227 0.0941086 0.00335062 Vertex 15866 -0.0830177 0.0951656 -0.00554205 Vertex 15867 -0.091214 0.143385 0.025163 Vertex 15868 -0.0889655 0.0969901 0.0204055 Vertex 15869 -0.0942177 0.125518 0.0172578 Vertex 15870 -0.0888522 0.0996312 0.00941041 Vertex 15871 -0.0887264 0.0996152 0.00841821 Vertex 15872 -0.0820951 0.100566 -0.0055776 Vertex 15873 -0.0869674 0.103645 0.0213508 Vertex 15874 -0.0862725 0.103636 0.0233541 Vertex 15875 -0.0851069 0.104842 0.00238218 Vertex 15876 -0.0831779 0.111548 0.00129095 Vertex 15877 -0.0841632 0.11158 0.00227497 Vertex 15878 -0.045814 0.0898818 -0.0220292 Vertex 15879 -0.0906194 0.139243 0.0211829 Vertex 15880 -0.092935 0.117416 0.0233037 Vertex 15881 -0.0935755 0.117419 0.0183042 Vertex 15882 -0.0935183 0.117402 0.0193034 Vertex 15883 -0.0924729 0.117499 0.0403021 Vertex 15884 -0.0499383 0.162625 -0.0047964 Vertex 15885 -0.042083 0.168351 -0.00985967 Vertex 15886 -0.0676415 0.155906 0.0108585 Vertex 15887 0.011146 0.128332 0.0266558 Vertex 15888 0.0102651 0.128706 0.0263309 Vertex 15889 -0.0469792 0.133264 0.00837709 Vertex 15890 -0.00193982 0.12966 0.0247961 Vertex 15891 -0.00084278 0.129714 0.0251926 Vertex 15892 -0.0341879 0.127198 0.0131711 Vertex 15893 -0.0452276 0.131073 0.0164666 Vertex 15894 -0.0457467 0.132003 0.0161756 Vertex 15895 -0.0440271 0.128143 0.0184429 Vertex 15896 -0.0606115 0.155938 0.0148123 Vertex 15897 -0.0336965 0.120802 0.028215 Vertex 15898 0.00934693 0.129002 0.0260013 Vertex 15899 -0.0666005 0.156329 0.0184798 Vertex 15900 -0.0370341 0.127886 0.0121304 Vertex 15901 -0.0774721 0.155387 0.0234212 Vertex 15902 -0.081048 0.154699 0.0221975 Vertex 15903 0.00841723 0.129272 0.0256623 Vertex 15904 -0.0243904 0.183518 -0.0110527 Vertex 15905 -0.0257723 0.182903 -0.0115399 Vertex 15906 -0.02728 0.181917 -0.0121056 Vertex 15907 -0.0859779 0.0910726 0.0273961 Vertex 15908 -0.0205861 0.122762 0.0284276 Vertex 15909 -0.0367225 0.125751 0.02112 Vertex 15910 -0.0608634 0.154346 0.0292597 Vertex 15911 -0.0304238 0.12007 0.0279522 Vertex 15912 -0.0580932 0.155356 0.0200663 Vertex 15913 0.00743904 0.129465 0.0253135 Vertex 15914 -0.0117444 0.129778 0.0154481 Vertex 15915 -0.0640717 0.164086 -0.0255357 Vertex 15916 -0.0647247 0.16489 -0.0257757 Vertex 15917 -0.0653475 0.165775 -0.0260007 Vertex 15918 -0.0660244 0.166553 -0.0262486 Vertex 15919 -0.066735 0.167252 -0.0265095 Vertex 15920 -0.0675078 0.167827 -0.0267933 Vertex 15921 -0.0682325 0.168499 -0.0270627 Vertex 15922 -0.0690431 0.169001 -0.0273587 Vertex 15923 -0.0698247 0.169548 -0.0276555 Vertex 15924 -0.0706968 0.169922 -0.0279808 Vertex 15925 -0.0716236 0.170198 -0.0283222 Vertex 15926 -0.0726143 0.1704 -0.0286759 Vertex 15927 -0.0737877 0.170302 -0.0290826 Vertex 15928 -0.0750304 0.169881 -0.0295693 Vertex 15929 -0.0762918 0.169333 -0.0300921 Vertex 15930 0.0065117 0.129736 0.0249737 Vertex 15931 0.0055446 0.129937 0.0246284 Vertex 15932 0.0045023 0.13009 0.02428 Vertex 15933 -0.059554 0.155543 0.0209921 Vertex 15934 -0.0610591 0.155387 0.024814 Vertex 15935 -0.0477004 0.131837 0.0244001 Vertex 15936 -0.0392376 0.124806 0.0231803 Vertex 15937 0.00356053 0.130245 0.0239041 Vertex 15938 0.0579995 0.0690441 0.020859 Vertex 15939 0.0573849 0.0699459 0.0206376 Vertex 15940 0.0567453 0.0707667 0.0204115 Vertex 15941 0.0560276 0.0714782 0.0201554 Vertex 15942 0.0552517 0.0720728 0.0198735 Vertex 15943 0.0544186 0.0725633 0.0195702 Vertex 15944 0.0534733 0.0728245 0.019221 Vertex 15945 0.0525281 0.0730706 0.0188626 Vertex 15946 0.0514753 0.0731205 0.0184716 Vertex 15947 0.0504441 0.0731136 0.0180651 Vertex 15948 0.0492456 0.0728121 0.0176064 Vertex 15949 0.0480441 0.0725423 0.0171549 Vertex 15950 0.0472882 0.0731371 0.0168777 Vertex 15951 0.0467254 0.0741323 0.0166809 Vertex 15952 0.0464078 0.0756596 0.0165703 Vertex 15953 0.0462743 0.0775122 0.0165366 Vertex 15954 -0.0940189 0.11877 0.0172997 Vertex 15955 -0.00267498 0.100539 0.0471075 Vertex 15956 -0.0823243 0.154364 0.0217732 Vertex 15957 -0.0293211 0.123712 0.0208659 Vertex 15958 -0.030188 0.124116 0.0205603 Vertex 15959 -0.0345343 0.126083 0.0189612 Vertex 15960 -0.0372934 0.126961 0.0179492 Vertex 15961 -0.0383432 0.127011 0.0175779 Vertex 15962 -0.0393291 0.127134 0.01721 Vertex 15963 -0.0403111 0.127303 0.0168527 Vertex 15964 -0.0133496 0.124356 0.0309811 Vertex 15965 -0.0590718 0.156479 0.0080978 Vertex 15966 -0.00731691 0.128182 0.0272242 Vertex 15967 -0.0380005 0.12652 0.0191796 Vertex 15968 -0.0658186 0.154852 0.00425231 Vertex 15969 -0.0678494 0.155094 0.00351036 Vertex 15970 -0.0532977 0.158553 0.00873827 Vertex 15971 0.0025214 0.130289 0.0235241 Vertex 15972 -0.0762512 0.156264 -0.00677505 Vertex 15973 -0.0482692 0.133969 0.0226705 Vertex 15974 -0.0134047 0.0981882 0.0494032 Vertex 15975 0.00153258 0.130437 0.0231622 Vertex 15976 0.038042 0.109981 0.0137429 Vertex 15977 0.0374202 0.110869 0.0135214 Vertex 15978 0.0367927 0.111755 0.0132988 Vertex 15979 0.0361533 0.112569 0.0130564 Vertex 15980 0.0355447 0.11347 0.012835 Vertex 15981 0.0349132 0.114353 0.0126105 Vertex 15982 0.0342731 0.115225 0.0123899 Vertex 15983 0.0336304 0.116029 0.0121428 Vertex 15984 0.0329715 0.116865 0.0119087 Vertex 15985 0.0323242 0.117657 0.0116569 Vertex 15986 0.0316363 0.118365 0.0113851 Vertex 15987 0.0309373 0.119109 0.0111337 Vertex 15988 0.0302201 0.119789 0.0108648 Vertex 15989 0.0294982 0.120461 0.0105965 Vertex 15990 0.0287604 0.121079 0.0103057 Vertex 15991 0.0280264 0.121739 0.0100361 Vertex 15992 0.0272688 0.122366 0.00977001 Vertex 15993 0.0264769 0.122884 0.00946172 Vertex 15994 0.0256965 0.123446 0.00917645 Vertex 15995 0.024909 0.124002 0.00889289 Vertex 15996 0.0241035 0.1245 0.0085821 Vertex 15997 0.0233146 0.125046 0.00829766 Vertex 15998 0.0224712 0.125479 0.00796738 Vertex 15999 0.02167 0.125998 0.00768374 Vertex 16000 0.0208082 0.1264 0.00735797 Vertex 16001 0.0199501 0.126815 0.00703133 Vertex 16002 0.0191098 0.127253 0.00673134 Vertex 16003 0.0182351 0.12763 0.00640475 Vertex 16004 0.0173606 0.128011 0.00608341 Vertex 16005 0.0164869 0.128389 0.00575868 Vertex 16006 0.0156145 0.128768 0.00543431 Vertex 16007 0.0147262 0.129115 0.00511474 Vertex 16008 0.0138044 0.129402 0.00474998 Vertex 16009 0.0129127 0.129715 0.00445998 Vertex 16010 0.0119495 0.129938 0.00409466 Vertex 16011 0.0110134 0.130158 0.00376449 Vertex 16012 0.0100369 0.130324 0.00340984 Vertex 16013 0.0089719 0.130372 0.00300057 Vertex 16014 0.00798329 0.130466 0.00265255 Vertex 16015 0.00689753 0.13043 0.00224143 Vertex 16016 -0.0758095 0.0920857 -0.0139153 Vertex 16017 0.00214563 0.119376 -0.0145717 Vertex 16018 -0.07574 0.144451 -0.00587632 Vertex 16019 -0.0890685 0.0969888 0.0194042 Vertex 16020 -0.0887705 0.0969872 0.0214096 Vertex 16021 -0.0914674 0.129551 0.00825277 Vertex 16022 -0.0847653 0.103459 0.000382003 Vertex 16023 -0.0876012 0.0995367 0.00546504 Vertex 16024 -0.082938 0.100617 -0.00458659 Vertex 16025 -0.0837054 0.10067 -0.00361944 Vertex 16026 -0.0874054 0.110457 0.012344 Vertex 16027 -0.085482 0.104867 0.00337403 Vertex 16028 -0.085947 0.104892 0.00437979 Vertex 16029 -0.0791181 0.10724 -0.00560787 Vertex 16030 -0.0810695 0.111472 -0.000645954 Vertex 16031 -0.0925573 0.125589 0.0382552 Vertex 16032 -0.0856634 0.1104 0.0223511 Vertex 16033 -0.0919525 0.126983 0.0392569 Vertex 16034 -0.0922566 0.126816 0.00926569 Vertex 16035 -0.0943935 0.125559 0.0222675 Vertex 16036 -0.0315382 0.178553 -0.0120253 Vertex 16037 -0.092775 0.128304 0.0272531 Vertex 16038 -0.0896629 0.124003 0.00427429 Vertex 16039 -0.0902327 0.124018 0.00527185 Vertex 16040 -0.091005 0.124034 0.00628346 Vertex 16041 -0.0732714 0.156195 0.0132096 Vertex 16042 -0.0878262 0.152428 0.0199936 Vertex 16043 -0.082872 0.154403 0.0201091 Vertex 16044 -0.0114115 0.128814 0.0228458 Vertex 16045 -0.0229547 0.12614 0.0172488 Vertex 16046 -0.00402179 0.129762 0.0240423 Vertex 16047 -0.00292868 0.129815 0.0244395 Vertex 16048 -0.0332433 0.126938 0.0135159 Vertex 16049 -0.0739928 0.155924 0.011504 Vertex 16050 -0.0362517 0.123246 0.0257763 Vertex 16051 -0.0462848 0.131856 0.0204922 Vertex 16052 -0.062692 0.155999 0.0140721 Vertex 16053 0.000436968 0.130385 0.0227651 Vertex 16054 -0.0702292 0.153353 0.0333614 Vertex 16055 -0.0193672 0.122992 0.0288371 Vertex 16056 -0.0225076 0.125867 0.0188793 Vertex 16057 -0.0799294 0.154987 0.0226092 Vertex 16058 -0.000605347 0.130433 0.0223861 Vertex 16059 -0.00170163 0.130406 0.0219933 Vertex 16060 -0.00273996 0.130454 0.0216129 Vertex 16061 -0.0281162 0.181397 -0.0109687 Vertex 16062 -0.0260252 0.0904818 0.0482145 Vertex 16063 0.002127 0.0994865 0.0488443 Vertex 16064 -0.0617979 0.154608 0.0289232 Vertex 16065 -0.00378356 0.130498 0.0212315 Vertex 16066 -0.00487894 0.130442 0.0208375 Vertex 16067 -0.0632795 0.162306 -0.0238202 Vertex 16068 -0.0638695 0.16329 -0.0240265 Vertex 16069 -0.064489 0.16418 -0.0242498 Vertex 16070 -0.065154 0.164972 -0.0244937 Vertex 16071 -0.0658178 0.165764 -0.0247368 Vertex 16072 -0.066536 0.166455 -0.0250024 Vertex 16073 -0.067269 0.167119 -0.0252721 Vertex 16074 -0.0679962 0.167786 -0.0255431 Vertex 16075 -0.0687634 0.168362 -0.025835 Vertex 16076 -0.0695817 0.168848 -0.0261289 Vertex 16077 -0.0704486 0.16924 -0.0264473 Vertex 16078 -0.0713267 0.169665 -0.0267525 Vertex 16079 -0.0723216 0.169832 -0.0271166 Vertex 16080 -0.0734182 0.169757 -0.0275332 Vertex 16081 -0.0746874 0.169403 -0.0279937 Vertex 16082 -0.0759846 0.168851 -0.0284951 Vertex 16083 -0.00597277 0.130385 0.0204408 Vertex 16084 -0.0236176 0.123316 0.0244011 Vertex 16085 -0.0634727 0.156127 0.0195874 Vertex 16086 -0.00306441 0.100922 0.0454807 Vertex 16087 -0.0620497 0.155563 0.0244621 Vertex 16088 -0.00712692 0.130239 0.0200248 Vertex 16089 -0.0381943 0.124735 0.0235454 Vertex 16090 -0.076294 0.155585 0.0106948 Vertex 16091 0.0573543 0.0687146 0.022093 Vertex 16092 0.056742 0.0696177 0.0218717 Vertex 16093 0.0560814 0.0704234 0.0216351 Vertex 16094 0.0553692 0.0711293 0.0213817 Vertex 16095 0.0545912 0.0717149 0.021096 Vertex 16096 0.0538065 0.0721186 0.0208488 Vertex 16097 0.0527625 0.0723674 0.0204268 Vertex 16098 0.0518225 0.072596 0.0200635 Vertex 16099 0.0508347 0.0727393 0.0196905 Vertex 16100 0.049638 0.0724241 0.0192263 Vertex 16101 0.0485095 0.0723104 0.0188157 Vertex 16102 0.047344 0.0721054 0.0183678 Vertex 16103 0.0467055 0.0730498 0.0181295 Vertex 16104 0.0463322 0.0743214 0.0180018 Vertex 16105 0.0462175 0.0761811 0.0179689 Vertex 16106 -0.008275 0.130081 0.0196055 Vertex 16107 -0.0310065 0.124592 0.0202545 Vertex 16108 -0.0283907 0.123379 0.0211752 Vertex 16109 -0.0274038 0.123285 0.0215594 Vertex 16110 -0.00942316 0.129915 0.019193 Vertex 16111 -0.0728479 0.14776 0.0416103 Vertex 16112 -0.00400483 0.123769 0.0343163 Vertex 16113 -0.00493749 0.124022 0.0339675 Vertex 16114 -0.0105693 0.129741 0.0187791 Vertex 16115 -0.0122465 0.124398 0.0313659 Vertex 16116 -0.0577252 0.156918 0.00853143 Vertex 16117 -0.00841973 0.128157 0.0268439 Vertex 16118 -0.0410118 0.126885 0.0180931 Vertex 16119 -0.0668607 0.154942 0.00387089 Vertex 16120 -0.0117177 0.129576 0.0183624 Vertex 16121 -0.0717955 0.156396 0.0195489 Vertex 16122 -0.0427601 0.128938 0.0129983 Vertex 16123 -0.0435244 0.129538 0.0127129 Vertex 16124 -0.04424 0.130203 0.0124253 Vertex 16125 -0.0448961 0.131042 0.0121815 Vertex 16126 -0.0645986 0.15064 0.0368964 Vertex 16127 -0.0129215 0.129318 0.0179306 Vertex 16128 0.0377424 0.110293 0.0150624 Vertex 16129 0.0371116 0.111176 0.0148387 Vertex 16130 0.0364911 0.112064 0.0146153 Vertex 16131 0.0358655 0.112954 0.0143927 Vertex 16132 0.0352594 0.113795 0.0141522 Vertex 16133 0.0346263 0.114673 0.0139267 Vertex 16134 0.033977 0.115595 0.0137221 Vertex 16135 0.0333357 0.116389 0.013468 Vertex 16136 0.0326756 0.117173 0.0132168 Vertex 16137 0.0320122 0.117952 0.0129635 Vertex 16138 0.0313294 0.118714 0.0127065 Vertex 16139 0.030619 0.119354 0.0124235 Vertex 16140 0.029911 0.120086 0.0121698 Vertex 16141 0.0291881 0.120758 0.0119009 Vertex 16142 0.0284544 0.121423 0.0116324 Vertex 16143 0.0277062 0.122023 0.0113437 Vertex 16144 0.0269552 0.122658 0.0110745 Vertex 16145 0.0261865 0.123233 0.0107875 Vertex 16146 0.0254031 0.123772 0.0104796 Vertex 16147 0.024638 0.124378 0.010214 Vertex 16148 0.0238189 0.124864 0.00990899 Vertex 16149 0.0230068 0.125355 0.00960117 Vertex 16150 0.0221833 0.125827 0.00929485 Vertex 16151 0.0213306 0.126248 0.00896939 Vertex 16152 0.0204936 0.1267 0.00866396 Vertex 16153 0.0196258 0.127091 0.0083394 Vertex 16154 0.0187844 0.127527 0.00803838 Vertex 16155 0.0179084 0.127905 0.00771503 Vertex 16156 0.0170749 0.128355 0.00741174 Vertex 16157 0.0161732 0.12869 0.00706423 Vertex 16158 0.0152965 0.129062 0.00674245 Vertex 16159 0.0144027 0.129384 0.00642559 Vertex 16160 0.0134856 0.129689 0.00607818 Vertex 16161 0.0125568 0.129953 0.0057397 Vertex 16162 0.0116228 0.130194 0.0054038 Vertex 16163 0.0106503 0.130383 0.00504386 Vertex 16164 0.00967799 0.130572 0.00468392 Vertex 16165 0.0086501 0.130656 0.00430717 Vertex 16166 0.00766772 0.130773 0.00395877 Vertex 16167 0.00658391 0.130753 0.00354793 Vertex 16168 0.00549414 0.130728 0.00313392 Vertex 16169 0.00445432 0.130749 0.00275136 Vertex 16170 0.00336694 0.130688 0.00234495 Vertex 16171 0.00222051 0.130562 0.00190808 Vertex 16172 0.00113463 0.130461 0.00151005 Vertex 16173 -6.48961e-05 0.130222 0.00105503 Vertex 16174 -0.089275 0.0969971 0.0184044 Vertex 16175 -0.0894207 0.0969969 0.0174102 Vertex 16176 -0.0286428 0.107004 -0.0213195 Vertex 16177 -0.0870966 0.0995146 0.0044219 Vertex 16178 -0.088041 0.0995721 0.00642464 Vertex 16179 0.0495953 0.0662964 -0.000416722 Vertex 16180 -0.073544 0.177863 -0.0540307 Vertex 16181 -0.0712429 0.177886 -0.0560058 Vertex 16182 -0.0804236 0.104574 -0.00559216 Vertex 16183 -0.0871543 0.105024 0.0183639 Vertex 16184 -0.0648162 0.092445 -0.0185198 Vertex 16185 -0.0927931 0.126937 0.0282668 Vertex 16186 -0.0863235 0.110381 0.0203696 Vertex 16187 -0.067463 0.166618 -0.0559977 Vertex 16188 -0.0764027 0.109871 -0.00664525 Vertex 16189 -0.0930011 0.116069 0.0193086 Vertex 16190 -0.0928105 0.116053 0.0203106 Vertex 16191 -0.0925679 0.116061 0.0213084 Vertex 16192 -0.0881185 0.151555 0.0230923 Vertex 16193 -0.0874625 0.123933 -0.000723767 Vertex 16194 -0.0867734 0.123909 -0.00174219 Vertex 16195 -0.0399008 0.128531 0.0110866 Vertex 16196 -0.0609078 0.155801 0.00889681 Vertex 16197 -0.0141843 0.128965 0.0174774 Vertex 16198 -0.0126066 0.128516 0.0224096 Vertex 16199 0.00323976 0.128177 0.0281353 Vertex 16200 0.0211117 0.124199 0.0260136 Vertex 16201 -0.00610552 0.129863 0.0232869 Vertex 16202 -0.00506384 0.129812 0.0236663 Vertex 16203 -0.0351154 0.127437 0.0128308 Vertex 16204 -0.0455491 0.131451 0.0178282 Vertex 16205 0.00141552 0.0990584 0.0500955 Vertex 16206 0.0022443 0.0974458 0.0519249 Vertex 16207 0.0194228 0.125079 0.025397 Vertex 16208 -0.0840303 0.151908 0.0287412 Vertex 16209 -0.0153828 0.128676 0.0170423 Vertex 16210 0.000951329 0.10045 0.046938 Vertex 16211 -0.0528926 0.154865 0.0118243 Vertex 16212 -0.0779922 0.155321 0.011561 Vertex 16213 -0.0165872 0.128419 0.0166112 Vertex 16214 -0.0273746 0.181651 -0.00921581 Vertex 16215 -0.0288938 0.180785 -0.00982491 Vertex 16216 -0.0304041 0.179805 -0.0103906 Vertex 16217 -0.0321103 0.178539 -0.0110044 Vertex 16218 -0.0248787 0.0796614 0.0530244 Vertex 16219 -0.0864154 0.152983 0.0204471 Vertex 16220 -0.0627886 0.154765 0.0285735 Vertex 16221 -0.0271151 0.122681 0.0231414 Vertex 16222 -0.0178474 0.12806 0.016159 Vertex 16223 -0.0128908 0.129601 0.0150315 Vertex 16224 -0.0636773 0.162484 -0.0225185 Vertex 16225 -0.0642828 0.163385 -0.0227384 Vertex 16226 -0.0649478 0.164181 -0.0229827 Vertex 16227 -0.0656191 0.164967 -0.0232289 Vertex 16228 -0.0662913 0.165749 -0.0234747 Vertex 16229 -0.0670519 0.166375 -0.0237602 Vertex 16230 -0.0678037 0.166983 -0.024036 Vertex 16231 -0.068567 0.167578 -0.0243154 Vertex 16232 -0.0693375 0.168152 -0.0246084 Vertex 16233 -0.07021 0.168534 -0.0249229 Vertex 16234 -0.0710857 0.168903 -0.0252489 Vertex 16235 -0.0720162 0.169175 -0.0255925 Vertex 16236 -0.0730867 0.169281 -0.0259539 Vertex 16237 -0.0743457 0.168929 -0.0264214 Vertex 16238 -0.0756189 0.168382 -0.0269354 Vertex 16239 -0.0189924 0.127884 0.0157415 Vertex 16240 -0.0304832 0.12104 0.0263992 Vertex 16241 -0.00201946 0.100869 0.0458524 Vertex 16242 -0.055031 0.152471 0.0270238 Vertex 16243 -0.0564476 0.153922 0.0264803 Vertex 16244 -0.0203106 0.127423 0.0152774 Vertex 16245 -0.0372574 0.124492 0.0238955 Vertex 16246 -0.0751451 0.15577 0.0110973 Vertex 16247 -0.0215612 0.127036 0.0148264 Vertex 16248 0.0560761 0.0692634 0.0230866 Vertex 16249 0.0553826 0.0699889 0.0228528 Vertex 16250 0.0546575 0.0706779 0.0225865 Vertex 16251 0.0538492 0.0711959 0.0223128 Vertex 16252 0.0529955 0.0716182 0.0219676 Vertex 16253 0.052054 0.0718585 0.0216053 Vertex 16254 0.0510679 0.0720267 0.021243 Vertex 16255 0.0499773 0.0719552 0.0208312 Vertex 16256 0.0488349 0.0718069 0.020409 Vertex 16257 0.0476579 0.0715472 0.019969 Vertex 16258 0.0467013 0.0718392 0.0195936 Vertex 16259 0.0462172 0.0729792 0.0194263 Vertex 16260 0.0460054 0.0746307 0.0193568 Vertex 16261 -0.0227666 0.126779 0.0143916 Vertex 16262 0.0105902 0.125785 0.0307704 Vertex 16263 -0.0102366 0.125327 0.0306172 Vertex 16264 -0.0787564 0.154933 0.00983696 Vertex 16265 -0.0187344 0.126979 0.0202236 Vertex 16266 -0.0804177 0.153092 0.00488677 Vertex 16267 -0.0145507 0.0980154 0.0489953 Vertex 16268 -0.0239683 0.126504 0.0139537 Vertex 16269 -0.0534319 0.15708 0.0101259 Vertex 16270 -0.0543644 0.15733 0.00977334 Vertex 16271 -0.0554704 0.157309 0.00940753 Vertex 16272 -0.0566266 0.157159 0.00899778 Vertex 16273 -0.00950205 0.12806 0.0264334 Vertex 16274 -0.0840242 0.151932 0.0065796 Vertex 16275 -0.0755392 0.154957 0.000803149 Vertex 16276 -0.0252277 0.12616 0.0135052 Vertex 16277 -0.0419839 0.128576 0.0133734 Vertex 16278 -0.0409763 0.128303 0.0136557 Vertex 16279 -0.0361503 0.127316 0.0154104 Vertex 16280 -0.0352134 0.127051 0.0157486 Vertex 16281 -0.0342826 0.126777 0.01609 Vertex 16282 -0.0333921 0.126443 0.0164188 Vertex 16283 -0.0264363 0.125919 0.0130719 Vertex 16284 0.0380432 0.109702 0.0166041 Vertex 16285 0.0374516 0.110677 0.0163977 Vertex 16286 0.0368364 0.111573 0.0161776 Vertex 16287 0.0362036 0.112389 0.0159326 Vertex 16288 0.0355806 0.113279 0.0157103 Vertex 16289 0.0349482 0.114159 0.0154869 Vertex 16290 0.0343153 0.115038 0.0152609 Vertex 16291 0.0336755 0.115893 0.0150272 Vertex 16292 0.0330296 0.116688 0.0147767 Vertex 16293 0.0323797 0.117481 0.0145242 Vertex 16294 0.0316988 0.118246 0.0142694 Vertex 16295 0.0310013 0.118944 0.0140014 Vertex 16296 0.0302928 0.119677 0.0137476 Vertex 16297 0.0295862 0.120365 0.0134787 Vertex 16298 0.0288719 0.121048 0.0132077 Vertex 16299 0.0281325 0.121698 0.0129367 Vertex 16300 0.027377 0.122298 0.0126488 Vertex 16301 0.0266099 0.122879 0.0123678 Vertex 16302 0.0258358 0.123453 0.0120756 Vertex 16303 0.0250704 0.12404 0.011788 Vertex 16304 0.0242948 0.124607 0.0114976 Vertex 16305 0.0235082 0.12516 0.0112114 Vertex 16306 0.0226846 0.125635 0.0109073 Vertex 16307 0.0218584 0.126105 0.0106 Vertex 16308 0.0210026 0.126515 0.0102791 Vertex 16309 0.0202061 0.126966 0.0100746 Vertex 16310 0.0193044 0.127372 0.00964815 Vertex 16311 0.0184567 0.127794 0.00934393 Vertex 16312 0.0175902 0.128186 0.00902123 Vertex 16313 0.0167178 0.128574 0.00869666 Vertex 16314 0.0158474 0.128954 0.00837281 Vertex 16315 0.0149745 0.129329 0.00806984 Vertex 16316 0.0140849 0.129676 0.00773008 Vertex 16317 0.0131559 0.129936 0.00738875 Vertex 16318 0.0122318 0.130219 0.0070475 Vertex 16319 0.0112608 0.130411 0.00668952 Vertex 16320 0.0103285 0.130654 0.00635323 Vertex 16321 0.00935197 0.130836 0.00599246 Vertex 16322 0.00832653 0.130915 0.00561741 Vertex 16323 0.00730102 0.131 0.00524198 Vertex 16324 0.00626682 0.131047 0.00486423 Vertex 16325 0.00517866 0.131021 0.00445011 Vertex 16326 0.00414266 0.131018 0.00407154 Vertex 16327 0.0030519 0.130996 0.00365966 Vertex 16328 0.00190257 0.130874 0.00322319 Vertex 16329 0.000818555 0.130756 0.00282721 Vertex 16330 -0.000384494 0.130522 0.00237337 Vertex 16331 -0.00154364 0.130277 0.00186507 Vertex 16332 -0.00272576 0.130091 0.00149765 Vertex 16333 -0.00392373 0.129832 0.00104637 Vertex 16334 -0.0935168 0.125484 0.0132627 Vertex 16335 -0.0932985 0.125478 0.0122618 Vertex 16336 -0.08839 0.0995952 0.00742201 Vertex 16337 0.0224588 0.120521 -0.00588511 Vertex 16338 -0.0936513 0.125496 0.0142597 Vertex 16339 0.022728 0.117081 -0.0101857 Vertex 16340 0.0244317 0.116294 -0.00934411 Vertex 16341 -0.0868829 0.105004 0.0193534 Vertex 16342 -0.0865558 0.105007 0.0203641 Vertex 16343 -0.0861938 0.104994 0.0213645 Vertex 16344 -0.0874631 0.104981 0.0103802 Vertex 16345 -0.0872319 0.104968 0.0093836 Vertex 16346 -0.0876178 0.105003 0.0113725 Vertex 16347 -0.0338028 0.122413 -0.00742547 Vertex 16348 -0.0867708 0.110409 0.0193573 Vertex 16349 -0.0749724 0.149924 -0.0268701 Vertex 16350 -0.0931113 0.126933 0.0272608 Vertex 16351 -0.0767885 0.154209 -0.0148974 Vertex 16352 -0.0710782 0.156778 -0.0439119 Vertex 16353 -0.0920212 0.128183 0.00926455 Vertex 16354 -0.0939221 0.128285 0.0202478 Vertex 16355 -0.029229 0.179986 -0.0130226 Vertex 16356 -0.0482262 0.166987 -0.00394405 Vertex 16357 -0.0780215 0.158305 -0.0199209 Vertex 16358 -0.0275761 0.125766 0.0126577 Vertex 16359 -0.0721725 0.156265 0.0135984 Vertex 16360 -0.0138112 0.128252 0.0219818 Vertex 16361 -0.0605798 0.155686 0.00466574 Vertex 16362 0.00533718 0.124533 0.0332195 Vertex 16363 -0.00726729 0.129761 0.0228793 Vertex 16364 -0.0131083 0.128689 0.020774 Vertex 16365 -0.0179056 0.127636 0.0191062 Vertex 16366 -0.0286491 0.125506 0.0152069 Vertex 16367 0.00041272 0.0994106 0.0497851 Vertex 16368 -0.0286647 0.125711 0.0122564 Vertex 16369 -0.0866427 0.151554 0.0100877 Vertex 16370 -0.0881735 0.15196 0.0139234 Vertex 16371 -0.0522853 0.153955 0.0120432 Vertex 16372 -0.029644 0.125848 0.0118936 Vertex 16373 -0.0446029 0.130656 0.0108143 Vertex 16374 -0.0633808 0.154539 0.0298218 Vertex 16375 -0.0306217 0.126038 0.0115365 Vertex 16376 -0.0282267 0.181005 -0.00798034 Vertex 16377 -0.0296632 0.180174 -0.00867233 Vertex 16378 -0.0310875 0.179405 -0.00921261 Vertex 16379 -0.0328103 0.178226 -0.00982944 Vertex 16380 -0.022273 0.0879769 0.0544159 Vertex 16381 -0.0247884 0.0905387 0.0498003 Vertex 16382 -0.0849422 0.153595 0.0209155 Vertex 16383 -0.0637251 0.155028 0.0282356 Vertex 16384 -0.0314985 0.12639 0.0112101 Vertex 16385 -0.0324286 0.126663 0.0108668 Vertex 16386 -0.0629676 0.160574 -0.0208244 Vertex 16387 -0.0635342 0.161573 -0.0210278 Vertex 16388 -0.0641199 0.162494 -0.0212451 Vertex 16389 -0.0647533 0.163375 -0.0214725 Vertex 16390 -0.0654189 0.16417 -0.0217177 Vertex 16391 -0.0661071 0.164936 -0.0219713 Vertex 16392 -0.0668221 0.16563 -0.0222317 Vertex 16393 -0.0675702 0.166262 -0.0225175 Vertex 16394 -0.0683511 0.16683 -0.0228013 Vertex 16395 -0.0691531 0.167331 -0.0231015 Vertex 16396 -0.0699656 0.167828 -0.0233999 Vertex 16397 -0.0707971 0.168292 -0.02371 Vertex 16398 -0.0717205 0.168577 -0.0240459 Vertex 16399 -0.0727774 0.16869 -0.0244081 Vertex 16400 -0.0740576 0.168348 -0.0248615 Vertex 16401 -0.0752762 0.167899 -0.0253615 Vertex 16402 -0.0333161 0.126997 0.0105451 Vertex 16403 -0.0487319 0.132909 0.0254731 Vertex 16404 -0.000953404 0.100702 0.0462281 Vertex 16405 -0.0546261 0.151324 0.0271982 Vertex 16406 -0.0450959 0.122461 0.0255697 Vertex 16407 -0.0363751 0.12414 0.0242241 Vertex 16408 -0.0718597 0.148728 0.0404251 Vertex 16409 -0.0342458 0.127284 0.0102001 Vertex 16410 -0.0351305 0.127632 0.00987733 Vertex 16411 0.0546169 0.0694261 0.0240301 Vertex 16412 0.053852 0.0700236 0.0237561 Vertex 16413 0.053058 0.0705565 0.0234346 Vertex 16414 0.0521834 0.0709362 0.0231159 Vertex 16415 0.0511996 0.0711486 0.0227866 Vertex 16416 0.0502632 0.0713497 0.022405 Vertex 16417 0.0491174 0.0712134 0.0219878 Vertex 16418 0.047975 0.0710438 0.0215578 Vertex 16419 0.0468209 0.0708789 0.021127 Vertex 16420 0.0460186 0.0714912 0.0208033 Vertex 16421 0.0456581 0.0729488 0.0206934 Vertex 16422 -0.0361152 0.127822 0.0095198 Vertex 16423 -0.0894746 0.139279 0.0281819 Vertex 16424 -0.038992 0.126654 0.0188148 Vertex 16425 -0.0451957 0.131364 0.0135329 Vertex 16426 -0.0457684 0.132352 0.0133121 Vertex 16427 -0.0526926 0.151783 0.016281 Vertex 16428 -0.0192069 0.125855 0.0229991 Vertex 16429 -0.0166197 0.126668 0.0238945 Vertex 16430 -0.0154922 0.126886 0.0243264 Vertex 16431 -0.0142291 0.127243 0.024765 Vertex 16432 -0.0130122 0.127478 0.0251829 Vertex 16433 -0.011856 0.127622 0.0255897 Vertex 16434 -0.0107155 0.127812 0.0260097 Vertex 16435 -0.0370524 0.128064 0.00917633 Vertex 16436 -0.037992 0.128312 0.00883318 Vertex 16437 -0.032464 0.126152 0.0167563 Vertex 16438 -0.0221316 0.125526 0.0205056 Vertex 16439 -0.0234471 0.125053 0.0200484 Vertex 16440 -0.00870995 0.128748 0.0252759 Vertex 16441 -0.00985903 0.128582 0.0248602 Vertex 16442 -0.0110072 0.128401 0.0244439 Vertex 16443 -0.0389761 0.128486 0.00847309 Vertex 16444 0.0383138 0.109087 0.0181423 Vertex 16445 0.0377405 0.110012 0.0179226 Vertex 16446 0.0371511 0.110987 0.0177157 Vertex 16447 0.0365396 0.111887 0.0174946 Vertex 16448 0.0359211 0.112779 0.0172688 Vertex 16449 0.035299 0.113666 0.0170439 Vertex 16450 0.034658 0.114539 0.0168181 Vertex 16451 0.0340242 0.115407 0.0165889 Vertex 16452 0.0333802 0.116202 0.0163348 Vertex 16453 0.032725 0.116988 0.0160848 Vertex 16454 0.0320676 0.117774 0.0158308 Vertex 16455 0.0313718 0.118521 0.0155758 Vertex 16456 0.0306614 0.119205 0.0153072 Vertex 16457 0.0299589 0.119939 0.0150519 Vertex 16458 0.0292359 0.120576 0.0147663 Vertex 16459 0.0285085 0.121244 0.0144975 Vertex 16460 0.0277802 0.121908 0.0142262 Vertex 16461 0.0270265 0.12251 0.0139387 Vertex 16462 0.0262802 0.123151 0.0136687 Vertex 16463 0.0255167 0.123738 0.0133816 Vertex 16464 0.0247433 0.124313 0.0130924 Vertex 16465 0.0239403 0.124821 0.0127882 Vertex 16466 0.0231582 0.125381 0.0124998 Vertex 16467 0.0223353 0.12586 0.0121947 Vertex 16468 0.021507 0.126326 0.01189 Vertex 16469 0.0206753 0.126786 0.0115854 Vertex 16470 0.0198178 0.127196 0.0112616 Vertex 16471 0.0189844 0.127654 0.0109555 Vertex 16472 0.0181043 0.128017 0.0106305 Vertex 16473 0.0172673 0.128465 0.0103258 Vertex 16474 0.0163938 0.128844 0.0100049 Vertex 16475 0.0155185 0.129225 0.0096832 Vertex 16476 0.0146407 0.129582 0.00935921 Vertex 16477 0.0137231 0.129888 0.00901711 Vertex 16478 0.0127896 0.130142 0.00867876 Vertex 16479 0.0118641 0.130407 0.00833975 Vertex 16480 0.0108925 0.130607 0.00797847 Vertex 16481 0.00996165 0.130854 0.00764162 Vertex 16482 0.00898388 0.131012 0.0072855 Vertex 16483 0.00796203 0.131149 0.00690102 Vertex 16484 0.00697892 0.131225 0.0065571 Vertex 16485 0.00595359 0.131311 0.0061803 Vertex 16486 0.00486454 0.131282 0.0057704 Vertex 16487 0.00377395 0.13125 0.00536065 Vertex 16488 0.00267954 0.131212 0.00494959 Vertex 16489 0.00159304 0.131118 0.00454966 Vertex 16490 0.000449556 0.130948 0.00412356 Vertex 16491 -0.000755212 0.130746 0.00366553 Vertex 16492 -0.00189958 0.130575 0.00323807 Vertex 16493 -0.00310182 0.130332 0.00278812 Vertex 16494 -0.00430156 0.130062 0.00233767 Vertex 16495 -0.00549778 0.129792 0.00189197 Vertex 16496 -0.00669164 0.129496 0.00145082 Vertex 16497 -0.0897559 0.114544 0.00631807 Vertex 16498 -0.0899879 0.140645 0.0281829 Vertex 16499 -0.0903203 0.146073 0.0131505 Vertex 16500 -0.0877279 0.139146 0.00920485 Vertex 16501 0.0147936 0.104084 -0.0202238 Vertex 16502 -0.0907516 0.137857 0.0201957 Vertex 16503 -0.0876027 0.103683 0.0193632 Vertex 16504 -0.0879266 0.10368 0.0183585 Vertex 16505 -0.0873262 0.103661 0.0203534 Vertex 16506 -0.0842046 0.10344 -0.000635192 Vertex 16507 -0.0838507 0.103422 -0.00164978 Vertex 16508 -0.0878144 0.105004 0.012374 Vertex 16509 -0.087069 0.100891 0.00537711 Vertex 16510 -0.084606 0.0993653 -0.00159598 Vertex 16511 -0.0840147 0.0993167 -0.00358504 Vertex 16512 -0.036915 0.175546 -0.00898243 Vertex 16513 -0.0734873 0.156859 -0.0289164 Vertex 16514 -0.0920442 0.126938 0.0322524 Vertex 16515 -0.0800951 0.15261 0.00324045 Vertex 16516 -0.0925962 0.126825 0.0102659 Vertex 16517 -0.0706828 0.180611 -0.0569213 Vertex 16518 -0.067142 0.163768 -0.057034 Vertex 16519 -0.0812769 0.136213 -0.00276757 Vertex 16520 -0.076979 0.148604 -0.00699397 Vertex 16521 -0.0867924 0.139107 0.00519652 Vertex 16522 -0.0367472 0.127095 0.0166739 Vertex 16523 -0.0448982 0.123992 0.0241166 Vertex 16524 -0.0399647 0.128635 0.00811119 Vertex 16525 0.000402662 0.121936 0.0359399 Vertex 16526 -0.0678831 0.155252 0.000581516 Vertex 16527 -0.0670639 0.154762 0.000889218 Vertex 16528 -0.0205009 0.126788 0.0181341 Vertex 16529 -0.0191826 0.127252 0.0185952 Vertex 16530 -0.0216926 0.126501 0.0176944 Vertex 16531 -0.0253679 0.125634 0.0163937 Vertex 16532 -0.0699384 0.150598 0.0380766 Vertex 16533 -0.0694599 0.155751 0.00874428 Vertex 16534 -4.09913e-05 0.10064 0.0465907 Vertex 16535 -0.0793777 0.154922 0.0242883 Vertex 16536 0.0011864 0.12951 0.0259323 Vertex 16537 -0.0351879 0.125718 0.0201989 Vertex 16538 -0.0409513 0.128783 0.00774742 Vertex 16539 -0.0418918 0.129001 0.00740866 Vertex 16540 -0.0305611 0.179398 -0.00755573 Vertex 16541 -0.0319282 0.178722 -0.00808101 Vertex 16542 -0.0335046 0.177862 -0.00863199 Vertex 16543 -0.0349807 0.177 -0.00919022 Vertex 16544 -0.0745642 0.0928269 0.03994 Vertex 16545 -0.083524 0.154076 0.0213615 Vertex 16546 -0.0647128 0.155185 0.0278857 Vertex 16547 -0.0736292 0.156748 -0.0014693 Vertex 16548 -0.0429251 0.129071 0.00699388 Vertex 16549 -0.0634399 0.160562 -0.0195565 Vertex 16550 -0.0640006 0.161566 -0.01976 Vertex 16551 -0.0645991 0.162478 -0.0199783 Vertex 16552 -0.0652487 0.163342 -0.0202167 Vertex 16553 -0.0658838 0.16421 -0.0204509 Vertex 16554 -0.0666041 0.164889 -0.0207192 Vertex 16555 -0.0673665 0.165482 -0.0209987 Vertex 16556 -0.0681352 0.166058 -0.0212868 Vertex 16557 -0.0689565 0.166538 -0.0215879 Vertex 16558 -0.0697357 0.167099 -0.0218834 Vertex 16559 -0.0705485 0.167591 -0.022181 Vertex 16560 -0.0714792 0.167875 -0.0225174 Vertex 16561 -0.0724891 0.168081 -0.0228518 Vertex 16562 -0.0736982 0.167846 -0.0232955 Vertex 16563 -0.0749362 0.167415 -0.0237916 Vertex 16564 -0.0437757 0.12944 0.0066621 Vertex 16565 -0.0401622 0.123949 0.0243503 Vertex 16566 -0.0753414 0.15612 0.015399 Vertex 16567 -0.0556539 0.153362 0.0267778 Vertex 16568 -0.0432186 0.121963 0.0262727 Vertex 16569 -0.0681261 0.15638 0.0193912 Vertex 16570 -0.0475933 0.134581 0.0184866 Vertex 16571 -0.0447211 0.129823 0.00637961 Vertex 16572 0.0544559 0.0679536 0.0254119 Vertex 16573 0.0537553 0.0686728 0.0251859 Vertex 16574 0.0512708 0.0700979 0.0242688 Vertex 16575 0.0503362 0.0703636 0.0239238 Vertex 16576 0.0492902 0.0704301 0.0235452 Vertex 16577 0.0482025 0.0703533 0.0231278 Vertex 16578 0.0470668 0.0701831 0.0226957 Vertex 16579 0.0461205 0.0704224 0.0223322 Vertex 16580 0.0453449 0.0710055 0.0220458 Vertex 16581 0.0451266 0.0727442 0.0219703 Vertex 16582 -0.0454304 0.130382 0.00608349 Vertex 16583 -0.075849 0.149415 0.0390624 Vertex 16584 -0.0102534 0.128943 0.0232512 Vertex 16585 -0.0463734 0.133247 0.0130756 Vertex 16586 -0.0294956 0.124519 0.0193203 Vertex 16587 -0.0205283 0.125395 0.0225414 Vertex 16588 -0.0179487 0.126229 0.0234428 Vertex 16589 -0.0833215 0.153324 0.00972396 Vertex 16590 -0.0747094 0.155646 0.00979649 Vertex 16591 -0.0637348 0.156074 0.0136991 Vertex 16592 0.00170794 0.1258 0.0319097 Vertex 16593 -0.0040053 0.127195 0.0298616 Vertex 16594 -0.0737971 0.148055 0.0412991 Vertex 16595 -0.0473115 0.134637 0.0112388 Vertex 16596 -0.0306537 0.125522 0.0174226 Vertex 16597 -0.0122087 0.128137 0.0240139 Vertex 16598 -0.000418527 0.128183 0.0282442 Vertex 16599 0.00238035 0.127411 0.0292755 Vertex 16600 -0.00140945 0.12836 0.0278943 Vertex 16601 0.00326552 0.127077 0.029619 Vertex 16602 -0.00761606 0.128811 0.0256727 Vertex 16603 0.037993 0.109314 0.0194453 Vertex 16604 0.0374138 0.110303 0.0192381 Vertex 16605 0.0368248 0.11128 0.0190303 Vertex 16606 0.0362122 0.112176 0.0188059 Vertex 16607 0.0355908 0.113068 0.0185826 Vertex 16608 0.0349766 0.11396 0.0183585 Vertex 16609 0.0343502 0.114842 0.0181324 Vertex 16610 0.0337096 0.115696 0.0178949 Vertex 16611 0.0330592 0.116487 0.0176444 Vertex 16612 0.0323926 0.117262 0.0173907 Vertex 16613 0.0317192 0.118031 0.0171382 Vertex 16614 0.0310327 0.118783 0.0168832 Vertex 16615 0.0303225 0.119467 0.0166127 Vertex 16616 0.0296088 0.12015 0.0163431 Vertex 16617 0.0288986 0.120838 0.016073 Vertex 16618 0.0281659 0.121502 0.0158045 Vertex 16619 0.0274179 0.122108 0.0155174 Vertex 16620 0.0266795 0.122765 0.0152477 Vertex 16621 0.0259255 0.123359 0.0149571 Vertex 16622 0.0251524 0.123931 0.0146708 Vertex 16623 0.0243777 0.124503 0.0143821 Vertex 16624 0.0235925 0.125057 0.0140956 Vertex 16625 0.022807 0.125614 0.0138049 Vertex 16626 0.0219644 0.126042 0.013483 Vertex 16627 0.0211328 0.126504 0.0131782 Vertex 16628 0.0203015 0.126964 0.0128708 Vertex 16629 0.0194715 0.127423 0.0125674 Vertex 16630 0.0186124 0.127837 0.0122439 Vertex 16631 0.0177398 0.128218 0.01192 Vertex 16632 0.0168951 0.128644 0.0116162 Vertex 16633 0.0159855 0.12897 0.0112743 Vertex 16634 0.0151527 0.129419 0.0109697 Vertex 16635 0.0142349 0.129723 0.0106274 Vertex 16636 0.0133552 0.13008 0.0103074 Vertex 16637 0.0124259 0.130345 0.00996559 Vertex 16638 0.0114915 0.130592 0.00962923 Vertex 16639 0.0105198 0.130786 0.00926843 Vertex 16640 0.00959045 0.131031 0.00893055 Vertex 16641 0.00861625 0.13122 0.00857267 Vertex 16642 0.00759173 0.131318 0.00819364 Vertex 16643 0.00661243 0.131425 0.00784474 Vertex 16644 0.00553205 0.131427 0.00744951 Vertex 16645 0.00449684 0.131467 0.00706378 Vertex 16646 0.00335212 0.131364 0.00663122 Vertex 16647 0.00226062 0.131309 0.0062251 Vertex 16648 0.00116916 0.131228 0.00582139 Vertex 16649 7.90085e-05 0.131159 0.00541676 Vertex 16650 -0.00106292 0.130975 0.00499363 Vertex 16651 -0.00226925 0.130756 0.00454173 Vertex 16652 -0.0034723 0.130516 0.00409153 Vertex 16653 -0.00460956 0.130321 0.00366937 Vertex 16654 -0.00587295 0.130011 0.00319127 Vertex 16655 -0.00707285 0.12974 0.0027455 Vertex 16656 -0.00832405 0.129364 0.00227931 Vertex 16657 -0.00957697 0.128995 0.00181181 Vertex 16658 -0.088744 0.0996845 0.0203875 Vertex 16659 -0.0679091 0.108046 -0.0128123 Vertex 16660 -0.0809703 0.132422 -0.00393108 Vertex 16661 -0.0679169 0.115123 -0.00939662 Vertex 16662 -0.0208752 0.105853 -0.0224653 Vertex 16663 -0.0640364 0.138454 -0.00746704 Vertex 16664 -0.0468796 0.105628 -0.0200508 Vertex 16665 -0.0649244 0.113824 -0.0119395 Vertex 16666 -0.0797391 0.110092 0.0425713 Vertex 16667 -0.0698832 0.115052 -0.00855978 Vertex 16668 -0.0759472 0.132533 -0.00707033 Vertex 16669 -0.0488748 0.105594 -0.0196597 Vertex 16670 -0.042206 0.166657 -0.0103803 Vertex 16671 -0.0251326 0.166747 -0.01768 Vertex 16672 0.0201875 0.0974057 -0.022456 Vertex 16673 -0.0520867 0.151648 -0.00355308 Vertex 16674 -0.0142717 0.17714 -0.027303 Vertex 16675 -0.0191507 0.168261 -0.0198644 Vertex 16676 -0.0271419 0.168228 -0.0179326 Vertex 16677 -0.0548013 0.086928 -0.0216118 Vertex 16678 -0.0636783 0.0344406 0.016873 Vertex 16679 -0.0630458 0.0345815 0.0177326 Vertex 16680 -0.0647368 0.0350417 0.0261211 Vertex 16681 -0.0661617 0.0353568 0.0288449 Vertex 16682 -0.0669938 0.0358141 0.0313063 Vertex 16683 -0.0669849 0.0359436 0.0326963 Vertex 16684 -0.0668209 0.036036 0.0339126 Vertex 16685 -0.0665769 0.0362823 0.0365183 Vertex 16686 -0.0662971 0.0363734 0.0376513 Vertex 16687 -0.0597919 0.0868174 -0.0202685 Vertex 16688 -0.064973 0.0365283 0.0405192 Vertex 16689 -0.0643928 0.0366139 0.0414145 Vertex 16690 -0.0820284 0.13533 -0.00235647 Vertex 16691 -0.063129 0.0366622 0.0429743 Vertex 16692 -0.0623699 0.0366895 0.0436353 Vertex 16693 -0.0615835 0.0366556 0.0444374 Vertex 16694 -0.0600876 0.0367271 0.0456071 Vertex 16695 -0.0580048 0.0366442 0.0464062 Vertex 16696 -0.0569251 0.0366412 0.0466659 Vertex 16697 -0.0556277 0.0365615 0.0468082 Vertex 16698 -0.0120884 0.101067 0.0439606 Vertex 16699 -0.078421 0.120421 0.0514142 Vertex 16700 -0.0866419 0.0923952 0.0266005 Vertex 16701 -0.0348191 0.0886631 -0.024431 Vertex 16702 -0.0779478 0.107702 0.034147 Vertex 16703 -0.0789759 0.136856 -0.00458832 Vertex 16704 0.0211784 0.0973838 -0.0221644 Vertex 16705 -0.0182946 0.181579 -0.0243778 Vertex 16706 -0.0391315 0.160685 -0.012118 Vertex 16707 0.0191832 0.0974256 -0.0227258 Vertex 16708 -0.0258638 0.0987461 -0.0241399 Vertex 16709 -0.00788756 0.107371 -0.0226705 Vertex 16710 -0.0769711 0.133968 -0.00621304 Vertex 16711 -0.074953 0.131092 -0.00759533 Vertex 16712 -0.0498819 0.105595 -0.0195612 Vertex 16713 0.0181761 0.0974249 -0.0228373 Vertex 16714 -0.064968 0.128232 -0.00872903 Vertex 16715 -0.0478723 0.105599 -0.0198923 Vertex 16716 0.0221884 0.0973608 -0.0216774 Vertex 16717 -0.0570131 0.128126 -0.00643112 Vertex 16718 -0.037115 0.160706 -0.0129903 Vertex 16719 -0.0241861 0.0351713 0.0521271 Vertex 16720 -0.085893 0.115781 0.0473131 Vertex 16721 -0.0679519 0.129695 -0.00900682 Vertex 16722 -0.0128757 0.105895 -0.0226089 Vertex 16723 -0.0723733 0.0352474 0.00704331 Vertex 16724 -0.072066 0.0353469 0.00817017 Vertex 16725 -0.0715958 0.035386 0.00909438 Vertex 16726 -0.0709835 0.0353942 0.00988845 Vertex 16727 -0.0703389 0.0353326 0.0107638 Vertex 16728 -0.0696814 0.0354769 0.0114289 Vertex 16729 -0.0677955 0.0355805 0.0137906 Vertex 16730 -0.0671319 0.0355924 0.0145398 Vertex 16731 -0.0663805 0.0356243 0.0152158 Vertex 16732 -0.0656741 0.0356447 0.0159226 Vertex 16733 -0.0650165 0.0356472 0.0166692 Vertex 16734 -0.0642775 0.0356785 0.0173446 Vertex 16735 -0.0637593 0.0357681 0.0182478 Vertex 16736 -0.0631194 0.0357147 0.0189543 Vertex 16737 -0.0588165 0.0667309 0.0351477 Vertex 16738 -0.0649174 0.0364897 0.025021 Vertex 16739 -0.0658345 0.0367656 0.0273328 Vertex 16740 -0.0664962 0.0370022 0.0293944 Vertex 16741 -0.0668989 0.0372019 0.0312012 Vertex 16742 -0.0670049 0.0372923 0.032499 Vertex 16743 -0.0667337 0.0374088 0.0337222 Vertex 16744 -0.066706 0.0375681 0.0351923 Vertex 16745 -0.0664522 0.0376478 0.0363332 Vertex 16746 -0.066213 0.0377522 0.0375383 Vertex 16747 -0.0657729 0.0378142 0.038507 Vertex 16748 -0.0652746 0.0378654 0.0394026 Vertex 16749 -0.0647467 0.0379255 0.0402853 Vertex 16750 -0.0642758 0.0379734 0.0412454 Vertex 16751 -0.0637308 0.0380192 0.0421186 Vertex 16752 -0.0631004 0.038056 0.0429096 Vertex 16753 -0.0623246 0.0380624 0.0435494 Vertex 16754 -0.0615813 0.0380878 0.0442214 Vertex 16755 -0.0608849 0.0381036 0.0449409 Vertex 16756 -0.0601123 0.0381131 0.0455939 Vertex 16757 -0.0592916 0.0381211 0.04617 Vertex 16758 -0.0582688 0.0380855 0.0465946 Vertex 16759 -0.0572001 0.0380562 0.0469117 Vertex 16760 -0.0816795 0.117485 0.0486704 Vertex 16761 -0.0781026 0.0818813 0.0353359 Vertex 16762 -0.080536 0.135397 0.0502642 Vertex 16763 -0.0761145 0.157637 -0.00836344 Vertex 16764 -0.0769362 0.0914256 0.0381174 Vertex 16765 -0.0649024 0.119454 -0.00881631 Vertex 16766 -0.0428468 0.0368545 0.044028 Vertex 16767 -0.0401934 0.0365351 0.0429119 Vertex 16768 -0.0388776 0.0364147 0.043017 Vertex 16769 -0.0382309 0.0365042 0.0436563 Vertex 16770 -0.0719356 0.110274 0.042413 Vertex 16771 0.000164408 0.0895345 -0.0346177 Vertex 16772 0.00318323 0.0894801 -0.0335291 Vertex 16773 0.00112807 0.104475 -0.0219821 Vertex 16774 -0.0308026 0.0367564 0.0517774 Vertex 16775 -0.0292503 0.036802 0.0530596 Vertex 16776 -0.0272685 0.0368017 0.0538626 Vertex 16777 -0.026052 0.036748 0.0540507 Vertex 16778 -0.0913706 0.116528 0.0258009 Vertex 16779 -0.0761803 0.0914451 0.0387697 Vertex 16780 -0.0805022 0.0831735 0.0334637 Vertex 16781 -0.0770317 0.088754 0.0382806 Vertex 16782 -0.0780422 0.0846436 0.0366002 Vertex 16783 -0.0760841 0.164579 -0.0198769 Vertex 16784 -0.0749519 0.164602 -0.018207 Vertex 16785 -0.0725589 0.0360747 0.00146649 Vertex 16786 -0.0724467 0.0361675 0.00255211 Vertex 16787 -0.0723608 0.0363259 0.00395733 Vertex 16788 -0.0726014 0.0365856 0.00586956 Vertex 16789 -0.0725775 0.0367142 0.00725292 Vertex 16790 -0.0722633 0.0367738 0.0082856 Vertex 16791 -0.0716377 0.0368114 0.00909586 Vertex 16792 -0.0708619 0.0368523 0.00979504 Vertex 16793 -0.0701989 0.0368637 0.0105096 Vertex 16794 -0.0694879 0.0368888 0.0112092 Vertex 16795 -0.0688721 0.0369953 0.0119906 Vertex 16796 -0.0684496 0.0369814 0.0129839 Vertex 16797 -0.0677747 0.0370061 0.0137537 Vertex 16798 -0.0671438 0.037039 0.0145094 Vertex 16799 -0.0663574 0.0370366 0.0151548 Vertex 16800 -0.0655788 0.037063 0.0157921 Vertex 16801 -0.0648003 0.0370671 0.0164284 Vertex 16802 -0.0639993 0.0370815 0.0170442 Vertex 16803 -0.0633486 0.0371336 0.0178291 Vertex 16804 -0.0626129 0.0371673 0.0184653 Vertex 16805 -0.0619624 0.0371632 0.0192279 Vertex 16806 -0.0614566 0.0372076 0.0201515 Vertex 16807 -0.0646788 0.0378404 0.0247428 Vertex 16808 -0.0652548 0.0380623 0.0267185 Vertex 16809 -0.0661715 0.0383371 0.0290301 Vertex 16810 -0.0664042 0.0385079 0.0306689 Vertex 16811 -0.0662143 0.0386042 0.0318887 Vertex 16812 -0.0661919 0.0387353 0.0332699 Vertex 16813 -0.0663865 0.0388997 0.0348294 Vertex 16814 -0.0662201 0.0390045 0.0360529 Vertex 16815 -0.0659208 0.0390922 0.037189 Vertex 16816 -0.0654261 0.0391693 0.0381077 Vertex 16817 -0.0649149 0.0392337 0.0390271 Vertex 16818 -0.0643722 0.0392301 0.0399397 Vertex 16819 -0.0638844 0.0392942 0.0408356 Vertex 16820 -0.0634342 0.039353 0.0417984 Vertex 16821 -0.0628785 0.0393963 0.0426563 Vertex 16822 -0.0622047 0.0394245 0.0433885 Vertex 16823 -0.0613646 0.0394268 0.0439671 Vertex 16824 -0.0606247 0.0394421 0.0446315 Vertex 16825 -0.0599208 0.0394628 0.0453423 Vertex 16826 -0.0591403 0.039472 0.0459797 Vertex 16827 -0.0582195 0.03947 0.0465299 Vertex 16828 -0.0571511 0.0394305 0.0468685 Vertex 16829 -0.0827169 0.105982 0.0279083 Vertex 16830 -0.0753098 0.0805155 0.0368289 Vertex 16831 -0.0679826 0.0819454 0.0421862 Vertex 16832 -0.03681 0.0886191 -0.0239226 Vertex 16833 -0.0889045 0.133745 0.0416542 Vertex 16834 -0.0835459 0.133987 0.0490485 Vertex 16835 -0.0832136 0.0770175 0.0194025 Vertex 16836 -0.0168713 0.104463 -0.0227606 Vertex 16837 -0.0401042 0.037954 0.0427598 Vertex 16838 -0.038893 0.0378836 0.042947 Vertex 16839 -0.0383306 0.0379343 0.0437226 Vertex 16840 -0.0376745 0.0379475 0.0444361 Vertex 16841 -0.0370447 0.0379826 0.045213 Vertex 16842 -0.0363535 0.0380033 0.0459253 Vertex 16843 -0.0357437 0.0380351 0.0467216 Vertex 16844 -0.035201 0.0380831 0.0475916 Vertex 16845 -0.0346044 0.0381371 0.0484275 Vertex 16846 -0.0340062 0.0381682 0.049242 Vertex 16847 -0.0334338 0.0382234 0.0500909 Vertex 16848 -0.0326689 0.0382268 0.0507498 Vertex 16849 -0.0317095 0.0382098 0.0512104 Vertex 16850 -0.0308589 0.0382072 0.0517831 Vertex 16851 -0.0301563 0.0382285 0.0524978 Vertex 16852 -0.0294534 0.0382504 0.0532249 Vertex 16853 -0.0285615 0.0382432 0.0537594 Vertex 16854 -0.0274456 0.0382197 0.0539829 Vertex 16855 -0.0261619 0.0381432 0.054147 Vertex 16856 -0.0249438 0.0380891 0.0543244 Vertex 16857 -0.0702982 0.0846763 0.0415948 Vertex 16858 -0.0849325 0.0938555 0.0290926 Vertex 16859 -0.0388049 0.0885478 -0.0231132 Vertex 16860 -0.0210747 0.0753924 0.0536136 Vertex 16861 -0.0794364 0.144805 0.0432098 Vertex 16862 -0.0834291 0.14469 0.0401339 Vertex 16863 -0.0756035 0.0846721 0.0383975 Vertex 16864 -0.0558611 0.0955845 -0.021564 Vertex 16865 0.00713327 0.105885 -0.0207766 Vertex 16866 -0.0588398 0.0954803 -0.0203334 Vertex 16867 -0.0597928 0.095429 -0.0195264 Vertex 16868 -0.0797918 0.11331 -0.00252121 Vertex 16869 -0.0849635 0.115612 0.0476218 Vertex 16870 -0.0633961 0.0610267 0.0215327 Vertex 16871 -0.0566835 0.124286 -0.00724626 Vertex 16872 -0.0271239 0.117991 -0.0128729 Vertex 16873 -0.0720001 0.0374977 0.00101403 Vertex 16874 -0.0718937 0.0376106 0.00231258 Vertex 16875 -0.0719585 0.0377493 0.00378419 Vertex 16876 -0.0725333 0.0379686 0.00575754 Vertex 16877 -0.0723402 0.0380689 0.00697334 Vertex 16878 -0.0719602 0.0381531 0.00797803 Vertex 16879 -0.0712669 0.0381904 0.00872646 Vertex 16880 -0.0705682 0.0382102 0.00943236 Vertex 16881 -0.0697739 0.0382195 0.0100596 Vertex 16882 -0.0690425 0.0382325 0.0107396 Vertex 16883 -0.0683549 0.0382578 0.0114352 Vertex 16884 -0.0679678 0.0383221 0.0123903 Vertex 16885 -0.0674828 0.0383816 0.0133921 Vertex 16886 -0.06674 0.0383979 0.0141071 Vertex 16887 -0.0660641 0.0384249 0.0148213 Vertex 16888 -0.0652396 0.0384193 0.0154218 Vertex 16889 -0.0644302 0.0384213 0.0160253 Vertex 16890 -0.0635208 0.0384034 0.0165311 Vertex 16891 -0.0629014 0.0384346 0.017326 Vertex 16892 -0.0621446 0.0384632 0.0179813 Vertex 16893 -0.0614924 0.0384787 0.0187446 Vertex 16894 -0.0608714 0.0385134 0.0195368 Vertex 16895 -0.0598385 0.0385019 0.0199857 Vertex 16896 -0.0641545 0.0391804 0.0263583 Vertex 16897 -0.0652279 0.0397522 0.0288372 Vertex 16898 -0.0655356 0.0398001 0.0300899 Vertex 16899 -0.0654856 0.0398574 0.0313799 Vertex 16900 -0.065424 0.0399796 0.0326661 Vertex 16901 -0.0658806 0.040185 0.0344505 Vertex 16902 -0.0657805 0.04031 0.0356744 Vertex 16903 -0.0654577 0.0403952 0.0367257 Vertex 16904 -0.0650934 0.040468 0.0377689 Vertex 16905 -0.0646669 0.0405364 0.0387423 Vertex 16906 -0.0641268 0.0405801 0.0396199 Vertex 16907 -0.063603 0.0406323 0.0405017 Vertex 16908 -0.0631801 0.0406886 0.0415101 Vertex 16909 -0.0626778 0.0407451 0.0424121 Vertex 16910 -0.0620034 0.040777 0.0431481 Vertex 16911 -0.0612252 0.0407891 0.0437895 Vertex 16912 -0.0603522 0.0407823 0.0443369 Vertex 16913 -0.0595653 0.0407951 0.0449735 Vertex 16914 -0.0588282 0.0408079 0.0456406 Vertex 16915 -0.0579692 0.0408152 0.0462221 Vertex 16916 -0.073142 0.0762988 0.0362199 Vertex 16917 -0.0810472 0.147398 0.0390836 Vertex 16918 -0.0876158 0.137864 0.0416648 Vertex 16919 -0.0699648 0.0791315 0.0398469 Vertex 16920 -0.0862734 0.13657 0.044609 Vertex 16921 -0.0826044 0.1367 0.0480323 Vertex 16922 -0.0283222 0.0749245 0.042497 Vertex 16923 -0.0801569 0.0817921 0.0331577 Vertex 16924 -0.0738585 0.0762694 0.0355202 Vertex 16925 -0.0393467 0.0392853 0.042122 Vertex 16926 -0.0387789 0.0392857 0.0427431 Vertex 16927 -0.0382613 0.0393263 0.043596 Vertex 16928 -0.0376144 0.0393494 0.044329 Vertex 16929 -0.0370734 0.0393951 0.0451959 Vertex 16930 -0.0364055 0.0394201 0.0459276 Vertex 16931 -0.0356589 0.0394362 0.046602 Vertex 16932 -0.0351956 0.0394954 0.0475468 Vertex 16933 -0.0346615 0.0395406 0.0484261 Vertex 16934 -0.0341216 0.0395911 0.0493113 Vertex 16935 -0.0334658 0.0396217 0.0500837 Vertex 16936 -0.032718 0.0396362 0.0507617 Vertex 16937 -0.0317919 0.0396266 0.0512352 Vertex 16938 -0.0308456 0.0396262 0.0517145 Vertex 16939 -0.0301161 0.0396403 0.0523893 Vertex 16940 -0.0293764 0.039648 0.0531021 Vertex 16941 -0.0284888 0.0396421 0.053637 Vertex 16942 -0.027407 0.0396009 0.0539527 Vertex 16943 -0.0261771 0.0395393 0.0541115 Vertex 16944 0.0252205 0.0888413 -0.0232794 Vertex 16945 -0.0275932 0.0779206 0.0459339 Vertex 16946 -0.0543463 0.160987 0.00512087 Vertex 16947 -0.0732341 0.100848 0.0383652 Vertex 16948 -0.0159859 0.0984773 0.0464357 Vertex 16949 -0.0929393 0.122846 0.0403052 Vertex 16950 -0.0842229 0.144678 0.0395137 Vertex 16951 -0.088166 0.0963498 0.023753 Vertex 16952 -0.0877012 0.0963902 0.0247068 Vertex 16953 -0.087169 0.0964235 0.0255876 Vertex 16954 -0.0866623 0.0964635 0.0264805 Vertex 16955 -0.0262134 0.0765572 0.0473962 Vertex 16956 -0.053794 0.086942 -0.0216962 Vertex 16957 -0.0788399 0.114858 -0.00418456 Vertex 16958 -0.0288441 0.0958675 -0.0242091 Vertex 16959 -0.0498332 0.0956322 -0.0221283 Vertex 16960 -0.056635 0.0350546 0.0452244 Vertex 16961 -0.0642706 0.166732 -0.060237 Vertex 16962 -0.0669165 0.12238 -0.00897156 Vertex 16963 -0.0658939 0.119442 -0.00885604 Vertex 16964 0.0107652 0.110575 -0.0191667 Vertex 16965 0.048512 0.0692789 0.0025489 Vertex 16966 -0.0711225 0.0388168 0.00193457 Vertex 16967 -0.0714603 0.0390724 0.00325296 Vertex 16968 -0.0710154 0.0391332 0.00421404 Vertex 16969 -0.0719291 0.0394019 0.00652921 Vertex 16970 -0.0716229 0.0395313 0.00756641 Vertex 16971 -0.070992 0.0395652 0.00837515 Vertex 16972 -0.0701875 0.0395708 0.00901355 Vertex 16973 -0.0694289 0.039567 0.00968578 Vertex 16974 -0.0686495 0.0395764 0.0103048 Vertex 16975 -0.0679113 0.0395796 0.0109828 Vertex 16976 -0.0673994 0.0396352 0.0118227 Vertex 16977 -0.0669027 0.0396709 0.012801 Vertex 16978 -0.0662162 0.0396687 0.0135434 Vertex 16979 -0.0655484 0.039711 0.0142785 Vertex 16980 -0.0647638 0.0397203 0.0149016 Vertex 16981 -0.06389 0.0397139 0.0154457 Vertex 16982 -0.0631059 0.039729 0.0160762 Vertex 16983 -0.0623108 0.039732 0.0166963 Vertex 16984 -0.0616465 0.0397266 0.0174413 Vertex 16985 -0.0607804 0.0397294 0.0180031 Vertex 16986 -0.0601415 0.0397484 0.0187938 Vertex 16987 -0.0594207 0.0398239 0.0196241 Vertex 16988 -0.0743429 0.0955133 0.0396401 Vertex 16989 -0.00386806 0.105937 -0.0224388 Vertex 16990 -0.0651015 0.0410328 0.0295625 Vertex 16991 -0.0650109 0.041163 0.0307556 Vertex 16992 -0.0648164 0.0412793 0.0318749 Vertex 16993 -0.0654475 0.0414866 0.0340095 Vertex 16994 -0.0653369 0.0416124 0.0352199 Vertex 16995 -0.0650871 0.0417056 0.03635 Vertex 16996 -0.0647267 0.0417808 0.0373932 Vertex 16997 -0.0642565 0.0418897 0.0384072 Vertex 16998 -0.0637796 0.0419038 0.0392448 Vertex 16999 -0.0632658 0.0419596 0.040132 Vertex 17000 -0.0628106 0.0420167 0.0410925 Vertex 17001 -0.0623617 0.0420762 0.0420515 Vertex 17002 -0.0617437 0.0421117 0.0428503 Vertex 17003 -0.0609886 0.0421383 0.0435161 Vertex 17004 -0.0600859 0.0421217 0.0440266 Vertex 17005 -0.0592125 0.042121 0.0445708 Vertex 17006 -0.0584087 0.0421172 0.0451764 Vertex 17007 -0.0575439 0.0421232 0.0457366 Vertex 17008 -0.0860991 0.0964962 0.0273389 Vertex 17009 -0.0854938 0.096523 0.0281673 Vertex 17010 -0.088151 0.137836 0.0407884 Vertex 17011 -0.0279821 0.0821961 0.0475971 Vertex 17012 -0.0415254 0.172553 -0.00373349 Vertex 17013 -0.0638039 0.0881523 -0.0190251 Vertex 17014 -0.0807853 0.0817556 0.0323751 Vertex 17015 -0.052342 0.035529 0.0457534 Vertex 17016 -0.0848984 0.0965537 0.0289739 Vertex 17017 -0.0391365 0.0406682 0.0418102 Vertex 17018 -0.0386117 0.0406767 0.0425487 Vertex 17019 -0.0380583 0.0406922 0.0433465 Vertex 17020 -0.0375091 0.0407357 0.0441865 Vertex 17021 -0.0369077 0.0407733 0.0449918 Vertex 17022 -0.0363013 0.0408102 0.0457892 Vertex 17023 -0.0355385 0.040818 0.0464546 Vertex 17024 -0.0350351 0.0408695 0.0473482 Vertex 17025 -0.0345546 0.0409268 0.0482929 Vertex 17026 -0.0340021 0.0409714 0.0491624 Vertex 17027 -0.0333397 0.0410057 0.0499212 Vertex 17028 -0.0325696 0.0410226 0.0505793 Vertex 17029 -0.0316389 0.0409999 0.051064 Vertex 17030 -0.0306755 0.0409906 0.0514223 Vertex 17031 -0.0297834 0.0409697 0.0520218 Vertex 17032 -0.0290961 0.0410008 0.0527549 Vertex 17033 -0.0282466 0.0410133 0.0533665 Vertex 17034 -0.0272596 0.0409813 0.0537728 Vertex 17035 -0.0261092 0.0409213 0.0540071 Vertex 17036 -0.0842996 0.0965857 0.0297797 Vertex 17037 -0.0836562 0.0966099 0.0305537 Vertex 17038 -0.0268179 0.0735627 0.0438663 Vertex 17039 -0.0789197 0.104773 0.0326412 Vertex 17040 -0.0921408 0.125525 0.040859 Vertex 17041 -0.0286126 0.0778208 0.0441079 Vertex 17042 -0.0222639 0.0783263 0.0546841 Vertex 17043 -0.0907738 0.125596 0.0437739 Vertex 17044 -0.0290472 0.0777737 0.0431405 Vertex 17045 -0.0706849 0.0819434 0.0406373 Vertex 17046 -0.0715523 0.0819441 0.0400873 Vertex 17047 -0.0829912 0.0966357 0.0312921 Vertex 17048 -0.0823518 0.0966615 0.0320686 Vertex 17049 -0.081672 0.0966878 0.0327979 Vertex 17050 -0.080968 0.0967089 0.0335048 Vertex 17051 -0.0802571 0.096729 0.0342047 Vertex 17052 -0.0795268 0.096746 0.0348816 Vertex 17053 -0.027122 0.166756 -0.0173778 Vertex 17054 -0.0570614 0.151623 -0.00120922 Vertex 17055 -0.071965 0.136965 -0.0074383 Vertex 17056 -0.0378406 0.0957387 -0.0228102 Vertex 17057 0.0171658 0.0974165 -0.0229214 Vertex 17058 -0.0820934 0.0898659 0.0320222 Vertex 17059 -0.0847663 0.132585 0.0488829 Vertex 17060 -0.0706305 0.0401508 0.00122659 Vertex 17061 -0.0708913 0.0403263 0.00282802 Vertex 17062 -0.0705376 0.04043 0.00377428 Vertex 17063 -0.0710533 0.04057 0.0057746 Vertex 17064 -0.071022 0.0408196 0.00705143 Vertex 17065 -0.0704746 0.040884 0.00781861 Vertex 17066 -0.0697772 0.0409122 0.00855159 Vertex 17067 -0.069028 0.0409064 0.00923732 Vertex 17068 -0.0682663 0.0409329 0.00988698 Vertex 17069 -0.0675171 0.0409229 0.0105489 Vertex 17070 -0.0668634 0.040937 0.011312 Vertex 17071 -0.0663455 0.040996 0.0121932 Vertex 17072 -0.0657759 0.0410192 0.0130518 Vertex 17073 -0.064997 0.0410349 0.013689 Vertex 17074 -0.0642011 0.0410429 0.0143098 Vertex 17075 -0.0633398 0.0410523 0.0148679 Vertex 17076 -0.0625417 0.0410514 0.0154849 Vertex 17077 -0.0616719 0.0410515 0.0160296 Vertex 17078 -0.06094 0.0410414 0.0167056 Vertex 17079 -0.0601407 0.0410386 0.0173224 Vertex 17080 -0.0593549 0.0410534 0.0179552 Vertex 17081 -0.0767379 0.10491 0.0348158 Vertex 17082 -0.0751139 0.0954949 0.0389973 Vertex 17083 -0.0735502 0.095526 0.040254 Vertex 17084 -0.0861456 0.140625 0.0415389 Vertex 17085 -0.0643033 0.0426016 0.0312522 Vertex 17086 -0.0905601 0.144393 0.0275534 Vertex 17087 -0.064813 0.0428917 0.034688 Vertex 17088 -0.0642327 0.0431706 0.0367918 Vertex 17089 -0.0638345 0.0431637 0.0378429 Vertex 17090 -0.0633722 0.04322 0.0387983 Vertex 17091 -0.0628563 0.0432731 0.0396846 Vertex 17092 -0.0623716 0.0433162 0.04063 Vertex 17093 -0.0618993 0.0433992 0.0415482 Vertex 17094 -0.0613445 0.0434338 0.042412 Vertex 17095 -0.0606463 0.0434636 0.0431332 Vertex 17096 -0.0597745 0.0434652 0.0436848 Vertex 17097 -0.0587368 0.0434475 0.0440841 Vertex 17098 -0.0787218 0.0967552 0.0354897 Vertex 17099 -0.0778727 0.096767 0.0360596 Vertex 17100 -0.08997 0.132328 0.0399309 Vertex 17101 -0.0760018 0.163203 -0.0170986 Vertex 17102 -0.0262003 0.0750789 0.0460261 Vertex 17103 -0.0799154 0.12806 -0.00573177 Vertex 17104 -0.0711318 0.0777267 0.0384114 Vertex 17105 -0.0826468 0.144713 0.0407672 Vertex 17106 -0.0555164 0.0482866 0.0387265 Vertex 17107 -0.0250124 0.0782139 0.0518051 Vertex 17108 -0.0770975 0.0967852 0.0367 Vertex 17109 -0.0383992 0.0420226 0.0422608 Vertex 17110 -0.0377624 0.0420706 0.0430123 Vertex 17111 -0.0372876 0.0421099 0.0439093 Vertex 17112 -0.0366764 0.0421455 0.0447176 Vertex 17113 -0.0359879 0.0421738 0.0454409 Vertex 17114 -0.0353032 0.042242 0.0460623 Vertex 17115 -0.0346582 0.0422066 0.0469558 Vertex 17116 -0.034222 0.0422724 0.0479221 Vertex 17117 -0.0336612 0.0423072 0.0487868 Vertex 17118 -0.032982 0.0423452 0.0495212 Vertex 17119 -0.0322196 0.0423712 0.0501883 Vertex 17120 -0.0314067 0.0423682 0.0507901 Vertex 17121 -0.0303184 0.0423041 0.0510935 Vertex 17122 -0.0293723 0.0422984 0.0515712 Vertex 17123 -0.0285781 0.0423048 0.0521933 Vertex 17124 -0.0277389 0.0423333 0.0528015 Vertex 17125 -0.0268469 0.0423164 0.0533212 Vertex 17126 -0.0257999 0.0422849 0.0537317 Vertex 17127 -0.0763961 0.0968047 0.0374195 Vertex 17128 -0.0872439 0.132483 0.0457019 Vertex 17129 -0.0756638 0.0968147 0.0380937 Vertex 17130 -0.0843649 0.125772 0.0501053 Vertex 17131 -0.0858603 0.137915 0.0441653 Vertex 17132 -0.0708946 0.1037 -0.0131771 Vertex 17133 -0.024511 0.0782394 0.0527049 Vertex 17134 -0.0281096 0.0778495 0.0450018 Vertex 17135 -0.0848653 0.0855483 0.0264341 Vertex 17136 -0.0861005 0.10314 0.0243088 Vertex 17137 -0.0724387 0.0819305 0.0395669 Vertex 17138 -0.0775302 0.161724 -0.0197184 Vertex 17139 -0.0698398 0.0922797 -0.0162924 Vertex 17140 -0.0917403 0.12555 0.0418871 Vertex 17141 -0.0748949 0.0968349 0.0387401 Vertex 17142 -0.0814422 0.106028 0.0294684 Vertex 17143 -0.0741702 0.0968478 0.0394202 Vertex 17144 -0.073336 0.0968702 0.0400088 Vertex 17145 -0.072467 0.0968801 0.0405541 Vertex 17146 -0.0715781 0.0968766 0.0410625 Vertex 17147 -0.0541455 0.0482522 0.0392578 Vertex 17148 -0.0898235 0.126994 0.0441831 Vertex 17149 -0.0859703 0.127103 0.0488324 Vertex 17150 -0.0874127 0.118983 0.0477049 Vertex 17151 -0.0700699 0.0415411 0.00206928 Vertex 17152 -0.069909 0.0416997 0.00317022 Vertex 17153 -0.0695527 0.04187 0.00402445 Vertex 17154 -0.0700913 0.0419644 0.00613646 Vertex 17155 -0.0699291 0.0421822 0.0072491 Vertex 17156 -0.0692421 0.0422187 0.00798097 Vertex 17157 -0.0685956 0.0422314 0.00876662 Vertex 17158 -0.0678614 0.042287 0.00944731 Vertex 17159 -0.0671246 0.042281 0.0101216 Vertex 17160 -0.0663652 0.0422587 0.0107808 Vertex 17161 -0.0657552 0.0422954 0.0115704 Vertex 17162 -0.065046 0.0423247 0.012291 Vertex 17163 -0.0642469 0.0423257 0.0129047 Vertex 17164 -0.0634522 0.0423282 0.0135276 Vertex 17165 -0.0626599 0.0423324 0.0141491 Vertex 17166 -0.0617811 0.042326 0.0146867 Vertex 17167 -0.0609073 0.0423237 0.0152297 Vertex 17168 -0.060108 0.0423138 0.0158374 Vertex 17169 -0.0593718 0.0422854 0.0165091 Vertex 17170 -0.0585081 0.0422988 0.0170665 Vertex 17171 -0.0761105 0.167387 -0.0256061 Vertex 17172 -0.0720681 0.0805547 0.0392361 Vertex 17173 -0.072687 0.0955359 0.0408041 Vertex 17174 -0.0863431 0.0896619 0.0263909 Vertex 17175 -0.0876135 0.100396 0.0230423 Vertex 17176 -0.0617195 0.0669875 0.0343055 Vertex 17177 -0.0239757 0.0768012 0.0522149 Vertex 17178 -0.076892 0.165957 -0.0247772 Vertex 17179 -0.0870672 0.0882048 0.024333 Vertex 17180 -0.0628692 0.0445185 0.0382675 Vertex 17181 -0.0623929 0.0445563 0.039213 Vertex 17182 -0.0618871 0.044625 0.0401036 Vertex 17183 -0.0613708 0.044683 0.0409908 Vertex 17184 -0.0607701 0.0447346 0.0418038 Vertex 17185 -0.0601235 0.0447437 0.0425684 Vertex 17186 -0.0593254 0.0447426 0.0431798 Vertex 17187 -0.0583019 0.0447396 0.0435847 Vertex 17188 -0.0817178 0.0953366 0.0328835 Vertex 17189 -0.0832306 0.0871025 0.0304136 Vertex 17190 -0.0820828 0.0871799 0.032118 Vertex 17191 -0.084857 0.0924919 0.0290512 Vertex 17192 -0.0735016 0.14861 -0.0288774 Vertex 17193 -0.0732751 0.148715 -0.0303812 Vertex 17194 -0.0358177 0.0886369 -0.024178 Vertex 17195 -0.0784918 0.144814 0.0436628 Vertex 17196 -0.0749067 0.100837 0.0372176 Vertex 17197 -0.0138747 0.104484 -0.023001 Vertex 17198 -0.0837086 0.0952625 0.0306499 Vertex 17199 -0.0379669 0.0433397 0.0417712 Vertex 17200 -0.0373842 0.0433946 0.0425967 Vertex 17201 -0.036876 0.0434502 0.0434666 Vertex 17202 -0.03626 0.0434916 0.0442696 Vertex 17203 -0.0356854 0.0435567 0.045098 Vertex 17204 -0.0348879 0.043516 0.0457289 Vertex 17205 -0.0341948 0.0435484 0.0464376 Vertex 17206 -0.0336992 0.0435791 0.0473765 Vertex 17207 -0.0331162 0.0436399 0.0481995 Vertex 17208 -0.0324803 0.0436623 0.0489836 Vertex 17209 -0.0317074 0.0436869 0.0496355 Vertex 17210 -0.0309036 0.0436875 0.0502489 Vertex 17211 -0.0298946 0.0436977 0.0506861 Vertex 17212 -0.0835554 0.0925405 0.0305699 Vertex 17213 -0.0801184 0.0845811 0.0344552 Vertex 17214 -0.0865668 0.118992 0.0483015 Vertex 17215 -0.0214315 0.0906458 0.0534872 Vertex 17216 -0.0408044 0.0884947 -0.0224789 Vertex 17217 -0.0270974 0.0794315 0.0481933 Vertex 17218 -0.0504071 0.163936 0.00393123 Vertex 17219 -0.0835882 0.125784 0.0507488 Vertex 17220 -0.0851404 0.125756 0.0494653 Vertex 17221 -0.0858587 0.125737 0.0487678 Vertex 17222 -0.0238161 0.078256 0.0534268 Vertex 17223 -0.0815418 0.0912589 0.0328461 Vertex 17224 -0.0432016 0.171084 -0.00202068 Vertex 17225 -0.0745556 0.104899 0.0367465 Vertex 17226 -0.0726288 0.07489 0.035733 Vertex 17227 -0.0875176 0.123015 0.0477063 Vertex 17228 -0.0819791 0.08171 0.030761 Vertex 17229 -0.0153943 0.099814 0.0443638 Vertex 17230 -0.0819069 0.0844754 0.0320139 Vertex 17231 -0.0857179 0.124363 0.0486993 Vertex 17232 -0.0670133 0.0791411 0.0413099 Vertex 17233 -0.0884363 0.140505 0.0381916 Vertex 17234 -0.075975 0.156283 -0.00563956 Vertex 17235 -0.0817302 0.142079 0.0441697 Vertex 17236 -0.0649016 0.118019 -0.00923352 Vertex 17237 -0.0767292 0.0860417 0.0380634 Vertex 17238 -0.0750529 0.0860661 0.0392001 Vertex 17239 -0.0903934 0.12698 0.0433203 Vertex 17240 -0.0287184 0.0806953 0.0455388 Vertex 17241 -0.0186581 0.0985081 0.0446525 Vertex 17242 -0.0261763 0.0931476 0.0454624 Vertex 17243 -0.0891984 0.129697 0.0434765 Vertex 17244 -0.0686122 0.0432054 0.00454593 Vertex 17245 -0.0689469 0.0433261 0.00632212 Vertex 17246 -0.0685283 0.0434892 0.00727271 Vertex 17247 -0.0678925 0.0435809 0.00801004 Vertex 17248 -0.0672997 0.0435653 0.00884843 Vertex 17249 -0.0665225 0.0435914 0.00948645 Vertex 17250 -0.0657382 0.0436129 0.0101245 Vertex 17251 -0.0650018 0.0435996 0.0108034 Vertex 17252 -0.0641503 0.0436305 0.0113748 Vertex 17253 -0.0633352 0.0436031 0.0119653 Vertex 17254 -0.0625279 0.0435825 0.012569 Vertex 17255 -0.0617292 0.0435742 0.0131822 Vertex 17256 -0.0608612 0.0435863 0.0137318 Vertex 17257 -0.0599836 0.043576 0.0142711 Vertex 17258 -0.0591064 0.0435686 0.0148077 Vertex 17259 -0.0582351 0.043574 0.0153571 Vertex 17260 -0.0575075 0.0435504 0.0160321 Vertex 17261 0.0262296 0.0888085 -0.0227773 Vertex 17262 -0.0190294 0.0739916 0.05444 Vertex 17263 -0.0899083 0.121615 0.0458595 Vertex 17264 -0.0144184 0.0997913 0.0448499 Vertex 17265 -0.0769184 0.0832691 0.0369336 Vertex 17266 -0.0328048 0.0886955 -0.0250147 Vertex 17267 -0.078775 0.170042 -0.0371202 Vertex 17268 -0.0898343 0.122953 0.0457467 Vertex 17269 -0.0891532 0.121635 0.0465292 Vertex 17270 -0.068963 0.0874301 0.0429809 Vertex 17271 -0.0616474 0.0458147 0.0384356 Vertex 17272 -0.0611522 0.045903 0.0393286 Vertex 17273 -0.0606157 0.0459479 0.0402046 Vertex 17274 -0.0599936 0.0459773 0.0409964 Vertex 17275 -0.0592898 0.045994 0.0417021 Vertex 17276 -0.0584156 0.0459799 0.0422363 Vertex 17277 -0.0574587 0.045976 0.042703 Vertex 17278 -0.0832785 0.12444 0.0504652 Vertex 17279 -0.0831241 0.100626 0.0298981 Vertex 17280 -0.0251305 0.0810774 0.0532367 Vertex 17281 -0.0826184 0.0802381 0.0286257 Vertex 17282 -0.0794816 0.0846149 0.0352279 Vertex 17283 -0.0728228 0.148718 -0.0323717 Vertex 17284 -0.0397982 0.0885212 -0.0227204 Vertex 17285 -0.0824235 0.124446 0.0510342 Vertex 17286 -0.0778707 0.177255 -0.0480374 Vertex 17287 -0.0885025 0.144515 0.032494 Vertex 17288 -0.0510859 0.154625 -0.00472421 Vertex 17289 -0.0829949 0.0843947 0.0302754 Vertex 17290 -0.0373858 0.0446552 0.0411638 Vertex 17291 -0.036773 0.0446897 0.0419462 Vertex 17292 -0.0362696 0.0447516 0.0428152 Vertex 17293 -0.035816 0.0448118 0.0437923 Vertex 17294 -0.0351912 0.0448435 0.0445858 Vertex 17295 -0.034376 0.0448305 0.0451875 Vertex 17296 -0.033578 0.0448331 0.0458046 Vertex 17297 -0.0329778 0.0448862 0.0466174 Vertex 17298 -0.032486 0.0449059 0.0475402 Vertex 17299 -0.0317593 0.0449779 0.048226 Vertex 17300 -0.0310521 0.0450006 0.0489427 Vertex 17301 -0.030326 0.045 0.0496314 Vertex 17302 -0.0217284 0.0919768 0.0523353 Vertex 17303 -0.0871843 0.135176 0.0441499 Vertex 17304 -0.0693828 0.0805427 0.0408087 Vertex 17305 -0.0823897 0.104663 0.0290404 Vertex 17306 -0.0288805 0.079237 0.0443379 Vertex 17307 -0.0900318 0.128311 0.0429434 Vertex 17308 -0.0844768 0.0856095 0.0274708 Vertex 17309 -0.0836962 0.138005 0.0462469 Vertex 17310 -0.0905223 0.128294 0.0420009 Vertex 17311 -0.0628998 0.1209 -0.00884208 Vertex 17312 -0.090924 0.128274 0.0409748 Vertex 17313 -0.0275566 0.0890776 0.0469337 Vertex 17314 -0.0872471 0.125707 0.0473263 Vertex 17315 -0.0273351 0.0750142 0.0443436 Vertex 17316 -0.0837001 0.104608 0.0275279 Vertex 17317 -0.0809833 0.080323 0.0311985 Vertex 17318 -0.083931 0.103265 0.0277985 Vertex 17319 -0.086661 0.123026 0.0482846 Vertex 17320 -0.019761 0.0984382 0.0445534 Vertex 17321 -0.0200463 0.0893341 0.0549931 Vertex 17322 -0.07603 0.0941366 0.0385416 Vertex 17323 -0.0136098 0.0997657 0.0454373 Vertex 17324 -0.0793587 0.143462 0.044583 Vertex 17325 -0.0849411 0.14333 0.0402714 Vertex 17326 -0.0856354 0.143297 0.0395519 Vertex 17327 -0.0778945 0.102117 0.0345146 Vertex 17328 -0.0879353 0.140547 0.0390784 Vertex 17329 -0.0873971 0.140576 0.0399568 Vertex 17330 -0.0825276 0.142074 0.0435561 Vertex 17331 -0.0245149 0.0811097 0.0540325 Vertex 17332 -0.0754652 0.163196 -0.0162299 Vertex 17333 -0.0845393 0.103233 0.0269979 Vertex 17334 -0.0249633 0.0931679 0.047071 Vertex 17335 -0.0237883 0.0932085 0.0487292 Vertex 17336 -0.0762259 0.0790445 0.0349679 Vertex 17337 -0.0669072 0.0448192 0.00702222 Vertex 17338 -0.0662928 0.044787 0.00771957 Vertex 17339 -0.065503 0.044849 0.00843715 Vertex 17340 -0.0647841 0.0448471 0.00913709 Vertex 17341 -0.063925 0.0448804 0.0097039 Vertex 17342 -0.0632063 0.0448721 0.0103941 Vertex 17343 -0.0623204 0.0448503 0.0109236 Vertex 17344 -0.0615188 0.0448284 0.0115308 Vertex 17345 -0.0606371 0.0448145 0.012064 Vertex 17346 -0.0597659 0.0448149 0.0126042 Vertex 17347 -0.0589723 0.0448133 0.0132235 Vertex 17348 -0.0580951 0.0448084 0.0137644 Vertex 17349 -0.0572927 0.0447946 0.0143752 Vertex 17350 -0.0563559 0.0448266 0.0148606 Vertex 17351 -0.0555501 0.0448059 0.0154665 Vertex 17352 -0.0877284 0.0950339 0.0247524 Vertex 17353 -0.088473 0.0908539 0.022804 Vertex 17354 -0.0845844 0.121705 0.0490448 Vertex 17355 0.0141421 0.107244 -0.018655 Vertex 17356 -0.0132802 0.102485 0.0435875 Vertex 17357 -0.084936 0.144668 0.0388142 Vertex 17358 -0.0261116 0.0809919 0.0513952 Vertex 17359 -0.0497662 0.165331 0.00186024 Vertex 17360 -0.0882731 0.143189 0.0351319 Vertex 17361 -0.0889127 0.145822 0.0300758 Vertex 17362 -0.020719 0.0739658 0.0533053 Vertex 17363 -0.05996 0.047085 0.0381143 Vertex 17364 -0.0593516 0.0471429 0.038917 Vertex 17365 -0.0586519 0.047167 0.0396282 Vertex 17366 -0.0577811 0.0472143 0.0403119 Vertex 17367 -0.0569108 0.0471914 0.0407265 Vertex 17368 -0.0797368 0.119028 0.049952 Vertex 17369 -0.0707047 0.079127 0.0393559 Vertex 17370 -0.082233 0.0925905 0.0320729 Vertex 17371 -0.0217816 0.0797281 0.0555871 Vertex 17372 -0.026741 0.0877745 0.0490115 Vertex 17373 -0.0818378 0.131303 0.0516681 Vertex 17374 -0.0812551 0.138069 0.0480599 Vertex 17375 -0.0235246 0.079724 0.0545007 Vertex 17376 -0.080224 0.0913049 0.0343483 Vertex 17377 -0.0688943 0.103764 -0.0141878 Vertex 17378 -0.0378236 0.0914714 -0.0236656 Vertex 17379 -0.0769529 0.128149 -0.00749249 Vertex 17380 -0.0367892 0.0459324 0.0404864 Vertex 17381 -0.0361107 0.0459963 0.0412564 Vertex 17382 -0.0356524 0.0460406 0.0421919 Vertex 17383 -0.0351155 0.0460859 0.0430647 Vertex 17384 -0.0345091 0.0461323 0.043875 Vertex 17385 -0.033807 0.0461583 0.044586 Vertex 17386 -0.0329093 0.0461288 0.0451027 Vertex 17387 -0.0321732 0.0461161 0.0457813 Vertex 17388 -0.0315694 0.0461612 0.0465874 Vertex 17389 -0.0309109 0.0462432 0.0473418 Vertex 17390 -0.0303409 0.0462461 0.0481864 Vertex 17391 -0.0295864 0.0462965 0.0488628 Vertex 17392 -0.0883724 0.121658 0.047175 Vertex 17393 -0.0853661 0.0910995 0.0281927 Vertex 17394 -0.0287719 0.0876257 0.045371 Vertex 17395 -0.0889908 0.13778 0.0388031 Vertex 17396 -0.0870569 0.137884 0.0425258 Vertex 17397 -0.0864551 0.137921 0.0433346 Vertex 17398 -0.0851812 0.137956 0.0449006 Vertex 17399 -0.0843022 0.0938821 0.0298739 Vertex 17400 -0.0736592 0.0887741 0.0405778 Vertex 17401 -0.0869535 0.131154 0.0468504 Vertex 17402 -0.0809296 0.0885877 0.0337432 Vertex 17403 -0.028101 0.0890412 0.0460663 Vertex 17404 -0.0880158 0.125695 0.0466833 Vertex 17405 -0.0772906 0.165906 -0.0257637 Vertex 17406 -0.0762092 0.103511 0.0356214 Vertex 17407 -0.0761461 0.154973 -0.00265921 Vertex 17408 -0.0700245 0.0833021 0.0413654 Vertex 17409 -0.08561 0.123026 0.0486561 Vertex 17410 -0.0909607 0.144377 0.0265412 Vertex 17411 -0.0278525 0.0807805 0.0474761 Vertex 17412 -0.0836745 0.0939124 0.0306595 Vertex 17413 -0.0837871 0.0829476 0.0282971 Vertex 17414 -0.069719 0.0887582 0.0422978 Vertex 17415 -0.0875561 0.121673 0.0477803 Vertex 17416 -0.0772797 0.157576 -0.0127941 Vertex 17417 -0.0840048 0.140674 0.0436515 Vertex 17418 -0.0811078 0.0831466 0.0326628 Vertex 17419 -0.0833667 0.142023 0.0429747 Vertex 17420 -0.0855834 0.141979 0.0409477 Vertex 17421 -0.0917743 0.120197 0.0434965 Vertex 17422 -0.0766191 0.168746 -0.0293719 Vertex 17423 -0.0218765 0.0933131 0.0510401 Vertex 17424 -0.0794782 0.106106 0.0317497 Vertex 17425 -0.0845781 0.148672 0.0341151 Vertex 17426 -0.071812 0.0879125 -0.0161091 Vertex 17427 -0.0256593 0.0810401 0.0523557 Vertex 17428 -0.0867316 0.100467 0.0250232 Vertex 17429 -0.0829153 0.0925695 0.0313446 Vertex 17430 -0.0627188 0.046051 0.00845692 Vertex 17431 -0.0618482 0.0460583 0.00900481 Vertex 17432 -0.0610521 0.0460525 0.00962048 Vertex 17433 -0.0601827 0.0460596 0.0101722 Vertex 17434 -0.0593004 0.0460479 0.0107053 Vertex 17435 -0.058583 0.0460291 0.0113967 Vertex 17436 -0.0577944 0.0460393 0.0120187 Vertex 17437 -0.0569361 0.046073 0.0125834 Vertex 17438 -0.0561408 0.0460708 0.0131999 Vertex 17439 -0.0553504 0.0460785 0.0138247 Vertex 17440 -0.054558 0.0460859 0.0144477 Vertex 17441 -0.0537709 0.0460941 0.0150722 Vertex 17442 -0.0529962 0.0461208 0.0157076 Vertex 17443 -0.0224637 0.0768447 0.053535 Vertex 17444 -0.0837712 0.127162 0.0508887 Vertex 17445 -0.0771842 0.102138 0.0352151 Vertex 17446 -0.0167795 0.0984818 0.0458118 Vertex 17447 -0.0206549 0.0768238 0.0545752 Vertex 17448 -0.0872718 0.144583 0.0355002 Vertex 17449 -0.0754593 0.159053 -0.00907047 Vertex 17450 -0.0885031 0.148521 0.0281728 Vertex 17451 -0.0572715 0.0482006 0.0365817 Vertex 17452 -0.0566239 0.0482507 0.0375737 Vertex 17453 -0.0549519 0.160962 0.00433648 Vertex 17454 -0.0267061 0.0765373 0.0464972 Vertex 17455 -0.0855601 0.095177 0.0282718 Vertex 17456 -0.0785455 0.146115 0.0422588 Vertex 17457 -0.026667 0.0823364 0.0504973 Vertex 17458 -0.0871856 0.0923586 0.0257303 Vertex 17459 -0.0809274 0.12805 -0.00535084 Vertex 17460 -0.0718433 0.0833097 0.0403454 Vertex 17461 -0.0776757 0.0873848 0.0375611 Vertex 17462 -0.0809192 0.0899278 0.0336764 Vertex 17463 -0.0142597 0.180104 -0.0279187 Vertex 17464 -0.0265532 0.080945 0.0504296 Vertex 17465 -0.0849859 0.149949 0.0316738 Vertex 17466 -0.0886736 0.132413 0.0428724 Vertex 17467 -0.0354292 0.0472715 0.0405203 Vertex 17468 -0.0348248 0.0473223 0.0413292 Vertex 17469 -0.0342911 0.0473692 0.0421968 Vertex 17470 -0.0336818 0.0474202 0.0430149 Vertex 17471 -0.0330184 0.0474571 0.0438647 Vertex 17472 -0.0321779 0.0474216 0.0442941 Vertex 17473 -0.0311974 0.0474073 0.0447828 Vertex 17474 -0.0305219 0.0474445 0.0454913 Vertex 17475 -0.0298888 0.0474725 0.0462905 Vertex 17476 -0.0293538 0.0475081 0.0471486 Vertex 17477 -0.0287365 0.0475545 0.0479663 Vertex 17478 -0.0757024 0.160453 -0.0116926 Vertex 17479 -0.0221614 0.0825281 0.0558751 Vertex 17480 -0.0773495 0.081875 0.035997 Vertex 17481 -0.0898842 0.145774 0.0282412 Vertex 17482 -0.0911968 0.145718 0.0253129 Vertex 17483 -0.0921823 0.117455 0.0412015 Vertex 17484 -0.0857415 0.120359 0.048887 Vertex 17485 -0.0834209 0.0911774 0.0304851 Vertex 17486 -0.076548 0.0954614 0.0376104 Vertex 17487 -0.0891389 0.120288 0.0465529 Vertex 17488 -0.0511762 0.163872 0.00329038 Vertex 17489 -0.089509 0.125659 0.045333 Vertex 17490 -0.0225206 0.0919822 0.0517607 Vertex 17491 -0.0201048 0.0920391 0.0535514 Vertex 17492 -0.0750002 0.0776536 0.0352037 Vertex 17493 -0.026159 0.0918036 0.0468933 Vertex 17494 -0.027467 0.0793682 0.0471485 Vertex 17495 -0.0844811 0.123027 0.0489478 Vertex 17496 -0.0912584 0.116106 0.0417079 Vertex 17497 -0.0780066 0.0940671 0.0362827 Vertex 17498 -0.0845462 0.119028 0.0490922 Vertex 17499 -0.0819087 0.121685 0.0492514 Vertex 17500 -0.0272221 0.0904382 0.0465675 Vertex 17501 -0.0466082 0.166842 0.00289141 Vertex 17502 -0.0803828 0.11899 0.049226 Vertex 17503 -0.0841614 0.142011 0.042356 Vertex 17504 -0.0848818 0.142006 0.0416598 Vertex 17505 -0.0709378 0.0995366 0.0403447 Vertex 17506 -0.0770729 0.168746 -0.0303374 Vertex 17507 -0.077497 0.168713 -0.0313178 Vertex 17508 -0.0225677 0.0932815 0.0503229 Vertex 17509 -0.0230795 0.0932192 0.0494322 Vertex 17510 -0.047409 0.166836 0.00227952 Vertex 17511 -0.0271292 0.0850573 0.0494379 Vertex 17512 -0.0818597 0.146076 0.0399402 Vertex 17513 -0.0267099 0.0794912 0.0492298 Vertex 17514 -0.0238639 0.0825121 0.0547585 Vertex 17515 -0.087202 0.10043 0.0240701 Vertex 17516 -0.080258 0.0859229 0.0345477 Vertex 17517 -0.0601559 0.0472008 0.00728305 Vertex 17518 -0.0593991 0.0472653 0.0079341 Vertex 17519 -0.0586915 0.0472669 0.00864036 Vertex 17520 -0.0580451 0.047259 0.00941407 Vertex 17521 -0.0573375 0.0472769 0.0101218 Vertex 17522 -0.0566658 0.0473318 0.0108617 Vertex 17523 -0.0559525 0.0473442 0.0115659 Vertex 17524 -0.0552963 0.0473377 0.0123212 Vertex 17525 -0.0545075 0.047347 0.012948 Vertex 17526 -0.0537303 0.0473713 0.0135851 Vertex 17527 -0.053021 0.0473885 0.0142865 Vertex 17528 -0.0523202 0.0474101 0.0149978 Vertex 17529 -0.051625 0.0474378 0.0157122 Vertex 17530 -0.0773599 0.0940895 0.0370488 Vertex 17531 -0.0249679 0.0851951 0.0529639 Vertex 17532 -0.077268 0.161738 -0.0185704 Vertex 17533 -0.027609 0.0850124 0.048532 Vertex 17534 -0.0911524 0.122908 0.0442317 Vertex 17535 -0.0765838 0.178662 -0.0494737 Vertex 17536 -0.0856485 0.103181 0.0252723 Vertex 17537 -0.0675365 0.0805511 0.0417814 Vertex 17538 -0.0931203 0.121503 0.0403997 Vertex 17539 -0.0866978 0.12169 0.0483599 Vertex 17540 -0.0917675 0.126924 0.040336 Vertex 17541 -0.0238697 0.104438 -0.0232028 Vertex 17542 -0.08387 0.148679 0.0348187 Vertex 17543 -0.0886426 0.129716 0.0443401 Vertex 17544 -0.077144 0.164539 -0.0230622 Vertex 17545 -0.0266136 0.0837142 0.0504396 Vertex 17546 -0.0824187 0.100645 0.0306028 Vertex 17547 -0.0887758 0.149859 0.0255696 Vertex 17548 -0.0861982 0.144641 0.0372484 Vertex 17549 -0.0725037 0.079155 0.0383043 Vertex 17550 -0.0834639 0.0815548 0.0279962 Vertex 17551 -0.067181 0.156627 -0.0534662 Vertex 17552 -0.0262017 0.0878115 0.0498853 Vertex 17553 -0.0877683 0.149882 0.0273982 Vertex 17554 -0.0855482 0.149965 0.0308161 Vertex 17555 -0.0805487 0.0789662 0.0306236 Vertex 17556 -0.0345924 0.0485568 0.0396695 Vertex 17557 -0.0339683 0.0485791 0.0404406 Vertex 17558 -0.0334269 0.0486094 0.0413091 Vertex 17559 -0.0328931 0.0486572 0.0421875 Vertex 17560 -0.0321962 0.0487152 0.0429222 Vertex 17561 -0.0313311 0.0487062 0.0434625 Vertex 17562 -0.0303696 0.0486908 0.0439216 Vertex 17563 -0.0296434 0.0486725 0.0446006 Vertex 17564 -0.0289488 0.0487095 0.0453204 Vertex 17565 -0.0284243 0.0487716 0.0462084 Vertex 17566 -0.0278604 0.0487672 0.0470543 Vertex 17567 -0.0249111 0.0958255 0.0441185 Vertex 17568 -0.0871853 0.145927 0.0339699 Vertex 17569 -0.0880483 0.145895 0.0319999 Vertex 17570 -0.0759222 0.159085 -0.0100036 Vertex 17571 -0.0895075 0.148492 0.0263454 Vertex 17572 -0.0679477 0.0860672 0.0434473 Vertex 17573 -0.0826266 0.146034 0.0392943 Vertex 17574 -0.0745303 0.0887706 0.0400356 Vertex 17575 -0.0824089 0.107319 0.0275588 Vertex 17576 -0.0270125 0.0891105 0.0478066 Vertex 17577 -0.0865771 0.124349 0.048115 Vertex 17578 -0.0901249 0.125637 0.04453 Vertex 17579 -0.0261702 0.0823861 0.0514348 Vertex 17580 -0.0767393 0.157602 -0.0105393 Vertex 17581 -0.0915748 0.124221 0.0431828 Vertex 17582 -0.0287388 0.076371 0.0428795 Vertex 17583 -0.0791947 0.116328 0.04948 Vertex 17584 -0.0821235 0.0802564 0.0295192 Vertex 17585 -0.0835031 0.123045 0.0493423 Vertex 17586 -0.0795112 0.081834 0.0339273 Vertex 17587 -0.0258992 0.0891655 0.049535 Vertex 17588 -0.0802229 0.143442 0.044034 Vertex 17589 -0.086226 0.143316 0.0387173 Vertex 17590 -0.00287417 0.10736 -0.0221559 Vertex 17591 -0.0239591 0.0958294 0.044594 Vertex 17592 -0.0857815 0.0897033 0.0272482 Vertex 17593 -0.0256832 0.0878506 0.050771 Vertex 17594 -0.0781568 0.167257 -0.0305864 Vertex 17595 -0.0802983 0.0953773 0.0342868 Vertex 17596 -0.0282394 0.087664 0.0462444 Vertex 17597 -0.0856054 0.119006 0.0487694 Vertex 17598 -0.0897192 0.129664 0.0425949 Vertex 17599 -0.023162 0.0958328 0.0451924 Vertex 17600 -0.0211646 0.0933284 0.0517404 Vertex 17601 -0.087746 0.09368 0.0248353 Vertex 17602 -0.0220478 0.0811409 0.0558034 Vertex 17603 -0.0875676 0.129767 0.0460862 Vertex 17604 -0.0794062 0.147442 0.0402641 Vertex 17605 -0.0768211 0.0804727 0.0355147 Vertex 17606 -0.0729344 0.0901459 0.0411907 Vertex 17607 -0.0815038 0.0885533 0.0328994 Vertex 17608 -0.0577664 0.0485104 0.00767417 Vertex 17609 -0.057208 0.048538 0.00854022 Vertex 17610 -0.0566778 0.0485827 0.00942267 Vertex 17611 -0.0560757 0.0486306 0.0102324 Vertex 17612 -0.0553809 0.0486564 0.0109541 Vertex 17613 -0.0546819 0.0486825 0.0116705 Vertex 17614 -0.0539465 0.0486826 0.012352 Vertex 17615 -0.0531749 0.0487012 0.0129919 Vertex 17616 -0.0524373 0.0487028 0.0136696 Vertex 17617 -0.0517432 0.0487299 0.0143843 Vertex 17618 -0.051128 0.0487627 0.0151791 Vertex 17619 -0.0480905 0.156132 -0.00685995 Vertex 17620 -0.0568093 0.0883611 -0.0215879 Vertex 17621 -0.0736443 0.148637 -0.0247496 Vertex 17622 -0.0273471 0.0735222 0.0429845 Vertex 17623 -0.0241255 0.089259 0.0519927 Vertex 17624 -0.0849611 0.0883696 0.0278927 Vertex 17625 -0.0808978 0.121685 0.0496566 Vertex 17626 -0.0212083 0.0825271 0.0563448 Vertex 17627 -0.0802772 0.089954 0.0344521 Vertex 17628 -0.047089 0.156143 -0.00736831 Vertex 17629 -0.0519433 0.0503866 0.0326949 Vertex 17630 -0.0514926 0.0503999 0.033682 Vertex 17631 -0.050991 0.0504175 0.03464 Vertex 17632 -0.050433 0.0505709 0.0355945 Vertex 17633 -0.0223808 0.0958588 0.045836 Vertex 17634 -0.0810826 0.144759 0.0420272 Vertex 17635 -0.0243507 0.0852386 0.0537426 Vertex 17636 -0.0485449 0.165375 0.00344343 Vertex 17637 -0.0338218 0.0886934 -0.0246941 Vertex 17638 -0.0873724 0.124348 0.0475064 Vertex 17639 -0.0609926 0.128204 -0.00783795 Vertex 17640 -0.082117 0.127195 0.0520765 Vertex 17641 -0.0683312 0.0833327 0.042485 Vertex 17642 -0.0875821 0.0909427 0.0247332 Vertex 17643 -0.0736943 0.094184 0.0404336 Vertex 17644 -0.0575 0.0589785 0.0215704 Vertex 17645 -0.0338319 0.0498039 0.0388148 Vertex 17646 -0.0331161 0.0498057 0.0395103 Vertex 17647 -0.0324996 0.0498708 0.0403614 Vertex 17648 -0.0318101 0.0499111 0.0410759 Vertex 17649 -0.0311873 0.0499402 0.0418672 Vertex 17650 -0.0304078 0.0499703 0.0425042 Vertex 17651 -0.0296061 0.0499557 0.0431146 Vertex 17652 -0.0288967 0.0499669 0.0438168 Vertex 17653 -0.028183 0.0499752 0.0445203 Vertex 17654 -0.0273899 0.0499801 0.045145 Vertex 17655 -0.0577034 0.0591273 0.0216745 Vertex 17656 -0.0740248 0.149858 -0.0328754 Vertex 17657 -0.0866528 0.145956 0.0348405 Vertex 17658 -0.0747436 0.0846695 0.0389578 Vertex 17659 -0.0868827 0.0896245 0.0255163 Vertex 17660 -0.0814751 0.118981 0.0489466 Vertex 17661 -0.0721093 0.0846859 0.0405598 Vertex 17662 -0.084567 0.0897523 0.028848 Vertex 17663 -0.0833313 0.0829966 0.0292517 Vertex 17664 -0.0452548 0.169651 -0.00135352 Vertex 17665 -0.0843581 0.0883713 0.0286614 Vertex 17666 -0.0253323 0.089221 0.0503626 Vertex 17667 -0.0865291 0.125714 0.0480303 Vertex 17668 -0.0887934 0.125677 0.0460403 Vertex 17669 -0.0886031 0.143176 0.0340326 Vertex 17670 -0.089865 0.120262 0.0458544 Vertex 17671 -0.0260624 0.0837492 0.0512652 Vertex 17672 -0.0217907 0.0957944 0.0466571 Vertex 17673 -0.0784161 0.116342 0.0501163 Vertex 17674 -0.0800863 0.148726 0.0380799 Vertex 17675 -0.0826166 0.123078 0.0498508 Vertex 17676 -0.0788159 0.0818529 0.0346403 Vertex 17677 -0.027107 0.082291 0.0495314 Vertex 17678 -0.0810659 0.143393 0.0434586 Vertex 17679 -0.086895 0.143263 0.0379805 Vertex 17680 -0.0888985 0.128369 0.0446279 Vertex 17681 -0.0853621 0.135278 0.0465646 Vertex 17682 -0.0911594 0.120221 0.0443019 Vertex 17683 -0.086688 0.0937529 0.026595 Vertex 17684 -0.0214041 0.0879871 0.0549671 Vertex 17685 -0.0244219 0.0752703 0.0498831 Vertex 17686 -0.0210295 0.0958616 0.0473023 Vertex 17687 -0.0774755 0.170095 -0.0341987 Vertex 17688 -0.0860758 0.0924352 0.0274562 Vertex 17689 -0.0870669 0.0909973 0.0256595 Vertex 17690 -0.0769239 0.160393 -0.0146649 Vertex 17691 -0.0791963 0.120405 0.0507691 Vertex 17692 -0.0847946 0.140657 0.0430258 Vertex 17693 -0.0266475 0.0904555 0.0474235 Vertex 17694 -0.0737533 0.0901294 0.040627 Vertex 17695 -0.074576 0.0901236 0.0400162 Vertex 17696 -0.0425095 0.171123 -0.00130836 Vertex 17697 -0.0275965 0.0836272 0.048557 Vertex 17698 -0.0572172 0.0498044 0.00711465 Vertex 17699 -0.0567938 0.0498747 0.00808849 Vertex 17700 -0.0562843 0.049932 0.00898241 Vertex 17701 -0.0556769 0.0499718 0.00979142 Vertex 17702 -0.0549752 0.0499938 0.0105067 Vertex 17703 -0.0543247 0.0500125 0.0112758 Vertex 17704 -0.053617 0.0500325 0.0119809 Vertex 17705 -0.0528487 0.0500508 0.0126245 Vertex 17706 -0.0521211 0.0500618 0.0133132 Vertex 17707 -0.0514248 0.0500855 0.0140283 Vertex 17708 -0.0508177 0.0501221 0.014822 Vertex 17709 -0.0886456 0.0935942 0.0229142 Vertex 17710 -0.0894525 0.128349 0.0437622 Vertex 17711 -0.0810165 0.134048 0.0507919 Vertex 17712 -0.0881693 0.0922771 0.0238938 Vertex 17713 -0.014868 0.104453 -0.022832 Vertex 17714 -0.0865727 0.08823 0.0252282 Vertex 17715 -0.0860797 0.0882889 0.0261675 Vertex 17716 -0.0732571 0.0860546 0.040246 Vertex 17717 -0.072371 0.0860632 0.0407672 Vertex 17718 -0.0513689 0.0516822 0.0322144 Vertex 17719 -0.0509112 0.0517382 0.0331779 Vertex 17720 -0.05033 0.0517928 0.0340061 Vertex 17721 -0.0497796 0.0518319 0.0348836 Vertex 17722 -0.0205289 0.0958269 0.048234 Vertex 17723 -0.0199274 0.0958752 0.0490354 Vertex 17724 -0.0192371 0.0959207 0.0497533 Vertex 17725 -0.0184702 0.0959697 0.0503933 Vertex 17726 -0.0177679 0.0959988 0.0511065 Vertex 17727 -0.0815821 0.0803018 0.0303913 Vertex 17728 -0.0668801 0.103821 -0.0153002 Vertex 17729 -0.0810791 0.117571 0.0486733 Vertex 17730 -0.0802626 0.147413 0.0397079 Vertex 17731 -0.0926613 0.122825 0.0414622 Vertex 17732 -0.0922534 0.122854 0.0424865 Vertex 17733 -0.0744952 0.0941746 0.0398302 Vertex 17734 -0.0168224 0.0960286 0.0515795 Vertex 17735 -0.0160134 0.0959893 0.0521651 Vertex 17736 -0.0318715 0.0510682 0.0382665 Vertex 17737 -0.0312407 0.0510927 0.0390643 Vertex 17738 -0.0306139 0.051126 0.0398517 Vertex 17739 -0.0298413 0.0511486 0.0404908 Vertex 17740 -0.029049 0.0511502 0.0411139 Vertex 17741 -0.0280876 0.0511424 0.0415727 Vertex 17742 -0.0269495 0.0511315 0.0418642 Vertex 17743 -0.0782251 0.104799 0.0333593 Vertex 17744 -0.0495337 0.163976 0.00447865 Vertex 17745 -0.0802651 0.0940224 0.034298 Vertex 17746 -0.0848442 0.146005 0.0372765 Vertex 17747 -0.0876525 0.145908 0.0330215 Vertex 17748 -0.0884617 0.14585 0.0310303 Vertex 17749 -0.0903673 0.145762 0.0273033 Vertex 17750 -0.0856388 0.100529 0.0267624 Vertex 17751 -0.0248685 0.10443 -0.0231858 Vertex 17752 -0.0288186 0.0862428 0.0454609 Vertex 17753 -0.0828513 0.138047 0.046826 Vertex 17754 -0.0820555 0.138062 0.0474469 Vertex 17755 -0.077013 0.157587 -0.0116646 Vertex 17756 -0.0234514 0.0892984 0.0527307 Vertex 17757 -0.0837947 0.100615 0.0291484 Vertex 17758 -0.0865918 0.127084 0.0480364 Vertex 17759 -0.0912006 0.121567 0.0443209 Vertex 17760 -0.0783855 0.0873596 0.0368663 Vertex 17761 -0.0830674 0.136771 -0.000769185 Vertex 17762 -0.0853072 0.129862 0.0494994 Vertex 17763 -0.0236685 0.0919017 0.0500491 Vertex 17764 -0.0737584 0.0914853 0.0405847 Vertex 17765 -0.0812985 0.084505 0.0328118 Vertex 17766 -0.0818632 0.143391 0.0428465 Vertex 17767 -0.0802896 0.144766 0.0426469 Vertex 17768 -0.0727381 0.151148 -0.0398146 Vertex 17769 -0.0902062 0.143054 0.0286714 Vertex 17770 -0.0809888 0.100705 0.031995 Vertex 17771 -0.0862834 0.141953 0.0402325 Vertex 17772 -0.0773948 0.167309 -0.02854 Vertex 17773 -0.0472223 0.168222 -0.000777409 Vertex 17774 -0.0753424 0.0928083 0.039305 Vertex 17775 -0.0746115 0.103538 0.0368408 Vertex 17776 -0.0746007 0.0914774 0.0400082 Vertex 17777 -0.0889887 0.147168 0.0287003 Vertex 17778 -0.0872644 0.139206 0.0412952 Vertex 17779 -0.0896207 0.132365 0.0409732 Vertex 17780 -0.0785671 0.172906 -0.0416992 Vertex 17781 -0.0771653 0.156191 -0.0114635 Vertex 17782 -0.0871097 0.129792 0.0470428 Vertex 17783 -0.0825182 0.0816676 0.0298907 Vertex 17784 -0.0241038 0.0865955 0.0534593 Vertex 17785 -0.0226623 0.0866242 0.0548392 Vertex 17786 -0.0361034 0.165201 -0.01444 Vertex 17787 -0.0798966 0.083235 0.0342815 Vertex 17788 -0.0814721 0.135361 0.0497671 Vertex 17789 -0.088108 0.129743 0.0452172 Vertex 17790 -0.0565129 0.051223 0.00779351 Vertex 17791 -0.0560291 0.051292 0.00869383 Vertex 17792 -0.0554104 0.0513256 0.00948897 Vertex 17793 -0.0547684 0.0513541 0.0102674 Vertex 17794 -0.0540202 0.0513732 0.0109294 Vertex 17795 -0.0533816 0.0513995 0.0117052 Vertex 17796 -0.0526765 0.0514226 0.0124143 Vertex 17797 -0.0519687 0.0514416 0.0131188 Vertex 17798 -0.0513196 0.0514695 0.0138904 Vertex 17799 -0.0506409 0.0514954 0.0146147 Vertex 17800 -0.050104 0.0515366 0.0156131 Vertex 17801 -0.019145 0.0893155 0.0554734 Vertex 17802 -0.0867977 0.144597 0.036443 Vertex 17803 -0.080296 0.0886098 0.0345053 Vertex 17804 -0.0402074 0.168164 -0.0113973 Vertex 17805 -0.0883046 0.122998 0.0470686 Vertex 17806 -0.0677324 0.0847093 0.0432514 Vertex 17807 -0.0686258 0.0846974 0.0427491 Vertex 17808 -0.0694924 0.0846972 0.0421957 Vertex 17809 -0.051108 0.0530218 0.0319282 Vertex 17810 -0.0506321 0.0530807 0.0328365 Vertex 17811 -0.0500875 0.0531258 0.0337221 Vertex 17812 -0.049486 0.0531643 0.034537 Vertex 17813 -0.0489043 0.0531988 0.0353928 Vertex 17814 -0.0877434 0.135138 0.0431967 Vertex 17815 -0.027194 0.0764697 0.0455544 Vertex 17816 -0.0458049 0.0532278 0.0379952 Vertex 17817 -0.0866727 0.139248 0.0421058 Vertex 17818 -0.0822864 0.135367 0.0491747 Vertex 17819 -0.0368227 0.0914861 -0.023804 Vertex 17820 -0.0890009 0.118943 0.0464523 Vertex 17821 -0.0897172 0.118919 0.0457459 Vertex 17822 -0.0920915 0.118829 0.0424602 Vertex 17823 -0.09254 0.118824 0.0413658 Vertex 17824 -0.0808743 0.136754 0.0491531 Vertex 17825 -0.0823735 0.148711 0.0361489 Vertex 17826 -0.0308715 0.0522855 0.0371048 Vertex 17827 -0.0296361 0.0522471 0.0373693 Vertex 17828 -0.0285281 0.0522637 0.0377683 Vertex 17829 -0.0276636 0.0522618 0.0383069 Vertex 17830 -0.0267998 0.0522633 0.0388472 Vertex 17831 -0.0260899 0.0522789 0.0395517 Vertex 17832 -0.0782715 0.168666 -0.0333616 Vertex 17833 -0.0729482 0.0914984 0.0411605 Vertex 17834 -0.0766837 0.0941158 0.0377884 Vertex 17835 -0.0209524 0.0920017 0.0529687 Vertex 17836 -0.0847679 0.10454 0.0257763 Vertex 17837 -0.082659 0.0871422 0.0312687 Vertex 17838 -0.0277494 0.0764615 0.044728 Vertex 17839 -0.0883766 0.141855 0.0366703 Vertex 17840 -0.0905557 0.120241 0.0451196 Vertex 17841 -0.0270064 0.0808968 0.0494715 Vertex 17842 -0.0818245 0.107456 0.0283887 Vertex 17843 -0.014359 0.102532 0.0433738 Vertex 17844 -0.0254372 0.0796492 0.0521904 Vertex 17845 -0.0819254 0.12582 0.0519232 Vertex 17846 -0.0827882 0.125806 0.051363 Vertex 17847 -0.0716366 0.0874136 0.0414306 Vertex 17848 -0.0790974 0.103427 0.0328545 Vertex 17849 -0.0805064 0.103384 0.0314383 Vertex 17850 -0.0790371 0.0873264 0.0361062 Vertex 17851 -0.0910251 0.124245 0.0440568 Vertex 17852 -0.0689412 0.079144 0.0404114 Vertex 17853 -0.0912832 0.125583 0.0428488 Vertex 17854 -0.0892074 0.127019 0.0449806 Vertex 17855 -0.091259 0.117481 0.0430647 Vertex 17856 -0.0659073 0.110934 -0.0126703 Vertex 17857 0.0101829 0.0893384 -0.0312282 Vertex 17858 -0.0873895 0.143261 0.0370491 Vertex 17859 -0.0776054 0.0804635 0.0348861 Vertex 17860 -0.0786774 0.168631 -0.0343418 Vertex 17861 -0.0906238 0.143032 0.0276653 Vertex 17862 -0.0251464 0.0824617 0.0532115 Vertex 17863 -0.0267799 0.0893467 -0.0340353 Vertex 17864 -0.0467828 0.168244 0.000200438 Vertex 17865 -0.0779669 0.165862 -0.0278956 Vertex 17866 -0.0800641 0.107437 0.0308747 Vertex 17867 -0.0907644 0.142021 0.0271708 Vertex 17868 -0.0808858 0.0872378 0.0337267 Vertex 17869 -0.0900228 0.148451 0.0254546 Vertex 17870 -0.0843383 0.133967 0.0484219 Vertex 17871 -0.0761205 0.0927947 0.038671 Vertex 17872 -0.0284346 0.0849121 0.0465284 Vertex 17873 -0.0779458 0.175786 -0.0452228 Vertex 17874 -0.0272404 0.0877435 0.0480762 Vertex 17875 -0.0247603 0.0865587 0.0527086 Vertex 17876 -0.0280294 0.0835807 0.0475884 Vertex 17877 -0.0788492 0.100759 0.0340965 Vertex 17878 -0.0879532 0.117604 0.0468721 Vertex 17879 -0.081698 0.0939818 0.0329068 Vertex 17880 -0.0852266 0.0854944 0.0253873 Vertex 17881 -0.0830725 0.139367 0.045586 Vertex 17882 -0.0558236 0.0526652 0.00846948 Vertex 17883 -0.0552284 0.0527023 0.00927604 Vertex 17884 -0.0546238 0.0527377 0.0100793 Vertex 17885 -0.0539349 0.0527611 0.0108042 Vertex 17886 -0.0532861 0.0527919 0.0115704 Vertex 17887 -0.0525855 0.0528134 0.0122839 Vertex 17888 -0.051888 0.0528335 0.0130005 Vertex 17889 -0.0512535 0.0528689 0.0137817 Vertex 17890 -0.0505797 0.0528906 0.0145102 Vertex 17891 -0.0500211 0.0529295 0.0155558 Vertex 17892 -0.0874477 0.148578 0.0299355 Vertex 17893 -0.0786972 0.0940445 0.0355566 Vertex 17894 -0.0832791 0.0884633 0.0304387 Vertex 17895 -0.0775111 0.0860271 0.0374369 Vertex 17896 -0.0871595 0.128427 0.0471391 Vertex 17897 -0.0864194 0.133874 0.0462429 Vertex 17898 -0.0728513 0.077742 0.0372898 Vertex 17899 -0.0756877 0.15767 -0.00739081 Vertex 17900 -0.0509412 0.0543847 0.0317288 Vertex 17901 -0.050518 0.054445 0.0327051 Vertex 17902 -0.0499825 0.0544896 0.033589 Vertex 17903 -0.0494012 0.054529 0.0344155 Vertex 17904 -0.0487872 0.0545643 0.0352206 Vertex 17905 -0.0481437 0.0545922 0.0360102 Vertex 17906 -0.0474886 0.05462 0.0367747 Vertex 17907 -0.0467288 0.054632 0.0374442 Vertex 17908 -0.0459023 0.0546326 0.0380387 Vertex 17909 -0.0450103 0.054631 0.0385549 Vertex 17910 -0.0781434 0.0927222 0.0364655 Vertex 17911 -0.0759273 0.08606 0.0386654 Vertex 17912 -0.0903951 0.118903 0.0450094 Vertex 17913 -0.0480871 0.166778 0.00155196 Vertex 17914 -0.0831336 0.135327 0.0485953 Vertex 17915 -0.0860496 0.128472 0.048867 Vertex 17916 -0.0819634 0.103331 0.0300688 Vertex 17917 -0.0794921 0.146102 0.0417961 Vertex 17918 -0.0238593 0.0838986 0.0547079 Vertex 17919 -0.028646 0.0535523 0.0364431 Vertex 17920 -0.0278445 0.0535534 0.0370258 Vertex 17921 -0.0270646 0.053566 0.0376661 Vertex 17922 -0.0264336 0.0535943 0.0384453 Vertex 17923 -0.02575 0.0536249 0.0391706 Vertex 17924 -0.0251991 0.0536651 0.0400375 Vertex 17925 -0.0247513 0.0944605 0.0453863 Vertex 17926 -0.0240199 0.0537379 0.0416895 Vertex 17927 -0.0241215 0.0944713 0.0461972 Vertex 17928 -0.015259 0.0984512 0.0471298 Vertex 17929 -0.0774944 0.092744 0.0372295 Vertex 17930 -0.0744413 0.0833098 0.038687 Vertex 17931 -0.0782747 0.174383 -0.0433933 Vertex 17932 -0.0752579 0.0874199 0.0393733 Vertex 17933 -0.0492522 0.165358 0.00274428 Vertex 17934 -0.0258761 0.0796032 0.0512286 Vertex 17935 -0.0776167 0.0914005 0.037394 Vertex 17936 -0.0680469 0.0887699 0.043444 Vertex 17937 -0.0679768 0.0791427 0.0408622 Vertex 17938 -0.0838753 0.135332 0.0479212 Vertex 17939 -0.0798409 0.103395 0.0321858 Vertex 17940 -0.0515592 0.162515 0.00512403 Vertex 17941 -0.0873717 0.0895698 0.0245766 Vertex 17942 -0.0678178 0.0923118 -0.0167386 Vertex 17943 -0.0796939 0.0873057 0.0353613 Vertex 17944 -0.0438294 0.0913555 -0.0224139 Vertex 17945 -0.0782363 0.119072 0.0512696 Vertex 17946 -0.0842997 0.131249 0.0498733 Vertex 17947 -0.0816839 0.0830971 0.0318157 Vertex 17948 -0.0814225 0.0858535 0.0328878 Vertex 17949 -0.0803036 0.100707 0.0327244 Vertex 17950 -0.089811 0.143072 0.0296513 Vertex 17951 -0.0909792 0.143017 0.0266346 Vertex 17952 -0.0886495 0.113065 0.0417436 Vertex 17953 -0.0908165 0.145736 0.0263481 Vertex 17954 -0.0893654 0.145802 0.0291185 Vertex 17955 -0.0786209 0.174303 -0.0444916 Vertex 17956 -0.0801387 0.142096 0.0454029 Vertex 17957 -0.0874177 0.131128 0.0459004 Vertex 17958 -0.0281854 0.174153 -0.0178233 Vertex 17959 -0.0752954 0.15636 -0.00353298 Vertex 17960 -0.0725865 0.0874189 0.0409577 Vertex 17961 -0.073587 0.148629 -0.0261691 Vertex 17962 -0.0814849 0.0872077 0.0329213 Vertex 17963 -0.0858041 0.131212 0.0485351 Vertex 17964 -0.0789661 0.0859916 0.0360799 Vertex 17965 -0.0228892 0.0739252 0.0512281 Vertex 17966 -0.0233826 0.0866124 0.0541509 Vertex 17967 -0.0284893 0.0835322 0.0466293 Vertex 17968 -0.0923571 0.121517 0.0426088 Vertex 17969 -0.0748611 0.163212 -0.0154286 Vertex 17970 -0.077476 0.164468 -0.0240677 Vertex 17971 -0.0723659 0.100858 0.0389128 Vertex 17972 -0.0795725 0.091329 0.0351135 Vertex 17973 0.00712427 0.107292 -0.0202517 Vertex 17974 -0.0551395 0.054088 0.00915623 Vertex 17975 -0.0546003 0.0541349 0.0100271 Vertex 17976 -0.0539359 0.0541543 0.0107637 Vertex 17977 -0.0533105 0.0541891 0.0115512 Vertex 17978 -0.052616 0.0542078 0.012269 Vertex 17979 -0.0519452 0.0542248 0.0130044 Vertex 17980 -0.0513326 0.0542594 0.0137993 Vertex 17981 -0.0507132 0.054338 0.0146004 Vertex 17982 -0.0503289 0.0543622 0.0156654 Vertex 17983 -0.0509946 0.0547172 0.0191515 Vertex 17984 -0.0514204 0.0548853 0.0209522 Vertex 17985 -0.0518764 0.0550741 0.0228473 Vertex 17986 -0.0520805 0.0552272 0.0244826 Vertex 17987 -0.0774203 0.177255 -0.0472003 Vertex 17988 -0.0860007 0.147303 0.0341634 Vertex 17989 -0.0861837 0.0868588 0.0248974 Vertex 17990 -0.0512935 0.0556822 0.0305914 Vertex 17991 -0.0509119 0.055753 0.0316394 Vertex 17992 -0.0504539 0.0558071 0.0326022 Vertex 17993 -0.0499219 0.0558508 0.0334877 Vertex 17994 -0.0493842 0.0558982 0.0343669 Vertex 17995 -0.0487687 0.0559317 0.0351683 Vertex 17996 -0.0481052 0.0559539 0.0359192 Vertex 17997 -0.0474593 0.0559824 0.0367034 Vertex 17998 -0.0467634 0.0560036 0.0374321 Vertex 17999 -0.0459594 0.0560107 0.0380589 Vertex 18000 -0.0451321 0.0560164 0.0386443 Vertex 18001 -0.0840259 0.124392 0.0498267 Vertex 18002 -0.0883316 0.128385 0.0454834 Vertex 18003 -0.0909787 0.118866 0.0441649 Vertex 18004 -0.0841715 0.0870272 0.0285556 Vertex 18005 -0.0902093 0.131023 0.0402096 Vertex 18006 -0.0293156 0.0820403 0.0446588 Vertex 18007 -0.0895091 0.147137 0.0278175 Vertex 18008 -0.0698033 0.087974 -0.016854 Vertex 18009 -0.073748 0.0805288 0.0380979 Vertex 18010 -0.027701 0.0549269 0.0368456 Vertex 18011 -0.0269873 0.0549465 0.0375414 Vertex 18012 -0.0263571 0.0549776 0.0383278 Vertex 18013 -0.0258056 0.0550238 0.0391969 Vertex 18014 -0.0252161 0.0550594 0.0400126 Vertex 18015 -0.0246982 0.0551057 0.0409028 Vertex 18016 -0.0240922 0.0551393 0.0417051 Vertex 18017 -0.0235187 0.0551838 0.0425567 Vertex 18018 -0.0229321 0.055215 0.043371 Vertex 18019 -0.0224297 0.0552774 0.0442986 Vertex 18020 -0.0218343 0.0553077 0.0451067 Vertex 18021 -0.0212331 0.0553385 0.0459146 Vertex 18022 -0.0206125 0.0553712 0.0467047 Vertex 18023 -0.0199502 0.0553853 0.0474489 Vertex 18024 -0.0192766 0.0554309 0.0481999 Vertex 18025 -0.0185768 0.055451 0.0489119 Vertex 18026 -0.0178669 0.0554748 0.0496143 Vertex 18027 -0.0170933 0.0554767 0.0502631 Vertex 18028 -0.0839307 0.125043 -0.00388859 Vertex 18029 -0.0743429 0.0777095 0.0359578 Vertex 18030 -0.0737727 0.0928414 0.040556 Vertex 18031 -0.0775055 0.120428 0.0519362 Vertex 18032 -0.022007 0.0754165 0.0531212 Vertex 18033 -0.0688111 0.0922897 -0.0164711 Vertex 18034 -0.0878291 0.0895228 0.0236162 Vertex 18035 -0.0783775 0.103446 0.0335489 Vertex 18036 -0.0858505 0.116285 0.047652 Vertex 18037 -0.0810823 0.146103 0.0405774 Vertex 18038 -0.0890856 0.122978 0.0464209 Vertex 18039 -0.0723648 0.0763024 0.0368597 Vertex 18040 -0.0803572 0.0803552 0.0319871 Vertex 18041 -0.0887798 0.140493 0.0370948 Vertex 18042 -0.086772 0.140601 0.0407491 Vertex 18043 -0.0854765 0.145991 0.0364919 Vertex 18044 -0.0860963 0.145967 0.0357039 Vertex 18045 -0.0899184 0.131005 0.0413145 Vertex 18046 -0.0235739 0.0944939 0.0470656 Vertex 18047 -0.0201887 0.0754016 0.0541402 Vertex 18048 -0.0558134 0.0883826 -0.0218608 Vertex 18049 -0.0802965 0.0872747 0.0345612 Vertex 18050 -0.0839857 0.132609 0.0495198 Vertex 18051 -0.0680529 0.0874243 0.0435129 Vertex 18052 -0.0779467 0.170107 -0.0351609 Vertex 18053 -0.0817242 0.148679 0.0369003 Vertex 18054 -0.083623 0.0857135 0.0294569 Vertex 18055 -0.0884317 0.131079 0.0440854 Vertex 18056 -0.0827096 0.131285 0.0511192 Vertex 18057 -0.0818286 0.147374 0.0384552 Vertex 18058 -0.0917791 0.117463 0.0421754 Vertex 18059 -0.0208533 0.0866413 0.055877 Vertex 18060 -0.0217999 0.0866355 0.0553929 Vertex 18061 -0.0227215 0.0797443 0.0551012 Vertex 18062 -0.0827616 0.091206 0.0312465 Vertex 18063 -0.0851811 0.0897279 0.0280525 Vertex 18064 -0.037803 0.0885803 -0.0235006 Vertex 18065 -0.075255 0.0832856 0.0380964 Vertex 18066 -0.0843505 0.0842533 0.0274024 Vertex 18067 -0.0506733 0.162525 0.00564316 Vertex 18068 -0.0880436 0.0977019 0.0235765 Vertex 18069 -0.0875711 0.0977385 0.0245274 Vertex 18070 -0.0535232 0.0556038 0.0117195 Vertex 18071 -0.0770086 0.090082 0.0382275 Vertex 18072 -0.0515288 0.0559219 0.0167726 Vertex 18073 -0.052022 0.0561083 0.0186673 Vertex 18074 -0.0519257 0.0563169 0.0201359 Vertex 18075 -0.0520277 0.0563658 0.0215194 Vertex 18076 -0.0521809 0.0564969 0.0230721 Vertex 18077 -0.0522524 0.0566167 0.0245415 Vertex 18078 -0.0522528 0.0567257 0.0259279 Vertex 18079 -0.0521438 0.0568294 0.0272279 Vertex 18080 -0.0519669 0.0569186 0.0284516 Vertex 18081 -0.0516556 0.0569841 0.0295138 Vertex 18082 -0.0513349 0.057067 0.0306313 Vertex 18083 -0.0509259 0.0571242 0.0316152 Vertex 18084 -0.050471 0.0571806 0.032579 Vertex 18085 -0.0499657 0.0572278 0.0334797 Vertex 18086 -0.0493712 0.0572598 0.0342952 Vertex 18087 -0.0487856 0.0573034 0.0351442 Vertex 18088 -0.0481285 0.0573264 0.0358964 Vertex 18089 -0.0474866 0.0573572 0.0366835 Vertex 18090 -0.0467953 0.0573798 0.0374139 Vertex 18091 -0.0460532 0.057401 0.0380948 Vertex 18092 -0.0452512 0.0574076 0.0387158 Vertex 18093 -0.044324 0.0573856 0.0392571 Vertex 18094 -0.0870447 0.0977755 0.0254107 Vertex 18095 -0.0915894 0.118845 0.0433559 Vertex 18096 -0.0812562 0.103354 0.0307723 Vertex 18097 -0.0852113 0.0869359 0.026743 Vertex 18098 -0.0278047 0.074956 0.0433932 Vertex 18099 -0.024687 0.0892375 0.0511394 Vertex 18100 -0.090122 0.144414 0.0285066 Vertex 18101 -0.0689571 0.134062 -0.00839151 Vertex 18102 -0.0865647 0.0978132 0.0263535 Vertex 18103 -0.0270215 0.0563432 0.0375362 Vertex 18104 -0.0263916 0.0563779 0.0383176 Vertex 18105 -0.0258019 0.0564099 0.0391373 Vertex 18106 -0.0252694 0.0564528 0.0400125 Vertex 18107 -0.0247271 0.0564997 0.0408849 Vertex 18108 -0.0241328 0.0565311 0.0416958 Vertex 18109 -0.0235633 0.0565791 0.042552 Vertex 18110 -0.0229828 0.0566251 0.0433992 Vertex 18111 -0.0223745 0.0566587 0.0441983 Vertex 18112 -0.0218427 0.0567021 0.0450804 Vertex 18113 -0.0213048 0.0567472 0.0459531 Vertex 18114 -0.0207237 0.0567772 0.0467736 Vertex 18115 -0.0201321 0.0568083 0.0475876 Vertex 18116 -0.0194917 0.0568426 0.0483686 Vertex 18117 -0.0188005 0.0568615 0.0490899 Vertex 18118 -0.0180891 0.0568831 0.0497969 Vertex 18119 -0.017374 0.0569064 0.0504968 Vertex 18120 -0.0859938 0.0978404 0.0272064 Vertex 18121 -0.0853874 0.0978708 0.0280062 Vertex 18122 -0.0129906 0.0568055 0.0517595 Vertex 18123 -0.0121151 0.0568039 0.0522997 Vertex 18124 -0.0847868 0.0979024 0.0288114 Vertex 18125 -0.0218601 0.0893132 0.0539604 Vertex 18126 -0.0784828 0.175619 -0.0475153 Vertex 18127 -0.0905785 0.121592 0.0451008 Vertex 18128 -0.0867319 0.116264 0.0471164 Vertex 18129 -0.0769289 0.125211 -0.00745968 Vertex 18130 -0.0861214 0.132549 0.0473951 Vertex 18131 -0.0846517 0.135301 0.0472783 Vertex 18132 -0.0869182 0.148604 0.0308154 Vertex 18133 -0.078467 0.147461 0.0407301 Vertex 18134 -0.0841353 0.146019 0.0379782 Vertex 18135 -0.0834012 0.146003 0.0386574 Vertex 18136 -0.0826957 0.0898386 0.0312187 Vertex 18137 -0.093479 0.129659 0.0212406 Vertex 18138 -0.0769167 0.0873975 0.0382106 Vertex 18139 -0.0841699 0.0979316 0.0296062 Vertex 18140 -0.0889602 0.131049 0.0432066 Vertex 18141 -0.0835274 0.0979539 0.0303801 Vertex 18142 -0.0727351 0.0832969 0.03983 Vertex 18143 -0.0775221 0.104823 0.0340694 Vertex 18144 -0.0828557 0.0979824 0.0311146 Vertex 18145 -0.0808373 0.0858965 0.0337281 Vertex 18146 -0.085378 0.128494 0.0496125 Vertex 18147 -0.026277 0.0795343 0.0501986 Vertex 18148 -0.085608 0.144617 0.0380805 Vertex 18149 -0.0821992 0.0980013 0.0318751 Vertex 18150 -0.0918049 0.121541 0.0434848 Vertex 18151 -0.0825925 0.0857998 0.0312629 Vertex 18152 -0.0783551 0.090033 0.0367591 Vertex 18153 -0.0815235 0.0899003 0.0328752 Vertex 18154 -0.0833347 0.0898073 0.030438 Vertex 18155 -0.0831943 0.132626 0.0501472 Vertex 18156 -0.0872251 0.0950749 0.0256867 Vertex 18157 -0.0843417 0.0952366 0.029868 Vertex 18158 -0.0823976 0.095314 0.0321564 Vertex 18159 -0.0787271 0.0954037 0.0355432 Vertex 18160 -0.0855353 0.0938173 0.0282665 Vertex 18161 -0.0696779 0.086056 0.0423345 Vertex 18162 -0.0256024 0.0918183 0.0477571 Vertex 18163 -0.0740754 0.0791322 0.0370556 Vertex 18164 -0.0801896 0.0926573 0.034266 Vertex 18165 -0.0788782 0.172865 -0.0427748 Vertex 18166 -0.0815066 0.0980245 0.032594 Vertex 18167 -0.0550494 0.0577849 0.0202145 Vertex 18168 -0.0542607 0.057796 0.0208407 Vertex 18169 -0.0535372 0.0578641 0.0215172 Vertex 18170 -0.0527991 0.0578707 0.0222512 Vertex 18171 -0.0526679 0.0579784 0.0235498 Vertex 18172 -0.0526119 0.0580506 0.0248562 Vertex 18173 -0.0525203 0.0581461 0.0261597 Vertex 18174 -0.0523515 0.0582314 0.0273813 Vertex 18175 -0.0521074 0.0583062 0.0285239 Vertex 18176 -0.0517937 0.0583908 0.0296448 Vertex 18177 -0.0513866 0.0584422 0.0306256 Vertex 18178 -0.0509402 0.0584984 0.0315938 Vertex 18179 -0.050486 0.0585567 0.0325562 Vertex 18180 -0.0499829 0.0586014 0.0334591 Vertex 18181 -0.0494324 0.0586474 0.0343285 Vertex 18182 -0.0488192 0.0586801 0.0351334 Vertex 18183 -0.0481968 0.058714 0.0359259 Vertex 18184 -0.0475224 0.0587349 0.0366732 Vertex 18185 -0.0468723 0.0587675 0.0374438 Vertex 18186 -0.0461509 0.05879 0.0381434 Vertex 18187 -0.0453044 0.0587827 0.038737 Vertex 18188 -0.0444225 0.0587761 0.0392912 Vertex 18189 -0.0807821 0.0980376 0.0332837 Vertex 18190 -0.083014 0.0816043 0.0289568 Vertex 18191 -0.0536029 0.162357 0.00297376 Vertex 18192 -0.0823499 0.132665 0.0507367 Vertex 18193 -0.073889 0.119392 -0.00790358 Vertex 18194 -0.0832566 0.147367 0.0370632 Vertex 18195 -0.0870878 0.147265 0.0324302 Vertex 18196 -0.0888345 0.136443 0.0400961 Vertex 18197 -0.0753611 0.0724331 0.0302407 Vertex 18198 -0.0800787 0.0980611 0.0339873 Vertex 18199 -0.0271594 0.0577744 0.0376032 Vertex 18200 -0.0264004 0.0577755 0.0382862 Vertex 18201 -0.0258758 0.0578187 0.0391737 Vertex 18202 -0.0252734 0.05785 0.0399799 Vertex 18203 -0.0247501 0.0578943 0.0408638 Vertex 18204 -0.0241838 0.0579409 0.0417219 Vertex 18205 -0.023566 0.0579721 0.0425175 Vertex 18206 -0.0230106 0.0580182 0.0433839 Vertex 18207 -0.0224495 0.0580629 0.0442448 Vertex 18208 -0.0219078 0.0581082 0.0451165 Vertex 18209 -0.0213288 0.0581411 0.0459349 Vertex 18210 -0.0207807 0.0581858 0.0468036 Vertex 18211 -0.0202474 0.0582316 0.0476806 Vertex 18212 -0.0196496 0.0582641 0.0484904 Vertex 18213 -0.0190471 0.0582949 0.0492947 Vertex 18214 -0.018422 0.0583296 0.0500808 Vertex 18215 -0.0176504 0.0583335 0.0507279 Vertex 18216 -0.0793348 0.0980896 0.0346601 Vertex 18217 -0.0785905 0.0980977 0.0353146 Vertex 18218 -0.0778197 0.0981202 0.035968 Vertex 18219 -0.0134137 0.0581871 0.0521911 Vertex 18220 -0.0126763 0.05824 0.052838 Vertex 18221 -0.0117789 0.0582633 0.0533407 Vertex 18222 -0.0770206 0.0981288 0.0365817 Vertex 18223 -0.0762222 0.0981393 0.0371985 Vertex 18224 -0.0784369 0.170061 -0.0360578 Vertex 18225 -0.0882956 0.116235 0.0458325 Vertex 18226 -0.0812513 0.108802 0.0293202 Vertex 18227 -0.086716 0.132512 0.0465811 Vertex 18228 -0.0839725 0.0897798 0.0296574 Vertex 18229 -0.0746849 0.14995 -0.0294029 Vertex 18230 -0.0826845 0.0884898 0.0312484 Vertex 18231 -0.0754309 0.0981509 0.0378194 Vertex 18232 -0.0245078 0.0767611 0.0513331 Vertex 18233 -0.0869041 0.141929 0.0394374 Vertex 18234 -0.0720231 0.149543 -0.0391183 Vertex 18235 -0.0746646 0.0981736 0.0384691 Vertex 18236 -0.0799271 0.140795 0.0466609 Vertex 18237 -0.0739256 0.098177 0.0391323 Vertex 18238 -0.073083 0.0981963 0.0397086 Vertex 18239 -0.072166 0.0982206 0.0402281 Vertex 18240 -0.0788582 0.171448 -0.0399026 Vertex 18241 -0.078132 0.172939 -0.0407193 Vertex 18242 -0.0205797 0.0906821 0.0540574 Vertex 18243 -0.0608162 0.0881975 -0.019441 Vertex 18244 -0.0802909 0.104732 0.0311813 Vertex 18245 -0.0709488 0.0833216 0.0408543 Vertex 18246 -0.0777311 0.0887218 0.0375819 Vertex 18247 -0.0762231 0.16043 -0.0125715 Vertex 18248 -0.0164738 0.10119 0.0439603 Vertex 18249 -0.0861948 0.1005 0.0258994 Vertex 18250 -0.0753955 0.0901087 0.0394375 Vertex 18251 -0.0828121 0.0830332 0.030132 Vertex 18252 -0.0755506 0.0791122 0.0357048 Vertex 18253 -0.0618089 0.0881716 -0.0191682 Vertex 18254 0.00911841 0.110151 -0.0195223 Vertex 18255 -0.0311414 0.168206 -0.0166543 Vertex 18256 -0.0681193 0.15804 -0.05439 Vertex 18257 -0.0661323 0.162373 -0.0581655 Vertex 18258 -0.0228778 0.10587 -0.0225138 Vertex 18259 -0.0441607 0.162142 -0.00945516 Vertex 18260 -0.0248813 0.105869 -0.0225199 Vertex 18261 -0.0338474 0.0972112 -0.023083 Vertex 18262 -0.0690618 0.110676 0.0409548 Vertex 18263 -0.0534556 0.0353304 0.0456783 Vertex 18264 -0.0171444 0.168289 -0.0207283 Vertex 18265 -0.0582662 0.0597287 0.0219286 Vertex 18266 -0.0559881 0.0594067 0.0225062 Vertex 18267 -0.055281 0.0594285 0.0232183 Vertex 18268 -0.0544894 0.0594391 0.0238452 Vertex 18269 -0.0537039 0.0594504 0.0244709 Vertex 18270 -0.053144 0.0595659 0.0253997 Vertex 18271 -0.052965 0.0595916 0.0265588 Vertex 18272 -0.0526285 0.0596472 0.0276152 Vertex 18273 -0.0523454 0.059725 0.0287459 Vertex 18274 -0.0519381 0.0597689 0.0297286 Vertex 18275 -0.0515122 0.0598238 0.030703 Vertex 18276 -0.0510675 0.0598803 0.0316706 Vertex 18277 -0.050588 0.0599426 0.0326193 Vertex 18278 -0.0500753 0.0599861 0.0335137 Vertex 18279 -0.0494761 0.0600183 0.034326 Vertex 18280 -0.0488628 0.0600536 0.0351294 Vertex 18281 -0.0482359 0.0600875 0.0359237 Vertex 18282 -0.0475947 0.0601221 0.0367025 Vertex 18283 -0.0469178 0.060141 0.0374462 Vertex 18284 -0.0461946 0.0601644 0.0381445 Vertex 18285 -0.0453678 0.060156 0.0387657 Vertex 18286 -0.044527 0.0601701 0.0393419 Vertex 18287 -0.0713282 0.0982044 0.0407618 Vertex 18288 -0.0896679 0.144435 0.0294634 Vertex 18289 -0.0900837 0.117534 0.0447346 Vertex 18290 -0.0243811 0.0738035 0.0484997 Vertex 18291 -0.0825371 0.14737 0.037761 Vertex 18292 -0.0729927 0.08468 0.0400334 Vertex 18293 -0.090033 0.147105 0.0269347 Vertex 18294 -0.0884181 0.136485 0.0410708 Vertex 18295 -0.0774025 0.100791 0.0354679 Vertex 18296 -0.024804 0.0737635 0.0475256 Vertex 18297 -0.0259535 0.0592275 0.0392168 Vertex 18298 -0.025376 0.059259 0.0400414 Vertex 18299 -0.0248162 0.0593033 0.0409035 Vertex 18300 -0.0242184 0.0593353 0.0417104 Vertex 18301 -0.0236236 0.0593674 0.0425181 Vertex 18302 -0.0230608 0.0594124 0.0433799 Vertex 18303 -0.0225179 0.0594554 0.0442529 Vertex 18304 -0.0219738 0.059501 0.0451263 Vertex 18305 -0.0214151 0.0595466 0.0459898 Vertex 18306 -0.0208141 0.0595795 0.0467936 Vertex 18307 -0.0202578 0.0596247 0.0476545 Vertex 18308 -0.0197076 0.059653 0.0484949 Vertex 18309 -0.0191672 0.0596981 0.049368 Vertex 18310 -0.0185705 0.0597254 0.0501838 Vertex 18311 -0.017912 0.059765 0.0509406 Vertex 18312 -0.0810292 0.0940061 0.0336494 Vertex 18313 -0.0770465 0.161776 -0.0174081 Vertex 18314 -0.025733 0.0751362 0.0469781 Vertex 18315 -0.0140108 0.0596764 0.0527295 Vertex 18316 -0.0132756 0.0597275 0.0533794 Vertex 18317 -0.0771598 0.160359 -0.0157997 Vertex 18318 -0.0278572 0.0972984 -0.0239915 Vertex 18319 -0.0855508 0.0883229 0.0270467 Vertex 18320 -0.0917483 0.122888 0.0433845 Vertex 18321 -0.0830361 0.0952877 0.0313817 Vertex 18322 -0.0890068 0.11621 0.0451247 Vertex 18323 -0.0447239 0.169659 -0.000473292 Vertex 18324 -0.0777124 0.0900603 0.0375253 Vertex 18325 -0.0689033 0.0887623 0.0428815 Vertex 18326 -0.0328429 0.0972178 -0.0231932 Vertex 18327 -0.0728066 0.087878 -0.0157134 Vertex 18328 -0.0874564 0.141909 0.0385732 Vertex 18329 -0.0770308 0.167319 -0.027484 Vertex 18330 -0.0461657 0.168264 0.000998904 Vertex 18331 -0.0822803 0.139383 0.0462108 Vertex 18332 -0.080721 0.0845507 0.0336553 Vertex 18333 -0.0879683 0.133795 0.0435491 Vertex 18334 -0.0857293 0.121702 0.0488414 Vertex 18335 -0.0784376 0.171472 -0.0389273 Vertex 18336 -0.0714338 0.100882 0.0394174 Vertex 18337 -0.0876142 0.116272 0.0465171 Vertex 18338 -0.0815894 0.0926183 0.0328436 Vertex 18339 -0.0774559 0.158948 -0.0154272 Vertex 18340 -0.0218769 0.105849 -0.0224625 Vertex 18341 -0.0856352 0.151298 0.0280417 Vertex 18342 -0.0796666 0.0886389 0.0352895 Vertex 18343 -0.0763386 0.161799 -0.0152953 Vertex 18344 -0.0755712 0.102178 0.0364401 Vertex 18345 -0.0829735 0.127181 0.0515051 Vertex 18346 -0.0132685 0.101107 0.0437078 Vertex 18347 -0.0838411 0.0884243 0.0295799 Vertex 18348 -0.0215329 0.0768164 0.0540336 Vertex 18349 -0.052073 0.150157 -0.00315276 Vertex 18350 -0.0759274 0.108411 0.0376421 Vertex 18351 -0.075716 0.071204 0.0277224 Vertex 18352 -0.0819225 0.125087 -0.0048212 Vertex 18353 -0.0658988 0.116581 -0.00961273 Vertex 18354 -0.0268555 0.0987274 -0.0239779 Vertex 18355 -0.0748436 0.114924 -0.0060803 Vertex 18356 -0.0298441 0.0972531 -0.0235715 Vertex 18357 -0.0669546 0.128237 -0.00895731 Vertex 18358 -0.0639758 0.128226 -0.00858393 Vertex 18359 -0.0470567 0.069722 0.0403886 Vertex 18360 -0.0371896 0.166685 -0.0135589 Vertex 18361 -0.07397 0.135486 -0.00709777 Vertex 18362 -0.0530656 0.150158 -0.00286677 Vertex 18363 -0.0764634 0.157616 -0.00941011 Vertex 18364 -0.0568378 0.0613597 0.0260949 Vertex 18365 -0.0555168 0.0610654 0.0262173 Vertex 18366 -0.0548951 0.0610993 0.0270145 Vertex 18367 -0.0539202 0.0610131 0.0274265 Vertex 18368 -0.0527176 0.0611373 0.029069 Vertex 18369 -0.0522199 0.061167 0.0299696 Vertex 18370 -0.0517688 0.0612265 0.030932 Vertex 18371 -0.0512549 0.0612644 0.0318233 Vertex 18372 -0.0507783 0.0613366 0.0327704 Vertex 18373 -0.0501963 0.061364 0.033592 Vertex 18374 -0.0495652 0.0614019 0.0343808 Vertex 18375 -0.0489426 0.0614374 0.0351759 Vertex 18376 -0.0483119 0.0614742 0.035964 Vertex 18377 -0.047648 0.0614917 0.0367154 Vertex 18378 -0.0469959 0.06153 0.0374819 Vertex 18379 -0.0462425 0.0615364 0.0381535 Vertex 18380 -0.0455023 0.0615609 0.0388319 Vertex 18381 -0.0446553 0.0615526 0.0394256 Vertex 18382 -0.0842132 0.092522 0.0298256 Vertex 18383 -0.0784933 0.0832425 0.0356821 Vertex 18384 -0.0712173 0.0846981 0.0410753 Vertex 18385 -0.0238911 0.0738255 0.0493988 Vertex 18386 -0.0840365 0.147342 0.0364323 Vertex 18387 -0.0738666 0.0846755 0.0394915 Vertex 18388 -0.0869577 0.133848 0.0453706 Vertex 18389 -0.0905041 0.147099 0.0259896 Vertex 18390 -0.0856022 0.136615 0.0453504 Vertex 18391 -0.0858754 0.148602 0.0326009 Vertex 18392 -0.0708787 0.0634588 0.0196178 Vertex 18393 -0.0260772 0.0606359 0.0392914 Vertex 18394 -0.0255028 0.0606627 0.0401195 Vertex 18395 -0.0249365 0.0607087 0.0409751 Vertex 18396 -0.0243177 0.0607418 0.04177 Vertex 18397 -0.0236961 0.0607746 0.0425604 Vertex 18398 -0.0231291 0.0608213 0.0434196 Vertex 18399 -0.0225608 0.0608496 0.0442445 Vertex 18400 -0.0220309 0.0609111 0.0451603 Vertex 18401 -0.0214752 0.0609386 0.0459919 Vertex 18402 -0.020881 0.0609703 0.0467992 Vertex 18403 -0.0203373 0.0610131 0.0476733 Vertex 18404 -0.019839 0.0610753 0.0486026 Vertex 18405 -0.0192798 0.0610993 0.0494354 Vertex 18406 -0.0187164 0.0611476 0.0502898 Vertex 18407 -0.0180735 0.0611876 0.0510587 Vertex 18408 -0.0173263 0.0611887 0.051725 Vertex 18409 -0.0251342 0.0878826 0.0516343 Vertex 18410 -0.0145535 0.06115 0.0532234 Vertex 18411 -0.0137359 0.061178 0.0537969 Vertex 18412 -0.081903 0.123614 -0.00465545 Vertex 18413 -0.0762767 0.179149 -0.050884 Vertex 18414 -0.0776802 0.121779 0.0520726 Vertex 18415 -0.0852651 0.14863 0.0333956 Vertex 18416 -0.0559977 0.128155 -0.00607843 Vertex 18417 -0.0810169 0.0953587 0.0335948 Vertex 18418 -0.0896904 0.116203 0.0443945 Vertex 18419 -0.0768027 0.1218 0.0526081 Vertex 18420 -0.0866007 0.129822 0.0479412 Vertex 18421 -0.0721201 0.149786 -0.0402916 Vertex 18422 -0.0848397 0.124371 0.0492354 Vertex 18423 -0.0831522 0.148677 0.0355101 Vertex 18424 -0.0454458 0.168254 0.00168996 Vertex 18425 -0.01212 0.102458 0.0438351 Vertex 18426 -0.0839703 0.0843113 0.0284366 Vertex 18427 -0.0229076 0.0852723 0.0551257 Vertex 18428 -0.0779935 0.171503 -0.0379488 Vertex 18429 -0.0821459 0.0912329 0.0320422 Vertex 18430 -0.0807952 0.106052 0.0302403 Vertex 18431 -0.0741351 0.0860483 0.039718 Vertex 18432 -0.0753549 0.104884 0.0361423 Vertex 18433 -0.0788495 0.1177 0.0505094 Vertex 18434 -0.0850979 0.131233 0.0492505 Vertex 18435 -0.0234218 0.0738847 0.0503501 Vertex 18436 -0.0862929 0.15121 0.027304 Vertex 18437 -0.0519207 0.0493094 0.0353906 Vertex 18438 -0.0242921 0.0918773 0.0492675 Vertex 18439 -0.088169 0.124336 0.0468831 Vertex 18440 -0.0889533 0.124321 0.0462453 Vertex 18441 -0.0670338 0.0819342 0.0426575 Vertex 18442 -0.0789903 0.0900056 0.0359819 Vertex 18443 -0.0796191 0.0899783 0.0351979 Vertex 18444 -0.0410907 0.157679 -0.0102957 Vertex 18445 -0.0748916 0.10354 -0.0108565 Vertex 18446 -0.0809901 0.135346 -0.00326263 Vertex 18447 -0.0391759 0.16667 -0.0123913 Vertex 18448 -0.0301691 0.174141 -0.0165339 Vertex 18449 -0.0699695 0.135529 -0.00821968 Vertex 18450 -0.0551021 0.154591 -0.0020359 Vertex 18451 -0.0620444 0.166711 -0.0606187 Vertex 18452 -0.0777759 0.113375 -0.00398806 Vertex 18453 -0.0669412 0.126769 -0.00883964 Vertex 18454 -0.0669198 0.113752 -0.0107887 Vertex 18455 0.00412571 0.107297 -0.0203039 Vertex 18456 -0.0261553 0.169713 -0.0187023 Vertex 18457 -0.0391566 0.162183 -0.0124024 Vertex 18458 -0.0599112 0.109712 -0.0163845 Vertex 18459 -0.0420303 0.153306 -0.00761985 Vertex 18460 -0.0568311 0.0912579 -0.0217399 Vertex 18461 0.00411674 0.108725 -0.0201726 Vertex 18462 -0.0820259 0.0858257 0.0320864 Vertex 18463 -0.0729125 0.0928513 0.0411123 Vertex 18464 -0.0859998 0.135257 0.0457789 Vertex 18465 -0.0796195 0.104749 0.0319273 Vertex 18466 -0.0229052 0.0945537 0.0478017 Vertex 18467 -0.0223183 0.094515 0.0486399 Vertex 18468 -0.0497731 0.0627792 0.0345527 Vertex 18469 -0.04909 0.0628007 0.0352845 Vertex 18470 -0.0484435 0.0628471 0.0360579 Vertex 18471 -0.0477964 0.062891 0.036824 Vertex 18472 -0.0470606 0.0628926 0.0375096 Vertex 18473 -0.0463407 0.0629206 0.0382092 Vertex 18474 -0.0456018 0.0629458 0.0388902 Vertex 18475 -0.0448136 0.0629573 0.0395248 Vertex 18476 -0.0440063 0.0629698 0.0401358 Vertex 18477 -0.0901468 0.129651 0.0415795 Vertex 18478 -0.0847456 0.0911272 0.0289858 Vertex 18479 -0.0777723 0.0832737 0.0363717 Vertex 18480 -0.0801269 0.10608 0.0309775 Vertex 18481 -0.0215234 0.0739469 0.0526909 Vertex 18482 -0.0847959 0.147297 0.0357863 Vertex 18483 -0.0271626 0.0836755 0.0495254 Vertex 18484 -0.0887171 0.117597 0.0462102 Vertex 18485 -0.0909512 0.147073 0.025026 Vertex 18486 -0.0875501 0.120326 0.0478169 Vertex 18487 -0.0524215 0.162453 0.00456363 Vertex 18488 -0.0261647 0.0620468 0.0393395 Vertex 18489 -0.0255828 0.0620727 0.0401653 Vertex 18490 -0.0250326 0.0621165 0.0410328 Vertex 18491 -0.024429 0.062147 0.0418364 Vertex 18492 -0.023785 0.0621839 0.0426152 Vertex 18493 -0.0231795 0.0622145 0.0434152 Vertex 18494 -0.0226371 0.0622591 0.0442913 Vertex 18495 -0.0220963 0.0623062 0.0451655 Vertex 18496 -0.0215688 0.0623472 0.0460467 Vertex 18497 -0.0210322 0.0623911 0.0469253 Vertex 18498 -0.0204932 0.0624346 0.0477982 Vertex 18499 -0.0199623 0.0624791 0.0486773 Vertex 18500 -0.0194395 0.062521 0.0495605 Vertex 18501 -0.018805 0.0625267 0.0503254 Vertex 18502 -0.0181382 0.0625693 0.0510808 Vertex 18503 -0.0174331 0.0625913 0.0517909 Vertex 18504 -0.0274333 0.0808284 0.0484505 Vertex 18505 -0.0308479 0.0972408 -0.0233409 Vertex 18506 -0.0139477 0.0625843 0.0539847 Vertex 18507 -0.0131121 0.0626059 0.0545133 Vertex 18508 -0.062954 0.125297 -0.00870732 Vertex 18509 -0.077844 0.114867 -0.00473455 Vertex 18510 -0.064868 0.0953298 -0.0181139 Vertex 18511 -0.0855039 0.140637 0.0423198 Vertex 18512 -0.0628956 0.119461 -0.00917238 Vertex 18513 -0.0699509 0.134055 -0.00826728 Vertex 18514 -0.0871672 0.127065 0.0471934 Vertex 18515 -0.0878532 0.127045 0.0464651 Vertex 18516 -0.0674046 0.0833115 0.0429955 Vertex 18517 -0.087451 0.133828 0.0444349 Vertex 18518 -0.0892904 0.149814 0.024685 Vertex 18519 -0.0757603 0.10082 0.036651 Vertex 18520 -0.0808546 0.140749 0.0461596 Vertex 18521 -0.0789386 0.168616 -0.0354931 Vertex 18522 -0.0851123 0.133936 0.0477712 Vertex 18523 -0.0856608 0.0854539 0.0244177 Vertex 18524 -0.0835133 0.0843594 0.0293933 Vertex 18525 -0.0801977 0.117632 0.0490824 Vertex 18526 -0.0865386 0.147279 0.0332936 Vertex 18527 -0.079194 0.0832222 0.0349745 Vertex 18528 -0.0835152 0.150011 0.0330149 Vertex 18529 -0.0561449 0.04824 0.0383427 Vertex 18530 -0.025472 0.0851651 0.0520429 Vertex 18531 -0.0800217 0.102057 0.0324029 Vertex 18532 -0.0176724 0.0933571 0.0538975 Vertex 18533 -0.0863817 0.148632 0.0316852 Vertex 18534 -0.0203175 0.0933679 0.052311 Vertex 18535 -0.025973 0.0851197 0.051146 Vertex 18536 -0.0824678 0.0844329 0.0311552 Vertex 18537 -0.0866951 0.0951098 0.0265657 Vertex 18538 -0.0670193 0.0901061 0.04379 Vertex 18539 -0.0762411 0.0901005 0.0388673 Vertex 18540 -0.029331 0.0791866 0.0433726 Vertex 18541 -0.074878 0.122304 -0.00772392 Vertex 18542 -0.0648948 0.103911 -0.0165942 Vertex 18543 -0.0758417 0.114903 -0.00554375 Vertex 18544 -0.0548931 0.111218 -0.0174922 Vertex 18545 0.00111992 0.10872 -0.0203906 Vertex 18546 -0.0431375 0.160652 -0.0100842 Vertex 18547 -0.0132616 0.175663 -0.0275653 Vertex 18548 0.00912605 0.108716 -0.0196568 Vertex 18549 -0.0887986 0.114294 0.0264066 Vertex 18550 -0.0590133 0.128179 -0.00718347 Vertex 18551 -0.0152717 0.181584 -0.0271612 Vertex 18552 -0.0531156 0.156084 -0.00339606 Vertex 18553 -0.0340813 0.159269 -0.0127772 Vertex 18554 0.00612185 0.108732 -0.0201634 Vertex 18555 -0.0251728 0.1712 -0.0194857 Vertex 18556 -0.0280973 0.16079 -0.0140776 Vertex 18557 0.005123 0.108732 -0.0201833 Vertex 18558 -0.0558353 0.0912839 -0.0220329 Vertex 18559 -0.0619045 0.104018 -0.0180451 Vertex 18560 0.012125 0.10869 -0.0190017 Vertex 18561 -0.0579061 0.0357757 0.046064 Vertex 18562 -0.0240568 0.0972281 0.0446316 Vertex 18563 -0.0229243 0.0972075 0.044901 Vertex 18564 -0.0769685 0.156212 -0.0102521 Vertex 18565 -0.0216559 0.0972103 0.0449705 Vertex 18566 -0.0205007 0.0971766 0.0453281 Vertex 18567 -0.0197571 0.0971344 0.046022 Vertex 18568 -0.0192952 0.097132 0.0469462 Vertex 18569 -0.0217169 0.0945664 0.0494448 Vertex 18570 -0.0210328 0.0946153 0.0501685 Vertex 18571 -0.0487066 0.064243 0.0362896 Vertex 18572 -0.048008 0.0642705 0.0370013 Vertex 18573 -0.0472272 0.0642822 0.0376403 Vertex 18574 -0.0465015 0.0643139 0.0383309 Vertex 18575 -0.0457208 0.0643263 0.038969 Vertex 18576 -0.0449304 0.0643377 0.0396087 Vertex 18577 -0.0441151 0.0643553 0.040206 Vertex 18578 -0.0186701 0.0971551 0.0477534 Vertex 18579 -0.0818113 0.136716 0.048659 Vertex 18580 -0.0838696 0.117633 -0.00194246 Vertex 18581 -0.0567459 0.15948 0.00480369 Vertex 18582 -0.0222463 0.0739152 0.0519932 Vertex 18583 -0.0854254 0.147285 0.0350057 Vertex 18584 -0.0795395 0.117686 0.0497856 Vertex 18585 -0.0759006 0.161818 -0.014334 Vertex 18586 -0.0764965 0.154899 -0.0050946 Vertex 18587 -0.0178949 0.0971863 0.0483787 Vertex 18588 -0.0257112 0.0634738 0.0402437 Vertex 18589 -0.0251523 0.0635221 0.0411049 Vertex 18590 -0.024583 0.0635737 0.0419612 Vertex 18591 -0.0239734 0.0636045 0.0427616 Vertex 18592 -0.0234279 0.0636514 0.0436342 Vertex 18593 -0.0228589 0.0637031 0.0444908 Vertex 18594 -0.0223256 0.0637459 0.0453694 Vertex 18595 -0.0218007 0.0637891 0.0462553 Vertex 18596 -0.0212883 0.0638258 0.0471454 Vertex 18597 -0.0207862 0.0638606 0.0480406 Vertex 18598 -0.0202282 0.0639107 0.048901 Vertex 18599 -0.0196553 0.063928 0.0497256 Vertex 18600 -0.0190611 0.063953 0.0505398 Vertex 18601 -0.0183564 0.0639745 0.0512546 Vertex 18602 -0.0176233 0.0640054 0.0519373 Vertex 18603 -0.016863 0.0640072 0.0526042 Vertex 18604 -0.0171786 0.0971676 0.04907 Vertex 18605 -0.0820851 0.106006 0.028693 Vertex 18606 -0.0197736 0.0998405 0.0442778 Vertex 18607 -0.0130415 0.0639857 0.0543784 Vertex 18608 -0.017789 0.0998203 0.0439009 Vertex 18609 -0.075404 0.0914629 0.0394057 Vertex 18610 -0.0884421 0.133772 0.0426038 Vertex 18611 -0.0897054 0.124293 0.0455762 Vertex 18612 -0.0551177 0.156069 -0.00176933 Vertex 18613 -0.0231479 0.0919482 0.0509374 Vertex 18614 -0.0741436 0.100877 0.037779 Vertex 18615 -0.0885624 0.127032 0.0457658 Vertex 18616 -0.077344 0.119067 0.051823 Vertex 18617 -0.0905232 0.122929 0.0450175 Vertex 18618 -0.0780694 0.106243 0.0333548 Vertex 18619 -0.0705399 0.100871 0.0399167 Vertex 18620 -0.084428 0.138004 0.0455627 Vertex 18621 -0.0833338 0.121705 0.0492392 Vertex 18622 -0.0816426 0.140732 0.045535 Vertex 18623 -0.0821005 0.0885236 0.0320901 Vertex 18624 -0.087216 0.0937177 0.0257149 Vertex 18625 -0.0776345 0.165887 -0.0268309 Vertex 18626 -0.0165401 0.0997826 0.0440769 Vertex 18627 -0.0485608 0.164 0.00493162 Vertex 18628 -0.0890267 0.148493 0.027289 Vertex 18629 -0.0830867 0.0803012 0.027553 Vertex 18630 -0.0835093 0.13127 0.0505027 Vertex 18631 -0.0264927 0.0850795 0.0502634 Vertex 18632 -0.0761087 0.083292 0.0375324 Vertex 18633 -0.0252475 0.0736694 0.0465167 Vertex 18634 -0.0812551 0.10738 0.02923 Vertex 18635 -0.0887381 0.139163 0.03848 Vertex 18636 -0.0718916 0.0995338 0.0398851 Vertex 18637 -0.0186351 0.0933648 0.0534492 Vertex 18638 -0.0195177 0.0933631 0.0529187 Vertex 18639 -0.053047 0.162457 0.00378602 Vertex 18640 -0.0258496 0.0864897 0.0509722 Vertex 18641 -0.0253123 0.0865272 0.0518462 Vertex 18642 -0.0735922 0.0833012 0.0392631 Vertex 18643 -0.0763221 0.159003 -0.0110053 Vertex 18644 -0.0561893 0.159558 0.00559608 Vertex 18645 -0.0608279 0.0910686 -0.0191968 Vertex 18646 -0.0649074 0.120907 -0.00883756 Vertex 18647 -0.0460801 0.153165 -0.0063697 Vertex 18648 -0.0729406 0.0676849 0.0243239 Vertex 18649 0.00714876 0.108764 -0.0200496 Vertex 18650 0.00812607 0.108726 -0.0199063 Vertex 18651 -0.0679008 0.1038 -0.0147014 Vertex 18652 0.0101223 0.108705 -0.0195083 Vertex 18653 -0.067283 0.17966 -0.0595334 Vertex 18654 -0.0698932 0.103728 -0.0136756 Vertex 18655 -0.0610115 0.132585 -0.00747053 Vertex 18656 -0.0776442 0.112189 0.0467134 Vertex 18657 -0.0729374 0.129655 -0.00843737 Vertex 18658 -0.047823 0.0912927 -0.0217091 Vertex 18659 -0.0488158 0.0912881 -0.0217052 Vertex 18660 -0.0538207 0.0913026 -0.0221948 Vertex 18661 -0.0528115 0.0913061 -0.0221889 Vertex 18662 -0.0548296 0.0912974 -0.0221769 Vertex 18663 -0.073291 0.0682485 0.025526 Vertex 18664 0.0131167 0.108671 -0.0187213 Vertex 18665 -0.0648315 0.0895741 -0.0187043 Vertex 18666 -0.0883414 0.120307 0.04718 Vertex 18667 -0.0598098 0.08825 -0.0201729 Vertex 18668 -0.0817245 0.100671 0.0313188 Vertex 18669 -0.0728742 0.149812 -0.0379734 Vertex 18670 -0.0629203 0.122369 -0.00879811 Vertex 18671 -0.0821974 0.128571 0.0521036 Vertex 18672 -0.0890869 0.135136 0.0402764 Vertex 18673 -0.0837407 0.129905 0.0507752 Vertex 18674 -0.0853379 0.139291 0.0436042 Vertex 18675 -0.0203318 0.0946383 0.0508766 Vertex 18676 -0.0484493 0.0656843 0.0374132 Vertex 18677 -0.0475728 0.0656919 0.0379498 Vertex 18678 -0.0467618 0.0657183 0.0385512 Vertex 18679 -0.0459114 0.0657109 0.0391289 Vertex 18680 -0.0441667 0.0657175 0.0402548 Vertex 18681 -0.0458377 0.0970756 -0.021885 Vertex 18682 -0.0859779 0.129848 0.0487451 Vertex 18683 -0.0258745 0.104437 -0.023108 Vertex 18684 -0.0892353 0.14446 0.0304266 Vertex 18685 -0.087924 0.1365 0.0420055 Vertex 18686 -0.0875622 0.147255 0.0314849 Vertex 18687 -0.0745333 0.0805197 0.0374668 Vertex 18688 -0.0771042 0.163136 -0.0202013 Vertex 18689 -0.0782836 0.0860139 0.0367982 Vertex 18690 -0.0195579 0.0946763 0.0515134 Vertex 18691 -0.0838556 0.139345 0.0449552 Vertex 18692 -0.0264494 0.0648769 0.0395324 Vertex 18693 -0.0259181 0.0649186 0.0404266 Vertex 18694 -0.0254003 0.0649585 0.0413183 Vertex 18695 -0.0248108 0.064983 0.0421327 Vertex 18696 -0.0242622 0.0650295 0.043001 Vertex 18697 -0.0237291 0.0650733 0.0438813 Vertex 18698 -0.0231964 0.0651165 0.0447582 Vertex 18699 -0.0227042 0.0651451 0.0456598 Vertex 18700 -0.0221975 0.0652175 0.046591 Vertex 18701 -0.0216757 0.065257 0.0474751 Vertex 18702 -0.0211412 0.0652998 0.0483526 Vertex 18703 -0.02061 0.0653432 0.0492306 Vertex 18704 -0.0200798 0.0653829 0.0501099 Vertex 18705 -0.0194961 0.0654004 0.0509321 Vertex 18706 -0.018787 0.0654231 0.0516453 Vertex 18707 -0.0179879 0.0654395 0.0522544 Vertex 18708 -0.0171808 0.0654583 0.0528522 Vertex 18709 -0.0814882 0.139397 0.0468344 Vertex 18710 -0.0851043 0.10321 0.0261425 Vertex 18711 -0.0264348 0.0891318 0.0486594 Vertex 18712 -0.0128318 0.0653357 0.0541739 Vertex 18713 -0.0854828 0.0924603 0.0282645 Vertex 18714 -0.0882111 0.0936365 0.0238814 Vertex 18715 -0.0648058 0.0881399 -0.0188881 Vertex 18716 -0.0683872 0.0690317 0.0328821 Vertex 18717 -0.0797185 0.0803984 0.0327643 Vertex 18718 -0.0436341 0.171062 -0.00299049 Vertex 18719 -0.0088954 0.108786 -0.0222808 Vertex 18720 -0.0767129 0.161805 -0.0163426 Vertex 18721 -0.0882102 0.118977 0.047099 Vertex 18722 -0.0258097 0.0766327 0.0484243 Vertex 18723 -0.0886752 0.135106 0.0413889 Vertex 18724 -0.0927055 0.120137 0.0415853 Vertex 18725 -0.0266978 0.0917701 0.0460149 Vertex 18726 -0.0820753 0.129944 0.0519532 Vertex 18727 -0.0832204 0.140695 0.0442806 Vertex 18728 -0.0809796 0.0788834 0.0298322 Vertex 18729 -0.0770334 0.158982 -0.013085 Vertex 18730 -0.0249592 0.0767123 0.050372 Vertex 18731 -0.0212185 0.178615 -0.022031 Vertex 18732 -0.00588737 0.108814 -0.0225516 Vertex 18733 -0.0878486 0.143233 0.0360974 Vertex 18734 -0.0254054 0.0766649 0.0494071 Vertex 18735 -0.0485411 0.166778 0.000587101 Vertex 18736 -0.0753773 0.0887668 0.039456 Vertex 18737 -0.0718069 0.0887788 0.0415418 Vertex 18738 -0.0814909 0.0788596 0.028943 Vertex 18739 -0.029166 0.0762862 0.0418904 Vertex 18740 -0.078334 0.175787 -0.0461739 Vertex 18741 -0.0772387 0.158974 -0.0142914 Vertex 18742 -0.0707931 0.0879477 -0.0165704 Vertex 18743 -0.0779251 0.168693 -0.0322923 Vertex 18744 -0.0255118 0.0931431 0.0461963 Vertex 18745 -0.0244166 0.0931902 0.0479432 Vertex 18746 -0.0789031 0.0913518 0.0358575 Vertex 18747 -0.0263933 0.0864552 0.0500994 Vertex 18748 -0.0212315 0.0839098 0.0563274 Vertex 18749 -0.0245236 0.0838729 0.0539551 Vertex 18750 -0.0251232 0.0838362 0.0531591 Vertex 18751 -0.0802884 0.146109 0.0411929 Vertex 18752 -0.0894571 0.131034 0.0422704 Vertex 18753 -0.0578363 0.0912193 -0.0212351 Vertex 18754 -0.0588327 0.0911696 -0.0205864 Vertex 18755 -0.0618121 0.09105 -0.0190303 Vertex 18756 -0.0628225 0.0910404 -0.0189489 Vertex 18757 -0.0638273 0.0910291 -0.0188305 Vertex 18758 -0.0648099 0.0910089 -0.0186372 Vertex 18759 -0.065807 0.090969 -0.0181206 Vertex 18760 -0.0518084 0.0913012 -0.0220555 Vertex 18761 -0.0508009 0.0912872 -0.0218676 Vertex 18762 -0.0498121 0.0912811 -0.0216901 Vertex 18763 -0.0458215 0.091313 -0.0218951 Vertex 18764 -0.0448194 0.0913346 -0.0221278 Vertex 18765 -0.0468292 0.091298 -0.0217206 Vertex 18766 -0.0865836 0.11378 0.0451954 Vertex 18767 -0.060057 0.135486 -0.00665791 Vertex 18768 -0.0520933 0.154615 -0.00405641 Vertex 18769 -0.0568824 0.10976 -0.0175883 Vertex 18770 -0.0671562 0.0724925 0.0371747 Vertex 18771 -0.0629025 0.103986 -0.017642 Vertex 18772 -0.0649207 0.122383 -0.00889091 Vertex 18773 -0.0668128 0.0894987 -0.0177562 Vertex 18774 -0.0187732 0.0946942 0.0521396 Vertex 18775 -0.0826303 0.103323 0.0293175 Vertex 18776 -0.0732964 0.0791377 0.0376894 Vertex 18777 -0.0761165 0.0874143 0.0388159 Vertex 18778 -0.0830551 0.128552 0.0515383 Vertex 18779 -0.0592291 0.156682 0.00368263 Vertex 18780 -0.0881508 0.144556 0.0335371 Vertex 18781 0.0191769 0.0959952 -0.0230407 Vertex 18782 -0.0178219 0.0896296 -0.0373512 Vertex 18783 -0.00286572 0.104506 -0.0226523 Vertex 18784 -0.0481378 0.0672057 0.0386531 Vertex 18785 -0.0472854 0.0671503 0.0390298 Vertex 18786 -0.0462738 0.0671086 0.039469 Vertex 18787 -0.0321193 0.0366883 0.0508235 Vertex 18788 -0.0443984 0.0671335 0.0404051 Vertex 18789 -0.0178266 0.0947205 0.0526193 Vertex 18790 -0.0772403 0.0846603 0.0372078 Vertex 18791 -0.0857101 0.0869161 0.0258492 Vertex 18792 -0.0832007 0.119017 0.0492012 Vertex 18793 -0.0877346 0.144562 0.0345528 Vertex 18794 -0.0874124 0.136542 0.0428952 Vertex 18795 -0.0880121 0.147225 0.0305337 Vertex 18796 -0.0885789 0.0922253 0.0228661 Vertex 18797 -0.0767597 0.163153 -0.0191399 Vertex 18798 -0.0830162 0.0939316 0.0314035 Vertex 18799 -0.0401353 0.162183 -0.0119788 Vertex 18800 -0.0877344 0.132461 0.0447656 Vertex 18801 -0.0261594 0.066324 0.0406106 Vertex 18802 -0.0256808 0.0663835 0.041558 Vertex 18803 -0.0251661 0.0664206 0.0424455 Vertex 18804 -0.0246581 0.0664552 0.0433381 Vertex 18805 -0.0241603 0.0665253 0.044272 Vertex 18806 -0.0236293 0.0665652 0.045154 Vertex 18807 -0.0231138 0.0666037 0.0460408 Vertex 18808 -0.0225837 0.0666453 0.0469216 Vertex 18809 -0.0220763 0.0666765 0.0478151 Vertex 18810 -0.0215751 0.0667511 0.0487462 Vertex 18811 -0.0210692 0.0667823 0.0496379 Vertex 18812 -0.0205507 0.066817 0.0505282 Vertex 18813 -0.0199636 0.0668339 0.051351 Vertex 18814 -0.019299 0.0668878 0.052102 Vertex 18815 -0.0184257 0.066889 0.0526426 Vertex 18816 -0.0175551 0.0668893 0.0531861 Vertex 18817 -0.0748456 0.159073 -0.00827714 Vertex 18818 -0.087722 0.128407 0.0462822 Vertex 18819 -0.0927955 0.121487 0.0416389 Vertex 18820 -0.0528912 0.109829 -0.018387 Vertex 18821 -0.078061 0.117721 0.0511362 Vertex 18822 -0.06794 0.126772 -0.00890268 Vertex 18823 -0.0287411 0.0366033 0.0533099 Vertex 18824 -0.0830364 0.104646 0.028271 Vertex 18825 -0.0830074 0.117688 0.0489709 Vertex 18826 -0.0842691 0.117693 0.0488129 Vertex 18827 -0.0779175 0.0954136 0.0361479 Vertex 18828 -0.0658161 0.0866791 -0.018673 Vertex 18829 -0.0807235 0.116228 0.0481624 Vertex 18830 -0.0923057 0.12017 0.0426167 Vertex 18831 -0.0765127 0.164562 -0.0208538 Vertex 18832 -0.0866887 0.120341 0.0484058 Vertex 18833 -0.0824451 0.140729 0.0449221 Vertex 18834 -0.0169961 0.094658 0.0531741 Vertex 18835 -0.0277489 0.0877005 0.0471838 Vertex 18836 -0.0256851 0.0824232 0.052338 Vertex 18837 -0.0248582 0.0752289 0.048914 Vertex 18838 -0.0833358 0.105954 0.0271122 Vertex 18839 -0.0743965 0.149892 -0.0310959 Vertex 18840 -0.0723907 0.151114 -0.0412874 Vertex 18841 -0.0763319 0.15494 -0.00387485 Vertex 18842 -0.0213294 0.0783028 0.0551779 Vertex 18843 -0.0866523 0.0868042 0.0239447 Vertex 18844 -0.017215 0.175671 -0.0245809 Vertex 18845 -0.0766234 0.167356 -0.0265012 Vertex 18846 -0.0728932 0.0941961 0.0410307 Vertex 18847 -0.0769618 0.103489 0.0349575 Vertex 18848 -0.0908997 0.126938 0.0424248 Vertex 18849 -0.0903999 0.124268 0.0448512 Vertex 18850 -0.0809093 0.0912865 0.0336272 Vertex 18851 -0.0866695 0.135213 0.0450386 Vertex 18852 -0.0269434 0.0864227 0.0492292 Vertex 18853 -0.0706477 0.0874116 0.0418374 Vertex 18854 -0.0221672 0.0839099 0.0558332 Vertex 18855 -0.0669681 0.132599 -0.00847972 Vertex 18856 -0.0825915 0.143398 0.0421649 Vertex 18857 -0.084679 0.0869987 0.027663 Vertex 18858 -0.0765591 0.0818865 0.0366215 Vertex 18859 -0.0753069 0.109577 0.0422017 Vertex 18860 -0.0650055 0.136996 -0.00788185 Vertex 18861 -0.0578677 0.104042 -0.0186102 Vertex 18862 -0.0568787 0.10406 -0.0186489 Vertex 18863 -0.0558876 0.104087 -0.0189213 Vertex 18864 -0.0538972 0.104145 -0.0195691 Vertex 18865 -0.0528856 0.104156 -0.0198053 Vertex 18866 0.00417753 0.0922823 -0.0325433 Vertex 18867 -0.0548971 0.104115 -0.019193 Vertex 18868 -0.0779912 0.139819 -0.00526751 Vertex 18869 -0.0778773 0.120773 -0.00663343 Vertex 18870 -0.0311581 0.17265 -0.0162683 Vertex 18871 0.0111252 0.108699 -0.019265 Vertex 18872 0.0151073 0.108635 -0.0180644 Vertex 18873 -0.0739419 0.129646 -0.00820737 Vertex 18874 -0.0252176 0.0351344 0.0519405 Vertex 18875 -0.0550232 0.14424 -0.00134547 Vertex 18876 -0.0669793 0.134061 -0.00834965 Vertex 18877 -0.069891 0.119438 -0.0086356 Vertex 18878 -0.0738772 0.107826 -0.00969763 Vertex 18879 -0.0727925 0.0893223 -0.0156729 Vertex 18880 -0.0777036 0.174395 -0.0426027 Vertex 18881 -0.0845249 0.129883 0.0501389 Vertex 18882 -0.0838122 0.128533 0.0508937 Vertex 18883 -0.0846144 0.128516 0.0502768 Vertex 18884 -0.0245194 0.0879123 0.052427 Vertex 18885 -0.028277 0.0807444 0.0465032 Vertex 18886 -0.0209967 0.0893299 0.0545201 Vertex 18887 -0.0782416 0.0913778 0.0366028 Vertex 18888 -0.0865319 0.0910336 0.0265354 Vertex 18889 0.0081342 0.104445 -0.020865 Vertex 18890 -0.066894 0.110895 -0.0121462 Vertex 18891 -0.0238144 0.0879301 0.05313 Vertex 18892 -0.08227 0.0830732 0.0310042 Vertex 18893 -0.0756281 0.167353 -0.024657 Vertex 18894 -0.0428236 0.0913841 -0.0227682 Vertex 18895 -0.0840769 0.0911454 0.0297191 Vertex 18896 -0.0859798 0.13928 0.042828 Vertex 18897 -0.0754721 0.103526 0.0362863 Vertex 18898 -0.0868865 0.136539 0.0438118 Vertex 18899 -0.0884823 0.147207 0.0295866 Vertex 18900 -0.0784063 0.0886978 0.0368492 Vertex 18901 -0.0747355 0.161794 -0.0126957 Vertex 18902 -0.0823671 0.0939609 0.0321712 Vertex 18903 -0.0834343 0.143353 0.0415913 Vertex 18904 -0.0729449 0.0805494 0.0386997 Vertex 18905 -0.01605 0.0946681 0.0536372 Vertex 18906 -0.0260001 0.0677977 0.0418131 Vertex 18907 -0.0254657 0.0678395 0.0426887 Vertex 18908 -0.0250008 0.0678945 0.0436439 Vertex 18909 -0.0245116 0.0679611 0.0445844 Vertex 18910 -0.0239792 0.0680021 0.045464 Vertex 18911 -0.0234564 0.0680424 0.0463484 Vertex 18912 -0.0229776 0.0681076 0.0472951 Vertex 18913 -0.0224834 0.0681349 0.0481925 Vertex 18914 -0.0219636 0.0681726 0.0490783 Vertex 18915 -0.0214414 0.0682091 0.0499624 Vertex 18916 -0.0209485 0.0682779 0.0508919 Vertex 18917 -0.0203653 0.0682964 0.0517114 Vertex 18918 -0.0196654 0.0683158 0.0524244 Vertex 18919 -0.0188177 0.0683045 0.0530002 Vertex 18920 -0.0179785 0.068344 0.053543 Vertex 18921 -0.087802 0.139216 0.0403868 Vertex 18922 -0.023276 0.0768174 0.0529315 Vertex 18923 -0.0279123 0.0793217 0.046185 Vertex 18924 -0.0238077 0.0811303 0.0547388 Vertex 18925 -0.0788017 0.0846357 0.0359502 Vertex 18926 -0.0227544 0.0753712 0.0524561 Vertex 18927 -0.0187514 0.0906841 0.0550582 Vertex 18928 -0.0521114 0.156091 -0.00406652 Vertex 18929 -0.0578055 0.0883401 -0.0213124 Vertex 18930 -0.0833044 0.10329 0.0285866 Vertex 18931 -0.0853195 0.117662 0.0484974 Vertex 18932 -0.085028 0.100559 0.0275605 Vertex 18933 -0.0854761 0.132564 0.04817 Vertex 18934 -0.0872404 0.149912 0.0282765 Vertex 18935 -0.0883155 0.139178 0.0394996 Vertex 18936 -0.0880478 0.0908955 0.0237752 Vertex 18937 -0.0738208 0.0921589 -0.0148323 Vertex 18938 -0.0842319 0.104575 0.0266516 Vertex 18939 -0.086684 0.149909 0.029141 Vertex 18940 -0.0770439 0.154813 -0.0101321 Vertex 18941 -0.0769455 0.154831 -0.00883158 Vertex 18942 -0.023437 0.0753613 0.0517266 Vertex 18943 -0.033113 0.162236 -0.0143657 Vertex 18944 -0.076768 0.156222 -0.00903892 Vertex 18945 -0.0239671 0.075324 0.0508435 Vertex 18946 -0.0764449 0.084677 0.0378167 Vertex 18947 -0.0829344 0.129921 0.0513858 Vertex 18948 -0.0842337 0.150005 0.032317 Vertex 18949 -0.0894324 0.117571 0.0455052 Vertex 18950 -0.0267697 0.0750695 0.0452054 Vertex 18951 -0.0853268 0.127125 0.0496018 Vertex 18952 -0.0754447 0.164601 -0.0189193 Vertex 18953 -0.0289421 0.0848695 0.0456392 Vertex 18954 -0.0668098 0.0880715 -0.0180091 Vertex 18955 -0.0800654 0.121688 0.0502425 Vertex 18956 -0.0861528 0.0951452 0.0274373 Vertex 18957 -0.0877008 0.0923103 0.0248018 Vertex 18958 -0.0659221 0.115196 -0.0104247 Vertex 18959 -0.0274598 0.0863801 0.0483431 Vertex 18960 -0.0550158 0.128128 -0.00563226 Vertex 18961 -0.0733019 0.081934 0.0390113 Vertex 18962 -0.0741118 0.0819105 0.0384161 Vertex 18963 -0.0749157 0.0818909 0.0378096 Vertex 18964 -0.0757541 0.0819089 0.037226 Vertex 18965 -0.0813944 0.0817284 0.031574 Vertex 18966 -0.0898787 0.112224 0.0169361 Vertex 18967 -0.0593593 0.0651443 0.0328932 Vertex 18968 -0.0738713 0.116445 -0.00712552 Vertex 18969 -0.0809665 0.133877 -0.00363658 Vertex 18970 -0.0789639 0.13393 -0.00512141 Vertex 18971 -0.0798447 0.116298 -0.00419638 Vertex 18972 -0.0609217 0.118124 -0.010668 Vertex 18973 -0.0458732 0.104238 -0.0208285 Vertex 18974 -0.0211436 0.168262 -0.0193322 Vertex 18975 0.0141307 0.108667 -0.0183815 Vertex 18976 -0.0470651 0.153179 -0.00606436 Vertex 18977 -0.0231257 0.165273 -0.0171671 Vertex 18978 -0.0440699 0.153194 -0.00699527 Vertex 18979 -0.0639063 0.120904 -0.00875525 Vertex 18980 -0.0698001 0.0894083 -0.0167108 Vertex 18981 -0.0678177 0.0894605 -0.0172539 Vertex 18982 -0.0687967 0.0894213 -0.0168337 Vertex 18983 -0.0708134 0.0893817 -0.0163657 Vertex 18984 -0.0717916 0.0893503 -0.0160567 Vertex 18985 -0.0747874 0.0892505 -0.0147771 Vertex 18986 -0.0738068 0.0892836 -0.0151913 Vertex 18987 -0.0490771 0.154645 -0.00592496 Vertex 18988 -0.0832309 0.120353 0.049216 Vertex 18989 -0.0817321 0.120346 0.0490739 Vertex 18990 -0.0806333 0.120347 0.049427 Vertex 18991 -0.0798668 0.12036 0.0500614 Vertex 18992 -0.0793168 0.102079 0.0331119 Vertex 18993 -0.0786087 0.102098 0.0338163 Vertex 18994 -0.0697701 0.0874139 0.0423816 Vertex 18995 -0.0893599 0.133717 0.0406984 Vertex 18996 -0.0869443 0.101766 0.0237835 Vertex 18997 -0.087877 0.0990467 0.0233782 Vertex 18998 -0.065193 0.165273 -0.0595568 Vertex 18999 -0.0787856 0.109366 0.039802 Vertex 19000 -0.0759173 0.12523 -0.00781198 Vertex 19001 -0.0874076 0.0990828 0.0243308 Vertex 19002 -0.0210879 0.0852798 0.0561484 Vertex 19003 -0.0609255 0.122379 -0.00879585 Vertex 19004 -0.0882171 0.135133 0.0423395 Vertex 19005 -0.0896944 0.133694 0.0395953 Vertex 19006 -0.0849548 0.0952071 0.0290738 Vertex 19007 -0.0849504 0.136625 0.0461206 Vertex 19008 -0.0905142 0.129614 0.0405398 Vertex 19009 -0.0790343 0.0886679 0.0360671 Vertex 19010 -0.0864575 0.101794 0.0247295 Vertex 19011 -0.028039 0.0849631 0.0475609 Vertex 19012 -0.0809226 0.0926448 0.0335946 Vertex 19013 -0.0868952 0.0991223 0.0252196 Vertex 19014 -0.0863763 0.0991625 0.0261078 Vertex 19015 -0.0262745 0.0692227 0.0420449 Vertex 19016 -0.0258209 0.0692735 0.0430043 Vertex 19017 -0.0253439 0.0693349 0.0439513 Vertex 19018 -0.0248173 0.0693751 0.0448313 Vertex 19019 -0.024281 0.069418 0.0457102 Vertex 19020 -0.023822 0.0694685 0.046666 Vertex 19021 -0.0233157 0.0695067 0.0475588 Vertex 19022 -0.0228623 0.06956 0.0485197 Vertex 19023 -0.0223265 0.0696009 0.0493961 Vertex 19024 -0.0217889 0.0696447 0.0502694 Vertex 19025 -0.0212527 0.0696869 0.051144 Vertex 19026 -0.0206697 0.0697068 0.051972 Vertex 19027 -0.0199616 0.0697296 0.0526775 Vertex 19028 -0.0191411 0.0697535 0.053261 Vertex 19029 -0.018211 0.0697307 0.0537615 Vertex 19030 -0.0858145 0.0991904 0.0269676 Vertex 19031 -0.0729908 0.139888 -0.00698816 Vertex 19032 -0.0806315 0.139432 0.0474021 Vertex 19033 -0.058803 0.0883 -0.0207912 Vertex 19034 -0.0809803 0.104706 0.0304576 Vertex 19035 -0.0816857 0.104685 0.0297488 Vertex 19036 -0.0748011 0.0878022 -0.0147955 Vertex 19037 -0.0829241 0.126549 -0.00467577 Vertex 19038 -0.0882017 0.0949941 0.0238463 Vertex 19039 -0.0284216 0.0792864 0.045297 Vertex 19040 -0.0862816 0.117641 0.0480424 Vertex 19041 -0.0748092 0.0790936 0.0363823 Vertex 19042 -0.0859393 0.101835 0.0256124 Vertex 19043 -0.0619845 0.128209 -0.0080954 Vertex 19044 -0.0794763 0.0926775 0.0349659 Vertex 19045 -0.0807745 0.102028 0.0317433 Vertex 19046 -0.0735138 0.0874308 0.0404487 Vertex 19047 -0.0182505 0.0920203 0.0545129 Vertex 19048 -0.0906893 0.11752 0.0439252 Vertex 19049 -0.0765631 0.160404 -0.0136187 Vertex 19050 -0.083716 0.087071 0.0295098 Vertex 19051 -0.0852334 0.0992128 0.0278144 Vertex 19052 -0.0853944 0.101863 0.0264831 Vertex 19053 -0.0847959 0.101901 0.0272869 Vertex 19054 -0.0765081 0.156243 -0.00790412 Vertex 19055 -0.0878947 0.131105 0.044958 Vertex 19056 -0.0727804 0.0887809 0.0411113 Vertex 19057 -0.0850789 0.151288 0.0289026 Vertex 19058 -0.0722033 0.152534 -0.0417656 Vertex 19059 -0.0818952 0.134036 0.0502533 Vertex 19060 -0.0827485 0.134001 0.0496722 Vertex 19061 -0.0787829 0.0926997 0.035689 Vertex 19062 -0.0582936 0.157998 0.00361947 Vertex 19063 -0.0841797 0.101927 0.0280813 Vertex 19064 -0.0719584 0.0942006 0.0415089 Vertex 19065 -0.0844404 0.100576 0.0283951 Vertex 19066 -0.0843685 0.105877 0.0253348 Vertex 19067 -0.0289729 0.083488 0.0456837 Vertex 19068 -0.0888148 0.144497 0.0313918 Vertex 19069 -0.0714887 0.0860678 0.0412957 Vertex 19070 -0.0590273 0.134027 -0.00648451 Vertex 19071 -0.0236613 0.0852675 0.0544729 Vertex 19072 -0.0697873 0.0819627 0.0411407 Vertex 19073 -0.0766415 0.100814 0.0361238 Vertex 19074 -0.0752643 0.0941545 0.0391883 Vertex 19075 -0.0765269 0.165965 -0.0237196 Vertex 19076 -0.0230753 0.078299 0.0540943 Vertex 19077 -0.0271001 0.0779439 0.0468281 Vertex 19078 -0.0284285 0.0821494 0.0466355 Vertex 19079 -0.0764226 0.102162 0.0358668 Vertex 19080 -0.0518036 0.0898543 -0.0220029 Vertex 19081 -0.0508059 0.0898498 -0.0218327 Vertex 19082 -0.0478093 0.0898718 -0.0219802 Vertex 19083 -0.0468126 0.0898791 -0.022022 Vertex 19084 -0.0488103 0.0898531 -0.0217755 Vertex 19085 -0.0498078 0.0898419 -0.0216876 Vertex 19086 -0.0758056 0.0891863 -0.013912 Vertex 19087 -0.0418656 0.104235 -0.0206965 Vertex 19088 -0.0758953 0.12228 -0.00740649 Vertex 19089 -0.0839351 0.123564 -0.00377373 Vertex 19090 -0.077893 0.12518 -0.00689701 Vertex 19091 -0.0398915 0.109923 -0.0189257 Vertex 19092 -0.0719068 0.110755 -0.00961867 Vertex 19093 -0.0338786 0.104305 -0.0212068 Vertex 19094 -0.034872 0.104274 -0.0209307 Vertex 19095 -0.0368662 0.104233 -0.0205194 Vertex 19096 -0.0639176 0.122377 -0.00881224 Vertex 19097 -0.0358716 0.10426 -0.0206916 Vertex 19098 -0.0378682 0.104226 -0.0203027 Vertex 19099 -0.0846211 0.0992422 0.0286106 Vertex 19100 -0.0748342 0.156367 -0.00257451 Vertex 19101 -0.0760927 0.0805105 0.0361956 Vertex 19102 -0.0769895 0.0790529 0.034321 Vertex 19103 -0.0198767 0.105865 -0.0225965 Vertex 19104 -0.0210999 0.0811322 0.0562803 Vertex 19105 -0.0691615 0.0832998 0.0419252 Vertex 19106 -0.0735939 0.077695 0.036626 Vertex 19107 -0.087976 0.141871 0.0376917 Vertex 19108 -0.0891661 0.132396 0.0419315 Vertex 19109 -0.0840037 0.0992695 0.0294026 Vertex 19110 -0.0833513 0.099287 0.0301656 Vertex 19111 -0.0826594 0.0993103 0.0308836 Vertex 19112 -0.0819554 0.0993316 0.0315904 Vertex 19113 -0.081252 0.0993542 0.0322994 Vertex 19114 -0.0242491 0.0796961 0.0538111 Vertex 19115 -0.0262775 0.073604 0.0447421 Vertex 19116 -0.0760841 0.104861 0.0354581 Vertex 19117 -0.0790692 0.0804499 0.033529 Vertex 19118 -0.0861539 0.149931 0.0300167 Vertex 19119 -0.0841802 0.136658 0.046769 Vertex 19120 -0.0747288 0.102175 0.0369848 Vertex 19121 -0.0764401 0.163184 -0.0180705 Vertex 19122 -0.0805231 0.0993639 0.0329828 Vertex 19123 -0.0756445 0.156326 -0.00458549 Vertex 19124 -0.0270556 0.0706113 0.0413767 Vertex 19125 -0.0265661 0.0706408 0.0422848 Vertex 19126 -0.0261195 0.0706905 0.0432458 Vertex 19127 -0.0256136 0.0707601 0.0441795 Vertex 19128 -0.0250553 0.0707727 0.0450037 Vertex 19129 -0.0245442 0.0708437 0.0459353 Vertex 19130 -0.0240991 0.0708914 0.0469009 Vertex 19131 -0.0236559 0.0709438 0.0478646 Vertex 19132 -0.0231748 0.0709692 0.0487695 Vertex 19133 -0.0226305 0.0710127 0.0496427 Vertex 19134 -0.0220941 0.0710555 0.0505203 Vertex 19135 -0.0215406 0.0711033 0.0513847 Vertex 19136 -0.0209282 0.0711316 0.0521839 Vertex 19137 -0.0201874 0.0711262 0.0528634 Vertex 19138 -0.0193751 0.0711448 0.0534686 Vertex 19139 -0.0185051 0.0711438 0.0540217 Vertex 19140 -0.0798193 0.0993879 0.0336913 Vertex 19141 -0.0846322 0.139314 0.044315 Vertex 19142 -0.079084 0.0994215 0.0343706 Vertex 19143 -0.0845068 0.120355 0.0490624 Vertex 19144 -0.0229594 0.0811266 0.055321 Vertex 19145 -0.0913593 0.126907 0.0414668 Vertex 19146 -0.0796245 0.0859561 0.0353266 Vertex 19147 -0.0428742 0.105667 -0.0205602 Vertex 19148 -0.0871513 0.117629 0.0474896 Vertex 19149 -0.0658335 0.0881117 -0.0184537 Vertex 19150 -0.0199036 0.0739897 0.0538964 Vertex 19151 -0.0818746 0.144748 0.0414084 Vertex 19152 -0.0230529 0.0839079 0.0553134 Vertex 19153 -0.0476682 0.165409 0.0039929 Vertex 19154 -0.0282432 0.0763981 0.0437868 Vertex 19155 -0.076218 0.0887607 0.0388797 Vertex 19156 -0.0711952 0.0805577 0.0397762 Vertex 19157 -0.0831505 0.0857608 0.0304017 Vertex 19158 -0.0835465 0.101952 0.0288636 Vertex 19159 -0.0705411 0.0860609 0.0417748 Vertex 19160 -0.0783582 0.0994351 0.0350546 Vertex 19161 -0.0191918 0.174184 -0.0227992 Vertex 19162 -0.0220401 0.0852804 0.0556778 Vertex 19163 -0.0776021 0.0994637 0.0357144 Vertex 19164 -0.0864391 0.131188 0.0477462 Vertex 19165 -0.076866 0.0994719 0.0363813 Vertex 19166 -0.0684419 0.0805248 0.0412962 Vertex 19167 -0.0759966 0.0994807 0.0369297 Vertex 19168 -0.0828981 0.101969 0.02963 Vertex 19169 -0.0822116 0.101996 0.0303518 Vertex 19170 -0.0295399 0.0777526 0.042206 Vertex 19171 -0.0919891 0.124178 0.0422069 Vertex 19172 -0.0923673 0.124202 0.041188 Vertex 19173 -0.0257584 0.0736396 0.0456283 Vertex 19174 -0.0881736 0.132451 0.0437642 Vertex 19175 -0.0278981 0.0863323 0.047373 Vertex 19176 -0.0256026 0.0837946 0.0522209 Vertex 19177 -0.0866506 0.128453 0.0480393 Vertex 19178 -0.0688604 0.0819375 0.0416515 Vertex 19179 -0.0778671 0.177131 -0.0494084 Vertex 19180 -0.0254269 0.0781373 0.050782 Vertex 19181 -0.0258381 0.0781035 0.0498012 Vertex 19182 -0.0263107 0.0780916 0.0488984 Vertex 19183 -0.026682 0.0779832 0.0478067 Vertex 19184 -0.0275354 0.0822426 0.0485604 Vertex 19185 -0.0720541 0.0777606 0.0379027 Vertex 19186 -0.0879795 0.148554 0.029057 Vertex 19187 -0.0408143 0.0899706 -0.0230035 Vertex 19188 -0.0418104 0.0899475 -0.0227382 Vertex 19189 -0.0429194 0.0898997 -0.0223492 Vertex 19190 -0.065935 0.125307 -0.00885715 Vertex 19191 -0.0539078 0.109837 -0.0181931 Vertex 19192 0.000101878 0.111584 -0.0199068 Vertex 19193 -0.0728936 0.109289 -0.00959602 Vertex 19194 -0.0849268 0.122064 -0.00322109 Vertex 19195 -0.0318643 0.104333 -0.0219242 Vertex 19196 -0.0328692 0.104316 -0.0215625 Vertex 19197 -0.0558989 0.109796 -0.0177742 Vertex 19198 -0.0278708 0.104417 -0.0229648 Vertex 19199 -0.0268762 0.104433 -0.0231038 Vertex 19200 -0.0557185 0.0570014 0.011057 Vertex 19201 -0.022872 0.104437 -0.0231879 Vertex 19202 -0.0749035 0.113464 -0.00617122 Vertex 19203 -0.0718754 0.119424 -0.00835095 Vertex 19204 -0.0448725 0.105637 -0.0203982 Vertex 19205 0.001175 0.0909253 -0.0339059 Vertex 19206 0.00217921 0.090906 -0.033534 Vertex 19207 -0.0751542 0.0995011 0.0375123 Vertex 19208 -0.0861256 0.0937891 0.0274526 Vertex 19209 -0.022633 0.08929 0.0533197 Vertex 19210 -0.0246025 0.0824997 0.0540808 Vertex 19211 -0.0291608 0.0806486 0.0445728 Vertex 19212 -0.0758067 0.0877331 -0.0139103 Vertex 19213 -0.0794858 0.0940336 0.0349322 Vertex 19214 -0.0283572 0.0862879 0.0464179 Vertex 19215 -0.0840475 0.0856522 0.0284432 Vertex 19216 -0.0841686 0.143365 0.0409129 Vertex 19217 -0.0885696 0.137819 0.0397738 Vertex 19218 -0.0715816 0.0791203 0.0388191 Vertex 19219 -0.0814983 0.102013 0.0310531 Vertex 19220 -0.023059 0.0825255 0.0553698 Vertex 19221 -0.0191397 0.0920316 0.0539979 Vertex 19222 -0.0886344 0.0949473 0.0228281 Vertex 19223 -0.0845696 0.12714 0.0502672 Vertex 19224 -0.0174959 0.0984963 0.0451272 Vertex 19225 -0.0617567 0.139364 -0.00656769 Vertex 19226 -0.0783268 0.0804305 0.0341941 Vertex 19227 -0.0858069 0.133905 0.0470456 Vertex 19228 -0.0834451 0.136657 0.0474496 Vertex 19229 -0.0249827 0.0918474 0.0485489 Vertex 19230 -0.0288938 0.0821008 0.0456772 Vertex 19231 -0.0748166 0.0921259 -0.0144369 Vertex 19232 -0.0743754 0.0995209 0.0381506 Vertex 19233 -0.0273861 0.0720614 0.0416635 Vertex 19234 -0.0269088 0.0720784 0.0425891 Vertex 19235 -0.0264479 0.0721314 0.0435447 Vertex 19236 -0.0259103 0.0721759 0.0444214 Vertex 19237 -0.0253772 0.0722169 0.0453002 Vertex 19238 -0.0249029 0.0722756 0.0462509 Vertex 19239 -0.0244152 0.0723023 0.0471532 Vertex 19240 -0.023961 0.0723529 0.0481115 Vertex 19241 -0.0234979 0.0724108 0.049066 Vertex 19242 -0.0229845 0.0724431 0.0499564 Vertex 19243 -0.0224223 0.072452 0.0507888 Vertex 19244 -0.0218345 0.0725147 0.0516294 Vertex 19245 -0.0211964 0.0725528 0.0524066 Vertex 19246 -0.0204394 0.0725535 0.0530664 Vertex 19247 -0.0196415 0.0725672 0.0536854 Vertex 19248 -0.0188257 0.0725897 0.0542693 Vertex 19249 -0.0736148 0.0995067 0.0387799 Vertex 19250 -0.0727533 0.0995199 0.0393322 Vertex 19251 -0.0599044 0.111127 -0.0158584 Vertex 19252 -0.0430533 0.034543 -0.0263375 Vertex 19253 -0.0439898 0.0350927 -0.0256307 Vertex 19254 -0.0443417 0.035118 -0.0243716 Vertex 19255 -0.0448486 0.0351369 -0.0234128 Vertex 19256 -0.0454902 0.0352033 -0.0224188 Vertex 19257 -0.0458004 0.0353434 -0.021332 Vertex 19258 -0.0460388 0.0353834 -0.0203139 Vertex 19259 -0.0462349 0.0354247 -0.01929 Vertex 19260 -0.0465497 0.0354834 -0.0182685 Vertex 19261 -0.0466771 0.0355018 -0.0172702 Vertex 19262 -0.0471842 0.0355635 -0.0162689 Vertex 19263 -0.0474379 0.0355948 -0.0152688 Vertex 19264 -0.0476906 0.0356242 -0.0142735 Vertex 19265 -0.0479431 0.0356599 -0.0132734 Vertex 19266 -0.085371 0.127983 -0.0026626 Vertex 19267 -0.0863225 0.128011 -0.00168174 Vertex 19268 -0.0883678 0.128089 0.00227451 Vertex 19269 -0.0934137 0.128236 0.0152484 Vertex 19270 -0.093262 0.128309 0.02526 Vertex 19271 -0.092072 0.128303 0.0302461 Vertex 19272 0.00382729 0.106411 -0.0207174 Vertex 19273 0.0309722 0.116471 -0.00147933 Vertex 19274 -0.012857 0.0968183 -0.0306036 Vertex 19275 0.0286267 0.117101 -0.00417221 Vertex 19276 0.00493781 0.100395 -0.0223096 Vertex 19277 -0.0932461 0.129666 0.0232459 Vertex 19278 -0.0930389 0.129675 0.0242521 Vertex 19279 -0.0928278 0.124236 0.0382657 Vertex 19280 -0.0420891 0.0363826 -0.0272583 Vertex 19281 -0.0432318 0.0365168 -0.0263599 Vertex 19282 -0.0437604 0.036567 -0.0252782 Vertex 19283 -0.0440132 0.0366004 -0.0242792 Vertex 19284 -0.044366 0.0366412 -0.0232589 Vertex 19285 -0.045049 0.0367204 -0.0222184 Vertex 19286 -0.045663 0.0367902 -0.0212772 Vertex 19287 -0.0459579 0.0368224 -0.0202942 Vertex 19288 -0.0461137 0.0368295 -0.0192985 Vertex 19289 -0.0462973 0.0368721 -0.0182757 Vertex 19290 -0.0466572 0.0369109 -0.0172699 Vertex 19291 -0.0469317 0.0369443 -0.0162782 Vertex 19292 -0.0473123 0.0369901 -0.0152765 Vertex 19293 -0.047565 0.0370224 -0.0142792 Vertex 19294 -0.0476227 0.0370311 -0.0128189 Vertex 19295 -0.080434 0.0763484 0.0258387 Vertex 19296 -0.0921826 0.114725 0.0193089 Vertex 19297 -0.0917278 0.114662 0.0113396 Vertex 19298 -0.0902973 0.114585 0.00733567 Vertex 19299 -0.0877422 0.114422 0.00426669 Vertex 19300 -0.0869021 0.114398 0.00327085 Vertex 19301 0.0501248 0.0723145 0.00745971 Vertex 19302 0.000272434 0.109746 -0.0202486 Vertex 19303 -0.00639115 0.121199 -0.012466 Vertex 19304 -0.0104359 0.0944019 -0.0340934 Vertex 19305 0.0294698 0.0801098 -0.0210213 Vertex 19306 -0.0693963 0.0393871 -0.00132267 Vertex 19307 -0.0702074 0.0394853 -0.000301673 Vertex 19308 -0.0707082 0.0395895 0.000643319 Vertex 19309 -0.0929029 0.129672 0.0252445 Vertex 19310 -0.0792409 0.168033 -0.0359701 Vertex 19311 -0.0785372 0.168054 -0.0329755 Vertex 19312 -0.0774663 0.168085 -0.0299733 Vertex 19313 -0.0549715 0.161246 0.00205939 Vertex 19314 0.0260716 0.115341 -0.00830033 Vertex 19315 -0.0438081 0.0899046 -0.0222231 Vertex 19316 -0.044116 0.168361 -0.0078879 Vertex 19317 -0.0469507 0.168415 -0.00396135 Vertex 19318 -0.0925953 0.129683 0.0262582 Vertex 19319 -0.092402 0.129661 0.0272343 Vertex 19320 -0.0168415 0.122494 -0.0076608 Vertex 19321 -0.0665542 0.169448 -0.0580509 Vertex 19322 -0.067702 0.169446 -0.0560134 Vertex 19323 -0.0687619 0.169445 -0.0540038 Vertex 19324 -0.0704863 0.169511 -0.0510127 Vertex 19325 -0.0714505 0.16941 -0.0490283 Vertex 19326 -0.072631 0.169409 -0.0470274 Vertex 19327 -0.0920793 0.129683 0.0282033 Vertex 19328 -0.0598434 0.0384999 0.0207227 Vertex 19329 -0.0603223 0.0385556 0.0217181 Vertex 19330 -0.0617635 0.0387159 0.0237173 Vertex 19331 -0.0626025 0.0388129 0.0247151 Vertex 19332 -0.0633235 0.0388939 0.025715 Vertex 19333 -0.0918958 0.129686 0.0292517 Vertex 19334 -0.0917215 0.129668 0.0302355 Vertex 19335 -0.0915067 0.129676 0.0312386 Vertex 19336 -0.0913848 0.129679 0.0322355 Vertex 19337 -0.0912678 0.12968 0.0332366 Vertex 19338 -0.0788091 0.168052 -0.033971 Vertex 19339 -0.0661658 0.170967 -0.0590604 Vertex 19340 -0.0685433 0.170852 -0.0550244 Vertex 19341 -0.0709402 0.170831 -0.0510269 Vertex 19342 -0.0735775 0.170801 -0.0470392 Vertex 19343 -0.078668 0.170753 -0.0430283 Vertex 19344 -0.086692 0.140502 0.00718566 Vertex 19345 -0.0391932 0.171233 -0.0109027 Vertex 19346 -0.0775215 0.161144 -0.0189221 Vertex 19347 -0.0740526 0.172196 -0.0480444 Vertex 19348 -0.0432126 0.168352 -0.00885275 Vertex 19349 -0.0702125 0.173659 -0.0540385 Vertex 19350 -0.0393334 0.174116 -0.00798067 Vertex 19351 -0.0911579 0.129687 0.0342384 Vertex 19352 -0.0911404 0.129685 0.035237 Vertex 19353 -0.0782584 0.1764 -0.0490322 Vertex 19354 -0.0772744 0.177812 -0.051035 Vertex 19355 -0.0777137 0.177848 -0.0500546 Vertex 19356 -0.0907603 0.140585 0.0151783 Vertex 19357 -0.0924762 0.124198 0.0322659 Vertex 19358 -0.0924935 0.124207 0.0332695 Vertex 19359 -0.0925657 0.116008 0.0123183 Vertex 19360 -0.0416697 0.0377451 -0.0272469 Vertex 19361 -0.042649 0.0378778 -0.0263104 Vertex 19362 -0.0433082 0.037957 -0.0253239 Vertex 19363 -0.0435213 0.0379732 -0.0242868 Vertex 19364 -0.0440467 0.0380432 -0.0230799 Vertex 19365 -0.0449923 0.0381195 -0.0222607 Vertex 19366 -0.045381 0.0381676 -0.0212668 Vertex 19367 -0.0456637 0.0382067 -0.0202858 Vertex 19368 -0.045802 0.0382259 -0.0192856 Vertex 19369 -0.0459192 0.038241 -0.0182827 Vertex 19370 -0.0463034 0.0382871 -0.0172845 Vertex 19371 -0.0466789 0.0383303 -0.0162856 Vertex 19372 -0.0469324 0.0383628 -0.0152843 Vertex 19373 -0.0471845 0.0383965 -0.0142868 Vertex 19374 -0.0474379 0.0384277 -0.0132876 Vertex 19375 -0.0870454 0.128039 -0.000695727 Vertex 19376 -0.0923901 0.114734 0.0183133 Vertex 19377 -0.0638593 0.0953482 -0.0183667 Vertex 19378 -0.00987706 0.108745 -0.0220853 Vertex 19379 -0.0927217 0.128206 0.0112525 Vertex 19380 -0.0306198 0.11135 -0.017885 Vertex 19381 -0.0665679 0.0404538 -0.00528616 Vertex 19382 -0.0672802 0.0405919 -0.00423161 Vertex 19383 -0.0685642 0.0406581 -0.00126009 Vertex 19384 -0.0694593 0.040787 -0.000292884 Vertex 19385 -0.0700194 0.0408862 0.000674154 Vertex 19386 -0.0911131 0.129682 0.0362351 Vertex 19387 -0.0910152 0.129688 0.0372352 Vertex 19388 -0.090997 0.129691 0.0382289 Vertex 19389 -0.09079 0.1297 0.0392322 Vertex 19390 -0.0778591 0.161105 -0.0269202 Vertex 19391 -0.075804 0.161028 -0.0299559 Vertex 19392 -0.0747225 0.161031 -0.0319529 Vertex 19393 -0.0732611 0.161033 -0.0359392 Vertex 19394 -0.0730235 0.16103 -0.0369405 Vertex 19395 -0.0727808 0.161025 -0.0379399 Vertex 19396 -0.0725308 0.161023 -0.0389355 Vertex 19397 -0.0721931 0.161015 -0.0399435 Vertex 19398 -0.071953 0.16101 -0.0409434 Vertex 19399 -0.0714698 0.161004 -0.0429413 Vertex 19400 -0.0712181 0.161 -0.0439365 Vertex 19401 -0.0708835 0.160996 -0.0449446 Vertex 19402 -0.0706171 0.160991 -0.0459386 Vertex 19403 -0.0915744 0.128321 0.0372423 Vertex 19404 -0.0594807 0.0398598 0.0207095 Vertex 19405 -0.0600846 0.0399274 0.0217122 Vertex 19406 -0.061044 0.0400333 0.0227114 Vertex 19407 -0.0620019 0.0401372 0.0237075 Vertex 19408 -0.0627225 0.0402195 0.0247088 Vertex 19409 -0.0635622 0.0403137 0.0257086 Vertex 19410 -0.064273 0.0404086 0.0266782 Vertex 19411 -0.064637 0.0404566 0.0276669 Vertex 19412 -0.0650238 0.0405393 0.0286621 Vertex 19413 -0.0896969 0.139298 0.033185 Vertex 19414 -0.0758612 0.165153 -0.0370257 Vertex 19415 -0.0785503 0.175004 -0.046006 Vertex 19416 -0.0318479 0.09723 -0.023215 Vertex 19417 -0.0914715 0.128331 0.0382421 Vertex 19418 -0.0779755 0.159708 -0.0199256 Vertex 19419 -0.0767016 0.15969 -0.0259195 Vertex 19420 -0.0738575 0.159643 -0.0319319 Vertex 19421 -0.070737 0.159582 -0.0449318 Vertex 19422 -0.0217957 0.119089 -0.0120655 Vertex 19423 -0.0120829 0.121468 -0.0106691 Vertex 19424 -0.0500656 0.165567 2.77718e-05 Vertex 19425 -0.0935392 0.129637 0.0202382 Vertex 19426 -0.0750314 0.165158 -0.038026 Vertex 19427 -0.0682913 0.165205 -0.0539869 Vertex 19428 -0.0678325 0.165206 -0.0549947 Vertex 19429 -0.0777024 0.176292 -0.0501047 Vertex 19430 -0.0764653 0.177807 -0.0519745 Vertex 19431 -0.0734442 0.163812 -0.0389777 Vertex 19432 -0.0713722 0.163817 -0.0449613 Vertex 19433 -0.0679508 0.168029 -0.055011 Vertex 19434 -0.0146147 0.12166 -0.00880985 Vertex 19435 -0.0736039 0.148578 -0.0278556 Vertex 19436 -0.0733262 0.151241 -0.0368807 Vertex 19437 -0.0924917 0.124196 0.0312677 Vertex 19438 -0.092997 0.116043 0.0153159 Vertex 19439 -0.0927665 0.116031 0.013321 Vertex 19440 -0.0404866 0.0390699 -0.027317 Vertex 19441 -0.0417523 0.0392031 -0.0263092 Vertex 19442 -0.0424078 0.0392874 -0.0253255 Vertex 19443 -0.0427465 0.0393017 -0.0242897 Vertex 19444 -0.0431901 0.039319 -0.0232745 Vertex 19445 -0.0444076 0.0394861 -0.0222996 Vertex 19446 -0.0447782 0.039524 -0.0212903 Vertex 19447 -0.0451579 0.0395668 -0.0202936 Vertex 19448 -0.0452834 0.0395877 -0.019291 Vertex 19449 -0.0452845 0.0395903 -0.0182935 Vertex 19450 -0.0455391 0.0396225 -0.0172907 Vertex 19451 -0.0461447 0.0396778 -0.0162811 Vertex 19452 -0.0463977 0.0397105 -0.0152844 Vertex 19453 -0.0466442 0.0397388 -0.0142756 Vertex 19454 -0.0468539 0.0397424 -0.0132276 Vertex 19455 -0.0887148 0.12811 0.00328264 Vertex 19456 -0.0308753 0.104365 -0.0222089 Vertex 19457 -0.0728566 0.114991 -0.00711315 Vertex 19458 -0.0816493 0.14593 0.000178819 Vertex 19459 -0.0893977 0.135151 0.0292068 Vertex 19460 -0.089421 0.135156 0.0282104 Vertex 19461 -0.0650689 0.0416148 -0.00522845 Vertex 19462 -0.0659868 0.0418098 -0.00430732 Vertex 19463 -0.0665131 0.0419133 -0.00333369 Vertex 19464 -0.0667152 0.0419014 -0.00231002 Vertex 19465 -0.0674877 0.041922 -0.00126982 Vertex 19466 -0.0683896 0.0420777 -0.000309277 Vertex 19467 -0.0691002 0.0421453 0.000699576 Vertex 19468 -0.0695352 0.0422413 0.00168563 Vertex 19469 -0.0696417 0.0422524 0.0026904 Vertex 19470 -0.0694557 0.0421945 0.00370163 Vertex 19471 -0.0781275 0.152854 0.000107941 Vertex 19472 -0.0709562 0.158172 -0.0439179 Vertex 19473 -0.0913446 0.12833 0.0392393 Vertex 19474 -0.0847077 0.140411 0.00224002 Vertex 19475 -0.0926235 0.124077 0.00926903 Vertex 19476 -0.0665286 0.168031 -0.0580342 Vertex 19477 -0.0685156 0.168032 -0.0539935 Vertex 19478 -0.0703858 0.16802 -0.0500308 Vertex 19479 -0.0552908 0.158294 -0.000771282 Vertex 19480 -0.0561055 0.158254 0.000206899 Vertex 19481 -0.0431779 0.113636 -0.0162215 Vertex 19482 -0.0582906 0.0411368 0.01871 Vertex 19483 -0.0579197 0.0410941 0.0197057 Vertex 19484 -0.0584017 0.0411488 0.0207065 Vertex 19485 -0.059 0.0412164 0.021703 Vertex 19486 -0.0600825 0.0413306 0.0227014 Vertex 19487 -0.0609237 0.0414243 0.0237035 Vertex 19488 -0.0617626 0.0415173 0.0247032 Vertex 19489 -0.0627252 0.0416196 0.0257026 Vertex 19490 -0.063517 0.0417383 0.0266777 Vertex 19491 -0.0640041 0.0417908 0.0276702 Vertex 19492 -0.0643944 0.0418449 0.0286723 Vertex 19493 -0.0647338 0.0418755 0.0296857 Vertex 19494 -0.0453052 0.113634 -0.0162273 Vertex 19495 -0.064574 0.0418551 0.0316967 Vertex 19496 -0.0648645 0.041891 0.032665 Vertex 19497 -0.0403754 0.124077 -0.00919956 Vertex 19498 -0.0194422 0.0952996 -0.0310527 Vertex 19499 0.0278981 0.113772 -0.00862034 Vertex 19500 0.020878 0.117607 -0.0107498 Vertex 19501 -0.0723854 0.155427 -0.0359059 Vertex 19502 -0.0730146 0.15545 -0.0319082 Vertex 19503 -0.0774728 0.155537 -0.0149084 Vertex 19504 -0.0774643 0.155549 -0.0139037 Vertex 19505 0.0304544 0.114562 -0.00546317 Vertex 19506 -0.0681856 0.169443 -0.0550153 Vertex 19507 -0.046761 0.126023 -0.00719597 Vertex 19508 -0.0783677 0.176339 -0.0480853 Vertex 19509 -0.0849215 0.130733 -0.00170191 Vertex 19510 -0.0786395 0.163873 -0.0279533 Vertex 19511 -0.0857603 0.130763 -0.000714461 Vertex 19512 -0.068651 0.163792 -0.0529788 Vertex 19513 -0.077495 0.158339 -0.0149115 Vertex 19514 -0.086473 0.130788 0.000288786 Vertex 19515 -0.087182 0.130813 0.00128919 Vertex 19516 -0.0578171 0.08688 -0.0211007 Vertex 19517 -0.0925898 0.124211 0.034269 Vertex 19518 -0.092883 0.116038 0.0143172 Vertex 19519 -0.0808442 0.110042 -0.00155764 Vertex 19520 -0.039457 0.0403768 -0.0273046 Vertex 19521 -0.0405912 0.0404909 -0.0262976 Vertex 19522 -0.0413557 0.0405762 -0.0252979 Vertex 19523 -0.0417668 0.040639 -0.0243092 Vertex 19524 -0.0423306 0.040657 -0.0232664 Vertex 19525 -0.0436408 0.0408205 -0.0223011 Vertex 19526 -0.0441537 0.0408799 -0.0213021 Vertex 19527 -0.0444079 0.0409084 -0.0203048 Vertex 19528 -0.0445241 0.0409237 -0.0192998 Vertex 19529 -0.0446508 0.040942 -0.0182992 Vertex 19530 -0.0447778 0.0409599 -0.0173005 Vertex 19531 -0.0452867 0.0410146 -0.0162976 Vertex 19532 -0.0456663 0.0410589 -0.0152981 Vertex 19533 -0.0460065 0.0410789 -0.0142843 Vertex 19534 -0.0463222 0.0411097 -0.0132713 Vertex 19535 -0.0464977 0.041126 -0.0122454 Vertex 19536 -0.0489044 0.0413839 -0.0112514 Vertex 19537 -0.00483682 0.0910121 -0.035647 Vertex 19538 0.00206285 0.121236 -0.012553 Vertex 19539 -0.0882908 0.103675 0.012381 Vertex 19540 -0.0884013 0.103686 0.0143755 Vertex 19541 -0.0881324 0.103677 0.0173573 Vertex 19542 -0.0642285 0.0429095 -0.00424321 Vertex 19543 -0.06512 0.0430832 -0.00329452 Vertex 19544 -0.0657222 0.0431534 -0.00229362 Vertex 19545 -0.0661661 0.0431586 -0.00127362 Vertex 19546 -0.0671097 0.0432428 -0.000257978 Vertex 19547 -0.0676617 0.0433934 0.000689977 Vertex 19548 -0.0683794 0.0434664 0.00169373 Vertex 19549 -0.0686641 0.0435432 0.00268116 Vertex 19550 -0.0685313 0.0435239 0.00368786 Vertex 19551 -0.0880604 0.13085 0.0022566 Vertex 19552 -0.088753 0.130866 0.00325856 Vertex 19553 -0.0893497 0.130881 0.0042394 Vertex 19554 -0.0747758 0.152715 -0.0228916 Vertex 19555 -0.0746759 0.152711 -0.0238933 Vertex 19556 -0.0745622 0.152707 -0.0248951 Vertex 19557 -0.0745333 0.152696 -0.0258905 Vertex 19558 -0.0744235 0.152695 -0.0268913 Vertex 19559 -0.0743032 0.152688 -0.027892 Vertex 19560 -0.0741728 0.15268 -0.0288898 Vertex 19561 -0.0899265 0.130893 0.00523191 Vertex 19562 -0.0573402 0.0424553 0.0177175 Vertex 19563 -0.0564664 0.0423189 0.0186897 Vertex 19564 -0.0561187 0.04231 0.0196965 Vertex 19565 -0.0567225 0.0423764 0.0206991 Vertex 19566 -0.0574419 0.0424556 0.0216968 Vertex 19567 -0.0585235 0.0425717 0.0226979 Vertex 19568 -0.0594817 0.0426754 0.0236965 Vertex 19569 -0.0604421 0.0427792 0.0246961 Vertex 19570 -0.0611631 0.0428583 0.0256966 Vertex 19571 -0.062122 0.0429616 0.0266943 Vertex 19572 -0.0627683 0.04307 0.0276693 Vertex 19573 -0.0633729 0.0431313 0.0286681 Vertex 19574 -0.0637535 0.0431846 0.0296789 Vertex 19575 -0.064012 0.0432207 0.0306772 Vertex 19576 -0.0641848 0.0432086 0.0316934 Vertex 19577 -0.0644549 0.043254 0.0326925 Vertex 19578 -0.0646832 0.0432745 0.0336962 Vertex 19579 -0.0645999 0.0432992 0.0347148 Vertex 19580 -0.0644598 0.0432795 0.035714 Vertex 19581 -0.0911185 0.128332 0.0402364 Vertex 19582 -0.0903815 0.130904 0.00623191 Vertex 19583 -0.0909161 0.13091 0.00724248 Vertex 19584 -0.079929 0.151371 0.00121035 Vertex 19585 -0.0737333 0.15548 -0.0259091 Vertex 19586 -0.0772884 0.155547 -0.0128979 Vertex 19587 -0.0771312 0.155572 -0.0108986 Vertex 19588 -0.091267 0.130919 0.00823808 Vertex 19589 -0.0697746 0.169428 -0.052035 Vertex 19590 -0.0669961 0.165196 -0.05701 Vertex 19591 -0.0916067 0.130926 0.00923792 Vertex 19592 -0.0332631 0.177035 -0.011981 Vertex 19593 -0.0532526 0.161216 -0.00188451 Vertex 19594 -0.0919325 0.130933 0.0102425 Vertex 19595 -0.0910473 0.139231 0.0181913 Vertex 19596 -0.0472127 0.168412 -0.001987 Vertex 19597 -0.0921564 0.130934 0.011242 Vertex 19598 -0.0679516 0.170855 -0.0560296 Vertex 19599 -0.0926993 0.124215 0.0352716 Vertex 19600 -0.0923435 0.115998 0.0113188 Vertex 19601 -0.0801061 0.109977 -0.00253557 Vertex 19602 -0.0393599 0.0418158 -0.0263353 Vertex 19603 -0.0399608 0.0418525 -0.0253044 Vertex 19604 -0.0404258 0.0418709 -0.0242648 Vertex 19605 -0.0412055 0.0419705 -0.0232873 Vertex 19606 -0.0427492 0.0421438 -0.0223063 Vertex 19607 -0.0431622 0.0422126 -0.0213185 Vertex 19608 -0.043534 0.0422491 -0.0203181 Vertex 19609 -0.0437917 0.0422818 -0.0193111 Vertex 19610 -0.043781 0.0422821 -0.0183128 Vertex 19611 -0.0440333 0.0423079 -0.0173091 Vertex 19612 -0.0445267 0.0423569 -0.0163056 Vertex 19613 -0.0447805 0.0423866 -0.0153071 Vertex 19614 -0.0451509 0.0424209 -0.0143059 Vertex 19615 -0.0456134 0.0424471 -0.0132755 Vertex 19616 -0.0459591 0.0424584 -0.0122548 Vertex 19617 -0.0460107 0.0426896 -0.0115747 Vertex 19618 0.0252372 0.0926012 -0.0220221 Vertex 19619 -0.0318469 0.0958266 -0.0236233 Vertex 19620 -0.0703317 0.172249 -0.0530308 Vertex 19621 -0.0881725 0.103664 0.0113862 Vertex 19622 -0.0844232 0.100698 -0.00156743 Vertex 19623 -0.0842625 0.100702 -0.00260902 Vertex 19624 -0.0627986 0.0441541 -0.00325511 Vertex 19625 -0.0637641 0.044271 -0.0022694 Vertex 19626 -0.0642751 0.044386 -0.00129652 Vertex 19627 -0.0649698 0.0444252 -0.000282601 Vertex 19628 -0.0658096 0.0445087 0.000718728 Vertex 19629 -0.0665472 0.0446244 0.00170489 Vertex 19630 -0.0669483 0.0447271 0.0026821 Vertex 19631 -0.067208 0.0447917 0.00368814 Vertex 19632 -0.0673041 0.044774 0.00468689 Vertex 19633 -0.0672001 0.044789 0.00569382 Vertex 19634 -0.0923833 0.130942 0.0122392 Vertex 19635 -0.0934473 0.129632 0.0182372 Vertex 19636 -0.0925249 0.130961 0.0132346 Vertex 19637 -0.0926331 0.130966 0.0142325 Vertex 19638 -0.0754019 0.151364 -0.0118956 Vertex 19639 -0.0753884 0.151441 -0.0109145 Vertex 19640 -0.0755472 0.15139 -0.00989046 Vertex 19641 -0.0757827 0.151399 -0.00889222 Vertex 19642 -0.0763465 0.151411 -0.00788806 Vertex 19643 -0.0926334 0.130971 0.0152338 Vertex 19644 -0.0562626 0.0437454 0.0167126 Vertex 19645 -0.0548438 0.043635 0.0177242 Vertex 19646 -0.0540808 0.0434992 0.0186914 Vertex 19647 -0.0542023 0.0435162 0.019691 Vertex 19648 -0.0546838 0.0435714 0.0206922 Vertex 19649 -0.0556415 0.043673 0.0216881 Vertex 19650 -0.0567225 0.043789 0.0226896 Vertex 19651 -0.0576821 0.0438911 0.0236882 Vertex 19652 -0.0584005 0.0439707 0.0246877 Vertex 19653 -0.0594833 0.0440844 0.0256893 Vertex 19654 -0.0602045 0.0441634 0.0266895 Vertex 19655 -0.0612844 0.044277 0.027687 Vertex 19656 -0.0618962 0.0443648 0.0286813 Vertex 19657 -0.0623664 0.0443972 0.0296888 Vertex 19658 -0.062996 0.0444935 0.0306768 Vertex 19659 -0.0633534 0.0445301 0.031682 Vertex 19660 -0.0636039 0.0445634 0.0326846 Vertex 19661 -0.0637123 0.0445754 0.0336875 Vertex 19662 -0.0635872 0.0445618 0.0346899 Vertex 19663 -0.0634695 0.0445577 0.0356919 Vertex 19664 -0.0632416 0.0445478 0.0366988 Vertex 19665 -0.0631227 0.0445391 0.0377156 Vertex 19666 -0.0926435 0.13098 0.0162303 Vertex 19667 -0.0731279 0.155455 -0.0309078 Vertex 19668 -0.0766628 0.155608 -0.00789132 Vertex 19669 -0.0501632 0.165541 -0.000963216 Vertex 19670 -0.0927674 0.130992 0.0172311 Vertex 19671 -0.0743109 0.165184 -0.0390136 Vertex 19672 -0.0674561 0.1652 -0.0559896 Vertex 19673 -0.0929968 0.130998 0.0182299 Vertex 19674 -0.0893902 0.139278 0.0291842 Vertex 19675 -0.0900419 0.139254 0.023178 Vertex 19676 -0.0737231 0.156865 -0.0279142 Vertex 19677 -0.0931085 0.131006 0.0192314 Vertex 19678 -0.0930104 0.131018 0.0202297 Vertex 19679 -0.013259 0.121231 -0.0103976 Vertex 19680 -0.0929853 0.13101 0.0212315 Vertex 19681 -0.0142526 0.181479 -0.0279552 Vertex 19682 -0.0927296 0.124224 0.0362665 Vertex 19683 -0.0917869 0.115969 0.00931507 Vertex 19684 -0.0371849 0.0430027 -0.0273252 Vertex 19685 -0.0382076 0.0431174 -0.0263315 Vertex 19686 -0.0387588 0.0432047 -0.0253505 Vertex 19687 -0.0393167 0.0432044 -0.0243027 Vertex 19688 -0.0402206 0.0433137 -0.0233156 Vertex 19689 -0.0417953 0.0435116 -0.0223513 Vertex 19690 -0.0422557 0.0435263 -0.021317 Vertex 19691 -0.0425222 0.0435673 -0.0203211 Vertex 19692 -0.0428901 0.0435976 -0.0193145 Vertex 19693 -0.042915 0.0436274 -0.0183221 Vertex 19694 -0.0431625 0.0436516 -0.0173214 Vertex 19695 -0.0435198 0.0436724 -0.0163157 Vertex 19696 -0.0440204 0.0437247 -0.0153148 Vertex 19697 -0.0442728 0.0437529 -0.0143172 Vertex 19698 -0.0446156 0.0437685 -0.0132939 Vertex 19699 -0.0451547 0.0437693 -0.0122411 Vertex 19700 -0.0323987 0.114036 -0.016697 Vertex 19701 -0.0628575 0.0953598 -0.0185102 Vertex 19702 -0.0328363 0.0957996 -0.0235469 Vertex 19703 0.038759 0.104954 -0.0010414 Vertex 19704 -0.0883984 0.103684 0.0133796 Vertex 19705 -0.0858283 0.1008 0.00139713 Vertex 19706 -0.0578284 0.0450681 -0.00544742 Vertex 19707 -0.0592389 0.0452743 -0.00430196 Vertex 19708 -0.0598716 0.0453976 -0.00333599 Vertex 19709 -0.0609254 0.0454597 -0.00231147 Vertex 19710 -0.0617588 0.0455326 -0.00130544 Vertex 19711 -0.0626845 0.0455625 -0.000282658 Vertex 19712 -0.0632995 0.045657 0.000708444 Vertex 19713 -0.0640343 0.0457636 0.00169557 Vertex 19714 -0.0646154 0.0457888 0.00269728 Vertex 19715 -0.0651006 0.0458549 0.00368955 Vertex 19716 -0.0653495 0.0459059 0.00467835 Vertex 19717 -0.0652563 0.0459546 0.00568144 Vertex 19718 -0.0645626 0.0459512 0.00669838 Vertex 19719 -0.0639717 0.0459278 0.00771742 Vertex 19720 -0.0928025 0.131035 0.0222365 Vertex 19721 -0.0893245 0.139298 0.0361742 Vertex 19722 -0.0926774 0.131034 0.0232376 Vertex 19723 -0.0911932 0.147489 0.0241289 Vertex 19724 -0.0913426 0.147495 0.0231401 Vertex 19725 -0.0925525 0.131032 0.0242364 Vertex 19726 -0.0548269 0.0450002 0.0157095 Vertex 19727 -0.0538714 0.0449084 0.0167075 Vertex 19728 -0.0530349 0.0448324 0.0176964 Vertex 19729 -0.0527601 0.0447727 0.0186838 Vertex 19730 -0.0528814 0.0447887 0.0196824 Vertex 19731 -0.0532393 0.0448331 0.0206817 Vertex 19732 -0.0539631 0.0449066 0.021682 Vertex 19733 -0.0548009 0.0449973 0.0226803 Vertex 19734 -0.0558801 0.045112 0.0236807 Vertex 19735 -0.0566015 0.0451895 0.0246815 Vertex 19736 -0.057322 0.0452663 0.0256799 Vertex 19737 -0.057924 0.0453324 0.0266819 Vertex 19738 -0.0591236 0.0454581 0.0276809 Vertex 19739 -0.0599631 0.0455474 0.028679 Vertex 19740 -0.0604443 0.0456013 0.0296807 Vertex 19741 -0.0610445 0.045667 0.0306816 Vertex 19742 -0.0615251 0.0457206 0.0316818 Vertex 19743 -0.0621264 0.0457845 0.0326787 Vertex 19744 -0.0623633 0.0458155 0.0336786 Vertex 19745 -0.0622817 0.0458517 0.0346831 Vertex 19746 -0.0621404 0.0458224 0.0356845 Vertex 19747 -0.0621205 0.0458041 0.0366793 Vertex 19748 -0.0619129 0.0458194 0.037691 Vertex 19749 -0.09234 0.131039 0.0252374 Vertex 19750 -0.0738566 0.161044 -0.0339379 Vertex 19751 -0.0790056 0.166641 -0.0359617 Vertex 19752 -0.0710521 0.173649 -0.0530415 Vertex 19753 -0.0394609 0.174124 -0.00699657 Vertex 19754 -0.0895247 0.139293 0.0351741 Vertex 19755 -0.0921191 0.131045 0.0262423 Vertex 19756 -0.0776418 0.158287 -0.0219264 Vertex 19757 -0.0723862 0.156822 -0.0359122 Vertex 19758 -0.0918654 0.131039 0.0272344 Vertex 19759 -0.0916243 0.131038 0.0282288 Vertex 19760 -0.0914166 0.131046 0.0292353 Vertex 19761 -0.0396002 0.125498 -0.0067103 Vertex 19762 -0.0533112 0.162693 5.53048e-05 Vertex 19763 -0.0340047 0.0386047 -0.0302796 Vertex 19764 -0.076428 0.148619 -0.00986569 Vertex 19765 -0.0926703 0.124234 0.0402542 Vertex 19766 -0.092816 0.124239 0.0392636 Vertex 19767 -0.0908004 0.115922 0.00730178 Vertex 19768 -0.0903482 0.115904 0.00630147 Vertex 19769 -0.0377025 0.0444987 -0.0253388 Vertex 19770 -0.0382462 0.044597 -0.024375 Vertex 19771 -0.0388087 0.0446425 -0.0234233 Vertex 19772 -0.0405771 0.0447491 -0.0223069 Vertex 19773 -0.0411389 0.0448599 -0.0213399 Vertex 19774 -0.0413793 0.0448727 -0.0203291 Vertex 19775 -0.0417517 0.0449058 -0.0193246 Vertex 19776 -0.0420037 0.0449364 -0.0183222 Vertex 19777 -0.0421354 0.0449426 -0.0173193 Vertex 19778 -0.0424968 0.0449805 -0.0163196 Vertex 19779 -0.0430213 0.0450576 -0.0153284 Vertex 19780 -0.0432762 0.0450842 -0.0143236 Vertex 19781 -0.043641 0.0451148 -0.0133235 Vertex 19782 -0.0441044 0.0451364 -0.0122986 Vertex 19783 0.00545294 0.1216 -0.0129959 Vertex 19784 0.0130443 0.113867 -0.0167218 Vertex 19785 -0.0744709 0.159641 -0.0299365 Vertex 19786 0.00232953 0.116694 -0.0177181 Vertex 19787 -0.0548596 0.0462919 -0.006395 Vertex 19788 -0.0559631 0.0464314 -0.00541258 Vertex 19789 -0.0572353 0.0465198 -0.0043437 Vertex 19790 -0.0579832 0.0466328 -0.00336399 Vertex 19791 -0.0586841 0.0466878 -0.00234651 Vertex 19792 -0.059258 0.0467212 -0.00132733 Vertex 19793 -0.0598545 0.0467827 -0.000327155 Vertex 19794 -0.0605819 0.0468615 0.000669297 Vertex 19795 -0.0611638 0.0468972 0.00167818 Vertex 19796 -0.0619808 0.0469192 0.00268857 Vertex 19797 -0.0620081 0.0469936 0.00367346 Vertex 19798 -0.0622483 0.0470201 0.00467011 Vertex 19799 -0.0619093 0.0470515 0.00567882 Vertex 19800 -0.0613177 0.0470312 0.00669678 Vertex 19801 -0.0911763 0.131044 0.0302322 Vertex 19802 -0.0910383 0.131037 0.0312282 Vertex 19803 -0.0723661 0.147118 -0.0228625 Vertex 19804 -0.0726068 0.147127 -0.0218633 Vertex 19805 -0.0729646 0.147133 -0.0208616 Vertex 19806 -0.0732036 0.147141 -0.0198634 Vertex 19807 -0.0733101 0.14716 -0.0188577 Vertex 19808 -0.0908528 0.131057 0.0322319 Vertex 19809 -0.0907216 0.131054 0.0332303 Vertex 19810 -0.0521757 0.0461175 0.0166821 Vertex 19811 -0.0515886 0.0460739 0.0176829 Vertex 19812 -0.0515626 0.0460585 0.0186779 Vertex 19813 -0.0519222 0.0461016 0.019678 Vertex 19814 -0.0522813 0.0461425 0.0206748 Vertex 19815 -0.0527617 0.0461943 0.0216742 Vertex 19816 -0.0532423 0.046246 0.0226735 Vertex 19817 -0.053845 0.0463107 0.0236764 Vertex 19818 -0.0548028 0.0464121 0.0246755 Vertex 19819 -0.0552814 0.0464664 0.0256754 Vertex 19820 -0.0558825 0.0465312 0.026676 Vertex 19821 -0.0567215 0.04662 0.0276747 Vertex 19822 -0.0576844 0.0467193 0.0286753 Vertex 19823 -0.058163 0.0467738 0.0296766 Vertex 19824 -0.0588838 0.0468495 0.0306747 Vertex 19825 -0.0592465 0.046889 0.0316721 Vertex 19826 -0.059725 0.0469427 0.0326718 Vertex 19827 -0.0599651 0.0469723 0.0336736 Vertex 19828 -0.0604426 0.0470258 0.0346715 Vertex 19829 -0.0603219 0.0470192 0.0356706 Vertex 19830 -0.0603651 0.0470889 0.0366883 Vertex 19831 -0.0906083 0.131058 0.0342318 Vertex 19832 -0.0705028 0.159578 -0.0459334 Vertex 19833 -0.0734581 0.168 -0.0440151 Vertex 19834 -0.0754377 0.172239 -0.0469918 Vertex 19835 -0.07915 0.166638 -0.0349654 Vertex 19836 -0.0718839 0.173642 -0.0520314 Vertex 19837 -0.0396036 0.174135 -0.00601981 Vertex 19838 -0.067202 0.162346 -0.0569974 Vertex 19839 -0.0517327 0.164109 0.00103678 Vertex 19840 -0.0714498 0.15679 -0.0419165 Vertex 19841 -0.0564562 0.159872 0.00406757 Vertex 19842 -0.0905823 0.131055 0.0352302 Vertex 19843 -0.090498 0.131069 0.0362301 Vertex 19844 -0.0682771 0.163789 -0.0539724 Vertex 19845 -0.053326 0.162717 0.00204741 Vertex 19846 -0.0533378 0.162724 0.0010506 Vertex 19847 -0.0429656 0.115061 -0.0157138 Vertex 19848 -0.0834635 0.136224 -0.000676656 Vertex 19849 -0.0787367 0.168047 -0.0389551 Vertex 19850 -0.0898014 0.11587 0.00528404 Vertex 19851 -0.0816885 0.110103 -0.000571623 Vertex 19852 -0.0858155 0.103519 0.00339021 Vertex 19853 -0.0396922 0.0460798 -0.021311 Vertex 19854 -0.0399677 0.0461402 -0.0203282 Vertex 19855 -0.0404433 0.0461446 -0.0193164 Vertex 19856 -0.0407154 0.0462046 -0.018322 Vertex 19857 -0.0409685 0.0462375 -0.0173222 Vertex 19858 -0.0418006 0.0462579 -0.0152948 Vertex 19859 -0.0420238 0.0464078 -0.0143471 Vertex 19860 -0.0425982 0.0463965 -0.0133084 Vertex 19861 -0.0427809 0.0464775 -0.012357 Vertex 19862 -0.0378459 0.0971527 -0.0224307 Vertex 19863 -0.0896675 0.150196 0.0231327 Vertex 19864 0.0140209 0.113717 -0.0165571 Vertex 19865 -0.0366211 0.124122 -0.00724685 Vertex 19866 -0.0539292 0.0475998 -0.00643542 Vertex 19867 -0.0551112 0.0477166 -0.00539308 Vertex 19868 -0.0559583 0.0478125 -0.00439058 Vertex 19869 -0.0566933 0.0478983 -0.00338525 Vertex 19870 -0.0572916 0.0479655 -0.00237378 Vertex 19871 -0.0577489 0.0479998 -0.00135721 Vertex 19872 -0.0581079 0.0480417 -0.000353036 Vertex 19873 -0.0584632 0.0480819 0.000648377 Vertex 19874 -0.0587181 0.0481161 0.00163754 Vertex 19875 -0.0588072 0.0481223 0.00266039 Vertex 19876 -0.0590287 0.0481317 0.00366474 Vertex 19877 -0.0589359 0.0481542 0.00467247 Vertex 19878 -0.0587501 0.0482189 0.00571238 Vertex 19879 -0.0584355 0.0482117 0.00674018 Vertex 19880 -0.0905552 0.131061 0.0372264 Vertex 19881 -0.0904612 0.131068 0.0382266 Vertex 19882 -0.0904123 0.13106 0.0392156 Vertex 19883 -0.0542457 0.0574384 0.01981 Vertex 19884 -0.0774249 0.155543 -0.015906 Vertex 19885 -0.0768287 0.154208 -0.00589938 Vertex 19886 -0.0510278 0.0474301 0.0166894 Vertex 19887 -0.0506381 0.0473796 0.0176699 Vertex 19888 -0.0508913 0.0474088 0.0186488 Vertex 19889 -0.0512486 0.0474505 0.019655 Vertex 19890 -0.0517139 0.047497 0.0206563 Vertex 19891 -0.0520755 0.0475411 0.0216528 Vertex 19892 -0.0525312 0.0475838 0.0226634 Vertex 19893 -0.0528967 0.0476266 0.0236645 Vertex 19894 -0.0532781 0.0476794 0.0246524 Vertex 19895 -0.0537237 0.0477139 0.0256667 Vertex 19896 -0.0542034 0.0477679 0.0266683 Vertex 19897 -0.0546836 0.0478194 0.0276676 Vertex 19898 -0.0552831 0.0478834 0.0286656 Vertex 19899 -0.0558854 0.0479468 0.0296668 Vertex 19900 -0.0562412 0.0479891 0.0306662 Vertex 19901 -0.0567258 0.0480405 0.0316684 Vertex 19902 -0.057205 0.0480928 0.032667 Vertex 19903 -0.0573263 0.0481094 0.0336642 Vertex 19904 -0.0570855 0.0480965 0.0356642 Vertex 19905 -0.0721444 0.145534 -0.0189034 Vertex 19906 -0.085483 0.140457 0.00319222 Vertex 19907 -0.0404175 0.171209 -0.00987004 Vertex 19908 -0.0870251 0.136346 0.00321516 Vertex 19909 -0.0791449 0.166643 -0.0339646 Vertex 19910 -0.0734863 0.173577 -0.0500848 Vertex 19911 -0.0727332 0.173623 -0.0510446 Vertex 19912 -0.0737921 0.165213 -0.0399888 Vertex 19913 0.0483631 0.0628304 -0.00297175 Vertex 19914 -0.0695833 0.156717 -0.0509483 Vertex 19915 0.0484803 0.0651161 -0.0012457 Vertex 19916 -0.0560047 0.159776 0.00109778 Vertex 19917 -0.0739499 0.156872 -0.0269145 Vertex 19918 -0.0710297 0.16381 -0.0459687 Vertex 19919 -0.0167629 0.120643 -0.00969861 Vertex 19920 0.0287509 0.0911639 -0.0204971 Vertex 19921 -0.0778454 0.158312 -0.0179205 Vertex 19922 -0.0131928 0.11434 -0.0171133 Vertex 19923 -0.0876158 0.136354 0.00421533 Vertex 19924 -0.0297371 0.179987 -0.0120259 Vertex 19925 -0.0889882 0.115854 0.0042936 Vertex 19926 -0.0825062 0.110166 0.000353593 Vertex 19927 -0.0354973 0.0470472 -0.0223112 Vertex 19928 -0.0366019 0.0472824 -0.0203909 Vertex 19929 -0.0372775 0.0472266 -0.0193178 Vertex 19930 -0.0378922 0.04725 -0.0183117 Vertex 19931 -0.0386245 0.0472623 -0.0172994 Vertex 19932 -0.0390182 0.0473551 -0.0162983 Vertex 19933 -0.0725348 0.149777 -0.0387435 Vertex 19934 -0.0792974 0.15265 0.00222093 Vertex 19935 -0.0764328 0.147234 -0.00786196 Vertex 19936 -0.0427281 0.0478381 -0.0112773 Vertex 19937 -0.0924128 0.11471 0.0173177 Vertex 19938 -0.0137302 0.107232 -0.0215702 Vertex 19939 -0.0084105 0.095275 -0.0329664 Vertex 19940 0.0149683 0.113515 -0.0163113 Vertex 19941 0.0195092 0.092819 -0.0242669 Vertex 19942 -0.0545162 0.049049 -0.0054035 Vertex 19943 -0.0553413 0.0491317 -0.00437815 Vertex 19944 -0.0560508 0.049202 -0.00336342 Vertex 19945 -0.0566837 0.0492811 -0.00237706 Vertex 19946 -0.0570669 0.0493259 -0.00137722 Vertex 19947 -0.0575339 0.0493779 -0.000368538 Vertex 19948 -0.0577765 0.0494102 0.000630355 Vertex 19949 -0.0580135 0.04944 0.00163802 Vertex 19950 -0.058126 0.0494622 0.00265482 Vertex 19951 -0.0581074 0.0494572 0.00366497 Vertex 19952 -0.0580456 0.0494852 0.00468232 Vertex 19953 -0.0579078 0.0494657 0.0056917 Vertex 19954 -0.0575671 0.0494422 0.00671449 Vertex 19955 -0.0829782 0.147345 0.00316952 Vertex 19956 -0.0903381 0.144712 0.0141544 Vertex 19957 -0.0908558 0.14471 0.0151666 Vertex 19958 -0.091229 0.14471 0.0161551 Vertex 19959 -0.0914681 0.144718 0.0171554 Vertex 19960 -0.0916784 0.144722 0.0181573 Vertex 19961 -0.091603 0.144731 0.0191577 Vertex 19962 -0.0933816 0.129671 0.0222434 Vertex 19963 -0.050859 0.0487888 0.015667 Vertex 19964 -0.0503124 0.0487527 0.0166746 Vertex 19965 -0.0502775 0.0487457 0.0176637 Vertex 19966 -0.0505039 0.0487703 0.0186583 Vertex 19967 -0.0507798 0.0488052 0.0196439 Vertex 19968 -0.0512571 0.0488673 0.0206327 Vertex 19969 -0.0517309 0.0489114 0.0216412 Vertex 19970 -0.0520878 0.0489475 0.0226481 Vertex 19971 -0.0524468 0.0489914 0.023647 Vertex 19972 -0.0527883 0.0490273 0.0246529 Vertex 19973 -0.0530142 0.0490552 0.0256583 Vertex 19974 -0.0531367 0.0490718 0.026657 Vertex 19975 -0.0534716 0.0490986 0.0276613 Vertex 19976 -0.0534917 0.0491191 0.0286591 Vertex 19977 -0.0537144 0.0491343 0.0296614 Vertex 19978 -0.0538363 0.0491492 0.0306601 Vertex 19979 -0.0537085 0.0491368 0.0316573 Vertex 19980 -0.0537204 0.0491564 0.0326591 Vertex 19981 -0.0534816 0.0491363 0.0336594 Vertex 19982 -0.0528781 0.0490838 0.0346622 Vertex 19983 -0.07512 0.161006 -0.0309706 Vertex 19984 -0.0879913 0.136375 0.00520661 Vertex 19985 -0.0748045 0.167943 -0.0420608 Vertex 19986 -0.0772499 0.172214 -0.0459981 Vertex 19987 -0.0790281 0.166651 -0.0329632 Vertex 19988 -0.07763 0.165322 -0.0259443 Vertex 19989 -0.0733158 0.165215 -0.0409863 Vertex 19990 -0.0701046 0.156748 -0.048906 Vertex 19991 -0.0697681 0.156742 -0.0499137 Vertex 19992 -0.0716519 0.156794 -0.0409079 Vertex 19993 -0.0726107 0.156829 -0.0349095 Vertex 19994 -0.073056 0.163825 -0.0399663 Vertex 19995 -0.0198254 0.120831 -0.00989132 Vertex 19996 0.0177118 0.0944604 -0.0240064 Vertex 19997 0.0187635 0.105558 -0.0177865 Vertex 19998 -0.0779406 0.158305 -0.0189233 Vertex 19999 0.0463602 0.0692197 0.00260588 Vertex 20000 0.0283679 0.103615 -0.0157324 Vertex 20001 0.029273 0.103313 -0.0154093 Vertex 20002 -0.0337147 0.120592 -0.00951232 Vertex 20003 -0.0305493 0.0479587 -0.0242789 Vertex 20004 -0.0315627 0.048073 -0.0232988 Vertex 20005 -0.0321132 0.0482449 -0.0223421 Vertex 20006 -0.0327389 0.0482896 -0.0213368 Vertex 20007 -0.0333755 0.0483636 -0.0203394 Vertex 20008 -0.0338728 0.0483909 -0.0193366 Vertex 20009 -0.0346068 0.0483825 -0.0183276 Vertex 20010 -0.0351198 0.0484277 -0.0173281 Vertex 20011 -0.0360083 0.0485228 -0.0153235 Vertex 20012 -0.0365564 0.0488017 -0.0133944 Vertex 20013 0.019292 0.0988007 -0.0225555 Vertex 20014 -0.0407044 0.0491484 -0.0113833 Vertex 20015 -0.0892062 0.128127 0.00426293 Vertex 20016 0.0223945 0.0860763 -0.025219 Vertex 20017 -0.0111844 0.110115 -0.0206413 Vertex 20018 -0.0194344 0.115555 -0.0163687 Vertex 20019 -0.0542668 0.0504201 -0.00539584 Vertex 20020 -0.0550517 0.0504886 -0.00434688 Vertex 20021 -0.0556004 0.0505584 -0.00338763 Vertex 20022 -0.0562999 0.0506286 -0.00237306 Vertex 20023 -0.056691 0.0506774 -0.00137882 Vertex 20024 -0.0570589 0.0507155 -0.000374425 Vertex 20025 -0.0574282 0.0507609 0.000628334 Vertex 20026 -0.0575581 0.0507849 0.00163524 Vertex 20027 -0.0577521 0.050802 0.00265023 Vertex 20028 -0.0576505 0.0508003 0.0036576 Vertex 20029 -0.0575086 0.0507939 0.00466306 Vertex 20030 -0.0573191 0.0507885 0.00568774 Vertex 20031 -0.0569855 0.0507747 0.00670607 Vertex 20032 -0.0745011 0.151286 -0.0298782 Vertex 20033 -0.0785959 0.152697 0.00118419 Vertex 20034 -0.0918002 0.143353 0.0191654 Vertex 20035 -0.0919004 0.143349 0.0181646 Vertex 20036 -0.0917872 0.143341 0.0171661 Vertex 20037 -0.0915486 0.143335 0.0161726 Vertex 20038 -0.0910658 0.143334 0.0151805 Vertex 20039 -0.0707001 0.15817 -0.0449161 Vertex 20040 -0.050356 0.0501549 0.0156949 Vertex 20041 -0.0500679 0.0501277 0.0166633 Vertex 20042 -0.050165 0.0501393 0.0176523 Vertex 20043 -0.0503924 0.0501648 0.0186468 Vertex 20044 -0.0506717 0.0501974 0.0196351 Vertex 20045 -0.0511359 0.0502476 0.0206335 Vertex 20046 -0.0515138 0.0502892 0.0216268 Vertex 20047 -0.0518625 0.050332 0.0226347 Vertex 20048 -0.0521106 0.0503642 0.0236349 Vertex 20049 -0.052431 0.0503969 0.0246465 Vertex 20050 -0.0525544 0.0504168 0.0256484 Vertex 20051 -0.0526579 0.0504274 0.026653 Vertex 20052 -0.0526608 0.0504363 0.0276515 Vertex 20053 -0.0526515 0.0504392 0.0286525 Vertex 20054 -0.0525421 0.050441 0.0296546 Vertex 20055 -0.0524537 0.0504524 0.0306643 Vertex 20056 -0.0522987 0.0504261 0.0316576 Vertex 20057 -0.0772757 0.148645 -0.0058688 Vertex 20058 -0.0761778 0.148614 -0.0108668 Vertex 20059 -0.0760388 0.148613 -0.0118618 Vertex 20060 -0.0823359 0.140394 0.000222625 Vertex 20061 -0.0806782 0.140364 -0.00279029 Vertex 20062 -0.0787812 0.166656 -0.0319662 Vertex 20063 -0.04134 0.171235 -0.00891614 Vertex 20064 -0.0792807 0.167978 -0.037009 Vertex 20065 -0.0917143 0.128313 0.0332436 Vertex 20066 -0.0500433 0.165539 -0.00195268 Vertex 20067 -0.0779524 0.165292 -0.0269536 Vertex 20068 -0.072846 0.165216 -0.0419869 Vertex 20069 0.0316481 0.100683 -0.014625 Vertex 20070 -0.0517306 0.164095 4.31123e-05 Vertex 20071 -0.0688973 0.120914 -0.00896239 Vertex 20072 -0.0787586 0.163869 -0.0289482 Vertex 20073 -0.0787597 0.163865 -0.0299483 Vertex 20074 -0.0830301 0.110196 0.00131843 Vertex 20075 -0.0368548 0.0985914 -0.0223265 Vertex 20076 -0.0234485 0.122824 -0.00599554 Vertex 20077 0.0234826 0.113521 -0.012343 Vertex 20078 0.00716942 0.125754 -0.00749941 Vertex 20079 -0.0320291 0.108616 -0.01899 Vertex 20080 0.0335254 0.101204 -0.0131717 Vertex 20081 0.0343242 0.100732 -0.0126444 Vertex 20082 -0.0772978 0.0685904 0.0138065 Vertex 20083 -0.0285919 0.0494861 -0.0235098 Vertex 20084 -0.0293549 0.0495451 -0.022456 Vertex 20085 -0.0301219 0.0493909 -0.0214267 Vertex 20086 -0.0306153 0.0495713 -0.0203608 Vertex 20087 -0.031608 0.0496402 -0.0193495 Vertex 20088 -0.0321125 0.0496937 -0.0183514 Vertex 20089 -0.0318598 0.0496767 -0.0173511 Vertex 20090 -0.0323685 0.0497273 -0.0163483 Vertex 20091 -0.0330003 0.0497903 -0.0153502 Vertex 20092 -0.0333802 0.0498304 -0.01435 Vertex 20093 -0.0340151 0.0498932 -0.013349 Vertex 20094 -0.034733 0.0498868 -0.0123113 Vertex 20095 0.0261457 0.100404 -0.0183041 Vertex 20096 0.000886159 0.12297 -0.0104051 Vertex 20097 0.0453693 0.0693828 0.00245115 Vertex 20098 0.0338375 0.109906 -0.00644408 Vertex 20099 -0.00992774 0.110288 -0.021044 Vertex 20100 -0.0529425 0.0516633 -0.00638853 Vertex 20101 -0.0541007 0.0517729 -0.00535724 Vertex 20102 -0.0548347 0.0518559 -0.00436961 Vertex 20103 -0.0554751 0.0519418 -0.00338574 Vertex 20104 -0.05597 0.0519966 -0.00239063 Vertex 20105 -0.0564446 0.0520481 -0.00138381 Vertex 20106 -0.0569078 0.052097 -0.000371255 Vertex 20107 -0.057093 0.0521243 0.00061739 Vertex 20108 -0.0573264 0.0521522 0.00163442 Vertex 20109 -0.057408 0.0521648 0.00264452 Vertex 20110 -0.057288 0.0521607 0.00365094 Vertex 20111 -0.0570587 0.0521462 0.00466373 Vertex 20112 -0.0568525 0.0521385 0.00567837 Vertex 20113 -0.0566078 0.0521283 0.00668717 Vertex 20114 -0.0562674 0.0521079 0.00770249 Vertex 20115 0.0321311 0.10568 -0.0119259 Vertex 20116 -0.0463694 0.113628 -0.0162147 Vertex 20117 -0.0719603 0.0681626 0.0276375 Vertex 20118 -0.0718839 0.142969 -0.00986002 Vertex 20119 -0.072621 0.142849 -0.00891964 Vertex 20120 -0.0734528 0.143001 -0.00787011 Vertex 20121 -0.0356565 0.122935 -0.00798984 Vertex 20122 -0.0756983 0.148597 -0.0138657 Vertex 20123 -0.0499126 0.0515141 0.0166499 Vertex 20124 -0.0501479 0.0515412 0.017644 Vertex 20125 -0.0503178 0.0515583 0.0186309 Vertex 20126 -0.0506614 0.0515945 0.0196285 Vertex 20127 -0.051023 0.051637 0.0206282 Vertex 20128 -0.0513914 0.0516798 0.0216239 Vertex 20129 -0.0517393 0.0517191 0.022632 Vertex 20130 -0.0519836 0.0517496 0.0236325 Vertex 20131 -0.0522094 0.0517797 0.0246371 Vertex 20132 -0.0523159 0.0517943 0.0256431 Vertex 20133 -0.0523188 0.0518 0.026645 Vertex 20134 -0.0522959 0.0518057 0.0276471 Vertex 20135 -0.0521768 0.0517998 0.0286453 Vertex 20136 -0.0520592 0.0517918 0.0296489 Vertex 20137 -0.0518346 0.0517811 0.0306554 Vertex 20138 -0.0206234 0.0950485 -0.0308006 Vertex 20139 -0.00265934 0.098112 -0.0279111 Vertex 20140 0.0288107 0.113482 -0.00830654 Vertex 20141 -0.000346509 0.12561 -0.00723663 Vertex 20142 -0.0811978 0.140383 -0.00182247 Vertex 20143 -0.0758985 0.159659 -0.0269354 Vertex 20144 -0.0735846 0.159652 -0.032921 Vertex 20145 -0.0733446 0.159645 -0.0339252 Vertex 20146 -0.0632121 0.172304 -0.0615699 Vertex 20147 -0.0821064 0.110205 0.0294137 Vertex 20148 -0.0589036 0.112559 -0.0155981 Vertex 20149 -0.0745628 0.173554 -0.0490908 Vertex 20150 -0.0843958 0.13208 -0.00165487 Vertex 20151 -0.0736747 0.166615 -0.0419946 Vertex 20152 -0.0670834 0.168031 -0.0569976 Vertex 20153 -0.0722291 0.166627 -0.044985 Vertex 20154 -0.0339085 0.177047 -0.0109944 Vertex 20155 -0.0718751 0.150885 -0.0428436 Vertex 20156 0.0269727 0.112042 -0.0107557 Vertex 20157 -0.0330922 0.108613 -0.0189923 Vertex 20158 -0.0340031 0.1089 -0.0192874 Vertex 20159 -0.0308889 0.108768 -0.0191524 Vertex 20160 0.0251623 0.118606 -0.00580398 Vertex 20161 -0.0274704 0.0506795 -0.0243965 Vertex 20162 -0.028252 0.050761 -0.0234049 Vertex 20163 -0.0289103 0.0508426 -0.0224168 Vertex 20164 -0.0292764 0.0508797 -0.0213979 Vertex 20165 -0.0297126 0.0508986 -0.0203549 Vertex 20166 -0.0297131 0.0509006 -0.0193584 Vertex 20167 -0.0300925 0.0509394 -0.0183595 Vertex 20168 -0.0305996 0.0509893 -0.0173575 Vertex 20169 -0.0307264 0.0510087 -0.0163552 Vertex 20170 -0.0311133 0.0510509 -0.015361 Vertex 20171 -0.0313625 0.0510794 -0.0143586 Vertex 20172 -0.0316347 0.0511137 -0.0133654 Vertex 20173 -0.0321386 0.0511687 -0.0124242 Vertex 20174 -0.0899797 0.128138 0.00527223 Vertex 20175 0.0101258 0.125306 -0.00703851 Vertex 20176 0.0344124 0.0957227 -0.013333 Vertex 20177 -0.0579856 0.116646 -0.0132522 Vertex 20178 -0.00878563 0.110674 -0.0212403 Vertex 20179 -0.0530895 0.0530892 -0.00643833 Vertex 20180 -0.0541101 0.0531993 -0.0053725 Vertex 20181 -0.0548606 0.0532734 -0.00439052 Vertex 20182 -0.0554557 0.0533368 -0.00338183 Vertex 20183 -0.0558448 0.0533792 -0.00239414 Vertex 20184 -0.0563149 0.0534289 -0.00138708 Vertex 20185 -0.0567014 0.0534733 -0.0003903 Vertex 20186 -0.056967 0.0535025 0.000612409 Vertex 20187 -0.0570931 0.0535244 0.00162534 Vertex 20188 -0.0571034 0.0535249 0.00264062 Vertex 20189 -0.0569845 0.0535242 0.00365398 Vertex 20190 -0.0567588 0.053509 0.00466959 Vertex 20191 -0.0565132 0.053486 0.0056729 Vertex 20192 -0.0562701 0.0534697 0.00668599 Vertex 20193 -0.055978 0.0534457 0.00767233 Vertex 20194 -0.0555067 0.053407 0.0086882 Vertex 20195 -0.0852791 0.132127 -0.000702015 Vertex 20196 -0.0908661 0.142018 0.0261694 Vertex 20197 -0.0322652 0.177059 -0.0129859 Vertex 20198 -0.0860119 0.132159 0.00027761 Vertex 20199 -0.0865336 0.141884 0.00820248 Vertex 20200 -0.0728796 0.151218 -0.0388899 Vertex 20201 -0.0498767 0.0529199 0.0166388 Vertex 20202 -0.0501571 0.0529434 0.0176286 Vertex 20203 -0.0504372 0.0529682 0.0186225 Vertex 20204 -0.0507826 0.0530079 0.0196214 Vertex 20205 -0.0510483 0.053037 0.0206135 Vertex 20206 -0.0513902 0.0530791 0.0216216 Vertex 20207 -0.051623 0.0531083 0.0226238 Vertex 20208 -0.0519529 0.0531525 0.0236322 Vertex 20209 -0.0521038 0.0531706 0.024633 Vertex 20210 -0.0521911 0.0531856 0.0256383 Vertex 20211 -0.0521805 0.0531921 0.0266366 Vertex 20212 -0.052068 0.0531865 0.02764 Vertex 20213 -0.0519782 0.0531903 0.0286494 Vertex 20214 -0.0518133 0.0531756 0.0296409 Vertex 20215 -0.0515376 0.053149 0.0306286 Vertex 20216 -0.0911321 0.146088 0.0161475 Vertex 20217 -0.085237 0.147388 0.00618456 Vertex 20218 -0.0776508 0.152845 -0.000892884 Vertex 20219 -0.0776289 0.158329 -0.0159141 Vertex 20220 -0.0709701 0.155369 -0.0459101 Vertex 20221 -0.0711896 0.155374 -0.0449035 Vertex 20222 -0.0713282 0.155382 -0.0439108 Vertex 20223 -0.0730243 0.159629 -0.0349322 Vertex 20224 -0.0457839 0.11676 -0.0154906 Vertex 20225 -0.0372368 0.172627 -0.0118528 Vertex 20226 -0.0383111 0.172675 -0.0109203 Vertex 20227 -0.076914 0.17371 -0.0479126 Vertex 20228 -0.0689178 0.168027 -0.0530164 Vertex 20229 -0.0742721 0.166608 -0.0409997 Vertex 20230 -0.0694963 0.16803 -0.0520069 Vertex 20231 -0.0726162 0.166612 -0.0440006 Vertex 20232 -0.0346349 0.176996 -0.009991 Vertex 20233 -0.0714142 0.166619 -0.0469903 Vertex 20234 -0.0272958 0.178509 -0.0169626 Vertex 20235 -0.0707159 0.179287 -0.0569572 Vertex 20236 0.0208126 0.114503 -0.0133998 Vertex 20237 0.0226051 0.113885 -0.0127298 Vertex 20238 0.0243113 0.119024 -0.0062727 Vertex 20239 -0.0349471 0.109117 -0.019515 Vertex 20240 0.0451585 0.0670735 0.000845212 Vertex 20241 -0.0262156 0.0519422 -0.0264212 Vertex 20242 -0.0270871 0.0520359 -0.0253933 Vertex 20243 -0.0277337 0.0521019 -0.0243965 Vertex 20244 -0.028354 0.0521667 -0.0233844 Vertex 20245 -0.0289948 0.0522303 -0.0223864 Vertex 20246 -0.0293388 0.0522666 -0.0213646 Vertex 20247 -0.029592 0.0522946 -0.0203629 Vertex 20248 -0.0297187 0.0523119 -0.0193651 Vertex 20249 -0.0299722 0.0523401 -0.0183637 Vertex 20250 -0.0302252 0.0523701 -0.0173649 Vertex 20251 -0.0304781 0.0523954 -0.0163632 Vertex 20252 -0.0306051 0.0524133 -0.0153638 Vertex 20253 -0.0308908 0.0524482 -0.0143777 Vertex 20254 -0.0314187 0.0525029 -0.0133876 Vertex 20255 -0.0319013 0.0525534 -0.0124561 Vertex 20256 -0.0906583 0.12815 0.00627512 Vertex 20257 0.0239815 0.12134 -0.00278507 Vertex 20258 0.0360129 0.0947297 -0.0122566 Vertex 20259 -0.0534255 0.124412 -0.00739059 Vertex 20260 -0.0146115 0.109635 -0.0201085 Vertex 20261 -0.0534778 0.0544994 -0.00645482 Vertex 20262 -0.0542529 0.0545999 -0.00539104 Vertex 20263 -0.0548571 0.0546624 -0.0043828 Vertex 20264 -0.0553478 0.054711 -0.00338754 Vertex 20265 -0.0557401 0.0547516 -0.00240302 Vertex 20266 -0.0562131 0.054804 -0.00139993 Vertex 20267 -0.0565994 0.0548437 -0.000400453 Vertex 20268 -0.0568794 0.0548721 0.000601057 Vertex 20269 -0.0569665 0.0548885 0.00161507 Vertex 20270 -0.0569818 0.0548922 0.00263009 Vertex 20271 -0.0569142 0.0548839 0.00364185 Vertex 20272 -0.0567448 0.0548796 0.00465654 Vertex 20273 -0.0565139 0.0548538 0.00566103 Vertex 20274 -0.0562967 0.0548357 0.00668262 Vertex 20275 -0.0559148 0.0548054 0.00768529 Vertex 20276 -0.0555013 0.0547806 0.00866941 Vertex 20277 -0.0548009 0.0547174 0.00969263 Vertex 20278 -0.0540496 0.0546601 0.0106814 Vertex 20279 -0.0887393 0.0928617 0.00944255 Vertex 20280 -0.0886141 0.0928486 0.00844707 Vertex 20281 -0.0935499 0.129634 0.0192397 Vertex 20282 -0.0705717 0.158164 -0.0459142 Vertex 20283 -0.0834736 0.114211 -0.000781836 Vertex 20284 -0.0502601 0.0543084 0.0166402 Vertex 20285 -0.0505534 0.0543594 0.017626 Vertex 20286 -0.0507038 0.0543653 0.0186143 Vertex 20287 -0.0512591 0.0544504 0.0206222 Vertex 20288 -0.0514909 0.0544833 0.0216233 Vertex 20289 -0.0517378 0.0545135 0.0226244 Vertex 20290 -0.0519166 0.0545256 0.0236155 Vertex 20291 -0.0520389 0.0545474 0.0246248 Vertex 20292 -0.0521172 0.0545658 0.0256302 Vertex 20293 -0.0520861 0.0545712 0.0266312 Vertex 20294 -0.0519883 0.0545681 0.0276385 Vertex 20295 -0.0518469 0.0545626 0.0286406 Vertex 20296 -0.0516 0.0545447 0.0296397 Vertex 20297 -0.0513204 0.0545255 0.0306253 Vertex 20298 -0.089646 0.0929438 0.0164332 Vertex 20299 -0.0861662 0.147397 0.00721409 Vertex 20300 -0.0731886 0.149857 -0.036868 Vertex 20301 -0.0864372 0.14049 0.00618869 Vertex 20302 -0.0892506 0.151522 0.0201032 Vertex 20303 -0.0725251 0.155433 -0.0349062 Vertex 20304 -0.0728889 0.159628 -0.0359308 Vertex 20305 0.0130795 0.0927597 -0.0282037 Vertex 20306 -0.0393243 0.172677 -0.00992732 Vertex 20307 -0.0491873 0.165537 -0.00392571 Vertex 20308 -0.0779905 0.173544 -0.0470087 Vertex 20309 -0.0724818 0.165221 -0.0429802 Vertex 20310 0.0333229 0.0997779 -0.013667 Vertex 20311 -0.051609 0.164108 -0.000948719 Vertex 20312 -0.0771326 0.163938 -0.0219397 Vertex 20313 -0.0782928 0.163856 -0.0319501 Vertex 20314 -0.0786152 0.163841 -0.0309629 Vertex 20315 -0.026226 0.178551 -0.0179991 Vertex 20316 -0.069435 0.179317 -0.0579979 Vertex 20317 -0.0884616 0.136381 0.00620417 Vertex 20318 -0.020729 0.181491 -0.0220031 Vertex 20319 0.0113952 0.116794 -0.0158535 Vertex 20320 0.0217183 0.114203 -0.013082 Vertex 20321 -0.00542543 0.120041 -0.0132322 Vertex 20322 -0.0359339 0.109235 -0.0196158 Vertex 20323 0.029581 0.0907082 -0.0200166 Vertex 20324 -0.0255625 0.0532992 -0.0274025 Vertex 20325 -0.0265758 0.0533991 -0.0263925 Vertex 20326 -0.0273632 0.0534705 -0.0254085 Vertex 20327 -0.0278785 0.0535209 -0.0244081 Vertex 20328 -0.0283702 0.0535742 -0.0233936 Vertex 20329 -0.0289733 0.0536405 -0.0223788 Vertex 20330 -0.0296157 0.053701 -0.0213818 Vertex 20331 -0.0298753 0.0537337 -0.0203803 Vertex 20332 -0.0301034 0.0537602 -0.0193727 Vertex 20333 -0.0302302 0.0537755 -0.0183734 Vertex 20334 -0.0303571 0.0537911 -0.0173707 Vertex 20335 -0.0304827 0.0538056 -0.016375 Vertex 20336 -0.0307362 0.053835 -0.015374 Vertex 20337 -0.0312435 0.0538841 -0.0143722 Vertex 20338 -0.0315509 0.053914 -0.013393 Vertex 20339 -0.055732 0.115927 -0.0145408 Vertex 20340 -0.091226 0.128161 0.00727002 Vertex 20341 0.0368044 0.0942002 -0.0116901 Vertex 20342 0.0313221 0.0899509 -0.0192278 Vertex 20343 -0.0156647 0.109623 -0.0201068 Vertex 20344 -0.053816 0.0559281 -0.00642904 Vertex 20345 -0.054537 0.0560032 -0.00541843 Vertex 20346 -0.0550269 0.0560444 -0.00440953 Vertex 20347 -0.0553956 0.0560936 -0.00341211 Vertex 20348 -0.0557658 0.0561367 -0.00241411 Vertex 20349 -0.0562219 0.0560519 -0.00142054 Vertex 20350 -0.0566027 0.0562228 -0.000407584 Vertex 20351 -0.0568935 0.0562594 0.000567085 Vertex 20352 -0.057137 0.0562876 0.0015684 Vertex 20353 -0.05709 0.0562779 0.00261705 Vertex 20354 -0.0570496 0.0562866 0.00362097 Vertex 20355 -0.0569735 0.056267 0.00463231 Vertex 20356 -0.0568589 0.0562507 0.00563881 Vertex 20357 -0.056621 0.0562362 0.00665228 Vertex 20358 -0.0563207 0.0562341 0.00763908 Vertex 20359 -0.0558064 0.0562012 0.00862658 Vertex 20360 -0.0551543 0.0561755 0.00960447 Vertex 20361 -0.0544145 0.0561001 0.0105768 Vertex 20362 -0.05375 0.0560385 0.0116204 Vertex 20363 -0.052909 0.0559665 0.0126205 Vertex 20364 -0.052188 0.0559056 0.0136207 Vertex 20365 -0.0515872 0.0558557 0.0146208 Vertex 20366 -0.0870302 0.13217 0.00132034 Vertex 20367 -0.0879876 0.132208 0.00230713 Vertex 20368 -0.0887459 0.132238 0.00325707 Vertex 20369 -0.0894337 0.132252 0.00424863 Vertex 20370 -0.0898976 0.132262 0.00523931 Vertex 20371 -0.0902473 0.132271 0.00623314 Vertex 20372 -0.090578 0.13228 0.00723516 Vertex 20373 -0.0909281 0.132287 0.0082314 Vertex 20374 -0.0911632 0.132299 0.00922827 Vertex 20375 -0.0913959 0.132306 0.0102259 Vertex 20376 -0.0916136 0.132311 0.0112256 Vertex 20377 -0.0520943 0.0559627 0.0266271 Vertex 20378 -0.0520552 0.0559741 0.0276222 Vertex 20379 -0.0518399 0.0559545 0.028629 Vertex 20380 -0.0515738 0.0559395 0.0296214 Vertex 20381 -0.0917522 0.132325 0.0122241 Vertex 20382 -0.0920259 0.132307 0.0132318 Vertex 20383 -0.0872007 0.147399 0.00826035 Vertex 20384 -0.088267 0.147416 0.00925394 Vertex 20385 -0.092269 0.124069 0.00827163 Vertex 20386 -0.0735938 0.149845 -0.0348818 Vertex 20387 -0.0921542 0.132321 0.0142287 Vertex 20388 -0.0732612 0.155462 -0.02991 Vertex 20389 -0.0702704 0.159573 -0.0469358 Vertex 20390 -0.0662858 0.172388 -0.0591199 Vertex 20391 -0.0401081 0.172699 -0.00896014 Vertex 20392 -0.0484709 0.165547 -0.00491912 Vertex 20393 -0.0475211 0.165506 -0.00586183 Vertex 20394 -0.0782079 0.165287 -0.027954 Vertex 20395 -0.0886846 0.136388 0.00720801 Vertex 20396 -0.0889001 0.136394 0.00820864 Vertex 20397 -0.0716942 0.1568 -0.0399156 Vertex 20398 -0.0727656 0.156832 -0.0339136 Vertex 20399 -0.0726963 0.163825 -0.0409661 Vertex 20400 -0.0282073 0.178522 -0.0159874 Vertex 20401 -0.0719403 0.179282 -0.0559874 Vertex 20402 -0.0199542 0.180019 -0.0229778 Vertex 20403 -0.0197362 0.181499 -0.0230211 Vertex 20404 -0.0187788 0.181486 -0.0239544 Vertex 20405 0.019893 0.114777 -0.0136897 Vertex 20406 -0.0107414 0.120001 -0.0131465 Vertex 20407 -0.0033398 0.119986 -0.0131833 Vertex 20408 0.0217844 0.118301 -0.00950952 Vertex 20409 -0.0158888 0.123338 -0.00654807 Vertex 20410 -0.0260773 0.0547586 -0.0274003 Vertex 20411 -0.0268504 0.0548324 -0.0264063 Vertex 20412 -0.0275816 0.0549129 -0.0253866 Vertex 20413 -0.0280896 0.0549613 -0.0243859 Vertex 20414 -0.028497 0.0550003 -0.0233987 Vertex 20415 -0.0290048 0.0550494 -0.0223991 Vertex 20416 -0.0296143 0.0551126 -0.0213868 Vertex 20417 -0.0298766 0.05514 -0.0203901 Vertex 20418 -0.0301429 0.0551656 -0.0193914 Vertex 20419 -0.0303622 0.055196 -0.0183802 Vertex 20420 -0.0306152 0.0552238 -0.0173804 Vertex 20421 -0.0306156 0.0552316 -0.0163811 Vertex 20422 -0.0307428 0.0552453 -0.0153798 Vertex 20423 -0.0313759 0.0553098 -0.0143786 Vertex 20424 -0.0316861 0.0553325 -0.0133983 Vertex 20425 -0.0320271 0.0553591 -0.0124271 Vertex 20426 -0.0890224 0.136404 0.0092064 Vertex 20427 0.031191 0.0977616 -0.015509 Vertex 20428 -0.00760592 0.125948 -0.00752899 Vertex 20429 -0.018657 0.109944 -0.0204332 Vertex 20430 -0.0533429 0.0572662 -0.00744815 Vertex 20431 -0.054281 0.0573695 -0.00641449 Vertex 20432 -0.0548976 0.0574275 -0.00541424 Vertex 20433 -0.0554111 0.0574706 -0.0044262 Vertex 20434 -0.0556551 0.0575 -0.00342108 Vertex 20435 -0.05601 0.0575293 -0.00241387 Vertex 20436 -0.0563673 0.0575771 -0.00141956 Vertex 20437 -0.0567391 0.0576068 -0.000420382 Vertex 20438 -0.0571213 0.0576422 0.00058007 Vertex 20439 -0.0572784 0.0576838 0.00160501 Vertex 20440 -0.0574379 0.0576833 0.0026039 Vertex 20441 -0.0575628 0.0576989 0.003607 Vertex 20442 -0.0578484 0.0576892 0.00460939 Vertex 20443 -0.0581165 0.0576994 0.00562055 Vertex 20444 -0.0579872 0.0576809 0.00662705 Vertex 20445 -0.0575464 0.0576229 0.00774375 Vertex 20446 -0.0572185 0.0575347 0.00867749 Vertex 20447 -0.0567221 0.0575063 0.0096837 Vertex 20448 -0.0566159 0.0573558 0.0107416 Vertex 20449 -0.0891532 0.136419 0.0102028 Vertex 20450 -0.0894686 0.136415 0.011209 Vertex 20451 -0.0895793 0.136441 0.0122186 Vertex 20452 -0.0898897 0.136442 0.013225 Vertex 20453 -0.090059 0.136447 0.0142016 Vertex 20454 -0.0902912 0.136455 0.0152001 Vertex 20455 -0.0545965 0.0575496 0.0196126 Vertex 20456 -0.0921816 0.132336 0.0152245 Vertex 20457 -0.0788622 0.169438 -0.0409605 Vertex 20458 -0.0690053 0.160967 -0.0519594 Vertex 20459 -0.0684162 0.160948 -0.0539628 Vertex 20460 -0.0862104 0.140486 0.00518463 Vertex 20461 -0.0921938 0.132347 0.0162256 Vertex 20462 -0.0523174 0.057382 0.0266177 Vertex 20463 -0.0921802 0.132348 0.0172238 Vertex 20464 -0.0923144 0.132364 0.0182222 Vertex 20465 -0.0923991 0.132355 0.0192227 Vertex 20466 -0.0923959 0.132359 0.0202239 Vertex 20467 -0.0923003 0.132372 0.0212228 Vertex 20468 -0.0921005 0.132392 0.0222257 Vertex 20469 -0.0423266 0.169779 -0.00887745 Vertex 20470 -0.0693203 0.155248 -0.0509683 Vertex 20471 -0.0734288 0.149863 -0.0358672 Vertex 20472 -0.0738057 0.149865 -0.0338746 Vertex 20473 -0.0892169 0.151457 0.0141575 Vertex 20474 -0.0733818 0.155466 -0.0289107 Vertex 20475 -0.0701217 0.159568 -0.0479252 Vertex 20476 -0.0783796 0.172116 -0.0450441 Vertex 20477 -0.0408947 0.172668 -0.00780492 Vertex 20478 -0.0496802 0.165544 -0.00294037 Vertex 20479 -0.0919787 0.13239 0.0232249 Vertex 20480 -0.0917744 0.132406 0.0242297 Vertex 20481 -0.0736067 0.154075 -0.0289008 Vertex 20482 -0.0280887 0.123076 -0.00418723 Vertex 20483 -0.0916354 0.132395 0.0252256 Vertex 20484 -0.0740871 0.156873 -0.0259173 Vertex 20485 -0.0706825 0.163806 -0.0469738 Vertex 20486 -0.0731314 0.179106 -0.0550054 Vertex 20487 -0.021119 0.180019 -0.0220004 Vertex 20488 -0.0548939 0.161294 0.00305835 Vertex 20489 -0.0217097 0.181473 -0.0209735 Vertex 20490 -0.01522 0.183001 -0.0269465 Vertex 20491 -0.0275613 0.121213 -0.00819283 Vertex 20492 -0.00964195 0.120097 -0.0132573 Vertex 20493 0.0208541 0.11855 -0.00976629 Vertex 20494 -0.0135852 0.123715 -0.00700086 Vertex 20495 -0.0246897 0.0560336 -0.0294195 Vertex 20496 -0.0258331 0.0561399 -0.0284181 Vertex 20497 -0.0265985 0.0562164 -0.027412 Vertex 20498 -0.0272272 0.0562777 -0.0264072 Vertex 20499 -0.0276317 0.056316 -0.0254148 Vertex 20500 -0.0281182 0.0563778 -0.0244009 Vertex 20501 -0.0286059 0.0564269 -0.0233938 Vertex 20502 -0.0292201 0.0564848 -0.022383 Vertex 20503 -0.0295123 0.0565107 -0.0214026 Vertex 20504 -0.0298952 0.0565521 -0.0204023 Vertex 20505 -0.0303843 0.0566029 -0.0193937 Vertex 20506 -0.0305406 0.0566147 -0.0184018 Vertex 20507 -0.0308041 0.0566412 -0.01742 Vertex 20508 -0.0308747 0.056662 -0.0163864 Vertex 20509 -0.0311277 0.0566897 -0.0153882 Vertex 20510 -0.0313808 0.0567165 -0.0143886 Vertex 20511 -0.0317613 0.0567558 -0.0133876 Vertex 20512 -0.032014 0.0567822 -0.0123897 Vertex 20513 0.0320036 0.0972394 -0.014969 Vertex 20514 -0.0578149 0.12313 -0.00798101 Vertex 20515 -0.0197211 0.109971 -0.0204733 Vertex 20516 0.0494272 0.0628335 -0.00296645 Vertex 20517 -0.053919 0.0587242 -0.00741756 Vertex 20518 -0.0546717 0.0587861 -0.00643621 Vertex 20519 -0.0552695 0.058846 -0.00542677 Vertex 20520 -0.0558395 0.0589131 -0.0044052 Vertex 20521 -0.0562018 0.0589495 -0.00340637 Vertex 20522 -0.0564836 0.0589584 -0.00242578 Vertex 20523 -0.0567945 0.0589511 -0.00142935 Vertex 20524 -0.0572843 0.0589766 -0.000464382 Vertex 20525 -0.0577441 0.0590406 0.000553128 Vertex 20526 -0.0582892 0.0589697 0.00149643 Vertex 20527 -0.0584646 0.0588965 0.0024905 Vertex 20528 -0.0586963 0.0588331 0.00348495 Vertex 20529 -0.0905147 0.136459 0.016202 Vertex 20530 -0.0907186 0.136468 0.0172046 Vertex 20531 -0.0908309 0.136473 0.0182032 Vertex 20532 -0.0907522 0.136478 0.0191999 Vertex 20533 -0.0906746 0.1365 0.0201946 Vertex 20534 -0.0904343 0.136488 0.021207 Vertex 20535 -0.0748224 0.0935599 -0.014192 Vertex 20536 -0.0391888 0.168166 -0.0121398 Vertex 20537 0.0171734 0.0960138 -0.0234178 Vertex 20538 -0.0914347 0.132413 0.0262297 Vertex 20539 -0.0912019 0.132413 0.0272298 Vertex 20540 -0.0640121 0.136992 -0.00763419 Vertex 20541 -0.0901963 0.136492 0.0222062 Vertex 20542 -0.0898794 0.136494 0.0232114 Vertex 20543 -0.0896015 0.136498 0.0242003 Vertex 20544 -0.0792333 0.169423 -0.0379787 Vertex 20545 -0.0910601 0.132402 0.0282222 Vertex 20546 -0.0908205 0.132399 0.0292201 Vertex 20547 -0.0905234 0.132421 0.0302253 Vertex 20548 -0.0903832 0.132413 0.0312232 Vertex 20549 -0.0833865 0.140392 0.00124854 Vertex 20550 -0.0780672 0.161102 -0.0219327 Vertex 20551 -0.0622101 0.169551 -0.0614764 Vertex 20552 -0.0692517 0.16944 -0.0530112 Vertex 20553 -0.0714721 0.152551 -0.0449162 Vertex 20554 -0.0709606 0.152484 -0.0460812 Vertex 20555 -0.0728652 0.170808 -0.0480355 Vertex 20556 -0.074114 0.159638 -0.0309374 Vertex 20557 -0.071061 0.15959 -0.0439233 Vertex 20558 -0.0742711 0.149885 -0.0318724 Vertex 20559 -0.0887794 0.151473 0.0131594 Vertex 20560 -0.0735022 0.155469 -0.0279133 Vertex 20561 -0.0697973 0.159564 -0.0489352 Vertex 20562 -0.0789216 0.172194 -0.0440002 Vertex 20563 -0.0786816 0.173602 -0.0460003 Vertex 20564 -0.0466234 0.165492 -0.0068396 Vertex 20565 -0.076512 0.15561 -0.00689633 Vertex 20566 -0.0768171 0.154199 -0.00689913 Vertex 20567 -0.0739884 0.1541 -0.0249038 Vertex 20568 -0.0799858 0.150056 0.000166757 Vertex 20569 -0.0818563 0.150046 0.00220642 Vertex 20570 -0.0901845 0.132425 0.0322244 Vertex 20571 -0.0773753 0.161145 -0.0179242 Vertex 20572 -0.0704096 0.163806 -0.0479588 Vertex 20573 -0.0222065 0.179998 -0.0209469 Vertex 20574 -0.0659308 0.168025 -0.05906 Vertex 20575 -0.0225278 0.18149 -0.0200273 Vertex 20576 -0.0163006 0.182966 -0.0260091 Vertex 20577 -0.0218764 0.182954 -0.0200262 Vertex 20578 -0.0467495 0.117966 -0.0147678 Vertex 20579 -0.0219544 0.120804 -0.00985027 Vertex 20580 -0.032734 0.120436 -0.00935257 Vertex 20581 0.0233436 0.112218 -0.0129499 Vertex 20582 -0.0245412 0.057448 -0.0303989 Vertex 20583 -0.0256858 0.0575487 -0.0293997 Vertex 20584 -0.0264766 0.0576077 -0.0284232 Vertex 20585 -0.0270955 0.0576776 -0.0274029 Vertex 20586 -0.0274925 0.0577126 -0.0264141 Vertex 20587 -0.0279795 0.0577645 -0.0254 Vertex 20588 -0.0283572 0.0578046 -0.0244014 Vertex 20589 -0.0288479 0.0578621 -0.0233922 Vertex 20590 -0.0290025 0.0578755 -0.022406 Vertex 20591 -0.0295185 0.0579228 -0.0214101 Vertex 20592 -0.0300213 0.0579734 -0.0204069 Vertex 20593 -0.0304054 0.0580102 -0.0194062 Vertex 20594 -0.0307845 0.0580469 -0.0184096 Vertex 20595 -0.0311645 0.0580869 -0.017406 Vertex 20596 -0.0313874 0.0581183 -0.0163942 Vertex 20597 -0.03164 0.0581442 -0.0153958 Vertex 20598 -0.0317664 0.058161 -0.0143983 Vertex 20599 -0.0320197 0.058187 -0.0133973 Vertex 20600 -0.089294 0.136502 0.0252035 Vertex 20601 0.0270076 0.100021 -0.0178938 Vertex 20602 0.0185572 0.0930309 -0.0244868 Vertex 20603 -0.0218071 0.110009 -0.0205036 Vertex 20604 0.0156331 0.0915267 -0.0269033 Vertex 20605 0.0084061 0.0949783 -0.0285638 Vertex 20606 0.00885847 0.0887054 -0.0320419 Vertex 20607 0.0294595 0.116659 -0.00368699 Vertex 20608 -0.0560752 0.0602595 -0.0044615 Vertex 20609 -0.0564526 0.0602802 -0.00348733 Vertex 20610 -0.0578906 0.0600472 -0.00173427 Vertex 20611 -0.0579656 0.0599816 -0.000771046 Vertex 20612 -0.0890493 0.136506 0.0262024 Vertex 20613 -0.0408505 0.0971293 -0.022095 Vertex 20614 -0.0428418 0.0971034 -0.0220359 Vertex 20615 -0.0889485 0.13651 0.0272017 Vertex 20616 -0.0889642 0.136517 0.0281982 Vertex 20617 -0.0799897 0.135372 -0.00407226 Vertex 20618 0.0051303 0.105879 -0.0208781 Vertex 20619 0.0201949 0.0959886 -0.0227072 Vertex 20620 -0.0281007 0.162292 -0.0150733 Vertex 20621 -0.0118767 0.105907 -0.0227385 Vertex 20622 -0.0368415 0.0943464 -0.0233446 Vertex 20623 -0.0378318 0.0943285 -0.0232947 Vertex 20624 -0.0318429 0.0944059 -0.023975 Vertex 20625 -0.0719676 0.138437 -0.00730592 Vertex 20626 -0.0620358 0.136971 -0.00707833 Vertex 20627 -0.0900654 0.132428 0.033223 Vertex 20628 -0.0900528 0.132428 0.0342227 Vertex 20629 -0.090055 0.132436 0.0352224 Vertex 20630 -0.0738377 0.169377 -0.0450494 Vertex 20631 -0.0763817 0.169448 -0.0429673 Vertex 20632 -0.0792933 0.16941 -0.0399858 Vertex 20633 -0.0790213 0.169435 -0.0369802 Vertex 20634 -0.0890554 0.136524 0.0291987 Vertex 20635 -0.0903048 0.139241 0.0221876 Vertex 20636 -0.0936994 0.128298 0.0232525 Vertex 20637 -0.0400469 0.169775 -0.0108504 Vertex 20638 -0.0565711 0.159859 0.00306588 Vertex 20639 -0.0554287 0.1598 0.000101402 Vertex 20640 -0.052904 0.159748 -0.00276649 Vertex 20641 -0.0732162 0.169408 -0.0460252 Vertex 20642 -0.0699016 0.160977 -0.0489386 Vertex 20643 -0.090134 0.132434 0.0362229 Vertex 20644 -0.091691 0.12831 0.0342454 Vertex 20645 -0.0671371 0.169442 -0.0570354 Vertex 20646 -0.0883068 0.151437 0.0121831 Vertex 20647 -0.0856284 0.151402 0.00824006 Vertex 20648 -0.0739579 0.155489 -0.0249104 Vertex 20649 -0.073597 0.161047 -0.0349306 Vertex 20650 -0.079023 0.172207 -0.0429929 Vertex 20651 -0.0788564 0.173596 -0.0449928 Vertex 20652 -0.0456155 0.165496 -0.00783315 Vertex 20653 -0.0901396 0.13244 0.0372222 Vertex 20654 -0.076883 0.154198 -0.00789596 Vertex 20655 -0.0783607 0.150068 -0.00187639 Vertex 20656 -0.0777749 0.150053 -0.00387978 Vertex 20657 -0.0791989 0.150078 -0.000876106 Vertex 20658 -0.0901131 0.132441 0.0382173 Vertex 20659 -0.0900689 0.132434 0.0392074 Vertex 20660 -0.0700603 0.163804 -0.0489659 Vertex 20661 -0.0233436 0.179984 -0.0199453 Vertex 20662 -0.0242736 0.181474 -0.0180054 Vertex 20663 -0.0234134 0.181486 -0.0190275 Vertex 20664 -0.0233118 0.182976 -0.0180572 Vertex 20665 -0.0226479 0.182963 -0.0190305 Vertex 20666 -0.0478545 0.117892 -0.0146818 Vertex 20667 0.00758009 0.121578 -0.0129987 Vertex 20668 -0.0425055 0.108838 -0.0192163 Vertex 20669 0.0269605 0.111014 -0.0116501 Vertex 20670 -0.0242656 0.0588495 -0.0313753 Vertex 20671 -0.0255632 0.0589456 -0.0304089 Vertex 20672 -0.0263524 0.059005 -0.029433 Vertex 20673 -0.0271171 0.059077 -0.028426 Vertex 20674 -0.0275149 0.0591111 -0.027433 Vertex 20675 -0.0280135 0.0591603 -0.0264206 Vertex 20676 -0.0285047 0.059221 -0.0254142 Vertex 20677 -0.0288788 0.0592582 -0.0244095 Vertex 20678 -0.0291332 0.059286 -0.0234112 Vertex 20679 -0.0293882 0.0593157 -0.02241 Vertex 20680 -0.0297438 0.0593588 -0.0214043 Vertex 20681 -0.0301375 0.0592681 -0.0204197 Vertex 20682 -0.0305064 0.059434 -0.0194047 Vertex 20683 -0.0309091 0.0594671 -0.0184147 Vertex 20684 -0.0314199 0.0595176 -0.0174145 Vertex 20685 -0.0316463 0.0595496 -0.0164023 Vertex 20686 -0.031899 0.0595768 -0.0154053 Vertex 20687 -0.03228 0.059616 -0.0144015 Vertex 20688 -0.0324058 0.05963 -0.0134049 Vertex 20689 0.0278652 0.0996344 -0.0174729 Vertex 20690 -0.0465413 0.123419 -0.0104793 Vertex 20691 -0.039166 0.0355671 -0.0293815 Vertex 20692 -0.0207424 0.110014 -0.0205123 Vertex 20693 -0.0123646 0.109877 -0.0203825 Vertex 20694 -0.00551608 0.110856 -0.0214408 Vertex 20695 -0.00120622 0.113981 -0.0187843 Vertex 20696 0.00259703 0.093007 -0.0325523 Vertex 20697 0.0167046 0.0945555 -0.0241181 Vertex 20698 0.00996296 0.0988804 -0.0226985 Vertex 20699 -0.065316 0.0625169 -0.002419 Vertex 20700 -0.0662857 0.0625946 -0.00141881 Vertex 20701 -0.0671444 0.0628365 -0.000338348 Vertex 20702 -0.0398433 0.0971287 -0.022179 Vertex 20703 -0.0418449 0.0971142 -0.0220611 Vertex 20704 -0.043841 0.0970933 -0.0219235 Vertex 20705 -0.0448379 0.0970765 -0.0217835 Vertex 20706 -0.0720312 0.141354 -0.00781974 Vertex 20707 -0.0234217 0.0359155 0.0533704 Vertex 20708 -0.0328414 0.0943934 -0.0238538 Vertex 20709 -0.0338378 0.0943788 -0.02372 Vertex 20710 -0.0348319 0.0943645 -0.0236767 Vertex 20711 -0.0358405 0.094357 -0.023472 Vertex 20712 -0.0588396 0.0925945 -0.0203375 Vertex 20713 -0.0568431 0.0926948 -0.0216401 Vertex 20714 -0.055838 0.0927189 -0.0219026 Vertex 20715 -0.05784 0.0926528 -0.0211082 Vertex 20716 -0.0698932 0.120907 -0.00884856 Vertex 20717 -0.0661663 0.158028 -0.0551775 Vertex 20718 -0.0758088 0.0906346 -0.0139136 Vertex 20719 -0.0358448 0.0971832 -0.0228124 Vertex 20720 -0.0703872 0.161044 -0.0469664 Vertex 20721 -0.0701334 0.160982 -0.047936 Vertex 20722 -0.0695688 0.160974 -0.049948 Vertex 20723 -0.0693202 0.16097 -0.0509443 Vertex 20724 -0.0687445 0.160961 -0.0529537 Vertex 20725 -0.0901888 0.139114 0.0151891 Vertex 20726 -0.0895335 0.144692 0.0121557 Vertex 20727 -0.0897923 0.144692 0.013139 Vertex 20728 -0.0892694 0.136527 0.0301984 Vertex 20729 -0.043284 0.169832 -0.00794427 Vertex 20730 -0.0451841 0.16983 -0.00497124 Vertex 20731 -0.077742 0.161125 -0.0199262 Vertex 20732 -0.0624118 0.168239 -0.0611966 Vertex 20733 -0.0890324 0.144705 0.01118 Vertex 20734 -0.0777368 0.158322 -0.016916 Vertex 20735 -0.0446853 0.169846 -0.00596698 Vertex 20736 -0.0453256 0.169857 -0.00299568 Vertex 20737 -0.0702988 0.15533 -0.0489684 Vertex 20738 -0.0850315 0.151395 0.00719993 Vertex 20739 -0.0837262 0.151367 0.00522149 Vertex 20740 -0.0740972 0.155492 -0.0239137 Vertex 20741 -0.0896132 0.139307 0.0341845 Vertex 20742 -0.041349 0.172669 -0.00697494 Vertex 20743 -0.0231395 0.168252 -0.0189417 Vertex 20744 -0.0873651 0.0927561 0.00443631 Vertex 20745 -0.0721609 0.147032 -0.0238695 Vertex 20746 -0.0769907 0.154191 -0.00889586 Vertex 20747 -0.0780017 0.150056 -0.00287894 Vertex 20748 -0.0808163 0.150056 0.00117383 Vertex 20749 -0.0925247 0.128292 0.0282327 Vertex 20750 -0.0684905 0.158118 -0.0539401 Vertex 20751 -0.0679209 0.163786 -0.054975 Vertex 20752 -0.0243767 0.179986 -0.0189674 Vertex 20753 0.0526661 0.0660937 -0.000184776 Vertex 20754 -0.0785163 0.162478 -0.0269418 Vertex 20755 -0.0174269 0.182963 -0.0250022 Vertex 20756 -0.0568769 0.116868 -0.0135067 Vertex 20757 -0.0510086 0.119975 -0.0128249 Vertex 20758 -0.0435985 0.108724 -0.0190759 Vertex 20759 0.0288139 0.110493 -0.0110929 Vertex 20760 -0.0250606 0.0603159 -0.031412 Vertex 20761 -0.0262205 0.0604134 -0.0304432 Vertex 20762 -0.0270301 0.0604609 -0.0294673 Vertex 20763 -0.0277397 0.0605536 -0.0284245 Vertex 20764 -0.0281113 0.0605968 -0.0274147 Vertex 20765 -0.0284873 0.0606333 -0.0264114 Vertex 20766 -0.0288624 0.0606727 -0.0254104 Vertex 20767 -0.0290126 0.0606872 -0.0244213 Vertex 20768 -0.0295204 0.0607307 -0.0234192 Vertex 20769 -0.0298765 0.0607745 -0.022409 Vertex 20770 -0.030256 0.0608147 -0.0214135 Vertex 20771 -0.0305096 0.0608404 -0.0204127 Vertex 20772 -0.0309108 0.0608665 -0.0194213 Vertex 20773 -0.0313268 0.0609036 -0.0184352 Vertex 20774 -0.0318252 0.0609455 -0.0174329 Vertex 20775 -0.0320326 0.0609937 -0.0164107 Vertex 20776 -0.0322855 0.0610195 -0.0154117 Vertex 20777 -0.0332069 0.0609523 -0.0145937 Vertex 20778 0.0216881 0.102085 -0.0200779 Vertex 20779 -0.0179622 0.106228 -0.0225141 Vertex 20780 0.0312054 0.104936 -0.0131412 Vertex 20781 -0.0366978 0.0363155 -0.0300943 Vertex 20782 -0.0134967 0.109686 -0.0201653 Vertex 20783 0.00630512 0.0970077 -0.026738 Vertex 20784 -0.00553736 0.113796 -0.0185731 Vertex 20785 -0.00223749 0.0939165 -0.0335391 Vertex 20786 0.0303183 0.0797251 -0.0205953 Vertex 20787 0.0537776 0.0692651 0.00258827 Vertex 20788 -0.0662958 0.0637695 -0.0035905 Vertex 20789 -0.0674721 0.0639504 -0.00252382 Vertex 20790 -0.0682938 0.06404 -0.00150269 Vertex 20791 -0.0691053 0.0641529 -0.000471523 Vertex 20792 -0.0696582 0.0642657 0.000568637 Vertex 20793 -0.0703548 0.0643588 0.00158224 Vertex 20794 -0.0560862 0.153109 -0.0014946 Vertex 20795 -0.0797544 0.0720045 0.0191472 Vertex 20796 -0.0810703 0.0752023 0.0214152 Vertex 20797 -0.0708131 0.0922561 -0.0160967 Vertex 20798 -0.0718125 0.0922256 -0.0157107 Vertex 20799 -0.0728038 0.0921924 -0.0153063 Vertex 20800 -0.0738833 0.122317 -0.0079807 Vertex 20801 -0.0708983 0.120893 -0.00865195 Vertex 20802 0.0021184 0.108719 -0.0202691 Vertex 20803 -0.0819901 0.133862 -0.00285904 Vertex 20804 0.00311817 0.108714 -0.0201476 Vertex 20805 -0.0778791 0.116346 -0.00545689 Vertex 20806 -0.0748251 0.0906869 -0.0145799 Vertex 20807 -0.0779789 0.136876 -0.0051311 Vertex 20808 -0.0734658 0.151245 -0.0358847 Vertex 20809 -0.0578612 0.158406 0.00308521 Vertex 20810 -0.076675 0.154077 0.000107436 Vertex 20811 -0.0810442 0.152541 0.00426923 Vertex 20812 -0.0699027 0.158151 -0.0489236 Vertex 20813 -0.0680885 0.16093 -0.05501 Vertex 20814 -0.0676844 0.160922 -0.0559942 Vertex 20815 -0.0669549 0.160975 -0.0568649 Vertex 20816 -0.0711264 0.142566 -0.0097279 Vertex 20817 -0.041205 0.169789 -0.00987939 Vertex 20818 -0.0440479 0.169839 -0.00695693 Vertex 20819 -0.0894637 0.136534 0.031204 Vertex 20820 -0.0895706 0.136541 0.0322035 Vertex 20821 -0.066757 0.170863 -0.0580345 Vertex 20822 -0.0691313 0.170851 -0.0540166 Vertex 20823 -0.0773104 0.159761 -0.0159076 Vertex 20824 -0.0780833 0.1597 -0.0209281 Vertex 20825 -0.075211 0.159631 -0.0279486 Vertex 20826 -0.0714642 0.155388 -0.0429121 Vertex 20827 -0.0844496 0.151409 0.0062115 Vertex 20828 -0.0743228 0.155495 -0.0229079 Vertex 20829 -0.0779043 0.1583 -0.0209193 Vertex 20830 -0.0416172 0.17268 -0.00599082 Vertex 20831 -0.0714328 0.168025 -0.0480185 Vertex 20832 -0.090746 0.114598 0.00833305 Vertex 20833 -0.0897624 0.136545 0.033205 Vertex 20834 -0.0769902 0.154182 -0.00989517 Vertex 20835 -0.0828306 0.150071 0.00319212 Vertex 20836 -0.0751102 0.148577 -0.0168689 Vertex 20837 -0.0736141 0.151246 -0.0348888 Vertex 20838 -0.0689171 0.158096 -0.0529848 Vertex 20839 -0.0529179 0.162663 -0.000927718 Vertex 20840 -0.0523141 0.162661 -0.0019165 Vertex 20841 -0.0782836 0.162467 -0.0289415 Vertex 20842 -0.0785063 0.162438 -0.0279579 Vertex 20843 -0.0239599 0.182991 -0.0170658 Vertex 20844 -0.0897898 0.136552 0.0342 Vertex 20845 -0.0285818 0.121272 -0.00825717 Vertex 20846 -0.0174145 0.118412 -0.0133815 Vertex 20847 -0.0413959 0.1089 -0.0192706 Vertex 20848 -0.0243269 0.0616478 -0.0324508 Vertex 20849 -0.0257193 0.0617764 -0.0314442 Vertex 20850 -0.0266191 0.0618553 -0.0304537 Vertex 20851 -0.0274971 0.0619365 -0.0294418 Vertex 20852 -0.0282695 0.0620042 -0.0284458 Vertex 20853 -0.0287391 0.0620637 -0.0274208 Vertex 20854 -0.028867 0.0620809 -0.0264195 Vertex 20855 -0.0291214 0.0621103 -0.0254198 Vertex 20856 -0.029375 0.0621337 -0.0244169 Vertex 20857 -0.0298816 0.0621837 -0.0234188 Vertex 20858 -0.0302767 0.0622182 -0.0224251 Vertex 20859 -0.0306641 0.062253 -0.0214244 Vertex 20860 -0.0309385 0.0622798 -0.0204312 Vertex 20861 -0.0314315 0.062325 -0.0194293 Vertex 20862 -0.0318261 0.0623615 -0.0184459 Vertex 20863 -0.0323315 0.0624018 -0.0174393 Vertex 20864 -0.0325454 0.0624467 -0.016419 Vertex 20865 -0.0327997 0.0624741 -0.0154176 Vertex 20866 -0.0330517 0.0624982 -0.0144201 Vertex 20867 -0.0169788 0.106067 -0.0223329 Vertex 20868 0.0329293 0.104175 -0.0123189 Vertex 20869 0.0320623 0.104555 -0.0127247 Vertex 20870 -0.0197912 0.0347004 -0.0276305 Vertex 20871 0.00487604 0.0992462 -0.0230983 Vertex 20872 0.0392297 0.0926988 -0.0100859 Vertex 20873 0.000679346 0.0933957 -0.0329817 Vertex 20874 0.016043 0.107446 -0.0178315 Vertex 20875 -0.0679818 0.0653371 -0.00356488 Vertex 20876 -0.0690509 0.0654544 -0.0025414 Vertex 20877 -0.0698972 0.0655268 -0.00153079 Vertex 20878 -0.0707052 0.0656331 -0.000502385 Vertex 20879 -0.0715181 0.0657302 0.000515199 Vertex 20880 -0.0721682 0.0657282 0.00147121 Vertex 20881 -0.0768516 0.103431 -0.00952853 Vertex 20882 -0.07494 0.0707543 0.0282709 Vertex 20883 -0.0779756 0.13395 -0.00568102 Vertex 20884 -0.0673863 0.146352 -0.0244353 Vertex 20885 -0.0746345 0.0660496 0.0075612 Vertex 20886 -0.0749218 0.0661459 0.00857247 Vertex 20887 -0.0749507 0.0661289 0.00944516 Vertex 20888 -0.0808258 0.116274 -0.00349703 Vertex 20889 -0.0338231 0.0915286 -0.0241849 Vertex 20890 -0.0328411 0.0915526 -0.0242438 Vertex 20891 -0.0348255 0.0915164 -0.024068 Vertex 20892 -0.0358242 0.0915039 -0.0239402 Vertex 20893 -0.0361137 0.162217 -0.0137308 Vertex 20894 -0.0370853 0.162227 -0.0135318 Vertex 20895 -0.058879 0.104045 -0.0185386 Vertex 20896 -0.0598229 0.0911123 -0.0198104 Vertex 20897 0.0218862 0.107458 -0.0158341 Vertex 20898 -0.0740506 0.152673 -0.0298916 Vertex 20899 -0.073929 0.152666 -0.0308896 Vertex 20900 -0.0737191 0.152664 -0.0318934 Vertex 20901 -0.0484141 0.113756 -0.016334 Vertex 20902 -0.0413643 0.124214 -0.00934406 Vertex 20903 -0.0464652 0.16842 -0.00496016 Vertex 20904 0.0352918 0.108619 -0.00504659 Vertex 20905 -0.0563129 0.159837 0.00207063 Vertex 20906 -0.0453238 0.169855 -0.00399069 Vertex 20907 -0.0779351 0.161108 -0.0209335 Vertex 20908 -0.0617514 0.175333 -0.0614739 Vertex 20909 -0.0897878 0.136555 0.0351995 Vertex 20910 -0.0897638 0.136555 0.0361946 Vertex 20911 -0.0715633 0.170815 -0.0500445 Vertex 20912 -0.0743075 0.170773 -0.046055 Vertex 20913 -0.0791607 0.170809 -0.0419883 Vertex 20914 -0.0726436 0.159626 -0.0369279 Vertex 20915 -0.0715954 0.155396 -0.0419127 Vertex 20916 -0.0745798 0.155493 -0.021916 Vertex 20917 -0.0579064 0.158452 0.00407429 Vertex 20918 -0.0416245 0.172695 -0.00500345 Vertex 20919 -0.0728707 0.168003 -0.0450202 Vertex 20920 -0.0919702 0.114664 0.0123319 Vertex 20921 -0.0746787 0.169356 -0.0440586 Vertex 20922 -0.077087 0.154176 -0.0108977 Vertex 20923 -0.0838817 0.150077 0.00420446 Vertex 20924 -0.0746094 0.14858 -0.0188631 Vertex 20925 -0.0748658 0.148574 -0.0178655 Vertex 20926 -0.0738314 0.151256 -0.033887 Vertex 20927 0.0162169 0.116863 -0.0139359 Vertex 20928 -0.0692332 0.158118 -0.0519432 Vertex 20929 -0.0777 0.16251 -0.0219398 Vertex 20930 -0.0778914 0.162484 -0.0299302 Vertex 20931 -0.073524 0.16243 -0.0369561 Vertex 20932 -0.0245671 0.182966 -0.016053 Vertex 20933 -0.0896519 0.136557 0.0371913 Vertex 20934 -0.0456903 0.11799 -0.0148012 Vertex 20935 -0.0197273 0.118003 -0.0129221 Vertex 20936 0.0153397 0.120197 -0.0115352 Vertex 20937 -0.0249634 0.0631201 -0.0324542 Vertex 20938 -0.0261049 0.0632214 -0.0314499 Vertex 20939 -0.027103 0.0633188 -0.0304321 Vertex 20940 -0.0278877 0.0633808 -0.0294488 Vertex 20941 -0.028754 0.0634689 -0.0284339 Vertex 20942 -0.029185 0.0634891 -0.02746 Vertex 20943 -0.0295071 0.0635474 -0.0264265 Vertex 20944 -0.0296335 0.0635627 -0.0254272 Vertex 20945 -0.0298874 0.063588 -0.0244234 Vertex 20946 -0.0301406 0.0636155 -0.0234264 Vertex 20947 -0.030521 0.0636541 -0.0224277 Vertex 20948 -0.0310517 0.0636961 -0.0214339 Vertex 20949 -0.0314396 0.0637247 -0.0204391 Vertex 20950 -0.0318235 0.0637622 -0.0194381 Vertex 20951 -0.0322265 0.0637977 -0.0184499 Vertex 20952 -0.0326141 0.0638332 -0.0174509 Vertex 20953 -0.0329324 0.0638892 -0.016427 Vertex 20954 -0.0334742 0.0638502 -0.015538 Vertex 20955 0.0104481 0.102845 -0.020901 Vertex 20956 0.0188526 0.103753 -0.0198618 Vertex 20957 0.026625 0.0839457 -0.0229857 Vertex 20958 0.0328182 0.0967204 -0.0144274 Vertex 20959 0.0375907 0.0937201 -0.0111657 Vertex 20960 0.0400602 0.0922366 -0.00959201 Vertex 20961 0.00890069 0.0988547 -0.0226736 Vertex 20962 0.0441838 0.0712847 0.000450163 Vertex 20963 -0.00350994 0.110634 -0.0212045 Vertex 20964 -0.0684343 0.0667749 -0.00454154 Vertex 20965 -0.0694356 0.066827 -0.00357005 Vertex 20966 -0.070487 0.0669606 -0.00253268 Vertex 20967 -0.0714195 0.067071 -0.00151156 Vertex 20968 -0.0722644 0.0671374 -0.000515551 Vertex 20969 -0.073344 0.0672327 0.000494062 Vertex 20970 -0.0742084 0.067281 0.00145303 Vertex 20971 -0.0747558 0.067415 0.00253432 Vertex 20972 -0.0619023 0.120903 -0.00899386 Vertex 20973 -0.0758319 0.0675199 0.00554661 Vertex 20974 -0.0760415 0.0675654 0.00655947 Vertex 20975 -0.0760729 0.0675487 0.00755458 Vertex 20976 -0.0759599 0.0675387 0.00855626 Vertex 20977 -0.0759061 0.0675035 0.00967604 Vertex 20978 -0.0398282 0.0914347 -0.0233046 Vertex 20979 -0.0388211 0.091456 -0.0235256 Vertex 20980 -0.0388888 0.109926 -0.019043 Vertex 20981 -0.0468678 0.104213 -0.0207743 Vertex 20982 -0.0630395 0.136976 -0.00741235 Vertex 20983 -0.0689054 0.113678 -0.00975253 Vertex 20984 -0.0498768 0.104205 -0.0203216 Vertex 20985 -0.0488714 0.104198 -0.020417 Vertex 20986 -0.0688752 0.11651 -0.00852528 Vertex 20987 -0.0719627 0.134048 -0.00796724 Vertex 20988 -0.0423655 0.110099 -0.0185262 Vertex 20989 -0.0894883 0.139285 0.0301857 Vertex 20990 -0.0898984 0.139201 0.0142132 Vertex 20991 -0.0787339 0.140316 -0.00472414 Vertex 20992 -0.0735831 0.152654 -0.0328925 Vertex 20993 -0.0733679 0.152652 -0.0338969 Vertex 20994 -0.0772012 0.161073 -0.0279344 Vertex 20995 -0.0739067 0.163816 -0.0379732 Vertex 20996 -0.0547363 0.159762 -0.000811248 Vertex 20997 -0.0916073 0.128323 0.0352449 Vertex 20998 -0.0783042 0.161088 -0.0239376 Vertex 20999 -0.0673534 0.170861 -0.0570311 Vertex 21000 -0.0697489 0.17084 -0.0530327 Vertex 21001 -0.0894349 0.136561 0.0381888 Vertex 21002 -0.0891218 0.136568 0.0391914 Vertex 21003 -0.0836036 0.133464 -0.00169527 Vertex 21004 -0.0908345 0.139239 0.02018 Vertex 21005 -0.0696635 0.159559 -0.0499324 Vertex 21006 -0.0694376 0.159556 -0.0509365 Vertex 21007 -0.0696447 0.166615 -0.0510113 Vertex 21008 -0.0846701 0.133487 -0.000689201 Vertex 21009 -0.0631435 0.175042 -0.061564 Vertex 21010 -0.0880283 0.128084 0.00127828 Vertex 21011 -0.00122028 0.0938312 -0.0334376 Vertex 21012 -0.0770943 0.154164 -0.0118975 Vertex 21013 -0.0845132 0.150109 0.0051703 Vertex 21014 -0.07404 0.148543 -0.0208687 Vertex 21015 -0.0743566 0.148587 -0.0198592 Vertex 21016 -0.0740388 0.151266 -0.032878 Vertex 21017 -0.0855227 0.133522 0.000289437 Vertex 21018 -0.0701319 0.158154 -0.0479233 Vertex 21019 -0.0779412 0.162504 -0.0229403 Vertex 21020 -0.0772028 0.162464 -0.0309387 Vertex 21021 -0.0731753 0.162423 -0.0379582 Vertex 21022 -0.072832 0.162419 -0.0389636 Vertex 21023 -0.0169441 0.184483 -0.0249355 Vertex 21024 -0.0436382 0.11786 -0.014681 Vertex 21025 -0.0335583 0.116878 -0.0136466 Vertex 21026 -0.0228771 0.11806 -0.0129657 Vertex 21027 -0.0241177 0.120704 -0.00972559 Vertex 21028 0.0266976 0.119444 -0.00271582 Vertex 21029 -0.0253831 0.0645504 -0.0324979 Vertex 21030 -0.0263871 0.06465 -0.0314802 Vertex 21031 -0.0274005 0.0647434 -0.0304718 Vertex 21032 -0.0283013 0.0648191 -0.0294785 Vertex 21033 -0.0291848 0.0649007 -0.0284708 Vertex 21034 -0.0299396 0.0649723 -0.0274594 Vertex 21035 -0.0302058 0.0649962 -0.0264588 Vertex 21036 -0.0304 0.0650386 -0.0254348 Vertex 21037 -0.0306543 0.0650659 -0.0244333 Vertex 21038 -0.0306541 0.0650706 -0.0234343 Vertex 21039 -0.0309078 0.065095 -0.0224325 Vertex 21040 -0.0314155 0.0651435 -0.021432 Vertex 21041 -0.0317948 0.0651814 -0.020436 Vertex 21042 -0.0320867 0.0651952 -0.0194497 Vertex 21043 -0.0327198 0.0652554 -0.0184496 Vertex 21044 -0.0331649 0.0652734 -0.0174782 Vertex 21045 -0.0337113 0.0652961 -0.0165207 Vertex 21046 0.0126509 0.103032 -0.0211055 Vertex 21047 0.0115883 0.102988 -0.0210311 Vertex 21048 0.0169002 0.103075 -0.0211457 Vertex 21049 0.029535 0.0987313 -0.0165204 Vertex 21050 0.0286963 0.0991802 -0.016993 Vertex 21051 0.0336101 0.0962478 -0.0138935 Vertex 21052 0.0383972 0.0931984 -0.0106151 Vertex 21053 0.0446778 0.0701888 0.00161208 Vertex 21054 -0.00243593 0.113721 -0.0185019 Vertex 21055 -0.00449638 0.110771 -0.0213478 Vertex 21056 -0.0687556 0.0680025 -0.00564855 Vertex 21057 -0.0698587 0.0680767 -0.00467294 Vertex 21058 -0.070996 0.0683351 -0.00354604 Vertex 21059 -0.0716941 0.0684125 -0.00254325 Vertex 21060 -0.0728418 0.0685704 -0.00149472 Vertex 21061 -0.0739294 0.0686501 -0.000515794 Vertex 21062 -0.0747378 0.0687745 0.000531905 Vertex 21063 -0.07522 0.0688188 0.0015368 Vertex 21064 -0.0756991 0.0688679 0.00254149 Vertex 21065 -0.0760467 0.0689134 0.00354542 Vertex 21066 -0.0762949 0.0689313 0.00454567 Vertex 21067 -0.0765723 0.0689281 0.00553415 Vertex 21068 -0.0769246 0.0689689 0.00654258 Vertex 21069 -0.0709029 0.110786 -0.0101311 Vertex 21070 -0.0478735 0.104217 -0.0205651 Vertex 21071 -0.0689711 0.136995 -0.00816407 Vertex 21072 -0.0679786 0.137002 -0.008171 Vertex 21073 -0.0759568 0.136911 -0.00615991 Vertex 21074 -0.0699032 0.0687756 0.0310328 Vertex 21075 -0.0643093 0.0665984 0.0323388 Vertex 21076 -0.0428689 0.104235 -0.0209095 Vertex 21077 -0.0599339 0.120955 -0.00911512 Vertex 21078 -0.061923 0.12237 -0.00883821 Vertex 21079 -0.0865692 0.133541 0.00131146 Vertex 21080 -0.0875285 0.133568 0.00229932 Vertex 21081 -0.0883931 0.1336 0.00326444 Vertex 21082 -0.0895773 0.139272 0.0261794 Vertex 21083 -0.0767707 0.151403 -0.00690852 Vertex 21084 -0.073245 0.152646 -0.0348949 Vertex 21085 -0.0731111 0.152638 -0.0358925 Vertex 21086 -0.072893 0.152634 -0.0368963 Vertex 21087 -0.0660161 0.169448 -0.0590294 Vertex 21088 -0.070964 0.169422 -0.0500317 Vertex 21089 -0.0720303 0.169416 -0.0480254 Vertex 21090 -0.0485025 0.167013 -0.00296472 Vertex 21091 -0.0895593 0.13929 0.0311867 Vertex 21092 -0.0722512 0.170824 -0.0490235 Vertex 21093 -0.0789509 0.170805 -0.0389931 Vertex 21094 -0.0792519 0.17071 -0.0410714 Vertex 21095 -0.0866855 0.14466 0.00818677 Vertex 21096 -0.0421206 0.171253 -0.0079388 Vertex 21097 -0.0670071 0.172276 -0.0580562 Vertex 21098 -0.0700267 0.166609 -0.0500213 Vertex 21099 -0.0709434 0.168021 -0.0490096 Vertex 21100 0.0180702 0.0879847 -0.0272411 Vertex 21101 -0.0439439 0.166904 -0.00881722 Vertex 21102 -0.0880987 0.13916 0.0101984 Vertex 21103 -0.0769942 0.154149 -0.012901 Vertex 21104 -0.085208 0.150101 0.00618898 Vertex 21105 -0.0737519 0.14858 -0.0228576 Vertex 21106 -0.0739143 0.148544 -0.0218644 Vertex 21107 -0.0746468 0.151291 -0.0288803 Vertex 21108 -0.0891224 0.133627 0.00423095 Vertex 21109 -0.0712116 0.15818 -0.0429219 Vertex 21110 -0.0516538 0.162634 -0.00285466 Vertex 21111 -0.0249646 0.181509 -0.0170525 Vertex 21112 -0.0183396 0.183004 -0.0240946 Vertex 21113 -0.0249379 0.182957 -0.0150514 Vertex 21114 -0.0356473 0.116902 -0.0136714 Vertex 21115 -0.0207916 0.117992 -0.012906 Vertex 21116 -0.017781 0.12071 -0.00976707 Vertex 21117 0.0258521 0.119872 -0.00319504 Vertex 21118 -0.0250386 0.0659034 -0.0335362 Vertex 21119 -0.0261589 0.0660162 -0.0325063 Vertex 21120 -0.0269138 0.0660937 -0.0314934 Vertex 21121 -0.0277699 0.0661915 -0.0304661 Vertex 21122 -0.0286636 0.0662687 -0.0294695 Vertex 21123 -0.0295596 0.0663471 -0.0284716 Vertex 21124 -0.0301912 0.0664057 -0.0274649 Vertex 21125 -0.030476 0.0664272 -0.0264734 Vertex 21126 -0.0308481 0.0664794 -0.025463 Vertex 21127 -0.0312058 0.066507 -0.0244549 Vertex 21128 -0.0312929 0.0665317 -0.0234435 Vertex 21129 -0.0315471 0.0665587 -0.0224416 Vertex 21130 -0.0316751 0.0665766 -0.0214412 Vertex 21131 -0.0321818 0.0666221 -0.0204419 Vertex 21132 -0.0325897 0.0666513 -0.0194517 Vertex 21133 -0.0328882 0.0666632 -0.0184721 Vertex 21134 -0.0334203 0.0667037 -0.0174892 Vertex 21135 -0.033949 0.0667384 -0.0165589 Vertex 21136 0.0248625 0.12099 -0.00239034 Vertex 21137 0.0137891 0.103175 -0.021246 Vertex 21138 0.0207514 0.10232 -0.0203322 Vertex 21139 0.0226022 0.1018 -0.0197774 Vertex 21140 0.0303619 0.0982175 -0.0159971 Vertex 21141 0.0274189 0.0834776 -0.02246 Vertex 21142 0.0345359 0.11019 -0.00473263 Vertex 21143 -0.00764186 0.11082 -0.0214014 Vertex 21144 -0.00653882 0.110902 -0.0214831 Vertex 21145 0.0279206 0.0916217 -0.0209795 Vertex 21146 -0.0708142 0.0694524 -0.00574088 Vertex 21147 -0.0721891 0.0696552 -0.00460695 Vertex 21148 -0.0730453 0.0699885 -0.00346826 Vertex 21149 -0.0737106 0.0699801 -0.00251138 Vertex 21150 -0.0747624 0.0700921 -0.00148683 Vertex 21151 -0.0755745 0.0702081 -0.000465226 Vertex 21152 -0.0760489 0.0702549 0.00053996 Vertex 21153 -0.0763048 0.0702707 0.00153293 Vertex 21154 -0.0766992 0.0702795 0.00252119 Vertex 21155 -0.0770775 0.0703016 0.00351307 Vertex 21156 -0.0775366 0.070359 0.00451989 Vertex 21157 -0.0779103 0.070378 0.00551561 Vertex 21158 -0.0448698 0.104232 -0.0209188 Vertex 21159 -0.0438685 0.104239 -0.0209341 Vertex 21160 -0.0793826 0.0705862 0.00854889 Vertex 21161 -0.0795217 0.0705829 0.00954625 Vertex 21162 -0.0797359 0.0706327 0.0105539 Vertex 21163 -0.079866 0.0706372 0.0115498 Vertex 21164 -0.0798847 0.0706373 0.0145533 Vertex 21165 -0.0797756 0.0706254 0.0155549 Vertex 21166 -0.0718098 0.0864713 -0.016231 Vertex 21167 -0.0588289 0.089737 -0.0207103 Vertex 21168 -0.057835 0.0897878 -0.0213715 Vertex 21169 -0.0568374 0.0898133 -0.021762 Vertex 21170 -0.05583 0.0898375 -0.0220234 Vertex 21171 -0.0548148 0.0898539 -0.0222515 Vertex 21172 -0.0538034 0.0898608 -0.0222645 Vertex 21173 -0.0528078 0.0898592 -0.0221628 Vertex 21174 -0.0895782 0.133632 0.00522749 Vertex 21175 -0.0804601 0.148683 0.000173633 Vertex 21176 -0.0772259 0.151416 -0.00590086 Vertex 21177 -0.091455 0.148836 0.0171378 Vertex 21178 -0.091474 0.148846 0.0181354 Vertex 21179 -0.0728512 0.152626 -0.0378881 Vertex 21180 -0.0720202 0.152598 -0.0428872 Vertex 21181 -0.071833 0.152571 -0.043913 Vertex 21182 -0.0776927 0.169444 -0.0419634 Vertex 21183 -0.0109041 0.121705 -0.010941 Vertex 21184 -0.077532 0.159745 -0.0169143 Vertex 21185 -0.0758068 0.170822 -0.0449998 Vertex 21186 -0.0791321 0.170818 -0.0399882 Vertex 21187 -0.0785409 0.166665 -0.0309637 Vertex 21188 -0.0429021 0.171269 -0.00696466 Vertex 21189 -0.0676913 0.172275 -0.0570278 Vertex 21190 -0.0789669 0.172206 -0.0419919 Vertex 21191 -0.0723877 0.16801 -0.0460141 Vertex 21192 -0.00109958 0.115152 -0.0180337 Vertex 21193 -0.0785185 0.16527 -0.0289621 Vertex 21194 -0.0700369 0.0765697 0.0383694 Vertex 21195 -0.0764447 0.154164 -0.0158984 Vertex 21196 -0.0858022 0.150106 0.00719342 Vertex 21197 -0.0736262 0.148585 -0.0238576 Vertex 21198 -0.0630174 0.113067 -0.0134471 Vertex 21199 -0.074873 0.151297 -0.0278802 Vertex 21200 -0.0773393 0.152802 -0.0018868 Vertex 21201 -0.0713615 0.158186 -0.0419305 Vertex 21202 -0.0780988 0.162499 -0.0239377 Vertex 21203 -0.0258217 0.181482 -0.0160394 Vertex 21204 -0.0900165 0.133639 0.00622839 Vertex 21205 -0.0254081 0.182912 -0.0140439 Vertex 21206 -0.0187316 0.184448 -0.0230478 Vertex 21207 -0.0446647 0.117939 -0.0147658 Vertex 21208 -0.0162681 0.118552 -0.0135478 Vertex 21209 -0.0156178 0.12076 -0.00985742 Vertex 21210 0.0232453 0.12098 -0.00440593 Vertex 21211 -0.0261628 0.0674202 -0.0335157 Vertex 21212 -0.0269668 0.0674701 -0.0325423 Vertex 21213 -0.0277895 0.06758 -0.0314768 Vertex 21214 -0.0282054 0.0676114 -0.0305119 Vertex 21215 -0.0290693 0.0677067 -0.0294879 Vertex 21216 -0.0298099 0.0677811 -0.0284707 Vertex 21217 -0.0303159 0.0678299 -0.0274662 Vertex 21218 -0.0306901 0.0678681 -0.026462 Vertex 21219 -0.0310683 0.0679104 -0.0254551 Vertex 21220 -0.0314424 0.0679449 -0.0244554 Vertex 21221 -0.031681 0.0679763 -0.0234472 Vertex 21222 -0.0319337 0.0680008 -0.0224492 Vertex 21223 -0.0321871 0.0680263 -0.0214501 Vertex 21224 -0.0326951 0.0680731 -0.0204474 Vertex 21225 -0.0328734 0.0680853 -0.0194707 Vertex 21226 -0.0333922 0.068118 -0.0184774 Vertex 21227 -0.0340805 0.0680941 -0.0175876 Vertex 21228 0.002489 0.103843 -0.0219556 Vertex 21229 0.00917376 0.125511 -0.00726227 Vertex 21230 0.0179164 0.102978 -0.02104 Vertex 21231 -0.0476462 0.123357 -0.010393 Vertex 21232 -0.0433933 0.123406 -0.0104784 Vertex 21233 -0.0586388 0.0367329 -0.00984378 Vertex 21234 -0.0176742 0.109826 -0.020315 Vertex 21235 -0.0166846 0.109701 -0.0201927 Vertex 21236 0.00616925 0.0895403 -0.0330971 Vertex 21237 -0.0261993 0.095287 -0.0250572 Vertex 21238 -0.0734226 0.0711647 -0.00664488 Vertex 21239 -0.0747099 0.0713354 -0.00558545 Vertex 21240 -0.0755167 0.0714511 -0.00453448 Vertex 21241 -0.0759611 0.0715461 -0.00349282 Vertex 21242 -0.0767718 0.0716181 -0.00247133 Vertex 21243 -0.0770237 0.0716688 -0.00146855 Vertex 21244 -0.0772056 0.0717509 -0.00044869 Vertex 21245 -0.0774933 0.0717304 0.000534742 Vertex 21246 -0.0779219 0.0717107 0.00150831 Vertex 21247 -0.0784828 0.0717889 0.00251767 Vertex 21248 -0.0790435 0.0718734 0.00353541 Vertex 21249 -0.0796414 0.0719293 0.00453596 Vertex 21250 -0.0804084 0.0719394 0.00662383 Vertex 21251 -0.0806057 0.0720192 0.00754007 Vertex 21252 -0.0807416 0.0720213 0.00853917 Vertex 21253 -0.0808524 0.0720445 0.00954101 Vertex 21254 -0.080936 0.0720826 0.0105433 Vertex 21255 -0.0809806 0.0720629 0.0115411 Vertex 21256 -0.0809789 0.0720684 0.0125422 Vertex 21257 -0.0809608 0.0720856 0.0135459 Vertex 21258 -0.0809392 0.0721012 0.0145438 Vertex 21259 -0.0808293 0.0720933 0.0155437 Vertex 21260 -0.080608 0.0720682 0.0165498 Vertex 21261 -0.0803051 0.0719229 0.0175051 Vertex 21262 0.0111873 0.0893276 -0.0308633 Vertex 21263 -0.0368219 0.0900544 -0.0239252 Vertex 21264 -0.0378129 0.0900392 -0.0237743 Vertex 21265 -0.0388134 0.0900157 -0.0235053 Vertex 21266 -0.0398125 0.0899922 -0.0232612 Vertex 21267 -0.0902417 0.133644 0.00722857 Vertex 21268 -0.0746196 0.147202 -0.0138555 Vertex 21269 -0.091536 0.147482 0.0221363 Vertex 21270 -0.0916814 0.147477 0.020141 Vertex 21271 -0.0914625 0.148845 0.019136 Vertex 21272 -0.0907031 0.148891 0.0231421 Vertex 21273 -0.0904292 0.148866 0.0241237 Vertex 21274 0.04958 0.0652138 -0.00133913 Vertex 21275 -0.0904622 0.133649 0.00822658 Vertex 21276 -0.0658548 0.0952898 -0.0176963 Vertex 21277 -0.0782171 0.159705 -0.021925 Vertex 21278 -0.0905935 0.133662 0.00922276 Vertex 21279 -0.0782046 0.166684 -0.029962 Vertex 21280 -0.0432877 0.171276 -0.00598005 Vertex 21281 -0.0682914 0.172271 -0.0560251 Vertex 21282 -0.0761969 0.167972 -0.0410261 Vertex 21283 -0.0776954 0.16804 -0.0399638 Vertex 21284 -0.0107388 0.117999 -0.0150205 Vertex 21285 -0.0787666 0.165266 -0.0299591 Vertex 21286 -0.0908157 0.133668 0.01022 Vertex 21287 -0.0756811 0.154032 -0.0169094 Vertex 21288 -0.0864971 0.150096 0.00821548 Vertex 21289 -0.0869664 0.148754 0.00824898 Vertex 21290 -0.0910325 0.133669 0.0112223 Vertex 21291 -0.0910584 0.133686 0.0122173 Vertex 21292 -0.0749819 0.151307 -0.0268775 Vertex 21293 -0.0771697 0.152833 -0.00289126 Vertex 21294 -0.0715838 0.158191 -0.0409255 Vertex 21295 -0.0783091 0.16249 -0.0249404 Vertex 21296 -0.0193315 0.182966 -0.0230088 Vertex 21297 -0.0911632 0.133688 0.01322 Vertex 21298 -0.0759101 0.148612 -0.0128604 Vertex 21299 -0.0778477 0.159718 -0.0189229 Vertex 21300 -0.0556068 0.119255 -0.0119973 Vertex 21301 -0.0052585 0.095242 -0.0329133 Vertex 21302 -0.0230193 0.120798 -0.0098328 Vertex 21303 -0.0270649 0.0689032 -0.0335294 Vertex 21304 -0.0279464 0.0689892 -0.032513 Vertex 21305 -0.0286765 0.0690744 -0.0314836 Vertex 21306 -0.0292731 0.0691492 -0.0304581 Vertex 21307 -0.0296624 0.0691842 -0.029462 Vertex 21308 -0.030416 0.0692532 -0.0284548 Vertex 21309 -0.0306705 0.0692801 -0.0274547 Vertex 21310 -0.0310508 0.0693178 -0.0264576 Vertex 21311 -0.0314314 0.0693522 -0.0254564 Vertex 21312 -0.0317045 0.0693753 -0.0244624 Vertex 21313 -0.0321937 0.0694259 -0.0234551 Vertex 21314 -0.0324478 0.069454 -0.0224572 Vertex 21315 -0.032702 0.0694797 -0.021456 Vertex 21316 -0.0330823 0.0695155 -0.0204574 Vertex 21317 -0.0336047 0.0695556 -0.0194645 Vertex 21318 -0.0339552 0.0695264 -0.0185169 Vertex 21319 0.00449283 0.103624 -0.0217086 Vertex 21320 0.00350727 0.103765 -0.0218529 Vertex 21321 0.0188735 0.102787 -0.0208351 Vertex 21322 -0.0219975 0.107603 -0.0219593 Vertex 21323 -0.0252415 0.109687 -0.0201254 Vertex 21324 -0.0240104 0.109837 -0.0203148 Vertex 21325 -0.0229027 0.109901 -0.0203838 Vertex 21326 0.0176002 0.124344 -0.00401113 Vertex 21327 0.0185106 0.12405 -0.00369129 Vertex 21328 0.0159009 0.113257 -0.0160529 Vertex 21329 -0.074384 0.0726496 -0.00763941 Vertex 21330 -0.0755673 0.0727762 -0.00660131 Vertex 21331 -0.0765497 0.0728479 -0.00560245 Vertex 21332 -0.077361 0.0729429 -0.00456158 Vertex 21333 -0.0781961 0.0730005 -0.00359699 Vertex 21334 -0.0785831 0.0731535 -0.00247436 Vertex 21335 -0.0786866 0.073183 -0.00146774 Vertex 21336 -0.0784762 0.0731416 -0.000473316 Vertex 21337 -0.0786424 0.0732312 0.000545367 Vertex 21338 -0.0794271 0.0732336 0.00151817 Vertex 21339 -0.0802939 0.0732789 0.00250413 Vertex 21340 -0.0808762 0.0733317 0.00350919 Vertex 21341 -0.081164 0.0734408 0.004547 Vertex 21342 -0.0814357 0.0734392 0.00553468 Vertex 21343 -0.0816964 0.0734472 0.00653139 Vertex 21344 -0.0817879 0.0734817 0.0075372 Vertex 21345 -0.081817 0.0734713 0.00853447 Vertex 21346 -0.0816849 0.073475 0.00953613 Vertex 21347 -0.0816979 0.073476 0.0105355 Vertex 21348 -0.0816869 0.0734846 0.011537 Vertex 21349 -0.0816716 0.0734987 0.0125379 Vertex 21350 -0.081586 0.0734778 0.0135382 Vertex 21351 -0.0814761 0.0734707 0.0145404 Vertex 21352 -0.0813576 0.0734641 0.0155425 Vertex 21353 -0.0812898 0.0735018 0.0165324 Vertex 21354 -0.0810116 0.0734375 0.0175497 Vertex 21355 -0.0806378 0.0734203 0.0185511 Vertex 21356 -0.0802598 0.0734072 0.0195467 Vertex 21357 -0.0798314 0.0733447 0.0205614 Vertex 21358 0.0122103 0.0893249 -0.030653 Vertex 21359 -0.0198709 0.104468 -0.0228058 Vertex 21360 -0.0188705 0.104448 -0.0228566 Vertex 21361 -0.0178695 0.104461 -0.0227631 Vertex 21362 -0.0561697 0.0684762 0.0377129 Vertex 21363 -0.0912831 0.133698 0.0142161 Vertex 21364 -0.073661 0.147179 -0.0178577 Vertex 21365 -0.0739033 0.14718 -0.0168588 Vertex 21366 -0.091675 0.147474 0.0191435 Vertex 21367 -0.0911978 0.147452 0.0151543 Vertex 21368 -0.0908755 0.147455 0.0141474 Vertex 21369 -0.0914908 0.1337 0.0152201 Vertex 21370 -0.0914381 0.133727 0.0162105 Vertex 21371 -0.0470974 0.168427 -0.00297818 Vertex 21372 -0.091525 0.133725 0.0172151 Vertex 21373 -0.074839 0.15964 -0.0289433 Vertex 21374 -0.0724141 0.159616 -0.0379306 Vertex 21375 -0.0423878 0.124291 -0.00941969 Vertex 21376 -0.0689 0.172262 -0.0550342 Vertex 21377 -0.0915032 0.133721 0.0182157 Vertex 21378 -0.0634988 0.173693 -0.0615446 Vertex 21379 -0.0914203 0.133738 0.0192152 Vertex 21380 -0.0677895 0.175109 -0.0580246 Vertex 21381 -0.0788788 0.16526 -0.0309581 Vertex 21382 -0.0772898 0.158355 -0.013903 Vertex 21383 -0.0751309 0.154085 -0.0179327 Vertex 21384 -0.0872329 0.150111 0.00920897 Vertex 21385 -0.0914301 0.133749 0.0202171 Vertex 21386 -0.0750958 0.151313 -0.0258791 Vertex 21387 -0.0771905 0.152834 -0.00389169 Vertex 21388 -0.0718018 0.158195 -0.0399213 Vertex 21389 -0.0762912 0.162417 -0.0319674 Vertex 21390 -0.0202504 0.182971 -0.0220384 Vertex 21391 -0.0690156 0.163795 -0.0519803 Vertex 21392 -0.0568258 0.120959 -0.0097287 Vertex 21393 -0.0218549 0.118022 -0.0129203 Vertex 21394 -0.0252565 0.120536 -0.00953586 Vertex 21395 0.0369332 0.102635 -0.00864905 Vertex 21396 -0.0269157 0.0703179 -0.0345192 Vertex 21397 -0.0279086 0.0704216 -0.0334901 Vertex 21398 -0.0285896 0.0704574 -0.0325207 Vertex 21399 -0.0293484 0.0705264 -0.0315108 Vertex 21400 -0.0298407 0.0705727 -0.0304857 Vertex 21401 -0.0303332 0.0706347 -0.0294852 Vertex 21402 -0.0309481 0.0706991 -0.0284733 Vertex 21403 -0.0313435 0.0707327 -0.0274782 Vertex 21404 -0.0316005 0.0707575 -0.0264789 Vertex 21405 -0.0319458 0.0708051 -0.0254622 Vertex 21406 -0.0322294 0.0708154 -0.0244722 Vertex 21407 -0.0325802 0.0708663 -0.0234636 Vertex 21408 -0.0329609 0.0709036 -0.0224656 Vertex 21409 -0.0332159 0.0709306 -0.0214641 Vertex 21410 -0.0336555 0.0709359 -0.0204834 Vertex 21411 -0.0342456 0.0708723 -0.0195447 Vertex 21412 -0.00323215 0.0940338 -0.0336602 Vertex 21413 0.0268767 0.0854059 -0.022529 Vertex 21414 -0.0230123 0.107366 -0.0218426 Vertex 21415 -0.0262448 0.109573 -0.0200299 Vertex 21416 -0.0476206 0.111206 -0.0176722 Vertex 21417 0.0186443 0.123322 -0.00490878 Vertex 21418 0.00632048 0.123167 -0.0106939 Vertex 21419 0.0194036 0.123725 -0.00335403 Vertex 21420 0.00434495 0.0973121 -0.027058 Vertex 21421 -0.017311 0.117579 -0.0145168 Vertex 21422 -0.0758111 0.0741872 -0.00760517 Vertex 21423 -0.0768733 0.0742923 -0.00658087 Vertex 21424 -0.077844 0.0743656 -0.00558198 Vertex 21425 -0.0787857 0.0744548 -0.00455566 Vertex 21426 -0.0794876 0.0745597 -0.0035364 Vertex 21427 -0.0797915 0.0746069 -0.00248195 Vertex 21428 -0.0797877 0.0746142 -0.00147983 Vertex 21429 -0.0797566 0.074638 -0.000471413 Vertex 21430 -0.0801245 0.0746668 0.000525034 Vertex 21431 -0.0809612 0.0747382 0.0015261 Vertex 21432 -0.0817263 0.0747702 0.00249857 Vertex 21433 -0.0820692 0.0748107 0.00351555 Vertex 21434 -0.082326 0.0748249 0.00451639 Vertex 21435 -0.0823069 0.0748418 0.00552391 Vertex 21436 -0.0824554 0.0748386 0.00652396 Vertex 21437 -0.0825515 0.0748682 0.00752949 Vertex 21438 -0.0824053 0.0748814 0.00852871 Vertex 21439 -0.082219 0.074838 0.0095308 Vertex 21440 -0.0820948 0.0748388 0.0105311 Vertex 21441 -0.0820812 0.0748515 0.0115294 Vertex 21442 -0.0820286 0.074884 0.0125291 Vertex 21443 -0.0820593 0.0748753 0.013529 Vertex 21444 -0.0819286 0.0748755 0.0145293 Vertex 21445 -0.0817699 0.0748179 0.0155353 Vertex 21446 -0.0817429 0.0748341 0.0165378 Vertex 21447 -0.0815948 0.0748474 0.0175368 Vertex 21448 -0.0812999 0.0747823 0.0185535 Vertex 21449 -0.0811057 0.0748245 0.0195385 Vertex 21450 -0.0807961 0.0747709 0.0205502 Vertex 21451 0.00217526 0.0894962 -0.0338845 Vertex 21452 -0.0599081 0.112539 -0.0152225 Vertex 21453 -0.0172176 0.177147 -0.0249576 Vertex 21454 -0.062914 0.11807 -0.00990368 Vertex 21455 -0.0246777 0.0366811 0.0541279 Vertex 21456 -0.0913122 0.133748 0.0212171 Vertex 21457 -0.091338 0.14476 0.0251578 Vertex 21458 -0.091423 0.144753 0.0241539 Vertex 21459 -0.0741496 0.147181 -0.0158602 Vertex 21460 -0.0747471 0.147201 -0.0128585 Vertex 21461 -0.075081 0.147222 -0.0118498 Vertex 21462 -0.0891133 0.14743 0.0101992 Vertex 21463 -0.0844416 0.147376 0.00515339 Vertex 21464 -0.0777094 0.170825 -0.0439812 Vertex 21465 -0.0709691 0.153934 -0.0469289 Vertex 21466 -0.0705369 0.155342 -0.0479286 Vertex 21467 -0.0717978 0.155398 -0.0409076 Vertex 21468 -0.0691022 0.159548 -0.0519447 Vertex 21469 -0.0696134 0.172257 -0.054028 Vertex 21470 -0.0911887 0.13375 0.0222165 Vertex 21471 -0.0447618 0.116708 -0.0154556 Vertex 21472 -0.0910025 0.133774 0.0232232 Vertex 21473 -0.0909618 0.13376 0.0242167 Vertex 21474 -0.0721022 0.165224 -0.0439746 Vertex 21475 -0.0702648 0.156758 -0.047919 Vertex 21476 -0.073856 0.154091 -0.0259028 Vertex 21477 -0.0900133 0.150126 0.0131697 Vertex 21478 -0.0839692 0.148747 0.00414299 Vertex 21479 -0.0725455 0.148857 -0.0337299 Vertex 21480 -0.075231 0.151315 -0.0248804 Vertex 21481 -0.0771555 0.15282 -0.00488816 Vertex 21482 -0.0721705 0.158208 -0.0379206 Vertex 21483 -0.075448 0.162419 -0.0329687 Vertex 21484 -0.0896129 0.139294 0.0321884 Vertex 21485 -0.0909546 0.139232 0.0191849 Vertex 21486 0.0227098 0.105005 -0.0172062 Vertex 21487 -0.0263582 0.120444 -0.00943021 Vertex 21488 0.0376532 0.101954 -0.00791483 Vertex 21489 1.88808e-05 0.115368 -0.0182789 Vertex 21490 -0.0275944 0.0717748 -0.0345689 Vertex 21491 -0.0284679 0.0718578 -0.0335433 Vertex 21492 -0.0292136 0.07193 -0.032514 Vertex 21493 -0.0298783 0.0719759 -0.0315267 Vertex 21494 -0.0305049 0.0720397 -0.0305133 Vertex 21495 -0.0307766 0.0720324 -0.0295197 Vertex 21496 -0.0313944 0.0721215 -0.0285061 Vertex 21497 -0.0318897 0.0721821 -0.0275085 Vertex 21498 -0.0322554 0.0722092 -0.0264952 Vertex 21499 -0.0324599 0.0722556 -0.0254696 Vertex 21500 -0.0328398 0.0722904 -0.0244709 Vertex 21501 -0.033095 0.0723179 -0.02347 Vertex 21502 -0.0334757 0.072353 -0.0224701 Vertex 21503 -0.0338556 0.0723894 -0.0214737 Vertex 21504 -0.0341682 0.0723955 -0.0204945 Vertex 21505 0.0139874 0.0924572 -0.0278842 Vertex 21506 9.10767e-05 0.108392 -0.0207972 Vertex 21507 -0.0292487 0.115981 -0.0147474 Vertex 21508 0.0174482 0.090927 -0.0262636 Vertex 21509 0.0165359 0.0912212 -0.0265781 Vertex 21510 -0.0485738 0.111377 -0.0178292 Vertex 21511 0.00337067 0.115645 -0.0185908 Vertex 21512 0.00537913 0.115468 -0.0184153 Vertex 21513 0.0063888 0.115364 -0.0182909 Vertex 21514 -0.00327774 0.125061 -0.00864173 Vertex 21515 -0.00214312 0.101026 -0.0230018 Vertex 21516 0.00237959 0.0976208 -0.0273765 Vertex 21517 -0.0767684 0.0756527 -0.0076025 Vertex 21518 -0.0779425 0.0757661 -0.00656744 Vertex 21519 -0.0787949 0.0758277 -0.00557109 Vertex 21520 -0.0795844 0.0759236 -0.00451678 Vertex 21521 -0.0802058 0.0759672 -0.0035211 Vertex 21522 -0.0806807 0.0760273 -0.00253172 Vertex 21523 -0.080841 0.0760714 -0.00147772 Vertex 21524 -0.0810711 0.076096 -0.000474637 Vertex 21525 -0.0814469 0.0761204 0.000521161 Vertex 21526 -0.0821611 0.0761834 0.00152312 Vertex 21527 -0.0826703 0.0762102 0.00250991 Vertex 21528 -0.0830368 0.0762381 0.00350806 Vertex 21529 -0.0833901 0.0762729 0.00451303 Vertex 21530 -0.0834808 0.0763288 0.0055122 Vertex 21531 -0.0836005 0.0763298 0.006515 Vertex 21532 -0.0836964 0.0763445 0.00752427 Vertex 21533 -0.0834735 0.076324 0.00852235 Vertex 21534 -0.083145 0.0762813 0.00952219 Vertex 21535 -0.0830075 0.0762889 0.0105229 Vertex 21536 -0.0828034 0.0762521 0.011522 Vertex 21537 -0.0827552 0.07629 0.0125227 Vertex 21538 -0.0827739 0.0762807 0.0135216 Vertex 21539 -0.0828869 0.0763004 0.0145215 Vertex 21540 -0.0829975 0.0763193 0.0155222 Vertex 21541 -0.0829047 0.0763015 0.0175246 Vertex 21542 -0.0825849 0.0762413 0.018536 Vertex 21543 -0.0678037 0.0880304 -0.0174902 Vertex 21544 -0.0508006 0.0883889 -0.0215985 Vertex 21545 -0.0497999 0.0884036 -0.0217208 Vertex 21546 -0.0488082 0.0884112 -0.0217819 Vertex 21547 -0.0478101 0.0884245 -0.0219224 Vertex 21548 -0.0468066 0.088437 -0.0220186 Vertex 21549 -0.0679654 0.134068 -0.0084026 Vertex 21550 -0.0908453 0.133761 0.025216 Vertex 21551 -0.0913279 0.147458 0.016148 Vertex 21552 -0.0767777 0.176413 -0.0510191 Vertex 21553 -0.091424 0.144749 0.0231531 Vertex 21554 -0.0914285 0.144743 0.0221537 Vertex 21555 -0.0914617 0.144737 0.0211556 Vertex 21556 -0.0823398 0.145942 0.00119384 Vertex 21557 -0.082839 0.145958 0.00218243 Vertex 21558 -0.0837301 0.147364 0.00414541 Vertex 21559 -0.0907106 0.133758 0.0262122 Vertex 21560 -0.0895729 0.151493 0.0191084 Vertex 21561 -0.0828958 0.151378 0.00422572 Vertex 21562 -0.0718381 0.155405 -0.0399144 Vertex 21563 -0.0687753 0.15954 -0.0529632 Vertex 21564 -0.0692603 0.166617 -0.0519986 Vertex 21565 -0.0229763 0.0945367 -0.0302901 Vertex 21566 -0.000148869 0.0998138 -0.0237113 Vertex 21567 -0.0717447 0.165221 -0.0449739 Vertex 21568 -0.0704967 0.156763 -0.0469167 Vertex 21569 -0.0738401 0.154086 -0.0269016 Vertex 21570 -0.0904268 0.150188 0.0141369 Vertex 21571 -0.0830031 0.148729 0.00315098 Vertex 21572 -0.071716 0.148756 -0.0367532 Vertex 21573 -0.0753485 0.151324 -0.0238793 Vertex 21574 -0.0771542 0.152814 -0.00588992 Vertex 21575 -0.072385 0.158213 -0.0369175 Vertex 21576 -0.0748156 0.16245 -0.0339456 Vertex 21577 -0.0487502 0.167013 -0.00197199 Vertex 21578 -0.0904983 0.133768 0.0272133 Vertex 21579 -0.0902734 0.133771 0.0282153 Vertex 21580 0.0207378 0.105279 -0.0174962 Vertex 21581 0.00181128 0.125691 -0.00735123 Vertex 21582 0.0148906 0.112386 -0.0170744 Vertex 21583 0.00121056 0.115576 -0.018509 Vertex 21584 -0.0284441 0.0732827 -0.0345293 Vertex 21585 -0.0291577 0.0733109 -0.0335988 Vertex 21586 -0.0297859 0.073336 -0.0325546 Vertex 21587 -0.0305318 0.0734349 -0.0315361 Vertex 21588 -0.0308992 0.0734931 -0.0305082 Vertex 21589 -0.0312616 0.0735186 -0.0295121 Vertex 21590 -0.0317522 0.0735748 -0.0285005 Vertex 21591 -0.03217 0.0735917 -0.0275208 Vertex 21592 -0.0327796 0.0736593 -0.0265049 Vertex 21593 -0.0331407 0.073693 -0.0254949 Vertex 21594 -0.0334812 0.0737514 -0.024477 Vertex 21595 -0.0336084 0.073768 -0.0234794 Vertex 21596 -0.0339899 0.0738027 -0.0224777 Vertex 21597 -0.03437 0.0738393 -0.0214808 Vertex 21598 -0.0348901 0.0738831 -0.020486 Vertex 21599 -0.0042883 0.0999626 -0.0238822 Vertex 21600 0.0252819 0.100786 -0.0187149 Vertex 21601 0.0228212 0.0889774 -0.0242065 Vertex 21602 -0.0496313 0.111407 -0.0178803 Vertex 21603 -0.0507728 0.111366 -0.017973 Vertex 21604 0.00439305 0.11559 -0.018534 Vertex 21605 0.0179014 0.114016 -0.0148856 Vertex 21606 0.0198002 0.113601 -0.0144182 Vertex 21607 -0.05553 0.12546 -0.00656458 Vertex 21608 -0.0376703 0.125135 -0.00632213 Vertex 21609 0.00139388 0.0977439 -0.0275242 Vertex 21610 0.0181222 0.116444 -0.0134944 Vertex 21611 -0.0785348 0.0771858 -0.00655705 Vertex 21612 -0.0794073 0.0772395 -0.00557672 Vertex 21613 -0.0800971 0.0773092 -0.00453369 Vertex 21614 -0.0807759 0.0773963 -0.00349851 Vertex 21615 -0.0812381 0.0774347 -0.00249764 Vertex 21616 -0.0816036 0.0774754 -0.00149976 Vertex 21617 -0.0819199 0.0775142 -0.000486403 Vertex 21618 -0.0822934 0.0775365 0.000511811 Vertex 21619 -0.0828916 0.0775885 0.00151125 Vertex 21620 -0.0833848 0.0776237 0.00250717 Vertex 21621 -0.0837506 0.0776431 0.00349824 Vertex 21622 -0.0841314 0.0776758 0.00449933 Vertex 21623 -0.0841758 0.0777074 0.00551439 Vertex 21624 -0.0844296 0.0777425 0.00651672 Vertex 21625 -0.0846583 0.0777659 0.00751712 Vertex 21626 -0.0846449 0.0777798 0.00851725 Vertex 21627 -0.0844851 0.0778045 0.00951927 Vertex 21628 -0.0844011 0.0777797 0.0105147 Vertex 21629 -0.0844149 0.0777754 0.0115138 Vertex 21630 -0.0844214 0.0777776 0.012517 Vertex 21631 -0.084398 0.0778007 0.013518 Vertex 21632 -0.0846638 0.0778105 0.0155166 Vertex 21633 -0.0846489 0.0778245 0.0165124 Vertex 21634 -0.0845122 0.0778323 0.0175087 Vertex 21635 -0.00786973 0.104508 -0.0230207 Vertex 21636 0.00812049 0.107282 -0.0201059 Vertex 21637 -0.0318198 0.0887354 -0.0251772 Vertex 21638 -0.0831098 0.0777207 0.0215128 Vertex 21639 -0.082659 0.0776741 0.0225196 Vertex 21640 -0.0821806 0.0776422 0.0235195 Vertex 21641 -0.0818093 0.0776109 0.0245029 Vertex 21642 -0.0458007 0.0884477 -0.0220772 Vertex 21643 -0.044804 0.0884409 -0.0220028 Vertex 21644 -0.0900566 0.133779 0.0292173 Vertex 21645 -0.0894925 0.143336 0.0131803 Vertex 21646 -0.0515007 0.164119 0.00202375 Vertex 21647 -0.0235696 0.0368882 0.0541538 Vertex 21648 -0.0708338 0.143978 -0.0149516 Vertex 21649 -0.0915821 0.144732 0.0201581 Vertex 21650 -0.0768102 0.145866 -0.00487051 Vertex 21651 -0.0834257 0.145967 0.00318768 Vertex 21652 -0.0776336 0.147268 -0.0038625 Vertex 21653 0.0395784 0.104495 -0.000545476 Vertex 21654 -0.0747384 0.149908 -0.0288721 Vertex 21655 -0.082018 0.151309 0.00327526 Vertex 21656 -0.0749299 0.155492 -0.0209193 Vertex 21657 -0.0687931 0.166618 -0.053004 Vertex 21658 -0.0665818 0.173704 -0.0590137 Vertex 21659 -0.0750214 0.166563 -0.0400315 Vertex 21660 -0.00253303 0.110473 -0.0210263 Vertex 21661 0.023431 0.11936 -0.00662051 Vertex 21662 -0.0891859 0.139294 0.0371595 Vertex 21663 -0.0707247 0.156767 -0.045914 Vertex 21664 -0.0734929 0.154069 -0.0299022 Vertex 21665 -0.0905664 0.150208 0.0151282 Vertex 21666 -0.0387236 0.174145 -0.00898261 Vertex 21667 -0.0754744 0.151328 -0.022882 Vertex 21668 -0.0770107 0.152809 -0.00688788 Vertex 21669 -0.0726057 0.158224 -0.0359121 Vertex 21670 -0.0725695 0.162422 -0.0399552 Vertex 21671 -0.0484766 0.166987 4.90724e-06 Vertex 21672 -0.0939204 0.128289 0.0212475 Vertex 21673 -0.0875197 0.139142 0.00819442 Vertex 21674 -0.0904392 0.125398 0.00528343 Vertex 21675 -0.000532268 0.111266 -0.0199168 Vertex 21676 0.0157867 0.112048 -0.0167369 Vertex 21677 0.00823548 0.113838 -0.0186606 Vertex 21678 -0.0558273 0.114722 -0.0152839 Vertex 21679 -0.0289649 0.0747374 -0.0345478 Vertex 21680 -0.0298754 0.0748068 -0.0335581 Vertex 21681 -0.030539 0.0748507 -0.0325674 Vertex 21682 -0.0311696 0.0749025 -0.031542 Vertex 21683 -0.0315484 0.0749387 -0.030532 Vertex 21684 -0.0317091 0.0749949 -0.0294856 Vertex 21685 -0.0321779 0.0750041 -0.0285287 Vertex 21686 -0.0330169 0.0750953 -0.0275046 Vertex 21687 -0.0333618 0.0751438 -0.0264858 Vertex 21688 -0.0337405 0.075174 -0.025488 Vertex 21689 -0.0339952 0.0752026 -0.0244888 Vertex 21690 -0.0339959 0.0752105 -0.0234884 Vertex 21691 -0.0342487 0.0752311 -0.0224883 Vertex 21692 -0.0346312 0.0752701 -0.0214845 Vertex 21693 -0.0350673 0.0752529 -0.020583 Vertex 21694 0.02441 0.101163 -0.0191142 Vertex 21695 0.0440634 0.064827 -0.000963389 Vertex 21696 -0.0465999 0.111104 -0.0175509 Vertex 21697 -0.0152794 0.114388 -0.017154 Vertex 21698 -0.0142172 0.114376 -0.0171381 Vertex 21699 0.0169426 0.11422 -0.015094 Vertex 21700 -0.0405815 0.125646 -0.00686289 Vertex 21701 -0.0735086 0.078138 -0.0125733 Vertex 21702 -0.0741619 0.0781636 -0.0115723 Vertex 21703 -0.0748509 0.0782361 -0.0105914 Vertex 21704 -0.0334887 0.0471143 -0.0243565 Vertex 21705 -0.0780856 0.0784826 -0.00760345 Vertex 21706 -0.0790495 0.0785612 -0.00658771 Vertex 21707 -0.0800017 0.0786467 -0.00556567 Vertex 21708 -0.0805979 0.0786983 -0.00455339 Vertex 21709 -0.0810351 0.0787684 -0.0035164 Vertex 21710 -0.081588 0.0788215 -0.00249997 Vertex 21711 -0.0819874 0.0788394 -0.00151395 Vertex 21712 -0.0824118 0.0788951 -0.000494108 Vertex 21713 -0.0827664 0.0789303 0.000509537 Vertex 21714 -0.0832232 0.0789707 0.00151853 Vertex 21715 -0.0836967 0.0790161 0.00252063 Vertex 21716 -0.0841536 0.0790628 0.0035277 Vertex 21717 -0.0846068 0.0791109 0.00453817 Vertex 21718 -0.0849152 0.0791131 0.00550947 Vertex 21719 -0.0851867 0.0791254 0.00650076 Vertex 21720 -0.0854189 0.0791501 0.00750351 Vertex 21721 -0.085501 0.0791776 0.00851156 Vertex 21722 -0.0854712 0.0791996 0.00951147 Vertex 21723 -0.0854876 0.0791977 0.0105097 Vertex 21724 -0.085625 0.079203 0.01151 Vertex 21725 -0.0857374 0.0792227 0.0125087 Vertex 21726 -0.0857527 0.0792184 0.0135098 Vertex 21727 -0.0856126 0.0792275 0.0145081 Vertex 21728 -0.0857232 0.0792432 0.0155047 Vertex 21729 -0.0857238 0.0792489 0.0165033 Vertex 21730 -0.0855011 0.0792275 0.0175034 Vertex 21731 -0.0852267 0.0792333 0.0184927 Vertex 21732 -0.0848856 0.0792043 0.0194951 Vertex 21733 -0.084435 0.0791603 0.0205035 Vertex 21734 -0.0839381 0.0791399 0.0214982 Vertex 21735 -0.0833697 0.0790868 0.0225099 Vertex 21736 -0.0829431 0.0790271 0.0235207 Vertex 21737 -0.0828165 0.0790258 0.0245191 Vertex 21738 -0.0827835 0.0790493 0.0255103 Vertex 21739 -0.082569 0.0790202 0.0265184 Vertex 21740 0.00913686 0.107291 -0.0199257 Vertex 21741 0.0260633 0.114349 -0.00924148 Vertex 21742 -0.0903603 0.143336 0.0142018 Vertex 21743 -0.0213746 0.0936314 -0.0333712 Vertex 21744 -0.0737276 0.154081 -0.027902 Vertex 21745 -0.0717266 0.143977 -0.0139286 Vertex 21746 -0.0766685 0.144473 -0.00485242 Vertex 21747 -0.076233 0.145832 -0.00587217 Vertex 21748 -0.0890361 0.146068 0.0101777 Vertex 21749 -0.0772746 0.147261 -0.00486297 Vertex 21750 -0.0809707 0.15134 0.0022444 Vertex 21751 -0.07566 0.1555 -0.0199215 Vertex 21752 -0.0670035 0.166617 -0.0570134 Vertex 21753 -0.0674097 0.173701 -0.0580011 Vertex 21754 -0.0760774 0.166574 -0.0390172 Vertex 21755 -0.0685252 0.175096 -0.0570393 Vertex 21756 -0.0719124 0.168014 -0.0470137 Vertex 21757 -0.078183 0.161072 -0.0259393 Vertex 21758 -0.0719027 0.156807 -0.0389123 Vertex 21759 -0.0733817 0.154066 -0.0309045 Vertex 21760 -0.0908844 0.150204 0.0171288 Vertex 21761 -0.0694849 0.173671 -0.0550315 Vertex 21762 -0.0681426 0.159579 -0.055037 Vertex 21763 -0.0755977 0.151334 -0.0218791 Vertex 21764 -0.076928 0.152806 -0.00788984 Vertex 21765 -0.0727584 0.158224 -0.0349231 Vertex 21766 -0.0723047 0.162425 -0.0409479 Vertex 21767 -0.071967 0.162417 -0.0419522 Vertex 21768 -0.0195235 0.184467 -0.0220738 Vertex 21769 -0.0226414 0.0961417 -0.0259441 Vertex 21770 0.0287219 0.115289 -0.00622497 Vertex 21771 -0.0929632 0.124088 0.0102675 Vertex 21772 0.0166934 0.111749 -0.0164123 Vertex 21773 0.00727636 0.114035 -0.0188609 Vertex 21774 -0.0547371 0.114833 -0.0154193 Vertex 21775 -0.0444987 0.125316 -0.00848377 Vertex 21776 -0.0293563 0.0761839 -0.0345604 Vertex 21777 -0.0303959 0.0762676 -0.0335676 Vertex 21778 -0.0310416 0.0763051 -0.0325503 Vertex 21779 -0.0316679 0.0763713 -0.0315414 Vertex 21780 -0.0320743 0.0763998 -0.0305477 Vertex 21781 -0.0323187 0.0763806 -0.0295323 Vertex 21782 -0.0327106 0.0764924 -0.028531 Vertex 21783 -0.0334032 0.0765382 -0.0275106 Vertex 21784 -0.0337735 0.0765809 -0.0265027 Vertex 21785 -0.0340008 0.0766042 -0.0254969 Vertex 21786 -0.0342551 0.0766309 -0.0244955 Vertex 21787 -0.0343831 0.0766477 -0.0234928 Vertex 21788 -0.0346365 0.0766699 -0.022492 Vertex 21789 -0.0347632 0.076687 -0.0214942 Vertex 21790 -0.0348898 0.0767003 -0.020496 Vertex 21791 -0.010458 0.0953808 -0.0330949 Vertex 21792 -0.00943219 0.095325 -0.0330289 Vertex 21793 -0.0193753 0.114664 -0.0174341 Vertex 21794 0.0159989 0.11444 -0.0153318 Vertex 21795 0.0150842 0.114728 -0.0156323 Vertex 21796 0.0100557 0.112263 -0.0189498 Vertex 21797 -0.0731505 0.0794744 -0.0135813 Vertex 21798 -0.074125 0.079542 -0.012586 Vertex 21799 -0.074863 0.0795889 -0.0115995 Vertex 21800 -0.0755898 0.0796389 -0.010614 Vertex 21801 -0.00855727 0.119157 -0.0142712 Vertex 21802 -0.0789135 0.0799145 -0.00757704 Vertex 21803 -0.0796103 0.0799856 -0.0065507 Vertex 21804 -0.0804662 0.0800422 -0.00555374 Vertex 21805 -0.0810451 0.0800939 -0.00453207 Vertex 21806 -0.081408 0.0801232 -0.00353296 Vertex 21807 -0.0819076 0.08016 -0.00254028 Vertex 21808 -0.0823568 0.0802033 -0.00152209 Vertex 21809 -0.082746 0.0802849 -0.00049163 Vertex 21810 -0.083003 0.0803028 0.000504056 Vertex 21811 -0.0833731 0.0803286 0.00149951 Vertex 21812 -0.0838486 0.0803675 0.00250235 Vertex 21813 -0.084323 0.0804069 0.00350409 Vertex 21814 -0.0847861 0.0804507 0.00450965 Vertex 21815 -0.0852421 0.0804972 0.00551565 Vertex 21816 -0.0856435 0.0805169 0.00650219 Vertex 21817 -0.0859756 0.0805547 0.00750576 Vertex 21818 -0.0860997 0.0805682 0.0085045 Vertex 21819 -0.0861137 0.0805676 0.00950062 Vertex 21820 -0.086202 0.0805924 0.0105044 Vertex 21821 -0.0863191 0.0806082 0.0115067 Vertex 21822 -0.0864769 0.0806081 0.0125015 Vertex 21823 -0.086559 0.0806364 0.0135028 Vertex 21824 -0.0864234 0.0806346 0.0145003 Vertex 21825 -0.0864209 0.080641 0.0154973 Vertex 21826 -0.0863191 0.0806349 0.0164939 Vertex 21827 -0.0861064 0.0806138 0.0174966 Vertex 21828 -0.0858462 0.0806083 0.01849 Vertex 21829 -0.0855847 0.0806062 0.0194802 Vertex 21830 -0.0852141 0.0805923 0.0204766 Vertex 21831 -0.0846192 0.0805533 0.0214764 Vertex 21832 -0.0839745 0.0804809 0.0225006 Vertex 21833 -0.0837154 0.0804764 0.0234959 Vertex 21834 -0.0837382 0.0804711 0.0245022 Vertex 21835 -0.083714 0.0804887 0.0254979 Vertex 21836 -0.0835033 0.0804619 0.0265017 Vertex 21837 0.0218142 0.117368 -0.0105004 Vertex 21838 -0.0898716 0.133794 0.0302191 Vertex 21839 -0.0743879 0.143042 -0.00684484 Vertex 21840 -0.0756919 0.143067 -0.00582827 Vertex 21841 -0.0775304 0.143071 -0.00473432 Vertex 21842 -0.0898405 0.133789 0.0312158 Vertex 21843 -0.08982 0.133788 0.032216 Vertex 21844 -0.078067 0.144487 -0.00381208 Vertex 21845 -0.0864962 0.112872 0.0280752 Vertex 21846 -0.0896495 0.146064 0.0111487 Vertex 21847 -0.0769165 0.147253 -0.00586064 Vertex 21848 -0.0751825 0.149958 -0.0238676 Vertex 21849 -0.0793223 0.151473 0.000118749 Vertex 21850 -0.0765864 0.155527 -0.0189073 Vertex 21851 -0.0775564 0.166657 -0.0379504 Vertex 21852 -0.0693729 0.175081 -0.056043 Vertex 21853 0.0225495 0.119713 -0.00701355 Vertex 21854 -0.0630792 0.17626 -0.0613621 Vertex 21855 -0.0512338 0.164096 -0.00192926 Vertex 21856 -0.0720417 0.156813 -0.0379146 Vertex 21857 -0.0729901 0.154042 -0.0338982 Vertex 21858 -0.0908852 0.150208 0.0181276 Vertex 21859 -0.0497129 0.165582 0.00102101 Vertex 21860 -0.075728 0.151337 -0.0208826 Vertex 21861 -0.0767656 0.152802 -0.00889022 Vertex 21862 -0.07299 0.158232 -0.0339184 Vertex 21863 -0.074349 0.162439 -0.0349528 Vertex 21864 -0.0740612 0.16798 -0.0430295 Vertex 21865 -0.0202891 0.184471 -0.0210772 Vertex 21866 -0.0879643 0.115809 0.00328051 Vertex 21867 -0.0898089 0.133793 0.0332137 Vertex 21868 -0.0931866 0.124098 0.0112689 Vertex 21869 0.0176113 0.111464 -0.0161155 Vertex 21870 0.00626863 0.114136 -0.0189815 Vertex 21871 -0.0535918 0.114983 -0.0155816 Vertex 21872 -0.0136895 0.0952904 -0.0330103 Vertex 21873 -0.0293835 0.0775974 -0.0345936 Vertex 21874 -0.0305455 0.0776911 -0.0335901 Vertex 21875 -0.0312863 0.0777611 -0.0325602 Vertex 21876 -0.0319516 0.077812 -0.0315646 Vertex 21877 -0.0323682 0.0778417 -0.0305703 Vertex 21878 -0.0324762 0.0778813 -0.0295332 Vertex 21879 -0.0327059 0.0779055 -0.0285245 Vertex 21880 -0.0331798 0.0779303 -0.0275261 Vertex 21881 -0.0338875 0.0780022 -0.0265044 Vertex 21882 -0.0341434 0.0780256 -0.025502 Vertex 21883 -0.0342918 0.0780403 -0.0245107 Vertex 21884 -0.0345153 0.0780634 -0.0235017 Vertex 21885 -0.0346424 0.0780819 -0.0225024 Vertex 21886 -0.0347689 0.0780934 -0.0215038 Vertex 21887 -0.062019 0.17397 -0.0618399 Vertex 21888 0.0226855 0.103953 -0.0180758 Vertex 21889 -0.0182701 0.114743 -0.017523 Vertex 21890 0.0188656 0.11384 -0.0146811 Vertex 21891 -0.0250407 0.11597 -0.0147569 Vertex 21892 -0.0239792 0.115969 -0.0147616 Vertex 21893 -0.0739163 0.0808829 -0.0136046 Vertex 21894 -0.0747315 0.0809443 -0.0125955 Vertex 21895 -0.0755937 0.0809959 -0.0116148 Vertex 21896 -0.0766495 0.0810868 -0.0106019 Vertex 21897 -0.078886 0.0812827 -0.00855752 Vertex 21898 -0.0794458 0.0813481 -0.00752304 Vertex 21899 -0.0802136 0.0813857 -0.00655277 Vertex 21900 -0.0810819 0.0814326 -0.00557353 Vertex 21901 -0.0817169 0.081448 -0.00456785 Vertex 21902 -0.0823654 0.0815422 -0.00354068 Vertex 21903 -0.0828253 0.0815398 -0.00255091 Vertex 21904 -0.0831356 0.0816494 -0.00150376 Vertex 21905 -0.0833287 0.0817012 -0.000498118 Vertex 21906 -0.0835863 0.0817078 0.00050138 Vertex 21907 -0.0838449 0.0817176 0.00149669 Vertex 21908 -0.0841291 0.0817203 0.00248105 Vertex 21909 -0.0845128 0.0817443 0.00347449 Vertex 21910 -0.0849458 0.0817985 0.00448942 Vertex 21911 -0.0852968 0.0818288 0.005494 Vertex 21912 -0.085793 0.0818712 0.00648437 Vertex 21913 -0.0861503 0.0818963 0.00748815 Vertex 21914 -0.0862444 0.0819176 0.00849345 Vertex 21915 -0.0863906 0.0819518 0.00951177 Vertex 21916 -0.0865124 0.0819745 0.0105022 Vertex 21917 -0.0866257 0.081991 0.0115028 Vertex 21918 -0.0866809 0.0819772 0.0124969 Vertex 21919 -0.0867126 0.0819778 0.0134931 Vertex 21920 -0.0867731 0.0820034 0.0144903 Vertex 21921 -0.0866821 0.0819953 0.0154888 Vertex 21922 -0.0865635 0.0819919 0.0164862 Vertex 21923 -0.0864107 0.0819973 0.0174801 Vertex 21924 -0.0861937 0.0819823 0.0184808 Vertex 21925 -0.0859388 0.0819759 0.019473 Vertex 21926 -0.0856119 0.0819492 0.0204815 Vertex 21927 -0.0850735 0.0819457 0.0214598 Vertex 21928 -0.0843946 0.0818335 0.0225112 Vertex 21929 -0.0842824 0.0818436 0.0235004 Vertex 21930 -0.084345 0.0818627 0.0244959 Vertex 21931 -0.0842452 0.0818537 0.025498 Vertex 21932 -0.0840796 0.0818676 0.0264914 Vertex 21933 -0.0837452 0.0818387 0.0274964 Vertex 21934 -0.0898373 0.133802 0.0342135 Vertex 21935 -0.0523382 0.161184 -0.00281855 Vertex 21936 -0.0783198 0.147274 -0.0028373 Vertex 21937 -0.088747 0.148763 0.0102254 Vertex 21938 -0.0787761 0.1431 -0.00379727 Vertex 21939 -0.0899071 0.133806 0.0352156 Vertex 21940 -0.0792589 0.1445 -0.00280742 Vertex 21941 -0.0801261 0.144525 -0.00183492 Vertex 21942 -0.0756616 0.0695139 0.0239361 Vertex 21943 -0.0905476 0.146077 0.0141502 Vertex 21944 -0.076687 0.14724 -0.00686649 Vertex 21945 -0.0752992 0.149965 -0.0228671 Vertex 21946 -0.0783656 0.151459 -0.000884796 Vertex 21947 -0.0769992 0.155545 -0.0179052 Vertex 21948 -0.0789979 0.165257 -0.0319521 Vertex 21949 -0.0701879 0.175082 -0.0550269 Vertex 21950 -0.0129143 0.104805 -0.023047 Vertex 21951 -0.073083 0.166616 -0.0429976 Vertex 21952 -0.0507685 0.164108 -0.00292996 Vertex 21953 -0.0728984 0.156837 -0.0329194 Vertex 21954 -0.0727818 0.154043 -0.034905 Vertex 21955 -0.0903295 0.150229 0.0211233 Vertex 21956 -0.0906536 0.150215 0.0201223 Vertex 21957 -0.0758603 0.151341 -0.0198831 Vertex 21958 -0.0765967 0.152807 -0.00988734 Vertex 21959 -0.0731091 0.158237 -0.0329184 Vertex 21960 -0.0717079 0.162415 -0.0429474 Vertex 21961 -0.00976599 0.121876 -0.011136 Vertex 21962 -0.0210079 0.184692 -0.0198306 Vertex 21963 -0.0754641 0.149954 -0.0208706 Vertex 21964 -0.0236634 0.123398 -0.00459221 Vertex 21965 -0.0934182 0.124107 0.0122673 Vertex 21966 0.00528045 0.114267 -0.0191116 Vertex 21967 -0.0524481 0.115128 -0.0157418 Vertex 21968 0.0553699 0.0651884 0.000788532 Vertex 21969 -0.0284578 0.0789297 -0.0355663 Vertex 21970 -0.0295859 0.0790353 -0.0345348 Vertex 21971 -0.0304017 0.0791045 -0.033577 Vertex 21972 -0.0311614 0.0791685 -0.0325602 Vertex 21973 -0.031899 0.0792306 -0.0315346 Vertex 21974 -0.0322859 0.0792627 -0.0305329 Vertex 21975 -0.0325368 0.0792892 -0.0295289 Vertex 21976 -0.0327803 0.0793117 -0.0285199 Vertex 21977 -0.0329958 0.0793378 -0.0275102 Vertex 21978 -0.033504 0.079379 -0.0265108 Vertex 21979 -0.0340215 0.0794269 -0.0255119 Vertex 21980 -0.0343151 0.0794495 -0.0245241 Vertex 21981 -0.0346304 0.079471 -0.0235463 Vertex 21982 -0.0353039 0.0794833 -0.0226806 Vertex 21983 -0.0573945 0.0371513 -0.0102727 Vertex 21984 0.0207547 0.10431 -0.0184628 Vertex 21985 0.0297172 0.11319 -0.0079908 Vertex 21986 0.00472897 0.0950887 -0.030676 Vertex 21987 -0.0271235 0.11599 -0.0147668 Vertex 21988 -0.0416312 0.117641 -0.0144485 Vertex 21989 -0.0426472 0.117732 -0.0145554 Vertex 21990 -0.0749535 0.0823401 -0.0135889 Vertex 21991 -0.0756827 0.0823892 -0.0125945 Vertex 21992 -0.0766222 0.0824671 -0.0115781 Vertex 21993 -0.0777262 0.0825344 -0.0106004 Vertex 21994 -0.0788426 0.0825957 -0.0096075 Vertex 21995 -0.0795322 0.0826724 -0.00859002 Vertex 21996 -0.0800112 0.0826849 -0.00756298 Vertex 21997 -0.0807043 0.0827741 -0.00656651 Vertex 21998 -0.0816591 0.0828436 -0.00556986 Vertex 21999 -0.0826039 0.0829175 -0.00455606 Vertex 22000 -0.0833629 0.0829469 -0.00357326 Vertex 22001 -0.0839827 0.0830482 -0.0025149 Vertex 22002 -0.0843197 0.0830919 -0.00150258 Vertex 22003 -0.0844141 0.083121 -0.000497419 Vertex 22004 -0.0846694 0.0831371 0.000497005 Vertex 22005 -0.0850182 0.0831804 0.00149618 Vertex 22006 -0.0850671 0.0831487 0.00248224 Vertex 22007 -0.085494 0.083212 0.00349969 Vertex 22008 -0.0856607 0.0832001 0.00448541 Vertex 22009 -0.0859248 0.0832079 0.00547822 Vertex 22010 -0.0861846 0.083225 0.00647736 Vertex 22011 -0.0862277 0.0832671 0.00749085 Vertex 22012 -0.0863077 0.083293 0.0084931 Vertex 22013 -0.086438 0.0832915 0.00949498 Vertex 22014 -0.0865698 0.0833108 0.0104907 Vertex 22015 -0.0866662 0.0833296 0.0114916 Vertex 22016 -0.0866888 0.0833263 0.0124872 Vertex 22017 -0.0867616 0.0833332 0.0134846 Vertex 22018 -0.0867571 0.0833567 0.0144816 Vertex 22019 -0.0866936 0.0833424 0.0154842 Vertex 22020 -0.0865991 0.0833319 0.0164838 Vertex 22021 -0.086501 0.0833246 0.0174861 Vertex 22022 -0.0864179 0.083353 0.0184733 Vertex 22023 -0.0861267 0.0833147 0.0194823 Vertex 22024 -0.0858835 0.0833066 0.0204824 Vertex 22025 -0.0855025 0.0832965 0.0214753 Vertex 22026 -0.0851368 0.0832799 0.0224738 Vertex 22027 -0.0846445 0.0832051 0.023501 Vertex 22028 -0.0845698 0.0831877 0.0245094 Vertex 22029 -0.0845601 0.0832447 0.0254813 Vertex 22030 -0.0844285 0.0832425 0.0264792 Vertex 22031 -0.0841359 0.0832101 0.027497 Vertex 22032 -0.0899789 0.133805 0.0362152 Vertex 22033 -0.0917617 0.141982 0.0191718 Vertex 22034 -0.091634 0.141989 0.0201675 Vertex 22035 -0.0899902 0.146067 0.012148 Vertex 22036 -0.0797197 0.143117 -0.0027917 Vertex 22037 -0.0887185 0.143427 0.0331607 Vertex 22038 -0.0834729 0.144593 0.00316535 Vertex 22039 -0.0716625 0.145448 -0.0198949 Vertex 22040 -0.0366243 0.151025 -0.00298791 Vertex 22041 -0.0898169 0.147438 0.0111767 Vertex 22042 0.0313027 0.114101 -0.00492854 Vertex 22043 -0.0846698 0.148755 0.00515607 Vertex 22044 -0.0908832 0.150197 0.0161314 Vertex 22045 -0.0748416 0.154048 -0.0189002 Vertex 22046 -0.0790033 0.16525 -0.0329555 Vertex 22047 -0.010699 0.104948 -0.0231645 Vertex 22048 -0.080949 0.137599 -0.00280806 Vertex 22049 -0.0900062 0.133811 0.0372136 Vertex 22050 -0.0500022 0.16408 -0.00389251 Vertex 22051 -0.0730192 0.156843 -0.0319176 Vertex 22052 -0.0727415 0.154031 -0.0358995 Vertex 22053 -0.0900812 0.150215 0.0221142 Vertex 22054 -0.0722746 0.15542 -0.0369062 Vertex 22055 -0.0759474 0.151351 -0.0188826 Vertex 22056 -0.0751782 0.152724 -0.0149145 Vertex 22057 -0.0733241 0.158247 -0.0319134 Vertex 22058 -0.0705096 0.1624 -0.046948 Vertex 22059 -0.021676 0.184465 -0.0190713 Vertex 22060 -0.0938558 0.126876 0.0162567 Vertex 22061 0.0305816 0.112813 -0.00758269 Vertex 22062 -0.0936376 0.124116 0.0132691 Vertex 22063 -0.0502854 0.11522 -0.0158495 Vertex 22064 -0.0513475 0.115214 -0.0158415 Vertex 22065 -0.0580499 0.11553 -0.0140963 Vertex 22066 -0.0285168 0.0803552 -0.0356291 Vertex 22067 -0.0294013 0.0804353 -0.034602 Vertex 22068 -0.0302691 0.080511 -0.0335682 Vertex 22069 -0.0309197 0.0805646 -0.0325792 Vertex 22070 -0.0316705 0.0806285 -0.0315587 Vertex 22071 -0.0321423 0.0806683 -0.0305334 Vertex 22072 -0.0326422 0.080708 -0.0295257 Vertex 22073 -0.0328741 0.0807299 -0.0285171 Vertex 22074 -0.0330023 0.0807475 -0.0275162 Vertex 22075 -0.0333828 0.0807789 -0.0265175 Vertex 22076 -0.0337955 0.0808164 -0.0255276 Vertex 22077 -0.0342171 0.0808501 -0.0245506 Vertex 22078 -0.0346997 0.0808739 -0.0236048 Vertex 22079 -0.0364431 0.0379518 -0.0296736 Vertex 22080 -0.0231503 0.121506 -0.00857745 Vertex 22081 0.0224677 0.112582 -0.013341 Vertex 22082 0.0252174 0.115733 -0.00872379 Vertex 22083 -0.0261028 0.115949 -0.0147279 Vertex 22084 -0.0406505 0.117474 -0.0142631 Vertex 22085 -0.0324809 0.117911 -0.0127388 Vertex 22086 -0.0314168 0.117929 -0.0127586 Vertex 22087 -0.0747046 0.0837005 -0.0145969 Vertex 22088 -0.0756553 0.0837701 -0.0135751 Vertex 22089 -0.0763952 0.0838159 -0.0125906 Vertex 22090 -0.077345 0.0838842 -0.0115833 Vertex 22091 -0.0783276 0.0839475 -0.0105972 Vertex 22092 -0.0792621 0.084024 -0.00957002 Vertex 22093 -0.0798951 0.0840617 -0.00859358 Vertex 22094 -0.0803392 0.0841108 -0.00756769 Vertex 22095 -0.0811308 0.0841829 -0.00653469 Vertex 22096 -0.0822314 0.0842513 -0.00555381 Vertex 22097 -0.0830843 0.0843065 -0.0045636 Vertex 22098 -0.0839142 0.0843714 -0.00355138 Vertex 22099 -0.0846111 0.084433 -0.00253466 Vertex 22100 -0.0849678 0.0844642 -0.00152644 Vertex 22101 -0.0852858 0.0845126 -0.000515374 Vertex 22102 -0.0856455 0.0845341 0.000486997 Vertex 22103 -0.0860138 0.0845642 0.00148082 Vertex 22104 -0.0864815 0.0846104 0.00248575 Vertex 22105 -0.0868299 0.0846427 0.00348465 Vertex 22106 -0.0870453 0.0846718 0.00449266 Vertex 22107 -0.0870945 0.0846532 0.00548002 Vertex 22108 -0.0871031 0.0846537 0.0064784 Vertex 22109 -0.086966 0.0846591 0.00747852 Vertex 22110 -0.0868004 0.0846768 0.00848321 Vertex 22111 -0.086804 0.0846773 0.00948205 Vertex 22112 -0.0869453 0.0846809 0.01048 Vertex 22113 -0.0870838 0.0846865 0.0114769 Vertex 22114 -0.0870566 0.0847034 0.0124776 Vertex 22115 -0.0869081 0.0847086 0.0134765 Vertex 22116 -0.0868853 0.0847213 0.0144753 Vertex 22117 -0.0868133 0.0846987 0.0154763 Vertex 22118 -0.086761 0.084678 0.016478 Vertex 22119 -0.086829 0.0847067 0.0174745 Vertex 22120 -0.0867621 0.084687 0.0184803 Vertex 22121 -0.0866231 0.0846922 0.0194779 Vertex 22122 -0.0864956 0.084691 0.0204775 Vertex 22123 -0.0862565 0.0846802 0.0214754 Vertex 22124 -0.0861039 0.0846923 0.0224682 Vertex 22125 -0.0857911 0.0847131 0.0234468 Vertex 22126 -0.085128 0.0845897 0.0244984 Vertex 22127 -0.0848476 0.0845966 0.0254873 Vertex 22128 -0.0846364 0.0845811 0.0264985 Vertex 22129 -0.0899225 0.133822 0.0382154 Vertex 22130 -0.085403 0.141865 0.00516647 Vertex 22131 -0.0910722 0.141959 0.0151878 Vertex 22132 -0.0890108 0.142042 0.0341592 Vertex 22133 -0.08762 0.143285 0.0101199 Vertex 22134 -0.0889467 0.143422 0.0321606 Vertex 22135 -0.0839561 0.144602 0.00415973 Vertex 22136 -0.0757697 0.145819 -0.00688494 Vertex 22137 -0.0914628 0.146095 0.0181484 Vertex 22138 -0.089139 0.139182 0.0122002 Vertex 22139 -0.0861526 0.148758 0.00721004 Vertex 22140 -0.0853634 0.14876 0.00617316 Vertex 22141 -0.0888439 0.150092 0.0112242 Vertex 22142 -0.0743362 0.15411 -0.0219057 Vertex 22143 -0.0545091 0.161256 6.9518e-05 Vertex 22144 -0.078769 0.165248 -0.0339573 Vertex 22145 -0.0321404 0.106348 -0.0206098 Vertex 22146 -0.0816586 0.137613 -0.00180043 Vertex 22147 -0.0846496 0.129332 -0.00265191 Vertex 22148 -0.0492398 0.164062 -0.00484765 Vertex 22149 -0.0743438 0.156862 -0.0249223 Vertex 22150 -0.0725366 0.154032 -0.0369032 Vertex 22151 -0.0891677 0.150225 0.0241083 Vertex 22152 -0.0699623 0.155307 -0.0499609 Vertex 22153 -0.0721646 0.155417 -0.0379087 Vertex 22154 -0.0759412 0.151358 -0.0178788 Vertex 22155 -0.0749763 0.152739 -0.0169005 Vertex 22156 -0.0734754 0.158245 -0.0309204 Vertex 22157 -0.070167 0.162396 -0.0479528 Vertex 22158 -0.0192518 0.185941 -0.0210687 Vertex 22159 -0.0920162 0.126943 0.0352547 Vertex 22160 -0.093776 0.124126 0.0142628 Vertex 22161 -0.0522762 0.123638 -0.00859751 Vertex 22162 0.0210264 0.0895934 -0.0248804 Vertex 22163 -0.0286135 0.0817842 -0.0355888 Vertex 22164 -0.0292965 0.0818454 -0.0346209 Vertex 22165 -0.030041 0.0819074 -0.0335886 Vertex 22166 -0.0306482 0.0819602 -0.032565 Vertex 22167 -0.0311686 0.0820079 -0.0315681 Vertex 22168 -0.0320154 0.082069 -0.0305372 Vertex 22169 -0.032545 0.0821172 -0.0295502 Vertex 22170 -0.0327877 0.082138 -0.0285334 Vertex 22171 -0.0331507 0.0821697 -0.0275285 Vertex 22172 -0.0333885 0.082189 -0.0265241 Vertex 22173 -0.0336642 0.082217 -0.0255373 Vertex 22174 -0.034171 0.0822565 -0.0245355 Vertex 22175 -0.0348253 0.0822923 -0.0236386 Vertex 22176 0.0130456 0.0946785 -0.0262358 Vertex 22177 0.0230175 0.0903576 -0.0236845 Vertex 22178 0.0322433 0.0896617 -0.0189276 Vertex 22179 0.0190214 0.118116 -0.0113006 Vertex 22180 -0.016169 0.117727 -0.0146898 Vertex 22181 -0.033579 0.117839 -0.0126505 Vertex 22182 -0.0591392 0.118534 -0.0111826 Vertex 22183 -0.0760973 0.0851761 -0.013541 Vertex 22184 -0.0768599 0.0852186 -0.0125783 Vertex 22185 -0.077715 0.0852782 -0.0115916 Vertex 22186 -0.0786706 0.0853441 -0.0105854 Vertex 22187 -0.0794952 0.0854073 -0.00956797 Vertex 22188 -0.0801763 0.0854684 -0.0085384 Vertex 22189 -0.0806595 0.0855046 -0.00754297 Vertex 22190 -0.0814052 0.08555 -0.00656718 Vertex 22191 -0.0824519 0.0856305 -0.00554258 Vertex 22192 -0.0834123 0.0856961 -0.00454328 Vertex 22193 -0.0842614 0.0857549 -0.00354776 Vertex 22194 -0.0848416 0.0858026 -0.00253503 Vertex 22195 -0.0852938 0.0858468 -0.00152115 Vertex 22196 -0.0856596 0.0858717 -0.000523015 Vertex 22197 -0.0861402 0.0859086 0.000475654 Vertex 22198 -0.0866097 0.0859466 0.00148078 Vertex 22199 -0.08699 0.0859713 0.00247197 Vertex 22200 -0.0874441 0.0860134 0.00347726 Vertex 22201 -0.0877934 0.0860475 0.0044818 Vertex 22202 -0.0879813 0.0860844 0.0054873 Vertex 22203 -0.0879792 0.086094 0.00648058 Vertex 22204 -0.0878523 0.0860961 0.00747941 Vertex 22205 -0.0877357 0.0860979 0.0084778 Vertex 22206 -0.0878555 0.0861109 0.00948006 Vertex 22207 -0.0881094 0.0861284 0.0104766 Vertex 22208 -0.0882347 0.0861347 0.011472 Vertex 22209 -0.0881632 0.0861128 0.0124706 Vertex 22210 -0.0878748 0.0861246 0.0134664 Vertex 22211 -0.0874341 0.0860792 0.0144694 Vertex 22212 -0.0875304 0.0861027 0.015468 Vertex 22213 -0.087695 0.0860952 0.016472 Vertex 22214 -0.0877886 0.0861226 0.0174689 Vertex 22215 -0.087689 0.0861087 0.0184696 Vertex 22216 -0.0875543 0.0861148 0.0194651 Vertex 22217 -0.0874212 0.0861211 0.0204627 Vertex 22218 -0.0871923 0.0861012 0.021463 Vertex 22219 -0.0869334 0.0861006 0.0224549 Vertex 22220 -0.0865732 0.0860822 0.023453 Vertex 22221 -0.0108803 0.105927 -0.0227775 Vertex 22222 -0.0917004 0.143358 0.0201656 Vertex 22223 -0.0914397 0.143364 0.0211639 Vertex 22224 -0.0884925 0.144689 0.01017 Vertex 22225 -0.0714237 0.153981 -0.0448933 Vertex 22226 -0.0857362 0.141867 0.00617644 Vertex 22227 -0.0915766 0.14196 0.0161629 Vertex 22228 -0.0891584 0.142048 0.0331685 Vertex 22229 -0.0882036 0.143298 0.0111345 Vertex 22230 -0.0748382 0.149925 -0.0278668 Vertex 22231 -0.0843436 0.144613 0.00514953 Vertex 22232 -0.0754983 0.145823 -0.00786764 Vertex 22233 -0.091547 0.146101 0.0191506 Vertex 22234 -0.0753389 0.14722 -0.0108566 Vertex 22235 -0.0879015 0.148743 0.00925863 Vertex 22236 -0.0761052 0.14997 -0.0158781 Vertex 22237 -0.0880403 0.150094 0.0102212 Vertex 22238 -0.0742127 0.154103 -0.0229066 Vertex 22239 -0.0709313 0.156768 -0.044906 Vertex 22240 -0.0781795 0.165241 -0.0349583 Vertex 22241 -0.0857975 0.0926505 0.000473688 Vertex 22242 -0.0826495 0.137607 -0.000712655 Vertex 22243 -0.0876587 0.151372 0.0112162 Vertex 22244 -0.0482842 0.164088 -0.00583628 Vertex 22245 -0.0746075 0.156859 -0.0239292 Vertex 22246 -0.0725073 0.154019 -0.0378993 Vertex 22247 -0.0886058 0.150235 0.0251076 Vertex 22248 -0.0912353 0.14886 0.0211316 Vertex 22249 -0.0759388 0.151364 -0.016882 Vertex 22250 -0.074971 0.152728 -0.0179063 Vertex 22251 -0.0739864 0.158247 -0.0289285 Vertex 22252 -0.0699136 0.162391 -0.0489495 Vertex 22253 -0.0199993 0.185902 -0.0200623 Vertex 22254 -0.0840153 0.1376 0.000355984 Vertex 22255 -0.0939 0.124133 0.015262 Vertex 22256 -0.0171637 0.0956465 -0.0313986 Vertex 22257 0.0252334 0.114772 -0.00969056 Vertex 22258 -0.0283933 0.0831937 -0.0356194 Vertex 22259 -0.0291817 0.0832547 -0.0346104 Vertex 22260 -0.0297803 0.0833036 -0.0335871 Vertex 22261 -0.0303956 0.0833549 -0.0325649 Vertex 22262 -0.0307989 0.0833965 -0.031578 Vertex 22263 -0.0315196 0.0834471 -0.0305496 Vertex 22264 -0.0322701 0.0835031 -0.0295487 Vertex 22265 -0.0326786 0.0835446 -0.0285522 Vertex 22266 -0.0328837 0.0835575 -0.0275315 Vertex 22267 -0.0332667 0.0835875 -0.0265323 Vertex 22268 -0.0336364 0.0836212 -0.0255231 Vertex 22269 -0.0343312 0.0836736 -0.0246034 Vertex 22270 -0.0349846 0.0837189 -0.0236297 Vertex 22271 -0.00865052 0.104822 -0.0230347 Vertex 22272 -0.0940576 0.125561 0.0242759 Vertex 22273 -0.0942583 0.125557 0.0232684 Vertex 22274 -0.0598599 0.0358888 0.0454954 Vertex 22275 0.0277899 0.116538 -0.00556904 Vertex 22276 -0.0394946 0.119701 -0.0126173 Vertex 22277 -0.0603705 0.118249 -0.0108601 Vertex 22278 -0.00441308 0.12096 -0.0123131 Vertex 22279 -0.0762362 0.0865455 -0.0135615 Vertex 22280 -0.0770884 0.0866038 -0.0125752 Vertex 22281 -0.0779306 0.0866645 -0.0115691 Vertex 22282 -0.0787615 0.0867217 -0.0105634 Vertex 22283 -0.0795726 0.0867837 -0.00954059 Vertex 22284 -0.0801984 0.0868229 -0.00856132 Vertex 22285 -0.0808035 0.0868637 -0.00756861 Vertex 22286 -0.0816708 0.0869142 -0.00660013 Vertex 22287 -0.0825962 0.0869865 -0.00556699 Vertex 22288 -0.0836382 0.0870656 -0.00453769 Vertex 22289 -0.0843646 0.087116 -0.00354087 Vertex 22290 -0.0849546 0.0871617 -0.00253673 Vertex 22291 -0.0853984 0.0872002 -0.00151975 Vertex 22292 -0.0857724 0.0872268 -0.000524277 Vertex 22293 -0.0863511 0.0872693 0.000483167 Vertex 22294 -0.0868392 0.0873072 0.00147849 Vertex 22295 -0.0873232 0.0873446 0.00247822 Vertex 22296 -0.0877048 0.0873692 0.00346654 Vertex 22297 -0.0880447 0.0874003 0.00446864 Vertex 22298 -0.0883598 0.0874311 0.00547496 Vertex 22299 -0.0884279 0.0874564 0.00647862 Vertex 22300 -0.0884282 0.0874635 0.00747939 Vertex 22301 -0.0884304 0.0874699 0.00847782 Vertex 22302 -0.088608 0.0874693 0.0094764 Vertex 22303 -0.088847 0.0874807 0.0104655 Vertex 22304 -0.0889313 0.0875027 0.0114635 Vertex 22305 -0.0889154 0.0875162 0.0124615 Vertex 22306 -0.0887218 0.0874968 0.0134639 Vertex 22307 -0.0883906 0.0874807 0.0144622 Vertex 22308 -0.0883909 0.0874867 0.0154625 Vertex 22309 -0.088603 0.087513 0.0164636 Vertex 22310 -0.0886021 0.087516 0.0174642 Vertex 22311 -0.0885609 0.087538 0.0184581 Vertex 22312 -0.0883581 0.0875191 0.0194553 Vertex 22313 -0.0881537 0.0875035 0.020457 Vertex 22314 -0.0878269 0.087472 0.021463 Vertex 22315 -0.0875265 0.087486 0.0224433 Vertex 22316 -0.0871517 0.0874756 0.0234341 Vertex 22317 -0.075265 0.148568 -0.0158698 Vertex 22318 -0.0913716 0.140622 0.0201693 Vertex 22319 -0.0902457 0.140661 0.0271695 Vertex 22320 -0.0892399 0.140676 0.0351725 Vertex 22321 -0.081175 0.14869 0.00117764 Vertex 22322 -0.0802179 0.141741 -0.00280512 Vertex 22323 -0.0903128 0.141958 0.0142327 Vertex 22324 -0.0887949 0.142048 0.03516 Vertex 22325 -0.088758 0.143311 0.0121502 Vertex 22326 -0.0731059 0.151228 -0.0378853 Vertex 22327 -0.0848994 0.144621 0.00617242 Vertex 22328 -0.0751346 0.145812 -0.00886348 Vertex 22329 -0.0916156 0.146104 0.0201482 Vertex 22330 -0.0913297 0.148826 0.016141 Vertex 22331 -0.0757782 0.149978 -0.0188682 Vertex 22332 -0.0760543 0.149976 -0.0168736 Vertex 22333 -0.0746657 0.154121 -0.0198989 Vertex 22334 -0.0744527 0.154114 -0.0209063 Vertex 22335 -0.0713082 0.165213 -0.0459899 Vertex 22336 0.0143403 0.11733 -0.0144441 Vertex 22337 -0.0852773 0.137655 0.00128094 Vertex 22338 -0.0798492 0.140347 -0.0037915 Vertex 22339 -0.0472303 0.164057 -0.00679428 Vertex 22340 -0.0750921 0.156856 -0.022942 Vertex 22341 -0.0723124 0.154022 -0.038905 Vertex 22342 -0.0881372 0.150234 0.0261027 Vertex 22343 -0.0723819 0.152607 -0.0408904 Vertex 22344 -0.0916005 0.147489 0.0211447 Vertex 22345 -0.0754488 0.151352 -0.0128993 Vertex 22346 -0.0748173 0.152727 -0.0208966 Vertex 22347 -0.0763594 0.158279 -0.023921 Vertex 22348 -0.0695999 0.162389 -0.0499627 Vertex 22349 -0.0205087 0.18589 -0.0190712 Vertex 22350 -0.0860712 0.137702 0.0022107 Vertex 22351 -0.0945603 0.124158 0.0182654 Vertex 22352 -0.0930288 0.116051 0.018311 Vertex 22353 0.024446 0.115337 -0.010308 Vertex 22354 -0.0281178 0.0845911 -0.0356125 Vertex 22355 -0.0289152 0.0846603 -0.0346291 Vertex 22356 -0.0294308 0.0847062 -0.0336139 Vertex 22357 -0.0299377 0.0847457 -0.0326018 Vertex 22358 -0.0305175 0.0847809 -0.0315638 Vertex 22359 -0.0309131 0.0848198 -0.0305724 Vertex 22360 -0.0315498 0.0848744 -0.0295692 Vertex 22361 -0.0320496 0.0849187 -0.0285721 Vertex 22362 -0.0324125 0.0849398 -0.0275574 Vertex 22363 -0.0326967 0.0849828 -0.026556 Vertex 22364 -0.0332116 0.0851655 -0.0254848 Vertex 22365 -0.0347045 0.0851136 -0.0245778 Vertex 22366 -0.0353285 0.0851433 -0.0237512 Vertex 22367 -0.0935493 0.125561 0.0262639 Vertex 22368 -0.0938092 0.125562 0.0252741 Vertex 22369 -0.0856504 0.126624 -0.00269798 Vertex 22370 0.0312024 0.114939 -0.00384217 Vertex 22371 -0.0835389 0.110217 0.0023021 Vertex 22372 -0.0345505 0.175605 -0.011982 Vertex 22373 -0.00231596 0.121888 -0.0112268 Vertex 22374 -0.00640927 0.120163 -0.0133583 Vertex 22375 -0.0762132 0.0879097 -0.0135406 Vertex 22376 -0.0771177 0.0879695 -0.0126012 Vertex 22377 -0.0780353 0.0880327 -0.0115615 Vertex 22378 -0.0786364 0.0880738 -0.010561 Vertex 22379 -0.0793362 0.0881239 -0.0095476 Vertex 22380 -0.0801014 0.0881671 -0.00858727 Vertex 22381 -0.0809514 0.0882189 -0.0076035 Vertex 22382 -0.0820513 0.0882817 -0.00662822 Vertex 22383 -0.082997 0.0883523 -0.00560613 Vertex 22384 -0.0838035 0.0884157 -0.00457068 Vertex 22385 -0.084499 0.088474 -0.00355332 Vertex 22386 -0.0849643 0.0885105 -0.00254627 Vertex 22387 -0.0854224 0.0885478 -0.00153705 Vertex 22388 -0.0857793 0.088721 -0.000547834 Vertex 22389 -0.0862272 0.0886081 0.000477626 Vertex 22390 -0.0868019 0.0886457 0.00149241 Vertex 22391 -0.0873123 0.0886781 0.00248146 Vertex 22392 -0.0877889 0.0887187 0.00347532 Vertex 22393 -0.0881443 0.0887489 0.00447233 Vertex 22394 -0.0884641 0.0887716 0.00547605 Vertex 22395 -0.0886025 0.0887878 0.00646717 Vertex 22396 -0.088793 0.0888086 0.00747102 Vertex 22397 -0.0889223 0.0888194 0.00846703 Vertex 22398 -0.0890554 0.0888307 0.00946144 Vertex 22399 -0.0892473 0.0888575 0.0104669 Vertex 22400 -0.0893459 0.0888735 0.0114634 Vertex 22401 -0.0892808 0.0888643 0.0124572 Vertex 22402 -0.0892338 0.0888828 0.0134587 Vertex 22403 -0.0891206 0.0888853 0.014456 Vertex 22404 -0.0891212 0.0888935 0.0154552 Vertex 22405 -0.0891941 0.0888738 0.0164555 Vertex 22406 -0.0891756 0.088886 0.0174542 Vertex 22407 -0.0891252 0.0889064 0.0184472 Vertex 22408 -0.0889386 0.0888873 0.0194501 Vertex 22409 -0.0887231 0.0888754 0.0204484 Vertex 22410 -0.0884531 0.0888833 0.0214341 Vertex 22411 -0.0881282 0.0888644 0.0224361 Vertex 22412 -0.0877229 0.0888584 0.0234132 Vertex 22413 -0.0855097 0.129367 -0.00169404 Vertex 22414 -0.0910616 0.140621 0.0211716 Vertex 22415 -0.090351 0.14066 0.0261698 Vertex 22416 -0.088994 0.140671 0.0361625 Vertex 22417 -0.0776115 0.15005 -0.0049035 Vertex 22418 -0.0809405 0.141759 -0.00181375 Vertex 22419 -0.0882134 0.141936 0.0111996 Vertex 22420 -0.0884618 0.142054 0.0361609 Vertex 22421 -0.086972 0.143283 0.00915353 Vertex 22422 -0.0459359 0.168402 -0.00594095 Vertex 22423 -0.0856199 0.144636 0.00717286 Vertex 22424 -0.0740398 0.145796 -0.011857 Vertex 22425 -0.0915979 0.146114 0.0211525 Vertex 22426 -0.0912059 0.14882 0.0151457 Vertex 22427 -0.07594 0.14997 -0.0178724 Vertex 22428 -0.0774831 0.151439 -0.0048996 Vertex 22429 -0.0769695 0.154154 -0.0139015 Vertex 22430 -0.0765957 0.161076 -0.0289322 Vertex 22431 -0.0188044 0.120762 -0.00982397 Vertex 22432 -0.0865466 0.137714 0.00320362 Vertex 22433 -0.0706693 0.165215 -0.0479768 Vertex 22434 -0.0651923 0.176525 -0.0608469 Vertex 22435 -0.0639487 0.168098 -0.0606895 Vertex 22436 -0.0461075 0.164061 -0.00779976 Vertex 22437 -0.0760167 0.15688 -0.0219252 Vertex 22438 -0.0721764 0.154012 -0.0399025 Vertex 22439 -0.0288404 0.0972702 -0.0238091 Vertex 22440 -0.0915313 0.147463 0.0171482 Vertex 22441 -0.0916539 0.147467 0.0181472 Vertex 22442 -0.0755105 0.151351 -0.0138965 Vertex 22443 -0.0749324 0.152731 -0.0198994 Vertex 22444 -0.0754549 0.158227 -0.0249553 Vertex 22445 -0.0686632 0.162379 -0.0529737 Vertex 22446 -0.00173319 0.108975 -0.0214067 Vertex 22447 -0.0943409 0.12415 0.0172628 Vertex 22448 0.0242293 0.119847 -0.00515511 Vertex 22449 -0.0393568 0.123991 -0.00912015 Vertex 22450 -0.0623267 0.035582 -0.00867786 Vertex 22451 -0.0284012 0.0860445 -0.0346283 Vertex 22452 -0.0291377 0.0860908 -0.0335904 Vertex 22453 -0.0295614 0.0861399 -0.0326125 Vertex 22454 -0.0300453 0.0861604 -0.0315778 Vertex 22455 -0.0304105 0.0861968 -0.0305753 Vertex 22456 -0.0308996 0.0862326 -0.0295626 Vertex 22457 -0.0313945 0.0862693 -0.0285563 Vertex 22458 -0.0317716 0.0863018 -0.027557 Vertex 22459 -0.032145 0.0863362 -0.0265533 Vertex 22460 -0.0326605 0.0863757 -0.0255732 Vertex 22461 -0.0351444 0.0865581 -0.0244792 Vertex 22462 0.0268857 0.117842 -0.00498093 Vertex 22463 -0.0519318 0.0352921 -0.0124585 Vertex 22464 -0.0910261 0.12541 0.00626868 Vertex 22465 -0.0932418 0.125562 0.0272746 Vertex 22466 -0.0866088 0.126656 -0.00171455 Vertex 22467 -0.0909462 0.11476 0.0333322 Vertex 22468 -0.0841444 0.110242 0.00330414 Vertex 22469 -0.0876151 0.1105 0.015342 Vertex 22470 -0.00216638 0.09997 -0.023881 Vertex 22471 -0.00853806 0.120181 -0.0133625 Vertex 22472 -0.076206 0.0892711 -0.0135327 Vertex 22473 -0.0771941 0.0893363 -0.0125642 Vertex 22474 -0.0779429 0.0893818 -0.0115854 Vertex 22475 -0.0785236 0.0894249 -0.0105705 Vertex 22476 -0.0792595 0.0894709 -0.0095871 Vertex 22477 -0.0801272 0.0895173 -0.00861746 Vertex 22478 -0.0810295 0.0895599 -0.00769505 Vertex 22479 -0.082525 0.0896742 -0.00660526 Vertex 22480 -0.0835634 0.0897492 -0.00557879 Vertex 22481 -0.084275 0.0897993 -0.00457099 Vertex 22482 -0.0848366 0.0898781 -0.00356125 Vertex 22483 -0.0851803 0.0899483 -0.00256663 Vertex 22484 -0.0854479 0.0898939 -0.00155092 Vertex 22485 -0.0856512 0.0899172 -0.000541045 Vertex 22486 -0.0859012 0.0899317 0.000454719 Vertex 22487 -0.0864523 0.0899653 0.00147962 Vertex 22488 -0.0870489 0.0900041 0.00248653 Vertex 22489 -0.0875561 0.0900472 0.00346813 Vertex 22490 -0.087913 0.0900756 0.00446758 Vertex 22491 -0.0882504 0.0900881 0.0054683 Vertex 22492 -0.0885745 0.0901142 0.00646846 Vertex 22493 -0.0887995 0.0901451 0.00746775 Vertex 22494 -0.0889579 0.0901579 0.00845534 Vertex 22495 -0.0891635 0.0901786 0.00945748 Vertex 22496 -0.0893735 0.0901981 0.0104595 Vertex 22497 -0.0895062 0.0902087 0.0114561 Vertex 22498 -0.0895421 0.090213 0.0124508 Vertex 22499 -0.0896067 0.0902304 0.0134498 Vertex 22500 -0.0895436 0.0902218 0.014448 Vertex 22501 -0.0896121 0.0902414 0.0154476 Vertex 22502 -0.089636 0.0902445 0.0164491 Vertex 22503 -0.0895621 0.0902365 0.017449 Vertex 22504 -0.0895055 0.0902528 0.0184453 Vertex 22505 -0.0893681 0.0902559 0.0194368 Vertex 22506 -0.0891009 0.0902275 0.0204481 Vertex 22507 -0.0888276 0.090232 0.0214359 Vertex 22508 -0.0885465 0.0902329 0.022415 Vertex 22509 0.0209029 0.107601 -0.0159886 Vertex 22510 -0.0390625 0.110364 -0.0188163 Vertex 22511 -0.0892808 0.140568 0.013241 Vertex 22512 -0.0903092 0.140666 0.025165 Vertex 22513 -0.0493982 0.113885 -0.0164603 Vertex 22514 -0.0814089 0.141772 -0.000809353 Vertex 22515 -0.0875275 0.141918 0.0101858 Vertex 22516 -0.0617568 0.113454 -0.0138737 Vertex 22517 -0.0851037 0.143224 0.00618561 Vertex 22518 -0.089541 0.143417 0.0301691 Vertex 22519 -0.0829718 0.144576 0.00217748 Vertex 22520 -0.0743787 0.145821 -0.0108474 Vertex 22521 -0.0913521 0.14609 0.0171489 Vertex 22522 -0.0757302 0.147214 -0.00986768 Vertex 22523 -0.0756832 0.149968 -0.01987 Vertex 22524 -0.0776508 0.151441 -0.00388634 Vertex 22525 -0.0790475 0.168047 -0.0349702 Vertex 22526 -0.0781873 0.168068 -0.0319708 Vertex 22527 -0.0538886 0.161243 -0.000916627 Vertex 22528 -0.0709498 0.165209 -0.0469921 Vertex 22529 -0.0694764 0.165214 -0.0509787 Vertex 22530 0.0223468 0.121292 -0.00473526 Vertex 22531 -0.0674763 0.168038 -0.0560148 Vertex 22532 -0.0852257 0.114326 0.001271 Vertex 22533 -0.0768497 0.156895 -0.0209209 Vertex 22534 -0.0720478 0.154003 -0.0409023 Vertex 22535 -0.0726437 0.152619 -0.0388965 Vertex 22536 -0.0914264 0.14884 0.0201323 Vertex 22537 -0.0909934 0.148856 0.0221303 Vertex 22538 -0.0756545 0.151363 -0.0148873 Vertex 22539 -0.074941 0.152735 -0.0189 Vertex 22540 -0.0749686 0.158241 -0.0259415 Vertex 22541 -0.0690062 0.162382 -0.0519693 Vertex 22542 0.0033632 0.097467 -0.0272178 Vertex 22543 -0.0940988 0.124142 0.016266 Vertex 22544 -0.0790938 0.10996 -0.003593 Vertex 22545 -0.0771859 0.109877 -0.00559641 Vertex 22546 -0.0238533 0.0958019 -0.0255967 Vertex 22547 -0.0276205 0.0874255 -0.0346253 Vertex 22548 -0.0285082 0.0874866 -0.0336017 Vertex 22549 -0.0291401 0.0875323 -0.0325902 Vertex 22550 -0.02966 0.0875784 -0.0315907 Vertex 22551 -0.0300276 0.0875944 -0.030572 Vertex 22552 -0.030388 0.0876244 -0.0295653 Vertex 22553 -0.0307561 0.0876495 -0.0285591 Vertex 22554 -0.0311219 0.087675 -0.0275557 Vertex 22555 -0.0313824 0.0877015 -0.0265568 Vertex 22556 0.015157 0.122808 -0.00836184 Vertex 22557 -0.0915903 0.125424 0.00726612 Vertex 22558 -0.0870044 0.115772 0.00228167 Vertex 22559 -0.0929793 0.125561 0.0282631 Vertex 22560 -0.0873336 0.126682 -0.000726608 Vertex 22561 -0.0930993 0.129616 0.0162363 Vertex 22562 -0.0846369 0.110251 0.00429821 Vertex 22563 -0.0692038 0.156713 -0.0519425 Vertex 22564 -0.0509846 0.123023 -0.00999375 Vertex 22565 -0.0498456 0.123179 -0.0101809 Vertex 22566 -0.0762074 0.0906406 -0.013533 Vertex 22567 -0.0771876 0.0907032 -0.0125611 Vertex 22568 -0.078057 0.0907599 -0.0115869 Vertex 22569 -0.0785777 0.0907895 -0.0106208 Vertex 22570 -0.0794305 0.0908376 -0.00963692 Vertex 22571 -0.0805988 0.090913 -0.0086158 Vertex 22572 -0.0817894 0.0909919 -0.00761357 Vertex 22573 -0.0828622 0.0910525 -0.0066104 Vertex 22574 -0.0837824 0.091132 -0.00556609 Vertex 22575 -0.0845016 0.0911794 -0.00456302 Vertex 22576 -0.084979 0.0912122 -0.0035611 Vertex 22577 -0.0853564 0.091162 -0.00253932 Vertex 22578 -0.0855598 0.0912595 -0.00155473 Vertex 22579 -0.0856626 0.0912736 -0.00055353 Vertex 22580 -0.0857102 0.0912822 0.000468321 Vertex 22581 -0.0860328 0.0912972 0.00145067 Vertex 22582 -0.0865224 0.0913375 0.0024428 Vertex 22583 -0.0870992 0.0913786 0.00345195 Vertex 22584 -0.0875345 0.0914089 0.00446769 Vertex 22585 -0.0878883 0.0914318 0.00546674 Vertex 22586 -0.0882379 0.0914593 0.00646904 Vertex 22587 -0.0885869 0.0914877 0.00746285 Vertex 22588 -0.0888303 0.0915034 0.00845607 Vertex 22589 -0.0889791 0.0915153 0.00944503 Vertex 22590 -0.0892801 0.091541 0.0104497 Vertex 22591 -0.0894274 0.0915536 0.0114438 Vertex 22592 -0.0896358 0.0915718 0.0124456 Vertex 22593 -0.0897425 0.0915834 0.0134432 Vertex 22594 -0.0897769 0.0915868 0.0144438 Vertex 22595 -0.0897683 0.091592 0.0154417 Vertex 22596 -0.0897609 0.0915993 0.0164407 Vertex 22597 -0.0897339 0.0916034 0.0174376 Vertex 22598 -0.0896535 0.0916031 0.0184402 Vertex 22599 -0.0895419 0.0916017 0.0194388 Vertex 22600 -0.0893828 0.0916068 0.0204288 Vertex 22601 -0.0890486 0.0915916 0.0214249 Vertex 22602 -0.088699 0.0915828 0.0224195 Vertex 22603 0.0171905 0.116688 -0.0137466 Vertex 22604 -0.0878417 0.140531 0.0102059 Vertex 22605 -0.0899141 0.140577 0.0142032 Vertex 22606 -0.0901142 0.14065 0.0241685 Vertex 22607 -0.0820175 0.148708 0.00217249 Vertex 22608 -0.0744487 0.141666 -0.00675172 Vertex 22609 -0.086045 0.141863 0.00720055 Vertex 22610 -0.0886682 0.141939 0.0121971 Vertex 22611 -0.0903937 0.142028 0.0281621 Vertex 22612 -0.0845537 0.143232 0.00516668 Vertex 22613 -0.0891789 0.14342 0.0311627 Vertex 22614 -0.0823822 0.144566 0.00117046 Vertex 22615 -0.0746727 0.145787 -0.00986958 Vertex 22616 -0.0907871 0.14608 0.0151486 Vertex 22617 -0.0760799 0.147225 -0.00886324 Vertex 22618 -0.0754158 0.14997 -0.0218646 Vertex 22619 -0.0776245 0.151441 -0.00287924 Vertex 22620 0.0266901 0.106496 -0.0148024 Vertex 22621 -0.0921915 0.114676 0.0133297 Vertex 22622 -0.0786131 0.166659 -0.0369473 Vertex 22623 -0.070211 0.165211 -0.0489867 Vertex 22624 -0.0698391 0.165209 -0.0499791 Vertex 22625 -0.0147295 0.0942902 -0.0339999 Vertex 22626 -0.0699851 0.168026 -0.0510102 Vertex 22627 -0.0888241 0.114444 0.00524771 Vertex 22628 -0.0774531 0.156901 -0.0199195 Vertex 22629 -0.0719279 0.153998 -0.0419035 Vertex 22630 -0.0725064 0.152612 -0.0398907 Vertex 22631 -0.083982 0.134868 -0.000717316 Vertex 22632 -0.0758447 0.151365 -0.0158827 Vertex 22633 -0.0749566 0.152744 -0.0158977 Vertex 22634 -0.0743199 0.158257 -0.0279194 Vertex 22635 -0.0693451 0.162383 -0.0509602 Vertex 22636 -0.0223058 0.184466 -0.0180708 Vertex 22637 -0.0850366 0.134888 0.000298852 Vertex 22638 -0.0946685 0.124165 0.0192665 Vertex 22639 -0.0782331 0.109897 -0.00456592 Vertex 22640 -0.0476227 0.122378 -0.0113753 Vertex 22641 -0.0465602 0.122394 -0.0114017 Vertex 22642 -0.0276025 0.0888516 -0.0335952 Vertex 22643 -0.0282821 0.0889315 -0.0326167 Vertex 22644 -0.0289316 0.0889882 -0.0316153 Vertex 22645 -0.0294162 0.0890096 -0.030595 Vertex 22646 -0.0297851 0.0890261 -0.0295849 Vertex 22647 -0.0300375 0.0890464 -0.0285748 Vertex 22648 -0.0303971 0.0890708 -0.0275789 Vertex 22649 -0.0306702 0.0891071 -0.0265975 Vertex 22650 -0.0310391 0.0892178 -0.0256627 Vertex 22651 -0.00439966 0.119978 -0.0131705 Vertex 22652 0.00120442 0.117582 -0.0166604 Vertex 22653 -0.0920493 0.125439 0.00826634 Vertex 22654 -0.085242 0.115675 0.000251725 Vertex 22655 -0.086166 0.115735 0.00128445 Vertex 22656 -0.0845352 0.136246 0.000324782 Vertex 22657 -0.0879384 0.126705 0.000268669 Vertex 22658 -0.0913513 0.126793 0.00727091 Vertex 22659 -0.0852375 0.1104 0.00532111 Vertex 22660 -0.0545635 0.122251 -0.00910565 Vertex 22661 -0.0556879 0.117086 -0.0137514 Vertex 22662 -0.0762473 0.0920177 -0.013581 Vertex 22663 -0.0772308 0.0920788 -0.012603 Vertex 22664 -0.078074 0.0921324 -0.0116061 Vertex 22665 -0.0789524 0.0921836 -0.0106406 Vertex 22666 -0.0798777 0.0922401 -0.00961163 Vertex 22667 -0.0810332 0.092317 -0.00857663 Vertex 22668 -0.0819891 0.0923793 -0.00757573 Vertex 22669 -0.0828255 0.0924347 -0.00656966 Vertex 22670 -0.0836424 0.0924862 -0.00555232 Vertex 22671 -0.0843489 0.0925325 -0.00454911 Vertex 22672 -0.0849646 0.0925759 -0.00355765 Vertex 22673 -0.085327 0.0926016 -0.00256332 Vertex 22674 -0.0856886 0.0926246 -0.00156242 Vertex 22675 -0.0857757 0.0926386 -0.000557841 Vertex 22676 0.054748 0.0690996 0.0027667 Vertex 22677 -0.0369296 0.0455099 -0.0248207 Vertex 22678 -0.076686 0.0781369 0.0338733 Vertex 22679 -0.0167464 0.108538 -0.0209441 Vertex 22680 -0.0332153 0.107417 -0.0197253 Vertex 22681 -0.00470695 0.0982478 -0.0280611 Vertex 22682 -0.0213844 0.123724 -0.0049697 Vertex 22683 0.00710696 0.112707 -0.0194319 Vertex 22684 -0.00941329 0.0943623 -0.0340451 Vertex 22685 0.043146 0.0650339 -0.00117659 Vertex 22686 0.0226575 0.102902 -0.0189538 Vertex 22687 -0.0250024 0.118057 -0.0129436 Vertex 22688 0.0231094 0.1217 -0.00313916 Vertex 22689 0.024797 0.0615121 -0.0241542 Vertex 22690 -0.0274204 0.12046 -0.00942796 Vertex 22691 0.00560187 0.0957087 -0.0293479 Vertex 22692 0.0239365 0.0972468 -0.020928 Vertex 22693 0.0304359 0.108504 -0.0109544 Vertex 22694 -0.0489659 0.12587 -0.00699728 Vertex 22695 0.0204173 0.0925165 -0.0239466 Vertex 22696 -0.0302923 0.115032 -0.0157497 Vertex 22697 -0.0313173 0.115081 -0.0157968 Vertex 22698 -0.0376142 0.115213 -0.0159111 Vertex 22699 0.0248886 0.0970269 -0.0206985 Vertex 22700 0.0257868 0.0967214 -0.0203669 Vertex 22701 0.00199826 0.122137 -0.0115071 Vertex 22702 0.0279207 0.111816 -0.0105079 Vertex 22703 0.00325132 0.12142 -0.0127844 Vertex 22704 -0.0141356 0.103403 -0.0235224 Vertex 22705 0.0461568 0.0626078 -0.00274862 Vertex 22706 -0.0497318 0.0354763 -0.0126201 Vertex 22707 0.0223695 0.0993436 -0.0211483 Vertex 22708 -0.0287901 0.105845 -0.0221143 Vertex 22709 0.00710547 0.0893998 -0.032814 Vertex 22710 0.026686 0.0963684 -0.0200186 Vertex 22711 0.0279019 0.110786 -0.0114065 Vertex 22712 -0.0460367 0.115268 -0.015925 Vertex 22713 0.0345713 0.109241 -0.00571538 Vertex 22714 0.0562407 0.0648113 0.00118357 Vertex 22715 0.0252285 0.11379 -0.0106368 Vertex 22716 -0.0260473 0.11708 -0.0139183 Vertex 22717 -0.0144639 0.0977101 -0.0275565 Vertex 22718 -0.0358502 0.0986071 -0.0225695 Vertex 22719 -0.0121854 0.0980546 -0.0279084 Vertex 22720 0.0295458 0.115836 -0.00482165 Vertex 22721 -0.00642846 0.119149 -0.0142793 Vertex 22722 -0.00544058 0.119032 -0.0141551 Vertex 22723 -0.00442024 0.118937 -0.0140576 Vertex 22724 0.00546913 0.116627 -0.0176566 Vertex 22725 -0.0105486 0.0921685 -0.035821 Vertex 22726 -0.0366079 0.114094 -0.0167422 Vertex 22727 -0.036826 0.0446589 -0.0260242 Vertex 22728 -0.0309867 0.0458642 -0.0271867 Vertex 22729 0.0556932 0.0688929 0.00299188 Vertex 22730 -0.0319101 0.121969 -0.00695975 Vertex 22731 0.0275543 0.0960379 -0.019637 Vertex 22732 -0.0045009 0.116806 -0.0157814 Vertex 22733 0.0283978 0.0955434 -0.019149 Vertex 22734 0.0565861 0.0685555 0.00335277 Vertex 22735 0.0294074 0.0974659 -0.0171759 Vertex 22736 0.0178674 0.103889 -0.0200126 Vertex 22737 0.0168017 0.105866 -0.0181237 Vertex 22738 0.0574282 0.0681585 0.00377242 Vertex 22739 -0.0263327 0.111444 -0.0179843 Vertex 22740 -0.0292314 0.114996 -0.0157151 Vertex 22741 0.0259521 0.11908 -0.00433188 Vertex 22742 0.0248385 0.107021 -0.0153684 Vertex 22743 -0.00344803 0.111769 -0.0204187 Vertex 22744 -0.0182921 0.113707 -0.0184295 Vertex 22745 -0.0439904 0.115156 -0.0158426 Vertex 22746 0.00401707 0.125848 -0.00755459 Vertex 22747 0.0205831 0.11206 -0.0147671 Vertex 22748 0.0292409 0.0951488 -0.0187111 Vertex 22749 -0.00953059 0.096141 -0.0318625 Vertex 22750 0.000105856 0.117482 -0.0165473 Vertex 22751 -0.0396993 0.117276 -0.0140617 Vertex 22752 0.0291224 0.0877617 -0.0209279 Vertex 22753 0.0300883 0.0872505 -0.0203879 Vertex 22754 0.0451306 0.0647669 -0.000900002 Vertex 22755 0.0153133 0.121135 -0.0105519 Vertex 22756 0.0413142 0.0637288 -0.00386959 Vertex 22757 -0.0425153 0.118993 -0.0138741 Vertex 22758 -0.0545346 0.125365 -0.00640975 Vertex 22759 0.0111228 0.0960826 -0.0257288 Vertex 22760 -0.0498267 0.109983 -0.0185775 Vertex 22761 -0.0488146 0.109958 -0.0184987 Vertex 22762 -0.0320938 0.0457263 -0.0270587 Vertex 22763 0.0301411 0.102934 -0.0150039 Vertex 22764 -0.015954 0.105864 -0.0221228 Vertex 22765 0.043329 0.066441 -0.000599376 Vertex 22766 -0.0208013 0.108893 -0.0213287 Vertex 22767 0.0243406 0.113099 -0.011895 Vertex 22768 0.0300756 0.0946988 -0.0182345 Vertex 22769 0.0214342 0.0934308 -0.0229317 Vertex 22770 0.0309186 0.094253 -0.0177648 Vertex 22771 0.0317623 0.0938577 -0.0173357 Vertex 22772 0.0326128 0.0934199 -0.0168733 Vertex 22773 -0.0193967 0.186852 -0.0171886 Vertex 22774 -0.0184064 0.186879 -0.0179354 Vertex 22775 0.0334431 0.0930091 -0.0164312 Vertex 22776 -0.0326685 0.0478014 -0.0229356 Vertex 22777 0.0293268 0.0963357 -0.0179631 Vertex 22778 0.0351631 0.0941496 -0.0136388 Vertex 22779 0.0072631 0.0968089 -0.0265119 Vertex 22780 0.0189666 0.119003 -0.0102495 Vertex 22781 -0.0266047 0.0397022 -0.0293069 Vertex 22782 0.00602348 0.111527 -0.0200414 Vertex 22783 0.0232683 0.0857035 -0.0248261 Vertex 22784 -0.00768714 0.116771 -0.0157299 Vertex 22785 -0.0602175 0.0443014 -0.00489461 Vertex 22786 0.0343015 0.0925788 -0.0159761 Vertex 22787 0.0125005 0.1007 -0.0226033 Vertex 22788 0.0194959 0.111012 -0.0156283 Vertex 22789 -0.00136682 0.125668 -0.00729488 Vertex 22790 -0.0174424 0.10313 -0.0232301 Vertex 22791 -0.0187811 0.119777 -0.0107944 Vertex 22792 0.00646347 0.117501 -0.0166002 Vertex 22793 -0.0117599 0.104933 -0.0231377 Vertex 22794 -0.0115776 0.0962625 -0.032007 Vertex 22795 0.0227189 0.116065 -0.0110894 Vertex 22796 0.0115865 0.119151 -0.014401 Vertex 22797 0.00753839 0.119505 -0.0147629 Vertex 22798 0.0517415 0.0673755 0.000499527 Vertex 22799 0.0462769 0.0649494 -0.00109094 Vertex 22800 0.0351226 0.0921155 -0.0154837 Vertex 22801 0.00644791 0.119491 -0.0147367 Vertex 22802 0.0119628 0.111848 -0.018535 Vertex 22803 -0.033501 0.113967 -0.0166209 Vertex 22804 0.0346346 0.107297 -0.007625 Vertex 22805 0.000831008 0.0996342 -0.0235195 Vertex 22806 -0.035551 0.0451135 -0.0264751 Vertex 22807 -0.029871 0.0459583 -0.0272702 Vertex 22808 -0.0455357 0.120317 -0.0132441 Vertex 22809 0.0351408 0.0931106 -0.0145377 Vertex 22810 -0.0523481 0.125498 -0.00654313 Vertex 22811 0.0359154 0.0915824 -0.0149202 Vertex 22812 0.036687 0.0909845 -0.0142871 Vertex 22813 -0.0205328 0.113457 -0.0181494 Vertex 22814 -0.0193941 0.113623 -0.0183331 Vertex 22815 0.0374569 0.0904362 -0.0137042 Vertex 22816 0.0382626 0.0899111 -0.0131489 Vertex 22817 0.0342346 0.0852576 -0.0183147 Vertex 22818 0.0352172 0.0952034 -0.0127755 Vertex 22819 -0.0202144 0.186446 -0.0187314 Vertex 22820 -0.0189564 0.187079 -0.0195498 Vertex 22821 -0.0175221 0.187321 -0.0198494 Vertex 22822 -0.0626824 0.0436041 -0.00418427 Vertex 22823 -0.0564797 0.0356812 -0.0108166 Vertex 22824 -0.036531 0.116238 -0.0149852 Vertex 22825 -0.0592138 0.116352 -0.0129282 Vertex 22826 -0.00847175 0.0920515 -0.0356471 Vertex 22827 -0.04882 0.119077 -0.0139102 Vertex 22828 -0.0348994 0.124334 -0.00549397 Vertex 22829 -0.0293899 0.118762 -0.0116358 Vertex 22830 0.015329 0.118191 -0.013375 Vertex 22831 0.0314401 0.110365 -0.00894711 Vertex 22832 0.0032744 0.114489 -0.0193505 Vertex 22833 0.0268619 0.108823 -0.0133055 Vertex 22834 0.028516 0.117882 -0.00302906 Vertex 22835 0.00816067 0.125635 -0.0073679 Vertex 22836 -0.01069 0.0969192 -0.0307004 Vertex 22837 -0.0322502 0.0367926 -0.0305484 Vertex 22838 -5.87354e-05 0.100974 -0.0229378 Vertex 22839 -0.0164203 0.103082 -0.0232082 Vertex 22840 -0.0292637 0.0364551 -0.0300736 Vertex 22841 0.0121568 0.0930338 -0.0284961 Vertex 22842 -0.0218018 0.0947992 -0.0305488 Vertex 22843 0.0528515 0.0592232 -0.00323634 Vertex 22844 0.00856462 0.11946 -0.0147195 Vertex 22845 0.0556505 0.0677792 0.00213147 Vertex 22846 0.0565412 0.0674698 0.002463 Vertex 22847 -0.00749339 0.119159 -0.0142858 Vertex 22848 -0.00335753 0.11894 -0.0140663 Vertex 22849 -0.0365515 0.115187 -0.0158874 Vertex 22850 0.0160687 0.122524 -0.00804645 Vertex 22851 -0.0500595 0.117739 -0.014504 Vertex 22852 -0.00129201 0.123843 -0.0093277 Vertex 22853 -0.0598499 0.0364094 -0.00954648 Vertex 22854 -0.0144671 0.110884 -0.0194361 Vertex 22855 0.0265398 0.104204 -0.0163559 Vertex 22856 -0.00545884 0.111961 -0.020621 Vertex 22857 -0.0154901 0.11097 -0.019533 Vertex 22858 0.0318276 0.102039 -0.0140664 Vertex 22859 -0.0365713 0.0483594 -0.015218 Vertex 22860 -0.0172469 0.116672 -0.0155678 Vertex 22861 -0.0324183 0.116998 -0.0137964 Vertex 22862 0.0285718 0.0898068 -0.0210622 Vertex 22863 -0.0225512 0.0933694 -0.0331106 Vertex 22864 -0.0444734 0.111133 -0.0175908 Vertex 22865 0.0474407 0.0661575 -0.000283122 Vertex 22866 0.0463136 0.0660623 -0.000202599 Vertex 22867 -0.0184884 0.186846 -0.021092 Vertex 22868 -0.0170835 0.187214 -0.0216216 Vertex 22869 -0.012301 0.110982 -0.0195491 Vertex 22870 -0.0340312 0.123966 -0.00509105 Vertex 22871 -0.0568391 0.118972 -0.0116757 Vertex 22872 -0.0476672 0.0405803 -0.0117113 Vertex 22873 -0.0454995 0.122409 -0.0114255 Vertex 22874 -0.0435029 0.119128 -0.0140097 Vertex 22875 -0.0405477 0.118695 -0.0135582 Vertex 22876 0.0135031 0.119752 -0.013055 Vertex 22877 0.0144377 0.119508 -0.0127985 Vertex 22878 0.0320945 0.113613 -0.00441584 Vertex 22879 0.000649673 0.0963928 -0.0300705 Vertex 22880 -0.0117555 0.0969094 -0.0306933 Vertex 22881 -0.0130193 0.115677 -0.016537 Vertex 22882 0.0170761 0.115474 -0.0144429 Vertex 22883 -0.0249431 0.0907384 -0.0344432 Vertex 22884 0.033068 0.0984004 -0.0141329 Vertex 22885 -0.0176555 0.10171 -0.0237622 Vertex 22886 -0.00805531 0.101876 -0.0238922 Vertex 22887 -0.0260646 0.11803 -0.0129143 Vertex 22888 0.0228298 0.0827896 -0.0258286 Vertex 22889 -0.0568115 0.11798 -0.012657 Vertex 22890 0.0236821 0.0824052 -0.0254011 Vertex 22891 0.0253655 0.0814952 -0.0244829 Vertex 22892 0.0542982 0.0579702 -0.00188368 Vertex 22893 0.0125353 0.118934 -0.0141702 Vertex 22894 0.0207674 0.103342 -0.0194283 Vertex 22895 0.0243686 0.118145 -0.00732959 Vertex 22896 0.0303733 0.115414 -0.00438737 Vertex 22897 -0.0323789 0.115075 -0.0157884 Vertex 22898 -0.03348 0.115008 -0.0157024 Vertex 22899 0.0532901 0.0621073 -0.00218568 Vertex 22900 0.00543862 0.118556 -0.0157347 Vertex 22901 0.00741391 0.0920665 -0.0315473 Vertex 22902 -0.0303554 0.117939 -0.0127791 Vertex 22903 -0.0292876 0.113893 -0.0165575 Vertex 22904 -0.0344028 0.0453249 -0.0266763 Vertex 22905 -0.0328813 0.11004 -0.0184872 Vertex 22906 -0.0308338 0.109919 -0.0183719 Vertex 22907 0.0101538 0.113447 -0.018237 Vertex 22908 0.0258263 0.0624492 -0.0231007 Vertex 22909 0.026638 0.0619848 -0.0226053 Vertex 22910 0.0235131 0.101506 -0.0194672 Vertex 22911 -0.0332536 0.0434286 -0.0288825 Vertex 22912 -0.00335679 0.11693 -0.0159223 Vertex 22913 0.0460243 0.0737836 0.00392327 Vertex 22914 0.0465282 0.0726943 0.00507292 Vertex 22915 -0.0365486 0.12125 -0.0102225 Vertex 22916 -0.016158 0.0884114 -0.0380198 Vertex 22917 0.047273 0.0720618 0.00573289 Vertex 22918 0.048187 0.0717514 0.00605259 Vertex 22919 -0.0184208 0.185917 -0.0222223 Vertex 22920 -0.0169852 0.186593 -0.0230311 Vertex 22921 0.0242207 0.111888 -0.0125803 Vertex 22922 0.049267 0.0717276 0.00605578 Vertex 22923 -0.0075843 0.111951 -0.0206051 Vertex 22924 0.0130083 0.0956231 -0.0252421 Vertex 22925 -0.0394018 0.0468721 -0.0179145 Vertex 22926 0.00745846 0.0952014 -0.0287983 Vertex 22927 -0.0544684 0.119419 -0.0121872 Vertex 22928 -0.0337268 0.111492 -0.0180397 Vertex 22929 -0.00779971 0.114512 -0.0173201 Vertex 22930 -0.0365847 0.122192 -0.00920846 Vertex 22931 -0.0374511 0.122567 -0.00961353 Vertex 22932 0.00261599 0.0960798 -0.0297441 Vertex 22933 -0.00333145 0.0968513 -0.0305901 Vertex 22934 -0.00664275 0.113752 -0.0185066 Vertex 22935 0.0240847 0.110594 -0.013209 Vertex 22936 0.0503819 0.0717878 0.00597587 Vertex 22937 0.0168366 0.113017 -0.0157876 Vertex 22938 -0.0151821 0.115592 -0.0164315 Vertex 22939 -0.0311962 0.0475489 -0.0247586 Vertex 22940 -0.0423449 0.122373 -0.0114097 Vertex 22941 0.0344672 0.111064 -0.00366583 Vertex 22942 -0.0446335 0.126046 -0.00723965 Vertex 22943 -0.027019 0.123094 -0.00421217 Vertex 22944 0.0514409 0.0718132 0.00596213 Vertex 22945 0.013479 0.118711 -0.0139326 Vertex 22946 0.0305352 0.10973 -0.0102674 Vertex 22947 0.00508145 0.125851 -0.00757191 Vertex 22948 -0.054587 0.123231 -0.00812744 Vertex 22949 0.0524989 0.0718135 0.00595977 Vertex 22950 0.0535119 0.0717543 0.00602975 Vertex 22951 -0.060329 0.11723 -0.0118118 Vertex 22952 0.027192 0.101376 -0.017349 Vertex 22953 -0.0355455 0.11407 -0.0167228 Vertex 22954 -0.0478216 0.109884 -0.018362 Vertex 22955 -0.0457781 0.109842 -0.0182449 Vertex 22956 -0.0281684 0.117044 -0.0138686 Vertex 22957 -0.0292722 0.116973 -0.0137779 Vertex 22958 0.0241882 0.0633761 -0.0240832 Vertex 22959 0.0544885 0.0716156 0.00618127 Vertex 22960 -0.0323736 0.176483 -0.0134412 Vertex 22961 -0.0310993 0.177108 -0.0141677 Vertex 22962 -0.029497 0.177966 -0.015166 Vertex 22963 -0.0465015 0.112315 -0.0168133 Vertex 22964 0.0280633 0.100998 -0.0169482 Vertex 22965 0.0279153 0.112797 -0.00956049 Vertex 22966 0.0474137 0.0671743 0.000684928 Vertex 22967 -0.0444371 0.122416 -0.011439 Vertex 22968 0.0546227 0.0668075 0.00110467 Vertex 22969 -0.0183224 0.184952 -0.0232094 Vertex 22970 -0.0169338 0.185679 -0.0240586 Vertex 22971 -0.0444587 0.11222 -0.0167423 Vertex 22972 0.00653661 0.120619 -0.0139577 Vertex 22973 -0.00648083 0.111994 -0.0206545 Vertex 22974 0.00181256 0.0994772 -0.0233519 Vertex 22975 0.00525838 0.123196 -0.010701 Vertex 22976 -0.053287 0.119647 -0.012449 Vertex 22977 0.0102371 0.115602 -0.0165593 Vertex 22978 -0.0357372 0.111668 -0.0181975 Vertex 22979 -0.00547868 0.112944 -0.019663 Vertex 22980 0.0249883 0.12025 -0.003603 Vertex 22981 0.0266688 0.0892152 -0.0224539 Vertex 22982 0.052731 0.0672551 0.000627241 Vertex 22983 -0.0192836 0.0894928 -0.0371367 Vertex 22984 0.0564401 0.0662549 0.00171258 Vertex 22985 -0.0168964 0.123328 -0.00656517 Vertex 22986 -0.0631879 0.0449558 -0.00115255 Vertex 22987 -0.0175036 0.0357848 -0.0270478 Vertex 22988 0.0250223 0.110364 -0.0129553 Vertex 22989 -0.0162447 0.115598 -0.0164334 Vertex 22990 -0.0111853 0.109046 -0.0214904 Vertex 22991 -0.0708646 0.0384387 0.000437312 Vertex 22992 -0.00316977 0.101093 -0.0230747 Vertex 22993 -0.0386241 0.125328 -0.00654651 Vertex 22994 0.0338239 0.11087 -0.00547119 Vertex 22995 0.0144108 0.118463 -0.013667 Vertex 22996 -0.030624 0.0348272 -0.0303515 Vertex 22997 -0.0133229 0.0978873 -0.0277326 Vertex 22998 0.0242993 0.0928305 -0.0222726 Vertex 22999 0.0223914 0.093257 -0.0227104 Vertex 23000 -0.00732851 0.0942973 -0.033961 Vertex 23001 0.025021 0.085012 -0.0240764 Vertex 23002 0.01399 0.106595 -0.01887 Vertex 23003 -0.0345432 0.114978 -0.015669 Vertex 23004 -0.0489531 0.117804 -0.0145786 Vertex 23005 -0.0300938 0.0476999 -0.0248901 Vertex 23006 -0.00546375 0.117984 -0.0150376 Vertex 23007 -0.0064886 0.118022 -0.0150746 Vertex 23008 -0.00759062 0.117967 -0.0150103 Vertex 23009 0.0125143 0.121868 -0.0113432 Vertex 23010 -0.0308492 0.121938 -0.00695618 Vertex 23011 -0.0366574 0.173333 -0.0118804 Vertex 23012 -0.0338796 0.174703 -0.0134692 Vertex 23013 -0.0323633 0.175433 -0.0143069 Vertex 23014 -0.0310025 0.176085 -0.0150686 Vertex 23015 -0.0294668 0.176906 -0.0160057 Vertex 23016 -0.0281079 0.177558 -0.016771 Vertex 23017 -0.0251253 0.179165 -0.0186166 Vertex 23018 0.0527591 0.0693467 0.00250314 Vertex 23019 -0.00428335 0.124198 -0.00969837 Vertex 23020 -0.027328 0.0951114 -0.0248637 Vertex 23021 -0.0433541 0.112279 -0.0167951 Vertex 23022 -0.0154061 0.185475 -0.025609 Vertex 23023 -0.0267044 0.158758 -0.0121466 Vertex 23024 -0.00744712 0.0961017 -0.0318028 Vertex 23025 -0.02745 0.110307 -0.0187882 Vertex 23026 0.0202904 0.0912514 -0.02462 Vertex 23027 0.0198639 0.11968 -0.0089705 Vertex 23028 0.0208045 0.119446 -0.00872458 Vertex 23029 -0.026888 0.0344315 -0.0290471 Vertex 23030 -0.0403006 0.122206 -0.0112466 Vertex 23031 0.0129986 0.124708 -0.00640366 Vertex 23032 0.0537086 0.0670896 0.000808459 Vertex 23033 0.0112449 0.0943173 -0.0278535 Vertex 23034 0.0121652 0.0940439 -0.0275601 Vertex 23035 0.0162842 0.118981 -0.0122323 Vertex 23036 0.0328852 0.113087 -0.00384394 Vertex 23037 0.016382 0.0888799 -0.0281622 Vertex 23038 0.0338247 0.108829 -0.00728203 Vertex 23039 0.0353274 0.107617 -0.00596632 Vertex 23040 -0.00789661 0.098211 -0.0280331 Vertex 23041 -0.00752216 0.122122 -0.0114318 Vertex 23042 -0.0332851 0.0368458 -0.0306141 Vertex 23043 0.0155832 0.0893609 -0.0286847 Vertex 23044 -0.0512066 0.125627 -0.00670494 Vertex 23045 -0.00538883 0.122125 -0.0114557 Vertex 23046 -0.00970184 0.120973 -0.0121849 Vertex 23047 -0.0375464 0.119352 -0.0122401 Vertex 23048 0.0078778 0.0989406 -0.0227671 Vertex 23049 0.0278575 0.109692 -0.0122334 Vertex 23050 -0.0138322 0.105995 -0.0224296 Vertex 23051 -0.0395958 0.118487 -0.0133369 Vertex 23052 -0.0376087 0.118212 -0.0130418 Vertex 23053 0.0235801 0.11767 -0.00881398 Vertex 23054 -0.035527 0.115134 -0.015836 Vertex 23055 0.00543206 0.119469 -0.0147017 Vertex 23056 -0.0415297 0.118854 -0.0137293 Vertex 23057 -0.00441737 0.117961 -0.0150091 Vertex 23058 -0.0111221 0.0980696 -0.0279124 Vertex 23059 0.0101277 0.0911581 -0.0305812 Vertex 23060 -0.0118847 0.117889 -0.0148923 Vertex 23061 0.0199668 0.115907 -0.0129188 Vertex 23062 -0.0184507 0.117417 -0.0143314 Vertex 23063 -0.0196292 0.117165 -0.0140584 Vertex 23064 -0.0367588 0.172073 -0.0125043 Vertex 23065 -0.0353775 0.172711 -0.013245 Vertex 23066 -0.0339572 0.173519 -0.0141904 Vertex 23067 -0.0311424 0.174761 -0.015609 Vertex 23068 -0.0296574 0.175524 -0.0164728 Vertex 23069 -0.0282938 0.176171 -0.0172378 Vertex 23070 -0.0267635 0.177003 -0.0181719 Vertex 23071 -0.0475241 0.112407 -0.0169253 Vertex 23072 -0.0388306 0.112851 -0.0174267 Vertex 23073 -0.0377685 0.112865 -0.0174473 Vertex 23074 -0.0207673 0.117009 -0.0138783 Vertex 23075 -0.0579212 0.120852 -0.00959233 Vertex 23076 -0.0218308 0.117001 -0.0138605 Vertex 23077 -0.0156288 0.184043 -0.0262877 Vertex 23078 -0.0142894 0.184628 -0.0268303 Vertex 23079 -0.0131915 0.184654 -0.0268832 Vertex 23080 -0.0228968 0.117028 -0.0138782 Vertex 23081 0.0367118 0.0920329 -0.0133924 Vertex 23082 0.0261507 0.0923065 -0.0217116 Vertex 23083 0.014908 0.106309 -0.0185911 Vertex 23084 0.018427 0.0917703 -0.0251723 Vertex 23085 0.0352506 0.101471 -0.011425 Vertex 23086 -0.00758477 0.0968518 -0.0305822 Vertex 23087 -0.0156034 0.097548 -0.0273897 Vertex 23088 -0.00865281 0.123002 -0.0103525 Vertex 23089 -0.0239594 0.117024 -0.0138685 Vertex 23090 0.0573848 0.0670309 0.00292365 Vertex 23091 -0.00761105 0.112944 -0.01965 Vertex 23092 0.0257874 0.0895854 -0.0228249 Vertex 23093 -0.0169095 0.0379753 -0.0273392 Vertex 23094 -0.00436115 0.122059 -0.0113929 Vertex 23095 -0.0121375 0.102128 -0.024127 Vertex 23096 0.0363661 0.0873006 -0.0164353 Vertex 23097 0.0141654 0.115006 -0.0159235 Vertex 23098 -0.059088 0.0445923 -0.00517311 Vertex 23099 -0.0182219 0.0954777 -0.0312615 Vertex 23100 -0.0354802 0.0365931 -0.0303176 Vertex 23101 -0.0310679 0.0435994 -0.0290446 Vertex 23102 -0.031399 0.116965 -0.0137545 Vertex 23103 -0.0633595 0.155022 0.00583483 Vertex 23104 -0.0365933 0.117132 -0.0139142 Vertex 23105 -0.0376115 0.11722 -0.0140038 Vertex 23106 -0.00875136 0.116762 -0.015718 Vertex 23107 -0.0575878 0.158069 0.0020235 Vertex 23108 0.0216012 0.112963 -0.0137495 Vertex 23109 -0.0454802 0.112265 -0.0167776 Vertex 23110 -0.0400219 0.111533 -0.0180322 Vertex 23111 -0.051802 0.111349 -0.0178923 Vertex 23112 0.00850296 0.118331 -0.0155001 Vertex 23113 -5.55454e-05 0.1192 -0.0143689 Vertex 23114 -0.00746204 0.125196 -0.00874293 Vertex 23115 -0.0427999 0.167662 -0.00952768 Vertex 23116 -0.0356427 0.112876 -0.017464 Vertex 23117 -0.0398347 0.169198 -0.01127 Vertex 23118 -0.038314 0.170034 -0.0122167 Vertex 23119 -0.0369254 0.170672 -0.0129456 Vertex 23120 -0.035495 0.171374 -0.0137494 Vertex 23121 -0.0341867 0.172054 -0.0145892 Vertex 23122 -0.0278288 0.122593 -0.00568164 Vertex 23123 -0.062358 0.172308 -0.0618736 Vertex 23124 -0.0366993 0.124957 -0.00615077 Vertex 23125 -0.052671 0.112615 -0.017101 Vertex 23126 -0.0505191 0.112725 -0.0172384 Vertex 23127 -0.0485119 0.112536 -0.0170517 Vertex 23128 -0.0268076 0.122539 -0.00562189 Vertex 23129 -0.0257438 0.12256 -0.00564443 Vertex 23130 -0.0346189 0.112824 -0.0174204 Vertex 23131 -0.0613665 0.0430534 -0.00574325 Vertex 23132 -0.0601621 0.0433793 -0.00606772 Vertex 23133 -0.0335566 0.11282 -0.0174155 Vertex 23134 -0.0144079 0.183333 -0.0275579 Vertex 23135 -0.0132393 0.1837 -0.0278845 Vertex 23136 -0.0410688 0.11258 -0.017122 Vertex 23137 -0.0324948 0.112838 -0.0174448 Vertex 23138 -0.00333512 0.125963 -0.00760181 Vertex 23139 0.00167631 0.105337 -0.0215515 Vertex 23140 -0.0305905 0.119479 -0.0103702 Vertex 23141 -0.00541885 0.0969111 -0.0306599 Vertex 23142 -0.00860618 0.0968801 -0.0306409 Vertex 23143 -0.0196985 0.0957936 -0.0295783 Vertex 23144 -0.0119077 0.0894805 -0.0370977 Vertex 23145 0.05377 0.0682444 0.00163269 Vertex 23146 0.050697 0.0684106 0.00144017 Vertex 23147 -0.0098481 0.112657 -0.0193422 Vertex 23148 0.00798497 0.0890814 -0.0324293 Vertex 23149 0.0192573 0.0903239 -0.0256184 Vertex 23150 -0.0251918 0.111615 -0.0181703 Vertex 23151 -0.0263531 0.11244 -0.0170322 Vertex 23152 -0.0099585 0.1135 -0.0182227 Vertex 23153 -0.00880359 0.113633 -0.0183799 Vertex 23154 -0.0565118 0.0454033 -0.00602573 Vertex 23155 0.034589 0.108233 -0.00663102 Vertex 23156 0.0321502 0.106752 -0.0110706 Vertex 23157 0.00615212 0.112907 -0.0196236 Vertex 23158 0.0106037 0.121274 -0.0126925 Vertex 23159 -0.0650217 0.154743 0.00396393 Vertex 23160 -0.0639212 0.154791 0.00385831 Vertex 23161 -0.0629032 0.154793 0.00389792 Vertex 23162 -0.0618594 0.154827 0.00385225 Vertex 23163 -0.0605375 0.155317 0.003221 Vertex 23164 -0.0588974 0.156171 0.00210438 Vertex 23165 -0.0573252 0.157131 0.000943525 Vertex 23166 0.013488 0.120719 -0.0120957 Vertex 23167 -0.0507332 0.161533 -0.00440491 Vertex 23168 -0.0491589 0.162483 -0.00556124 Vertex 23169 -0.0475911 0.163428 -0.00670042 Vertex 23170 0.0144228 0.120472 -0.0118376 Vertex 23171 -0.0444716 0.165339 -0.00887164 Vertex 23172 -0.0428743 0.166323 -0.00997516 Vertex 23173 0.0071927 0.124822 -0.00847934 Vertex 23174 0.000807934 0.124791 -0.00838237 Vertex 23175 0.0338305 0.107861 -0.00824999 Vertex 23176 0.033027 0.108336 -0.00876159 Vertex 23177 -0.00864992 0.124983 -0.00848236 Vertex 23178 -0.0206804 0.112216 -0.0188434 Vertex 23179 -0.0327045 0.111423 -0.0179721 Vertex 23180 -0.0347529 0.111555 -0.0180951 Vertex 23181 -0.0378644 0.111663 -0.0181901 Vertex 23182 -0.0389284 0.111648 -0.0181691 Vertex 23183 -0.0528539 0.1113 -0.0177773 Vertex 23184 0.0360108 0.100867 -0.0107814 Vertex 23185 0.00929618 0.123787 -0.00937811 Vertex 23186 -0.00231276 0.123919 -0.0094032 Vertex 23187 -0.0297303 0.109983 -0.0184292 Vertex 23188 -0.0283257 0.118773 -0.011655 Vertex 23189 -0.0165765 0.119912 -0.0109781 Vertex 23190 0.0330143 0.106332 -0.0106209 Vertex 23191 -0.0133613 0.182397 -0.0284169 Vertex 23192 -0.0121975 0.182647 -0.0286755 Vertex 23193 -0.0112874 0.182441 -0.0284978 Vertex 23194 -0.027858 0.0343176 -0.0296609 Vertex 23195 0.00181742 0.106617 -0.0209271 Vertex 23196 -0.0246099 0.0984431 -0.024327 Vertex 23197 -0.0208348 0.0956185 -0.0294009 Vertex 23198 -0.0235889 0.0983837 -0.0242804 Vertex 23199 0.0527798 0.0683653 0.00150186 Vertex 23200 0.0517581 0.0684217 0.00143507 Vertex 23201 -0.00234671 0.0967246 -0.0304442 Vertex 23202 -0.00132352 0.0966684 -0.0303753 Vertex 23203 -0.00993012 0.125562 -0.00707028 Vertex 23204 -0.0190564 0.0920061 -0.0357108 Vertex 23205 0.0572537 0.0657957 0.00220085 Vertex 23206 -0.0534467 0.125409 -0.00644153 Vertex 23207 0.0233517 0.120203 -0.00555174 Vertex 23208 -0.0399713 0.112687 -0.0172474 Vertex 23209 0.0213076 0.110412 -0.0149847 Vertex 23210 -0.061465 0.0438948 -0.0044823 Vertex 23211 -0.00904474 0.102005 -0.0240096 Vertex 23212 -0.0225646 0.0983245 -0.0242201 Vertex 23213 -0.0647611 0.154265 0.00245101 Vertex 23214 -0.0637456 0.154158 0.00252195 Vertex 23215 -0.0626839 0.154165 0.00249175 Vertex 23216 -0.0616277 0.154191 0.00244865 Vertex 23217 -0.0604582 0.154406 0.00215902 Vertex 23218 -0.0589643 0.15508 0.0013052 Vertex 23219 -0.0573985 0.155942 0.000257732 Vertex 23220 -0.0558687 0.156831 -0.000812957 Vertex 23221 -0.0541798 0.157923 -0.00210942 Vertex 23222 -0.051025 0.159915 -0.00453945 Vertex 23223 -0.0493777 0.160927 -0.00574679 Vertex 23224 -0.0477552 0.161949 -0.00697323 Vertex 23225 -0.0462961 0.162745 -0.00789878 Vertex 23226 -0.00142898 0.112626 -0.0193593 Vertex 23227 -0.00244825 0.112634 -0.0193375 Vertex 23228 -0.00347107 0.112728 -0.01944 Vertex 23229 -0.00445554 0.112864 -0.0195829 Vertex 23230 -0.00650346 0.112991 -0.0197156 Vertex 23231 -0.000294503 0.124716 -0.00828566 Vertex 23232 0.00190837 0.124868 -0.00847893 Vertex 23233 -0.00130995 0.124776 -0.00834251 Vertex 23234 -0.0217663 0.11209 -0.0186927 Vertex 23235 -0.0292922 0.117943 -0.0127907 Vertex 23236 0.0174798 0.0919971 -0.0254067 Vertex 23237 0.0188031 0.106638 -0.0169667 Vertex 23238 -0.0556881 0.123137 -0.00801327 Vertex 23239 -0.053406 0.12345 -0.00838645 Vertex 23240 0.0132374 0.123205 -0.00876652 Vertex 23241 0.0122831 0.123395 -0.0089862 Vertex 23242 0.00108438 0.119342 -0.0145393 Vertex 23243 -0.0215094 0.0983521 -0.0242621 Vertex 23244 -0.0298836 0.04486 -0.0282273 Vertex 23245 -0.0204069 0.09844 -0.0243451 Vertex 23246 -0.0135749 0.18083 -0.0284353 Vertex 23247 -0.0125142 0.181139 -0.0289621 Vertex 23248 -0.01134 0.181374 -0.0292688 Vertex 23249 -0.0298476 0.105726 -0.0219826 Vertex 23250 -0.0192998 0.0985099 -0.0244 Vertex 23251 -0.018238 0.0985224 -0.0244062 Vertex 23252 0.0287445 0.109341 -0.0118595 Vertex 23253 -0.055158 0.0361639 -0.0112393 Vertex 23254 -0.0171725 0.0985232 -0.0244048 Vertex 23255 -0.0161123 0.0985355 -0.0244159 Vertex 23256 0.0165523 0.0922417 -0.0256623 Vertex 23257 0.00654043 0.0954774 -0.0291051 Vertex 23258 -0.000334987 0.0965293 -0.0302242 Vertex 23259 -0.0251322 0.110719 -0.0192347 Vertex 23260 -0.0149675 0.0986909 -0.0245721 Vertex 23261 -0.0158456 0.122449 -0.00760827 Vertex 23262 -0.0138651 0.0987904 -0.0246748 Vertex 23263 0.00919876 0.0964636 -0.0261302 Vertex 23264 -0.0553377 0.0457536 -0.00639551 Vertex 23265 0.00687166 0.100046 -0.0219438 Vertex 23266 0.0295159 0.107768 -0.0121736 Vertex 23267 -0.0198015 0.10169 -0.0238258 Vertex 23268 -0.01273 0.098974 -0.0248693 Vertex 23269 -0.0645607 0.153661 0.00110457 Vertex 23270 -0.0635959 0.153475 0.00125628 Vertex 23271 -0.0626195 0.153328 0.0013944 Vertex 23272 -0.0615203 0.153356 0.00130737 Vertex 23273 -0.0603328 0.153535 0.00105643 Vertex 23274 -0.0590115 0.153958 0.00054242 Vertex 23275 -0.0575589 0.154615 -0.000238768 Vertex 23276 -0.0560997 0.155362 -0.00113519 Vertex 23277 0.0197946 0.0872171 -0.0264236 Vertex 23278 0.015569 0.110589 -0.0172093 Vertex 23279 0.0147067 0.111012 -0.0176211 Vertex 23280 0.0129112 0.111627 -0.0182976 Vertex 23281 0.00907863 0.112423 -0.0191367 Vertex 23282 0.0029144 0.125773 -0.00745627 Vertex 23283 -5.6077e-05 0.112952 -0.0196345 Vertex 23284 0.00419789 0.123154 -0.0106599 Vertex 23285 -0.029645 0.121258 -0.00823608 Vertex 23286 -0.00533161 0.123249 -0.0106624 Vertex 23287 -0.00871405 0.112847 -0.0195489 Vertex 23288 -0.0122436 0.112093 -0.0187249 Vertex 23289 -0.0183959 0.112492 -0.0191613 Vertex 23290 -0.0195343 0.112367 -0.0190097 Vertex 23291 0.0275209 0.088828 -0.0220264 Vertex 23292 -0.00192307 0.107424 -0.021877 Vertex 23293 0.0115347 0.118055 -0.0152175 Vertex 23294 -0.0168418 0.107354 -0.0217003 Vertex 23295 -0.020896 0.107686 -0.0220438 Vertex 23296 -0.0263675 0.107348 -0.0216948 Vertex 23297 -0.0275054 0.107176 -0.0215083 Vertex 23298 -0.050989 0.121022 -0.0119137 Vertex 23299 0.00305684 0.124987 -0.00863513 Vertex 23300 0.0474285 0.0692644 0.00256538 Vertex 23301 -0.0115772 0.0991016 -0.0249869 Vertex 23302 -0.010479 0.0991873 -0.02508 Vertex 23303 -0.0127071 0.179586 -0.0289228 Vertex 23304 -0.0114724 0.180094 -0.0295969 Vertex 23305 -0.00938485 0.0992897 -0.0251913 Vertex 23306 -0.00832489 0.0993422 -0.0252442 Vertex 23307 -0.0261604 0.114813 -0.0155316 Vertex 23308 -0.0072203 0.0994662 -0.0253456 Vertex 23309 -0.0346441 0.117803 -0.0126135 Vertex 23310 -0.0613587 0.0343255 -0.00949544 Vertex 23311 -0.0626127 0.0339199 -0.00909656 Vertex 23312 -0.00615627 0.0994928 -0.025355 Vertex 23313 -0.0172265 0.113695 -0.0184196 Vertex 23314 0.0103131 0.0935662 -0.0290602 Vertex 23315 -0.0621527 0.0372105 -0.00831557 Vertex 23316 0.0543119 0.0722872 0.00750454 Vertex 23317 0.0353693 0.102677 -0.0107148 Vertex 23318 -0.0356689 0.117866 -0.0126779 Vertex 23319 -0.015069 0.117815 -0.0147928 Vertex 23320 -0.00484087 0.0994589 -0.0252596 Vertex 23321 -0.0417796 0.0485307 -0.0113147 Vertex 23322 -0.00403867 0.0994311 -0.025339 Vertex 23323 -0.0240109 0.113853 -0.0165323 Vertex 23324 -0.00301309 0.0994095 -0.0252863 Vertex 23325 -0.01624 0.0963836 -0.0301721 Vertex 23326 0.0479819 0.0723794 0.00739708 Vertex 23327 -0.00175381 0.0993639 -0.0251444 Vertex 23328 -0.0643335 0.153058 -0.000307605 Vertex 23329 -0.0634506 0.15272 2.24523e-05 Vertex 23330 -0.062479 0.152546 0.000181648 Vertex 23331 -0.0615001 0.152383 0.000341367 Vertex 23332 -0.0603904 0.152423 0.000272984 Vertex 23333 -0.0591465 0.152697 -5.16463e-05 Vertex 23334 -0.0579352 0.153021 -0.000467328 Vertex 23335 -0.0190955 0.0939751 -0.033709 Vertex 23336 0.0173756 0.109987 -0.0165543 Vertex 23337 0.0164623 0.11028 -0.0168584 Vertex 23338 -0.003234 0.0960652 -0.0317479 Vertex 23339 0.0246727 0.0884534 -0.0236513 Vertex 23340 -0.0576549 0.124438 -0.00742698 Vertex 23341 0.0355567 0.0878311 -0.0169845 Vertex 23342 -0.007347 0.0952877 -0.0329727 Vertex 23343 -0.0323987 0.116048 -0.0147978 Vertex 23344 0.024564 0.103479 -0.0175815 Vertex 23345 0.0236373 0.103743 -0.0178545 Vertex 23346 0.0197767 0.104476 -0.0186365 Vertex 23347 0.049023 0.0722611 0.00748575 Vertex 23348 -0.0492612 0.115146 -0.0157671 Vertex 23349 0.0312862 0.107094 -0.0114403 Vertex 23350 -0.0147452 0.123455 -0.00671201 Vertex 23351 -0.0266349 0.121939 -0.00696588 Vertex 23352 0.0314474 0.112439 -0.00717966 Vertex 23353 -0.0324512 0.0353306 -0.0309147 Vertex 23354 -0.0677301 0.181168 -0.057983 Vertex 23355 0.00734712 0.12316 -0.0106668 Vertex 23356 0.0472621 0.0627303 -0.00287883 Vertex 23357 -0.0533885 0.122494 -0.00938247 Vertex 23358 -0.0335992 0.1188 -0.0116562 Vertex 23359 -0.0465986 0.120315 -0.0132329 Vertex 23360 0.0132 0.115178 -0.01612 Vertex 23361 -0.0120214 0.178126 -0.0292101 Vertex 23362 -0.0108764 0.178532 -0.0297831 Vertex 23363 -0.0488368 0.0970812 -0.0221898 Vertex 23364 -0.0774288 0.0712256 0.0238415 Vertex 23365 0.00840839 0.117161 -0.0162388 Vertex 23366 0.0139693 0.112639 -0.017366 Vertex 23367 -0.00663677 0.109707 -0.0221975 Vertex 23368 -0.0334993 0.115969 -0.0147052 Vertex 23369 -0.0312043 0.0422041 -0.0297469 Vertex 23370 -0.0301706 0.0421547 -0.0296993 Vertex 23371 -0.0291426 0.042089 -0.0296009 Vertex 23372 0.00221518 0.114462 -0.0193126 Vertex 23373 0.0204165 0.110729 -0.0153427 Vertex 23374 0.0120611 0.11304 -0.0178164 Vertex 23375 0.0110822 0.113195 -0.0179885 Vertex 23376 -0.0348481 0.110331 -0.0188 Vertex 23377 -0.0368977 0.110447 -0.0189068 Vertex 23378 -0.0379579 0.11044 -0.0188969 Vertex 23379 0.00980942 0.110782 -0.0193656 Vertex 23380 0.0117043 0.110341 -0.0188996 Vertex 23381 0.0153998 0.109294 -0.0177665 Vertex 23382 0.0228667 0.107306 -0.0156684 Vertex 23383 -0.0126238 0.0952928 -0.0330113 Vertex 23384 -0.0386758 0.0462873 -0.0214583 Vertex 23385 -0.000964681 0.0992981 -0.0251507 Vertex 23386 0.0276777 0.0972525 -0.0189451 Vertex 23387 -0.0175437 0.119111 -0.0121224 Vertex 23388 -0.0511466 0.124736 -0.0077758 Vertex 23389 -0.0228793 0.110931 -0.0194728 Vertex 23390 -0.00234994 0.125819 -0.00745455 Vertex 23391 0.0135991 0.100782 -0.0226731 Vertex 23392 -0.0239953 0.114912 -0.0156465 Vertex 23393 -0.0348025 0.040194 -0.0297923 Vertex 23394 -0.0228318 0.114095 -0.016802 Vertex 23395 -0.0217088 0.114301 -0.017023 Vertex 23396 0.00202824 0.108029 -0.0204102 Vertex 23397 0.0133657 0.116504 -0.0155461 Vertex 23398 2.68966e-05 0.0991578 -0.0250032 Vertex 23399 -0.0640607 0.152536 -0.00179872 Vertex 23400 -0.0632934 0.151996 -0.00122225 Vertex 23401 -0.0623453 0.151603 -0.000787959 Vertex 23402 -0.0615536 0.151288 -0.000477545 Vertex 23403 -0.0605331 0.151186 -0.000375192 Vertex 23404 -0.0594261 0.151258 -0.000475846 Vertex 23405 -0.0581213 0.151582 -0.000807379 Vertex 23406 0.0452487 0.0681916 0.00167659 Vertex 23407 0.0229726 0.108506 -0.0149598 Vertex 23408 0.0367726 0.100261 -0.0101361 Vertex 23409 -0.0160225 0.0958165 -0.0315688 Vertex 23410 0.0341266 0.0993109 -0.0131459 Vertex 23411 0.0308218 0.101142 -0.0151148 Vertex 23412 0.0299943 0.101654 -0.0156302 Vertex 23413 0.0291394 0.102042 -0.0160578 Vertex 23414 0.0273648 0.102724 -0.0167839 Vertex 23415 0.0264479 0.103016 -0.017087 Vertex 23416 0.0070795 0.101453 -0.021277 Vertex 23417 0.0178644 0.101883 -0.0218675 Vertex 23418 0.0188255 0.104686 -0.0188612 Vertex 23419 0.0147875 0.105075 -0.0193 Vertex 23420 0.0110737 0.125093 -0.00680678 Vertex 23421 -0.0111071 0.0879305 -0.0374747 Vertex 23422 0.00280587 0.10648 -0.0207933 Vertex 23423 -0.00382944 0.108004 -0.0223654 Vertex 23424 -0.00481267 0.108148 -0.0225124 Vertex 23425 0.013228 0.0990749 -0.0229052 Vertex 23426 -0.0109854 0.0891937 -0.0368255 Vertex 23427 0.0471199 0.0728094 0.00697834 Vertex 23428 -0.00125449 0.12189 -0.0112382 Vertex 23429 -0.000114754 0.120081 -0.0133088 Vertex 23430 0.00335185 0.118611 -0.0157819 Vertex 23431 0.0122035 0.115305 -0.0162457 Vertex 23432 -0.015298 0.113338 -0.0180384 Vertex 23433 -0.00623267 0.10133 -0.0233757 Vertex 23434 -0.0378518 0.0985762 -0.0221892 Vertex 23435 0.0297353 0.111221 -0.00987421 Vertex 23436 0.000993844 0.0989182 -0.0247915 Vertex 23437 0.00197653 0.0987575 -0.0246237 Vertex 23438 -0.0045943 0.109577 -0.0220661 Vertex 23439 0.0201484 0.0899648 -0.02526 Vertex 23440 0.00296819 0.0986498 -0.0244883 Vertex 23441 0.00226918 0.115596 -0.0185376 Vertex 23442 -0.035752 0.0415598 -0.0291214 Vertex 23443 -0.0344937 0.041903 -0.0294247 Vertex 23444 -0.0333944 0.0420411 -0.0295771 Vertex 23445 -0.0322785 0.0421631 -0.0296986 Vertex 23446 0.00392426 0.0984839 -0.0242888 Vertex 23447 0.00471531 0.10507 -0.02128 Vertex 23448 -0.0370838 0.0486029 -0.013278 Vertex 23449 -0.0380808 0.0483205 -0.0131774 Vertex 23450 -0.0392444 0.0481623 -0.0129943 Vertex 23451 -0.0404944 0.0478337 -0.0126145 Vertex 23452 -0.0417782 0.0473939 -0.012205 Vertex 23453 -0.0367055 0.112873 -0.0174612 Vertex 23454 -0.0302725 0.114038 -0.0167089 Vertex 23455 -0.0313333 0.114057 -0.0167329 Vertex 23456 0.00733671 0.115147 -0.0180672 Vertex 23457 0.012072 0.11405 -0.0168987 Vertex 23458 -0.0217183 0.113234 -0.017904 Vertex 23459 0.000134491 0.116503 -0.0174981 Vertex 23460 -0.0263041 0.10845 -0.0208491 Vertex 23461 0.0293628 0.105677 -0.0139766 Vertex 23462 0.0544954 0.0655564 0.000403771 Vertex 23463 -0.0110297 0.11443 -0.0172182 Vertex 23464 -0.00557868 0.109705 -0.0221876 Vertex 23465 0.0309621 0.0953572 -0.0169293 Vertex 23466 0.0049437 0.0984176 -0.0242128 Vertex 23467 -0.0314758 0.118803 -0.0116777 Vertex 23468 -0.0591547 0.117476 -0.0120923 Vertex 23469 0.0296113 0.108994 -0.0114792 Vertex 23470 -0.0229141 0.111944 -0.0185359 Vertex 23471 0.0110271 0.112101 -0.0187639 Vertex 23472 -0.0077039 0.113721 -0.0184781 Vertex 23473 0.00592947 0.0982847 -0.0240623 Vertex 23474 0.00695506 0.0982177 -0.0239936 Vertex 23475 0.0101806 0.114501 -0.0173735 Vertex 23476 0.0217819 0.106251 -0.0165369 Vertex 23477 -0.055623 0.120216 -0.0109924 Vertex 23478 -0.0120923 0.11442 -0.0172013 Vertex 23479 0.00793635 0.0980328 -0.0238123 Vertex 23480 -0.0631603 0.151216 -0.00238889 Vertex 23481 -0.0624412 0.150596 -0.00171821 Vertex 23482 -0.06162 0.150156 -0.00124665 Vertex 23483 -0.0607079 0.149875 -0.000940868 Vertex 23484 -0.0596465 0.149865 -0.00094307 Vertex 23485 -0.0584945 0.150006 -0.0011129 Vertex 23486 -0.0571547 0.150227 -0.00146353 Vertex 23487 0.0220342 0.108737 -0.0152173 Vertex 23488 0.033089 0.0892132 -0.0184699 Vertex 23489 -0.0136643 0.0922643 -0.0359313 Vertex 23490 0.0211966 0.123092 -0.002693 Vertex 23491 -0.00886334 0.103392 -0.0235214 Vertex 23492 -0.00689074 0.103109 -0.0232386 Vertex 23493 -0.00282516 0.102957 -0.0229221 Vertex 23494 0.0473804 0.0650284 -0.00116263 Vertex 23495 0.00409443 0.101828 -0.021842 Vertex 23496 0.00810708 0.101446 -0.0211916 Vertex 23497 0.0188129 0.101666 -0.0216414 Vertex 23498 0.020694 0.101208 -0.0211426 Vertex 23499 0.0225251 0.100664 -0.0205487 Vertex 23500 0.0260175 0.0991397 -0.0189626 Vertex 23501 0.0318352 0.0959581 -0.0155753 Vertex 23502 0.0359605 0.0936242 -0.0130764 Vertex 23503 0.0399822 0.0910991 -0.010396 Vertex 23504 -0.0163397 0.112374 -0.0190184 Vertex 23505 0.0469627 0.0735494 0.00823046 Vertex 23506 0.0121657 0.0990535 -0.0228743 Vertex 23507 -0.0310423 0.0467686 -0.0260418 Vertex 23508 0.0301974 0.0887542 -0.0200097 Vertex 23509 -0.00121687 0.120006 -0.0132177 Vertex 23510 -0.0628829 0.0649103 0.0305991 Vertex 23511 -0.0619009 0.0678892 0.0352357 Vertex 23512 -0.0148084 0.124344 -0.00565133 Vertex 23513 0.00895989 0.0979651 -0.0237371 Vertex 23514 -0.0252122 0.108563 -0.020971 Vertex 23515 -0.00996463 0.114432 -0.0172214 Vertex 23516 0.0138891 0.0942573 -0.0257865 Vertex 23517 -0.00103499 0.117326 -0.0163697 Vertex 23518 0.00994371 0.0978413 -0.0235989 Vertex 23519 0.0221704 0.109999 -0.014573 Vertex 23520 0.0230644 0.109683 -0.0142211 Vertex 23521 0.0239811 0.109404 -0.0139261 Vertex 23522 0.0249492 0.109234 -0.0137375 Vertex 23523 -0.0186027 0.111108 -0.0196906 Vertex 23524 -0.0196643 0.111086 -0.0196461 Vertex 23525 0.02369 0.10485 -0.01704 Vertex 23526 0.0217204 0.105135 -0.0173432 Vertex 23527 0.0226853 0.115014 -0.0119595 Vertex 23528 0.0235731 0.114695 -0.0116124 Vertex 23529 -0.0397761 0.115072 -0.015742 Vertex 23530 0.0322493 0.109934 -0.00848346 Vertex 23531 0.0330411 0.10941 -0.00791346 Vertex 23532 -0.0386776 0.11516 -0.0158482 Vertex 23533 -0.0159305 0.0950186 -0.0327431 Vertex 23534 0.0569982 0.0642691 0.00177262 Vertex 23535 0.0120747 0.0958655 -0.0254962 Vertex 23536 -0.00117532 0.0998676 -0.0237773 Vertex 23537 0.0208954 0.116644 -0.0117151 Vertex 23538 0.0199827 0.116932 -0.0120267 Vertex 23539 0.0321971 0.112814 -0.0055615 Vertex 23540 0.0313786 0.113275 -0.00606229 Vertex 23541 -0.0022335 0.116052 -0.016996 Vertex 23542 -0.00341693 0.115827 -0.0167447 Vertex 23543 0.00933928 0.0947261 -0.0283032 Vertex 23544 -0.024291 0.106203 -0.0224613 Vertex 23545 -0.0539655 0.0364915 -0.0115887 Vertex 23546 -0.0374215 0.0466159 -0.0218044 Vertex 23547 0.0109672 0.0977693 -0.023517 Vertex 23548 -0.00361865 0.109419 -0.0218821 Vertex 23549 -0.00102634 0.107271 -0.0216101 Vertex 23550 0.0302323 0.0969553 -0.0166472 Vertex 23551 0.0276359 0.0629152 -0.0215123 Vertex 23552 0.011956 0.0976358 -0.0233787 Vertex 23553 -0.0114932 0.036278 -0.0256312 Vertex 23554 0.0207921 0.106393 -0.0166835 Vertex 23555 0.0257808 0.10679 -0.0151172 Vertex 23556 0.0251044 0.111527 -0.0122017 Vertex 23557 0.00314926 0.122256 -0.0116623 Vertex 23558 0.0111022 0.114226 -0.0170859 Vertex 23559 0.0178849 0.106917 -0.0172488 Vertex 23560 -0.0313363 0.11605 -0.0148117 Vertex 23561 -0.00967152 0.0968708 -0.0306358 Vertex 23562 0.012978 0.0975651 -0.0232996 Vertex 23563 -0.0629725 0.150532 -0.00369044 Vertex 23564 -0.0624071 0.149633 -0.00268499 Vertex 23565 -0.0616129 0.149191 -0.00221638 Vertex 23566 -0.060738 0.148827 -0.00180261 Vertex 23567 -0.0598207 0.148547 -0.00150215 Vertex 23568 -0.058758 0.148538 -0.00150368 Vertex 23569 -0.0576106 0.148673 -0.00161022 Vertex 23570 0.0211195 0.109025 -0.0155233 Vertex 23571 -0.0012258 0.095852 -0.0315171 Vertex 23572 0.00685606 0.0990064 -0.0228407 Vertex 23573 -0.0129939 0.103563 -0.0236849 Vertex 23574 -0.0078767 0.103255 -0.023393 Vertex 23575 -0.00579466 0.103184 -0.0232761 Vertex 23576 -0.000759903 0.102685 -0.0227147 Vertex 23577 0.00315207 0.102056 -0.0221009 Vertex 23578 0.00608628 0.101527 -0.0214717 Vertex 23579 -0.00890397 0.114438 -0.0172305 Vertex 23580 0.0197796 0.101487 -0.0214363 Vertex 23581 0.021598 0.10091 -0.0208238 Vertex 23582 0.00411662 0.125005 -0.00865855 Vertex 23583 0.00616718 0.124896 -0.00854967 Vertex 23584 0.0102653 0.0944766 -0.0280245 Vertex 23585 -0.0628844 0.116571 -0.0108779 Vertex 23586 -0.0063607 0.125295 -0.00886018 Vertex 23587 -0.00430179 0.125159 -0.00873129 Vertex 23588 -0.0223108 0.122995 -0.00618559 Vertex 23589 -0.053836 0.112592 -0.0169505 Vertex 23590 0.0139694 0.0974449 -0.0231882 Vertex 23591 -0.0367435 0.0437017 -0.0271198 Vertex 23592 -0.0516192 0.112658 -0.0171697 Vertex 23593 -0.0434138 0.111151 -0.0176174 Vertex 23594 -0.0033562 0.120959 -0.0122202 Vertex 23595 -0.035558 0.0430076 -0.0284728 Vertex 23596 0.0150281 0.097439 -0.0231662 Vertex 23597 0.0161097 0.0974052 -0.0230873 Vertex 23598 -0.0159384 0.124168 -0.00545234 Vertex 23599 -0.0375712 0.124334 -0.00748059 Vertex 23600 -0.0570526 0.113331 -0.0158151 Vertex 23601 -0.0559199 0.113507 -0.0160179 Vertex 23602 0.0101747 0.096292 -0.0259611 Vertex 23603 -0.0147917 0.0951887 -0.0329173 Vertex 23604 0.00037651 0.0978532 -0.0276151 Vertex 23605 0.017211 0.088423 -0.0276786 Vertex 23606 -0.0271072 0.11707 -0.0138992 Vertex 23607 -0.0249824 0.117062 -0.0139085 Vertex 23608 0.0208761 0.115613 -0.0126037 Vertex 23609 0.0217846 0.11532 -0.0122874 Vertex 23610 -0.0287709 0.04365 -0.0290051 Vertex 23611 0.00549299 0.117639 -0.0167508 Vertex 23612 0.00588424 0.100173 -0.0220733 Vertex 23613 -0.00111933 0.100971 -0.0229536 Vertex 23614 -0.00714364 0.101607 -0.0236448 Vertex 23615 -0.013279 0.101966 -0.0239644 Vertex 23616 0.0043586 0.119499 -0.0147306 Vertex 23617 0.0244076 0.117212 -0.0083203 Vertex 23618 0.00827474 0.123868 -0.00945393 Vertex 23619 -0.0343373 0.0443897 -0.0277936 Vertex 23620 0.0288386 0.111536 -0.010211 Vertex 23621 -0.025262 0.107417 -0.0217613 Vertex 23622 -0.0295595 0.111353 -0.0178807 Vertex 23623 -0.00665705 0.114661 -0.0174859 Vertex 23624 0.0305345 0.113708 -0.00653825 Vertex 23625 0.0296623 0.114075 -0.00693776 Vertex 23626 0.0123912 0.116671 -0.0157278 Vertex 23627 -0.0554295 0.0433 -0.00807812 Vertex 23628 -0.0285619 0.108073 -0.0204718 Vertex 23629 0.0198041 0.103539 -0.0196351 Vertex 23630 0.01688 0.104029 -0.0201606 Vertex 23631 -0.0601038 0.0347331 -0.00989443 Vertex 23632 -0.00663864 0.115688 -0.0165748 Vertex 23633 -0.0108336 0.116804 -0.0157483 Vertex 23634 -0.0337721 0.121485 -0.00843946 Vertex 23635 0.0252498 0.0645397 -0.0230446 Vertex 23636 0.015355 0.119233 -0.0124997 Vertex 23637 0.0181426 0.117476 -0.0126083 Vertex 23638 0.0124864 0.11785 -0.0149995 Vertex 23639 0.0305961 0.110839 -0.00946183 Vertex 23640 -0.0238167 0.0929782 -0.0327062 Vertex 23641 -0.047221 0.115086 -0.0157836 Vertex 23642 0.0396278 0.103602 -0.00160767 Vertex 23643 0.0322846 0.110983 -0.00760517 Vertex 23644 -0.00634438 0.0961732 -0.0318818 Vertex 23645 0.00176571 0.0954911 -0.0311224 Vertex 23646 -0.0180945 0.124042 -0.00530863 Vertex 23647 -0.0622568 0.148888 -0.00391238 Vertex 23648 -0.0616232 0.148175 -0.003118 Vertex 23649 -0.0608083 0.147764 -0.00265379 Vertex 23650 -0.0599387 0.147394 -0.00221747 Vertex 23651 -0.0589488 0.147198 -0.00200697 Vertex 23652 -0.0579829 0.147131 -0.0018633 Vertex 23653 0.0202177 0.109327 -0.0158556 Vertex 23654 0.0338998 0.0888046 -0.0179815 Vertex 23655 0.0523857 0.0624129 -0.0025136 Vertex 23656 -0.0119328 0.103575 -0.0236984 Vertex 23657 -0.0217098 0.115215 -0.0159934 Vertex 23658 -0.0611913 0.173613 -0.0615062 Vertex 23659 -0.00180961 0.102694 -0.0227875 Vertex 23660 -0.0569183 0.115707 -0.0143002 Vertex 23661 0.00507814 0.101571 -0.0215886 Vertex 23662 0.00917846 0.101539 -0.0214106 Vertex 23663 0.0139515 0.0933972 -0.0268828 Vertex 23664 0.0326207 0.0944486 -0.0159568 Vertex 23665 -0.013127 0.120519 -0.0116431 Vertex 23666 0.0465137 0.0736858 0.00606841 Vertex 23667 -0.0229191 0.119996 -0.0109969 Vertex 23668 -0.019191 0.123923 -0.00519119 Vertex 23669 -0.00455763 0.115688 -0.0165869 Vertex 23670 -0.0229012 0.115018 -0.0157633 Vertex 23671 0.0111864 0.115382 -0.0163281 Vertex 23672 -0.0603076 0.0409502 -0.0078507 Vertex 23673 -0.0152754 0.103231 -0.0233341 Vertex 23674 0.00372554 0.105196 -0.0213905 Vertex 23675 -0.0203338 0.123782 -0.00500918 Vertex 23676 -0.0282283 0.117946 -0.012805 Vertex 23677 0.0213227 0.122349 -0.00385694 Vertex 23678 0.00824435 0.0966482 -0.0263491 Vertex 23679 0.00104126 0.108173 -0.0205653 Vertex 23680 -0.0190957 0.0968508 -0.0266962 Vertex 23681 0.0485163 0.0672488 0.000612911 Vertex 23682 -0.00556188 0.116801 -0.0157696 Vertex 23683 -0.0580129 0.118724 -0.0113962 Vertex 23684 -0.052193 0.119749 -0.012566 Vertex 23685 0.0336763 0.102539 -0.0125747 Vertex 23686 0.0328155 0.102974 -0.0130264 Vertex 23687 -0.0434452 0.120253 -0.0131867 Vertex 23688 0.0304322 0.0902625 -0.0195701 Vertex 23689 0.0344822 0.102017 -0.0120204 Vertex 23690 -0.0567885 0.123073 -0.00794084 Vertex 23691 -0.0185957 0.118181 -0.0131167 Vertex 23692 0.0103692 0.116852 -0.0159048 Vertex 23693 -0.0409771 0.113795 -0.0164017 Vertex 23694 -0.0504236 0.113946 -0.0165184 Vertex 23695 -0.0514821 0.113924 -0.0164877 Vertex 23696 -0.0536811 0.113759 -0.0162997 Vertex 23697 -0.0525829 0.113848 -0.0164008 Vertex 23698 -0.0328911 0.122131 -0.00712262 Vertex 23699 0.0102801 0.12364 -0.00922404 Vertex 23700 -0.0522913 0.124591 -0.00759738 Vertex 23701 -0.0129957 0.0883892 -0.0379783 Vertex 23702 -0.00131456 0.122836 -0.0102349 Vertex 23703 -0.00577101 0.098213 -0.0280417 Vertex 23704 -0.00679638 0.0982761 -0.0281107 Vertex 23705 0.0236022 0.115739 -0.0107408 Vertex 23706 0.0209713 0.0966458 -0.0223043 Vertex 23707 0.021889 0.0963552 -0.0220144 Vertex 23708 0.00163035 0.0962275 -0.0299038 Vertex 23709 0.0547176 0.0680176 0.00187225 Vertex 23710 0.0105539 0.104067 -0.0202515 Vertex 23711 0.028326 0.0882981 -0.0214817 Vertex 23712 0.0227624 0.0959793 -0.0216236 Vertex 23713 0.0236771 0.0956901 -0.0213272 Vertex 23714 0.0204284 0.122662 -0.00423372 Vertex 23715 0.024601 0.0954054 -0.0210454 Vertex 23716 0.0276762 0.118315 -0.00350857 Vertex 23717 0.00929873 0.115842 -0.01682 Vertex 23718 0.0255559 0.0952317 -0.0208124 Vertex 23719 -0.0326373 0.119597 -0.0104942 Vertex 23720 -0.0167796 0.121583 -0.00869919 Vertex 23721 0.0408877 0.0928069 -0.00817715 Vertex 23722 0.00445187 0.116712 -0.0177471 Vertex 23723 0.027859 0.114683 -0.0075901 Vertex 23724 0.026954 0.114984 -0.00791167 Vertex 23725 -0.056641 0.0429978 -0.00777539 Vertex 23726 -0.0578691 0.0427244 -0.00751381 Vertex 23727 -0.0590296 0.0424919 -0.00727859 Vertex 23728 0.0158574 0.104091 -0.0202309 Vertex 23729 0.013731 0.104072 -0.0202068 Vertex 23730 -0.00349323 0.113677 -0.0184484 Vertex 23731 0.0147725 0.0939169 -0.0254338 Vertex 23732 -0.0369768 0.047531 -0.0185543 Vertex 23733 0.0264487 0.0948748 -0.0204583 Vertex 23734 -0.0299173 0.0383162 -0.0299848 Vertex 23735 -0.0466544 0.119173 -0.0140371 Vertex 23736 -0.0477624 0.119115 -0.0139706 Vertex 23737 0.0273313 0.094554 -0.020088 Vertex 23738 0.011579 0.120136 -0.0134617 Vertex 23739 0.0172033 0.118701 -0.0119316 Vertex 23740 0.0282191 0.0941913 -0.0197138 Vertex 23741 0.0277565 0.117474 -0.00457839 Vertex 23742 -0.0400399 0.0367774 -0.0284153 Vertex 23743 0.026933 0.109961 -0.012516 Vertex 23744 -0.00347452 0.114725 -0.0175669 Vertex 23745 0.0388181 0.104067 -0.00210374 Vertex 23746 -0.00562089 0.115673 -0.0165634 Vertex 23747 -0.0605064 0.0394509 -0.00845033 Vertex 23748 -0.000575856 0.0980296 -0.0278345 Vertex 23749 -0.00115893 0.11911 -0.0142672 Vertex 23750 0.0244135 0.114257 -0.0111426 Vertex 23751 0.0291029 0.0938741 -0.0193597 Vertex 23752 -0.0616609 0.147135 -0.00399772 Vertex 23753 -0.06089 0.146655 -0.00344226 Vertex 23754 -0.0600861 0.14609 -0.00280453 Vertex 23755 -0.0592476 0.145654 -0.00231326 Vertex 23756 -0.0583136 0.145422 -0.00203607 Vertex 23757 0.0192911 0.109605 -0.016128 Vertex 23758 0.0347324 0.0882263 -0.0174421 Vertex 23759 0.00586712 0.0991316 -0.0229749 Vertex 23760 0.0349035 0.0987755 -0.0125611 Vertex 23761 -0.0189866 0.10628 -0.022556 Vertex 23762 0.0299737 0.0934986 -0.0189639 Vertex 23763 0.0308492 0.0931255 -0.0185705 Vertex 23764 -0.0332024 0.0455956 -0.0269373 Vertex 23765 -0.0134033 0.110892 -0.0194483 Vertex 23766 0.0256081 0.104449 -0.0166247 Vertex 23767 0.00614351 0.12581 -0.00755937 Vertex 23768 -0.0164766 0.111102 -0.0196668 Vertex 23769 0.0326734 0.101648 -0.0136311 Vertex 23770 -0.0377619 0.0480619 -0.0149351 Vertex 23771 -0.0389438 0.047744 -0.0146455 Vertex 23772 0.0317035 0.0927362 -0.0181479 Vertex 23773 -0.0544366 0.120435 -0.011246 Vertex 23774 -0.0567567 0.0416998 -0.00856929 Vertex 23775 -0.0615105 0.0406302 -0.00752326 Vertex 23776 0.0325469 0.0922927 -0.0176842 Vertex 23777 -0.0579749 0.117711 -0.0123561 Vertex 23778 -0.0355388 0.0441134 -0.0275262 Vertex 23779 -0.0331847 0.0445939 -0.0279862 Vertex 23780 -0.0110869 0.111309 -0.0199045 Vertex 23781 0.0333653 0.0918289 -0.0171871 Vertex 23782 0.0237477 0.0605032 -0.0251433 Vertex 23783 0.0229081 0.0608908 -0.0255785 Vertex 23784 0.00394905 0.100531 -0.0224465 Vertex 23785 -0.0413464 0.0470648 -0.0139804 Vertex 23786 0.0115845 0.121127 -0.0125402 Vertex 23787 -0.0380903 0.041957 -0.0274154 Vertex 23788 -0.0338627 0.110196 -0.0186635 Vertex 23789 -0.0544975 0.121335 -0.0101688 Vertex 23790 0.00903586 0.100133 -0.0220275 Vertex 23791 -0.0273522 0.0939518 -0.0257303 Vertex 23792 -0.0261065 0.0944666 -0.0262366 Vertex 23793 -0.0248167 0.0949702 -0.0267501 Vertex 23794 0.0139517 0.124505 -0.00617757 Vertex 23795 0.0366018 0.0989128 -0.0107075 Vertex 23796 -0.0235591 0.0953745 -0.0271663 Vertex 23797 -0.0321271 0.107425 -0.0197503 Vertex 23798 -0.0043048 0.123153 -0.010566 Vertex 23799 -0.038773 0.11398 -0.0166127 Vertex 23800 -0.0398766 0.113891 -0.0165093 Vertex 23801 -0.0569551 0.11454 -0.0150747 Vertex 23802 -0.0605441 0.113772 -0.0142303 Vertex 23803 -0.0384117 0.12376 -0.00887525 Vertex 23804 -0.0375072 0.123454 -0.00854988 Vertex 23805 0.0106204 0.119324 -0.014581 Vertex 23806 0.00962081 0.119433 -0.0146957 Vertex 23807 0.000359464 0.0907103 -0.0342066 Vertex 23808 0.0533305 0.0723883 0.0073663 Vertex 23809 -0.00330066 0.124033 -0.00952648 Vertex 23810 -0.00342912 0.0915905 -0.0351346 Vertex 23811 0.0341879 0.0913684 -0.0166968 Vertex 23812 0.0350622 0.0909926 -0.0162992 Vertex 23813 0.00364343 0.0960341 -0.0296841 Vertex 23814 -0.0125598 0.0943837 -0.0340846 Vertex 23815 -0.0114982 0.0943996 -0.0340943 Vertex 23816 -0.0614235 0.172219 -0.0618413 Vertex 23817 0.0205436 0.121905 -0.00538746 Vertex 23818 0.018776 0.122594 -0.0061273 Vertex 23819 0.019654 0.122236 -0.00577023 Vertex 23820 0.0214379 0.121585 -0.00505488 Vertex 23821 0.0178615 0.122874 -0.00643626 Vertex 23822 0.0169165 0.123099 -0.00667688 Vertex 23823 -0.023326 0.122164 -0.00726067 Vertex 23824 -0.0210403 0.122456 -0.00761783 Vertex 23825 -0.0199406 0.122541 -0.00772092 Vertex 23826 -0.0189216 0.122512 -0.00768052 Vertex 23827 -0.00527436 0.124342 -0.0098488 Vertex 23828 -0.00638198 0.124385 -0.00985914 Vertex 23829 -0.0086348 0.124041 -0.00947049 Vertex 23830 -0.0157593 0.121529 -0.00864145 Vertex 23831 -0.00747948 0.0919417 -0.035549 Vertex 23832 0.0359032 0.0905437 -0.0158269 Vertex 23833 0.0366564 0.089932 -0.0151793 Vertex 23834 0.0287652 0.114389 -0.00726895 Vertex 23835 0.0329815 0.112282 -0.00498623 Vertex 23836 0.0337455 0.11169 -0.0043358 Vertex 23837 -0.0601959 0.0422699 -0.00706205 Vertex 23838 -0.0614063 0.0419532 -0.0067475 Vertex 23839 -0.0135961 0.12464 -0.00600832 Vertex 23840 0.0359226 0.0926166 -0.0140085 Vertex 23841 0.00270214 0.10527 -0.0214784 Vertex 23842 -0.0223025 0.0957816 -0.0275832 Vertex 23843 0.0223281 0.111319 -0.0139783 Vertex 23844 0.0196594 0.10025 -0.0221259 Vertex 23845 0.0374058 0.0893177 -0.0145297 Vertex 23846 -0.0179257 0.0971306 -0.0269629 Vertex 23847 0.0353216 0.0863185 -0.0174167 Vertex 23848 0.0336501 0.0872305 -0.0183746 Vertex 23849 0.00937092 0.0937948 -0.0292997 Vertex 23850 0.0496183 0.0673428 0.0005193 Vertex 23851 0.00311717 0.113125 -0.0199945 Vertex 23852 -0.0487025 0.121311 -0.0122547 Vertex 23853 0.0106278 0.12033 -0.0136749 Vertex 23854 -0.0413062 0.123313 -0.010402 Vertex 23855 -0.0312047 0.123257 -0.00431908 Vertex 23856 0.0268137 0.118694 -0.00391821 Vertex 23857 -0.0504087 0.0385253 -0.0116443 Vertex 23858 0.0258455 0.110181 -0.0127425 Vertex 23859 -0.0368171 0.04253 -0.0279956 Vertex 23860 0.0314584 0.111437 -0.00809824 Vertex 23861 -0.0211666 0.0959679 -0.0277597 Vertex 23862 -0.0792107 0.0760132 0.0281283 Vertex 23863 -0.0284948 0.111359 -0.0178892 Vertex 23864 -0.0604419 0.114971 -0.0134731 Vertex 23865 0.0436593 0.058746 -0.00488132 Vertex 23866 0.0381644 0.0887078 -0.0138852 Vertex 23867 -0.00645384 0.126073 -0.0076982 Vertex 23868 0.00338984 0.116722 -0.0177517 Vertex 23869 -0.0602464 0.144668 -0.00329576 Vertex 23870 -0.0594754 0.144099 -0.00268098 Vertex 23871 -0.0585858 0.14384 -0.00236725 Vertex 23872 -0.0576194 0.143675 -0.00218012 Vertex 23873 0.0237552 0.0887468 -0.0239425 Vertex 23874 -0.0147383 0.10835 -0.0207588 Vertex 23875 -0.0343486 0.0367995 -0.0305331 Vertex 23876 -0.0158006 0.108342 -0.0207487 Vertex 23877 -0.00891802 0.0982381 -0.0280905 Vertex 23878 -0.0467348 0.10982 -0.0182008 Vertex 23879 -0.0447252 0.109884 -0.0183457 Vertex 23880 -0.0318614 0.109962 -0.0183828 Vertex 23881 0.00917706 0.113608 -0.0184169 Vertex 23882 -0.00868026 0.111843 -0.0204858 Vertex 23883 0.0438775 0.06952 0.000229591 Vertex 23884 0.0350851 0.0848737 -0.0178837 Vertex 23885 0.0361999 0.103252 -0.0093129 Vertex 23886 0.025598 0.0610493 -0.0236458 Vertex 23887 -0.0386607 0.116212 -0.0149511 Vertex 23888 0.0168546 0.104974 -0.0191686 Vertex 23889 0.00234985 0.1177 -0.0168004 Vertex 23890 -0.0320761 0.0447291 -0.0281131 Vertex 23891 -0.0252093 0.112572 -0.0171753 Vertex 23892 -0.00988755 0.103466 -0.0236142 Vertex 23893 0.0158478 0.102035 -0.022 Vertex 23894 -0.0533077 0.12062 -0.0114531 Vertex 23895 0.0126337 0.110109 -0.0186257 Vertex 23896 -0.0137851 0.096091 -0.0318323 Vertex 23897 -0.0185539 0.095955 -0.0297446 Vertex 23898 0.0301667 0.116977 -0.00204442 Vertex 23899 -0.0554517 0.0444829 -0.0071986 Vertex 23900 0.0206713 0.0868458 -0.0260413 Vertex 23901 -0.0316803 0.111369 -0.0179291 Vertex 23902 0.0313508 0.109263 -0.00976359 Vertex 23903 0.0296893 0.110128 -0.0107004 Vertex 23904 0.0094151 0.117047 -0.0161127 Vertex 23905 0.0074278 0.117326 -0.0164147 Vertex 23906 -0.0522647 0.117566 -0.0142997 Vertex 23907 0.0512305 0.0723962 0.00737259 Vertex 23908 0.046342 0.0671736 0.000660587 Vertex 23909 -0.0315189 0.0351239 -0.0306591 Vertex 23910 0.0311435 0.0885162 -0.0196004 Vertex 23911 -0.0346622 0.118788 -0.0116368 Vertex 23912 0.0231929 0.110938 -0.0135659 Vertex 23913 -0.0148324 0.107132 -0.0214612 Vertex 23914 -0.0308996 0.107699 -0.0200324 Vertex 23915 0.016843 0.101962 -0.021958 Vertex 23916 -0.0376719 0.114063 -0.0167039 Vertex 23917 -0.0449755 0.115277 -0.0159431 Vertex 23918 0.00653601 0.0924318 -0.0319265 Vertex 23919 0.00374161 0.0952291 -0.0308324 Vertex 23920 0.00842498 0.094018 -0.0295425 Vertex 23921 -0.0142621 0.120334 -0.0114431 Vertex 23922 -0.0470116 0.0710509 0.0409961 Vertex 23923 0.00789859 0.0999878 -0.0218807 Vertex 23924 -0.0455406 0.124353 -0.00945534 Vertex 23925 -0.0444374 0.124419 -0.00954541 Vertex 23926 -0.0434133 0.12436 -0.00948612 Vertex 23927 -0.0033226 0.122983 -0.0103909 Vertex 23928 -0.0063009 0.09425 -0.0339062 Vertex 23929 0.0121427 0.124109 -0.00776299 Vertex 23930 -0.0608326 0.17151 -0.0610901 Vertex 23931 -0.0144059 0.112046 -0.0186792 Vertex 23932 -0.0254305 0.0357675 -0.0290845 Vertex 23933 -0.0199914 0.0962147 -0.0280142 Vertex 23934 -0.0188119 0.0964492 -0.0282644 Vertex 23935 -0.0176693 0.0966335 -0.0284397 Vertex 23936 -0.0164919 0.0968814 -0.0286925 Vertex 23937 -0.0153516 0.0970497 -0.0288687 Vertex 23938 -0.0142085 0.0972199 -0.0290358 Vertex 23939 -0.0187173 0.108826 -0.0212527 Vertex 23940 0.0130247 0.112857 -0.017601 Vertex 23941 0.014854 0.103191 -0.021265 Vertex 23942 0.0158783 0.103153 -0.0212298 Vertex 23943 -0.00658339 0.116828 -0.0157946 Vertex 23944 -0.00744498 0.124256 -0.00972454 Vertex 23945 -0.00981592 0.123797 -0.00918874 Vertex 23946 -0.0220536 0.0952953 -0.0290683 Vertex 23947 -0.0232226 0.0950277 -0.0288098 Vertex 23948 -0.0119418 0.120727 -0.011899 Vertex 23949 -0.0244677 0.122018 -0.00707965 Vertex 23950 -0.0224767 0.091498 -0.0352097 Vertex 23951 0.00964377 0.120482 -0.0138306 Vertex 23952 0.00862183 0.120558 -0.0139068 Vertex 23953 -0.0625553 0.041701 -0.00649092 Vertex 23954 -0.0638531 0.04136 -0.00615806 Vertex 23955 -0.0356809 0.123888 -0.0070042 Vertex 23956 -0.0352566 0.0382472 -0.0299775 Vertex 23957 -0.0158582 0.107196 -0.0215252 Vertex 23958 0.00194863 0.100763 -0.0227079 Vertex 23959 0.0116034 0.0355849 -0.021581 Vertex 23960 -0.0130717 0.0973914 -0.0292103 Vertex 23961 -0.011049 0.124435 -0.00785173 Vertex 23962 0.0232727 0.0989983 -0.0208236 Vertex 23963 -0.0356336 0.11996 -0.0108661 Vertex 23964 -0.0346794 0.119765 -0.0106544 Vertex 23965 -0.016783 0.0973001 -0.0271368 Vertex 23966 -0.0306891 0.120328 -0.00923215 Vertex 23967 -0.0295885 0.120405 -0.00932945 Vertex 23968 0.00748569 0.0942514 -0.0297902 Vertex 23969 0.0213104 0.092205 -0.0236008 Vertex 23970 -0.027433 0.108265 -0.0206521 Vertex 23971 -0.00743438 0.120242 -0.0134406 Vertex 23972 -0.0383512 0.122877 -0.00994551 Vertex 23973 -0.0392946 0.123101 -0.0101877 Vertex 23974 -0.0402835 0.123242 -0.0103332 Vertex 23975 -0.0685344 0.180035 -0.058648 Vertex 23976 -0.0166332 0.101644 -0.0236856 Vertex 23977 0.0514429 0.0626408 -0.00275857 Vertex 23978 0.00830607 0.0917456 -0.031199 Vertex 23979 -0.00451637 0.113738 -0.0185133 Vertex 23980 0.0248664 0.0898261 -0.023121 Vertex 23981 -0.0356548 0.0459643 -0.0252685 Vertex 23982 0.0144798 0.109585 -0.0180587 Vertex 23983 -0.00246627 0.111608 -0.0202454 Vertex 23984 -0.0177322 0.108689 -0.0211068 Vertex 23985 0.0252284 0.116758 -0.00782512 Vertex 23986 -0.0240311 0.112816 -0.0174462 Vertex 23987 -0.060466 0.143311 -0.00379205 Vertex 23988 -0.059626 0.14292 -0.00334389 Vertex 23989 -0.0586992 0.142676 -0.00307276 Vertex 23990 -0.0577688 0.142406 -0.00278963 Vertex 23991 -0.0568151 0.142191 -0.00256359 Vertex 23992 -0.0558892 0.141955 -0.00229647 Vertex 23993 0.0183373 0.109817 -0.016338 Vertex 23994 -0.0616584 0.114654 -0.0131207 Vertex 23995 -0.000234213 0.0957245 -0.0313684 Vertex 23996 0.0383558 0.102292 -0.0062663 Vertex 23997 -0.00648076 0.0969085 -0.030657 Vertex 23998 0.0317719 0.115994 -0.000976469 Vertex 23999 0.0347025 0.105449 -0.00966587 Vertex 24000 0.0250009 0.0629104 -0.0235842 Vertex 24001 0.00748118 0.122397 -0.0118721 Vertex 24002 0.0053984 0.122421 -0.0118951 Vertex 24003 -0.00423283 0.0951855 -0.0328472 Vertex 24004 0.0338583 0.105892 -0.0101458 Vertex 24005 0.00645879 0.122419 -0.0119062 Vertex 24006 0.00854238 0.122369 -0.0118647 Vertex 24007 0.00956448 0.122301 -0.0117968 Vertex 24008 0.0105493 0.122164 -0.0116505 Vertex 24009 0.0115311 0.122019 -0.0114981 Vertex 24010 -0.0368012 0.111669 -0.0181954 Vertex 24011 -0.0533229 0.121583 -0.0104498 Vertex 24012 0.0155707 0.100538 -0.0224673 Vertex 24013 -0.0638562 0.0423917 -0.00506847 Vertex 24014 -0.0625754 0.042738 -0.00542472 Vertex 24015 -0.0589463 0.0436711 -0.00636451 Vertex 24016 -0.0565924 0.0442297 -0.00693458 Vertex 24017 0.0198288 0.120602 -0.00797301 Vertex 24018 0.0207343 0.120306 -0.00765281 Vertex 24019 -0.00104637 0.116277 -0.0172455 Vertex 24020 0.00122691 0.116615 -0.0176232 Vertex 24021 0.0092124 0.114671 -0.0175632 Vertex 24022 0.0082875 0.114937 -0.017843 Vertex 24023 -0.0283013 0.113756 -0.016413 Vertex 24024 0.0458479 0.0724092 0.00333418 Vertex 24025 -0.0511148 0.117699 -0.0144446 Vertex 24026 -0.017033 0.0949215 -0.0326512 Vertex 24027 0.0152676 0.11708 -0.0141694 Vertex 24028 -0.0119956 0.0882297 -0.0377812 Vertex 24029 0.016822 0.123899 -0.00554312 Vertex 24030 -0.0577888 0.0439091 -0.00660137 Vertex 24031 -0.0140302 0.116852 -0.0157862 Vertex 24032 -0.0129648 0.116833 -0.0157687 Vertex 24033 -0.0646081 0.0450546 0.000685835 Vertex 24034 0.004329 0.114453 -0.0192954 Vertex 24035 -0.0548344 0.113627 -0.016162 Vertex 24036 0.0336337 0.112484 -0.0031866 Vertex 24037 -0.0433911 0.121364 -0.0123522 Vertex 24038 -0.0318616 0.0386777 -0.0303614 Vertex 24039 -0.0611415 0.0359024 -0.0090437 Vertex 24040 0.027747 0.0902677 -0.021551 Vertex 24041 -0.0488054 0.124161 -0.00921799 Vertex 24042 -0.0476605 0.124307 -0.00939578 Vertex 24043 -0.0465624 0.124393 -0.00950278 Vertex 24044 0.0522547 0.0611036 -0.00320855 Vertex 24045 0.0531449 0.0608429 -0.00288049 Vertex 24046 0.0539548 0.0603844 -0.00239402 Vertex 24047 0.0546876 0.0597691 -0.00173886 Vertex 24048 0.0465866 0.0714909 0.00427537 Vertex 24049 0.047295 0.0711844 0.0046334 Vertex 24050 -0.0240218 0.119915 -0.0108978 Vertex 24051 0.0330446 0.111446 -0.00610948 Vertex 24052 -0.0023355 0.0926921 -0.0342848 Vertex 24053 -0.00332118 0.0928352 -0.0344367 Vertex 24054 -0.00431394 0.0929621 -0.0345661 Vertex 24055 -0.00533435 0.0930519 -0.0346806 Vertex 24056 -0.00635915 0.0931082 -0.0347376 Vertex 24057 -0.00738223 0.0931774 -0.0348179 Vertex 24058 -0.0084076 0.0932235 -0.0348708 Vertex 24059 -0.00946933 0.0932363 -0.0348935 Vertex 24060 -0.0104939 0.0933018 -0.0349679 Vertex 24061 -0.0114787 0.0934019 -0.0350786 Vertex 24062 -0.012585 0.0933765 -0.0350613 Vertex 24063 -0.0136058 0.093388 -0.035076 Vertex 24064 -0.0147076 0.0933085 -0.0349989 Vertex 24065 -0.0158055 0.0931896 -0.0348885 Vertex 24066 -0.0183288 0.115615 -0.0164437 Vertex 24067 -0.0589701 0.121961 -0.00876657 Vertex 24068 -0.0135504 0.122737 -0.00796322 Vertex 24069 0.0140839 0.123776 -0.0073928 Vertex 24070 -0.0139593 0.0967237 -0.0305143 Vertex 24071 -0.0150968 0.0965608 -0.0303463 Vertex 24072 -0.0168907 0.0921233 -0.0358082 Vertex 24073 -0.0379322 0.0359407 -0.029738 Vertex 24074 0.00759602 0.120603 -0.0139518 Vertex 24075 -0.0465826 0.121367 -0.0123258 Vertex 24076 -0.045477 0.1214 -0.012376 Vertex 24077 0.0483563 0.0710513 0.00477309 Vertex 24078 -0.0119302 0.0975527 -0.0293786 Vertex 24079 -0.0108678 0.0975625 -0.0293851 Vertex 24080 -0.0228558 0.113062 -0.0177116 Vertex 24081 -0.0398336 0.0384391 -0.0280596 Vertex 24082 -0.0360543 0.0398378 -0.0294769 Vertex 24083 0.0285239 0.105924 -0.0141978 Vertex 24084 -0.0147266 0.0922559 -0.0359307 Vertex 24085 -0.0262987 0.113585 -0.0162365 Vertex 24086 0.0149059 0.124307 -0.00595517 Vertex 24087 -0.0053845 0.126096 -0.00772897 Vertex 24088 0.000980617 0.120181 -0.0134191 Vertex 24089 -0.0393097 0.122071 -0.0111029 Vertex 24090 -0.0317604 0.120314 -0.00921321 Vertex 24091 0.000828067 0.123861 -0.00936286 Vertex 24092 0.00307304 0.124054 -0.00961404 Vertex 24093 -0.0329396 0.0386558 -0.0303928 Vertex 24094 -0.0170833 0.0896859 -0.0373218 Vertex 24095 0.0494532 0.0710682 0.00472592 Vertex 24096 0.0505588 0.0711508 0.00463977 Vertex 24097 -0.0423688 0.123346 -0.0104204 Vertex 24098 0.0516174 0.0711387 0.00464104 Vertex 24099 0.0526374 0.0710929 0.00470311 Vertex 24100 -0.0002129 0.122901 -0.0103152 Vertex 24101 0.0286561 0.108194 -0.012625 Vertex 24102 0.0536516 0.0710277 0.00477709 Vertex 24103 -0.00984328 0.0975178 -0.0293224 Vertex 24104 -0.0153159 0.119411 -0.012435 Vertex 24105 0.0262919 0.101687 -0.017683 Vertex 24106 -0.00874511 0.0976201 -0.0294139 Vertex 24107 0.0180384 0.119266 -0.0105437 Vertex 24108 0.054633 0.0708998 0.00492223 Vertex 24109 -0.0605307 0.142151 -0.00455603 Vertex 24110 -0.0596476 0.14187 -0.00422882 Vertex 24111 -0.0586999 0.141645 -0.00399496 Vertex 24112 -0.0577531 0.141417 -0.00374252 Vertex 24113 -0.0568701 0.141076 -0.0033696 Vertex 24114 -0.0560039 0.140764 -0.00299974 Vertex 24115 -0.0551839 0.140262 -0.00246039 Vertex 24116 -0.090988 0.113988 0.0207121 Vertex 24117 0.0354948 0.10491 -0.00909103 Vertex 24118 -0.0121876 0.113225 -0.0179296 Vertex 24119 0.0555717 0.0706847 0.00515518 Vertex 24120 -0.0434727 0.125255 -0.0084227 Vertex 24121 0.0564615 0.0703554 0.0055259 Vertex 24122 0.057327 0.0700157 0.00587175 Vertex 24123 0.058107 0.0694858 0.00643586 Vertex 24124 -0.0480175 0.133707 0.00490199 Vertex 24125 -0.0282448 0.11486 -0.0155715 Vertex 24126 -0.0374161 0.12162 -0.0106267 Vertex 24127 -0.0407824 0.116214 -0.0149415 Vertex 24128 -0.0181312 0.0948304 -0.0325641 Vertex 24129 0.0269219 0.115924 -0.00692402 Vertex 24130 -0.0111671 0.0867859 -0.0382994 Vertex 24131 -0.0102744 0.0864318 -0.0379838 Vertex 24132 0.0177807 0.10571 -0.0179484 Vertex 24133 -0.0590669 0.120714 -0.00943474 Vertex 24134 -0.060211 0.120578 -0.00928669 Vertex 24135 -0.0336919 0.119642 -0.0105178 Vertex 24136 0.0179331 0.121039 -0.00844165 Vertex 24137 0.0161504 0.121694 -0.0091598 Vertex 24138 0.0261418 0.0859362 -0.0230192 Vertex 24139 0.000745542 0.0955759 -0.0312149 Vertex 24140 0.0188897 0.120837 -0.00821554 Vertex 24141 0.0170202 0.121328 -0.0087569 Vertex 24142 0.0143083 0.122234 -0.00973054 Vertex 24143 0.0288394 0.112544 -0.00929606 Vertex 24144 0.015252 0.122005 -0.00948865 Vertex 24145 -0.00233373 0.114874 -0.0177321 Vertex 24146 0.0130913 0.0937889 -0.0272955 Vertex 24147 -0.0383343 0.121902 -0.0109317 Vertex 24148 -0.0174982 0.111166 -0.0197324 Vertex 24149 -0.0207265 0.111071 -0.0196229 Vertex 24150 -0.0217829 0.111029 -0.0195757 Vertex 24151 0.0277777 0.108556 -0.0130095 Vertex 24152 0.0259403 0.1091 -0.0135959 Vertex 24153 3.04988e-05 0.11432 -0.019028 Vertex 24154 0.00110358 0.114412 -0.0192684 Vertex 24155 -0.0346391 0.0469045 -0.0241611 Vertex 24156 0.0383367 0.0910432 -0.012345 Vertex 24157 0.0260088 0.0910229 -0.0223512 Vertex 24158 0.00809551 0.112572 -0.0192987 Vertex 24159 -0.0414315 0.120058 -0.0129928 Vertex 24160 0.0282353 0.0775351 -0.0225519 Vertex 24161 -0.0498987 0.124057 -0.00910218 Vertex 24162 0.0258821 0.0794179 -0.0243188 Vertex 24163 0.049328 0.0615911 -0.00371844 Vertex 24164 0.0503466 0.0615208 -0.00363326 Vertex 24165 0.0513324 0.0613858 -0.00348738 Vertex 24166 0.0131024 0.123925 -0.00754958 Vertex 24167 0.00337017 0.091416 -0.0329064 Vertex 24168 0.00242842 0.0916453 -0.033159 Vertex 24169 0.00150165 0.0919153 -0.0334107 Vertex 24170 0.000567537 0.0921561 -0.0336854 Vertex 24171 -0.000397685 0.0923281 -0.0338988 Vertex 24172 -0.00135158 0.0925397 -0.0341169 Vertex 24173 0.0451079 0.0636949 -0.00183531 Vertex 24174 0.046214 0.0637709 -0.0019104 Vertex 24175 0.0473189 0.0638822 -0.00202275 Vertex 24176 0.0484193 0.0639761 -0.00211304 Vertex 24177 0.0494857 0.064014 -0.00214923 Vertex 24178 0.0505447 0.0640078 -0.00213219 Vertex 24179 0.0515389 0.0638758 -0.00198972 Vertex 24180 0.0524799 0.0636428 -0.00173686 Vertex 24181 0.0533817 0.063336 -0.00140725 Vertex 24182 0.0541934 0.0628656 -0.00090927 Vertex 24183 0.054979 0.06227 -0.000302264 Vertex 24184 0.0557083 0.0616421 0.000366134 Vertex 24185 0.00543406 0.120555 -0.0138758 Vertex 24186 0.0172432 0.108764 -0.0171862 Vertex 24187 -0.016912 0.0931258 -0.0348233 Vertex 24188 -0.0179307 0.0931593 -0.0348763 Vertex 24189 -0.0444577 0.123407 -0.0104693 Vertex 24190 0.0142116 0.123033 -0.00860213 Vertex 24191 -0.000792652 0.0894877 -0.0349748 Vertex 24192 -0.00175042 0.0897209 -0.0353687 Vertex 24193 -0.00233157 0.122878 -0.010278 Vertex 24194 -0.0104985 0.0362063 -0.0254961 Vertex 24195 -0.0410644 0.0466663 -0.0156422 Vertex 24196 -0.0296544 0.0346993 -0.0301222 Vertex 24197 -0.037469 0.120514 -0.011464 Vertex 24198 -0.0365293 0.120277 -0.0112077 Vertex 24199 -0.0591735 0.11954 -0.0102201 Vertex 24200 -0.060367 0.11933 -0.00999174 Vertex 24201 -0.0521219 0.120842 -0.0117106 Vertex 24202 -0.0397231 0.116184 -0.0149076 Vertex 24203 0.0190541 0.116198 -0.0132311 Vertex 24204 0.0219046 0.0892697 -0.0245066 Vertex 24205 -0.0295217 0.0402041 -0.0298306 Vertex 24206 -0.00768132 0.0976452 -0.0294292 Vertex 24207 -0.00887527 0.109466 -0.0219533 Vertex 24208 -0.021864 0.108885 -0.0213157 Vertex 24209 -0.0129882 0.119781 -0.0128781 Vertex 24210 0.0214747 0.0996539 -0.0214946 Vertex 24211 -0.0125561 0.107483 -0.0218463 Vertex 24212 0.00212883 0.120316 -0.0135831 Vertex 24213 -0.0284862 0.120462 -0.00941436 Vertex 24214 0.00192116 0.123969 -0.00948312 Vertex 24215 0.0052003 0.124064 -0.00964829 Vertex 24216 -0.0138904 0.0897489 -0.0373664 Vertex 24217 -0.0128628 0.0896836 -0.0372956 Vertex 24218 -0.0160243 0.0897174 -0.0373532 Vertex 24219 0.0159709 0.0859869 -0.0291978 Vertex 24220 0.0168479 0.0856792 -0.0288312 Vertex 24221 0.0391135 0.0904981 -0.0117677 Vertex 24222 -0.043573 0.126043 -0.00725208 Vertex 24223 0.0351088 0.100136 -0.012024 Vertex 24224 -0.056803 0.119986 -0.0107265 Vertex 24225 0.0541025 0.0616928 -0.00172111 Vertex 24226 -0.0390833 0.0486663 -0.0122287 Vertex 24227 -0.0361402 0.0481769 -0.0171107 Vertex 24228 -0.0373786 0.0478297 -0.016773 Vertex 24229 0.0171797 0.119654 -0.0109592 Vertex 24230 -0.0345019 0.0461718 -0.0254652 Vertex 24231 0.0205734 0.0999616 -0.0218299 Vertex 24232 -0.0592783 0.115234 -0.0137669 Vertex 24233 0.0193852 0.0915557 -0.024942 Vertex 24234 -0.0254216 0.0999543 -0.0239282 Vertex 24235 -0.06064 0.140962 -0.00527103 Vertex 24236 -0.0596957 0.14074 -0.00502874 Vertex 24237 -0.058744 0.140559 -0.00481674 Vertex 24238 -0.0578202 0.140285 -0.0045343 Vertex 24239 -0.0569294 0.13993 -0.00415472 Vertex 24240 -0.0561139 0.139571 -0.00370722 Vertex 24241 -0.0546314 0.138445 -0.00241154 Vertex 24242 -0.0538462 0.137744 -0.0016929 Vertex 24243 -0.0530296 0.137293 -0.00118635 Vertex 24244 -0.0243216 0.10004 -0.0240037 Vertex 24245 -0.0703543 0.0703917 0.033048 Vertex 24246 -0.0232574 0.100051 -0.0240138 Vertex 24247 -0.0872312 0.1132 0.0437313 Vertex 24248 -0.0486267 0.13356 0.00299082 Vertex 24249 -0.0479295 0.132887 0.00374503 Vertex 24250 -0.0472049 0.132217 0.00449629 Vertex 24251 -0.0464946 0.131544 0.00524728 Vertex 24252 -0.00333701 0.121977 -0.0113118 Vertex 24253 0.0520156 0.0596733 -0.00368903 Vertex 24254 0.0511122 0.059915 -0.00400422 Vertex 24255 0.0491876 0.0602673 -0.00438234 Vertex 24256 0.0502575 0.0602229 -0.00418894 Vertex 24257 -0.00931865 0.0862591 -0.0377315 Vertex 24258 -0.0433732 0.122414 -0.0114499 Vertex 24259 -0.00247117 0.091392 -0.0349524 Vertex 24260 0.0220892 0.0906332 -0.0239505 Vertex 24261 -0.015827 0.0921385 -0.0358122 Vertex 24262 -0.0356488 0.118923 -0.0117804 Vertex 24263 -0.0712408 0.114861 0.0513991 Vertex 24264 -0.0250745 0.0954862 -0.0252675 Vertex 24265 -0.0123796 0.124965 -0.00637162 Vertex 24266 0.0138422 0.0901622 -0.0294996 Vertex 24267 0.0124215 0.122685 -0.01021 Vertex 24268 -0.0192308 0.0947234 -0.0324688 Vertex 24269 -0.0280195 0.0378733 -0.0295429 Vertex 24270 -0.0393675 0.120945 -0.0119262 Vertex 24271 0.0269115 0.116892 -0.00595645 Vertex 24272 -0.0214492 0.0963545 -0.0261739 Vertex 24273 -0.0500652 0.125773 -0.00688378 Vertex 24274 0.0241638 0.0853333 -0.0244737 Vertex 24275 0.0189265 0.119915 -0.00924366 Vertex 24276 -0.0250413 0.0925197 -0.0322644 Vertex 24277 0.0328365 0.0876935 -0.0188869 Vertex 24278 -0.0358204 0.046598 -0.0238768 Vertex 24279 0.00860136 0.121512 -0.0129363 Vertex 24280 0.0268943 0.0906576 -0.0219805 Vertex 24281 -0.020238 0.0938075 -0.0335417 Vertex 24282 0.0438286 0.0611702 -0.00330591 Vertex 24283 0.0449793 0.061326 -0.0034541 Vertex 24284 0.0460928 0.061454 -0.00359733 Vertex 24285 0.0471561 0.0614873 -0.00363177 Vertex 24286 0.0482689 0.0616107 -0.00376704 Vertex 24287 0.00816432 0.0904541 -0.0318561 Vertex 24288 0.0073001 0.0907939 -0.0322622 Vertex 24289 0.00639772 0.0911374 -0.0325899 Vertex 24290 -0.0125993 0.0922824 -0.0359459 Vertex 24291 0.0134275 0.117615 -0.0147491 Vertex 24292 -0.00149609 0.0912323 -0.0347548 Vertex 24293 -0.0221188 0.100222 -0.0241961 Vertex 24294 0.0416942 0.0655359 -0.00371801 Vertex 24295 0.0422139 0.06433 -0.00247442 Vertex 24296 0.0430174 0.0637781 -0.0018983 Vertex 24297 0.043967 0.0636126 -0.00172463 Vertex 24298 -0.0111161 0.125335 -0.00680126 Vertex 24299 0.047721 0.0729559 0.00883547 Vertex 24300 0.00165238 0.0932332 -0.0327923 Vertex 24301 -0.00422597 0.10111 -0.0231367 Vertex 24302 0.0367496 0.0931371 -0.012555 Vertex 24303 0.032634 0.0954843 -0.0150589 Vertex 24304 0.0268942 0.0988154 -0.0185978 Vertex 24305 0.0234322 0.100371 -0.0202365 Vertex 24306 0.0439094 0.0623682 -0.0025277 Vertex 24307 -0.00645816 0.122156 -0.0114796 Vertex 24308 -0.00749956 0.121159 -0.0124082 Vertex 24309 0.0217031 0.104101 -0.0182402 Vertex 24310 0.0255053 0.103245 -0.0173339 Vertex 24311 0.00274784 0.0953419 -0.0309592 Vertex 24312 0.0306065 0.111866 -0.00856301 Vertex 24313 0.0083446 0.116042 -0.0170347 Vertex 24314 -0.0190349 0.0930706 -0.0347914 Vertex 24315 -0.0201767 0.0929008 -0.0346271 Vertex 24316 -0.010101 0.102023 -0.0240718 Vertex 24317 -0.0365871 0.119162 -0.0120374 Vertex 24318 -0.0325387 0.118791 -0.011658 Vertex 24319 -0.00364386 0.0901332 -0.0356262 Vertex 24320 -0.0123378 0.123047 -0.00831897 Vertex 24321 -0.00661675 0.0976221 -0.0294208 Vertex 24322 -0.0133438 0.11201 -0.0186315 Vertex 24323 -0.0524922 0.0384865 -0.0115467 Vertex 24324 0.0516874 0.0662489 -0.000355134 Vertex 24325 -0.0141183 0.115602 -0.0164489 Vertex 24326 0.0186953 0.0943115 -0.0238444 Vertex 24327 0.03545 0.105907 -0.00815474 Vertex 24328 0.0162665 0.119939 -0.0112703 Vertex 24329 0.0199074 0.11877 -0.0100039 Vertex 24330 -0.0272643 0.118767 -0.0116611 Vertex 24331 0.0177903 0.112808 -0.0155711 Vertex 24332 0.0156574 0.0925729 -0.0260099 Vertex 24333 -0.0275896 0.0398384 -0.0294326 Vertex 24334 -0.00151782 0.111398 -0.0200294 Vertex 24335 0.0163086 0.108997 -0.0174538 Vertex 24336 0.0159998 0.123366 -0.00698095 Vertex 24337 -0.00563259 0.0974901 -0.0292726 Vertex 24338 -0.00444148 0.0916785 -0.0352643 Vertex 24339 -0.00453349 0.0975685 -0.029357 Vertex 24340 -0.0237033 0.091176 -0.0348871 Vertex 24341 -0.0302701 0.0365155 -0.0302567 Vertex 24342 -0.0273178 0.113609 -0.0162558 Vertex 24343 -0.0163998 0.119263 -0.0123023 Vertex 24344 0.00323101 0.120377 -0.0136716 Vertex 24345 -0.041943 0.114992 -0.0156494 Vertex 24346 0.00413437 0.124074 -0.00964261 Vertex 24347 -0.0149576 0.0897382 -0.0373658 Vertex 24348 -0.0239408 0.0886576 -0.0363455 Vertex 24349 -0.0227541 0.0889021 -0.0365754 Vertex 24350 0.0151613 0.0863718 -0.029541 Vertex 24351 -0.0554697 0.0345193 -0.0117205 Vertex 24352 -0.00350831 0.0975151 -0.0292875 Vertex 24353 0.0227707 0.10612 -0.0163977 Vertex 24354 -0.0309617 0.044825 -0.0281993 Vertex 24355 -0.0418025 0.1163 -0.0150397 Vertex 24356 -0.0285904 0.110146 -0.0186081 Vertex 24357 -0.00443456 0.111901 -0.0205597 Vertex 24358 0.0197485 0.105413 -0.017636 Vertex 24359 -0.00855639 0.121127 -0.0123669 Vertex 24360 -0.0322022 0.0465812 -0.0258568 Vertex 24361 -0.0333511 0.0463754 -0.0256604 Vertex 24362 -0.0022961 0.120938 -0.0122094 Vertex 24363 0.0338763 0.0978118 -0.0135516 Vertex 24364 -0.0385489 0.119476 -0.0123722 Vertex 24365 -0.0386191 0.118326 -0.013151 Vertex 24366 -0.0616548 0.140062 -0.00630976 Vertex 24367 -0.0607657 0.139716 -0.00595313 Vertex 24368 -0.0598293 0.139488 -0.00569497 Vertex 24369 -0.058864 0.139321 -0.00549203 Vertex 24370 -0.0579608 0.139021 -0.00516612 Vertex 24371 -0.0570823 0.138706 -0.0047975 Vertex 24372 -0.0562826 0.138192 -0.0042334 Vertex 24373 -0.05553 0.137483 -0.00349047 Vertex 24374 -0.0548238 0.136818 -0.00273484 Vertex 24375 -0.0540045 0.13652 -0.00234857 Vertex 24376 -0.0531099 0.136165 -0.00197183 Vertex 24377 -0.0522733 0.13577 -0.00153662 Vertex 24378 -0.0506815 0.134691 -0.000340536 Vertex 24379 -0.0499313 0.134148 0.000258943 Vertex 24380 -0.0492298 0.13342 0.00108021 Vertex 24381 -0.0485925 0.132707 0.00186362 Vertex 24382 -0.047856 0.132056 0.00259359 Vertex 24383 -0.0470839 0.131413 0.00333034 Vertex 24384 -0.0463678 0.13079 0.00400616 Vertex 24385 -0.00861199 0.118019 -0.01506 Vertex 24386 0.0261658 0.0809584 -0.0239333 Vertex 24387 0.0269298 0.0804165 -0.0233375 Vertex 24388 0.0276968 0.0797349 -0.0226793 Vertex 24389 0.0481264 0.060275 -0.00442661 Vertex 24390 0.0470549 0.0602552 -0.00440662 Vertex 24391 0.0459848 0.0602104 -0.00435135 Vertex 24392 0.0448746 0.0601039 -0.00424277 Vertex 24393 0.0437641 0.0599949 -0.00412714 Vertex 24394 0.0426589 0.0598822 -0.00401987 Vertex 24395 -0.0536497 0.0382495 -0.0113033 Vertex 24396 0.000709469 0.125628 -0.00726116 Vertex 24397 -0.0174184 0.0961382 -0.0299203 Vertex 24398 0.0405643 0.0599899 -0.00408877 Vertex 24399 0.0416146 0.0598915 -0.00407392 Vertex 24400 -0.00967767 0.118026 -0.0150602 Vertex 24401 0.0523234 0.0724358 0.00729932 Vertex 24402 0.0114372 0.12283 -0.0103617 Vertex 24403 0.013368 0.122467 -0.00997636 Vertex 24404 -0.0110119 0.122536 -0.00980812 Vertex 24405 -0.0122779 0.122169 -0.00937841 Vertex 24406 -0.00979508 0.122843 -0.0101629 Vertex 24407 -0.00750765 0.123161 -0.01054 Vertex 24408 -0.00635478 0.123294 -0.010702 Vertex 24409 -0.0100186 0.0981603 -0.0280043 Vertex 24410 -0.0603898 0.116109 -0.0126519 Vertex 24411 -0.0397839 0.0471068 -0.0160895 Vertex 24412 0.0142784 0.11622 -0.015243 Vertex 24413 -0.0202902 0.0906146 -0.0362948 Vertex 24414 -0.0129458 0.117871 -0.0148632 Vertex 24415 0.0417493 0.0611977 -0.0033567 Vertex 24416 0.0427869 0.0611675 -0.0033403 Vertex 24417 0.0128104 0.0891816 -0.030491 Vertex 24418 0.0169892 0.122251 -0.00777586 Vertex 24419 0.00904636 0.090083 -0.0314826 Vertex 24420 -0.0302748 0.116055 -0.0148216 Vertex 24421 0.0304033 0.107421 -0.0117891 Vertex 24422 -0.0115345 0.0922826 -0.0359317 Vertex 24423 -0.0629168 0.114269 -0.0126902 Vertex 24424 -0.0140104 0.117853 -0.0148385 Vertex 24425 -0.0508117 0.0354248 -0.0125858 Vertex 24426 -0.0270641 0.0376545 -0.0293745 Vertex 24427 0.0231651 0.0624431 -0.0251426 Vertex 24428 -0.0229201 0.115998 -0.0147881 Vertex 24429 -0.0218136 0.116051 -0.0148581 Vertex 24430 -0.0206698 0.116197 -0.0150314 Vertex 24431 -0.019536 0.116371 -0.0152209 Vertex 24432 -0.00115741 0.0949656 -0.0326157 Vertex 24433 -0.00020637 0.0947598 -0.0324026 Vertex 24434 0.000769534 0.0946028 -0.0322154 Vertex 24435 0.00174762 0.0944417 -0.0320379 Vertex 24436 0.00273738 0.0943137 -0.0318997 Vertex 24437 0.00372222 0.0941665 -0.0317421 Vertex 24438 0.0047217 0.0940547 -0.0316305 Vertex 24439 0.00569172 0.093878 -0.0314287 Vertex 24440 0.00660528 0.0935786 -0.0311099 Vertex 24441 0.00749081 0.093253 -0.0307631 Vertex 24442 0.00836869 0.0928852 -0.0303774 Vertex 24443 0.0093177 0.0926652 -0.0301396 Vertex 24444 0.0102735 0.0924657 -0.0299319 Vertex 24445 0.00412979 0.113096 -0.0199676 Vertex 24446 -0.0172476 0.114664 -0.0174436 Vertex 24447 -0.026364 0.0359692 -0.029405 Vertex 24448 -0.0328486 0.0986298 -0.0228073 Vertex 24449 -0.0213227 0.0927441 -0.0344661 Vertex 24450 -0.0224559 0.092554 -0.0342812 Vertex 24451 -0.0210545 0.100222 -0.024166 Vertex 24452 -0.0183957 0.116542 -0.0154107 Vertex 24453 0.0126673 0.104052 -0.020179 Vertex 24454 -0.0110742 0.123419 -0.00875247 Vertex 24455 -0.00667005 0.0904165 -0.0359686 Vertex 24456 -0.00765334 0.0905691 -0.0361471 Vertex 24457 -0.0161934 0.116736 -0.0156361 Vertex 24458 0.0394434 0.0585828 -0.00486619 Vertex 24459 -0.0422677 0.111306 -0.0177858 Vertex 24460 0.0452209 0.0659646 -0.000116442 Vertex 24461 0.0354547 0.103863 -0.00997386 Vertex 24462 0.0338372 0.104851 -0.0110391 Vertex 24463 0.0260543 0.116303 -0.00733098 Vertex 24464 -0.0177227 0.119786 -0.0108098 Vertex 24465 -0.0202736 0.0966137 -0.0264451 Vertex 24466 0.0239731 0.061977 -0.0246362 Vertex 24467 -0.0437744 0.116579 -0.0153348 Vertex 24468 -0.032345 0.0473443 -0.0245628 Vertex 24469 -0.015124 0.037267 -0.0266656 Vertex 24470 -0.00946746 0.0362215 -0.025425 Vertex 24471 -0.0139288 0.0883705 -0.0380287 Vertex 24472 -0.0150862 0.116786 -0.0157023 Vertex 24473 -0.0118972 0.116803 -0.015741 Vertex 24474 -0.0353912 0.0475494 -0.0206462 Vertex 24475 0.0242032 0.0987613 -0.0205495 Vertex 24476 0.00882643 0.110931 -0.0195298 Vertex 24477 -0.00773224 0.109619 -0.0221011 Vertex 24478 0.0207016 0.113271 -0.0140876 Vertex 24479 0.0345802 0.103262 -0.0113359 Vertex 24480 -0.0205151 0.114503 -0.0172551 Vertex 24481 -0.0240368 0.11082 -0.0193477 Vertex 24482 0.024653 0.104647 -0.0168345 Vertex 24483 0.0358581 0.0995241 -0.0113664 Vertex 24484 0.0269849 0.113053 -0.00983991 Vertex 24485 0.0344847 0.0868408 -0.0179179 Vertex 24486 0.00658649 0.0945677 -0.0301242 Vertex 24487 0.0195371 0.122997 -0.00457304 Vertex 24488 -0.0215446 0.0942792 -0.0320343 Vertex 24489 -0.0422106 0.112435 -0.0169649 Vertex 24490 -0.0204271 0.0893191 -0.0369723 Vertex 24491 0.05068 0.0673838 0.000483718 Vertex 24492 -0.0110454 0.113378 -0.0180964 Vertex 24493 0.033847 0.106899 -0.00922375 Vertex 24494 -0.00248627 0.097432 -0.0292057 Vertex 24495 -0.0265042 0.106069 -0.02235 Vertex 24496 -0.0124244 0.108763 -0.0212047 Vertex 24497 -0.0434603 0.109995 -0.0184047 Vertex 24498 -0.0118501 0.11995 -0.013068 Vertex 24499 -0.00149557 0.0973426 -0.0290749 Vertex 24500 -0.0355869 0.116022 -0.0147547 Vertex 24501 0.0274527 0.103904 -0.0160338 Vertex 24502 -0.0197167 0.103079 -0.0233045 Vertex 24503 0.0126767 0.102031 -0.0220157 Vertex 24504 -0.0126802 0.0961728 -0.031918 Vertex 24505 0.0319522 0.103353 -0.0134365 Vertex 24506 -0.0610584 0.138406 -0.00654552 Vertex 24507 -0.00991099 0.115578 -0.0164445 Vertex 24508 -0.059075 0.137911 -0.00597298 Vertex 24509 -0.0581769 0.137607 -0.00562722 Vertex 24510 -0.057332 0.137224 -0.00518105 Vertex 24511 -0.0566099 0.136533 -0.00462162 Vertex 24512 -0.0557698 0.136063 -0.00393718 Vertex 24513 -0.0549779 0.135599 -0.00339213 Vertex 24514 -0.0540681 0.135339 -0.00310003 Vertex 24515 -0.0531399 0.13506 -0.0028018 Vertex 24516 -0.0523163 0.134709 -0.00240246 Vertex 24517 -0.0515105 0.13416 -0.00180112 Vertex 24518 -0.0507291 0.133637 -0.00121966 Vertex 24519 -0.04996 0.133052 -0.000571002 Vertex 24520 -0.0492462 0.132382 0.000177088 Vertex 24521 -0.0485603 0.131756 0.000870882 Vertex 24522 -0.0477652 0.131125 0.00158524 Vertex 24523 -0.0470088 0.130577 0.00217989 Vertex 24524 -0.046283 0.129949 0.00285861 Vertex 24525 -0.0411191 0.111396 -0.0179091 Vertex 24526 0.0211822 0.0909362 -0.0242734 Vertex 24527 0.0284604 0.079188 -0.0220838 Vertex 24528 0.0292759 0.0787271 -0.0215887 Vertex 24529 -0.0282259 0.115945 -0.0147131 Vertex 24530 0.0112963 0.123527 -0.00913288 Vertex 24531 0.00724714 0.123914 -0.00950504 Vertex 24532 -0.0191994 0.0907344 -0.0364225 Vertex 24533 0.0548584 0.0611516 -0.00113589 Vertex 24534 0.00622241 0.123988 -0.00957575 Vertex 24535 -0.00543271 0.0918052 -0.0353894 Vertex 24536 0.0204818 0.0854612 -0.0266087 Vertex 24537 -0.0208111 0.118967 -0.0119295 Vertex 24538 0.00224905 0.118538 -0.0156887 Vertex 24539 0.0474345 0.0682488 0.00159582 Vertex 24540 -0.0299927 0.0436118 -0.0290457 Vertex 24541 0.033292 0.0856433 -0.0187503 Vertex 24542 0.0485378 0.0682762 0.00156381 Vertex 24543 0.0496382 0.068363 0.00147832 Vertex 24544 -0.00364871 0.0982082 -0.0280452 Vertex 24545 -0.0245144 0.0945317 -0.028309 Vertex 24546 -0.0238067 0.0899629 -0.0356649 Vertex 24547 -0.0225227 0.0903335 -0.0360154 Vertex 24548 -0.0213902 0.0905176 -0.0361974 Vertex 24549 -0.00232624 0.124886 -0.00844394 Vertex 24550 0.0101685 0.124401 -0.00806495 Vertex 24551 0.00514071 0.12498 -0.00862525 Vertex 24552 -0.0313926 0.112895 -0.0174931 Vertex 24553 0.00655622 0.121628 -0.0130526 Vertex 24554 0.00961895 0.12141 -0.0128393 Vertex 24555 0.0222264 0.09191 -0.0233017 Vertex 24556 0.015055 0.123588 -0.00721903 Vertex 24557 -0.027235 0.0964545 -0.0242996 Vertex 24558 -0.0259964 0.0967524 -0.0245741 Vertex 24559 -0.0248989 0.0968475 -0.0246804 Vertex 24560 -0.02384 0.0968692 -0.0247025 Vertex 24561 -0.0227746 0.0968676 -0.024693 Vertex 24562 -0.0200728 0.100101 -0.0240875 Vertex 24563 -0.0216758 0.0969718 -0.024798 Vertex 24564 -0.0205392 0.0971418 -0.0249761 Vertex 24565 0.00286437 0.130486 0.00148286 Vertex 24566 0.00388853 0.130454 0.00153712 Vertex 24567 0.00495057 0.130435 0.00152594 Vertex 24568 0.00597686 0.130404 0.00157669 Vertex 24569 -0.0193476 0.0973552 -0.0251961 Vertex 24570 -0.0181652 0.097581 -0.0254283 Vertex 24571 -0.0170028 0.0977503 -0.0256286 Vertex 24572 -0.015856 0.0980295 -0.0258983 Vertex 24573 -0.0147843 0.0981951 -0.0260468 Vertex 24574 -0.0136152 0.0982979 -0.0261721 Vertex 24575 -0.0272212 0.114809 -0.0155223 Vertex 24576 0.0239484 0.0901184 -0.0234122 Vertex 24577 -0.0143101 0.113201 -0.0178955 Vertex 24578 0.00340822 0.117733 -0.0168392 Vertex 24579 -0.0498739 0.120141 -0.01301 Vertex 24580 0.0217161 0.119158 -0.00841047 Vertex 24581 -0.00056724 0.0909565 -0.0345037 Vertex 24582 0.0112159 0.0922395 -0.029689 Vertex 24583 0.01215 0.0919974 -0.0294248 Vertex 24584 -0.0162644 0.11453 -0.017303 Vertex 24585 -0.0124346 0.0985527 -0.0264295 Vertex 24586 -0.0356487 0.0352259 -0.0310792 Vertex 24587 -0.0113381 0.0986434 -0.0265191 Vertex 24588 0.00517588 0.113065 -0.0197995 Vertex 24589 -0.0102337 0.0987343 -0.0266102 Vertex 24590 -0.0237309 0.092173 -0.0338912 Vertex 24591 -0.0170398 0.124093 -0.00535053 Vertex 24592 -0.00425208 0.0941246 -0.0337645 Vertex 24593 0.0243112 0.0999667 -0.0198415 Vertex 24594 -0.00864132 0.0907031 -0.0362798 Vertex 24595 -0.0096598 0.0907753 -0.0363722 Vertex 24596 -0.010683 0.0908469 -0.0364652 Vertex 24597 -0.0117053 0.0909225 -0.0365538 Vertex 24598 -0.0585618 0.124728 -0.00774237 Vertex 24599 0.044724 0.0588042 -0.00496063 Vertex 24600 0.0346554 0.10439 -0.0105413 Vertex 24601 0.0187342 0.112585 -0.0153321 Vertex 24602 -0.0427254 0.0358312 -0.0275925 Vertex 24603 -0.0261657 0.11885 -0.0117616 Vertex 24604 -0.00913054 0.0987984 -0.026694 Vertex 24605 -0.00806953 0.0988363 -0.0267114 Vertex 24606 -0.0544997 0.117303 -0.0139925 Vertex 24607 -0.0533518 0.117447 -0.0141574 Vertex 24608 -0.00701023 0.0988653 -0.0267279 Vertex 24609 0.000901863 0.122026 -0.0113896 Vertex 24610 -0.00594641 0.0989148 -0.0267499 Vertex 24611 -0.000472926 0.0972534 -0.0289903 Vertex 24612 0.0250818 0.0983923 -0.0201688 Vertex 24613 0.0135498 0.109816 -0.0183273 Vertex 24614 -0.00484603 0.0989761 -0.0268273 Vertex 24615 -0.00385823 0.0988046 -0.0266644 Vertex 24616 0.0214753 0.11175 -0.0144217 Vertex 24617 -0.0262667 0.110544 -0.0190457 Vertex 24618 0.000515293 0.09714 -0.0288497 Vertex 24619 0.00149737 0.0969588 -0.0286791 Vertex 24620 -0.0588552 0.0351368 -0.0102919 Vertex 24621 -0.00279591 0.0988433 -0.0266823 Vertex 24622 -0.0203692 0.094546 -0.032294 Vertex 24623 -0.047644 0.121343 -0.0122933 Vertex 24624 0.0506634 0.0663167 -0.000433246 Vertex 24625 -0.0215596 0.0891328 -0.036783 Vertex 24626 -0.0109726 0.115573 -0.0164387 Vertex 24627 0.0330115 0.107346 -0.00970764 Vertex 24628 0.0321567 0.107734 -0.010124 Vertex 24629 0.0346775 0.106404 -0.00868031 Vertex 24630 -0.000194321 0.121911 -0.011267 Vertex 24631 -0.00177026 0.0987839 -0.0266092 Vertex 24632 0.0238471 0.107154 -0.0155051 Vertex 24633 -0.0209519 0.121676 -0.0087885 Vertex 24634 0.0252655 0.0864752 -0.0236184 Vertex 24635 -0.000747471 0.0987058 -0.0265343 Vertex 24636 0.0303577 0.105377 -0.0136057 Vertex 24637 0.0361287 0.085855 -0.0169039 Vertex 24638 0.0400974 0.0943736 -0.00783899 Vertex 24639 0.0393164 0.0948581 -0.00836399 Vertex 24640 0.0311086 0.103751 -0.0138751 Vertex 24641 -0.0178575 0.122517 -0.00769635 Vertex 24642 -0.0115598 0.09531 -0.0330219 Vertex 24643 -0.00884754 0.115581 -0.0164541 Vertex 24644 -0.0469304 0.116649 -0.0154073 Vertex 24645 -0.0629114 0.115341 -0.0117985 Vertex 24646 -0.0499193 0.118992 -0.0138138 Vertex 24647 -0.0568117 0.135044 -0.00489316 Vertex 24648 -0.0559722 0.134715 -0.00446003 Vertex 24649 -0.0550791 0.134447 -0.00412579 Vertex 24650 -0.0541367 0.13422 -0.00388726 Vertex 24651 -0.0532128 0.133944 -0.00360453 Vertex 24652 -0.0523718 0.133555 -0.00317026 Vertex 24653 -0.051575 0.132941 -0.0025104 Vertex 24654 -0.050788 0.13247 -0.00197537 Vertex 24655 -0.0500202 0.131989 -0.0014354 Vertex 24656 -0.049291 0.131272 -0.000642386 Vertex 24657 -0.0485361 0.130681 1.6802e-05 Vertex 24658 -0.0477691 0.130137 0.000614804 Vertex 24659 -0.0470115 0.129603 0.00120357 Vertex 24660 -0.0461097 0.129234 0.00159921 Vertex 24661 -0.0451771 0.128971 0.00184527 Vertex 24662 0.00023463 0.0985537 -0.0263753 Vertex 24663 0.00118569 0.0983354 -0.0261952 Vertex 24664 0.00218868 0.098191 -0.0260404 Vertex 24665 0.0271866 0.0819517 -0.0229154 Vertex 24666 0.0264267 0.0824949 -0.0235141 Vertex 24667 0.0256492 0.0831048 -0.024123 Vertex 24668 0.0248383 0.0835695 -0.0246296 Vertex 24669 0.0239781 0.084017 -0.0250643 Vertex 24670 0.0231411 0.0844685 -0.0255261 Vertex 24671 0.0222475 0.0847573 -0.0259093 Vertex 24672 0.0196024 0.0858351 -0.0269873 Vertex 24673 0.0187338 0.0862153 -0.0273821 Vertex 24674 0.0179038 0.0866718 -0.0278625 Vertex 24675 0.0463736 0.0682111 0.00160519 Vertex 24676 0.0105421 0.118176 -0.0153416 Vertex 24677 0.00317805 0.0980649 -0.0258881 Vertex 24678 0.00413641 0.0979047 -0.0256761 Vertex 24679 -0.0190093 0.100114 -0.02409 Vertex 24680 0.0408836 0.0614281 -0.00367417 Vertex 24681 0.0102589 0.100444 -0.0223447 Vertex 24682 0.031034 0.0964814 -0.0161287 Vertex 24683 0.00516194 0.0978455 -0.0256065 Vertex 24684 -0.0179474 0.100123 -0.0240926 Vertex 24685 -0.0185092 0.127137 0.00354165 Vertex 24686 -0.0168818 0.100112 -0.0240537 Vertex 24687 -0.0161125 0.127667 0.00290411 Vertex 24688 -0.0149347 0.127911 0.00262222 Vertex 24689 -0.0137571 0.128142 0.00234571 Vertex 24690 -0.0125367 0.128434 0.00198737 Vertex 24691 -0.0113995 0.128605 0.00179072 Vertex 24692 -0.0102615 0.128766 0.00159795 Vertex 24693 -0.00902947 0.129018 0.00125187 Vertex 24694 -0.00789583 0.129197 0.00105287 Vertex 24695 -0.00680153 0.129324 0.00093339 Vertex 24696 -0.00565778 0.12946 0.000751082 Vertex 24697 -0.00451438 0.1296 0.000561158 Vertex 24698 -0.00341476 0.129699 0.000449344 Vertex 24699 -0.00231448 0.129778 0.000344647 Vertex 24700 -0.00121026 0.129846 0.000241032 Vertex 24701 -0.000107958 0.12991 0.000141982 Vertex 24702 0.000950727 0.129943 0.000110463 Vertex 24703 0.00205693 0.129985 1.8398e-05 Vertex 24704 0.00312017 0.129984 5.00643e-07 Vertex 24705 0.00414244 0.129952 4.9397e-05 Vertex 24706 0.00520505 0.129939 3.61829e-05 Vertex 24707 0.00623037 0.129867 0.000104943 Vertex 24708 0.00725591 0.129807 0.000165614 Vertex 24709 0.00824452 0.129671 0.000311795 Vertex 24710 0.00926262 0.129557 0.000393265 Vertex 24711 0.0102193 0.129407 0.000604352 Vertex 24712 0.0112062 0.129253 0.000760937 Vertex 24713 0.00613975 0.0976727 -0.0254362 Vertex 24714 0.00712802 0.0975509 -0.0252935 Vertex 24715 0.00806894 0.0972917 -0.0250353 Vertex 24716 0.00905498 0.0971664 -0.0248901 Vertex 24717 0.0442629 0.0672699 0.000591455 Vertex 24718 0.010042 0.0970288 -0.0247384 Vertex 24719 -0.0427898 0.116428 -0.015168 Vertex 24720 0.0157473 0.0947545 -0.0243195 Vertex 24721 0.0188415 0.121733 -0.00718615 Vertex 24722 0.0130281 0.0916311 -0.029044 Vertex 24723 0.0139221 0.0913152 -0.0287052 Vertex 24724 0.00251855 0.096887 -0.0286022 Vertex 24725 -0.0369639 0.0346855 -0.0305537 Vertex 24726 0.0334736 0.0940135 -0.0155006 Vertex 24727 -0.00425848 0.0961384 -0.0318255 Vertex 24728 0.0282492 0.102359 -0.0164093 Vertex 24729 0.0189212 0.0875932 -0.0268145 Vertex 24730 -0.0343564 0.043282 -0.028737 Vertex 24731 -0.0135985 0.108507 -0.0209218 Vertex 24732 0.0277597 0.0984362 -0.0181936 Vertex 24733 0.0334725 0.0950337 -0.0145821 Vertex 24734 0.0383601 0.0921445 -0.0115002 Vertex 24735 -0.0153553 0.112218 -0.0188504 Vertex 24736 -0.0127292 0.0909963 -0.036642 Vertex 24737 -0.0137194 0.091107 -0.0367438 Vertex 24738 0.0458379 0.0588925 -0.00503856 Vertex 24739 0.0469104 0.0589185 -0.00506663 Vertex 24740 0.0479414 0.0588591 -0.00500215 Vertex 24741 0.000924532 0.100829 -0.0227814 Vertex 24742 -0.036643 0.118048 -0.0128637 Vertex 24743 0.0110282 0.0968851 -0.0245853 Vertex 24744 0.0278568 0.0643129 -0.0209613 Vertex 24745 0.0197906 0.106497 -0.0168156 Vertex 24746 -0.0159391 0.0999021 -0.023843 Vertex 24747 -0.0109132 0.103533 -0.0236899 Vertex 24748 0.0321886 0.108821 -0.00928902 Vertex 24749 0.0268148 0.0976356 -0.019356 Vertex 24750 -0.0455367 0.111121 -0.0175743 Vertex 24751 -0.069981 0.180634 -0.0574865 Vertex 24752 -0.068804 0.18096 -0.0579804 Vertex 24753 -0.0590849 0.0644137 0.0318252 Vertex 24754 0.0120082 0.0967361 -0.024421 Vertex 24755 0.0130231 0.0965172 -0.0241956 Vertex 24756 0.0177346 0.123618 -0.0052308 Vertex 24757 0.00096833 0.121103 -0.0124156 Vertex 24758 -0.0506063 0.0369029 -0.0119734 Vertex 24759 -0.0528683 0.0367334 -0.0118941 Vertex 24760 -0.0546435 0.116042 -0.0146857 Vertex 24761 -0.0149615 0.0883672 -0.0380383 Vertex 24762 -0.0413386 0.121239 -0.0122322 Vertex 24763 0.0325508 0.115423 -0.000329209 Vertex 24764 -0.0321931 0.123411 -0.0044713 Vertex 24765 0.0162777 0.117973 -0.0131407 Vertex 24766 0.0218218 0.116393 -0.0114503 Vertex 24767 -0.0358361 0.11045 -0.0189078 Vertex 24768 -0.0145896 0.101524 -0.0235873 Vertex 24769 -0.033458 0.0353739 -0.0310204 Vertex 24770 -0.0345638 0.113971 -0.0166195 Vertex 24771 0.0368805 0.101462 -0.00941022 Vertex 24772 0.00429457 0.122356 -0.0118056 Vertex 24773 0.00350354 0.0967589 -0.0284524 Vertex 24774 -0.020574 0.115387 -0.0161841 Vertex 24775 -0.0239808 0.0936155 -0.0313592 Vertex 24776 0.0408829 0.0937805 -0.00720194 Vertex 24777 0.029367 0.1045 -0.0146741 Vertex 24778 0.0302694 0.104198 -0.014346 Vertex 24779 0.0202805 0.12337 -0.00295598 Vertex 24780 0.0535789 0.0658041 0.000119664 Vertex 24781 -0.00774122 0.115628 -0.0165086 Vertex 24782 -0.0480268 0.116533 -0.0152488 Vertex 24783 -0.0616004 0.115786 -0.012288 Vertex 24784 -0.0510158 0.118895 -0.0136999 Vertex 24785 -0.0570055 0.133804 -0.00545801 Vertex 24786 -0.0561028 0.133503 -0.00512832 Vertex 24787 -0.0551811 0.133216 -0.00483226 Vertex 24788 -0.054238 0.13299 -0.00459005 Vertex 24789 -0.0533273 0.132699 -0.00427378 Vertex 24790 -0.0524826 0.132311 -0.00383544 Vertex 24791 -0.0516987 0.131736 -0.00321408 Vertex 24792 -0.0509379 0.131197 -0.00260501 Vertex 24793 -0.0501411 0.130626 -0.00198394 Vertex 24794 -0.0493632 0.1301 -0.00139208 Vertex 24795 -0.0485551 0.129676 -0.000935313 Vertex 24796 -0.0477832 0.129154 -0.000397631 Vertex 24797 -0.0468263 0.128888 -6.3255e-05 Vertex 24798 -0.0458642 0.128671 0.00011454 Vertex 24799 -0.0448731 0.128505 0.000263047 Vertex 24800 -0.0428482 0.128274 0.00047704 Vertex 24801 0.0139014 0.0962996 -0.0239693 Vertex 24802 -0.0149561 0.0997734 -0.0237179 Vertex 24803 0.0302841 0.11623 -0.00325108 Vertex 24804 -0.0329956 0.122915 -0.00595413 Vertex 24805 -0.0338857 0.12324 -0.00632922 Vertex 24806 -0.0138967 0.099791 -0.0237429 Vertex 24807 -0.0365883 0.0485443 -0.0138981 Vertex 24808 -0.0482812 0.115062 -0.0157267 Vertex 24809 -0.010796 0.120869 -0.0120713 Vertex 24810 0.0158804 0.124131 -0.00578699 Vertex 24811 0.0148643 0.0961115 -0.0237665 Vertex 24812 0.0170669 0.0871276 -0.028336 Vertex 24813 0.0162564 0.0875946 -0.0288434 Vertex 24814 0.0145599 0.088488 -0.0297413 Vertex 24815 0.0137018 0.0888713 -0.0301465 Vertex 24816 0.0485408 0.0662379 -0.000364329 Vertex 24817 -0.017323 0.112508 -0.01916 Vertex 24818 0.0158504 0.0959717 -0.0236278 Vertex 24819 -0.0205455 0.126353 0.00242085 Vertex 24820 -0.0193661 0.126578 0.00214409 Vertex 24821 -0.0181782 0.126773 0.00187925 Vertex 24822 -0.0170034 0.127025 0.0015954 Vertex 24823 -0.0158277 0.127263 0.00131837 Vertex 24824 -0.0146006 0.127548 0.000963555 Vertex 24825 -0.0134774 0.127753 0.000758007 Vertex 24826 -0.0122454 0.128019 0.000407111 Vertex 24827 -0.0110606 0.128229 0.000136123 Vertex 24828 -0.00992638 0.128404 -5.81123e-05 Vertex 24829 -0.00874133 0.128614 -0.000328304 Vertex 24830 -0.00760577 0.128788 -0.000526473 Vertex 24831 -0.0064667 0.128955 -0.000718006 Vertex 24832 -0.00536465 0.129031 -0.000823415 Vertex 24833 -0.00426203 0.129106 -0.000929037 Vertex 24834 -0.00316211 0.129199 -0.00103699 Vertex 24835 -0.00205946 0.129266 -0.00113907 Vertex 24836 -0.000994561 0.129288 -0.0011666 Vertex 24837 6.3531e-05 0.129314 -0.00119744 Vertex 24838 0.00116984 0.129366 -0.00128907 Vertex 24839 0.00223085 0.129379 -0.00131325 Vertex 24840 0.00329475 0.129383 -0.00133175 Vertex 24841 0.00435827 0.129372 -0.0013469 Vertex 24842 0.00542168 0.12935 -0.00135496 Vertex 24843 0.00644358 0.129282 -0.00129108 Vertex 24844 0.0074706 0.129229 -0.00123166 Vertex 24845 0.00845802 0.129083 -0.00108013 Vertex 24846 0.00944326 0.128939 -0.000930002 Vertex 24847 0.0104303 0.128801 -0.000781749 Vertex 24848 0.0114155 0.128646 -0.000626619 Vertex 24849 0.0133357 0.128238 -0.000223601 Vertex 24850 0.0142482 0.127965 9.03059e-05 Vertex 24851 0.01519 0.127729 0.000331934 Vertex 24852 0.0178585 0.0957539 -0.0234025 Vertex 24853 0.018845 0.0956057 -0.0232473 Vertex 24854 0.0198113 0.0954368 -0.0230239 Vertex 24855 -0.0476607 0.120291 -0.0131944 Vertex 24856 0.018169 0.108481 -0.0169141 Vertex 24857 -0.0187755 0.107692 -0.0220397 Vertex 24858 -0.0178239 0.107521 -0.0218927 Vertex 24859 0.0147945 0.0909396 -0.0283095 Vertex 24860 0.0156162 0.0904755 -0.0278196 Vertex 24861 0.0164575 0.0900289 -0.0273543 Vertex 24862 -0.0273656 0.0360131 -0.0296152 Vertex 24863 -0.0251564 0.113713 -0.0163747 Vertex 24864 0.00329134 0.119473 -0.0147093 Vertex 24865 0.0207029 0.0950845 -0.0226908 Vertex 24866 0.00451899 0.0966593 -0.0283637 Vertex 24867 0.00547344 0.0964656 -0.0281399 Vertex 24868 -0.0356538 0.120932 -0.00987931 Vertex 24869 0.0260546 0.112325 -0.0110571 Vertex 24870 0.00361131 0.0929227 -0.0324448 Vertex 24871 0.0110249 0.0988999 -0.0227192 Vertex 24872 -0.0148238 0.091051 -0.0367095 Vertex 24873 -0.0158845 0.0910066 -0.0366604 Vertex 24874 -0.016949 0.0909918 -0.0366612 Vertex 24875 0.0161005 0.115637 -0.0146217 Vertex 24876 0.0189716 0.115037 -0.0139804 Vertex 24877 0.0180337 0.115273 -0.0142355 Vertex 24878 0.00492538 0.111581 -0.020193 Vertex 24879 0.021637 0.0948486 -0.0224193 Vertex 24880 0.0225812 0.0946281 -0.0221802 Vertex 24881 0.0235231 0.0943993 -0.0219282 Vertex 24882 -0.0579369 0.119806 -0.0105246 Vertex 24883 0.00641604 0.0962346 -0.0278978 Vertex 24884 0.0244608 0.0941673 -0.021671 Vertex 24885 -0.0388567 0.0985732 -0.0220835 Vertex 24886 0.025374 0.0938744 -0.0213667 Vertex 24887 0.0262833 0.0935743 -0.0210485 Vertex 24888 -0.0127135 0.100022 -0.0239701 Vertex 24889 0.0271589 0.093209 -0.0206672 Vertex 24890 0.0280428 0.0928381 -0.0202889 Vertex 24891 -0.0576422 0.035457 -0.0105994 Vertex 24892 -0.0517405 0.0367791 -0.0118947 Vertex 24893 0.0151848 0.115917 -0.0149184 Vertex 24894 -0.0455924 0.119193 -0.014062 Vertex 24895 -0.0445311 0.119183 -0.0140568 Vertex 24896 0.0125549 0.119968 -0.0132874 Vertex 24897 -0.0347118 0.121713 -0.00868145 Vertex 24898 0.0172187 0.117738 -0.0128881 Vertex 24899 0.0158369 0.105055 -0.0192576 Vertex 24900 0.0250684 0.0912521 -0.0226015 Vertex 24901 -0.0273763 0.112504 -0.0170987 Vertex 24902 -0.0347751 0.123588 -0.00668109 Vertex 24903 0.0285181 0.0968051 -0.0184722 Vertex 24904 0.0361358 0.102075 -0.0100705 Vertex 24905 -0.0346988 0.120729 -0.0096591 Vertex 24906 0.0288984 0.0924492 -0.0198656 Vertex 24907 -0.0008153 0.10869 -0.0211159 Vertex 24908 -0.02276 0.093942 -0.0316991 Vertex 24909 0.0275305 0.105074 -0.0152759 Vertex 24910 0.0284509 0.104793 -0.0149826 Vertex 24911 0.0248931 0.108132 -0.0145556 Vertex 24912 0.0239203 0.108291 -0.0147313 Vertex 24913 -0.0545694 0.124267 -0.00721739 Vertex 24914 -0.0101883 0.0876449 -0.0371912 Vertex 24915 -0.0491724 0.116402 -0.0151155 Vertex 24916 -0.00337868 0.117905 -0.0149619 Vertex 24917 -0.0522091 0.118697 -0.0134778 Vertex 24918 -0.0571873 0.13241 -0.00599886 Vertex 24919 -0.056282 0.132113 -0.00567386 Vertex 24920 -0.0553709 0.131821 -0.00535733 Vertex 24921 -0.0544374 0.131586 -0.00508481 Vertex 24922 -0.053528 0.131291 -0.0047694 Vertex 24923 -0.0526724 0.130856 -0.00431281 Vertex 24924 -0.0518913 0.130385 -0.00375074 Vertex 24925 -0.0511061 0.129858 -0.00316533 Vertex 24926 -0.0502789 0.129408 -0.00267456 Vertex 24927 -0.0494252 0.12902 -0.00225187 Vertex 24928 -0.0485794 0.128753 -0.00187037 Vertex 24929 -0.0475118 0.128596 -0.00180437 Vertex 24930 -0.046566 0.128368 -0.00156221 Vertex 24931 -0.0455856 0.128182 -0.00140207 Vertex 24932 -0.0445637 0.128075 -0.00132731 Vertex 24933 -0.0435747 0.127942 -0.00117905 Vertex 24934 -0.0425517 0.127843 -0.00110505 Vertex 24935 -0.0415307 0.127763 -0.00103989 Vertex 24936 0.0297749 0.0920783 -0.0194766 Vertex 24937 0.0137354 0.10206 -0.0220537 Vertex 24938 0.0147972 0.102084 -0.0220848 Vertex 24939 -0.0132881 0.113144 -0.01784 Vertex 24940 0.00434751 0.121547 -0.0129175 Vertex 24941 -0.048763 0.120209 -0.0131018 Vertex 24942 0.0226361 0.118891 -0.00814073 Vertex 24943 -0.00225576 0.119004 -0.0141489 Vertex 24944 0.0190773 0.108184 -0.0165978 Vertex 24945 0.0139163 0.0953242 -0.0249235 Vertex 24946 0.03067 0.0917687 -0.019137 Vertex 24947 0.0315757 0.0914687 -0.0188156 Vertex 24948 0.032458 0.0910982 -0.0184345 Vertex 24949 0.0332508 0.0906175 -0.0178979 Vertex 24950 0.00284082 0.0994342 -0.0233056 Vertex 24951 0.0340749 0.0901032 -0.0173771 Vertex 24952 -0.0225249 0.125571 0.0012278 Vertex 24953 -0.0213885 0.125739 0.00103732 Vertex 24954 -0.0202523 0.125914 0.000840735 Vertex 24955 -0.0190696 0.126125 0.000571573 Vertex 24956 -0.0179367 0.12631 0.000372783 Vertex 24957 -0.0167051 0.126576 2.44266e-05 Vertex 24958 -0.0155312 0.126827 -0.00025822 Vertex 24959 -0.0143122 0.127128 -0.000614565 Vertex 24960 -0.0131413 0.127389 -0.000900164 Vertex 24961 -0.0119496 0.127575 -0.00116297 Vertex 24962 -0.0107692 0.1278 -0.0014358 Vertex 24963 -0.0095857 0.128017 -0.00170998 Vertex 24964 -0.00844614 0.128164 -0.00189615 Vertex 24965 -0.00730789 0.12834 -0.00208974 Vertex 24966 -0.00617179 0.128513 -0.00228639 Vertex 24967 -0.00507021 0.128586 -0.00238902 Vertex 24968 -0.00396533 0.128634 -0.00247998 Vertex 24969 -0.00290701 0.128667 -0.00250924 Vertex 24970 -0.00184307 0.128669 -0.00252946 Vertex 24971 -0.000820873 0.128641 -0.00248283 Vertex 24972 0.000242427 0.128645 -0.00250259 Vertex 24973 0.00130397 0.128647 -0.00252095 Vertex 24974 0.00236523 0.128663 -0.00254763 Vertex 24975 0.00347146 0.128699 -0.00262952 Vertex 24976 0.00453562 0.128718 -0.00265628 Vertex 24977 0.00559724 0.128727 -0.00267638 Vertex 24978 0.00662363 0.128671 -0.00261559 Vertex 24979 0.00764804 0.128583 -0.00254334 Vertex 24980 0.00863241 0.128438 -0.00238911 Vertex 24981 0.00964716 0.128306 -0.00229994 Vertex 24982 0.0106046 0.128135 -0.0020835 Vertex 24983 0.0115865 0.127977 -0.0019288 Vertex 24984 0.0125362 0.127772 -0.00169738 Vertex 24985 0.013481 0.127543 -0.00145794 Vertex 24986 0.0144241 0.127312 -0.00121761 Vertex 24987 0.0153381 0.127037 -0.000904662 Vertex 24988 0.0162787 0.126801 -0.0006607 Vertex 24989 0.0171824 0.126495 -0.000336309 Vertex 24990 0.0180905 0.1262 -1.26099e-05 Vertex 24991 0.0189956 0.125897 0.000310264 Vertex 24992 0.0349262 0.0896582 -0.0169179 Vertex 24993 0.0357614 0.089262 -0.0164786 Vertex 24994 0.036558 0.0887304 -0.0159156 Vertex 24995 0.0216927 0.103078 -0.0191449 Vertex 24996 -0.064123 0.113942 -0.0123233 Vertex 24997 -0.0184671 0.10319 -0.0232847 Vertex 24998 0.000833787 0.106762 -0.0210825 Vertex 24999 0.0173609 0.0897252 -0.0270298 Vertex 25000 0.0182378 0.0893522 -0.0266421 Vertex 25001 0.0297429 0.112241 -0.00897067 Vertex 25002 0.0185485 0.111232 -0.0158588 Vertex 25003 0.0373159 0.0880544 -0.0152271 Vertex 25004 0.0304209 0.0460912 -0.00653037 Vertex 25005 0.0251595 0.0995713 -0.0194056 Vertex 25006 0.0285895 0.0979793 -0.017709 Vertex 25007 0.0343206 0.094597 -0.0141158 Vertex 25008 -0.0186858 0.118957 -0.0119398 Vertex 25009 -0.0208502 0.120881 -0.00994613 Vertex 25010 -0.0521458 0.121812 -0.0107191 Vertex 25011 -0.0208303 0.119929 -0.0109428 Vertex 25012 -0.0557051 0.12209 -0.00891575 Vertex 25013 -0.0180555 0.0909221 -0.0366017 Vertex 25014 -0.0250035 0.0896 -0.0352857 Vertex 25015 -0.0486801 0.12235 -0.0113455 Vertex 25016 -0.0522074 0.122732 -0.00965468 Vertex 25017 -0.0592051 0.0411249 -0.00803844 Vertex 25018 -0.00834994 0.0943471 -0.0340215 Vertex 25019 -0.0312226 0.0367355 -0.0304453 Vertex 25020 0.0389262 0.103315 -0.00332456 Vertex 25021 -0.0411413 0.0364371 -0.0278037 Vertex 25022 0.00735928 0.0960033 -0.0276522 Vertex 25023 0.0296818 0.0815643 -0.0205093 Vertex 25024 0.00465961 0.0959425 -0.0295932 Vertex 25025 0.0108274 0.0362708 -0.0225637 Vertex 25026 -0.0652676 0.179645 -0.0602668 Vertex 25027 -0.0643001 0.179479 -0.0601392 Vertex 25028 -0.0115711 0.100192 -0.0241483 Vertex 25029 0.0436089 0.0680569 -0.000247417 Vertex 25030 -0.0494703 0.0370271 -0.0120635 Vertex 25031 -0.036233 0.0469115 -0.0220883 Vertex 25032 -0.000110081 0.106984 -0.0213197 Vertex 25033 0.0260337 0.0639191 -0.0225668 Vertex 25034 0.0343613 0.111866 -0.00251995 Vertex 25035 0.0190672 0.117213 -0.0123322 Vertex 25036 -0.00991212 0.111561 -0.0201766 Vertex 25037 -0.0240588 0.111793 -0.0183639 Vertex 25038 -0.0283604 0.112635 -0.0172343 Vertex 25039 0.00642086 0.116423 -0.0174422 Vertex 25040 0.0317917 0.0949031 -0.0164462 Vertex 25041 0.015852 0.106086 -0.0183494 Vertex 25042 -0.0221856 0.122325 -0.00745001 Vertex 25043 0.0444641 0.0686626 0.00115575 Vertex 25044 0.0256926 0.105619 -0.0158649 Vertex 25045 0.0247455 0.105845 -0.0161092 Vertex 25046 0.0266028 0.105322 -0.0155495 Vertex 25047 0.0267717 0.107644 -0.0140409 Vertex 25048 0.025846 0.107916 -0.0143268 Vertex 25049 0.00569987 0.0949071 -0.0304911 Vertex 25050 0.0183426 0.0906063 -0.0259275 Vertex 25051 0.023348 0.0930459 -0.0224955 Vertex 25052 -0.050194 0.116459 -0.0151638 Vertex 25053 -0.00223434 0.118045 -0.0151238 Vertex 25054 -0.0533008 0.118582 -0.0133417 Vertex 25055 -0.0250193 0.118984 -0.0119284 Vertex 25056 -0.0262613 0.119664 -0.0106051 Vertex 25057 0.0162217 0.120841 -0.0102336 Vertex 25058 0.0391665 0.0916193 -0.0109453 Vertex 25059 -0.0328255 0.12127 -0.00820532 Vertex 25060 -0.0539191 0.129665 -0.00510771 Vertex 25061 -0.052947 0.1293 -0.00466978 Vertex 25062 -0.0521339 0.128852 -0.00413976 Vertex 25063 -0.0512593 0.128575 -0.00377835 Vertex 25064 -0.0503624 0.128323 -0.00347306 Vertex 25065 -0.0493523 0.128134 -0.0033313 Vertex 25066 -0.0483231 0.128062 -0.00327126 Vertex 25067 -0.0472913 0.128011 -0.00322004 Vertex 25068 -0.0462686 0.12794 -0.00315273 Vertex 25069 -0.0453217 0.127718 -0.00291517 Vertex 25070 -0.0442655 0.127665 -0.00291939 Vertex 25071 -0.0432796 0.127517 -0.00276726 Vertex 25072 -0.0422556 0.127428 -0.00269381 Vertex 25073 -0.0412715 0.127285 -0.00254236 Vertex 25074 -0.0402517 0.127178 -0.0024642 Vertex 25075 -0.0392699 0.127033 -0.00231305 Vertex 25076 -0.0382901 0.126893 -0.00216373 Vertex 25077 -0.0542618 0.0348321 -0.0120282 Vertex 25078 -0.0213445 0.0916844 -0.035421 Vertex 25079 0.0504568 0.0627892 -0.00292241 Vertex 25080 0.0111209 0.0908234 -0.0303895 Vertex 25081 -0.0179551 0.0921164 -0.0358084 Vertex 25082 -0.0104704 0.100279 -0.0242341 Vertex 25083 -0.00317446 0.0951663 -0.0328247 Vertex 25084 0.0235092 0.118527 -0.00774096 Vertex 25085 0.0450165 0.0718833 0.00186291 Vertex 25086 -0.0289733 0.124361 0.000543811 Vertex 25087 -0.0268485 0.124528 0.000469072 Vertex 25088 0.0456137 0.0708816 0.00289794 Vertex 25089 0.0463647 0.0703187 0.00350637 Vertex 25090 0.0474231 0.0702463 0.00356979 Vertex 25091 -0.0222312 0.125137 -0.000350139 Vertex 25092 -0.0210951 0.12531 -0.000542597 Vertex 25093 -0.0199595 0.125484 -0.000738697 Vertex 25094 -0.0187649 0.125661 -0.000995534 Vertex 25095 -0.0176337 0.125847 -0.00119502 Vertex 25096 -0.0165061 0.126041 -0.00139683 Vertex 25097 -0.0152817 0.126335 -0.00175389 Vertex 25098 -0.0140554 0.126614 -0.00210251 Vertex 25099 -0.0128819 0.126866 -0.00238505 Vertex 25100 -0.0116556 0.127143 -0.00273206 Vertex 25101 -0.0104754 0.127368 -0.00300647 Vertex 25102 -0.00933623 0.127529 -0.00319765 Vertex 25103 -0.00815144 0.127733 -0.00346398 Vertex 25104 -0.00705924 0.127865 -0.00358478 Vertex 25105 -0.00591514 0.12799 -0.00376372 Vertex 25106 -0.00481374 0.128076 -0.00386981 Vertex 25107 -0.00375231 0.128091 -0.0038931 Vertex 25108 -0.00268972 0.128069 -0.00389854 Vertex 25109 -0.00166671 0.12799 -0.00382866 Vertex 25110 -0.000643212 0.127926 -0.00376413 Vertex 25111 0.000379078 0.127909 -0.00372478 Vertex 25112 0.00144018 0.127924 -0.00374837 Vertex 25113 0.00254476 0.127971 -0.00383507 Vertex 25114 0.00364827 0.128043 -0.00393793 Vertex 25115 0.00470729 0.128083 -0.0039713 Vertex 25116 0.0057745 0.128094 -0.00399317 Vertex 25117 0.00679871 0.128004 -0.00391746 Vertex 25118 0.00782186 0.127915 -0.00384433 Vertex 25119 0.00880995 0.127795 -0.00370552 Vertex 25120 0.00979123 0.127622 -0.00353983 Vertex 25121 0.0107457 0.127435 -0.00331768 Vertex 25122 0.0117235 0.127254 -0.00315056 Vertex 25123 0.0126717 0.127043 -0.00291981 Vertex 25124 0.0136156 0.126814 -0.00267762 Vertex 25125 0.0145549 0.126574 -0.00243153 Vertex 25126 0.0154742 0.126309 -0.00212525 Vertex 25127 0.0164098 0.126062 -0.00187701 Vertex 25128 0.0173223 0.125777 -0.00156033 Vertex 25129 0.0182274 0.125477 -0.00123802 Vertex 25130 0.0191385 0.125192 -0.000918824 Vertex 25131 0.0200495 0.124902 -0.000599563 Vertex 25132 0.0209425 0.124573 -0.000263497 Vertex 25133 0.021809 0.1242 0.000142479 Vertex 25134 0.0484547 0.0702338 0.00359645 Vertex 25135 -0.0274342 0.111364 -0.0178958 Vertex 25136 -0.00940844 0.100291 -0.0242411 Vertex 25137 0.0222184 0.122028 -0.00352468 Vertex 25138 0.00208806 0.113117 -0.0199282 Vertex 25139 0.0120479 0.124912 -0.00663019 Vertex 25140 0.0191089 0.0889764 -0.0262512 Vertex 25141 0.0199779 0.0885978 -0.0258535 Vertex 25142 0.0208421 0.0882147 -0.0254487 Vertex 25143 0.0559048 0.0631077 0.000905369 Vertex 25144 0.0551275 0.0637038 0.000299703 Vertex 25145 0.054323 0.064171 -0.000208879 Vertex 25146 0.0534729 0.0645627 -0.000631784 Vertex 25147 0.0375648 0.0926236 -0.0120119 Vertex 25148 0.0044338 0.117686 -0.0167913 Vertex 25149 -0.0239399 0.118058 -0.0129545 Vertex 25150 -0.0444709 0.120321 -0.0132547 Vertex 25151 -0.0498484 0.121182 -0.0121 Vertex 25152 0.00834665 0.0958673 -0.0275066 Vertex 25153 0.0260213 0.111246 -0.0119 Vertex 25154 -0.0386362 0.117281 -0.0140679 Vertex 25155 0.0495547 0.0702574 0.0035522 Vertex 25156 -0.0321381 0.0435397 -0.0289857 Vertex 25157 -0.0530949 0.0350628 -0.012244 Vertex 25158 0.0392717 0.0938049 -0.00924672 Vertex 25159 -0.04015 0.0473434 -0.014266 Vertex 25160 0.0286979 0.0806527 -0.0216026 Vertex 25161 -0.0514799 0.0384723 -0.0115832 Vertex 25162 -0.0388092 0.0372561 -0.0289196 Vertex 25163 0.00929494 0.0956507 -0.0272714 Vertex 25164 0.0337894 0.103744 -0.0118635 Vertex 25165 0.0506567 0.0703381 0.00346635 Vertex 25166 -0.0633934 0.178218 -0.0607118 Vertex 25167 -0.0625478 0.177823 -0.0603383 Vertex 25168 0.0516782 0.0702939 0.00352664 Vertex 25169 0.0526995 0.0702438 0.0035897 Vertex 25170 0.0537172 0.0701657 0.00367339 Vertex 25171 0.0375184 0.0915609 -0.0128884 Vertex 25172 -0.0285693 0.0399846 -0.0296196 Vertex 25173 0.026836 0.0634537 -0.0220606 Vertex 25174 0.0175747 0.0931801 -0.024649 Vertex 25175 -0.0110657 0.112343 -0.0190003 Vertex 25176 0.0450408 0.0625178 -0.00265494 Vertex 25177 -0.0293428 0.112771 -0.0173776 Vertex 25178 -0.0303664 0.112853 -0.0174686 Vertex 25179 0.0343018 0.0936044 -0.01506 Vertex 25180 0.0329891 0.10525 -0.0114692 Vertex 25181 -0.0442438 0.113637 -0.0162318 Vertex 25182 0.0312687 0.106096 -0.0123707 Vertex 25183 0.0303748 0.106409 -0.0127112 Vertex 25184 0.0294673 0.106706 -0.01303 Vertex 25185 0.0285796 0.107031 -0.0133812 Vertex 25186 0.0276786 0.107363 -0.0137282 Vertex 25187 0.0205346 0.0937418 -0.0232686 Vertex 25188 -0.00851004 0.0960786 -0.0317903 Vertex 25189 0.0130461 0.106823 -0.0191157 Vertex 25190 0.014824 0.0950266 -0.0246047 Vertex 25191 -0.0512523 0.116429 -0.0151143 Vertex 25192 -0.00109974 0.118227 -0.0153259 Vertex 25193 -0.0544418 0.118427 -0.0131672 Vertex 25194 -0.0239631 0.11903 -0.0119726 Vertex 25195 -0.0273659 0.119585 -0.010507 Vertex 25196 0.0171004 0.120495 -0.00987579 Vertex 25197 0.00293844 0.100629 -0.0225769 Vertex 25198 -0.0318098 0.121167 -0.00811427 Vertex 25199 -0.0541413 0.128093 -0.005327 Vertex 25200 -0.0532414 0.127751 -0.00500041 Vertex 25201 -0.0522937 0.12758 -0.00475935 Vertex 25202 -0.0512719 0.127504 -0.00467957 Vertex 25203 -0.0502577 0.127427 -0.00458948 Vertex 25204 -0.0492021 0.127407 -0.00458885 Vertex 25205 -0.0481783 0.127343 -0.00452632 Vertex 25206 -0.0470742 0.127422 -0.00463291 Vertex 25207 -0.0460097 0.127427 -0.00464706 Vertex 25208 -0.0450254 0.127281 -0.00449582 Vertex 25209 -0.0440047 0.127209 -0.00443148 Vertex 25210 -0.0429797 0.127137 -0.00436425 Vertex 25211 -0.041999 0.126936 -0.00419358 Vertex 25212 -0.0410173 0.12678 -0.00403845 Vertex 25213 -0.040033 0.126629 -0.00388698 Vertex 25214 -0.0390181 0.126516 -0.0038056 Vertex 25215 -0.038039 0.126372 -0.00365101 Vertex 25216 -0.0371 0.126156 -0.00341777 Vertex 25217 0.0547017 0.0700348 0.00381661 Vertex 25218 0.0556724 0.0698728 0.00398853 Vertex 25219 -0.0343794 0.125292 -0.00246071 Vertex 25220 -0.033472 0.124985 -0.00213286 Vertex 25221 -0.0325683 0.124672 -0.00180773 Vertex 25222 -0.0469365 0.0404762 -0.0121149 Vertex 25223 -0.00218115 0.0950603 -0.0327048 Vertex 25224 -0.0286768 0.123948 -0.00103929 Vertex 25225 -0.0275662 0.123979 -0.00112939 Vertex 25226 -0.0265008 0.124041 -0.00116405 Vertex 25227 -0.0253603 0.124214 -0.00135534 Vertex 25228 -0.0242249 0.124407 -0.00155437 Vertex 25229 -0.0230963 0.124618 -0.00175855 Vertex 25230 -0.0219613 0.124807 -0.00195706 Vertex 25231 -0.0208115 0.124915 -0.0021319 Vertex 25232 -0.0196629 0.125034 -0.00230889 Vertex 25233 -0.0185161 0.125172 -0.00248935 Vertex 25234 -0.0173769 0.125333 -0.00267782 Vertex 25235 -0.0162407 0.125507 -0.00287714 Vertex 25236 -0.0150651 0.12575 -0.00315467 Vertex 25237 -0.0138482 0.126055 -0.00351425 Vertex 25238 -0.0126798 0.126321 -0.00380105 Vertex 25239 -0.0114519 0.126605 -0.00415103 Vertex 25240 -0.0102692 0.126825 -0.00441849 Vertex 25241 -0.00912603 0.126983 -0.00460672 Vertex 25242 -0.00794631 0.127212 -0.00487976 Vertex 25243 -0.00680856 0.127356 -0.00506622 Vertex 25244 -0.0057025 0.12744 -0.00517306 Vertex 25245 -0.00463984 0.12746 -0.00519523 Vertex 25246 -0.00357593 0.127459 -0.0052112 Vertex 25247 -0.0025157 0.127417 -0.00520554 Vertex 25248 -0.00152895 0.1273 -0.00507098 Vertex 25249 -0.000544127 0.127196 -0.00494172 Vertex 25250 0.00047843 0.12713 -0.00487855 Vertex 25251 0.00157852 0.12719 -0.00497022 Vertex 25252 0.00268229 0.12726 -0.0050686 Vertex 25253 0.00377856 0.127353 -0.00517835 Vertex 25254 0.0048864 0.127407 -0.00526463 Vertex 25255 0.00602626 0.127371 -0.00517179 Vertex 25256 0.00697022 0.12731 -0.00520393 Vertex 25257 0.00795806 0.127195 -0.00506697 Vertex 25258 0.00897858 0.127106 -0.00499333 Vertex 25259 0.00993007 0.126906 -0.00476687 Vertex 25260 0.0109104 0.126748 -0.00460652 Vertex 25261 0.0118568 0.126524 -0.00436904 Vertex 25262 0.0128031 0.126304 -0.00413421 Vertex 25263 0.01375 0.126078 -0.00389468 Vertex 25264 0.0146587 0.125796 -0.00358107 Vertex 25265 0.0155789 0.125536 -0.0032763 Vertex 25266 0.0165193 0.125294 -0.00303164 Vertex 25267 0.0174244 0.125027 -0.00283112 Vertex 25268 0.0183651 0.124757 -0.00246117 Vertex 25269 0.0192696 0.124452 -0.00213625 Vertex 25270 0.0201621 0.124133 -0.00175315 Vertex 25271 0.0210813 0.123852 -0.00148905 Vertex 25272 0.0219588 0.123501 -0.00109075 Vertex 25273 0.0228232 0.123119 -0.000681491 Vertex 25274 0.0565638 0.0695327 0.00435815 Vertex 25275 -0.0424235 0.12018 -0.013117 Vertex 25276 0.01482 0.0920349 -0.0274402 Vertex 25277 -0.0162822 0.113495 -0.0182068 Vertex 25278 -0.0186783 0.101771 -0.0238107 Vertex 25279 0.013766 0.105146 -0.0193832 Vertex 25280 0.0178388 0.104825 -0.0190099 Vertex 25281 -0.0220481 0.121595 -0.00868192 Vertex 25282 0.0216856 0.0878179 -0.0250022 Vertex 25283 0.0225502 0.0873848 -0.0245875 Vertex 25284 0.0234098 0.0871372 -0.0242525 Vertex 25285 0.024363 0.0867852 -0.0239669 Vertex 25286 0.0525721 0.0648669 -0.000960413 Vertex 25287 0.0516025 0.0650498 -0.00116678 Vertex 25288 0.0282004 0.082909 -0.0218038 Vertex 25289 -0.0158711 0.0941172 -0.0338261 Vertex 25290 -0.0169313 0.0940904 -0.0338108 Vertex 25291 0.0245137 0.102392 -0.0184072 Vertex 25292 0.0104513 0.122961 -0.0105071 Vertex 25293 -0.0173075 0.11558 -0.0164072 Vertex 25294 -0.0110827 0.102149 -0.0241692 Vertex 25295 -0.00952503 0.0920885 -0.0357277 Vertex 25296 0.0555538 0.0665692 0.0013688 Vertex 25297 0.0102657 0.0954683 -0.0270889 Vertex 25298 0.0574071 0.0691343 0.00477569 Vertex 25299 -0.054929 0.0378655 -0.0109689 Vertex 25300 -0.0376206 0.0376543 -0.029358 Vertex 25301 0.0112253 0.0952809 -0.0268838 Vertex 25302 0.0581533 0.0685799 0.00535861 Vertex 25303 -0.00838403 0.100228 -0.0241757 Vertex 25304 -0.00023381 0.123831 -0.00932637 Vertex 25305 -0.0625552 0.176839 -0.0611671 Vertex 25306 -0.0413207 0.122297 -0.0113384 Vertex 25307 -0.0338561 0.0475081 -0.0226504 Vertex 25308 0.00433485 0.120467 -0.0137766 Vertex 25309 0.00920248 0.0914355 -0.0308607 Vertex 25310 0.0235849 0.102638 -0.0186769 Vertex 25311 -0.0304508 0.11875 -0.0116176 Vertex 25312 0.0121697 0.0950562 -0.0266386 Vertex 25313 0.005339 0.0971934 -0.026912 Vertex 25314 -0.05672 0.0341106 -0.0113244 Vertex 25315 -0.0412638 0.110187 -0.018624 Vertex 25316 -0.0287174 0.0344722 -0.0298467 Vertex 25317 -0.0299338 0.0468967 -0.0261593 Vertex 25318 -0.0242006 0.107431 -0.0217757 Vertex 25319 -0.042033 0.113762 -0.0163433 Vertex 25320 0.0196407 0.0940896 -0.0236062 Vertex 25321 0.00382851 0.0992997 -0.0231609 Vertex 25322 0.0382996 0.103126 -0.00513692 Vertex 25323 0.039746 0.101828 -0.00373788 Vertex 25324 -0.029008 0.0478606 -0.0250513 Vertex 25325 -0.0160251 0.0375717 -0.0270066 Vertex 25326 -0.0523102 0.116406 -0.0150785 Vertex 25327 4.86222e-05 0.11836 -0.0154829 Vertex 25328 -0.0556334 0.11822 -0.0129265 Vertex 25329 -0.0228582 0.119091 -0.0120569 Vertex 25330 -0.0284244 0.119569 -0.0104891 Vertex 25331 0.0179609 0.1201 -0.00942839 Vertex 25332 0.0362267 0.104294 -0.00842134 Vertex 25333 -0.030708 0.121227 -0.00820323 Vertex 25334 -0.0553259 0.126836 -0.00601308 Vertex 25335 -0.0543959 0.12661 -0.00573734 Vertex 25336 -0.0533766 0.126536 -0.00565695 Vertex 25337 -0.0523607 0.12647 -0.00557636 Vertex 25338 -0.0512663 0.12652 -0.00563382 Vertex 25339 -0.0502022 0.12654 -0.00566411 Vertex 25340 -0.0490636 0.126668 -0.00583208 Vertex 25341 -0.0480003 0.126688 -0.00585567 Vertex 25342 -0.0468988 0.126761 -0.00595632 Vertex 25343 -0.0457969 0.126831 -0.00605616 Vertex 25344 -0.0448105 0.126695 -0.00590468 Vertex 25345 -0.043786 0.126623 -0.00583839 Vertex 25346 -0.0427639 0.126553 -0.0057736 Vertex 25347 -0.0417806 0.126404 -0.00562318 Vertex 25348 -0.0407607 0.126285 -0.00553285 Vertex 25349 -0.0397817 0.126122 -0.00537397 Vertex 25350 -0.0388025 0.125966 -0.00521606 Vertex 25351 -0.0378236 0.125803 -0.00505851 Vertex 25352 -0.0368834 0.125578 -0.00482073 Vertex 25353 -0.0359493 0.125342 -0.00457539 Vertex 25354 -0.0350845 0.124972 -0.00417237 Vertex 25355 -0.0341992 0.124637 -0.00378015 Vertex 25356 -0.0332919 0.124337 -0.00345787 Vertex 25357 -0.0323569 0.124066 -0.00320487 Vertex 25358 -0.0313957 0.12387 -0.00298136 Vertex 25359 0.00114443 0.118463 -0.015597 Vertex 25360 -0.00732189 0.100225 -0.0241674 Vertex 25361 -0.0283817 0.123518 -0.00261643 Vertex 25362 -0.027273 0.123571 -0.00271305 Vertex 25363 -0.0262078 0.123609 -0.00273748 Vertex 25364 -0.0250588 0.123734 -0.00291588 Vertex 25365 -0.023911 0.123885 -0.00309916 Vertex 25366 -0.0227771 0.124071 -0.00329832 Vertex 25367 -0.0216432 0.124246 -0.00349177 Vertex 25368 -0.0205096 0.124449 -0.00369667 Vertex 25369 -0.0194201 0.1246 -0.00382324 Vertex 25370 -0.0183192 0.124686 -0.00393431 Vertex 25371 -0.017163 0.124753 -0.00408239 Vertex 25372 -0.0160718 0.124871 -0.00420428 Vertex 25373 -0.0149468 0.125073 -0.0044168 Vertex 25374 -0.0137258 0.125368 -0.00476898 Vertex 25375 -0.0124544 0.125711 -0.00519106 Vertex 25376 -0.0112343 0.126014 -0.00554296 Vertex 25377 -0.0100919 0.126182 -0.00573829 Vertex 25378 -0.00891511 0.126415 -0.00600997 Vertex 25379 -0.00773495 0.12664 -0.00628182 Vertex 25380 -0.00658802 0.126776 -0.00645935 Vertex 25381 -0.00552934 0.126815 -0.00649473 Vertex 25382 -0.00446177 0.12682 -0.00651375 Vertex 25383 -0.00340282 0.12679 -0.00651364 Vertex 25384 -0.00241379 0.126666 -0.00637642 Vertex 25385 -0.00142937 0.126525 -0.00622577 Vertex 25386 -0.000408544 0.126448 -0.00615558 Vertex 25387 0.00061382 0.126415 -0.00611002 Vertex 25388 0.00171621 0.126464 -0.00619605 Vertex 25389 0.00281822 0.126541 -0.00629609 Vertex 25390 0.00391726 0.126651 -0.0064175 Vertex 25391 0.00502464 0.126695 -0.00649713 Vertex 25392 0.0060852 0.126695 -0.00651247 Vertex 25393 0.00710731 0.126603 -0.00643182 Vertex 25394 0.0080932 0.126458 -0.00628099 Vertex 25395 0.00907886 0.126317 -0.00613291 Vertex 25396 0.0100342 0.126121 -0.00591235 Vertex 25397 0.0110096 0.125946 -0.00574203 Vertex 25398 0.0119572 0.125728 -0.00550935 Vertex 25399 0.0129045 0.125515 -0.00527553 Vertex 25400 0.0138217 0.125251 -0.00497301 Vertex 25401 0.0147654 0.125019 -0.0047274 Vertex 25402 0.0157129 0.124796 -0.00448994 Vertex 25403 0.0166807 0.124611 -0.00431903 Vertex 25404 0.00739557 0.0347435 -0.0216037 Vertex 25405 0.00340018 0.0348289 -0.0229504 Vertex 25406 0.00241269 0.0347278 -0.0230504 Vertex 25407 0.00140058 0.0348342 -0.0234319 Vertex 25408 0.000403091 0.0348316 -0.0232847 Vertex 25409 -0.000582144 0.0347482 -0.0236897 Vertex 25410 -0.00157869 0.0347285 -0.0237137 Vertex 25411 -0.00258809 0.0348892 -0.0237423 Vertex 25412 -0.00357674 0.0347286 -0.0239915 Vertex 25413 -0.00458022 0.0347745 -0.0240516 Vertex 25414 -0.00557634 0.0347311 -0.0241073 Vertex 25415 -0.00657564 0.0346831 -0.0243352 Vertex 25416 -0.00757151 0.0346922 -0.0244599 Vertex 25417 -0.0398457 0.0985451 -0.0219087 Vertex 25418 -0.04085 0.0985381 -0.021696 Vertex 25419 -0.0418518 0.098529 -0.0215916 Vertex 25420 -0.0428489 0.09852 -0.021578 Vertex 25421 -0.0135754 0.0347863 -0.0255909 Vertex 25422 -0.0155786 0.0348181 -0.0259692 Vertex 25423 -0.0438434 0.0985095 -0.0215595 Vertex 25424 -0.0448438 0.0985036 -0.0215544 Vertex 25425 -0.0458425 0.0985138 -0.0217256 Vertex 25426 -0.0468406 0.0985145 -0.021833 Vertex 25427 -0.0224906 0.034851 -0.0281799 Vertex 25428 -0.023525 0.0349287 -0.0283944 Vertex 25429 -0.0255122 0.0349295 -0.0287387 Vertex 25430 -0.0478408 0.098515 -0.0219326 Vertex 25431 0.0142608 0.0359816 -0.0203372 Vertex 25432 0.0133536 0.0359529 -0.0210721 Vertex 25433 0.0122525 0.036039 -0.0217262 Vertex 25434 -0.0488433 0.098515 -0.0220378 Vertex 25435 0.0094116 0.0360543 -0.0227822 Vertex 25436 0.00840449 0.0360838 -0.0229864 Vertex 25437 0.00741372 0.0360842 -0.0231635 Vertex 25438 0.00641089 0.036109 -0.0234066 Vertex 25439 0.00541958 0.0361021 -0.0235849 Vertex 25440 0.00441886 0.0361314 -0.0238164 Vertex 25441 0.00343169 0.0361267 -0.0240106 Vertex 25442 0.00242016 0.0361514 -0.024222 Vertex 25443 0.00142185 0.0361564 -0.0243567 Vertex 25444 0.000420458 0.036172 -0.0244623 Vertex 25445 -0.000579953 0.0361804 -0.0245898 Vertex 25446 -0.00158335 0.0361983 -0.0246741 Vertex 25447 -0.00258285 0.0361873 -0.0247048 Vertex 25448 -0.00358089 0.036197 -0.0248262 Vertex 25449 -0.00457986 0.0361758 -0.0248798 Vertex 25450 -0.00558231 0.0361988 -0.024956 Vertex 25451 -0.00657967 0.0361819 -0.0249969 Vertex 25452 -0.0498385 0.0970763 -0.0221981 Vertex 25453 -0.0508473 0.0970748 -0.0222124 Vertex 25454 -0.0518518 0.0970732 -0.0222063 Vertex 25455 -0.0125979 0.0362885 -0.0258846 Vertex 25456 -0.0136021 0.0363077 -0.0261392 Vertex 25457 -0.0145953 0.0363242 -0.0264317 Vertex 25458 -0.0498454 0.098516 -0.0220736 Vertex 25459 -0.050852 0.0985174 -0.022094 Vertex 25460 -0.0518585 0.0985114 -0.0220738 Vertex 25461 -0.0185965 0.0364224 -0.0275796 Vertex 25462 -0.0196119 0.0364667 -0.0278852 Vertex 25463 -0.0206175 0.0364922 -0.0281092 Vertex 25464 -0.0215925 0.0364837 -0.0283556 Vertex 25465 -0.0225905 0.0365035 -0.0286129 Vertex 25466 -0.0235952 0.03653 -0.0288249 Vertex 25467 -0.0245975 0.0365494 -0.0290831 Vertex 25468 -0.0255895 0.0365546 -0.0292581 Vertex 25469 -0.0528758 0.0985097 -0.0219976 Vertex 25470 -0.0672648 0.0680031 0.0322561 Vertex 25471 -0.0131917 0.169758 -0.0239616 Vertex 25472 -0.0181742 0.169737 -0.0210312 Vertex 25473 -0.0271732 0.169704 -0.0183584 Vertex 25474 -0.0538836 0.0984784 -0.021806 Vertex 25475 -0.0528408 0.0970645 -0.0221327 Vertex 25476 -0.0548752 0.0984577 -0.0213117 Vertex 25477 -0.0201579 0.171232 -0.0211109 Vertex 25478 -0.0271732 0.171194 -0.0185934 Vertex 25479 -0.0321688 0.171168 -0.015915 Vertex 25480 -0.055877 0.0984248 -0.0207921 Vertex 25481 -0.0569101 0.0984236 -0.0203516 Vertex 25482 -0.0818617 0.117704 -0.00327392 Vertex 25483 -0.0578948 0.0983776 -0.0200563 Vertex 25484 -0.058907 0.0983413 -0.0195805 Vertex 25485 -0.0598969 0.0982824 -0.0189251 Vertex 25486 -0.0191865 0.172705 -0.0222871 Vertex 25487 -0.058912 0.109738 -0.0167726 Vertex 25488 -0.0635438 0.0341847 -0.00786744 Vertex 25489 -0.0480694 0.153165 -0.00566954 Vertex 25490 -0.0656496 0.0339611 -0.00733584 Vertex 25491 -0.0676468 0.0338307 -0.00583252 Vertex 25492 -0.0281451 0.166722 -0.0170726 Vertex 25493 -0.0301385 0.166718 -0.0165418 Vertex 25494 -0.0608693 0.0982413 -0.018491 Vertex 25495 0.0143906 0.0373653 -0.0212799 Vertex 25496 0.0134057 0.0374127 -0.0219366 Vertex 25497 0.0124253 0.0374345 -0.0223624 Vertex 25498 0.01142 0.0374719 -0.022733 Vertex 25499 0.0104112 0.0375138 -0.0230668 Vertex 25500 0.00942462 0.0375116 -0.02327 Vertex 25501 0.00841559 0.0375405 -0.0234702 Vertex 25502 0.00741716 0.0375454 -0.0236134 Vertex 25503 0.00641397 0.0375702 -0.0238447 Vertex 25504 0.00540963 0.0375924 -0.0240752 Vertex 25505 0.0044132 0.0376001 -0.0242202 Vertex 25506 0.00341059 0.0376223 -0.0244648 Vertex 25507 0.0024069 0.037633 -0.0245625 Vertex 25508 0.00141145 0.0376391 -0.024717 Vertex 25509 0.000412578 0.0376462 -0.0248548 Vertex 25510 -0.000588677 0.037658 -0.0249499 Vertex 25511 -0.00158954 0.0376715 -0.025054 Vertex 25512 -0.00258654 0.0376582 -0.0251248 Vertex 25513 -0.00358669 0.0376696 -0.025221 Vertex 25514 -0.00458896 0.0376652 -0.0252351 Vertex 25515 -0.00558664 0.0376733 -0.0253626 Vertex 25516 -0.00659114 0.03769 -0.0254352 Vertex 25517 -0.00758688 0.0376797 -0.0254717 Vertex 25518 -0.00858661 0.0376839 -0.0256139 Vertex 25519 -0.00958914 0.0376967 -0.0257201 Vertex 25520 -0.0105903 0.0377043 -0.0258398 Vertex 25521 -0.0116048 0.0377441 -0.0259987 Vertex 25522 -0.0125983 0.037741 -0.0261872 Vertex 25523 -0.0136024 0.0377623 -0.0264268 Vertex 25524 -0.0146115 0.03779 -0.0266447 Vertex 25525 -0.0618416 0.098205 -0.0180486 Vertex 25526 -0.0176179 0.0378672 -0.0275216 Vertex 25527 -0.0186131 0.0378854 -0.0277917 Vertex 25528 -0.0196147 0.0379102 -0.0280301 Vertex 25529 -0.0206136 0.0379294 -0.0283016 Vertex 25530 -0.0215953 0.03793 -0.0285032 Vertex 25531 -0.0226026 0.0379508 -0.0287016 Vertex 25532 -0.023601 0.0379574 -0.0288347 Vertex 25533 -0.024607 0.037979 -0.0290368 Vertex 25534 -0.0255993 0.037974 -0.029094 Vertex 25535 -0.0628508 0.0981808 -0.0176907 Vertex 25536 0.00310161 0.111606 -0.0202814 Vertex 25537 -0.0778811 0.12224 -0.00662917 Vertex 25538 -0.077868 0.12372 -0.00684832 Vertex 25539 -0.0638567 0.0981567 -0.0173229 Vertex 25540 -0.0648891 0.0981501 -0.0170112 Vertex 25541 -0.0658747 0.0981197 -0.0167177 Vertex 25542 -0.0668671 0.0980924 -0.0163226 Vertex 25543 -0.0678611 0.0980605 -0.0159397 Vertex 25544 0.00614025 0.110185 -0.0202335 Vertex 25545 -0.0350727 0.157773 -0.0116201 Vertex 25546 -0.0688327 0.09803 -0.0157395 Vertex 25547 -0.0698503 0.0980241 -0.015524 Vertex 25548 -0.0708458 0.0980019 -0.0152545 Vertex 25549 -0.0718516 0.0979698 -0.0147575 Vertex 25550 -0.0538563 0.0970443 -0.0219059 Vertex 25551 -0.0728362 0.0979301 -0.0143404 Vertex 25552 -0.0152189 0.172708 -0.0246075 Vertex 25553 -0.0281556 0.17562 -0.0175208 Vertex 25554 -0.0251823 0.172681 -0.0196186 Vertex 25555 -0.0441291 0.159145 -0.00944971 Vertex 25556 -0.047561 0.0361661 -0.0123414 Vertex 25557 -0.0485578 0.0361757 -0.0124661 Vertex 25558 -0.073851 0.0979023 -0.0138506 Vertex 25559 -0.0748382 0.0978559 -0.0133191 Vertex 25560 0.00110427 0.111585 -0.0201254 Vertex 25561 0.00711096 0.111601 -0.019782 Vertex 25562 -0.0758657 0.097813 -0.01246 Vertex 25563 -0.033143 0.157873 -0.0118064 Vertex 25564 -0.023205 0.178608 -0.0204967 Vertex 25565 -0.0508873 0.105589 -0.0194525 Vertex 25566 -0.0519018 0.105587 -0.0193502 Vertex 25567 -0.0659107 0.120913 -0.00886784 Vertex 25568 -0.0508873 0.109845 -0.0186279 Vertex 25569 -0.082909 0.123594 -0.00426589 Vertex 25570 -0.0528954 0.105563 -0.0191967 Vertex 25571 -0.0619218 0.112503 -0.0143567 Vertex 25572 -0.0635449 0.0356868 -0.00823988 Vertex 25573 -0.0645431 0.0356401 -0.00785526 Vertex 25574 -0.0655175 0.0356165 -0.00754656 Vertex 25575 -0.0665675 0.0355377 -0.00701232 Vertex 25576 -0.0675456 0.035487 -0.00647 Vertex 25577 -0.0685946 0.0353745 -0.00558788 Vertex 25578 -0.0695434 0.0352232 -0.00418951 Vertex 25579 0.0244581 0.0366925 -0.000851561 Vertex 25580 0.0234605 0.0367801 -0.00165856 Vertex 25581 0.0224551 0.0368363 -0.00219983 Vertex 25582 -0.0491191 0.159098 -0.00622225 Vertex 25583 -0.020138 0.166773 -0.018707 Vertex 25584 -0.0261276 0.166758 -0.01752 Vertex 25585 -0.0480744 0.151666 -0.00489643 Vertex 25586 -0.0728899 0.122329 -0.00823917 Vertex 25587 0.0144177 0.0388354 -0.0218485 Vertex 25588 0.0133897 0.0389058 -0.0222843 Vertex 25589 0.0124104 0.0389053 -0.0225983 Vertex 25590 0.0114184 0.0389206 -0.0228692 Vertex 25591 0.0104091 0.0389479 -0.0231008 Vertex 25592 0.00940878 0.0389595 -0.0232113 Vertex 25593 0.0084105 0.0389663 -0.0233493 Vertex 25594 0.00740689 0.0389878 -0.0235836 Vertex 25595 0.00640724 0.0390095 -0.0238414 Vertex 25596 0.0053978 0.0390279 -0.0240405 Vertex 25597 0.00440363 0.0390362 -0.0241943 Vertex 25598 0.00340212 0.0390598 -0.024445 Vertex 25599 0.00240772 0.0390703 -0.0246208 Vertex 25600 0.00140103 0.0390882 -0.0248121 Vertex 25601 0.000401309 0.0390966 -0.0249339 Vertex 25602 -0.000599084 0.0391028 -0.0250468 Vertex 25603 -0.00159763 0.0391157 -0.0252097 Vertex 25604 -0.00259587 0.0391262 -0.0253465 Vertex 25605 -0.00359535 0.0391334 -0.025473 Vertex 25606 -0.00459579 0.039143 -0.025596 Vertex 25607 -0.00559653 0.0391515 -0.0257085 Vertex 25608 -0.00659427 0.0391448 -0.0257394 Vertex 25609 -0.00759694 0.039172 -0.0259394 Vertex 25610 -0.00859398 0.0391639 -0.0259828 Vertex 25611 -0.00959872 0.0391743 -0.0260833 Vertex 25612 -0.0105966 0.0391805 -0.0262222 Vertex 25613 -0.0115998 0.0391898 -0.02633 Vertex 25614 -0.0126068 0.0392015 -0.0264338 Vertex 25615 -0.0136017 0.0392183 -0.0267222 Vertex 25616 -0.0145978 0.0392398 -0.0269855 Vertex 25617 -0.0156039 0.0392636 -0.0272219 Vertex 25618 -0.0166283 0.0393036 -0.0275139 Vertex 25619 -0.0175974 0.0393048 -0.0277532 Vertex 25620 -0.0186192 0.0393436 -0.0280481 Vertex 25621 -0.0196031 0.0393462 -0.028238 Vertex 25622 -0.0206006 0.0393656 -0.0285093 Vertex 25623 -0.0216083 0.039391 -0.0287125 Vertex 25624 -0.0226105 0.0393974 -0.0288175 Vertex 25625 -0.0236049 0.0394052 -0.0289635 Vertex 25626 -0.0246065 0.0394112 -0.0290873 Vertex 25627 -0.0255986 0.0394109 -0.0291464 Vertex 25628 -0.0540996 0.154592 -0.00271527 Vertex 25629 -0.0780673 0.0690482 0.0132523 Vertex 25630 -0.053898 0.105542 -0.0189379 Vertex 25631 -0.0709225 0.109376 -0.0106672 Vertex 25632 -0.0306087 0.0394849 -0.0300968 Vertex 25633 -0.0316065 0.039499 -0.0303181 Vertex 25634 -0.0326038 0.039499 -0.0302708 Vertex 25635 -0.0336086 0.0394857 -0.0301589 Vertex 25636 -0.0708792 0.115031 -0.00817569 Vertex 25637 -0.0291365 0.165225 -0.016186 Vertex 25638 -0.0376133 0.0393512 -0.0290006 Vertex 25639 -0.038606 0.0392918 -0.0284798 Vertex 25640 -0.0396087 0.0392284 -0.0278507 Vertex 25641 -0.0545309 0.0352136 0.0455493 Vertex 25642 -0.0548923 0.105518 -0.0186699 Vertex 25643 -0.0788715 0.122217 -0.0060966 Vertex 25644 -0.0749763 0.136928 -0.00646616 Vertex 25645 -0.0659657 0.129697 -0.00887578 Vertex 25646 -0.0261859 0.172679 -0.0191085 Vertex 25647 -0.030101 0.160758 -0.0141091 Vertex 25648 -0.0475686 0.0376232 -0.0123457 Vertex 25649 -0.0485539 0.0376116 -0.0123218 Vertex 25650 -0.0495645 0.0375773 -0.0119604 Vertex 25651 -0.0558768 0.105489 -0.0184971 Vertex 25652 -0.0441374 0.160646 -0.00957119 Vertex 25653 -0.0401921 0.166668 -0.0117758 Vertex 25654 -0.0838483 0.119157 -0.00284212 Vertex 25655 -0.0668846 0.117985 -0.00889164 Vertex 25656 -0.0818614 0.114723 -0.0022038 Vertex 25657 -0.0565291 0.0373798 -0.0104777 Vertex 25658 -0.0568793 0.105485 -0.0183902 Vertex 25659 -0.0830081 0.135296 -0.00152379 Vertex 25660 -0.0605217 0.0372227 -0.00906293 Vertex 25661 -0.06148 0.0371866 -0.00855801 Vertex 25662 -0.0779551 0.131028 -0.00606492 Vertex 25663 -0.063488 0.037094 -0.00797583 Vertex 25664 -0.0645109 0.0370591 -0.00764757 Vertex 25665 -0.0654933 0.0370192 -0.00733845 Vertex 25666 -0.0664891 0.0369705 -0.00688594 Vertex 25667 -0.0675101 0.0369158 -0.0062949 Vertex 25668 -0.0685182 0.0368214 -0.0053939 Vertex 25669 -0.0695317 0.0366687 -0.00405392 Vertex 25670 -0.0706839 0.0363372 -0.00115986 Vertex 25671 -0.0715396 0.0362187 -0.000138838 Vertex 25672 0.033449 0.0380742 0.000639692 Vertex 25673 0.032415 0.0383305 -0.000488607 Vertex 25674 0.0314145 0.0384146 -0.00113672 Vertex 25675 0.0304284 0.0383851 -0.001443 Vertex 25676 0.0284741 0.0381475 -0.00163189 Vertex 25677 0.0274945 0.0381011 -0.00197122 Vertex 25678 0.026467 0.0383015 -0.00253304 Vertex 25679 0.0254584 0.0383883 -0.00303811 Vertex 25680 0.0244505 0.0384021 -0.00302114 Vertex 25681 0.023446 0.0385037 -0.00396461 Vertex 25682 -0.0708979 0.122353 -0.00862039 Vertex 25683 -0.0161451 0.166792 -0.0199866 Vertex 25684 -0.0231365 0.166757 -0.0180638 Vertex 25685 -0.054857 0.0970227 -0.0215362 Vertex 25686 0.0163786 0.0403059 -0.0216745 Vertex 25687 0.0154069 0.0403121 -0.0220991 Vertex 25688 0.0144144 0.0403325 -0.0225056 Vertex 25689 0.0134264 0.0403382 -0.0227982 Vertex 25690 0.0124197 0.0403679 -0.0230567 Vertex 25691 0.0114164 0.0403794 -0.0231815 Vertex 25692 0.0104088 0.0403968 -0.0232872 Vertex 25693 0.00941217 0.040392 -0.0233006 Vertex 25694 0.00840712 0.0404044 -0.0234014 Vertex 25695 0.00740202 0.0404296 -0.0235788 Vertex 25696 0.00640925 0.0404248 -0.023654 Vertex 25697 0.00540344 0.040445 -0.0238712 Vertex 25698 0.00439792 0.0404664 -0.024069 Vertex 25699 0.00340705 0.0404653 -0.0241388 Vertex 25700 0.00239673 0.0404932 -0.0244502 Vertex 25701 0.00139789 0.0405023 -0.0245871 Vertex 25702 0.000392133 0.0405199 -0.0247969 Vertex 25703 -0.000600787 0.0405329 -0.0249772 Vertex 25704 -0.00160432 0.0405525 -0.0251988 Vertex 25705 -0.00260003 0.0405608 -0.0253579 Vertex 25706 -0.00359864 0.0405713 -0.0254999 Vertex 25707 -0.00459976 0.0405792 -0.0256485 Vertex 25708 -0.00560235 0.0406015 -0.0258376 Vertex 25709 -0.00660048 0.0405957 -0.0258634 Vertex 25710 -0.00760223 0.0406064 -0.0259713 Vertex 25711 -0.00860205 0.0406149 -0.0260948 Vertex 25712 -0.00960203 0.0406207 -0.0262166 Vertex 25713 -0.0105985 0.0406145 -0.0262787 Vertex 25714 -0.0116015 0.0406252 -0.0263738 Vertex 25715 -0.0126067 0.040646 -0.0265976 Vertex 25716 -0.0136021 0.0406665 -0.0268707 Vertex 25717 -0.0146057 0.0406867 -0.0271172 Vertex 25718 -0.0156111 0.0407209 -0.0274801 Vertex 25719 -0.0166099 0.0407431 -0.0277394 Vertex 25720 -0.0176152 0.0407641 -0.0279656 Vertex 25721 -0.0186097 0.0407857 -0.0282477 Vertex 25722 -0.0196118 0.040807 -0.0284935 Vertex 25723 -0.0205993 0.0408181 -0.0286892 Vertex 25724 -0.0216102 0.0408331 -0.028871 Vertex 25725 -0.0226112 0.04084 -0.0289768 Vertex 25726 -0.0236123 0.0408478 -0.0290846 Vertex 25727 -0.0246071 0.0408479 -0.0291354 Vertex 25728 -0.0256081 0.0408536 -0.0292407 Vertex 25729 -0.0266144 0.0408668 -0.0293519 Vertex 25730 -0.0276134 0.0408758 -0.0294796 Vertex 25731 -0.028614 0.0408765 -0.0296027 Vertex 25732 -0.0296169 0.0408892 -0.0298249 Vertex 25733 -0.0306178 0.0409006 -0.0300462 Vertex 25734 -0.0316113 0.0409091 -0.0301005 Vertex 25735 -0.032605 0.0408975 -0.030074 Vertex 25736 -0.0336134 0.0408899 -0.0298935 Vertex 25737 -0.0346258 0.0408721 -0.0296689 Vertex 25738 -0.0356136 0.0408304 -0.0293778 Vertex 25739 -0.0366032 0.0407784 -0.0289892 Vertex 25740 -0.0375646 0.0407082 -0.0285349 Vertex 25741 -0.0386188 0.04066 -0.0277325 Vertex 25742 0.00710791 0.110158 -0.019992 Vertex 25743 -0.0501327 0.159092 -0.00542351 Vertex 25744 -0.066012 0.139954 -0.00779963 Vertex 25745 -0.0741051 0.0686193 0.025039 Vertex 25746 -0.0787639 0.0696569 0.0125705 Vertex 25747 -0.0201905 0.172698 -0.0217858 Vertex 25748 -0.0740846 0.0657329 0.0152043 Vertex 25749 -0.0629819 0.128219 -0.0083429 Vertex 25750 -0.0475747 0.0390527 -0.0120963 Vertex 25751 -0.0485567 0.0390246 -0.0119389 Vertex 25752 -0.049558 0.0389942 -0.0116749 Vertex 25753 -0.0505315 0.0389504 -0.011562 Vertex 25754 -0.0515418 0.0389441 -0.0114685 Vertex 25755 -0.0525514 0.0389481 -0.0113995 Vertex 25756 -0.0535445 0.0389126 -0.0111352 Vertex 25757 -0.0545209 0.0388646 -0.0108239 Vertex 25758 -0.0555353 0.0388223 -0.0103544 Vertex 25759 -0.0565382 0.0387829 -0.00997998 Vertex 25760 -0.0575406 0.0387439 -0.00960491 Vertex 25761 -0.0585141 0.0386878 -0.00928985 Vertex 25762 -0.0595062 0.0386574 -0.00901889 Vertex 25763 -0.0605167 0.0386224 -0.00865968 Vertex 25764 -0.0615139 0.0385816 -0.00827445 Vertex 25765 -0.062493 0.0385506 -0.00796777 Vertex 25766 -0.063479 0.0384929 -0.0076832 Vertex 25767 -0.0645061 0.0384674 -0.00726163 Vertex 25768 -0.0654795 0.0384216 -0.00684663 Vertex 25769 -0.0664676 0.0383698 -0.00648508 Vertex 25770 -0.0674682 0.0382926 -0.00574154 Vertex 25771 -0.0683644 0.0381281 -0.00463362 Vertex 25772 -0.0695501 0.0378481 -0.00149869 Vertex 25773 -0.0705692 0.037778 -0.000833243 Vertex 25774 -0.0715439 0.0376425 0.00026118 Vertex 25775 -0.0578691 0.105465 -0.0183362 Vertex 25776 -0.0198831 0.107284 -0.0222237 Vertex 25777 0.0374062 0.0397236 -0.000139169 Vertex 25778 0.0363991 0.039859 -0.00104313 Vertex 25779 0.0354021 0.0399255 -0.00156043 Vertex 25780 0.0344146 0.0399125 -0.00185272 Vertex 25781 0.0334188 0.0399387 -0.00226403 Vertex 25782 0.0324259 0.0399358 -0.00240332 Vertex 25783 0.031421 0.0399741 -0.00264961 Vertex 25784 0.0304249 0.0399897 -0.00292852 Vertex 25785 0.029436 0.039931 -0.00313898 Vertex 25786 0.0284614 0.0398271 -0.00325429 Vertex 25787 0.0274404 0.0399547 -0.00370609 Vertex 25788 0.0264293 0.0400385 -0.00421056 Vertex 25789 0.0254331 0.0400654 -0.00462996 Vertex 25790 -0.0789484 0.130998 -0.00538086 Vertex 25791 -0.0610153 0.131125 -0.0076807 Vertex 25792 -0.0171472 0.166778 -0.0196136 Vertex 25793 -0.0241278 0.166765 -0.0179136 Vertex 25794 -0.0510737 0.151654 -0.00393732 Vertex 25795 -0.0588856 0.105471 -0.0181522 Vertex 25796 0.0174063 0.0417452 -0.0219906 Vertex 25797 0.0164129 0.0417834 -0.0225068 Vertex 25798 0.0154304 0.0417921 -0.0229429 Vertex 25799 0.0144142 0.0418406 -0.0232939 Vertex 25800 0.0134018 0.0418881 -0.0236384 Vertex 25801 0.012409 0.0418787 -0.0238148 Vertex 25802 0.0114013 0.0419017 -0.0239008 Vertex 25803 0.0104003 0.0418913 -0.0239147 Vertex 25804 0.00939844 0.0418898 -0.0239164 Vertex 25805 0.00839558 0.0418967 -0.0238735 Vertex 25806 0.00740015 0.0418656 -0.0238182 Vertex 25807 0.00639612 0.0418759 -0.0239341 Vertex 25808 0.00539692 0.0418924 -0.0240197 Vertex 25809 0.00440015 0.0419024 -0.0241382 Vertex 25810 0.00339772 0.0418993 -0.0241367 Vertex 25811 0.002402 0.041908 -0.0243037 Vertex 25812 0.00139766 0.0419298 -0.0244976 Vertex 25813 0.000399482 0.0419381 -0.024642 Vertex 25814 -0.000607228 0.0419595 -0.0248688 Vertex 25815 -0.00159817 0.0419657 -0.0250292 Vertex 25816 -0.00260639 0.0419888 -0.0252454 Vertex 25817 -0.00360287 0.0419944 -0.0253901 Vertex 25818 -0.00460242 0.0419996 -0.0255341 Vertex 25819 -0.00560579 0.042007 -0.0256504 Vertex 25820 -0.00660848 0.0420213 -0.0257519 Vertex 25821 -0.00761024 0.0420402 -0.0258045 Vertex 25822 -0.0086066 0.042026 -0.0258639 Vertex 25823 -0.00960244 0.0420101 -0.025949 Vertex 25824 -0.0106066 0.0420419 -0.0261259 Vertex 25825 -0.0116045 0.0420472 -0.0262702 Vertex 25826 -0.0125985 0.0420542 -0.026434 Vertex 25827 -0.0136075 0.0420889 -0.0267571 Vertex 25828 -0.014608 0.0421127 -0.0270124 Vertex 25829 -0.0155991 0.0421323 -0.0272897 Vertex 25830 -0.0166194 0.0421642 -0.027592 Vertex 25831 -0.0176147 0.042187 -0.0278695 Vertex 25832 -0.0186103 0.042208 -0.0281438 Vertex 25833 -0.0196215 0.042233 -0.0284571 Vertex 25834 -0.0206158 0.0422474 -0.0286271 Vertex 25835 -0.0216106 0.0422609 -0.0287762 Vertex 25836 -0.0226137 0.0422636 -0.0288734 Vertex 25837 -0.0236164 0.0422618 -0.0289626 Vertex 25838 -0.0246131 0.0422659 -0.0289978 Vertex 25839 -0.0256167 0.0422692 -0.0291044 Vertex 25840 -0.0266181 0.042276 -0.0292233 Vertex 25841 -0.0276164 0.0422898 -0.0293674 Vertex 25842 -0.0286182 0.0422955 -0.0294891 Vertex 25843 -0.0598806 0.105454 -0.017999 Vertex 25844 0.0182047 0.100313 -0.0224597 Vertex 25845 0.0171559 0.100271 -0.022436 Vertex 25846 0.0161529 0.100264 -0.0224296 Vertex 25847 0.0141481 0.100268 -0.0227789 Vertex 25848 0.0131476 0.100265 -0.0227775 Vertex 25849 0.0111435 0.100252 -0.0225401 Vertex 25850 0.00410653 0.111609 -0.0202712 Vertex 25851 -0.0739433 0.134018 -0.00754124 Vertex 25852 -0.0608886 0.105445 -0.0177606 Vertex 25853 -0.0148777 0.0364156 0.0513074 Vertex 25854 -0.0211896 0.172692 -0.021286 Vertex 25855 -0.0271752 0.172675 -0.0185845 Vertex 25856 -0.0138991 0.162654 -0.0155462 Vertex 25857 -0.0558857 0.0970202 -0.0212239 Vertex 25858 -0.0485658 0.0404434 -0.0115683 Vertex 25859 -0.0495545 0.0404082 -0.0113965 Vertex 25860 -0.0505461 0.0403717 -0.011217 Vertex 25861 -0.0515413 0.0403485 -0.0110842 Vertex 25862 -0.0525617 0.0403541 -0.0109145 Vertex 25863 -0.0535427 0.0402957 -0.0106063 Vertex 25864 -0.0545439 0.0402656 -0.0102441 Vertex 25865 -0.0555251 0.040203 -0.0098178 Vertex 25866 -0.0565326 0.0401709 -0.00945456 Vertex 25867 -0.0575443 0.0401418 -0.00909914 Vertex 25868 -0.058528 0.0400924 -0.008802 Vertex 25869 -0.0595357 0.0400627 -0.00844467 Vertex 25870 -0.0568962 0.0970004 -0.0209687 Vertex 25871 -0.0615278 0.0399873 -0.00779984 Vertex 25872 -0.062514 0.0399436 -0.00751704 Vertex 25873 -0.0635175 0.0399079 -0.00714576 Vertex 25874 -0.0645122 0.0398643 -0.00676714 Vertex 25875 -0.0654945 0.0398115 -0.0063825 Vertex 25876 -0.0664819 0.0397537 -0.00588584 Vertex 25877 -0.0674469 0.0396367 -0.00494886 Vertex 25878 -0.0687139 0.0394283 -0.00171366 Vertex 25879 -0.0768702 0.122267 -0.00710647 Vertex 25880 -0.02088 0.107273 -0.0222055 Vertex 25881 -0.0689152 0.109432 -0.0116742 Vertex 25882 0.0379841 0.0406211 -0.00115448 Vertex 25883 -0.0716194 0.0382939 0.000706648 Vertex 25884 -0.0619058 0.105434 -0.0174028 Vertex 25885 0.0383993 0.0413521 -0.00190432 Vertex 25886 0.037401 0.0414131 -0.00242752 Vertex 25887 0.0364284 0.0413843 -0.00274773 Vertex 25888 0.0354173 0.0414682 -0.003097 Vertex 25889 0.0344326 0.0414166 -0.00330414 Vertex 25890 0.0334239 0.0414863 -0.00351395 Vertex 25891 0.0324265 0.0414912 -0.00365574 Vertex 25892 0.0314216 0.0415146 -0.00377022 Vertex 25893 0.0304133 0.0415863 -0.00412062 Vertex 25894 0.029434 0.0414849 -0.00426139 Vertex 25895 0.0284176 0.0415874 -0.00471776 Vertex 25896 0.0274028 0.0416284 -0.00496361 Vertex 25897 0.0264339 0.0415833 -0.00518191 Vertex 25898 0.0254504 0.0415949 -0.00563526 Vertex 25899 -0.0629048 0.1054 -0.0169977 Vertex 25900 0.00310943 0.110155 -0.0202398 Vertex 25901 -0.0620515 0.035927 0.0204607 Vertex 25902 -0.021137 0.166765 -0.0184531 Vertex 25903 -0.0639163 0.105371 -0.0163736 Vertex 25904 0.0183807 0.0432425 -0.0223469 Vertex 25905 0.0173872 0.0432828 -0.0228623 Vertex 25906 0.0163989 0.0433061 -0.0232691 Vertex 25907 0.0154157 0.0433241 -0.0236953 Vertex 25908 0.0143954 0.0433708 -0.024029 Vertex 25909 0.013384 0.043414 -0.024368 Vertex 25910 0.0123957 0.0434077 -0.0245497 Vertex 25911 0.0113955 0.0434069 -0.0246972 Vertex 25912 0.0103893 0.0434318 -0.0247637 Vertex 25913 0.0093871 0.0434015 -0.0246765 Vertex 25914 0.00839042 0.0434178 -0.024623 Vertex 25915 0.0073902 0.0433817 -0.0245369 Vertex 25916 0.00639168 0.0433788 -0.024537 Vertex 25917 0.00539495 0.0433546 -0.0245866 Vertex 25918 0.00439509 0.0433687 -0.0246925 Vertex 25919 0.00339178 0.0433892 -0.0247833 Vertex 25920 0.00239172 0.0434053 -0.0248906 Vertex 25921 0.0013977 0.0433563 -0.0248502 Vertex 25922 0.000400525 0.0433705 -0.0249688 Vertex 25923 -0.000596635 0.0433605 -0.0249736 Vertex 25924 -0.00160584 0.0434015 -0.0251635 Vertex 25925 -0.00260981 0.0434451 -0.0255195 Vertex 25926 -0.00359562 0.043415 -0.0257386 Vertex 25927 -0.00460043 0.0434181 -0.0258683 Vertex 25928 -0.00560304 0.0434101 -0.0260312 Vertex 25929 -0.0066107 0.0434378 -0.0261152 Vertex 25930 -0.00761327 0.0434711 -0.0261832 Vertex 25931 -0.00861273 0.0434199 -0.0261503 Vertex 25932 -0.00961348 0.0434416 -0.0262361 Vertex 25933 -0.0106092 0.0434444 -0.026227 Vertex 25934 -0.0116079 0.0434695 -0.0263093 Vertex 25935 -0.0126085 0.0434839 -0.0264186 Vertex 25936 -0.013606 0.0435021 -0.0266802 Vertex 25937 -0.0146056 0.0435263 -0.0269315 Vertex 25938 -0.0156018 0.0435495 -0.027203 Vertex 25939 -0.0166096 0.0435748 -0.0274243 Vertex 25940 -0.0176105 0.0435992 -0.0276633 Vertex 25941 -0.0186132 0.0436215 -0.0279143 Vertex 25942 -0.0196184 0.043638 -0.0281382 Vertex 25943 -0.0206243 0.0436469 -0.0283402 Vertex 25944 -0.0216155 0.0436703 -0.028439 Vertex 25945 -0.022619 0.0436731 -0.0285417 Vertex 25946 -0.0236196 0.0436733 -0.0286374 Vertex 25947 -0.0246191 0.0436702 -0.0286423 Vertex 25948 -0.0256204 0.0436547 -0.0287136 Vertex 25949 -0.0266217 0.0436536 -0.0288174 Vertex 25950 -0.0276244 0.0436594 -0.0289391 Vertex 25951 -0.057886 0.0969698 -0.0206731 Vertex 25952 -0.0649278 0.105334 -0.0156241 Vertex 25953 -0.0668923 0.109473 -0.0126504 Vertex 25954 0.00410872 0.110162 -0.02034 Vertex 25955 -0.0668955 0.116554 -0.00922261 Vertex 25956 -0.0678845 0.116524 -0.00880656 Vertex 25957 -0.024177 0.172689 -0.0201134 Vertex 25958 -0.074876 0.107788 -0.00905848 Vertex 25959 -0.0799536 0.133905 -0.00443135 Vertex 25960 -0.081937 0.128034 -0.00496911 Vertex 25961 -0.0739068 0.123785 -0.00803832 Vertex 25962 -0.0599768 0.12527 -0.00809043 Vertex 25963 -0.0659232 0.105312 -0.014993 Vertex 25964 -0.0390659 0.157734 -0.0109824 Vertex 25965 -0.0221845 0.172691 -0.0208918 Vertex 25966 -0.0669297 0.105269 -0.0144963 Vertex 25967 -0.0679029 0.105215 -0.0140793 Vertex 25968 -0.0659599 0.128235 -0.00885739 Vertex 25969 -0.0485613 0.0418518 -0.011173 Vertex 25970 -0.0495602 0.0418248 -0.0110192 Vertex 25971 -0.0505603 0.0417939 -0.0107632 Vertex 25972 -0.0515389 0.0417461 -0.0105815 Vertex 25973 -0.0525645 0.0417313 -0.0101531 Vertex 25974 -0.0535612 0.0416919 -0.00977582 Vertex 25975 -0.054551 0.0416447 -0.00949548 Vertex 25976 -0.0555242 0.0415797 -0.00918326 Vertex 25977 -0.0575342 0.0415089 -0.00843308 Vertex 25978 -0.0729608 0.135493 -0.0074448 Vertex 25979 -0.0568732 0.108333 -0.017952 Vertex 25980 -0.0588895 0.0969269 -0.0201624 Vertex 25981 -0.0625234 0.0413191 -0.00677899 Vertex 25982 -0.0655061 0.041163 -0.00538315 Vertex 25983 -0.0848294 0.111312 0.0422165 Vertex 25984 -0.0677174 0.0409231 -0.00173026 Vertex 25985 -0.0320811 0.1577 -0.0118106 Vertex 25986 -0.0659867 0.134061 -0.00822741 Vertex 25987 -0.0291819 0.174148 -0.0171874 Vertex 25988 -0.0598355 0.0968573 -0.0194316 Vertex 25989 -0.0421665 0.16366 -0.0107342 Vertex 25990 -0.0608758 0.0968112 -0.0186271 Vertex 25991 -0.0461288 0.15913 -0.00829043 Vertex 25992 -0.0478356 0.0970782 -0.0220591 Vertex 25993 0.0414526 0.0425673 -0.000513932 Vertex 25994 0.0404388 0.0427247 -0.00185446 Vertex 25995 0.0393846 0.0429207 -0.00283799 Vertex 25996 0.0383916 0.042968 -0.00337479 Vertex 25997 0.0373988 0.0430101 -0.00376662 Vertex 25998 0.036411 0.0430004 -0.00393346 Vertex 25999 0.0354121 0.0430461 -0.00417186 Vertex 26000 0.0344174 0.0430387 -0.00433126 Vertex 26001 0.0334156 0.0430777 -0.00456693 Vertex 26002 0.0324104 0.0430965 -0.00468251 Vertex 26003 0.0314049 0.0431209 -0.00494122 Vertex 26004 0.0304128 0.0431004 -0.0051324 Vertex 26005 0.0293811 0.04325 -0.00550019 Vertex 26006 0.0284042 0.0431456 -0.00552671 Vertex 26007 0.0274201 0.0431121 -0.00573463 Vertex 26008 0.0264706 0.0430524 -0.00597567 Vertex 26009 -0.0669244 0.123843 -0.00898539 Vertex 26010 -0.0729148 0.110726 -0.0089954 Vertex 26011 -0.0329249 0.0369927 0.0503412 Vertex 26012 -0.0648898 0.0353536 0.0257632 Vertex 26013 -0.0181465 0.166773 -0.0192359 Vertex 26014 -0.0590743 0.136941 -0.00615344 Vertex 26015 -0.0600399 0.13696 -0.00647222 Vertex 26016 0.0183828 0.0447123 -0.0227438 Vertex 26017 0.0173831 0.0447578 -0.0232543 Vertex 26018 0.0163996 0.044784 -0.0236657 Vertex 26019 0.0154 0.0448131 -0.0240573 Vertex 26020 0.0143831 0.0448677 -0.0245168 Vertex 26021 0.0133914 0.0448806 -0.0247967 Vertex 26022 0.0124021 0.0448701 -0.0249804 Vertex 26023 0.0113837 0.0449118 -0.0251572 Vertex 26024 0.0103837 0.0449023 -0.0251665 Vertex 26025 0.00938205 0.0449001 -0.0251557 Vertex 26026 0.00838174 0.0449018 -0.0251393 Vertex 26027 0.00738229 0.0448872 -0.0251556 Vertex 26028 0.00638813 0.0448624 -0.0253374 Vertex 26029 0.00538744 0.0448871 -0.0255741 Vertex 26030 0.00439164 0.0448792 -0.025855 Vertex 26031 0.00339515 0.0448431 -0.0258796 Vertex 26032 0.00238303 0.0449286 -0.0261957 Vertex 26033 0.00138117 0.044939 -0.0263139 Vertex 26034 0.000388646 0.0448955 -0.0263577 Vertex 26035 -0.000607851 0.0448652 -0.0263872 Vertex 26036 -0.00162246 0.0450436 -0.027024 Vertex 26037 -0.00261634 0.0450445 -0.0274328 Vertex 26038 -0.00362249 0.0451016 -0.0279234 Vertex 26039 -0.00462988 0.0451748 -0.0282624 Vertex 26040 -0.00562712 0.0451708 -0.0285409 Vertex 26041 -0.00662603 0.045146 -0.0285621 Vertex 26042 -0.00762589 0.0451743 -0.028662 Vertex 26043 -0.00862356 0.0451919 -0.0286362 Vertex 26044 -0.00962571 0.0451144 -0.0282927 Vertex 26045 -0.0106261 0.0451108 -0.0281505 Vertex 26046 -0.0116236 0.0451107 -0.0281433 Vertex 26047 -0.0126252 0.045057 -0.0279244 Vertex 26048 -0.0136243 0.0450811 -0.0280269 Vertex 26049 -0.0146217 0.0450296 -0.0279689 Vertex 26050 -0.0156256 0.0450397 -0.0279587 Vertex 26051 -0.016623 0.0450359 -0.0278307 Vertex 26052 -0.0176233 0.0450417 -0.02779 Vertex 26053 -0.0186212 0.04503 -0.027692 Vertex 26054 -0.0196267 0.0450293 -0.0277098 Vertex 26055 -0.0206221 0.0450432 -0.0278804 Vertex 26056 -0.0216233 0.0450569 -0.0280185 Vertex 26057 -0.022624 0.0450535 -0.0281102 Vertex 26058 -0.0236253 0.0450591 -0.0281331 Vertex 26059 -0.0246221 0.0450443 -0.0281165 Vertex 26060 -0.0256221 0.0450194 -0.0280788 Vertex 26061 -0.0266231 0.0450263 -0.028096 Vertex 26062 -0.0276253 0.0450182 -0.0280952 Vertex 26063 -0.0286229 0.0450027 -0.0280846 Vertex 26064 -0.0689036 0.105186 -0.0135662 Vertex 26065 -0.0699012 0.105141 -0.0130553 Vertex 26066 -0.0709057 0.10512 -0.0125462 Vertex 26067 -0.0470698 0.154668 -0.0068409 Vertex 26068 -0.0609787 0.126745 -0.00811044 Vertex 26069 -0.0121766 0.169774 -0.0245851 Vertex 26070 -0.064348 0.0611447 0.0212332 Vertex 26071 -0.022854 0.100181 -0.0240549 Vertex 26072 -0.0290293 0.160675 -0.0139931 Vertex 26073 -0.0343542 0.0367977 0.0484644 Vertex 26074 -0.0744393 0.114503 0.0509494 Vertex 26075 -0.0718567 0.0701514 0.0311867 Vertex 26076 -0.0905947 0.115833 0.0426569 Vertex 26077 -0.0162094 0.172709 -0.0239586 Vertex 26078 -0.0456148 0.043386 -0.0114089 Vertex 26079 -0.0475689 0.0432884 -0.0109341 Vertex 26080 -0.0485485 0.0432385 -0.0107358 Vertex 26081 -0.049553 0.0432181 -0.0104928 Vertex 26082 -0.0505604 0.0431885 -0.0101401 Vertex 26083 -0.0515329 0.0431219 -0.00982617 Vertex 26084 -0.0525459 0.0430871 -0.00935537 Vertex 26085 -0.0535608 0.0430661 -0.00900679 Vertex 26086 -0.0545511 0.0430136 -0.00860983 Vertex 26087 -0.0258582 0.100162 -0.023852 Vertex 26088 -0.0268604 0.100151 -0.0237263 Vertex 26089 -0.0278525 0.100136 -0.023576 Vertex 26090 -0.0589097 0.111154 -0.0162513 Vertex 26091 -0.0481015 0.157608 -0.00698963 Vertex 26092 -0.0839121 0.122095 -0.00374203 Vertex 26093 -0.0861163 0.11208 0.0430934 Vertex 26094 -0.0288529 0.100117 -0.0233232 Vertex 26095 -0.0298518 0.100096 -0.0230635 Vertex 26096 -0.0308576 0.10008 -0.0228293 Vertex 26097 -0.0318518 0.100063 -0.022678 Vertex 26098 -0.0328555 0.100056 -0.0225692 Vertex 26099 -0.0338572 0.100054 -0.0225702 Vertex 26100 -0.0348607 0.100046 -0.0224582 Vertex 26101 -0.0241819 0.175647 -0.0202251 Vertex 26102 -0.0358588 0.100033 -0.0223224 Vertex 26103 -0.0368547 0.100015 -0.0221726 Vertex 26104 -0.0378631 0.100009 -0.0219618 Vertex 26105 0.0444747 0.0438727 0.000520461 Vertex 26106 0.043508 0.0438731 -6.08517e-05 Vertex 26107 0.0424267 0.0441756 -0.00158684 Vertex 26108 0.0413371 0.0444728 -0.00290745 Vertex 26109 0.0403707 0.0444834 -0.00362771 Vertex 26110 0.0393635 0.0445531 -0.00413158 Vertex 26111 0.0383887 0.0445417 -0.00444706 Vertex 26112 0.0373953 0.0445589 -0.00471693 Vertex 26113 0.0364077 0.044553 -0.00488844 Vertex 26114 0.0354074 0.0446129 -0.00524037 Vertex 26115 0.0344074 0.0446243 -0.00536213 Vertex 26116 0.0334058 0.0446363 -0.00548551 Vertex 26117 0.0324011 0.0446474 -0.00561054 Vertex 26118 0.0314005 0.0446447 -0.00577901 Vertex 26119 0.0304082 0.04464 -0.00596234 Vertex 26120 0.0293657 0.0447288 -0.00609588 Vertex 26121 0.0284258 0.044601 -0.00619231 Vertex 26122 0.0274801 0.0445395 -0.0065618 Vertex 26123 0.0266706 0.04428 -0.00700704 Vertex 26124 -0.0738846 0.110669 -0.00843945 Vertex 26125 -0.0388617 0.099995 -0.0218283 Vertex 26126 -0.0398566 0.099981 -0.0216989 Vertex 26127 -0.0618754 0.0967815 -0.0181397 Vertex 26128 0.0193368 0.0460939 -0.0219388 Vertex 26129 0.0183573 0.0461568 -0.0227219 Vertex 26130 0.0173787 0.046209 -0.0233857 Vertex 26131 0.0163915 0.04625 -0.0239163 Vertex 26132 0.0153612 0.0463061 -0.0243571 Vertex 26133 0.0143956 0.046307 -0.0246969 Vertex 26134 0.0134074 0.0463149 -0.0249889 Vertex 26135 0.0123886 0.0463398 -0.0252064 Vertex 26136 0.0113838 0.0463423 -0.025328 Vertex 26137 0.010384 0.0463357 -0.0254801 Vertex 26138 0.00938176 0.0463536 -0.0257255 Vertex 26139 0.00838362 0.046349 -0.0258656 Vertex 26140 0.00738566 0.0463583 -0.0259834 Vertex 26141 0.00638455 0.0464233 -0.0264515 Vertex 26142 0.00538144 0.0464854 -0.0270709 Vertex 26143 0.00438413 0.0465246 -0.0275852 Vertex 26144 0.00338055 0.0465728 -0.0280809 Vertex 26145 0.00237351 0.0465882 -0.0283321 Vertex 26146 0.00137166 0.0465972 -0.0284573 Vertex 26147 0.000368669 0.0466323 -0.0286891 Vertex 26148 -0.000629686 0.0466337 -0.0288231 Vertex 26149 -0.00163455 0.0466691 -0.0289171 Vertex 26150 -0.00262958 0.0466399 -0.0290845 Vertex 26151 -0.0036313 0.046681 -0.0294588 Vertex 26152 -0.0046354 0.0467251 -0.0296701 Vertex 26153 -0.0056357 0.0466988 -0.0297075 Vertex 26154 -0.00663392 0.0466819 -0.0297341 Vertex 26155 -0.00763703 0.046711 -0.0299661 Vertex 26156 -0.00863658 0.0467032 -0.0298179 Vertex 26157 -0.00963836 0.0466527 -0.0295963 Vertex 26158 -0.0106374 0.0466553 -0.0295813 Vertex 26159 -0.011635 0.0466548 -0.0295721 Vertex 26160 -0.0126391 0.0466477 -0.0295757 Vertex 26161 -0.0136362 0.0466649 -0.0295427 Vertex 26162 -0.0146369 0.0466344 -0.0294365 Vertex 26163 -0.0156357 0.0466082 -0.0291798 Vertex 26164 -0.0166345 0.0465837 -0.0289175 Vertex 26165 -0.0176381 0.0465514 -0.0286775 Vertex 26166 -0.0186385 0.0465274 -0.0284289 Vertex 26167 -0.0196387 0.0464931 -0.0280998 Vertex 26168 -0.0206484 0.0464719 -0.0278809 Vertex 26169 -0.021638 0.0464604 -0.0276852 Vertex 26170 -0.0226179 0.0464363 -0.0275647 Vertex 26171 -0.0236256 0.0464233 -0.0274769 Vertex 26172 -0.0246346 0.0464142 -0.0272665 Vertex 26173 -0.0256229 0.0463679 -0.0270847 Vertex 26174 -0.0266239 0.0463597 -0.0270834 Vertex 26175 -0.0276264 0.046347 -0.026964 Vertex 26176 -0.0286261 0.0463451 -0.0269667 Vertex 26177 -0.0408477 0.0999502 -0.0215042 Vertex 26178 -0.0652274 0.172558 -0.0603808 Vertex 26179 -0.0418518 0.0999485 -0.0214177 Vertex 26180 -0.0739579 0.13841 -0.00677972 Vertex 26181 -0.0428494 0.0999447 -0.0214282 Vertex 26182 -0.0380759 0.16073 -0.01276 Vertex 26183 -0.0350971 0.16074 -0.013448 Vertex 26184 -0.0320964 0.160758 -0.0138294 Vertex 26185 -0.0438495 0.0999429 -0.0214407 Vertex 26186 -0.0536395 0.0361733 0.0466553 Vertex 26187 -0.0652445 0.171051 -0.0600934 Vertex 26188 -0.0781409 0.0718256 0.0231698 Vertex 26189 -0.034079 0.157748 -0.0116645 Vertex 26190 -0.0121468 0.17267 -0.0267827 Vertex 26191 -0.0448474 0.0999398 -0.0215303 Vertex 26192 -0.0447162 0.0448943 -0.0112435 Vertex 26193 -0.0455907 0.0447683 -0.0109766 Vertex 26194 -0.0465551 0.0447198 -0.0107805 Vertex 26195 -0.0475678 0.0446906 -0.0104074 Vertex 26196 -0.0485566 0.0446478 -0.0101195 Vertex 26197 -0.0495658 0.0446328 -0.00989725 Vertex 26198 -0.050581 0.0445938 -0.00942218 Vertex 26199 -0.0515546 0.0445278 -0.00899667 Vertex 26200 -0.0525546 0.0444744 -0.00849373 Vertex 26201 -0.0535445 0.0444164 -0.0080927 Vertex 26202 -0.0545436 0.0443717 -0.00770843 Vertex 26203 -0.0458479 0.0999438 -0.0215809 Vertex 26204 -0.0468498 0.0999476 -0.0216953 Vertex 26205 -0.0749621 0.134014 -0.00721966 Vertex 26206 -0.0478493 0.099947 -0.0217978 Vertex 26207 -0.0488506 0.0999451 -0.0218934 Vertex 26208 -0.0739471 0.131099 -0.00783391 Vertex 26209 -0.0371937 0.168177 -0.0134205 Vertex 26210 -0.0498545 0.0999668 -0.0218887 Vertex 26211 -0.0508568 0.0999518 -0.0219402 Vertex 26212 -0.0760409 0.0677685 0.0130189 Vertex 26213 -0.0702518 0.06756 0.0285092 Vertex 26214 -0.0531145 0.157563 -0.00324336 Vertex 26215 -0.0192324 0.177141 -0.0234526 Vertex 26216 -0.0221908 0.175658 -0.0213821 Vertex 26217 -0.0518639 0.0999443 -0.0218198 Vertex 26218 -0.0381589 0.163687 -0.0131595 Vertex 26219 -0.0528659 0.0999263 -0.0216782 Vertex 26220 0.0464333 0.0455453 -0.00066213 Vertex 26221 0.0454033 0.0457238 -0.00184235 Vertex 26222 0.0443612 0.0458824 -0.00271937 Vertex 26223 0.0433708 0.0459415 -0.00338184 Vertex 26224 0.0423872 0.0459654 -0.00393846 Vertex 26225 0.0413912 0.0459759 -0.00421898 Vertex 26226 0.04037 0.0460545 -0.00454494 Vertex 26227 0.0393875 0.0460438 -0.00485579 Vertex 26228 0.0383891 0.0460848 -0.00524865 Vertex 26229 0.0373922 0.0461028 -0.00552229 Vertex 26230 0.0363972 0.0461521 -0.00588406 Vertex 26231 0.0354045 0.046148 -0.00604177 Vertex 26232 0.034401 0.0461473 -0.00601616 Vertex 26233 0.0333957 0.0461492 -0.00598528 Vertex 26234 0.0323852 0.0461686 -0.00610484 Vertex 26235 0.0313815 0.0461664 -0.00629419 Vertex 26236 -0.0538783 0.0999149 -0.0214389 Vertex 26237 0.029421 0.0461183 -0.00671048 Vertex 26238 0.0278498 0.045613 -0.00720046 Vertex 26239 -0.0548811 0.099887 -0.0210509 Vertex 26240 -0.0558857 0.0998486 -0.020419 Vertex 26241 -0.0568876 0.0998079 -0.0197942 Vertex 26242 -0.0578741 0.0997697 -0.0193936 Vertex 26243 0.0223974 0.0473356 -0.0199928 Vertex 26244 0.0214018 0.0473917 -0.0206345 Vertex 26245 0.0204036 0.0474506 -0.0212729 Vertex 26246 0.0193632 0.0475344 -0.0219845 Vertex 26247 0.0183271 0.0475932 -0.02269 Vertex 26248 0.0173692 0.0476632 -0.0235115 Vertex 26249 0.0163901 0.0476981 -0.0240512 Vertex 26250 0.0154036 0.0477404 -0.0246897 Vertex 26251 0.0144227 0.0477589 -0.0252693 Vertex 26252 0.0134064 0.0478115 -0.0258783 Vertex 26253 0.0123661 0.0479119 -0.026429 Vertex 26254 0.0113671 0.0479427 -0.0268055 Vertex 26255 0.010367 0.0479585 -0.0270631 Vertex 26256 0.0093755 0.0479282 -0.0271091 Vertex 26257 0.00837353 0.0479453 -0.0272176 Vertex 26258 0.00736856 0.0479637 -0.0273222 Vertex 26259 0.00636801 0.0479975 -0.0276935 Vertex 26260 0.00535116 0.0480874 -0.0284111 Vertex 26261 0.00435977 0.0481043 -0.0288152 Vertex 26262 0.00334719 0.0481602 -0.0292882 Vertex 26263 0.00237024 0.0481449 -0.0294793 Vertex 26264 0.00136064 0.0481752 -0.0296995 Vertex 26265 0.00035867 0.048192 -0.0299591 Vertex 26266 -0.000640169 0.0481947 -0.0300913 Vertex 26267 -0.00164401 0.0482043 -0.0300627 Vertex 26268 -0.00263926 0.0481807 -0.0301073 Vertex 26269 -0.00366678 0.0481589 -0.0301707 Vertex 26270 -0.0046427 0.0482096 -0.0303136 Vertex 26271 -0.00564116 0.0481924 -0.0303539 Vertex 26272 -0.00664168 0.0482162 -0.0304375 Vertex 26273 -0.00764633 0.048167 -0.0303862 Vertex 26274 -0.00864403 0.0481881 -0.0304747 Vertex 26275 -0.0096474 0.0481504 -0.030386 Vertex 26276 -0.0106444 0.0481591 -0.0303544 Vertex 26277 -0.0116442 0.0481633 -0.0303354 Vertex 26278 -0.0126432 0.0481635 -0.0303259 Vertex 26279 -0.0136476 0.0481469 -0.0303471 Vertex 26280 -0.0146479 0.0481463 -0.0303376 Vertex 26281 -0.0156486 0.0481142 -0.0300898 Vertex 26282 -0.0166484 0.0480949 -0.029815 Vertex 26283 -0.0176564 0.0480544 -0.0295902 Vertex 26284 -0.0186556 0.0480312 -0.0293255 Vertex 26285 -0.0196537 0.0480066 -0.0290701 Vertex 26286 -0.0206629 0.0479548 -0.0285983 Vertex 26287 -0.0216491 0.0479362 -0.0281524 Vertex 26288 -0.0226309 0.0478785 -0.0276417 Vertex 26289 -0.023633 0.0478399 -0.0272396 Vertex 26290 -0.0246521 0.0478035 -0.0267776 Vertex 26291 -0.0255784 0.0477093 -0.0263526 Vertex 26292 -0.026575 0.0476865 -0.0258778 Vertex 26293 -0.0276111 0.0476412 -0.0256716 Vertex 26294 -0.0286056 0.0475856 -0.0255224 Vertex 26295 -0.0588824 0.0997395 -0.0190365 Vertex 26296 -0.055903 0.111216 -0.0172629 Vertex 26297 -0.0729777 0.138423 -0.00695981 Vertex 26298 -0.0481389 0.160609 -0.00688834 Vertex 26299 -0.0411287 0.160673 -0.0112161 Vertex 26300 -0.0211637 0.171222 -0.0207379 Vertex 26301 -0.0281692 0.171188 -0.018077 Vertex 26302 -0.0331602 0.171158 -0.0153905 Vertex 26303 -0.0708871 0.119431 -0.00850422 Vertex 26304 -0.0782161 0.110396 0.044452 Vertex 26305 -0.0628762 0.0967673 -0.0179048 Vertex 26306 -0.0338755 0.107095 -0.0200162 Vertex 26307 -0.0748771 0.109206 -0.00842538 Vertex 26308 -0.059876 0.0997119 -0.0187764 Vertex 26309 -0.043632 0.0462886 -0.0112814 Vertex 26310 -0.0445775 0.0462028 -0.0108205 Vertex 26311 -0.0455587 0.0461599 -0.0105245 Vertex 26312 -0.0465559 0.0461276 -0.0102455 Vertex 26313 -0.0475701 0.0461114 -0.0100167 Vertex 26314 -0.0485691 0.0460686 -0.00963735 Vertex 26315 -0.0495789 0.046041 -0.00928879 Vertex 26316 -0.0505664 0.0459962 -0.00889176 Vertex 26317 -0.0515556 0.0459336 -0.00836292 Vertex 26318 -0.0525396 0.0458696 -0.00783738 Vertex 26319 -0.0535493 0.045819 -0.00734382 Vertex 26320 -0.0545484 0.0457621 -0.00683862 Vertex 26321 -0.0608825 0.0996865 -0.0185327 Vertex 26322 -0.0848578 0.117602 -0.00112226 Vertex 26323 -0.0788979 0.123682 -0.00614143 Vertex 26324 -0.0618578 0.099667 -0.0183374 Vertex 26325 -0.0628733 0.0996403 -0.0179913 Vertex 26326 -0.0540375 0.141288 -0.0013423 Vertex 26327 -0.0550222 0.141298 -0.00203484 Vertex 26328 -0.0609844 0.0646638 0.031213 Vertex 26329 -0.0421167 0.157651 -0.00983865 Vertex 26330 -0.045123 0.157633 -0.00869072 Vertex 26331 -0.0441012 0.15765 -0.00916962 Vertex 26332 -0.015205 0.175685 -0.0260892 Vertex 26333 -0.0201913 0.175663 -0.0226485 Vertex 26334 -0.034118 0.163722 -0.0147399 Vertex 26335 -0.0361236 0.163705 -0.0141169 Vertex 26336 -0.0638365 0.0996097 -0.0175199 Vertex 26337 0.0474532 0.047084 -0.00164907 Vertex 26338 -0.063874 0.0967575 -0.0177619 Vertex 26339 0.0453737 0.0474164 -0.00383546 Vertex 26340 0.0443631 0.0475049 -0.00446946 Vertex 26341 0.0433856 0.0475038 -0.0047769 Vertex 26342 0.0423862 0.047532 -0.00502925 Vertex 26343 0.0413899 0.0475369 -0.00516876 Vertex 26344 0.0403951 0.0475373 -0.00531603 Vertex 26345 0.0393856 0.0475887 -0.00567863 Vertex 26346 0.0383861 0.0476151 -0.00591592 Vertex 26347 0.037389 0.0476423 -0.00613109 Vertex 26348 0.0363932 0.0476439 -0.00624826 Vertex 26349 0.0354015 0.0476244 -0.00628637 Vertex 26350 0.034399 0.0476191 -0.006288 Vertex 26351 0.0333786 0.0476367 -0.00619535 Vertex 26352 0.0323876 0.047596 -0.00623106 Vertex 26353 0.0313336 0.0477022 -0.006755 Vertex 26354 -0.0648504 0.099576 -0.0170426 Vertex 26355 -0.0658419 0.0995396 -0.0165139 Vertex 26356 -0.0769537 0.132513 -0.00657383 Vertex 26357 0.0264433 0.0485879 -0.0182655 Vertex 26358 0.0253818 0.0487646 -0.0196147 Vertex 26359 0.0243874 0.048835 -0.0205112 Vertex 26360 0.0233446 0.0489622 -0.0213372 Vertex 26361 0.0223908 0.0489358 -0.0217863 Vertex 26362 0.0213931 0.0489728 -0.0223035 Vertex 26363 0.0203853 0.049027 -0.0227929 Vertex 26364 0.0193977 0.0490363 -0.0230642 Vertex 26365 0.0183835 0.0490953 -0.0235496 Vertex 26366 0.0173651 0.049165 -0.0241471 Vertex 26367 0.0163905 0.0491901 -0.024833 Vertex 26368 0.0153651 0.0493118 -0.0259325 Vertex 26369 0.0143712 0.0493733 -0.0267066 Vertex 26370 0.0133608 0.0494245 -0.0271921 Vertex 26371 0.0123741 0.0494269 -0.0274814 Vertex 26372 0.0113761 0.0494361 -0.0277541 Vertex 26373 0.0103624 0.0494805 -0.028102 Vertex 26374 0.00936651 0.0494737 -0.0282538 Vertex 26375 0.00836647 0.0494746 -0.0282442 Vertex 26376 0.00736705 0.0494733 -0.028237 Vertex 26377 0.00637279 0.049483 -0.0283693 Vertex 26378 0.00536912 0.049521 -0.0287338 Vertex 26379 0.00433106 0.0496013 -0.0292546 Vertex 26380 0.00334453 0.0496343 -0.0297987 Vertex 26381 0.00235997 0.0496442 -0.0301148 Vertex 26382 0.00135548 0.0496637 -0.030356 Vertex 26383 0.000356348 0.0496808 -0.0306188 Vertex 26384 -0.000650637 0.0496936 -0.0307015 Vertex 26385 -0.00164877 0.0496874 -0.0307148 Vertex 26386 -0.00265109 0.0497012 -0.030809 Vertex 26387 -0.00364517 0.0496603 -0.0307711 Vertex 26388 -0.00464724 0.0496642 -0.0307417 Vertex 26389 -0.00564795 0.049654 -0.0307584 Vertex 26390 -0.00664542 0.0496313 -0.030799 Vertex 26391 -0.00764651 0.0496471 -0.0308946 Vertex 26392 -0.00865087 0.0496719 -0.030975 Vertex 26393 -0.00965082 0.0496857 -0.0310806 Vertex 26394 -0.0106511 0.0496684 -0.0311061 Vertex 26395 -0.0116538 0.0496371 -0.0310034 Vertex 26396 -0.0126494 0.0496668 -0.0310907 Vertex 26397 -0.0136509 0.0496769 -0.0312069 Vertex 26398 -0.0146513 0.0496822 -0.0311895 Vertex 26399 -0.0156536 0.0496375 -0.0309655 Vertex 26400 -0.0166725 0.0495705 -0.0306349 Vertex 26401 -0.0176728 0.049548 -0.0303695 Vertex 26402 -0.0186672 0.0495328 -0.0300927 Vertex 26403 -0.0196644 0.0494984 -0.0297043 Vertex 26404 -0.0206569 0.0494682 -0.0293042 Vertex 26405 -0.0216788 0.0493937 -0.0287126 Vertex 26406 -0.0226625 0.0493576 -0.0281762 Vertex 26407 -0.0236585 0.049302 -0.027521 Vertex 26408 -0.0246656 0.0492403 -0.0269082 Vertex 26409 -0.0256602 0.0491814 -0.0262646 Vertex 26410 -0.0266188 0.0490904 -0.0254391 Vertex 26411 -0.0276072 0.0488225 -0.0246209 Vertex 26412 -0.0285577 0.048864 -0.0238529 Vertex 26413 -0.0668441 0.0995074 -0.0160123 Vertex 26414 -0.075865 0.120825 -0.00747435 Vertex 26415 -0.0662647 0.160967 -0.0574681 Vertex 26416 -0.0191383 0.16678 -0.0189611 Vertex 26417 -0.0834164 0.110194 0.0380909 Vertex 26418 -0.0348784 0.10713 -0.0202183 Vertex 26419 -0.0358756 0.107103 -0.0202685 Vertex 26420 -0.067848 0.0994807 -0.015636 Vertex 26421 -0.0572639 0.0601869 -0.00219809 Vertex 26422 -0.0579449 0.059547 -0.000261977 Vertex 26423 -0.0648684 0.0967433 -0.0176098 Vertex 26424 -0.0688478 0.0994593 -0.0152611 Vertex 26425 -0.0698499 0.0994423 -0.0150141 Vertex 26426 -0.0435636 0.0476726 -0.0110362 Vertex 26427 -0.0445836 0.0476428 -0.0105653 Vertex 26428 -0.0455673 0.0475992 -0.010259 Vertex 26429 -0.0465619 0.047561 -0.00986957 Vertex 26430 -0.0475605 0.047528 -0.00960427 Vertex 26431 -0.0485702 0.047508 -0.00937813 Vertex 26432 -0.0495653 0.047469 -0.00900107 Vertex 26433 -0.050567 0.0474222 -0.00850865 Vertex 26434 -0.0515685 0.0473635 -0.00788512 Vertex 26435 -0.0525394 0.0472909 -0.00733632 Vertex 26436 -0.0535197 0.0472233 -0.00680686 Vertex 26437 -0.0708414 0.0994113 -0.0147342 Vertex 26438 -0.0679101 0.109459 -0.0121777 Vertex 26439 -0.071855 0.0993885 -0.014251 Vertex 26440 -0.0400646 0.156235 -0.00986121 Vertex 26441 -0.0431187 0.159159 -0.0099383 Vertex 26442 -0.0764158 0.0699842 0.0233785 Vertex 26443 -0.0589426 0.0357407 0.0458703 Vertex 26444 -0.0725608 0.109721 0.0409258 Vertex 26445 -0.0361012 0.160724 -0.0132118 Vertex 26446 -0.0729585 0.134037 -0.00770509 Vertex 26447 -0.0688918 0.119449 -0.00874323 Vertex 26448 -0.0122206 0.175683 -0.0283056 Vertex 26449 -0.0301123 0.163751 -0.0154896 Vertex 26450 -0.0321086 0.163743 -0.0150961 Vertex 26451 -0.0728637 0.099356 -0.013752 Vertex 26452 -0.0819198 0.126566 -0.00507678 Vertex 26453 -0.0738758 0.0993275 -0.0132564 Vertex 26454 0.0473411 0.0488863 -0.00367878 Vertex 26455 0.0463392 0.0489694 -0.00446687 Vertex 26456 0.045359 0.04899 -0.00489955 Vertex 26457 0.0443603 0.0490341 -0.0052894 Vertex 26458 0.0433823 0.0490357 -0.00560381 Vertex 26459 0.0423903 0.0490515 -0.00589339 Vertex 26460 0.0413777 0.0491221 -0.00619394 Vertex 26461 0.0403123 0.0491555 -0.00629774 Vertex 26462 0.0393963 0.049102 -0.00636122 Vertex 26463 0.0383972 0.0491164 -0.00642484 Vertex 26464 0.0373971 0.049112 -0.00639066 Vertex 26465 0.0363929 0.0490985 -0.00642376 Vertex 26466 0.0353918 0.0491057 -0.00653987 Vertex 26467 0.0343638 0.0491351 -0.00656846 Vertex 26468 0.0333812 0.0490928 -0.00645546 Vertex 26469 0.0323895 0.0490788 -0.00667281 Vertex 26470 0.0314014 0.0491212 -0.0073371 Vertex 26471 -0.0748806 0.0992858 -0.0126164 Vertex 26472 -0.083022 0.132397 -0.0026267 Vertex 26473 -0.0730257 0.141351 -0.00730576 Vertex 26474 -0.0758946 0.0992374 -0.0118631 Vertex 26475 -0.0768471 0.09916 -0.0110394 Vertex 26476 0.0253836 0.0503366 -0.0210264 Vertex 26477 0.0243931 0.0503998 -0.0217952 Vertex 26478 0.023375 0.0504685 -0.0225374 Vertex 26479 0.0223706 0.0505198 -0.0231651 Vertex 26480 0.0213976 0.0505253 -0.0237217 Vertex 26481 0.0203664 0.0506236 -0.0244327 Vertex 26482 0.0193881 0.0506007 -0.0247336 Vertex 26483 0.0183734 0.0506657 -0.0252113 Vertex 26484 0.0173702 0.0506958 -0.0254566 Vertex 26485 0.0163545 0.0507599 -0.025927 Vertex 26486 0.0153634 0.050802 -0.0265798 Vertex 26487 0.0143608 0.0508459 -0.0270896 Vertex 26488 0.0133755 0.0508647 -0.0275026 Vertex 26489 0.0123614 0.0509077 -0.0278502 Vertex 26490 0.0113576 0.0509388 -0.0282254 Vertex 26491 0.0103593 0.0509634 -0.0286117 Vertex 26492 0.00936768 0.0509673 -0.0289075 Vertex 26493 0.00836584 0.0509624 -0.0290525 Vertex 26494 0.00735598 0.0509889 -0.0291303 Vertex 26495 0.00635062 0.0510121 -0.0292209 Vertex 26496 0.00528142 0.0509933 -0.0292119 Vertex 26497 0.0043588 0.0510132 -0.0293749 Vertex 26498 0.00334971 0.0510613 -0.029847 Vertex 26499 0.00234342 0.0510926 -0.0302041 Vertex 26500 0.00134506 0.0511101 -0.0304682 Vertex 26501 0.000352424 0.0511166 -0.0306262 Vertex 26502 -0.000657388 0.0511382 -0.0308268 Vertex 26503 -0.00165332 0.0511407 -0.0309868 Vertex 26504 -0.00265316 0.0511482 -0.0311061 Vertex 26505 -0.00365111 0.0511553 -0.0312289 Vertex 26506 -0.00456935 0.0511652 -0.031379 Vertex 26507 -0.00564979 0.0511569 -0.0315211 Vertex 26508 -0.00664745 0.0511524 -0.0316637 Vertex 26509 -0.00764709 0.0511598 -0.0317878 Vertex 26510 -0.00865103 0.0511695 -0.0319029 Vertex 26511 -0.00965525 0.0511768 -0.0320162 Vertex 26512 -0.0106623 0.0511436 -0.032067 Vertex 26513 -0.0116656 0.051126 -0.0319435 Vertex 26514 -0.0126641 0.0511309 -0.0317686 Vertex 26515 -0.0136632 0.0511316 -0.0317578 Vertex 26516 -0.0146591 0.0511639 -0.0318396 Vertex 26517 -0.0156738 0.0511142 -0.0317767 Vertex 26518 -0.0166806 0.0510876 -0.0315182 Vertex 26519 -0.0176768 0.0510699 -0.0312435 Vertex 26520 -0.0186908 0.0510113 -0.0307584 Vertex 26521 -0.0196774 0.0509888 -0.0303435 Vertex 26522 -0.0206679 0.0509474 -0.0298149 Vertex 26523 -0.0216593 0.0509046 -0.0292926 Vertex 26524 -0.022659 0.0508417 -0.0286643 Vertex 26525 -0.0236572 0.0507797 -0.028024 Vertex 26526 -0.0246551 0.0507167 -0.0273858 Vertex 26527 -0.0256486 0.050648 -0.0266189 Vertex 26528 -0.0266334 0.0505574 -0.0257305 Vertex 26529 -0.0719071 0.105086 -0.0120336 Vertex 26530 -0.0709343 0.126767 -0.00893718 Vertex 26531 -0.0281622 0.169703 -0.0179592 Vertex 26532 -0.0241773 0.17417 -0.0202285 Vertex 26533 -0.0368781 0.107107 -0.0201846 Vertex 26534 -0.0378811 0.107099 -0.0200653 Vertex 26535 -0.0678999 0.11945 -0.00879052 Vertex 26536 -0.0356142 0.0493225 -0.0125317 Vertex 26537 -0.0366139 0.0493085 -0.0123994 Vertex 26538 -0.0376156 0.0492564 -0.0118933 Vertex 26539 -0.0386145 0.0492284 -0.011639 Vertex 26540 -0.0396128 0.0492137 -0.0115104 Vertex 26541 -0.065855 0.0967089 -0.0173163 Vertex 26542 -0.0415923 0.0491549 -0.0111971 Vertex 26543 -0.042575 0.0491291 -0.011035 Vertex 26544 -0.0435801 0.0491173 -0.010788 Vertex 26545 -0.0445836 0.049099 -0.0105442 Vertex 26546 -0.0455839 0.0490621 -0.0101677 Vertex 26547 -0.0465703 0.0490167 -0.00974944 Vertex 26548 -0.0475691 0.0489734 -0.00936479 Vertex 26549 -0.0485754 0.0489523 -0.00913959 Vertex 26550 -0.0495985 0.048927 -0.00879829 Vertex 26551 -0.0505791 0.0488657 -0.00826795 Vertex 26552 -0.0515682 0.0488001 -0.00762593 Vertex 26553 -0.0525522 0.0487323 -0.0069784 Vertex 26554 -0.0535498 0.0486673 -0.00635158 Vertex 26555 -0.0699133 0.123828 -0.00875488 Vertex 26556 -0.0589977 0.125247 -0.00779139 Vertex 26557 -0.0481114 0.159106 -0.00699154 Vertex 26558 -0.0320868 0.159267 -0.0129293 Vertex 26559 -0.0330903 0.15925 -0.0128209 Vertex 26560 -0.0202009 0.17418 -0.0222934 Vertex 26561 -0.0222044 0.174173 -0.0211642 Vertex 26562 -0.025189 0.174162 -0.0196112 Vertex 26563 -0.0388763 0.107081 -0.0200218 Vertex 26564 -0.0281104 0.163768 -0.0157424 Vertex 26565 -0.0672891 0.178209 -0.0595336 Vertex 26566 -0.0421407 0.162162 -0.0108328 Vertex 26567 -0.0521449 0.157571 -0.00396744 Vertex 26568 -0.0311481 0.174122 -0.0158676 Vertex 26569 0.0483255 0.0503286 -0.00380134 Vertex 26570 0.0473561 0.0503594 -0.00438005 Vertex 26571 0.0463618 0.0504062 -0.00492067 Vertex 26572 0.0453399 0.0504735 -0.00539794 Vertex 26573 0.0443474 0.05051 -0.00579969 Vertex 26574 0.0433583 0.0505545 -0.0063311 Vertex 26575 0.042364 0.0505846 -0.00668018 Vertex 26576 0.0413795 0.0505691 -0.00672382 Vertex 26577 0.0403869 0.0505617 -0.00671315 Vertex 26578 0.0393962 0.0505525 -0.00668347 Vertex 26579 0.0383958 0.0505315 -0.00659356 Vertex 26580 0.0373944 0.0505276 -0.00658166 Vertex 26581 0.0363875 0.0505227 -0.00658574 Vertex 26582 0.0353576 0.0505704 -0.00670224 Vertex 26583 0.0343607 0.0505331 -0.00657713 Vertex 26584 0.0333583 0.0505553 -0.00686804 Vertex 26585 0.0323993 0.0505614 -0.00746951 Vertex 26586 -0.0639239 0.116652 -0.0103062 Vertex 26587 -0.0710495 0.141325 -0.00813095 Vertex 26588 -0.0480757 0.15465 -0.00633475 Vertex 26589 -0.0911264 0.115738 0.024682 Vertex 26590 -0.0629237 0.112473 -0.0138486 Vertex 26591 0.0253567 0.0518232 -0.0216362 Vertex 26592 0.024383 0.0518665 -0.0223004 Vertex 26593 0.0234224 0.0519071 -0.0231048 Vertex 26594 0.0224205 0.0519815 -0.0241272 Vertex 26595 0.0213555 0.0521216 -0.0251867 Vertex 26596 0.0203738 0.0521374 -0.0257342 Vertex 26597 0.0193833 0.052146 -0.0261511 Vertex 26598 0.0183728 0.0521803 -0.0265242 Vertex 26599 0.0173644 0.052219 -0.0267492 Vertex 26600 0.0163666 0.0522247 -0.0268816 Vertex 26601 0.0153438 0.0522442 -0.0271619 Vertex 26602 0.0143568 0.0522918 -0.0274834 Vertex 26603 0.0133618 0.0523173 -0.0278769 Vertex 26604 0.0123622 0.0523525 -0.0283928 Vertex 26605 0.0113708 0.0523816 -0.0287924 Vertex 26606 0.0103602 0.0524141 -0.0291489 Vertex 26607 0.0093588 0.0524416 -0.0295377 Vertex 26608 0.0083541 0.0524293 -0.0297113 Vertex 26609 0.00734362 0.0524803 -0.0298755 Vertex 26610 0.00634478 0.0524665 -0.0299091 Vertex 26611 0.0053433 0.0524636 -0.0297405 Vertex 26612 0.00435638 0.0524337 -0.0297062 Vertex 26613 0.0033475 0.0524625 -0.0299019 Vertex 26614 0.00234532 0.0524899 -0.0301138 Vertex 26615 0.00134414 0.0524973 -0.030237 Vertex 26616 0.000336625 0.0525175 -0.0304496 Vertex 26617 -0.000658033 0.0525337 -0.0307361 Vertex 26618 -0.00165167 0.0525486 -0.0310164 Vertex 26619 -0.00266028 0.0525834 -0.0313625 Vertex 26620 -0.00365126 0.0525899 -0.0316543 Vertex 26621 -0.00465552 0.0526099 -0.031899 Vertex 26622 -0.00564997 0.0526431 -0.0322774 Vertex 26623 -0.00665267 0.0526646 -0.0325345 Vertex 26624 -0.00766666 0.0527037 -0.0328501 Vertex 26625 -0.00864037 0.0526884 -0.0330777 Vertex 26626 -0.00965605 0.0527028 -0.0331963 Vertex 26627 -0.0106582 0.0527176 -0.0332954 Vertex 26628 -0.0116753 0.0526919 -0.0331734 Vertex 26629 -0.012672 0.0526484 -0.0327744 Vertex 26630 -0.0136738 0.0526181 -0.0325173 Vertex 26631 -0.0146765 0.0526113 -0.0325234 Vertex 26632 -0.0156786 0.0526029 -0.032522 Vertex 26633 -0.0166832 0.0525719 -0.0322771 Vertex 26634 -0.0176845 0.0525387 -0.0318817 Vertex 26635 -0.0186801 0.0525094 -0.0314832 Vertex 26636 -0.0196836 0.0524593 -0.0309769 Vertex 26637 -0.0206715 0.0524183 -0.0304469 Vertex 26638 -0.0216814 0.0523409 -0.0297011 Vertex 26639 -0.0226744 0.0522819 -0.0290541 Vertex 26640 -0.0236648 0.0522261 -0.0284113 Vertex 26641 -0.0246606 0.0521655 -0.0277657 Vertex 26642 -0.0256526 0.0520956 -0.0269974 Vertex 26643 -0.0729034 0.123797 -0.00826534 Vertex 26644 -0.0182092 0.177147 -0.0243125 Vertex 26645 -0.0724664 0.0678961 0.0260135 Vertex 26646 -0.0191702 0.169734 -0.0206461 Vertex 26647 -0.0783599 0.0708413 0.0204513 Vertex 26648 -0.0672347 0.158081 -0.05503 Vertex 26649 -0.0326228 0.0506668 -0.0115219 Vertex 26650 -0.0336201 0.0505969 -0.0107597 Vertex 26651 -0.0346163 0.0505906 -0.0107587 Vertex 26652 -0.0356179 0.0505976 -0.0108834 Vertex 26653 -0.0366198 0.0505806 -0.010756 Vertex 26654 -0.0376189 0.0505906 -0.0108802 Vertex 26655 -0.0386172 0.0505956 -0.0110053 Vertex 26656 -0.0396188 0.0505923 -0.0110041 Vertex 26657 -0.0406195 0.0505975 -0.0111291 Vertex 26658 -0.0416192 0.0505822 -0.0110011 Vertex 26659 -0.0425978 0.0505652 -0.0109174 Vertex 26660 -0.0435905 0.0505542 -0.0107756 Vertex 26661 -0.0446047 0.0505366 -0.0105481 Vertex 26662 -0.0456035 0.0504974 -0.010193 Vertex 26663 -0.0465781 0.0504461 -0.00966731 Vertex 26664 -0.0475733 0.0504004 -0.00924022 Vertex 26665 -0.0485728 0.0503685 -0.00899002 Vertex 26666 -0.0495787 0.0503337 -0.00863311 Vertex 26667 -0.0505803 0.0502828 -0.00813802 Vertex 26668 -0.0516022 0.0502173 -0.00741774 Vertex 26669 -0.0525584 0.0501546 -0.00685551 Vertex 26670 -0.0535468 0.0500774 -0.00609453 Vertex 26671 -0.0729009 0.105047 -0.011511 Vertex 26672 -0.0709159 0.125294 -0.00875352 Vertex 26673 -0.0251912 0.178602 -0.0188241 Vertex 26674 -0.0350797 0.159271 -0.0126349 Vertex 26675 -0.0181879 0.174194 -0.0234207 Vertex 26676 -0.0398786 0.107079 -0.0200332 Vertex 26677 -0.0408758 0.107069 -0.0201235 Vertex 26678 -0.0231203 0.163764 -0.0160465 Vertex 26679 -0.0649059 0.116607 -0.0100071 Vertex 26680 -0.066267 0.176761 -0.0601056 Vertex 26681 -0.0418773 0.107078 -0.0201516 Vertex 26682 -0.0738862 0.104992 -0.0108534 Vertex 26683 0.0503129 0.0516868 -0.00299828 Vertex 26684 -0.0668489 0.0966702 -0.0167929 Vertex 26685 0.0483193 0.0518215 -0.00445791 Vertex 26686 0.0473148 0.0518659 -0.00495567 Vertex 26687 0.0463401 0.0518943 -0.00540594 Vertex 26688 0.045327 0.0519476 -0.00589943 Vertex 26689 0.044345 0.0519693 -0.00630996 Vertex 26690 0.0433486 0.0519969 -0.00665823 Vertex 26691 0.0423653 0.0519948 -0.00681796 Vertex 26692 0.0413782 0.0519867 -0.00685663 Vertex 26693 0.0403895 0.0519763 -0.00684208 Vertex 26694 0.0393949 0.0519685 -0.00680892 Vertex 26695 0.0383894 0.0519545 -0.00670373 Vertex 26696 0.0373767 0.0519575 -0.00666499 Vertex 26697 0.0363451 0.0519755 -0.00662669 Vertex 26698 0.0353118 0.0520079 -0.00674902 Vertex 26699 0.0343592 0.0519767 -0.00689954 Vertex 26700 0.0334766 0.0519565 -0.00767966 Vertex 26701 -0.0301257 0.165235 -0.016018 Vertex 26702 -0.0661875 0.165349 -0.0586121 Vertex 26703 -0.0639427 0.125311 -0.00880074 Vertex 26704 0.00813236 0.110171 -0.0197068 Vertex 26705 -0.0550327 0.0674609 0.0370807 Vertex 26706 0.0252695 0.0532659 -0.021679 Vertex 26707 0.0243768 0.0533073 -0.022554 Vertex 26708 0.0233991 0.0534151 -0.0239637 Vertex 26709 0.0223344 0.0535713 -0.0254238 Vertex 26710 0.0213375 0.0536353 -0.0261911 Vertex 26711 0.0203456 0.053671 -0.0267089 Vertex 26712 0.0193574 0.0537071 -0.027254 Vertex 26713 0.018368 0.0537078 -0.0275601 Vertex 26714 0.0173629 0.0537245 -0.0278081 Vertex 26715 0.0163546 0.0537375 -0.0279072 Vertex 26716 0.0153464 0.0537553 -0.0279934 Vertex 26717 0.0143433 0.0537792 -0.0282321 Vertex 26718 0.0133781 0.0537725 -0.0285433 Vertex 26719 0.0122607 0.0538397 -0.0290819 Vertex 26720 0.0113649 0.0538487 -0.0294289 Vertex 26721 0.0103564 0.0538895 -0.0297771 Vertex 26722 0.00935764 0.0539048 -0.0300706 Vertex 26723 0.00834583 0.0539265 -0.0302958 Vertex 26724 0.00733914 0.0539337 -0.0304234 Vertex 26725 0.0063341 0.0539359 -0.0303914 Vertex 26726 0.00533532 0.0538992 -0.0301758 Vertex 26727 0.00434097 0.053874 -0.0300717 Vertex 26728 0.00333411 0.0539266 -0.0303683 Vertex 26729 0.00233442 0.0539469 -0.0306143 Vertex 26730 0.00134052 0.0539375 -0.0306386 Vertex 26731 0.000343862 0.0539275 -0.0306641 Vertex 26732 -0.000664914 0.0539666 -0.0309917 Vertex 26733 -0.00165753 0.05399 -0.0314052 Vertex 26734 -0.00265601 0.0540246 -0.0319128 Vertex 26735 -0.00366205 0.0540631 -0.0322696 Vertex 26736 -0.00465613 0.0540645 -0.0324247 Vertex 26737 -0.00566591 0.0540919 -0.0326394 Vertex 26738 -0.00666902 0.0541115 -0.0328784 Vertex 26739 -0.00766545 0.0541253 -0.0331554 Vertex 26740 -0.00866157 0.0541436 -0.0334268 Vertex 26741 -0.00967078 0.0541668 -0.0336446 Vertex 26742 -0.0106706 0.054151 -0.0336931 Vertex 26743 -0.0116778 0.0541503 -0.0336719 Vertex 26744 -0.0126769 0.0541386 -0.0335166 Vertex 26745 -0.0136792 0.0541002 -0.0332811 Vertex 26746 -0.014682 0.0540945 -0.0332776 Vertex 26747 -0.0156753 0.0541059 -0.0332392 Vertex 26748 -0.0166996 0.0540293 -0.0329391 Vertex 26749 -0.0176729 0.0540415 -0.0325983 Vertex 26750 -0.0186814 0.0539839 -0.0321072 Vertex 26751 -0.0196863 0.0539295 -0.0316066 Vertex 26752 -0.0206904 0.0538665 -0.0309758 Vertex 26753 -0.0216794 0.0538141 -0.0303252 Vertex 26754 -0.0226655 0.0537608 -0.0296706 Vertex 26755 -0.0236707 0.0536853 -0.0289139 Vertex 26756 -0.0246722 0.05361 -0.0281576 Vertex 26757 0.00111147 0.110147 -0.0201294 Vertex 26758 -0.0600161 0.129661 -0.00742185 Vertex 26759 -0.0222042 0.178612 -0.0212581 Vertex 26760 -0.0220397 0.0354083 0.0523916 Vertex 26761 -0.0201696 0.169725 -0.0202727 Vertex 26762 -0.0142152 0.17272 -0.0253585 Vertex 26763 -0.0759552 0.133992 -0.00682355 Vertex 26764 -0.0326268 0.0520227 -0.0107626 Vertex 26765 -0.033621 0.0519746 -0.0102559 Vertex 26766 -0.0346207 0.0519685 -0.0102527 Vertex 26767 -0.0356207 0.0519761 -0.0103771 Vertex 26768 -0.0366224 0.0519804 -0.0105023 Vertex 26769 -0.0376227 0.0519888 -0.0106273 Vertex 26770 -0.0386238 0.0519962 -0.0107523 Vertex 26771 -0.0396241 0.0520021 -0.0108773 Vertex 26772 -0.0406241 0.0520111 -0.0110025 Vertex 26773 -0.0416225 0.0520166 -0.011127 Vertex 26774 -0.0426178 0.0520018 -0.0109441 Vertex 26775 -0.0436018 0.0519969 -0.0109067 Vertex 26776 -0.0446011 0.0519723 -0.0106716 Vertex 26777 -0.0456126 0.0519231 -0.010201 Vertex 26778 -0.0466073 0.0518764 -0.00969859 Vertex 26779 -0.0475855 0.0518372 -0.00929506 Vertex 26780 -0.0485842 0.0517801 -0.00897412 Vertex 26781 -0.0496209 0.0517545 -0.00857532 Vertex 26782 -0.0506189 0.0517055 -0.00806622 Vertex 26783 -0.0515646 0.0516091 -0.00736491 Vertex 26784 -0.0719293 0.126758 -0.00881076 Vertex 26785 -0.0671422 0.159475 -0.0561779 Vertex 26786 -0.060985 0.168641 -0.0594898 Vertex 26787 -0.0370838 0.159234 -0.0122889 Vertex 26788 -0.0111259 0.174182 -0.0282833 Vertex 26789 -0.0211162 0.1638 -0.0163957 Vertex 26790 -0.0785368 0.0694183 0.0145853 Vertex 26791 -0.026172 0.174158 -0.0190728 Vertex 26792 -0.0828745 0.119161 -0.00328383 Vertex 26793 -0.0678764 0.117979 -0.00873338 Vertex 26794 -0.0678387 0.0966346 -0.0163917 Vertex 26795 0.050335 0.0531616 -0.00370253 Vertex 26796 0.0493343 0.0532247 -0.0043679 Vertex 26797 0.0483353 0.0532726 -0.00489034 Vertex 26798 0.0473212 0.0533258 -0.00537345 Vertex 26799 0.046334 0.0533506 -0.00578803 Vertex 26800 0.0453353 0.0533808 -0.00616451 Vertex 26801 0.0443487 0.0533892 -0.00643258 Vertex 26802 0.043354 0.053395 -0.00666154 Vertex 26803 0.04237 0.0533961 -0.00679891 Vertex 26804 0.0413792 0.0533854 -0.00680998 Vertex 26805 0.0403849 0.0533789 -0.00673496 Vertex 26806 0.0393899 0.0533602 -0.00667374 Vertex 26807 0.0383695 0.0533606 -0.00654853 Vertex 26808 0.0373499 0.0533605 -0.00643641 Vertex 26809 0.0362915 0.0534119 -0.00658438 Vertex 26810 0.0353371 0.0534224 -0.00701071 Vertex 26811 -0.0291607 0.171183 -0.0175503 Vertex 26812 -0.0864944 0.112209 0.0250023 Vertex 26813 -0.0642284 0.165303 -0.0599757 Vertex 26814 -0.0568734 0.0358081 0.0462717 Vertex 26815 -0.0748829 0.104948 -0.0102086 Vertex 26816 -0.0489879 0.148715 -0.00337283 Vertex 26817 -0.0368889 0.109941 -0.0191779 Vertex 26818 -0.0689104 0.122371 -0.00889897 Vertex 26819 0.0263272 0.0545944 -0.0208638 Vertex 26820 -0.0688283 0.0966095 -0.0161149 Vertex 26821 -0.0698935 0.122364 -0.00881274 Vertex 26822 0.0233509 0.0549381 -0.0249484 Vertex 26823 0.0223236 0.0550419 -0.0260567 Vertex 26824 0.0213579 0.055075 -0.0266156 Vertex 26825 0.0203316 0.0551325 -0.0272049 Vertex 26826 0.0193474 0.0551603 -0.0276297 Vertex 26827 0.0183451 0.0551894 -0.0280076 Vertex 26828 0.0173468 0.0552065 -0.0282783 Vertex 26829 0.0163504 0.0552051 -0.0284322 Vertex 26830 0.0153369 0.0552331 -0.0286287 Vertex 26831 0.0143485 0.0552312 -0.0288146 Vertex 26832 0.0133284 0.055284 -0.0292269 Vertex 26833 0.0123553 0.0552818 -0.0294499 Vertex 26834 0.0113495 0.0553023 -0.0296776 Vertex 26835 0.0103374 0.0553349 -0.0300221 Vertex 26836 0.00934189 0.0553527 -0.0303034 Vertex 26837 0.00833741 0.055373 -0.0305597 Vertex 26838 0.00733312 0.0553775 -0.0306811 Vertex 26839 0.00633113 0.0553726 -0.0306713 Vertex 26840 0.00533357 0.055349 -0.0305496 Vertex 26841 0.00433576 0.055339 -0.0305463 Vertex 26842 0.00332905 0.0553943 -0.0309954 Vertex 26843 0.00233104 0.0554199 -0.0313859 Vertex 26844 0.00133514 0.0554198 -0.0315391 Vertex 26845 0.000334373 0.0554042 -0.031412 Vertex 26846 -0.000679533 0.0554388 -0.0315999 Vertex 26847 -0.00167125 0.0554598 -0.0320096 Vertex 26848 -0.00266679 0.0554838 -0.0324138 Vertex 26849 -0.00367406 0.0555102 -0.0326331 Vertex 26850 -0.00467238 0.0555139 -0.0327809 Vertex 26851 -0.00566586 0.0555015 -0.0328252 Vertex 26852 -0.00666974 0.0555272 -0.0330407 Vertex 26853 -0.00767881 0.0555674 -0.03337 Vertex 26854 -0.00866441 0.055565 -0.0335626 Vertex 26855 -0.00967937 0.0555867 -0.0337759 Vertex 26856 -0.0106808 0.0555967 -0.0338825 Vertex 26857 -0.0116788 0.0555838 -0.0339192 Vertex 26858 -0.0126796 0.0555759 -0.033924 Vertex 26859 -0.0136846 0.0555659 -0.0339274 Vertex 26860 -0.014689 0.0555534 -0.0339367 Vertex 26861 -0.0156885 0.0555599 -0.0339026 Vertex 26862 -0.0166951 0.0555255 -0.0336624 Vertex 26863 -0.0176989 0.0554882 -0.03328 Vertex 26864 -0.0186879 0.0554617 -0.0328673 Vertex 26865 -0.0196701 0.0554437 -0.0324495 Vertex 26866 -0.0206991 0.0553418 -0.0317435 Vertex 26867 -0.0216946 0.055283 -0.031103 Vertex 26868 -0.0226761 0.0552382 -0.0304344 Vertex 26869 -0.0236788 0.0551648 -0.029679 Vertex 26870 -0.0246949 0.0550734 -0.0288078 Vertex 26871 -0.0718855 0.122345 -0.00846405 Vertex 26872 -0.029123 0.166739 -0.016877 Vertex 26873 -0.0709583 0.135514 -0.00804855 Vertex 26874 -0.0531001 0.154605 -0.00338641 Vertex 26875 -0.0209654 0.035527 0.0525237 Vertex 26876 -0.0291548 0.169699 -0.0175574 Vertex 26877 -0.0600079 0.128191 -0.00754937 Vertex 26878 -0.0326324 0.0534241 -0.0105104 Vertex 26879 -0.0336295 0.0533957 -0.0102549 Vertex 26880 -0.0346283 0.0533938 -0.0102529 Vertex 26881 -0.0356288 0.0533886 -0.010251 Vertex 26882 -0.0366299 0.0534085 -0.0105028 Vertex 26883 -0.0376274 0.0534153 -0.0106276 Vertex 26884 -0.0386286 0.0534191 -0.0107521 Vertex 26885 -0.0396286 0.0534411 -0.011004 Vertex 26886 -0.0406319 0.0534345 -0.0110028 Vertex 26887 -0.0416287 0.0534443 -0.0111279 Vertex 26888 -0.0426252 0.0534503 -0.0112074 Vertex 26889 -0.0436286 0.0534388 -0.0110764 Vertex 26890 -0.0446124 0.0534121 -0.0108089 Vertex 26891 -0.0456135 0.053373 -0.0104441 Vertex 26892 -0.04663 0.0533425 -0.0102323 Vertex 26893 -0.0476286 0.0532889 -0.00972253 Vertex 26894 -0.0486234 0.0532712 -0.0094518 Vertex 26895 -0.0496217 0.0532216 -0.00894483 Vertex 26896 -0.0506187 0.0531538 -0.00831388 Vertex 26897 -0.0516111 0.0530832 -0.00753985 Vertex 26898 -0.0525768 0.0530264 -0.00686565 Vertex 26899 -0.0649158 0.115218 -0.010913 Vertex 26900 -0.0669175 0.115159 -0.00990572 Vertex 26901 -0.0632016 0.165278 -0.0601981 Vertex 26902 -0.04111 0.159177 -0.0108205 Vertex 26903 -0.012216 0.174205 -0.0276647 Vertex 26904 -0.0174829 0.0365879 0.0522725 Vertex 26905 -0.0894731 0.112826 0.0381953 Vertex 26906 -0.0769168 0.123731 -0.00719316 Vertex 26907 -0.0511234 0.159083 -0.0045978 Vertex 26908 -0.0758756 0.104904 -0.00955908 Vertex 26909 -0.0698286 0.0965949 -0.0159812 Vertex 26910 0.0512982 0.0545874 -0.00353058 Vertex 26911 0.050316 0.0546413 -0.00421167 Vertex 26912 0.0493081 0.0547033 -0.00484617 Vertex 26913 0.0483233 0.0547304 -0.00526262 Vertex 26914 0.0473276 0.0547587 -0.00564531 Vertex 26915 0.0463433 0.054773 -0.00593764 Vertex 26916 0.0453586 0.0547792 -0.00610681 Vertex 26917 0.0443577 0.0547836 -0.00632411 Vertex 26918 0.043364 0.0547822 -0.00644446 Vertex 26919 0.0423718 0.0547731 -0.00653415 Vertex 26920 0.0413802 0.0547717 -0.00646982 Vertex 26921 0.0403843 0.0547484 -0.00641578 Vertex 26922 0.0393677 0.0547517 -0.00623241 Vertex 26923 0.038354 0.0547461 -0.00609927 Vertex 26924 0.0372666 0.0547889 -0.00619261 Vertex 26925 0.0364026 0.0547846 -0.00674979 Vertex 26926 -0.0768582 0.104852 -0.0089026 Vertex 26927 -0.0127272 0.0348945 -0.0256797 Vertex 26928 -0.0702558 0.152263 -0.0463745 Vertex 26929 -0.0673815 0.0659915 0.0287149 Vertex 26930 -0.0609083 0.0612023 0.0236586 Vertex 26931 -0.0428742 0.10707 -0.020141 Vertex 26932 -0.0438868 0.107083 -0.0199439 Vertex 26933 -0.00832726 0.0349131 -0.024554 Vertex 26934 -0.0778811 0.104813 -0.00803583 Vertex 26935 -0.0098895 0.107351 -0.0224128 Vertex 26936 -0.0718881 0.12088 -0.00850233 Vertex 26937 0.0233296 0.0564006 -0.0254415 Vertex 26938 0.0223237 0.0564658 -0.026195 Vertex 26939 0.0213412 0.0565052 -0.0267347 Vertex 26940 0.0203586 0.0565379 -0.0271575 Vertex 26941 0.019355 0.0565693 -0.0275356 Vertex 26942 0.0183336 0.0566072 -0.0279953 Vertex 26943 0.0173308 0.0566344 -0.0283721 Vertex 26944 0.016338 0.0566541 -0.0286494 Vertex 26945 0.0153242 0.0566704 -0.0288596 Vertex 26946 0.0143357 0.0566765 -0.0290221 Vertex 26947 0.0133515 0.0566849 -0.029233 Vertex 26948 0.0123244 0.0567269 -0.0296218 Vertex 26949 0.0113407 0.0567362 -0.0298085 Vertex 26950 0.0103421 0.0567446 -0.0299462 Vertex 26951 0.00933423 0.0567711 -0.0303022 Vertex 26952 0.00833271 0.0567886 -0.0305627 Vertex 26953 0.00733204 0.0567933 -0.0307054 Vertex 26954 0.00633058 0.0567988 -0.0308016 Vertex 26955 0.00534315 0.0567731 -0.0307134 Vertex 26956 0.00432629 0.0568097 -0.0310178 Vertex 26957 0.00332264 0.0568618 -0.0316357 Vertex 26958 0.00231866 0.0568936 -0.0320023 Vertex 26959 0.00132582 0.0568889 -0.0321653 Vertex 26960 0.000325641 0.0568761 -0.0321896 Vertex 26961 -0.000675964 0.056864 -0.0322097 Vertex 26962 -0.00166807 0.0568963 -0.03242 Vertex 26963 -0.00267325 0.0569172 -0.0326724 Vertex 26964 -0.00367712 0.0569332 -0.0329252 Vertex 26965 -0.00467074 0.0569349 -0.0330586 Vertex 26966 -0.00567144 0.0569411 -0.0332111 Vertex 26967 -0.0066784 0.0569449 -0.0331859 Vertex 26968 -0.0076798 0.0569676 -0.0334142 Vertex 26969 -0.00868086 0.056987 -0.0336771 Vertex 26970 -0.00968443 0.0570101 -0.0338896 Vertex 26971 -0.0106831 0.0570151 -0.0340192 Vertex 26972 -0.0116803 0.0570084 -0.0342026 Vertex 26973 -0.0126851 0.0570335 -0.0344182 Vertex 26974 -0.0136861 0.0570325 -0.0345667 Vertex 26975 -0.0146932 0.0570315 -0.0346956 Vertex 26976 -0.015693 0.057044 -0.0346551 Vertex 26977 -0.0166991 0.0570076 -0.034416 Vertex 26978 -0.0177034 0.0569685 -0.0340386 Vertex 26979 -0.0186964 0.0569405 -0.033635 Vertex 26980 -0.0197019 0.0568866 -0.0331333 Vertex 26981 -0.0206969 0.0568414 -0.0326165 Vertex 26982 -0.021696 0.0567795 -0.0319795 Vertex 26983 -0.0226771 0.0567339 -0.0313199 Vertex 26984 -0.0236825 0.0566574 -0.0305632 Vertex 26985 -0.0708385 0.0965734 -0.0156262 Vertex 26986 -0.0719625 0.135504 -0.00769556 Vertex 26987 -0.0390578 0.156263 -0.0100859 Vertex 26988 -0.0600535 0.138395 -0.00620678 Vertex 26989 -0.0685768 0.0699128 0.0338326 Vertex 26990 -0.0301445 0.169695 -0.0171502 Vertex 26991 -0.0326395 0.0549161 -0.0112709 Vertex 26992 -0.0336359 0.0548461 -0.0105101 Vertex 26993 -0.0346346 0.0548282 -0.01038 Vertex 26994 -0.0356376 0.0548341 -0.0105043 Vertex 26995 -0.0366336 0.0548529 -0.010755 Vertex 26996 -0.0376334 0.0548474 -0.0107543 Vertex 26997 -0.0386347 0.0548667 -0.0110053 Vertex 26998 -0.0396388 0.0548721 -0.0111311 Vertex 26999 -0.0406365 0.0548831 -0.0112562 Vertex 27000 -0.0416396 0.0548863 -0.0113812 Vertex 27001 -0.0426358 0.0548841 -0.0113796 Vertex 27002 -0.0436275 0.0548777 -0.0111987 Vertex 27003 -0.0446392 0.0548635 -0.0110876 Vertex 27004 -0.0456223 0.0548403 -0.0108081 Vertex 27005 -0.0466235 0.0548092 -0.0105711 Vertex 27006 -0.0476209 0.0547841 -0.0103184 Vertex 27007 -0.0486159 0.0547593 -0.0100622 Vertex 27008 -0.0496187 0.054694 -0.00943972 Vertex 27009 -0.0506072 0.0546369 -0.00878713 Vertex 27010 -0.0516224 0.0545433 -0.00792825 Vertex 27011 -0.0525943 0.0544911 -0.00726112 Vertex 27012 0.0101437 0.101615 -0.0217271 Vertex 27013 -0.0718229 0.0965348 -0.0152102 Vertex 27014 -0.0401214 0.159176 -0.0112287 Vertex 27015 -0.0132305 0.174198 -0.0268981 Vertex 27016 -0.0186635 0.0360947 0.0525267 Vertex 27017 -0.0551833 0.07213 0.0401196 Vertex 27018 -0.0570027 0.145725 -0.00171879 Vertex 27019 -0.0770006 0.139838 -0.00569476 Vertex 27020 -0.0644637 0.0743344 0.0396953 Vertex 27021 -0.0728436 0.0965116 -0.0147387 Vertex 27022 0.052283 0.0559902 -0.003254 Vertex 27023 0.051337 0.0560222 -0.00385605 Vertex 27024 0.0502975 0.0560957 -0.00457555 Vertex 27025 0.0492985 0.0561391 -0.00508332 Vertex 27026 0.0483282 0.0561556 -0.00540695 Vertex 27027 0.0473464 0.0561746 -0.0057008 Vertex 27028 0.0463445 0.0561751 -0.00589814 Vertex 27029 0.0453589 0.0561811 -0.00597324 Vertex 27030 0.0443653 0.0561662 -0.00597205 Vertex 27031 0.0433693 0.0561672 -0.00598915 Vertex 27032 0.0423724 0.056151 -0.00596664 Vertex 27033 0.0413778 0.0561233 -0.00592276 Vertex 27034 0.0403616 0.0561214 -0.00579676 Vertex 27035 0.0393484 0.0561243 -0.00568756 Vertex 27036 0.0381487 0.056188 -0.00571384 Vertex 27037 0.0373902 0.0561474 -0.00613784 Vertex 27038 -0.0738591 0.0964804 -0.0142486 Vertex 27039 -0.079955 0.130987 -0.00485489 Vertex 27040 -0.0659714 0.070335 0.0357803 Vertex 27041 -0.0223475 0.0360366 0.0535038 Vertex 27042 -0.0627763 0.0614875 0.0230054 Vertex 27043 -0.0618627 0.061311 0.023361 Vertex 27044 -0.0448823 0.107056 -0.0197924 Vertex 27045 -0.0569949 0.126695 -0.00683103 Vertex 27046 -0.0579896 0.126711 -0.00710506 Vertex 27047 -0.0748494 0.0964384 -0.0137204 Vertex 27048 -0.062999 0.13114 -0.0082084 Vertex 27049 -0.0758579 0.0963896 -0.0129621 Vertex 27050 -0.0258791 0.105846 -0.022482 Vertex 27051 0.0233313 0.0578274 -0.025582 Vertex 27052 0.0223386 0.0578809 -0.0262309 Vertex 27053 0.0213573 0.057915 -0.0266602 Vertex 27054 0.0203532 0.0579488 -0.0270415 Vertex 27055 0.0193386 0.0579734 -0.027391 Vertex 27056 0.0183304 0.0579992 -0.0277502 Vertex 27057 0.0173244 0.0580274 -0.0281164 Vertex 27058 0.0163249 0.0580554 -0.0285 Vertex 27059 0.0153317 0.0580768 -0.0287753 Vertex 27060 0.0143467 0.0580862 -0.0289605 Vertex 27061 0.0133351 0.058103 -0.0291864 Vertex 27062 0.0123335 0.0581189 -0.0294366 Vertex 27063 0.0113242 0.0581457 -0.0297724 Vertex 27064 0.0103353 0.0581557 -0.0299403 Vertex 27065 0.00932784 0.0581716 -0.0301717 Vertex 27066 0.0083246 0.0581885 -0.03043 Vertex 27067 0.00733033 0.058195 -0.0305865 Vertex 27068 0.00633738 0.0581963 -0.0307089 Vertex 27069 0.00534103 0.0581999 -0.0308279 Vertex 27070 0.00432828 0.0582523 -0.0314184 Vertex 27071 0.00330684 0.0583228 -0.0321215 Vertex 27072 0.00231832 0.0583343 -0.0324165 Vertex 27073 0.00133085 0.058325 -0.0325937 Vertex 27074 0.000324051 0.0583269 -0.0327186 Vertex 27075 -0.000687654 0.0583509 -0.0327859 Vertex 27076 -0.00168424 0.0583535 -0.0329231 Vertex 27077 -0.00267903 0.0583624 -0.0332032 Vertex 27078 -0.00368236 0.0583856 -0.0334327 Vertex 27079 -0.00468764 0.0584239 -0.0337898 Vertex 27080 -0.0056922 0.0584499 -0.034018 Vertex 27081 -0.00668986 0.0584241 -0.0339312 Vertex 27082 -0.00768539 0.0584014 -0.0338334 Vertex 27083 -0.00868753 0.0584178 -0.0339256 Vertex 27084 -0.00968478 0.0584187 -0.0340646 Vertex 27085 -0.010684 0.0584354 -0.034314 Vertex 27086 -0.0116935 0.0584778 -0.0346471 Vertex 27087 -0.0126939 0.0585083 -0.0350263 Vertex 27088 -0.0136906 0.0585033 -0.0353384 Vertex 27089 -0.014696 0.0585192 -0.0354314 Vertex 27090 -0.0156999 0.0584946 -0.0353551 Vertex 27091 -0.0167051 0.0584876 -0.0351851 Vertex 27092 -0.0177087 0.0584461 -0.0348025 Vertex 27093 -0.0187146 0.058392 -0.0343021 Vertex 27094 -0.0197122 0.0583602 -0.0339067 Vertex 27095 -0.0207287 0.058287 -0.0332963 Vertex 27096 -0.0217072 0.0582569 -0.0327502 Vertex 27097 -0.0226723 0.0582322 -0.0321918 Vertex 27098 -0.0237128 0.058121 -0.0313582 Vertex 27099 -0.0682308 0.180685 -0.0584278 Vertex 27100 -0.0530196 0.144246 -0.000696127 Vertex 27101 -0.0458982 0.107069 -0.0194756 Vertex 27102 -0.0451284 0.159142 -0.00893675 Vertex 27103 -0.0784224 0.0725404 0.0242536 Vertex 27104 -0.0764595 0.111219 0.0459768 Vertex 27105 -0.0380606 0.157756 -0.011216 Vertex 27106 -0.0181903 0.172708 -0.0227977 Vertex 27107 -0.0326464 0.0563525 -0.0113988 Vertex 27108 -0.0336457 0.0562895 -0.0107616 Vertex 27109 -0.0346417 0.056288 -0.0107606 Vertex 27110 -0.0356438 0.0562686 -0.010631 Vertex 27111 -0.0366402 0.0563002 -0.0110085 Vertex 27112 -0.0376403 0.0562958 -0.0110081 Vertex 27113 -0.0386435 0.0563025 -0.0111331 Vertex 27114 -0.0396488 0.0563195 -0.0111963 Vertex 27115 -0.0406484 0.0563266 -0.0113192 Vertex 27116 -0.0416459 0.056333 -0.0114534 Vertex 27117 -0.0426429 0.0563425 -0.0115708 Vertex 27118 -0.0436328 0.056346 -0.0115255 Vertex 27119 -0.0446309 0.0563208 -0.0114385 Vertex 27120 -0.045625 0.056311 -0.011298 Vertex 27121 -0.0466333 0.0562665 -0.0109539 Vertex 27122 -0.0476133 0.0562658 -0.0107838 Vertex 27123 -0.0486224 0.0562169 -0.0104362 Vertex 27124 -0.0496168 0.0561697 -0.00993077 Vertex 27125 -0.0506142 0.0560954 -0.00917258 Vertex 27126 -0.0516036 0.0560273 -0.00839821 Vertex 27127 -0.0525972 0.055954 -0.00763978 Vertex 27128 -0.0749344 0.128178 -0.00819506 Vertex 27129 0.00215199 0.101646 -0.0224127 Vertex 27130 -0.0610181 0.13697 -0.00676267 Vertex 27131 -0.0390807 0.159219 -0.0117734 Vertex 27132 -0.0142233 0.174199 -0.0261217 Vertex 27133 -0.0198519 0.0357263 0.0525976 Vertex 27134 -0.0690768 0.0739443 0.0372765 Vertex 27135 -0.056007 0.145723 -0.001571 Vertex 27136 -0.0839821 0.127994 -0.00381712 Vertex 27137 0.00114374 0.101639 -0.0226194 Vertex 27138 0.0533093 0.0573451 -0.00263239 Vertex 27139 0.0522757 0.0574291 -0.0035048 Vertex 27140 0.0513136 0.0574694 -0.00408483 Vertex 27141 0.0503092 0.0575099 -0.00459296 Vertex 27142 0.0493319 0.0575419 -0.00502247 Vertex 27143 0.0483442 0.0575601 -0.00531363 Vertex 27144 0.0473422 0.0575607 -0.00551801 Vertex 27145 0.0463579 0.0575632 -0.00556359 Vertex 27146 0.0453646 0.0575572 -0.00557548 Vertex 27147 0.044367 0.0575454 -0.00546316 Vertex 27148 0.0433693 0.0575272 -0.00543691 Vertex 27149 0.0423711 0.0575006 -0.00528711 Vertex 27150 0.041351 0.0574751 -0.0052144 Vertex 27151 0.0403284 0.0574912 -0.00511853 Vertex 27152 0.0390604 0.0575755 -0.00514174 Vertex 27153 0.0383787 0.0575308 -0.00558257 Vertex 27154 0.000146179 0.101649 -0.0227639 Vertex 27155 -0.0729303 0.131104 -0.00814819 Vertex 27156 -0.0689665 0.135529 -0.00828838 Vertex 27157 -0.0468823 0.107031 -0.0193009 Vertex 27158 -0.0478798 0.107016 -0.0192852 Vertex 27159 -0.0798628 0.122191 -0.00554615 Vertex 27160 -0.0809073 0.123633 -0.00507492 Vertex 27161 -0.0708734 0.116483 -0.00801313 Vertex 27162 -0.0569713 0.125238 -0.00711806 Vertex 27163 -0.0798905 0.126603 -0.00582167 Vertex 27164 -0.0348545 0.0986254 -0.0227182 Vertex 27165 -0.0669104 0.120913 -0.00889891 Vertex 27166 0.0243264 0.0591823 -0.0248233 Vertex 27167 0.0233583 0.0592365 -0.0255115 Vertex 27168 0.0223181 0.0592817 -0.0260832 Vertex 27169 0.0213663 0.0593118 -0.0264401 Vertex 27170 0.0203189 0.05934 -0.026848 Vertex 27171 0.0193411 0.0593649 -0.0271573 Vertex 27172 0.0183283 0.0593891 -0.0275077 Vertex 27173 0.0173372 0.059408 -0.0277846 Vertex 27174 0.0163083 0.0594423 -0.028212 Vertex 27175 0.0153286 0.0594649 -0.0285327 Vertex 27176 0.0143257 0.0594816 -0.0287805 Vertex 27177 0.0133255 0.0594987 -0.0290386 Vertex 27178 0.0123252 0.0595168 -0.0292981 Vertex 27179 0.0113105 0.059545 -0.0296135 Vertex 27180 0.0103113 0.0595614 -0.0298764 Vertex 27181 0.00930976 0.0595795 -0.0301167 Vertex 27182 0.00833511 0.0595736 -0.0302453 Vertex 27183 0.00732527 0.0595899 -0.0304419 Vertex 27184 0.00632209 0.0596079 -0.030662 Vertex 27185 0.00534844 0.0596161 -0.0309806 Vertex 27186 0.00434041 0.0596672 -0.031584 Vertex 27187 0.00330662 0.0597508 -0.0323981 Vertex 27188 0.00232768 0.0597693 -0.0328325 Vertex 27189 0.00131504 0.0597888 -0.0330641 Vertex 27190 0.000314733 0.0597904 -0.0332055 Vertex 27191 -0.000694781 0.0597985 -0.0333207 Vertex 27192 -0.00169833 0.0598396 -0.033652 Vertex 27193 -0.00268673 0.0598311 -0.0338297 Vertex 27194 -0.00369909 0.0598617 -0.0340393 Vertex 27195 -0.00468835 0.0598784 -0.0344633 Vertex 27196 -0.00569643 0.0599053 -0.0346867 Vertex 27197 -0.00669968 0.0599043 -0.0346663 Vertex 27198 -0.00769877 0.0598808 -0.0345717 Vertex 27199 -0.00869265 0.0598566 -0.0344628 Vertex 27200 -0.00969446 0.0598719 -0.0345693 Vertex 27201 -0.0106878 0.0598858 -0.0348312 Vertex 27202 -0.0116999 0.0599414 -0.0352829 Vertex 27203 -0.0126927 0.0599517 -0.0357172 Vertex 27204 -0.0137008 0.0599733 -0.0359611 Vertex 27205 -0.0147132 0.0599449 -0.0358879 Vertex 27206 -0.0157056 0.0599572 -0.0358177 Vertex 27207 -0.0167077 0.059948 -0.0356741 Vertex 27208 -0.0177128 0.0599179 -0.0354327 Vertex 27209 -0.0187116 0.0598792 -0.0350421 Vertex 27210 -0.0197012 0.0598498 -0.0346368 Vertex 27211 -0.020723 0.0597726 -0.0340423 Vertex 27212 -0.0217032 0.0597401 -0.0334972 Vertex 27213 -0.0226971 0.059684 -0.0328522 Vertex 27214 -0.0237052 0.0596068 -0.0321069 Vertex 27215 -0.0338487 0.098628 -0.022813 Vertex 27216 -0.0679219 0.123838 -0.00890383 Vertex 27217 -0.0630199 0.134039 -0.00765574 Vertex 27218 -0.027105 0.162286 -0.015104 Vertex 27219 -0.0261075 0.162258 -0.0150297 Vertex 27220 -0.0211482 0.169745 -0.0200914 Vertex 27221 -0.0172406 0.178621 -0.0252251 Vertex 27222 -0.0576689 0.0350157 0.0450337 Vertex 27223 -0.0326534 0.0578275 -0.0120318 Vertex 27224 -0.0336503 0.0577563 -0.0112696 Vertex 27225 -0.0346492 0.0577427 -0.0111408 Vertex 27226 -0.0356468 0.0577276 -0.0110125 Vertex 27227 -0.0366476 0.0577363 -0.0111372 Vertex 27228 -0.0376499 0.0577418 -0.0112619 Vertex 27229 -0.0386568 0.0577511 -0.0111914 Vertex 27230 -0.0396568 0.0577566 -0.0113194 Vertex 27231 -0.0406583 0.0577787 -0.0115563 Vertex 27232 -0.0416597 0.057808 -0.0117566 Vertex 27233 -0.0426568 0.0578158 -0.011891 Vertex 27234 -0.0436492 0.0577877 -0.0118151 Vertex 27235 -0.0446453 0.0577855 -0.0118043 Vertex 27236 -0.0456409 0.0577841 -0.0117617 Vertex 27237 -0.0466248 0.0577591 -0.0115398 Vertex 27238 -0.0476199 0.057734 -0.011287 Vertex 27239 -0.0486418 0.0576652 -0.0108452 Vertex 27240 -0.0496329 0.05762 -0.010324 Vertex 27241 -0.0506054 0.0575708 -0.00965819 Vertex 27242 -0.0515955 0.0575054 -0.00888629 Vertex 27243 -0.0525841 0.0574366 -0.00812203 Vertex 27244 -0.00385838 0.101641 -0.0231016 Vertex 27245 -0.0658968 0.109505 -0.0131657 Vertex 27246 -0.0829482 0.128017 -0.00457928 Vertex 27247 -0.0380826 0.159224 -0.0120325 Vertex 27248 -0.0152002 0.174208 -0.0254562 Vertex 27249 -0.0489243 0.0675117 0.0383488 Vertex 27250 -0.0799103 0.125126 -0.00560703 Vertex 27251 -0.00486253 0.101638 -0.0232055 Vertex 27252 0.0533192 0.0587911 -0.00291354 Vertex 27253 0.0523216 0.0588453 -0.00357691 Vertex 27254 0.0513156 0.0588831 -0.00408417 Vertex 27255 0.0503218 0.0589081 -0.00447436 Vertex 27256 0.0493315 0.0589269 -0.00474568 Vertex 27257 -0.0849335 0.125015 -0.00321773 Vertex 27258 -0.0689044 0.110844 -0.0111483 Vertex 27259 -0.0903629 0.11521 0.0252935 Vertex 27260 -0.0838537 0.110728 0.0339922 Vertex 27261 0.0423563 0.0588819 -0.00453174 Vertex 27262 0.0413366 0.0588699 -0.00449648 Vertex 27263 0.0401031 0.0589615 -0.00453029 Vertex 27264 -0.0759667 0.135448 -0.00632576 Vertex 27265 -0.0769787 0.135423 -0.00568624 Vertex 27266 -0.0501013 0.15611 -0.00554414 Vertex 27267 -0.0709386 0.131124 -0.00852217 Vertex 27268 -0.0301745 0.17266 -0.0167996 Vertex 27269 -0.0450894 0.154663 -0.00752455 Vertex 27270 -0.0662371 0.173912 -0.0594768 Vertex 27271 -0.0559996 0.126683 -0.00642409 Vertex 27272 0.00809889 0.111578 -0.0196036 Vertex 27273 -0.0769591 0.131054 -0.00672048 Vertex 27274 -0.0652895 0.175332 -0.0607504 Vertex 27275 -0.0809104 0.126584 -0.00546143 Vertex 27276 -0.0778493 0.11932 -0.00645768 Vertex 27277 -0.0108856 0.107334 -0.0222671 Vertex 27278 -0.0809138 0.125107 -0.00520991 Vertex 27279 0.0243337 0.0605883 -0.0247185 Vertex 27280 0.0223381 0.0606785 -0.0258752 Vertex 27281 0.0213347 0.0607071 -0.0262571 Vertex 27282 0.0203114 0.0607424 -0.0267183 Vertex 27283 0.0193241 0.0607694 -0.0271316 Vertex 27284 0.018318 0.0607989 -0.0274966 Vertex 27285 0.0173361 0.0608154 -0.0277985 Vertex 27286 0.0163111 0.0608546 -0.0282401 Vertex 27287 0.0153317 0.060873 -0.028643 Vertex 27288 0.014321 0.0608889 -0.0289153 Vertex 27289 0.0133301 0.0609017 -0.0290805 Vertex 27290 0.0123248 0.0609207 -0.0293142 Vertex 27291 0.0113097 0.0609536 -0.0296395 Vertex 27292 0.0103202 0.0609665 -0.0299301 Vertex 27293 0.00939521 0.0609325 -0.0302492 Vertex 27294 0.00834248 0.0609508 -0.0305126 Vertex 27295 0.0073096 0.0609801 -0.0307365 Vertex 27296 0.00631667 0.061015 -0.0309472 Vertex 27297 0.0053093 0.0610791 -0.0314051 Vertex 27298 0.00431168 0.0611153 -0.0319161 Vertex 27299 0.00330328 0.0611715 -0.0325304 Vertex 27300 0.00230145 0.0612209 -0.0331693 Vertex 27301 0.00131984 0.0612266 -0.0334746 Vertex 27302 0.00030024 0.0612559 -0.033673 Vertex 27303 -0.000691446 0.0612541 -0.0338404 Vertex 27304 -0.00170296 0.0612915 -0.034176 Vertex 27305 -0.00269376 0.0613003 -0.0344696 Vertex 27306 -0.00368188 0.0613041 -0.0346439 Vertex 27307 -0.00469624 0.0613427 -0.0349676 Vertex 27308 -0.00570279 0.0613633 -0.0351663 Vertex 27309 -0.0067083 0.0613544 -0.0352012 Vertex 27310 -0.007704 0.0613485 -0.0352024 Vertex 27311 -0.0087012 0.0613261 -0.0351009 Vertex 27312 -0.0097823 0.0613531 -0.0352263 Vertex 27313 -0.0106993 0.061373 -0.0355475 Vertex 27314 -0.0117022 0.0613984 -0.0359464 Vertex 27315 -0.0126944 0.0614008 -0.0362648 Vertex 27316 -0.0137086 0.0614344 -0.0364468 Vertex 27317 -0.0147098 0.0613984 -0.0362354 Vertex 27318 -0.0157153 0.0613848 -0.0360938 Vertex 27319 -0.0167191 0.0613704 -0.0359554 Vertex 27320 -0.0177152 0.0613627 -0.0358053 Vertex 27321 -0.0187202 0.0613304 -0.0355606 Vertex 27322 -0.0197239 0.0612902 -0.0351879 Vertex 27323 -0.0207268 0.0612423 -0.0346723 Vertex 27324 -0.0217336 0.0611778 -0.0340471 Vertex 27325 -0.022701 0.0611501 -0.0334866 Vertex 27326 -0.0237002 0.0610797 -0.032726 Vertex 27327 -0.058072 0.135467 -0.00577889 Vertex 27328 -0.0171973 0.174198 -0.0240623 Vertex 27329 -0.0301008 0.162274 -0.0148279 Vertex 27330 -0.0142042 0.169737 -0.0232161 Vertex 27331 -0.0221552 0.169733 -0.0198584 Vertex 27332 -0.0311605 0.169689 -0.016551 Vertex 27333 -0.0326614 0.0592947 -0.0125392 Vertex 27334 -0.0336617 0.0592604 -0.0121578 Vertex 27335 -0.034656 0.0592094 -0.011649 Vertex 27336 -0.035656 0.0591967 -0.0115208 Vertex 27337 -0.0366574 0.0591917 -0.011518 Vertex 27338 -0.0376568 0.0591992 -0.0116433 Vertex 27339 -0.0386562 0.0591953 -0.0114762 Vertex 27340 -0.0396639 0.0592228 -0.0116772 Vertex 27341 -0.0406662 0.0592305 -0.0118049 Vertex 27342 -0.0416678 0.0592681 -0.0121392 Vertex 27343 -0.0426623 0.0592741 -0.0122692 Vertex 27344 -0.0436566 0.0592613 -0.0123074 Vertex 27345 -0.0446505 0.0592548 -0.0123035 Vertex 27346 -0.0456444 0.0592254 -0.0120696 Vertex 27347 -0.0466281 0.0592297 -0.0120314 Vertex 27348 -0.0476369 0.0591928 -0.0118235 Vertex 27349 -0.0486367 0.0591511 -0.0114572 Vertex 27350 -0.0496312 0.0590927 -0.0108209 Vertex 27351 -0.0506178 0.0590261 -0.0100428 Vertex 27352 -0.051624 0.0589527 -0.00929309 Vertex 27353 -0.0526285 0.0588799 -0.00854194 Vertex 27354 -0.0536041 0.0588172 -0.00776341 Vertex 27355 -0.0758718 0.109158 -0.00765228 Vertex 27356 -0.0629342 0.109643 -0.0151294 Vertex 27357 -0.0360892 0.159232 -0.0124312 Vertex 27358 -0.0162071 0.174195 -0.0247085 Vertex 27359 -0.0488761 0.107007 -0.0192731 Vertex 27360 -0.0498753 0.106996 -0.0192538 Vertex 27361 -0.0559081 0.112628 -0.0165116 Vertex 27362 -0.0698329 0.112058 0.0465849 Vertex 27363 -0.0278615 0.0987172 -0.0237448 Vertex 27364 -0.0550257 0.131065 -0.00539027 Vertex 27365 -0.0588822 0.108299 -0.017343 Vertex 27366 -0.0460906 0.156154 -0.00788178 Vertex 27367 -0.0350646 0.156323 -0.010574 Vertex 27368 -0.0208606 0.101617 -0.0238418 Vertex 27369 -0.0218606 0.101624 -0.0238704 Vertex 27370 -0.0794629 0.0702542 0.0118898 Vertex 27371 -0.0228597 0.101618 -0.023963 Vertex 27372 -0.0238622 0.101613 -0.0238665 Vertex 27373 -0.0248661 0.101609 -0.0237851 Vertex 27374 -0.0649264 0.112407 -0.0127033 Vertex 27375 -0.0258651 0.101595 -0.0237434 Vertex 27376 -0.0268641 0.101582 -0.02361 Vertex 27377 -0.0278603 0.101566 -0.0234492 Vertex 27378 -0.0288578 0.101545 -0.0231915 Vertex 27379 -0.0298707 0.101527 -0.0228594 Vertex 27380 -0.0308625 0.101511 -0.0227041 Vertex 27381 -0.0411739 0.165162 -0.0113688 Vertex 27382 -0.0318682 0.101497 -0.022474 Vertex 27383 -0.0760085 0.141318 -0.005968 Vertex 27384 -0.0570352 0.129621 -0.00626418 Vertex 27385 -0.0642686 0.171043 -0.0609844 Vertex 27386 -0.0490718 0.151664 -0.00461846 Vertex 27387 -0.0642867 0.172466 -0.0611328 Vertex 27388 -0.0330915 0.16076 -0.0136886 Vertex 27389 -0.0528885 0.108408 -0.0187758 Vertex 27390 -0.0328698 0.101492 -0.0223548 Vertex 27391 -0.033869 0.10148 -0.022225 Vertex 27392 -0.0768562 0.117877 -0.00659127 Vertex 27393 -0.0778777 0.117832 -0.00599287 Vertex 27394 -0.0348704 0.101474 -0.022105 Vertex 27395 -0.0358626 0.101452 -0.0219425 Vertex 27396 -0.0368559 0.101427 -0.0217814 Vertex 27397 0.0222773 0.0620859 -0.0257917 Vertex 27398 0.0213389 0.0621093 -0.0262711 Vertex 27399 0.0203077 0.0621778 -0.0269805 Vertex 27400 0.0192994 0.062217 -0.0274738 Vertex 27401 0.0183032 0.0622432 -0.0278633 Vertex 27402 0.0173165 0.0622663 -0.028279 Vertex 27403 0.0162996 0.0623114 -0.0287447 Vertex 27404 0.0153241 0.0623295 -0.0291944 Vertex 27405 0.0143086 0.0623633 -0.0295361 Vertex 27406 0.0133075 0.062355 -0.0296823 Vertex 27407 0.0123118 0.0623753 -0.0299343 Vertex 27408 0.0112895 0.0624411 -0.0303571 Vertex 27409 0.0103005 0.0624571 -0.0307796 Vertex 27410 0.00933955 0.0624337 -0.0310444 Vertex 27411 0.00831584 0.0624371 -0.0312473 Vertex 27412 0.00730214 0.0624461 -0.0313742 Vertex 27413 0.00630898 0.0624816 -0.0315869 Vertex 27414 0.00532494 0.0625045 -0.0319907 Vertex 27415 0.00430293 0.0625774 -0.0325544 Vertex 27416 0.00330234 0.0626197 -0.0330565 Vertex 27417 0.00228793 0.0626666 -0.0335374 Vertex 27418 0.00133097 0.0626915 -0.0339607 Vertex 27419 0.000300907 0.0626948 -0.0340909 Vertex 27420 -0.000697034 0.0626894 -0.03411 Vertex 27421 -0.00171529 0.0627358 -0.0345403 Vertex 27422 -0.00271622 0.0627636 -0.0349069 Vertex 27423 -0.00370938 0.0627709 -0.0350699 Vertex 27424 -0.00470743 0.0627772 -0.0352137 Vertex 27425 -0.00571075 0.0627939 -0.0354611 Vertex 27426 -0.00670797 0.0627873 -0.0354975 Vertex 27427 -0.00771091 0.0627931 -0.0356131 Vertex 27428 -0.00870224 0.0627847 -0.0356447 Vertex 27429 -0.00970298 0.0627929 -0.0357349 Vertex 27430 -0.0107078 0.0628117 -0.0359649 Vertex 27431 -0.011709 0.0628424 -0.0363307 Vertex 27432 -0.0127025 0.0628523 -0.0366298 Vertex 27433 -0.0137183 0.0628763 -0.0368336 Vertex 27434 -0.0147168 0.0628748 -0.03682 Vertex 27435 -0.0157188 0.0628375 -0.0366012 Vertex 27436 -0.016725 0.0627999 -0.0362248 Vertex 27437 -0.0177283 0.0627822 -0.0360863 Vertex 27438 -0.018731 0.0627665 -0.0359648 Vertex 27439 -0.0197337 0.0627381 -0.0357065 Vertex 27440 -0.0207502 0.0626823 -0.0352205 Vertex 27441 -0.0217308 0.0626511 -0.0346671 Vertex 27442 -0.0227229 0.0625945 -0.0340193 Vertex 27443 -0.0237144 0.062529 -0.0332478 Vertex 27444 -0.0378618 0.101418 -0.0215553 Vertex 27445 0.0051136 0.11017 -0.0202785 Vertex 27446 -0.0579701 0.125253 -0.00738272 Vertex 27447 -0.0251052 0.162299 -0.0151004 Vertex 27448 -0.0152029 0.16973 -0.0225848 Vertex 27449 -0.0231673 0.169718 -0.0195033 Vertex 27450 -0.0321414 0.16968 -0.0161315 Vertex 27451 -0.038857 0.101401 -0.0214118 Vertex 27452 -0.0398612 0.101404 -0.0212384 Vertex 27453 -0.0336693 0.0607336 -0.0127906 Vertex 27454 -0.0346629 0.0607102 -0.0125376 Vertex 27455 -0.0356643 0.0606925 -0.0124069 Vertex 27456 -0.0366615 0.0606699 -0.0121541 Vertex 27457 -0.0376612 0.0606745 -0.0122764 Vertex 27458 -0.0386629 0.0606634 -0.011982 Vertex 27459 -0.0396673 0.0606846 -0.0120669 Vertex 27460 -0.0406738 0.0606904 -0.0121867 Vertex 27461 -0.0416725 0.0607151 -0.0124173 Vertex 27462 -0.0426785 0.060742 -0.0126195 Vertex 27463 -0.0436626 0.0607395 -0.0127771 Vertex 27464 -0.0446531 0.0607308 -0.0127894 Vertex 27465 -0.0456539 0.0606919 -0.0125779 Vertex 27466 -0.046654 0.0606571 -0.0123502 Vertex 27467 -0.0476575 0.0606291 -0.0121142 Vertex 27468 -0.0486555 0.0606014 -0.0118523 Vertex 27469 -0.0496388 0.0605583 -0.0113235 Vertex 27470 -0.050636 0.0604891 -0.0105672 Vertex 27471 -0.0516205 0.0604369 -0.00991236 Vertex 27472 -0.0526322 0.0603614 -0.00917272 Vertex 27473 -0.0536323 0.0602894 -0.00841331 Vertex 27474 -0.0546088 0.0601814 -0.0071333 Vertex 27475 -0.055522 0.0600566 -0.00554029 Vertex 27476 -0.0408554 0.101386 -0.0212924 Vertex 27477 -0.0418554 0.101378 -0.0213767 Vertex 27478 -0.0428553 0.101381 -0.0214106 Vertex 27479 -0.0508832 0.106998 -0.0191626 Vertex 27480 -0.0518874 0.106988 -0.0190452 Vertex 27481 -0.0719103 0.125286 -0.00863314 Vertex 27482 -0.0716387 0.0675256 0.0265031 Vertex 27483 -0.0584616 0.0717087 0.039721 Vertex 27484 -0.0550044 0.145721 -0.00143834 Vertex 27485 -0.0438555 0.101385 -0.0214526 Vertex 27486 -0.0639323 0.123848 -0.00887264 Vertex 27487 -0.0788571 0.120751 -0.0060883 Vertex 27488 -0.0649515 0.126767 -0.00875296 Vertex 27489 -0.0448562 0.101383 -0.0214692 Vertex 27490 -0.0458559 0.10138 -0.0215412 Vertex 27491 -0.0468563 0.101377 -0.0215448 Vertex 27492 -0.06991 0.11224 -0.0100103 Vertex 27493 -0.0709064 0.123821 -0.00862928 Vertex 27494 -0.0610115 0.134041 -0.00711168 Vertex 27495 -0.0739382 0.132552 -0.00766265 Vertex 27496 -0.0649712 0.129694 -0.00875388 Vertex 27497 -0.0639761 0.129691 -0.00851425 Vertex 27498 -0.0621416 0.141343 -0.00629843 Vertex 27499 -0.0478585 0.101383 -0.0215741 Vertex 27500 -0.0488595 0.101383 -0.02158 Vertex 27501 -0.0381658 0.165183 -0.0131497 Vertex 27502 -0.0528899 0.106976 -0.018917 Vertex 27503 -0.0498635 0.101385 -0.021584 Vertex 27504 -0.0550525 0.129598 -0.0055846 Vertex 27505 -0.0281655 0.17267 -0.018055 Vertex 27506 -0.0679296 0.125304 -0.00887173 Vertex 27507 -0.0778913 0.126656 -0.00702073 Vertex 27508 -0.0779569 0.132491 -0.00592536 Vertex 27509 -0.0548868 0.108372 -0.0183778 Vertex 27510 -0.0538991 0.108397 -0.0185513 Vertex 27511 -0.0618964 0.108239 -0.0162152 Vertex 27512 -0.0538924 0.106961 -0.0186698 Vertex 27513 -0.0758642 0.117897 -0.00698249 Vertex 27514 -0.0508615 0.101367 -0.0215394 Vertex 27515 -0.0518654 0.101358 -0.0214215 Vertex 27516 -0.0528849 0.101359 -0.0212107 Vertex 27517 0.0233086 0.0634336 -0.024957 Vertex 27518 0.0222874 0.0635154 -0.025946 Vertex 27519 0.0213383 0.0635548 -0.0266585 Vertex 27520 0.0203245 0.0636 -0.0272806 Vertex 27521 0.0192972 0.063662 -0.0278633 Vertex 27522 0.0183116 0.0636834 -0.0282837 Vertex 27523 0.0172995 0.0637271 -0.0287659 Vertex 27524 0.0163113 0.0637479 -0.0291811 Vertex 27525 0.0153129 0.0637748 -0.0295702 Vertex 27526 0.0143045 0.0638067 -0.0299257 Vertex 27527 0.0133173 0.0638081 -0.0300932 Vertex 27528 0.0123073 0.0638424 -0.0304488 Vertex 27529 0.0112859 0.0638878 -0.0308862 Vertex 27530 0.0102881 0.063916 -0.0312717 Vertex 27531 0.00930465 0.0639279 -0.0315779 Vertex 27532 0.008313 0.0639391 -0.0318667 Vertex 27533 0.00729944 0.0639619 -0.0320669 Vertex 27534 0.00629218 0.0639808 -0.0323017 Vertex 27535 0.00529533 0.064011 -0.0326857 Vertex 27536 0.00429568 0.0640516 -0.0331969 Vertex 27537 0.00329581 0.06408 -0.0335736 Vertex 27538 0.00229927 0.0641027 -0.0339638 Vertex 27539 0.00130454 0.0641388 -0.0343264 Vertex 27540 0.000291607 0.0641338 -0.034343 Vertex 27541 -0.000697567 0.0641196 -0.0342689 Vertex 27542 -0.00170857 0.0641356 -0.0344906 Vertex 27543 -0.00271064 0.0641639 -0.0348647 Vertex 27544 -0.00371064 0.0641813 -0.0350983 Vertex 27545 -0.00471394 0.0641886 -0.0352179 Vertex 27546 -0.00571704 0.0642049 -0.0354496 Vertex 27547 -0.00671791 0.0642099 -0.0355692 Vertex 27548 -0.00771915 0.0642161 -0.0356843 Vertex 27549 -0.00871553 0.0642094 -0.0357226 Vertex 27550 -0.00972298 0.0642282 -0.0359259 Vertex 27551 -0.0107189 0.0642451 -0.0362023 Vertex 27552 -0.0117173 0.0642717 -0.0365887 Vertex 27553 -0.0127037 0.064273 -0.0367671 Vertex 27554 -0.0137234 0.0643092 -0.0370705 Vertex 27555 -0.0147222 0.0643235 -0.037347 Vertex 27556 -0.0157228 0.0642918 -0.0372774 Vertex 27557 -0.0167333 0.0642714 -0.0369951 Vertex 27558 -0.0177396 0.0642294 -0.0366219 Vertex 27559 -0.0187526 0.0641914 -0.0363857 Vertex 27560 -0.0197383 0.064191 -0.0362126 Vertex 27561 -0.0207376 0.0641563 -0.0358205 Vertex 27562 -0.021716 0.0641363 -0.0354017 Vertex 27563 -0.0227414 0.0640418 -0.0345473 Vertex 27564 -0.0237194 0.0639841 -0.033754 Vertex 27565 -0.0247258 0.0638997 -0.032873 Vertex 27566 -0.0538856 0.101336 -0.0209374 Vertex 27567 -0.0659978 0.135528 -0.00820667 Vertex 27568 -0.0351413 0.166693 -0.0148789 Vertex 27569 -0.053967 0.0687802 0.0379578 Vertex 27570 -0.0241467 0.169732 -0.0193183 Vertex 27571 -0.0331437 0.169673 -0.0156322 Vertex 27572 -0.0548867 0.101301 -0.0205491 Vertex 27573 -0.0336762 0.062222 -0.0135529 Vertex 27574 -0.0346708 0.0621866 -0.0131726 Vertex 27575 -0.0356709 0.0621736 -0.0130441 Vertex 27576 -0.0366712 0.0621691 -0.0130418 Vertex 27577 -0.0376663 0.0621956 -0.0129723 Vertex 27578 -0.0386685 0.0621637 -0.0127302 Vertex 27579 -0.0396713 0.0621627 -0.012718 Vertex 27580 -0.0406768 0.0621783 -0.0128097 Vertex 27581 -0.0416808 0.0622091 -0.0130274 Vertex 27582 -0.0426749 0.0622014 -0.0131851 Vertex 27583 -0.0436679 0.0621935 -0.0131864 Vertex 27584 -0.0446642 0.0621749 -0.0132201 Vertex 27585 -0.0456524 0.0621788 -0.0131898 Vertex 27586 -0.0466794 0.0620985 -0.0127944 Vertex 27587 -0.0476622 0.0620749 -0.0123691 Vertex 27588 -0.0486546 0.0620591 -0.0122264 Vertex 27589 -0.0496442 0.0620141 -0.0117058 Vertex 27590 -0.0506534 0.0619401 -0.0109597 Vertex 27591 -0.0516393 0.0618882 -0.0103104 Vertex 27592 -0.0526397 0.0618282 -0.00966488 Vertex 27593 -0.0535904 0.0617699 -0.00886774 Vertex 27594 -0.0545598 0.0616597 -0.0074577 Vertex 27595 -0.0555615 0.0615422 -0.00607893 Vertex 27596 -0.0564804 0.0613799 -0.00459099 Vertex 27597 -0.0576531 0.0612704 -0.00372094 Vertex 27598 -0.058573 0.0613666 -0.00334192 Vertex 27599 -0.0596081 0.0614162 -0.00289701 Vertex 27600 -0.0606301 0.0613516 -0.00265703 Vertex 27601 -0.0616015 0.0614498 -0.00273471 Vertex 27602 -0.062546 0.0614527 -0.00215685 Vertex 27603 -0.0635384 0.061476 -0.00191873 Vertex 27604 -0.0548742 0.10693 -0.0184788 Vertex 27605 -0.0558858 0.106922 -0.0182628 Vertex 27606 -0.0568864 0.106915 -0.0181412 Vertex 27607 -0.078943 0.132461 -0.00522567 Vertex 27608 -0.0400491 0.154783 -0.00892819 Vertex 27609 -0.0255688 0.0356598 0.0531386 Vertex 27610 -0.0570338 0.131087 -0.00617819 Vertex 27611 -0.0558948 0.101262 -0.0199275 Vertex 27612 -0.0719296 0.11219 -0.00889601 Vertex 27613 -0.0132439 0.178631 -0.0284206 Vertex 27614 -0.0629391 0.12384 -0.00881569 Vertex 27615 -0.0798509 0.120721 -0.00541034 Vertex 27616 -0.0689372 0.126774 -0.00892675 Vertex 27617 -0.0568902 0.10122 -0.0192994 Vertex 27618 -0.0699315 0.126779 -0.00900092 Vertex 27619 -0.0578818 0.101192 -0.0190391 Vertex 27620 -0.0588731 0.101172 -0.0189069 Vertex 27621 -0.0598691 0.101152 -0.0187591 Vertex 27622 -0.0600285 0.134031 -0.00683616 Vertex 27623 -0.0819835 0.132406 -0.00340088 Vertex 27624 -0.0608711 0.101136 -0.0186334 Vertex 27625 -0.061927 0.109672 -0.0156348 Vertex 27626 -0.061867 0.101123 -0.0184855 Vertex 27627 -0.0795939 0.112319 0.0461682 Vertex 27628 -0.0331278 0.165217 -0.0153881 Vertex 27629 -0.0261888 0.17564 -0.0188354 Vertex 27630 -0.0628667 0.101101 -0.0182166 Vertex 27631 -0.0560194 0.129616 -0.00591188 Vertex 27632 -0.0578783 0.106898 -0.0179862 Vertex 27633 -0.0777488 0.07493 0.029356 Vertex 27634 -0.0769339 0.126684 -0.00758482 Vertex 27635 -0.0788489 0.119288 -0.00581129 Vertex 27636 -0.0588961 0.106893 -0.0176578 Vertex 27637 -0.0558871 0.108356 -0.0181276 Vertex 27638 -0.0629263 0.108221 -0.0156274 Vertex 27639 -0.0739548 0.136937 -0.00691386 Vertex 27640 -0.0638439 0.101082 -0.0177706 Vertex 27641 -0.0278864 0.105837 -0.0222471 Vertex 27642 0.0242723 0.0647548 -0.0237835 Vertex 27643 0.0232974 0.0648673 -0.0252072 Vertex 27644 0.0223162 0.0649555 -0.0263733 Vertex 27645 0.0213135 0.0650138 -0.0271409 Vertex 27646 0.0203184 0.0650483 -0.0276666 Vertex 27647 0.0192888 0.0651078 -0.0282476 Vertex 27648 0.0183 0.0651194 -0.0285252 Vertex 27649 0.0172829 0.0651656 -0.0289948 Vertex 27650 0.0162971 0.0651874 -0.0294171 Vertex 27651 0.0152962 0.0652155 -0.0297912 Vertex 27652 0.0142962 0.0652331 -0.0300484 Vertex 27653 0.0132839 0.0652538 -0.0302637 Vertex 27654 0.0122907 0.0652688 -0.0305463 Vertex 27655 0.0113019 0.0652847 -0.0308368 Vertex 27656 0.0102822 0.065327 -0.0312772 Vertex 27657 0.00929414 0.0653548 -0.0316941 Vertex 27658 0.00829502 0.0653838 -0.032076 Vertex 27659 0.00729554 0.0653986 -0.0323322 Vertex 27660 0.0062922 0.0654161 -0.0325779 Vertex 27661 0.00528348 0.0654438 -0.0329345 Vertex 27662 0.00429984 0.0654625 -0.0332399 Vertex 27663 0.00329381 0.0654903 -0.0335962 Vertex 27664 0.00227655 0.0655175 -0.0339267 Vertex 27665 0.00128503 0.0655494 -0.0343406 Vertex 27666 0.000280959 0.0655552 -0.0344559 Vertex 27667 -0.000706682 0.0655468 -0.0343894 Vertex 27668 -0.00170896 0.0655406 -0.0343993 Vertex 27669 -0.00271881 0.0655507 -0.0345764 Vertex 27670 -0.0037118 0.0655569 -0.0347446 Vertex 27671 -0.00472043 0.0655745 -0.0349603 Vertex 27672 -0.00571384 0.0655793 -0.035147 Vertex 27673 -0.0067213 0.065597 -0.0353344 Vertex 27674 -0.00772146 0.0656018 -0.0354736 Vertex 27675 -0.00872132 0.0656071 -0.0355909 Vertex 27676 -0.00971954 0.0656257 -0.0358484 Vertex 27677 -0.0107108 0.0656519 -0.03625 Vertex 27678 -0.0117258 0.0656807 -0.0365783 Vertex 27679 -0.0127075 0.065682 -0.0367743 Vertex 27680 -0.0137235 0.0657235 -0.0372342 Vertex 27681 -0.0147283 0.0657495 -0.0376113 Vertex 27682 -0.015727 0.0657542 -0.0377517 Vertex 27683 -0.0167308 0.0657547 -0.0377116 Vertex 27684 -0.0177346 0.065722 -0.0374816 Vertex 27685 -0.0187399 0.0656914 -0.0372373 Vertex 27686 -0.0197462 0.0656505 -0.036857 Vertex 27687 -0.0207428 0.0656176 -0.0364653 Vertex 27688 -0.0217663 0.065545 -0.0358558 Vertex 27689 -0.0227424 0.0655154 -0.0353045 Vertex 27690 -0.0237378 0.0654511 -0.0345337 Vertex 27691 -0.0246932 0.065394 -0.0335995 Vertex 27692 -0.0648576 0.101039 -0.0173044 Vertex 27693 -0.0658232 0.100991 -0.0166158 Vertex 27694 -0.0650055 0.135525 -0.0079735 Vertex 27695 -0.0606031 0.0352186 0.0442288 Vertex 27696 -0.0770239 0.141306 -0.00545257 Vertex 27697 -0.0341393 0.169665 -0.0151103 Vertex 27698 -0.0652337 0.169622 -0.0599681 Vertex 27699 -0.0668197 0.100942 -0.0159632 Vertex 27700 -0.033686 0.0637452 -0.0146972 Vertex 27701 -0.0346788 0.0636729 -0.0139354 Vertex 27702 -0.0356782 0.0636593 -0.0138055 Vertex 27703 -0.0366797 0.0636525 -0.0138021 Vertex 27704 -0.0376789 0.0636715 -0.0137557 Vertex 27705 -0.038679 0.0636652 -0.0136088 Vertex 27706 -0.0396808 0.0636721 -0.0135815 Vertex 27707 -0.0406818 0.0636695 -0.0135779 Vertex 27708 -0.0416844 0.0636674 -0.0137203 Vertex 27709 -0.0426807 0.0636637 -0.0138633 Vertex 27710 -0.0436768 0.0636379 -0.0137577 Vertex 27711 -0.0446675 0.0636475 -0.0137193 Vertex 27712 -0.0456599 0.0636306 -0.0135866 Vertex 27713 -0.0466544 0.0636155 -0.0134601 Vertex 27714 -0.0476918 0.0635243 -0.0129244 Vertex 27715 -0.0486814 0.0634873 -0.0123857 Vertex 27716 -0.0496483 0.0634464 -0.0118311 Vertex 27717 -0.050633 0.0633988 -0.0111763 Vertex 27718 -0.0516305 0.0633366 -0.0105425 Vertex 27719 -0.0526101 0.0632972 -0.0100113 Vertex 27720 -0.0536272 0.0632225 -0.00927695 Vertex 27721 -0.054542 0.0631354 -0.00767633 Vertex 27722 -0.0555362 0.0629843 -0.00681601 Vertex 27723 -0.0566631 0.0629472 -0.00640536 Vertex 27724 -0.0576496 0.0629466 -0.00612077 Vertex 27725 -0.0586479 0.0629437 -0.00583333 Vertex 27726 -0.0596424 0.0629313 -0.00554826 Vertex 27727 -0.0606347 0.0629111 -0.00512698 Vertex 27728 -0.0616341 0.0628646 -0.00472902 Vertex 27729 -0.0626402 0.0627915 -0.00434322 Vertex 27730 -0.0636421 0.0627085 -0.00368166 Vertex 27731 -0.0645865 0.0628123 -0.00359236 Vertex 27732 -0.0656128 0.0626699 -0.00283823 Vertex 27733 -0.0678676 0.100922 -0.0154166 Vertex 27734 -0.0211888 0.175661 -0.0220113 Vertex 27735 -0.0599027 0.106882 -0.0174092 Vertex 27736 -0.0609006 0.106856 -0.0171292 Vertex 27737 -0.0370678 0.157759 -0.0113588 Vertex 27738 -0.0420623 0.154724 -0.00848194 Vertex 27739 -0.0276074 0.0356491 0.0527176 Vertex 27740 -0.0560394 0.131064 -0.00575471 Vertex 27741 -0.0739012 0.112096 -0.00769672 Vertex 27742 -0.072904 0.112135 -0.00834183 Vertex 27743 -0.0633546 0.0720236 0.0383997 Vertex 27744 -0.0619452 0.123832 -0.00870252 Vertex 27745 -0.0818672 0.120683 -0.00433302 Vertex 27746 -0.080837 0.120705 -0.00484118 Vertex 27747 -0.0688619 0.10089 -0.0150284 Vertex 27748 -0.0838841 0.12062 -0.00343109 Vertex 27749 -0.0828908 0.120639 -0.00384458 Vertex 27750 -0.0848581 0.120613 -0.00298955 Vertex 27751 -0.0620082 0.134045 -0.00734981 Vertex 27752 -0.0758664 0.116415 -0.00636144 Vertex 27753 -0.0839874 0.129456 -0.00327263 Vertex 27754 -0.0829648 0.129479 -0.00406234 Vertex 27755 -0.0751339 0.0669087 0.0157231 Vertex 27756 -0.0709646 0.0754682 0.0373385 Vertex 27757 -0.0251276 0.16525 -0.016804 Vertex 27758 -0.0391765 0.165177 -0.0125287 Vertex 27759 -0.0681006 0.0726203 0.0368546 Vertex 27760 -0.0698809 0.100876 -0.0145572 Vertex 27761 -0.0171345 0.165288 -0.0183426 Vertex 27762 -0.0619246 0.106845 -0.0166571 Vertex 27763 -0.0590379 0.13549 -0.00623086 Vertex 27764 -0.0759299 0.126701 -0.00794305 Vertex 27765 -0.0590102 0.131118 -0.0069845 Vertex 27766 -0.0608967 0.108264 -0.0166058 Vertex 27767 -0.0458972 0.108476 -0.0187253 Vertex 27768 -0.0448888 0.108464 -0.0189265 Vertex 27769 -0.0639107 0.108163 -0.0148371 Vertex 27770 -0.0798256 0.114817 -0.00349908 Vertex 27771 -0.070852 0.100833 -0.0142398 Vertex 27772 0.0252976 0.0661311 -0.0233121 Vertex 27773 0.0243299 0.0661738 -0.0239819 Vertex 27774 0.0232414 0.0663429 -0.0257954 Vertex 27775 0.0222832 0.066418 -0.0268569 Vertex 27776 0.0212995 0.0664627 -0.0275106 Vertex 27777 0.0203197 0.0664896 -0.0280597 Vertex 27778 0.0193259 0.0665212 -0.0284749 Vertex 27779 0.0183118 0.0665429 -0.0287115 Vertex 27780 0.0172994 0.0665713 -0.0290602 Vertex 27781 0.0162822 0.0666125 -0.0295206 Vertex 27782 0.0152945 0.0666369 -0.0299356 Vertex 27783 0.0142765 0.0666697 -0.0302658 Vertex 27784 0.0133009 0.0666579 -0.0304883 Vertex 27785 0.0122905 0.06666 -0.0305971 Vertex 27786 0.0112856 0.0666869 -0.0306751 Vertex 27787 0.0102739 0.0667155 -0.0310192 Vertex 27788 0.00927611 0.0667424 -0.0314011 Vertex 27789 0.0082766 0.0667723 -0.0317926 Vertex 27790 0.00727173 0.0667978 -0.0321541 Vertex 27791 0.00628325 0.0668147 -0.0324472 Vertex 27792 0.00529011 0.0668325 -0.0327227 Vertex 27793 0.00429234 0.0668529 -0.0329804 Vertex 27794 0.00328879 0.0668715 -0.0332298 Vertex 27795 0.00227538 0.0668963 -0.0335609 Vertex 27796 0.00126756 0.0669175 -0.0339113 Vertex 27797 0.000268234 0.0669357 -0.034172 Vertex 27798 -0.000720709 0.0669492 -0.0343521 Vertex 27799 -0.00171216 0.066944 -0.0344014 Vertex 27800 -0.00271026 0.0669475 -0.0345168 Vertex 27801 -0.00373228 0.0669631 -0.0346735 Vertex 27802 -0.00470812 0.0669686 -0.0349707 Vertex 27803 -0.00572231 0.0669806 -0.0352658 Vertex 27804 -0.00672552 0.0670096 -0.035497 Vertex 27805 -0.00773143 0.0670178 -0.0355816 Vertex 27806 -0.00871509 0.0670095 -0.035665 Vertex 27807 -0.00971778 0.0670387 -0.0360005 Vertex 27808 -0.0107336 0.0670714 -0.0363227 Vertex 27809 -0.0117304 0.0670858 -0.0365895 Vertex 27810 -0.0127063 0.0671038 -0.0370425 Vertex 27811 -0.0137252 0.0671481 -0.0375067 Vertex 27812 -0.0147336 0.0671673 -0.0377424 Vertex 27813 -0.0157375 0.0671877 -0.037968 Vertex 27814 -0.0167402 0.0671791 -0.0380101 Vertex 27815 -0.0177409 0.0671746 -0.0379913 Vertex 27816 -0.0187525 0.0671388 -0.037784 Vertex 27817 -0.0197539 0.0671131 -0.0375162 Vertex 27818 -0.0207606 0.0670735 -0.0371287 Vertex 27819 -0.0217661 0.0670215 -0.0366181 Vertex 27820 -0.0227439 0.0669905 -0.0360641 Vertex 27821 -0.0237403 0.0669252 -0.0352956 Vertex 27822 -0.0247344 0.0668597 -0.034525 Vertex 27823 -0.0718661 0.100809 -0.0137558 Vertex 27824 -0.0550682 0.150156 -0.00218973 Vertex 27825 -0.0640118 0.135519 -0.00771971 Vertex 27826 -0.0728523 0.100773 -0.0133449 Vertex 27827 -0.073854 0.100736 -0.0128364 Vertex 27828 -0.0221328 0.166772 -0.0183109 Vertex 27829 -0.0748309 0.100681 -0.0121692 Vertex 27830 -0.0346878 0.0651683 -0.0148251 Vertex 27831 -0.0356893 0.0651361 -0.0144415 Vertex 27832 -0.0366861 0.0651313 -0.0144389 Vertex 27833 -0.0376838 0.0651596 -0.0143574 Vertex 27834 -0.0386855 0.0651385 -0.0142461 Vertex 27835 -0.0396908 0.0651397 -0.0142325 Vertex 27836 -0.0406916 0.0651596 -0.014333 Vertex 27837 -0.0416936 0.0652006 -0.0145392 Vertex 27838 -0.0426868 0.0651551 -0.0146214 Vertex 27839 -0.0436816 0.0651561 -0.0146099 Vertex 27840 -0.0446824 0.0651214 -0.0145177 Vertex 27841 -0.0456818 0.0650665 -0.0140257 Vertex 27842 -0.0466787 0.0650533 -0.0138917 Vertex 27843 -0.0477034 0.0649971 -0.0135628 Vertex 27844 -0.0486599 0.0649886 -0.0131055 Vertex 27845 -0.0496676 0.0649029 -0.0122308 Vertex 27846 -0.0506478 0.0648447 -0.0114426 Vertex 27847 -0.0516582 0.0647811 -0.0108241 Vertex 27848 -0.0526652 0.0647199 -0.0102 Vertex 27849 -0.0536204 0.0647024 -0.00963527 Vertex 27850 -0.0545225 0.0645764 -0.00897215 Vertex 27851 -0.0556734 0.0645255 -0.00818248 Vertex 27852 -0.0566618 0.0645338 -0.00803085 Vertex 27853 -0.0576615 0.0645392 -0.00788705 Vertex 27854 -0.0586532 0.0645395 -0.00761311 Vertex 27855 -0.0596389 0.0645563 -0.0073211 Vertex 27856 -0.060662 0.0644224 -0.00688354 Vertex 27857 -0.0616679 0.0643653 -0.00651734 Vertex 27858 -0.0626395 0.0644043 -0.00619313 Vertex 27859 -0.0636896 0.064322 -0.00564195 Vertex 27860 -0.0646522 0.0642554 -0.00503339 Vertex 27861 -0.0656294 0.0642362 -0.0044412 Vertex 27862 -0.0665925 0.064199 -0.00375071 Vertex 27863 -0.0758824 0.100651 -0.0113429 Vertex 27864 -0.0232044 0.175652 -0.0207635 Vertex 27865 -0.0251727 0.175641 -0.0195733 Vertex 27866 -0.0241218 0.165279 -0.0170232 Vertex 27867 -0.026193 0.171192 -0.0190186 Vertex 27868 -0.0182558 0.178619 -0.0243596 Vertex 27869 -0.0410427 0.15478 -0.00878846 Vertex 27870 -0.0757838 0.06757 0.0150388 Vertex 27871 -0.058019 0.131103 -0.00658932 Vertex 27872 -0.0440942 0.156163 -0.00853601 Vertex 27873 -0.0132511 0.177151 -0.0280569 Vertex 27874 -0.0609537 0.123826 -0.00859412 Vertex 27875 -0.058966 0.123797 -0.00809452 Vertex 27876 -0.0624959 0.0607929 0.0219134 Vertex 27877 -0.0599536 0.123822 -0.00839074 Vertex 27878 -0.0430879 0.156177 -0.00890493 Vertex 27879 -0.0609169 0.109692 -0.0160089 Vertex 27880 -0.0609119 0.0678343 0.0355003 Vertex 27881 -0.054081 0.071101 0.0394438 Vertex 27882 -0.0430993 0.157658 -0.00954173 Vertex 27883 -0.0440746 0.154693 -0.007872 Vertex 27884 -0.0265663 0.0356908 0.0529027 Vertex 27885 -0.0599553 0.0610872 0.0239566 Vertex 27886 -0.0540901 0.153118 -0.00271435 Vertex 27887 -0.0261224 0.165258 -0.0166522 Vertex 27888 -0.0341277 0.165212 -0.0151261 Vertex 27889 -0.0734548 0.0752713 0.0352251 Vertex 27890 -0.0571409 0.0642584 0.0323718 Vertex 27891 -0.0808257 0.114785 -0.00282613 Vertex 27892 -0.0639205 0.112438 -0.0133308 Vertex 27893 -0.043156 0.162156 -0.0100947 Vertex 27894 -0.0560239 0.144237 -0.00161522 Vertex 27895 -0.0759996 0.139851 -0.00609906 Vertex 27896 -0.0498834 0.108435 -0.0190271 Vertex 27897 -0.0468821 0.108426 -0.0186436 Vertex 27898 -0.051889 0.108419 -0.0189045 Vertex 27899 -0.0288456 0.0986889 -0.0235542 Vertex 27900 -0.0738463 0.114952 -0.00659368 Vertex 27901 -0.0641553 0.162388 -0.0586672 Vertex 27902 0.0262791 0.0675449 -0.0231801 Vertex 27903 0.0252903 0.0675893 -0.0238235 Vertex 27904 0.0242906 0.0676576 -0.0247124 Vertex 27905 0.0232194 0.06778 -0.026032 Vertex 27906 0.022277 0.0678419 -0.0269851 Vertex 27907 0.0212831 0.0679005 -0.027755 Vertex 27908 0.0203192 0.0679349 -0.0283363 Vertex 27909 0.0193228 0.0679612 -0.0287395 Vertex 27910 0.0183075 0.0679765 -0.028974 Vertex 27911 0.0173027 0.0680054 -0.0293377 Vertex 27912 0.0162924 0.0680403 -0.0298148 Vertex 27913 0.0152753 0.0680849 -0.0302874 Vertex 27914 0.014283 0.0681091 -0.0306905 Vertex 27915 0.0133289 0.0681229 -0.0310343 Vertex 27916 0.0123125 0.0680946 -0.0309662 Vertex 27917 0.0112937 0.0680868 -0.0307505 Vertex 27918 0.0102706 0.0681153 -0.0309054 Vertex 27919 0.009256 0.0681484 -0.0312392 Vertex 27920 0.00826686 0.0681716 -0.0316571 Vertex 27921 0.00726262 0.0682112 -0.0321527 Vertex 27922 0.00627327 0.0682324 -0.0325665 Vertex 27923 0.00528322 0.0682375 -0.0327226 Vertex 27924 0.00426734 0.0682596 -0.032922 Vertex 27925 0.00326914 0.0682665 -0.0330635 Vertex 27926 0.00226876 0.0682822 -0.0333186 Vertex 27927 0.00127365 0.0682996 -0.0335875 Vertex 27928 0.000274533 0.0683164 -0.033854 Vertex 27929 -0.0007305 0.0683317 -0.0340878 Vertex 27930 -0.00172768 0.0683482 -0.0343533 Vertex 27931 -0.00273038 0.0683735 -0.0347173 Vertex 27932 -0.00373539 0.0684024 -0.0350771 Vertex 27933 -0.00473829 0.0684427 -0.0355801 Vertex 27934 -0.00573558 0.0684573 -0.035843 Vertex 27935 -0.006733 0.0684593 -0.0359965 Vertex 27936 -0.00773829 0.0684701 -0.0360951 Vertex 27937 -0.00873489 0.068452 -0.036144 Vertex 27938 -0.009723 0.0684621 -0.0362531 Vertex 27939 -0.0107444 0.0685007 -0.0365794 Vertex 27940 -0.0117377 0.0685356 -0.0370961 Vertex 27941 -0.0127182 0.0685587 -0.0376659 Vertex 27942 -0.0137228 0.0685659 -0.0377913 Vertex 27943 -0.0147316 0.0685868 -0.0380387 Vertex 27944 -0.0157421 0.0686009 -0.0381423 Vertex 27945 -0.0167436 0.068615 -0.0382083 Vertex 27946 -0.017747 0.0685932 -0.0381265 Vertex 27947 -0.0187468 0.0685918 -0.0381091 Vertex 27948 -0.0197563 0.0685528 -0.0378978 Vertex 27949 -0.0207506 0.0685447 -0.0377382 Vertex 27950 -0.0217729 0.0684817 -0.0372671 Vertex 27951 -0.0227695 0.0684387 -0.0367377 Vertex 27952 -0.0237519 0.0683934 -0.0360687 Vertex 27953 -0.0247363 0.0683356 -0.0352871 Vertex 27954 -0.0257476 0.0682496 -0.0344079 Vertex 27955 -0.045101 0.156152 -0.00816042 Vertex 27956 -0.0630177 0.135513 -0.00745136 Vertex 27957 -0.0660053 0.138467 -0.00776776 Vertex 27958 -0.0351226 0.169652 -0.0145814 Vertex 27959 -0.0548971 0.10981 -0.018029 Vertex 27960 -0.0312923 0.0362769 0.0513145 Vertex 27961 -0.0231534 0.0352107 0.0523184 Vertex 27962 -0.0347008 0.0666358 -0.0153327 Vertex 27963 -0.035694 0.0666325 -0.0153314 Vertex 27964 -0.0366932 0.0665933 -0.0149481 Vertex 27965 -0.0376939 0.0665912 -0.0149459 Vertex 27966 -0.0386977 0.0666031 -0.0147476 Vertex 27967 -0.0397006 0.0666136 -0.0148744 Vertex 27968 -0.0407009 0.066639 -0.0151117 Vertex 27969 -0.0417025 0.0666657 -0.0153449 Vertex 27970 -0.0426942 0.0666296 -0.0154091 Vertex 27971 -0.0436843 0.0666417 -0.0153695 Vertex 27972 -0.0446938 0.0665983 -0.0153032 Vertex 27973 -0.0456914 0.0665681 -0.0150523 Vertex 27974 -0.0466973 0.0665278 -0.0146823 Vertex 27975 -0.0477042 0.0664777 -0.0141832 Vertex 27976 -0.0486835 0.0664435 -0.0136416 Vertex 27977 -0.049655 0.0664173 -0.0130805 Vertex 27978 -0.0506338 0.0663851 -0.0124105 Vertex 27979 -0.051638 0.0663266 -0.0117848 Vertex 27980 -0.0526917 0.0662141 -0.0112413 Vertex 27981 -0.0536948 0.0661603 -0.0107375 Vertex 27982 -0.0546942 0.0661242 -0.0103565 Vertex 27983 -0.0556759 0.0661408 -0.010195 Vertex 27984 -0.0566724 0.0661356 -0.00992741 Vertex 27985 -0.0576833 0.0660478 -0.00944709 Vertex 27986 -0.0586891 0.065984 -0.0090861 Vertex 27987 -0.0596856 0.0659756 -0.00895149 Vertex 27988 -0.0606931 0.0659255 -0.00858452 Vertex 27989 -0.0616838 0.0659304 -0.00830259 Vertex 27990 -0.0626986 0.0658458 -0.00782349 Vertex 27991 -0.0636795 0.0658475 -0.00727738 Vertex 27992 -0.064618 0.0659249 -0.00682147 Vertex 27993 -0.0656433 0.0657616 -0.0058195 Vertex 27994 -0.0666563 0.0656524 -0.0048951 Vertex 27995 -0.0676491 0.065582 -0.00407795 Vertex 27996 -0.0828496 0.117685 -0.00271563 Vertex 27997 -0.0271645 0.17563 -0.018169 Vertex 27998 -0.0311715 0.171175 -0.0164295 Vertex 27999 -0.0662636 0.175335 -0.0598585 Vertex 28000 -0.037886 0.109925 -0.0191545 Vertex 28001 -0.0727056 0.0704556 0.030746 Vertex 28002 -0.0390505 0.154795 -0.00905663 Vertex 28003 -0.0520076 0.145723 -0.00116844 Vertex 28004 -0.0310503 0.155166 -0.00836756 Vertex 28005 -0.0152525 0.177145 -0.0265204 Vertex 28006 -0.0700283 0.075334 0.0376711 Vertex 28007 -0.0570384 0.142741 -0.0023851 Vertex 28008 -0.0311809 0.165241 -0.0158459 Vertex 28009 -0.0580682 0.132534 -0.0063879 Vertex 28010 -0.081387 0.11145 0.0446717 Vertex 28011 -0.0819743 0.130956 -0.00393996 Vertex 28012 -0.0809733 0.130966 -0.00434035 Vertex 28013 -0.0121993 0.177175 -0.0288808 Vertex 28014 -0.0251408 0.168241 -0.0184358 Vertex 28015 -0.058999 0.129653 -0.00698695 Vertex 28016 -0.013224 0.172718 -0.0260103 Vertex 28017 -0.0660982 0.156586 -0.0534726 Vertex 28018 -0.0550795 0.153114 -0.00215772 Vertex 28019 -0.0181224 0.165314 -0.018178 Vertex 28020 -0.0351354 0.165203 -0.0147634 Vertex 28021 -0.037224 0.169679 -0.0130647 Vertex 28022 -0.0580289 0.129633 -0.0066561 Vertex 28023 -0.0669615 0.129698 -0.00899609 Vertex 28024 -0.0628971 0.106793 -0.0162163 Vertex 28025 -0.065902 0.112354 -0.012152 Vertex 28026 -0.0610173 0.135506 -0.00686914 Vertex 28027 -0.0718707 0.116473 -0.00776413 Vertex 28028 -0.0488828 0.108449 -0.0190525 Vertex 28029 -0.0478845 0.108472 -0.0188663 Vertex 28030 -0.0539028 0.11125 -0.0176614 Vertex 28031 -0.0632548 0.171035 -0.0614506 Vertex 28032 -0.0729217 0.126742 -0.00866826 Vertex 28033 0.0272834 0.0689403 -0.022937 Vertex 28034 0.0262865 0.0689766 -0.0234385 Vertex 28035 0.025235 0.0690602 -0.0242719 Vertex 28036 0.0242826 0.0691154 -0.0252241 Vertex 28037 0.0232722 0.0691857 -0.0260989 Vertex 28038 0.0222613 0.0692548 -0.0269722 Vertex 28039 0.0212764 0.0693138 -0.0277613 Vertex 28040 0.0202826 0.0693621 -0.0284085 Vertex 28041 0.0192967 0.0693907 -0.0288221 Vertex 28042 0.0182732 0.069417 -0.0291542 Vertex 28043 0.0172728 0.0694422 -0.0295359 Vertex 28044 0.0162761 0.0694793 -0.03005 Vertex 28045 0.0152655 0.0695272 -0.0306629 Vertex 28046 0.0142799 0.0695538 -0.0310885 Vertex 28047 0.0132863 0.0695708 -0.0313558 Vertex 28048 0.0122553 0.0695892 -0.0315106 Vertex 28049 0.0112619 0.069597 -0.0315203 Vertex 28050 0.0102711 0.0695708 -0.0315811 Vertex 28051 0.00925419 0.0696192 -0.0318888 Vertex 28052 0.00826699 0.0696219 -0.0321852 Vertex 28053 0.00726635 0.0696573 -0.0326992 Vertex 28054 0.00626131 0.0696979 -0.0331897 Vertex 28055 0.00525297 0.069736 -0.0335357 Vertex 28056 0.00426552 0.0697141 -0.0335935 Vertex 28057 0.00325461 0.0697315 -0.0336623 Vertex 28058 0.00225674 0.0697235 -0.0336823 Vertex 28059 0.0012658 0.0697321 -0.0339789 Vertex 28060 0.000267595 0.0697483 -0.0342392 Vertex 28061 -0.000727236 0.069749 -0.034387 Vertex 28062 -0.00173892 0.0697883 -0.0347021 Vertex 28063 -0.00276158 0.0698244 -0.0351738 Vertex 28064 -0.00374083 0.069852 -0.0355987 Vertex 28065 -0.00473325 0.069866 -0.0358872 Vertex 28066 -0.00573885 0.0698843 -0.0361103 Vertex 28067 -0.00672844 0.0698676 -0.0361675 Vertex 28068 -0.0077447 0.0698983 -0.036343 Vertex 28069 -0.00874142 0.0699019 -0.0364843 Vertex 28070 -0.0097165 0.0698878 -0.0366754 Vertex 28071 -0.0107349 0.0699421 -0.0371274 Vertex 28072 -0.0117423 0.070003 -0.0378791 Vertex 28073 -0.0127393 0.0700008 -0.0380391 Vertex 28074 -0.0137303 0.0699989 -0.0380502 Vertex 28075 -0.0147444 0.0700214 -0.0382575 Vertex 28076 -0.0157508 0.070024 -0.0384074 Vertex 28077 -0.0167502 0.070002 -0.0383082 Vertex 28078 -0.0177485 0.0700027 -0.0382786 Vertex 28079 -0.0187683 0.0699858 -0.0381989 Vertex 28080 -0.0197535 0.0700012 -0.0382558 Vertex 28081 -0.0207576 0.069984 -0.0381379 Vertex 28082 -0.0217647 0.0699552 -0.0378816 Vertex 28083 -0.0227683 0.0699063 -0.0373697 Vertex 28084 -0.0237931 0.0698259 -0.0366341 Vertex 28085 -0.024745 0.0698061 -0.0360534 Vertex 28086 -0.0257526 0.069725 -0.0351721 Vertex 28087 -0.0818741 0.119187 -0.00382424 Vertex 28088 -0.0620293 0.135502 -0.00717407 Vertex 28089 -0.0669932 0.138471 -0.00790807 Vertex 28090 -0.0799141 0.109193 0.0343277 Vertex 28091 -0.0361907 0.169669 -0.0137878 Vertex 28092 -0.0652159 0.16242 -0.0585196 Vertex 28093 -0.0707453 0.113137 0.049314 Vertex 28094 -0.0688839 0.117973 -0.00851105 Vertex 28095 -0.0347085 0.0681808 -0.0168555 Vertex 28096 -0.0357042 0.0681118 -0.016092 Vertex 28097 -0.0367004 0.0680804 -0.0157124 Vertex 28098 -0.0376995 0.0680509 -0.0154542 Vertex 28099 -0.0387089 0.068094 -0.0155018 Vertex 28100 -0.0397063 0.0680709 -0.01554 Vertex 28101 -0.040716 0.0681271 -0.0158645 Vertex 28102 -0.0417084 0.0681156 -0.0160245 Vertex 28103 -0.0427018 0.0681213 -0.0161497 Vertex 28104 -0.0436993 0.0680874 -0.0160622 Vertex 28105 -0.0446949 0.0680713 -0.0159309 Vertex 28106 -0.045682 0.0680577 -0.0156409 Vertex 28107 -0.0466818 0.0680053 -0.0151447 Vertex 28108 -0.0476898 0.0679558 -0.0146484 Vertex 28109 -0.0486968 0.067904 -0.0141574 Vertex 28110 -0.0496757 0.0678792 -0.0135965 Vertex 28111 -0.0506838 0.0678366 -0.0132392 Vertex 28112 -0.0516893 0.0678068 -0.0129959 Vertex 28113 -0.0526737 0.0678526 -0.0129346 Vertex 28114 -0.0536823 0.0678463 -0.0129474 Vertex 28115 -0.054684 0.067848 -0.0128124 Vertex 28116 -0.0556879 0.0677603 -0.0123408 Vertex 28117 -0.056688 0.067746 -0.0120827 Vertex 28118 -0.0576869 0.0677197 -0.0118328 Vertex 28119 -0.0586925 0.0677294 -0.0118268 Vertex 28120 -0.0597053 0.0675469 -0.0111319 Vertex 28121 -0.0606769 0.0676671 -0.0113119 Vertex 28122 -0.0616833 0.0676348 -0.0109359 Vertex 28123 -0.0626586 0.0676213 -0.0103966 Vertex 28124 -0.0636417 0.067527 -0.00924444 Vertex 28125 -0.0646256 0.0674757 -0.0084666 Vertex 28126 -0.0656775 0.067321 -0.00750664 Vertex 28127 -0.0666614 0.0672261 -0.0064803 Vertex 28128 -0.0675878 0.0672405 -0.0057657 Vertex 28129 0.00210157 0.111597 -0.0202587 Vertex 28130 -0.0398868 0.108509 -0.0195593 Vertex 28131 -0.0639625 0.126764 -0.00871214 Vertex 28132 -0.0371717 0.165191 -0.0136726 Vertex 28133 -0.067238 0.175347 -0.0588701 Vertex 28134 -0.057893 0.109749 -0.0172343 Vertex 28135 -0.0689146 0.108019 -0.0123122 Vertex 28136 -0.0650297 0.138462 -0.00769967 Vertex 28137 -0.0662078 0.0723697 0.0374848 Vertex 28138 -0.0691138 0.0763852 0.0387083 Vertex 28139 -0.0530088 0.145722 -0.00115007 Vertex 28140 -0.0699144 0.1253 -0.00883057 Vertex 28141 -0.0749897 0.139866 -0.00647617 Vertex 28142 -0.0321623 0.172645 -0.015639 Vertex 28143 -0.0331471 0.172636 -0.0149853 Vertex 28144 -0.0639022 0.10675 -0.0154602 Vertex 28145 -0.0648797 0.106687 -0.0146649 Vertex 28146 -0.0659084 0.106679 -0.0142087 Vertex 28147 -0.0668809 0.106639 -0.013906 Vertex 28148 -0.067905 0.106631 -0.013438 Vertex 28149 -0.0689089 0.106601 -0.012938 Vertex 28150 -0.0699106 0.10657 -0.0124287 Vertex 28151 -0.0709057 0.106531 -0.0119068 Vertex 28152 -0.0590382 0.132561 -0.00680716 Vertex 28153 -0.0669085 0.108072 -0.0133167 Vertex 28154 -0.0341448 0.166698 -0.0152744 Vertex 28155 -0.0191218 0.165312 -0.0179178 Vertex 28156 -0.027126 0.165248 -0.0165316 Vertex 28157 -0.0777691 0.0689598 0.0151422 Vertex 28158 -0.0659224 0.108105 -0.0137141 Vertex 28159 -0.0540072 0.144242 -0.000990452 Vertex 28160 -0.0769694 0.136896 -0.00565009 Vertex 28161 -0.0718755 0.10648 -0.0114758 Vertex 28162 -0.084006 0.130916 -0.00261237 Vertex 28163 -0.0548973 0.112625 -0.01673 Vertex 28164 -0.0678966 0.110866 -0.0116376 Vertex 28165 -0.0508811 0.108424 -0.0190099 Vertex 28166 -0.0569156 0.112617 -0.0162683 Vertex 28167 -0.0659485 0.126772 -0.00885106 Vertex 28168 -0.0699244 0.107994 -0.0118147 Vertex 28169 -0.0460989 0.157633 -0.00826241 Vertex 28170 0.0272754 0.0703879 -0.0233186 Vertex 28171 0.0262968 0.070421 -0.0238548 Vertex 28172 0.0252898 0.0704815 -0.0246106 Vertex 28173 0.0242883 0.0705502 -0.0254969 Vertex 28174 0.0232364 0.0706221 -0.0263108 Vertex 28175 0.022282 0.0706591 -0.0268891 Vertex 28176 0.021248 0.0707121 -0.0275992 Vertex 28177 0.0202555 0.0707617 -0.0282449 Vertex 28178 0.019265 0.0708008 -0.0287723 Vertex 28179 0.0182783 0.0708328 -0.0291795 Vertex 28180 0.0172769 0.0708593 -0.0295557 Vertex 28181 0.0162881 0.0708862 -0.0299631 Vertex 28182 0.0152704 0.07093 -0.0305648 Vertex 28183 0.0142674 0.0709686 -0.0310685 Vertex 28184 0.0132369 0.0709965 -0.0314873 Vertex 28185 0.0122698 0.0710113 -0.031719 Vertex 28186 0.0112495 0.0710359 -0.0320326 Vertex 28187 0.0102622 0.0710503 -0.0323195 Vertex 28188 0.00924462 0.0710839 -0.0326657 Vertex 28189 0.00821291 0.0711477 -0.0331375 Vertex 28190 0.00724928 0.0711363 -0.0334334 Vertex 28191 0.00626754 0.071137 -0.0337471 Vertex 28192 0.00525204 0.071179 -0.0340737 Vertex 28193 0.00425284 0.0711834 -0.0342035 Vertex 28194 0.0032483 0.071196 -0.0343078 Vertex 28195 0.00225805 0.0711729 -0.0343766 Vertex 28196 0.00125071 0.0712122 -0.0347068 Vertex 28197 0.000251433 0.0712294 -0.0349609 Vertex 28198 -0.00074702 0.0712329 -0.0350931 Vertex 28199 -0.0017304 0.0712031 -0.0351875 Vertex 28200 -0.00273284 0.0712345 -0.035418 Vertex 28201 -0.00374904 0.0712712 -0.0357267 Vertex 28202 -0.00474585 0.0712867 -0.0359934 Vertex 28203 -0.00573884 0.0712887 -0.036141 Vertex 28204 -0.00674006 0.0712942 -0.0362643 Vertex 28205 -0.0077489 0.0713239 -0.0366154 Vertex 28206 -0.00874604 0.0713519 -0.0371122 Vertex 28207 -0.00973422 0.0712867 -0.0371391 Vertex 28208 -0.0107396 0.0713653 -0.0375278 Vertex 28209 -0.0117515 0.0714338 -0.0381291 Vertex 28210 -0.0127384 0.0714338 -0.0383051 Vertex 28211 -0.0137469 0.0714346 -0.0382786 Vertex 28212 -0.0147515 0.07145 -0.0385454 Vertex 28213 -0.0157548 0.0714554 -0.0386719 Vertex 28214 -0.0167567 0.0714512 -0.0386579 Vertex 28215 -0.01776 0.0714448 -0.0386564 Vertex 28216 -0.0187655 0.0714126 -0.0384549 Vertex 28217 -0.0197639 0.0714243 -0.0385337 Vertex 28218 -0.0207784 0.0714012 -0.0384405 Vertex 28219 -0.0217734 0.0713925 -0.0382795 Vertex 28220 -0.0227774 0.0713561 -0.0378898 Vertex 28221 -0.0237576 0.0713185 -0.0373359 Vertex 28222 -0.0247655 0.0712486 -0.0365856 Vertex 28223 -0.0257404 0.0712076 -0.0359148 Vertex 28224 -0.0267454 0.0711222 -0.0350441 Vertex 28225 -0.0618921 0.119466 -0.00942759 Vertex 28226 -0.0609057 0.119508 -0.00974426 Vertex 28227 -0.067984 0.13847 -0.00792156 Vertex 28228 -0.0765927 0.0770726 0.0330453 Vertex 28229 -0.0771832 0.107237 0.0346968 Vertex 28230 -0.0578899 0.111162 -0.0167182 Vertex 28231 -0.0691508 0.152358 -0.047074 Vertex 28232 -0.0347147 0.0696617 -0.0176192 Vertex 28233 -0.0357119 0.0695868 -0.0167299 Vertex 28234 -0.0367079 0.0695483 -0.0163464 Vertex 28235 -0.0377072 0.0695284 -0.0160926 Vertex 28236 -0.0387164 0.0695709 -0.0161311 Vertex 28237 -0.039718 0.0695625 -0.0162922 Vertex 28238 -0.0407273 0.0696207 -0.0166002 Vertex 28239 -0.0417165 0.069628 -0.0168617 Vertex 28240 -0.0427066 0.0696149 -0.0170299 Vertex 28241 -0.043713 0.0695592 -0.0168487 Vertex 28242 -0.0447099 0.069553 -0.0165571 Vertex 28243 -0.0457003 0.0694971 -0.0160523 Vertex 28244 -0.0466969 0.0694537 -0.0155404 Vertex 28245 -0.0476756 0.0694312 -0.0151035 Vertex 28246 -0.0486922 0.0693814 -0.0146213 Vertex 28247 -0.049695 0.0693575 -0.0143663 Vertex 28248 -0.0506923 0.0693793 -0.0143111 Vertex 28249 -0.0517049 0.0693137 -0.014154 Vertex 28250 -0.0527007 0.0693372 -0.0141095 Vertex 28251 -0.053703 0.069339 -0.0141095 Vertex 28252 -0.0547028 0.0693497 -0.0142348 Vertex 28253 -0.0557017 0.0693735 -0.0143448 Vertex 28254 -0.0566985 0.0694351 -0.0145553 Vertex 28255 -0.0576914 0.0693962 -0.0144511 Vertex 28256 -0.0586931 0.0693474 -0.0143558 Vertex 28257 -0.0596861 0.0693591 -0.0143393 Vertex 28258 -0.0606931 0.0692955 -0.0138548 Vertex 28259 -0.0616784 0.0692367 -0.0132074 Vertex 28260 -0.0626761 0.0691812 -0.0125769 Vertex 28261 -0.0636659 0.0691264 -0.011804 Vertex 28262 -0.0646189 0.0691309 -0.0109873 Vertex 28263 -0.0656199 0.0690554 -0.0100807 Vertex 28264 -0.0666306 0.0689692 -0.00898899 Vertex 28265 -0.0676215 0.0688155 -0.00772966 Vertex 28266 -0.0686185 0.0687175 -0.00655491 Vertex 28267 -0.0695881 0.0687436 -0.00572614 Vertex 28268 -0.0560271 0.142758 -0.00201441 Vertex 28269 -0.0829923 0.130939 -0.00341376 Vertex 28270 -0.0589237 0.11399 -0.014753 Vertex 28271 -0.0599938 0.126727 -0.00781868 Vertex 28272 -0.00998984 0.177238 -0.0295136 Vertex 28273 -0.0221892 0.177131 -0.0213718 Vertex 28274 -0.073931 0.128192 -0.0084465 Vertex 28275 -0.0790747 0.0713835 0.0198308 Vertex 28276 -0.063246 0.0709836 0.037551 Vertex 28277 -0.0540085 0.145723 -0.00127177 Vertex 28278 -0.0743852 0.111313 0.0463698 Vertex 28279 -0.0709113 0.107952 -0.0112859 Vertex 28280 -0.0558334 0.0358523 0.0464479 Vertex 28281 -0.0728995 0.10646 -0.0108772 Vertex 28282 -0.0739011 0.106421 -0.010241 Vertex 28283 -0.0748631 0.106362 -0.00967707 Vertex 28284 -0.0152743 0.180101 -0.0270399 Vertex 28285 -0.0511241 0.157581 -0.00475152 Vertex 28286 -0.0191687 0.171226 -0.0215143 Vertex 28287 -0.0400692 0.157713 -0.010751 Vertex 28288 -0.0496681 0.0705507 0.0391462 Vertex 28289 -0.0550216 0.142767 -0.00162505 Vertex 28290 -0.0211973 0.0363196 0.0534993 Vertex 28291 -0.0201288 0.165284 -0.0176913 Vertex 28292 -0.0687451 0.0708436 0.0347552 Vertex 28293 -0.0773807 0.0774654 0.0325309 Vertex 28294 -0.0610049 0.129668 -0.00770337 Vertex 28295 -0.0510555 0.150177 -0.00351578 Vertex 28296 -0.068908 0.112267 -0.0105177 Vertex 28297 -0.0689469 0.131135 -0.00874709 Vertex 28298 -0.073925 0.126728 -0.0084362 Vertex 28299 -0.0639921 0.134062 -0.00777265 Vertex 28300 -0.0430782 0.154691 -0.00814248 Vertex 28301 -0.0381729 0.166677 -0.0130206 Vertex 28302 -0.0578994 0.112578 -0.0159728 Vertex 28303 -0.0331359 0.168192 -0.0157544 Vertex 28304 -0.0869809 0.112371 0.0426661 Vertex 28305 0.0272815 0.0718243 -0.0235929 Vertex 28306 0.0262673 0.0718723 -0.0242084 Vertex 28307 0.025252 0.0719314 -0.0249494 Vertex 28308 0.0242867 0.0719771 -0.0256393 Vertex 28309 0.0232927 0.0720269 -0.0262872 Vertex 28310 0.0222613 0.0720727 -0.026869 Vertex 28311 0.021294 0.0721108 -0.027322 Vertex 28312 0.0202221 0.0721388 -0.0279345 Vertex 28313 0.0192558 0.0721931 -0.0285132 Vertex 28314 0.0182463 0.0722224 -0.0290012 Vertex 28315 0.0172553 0.072257 -0.0294021 Vertex 28316 0.0162463 0.0722881 -0.029887 Vertex 28317 0.0152406 0.0723235 -0.0303843 Vertex 28318 0.0142384 0.0723592 -0.0308856 Vertex 28319 0.0132668 0.0723896 -0.0312102 Vertex 28320 0.0122687 0.0724051 -0.0314733 Vertex 28321 0.0112474 0.0724264 -0.0317987 Vertex 28322 0.0102738 0.0724526 -0.032232 Vertex 28323 0.00925016 0.0724976 -0.0328208 Vertex 28324 0.00824961 0.0725345 -0.0333305 Vertex 28325 0.00723812 0.0725784 -0.0338132 Vertex 28326 0.00625559 0.0725849 -0.0341185 Vertex 28327 0.00524711 0.0726037 -0.0343433 Vertex 28328 0.00425042 0.072607 -0.0344972 Vertex 28329 0.00324634 0.0726279 -0.0347233 Vertex 28330 0.00225053 0.0726262 -0.0348847 Vertex 28331 0.00124491 0.0726488 -0.0351082 Vertex 28332 0.000248169 0.0726618 -0.0353693 Vertex 28333 -0.000746952 0.0726633 -0.0355323 Vertex 28334 -0.00174908 0.0726707 -0.0356483 Vertex 28335 -0.00274076 0.0726647 -0.0356738 Vertex 28336 -0.00374732 0.0726737 -0.0357771 Vertex 28337 -0.0047515 0.0726952 -0.0359954 Vertex 28338 -0.00575365 0.0727093 -0.0362416 Vertex 28339 -0.00675345 0.0727271 -0.0364938 Vertex 28340 -0.00773777 0.0727528 -0.0370634 Vertex 28341 -0.00874857 0.0727984 -0.0375275 Vertex 28342 -0.00975454 0.0728065 -0.0376393 Vertex 28343 -0.0107636 0.0728162 -0.0377336 Vertex 28344 -0.0117675 0.0728437 -0.0380964 Vertex 28345 -0.0127593 0.0728576 -0.0383837 Vertex 28346 -0.0137652 0.0728728 -0.0386088 Vertex 28347 -0.0147627 0.0728806 -0.0387608 Vertex 28348 -0.0157652 0.0728861 -0.0388826 Vertex 28349 -0.0167638 0.0728801 -0.0389011 Vertex 28350 -0.0177632 0.0728777 -0.0388934 Vertex 28351 -0.0187634 0.0728738 -0.0388715 Vertex 28352 -0.0197661 0.0728664 -0.0388949 Vertex 28353 -0.0207747 0.0728486 -0.0387932 Vertex 28354 -0.0217873 0.0728206 -0.0385569 Vertex 28355 -0.022785 0.0727991 -0.0382731 Vertex 28356 -0.0237817 0.0727523 -0.0377511 Vertex 28357 -0.0247629 0.0727034 -0.0370836 Vertex 28358 -0.0257601 0.0726356 -0.0363191 Vertex 28359 -0.0267449 0.0725846 -0.0356647 Vertex 28360 -0.0277078 0.0725313 -0.0348614 Vertex 28361 -0.0758841 0.106327 -0.00893896 Vertex 28362 -0.0689806 0.138464 -0.0078252 Vertex 28363 -0.065182 0.160968 -0.0576695 Vertex 28364 -0.0568852 0.111179 -0.0170834 Vertex 28365 0.00913581 0.103011 -0.0206427 Vertex 28366 -0.0347226 0.0711465 -0.0183854 Vertex 28367 -0.0357211 0.0710689 -0.0174927 Vertex 28368 -0.0367194 0.0710436 -0.0172369 Vertex 28369 -0.037714 0.0710075 -0.016855 Vertex 28370 -0.0387216 0.0710357 -0.0169218 Vertex 28371 -0.0397209 0.0710215 -0.0169451 Vertex 28372 -0.0407313 0.0710722 -0.0172567 Vertex 28373 -0.0417202 0.0710768 -0.017536 Vertex 28374 -0.0427147 0.0710705 -0.0176966 Vertex 28375 -0.0437155 0.0710509 -0.0175901 Vertex 28376 -0.0447185 0.0709976 -0.0171011 Vertex 28377 -0.0457202 0.0709417 -0.0164642 Vertex 28378 -0.0467107 0.0709021 -0.0159388 Vertex 28379 -0.0477053 0.0708612 -0.0154107 Vertex 28380 -0.0487026 0.0708482 -0.0151225 Vertex 28381 -0.0497015 0.070866 -0.0150622 Vertex 28382 -0.0507107 0.0708743 -0.0151986 Vertex 28383 -0.0517184 0.0708739 -0.0153462 Vertex 28384 -0.0527211 0.0709092 -0.0154358 Vertex 28385 -0.0537213 0.0709084 -0.0154466 Vertex 28386 -0.0547181 0.0708998 -0.0155975 Vertex 28387 -0.0557143 0.0709328 -0.0156898 Vertex 28388 -0.056712 0.0708617 -0.0156392 Vertex 28389 -0.0577119 0.0708497 -0.0156457 Vertex 28390 -0.0587133 0.0708136 -0.0155469 Vertex 28391 -0.0597131 0.0708022 -0.0154129 Vertex 28392 -0.0607072 0.0707896 -0.0151427 Vertex 28393 -0.0617049 0.070743 -0.0146345 Vertex 28394 -0.0626999 0.0706798 -0.0138683 Vertex 28395 -0.0637125 0.0705931 -0.0131267 Vertex 28396 -0.0646849 0.0705888 -0.0125799 Vertex 28397 -0.0656817 0.0705232 -0.0118151 Vertex 28398 -0.066663 0.0704664 -0.0109078 Vertex 28399 -0.0676348 0.0704852 -0.0103532 Vertex 28400 -0.0685649 0.0705046 -0.00966184 Vertex 28401 -0.0696234 0.0702067 -0.00731499 Vertex 28402 -0.0706455 0.0701231 -0.00669595 Vertex 28403 -0.0716108 0.0701594 -0.00639514 Vertex 28404 0.008145 0.103004 -0.0207662 Vertex 28405 -0.0648762 0.109524 -0.0137682 Vertex 28406 -0.0109917 0.177231 -0.0295208 Vertex 28407 -0.0232113 0.177135 -0.0206374 Vertex 28408 -0.0672794 0.176766 -0.0591515 Vertex 28409 -0.0849191 0.117035 0.0482987 Vertex 28410 -0.0560293 0.0674866 0.0368481 Vertex 28411 -0.0792446 0.0699823 0.0139682 Vertex 28412 -0.0649943 0.0623954 0.0235277 Vertex 28413 -0.0172735 0.180097 -0.0253788 Vertex 28414 -0.0578898 0.108324 -0.0176181 Vertex 28415 -0.0530022 0.0712206 0.0395879 Vertex 28416 -0.0162612 0.17862 -0.0260128 Vertex 28417 -0.0261862 0.17712 -0.0185723 Vertex 28418 0.00713618 0.103008 -0.0210892 Vertex 28419 -0.0768529 0.106269 -0.00826114 Vertex 28420 -0.0642836 0.175364 -0.0612207 Vertex 28421 -0.0571072 0.154583 -0.000558004 Vertex 28422 -0.063767 0.0615586 0.0227478 Vertex 28423 -0.0680607 0.153823 -0.0498908 Vertex 28424 -0.0716564 0.0639047 0.0190638 Vertex 28425 -0.0882831 0.114383 0.0443189 Vertex 28426 -0.0520198 0.147215 -0.00210798 Vertex 28427 -0.0619905 0.129678 -0.00799355 Vertex 28428 0.00614005 0.103026 -0.0213684 Vertex 28429 -0.0749012 0.110639 -0.0076926 Vertex 28430 -0.0212115 0.177139 -0.0220322 Vertex 28431 -0.0420929 0.156178 -0.00917116 Vertex 28432 -0.0749222 0.126715 -0.00818803 Vertex 28433 -0.0858669 0.119072 -0.00140229 Vertex 28434 -0.0698753 0.117966 -0.00835455 Vertex 28435 -0.0699642 0.138462 -0.00776795 Vertex 28436 -0.0620405 0.138434 -0.00686017 Vertex 28437 -0.0652259 0.166727 -0.0597961 Vertex 28438 0.00514522 0.103044 -0.0216473 Vertex 28439 0.0272437 0.0732614 -0.0238068 Vertex 28440 0.0262796 0.0733084 -0.0244949 Vertex 28441 0.0252808 0.0733562 -0.0251315 Vertex 28442 0.0242564 0.0734016 -0.0257301 Vertex 28443 0.0232513 0.0734458 -0.026356 Vertex 28444 0.0222567 0.0734747 -0.02675 Vertex 28445 0.0212602 0.0735043 -0.0271352 Vertex 28446 0.0202388 0.0735294 -0.0276011 Vertex 28447 0.0192552 0.0735767 -0.0281447 Vertex 28448 0.0182552 0.0736117 -0.028651 Vertex 28449 0.0172623 0.073643 -0.0290458 Vertex 28450 0.0162606 0.0736784 -0.0295549 Vertex 28451 0.0152424 0.0737083 -0.0300265 Vertex 28452 0.0142589 0.0737441 -0.0304465 Vertex 28453 0.0132662 0.0737717 -0.03084 Vertex 28454 0.0122374 0.0737871 -0.031159 Vertex 28455 0.0112326 0.0738116 -0.0315294 Vertex 28456 0.0102584 0.0738736 -0.0323425 Vertex 28457 0.0092913 0.0739064 -0.0330363 Vertex 28458 0.00825492 0.0739666 -0.0336091 Vertex 28459 0.00725148 0.0739904 -0.0339985 Vertex 28460 0.00623854 0.074018 -0.0343382 Vertex 28461 0.00525002 0.0740223 -0.0345195 Vertex 28462 0.0042421 0.0740405 -0.0347398 Vertex 28463 0.00324014 0.0740573 -0.0349749 Vertex 28464 0.00224668 0.0740592 -0.0351433 Vertex 28465 0.00124079 0.0740793 -0.0353703 Vertex 28466 0.000235601 0.0740952 -0.0356038 Vertex 28467 -0.000755237 0.0740961 -0.035785 Vertex 28468 -0.00176079 0.0741065 -0.0358743 Vertex 28469 -0.00275795 0.0740872 -0.0359501 Vertex 28470 -0.00375332 0.07411 -0.0361467 Vertex 28471 -0.00475508 0.0741241 -0.036385 Vertex 28472 -0.00575874 0.0741425 -0.036638 Vertex 28473 -0.0067422 0.0741543 -0.0369448 Vertex 28474 -0.00776303 0.0742012 -0.03739 Vertex 28475 -0.00874908 0.0742103 -0.037697 Vertex 28476 -0.00975763 0.0742329 -0.0379217 Vertex 28477 -0.0107442 0.0742291 -0.0379783 Vertex 28478 -0.0117585 0.0742488 -0.0381827 Vertex 28479 -0.0127624 0.0742651 -0.0384156 Vertex 28480 -0.0137664 0.0742812 -0.0386456 Vertex 28481 -0.0147659 0.0742889 -0.0388052 Vertex 28482 -0.0157667 0.0742966 -0.0389627 Vertex 28483 -0.0167703 0.0742961 -0.0390024 Vertex 28484 -0.0177692 0.074285 -0.0389303 Vertex 28485 -0.0187732 0.0742782 -0.038946 Vertex 28486 -0.019773 0.0742847 -0.0390372 Vertex 28487 -0.020775 0.0742803 -0.0390259 Vertex 28488 -0.0217865 0.0742531 -0.0388026 Vertex 28489 -0.0227837 0.0742285 -0.0385317 Vertex 28490 -0.0238007 0.0741774 -0.0380398 Vertex 28491 -0.0247632 0.0741431 -0.0374571 Vertex 28492 -0.0257535 0.0740897 -0.0368116 Vertex 28493 -0.0267551 0.0740245 -0.0360482 Vertex 28494 -0.0277305 0.073972 -0.0353872 Vertex 28495 0.00414764 0.103055 -0.021794 Vertex 28496 -0.0778694 0.106226 -0.00738941 Vertex 28497 0.00315167 0.10307 -0.0219554 Vertex 28498 -0.0749718 0.138395 -0.00644263 Vertex 28499 -0.0640884 0.160897 -0.0576117 Vertex 28500 -0.0121987 0.171236 -0.0257581 Vertex 28501 -0.0345906 0.0727451 -0.0199624 Vertex 28502 -0.0357278 0.07254 -0.0181295 Vertex 28503 -0.0367265 0.0725274 -0.0180009 Vertex 28504 -0.0377229 0.0724783 -0.0174913 Vertex 28505 -0.0387321 0.0724952 -0.0174162 Vertex 28506 -0.0397313 0.072486 -0.017441 Vertex 28507 -0.0407291 0.0724971 -0.0177035 Vertex 28508 -0.0417274 0.0725105 -0.0179617 Vertex 28509 -0.0427238 0.072521 -0.0180673 Vertex 28510 -0.0437241 0.0724973 -0.0179849 Vertex 28511 -0.044734 0.0724552 -0.0176324 Vertex 28512 -0.0457178 0.0724199 -0.0170809 Vertex 28513 -0.046711 0.0723683 -0.0164352 Vertex 28514 -0.0476953 0.0723623 -0.0159721 Vertex 28515 -0.0487147 0.0723044 -0.01565 Vertex 28516 -0.0497184 0.0723081 -0.0156401 Vertex 28517 -0.0507233 0.0723393 -0.0157137 Vertex 28518 -0.0517297 0.0723507 -0.015831 Vertex 28519 -0.0527322 0.0723715 -0.0160877 Vertex 28520 -0.0537245 0.0723552 -0.016258 Vertex 28521 -0.0547243 0.0723714 -0.0165135 Vertex 28522 -0.0557218 0.0723836 -0.0166307 Vertex 28523 -0.0567184 0.0723883 -0.016755 Vertex 28524 -0.0577142 0.0723919 -0.0167433 Vertex 28525 -0.0587154 0.0723411 -0.016523 Vertex 28526 -0.0597101 0.0723346 -0.0163812 Vertex 28527 -0.0607248 0.0722644 -0.016058 Vertex 28528 -0.0617151 0.0722545 -0.0157777 Vertex 28529 -0.0627089 0.0722313 -0.0153832 Vertex 28530 -0.0636875 0.0722354 -0.0149801 Vertex 28531 -0.0646745 0.0721957 -0.0143162 Vertex 28532 -0.0656915 0.0720893 -0.0135891 Vertex 28533 -0.0666558 0.0720875 -0.0129051 Vertex 28534 -0.0676524 0.0720092 -0.0120172 Vertex 28535 -0.0686466 0.0719376 -0.0111307 Vertex 28536 -0.069632 0.0719472 -0.0104624 Vertex 28537 -0.0704897 0.0719829 -0.0097429 Vertex 28538 -0.0717133 0.0715245 -0.00752229 Vertex 28539 -0.0726425 0.0716156 -0.00744076 Vertex 28540 0.00214252 0.103065 -0.0221511 Vertex 28541 0.00114663 0.103071 -0.022297 Vertex 28542 -0.0241845 0.177125 -0.0200954 Vertex 28543 -0.0421326 0.160667 -0.0107094 Vertex 28544 -0.0682452 0.17678 -0.058273 Vertex 28545 -0.0728909 0.120866 -0.00826881 Vertex 28546 -0.0798939 0.123658 -0.00558813 Vertex 28547 -0.0201192 0.163785 -0.0165508 Vertex 28548 -0.0220519 0.163768 -0.0162501 Vertex 28549 -0.0241121 0.163789 -0.0160029 Vertex 28550 -0.0261166 0.163762 -0.0159025 Vertex 28551 -0.0291219 0.163733 -0.0155493 Vertex 28552 -0.0311143 0.16374 -0.0152454 Vertex 28553 -0.0152331 0.178626 -0.0269991 Vertex 28554 -0.0351109 0.16372 -0.0144674 Vertex 28555 -0.0371067 0.163706 -0.0138205 Vertex 28556 -0.0391731 0.163682 -0.0125377 Vertex 28557 -0.0401607 0.163674 -0.0120006 Vertex 28558 -0.0495476 0.147557 -0.00269468 Vertex 28559 -0.0718669 0.115007 -0.00776782 Vertex 28560 -0.0211197 0.1653 -0.017528 Vertex 28561 -0.0530779 0.153128 -0.00337034 Vertex 28562 -0.051019 0.147224 -0.00224048 Vertex 28563 -0.0629825 0.129686 -0.00825839 Vertex 28564 -0.0181519 0.16827 -0.0202389 Vertex 28565 -0.064903 0.110966 -0.0133006 Vertex 28566 -0.0629125 0.111049 -0.0145904 Vertex 28567 -0.0421939 0.165153 -0.0106292 Vertex 28568 -0.0311112 0.162246 -0.0146263 Vertex 28569 -0.0848716 0.119101 -0.00207765 Vertex 28570 -0.0708742 0.117963 -0.00822963 Vertex 28571 -0.0241779 0.1712 -0.0197595 Vertex 28572 -0.0729302 0.128204 -0.00868672 Vertex 28573 0.000140075 0.103071 -0.0225088 Vertex 28574 0.0292497 0.0745452 -0.0220465 Vertex 28575 0.0282176 0.0746072 -0.022898 Vertex 28576 0.0272456 0.0746657 -0.023693 Vertex 28577 0.0262228 0.0747294 -0.0245497 Vertex 28578 0.0252624 0.0747714 -0.0251152 Vertex 28579 0.0242369 0.0748124 -0.0257049 Vertex 28580 0.0232608 0.0748451 -0.0261321 Vertex 28581 0.0222568 0.0748707 -0.0265095 Vertex 28582 0.02126 0.0748992 -0.0268979 Vertex 28583 0.0202616 0.0749268 -0.0272874 Vertex 28584 0.0192374 0.0749637 -0.0278698 Vertex 28585 0.0182369 0.0749953 -0.0283712 Vertex 28586 0.0172333 0.0750251 -0.0287502 Vertex 28587 0.016266 0.0750624 -0.0291952 Vertex 28588 0.0152633 0.0751002 -0.0297036 Vertex 28589 0.0142627 0.0751304 -0.0300927 Vertex 28590 0.0132595 0.0751478 -0.0304595 Vertex 28591 0.012258 0.0751733 -0.0308354 Vertex 28592 0.0112772 0.0752122 -0.0313695 Vertex 28593 0.0102426 0.0752832 -0.032327 Vertex 28594 0.00923639 0.0753581 -0.0333366 Vertex 28595 0.00824182 0.0753956 -0.0338579 Vertex 28596 0.00725505 0.0754138 -0.0341479 Vertex 28597 0.00623924 0.0754282 -0.0343629 Vertex 28598 0.00523462 0.075444 -0.0346019 Vertex 28599 0.00423384 0.0754618 -0.0348642 Vertex 28600 0.00323955 0.0754773 -0.0351385 Vertex 28601 0.0022305 0.0754937 -0.0353597 Vertex 28602 0.00123579 0.075497 -0.0355058 Vertex 28603 0.000231956 0.0755133 -0.0357459 Vertex 28604 -0.000757317 0.075519 -0.0359212 Vertex 28605 -0.00176067 0.0755229 -0.0360316 Vertex 28606 -0.00276518 0.0755391 -0.036261 Vertex 28607 -0.0037539 0.0755488 -0.0365646 Vertex 28608 -0.00476651 0.0755803 -0.0368945 Vertex 28609 -0.00574286 0.0755721 -0.037104 Vertex 28610 -0.0067485 0.0755804 -0.0372256 Vertex 28611 -0.00776872 0.0756191 -0.0375185 Vertex 28612 -0.00876475 0.075634 -0.0378123 Vertex 28613 -0.00976932 0.0756525 -0.0380331 Vertex 28614 -0.0107695 0.0756601 -0.0381615 Vertex 28615 -0.0117695 0.075665 -0.0382916 Vertex 28616 -0.0127703 0.0756733 -0.0384193 Vertex 28617 -0.0137759 0.0756859 -0.0386228 Vertex 28618 -0.0147779 0.0756914 -0.0387415 Vertex 28619 -0.0157734 0.075693 -0.0388238 Vertex 28620 -0.0167746 0.0756989 -0.0389455 Vertex 28621 -0.0177757 0.0756957 -0.0389571 Vertex 28622 -0.0187757 0.0756949 -0.0390019 Vertex 28623 -0.0197782 0.075693 -0.0390468 Vertex 28624 -0.0207923 0.0756874 -0.0390657 Vertex 28625 -0.0218074 0.0756618 -0.0388536 Vertex 28626 -0.022811 0.0756351 -0.0385829 Vertex 28627 -0.0237813 0.0756129 -0.0382516 Vertex 28628 -0.024753 0.0755695 -0.0376923 Vertex 28629 -0.0257631 0.0755055 -0.0369491 Vertex 28630 -0.0267649 0.0754486 -0.0363172 Vertex 28631 -0.027746 0.0753954 -0.0356568 Vertex 28632 -0.0287456 0.0753309 -0.0348961 Vertex 28633 -0.0401309 0.160681 -0.0117333 Vertex 28634 -0.0759684 0.138187 -0.00615578 Vertex 28635 -0.0132042 0.171245 -0.025107 Vertex 28636 -0.0411819 0.166655 -0.0111213 Vertex 28637 -0.035736 0.0740102 -0.0187661 Vertex 28638 -0.0367327 0.0739624 -0.0182558 Vertex 28639 -0.0377299 0.0739307 -0.0178742 Vertex 28640 -0.0387296 0.0739178 -0.0177449 Vertex 28641 -0.0397368 0.0739371 -0.0178005 Vertex 28642 -0.0407405 0.0739506 -0.0180651 Vertex 28643 -0.0417336 0.0739469 -0.0182277 Vertex 28644 -0.0427321 0.0739589 -0.0183224 Vertex 28645 -0.0437238 0.0739429 -0.018203 Vertex 28646 -0.0447383 0.0738987 -0.0178782 Vertex 28647 -0.0456618 0.0741031 -0.0174455 Vertex 28648 -0.0467161 0.0738381 -0.0169211 Vertex 28649 -0.0477118 0.073839 -0.0167643 Vertex 28650 -0.0487235 0.0738176 -0.0166605 Vertex 28651 -0.0497297 0.0737805 -0.0165746 Vertex 28652 -0.0507323 0.0738128 -0.0166527 Vertex 28653 -0.0517362 0.0738243 -0.0167692 Vertex 28654 -0.0527297 0.0738092 -0.0169322 Vertex 28655 -0.0537348 0.0738508 -0.0172852 Vertex 28656 -0.0547337 0.0738545 -0.0174125 Vertex 28657 -0.0557308 0.0738305 -0.0174435 Vertex 28658 -0.0567297 0.0738308 -0.0175741 Vertex 28659 -0.0577288 0.0738232 -0.0175832 Vertex 28660 -0.0587405 0.0737726 -0.0173801 Vertex 28661 -0.0597307 0.0737738 -0.017073 Vertex 28662 -0.0607249 0.0737695 -0.0169262 Vertex 28663 -0.0617342 0.0737271 -0.0167014 Vertex 28664 -0.0627245 0.073729 -0.0165415 Vertex 28665 -0.0637344 0.0736795 -0.0161836 Vertex 28666 -0.0647113 0.0736859 -0.0158833 Vertex 28667 -0.0657015 0.0736405 -0.0152375 Vertex 28668 -0.0666897 0.0735998 -0.0145924 Vertex 28669 -0.0676789 0.0735575 -0.0139417 Vertex 28670 -0.0686614 0.0735088 -0.0131618 Vertex 28671 -0.0696892 0.0733745 -0.0120577 Vertex 28672 -0.0706351 0.0733936 -0.01149 Vertex 28673 -0.0715599 0.0733863 -0.0105456 Vertex 28674 -0.0727292 0.0730957 -0.00887693 Vertex 28675 -0.0736682 0.0730938 -0.00832442 Vertex 28676 -0.0746688 0.0730125 -0.00771761 Vertex 28677 -0.00386335 0.103093 -0.0232514 Vertex 28678 -0.00486561 0.103096 -0.0233724 Vertex 28679 -0.0841891 0.111446 0.02976 Vertex 28680 -0.0849288 0.12649 -0.00334252 Vertex 28681 -0.0768765 0.119334 -0.00688293 Vertex 28682 -0.0271127 0.16377 -0.0158754 Vertex 28683 -0.0738815 0.117926 -0.00764413 Vertex 28684 -0.074881 0.117904 -0.00727699 Vertex 28685 -0.0331264 0.163719 -0.0148995 Vertex 28686 -0.0518697 0.144272 -0.000239851 Vertex 28687 -0.0411447 0.163664 -0.0114686 Vertex 28688 -0.0700277 0.153659 -0.0489787 Vertex 28689 -0.0421212 0.159153 -0.0103433 Vertex 28690 -0.0752784 0.113511 0.0497641 Vertex 28691 -0.0231819 0.174173 -0.0207431 Vertex 28692 -0.0615233 0.0354132 0.043881 Vertex 28693 -0.0819371 0.129486 -0.00455242 Vertex 28694 -0.0724815 0.0696506 0.0297377 Vertex 28695 -0.0639126 0.11101 -0.0139478 Vertex 28696 -0.0669104 0.112326 -0.011534 Vertex 28697 -0.058015 0.128168 -0.00680186 Vertex 28698 -0.0749578 0.132548 -0.00734349 Vertex 28699 -0.0358825 0.108535 -0.0199213 Vertex 28700 -0.0719312 0.128266 -0.00893149 Vertex 28701 0.0302394 0.0759037 -0.0212804 Vertex 28702 0.0292349 0.0759579 -0.0220376 Vertex 28703 0.0282252 0.0760107 -0.0227881 Vertex 28704 0.0272664 0.0760665 -0.0234764 Vertex 28705 0.0262523 0.076131 -0.0243472 Vertex 28706 0.025242 0.0761745 -0.0249679 Vertex 28707 0.0242446 0.0762105 -0.0254816 Vertex 28708 0.02323 0.0762417 -0.0259573 Vertex 28709 0.0222494 0.0762728 -0.0263867 Vertex 28710 0.021268 0.0762952 -0.0266753 Vertex 28711 0.0202412 0.0763232 -0.0271232 Vertex 28712 0.0192535 0.076364 -0.0276613 Vertex 28713 0.0182388 0.0763952 -0.028136 Vertex 28714 0.0172542 0.0764235 -0.0285503 Vertex 28715 0.0162437 0.0764684 -0.0291666 Vertex 28716 0.0152466 0.0765161 -0.0298116 Vertex 28717 0.0142529 0.0765304 -0.0302113 Vertex 28718 0.0132683 0.0765435 -0.0305058 Vertex 28719 0.0122616 0.0765812 -0.0308581 Vertex 28720 0.0112702 0.0766287 -0.031501 Vertex 28721 0.0102504 0.0766955 -0.0323547 Vertex 28722 0.00921578 0.0767579 -0.0331902 Vertex 28723 0.00823978 0.0768076 -0.0338586 Vertex 28724 0.00723985 0.076824 -0.0341303 Vertex 28725 0.00623348 0.0768314 -0.0342539 Vertex 28726 0.00522675 0.0768423 -0.034472 Vertex 28727 0.00423189 0.0768627 -0.0347545 Vertex 28728 0.00322397 0.0768846 -0.0351052 Vertex 28729 0.00224005 0.0768974 -0.0352993 Vertex 28730 0.00123226 0.0769082 -0.0355253 Vertex 28731 0.00022872 0.0769217 -0.0357549 Vertex 28732 -0.000764451 0.0769261 -0.0359174 Vertex 28733 -0.0017512 0.0769296 -0.0360915 Vertex 28734 -0.00277907 0.0769693 -0.0364873 Vertex 28735 -0.00376935 0.0769928 -0.0369082 Vertex 28736 -0.00476329 0.0770151 -0.03731 Vertex 28737 -0.00577511 0.0770351 -0.037534 Vertex 28738 -0.00676687 0.0770295 -0.0375725 Vertex 28739 -0.0077735 0.0770379 -0.0376668 Vertex 28740 -0.00877699 0.0770434 -0.0377883 Vertex 28741 -0.00977607 0.0770524 -0.0379416 Vertex 28742 -0.0107806 0.0770662 -0.0381287 Vertex 28743 -0.0117712 0.0770642 -0.0382004 Vertex 28744 -0.0127752 0.0770687 -0.0383028 Vertex 28745 -0.0137772 0.0770735 -0.0384143 Vertex 28746 -0.0147745 0.0770701 -0.0384436 Vertex 28747 -0.015779 0.0770791 -0.0385675 Vertex 28748 -0.0167783 0.0770825 -0.0387039 Vertex 28749 -0.0177813 0.0770869 -0.0388032 Vertex 28750 -0.018783 0.0770899 -0.0389016 Vertex 28751 -0.0197826 0.0770974 -0.0390157 Vertex 28752 -0.0207882 0.0770942 -0.0390427 Vertex 28753 -0.0218167 0.0770677 -0.0388569 Vertex 28754 -0.0228108 0.0770465 -0.0385748 Vertex 28755 -0.0237829 0.0770195 -0.0382449 Vertex 28756 -0.024781 0.0769658 -0.0376048 Vertex 28757 -0.0257886 0.0768981 -0.036857 Vertex 28758 -0.0267825 0.0768545 -0.0363352 Vertex 28759 -0.0277474 0.076815 -0.0357774 Vertex 28760 -0.0287531 0.0767493 -0.0350292 Vertex 28761 -0.0560454 0.148678 -0.00182226 Vertex 28762 -0.0410616 0.156231 -0.0095971 Vertex 28763 -0.0461338 0.160629 -0.00828859 Vertex 28764 -0.0141909 0.171251 -0.024451 Vertex 28765 -0.0408828 0.108487 -0.0195205 Vertex 28766 -0.0357408 0.0754574 -0.0191515 Vertex 28767 -0.0367401 0.0754253 -0.0187666 Vertex 28768 -0.0377389 0.0753784 -0.0182557 Vertex 28769 -0.0387388 0.0753845 -0.0180569 Vertex 28770 -0.0397472 0.0753921 -0.0181662 Vertex 28771 -0.0407441 0.0753914 -0.0183192 Vertex 28772 -0.0417396 0.0754091 -0.018561 Vertex 28773 -0.0427371 0.0753968 -0.0185868 Vertex 28774 -0.0437352 0.0753785 -0.0184868 Vertex 28775 -0.0447434 0.0753343 -0.0181391 Vertex 28776 -0.0457331 0.0753099 -0.0177194 Vertex 28777 -0.0467249 0.0753156 -0.0175399 Vertex 28778 -0.0477302 0.0753108 -0.0175447 Vertex 28779 -0.0487364 0.0753122 -0.0176891 Vertex 28780 -0.0497426 0.0753235 -0.0177986 Vertex 28781 -0.0507419 0.0753249 -0.0179378 Vertex 28782 -0.0517453 0.0753545 -0.0181561 Vertex 28783 -0.0527446 0.0753599 -0.0182797 Vertex 28784 -0.0537353 0.0753205 -0.0183524 Vertex 28785 -0.0547392 0.075379 -0.0185175 Vertex 28786 -0.0557355 0.0753549 -0.0185519 Vertex 28787 -0.0567366 0.0753362 -0.0185878 Vertex 28788 -0.0577516 0.0752955 -0.0185275 Vertex 28789 -0.058737 0.075302 -0.0183386 Vertex 28790 -0.0597355 0.0752692 -0.0179534 Vertex 28791 -0.0607447 0.0752603 -0.0176616 Vertex 28792 -0.0617308 0.0752409 -0.0175405 Vertex 28793 -0.0627466 0.0751872 -0.0173542 Vertex 28794 -0.063731 0.0751942 -0.0171769 Vertex 28795 -0.0647346 0.0751547 -0.0168067 Vertex 28796 -0.0657273 0.0751276 -0.0164058 Vertex 28797 -0.0667272 0.0750614 -0.0156487 Vertex 28798 -0.0676894 0.0750921 -0.0153176 Vertex 28799 -0.0686919 0.0750175 -0.0147112 Vertex 28800 -0.069701 0.0749104 -0.0135814 Vertex 28801 -0.0706469 0.0749114 -0.0128891 Vertex 28802 -0.0716272 0.0748459 -0.0119866 Vertex 28803 -0.0726176 0.0747594 -0.0108396 Vertex 28804 -0.073622 0.0747015 -0.00970199 Vertex 28805 -0.0746919 0.0745094 -0.0088781 Vertex 28806 -0.0756587 0.0744591 -0.00795246 Vertex 28807 -0.0744184 0.069256 0.0261761 Vertex 28808 -0.0619642 0.126755 -0.00826981 Vertex 28809 -0.0748487 0.0664559 0.00653551 Vertex 28810 -0.0718987 0.123811 -0.00847645 Vertex 28811 -0.0768619 0.116386 -0.00596474 Vertex 28812 -0.0441494 0.163638 -0.00943446 Vertex 28813 -0.043169 0.163647 -0.0101027 Vertex 28814 -0.0642809 0.173904 -0.0612545 Vertex 28815 -0.0321607 0.174124 -0.015122 Vertex 28816 -0.0699388 0.131128 -0.00863643 Vertex 28817 -0.0162925 0.180099 -0.0261659 Vertex 28818 -0.038066 0.156257 -0.0102365 Vertex 28819 -0.088037 0.113814 0.026966 Vertex 28820 -0.0719896 0.139908 -0.00735583 Vertex 28821 -0.0162165 0.175672 -0.0252165 Vertex 28822 -0.0570417 0.148685 -0.00168484 Vertex 28823 -0.0550443 0.148674 -0.00204704 Vertex 28824 -0.0500801 0.151654 -0.00422617 Vertex 28825 -0.0722147 0.149455 -0.0385736 Vertex 28826 -0.0460756 0.154674 -0.00723534 Vertex 28827 -0.0242219 0.178615 -0.0196227 Vertex 28828 0.0302495 0.0773125 -0.0211724 Vertex 28829 0.0292317 0.0773621 -0.0219141 Vertex 28830 0.00109253 0.113026 -0.0199046 Vertex 28831 0.0272466 0.0774691 -0.0233342 Vertex 28832 0.0262324 0.0775308 -0.0242027 Vertex 28833 0.0252499 0.0775815 -0.0248688 Vertex 28834 0.024254 0.0776067 -0.0252579 Vertex 28835 0.023226 0.077646 -0.0258357 Vertex 28836 0.0222548 0.0776918 -0.0264111 Vertex 28837 0.0212552 0.0777078 -0.0266851 Vertex 28838 0.0202715 0.077733 -0.0270961 Vertex 28839 0.0192461 0.0777761 -0.0276631 Vertex 28840 0.0182606 0.0778122 -0.0281935 Vertex 28841 0.0172524 0.0778474 -0.0286871 Vertex 28842 0.0162209 0.0779008 -0.0293961 Vertex 28843 0.0152687 0.0779357 -0.0299953 Vertex 28844 0.0142249 0.0779815 -0.0305449 Vertex 28845 0.0132714 0.0779991 -0.0309033 Vertex 28846 0.0122459 0.0780339 -0.0313519 Vertex 28847 0.0112282 0.0780681 -0.031821 Vertex 28848 0.0102384 0.0781052 -0.0323493 Vertex 28849 0.00921575 0.0781468 -0.0329463 Vertex 28850 0.00822704 0.0782053 -0.033734 Vertex 28851 0.00724365 0.07823 -0.0340312 Vertex 28852 0.00623069 0.0782309 -0.0341321 Vertex 28853 0.00522677 0.078235 -0.0342467 Vertex 28854 0.00422707 0.0782528 -0.0345112 Vertex 28855 0.00322165 0.0782734 -0.0348651 Vertex 28856 0.00221136 0.0782941 -0.0352071 Vertex 28857 0.00123277 0.0783068 -0.0354173 Vertex 28858 0.000231967 0.0783204 -0.0356621 Vertex 28859 -0.000774843 0.0783346 -0.0358957 Vertex 28860 -0.00175707 0.0783385 -0.0360812 Vertex 28861 -0.00277478 0.078376 -0.0365291 Vertex 28862 -0.00377564 0.078412 -0.0370359 Vertex 28863 -0.00477608 0.0784365 -0.0374195 Vertex 28864 -0.00578852 0.0784633 -0.0377499 Vertex 28865 -0.0067867 0.0784694 -0.0378945 Vertex 28866 -0.0077824 0.0784642 -0.0379203 Vertex 28867 -0.00878487 0.0784493 -0.0377777 Vertex 28868 -0.00978193 0.0784455 -0.0377778 Vertex 28869 -0.0107827 0.0784509 -0.0379132 Vertex 28870 -0.0117787 0.0784571 -0.0380559 Vertex 28871 -0.0127769 0.0784711 -0.0383296 Vertex 28872 -0.0137626 0.0784616 -0.0384771 Vertex 28873 -0.0147733 0.078434 -0.0385776 Vertex 28874 -0.0157845 0.0784788 -0.0385671 Vertex 28875 -0.0167857 0.0784752 -0.0385587 Vertex 28876 -0.0177849 0.0784811 -0.0386843 Vertex 28877 -0.0187899 0.0784905 -0.0388371 Vertex 28878 -0.0197891 0.0785016 -0.0390423 Vertex 28879 -0.0207953 0.0784993 -0.0390618 Vertex 28880 -0.0217961 0.0784868 -0.0389208 Vertex 28881 -0.0228049 0.0784515 -0.0385457 Vertex 28882 -0.0237986 0.0784163 -0.0381462 Vertex 28883 -0.0247852 0.0783802 -0.0377363 Vertex 28884 -0.0257826 0.0783385 -0.0372231 Vertex 28885 -0.0268076 0.0782799 -0.0366273 Vertex 28886 -0.0277915 0.0782183 -0.0359607 Vertex 28887 -0.0287674 0.078167 -0.0351681 Vertex 28888 -0.0698715 0.116492 -0.00825865 Vertex 28889 -0.0759551 0.131077 -0.00722143 Vertex 28890 -0.0451365 0.160644 -0.00892562 Vertex 28891 -0.0222335 0.171216 -0.0204735 Vertex 28892 -0.0357484 0.0768864 -0.0192776 Vertex 28893 -0.0367451 0.0768715 -0.019149 Vertex 28894 -0.0377467 0.0768482 -0.0188928 Vertex 28895 -0.038743 0.0768256 -0.018638 Vertex 28896 -0.0397503 0.0768521 -0.0186787 Vertex 28897 -0.0407478 0.0768336 -0.0187281 Vertex 28898 -0.0417451 0.0768346 -0.0188724 Vertex 28899 -0.0427423 0.0768225 -0.0188988 Vertex 28900 -0.0437426 0.076832 -0.018848 Vertex 28901 -0.0447417 0.0768063 -0.0185987 Vertex 28902 -0.0457387 0.0767861 -0.0183415 Vertex 28903 -0.046743 0.0767653 -0.0182293 Vertex 28904 -0.0477443 0.0767654 -0.0182192 Vertex 28905 -0.0487475 0.0767781 -0.0183253 Vertex 28906 -0.0497482 0.0767922 -0.0184367 Vertex 28907 -0.0507515 0.0768088 -0.0186854 Vertex 28908 -0.0517467 0.076797 -0.0188523 Vertex 28909 -0.0527517 0.076824 -0.0190661 Vertex 28910 -0.0537473 0.076818 -0.0192258 Vertex 28911 -0.0547458 0.0768339 -0.0193157 Vertex 28912 -0.0557441 0.0768187 -0.0193441 Vertex 28913 -0.0567451 0.0768007 -0.0192338 Vertex 28914 -0.0577454 0.0767844 -0.0191155 Vertex 28915 -0.0587477 0.0767588 -0.0188591 Vertex 28916 -0.0597593 0.07671 -0.0185219 Vertex 28917 -0.060744 0.0766988 -0.0182193 Vertex 28918 -0.0617474 0.0766736 -0.0179709 Vertex 28919 -0.0627411 0.0766785 -0.0179436 Vertex 28920 -0.0637474 0.0766435 -0.0177206 Vertex 28921 -0.0647452 0.0766241 -0.0174472 Vertex 28922 -0.0657497 0.0765846 -0.017077 Vertex 28923 -0.0667245 0.0765676 -0.016644 Vertex 28924 -0.0677394 0.0764997 -0.0160371 Vertex 28925 -0.0687337 0.0764635 -0.0155195 Vertex 28926 -0.0697118 0.0764164 -0.0147262 Vertex 28927 -0.070667 0.0763937 -0.014042 Vertex 28928 -0.0716413 0.0763478 -0.0132577 Vertex 28929 -0.0725837 0.0763091 -0.0123208 Vertex 28930 -0.0736653 0.0761112 -0.0107553 Vertex 28931 -0.0746487 0.0760382 -0.00984365 Vertex 28932 -0.0756712 0.0759423 -0.00884701 Vertex 28933 -0.0260174 0.0351047 -0.0290083 Vertex 28934 -0.0298552 0.0986755 -0.0232224 Vertex 28935 -0.0471051 0.157621 -0.00763511 Vertex 28936 -0.0208664 0.103024 -0.023442 Vertex 28937 -0.0683095 0.178205 -0.0587107 Vertex 28938 -0.0598887 0.10828 -0.0169771 Vertex 28939 -0.0218649 0.103029 -0.0235712 Vertex 28940 -0.0451911 0.163637 -0.00858913 Vertex 28941 -0.0659276 0.123847 -0.00897257 Vertex 28942 -0.0768904 0.0733563 0.0291265 Vertex 28943 -0.0719379 0.131113 -0.00828186 Vertex 28944 -0.0600264 0.132579 -0.00719549 Vertex 28945 -0.0849899 0.127963 -0.0030064 Vertex 28946 -0.064981 0.131148 -0.00860586 Vertex 28947 -0.0560526 0.151627 -0.00172465 Vertex 28948 -0.020213 0.178617 -0.0227863 Vertex 28949 -0.0639059 0.118033 -0.00945272 Vertex 28950 -0.0709176 0.112214 -0.00951227 Vertex 28951 -0.0228668 0.103033 -0.0236969 Vertex 28952 0.031224 0.0786608 -0.0202592 Vertex 28953 0.0302906 0.0787129 -0.0208549 Vertex 28954 -0.023866 0.103031 -0.0237009 Vertex 28955 -0.0248668 0.103031 -0.023615 Vertex 28956 0.0272291 0.0788716 -0.0231926 Vertex 28957 0.026272 0.0789381 -0.0240124 Vertex 28958 0.0252504 0.0789879 -0.0247523 Vertex 28959 0.0242629 0.0790161 -0.0251629 Vertex 28960 0.0232602 0.0790529 -0.0256674 Vertex 28961 0.0222263 0.0790988 -0.0263649 Vertex 28962 0.0212455 0.0791286 -0.0267859 Vertex 28963 0.0202561 0.0791555 -0.0271913 Vertex 28964 0.0192101 0.0791931 -0.0277308 Vertex 28965 0.0182534 0.0792348 -0.0283217 Vertex 28966 0.0172732 0.0792708 -0.0288683 Vertex 28967 0.0162407 0.0793143 -0.0294472 Vertex 28968 0.0152238 0.0793568 -0.0300519 Vertex 28969 0.0142201 0.0793919 -0.0305544 Vertex 28970 0.0132183 0.0794258 -0.0310561 Vertex 28971 0.012239 0.0794574 -0.0314827 Vertex 28972 0.0112347 0.0794806 -0.0318525 Vertex 28973 0.0102045 0.0795083 -0.0323062 Vertex 28974 0.00923994 0.0795457 -0.0327494 Vertex 28975 0.00823122 0.079605 -0.0335706 Vertex 28976 0.00722702 0.0796252 -0.0338785 Vertex 28977 0.00624923 0.0796338 -0.0339546 Vertex 28978 0.00523056 0.0796312 -0.0340387 Vertex 28979 0.00422975 0.0796448 -0.0342885 Vertex 28980 0.00321355 0.0796602 -0.0346071 Vertex 28981 0.00222038 0.0796794 -0.0348837 Vertex 28982 0.0012257 0.0797035 -0.0352779 Vertex 28983 0.00022388 0.0797271 -0.0356555 Vertex 28984 -0.000786355 0.0797462 -0.0360298 Vertex 28985 -0.00175716 0.0797524 -0.0362245 Vertex 28986 -0.00277394 0.0797805 -0.0365537 Vertex 28987 -0.00378536 0.0798194 -0.0370348 Vertex 28988 -0.00479094 0.0798443 -0.0373862 Vertex 28989 -0.00579055 0.0798611 -0.0376463 Vertex 28990 -0.00679227 0.0798757 -0.0378854 Vertex 28991 -0.0077906 0.079881 -0.0380243 Vertex 28992 -0.00878734 0.0798675 -0.0379507 Vertex 28993 -0.00979029 0.0798633 -0.0379189 Vertex 28994 -0.0107915 0.0798668 -0.0380291 Vertex 28995 -0.0117867 0.0798822 -0.0383021 Vertex 28996 -0.0127931 0.0799092 -0.038653 Vertex 28997 -0.013784 0.0799171 -0.0389774 Vertex 28998 -0.0147866 0.0799249 -0.0391233 Vertex 28999 -0.0157732 0.0799164 -0.0389165 Vertex 29000 -0.0167958 0.0799195 -0.0388883 Vertex 29001 -0.017794 0.0799068 -0.038901 Vertex 29002 -0.0187977 0.0799028 -0.0389405 Vertex 29003 -0.0197994 0.0799106 -0.0390737 Vertex 29004 -0.0208017 0.0799082 -0.0390716 Vertex 29005 -0.0218161 0.0798852 -0.0388524 Vertex 29006 -0.0227823 0.0798633 -0.0386035 Vertex 29007 -0.0238036 0.0798229 -0.0381557 Vertex 29008 -0.0248008 0.0797877 -0.0377608 Vertex 29009 -0.0257724 0.0797722 -0.0374309 Vertex 29010 -0.0267825 0.079725 -0.0369434 Vertex 29011 -0.0277909 0.0796672 -0.0363416 Vertex 29012 -0.0258635 0.103016 -0.0235702 Vertex 29013 -0.00888364 0.107351 -0.0226177 Vertex 29014 -0.0681832 0.155264 -0.0517309 Vertex 29015 -0.0799767 0.138308 -0.00390962 Vertex 29016 -0.0471517 0.160622 -0.00754132 Vertex 29017 -0.0151984 0.171233 -0.0237028 Vertex 29018 -0.0321401 0.16671 -0.0160336 Vertex 29019 -0.035755 0.0783248 -0.0195335 Vertex 29020 -0.0367537 0.0783235 -0.0195335 Vertex 29021 -0.0377523 0.0783086 -0.0194038 Vertex 29022 -0.0387497 0.0782817 -0.0191475 Vertex 29023 -0.0397537 0.0782783 -0.0191449 Vertex 29024 -0.0407521 0.0782965 -0.0192261 Vertex 29025 -0.0417522 0.0782987 -0.0193601 Vertex 29026 -0.0427537 0.0783105 -0.0194623 Vertex 29027 -0.0437474 0.0783133 -0.0194351 Vertex 29028 -0.0447519 0.078285 -0.0193632 Vertex 29029 -0.0457512 0.0782542 -0.0192962 Vertex 29030 -0.0467494 0.0782878 -0.0191673 Vertex 29031 -0.0477542 0.0782681 -0.0190718 Vertex 29032 -0.0487526 0.0782553 -0.019094 Vertex 29033 -0.0497576 0.0782604 -0.019072 Vertex 29034 -0.0507565 0.078263 -0.0192091 Vertex 29035 -0.0517494 0.0782459 -0.0193853 Vertex 29036 -0.0527541 0.0782706 -0.0196088 Vertex 29037 -0.0537516 0.078251 -0.0196488 Vertex 29038 -0.054753 0.0782755 -0.0197234 Vertex 29039 -0.0557536 0.0782586 -0.0197587 Vertex 29040 -0.0567617 0.0782351 -0.019665 Vertex 29041 -0.0577737 0.0782037 -0.0194332 Vertex 29042 -0.058755 0.0782067 -0.0192512 Vertex 29043 -0.0597552 0.0781833 -0.0189903 Vertex 29044 -0.0607622 0.0781498 -0.0187637 Vertex 29045 -0.0617213 0.0781294 -0.0185002 Vertex 29046 -0.062765 0.0780997 -0.0182585 Vertex 29047 -0.0637445 0.0781022 -0.0180675 Vertex 29048 -0.0647445 0.0780775 -0.0178137 Vertex 29049 -0.0657518 0.0780369 -0.0174491 Vertex 29050 -0.0667327 0.078026 -0.0171522 Vertex 29051 -0.067736 0.0779793 -0.0166569 Vertex 29052 -0.0687289 0.0779401 -0.0161359 Vertex 29053 -0.0697213 0.0778913 -0.0154943 Vertex 29054 -0.070675 0.0778663 -0.0147995 Vertex 29055 -0.0716986 0.077793 -0.0140498 Vertex 29056 -0.0726667 0.0777379 -0.0132872 Vertex 29057 -0.0735819 0.0777026 -0.0122023 Vertex 29058 -0.0746813 0.077485 -0.0103851 Vertex 29059 -0.0756644 0.0774182 -0.00947264 Vertex 29060 -0.0766564 0.0773474 -0.00857073 Vertex 29061 -0.077632 0.077285 -0.00766199 Vertex 29062 -0.0268707 0.103016 -0.0234914 Vertex 29063 -0.0540479 0.142765 -0.001179 Vertex 29064 -0.0501125 0.157587 -0.00554245 Vertex 29065 -0.0662865 0.178231 -0.0601734 Vertex 29066 -0.0278697 0.103003 -0.0233536 Vertex 29067 -0.01113 0.175691 -0.0290055 Vertex 29068 -0.0288694 0.102979 -0.023086 Vertex 29069 -0.0298632 0.102958 -0.0228236 Vertex 29070 -0.0689238 0.125301 -0.00884615 Vertex 29071 -0.0191965 0.175667 -0.0232885 Vertex 29072 -0.0308593 0.102934 -0.0225503 Vertex 29073 -0.0639861 0.131146 -0.00837414 Vertex 29074 -0.0689145 0.123836 -0.00886831 Vertex 29075 -0.0201478 0.16826 -0.0196016 Vertex 29076 -0.0709975 0.139911 -0.00751202 Vertex 29077 -0.0560788 0.154579 -0.00133297 Vertex 29078 -0.0500787 0.154631 -0.00525635 Vertex 29079 -0.0699148 0.109401 -0.011164 Vertex 29080 -0.0514343 0.0647808 0.0348885 Vertex 29081 -0.0679104 0.122376 -0.00896749 Vertex 29082 0.032247 0.0800194 -0.0194064 Vertex 29083 0.0312695 0.0800594 -0.0199503 Vertex 29084 -0.0318582 0.102916 -0.0222908 Vertex 29085 -0.0328687 0.10291 -0.0220775 Vertex 29086 -0.0338704 0.102893 -0.0218261 Vertex 29087 -0.0348703 0.102876 -0.0215726 Vertex 29088 -0.0358592 0.10284 -0.0213952 Vertex 29089 0.0252131 0.0803965 -0.024704 Vertex 29090 0.0242356 0.0804257 -0.0251216 Vertex 29091 0.0232434 0.0804535 -0.0255191 Vertex 29092 0.0222353 0.0804964 -0.0261413 Vertex 29093 0.0212668 0.080528 -0.0265872 Vertex 29094 0.0202522 0.0805604 -0.0270674 Vertex 29095 0.0192111 0.080597 -0.0276192 Vertex 29096 0.0182204 0.080645 -0.0282763 Vertex 29097 0.0172353 0.0806842 -0.0288156 Vertex 29098 0.0162329 0.0807169 -0.0293214 Vertex 29099 0.0152428 0.0807565 -0.0298514 Vertex 29100 0.0142259 0.080787 -0.0303234 Vertex 29101 0.0132252 0.0808221 -0.0308314 Vertex 29102 0.0122352 0.0808526 -0.0312408 Vertex 29103 0.0112279 0.0808839 -0.0317275 Vertex 29104 0.0102276 0.0809104 -0.0321098 Vertex 29105 0.00922562 0.0809438 -0.0326125 Vertex 29106 0.00824429 0.0809884 -0.0331618 Vertex 29107 0.00719386 0.0810104 -0.0336874 Vertex 29108 0.00624351 0.0810351 -0.0338384 Vertex 29109 0.00522768 0.0810328 -0.0339223 Vertex 29110 0.00422853 0.0810435 -0.0341743 Vertex 29111 0.00322675 0.0810659 -0.0345434 Vertex 29112 0.00222867 0.0810902 -0.0349213 Vertex 29113 0.00120832 0.0811183 -0.0353756 Vertex 29114 0.000192029 0.0811649 -0.0359709 Vertex 29115 -0.000765864 0.0811873 -0.0364626 Vertex 29116 -0.00177837 0.0811944 -0.0365591 Vertex 29117 -0.00280854 0.081222 -0.0368531 Vertex 29118 -0.0037871 0.0812341 -0.0371832 Vertex 29119 -0.00477478 0.0812297 -0.0373809 Vertex 29120 -0.00577775 0.0812461 -0.0375203 Vertex 29121 -0.0067913 0.0812637 -0.0377236 Vertex 29122 -0.00779714 0.0812765 -0.0379169 Vertex 29123 -0.00879058 0.0812731 -0.0379859 Vertex 29124 -0.00978632 0.0812687 -0.0379822 Vertex 29125 -0.010802 0.0812949 -0.0382665 Vertex 29126 -0.0117856 0.0813065 -0.0386038 Vertex 29127 -0.012793 0.0813325 -0.0389447 Vertex 29128 -0.0137973 0.081348 -0.0391911 Vertex 29129 -0.0147977 0.0813547 -0.0393324 Vertex 29130 -0.0158009 0.0813621 -0.039398 Vertex 29131 -0.0168011 0.0813465 -0.0393174 Vertex 29132 -0.017803 0.0813337 -0.0391893 Vertex 29133 -0.0188061 0.081321 -0.0390856 Vertex 29134 -0.0198097 0.0813191 -0.0390949 Vertex 29135 -0.0208078 0.081314 -0.039065 Vertex 29136 -0.021805 0.0812974 -0.0389167 Vertex 29137 -0.0228155 0.081267 -0.0385568 Vertex 29138 -0.0238165 0.0812337 -0.0381734 Vertex 29139 -0.0248115 0.081196 -0.037776 Vertex 29140 -0.0258047 0.0811626 -0.0373791 Vertex 29141 -0.0268045 0.0811284 -0.0369845 Vertex 29142 -0.0277917 0.0810724 -0.036339 Vertex 29143 -0.0368759 0.102855 -0.0211016 Vertex 29144 -0.0378653 0.102824 -0.0209313 Vertex 29145 -0.0769716 0.13837 -0.00578148 Vertex 29146 -0.0418874 0.108498 -0.0194287 Vertex 29147 -0.0609117 0.111106 -0.0154828 Vertex 29148 -0.0231718 0.171204 -0.0201308 Vertex 29149 -0.0388626 0.102809 -0.0208006 Vertex 29150 -0.0357662 0.0798799 -0.0213145 Vertex 29151 -0.0367613 0.0798086 -0.0204262 Vertex 29152 -0.0377622 0.0797629 -0.0199128 Vertex 29153 -0.0387577 0.0797624 -0.0199123 Vertex 29154 -0.0397582 0.079747 -0.0196231 Vertex 29155 -0.040758 0.0797297 -0.0196637 Vertex 29156 -0.0417568 0.0797359 -0.0197866 Vertex 29157 -0.0427656 0.0797392 -0.0197597 Vertex 29158 -0.0437584 0.079737 -0.0197567 Vertex 29159 -0.0447592 0.0797381 -0.0197229 Vertex 29160 -0.0457595 0.0797224 -0.0196258 Vertex 29161 -0.04676 0.0797358 -0.0197068 Vertex 29162 -0.0477636 0.0797421 -0.0198355 Vertex 29163 -0.0487592 0.0797294 -0.0200154 Vertex 29164 -0.0497578 0.0797288 -0.020162 Vertex 29165 -0.0507602 0.0797387 -0.0202693 Vertex 29166 -0.0517619 0.079747 -0.0203928 Vertex 29167 -0.0527613 0.0797578 -0.020501 Vertex 29168 -0.0537592 0.0797599 -0.020636 Vertex 29169 -0.0547588 0.079768 -0.0207581 Vertex 29170 -0.0557733 0.0797194 -0.0205764 Vertex 29171 -0.0567655 0.0797174 -0.020408 Vertex 29172 -0.0577724 0.0796775 -0.0200459 Vertex 29173 -0.0587729 0.0796565 -0.019784 Vertex 29174 -0.0597676 0.0796261 -0.0193897 Vertex 29175 -0.0607661 0.0796035 -0.0191344 Vertex 29176 -0.0617634 0.0795901 -0.0189973 Vertex 29177 -0.0627659 0.0795658 -0.0187488 Vertex 29178 -0.0637756 0.0795327 -0.0183843 Vertex 29179 -0.0647673 0.0795072 -0.0181104 Vertex 29180 -0.0657591 0.0794867 -0.0178324 Vertex 29181 -0.0667655 0.079447 -0.0174677 Vertex 29182 -0.0677628 0.079419 -0.0170759 Vertex 29183 -0.0687693 0.0793684 -0.0165822 Vertex 29184 -0.0697484 0.0793376 -0.0160307 Vertex 29185 -0.0707552 0.0792696 -0.0152786 Vertex 29186 -0.0717184 0.0792466 -0.0147262 Vertex 29187 -0.0726954 0.0791971 -0.0139413 Vertex 29188 -0.0398616 0.102806 -0.020798 Vertex 29189 -0.0408599 0.102809 -0.0209257 Vertex 29190 -0.0418598 0.102811 -0.0210501 Vertex 29191 -0.0766364 0.0788383 -0.00918256 Vertex 29192 -0.0776493 0.0787462 -0.00818258 Vertex 29193 -0.0428613 0.102811 -0.0212634 Vertex 29194 -0.0729484 0.132565 -0.00781242 Vertex 29195 -0.0609674 0.125285 -0.00834926 Vertex 29196 -0.0162255 0.177147 -0.0257279 Vertex 29197 -0.0438604 0.102816 -0.0213031 Vertex 29198 -0.0448632 0.102817 -0.0213129 Vertex 29199 -0.0401601 0.165169 -0.0119868 Vertex 29200 -0.0182635 0.180096 -0.0244849 Vertex 29201 -0.0142563 0.178628 -0.0276625 Vertex 29202 -0.0458636 0.102811 -0.0213024 Vertex 29203 -0.0772542 0.116219 0.0507045 Vertex 29204 -0.0693236 0.142228 -0.0102995 Vertex 29205 -0.0468614 0.102797 -0.0212675 Vertex 29206 -0.0530219 0.147196 -0.00187885 Vertex 29207 -0.0669809 0.135535 -0.00827796 Vertex 29208 -0.0241405 0.168248 -0.0186857 Vertex 29209 -0.0699845 0.139935 -0.00772138 Vertex 29210 -0.068996 0.139931 -0.00789046 Vertex 29211 -0.0779562 0.0727271 0.0259414 Vertex 29212 -0.0478639 0.102799 -0.0211716 Vertex 29213 0.0332402 0.0814034 -0.0189012 Vertex 29214 0.0322568 0.0814321 -0.0193234 Vertex 29215 0.0312166 0.0814571 -0.0197537 Vertex 29216 0.0292141 0.0815364 -0.0209002 Vertex 29217 0.0282219 0.0816125 -0.0219304 Vertex 29218 -0.0488701 0.10281 -0.0210946 Vertex 29219 -0.0498654 0.102788 -0.0210486 Vertex 29220 0.0242315 0.0818412 -0.0251267 Vertex 29221 0.0232197 0.0818757 -0.0256198 Vertex 29222 0.0222547 0.0819067 -0.0260667 Vertex 29223 0.0212191 0.0819428 -0.0266321 Vertex 29224 0.0202669 0.0819781 -0.0271085 Vertex 29225 0.0192289 0.0820148 -0.027672 Vertex 29226 0.0182285 0.0820502 -0.0281776 Vertex 29227 0.0172148 0.0820814 -0.0286624 Vertex 29228 0.0162074 0.0821136 -0.0291532 Vertex 29229 0.0152459 0.0821521 -0.0296185 Vertex 29230 0.0142229 0.0821798 -0.0300828 Vertex 29231 0.0132266 0.0822053 -0.0304726 Vertex 29232 0.0122229 0.0822322 -0.030844 Vertex 29233 0.011218 0.0822648 -0.0313395 Vertex 29234 0.0102245 0.0823018 -0.0318649 Vertex 29235 0.00923376 0.0823418 -0.0323881 Vertex 29236 0.00821609 0.0823703 -0.0328688 Vertex 29237 0.00720473 0.0823989 -0.0333538 Vertex 29238 0.00621551 0.0824281 -0.0337654 Vertex 29239 0.00521659 0.0824462 -0.0340286 Vertex 29240 0.00422867 0.0824562 -0.0341922 Vertex 29241 0.00320889 0.0824712 -0.0345101 Vertex 29242 0.00219672 0.0825025 -0.0349885 Vertex 29243 0.00119778 0.0825383 -0.0355009 Vertex 29244 0.000200297 0.0825801 -0.036136 Vertex 29245 -0.000786782 0.0826169 -0.0366787 Vertex 29246 -0.00181562 0.0826307 -0.0368615 Vertex 29247 -0.00279611 0.0826469 -0.0371795 Vertex 29248 -0.00378569 0.0826645 -0.03749 Vertex 29249 -0.00479883 0.0826783 -0.0376925 Vertex 29250 -0.00580621 0.0826794 -0.0377615 Vertex 29251 -0.00679579 0.0826768 -0.0377354 Vertex 29252 -0.0077992 0.0826766 -0.0378216 Vertex 29253 -0.00880164 0.0826803 -0.0379328 Vertex 29254 -0.00979541 0.0826872 -0.0380854 Vertex 29255 -0.0108037 0.0827117 -0.0384206 Vertex 29256 -0.0117953 0.0827249 -0.0387188 Vertex 29257 -0.0127989 0.0827406 -0.0389623 Vertex 29258 -0.0138083 0.082755 -0.0391488 Vertex 29259 -0.0148026 0.0827563 -0.0392327 Vertex 29260 -0.0158083 0.0827626 -0.0393641 Vertex 29261 -0.0168075 0.0827608 -0.0394117 Vertex 29262 -0.0178133 0.0827451 -0.0392154 Vertex 29263 -0.0188128 0.082729 -0.0390748 Vertex 29264 -0.0198038 0.0827175 -0.0390158 Vertex 29265 -0.0208075 0.0827095 -0.0389174 Vertex 29266 -0.0217998 0.0826894 -0.0387559 Vertex 29267 -0.0228147 0.0826618 -0.0384205 Vertex 29268 -0.0238248 0.0826344 -0.0380614 Vertex 29269 -0.0248084 0.0826031 -0.0377611 Vertex 29270 -0.0258065 0.0825691 -0.0373737 Vertex 29271 -0.0268119 0.082528 -0.0368734 Vertex 29272 -0.027798 0.0824702 -0.0362167 Vertex 29273 -0.0508692 0.102779 -0.0209206 Vertex 29274 -0.0518684 0.102767 -0.0207881 Vertex 29275 -0.0779853 0.13835 -0.00526914 Vertex 29276 -0.0528842 0.102762 -0.0205636 Vertex 29277 -0.0308696 0.105755 -0.0215547 Vertex 29278 -0.0161876 0.171234 -0.0230543 Vertex 29279 -0.0539058 0.102757 -0.0202213 Vertex 29280 -0.0357746 0.08137 -0.0222094 Vertex 29281 -0.0367737 0.0813353 -0.0218258 Vertex 29282 -0.0377668 0.0812615 -0.0209367 Vertex 29283 -0.0387676 0.0812185 -0.0204237 Vertex 29284 -0.0397664 0.0812015 -0.0202928 Vertex 29285 -0.0407686 0.0811968 -0.0203079 Vertex 29286 -0.0417672 0.0812092 -0.0204027 Vertex 29287 -0.0427644 0.0812202 -0.0203472 Vertex 29288 -0.0437659 0.0811743 -0.0201658 Vertex 29289 -0.0447652 0.0811738 -0.019998 Vertex 29290 -0.0457643 0.0811616 -0.0200148 Vertex 29291 -0.0467675 0.0811826 -0.0202513 Vertex 29292 -0.0477684 0.0811966 -0.0205178 Vertex 29293 -0.0487658 0.0811872 -0.020682 Vertex 29294 -0.049768 0.081217 -0.020889 Vertex 29295 -0.0507686 0.0812185 -0.0210302 Vertex 29296 -0.0517663 0.0812234 -0.0211522 Vertex 29297 -0.0527672 0.0812315 -0.0212685 Vertex 29298 -0.0537672 0.0812389 -0.0213883 Vertex 29299 -0.0547672 0.0812274 -0.0214088 Vertex 29300 -0.0557789 0.0811944 -0.0212002 Vertex 29301 -0.0567677 0.0811908 -0.0210238 Vertex 29302 -0.0577843 0.0811473 -0.0206854 Vertex 29303 -0.0587805 0.0811174 -0.0202922 Vertex 29304 -0.0597828 0.0810723 -0.0197911 Vertex 29305 -0.0607911 0.0810335 -0.0194373 Vertex 29306 -0.0617624 0.0810326 -0.0192317 Vertex 29307 -0.0627622 0.0810191 -0.0190992 Vertex 29308 -0.0637681 0.0809918 -0.0188675 Vertex 29309 -0.0647819 0.0809531 -0.0185144 Vertex 29310 -0.0657845 0.0809163 -0.0181411 Vertex 29311 -0.0667677 0.0809002 -0.0178421 Vertex 29312 -0.0677742 0.0808646 -0.0174732 Vertex 29313 -0.0687631 0.080836 -0.0170666 Vertex 29314 -0.0697426 0.08081 -0.0166425 Vertex 29315 -0.0707265 0.080778 -0.0161096 Vertex 29316 -0.0717214 0.0807275 -0.0154713 Vertex 29317 -0.0727179 0.0806647 -0.0147187 Vertex 29318 -0.0549046 0.102722 -0.0198351 Vertex 29319 -0.0649995 0.134056 -0.00807462 Vertex 29320 -0.0558807 0.102663 -0.0193944 Vertex 29321 -0.0766463 0.0803349 -0.0100768 Vertex 29322 -0.0776104 0.0802915 -0.00928059 Vertex 29323 -0.0568656 0.102623 -0.018982 Vertex 29324 -0.0719497 0.132579 -0.00806719 Vertex 29325 -0.0898521 0.112924 0.020019 Vertex 29326 -0.0808786 0.122166 -0.00503067 Vertex 29327 -0.0649403 0.125308 -0.00887181 Vertex 29328 -0.0748707 0.116421 -0.00675171 Vertex 29329 -0.071123 0.111741 0.0467572 Vertex 29330 -0.0192566 0.180095 -0.0235875 Vertex 29331 -0.0578796 0.102621 -0.0187883 Vertex 29332 -0.0631283 0.163827 -0.0595262 Vertex 29333 -0.0588719 0.102608 -0.018764 Vertex 29334 -0.0598777 0.102599 -0.0186645 Vertex 29335 -0.0540206 0.147182 -0.0016614 Vertex 29336 -0.0809364 0.129495 -0.00494346 Vertex 29337 -0.0281544 0.168213 -0.0175818 Vertex 29338 -0.0321537 0.168198 -0.0161712 Vertex 29339 -0.0646921 0.0617226 0.0224003 Vertex 29340 -0.0608814 0.102587 -0.0185388 Vertex 29341 0.0342215 0.0827959 -0.0185003 Vertex 29342 0.0332406 0.0828224 -0.0189128 Vertex 29343 0.0322227 0.0828447 -0.0192606 Vertex 29344 0.0312441 0.0828649 -0.019558 Vertex 29345 0.0302365 0.0828976 -0.0200496 Vertex 29346 0.0292296 0.08295 -0.0208022 Vertex 29347 -0.0318681 0.105727 -0.021166 Vertex 29348 -0.0618805 0.102572 -0.018381 Vertex 29349 -0.0683418 0.0625091 0.0209713 Vertex 29350 -0.0628904 0.102548 -0.0180123 Vertex 29351 -0.0638899 0.102518 -0.0176142 Vertex 29352 -0.0648854 0.102482 -0.0170908 Vertex 29353 0.0222207 0.0833264 -0.0261432 Vertex 29354 0.0212116 0.083355 -0.0266295 Vertex 29355 0.0202101 0.0833915 -0.0271395 Vertex 29356 0.0192058 0.0834241 -0.02764 Vertex 29357 0.0182147 0.0834619 -0.0281698 Vertex 29358 0.0172301 0.0834905 -0.0285819 Vertex 29359 0.0162242 0.0835192 -0.0290783 Vertex 29360 0.0152276 0.0835585 -0.0295949 Vertex 29361 0.014215 0.083589 -0.0300782 Vertex 29362 0.013232 0.0835986 -0.0303791 Vertex 29363 0.0122268 0.0836141 -0.0306261 Vertex 29364 0.0112368 0.0836448 -0.0310335 Vertex 29365 0.0102178 0.0836927 -0.0316174 Vertex 29366 0.00920102 0.0837298 -0.0322138 Vertex 29367 0.00820345 0.083757 -0.0326005 Vertex 29368 0.00721225 0.0837864 -0.0330068 Vertex 29369 0.00621596 0.083814 -0.033411 Vertex 29370 0.00519565 0.0838361 -0.0338494 Vertex 29371 0.00420316 0.0838546 -0.0341295 Vertex 29372 0.00320361 0.0838721 -0.0343861 Vertex 29373 0.00218481 0.0838969 -0.0348518 Vertex 29374 0.00120164 0.0839391 -0.0353946 Vertex 29375 0.000177098 0.0839833 -0.0361114 Vertex 29376 -0.000810177 0.084021 -0.0366442 Vertex 29377 -0.00180047 0.0840422 -0.0369301 Vertex 29378 -0.00280088 0.0840687 -0.037315 Vertex 29379 -0.00380864 0.0840797 -0.0375505 Vertex 29380 -0.00481396 0.0840888 -0.0377627 Vertex 29381 -0.00581332 0.0840953 -0.0378871 Vertex 29382 -0.00680823 0.0840973 -0.0379387 Vertex 29383 -0.00780413 0.0840976 -0.0379648 Vertex 29384 -0.00880306 0.0841017 -0.0380883 Vertex 29385 -0.00978935 0.0841125 -0.0382567 Vertex 29386 -0.0108141 0.0841239 -0.038537 Vertex 29387 -0.0118005 0.0841384 -0.0387163 Vertex 29388 -0.0128008 0.0841443 -0.0388521 Vertex 29389 -0.0138101 0.0841459 -0.0389466 Vertex 29390 -0.0148129 0.0841518 -0.0390669 Vertex 29391 -0.0158141 0.084157 -0.0391976 Vertex 29392 -0.0168173 0.0841632 -0.0392397 Vertex 29393 -0.0178184 0.0841429 -0.0390768 Vertex 29394 -0.0188214 0.0841215 -0.0388306 Vertex 29395 -0.0198215 0.0841085 -0.0387066 Vertex 29396 -0.0208293 0.0841002 -0.0385977 Vertex 29397 -0.0218204 0.0840783 -0.0384285 Vertex 29398 -0.0228183 0.0840509 -0.0381648 Vertex 29399 -0.0238126 0.0840242 -0.0378907 Vertex 29400 -0.0248231 0.0839948 -0.0375331 Vertex 29401 -0.0258212 0.0839605 -0.0371412 Vertex 29402 -0.0267986 0.0839175 -0.0367186 Vertex 29403 -0.027787 0.0838632 -0.0360686 Vertex 29404 -0.0658775 0.102439 -0.0164403 Vertex 29405 -0.0662758 0.159515 -0.0565111 Vertex 29406 -0.0789967 0.138332 -0.00474353 Vertex 29407 -0.0668605 0.102389 -0.0157781 Vertex 29408 -0.0530436 0.142764 -0.000526483 Vertex 29409 -0.0171943 0.171219 -0.0224352 Vertex 29410 -0.0678577 0.102354 -0.0152646 Vertex 29411 -0.0357813 0.0828042 -0.0224653 Vertex 29412 -0.036779 0.0827886 -0.0223365 Vertex 29413 -0.037778 0.0827556 -0.0219531 Vertex 29414 -0.0387777 0.0827042 -0.0213153 Vertex 29415 -0.0397746 0.0826803 -0.0210594 Vertex 29416 -0.0407693 0.0826515 -0.0208197 Vertex 29417 -0.0417723 0.0826397 -0.0208385 Vertex 29418 -0.0427705 0.0826571 -0.0207663 Vertex 29419 -0.0437727 0.082626 -0.0206932 Vertex 29420 -0.0447719 0.0826286 -0.0206706 Vertex 29421 -0.0457735 0.0826328 -0.0207974 Vertex 29422 -0.0467773 0.0826601 -0.021013 Vertex 29423 -0.0477776 0.0826677 -0.0211258 Vertex 29424 -0.0487756 0.0826651 -0.0212781 Vertex 29425 -0.0497774 0.0826759 -0.0213753 Vertex 29426 -0.0507734 0.0826521 -0.0214824 Vertex 29427 -0.0517751 0.0826668 -0.0215624 Vertex 29428 -0.0527747 0.0826622 -0.0215537 Vertex 29429 -0.0537766 0.0826585 -0.0215583 Vertex 29430 -0.0547757 0.0826557 -0.0215494 Vertex 29431 -0.0557755 0.0826404 -0.0214196 Vertex 29432 -0.056773 0.082629 -0.0212703 Vertex 29433 -0.0577821 0.0826022 -0.0210434 Vertex 29434 -0.0588054 0.0825509 -0.0205914 Vertex 29435 -0.0597904 0.0825229 -0.0201763 Vertex 29436 -0.060782 0.082481 -0.019648 Vertex 29437 -0.0617679 0.0824635 -0.0193558 Vertex 29438 -0.0627701 0.0824471 -0.0192325 Vertex 29439 -0.0637771 0.0824308 -0.0191299 Vertex 29440 -0.0647775 0.0824087 -0.0188685 Vertex 29441 -0.0657828 0.082373 -0.0185031 Vertex 29442 -0.0667973 0.0823343 -0.0181512 Vertex 29443 -0.0677812 0.0823162 -0.0178553 Vertex 29444 -0.0687998 0.0822684 -0.0173873 Vertex 29445 -0.0697681 0.0822532 -0.0170635 Vertex 29446 -0.0707773 0.0822058 -0.016572 Vertex 29447 -0.0717492 0.0821807 -0.0161321 Vertex 29448 -0.0727338 0.0821447 -0.0156124 Vertex 29449 -0.0737119 0.082093 -0.0148287 Vertex 29450 -0.0688663 0.102328 -0.014772 Vertex 29451 -0.0698712 0.102299 -0.0142744 Vertex 29452 -0.0708675 0.102264 -0.0137609 Vertex 29453 -0.0776607 0.0817583 -0.0102119 Vertex 29454 -0.0718785 0.102239 -0.0132694 Vertex 29455 -0.0729035 0.125275 -0.00849683 Vertex 29456 -0.0709427 0.132583 -0.00826816 Vertex 29457 -0.0431813 0.165147 -0.00997877 Vertex 29458 -0.0328776 0.105721 -0.0208169 Vertex 29459 -0.0728613 0.102198 -0.0128504 Vertex 29460 -0.0738654 0.102167 -0.0123482 Vertex 29461 -0.0748613 0.102114 -0.0115761 Vertex 29462 -0.0521615 0.159088 -0.00368491 Vertex 29463 -0.0739879 0.139879 -0.00672352 Vertex 29464 -0.0661842 0.163921 -0.0584969 Vertex 29465 -0.0652684 0.163853 -0.0591668 Vertex 29466 -0.0570856 0.153101 -0.000954757 Vertex 29467 -0.055019 0.14719 -0.00165707 Vertex 29468 -0.0799264 0.129511 -0.00520384 Vertex 29469 -0.07894 0.12954 -0.00577029 Vertex 29470 -0.0758742 0.102063 -0.0106997 Vertex 29471 -0.0670075 0.139964 -0.00790796 Vertex 29472 -0.0768389 0.102007 -0.0101454 Vertex 29473 -0.0649294 0.123847 -0.00887936 Vertex 29474 0.0342448 0.0842103 -0.0184253 Vertex 29475 0.033222 0.0842418 -0.0188996 Vertex 29476 0.0322402 0.0842577 -0.0191914 Vertex 29477 0.0312031 0.0842875 -0.0196213 Vertex 29478 0.030217 0.0843227 -0.0201565 Vertex 29479 0.0292051 0.0843756 -0.0209031 Vertex 29480 0.0282305 0.08443 -0.0217055 Vertex 29481 -0.0768656 0.120803 -0.0071099 Vertex 29482 -0.0630045 0.132588 -0.00795426 Vertex 29483 -0.0679156 0.112303 -0.0110315 Vertex 29484 -0.0338762 0.105703 -0.0205658 Vertex 29485 0.0212182 0.0847586 -0.026404 Vertex 29486 0.0202147 0.0847891 -0.0269071 Vertex 29487 0.019219 0.0848258 -0.027423 Vertex 29488 0.0182107 0.084868 -0.0280483 Vertex 29489 0.0172008 0.0849074 -0.0286671 Vertex 29490 0.0162319 0.0849386 -0.0291053 Vertex 29491 0.015216 0.0849668 -0.0295884 Vertex 29492 0.0141976 0.0850086 -0.0301852 Vertex 29493 0.0132032 0.0850348 -0.0305799 Vertex 29494 0.0122145 0.0850407 -0.0307351 Vertex 29495 0.0112227 0.0850587 -0.0310098 Vertex 29496 0.0102154 0.0850922 -0.0315035 Vertex 29497 0.00921045 0.0851252 -0.032 Vertex 29498 0.00819029 0.0851531 -0.0324575 Vertex 29499 0.00722024 0.0851796 -0.0327872 Vertex 29500 0.00621048 0.0851628 -0.0331463 Vertex 29501 0.00521493 0.0852237 -0.0334342 Vertex 29502 0.00420379 0.0852404 -0.0337772 Vertex 29503 0.00318984 0.0852564 -0.0341139 Vertex 29504 0.00218731 0.0852799 -0.0344916 Vertex 29505 0.00121183 0.0853285 -0.0350521 Vertex 29506 0.00019241 0.0853625 -0.035651 Vertex 29507 -0.000826517 0.0853922 -0.0362438 Vertex 29508 -0.00181283 0.0854279 -0.036655 Vertex 29509 -0.00281997 0.0854457 -0.0370162 Vertex 29510 -0.00382316 0.0854518 -0.0372434 Vertex 29511 -0.00480748 0.0854817 -0.0373491 Vertex 29512 -0.00581815 0.0854694 -0.0375201 Vertex 29513 -0.00681664 0.0854791 -0.0376549 Vertex 29514 -0.00781609 0.0854881 -0.0377912 Vertex 29515 -0.00881167 0.085499 -0.0379404 Vertex 29516 -0.0318501 0.0986369 -0.02282 Vertex 29517 -0.0108296 0.0855471 -0.0384547 Vertex 29518 -0.0118225 0.0855318 -0.0386599 Vertex 29519 -0.0128237 0.0855345 -0.0387685 Vertex 29520 -0.0138183 0.0855391 -0.0388001 Vertex 29521 -0.0148175 0.0855384 -0.0388203 Vertex 29522 -0.0158191 0.0855498 -0.0389623 Vertex 29523 -0.0168246 0.0855538 -0.0389836 Vertex 29524 -0.0178271 0.0855379 -0.0388455 Vertex 29525 -0.0188238 0.0855077 -0.0385626 Vertex 29526 -0.0198342 0.0855003 -0.0383524 Vertex 29527 -0.0208217 0.0854768 -0.038298 Vertex 29528 -0.0218218 0.0854612 -0.0381675 Vertex 29529 -0.0228193 0.0854366 -0.0379031 Vertex 29530 -0.0238165 0.0854111 -0.0376407 Vertex 29531 -0.0248237 0.0853842 -0.0372699 Vertex 29532 -0.0258164 0.0853463 -0.0368715 Vertex 29533 -0.0268088 0.0852978 -0.0363495 Vertex 29534 -0.0277715 0.0852268 -0.0356683 Vertex 29535 -0.0348769 0.105695 -0.0204457 Vertex 29536 -0.0689277 0.115103 -0.00892086 Vertex 29537 -0.0358714 0.105673 -0.0204021 Vertex 29538 -0.0291786 0.175627 -0.0167894 Vertex 29539 -0.0662775 0.0734947 0.0382764 Vertex 29540 -0.0738816 0.120852 -0.00799698 Vertex 29541 -0.0829232 0.125068 -0.00442148 Vertex 29542 -0.035813 0.0842739 -0.0225525 Vertex 29543 -0.0368013 0.0842007 -0.0223672 Vertex 29544 -0.0378081 0.0841771 -0.022143 Vertex 29545 -0.0387822 0.0841715 -0.021953 Vertex 29546 -0.0397846 0.0841362 -0.0215764 Vertex 29547 -0.040789 0.084093 -0.0212481 Vertex 29548 -0.0417827 0.0840916 -0.0212196 Vertex 29549 -0.0427782 0.0841106 -0.0212812 Vertex 29550 -0.0437814 0.0840812 -0.0212189 Vertex 29551 -0.0447805 0.0840976 -0.0212945 Vertex 29552 -0.0457806 0.0841121 -0.0213757 Vertex 29553 -0.046782 0.0841151 -0.0215173 Vertex 29554 -0.0477812 0.0840973 -0.0215817 Vertex 29555 -0.0487816 0.084091 -0.021606 Vertex 29556 -0.049781 0.0841032 -0.0216622 Vertex 29557 -0.0507818 0.0840955 -0.0217037 Vertex 29558 -0.0517799 0.0840941 -0.0216716 Vertex 29559 -0.0527821 0.0840792 -0.0215781 Vertex 29560 -0.0537819 0.0840761 -0.0215562 Vertex 29561 -0.0547819 0.0840722 -0.0215429 Vertex 29562 -0.0557857 0.0840569 -0.0214422 Vertex 29563 -0.0567766 0.0840541 -0.0213935 Vertex 29564 -0.0577868 0.0840301 -0.0211707 Vertex 29565 -0.0587854 0.0839965 -0.0207846 Vertex 29566 -0.05979 0.0839541 -0.0202843 Vertex 29567 -0.0607901 0.0839118 -0.0197808 Vertex 29568 -0.0617895 0.083881 -0.0194032 Vertex 29569 -0.0627925 0.0838575 -0.0191674 Vertex 29570 -0.0637886 0.083851 -0.0191517 Vertex 29571 -0.0647895 0.0838376 -0.0190209 Vertex 29572 -0.0658025 0.083802 -0.0186684 Vertex 29573 -0.0667828 0.0837809 -0.018353 Vertex 29574 -0.0677801 0.0837503 -0.017964 Vertex 29575 -0.0687774 0.0837142 -0.0175822 Vertex 29576 -0.0697992 0.0836733 -0.0171139 Vertex 29577 -0.0707648 0.0836514 -0.0167885 Vertex 29578 -0.0717687 0.0836085 -0.0162896 Vertex 29579 -0.072774 0.083565 -0.0157894 Vertex 29580 -0.0737507 0.0835282 -0.0152437 Vertex 29581 -0.0687764 0.180487 -0.0583042 Vertex 29582 -0.0341101 0.171131 -0.0149349 Vertex 29583 -0.0368731 0.105664 -0.0202847 Vertex 29584 -0.0308542 0.0986541 -0.0229751 Vertex 29585 0.0181741 0.0988563 -0.0226017 Vertex 29586 -0.0739058 0.125263 -0.00826143 Vertex 29587 -0.069936 0.13258 -0.0084535 Vertex 29588 -0.0224335 0.0371726 0.0541058 Vertex 29589 -0.0490886 0.157599 -0.00632625 Vertex 29590 -0.0541243 0.156074 -0.00260128 Vertex 29591 -0.017174 0.169749 -0.0215263 Vertex 29592 -0.0839336 0.126519 -0.00402298 Vertex 29593 -0.0758891 0.119352 -0.00728174 Vertex 29594 -0.0748916 0.123775 -0.00787892 Vertex 29595 0.0171551 0.0988258 -0.0226279 Vertex 29596 -0.0510743 0.153146 -0.0044532 Vertex 29597 -0.0560183 0.147198 -0.00168648 Vertex 29598 -0.0570144 0.147201 -0.00173114 Vertex 29599 -0.0779361 0.129573 -0.00656407 Vertex 29600 -0.0181754 0.17123 -0.0220272 Vertex 29601 -0.0620868 0.139878 -0.00655442 Vertex 29602 -0.054074 0.15164 -0.0027148 Vertex 29603 0.0161578 0.0988387 -0.0226848 Vertex 29604 -0.0121243 0.183164 -0.0282842 Vertex 29605 0.0151574 0.0988592 -0.0229537 Vertex 29606 0.0322123 0.0856789 -0.0192748 Vertex 29607 0.0311896 0.0857114 -0.0197343 Vertex 29608 0.0302059 0.0857499 -0.020278 Vertex 29609 0.0292205 0.0857953 -0.020938 Vertex 29610 0.0282404 0.0858422 -0.0216043 Vertex 29611 0.0271917 0.0858851 -0.0222975 Vertex 29612 0.0141613 0.0988714 -0.0229756 Vertex 29613 -0.0321194 0.165225 -0.0156285 Vertex 29614 0.0101112 0.110138 -0.0193681 Vertex 29615 -0.0470844 0.151656 -0.00519447 Vertex 29616 -0.0555627 0.0351736 0.0453577 Vertex 29617 -0.0251898 0.177123 -0.0193397 Vertex 29618 -0.0378749 0.105661 -0.0201869 Vertex 29619 -0.0172081 0.172701 -0.0233314 Vertex 29620 -0.0231858 0.17269 -0.0205136 Vertex 29621 -0.0368813 0.108512 -0.0198737 Vertex 29622 -0.0789041 0.126621 -0.00628203 Vertex 29623 -0.0388696 0.105647 -0.0202518 Vertex 29624 0.0142234 0.0864184 -0.0301272 Vertex 29625 0.0132013 0.0864568 -0.0307211 Vertex 29626 0.0122037 0.0864617 -0.0308592 Vertex 29627 0.0111963 0.0864748 -0.0310924 Vertex 29628 0.0101956 0.0865002 -0.0314726 Vertex 29629 0.00919662 0.0865327 -0.0319845 Vertex 29630 0.00820634 0.0865719 -0.0325157 Vertex 29631 0.00722196 0.0865913 -0.0328221 Vertex 29632 0.00619535 0.0866083 -0.0331365 Vertex 29633 0.005197 0.0866258 -0.0333998 Vertex 29634 0.00420219 0.0866314 -0.0335404 Vertex 29635 0.00319943 0.0866473 -0.0337836 Vertex 29636 0.00219887 0.0866713 -0.0341557 Vertex 29637 0.00120237 0.0867098 -0.0346725 Vertex 29638 0.000189104 0.0867348 -0.0351526 Vertex 29639 -0.000793766 0.0867716 -0.0355698 Vertex 29640 -0.00181216 0.086792 -0.0360393 Vertex 29641 -0.00282121 0.086807 -0.0363939 Vertex 29642 -0.00382707 0.0868147 -0.0366286 Vertex 29643 -0.00481466 0.0868424 -0.0368113 Vertex 29644 -0.00581925 0.0868408 -0.0369183 Vertex 29645 -0.00681874 0.0868473 -0.0370495 Vertex 29646 -0.00781365 0.086863 -0.0372016 Vertex 29647 -0.00880796 0.0868775 -0.037347 Vertex 29648 -0.0808705 0.11922 -0.0043482 Vertex 29649 -0.0718704 0.117956 -0.00810673 Vertex 29650 -0.0789765 0.135392 -0.00472816 Vertex 29651 -0.0128309 0.0869146 -0.0385108 Vertex 29652 -0.0138249 0.0869198 -0.0385386 Vertex 29653 -0.0148225 0.086924 -0.0385597 Vertex 29654 -0.0158265 0.0869335 -0.0385904 Vertex 29655 -0.0168218 0.086916 -0.0386596 Vertex 29656 -0.0178225 0.0869056 -0.0385387 Vertex 29657 -0.0188243 0.0868874 -0.0382929 Vertex 29658 -0.019834 0.0868717 -0.0379507 Vertex 29659 -0.020823 0.0868434 -0.0377816 Vertex 29660 -0.0218256 0.086832 -0.0376579 Vertex 29661 -0.0228243 0.0868132 -0.0375213 Vertex 29662 -0.0238123 0.0867774 -0.0372362 Vertex 29663 -0.0248377 0.0867614 -0.0367865 Vertex 29664 -0.0258016 0.0867079 -0.0364604 Vertex 29665 -0.0267903 0.0866521 -0.0358137 Vertex 29666 -0.0590207 0.126708 -0.0075139 Vertex 29667 -0.0518947 0.109852 -0.0185479 Vertex 29668 -0.0630484 0.138442 -0.00719818 Vertex 29669 -0.0830784 0.138234 -0.000100609 Vertex 29670 -0.0540417 0.148675 -0.00217424 Vertex 29671 -0.0530498 0.14867 -0.00246875 Vertex 29672 -0.0520649 0.148658 -0.00262972 Vertex 29673 -0.0728836 0.119408 -0.00813229 Vertex 29674 -0.035698 0.0857595 -0.0237144 Vertex 29675 -0.0367909 0.0856326 -0.0224706 Vertex 29676 -0.0377888 0.0855996 -0.0220857 Vertex 29677 -0.0387912 0.0855771 -0.0218281 Vertex 29678 -0.0397898 0.0855606 -0.0217035 Vertex 29679 -0.040787 0.0855384 -0.021437 Vertex 29680 -0.0417892 0.0855226 -0.0213401 Vertex 29681 -0.0427865 0.0855262 -0.0214717 Vertex 29682 -0.0437872 0.0855322 -0.0215732 Vertex 29683 -0.0447879 0.085543 -0.0216723 Vertex 29684 -0.0457869 0.0855328 -0.0217062 Vertex 29685 -0.0467885 0.0855251 -0.0217462 Vertex 29686 -0.0477868 0.0855382 -0.0218048 Vertex 29687 -0.0487902 0.0855221 -0.0217064 Vertex 29688 -0.0497873 0.0855205 -0.0216876 Vertex 29689 -0.0507888 0.0855066 -0.0215873 Vertex 29690 -0.051788 0.0855011 -0.0215694 Vertex 29691 -0.0527874 0.0854974 -0.0215293 Vertex 29692 -0.053788 0.0854855 -0.0214384 Vertex 29693 -0.0547883 0.08548 -0.0214211 Vertex 29694 -0.0557862 0.0854763 -0.0214113 Vertex 29695 -0.0567974 0.0854612 -0.0213212 Vertex 29696 -0.0578034 0.0854472 -0.0211977 Vertex 29697 -0.0588066 0.0854157 -0.0208208 Vertex 29698 -0.0598028 0.0853759 -0.0202992 Vertex 29699 -0.060795 0.0853339 -0.0197774 Vertex 29700 -0.0618022 0.0852922 -0.0192956 Vertex 29701 -0.0627849 0.0852772 -0.0191174 Vertex 29702 -0.0637998 0.0852745 -0.0191701 Vertex 29703 -0.0648062 0.0852609 -0.0190538 Vertex 29704 -0.0657951 0.0852369 -0.0187501 Vertex 29705 -0.0667905 0.0852019 -0.0183581 Vertex 29706 -0.067793 0.0851703 -0.0179862 Vertex 29707 -0.0688144 0.0851338 -0.0175228 Vertex 29708 -0.0698084 0.085099 -0.0171261 Vertex 29709 -0.0707959 0.0850638 -0.0167146 Vertex 29710 -0.0717874 0.0850294 -0.0163139 Vertex 29711 -0.0727986 0.0849862 -0.0158247 Vertex 29712 -0.0737754 0.0849525 -0.0153987 Vertex 29713 -0.0747645 0.0849032 -0.0147477 Vertex 29714 -0.0729617 0.136954 -0.00717713 Vertex 29715 -0.0699065 0.110817 -0.0106385 Vertex 29716 -0.0759462 0.128163 -0.00785989 Vertex 29717 -0.0609102 0.120922 -0.00906619 Vertex 29718 -0.074873 0.120838 -0.00772479 Vertex 29719 -0.0749113 0.125246 -0.00804661 Vertex 29720 -0.0689532 0.132595 -0.00851473 Vertex 29721 -0.0691773 0.0628504 0.020491 Vertex 29722 -0.0211868 0.174176 -0.0217698 Vertex 29723 -0.0838382 0.11616 -0.00137187 Vertex 29724 -0.0291704 0.172664 -0.0174314 Vertex 29725 -0.0662744 0.179701 -0.0600508 Vertex 29726 -0.0748889 0.119375 -0.00765967 Vertex 29727 -0.0765343 0.0681368 0.0143622 Vertex 29728 -0.0619999 0.132592 -0.00773229 Vertex 29729 -0.0520761 0.153139 -0.00390728 Vertex 29730 -0.0500773 0.15315 -0.00486218 Vertex 29731 -0.0490784 0.153156 -0.00527602 Vertex 29732 -0.0620052 0.131132 -0.00795604 Vertex 29733 -0.076964 0.129602 -0.00711544 Vertex 29734 -0.0788837 0.117794 -0.00533035 Vertex 29735 -0.0547546 0.035972 0.0465789 Vertex 29736 -0.0550666 0.151635 -0.00215779 Vertex 29737 -0.0798758 0.117757 -0.00451351 Vertex 29738 -0.0669649 0.131148 -0.00876196 Vertex 29739 0.0322049 0.0871235 -0.0192744 Vertex 29740 0.0312237 0.0871647 -0.0198177 Vertex 29741 -0.0398723 0.105663 -0.0203219 Vertex 29742 0.029243 0.0872327 -0.0208644 Vertex 29743 0.0282302 0.0872832 -0.0216049 Vertex 29744 0.0272389 0.0873294 -0.0222582 Vertex 29745 0.0262112 0.0873747 -0.0229809 Vertex 29746 0.025208 0.0874192 -0.0236148 Vertex 29747 -0.018203 0.175668 -0.0239316 Vertex 29748 -0.040872 0.105663 -0.0204372 Vertex 29749 -0.0829013 0.122118 -0.00412754 Vertex 29750 -0.0817843 0.113273 -0.0014411 Vertex 29751 -0.0679688 0.135528 -0.00836676 Vertex 29752 -0.0350927 0.168167 -0.014918 Vertex 29753 -0.0771313 0.0754374 0.0308061 Vertex 29754 -0.0579142 0.114001 -0.0151155 Vertex 29755 0.0152063 0.0878077 -0.0294658 Vertex 29756 0.014203 0.08785 -0.0301032 Vertex 29757 0.0131946 0.0878791 -0.0305989 Vertex 29758 0.0122013 0.0878954 -0.0308742 Vertex 29759 0.0111959 0.0879068 -0.0311136 Vertex 29760 0.0101954 0.0879315 -0.0314901 Vertex 29761 0.00920046 0.0879669 -0.0320124 Vertex 29762 0.0082124 0.0879974 -0.0324239 Vertex 29763 0.00720445 0.088027 -0.0329216 Vertex 29764 0.00621357 0.0880484 -0.0332214 Vertex 29765 0.00519891 0.0880579 -0.0334439 Vertex 29766 0.00419323 0.0880606 -0.0335488 Vertex 29767 0.00318991 0.0880718 -0.0337792 Vertex 29768 0.00219436 0.0880897 -0.0340427 Vertex 29769 0.00119588 0.0881146 -0.0344258 Vertex 29770 0.000176932 0.0881362 -0.0348875 Vertex 29771 -0.000805756 0.0881637 -0.035184 Vertex 29772 -0.00180856 0.0881831 -0.0355551 Vertex 29773 -0.00281209 0.0882041 -0.0358187 Vertex 29774 -0.00381497 0.0882175 -0.036071 Vertex 29775 -0.00481581 0.0882239 -0.0361964 Vertex 29776 -0.00582274 0.088227 -0.0364178 Vertex 29777 -0.00682337 0.088234 -0.0365489 Vertex 29778 -0.00782745 0.0882395 -0.0367822 Vertex 29779 -0.00880856 0.0882704 -0.0368626 Vertex 29780 -0.0602789 0.0617061 0.0251086 Vertex 29781 -0.0808086 0.113339 -0.00208766 Vertex 29782 -0.0808831 0.117721 -0.00384392 Vertex 29783 -0.0583711 0.0614813 0.0257087 Vertex 29784 -0.0510378 0.148698 -0.00295565 Vertex 29785 -0.029146 0.168214 -0.0173005 Vertex 29786 -0.0168318 0.0883012 -0.0380546 Vertex 29787 -0.0178242 0.0882801 -0.0380186 Vertex 29788 -0.01883 0.0882728 -0.037792 Vertex 29789 -0.0198294 0.0882519 -0.0375379 Vertex 29790 -0.020826 0.0882193 -0.0372663 Vertex 29791 -0.0218312 0.0882119 -0.0370399 Vertex 29792 -0.0228308 0.0881946 -0.0369029 Vertex 29793 -0.0238257 0.0881589 -0.0366228 Vertex 29794 -0.0248315 0.0881388 -0.0362597 Vertex 29795 -0.0258198 0.0880859 -0.0357275 Vertex 29796 -0.0267843 0.0880044 -0.0350453 Vertex 29797 -0.0593221 0.0615947 0.0254084 Vertex 29798 -0.066289 0.0747237 0.0389788 Vertex 29799 -0.0738723 0.109242 -0.00905672 Vertex 29800 -0.0278046 0.0364789 0.0536304 Vertex 29801 -0.029103 0.162278 -0.0149633 Vertex 29802 -0.0327955 0.0873016 -0.0254019 Vertex 29803 -0.0338535 0.0870951 -0.024854 Vertex 29804 -0.0348246 0.0872331 -0.0245609 Vertex 29805 -0.0357817 0.0871994 -0.0240994 Vertex 29806 -0.0367713 0.0871639 -0.0235593 Vertex 29807 -0.0377966 0.0870844 -0.0227292 Vertex 29808 -0.0387964 0.0870429 -0.0222174 Vertex 29809 -0.0398029 0.0870085 -0.0218621 Vertex 29810 -0.0407936 0.0869784 -0.0214607 Vertex 29811 -0.0417916 0.0869783 -0.0214259 Vertex 29812 -0.0427934 0.0869807 -0.0215837 Vertex 29813 -0.0437953 0.0869983 -0.0218056 Vertex 29814 -0.044794 0.0870021 -0.0219374 Vertex 29815 -0.0457927 0.0869975 -0.0219586 Vertex 29816 -0.0467968 0.0869913 -0.021986 Vertex 29817 -0.0477996 0.0869772 -0.0218762 Vertex 29818 -0.0487946 0.0869761 -0.0218357 Vertex 29819 -0.0363492 0.0338444 -0.0305686 Vertex 29820 -0.0353955 0.0337248 -0.0302701 Vertex 29821 -0.0344859 0.0335245 -0.0299041 Vertex 29822 -0.0334418 0.0335662 -0.0297364 Vertex 29823 -0.0323521 0.0336874 -0.0296376 Vertex 29824 -0.0314435 0.033488 -0.0292746 Vertex 29825 -0.0304487 0.0334492 -0.0290445 Vertex 29826 -0.0400285 0.0339876 -0.0295458 Vertex 29827 -0.0391149 0.0337868 -0.0291782 Vertex 29828 -0.0381652 0.0336678 -0.0288809 Vertex 29829 -0.0371627 0.0336289 -0.0286501 Vertex 29830 -0.036169 0.0335901 -0.0284162 Vertex 29831 -0.0351234 0.033632 -0.0282515 Vertex 29832 -0.0341243 0.0335931 -0.0280196 Vertex 29833 -0.0331272 0.0335545 -0.0277881 Vertex 29834 -0.0320822 0.0335961 -0.0276233 Vertex 29835 -0.031088 0.0335574 -0.0273919 Vertex 29836 -0.0300883 0.0335187 -0.027157 Vertex 29837 -0.0290915 0.0334798 -0.0269263 Vertex 29838 -0.0280931 0.033441 -0.0266965 Vertex 29839 -0.0270496 0.033483 -0.0265278 Vertex 29840 -0.0260065 0.0335246 -0.026366 Vertex 29841 -0.025008 0.0334859 -0.0261337 Vertex 29842 -0.0239658 0.0335277 -0.0259671 Vertex 29843 -0.0229686 0.033489 -0.025736 Vertex 29844 -0.0219243 0.0335307 -0.0255712 Vertex 29845 -0.020926 0.0334921 -0.0253378 Vertex 29846 -0.0198832 0.0335337 -0.0251748 Vertex 29847 -0.0188851 0.0334951 -0.0249427 Vertex 29848 -0.0177987 0.0336176 -0.0248428 Vertex 29849 -0.016752 0.0336597 -0.0246752 Vertex 29850 -0.0157117 0.033701 -0.0245127 Vertex 29851 -0.0147591 0.033582 -0.024214 Vertex 29852 -0.0136727 0.0337044 -0.0241151 Vertex 29853 -0.0126271 0.0337462 -0.0239473 Vertex 29854 -0.0116307 0.0337076 -0.023716 Vertex 29855 -0.0105851 0.0337493 -0.0235512 Vertex 29856 -0.00959045 0.0337105 -0.0233226 Vertex 29857 -0.00854262 0.033753 -0.0231542 Vertex 29858 -0.00745761 0.0338748 -0.0230567 Vertex 29859 -0.00645782 0.0338359 -0.0228235 Vertex 29860 -0.00546373 0.0337972 -0.022595 Vertex 29861 -0.00441949 0.0338393 -0.022426 Vertex 29862 -0.00342161 0.0338005 -0.0221963 Vertex 29863 -0.00233027 0.0339229 -0.0220991 Vertex 29864 -0.00129242 0.0339647 -0.0219341 Vertex 29865 -0.000337321 0.0338454 -0.0216338 Vertex 29866 0.000751147 0.0339678 -0.0215355 Vertex 29867 0.00179227 0.0340095 -0.0213712 Vertex 29868 0.00279805 0.0339767 -0.0211497 Vertex 29869 0.00384566 0.0341227 -0.0209701 Vertex 29870 0.00485548 0.0339942 -0.0207847 Vertex 29871 0.00590733 0.0340449 -0.020637 Vertex 29872 0.00695815 0.0340953 -0.0204902 Vertex 29873 0.00806259 0.0342288 -0.0204182 Vertex 29874 0.00900275 0.0343116 -0.0200681 Vertex 29875 0.010104 0.0343592 -0.0200136 Vertex 29876 0.0111342 0.034487 -0.019828 Vertex 29877 0.0122157 0.0346138 -0.0197432 Vertex 29878 0.0132509 0.0349689 -0.0195966 Vertex 29879 -0.0417544 0.0339701 -0.0279962 Vertex 29880 -0.0408028 0.033851 -0.0276993 Vertex 29881 -0.0398023 0.0338119 -0.0274661 Vertex 29882 -0.0388924 0.0336117 -0.0270987 Vertex 29883 -0.0378917 0.0335733 -0.0268663 Vertex 29884 -0.0368482 0.0336146 -0.0266993 Vertex 29885 -0.0358944 0.0334964 -0.0263993 Vertex 29886 -0.0348112 0.0336186 -0.0263013 Vertex 29887 -0.0338581 0.0334994 -0.0260028 Vertex 29888 -0.0328117 0.0335416 -0.0258378 Vertex 29889 -0.0317722 0.0335835 -0.0256749 Vertex 29890 -0.0307727 0.033545 -0.0254394 Vertex 29891 -0.0297288 0.0335868 -0.0252735 Vertex 29892 -0.0287322 0.0335484 -0.0250427 Vertex 29893 -0.0276907 0.0335904 -0.024878 Vertex 29894 -0.0266886 0.0335519 -0.0246454 Vertex 29895 -0.0256473 0.0335939 -0.0244827 Vertex 29896 -0.0246064 0.033636 -0.0243161 Vertex 29897 -0.0236086 0.0335974 -0.0240827 Vertex 29898 -0.0225654 0.0336394 -0.0239171 Vertex 29899 -0.021522 0.0336815 -0.0237529 Vertex 29900 -0.0205229 0.0336428 -0.0235211 Vertex 29901 -0.0195242 0.0336044 -0.023287 Vertex 29902 -0.0184793 0.0336465 -0.023124 Vertex 29903 -0.0174373 0.0336888 -0.022956 Vertex 29904 -0.016397 0.0337307 -0.02279 Vertex 29905 -0.0153541 0.0337728 -0.0226273 Vertex 29906 -0.0143105 0.0338147 -0.022462 Vertex 29907 -0.0133142 0.0337765 -0.0222266 Vertex 29908 -0.0122699 0.0338184 -0.0220638 Vertex 29909 -0.0112286 0.0338605 -0.0218986 Vertex 29910 -0.010186 0.0339025 -0.0217341 Vertex 29911 -0.00918339 0.033864 -0.0215021 Vertex 29912 -0.00814387 0.0339061 -0.0213361 Vertex 29913 -0.00710114 0.0339482 -0.0211688 Vertex 29914 -0.00610064 0.0339097 -0.0209348 Vertex 29915 -0.00505811 0.0339518 -0.0207718 Vertex 29916 -0.00401542 0.033994 -0.0206047 Vertex 29917 -0.00297107 0.0340356 -0.0204416 Vertex 29918 -0.00197361 0.0339973 -0.0202101 Vertex 29919 -0.000934383 0.0340393 -0.0200439 Vertex 29920 0.000108091 0.0340814 -0.0198793 Vertex 29921 0.00110904 0.0340429 -0.0196452 Vertex 29922 0.00215147 0.0340847 -0.0194818 Vertex 29923 0.00315064 0.0340463 -0.0192491 Vertex 29924 0.00419216 0.0340885 -0.0190827 Vertex 29925 0.00523902 0.0341335 -0.0189244 Vertex 29926 0.00628938 0.0341841 -0.018778 Vertex 29927 0.0072963 0.0341516 -0.018557 Vertex 29928 0.00839351 0.0342854 -0.0184828 Vertex 29929 0.00940058 0.0342529 -0.0182643 Vertex 29930 0.0104502 0.0343141 -0.0181143 Vertex 29931 0.0115063 0.0343546 -0.0179688 Vertex 29932 0.0125555 0.034405 -0.0178251 Vertex 29933 0.0135609 0.0343729 -0.0176058 Vertex 29934 0.0147315 0.0347337 -0.0176578 Vertex 29935 0.0156033 0.0352036 -0.0174539 Vertex 29936 -0.0433018 0.0342732 -0.0267127 Vertex 29937 -0.0424851 0.033913 -0.0262188 Vertex 29938 -0.0416194 0.0336308 -0.0257822 Vertex 29939 -0.0406608 0.0335117 -0.0254825 Vertex 29940 -0.0396194 0.0335538 -0.0253204 Vertex 29941 -0.0386238 0.0335154 -0.0250853 Vertex 29942 -0.0375789 0.0335576 -0.0249215 Vertex 29943 -0.0365829 0.0335193 -0.0246869 Vertex 29944 -0.0355381 0.0335618 -0.0245193 Vertex 29945 -0.0344945 0.0336038 -0.0243554 Vertex 29946 -0.0334959 0.0335656 -0.024125 Vertex 29947 -0.0324526 0.0336078 -0.0239554 Vertex 29948 -0.0314585 0.0335695 -0.0237257 Vertex 29949 -0.0304111 0.0336116 -0.02356 Vertex 29950 -0.0294128 0.0335741 -0.023325 Vertex 29951 -0.0283736 0.0336157 -0.0231629 Vertex 29952 -0.0273719 0.0335777 -0.022929 Vertex 29953 -0.0263303 0.0336202 -0.0227625 Vertex 29954 -0.0252891 0.0336623 -0.0225985 Vertex 29955 -0.0242451 0.0337053 -0.0224295 Vertex 29956 -0.0232497 0.0336668 -0.0221987 Vertex 29957 -0.0222505 0.0336283 -0.0219672 Vertex 29958 -0.0212056 0.0336704 -0.0218021 Vertex 29959 -0.0201622 0.0337128 -0.0216346 Vertex 29960 -0.0191683 0.0336751 -0.0214022 Vertex 29961 -0.0180785 0.0337977 -0.021304 Vertex 29962 -0.0170355 0.0338392 -0.0211402 Vertex 29963 -0.0160362 0.0338015 -0.0209075 Vertex 29964 -0.0149527 0.0339242 -0.0208085 Vertex 29965 -0.0139533 0.0338864 -0.0205741 Vertex 29966 -0.012912 0.0339283 -0.0204101 Vertex 29967 -0.0118673 0.0339713 -0.0202424 Vertex 29968 -0.0108252 0.0340132 -0.0200775 Vertex 29969 -0.00982564 0.0339746 -0.0198462 Vertex 29970 -0.00878391 0.0340179 -0.0196776 Vertex 29971 -0.0077421 0.0340597 -0.0195129 Vertex 29972 -0.00674435 0.0340208 -0.0192827 Vertex 29973 -0.00574267 0.0339825 -0.0190499 Vertex 29974 -0.00470039 0.0340249 -0.0188849 Vertex 29975 -0.00361434 0.0341476 -0.0187856 Vertex 29976 -0.00261732 0.0341102 -0.0185505 Vertex 29977 -0.00157082 0.0341515 -0.0183868 Vertex 29978 -0.000577398 0.0341134 -0.0181551 Vertex 29979 0.000420695 0.0340758 -0.0179207 Vertex 29980 0.00146529 0.0341167 -0.0177588 Vertex 29981 0.00250665 0.0341604 -0.0175888 Vertex 29982 0.00354988 0.0342019 -0.0174252 Vertex 29983 0.00454759 0.0341639 -0.0171912 Vertex 29984 0.00554907 0.0341243 -0.0169616 Vertex 29985 0.00654381 0.0340863 -0.0167284 Vertex 29986 0.00758624 0.0341288 -0.016561 Vertex 29987 0.00858548 0.0340902 -0.01633 Vertex 29988 0.00968485 0.0342244 -0.0162577 Vertex 29989 0.0106928 0.0341923 -0.0160349 Vertex 29990 0.0118375 0.0344099 -0.0160341 Vertex 29991 0.0128439 0.0343776 -0.0158182 Vertex 29992 0.0138974 0.0344287 -0.0156692 Vertex 29993 0.0149493 0.0344805 -0.015521 Vertex 29994 0.0160661 0.0349193 -0.0155613 Vertex 29995 0.0169223 0.0354899 -0.0154522 Vertex 29996 -0.0874269 0.111566 0.0378689 Vertex 29997 -0.0439866 0.0342955 -0.0250034 Vertex 29998 -0.0433 0.0336903 -0.024306 Vertex 29999 -0.0423419 0.0335706 -0.0240051 Vertex 30000 -0.0413446 0.0335325 -0.0237744 Vertex 30001 -0.0403032 0.0335749 -0.0236075 Vertex 30002 -0.0393069 0.033537 -0.0233717 Vertex 30003 -0.0382622 0.0335792 -0.0232089 Vertex 30004 -0.0372663 0.033541 -0.0229762 Vertex 30005 -0.0362217 0.0335837 -0.0228111 Vertex 30006 -0.0351787 0.0336265 -0.0226404 Vertex 30007 -0.0341799 0.0335887 -0.0224091 Vertex 30008 -0.0331372 0.0336314 -0.0222436 Vertex 30009 -0.0320928 0.0336737 -0.0220791 Vertex 30010 -0.0310543 0.0337173 -0.0219116 Vertex 30011 -0.0300075 0.0337589 -0.0217484 Vertex 30012 -0.0289244 0.033884 -0.0216457 Vertex 30013 -0.0278792 0.0339265 -0.0214795 Vertex 30014 -0.0268824 0.0338882 -0.0212482 Vertex 30015 -0.0258406 0.0339312 -0.0210821 Vertex 30016 -0.0247527 0.0340557 -0.0209813 Vertex 30017 -0.023707 0.0340979 -0.0208155 Vertex 30018 -0.0226679 0.0341396 -0.0206509 Vertex 30019 -0.0216263 0.0341828 -0.0204844 Vertex 30020 -0.0205806 0.0342261 -0.0203167 Vertex 30021 -0.0195815 0.0341867 -0.0200865 Vertex 30022 -0.0185423 0.0342292 -0.0199208 Vertex 30023 -0.0174992 0.03427 -0.0197565 Vertex 30024 -0.0164538 0.0343139 -0.019589 Vertex 30025 -0.015413 0.0343578 -0.0194213 Vertex 30026 -0.0144161 0.0343188 -0.0191903 Vertex 30027 -0.0133702 0.0343611 -0.0190243 Vertex 30028 -0.0123281 0.0344052 -0.018857 Vertex 30029 -0.0112854 0.0344473 -0.0186905 Vertex 30030 -0.0102872 0.0344076 -0.0184603 Vertex 30031 -0.00924422 0.0344526 -0.0182921 Vertex 30032 -0.00820144 0.0344928 -0.0181278 Vertex 30033 -0.00720215 0.0344571 -0.0178933 Vertex 30034 -0.00616098 0.0344967 -0.0177303 Vertex 30035 -0.00511763 0.0345398 -0.0175639 Vertex 30036 -0.00407779 0.0345848 -0.0173958 Vertex 30037 -0.00307655 0.0345443 -0.0171652 Vertex 30038 -0.00203672 0.0345877 -0.0169988 Vertex 30039 -0.000994284 0.0346324 -0.0168306 Vertex 30040 4.31947e-06 0.034593 -0.0165995 Vertex 30041 0.00104791 0.0346359 -0.0164332 Vertex 30042 0.00204515 0.0345955 -0.0162029 Vertex 30043 0.00308943 0.0346383 -0.0160359 Vertex 30044 0.00408474 0.0346021 -0.0158016 Vertex 30045 0.00508634 0.0345614 -0.0155701 Vertex 30046 0.00603967 0.0344425 -0.0152712 Vertex 30047 0.00703854 0.0344034 -0.0150394 Vertex 30048 0.00803706 0.0343648 -0.0148062 Vertex 30049 0.00903132 0.0343268 -0.014573 Vertex 30050 0.0099878 0.0342067 -0.0142754 Vertex 30051 0.0109831 0.0341684 -0.0140433 Vertex 30052 0.0120317 0.0342138 -0.0138856 Vertex 30053 0.0130851 0.034266 -0.0137357 Vertex 30054 0.0142805 0.0345676 -0.0138073 Vertex 30055 0.0153315 0.0346194 -0.0136599 Vertex 30056 0.0164763 0.0348375 -0.0136598 Vertex 30057 0.0175277 0.0348888 -0.0135142 Vertex 30058 -0.0825815 0.112383 0.0454387 Vertex 30059 -0.0448473 0.0339909 -0.0230279 Vertex 30060 -0.0440255 0.0336276 -0.0225259 Vertex 30061 -0.0430742 0.0335089 -0.0222312 Vertex 30062 -0.0420309 0.0335517 -0.0220625 Vertex 30063 -0.0409872 0.0335947 -0.0218947 Vertex 30064 -0.0399438 0.0336374 -0.0217314 Vertex 30065 -0.0389013 0.0336802 -0.0215651 Vertex 30066 -0.0379044 0.0336424 -0.0213286 Vertex 30067 -0.0368601 0.0336856 -0.0211611 Vertex 30068 -0.0358185 0.0337288 -0.0209957 Vertex 30069 -0.0347732 0.0337732 -0.0208295 Vertex 30070 -0.0336406 0.0339783 -0.0207966 Vertex 30071 -0.0325542 0.0341026 -0.0206973 Vertex 30072 -0.0314223 0.0343059 -0.0206653 Vertex 30073 -0.0303394 0.0344325 -0.0205625 Vertex 30074 -0.0292482 0.0345559 -0.0204636 Vertex 30075 -0.0281642 0.0346776 -0.0203658 Vertex 30076 -0.0271199 0.0347243 -0.0201972 Vertex 30077 -0.0260317 0.0348457 -0.0200988 Vertex 30078 -0.0249464 0.0349691 -0.0199992 Vertex 30079 -0.0239053 0.0350134 -0.0198326 Vertex 30080 -0.0228583 0.0350556 -0.0196661 Vertex 30081 -0.0218179 0.0350986 -0.0195001 Vertex 30082 -0.0207737 0.0351435 -0.019333 Vertex 30083 -0.019688 0.0352649 -0.0192337 Vertex 30084 -0.0186888 0.0352267 -0.0190015 Vertex 30085 -0.0176483 0.0352702 -0.0188352 Vertex 30086 -0.0166066 0.035315 -0.0186674 Vertex 30087 -0.0156079 0.0352742 -0.0184368 Vertex 30088 -0.014565 0.035318 -0.01827 Vertex 30089 -0.0135214 0.0353632 -0.0181023 Vertex 30090 -0.0124791 0.0354015 -0.0179384 Vertex 30091 -0.0114808 0.0353662 -0.0177045 Vertex 30092 -0.0104382 0.0354056 -0.0175403 Vertex 30093 -0.00939357 0.0354504 -0.0173725 Vertex 30094 -0.00835092 0.0354934 -0.0172056 Vertex 30095 -0.00735617 0.0354566 -0.0169734 Vertex 30096 -0.00631097 0.0354995 -0.0168068 Vertex 30097 -0.00526883 0.0355403 -0.0166416 Vertex 30098 -0.00422605 0.0355815 -0.0164762 Vertex 30099 -0.00322923 0.0355467 -0.0162422 Vertex 30100 -0.00218576 0.0355897 -0.0160761 Vertex 30101 -0.00114332 0.0356309 -0.0159104 Vertex 30102 -0.000145407 0.0355938 -0.0156782 Vertex 30103 0.000940682 0.0357179 -0.0155776 Vertex 30104 0.00193935 0.03568 -0.0153447 Vertex 30105 0.00293826 0.0356401 -0.0151121 Vertex 30106 0.00389123 0.0355229 -0.0148126 Vertex 30107 0.00488911 0.035483 -0.0145807 Vertex 30108 0.00584547 0.0353648 -0.01428 Vertex 30109 0.00679595 0.0352467 -0.0139815 Vertex 30110 0.00774922 0.0351262 -0.0136823 Vertex 30111 0.00861617 0.0348422 -0.0132521 Vertex 30112 0.00952421 0.0346423 -0.0128865 Vertex 30113 0.0104332 0.0344417 -0.0125223 Vertex 30114 0.011386 0.0343226 -0.0122219 Vertex 30115 0.0123862 0.0342845 -0.0119874 Vertex 30116 0.0134297 0.0343278 -0.0118215 Vertex 30117 0.014517 0.0344542 -0.0117299 Vertex 30118 0.0156678 0.0346738 -0.0117297 Vertex 30119 0.0167681 0.0348096 -0.0116543 Vertex 30120 0.0179105 0.0350278 -0.0116533 Vertex 30121 -0.0453989 0.0342539 -0.0215146 Vertex 30122 -0.0447524 0.033564 -0.0207541 Vertex 30123 -0.0437556 0.0335262 -0.0205177 Vertex 30124 -0.0427107 0.0335694 -0.0203532 Vertex 30125 -0.0416682 0.0336125 -0.0201879 Vertex 30126 -0.0406237 0.0336557 -0.0200198 Vertex 30127 -0.0395837 0.0336987 -0.0198537 Vertex 30128 -0.0385432 0.0337417 -0.0196892 Vertex 30129 -0.0375002 0.0337858 -0.019518 Vertex 30130 -0.0364091 0.0339112 -0.0194195 Vertex 30131 -0.0352804 0.0341155 -0.0193879 Vertex 30132 -0.0340577 0.0344858 -0.0194842 Vertex 30133 -0.0328403 0.0348519 -0.0195836 Vertex 30134 -0.031661 0.0351392 -0.0196159 Vertex 30135 -0.0305288 0.0353431 -0.0195833 Vertex 30136 -0.0293998 0.0355494 -0.0195486 Vertex 30137 -0.0282657 0.0357556 -0.0195136 Vertex 30138 -0.0271788 0.0358787 -0.0194139 Vertex 30139 -0.0261386 0.0359205 -0.0192491 Vertex 30140 -0.0250081 0.0361291 -0.0192131 Vertex 30141 -0.0239187 0.036252 -0.0191133 Vertex 30142 -0.022876 0.0362943 -0.0189473 Vertex 30143 -0.0218319 0.0363367 -0.0187811 Vertex 30144 -0.0207895 0.0363821 -0.0186131 Vertex 30145 -0.0197467 0.0364265 -0.0184459 Vertex 30146 -0.0187078 0.0364661 -0.0182818 Vertex 30147 -0.0176627 0.0365106 -0.0181139 Vertex 30148 -0.0166639 0.0364717 -0.017882 Vertex 30149 -0.0156218 0.0365183 -0.0177136 Vertex 30150 -0.0145821 0.0365575 -0.0175497 Vertex 30151 -0.0135396 0.0366033 -0.0173816 Vertex 30152 -0.0125377 0.0365668 -0.017148 Vertex 30153 -0.0114989 0.0366056 -0.0169842 Vertex 30154 -0.0104535 0.0366522 -0.0168147 Vertex 30155 -0.00945876 0.0366145 -0.0165831 Vertex 30156 -0.00841473 0.0366574 -0.0164161 Vertex 30157 -0.00736899 0.0366982 -0.0162506 Vertex 30158 -0.00632683 0.0367419 -0.0160833 Vertex 30159 -0.00532834 0.0367049 -0.0158504 Vertex 30160 -0.00428899 0.0367463 -0.0156853 Vertex 30161 -0.00324688 0.0367886 -0.0155194 Vertex 30162 -0.00215916 0.0369163 -0.0154166 Vertex 30163 -0.00111738 0.0369593 -0.0152505 Vertex 30164 -2.83383e-05 0.0370817 -0.0151505 Vertex 30165 0.000971023 0.0370418 -0.0149189 Vertex 30166 0.00196735 0.0370051 -0.0146847 Vertex 30167 0.00287682 0.0368053 -0.01432 Vertex 30168 0.0038745 0.0367677 -0.0140867 Vertex 30169 0.00482779 0.0366504 -0.0137865 Vertex 30170 0.00577997 0.0365296 -0.0134893 Vertex 30171 0.00673484 0.0364109 -0.0131882 Vertex 30172 0.00764213 0.03621 -0.0128239 Vertex 30173 0.00841968 0.0357631 -0.0122614 Vertex 30174 0.00923869 0.035402 -0.0117616 Vertex 30175 0.0100127 0.0349584 -0.0111996 Vertex 30176 0.0107885 0.0345143 -0.0106366 Vertex 30177 0.0117447 0.0343946 -0.0103375 Vertex 30178 0.0126989 0.0342761 -0.010037 Vertex 30179 0.0137845 0.0344 -0.00993851 Vertex 30180 0.0148272 0.0344434 -0.00977208 Vertex 30181 0.0160068 0.0347306 -0.00980024 Vertex 30182 0.0171482 0.0349466 -0.009792 Vertex 30183 0.0182459 0.035082 -0.00972071 Vertex 30184 -0.074757 0.111898 0.0475989 Vertex 30185 -0.0459466 0.0345121 -0.0200076 Vertex 30186 -0.0453927 0.0336614 -0.0191153 Vertex 30187 -0.0444353 0.0335419 -0.0188134 Vertex 30188 -0.0433943 0.0335852 -0.0186462 Vertex 30189 -0.042351 0.0336287 -0.0184783 Vertex 30190 -0.0413094 0.0336719 -0.0183114 Vertex 30191 -0.0403104 0.0336344 -0.0180813 Vertex 30192 -0.0392229 0.0337594 -0.0179786 Vertex 30193 -0.0381348 0.0338853 -0.0178771 Vertex 30194 -0.0369631 0.0341718 -0.0179086 Vertex 30195 -0.0356978 0.0346221 -0.0180732 Vertex 30196 -0.0344319 0.0350721 -0.0182387 Vertex 30197 -0.0331206 0.0356024 -0.0184705 Vertex 30198 -0.0318114 0.0361324 -0.0187 Vertex 30199 -0.0306807 0.0363386 -0.0186663 Vertex 30200 -0.0294591 0.0367076 -0.0187628 Vertex 30201 -0.0283747 0.0368322 -0.0186629 Vertex 30202 -0.0272428 0.0370384 -0.018628 Vertex 30203 -0.0261077 0.0372445 -0.0185929 Vertex 30204 -0.0250231 0.0373676 -0.0184933 Vertex 30205 -0.0239356 0.0374925 -0.0183912 Vertex 30206 -0.0228935 0.0375359 -0.0182249 Vertex 30207 -0.021804 0.0376594 -0.0181241 Vertex 30208 -0.0208094 0.0376226 -0.0178912 Vertex 30209 -0.0197676 0.0376635 -0.0177276 Vertex 30210 -0.018769 0.037629 -0.017491 Vertex 30211 -0.0176796 0.037751 -0.0173923 Vertex 30212 -0.0166811 0.0377146 -0.0171581 Vertex 30213 -0.0156387 0.0377596 -0.0169892 Vertex 30214 -0.0145975 0.0378025 -0.0168233 Vertex 30215 -0.0135559 0.0378433 -0.0166597 Vertex 30216 -0.0125112 0.037888 -0.0164908 Vertex 30217 -0.0114712 0.0379322 -0.0163227 Vertex 30218 -0.010471 0.0378949 -0.0160892 Vertex 30219 -0.0094303 0.0379372 -0.0159242 Vertex 30220 -0.00843296 0.037899 -0.0156923 Vertex 30221 -0.00738705 0.0379427 -0.0155249 Vertex 30222 -0.00634516 0.0379873 -0.0153566 Vertex 30223 -0.00534725 0.0379464 -0.0151277 Vertex 30224 -0.00430704 0.037991 -0.0149598 Vertex 30225 -0.00330758 0.0379537 -0.0147265 Vertex 30226 -0.00221994 0.0380783 -0.0146251 Vertex 30227 -0.00117719 0.0381217 -0.0144579 Vertex 30228 -0.000135712 0.0381648 -0.0142912 Vertex 30229 0.000863008 0.0381264 -0.0140589 Vertex 30230 0.00186325 0.0380873 -0.0138264 Vertex 30231 0.00281465 0.0379685 -0.0135285 Vertex 30232 0.00381296 0.0379313 -0.0132938 Vertex 30233 0.00476485 0.0378127 -0.0129945 Vertex 30234 0.00571651 0.037694 -0.0126956 Vertex 30235 0.00662772 0.0374926 -0.0123303 Vertex 30236 0.00749342 0.0372096 -0.0118978 Vertex 30237 0.00822226 0.0366869 -0.011267 Vertex 30238 0.00895558 0.0361581 -0.0106394 Vertex 30239 0.0095961 0.0354723 -0.00987583 Vertex 30240 0.0102837 0.0348658 -0.0091814 Vertex 30241 0.0111047 0.0345035 -0.00868495 Vertex 30242 0.0120601 0.0343849 -0.00838478 Vertex 30243 0.0131 0.034428 -0.00821794 Vertex 30244 0.0140981 0.0343905 -0.0079847 Vertex 30245 0.0152294 0.0345961 -0.00794828 Vertex 30246 0.0163641 0.0348027 -0.00791773 Vertex 30247 0.0174939 0.0350076 -0.00788091 Vertex 30248 0.0184894 0.03497 -0.0076507 Vertex 30249 -0.0721148 0.067315 0.0248191 Vertex 30250 -0.0464498 0.034849 -0.0185661 Vertex 30251 -0.0460733 0.0336746 -0.01741 Vertex 30252 -0.0450754 0.033637 -0.0171737 Vertex 30253 -0.0440757 0.0335994 -0.0169421 Vertex 30254 -0.0430319 0.0336432 -0.0167728 Vertex 30255 -0.04199 0.0336868 -0.0166047 Vertex 30256 -0.0409497 0.0337305 -0.016439 Vertex 30257 -0.0398611 0.0338561 -0.0163385 Vertex 30258 -0.03873 0.0340634 -0.0163036 Vertex 30259 -0.0375104 0.0344317 -0.0164034 Vertex 30260 -0.0361101 0.0351289 -0.0167641 Vertex 30261 -0.0346676 0.0359024 -0.017193 Vertex 30262 -0.0333156 0.0365169 -0.0174853 Vertex 30263 -0.0320031 0.0370471 -0.0177181 Vertex 30264 -0.0307415 0.0374976 -0.017878 Vertex 30265 -0.029563 0.0377844 -0.01791 Vertex 30266 -0.0283882 0.0380697 -0.0179434 Vertex 30267 -0.0272993 0.0381948 -0.0178418 Vertex 30268 -0.0262141 0.0383199 -0.0177378 Vertex 30269 -0.0251747 0.0383636 -0.0175696 Vertex 30270 -0.0241311 0.0384069 -0.0174035 Vertex 30271 -0.0231343 0.0383693 -0.0171708 Vertex 30272 -0.0220444 0.0384934 -0.0170721 Vertex 30273 -0.0210449 0.0384562 -0.0168371 Vertex 30274 -0.0200036 0.0384998 -0.0166705 Vertex 30275 -0.0189632 0.0385431 -0.0165058 Vertex 30276 -0.0179202 0.0385865 -0.0163394 Vertex 30277 -0.0169229 0.0385492 -0.0161043 Vertex 30278 -0.0158788 0.038593 -0.0159367 Vertex 30279 -0.0148381 0.0386367 -0.0157684 Vertex 30280 -0.0137942 0.0386802 -0.0156021 Vertex 30281 -0.0127937 0.0386426 -0.0153707 Vertex 30282 -0.0117542 0.0386862 -0.015202 Vertex 30283 -0.0107558 0.0386486 -0.0149703 Vertex 30284 -0.00971429 0.0386927 -0.0148008 Vertex 30285 -0.00867178 0.0387364 -0.0146344 Vertex 30286 -0.00762999 0.0387797 -0.0144679 Vertex 30287 -0.00658665 0.0388228 -0.0143041 Vertex 30288 -0.00554376 0.0388664 -0.0141367 Vertex 30289 -0.00449889 0.0389099 -0.0139692 Vertex 30290 -0.00350234 0.0388725 -0.0137373 Vertex 30291 -0.00241533 0.0389975 -0.0136337 Vertex 30292 -0.00141558 0.03896 -0.0133998 Vertex 30293 -0.000418875 0.0389219 -0.0131688 Vertex 30294 0.000577278 0.0388845 -0.0129362 Vertex 30295 0.00157845 0.0388465 -0.0127005 Vertex 30296 0.00252922 0.0387278 -0.0124032 Vertex 30297 0.00352818 0.0386899 -0.0121702 Vertex 30298 0.00447986 0.0385716 -0.0118677 Vertex 30299 0.00538842 0.0383711 -0.011506 Vertex 30300 0.00629906 0.0381702 -0.0111411 Vertex 30301 0.00716304 0.0378885 -0.010707 Vertex 30302 0.0078939 0.0373631 -0.01008 Vertex 30303 0.00853553 0.0366751 -0.00931803 Vertex 30304 0.00908719 0.0358267 -0.00842564 Vertex 30305 0.00964519 0.0349724 -0.00752839 Vertex 30306 0.0104643 0.0346107 -0.00703394 Vertex 30307 0.0113316 0.0343299 -0.00659923 Vertex 30308 0.012373 0.0343732 -0.00643255 Vertex 30309 0.0133691 0.0343357 -0.00620151 Vertex 30310 0.0144149 0.0343798 -0.00603429 Vertex 30311 0.0155008 0.0345049 -0.00593057 Vertex 30312 0.0166749 0.0347919 -0.00596505 Vertex 30313 0.0178069 0.0349979 -0.00592782 Vertex 30314 0.0188028 0.0349604 -0.00569856 Vertex 30315 -0.0794975 0.113845 0.0467655 Vertex 30316 -0.0866192 0.111201 0.0383037 Vertex 30317 -0.0473982 0.0343754 -0.0164682 Vertex 30318 -0.046755 0.0336866 -0.0157033 Vertex 30319 -0.0457551 0.0336493 -0.0154708 Vertex 30320 -0.0447123 0.0336927 -0.0153017 Vertex 30321 -0.0437579 0.0335748 -0.0150071 Vertex 30322 -0.0426699 0.0336999 -0.0149012 Vertex 30323 -0.0416277 0.0337441 -0.014735 Vertex 30324 -0.0405439 0.0338701 -0.0146326 Vertex 30325 -0.0393214 0.0342416 -0.0147308 Vertex 30326 -0.0379695 0.0348544 -0.0150276 Vertex 30327 -0.0364387 0.0357946 -0.0155844 Vertex 30328 -0.034906 0.0367338 -0.0161439 Vertex 30329 -0.0335515 0.0373466 -0.0164398 Vertex 30330 -0.0321536 0.0380399 -0.0168 Vertex 30331 -0.0309758 0.0383278 -0.0168292 Vertex 30332 -0.0298466 0.0385336 -0.0167929 Vertex 30333 -0.028759 0.0386585 -0.0166912 Vertex 30334 -0.027716 0.0387019 -0.0165247 Vertex 30335 -0.026722 0.0386646 -0.0162927 Vertex 30336 -0.0256788 0.0387085 -0.0161237 Vertex 30337 -0.0246803 0.0386712 -0.0158919 Vertex 30338 -0.0236376 0.0387148 -0.0157231 Vertex 30339 -0.0226373 0.0386776 -0.0154938 Vertex 30340 -0.0215973 0.0387212 -0.015323 Vertex 30341 -0.0206008 0.0386838 -0.0150911 Vertex 30342 -0.0195554 0.0387278 -0.0149268 Vertex 30343 -0.0185117 0.0387718 -0.0147573 Vertex 30344 -0.0174724 0.0388154 -0.0145918 Vertex 30345 -0.0164726 0.0387782 -0.0143554 Vertex 30346 -0.0154326 0.0388218 -0.0141873 Vertex 30347 -0.0143909 0.0388658 -0.0140202 Vertex 30348 -0.0133444 0.0389099 -0.0138542 Vertex 30349 -0.0123027 0.0389534 -0.0136872 Vertex 30350 -0.0113051 0.0389162 -0.0134542 Vertex 30351 -0.0102609 0.0389601 -0.0132864 Vertex 30352 -0.00921964 0.0390042 -0.0131222 Vertex 30353 -0.00813465 0.0391286 -0.0130168 Vertex 30354 -0.00718079 0.0390105 -0.0127195 Vertex 30355 -0.00609162 0.0391352 -0.0126175 Vertex 30356 -0.00509715 0.039098 -0.012386 Vertex 30357 -0.00405402 0.0391419 -0.01222 Vertex 30358 -0.00301248 0.0391855 -0.0120497 Vertex 30359 -0.00196639 0.0392296 -0.0118812 Vertex 30360 -0.000924151 0.039273 -0.0117161 Vertex 30361 2.76528e-05 0.0391548 -0.0114154 Vertex 30362 0.00107085 0.0391982 -0.0112505 Vertex 30363 0.00202549 0.0390793 -0.0109499 Vertex 30364 0.00297917 0.0389607 -0.010651 Vertex 30365 0.00397477 0.0389229 -0.0104191 Vertex 30366 0.00488488 0.0387234 -0.0100497 Vertex 30367 0.00583724 0.038604 -0.0097514 Vertex 30368 0.00669982 0.0383228 -0.00932299 Vertex 30369 0.00747563 0.0378784 -0.00876072 Vertex 30370 0.00793957 0.0368635 -0.0077325 Vertex 30371 0.00831626 0.0356874 -0.00657792 Vertex 30372 0.00882514 0.0347544 -0.00561715 Vertex 30373 0.0096904 0.0344726 -0.0051827 Vertex 30374 0.0106458 0.0343542 -0.00488721 Vertex 30375 0.0116887 0.0343979 -0.00472037 Vertex 30376 0.0126883 0.0343606 -0.00448368 Vertex 30377 0.0137309 0.0344041 -0.00431645 Vertex 30378 0.0147267 0.0343671 -0.00408399 Vertex 30379 0.0158163 0.0344928 -0.00398192 Vertex 30380 0.0169437 0.0346991 -0.00395051 Vertex 30381 0.0181231 0.0349865 -0.00397885 Vertex 30382 0.0191194 0.0349494 -0.00374623 Vertex 30383 0.0201589 0.0349933 -0.00358051 Vertex 30384 -0.0483458 0.0338972 -0.0143683 Vertex 30385 -0.0473932 0.0337786 -0.0140697 Vertex 30386 -0.0464803 0.0335784 -0.0137021 Vertex 30387 -0.0454814 0.0335414 -0.0134702 Vertex 30388 -0.0444408 0.0335855 -0.0133031 Vertex 30389 -0.0433987 0.03363 -0.0131325 Vertex 30390 -0.042312 0.0337552 -0.0130352 Vertex 30391 -0.0412672 0.0338015 -0.0128657 Vertex 30392 -0.0399614 0.0343338 -0.0130933 Vertex 30393 -0.0384749 0.0351927 -0.0135871 Vertex 30394 -0.0368535 0.0362973 -0.0142764 Vertex 30395 -0.035233 0.0374002 -0.014964 Vertex 30396 -0.0338336 0.0380945 -0.0153271 Vertex 30397 -0.0326136 0.0384639 -0.0154224 Vertex 30398 -0.0314842 0.0386701 -0.0153847 Vertex 30399 -0.0304851 0.038633 -0.015152 Vertex 30400 -0.0294449 0.038677 -0.0149866 Vertex 30401 -0.0284012 0.038721 -0.0148192 Vertex 30402 -0.0274016 0.0386836 -0.0145853 Vertex 30403 -0.0264035 0.0386467 -0.0143525 Vertex 30404 -0.0253618 0.0386908 -0.0141849 Vertex 30405 -0.0243199 0.0387345 -0.0140132 Vertex 30406 -0.0233223 0.0386973 -0.0137829 Vertex 30407 -0.0223249 0.0386602 -0.0135496 Vertex 30408 -0.0212803 0.0387041 -0.0133833 Vertex 30409 -0.0202818 0.0386671 -0.01315 Vertex 30410 -0.0192403 0.0387115 -0.0129795 Vertex 30411 -0.0181528 0.0388364 -0.0128782 Vertex 30412 -0.0171592 0.0387994 -0.0126424 Vertex 30413 -0.0161127 0.0388433 -0.0124778 Vertex 30414 -0.0151158 0.0388065 -0.0122456 Vertex 30415 -0.0140304 0.0389318 -0.0121434 Vertex 30416 -0.0129858 0.0389757 -0.0119758 Vertex 30417 -0.0119878 0.0389387 -0.0117395 Vertex 30418 -0.0109443 0.0389825 -0.0115729 Vertex 30419 -0.00994817 0.0389455 -0.0113423 Vertex 30420 -0.00890819 0.0389895 -0.0111716 Vertex 30421 -0.00790609 0.0389527 -0.0109414 Vertex 30422 -0.00682217 0.0390777 -0.0108403 Vertex 30423 -0.00582403 0.0390405 -0.0106025 Vertex 30424 -0.00477881 0.0390844 -0.0104359 Vertex 30425 -0.00378208 0.0390472 -0.0102032 Vertex 30426 -0.00278761 0.0390101 -0.00997081 Vertex 30427 -0.00169837 0.0391357 -0.00987107 Vertex 30428 -0.000654571 0.0391799 -0.00969942 Vertex 30429 0.00038562 0.0392239 -0.00953586 Vertex 30430 0.00142887 0.0392678 -0.00936829 Vertex 30431 0.00242681 0.0392303 -0.00913048 Vertex 30432 0.00333349 0.0390305 -0.00876711 Vertex 30433 0.0043349 0.0389929 -0.00853324 Vertex 30434 0.00532997 0.0389553 -0.00830106 Vertex 30435 0.00615023 0.0385922 -0.00780619 Vertex 30436 0.00679264 0.0379024 -0.00704418 Vertex 30437 0.00707963 0.0365612 -0.00575515 Vertex 30438 0.00732004 0.0351406 -0.00439972 Vertex 30439 0.00800811 0.0345328 -0.00370443 Vertex 30440 0.00896308 0.0344141 -0.00340754 Vertex 30441 0.00991822 0.0342953 -0.00310719 Vertex 30442 0.0109143 0.034258 -0.00287102 Vertex 30443 0.0119118 0.0342207 -0.00263798 Vertex 30444 0.0129551 0.034265 -0.00247291 Vertex 30445 0.0139965 0.0343089 -0.00230394 Vertex 30446 0.01504 0.0343531 -0.00213727 Vertex 30447 0.0160414 0.0343167 -0.00190332 Vertex 30448 0.0171692 0.0345228 -0.00186568 Vertex 30449 0.0183024 0.0347298 -0.00182982 Vertex 30450 0.0193458 0.0347743 -0.00166328 Vertex 30451 0.0203856 0.0348183 -0.00149748 Vertex 30452 0.0214264 0.0348625 -0.00133145 Vertex 30453 -0.0511515 0.0337361 -0.0129379 Vertex 30454 -0.0501127 0.0337803 -0.0127711 Vertex 30455 -0.0491155 0.0337431 -0.0125383 Vertex 30456 -0.0482072 0.0335431 -0.012174 Vertex 30457 -0.0472097 0.0335059 -0.0119372 Vertex 30458 -0.0461631 0.0335506 -0.0117706 Vertex 30459 -0.0451218 0.0335948 -0.0116042 Vertex 30460 -0.0440813 0.0336392 -0.0114358 Vertex 30461 -0.0429934 0.0337652 -0.0113325 Vertex 30462 -0.0419504 0.0338103 -0.0111665 Vertex 30463 -0.0407326 0.0341812 -0.0112599 Vertex 30464 -0.0391998 0.0351247 -0.0118182 Vertex 30465 -0.0372246 0.0368821 -0.0130308 Vertex 30466 -0.0356475 0.0379034 -0.0136529 Vertex 30467 -0.0343818 0.038354 -0.0138166 Vertex 30468 -0.0332986 0.0384796 -0.0137148 Vertex 30469 -0.0322103 0.0386054 -0.0136114 Vertex 30470 -0.0311673 0.0386498 -0.0134468 Vertex 30471 -0.0301276 0.038694 -0.0132786 Vertex 30472 -0.0291276 0.0386567 -0.0130433 Vertex 30473 -0.0281279 0.03862 -0.0128123 Vertex 30474 -0.02709 0.0386639 -0.0126398 Vertex 30475 -0.0260906 0.0386266 -0.0124061 Vertex 30476 -0.0250932 0.0385898 -0.0121739 Vertex 30477 -0.0240513 0.0386342 -0.0120079 Vertex 30478 -0.0230054 0.0386784 -0.0118395 Vertex 30479 -0.0220085 0.0386415 -0.0116054 Vertex 30480 -0.0209665 0.0386858 -0.0114366 Vertex 30481 -0.0199243 0.0387302 -0.0112686 Vertex 30482 -0.0188821 0.0387745 -0.0111028 Vertex 30483 -0.0178849 0.0387376 -0.0108688 Vertex 30484 -0.0167991 0.0388632 -0.0107644 Vertex 30485 -0.0158011 0.0388262 -0.0105326 Vertex 30486 -0.0147562 0.0388704 -0.0103641 Vertex 30487 -0.0137593 0.0388335 -0.0101314 Vertex 30488 -0.0127163 0.038878 -0.00996632 Vertex 30489 -0.011676 0.0389222 -0.00979553 Vertex 30490 -0.010631 0.0389663 -0.00962591 Vertex 30491 -0.00963497 0.0389293 -0.00939263 Vertex 30492 -0.00858939 0.0389741 -0.00922854 Vertex 30493 -0.00754786 0.039018 -0.00905888 Vertex 30494 -0.00655213 0.0389811 -0.00882376 Vertex 30495 -0.00551112 0.0390255 -0.00865823 Vertex 30496 -0.00446475 0.03907 -0.00848801 Vertex 30497 -0.00342216 0.0391144 -0.00832149 Vertex 30498 -0.00238392 0.0391586 -0.00815532 Vertex 30499 -0.00138514 0.0391216 -0.00791905 Vertex 30500 -0.000296991 0.0392472 -0.00781836 Vertex 30501 0.000702847 0.0392103 -0.00758345 Vertex 30502 0.00174509 0.0392548 -0.00741822 Vertex 30503 0.0027861 0.0392982 -0.00725238 Vertex 30504 0.00369465 0.0390982 -0.00688719 Vertex 30505 0.00460237 0.0388981 -0.00652166 Vertex 30506 0.0054202 0.0385344 -0.0060218 Vertex 30507 0.00584239 0.0374362 -0.00493399 Vertex 30508 0.00590625 0.0356875 -0.00331654 Vertex 30509 0.00641806 0.0347537 -0.00236123 Vertex 30510 0.0072822 0.0344718 -0.00192729 Vertex 30511 0.00819303 0.0342719 -0.00156322 Vertex 30512 0.00918856 0.0342345 -0.00132638 Vertex 30513 0.0101881 0.0341976 -0.00109267 Vertex 30514 0.0112322 0.0342419 -0.000927635 Vertex 30515 0.0122273 0.0342048 -0.000691958 Vertex 30516 0.013224 0.0341678 -0.000459678 Vertex 30517 0.0142697 0.034212 -0.000289798 Vertex 30518 0.015268 0.0341755 -6.02454e-05 Vertex 30519 0.0163555 0.0343012 4.3653e-05 Vertex 30520 0.0173961 0.0343459 0.000212982 Vertex 30521 0.0185266 0.0345532 0.000246197 Vertex 30522 0.019656 0.0347604 0.000281692 Vertex 30523 0.0207021 0.0348049 0.000449352 Vertex 30524 0.0217437 0.0348491 0.000619009 Vertex 30525 0.0227875 0.0348957 0.00078699 Vertex 30526 0.0242713 0.035754 0.000294462 Vertex 30527 0.0256228 0.0363687 8.49366e-07 Vertex 30528 0.0267602 0.0365817 2.43485e-05 Vertex 30529 0.0278638 0.0367181 0.000104301 Vertex 30530 0.0289317 0.0369927 0.000264038 Vertex 30531 0.0302324 0.0374168 2.32521e-05 Vertex 30532 0.0314571 0.0378867 -6.50808e-05 Vertex 30533 0.0348962 0.0387881 -4.46661e-05 Vertex 30534 0.0360448 0.0392022 -6.35907e-05 Vertex 30535 -0.0547852 0.0339346 -0.0120065 Vertex 30536 -0.0538286 0.0338166 -0.0117099 Vertex 30537 -0.0528343 0.0337802 -0.0114802 Vertex 30538 -0.0518373 0.0337424 -0.0112411 Vertex 30539 -0.0509699 0.0334609 -0.0108109 Vertex 30540 -0.0499299 0.0335056 -0.0106454 Vertex 30541 -0.0488841 0.0335499 -0.0104742 Vertex 30542 -0.0478863 0.033513 -0.0102384 Vertex 30543 -0.0468922 0.0334761 -0.010008 Vertex 30544 -0.0457572 0.0336839 -0.00997088 Vertex 30545 -0.0447583 0.0336472 -0.00973579 Vertex 30546 -0.0437169 0.0336921 -0.00956971 Vertex 30547 -0.0426307 0.0338188 -0.00946517 Vertex 30548 -0.0414552 0.0341096 -0.00949275 Vertex 30549 -0.0398827 0.035133 -0.0101165 Vertex 30550 -0.037907 0.0368934 -0.0113278 Vertex 30551 -0.0361046 0.0383233 -0.0122787 Vertex 30552 -0.0350636 0.0383682 -0.0121121 Vertex 30553 -0.0339799 0.0384942 -0.0120095 Vertex 30554 -0.032893 0.0386199 -0.0119052 Vertex 30555 -0.0318926 0.0385829 -0.0116716 Vertex 30556 -0.0308995 0.0385461 -0.0114399 Vertex 30557 -0.029898 0.0385093 -0.0112051 Vertex 30558 -0.0288553 0.0385536 -0.0110371 Vertex 30559 -0.0278584 0.0385169 -0.0108032 Vertex 30560 -0.0268181 0.0385613 -0.0106363 Vertex 30561 -0.0258632 0.0384431 -0.0103374 Vertex 30562 -0.0247746 0.0385687 -0.0102357 Vertex 30563 -0.0238211 0.0384511 -0.00993154 Vertex 30564 -0.022737 0.0385766 -0.00982941 Vertex 30565 -0.0216948 0.0386212 -0.00966204 Vertex 30566 -0.0206962 0.0385843 -0.00942784 Vertex 30567 -0.0196521 0.0386292 -0.00926197 Vertex 30568 -0.0186112 0.0386738 -0.00909396 Vertex 30569 -0.0175711 0.0387182 -0.00892429 Vertex 30570 -0.016526 0.0387631 -0.00875803 Vertex 30571 -0.0154839 0.0388074 -0.00858919 Vertex 30572 -0.0144887 0.0387707 -0.00835843 Vertex 30573 -0.0134464 0.0388153 -0.00818864 Vertex 30574 -0.0124032 0.0388598 -0.00801871 Vertex 30575 -0.0114057 0.038823 -0.00778731 Vertex 30576 -0.010362 0.0388675 -0.00761727 Vertex 30577 -0.00936568 0.0388306 -0.00738531 Vertex 30578 -0.00827497 0.0389568 -0.00728452 Vertex 30579 -0.00727995 0.0389199 -0.00704692 Vertex 30580 -0.00623443 0.0389648 -0.00688285 Vertex 30581 -0.00519498 0.0390091 -0.00671136 Vertex 30582 -0.00415439 0.0390536 -0.00654274 Vertex 30583 -0.00310937 0.0390986 -0.00637767 Vertex 30584 -0.00206815 0.039143 -0.00620903 Vertex 30585 -0.00106791 0.0391062 -0.00597311 Vertex 30586 -2.85469e-05 0.0391507 -0.00580542 Vertex 30587 0.000968412 0.0391138 -0.00557511 Vertex 30588 0.0020129 0.0391581 -0.00540617 Vertex 30589 0.00296745 0.0390391 -0.00510833 Vertex 30590 0.00382899 0.0387567 -0.00467455 Vertex 30591 0.00438439 0.037904 -0.00378653 Vertex 30592 0.00466861 0.0365644 -0.00250089 Vertex 30593 0.00482377 0.0349755 -0.00101746 Vertex 30594 0.00555777 0.034446 -0.000384949 Vertex 30595 0.00646739 0.0342464 -2.28584e-05 Vertex 30596 0.00742257 0.034128 0.000278711 Vertex 30597 0.00846054 0.0341727 0.000449307 Vertex 30598 0.00941817 0.0340541 0.000745803 Vertex 30599 0.0104604 0.0340987 0.00091581 Vertex 30600 0.0114556 0.0340617 0.001148 Vertex 30601 0.0125 0.0341066 0.00131673 Vertex 30602 0.0135389 0.0341511 0.00148413 Vertex 30603 0.0145856 0.0341976 0.00165401 Vertex 30604 0.01567 0.0343236 0.00175615 Vertex 30605 0.0167125 0.0343686 0.00192575 Vertex 30606 0.0177557 0.0344112 0.00209212 Vertex 30607 0.0187103 0.0342934 0.0023932 Vertex 30608 0.01975 0.0343373 0.00255688 Vertex 30609 0.0208395 0.034464 0.00266226 Vertex 30610 0.0219677 0.0346711 0.00269802 Vertex 30611 0.02301 0.0347163 0.00286296 Vertex 30612 0.0240528 0.0347605 0.00303304 Vertex 30613 0.0250957 0.0348061 0.00319961 Vertex 30614 0.0263615 0.0352587 0.00303932 Vertex 30615 0.0274937 0.0354669 0.00307886 Vertex 30616 0.0287584 0.0359201 0.00291435 Vertex 30617 0.0299331 0.0362092 0.00288494 Vertex 30618 0.0310235 0.0363382 0.00298341 Vertex 30619 0.0322412 0.0368006 0.00286913 Vertex 30620 0.0335361 0.0372674 0.00265432 Vertex 30621 0.0348792 0.0378052 0.00236551 Vertex 30622 0.0360001 0.0381146 0.00239588 Vertex 30623 0.0372047 0.0385834 0.00228863 Vertex 30624 0.0383914 0.0390949 0.00219016 Vertex 30625 -0.0712974 0.0669397 0.02531 Vertex 30626 -0.058681 0.0336414 -0.0106847 Vertex 30627 -0.0576816 0.0336048 -0.0104516 Vertex 30628 -0.0566419 0.0336495 -0.0102846 Vertex 30629 -0.0556017 0.0336949 -0.0101219 Vertex 30630 -0.0546426 0.0335759 -0.00981752 Vertex 30631 -0.053649 0.0335392 -0.00958395 Vertex 30632 -0.0526941 0.0334208 -0.00928256 Vertex 30633 -0.0516521 0.0334655 -0.0091126 Vertex 30634 -0.0506516 0.033429 -0.00887801 Vertex 30635 -0.0496093 0.0334738 -0.00871292 Vertex 30636 -0.0485683 0.0335187 -0.00854361 Vertex 30637 -0.0475261 0.0335634 -0.00837623 Vertex 30638 -0.0465291 0.0335268 -0.00814027 Vertex 30639 -0.0454406 0.0336534 -0.00804117 Vertex 30640 -0.0444005 0.0336982 -0.00787213 Vertex 30641 -0.0433556 0.0337438 -0.00770024 Vertex 30642 -0.0422261 0.0339521 -0.0076663 Vertex 30643 -0.0409612 0.0344092 -0.00782476 Vertex 30644 -0.0385893 0.036902 -0.00962928 Vertex 30645 -0.036834 0.0382539 -0.0105119 Vertex 30646 -0.0357494 0.0383801 -0.010405 Vertex 30647 -0.0347052 0.0384254 -0.0102399 Vertex 30648 -0.0336174 0.0385515 -0.0101375 Vertex 30649 -0.0326229 0.0385148 -0.00990233 Vertex 30650 -0.0316228 0.0384779 -0.00967109 Vertex 30651 -0.0306251 0.038441 -0.00943325 Vertex 30652 -0.0296256 0.0384042 -0.00919904 Vertex 30653 -0.0286315 0.0383676 -0.00896928 Vertex 30654 -0.0275879 0.0384125 -0.00879832 Vertex 30655 -0.0265472 0.0384572 -0.00862977 Vertex 30656 -0.0255449 0.0384207 -0.00839698 Vertex 30657 -0.0245074 0.0384654 -0.0082311 Vertex 30658 -0.0234618 0.0385102 -0.00806272 Vertex 30659 -0.0224668 0.0384735 -0.00782567 Vertex 30660 -0.0214231 0.0385184 -0.00765668 Vertex 30661 -0.0204228 0.0384821 -0.0074254 Vertex 30662 -0.0193391 0.0386082 -0.00732295 Vertex 30663 -0.0182966 0.038653 -0.00715499 Vertex 30664 -0.0172971 0.0386165 -0.00691824 Vertex 30665 -0.0162113 0.0387427 -0.00681752 Vertex 30666 -0.0152122 0.0387061 -0.0065833 Vertex 30667 -0.0141697 0.038751 -0.00641336 Vertex 30668 -0.0131274 0.0387957 -0.00624825 Vertex 30669 -0.0121322 0.038759 -0.00601251 Vertex 30670 -0.011089 0.038804 -0.005846 Vertex 30671 -0.0100479 0.0388486 -0.00567581 Vertex 30672 -0.00904748 0.0388121 -0.00544357 Vertex 30673 -0.00800869 0.0388567 -0.00527149 Vertex 30674 -0.00696577 0.0389018 -0.00510709 Vertex 30675 -0.00592104 0.0389465 -0.0049376 Vertex 30676 -0.00492317 0.0389099 -0.00470281 Vertex 30677 -0.0038834 0.0389548 -0.00453366 Vertex 30678 -0.00283875 0.0389996 -0.00436591 Vertex 30679 -0.00179731 0.0390446 -0.00419837 Vertex 30680 -0.000753868 0.0390895 -0.00403098 Vertex 30681 0.000289503 0.0391337 -0.00386275 Vertex 30682 0.00124143 0.0390154 -0.00356473 Vertex 30683 0.0021495 0.0388151 -0.00319944 Vertex 30684 0.00292266 0.0383702 -0.00263564 Vertex 30685 0.00334505 0.0372684 -0.00154693 Vertex 30686 0.00349851 0.0356817 -6.66678e-05 Vertex 30687 0.00396334 0.0346642 0.000955872 Vertex 30688 0.00478616 0.0342999 0.00145343 Vertex 30689 0.00569406 0.0341002 0.00181761 Vertex 30690 0.00669444 0.0340637 0.00205518 Vertex 30691 0.00773677 0.0341095 0.00222437 Vertex 30692 0.00886878 0.0343168 0.00225753 Vertex 30693 0.00991096 0.0343624 0.00242681 Vertex 30694 0.0109499 0.0344084 0.00259617 Vertex 30695 0.011996 0.0344545 0.00276628 Vertex 30696 0.0130382 0.0344991 0.00293188 Vertex 30697 0.0141672 0.0347073 0.00296826 Vertex 30698 0.0153865 0.0350801 0.00287497 Vertex 30699 0.016475 0.0352036 0.002978 Vertex 30700 0.0174262 0.0350846 0.00327627 Vertex 30701 0.0183334 0.0348857 0.00364336 Vertex 30702 0.0192462 0.0346832 0.00400718 Vertex 30703 0.020155 0.0344845 0.00437508 Vertex 30704 0.0211096 0.0343656 0.00467028 Vertex 30705 0.022195 0.0344915 0.00477409 Vertex 30706 0.0231948 0.0344554 0.00500709 Vertex 30707 0.0242808 0.034582 0.00510919 Vertex 30708 0.0253641 0.0347082 0.00521179 Vertex 30709 0.0264528 0.0348348 0.00531809 Vertex 30710 0.0275416 0.0349624 0.00541796 Vertex 30711 0.0287147 0.0352518 0.00538775 Vertex 30712 0.029758 0.0352966 0.00556049 Vertex 30713 0.0309311 0.0355864 0.0055308 Vertex 30714 0.0323006 0.0361518 0.00522301 Vertex 30715 0.0334512 0.0365216 0.00521608 Vertex 30716 0.0346158 0.0369318 0.00517598 Vertex 30717 0.0359007 0.0374161 0.00496434 Vertex 30718 0.0372544 0.0379189 0.00466817 Vertex 30719 0.0385114 0.038461 0.00447642 Vertex 30720 0.0398172 0.0390737 0.00420564 Vertex 30721 -0.0704829 0.066568 0.025804 Vertex 30722 -0.0750442 0.11265 0.048722 Vertex 30723 -0.0614467 0.0335533 -0.00933279 Vertex 30724 -0.0604012 0.0335984 -0.00916237 Vertex 30725 -0.0593595 0.0336431 -0.00899455 Vertex 30726 -0.0584052 0.033525 -0.00869675 Vertex 30727 -0.057411 0.0334884 -0.00846165 Vertex 30728 -0.0564565 0.03337 -0.00815977 Vertex 30729 -0.0554108 0.0334149 -0.00799207 Vertex 30730 -0.0544171 0.0333785 -0.00775516 Vertex 30731 -0.0533709 0.0334238 -0.0075905 Vertex 30732 -0.0523328 0.0334686 -0.00741897 Vertex 30733 -0.0513331 0.0334323 -0.00718543 Vertex 30734 -0.0502892 0.0334774 -0.00701976 Vertex 30735 -0.0492467 0.0335224 -0.00684693 Vertex 30736 -0.0482055 0.0335674 -0.00667883 Vertex 30737 -0.0472066 0.033531 -0.00644781 Vertex 30738 -0.0461681 0.033576 -0.00628041 Vertex 30739 -0.0451234 0.0336213 -0.00611106 Vertex 30740 -0.0440788 0.0336672 -0.00594116 Vertex 30741 -0.0429498 0.0338754 -0.00590515 Vertex 30742 -0.0418663 0.0340021 -0.00580283 Vertex 30743 -0.0396703 0.036174 -0.00733977 Vertex 30744 -0.0374695 0.0383458 -0.0088734 Vertex 30745 -0.0364291 0.0383909 -0.00870817 Vertex 30746 -0.0354329 0.0383545 -0.00847377 Vertex 30747 -0.0343438 0.0384811 -0.00836679 Vertex 30748 -0.033348 0.0384446 -0.00813352 Vertex 30749 -0.0323055 0.0384897 -0.00796454 Vertex 30750 -0.0313094 0.0384531 -0.00773361 Vertex 30751 -0.0303114 0.0384164 -0.0075003 Vertex 30752 -0.029312 0.0383797 -0.00726542 Vertex 30753 -0.0283123 0.0383433 -0.00703005 Vertex 30754 -0.0272728 0.0383881 -0.00686007 Vertex 30755 -0.0262755 0.0383516 -0.00662702 Vertex 30756 -0.0252324 0.0383969 -0.00646059 Vertex 30757 -0.0241881 0.038442 -0.0062907 Vertex 30758 -0.0231474 0.0384868 -0.00611954 Vertex 30759 -0.0221494 0.0384504 -0.005885 Vertex 30760 -0.0210631 0.0385773 -0.00578617 Vertex 30761 -0.0200635 0.0385408 -0.00554998 Vertex 30762 -0.0190244 0.0385858 -0.00538325 Vertex 30763 -0.0180225 0.0385494 -0.00514634 Vertex 30764 -0.0169827 0.0385945 -0.00497776 Vertex 30765 -0.0158939 0.0387206 -0.00487532 Vertex 30766 -0.0149445 0.0386028 -0.00457425 Vertex 30767 -0.0138558 0.0387296 -0.0044727 Vertex 30768 -0.012858 0.0386932 -0.00424091 Vertex 30769 -0.0118175 0.0387383 -0.00407256 Vertex 30770 -0.0107728 0.0387832 -0.00390135 Vertex 30771 -0.00977658 0.0387467 -0.00366788 Vertex 30772 -0.00877818 0.0387104 -0.00343461 Vertex 30773 -0.00769265 0.0388371 -0.00333188 Vertex 30774 -0.0066489 0.0388823 -0.00316153 Vertex 30775 -0.00560731 0.0389273 -0.00299633 Vertex 30776 -0.00460988 0.0388908 -0.00276124 Vertex 30777 -0.0035205 0.039017 -0.00265492 Vertex 30778 -0.00256734 0.0388997 -0.00235847 Vertex 30779 -0.0014827 0.0390261 -0.00225591 Vertex 30780 -0.000484271 0.038989 -0.00201961 Vertex 30781 0.000468869 0.0388702 -0.00172096 Vertex 30782 0.00133195 0.0385877 -0.00128958 Vertex 30783 0.00197552 0.0378956 -0.000532016 Vertex 30784 0.00221584 0.0364728 0.00081639 Vertex 30785 0.00250327 0.0351261 0.00210209 Vertex 30786 0.00314961 0.0344334 0.00286196 Vertex 30787 0.00401259 0.0341521 0.00329327 Vertex 30788 0.0049695 0.0340349 0.00359293 Vertex 30789 0.00605345 0.0341614 0.00369541 Vertex 30790 0.00709964 0.0342068 0.00386204 Vertex 30791 0.00822806 0.0344179 0.00390084 Vertex 30792 0.00958242 0.0350342 0.0036093 Vertex 30793 0.0106658 0.0351593 0.00371028 Vertex 30794 0.0117524 0.0352863 0.00381322 Vertex 30795 0.0128834 0.035495 0.00385056 Vertex 30796 0.0140143 0.0357038 0.00388789 Vertex 30797 0.0153228 0.0362397 0.00366285 Vertex 30798 0.0162763 0.0361212 0.00396256 Vertex 30799 0.0171854 0.035921 0.00432788 Vertex 30800 0.0180082 0.0355585 0.00482766 Vertex 30801 0.0189142 0.0353585 0.00519133 Vertex 30802 0.0198267 0.035157 0.00555798 Vertex 30803 0.0207355 0.0349558 0.0059225 Vertex 30804 0.0216001 0.0346735 0.00635285 Vertex 30805 0.0224671 0.0343921 0.00678503 Vertex 30806 0.0234619 0.0343557 0.00702041 Vertex 30807 0.024593 0.0345639 0.00705834 Vertex 30808 0.0256371 0.0346096 0.00722464 Vertex 30809 0.0267233 0.0347365 0.00732658 Vertex 30810 0.0277666 0.0347822 0.00749516 Vertex 30811 0.0288939 0.0349903 0.0075309 Vertex 30812 0.0299365 0.0350356 0.00770058 Vertex 30813 0.0310703 0.0352449 0.00774073 Vertex 30814 0.0322458 0.0355363 0.00770856 Vertex 30815 0.0335552 0.036072 0.00748554 Vertex 30816 0.0348194 0.0365264 0.00732462 Vertex 30817 0.0360751 0.0370336 0.00715793 Vertex 30818 0.0374618 0.0376657 0.00680115 Vertex 30819 0.0387381 0.0381712 0.0065938 Vertex 30820 0.0400498 0.0387801 0.0063192 Vertex 30821 -0.0696571 0.0662079 0.0262916 Vertex 30822 -0.0688031 0.0659098 0.026726 Vertex 30823 -0.079479 0.1087 0.0330138 Vertex 30824 -0.0695902 0.113495 0.0492959 Vertex 30825 -0.0908243 0.114994 0.023547 Vertex 30826 -0.0581295 0.0643065 0.0321224 Vertex 30827 -0.0641215 0.0336259 -0.00810847 Vertex 30828 -0.0630768 0.0336712 -0.00794186 Vertex 30829 -0.0620809 0.0336347 -0.00771095 Vertex 30830 -0.0610844 0.0335982 -0.00747508 Vertex 30831 -0.0601285 0.0334799 -0.007174 Vertex 30832 -0.0591321 0.0334434 -0.0069378 Vertex 30833 -0.0581339 0.0334069 -0.00670381 Vertex 30834 -0.0571361 0.0333705 -0.00647115 Vertex 30835 -0.056091 0.0334157 -0.00629765 Vertex 30836 -0.0550956 0.0333795 -0.00606735 Vertex 30837 -0.0540526 0.0334248 -0.00589512 Vertex 30838 -0.0530523 0.0333885 -0.00566149 Vertex 30839 -0.0520123 0.033434 -0.00549431 Vertex 30840 -0.0509261 0.0335608 -0.00538789 Vertex 30841 -0.049929 0.0335244 -0.00515732 Vertex 30842 -0.0489307 0.0334882 -0.00491951 Vertex 30843 -0.0478872 0.0335336 -0.00475407 Vertex 30844 -0.0468444 0.033579 -0.0045851 Vertex 30845 -0.0458025 0.0336244 -0.00441422 Vertex 30846 -0.0447604 0.0336698 -0.00424497 Vertex 30847 -0.043721 0.033715 -0.00407894 Vertex 30848 -0.0426327 0.0338426 -0.00397459 Vertex 30849 -0.0415043 0.0340515 -0.0039392 Vertex 30850 -0.0380666 0.0385186 -0.00730796 Vertex 30851 -0.0372457 0.0381548 -0.00680953 Vertex 30852 -0.0361586 0.0382819 -0.0067057 Vertex 30853 -0.0350693 0.0384092 -0.00660408 Vertex 30854 -0.0340295 0.0384544 -0.00643688 Vertex 30855 -0.0330305 0.0384181 -0.00620006 Vertex 30856 -0.0319894 0.0384633 -0.00603174 Vertex 30857 -0.0309909 0.0384268 -0.00579914 Vertex 30858 -0.0299919 0.0383903 -0.00556396 Vertex 30859 -0.0289964 0.0383539 -0.00532847 Vertex 30860 -0.0279974 0.0383174 -0.0050935 Vertex 30861 -0.026997 0.0382812 -0.00486026 Vertex 30862 -0.0259579 0.0383264 -0.00469023 Vertex 30863 -0.0249134 0.0383716 -0.00452352 Vertex 30864 -0.0239185 0.0383353 -0.00428996 Vertex 30865 -0.0228745 0.0383806 -0.00412065 Vertex 30866 -0.0218791 0.0383442 -0.00388387 Vertex 30867 -0.0207908 0.0384714 -0.00378381 Vertex 30868 -0.0197923 0.038435 -0.00354579 Vertex 30869 -0.0187529 0.0384803 -0.00337678 Vertex 30870 -0.0177093 0.0385258 -0.00321073 Vertex 30871 -0.0166687 0.038571 -0.00303984 Vertex 30872 -0.0156709 0.0385345 -0.00280448 Vertex 30873 -0.014626 0.03858 -0.00263697 Vertex 30874 -0.013583 0.0386256 -0.002471 Vertex 30875 -0.0125434 0.0386707 -0.00229897 Vertex 30876 -0.0114977 0.038716 -0.00213082 Vertex 30877 -0.0104996 0.03868 -0.00189881 Vertex 30878 -0.00945842 0.0387253 -0.00172767 Vertex 30879 -0.00841793 0.0387705 -0.00155909 Vertex 30880 -0.00737522 0.0388161 -0.00139235 Vertex 30881 -0.00633129 0.0388612 -0.00122239 Vertex 30882 -0.00533786 0.0388247 -0.000985585 Vertex 30883 -0.00433796 0.0387886 -0.000752538 Vertex 30884 -0.00324909 0.0389153 -0.000648163 Vertex 30885 -0.00225297 0.0388793 -0.00041461 Vertex 30886 -0.00121369 0.0389243 -0.000247464 Vertex 30887 -0.000258207 0.0388058 4.93079e-05 Vertex 30888 0.000471055 0.038278 0.000679374 Vertex 30889 0.000983167 0.0373381 0.00163376 Vertex 30890 0.00122549 0.0359125 0.00298025 Vertex 30891 0.00164525 0.0348132 0.00406568 Vertex 30892 0.00242535 0.0343652 0.00462872 Vertex 30893 0.00333114 0.0341656 0.00499397 Vertex 30894 0.0043328 0.0341303 0.00522853 Vertex 30895 0.00555045 0.034504 0.00513967 Vertex 30896 0.00659366 0.0345497 0.005308 Vertex 30897 0.00767659 0.0346834 0.0054103 Vertex 30898 0.00942926 0.0360304 0.00452751 Vertex 30899 0.0187645 0.036357 0.00611202 Vertex 30900 0.0195848 0.035993 0.00660837 Vertex 30901 0.0204519 0.0357096 0.00704168 Vertex 30902 0.0212269 0.035264 0.00760182 Vertex 30903 0.0220013 0.0348195 0.00816409 Vertex 30904 0.0228246 0.0344564 0.00866393 Vertex 30905 0.0237757 0.0343382 0.00896337 Vertex 30906 0.0248201 0.0343822 0.00913252 Vertex 30907 0.0258636 0.0344283 0.00929921 Vertex 30908 0.0270364 0.0347184 0.00926922 Vertex 30909 0.0280342 0.0346822 0.009507 Vertex 30910 0.0291213 0.0348096 0.00960912 Vertex 30911 0.0302544 0.035019 0.00964843 Vertex 30912 0.0313837 0.0352278 0.00968341 Vertex 30913 0.0324709 0.0353558 0.0097886 Vertex 30914 0.0336899 0.0357287 0.00969367 Vertex 30915 0.0349983 0.0362655 0.0094693 Vertex 30916 0.03635 0.0368836 0.00917982 Vertex 30917 0.0376665 0.0374378 0.0089364 Vertex 30918 0.039051 0.0380783 0.00858362 Vertex 30919 0.0403512 0.038719 0.00830945 Vertex 30920 0.0418337 0.0395215 0.00781447 Vertex 30921 0.043074 0.0401669 0.0073914 Vertex 30922 -0.0679412 0.0656184 0.0271584 Vertex 30923 -0.0768739 0.0698402 0.0216311 Vertex 30924 -0.0761006 0.0693618 0.0222283 Vertex 30925 -0.0805782 0.112389 0.0458728 Vertex 30926 -0.0667502 0.0337781 -0.00695475 Vertex 30927 -0.0657521 0.033742 -0.00672308 Vertex 30928 -0.0647084 0.033787 -0.00655215 Vertex 30929 -0.0637555 0.0336685 -0.00625178 Vertex 30930 -0.0628446 0.0334683 -0.00588606 Vertex 30931 -0.0618946 0.0333508 -0.00558837 Vertex 30932 -0.0608506 0.0333964 -0.00541551 Vertex 30933 -0.0598089 0.0334419 -0.0052474 Vertex 30934 -0.0588111 0.0334057 -0.00501142 Vertex 30935 -0.0577717 0.0334512 -0.00484461 Vertex 30936 -0.0568164 0.0333332 -0.00454462 Vertex 30937 -0.0557727 0.0333786 -0.00437552 Vertex 30938 -0.0547761 0.0333427 -0.00414144 Vertex 30939 -0.0536876 0.0334698 -0.00403732 Vertex 30940 -0.0526923 0.0334338 -0.00380212 Vertex 30941 -0.0516478 0.0334795 -0.00363494 Vertex 30942 -0.0506075 0.0335251 -0.00346549 Vertex 30943 -0.0495662 0.0335706 -0.0032948 Vertex 30944 -0.0485652 0.0335345 -0.00306359 Vertex 30945 -0.0475247 0.0335798 -0.00289187 Vertex 30946 -0.0465281 0.033544 -0.0026564 Vertex 30947 -0.0454423 0.0336713 -0.00255197 Vertex 30948 -0.0444006 0.0337168 -0.00238543 Vertex 30949 -0.0434 0.0336807 -0.00215159 Vertex 30950 -0.0423597 0.0337264 -0.0019814 Vertex 30951 -0.041271 0.0338554 -0.00188008 Vertex 30952 -0.0399669 0.0343914 -0.00210399 Vertex 30953 -0.0367962 0.0383714 -0.00507539 Vertex 30954 -0.0357967 0.0383351 -0.00483874 Vertex 30955 -0.0347516 0.0383809 -0.00467189 Vertex 30956 -0.033711 0.0384262 -0.00450177 Vertex 30957 -0.0327132 0.0383899 -0.00426549 Vertex 30958 -0.0317158 0.0383538 -0.00403424 Vertex 30959 -0.0306743 0.0383989 -0.00386137 Vertex 30960 -0.0297217 0.0382812 -0.0035606 Vertex 30961 -0.0286807 0.0383267 -0.00339493 Vertex 30962 -0.0276376 0.0383723 -0.00322479 Vertex 30963 -0.0266388 0.038336 -0.00299264 Vertex 30964 -0.0256418 0.0382997 -0.00275652 Vertex 30965 -0.0246408 0.0382637 -0.00251941 Vertex 30966 -0.0236004 0.0383091 -0.00235181 Vertex 30967 -0.0225582 0.0383546 -0.00218286 Vertex 30968 -0.0215605 0.0383186 -0.00194746 Vertex 30969 -0.0205171 0.0383642 -0.00178242 Vertex 30970 -0.0194769 0.0384097 -0.0016118 Vertex 30971 -0.018436 0.0384553 -0.00144245 Vertex 30972 -0.0174383 0.038419 -0.00120725 Vertex 30973 -0.0163928 0.0384645 -0.00103951 Vertex 30974 -0.0153967 0.0384283 -0.000805549 Vertex 30975 -0.0143997 0.0383922 -0.000568703 Vertex 30976 -0.0133132 0.0385196 -0.000466347 Vertex 30977 -0.0122712 0.0385653 -0.000297189 Vertex 30978 -0.0112267 0.038611 -0.000125945 Vertex 30979 -0.010188 0.0386565 4.14997e-05 Vertex 30980 -0.00914442 0.0387021 0.000210725 Vertex 30981 -0.00814574 0.0386661 0.000442505 Vertex 30982 -0.00710159 0.0387114 0.00061319 Vertex 30983 -0.00610364 0.0386755 0.000846714 Vertex 30984 -0.00506288 0.0387211 0.00101779 Vertex 30985 -0.00402317 0.0387663 0.0011878 Vertex 30986 -0.00302574 0.0387303 0.00142158 Vertex 30987 -0.00193792 0.0388572 0.00152241 Vertex 30988 -0.00107263 0.0385746 0.00195199 Vertex 30989 -0.000342105 0.0380462 0.00257941 Vertex 30990 7.57538e-05 0.0369473 0.00366537 Vertex 30991 0.00040853 0.0356817 0.00488121 Vertex 30992 0.000965074 0.0348235 0.00577003 Vertex 30993 0.00178793 0.0344587 0.00626566 Vertex 30994 0.0026516 0.0341771 0.00670019 Vertex 30995 0.003605 0.0340592 0.00699628 Vertex 30996 0.00464616 0.034105 0.00716872 Vertex 30997 0.00621941 0.0351341 0.00654928 Vertex 30998 0.00788239 0.0363273 0.00580236 Vertex 30999 0.0208979 0.0359371 0.0087849 Vertex 31000 0.021677 0.0354914 0.00935068 Vertex 31001 0.0225395 0.0352111 0.00978173 Vertex 31002 0.0234483 0.0350084 0.0101439 Vertex 31003 0.0243141 0.0347256 0.0105738 Vertex 31004 0.0251817 0.0344441 0.0110044 Vertex 31005 0.0262204 0.0344897 0.0111735 Vertex 31006 0.0273074 0.0346174 0.0112772 Vertex 31007 0.0283929 0.0347449 0.011384 Vertex 31008 0.0294825 0.0348729 0.0114843 Vertex 31009 0.0305676 0.0350004 0.0115893 Vertex 31010 0.0316541 0.0351286 0.0116939 Vertex 31011 0.0328304 0.0354201 0.0116657 Vertex 31012 0.0339626 0.0356317 0.0117064 Vertex 31013 0.0353133 0.0362497 0.0114171 Vertex 31014 0.036694 0.0368281 0.0111245 Vertex 31015 0.0379749 0.0374097 0.0109015 Vertex 31016 0.0393737 0.0381589 0.0105128 Vertex 31017 0.0409151 0.0390283 0.00994476 Vertex 31018 0.0422611 0.0397457 0.00959333 Vertex 31019 0.0436509 0.0403831 0.00924323 Vertex 31020 0.045017 0.0410596 0.00889517 Vertex 31021 -0.080526 0.109264 0.0359357 Vertex 31022 -0.0789279 0.0699144 0.0158521 Vertex 31023 -0.0781672 0.0694403 0.0164131 Vertex 31024 -0.0774125 0.06897 0.0169693 Vertex 31025 -0.067477 0.0336926 -0.00520632 Vertex 31026 -0.066433 0.0337378 -0.00503676 Vertex 31027 -0.065521 0.0335373 -0.00466605 Vertex 31028 -0.0645229 0.0335011 -0.00443342 Vertex 31029 -0.0635243 0.0334646 -0.00419693 Vertex 31030 -0.0625734 0.0333471 -0.00389969 Vertex 31031 -0.0615294 0.0333928 -0.00373148 Vertex 31032 -0.0605348 0.0333568 -0.0034971 Vertex 31033 -0.0594457 0.0334843 -0.00338966 Vertex 31034 -0.0584915 0.0333664 -0.00308936 Vertex 31035 -0.0574937 0.0333307 -0.00285911 Vertex 31036 -0.0564079 0.0334582 -0.0027528 Vertex 31037 -0.0554099 0.0334223 -0.00251784 Vertex 31038 -0.0543692 0.0334679 -0.00234676 Vertex 31039 -0.0533713 0.0334322 -0.00211203 Vertex 31040 -0.0523266 0.033478 -0.00194369 Vertex 31041 -0.0512875 0.0335238 -0.00177633 Vertex 31042 -0.0502435 0.0335698 -0.00160666 Vertex 31043 -0.0492034 0.0336154 -0.00143623 Vertex 31044 -0.0482041 0.0335795 -0.00119996 Vertex 31045 -0.0471614 0.0336254 -0.00103179 Vertex 31046 -0.046121 0.0336712 -0.000864342 Vertex 31047 -0.0450772 0.0337168 -0.000691764 Vertex 31048 -0.044079 0.0336811 -0.000461832 Vertex 31049 -0.0430409 0.0337266 -0.000289053 Vertex 31050 -0.0419982 0.0337727 -0.000124238 Vertex 31051 -0.0410423 0.0336551 0.000178151 Vertex 31052 -0.0399106 0.033865 0.000215963 Vertex 31053 -0.0388285 0.0339925 0.000319116 Vertex 31054 -0.0354812 0.0383051 -0.00290933 Vertex 31055 -0.0344792 0.0382691 -0.00267158 Vertex 31056 -0.0334383 0.0383149 -0.00250434 Vertex 31057 -0.0323958 0.0383608 -0.00233468 Vertex 31058 -0.0313536 0.0384061 -0.00216621 Vertex 31059 -0.0304023 0.0382885 -0.00186367 Vertex 31060 -0.0293612 0.0383343 -0.00169706 Vertex 31061 -0.0283184 0.0383801 -0.00152859 Vertex 31062 -0.0273216 0.038344 -0.00129213 Vertex 31063 -0.0263218 0.038308 -0.00105771 Vertex 31064 -0.0252778 0.0383536 -0.00088571 Vertex 31065 -0.0242795 0.0383175 -0.000652306 Vertex 31066 -0.0232836 0.0382816 -0.000419572 Vertex 31067 -0.0222409 0.0383275 -0.000251248 Vertex 31068 -0.0212016 0.0383732 -7.87452e-05 Vertex 31069 -0.0202041 0.0383371 0.000156328 Vertex 31070 -0.0191613 0.038383 0.000326194 Vertex 31071 -0.0181173 0.0384288 0.000495732 Vertex 31072 -0.0171212 0.0383927 0.000728518 Vertex 31073 -0.0161203 0.0383572 0.000963241 Vertex 31074 -0.0150366 0.0384845 0.00106724 Vertex 31075 -0.0140374 0.0384483 0.0012996 Vertex 31076 -0.0130394 0.0384127 0.00153612 Vertex 31077 -0.0119534 0.0385403 0.00164014 Vertex 31078 -0.0109134 0.038586 0.0018115 Vertex 31079 -0.00991465 0.0385501 0.00204441 Vertex 31080 -0.00887371 0.0385959 0.0022117 Vertex 31081 -0.00782857 0.0386419 0.00238313 Vertex 31082 -0.0067878 0.0386876 0.00254936 Vertex 31083 -0.00578939 0.0386518 0.00278679 Vertex 31084 -0.00470317 0.038779 0.00289117 Vertex 31085 -0.0037488 0.0386615 0.00318783 Vertex 31086 -0.00270805 0.0387067 0.00335713 Vertex 31087 -0.00180254 0.0385071 0.00372255 Vertex 31088 -0.00115829 0.0378141 0.0044798 Vertex 31089 -0.000693426 0.0367942 0.0054988 Vertex 31090 -0.000271447 0.0356914 0.00658166 Vertex 31091 0.000373363 0.0349968 0.00734292 Vertex 31092 0.00110225 0.0344701 0.00796988 Vertex 31093 0.00201718 0.0342688 0.0083365 Vertex 31094 0.00296971 0.0341513 0.00863676 Vertex 31095 0.00396755 0.0341147 0.00886829 Vertex 31096 0.0049172 0.0339971 0.00916661 Vertex 31097 0.0222999 0.0360441 0.0108303 Vertex 31098 0.0230318 0.0355156 0.0114574 Vertex 31099 0.0237641 0.0349876 0.0120857 Vertex 31100 0.0246298 0.0347052 0.0125163 Vertex 31101 0.0255827 0.034587 0.0128177 Vertex 31102 0.0265802 0.0345508 0.0130494 Vertex 31103 0.0276661 0.034679 0.0131567 Vertex 31104 0.0287557 0.0348074 0.0132587 Vertex 31105 0.0298844 0.0350171 0.0132987 Vertex 31106 0.0309714 0.035145 0.0133989 Vertex 31107 0.0321473 0.0354374 0.0133726 Vertex 31108 0.0333197 0.0357288 0.0133458 Vertex 31109 0.0345426 0.0361041 0.0132537 Vertex 31110 0.0357625 0.0364791 0.0131618 Vertex 31111 0.0371127 0.037099 0.0128773 Vertex 31112 0.0385505 0.0378908 0.0124577 Vertex 31113 0.0398565 0.0384519 0.0122163 Vertex 31114 0.0413373 0.0392631 0.0117259 Vertex 31115 0.0427163 0.0399244 0.0113768 Vertex 31116 0.0440394 0.0405103 0.0110966 Vertex 31117 0.0454742 0.0412367 0.0106737 Vertex 31118 -0.0670784 0.0653289 0.0275882 Vertex 31119 -0.0662043 0.065068 0.0280019 Vertex 31120 -0.0829702 0.111001 0.0428895 Vertex 31121 -0.0653246 0.0648097 0.0284194 Vertex 31122 -0.0697867 0.034416 -0.00452426 Vertex 31123 -0.0690565 0.0338884 -0.00389811 Vertex 31124 -0.0681462 0.033688 -0.00353141 Vertex 31125 -0.0671901 0.0335697 -0.00322908 Vertex 31126 -0.0661933 0.0335338 -0.00299624 Vertex 31127 -0.0651961 0.0334974 -0.00275965 Vertex 31128 -0.0642448 0.0333797 -0.00245942 Vertex 31129 -0.063243 0.0333437 -0.00222576 Vertex 31130 -0.0622051 0.0333895 -0.00205752 Vertex 31131 -0.0611633 0.0334354 -0.00188959 Vertex 31132 -0.0601615 0.0333995 -0.00165181 Vertex 31133 -0.0591204 0.0334451 -0.00148219 Vertex 31134 -0.0581251 0.0334091 -0.00125013 Vertex 31135 -0.0571262 0.0333733 -0.00101401 Vertex 31136 -0.0560415 0.0335011 -0.000906542 Vertex 31137 -0.0550408 0.0334649 -0.000671931 Vertex 31138 -0.0540428 0.0334293 -0.000440359 Vertex 31139 -0.0529595 0.0335568 -0.000338033 Vertex 31140 -0.0519598 0.0335208 -0.000101812 Vertex 31141 -0.0509168 0.0335668 6.7085e-05 Vertex 31142 -0.0498753 0.0336124 0.000239655 Vertex 31143 -0.0488762 0.0335766 0.000473902 Vertex 31144 -0.0478366 0.0336224 0.000642732 Vertex 31145 -0.0467966 0.0336683 0.000813328 Vertex 31146 -0.0457991 0.0336321 0.00104877 Vertex 31147 -0.0447526 0.0336781 0.00121434 Vertex 31148 -0.0437553 0.033642 0.00144997 Vertex 31149 -0.042758 0.0336059 0.00168497 Vertex 31150 -0.0417615 0.03357 0.00191851 Vertex 31151 -0.0407181 0.0336157 0.00208844 Vertex 31152 -0.0397192 0.03358 0.00232461 Vertex 31153 -0.0386792 0.0336259 0.00249375 Vertex 31154 -0.0376403 0.0336717 0.00266115 Vertex 31155 -0.0341168 0.0383136 -0.000825234 Vertex 31156 -0.0331634 0.0381954 -0.000525199 Vertex 31157 -0.0320742 0.0383234 -0.000421092 Vertex 31158 -0.0310333 0.0383692 -0.000250742 Vertex 31159 -0.030037 0.0383331 -1.37538e-05 Vertex 31160 -0.0290376 0.038297 0.000217512 Vertex 31161 -0.0280399 0.038261 0.000453129 Vertex 31162 -0.0269995 0.0383068 0.000625566 Vertex 31163 -0.0260008 0.0382709 0.000860974 Vertex 31164 -0.0249563 0.0383168 0.00102848 Vertex 31165 -0.0239168 0.0383626 0.00119722 Vertex 31166 -0.0229162 0.0383263 0.00143492 Vertex 31167 -0.0219183 0.0382906 0.00166561 Vertex 31168 -0.0208788 0.0383361 0.00183886 Vertex 31169 -0.0198829 0.0383003 0.00206982 Vertex 31170 -0.0188389 0.0383463 0.00224079 Vertex 31171 -0.017795 0.038392 0.00241319 Vertex 31172 -0.0167976 0.0383562 0.00264497 Vertex 31173 -0.0157589 0.038402 0.00281447 Vertex 31174 -0.0147126 0.0384481 0.00298688 Vertex 31175 -0.0136741 0.0384938 0.00315386 Vertex 31176 -0.0126734 0.0384579 0.00339052 Vertex 31177 -0.0116325 0.0385039 0.00355749 Vertex 31178 -0.0105902 0.0385498 0.00372703 Vertex 31179 -0.00955085 0.0385956 0.00389466 Vertex 31180 -0.0085531 0.0385596 0.00412906 Vertex 31181 -0.00750789 0.0386054 0.00429878 Vertex 31182 -0.00651 0.0385696 0.00453582 Vertex 31183 -0.00546749 0.0386155 0.00470576 Vertex 31184 -0.00442631 0.0386612 0.00487339 Vertex 31185 -0.00342977 0.0386245 0.00511046 Vertex 31186 -0.00252234 0.038424 0.00547409 Vertex 31187 -0.00188052 0.0377314 0.00623396 Vertex 31188 -0.00137013 0.0367929 0.00718583 Vertex 31189 -0.00085919 0.0358547 0.00813469 Vertex 31190 -0.000261091 0.0350803 0.00896105 Vertex 31191 0.000514101 0.0346343 0.00952105 Vertex 31192 0.00137957 0.0343513 0.00995357 Vertex 31193 0.00228893 0.0341509 0.0103163 Vertex 31194 0.00333358 0.0341967 0.0104872 Vertex 31195 0.0044664 0.0344032 0.010526 Vertex 31196 0.00514996 0.0337963 0.0112147 Vertex 31197 0.0226207 0.0360088 0.0127544 Vertex 31198 0.0233968 0.0355618 0.0133136 Vertex 31199 0.0241747 0.0351145 0.0138772 Vertex 31200 0.0249955 0.0347512 0.0143719 Vertex 31201 0.0259946 0.0347155 0.014606 Vertex 31202 0.0270369 0.0347621 0.0147774 Vertex 31203 0.0281202 0.0348895 0.0148787 Vertex 31204 0.0292084 0.0350186 0.0149853 Vertex 31205 0.0303366 0.0352283 0.0150252 Vertex 31206 0.0315592 0.035603 0.0149292 Vertex 31207 0.0327757 0.035977 0.0148418 Vertex 31208 0.0339966 0.0363512 0.0147468 Vertex 31209 0.0352163 0.0367258 0.0146563 Vertex 31210 0.0364352 0.0371002 0.0145635 Vertex 31211 0.037787 0.0377202 0.0142753 Vertex 31212 0.0390959 0.0382591 0.0140545 Vertex 31213 0.0404351 0.0389029 0.0137659 Vertex 31214 0.0418277 0.0395362 0.0134182 Vertex 31215 0.0432176 0.0401728 0.0130684 Vertex 31216 0.0445354 0.0407636 0.0127885 Vertex 31217 0.0459347 0.0413813 0.0124396 Vertex 31218 0.0473913 0.0422357 0.0119475 Vertex 31219 -0.0766217 0.068534 0.0175211 Vertex 31220 -0.0705699 0.152776 -0.0468148 Vertex 31221 -0.085825 0.114595 0.0464925 Vertex 31222 -0.0640765 0.0658063 0.0313225 Vertex 31223 -0.0705055 0.0343308 -0.00278598 Vertex 31224 -0.0696847 0.0339658 -0.0022881 Vertex 31225 -0.0688616 0.033602 -0.00179476 Vertex 31226 -0.0678631 0.0335656 -0.00155997 Vertex 31227 -0.06691 0.033448 -0.00125687 Vertex 31228 -0.0658667 0.0334936 -0.00108817 Vertex 31229 -0.0648702 0.0334576 -0.000853911 Vertex 31230 -0.0638759 0.0334217 -0.000619218 Vertex 31231 -0.0628753 0.0333858 -0.000385113 Vertex 31232 -0.0618325 0.0334319 -0.000212632 Vertex 31233 -0.0607902 0.0334775 -4.36679e-05 Vertex 31234 -0.0597937 0.0334415 0.000190139 Vertex 31235 -0.0587952 0.0334058 0.000425547 Vertex 31236 -0.0577571 0.0334518 0.000595927 Vertex 31237 -0.0567145 0.0334976 0.000765085 Vertex 31238 -0.0556704 0.0335434 0.000932366 Vertex 31239 -0.0546754 0.0335075 0.00116676 Vertex 31240 -0.0536324 0.0335534 0.00133593 Vertex 31241 -0.0526315 0.0335173 0.00157493 Vertex 31242 -0.0516371 0.0334814 0.00180973 Vertex 31243 -0.0506374 0.0334455 0.00204379 Vertex 31244 -0.0495533 0.0335732 0.00214603 Vertex 31245 -0.0485565 0.0335372 0.00238031 Vertex 31246 -0.0475589 0.0335011 0.00261705 Vertex 31247 -0.0464698 0.0336288 0.00272222 Vertex 31248 -0.0455143 0.0335109 0.00302189 Vertex 31249 -0.0445167 0.0334752 0.00325528 Vertex 31250 -0.0434764 0.0335212 0.0034233 Vertex 31251 -0.0424368 0.033567 0.00359466 Vertex 31252 -0.0414388 0.033531 0.00382893 Vertex 31253 -0.0403969 0.033577 0.00400031 Vertex 31254 -0.0393536 0.0336231 0.00416845 Vertex 31255 -0.0383106 0.0336688 0.00433881 Vertex 31256 -0.0373144 0.033633 0.00457247 Vertex 31257 -0.0362745 0.033679 0.00474125 Vertex 31258 -0.0352323 0.0337248 0.00491425 Vertex 31259 -0.0317989 0.0382037 0.00155838 Vertex 31260 -0.0307981 0.0381678 0.00179566 Vertex 31261 -0.0297129 0.0382953 0.00190139 Vertex 31262 -0.0287124 0.0382592 0.00213562 Vertex 31263 -0.0277181 0.0382234 0.00237012 Vertex 31264 -0.026674 0.0382695 0.00254021 Vertex 31265 -0.0256326 0.0383152 0.00270994 Vertex 31266 -0.0246346 0.0382795 0.00294393 Vertex 31267 -0.0235934 0.0383252 0.00311252 Vertex 31268 -0.0225936 0.0382891 0.00334965 Vertex 31269 -0.021599 0.0382532 0.00358087 Vertex 31270 -0.0206011 0.0382174 0.00381729 Vertex 31271 -0.0195138 0.038345 0.00392275 Vertex 31272 -0.0185178 0.0383092 0.00415679 Vertex 31273 -0.0174725 0.0383553 0.00432532 Vertex 31274 -0.0164306 0.0384009 0.00449856 Vertex 31275 -0.0154366 0.0383652 0.00473292 Vertex 31276 -0.0143913 0.0384112 0.00490303 Vertex 31277 -0.0133509 0.0384568 0.00507202 Vertex 31278 -0.0123514 0.0384213 0.00530714 Vertex 31279 -0.0113093 0.0384672 0.00547553 Vertex 31280 -0.0102702 0.0385128 0.00564525 Vertex 31281 -0.00927372 0.0384768 0.00588152 Vertex 31282 -0.0081869 0.0386049 0.00598379 Vertex 31283 -0.00718543 0.0385691 0.00621806 Vertex 31284 -0.00614443 0.0386147 0.00639011 Vertex 31285 -0.00514848 0.0385788 0.00662082 Vertex 31286 -0.00415159 0.0385426 0.00685716 Vertex 31287 -0.00319773 0.0384234 0.00715593 Vertex 31288 -0.00251219 0.0378133 0.00785027 Vertex 31289 -0.00195749 0.0369571 0.00873581 Vertex 31290 -0.00140393 0.0361018 0.00962515 Vertex 31291 -0.000757843 0.0354065 0.0103826 Vertex 31292 -2.43522e-05 0.0348774 0.0110061 Vertex 31293 0.000795729 0.0345137 0.0115011 Vertex 31294 0.00170313 0.0343139 0.0118694 Vertex 31295 0.00261537 0.0341134 0.0122343 Vertex 31296 0.00356645 0.0339958 0.0125338 Vertex 31297 0.00465347 0.0341223 0.0126365 Vertex 31298 0.00542741 0.0336773 0.0131964 Vertex 31299 0.0222529 0.0365833 0.0139797 Vertex 31300 0.0228959 0.0358901 0.0147404 Vertex 31301 0.0235861 0.0352777 0.0154316 Vertex 31302 0.0242732 0.0346695 0.0161217 Vertex 31303 0.0252705 0.0346338 0.0163557 Vertex 31304 0.0263999 0.0348437 0.0163952 Vertex 31305 0.0274881 0.0349726 0.0165028 Vertex 31306 0.0285746 0.0351013 0.0166057 Vertex 31307 0.0297936 0.0354746 0.0165125 Vertex 31308 0.0308793 0.0356029 0.0166157 Vertex 31309 0.0321446 0.0360609 0.0164637 Vertex 31310 0.0333636 0.0364347 0.0163708 Vertex 31311 0.0345811 0.0368089 0.0162808 Vertex 31312 0.0358003 0.0371828 0.0161878 Vertex 31313 0.0370638 0.0376395 0.0160314 Vertex 31314 0.0383745 0.038179 0.01581 Vertex 31315 0.0395927 0.0385536 0.0157178 Vertex 31316 0.040988 0.0392554 0.0153655 Vertex 31317 0.0423629 0.0398964 0.0150374 Vertex 31318 0.0436977 0.0404602 0.0147575 Vertex 31319 0.0450791 0.0411084 0.0144119 Vertex 31320 0.0465682 0.041911 0.0139236 Vertex 31321 0.0479919 0.0426572 0.0134999 Vertex 31322 -0.0643967 0.0646443 0.0287462 Vertex 31323 -0.075813 0.0681115 0.0180714 Vertex 31324 -0.0670537 0.071446 0.0363402 Vertex 31325 -0.0829949 0.115554 0.048125 Vertex 31326 -0.0708767 0.0346286 -0.00100073 Vertex 31327 -0.0703883 0.0339052 -0.000577152 Vertex 31328 -0.069479 0.0337046 -0.000209101 Vertex 31329 -0.0685663 0.0335043 0.000153325 Vertex 31330 -0.0675754 0.0334584 0.000400215 Vertex 31331 -0.0665808 0.0334125 0.000644743 Vertex 31332 -0.0655859 0.0333717 0.000880867 Vertex 31333 -0.0645473 0.0334176 0.0010517 Vertex 31334 -0.0635465 0.0333817 0.00128463 Vertex 31335 -0.0625074 0.0334277 0.00145514 Vertex 31336 -0.0614627 0.0334736 0.00162861 Vertex 31337 -0.0604675 0.0334377 0.00185915 Vertex 31338 -0.0594246 0.0334838 0.00203125 Vertex 31339 -0.0583832 0.0335298 0.00219999 Vertex 31340 -0.0573422 0.0335757 0.00237022 Vertex 31341 -0.0563459 0.0335397 0.00260276 Vertex 31342 -0.055347 0.0335038 0.00284205 Vertex 31343 -0.0543042 0.0335497 0.00301212 Vertex 31344 -0.0532618 0.0335957 0.00317772 Vertex 31345 -0.0522651 0.0335597 0.0034159 Vertex 31346 -0.0512658 0.0335234 0.00365116 Vertex 31347 -0.050311 0.033406 0.00395206 Vertex 31348 -0.0492702 0.0334521 0.00412227 Vertex 31349 -0.0481836 0.0335793 0.00422402 Vertex 31350 -0.0472308 0.0334623 0.00452598 Vertex 31351 -0.0461887 0.0335082 0.00469546 Vertex 31352 -0.0451488 0.0335546 0.00486717 Vertex 31353 -0.0441515 0.0335185 0.00510187 Vertex 31354 -0.0431097 0.0335646 0.0052718 Vertex 31355 -0.0420673 0.0336103 0.00544111 Vertex 31356 -0.0410706 0.0335739 0.0056728 Vertex 31357 -0.0400289 0.0336199 0.00584373 Vertex 31358 -0.0389872 0.0336658 0.00601497 Vertex 31359 -0.0379874 0.0336299 0.0062497 Vertex 31360 -0.0369476 0.033676 0.00641963 Vertex 31361 -0.0359021 0.0337218 0.00658675 Vertex 31362 -0.0349082 0.033686 0.00682403 Vertex 31363 -0.0338224 0.0338142 0.00692539 Vertex 31364 -0.0304784 0.0381297 0.00370653 Vertex 31365 -0.0294344 0.0381755 0.00387704 Vertex 31366 -0.0284374 0.0381394 0.00411543 Vertex 31367 -0.0273926 0.0381858 0.00428469 Vertex 31368 -0.026353 0.0382316 0.0044532 Vertex 31369 -0.0253533 0.0381958 0.00468802 Vertex 31370 -0.0243119 0.0382419 0.00485642 Vertex 31371 -0.023273 0.0382876 0.00502865 Vertex 31372 -0.0222759 0.0382517 0.00526325 Vertex 31373 -0.0212772 0.0382158 0.00549847 Vertex 31374 -0.0201912 0.0383436 0.00560257 Vertex 31375 -0.0192343 0.038226 0.00590432 Vertex 31376 -0.018196 0.038272 0.00607299 Vertex 31377 -0.0171544 0.0383178 0.00624466 Vertex 31378 -0.016108 0.038364 0.00641286 Vertex 31379 -0.0150683 0.0384098 0.0065829 Vertex 31380 -0.0140732 0.0383739 0.00681638 Vertex 31381 -0.013074 0.0383381 0.00704947 Vertex 31382 -0.0119886 0.038466 0.00715809 Vertex 31383 -0.0109445 0.0385116 0.00732721 Vertex 31384 -0.00999143 0.0383941 0.00762464 Vertex 31385 -0.00895133 0.0384401 0.00779513 Vertex 31386 -0.00790814 0.0384861 0.0079669 Vertex 31387 -0.00686818 0.0385321 0.0081342 Vertex 31388 -0.00587038 0.038496 0.0083708 Vertex 31389 -0.00482937 0.038542 0.00854039 Vertex 31390 -0.00387451 0.0384228 0.00884205 Vertex 31391 -0.00309828 0.0379762 0.00940157 Vertex 31392 -0.00241231 0.037367 0.0100902 Vertex 31393 -0.00181158 0.0365903 0.0109133 Vertex 31394 -0.00121244 0.0358159 0.011737 Vertex 31395 -0.000525817 0.0352062 0.0124275 Vertex 31396 0.000249699 0.0347599 0.0129869 Vertex 31397 0.00111873 0.0344764 0.0134191 Vertex 31398 0.0020291 0.0342762 0.0137843 Vertex 31399 0.00297843 0.0341587 0.014086 Vertex 31400 0.00393342 0.0340406 0.014385 Vertex 31401 0.00497409 0.0340864 0.0145521 Vertex 31402 0.00592655 0.0339685 0.0148513 Vertex 31403 0.0214461 0.036336 0.0158614 Vertex 31404 0.0222628 0.0359732 0.0163557 Vertex 31405 0.0228628 0.0351973 0.0171792 Vertex 31406 0.0236407 0.0347514 0.0177381 Vertex 31407 0.0246827 0.0347978 0.0179097 Vertex 31408 0.0257679 0.0349257 0.0180133 Vertex 31409 0.0268545 0.0350543 0.018119 Vertex 31410 0.0279852 0.0352646 0.0181572 Vertex 31411 0.0292045 0.0356392 0.0180684 Vertex 31412 0.0303343 0.0358493 0.0181065 Vertex 31413 0.0315086 0.0361416 0.0180806 Vertex 31414 0.032773 0.036599 0.0179277 Vertex 31415 0.0339472 0.0368914 0.0179028 Vertex 31416 0.0352142 0.037348 0.0177424 Vertex 31417 0.0363875 0.037641 0.0177175 Vertex 31418 0.0376971 0.0381803 0.0174952 Vertex 31419 0.0390033 0.0387188 0.0172773 Vertex 31420 0.040265 0.0391745 0.017119 Vertex 31421 0.041574 0.0397142 0.0168995 Vertex 31422 0.0428913 0.0402636 0.016655 Vertex 31423 0.0443703 0.0410834 0.0161644 Vertex 31424 0.0455972 0.0415054 0.0160287 Vertex 31425 0.0470911 0.0422949 0.0155431 Vertex 31426 -0.0634886 0.064446 0.0291098 Vertex 31427 -0.0625249 0.0642497 0.029495 Vertex 31428 -0.0554146 0.0649279 0.0339175 Vertex 31429 -0.0562473 0.0708294 0.0392023 Vertex 31430 -0.0717761 0.0344583 0.000444464 Vertex 31431 -0.0709897 0.0340252 0.000991695 Vertex 31432 -0.0701237 0.0337481 0.00141754 Vertex 31433 -0.0691689 0.0336248 0.00172074 Vertex 31434 -0.0681764 0.0335792 0.00196619 Vertex 31435 -0.0671848 0.0335335 0.00220964 Vertex 31436 -0.0661916 0.0334877 0.00245273 Vertex 31437 -0.0652015 0.0334423 0.00269659 Vertex 31438 -0.0641668 0.0334738 0.00287677 Vertex 31439 -0.0631328 0.0335051 0.0030611 Vertex 31440 -0.0621388 0.0334692 0.00329381 Vertex 31441 -0.0610939 0.0335153 0.00346695 Vertex 31442 -0.0600964 0.0334795 0.00370066 Vertex 31443 -0.0590564 0.0335255 0.00387291 Vertex 31444 -0.0580565 0.0334897 0.00410791 Vertex 31445 -0.0570144 0.0335354 0.00427397 Vertex 31446 -0.0560167 0.0334996 0.00451355 Vertex 31447 -0.0549774 0.0335456 0.00467992 Vertex 31448 -0.053977 0.0335099 0.00491422 Vertex 31449 -0.0529375 0.0335557 0.00508499 Vertex 31450 -0.0519377 0.0335199 0.00532131 Vertex 31451 -0.0508978 0.0335658 0.00549258 Vertex 31452 -0.049902 0.0335302 0.00572664 Vertex 31453 -0.0489003 0.033496 0.00596365 Vertex 31454 -0.0478629 0.0335429 0.00613354 Vertex 31455 -0.0467321 0.0337537 0.00617309 Vertex 31456 -0.0457346 0.0337173 0.00640665 Vertex 31457 -0.0446441 0.0338442 0.00651202 Vertex 31458 -0.0436472 0.0338067 0.00674466 Vertex 31459 -0.0426076 0.0338549 0.0069173 Vertex 31460 -0.0416101 0.0338187 0.00715256 Vertex 31461 -0.0406116 0.0337811 0.00738645 Vertex 31462 -0.0396582 0.0336638 0.00768797 Vertex 31463 -0.0386619 0.0336282 0.00792475 Vertex 31464 -0.0376644 0.0335909 0.0081569 Vertex 31465 -0.0365789 0.0337187 0.00826156 Vertex 31466 -0.035582 0.0336826 0.00849877 Vertex 31467 -0.034538 0.033729 0.00866796 Vertex 31468 -0.0334968 0.033775 0.00883944 Vertex 31469 -0.0324992 0.033739 0.00907408 Vertex 31470 -0.0291577 0.0380555 0.005854 Vertex 31471 -0.0281559 0.0380199 0.00608926 Vertex 31472 -0.0270715 0.0381475 0.00619785 Vertex 31473 -0.0260288 0.0381935 0.00636573 Vertex 31474 -0.0250337 0.0381576 0.00660247 Vertex 31475 -0.0240342 0.0381218 0.00683415 Vertex 31476 -0.0229946 0.0381678 0.00700416 Vertex 31477 -0.0219522 0.0382139 0.00717586 Vertex 31478 -0.0209098 0.0382599 0.00734769 Vertex 31479 -0.0199096 0.0382242 0.00758286 Vertex 31480 -0.0188708 0.0382701 0.00775373 Vertex 31481 -0.0177853 0.0383982 0.00785589 Vertex 31482 -0.0168303 0.0382802 0.00815469 Vertex 31483 -0.0158317 0.0382446 0.00839116 Vertex 31484 -0.0147437 0.0383723 0.00849375 Vertex 31485 -0.0137494 0.0383366 0.00873382 Vertex 31486 -0.0127086 0.0383825 0.00890404 Vertex 31487 -0.0116637 0.0384284 0.00907266 Vertex 31488 -0.0106693 0.0383927 0.00930564 Vertex 31489 -0.00962665 0.0384388 0.00947704 Vertex 31490 -0.00858383 0.0384847 0.0096485 Vertex 31491 -0.00758439 0.038449 0.00988421 Vertex 31492 -0.00654578 0.0384949 0.010053 Vertex 31493 -0.0055446 0.0384588 0.0102869 Vertex 31494 -0.00455042 0.0384226 0.0105194 Vertex 31495 -0.00364368 0.038223 0.0108877 Vertex 31496 -0.00290962 0.037693 0.0115129 Vertex 31497 -0.00226785 0.0370021 0.0122687 Vertex 31498 -0.00162182 0.0363065 0.0130228 Vertex 31499 -0.0009793 0.0356154 0.0137824 Vertex 31500 -0.000245612 0.0350857 0.0144067 Vertex 31501 0.000574283 0.0347216 0.0149023 Vertex 31502 0.00144074 0.0344391 0.0153316 Vertex 31503 0.00239149 0.0343213 0.0156312 Vertex 31504 0.00334696 0.0342028 0.0159318 Vertex 31505 0.00429953 0.0340852 0.0162355 Vertex 31506 0.00534141 0.0341316 0.016402 Vertex 31507 0.00651507 0.0344231 0.0163793 Vertex 31508 0.00746772 0.0343056 0.0166757 Vertex 31509 0.0206783 0.0361727 0.0176735 Vertex 31510 0.0214998 0.0358071 0.0181694 Vertex 31511 0.0219696 0.0347867 0.0191885 Vertex 31512 0.022966 0.0347513 0.0194226 Vertex 31513 0.0240499 0.0348797 0.0195293 Vertex 31514 0.02514 0.0350088 0.0196342 Vertex 31515 0.0262687 0.0352193 0.019674 Vertex 31516 0.0274001 0.0354299 0.0197116 Vertex 31517 0.028615 0.035804 0.0196241 Vertex 31518 0.0297466 0.036015 0.0196643 Vertex 31519 0.0309645 0.0363887 0.0195722 Vertex 31520 0.0321413 0.0366814 0.019545 Vertex 31521 0.0333604 0.037057 0.0194583 Vertex 31522 0.0345357 0.0373492 0.0194302 Vertex 31523 0.0357976 0.0378059 0.0192762 Vertex 31524 0.0370616 0.0382621 0.0191175 Vertex 31525 0.0383256 0.0387198 0.0189634 Vertex 31526 0.0396296 0.0392572 0.0187428 Vertex 31527 0.0409378 0.0397959 0.0185201 Vertex 31528 0.0422463 0.0403355 0.0183005 Vertex 31529 0.0435663 0.0408867 0.018056 Vertex 31530 0.0449495 0.041538 0.0177108 Vertex 31531 0.0463327 0.0421886 0.017365 Vertex 31532 0.0476183 0.0426691 0.0171605 Vertex 31533 0.049239 0.0437392 0.0164633 Vertex 31534 -0.0679777 0.0716192 0.0360049 Vertex 31535 -0.0918605 0.116299 0.0240619 Vertex 31536 -0.0791517 0.0792478 0.0324066 Vertex 31537 -0.0730595 0.110042 0.0423406 Vertex 31538 -0.0728722 0.0355547 0.00103582 Vertex 31539 -0.0722117 0.0348867 0.00176609 Vertex 31540 -0.0715513 0.0342218 0.00249626 Vertex 31541 -0.0707251 0.033867 0.00298473 Vertex 31542 -0.0697706 0.0337438 0.00328799 Vertex 31543 -0.0687814 0.0336983 0.00353162 Vertex 31544 -0.0678317 0.0335757 0.00383638 Vertex 31545 -0.0668403 0.0335301 0.004077 Vertex 31546 -0.0658022 0.0335619 0.00426403 Vertex 31547 -0.0648114 0.0335165 0.00450366 Vertex 31548 -0.0637785 0.0335481 0.00468656 Vertex 31549 -0.0627873 0.0335028 0.00493012 Vertex 31550 -0.0617546 0.0335347 0.00511487 Vertex 31551 -0.0607177 0.0335659 0.00529637 Vertex 31552 -0.0597681 0.0334439 0.00560092 Vertex 31553 -0.0586839 0.0335669 0.00570948 Vertex 31554 -0.0576871 0.0335309 0.00594357 Vertex 31555 -0.0566909 0.0334951 0.00618234 Vertex 31556 -0.0556945 0.0334591 0.00641451 Vertex 31557 -0.0546971 0.0334232 0.00665025 Vertex 31558 -0.0536531 0.0334694 0.00682116 Vertex 31559 -0.0526104 0.0335154 0.00699108 Vertex 31560 -0.0516134 0.0334804 0.007228 Vertex 31561 -0.05057 0.0335281 0.00739754 Vertex 31562 -0.0493961 0.033823 0.00737414 Vertex 31563 -0.0481785 0.0341964 0.00728185 Vertex 31564 -0.0469177 0.0346518 0.0071269 Vertex 31565 -0.0458316 0.03478 0.00723173 Vertex 31566 -0.0447856 0.0348265 0.00740272 Vertex 31567 -0.0437453 0.0348723 0.00757323 Vertex 31568 -0.0427952 0.0347556 0.00787321 Vertex 31569 -0.0417964 0.0347181 0.00810808 Vertex 31570 -0.0408421 0.0345979 0.00840679 Vertex 31571 -0.0398903 0.0344806 0.00870734 Vertex 31572 -0.0389795 0.034282 0.00907489 Vertex 31573 -0.0380711 0.0340829 0.00944176 Vertex 31574 -0.0371614 0.0338798 0.00980443 Vertex 31575 -0.0362553 0.0336801 0.0101688 Vertex 31576 -0.0352581 0.0336435 0.0104036 Vertex 31577 -0.0341695 0.0337715 0.0105094 Vertex 31578 -0.0331266 0.0338175 0.0106794 Vertex 31579 -0.0321289 0.0337822 0.0109163 Vertex 31580 -0.0310017 0.0339922 0.010953 Vertex 31581 -0.0277909 0.0380629 0.00793761 Vertex 31582 -0.0267919 0.0380272 0.00817341 Vertex 31583 -0.0257516 0.0380733 0.00834253 Vertex 31584 -0.0247099 0.0381195 0.00851258 Vertex 31585 -0.0236663 0.0381653 0.00868472 Vertex 31586 -0.0226683 0.0381298 0.00891697 Vertex 31587 -0.021626 0.038176 0.00908889 Vertex 31588 -0.0205862 0.0382221 0.00925741 Vertex 31589 -0.0195451 0.0382679 0.00943 Vertex 31590 -0.0185478 0.0382321 0.00966598 Vertex 31591 -0.0175041 0.0382782 0.00983265 Vertex 31592 -0.0165056 0.0382425 0.0100681 Vertex 31593 -0.0154675 0.0382885 0.0102401 Vertex 31594 -0.014426 0.0383347 0.0104075 Vertex 31595 -0.0133824 0.0383808 0.0105781 Vertex 31596 -0.0123858 0.0383448 0.0108168 Vertex 31597 -0.0113851 0.0383094 0.011049 Vertex 31598 -0.0103013 0.038437 0.0111565 Vertex 31599 -0.00930377 0.0384012 0.0113924 Vertex 31600 -0.00826101 0.0384472 0.0115633 Vertex 31601 -0.0072649 0.0384115 0.0117959 Vertex 31602 -0.00622128 0.0384574 0.0119659 Vertex 31603 -0.00522459 0.0384215 0.0122026 Vertex 31604 -0.00422659 0.0383846 0.0124357 Vertex 31605 -0.0033633 0.038102 0.0128662 Vertex 31606 -0.00267666 0.0374926 0.0135597 Vertex 31607 -0.00198691 0.0368792 0.0142478 Vertex 31608 -0.00134429 0.0361889 0.0150058 Vertex 31609 -0.000612836 0.0356605 0.0156316 Vertex 31610 0.000120368 0.0351316 0.0162576 Vertex 31611 0.000942621 0.0347668 0.0167534 Vertex 31612 0.00184795 0.0345666 0.017115 Vertex 31613 0.00275941 0.0343655 0.0174794 Vertex 31614 0.00375967 0.0343287 0.0177156 Vertex 31615 0.00466954 0.0341296 0.0180802 Vertex 31616 0.00570986 0.0341754 0.0182505 Vertex 31617 0.0067064 0.0341407 0.0184863 Vertex 31618 0.00810435 0.0348429 0.0181346 Vertex 31619 0.00910286 0.0348066 0.0183719 Vertex 31620 0.0100949 0.034771 0.018605 Vertex 31621 0.0189601 0.036126 0.0191857 Vertex 31622 0.0194741 0.0351845 0.0201392 Vertex 31623 0.0202497 0.0347399 0.020698 Vertex 31624 0.021293 0.0347861 0.0208687 Vertex 31625 0.0223322 0.0348324 0.0210401 Vertex 31626 0.0234195 0.0349614 0.0211471 Vertex 31627 0.0245482 0.035172 0.0211866 Vertex 31628 0.0256796 0.0353829 0.0212256 Vertex 31629 0.0268986 0.0357578 0.0211357 Vertex 31630 0.0280721 0.0360499 0.0211097 Vertex 31631 0.0292911 0.0364248 0.021021 Vertex 31632 0.0304203 0.0366341 0.0210583 Vertex 31633 0.031639 0.0370094 0.0209702 Vertex 31634 0.0328168 0.0373031 0.0209449 Vertex 31635 0.034036 0.037677 0.020853 Vertex 31636 0.0352097 0.0379704 0.0208298 Vertex 31637 0.0364745 0.0384289 0.0206775 Vertex 31638 0.0377365 0.0388851 0.0205214 Vertex 31639 0.0389971 0.039341 0.0203664 Vertex 31640 0.0403042 0.0398794 0.0201445 Vertex 31641 0.0416155 0.0404142 0.0199255 Vertex 31642 0.0429111 0.040977 0.0196984 Vertex 31643 0.0442879 0.0415947 0.0193873 Vertex 31644 0.0456202 0.0421608 0.019117 Vertex 31645 0.0469552 0.0427274 0.0188429 Vertex 31646 0.0482658 0.0433313 0.0185611 Vertex 31647 0.0499211 0.0443554 0.0178724 Vertex 31648 -0.0750729 0.0675817 0.0186826 Vertex 31649 -0.0742444 0.0756609 0.0347079 Vertex 31650 -0.0698715 0.11424 0.0504282 Vertex 31651 -0.0682155 0.0787029 0.0404793 Vertex 31652 -0.0710555 0.148357 -0.0346175 Vertex 31653 -0.072483 0.0356257 0.00284128 Vertex 31654 -0.0719858 0.0346482 0.00381826 Vertex 31655 -0.0712039 0.0342165 0.00436442 Vertex 31656 -0.070335 0.0339385 0.00479187 Vertex 31657 -0.0694247 0.0337382 0.00515427 Vertex 31658 -0.0684331 0.0336931 0.00540027 Vertex 31659 -0.0674387 0.0336478 0.00564073 Vertex 31660 -0.0664067 0.0336797 0.00582425 Vertex 31661 -0.0654153 0.0336345 0.00606909 Vertex 31662 -0.0644245 0.0335892 0.00631261 Vertex 31663 -0.0633881 0.0336212 0.00649796 Vertex 31664 -0.0623969 0.0335761 0.00673913 Vertex 31665 -0.061361 0.0336079 0.00692461 Vertex 31666 -0.0603733 0.0335628 0.0071663 Vertex 31667 -0.0593798 0.0335176 0.00740926 Vertex 31668 -0.058347 0.0335497 0.00759386 Vertex 31669 -0.0573551 0.0335045 0.00783858 Vertex 31670 -0.0563218 0.0335364 0.00802021 Vertex 31671 -0.0553241 0.0335005 0.00825618 Vertex 31672 -0.0543235 0.0334648 0.00849253 Vertex 31673 -0.0532836 0.0335112 0.0086601 Vertex 31674 -0.0521978 0.0336397 0.008764 Vertex 31675 -0.0510223 0.0339346 0.00874224 Vertex 31676 -0.0498071 0.0343093 0.00865348 Vertex 31677 -0.0484523 0.0349311 0.00836568 Vertex 31678 -0.0471043 0.0355495 0.00808039 Vertex 31679 -0.0459741 0.03576 0.00812075 Vertex 31680 -0.0449324 0.0358062 0.00829108 Vertex 31681 -0.0438465 0.0359346 0.00839642 Vertex 31682 -0.0428932 0.0358165 0.00869673 Vertex 31683 -0.0419398 0.0356984 0.00899705 Vertex 31684 -0.0409865 0.0355803 0.00929737 Vertex 31685 -0.0400291 0.0354632 0.00960076 Vertex 31686 -0.0390753 0.0353444 0.00990175 Vertex 31687 -0.0381696 0.0351458 0.0102677 Vertex 31688 -0.0373475 0.0347779 0.0107604 Vertex 31689 -0.036529 0.0344176 0.0112583 Vertex 31690 -0.0357073 0.03405 0.0117511 Vertex 31691 -0.0348878 0.0336855 0.0122448 Vertex 31692 -0.0338438 0.0337316 0.012415 Vertex 31693 -0.0328471 0.033696 0.0126517 Vertex 31694 -0.0317622 0.0338243 0.0127586 Vertex 31695 -0.0305886 0.0341169 0.0127308 Vertex 31696 -0.0275114 0.0379423 0.00991362 Vertex 31697 -0.0264689 0.0379883 0.0100865 Vertex 31698 -0.0254714 0.0379526 0.0103195 Vertex 31699 -0.0244307 0.0379986 0.0104913 Vertex 31700 -0.0233871 0.0380454 0.010662 Vertex 31701 -0.0223034 0.0381733 0.0107634 Vertex 31702 -0.0213027 0.0381376 0.0110019 Vertex 31703 -0.020264 0.0381835 0.0111715 Vertex 31704 -0.0192664 0.0381478 0.0114056 Vertex 31705 -0.0182228 0.038194 0.0115761 Vertex 31706 -0.0171825 0.0382402 0.011747 Vertex 31707 -0.016138 0.0382862 0.0119165 Vertex 31708 -0.0151399 0.0382506 0.0121533 Vertex 31709 -0.0141005 0.0382966 0.0123251 Vertex 31710 -0.013105 0.0382607 0.0125563 Vertex 31711 -0.0120612 0.0383071 0.0127308 Vertex 31712 -0.0110203 0.0383532 0.0129011 Vertex 31713 -0.0100211 0.0383173 0.0131334 Vertex 31714 -0.0089791 0.0383636 0.0133044 Vertex 31715 -0.00793663 0.0384098 0.0134736 Vertex 31716 -0.00689488 0.0384553 0.0136435 Vertex 31717 -0.00594273 0.0383379 0.0139478 Vertex 31718 -0.00490321 0.0383839 0.0141185 Vertex 31719 -0.00390558 0.0383472 0.0143493 Vertex 31720 -0.00308793 0.0379842 0.0148477 Vertex 31721 -0.0023107 0.0375379 0.0154093 Vertex 31722 -0.00162211 0.0369274 0.0160989 Vertex 31723 -0.000932932 0.0363158 0.0167895 Vertex 31724 -0.000201542 0.0357861 0.0174114 Vertex 31725 0.000576288 0.0353387 0.0179719 Vertex 31726 0.00144009 0.0350568 0.0184024 Vertex 31727 0.00226448 0.0346925 0.0189009 Vertex 31728 0.00321341 0.034575 0.0192003 Vertex 31729 0.00416774 0.034456 0.0194982 Vertex 31730 0.00516452 0.0344202 0.0197338 Vertex 31731 0.00616601 0.0343841 0.0199712 Vertex 31732 0.00716348 0.0343484 0.0202029 Vertex 31733 0.00820576 0.0343954 0.0203732 Vertex 31734 0.00937824 0.0346871 0.0203526 Vertex 31735 0.0105059 0.0348976 0.020389 Vertex 31736 0.0114636 0.0347788 0.020691 Vertex 31737 0.0124134 0.0346609 0.020994 Vertex 31738 0.0132792 0.0343795 0.0214237 Vertex 31739 0.0143227 0.0344255 0.0215932 Vertex 31740 0.0153617 0.0344714 0.021761 Vertex 31741 0.0164071 0.0345184 0.0219352 Vertex 31742 0.0174901 0.0346463 0.0220409 Vertex 31743 0.018535 0.0346925 0.0222104 Vertex 31744 0.0195769 0.0347391 0.0223805 Vertex 31745 0.0206619 0.0348672 0.0224824 Vertex 31746 0.021748 0.0349954 0.0225893 Vertex 31747 0.0227878 0.0350417 0.0227582 Vertex 31748 0.0239206 0.0352552 0.0228022 Vertex 31749 0.0251821 0.0357118 0.0226481 Vertex 31750 0.0264019 0.036087 0.0225582 Vertex 31751 0.0276204 0.0364605 0.0224657 Vertex 31752 0.0288353 0.0368345 0.0223773 Vertex 31753 0.0299649 0.0370453 0.0224182 Vertex 31754 0.0311432 0.0373381 0.0223917 Vertex 31755 0.0323169 0.0376319 0.0223694 Vertex 31756 0.0335354 0.0380053 0.0222769 Vertex 31757 0.034711 0.0383001 0.0222555 Vertex 31758 0.0359289 0.0386712 0.0221633 Vertex 31759 0.0371924 0.0391306 0.0220088 Vertex 31760 0.0384543 0.0395883 0.0218564 Vertex 31761 0.0397169 0.0400457 0.0217023 Vertex 31762 0.0409735 0.0405135 0.0215425 Vertex 31763 0.0423699 0.0412112 0.0211935 Vertex 31764 0.0436181 0.0416961 0.0210317 Vertex 31765 0.0450509 0.0423962 0.0206492 Vertex 31766 0.0463347 0.0428813 0.020444 Vertex 31767 0.0477223 0.0435274 0.0201079 Vertex 31768 0.0491837 0.0442045 0.019604 Vertex 31769 0.050668 0.0451751 0.0191374 Vertex 31770 -0.0551501 0.0641879 0.0328568 Vertex 31771 -0.0839617 0.114292 0.0471508 Vertex 31772 -0.081144 0.11 0.0405445 Vertex 31773 -0.0899229 0.115405 0.0270455 Vertex 31774 -0.0723413 0.0352299 0.00501169 Vertex 31775 -0.0717212 0.0344863 0.00580157 Vertex 31776 -0.0708965 0.0341323 0.00629169 Vertex 31777 -0.069983 0.033931 0.00665746 Vertex 31778 -0.0690346 0.0338087 0.00696066 Vertex 31779 -0.0680436 0.0337635 0.00720288 Vertex 31780 -0.0670064 0.0337953 0.0073865 Vertex 31781 -0.0660587 0.0336733 0.00769062 Vertex 31782 -0.0650248 0.0337055 0.00787315 Vertex 31783 -0.0640324 0.0336604 0.00811729 Vertex 31784 -0.0630392 0.0336157 0.00836468 Vertex 31785 -0.0620051 0.0336477 0.00854436 Vertex 31786 -0.0610145 0.0336026 0.00878975 Vertex 31787 -0.0600247 0.0335577 0.00903367 Vertex 31788 -0.0589877 0.0335902 0.00921609 Vertex 31789 -0.0579584 0.0336225 0.00939861 Vertex 31790 -0.0569634 0.0335771 0.00964709 Vertex 31791 -0.0560128 0.0334549 0.00994988 Vertex 31792 -0.0549804 0.0334872 0.0101333 Vertex 31793 -0.0539473 0.03352 0.0103166 Vertex 31794 -0.0527782 0.0338002 0.0103069 Vertex 31795 -0.0513379 0.0345855 0.00988953 Vertex 31796 -0.0501691 0.0348773 0.00986405 Vertex 31797 -0.0485971 0.0359097 0.00925535 Vertex 31798 -0.039222 0.0363262 0.0107899 Vertex 31799 -0.0383571 0.0360437 0.0112202 Vertex 31800 -0.0375341 0.0356789 0.0117182 Vertex 31801 -0.0367133 0.0353138 0.0122122 Vertex 31802 -0.0358508 0.0350331 0.0126434 Vertex 31803 -0.0351624 0.0344214 0.0133327 Vertex 31804 -0.0344283 0.0338921 0.0139586 Vertex 31805 -0.0334735 0.0337737 0.0142583 Vertex 31806 -0.0324783 0.0337381 0.0144953 Vertex 31807 -0.0313891 0.0338671 0.0146006 Vertex 31808 -0.0303071 0.0339954 0.0147064 Vertex 31809 -0.0271872 0.0379033 0.0118238 Vertex 31810 -0.0261434 0.0379494 0.0119939 Vertex 31811 -0.0251492 0.0379137 0.0122303 Vertex 31812 -0.0241505 0.0378782 0.0124647 Vertex 31813 -0.0230202 0.0380885 0.0125034 Vertex 31814 -0.0219797 0.0381347 0.0126751 Vertex 31815 -0.0209361 0.0381808 0.0128466 Vertex 31816 -0.0199407 0.0381449 0.0130842 Vertex 31817 -0.0188968 0.0381911 0.0132528 Vertex 31818 -0.017901 0.0381554 0.0134869 Vertex 31819 -0.0168597 0.0382017 0.0136589 Vertex 31820 -0.0158173 0.038248 0.0138275 Vertex 31821 -0.0147745 0.0382944 0.014 Vertex 31822 -0.0137336 0.0383402 0.0141683 Vertex 31823 -0.0127796 0.0382227 0.0144711 Vertex 31824 -0.0116952 0.0383509 0.0145738 Vertex 31825 -0.01065 0.0383969 0.0147482 Vertex 31826 -0.00965298 0.0383614 0.0149817 Vertex 31827 -0.00861288 0.0384077 0.0151551 Vertex 31828 -0.00757253 0.0384534 0.015324 Vertex 31829 -0.00662043 0.0383357 0.0156226 Vertex 31830 -0.00557531 0.0383818 0.0157938 Vertex 31831 -0.00457894 0.0383459 0.0160278 Vertex 31832 -0.00358231 0.0383094 0.0162632 Vertex 31833 -0.00271812 0.0380275 0.0166967 Vertex 31834 -0.00189869 0.037664 0.017192 Vertex 31835 -0.00116523 0.0371346 0.0178171 Vertex 31836 -0.000433486 0.0366062 0.0184413 Vertex 31837 0.000300027 0.0360761 0.019065 Vertex 31838 0.00112155 0.035712 0.0195623 Vertex 31839 0.00194178 0.0353485 0.0200578 Vertex 31840 0.00280759 0.0350639 0.0204847 Vertex 31841 0.00371617 0.0348648 0.0208524 Vertex 31842 0.00467021 0.0347458 0.0211501 Vertex 31843 0.00562336 0.034628 0.021452 Vertex 31844 0.00657766 0.034511 0.0217547 Vertex 31845 0.00761699 0.0345564 0.0219225 Vertex 31846 0.00861514 0.0345206 0.0221572 Vertex 31847 0.00965733 0.0345667 0.0223294 Vertex 31848 0.0106556 0.0345311 0.0225637 Vertex 31849 0.0116984 0.034577 0.0227351 Vertex 31850 0.0126937 0.0345417 0.0229719 Vertex 31851 0.0137785 0.0346695 0.0230735 Vertex 31852 0.0147782 0.034634 0.0233109 Vertex 31853 0.01582 0.0346802 0.0234839 Vertex 31854 0.0168587 0.0347265 0.0236529 Vertex 31855 0.0179003 0.0347727 0.0238228 Vertex 31856 0.0189449 0.0348191 0.0239933 Vertex 31857 0.0199862 0.0348656 0.0241629 Vertex 31858 0.0210708 0.0349944 0.0242708 Vertex 31859 0.0222032 0.0352055 0.0243097 Vertex 31860 0.0233331 0.0354178 0.02435 Vertex 31861 0.0246817 0.0360382 0.0240669 Vertex 31862 0.0259452 0.0364961 0.0239139 Vertex 31863 0.0271613 0.0368693 0.0238228 Vertex 31864 0.028338 0.0371627 0.023798 Vertex 31865 0.0295573 0.0375392 0.0237122 Vertex 31866 0.0306859 0.0377485 0.0237503 Vertex 31867 0.0318729 0.0380045 0.0237472 Vertex 31868 0.033081 0.038417 0.0236373 Vertex 31869 0.0342539 0.0387023 0.0236157 Vertex 31870 0.0354747 0.0390827 0.0235255 Vertex 31871 0.0366896 0.0394563 0.0234361 Vertex 31872 0.0379075 0.0398433 0.0233434 Vertex 31873 0.0391712 0.0402919 0.0231925 Vertex 31874 0.0404724 0.0408436 0.0229665 Vertex 31875 0.0417801 0.041383 0.0227466 Vertex 31876 0.0431361 0.0419917 0.0224684 Vertex 31877 0.0444404 0.0425371 0.0222477 Vertex 31878 0.0457689 0.0431024 0.0219801 Vertex 31879 0.0471472 0.0437632 0.0216364 Vertex 31880 0.0484812 0.0443317 0.021366 Vertex 31881 0.0499661 0.0451421 0.0208878 Vertex 31882 0.051506 0.0461707 0.0202521 Vertex 31883 -0.0721635 0.113702 0.0503204 Vertex 31884 -0.0556472 0.0657358 0.0349277 Vertex 31885 -0.089438 0.113514 0.0412091 Vertex 31886 -0.0616258 0.0641254 0.029779 Vertex 31887 -0.0728598 0.0355014 0.00645302 Vertex 31888 -0.0713326 0.0345571 0.00760774 Vertex 31889 -0.0705055 0.0342009 0.00809348 Vertex 31890 -0.0695561 0.0340783 0.00839793 Vertex 31891 -0.0686026 0.0339552 0.0087048 Vertex 31892 -0.0676508 0.0338326 0.0090061 Vertex 31893 -0.0666201 0.0338653 0.00919115 Vertex 31894 -0.0656682 0.0337431 0.00949839 Vertex 31895 -0.0646344 0.0337755 0.00968147 Vertex 31896 -0.0636401 0.0337302 0.00992182 Vertex 31897 -0.0626529 0.0336856 0.0101657 Vertex 31898 -0.0616148 0.0337181 0.0103501 Vertex 31899 -0.0606264 0.0336734 0.0105944 Vertex 31900 -0.0596345 0.0336285 0.0108415 Vertex 31901 -0.0586426 0.0335837 0.0110854 Vertex 31902 -0.0576072 0.0336162 0.0112663 Vertex 31903 -0.0566151 0.0335713 0.0115144 Vertex 31904 -0.0556243 0.0335264 0.0117574 Vertex 31905 -0.0546337 0.0334816 0.0119976 Vertex 31906 -0.0535552 0.0335918 0.0121227 Vertex 31907 -0.0525671 0.0335472 0.0123651 Vertex 31908 -0.036902 0.0362143 0.0131672 Vertex 31909 -0.0360812 0.0358497 0.0136623 Vertex 31910 -0.0353932 0.0352385 0.0143534 Vertex 31911 -0.0348821 0.0342989 0.0153052 Vertex 31912 -0.0341485 0.0337694 0.0159272 Vertex 31913 -0.0331056 0.0338156 0.0161014 Vertex 31914 -0.0321091 0.03378 0.0163326 Vertex 31915 -0.0309771 0.0339917 0.0163773 Vertex 31916 -0.0298032 0.034287 0.0163531 Vertex 31917 -0.0268606 0.0378639 0.0137313 Vertex 31918 -0.0258626 0.0378286 0.0139698 Vertex 31919 -0.0247788 0.0379568 0.0140716 Vertex 31920 -0.0237394 0.038003 0.0142418 Vertex 31921 -0.0226958 0.0380494 0.0144148 Vertex 31922 -0.0216559 0.0380957 0.0145856 Vertex 31923 -0.0206145 0.038142 0.0147556 Vertex 31924 -0.0196125 0.0381064 0.0149924 Vertex 31925 -0.0185746 0.0381525 0.0151621 Vertex 31926 -0.0175293 0.038199 0.0153321 Vertex 31927 -0.0164885 0.0382449 0.0155037 Vertex 31928 -0.0154921 0.0382096 0.0157388 Vertex 31929 -0.0144087 0.0383376 0.0158464 Vertex 31930 -0.0134078 0.0383017 0.0160824 Vertex 31931 -0.012412 0.0382658 0.0163183 Vertex 31932 -0.0114161 0.0382303 0.016554 Vertex 31933 -0.0103272 0.0383585 0.0166568 Vertex 31934 -0.00933224 0.038323 0.0168951 Vertex 31935 -0.00824401 0.0384507 0.0170014 Vertex 31936 -0.00729397 0.0383333 0.0172997 Vertex 31937 -0.00625132 0.0383797 0.0174726 Vertex 31938 -0.00521106 0.038426 0.0176436 Vertex 31939 -0.00421023 0.0383902 0.0178766 Vertex 31940 -0.0031698 0.0384355 0.0180459 Vertex 31941 -0.00226303 0.0382357 0.0184109 Vertex 31942 -0.00144097 0.0378708 0.018909 Vertex 31943 -0.000666067 0.037425 0.0194672 Vertex 31944 0.000110958 0.036978 0.020027 Vertex 31945 0.000886988 0.0365316 0.0205866 Vertex 31946 0.00170937 0.0361659 0.0210822 Vertex 31947 0.00252859 0.0358017 0.021576 Vertex 31948 0.00339585 0.0355203 0.0220096 Vertex 31949 0.00426025 0.0352382 0.0224392 Vertex 31950 0.00517049 0.0350387 0.0228068 Vertex 31951 0.00607582 0.0348373 0.023168 Vertex 31952 0.00707409 0.0348007 0.0234037 Vertex 31953 0.00802743 0.0346823 0.0237027 Vertex 31954 0.00902499 0.0346466 0.0239397 Vertex 31955 0.0100266 0.0346111 0.0241784 Vertex 31956 0.0110654 0.0346569 0.0243461 Vertex 31957 0.0120628 0.0346214 0.0245844 Vertex 31958 0.0131057 0.0346676 0.0247536 Vertex 31959 0.0141489 0.0347135 0.0249225 Vertex 31960 0.015143 0.0346779 0.0251566 Vertex 31961 0.0161851 0.0347246 0.0253316 Vertex 31962 0.0172719 0.0348529 0.0254373 Vertex 31963 0.0183138 0.0348993 0.0256062 Vertex 31964 0.0193537 0.0349459 0.0257791 Vertex 31965 0.0204425 0.0350747 0.0258809 Vertex 31966 0.0215692 0.0352857 0.025924 Vertex 31967 0.0228318 0.0357435 0.0257706 Vertex 31968 0.0241838 0.0363666 0.0254891 Vertex 31969 0.0254917 0.0369057 0.0252691 Vertex 31970 0.0267764 0.0373043 0.025139 Vertex 31971 0.0279341 0.0376089 0.0251213 Vertex 31972 0.0291629 0.037982 0.025034 Vertex 31973 0.0303318 0.0382842 0.0249985 Vertex 31974 0.0314957 0.0386039 0.0249642 Vertex 31975 0.0326729 0.0388984 0.0249367 Vertex 31976 0.0338414 0.0392101 0.0249005 Vertex 31977 0.0350676 0.0395586 0.0248293 Vertex 31978 0.0362342 0.0398741 0.0247937 Vertex 31979 0.0374488 0.0402522 0.0247009 Vertex 31980 0.0387128 0.0407096 0.0245464 Vertex 31981 0.0399282 0.041091 0.0244564 Vertex 31982 0.0412731 0.0417215 0.0241695 Vertex 31983 0.04258 0.0422624 0.0239479 Vertex 31984 0.0439336 0.0428821 0.0236685 Vertex 31985 0.0451952 0.0433405 0.023507 Vertex 31986 0.0465716 0.0440008 0.0231655 Vertex 31987 0.0480114 0.0447211 0.0227621 Vertex 31988 0.0493794 0.0453908 0.0224152 Vertex 31989 0.0509675 0.0463703 0.0218015 Vertex 31990 -0.0510235 0.0723937 0.0407728 Vertex 31991 -0.0807265 0.0770568 0.0269252 Vertex 31992 -0.0680426 0.110046 0.0381289 Vertex 31993 -0.0684679 0.110537 0.0393979 Vertex 31994 -0.0801928 0.109885 0.0408487 Vertex 31995 -0.0497993 0.0677848 0.0379447 Vertex 31996 -0.0708605 0.0347825 0.00928864 Vertex 31997 -0.0699903 0.034504 0.00971713 Vertex 31998 -0.0690811 0.0343024 0.0100819 Vertex 31999 -0.0681688 0.0340999 0.0104427 Vertex 32000 -0.0672224 0.0339784 0.0107486 Vertex 32001 -0.0662305 0.0339335 0.0109932 Vertex 32002 -0.0652333 0.0338884 0.0112389 Vertex 32003 -0.0642433 0.0338438 0.0114826 Vertex 32004 -0.0632514 0.033799 0.0117273 Vertex 32005 -0.0622597 0.0337543 0.0119702 Vertex 32006 -0.0612693 0.0337096 0.0122134 Vertex 32007 -0.0602752 0.0336649 0.0124615 Vertex 32008 -0.0592845 0.0336203 0.0127024 Vertex 32009 -0.0582482 0.0336534 0.0128901 Vertex 32010 -0.057217 0.0336859 0.0130711 Vertex 32011 -0.0562656 0.0335637 0.0133743 Vertex 32012 -0.0552728 0.0335199 0.0136226 Vertex 32013 -0.054161 0.0337073 0.0136843 Vertex 32014 -0.0532105 0.0335853 0.013987 Vertex 32015 -0.0357116 0.0358916 0.0155029 Vertex 32016 -0.0353308 0.0347033 0.016646 Vertex 32017 -0.0346452 0.0340944 0.0173387 Vertex 32018 -0.0337749 0.0338108 0.0177666 Vertex 32019 -0.0327797 0.0337757 0.0180041 Vertex 32020 -0.03165 0.0339865 0.0180432 Vertex 32021 -0.0304761 0.0342807 0.0180201 Vertex 32022 -0.0288615 0.0353967 0.01735 Vertex 32023 -0.0265805 0.0377426 0.0157053 Vertex 32024 -0.0255422 0.0377889 0.0158759 Vertex 32025 -0.0244115 0.0379996 0.0159179 Vertex 32026 -0.0233699 0.0380458 0.0160874 Vertex 32027 -0.0223732 0.03801 0.0163235 Vertex 32028 -0.0212837 0.0381384 0.0164325 Vertex 32029 -0.0202897 0.0381028 0.016664 Vertex 32030 -0.019245 0.0381493 0.0168345 Vertex 32031 -0.0182052 0.0381955 0.0170088 Vertex 32032 -0.0171621 0.0382418 0.0171791 Vertex 32033 -0.0161652 0.0382063 0.017415 Vertex 32034 -0.0151264 0.0382524 0.0175843 Vertex 32035 -0.0140843 0.0382987 0.0177555 Vertex 32036 -0.013087 0.0382629 0.0179922 Vertex 32037 -0.0120858 0.0382274 0.0182274 Vertex 32038 -0.0110467 0.0382737 0.0183997 Vertex 32039 -0.010004 0.0383201 0.0185669 Vertex 32040 -0.00896496 0.0383664 0.01874 Vertex 32041 -0.00792408 0.0384127 0.0189094 Vertex 32042 -0.00692431 0.038377 0.0191445 Vertex 32043 -0.00588211 0.0384235 0.0193174 Vertex 32044 -0.00484252 0.0384695 0.0194856 Vertex 32045 -0.00384396 0.0384339 0.019723 Vertex 32046 -0.00280426 0.0384802 0.0198949 Vertex 32047 -0.00180556 0.0384438 0.0201303 Vertex 32048 -0.000943594 0.0381622 0.0205587 Vertex 32049 -7.52397e-05 0.037877 0.020989 Vertex 32050 0.000700235 0.0374335 0.0215506 Vertex 32051 0.00152244 0.03707 0.0220484 Vertex 32052 0.00234204 0.0367065 0.0225428 Vertex 32053 0.00320624 0.036422 0.0229702 Vertex 32054 0.00407218 0.0361395 0.0234015 Vertex 32055 0.00493694 0.0358587 0.023833 Vertex 32056 0.00579995 0.0355749 0.0242599 Vertex 32057 0.0067112 0.0353739 0.0246266 Vertex 32058 0.00757449 0.035092 0.025056 Vertex 32059 0.00852647 0.0349744 0.0253569 Vertex 32060 0.0094823 0.034855 0.0256576 Vertex 32061 0.0104354 0.0347372 0.0259595 Vertex 32062 0.011433 0.034701 0.0261941 Vertex 32063 0.0124741 0.0347469 0.026362 Vertex 32064 0.0134712 0.0347114 0.0266012 Vertex 32065 0.0145126 0.0347575 0.026768 Vertex 32066 0.0155546 0.034804 0.0269401 Vertex 32067 0.0165976 0.0348504 0.0271124 Vertex 32068 0.0176377 0.0348968 0.0272836 Vertex 32069 0.0187266 0.0350257 0.0273865 Vertex 32070 0.019812 0.035154 0.0274956 Vertex 32071 0.0208523 0.0352023 0.0276656 Vertex 32072 0.0222487 0.0359069 0.0273161 Vertex 32073 0.0236405 0.0366106 0.026972 Vertex 32074 0.0249936 0.037232 0.0266864 Vertex 32075 0.0262747 0.0376552 0.0265482 Vertex 32076 0.0274875 0.0380349 0.0264602 Vertex 32077 0.0287985 0.0385521 0.0262584 Vertex 32078 0.0300144 0.0389449 0.0261617 Vertex 32079 0.0312265 0.0393227 0.0260732 Vertex 32080 0.0323984 0.0396183 0.0260504 Vertex 32081 0.0335191 0.0398635 0.0260657 Vertex 32082 0.0346942 0.0401467 0.0260507 Vertex 32083 0.0358665 0.0404526 0.0260172 Vertex 32084 0.0370832 0.0408236 0.0259314 Vertex 32085 0.0383075 0.041189 0.0258499 Vertex 32086 0.0395145 0.0415874 0.025748 Vertex 32087 0.0408171 0.04213 0.0255289 Vertex 32088 0.0421622 0.0427592 0.0252421 Vertex 32089 0.0435234 0.0433666 0.0249665 Vertex 32090 0.0447739 0.0438422 0.0248039 Vertex 32091 0.046038 0.044353 0.0245911 Vertex 32092 0.0475361 0.0451237 0.0241502 Vertex 32093 0.0489522 0.045877 0.023734 Vertex 32094 -0.0743185 0.067053 0.0192856 Vertex 32095 -0.0733752 0.0741466 0.034437 Vertex 32096 -0.052801 0.0690675 0.0379843 Vertex 32097 -0.0844174 0.110829 0.0409213 Vertex 32098 -0.0834627 0.110719 0.0412267 Vertex 32099 -0.0667678 0.0695012 0.0345692 Vertex 32100 -0.0606782 0.0639978 0.0300882 Vertex 32101 -0.0854845 0.112639 0.0445732 Vertex 32102 -0.0736187 0.0665006 0.01992 Vertex 32103 -0.0694333 0.0348816 0.0112742 Vertex 32104 -0.0685657 0.0346013 0.0116976 Vertex 32105 -0.0676574 0.0344024 0.0120657 Vertex 32106 -0.0667452 0.0342007 0.0124321 Vertex 32107 -0.0657975 0.0340784 0.0127357 Vertex 32108 -0.0648434 0.0339553 0.0130374 Vertex 32109 -0.0638124 0.0339885 0.0132249 Vertex 32110 -0.0628603 0.033866 0.0135258 Vertex 32111 -0.0618709 0.0338217 0.0137712 Vertex 32112 -0.0608764 0.033777 0.0140174 Vertex 32113 -0.0598831 0.0337324 0.0142605 Vertex 32114 -0.0588955 0.0336882 0.0145047 Vertex 32115 -0.0579004 0.0336435 0.0147513 Vertex 32116 -0.0569109 0.033599 0.014995 Vertex 32117 -0.0559192 0.0335546 0.0152404 Vertex 32118 -0.0548859 0.0335879 0.0154264 Vertex 32119 -0.054019 0.0333099 0.015848 Vertex 32120 -0.0357817 0.0351096 0.0179926 Vertex 32121 -0.0350925 0.0344983 0.0186791 Vertex 32122 -0.0343155 0.0340522 0.0192395 Vertex 32123 -0.0333602 0.0339348 0.0195439 Vertex 32124 -0.0323193 0.0339823 0.0197127 Vertex 32125 -0.0311024 0.0343581 0.019624 Vertex 32126 -0.0296224 0.0352251 0.019146 Vertex 32127 -0.0272554 0.0377383 0.0173779 Vertex 32128 -0.0261669 0.0378674 0.0174813 Vertex 32129 -0.0250833 0.0379957 0.0175874 Vertex 32130 -0.0240392 0.0380418 0.0177619 Vertex 32131 -0.0230427 0.038006 0.0179945 Vertex 32132 -0.0220481 0.0379707 0.0182323 Vertex 32133 -0.0209608 0.0380992 0.0183358 Vertex 32134 -0.0199202 0.0381456 0.0185107 Vertex 32135 -0.0188798 0.0381919 0.018679 Vertex 32136 -0.0178783 0.0381567 0.0189161 Vertex 32137 -0.0167974 0.0382847 0.0190235 Vertex 32138 -0.0157973 0.0382489 0.019257 Vertex 32139 -0.0147995 0.0382136 0.0194957 Vertex 32140 -0.0137598 0.0382596 0.0196658 Vertex 32141 -0.0127602 0.0382241 0.0199007 Vertex 32142 -0.0117218 0.0382705 0.0200729 Vertex 32143 -0.0106785 0.0383169 0.0202432 Vertex 32144 -0.00963566 0.0383633 0.0204127 Vertex 32145 -0.00859312 0.0384098 0.0205847 Vertex 32146 -0.00755399 0.0384559 0.0207545 Vertex 32147 -0.00655639 0.0384205 0.0209905 Vertex 32148 -0.00547292 0.0385489 0.021098 Vertex 32149 -0.00447426 0.0385132 0.0213354 Vertex 32150 -0.00343172 0.0385593 0.0215021 Vertex 32151 -0.00243741 0.0385239 0.0217416 Vertex 32152 -0.00139541 0.0385701 0.0219096 Vertex 32153 -0.000398103 0.0385343 0.0221462 Vertex 32154 0.00051428 0.0383337 0.0225142 Vertex 32155 0.00137655 0.0380516 0.0229424 Vertex 32156 0.00219675 0.0376886 0.0234384 Vertex 32157 0.00306398 0.0374048 0.023868 Vertex 32158 0.00392744 0.0371222 0.0242968 Vertex 32159 0.00474777 0.0367585 0.0247919 Vertex 32160 0.00565547 0.0365592 0.0251573 Vertex 32161 0.00652169 0.0362747 0.0255863 Vertex 32162 0.00738689 0.0359942 0.0260187 Vertex 32163 0.00825384 0.0357096 0.0264477 Vertex 32164 0.00916248 0.0355108 0.0268151 Vertex 32165 0.0100263 0.0352289 0.0272451 Vertex 32166 0.0109368 0.035027 0.0276086 Vertex 32167 0.0118903 0.0349087 0.0279111 Vertex 32168 0.0128412 0.0347905 0.0282102 Vertex 32169 0.0138852 0.0348367 0.0283807 Vertex 32170 0.0148813 0.0348012 0.0286151 Vertex 32171 0.0159216 0.0348476 0.0287894 Vertex 32172 0.0169629 0.0348939 0.0289563 Vertex 32173 0.018008 0.0349409 0.0291289 Vertex 32174 0.019092 0.0350694 0.0292369 Vertex 32175 0.0201781 0.0351992 0.0293411 Vertex 32176 0.0215711 0.035903 0.0289947 Vertex 32177 0.0230126 0.0366914 0.0285839 Vertex 32178 0.0244967 0.0375596 0.0281073 Vertex 32179 0.0257301 0.0379057 0.0280361 Vertex 32180 0.0270346 0.0384464 0.0278157 Vertex 32181 0.0282809 0.0389301 0.0276504 Vertex 32182 0.0295979 0.039453 0.0274445 Vertex 32183 0.0308953 0.0400111 0.0272142 Vertex 32184 0.032159 0.0404592 0.0270704 Vertex 32185 0.0333307 0.040756 0.0270424 Vertex 32186 0.0344154 0.0409101 0.0271225 Vertex 32187 0.0355897 0.0411906 0.0271165 Vertex 32188 0.0367619 0.0414833 0.0270934 Vertex 32189 0.0379293 0.0417908 0.0270611 Vertex 32190 0.0391473 0.0421646 0.0269754 Vertex 32191 0.0404587 0.0426892 0.0267677 Vertex 32192 0.041759 0.0432404 0.0265421 Vertex 32193 0.0431078 0.0438619 0.0262578 Vertex 32194 0.0444569 0.0444867 0.0259758 Vertex 32195 0.0456558 0.0449086 0.0258493 Vertex 32196 0.0470963 0.045623 0.0254581 Vertex 32197 -0.0697588 0.147131 -0.0275571 Vertex 32198 -0.0597203 0.0638916 0.0303834 Vertex 32199 -0.071352 0.110742 0.0439553 Vertex 32200 -0.0729614 0.112778 0.0490933 Vertex 32201 -0.0836817 0.0786288 0.0214472 Vertex 32202 -0.0574075 0.0649991 0.0334306 Vertex 32203 -0.075455 0.0675485 0.016865 Vertex 32204 -0.0824666 0.11008 0.0383967 Vertex 32205 -0.0728736 0.0659781 0.0205309 Vertex 32206 -0.0583644 0.065095 0.0331446 Vertex 32207 -0.0687909 0.0354139 0.0127136 Vertex 32208 -0.0679674 0.0350577 0.0131968 Vertex 32209 -0.0670986 0.0347786 0.0136227 Vertex 32210 -0.0662316 0.0345008 0.0140489 Vertex 32211 -0.0653226 0.0343003 0.0144151 Vertex 32212 -0.0643724 0.0341771 0.0147182 Vertex 32213 -0.0634619 0.0339766 0.015084 Vertex 32214 -0.062469 0.033932 0.0153305 Vertex 32215 -0.0614772 0.0338873 0.0155724 Vertex 32216 -0.0605291 0.0337655 0.01588 Vertex 32217 -0.0595378 0.0337212 0.0161226 Vertex 32218 -0.0585033 0.0337545 0.0163089 Vertex 32219 -0.057552 0.0336321 0.0166122 Vertex 32220 -0.0566004 0.0335105 0.0169198 Vertex 32221 -0.0555707 0.033544 0.017104 Vertex 32222 -0.0545376 0.0335773 0.0172858 Vertex 32223 -0.053835 0.0329874 0.0179508 Vertex 32224 -0.0361895 0.0355992 0.0192692 Vertex 32225 -0.0356328 0.0347409 0.0201566 Vertex 32226 -0.0348553 0.0342935 0.020715 Vertex 32227 -0.0340311 0.0339294 0.0212063 Vertex 32228 -0.0329932 0.0339759 0.0213799 Vertex 32229 -0.0318602 0.0341892 0.0214236 Vertex 32230 -0.0305143 0.0348089 0.0211376 Vertex 32231 -0.0278811 0.0378156 0.0189805 Vertex 32232 -0.0269293 0.0376983 0.0192799 Vertex 32233 -0.0258871 0.0377455 0.0194558 Vertex 32234 -0.0247602 0.0379556 0.0194943 Vertex 32235 -0.0237163 0.0380022 0.0196686 Vertex 32236 -0.0226749 0.0380487 0.0198364 Vertex 32237 -0.0216341 0.038095 0.0200103 Vertex 32238 -0.020634 0.03806 0.0202475 Vertex 32239 -0.019552 0.0381879 0.0203532 Vertex 32240 -0.0185078 0.0382343 0.0205228 Vertex 32241 -0.0175101 0.0381991 0.0207599 Vertex 32242 -0.0164722 0.0382453 0.0209318 Vertex 32243 -0.0154293 0.0382918 0.0211029 Vertex 32244 -0.0143883 0.038338 0.0212719 Vertex 32245 -0.0133897 0.0383025 0.0215062 Vertex 32246 -0.0123469 0.0383491 0.0216787 Vertex 32247 -0.0113089 0.0383954 0.0218511 Vertex 32248 -0.0102645 0.038442 0.0220215 Vertex 32249 -0.00922198 0.0384881 0.0221926 Vertex 32250 -0.00822614 0.0384527 0.0224267 Vertex 32251 -0.00718512 0.0384992 0.0226001 Vertex 32252 -0.00614297 0.0385457 0.0227705 Vertex 32253 -0.00510128 0.0385919 0.0229448 Vertex 32254 -0.00410534 0.0385566 0.0231802 Vertex 32255 -0.00306646 0.0386027 0.0233477 Vertex 32256 -0.00202044 0.0386496 0.0235231 Vertex 32257 -0.000982862 0.0386959 0.0236934 Vertex 32258 1.67787e-05 0.0386604 0.0239291 Vertex 32259 0.00105802 0.0387062 0.0241019 Vertex 32260 0.00196704 0.0385066 0.0244659 Vertex 32261 0.00291872 0.0383891 0.0247663 Vertex 32262 0.00378339 0.0381062 0.0251953 Vertex 32263 0.00464996 0.0378242 0.0256263 Vertex 32264 0.00551406 0.0375423 0.0260562 Vertex 32265 0.00637923 0.0372606 0.0264872 Vertex 32266 0.00724524 0.0369774 0.0269173 Vertex 32267 0.00810763 0.0366956 0.0273459 Vertex 32268 0.00897384 0.0364118 0.0277765 Vertex 32269 0.00979486 0.0360464 0.02827 Vertex 32270 0.0106595 0.0357626 0.0286983 Vertex 32271 0.0114791 0.0353993 0.0291949 Vertex 32272 0.0123436 0.0351165 0.0296251 Vertex 32273 0.0132092 0.0348336 0.0300558 Vertex 32274 0.0142088 0.034798 0.0302902 Vertex 32275 0.0152498 0.0348445 0.0304622 Vertex 32276 0.0162926 0.0348913 0.030635 Vertex 32277 0.0173795 0.0350198 0.030737 Vertex 32278 0.0184177 0.0350663 0.0309125 Vertex 32279 0.0195053 0.0351963 0.0310168 Vertex 32280 0.0207235 0.0355731 0.0309275 Vertex 32281 0.0222487 0.0365239 0.0303911 Vertex 32282 0.0236875 0.0373106 0.0299772 Vertex 32283 0.0251052 0.0382735 0.0297226 Vertex 32284 0.0265654 0.0388814 0.0291555 Vertex 32285 0.0279051 0.0395203 0.0288639 Vertex 32286 0.0292035 0.0400739 0.0286474 Vertex 32287 0.0305964 0.0407785 0.0282841 Vertex 32288 0.0319555 0.0413937 0.028007 Vertex 32289 0.0331811 0.0417541 0.0279348 Vertex 32290 0.0343096 0.0419726 0.0279684 Vertex 32291 0.0353499 0.042038 0.028119 Vertex 32292 0.0364832 0.0422343 0.0281778 Vertex 32293 0.0376516 0.0425419 0.0281451 Vertex 32294 0.0388229 0.0428364 0.0281231 Vertex 32295 0.0400787 0.0432895 0.0279756 Vertex 32296 0.0413844 0.0438265 0.0277643 Vertex 32297 0.0427867 0.0445146 0.027427 Vertex 32298 0.0440796 0.0450784 0.0271934 Vertex 32299 0.0453672 0.0456539 0.0269438 Vertex 32300 0.0467625 0.0462832 0.0266316 Vertex 32301 -0.070065 0.148313 -0.0344143 Vertex 32302 -0.054123 0.064196 0.0330627 Vertex 32303 -0.0794475 0.0732175 0.0216948 Vertex 32304 0.0390072 0.0393837 0.00207442 Vertex 32305 -0.0770169 0.112922 0.0479771 Vertex 32306 -0.0725566 0.0737794 0.034925 Vertex 32307 -0.0769868 0.0713943 0.0255408 Vertex 32308 -0.076476 0.07597 0.0322323 Vertex 32309 -0.0895884 0.114751 0.0258504 Vertex 32310 -0.0696662 0.0710058 0.0344116 Vertex 32311 -0.0910253 0.115214 0.0323598 Vertex 32312 -0.0868879 0.111328 0.0363925 Vertex 32313 -0.0815589 0.10988 0.0387619 Vertex 32314 -0.0778797 0.109167 0.0401678 Vertex 32315 -0.0677487 0.111258 0.0407689 Vertex 32316 -0.073756 0.0716254 0.0312714 Vertex 32317 -0.0807007 0.0752735 0.0231846 Vertex 32318 -0.0655994 0.0349763 0.0155159 Vertex 32319 -0.0647928 0.0346609 0.0159953 Vertex 32320 -0.0629896 0.0341974 0.0167609 Vertex 32321 -0.0620801 0.0339964 0.0171254 Vertex 32322 -0.0610891 0.0339525 0.017372 Vertex 32323 -0.0601377 0.0338299 0.0176745 Vertex 32324 -0.0591025 0.0338635 0.0178635 Vertex 32325 -0.0581543 0.0337417 0.0181646 Vertex 32326 -0.0572015 0.0336196 0.0184714 Vertex 32327 -0.0561672 0.0336533 0.0186553 Vertex 32328 -0.0551792 0.0336096 0.018904 Vertex 32329 -0.0541424 0.033642 0.0190888 Vertex 32330 -0.0533609 0.033209 0.01963 Vertex 32331 -0.0360819 0.0351453 0.0214963 Vertex 32332 -0.0353491 0.0346157 0.0221204 Vertex 32333 -0.0346581 0.0340056 0.0228095 Vertex 32334 -0.0336645 0.0339705 0.0230467 Vertex 32335 -0.0325779 0.0341004 0.0231549 Vertex 32336 -0.0312735 0.034639 0.0229335 Vertex 32337 -0.0285962 0.0377287 0.0207135 Vertex 32338 -0.0276455 0.0376114 0.0210157 Vertex 32339 -0.026559 0.0377408 0.0211248 Vertex 32340 -0.0254312 0.0379511 0.0211651 Vertex 32341 -0.0243874 0.0379977 0.0213348 Vertex 32342 -0.0233444 0.0380443 0.0215084 Vertex 32343 -0.0223063 0.0380908 0.0216787 Vertex 32344 -0.0212653 0.0381372 0.0218515 Vertex 32345 -0.0202225 0.0381837 0.0220241 Vertex 32346 -0.0192269 0.0381483 0.0222601 Vertex 32347 -0.0181385 0.038277 0.0223668 Vertex 32348 -0.0170991 0.0383232 0.0225362 Vertex 32349 -0.0161025 0.0382877 0.022773 Vertex 32350 -0.0150618 0.0383341 0.0229424 Vertex 32351 -0.0140608 0.038299 0.0231793 Vertex 32352 -0.0129795 0.0384272 0.0232864 Vertex 32353 -0.0119797 0.0383916 0.0235247 Vertex 32354 -0.0109392 0.038438 0.0236915 Vertex 32355 -0.00989846 0.0384846 0.0238656 Vertex 32356 -0.00885716 0.0385311 0.024037 Vertex 32357 -0.00785703 0.0384956 0.0242725 Vertex 32358 -0.00681555 0.0385421 0.0244437 Vertex 32359 -0.00577674 0.0385885 0.0246132 Vertex 32360 -0.00473212 0.0386351 0.0247855 Vertex 32361 -0.00369415 0.0386815 0.0249596 Vertex 32362 -0.0026931 0.0386465 0.0251959 Vertex 32363 -0.00161218 0.0387745 0.0252993 Vertex 32364 -0.000568628 0.0388214 0.0254737 Vertex 32365 0.000472166 0.0388678 0.0256446 Vertex 32366 0.00147085 0.0388322 0.0258794 Vertex 32367 0.00251072 0.0388788 0.0260522 Vertex 32368 0.00350659 0.0388434 0.0262887 Vertex 32369 0.00445885 0.0387258 0.0265895 Vertex 32370 0.00536983 0.0385261 0.026955 Vertex 32371 0.00623573 0.0382417 0.0273828 Vertex 32372 0.00710192 0.0379595 0.027814 Vertex 32373 0.00796329 0.0376774 0.0282412 Vertex 32374 0.00882931 0.0373958 0.0286749 Vertex 32375 0.00960463 0.0369501 0.029234 Vertex 32376 0.0103827 0.0365006 0.0297934 Vertex 32377 0.0111147 0.0359709 0.0304167 Vertex 32378 0.0118497 0.0354401 0.0310392 Vertex 32379 0.0126257 0.034994 0.0315996 Vertex 32380 0.0135363 0.0347941 0.0319644 Vertex 32381 0.0145335 0.034759 0.0322003 Vertex 32382 0.0156183 0.0348875 0.0323047 Vertex 32383 0.0166591 0.0349342 0.0324763 Vertex 32384 0.0177456 0.0350628 0.0325863 Vertex 32385 0.0187875 0.0351105 0.0327558 Vertex 32386 0.0200475 0.0355684 0.0326031 Vertex 32387 0.0214416 0.0362735 0.0322576 Vertex 32388 0.0229929 0.0371968 0.0317242 Vertex 32389 0.0245219 0.0382712 0.0311236 Vertex 32390 0.026043 0.0392404 0.0305576 Vertex 32391 0.0274856 0.0400248 0.0301572 Vertex 32392 0.0289055 0.0408264 0.0297172 Vertex 32393 0.0305131 0.0418181 0.0291512 Vertex 32394 0.0318466 0.0424663 0.0288342 Vertex 32395 0.0331279 0.0428909 0.0287274 Vertex 32396 0.0342091 0.0430428 0.0288022 Vertex 32397 0.0352492 0.043109 0.0289456 Vertex 32398 0.0363367 0.0432226 0.0290731 Vertex 32399 0.037465 0.0434297 0.0291248 Vertex 32400 0.0385932 0.0436441 0.0291648 Vertex 32401 0.0398079 0.0440192 0.0290809 Vertex 32402 0.0410489 0.0445052 0.0289111 Vertex 32403 0.0423969 0.0451283 0.0286278 Vertex 32404 0.0437177 0.0457281 0.0283091 Vertex 32405 0.0450831 0.0463904 0.0280485 Vertex 32406 -0.0827793 0.0771313 0.0211566 Vertex 32407 -0.0649916 0.0659907 0.0309635 Vertex 32408 -0.0671962 0.0736816 0.0379285 Vertex 32409 -0.0612726 0.0708854 0.0380779 Vertex 32410 -0.0788042 0.109939 0.0428886 Vertex 32411 -0.0827795 0.113314 0.0464356 Vertex 32412 -0.0904011 0.115144 0.0307537 Vertex 32413 -0.0652616 0.0722487 0.0377992 Vertex 32414 -0.0720619 0.109399 0.0395074 Vertex 32415 -0.0676501 0.0667159 0.0297862 Vertex 32416 -0.0896796 0.114349 0.0422656 Vertex 32417 -0.0531345 0.0641573 0.0333061 Vertex 32418 -0.0653727 0.074532 0.0393295 Vertex 32419 -0.0904857 0.114242 0.0332623 Vertex 32420 -0.0860696 0.110951 0.0368762 Vertex 32421 -0.0898618 0.113382 0.0394321 Vertex 32422 -0.0768843 0.109139 0.0404116 Vertex 32423 -0.0586618 0.0637687 0.0307411 Vertex 32424 -0.0578159 0.0636603 0.0309898 Vertex 32425 -0.0757375 0.106056 0.0359296 Vertex 32426 -0.0670324 0.0672056 0.0312385 Vertex 32427 -0.0925663 0.116874 0.0234322 Vertex 32428 -0.06879 0.067714 0.0304363 Vertex 32429 -0.0487849 0.0715634 0.0402545 Vertex 32430 -0.0497522 0.0716181 0.0399477 Vertex 32431 -0.0645432 0.0673992 0.033354 Vertex 32432 -0.0624735 0.0344952 0.0183787 Vertex 32433 -0.0616059 0.0342155 0.0188015 Vertex 32434 -0.0606958 0.0340151 0.0191666 Vertex 32435 -0.0597443 0.0338929 0.0194732 Vertex 32436 -0.0587951 0.0337712 0.0197789 Vertex 32437 -0.0577592 0.033805 0.0199655 Vertex 32438 -0.0568094 0.0336832 0.0202688 Vertex 32439 -0.0558188 0.0336396 0.0205147 Vertex 32440 -0.0547437 0.0337519 0.0206417 Vertex 32441 -0.0536699 0.0338623 0.0207675 Vertex 32442 -0.0528867 0.0334295 0.0213081 Vertex 32443 -0.0366651 0.0353042 0.023032 Vertex 32444 -0.0360635 0.034528 0.0238485 Vertex 32445 -0.0353224 0.0340121 0.0244595 Vertex 32446 -0.0342862 0.0340473 0.0246456 Vertex 32447 -0.0331612 0.0342582 0.0246899 Vertex 32448 -0.0319429 0.0346356 0.0246022 Vertex 32449 -0.0301518 0.0360809 0.0236741 Vertex 32450 -0.0282716 0.0376885 0.0226211 Vertex 32451 -0.0272298 0.037736 0.022792 Vertex 32452 -0.0261021 0.0379463 0.0228342 Vertex 32453 -0.0250572 0.0379934 0.0230062 Vertex 32454 -0.0239769 0.0381215 0.0231095 Vertex 32455 -0.022979 0.0380859 0.023348 Vertex 32456 -0.0218898 0.0382146 0.0234539 Vertex 32457 -0.0208969 0.0381794 0.0236923 Vertex 32458 -0.0198527 0.0382258 0.0238627 Vertex 32459 -0.0188094 0.0382725 0.0240343 Vertex 32460 -0.0177683 0.0383192 0.0242073 Vertex 32461 -0.0167299 0.0383654 0.0243772 Vertex 32462 -0.0157326 0.0383302 0.0246146 Vertex 32463 -0.014649 0.0384586 0.0247211 Vertex 32464 -0.0136478 0.0384232 0.0249573 Vertex 32465 -0.0126098 0.0384695 0.0251301 Vertex 32466 -0.0116086 0.0384341 0.0253641 Vertex 32467 -0.0105678 0.0384807 0.0255376 Vertex 32468 -0.00952807 0.0385271 0.0257083 Vertex 32469 -0.00848922 0.0385737 0.0258802 Vertex 32470 -0.00744633 0.0386202 0.0260498 Vertex 32471 -0.00640617 0.0386668 0.0262232 Vertex 32472 -0.00536457 0.0387134 0.026395 Vertex 32473 -0.00436707 0.0386778 0.0266309 Vertex 32474 -0.00332487 0.0387243 0.0268007 Vertex 32475 -0.00228102 0.038771 0.0269718 Vertex 32476 -0.00124079 0.0388178 0.0271443 Vertex 32477 -0.00015619 0.0389464 0.0272511 Vertex 32478 0.000884291 0.038993 0.0274224 Vertex 32479 0.00192546 0.0390395 0.0275923 Vertex 32480 0.00296667 0.0390863 0.0277676 Vertex 32481 0.00400981 0.0391328 0.0279405 Vertex 32482 0.00500615 0.0390969 0.0281732 Vertex 32483 0.00600107 0.0390612 0.028408 Vertex 32484 0.00691185 0.038861 0.0287775 Vertex 32485 0.00777681 0.0385776 0.0292039 Vertex 32486 0.00859545 0.0382141 0.0296981 Vertex 32487 0.00937487 0.0377648 0.0302588 Vertex 32488 0.0100598 0.0371564 0.0309489 Vertex 32489 0.0106605 0.0363802 0.031763 Vertex 32490 0.0111749 0.035437 0.032711 Vertex 32491 0.011955 0.0349898 0.0332703 Vertex 32492 0.0128613 0.0347903 0.0336338 Vertex 32493 0.0138178 0.034673 0.033937 Vertex 32494 0.0149002 0.0348014 0.0340409 Vertex 32495 0.0159012 0.0347663 0.0342789 Vertex 32496 0.0169866 0.0348952 0.0343866 Vertex 32497 0.0180716 0.0350245 0.0344937 Vertex 32498 0.0191993 0.0352366 0.0345338 Vertex 32499 0.0207702 0.036271 0.0339301 Vertex 32500 0.022412 0.0372285 0.0333476 Vertex 32501 0.0239273 0.0383233 0.0327312 Vertex 32502 0.0254197 0.0394349 0.0320923 Vertex 32503 0.027107 0.0406036 0.0313674 Vertex 32504 -0.0487973 0.070279 0.0395574 Vertex 32505 -0.0812419 0.109765 0.0353982 Vertex 32506 0.033052 0.0440867 0.029429 Vertex 32507 0.034148 0.0442132 0.0295363 Vertex 32508 0.0352381 0.0443124 0.029693 Vertex 32509 0.0362811 0.0443655 0.0298564 Vertex 32510 0.0373215 0.0444316 0.0300039 Vertex 32511 0.0384486 0.0446185 0.0300797 Vertex 32512 0.0395731 0.0448559 0.0300931 Vertex 32513 0.0407753 0.0452541 0.0299878 Vertex 32514 0.0420748 0.0457918 0.0297783 Vertex 32515 0.0434163 0.0464179 0.0294988 Vertex 32516 -0.0568241 0.063612 0.0312362 Vertex 32517 -0.0605435 0.0660534 0.0336067 Vertex 32518 -0.0717138 0.073474 0.0353741 Vertex 32519 -0.0748097 0.109257 0.0407877 Vertex 32520 -0.0715764 0.0724969 0.0344898 Vertex 32521 -0.0758474 0.109198 0.0406016 Vertex 32522 -0.0832904 0.111663 0.0440643 Vertex 32523 -0.0892259 0.113441 0.0323782 Vertex 32524 -0.0853906 0.110991 0.0352247 Vertex 32525 -0.0898642 0.114175 0.0316644 Vertex 32526 -0.0885535 0.112746 0.0331115 Vertex 32527 -0.0870355 0.111737 0.0342553 Vertex 32528 -0.0845703 0.11062 0.0357089 Vertex 32529 -0.0801514 0.109359 0.0377151 Vertex 32530 -0.0763852 0.108818 0.0389983 Vertex 32531 -0.0594802 0.0716799 0.0395512 Vertex 32532 -0.0888863 0.113493 0.0234001 Vertex 32533 -0.0830307 0.110356 0.0344756 Vertex 32534 -0.0661377 0.0669804 0.0316196 Vertex 32535 -0.0898786 0.113438 0.0340422 Vertex 32536 -0.0603252 0.0707596 0.0383929 Vertex 32537 -0.0825513 0.110697 0.0307352 Vertex 32538 -0.0558279 0.0635792 0.0314789 Vertex 32539 -0.0581683 0.0606896 -0.00283185 Vertex 32540 -0.0548706 0.0634738 0.0317723 Vertex 32541 -0.0897269 0.113038 0.0361809 Vertex 32542 -0.0538732 0.0634525 0.0320061 Vertex 32543 -0.0848272 0.110715 0.0391424 Vertex 32544 -0.0773794 0.109459 0.0418273 Vertex 32545 -0.0683421 0.111385 0.0423299 Vertex 32546 -0.0738907 0.107101 0.0373066 Vertex 32547 -0.0627834 0.035148 0.0195098 Vertex 32548 -0.0621198 0.0344764 0.0202314 Vertex 32549 -0.0612546 0.0341987 0.0206565 Vertex 32550 -0.0603468 0.0339987 0.0210215 Vertex 32551 -0.0593508 0.0339548 0.0212701 Vertex 32552 -0.0583609 0.0339112 0.0215144 Vertex 32553 -0.0573663 0.0338673 0.0217593 Vertex 32554 -0.0563756 0.0338236 0.0220041 Vertex 32555 -0.0553855 0.0337802 0.0222515 Vertex 32556 -0.0543926 0.0337363 0.0224962 Vertex 32557 -0.0534027 0.0336932 0.022744 Vertex 32558 -0.0524535 0.0335708 0.023045 Vertex 32559 -0.0382796 0.035429 0.0243806 Vertex 32560 -0.0372877 0.0353832 0.0246264 Vertex 32561 -0.0369573 0.0340894 0.0258321 Vertex 32562 -0.0359224 0.034124 0.026018 Vertex 32563 -0.0348891 0.0341588 0.0262022 Vertex 32564 -0.0338144 0.0342727 0.0263277 Vertex 32565 -0.0325668 0.0347124 0.0262002 Vertex 32566 -0.0308674 0.0359912 0.0254031 Vertex 32567 -0.0288992 0.0377652 0.0242203 Vertex 32568 -0.027899 0.0377311 0.0244577 Vertex 32569 -0.0267255 0.0380235 0.0244373 Vertex 32570 -0.0256867 0.0380701 0.0246091 Vertex 32571 -0.0246444 0.0381166 0.0247786 Vertex 32572 -0.0236064 0.038163 0.0249493 Vertex 32573 -0.0226059 0.0381278 0.0251854 Vertex 32574 -0.0215209 0.0382567 0.0252967 Vertex 32575 -0.0204364 0.038385 0.0254029 Vertex 32576 -0.0194853 0.0382676 0.0257029 Vertex 32577 -0.0184004 0.0383962 0.0258071 Vertex 32578 -0.0173569 0.038443 0.0259817 Vertex 32579 -0.016317 0.0384896 0.0261516 Vertex 32580 -0.015272 0.0385359 0.0263224 Vertex 32581 -0.0142754 0.0385008 0.0265607 Vertex 32582 -0.0132381 0.0385471 0.0267309 Vertex 32583 -0.0122404 0.0385117 0.0269697 Vertex 32584 -0.0111539 0.0386404 0.0270766 Vertex 32585 -0.0101559 0.0386047 0.027311 Vertex 32586 -0.00915886 0.0385694 0.027547 Vertex 32587 -0.00807178 0.0386982 0.0276584 Vertex 32588 -0.00707611 0.0386628 0.0278929 Vertex 32589 -0.00603714 0.0387093 0.0280658 Vertex 32590 -0.00499552 0.038756 0.0282379 Vertex 32591 -0.00395415 0.0388026 0.0284096 Vertex 32592 -0.00290933 0.0388493 0.0285794 Vertex 32593 -0.00186878 0.0388962 0.0287527 Vertex 32594 -0.000827607 0.0389424 0.0289209 Vertex 32595 0.00021169 0.0389894 0.029096 Vertex 32596 0.00129902 0.039118 0.0292011 Vertex 32597 0.00233723 0.0391647 0.0293747 Vertex 32598 0.00337821 0.0392113 0.0295452 Vertex 32599 0.00442082 0.039258 0.029719 Vertex 32600 0.00542039 0.0392223 0.0299552 Vertex 32601 0.00645901 0.0392685 0.0301228 Vertex 32602 0.00741103 0.0391504 0.030425 Vertex 32603 0.00823162 0.0387858 0.0309201 Vertex 32604 0.00900714 0.0383394 0.0314785 Vertex 32605 0.00960807 0.0375632 0.0322947 Vertex 32606 0.00994394 0.0362916 0.0335003 Vertex 32607 0.0103698 0.0351865 0.034574 Vertex 32608 0.0112393 0.0349033 0.0350041 Vertex 32609 0.0121456 0.0347039 0.0353715 Vertex 32610 0.0131441 0.0346685 0.0356066 Vertex 32611 0.0141872 0.0347155 0.0357788 Vertex 32612 0.015269 0.034844 0.035887 Vertex 32613 0.0162675 0.0348087 0.0361219 Vertex 32614 0.0173543 0.0349384 0.0362289 Vertex 32615 0.0185257 0.0352322 0.0362088 Vertex 32616 0.0198737 0.0358544 0.0359282 Vertex 32617 0.0214915 0.0369736 0.0352586 Vertex 32618 -0.0821651 0.110069 0.034903 Vertex 32619 -0.0721201 0.0655088 0.0210948 Vertex 32620 -0.0709567 0.0767623 0.0380194 Vertex 32621 -0.0607654 0.0668786 0.0346016 Vertex 32622 -0.0633908 0.0664235 0.0326881 Vertex 32623 -0.0731036 0.0721584 0.0326952 Vertex 32624 -0.0357596 0.0367769 0.0465803 Vertex 32625 -0.0582856 0.0695544 0.0380966 Vertex 32626 -0.0626784 0.0670893 0.0340154 Vertex 32627 -0.0724259 0.0727975 0.0340482 Vertex 32628 -0.0713342 0.065071 0.0216423 Vertex 32629 -0.0799749 0.0710714 0.0163832 Vertex 32630 0.0394746 0.0459091 0.0309432 Vertex 32631 0.0406411 0.0462159 0.0309092 Vertex 32632 -0.0792845 0.0704649 0.0170607 Vertex 32633 -0.0785506 0.0699758 0.0176232 Vertex 32634 -0.0777833 0.0694772 0.0182331 Vertex 32635 -0.0708435 0.0731956 0.0357937 Vertex 32636 -0.0754795 0.0704499 0.0266608 Vertex 32637 -0.0769851 0.0690914 0.0187275 Vertex 32638 -0.05157 0.0657725 0.0357523 Vertex 32639 -0.0847722 0.113367 0.0459387 Vertex 32640 -0.0839165 0.110514 0.0395089 Vertex 32641 -0.0773811 0.108845 0.0387481 Vertex 32642 -0.0810176 0.109646 0.0372868 Vertex 32643 -0.0761893 0.0686573 0.0192806 Vertex 32644 -0.0728856 0.148047 -0.0249504 Vertex 32645 -0.0606626 0.0738612 0.0409255 Vertex 32646 -0.0862122 0.111364 0.0347412 Vertex 32647 -0.0837023 0.110333 0.0361338 Vertex 32648 -0.0604546 0.071762 0.0392488 Vertex 32649 -0.0639661 0.0690471 0.0355624 Vertex 32650 -0.0709391 0.109631 0.0395791 Vertex 32651 -0.0776118 0.0739521 0.0284675 Vertex 32652 -0.0872579 0.113355 0.0275168 Vertex 32653 -0.0754126 0.068174 0.019879 Vertex 32654 -0.0746432 0.067744 0.0203901 Vertex 32655 -0.0738697 0.0672451 0.0209913 Vertex 32656 -0.0616634 0.0612417 -0.00198952 Vertex 32657 -0.0607907 0.0609394 -0.0015406 Vertex 32658 -0.0599662 0.0605914 -0.00103222 Vertex 32659 -0.0591948 0.0603156 -0.00052226 Vertex 32660 -0.058406 0.0598457 0.000248469 Vertex 32661 -0.0731035 0.0667848 0.0215468 Vertex 32662 -0.0836103 0.0769236 0.0176347 Vertex 32663 -0.0603093 0.0652594 0.0325934 Vertex 32664 -0.0763864 0.109432 0.0420745 Vertex 32665 -0.0669825 0.112069 0.0420748 Vertex 32666 -0.0723466 0.0663158 0.0221054 Vertex 32667 -0.0529002 0.0701503 0.0387731 Vertex 32668 -0.0715611 0.065876 0.0226562 Vertex 32669 -0.0625972 0.0348156 0.0215996 Vertex 32670 -0.0618525 0.0343021 0.022204 Vertex 32671 -0.0609416 0.0341022 0.0225725 Vertex 32672 -0.0599506 0.0340585 0.0228145 Vertex 32673 -0.0589604 0.0340153 0.0230639 Vertex 32674 -0.0579697 0.0339719 0.0233097 Vertex 32675 -0.0569766 0.0339283 0.0235563 Vertex 32676 -0.055985 0.033885 0.0237996 Vertex 32677 -0.0549513 0.0339195 0.0239841 Vertex 32678 -0.0539587 0.0338764 0.0242313 Vertex 32679 -0.0529285 0.0339107 0.0244154 Vertex 32680 -0.0520579 0.0336325 0.0248414 Vertex 32681 -0.0510279 0.0336678 0.0250302 Vertex 32682 -0.0438381 0.033833 0.0263899 Vertex 32683 -0.0428042 0.0338676 0.0265755 Vertex 32684 -0.0418955 0.0336683 0.02694 Vertex 32685 -0.0406946 0.0340162 0.0268873 Vertex 32686 -0.0396636 0.0340515 0.0270767 Vertex 32687 -0.038588 0.0341641 0.0271976 Vertex 32688 -0.0375579 0.0341991 0.0273875 Vertex 32689 -0.0365645 0.0341557 0.0276322 Vertex 32690 -0.0355318 0.0341909 0.0278174 Vertex 32691 -0.0344171 0.0343826 0.0278837 Vertex 32692 -0.0332179 0.0347336 0.0278325 Vertex 32693 -0.0316694 0.0357391 0.0272619 Vertex 32694 -0.0295698 0.0377598 0.0258888 Vertex 32695 -0.0285282 0.0378067 0.0260568 Vertex 32696 -0.0273965 0.0380183 0.0261038 Vertex 32697 -0.0263135 0.0381467 0.0262093 Vertex 32698 -0.0252738 0.0381933 0.0263814 Vertex 32699 -0.0242309 0.0382399 0.0265535 Vertex 32700 -0.0232358 0.0382045 0.0267906 Vertex 32701 -0.0221488 0.0383333 0.0268965 Vertex 32702 -0.0211531 0.0382979 0.0271326 Vertex 32703 -0.0200678 0.0384268 0.0272406 Vertex 32704 -0.0190238 0.0384735 0.0274147 Vertex 32705 -0.018026 0.0384381 0.0276504 Vertex 32706 -0.016985 0.0384848 0.0278228 Vertex 32707 -0.0159434 0.0385311 0.027994 Vertex 32708 -0.0149461 0.0384961 0.0282276 Vertex 32709 -0.0138611 0.0386244 0.0283378 Vertex 32710 -0.0128672 0.038589 0.0285719 Vertex 32711 -0.0118259 0.0386358 0.028745 Vertex 32712 -0.0107858 0.0386823 0.0289151 Vertex 32713 -0.00974239 0.0387292 0.0290909 Vertex 32714 -0.00870302 0.0387758 0.0292604 Vertex 32715 -0.00765915 0.0388225 0.0294318 Vertex 32716 -0.00661876 0.0388692 0.029605 Vertex 32717 -0.00562206 0.0388337 0.0298422 Vertex 32718 -0.00457845 0.0388805 0.0300129 Vertex 32719 -0.00353807 0.0389271 0.0301841 Vertex 32720 -0.00249575 0.0389742 0.0303561 Vertex 32721 -0.00141447 0.0391026 0.0304627 Vertex 32722 -0.000370674 0.0391495 0.0306363 Vertex 32723 0.000668194 0.039196 0.03081 Vertex 32724 0.00170995 0.0392427 0.0309786 Vertex 32725 0.00275029 0.0392893 0.0311503 Vertex 32726 0.00379349 0.0393361 0.0313217 Vertex 32727 0.00483671 0.039382 0.0314929 Vertex 32728 0.00578775 0.0392649 0.0317966 Vertex 32729 0.00678439 0.0392286 0.0320303 Vertex 32730 0.00769138 0.039029 0.0323953 Vertex 32731 0.00842312 0.0385006 0.0330183 Vertex 32732 0.00898082 0.0376394 0.0339008 Vertex 32733 0.00852878 0.034888 0.0362651 Vertex 32734 0.0094791 0.0347704 0.0365664 Vertex 32735 0.0104341 0.0346525 0.0368683 Vertex 32736 0.0114304 0.0346172 0.0371012 Vertex 32737 0.0124741 0.0346639 0.0372734 Vertex 32738 0.0135129 0.0347107 0.0374491 Vertex 32739 0.0145534 0.0347576 0.0376203 Vertex 32740 0.0156377 0.0348863 0.0377268 Vertex 32741 0.0167263 0.0350159 0.0378322 Vertex 32742 0.0178543 0.0352284 0.0378786 Vertex 32743 0.0191581 0.0357679 0.0376614 Vertex 32744 0.020686 0.0367224 0.0371237 Vertex 32745 -0.0707511 0.0654954 0.0231537 Vertex 32746 -0.0699342 0.0651273 0.0236486 Vertex 32747 -0.0726405 0.148337 -0.0310398 Vertex 32748 -0.0884146 0.113764 0.0250911 Vertex 32749 -0.0566436 0.0657735 0.0346839 Vertex 32750 -0.0735982 0.110276 0.0438156 Vertex 32751 -0.0701455 0.111146 0.0439061 Vertex 32752 -0.0722895 0.147809 -0.0265569 Vertex 32753 -0.0699466 0.072981 0.0361776 Vertex 32754 -0.0826529 0.0796856 0.0277856 Vertex 32755 -0.0672589 0.077344 0.0400985 Vertex 32756 -0.0691135 0.0647604 0.0241382 Vertex 32757 -0.0682758 0.06442 0.0246162 Vertex 32758 -0.0673972 0.0641749 0.025006 Vertex 32759 -0.0724789 0.110508 0.0438845 Vertex 32760 -0.0797208 0.0757926 0.0264575 Vertex 32761 -0.0789826 0.115456 0.0491224 Vertex 32762 -0.0665349 0.0638845 0.0254353 Vertex 32763 -0.0656277 0.0636798 0.0258038 Vertex 32764 -0.0719281 0.148635 -0.0350398 Vertex 32765 -0.0705444 0.0712752 0.0339991 Vertex 32766 -0.0714085 0.0715566 0.0335759 Vertex 32767 -0.0878261 0.11219 0.0337097 Vertex 32768 -0.0882187 0.112165 0.0210064 Vertex 32769 -0.0906667 0.113308 0.0195238 Vertex 32770 -0.0602113 0.0697286 0.0375341 Vertex 32771 -0.0533892 0.064921 0.0343521 Vertex 32772 -0.0749694 0.0749712 0.0333987 Vertex 32773 -0.0888928 0.113895 0.0428033 Vertex 32774 -0.0800056 0.108388 0.0313605 Vertex 32775 -0.0665906 0.0686018 0.0336345 Vertex 32776 -0.0753497 0.108878 0.0391875 Vertex 32777 -0.0696851 0.11012 0.0394623 Vertex 32778 -0.0663226 0.0771733 0.0404118 Vertex 32779 -0.0647148 0.06349 0.0261636 Vertex 32780 -0.0649629 0.0620542 -0.00149187 Vertex 32781 -0.0640739 0.0617863 -0.0011495 Vertex 32782 -0.0633366 0.0613129 -0.000511486 Vertex 32783 -0.0625236 0.0609176 -2.19725e-05 Vertex 32784 -0.0617103 0.0604885 0.000571471 Vertex 32785 -0.0609112 0.060145 0.00105228 Vertex 32786 -0.0600989 0.0598417 0.00157193 Vertex 32787 -0.0592102 0.0595951 0.00211544 Vertex 32788 -0.0638018 0.0632948 0.0265284 Vertex 32789 -0.0628916 0.0631016 0.0268901 Vertex 32790 -0.0619477 0.0629617 0.0272004 Vertex 32791 -0.0624949 0.0729745 0.0395167 Vertex 32792 -0.0609885 0.0628534 0.0274979 Vertex 32793 -0.0735402 0.0708078 0.0302704 Vertex 32794 -0.0600389 0.0627348 0.027804 Vertex 32795 -0.0640639 0.0351963 0.0227232 Vertex 32796 -0.0632785 0.0347611 0.0232648 Vertex 32797 -0.0624908 0.0343254 0.0238098 Vertex 32798 -0.0615416 0.034204 0.0241166 Vertex 32799 -0.0605498 0.0341606 0.0243603 Vertex 32800 -0.0595593 0.0341176 0.0246105 Vertex 32801 -0.0585687 0.0340745 0.0248573 Vertex 32802 -0.0575747 0.034031 0.0251021 Vertex 32803 -0.0565822 0.0339881 0.0253464 Vertex 32804 -0.0555068 0.0341015 0.0254741 Vertex 32805 -0.0544743 0.034136 0.0256577 Vertex 32806 -0.0534824 0.0340932 0.0259063 Vertex 32807 -0.0524923 0.0340498 0.0261507 Vertex 32808 -0.0515024 0.0340065 0.0263967 Vertex 32809 -0.0505514 0.0338848 0.0267025 Vertex 32810 -0.0495577 0.0338416 0.0269497 Vertex 32811 -0.0485662 0.0337988 0.0271958 Vertex 32812 -0.0475328 0.0338333 0.0273813 Vertex 32813 -0.0465457 0.0337901 0.0276252 Vertex 32814 -0.0455114 0.0338265 0.027816 Vertex 32815 -0.0444796 0.0338614 0.0280014 Vertex 32816 -0.043447 0.0338958 0.0281851 Vertex 32817 -0.0423301 0.0340883 0.0282541 Vertex 32818 -0.0412543 0.0342017 0.0283816 Vertex 32819 -0.0402218 0.0342366 0.0285657 Vertex 32820 -0.0391909 0.0342717 0.0287528 Vertex 32821 -0.038197 0.0342285 0.0289964 Vertex 32822 -0.0371641 0.0342638 0.0291868 Vertex 32823 -0.0361326 0.034299 0.0293707 Vertex 32824 -0.0350568 0.0344135 0.0294961 Vertex 32825 -0.0338576 0.0347656 0.029445 Vertex 32826 -0.0322918 0.0358193 0.0288559 Vertex 32827 -0.0303274 0.0375897 0.0276802 Vertex 32828 -0.0291528 0.0378835 0.0276599 Vertex 32829 -0.028023 0.0380941 0.0277005 Vertex 32830 -0.0269831 0.0381412 0.0278748 Vertex 32831 -0.0258999 0.0382697 0.0279803 Vertex 32832 -0.0249013 0.0382346 0.0282196 Vertex 32833 -0.0238582 0.0382811 0.0283891 Vertex 32834 -0.0228169 0.0383283 0.0285633 Vertex 32835 -0.0217358 0.0384567 0.028668 Vertex 32836 -0.0206926 0.0385034 0.0288434 Vertex 32837 -0.0196964 0.0384682 0.0290787 Vertex 32838 -0.0186121 0.038597 0.0291868 Vertex 32839 -0.0176156 0.0385615 0.0294218 Vertex 32840 -0.0165731 0.0386082 0.0295958 Vertex 32841 -0.0155328 0.0386551 0.0297691 Vertex 32842 -0.0145326 0.0386197 0.0300043 Vertex 32843 -0.0134912 0.0386664 0.0301779 Vertex 32844 -0.0124518 0.038713 0.0303489 Vertex 32845 -0.0114113 0.0387598 0.0305221 Vertex 32846 -0.0103683 0.0388061 0.0306894 Vertex 32847 -0.00937118 0.0387712 0.0309279 Vertex 32848 -0.0082877 0.0388999 0.0310374 Vertex 32849 -0.00729042 0.0388645 0.0312728 Vertex 32850 -0.00620458 0.038993 0.0313778 Vertex 32851 -0.0052065 0.0389581 0.0316148 Vertex 32852 -0.00412302 0.0390868 0.0317249 Vertex 32853 -0.00312706 0.0390512 0.0319597 Vertex 32854 -0.00208274 0.0390983 0.0321346 Vertex 32855 -0.00104546 0.0391448 0.0323048 Vertex 32856 4.37647e-05 0.0392736 0.0324137 Vertex 32857 0.0010398 0.0392387 0.0326514 Vertex 32858 0.00208256 0.0392848 0.0328214 Vertex 32859 0.00307915 0.03925 0.0330573 Vertex 32860 0.00416104 0.0393786 0.0331643 Vertex 32861 0.00524969 0.0395071 0.0332712 Vertex 32862 0.00624218 0.039472 0.0335072 Vertex 32863 0.00481949 0.0349074 0.0372909 Vertex 32864 0.0057743 0.0347896 0.0375885 Vertex 32865 0.00672447 0.0346721 0.0378883 Vertex 32866 0.00772286 0.0346363 0.0381279 Vertex 32867 0.00872274 0.0346011 0.0383625 Vertex 32868 0.00976325 0.0346476 0.0385339 Vertex 32869 0.0107598 0.0346122 0.0387698 Vertex 32870 0.0118001 0.034659 0.0389456 Vertex 32871 0.0128427 0.034706 0.0391137 Vertex 32872 0.0139247 0.0348347 0.0392218 Vertex 32873 0.0150108 0.0349639 0.0393317 Vertex 32874 0.0160525 0.0350115 0.0395034 Vertex 32875 0.0172278 0.0353072 0.0394845 Vertex 32876 0.0185294 0.0358466 0.0392699 Vertex 32877 0.0199235 0.0365522 0.038924 Vertex 32878 -0.0590903 0.0626036 0.0281123 Vertex 32879 -0.0738874 0.0695898 0.0277412 Vertex 32880 -0.0846331 0.0781756 0.0181083 Vertex 32881 -0.0746876 0.0700138 0.0272066 Vertex 32882 -0.0815914 0.0767239 0.0235201 Vertex 32883 -0.053995 0.0675039 0.0372692 Vertex 32884 -0.0471085 0.0683456 0.0397676 Vertex 32885 -0.0730641 0.148297 -0.027137 Vertex 32886 -0.0690473 0.0727409 0.0365464 Vertex 32887 -0.0714849 0.147284 -0.0260827 Vertex 32888 -0.0581322 0.0624985 0.0284102 Vertex 32889 -0.0623671 0.0719748 0.0386642 Vertex 32890 -0.078333 0.108337 0.035368 Vertex 32891 -0.0571803 0.062383 0.0287138 Vertex 32892 -0.0786738 0.10815 0.0335843 Vertex 32893 -0.0478952 0.0713156 0.0406183 Vertex 32894 -0.0795217 0.0748572 0.0255446 Vertex 32895 -0.0705201 0.0646959 0.0221381 Vertex 32896 -0.0810085 0.1097 0.0318734 Vertex 32897 -0.0516777 0.0668198 0.0365892 Vertex 32898 -0.0488766 0.0663121 0.037594 Vertex 32899 -0.065916 0.0662086 0.0305519 Vertex 32900 -0.0697163 0.064282 0.022673 Vertex 32901 -0.0876727 0.111787 0.0358475 Vertex 32902 -0.0740415 0.112641 0.0489542 Vertex 32903 -0.0838901 0.110998 0.0281595 Vertex 32904 -0.0901723 0.112303 0.0149799 Vertex 32905 -0.0726772 0.112018 0.047983 Vertex 32906 -0.0845701 0.112449 0.0449336 Vertex 32907 -0.0827936 0.110133 0.0365 Vertex 32908 -0.0792829 0.109073 0.0381388 Vertex 32909 -0.0742647 0.109022 0.03931 Vertex 32910 -0.0813565 0.109598 0.0300528 Vertex 32911 -0.0664934 0.0624679 -0.000297249 Vertex 32912 -0.0655849 0.0622273 0.00026904 Vertex 32913 -0.0648107 0.0617811 0.00082735 Vertex 32914 -0.0641258 0.0611318 0.00140431 Vertex 32915 -0.0633435 0.060722 0.00207171 Vertex 32916 -0.0625031 0.0602955 0.00246046 Vertex 32917 -0.061699 0.0599431 0.00295203 Vertex 32918 -0.0607891 0.0597911 0.00342454 Vertex 32919 -0.0599288 0.0595089 0.00385673 Vertex 32920 -0.0591944 0.0589798 0.00447595 Vertex 32921 -0.0585951 0.0582039 0.0052961 Vertex 32922 -0.07435 0.0711851 0.0297739 Vertex 32923 -0.0883363 0.112382 0.0405773 Vertex 32924 -0.0835056 0.0777286 0.0204901 Vertex 32925 -0.0765009 0.0716493 0.0271716 Vertex 32926 -0.0732 0.113624 0.050147 Vertex 32927 -0.0647046 0.0352193 0.0243246 Vertex 32928 -0.06396 0.034704 0.0249317 Vertex 32929 -0.0631313 0.0343469 0.025414 Vertex 32930 -0.0621816 0.0342254 0.0257179 Vertex 32931 -0.0611919 0.0341824 0.0259657 Vertex 32932 -0.0601957 0.0341396 0.0262143 Vertex 32933 -0.0591643 0.0341749 0.0263998 Vertex 32934 -0.0581312 0.0342101 0.0265873 Vertex 32935 -0.0571418 0.0341673 0.0268338 Vertex 32936 -0.0561495 0.0341243 0.0270787 Vertex 32937 -0.0551152 0.0341599 0.0272668 Vertex 32938 -0.0540847 0.0341953 0.0274512 Vertex 32939 -0.053009 0.0343093 0.0275811 Vertex 32940 -0.0519767 0.0343446 0.0277664 Vertex 32941 -0.0509876 0.0343016 0.0280109 Vertex 32942 -0.0499923 0.0342577 0.028256 Vertex 32943 -0.0490427 0.0341369 0.0285626 Vertex 32944 -0.0480122 0.0341726 0.0287503 Vertex 32945 -0.0469776 0.034208 0.0289371 Vertex 32946 -0.0459855 0.0341655 0.0291843 Vertex 32947 -0.0449113 0.0342791 0.0293115 Vertex 32948 -0.0438782 0.0343145 0.0294954 Vertex 32949 -0.0428028 0.034428 0.0296237 Vertex 32950 -0.0418108 0.0343847 0.029868 Vertex 32951 -0.0408221 0.0343419 0.0301151 Vertex 32952 -0.0398304 0.034299 0.0303636 Vertex 32953 -0.0387951 0.0343342 0.0305488 Vertex 32954 -0.0378047 0.0342916 0.0307956 Vertex 32955 -0.036771 0.0343273 0.0309808 Vertex 32956 -0.0357 0.0344414 0.0311095 Vertex 32957 -0.0345003 0.0347932 0.0310568 Vertex 32958 -0.0330138 0.0356955 0.0305887 Vertex 32959 -0.0309502 0.0376665 0.0292806 Vertex 32960 -0.0298246 0.0378766 0.0293214 Vertex 32961 -0.0286941 0.0380883 0.0293671 Vertex 32962 -0.0276072 0.038217 0.0294729 Vertex 32963 -0.0265686 0.0382637 0.0296453 Vertex 32964 -0.025528 0.0383109 0.0298198 Vertex 32965 -0.0244403 0.0384399 0.0299279 Vertex 32966 -0.0233997 0.0384863 0.0301002 Vertex 32967 -0.0224026 0.0384511 0.0303351 Vertex 32968 -0.0213641 0.0384977 0.0305062 Vertex 32969 -0.0203244 0.0385446 0.0306811 Vertex 32970 -0.0192836 0.0385916 0.0308544 Vertex 32971 -0.0182416 0.0386382 0.0310248 Vertex 32972 -0.0171561 0.0387671 0.0311342 Vertex 32973 -0.0161996 0.0386499 0.0314325 Vertex 32974 -0.0151193 0.0387785 0.0315419 Vertex 32975 -0.0140741 0.0388251 0.0317136 Vertex 32976 -0.0130807 0.0387897 0.0319484 Vertex 32977 -0.0120362 0.0388366 0.0321214 Vertex 32978 -0.010995 0.0388834 0.0322933 Vertex 32979 -0.00995429 0.0389301 0.0324647 Vertex 32980 -0.0089161 0.0389771 0.0326408 Vertex 32981 -0.00787248 0.0390234 0.0328097 Vertex 32982 -0.00687536 0.0389886 0.0330493 Vertex 32983 -0.00583756 0.0390351 0.0332216 Vertex 32984 -0.00474995 0.0391641 0.0333259 Vertex 32985 -0.0037108 0.0392109 0.0335024 Vertex 32986 -0.00270958 0.0391757 0.033738 Vertex 32987 -0.00167056 0.0392225 0.0339103 Vertex 32988 -0.000627469 0.039269 0.0340794 Vertex 32989 0.000412609 0.0393166 0.0342543 Vertex 32990 0.00149398 0.0394449 0.0343588 Vertex 32991 0.00253507 0.0394917 0.0345311 Vertex 32992 0.00357616 0.0395385 0.0347033 Vertex 32993 0.00206776 0.0348089 0.0386094 Vertex 32994 0.00310705 0.0348555 0.0387811 Vertex 32995 0.00406092 0.0347375 0.0390843 Vertex 32996 0.00506037 0.0347021 0.0393176 Vertex 32997 0.00605741 0.0346665 0.039556 Vertex 32998 0.00705252 0.0346309 0.0397936 Vertex 32999 0.00800637 0.0345135 0.0400968 Vertex 33000 0.00904539 0.03456 0.0402645 Vertex 33001 0.0101351 0.0346886 0.0403762 Vertex 33002 0.0110844 0.0345718 0.0406762 Vertex 33003 0.0121734 0.0347014 0.0407838 Vertex 33004 0.0132581 0.0348304 0.0408908 Vertex 33005 0.0143393 0.0349605 0.0410018 Vertex 33006 0.0154275 0.0350916 0.0411096 Vertex 33007 0.0166879 0.0355485 0.0409566 Vertex 33008 0.0179499 0.0360095 0.0408071 Vertex 33009 0.0193853 0.0367967 0.0404 Vertex 33010 -0.0750911 0.110634 0.0449752 Vertex 33011 -0.0461472 0.0695191 0.0407559 Vertex 33012 -0.0771635 0.0705018 0.0227664 Vertex 33013 -0.0845698 0.111358 0.0279354 Vertex 33014 -0.0694123 0.111827 0.045291 Vertex 33015 0.0328934 0.0381571 -2.41096e-05 Vertex 33016 -0.0489211 0.0687544 0.0390214 Vertex 33017 -0.0806729 0.108958 0.0307202 Vertex 33018 -0.0772929 0.117422 0.0514809 Vertex 33019 -0.0688718 0.063973 0.0231175 Vertex 33020 -0.0741812 0.074527 0.0339368 Vertex 33021 -0.0857367 0.111526 0.0418488 Vertex 33022 -0.0900294 0.114549 0.0240977 Vertex 33023 -0.0762889 0.0738479 0.0305832 Vertex 33024 -0.0718306 0.148291 -0.0327712 Vertex 33025 -0.0709615 0.148056 -0.0324394 Vertex 33026 -0.077237 0.0721326 0.0266059 Vertex 33027 -0.0776097 0.0796169 0.0342011 Vertex 33028 -0.0784316 0.0799342 0.0337318 Vertex 33029 -0.0716235 0.0693585 0.0301698 Vertex 33030 -0.0722612 0.0718535 0.0331389 Vertex 33031 -0.0731823 0.109139 0.039466 Vertex 33032 -0.0530638 0.0723343 0.0404003 Vertex 33033 -0.0593755 0.0706339 0.0387044 Vertex 33034 -0.0658455 0.0693268 0.0349111 Vertex 33035 -0.073067 0.0692219 0.0282366 Vertex 33036 -0.0790124 0.0782686 0.0315155 Vertex 33037 -0.0615125 0.0729203 0.0397926 Vertex 33038 -0.0811474 0.0769537 0.0251701 Vertex 33039 -0.0794408 0.0768726 0.0291038 Vertex 33040 -0.0762457 0.0708701 0.0261488 Vertex 33041 -0.0818834 0.109932 0.0368633 Vertex 33042 -0.0783295 0.108958 0.0384425 Vertex 33043 -0.0820552 0.1102 0.0401793 Vertex 33044 -0.0685972 0.0635876 0.000162346 Vertex 33045 -0.0678684 0.063022 0.000880975 Vertex 33046 -0.0670934 0.0625692 0.00143601 Vertex 33047 -0.0663487 0.06206 0.00207137 Vertex 33048 -0.0656059 0.0615317 0.0026003 Vertex 33049 -0.0649369 0.0609076 0.00327394 Vertex 33050 -0.0640613 0.0606361 0.00380817 Vertex 33051 -0.0632614 0.0601538 0.00426714 Vertex 33052 -0.0624172 0.0599054 0.00479638 Vertex 33053 -0.0615968 0.0595411 0.0052883 Vertex 33054 -0.0607324 0.0592584 0.00571875 Vertex 33055 -0.0599121 0.0588939 0.00621161 Vertex 33056 -0.0591334 0.0584459 0.00677121 Vertex 33057 -0.0583127 0.0580812 0.00726379 Vertex 33058 -0.0679573 0.0636968 0.0236258 Vertex 33059 -0.0678369 0.0706443 0.0351197 Vertex 33060 -0.0661037 0.0713259 0.0366501 Vertex 33061 -0.0786437 0.112204 0.0464731 Vertex 33062 -0.0583387 0.0706756 0.0389009 Vertex 33063 -0.0637307 0.0344451 0.0269565 Vertex 33064 -0.0627783 0.0343233 0.0272634 Vertex 33065 -0.0618294 0.0342021 0.0275686 Vertex 33066 -0.0608362 0.0341593 0.0278122 Vertex 33067 -0.0598038 0.0341949 0.0280011 Vertex 33068 -0.0588141 0.0341524 0.0282501 Vertex 33069 -0.0577792 0.0341881 0.0284371 Vertex 33070 -0.0567453 0.0342237 0.02862 Vertex 33071 -0.0557138 0.0342594 0.0288064 Vertex 33072 -0.0546814 0.0342953 0.0289953 Vertex 33073 -0.0536509 0.0343311 0.0291848 Vertex 33074 -0.0526183 0.0343668 0.0293685 Vertex 33075 -0.0515819 0.0344024 0.0295565 Vertex 33076 -0.0505908 0.03436 0.0298011 Vertex 33077 -0.049518 0.0344739 0.029929 Vertex 33078 -0.0485262 0.0344313 0.0301756 Vertex 33079 -0.0474955 0.0344671 0.0303636 Vertex 33080 -0.0464591 0.0345029 0.0305523 Vertex 33081 -0.0454276 0.0345386 0.0307405 Vertex 33082 -0.0444358 0.0344955 0.0309851 Vertex 33083 -0.0434472 0.0344528 0.0312293 Vertex 33084 -0.0424147 0.0344885 0.0314161 Vertex 33085 -0.0414211 0.0344456 0.0316667 Vertex 33086 -0.0404715 0.0343242 0.0319689 Vertex 33087 -0.0394369 0.03436 0.0321562 Vertex 33088 -0.0384034 0.0343958 0.0323426 Vertex 33089 -0.0373724 0.0344314 0.0325332 Vertex 33090 -0.0363397 0.0344675 0.0327184 Vertex 33091 -0.0352216 0.0346633 0.0327857 Vertex 33092 -0.0337394 0.0355643 0.0323212 Vertex 33093 -0.0317094 0.0374952 0.0310681 Vertex 33094 -0.0303619 0.0381166 0.0307902 Vertex 33095 -0.0293203 0.0381642 0.0309659 Vertex 33096 -0.0282335 0.0382933 0.0310718 Vertex 33097 -0.0271496 0.0384219 0.0311819 Vertex 33098 -0.0261534 0.0383869 0.0314189 Vertex 33099 -0.0250671 0.0385158 0.031526 Vertex 33100 -0.0240288 0.0385625 0.0316972 Vertex 33101 -0.0229882 0.0386094 0.0318708 Vertex 33102 -0.0219433 0.0386564 0.0320445 Vertex 33103 -0.020906 0.0387029 0.0322136 Vertex 33104 -0.019905 0.038668 0.0324503 Vertex 33105 -0.0188227 0.0387965 0.0325596 Vertex 33106 -0.0178239 0.0387614 0.0327968 Vertex 33107 -0.0167827 0.0388081 0.0329676 Vertex 33108 -0.015743 0.0388551 0.0331436 Vertex 33109 -0.0147028 0.0389017 0.0333119 Vertex 33110 -0.0136601 0.0389486 0.0334846 Vertex 33111 -0.0126221 0.0389953 0.033657 Vertex 33112 -0.0116226 0.0389602 0.0338935 Vertex 33113 -0.010539 0.0390893 0.0340058 Vertex 33114 -0.00949675 0.039136 0.0341772 Vertex 33115 -0.00850193 0.0391005 0.0344133 Vertex 33116 -0.00746087 0.0391472 0.0345828 Vertex 33117 -0.0064158 0.0391939 0.0347568 Vertex 33118 -0.00542063 0.0391587 0.0349931 Vertex 33119 -0.00437946 0.039206 0.0351678 Vertex 33120 -0.00333997 0.039253 0.0353398 Vertex 33121 -0.00225491 0.0393816 0.0354457 Vertex 33122 -0.00121535 0.0394284 0.0356173 Vertex 33123 -0.000130337 0.0395577 0.0357254 Vertex 33124 -0.00150449 0.0350731 0.0394353 Vertex 33125 -0.000642523 0.0347913 0.0398677 Vertex 33126 0.000357196 0.0347559 0.0401008 Vertex 33127 0.00135578 0.0347199 0.040341 Vertex 33128 0.00230798 0.0346028 0.0406387 Vertex 33129 0.0033481 0.0346494 0.040814 Vertex 33130 0.00434602 0.0346139 0.0410512 Vertex 33131 0.00533966 0.0345787 0.0412861 Vertex 33132 0.00638447 0.0346255 0.0414585 Vertex 33133 0.00742535 0.0346722 0.0416328 Vertex 33134 0.0084218 0.0346373 0.0418695 Vertex 33135 0.00946024 0.0346841 0.0420404 Vertex 33136 0.0105031 0.0347322 0.0422156 Vertex 33137 0.0115864 0.0348612 0.0423222 Vertex 33138 0.0127157 0.0350729 0.0423657 Vertex 33139 0.0138473 0.035286 0.0424107 Vertex 33140 0.0150176 0.0355797 0.04239 Vertex 33141 0.0162371 0.0359566 0.0423025 Vertex 33142 0.0175395 0.0364962 0.0420884 Vertex 33143 0.0191093 0.0375318 0.0414884 Vertex 33144 -0.0571999 0.0684533 0.0375014 Vertex 33145 -0.0690356 0.068492 0.0314599 Vertex 33146 -0.0841907 0.078353 0.0198111 Vertex 33147 -0.0915979 0.115467 0.0229868 Vertex 33148 -0.089042 0.112536 0.0205154 Vertex 33149 -0.0703751 0.112557 0.0480687 Vertex 33150 -0.0802487 0.109228 0.032428 Vertex 33151 -0.0709316 0.147597 -0.0300096 Vertex 33152 -0.0904058 0.114907 0.0416618 Vertex 33153 -0.0709978 0.0698591 0.0316215 Vertex 33154 -0.0736852 0.109489 0.0408578 Vertex 33155 -0.0575351 0.0727864 0.0407731 Vertex 33156 -0.0671149 0.0634665 0.0239226 Vertex 33157 -0.0797379 0.0738711 0.0228323 Vertex 33158 -0.0807044 0.109603 0.0338418 Vertex 33159 -0.0815406 0.110006 0.0333062 Vertex 33160 -0.0863885 0.112851 0.0441987 Vertex 33161 -0.0776245 0.0703136 0.0210685 Vertex 33162 -0.0539828 0.0700164 0.038652 Vertex 33163 -0.0780099 0.114072 0.0486721 Vertex 33164 -0.0883907 0.115479 0.0451949 Vertex 33165 -0.0662482 0.063188 0.0243484 Vertex 33166 -0.0681894 0.0774836 0.0397476 Vertex 33167 -0.0796979 0.108952 0.0363543 Vertex 33168 -0.072774 0.10871 0.0380686 Vertex 33169 -0.0702718 0.110271 0.0410027 Vertex 33170 -0.0737602 0.111876 0.0478461 Vertex 33171 -0.0819685 0.0791215 0.0284136 Vertex 33172 -0.0741385 0.0703655 0.0287707 Vertex 33173 -0.0663881 0.0677373 0.0326703 Vertex 33174 -0.0788364 0.0742331 0.0262211 Vertex 33175 -0.0653424 0.0629827 0.0247148 Vertex 33176 -0.0621483 0.0699034 0.036962 Vertex 33177 -0.0764561 0.106685 0.0353026 Vertex 33178 -0.0692702 0.0635509 0.00193084 Vertex 33179 -0.0686182 0.0628687 0.0026871 Vertex 33180 -0.0679313 0.0622594 0.0032802 Vertex 33181 -0.0671124 0.0618759 0.00376788 Vertex 33182 -0.0664685 0.0611724 0.00451786 Vertex 33183 -0.0656404 0.0608118 0.00501538 Vertex 33184 -0.0647331 0.0606321 0.00547671 Vertex 33185 -0.0639975 0.0601011 0.00610183 Vertex 33186 -0.0631791 0.0597373 0.0065938 Vertex 33187 -0.0623104 0.0594537 0.00702264 Vertex 33188 -0.0614906 0.0590888 0.0075192 Vertex 33189 -0.060628 0.0588072 0.00794551 Vertex 33190 -0.059761 0.058524 0.00837605 Vertex 33191 -0.0588983 0.0582416 0.00880815 Vertex 33192 -0.0580325 0.0579587 0.00923969 Vertex 33193 -0.0571684 0.0576767 0.00966588 Vertex 33194 -0.0874433 0.114073 0.0447649 Vertex 33195 -0.0805357 0.113778 0.0465863 Vertex 33196 -0.0698996 0.147518 -0.0298062 Vertex 33197 -0.0652367 0.0347413 0.0281307 Vertex 33198 -0.064327 0.034541 0.0284972 Vertex 33199 -0.0633751 0.0344193 0.0288044 Vertex 33200 -0.0624258 0.0342984 0.0291094 Vertex 33201 -0.0614326 0.0342559 0.0293559 Vertex 33202 -0.0604029 0.0342918 0.0295439 Vertex 33203 -0.059412 0.0342492 0.0297869 Vertex 33204 -0.0583799 0.0342852 0.0299739 Vertex 33205 -0.0573888 0.0342428 0.0302238 Vertex 33206 -0.0563521 0.0342791 0.0304121 Vertex 33207 -0.0552807 0.0343936 0.0305403 Vertex 33208 -0.0542898 0.0343509 0.030786 Vertex 33209 -0.0532563 0.0343869 0.0309731 Vertex 33210 -0.0522635 0.0343446 0.0312176 Vertex 33211 -0.0511913 0.034459 0.0313456 Vertex 33212 -0.050201 0.0344166 0.0315946 Vertex 33213 -0.0491641 0.0344528 0.0317811 Vertex 33214 -0.0481341 0.0344887 0.0319692 Vertex 33215 -0.0470988 0.0345244 0.0321531 Vertex 33216 -0.0461113 0.034482 0.0324006 Vertex 33217 -0.0450377 0.0345968 0.0325315 Vertex 33218 -0.0440834 0.0344755 0.0328349 Vertex 33219 -0.0430533 0.0345113 0.0330204 Vertex 33220 -0.0420606 0.0344689 0.0332688 Vertex 33221 -0.0410286 0.0345047 0.0334549 Vertex 33222 -0.0400348 0.0344619 0.0337052 Vertex 33223 -0.0390449 0.0344196 0.0339502 Vertex 33224 -0.0380117 0.0344553 0.0341354 Vertex 33225 -0.0370213 0.0344129 0.0343812 Vertex 33226 -0.0359892 0.0344491 0.0345711 Vertex 33227 -0.0348346 0.0347214 0.0345782 Vertex 33228 -0.0325248 0.0371997 0.032926 Vertex 33229 -0.0309847 0.0381919 0.0323901 Vertex 33230 -0.029988 0.0381577 0.0326274 Vertex 33231 -0.0288195 0.0384506 0.0326078 Vertex 33232 -0.0277318 0.0385796 0.0327127 Vertex 33233 -0.0267368 0.0385445 0.0329521 Vertex 33234 -0.0256953 0.0385914 0.0331228 Vertex 33235 -0.0246526 0.0386383 0.0332956 Vertex 33236 -0.0236112 0.0386852 0.0334692 Vertex 33237 -0.0225694 0.0387321 0.0336407 Vertex 33238 -0.0215296 0.0387791 0.0338148 Vertex 33239 -0.0204882 0.0388257 0.0339872 Vertex 33240 -0.019491 0.0387907 0.0342254 Vertex 33241 -0.018449 0.0388382 0.0343981 Vertex 33242 -0.0173678 0.0389666 0.0345056 Vertex 33243 -0.0163248 0.0390132 0.0346782 Vertex 33244 -0.0153278 0.0389782 0.0349161 Vertex 33245 -0.0142885 0.0390252 0.0350884 Vertex 33246 -0.0132478 0.039072 0.0352601 Vertex 33247 -0.0122029 0.0391189 0.0354325 Vertex 33248 -0.0111634 0.0391658 0.035606 Vertex 33249 -0.0101249 0.0392126 0.0357767 Vertex 33250 -0.00908444 0.0392597 0.0359512 Vertex 33251 -0.00808629 0.0392239 0.0361848 Vertex 33252 -0.00704598 0.0392708 0.0363567 Vertex 33253 -0.00596208 0.0394 0.0364646 Vertex 33254 -0.00496131 0.0393649 0.0367022 Vertex 33255 -0.00388013 0.0394939 0.0368098 Vertex 33256 -0.00525238 0.0350087 0.0405181 Vertex 33257 -0.0042992 0.0348909 0.0408189 Vertex 33258 -0.00334607 0.0347739 0.0411187 Vertex 33259 -0.00230838 0.0348204 0.04129 Vertex 33260 -0.00139702 0.0346206 0.0416594 Vertex 33261 -0.000357095 0.0346671 0.0418309 Vertex 33262 0.000637516 0.0346318 0.0420689 Vertex 33263 0.00168043 0.0346784 0.042239 Vertex 33264 0.00263147 0.0345612 0.0425417 Vertex 33265 0.00371763 0.0346901 0.0426483 Vertex 33266 0.00471758 0.0346554 0.0428856 Vertex 33267 0.00579855 0.0347845 0.042995 Vertex 33268 0.00679863 0.0347495 0.0432322 Vertex 33269 0.00783805 0.034796 0.0434029 Vertex 33270 0.00892319 0.0349264 0.0435129 Vertex 33271 0.0100519 0.0351376 0.0435561 Vertex 33272 0.0111358 0.0352671 0.0436641 Vertex 33273 0.0123077 0.035562 0.0436453 Vertex 33274 0.013481 0.0358562 0.0436245 Vertex 33275 0.0146552 0.0361528 0.0436042 Vertex 33276 0.0159163 0.0366121 0.0434543 Vertex 33277 0.017353 0.0374009 0.0430484 Vertex 33278 -0.054142 0.0722337 0.0402304 Vertex 33279 -0.0592544 0.0696245 0.0378273 Vertex 33280 -0.0791696 0.110508 0.0441428 Vertex 33281 -0.0866023 0.111811 0.0414218 Vertex 33282 -0.0783316 0.0788746 0.032897 Vertex 33283 -0.0656715 0.0684169 0.0339875 Vertex 33284 -0.0798351 0.078638 0.0310296 Vertex 33285 -0.0718144 0.147892 -0.0304457 Vertex 33286 -0.0774544 0.072993 0.0275707 Vertex 33287 -0.074969 0.105672 0.0364824 Vertex 33288 -0.0897323 0.115129 0.0291209 Vertex 33289 -0.0736758 0.108402 0.0380105 Vertex 33290 -0.0917527 0.113836 0.0170127 Vertex 33291 -0.0778809 0.0759658 0.0302027 Vertex 33292 -0.0763852 0.114637 0.0504008 Vertex 33293 -0.0754368 0.114522 0.050709 Vertex 33294 -0.0689113 0.147966 -0.0319204 Vertex 33295 -0.0644389 0.0627719 0.0250864 Vertex 33296 -0.0573916 0.0718042 0.0398933 Vertex 33297 -0.0628591 0.0679841 0.0349557 Vertex 33298 -0.0815439 0.112456 0.0456165 Vertex 33299 -0.089106 0.114375 0.0298659 Vertex 33300 -0.0787919 0.108745 0.0367247 Vertex 33301 -0.0716176 0.109058 0.0379622 Vertex 33302 -0.0635722 0.0753573 0.0407707 Vertex 33303 -0.081811 0.11456 0.047449 Vertex 33304 -0.0733102 0.0700068 0.0292571 Vertex 33305 -0.0543842 0.064934 0.034129 Vertex 33306 -0.0762359 0.113613 0.0494664 Vertex 33307 -0.0710378 0.113905 0.0504272 Vertex 33308 -0.0870678 0.11107 0.0203515 Vertex 33309 -0.08807 0.113074 0.0239452 Vertex 33310 -0.0880799 0.113511 0.0432934 Vertex 33311 -0.063535 0.0741856 0.0400495 Vertex 33312 -0.0712771 0.0648585 0.00216525 Vertex 33313 -0.0707579 0.0639499 0.00302292 Vertex 33314 -0.0701244 0.0632147 0.00385793 Vertex 33315 -0.0693763 0.0627096 0.00438827 Vertex 33316 -0.0686887 0.0620968 0.00507892 Vertex 33317 -0.0679779 0.0615132 0.00568001 Vertex 33318 -0.0671756 0.0610764 0.00625684 Vertex 33319 -0.0663134 0.0608279 0.00678018 Vertex 33320 -0.0654938 0.0604629 0.00727621 Vertex 33321 -0.064714 0.0600149 0.00783247 Vertex 33322 -0.0638509 0.0597328 0.00826283 Vertex 33323 -0.0629834 0.0594485 0.00869517 Vertex 33324 -0.0622043 0.0590015 0.0092504 Vertex 33325 -0.0613392 0.0587193 0.00967832 Vertex 33326 -0.0604332 0.0585193 0.0100455 Vertex 33327 -0.0596113 0.0581543 0.0105384 Vertex 33328 -0.0587034 0.0579543 0.010904 Vertex 33329 -0.0577953 0.0577539 0.0112722 Vertex 33330 -0.056974 0.0573893 0.011763 Vertex 33331 -0.0561079 0.0571065 0.0121919 Vertex 33332 -0.0763966 0.0748983 0.0314167 Vertex 33333 -0.0657931 0.0349145 0.0296068 Vertex 33334 -0.0649682 0.034557 0.0300942 Vertex 33335 -0.0640156 0.0344353 0.0303981 Vertex 33336 -0.0630637 0.0343143 0.0307056 Vertex 33337 -0.0620323 0.0343503 0.0308946 Vertex 33338 -0.0610813 0.0342293 0.0311986 Vertex 33339 -0.0600467 0.0342661 0.0313871 Vertex 33340 -0.0589753 0.0343808 0.0315144 Vertex 33341 -0.0579822 0.0343384 0.0317603 Vertex 33342 -0.0569508 0.0343746 0.0319473 Vertex 33343 -0.055962 0.0343325 0.0321978 Vertex 33344 -0.0548852 0.0344475 0.0323271 Vertex 33345 -0.0538957 0.0344051 0.0325721 Vertex 33346 -0.0528594 0.0344415 0.0327571 Vertex 33347 -0.0518302 0.0344778 0.0329457 Vertex 33348 -0.0507965 0.0345143 0.033135 Vertex 33349 -0.0497628 0.0345507 0.0333201 Vertex 33350 -0.0487306 0.0345868 0.0335095 Vertex 33351 -0.0477419 0.0345444 0.0337565 Vertex 33352 -0.0467094 0.0345808 0.0339444 Vertex 33353 -0.0457163 0.0345386 0.0341935 Vertex 33354 -0.0446433 0.0346533 0.0343218 Vertex 33355 -0.0436529 0.0346111 0.0345638 Vertex 33356 -0.0426992 0.0344898 0.0348747 Vertex 33357 -0.0416698 0.0345261 0.0350582 Vertex 33358 -0.0406764 0.0344836 0.0353061 Vertex 33359 -0.0396848 0.0344413 0.0355548 Vertex 33360 -0.0386513 0.0344774 0.0357393 Vertex 33361 -0.0376617 0.0344352 0.0359896 Vertex 33362 -0.0366298 0.0344715 0.0361774 Vertex 33363 -0.0356761 0.0343506 0.0364799 Vertex 33364 -0.0346028 0.0344648 0.0366099 Vertex 33365 -0.0336564 0.0343441 0.0369141 Vertex 33366 -0.030565 0.0383245 0.0341404 Vertex 33367 -0.0295276 0.0383617 0.0343291 Vertex 33368 -0.0284001 0.0385729 0.034376 Vertex 33369 -0.0273153 0.0387018 0.0344821 Vertex 33370 -0.0263193 0.0386673 0.0347214 Vertex 33371 -0.0251898 0.0388783 0.0347661 Vertex 33372 -0.0241934 0.0388427 0.0350005 Vertex 33373 -0.0231943 0.0388081 0.0352395 Vertex 33374 -0.0221125 0.0389367 0.0353489 Vertex 33375 -0.0211148 0.0389017 0.0355855 Vertex 33376 -0.0200738 0.0389483 0.0357554 Vertex 33377 -0.0190315 0.0389958 0.035931 Vertex 33378 -0.0179472 0.0391243 0.0360362 Vertex 33379 -0.0169495 0.0390889 0.0362738 Vertex 33380 -0.0159529 0.0390542 0.0365141 Vertex 33381 -0.0149109 0.0391012 0.0366853 Vertex 33382 -0.0138299 0.0392302 0.0367944 Vertex 33383 -0.0127855 0.0392769 0.0369668 Vertex 33384 -0.0117893 0.0392416 0.0372019 Vertex 33385 -0.0107515 0.039289 0.0373765 Vertex 33386 -0.00966712 0.0394179 0.0374824 Vertex 33387 -0.00862621 0.0394649 0.0376552 Vertex 33388 -0.00758529 0.0395118 0.037828 Vertex 33389 -0.00891681 0.0351082 0.0414685 Vertex 33390 -0.00809599 0.0347439 0.04196 Vertex 33391 -0.00700917 0.0348727 0.042072 Vertex 33392 -0.00601124 0.0348376 0.0423067 Vertex 33393 -0.00501719 0.0348021 0.0425449 Vertex 33394 -0.00410488 0.0346022 0.0429088 Vertex 33395 -0.00306313 0.0346488 0.0430839 Vertex 33396 -0.00206852 0.0346139 0.0433223 Vertex 33397 -0.00102573 0.0346607 0.0434939 Vertex 33398 -3.10615e-05 0.0346258 0.0437307 Vertex 33399 0.0010095 0.0346721 0.0439005 Vertex 33400 0.00205109 0.0347195 0.0440743 Vertex 33401 0.00313658 0.0348497 0.0441849 Vertex 33402 0.00417967 0.034897 0.044357 Vertex 33403 0.00526525 0.0350275 0.0444668 Vertex 33404 0.006345 0.0351555 0.0445736 Vertex 33405 0.00743122 0.0352845 0.0446812 Vertex 33406 0.00856046 0.0354979 0.0447263 Vertex 33407 0.00969167 0.0357093 0.0447693 Vertex 33408 0.010861 0.0360066 0.0447493 Vertex 33409 0.0120758 0.0363869 0.044646 Vertex 33410 0.0133269 0.036855 0.044466 Vertex 33411 0.0161104 0.038261 0.0437952 Vertex 33412 -0.0610541 0.068813 0.0363796 Vertex 33413 -0.0861936 0.111308 0.0401352 Vertex 33414 -0.0750181 0.0761727 0.0341343 Vertex 33415 -0.0480338 0.0685335 0.039429 Vertex 33416 -0.0589666 0.06768 0.0360494 Vertex 33417 -0.0804383 0.111326 0.0449881 Vertex 33418 -0.0654246 0.0794919 0.0421931 Vertex 33419 -0.075527 0.0733333 0.0311756 Vertex 33420 -0.0715441 0.112225 0.0480665 Vertex 33421 -0.0777092 0.07194 0.024923 Vertex 33422 -0.0804325 0.078146 0.029561 Vertex 33423 -0.0520638 0.0723523 0.0405753 Vertex 33424 -0.0581584 0.0685383 0.037238 Vertex 33425 -0.0742409 0.113562 0.0499634 Vertex 33426 -0.089862 0.115281 0.0432597 Vertex 33427 -0.0572298 0.0696188 0.0382761 Vertex 33428 -0.0653574 0.0733073 0.0386226 Vertex 33429 -0.0905758 0.113954 0.0388293 Vertex 33430 -0.0786032 0.107051 0.0327104 Vertex 33431 -0.0878029 0.112934 0.0313303 Vertex 33432 -0.0884672 0.113635 0.0306037 Vertex 33433 -0.0778425 0.108614 0.0370385 Vertex 33434 -0.0634657 0.0730594 0.0392535 Vertex 33435 -0.062597 0.0740287 0.040345 Vertex 33436 -0.0796395 0.11488 0.0476725 Vertex 33437 -0.0634922 0.0626336 0.0253957 Vertex 33438 -0.0262513 0.0350951 0.0517484 Vertex 33439 -0.07902 0.0751794 0.0271309 Vertex 33440 -0.055064 0.0698751 0.038539 Vertex 33441 -0.0781504 0.0736081 0.0268981 Vertex 33442 -0.0739244 0.0668664 0.00165643 Vertex 33443 -0.0733588 0.0659821 0.00263497 Vertex 33444 -0.0726455 0.0655594 0.00286688 Vertex 33445 -0.0720741 0.0646161 0.00403373 Vertex 33446 -0.0714154 0.063966 0.00470687 Vertex 33447 -0.0708238 0.0631793 0.00551684 Vertex 33448 -0.0701142 0.0625797 0.0062174 Vertex 33449 -0.0694635 0.0618968 0.00696654 Vertex 33450 -0.068707 0.0613453 0.00749837 Vertex 33451 -0.0678958 0.0610238 0.00808464 Vertex 33452 -0.0670227 0.0607355 0.00842954 Vertex 33453 -0.0662075 0.060375 0.00901189 Vertex 33454 -0.0653409 0.0600919 0.00943789 Vertex 33455 -0.0645186 0.0597262 0.00993302 Vertex 33456 -0.0636975 0.0593607 0.0104272 Vertex 33457 -0.0629229 0.058915 0.0109817 Vertex 33458 -0.0620129 0.0587144 0.0113478 Vertex 33459 -0.0611468 0.0584317 0.0117762 Vertex 33460 -0.0602407 0.058232 0.0121428 Vertex 33461 -0.0593728 0.0579489 0.0125735 Vertex 33462 -0.0584669 0.0577494 0.0129387 Vertex 33463 -0.0575997 0.0574661 0.0133658 Vertex 33464 -0.0566913 0.0572662 0.0137312 Vertex 33465 -0.081904 0.115723 0.0482136 Vertex 33466 -0.0663511 0.0350877 0.0310837 Vertex 33467 -0.0655235 0.0347285 0.0315692 Vertex 33468 -0.0646561 0.0344494 0.0319916 Vertex 33469 -0.0637038 0.0343279 0.0323025 Vertex 33470 -0.0626706 0.0343644 0.032487 Vertex 33471 -0.061676 0.0343224 0.032737 Vertex 33472 -0.0606463 0.0343588 0.0329219 Vertex 33473 -0.0596554 0.0343168 0.0331724 Vertex 33474 -0.0585811 0.0344322 0.0332983 Vertex 33475 -0.0575877 0.0343902 0.0335477 Vertex 33476 -0.0565591 0.0344267 0.0337344 Vertex 33477 -0.0555243 0.0344634 0.0339194 Vertex 33478 -0.0544908 0.0344999 0.0341095 Vertex 33479 -0.0534982 0.0344579 0.0343548 Vertex 33480 -0.0524675 0.0344946 0.0345461 Vertex 33481 -0.0514769 0.0344526 0.0347935 Vertex 33482 -0.0504041 0.0345678 0.0349233 Vertex 33483 -0.0494127 0.0345257 0.0351696 Vertex 33484 -0.0483792 0.0345623 0.0353569 Vertex 33485 -0.0473867 0.0345201 0.0356021 Vertex 33486 -0.046355 0.0345569 0.0357917 Vertex 33487 -0.0453211 0.0345932 0.035979 Vertex 33488 -0.0443307 0.0345511 0.0362271 Vertex 33489 -0.0433008 0.0345877 0.0364134 Vertex 33490 -0.0423463 0.0344667 0.0367209 Vertex 33491 -0.0413155 0.0345032 0.0369079 Vertex 33492 -0.0403231 0.0344611 0.0371557 Vertex 33493 -0.0392913 0.0344977 0.0373408 Vertex 33494 -0.0382612 0.0345343 0.0375294 Vertex 33495 -0.0372682 0.0344921 0.0377782 Vertex 33496 -0.0362363 0.0345287 0.0379647 Vertex 33497 -0.035201 0.0345651 0.0381519 Vertex 33498 -0.0342132 0.0345231 0.0384015 Vertex 33499 -0.0332219 0.0344808 0.0386469 Vertex 33500 -0.032272 0.0343596 0.0389523 Vertex 33501 -0.0290584 0.0385824 0.0360072 Vertex 33502 -0.028064 0.0385407 0.0362565 Vertex 33503 -0.0269007 0.0388242 0.0362546 Vertex 33504 -0.0258142 0.0389536 0.0363636 Vertex 33505 -0.0247725 0.0390001 0.0365321 Vertex 33506 -0.0237781 0.0389651 0.0367703 Vertex 33507 -0.0227345 0.0390118 0.0369431 Vertex 33508 -0.021742 0.0389771 0.0371835 Vertex 33509 -0.0206534 0.0391059 0.0372895 Vertex 33510 -0.0196569 0.0390707 0.0375255 Vertex 33511 -0.0186162 0.0391183 0.0377018 Vertex 33512 -0.0175335 0.0392471 0.0378093 Vertex 33513 -0.0165344 0.0392124 0.0380479 Vertex 33514 -0.0154933 0.0392591 0.0382209 Vertex 33515 -0.0145 0.0392233 0.0384538 Vertex 33516 -0.0134154 0.0393527 0.0385623 Vertex 33517 -0.0123306 0.0394822 0.0386711 Vertex 33518 -0.0112898 0.0395292 0.0388441 Vertex 33519 -0.0126507 0.0350556 0.0425263 Vertex 33520 -0.0117815 0.0347775 0.0429519 Vertex 33521 -0.0107484 0.0348144 0.0431359 Vertex 33522 -0.00971651 0.0348541 0.0433186 Vertex 33523 -0.00876366 0.0347363 0.0436201 Vertex 33524 -0.00781043 0.0346187 0.0439246 Vertex 33525 -0.00681305 0.0345833 0.0441587 Vertex 33526 -0.00576935 0.0346302 0.0443351 Vertex 33527 -0.00477205 0.0345951 0.0445699 Vertex 33528 -0.0037319 0.0346421 0.0447442 Vertex 33529 -0.00273397 0.0346073 0.0449802 Vertex 33530 -0.00165204 0.0347369 0.0450897 Vertex 33531 -0.000565033 0.0348667 0.0451983 Vertex 33532 0.000515748 0.0349973 0.0453092 Vertex 33533 0.00160174 0.0351275 0.0454175 Vertex 33534 0.00268547 0.035256 0.0455248 Vertex 33535 0.00381747 0.0354686 0.0455691 Vertex 33536 0.00494458 0.0356784 0.0456125 Vertex 33537 0.00607351 0.0358936 0.0456569 Vertex 33538 0.00724322 0.0361893 0.0456372 Vertex 33539 0.00849938 0.0366585 0.0454484 Vertex 33540 0.00988706 0.0373676 0.0450724 Vertex 33541 0.0113285 0.0381477 0.0446991 Vertex 33542 -0.081733 0.0783168 0.0273929 Vertex 33543 -0.0810037 0.0777776 0.0280061 Vertex 33544 -0.0820788 0.0765181 0.0218286 Vertex 33545 -0.0751616 0.0715622 0.0292788 Vertex 33546 -0.0706266 0.111419 0.0453421 Vertex 33547 -0.0816004 0.110405 0.0418977 Vertex 33548 -0.0612601 0.0653881 0.0322823 Vertex 33549 -0.0643109 0.0721294 0.0381075 Vertex 33550 -0.0718543 0.111061 0.0453722 Vertex 33551 -0.0707478 0.147309 -0.0278341 Vertex 33552 -0.0891862 0.112803 0.0347042 Vertex 33553 -0.0876394 0.113262 0.0257017 Vertex 33554 -0.062502 0.0625858 0.0256444 Vertex 33555 -0.0622566 0.0709345 0.0378148 Vertex 33556 -0.0806691 0.107746 0.0299304 Vertex 33557 -0.0797382 0.10948 0.0394939 Vertex 33558 -0.0781507 0.115089 0.0495991 Vertex 33559 -0.0863239 0.111846 0.0325401 Vertex 33560 -0.0871035 0.11231 0.0319974 Vertex 33561 -0.0768829 0.108524 0.037335 Vertex 33562 -0.0719223 0.112846 0.049279 Vertex 33563 -0.057026 0.0675163 0.0366088 Vertex 33564 -0.0897032 0.113874 0.0229056 Vertex 33565 -0.0768434 0.109781 0.0434593 Vertex 33566 -0.0615513 0.0624603 0.0259481 Vertex 33567 -0.0786369 0.113551 0.047197 Vertex 33568 -0.0764308 0.11585 0.051182 Vertex 33569 -0.0745042 0.0669844 0.00328572 Vertex 33570 -0.0738976 0.0662178 0.00410027 Vertex 33571 -0.0732998 0.0654414 0.00491231 Vertex 33572 -0.0726748 0.0647223 0.00565049 Vertex 33573 -0.0720537 0.0640001 0.00639175 Vertex 33574 -0.0714426 0.0632696 0.00712846 Vertex 33575 -0.0707871 0.0625817 0.00788057 Vertex 33576 -0.0700956 0.06197 0.00856658 Vertex 33577 -0.0692976 0.0615474 0.00912978 Vertex 33578 -0.0684765 0.061182 0.0096252 Vertex 33579 -0.0676975 0.0607342 0.0101856 Vertex 33580 -0.0668328 0.0604514 0.0106116 Vertex 33581 -0.0660555 0.0600044 0.0111686 Vertex 33582 -0.065193 0.0597221 0.0116014 Vertex 33583 -0.0643723 0.0593574 0.0120942 Vertex 33584 -0.0635072 0.0590749 0.0125217 Vertex 33585 -0.0625957 0.0588736 0.0128867 Vertex 33586 -0.0617744 0.0585089 0.0133805 Vertex 33587 -0.060863 0.0583083 0.0137477 Vertex 33588 -0.0599544 0.0581084 0.014112 Vertex 33589 -0.0590022 0.0579904 0.014414 Vertex 33590 -0.0580927 0.0577897 0.0147789 Vertex 33591 -0.0572305 0.057508 0.0152056 Vertex 33592 -0.0599561 0.0677317 0.0357891 Vertex 33593 -0.0667813 0.0354951 0.0323861 Vertex 33594 -0.0660379 0.0349778 0.0329828 Vertex 33595 -0.0651684 0.0346977 0.0334093 Vertex 33596 -0.0642567 0.0344972 0.033776 Vertex 33597 -0.0633069 0.0343768 0.0340823 Vertex 33598 -0.0622744 0.0344133 0.0342699 Vertex 33599 -0.0612826 0.0343712 0.0345145 Vertex 33600 -0.0602915 0.0343294 0.0347628 Vertex 33601 -0.0592597 0.0343664 0.034953 Vertex 33602 -0.0582249 0.0344034 0.0351394 Vertex 33603 -0.0571923 0.0344404 0.0353306 Vertex 33604 -0.0561609 0.0344771 0.0355158 Vertex 33605 -0.0551719 0.0344352 0.0357625 Vertex 33606 -0.0541372 0.0344723 0.0359505 Vertex 33607 -0.0531047 0.0345095 0.0361399 Vertex 33608 -0.0520334 0.0346252 0.0362685 Vertex 33609 -0.0510409 0.034583 0.0365198 Vertex 33610 -0.0500491 0.0345412 0.0367666 Vertex 33611 -0.0490182 0.0345781 0.0369526 Vertex 33612 -0.0479854 0.0346149 0.0371396 Vertex 33613 -0.0469913 0.0345734 0.0373898 Vertex 33614 -0.0459209 0.0346888 0.0375199 Vertex 33615 -0.04493 0.0346468 0.0377647 Vertex 33616 -0.0439777 0.0345259 0.038072 Vertex 33617 -0.0429452 0.0345628 0.0382617 Vertex 33618 -0.0419532 0.0345214 0.0385087 Vertex 33619 -0.0408786 0.0346362 0.0386374 Vertex 33620 -0.0399319 0.0345158 0.0389424 Vertex 33621 -0.0388999 0.0345526 0.0391301 Vertex 33622 -0.0379081 0.0345108 0.0393807 Vertex 33623 -0.0368752 0.0345479 0.0395694 Vertex 33624 -0.0358426 0.0345846 0.0397566 Vertex 33625 -0.0348513 0.0345425 0.0400019 Vertex 33626 -0.0338188 0.0345795 0.040191 Vertex 33627 -0.0327846 0.0346162 0.0403814 Vertex 33628 -0.0318359 0.0344957 0.0406866 Vertex 33629 -0.0308039 0.0345326 0.0408762 Vertex 33630 -0.0298138 0.0344903 0.0411187 Vertex 33631 -0.0265191 0.0388768 0.0380618 Vertex 33632 -0.0254455 0.0389929 0.0381911 Vertex 33633 -0.0244003 0.0390404 0.0383653 Vertex 33634 -0.02332 0.0391695 0.0384733 Vertex 33635 -0.0223231 0.0391341 0.0387105 Vertex 33636 -0.0212823 0.0391811 0.0388836 Vertex 33637 -0.0202415 0.0392282 0.0390567 Vertex 33638 -0.0192007 0.0392753 0.0392298 Vertex 33639 -0.0181599 0.0393223 0.0394029 Vertex 33640 -0.0171143 0.0393698 0.0395766 Vertex 33641 -0.0160344 0.0394989 0.0396851 Vertex 33642 -0.0149936 0.0395459 0.0398583 Vertex 33643 -0.0164714 0.0348128 0.0436847 Vertex 33644 -0.0154789 0.0347707 0.0439361 Vertex 33645 -0.0144467 0.0348076 0.0441223 Vertex 33646 -0.0134564 0.0347657 0.0443699 Vertex 33647 -0.0124237 0.0348026 0.0445556 Vertex 33648 -0.0114338 0.0347606 0.0448027 Vertex 33649 -0.0104428 0.0347186 0.0450504 Vertex 33650 -0.00945158 0.0346766 0.0453022 Vertex 33651 -0.00845839 0.0346349 0.045549 Vertex 33652 -0.00742751 0.0346718 0.0457358 Vertex 33653 -0.00639449 0.0347093 0.0459249 Vertex 33654 -0.00535711 0.0347531 0.0461025 Vertex 33655 -0.00427283 0.034883 0.0462122 Vertex 33656 -0.00318743 0.0350129 0.0463208 Vertex 33657 -0.00210217 0.035143 0.0464295 Vertex 33658 -0.000973441 0.0353569 0.0464761 Vertex 33659 0.000197079 0.035652 0.0464555 Vertex 33660 0.00132313 0.0358703 0.0464707 Vertex 33661 0.00252922 0.0362636 0.0463395 Vertex 33662 0.00379004 0.0367184 0.046186 Vertex 33663 0.00513012 0.0373402 0.0458408 Vertex 33664 0.00652975 0.0380351 0.0455331 Vertex 33665 0.0078895 0.0386539 0.0453509 Vertex 33666 -0.0777879 0.113218 0.0476364 Vertex 33667 -0.0838815 0.111187 0.0425305 Vertex 33668 -0.0838195 0.113254 0.0462465 Vertex 33669 -0.0758694 0.0777615 0.0343673 Vertex 33670 -0.0676678 0.0697151 0.0342008 Vertex 33671 -0.0689139 0.148999 -0.0367601 Vertex 33672 -0.077502 0.0785105 0.0333799 Vertex 33673 -0.0757282 0.0754387 0.0328339 Vertex 33674 -0.0605914 0.0623502 0.0262507 Vertex 33675 -0.0903944 0.113745 0.0354564 Vertex 33676 -0.0538466 0.0665391 0.0363755 Vertex 33677 -0.060098 0.0687043 0.0366734 Vertex 33678 -0.0905017 0.114314 0.0223543 Vertex 33679 -0.0696524 0.0680017 0.0300044 Vertex 33680 -0.083006 0.110313 0.0398706 Vertex 33681 -0.0857201 0.113489 0.0456231 Vertex 33682 -0.0833762 0.111067 0.0302504 Vertex 33683 -0.0714347 0.109953 0.0409933 Vertex 33684 -0.0796554 0.0776931 0.0301108 Vertex 33685 -0.0855432 0.111388 0.0330811 Vertex 33686 -0.059111 0.0686528 0.0369372 Vertex 33687 -0.0667659 0.0664754 0.0301739 Vertex 33688 -0.0681691 0.0682156 0.031879 Vertex 33689 -0.0694619 0.0701676 0.0334316 Vertex 33690 -0.0770271 0.0743283 0.0300122 Vertex 33691 -0.0596429 0.0622343 0.0265494 Vertex 33692 -0.0761752 0.110468 0.0448594 Vertex 33693 -0.0756542 0.0679921 0.00394259 Vertex 33694 -0.0751265 0.0670609 0.00488552 Vertex 33695 -0.0744851 0.0663284 0.00571192 Vertex 33696 -0.0738147 0.065744 0.00631032 Vertex 33697 -0.0732519 0.0648877 0.00719031 Vertex 33698 -0.0726615 0.0640995 0.00799778 Vertex 33699 -0.0720199 0.063399 0.00874547 Vertex 33700 -0.0713305 0.0628284 0.00935991 Vertex 33701 -0.0706528 0.0621972 0.0100461 Vertex 33702 -0.0699138 0.0616664 0.0106715 Vertex 33703 -0.0691331 0.0612207 0.0112337 Vertex 33704 -0.0683512 0.0607717 0.0117847 Vertex 33705 -0.0675058 0.060447 0.0122781 Vertex 33706 -0.06664 0.0601639 0.0127094 Vertex 33707 -0.0658202 0.0597996 0.0132017 Vertex 33708 -0.0649536 0.0595166 0.0136311 Vertex 33709 -0.0640428 0.0593154 0.0139941 Vertex 33710 -0.0631802 0.0590341 0.0144269 Vertex 33711 -0.0622707 0.058834 0.014793 Vertex 33712 -0.0613578 0.0586321 0.0151557 Vertex 33713 -0.0604511 0.0584329 0.0155226 Vertex 33714 -0.0595413 0.0582322 0.0158865 Vertex 33715 -0.0586314 0.0580318 0.0162523 Vertex 33716 -0.0577255 0.0578321 0.0166151 Vertex 33717 -0.090178 0.113449 0.0375353 Vertex 33718 -0.0759857 0.112794 0.0483899 Vertex 33719 -0.0664501 0.0353918 0.0342807 Vertex 33720 -0.0657944 0.0348418 0.0348835 Vertex 33721 -0.0648137 0.0346657 0.0352478 Vertex 33722 -0.0639025 0.0344657 0.0356117 Vertex 33723 -0.0628707 0.0345025 0.0358026 Vertex 33724 -0.0619192 0.0343817 0.0361087 Vertex 33725 -0.0609319 0.0343399 0.0363539 Vertex 33726 -0.0598965 0.0343774 0.0365453 Vertex 33727 -0.0588626 0.0344147 0.0367317 Vertex 33728 -0.0578317 0.0344516 0.0369209 Vertex 33729 -0.0568399 0.0344097 0.0371692 Vertex 33730 -0.0558475 0.0343686 0.0374162 Vertex 33731 -0.054778 0.0344845 0.0375447 Vertex 33732 -0.0537852 0.0344427 0.037794 Vertex 33733 -0.0527544 0.03448 0.0379838 Vertex 33734 -0.0516781 0.0345962 0.0381142 Vertex 33735 -0.0506856 0.0345547 0.0383582 Vertex 33736 -0.0496528 0.0345916 0.0385506 Vertex 33737 -0.048662 0.0345502 0.0387985 Vertex 33738 -0.0476332 0.0345872 0.0389835 Vertex 33739 -0.0466394 0.0345455 0.0392313 Vertex 33740 -0.0456074 0.0345826 0.0394197 Vertex 33741 -0.0446176 0.0345408 0.0396657 Vertex 33742 -0.0435828 0.0345782 0.0398547 Vertex 33743 -0.0425494 0.0346163 0.040046 Vertex 33744 -0.0414778 0.0347327 0.0401772 Vertex 33745 -0.040486 0.0346908 0.0404235 Vertex 33746 -0.0394562 0.0347283 0.0406132 Vertex 33747 -0.0385029 0.0346069 0.040918 Vertex 33748 -0.0374734 0.0346441 0.0411075 Vertex 33749 -0.0364414 0.0346808 0.041293 Vertex 33750 -0.0354498 0.0346389 0.0415402 Vertex 33751 -0.0344163 0.0346761 0.0417292 Vertex 33752 -0.0334245 0.0346344 0.0419763 Vertex 33753 -0.0323904 0.0346717 0.0421656 Vertex 33754 -0.0313584 0.0347088 0.042355 Vertex 33755 -0.0303694 0.034667 0.0426012 Vertex 33756 -0.0293346 0.0347045 0.0427947 Vertex 33757 -0.0283441 0.0346627 0.0430398 Vertex 33758 -0.0273118 0.0346998 0.0432305 Vertex 33759 -0.0263231 0.034658 0.0434735 Vertex 33760 -0.0252077 0.0348536 0.0435448 Vertex 33761 -0.0241332 0.0349697 0.043675 Vertex 33762 -0.0231843 0.0348489 0.0439808 Vertex 33763 -0.0221888 0.0348068 0.0442295 Vertex 33764 -0.0211976 0.0347654 0.0444796 Vertex 33765 -0.0201655 0.0348026 0.0446658 Vertex 33766 -0.0191373 0.0348399 0.0448528 Vertex 33767 -0.0181454 0.0347978 0.0451006 Vertex 33768 -0.0171539 0.0347559 0.0453522 Vertex 33769 -0.016121 0.0347931 0.0455365 Vertex 33770 -0.0151711 0.0346724 0.0458457 Vertex 33771 -0.0141375 0.0347096 0.0460356 Vertex 33772 -0.0131452 0.0346678 0.0462791 Vertex 33773 -0.0121134 0.0347053 0.046472 Vertex 33774 -0.0111235 0.0346639 0.0467191 Vertex 33775 -0.0100884 0.0347013 0.0469069 Vertex 33776 -0.00905798 0.034739 0.0470958 Vertex 33777 -0.00798473 0.0348553 0.0472244 Vertex 33778 -0.00690926 0.0349718 0.0473534 Vertex 33779 -0.00579434 0.0351694 0.0474261 Vertex 33780 -0.00467538 0.0353718 0.0474871 Vertex 33781 -0.00354618 0.035584 0.0475305 Vertex 33782 -0.00232938 0.0359607 0.0474459 Vertex 33783 -0.00118398 0.0362533 0.0473478 Vertex 33784 0.000219502 0.0370979 0.0467851 Vertex 33785 -0.0829319 0.114342 0.0473556 Vertex 33786 -0.0516722 0.0693248 0.037985 Vertex 33787 -0.0754949 0.117024 0.0522099 Vertex 33788 -0.089228 0.114813 0.0276717 Vertex 33789 -0.085765 0.112351 0.0286477 Vertex 33790 -0.078298 0.0745267 0.0278337 Vertex 33791 -0.0707981 0.0672067 0.0269443 Vertex 33792 -0.0672529 0.0760725 0.0393761 Vertex 33793 -0.0652549 0.0667307 0.0320259 Vertex 33794 -0.077431 0.108115 0.0357399 Vertex 33795 -0.0644149 0.0731789 0.038947 Vertex 33796 -0.0781968 0.0778917 0.0320122 Vertex 33797 -0.0614917 0.0661812 0.0332998 Vertex 33798 -0.049761 0.069112 0.038562 Vertex 33799 -0.0644463 0.0769092 0.0410862 Vertex 33800 -0.0587286 0.0620484 0.0269094 Vertex 33801 -0.0759886 0.0701373 0.025079 Vertex 33802 -0.0625318 0.0662874 0.0329584 Vertex 33803 -0.0739329 0.072514 0.0322154 Vertex 33804 -0.0516913 0.0680528 0.0372779 Vertex 33805 -0.0722448 0.0688588 0.0287217 Vertex 33806 -0.05065 0.0706021 0.0388719 Vertex 33807 -0.0800241 0.0745873 0.0239149 Vertex 33808 -0.068912 0.148468 -0.034342 Vertex 33809 -0.0518826 0.071407 0.0396894 Vertex 33810 -0.0780357 0.0769322 0.031104 Vertex 33811 -0.0536233 0.0657097 0.0353836 Vertex 33812 -0.0860966 0.11232 0.0268196 Vertex 33813 -0.081432 0.0776141 0.0263044 Vertex 33814 -0.0561497 0.0697401 0.0384165 Vertex 33815 -0.0709351 0.0742605 0.0366097 Vertex 33816 -0.0578115 0.0619893 0.0271205 Vertex 33817 -0.0692662 0.0692944 0.0324707 Vertex 33818 -0.0674808 0.0688292 0.0332504 Vertex 33819 -0.0813927 0.0758934 0.0225084 Vertex 33820 -0.074087 0.0734714 0.0331119 Vertex 33821 -0.0748775 0.0739125 0.0325733 Vertex 33822 -0.0636286 0.0672101 0.0337087 Vertex 33823 -0.0738001 0.0651206 0.00865838 Vertex 33824 -0.0731478 0.0644323 0.00940567 Vertex 33825 -0.0725213 0.0636798 0.0102197 Vertex 33826 -0.0718111 0.0631642 0.010775 Vertex 33827 -0.0710841 0.0626658 0.0113319 Vertex 33828 -0.0703591 0.0620888 0.0120183 Vertex 33829 -0.0696543 0.0614896 0.0127042 Vertex 33830 -0.0688911 0.0610594 0.0132079 Vertex 33831 -0.0680618 0.0606588 0.013756 Vertex 33832 -0.0671797 0.0604061 0.0141816 Vertex 33833 -0.0663392 0.0600723 0.0146241 Vertex 33834 -0.0654627 0.0598015 0.0150426 Vertex 33835 -0.0645394 0.0596403 0.015406 Vertex 33836 -0.0636711 0.0593571 0.0158341 Vertex 33837 -0.0627215 0.0592404 0.0161384 Vertex 33838 -0.0618117 0.0590403 0.0165038 Vertex 33839 -0.0608999 0.058839 0.0168686 Vertex 33840 -0.0599935 0.0586398 0.0172334 Vertex 33841 -0.0590849 0.0584397 0.0175987 Vertex 33842 -0.0581296 0.0583212 0.0178996 Vertex 33843 -0.0571796 0.0582032 0.0181974 Vertex 33844 -0.0753259 0.0689002 0.0227894 Vertex 33845 -0.0666556 0.0360676 0.0353877 Vertex 33846 -0.066147 0.0353356 0.0361254 Vertex 33847 -0.0653284 0.0349129 0.0366619 Vertex 33848 -0.0644211 0.0347126 0.0370276 Vertex 33849 -0.0634664 0.0345901 0.0373297 Vertex 33850 -0.0625155 0.0344693 0.0376364 Vertex 33851 -0.0615271 0.0344278 0.0378839 Vertex 33852 -0.0604926 0.0344653 0.0380756 Vertex 33853 -0.0595037 0.0344238 0.0383245 Vertex 33854 -0.0584699 0.0344613 0.0385122 Vertex 33855 -0.0574772 0.0344195 0.038759 Vertex 33856 -0.056485 0.0343785 0.0390076 Vertex 33857 -0.0554108 0.0344947 0.0391385 Vertex 33858 -0.0544231 0.0344532 0.039385 Vertex 33859 -0.053388 0.034491 0.0395762 Vertex 33860 -0.0523573 0.0345285 0.0397607 Vertex 33861 -0.0513256 0.0345659 0.0399502 Vertex 33862 -0.0503335 0.0345244 0.0401985 Vertex 33863 -0.0492995 0.0345621 0.0403913 Vertex 33864 -0.0482709 0.0345995 0.0405757 Vertex 33865 -0.047238 0.0346371 0.0407654 Vertex 33866 -0.046245 0.034596 0.0410145 Vertex 33867 -0.0451719 0.0347129 0.0411467 Vertex 33868 -0.0441816 0.0346721 0.0413945 Vertex 33869 -0.0431088 0.0347881 0.0415217 Vertex 33870 -0.0419921 0.0349859 0.0415962 Vertex 33871 -0.0409173 0.0351021 0.0417247 Vertex 33872 -0.0398856 0.0351398 0.0419144 Vertex 33873 -0.0389556 0.0350986 0.042208 Vertex 33874 -0.0379042 0.0350553 0.0424096 Vertex 33875 -0.0369545 0.0349347 0.0427177 Vertex 33876 -0.0360463 0.0347343 0.0430826 Vertex 33877 -0.0350535 0.0346922 0.0433273 Vertex 33878 -0.0339801 0.0348087 0.0434578 Vertex 33879 -0.0329884 0.0347673 0.0437059 Vertex 33880 -0.0319551 0.0348046 0.0438977 Vertex 33881 -0.0309651 0.0347631 0.0441412 Vertex 33882 -0.0299308 0.0348009 0.0443343 Vertex 33883 -0.0289002 0.0348381 0.0445217 Vertex 33884 -0.0279078 0.0347965 0.0447705 Vertex 33885 -0.0269178 0.034755 0.0450156 Vertex 33886 -0.0258834 0.0347926 0.045205 Vertex 33887 -0.0248532 0.0348299 0.0453939 Vertex 33888 -0.0238604 0.0347884 0.0456435 Vertex 33889 -0.022832 0.0348259 0.0458328 Vertex 33890 -0.0217971 0.0348633 0.0460203 Vertex 33891 -0.0208083 0.0348218 0.0462671 Vertex 33892 -0.019816 0.0347801 0.0465131 Vertex 33893 -0.0188224 0.0347384 0.0467634 Vertex 33894 -0.017832 0.0346972 0.047013 Vertex 33895 -0.0167995 0.0347343 0.0471976 Vertex 33896 -0.0158082 0.0346932 0.0474464 Vertex 33897 -0.0147348 0.0348101 0.0475803 Vertex 33898 -0.013744 0.0347692 0.0478272 Vertex 33899 -0.0126691 0.0348865 0.0479592 Vertex 33900 -0.0116389 0.034923 0.0481436 Vertex 33901 -0.0105663 0.0350401 0.0482738 Vertex 33902 -0.00945147 0.0352364 0.0483453 Vertex 33903 -0.00837752 0.0353543 0.048476 Vertex 33904 -0.0072207 0.0356289 0.0484876 Vertex 33905 -0.00610573 0.035829 0.0485597 Vertex 33906 -0.00492025 0.0362041 0.048453 Vertex 33907 -0.00369262 0.0366899 0.0482034 Vertex 33908 -0.0795655 0.0711751 0.0181423 Vertex 33909 -0.0788559 0.0706244 0.0187647 Vertex 33910 -0.0781039 0.070111 0.0193756 Vertex 33911 -0.0672962 0.0785128 0.0408262 Vertex 33912 -0.0748541 0.107208 0.0370405 Vertex 33913 -0.0650483 0.0701635 0.0361166 Vertex 33914 -0.0640951 0.0700461 0.0364211 Vertex 33915 -0.0691323 0.0776098 0.0394254 Vertex 33916 -0.0698308 0.071946 0.0353261 Vertex 33917 -0.0701548 0.148741 -0.0366493 Vertex 33918 -0.0631359 0.0699525 0.0366992 Vertex 33919 -0.0773286 0.0696655 0.0199272 Vertex 33920 -0.0843731 0.110309 0.0377873 Vertex 33921 -0.0754196 0.111293 0.0461553 Vertex 33922 -0.0765357 0.0692333 0.0204809 Vertex 33923 -0.077209 0.110378 0.0446936 Vertex 33924 -0.0906322 0.112714 0.0163744 Vertex 33925 -0.0630072 0.0689485 0.0358468 Vertex 33926 -0.079103 0.0731629 0.0235749 Vertex 33927 -0.0622094 0.0655019 0.0319825 Vertex 33928 -0.0638136 0.0680952 0.0346563 Vertex 33929 -0.0817644 0.0758778 0.0206878 Vertex 33930 -0.091428 0.113787 0.018961 Vertex 33931 -0.0757523 0.0687815 0.0210323 Vertex 33932 -0.0529063 0.0676787 0.0373317 Vertex 33933 -0.0749667 0.0683767 0.0215337 Vertex 33934 -0.0741944 0.0678888 0.022137 Vertex 33935 -0.0845615 0.0777561 0.014943 Vertex 33936 -0.0882602 0.111934 0.0373837 Vertex 33937 -0.0894904 0.112329 0.0187618 Vertex 33938 -0.052616 0.0657163 0.0355847 Vertex 33939 -0.0734051 0.0674458 0.022683 Vertex 33940 -0.072631 0.0670284 0.0231935 Vertex 33941 -0.071801 0.0745407 0.0361884 Vertex 33942 -0.0718222 0.0666154 0.0237319 Vertex 33943 -0.0710199 0.0662278 0.0242287 Vertex 33944 -0.0701839 0.0658802 0.0247105 Vertex 33945 -0.069373 0.0655009 0.0252048 Vertex 33946 -0.0685509 0.065132 0.0256966 Vertex 33947 -0.0676963 0.0648397 0.0261272 Vertex 33948 -0.0667991 0.06462 0.0265045 Vertex 33949 -0.0755445 0.0668624 0.00857418 Vertex 33950 -0.0672111 0.0749069 0.0386416 Vertex 33951 -0.0742588 0.0655235 0.0100016 Vertex 33952 -0.0735773 0.0648576 0.0107478 Vertex 33953 -0.0728932 0.0642808 0.0113714 Vertex 33954 -0.072166 0.063706 0.0120556 Vertex 33955 -0.0714787 0.0630924 0.012741 Vertex 33956 -0.0708134 0.0624523 0.0134268 Vertex 33957 -0.0700765 0.0619608 0.0139832 Vertex 33958 -0.0693077 0.0614952 0.0145437 Vertex 33959 -0.0684865 0.0611195 0.0150424 Vertex 33960 -0.0676995 0.0606833 0.0155957 Vertex 33961 -0.0668008 0.060458 0.0159676 Vertex 33962 -0.0659091 0.06022 0.0163937 Vertex 33963 -0.0650007 0.0600171 0.0167571 Vertex 33964 -0.0640788 0.0598458 0.0171155 Vertex 33965 -0.0631728 0.0596464 0.0174802 Vertex 33966 -0.0622614 0.0594461 0.0178467 Vertex 33967 -0.0613093 0.0593276 0.0181457 Vertex 33968 -0.0604002 0.0591276 0.0185111 Vertex 33969 -0.0594483 0.0590098 0.0188119 Vertex 33970 -0.058539 0.0588103 0.0191792 Vertex 33971 -0.0575865 0.0586919 0.0194779 Vertex 33972 -0.0887093 0.112351 0.0387402 Vertex 33973 -0.065903 0.0643977 0.026882 Vertex 33974 -0.0657408 0.0353871 0.0379044 Vertex 33975 -0.0648928 0.0350374 0.038379 Vertex 33976 -0.0640233 0.0347562 0.0388023 Vertex 33977 -0.063072 0.0346346 0.0391063 Vertex 33978 -0.0621222 0.0345142 0.0394173 Vertex 33979 -0.0611289 0.0344725 0.039662 Vertex 33980 -0.0600953 0.0345101 0.0398512 Vertex 33981 -0.0591045 0.0344689 0.0400978 Vertex 33982 -0.0580729 0.0345066 0.0402882 Vertex 33983 -0.0570813 0.0344654 0.0405363 Vertex 33984 -0.0560519 0.0345032 0.0407254 Vertex 33985 -0.0550177 0.034541 0.0409139 Vertex 33986 -0.054028 0.0344996 0.0411656 Vertex 33987 -0.0529942 0.0345374 0.0413527 Vertex 33988 -0.0520047 0.0344961 0.0416004 Vertex 33989 -0.0509276 0.0346131 0.0417321 Vertex 33990 -0.0499367 0.0345722 0.0419808 Vertex 33991 -0.0489061 0.0346101 0.0421693 Vertex 33992 -0.047874 0.0346487 0.0423594 Vertex 33993 -0.0468008 0.0347657 0.0424884 Vertex 33994 -0.0457293 0.0348843 0.042622 Vertex 33995 -0.0446561 0.0349999 0.0427486 Vertex 33996 -0.0435404 0.0351992 0.0428237 Vertex 33997 -0.0423655 0.0354607 0.0428683 Vertex 33998 -0.0412769 0.0356814 0.042879 Vertex 33999 -0.040104 0.0359968 0.0427867 Vertex 34000 -0.0381624 0.035793 0.0434599 Vertex 34001 -0.0373231 0.0354917 0.0439186 Vertex 34002 -0.0364388 0.0352264 0.0443258 Vertex 34003 -0.0355301 0.0350253 0.0446914 Vertex 34004 -0.0346214 0.0348242 0.0450553 Vertex 34005 -0.033587 0.0348608 0.0452447 Vertex 34006 -0.0325544 0.0348985 0.0454309 Vertex 34007 -0.0315626 0.0348573 0.0456798 Vertex 34008 -0.0305285 0.0348948 0.0458677 Vertex 34009 -0.0295413 0.0348538 0.0461198 Vertex 34010 -0.0285078 0.0348913 0.0463089 Vertex 34011 -0.0275166 0.0348502 0.0465557 Vertex 34012 -0.0264854 0.0348879 0.0467436 Vertex 34013 -0.0254944 0.0348465 0.0469921 Vertex 34014 -0.0244623 0.0348843 0.0471798 Vertex 34015 -0.0235086 0.0347636 0.0474886 Vertex 34016 -0.0224756 0.0348012 0.0476768 Vertex 34017 -0.0214848 0.0347602 0.0479269 Vertex 34018 -0.0204554 0.0347978 0.0481157 Vertex 34019 -0.0194646 0.0347564 0.0483645 Vertex 34020 -0.0184307 0.0347944 0.0485523 Vertex 34021 -0.0173959 0.0348327 0.0487444 Vertex 34022 -0.0164056 0.0347921 0.0489909 Vertex 34023 -0.015331 0.0349099 0.0491212 Vertex 34024 -0.0142613 0.0350279 0.0492532 Vertex 34025 -0.0131306 0.0351789 0.049391 Vertex 34026 -0.0120723 0.0353434 0.0494553 Vertex 34027 -0.0109155 0.0356188 0.0494667 Vertex 34028 -0.00976126 0.0358952 0.049479 Vertex 34029 -0.00860718 0.0361712 0.0494902 Vertex 34030 -0.00737907 0.0367231 0.0491533 Vertex 34031 -0.00609738 0.037339 0.0487481 Vertex 34032 -0.0650238 0.0641454 0.0272956 Vertex 34033 -0.0641074 0.0639595 0.0276548 Vertex 34034 -0.0839319 0.117006 0.0485566 Vertex 34035 -0.063207 0.06374 0.0280276 Vertex 34036 -0.065153 0.0712063 0.036955 Vertex 34037 -0.0663565 0.0783826 0.0411592 Vertex 34038 -0.0814272 0.0752484 0.0195365 Vertex 34039 -0.0679292 0.0674285 0.0308631 Vertex 34040 -0.0720693 0.0709772 0.0321852 Vertex 34041 -0.0688648 0.111591 0.0438135 Vertex 34042 -0.062259 0.0636125 0.0283336 Vertex 34043 -0.0875696 0.115156 0.045661 Vertex 34044 -0.0890966 0.114815 0.0438036 Vertex 34045 -0.085737 0.110915 0.0387737 Vertex 34046 -0.0838603 0.0771078 0.0156983 Vertex 34047 -0.0831878 0.0764607 0.0163622 Vertex 34048 -0.0613089 0.0634913 0.028639 Vertex 34049 -0.079976 0.076532 0.0275303 Vertex 34050 -0.0603606 0.0633645 0.0289482 Vertex 34051 -0.0851934 0.11068 0.0373035 Vertex 34052 -0.0712203 0.0706743 0.0326242 Vertex 34053 -0.0799475 0.0796892 0.0318714 Vertex 34054 -0.0594448 0.063179 0.0293052 Vertex 34055 -0.0675837 0.112197 0.043642 Vertex 34056 -0.0584924 0.0630612 0.0296076 Vertex 34057 -0.0548476 0.0665624 0.0361422 Vertex 34058 -0.0801239 0.110623 0.0438367 Vertex 34059 -0.0575003 0.0630187 0.0298519 Vertex 34060 -0.0757136 0.107486 0.0366393 Vertex 34061 -0.0597781 0.0668249 0.0348598 Vertex 34062 -0.058577 0.0727277 0.0406017 Vertex 34063 -0.0565065 0.0629707 0.0300974 Vertex 34064 -0.0831854 0.11075 0.0323354 Vertex 34065 -0.0653913 0.0757553 0.0400472 Vertex 34066 -0.055548 0.0628794 0.0303893 Vertex 34067 -0.0803034 0.072641 0.00422068 Vertex 34068 -0.0791205 0.0709783 0.00599758 Vertex 34069 -0.0784664 0.0703272 0.00666705 Vertex 34070 -0.0778143 0.0696403 0.00741827 Vertex 34071 -0.0771027 0.0689891 0.00817725 Vertex 34072 -0.0545581 0.0628278 0.0306388 Vertex 34073 -0.0596114 0.0726835 0.0404064 Vertex 34074 -0.0752763 0.0667216 0.0105318 Vertex 34075 -0.0746541 0.0660086 0.0112783 Vertex 34076 -0.0739688 0.0653923 0.0119616 Vertex 34077 -0.0731928 0.064943 0.0125198 Vertex 34078 -0.0724349 0.0644357 0.0131399 Vertex 34079 -0.0718387 0.063614 0.0140147 Vertex 34080 -0.0712419 0.0628661 0.0147709 Vertex 34081 -0.0704877 0.0623972 0.0153213 Vertex 34082 -0.0697006 0.0619862 0.0158161 Vertex 34083 -0.0689131 0.06155 0.0163724 Vertex 34084 -0.0680681 0.061235 0.0168081 Vertex 34085 -0.0672083 0.0609402 0.0172424 Vertex 34086 -0.0663263 0.0606754 0.0176657 Vertex 34087 -0.065396 0.0605193 0.0180241 Vertex 34088 -0.0644961 0.0602892 0.0183972 Vertex 34089 -0.0635876 0.0600882 0.0187607 Vertex 34090 -0.0626754 0.059895 0.0191264 Vertex 34091 -0.0617181 0.0598008 0.019418 Vertex 34092 -0.0608049 0.0596005 0.019786 Vertex 34093 -0.059855 0.0594826 0.0200848 Vertex 34094 -0.0588992 0.0593658 0.0203903 Vertex 34095 -0.0579501 0.0592474 0.0206872 Vertex 34096 -0.0878896 0.111968 0.039224 Vertex 34097 -0.0535585 0.062801 0.0308747 Vertex 34098 -0.0847817 0.111591 0.0313073 Vertex 34099 -0.0658521 0.0361993 0.0388506 Vertex 34100 -0.0652339 0.0355811 0.0395373 Vertex 34101 -0.0644533 0.0351399 0.0400818 Vertex 34102 -0.0635867 0.03486 0.0405057 Vertex 34103 -0.0626767 0.0346583 0.0408688 Vertex 34104 -0.0616825 0.0346164 0.0411183 Vertex 34105 -0.0607335 0.034496 0.0414254 Vertex 34106 -0.0596993 0.0345337 0.0416145 Vertex 34107 -0.0587093 0.0344925 0.0418625 Vertex 34108 -0.0577153 0.0344512 0.0421091 Vertex 34109 -0.0566848 0.0344893 0.0422998 Vertex 34110 -0.0556539 0.0345276 0.0424927 Vertex 34111 -0.0546196 0.0345652 0.0426785 Vertex 34112 -0.0536298 0.0345249 0.0429297 Vertex 34113 -0.0525965 0.0345626 0.0431188 Vertex 34114 -0.0516068 0.0345225 0.0433683 Vertex 34115 -0.0505323 0.0346392 0.0434961 Vertex 34116 -0.0494618 0.0347575 0.043629 Vertex 34117 -0.0483876 0.0348751 0.0437589 Vertex 34118 -0.0472721 0.035073 0.043832 Vertex 34119 -0.0461189 0.0353483 0.0438447 Vertex 34120 -0.0450017 0.0355455 0.0439167 Vertex 34121 -0.0438855 0.03574 0.0440005 Vertex 34122 -0.0426232 0.0362716 0.0437883 Vertex 34123 -0.0415825 0.0366566 0.0434527 Vertex 34124 -0.0816947 0.113482 0.0465399 Vertex 34125 -0.0747322 0.0729443 0.0316828 Vertex 34126 -0.087519 0.112 0.0410625 Vertex 34127 -0.0373738 0.0365422 0.044687 Vertex 34128 -0.0366241 0.0360289 0.0452882 Vertex 34129 -0.0358314 0.0356542 0.0457978 Vertex 34130 -0.035019 0.035354 0.0462574 Vertex 34131 -0.0341019 0.0350895 0.0466468 Vertex 34132 -0.0331932 0.0348891 0.047012 Vertex 34133 -0.0321586 0.0349269 0.0472031 Vertex 34134 -0.0311676 0.0348856 0.0474529 Vertex 34135 -0.0301364 0.0349235 0.0476426 Vertex 34136 -0.0291057 0.0349617 0.0478282 Vertex 34137 -0.0281528 0.0348412 0.0481365 Vertex 34138 -0.0270805 0.0349584 0.0482667 Vertex 34139 -0.0260866 0.0349169 0.0485155 Vertex 34140 -0.0250963 0.0348756 0.0487637 Vertex 34141 -0.0241054 0.0348343 0.0490127 Vertex 34142 -0.0231171 0.0347933 0.0492623 Vertex 34143 -0.0220809 0.0348313 0.0494485 Vertex 34144 -0.0210492 0.0348694 0.0496408 Vertex 34145 -0.0200589 0.0348282 0.0498878 Vertex 34146 -0.0190678 0.0347878 0.0501361 Vertex 34147 -0.0179936 0.034905 0.0502652 Vertex 34148 -0.0168782 0.0351038 0.0503404 Vertex 34149 -0.0157478 0.0352634 0.050467 Vertex 34150 -0.0146066 0.0355634 0.0504427 Vertex 34151 -0.0135059 0.0357879 0.0504712 Vertex 34152 -0.012329 0.0361667 0.050366 Vertex 34153 -0.0111043 0.0366055 0.0502176 Vertex 34154 -0.00977952 0.0372711 0.0498001 Vertex 34155 -0.0810675 0.11076 0.0435122 Vertex 34156 -0.0739705 0.110854 0.0450522 Vertex 34157 -0.0699548 0.147947 -0.0321477 Vertex 34158 -0.0787914 0.0724652 0.0224838 Vertex 34159 -0.0681116 0.112409 0.0451263 Vertex 34160 -0.0829375 0.116994 0.0487646 Vertex 34161 -0.0824758 0.0764829 0.0200121 Vertex 34162 -0.0817829 0.110167 0.0313299 Vertex 34163 -0.0713881 0.068562 0.0291565 Vertex 34164 -0.0821218 0.075868 0.0188618 Vertex 34165 -0.070524 0.0682803 0.0295828 Vertex 34166 -0.0772723 0.114862 0.0500033 Vertex 34167 -0.0506105 0.0694238 0.0381651 Vertex 34168 -0.0802253 0.0772741 0.0285988 Vertex 34169 -0.0802055 0.0754813 0.024867 Vertex 34170 -0.0642021 0.071089 0.0372614 Vertex 34171 -0.0576054 0.0658547 0.0344063 Vertex 34172 -0.0772544 0.0764799 0.0316515 Vertex 34173 -0.0732628 0.0731075 0.0335988 Vertex 34174 -0.0611633 0.0698433 0.0372322 Vertex 34175 -0.0711005 0.148774 -0.0369587 Vertex 34176 -0.0710897 0.0678996 0.0280309 Vertex 34177 -0.0745865 0.0720219 0.0307608 Vertex 34178 -0.0792494 0.0723341 0.0207326 Vertex 34179 -0.0653767 0.0770838 0.0407622 Vertex 34180 -0.087269 0.112677 0.0244432 Vertex 34181 -0.0729148 0.0713134 0.0317175 Vertex 34182 -0.0620154 0.0689049 0.0360997 Vertex 34183 -0.0877256 0.112462 0.0226926 Vertex 34184 -0.0568342 0.0666429 0.0356476 Vertex 34185 -0.0785673 0.0716608 0.0214639 Vertex 34186 -0.0877693 0.113692 0.0289151 Vertex 34187 -0.0546552 0.0656851 0.0351815 Vertex 34188 -0.0669139 0.0704667 0.0354638 Vertex 34189 -0.0685164 0.0669975 0.0293604 Vertex 34190 -0.0746807 0.110131 0.0436879 Vertex 34191 -0.0806495 0.10968 0.039129 Vertex 34192 -0.0663103 0.0759418 0.0397029 Vertex 34193 -0.0649093 0.06918 0.0352438 Vertex 34194 -0.0745558 0.0684435 0.0233437 Vertex 34195 -0.0891171 0.11284 0.0400327 Vertex 34196 -0.0797103 0.0711205 0.00752586 Vertex 34197 -0.078379 0.0698242 0.00895098 Vertex 34198 -0.0776274 0.0692865 0.00957677 Vertex 34199 -0.076964 0.0686471 0.0102516 Vertex 34200 -0.0763247 0.0679089 0.0110614 Vertex 34201 -0.0756565 0.0672218 0.011813 Vertex 34202 -0.075008 0.0665773 0.0124915 Vertex 34203 -0.0743388 0.0659419 0.0131754 Vertex 34204 -0.0736013 0.0654333 0.0137843 Vertex 34205 -0.0729386 0.0646873 0.0146181 Vertex 34206 -0.0723757 0.0638786 0.0154336 Vertex 34207 -0.0717154 0.0632455 0.0160979 Vertex 34208 -0.0709345 0.0627948 0.0166551 Vertex 34209 -0.0701585 0.0623473 0.0172092 Vertex 34210 -0.0693216 0.0620201 0.0176481 Vertex 34211 -0.0684648 0.0617211 0.0180797 Vertex 34212 -0.0675878 0.0614559 0.0185068 Vertex 34213 -0.0666703 0.0612745 0.0188657 Vertex 34214 -0.065804 0.0609905 0.0192925 Vertex 34215 -0.064905 0.0607648 0.0196679 Vertex 34216 -0.0639921 0.0605727 0.020032 Vertex 34217 -0.0630317 0.060472 0.0203248 Vertex 34218 -0.0621323 0.0602572 0.0206983 Vertex 34219 -0.0611808 0.060116 0.0210055 Vertex 34220 -0.0602281 0.059992 0.0213112 Vertex 34221 -0.0592659 0.0599215 0.0215991 Vertex 34222 -0.0707139 0.0721775 0.0349299 Vertex 34223 -0.0871021 0.111516 0.0397664 Vertex 34224 -0.0778803 0.0710945 0.0220932 Vertex 34225 -0.0646199 0.0359342 0.0410351 Vertex 34226 -0.063929 0.0354009 0.0416662 Vertex 34227 -0.0630631 0.0351206 0.0420909 Vertex 34228 -0.0621134 0.0350003 0.0423988 Vertex 34229 -0.0612039 0.0347997 0.0427656 Vertex 34230 -0.0602518 0.034678 0.0430709 Vertex 34231 -0.0592646 0.0346371 0.0433189 Vertex 34232 -0.0582724 0.0345955 0.0435663 Vertex 34233 -0.0572808 0.0345537 0.0438127 Vertex 34234 -0.0562455 0.0345922 0.0440034 Vertex 34235 -0.0552136 0.0346314 0.0441945 Vertex 34236 -0.0541416 0.034749 0.0443256 Vertex 34237 -0.0530668 0.0348658 0.0444554 Vertex 34238 -0.0520347 0.0349067 0.0446489 Vertex 34239 -0.0509437 0.0349503 0.0448676 Vertex 34240 -0.0723024 0.111428 0.0467445 Vertex 34241 -0.0889991 0.11248 0.0367803 Vertex 34242 -0.0475797 0.035695 0.0449374 Vertex 34243 -0.060035 0.0645406 0.0315175 Vertex 34244 -0.0806498 0.110292 0.0422048 Vertex 34245 -0.0550935 0.0685958 0.0378502 Vertex 34246 -0.082015 0.110886 0.0432009 Vertex 34247 -0.0605698 0.0727907 0.0401099 Vertex 34248 -0.0773369 0.105608 0.0341784 Vertex 34249 -0.0507764 0.0715485 0.0397729 Vertex 34250 -0.064755 0.068231 0.0343382 Vertex 34251 -0.0689178 0.0717538 0.0356819 Vertex 34252 -0.0737672 0.068042 0.0238437 Vertex 34253 -0.0351573 0.0361738 0.0471926 Vertex 34254 -0.0343725 0.0357923 0.047703 Vertex 34255 -0.0335698 0.0354174 0.0482024 Vertex 34256 -0.0326308 0.0352345 0.0485487 Vertex 34257 -0.0317212 0.0350332 0.0489115 Vertex 34258 -0.0307721 0.0349136 0.04922 Vertex 34259 -0.0297808 0.0348722 0.0494682 Vertex 34260 -0.0287487 0.0349103 0.0496611 Vertex 34261 -0.0277559 0.0348695 0.0499059 Vertex 34262 -0.026685 0.0349864 0.0500364 Vertex 34263 -0.0257365 0.0348667 0.0503471 Vertex 34264 -0.0247044 0.0349045 0.050534 Vertex 34265 -0.0237103 0.0348634 0.0507821 Vertex 34266 -0.0226813 0.0349023 0.0509736 Vertex 34267 -0.0216077 0.0350207 0.0511065 Vertex 34268 -0.0205761 0.0350586 0.0512942 Vertex 34269 -0.0195012 0.0351765 0.0514244 Vertex 34270 -0.0183748 0.0353493 0.0515278 Vertex 34271 -0.0172261 0.0356447 0.0515267 Vertex 34272 -0.0466962 0.147986 -0.00319779 Vertex 34273 -0.0692389 0.149629 -0.0402111 Vertex 34274 -0.0483555 0.146018 -0.00117385 Vertex 34275 -0.0611783 0.167226 -0.0592729 Vertex 34276 -0.0158901 0.160985 -0.0130889 Vertex 34277 -0.0688076 0.150274 -0.0424283 Vertex 34278 -0.0241329 0.157302 -0.00905689 Vertex 34279 -0.0685062 0.142066 -0.00982847 Vertex 34280 -0.0656264 0.15567 -0.0512009 Vertex 34281 -0.0433649 0.150829 -0.00565896 Vertex 34282 -0.0640545 0.149152 -0.0269946 Vertex 34283 -0.0379505 0.150881 -0.00456722 Vertex 34284 -0.0249398 0.157384 -0.00964166 Vertex 34285 -0.0632159 0.147647 -0.016402 Vertex 34286 -0.0279028 0.160261 -0.0136941 Vertex 34287 -0.00997005 0.175779 -0.0292074 Vertex 34288 -0.0631298 0.144906 -0.0101196 Vertex 34289 -0.0652865 0.1555 -0.0467797 Vertex 34290 -0.0531289 0.138241 -0.000765665 Vertex 34291 -0.0310985 0.154152 -0.00673494 Vertex 34292 -0.0636168 0.143654 -0.00954122 Vertex 34293 -0.0650821 0.148822 -0.0290175 Vertex 34294 -0.0517386 0.139928 0.000994108 Vertex 34295 -0.0248998 0.158417 -0.0112592 Vertex 34296 -0.0623235 0.139333 -0.00679766 Vertex 34297 -0.027962 0.155009 -0.00579987 Vertex 34298 -0.0169173 0.16018 -0.0117745 Vertex 34299 -0.050147 0.145259 -0.000515581 Vertex 34300 -0.0647467 0.143415 -0.011401 Vertex 34301 -0.0096483 0.171546 -0.0270746 Vertex 34302 -0.0633421 0.145588 -0.0131138 Vertex 34303 -0.0449931 0.152736 -0.00651735 Vertex 34304 -0.0678832 0.147765 -0.0303891 Vertex 34305 -0.0297515 0.154263 -0.00514597 Vertex 34306 -0.0240484 0.159369 -0.0122932 Vertex 34307 -0.0179779 0.15947 -0.0103936 Vertex 34308 -0.0510836 0.145457 -0.000907293 Vertex 34309 -0.0652397 0.150467 -0.0337229 Vertex 34310 -0.0628194 0.162004 -0.0576316 Vertex 34311 -0.0663951 0.140334 -0.00790584 Vertex 34312 -0.0641378 0.146153 -0.0169913 Vertex 34313 -0.0703699 0.144073 -0.0154773 Vertex 34314 -0.0118669 0.165326 -0.0197278 Vertex 34315 -0.0614701 0.166956 -0.0604533 Vertex 34316 -0.066663 0.144317 -0.015468 Vertex 34317 -0.0641572 0.150753 -0.03179 Vertex 34318 -0.047699 0.144615 0.00435323 Vertex 34319 -0.0645863 0.144373 -0.0132186 Vertex 34320 -0.0643644 0.153473 -0.0380226 Vertex 34321 -0.0148475 0.162865 -0.0159421 Vertex 34322 -0.0141543 0.161827 -0.01362 Vertex 34323 -0.0640258 0.15968 -0.0562568 Vertex 34324 -0.0664605 0.152204 -0.0437352 Vertex 34325 -0.0654874 0.143443 -0.0120814 Vertex 34326 -0.0457281 0.151677 -0.00565337 Vertex 34327 -0.031909 0.154239 -0.00732019 Vertex 34328 -0.0650258 0.156351 -0.0487028 Vertex 34329 -0.0638714 0.15469 -0.0385902 Vertex 34330 -0.0681034 0.152856 -0.0481556 Vertex 34331 -0.0167645 0.162218 -0.0151135 Vertex 34332 -0.0456965 0.147701 -0.00292724 Vertex 34333 -0.0387577 0.150948 -0.00516845 Vertex 34334 -0.0662237 0.145026 -0.0176812 Vertex 34335 -0.0696125 0.150354 -0.0430103 Vertex 34336 -0.0415729 0.151549 -0.00635576 Vertex 34337 -0.0271741 0.161328 -0.0145155 Vertex 34338 -0.0338241 0.152569 -0.00489392 Vertex 34339 -0.0708261 0.144835 -0.0182015 Vertex 34340 -0.0344427 0.15352 -0.00733684 Vertex 34341 -0.0382525 0.154358 -0.00883541 Vertex 34342 -0.067159 0.152634 -0.0476967 Vertex 34343 -0.0658849 0.153363 -0.0443952 Vertex 34344 -0.0426772 0.14763 -0.000244299 Vertex 34345 -0.0109096 0.167211 -0.0224966 Vertex 34346 -0.063716 0.150986 -0.0306408 Vertex 34347 -0.0666364 0.150881 -0.0385507 Vertex 34348 -0.0367886 0.156481 -0.0105439 Vertex 34349 -0.049358 0.146268 -0.00147688 Vertex 34350 -0.0138771 0.164812 -0.0186885 Vertex 34351 -0.0181568 0.165005 -0.0179156 Vertex 34352 -0.0398753 0.149194 -0.00215183 Vertex 34353 -0.0240269 0.158277 -0.0107707 Vertex 34354 -0.0415439 0.148326 -0.00168489 Vertex 34355 -0.0405106 0.151258 -0.00613685 Vertex 34356 -0.0680155 0.149781 -0.0384715 Vertex 34357 -0.0225945 0.157229 -0.0076361 Vertex 34358 -0.0222598 0.160103 -0.0129456 Vertex 34359 -0.0652177 0.144322 -0.0140816 Vertex 34360 -0.0666009 0.15275 -0.0468174 Vertex 34361 -0.0674167 0.149888 -0.0375972 Vertex 34362 -0.030183 0.155051 -0.00785968 Vertex 34363 -0.0509196 0.141445 0.00173554 Vertex 34364 -0.0336363 0.153436 -0.00674709 Vertex 34365 -0.0618211 0.164489 -0.0586698 Vertex 34366 -0.0122439 0.168894 -0.023749 Vertex 34367 -0.0431023 0.149502 -0.00451393 Vertex 34368 -0.0206187 0.158806 -0.0102834 Vertex 34369 -0.0379006 0.151906 -0.00621808 Vertex 34370 -0.0321606 0.153429 -0.00535973 Vertex 34371 -0.0459377 0.145792 0.000601046 Vertex 34372 -0.0655442 0.155124 -0.0481259 Vertex 34373 -0.0379836 0.153062 -0.00765575 Vertex 34374 -0.0456817 0.146626 -0.00135754 Vertex 34375 -0.0130347 0.166801 -0.0212915 Vertex 34376 -0.0427079 0.151894 -0.00649313 Vertex 34377 -0.0148931 0.161809 -0.0143393 Vertex 34378 -0.0446977 0.147484 -0.0025954 Vertex 34379 -0.0231566 0.158136 -0.0102789 Vertex 34380 -0.0510476 0.139892 0.00172061 Vertex 34381 -0.0500642 0.142991 0.00242772 Vertex 34382 -0.0128992 0.165641 -0.0199242 Vertex 34383 -0.0538875 0.139905 -0.00121756 Vertex 34384 -0.0372554 0.154082 -0.00855912 Vertex 34385 -0.0624397 0.16285 -0.0548313 Vertex 34386 -0.0661058 0.151041 -0.0375744 Vertex 34387 -0.0650223 0.156803 -0.0519494 Vertex 34388 -0.0653258 0.140047 -0.00770568 Vertex 34389 -0.0609158 0.169795 -0.0608698 Vertex 34390 -0.0483263 0.149906 -0.00403153 Vertex 34391 -0.068634 0.151185 -0.044245 Vertex 34392 -0.0654804 0.152163 -0.03833 Vertex 34393 -0.0142729 0.16729 -0.0212151 Vertex 34394 -0.0168361 0.163394 -0.0165332 Vertex 34395 -0.0422245 0.148296 -0.00246029 Vertex 34396 -0.0145721 0.168692 -0.0222333 Vertex 34397 -0.00876485 0.1716 -0.0262973 Vertex 34398 -0.0345483 0.152531 -0.00560476 Vertex 34399 -0.0405566 0.149165 -0.00293165 Vertex 34400 -0.0397769 0.152293 -0.00702124 Vertex 34401 -0.0635158 0.162004 -0.0583208 Vertex 34402 -0.0623624 0.16436 -0.0595797 Vertex 34403 -0.0116051 0.171103 -0.0260001 Vertex 34404 -0.0138688 0.163706 -0.0171714 Vertex 34405 -0.0695099 0.151355 -0.0447129 Vertex 34406 -0.063994 0.152679 -0.0352218 Vertex 34407 -0.0292743 0.157003 -0.0105584 Vertex 34408 -0.0616655 0.144455 -0.00523057 Vertex 34409 -0.0178968 0.163686 -0.0167578 Vertex 34410 -0.0678883 0.145704 -0.022127 Vertex 34411 -0.0649365 0.1467 -0.0209465 Vertex 34412 -0.0695171 0.141232 -0.00845814 Vertex 34413 -0.0646993 0.150616 -0.0327557 Vertex 34414 -0.0633655 0.139636 -0.00706655 Vertex 34415 -0.0453871 0.145929 0.00156561 Vertex 34416 -0.021666 0.16235 -0.015178 Vertex 34417 -0.0683543 0.152019 -0.0462463 Vertex 34418 -0.0658527 0.144237 -0.0148815 Vertex 34419 -0.0275374 0.156717 -0.00957418 Vertex 34420 -0.0170332 0.164657 -0.0177746 Vertex 34421 -0.0128851 0.164546 -0.0183954 Vertex 34422 -0.0310058 0.156198 -0.0100049 Vertex 34423 -0.0387772 0.152061 -0.00669739 Vertex 34424 -0.0494259 0.144129 0.00171058 Vertex 34425 -0.0474205 0.145822 -0.000777163 Vertex 34426 -0.0338729 0.15688 -0.0110666 Vertex 34427 -0.0452267 0.150119 -0.00491516 Vertex 34428 -0.0478227 0.148347 -0.00331487 Vertex 34429 -0.0152574 0.166467 -0.0199789 Vertex 34430 -0.0208658 0.163381 -0.0161046 Vertex 34431 -0.0681283 0.146379 -0.0251159 Vertex 34432 -0.0684671 0.140894 -0.00832284 Vertex 34433 -0.0439563 0.147482 -0.0018962 Vertex 34434 -0.0638562 0.148524 -0.023921 Vertex 34435 -0.065557 0.158804 -0.0559152 Vertex 34436 -0.0632228 0.141176 -0.0069873 Vertex 34437 -0.0717673 0.146065 -0.0213605 Vertex 34438 -0.0551968 0.138069 -0.00309725 Vertex 34439 -0.0132125 0.168083 -0.022507 Vertex 34440 -0.0276378 0.158958 -0.0125395 Vertex 34441 -0.065785 0.145733 -0.0198954 Vertex 34442 -0.0186027 0.160444 -0.0128213 Vertex 34443 -0.0649779 0.141437 -0.00794337 Vertex 34444 -0.0151227 0.160977 -0.0122661 Vertex 34445 -0.0655423 0.145055 -0.0169033 Vertex 34446 -0.0249816 0.15956 -0.0126947 Vertex 34447 -0.0113061 0.169739 -0.0249506 Vertex 34448 -0.0377322 0.150234 -0.00179971 Vertex 34449 -0.0638387 0.163409 -0.0592654 Vertex 34450 -0.0110616 0.168437 -0.0238044 Vertex 34451 -0.0408442 0.152602 -0.00723164 Vertex 34452 -0.0664625 0.145705 -0.0206681 Vertex 34453 -0.018943 0.164042 -0.0169159 Vertex 34454 -0.0626506 0.153382 -0.0318715 Vertex 34455 -0.062927 0.150005 -0.0233391 Vertex 34456 -0.0106027 0.171925 -0.0271985 Vertex 34457 -0.0364615 0.155102 -0.00949574 Vertex 34458 -0.0690491 0.153118 -0.0485047 Vertex 34459 -0.0362549 0.153841 -0.0082413 Vertex 34460 -0.034669 0.15585 -0.0101443 Vertex 34461 -0.0100812 0.168118 -0.0236136 Vertex 34462 -0.031353 0.158667 -0.0125849 Vertex 34463 -0.0685791 0.147786 -0.0311476 Vertex 34464 -0.0623778 0.167137 -0.0608155 Vertex 34465 -0.0293863 0.155004 -0.00725783 Vertex 34466 -0.0537922 0.14151 -0.001138 Vertex 34467 -0.0623049 0.142641 -0.00633906 Vertex 34468 -0.0644028 0.146849 -0.019975 Vertex 34469 -0.0293599 0.15815 -0.0119938 Vertex 34470 -0.065164 0.147357 -0.0239331 Vertex 34471 -0.0148578 0.163977 -0.0174595 Vertex 34472 -0.070378 0.149076 -0.0386493 Vertex 34473 -0.0257693 0.158564 -0.0117505 Vertex 34474 -0.0663198 0.150167 -0.0356652 Vertex 34475 -0.0640918 0.158696 -0.0546245 Vertex 34476 -0.0107913 0.165034 -0.0192459 Vertex 34477 -0.0720157 0.145244 -0.0182167 Vertex 34478 -0.069197 0.145134 -0.0204031 Vertex 34479 -0.0524624 0.139899 0.000243693 Vertex 34480 -0.0258672 0.156547 -0.00846874 Vertex 34481 -0.00948171 0.174183 -0.0285537 Vertex 34482 -0.0234556 0.161598 -0.0145283 Vertex 34483 -0.0370469 0.152854 -0.00726744 Vertex 34484 -0.0711683 0.149278 -0.039104 Vertex 34485 -0.0459611 0.149058 -0.0040494 Vertex 34486 -0.070219 0.146984 -0.026659 Vertex 34487 -0.0222445 0.159024 -0.0114139 Vertex 34488 -0.010275 0.170544 -0.0261793 Vertex 34489 -0.017619 0.161286 -0.0140538 Vertex 34490 -0.0611658 0.168359 -0.0606871 Vertex 34491 -0.0238887 0.156697 -0.00604726 Vertex 34492 -0.0686207 0.149674 -0.0393499 Vertex 34493 -0.0642545 0.154418 -0.039754 Vertex 34494 -0.0410037 0.148494 -0.000715623 Vertex 34495 -0.0645467 0.148975 -0.0280488 Vertex 34496 -0.064545 0.156137 -0.0442784 Vertex 34497 -0.0438994 0.148485 -0.00356582 Vertex 34498 -0.0241902 0.160559 -0.0136368 Vertex 34499 -0.0194753 0.160592 -0.0133076 Vertex 34500 -0.0668563 0.151928 -0.044894 Vertex 34501 -0.036173 0.152719 -0.00677506 Vertex 34502 -0.0643746 0.145275 -0.0151376 Vertex 34503 -0.0649333 0.145142 -0.016034 Vertex 34504 -0.0176939 0.162435 -0.0154936 Vertex 34505 -0.0430291 0.148351 -0.00306372 Vertex 34506 -0.02161 0.158057 -0.00899889 Vertex 34507 -0.065417 0.154594 -0.0449582 Vertex 34508 -0.0657391 0.142564 -0.0101503 Vertex 34509 -0.0327214 0.154341 -0.00788327 Vertex 34510 -0.0432223 0.147486 -0.00120685 Vertex 34511 -0.0269011 0.155694 -0.0071882 Vertex 34512 -0.0200653 0.164398 -0.0170398 Vertex 34513 -0.0632877 0.151202 -0.0295741 Vertex 34514 -0.0248971 0.163359 -0.0156802 Vertex 34515 -0.0614708 0.165833 -0.0590275 Vertex 34516 -0.0204571 0.159751 -0.0120682 Vertex 34517 -0.0353184 0.153664 -0.00782609 Vertex 34518 -0.00997898 0.172997 -0.0279186 Vertex 34519 -0.0664375 0.153657 -0.0486366 Vertex 34520 -0.0654804 0.146553 -0.0219125 Vertex 34521 -0.0665297 0.149283 -0.0337543 Vertex 34522 -0.0286406 0.154979 -0.0065778 Vertex 34523 -0.0198183 0.158714 -0.00970491 Vertex 34524 -0.0628566 0.163115 -0.0590591 Vertex 34525 -0.0643715 0.139866 -0.00735458 Vertex 34526 -0.0344621 0.154617 -0.00886992 Vertex 34527 -0.0301543 0.157156 -0.0110394 Vertex 34528 -0.0658978 0.147832 -0.0279808 Vertex 34529 -0.0628859 0.1495 -0.0200671 Vertex 34530 -0.0647358 0.157148 -0.0507072 Vertex 34531 -0.063339 0.160302 -0.0538579 Vertex 34532 -0.0356652 0.156121 -0.0104266 Vertex 34533 -0.0632078 0.143892 -0.00837073 Vertex 34534 -0.0622726 0.163207 -0.0582148 Vertex 34535 -0.0652579 0.153012 -0.0402459 Vertex 34536 -0.0268492 0.155368 -0.00477229 Vertex 34537 -0.0642885 0.148287 -0.0250747 Vertex 34538 -0.068322 0.144999 -0.0199128 Vertex 34539 -0.0167466 0.161131 -0.0135692 Vertex 34540 -0.0610724 0.144529 -0.00434459 Vertex 34541 -0.0648295 0.14966 -0.0309451 Vertex 34542 -0.0195496 0.161752 -0.0147401 Vertex 34543 -0.0157653 0.161968 -0.0148041 Vertex 34544 -0.0661283 0.153073 -0.0457545 Vertex 34545 -0.0159101 0.1643 -0.0176565 Vertex 34546 -0.0197453 0.163025 -0.0159769 Vertex 34547 -0.0538319 0.138205 -0.00152003 Vertex 34548 -0.0636177 0.149382 -0.0259273 Vertex 34549 -0.0618668 0.165619 -0.0600772 Vertex 34550 -0.0674426 0.148384 -0.0326115 Vertex 34551 -0.0382124 0.150071 -0.00262103 Vertex 34552 -0.0481456 0.14427 0.00342034 Vertex 34553 -0.0628742 0.161547 -0.05443 Vertex 34554 -0.0274951 0.157765 -0.0111917 Vertex 34555 -0.0698236 0.144589 -0.0179026 Vertex 34556 -0.067038 0.143551 -0.013347 Vertex 34557 -0.0702692 0.146349 -0.0238997 Vertex 34558 -0.0653179 0.156011 -0.0499494 Vertex 34559 -0.044347 0.146755 0.000226372 Vertex 34560 -0.0703667 0.142544 -0.0104932 Vertex 34561 -0.0118076 0.166362 -0.0213381 Vertex 34562 -0.066026 0.146409 -0.0228827 Vertex 34563 -0.0639324 0.147049 -0.0189093 Vertex 34564 -0.0232571 0.160328 -0.0132723 Vertex 34565 -0.0531944 0.139931 -0.000456373 Vertex 34566 -0.0251865 0.160795 -0.0139572 Vertex 34567 -0.0261802 0.161053 -0.0142499 Vertex 34568 -0.0646767 0.146003 -0.0179612 Vertex 34569 -0.0514122 0.146842 -0.00193867 Vertex 34570 -0.067642 0.150503 -0.040589 Vertex 34571 -0.0641925 0.158337 -0.0512857 Vertex 34572 -0.0492219 0.145089 -9.42983e-05 Vertex 34573 -0.0187506 0.162746 -0.0157051 Vertex 34574 -0.0283979 0.155793 -0.00852382 Vertex 34575 -0.0412895 0.149153 -0.00363446 Vertex 34576 -0.0149904 0.165173 -0.0188028 Vertex 34577 -0.0678239 0.15109 -0.0436673 Vertex 34578 -0.0713444 0.144531 -0.0156116 Vertex 34579 -0.0311494 0.157393 -0.0113544 Vertex 34580 -0.0654527 0.156561 -0.05302 Vertex 34581 -0.0284257 0.15795 -0.0115973 Vertex 34582 -0.0501242 0.144161 0.00100252 Vertex 34583 -0.0177321 0.160293 -0.0123373 Vertex 34584 -0.0639066 0.158701 -0.0499459 Vertex 34585 -0.0637196 0.147938 -0.020833 Vertex 34586 -0.0649871 0.152354 -0.0372683 Vertex 34587 -0.0672863 0.151256 -0.0426939 Vertex 34588 -0.0675442 0.151908 -0.0456642 Vertex 34589 -0.0628045 0.144114 -0.00718004 Vertex 34590 -0.02662 0.157614 -0.0107103 Vertex 34591 -0.0625842 0.162383 -0.0563311 Vertex 34592 -0.06937 0.145758 -0.0234859 Vertex 34593 -0.0108613 0.16611 -0.0209706 Vertex 34594 -0.0670342 0.154632 -0.0510962 Vertex 34595 -0.0106285 0.174518 -0.0286758 Vertex 34596 -0.0370306 0.151785 -0.00571407 Vertex 34597 -0.0318792 0.156356 -0.0104816 Vertex 34598 -0.0635974 0.151927 -0.0324488 Vertex 34599 -0.064505 0.152553 -0.0362048 Vertex 34600 -0.0656159 0.148667 -0.029991 Vertex 34601 -0.0657818 0.152842 -0.0413063 Vertex 34602 -0.0690913 0.143 -0.0123014 Vertex 34603 -0.0674057 0.140585 -0.00814985 Vertex 34604 -0.0696706 0.14899 -0.0379959 Vertex 34605 -0.0715189 0.150138 -0.0417489 Vertex 34606 -0.0628726 0.147915 -0.0152353 Vertex 34607 -0.0657166 0.14722 -0.0249021 Vertex 34608 -0.0112299 0.173502 -0.0278641 Vertex 34609 -0.0622733 0.144309 -0.00616114 Vertex 34610 -0.0699102 0.14965 -0.0409667 Vertex 34611 -0.0657306 0.150277 -0.0347821 Vertex 34612 -0.0469903 0.145002 0.00194161 Vertex 34613 -0.0423065 0.150496 -0.00548521 Vertex 34614 -0.0214023 0.161048 -0.0139992 Vertex 34615 -0.0102345 0.169322 -0.0249254 Vertex 34616 -0.0643532 0.142586 -0.00864957 Vertex 34617 -0.0437605 0.146927 0.00133694 Vertex 34618 -0.0668982 0.151542 -0.0415298 Vertex 34619 -0.0195832 0.1596 -0.0115811 Vertex 34620 -0.0213292 0.159914 -0.0125433 Vertex 34621 -0.01408 0.166026 -0.0199736 Vertex 34622 -0.0674032 0.144345 -0.0161484 Vertex 34623 -0.025189 0.156576 -0.00769163 Vertex 34624 -0.0396346 0.151103 -0.0056598 Vertex 34625 -0.0647696 0.148087 -0.0261392 Vertex 34626 -0.0238433 0.163025 -0.0155105 Vertex 34627 -0.0515557 0.141366 0.000880581 Vertex 34628 -0.0255078 0.162179 -0.0150106 Vertex 34629 -0.0710899 0.143489 -0.012899 Vertex 34630 -0.0502835 0.146495 -0.00183305 Vertex 34631 -0.0445568 0.151229 -0.00569012 Vertex 34632 -0.0545976 0.139948 -0.00193829 Vertex 34633 -0.0441 0.149758 -0.00480897 Vertex 34634 -0.0683674 0.147186 -0.0280671 Vertex 34635 -0.0421651 0.149301 -0.00412295 Vertex 34636 -0.0523786 0.138216 -8.53499e-05 Vertex 34637 -0.0712073 0.146616 -0.0240304 Vertex 34638 -0.0344045 0.152028 -0.00248634 Vertex 34639 -0.0634196 0.15027 -0.0277557 Vertex 34640 -0.0484925 0.14723 -0.00252533 Vertex 34641 -0.0666857 0.141706 -0.00893584 Vertex 34642 -0.0725189 0.144585 -0.0159026 Vertex 34643 -0.0655919 0.151202 -0.0366034 Vertex 34644 -0.0293232 0.155967 -0.00892475 Vertex 34645 -0.0647392 0.157599 -0.0538703 Vertex 34646 -0.0658194 0.154782 -0.0493821 Vertex 34647 -0.0650925 0.142629 -0.00933509 Vertex 34648 -0.0303597 0.158405 -0.0122944 Vertex 34649 -0.0652338 0.145869 -0.0189253 Vertex 34650 -0.0494895 0.143125 0.00338457 Vertex 34651 -0.0635672 0.159894 -0.0552656 Vertex 34652 -0.0639536 0.144435 -0.0123561 Vertex 34653 -0.0484084 0.144974 0.000471547 Vertex 34654 -0.0388973 0.150052 -0.00339157 Vertex 34655 -0.0231137 0.159172 -0.011899 Vertex 34656 -0.0645685 0.147457 -0.0230581 Vertex 34657 -0.0691709 0.147293 -0.0286567 Vertex 34658 -0.0647302 0.154215 -0.0408208 Vertex 34659 -0.0281334 0.155101 -0.00344078 Vertex 34660 -0.0471466 0.149481 -0.0040486 Vertex 34661 -0.0649274 0.155826 -0.0455264 Vertex 34662 -0.0354607 0.154847 -0.00919588 Vertex 34663 -0.068714 0.143769 -0.0144235 Vertex 34664 -0.0688026 0.146519 -0.0258522 Vertex 34665 -0.0697305 0.146842 -0.0262196 Vertex 34666 -0.0675802 0.144972 -0.0192338 Vertex 34667 -0.0712328 0.151001 -0.0437008 Vertex 34668 -0.0332687 0.15271 -0.00392746 Vertex 34669 -0.0389846 0.1533 -0.00797514 Vertex 34670 -0.0661914 0.152591 -0.0424622 Vertex 34671 -0.0685644 0.145677 -0.0229009 Vertex 34672 -0.0630574 0.15313 -0.033029 Vertex 34673 -0.0506452 0.142899 0.00154993 Vertex 34674 -0.0259115 0.159753 -0.0130913 Vertex 34675 -0.0276261 0.15573 -0.00786612 Vertex 34676 -0.0629042 0.151488 -0.0283316 Vertex 34677 -0.0655821 0.153706 -0.0431373 Vertex 34678 -0.0671293 0.149176 -0.0346332 Vertex 34679 -0.0678286 0.139237 -0.00787376 Vertex 34680 -0.0503848 0.141583 0.00270968 Vertex 34681 -0.0257539 0.157476 -0.0102144 Vertex 34682 -0.0627477 0.148893 -0.0169766 Vertex 34683 -0.0662325 0.14347 -0.0127636 Vertex 34684 -0.0646684 0.155196 -0.0425404 Vertex 34685 -0.0650665 0.151369 -0.0356223 Vertex 34686 -0.0630084 0.142674 -0.00705706 Vertex 34687 -0.0633749 0.1608 -0.057006 Vertex 34688 -0.047607 0.144918 0.0010701 Vertex 34689 -0.0267283 0.156621 -0.00899742 Vertex 34690 -0.0725233 0.143597 -0.0104167 Vertex 34691 -0.0672167 0.147775 -0.0296135 Vertex 34692 -0.0637876 0.155678 -0.0402328 Vertex 34693 -0.0303698 0.154176 -0.00601441 Vertex 34694 -0.0335873 0.154463 -0.00838872 Vertex 34695 -0.0374543 0.155389 -0.00975319 Vertex 34696 -0.0627356 0.150882 -0.0252578 Vertex 34697 -0.0214326 0.158913 -0.0108411 Vertex 34698 -0.0635082 0.148832 -0.022668 Vertex 34699 -0.0129572 0.163516 -0.016687 Vertex 34700 -0.0700292 0.14319 -0.0126949 Vertex 34701 -0.0463999 0.150559 -0.00488163 Vertex 34702 -0.0689525 0.144454 -0.0174142 Vertex 34703 -0.0613355 0.171315 -0.0617342 Vertex 34704 -0.0262324 0.15581 -0.00635861 Vertex 34705 -0.0667057 0.14638 -0.0236565 Vertex 34706 -0.0632329 0.149656 -0.0246848 Vertex 34707 -0.0671416 0.145678 -0.0214457 Vertex 34708 -0.0632766 0.146612 -0.0147592 Vertex 34709 -0.0636907 0.146369 -0.0159165 Vertex 34710 -0.0647273 0.156687 -0.0474505 Vertex 34711 -0.0223961 0.161302 -0.0143028 Vertex 34712 -0.0615025 0.16984 -0.0615386 Vertex 34713 -0.063796 0.145383 -0.0141799 Vertex 34714 -0.016176 0.165587 -0.0188354 Vertex 34715 -0.028407 0.156859 -0.0100656 Vertex 34716 -0.0676059 0.141897 -0.00935244 Vertex 34717 -0.0187849 0.159551 -0.0109781 Vertex 34718 -0.0630553 0.148575 -0.0182369 Vertex 34719 -0.043754 0.152254 -0.00662286 Vertex 34720 -0.0244459 0.156552 -0.00701262 Vertex 34721 -0.0154877 0.167822 -0.0210841 Vertex 34722 -0.0362392 0.151744 -0.00510561 Vertex 34723 -0.0641035 0.141307 -0.00745692 Vertex 34724 -0.0513203 0.142869 0.00077197 Vertex 34725 -0.0206091 0.162049 -0.0149623 Vertex 34726 -0.0448968 0.146123 0.00263093 Vertex 34727 -0.0682244 0.142863 -0.0118107 Vertex 34728 -0.0633856 0.148243 -0.0195768 Vertex 34729 -0.0636742 0.142603 -0.0078783 Vertex 34730 -0.0634393 0.144588 -0.0113838 Vertex 34731 -0.0664444 0.151761 -0.0404644 Vertex 34732 -0.0635111 0.15292 -0.0340962 Vertex 34733 -0.0269084 0.160002 -0.0134029 Vertex 34734 -0.0650446 0.154908 -0.0437098 Vertex 34735 -0.0092432 0.169141 -0.0244221 Vertex 34736 -0.0520559 0.142894 8.38275e-05 Vertex 34737 -0.0315436 0.153515 -0.00448892 Vertex 34738 -0.048759 0.14421 0.00252118 Vertex 34739 -0.0296304 0.159454 -0.0131553 Vertex 34740 -0.0419789 0.152954 -0.00736227 Vertex 34741 -0.0654711 0.157635 -0.0545345 Vertex 34742 -0.0507334 0.147965 -0.00270623 Vertex 34743 -0.0652024 0.153998 -0.041972 Vertex 34744 -0.0707102 0.149836 -0.0414255 Vertex 34745 -0.0353601 0.152626 -0.00619729 Vertex 34746 -0.0465636 0.146777 -0.00183655 Vertex 34747 -0.0224096 0.15809 -0.00961754 Vertex 34748 -0.0204702 0.16083 -0.0136222 Vertex 34749 -0.0640756 0.151735 -0.033508 Vertex 34750 -0.0643695 0.149877 -0.0298747 Vertex 34751 -0.00929516 0.17029 -0.0258484 Vertex 34752 -0.0621407 0.163665 -0.0567978 Vertex 34753 -0.0372213 0.150899 -0.00386632 Vertex 34754 -0.0404209 0.150087 -0.00469474 Vertex 34755 -0.0186134 0.161522 -0.0143726 Vertex 34756 -0.0681449 0.144372 -0.0168262 Vertex 34757 -0.0635638 0.147341 -0.0176577 Vertex 34758 -0.063068 0.161146 -0.0557557 Vertex 34759 -0.0681305 0.148403 -0.0333773 Vertex 34760 -0.053019 0.141421 -0.000504477 Vertex 34761 -0.0396234 0.150027 -0.00409811 Vertex 34762 -0.0466152 0.145766 -0.000178732 Vertex 34763 -0.0611832 0.146298 -0.00395593 Vertex 34764 -0.0158447 0.163118 -0.0162484 Vertex 34765 -0.032733 0.155408 -0.00943888 Vertex 34766 -0.0329038 0.153455 -0.00604291 Vertex 34767 -0.0657515 0.154274 -0.0462128 Vertex 34768 -0.0671262 0.150692 -0.0396095 Vertex 34769 -0.0668614 0.150018 -0.036632 Vertex 34770 -0.066567 0.147777 -0.0287654 Vertex 34771 -0.0349517 0.151884 -0.00344832 Vertex 34772 -0.0474936 0.146975 -0.00223523 Vertex 34773 -0.0209297 0.158088 -0.00822134 Vertex 34774 -0.0641393 0.143504 -0.0105249 Vertex 34775 -0.0628937 0.146875 -0.0135938 Vertex 34776 -0.0670544 0.153567 -0.0495044 Vertex 34777 -0.0522702 0.141391 0.00017327 Vertex 34778 -0.0336701 0.155604 -0.00983793 Vertex 34779 -0.0665448 0.142647 -0.010737 Vertex 34780 -0.0244524 0.16187 -0.0148048 Vertex 34781 -0.0646798 0.158592 -0.0555006 Vertex 34782 -0.0681899 0.15036 -0.0415571 Vertex 34783 -0.0638595 0.159101 -0.0532849 Vertex 34784 -0.0669656 0.147091 -0.0266318 Vertex 34785 -0.0653748 0.149517 -0.0319115 Vertex 34786 -0.0652965 0.147932 -0.0271042 Vertex 34787 -0.0413647 0.150284 -0.00509832 Vertex 34788 -0.0301348 0.156065 -0.00950629 Vertex 34789 -0.0350004 0.157209 -0.0112204 Vertex 34790 -0.0660122 0.153896 -0.0475582 Vertex 34791 -0.0658642 0.141582 -0.00840157 Vertex 34792 -0.0659473 0.151954 -0.0393992 Vertex 34793 -0.0558806 0.138039 -0.00386657 Vertex 34794 -0.0355616 0.151785 -0.00432824 Vertex 34795 -0.0644393 0.157952 -0.0526177 Vertex 34796 -0.0648339 0.153263 -0.0390895 Vertex 34797 -0.0644813 0.157544 -0.049277 Vertex 34798 -0.0659423 0.149401 -0.0328697 Vertex 34799 -0.0638978 0.150075 -0.0288161 Vertex 34800 -0.0714181 0.143109 -0.0104276 Vertex 34801 -0.0286315 0.159193 -0.0128611 Vertex 34802 -0.0645561 0.151545 -0.0345673 Vertex 34803 -0.064202 0.155431 -0.0413859 Vertex 34804 -0.06621 0.148552 -0.030869 Vertex 34805 -0.0318636 0.155275 -0.00893878 Vertex 34806 -0.0691845 0.152183 -0.0467119 Vertex 34807 -0.0677074 0.147127 -0.0273126 Vertex 34808 -0.0607836 0.171276 -0.0609166 Vertex 34809 -0.064096 0.14766 -0.0219948 Vertex 34810 -0.0667821 0.14845 -0.031825 Vertex 34811 -0.032878 0.156591 -0.0107994 Vertex 34812 -0.0662707 0.14708 -0.0258685 Vertex 34813 -0.0668387 0.144945 -0.0185544 Vertex 34814 -0.0227209 0.162682 -0.0153632 Vertex 34815 -0.044945 0.146638 -0.00064718 Vertex 34816 -0.0449017 0.148739 -0.00386394 Vertex 34817 -0.0393381 0.149359 -0.00118821 Vertex 34818 -0.0274694 0.155208 -0.00473974 Vertex 34819 -0.0509131 0.144221 0.000402933 Vertex 34820 -0.0627563 0.152415 -0.0301468 Vertex 34821 -0.0703836 0.151592 -0.0450749 Vertex 34822 -0.0662037 0.154495 -0.0505507 Vertex 34823 -0.0119941 0.16759 -0.0225943 Vertex 34824 -0.0643947 0.15704 -0.046105 Vertex 34825 -0.0234022 0.157317 -0.0083471 Vertex 34826 -0.0630027 0.145885 -0.0118617 Vertex 34827 -0.0648437 0.159826 -0.0567739 Vertex 34828 -0.0631669 0.152168 -0.0312981 Vertex 34829 -0.0678418 0.143634 -0.0139334 Vertex 34830 -0.0677458 0.149084 -0.0355035 Vertex 34831 -0.0221568 0.157426 -0.00647102 Vertex 34832 -0.0704544 0.150585 -0.0434585 Vertex 34833 -0.0310262 0.153728 -0.00354608 Vertex 34834 -0.0400442 0.15362 -0.00816685 Vertex 34835 -0.0550398 0.0573097 0.0169909 Face 1 20464 20463 19670 Face 2 8846 8936 14300 Face 3 15447 12950 4985 Face 4 15448 15447 4985 Face 5 20172 20173 20255 Face 6 22610 14687 22325 Face 7 29535 26418 29484 Face 8 7017 7019 20708 Face 9 12344 12256 12614 Face 10 12318 4491 16345 Face 11 21289 22139 20299 Face 12 20383 21289 20299 Face 13 3074 3208 111 Face 14 4614 24688 111 Face 15 1581 1469 3208 Face 16 2637 15003 15053 Face 17 3074 1581 3208 Face 18 4197 9177 2411 Face 19 5005 2637 15053 Face 20 2804 2805 5005 Face 21 983 4197 2411 Face 22 1581 5133 6014 Face 23 2805 2804 3332 Face 24 1469 1581 6014 Face 25 5133 5512 1461 Face 26 6014 5133 1461 Face 27 5512 5374 2884 Face 28 1461 5512 2884 Face 29 5374 2157 779 Face 30 2884 5374 779 Face 31 2157 2843 2458 Face 32 779 2157 2458 Face 33 2843 14635 14624 Face 34 16657 4022 16656 Face 35 2458 2843 14624 Face 36 4197 983 15053 Face 37 1496 4615 1607 Face 38 15346 15486 15345 Face 39 15003 4197 15053 Face 40 15902 1493 1585 Face 41 15209 15210 15345 Face 42 11377 15397 11208 Face 43 15486 15485 15345 Face 44 3333 2805 3332 Face 45 14613 3458 14596 Face 46 4615 3333 3332 Face 47 2805 2637 5005 Face 48 4615 4748 1607 Face 49 4748 4615 3332 Face 50 14635 16247 16244 Face 51 15165 15593 1097 Face 52 14624 14635 16244 Face 53 16247 14171 14149 Face 54 16244 16247 14149 Face 55 14171 16045 16530 Face 56 14149 14171 16530 Face 57 16045 14336 16056 Face 58 16530 16045 16056 Face 59 14336 4862 16439 Face 60 16056 14336 16439 Face 61 4862 5146 5274 Face 62 16439 4862 5274 Face 63 5146 5777 5778 Face 64 5274 5146 5778 Face 65 15036 15108 15109 Face 66 22461 29805 29804 Face 67 16090 14958 16246 Face 68 15628 15627 15485 Face 69 6745 6744 6650 Face 70 15529 15391 14214 Face 71 16493 16492 16331 Face 72 21438 21437 21344 Face 73 22301 22300 22204 Face 74 22695 23969 23026 Face 75 17095 17096 17185 Face 76 14895 15025 14528 Face 77 1380 14091 14733 Face 78 15453 13832 15323 Face 79 12665 12666 15096 Face 80 14240 14239 14137 Face 81 19683 15165 1097 Face 82 15814 16090 16590 Face 83 5777 16221 13944 Face 84 21630 21725 21724 Face 85 5778 5777 13944 Face 86 16221 15189 3200 Face 87 13944 16221 3200 Face 88 15189 15119 14989 Face 89 3200 15189 14989 Face 90 15119 3583 14070 Face 91 14989 15119 14070 Face 92 21536 21537 21629 Face 93 209 92 670 Face 94 20396 20395 14405 Face 95 4021 1496 4022 Face 96 22500 22499 22402 Face 97 1496 1607 4022 Face 98 3583 15911 14688 Face 99 2176 1354 15494 Face 100 14070 3583 14688 Face 101 34727 34556 34683 Face 102 14688 15911 15113 Face 103 20745 34637 19803 Face 104 34504 34331 34489 Face 105 63 15114 14123 Face 106 105 2773 9756 Face 107 34474 34769 34643 Face 108 17186 17276 17275 Face 109 4858 5773 14749 Face 110 15292 14894 12114 Face 111 15167 15036 15109 Face 112 14124 6838 6837 Face 113 471 14856 16360 Face 114 5722 11291 20531 Face 115 21830 21926 21829 Face 116 15108 9504 5337 Face 117 14492 14508 16083 Face 118 20127 20205 20204 Face 119 5774 15259 1688 Face 120 13960 16567 1688 Face 121 16567 16242 1688 Face 122 14735 15616 15474 Face 123 12887 14522 22423 Face 124 3965 14735 1357 Face 125 21628 21629 21723 Face 126 21095 12850 12408 Face 127 30698 30797 30796 Face 128 12256 12344 10816 Face 129 14447 14448 14565 Face 130 21261 21260 32629 Face 131 20363 20362 18070 Face 132 16090 16246 16590 Face 133 15109 15108 5337 Face 134 19824 19900 19823 Face 135 9504 15729 15873 Face 136 14128 14129 14230 Face 137 6532 2757 14035 Face 138 13879 13878 13862 Face 139 14004 16041 14925 Face 140 15926 16080 16079 Face 141 14707 14830 14829 Face 142 14706 14707 14829 Face 143 12279 13262 13357 Face 144 15218 15354 15353 Face 145 368 2800 262 Face 146 558 2289 441 Face 147 16400 16563 16562 Face 148 16399 16400 16562 Face 149 15924 15925 16078 Face 150 4738 16946 14923 Face 151 14101 1657 980 Face 152 16079 16236 16235 Face 153 3011 1236 3153 Face 154 2202 14101 980 Face 155 5138 2176 15494 Face 156 15122 14992 3196 Face 157 14992 3324 3196 Face 158 1354 15602 233 Face 159 16562 16563 3209 Face 160 1922 2046 476 Face 161 34577 34391 34500 Face 162 14228 15811 15812 Face 163 5337 9504 15873 Face 164 22500 22594 22499 Face 165 1353 15357 15048 Face 166 19595 2362 15440 Face 167 14490 19595 15440 Face 168 16370 20559 20473 Face 169 16377 16378 16540 Face 170 15729 14912 16343 Face 171 13842 13855 13841 Face 172 21926 22024 21925 Face 173 15787 8946 8844 Face 174 29066 19198 19199 Face 175 27376 27377 29062 Face 176 13166 13072 4985 Face 177 12950 13166 4985 Face 178 21645 20727 20726 Face 179 22062 16334 21965 Face 180 19702 11110 18326 Face 181 20709 11110 19702 Face 182 16344 12318 16345 Face 183 16344 16345 6626 Face 184 21288 21196 22139 Face 185 15335 4095 15115 Face 186 1504 1955 4108 Face 187 14856 2456 2714 Face 188 16364 471 16360 Face 189 15210 15346 15345 Face 190 15873 15729 16343 Face 191 16363 3506 4352 Face 192 16088 1464 1350 Face 193 21436 21437 21531 Face 194 21533 21532 21437 Face 195 4075 3248 3247 Face 196 14912 14606 14727 Face 197 14054 14143 14142 Face 198 16397 16398 16560 Face 199 1357 14735 15474 Face 200 14053 14054 14142 Face 201 2500 2980 2640 Face 202 818 1540 1153 Face 203 20382 21297 20381 Face 204 5515 1463 13939 Face 205 4070 15814 13821 Face 206 21377 13037 15035 Face 207 14958 3061 16246 Face 208 15486 15628 15485 Face 209 14231 14341 14340 Face 210 15814 16590 13821 Face 211 19924 16215 16061 Face 212 14230 14231 14340 Face 213 34392 34792 34796 Face 214 14129 14231 14230 Face 215 785 13956 13951 Face 216 22706 30384 30454 Face 217 14051 14050 13973 Face 218 10243 7192 7083 Face 219 30478 30477 30406 Face 220 442 2799 168 Face 221 21289 21288 22139 Face 222 16343 14912 14727 Face 223 3441 111 24687 Face 224 22011 22012 22109 Face 225 1691 1581 3074 Face 226 3075 1691 3074 Face 227 1691 5260 5133 Face 228 1581 1691 5133 Face 229 16078 16079 16235 Face 230 14007 15111 15095 Face 231 1657 2156 778 Face 232 980 1657 778 Face 233 3324 16055 14148 Face 234 20127 20128 20205 Face 235 17447 18842 18348 Face 236 3196 3324 14148 Face 237 1344 5512 5133 Face 238 5260 1344 5133 Face 239 21665 2801 21570 Face 240 3070 5885 5122 Face 241 2456 16429 16430 Face 242 14165 864 4095 Face 243 15628 15772 15771 Face 244 15627 15628 15771 Face 245 15771 15772 15923 Face 246 15772 15924 15923 Face 247 21820 21821 21916 Face 248 15924 16078 16077 Face 249 3331 343 3204 Face 250 14226 20279 22589 Face 251 15395 14079 14497 Face 252 11927 33146 32880 Face 253 15633 15634 15777 Face 254 13832 14175 14282 Face 255 15456 15181 14986 Face 256 13855 13854 13841 Face 257 13559 5526 167 Face 258 14079 14616 14497 Face 259 14830 14955 14954 Face 260 16384 15263 16375 Face 261 1344 1436 5374 Face 262 14829 14830 14954 Face 263 5512 1344 5374 Face 264 2283 2157 5374 Face 265 1436 2283 5374 Face 266 2283 1584 2843 Face 267 2157 2283 2843 Face 268 12626 13030 2930 Face 269 16079 16080 16236 Face 270 14993 6156 3324 Face 271 16360 14856 2714 Face 272 14944 14945 15077 Face 273 15078 15210 15209 Face 274 4352 1466 16440 Face 275 1466 16441 16440 Face 276 16329 16328 16171 Face 277 21345 21438 21344 Face 278 14058 15202 14039 Face 279 15771 15770 15626 Face 280 16561 4075 4414 Face 281 1385 1498 4157 Face 282 5522 5523 1540 Face 283 16560 16561 4414 Face 284 3062 5623 2366 Face 285 16398 16561 16560 Face 286 14143 14245 14244 Face 287 380 14997 1341 Face 288 14421 12946 14540 Face 289 15524 864 14165 Face 290 14606 7244 985 Face 291 7819 15583 1321 Face 292 22352 15881 3461 Face 293 1548 1530 1529 Face 294 14727 14606 985 Face 295 9194 22352 3461 Face 296 22024 22023 21925 Face 297 34637 34557 19803 Face 298 14491 12258 12172 Face 299 22307 22306 22210 Face 300 19636 19634 10963 Face 301 14152 19636 10963 Face 302 1824 5012 1825 Face 303 22015 22113 22112 Face 304 3635 3424 985 Face 305 3456 5529 5139 Face 306 16236 16400 16399 Face 307 16958 6635 22439 Face 308 3836 3703 2289 Face 309 16235 16236 16399 Face 310 34410 34478 34671 Face 311 15925 16079 16078 Face 312 1155 4619 6004 Face 313 2800 558 441 Face 314 2156 15914 15805 Face 315 778 2156 15805 Face 316 16654 16653 16494 Face 317 21916 21917 22014 Face 318 5125 546 1424 Face 319 16652 4156 16651 Face 320 9521 8213 9407 Face 321 1584 14636 14635 Face 322 2843 1584 14635 Face 323 14636 16261 16247 Face 324 14635 14636 16247 Face 325 16261 14196 14171 Face 326 1686 14688 15245 Face 327 16247 16261 14171 Face 328 2714 2456 16430 Face 329 2546 15912 15361 Face 330 34821 34806 34405 Face 331 16429 2975 4103 Face 332 20464 21377 20463 Face 333 19376 22352 9194 Face 334 22039 19805 34437 Face 335 2980 3250 2640 Face 336 13905 13929 13928 Face 337 13904 13905 13928 Face 338 16655 16654 16495 Face 339 284 2202 5630 Face 340 22590 14226 22589 Face 341 16494 16333 16495 Face 342 25971 26082 26081 Face 343 15161 20396 14405 Face 344 4152 4151 16654 Face 345 16655 4152 16654 Face 346 1824 1825 4151 Face 347 4152 1824 4151 Face 348 16127 13894 13873 Face 349 5012 5139 1825 Face 350 14006 14007 15095 Face 351 16120 16127 13873 Face 352 31326 25670 25578 Face 353 1955 5874 19753 Face 354 14196 1532 16045 Face 355 14171 14196 16045 Face 356 1532 14871 14336 Face 357 16045 1532 14336 Face 358 14871 3721 4862 Face 359 14336 14871 4862 Face 360 14688 15113 15245 Face 361 3721 2842 5146 Face 362 14992 14993 3324 Face 363 5093 16206 5092 Face 364 14518 15453 15323 Face 365 6156 15908 16055 Face 366 16157 16314 16156 Face 367 15077 15078 15209 Face 368 19619 19416 18505 Face 369 16441 16434 16273 Face 370 15854 16005 15853 Face 371 13818 11105 12277 Face 372 15627 15771 15626 Face 373 16475 16474 16313 Face 374 1385 3440 1498 Face 375 21830 21829 21732 Face 376 4154 1385 4157 Face 377 3440 987 1498 Face 378 3440 3584 3712 Face 379 987 3440 3712 Face 380 2128 15964 2002 Face 381 5623 14085 2366 Face 382 15526 15524 14165 Face 383 15668 15669 15817 Face 384 14672 14096 14076 Face 385 133 13981 6396 Face 386 14230 14340 14339 Face 387 4613 16121 14714 Face 388 14128 14230 14229 Face 389 7244 3635 985 Face 390 15820 23 16208 Face 391 28547 34512 34546 Face 392 1690 14806 1580 Face 393 13089 34476 13116 Face 394 1656 2029 4057 Face 395 1549 14806 890 Face 396 5529 5402 5140 Face 397 9211 5876 9323 Face 398 2935 4608 4741 Face 399 4151 1825 4150 Face 400 5012 3456 5139 Face 401 2934 2935 4741 Face 402 3456 2935 2934 Face 403 5529 3456 2934 Face 404 14101 2202 4741 Face 405 4608 14101 4741 Face 406 15914 14564 14553 Face 407 15805 15914 14553 Face 408 14564 16127 16120 Face 409 14553 14564 16120 Face 410 19517 13354 19358 Face 411 19937 19376 9194 Face 412 16490 16489 16328 Face 413 889 1433 3799 Face 414 13374 12470 16595 Face 415 12628 12182 12095 Face 416 4862 3721 5146 Face 417 2842 16109 5777 Face 418 5146 2842 5777 Face 419 5008 3200 14864 Face 420 16109 5196 16221 Face 421 16430 16429 4103 Face 422 103 6007 531 Face 423 16057 15902 1585 Face 424 2975 14993 14992 Face 425 16083 16088 1350 Face 426 16032 10988 3424 Face 427 3635 16032 3424 Face 428 1464 3506 16363 Face 429 15169 15870 12673 Face 430 26094 26095 27378 Face 431 13067 15169 12673 Face 432 23771 23450 23449 Face 433 980 778 130 Face 434 12850 20383 20299 Face 435 4731 4741 284 Face 436 13929 13975 13974 Face 437 3071 2934 4731 Face 438 2202 980 5630 Face 439 5402 5529 3071 Face 440 4741 2202 284 Face 441 5139 5529 5140 Face 442 2934 4741 4731 Face 443 19518 14491 12412 Face 444 5529 2934 3071 Face 445 13894 471 16364 Face 446 15114 15222 14123 Face 447 15393 3066 14737 Face 448 13873 13894 16364 Face 449 1491 13944 5008 Face 450 3200 14989 14864 Face 451 5777 16109 16221 Face 452 5196 14517 15189 Face 453 16221 5196 15189 Face 454 14517 15252 15119 Face 455 2789 5778 1491 Face 456 13944 3200 5008 Face 457 14958 14020 1909 Face 458 3324 6156 16055 Face 459 16403 14612 15935 Face 460 16549 11011 16386 Face 461 14693 14694 14816 Face 462 16314 16475 16313 Face 463 10831 9044 10832 Face 464 20708 20709 19702 Face 465 6151 3966 2407 Face 466 15569 15711 15568 Face 467 14816 14817 14941 Face 468 990 1336 476 Face 469 9216 4229 15162 Face 470 14942 15075 15074 Face 471 26094 27378 27377 Face 472 14894 14770 13364 Face 473 3584 5653 5652 Face 474 3712 3584 5652 Face 475 5652 5653 2491 Face 476 5653 4708 2491 Face 477 3685 15964 16115 Face 478 4708 2111 3300 Face 479 15669 3685 15817 Face 480 15817 3685 16115 Face 481 14648 3188 15869 Face 482 16117 16273 135 Face 483 33227 33226 33091 Face 484 7177 10859 13169 Face 485 25955 25956 25655 Face 486 22351 9426 22447 Face 487 12946 19540 19704 Face 488 14906 12176 14782 Face 489 22511 10327 22138 Face 490 21441 21536 21440 Face 491 1384 1826 3899 Face 492 21348 21441 21440 Face 493 5139 5140 1717 Face 494 4027 1384 3899 Face 495 16654 4151 16653 Face 496 1825 5139 1717 Face 497 16495 16654 16494 Face 498 1825 1717 4150 Face 499 22496 22590 22495 Face 500 4151 4150 16653 Face 501 13724 14152 4025 Face 502 16333 16494 16332 Face 503 14152 10963 4025 Face 504 22590 22589 22495 Face 505 19439 19518 12412 Face 506 21821 21917 21916 Face 507 19118 436 19057 Face 508 1424 546 2155 Face 509 13389 9304 6509 Face 510 32570 32697 32569 Face 511 15189 14517 15119 Face 512 15252 16240 3583 Face 513 15119 15252 3583 Face 514 16240 15186 15911 Face 515 14989 14070 14071 Face 516 3583 16240 15911 Face 517 5090 5091 5214 Face 518 14864 14989 14071 Face 519 18341 14927 18436 Face 520 34559 34815 34510 Face 521 1350 1464 16363 Face 522 14945 15078 15077 Face 523 20741 15437 10886 Face 524 3506 1466 4352 Face 525 1350 16363 16201 Face 526 16170 16171 16328 Face 527 16083 1350 1017 Face 528 16066 16083 1017 Face 529 662 2155 15094 Face 530 14454 14492 16066 Face 531 21438 21533 21437 Face 532 21626 21625 21532 Face 533 16330 16329 16172 Face 534 34735 9101 11355 Face 535 16491 16490 16329 Face 536 16491 16650 16490 Face 537 16330 16491 16329 Face 538 16650 16649 16490 Face 539 4027 3899 16649 Face 540 16650 4027 16649 Face 541 14696 14697 14819 Face 542 14820 14945 14944 Face 543 14596 3458 1380 Face 544 14819 14820 14944 Face 545 4103 2975 14992 Face 546 14260 16526 16527 Face 547 5274 5778 2789 Face 548 5406 5274 2789 Face 549 34824 11605 11527 Face 550 2043 18372 2044 Face 551 13962 278 15001 Face 552 7812 14291 10081 Face 553 16439 5274 5406 Face 554 16438 16439 5406 Face 555 13646 2910 11813 Face 556 16077 16078 16234 Face 557 15784 15935 14857 Face 558 14091 14268 14733 Face 559 14057 14193 14363 Face 560 15711 15710 15568 Face 561 2669 14193 14057 Face 562 2407 2669 14057 Face 563 2034 13963 6412 Face 564 14193 14364 14363 Face 565 1129 103 3198 Face 566 15112 2887 752 Face 567 13291 12119 24116 Face 568 15665 15666 14634 Face 569 7916 19635 12801 Face 570 11536 13288 13646 Face 571 34510 34395 34354 Face 572 26089 26094 27377 Face 573 34636 12737 13101 Face 574 27899 28934 26094 Face 575 3300 2111 5768 Face 576 14575 14696 14695 Face 577 2491 4708 3300 Face 578 876 2538 2409 Face 579 2544 15669 15668 Face 580 2111 876 5768 Face 581 16602 16440 16117 Face 582 135 2544 15668 Face 583 14750 4352 16602 Face 584 16273 2544 135 Face 585 16201 16363 14750 Face 586 16440 16273 16117 Face 587 1017 1350 16201 Face 588 4352 16440 16602 Face 589 1654 889 6266 Face 590 16363 4352 14750 Face 591 5250 5399 6011 Face 592 3202 889 1654 Face 593 5250 6011 1826 Face 594 5399 3203 3202 Face 595 1384 5250 1826 Face 596 5399 5398 6011 Face 597 5398 5399 3202 Face 598 3203 1433 889 Face 599 3202 3203 889 Face 600 1433 5125 3799 Face 601 3799 5125 1424 Face 602 546 2281 2155 Face 603 2155 2281 15198 Face 604 15229 14508 14492 Face 605 16649 16648 16489 Face 606 16329 16490 16328 Face 607 13322 13321 13228 Face 608 11212 5895 12737 Face 609 14352 14470 14469 Face 610 16056 16439 16438 Face 611 2640 3250 5342 Face 612 14070 14688 1686 Face 613 5778 13944 1491 Face 614 4591 2493 3502 Face 615 14071 14070 1686 Face 616 3058 895 1573 Face 617 6740 5504 6647 Face 618 16440 16441 16273 Face 619 3458 14091 1380 Face 620 13067 12673 14900 Face 621 16434 2545 2544 Face 622 2178 4483 2717 Face 623 14901 13067 14900 Face 624 16047 16046 14751 Face 625 14752 2178 1100 Face 626 1100 2178 2717 Face 627 14751 14752 1100 Face 628 15198 14492 14454 Face 629 15094 15198 14454 Face 630 1337 1424 662 Face 631 14492 16083 16066 Face 632 6266 3799 1337 Face 633 2155 15198 15094 Face 634 3799 1424 1337 Face 635 1424 2155 662 Face 636 818 5522 1540 Face 637 4414 4075 3247 Face 638 3685 3709 15964 Face 639 3819 34735 11004 Face 640 14697 14820 14819 Face 641 14733 14268 16057 Face 642 4070 13821 15048 Face 643 17185 17186 17275 Face 644 3061 14958 1909 Face 645 16427 15453 14518 Face 646 16530 16056 14188 Face 647 16528 16530 14188 Face 648 14469 14470 14587 Face 649 13850 13864 13849 Face 650 14061 14023 14035 Face 651 13864 13863 13849 Face 652 14149 16530 16528 Face 653 14121 14149 16528 Face 654 77 76 15398 Face 655 3066 582 1011 Face 656 14364 15888 15887 Face 657 14109 14205 4938 Face 658 14363 14364 15887 Face 659 15888 232 48 Face 660 4746 14252 2075 Face 661 4941 76 77 Face 662 2075 4941 77 Face 663 76 16362 15398 Face 664 22402 22499 22498 Face 665 14251 14927 23 Face 666 11447 11540 12291 Face 667 19066 17836 18938 Face 668 31326 31430 25671 Face 669 34430 26789 28547 Face 670 6644 6724 9324 Face 671 4730 13909 2766 Face 672 15504 12753 15365 Face 673 2329 14246 14228 Face 674 14574 14575 14695 Face 675 6647 6648 2276 Face 676 14456 14457 14574 Face 677 14696 14819 14818 Face 678 15004 14445 14444 Face 679 3057 15539 14266 Face 680 5768 876 2409 Face 681 14978 15004 14444 Face 682 2538 15004 14978 Face 683 2409 2538 14978 Face 684 14445 16060 16059 Face 685 14444 14445 16059 Face 686 16060 786 4 Face 687 16059 16060 4 Face 688 786 16046 16047 Face 689 4 786 16047 Face 690 5655 3202 1654 Face 691 16046 14752 14751 Face 692 5398 3202 5655 Face 693 889 3799 6266 Face 694 6011 5398 5397 Face 695 5397 5398 5655 Face 696 6011 1211 1945 Face 697 1211 6011 5397 Face 698 1826 1945 3767 Face 699 1826 6011 1945 Face 700 16490 16649 16489 Face 701 3899 1826 3767 Face 702 367 368 5523 Face 703 3899 3767 16648 Face 704 3295 2108 1906 Face 705 6270 13293 12761 Face 706 32449 32448 32336 Face 707 2782 2901 5641 Face 708 2656 5199 2655 Face 709 16239 16244 14121 Face 710 13820 2802 14919 Face 711 16078 16235 16234 Face 712 14188 16056 16438 Face 713 15223 5715 14673 Face 714 15089 14613 14596 Face 715 14179 23328 4617 Face 716 15923 15924 16077 Face 717 16273 16434 2544 Face 718 26415 34827 29405 Face 719 21254 21255 21347 Face 720 2545 15528 15669 Face 721 15923 15922 15770 Face 722 21536 21535 21440 Face 723 33092 33091 32957 Face 724 15771 15923 15770 Face 725 21817 21818 21913 Face 726 13741 978 2910 Face 727 2125 1999 16525 Face 728 3073 5463 14172 Face 729 14982 2161 1577 Face 730 34535 34658 34493 Face 731 4483 2161 14982 Face 732 344 17097 17006 Face 733 2717 4483 14982 Face 734 2161 1687 1577 Face 735 3065 14362 15199 Face 736 16527 2032 15050 Face 737 3835 3836 558 Face 738 14271 4360 16242 Face 739 34389 12559 11762 Face 740 11011 16549 12818 Face 741 15122 3196 549 Face 742 15255 15122 549 Face 743 16235 16399 16398 Face 744 15357 4070 15048 Face 745 14615 14624 16239 Face 746 16244 14149 14121 Face 747 3249 2458 14615 Face 748 14624 16244 16239 Face 749 26095 27379 27378 Face 750 11043 13477 11449 Face 751 14919 15455 15249 Face 752 897 5900 4060 Face 753 22300 22299 22203 Face 754 779 2458 3249 Face 755 14284 15784 14857 Face 756 5263 5326 236 Face 757 5248 3966 6151 Face 758 6412 5248 6151 Face 759 15478 15518 4746 Face 760 14252 4941 2075 Face 761 14941 14942 15074 Face 762 3434 1415 3305 Face 763 22010 22011 22108 Face 764 20276 20359 20275 Face 765 15248 14186 14568 Face 766 551 671 442 Face 767 14626 2641 4727 Face 768 18356 28934 27899 Face 769 3323 3322 3976 Face 770 14633 14627 16113 Face 771 15262 2020 3323 Face 772 3322 14633 3976 Face 773 2671 258 15262 Face 774 2020 3322 3323 Face 775 22439 18356 27899 Face 776 16598 16600 2671 Face 777 3850 2329 14228 Face 778 14339 14457 14456 Face 779 14338 14339 14456 Face 780 14229 14339 14338 Face 781 3201 14439 1353 Face 782 14457 14575 14574 Face 783 4154 4157 16645 Face 784 14440 14442 3972 Face 785 16646 16645 16486 Face 786 14439 15357 1353 Face 787 16487 16486 16325 Face 788 16487 16646 16486 Face 789 32230 32336 32229 Face 790 16326 16487 16325 Face 791 14442 3057 3972 Face 792 3436 2384 8364 Face 793 4730 13987 14991 Face 794 15485 15484 15344 Face 795 15121 4730 14991 Face 796 14058 14039 904 Face 797 15345 15485 15344 Face 798 15627 15626 15484 Face 799 5522 367 5523 Face 800 15485 15627 15484 Face 801 1430 3462 2936 Face 802 2559 14442 14440 Face 803 33695 28809 33694 Face 804 13909 4737 15400 Face 805 1906 6270 12761 Face 806 13607 13608 13700 Face 807 10274 4067 10155 Face 808 2108 6270 1906 Face 809 34517 34526 34340 Face 810 14586 14707 14706 Face 811 14585 14586 14706 Face 812 28934 26095 26094 Face 813 13964 1461 3167 Face 814 2884 779 131 Face 815 1242 1353 15048 Face 816 17276 17367 17366 Face 817 25985 34462 34579 Face 818 34595 29067 34287 Face 819 2544 2545 15669 Face 820 14055 14146 15820 Face 821 20452 14906 20451 Face 822 15528 3709 3685 Face 823 15923 16077 16076 Face 824 12176 22138 14782 Face 825 15208 15209 15344 Face 826 15922 15923 16076 Face 827 14633 14634 14627 Face 828 14669 14791 16191 Face 829 22517 22612 22130 Face 830 21251 21344 21343 Face 831 22226 22517 22130 Face 832 21174 14646 21108 Face 833 16326 16325 16168 Face 834 23562 24755 24754 Face 835 21933 17413 22031 Face 836 16169 16326 16168 Face 837 13987 4730 2766 Face 838 4104 2559 14440 Face 839 22226 22130 20460 Face 840 21344 21437 21436 Face 841 552 2288 2800 Face 842 13979 15598 16243 Face 843 14877 14333 14122 Face 844 13903 13927 13902 Face 845 16198 4939 16597 Face 846 16044 16198 16597 Face 847 16234 16235 16398 Face 848 14894 13364 12114 Face 849 2505 6014 13964 Face 850 1461 2884 3167 Face 851 3431 16603 4841 Face 852 5523 368 5524 Face 853 2800 441 262 Face 854 34506 34747 34368 Face 855 6014 1461 13964 Face 856 477 990 476 Face 857 131 779 3249 Face 858 2458 14624 14615 Face 859 33491 33490 33357 Face 860 16399 16562 16561 Face 861 13922 13921 13897 Face 862 14045 14134 14044 Face 863 9499 16421 16260 Face 864 5456 5455 5325 Face 865 13932 13977 13931 Face 866 21204 21174 20370 Face 867 14687 21645 22325 Face 868 15211 15212 15347 Face 869 2897 17845 17285 Face 870 15194 15202 4104 Face 871 3800 3033 2897 Face 872 34392 34796 34320 Face 873 3033 1302 1423 Face 874 6539 1423 1302 Face 875 1302 4869 6539 Face 876 6539 1312 18671 Face 877 11040 9989 11014 Face 878 34347 34768 34792 Face 879 258 2020 15262 Face 880 14694 14817 14816 Face 881 4868 18192 17373 Face 882 4868 2902 529 Face 883 17711 1676 1675 Face 884 529 1675 4868 Face 885 15539 2329 3850 Face 886 1210 6506 16762 Face 887 6722 15891 15742 Face 888 14266 15539 3850 Face 889 6393 6722 15742 Face 890 15891 5776 15823 Face 891 15742 15891 15823 Face 892 2775 3581 258 Face 893 5776 2775 16600 Face 894 15823 5776 16600 Face 895 21818 21914 21913 Face 896 16600 2775 258 Face 897 6529 26450 28568 Face 898 19492 19573 19491 Face 899 9270 20452 15581 Face 900 14522 12887 22609 Face 901 12441 9052 22621 Face 902 14528 14529 14900 Face 903 13646 13741 2910 Face 904 29351 7121 18771 Face 905 13166 14369 14368 Face 906 20452 20451 15581 Face 907 8985 2251 3311 Face 908 23884 8266 9054 Face 909 13701 13796 13795 Face 910 13700 13701 13795 Face 911 13369 2108 3295 Face 912 12996 13369 3295 Face 913 14201 14669 16191 Face 914 20044 20045 20126 Face 915 14244 14245 14354 Face 916 34401 34524 34534 Face 917 14245 14355 14354 Face 918 14713 14248 14249 Face 919 111 3208 4614 Face 920 2654 2784 2204 Face 921 16562 3209 4075 Face 922 3167 2884 131 Face 923 3196 14148 14623 Face 924 16561 16562 4075 Face 925 15669 15528 3685 Face 926 14464 14582 14463 Face 927 14986 14985 16372 Face 928 3709 5069 15964 Face 929 14449 12189 14791 Face 930 10859 12441 13169 Face 931 15076 15077 15208 Face 932 19565 19564 19483 Face 933 1463 14672 13939 Face 934 14669 14449 14791 Face 935 5086 15750 557 Face 936 13930 13931 13976 Face 937 14634 14626 14627 Face 938 19624 19708 23210 Face 939 15665 14634 14633 Face 940 3322 15665 14633 Face 941 258 3581 2020 Face 942 16593 15665 3322 Face 943 3581 16593 2020 Face 944 2020 16593 3322 Face 945 5773 15969 2032 Face 946 530 5760 16211 Face 947 9414 19599 13808 Face 948 20301 22226 20460 Face 949 3835 1234 3836 Face 950 2288 558 2800 Face 951 14387 14504 15190 Face 952 14563 13812 14443 Face 953 6723 3633 1376 Face 954 1797 6723 1376 Face 955 1873 1874 12189 Face 956 20382 20381 19634 Face 957 12408 12850 20299 Face 958 3208 3207 4614 Face 959 15117 3327 15116 Face 960 14449 1873 12189 Face 961 3307 5204 1874 Face 962 3304 4091 4213 Face 963 27226 27227 27336 Face 964 1383 1714 4614 Face 965 24131 24257 29515 Face 966 14573 14694 14693 Face 967 11122 13468 11688 Face 968 16398 16399 16561 Face 969 13892 14390 14192 Face 970 14268 15902 16057 Face 971 13976 13977 14053 Face 972 14620 14453 5774 Face 973 14369 4332 7603 Face 974 1873 3307 1874 Face 975 4187 15000 15131 Face 976 14659 3436 3508 Face 977 3695 1677 3800 Face 978 19456 19195 29277 Face 979 1677 3171 3033 Face 980 3800 1677 3033 Face 981 3171 1303 1302 Face 982 3033 3171 1302 Face 983 1303 5894 4869 Face 984 1302 1303 4869 Face 985 5894 1203 1311 Face 986 4869 5894 1311 Face 987 21382 18729 18741 Face 988 1203 3437 1311 Face 989 5000 529 3308 Face 990 3437 5000 3308 Face 991 1565 1675 529 Face 992 5000 1565 529 Face 993 1209 1210 1675 Face 994 1565 1209 1675 Face 995 30532 25673 33015 Face 996 1209 6506 1210 Face 997 19307 22991 19308 Face 998 34272 34332 34746 Face 999 24853 24852 18781 Face 1000 25663 23315 22450 Face 1001 15823 16600 16598 Face 1002 1119 18236 1438 Face 1003 15379 13220 15517 Face 1004 15975 16053 6393 Face 1005 3307 11155 2254 Face 1006 14228 14246 15811 Face 1007 14466 14467 14584 Face 1008 34701 34660 6811 Face 1009 14028 14027 14326 Face 1010 10241 8146 9221 Face 1011 3201 1353 15811 Face 1012 12367 3564 3760 Face 1013 13907 13931 13930 Face 1014 15031 15162 10864 Face 1015 13906 13907 13930 Face 1016 3570 17674 5527 Face 1017 13567 11601 13795 Face 1018 13796 13567 13795 Face 1019 9614 13369 12996 Face 1020 9615 9614 12996 Face 1021 20034 19961 19960 Face 1022 19960 19959 20036 Face 1023 21926 21925 21829 Face 1024 10115 34553 9643 Face 1025 14507 33290 19937 Face 1026 33290 19376 19937 Face 1027 1469 1356 3207 Face 1028 12412 14491 12172 Face 1029 3934 8554 16497 Face 1030 3208 1469 3207 Face 1031 1128 15122 15255 Face 1032 4075 3209 3248 Face 1033 16567 14271 16242 Face 1034 549 3196 14623 Face 1035 4105 4233 85 Face 1036 34428 34272 34772 Face 1037 5204 3307 2254 Face 1038 302 653 6018 Face 1039 14944 15077 15076 Face 1040 22351 22447 2910 Face 1041 15128 15125 15526 Face 1042 15209 15345 15344 Face 1043 14159 2585 14227 Face 1044 16271 15125 15128 Face 1045 2492 5244 6023 Face 1046 5119 5244 2492 Face 1047 5897 2154 661 Face 1048 6023 5897 661 Face 1049 780 15823 16598 Face 1050 16600 258 2671 Face 1051 4286 4279 16642 Face 1052 16643 4286 16642 Face 1053 5347 14770 8742 Face 1054 14770 9216 13364 Face 1055 16371 7138 530 Face 1056 15336 3065 15199 Face 1057 16327 16326 16169 Face 1058 21964 20076 14509 Face 1059 14939 15070 3062 Face 1060 1234 904 3836 Face 1061 11283 11209 14040 Face 1062 13812 15886 14443 Face 1063 3633 16198 16044 Face 1064 1376 3633 16044 Face 1065 22403 22402 22306 Face 1066 19978 19977 19899 Face 1067 12527 12614 4491 Face 1068 32825 32824 32691 Face 1069 13169 12441 22621 Face 1070 2503 12616 16335 Face 1071 18619 5407 5534 Face 1072 16334 2503 16335 Face 1073 28519 28520 28654 Face 1074 10992 6406 21276 Face 1075 16721 28023 18357 Face 1076 30971 30970 30869 Face 1077 15336 15199 14802 Face 1078 14854 14853 13836 Face 1079 19731 19730 19647 Face 1080 2586 14802 4360 Face 1081 28668 28797 28667 Face 1082 11155 8725 13010 Face 1083 4487 4618 15130 Face 1084 29613 28008 28552 Face 1085 18379 18473 18378 Face 1086 15202 15194 14039 Face 1087 16699 2153 17691 Face 1088 909 7811 17147 Face 1089 4091 3304 3171 Face 1090 1677 4091 3171 Face 1091 3304 1304 1303 Face 1092 3171 3304 1303 Face 1093 1304 1552 5894 Face 1094 1303 1304 5894 Face 1095 1552 1202 1203 Face 1096 5894 1552 1203 Face 1097 3566 3437 1203 Face 1098 1202 3566 1203 Face 1099 5127 5000 3437 Face 1100 3566 5127 3437 Face 1101 1564 1565 5000 Face 1102 5127 1564 5000 Face 1103 1208 1209 1565 Face 1104 1564 1208 1565 Face 1105 28 6506 1209 Face 1106 1208 28 1209 Face 1107 4724 4856 6506 Face 1108 28 4724 6506 Face 1109 4864 4996 4856 Face 1110 4724 4864 4856 Face 1111 1879 2000 4996 Face 1112 4864 1879 4996 Face 1113 17956 1119 6147 Face 1114 1879 1438 2000 Face 1115 17622 19233 19234 Face 1116 1438 6147 1119 Face 1117 14413 14414 15975 Face 1118 3041 17195 17324 Face 1119 14755 14815 14413 Face 1120 16053 6722 6393 Face 1121 661 2154 14755 Face 1122 14414 16053 15975 Face 1123 526 525 17604 Face 1124 14815 14414 14413 Face 1125 13310 13311 13404 Face 1126 12487 12576 12575 Face 1127 12642 12745 11601 Face 1128 13567 12642 11601 Face 1129 2006 9614 9615 Face 1130 13270 2006 9615 Face 1131 15579 8726 20036 Face 1132 21920 22018 22017 Face 1133 11110 18261 18326 Face 1134 22325 21645 20726 Face 1135 20173 26649 26764 Face 1136 1469 6014 2505 Face 1137 12318 12527 4491 Face 1138 27692 29352 29351 Face 1139 1356 1469 2505 Face 1140 4939 16431 16432 Face 1141 2254 11155 13010 Face 1142 15259 13960 1688 Face 1143 560 1128 15255 Face 1144 15474 15616 14277 Face 1145 15075 15207 15206 Face 1146 21254 21162 21163 Face 1147 3247 3248 4232 Face 1148 14819 14944 14943 Face 1149 28562 34630 34569 Face 1150 16270 16271 15128 Face 1151 15202 2559 4104 Face 1152 4616 4485 1946 Face 1153 14191 3977 6819 Face 1154 3329 5119 3429 Face 1155 3328 3329 3429 Face 1156 3429 5119 2492 Face 1157 5244 5897 6023 Face 1158 15922 16076 16075 Face 1159 8725 16035 14975 Face 1160 15921 15922 16075 Face 1161 13010 8725 14975 Face 1162 16643 16642 16483 Face 1163 16484 16643 16483 Face 1164 21348 21349 21441 Face 1165 34826 971 12102 Face 1166 793 909 17147 Face 1167 17211 17122 371 Face 1168 16488 16487 16326 Face 1169 16327 16488 16326 Face 1170 10607 25 9662 Face 1171 15070 5623 3062 Face 1172 3448 6277 6155 Face 1173 14872 1920 9846 Face 1174 14520 14521 16110 Face 1175 16114 6723 1797 Face 1176 21917 22015 22014 Face 1177 21725 21822 21821 Face 1178 19540 15447 15448 Face 1179 21275 15161 21267 Face 1180 2384 16344 6626 Face 1181 22206 22207 22302 Face 1182 6596 12982 7124 Face 1183 8904 8903 8799 Face 1184 28132 18360 2296 Face 1185 28655 28784 28783 Face 1186 27825 27956 27217 Face 1187 28023 16721 29738 Face 1188 978 22351 2910 Face 1189 14271 2586 4360 Face 1190 19484 19565 19483 Face 1191 18929 21168 17620 Face 1192 3972 3057 14266 Face 1193 14906 14782 20451 Face 1194 15125 15524 15526 Face 1195 14943 14944 15076 Face 1196 4616 3941 4319 Face 1197 15678 255 1919 Face 1198 21442 21537 21536 Face 1199 4485 4616 4319 Face 1200 4213 3433 3304 Face 1201 2153 4091 1677 Face 1202 3433 1305 1304 Face 1203 3304 3433 1304 Face 1204 3699 1552 1304 Face 1205 1305 3699 1304 Face 1206 3699 2361 1202 Face 1207 1552 3699 1202 Face 1208 3693 3566 1202 Face 1209 2361 3693 1202 Face 1210 888 5127 3566 Face 1211 3693 888 3566 Face 1212 888 1563 1564 Face 1213 5127 888 1564 Face 1214 1563 1207 1208 Face 1215 1564 1563 1208 Face 1216 184 28 1208 Face 1217 1207 184 1208 Face 1218 743 4724 28 Face 1219 184 743 28 Face 1220 4732 4864 4724 Face 1221 743 4732 4724 Face 1222 4449 1879 4864 Face 1223 4732 4449 4864 Face 1224 5251 1438 1879 Face 1225 4449 5251 1879 Face 1226 758 6147 1438 Face 1227 5251 758 1438 Face 1228 2905 3041 6147 Face 1229 758 2905 6147 Face 1230 17781 17755 3430 Face 1231 2905 986 3041 Face 1232 15770 15922 15769 Face 1233 34426 25563 34811 Face 1234 19149 18954 2291 Face 1235 4070 14625 15814 Face 1236 11793 11794 11874 Face 1237 152 11363 10574 Face 1238 10330 8354 12745 Face 1239 10310 10324 7166 Face 1240 9319 13767 9677 Face 1241 6261 9319 9677 Face 1242 21919 21920 22017 Face 1243 21917 21918 22015 Face 1244 20647 20738 21196 Face 1245 21288 20647 21196 Face 1246 22205 22204 22109 Face 1247 21913 21914 22011 Face 1248 1801 1691 3075 Face 1249 1583 24685 24820 Face 1250 1801 5391 5260 Face 1251 1691 1801 5260 Face 1252 5391 4335 1344 Face 1253 12651 13648 13555 Face 1254 5260 5391 1344 Face 1255 4335 6500 1436 Face 1256 1344 4335 1436 Face 1257 6500 2412 2283 Face 1258 1436 6500 2283 Face 1259 14217 14228 15812 Face 1260 21918 22016 22015 Face 1261 22016 22114 22113 Face 1262 22015 22016 22113 Face 1263 2412 2175 1584 Face 1264 16035 14784 1494 Face 1265 2283 2412 1584 Face 1266 15440 2362 15579 Face 1267 19704 19540 15448 Face 1268 15881 14204 15954 Face 1269 15036 18997 17175 Face 1270 16597 4939 16432 Face 1271 22211 22307 22210 Face 1272 14277 14877 14122 Face 1273 16431 1128 560 Face 1274 15640 3965 3113 Face 1275 19661 19662 19744 Face 1276 2384 6626 8364 Face 1277 2980 1263 3250 Face 1278 14246 15810 15811 Face 1279 21721 21818 21817 Face 1280 14975 16035 1494 Face 1281 14818 14819 14943 Face 1282 1718 1946 4279 Face 1283 12456 12105 19413 Face 1284 22401 22400 22304 Face 1285 1718 4616 1946 Face 1286 20530 20531 13124 Face 1287 21539 21538 21443 Face 1288 34551 12827 34352 Face 1289 22594 5347 8742 Face 1290 23923 23265 23416 Face 1291 27901 29465 34449 Face 1292 16021 19588 12146 Face 1293 20280 15065 22587 Face 1294 16484 16483 16322 Face 1295 16323 16484 16322 Face 1296 20362 20361 20278 Face 1297 13445 7949 13932 Face 1298 15221 14982 15666 Face 1299 34627 34724 34363 Face 1300 16647 16646 16487 Face 1301 16488 16647 16487 Face 1302 34779 34325 34300 Face 1303 6145 6018 15184 Face 1304 34672 34732 11040 Face 1305 14784 12437 21672 Face 1306 15644 15680 14520 Face 1307 14521 16114 16110 Face 1308 14226 15025 14895 Face 1309 4153 1716 4152 Face 1310 19673 19670 12888 Face 1311 19635 19673 12888 Face 1312 2175 14671 14636 Face 1313 1584 2175 14636 Face 1314 2291 18773 18759 Face 1315 21824 21823 21726 Face 1316 18855 2692 18876 Face 1317 17786 28132 2296 Face 1318 7603 4332 7177 Face 1319 29311 29442 29310 Face 1320 4492 17833 17606 Face 1321 9426 15869 22447 Face 1322 17232 17937 33911 Face 1323 27749 27745 28087 Face 1324 2290 672 2799 Face 1325 15077 15209 15208 Face 1326 3941 3329 3328 Face 1327 436 1454 14441 Face 1328 19831 19842 20628 Face 1329 4319 3941 3328 Face 1330 1615 18221 1616 Face 1331 13808 13911 13268 Face 1332 866 3562 3433 Face 1333 4213 866 3433 Face 1334 3562 1088 1305 Face 1335 3433 3562 1305 Face 1336 1088 95 3699 Face 1337 1305 1088 3699 Face 1338 1089 2361 3699 Face 1339 95 1089 3699 Face 1340 1089 3824 3693 Face 1341 2361 1089 3693 Face 1342 3824 5254 888 Face 1343 3693 3824 888 Face 1344 5254 3039 1563 Face 1345 888 5254 1563 Face 1346 3039 1095 1207 Face 1347 1563 3039 1207 Face 1348 1095 4089 184 Face 1349 1207 1095 184 Face 1350 4089 742 743 Face 1351 184 4089 743 Face 1352 1448 4732 743 Face 1353 742 1448 743 Face 1354 4455 4449 4732 Face 1355 1448 4455 4732 Face 1356 101 5251 4449 Face 1357 4455 101 4449 Face 1358 3427 758 5251 Face 1359 101 3427 5251 Face 1360 2649 2905 758 Face 1361 3427 2649 758 Face 1362 870 986 2905 Face 1363 2649 870 2905 Face 1364 102 40 986 Face 1365 870 102 986 Face 1366 5240 637 102 Face 1367 102 637 40 Face 1368 9095 10747 9286 Face 1369 11794 11875 11874 Face 1370 8265 6261 10215 Face 1371 7166 8265 10215 Face 1372 10324 3571 8265 Face 1373 10437 9319 6261 Face 1374 21824 21920 21823 Face 1375 3571 10437 8265 Face 1376 19963 19964 20040 Face 1377 14671 16268 16261 Face 1378 15629 15773 15772 Face 1379 14636 14671 16261 Face 1380 28767 28893 28766 Face 1381 15628 15629 15772 Face 1382 13162 2660 20395 Face 1383 20727 16499 22035 Face 1384 13547 16030 29750 Face 1385 16268 14254 14196 Face 1386 32335 32447 32334 Face 1387 12559 34389 34808 Face 1388 1494 14784 21672 Face 1389 13767 2006 13270 Face 1390 10330 10324 10310 Face 1391 8265 10437 6261 Face 1392 9677 13767 13270 Face 1393 19967 19968 20044 Face 1394 10330 10452 10324 Face 1395 16261 16268 14196 Face 1396 12437 19962 18137 Face 1397 14254 16531 1532 Face 1398 14196 14254 1532 Face 1399 5877 5750 2765 Face 1400 558 3836 2289 Face 1401 5012 4880 3456 Face 1402 1716 1824 4152 Face 1403 5630 130 2539 Face 1404 5500 5630 2539 Face 1405 1263 1153 3250 Face 1406 16432 16431 560 Face 1407 15966 16117 1802 Face 1408 13974 14051 13973 Face 1409 20844 20909 12105 Face 1410 3113 3965 1357 Face 1411 16047 14751 6276 Face 1412 21342 21341 34067 Face 1413 29516 26097 26096 Face 1414 14695 14696 14818 Face 1415 13162 21673 2660 Face 1416 20531 11291 13124 Face 1417 11274 9416 13174 Face 1418 4286 1718 4279 Face 1419 2540 3323 14748 Face 1420 13451 13357 14610 Face 1421 2658 5199 2657 Face 1422 21672 12437 18137 Face 1423 14516 14158 15814 Face 1424 16482 16641 16481 Face 1425 5400 5401 3069 Face 1426 27761 34714 34420 Face 1427 22588 22587 22493 Face 1428 29751 29207 18876 Face 1429 16014 16166 16013 Face 1430 16323 16322 16165 Face 1431 13357 14608 14610 Face 1432 11703 11153 11154 Face 1433 2717 14982 15221 Face 1434 29 2717 15221 Face 1435 4155 4154 16646 Face 1436 16647 4155 16646 Face 1437 15668 15817 16263 Face 1438 15667 15668 16263 Face 1439 28565 27374 27892 Face 1440 19962 19720 19680 Face 1441 130 15680 15644 Face 1442 2539 130 15644 Face 1443 4880 5012 1824 Face 1444 1716 4880 1824 Face 1445 17194 2551 2550 Face 1446 15444 12229 15306 Face 1447 26446 25851 25978 Face 1448 12982 18986 18879 Face 1449 28283 25958 18878 Face 1450 18361 27639 29714 Face 1451 29073 6281 27048 Face 1452 28798 28924 28797 Face 1453 26792 27749 28087 Face 1454 13072 13166 14368 Face 1455 25899 25903 28024 Face 1456 28148 16659 28153 Face 1457 29541 18352 18412 Face 1458 29749 6612 27745 Face 1459 4189 3025 3680 Face 1460 34580 13574 28017 Face 1461 3025 5114 5238 Face 1462 34416 34725 34614 Face 1463 34711 34614 34358 Face 1464 21561 20811 21655 Face 1465 4329 317 866 Face 1466 141 240 16915 Face 1467 3689 3562 866 Face 1468 317 3689 866 Face 1469 3689 6536 1088 Face 1470 3562 3689 1088 Face 1471 69 95 1088 Face 1472 6536 69 1088 Face 1473 1086 1089 95 Face 1474 69 1086 95 Face 1475 1086 3953 3824 Face 1476 1089 1086 3824 Face 1477 3953 307 5254 Face 1478 3824 3953 5254 Face 1479 307 2903 3039 Face 1480 5254 307 3039 Face 1481 2903 1094 1095 Face 1482 3039 2903 1095 Face 1483 1094 4718 4089 Face 1484 1095 1094 4089 Face 1485 4718 747 742 Face 1486 4089 4718 742 Face 1487 747 3310 1448 Face 1488 742 747 1448 Face 1489 3310 1986 4455 Face 1490 1448 3310 4455 Face 1491 1986 115 101 Face 1492 4455 1986 101 Face 1493 115 2109 3427 Face 1494 101 115 3427 Face 1495 2778 2649 3427 Face 1496 2109 2778 3427 Face 1497 869 870 2649 Face 1498 2778 869 2649 Face 1499 147 102 870 Face 1500 869 147 870 Face 1501 5240 5116 446 Face 1502 147 5240 102 Face 1503 11384 13113 13032 Face 1504 3435 13279 12831 Face 1505 6261 9677 11852 Face 1506 10215 6261 11852 Face 1507 12927 10452 12642 Face 1508 10452 3571 10324 Face 1509 23579 22929 23153 Face 1510 18137 19962 19680 Face 1511 20083 20163 20162 Face 1512 34708 34606 9392 Face 1513 16531 14003 14871 Face 1514 1532 16531 14871 Face 1515 14003 989 3721 Face 1516 14871 14003 3721 Face 1517 989 14115 2842 Face 1518 3721 989 2842 Face 1519 14115 16108 16109 Face 1520 2842 14115 16109 Face 1521 16108 14994 5196 Face 1522 16109 16108 5196 Face 1523 15773 15925 15924 Face 1524 904 788 3703 Face 1525 29651 24028 29518 Face 1526 3209 16563 1567 Face 1527 29471 34311 25744 Face 1528 34311 34388 25744 Face 1529 12927 12642 13567 Face 1530 34396 27448 27330 Face 1531 8354 10330 10310 Face 1532 6801 12927 13567 Face 1533 12642 10330 12745 Face 1534 10324 8265 7166 Face 1535 13702 13797 13701 Face 1536 6801 13567 13796 Face 1537 11462 12382 11303 Face 1538 11604 12998 12906 Face 1539 14994 14676 14517 Face 1540 5196 14994 14517 Face 1541 1661 3206 3072 Face 1542 1538 1661 3072 Face 1543 3457 2803 3456 Face 1544 2803 2935 3456 Face 1545 5885 4731 383 Face 1546 284 5630 5500 Face 1547 15583 14421 15725 Face 1548 12904 16387 16386 Face 1549 16602 16117 15966 Face 1550 1832 16602 15966 Face 1551 3687 3585 3584 Face 1552 21720 21721 21817 Face 1553 16058 16059 2162 Face 1554 4 16047 15890 Face 1555 16015 16014 15863 Face 1556 19635 12888 12801 Face 1557 20373 20372 19583 Face 1558 11154 11153 13451 Face 1559 16322 16483 16321 Face 1560 19588 19583 12146 Face 1561 15262 3323 2540 Face 1562 15260 15262 2540 Face 1563 19720 20468 20467 Face 1564 19335 19336 19802 Face 1565 18556 34286 26072 Face 1566 17731 17538 18819 Face 1567 34383 26326 34466 Face 1568 25479 28142 18870 Face 1569 31769 11307 31882 Face 1570 13904 13903 13885 Face 1571 16166 16323 16165 Face 1572 31523 31522 31416 Face 1573 14332 19344 160 Face 1574 15862 24711 24710 Face 1575 14982 1577 15666 Face 1576 21673 14332 160 Face 1577 1944 1385 4154 Face 1578 1100 2717 29 Face 1579 15183 5247 5377 Face 1580 4155 1944 4154 Face 1581 9426 14648 15869 Face 1582 135 15668 15667 Face 1583 15680 14521 14520 Face 1584 16665 11975 24996 Face 1585 4880 3457 3456 Face 1586 14236 14235 14133 Face 1587 26994 26995 27110 Face 1588 27111 27227 27226 Face 1589 30575 30574 30489 Face 1590 33743 33742 33617 Face 1591 26538 26654 26653 Face 1592 18828 5908 19149 Face 1593 16701 17194 2550 Face 1594 27707 27708 27836 Face 1595 29442 29573 29441 Face 1596 16701 2550 2549 Face 1597 17637 16701 2549 Face 1598 34496 34661 11773 Face 1599 25569 29541 18412 Face 1600 3933 2888 3025 Face 1601 4189 3933 3025 Face 1602 2888 4984 5114 Face 1603 3025 2888 5114 Face 1604 4984 5384 4329 Face 1605 5114 4984 4329 Face 1606 5384 863 317 Face 1607 4329 5384 317 Face 1608 3820 3689 317 Face 1609 863 3820 317 Face 1610 5888 6536 3689 Face 1611 3820 5888 3689 Face 1612 5888 1681 69 Face 1613 6536 5888 69 Face 1614 1681 976 1086 Face 1615 69 1681 1086 Face 1616 2750 1081 976 Face 1617 1086 976 3953 Face 1618 10486 3953 976 Face 1619 34373 34384 34483 Face 1620 307 10592 1197 Face 1621 307 1197 2903 Face 1622 1197 3176 2903 Face 1623 2903 3176 1094 Face 1624 1093 2648 4718 Face 1625 1094 1093 4718 Face 1626 2648 748 747 Face 1627 4718 2648 747 Face 1628 748 3439 3310 Face 1629 747 748 3310 Face 1630 3439 2126 1986 Face 1631 3310 3439 1986 Face 1632 2126 1323 115 Face 1633 1986 2126 115 Face 1634 1757 2109 115 Face 1635 1323 1757 115 Face 1636 2777 2778 2109 Face 1637 1757 2777 2109 Face 1638 868 869 2778 Face 1639 2777 868 2778 Face 1640 1003 147 869 Face 1641 868 1003 869 Face 1642 5116 1003 16594 Face 1643 178 1003 867 Face 1644 13292 3802 2901 Face 1645 2782 13292 2901 Face 1646 9677 13270 9758 Face 1647 12996 3295 1102 Face 1648 13417 13512 13416 Face 1649 13512 13609 13608 Face 1650 11303 11604 12906 Face 1651 8331 8435 8434 Face 1652 28825 18234 34484 Face 1653 26537 26538 26653 Face 1654 14308 97 7706 Face 1655 10452 10330 12642 Face 1656 13323 13417 13322 Face 1657 14676 15251 15252 Face 1658 11852 9677 9758 Face 1659 15487 15629 15628 Face 1660 15772 15773 15924 Face 1661 4232 3962 1788 Face 1662 15486 15487 15628 Face 1663 13230 13229 13134 Face 1664 13135 13230 13134 Face 1665 12118 12268 12899 Face 1666 11302 13573 11923 Face 1667 32338 32450 32337 Face 1668 32827 32826 32693 Face 1669 533 12622 532 Face 1670 11018 11017 30383 Face 1671 9615 12996 2256 Face 1672 13040 13135 13134 Face 1673 13797 6801 13796 Face 1674 32567 32566 32449 Face 1675 12359 12118 10857 Face 1676 12268 8876 12899 Face 1677 14517 14676 15252 Face 1678 15251 14495 16240 Face 1679 4235 1661 1538 Face 1680 15252 15251 16240 Face 1681 2803 4873 4608 Face 1682 3206 13962 15001 Face 1683 4731 284 383 Face 1684 2935 2803 4608 Face 1685 21377 21372 20463 Face 1686 383 284 5500 Face 1687 14631 14750 1832 Face 1688 12176 22511 22138 Face 1689 3440 3687 3584 Face 1690 16117 135 1802 Face 1691 16059 4 2162 Face 1692 3585 5654 5653 Face 1693 24709 15863 24710 Face 1694 2162 4 15890 Face 1695 12986 8259 13077 Face 1696 16167 16166 16014 Face 1697 16642 16641 16482 Face 1698 22300 22301 22396 Face 1699 15816 2671 15260 Face 1700 16483 16642 16482 Face 1701 9416 13173 13174 Face 1702 3323 3976 14748 Face 1703 15260 2540 443 Face 1704 16021 12146 20340 Face 1705 12813 10718 13455 Face 1706 15261 15260 443 Face 1707 21444 21443 21350 Face 1708 21351 21444 21350 Face 1709 13904 13928 13903 Face 1710 22401 22498 22400 Face 1711 32448 32447 32335 Face 1712 14866 14386 14929 Face 1713 16166 16165 16013 Face 1714 19553 19561 20369 Face 1715 22396 22397 22493 Face 1716 12409 20217 21463 Face 1717 1117 1100 29 Face 1718 22205 22301 22204 Face 1719 3687 3440 1385 Face 1720 15890 16047 6276 Face 1721 1802 135 15667 Face 1722 1944 3687 1385 Face 1723 23930 13171 12559 Face 1724 7264 6133 6005 Face 1725 23067 26568 28815 Face 1726 34406 11847 11284 Face 1727 33808 32301 33671 Face 1728 6636 27957 18860 Face 1729 26769 26768 26653 Face 1730 26654 26769 26653 Face 1731 26769 26883 26882 Face 1732 10225 5765 12032 Face 1733 28132 17786 26335 Face 1734 29705 29704 29572 Face 1735 20535 11048 11006 Face 1736 22365 22366 29674 Face 1737 19905 34477 10596 Face 1738 29668 34414 34296 Face 1739 4581 2760 2888 Face 1740 3933 4581 2888 Face 1741 2760 4852 4984 Face 1742 2888 2760 4984 Face 1743 3826 5384 4984 Face 1744 4852 3826 4984 Face 1745 3826 4863 863 Face 1746 5384 3826 863 Face 1747 3949 3820 863 Face 1748 4863 3949 863 Face 1749 3949 6135 5888 Face 1750 3820 3949 5888 Face 1751 6135 2750 1681 Face 1752 5888 6135 1681 Face 1753 1081 208 1082 Face 1754 1681 2750 976 Face 1755 1191 1190 1077 Face 1756 1191 1299 1190 Face 1757 1078 1191 1077 Face 1758 1299 1298 1190 Face 1759 1411 1410 1298 Face 1760 1299 1411 1298 Face 1761 2226 2227 2354 Face 1762 2484 2483 2354 Face 1763 1093 1092 2648 Face 1764 3176 7597 1093 Face 1765 34463 33294 34550 Face 1766 2648 547 748 Face 1767 749 3311 3439 Face 1768 748 749 3439 Face 1769 3311 3559 2126 Face 1770 3439 3311 2126 Face 1771 3559 5635 1323 Face 1772 2126 3559 1323 Face 1773 5635 3040 1757 Face 1774 1323 5635 1757 Face 1775 3040 4733 2777 Face 1776 1757 3040 2777 Face 1777 4733 867 868 Face 1778 2777 4733 868 Face 1779 16111 178 127 Face 1780 868 867 1003 Face 1781 12725 12726 10746 Face 1782 176 6271 8264 Face 1783 3802 7411 10585 Face 1784 2901 3802 10585 Face 1785 2256 12996 1102 Face 1786 10552 1544 4216 Face 1787 7740 4355 4229 Face 1788 9216 7740 4229 Face 1789 20279 14895 14896 Face 1790 19344 20301 13958 Face 1791 11367 179 3933 Face 1792 28520 28655 28654 Face 1793 26072 27329 29801 Face 1794 13512 13511 13416 Face 1795 13323 13322 13229 Face 1796 13270 9615 9502 Face 1797 9758 13270 9502 Face 1798 6009 1788 16784 Face 1799 10085 5496 5770 Face 1800 1788 149 85 Face 1801 149 1788 6009 Face 1802 14491 15313 12258 Face 1803 22214 22310 22309 Face 1804 19415 17873 18740 Face 1805 34715 34419 34574 Face 1806 13206 3948 755 Face 1807 11614 11692 34617 Face 1808 8876 12268 11694 Face 1809 12184 12450 13653 Face 1810 22229 22133 22515 Face 1811 26768 26769 26882 Face 1812 23816 23658 23930 Face 1813 32229 32335 32228 Face 1814 16704 16672 12443 Face 1815 2103 2102 1976 Face 1816 28426 28562 34569 Face 1817 14495 4606 15186 Face 1818 16240 14495 15186 Face 1819 4606 15120 14990 Face 1820 15186 4606 14990 Face 1821 3377 3251 4234 Face 1822 3251 4235 4234 Face 1823 4873 15049 4608 Face 1824 15049 14101 4608 Face 1825 5402 3071 5401 Face 1826 3071 4731 5885 Face 1827 21347 21348 21440 Face 1828 12946 11096 14540 Face 1829 16201 14750 14631 Face 1830 16202 16201 14631 Face 1831 4577 4708 5653 Face 1832 3584 3585 5653 Face 1833 14933 14978 14415 Face 1834 14444 16059 16058 Face 1835 16324 16323 16166 Face 1836 16015 16167 16014 Face 1837 19742 19825 19741 Face 1838 21349 21442 21441 Face 1839 16642 4279 16641 Face 1840 4279 4280 16641 Face 1841 16598 2671 15816 Face 1842 4940 16598 15816 Face 1843 15065 20280 15293 Face 1844 11515 16021 20340 Face 1845 4943 4940 15677 Face 1846 15816 15260 15261 Face 1847 14205 16596 4938 Face 1848 14824 14825 14949 Face 1849 9392 11696 11683 Face 1850 12753 12662 12754 Face 1851 22209 22305 22208 Face 1852 443 2540 14747 Face 1853 15389 13995 15254 Face 1854 886 22134 22613 Face 1855 21174 21108 20369 Face 1856 29332 26813 26901 Face 1857 16014 16013 15862 Face 1858 16013 16012 15861 Face 1859 3947 34682 34718 Face 1860 25678 25677 25579 Face 1861 14751 1100 1117 Face 1862 28568 25647 12910 Face 1863 20974 20973 28809 Face 1864 6276 14751 1117 Face 1865 5782 5781 5656 Face 1866 5657 5782 5656 Face 1867 31018 31114 31017 Face 1868 5782 5910 5781 Face 1869 17053 25584 27887 Face 1870 28092 29465 27901 Face 1871 26883 26996 26995 Face 1872 26882 26883 26995 Face 1873 26996 27112 27111 Face 1874 26473 20706 28820 Face 1875 26995 26996 27111 Face 1876 29484 26306 22145 Face 1877 28555 28132 26335 Face 1878 27981 28114 27980 Face 1879 29804 16701 17637 Face 1880 6146 4580 4581 Face 1881 26674 26189 25545 Face 1882 4580 4849 2760 Face 1883 4581 4580 2760 Face 1884 4849 2764 4852 Face 1885 2760 4849 4852 Face 1886 2764 2885 3826 Face 1887 4852 2764 3826 Face 1888 858 4863 3826 Face 1889 2885 858 3826 Face 1890 858 4079 3949 Face 1891 4863 858 3949 Face 1892 4079 16 6135 Face 1893 3949 4079 6135 Face 1894 16 208 2750 Face 1895 6135 16 2750 Face 1896 11292 16670 15885 Face 1897 2750 208 1081 Face 1898 1073 1186 1185 Face 1899 13570 7694 13475 Face 1900 12751 12752 1083 Face 1901 1072 1073 1185 Face 1902 1411 1524 1410 Face 1903 1524 1523 1410 Face 1904 2099 2100 2226 Face 1905 2227 2355 2354 Face 1906 1200 2625 3415 Face 1907 908 1098 1307 Face 1908 1186 1187 1294 Face 1909 1407 1406 1294 Face 1910 34486 32197 34665 Face 1911 5458 18248 5586 Face 1912 34127 16840 16769 Face 1913 10813 9536 749 Face 1914 2251 112 5635 Face 1915 3559 2251 5635 Face 1916 112 3686 3040 Face 1917 5635 112 3040 Face 1918 3686 4865 4733 Face 1919 3040 3686 4733 Face 1920 4865 751 867 Face 1921 4733 4865 867 Face 1922 34328 34558 34797 Face 1923 867 751 178 Face 1924 12361 12920 12725 Face 1925 11533 11612 10746 Face 1926 19933 18234 28825 Face 1927 10585 7411 18 Face 1928 9192 1544 10552 Face 1929 9304 9192 10552 Face 1930 14419 12855 14421 Face 1931 12855 15590 19540 Face 1932 32728 32727 32600 Face 1933 6768 6769 294 Face 1934 10741 13367 13271 Face 1935 11284 11040 34732 Face 1936 11229 11097 12839 Face 1937 21827 21923 21826 Face 1938 22229 20733 22224 Face 1939 13230 13323 13229 Face 1940 13417 13416 13322 Face 1941 3295 1906 3833 Face 1942 1102 3295 3833 Face 1943 5379 149 2918 Face 1944 2918 149 1343 Face 1945 7184 3431 5883 Face 1946 5379 85 149 Face 1947 24184 12228 12143 Face 1948 22419 22229 22515 Face 1949 23048 23572 23265 Face 1950 23923 23048 23265 Face 1951 23048 23479 23474 Face 1952 23572 23048 23474 Face 1953 34728 34529 8353 Face 1954 5341 34476 34314 Face 1955 11571 11570 11492 Face 1956 2517 8827 8721 Face 1957 34664 34807 34784 Face 1958 11376 11704 2277 Face 1959 13797 13796 13701 Face 1960 2251 3559 3311 Face 1961 24327 4593 25332 Face 1962 5217 5218 5071 Face 1963 34407 34715 34644 Face 1964 236 15468 14478 Face 1965 19878 19879 19953 Face 1966 14000 15973 14284 Face 1967 14478 14000 14284 Face 1968 15973 13834 15784 Face 1969 3553 3251 3377 Face 1970 14284 15973 15784 Face 1971 15049 1658 1657 Face 1972 4234 4235 1538 Face 1973 3071 3070 5401 Face 1974 14101 15049 1657 Face 1975 26450 29613 28552 Face 1976 3070 3071 5885 Face 1977 1683 1017 16202 Face 1978 14659 3508 15870 Face 1979 5654 4577 5653 Face 1980 14750 16602 1832 Face 1981 14978 14444 14415 Face 1982 4577 2534 2111 Face 1983 16167 16324 16166 Face 1984 14415 14444 16058 Face 1985 14770 14894 8742 Face 1986 16485 16484 16323 Face 1987 1946 1827 4280 Face 1988 11153 13357 13451 Face 1989 1470 780 4940 Face 1990 4279 1946 4280 Face 1991 22494 22588 22493 Face 1992 2671 15262 15260 Face 1993 4940 15816 15677 Face 1994 28234 28368 28233 Face 1995 4623 17833 4492 Face 1996 15677 15816 15261 Face 1997 4493 4624 4623 Face 1998 34525 34388 34723 Face 1999 34502 34709 34708 Face 2000 34812 34786 34625 Face 2001 12007 1877 34696 Face 2002 30144 30145 30208 Face 2003 15163 886 22613 Face 2004 2540 14748 14747 Face 2005 16504 16503 16183 Face 2006 21771 19475 3568 Face 2007 34404 34699 25856 Face 2008 3976 16113 16112 Face 2009 20370 21174 20369 Face 2010 16165 16164 16012 Face 2011 20973 20974 21067 Face 2012 2423 2549 20890 Face 2013 16947 5531 5530 Face 2014 22517 22327 22612 Face 2015 5783 5782 5657 Face 2016 5658 5783 5657 Face 2017 5911 5910 5782 Face 2018 5783 5911 5782 Face 2019 5911 6038 6037 Face 2020 10969 34831 9541 Face 2021 25855 649 26791 Face 2022 27367 34789 34460 Face 2023 27112 27228 27227 Face 2024 27111 27112 27227 Face 2025 23291 23711 29744 Face 2026 437 433 6473 Face 2027 27164 26100 26099 Face 2028 29803 29804 17637 Face 2029 28911 28912 29038 Face 2030 28114 28251 28250 Face 2031 6290 4579 4580 Face 2032 6146 4581 179 Face 2033 4579 5491 4849 Face 2034 4580 4579 4849 Face 2035 5491 2891 2764 Face 2036 4849 5491 2764 Face 2037 126 2885 2764 Face 2038 2891 126 2764 Face 2039 126 4995 858 Face 2040 2885 126 858 Face 2041 4995 4207 4079 Face 2042 858 4995 4079 Face 2043 4207 319 16 Face 2044 4079 4207 16 Face 2045 319 6540 208 Face 2046 16 319 208 Face 2047 3396 3525 3395 Face 2048 10221 319 6537 Face 2049 625 7089 7198 Face 2050 4565 4566 4697 Face 2051 6116 6117 6242 Face 2052 962 963 1072 Face 2053 1524 1635 1523 Face 2054 1635 8273 8272 Face 2055 1974 2100 1973 Face 2056 2100 2227 2226 Face 2057 2625 4068 3422 Face 2058 1307 1200 3415 Face 2059 1073 1074 1186 Face 2060 1187 1295 1294 Face 2061 23479 24715 24714 Face 2062 1217 1324 1216 Face 2063 3274 3273 3139 Face 2064 4044 4173 4172 Face 2065 2251 435 112 Face 2066 26337 11493 11408 Face 2067 66 3817 3686 Face 2068 112 66 3686 Face 2069 3817 4997 4865 Face 2070 3686 3817 4865 Face 2071 4997 750 751 Face 2072 4865 4997 751 Face 2073 34529 34585 11543 Face 2074 751 750 127 Face 2075 11618 12920 12361 Face 2076 12726 5205 10746 Face 2077 12047 12134 12046 Face 2078 12219 12218 12133 Face 2079 1544 3552 4216 Face 2080 11769 2915 10674 Face 2081 10748 11837 10127 Face 2082 424 10748 10127 Face 2083 13470 10916 10697 Face 2084 34815 34433 34510 Face 2085 11493 11571 11492 Face 2086 31806 31913 31805 Face 2087 27138 27252 24047 Face 2088 11728 11727 11648 Face 2089 12554 19754 20741 Face 2090 32122 32123 32226 Face 2091 1906 12761 13389 Face 2092 13389 12761 9304 Face 2093 3833 1906 13389 Face 2094 12761 9192 9304 Face 2095 34284 34353 34278 Face 2096 1231 13292 2782 Face 2097 14796 16403 15784 Face 2098 5239 14990 15120 Face 2099 12056 12143 12055 Face 2100 12143 12228 12227 Face 2101 20512 27223 20599 Face 2102 11810 11809 11727 Face 2103 13101 12737 12294 Face 2104 12750 9643 13119 Face 2105 6474 437 6473 Face 2106 5607 5732 5606 Face 2107 1327 1441 1326 Face 2108 1555 1554 1440 Face 2109 2873 2874 3010 Face 2110 3526 3655 3525 Face 2111 22892 27138 24047 Face 2112 13834 14796 15784 Face 2113 5496 10807 9332 Face 2114 3946 3553 3377 Face 2115 1955 4109 4108 Face 2116 1130 92 209 Face 2117 34661 34289 34824 Face 2118 14447 14565 7576 Face 2119 16121 3335 14714 Face 2120 14468 14586 14585 Face 2121 14467 14468 14585 Face 2122 2715 13889 15115 Face 2123 13889 2715 15361 Face 2124 15399 15245 1236 Face 2125 19680 19720 20467 Face 2126 2282 16223 15914 Face 2127 1658 2282 2156 Face 2128 5140 5402 5401 Face 2129 246 5140 5401 Face 2130 20199 14522 22609 Face 2131 27228 27338 27337 Face 2132 16065 16066 1683 Face 2133 1017 16201 16202 Face 2134 2534 877 876 Face 2135 4708 4577 2111 Face 2136 2409 14978 14933 Face 2137 2280 2409 14933 Face 2138 16644 16643 16484 Face 2139 16324 16485 16323 Face 2140 13037 20531 15035 Face 2141 21255 21256 21348 Face 2142 1946 4485 1827 Face 2143 4485 4486 1827 Face 2144 15757 16536 1470 Face 2145 780 16598 4940 Face 2146 24243 34290 34636 Face 2147 28554 26334 6725 Face 2148 16314 16313 16156 Face 2149 1470 4940 4943 Face 2150 4363 4494 4493 Face 2151 18556 20620 34337 Face 2152 4494 4625 4624 Face 2153 4493 4494 4624 Face 2154 4625 4756 4755 Face 2155 4624 4625 4755 Face 2156 16839 16769 16840 Face 2157 34602 34727 29204 Face 2158 9561 34775 11683 Face 2159 17873 14710 14589 Face 2160 18737 18853 4493 Face 2161 5022 5148 5021 Face 2162 14748 3976 16112 Face 2163 28500 34403 34447 Face 2164 16013 16165 16012 Face 2165 22135 22231 12092 Face 2166 22397 22494 22493 Face 2167 16322 16321 16164 Face 2168 2041 18368 18369 Face 2169 22231 22327 12544 Face 2170 5784 5783 5658 Face 2171 5659 5784 5658 Face 2172 5912 5911 5783 Face 2173 5784 5912 5783 Face 2174 6039 6038 5911 Face 2175 5912 6039 5911 Face 2176 6039 6165 6164 Face 2177 6038 6039 6164 Face 2178 27227 27228 27337 Face 2179 34343 34507 34734 Face 2180 5607 5606 5477 Face 2181 5222 5354 5353 Face 2182 12090 11233 7135 Face 2183 841 842 955 Face 2184 29039 29170 29038 Face 2185 27596 27475 20608 Face 2186 4578 4579 6290 Face 2187 12743 24263 6146 Face 2188 5620 5491 4579 Face 2189 4578 5620 4579 Face 2190 3027 2891 5491 Face 2191 5620 3027 5491 Face 2192 1005 126 2891 Face 2193 3027 1005 2891 Face 2194 1005 2646 4995 Face 2195 126 1005 4995 Face 2196 2646 4463 4207 Face 2197 4995 2646 4207 Face 2198 4463 6537 319 Face 2199 4207 4463 319 Face 2200 4838 4971 4970 Face 2201 10836 10586 6537 Face 2202 4837 4838 4970 Face 2203 4971 5101 5100 Face 2204 7197 741 625 Face 2205 34595 34608 26788 Face 2206 5988 5989 6116 Face 2207 6244 7357 6243 Face 2208 204 3020 5370 Face 2209 660 862 4722 Face 2210 1854 1974 1853 Face 2211 2100 2099 1973 Face 2212 4068 2499 2631 Face 2213 3415 2625 3422 Face 2214 963 964 1073 Face 2215 1074 1187 1186 Face 2216 11891 11810 27022 Face 2217 11492 11491 11408 Face 2218 11728 26795 26910 Face 2219 2525 2526 2656 Face 2220 13217 10127 13488 Face 2221 25744 34388 27957 Face 2222 28003 29206 34569 Face 2223 8961 10344 8856 Face 2224 34703 23123 23816 Face 2225 3817 1985 4997 Face 2226 435 7822 66 Face 2227 112 435 66 Face 2228 11171 31218 11172 Face 2229 34781 34323 34651 Face 2230 11765 11618 12361 Face 2231 2786 2658 16573 Face 2232 11769 3952 4210 Face 2233 12920 12726 12725 Face 2234 33361 33360 33224 Face 2235 10712 11769 10674 Face 2236 10748 6692 12561 Face 2237 11837 10748 12561 Face 2238 9281 23970 23628 Face 2239 24377 13101 12294 Face 2240 19923 19908 352 Face 2241 23383 23814 13305 Face 2242 11971 12056 11970 Face 2243 12143 12142 12055 Face 2244 6407 5002 3423 Face 2245 3552 6407 8987 Face 2246 13274 7780 13206 Face 2247 13490 13489 8256 Face 2248 13180 13274 13206 Face 2249 3948 1231 2782 Face 2250 13606 13605 13508 Face 2251 4216 3552 8987 Face 2252 11183 11121 25882 Face 2253 12142 12143 12227 Face 2254 23474 23479 24714 Face 2255 29537 29583 26419 Face 2256 26357 11665 11664 Face 2257 19484 19483 16987 Face 2258 5481 5610 5480 Face 2259 1441 1440 1326 Face 2260 5735 5863 5734 Face 2261 1664 1663 1554 Face 2262 1441 1555 1440 Face 2263 19744 19827 19743 Face 2264 1555 1664 1554 Face 2265 34797 11684 34710 Face 2266 10918 5364 6903 Face 2267 1540 5523 1539 Face 2268 368 262 5524 Face 2269 638 3331 3204 Face 2270 14270 1686 15399 Face 2271 14741 14864 15461 Face 2272 14071 1686 14270 Face 2273 2931 14713 14249 Face 2274 932 15117 15116 Face 2275 4095 932 15116 Face 2276 21720 21817 21816 Face 2277 3327 2715 15116 Face 2278 9278 105 9756 Face 2279 14140 14139 14050 Face 2280 15456 15356 15220 Face 2281 5008 14864 14741 Face 2282 5267 5008 14741 Face 2283 15914 16223 14564 Face 2284 2156 2282 15914 Face 2285 4150 1717 4156 Face 2286 5140 246 1608 Face 2287 21533 21626 21532 Face 2288 12344 11703 10816 Face 2289 14454 16066 16065 Face 2290 14446 14454 16065 Face 2291 877 228 2538 Face 2292 2111 2534 876 Face 2293 3021 3300 4347 Face 2294 5768 2409 2280 Face 2295 4285 4286 16643 Face 2296 16485 16644 16484 Face 2297 20531 20530 15035 Face 2298 18505 19416 29584 Face 2299 4485 4319 4486 Face 2300 4319 3971 4486 Face 2301 5389 16536 15757 Face 2302 5258 5389 15757 Face 2303 15574 24712 15716 Face 2304 20975 21068 20974 Face 2305 14984 1470 4943 Face 2306 6514 5258 14611 Face 2307 17414 4363 18853 Face 2308 4448 4348 2408 Face 2309 4495 4626 4625 Face 2310 4494 4495 4625 Face 2311 4626 4757 4756 Face 2312 4625 4626 4756 Face 2313 4757 4890 4889 Face 2314 4756 4757 4889 Face 2315 5023 5022 4889 Face 2316 4890 5023 4889 Face 2317 5149 5148 5022 Face 2318 5023 5149 5022 Face 2319 5277 5276 5148 Face 2320 5149 5277 5148 Face 2321 18998 26813 29465 Face 2322 5277 5407 5276 Face 2323 16165 16322 16164 Face 2324 2051 18476 1926 Face 2325 11847 9279 12828 Face 2326 16483 16482 16321 Face 2327 5785 5784 5659 Face 2328 5660 5785 5659 Face 2329 5913 5912 5784 Face 2330 5785 5913 5784 Face 2331 6040 6039 5912 Face 2332 5913 6040 5912 Face 2333 6166 6165 6039 Face 2334 6040 6166 6039 Face 2335 34610 34277 34782 Face 2336 6165 6166 6288 Face 2337 5610 5609 5480 Face 2338 1109 1110 1219 Face 2339 5863 5862 5734 Face 2340 27225 27335 27224 Face 2341 1220 1327 1326 Face 2342 3932 4578 1114 Face 2343 20732 34490 34464 Face 2344 5744 5620 4578 Face 2345 26587 29209 29076 Face 2346 3165 3027 5620 Face 2347 5744 3165 5620 Face 2348 5638 1005 3027 Face 2349 3165 5638 3027 Face 2350 5638 2513 2646 Face 2351 1005 5638 2646 Face 2352 2258 8516 2133 Face 2353 2646 2513 4463 Face 2354 4558 4559 4690 Face 2355 27609 21455 16777 Face 2356 6013 746 426 Face 2357 433 6013 426 Face 2358 4707 4838 4837 Face 2359 4706 4707 4837 Face 2360 956 957 1066 Face 2361 4564 4696 4695 Face 2362 5861 5989 5860 Face 2363 5989 6117 6116 Face 2364 4722 204 5370 Face 2365 3658 3659 3788 Face 2366 1742 1854 1741 Face 2367 1974 1973 1853 Face 2368 2499 2115 2114 Face 2369 3422 4068 2631 Face 2370 733 734 849 Face 2371 964 1074 1073 Face 2372 618 619 733 Face 2373 850 964 963 Face 2374 509 510 618 Face 2375 734 850 849 Face 2376 401 510 400 Face 2377 619 734 733 Face 2378 295 296 400 Face 2379 510 619 618 Face 2380 34466 29063 29408 Face 2381 510 509 400 Face 2382 34642 34339 34578 Face 2383 296 401 400 Face 2384 4457 6380 3825 Face 2385 10836 4463 9219 Face 2386 5205 11533 10746 Face 2387 15517 13220 13219 Face 2388 2915 11769 4210 Face 2389 3952 4729 4597 Face 2390 11249 11248 11179 Face 2391 12557 7186 7511 Face 2392 11724 11806 11723 Face 2393 11887 11886 11805 Face 2394 13513 13514 13610 Face 2395 32226 32227 32332 Face 2396 18244 18480 18430 Face 2397 20981 21070 16664 Face 2398 11119 11181 11118 Face 2399 11250 11249 11180 Face 2400 34684 34496 11939 Face 2401 8987 6407 3423 Face 2402 10094 13489 10189 Face 2403 13489 9755 8256 Face 2404 7780 1231 3948 Face 2405 13206 7780 3948 Face 2406 13311 13312 13405 Face 2407 13606 13699 13698 Face 2408 5863 5991 5862 Face 2409 13605 13606 13698 Face 2410 5991 6119 5990 Face 2411 5991 5990 5862 Face 2412 6487 1570 6486 Face 2413 9456 9455 9340 Face 2414 6119 6118 5990 Face 2415 4701 4702 4832 Face 2416 996 997 1109 Face 2417 1110 1220 1219 Face 2418 12056 12055 11970 Face 2419 4314 4440 4439 Face 2420 11645 11724 11644 Face 2421 11887 11971 11886 Face 2422 21356 21450 21449 Face 2423 20207 20289 20288 Face 2424 20468 21470 21456 Face 2425 20467 20468 21456 Face 2426 18454 7015 26900 Face 2427 14081 1923 5214 Face 2428 1686 15245 15399 Face 2429 15461 14071 14270 Face 2430 1657 1658 2156 Face 2431 19831 20628 20627 Face 2432 16084 1491 5267 Face 2433 14204 13288 15954 Face 2434 13288 13741 13646 Face 2435 9052 19518 19439 Face 2436 13364 9216 15162 Face 2437 13724 4025 12616 Face 2438 1491 5008 5267 Face 2439 2503 13724 12616 Face 2440 14570 16197 16127 Face 2441 14864 14071 15461 Face 2442 1717 1608 4156 Face 2443 14564 14570 16127 Face 2444 14522 21095 22423 Face 2445 1717 5140 1608 Face 2446 15063 15094 14446 Face 2447 24702 16173 16172 Face 2448 876 877 2538 Face 2449 16066 1017 1683 Face 2450 3300 5768 4347 Face 2451 228 15063 15004 Face 2452 16644 4285 16643 Face 2453 4347 5768 2280 Face 2454 21470 10579 94 Face 2455 1609 1718 4286 Face 2456 4319 3328 3453 Face 2457 22593 22594 8742 Face 2458 15937 15971 5258 Face 2459 3971 4319 3453 Face 2460 21091 15160 988 Face 2461 16536 780 1470 Face 2462 5258 15757 14611 Face 2463 16012 16011 15860 Face 2464 15757 1470 14984 Face 2465 14611 15757 14984 Face 2466 2537 14512 14481 Face 2467 2408 2537 14481 Face 2468 4627 4626 4495 Face 2469 17414 4494 4363 Face 2470 4627 4758 4757 Face 2471 4626 4627 4757 Face 2472 4758 4891 4890 Face 2473 4757 4758 4890 Face 2474 5024 5023 4890 Face 2475 4891 5024 4890 Face 2476 5150 5149 5023 Face 2477 5024 5150 5023 Face 2478 5278 5277 5149 Face 2479 5150 5278 5149 Face 2480 5408 5407 5277 Face 2481 5278 5408 5277 Face 2482 5535 5534 5407 Face 2483 5408 5535 5407 Face 2484 5661 5660 5534 Face 2485 5535 5661 5534 Face 2486 5786 5785 5660 Face 2487 5661 5786 5660 Face 2488 5914 5913 5785 Face 2489 5786 5914 5785 Face 2490 6041 6040 5913 Face 2491 5914 6041 5913 Face 2492 6167 6166 6040 Face 2493 6041 6167 6040 Face 2494 585 32311 22467 Face 2495 6377 9195 6498 Face 2496 4833 4966 4965 Face 2497 1556 1555 1441 Face 2498 1219 1220 1326 Face 2499 34507 34767 34661 Face 2500 1192 1300 1191 Face 2501 3412 2623 2624 Face 2502 3923 3924 4051 Face 2503 2483 2482 2353 Face 2504 13758 34397 11774 Face 2505 2223 2351 2350 Face 2506 34697 34516 34368 Face 2507 24115 34632 34547 Face 2508 13659 10618 13654 Face 2509 6005 9159 7264 Face 2510 1773 1772 1666 Face 2511 13475 13659 11686 Face 2512 1515 1514 1401 Face 2513 10674 2915 7466 Face 2514 727 843 842 Face 2515 612 727 611 Face 2516 4575 4707 4706 Face 2517 4574 4575 4706 Face 2518 4177 4307 4306 Face 2519 4971 4972 5101 Face 2520 5733 5861 5732 Face 2521 5989 5988 5860 Face 2522 3789 3921 3920 Face 2523 4433 4563 4562 Face 2524 34531 34651 34553 Face 2525 1854 1853 1741 Face 2526 2115 5628 5752 Face 2527 2631 2499 2114 Face 2528 4860 9274 10394 Face 2529 849 850 963 Face 2530 1415 3434 1416 Face 2531 11490 11489 11406 Face 2532 12180 12540 12010 Face 2533 9286 12174 7630 Face 2534 7694 13393 10618 Face 2535 13659 7694 10618 Face 2536 34705 34607 34470 Face 2537 22447 15869 22543 Face 2538 21456 21470 94 Face 2539 13010 11843 12380 Face 2540 32197 34486 32887 Face 2541 34299 34349 34572 Face 2542 636 65 6380 Face 2543 34352 34399 34654 Face 2544 34272 34485 34332 Face 2545 2887 205 752 Face 2546 4210 3952 4597 Face 2547 4729 13274 13180 Face 2548 13689 13784 13783 Face 2549 9643 12750 11431 Face 2550 11567 11645 11566 Face 2551 11806 11887 11805 Face 2552 13010 14975 2921 Face 2553 11645 11644 11566 Face 2554 2254 13010 12380 Face 2555 2254 12380 7158 Face 2556 30343 30410 30342 Face 2557 12768 12679 12769 Face 2558 11489 11567 11488 Face 2559 11181 11250 11180 Face 2560 22026 22025 21927 Face 2561 7049 2913 3054 Face 2562 24715 23678 22779 Face 2563 11364 12274 12182 Face 2564 1442 1556 1441 Face 2565 9192 2771 1544 Face 2566 1221 1328 1220 Face 2567 1442 1441 1327 Face 2568 1110 1111 1220 Face 2569 1328 1442 1327 Face 2570 997 998 1110 Face 2571 34774 34300 34730 Face 2572 22014 22015 22112 Face 2573 1328 1327 1220 Face 2574 10712 10674 13095 Face 2575 15726 14419 14421 Face 2576 3423 5002 9102 Face 2577 5217 5216 5094 Face 2578 11406 11489 11405 Face 2579 11806 11805 11723 Face 2580 12863 12862 12769 Face 2581 12770 12863 12769 Face 2582 21536 21629 21535 Face 2583 22303 22399 22398 Face 2584 644 2789 16084 Face 2585 22302 22303 22398 Face 2586 5406 2789 644 Face 2587 4354 5406 644 Face 2588 16223 14570 14564 Face 2589 2789 1491 16084 Face 2590 15457 14188 1431 Face 2591 16438 5406 4354 Face 2592 20232 12939 16543 Face 2593 11947 34692 11214 Face 2594 22012 22110 22109 Face 2595 7931 9651 9201 Face 2596 1921 1801 1583 Face 2597 24714 24715 22779 Face 2598 16528 14188 15457 Face 2599 16529 16528 15457 Face 2600 16127 16197 13894 Face 2601 16197 13915 13894 Face 2602 16494 16653 16493 Face 2603 4150 4156 16652 Face 2604 16492 16491 16330 Face 2605 22110 22205 22109 Face 2606 662 15094 15063 Face 2607 228 662 15063 Face 2608 15063 14446 14445 Face 2609 2538 228 15004 Face 2610 5651 5652 2239 Face 2611 2491 3300 3021 Face 2612 211 4616 1718 Face 2613 4285 1609 4286 Face 2614 15810 3201 15811 Face 2615 3246 3247 4233 Face 2616 3429 2492 1655 Face 2617 3328 3429 865 Face 2618 14512 14515 14406 Face 2619 14412 15971 15937 Face 2620 16164 16163 16011 Face 2621 15861 16012 15860 Face 2622 14404 14406 15932 Face 2623 15937 5258 6514 Face 2624 14512 14406 14404 Face 2625 4281 2070 4282 Face 2626 14481 14512 14404 Face 2627 14406 15937 15932 Face 2628 23123 34703 11304 Face 2629 21250 21343 21342 Face 2630 4759 4758 4627 Face 2631 4628 4759 4627 Face 2632 4759 4892 4891 Face 2633 4758 4759 4891 Face 2634 4892 5025 5024 Face 2635 4891 4892 5024 Face 2636 5151 5150 5024 Face 2637 5025 5151 5024 Face 2638 5279 5278 5150 Face 2639 5151 5279 5150 Face 2640 5409 5408 5278 Face 2641 5279 5409 5278 Face 2642 5536 5535 5408 Face 2643 5409 5536 5408 Face 2644 5662 5661 5535 Face 2645 5536 5662 5535 Face 2646 5787 5786 5661 Face 2647 5662 5787 5661 Face 2648 5915 5914 5786 Face 2649 5787 5915 5786 Face 2650 6042 6041 5914 Face 2651 5915 6042 5914 Face 2652 6168 6167 6041 Face 2653 6042 6168 6041 Face 2654 33241 33377 33240 Face 2655 32819 32818 32685 Face 2656 1111 1221 1220 Face 2657 34594 34822 34776 Face 2658 998 1111 1110 Face 2659 997 1110 1109 Face 2660 24169 19206 19205 Face 2661 11644 11723 11643 Face 2662 1558 1557 1443 Face 2663 2354 2483 2353 Face 2664 3013 3939 4068 Face 2665 2222 2223 2350 Face 2666 2480 2479 2350 Face 2667 12220 12221 12309 Face 2668 11619 11697 12368 Face 2669 34623 34278 34825 Face 2670 1112 1113 1222 Face 2671 3398 3397 3269 Face 2672 3527 3656 3655 Face 2673 1735 1847 1846 Face 2674 1734 1735 1846 Face 2675 4983 2633 3421 Face 2676 1997 1996 1862 Face 2677 10967 34318 13771 Face 2678 4444 10628 10629 Face 2679 5102 5225 5224 Face 2680 970 1080 969 Face 2681 5608 5733 5607 Face 2682 5861 5860 5732 Face 2683 34726 34415 12631 Face 2684 2102 2101 1975 Face 2685 1522 1633 1521 Face 2686 1742 1741 1632 Face 2687 5628 1415 1416 Face 2688 2114 2115 5752 Face 2689 852 966 851 Face 2690 16362 3434 3305 Face 2691 736 852 735 Face 2692 1076 1075 965 Face 2693 620 621 735 Face 2694 966 965 851 Face 2695 512 621 511 Face 2696 852 851 735 Face 2697 403 512 402 Face 2698 621 736 735 Face 2699 6772 297 6771 Face 2700 621 620 511 Face 2701 298 403 402 Face 2702 512 511 402 Face 2703 635 205 65 Face 2704 34568 34563 34757 Face 2705 34709 34285 34606 Face 2706 65 205 2887 Face 2707 11919 11931 8256 Face 2708 13783 6262 13782 Face 2709 12308 12399 12398 Face 2710 13300 5495 1992 Face 2711 11325 11406 11324 Face 2712 11724 11723 11644 Face 2713 12955 12954 12862 Face 2714 12863 12955 12862 Face 2715 13045 13044 12954 Face 2716 12955 13045 12954 Face 2717 13139 13138 13044 Face 2718 13045 13139 13044 Face 2719 11325 11324 11249 Face 2720 11406 11405 11324 Face 2721 13468 11122 12470 Face 2722 11250 11325 11249 Face 2723 2652 2653 2330 Face 2724 34758 34687 34591 Face 2725 1444 1443 1329 Face 2726 885 998 997 Face 2727 1072 1071 961 Face 2728 3400 3401 3529 Face 2729 4955 5085 5084 Face 2730 6355 6477 6476 Face 2731 3833 13389 12762 Face 2732 1550 10585 3937 Face 2733 11783 11100 3802 Face 2734 13292 11783 3802 Face 2735 9755 11919 8256 Face 2736 13668 10712 13095 Face 2737 11885 11969 11884 Face 2738 11714 11796 11713 Face 2739 13418 13419 13513 Face 2740 11567 11566 11488 Face 2741 13234 13233 13138 Face 2742 13139 13234 13138 Face 2743 5517 5391 1801 Face 2744 1921 5517 1801 Face 2745 5517 5 4335 Face 2746 14121 16528 16529 Face 2747 5391 5517 4335 Face 2748 1431 16438 4354 Face 2749 14120 14121 16529 Face 2750 5 5634 6500 Face 2751 16222 16239 14120 Face 2752 4335 5 6500 Face 2753 5634 336 2412 Face 2754 6500 5634 2412 Face 2755 336 4100 2175 Face 2756 2412 336 2175 Face 2757 16239 14121 14120 Face 2758 4100 14684 14671 Face 2759 13915 3118 471 Face 2760 14188 16438 1431 Face 2761 16653 16652 16493 Face 2762 13894 13915 471 Face 2763 16331 16492 16330 Face 2764 16653 4150 16652 Face 2765 877 1337 228 Face 2766 16651 16650 16491 Face 2767 15004 15063 14445 Face 2768 15094 14454 14446 Face 2769 5652 2491 2239 Face 2770 14446 16065 16060 Face 2771 1609 211 1718 Face 2772 2239 2491 3021 Face 2773 7811 19982 17106 Face 2774 211 3844 3941 Face 2775 3453 3328 865 Face 2776 10579 20541 20534 Face 2777 14406 14412 15937 Face 2778 865 3429 1655 Face 2779 16012 16164 16011 Face 2780 15971 5389 5258 Face 2781 18421 18840 34605 Face 2782 16321 16320 16163 Face 2783 4240 17936 18051 Face 2784 15932 15937 6514 Face 2785 4367 4498 18538 Face 2786 15595 4366 18538 Face 2787 15860 15859 15716 Face 2788 15860 16011 15859 Face 2789 23093 25617 25325 Face 2790 16011 16010 15859 Face 2791 4760 4759 4628 Face 2792 2068 1943 18488 Face 2793 4893 4892 4759 Face 2794 4760 4893 4759 Face 2795 5026 5025 4892 Face 2796 4893 5026 4892 Face 2797 5026 5152 5151 Face 2798 5025 5026 5151 Face 2799 5152 5280 5279 Face 2800 5151 5152 5279 Face 2801 5410 5409 5279 Face 2802 5280 5410 5279 Face 2803 5537 5536 5409 Face 2804 5410 5537 5409 Face 2805 5663 5662 5536 Face 2806 5537 5663 5536 Face 2807 5788 5787 5662 Face 2808 5663 5788 5662 Face 2809 5916 5915 5787 Face 2810 5788 5916 5787 Face 2811 6043 6042 5915 Face 2812 5916 6043 5915 Face 2813 6169 6168 6042 Face 2814 6043 6169 6042 Face 2815 34829 34316 34418 Face 2816 794 795 7702 Face 2817 4566 4698 4697 Face 2818 3142 3276 3141 Face 2819 2374 6003 9098 Face 2820 3276 3404 3275 Face 2821 5084 5210 5083 Face 2822 1517 1628 1627 Face 2823 8574 6001 6000 Face 2824 5361 5488 5487 Face 2825 1098 1426 1200 Face 2826 4184 4314 4313 Face 2827 2609 2608 2479 Face 2828 2480 2609 2479 Face 2829 6239 6359 6238 Face 2830 3275 3274 3140 Face 2831 6359 6481 6480 Face 2832 3141 3275 3140 Face 2833 4427 4428 4557 Face 2834 4428 4558 4557 Face 2835 4047 4176 4175 Face 2836 4047 4046 3918 Face 2837 396 504 503 Face 2838 1181 1289 1288 Face 2839 2474 2475 2603 Face 2840 1400 1399 1287 Face 2841 7633 1194 7632 Face 2842 4215 4086 10188 Face 2843 5479 5608 5478 Face 2844 5733 5732 5607 Face 2845 2101 2102 2228 Face 2846 2102 2229 2228 Face 2847 1409 1408 1296 Face 2848 1297 1409 1296 Face 2849 1189 1188 1075 Face 2850 5752 5628 1416 Face 2851 1523 1522 1409 Face 2852 966 1076 965 Face 2853 1190 1298 1189 Face 2854 1410 1523 1409 Face 2855 1410 1409 1297 Face 2856 1298 1410 1297 Face 2857 8271 1634 8272 Face 2858 1523 1634 1522 Face 2859 3530 3659 3658 Face 2860 3529 3530 3658 Face 2861 34761 34333 34283 Face 2862 3659 3789 3788 Face 2863 1975 1974 1854 Face 2864 1855 1742 8271 Face 2865 34315 34490 34275 Face 2866 34457 34662 34459 Face 2867 10112 488 4720 Face 2868 205 488 752 Face 2869 8322 8425 2019 Face 2870 13386 270 13008 Face 2871 13231 13324 13230 Face 2872 12202 3189 12201 Face 2873 34294 34627 34380 Face 2874 11489 11488 11405 Face 2875 13327 13326 13233 Face 2876 13234 13327 13233 Face 2877 13421 13420 13326 Face 2878 13327 13421 13326 Face 2879 13421 13516 13515 Face 2880 13420 13421 13515 Face 2881 13516 13613 13612 Face 2882 13515 13516 13612 Face 2883 8726 20035 20036 Face 2884 30026 30088 30087 Face 2885 29907 29965 29906 Face 2886 13706 13705 13612 Face 2887 10343 13382 9432 Face 2888 13220 13221 13314 Face 2889 13613 13706 13612 Face 2890 7388 10552 4071 Face 2891 206 3833 12762 Face 2892 13801 13800 13705 Face 2893 11100 9384 7411 Face 2894 13668 13095 11931 Face 2895 11919 13668 11931 Face 2896 11722 11804 11721 Face 2897 12054 12053 11968 Face 2898 11784 9284 9386 Face 2899 13514 13611 13610 Face 2900 3666 3537 3667 Face 2901 2175 4100 14671 Face 2902 14684 16276 16268 Face 2903 14671 14684 16268 Face 2904 16276 14269 14254 Face 2905 16268 16276 14254 Face 2906 14269 3634 16531 Face 2907 1743 3167 230 Face 2908 14254 14269 16531 Face 2909 642 13964 1743 Face 2910 3167 131 230 Face 2911 3634 14400 14003 Face 2912 16531 3634 14003 Face 2913 14400 3720 989 Face 2914 14003 14400 989 Face 2915 3720 5194 14115 Face 2916 4484 4615 1496 Face 2917 989 3720 14115 Face 2918 210 2505 642 Face 2919 13964 3167 1743 Face 2920 16588 5265 2975 Face 2921 3118 3199 14856 Face 2922 16494 16493 16332 Face 2923 16331 24700 24699 Face 2924 4026 4027 16650 Face 2925 16492 16651 16491 Face 2926 2534 6266 877 Face 2927 1337 662 228 Face 2928 16065 1683 786 Face 2929 14445 14446 16060 Face 2930 16157 16156 16004 Face 2931 3712 5652 5651 Face 2932 19379 14483 16516 Face 2933 14146 14251 23 Face 2934 4598 11097 11229 Face 2935 17180 17271 19748 Face 2936 3593 3723 3722 Face 2937 3855 18441 3722 Face 2938 3723 3856 3855 Face 2939 26190 26903 34608 Face 2940 3856 3984 3983 Face 2941 18091 18090 17998 Face 2942 3984 4113 4112 Face 2943 3983 3984 4112 Face 2944 4113 4242 4241 Face 2945 4112 4113 4241 Face 2946 4242 4368 4367 Face 2947 4241 4242 4367 Face 2948 24243 13101 24376 Face 2949 4368 4499 4367 Face 2950 5067 17567 5193 Face 2951 4499 4630 4498 Face 2952 4761 4760 4629 Face 2953 4630 4761 4629 Face 2954 4894 4893 4760 Face 2955 4761 4894 4760 Face 2956 5027 5026 4893 Face 2957 4894 5027 4893 Face 2958 5153 5152 5026 Face 2959 5027 5153 5026 Face 2960 5281 5280 5152 Face 2961 5153 5281 5152 Face 2962 5411 5410 5280 Face 2963 5281 5411 5280 Face 2964 5538 5537 5410 Face 2965 5411 5538 5410 Face 2966 5664 5663 5537 Face 2967 5538 5664 5537 Face 2968 5789 5788 5663 Face 2969 5664 5789 5663 Face 2970 5917 5916 5788 Face 2971 5789 5917 5788 Face 2972 6044 6043 5916 Face 2973 5917 6044 5916 Face 2974 6170 6291 7707 Face 2975 6044 6170 6043 Face 2976 2612 2611 2482 Face 2977 393 500 392 Face 2978 3276 3275 3141 Face 2979 4716 4586 10889 Face 2980 3404 3533 3403 Face 2981 3404 3403 3275 Face 2982 1628 1629 1737 Face 2983 1771 1770 1664 Face 2984 5488 5617 5616 Face 2985 1738 1850 1849 Face 2986 4834 4835 4967 Face 2987 29170 29169 29038 Face 2988 11055 11056 11115 Face 2989 4704 4835 4834 Face 2990 13326 13420 13325 Face 2991 2740 2739 2608 Face 2992 1521 1632 1520 Face 2993 1632 1631 1520 Face 2994 4430 4560 4559 Face 2995 2345 2346 2474 Face 2996 1998 2124 1860 Face 2997 1859 1998 1860 Face 2998 1625 1734 1733 Face 2999 1513 1514 1624 Face 3000 2734 2735 2861 Face 3001 2862 2998 2997 Face 3002 970 7521 7632 Face 3003 1414 1413 1301 Face 3004 5352 5479 5351 Face 3005 5608 5607 5478 Face 3006 2228 2229 2356 Face 3007 2229 2357 2356 Face 3008 1409 1522 1408 Face 3009 1522 1521 1408 Face 3010 1190 1189 1076 Face 3011 1076 1189 1075 Face 3012 3408 3537 3536 Face 3013 1077 1190 1076 Face 3014 3280 3408 3407 Face 3015 3407 3408 3536 Face 3016 3146 3280 3279 Face 3017 3279 3280 3407 Face 3018 3009 3146 3145 Face 3019 3145 3146 3279 Face 3020 2873 2872 2745 Face 3021 3008 3009 3145 Face 3022 2486 2615 2485 Face 3023 2746 2873 2745 Face 3024 2746 2745 2614 Face 3025 2615 2746 2614 Face 3026 3009 3008 2872 Face 3027 2873 3009 2872 Face 3028 180 3412 3797 Face 3029 4440 4441 4570 Face 3030 34458 34806 28231 Face 3031 3528 3657 3656 Face 3032 10742 27 12204 Face 3033 11612 13277 11690 Face 3034 94 10579 20534 Face 3035 11181 11180 11118 Face 3036 13706 13801 13705 Face 3037 10350 8966 13800 Face 3038 13801 10350 13800 Face 3039 12478 11412 8966 Face 3040 10350 12478 8966 Face 3041 12478 9301 10869 Face 3042 11412 12478 10869 Face 3043 10820 9754 10087 Face 3044 10344 10820 10087 Face 3045 10820 7406 8130 Face 3046 9754 10820 8130 Face 3047 7406 7285 8454 Face 3048 10585 18 3937 Face 3049 7411 7578 18 Face 3050 12873 12874 12965 Face 3051 11804 11885 11803 Face 3052 3952 3823 4729 Face 3053 13063 13062 12972 Face 3054 5194 15957 16108 Face 3055 14115 5194 16108 Face 3056 15957 14995 14994 Face 3057 3249 14615 14597 Face 3058 3116 3249 14597 Face 3059 16108 15957 14994 Face 3060 131 3249 3116 Face 3061 14995 14183 14676 Face 3062 14994 14995 14676 Face 3063 14183 15250 15251 Face 3064 14676 14183 15251 Face 3065 1356 2505 239 Face 3066 14375 14495 15251 Face 3067 15250 14375 15251 Face 3068 4866 4606 14495 Face 3069 14375 4866 14495 Face 3070 15897 15120 4606 Face 3071 4866 15897 4606 Face 3072 34327 28004 34291 Face 3073 15897 1157 15120 Face 3074 3334 3207 239 Face 3075 2505 210 239 Face 3076 5265 14200 14993 Face 3077 16429 16588 2975 Face 3078 21251 21252 21344 Face 3079 20997 12942 19352 Face 3080 1497 1384 4027 Face 3081 16651 4026 16650 Face 3082 4577 1654 2534 Face 3083 6266 1337 877 Face 3084 1683 16202 16046 Face 3085 16060 16065 786 Face 3086 16005 16004 15853 Face 3087 3844 3712 5651 Face 3088 6034 20574 21087 Face 3089 14455 14573 14572 Face 3090 31496 31497 31605 Face 3091 30276 30343 30275 Face 3092 3594 3724 3723 Face 3093 5123 3593 3592 Face 3094 3724 3857 3856 Face 3095 3723 3724 3856 Face 3096 3857 3985 3984 Face 3097 3856 3857 3984 Face 3098 3985 4114 4113 Face 3099 3984 3985 4113 Face 3100 4114 4243 4242 Face 3101 4113 4114 4242 Face 3102 4243 4369 4368 Face 3103 4242 4243 4368 Face 3104 4500 4499 4368 Face 3105 4369 4500 4368 Face 3106 4631 4630 4499 Face 3107 4500 4631 4499 Face 3108 4762 4761 4630 Face 3109 4631 4762 4630 Face 3110 4895 4894 4761 Face 3111 4762 4895 4761 Face 3112 5028 5027 4894 Face 3113 4895 5028 4894 Face 3114 5154 5153 5027 Face 3115 5028 5154 5027 Face 3116 5282 5281 5153 Face 3117 5154 5282 5153 Face 3118 5282 5412 5411 Face 3119 5281 5282 5411 Face 3120 5539 5538 5411 Face 3121 5412 5539 5411 Face 3122 5665 5664 5538 Face 3123 5539 5665 5538 Face 3124 5790 5789 5664 Face 3125 5665 5790 5664 Face 3126 5918 5917 5789 Face 3127 5790 5918 5789 Face 3128 6045 6044 5917 Face 3129 5918 6045 5917 Face 3130 6171 6170 6044 Face 3131 6045 6171 6044 Face 3132 30145 30209 30208 Face 3133 13225 13224 13129 Face 3134 4585 4586 4715 Face 3135 4847 4848 4980 Face 3136 5641 9082 13482 Face 3137 5614 5739 5738 Face 3138 4561 4562 4693 Face 3139 4964 5094 5093 Face 3140 1737 1738 1849 Face 3141 2624 2623 1977 Face 3142 34324 34500 34343 Face 3143 30434 30505 30433 Face 3144 4054 4055 4183 Face 3145 25759 25657 21983 Face 3146 25898 11256 11332 Face 3147 847 848 961 Face 3148 13273 4860 10394 Face 3149 1536 3305 1415 Face 3150 27367 34460 34532 Face 3151 1080 1079 969 Face 3152 3788 3920 3919 Face 3153 3529 3658 3657 Face 3154 1514 1513 1400 Face 3155 1289 1401 1288 Face 3156 2735 2862 2861 Face 3157 4303 4304 4429 Face 3158 7961 1414 7854 Face 3159 1527 1526 1413 Face 3160 5219 5220 5351 Face 3161 5479 5478 5351 Face 3162 622 621 512 Face 3163 403 404 512 Face 3164 1297 1296 1188 Face 3165 1633 1632 1521 Face 3166 967 1077 966 Face 3167 1298 1297 1189 Face 3168 3667 10023 3666 Face 3169 3537 3666 3536 Face 3170 1733 1845 1732 Face 3171 1965 1964 1844 Face 3172 1862 1863 2633 Face 3173 2475 2604 2603 Face 3174 4444 4574 4573 Face 3175 9301 7475 10927 Face 3176 4574 4706 4705 Face 3177 4573 4574 4705 Face 3178 4706 4837 4836 Face 3179 4837 4970 4969 Face 3180 20356 20444 20443 Face 3181 4705 4706 4836 Face 3182 1513 1512 1399 Face 3183 2124 1997 1861 Face 3184 4176 4177 4306 Face 3185 5237 1860 5113 Face 3186 7632 1193 1080 Face 3187 2221 2349 2220 Face 3188 2916 2917 14 Face 3189 23678 25152 25022 Face 3190 23577 28540 28497 Face 3191 21928 22026 21927 Face 3192 10869 9301 10927 Face 3193 7475 10006 9330 Face 3194 8130 7406 8454 Face 3195 7087 10722 8454 Face 3196 7285 7087 8454 Face 3197 7086 7719 10722 Face 3198 7087 7086 10722 Face 3199 8238 8132 7719 Face 3200 34790 34519 34372 Face 3201 7086 8238 7719 Face 3202 17980 20365 20364 Face 3203 1749 1754 1755 Face 3204 2505 13964 642 Face 3205 4614 3207 4484 Face 3206 14615 16239 16222 Face 3207 14597 14615 16222 Face 3208 230 131 3116 Face 3209 471 3118 14856 Face 3210 4021 24691 24690 Face 3211 3207 3334 4484 Face 3212 16051 236 14739 Face 3213 14478 14284 14857 Face 3214 5270 5263 16051 Face 3215 236 14478 14739 Face 3216 14296 14189 16403 Face 3217 4614 4484 1383 Face 3218 34726 12722 13768 Face 3219 15662 133 15391 Face 3220 3064 5905 1129 Face 3221 34487 34620 34697 Face 3222 15497 15359 13983 Face 3223 14240 14350 14239 Face 3224 12527 12344 12614 Face 3225 20373 21275 20372 Face 3226 15615 2587 15908 Face 3227 2975 5265 14993 Face 3228 22423 21095 12408 Face 3229 15025 14529 14528 Face 3230 22709 23148 29763 Face 3231 4026 1497 4027 Face 3232 27488 16714 28131 Face 3233 25879 19088 26414 Face 3234 27745 27746 29648 Face 3235 31951 31950 31843 Face 3236 34257 34256 34133 Face 3237 25855 27505 649 Face 3238 3338 3466 3465 Face 3239 3465 3594 33418 Face 3240 3466 3595 3594 Face 3241 17729 17660 16760 Face 3242 3595 3725 3724 Face 3243 3594 3595 3724 Face 3244 3725 3858 3857 Face 3245 3724 3725 3857 Face 3246 3858 3986 3985 Face 3247 3857 3858 3985 Face 3248 3986 4115 4114 Face 3249 3985 3986 4114 Face 3250 4115 4244 4243 Face 3251 4114 4115 4243 Face 3252 4244 4370 4369 Face 3253 4243 4244 4369 Face 3254 4501 4500 4369 Face 3255 4370 4501 4369 Face 3256 4632 4631 4500 Face 3257 4501 4632 4500 Face 3258 4763 4762 4631 Face 3259 4632 4763 4631 Face 3260 4896 4895 4762 Face 3261 4763 4896 4762 Face 3262 5029 5028 4895 Face 3263 4896 5029 4895 Face 3264 5155 5154 5028 Face 3265 5029 5155 5028 Face 3266 5155 5283 5282 Face 3267 5154 5155 5282 Face 3268 5413 5412 5282 Face 3269 5283 5413 5282 Face 3270 5540 5539 5412 Face 3271 5413 5540 5412 Face 3272 5666 5665 5539 Face 3273 5540 5666 5539 Face 3274 5791 5790 5665 Face 3275 5666 5791 5665 Face 3276 5919 5918 5790 Face 3277 5791 5919 5790 Face 3278 6046 6045 5918 Face 3279 5919 6046 5918 Face 3280 6172 6173 10315 Face 3281 6046 6172 6045 Face 3282 10927 7475 9330 Face 3283 29170 29300 29169 Face 3284 1849 1850 1969 Face 3285 4848 4981 4980 Face 3286 4958 4959 5088 Face 3287 278 13962 3198 Face 3288 5982 6110 6109 Face 3289 13319 13413 13318 Face 3290 1224 7447 7559 Face 3291 4980 4981 5111 Face 3292 27448 29017 27330 Face 3293 764 881 880 Face 3294 32507 763 762 Face 3295 4178 4177 4048 Face 3296 3169 4839 4838 Face 3297 4959 4960 5089 Face 3298 5854 5855 5982 Face 3299 3144 3145 3278 Face 3300 3279 3407 3406 Face 3301 5862 5990 5861 Face 3302 5990 6118 5989 Face 3303 4826 4827 4959 Face 3304 4960 5090 5089 Face 3305 1401 1514 1400 Face 3306 504 613 503 Face 3307 7842 5850 5849 Face 3308 3923 3922 3790 Face 3309 7961 1527 1414 Face 3310 34441 34411 34468 Face 3311 5096 5097 5219 Face 3312 5220 5352 5351 Face 3313 737 736 621 Face 3314 513 622 512 Face 3315 853 967 852 Face 3316 1189 1297 1188 Face 3317 3269 3397 3268 Face 3318 1077 1076 966 Face 3319 3785 3917 3916 Face 3320 3397 3396 3268 Face 3321 11462 11768 12827 Face 3322 3784 3785 3916 Face 3323 970 969 855 Face 3324 856 855 739 Face 3325 5101 5102 5224 Face 3326 5225 5357 5356 Face 3327 14468 14467 14349 Face 3328 2021 409 1333 Face 3329 5107 5230 5229 Face 3330 5106 5107 5229 Face 3331 3919 3920 4047 Face 3332 5854 5982 5981 Face 3333 4177 4178 4307 Face 3334 4306 4307 4432 Face 3335 6491 6490 6368 Face 3336 4308 4434 4433 Face 3337 34687 34310 34591 Face 3338 10602 9883 8132 Face 3339 11488 11566 11487 Face 3340 5126 117 9384 Face 3341 11723 11722 11643 Face 3342 12434 15586 20534 Face 3343 10006 12468 13371 Face 3344 9330 10006 13371 Face 3345 8238 10602 8132 Face 3346 9312 8974 9883 Face 3347 10602 9312 9883 Face 3348 15116 2715 15115 Face 3349 15060 4591 3502 Face 3350 3207 1356 239 Face 3351 29020 29019 28892 Face 3352 3199 3177 2456 Face 3353 2456 3177 16429 Face 3354 14856 3199 2456 Face 3355 3177 16588 16429 Face 3356 22114 22209 22113 Face 3357 29018 6613 28008 Face 3358 1540 1539 1154 Face 3359 1153 1540 1154 Face 3360 1336 2276 475 Face 3361 14717 16375 14716 Face 3362 34580 28017 34645 Face 3363 11096 12946 19704 Face 3364 21725 21726 21822 Face 3365 4743 9332 2145 Face 3366 34807 34770 34528 Face 3367 14041 14130 14129 Face 3368 21732 21731 32880 Face 3369 19673 20464 19670 Face 3370 14232 14231 14129 Face 3371 6156 15615 15908 Face 3372 15161 14405 21267 Face 3373 21297 21291 20381 Face 3374 15908 1754 16055 Face 3375 29584 26096 26095 Face 3376 11153 12279 13357 Face 3377 27046 28697 27045 Face 3378 34699 34421 13089 Face 3379 29481 25879 26414 Face 3380 18772 29473 27486 Face 3381 3211 3338 33799 Face 3382 28087 27745 29648 Face 3383 3212 3339 3338 Face 3384 3211 3212 3338 Face 3385 3339 3467 3466 Face 3386 3338 3339 3466 Face 3387 3467 3596 3595 Face 3388 3466 3467 3595 Face 3389 3726 3725 3595 Face 3390 3596 3726 3595 Face 3391 3859 3858 3725 Face 3392 3726 3859 3725 Face 3393 3987 3986 3858 Face 3394 3859 3987 3858 Face 3395 3987 4116 4115 Face 3396 3986 3987 4115 Face 3397 4116 4245 4244 Face 3398 4115 4116 4244 Face 3399 4245 4371 4370 Face 3400 4244 4245 4370 Face 3401 4502 4501 4370 Face 3402 4371 4502 4370 Face 3403 4633 4632 4501 Face 3404 4502 4633 4501 Face 3405 4764 4763 4632 Face 3406 4633 4764 4632 Face 3407 4897 4896 4763 Face 3408 4764 4897 4763 Face 3409 5030 5029 4896 Face 3410 4897 5030 4896 Face 3411 5156 5155 5029 Face 3412 5030 5156 5029 Face 3413 5284 5283 5155 Face 3414 5156 5284 5155 Face 3415 5284 5414 5413 Face 3416 5283 5284 5413 Face 3417 5541 5540 5413 Face 3418 5414 5541 5413 Face 3419 5667 5666 5540 Face 3420 5541 5667 5540 Face 3421 5792 5791 5666 Face 3422 5667 5792 5666 Face 3423 5920 5919 5791 Face 3424 5792 5920 5791 Face 3425 6047 6046 5919 Face 3426 5920 6047 5919 Face 3427 10514 10634 10513 Face 3428 6047 6173 6046 Face 3429 881 993 992 Face 3430 13419 13514 13513 Face 3431 993 1106 1105 Face 3432 880 881 992 Face 3433 10889 4586 10767 Face 3434 992 993 1105 Face 3435 1512 1511 1398 Face 3436 13197 5641 13482 Face 3437 34351 28155 28019 Face 3438 1331 1332 1445 Face 3439 11320 11319 11244 Face 3440 6477 6478 660 Face 3441 397 505 6971 Face 3442 1106 1216 1105 Face 3443 2097 2098 2224 Face 3444 3268 3396 3267 Face 3445 848 962 961 Face 3446 5727 5855 5854 Face 3447 1300 1301 1412 Face 3448 5990 5989 5861 Face 3449 3008 3145 3144 Face 3450 2871 2872 3007 Face 3451 5601 5726 5725 Face 3452 34519 34646 34372 Face 3453 5113 4983 2751 Face 3454 3150 2752 3287 Face 3455 11115 11114 11055 Face 3456 22020 22019 21921 Face 3457 2883 3415 3294 Face 3458 3415 3422 3294 Face 3459 4966 4967 5096 Face 3460 5097 5220 5219 Face 3461 853 852 736 Face 3462 622 737 621 Face 3463 3526 3525 3396 Face 3464 967 966 852 Face 3465 5850 5851 5978 Face 3466 2218 2346 2345 Face 3467 3916 4044 4043 Face 3468 643 630 6475 Face 3469 3278 3279 3406 Face 3470 6117 6118 6243 Face 3471 27447 34628 34514 Face 3472 2739 2866 2738 Face 3473 11837 12561 11858 Face 3474 34632 34383 34547 Face 3475 11642 11641 11563 Face 3476 8373 10127 11838 Face 3477 3403 3402 3274 Face 3478 11131 11193 11130 Face 3479 6490 6491 1794 Face 3480 1907 3700 180 Face 3481 6491 1907 1794 Face 3482 1794 1907 180 Face 3483 4822 4955 4954 Face 3484 6369 6491 6368 Face 3485 2123 3684 3428 Face 3486 31835 31836 31942 Face 3487 11100 5126 9384 Face 3488 5464 14077 1575 Face 3489 31169 31270 31168 Face 3490 20541 12434 20534 Face 3491 12468 9168 12752 Face 3492 13371 12468 12752 Face 3493 12434 20635 15879 Face 3494 15586 12434 15879 Face 3495 14203 2150 11274 Face 3496 14577 14698 14697 Face 3497 14200 15615 6156 Face 3498 14993 14200 6156 Face 3499 5271 14613 15089 Face 3500 20279 14226 14895 Face 3501 20728 13449 13640 Face 3502 14673 5271 15089 Face 3503 19473 19581 19389 Face 3504 19731 19814 19730 Face 3505 19674 3049 16423 Face 3506 21372 21377 15035 Face 3507 19814 19813 19730 Face 3508 13479 13124 7848 Face 3509 4229 7819 1321 Face 3510 15162 4229 1321 Face 3511 9270 15581 21291 Face 3512 15725 15305 10864 Face 3513 19799 19878 19877 Face 3514 19878 19953 19952 Face 3515 20 22414 15879 Face 3516 20635 20 15879 Face 3517 5715 5271 14673 Face 3518 5780 6002 2371 Face 3519 28934 29584 26095 Face 3520 21724 21821 21820 Face 3521 34769 34361 34386 Face 3522 26701 25637 28551 Face 3523 25679 25678 25579 Face 3524 29327 26703 27486 Face 3525 27634 17379 29716 Face 3526 30183 11023 11022 Face 3527 27730 27602 27603 Face 3528 23600 28302 29754 Face 3529 3213 3340 3339 Face 3530 3212 3213 3339 Face 3531 3340 3468 3467 Face 3532 3339 3340 3467 Face 3533 3597 3596 3467 Face 3534 3468 3597 3467 Face 3535 3727 3726 3596 Face 3536 3597 3727 3596 Face 3537 3860 3859 3726 Face 3538 3727 3860 3726 Face 3539 3988 3987 3859 Face 3540 3860 3988 3859 Face 3541 4117 4116 3987 Face 3542 3988 4117 3987 Face 3543 4117 4246 4245 Face 3544 4116 4117 4245 Face 3545 4246 4372 4371 Face 3546 4245 4246 4371 Face 3547 4503 4502 4371 Face 3548 4372 4503 4371 Face 3549 4634 4633 4502 Face 3550 4503 4634 4502 Face 3551 4765 4764 4633 Face 3552 4634 4765 4633 Face 3553 4898 4897 4764 Face 3554 4765 4898 4764 Face 3555 5031 5030 4897 Face 3556 4898 5031 4897 Face 3557 5157 5156 5030 Face 3558 5031 5157 5030 Face 3559 5285 5284 5156 Face 3560 5157 5285 5156 Face 3561 5415 5414 5284 Face 3562 5285 5415 5284 Face 3563 5542 5541 5414 Face 3564 5415 5542 5414 Face 3565 5668 5667 5541 Face 3566 5542 5668 5541 Face 3567 5793 5792 5667 Face 3568 5668 5793 5667 Face 3569 5921 5920 5792 Face 3570 5793 5921 5792 Face 3571 6048 6047 5920 Face 3572 5921 6048 5920 Face 3573 6048 6174 6173 Face 3574 6047 6048 6173 Face 3575 19763 25635 24093 Face 3576 4575 10754 10755 Face 3577 3788 3787 3657 Face 3578 4840 4839 3169 Face 3579 6368 6367 6248 Face 3580 21445 21446 21540 Face 3581 3143 3142 3005 Face 3582 965 1075 964 Face 3583 1666 1665 1556 Face 3584 616 731 730 Face 3585 5095 5096 5218 Face 3586 2398 2527 2397 Face 3587 5873 2631 2113 Face 3588 4047 4048 4176 Face 3589 3919 4047 3918 Face 3590 5730 5858 5729 Face 3591 5983 6111 6110 Face 3592 5726 5727 5854 Face 3593 5734 5733 5608 Face 3594 2752 2751 3287 Face 3595 19952 19953 20029 Face 3596 1732 1731 1622 Face 3597 2609 2740 2608 Face 3598 2867 2866 2739 Face 3599 6232 6352 6231 Face 3600 6106 6232 6231 Face 3601 4046 4175 4174 Face 3602 1862 1996 1863 Face 3603 2223 2224 2351 Face 3604 2224 2352 2351 Face 3605 4833 4834 4966 Face 3606 4967 5097 5096 Face 3607 4185 4315 4314 Face 3608 737 853 736 Face 3609 728 844 843 Face 3610 1067 1180 1179 Face 3611 1188 1296 1187 Face 3612 22678 17336 19102 Face 3613 13265 13175 13081 Face 3614 2744 2745 2871 Face 3615 14724 13286 22414 Face 3616 4704 4705 4835 Face 3617 8997 2617 2488 Face 3618 6474 6473 6351 Face 3619 8425 2144 2019 Face 3620 13322 13416 13321 Face 3621 969 968 854 Face 3622 6235 6355 6354 Face 3623 3541 3540 2621 Face 3624 2620 2232 2231 Face 3625 6109 6235 6234 Face 3626 2621 2620 2231 Face 3627 2623 2104 1977 Face 3628 25985 34579 34597 Face 3629 3137 3271 3270 Face 3630 4691 4822 4821 Face 3631 875 1338 874 Face 3632 11616 5774 1798 Face 3633 28548 34814 26678 Face 3634 11214 34803 12024 Face 3635 34776 34822 34646 Face 3636 30026 30025 29964 Face 3637 9168 10684 13375 Face 3638 12752 9168 13375 Face 3639 14459 14577 14576 Face 3640 22399 22496 22495 Face 3641 14576 14577 14697 Face 3642 14039 15194 14029 Face 3643 14827 14828 14952 Face 3644 15263 14986 16375 Face 3645 21723 21724 21820 Face 3646 15644 14520 14519 Face 3647 5715 15223 1909 Face 3648 22621 9052 19439 Face 3649 13644 10733 10843 Face 3650 14020 5715 1909 Face 3651 22398 22399 22495 Face 3652 15346 15347 15486 Face 3653 2664 22159 15072 Face 3654 75 1542 556 Face 3655 21252 21345 21344 Face 3656 31365 31364 31261 Face 3657 472 1921 1471 Face 3658 24819 1471 1583 Face 3659 5644 5517 1921 Face 3660 15211 15347 15210 Face 3661 15347 15487 15486 Face 3662 7131 7130 6522 Face 3663 3069 3070 5122 Face 3664 33493 33492 33359 Face 3665 6918 29785 26872 Face 3666 28361 28419 11007 Face 3667 20847 28765 29146 Face 3668 25637 26872 2809 Face 3669 27448 34396 6614 Face 3670 34612 34371 34415 Face 3671 18129 27634 19000 Face 3672 3079 3214 3213 Face 3673 3078 3212 3077 Face 3674 3214 3341 3340 Face 3675 3213 3214 3340 Face 3676 3341 3469 3468 Face 3677 3340 3341 3468 Face 3678 3469 3598 3597 Face 3679 3468 3469 3597 Face 3680 3598 3728 3727 Face 3681 3597 3598 3727 Face 3682 3861 3860 3727 Face 3683 3728 3861 3727 Face 3684 3989 3988 3860 Face 3685 3861 3989 3860 Face 3686 4118 4117 3988 Face 3687 3989 4118 3988 Face 3688 4247 4246 4117 Face 3689 4118 4247 4117 Face 3690 4373 4372 4246 Face 3691 4247 4373 4246 Face 3692 4373 4504 4503 Face 3693 4372 4373 4503 Face 3694 4635 4634 4503 Face 3695 4504 4635 4503 Face 3696 4766 4765 4634 Face 3697 4635 4766 4634 Face 3698 4899 4898 4765 Face 3699 4766 4899 4765 Face 3700 5032 5031 4898 Face 3701 4899 5032 4898 Face 3702 5158 5157 5031 Face 3703 5032 5158 5031 Face 3704 5286 5285 5157 Face 3705 5158 5286 5157 Face 3706 5416 5415 5285 Face 3707 5286 5416 5285 Face 3708 5543 5542 5415 Face 3709 5416 5543 5415 Face 3710 5669 5668 5542 Face 3711 5543 5669 5542 Face 3712 5794 5793 5668 Face 3713 5669 5794 5668 Face 3714 5922 5921 5793 Face 3715 5794 5922 5793 Face 3716 6049 6048 5921 Face 3717 5922 6049 5921 Face 3718 6175 6174 6048 Face 3719 6049 6175 6048 Face 3720 6175 6295 6294 Face 3721 6174 6175 6294 Face 3722 13232 13325 13231 Face 3723 6416 6417 6541 Face 3724 10684 12383 9617 Face 3725 34564 34358 34655 Face 3726 2090 2091 2217 Face 3727 959 960 1069 Face 3728 2349 2478 2348 Face 3729 2091 2218 2217 Face 3730 5723 5851 7842 Face 3731 1860 1861 5113 Face 3732 3809 2496 2497 Face 3733 3551 3809 2497 Face 3734 5986 6114 6113 Face 3735 23661 28438 28428 Face 3736 5855 5983 5982 Face 3737 4961 4962 5091 Face 3738 1301 1413 1412 Face 3739 3526 3527 3655 Face 3740 2751 3421 3152 Face 3741 1408 1407 1295 Face 3742 6772 298 297 Face 3743 610 611 725 Face 3744 5359 5486 5485 Face 3745 6105 6106 6231 Face 3746 6231 6351 6350 Face 3747 1996 1099 1995 Face 3748 509 508 399 Face 3749 6236 6356 6355 Face 3750 4702 4703 4833 Face 3751 4834 4967 4966 Face 3752 2217 2218 2345 Face 3753 4184 4185 4314 Face 3754 2091 2092 2218 Face 3755 33872 33871 33745 Face 3756 1074 1075 1187 Face 3757 3294 3422 5873 Face 3758 9274 203 2667 Face 3759 7329 879 991 Face 3760 11803 11802 11720 Face 3761 12953 12861 12954 Face 3762 4983 1862 2633 Face 3763 34643 34386 34586 Face 3764 4195 4196 4325 Face 3765 29471 28089 34679 Face 3766 4326 4452 4325 Face 3767 4452 4451 4325 Face 3768 4452 4584 4451 Face 3769 4584 4583 4451 Face 3770 4584 4714 4583 Face 3771 4714 4713 4583 Face 3772 729 845 844 Face 3773 1402 1401 1289 Face 3774 34262 12195 34261 Face 3775 613 614 728 Face 3776 3409 3410 3538 Face 3777 5348 5349 5475 Face 3778 5599 8640 9062 Face 3779 618 733 732 Face 3780 397 506 505 Face 3781 1515 1516 1626 Face 3782 13375 10684 9617 Face 3783 11491 11569 11490 Face 3784 21275 21267 20372 Face 3785 12383 6502 121 Face 3786 983 2411 2282 Face 3787 15053 983 15049 Face 3788 233 4990 2587 Face 3789 15615 233 2587 Face 3790 15264 15644 14519 Face 3791 3056 383 2146 Face 3792 13288 11536 15954 Face 3793 19636 20382 19634 Face 3794 34466 26326 29063 Face 3795 13974 13973 13927 Face 3796 15078 15079 15210 Face 3797 15347 15346 15210 Face 3798 472 5644 1921 Face 3799 5644 51 5 Face 3800 5517 5644 5 Face 3801 51 5596 5634 Face 3802 5 51 5634 Face 3803 5596 444 336 Face 3804 5634 5596 336 Face 3805 444 4060 4100 Face 3806 14039 14029 788 Face 3807 15079 15211 15210 Face 3808 25987 18448 29538 Face 3809 27994 28127 27993 Face 3810 20390 19339 20821 Face 3811 18545 20802 23396 Face 3812 33360 33493 33359 Face 3813 28897 28898 29024 Face 3814 26872 29785 25492 Face 3815 29785 29337 25492 Face 3816 29716 17379 6651 Face 3817 29464 29465 28092 Face 3818 3080 3215 3214 Face 3819 3078 32645 3079 Face 3820 3215 3342 3341 Face 3821 3214 3215 3341 Face 3822 3342 3470 3469 Face 3823 3341 3342 3469 Face 3824 3470 3599 3598 Face 3825 3469 3470 3598 Face 3826 3599 3729 3728 Face 3827 3598 3599 3728 Face 3828 3729 3862 3861 Face 3829 3728 3729 3861 Face 3830 3990 3989 3861 Face 3831 3862 3990 3861 Face 3832 4119 4118 3989 Face 3833 3990 4119 3989 Face 3834 4248 4247 4118 Face 3835 4119 4248 4118 Face 3836 4374 4373 4247 Face 3837 4248 4374 4247 Face 3838 4505 4504 4373 Face 3839 4374 4505 4373 Face 3840 4505 4636 4635 Face 3841 4504 4505 4635 Face 3842 4767 4766 4635 Face 3843 4636 4767 4635 Face 3844 4767 4900 4899 Face 3845 4766 4767 4899 Face 3846 5033 5032 4899 Face 3847 4900 5033 4899 Face 3848 5159 5158 5032 Face 3849 5033 5159 5032 Face 3850 5159 5287 5286 Face 3851 5158 5159 5286 Face 3852 5417 5416 5286 Face 3853 5287 5417 5286 Face 3854 5544 5543 5416 Face 3855 5417 5544 5416 Face 3856 5670 5669 5543 Face 3857 5544 5670 5543 Face 3858 5795 5794 5669 Face 3859 5670 5795 5669 Face 3860 5923 5922 5794 Face 3861 5795 5923 5794 Face 3862 6050 6049 5922 Face 3863 5923 6050 5922 Face 3864 6176 6175 6049 Face 3865 6050 6176 6049 Face 3866 6296 6295 6175 Face 3867 6176 6296 6175 Face 3868 6296 6418 6417 Face 3869 6295 6296 6417 Face 3870 6418 6543 6542 Face 3871 6417 6418 6542 Face 3872 5849 5977 5976 Face 3873 34638 11303 12382 Face 3874 1184 1183 1070 Face 3875 12221 12310 12309 Face 3876 5605 5604 5475 Face 3877 1071 1184 1070 Face 3878 4705 4836 4835 Face 3879 23193 23192 29604 Face 3880 515 514 405 Face 3881 34521 34678 34611 Face 3882 4830 4963 4962 Face 3883 3006 3143 3005 Face 3884 4304 4305 4430 Face 3885 730 846 845 Face 3886 5493 5622 1858 Face 3887 6480 6481 892 Face 3888 2485 2484 2355 Face 3889 9617 12383 121 Face 3890 5486 5615 5614 Face 3891 5358 5359 5485 Face 3892 2124 4076 3959 Face 3893 6502 6142 4331 Face 3894 6235 6236 6355 Face 3895 4049 4178 4048 Face 3896 4570 4571 4702 Face 3897 4703 4834 4833 Face 3898 4055 10260 4056 Face 3899 11398 11397 11316 Face 3900 2092 2219 2218 Face 3901 957 958 1067 Face 3902 11721 11803 11720 Face 3903 1296 1295 1187 Face 3904 18229 20032 17193 Face 3905 11564 11642 11563 Face 3906 1889 2010 1888 Face 3907 5480 5479 5352 Face 3908 845 959 958 Face 3909 4196 4326 4325 Face 3910 2009 2134 2133 Face 3911 4210 4082 9165 Face 3912 862 204 4722 Face 3913 1888 1887 1771 Face 3914 5860 5859 5731 Face 3915 34366 34450 34823 Face 3916 13122 424 13217 Face 3917 2124 1998 4076 Face 3918 727 726 611 Face 3919 11177 11176 11114 Face 3920 5979 6106 6105 Face 3921 5732 5860 5731 Face 3922 2866 3002 2865 Face 3923 3282 3148 9563 Face 3924 6249 6368 6248 Face 3925 11116 11115 11056 Face 3926 756 9629 7376 Face 3927 1223 1330 1329 Face 3928 121 6502 4331 Face 3929 6773 6774 299 Face 3930 19588 20373 19583 Face 3931 336 444 4100 Face 3932 2411 4801 16223 Face 3933 1658 983 2282 Face 3934 5500 2539 2410 Face 3935 2410 2539 15264 Face 3936 2146 5500 2410 Face 3937 2539 15644 15264 Face 3938 34547 34383 34290 Face 3939 14421 14540 15725 Face 3940 16378 16541 16540 Face 3941 11522 12803 34751 Face 3942 4231 4104 14402 Face 3943 3836 904 3703 Face 3944 4060 14691 14684 Face 3945 4100 4060 14684 Face 3946 14691 16283 16276 Face 3947 14684 14691 16276 Face 3948 16283 14279 14269 Face 3949 3972 14266 14632 Face 3950 16276 16283 14269 Face 3951 14279 1378 3634 Face 3952 14269 14279 3634 Face 3953 1378 15182 14400 Face 3954 16711 28698 27495 Face 3955 17920 18010 1375 Face 3956 25769 25770 25876 Face 3957 27994 27993 27861 Face 3958 29481 26414 29593 Face 3959 29472 20881 10987 Face 3960 29336 28693 28012 Face 3961 24455 24456 23831 Face 3962 26811 26301 26531 Face 3963 26876 26531 29337 Face 3964 3080 3079 13560 Face 3965 27764 27634 29716 Face 3966 3081 3216 3215 Face 3967 3080 3081 3215 Face 3968 3216 3343 3342 Face 3969 3215 3216 3342 Face 3970 3343 3471 3470 Face 3971 3342 3343 3470 Face 3972 3471 3600 3599 Face 3973 3470 3471 3599 Face 3974 3600 3730 3729 Face 3975 3599 3600 3729 Face 3976 3730 3863 3862 Face 3977 3729 3730 3862 Face 3978 3863 3991 3990 Face 3979 3862 3863 3990 Face 3980 3991 4120 4119 Face 3981 3990 3991 4119 Face 3982 4249 4248 4119 Face 3983 4120 4249 4119 Face 3984 4375 4374 4248 Face 3985 4249 4375 4248 Face 3986 4506 4505 4374 Face 3987 4375 4506 4374 Face 3988 4506 4637 4636 Face 3989 4505 4506 4636 Face 3990 4768 4767 4636 Face 3991 4637 4768 4636 Face 3992 4901 4900 4767 Face 3993 4768 4901 4767 Face 3994 5034 5033 4900 Face 3995 4901 5034 4900 Face 3996 5034 5160 5159 Face 3997 5033 5034 5159 Face 3998 5288 5287 5159 Face 3999 5160 5288 5159 Face 4000 5288 5418 5417 Face 4001 5287 5288 5417 Face 4002 5545 5544 5417 Face 4003 5418 5545 5417 Face 4004 5671 5670 5544 Face 4005 5545 5671 5544 Face 4006 5796 5795 5670 Face 4007 5671 5796 5670 Face 4008 5924 5923 5795 Face 4009 5796 5924 5795 Face 4010 6051 6050 5923 Face 4011 5924 6051 5923 Face 4012 6177 6176 6050 Face 4013 6051 6177 6050 Face 4014 6297 6296 6176 Face 4015 6177 6297 6176 Face 4016 6297 6419 6418 Face 4017 6296 6297 6418 Face 4018 6419 6544 6543 Face 4019 6418 6419 6543 Face 4020 6021 6017 6543 Face 4021 6544 6021 6543 Face 4022 2216 2217 2344 Face 4023 34461 34735 11355 Face 4024 5982 5983 6110 Face 4025 4698 4699 4829 Face 4026 4962 5092 5091 Face 4027 4699 4830 4829 Face 4028 3277 3405 3404 Face 4029 6115 6242 6241 Face 4030 34614 34748 34620 Face 4031 4965 4966 5095 Face 4032 3791 3923 3790 Face 4033 5477 5606 5476 Face 4034 1745 1999 2125 Face 4035 3273 3401 3400 Face 4036 5641 1550 1904 Face 4037 1179 1287 1286 Face 4038 5740 5868 5867 Face 4039 5485 5486 5614 Face 4040 2010 2009 1888 Face 4041 1860 2124 1861 Face 4042 4178 4308 4307 Face 4043 8679 2103 8576 Face 4044 4314 4315 4440 Face 4045 4571 4703 4702 Face 4046 2999 2998 2862 Face 4047 4315 4441 4440 Face 4048 2481 2480 2351 Face 4049 2863 2999 2862 Face 4050 2104 2231 2374 Face 4051 2631 2114 2113 Face 4052 6142 35 2666 Face 4053 1848 1849 1968 Face 4054 728 729 844 Face 4055 1065 1066 1178 Face 4056 13419 13418 13324 Face 4057 959 1069 1068 Face 4058 6359 6358 6238 Face 4059 11969 12054 11968 Face 4060 731 847 846 Face 4061 1745 1988 1999 Face 4062 5476 5605 5475 Face 4063 730 731 846 Face 4064 624 623 514 Face 4065 5605 5730 5604 Face 4066 2742 2741 2610 Face 4067 11054 30921 30920 Face 4068 5219 5351 5350 Face 4069 3408 3409 3537 Face 4070 6104 6105 6230 Face 4071 1626 1627 1735 Face 4072 2497 2496 2117 Face 4073 4182 4312 4311 Face 4074 2608 2607 2478 Face 4075 13381 13475 11686 Face 4076 4331 6142 2666 Face 4077 1560 1559 1445 Face 4078 109 6767 108 Face 4079 702 819 17477 Face 4080 4801 14571 14570 Face 4081 2282 2411 16223 Face 4082 559 560 15390 Face 4083 560 15255 15390 Face 4084 1497 3175 5250 Face 4085 161 14505 5069 Face 4086 18679 18575 18576 Face 4087 18679 18576 2305 Face 4088 1353 1242 15812 Face 4089 17187 562 17277 Face 4090 14402 14440 1133 Face 4091 15194 4104 15191 Face 4092 3634 1378 14400 Face 4093 15182 2584 3720 Face 4094 14400 15182 3720 Face 4095 2584 16586 5194 Face 4096 4104 14440 14402 Face 4097 14266 3850 3851 Face 4098 3720 2584 5194 Face 4099 3851 3850 14217 Face 4100 16586 15958 15957 Face 4101 6603 27357 25545 Face 4102 34321 25856 34377 Face 4103 13073 18982 18981 Face 4104 27862 27994 27861 Face 4105 5194 16586 15957 Face 4106 29799 26307 26124 Face 4107 18981 18982 4475 Face 4108 27488 28131 26703 Face 4109 25867 25868 25977 Face 4110 24038 12819 25019 Face 4111 16660 27623 18969 Face 4112 28811 27752 18543 Face 4113 26452 25960 17459 Face 4114 29724 25987 17958 Face 4115 26876 26811 26531 Face 4116 2945 3082 3081 Face 4117 13560 2944 3081 Face 4118 3082 3217 3216 Face 4119 3081 3082 3216 Face 4120 3217 3344 3343 Face 4121 3216 3217 3343 Face 4122 3344 3472 3471 Face 4123 3343 3344 3471 Face 4124 3472 3601 3600 Face 4125 3471 3472 3600 Face 4126 3601 3731 3730 Face 4127 3600 3601 3730 Face 4128 3731 3864 3863 Face 4129 3730 3731 3863 Face 4130 3864 3992 3991 Face 4131 3863 3864 3991 Face 4132 3992 4121 4120 Face 4133 3991 3992 4120 Face 4134 4121 4250 4249 Face 4135 4120 4121 4249 Face 4136 4376 4375 4249 Face 4137 4250 4376 4249 Face 4138 4376 4507 4506 Face 4139 4375 4376 4506 Face 4140 4507 4638 4637 Face 4141 4506 4507 4637 Face 4142 4638 4769 4768 Face 4143 4637 4638 4768 Face 4144 4769 4902 4901 Face 4145 4768 4769 4901 Face 4146 4902 5035 5034 Face 4147 4901 4902 5034 Face 4148 5035 5161 5160 Face 4149 5034 5035 5160 Face 4150 5289 5288 5160 Face 4151 5161 5289 5160 Face 4152 5289 5419 5418 Face 4153 5288 5289 5418 Face 4154 5546 5545 5418 Face 4155 5419 5546 5418 Face 4156 5672 5671 5545 Face 4157 5546 5672 5545 Face 4158 5797 5796 5671 Face 4159 5672 5797 5671 Face 4160 5925 5924 5796 Face 4161 5797 5925 5796 Face 4162 6052 6051 5924 Face 4163 5925 6052 5924 Face 4164 6178 6177 6051 Face 4165 6052 6178 6051 Face 4166 6298 6297 6177 Face 4167 6178 6298 6177 Face 4168 6298 6420 6419 Face 4169 6297 6298 6419 Face 4170 6420 6545 6544 Face 4171 6419 6420 6544 Face 4172 6139 6021 6544 Face 4173 6545 6139 6544 Face 4174 34357 34825 34506 Face 4175 6960 386 6959 Face 4176 6969 395 6968 Face 4177 6352 6474 6351 Face 4178 2613 2614 2744 Face 4179 733 849 848 Face 4180 5856 5857 5984 Face 4181 3268 3267 3133 Face 4182 5350 5477 5476 Face 4183 5985 6113 6112 Face 4184 3795 3665 10022 Face 4185 2499 2498 2115 Face 4186 4826 4959 4958 Face 4187 1968 2094 2093 Face 4188 12273 34408 34609 Face 4189 2738 2737 2606 Face 4190 5996 6124 6123 Face 4191 5739 5740 5867 Face 4192 3787 3786 3656 Face 4193 34754 34624 34761 Face 4194 18978 2297 27269 Face 4195 34386 34347 34392 Face 4196 3918 4046 4045 Face 4197 4441 4571 4570 Face 4198 400 509 399 Face 4199 3917 3918 4045 Face 4200 2623 2621 2104 Face 4201 2097 2224 2223 Face 4202 1083 13375 9501 Face 4203 6003 2232 5876 Face 4204 844 845 958 Face 4205 5858 5986 5985 Face 4206 1557 1666 1556 Face 4207 1069 1182 1181 Face 4208 15305 14660 15168 Face 4209 8038 34536 9186 Face 4210 992 1105 991 Face 4211 2868 2867 2740 Face 4212 4831 4964 4963 Face 4213 5349 5476 5475 Face 4214 961 960 846 Face 4215 847 961 846 Face 4216 5609 5734 5608 Face 4217 6113 6239 6112 Face 4218 2610 2741 2609 Face 4219 3160 3022 5493 Face 4220 1964 2090 2089 Face 4221 2345 2474 2473 Face 4222 5995 6123 6122 Face 4223 6123 6249 6122 Face 4224 2496 2118 2117 Face 4225 2018 2017 1897 Face 4226 1772 1888 1771 Face 4227 4067 4195 4194 Face 4228 10203 25323 25020 Face 4229 3809 8650 3678 Face 4230 2666 35 12852 Face 4231 20355 20356 20442 Face 4232 27338 27457 27456 Face 4233 1446 1560 1445 Face 4234 1669 1668 1559 Face 4235 14571 16209 16197 Face 4236 22209 22208 22113 Face 4237 34564 34711 34358 Face 4238 26928 28688 28231 Face 4239 28631 28630 28493 Face 4240 34568 34649 34563 Face 4241 453 452 344 Face 4242 345 453 344 Face 4243 563 562 452 Face 4244 453 563 452 Face 4245 4108 4109 3038 Face 4246 791 17367 675 Face 4247 15958 14996 14995 Face 4248 15957 15958 14995 Face 4249 14996 14554 14183 Face 4250 14995 14996 14183 Face 4251 14440 3972 1133 Face 4252 1236 3154 3153 Face 4253 1133 3972 14632 Face 4254 34721 34396 34393 Face 4255 14554 15249 15250 Face 4256 16541 3553 3946 Face 4257 14183 14554 15250 Face 4258 15249 15610 14375 Face 4259 15250 15249 14375 Face 4260 15610 14212 4866 Face 4261 14375 15610 4866 Face 4262 14212 13890 15897 Face 4263 27380 27382 29072 Face 4264 27115 27116 27231 Face 4265 34307 8774 34717 Face 4266 29084 19195 19456 Face 4267 22555 21637 22649 Face 4268 26297 26180 19031 Face 4269 20803 16690 18446 Face 4270 29327 27488 26703 Face 4271 27275 26452 17459 Face 4272 23797 22145 22680 Face 4273 26811 29724 27505 Face 4274 25960 28693 29336 Face 4275 2944 2945 3081 Face 4276 27505 29724 17958 Face 4277 3083 3082 2945 Face 4278 2946 3083 2945 Face 4279 3218 3217 3082 Face 4280 3083 3218 3082 Face 4281 3218 3345 3344 Face 4282 3217 3218 3344 Face 4283 3345 3473 3472 Face 4284 3344 3345 3472 Face 4285 3473 3602 3601 Face 4286 3472 3473 3601 Face 4287 3602 3732 3731 Face 4288 3601 3602 3731 Face 4289 3732 3865 3864 Face 4290 3731 3732 3864 Face 4291 3865 3993 3992 Face 4292 3864 3865 3992 Face 4293 3993 4122 4121 Face 4294 3992 3993 4121 Face 4295 4122 4251 4250 Face 4296 4121 4122 4250 Face 4297 4251 4377 4376 Face 4298 4250 4251 4376 Face 4299 4377 4508 4507 Face 4300 4376 4377 4507 Face 4301 4508 4639 4638 Face 4302 4507 4508 4638 Face 4303 4639 4770 4769 Face 4304 4638 4639 4769 Face 4305 4770 4903 4902 Face 4306 4769 4770 4902 Face 4307 4903 5036 5035 Face 4308 4902 4903 5035 Face 4309 5036 5162 5161 Face 4310 5035 5036 5161 Face 4311 5162 5290 5289 Face 4312 5161 5162 5289 Face 4313 5290 5420 5419 Face 4314 5289 5290 5419 Face 4315 5547 5546 5419 Face 4316 5420 5547 5419 Face 4317 5547 5673 5672 Face 4318 5546 5547 5672 Face 4319 5673 5798 5797 Face 4320 5672 5673 5797 Face 4321 5926 5925 5797 Face 4322 5798 5926 5797 Face 4323 6053 6052 5925 Face 4324 5926 6053 5925 Face 4325 6053 6179 6178 Face 4326 6052 6053 6178 Face 4327 6299 6298 6178 Face 4328 6179 6299 6178 Face 4329 6421 6420 6298 Face 4330 6299 6421 6298 Face 4331 6421 6546 6545 Face 4332 6420 6421 6545 Face 4333 6546 6140 6139 Face 4334 6545 6546 6139 Face 4335 3004 3003 2867 Face 4336 6144 6140 6547 Face 4337 1307 3415 2883 Face 4338 2868 3004 2867 Face 4339 908 1307 1421 Face 4340 892 908 1421 Face 4341 9574 9575 9689 Face 4342 13226 13319 13318 Face 4343 3139 3138 3001 Face 4344 4694 4695 4825 Face 4345 1736 1848 1847 Face 4346 13419 13420 13514 Face 4347 13515 13612 13611 Face 4348 3271 3399 3398 Face 4349 2228 2356 2355 Face 4350 4340 982 1994 Face 4351 6369 6368 6249 Face 4352 5995 5996 6123 Face 4353 2478 2477 2348 Face 4354 4825 4958 4957 Face 4355 2349 2348 2220 Face 4356 4694 4825 4824 Face 4357 6478 6477 6355 Face 4358 19703 23745 312 Face 4359 3541 2621 2623 Face 4360 509 618 617 Face 4361 12303 12394 12393 Face 4362 3412 3541 2623 Face 4363 1182 1290 1289 Face 4364 3003 3002 2866 Face 4365 3788 3789 3920 Face 4366 958 959 1068 Face 4367 5866 5867 5994 Face 4368 6368 6490 6367 Face 4369 2238 2246 2245 Face 4370 2344 2345 2473 Face 4371 2245 2246 5117 Face 4372 4836 4969 4968 Face 4373 29019 21790 28892 Face 4374 4988 2246 9272 Face 4375 27109 27225 27108 Face 4376 25558 25559 26453 Face 4377 2134 2135 2259 Face 4378 11884 11883 11802 Face 4379 1286 1287 1398 Face 4380 4305 4431 4430 Face 4381 5850 5978 5977 Face 4382 4824 4957 4956 Face 4383 3410 9792 3539 Face 4384 5994 5995 6122 Face 4385 2996 2997 3133 Face 4386 4835 4836 4968 Face 4387 646 761 7114 Face 4388 24182 24225 22899 Face 4389 27226 27336 27225 Face 4390 27337 27338 27456 Face 4391 5632 1882 3958 Face 4392 312 5632 3958 Face 4393 1882 3319 3320 Face 4394 3958 1882 3320 Face 4395 3319 2363 4458 Face 4396 1560 1669 1559 Face 4397 1775 1774 1668 Face 4398 16209 13934 13915 Face 4399 4066 4067 4194 Face 4400 241 240 142 Face 4401 143 241 142 Face 4402 346 345 240 Face 4403 241 346 240 Face 4404 454 453 345 Face 4405 346 454 345 Face 4406 564 563 453 Face 4407 454 564 453 Face 4408 676 675 563 Face 4409 564 676 563 Face 4410 4866 14212 15897 Face 4411 676 791 675 Face 4412 17007 240 345 Face 4413 1156 1157 15897 Face 4414 34525 16663 28136 Face 4415 13890 1156 15897 Face 4416 20 14724 22414 Face 4417 34439 34366 34823 Face 4418 16540 16541 3946 Face 4419 15811 1353 15812 Face 4420 5122 5885 3056 Face 4421 3850 14228 14217 Face 4422 5780 14270 15394 Face 4423 14585 14706 14705 Face 4424 28558 34640 34349 Face 4425 34418 34316 34503 Face 4426 25666 25769 25768 Face 4427 7017 20708 20624 Face 4428 30248 11021 11020 Face 4429 27863 15306 29470 Face 4430 29724 27268 25987 Face 4431 26208 16711 27495 Face 4432 17459 25960 29336 Face 4433 18969 20803 18446 Face 4434 29785 26876 29337 Face 4435 28693 28011 28012 Face 4436 31366 31365 31262 Face 4437 26301 26811 27505 Face 4438 33155 2813 2946 Face 4439 33871 33998 33870 Face 4440 3084 3083 2946 Face 4441 2947 3084 2946 Face 4442 3219 3218 3083 Face 4443 3084 3219 3083 Face 4444 3346 3345 3218 Face 4445 3219 3346 3218 Face 4446 3346 3474 3473 Face 4447 3345 3346 3473 Face 4448 3474 3603 3602 Face 4449 3473 3474 3602 Face 4450 3603 3733 3732 Face 4451 3602 3603 3732 Face 4452 3733 3866 3865 Face 4453 3732 3733 3865 Face 4454 3866 3994 3993 Face 4455 3865 3866 3993 Face 4456 4123 4122 3993 Face 4457 3994 4123 3993 Face 4458 4123 4252 4251 Face 4459 4122 4123 4251 Face 4460 4252 4378 4377 Face 4461 4251 4252 4377 Face 4462 4378 4509 4508 Face 4463 4377 4378 4508 Face 4464 4640 4639 4508 Face 4465 4509 4640 4508 Face 4466 4640 4771 4770 Face 4467 4639 4640 4770 Face 4468 4771 4904 4903 Face 4469 4770 4771 4903 Face 4470 4904 5037 5036 Face 4471 4903 4904 5036 Face 4472 5037 5163 5162 Face 4473 5036 5037 5162 Face 4474 5163 5291 5290 Face 4475 5162 5163 5290 Face 4476 5291 5421 5420 Face 4477 5290 5291 5420 Face 4478 5421 5548 5547 Face 4479 5420 5421 5547 Face 4480 5548 5674 5673 Face 4481 5547 5548 5673 Face 4482 5674 5799 5798 Face 4483 5673 5674 5798 Face 4484 5799 5927 5926 Face 4485 5798 5799 5926 Face 4486 6054 6053 5926 Face 4487 5927 6054 5926 Face 4488 6180 6179 6053 Face 4489 6054 6180 6053 Face 4490 6180 6300 6299 Face 4491 6179 6180 6299 Face 4492 6300 6422 6421 Face 4493 6299 6300 6421 Face 4494 6422 6547 6546 Face 4495 6421 6422 6546 Face 4496 10640 6140 6144 Face 4497 6546 6547 6140 Face 4498 1629 1630 1738 Face 4499 1624 1733 1623 Face 4500 10747 12467 12174 Face 4501 1630 1629 1518 Face 4502 620 735 734 Face 4503 13413 13412 13318 Face 4504 2100 2101 2227 Face 4505 619 620 734 Face 4506 5738 5866 5737 Face 4507 1844 1843 1731 Face 4508 2478 2607 2477 Face 4509 4972 5102 5101 Face 4510 4044 4045 4173 Face 4511 1288 1400 1287 Face 4512 6124 6250 6249 Face 4513 1333 409 3411 Face 4514 4562 4694 4693 Face 4515 6250 6369 6249 Face 4516 3398 3399 3527 Face 4517 3527 3528 3656 Face 4518 312 3958 3297 Face 4519 4693 4694 4824 Face 4520 5216 5215 5093 Face 4521 6110 6236 6235 Face 4522 3700 3541 3412 Face 4523 2621 2231 2104 Face 4524 3540 2620 2621 Face 4525 4689 4690 4820 Face 4526 1290 1402 1289 Face 4527 1181 1182 1289 Face 4528 2747 2746 2615 Face 4529 1772 1771 1665 Face 4530 4307 4308 4433 Face 4531 1519 1630 1518 Face 4532 3412 2624 3797 Face 4533 1185 1293 1184 Face 4534 5221 5222 5353 Face 4535 5481 5480 5353 Face 4536 1543 34329 34493 Face 4537 2396 2526 2525 Face 4538 2350 2479 2349 Face 4539 1291 1403 1290 Face 4540 24109 977 1459 Face 4541 5363 5364 5490 Face 4542 5231 5232 5363 Face 4543 5108 5109 5231 Face 4544 1516 1515 1402 Face 4545 5109 5232 5231 Face 4546 2018 2019 2143 Face 4547 5232 5364 5363 Face 4548 12163 12250 12162 Face 4549 5606 5605 5476 Face 4550 4844 4845 4977 Face 4551 27457 27577 27576 Face 4552 3320 3319 4458 Face 4553 19717 19799 19798 Face 4554 34306 34564 34655 Face 4555 12930 9286 7630 Face 4556 30025 30026 30087 Face 4557 22118 22117 22019 Face 4558 12129 12214 12213 Face 4559 15042 22223 13286 Face 4560 12740 12739 12823 Face 4561 1669 1775 1668 Face 4562 1891 1890 1774 Face 4563 4845 4978 4977 Face 4564 4977 4978 5108 Face 4565 242 241 143 Face 4566 142 240 141 Face 4567 347 346 241 Face 4568 242 347 241 Face 4569 347 455 454 Face 4570 346 347 454 Face 4571 11237 11236 11168 Face 4572 31015 31111 31014 Face 4573 34300 34325 34652 Face 4574 34319 34713 34302 Face 4575 4458 8937 14637 Face 4576 1775 1891 1774 Face 4577 15213 15214 15349 Face 4578 15350 15490 15489 Face 4579 3174 15461 5780 Face 4580 14270 15399 15394 Face 4581 15459 14741 3174 Face 4582 15461 14270 5780 Face 4583 5267 14741 15459 Face 4584 15602 5267 15459 Face 4585 1354 16084 15602 Face 4586 14741 15461 3174 Face 4587 17275 17276 17366 Face 4588 16204 2978 5270 Face 4589 4241 4240 4112 Face 4590 28127 28264 28126 Face 4591 25768 25769 25875 Face 4592 13002 27268 29724 Face 4593 28398 28397 28263 Face 4594 28011 27623 16660 Face 4595 24219 24220 29490 Face 4596 26356 16710 26763 Face 4597 28146 28147 28158 Face 4598 17379 29733 6651 Face 4599 28156 27887 28550 Face 4600 25731 25842 25841 Face 4601 34670 34324 34677 Face 4602 25842 23610 25841 Face 4603 25730 25731 25841 Face 4604 2948 3085 3084 Face 4605 32782 32781 27603 Face 4606 3220 3219 3084 Face 4607 3085 3220 3084 Face 4608 3347 3346 3219 Face 4609 3220 3347 3219 Face 4610 3475 3474 3346 Face 4611 3347 3475 3346 Face 4612 3604 3603 3474 Face 4613 3475 3604 3474 Face 4614 3604 3734 3733 Face 4615 3603 3604 3733 Face 4616 3734 3867 3866 Face 4617 3733 3734 3866 Face 4618 3867 3995 3994 Face 4619 3866 3867 3994 Face 4620 3995 4124 4123 Face 4621 3994 3995 4123 Face 4622 4253 4252 4123 Face 4623 4124 4253 4123 Face 4624 4379 4378 4252 Face 4625 4253 4379 4252 Face 4626 4510 4509 4378 Face 4627 4379 4510 4378 Face 4628 4641 4640 4509 Face 4629 4510 4641 4509 Face 4630 4641 4772 4771 Face 4631 4640 4641 4771 Face 4632 4772 4905 4904 Face 4633 4771 4772 4904 Face 4634 4905 5038 5037 Face 4635 4904 4905 5037 Face 4636 5038 5164 5163 Face 4637 5037 5038 5163 Face 4638 5164 5292 5291 Face 4639 5163 5164 5291 Face 4640 5292 5422 5421 Face 4641 5291 5292 5421 Face 4642 5422 5549 5548 Face 4643 5421 5422 5548 Face 4644 5549 5675 5674 Face 4645 5548 5549 5674 Face 4646 5675 5800 5799 Face 4647 5674 5675 5799 Face 4648 5800 5928 5927 Face 4649 5799 5800 5927 Face 4650 5928 6055 6054 Face 4651 5927 5928 6054 Face 4652 6181 6180 6054 Face 4653 6055 6181 6054 Face 4654 6301 6300 6180 Face 4655 6181 6301 6180 Face 4656 6301 6423 6422 Face 4657 6300 6301 6422 Face 4658 6423 6548 6547 Face 4659 6422 6423 6547 Face 4660 6148 6549 6263 Face 4661 6547 6548 6144 Face 4662 1845 1844 1732 Face 4663 1180 1288 1287 Face 4664 6352 6351 6231 Face 4665 1066 1067 1179 Face 4666 3269 3268 3134 Face 4667 2997 2998 3134 Face 4668 5104 5227 5226 Face 4669 10578 5103 5102 Face 4670 5227 5359 5358 Face 4671 5226 5227 5358 Face 4672 5615 5740 5739 Face 4673 5614 5615 5739 Face 4674 5868 5996 5995 Face 4675 5867 5868 5995 Face 4676 3525 3654 3524 Face 4677 6123 6124 6249 Face 4678 16718 26445 27357 Face 4679 6356 6357 6478 Face 4680 28232 28366 21318 Face 4681 1111 1112 1221 Face 4682 1526 1525 1412 Face 4683 426 746 425 Face 4684 1104 1105 7550 Face 4685 18954 18773 2291 Face 4686 4088 3540 3541 Face 4687 180 3700 3412 Face 4688 4846 4845 4713 Face 4689 3700 4088 3541 Face 4690 2009 2010 2134 Face 4691 1068 1069 1181 Face 4692 2742 2869 2741 Face 4693 8618 2260 2261 Face 4694 2874 2747 9222 Face 4695 5739 5867 5866 Face 4696 6127 6128 6253 Face 4697 3009 3010 3146 Face 4698 10885 4712 215 Face 4699 6472 6471 6349 Face 4700 4450 4582 10762 Face 4701 4713 4845 4844 Face 4702 2012 2011 1890 Face 4703 1891 2012 1890 Face 4704 2137 2136 2011 Face 4705 2012 2137 2011 Face 4706 2262 2261 2136 Face 4707 2137 2262 2136 Face 4708 2389 2388 2261 Face 4709 2262 2389 2261 Face 4710 4583 4713 4712 Face 4711 2519 2518 2388 Face 4712 121 4331 183 Face 4713 8827 2517 2518 Face 4714 2389 2519 2388 Face 4715 4325 4451 4450 Face 4716 2519 2651 2650 Face 4717 12740 12017 12739 Face 4718 40 637 18133 Face 4719 34607 34625 34537 Face 4720 22779 23678 25022 Face 4721 1765 36 12853 Face 4722 2900 12925 11299 Face 4723 11484 11562 11483 Face 4724 11640 11639 11561 Face 4725 2518 2519 2650 Face 4726 657 4447 1880 Face 4727 5619 10580 5743 Face 4728 4045 4174 4173 Face 4729 27456 27457 27576 Face 4730 5857 5858 5985 Face 4731 243 347 242 Face 4732 144 7038 242 Face 4733 348 456 455 Face 4734 347 348 455 Face 4735 34446 34306 34295 Face 4736 19853 14372 19772 Face 4737 4978 5109 5108 Face 4738 14930 5210 5003 Face 4739 677 793 792 Face 4740 2780 2651 2330 Face 4741 27577 27704 27703 Face 4742 5263 236 16051 Face 4743 14796 14296 16403 Face 4744 1805 15821 14189 Face 4745 15324 13981 133 Face 4746 13869 13885 13868 Face 4747 22764 23294 23957 Face 4748 1783 15359 15497 Face 4749 14138 14240 14137 Face 4750 14350 14468 14349 Face 4751 1618 1726 1617 Face 4752 2715 14280 15361 Face 4753 16851 16774 16775 Face 4754 16852 16851 16775 Face 4755 26811 13002 29724 Face 4756 28264 28398 28263 Face 4757 33230 33229 33094 Face 4758 27268 18448 25987 Face 4759 30520 30605 30519 Face 4760 24598 26556 27446 Face 4761 16710 27265 27264 Face 4762 26872 25492 2809 Face 4763 25656 27891 29781 Face 4764 27264 27265 21073 Face 4765 29750 25656 29781 Face 4766 3588 20888 27891 Face 4767 29062 29066 19199 Face 4768 34766 34327 34291 Face 4769 33278 2949 2948 Face 4770 3084 2947 2948 Face 4771 3086 3221 3220 Face 4772 3085 3086 3220 Face 4773 3348 3347 3220 Face 4774 3221 3348 3220 Face 4775 3476 3475 3347 Face 4776 3348 3476 3347 Face 4777 3605 3604 3475 Face 4778 3476 3605 3475 Face 4779 3735 3734 3604 Face 4780 3605 3735 3604 Face 4781 3868 3867 3734 Face 4782 3735 3868 3734 Face 4783 3996 3995 3867 Face 4784 3868 3996 3867 Face 4785 3996 4125 4124 Face 4786 3995 3996 4124 Face 4787 4254 4253 4124 Face 4788 4125 4254 4124 Face 4789 4380 4379 4253 Face 4790 4254 4380 4253 Face 4791 4511 4510 4379 Face 4792 4380 4511 4379 Face 4793 4511 4642 4641 Face 4794 4510 4511 4641 Face 4795 4642 4773 4772 Face 4796 4641 4642 4772 Face 4797 4773 4906 4905 Face 4798 4772 4773 4905 Face 4799 4906 5039 5038 Face 4800 4905 4906 5038 Face 4801 5039 5165 5164 Face 4802 5038 5039 5164 Face 4803 5165 5293 5292 Face 4804 5164 5165 5292 Face 4805 5293 5423 5422 Face 4806 5292 5293 5422 Face 4807 5423 5550 5549 Face 4808 5422 5423 5549 Face 4809 5550 5676 5675 Face 4810 5549 5550 5675 Face 4811 5676 5801 5800 Face 4812 5675 5676 5800 Face 4813 5801 5929 5928 Face 4814 5800 5801 5928 Face 4815 5929 6056 6055 Face 4816 5928 5929 6055 Face 4817 6056 6182 6181 Face 4818 6055 6056 6181 Face 4819 6182 6302 6301 Face 4820 6181 6182 6301 Face 4821 6302 6424 6423 Face 4822 6301 6302 6423 Face 4823 6424 6549 6548 Face 4824 6423 6424 6548 Face 4825 9412 10887 6148 Face 4826 6548 6549 6148 Face 4827 844 958 957 Face 4828 4172 4173 4302 Face 4829 727 728 843 Face 4830 843 844 957 Face 4831 2999 3136 3135 Face 4832 2219 2347 2346 Face 4833 1112 1222 1221 Face 4834 4573 4705 4704 Face 4835 3396 3395 3267 Face 4836 3139 3273 3272 Face 4837 5851 5979 5978 Face 4838 623 738 622 Face 4839 5848 5849 5976 Face 4840 4429 4559 4558 Face 4841 3421 3550 3544 Face 4842 2736 2863 2735 Face 4843 11771 11854 38 Face 4844 2633 1863 2632 Face 4845 13185 13570 13475 Face 4846 5086 5085 4956 Face 4847 11877 11961 11876 Face 4848 1075 1188 1187 Face 4849 1908 4088 3700 Face 4850 1963 1964 2089 Face 4851 4979 4978 4845 Face 4852 1907 1908 3700 Face 4853 4056 10383 4185 Face 4854 4714 4846 4713 Face 4855 962 1072 961 Face 4856 2347 2476 2475 Face 4857 2874 9334 3010 Face 4858 2496 3809 3678 Face 4859 5742 5743 5870 Face 4860 5478 5477 5350 Face 4861 1624 1623 1512 Face 4862 6254 6373 6372 Face 4863 13222 13221 15243 Face 4864 9501 9617 7380 Face 4865 2716 2780 5197 Face 4866 5735 5734 5609 Face 4867 34276 34377 34322 Face 4868 5878 1999 1988 Face 4869 5610 5735 5609 Face 4870 1518 1629 1517 Face 4871 1850 1970 1969 Face 4872 2351 2480 2350 Face 4873 4716 4848 4847 Face 4874 2222 2221 2094 Face 4875 12788 12787 12697 Face 4876 11246 11245 11176 Face 4877 12698 12788 12697 Face 4878 12881 12880 12787 Face 4879 11841 11929 12185 Face 4880 15000 4187 4071 Face 4881 5507 1659 3827 Face 4882 11597 11692 12474 Face 4883 15313 10817 12258 Face 4884 5104 5105 5227 Face 4885 842 843 956 Face 4886 3917 4045 3916 Face 4887 1400 1513 1399 Face 4888 5994 5993 5865 Face 4889 294 399 398 Face 4890 12043 12044 12130 Face 4891 5859 5987 5986 Face 4892 7148 7255 349 Face 4893 348 349 456 Face 4894 6105 6231 6230 Face 4895 26190 34456 34403 Face 4896 34652 34319 34302 Face 4897 4712 4713 4844 Face 4898 678 794 793 Face 4899 677 678 793 Face 4900 910 909 793 Face 4901 794 910 793 Face 4902 2493 15934 15360 Face 4903 4447 2712 1880 Face 4904 16213 16222 13950 Face 4905 5523 5524 1539 Face 4906 2171 2043 2172 Face 4907 33418 12829 3465 Face 4908 28551 26564 20620 Face 4909 16714 27496 18358 Face 4910 29801 28551 20620 Face 4911 25637 2809 26564 Face 4912 29145 28634 21073 Face 4913 27634 27764 19000 Face 4914 26906 18129 6797 Face 4915 27265 28160 21073 Face 4916 29733 27273 28889 Face 4917 33495 33494 33361 Face 4918 25752 25753 25859 Face 4919 26553 26554 26669 Face 4920 6290 24263 1114 Face 4921 30564 30563 30478 Face 4922 3087 3222 3221 Face 4923 3086 3087 3221 Face 4924 3222 3349 3348 Face 4925 3221 3222 3348 Face 4926 3349 3477 3476 Face 4927 3348 3349 3476 Face 4928 3606 3605 3476 Face 4929 3477 3606 3476 Face 4930 3736 3735 3605 Face 4931 3606 3736 3605 Face 4932 3869 3868 3735 Face 4933 3736 3869 3735 Face 4934 3997 3996 3868 Face 4935 3869 3997 3868 Face 4936 3997 4126 4125 Face 4937 3996 3997 4125 Face 4938 4255 4254 4125 Face 4939 4126 4255 4125 Face 4940 4381 4380 4254 Face 4941 4255 4381 4254 Face 4942 4512 4511 4380 Face 4943 4381 4512 4380 Face 4944 4512 4643 4642 Face 4945 4511 4512 4642 Face 4946 4643 4774 4773 Face 4947 4642 4643 4773 Face 4948 4774 4907 4906 Face 4949 4773 4774 4906 Face 4950 5040 5039 4906 Face 4951 4907 5040 4906 Face 4952 5166 5165 5039 Face 4953 5040 5166 5039 Face 4954 5294 5293 5165 Face 4955 5166 5294 5165 Face 4956 5424 5423 5293 Face 4957 5294 5424 5293 Face 4958 5424 5551 5550 Face 4959 5423 5424 5550 Face 4960 5551 5677 5676 Face 4961 5550 5551 5676 Face 4962 5677 5802 5801 Face 4963 5676 5677 5801 Face 4964 5802 5930 5929 Face 4965 5801 5802 5929 Face 4966 5930 6057 6056 Face 4967 5929 5930 6056 Face 4968 6057 6183 6182 Face 4969 6056 6057 6182 Face 4970 6183 6303 6302 Face 4971 6182 6183 6302 Face 4972 6425 6424 6302 Face 4973 6303 6425 6302 Face 4974 6550 6549 6424 Face 4975 6425 6550 6424 Face 4976 6550 6264 6263 Face 4977 6549 6550 6263 Face 4978 294 295 399 Face 4979 27576 27577 27703 Face 4980 13223 13224 13316 Face 4981 3422 2631 5873 Face 4982 1853 1973 1852 Face 4983 2742 2743 2869 Face 4984 4963 4964 5093 Face 4985 26880 26993 26879 Face 4986 5612 5613 5737 Face 4987 5866 5865 5737 Face 4988 965 964 850 Face 4989 5752 1416 1417 Face 4990 5228 5105 5106 Face 4991 1971 2097 1970 Face 4992 6492 1908 1907 Face 4993 12809 11614 8031 Face 4994 6370 6492 6491 Face 4995 6491 6492 1907 Face 4996 5868 5869 5996 Face 4997 6369 6370 6491 Face 4998 5740 5741 5868 Face 4999 5997 6125 6124 Face 5000 5110 5233 5232 Face 5001 5869 5997 5996 Face 5002 6375 6376 6497 Face 5003 4846 4979 4845 Face 5004 1293 1405 1292 Face 5005 6137 13481 10619 Face 5006 5987 6115 6114 Face 5007 2353 2482 2352 Face 5008 25993 11182 11120 Face 5009 5351 5478 5350 Face 5010 5870 5998 5997 Face 5011 5870 5871 5998 Face 5012 17053 16676 25584 Face 5013 5487 5488 5616 Face 5014 33233 33369 33232 Face 5015 507 616 615 Face 5016 506 507 615 Face 5017 11559 11637 11558 Face 5018 3924 3923 3791 Face 5019 3662 3661 3532 Face 5020 3792 3791 3661 Face 5021 3533 3532 3403 Face 5022 2096 2223 2222 Face 5023 1629 1738 1737 Face 5024 1969 1970 2095 Face 5025 5741 5742 5869 Face 5026 2095 2096 2222 Face 5027 13127 12268 12118 Face 5028 3029 13121 2749 Face 5029 34652 34302 34826 Face 5030 10011 12823 12556 Face 5031 12095 12295 12010 Face 5032 19658 19741 19657 Face 5033 17541 18258 19201 Face 5034 11948 11928 6010 Face 5035 12361 12725 3189 Face 5036 11692 13112 12474 Face 5037 26174 26175 26292 Face 5038 3005 3142 3141 Face 5039 1072 1185 1071 Face 5040 6109 5981 5982 Face 5041 5742 5870 5869 Face 5042 2364 2245 2118 Face 5043 6248 6247 6121 Face 5044 4181 4311 4310 Face 5045 4437 4567 4566 Face 5046 958 1068 1067 Face 5047 2490 21653 19703 Face 5048 565 678 7474 Face 5049 7259 6132 6131 Face 5050 566 679 678 Face 5051 565 566 678 Face 5052 679 795 794 Face 5053 678 679 794 Face 5054 1977 2104 2248 Face 5055 7702 796 912 Face 5056 910 794 7702 Face 5057 14130 14232 14129 Face 5058 14232 14342 14341 Face 5059 14231 14232 14341 Face 5060 14342 14460 14459 Face 5061 14341 14342 14459 Face 5062 14460 14578 14577 Face 5063 14459 14460 14577 Face 5064 14699 14698 14577 Face 5065 14578 14699 14577 Face 5066 14724 15042 13286 Face 5067 3424 10988 3763 Face 5068 21554 21555 22223 Face 5069 20530 13124 13479 Face 5070 15042 21554 22223 Face 5071 14120 16529 16365 Face 5072 1799 9086 10713 Face 5073 21554 14642 22425 Face 5074 13950 14120 16365 Face 5075 2172 2044 2173 Face 5076 32951 33085 32950 Face 5077 25656 3588 27891 Face 5078 28551 25637 26564 Face 5079 28087 29648 29782 Face 5080 25482 29782 20888 Face 5081 21854 28420 22434 Face 5082 16194 13857 10841 Face 5083 6639 25032 6810 Face 5084 26763 16710 27264 Face 5085 25650 23857 25752 Face 5086 34307 12990 8441 Face 5087 18871 29614 23380 Face 5088 24466 24427 27517 Face 5089 30869 30868 30762 Face 5090 18444 26902 28287 Face 5091 3088 3223 3222 Face 5092 3087 3088 3222 Face 5093 3223 3350 3349 Face 5094 3222 3223 3349 Face 5095 3350 3478 3477 Face 5096 3349 3350 3477 Face 5097 3607 3606 3477 Face 5098 3478 3607 3477 Face 5099 3737 3736 3606 Face 5100 3607 3737 3606 Face 5101 3870 3869 3736 Face 5102 3737 3870 3736 Face 5103 3998 3997 3869 Face 5104 3870 3998 3869 Face 5105 3998 4127 4126 Face 5106 3997 3998 4126 Face 5107 4256 4255 4126 Face 5108 4127 4256 4126 Face 5109 4382 4381 4255 Face 5110 4256 4382 4255 Face 5111 4513 4512 4381 Face 5112 4382 4513 4381 Face 5113 4513 4644 4643 Face 5114 4512 4513 4643 Face 5115 4775 4774 4643 Face 5116 4644 4775 4643 Face 5117 4775 4908 4907 Face 5118 4774 4775 4907 Face 5119 5041 5040 4907 Face 5120 4908 5041 4907 Face 5121 5167 5166 5040 Face 5122 5041 5167 5040 Face 5123 5295 5294 5166 Face 5124 5167 5295 5166 Face 5125 5425 5424 5294 Face 5126 5295 5425 5294 Face 5127 5552 5551 5424 Face 5128 5425 5552 5424 Face 5129 5678 5677 5551 Face 5130 5552 5678 5551 Face 5131 5678 5803 5802 Face 5132 5677 5678 5802 Face 5133 5803 5931 5930 Face 5134 5802 5803 5930 Face 5135 5931 6058 6057 Face 5136 5930 5931 6057 Face 5137 6058 6184 6183 Face 5138 6057 6058 6183 Face 5139 6184 6304 6303 Face 5140 6183 6184 6303 Face 5141 6304 6426 6425 Face 5142 6303 6304 6425 Face 5143 6426 6551 6550 Face 5144 6425 6426 6550 Face 5145 6551 6265 6264 Face 5146 6550 6551 6264 Face 5147 7811 909 18437 Face 5148 34721 34393 34429 Face 5149 2860 2861 2996 Face 5150 1973 1972 1852 Face 5151 2485 2614 2613 Face 5152 2227 2228 2355 Face 5153 12809 10446 13112 Face 5154 511 620 619 Face 5155 301 6875 406 Face 5156 8992 9298 2624 Face 5157 5996 5997 6124 Face 5158 6125 6251 6250 Face 5159 6251 6370 6369 Face 5160 6124 6125 6250 Face 5161 1558 1667 1557 Face 5162 6250 6251 6369 Face 5163 5232 5233 5364 Face 5164 1403 1402 1290 Face 5165 1182 1183 1290 Face 5166 34413 34749 34598 Face 5167 34332 34816 34378 Face 5168 3019 3023 3022 Face 5169 6256 6257 6375 Face 5170 5109 5110 5232 Face 5171 1404 1403 1291 Face 5172 6376 6498 6497 Face 5173 4310 4311 4436 Face 5174 2743 2870 2869 Face 5175 11642 11721 11641 Face 5176 5474 5603 5602 Face 5177 4696 4827 4826 Face 5178 2745 2872 2871 Face 5179 4563 4564 4695 Face 5180 849 963 962 Face 5181 3004 3005 3141 Face 5182 2734 2861 2860 Face 5183 4969 5099 5098 Face 5184 4183 4184 4313 Face 5185 4451 4583 4582 Face 5186 6482 6483 1098 Face 5187 3281 3409 3408 Face 5188 6479 887 862 Face 5189 6487 6488 1790 Face 5190 5617 5742 5741 Face 5191 274 5760 3443 Face 5192 13228 13321 13227 Face 5193 5247 274 5377 Face 5194 640 3443 5760 Face 5195 5247 15183 15970 Face 5196 3443 5377 274 Face 5197 13227 13320 13226 Face 5198 29204 20816 34560 Face 5199 12631 11692 11597 Face 5200 9630 10845 13768 Face 5201 1315 12741 12185 Face 5202 11805 11804 11722 Face 5203 3410 3282 9678 Face 5204 4307 4433 4432 Face 5205 1554 1553 1439 Face 5206 1440 1554 1439 Face 5207 630 437 6474 Face 5208 739 855 738 Face 5209 34418 34503 34502 Face 5210 13225 13226 13318 Face 5211 1075 1074 964 Face 5212 508 509 617 Face 5213 458 567 566 Face 5214 565 457 566 Face 5215 567 680 679 Face 5216 566 567 679 Face 5217 5616 5617 5741 Face 5218 6393 15742 16536 Face 5219 8633 8634 8738 Face 5220 5357 5484 5483 Face 5221 5148 17146 5021 Face 5222 912 1021 911 Face 5223 20816 20119 20118 Face 5224 1227 871 872 Face 5225 16222 14120 13950 Face 5226 3116 14597 14592 Face 5227 644 16084 1354 Face 5228 16084 5267 15602 Face 5229 16587 4354 2176 Face 5230 2176 644 1354 Face 5231 3944 1431 16587 Face 5232 4354 644 2176 Face 5233 16265 15457 3944 Face 5234 1431 4354 16587 Face 5235 16529 15457 16265 Face 5236 16365 16529 16265 Face 5237 34771 34794 34338 Face 5238 15457 1431 3944 Face 5239 14146 23 15820 Face 5240 21555 21554 22425 Face 5241 2043 2044 2172 Face 5242 34784 34807 34528 Face 5243 27019 27696 27383 Face 5244 3588 25482 20888 Face 5245 20283 2552 29750 Face 5246 6651 29733 28889 Face 5247 27981 27980 27848 Face 5248 25729 25730 25840 Face 5249 20954 27700 27830 Face 5250 34403 28500 26190 Face 5251 24758 25161 23857 Face 5252 19080 18760 18761 Face 5253 22760 22761 28028 Face 5254 27014 28633 27131 Face 5255 2952 3089 3088 Face 5256 33220 33219 33084 Face 5257 3089 3224 3223 Face 5258 3088 3089 3223 Face 5259 3224 3351 3350 Face 5260 3223 3224 3350 Face 5261 3351 3479 3478 Face 5262 3350 3351 3478 Face 5263 3479 3608 3607 Face 5264 3478 3479 3607 Face 5265 3608 3738 3737 Face 5266 3607 3608 3737 Face 5267 3871 3870 3737 Face 5268 3738 3871 3737 Face 5269 3871 3999 3998 Face 5270 3870 3871 3998 Face 5271 4128 4127 3998 Face 5272 3999 4128 3998 Face 5273 4257 4256 4127 Face 5274 4128 4257 4127 Face 5275 4257 4383 4382 Face 5276 4256 4257 4382 Face 5277 4383 4514 4513 Face 5278 4382 4383 4513 Face 5279 4514 4645 4644 Face 5280 4513 4514 4644 Face 5281 4645 4776 4775 Face 5282 4644 4645 4775 Face 5283 4776 4909 4908 Face 5284 4775 4776 4908 Face 5285 5042 5041 4908 Face 5286 4909 5042 4908 Face 5287 5168 5167 5041 Face 5288 5042 5168 5041 Face 5289 5296 5295 5167 Face 5290 5168 5296 5167 Face 5291 5426 5425 5295 Face 5292 5296 5426 5295 Face 5293 5553 5552 5425 Face 5294 5426 5553 5425 Face 5295 5679 5678 5552 Face 5296 5553 5679 5552 Face 5297 5679 5804 5803 Face 5298 5678 5679 5803 Face 5299 5804 5932 5931 Face 5300 5803 5804 5931 Face 5301 5932 6059 6058 Face 5302 5931 5932 6058 Face 5303 6059 6185 6184 Face 5304 6058 6059 6184 Face 5305 6305 6304 6184 Face 5306 6185 6305 6184 Face 5307 6427 6426 6304 Face 5308 6305 6427 6304 Face 5309 6552 6551 6426 Face 5310 6427 6552 6426 Face 5311 6552 6272 6265 Face 5312 6551 6552 6265 Face 5313 1306 9187 4322 Face 5314 29204 34727 34279 Face 5315 6128 6254 6253 Face 5316 1623 1732 1622 Face 5317 1199 3013 2625 Face 5318 299 404 403 Face 5319 5359 5360 5486 Face 5320 5487 5616 5615 Face 5321 5616 5741 5740 Face 5322 5486 5487 5615 Face 5323 5741 5869 5868 Face 5324 5615 5616 5740 Face 5325 8002 9506 5725 Face 5326 5348 5475 15466 Face 5327 34709 34312 34285 Face 5328 2222 2350 2221 Face 5329 4310 4309 4179 Face 5330 4180 4310 4179 Face 5331 1222 1223 1329 Face 5332 4309 4310 4435 Face 5333 4310 4436 4435 Face 5334 862 887 204 Face 5335 729 730 845 Face 5336 6257 6376 6375 Face 5337 34647 34774 34292 Face 5338 1292 1404 1291 Face 5339 6352 6353 6474 Face 5340 10747 12026 12467 Face 5341 1440 1439 1325 Face 5342 1557 1556 1442 Face 5343 2752 2753 5113 Face 5344 1326 1440 1325 Face 5345 4991 16113 14627 Face 5346 4053 4052 3924 Face 5347 1108 1109 1218 Face 5348 1218 1219 1325 Face 5349 4822 4823 4955 Face 5350 1219 1326 1325 Face 5351 1421 1307 2883 Face 5352 5731 5730 5605 Face 5353 34728 34585 34529 Face 5354 6229 6230 6349 Face 5355 746 633 425 Face 5356 1447 1561 1560 Face 5357 7672 1447 1332 Face 5358 1561 1670 1669 Face 5359 1560 1561 1669 Face 5360 1776 1775 1669 Face 5361 1670 1776 1669 Face 5362 1892 1891 1775 Face 5363 9298 8452 4317 Face 5364 1776 1892 1775 Face 5365 3938 9298 4317 Face 5366 4832 4833 4965 Face 5367 3663 3662 3533 Face 5368 4317 200 1905 Face 5369 4843 113 640 Face 5370 30452 11015 25581 Face 5371 113 146 3443 Face 5372 640 113 3443 Face 5373 302 5377 3443 Face 5374 146 302 3443 Face 5375 13783 13784 6262 Face 5376 653 14023 6018 Face 5377 10825 2627 3815 Face 5378 25673 30532 25674 Face 5379 13229 13228 13133 Face 5380 11623 11622 12645 Face 5381 2013 2012 1891 Face 5382 1892 2013 1891 Face 5383 996 1109 1108 Face 5384 995 996 1108 Face 5385 6481 6482 908 Face 5386 6359 6360 6481 Face 5387 12484 12483 12393 Face 5388 17304 16919 17852 Face 5389 5106 5229 5228 Face 5390 7259 6133 6132 Face 5391 459 568 567 Face 5392 7256 7257 458 Face 5393 568 681 680 Face 5394 567 568 680 Face 5395 681 797 796 Face 5396 27704 27833 27832 Face 5397 913 912 796 Face 5398 797 913 796 Face 5399 1022 1021 912 Face 5400 913 1022 912 Face 5401 4807 3116 14592 Face 5402 1135 1244 17813 Face 5403 14597 16222 16213 Face 5404 14592 14597 16213 Face 5405 2284 1214 2158 Face 5406 34570 34618 34731 Face 5407 14142 14143 14244 Face 5408 581 14026 2931 Face 5409 14249 14248 5515 Face 5410 13939 14672 14076 Face 5411 14096 14159 5902 Face 5412 864 932 4095 Face 5413 11291 19595 14490 Face 5414 3335 14917 13961 Face 5415 34411 34520 34809 Face 5416 11516 11354 13081 Face 5417 3203 3069 1433 Face 5418 14458 14576 14575 Face 5419 1945 1944 4155 Face 5420 2146 2410 2281 Face 5421 18468 2173 2044 Face 5422 32839 32971 32838 Face 5423 32256 32255 32151 Face 5424 2174 2173 18468 Face 5425 27849 27981 27848 Face 5426 23838 25981 23953 Face 5427 28523 28524 28658 Face 5428 28686 34308 34819 Face 5429 18318 27363 18354 Face 5430 23783 24427 24466 Face 5431 28095 28232 21227 Face 5432 27363 26089 26088 Face 5433 3090 3089 2952 Face 5434 31887 16788 31774 Face 5435 3225 3224 3089 Face 5436 3090 3225 3089 Face 5437 3225 3352 3351 Face 5438 3224 3225 3351 Face 5439 3352 3480 3479 Face 5440 3351 3352 3479 Face 5441 3480 3609 3608 Face 5442 3479 3480 3608 Face 5443 3739 3738 3608 Face 5444 3609 3739 3608 Face 5445 3872 3871 3738 Face 5446 3739 3872 3738 Face 5447 4000 3999 3871 Face 5448 3872 4000 3871 Face 5449 4000 4129 4128 Face 5450 3999 4000 4128 Face 5451 4129 4258 4257 Face 5452 4128 4129 4257 Face 5453 4258 4384 4383 Face 5454 4257 4258 4383 Face 5455 4384 4515 4514 Face 5456 4383 4384 4514 Face 5457 4515 4646 4645 Face 5458 4514 4515 4645 Face 5459 4646 4777 4776 Face 5460 4645 4646 4776 Face 5461 4777 4910 4909 Face 5462 4776 4777 4909 Face 5463 5043 5042 4909 Face 5464 4910 5043 4909 Face 5465 5169 5168 5042 Face 5466 5043 5169 5042 Face 5467 5169 5297 5296 Face 5468 5168 5169 5296 Face 5469 5427 5426 5296 Face 5470 5297 5427 5296 Face 5471 5554 5553 5426 Face 5472 5427 5554 5426 Face 5473 5554 5680 5679 Face 5474 5553 5554 5679 Face 5475 5680 5805 5804 Face 5476 5679 5680 5804 Face 5477 5933 5932 5804 Face 5478 5805 5933 5804 Face 5479 6060 6059 5932 Face 5480 5933 6060 5932 Face 5481 6186 6185 6059 Face 5482 6060 6186 6059 Face 5483 6306 6305 6185 Face 5484 6186 6306 6185 Face 5485 6428 6427 6305 Face 5486 6306 6428 6305 Face 5487 6428 6553 6552 Face 5488 6427 6428 6552 Face 5489 6553 6285 6272 Face 5490 6552 6553 6272 Face 5491 13137 13232 13136 Face 5492 6285 1306 6272 Face 5493 1645 1541 1529 Face 5494 1399 1512 1398 Face 5495 734 735 850 Face 5496 510 511 619 Face 5497 5227 5228 5359 Face 5498 5360 5487 5486 Face 5499 6375 6497 6496 Face 5500 6374 6375 6496 Face 5501 9392 34606 11696 Face 5502 1322 3019 3020 Face 5503 763 880 879 Face 5504 2479 2478 2349 Face 5505 887 1322 204 Face 5506 2350 2349 2221 Face 5507 4824 4825 4957 Face 5508 2603 2604 2734 Face 5509 4575 10755 4576 Face 5510 2604 2735 2734 Face 5511 3398 3527 3526 Face 5512 1402 1515 1401 Face 5513 12049 12048 11963 Face 5514 13420 13419 13325 Face 5515 507 508 616 Face 5516 12394 12484 12393 Face 5517 32511 766 32510 Face 5518 6111 6237 6236 Face 5519 2138 2137 2012 Face 5520 884 996 995 Face 5521 2013 2138 2012 Face 5522 2263 2262 2137 Face 5523 2138 2263 2137 Face 5524 2390 2389 2262 Face 5525 767 884 883 Face 5526 2263 2390 2262 Face 5527 2520 2519 2389 Face 5528 2390 2520 2389 Face 5529 2652 2651 2519 Face 5530 1109 1219 1218 Face 5531 1113 1223 1222 Face 5532 18451 6809 34464 Face 5533 5612 5737 5611 Face 5534 1287 1399 1398 Face 5535 5737 5736 5611 Face 5536 4966 5096 5095 Face 5537 402 511 401 Face 5538 3284 3150 3673 Face 5539 21260 21353 21259 Face 5540 4180 4181 4310 Face 5541 5357 5358 5484 Face 5542 6498 2360 2028 Face 5543 5731 5859 5730 Face 5544 10731 3810 4843 Face 5545 4843 530 8653 Face 5546 5881 275 146 Face 5547 113 5881 146 Face 5548 275 5503 302 Face 5549 146 275 302 Face 5550 14023 653 5891 Face 5551 5503 653 302 Face 5552 30120 11024 30183 Face 5553 7919 12933 12930 Face 5554 12645 12646 11142 Face 5555 32566 32565 32448 Face 5556 7810 7049 3054 Face 5557 2520 2652 2519 Face 5558 16987 16986 16895 Face 5559 4715 4716 4847 Face 5560 392 499 391 Face 5561 4572 4704 4703 Face 5562 616 617 731 Face 5563 13482 9082 13576 Face 5564 14800 16525 1417 Face 5565 9568 9569 9683 Face 5566 25674 30532 25675 Face 5567 460 569 568 Face 5568 459 460 568 Face 5569 569 682 681 Face 5570 568 569 681 Face 5571 682 798 797 Face 5572 681 682 797 Face 5573 914 913 797 Face 5574 798 914 797 Face 5575 1023 1022 913 Face 5576 914 1023 913 Face 5577 1136 1135 1022 Face 5578 1023 1136 1022 Face 5579 22307 22403 22306 Face 5580 17742 1158 17831 Face 5581 13124 11291 14490 Face 5582 21441 21442 21536 Face 5583 34378 34497 34505 Face 5584 14333 1690 1580 Face 5585 21269 22344 22425 Face 5586 3461 15881 15954 Face 5587 14642 21269 22425 Face 5588 20126 20127 20204 Face 5589 14457 14458 14575 Face 5590 14576 14697 14696 Face 5591 5122 3056 5125 Face 5592 14575 14576 14696 Face 5593 3767 1945 4155 Face 5594 1433 5122 5125 Face 5595 34522 34675 34511 Face 5596 1211 3687 1944 Face 5597 16325 16324 16167 Face 5598 14549 16514 13454 Face 5599 14815 14933 14414 Face 5600 16168 16325 16167 Face 5601 14625 14516 15814 Face 5602 14414 14415 16053 Face 5603 14412 14413 15971 Face 5604 16076 16233 16232 Face 5605 29011 29010 28885 Face 5606 18354 27363 26088 Face 5607 3090 2952 2953 Face 5608 29011 29142 29010 Face 5609 3091 3090 2953 Face 5610 2954 3091 2953 Face 5611 3226 3225 3090 Face 5612 3091 3226 3090 Face 5613 3353 3352 3225 Face 5614 3226 3353 3225 Face 5615 3481 3480 3352 Face 5616 3353 3481 3352 Face 5617 3610 3609 3480 Face 5618 3481 3610 3480 Face 5619 3610 3740 3739 Face 5620 3609 3610 3739 Face 5621 3873 3872 3739 Face 5622 3740 3873 3739 Face 5623 4001 4000 3872 Face 5624 3873 4001 3872 Face 5625 4130 4129 4000 Face 5626 4001 4130 4000 Face 5627 4259 4258 4129 Face 5628 4130 4259 4129 Face 5629 4259 4385 4384 Face 5630 4258 4259 4384 Face 5631 4385 4516 4515 Face 5632 4384 4385 4515 Face 5633 4516 4647 4646 Face 5634 4515 4516 4646 Face 5635 4778 4777 4646 Face 5636 4647 4778 4646 Face 5637 4911 4910 4777 Face 5638 4778 4911 4777 Face 5639 4911 5044 5043 Face 5640 4910 4911 5043 Face 5641 5044 5170 5169 Face 5642 5043 5044 5169 Face 5643 5170 5298 5297 Face 5644 5169 5170 5297 Face 5645 5298 5428 5427 Face 5646 5297 5298 5427 Face 5647 5428 5555 5554 Face 5648 5427 5428 5554 Face 5649 5555 5681 5680 Face 5650 5554 5555 5680 Face 5651 5806 5805 5680 Face 5652 5681 5806 5680 Face 5653 5934 5933 5805 Face 5654 5806 5934 5805 Face 5655 6061 6060 5933 Face 5656 5934 6061 5933 Face 5657 6187 6186 6060 Face 5658 6061 6187 6060 Face 5659 6307 6306 6186 Face 5660 6187 6307 6186 Face 5661 6429 6428 6306 Face 5662 6307 6429 6306 Face 5663 6429 6554 6553 Face 5664 6428 6429 6553 Face 5665 6554 6384 6285 Face 5666 6553 6554 6285 Face 5667 6384 629 1306 Face 5668 6285 6384 1306 Face 5669 629 4190 3935 Face 5670 34616 34647 34292 Face 5671 8746 5104 5103 Face 5672 6017 8320 7581 Face 5673 21269 22537 22248 Face 5674 5228 5360 5359 Face 5675 4847 4980 4979 Face 5676 6497 2028 2026 Face 5677 4979 4980 5110 Face 5678 4846 4847 4979 Face 5679 5111 5234 5233 Face 5680 5110 5111 5233 Face 5681 34367 34635 34505 Face 5682 6356 6478 6355 Face 5683 9082 3183 13576 Face 5684 4428 4429 4558 Face 5685 3023 3294 5746 Face 5686 5873 2113 1988 Face 5687 887 892 1322 Face 5688 3294 5873 5746 Face 5689 892 1421 1322 Face 5690 1421 2883 3019 Face 5691 508 617 616 Face 5692 3136 3137 3270 Face 5693 5730 5729 5604 Face 5694 883 884 995 Face 5695 2525 2656 2655 Face 5696 13181 12269 12182 Face 5697 22344 21269 22248 Face 5698 4582 10885 10884 Face 5699 1318 2273 6407 Face 5700 6109 6110 6235 Face 5701 9909 3538 3539 Face 5702 505 614 504 Face 5703 5356 5483 5482 Face 5704 1629 1628 1517 Face 5705 3138 3139 3272 Face 5706 1185 1184 1071 Face 5707 1518 1517 1404 Face 5708 1317 4597 6016 Face 5709 1112 1111 998 Face 5710 5358 5485 5484 Face 5711 293 398 397 Face 5712 4311 4437 4436 Face 5713 6353 6475 6474 Face 5714 2204 2330 2653 Face 5715 3534 3663 3533 Face 5716 6497 6498 2028 Face 5717 3915 3916 4043 Face 5718 4979 5110 5109 Face 5719 9501 7380 2898 Face 5720 4600 276 275 Face 5721 113 3810 5881 Face 5722 276 303 5503 Face 5723 275 276 5503 Face 5724 303 5891 653 Face 5725 5503 303 653 Face 5726 30367 30368 30434 Face 5727 14035 3191 6532 Face 5728 32449 32566 32448 Face 5729 11959 12044 12043 Face 5730 22537 22053 21955 Face 5731 10741 13117 13367 Face 5732 20035 20034 19960 Face 5733 6473 433 6472 Face 5734 2749 13359 416 Face 5735 1405 1518 1404 Face 5736 2611 2742 2610 Face 5737 4048 4177 4176 Face 5738 34808 34703 23930 Face 5739 7258 460 459 Face 5740 5746 5873 1988 Face 5741 354 461 460 Face 5742 353 354 460 Face 5743 461 570 569 Face 5744 460 461 569 Face 5745 570 683 682 Face 5746 569 570 682 Face 5747 799 798 682 Face 5748 683 799 682 Face 5749 915 914 798 Face 5750 799 915 798 Face 5751 1024 1023 914 Face 5752 915 1024 914 Face 5753 1137 1136 1023 Face 5754 1024 1137 1023 Face 5755 1245 17906 17905 Face 5756 1137 1245 1136 Face 5757 7578 15265 18 Face 5758 34356 34492 34768 Face 5759 1384 1497 5250 Face 5760 34292 34774 34288 Face 5761 3175 5400 5250 Face 5762 5400 5399 5250 Face 5763 5399 5400 3203 Face 5764 5400 3069 3203 Face 5765 3056 2146 546 Face 5766 3069 5122 1433 Face 5767 1945 1211 1944 Face 5768 5125 3056 546 Face 5769 2178 1832 4483 Face 5770 5397 3585 3687 Face 5771 16486 16485 16324 Face 5772 11383 12563 34593 Face 5773 2154 2280 14815 Face 5774 16325 16486 16324 Face 5775 16075 16076 16232 Face 5776 14415 16058 16053 Face 5777 14515 14755 14412 Face 5778 16233 16397 16396 Face 5779 1655 4219 4348 Face 5780 15975 6393 5389 Face 5781 26297 19031 20625 Face 5782 3928 1655 4348 Face 5783 2821 2955 2954 Face 5784 34546 34453 34573 Face 5785 3092 3091 2954 Face 5786 2955 3092 2954 Face 5787 3227 3226 3091 Face 5788 3092 3227 3091 Face 5789 3354 3353 3226 Face 5790 3227 3354 3226 Face 5791 3482 3481 3353 Face 5792 3354 3482 3353 Face 5793 3611 3610 3481 Face 5794 3482 3611 3481 Face 5795 3741 3740 3610 Face 5796 3611 3741 3610 Face 5797 3874 3873 3740 Face 5798 3741 3874 3740 Face 5799 4002 4001 3873 Face 5800 3874 4002 3873 Face 5801 4131 4130 4001 Face 5802 4002 4131 4001 Face 5803 4260 4259 4130 Face 5804 4131 4260 4130 Face 5805 4260 4386 4385 Face 5806 4259 4260 4385 Face 5807 4386 4517 4516 Face 5808 4385 4386 4516 Face 5809 4517 4648 4647 Face 5810 4516 4517 4647 Face 5811 4779 4778 4647 Face 5812 4648 4779 4647 Face 5813 4912 4911 4778 Face 5814 4779 4912 4778 Face 5815 4912 5045 5044 Face 5816 4911 4912 5044 Face 5817 5045 5171 5170 Face 5818 5044 5045 5170 Face 5819 5171 5299 5298 Face 5820 5170 5171 5298 Face 5821 5299 5429 5428 Face 5822 5298 5299 5428 Face 5823 5429 5556 5555 Face 5824 5428 5429 5555 Face 5825 5682 5681 5555 Face 5826 5556 5682 5555 Face 5827 5807 5806 5681 Face 5828 5682 5807 5681 Face 5829 5935 5934 5806 Face 5830 5807 5935 5806 Face 5831 6062 6061 5934 Face 5832 5935 6062 5934 Face 5833 6188 6187 6061 Face 5834 6062 6188 6061 Face 5835 6308 6307 6187 Face 5836 6188 6308 6187 Face 5837 6430 6429 6307 Face 5838 6308 6430 6307 Face 5839 6555 6554 6429 Face 5840 6430 6555 6429 Face 5841 6409 6384 6554 Face 5842 6555 6409 6554 Face 5843 6409 1751 629 Face 5844 6384 6409 629 Face 5845 1751 4063 4190 Face 5846 629 1751 4190 Face 5847 13106 34718 8353 Face 5848 24485 24541 23848 Face 5849 6496 6497 2026 Face 5850 22233 22137 19960 Face 5851 4714 4715 4846 Face 5852 4980 5111 5110 Face 5853 5729 5728 5603 Face 5854 3922 3923 4050 Face 5855 5097 5098 5220 Face 5856 4968 5098 5097 Face 5857 1322 1421 3019 Face 5858 295 400 399 Face 5859 28642 28771 28770 Face 5860 2883 3294 3023 Face 5861 23596 23590 29612 Face 5862 25634 25735 25734 Face 5863 4560 4692 4691 Face 5864 29967 30028 29966 Face 5865 8166 9305 6378 Face 5866 882 994 993 Face 5867 2868 2869 3004 Face 5868 4703 4704 4834 Face 5869 4181 4182 4311 Face 5870 2021 2026 409 Face 5871 6374 6496 6495 Face 5872 6013 3287 746 Face 5873 4567 4568 4699 Face 5874 6496 2026 2021 Face 5875 3791 3790 3660 Face 5876 1970 2096 2095 Face 5877 13688 13689 13783 Face 5878 614 615 729 Face 5879 21091 21484 15160 Face 5880 1988 2113 5878 Face 5881 3019 2883 3023 Face 5882 4436 4437 4566 Face 5883 5858 5859 5986 Face 5884 855 969 854 Face 5885 624 739 623 Face 5886 2095 2222 2094 Face 5887 1667 1666 1557 Face 5888 3020 3019 3022 Face 5889 4978 4979 5109 Face 5890 756 4600 9628 Face 5891 4600 275 5881 Face 5892 1451 276 756 Face 5893 276 1451 303 Face 5894 5633 769 5891 Face 5895 303 5633 5891 Face 5896 769 6532 3191 Face 5897 5891 769 3191 Face 5898 8475 34783 34531 Face 5899 14997 19153 2844 Face 5900 7186 11142 13467 Face 5901 11958 11959 12043 Face 5902 27488 28167 16714 Face 5903 12386 11623 12557 Face 5904 20035 19960 20036 Face 5905 4821 4822 4954 Face 5906 6482 1098 908 Face 5907 13381 11686 11454 Face 5908 3275 3403 3274 Face 5909 1078 1077 967 Face 5910 28155 28291 25583 Face 5911 249 353 7151 Face 5912 6238 6358 6237 Face 5913 355 462 461 Face 5914 354 355 461 Face 5915 462 571 570 Face 5916 461 462 570 Face 5917 571 684 683 Face 5918 570 571 683 Face 5919 684 800 799 Face 5920 683 684 799 Face 5921 916 915 799 Face 5922 800 916 799 Face 5923 1025 1024 915 Face 5924 916 1025 915 Face 5925 1138 1137 1024 Face 5926 1025 1138 1024 Face 5927 1246 1138 17816 Face 5928 27703 27832 27831 Face 5929 546 2146 2281 Face 5930 2410 15264 15229 Face 5931 16169 16170 16327 Face 5932 2281 2410 15229 Face 5933 1654 6266 2534 Face 5934 16489 16488 16327 Face 5935 1654 4577 5654 Face 5936 5655 1654 5654 Face 5937 1211 5397 3687 Face 5938 5397 5655 5654 Face 5939 15966 1802 2161 Face 5940 3585 5397 5654 Face 5941 16645 16644 16485 Face 5942 4483 15966 2161 Face 5943 5897 4347 2154 Face 5944 16486 16645 16485 Face 5945 16232 16233 16396 Face 5946 14933 14415 14414 Face 5947 227 661 14515 Face 5948 16397 16560 16559 Face 5949 4219 227 2537 Face 5950 14413 15975 15971 Face 5951 16321 16482 16320 Face 5952 4348 4219 2537 Face 5953 16699 18414 2153 Face 5954 16641 16640 16481 Face 5955 2822 2956 2955 Face 5956 2821 2822 2955 Face 5957 2956 3093 3092 Face 5958 2955 2956 3092 Face 5959 3228 3227 3092 Face 5960 3093 3228 3092 Face 5961 3355 3354 3227 Face 5962 3228 3355 3227 Face 5963 3483 3482 3354 Face 5964 3355 3483 3354 Face 5965 3612 3611 3482 Face 5966 3483 3612 3482 Face 5967 3742 3741 3611 Face 5968 3612 3742 3611 Face 5969 3875 3874 3741 Face 5970 3742 3875 3741 Face 5971 4003 4002 3874 Face 5972 3875 4003 3874 Face 5973 4132 4131 4002 Face 5974 4003 4132 4002 Face 5975 4261 4260 4131 Face 5976 4132 4261 4131 Face 5977 4261 4387 4386 Face 5978 4260 4261 4386 Face 5979 4387 4518 4517 Face 5980 4386 4387 4517 Face 5981 4518 4649 4648 Face 5982 4517 4518 4648 Face 5983 4780 4779 4648 Face 5984 4649 4780 4648 Face 5985 4913 4912 4779 Face 5986 4780 4913 4779 Face 5987 4913 5046 5045 Face 5988 4912 4913 5045 Face 5989 5046 5172 5171 Face 5990 5045 5046 5171 Face 5991 5172 5300 5299 Face 5992 5171 5172 5299 Face 5993 5300 5430 5429 Face 5994 5299 5300 5429 Face 5995 5430 5557 5556 Face 5996 5429 5430 5556 Face 5997 5683 5682 5556 Face 5998 5557 5683 5556 Face 5999 5808 5807 5682 Face 6000 5683 5808 5682 Face 6001 5936 5935 5807 Face 6002 5808 5936 5807 Face 6003 6063 6062 5935 Face 6004 5936 6063 5935 Face 6005 6189 6188 6062 Face 6006 6063 6189 6062 Face 6007 6309 6308 6188 Face 6008 6189 6309 6188 Face 6009 6309 6431 6430 Face 6010 6308 6309 6430 Face 6011 6431 6556 6555 Face 6012 6430 6431 6555 Face 6013 6556 6410 6409 Face 6014 6555 6556 6409 Face 6015 4461 1751 6409 Face 6016 6410 4461 6409 Face 6017 4461 4191 4063 Face 6018 1751 4461 4063 Face 6019 11702 11763 11541 Face 6020 13957 13199 23248 Face 6021 34833 34737 34305 Face 6022 34816 34497 34378 Face 6023 5871 5872 5999 Face 6024 34451 34834 34400 Face 6025 5475 5604 5474 Face 6026 3923 4051 4050 Face 6027 5983 5984 6111 Face 6028 5984 6112 6111 Face 6029 765 882 881 Face 6030 6112 6238 6111 Face 6031 34447 34488 34615 Face 6032 25633 25634 25734 Face 6033 4829 4830 4962 Face 6034 11702 7261 11368 Face 6035 14653 10109 12498 Face 6036 2483 2612 2482 Face 6037 34683 34556 34359 Face 6038 28423 34594 34776 Face 6039 6232 6233 6352 Face 6040 4829 4962 4961 Face 6041 731 732 847 Face 6042 4436 4566 4565 Face 6043 2396 2397 2526 Face 6044 3661 3791 3660 Face 6045 5847 7825 5848 Face 6046 3805 3673 437 Face 6047 6358 6480 6479 Face 6048 881 882 993 Face 6049 2224 2225 2352 Face 6050 6479 6480 887 Face 6051 2346 2475 2474 Face 6052 5985 5986 6113 Face 6053 3411 4204 2619 Face 6054 1183 1291 1290 Face 6055 204 1322 3020 Face 6056 33637 33636 33509 Face 6057 1179 1180 1287 Face 6058 5105 5228 5227 Face 6059 11880 11964 11879 Face 6060 5349 5348 5071 Face 6061 304 5762 769 Face 6062 1332 1447 1446 Face 6063 5762 4446 6532 Face 6064 769 5762 6532 Face 6065 4446 3814 2757 Face 6066 6532 4446 2757 Face 6067 1992 5495 152 Face 6068 34449 34524 34401 Face 6069 11452 11623 12386 Face 6070 11370 7501 11371 Face 6071 22018 22116 22115 Face 6072 10109 14293 22041 Face 6073 5354 5481 5353 Face 6074 3538 3667 3537 Face 6075 630 3805 437 Face 6076 3284 2753 3150 Face 6077 34047 21540 21541 Face 6078 4968 4969 5098 Face 6079 250 355 354 Face 6080 5856 5984 5983 Face 6081 356 463 462 Face 6082 355 356 462 Face 6083 572 571 462 Face 6084 463 572 462 Face 6085 685 684 571 Face 6086 572 685 571 Face 6087 685 801 800 Face 6088 684 685 800 Face 6089 917 916 800 Face 6090 801 917 800 Face 6091 1026 1025 916 Face 6092 917 1026 916 Face 6093 19091 20847 25315 Face 6094 1026 1139 1025 Face 6095 3767 4155 16647 Face 6096 16648 3767 16647 Face 6097 16328 16489 16327 Face 6098 16648 16647 16488 Face 6099 14631 1832 2178 Face 6100 16489 16648 16488 Face 6101 786 1683 16046 Face 6102 16202 14631 14752 Face 6103 14752 14631 2178 Face 6104 16046 16202 14752 Face 6105 1802 15667 1687 Face 6106 1832 15966 4483 Face 6107 4157 4285 16644 Face 6108 2161 1802 1687 Face 6109 2239 3021 5244 Face 6110 16645 4157 16644 Face 6111 16396 16397 16559 Face 6112 2280 14933 14815 Face 6113 4219 6023 227 Face 6114 16560 4414 5275 Face 6115 2434 2562 2561 Face 6116 14755 14413 14412 Face 6117 33376 33375 33239 Face 6118 13547 16868 13546 Face 6119 13532 29082 29213 Face 6120 6727 13474 13473 Face 6121 2693 2823 2822 Face 6122 13531 29213 13628 Face 6123 2823 2957 2956 Face 6124 2822 2823 2956 Face 6125 2957 3094 3093 Face 6126 2956 2957 3093 Face 6127 3094 3229 3228 Face 6128 3093 3094 3228 Face 6129 3356 3355 3228 Face 6130 3229 3356 3228 Face 6131 3484 3483 3355 Face 6132 3356 3484 3355 Face 6133 3613 3612 3483 Face 6134 3484 3613 3483 Face 6135 3743 3742 3612 Face 6136 3613 3743 3612 Face 6137 3876 3875 3742 Face 6138 3743 3876 3742 Face 6139 4004 4003 3875 Face 6140 3876 4004 3875 Face 6141 4133 4132 4003 Face 6142 4004 4133 4003 Face 6143 4262 4261 4132 Face 6144 4133 4262 4132 Face 6145 4262 4388 4387 Face 6146 4261 4262 4387 Face 6147 4388 4519 4518 Face 6148 4387 4388 4518 Face 6149 4519 4650 4649 Face 6150 4518 4519 4649 Face 6151 4781 4780 4649 Face 6152 4650 4781 4649 Face 6153 4914 4913 4780 Face 6154 4781 4914 4780 Face 6155 4914 5047 5046 Face 6156 4913 4914 5046 Face 6157 5047 5173 5172 Face 6158 5046 5047 5172 Face 6159 5173 5301 5300 Face 6160 5172 5173 5300 Face 6161 5301 5431 5430 Face 6162 5300 5301 5430 Face 6163 5558 5557 5430 Face 6164 5431 5558 5430 Face 6165 5684 5683 5557 Face 6166 5558 5684 5557 Face 6167 5809 5808 5683 Face 6168 5684 5809 5683 Face 6169 5937 5936 5808 Face 6170 5809 5937 5808 Face 6171 6064 6063 5936 Face 6172 5937 6064 5936 Face 6173 6064 6190 6189 Face 6174 6063 6064 6189 Face 6175 6190 6310 6309 Face 6176 6189 6190 6309 Face 6177 6310 6432 6431 Face 6178 6309 6310 6431 Face 6179 6432 6557 6556 Face 6180 6431 6432 6556 Face 6181 6557 6504 6410 Face 6182 6556 6557 6410 Face 6183 1750 4461 6410 Face 6184 6504 1750 6410 Face 6185 4192 4191 4461 Face 6186 1750 4192 4461 Face 6187 2628 2627 4191 Face 6188 4192 2628 4191 Face 6189 3684 3815 2627 Face 6190 2628 3684 2627 Face 6191 3684 2123 2122 Face 6192 3815 3684 2122 Face 6193 7109 7001 7002 Face 6194 34468 34585 34728 Face 6195 34829 34556 34727 Face 6196 6238 6237 6111 Face 6197 5998 6126 6125 Face 6198 32508 32509 764 Face 6199 1852 1851 1739 Face 6200 2753 2752 3150 Face 6201 6119 6245 6244 Face 6202 7694 13659 13475 Face 6203 1740 1852 1739 Face 6204 5367 5237 2753 Face 6205 5098 5221 5220 Face 6206 34714 34576 34545 Face 6207 34535 34601 34658 Face 6208 34574 34419 34689 Face 6209 1447 1560 1446 Face 6210 4963 5093 5092 Face 6211 5869 5870 5997 Face 6212 994 1107 1106 Face 6213 993 994 1106 Face 6214 6480 892 887 Face 6215 6358 6357 6237 Face 6216 4055 4054 3926 Face 6217 2498 2116 2115 Face 6218 7183 10105 5365 Face 6219 34366 25471 26069 Face 6220 6255 6256 6374 Face 6221 6256 6375 6374 Face 6222 3135 3269 3134 Face 6223 1734 1846 1845 Face 6224 1513 1624 1512 Face 6225 1733 1732 1623 Face 6226 8040 5756 304 Face 6227 10378 304 5633 Face 6228 5639 6292 4446 Face 6229 5762 5639 4446 Face 6230 6292 153 3814 Face 6231 4446 6292 3814 Face 6232 1788 85 4232 Face 6233 153 1341 3814 Face 6234 11623 12645 12557 Face 6235 11801 11882 11800 Face 6236 11524 22141 14293 Face 6237 34444 34276 34322 Face 6238 21846 22035 22041 Face 6239 3150 3287 6013 Face 6240 1671 1670 1561 Face 6241 5997 5998 6125 Face 6242 6251 6252 6370 Face 6243 3010 9449 3147 Face 6244 2114 5752 5751 Face 6245 355 250 251 Face 6246 5855 5856 5983 Face 6247 14034 34756 34622 Face 6248 356 357 463 Face 6249 464 573 572 Face 6250 463 464 572 Face 6251 686 685 572 Face 6252 573 686 572 Face 6253 802 801 685 Face 6254 686 802 685 Face 6255 918 917 801 Face 6256 802 918 801 Face 6257 1027 1026 917 Face 6258 918 1027 917 Face 6259 1140 1139 1026 Face 6260 1027 1140 1026 Face 6261 1248 1359 1247 Face 6262 34349 34274 34572 Face 6263 2586 15336 14802 Face 6264 7229 6130 6129 Face 6265 14646 9850 21108 Face 6266 5252 2031 3030 Face 6267 211 987 3844 Face 6268 16168 16167 16015 Face 6269 1498 987 1609 Face 6270 987 3712 3844 Face 6271 1498 1609 4285 Face 6272 4157 1498 4285 Face 6273 5119 2239 5244 Face 6274 987 211 1609 Face 6275 16559 16560 5275 Face 6276 3021 4347 5897 Face 6277 2492 6023 4219 Face 6278 4414 3247 3246 Face 6279 227 14515 14512 Face 6280 661 14755 14515 Face 6281 13036 34706 1877 Face 6282 18786 2305 2434 Face 6283 34309 34611 34802 Face 6284 3119 18047 19150 Face 6285 2563 2694 2693 Face 6286 2562 2563 2693 Face 6287 2694 2824 2823 Face 6288 2693 2694 2823 Face 6289 2824 2958 2957 Face 6290 2823 2824 2957 Face 6291 2958 3095 3094 Face 6292 2957 2958 3094 Face 6293 3095 3230 3229 Face 6294 3094 3095 3229 Face 6295 3230 3357 3356 Face 6296 3229 3230 3356 Face 6297 3357 3485 3484 Face 6298 3356 3357 3484 Face 6299 3614 3613 3484 Face 6300 3485 3614 3484 Face 6301 3744 3743 3613 Face 6302 3614 3744 3613 Face 6303 3877 3876 3743 Face 6304 3744 3877 3743 Face 6305 4005 4004 3876 Face 6306 3877 4005 3876 Face 6307 4134 4133 4004 Face 6308 4005 4134 4004 Face 6309 4263 4262 4133 Face 6310 4134 4263 4133 Face 6311 4263 4389 4388 Face 6312 4262 4263 4388 Face 6313 4389 4520 4519 Face 6314 4388 4389 4519 Face 6315 4651 4650 4519 Face 6316 4520 4651 4519 Face 6317 4782 4781 4650 Face 6318 4651 4782 4650 Face 6319 4782 4915 4914 Face 6320 4781 4782 4914 Face 6321 4915 5048 5047 Face 6322 4914 4915 5047 Face 6323 5174 5173 5047 Face 6324 5048 5174 5047 Face 6325 5174 5302 5301 Face 6326 5173 5174 5301 Face 6327 5432 5431 5301 Face 6328 5302 5432 5301 Face 6329 5559 5558 5431 Face 6330 5432 5559 5431 Face 6331 5559 5685 5684 Face 6332 5558 5559 5684 Face 6333 5810 5809 5684 Face 6334 5685 5810 5684 Face 6335 5938 5937 5809 Face 6336 5810 5938 5809 Face 6337 5938 6065 6064 Face 6338 5937 5938 6064 Face 6339 6065 6191 6190 Face 6340 6064 6065 6190 Face 6341 6191 6311 6310 Face 6342 6190 6191 6310 Face 6343 6311 6433 6432 Face 6344 6310 6311 6432 Face 6345 6433 6558 6557 Face 6346 6432 6433 6557 Face 6347 6513 6504 6557 Face 6348 6558 6513 6557 Face 6349 1308 1750 6504 Face 6350 6513 1308 6504 Face 6351 4064 4192 1750 Face 6352 1308 4064 1750 Face 6353 2629 2628 4192 Face 6354 4064 2629 4192 Face 6355 3428 3684 2628 Face 6356 2629 3428 2628 Face 6357 33694 28809 20973 Face 6358 34716 34779 34641 Face 6359 11533 4725 13277 Face 6360 15817 16115 2129 Face 6361 11245 11244 11175 Face 6362 11173 11242 11172 Face 6363 2748 9298 8992 Face 6364 857 740 741 Face 6365 1671 1777 1776 Face 6366 1670 1671 1776 Face 6367 1777 1893 1892 Face 6368 1776 1777 1892 Face 6369 2014 2013 1892 Face 6370 1893 2014 1892 Face 6371 2139 2138 2013 Face 6372 6126 6252 6251 Face 6373 6252 6371 6370 Face 6374 1107 1217 1216 Face 6375 1106 1107 1216 Face 6376 6357 6358 6479 Face 6377 5602 5603 5727 Face 6378 2625 3013 4068 Face 6379 2098 2099 2225 Face 6380 4452 4453 4584 Face 6381 4715 4847 4846 Face 6382 4585 4715 4714 Face 6383 4584 4585 4714 Face 6384 5086 5087 15750 Face 6385 1520 1519 1406 Face 6386 843 957 956 Face 6387 4045 4044 3916 Face 6388 1630 1739 1738 Face 6389 1738 1739 1850 Face 6390 5510 4320 6292 Face 6391 5762 5756 5639 Face 6392 4320 4318 153 Face 6393 6292 4320 153 Face 6394 4318 380 1341 Face 6395 153 4318 1341 Face 6396 7295 10583 7576 Face 6397 1785 13951 13956 Face 6398 22233 21366 22441 Face 6399 22406 22503 22405 Face 6400 12498 10109 22041 Face 6401 21727 21824 21726 Face 6402 2014 2139 2013 Face 6403 2264 2263 2138 Face 6404 6370 6371 6492 Face 6405 6125 6126 6251 Face 6406 9449 3148 3147 Face 6407 5724 5852 5851 Face 6408 5728 5856 5855 Face 6409 5727 5728 5855 Face 6410 20356 20355 20272 Face 6411 10750 10825 10874 Face 6412 465 574 573 Face 6413 7263 464 357 Face 6414 574 687 686 Face 6415 573 574 686 Face 6416 687 803 802 Face 6417 686 687 802 Face 6418 919 918 802 Face 6419 803 919 802 Face 6420 1028 1027 918 Face 6421 919 1028 918 Face 6422 1028 1141 1140 Face 6423 1027 1028 1140 Face 6424 1141 1248 1247 Face 6425 1140 1141 1247 Face 6426 1248 1360 1359 Face 6427 17909 1359 18000 Face 6428 1474 1475 1586 Face 6429 12024 34803 11939 Face 6430 4616 211 3941 Face 6431 3844 5651 3329 Face 6432 5651 2239 5119 Face 6433 3941 3844 3329 Face 6434 5244 3021 5897 Face 6435 3329 5651 5119 Face 6436 5275 4414 3246 Face 6437 4347 2280 2154 Face 6438 1655 2492 4219 Face 6439 3247 4232 4233 Face 6440 2537 227 14512 Face 6441 6023 661 227 Face 6442 16164 16321 16163 Face 6443 14515 14412 14406 Face 6444 27703 27704 27832 Face 6445 16482 16481 16320 Face 6446 2435 2564 2563 Face 6447 17262 2983 19150 Face 6448 2564 2695 2694 Face 6449 2563 2564 2694 Face 6450 2695 2825 2824 Face 6451 2694 2695 2824 Face 6452 2825 2959 2958 Face 6453 2824 2825 2958 Face 6454 2959 3096 3095 Face 6455 2958 2959 3095 Face 6456 3096 3231 3230 Face 6457 3095 3096 3230 Face 6458 3231 3358 3357 Face 6459 3230 3231 3357 Face 6460 3486 3485 3357 Face 6461 3358 3486 3357 Face 6462 3615 3614 3485 Face 6463 3486 3615 3485 Face 6464 3745 3744 3614 Face 6465 3615 3745 3614 Face 6466 3878 3877 3744 Face 6467 3745 3878 3744 Face 6468 4006 4005 3877 Face 6469 3878 4006 3877 Face 6470 4135 4134 4005 Face 6471 4006 4135 4005 Face 6472 4135 4264 4263 Face 6473 4134 4135 4263 Face 6474 4264 4390 4389 Face 6475 4263 4264 4389 Face 6476 4390 4521 4520 Face 6477 4389 4390 4520 Face 6478 4652 4651 4520 Face 6479 4521 4652 4520 Face 6480 4783 4782 4651 Face 6481 4652 4783 4651 Face 6482 4783 4916 4915 Face 6483 4782 4783 4915 Face 6484 5049 5048 4915 Face 6485 4916 5049 4915 Face 6486 5175 5174 5048 Face 6487 5049 5175 5048 Face 6488 5175 5303 5302 Face 6489 5174 5175 5302 Face 6490 5303 5433 5432 Face 6491 5302 5303 5432 Face 6492 5433 5560 5559 Face 6493 5432 5433 5559 Face 6494 5560 5686 5685 Face 6495 5559 5560 5685 Face 6496 5686 5811 5810 Face 6497 5685 5686 5810 Face 6498 5811 5939 5938 Face 6499 5810 5811 5938 Face 6500 5939 6066 6065 Face 6501 5938 5939 6065 Face 6502 6066 6192 6191 Face 6503 6065 6066 6191 Face 6504 6192 6312 6311 Face 6505 6191 6192 6311 Face 6506 6312 6434 6433 Face 6507 6311 6312 6433 Face 6508 6434 6559 6558 Face 6509 6433 6434 6558 Face 6510 6559 6538 6513 Face 6511 6558 6559 6513 Face 6512 1201 1308 6513 Face 6513 6538 1201 6513 Face 6514 3417 4064 1308 Face 6515 1201 3417 1308 Face 6516 2630 2629 4064 Face 6517 3417 2630 4064 Face 6518 3299 3428 2629 Face 6519 2630 3299 2629 Face 6520 3299 5371 5241 Face 6521 3299 5241 3428 Face 6522 13602 13603 13695 Face 6523 13696 13791 13790 Face 6524 12050 12137 12049 Face 6525 13695 13696 13790 Face 6526 34538 34707 34452 Face 6527 13599 13600 13692 Face 6528 955 956 1065 Face 6529 2139 2264 2138 Face 6530 2391 2390 2263 Face 6531 2264 2391 2263 Face 6532 2521 2520 2390 Face 6533 2391 2521 2390 Face 6534 34562 34705 34470 Face 6535 3803 2622 2620 Face 6536 2521 2653 2520 Face 6537 3136 3270 3269 Face 6538 3540 3803 2620 Face 6539 4051 4180 4050 Face 6540 1996 1995 1863 Face 6541 2099 2226 2225 Face 6542 4180 4179 4050 Face 6543 5601 5602 5726 Face 6544 4234 4987 39 Face 6545 4326 4327 4452 Face 6546 4453 4585 4584 Face 6547 2915 4210 9165 Face 6548 4702 4833 4832 Face 6549 1861 1997 1862 Face 6550 1070 1183 1182 Face 6551 3959 1099 1996 Face 6552 21920 21919 21823 Face 6553 9443 770 5510 Face 6554 5639 5510 6292 Face 6555 4321 154 4318 Face 6556 4320 4321 4318 Face 6557 154 379 380 Face 6558 4318 154 380 Face 6559 3181 13951 2147 Face 6560 379 90 380 Face 6561 29800 16776 18823 Face 6562 13405 13406 13500 Face 6563 19886 19964 19963 Face 6564 13557 8034 10013 Face 6565 20040 20041 17800 Face 6566 34625 34786 34282 Face 6567 7687 7686 11547 Face 6568 2622 2233 2232 Face 6569 4604 3803 3540 Face 6570 6834 6833 16766 Face 6571 3655 3654 3525 Face 6572 34310 34534 34752 Face 6573 34612 34688 34371 Face 6574 358 466 465 Face 6575 464 465 573 Face 6576 466 575 574 Face 6577 465 466 574 Face 6578 575 688 687 Face 6579 574 575 687 Face 6580 688 804 803 Face 6581 687 688 803 Face 6582 920 919 803 Face 6583 804 920 803 Face 6584 1029 1028 919 Face 6585 920 1029 919 Face 6586 1029 1142 1141 Face 6587 1028 1029 1141 Face 6588 1142 1249 1248 Face 6589 1141 1142 1248 Face 6590 1249 1361 1360 Face 6591 1248 1249 1360 Face 6592 1361 1475 1474 Face 6593 1360 1361 1474 Face 6594 1475 1587 1586 Face 6595 873 14011 872 Face 6596 1587 1697 1696 Face 6597 1696 1697 1806 Face 6598 1697 1807 1806 Face 6599 25898 11186 11256 Face 6600 1807 1927 1926 Face 6601 1927 2051 1926 Face 6602 1927 2052 2051 Face 6603 2180 2051 2052 Face 6604 2052 2181 2180 Face 6605 2180 2306 18680 Face 6606 2181 2307 2306 Face 6607 2306 18788 18680 Face 6608 2307 2436 2435 Face 6609 2306 2307 2435 Face 6610 2436 2565 2564 Face 6611 2435 2436 2564 Face 6612 2565 2696 2695 Face 6613 2564 2565 2695 Face 6614 2826 2825 2695 Face 6615 2696 2826 2695 Face 6616 2960 2959 2825 Face 6617 2826 2960 2825 Face 6618 2960 3097 3096 Face 6619 2959 2960 3096 Face 6620 3097 3232 3231 Face 6621 3096 3097 3231 Face 6622 3232 3359 3358 Face 6623 3231 3232 3358 Face 6624 3487 3486 3358 Face 6625 3359 3487 3358 Face 6626 3616 3615 3486 Face 6627 3487 3616 3486 Face 6628 3616 3746 3745 Face 6629 3615 3616 3745 Face 6630 3879 3878 3745 Face 6631 3746 3879 3745 Face 6632 4007 4006 3878 Face 6633 3879 4007 3878 Face 6634 4136 4135 4006 Face 6635 4007 4136 4006 Face 6636 4136 4265 4264 Face 6637 4135 4136 4264 Face 6638 4265 4391 4390 Face 6639 4264 4265 4390 Face 6640 4522 4521 4390 Face 6641 4391 4522 4390 Face 6642 4653 4652 4521 Face 6643 4522 4653 4521 Face 6644 4653 4784 4783 Face 6645 4652 4653 4783 Face 6646 4784 4917 4916 Face 6647 4783 4784 4916 Face 6648 5050 5049 4916 Face 6649 4917 5050 4916 Face 6650 5176 5175 5049 Face 6651 5050 5176 5049 Face 6652 5176 5304 5303 Face 6653 5175 5176 5303 Face 6654 5304 5434 5433 Face 6655 5303 5304 5433 Face 6656 5434 5561 5560 Face 6657 5433 5434 5560 Face 6658 5561 5687 5686 Face 6659 5560 5561 5686 Face 6660 5687 5812 5811 Face 6661 5686 5687 5811 Face 6662 5812 5940 5939 Face 6663 5811 5812 5939 Face 6664 5940 6067 6066 Face 6665 5939 5940 6066 Face 6666 6067 6193 6192 Face 6667 6066 6067 6192 Face 6668 6193 6313 6312 Face 6669 6192 6193 6312 Face 6670 6313 6435 6434 Face 6671 6312 6313 6434 Face 6672 6435 6560 6559 Face 6673 6434 6435 6559 Face 6674 6560 3829 6538 Face 6675 6559 6560 6538 Face 6676 1309 1201 6538 Face 6677 3829 1309 6538 Face 6678 4065 3417 1201 Face 6679 1309 4065 1201 Face 6680 2761 2630 3417 Face 6681 4065 2761 3417 Face 6682 3557 3299 2630 Face 6683 2761 3557 2630 Face 6684 15092 16568 5241 Face 6685 3557 5371 3299 Face 6686 13505 13506 13602 Face 6687 13603 13696 13695 Face 6688 30571 30570 30485 Face 6689 11431 34531 10115 Face 6690 14902 19437 1551 Face 6691 12338 12430 12337 Face 6692 2997 3134 3133 Face 6693 12058 12057 11972 Face 6694 2666 12852 13388 Face 6695 9617 121 7380 Face 6696 2149 11610 11453 Face 6697 4331 2666 36 Face 6698 36 2666 13388 Face 6699 19968 19967 19889 Face 6700 6371 6493 6492 Face 6701 1915 4604 4088 Face 6702 34758 34591 34385 Face 6703 23666 13130 13129 Face 6704 5603 5728 5727 Face 6705 5604 5603 5474 Face 6706 5602 5727 5726 Face 6707 20273 20356 20272 Face 6708 2347 2348 2476 Face 6709 4327 4453 4452 Face 6710 34780 34626 34482 Face 6711 24082 25638 25739 Face 6712 437 3673 433 Face 6713 2352 2481 2351 Face 6714 20045 20127 20126 Face 6715 2752 5113 2751 Face 6716 848 849 962 Face 6717 963 1073 1072 Face 6718 7505 770 10371 Face 6719 27100 34736 29408 Face 6720 5759 1004 379 Face 6721 154 5759 379 Face 6722 1004 2147 90 Face 6723 379 1004 90 Face 6724 13598 13691 13690 Face 6725 3181 773 670 Face 6726 15441 22604 21102 Face 6727 11462 11303 8889 Face 6728 22248 22537 21955 Face 6729 25982 19461 23954 Face 6730 34414 34525 34436 Face 6731 3924 4052 4051 Face 6732 6493 1915 1908 Face 6733 6492 6493 1908 Face 6734 6939 16837 156 Face 6735 34121 34122 16766 Face 6736 253 252 156 Face 6737 252 253 358 Face 6738 359 467 466 Face 6739 358 359 466 Face 6740 576 575 466 Face 6741 467 576 466 Face 6742 689 688 575 Face 6743 576 689 575 Face 6744 805 804 688 Face 6745 689 805 688 Face 6746 805 921 920 Face 6747 804 805 920 Face 6748 921 1030 1029 Face 6749 920 921 1029 Face 6750 1030 1143 1142 Face 6751 1029 1030 1142 Face 6752 1143 1250 1249 Face 6753 1142 1143 1249 Face 6754 1250 1362 1361 Face 6755 1249 1250 1361 Face 6756 1362 1476 1475 Face 6757 1361 1362 1475 Face 6758 1476 1588 1587 Face 6759 1475 1476 1587 Face 6760 1588 1698 1697 Face 6761 1587 1588 1697 Face 6762 1698 1808 1807 Face 6763 1697 1698 1807 Face 6764 1808 1928 1927 Face 6765 1807 1808 1927 Face 6766 1928 2053 2052 Face 6767 1927 1928 2052 Face 6768 2053 2182 2181 Face 6769 2052 2053 2181 Face 6770 2182 2308 2307 Face 6771 2181 2182 2307 Face 6772 2308 2437 2436 Face 6773 2307 2308 2436 Face 6774 2437 2566 2565 Face 6775 2436 2437 2565 Face 6776 2566 2697 2696 Face 6777 2565 2566 2696 Face 6778 2827 2826 2696 Face 6779 2697 2827 2696 Face 6780 2961 2960 2826 Face 6781 2827 2961 2826 Face 6782 3098 3097 2960 Face 6783 2961 3098 2960 Face 6784 3098 3233 3232 Face 6785 3097 3098 3232 Face 6786 3233 3360 3359 Face 6787 3232 3233 3359 Face 6788 3488 3487 3359 Face 6789 3360 3488 3359 Face 6790 3617 3616 3487 Face 6791 3488 3617 3487 Face 6792 3747 3746 3616 Face 6793 3617 3747 3616 Face 6794 3747 3880 3879 Face 6795 3746 3747 3879 Face 6796 3880 4008 4007 Face 6797 3879 3880 4007 Face 6798 4137 4136 4007 Face 6799 4008 4137 4007 Face 6800 4137 4266 4265 Face 6801 4136 4137 4265 Face 6802 4266 4392 4391 Face 6803 4265 4266 4391 Face 6804 4392 4523 4522 Face 6805 4391 4392 4522 Face 6806 4654 4653 4522 Face 6807 4523 4654 4522 Face 6808 4654 4785 4784 Face 6809 4653 4654 4784 Face 6810 4785 4918 4917 Face 6811 4784 4785 4917 Face 6812 5051 5050 4917 Face 6813 4918 5051 4917 Face 6814 5177 5176 5050 Face 6815 5051 5177 5050 Face 6816 5177 5305 5304 Face 6817 5176 5177 5304 Face 6818 5305 5435 5434 Face 6819 5304 5305 5434 Face 6820 5435 5562 5561 Face 6821 5434 5435 5561 Face 6822 5562 5688 5687 Face 6823 5561 5562 5687 Face 6824 5688 5813 5812 Face 6825 5687 5688 5812 Face 6826 5813 5941 5940 Face 6827 5812 5813 5940 Face 6828 5941 6068 6067 Face 6829 5940 5941 6067 Face 6830 6068 6194 6193 Face 6831 6067 6068 6193 Face 6832 6194 6314 6313 Face 6833 6193 6194 6313 Face 6834 6314 6436 6435 Face 6835 6313 6314 6435 Face 6836 6436 6561 6560 Face 6837 6435 6436 6560 Face 6838 6561 5890 3829 Face 6839 6560 6561 3829 Face 6840 4587 1309 3829 Face 6841 5890 4587 3829 Face 6842 3547 4065 1309 Face 6843 4587 3547 1309 Face 6844 2889 2761 4065 Face 6845 3547 2889 4065 Face 6846 3166 3557 2761 Face 6847 2889 3166 2761 Face 6848 5331 5627 14961 Face 6849 3166 5497 3557 Face 6850 13506 13603 13602 Face 6851 270 4594 13008 Face 6852 11828 11827 11744 Face 6853 13119 8024 13084 Face 6854 12817 12908 13380 Face 6855 19747 19748 19830 Face 6856 11973 12058 11972 Face 6857 23658 21887 11546 Face 6858 34344 8031 11614 Face 6859 17985 20288 20289 Face 6860 4051 4052 4180 Face 6861 3533 3662 3532 Face 6862 25302 12583 12584 Face 6863 4052 4181 4180 Face 6864 6353 6354 6475 Face 6865 4088 4604 3540 Face 6866 2226 2354 2353 Face 6867 14391 21384 16369 Face 6868 10203 12852 35 Face 6869 2225 2226 2353 Face 6870 6104 6103 5976 Face 6871 12645 11142 7186 Face 6872 2219 2220 2347 Face 6873 726 842 841 Face 6874 3654 3655 3784 Face 6875 2616 2747 2615 Face 6876 1068 1181 1180 Face 6877 1966 2092 2091 Face 6878 5854 5981 5853 Face 6879 6248 6367 6247 Face 6880 8452 2748 2755 Face 6881 8551 2755 3678 Face 6882 245 3556 1004 Face 6883 6414 10101 5759 Face 6884 3556 2399 2147 Face 6885 1004 3556 2147 Face 6886 773 3181 2147 Face 6887 2399 773 2147 Face 6888 20056 17629 17718 Face 6889 34635 34787 34575 Face 6890 22316 22220 18843 Face 6891 22119 22118 22020 Face 6892 19330 19407 19406 Face 6893 3662 3792 3661 Face 6894 15569 15568 15429 Face 6895 15518 14252 4746 Face 6896 1908 1915 4088 Face 6897 13915 13934 3118 Face 6898 22231 22135 15722 Face 6899 14572 14573 14693 Face 6900 16005 16157 16004 Face 6901 360 468 467 Face 6902 359 360 467 Face 6903 468 577 576 Face 6904 467 468 576 Face 6905 577 690 689 Face 6906 576 577 689 Face 6907 690 806 805 Face 6908 689 690 805 Face 6909 806 922 921 Face 6910 805 806 921 Face 6911 922 1031 1030 Face 6912 921 922 1030 Face 6913 1144 1143 1030 Face 6914 1031 1144 1030 Face 6915 1144 1251 1250 Face 6916 1143 1144 1250 Face 6917 1251 1363 1362 Face 6918 1250 1251 1362 Face 6919 1363 1477 1476 Face 6920 1362 1363 1476 Face 6921 1477 1589 1588 Face 6922 1476 1477 1588 Face 6923 1589 1699 1698 Face 6924 1588 1589 1698 Face 6925 1699 1809 1808 Face 6926 1698 1699 1808 Face 6927 1809 1929 1928 Face 6928 1808 1809 1928 Face 6929 1929 2054 2053 Face 6930 1928 1929 2053 Face 6931 2054 2183 2182 Face 6932 2053 2054 2182 Face 6933 2183 2309 2308 Face 6934 2182 2183 2308 Face 6935 2309 2438 2437 Face 6936 2308 2309 2437 Face 6937 2438 2567 2566 Face 6938 2437 2438 2566 Face 6939 2698 2697 2566 Face 6940 2567 2698 2566 Face 6941 2828 2827 2697 Face 6942 2698 2828 2697 Face 6943 2962 2961 2827 Face 6944 2828 2962 2827 Face 6945 3099 3098 2961 Face 6946 2962 3099 2961 Face 6947 3234 3233 3098 Face 6948 3099 3234 3098 Face 6949 3234 3361 3360 Face 6950 3233 3234 3360 Face 6951 3361 3489 3488 Face 6952 3360 3361 3488 Face 6953 3618 3617 3488 Face 6954 3489 3618 3488 Face 6955 3618 3748 3747 Face 6956 3617 3618 3747 Face 6957 3748 3881 3880 Face 6958 3747 3748 3880 Face 6959 3881 4009 4008 Face 6960 3880 3881 4008 Face 6961 4009 4138 4137 Face 6962 4008 4009 4137 Face 6963 4267 4266 4137 Face 6964 4138 4267 4137 Face 6965 4267 4393 4392 Face 6966 4266 4267 4392 Face 6967 4524 4523 4392 Face 6968 4393 4524 4392 Face 6969 4524 4655 4654 Face 6970 4523 4524 4654 Face 6971 4786 4785 4654 Face 6972 4655 4786 4654 Face 6973 4919 4918 4785 Face 6974 4786 4919 4785 Face 6975 4919 5052 5051 Face 6976 4918 4919 5051 Face 6977 5052 5178 5177 Face 6978 5051 5052 5177 Face 6979 5178 5306 5305 Face 6980 5177 5178 5305 Face 6981 5306 5436 5435 Face 6982 5305 5306 5435 Face 6983 5436 5563 5562 Face 6984 5435 5436 5562 Face 6985 5563 5689 5688 Face 6986 5562 5563 5688 Face 6987 5689 5814 5813 Face 6988 5688 5689 5813 Face 6989 5814 5942 5941 Face 6990 5813 5814 5941 Face 6991 5942 6069 6068 Face 6992 5941 5942 6068 Face 6993 6069 6195 6194 Face 6994 6068 6069 6194 Face 6995 6195 6315 6314 Face 6996 6194 6195 6314 Face 6997 6315 6437 6436 Face 6998 6314 6315 6436 Face 6999 6437 6562 6561 Face 7000 6436 6437 6561 Face 7001 6562 5893 5890 Face 7002 6561 6562 5890 Face 7003 5893 4205 4587 Face 7004 5890 5893 4587 Face 7005 4205 3806 3547 Face 7006 4587 4205 3547 Face 7007 3806 2762 2889 Face 7008 3547 3806 2889 Face 7009 3028 3166 2889 Face 7010 2762 3028 2889 Face 7011 3028 5626 5627 Face 7012 3028 5627 3166 Face 7013 13411 13506 13410 Face 7014 10926 13386 893 Face 7015 13693 13788 13787 Face 7016 13692 13693 13787 Face 7017 11608 11765 12202 Face 7018 12725 10746 3189 Face 7019 34466 34760 34565 Face 7020 28089 28227 34679 Face 7021 6486 8758 6485 Face 7022 6478 6479 862 Face 7023 13411 13410 13316 Face 7024 30618 30532 30619 Face 7025 21631 7126 33935 Face 7026 880 992 879 Face 7027 3022 3023 5622 Face 7028 5604 5729 5603 Face 7029 3939 2498 2499 Face 7030 34737 34693 34305 Face 7031 12557 12645 7186 Face 7032 2348 2477 2476 Face 7033 2606 2737 2605 Face 7034 294 398 293 Face 7035 6483 6482 8149 Face 7036 1845 1846 1965 Face 7037 2736 2735 2604 Face 7038 6489 6488 6366 Face 7039 2605 2736 2604 Face 7040 33746 33872 33745 Face 7041 6367 6489 6366 Face 7042 10101 245 5759 Face 7043 5994 6122 5993 Face 7044 70 57 2399 Face 7045 3556 70 2399 Face 7046 57 3961 773 Face 7047 2399 57 773 Face 7048 1129 209 6007 Face 7049 3961 6007 773 Face 7050 13453 11608 12736 Face 7051 2913 12718 3054 Face 7052 11355 12836 34461 Face 7053 11467 13092 12998 Face 7054 19648 19731 19647 Face 7055 3434 2981 3563 Face 7056 22403 22500 22402 Face 7057 17353 18796 22602 Face 7058 14610 14608 19683 Face 7059 4022 4153 16656 Face 7060 22210 22306 22209 Face 7061 16433 16432 559 Face 7062 361 469 468 Face 7063 360 361 468 Face 7064 469 578 577 Face 7065 468 469 577 Face 7066 578 691 690 Face 7067 577 578 690 Face 7068 691 807 806 Face 7069 690 691 806 Face 7070 807 923 922 Face 7071 806 807 922 Face 7072 923 1032 1031 Face 7073 922 923 1031 Face 7074 1032 1145 1144 Face 7075 1031 1032 1144 Face 7076 1252 1251 1144 Face 7077 1145 1252 1144 Face 7078 1364 1363 1251 Face 7079 1252 1364 1251 Face 7080 1478 1477 1363 Face 7081 1364 1478 1363 Face 7082 1590 1589 1477 Face 7083 1478 1590 1477 Face 7084 1700 1699 1589 Face 7085 1590 1700 1589 Face 7086 1700 1810 1809 Face 7087 1699 1700 1809 Face 7088 1810 1930 1929 Face 7089 1809 1810 1929 Face 7090 1930 2055 2054 Face 7091 1929 1930 2054 Face 7092 2055 2184 2183 Face 7093 2054 2055 2183 Face 7094 2184 2310 2309 Face 7095 2183 2184 2309 Face 7096 2310 2439 2438 Face 7097 2309 2310 2438 Face 7098 2439 2568 2567 Face 7099 2438 2439 2567 Face 7100 2568 2699 2698 Face 7101 2567 2568 2698 Face 7102 2699 2829 2828 Face 7103 2698 2699 2828 Face 7104 2829 2963 2962 Face 7105 2828 2829 2962 Face 7106 3100 3099 2962 Face 7107 2963 3100 2962 Face 7108 3235 3234 3099 Face 7109 3100 3235 3099 Face 7110 3362 3361 3234 Face 7111 3235 3362 3234 Face 7112 3490 3489 3361 Face 7113 3362 3490 3361 Face 7114 3619 3618 3489 Face 7115 3490 3619 3489 Face 7116 3619 3749 3748 Face 7117 3618 3619 3748 Face 7118 3749 3882 3881 Face 7119 3748 3749 3881 Face 7120 3882 4010 4009 Face 7121 3881 3882 4009 Face 7122 4010 4139 4138 Face 7123 4009 4010 4138 Face 7124 4268 4267 4138 Face 7125 4139 4268 4138 Face 7126 4394 4393 4267 Face 7127 4268 4394 4267 Face 7128 4525 4524 4393 Face 7129 4394 4525 4393 Face 7130 4525 4656 4655 Face 7131 4524 4525 4655 Face 7132 4787 4786 4655 Face 7133 4656 4787 4655 Face 7134 4920 4919 4786 Face 7135 4787 4920 4786 Face 7136 5053 5052 4919 Face 7137 4920 5053 4919 Face 7138 5179 5178 5052 Face 7139 5053 5179 5052 Face 7140 5307 5306 5178 Face 7141 5179 5307 5178 Face 7142 5307 5437 5436 Face 7143 5306 5307 5436 Face 7144 5564 5563 5436 Face 7145 5437 5564 5436 Face 7146 5564 5690 5689 Face 7147 5563 5564 5689 Face 7148 5690 5815 5814 Face 7149 5689 5690 5814 Face 7150 5815 5943 5942 Face 7151 5814 5815 5942 Face 7152 5943 6070 6069 Face 7153 5942 5943 6069 Face 7154 6070 6196 6195 Face 7155 6069 6070 6195 Face 7156 6196 6316 6315 Face 7157 6195 6196 6315 Face 7158 6316 6438 6437 Face 7159 6315 6316 6437 Face 7160 6438 6563 6562 Face 7161 6437 6438 6562 Face 7162 6563 1753 5893 Face 7163 6562 6563 5893 Face 7164 1753 999 4205 Face 7165 5893 1753 4205 Face 7166 999 3283 3806 Face 7167 4205 999 3806 Face 7168 3283 5745 2762 Face 7169 3806 3283 2762 Face 7170 5745 2892 3028 Face 7171 2762 5745 3028 Face 7172 5750 3114 5626 Face 7173 2892 5626 3028 Face 7174 13506 13505 13410 Face 7175 13386 13008 893 Face 7176 15129 14089 15462 Face 7177 11111 11173 11172 Face 7178 11961 12046 11960 Face 7179 8024 13178 13084 Face 7180 11604 11303 34638 Face 7181 7687 7801 7800 Face 7182 6118 6119 6244 Face 7183 34587 34577 34324 Face 7184 2620 2622 2232 Face 7185 9323 5876 5749 Face 7186 6121 6120 5992 Face 7187 5993 6121 5992 Face 7188 1200 1199 2625 Face 7189 4055 4184 4183 Face 7190 11382 6653 6590 Face 7191 4961 5091 5090 Face 7192 394 502 501 Face 7193 3000 3137 2999 Face 7194 34762 34374 34815 Face 7195 502 611 610 Face 7196 957 1067 1066 Face 7197 2258 2133 2134 Face 7198 1514 1625 1624 Face 7199 2475 2476 2604 Face 7200 6489 1793 1791 Face 7201 6488 6489 1791 Face 7202 2607 2738 2606 Face 7203 6233 6234 6353 Face 7204 13291 14201 16191 Face 7205 10850 3556 245 Face 7206 544 3960 3961 Face 7207 57 544 3961 Face 7208 3960 531 6007 Face 7209 3961 3960 6007 Face 7210 6137 1766 61 Face 7211 3198 103 190 Face 7212 8570 11231 10013 Face 7213 11961 11960 11876 Face 7214 8037 8019 8036 Face 7215 1998 3956 4076 Face 7216 21629 21630 21724 Face 7217 22204 22203 22108 Face 7218 22594 22593 22499 Face 7219 230 3116 4807 Face 7220 14339 14340 14457 Face 7221 11436 15164 12086 Face 7222 13126 34477 34642 Face 7223 34608 34518 34456 Face 7224 470 579 578 Face 7225 469 470 578 Face 7226 579 692 691 Face 7227 578 579 691 Face 7228 692 808 807 Face 7229 691 692 807 Face 7230 808 924 923 Face 7231 807 808 923 Face 7232 924 1033 1032 Face 7233 923 924 1032 Face 7234 1146 1145 1032 Face 7235 1033 1146 1032 Face 7236 1253 1252 1145 Face 7237 1146 1253 1145 Face 7238 1365 1364 1252 Face 7239 1253 1365 1252 Face 7240 1479 1478 1364 Face 7241 1365 1479 1364 Face 7242 1591 1590 1478 Face 7243 1479 1591 1478 Face 7244 1701 1700 1590 Face 7245 1591 1701 1590 Face 7246 1811 1810 1700 Face 7247 1701 1811 1700 Face 7248 1931 1930 1810 Face 7249 1811 1931 1810 Face 7250 1931 2056 2055 Face 7251 1930 1931 2055 Face 7252 2185 2184 2055 Face 7253 2056 2185 2055 Face 7254 2311 2310 2184 Face 7255 2185 2311 2184 Face 7256 2440 2439 2310 Face 7257 2311 2440 2310 Face 7258 2569 2568 2439 Face 7259 2440 2569 2439 Face 7260 2569 2700 2699 Face 7261 2568 2569 2699 Face 7262 2700 2830 2829 Face 7263 2699 2700 2829 Face 7264 2964 2963 2829 Face 7265 2830 2964 2829 Face 7266 3101 3100 2963 Face 7267 2964 3101 2963 Face 7268 3236 3235 3100 Face 7269 3101 3236 3100 Face 7270 3363 3362 3235 Face 7271 3236 3363 3235 Face 7272 3491 3490 3362 Face 7273 3363 3491 3362 Face 7274 3620 3619 3490 Face 7275 3491 3620 3490 Face 7276 3620 3750 3749 Face 7277 3619 3620 3749 Face 7278 3750 3883 3882 Face 7279 3749 3750 3882 Face 7280 3883 4011 4010 Face 7281 3882 3883 4010 Face 7282 4011 4140 4139 Face 7283 4010 4011 4139 Face 7284 4269 4268 4139 Face 7285 4140 4269 4139 Face 7286 4395 4394 4268 Face 7287 4269 4395 4268 Face 7288 4395 4526 4525 Face 7289 4394 4395 4525 Face 7290 4526 4657 4656 Face 7291 4525 4526 4656 Face 7292 4657 4788 4787 Face 7293 4656 4657 4787 Face 7294 4921 4920 4787 Face 7295 4788 4921 4787 Face 7296 5054 5053 4920 Face 7297 4921 5054 4920 Face 7298 5180 5179 5053 Face 7299 5054 5180 5053 Face 7300 5308 5307 5179 Face 7301 5180 5308 5179 Face 7302 5438 5437 5307 Face 7303 5308 5438 5307 Face 7304 5565 5564 5437 Face 7305 5438 5565 5437 Face 7306 5691 5690 5564 Face 7307 5565 5691 5564 Face 7308 5691 5816 5815 Face 7309 5690 5691 5815 Face 7310 5816 5944 5943 Face 7311 5815 5816 5943 Face 7312 5944 6071 6070 Face 7313 5943 5944 6070 Face 7314 6071 6197 6196 Face 7315 6070 6071 6196 Face 7316 6197 6317 6316 Face 7317 6196 6197 6316 Face 7318 6317 6439 6438 Face 7319 6316 6317 6438 Face 7320 6439 6564 6563 Face 7321 6438 6439 6563 Face 7322 6564 1752 1753 Face 7323 6563 6564 1753 Face 7324 1752 4077 999 Face 7325 1753 1752 999 Face 7326 4077 3288 3283 Face 7327 999 4077 3283 Face 7328 3288 5621 5745 Face 7329 3283 3288 5745 Face 7330 2765 2892 5745 Face 7331 5621 2765 5745 Face 7332 5750 5877 14837 Face 7333 2765 5750 2892 Face 7334 13317 13411 13316 Face 7335 2382 10926 2381 Face 7336 12222 12221 12136 Face 7337 12137 12222 12136 Face 7338 11175 11244 11174 Face 7339 8542 16086 16241 Face 7340 13673 3031 3573 Face 7341 31476 31475 31371 Face 7342 1972 1971 1851 Face 7343 4315 4316 4441 Face 7344 1740 1739 1630 Face 7345 6121 6247 6120 Face 7346 613 612 503 Face 7347 4967 4968 5097 Face 7348 6247 6246 6120 Face 7349 4960 4961 5090 Face 7350 4835 4968 4967 Face 7351 426 425 6471 Face 7352 4828 4961 4960 Face 7353 2737 2736 2605 Face 7354 4433 4434 4563 Face 7355 854 853 737 Face 7356 34544 34360 34767 Face 7357 1846 1966 1965 Face 7358 1180 1181 1288 Face 7359 1793 181 1905 Face 7360 1791 1793 1905 Face 7361 3678 2364 2496 Face 7362 6120 6246 6119 Face 7363 34369 34483 34596 Face 7364 4836 4837 4969 Face 7365 545 3832 3960 Face 7366 544 545 3960 Face 7367 3832 422 531 Face 7368 3960 3832 531 Face 7369 190 189 3198 Face 7370 422 190 531 Face 7371 13746 13031 10868 Face 7372 12017 12932 12739 Face 7373 12268 11615 11694 Face 7374 12842 10741 13271 Face 7375 34817 12827 11768 Face 7376 19487 19486 19406 Face 7377 9177 230 4807 Face 7378 15003 642 4197 Face 7379 21537 21630 21629 Face 7380 14608 15165 19683 Face 7381 14122 14333 1580 Face 7382 1493 6842 14476 Face 7383 34731 34618 34601 Face 7384 13880 13898 13879 Face 7385 34778 34811 34765 Face 7386 4946 4947 5077 Face 7387 693 809 808 Face 7388 692 693 808 Face 7389 809 925 924 Face 7390 808 809 924 Face 7391 1034 1033 924 Face 7392 925 1034 924 Face 7393 1034 1147 1146 Face 7394 1033 1034 1146 Face 7395 1254 1253 1146 Face 7396 1147 1254 1146 Face 7397 1366 1365 1253 Face 7398 1254 1366 1253 Face 7399 1480 1479 1365 Face 7400 1366 1480 1365 Face 7401 1592 1591 1479 Face 7402 1480 1592 1479 Face 7403 1702 1701 1591 Face 7404 1592 1702 1591 Face 7405 1812 1811 1701 Face 7406 1702 1812 1701 Face 7407 1932 1931 1811 Face 7408 1812 1932 1811 Face 7409 2057 2056 1931 Face 7410 1932 2057 1931 Face 7411 2186 2185 2056 Face 7412 2057 2186 2056 Face 7413 2186 2312 2311 Face 7414 2185 2186 2311 Face 7415 2441 2440 2311 Face 7416 2312 2441 2311 Face 7417 2441 2570 2569 Face 7418 2440 2441 2569 Face 7419 2570 2701 2700 Face 7420 2569 2570 2700 Face 7421 2701 2831 2830 Face 7422 2700 2701 2830 Face 7423 2831 2965 2964 Face 7424 2830 2831 2964 Face 7425 3102 3101 2964 Face 7426 2965 3102 2964 Face 7427 3237 3236 3101 Face 7428 3102 3237 3101 Face 7429 3364 3363 3236 Face 7430 3237 3364 3236 Face 7431 3492 3491 3363 Face 7432 3364 3492 3363 Face 7433 3621 3620 3491 Face 7434 3492 3621 3491 Face 7435 3621 3751 3750 Face 7436 3620 3621 3750 Face 7437 3751 3884 3883 Face 7438 3750 3751 3883 Face 7439 3884 4012 4011 Face 7440 3883 3884 4011 Face 7441 4012 4141 4140 Face 7442 4011 4012 4140 Face 7443 4270 4269 4140 Face 7444 4141 4270 4140 Face 7445 4270 4396 4395 Face 7446 4269 4270 4395 Face 7447 4527 4526 4395 Face 7448 4396 4527 4395 Face 7449 4527 4658 4657 Face 7450 4526 4527 4657 Face 7451 4658 4789 4788 Face 7452 4657 4658 4788 Face 7453 4922 4921 4788 Face 7454 4789 4922 4788 Face 7455 5055 5054 4921 Face 7456 4922 5055 4921 Face 7457 5181 5180 5054 Face 7458 5055 5181 5054 Face 7459 5309 5308 5180 Face 7460 5181 5309 5180 Face 7461 5439 5438 5308 Face 7462 5309 5439 5308 Face 7463 5566 5565 5438 Face 7464 5439 5566 5438 Face 7465 5692 5691 5565 Face 7466 5566 5692 5565 Face 7467 5692 5817 5816 Face 7468 5691 5692 5816 Face 7469 5945 5944 5816 Face 7470 5817 5945 5816 Face 7471 6072 6071 5944 Face 7472 5945 6072 5944 Face 7473 6198 6197 6071 Face 7474 6072 6198 6071 Face 7475 6198 6318 6317 Face 7476 6197 6198 6317 Face 7477 6318 6440 6439 Face 7478 6317 6318 6439 Face 7479 6440 6565 6564 Face 7480 6439 6440 6564 Face 7481 6565 1644 1752 Face 7482 6564 6565 1752 Face 7483 1644 1422 4077 Face 7484 1752 1644 4077 Face 7485 1422 3289 3288 Face 7486 4077 1422 3288 Face 7487 3289 5492 5621 Face 7488 3288 3289 5621 Face 7489 2635 2765 5621 Face 7490 5492 2635 5621 Face 7491 5877 6004 4619 Face 7492 2635 5877 2765 Face 7493 13793 13792 13697 Face 7494 12026 12627 13578 Face 7495 11193 11192 11130 Face 7496 22305 22304 22208 Face 7497 11885 11884 11803 Face 7498 12881 12973 12880 Face 7499 6970 6971 396 Face 7500 13367 13275 13181 Face 7501 3665 3666 10022 Face 7502 8767 1985 170 Face 7503 4312 4438 4437 Face 7504 518 14629 3956 Face 7505 6365 6366 6487 Face 7506 6247 6366 6365 Face 7507 10140 3927 3926 Face 7508 3920 3921 4048 Face 7509 4308 4309 4434 Face 7510 4827 4828 4960 Face 7511 2737 2864 2736 Face 7512 2864 3000 2863 Face 7513 10381 7724 6512 Face 7514 3655 3785 3784 Face 7515 1401 1400 1288 Face 7516 1099 4340 1995 Face 7517 1972 2098 1971 Face 7518 1672 1777 1671 Face 7519 6246 6365 6364 Face 7520 6357 6479 6478 Face 7521 4970 5100 5099 Face 7522 6245 6246 6364 Face 7523 10628 4443 4442 Face 7524 5242 5117 1647 Face 7525 3701 1662 422 Face 7526 3832 3701 422 Face 7527 1662 189 190 Face 7528 422 1662 190 Face 7529 12017 38 12932 Face 7530 278 6387 15001 Face 7531 13271 13367 13181 Face 7532 13480 13387 8641 Face 7533 11015 30451 11016 Face 7534 34295 34353 34284 Face 7535 642 1743 4197 Face 7536 6008 23065 162 Face 7537 1743 230 9177 Face 7538 4197 1743 9177 Face 7539 15164 15033 12086 Face 7540 21673 160 2660 Face 7541 1585 1493 14476 Face 7542 14476 6842 14055 Face 7543 15264 14519 14508 Face 7544 15229 15264 14508 Face 7545 15711 15854 15710 Face 7546 21437 21532 21531 Face 7547 694 810 809 Face 7548 24953 1693 24819 Face 7549 810 926 925 Face 7550 809 810 925 Face 7551 926 1035 1034 Face 7552 925 926 1034 Face 7553 1035 1148 1147 Face 7554 1034 1035 1147 Face 7555 1255 1254 1147 Face 7556 1148 1255 1147 Face 7557 1367 1366 1254 Face 7558 1255 1367 1254 Face 7559 1481 1480 1366 Face 7560 1367 1481 1366 Face 7561 1593 1592 1480 Face 7562 1481 1593 1480 Face 7563 1703 1702 1592 Face 7564 1593 1703 1592 Face 7565 1813 1812 1702 Face 7566 1703 1813 1702 Face 7567 1933 1932 1812 Face 7568 1813 1933 1812 Face 7569 2058 2057 1932 Face 7570 1933 2058 1932 Face 7571 2187 2186 2057 Face 7572 2058 2187 2057 Face 7573 2313 2312 2186 Face 7574 2187 2313 2186 Face 7575 2442 2441 2312 Face 7576 2313 2442 2312 Face 7577 2571 2570 2441 Face 7578 2442 2571 2441 Face 7579 2571 2702 2701 Face 7580 2570 2571 2701 Face 7581 2702 2832 2831 Face 7582 2701 2702 2831 Face 7583 2832 2966 2965 Face 7584 2831 2832 2965 Face 7585 2966 3103 3102 Face 7586 2965 2966 3102 Face 7587 3238 3237 3102 Face 7588 3103 3238 3102 Face 7589 3365 3364 3237 Face 7590 3238 3365 3237 Face 7591 3493 3492 3364 Face 7592 3365 3493 3364 Face 7593 3622 3621 3492 Face 7594 3493 3622 3492 Face 7595 3752 3751 3621 Face 7596 3622 3752 3621 Face 7597 3885 3884 3751 Face 7598 3752 3885 3751 Face 7599 4013 4012 3884 Face 7600 3885 4013 3884 Face 7601 4142 4141 4012 Face 7602 4013 4142 4012 Face 7603 4142 4271 4270 Face 7604 4141 4142 4270 Face 7605 4271 4397 4396 Face 7606 4270 4271 4396 Face 7607 4528 4527 4396 Face 7608 4397 4528 4396 Face 7609 4528 4659 4658 Face 7610 4527 4528 4658 Face 7611 4659 4790 4789 Face 7612 4658 4659 4789 Face 7613 4923 4922 4789 Face 7614 4790 4923 4789 Face 7615 5056 5055 4922 Face 7616 4923 5056 4922 Face 7617 5182 5181 5055 Face 7618 5056 5182 5055 Face 7619 5310 5309 5181 Face 7620 5182 5310 5181 Face 7621 5440 5439 5309 Face 7622 5310 5440 5309 Face 7623 5567 5566 5439 Face 7624 5440 5567 5439 Face 7625 5693 5692 5566 Face 7626 5567 5693 5566 Face 7627 5818 5817 5692 Face 7628 5693 5818 5692 Face 7629 5946 5945 5817 Face 7630 5818 5946 5817 Face 7631 6073 6072 5945 Face 7632 5946 6073 5945 Face 7633 6199 6198 6072 Face 7634 6073 6199 6072 Face 7635 6319 6318 6198 Face 7636 6199 6319 6198 Face 7637 6441 6440 6318 Face 7638 6319 6441 6318 Face 7639 6441 6566 6565 Face 7640 6440 6441 6565 Face 7641 6566 1643 1644 Face 7642 6565 6566 1644 Face 7643 1643 3674 1422 Face 7644 1644 1643 1422 Face 7645 3674 3290 3289 Face 7646 1422 3674 3289 Face 7647 5366 5492 3289 Face 7648 3290 5366 3289 Face 7649 2504 2635 5492 Face 7650 5366 2504 5492 Face 7651 2373 6004 2504 Face 7652 2635 2504 5877 Face 7653 13508 13605 13507 Face 7654 13698 13793 13697 Face 7655 12561 6692 10740 Face 7656 13284 12439 1674 Face 7657 2277 12184 13653 Face 7658 11518 11923 12450 Face 7659 23154 24016 19706 Face 7660 5469 8517 5124 Face 7661 13275 12360 12269 Face 7662 3034 15398 3305 Face 7663 3787 3919 3786 Face 7664 3657 3787 3656 Face 7665 1404 1517 1403 Face 7666 6246 6247 6365 Face 7667 6488 1791 1790 Face 7668 6478 862 660 Face 7669 6473 6472 6350 Face 7670 4435 4565 4564 Face 7671 4565 4697 4696 Face 7672 3137 3136 2999 Face 7673 3000 2999 2863 Face 7674 2260 8617 2259 Face 7675 1888 2009 2008 Face 7676 16210 15329 5474 Face 7677 502 503 611 Face 7678 13949 11620 15741 Face 7679 5087 5086 4956 Face 7680 2095 2094 1968 Face 7681 3956 14629 14628 Face 7682 6365 6487 6486 Face 7683 6253 6254 6372 Face 7684 2118 2245 5242 Face 7685 6364 6365 6486 Face 7686 316 1662 3701 Face 7687 10355 545 10478 Face 7688 316 188 189 Face 7689 1662 316 189 Face 7690 15001 6387 894 Face 7691 189 188 278 Face 7692 8517 3320 4212 Face 7693 866 18419 4329 Face 7694 11692 12631 34617 Face 7695 30527 30526 25579 Face 7696 6922 7812 10081 Face 7697 2805 239 2637 Face 7698 5069 14505 2003 Face 7699 16656 16655 16496 Face 7700 210 642 15003 Face 7701 1607 1716 4153 Face 7702 4022 1607 4153 Face 7703 14340 14458 14457 Face 7704 9555 8957 9187 Face 7705 14519 16106 16088 Face 7706 14508 14519 16088 Face 7707 16328 16327 16170 Face 7708 21625 21626 21720 Face 7709 809 693 694 Face 7710 4737 1430 13914 Face 7711 811 927 926 Face 7712 810 811 926 Face 7713 927 1036 1035 Face 7714 926 927 1035 Face 7715 1036 1149 1148 Face 7716 1035 1036 1148 Face 7717 1256 1255 1148 Face 7718 1149 1256 1148 Face 7719 1368 1367 1255 Face 7720 1256 1368 1255 Face 7721 1482 1481 1367 Face 7722 1368 1482 1367 Face 7723 1594 1593 1481 Face 7724 1482 1594 1481 Face 7725 1704 1703 1593 Face 7726 1594 1704 1593 Face 7727 1814 1813 1703 Face 7728 1704 1814 1703 Face 7729 1934 1933 1813 Face 7730 1814 1934 1813 Face 7731 2059 2058 1933 Face 7732 1934 2059 1933 Face 7733 2188 2187 2058 Face 7734 2059 2188 2058 Face 7735 2314 2313 2187 Face 7736 2188 2314 2187 Face 7737 2443 2442 2313 Face 7738 2314 2443 2313 Face 7739 2572 2571 2442 Face 7740 2443 2572 2442 Face 7741 2703 2702 2571 Face 7742 2572 2703 2571 Face 7743 2833 2832 2702 Face 7744 2703 2833 2702 Face 7745 2967 2966 2832 Face 7746 2833 2967 2832 Face 7747 3104 3103 2966 Face 7748 2967 3104 2966 Face 7749 3239 3238 3103 Face 7750 3104 3239 3103 Face 7751 3366 3365 3238 Face 7752 3239 3366 3238 Face 7753 3494 3493 3365 Face 7754 3366 3494 3365 Face 7755 3623 3622 3493 Face 7756 3494 3623 3493 Face 7757 3753 3752 3622 Face 7758 3623 3753 3622 Face 7759 3886 3885 3752 Face 7760 3753 3886 3752 Face 7761 4014 4013 3885 Face 7762 3886 4014 3885 Face 7763 4014 4143 4142 Face 7764 4013 4014 4142 Face 7765 4143 4272 4271 Face 7766 4142 4143 4271 Face 7767 4398 4397 4271 Face 7768 4272 4398 4271 Face 7769 4398 4529 4528 Face 7770 4397 4398 4528 Face 7771 4529 4660 4659 Face 7772 4528 4529 4659 Face 7773 4660 4791 4790 Face 7774 4659 4660 4790 Face 7775 4924 4923 4790 Face 7776 4791 4924 4790 Face 7777 5057 5056 4923 Face 7778 4924 5057 4923 Face 7779 5183 5182 5056 Face 7780 5057 5183 5056 Face 7781 5311 5310 5182 Face 7782 5183 5311 5182 Face 7783 5441 5440 5310 Face 7784 5311 5441 5310 Face 7785 5568 5567 5440 Face 7786 5441 5568 5440 Face 7787 5694 5693 5567 Face 7788 5568 5694 5567 Face 7789 5819 5818 5693 Face 7790 5694 5819 5693 Face 7791 5947 5946 5818 Face 7792 5819 5947 5818 Face 7793 6074 6073 5946 Face 7794 5947 6074 5946 Face 7795 6200 6199 6073 Face 7796 6074 6200 6073 Face 7797 6320 6319 6199 Face 7798 6200 6320 6199 Face 7799 6442 6441 6319 Face 7800 6320 6442 6319 Face 7801 6442 6567 6566 Face 7802 6441 6442 6566 Face 7803 1534 1643 6566 Face 7804 6567 1534 6566 Face 7805 626 3674 1643 Face 7806 1534 626 1643 Face 7807 626 3418 3290 Face 7808 3674 626 3290 Face 7809 3418 5236 5366 Face 7810 3290 3418 5366 Face 7811 5236 2373 2504 Face 7812 5366 5236 2504 Face 7813 11560 11638 11559 Face 7814 5112 2372 2373 Face 7815 13605 13698 13697 Face 7816 13604 13605 13697 Face 7817 860 12439 13284 Face 7818 10740 860 13284 Face 7819 9874 4466 4861 Face 7820 12439 9874 1674 Face 7821 13771 9630 10967 Face 7822 20111 20112 20190 Face 7823 13611 13704 13703 Face 7824 13699 13794 13698 Face 7825 5726 5854 5853 Face 7826 2487 2616 2486 Face 7827 5100 5101 5223 Face 7828 2527 2658 2657 Face 7829 2861 2862 2997 Face 7830 6366 6488 6487 Face 7831 4434 4435 4564 Face 7832 2998 3135 3134 Face 7833 2101 2228 2227 Face 7834 1863 1864 2632 Face 7835 738 737 622 Face 7836 2477 2606 2476 Face 7837 738 854 737 Face 7838 11793 11874 11873 Face 7839 643 3804 630 Face 7840 506 615 505 Face 7841 4045 4046 4174 Face 7842 2915 9165 7466 Face 7843 11721 11720 11641 Face 7844 10877 2248 10876 Face 7845 200 1790 1791 Face 7846 1570 1790 8042 Face 7847 5117 1648 1647 Face 7848 5099 5100 5222 Face 7849 4076 14628 3959 Face 7850 8958 10435 4981 Face 7851 187 894 6387 Face 7852 188 187 6387 Face 7853 5114 4329 5238 Face 7854 6535 7193 7520 Face 7855 14895 14528 14527 Face 7856 3320 4458 4212 Face 7857 3035 20199 14332 Face 7858 9177 4807 4801 Face 7859 16112 3959 4464 Face 7860 2637 210 15003 Face 7861 3334 239 3333 Face 7862 4748 4880 1716 Face 7863 1607 4748 1716 Face 7864 14229 14230 14339 Face 7865 14813 14453 14620 Face 7866 16106 1019 1464 Face 7867 16088 16106 1464 Face 7868 19882 20659 20658 Face 7869 20065 19337 19336 Face 7870 15400 4737 13914 Face 7871 2288 3835 558 Face 7872 17467 811 810 Face 7873 22327 22231 22612 Face 7874 2590 19139 19029 Face 7875 34640 34428 34772 Face 7876 1037 1150 1149 Face 7877 1036 1037 1149 Face 7878 1257 1256 1149 Face 7879 1150 1257 1149 Face 7880 1369 1368 1256 Face 7881 1257 1369 1256 Face 7882 1483 1482 1368 Face 7883 1369 1483 1368 Face 7884 1595 1594 1482 Face 7885 1483 1595 1482 Face 7886 1705 1704 1594 Face 7887 1595 1705 1594 Face 7888 1815 1814 1704 Face 7889 1705 1815 1704 Face 7890 1935 1934 1814 Face 7891 1815 1935 1814 Face 7892 2060 2059 1934 Face 7893 1935 2060 1934 Face 7894 2189 2188 2059 Face 7895 2060 2189 2059 Face 7896 2315 2314 2188 Face 7897 2189 2315 2188 Face 7898 2444 2443 2314 Face 7899 2315 2444 2314 Face 7900 2573 2572 2443 Face 7901 2444 2573 2443 Face 7902 2704 2703 2572 Face 7903 2573 2704 2572 Face 7904 2834 2833 2703 Face 7905 2704 2834 2703 Face 7906 2968 2967 2833 Face 7907 2834 2968 2833 Face 7908 3105 3104 2967 Face 7909 2968 3105 2967 Face 7910 3240 3239 3104 Face 7911 3105 3240 3104 Face 7912 3367 3366 3239 Face 7913 3240 3367 3239 Face 7914 3495 3494 3366 Face 7915 3367 3495 3366 Face 7916 3624 3623 3494 Face 7917 3495 3624 3494 Face 7918 3754 3753 3623 Face 7919 3624 3754 3623 Face 7920 3887 3886 3753 Face 7921 3754 3887 3753 Face 7922 4015 4014 3886 Face 7923 3887 4015 3886 Face 7924 4015 4144 4143 Face 7925 4014 4015 4143 Face 7926 4273 4272 4143 Face 7927 4144 4273 4143 Face 7928 4273 4399 4398 Face 7929 4272 4273 4398 Face 7930 4399 4530 4529 Face 7931 4398 4399 4529 Face 7932 4530 4661 4660 Face 7933 4529 4530 4660 Face 7934 4661 4792 4791 Face 7935 4660 4661 4791 Face 7936 4925 4924 4791 Face 7937 4792 4925 4791 Face 7938 5058 5057 4924 Face 7939 4925 5058 4924 Face 7940 5184 5183 5057 Face 7941 5058 5184 5057 Face 7942 5312 5311 5183 Face 7943 5184 5312 5183 Face 7944 5442 5441 5311 Face 7945 5312 5442 5311 Face 7946 5569 5568 5441 Face 7947 5442 5569 5441 Face 7948 5695 5694 5568 Face 7949 5569 5695 5568 Face 7950 5820 5819 5694 Face 7951 5695 5820 5694 Face 7952 5948 5947 5819 Face 7953 5820 5948 5819 Face 7954 6075 6074 5947 Face 7955 5948 6075 5947 Face 7956 6201 6200 6074 Face 7957 6075 6201 6074 Face 7958 6321 6320 6200 Face 7959 6201 6321 6200 Face 7960 6443 6442 6320 Face 7961 6321 6443 6320 Face 7962 6443 6568 6567 Face 7963 6442 6443 6567 Face 7964 6568 1533 1534 Face 7965 6567 6568 1534 Face 7966 628 626 1534 Face 7967 1533 628 1534 Face 7968 3419 3418 626 Face 7969 628 3419 626 Face 7970 5112 5236 3418 Face 7971 3419 5112 3418 Face 7972 3032 34275 34490 Face 7973 5236 5112 2373 Face 7974 11482 11560 11481 Face 7975 12302 12303 12393 Face 7976 11318 11399 11317 Face 7977 13792 13793 7743 Face 7978 11560 11559 11481 Face 7979 11641 11640 11562 Face 7980 735 851 850 Face 7981 9068 7509 7623 Face 7982 34368 34619 34717 Face 7983 1067 1068 1180 Face 7984 1636 1637 8275 Face 7985 7897 8004 1672 Face 7986 2526 2527 2657 Face 7987 1850 1851 1970 Face 7988 5223 5224 5355 Face 7989 5224 5356 5355 Face 7990 393 394 501 Face 7991 1846 1847 1966 Face 7992 4953 4954 5083 Face 7993 4697 4828 4827 Face 7994 1967 2093 2092 Face 7995 33621 33746 33620 Face 7996 1966 1967 2092 Face 7997 2092 2093 2219 Face 7998 615 614 505 Face 7999 409 4204 3411 Face 8000 5977 5978 6104 Face 8001 4175 4305 4304 Face 8002 5871 5999 5998 Face 8003 5866 5994 5865 Face 8004 301 6775 6776 Face 8005 2101 2100 1974 Face 8006 5223 5355 5354 Face 8007 4969 4970 5099 Face 8008 4464 14747 14748 Face 8009 2357 2486 2356 Face 8010 100 6411 894 Face 8011 187 100 894 Face 8012 1538 3072 2023 Face 8013 29960 30021 29959 Face 8014 3958 3320 8517 Face 8015 3297 3958 8517 Face 8016 10714 14308 7706 Face 8017 1678 11289 11760 Face 8018 16523 14734 8563 Face 8019 5115 1157 2372 Face 8020 239 210 2637 Face 8021 3334 3333 4615 Face 8022 4748 3332 3457 Face 8023 4880 4748 3457 Face 8024 6842 14146 14055 Face 8025 14734 14082 8563 Face 8026 1019 1377 3506 Face 8027 1464 1019 3506 Face 8028 21343 21344 21436 Face 8029 3436 8364 3508 Face 8030 1234 14058 904 Face 8031 16077 16234 16233 Face 8032 15864 15863 24709 Face 8033 30055 30054 29993 Face 8034 452 562 17187 Face 8035 16058 2162 6722 Face 8036 34638 34771 34668 Face 8037 1037 1038 1150 Face 8038 1258 1257 1150 Face 8039 1151 1258 1150 Face 8040 1370 1369 1257 Face 8041 1258 1370 1257 Face 8042 1484 1483 1369 Face 8043 1370 1484 1369 Face 8044 1596 1595 1483 Face 8045 1484 1596 1483 Face 8046 1706 1705 1595 Face 8047 1596 1706 1595 Face 8048 1816 1815 1705 Face 8049 1706 1816 1705 Face 8050 1936 1935 1815 Face 8051 1816 1936 1815 Face 8052 2061 2060 1935 Face 8053 1936 2061 1935 Face 8054 2190 2189 2060 Face 8055 2061 2190 2060 Face 8056 2316 2315 2189 Face 8057 2190 2316 2189 Face 8058 2445 2444 2315 Face 8059 2316 2445 2315 Face 8060 2574 2573 2444 Face 8061 2445 2574 2444 Face 8062 2705 2704 2573 Face 8063 2574 2705 2573 Face 8064 2835 2834 2704 Face 8065 2705 2835 2704 Face 8066 2969 2968 2834 Face 8067 2835 2969 2834 Face 8068 3106 3105 2968 Face 8069 2969 3106 2968 Face 8070 3241 3240 3105 Face 8071 3106 3241 3105 Face 8072 3241 3368 3367 Face 8073 3240 3241 3367 Face 8074 3496 3495 3367 Face 8075 3368 3496 3367 Face 8076 3625 3624 3495 Face 8077 3496 3625 3495 Face 8078 3755 3754 3624 Face 8079 3625 3755 3624 Face 8080 3888 3887 3754 Face 8081 3755 3888 3754 Face 8082 4016 4015 3887 Face 8083 3888 4016 3887 Face 8084 4145 4144 4015 Face 8085 4016 4145 4015 Face 8086 4274 4273 4144 Face 8087 4145 4274 4144 Face 8088 4274 4400 4399 Face 8089 4273 4274 4399 Face 8090 4400 4531 4530 Face 8091 4399 4400 4530 Face 8092 4531 4662 4661 Face 8093 4530 4531 4661 Face 8094 4793 4792 4661 Face 8095 4662 4793 4661 Face 8096 4926 4925 4792 Face 8097 4793 4926 4792 Face 8098 5059 5058 4925 Face 8099 4926 5059 4925 Face 8100 5185 5184 5058 Face 8101 5059 5185 5058 Face 8102 5313 5312 5184 Face 8103 5185 5313 5184 Face 8104 5443 5442 5312 Face 8105 5313 5443 5312 Face 8106 5570 5569 5442 Face 8107 5443 5570 5442 Face 8108 5696 5695 5569 Face 8109 5570 5696 5569 Face 8110 5821 5820 5695 Face 8111 5696 5821 5695 Face 8112 5949 5948 5820 Face 8113 5821 5949 5820 Face 8114 6076 6075 5948 Face 8115 5949 6076 5948 Face 8116 6202 6201 6075 Face 8117 6076 6202 6075 Face 8118 6322 6321 6201 Face 8119 6202 6322 6201 Face 8120 6444 6443 6321 Face 8121 6322 6444 6321 Face 8122 6569 6568 6443 Face 8123 6444 6569 6443 Face 8124 1420 1533 6568 Face 8125 6569 1420 6568 Face 8126 627 628 1533 Face 8127 1420 627 1533 Face 8128 3156 3419 628 Face 8129 627 3156 628 Face 8130 3156 4982 5112 Face 8131 3419 3156 5112 Face 8132 11382 6749 6748 Face 8133 5112 4982 2372 Face 8134 4954 5084 5083 Face 8135 11115 11177 11114 Face 8136 2608 2739 2607 Face 8137 2602 2603 2733 Face 8138 10127 11837 11838 Face 8139 28004 34788 34362 Face 8140 6350 6472 6349 Face 8141 4176 4306 4305 Face 8142 1778 1894 1893 Face 8143 1777 1778 1893 Face 8144 1894 2015 2014 Face 8145 8110 1896 1779 Face 8146 851 965 850 Face 8147 3434 3563 1416 Face 8148 3152 3421 3544 Face 8149 961 1071 960 Face 8150 2094 2221 2093 Face 8151 845 846 959 Face 8152 4309 4435 4434 Face 8153 4564 4565 4696 Face 8154 3402 3531 3530 Face 8155 4050 4049 3921 Face 8156 2606 2605 2476 Face 8157 2093 2220 2219 Face 8158 5349 5350 5476 Face 8159 3785 3786 3917 Face 8160 503 612 611 Face 8161 433 426 6472 Face 8162 34417 34342 34360 Face 8163 6122 6121 5993 Face 8164 5992 6120 5991 Face 8165 5611 5736 5610 Face 8166 5100 5223 5222 Face 8167 6246 6245 6119 Face 8168 2615 2614 2485 Face 8169 5117 10997 1648 Face 8170 14747 4464 14628 Face 8171 2486 2485 2356 Face 8172 6535 2023 6508 Face 8173 6411 6535 6508 Face 8174 34316 34622 34445 Face 8175 4987 4234 1310 Face 8176 2660 160 6794 Face 8177 12544 12409 21463 Face 8178 34716 34641 34603 Face 8179 19407 19487 19406 Face 8180 2784 14113 2204 Face 8181 4484 3334 4615 Face 8182 239 2805 3333 Face 8183 2804 2803 3457 Face 8184 3332 2804 3457 Face 8185 14566 14686 14685 Face 8186 34609 977 34467 Face 8187 1377 16584 1466 Face 8188 3506 1377 1466 Face 8189 21626 21721 21720 Face 8190 21255 21348 21347 Face 8191 16076 16077 16233 Face 8192 552 2800 368 Face 8193 22327 12409 12544 Face 8194 21914 22012 22011 Face 8195 16053 16058 6722 Face 8196 2162 15890 15891 Face 8197 29210 34412 34432 Face 8198 14625 4070 15357 Face 8199 1152 1259 1258 Face 8200 1151 1152 1258 Face 8201 1371 1370 1258 Face 8202 1259 1371 1258 Face 8203 1485 1484 1370 Face 8204 1371 1485 1370 Face 8205 1597 1596 1484 Face 8206 1485 1597 1484 Face 8207 1707 1706 1596 Face 8208 1597 1707 1596 Face 8209 1817 1816 1706 Face 8210 1707 1817 1706 Face 8211 1937 1936 1816 Face 8212 1817 1937 1816 Face 8213 2062 2061 1936 Face 8214 1937 2062 1936 Face 8215 2191 2190 2061 Face 8216 2062 2191 2061 Face 8217 2317 2316 2190 Face 8218 2191 2317 2190 Face 8219 2446 2445 2316 Face 8220 2317 2446 2316 Face 8221 2575 2574 2445 Face 8222 2446 2575 2445 Face 8223 2706 2705 2574 Face 8224 2575 2706 2574 Face 8225 2836 2835 2705 Face 8226 2706 2836 2705 Face 8227 2970 2969 2835 Face 8228 2836 2970 2835 Face 8229 3107 3106 2969 Face 8230 2970 3107 2969 Face 8231 3242 3241 3106 Face 8232 3107 3242 3106 Face 8233 3242 3369 3368 Face 8234 3241 3242 3368 Face 8235 3497 3496 3368 Face 8236 3369 3497 3368 Face 8237 3626 3625 3496 Face 8238 3497 3626 3496 Face 8239 3756 3755 3625 Face 8240 3626 3756 3625 Face 8241 3889 3888 3755 Face 8242 3756 3889 3755 Face 8243 4017 4016 3888 Face 8244 3889 4017 3888 Face 8245 4146 4145 4016 Face 8246 4017 4146 4016 Face 8247 4146 4275 4274 Face 8248 4145 4146 4274 Face 8249 4275 4401 4400 Face 8250 4274 4275 4400 Face 8251 4532 4531 4400 Face 8252 4401 4532 4400 Face 8253 4663 4662 4531 Face 8254 4532 4663 4531 Face 8255 4794 4793 4662 Face 8256 4663 4794 4662 Face 8257 4794 4927 4926 Face 8258 4793 4794 4926 Face 8259 4927 5060 5059 Face 8260 4926 4927 5059 Face 8261 5186 5185 5059 Face 8262 5060 5186 5059 Face 8263 5314 5313 5185 Face 8264 5186 5314 5185 Face 8265 5444 5443 5313 Face 8266 5314 5444 5313 Face 8267 5571 5570 5443 Face 8268 5444 5571 5443 Face 8269 5697 5696 5570 Face 8270 5571 5697 5570 Face 8271 5822 5821 5696 Face 8272 5697 5822 5696 Face 8273 5950 5949 5821 Face 8274 5822 5950 5821 Face 8275 6077 6076 5949 Face 8276 5950 6077 5949 Face 8277 6203 6202 6076 Face 8278 6077 6203 6076 Face 8279 6323 6322 6202 Face 8280 6203 6323 6202 Face 8281 6445 6444 6322 Face 8282 6323 6445 6322 Face 8283 6570 6569 6444 Face 8284 6445 6570 6444 Face 8285 3414 1420 6569 Face 8286 6570 3414 6569 Face 8287 744 627 1420 Face 8288 3414 744 1420 Face 8289 3155 3156 627 Face 8290 744 3155 627 Face 8291 3155 4850 4982 Face 8292 3156 3155 4982 Face 8293 7847 13453 11094 Face 8294 4982 4850 5115 Face 8295 4696 4697 4827 Face 8296 4179 4309 4308 Face 8297 13584 13490 9326 Face 8298 4557 4558 4689 Face 8299 13055 13056 13149 Face 8300 11404 11487 11403 Face 8301 11565 11564 11486 Face 8302 13799 13798 13703 Face 8303 1893 1894 2014 Face 8304 2140 2139 2014 Face 8305 8481 8580 8579 Face 8306 1739 1851 1850 Face 8307 2015 2140 2014 Face 8308 1301 1300 1192 Face 8309 732 733 848 Face 8310 6240 6239 6113 Face 8311 4700 4831 4830 Face 8312 5858 5857 5729 Face 8313 1292 1291 1183 Face 8314 4178 4179 4308 Face 8315 3922 4050 3921 Face 8316 2864 2863 2736 Face 8317 2220 2348 2347 Face 8318 3536 3665 3535 Face 8319 614 613 504 Face 8320 4306 4432 4305 Face 8321 1847 1967 1966 Face 8322 4572 4573 4704 Face 8323 2484 2485 2613 Face 8324 1525 1524 1411 Face 8325 15195 15332 7083 Face 8326 5992 5991 5863 Face 8327 5867 5995 5994 Face 8328 1647 1648 3034 Face 8329 5864 5992 5863 Face 8330 2245 5117 5242 Face 8331 4830 4831 4963 Face 8332 34816 34633 34497 Face 8333 6535 6411 7288 Face 8334 15 4987 1310 Face 8335 2023 15 1310 Face 8336 11615 2277 13653 Face 8337 3377 6511 3504 Face 8338 11694 11615 13653 Face 8339 9612 9498 9499 Face 8340 34605 18840 20155 Face 8341 4873 5005 15049 Face 8342 2362 8726 15579 Face 8343 2804 5005 4873 Face 8344 983 1658 15049 Face 8345 2803 2804 4873 Face 8346 5005 15053 15049 Face 8347 3563 3690 1416 Face 8348 549 14623 14505 Face 8349 16584 16442 16441 Face 8350 1466 16584 16441 Face 8351 13911 19358 11516 Face 8352 22511 14687 10327 Face 8353 16234 16398 16397 Face 8354 13914 1430 2936 Face 8355 31606 31720 31719 Face 8356 14332 20199 19344 Face 8357 6722 2162 15891 Face 8358 15890 6276 5776 Face 8359 6162 34740 18459 Face 8360 14439 14625 15357 Face 8361 12559 34808 23930 Face 8362 11693 34727 34683 Face 8363 1372 1371 1259 Face 8364 1260 1372 1259 Face 8365 1486 1485 1371 Face 8366 1372 1486 1371 Face 8367 1598 1597 1485 Face 8368 1486 1598 1485 Face 8369 1708 1707 1597 Face 8370 1598 1708 1597 Face 8371 1818 1817 1707 Face 8372 1708 1818 1707 Face 8373 1938 1937 1817 Face 8374 1818 1938 1817 Face 8375 2063 2062 1937 Face 8376 1938 2063 1937 Face 8377 2192 2191 2062 Face 8378 2063 2192 2062 Face 8379 2318 2317 2191 Face 8380 2192 2318 2191 Face 8381 2447 2446 2317 Face 8382 2318 2447 2317 Face 8383 2576 2575 2446 Face 8384 2447 2576 2446 Face 8385 2707 2706 2575 Face 8386 2576 2707 2575 Face 8387 2837 2836 2706 Face 8388 2707 2837 2706 Face 8389 2971 2970 2836 Face 8390 2837 2971 2836 Face 8391 3108 3107 2970 Face 8392 2971 3108 2970 Face 8393 3243 3242 3107 Face 8394 3108 3243 3107 Face 8395 3370 3369 3242 Face 8396 3243 3370 3242 Face 8397 3498 3497 3369 Face 8398 3370 3498 3369 Face 8399 3627 3626 3497 Face 8400 3498 3627 3497 Face 8401 3757 3756 3626 Face 8402 3627 3757 3626 Face 8403 3890 3889 3756 Face 8404 3757 3890 3756 Face 8405 3890 4018 4017 Face 8406 3889 3890 4017 Face 8407 4018 4147 4146 Face 8408 4017 4018 4146 Face 8409 4147 4276 4275 Face 8410 4146 4147 4275 Face 8411 4276 4402 4401 Face 8412 4275 4276 4401 Face 8413 4533 4532 4401 Face 8414 4402 4533 4401 Face 8415 4664 4663 4532 Face 8416 4533 4664 4532 Face 8417 4795 4794 4663 Face 8418 4664 4795 4663 Face 8419 4795 4928 4927 Face 8420 4794 4795 4927 Face 8421 4928 5061 5060 Face 8422 4927 4928 5060 Face 8423 5187 5186 5060 Face 8424 5061 5187 5060 Face 8425 5315 5314 5186 Face 8426 5187 5315 5186 Face 8427 5445 5444 5314 Face 8428 5315 5445 5314 Face 8429 5572 5571 5444 Face 8430 5445 5572 5444 Face 8431 5698 5697 5571 Face 8432 5572 5698 5571 Face 8433 5823 5822 5697 Face 8434 5698 5823 5697 Face 8435 5951 5950 5822 Face 8436 5823 5951 5822 Face 8437 6078 6077 5950 Face 8438 5951 6078 5950 Face 8439 6204 6203 6077 Face 8440 6078 6204 6077 Face 8441 6324 6323 6203 Face 8442 6204 6324 6203 Face 8443 6446 6445 6323 Face 8444 6324 6446 6323 Face 8445 6571 6570 6445 Face 8446 6446 6571 6445 Face 8447 3543 3414 6570 Face 8448 6571 3543 6570 Face 8449 1528 744 3414 Face 8450 3543 1528 3414 Face 8451 3291 3155 744 Face 8452 1528 3291 744 Face 8453 34554 23023 34590 Face 8454 3155 3291 4850 Face 8455 12513 12601 12512 Face 8456 2396 2395 2268 Face 8457 1425 7466 2916 Face 8458 34442 34489 34583 Face 8459 9326 8256 12006 Face 8460 13095 12262 12006 Face 8461 11610 11676 11301 Face 8462 1315 11537 12741 Face 8463 5993 5992 5864 Face 8464 9002 9003 9115 Face 8465 2265 2264 2139 Face 8466 2140 2265 2139 Face 8467 2392 2391 2264 Face 8468 2265 2392 2264 Face 8469 3690 1417 1416 Face 8470 5865 5864 5736 Face 8471 9631 34318 10967 Face 8472 33359 33492 33358 Face 8473 1184 1292 1183 Face 8474 515 624 514 Face 8475 3790 3922 3789 Face 8476 4050 4179 4178 Face 8477 19568 19567 19486 Face 8478 12118 12899 10857 Face 8479 4561 4693 4692 Face 8480 5220 5221 5352 Face 8481 11518 11302 11923 Face 8482 1625 1626 1734 Face 8483 2473 2474 2602 Face 8484 4695 4696 4826 Face 8485 2603 2734 2733 Face 8486 13181 13275 12269 Face 8487 1413 1526 1412 Face 8488 27335 27334 27224 Face 8489 6120 6119 5991 Face 8490 5864 5863 5735 Face 8491 14653 21477 10109 Face 8492 4693 4824 4823 Face 8493 34281 34613 34367 Face 8494 2496 2364 2118 Face 8495 5598 4214 4987 Face 8496 15 5598 4987 Face 8497 3504 1320 124 Face 8498 4987 4214 39 Face 8499 11445 11364 12269 Face 8500 11017 11062 11061 Face 8501 2089 2090 2216 Face 8502 410 14036 3199 Face 8503 3118 410 3199 Face 8504 16432 560 559 Face 8505 16597 16432 16433 Face 8506 15255 549 161 Face 8507 15390 15255 161 Face 8508 161 549 14505 Face 8509 24119 14720 24121 Face 8510 16442 16433 16434 Face 8511 16441 16442 16434 Face 8512 15169 14659 15870 Face 8513 4332 10859 7177 Face 8514 367 552 368 Face 8515 15616 14877 14277 Face 8516 22301 22397 22396 Face 8517 14529 14901 14900 Face 8518 15891 15890 5776 Face 8519 6276 1117 2775 Face 8520 11016 11017 11061 Face 8521 865 1655 3928 Face 8522 15971 15975 5389 Face 8523 1373 1372 1260 Face 8524 20551 34712 20732 Face 8525 1487 1486 1372 Face 8526 1373 1487 1372 Face 8527 1599 1598 1486 Face 8528 1487 1599 1486 Face 8529 1709 1708 1598 Face 8530 1599 1709 1598 Face 8531 1819 1818 1708 Face 8532 1709 1819 1708 Face 8533 1939 1938 1818 Face 8534 1819 1939 1818 Face 8535 2064 2063 1938 Face 8536 1939 2064 1938 Face 8537 2193 2192 2063 Face 8538 2064 2193 2063 Face 8539 2319 2318 2192 Face 8540 2193 2319 2192 Face 8541 2448 2447 2318 Face 8542 2319 2448 2318 Face 8543 2577 2576 2447 Face 8544 2448 2577 2447 Face 8545 2708 2707 2576 Face 8546 2577 2708 2576 Face 8547 2838 2837 2707 Face 8548 2708 2838 2707 Face 8549 2972 2971 2837 Face 8550 2838 2972 2837 Face 8551 3109 3108 2971 Face 8552 2972 3109 2971 Face 8553 3244 3243 3108 Face 8554 3109 3244 3108 Face 8555 3371 3370 3243 Face 8556 3244 3371 3243 Face 8557 3371 3499 3498 Face 8558 3370 3371 3498 Face 8559 3499 3628 3627 Face 8560 3498 3499 3627 Face 8561 3628 3758 3757 Face 8562 3627 3628 3757 Face 8563 3758 3891 3890 Face 8564 3757 3758 3890 Face 8565 3891 4019 4018 Face 8566 3890 3891 4018 Face 8567 4019 4148 4147 Face 8568 4018 4019 4147 Face 8569 4148 4277 4276 Face 8570 4147 4148 4276 Face 8571 4277 4403 4402 Face 8572 4276 4277 4402 Face 8573 4534 4533 4402 Face 8574 4403 4534 4402 Face 8575 4665 4664 4533 Face 8576 4534 4665 4533 Face 8577 4796 4795 4664 Face 8578 4665 4796 4664 Face 8579 4796 4929 4928 Face 8580 4795 4796 4928 Face 8581 4929 5062 5061 Face 8582 4928 4929 5061 Face 8583 5188 5187 5061 Face 8584 5062 5188 5061 Face 8585 5188 5316 5315 Face 8586 5187 5188 5315 Face 8587 5316 5446 5445 Face 8588 5315 5316 5445 Face 8589 5573 5572 5445 Face 8590 5446 5573 5445 Face 8591 5699 5698 5572 Face 8592 5573 5699 5572 Face 8593 5824 5823 5698 Face 8594 5699 5824 5698 Face 8595 5952 5951 5823 Face 8596 5824 5952 5823 Face 8597 6079 6078 5951 Face 8598 5952 6079 5951 Face 8599 6205 6204 6078 Face 8600 6079 6205 6078 Face 8601 6325 6324 6204 Face 8602 6205 6325 6204 Face 8603 6325 6447 6446 Face 8604 6324 6325 6446 Face 8605 6572 6571 6446 Face 8606 6447 6572 6446 Face 8607 3542 3543 6571 Face 8608 6572 3542 6571 Face 8609 1535 1528 3543 Face 8610 3542 1535 3543 Face 8611 3154 3291 1528 Face 8612 1535 3154 1528 Face 8613 3163 1236 15245 Face 8614 9506 8542 15642 Face 8615 9165 4082 2916 Face 8616 9095 11941 10747 Face 8617 12305 12306 12396 Face 8618 4082 7049 2916 Face 8619 9051 9519 9633 Face 8620 2782 13197 5764 Face 8621 12314 12315 12405 Face 8622 11453 11610 11767 Face 8623 5865 5993 5864 Face 8624 12718 10619 3054 Face 8625 25152 20605 22926 Face 8626 2522 2521 2391 Face 8627 2392 2522 2391 Face 8628 385 6959 386 Face 8629 5737 5865 5736 Face 8630 1105 1104 991 Face 8631 5617 5618 5742 Face 8632 1995 4340 1994 Face 8633 739 738 623 Face 8634 406 515 405 Face 8635 3140 3274 3139 Face 8636 4049 4050 4178 Face 8637 1995 1994 1864 Face 8638 1627 1736 1735 Face 8639 10221 6537 10586 Face 8640 633 746 3544 Face 8641 4172 4302 4171 Face 8642 3421 2633 3550 Face 8643 4301 4302 4427 Face 8644 4302 4428 4427 Face 8645 4827 4960 4959 Face 8646 3920 4048 4047 Face 8647 4078 2003 1530 Face 8648 2863 2862 2735 Face 8649 5736 5864 5735 Face 8650 5736 5735 5610 Face 8651 12556 12115 12463 Face 8652 3023 5746 5622 Face 8653 396 505 504 Face 8654 3784 3783 3653 Face 8655 7520 5598 15 Face 8656 12906 12998 7704 Face 8657 4857 1320 6511 Face 8658 4214 4857 6511 Face 8659 25022 25152 22926 Face 8660 13182 12267 34699 Face 8661 20605 23920 23968 Face 8662 3199 14036 3177 Face 8663 14036 2050 3177 Face 8664 16442 16597 16433 Face 8665 16044 16597 16442 Face 8666 2545 559 15528 Face 8667 15528 15390 3709 Face 8668 16433 559 2545 Face 8669 15390 161 3709 Face 8670 16434 16433 2545 Face 8671 559 15390 15528 Face 8672 21161 9896 21162 Face 8673 14648 7916 3188 Face 8674 3462 15070 14939 Face 8675 1263 818 1153 Face 8676 20199 22609 19344 Face 8677 21629 21628 21535 Face 8678 5776 6276 2775 Face 8679 1117 29 3581 Face 8680 216 865 3928 Face 8681 4486 3971 5368 Face 8682 17826 1261 1260 Face 8683 14818 14943 14942 Face 8684 1488 1487 1373 Face 8685 1374 1488 1373 Face 8686 1600 1599 1487 Face 8687 1488 1600 1487 Face 8688 1710 1709 1599 Face 8689 1600 1710 1599 Face 8690 1820 1819 1709 Face 8691 1710 1820 1709 Face 8692 1940 1939 1819 Face 8693 1820 1940 1819 Face 8694 2065 2064 1939 Face 8695 1940 2065 1939 Face 8696 2194 2193 2064 Face 8697 2065 2194 2064 Face 8698 2320 2319 2193 Face 8699 2194 2320 2193 Face 8700 2449 2448 2319 Face 8701 2320 2449 2319 Face 8702 2578 2577 2448 Face 8703 2449 2578 2448 Face 8704 2709 2708 2577 Face 8705 2578 2709 2577 Face 8706 2839 2838 2708 Face 8707 2709 2839 2708 Face 8708 2839 2973 2972 Face 8709 2838 2839 2972 Face 8710 2973 3110 3109 Face 8711 2972 2973 3109 Face 8712 3245 3244 3109 Face 8713 3110 3245 3109 Face 8714 26648 20717 34741 Face 8715 3244 3245 3371 Face 8716 5077 14065 14100 Face 8717 34471 34350 34404 Face 8718 16008 16007 15856 Face 8719 29749 25569 6612 Face 8720 3628 3629 3758 Face 8721 3499 3500 3628 Face 8722 16075 16232 16074 Face 8723 3629 3759 3758 Face 8724 3759 3892 3891 Face 8725 34432 34603 34679 Face 8726 2077 2977 5648 Face 8727 3892 4020 4019 Face 8728 4020 4149 4148 Face 8729 4623 18463 17833 Face 8730 4404 4403 4277 Face 8731 4278 4404 4277 Face 8732 4404 4535 4534 Face 8733 4403 4404 4534 Face 8734 4535 4666 4665 Face 8735 4534 4535 4665 Face 8736 4666 4797 4796 Face 8737 4665 4666 4796 Face 8738 4797 4930 4929 Face 8739 4796 4797 4929 Face 8740 4930 5063 5062 Face 8741 4929 4930 5062 Face 8742 5063 5189 5188 Face 8743 5062 5063 5188 Face 8744 5189 5317 5316 Face 8745 5188 5189 5316 Face 8746 5317 5447 5446 Face 8747 5316 5317 5446 Face 8748 5447 5574 5573 Face 8749 5446 5447 5573 Face 8750 5700 5699 5573 Face 8751 5574 5700 5573 Face 8752 5825 5824 5699 Face 8753 5700 5825 5699 Face 8754 5953 5952 5824 Face 8755 5825 5953 5824 Face 8756 6080 6079 5952 Face 8757 5953 6080 5952 Face 8758 6206 6205 6079 Face 8759 6080 6206 6079 Face 8760 6326 6325 6205 Face 8761 6206 6326 6205 Face 8762 6448 6447 6325 Face 8763 6326 6448 6325 Face 8764 6573 6572 6447 Face 8765 6448 6573 6447 Face 8766 3413 3542 6572 Face 8767 6573 3413 6572 Face 8768 3567 1535 3542 Face 8769 3413 3567 3542 Face 8770 3153 3154 1535 Face 8771 3567 3153 1535 Face 8772 2375 2377 7478 Face 8773 2023 1310 1538 Face 8774 19487 19568 19486 Face 8775 1317 2913 7049 Face 8776 11725 11807 11724 Face 8777 176 8264 7471 Face 8778 4333 1318 3552 Face 8779 15741 11620 15889 Face 8780 12405 12406 12495 Face 8781 12406 12496 12495 Face 8782 22594 22595 5347 Face 8783 27385 28031 5336 Face 8784 34497 34367 34505 Face 8785 27833 27965 27964 Face 8786 7844 519 1087 Face 8787 3499 3371 19170 Face 8788 3786 3918 3917 Face 8789 1087 1427 7844 Face 8790 6128 6129 6254 Face 8791 1732 1844 1731 Face 8792 3401 3402 3530 Face 8793 855 854 738 Face 8794 3002 3139 3001 Face 8795 3274 3402 3401 Face 8796 11120 11119 11059 Face 8797 3002 3001 2865 Face 8798 11964 12049 11963 Face 8799 1858 1745 2125 Face 8800 4823 4956 4955 Face 8801 5977 6104 5976 Face 8802 1859 1860 5237 Face 8803 3658 3788 3657 Face 8804 4957 5087 4956 Face 8805 2143 2144 2268 Face 8806 6122 6248 6121 Face 8807 4174 4175 4304 Face 8808 5222 5223 5354 Face 8809 6367 6366 6247 Face 8810 5355 5482 5354 Face 8811 5482 5481 5354 Face 8812 5482 5611 5481 Face 8813 5611 5610 5481 Face 8814 34815 34374 34433 Face 8815 8959 4857 9854 Face 8816 34316 34445 34503 Face 8817 1320 2027 124 Face 8818 22926 20605 23968 Face 8819 14129 14128 14040 Face 8820 20532 5722 20531 Face 8821 18739 19170 3371 Face 8822 16584 16044 16442 Face 8823 1376 16044 16584 Face 8824 3709 161 5069 Face 8825 3930 3831 16284 Face 8826 14368 14369 7603 Face 8827 19565 19648 19564 Face 8828 702 17391 587 Face 8829 17211 479 17301 Face 8830 14687 22610 10327 Face 8831 819 702 703 Face 8832 2936 3462 14939 Face 8833 16233 16234 16397 Face 8834 10816 11703 11154 Face 8835 21256 21349 21348 Face 8836 2775 1117 3581 Face 8837 29 15221 16593 Face 8838 19651 19650 19567 Face 8839 3971 3453 5650 Face 8840 16536 15742 780 Face 8841 14817 14818 14942 Face 8842 4099 3971 5650 Face 8843 1374 1375 1488 Face 8844 32211 32318 32210 Face 8845 1601 1600 1488 Face 8846 1489 1601 1488 Face 8847 1711 1710 1600 Face 8848 1601 1711 1600 Face 8849 1821 1820 1710 Face 8850 1711 1821 1710 Face 8851 1941 1940 1820 Face 8852 1821 1941 1820 Face 8853 2066 2065 1940 Face 8854 1941 2066 1940 Face 8855 2195 2194 2065 Face 8856 2066 2195 2065 Face 8857 2195 2321 2320 Face 8858 2194 2195 2320 Face 8859 2321 2450 2449 Face 8860 2320 2321 2449 Face 8861 2450 2579 2578 Face 8862 2449 2450 2578 Face 8863 2579 2710 2709 Face 8864 2578 2579 2709 Face 8865 2710 2840 2839 Face 8866 2709 2710 2839 Face 8867 2840 2974 2973 Face 8868 2839 2840 2973 Face 8869 2974 3111 3110 Face 8870 2973 2974 3110 Face 8871 15715 15858 15714 Face 8872 13106 8353 13020 Face 8873 11158 13850 13849 Face 8874 3246 4233 4105 Face 8875 15663 14745 2457 Face 8876 15804 15663 2457 Face 8877 16160 16159 16007 Face 8878 15857 16008 15856 Face 8879 7230 7336 885 Face 8880 16191 16190 12119 Face 8881 15956 14111 1493 Face 8882 15902 15956 1493 Face 8883 34399 34575 34761 Face 8884 16263 15817 2129 Face 8885 5649 2077 5648 Face 8886 5014 3569 5015 Face 8887 16316 16477 16315 Face 8888 16477 16476 16315 Face 8889 4810 18532 4678 Face 8890 22499 22593 22592 Face 8891 4536 4535 4404 Face 8892 17443 19076 18922 Face 8893 4667 4666 4535 Face 8894 4536 4667 4535 Face 8895 4667 4798 4797 Face 8896 4666 4667 4797 Face 8897 4798 4931 4930 Face 8898 4797 4798 4930 Face 8899 4931 5064 5063 Face 8900 4930 4931 5063 Face 8901 5064 5190 5189 Face 8902 5063 5064 5189 Face 8903 5190 5318 5317 Face 8904 5189 5190 5317 Face 8905 5318 5448 5447 Face 8906 5317 5318 5447 Face 8907 5575 5574 5447 Face 8908 5448 5575 5447 Face 8909 5701 5700 5574 Face 8910 5575 5701 5574 Face 8911 5826 5825 5700 Face 8912 5701 5826 5700 Face 8913 5954 5953 5825 Face 8914 5826 5954 5825 Face 8915 6081 6080 5953 Face 8916 5954 6081 5953 Face 8917 6207 6206 6080 Face 8918 6081 6207 6080 Face 8919 6327 6326 6206 Face 8920 6207 6327 6206 Face 8921 6449 6448 6326 Face 8922 6327 6449 6326 Face 8923 6574 6573 6448 Face 8924 6449 6574 6448 Face 8925 3286 3413 6573 Face 8926 6574 3286 6573 Face 8927 6499 3567 3413 Face 8928 3286 6499 3413 Face 8929 6499 3011 3153 Face 8930 3567 6499 3153 Face 8931 2781 9620 10018 Face 8932 3812 3942 15399 Face 8933 19568 19651 19567 Face 8934 19734 19733 19650 Face 8935 12224 12223 12138 Face 8936 12139 12224 12138 Face 8937 30451 11015 30452 Face 8938 1544 4333 3552 Face 8939 25 3034 9662 Face 8940 19095 29583 29537 Face 8941 11756 11779 11698 Face 8942 11011 5343 973 Face 8943 8024 13118 13178 Face 8944 13705 13800 13704 Face 8945 395 503 502 Face 8946 3146 3147 3280 Face 8947 1964 1963 1843 Face 8948 1844 1964 1843 Face 8949 13325 13419 13324 Face 8950 2482 2611 2481 Face 8951 12628 13181 12182 Face 8952 6472 426 6471 Face 8953 3531 3660 3530 Face 8954 16503 16341 16183 Face 8955 4825 4826 4958 Face 8956 11241 11240 11171 Face 8957 6104 6230 6229 Face 8958 726 727 842 Face 8959 4432 4431 4305 Face 8960 5367 1859 5237 Face 8961 2751 4983 3421 Face 8962 25792 18264 25683 Face 8963 2397 2527 2526 Face 8964 4699 4700 4830 Face 8965 5362 5489 5488 Face 8966 5361 5362 5488 Face 8967 6495 2021 1916 Face 8968 6494 6495 1916 Face 8969 6372 6373 6494 Face 8970 3783 3784 3915 Face 8971 3654 3653 3524 Face 8972 3784 3916 3915 Face 8973 6676 197 6770 Face 8974 28688 34458 28231 Face 8975 4334 328 16376 Face 8976 16376 4186 4334 Face 8977 26129 26128 26016 Face 8978 8966 10473 13799 Face 8979 11571 26569 11649 Face 8980 14129 11845 14041 Face 8981 3177 2050 16588 Face 8982 13117 34752 34365 Face 8983 9728 9843 9842 Face 8984 34435 34781 34741 Face 8985 34409 34394 34504 Face 8986 34785 34413 34317 Face 8987 588 587 480 Face 8988 481 588 480 Face 8989 703 702 587 Face 8990 588 703 587 Face 8991 16646 4154 16645 Face 8992 934 17566 819 Face 8993 21297 9270 21291 Face 8994 20361 20362 19200 Face 8995 3581 29 16593 Face 8996 15221 15666 15665 Face 8997 34592 34671 34478 Face 8998 15344 15484 15343 Face 8999 16212 14958 16090 Face 9000 3453 865 216 Face 9001 5650 3453 216 Face 9002 14943 15076 15075 Face 9003 14942 14943 15075 Face 9004 1490 1489 18010 Face 9005 1489 1488 1375 Face 9006 1490 1602 1601 Face 9007 1601 1602 1711 Face 9008 1712 1822 1821 Face 9009 1711 1712 1821 Face 9010 1822 1942 1941 Face 9011 1821 1822 1941 Face 9012 1942 2067 2066 Face 9013 1941 1942 2066 Face 9014 2067 2196 2195 Face 9015 2066 2067 2195 Face 9016 2196 2322 2321 Face 9017 2195 2196 2321 Face 9018 2322 2451 2450 Face 9019 2321 2322 2450 Face 9020 2451 2580 2579 Face 9021 2450 2451 2579 Face 9022 2580 2711 2710 Face 9023 2579 2580 2710 Face 9024 18335 18428 1456 Face 9025 2710 2711 2840 Face 9026 18802 18906 2452 Face 9027 2840 2841 2974 Face 9028 1419 3710 14086 Face 9029 34372 34328 34710 Face 9030 58 1008 19553 Face 9031 15858 15857 15714 Face 9032 479 17211 480 Face 9033 2718 3246 4105 Face 9034 14389 15930 15913 Face 9035 14381 14389 15913 Face 9036 5013 3945 5014 Face 9037 16008 16160 16007 Face 9038 3188 22060 7556 Face 9039 21372 15035 21370 Face 9040 16558 16559 157 Face 9041 5275 3246 2718 Face 9042 1582 4855 4942 Face 9043 4855 2304 4942 Face 9044 5649 5648 1761 Face 9045 3569 5649 1761 Face 9046 16636 16635 16476 Face 9047 16477 16636 16476 Face 9048 18451 34464 34315 Face 9049 15035 8935 21370 Face 9050 14111 15192 6842 Face 9051 1493 14111 6842 Face 9052 34458 28423 34330 Face 9053 15130 4618 4882 Face 9054 4668 4799 4798 Face 9055 4667 4668 4798 Face 9056 4799 4932 4931 Face 9057 4798 4799 4931 Face 9058 4932 5065 5064 Face 9059 4931 4932 5064 Face 9060 5065 5191 5190 Face 9061 5064 5065 5190 Face 9062 5191 5319 5318 Face 9063 5190 5191 5318 Face 9064 5449 5448 5318 Face 9065 5319 5449 5318 Face 9066 5576 5575 5448 Face 9067 5449 5576 5448 Face 9068 5702 5701 5575 Face 9069 5576 5702 5575 Face 9070 5827 5826 5701 Face 9071 5702 5827 5701 Face 9072 5955 5954 5826 Face 9073 5827 5955 5826 Face 9074 6082 6081 5954 Face 9075 5955 6082 5954 Face 9076 6208 6207 6081 Face 9077 6082 6208 6081 Face 9078 6328 6327 6207 Face 9079 6208 6328 6207 Face 9080 6450 6449 6327 Face 9081 6328 6450 6327 Face 9082 6575 6574 6449 Face 9083 6450 6575 6449 Face 9084 3285 3286 6574 Face 9085 6575 3285 6574 Face 9086 287 6499 3286 Face 9087 3285 287 3286 Face 9088 3675 3011 6499 Face 9089 287 3675 6499 Face 9090 15394 3942 3554 Face 9091 3675 3942 3011 Face 9092 19651 19734 19650 Face 9093 12691 12781 12690 Face 9094 12224 12313 12312 Face 9095 11807 11888 11806 Face 9096 11676 11756 11698 Face 9097 11779 11082 11680 Face 9098 11177 11246 11176 Face 9099 11795 11796 11876 Face 9100 25053 11413 22912 Face 9101 22906 23880 23901 Face 9102 23152 23153 23147 Face 9103 24325 22938 24472 Face 9104 679 680 795 Face 9105 3397 3526 3396 Face 9106 3147 3281 3280 Face 9107 5489 5618 5617 Face 9108 5618 5743 5742 Face 9109 6775 301 300 Face 9110 1405 1404 1292 Face 9111 1293 1292 1184 Face 9112 6255 6374 6373 Face 9113 3660 3659 3530 Face 9114 3660 3790 3659 Face 9115 1735 1736 1847 Face 9116 4959 5089 5088 Face 9117 4691 4692 4822 Face 9118 3397 3398 3526 Face 9119 2217 2345 2344 Face 9120 4302 4301 4171 Face 9121 956 1066 1065 Face 9122 1515 1626 1625 Face 9123 5246 29319 6281 Face 9124 34388 28136 27957 Face 9125 1094 3176 1093 Face 9126 1851 1971 1970 Face 9127 4839 4972 4971 Face 9128 1294 1293 1185 Face 9129 969 1079 968 Face 9130 1631 1630 1519 Face 9131 6108 6107 8208 Face 9132 1069 1070 1182 Face 9133 2619 2618 2234 Face 9134 12184 11518 12450 Face 9135 7560 7672 1332 Face 9136 34637 34665 34557 Face 9137 24626 11812 24473 Face 9138 13019 3947 13106 Face 9139 8243 11362 10447 Face 9140 614 729 728 Face 9141 746 3152 3544 Face 9142 1554 7995 1553 Face 9143 4303 4429 4428 Face 9144 5978 5979 6105 Face 9145 14806 5528 890 Face 9146 16106 16110 1019 Face 9147 482 481 372 Face 9148 371 372 481 Face 9149 589 588 481 Face 9150 482 589 481 Face 9151 704 703 588 Face 9152 589 704 588 Face 9153 820 819 703 Face 9154 704 820 703 Face 9155 34326 34631 34427 Face 9156 820 934 819 Face 9157 16593 15221 15665 Face 9158 17742 17653 1044 Face 9159 3976 14633 16113 Face 9160 15626 15770 15625 Face 9161 15626 15625 15483 Face 9162 4486 5368 2070 Face 9163 1827 4486 2070 Face 9164 15075 15076 15207 Face 9165 15076 15208 15207 Face 9166 5715 15090 5271 Face 9167 14694 14695 14817 Face 9168 2070 5368 2069 Face 9169 5368 4356 2069 Face 9170 18199 1713 1712 Face 9171 18199 1712 1602 Face 9172 382 34491 10968 Face 9173 1822 1823 1942 Face 9174 18393 1943 1823 Face 9175 1942 1943 2067 Face 9176 1943 2068 2067 Face 9177 2067 2068 2196 Face 9178 34366 34447 34450 Face 9179 34334 34813 34649 Face 9180 34702 34756 14034 Face 9181 2322 2323 2451 Face 9182 18801 2452 2323 Face 9183 2451 2452 2580 Face 9184 5514 16121 4613 Face 9185 18801 18802 2452 Face 9186 1795 15477 14938 Face 9187 34828 34454 5211 Face 9188 16601 16599 15674 Face 9189 15676 2048 16592 Face 9190 14086 4998 378 Face 9191 4998 1434 378 Face 9192 7174 7085 12798 Face 9193 11814 12826 8473 Face 9194 19817 19816 19733 Face 9195 14592 16213 16209 Face 9196 15913 15930 663 Face 9197 15930 2796 663 Face 9198 5013 5014 1499 Face 9199 1610 5013 1499 Face 9200 21535 21534 21439 Face 9201 16949 17538 17731 Face 9202 4882 14247 14223 Face 9203 2284 2158 4084 Face 9204 5771 14110 3690 Face 9205 2304 15675 2922 Face 9206 3569 1761 5015 Face 9207 2047 4855 1582 Face 9208 4412 4411 16635 Face 9209 16636 4412 16635 Face 9210 22243 20646 14920 Face 9211 1770 8312 8207 Face 9212 15483 15625 15482 Face 9213 15769 15768 15624 Face 9214 9381 9382 9497 Face 9215 14236 14346 14235 Face 9216 28423 34776 34330 Face 9217 2977 15002 3842 Face 9218 4933 4932 4799 Face 9219 4800 4933 4799 Face 9220 4933 5066 5065 Face 9221 4932 4933 5065 Face 9222 5066 5192 5191 Face 9223 5065 5066 5191 Face 9224 5192 5320 5319 Face 9225 5191 5192 5319 Face 9226 5320 5450 5449 Face 9227 5319 5320 5449 Face 9228 5577 5576 5449 Face 9229 5450 5577 5449 Face 9230 5703 5702 5576 Face 9231 5577 5703 5576 Face 9232 5828 5827 5702 Face 9233 5703 5828 5702 Face 9234 5956 5955 5827 Face 9235 5828 5956 5827 Face 9236 6083 6082 5955 Face 9237 5956 6083 5955 Face 9238 6209 6208 6082 Face 9239 6083 6209 6082 Face 9240 6329 6328 6208 Face 9241 6209 6329 6208 Face 9242 6451 6450 6328 Face 9243 6329 6451 6328 Face 9244 6576 6575 6450 Face 9245 6451 6576 6450 Face 9246 3151 3285 6575 Face 9247 6576 3151 6575 Face 9248 3151 1225 287 Face 9249 3285 3151 287 Face 9250 3548 3675 287 Face 9251 1225 3548 287 Face 9252 3554 3942 3675 Face 9253 3548 3554 3675 Face 9254 12781 12874 12873 Face 9255 34336 34355 34787 Face 9256 19734 19817 19733 Face 9257 19893 19892 19816 Face 9258 11698 11779 11680 Face 9259 34313 14034 34629 Face 9260 12718 6137 10619 Face 9261 1636 8275 8274 Face 9262 25360 25303 22886 Face 9263 23633 24626 24473 Face 9264 1217 1218 1324 Face 9265 3792 3924 3791 Face 9266 5618 5490 5619 Face 9267 1754 1645 16055 Face 9268 2113 2114 5751 Face 9269 617 618 732 Face 9270 3149 2754 3284 Face 9271 3804 3805 630 Face 9272 3273 3274 3401 Face 9273 3790 3789 3659 Face 9274 6358 6359 6480 Face 9275 3004 3141 3003 Face 9276 6481 908 892 Face 9277 3141 3140 3003 Face 9278 2474 2603 2602 Face 9279 1294 1406 1293 Face 9280 4174 4304 4303 Face 9281 2346 2347 2475 Face 9282 27832 27833 27964 Face 9283 6103 6104 6229 Face 9284 5356 5357 5483 Face 9285 5484 5613 5612 Face 9286 34711 34416 34614 Face 9287 4569 4570 4701 Face 9288 4432 4433 4562 Face 9289 3401 3530 3529 Face 9290 3272 3273 3400 Face 9291 3022 5622 5493 Face 9292 2395 2396 2525 Face 9293 20178 20099 25036 Face 9294 5370 3020 3160 Face 9295 27568 29752 28154 Face 9296 11299 34682 2900 Face 9297 34406 34599 11847 Face 9298 776 3574 658 Face 9299 4435 4436 4565 Face 9300 6130 6131 6256 Face 9301 994 995 1107 Face 9302 1218 1325 1324 Face 9303 5488 5489 5617 Face 9304 1108 1218 1217 Face 9305 4935 16119 13876 Face 9306 1797 1376 1377 Face 9307 373 17124 17125 Face 9308 19817 19893 19816 Face 9309 590 589 482 Face 9310 483 590 482 Face 9311 705 704 589 Face 9312 590 705 589 Face 9313 821 820 704 Face 9314 705 821 704 Face 9315 935 934 820 Face 9316 821 935 820 Face 9317 1045 1044 934 Face 9318 935 1045 934 Face 9319 7600 871 753 Face 9320 17126 374 373 Face 9321 15484 15626 15483 Face 9322 15770 15769 15625 Face 9323 3971 4099 5368 Face 9324 4280 4281 16640 Face 9325 14158 16212 16090 Face 9326 15208 15344 15343 Face 9327 13889 15222 15114 Face 9328 14958 16212 14020 Face 9329 5368 4099 4356 Face 9330 4099 4227 4356 Face 9331 28503 28502 28367 Face 9332 1204 4993 7722 Face 9333 13173 11862 3568 Face 9334 28098 28097 27964 Face 9335 13090 21560 21858 Face 9336 29670 29671 29206 Face 9337 34660 34485 34272 Face 9338 14746 14747 14628 Face 9339 5642 6514 13990 Face 9340 14611 14984 16199 Face 9341 2408 14481 14480 Face 9342 4222 4448 2279 Face 9343 2330 2204 561 Face 9344 21436 21531 21530 Face 9345 14896 14527 14408 Face 9346 20445 20357 20358 Face 9347 14169 15460 14613 Face 9348 2797 16271 16270 Face 9349 2796 5642 2367 Face 9350 13990 16199 1432 Face 9351 14480 14396 14389 Face 9352 1434 4222 4094 Face 9353 21003 20150 21008 Face 9354 13346 4336 19475 Face 9355 2029 897 4057 Face 9356 13573 13179 12903 Face 9357 16601 15674 15675 Face 9358 2796 2367 2047 Face 9359 4283 4412 16636 Face 9360 16637 4283 16636 Face 9361 16215 19924 16216 Face 9362 21253 21254 21346 Face 9363 16395 16396 16558 Face 9364 5208 5209 15473 Face 9365 2981 5771 3690 Face 9366 15804 2457 14800 Face 9367 5074 2047 1582 Face 9368 663 2047 5074 Face 9369 1499 1386 4411 Face 9370 4412 1499 4411 Face 9371 1003 5116 147 Face 9372 19971 19970 19892 Face 9373 15625 15769 15624 Face 9374 15921 15920 15768 Face 9375 14595 3460 14092 Face 9376 14174 14498 14380 Face 9377 5648 2977 3842 Face 9378 2977 1902 2249 Face 9379 17242 4800 18725 Face 9380 1761 5648 2404 Face 9381 5067 5066 4933 Face 9382 15595 4628 4496 Face 9383 5067 5193 5192 Face 9384 5066 5067 5192 Face 9385 5193 5321 5320 Face 9386 5192 5193 5320 Face 9387 5451 5450 5320 Face 9388 5321 5451 5320 Face 9389 5578 5577 5450 Face 9390 5451 5578 5450 Face 9391 5704 5703 5577 Face 9392 5578 5704 5577 Face 9393 5829 5828 5703 Face 9394 5704 5829 5703 Face 9395 5957 5956 5828 Face 9396 5829 5957 5828 Face 9397 6084 6083 5956 Face 9398 5957 6084 5956 Face 9399 6210 6209 6083 Face 9400 6084 6210 6083 Face 9401 6330 6329 6209 Face 9402 6210 6330 6209 Face 9403 6452 6451 6329 Face 9404 6330 6452 6329 Face 9405 9 6576 6451 Face 9406 6452 9 6451 Face 9407 414 3151 6576 Face 9408 9 414 6576 Face 9409 288 1225 3151 Face 9410 414 288 3151 Face 9411 3292 3548 1225 Face 9412 288 3292 1225 Face 9413 3425 3554 3548 Face 9414 3292 3425 3548 Face 9415 2371 6002 3554 Face 9416 3425 2371 3554 Face 9417 12780 12781 12873 Face 9418 7724 7513 4090 Face 9419 12491 12492 12580 Face 9420 12581 12671 12670 Face 9421 21485 19595 11291 Face 9422 13375 9617 9501 Face 9423 5722 21485 11291 Face 9424 6245 6364 6363 Face 9425 13366 13367 13117 Face 9426 1325 1439 1324 Face 9427 882 883 994 Face 9428 3144 3143 3006 Face 9429 6243 6242 6117 Face 9430 6495 6496 2021 Face 9431 4955 4956 5085 Face 9432 11120 11182 11119 Face 9433 3922 3921 3789 Face 9434 12028 1264 2506 Face 9435 31989 31882 7242 Face 9436 5335 4861 13273 Face 9437 1521 1520 1407 Face 9438 1406 1519 1405 Face 9439 1519 1518 1405 Face 9440 6360 6359 6239 Face 9441 5622 1745 1858 Face 9442 19893 19971 19892 Face 9443 6490 6489 6367 Face 9444 625 740 624 Face 9445 625 624 515 Face 9446 2482 2481 2352 Face 9447 34457 34532 34662 Face 9448 1967 1968 2093 Face 9449 4563 4695 4694 Face 9450 5862 5861 5733 Face 9451 1193 1301 1192 Face 9452 5734 5862 5733 Face 9453 3007 3008 3144 Face 9454 3145 3279 3278 Face 9455 8248 9328 7893 Face 9456 329 658 5256 Face 9457 8727 7357 6363 Face 9458 777 15904 776 Face 9459 5256 658 3574 Face 9460 1631 1740 1630 Face 9461 1407 1520 1406 Face 9462 2115 2116 5628 Face 9463 1107 1108 1217 Face 9464 766 883 882 Face 9465 14453 15259 5774 Face 9466 6116 6242 6115 Face 9467 237 17012 17224 Face 9468 483 374 484 Face 9469 591 590 483 Face 9470 484 591 483 Face 9471 706 705 590 Face 9472 591 706 590 Face 9473 822 821 705 Face 9474 706 822 705 Face 9475 936 935 821 Face 9476 822 936 821 Face 9477 936 1046 1045 Face 9478 935 936 1045 Face 9479 1159 1158 1045 Face 9480 1046 1159 1045 Face 9481 15922 15921 15769 Face 9482 1160 17926 1267 Face 9483 1827 2070 4281 Face 9484 16641 4280 16640 Face 9485 15207 15208 15343 Face 9486 16212 14019 14020 Face 9487 15912 2546 15519 Face 9488 15933 4591 15060 Face 9489 4227 4099 3582 Face 9490 4099 5650 3582 Face 9491 4281 4282 16639 Face 9492 16640 4281 16639 Face 9493 21351 21350 21257 Face 9494 28552 26449 27329 Face 9495 15774 15926 15925 Face 9496 21628 21627 21534 Face 9497 15970 2797 16270 Face 9498 488 753 752 Face 9499 15932 6514 5642 Face 9500 15931 15932 5642 Face 9501 14481 14404 14396 Face 9502 2279 2408 14480 Face 9503 23920 24442 24441 Face 9504 21343 21436 21435 Face 9505 20385 22653 8473 Face 9506 13203 22658 22557 Face 9507 14628 4076 3956 Face 9508 5271 14169 14613 Face 9509 16199 16599 16601 Face 9510 2367 13990 1432 Face 9511 378 1434 4094 Face 9512 4222 2279 548 Face 9513 21342 21343 21435 Face 9514 22653 22557 8473 Face 9515 22344 21270 22329 Face 9516 658 329 6512 Face 9517 16592 15663 15804 Face 9518 2304 16601 15675 Face 9519 16317 16316 16159 Face 9520 16160 16317 16159 Face 9521 6794 13958 4497 Face 9522 20890 20889 7017 Face 9523 16396 16395 16231 Face 9524 16232 16396 16231 Face 9525 14110 15804 3690 Face 9526 2457 518 14800 Face 9527 664 663 5074 Face 9528 6150 6024 330 Face 9529 5014 5015 1386 Face 9530 1499 5014 1386 Face 9531 20147 14873 18226 Face 9532 7122 6725 6286 Face 9533 47 1010 2284 Face 9534 16384 16375 14717 Face 9535 13898 13897 13879 Face 9536 3959 16112 1099 Face 9537 15002 2977 2249 Face 9538 1902 6150 6517 Face 9539 16006 16005 15854 Face 9540 5015 1761 5016 Face 9541 22401 22402 22498 Face 9542 13262 19297 14608 Face 9543 34701 34427 34485 Face 9544 4934 5067 4933 Face 9545 34354 34395 34399 Face 9546 24242 24241 34547 Face 9547 5452 5451 5321 Face 9548 5322 5452 5321 Face 9549 5579 5578 5451 Face 9550 5452 5579 5451 Face 9551 5705 5704 5578 Face 9552 5579 5705 5578 Face 9553 5830 5829 5704 Face 9554 5705 5830 5704 Face 9555 5958 5957 5829 Face 9556 5830 5958 5829 Face 9557 6085 6084 5957 Face 9558 5958 6085 5957 Face 9559 6211 6210 6084 Face 9560 6085 6211 6084 Face 9561 6331 6330 6210 Face 9562 6211 6331 6210 Face 9563 6453 6452 6330 Face 9564 6331 6453 6330 Face 9565 10 9 6452 Face 9566 6453 10 6452 Face 9567 523 414 9 Face 9568 10 523 9 Face 9569 3672 288 414 Face 9570 523 3672 414 Face 9571 3420 3292 288 Face 9572 3672 3420 288 Face 9573 2237 3425 3292 Face 9574 3420 2237 3292 Face 9575 2370 2371 3425 Face 9576 2237 2370 3425 Face 9577 34280 34387 34530 Face 9578 34626 26678 34814 Face 9579 12580 12581 12670 Face 9580 13739 7085 3694 Face 9581 13382 13371 12751 Face 9582 12752 13375 1083 Face 9583 20048 20047 19970 Face 9584 19971 20048 19970 Face 9585 4068 3939 2499 Face 9586 2754 2753 3284 Face 9587 995 1108 1107 Face 9588 32509 765 764 Face 9589 5987 5988 6115 Face 9590 5988 6116 6115 Face 9591 1632 1741 1631 Face 9592 2611 2610 2481 Face 9593 10427 10428 10550 Face 9594 615 616 730 Face 9595 3532 3531 3402 Face 9596 4567 4699 4698 Face 9597 1296 1408 1295 Face 9598 1408 1521 1407 Face 9599 5852 5980 5979 Face 9600 5979 5980 6106 Face 9601 25744 27957 28089 Face 9602 5851 5852 5979 Face 9603 5625 2235 7137 Face 9604 2233 2234 5749 Face 9605 297 402 401 Face 9606 20048 20130 20129 Face 9607 404 513 512 Face 9608 2364 2238 2245 Face 9609 4958 5088 5087 Face 9610 2221 2220 2093 Face 9611 1193 1192 1079 Face 9612 4559 4560 4691 Face 9613 13198 12762 5126 Face 9614 2866 2865 2738 Face 9615 13908 5878 5751 Face 9616 12309 12310 12400 Face 9617 34377 25856 11358 Face 9618 9425 10381 329 Face 9619 34701 34326 34427 Face 9620 658 4090 776 Face 9621 3804 3149 3284 Face 9622 6230 6231 6350 Face 9623 1071 1070 960 Face 9624 29547 29546 29415 Face 9625 5085 5003 5084 Face 9626 5860 5988 5859 Face 9627 485 484 375 Face 9628 7916 12801 3188 Face 9629 592 591 484 Face 9630 485 592 484 Face 9631 707 706 591 Face 9632 592 707 591 Face 9633 823 822 706 Face 9634 707 823 706 Face 9635 937 936 822 Face 9636 823 937 822 Face 9637 1047 1046 936 Face 9638 937 1047 936 Face 9639 1160 1159 1046 Face 9640 1047 1160 1046 Face 9641 5588 5459 18346 Face 9642 1159 1160 1267 Face 9643 15484 15483 15343 Face 9644 4280 1827 4281 Face 9645 3707 16374 3336 Face 9646 2924 14390 13892 Face 9647 5650 216 17 Face 9648 10607 9775 3326 Face 9649 16640 16639 16480 Face 9650 3582 5650 17 Face 9651 22305 22401 22304 Face 9652 2070 2069 4282 Face 9653 15317 8836 1920 Face 9654 21258 21351 21257 Face 9655 7591 11278 14229 Face 9656 14456 14574 14573 Face 9657 15664 443 14746 Face 9658 14238 14348 14237 Face 9659 2069 4356 1719 Face 9660 6514 14611 13990 Face 9661 19561 20370 20369 Face 9662 16639 4282 16638 Face 9663 34529 11543 10921 Face 9664 15859 15858 15715 Face 9665 3372 15639 5903 Face 9666 14527 14775 14899 Face 9667 1432 16199 16601 Face 9668 29994 29935 11027 Face 9669 4094 4222 548 Face 9670 16599 15676 15674 Face 9671 20358 20357 20274 Face 9672 2279 14480 14437 Face 9673 50 1656 6 Face 9674 24850 15572 24851 Face 9675 15674 16592 14110 Face 9676 34588 34417 34360 Face 9677 16478 16477 16316 Face 9678 14110 16592 15804 Face 9679 21624 21625 21719 Face 9680 16317 16478 16316 Face 9681 16581 16421 9498 Face 9682 20301 20460 16521 Face 9683 34286 34733 34440 Face 9684 16396 16559 16558 Face 9685 14464 14463 14345 Face 9686 13845 13833 14595 Face 9687 438 14436 14411 Face 9688 2077 1660 1902 Face 9689 6794 4497 19984 Face 9690 21625 21720 21719 Face 9691 15359 14178 13983 Face 9692 14049 14138 14048 Face 9693 4233 4232 85 Face 9694 2506 12377 12028 Face 9695 21484 12860 15160 Face 9696 1999 5878 13908 Face 9697 2249 1902 6517 Face 9698 6150 330 226 Face 9699 5648 3842 2404 Face 9700 1386 5015 2197 Face 9701 12436 12500 12527 Face 9702 34410 34671 34705 Face 9703 15625 15624 15482 Face 9704 13986 15185 14938 Face 9705 14808 14685 14686 Face 9706 30624 32304 11058 Face 9707 5323 5453 5452 Face 9708 5322 5323 5452 Face 9709 5580 5579 5452 Face 9710 5453 5580 5452 Face 9711 5706 5705 5579 Face 9712 5580 5706 5579 Face 9713 5831 5830 5705 Face 9714 5706 5831 5705 Face 9715 5959 5958 5830 Face 9716 5831 5959 5830 Face 9717 6086 6085 5958 Face 9718 5959 6086 5958 Face 9719 6212 6211 6085 Face 9720 6086 6212 6085 Face 9721 6332 6331 6211 Face 9722 6212 6332 6211 Face 9723 6454 6453 6331 Face 9724 6332 6454 6331 Face 9725 31 10 6453 Face 9726 6454 31 6453 Face 9727 522 523 10 Face 9728 31 522 10 Face 9729 3670 3672 523 Face 9730 522 3670 523 Face 9731 3549 3420 3672 Face 9732 3670 3549 3672 Face 9733 4589 2237 3420 Face 9734 3549 4589 3420 Face 9735 2369 2370 2237 Face 9736 4589 2369 2237 Face 9737 11092 32501 32502 Face 9738 2369 1747 2370 Face 9739 12492 12581 12580 Face 9740 34621 34382 34350 Face 9741 12966 13056 13055 Face 9742 10343 9330 13382 Face 9743 13371 12752 12751 Face 9744 4098 84 5379 Face 9745 12373 11377 11208 Face 9746 8145 282 1769 Face 9747 18322 34044 33164 Face 9748 883 995 994 Face 9749 1769 3560 10119 Face 9750 5988 5987 5859 Face 9751 2358 2487 2357 Face 9752 6490 1794 6489 Face 9753 1793 1794 181 Face 9754 2741 2740 2609 Face 9755 1444 1558 1443 Face 9756 3532 3661 3531 Face 9757 3661 3660 3531 Face 9758 13122 13217 9444 Face 9759 5480 5609 5479 Face 9760 5881 7839 4600 Face 9761 1526 1636 1525 Face 9762 6591 11998 24453 Face 9763 34305 34693 34522 Face 9764 3411 2619 2622 Face 9765 2622 2619 2233 Face 9766 3803 3411 2622 Face 9767 2619 2234 2233 Face 9768 2481 2610 2480 Face 9769 2098 2225 2224 Face 9770 3270 3271 3398 Face 9771 4957 4958 5087 Face 9772 6239 6238 6112 Face 9773 3403 3532 3402 Face 9774 2479 2608 2478 Face 9775 13514 13515 13611 Face 9776 5738 5739 5866 Face 9777 2741 2868 2740 Face 9778 1741 1740 1631 Face 9779 842 956 955 Face 9780 34506 34368 34523 Face 9781 34831 34357 34773 Face 9782 20047 20048 20129 Face 9783 1976 2102 1975 Face 9784 612 613 727 Face 9785 1965 1966 2091 Face 9786 29085 29086 19196 Face 9787 2116 5498 5628 Face 9788 2616 2615 2486 Face 9789 34646 34558 34328 Face 9790 377 486 485 Face 9791 7058 376 375 Face 9792 593 592 485 Face 9793 486 593 485 Face 9794 708 707 592 Face 9795 593 708 592 Face 9796 708 824 823 Face 9797 707 708 823 Face 9798 824 938 937 Face 9799 823 824 937 Face 9800 1048 1047 937 Face 9801 938 1048 937 Face 9802 1161 1160 1047 Face 9803 1048 1161 1047 Face 9804 1269 1270 18020 Face 9805 1160 1161 1268 Face 9806 13885 13884 13868 Face 9807 20130 20208 20207 Face 9808 216 3928 3438 Face 9809 5514 14477 16121 Face 9810 16481 16480 16319 Face 9811 17 216 3438 Face 9812 11434 12435 20820 Face 9813 16481 16640 16480 Face 9814 21560 3696 21858 Face 9815 22498 22497 22400 Face 9816 13219 15659 15517 Face 9817 23020 23791 6398 Face 9818 20651 18165 17931 Face 9819 34427 34631 34633 Face 9820 2069 1719 4284 Face 9821 14480 14481 14396 Face 9822 16639 16638 16479 Face 9823 4227 4353 4230 Face 9824 20129 20130 20207 Face 9825 16480 16639 16479 Face 9826 4883 4882 14223 Face 9827 3947 13019 13018 Face 9828 14746 14628 14629 Face 9829 4344 4221 903 Face 9830 1610 1719 5013 Face 9831 5642 13990 2367 Face 9832 15293 14896 14408 Face 9833 548 2279 14437 Face 9834 16670 23115 15885 Face 9835 13958 20301 16521 Face 9836 663 2796 2047 Face 9837 34469 34581 34407 Face 9838 16637 16636 16477 Face 9839 15675 15674 14110 Face 9840 21644 21838 19459 Face 9841 16478 16637 16477 Face 9842 14165 4095 15335 Face 9843 27965 28098 27964 Face 9844 2457 14745 518 Face 9845 12578 12579 12668 Face 9846 14060 14083 15386 Face 9847 14156 14264 5779 Face 9848 2977 2077 1902 Face 9849 6024 438 330 Face 9850 1660 6024 6150 Face 9851 1902 1660 6150 Face 9852 16159 16158 16006 Face 9853 16007 16159 16006 Face 9854 19979 20056 20055 Face 9855 21347 21440 21346 Face 9856 20208 20290 20289 Face 9857 24115 24241 34438 Face 9858 5751 1417 13908 Face 9859 777 7297 15904 Face 9860 6517 6150 226 Face 9861 330 14411 14255 Face 9862 1761 2404 5016 Face 9863 4411 1386 4287 Face 9864 29018 29338 6613 Face 9865 20277 20360 20276 Face 9866 15631 15632 15775 Face 9867 15343 15483 15482 Face 9868 3431 7184 16444 Face 9869 7138 16371 7073 Face 9870 5324 5454 5453 Face 9871 28235 28234 28097 Face 9872 5581 5580 5453 Face 9873 5454 5581 5453 Face 9874 5707 5706 5580 Face 9875 5581 5707 5580 Face 9876 5832 5831 5706 Face 9877 5707 5832 5706 Face 9878 5960 5959 5831 Face 9879 5832 5960 5831 Face 9880 6087 6086 5959 Face 9881 5960 6087 5959 Face 9882 6213 6212 6086 Face 9883 6087 6213 6086 Face 9884 6333 6332 6212 Face 9885 6213 6333 6212 Face 9886 6455 6454 6332 Face 9887 6333 6455 6332 Face 9888 42 31 6454 Face 9889 6455 42 6454 Face 9890 1206 522 31 Face 9891 42 1206 31 Face 9892 3669 3670 522 Face 9893 1206 3669 522 Face 9894 3676 3549 3670 Face 9895 3669 3676 3670 Face 9896 4719 4589 3549 Face 9897 3676 4719 3549 Face 9898 2243 2369 4589 Face 9899 4719 2243 4589 Face 9900 1748 1747 2369 Face 9901 2243 1748 2369 Face 9902 1755 2587 1756 Face 9903 1748 1756 1747 Face 9904 12965 12966 13055 Face 9905 3250 1153 5342 Face 9906 12811 10927 10343 Face 9907 9330 13371 13382 Face 9908 20207 20208 20289 Face 9909 22222 22223 21649 Face 9910 24109 10985 977 Face 9911 8654 3560 282 Face 9912 14028 7738 14027 Face 9913 2755 2238 2364 Face 9914 2869 2868 2741 Face 9915 1794 1793 6489 Face 9916 4431 4432 4561 Face 9917 1997 3959 1996 Face 9918 3409 3538 3537 Face 9919 3804 4722 3149 Face 9920 1196 6138 3940 Face 9921 5764 13197 1766 Face 9922 9082 5641 1904 Face 9923 4983 5113 1862 Face 9924 3673 3150 6013 Face 9925 4194 4193 4066 Face 9926 7825 5847 5846 Face 9927 1733 1734 1845 Face 9928 2476 2605 2604 Face 9929 1333 3411 3803 Face 9930 4604 1333 3803 Face 9931 34620 34516 34697 Face 9932 6258 6377 6376 Face 9933 6351 6473 6350 Face 9934 2010 2135 2134 Face 9935 1741 1853 1740 Face 9936 5984 5985 6112 Face 9937 22223 21555 21649 Face 9938 660 4722 3804 Face 9939 2097 2096 1970 Face 9940 725 726 841 Face 9941 5113 1861 1862 Face 9942 314 4217 532 Face 9943 5360 5361 5487 Face 9944 1848 1968 1967 Face 9945 10391 10514 10390 Face 9946 34408 1459 977 Face 9947 4175 4176 4305 Face 9948 1514 1515 1625 Face 9949 1916 2021 1333 Face 9950 34818 9186 34536 Face 9951 2869 3005 3004 Face 9952 501 502 610 Face 9953 3174 1747 1756 Face 9954 1965 2091 2090 Face 9955 14391 20647 21288 Face 9956 34653 34425 34762 Face 9957 34749 34802 34732 Face 9958 15454 5071 5348 Face 9959 594 709 708 Face 9960 593 594 708 Face 9961 709 825 824 Face 9962 708 709 824 Face 9963 939 938 824 Face 9964 825 939 824 Face 9965 1049 1048 938 Face 9966 939 1049 938 Face 9967 1162 1161 1048 Face 9968 1049 1162 1048 Face 9969 18021 18020 1270 Face 9970 1161 1162 1269 Face 9971 3928 4348 4448 Face 9972 1243 14386 14866 Face 9973 16163 16162 16010 Face 9974 3438 3928 4448 Face 9975 22653 13203 22557 Face 9976 16320 16481 16319 Face 9977 2276 1124 474 Face 9978 13174 13173 3568 Face 9979 1919 2924 2802 Face 9980 17748 18684 19068 Face 9981 14404 15932 15931 Face 9982 13833 3460 14595 Face 9983 4282 2069 4284 Face 9984 14396 14404 15931 Face 9985 16480 16479 16318 Face 9986 4356 4230 1719 Face 9987 28764 25471 27330 Face 9988 4282 4284 16638 Face 9989 2029 5899 5900 Face 9990 21271 13090 21858 Face 9991 15674 15676 16592 Face 9992 5899 14715 14692 Face 9993 4353 3945 5013 Face 9994 14745 14746 14629 Face 9995 20275 20358 20274 Face 9996 4230 4353 5013 Face 9997 3372 13806 14386 Face 9998 14646 19984 9850 Face 9999 2367 1432 4855 Face 10000 14613 15460 3458 Face 10001 1610 1499 4412 Face 10002 2047 2367 4855 Face 10003 30967 31066 30966 Face 10004 4283 1610 4412 Face 10005 15206 15207 15342 Face 10006 11515 20340 22658 Face 10007 4942 2304 2922 Face 10008 4340 4991 982 Face 10009 14374 14381 15903 Face 10010 15468 14000 14478 Face 10011 330 438 14411 Face 10012 14436 14381 14374 Face 10013 14411 14436 14374 Face 10014 14381 15913 15903 Face 10015 15856 16007 15855 Face 10016 19984 4497 19923 Face 10017 16316 16315 16158 Face 10018 16159 16316 16158 Face 10019 28368 28503 28367 Face 10020 19621 16346 2384 Face 10021 15769 15921 15768 Face 10022 1924 9846 9211 Face 10023 2506 5525 12377 Face 10024 24 2922 2981 Face 10025 14411 14374 14365 Face 10026 14255 14411 14365 Face 10027 5015 5016 2197 Face 10028 16635 4411 16634 Face 10029 21838 5072 19459 Face 10030 15342 15343 15482 Face 10031 34626 34814 34482 Face 10032 13864 13880 13863 Face 10033 9613 9728 9612 Face 10034 5325 5455 5454 Face 10035 5324 5325 5454 Face 10036 5582 5581 5454 Face 10037 5455 5582 5454 Face 10038 5582 5708 5707 Face 10039 5581 5582 5707 Face 10040 5708 5833 5832 Face 10041 5707 5708 5832 Face 10042 5961 5960 5832 Face 10043 5833 5961 5832 Face 10044 6088 6087 5960 Face 10045 5961 6088 5960 Face 10046 6214 6213 6087 Face 10047 6088 6214 6087 Face 10048 6334 6333 6213 Face 10049 6214 6334 6213 Face 10050 6456 6455 6333 Face 10051 6334 6456 6333 Face 10052 45 42 6455 Face 10053 6456 45 6455 Face 10054 198 1206 42 Face 10055 45 198 42 Face 10056 289 3669 1206 Face 10057 198 289 1206 Face 10058 3807 3676 3669 Face 10059 289 3807 3669 Face 10060 4851 4719 3676 Face 10061 3807 4851 3676 Face 10062 2244 2243 4719 Face 10063 4851 2244 4719 Face 10064 1749 1748 2243 Face 10065 2244 1749 2243 Face 10066 15908 1755 1754 Face 10067 1749 1755 1748 Face 10068 12250 12338 12249 Face 10069 12430 12429 12337 Face 10070 10361 10869 12811 Face 10071 10927 9330 10343 Face 10072 31693 31692 31578 Face 10073 12771 12770 12680 Face 10074 1779 1895 1894 Face 10075 749 748 547 Face 10076 2359 2358 2230 Face 10077 4828 4829 4961 Face 10078 5230 5362 5361 Face 10079 4695 4826 4825 Face 10080 3405 3534 3404 Face 10081 5218 5219 5350 Face 10082 5986 5987 6114 Face 10083 3143 3277 3276 Face 10084 1859 1858 1998 Face 10085 1858 2125 1998 Face 10086 2234 2618 2235 Face 10087 3673 6013 433 Face 10088 4431 4561 4560 Face 10089 4823 4824 4956 Face 10090 613 728 727 Face 10091 22616 21367 21368 Face 10092 1916 1333 4604 Face 10093 1915 1916 4604 Face 10094 2607 2606 2477 Face 10095 1969 2095 1968 Face 10096 424 10127 13217 Face 10097 3287 2751 3152 Face 10098 1536 1415 5628 Face 10099 1853 1852 1740 Face 10100 6476 6477 643 Face 10101 4722 5370 3149 Face 10102 2096 2097 2223 Face 10103 3281 3282 3409 Face 10104 34788 34644 34362 Face 10105 11686 13659 13654 Face 10106 4954 4955 5084 Face 10107 1330 1444 1329 Face 10108 1895 2016 2015 Face 10109 1894 1895 2015 Face 10110 12681 12771 12680 Face 10111 2016 2141 2140 Face 10112 2015 2016 2140 Face 10113 732 848 847 Face 10114 1443 1557 1442 Face 10115 740 856 739 Face 10116 740 739 624 Face 10117 1845 1965 1844 Face 10118 1794 180 181 Face 10119 2633 2632 3550 Face 10120 34683 34359 34319 Face 10121 487 595 594 Face 10122 15472 15454 5348 Face 10123 595 710 709 Face 10124 594 595 709 Face 10125 710 826 825 Face 10126 709 710 825 Face 10127 826 940 939 Face 10128 825 826 939 Face 10129 1050 1049 939 Face 10130 940 1050 939 Face 10131 1050 1163 1162 Face 10132 1049 1050 1162 Face 10133 18022 1271 18023 Face 10134 1162 1163 1270 Face 10135 16011 16163 16010 Face 10136 4348 2537 2408 Face 10137 22588 20280 22587 Face 10138 16320 16319 16162 Face 10139 14573 14574 14694 Face 10140 13203 11515 22658 Face 10141 13933 1352 5528 Face 10142 18465 17424 18244 Face 10143 15261 443 15664 Face 10144 1243 3372 14386 Face 10145 4356 4227 4230 Face 10146 443 14747 14746 Face 10147 16319 16318 16161 Face 10148 3582 3710 4353 Face 10149 21178 21271 21858 Face 10150 16319 16480 16318 Face 10151 897 2029 5900 Face 10152 21353 21352 21259 Face 10153 2048 15664 15663 Face 10154 14614 14737 15057 Face 10155 3710 1419 3945 Face 10156 16592 2048 15663 Face 10157 16009 16008 15857 Face 10158 4353 3710 3945 Face 10159 1126 14007 14006 Face 10160 16161 16318 16160 Face 10161 1432 16601 2304 Face 10162 4221 1126 903 Face 10163 16521 9276 9057 Face 10164 4855 1432 2304 Face 10165 14894 15292 14875 Face 10166 3945 3569 5014 Face 10167 16525 518 2125 Face 10168 22498 22499 22592 Face 10169 15675 14110 5771 Face 10170 16559 5275 157 Face 10171 15913 663 664 Face 10172 2922 15675 5771 Face 10173 4497 9057 19923 Face 10174 15903 15913 664 Face 10175 15713 15856 15712 Face 10176 13958 16521 4497 Face 10177 15713 15712 15570 Face 10178 16007 16006 15855 Face 10179 15571 15713 15570 Face 10180 15856 15855 15712 Face 10181 22593 8742 22592 Face 10182 19901 19979 19900 Face 10183 21160 34197 21161 Face 10184 12410 12318 16344 Face 10185 16075 16074 15920 Face 10186 15921 16075 15920 Face 10187 11845 14040 11209 Face 10188 15526 14165 2720 Face 10189 14374 15903 15898 Face 10190 2541 664 5328 Face 10191 14645 14646 21174 Face 10192 16315 16314 16157 Face 10193 12133 12132 12045 Face 10194 22016 22017 22114 Face 10195 15192 14251 14146 Face 10196 14346 14345 14235 Face 10197 14134 14236 14133 Face 10198 34344 34354 34494 Face 10199 34798 34309 34413 Face 10200 5456 5583 5582 Face 10201 5455 5456 5582 Face 10202 5583 5709 5708 Face 10203 5582 5583 5708 Face 10204 5709 5834 5833 Face 10205 5708 5709 5833 Face 10206 5834 5962 5961 Face 10207 5833 5834 5961 Face 10208 6089 6088 5961 Face 10209 5962 6089 5961 Face 10210 6215 6214 6088 Face 10211 6089 6215 6088 Face 10212 6335 6334 6214 Face 10213 6215 6335 6214 Face 10214 6457 6456 6334 Face 10215 6335 6457 6334 Face 10216 93 45 6456 Face 10217 6457 93 6456 Face 10218 2119 198 45 Face 10219 93 2119 45 Face 10220 290 289 198 Face 10221 2119 290 198 Face 10222 2875 3807 289 Face 10223 290 2875 289 Face 10224 4330 4851 3807 Face 10225 2875 4330 3807 Face 10226 2242 2244 4851 Face 10227 4330 2242 4851 Face 10228 6484 1749 2244 Face 10229 2242 6484 2244 Face 10230 34456 34518 34301 Face 10231 6484 1754 1749 Face 10232 17975 17885 17976 Face 10233 19539 19621 9320 Face 10234 11412 10869 12355 Face 10235 10869 10927 12811 Face 10236 12864 12863 12770 Face 10237 12771 12864 12770 Face 10238 2266 2265 2140 Face 10239 2141 2266 2140 Face 10240 4597 13180 6016 Face 10241 6110 6111 6236 Face 10242 1192 1191 1078 Face 10243 5229 5230 5361 Face 10244 28098 28235 28097 Face 10245 25638 25740 25739 Face 10246 4566 4567 4698 Face 10247 3276 3277 3404 Face 10248 3160 5493 5367 Face 10249 1456 14956 18241 Face 10250 1998 2125 3956 Face 10251 3001 3000 2864 Face 10252 12226 12227 12315 Face 10253 6234 6235 6354 Face 10254 1773 1889 1772 Face 10255 12227 12316 12315 Face 10256 6253 6372 6371 Face 10257 6494 1916 1915 Face 10258 6252 6253 6371 Face 10259 6372 6494 6493 Face 10260 4692 4693 4823 Face 10261 2753 5237 5113 Face 10262 5353 5480 5352 Face 10263 3406 3407 3535 Face 10264 643 660 3804 Face 10265 2865 2864 2737 Face 10266 6249 6248 6122 Face 10267 3138 3137 3000 Face 10268 4437 4438 4567 Face 10269 3534 3533 3404 Face 10270 12956 12955 12863 Face 10271 4046 4047 4175 Face 10272 9272 2246 10708 Face 10273 6774 300 299 Face 10274 12864 12956 12863 Face 10275 7509 9068 1573 Face 10276 2393 2392 2265 Face 10277 6475 630 6474 Face 10278 2266 2393 2265 Face 10279 4568 4700 4699 Face 10280 1666 1772 1665 Face 10281 13420 13515 13514 Face 10282 33999 33998 33871 Face 10283 3280 3281 3408 Face 10284 5096 5219 5218 Face 10285 26072 25647 27329 Face 10286 5348 15466 15472 Face 10287 596 711 710 Face 10288 595 596 710 Face 10289 711 827 826 Face 10290 710 711 826 Face 10291 827 941 940 Face 10292 826 827 940 Face 10293 1051 1050 940 Face 10294 941 1051 940 Face 10295 1051 1164 1163 Face 10296 1050 1051 1163 Face 10297 1272 1273 18024 Face 10298 1163 1164 1271 Face 10299 28369 28368 28234 Face 10300 16163 16320 16162 Face 10301 14455 14456 14573 Face 10302 20280 14896 15293 Face 10303 2365 14594 3335 Face 10304 14695 14818 14817 Face 10305 15677 15261 2048 Face 10306 673 1013 4344 Face 10307 4227 3582 4353 Face 10308 2048 15261 15664 Face 10309 16162 16161 16009 Face 10310 3582 17 4998 Face 10311 16184 7846 6910 Face 10312 16162 16319 16161 Face 10313 14076 14096 5902 Face 10314 14875 163 22591 Face 10315 15664 14746 14745 Face 10316 5900 5899 14692 Face 10317 4284 1719 4283 Face 10318 15663 15664 14745 Face 10319 15858 16009 15857 Face 10320 3710 4998 14086 Face 10321 14091 3252 14268 Face 10322 16161 16160 16008 Face 10323 14745 14629 518 Face 10324 14452 15956 15902 Face 10325 19984 19923 9850 Face 10326 15672 5636 14513 Face 10327 16346 12410 16344 Face 10328 15714 15713 15571 Face 10329 28272 12839 11097 Face 10330 12436 12527 12318 Face 10331 3253 3381 3380 Face 10332 34279 11693 34716 Face 10333 3381 3510 3509 Face 10334 34353 34655 34379 Face 10335 34099 16686 33974 Face 10336 3638 3510 3639 Face 10337 3900 3768 3901 Face 10338 23032 24780 20753 Face 10339 4028 3900 4029 Face 10340 3769 3901 3768 Face 10341 7061 7170 487 Face 10342 3901 4029 3900 Face 10343 7825 9856 5848 Face 10344 4029 4158 4028 Face 10345 21531 21532 21624 Face 10346 4288 17801 17321 Face 10347 15207 15343 15342 Face 10348 1010 14718 1214 Face 10349 16232 16231 16074 Face 10350 2720 14165 15335 Face 10351 1582 4942 1951 Face 10352 14983 1582 1951 Face 10353 5074 1582 14983 Face 10354 5328 5074 14983 Face 10355 1783 4359 16359 Face 10356 15855 16006 15854 Face 10357 12046 12133 12045 Face 10358 12133 12218 12217 Face 10359 2037 34740 34376 Face 10360 1454 15327 14441 Face 10361 14116 1018 16267 Face 10362 226 14255 14193 Face 10363 13945 15327 3977 Face 10364 31724 31836 31835 Face 10365 18556 29801 20620 Face 10366 5584 5710 5709 Face 10367 5583 5584 5709 Face 10368 5710 5835 5834 Face 10369 5709 5710 5834 Face 10370 5835 5963 5962 Face 10371 5834 5835 5962 Face 10372 6090 6089 5962 Face 10373 5963 6090 5962 Face 10374 6216 6215 6089 Face 10375 6090 6216 6089 Face 10376 6336 6335 6215 Face 10377 6216 6336 6215 Face 10378 6458 6457 6335 Face 10379 6336 6458 6335 Face 10380 96 93 6457 Face 10381 6458 96 6457 Face 10382 3192 2119 93 Face 10383 96 3192 93 Face 10384 524 290 2119 Face 10385 3192 524 2119 Face 10386 3012 2875 290 Face 10387 524 3012 290 Face 10388 4456 4330 2875 Face 10389 3012 4456 2875 Face 10390 2241 2242 4330 Face 10391 4456 2241 4330 Face 10392 1541 6484 2242 Face 10393 2241 1541 2242 Face 10394 34296 28436 29668 Face 10395 1541 1645 6484 Face 10396 12981 12436 12410 Face 10397 12411 12500 12436 Face 10398 11412 12355 10473 Face 10399 8966 11412 10473 Face 10400 13046 13045 12955 Face 10401 12956 13046 12955 Face 10402 2523 2522 2392 Face 10403 3805 3284 3673 Face 10404 2393 2523 2392 Face 10405 1517 1516 1403 Face 10406 1412 1525 1411 Face 10407 27109 27108 26992 Face 10408 25978 18361 29714 Face 10409 2733 2734 2860 Face 10410 2090 2217 2216 Face 10411 2861 2997 2996 Face 10412 1178 1179 1286 Face 10413 3137 3138 3271 Face 10414 2738 2865 2737 Face 10415 1300 1299 1191 Face 10416 1079 1078 968 Face 10417 4976 10190 10799 Face 10418 4173 4174 4303 Face 10419 10918 5619 5490 Face 10420 5489 5490 5618 Face 10421 6493 6494 1915 Face 10422 6371 6372 6493 Face 10423 6233 6353 6352 Face 10424 5980 6107 6106 Face 10425 3665 3664 3535 Face 10426 18059 4158 1452 Face 10427 5746 1988 1745 Face 10428 8313 2008 8312 Face 10429 3272 3400 3399 Face 10430 3001 3138 3000 Face 10431 3134 3268 3133 Face 10432 3535 3534 3405 Face 10433 4562 4563 4694 Face 10434 24372 24240 34793 Face 10435 8931 8827 8932 Face 10436 6000 5872 8574 Face 10437 9174 7695 930 Face 10438 34788 34407 34644 Face 10439 18739 3371 3245 Face 10440 2523 2654 2522 Face 10441 22821 22820 2120 Face 10442 13140 13139 13045 Face 10443 34554 34590 34419 Face 10444 6234 6354 6353 Face 10445 3278 3277 3143 Face 10446 30413 30484 30412 Face 10447 5493 1858 1859 Face 10448 2754 3160 5367 Face 10449 597 712 711 Face 10450 34619 34442 34717 Face 10451 712 828 827 Face 10452 711 712 827 Face 10453 828 942 941 Face 10454 827 828 941 Face 10455 942 1052 1051 Face 10456 941 942 1051 Face 10457 1052 1165 1164 Face 10458 1051 1052 1164 Face 10459 1273 1274 18026 Face 10460 1164 1165 1272 Face 10461 14574 14695 14694 Face 10462 28568 27329 25647 Face 10463 903 1126 14006 Face 10464 15090 5715 14020 Face 10465 4943 15677 15676 Face 10466 3458 3586 14091 Face 10467 3710 3582 4998 Face 10468 15676 15677 2048 Face 10469 16010 16009 15858 Face 10470 17 3438 1434 Face 10471 22498 22592 22591 Face 10472 16010 16162 16009 Face 10473 17501 18424 18330 Face 10474 12530 13643 13264 Face 10475 12759 12760 14719 Face 10476 3031 34659 10247 Face 10477 16638 4284 16637 Face 10478 34733 34567 34674 Face 10479 16009 16161 16008 Face 10480 1719 4230 5013 Face 10481 3460 14591 14092 Face 10482 16318 16317 16160 Face 10483 286 4806 2328 Face 10484 157 5275 2718 Face 10485 15571 15570 24851 Face 10486 4841 104 3431 Face 10487 20530 20529 8935 Face 10488 15857 15856 15713 Face 10489 4095 15116 15115 Face 10490 11918 19379 16516 Face 10491 3120 3254 3253 Face 10492 3119 17447 18047 Face 10493 3254 3382 3381 Face 10494 3253 3254 3381 Face 10495 3382 3511 3510 Face 10496 3381 3382 3510 Face 10497 3511 3640 3639 Face 10498 3510 3511 3639 Face 10499 3640 3770 3769 Face 10500 3639 3640 3769 Face 10501 3902 3901 3769 Face 10502 3770 3902 3769 Face 10503 4030 4029 3901 Face 10504 3902 4030 3901 Face 10505 4159 4158 4029 Face 10506 4030 4159 4029 Face 10507 4289 4288 4158 Face 10508 4159 4289 4158 Face 10509 15854 15853 15710 Face 10510 4415 4546 18927 Face 10511 4942 2922 24 Face 10512 34767 34289 34661 Face 10513 1951 4942 24 Face 10514 2922 5771 2981 Face 10515 664 5074 5328 Face 10516 14365 14374 15898 Face 10517 16158 16157 16005 Face 10518 16006 16158 16005 Face 10519 12132 12133 12217 Face 10520 15570 15712 15569 Face 10521 4628 18538 4629 Face 10522 5371 5497 5331 Face 10523 2541 5328 15518 Face 10524 2669 226 14193 Face 10525 5457 5585 5584 Face 10526 33166 31651 33915 Face 10527 5711 5710 5584 Face 10528 5585 5711 5584 Face 10529 5836 5835 5710 Face 10530 5711 5836 5710 Face 10531 5964 5963 5835 Face 10532 5836 5964 5835 Face 10533 6091 6090 5963 Face 10534 5964 6091 5963 Face 10535 6217 6216 6090 Face 10536 6091 6217 6090 Face 10537 6337 6336 6216 Face 10538 6217 6337 6216 Face 10539 6459 6458 6336 Face 10540 6337 6459 6336 Face 10541 145 96 6458 Face 10542 6459 145 6458 Face 10543 5882 3192 96 Face 10544 145 5882 96 Face 10545 3014 524 3192 Face 10546 5882 3014 3192 Face 10547 3016 3012 524 Face 10548 3014 3016 524 Face 10549 4200 4456 3012 Face 10550 3016 4200 3012 Face 10551 2240 2241 4456 Face 10552 4200 2240 4456 Face 10553 4341 1541 2241 Face 10554 2240 4341 2241 Face 10555 1877 34706 34696 Face 10556 13065 28305 28439 Face 10557 34355 34624 34754 Face 10558 12401 12402 12491 Face 10559 10869 10361 12355 Face 10560 11431 10115 9643 Face 10561 13046 13140 13045 Face 10562 13800 13799 13704 Face 10563 13235 13234 13139 Face 10564 28235 28369 28234 Face 10565 5780 1747 3174 Face 10566 13140 13235 13139 Face 10567 4821 4954 4953 Face 10568 292 6971 6867 Face 10569 26993 27109 26992 Face 10570 22124 22219 22123 Face 10571 5609 5608 5479 Face 10572 3794 3926 3793 Face 10573 3535 3664 3534 Face 10574 3399 3400 3528 Face 10575 2865 3001 2864 Face 10576 1412 1411 1299 Face 10577 19837 3331 638 Face 10578 6360 6482 6481 Face 10579 1443 1442 1328 Face 10580 5231 5363 5362 Face 10581 5230 5231 5362 Face 10582 6127 6253 6252 Face 10583 6126 6127 6252 Face 10584 5723 5724 5851 Face 10585 6107 6233 6232 Face 10586 6106 6107 6232 Face 10587 4560 4561 4692 Face 10588 1098 1200 1307 Face 10589 5622 5746 1745 Face 10590 3138 3272 3271 Face 10591 3271 3272 3399 Face 10592 3406 3535 3405 Face 10593 3664 3663 3534 Face 10594 4302 4303 4428 Face 10595 2872 3008 3007 Face 10596 296 297 401 Face 10597 511 510 401 Face 10598 13800 8966 13799 Face 10599 14530 12114 15030 Face 10600 13328 13327 13234 Face 10601 5204 2254 7158 Face 10602 13235 13328 13234 Face 10603 9616 9501 2898 Face 10604 2614 2745 2744 Face 10605 30183 11022 30248 Face 10606 28504 28503 28368 Face 10607 3278 3406 3277 Face 10608 2870 2871 3006 Face 10609 597 711 596 Face 10610 5370 3160 2754 Face 10611 598 713 712 Face 10612 597 598 712 Face 10613 713 829 828 Face 10614 712 713 828 Face 10615 829 943 942 Face 10616 828 829 942 Face 10617 943 1053 1052 Face 10618 942 943 1052 Face 10619 1053 1166 1165 Face 10620 1052 1053 1165 Face 10621 1275 1274 1167 Face 10622 1165 1166 1273 Face 10623 3252 14452 14268 Face 10624 14019 15090 14020 Face 10625 13990 14611 16199 Face 10626 15090 14169 5271 Face 10627 4998 17 1434 Face 10628 16599 4943 15676 Face 10629 15716 15859 15715 Face 10630 3438 4448 4222 Face 10631 19388 19881 19880 Face 10632 15859 16010 15858 Face 10633 3586 3252 14091 Face 10634 21771 13346 19475 Face 10635 671 6516 2290 Face 10636 13888 13887 13872 Face 10637 14396 15931 15930 Face 10638 14074 6819 256 Face 10639 16318 16479 16317 Face 10640 1719 1610 4283 Face 10641 28897 29024 29023 Face 10642 16479 16478 16317 Face 10643 14178 13833 13845 Face 10644 14743 1243 14866 Face 10645 14086 378 1660 Face 10646 2802 2924 13892 Face 10647 34357 34506 34773 Face 10648 15714 15857 15713 Face 10649 2848 2984 2983 Face 10650 34786 34495 34282 Face 10651 2984 3121 3120 Face 10652 3253 3119 3120 Face 10653 3121 3255 3254 Face 10654 3120 3121 3254 Face 10655 3255 3383 3382 Face 10656 3254 3255 3382 Face 10657 3383 3512 3511 Face 10658 3382 3383 3511 Face 10659 3512 3641 3640 Face 10660 3511 3512 3640 Face 10661 3641 3771 3770 Face 10662 3640 3641 3770 Face 10663 3903 3902 3770 Face 10664 3771 3903 3770 Face 10665 4031 4030 3902 Face 10666 3903 4031 3902 Face 10667 4160 4159 4030 Face 10668 4031 4160 4030 Face 10669 4290 4289 4159 Face 10670 4160 4290 4159 Face 10671 4416 4415 4289 Face 10672 4290 4416 4289 Face 10673 4546 4678 19047 Face 10674 4416 4546 4415 Face 10675 226 330 14255 Face 10676 4678 4679 4810 Face 10677 15903 664 2541 Face 10678 15898 15903 2541 Face 10679 16476 16475 16314 Face 10680 16315 16476 16314 Face 10681 15712 15711 15569 Face 10682 34330 34342 34417 Face 10683 13784 5471 6262 Face 10684 14255 14365 14364 Face 10685 6842 15192 14146 Face 10686 14365 15898 15888 Face 10687 14364 14365 15888 Face 10688 5586 5585 5457 Face 10689 17852 16919 33915 Face 10690 5586 5712 5711 Face 10691 5585 5586 5711 Face 10692 5837 5836 5711 Face 10693 5712 5837 5711 Face 10694 5837 5965 5964 Face 10695 5836 5837 5964 Face 10696 5965 6092 6091 Face 10697 5964 5965 6091 Face 10698 6092 6218 6217 Face 10699 6091 6092 6217 Face 10700 6338 6337 6217 Face 10701 6218 6338 6217 Face 10702 6460 6459 6337 Face 10703 6338 6460 6337 Face 10704 177 145 6459 Face 10705 6460 177 6459 Face 10706 310 5882 145 Face 10707 177 310 145 Face 10708 2877 3014 5882 Face 10709 310 2877 5882 Face 10710 3017 3016 3014 Face 10711 2877 3017 3014 Face 10712 3813 4200 3016 Face 10713 3017 3813 3016 Face 10714 2112 2240 4200 Face 10715 3813 2112 4200 Face 10716 1548 4341 2240 Face 10717 2112 1548 2240 Face 10718 34663 34829 34602 Face 10719 15179 16267 5201 Face 10720 13198 5126 11100 Face 10721 11783 13198 11100 Face 10722 13118 13272 13178 Face 10723 7122 28554 6725 Face 10724 13612 13705 13704 Face 10725 13611 13612 13704 Face 10726 13422 13421 13327 Face 10727 13328 13422 13327 Face 10728 13422 13517 13516 Face 10729 6128 6001 6129 Face 10730 5613 5738 5737 Face 10731 407 6982 516 Face 10732 5483 5484 5612 Face 10733 516 515 406 Face 10734 4432 4562 4561 Face 10735 2617 2616 2487 Face 10736 4054 4183 4182 Face 10737 3794 3793 3663 Face 10738 6354 6355 6476 Face 10739 1737 1849 1848 Face 10740 4698 4829 4828 Face 10741 2869 2870 3005 Face 10742 1329 1443 1328 Face 10743 2120 14808 22821 Face 10744 5362 5363 5489 Face 10745 5363 5490 5489 Face 10746 1403 1516 1402 Face 10747 2003 14505 14623 Face 10748 5999 6127 6126 Face 10749 5998 5999 6126 Face 10750 13000 13185 13475 Face 10751 34546 34573 34542 Face 10752 1300 1412 1299 Face 10753 1066 1179 1178 Face 10754 3400 3529 3528 Face 10755 6477 660 643 Face 10756 4054 4053 3925 Face 10757 3926 4054 3925 Face 10758 4042 4043 4171 Face 10759 1512 1623 1511 Face 10760 8721 2388 2517 Face 10761 2388 2518 2517 Face 10762 6373 6495 6494 Face 10763 34313 34702 14034 Face 10764 13224 13317 13316 Face 10765 5483 5612 5482 Face 10766 2356 2485 2355 Face 10767 2136 2261 2135 Face 10768 6376 6377 6498 Face 10769 23857 25650 24758 Face 10770 762 7224 761 Face 10771 5093 5094 5216 Face 10772 3144 3278 3143 Face 10773 3406 3405 3277 Face 10774 490 599 598 Face 10775 34489 34331 34539 Face 10776 599 714 713 Face 10777 598 599 713 Face 10778 714 830 829 Face 10779 713 714 829 Face 10780 944 943 829 Face 10781 830 944 829 Face 10782 944 1054 1053 Face 10783 943 944 1053 Face 10784 1054 1167 1166 Face 10785 1053 1054 1166 Face 10786 1387 18027 1275 Face 10787 1166 1167 1274 Face 10788 14984 4943 16599 Face 10789 15460 3586 3458 Face 10790 1434 3438 4222 Face 10791 16199 14984 16599 Face 10792 34780 27447 34514 Face 10793 4448 2408 2279 Face 10794 6539 18671 17640 Face 10795 22987 25325 25422 Face 10796 14268 14452 15902 Face 10797 11862 21771 3568 Face 10798 13983 14178 13845 Face 10799 5902 14159 14227 Face 10800 14389 14396 15930 Face 10801 1352 16126 5528 Face 10802 16638 16637 16478 Face 10803 15931 5642 2796 Face 10804 8742 14875 22592 Face 10805 16479 16638 16478 Face 10806 2461 19029 18920 Face 10807 26186 6823 29735 Face 10808 2462 2591 2590 Face 10809 34834 34669 34400 Face 10810 2591 2722 2721 Face 10811 10068 10186 10067 Face 10812 2722 2849 2848 Face 10813 2721 2722 2848 Face 10814 2849 2985 2984 Face 10815 2848 2849 2984 Face 10816 2985 3122 3121 Face 10817 2984 2985 3121 Face 10818 3122 3256 3255 Face 10819 3121 3122 3255 Face 10820 3256 3384 3383 Face 10821 3255 3256 3383 Face 10822 3513 3512 3383 Face 10823 3384 3513 3383 Face 10824 3642 3641 3512 Face 10825 3513 3642 3512 Face 10826 3772 3771 3641 Face 10827 3642 3772 3641 Face 10828 3772 3904 3903 Face 10829 3771 3772 3903 Face 10830 3904 4032 4031 Face 10831 3903 3904 4031 Face 10832 4032 4161 4160 Face 10833 4031 4032 4160 Face 10834 4291 4290 4160 Face 10835 4161 4291 4160 Face 10836 4417 4416 4290 Face 10837 4291 4417 4290 Face 10838 4547 4546 4416 Face 10839 4417 4547 4416 Face 10840 4679 4678 4546 Face 10841 4547 4679 4546 Face 10842 16635 16634 16475 Face 10843 18905 4810 4811 Face 10844 16476 16635 16475 Face 10845 4411 4287 16634 Face 10846 13481 6137 61 Face 10847 2981 3690 3563 Face 10848 61 1766 13576 Face 10849 1766 13482 13576 Face 10850 15898 2541 232 Face 10851 13467 13657 34680 Face 10852 15888 15898 232 Face 10853 14193 14255 14364 Face 10854 18626 5458 18608 Face 10855 18608 5458 5457 Face 10856 5713 5712 5586 Face 10857 29961 30022 29960 Face 10858 5713 5838 5837 Face 10859 5712 5713 5837 Face 10860 5838 5966 5965 Face 10861 5837 5838 5965 Face 10862 5966 6093 6092 Face 10863 5965 5966 6092 Face 10864 6219 6218 6092 Face 10865 6093 6219 6092 Face 10866 6339 6338 6218 Face 10867 6219 6339 6218 Face 10868 6461 6460 6338 Face 10869 6339 6461 6338 Face 10870 185 177 6460 Face 10871 6461 185 6460 Face 10872 269 310 177 Face 10873 185 269 177 Face 10874 3015 2877 310 Face 10875 269 3015 310 Face 10876 3018 3017 2877 Face 10877 3015 3018 2877 Face 10878 3943 3813 3017 Face 10879 3018 3943 3017 Face 10880 1987 2112 3813 Face 10881 3943 1987 3813 Face 10882 1642 1548 2112 Face 10883 1987 1642 2112 Face 10884 12250 12249 12162 Face 10885 34438 24241 24374 Face 10886 203 13198 11783 Face 10887 2667 203 11783 Face 10888 13178 13272 12540 Face 10889 11178 11177 11115 Face 10890 13326 13325 13232 Face 10891 13233 13326 13232 Face 10892 13421 13422 13516 Face 10893 13614 13613 13516 Face 10894 4820 4821 4953 Face 10895 1852 1972 1851 Face 10896 1520 1631 1519 Face 10897 2011 2136 2010 Face 10898 2261 2260 2135 Face 10899 4441 4442 4571 Face 10900 34489 34539 34583 Face 10901 4700 4701 4831 Face 10902 4438 4439 4568 Face 10903 4965 5095 5094 Face 10904 4568 4569 4700 Face 10905 508 507 398 Face 10906 4697 4698 4828 Face 10907 7328 878 7329 Face 10908 4052 4053 4181 Face 10909 5857 5985 5984 Face 10910 1889 1888 1772 Face 10911 1516 1627 1626 Face 10912 13517 13614 13516 Face 10913 5872 5871 9508 Face 10914 10941 30 10214 Face 10915 4304 4430 4429 Face 10916 4844 4977 4976 Face 10917 1329 1328 1221 Face 10918 1222 1329 1221 Face 10919 1516 1517 1627 Face 10920 1627 1628 1736 Face 10921 4053 4054 4182 Face 10922 3926 3925 3793 Face 10923 12310 12401 12400 Face 10924 2355 2484 2354 Face 10925 2011 2010 1889 Face 10926 1890 2011 1889 Face 10927 2099 2098 1972 Face 10928 1973 2099 1972 Face 10929 3805 3804 3284 Face 10930 6476 643 6475 Face 10931 34624 34333 34761 Face 10932 1890 1889 1773 Face 10933 2740 2867 2739 Face 10934 5226 5358 5357 Face 10935 3664 3794 3663 Face 10936 398 507 506 Face 10937 5367 5493 1859 Face 10938 3007 3144 3006 Face 10939 491 600 599 Face 10940 8540 34307 8441 Face 10941 600 715 714 Face 10942 599 600 714 Face 10943 715 831 830 Face 10944 714 715 830 Face 10945 831 945 944 Face 10946 830 831 944 Face 10947 945 1055 1054 Face 10948 944 945 1054 Face 10949 1055 1168 1167 Face 10950 1054 1055 1167 Face 10951 1168 1276 1275 Face 10952 1167 1168 1275 Face 10953 1276 1388 1387 Face 10954 34339 34478 34555 Face 10955 1388 1502 1501 Face 10956 1612 18215 1501 Face 10957 1502 1613 1612 Face 10958 1501 1502 1612 Face 10959 1613 1723 1722 Face 10960 1612 1613 1722 Face 10961 1723 1834 1833 Face 10962 1833 1834 1953 Face 10963 1834 1954 1953 Face 10964 15930 15931 2796 Face 10965 1954 2079 2078 Face 10966 2078 18708 18603 Face 10967 2079 2206 2205 Face 10968 2333 2205 2206 Face 10969 2206 2334 2333 Face 10970 18920 18816 2333 Face 10971 2334 2463 2462 Face 10972 2333 2334 2462 Face 10973 2463 2592 2591 Face 10974 2462 2463 2591 Face 10975 2592 2723 2722 Face 10976 2591 2592 2722 Face 10977 2723 2850 2849 Face 10978 2722 2723 2849 Face 10979 2850 2986 2985 Face 10980 2849 2850 2985 Face 10981 2986 3123 3122 Face 10982 2985 2986 3122 Face 10983 3123 3257 3256 Face 10984 3122 3123 3256 Face 10985 3257 3385 3384 Face 10986 3256 3257 3384 Face 10987 3514 3513 3384 Face 10988 3385 3514 3384 Face 10989 3643 3642 3513 Face 10990 3514 3643 3513 Face 10991 3643 3773 3772 Face 10992 3642 3643 3772 Face 10993 3773 3905 3904 Face 10994 3772 3773 3904 Face 10995 4033 4032 3904 Face 10996 3905 4033 3904 Face 10997 4033 4162 4161 Face 10998 4032 4033 4161 Face 10999 4292 4291 4161 Face 11000 4162 4292 4161 Face 11001 4418 4417 4291 Face 11002 4292 4418 4291 Face 11003 4548 4547 4417 Face 11004 4418 4548 4417 Face 11005 4680 4679 4547 Face 11006 4548 4680 4547 Face 11007 4811 4810 4679 Face 11008 4680 4811 4679 Face 11009 22612 22231 15722 Face 11010 34623 34480 34278 Face 11011 17735 5076 5075 Face 11012 4497 16521 9057 Face 11013 13453 12470 11608 Face 11014 11765 12361 12202 Face 11015 24 2981 16362 Face 11016 4941 1951 76 Face 11017 3966 6517 2669 Face 11018 5328 14983 14252 Face 11019 17171 16238 18845 Face 11020 3842 15002 3969 Face 11021 5587 5714 5713 Face 11022 31695 31807 31694 Face 11023 5714 5839 5838 Face 11024 5713 5714 5838 Face 11025 5967 5966 5838 Face 11026 5839 5967 5838 Face 11027 6094 6093 5966 Face 11028 5967 6094 5966 Face 11029 6220 6219 6093 Face 11030 6094 6220 6093 Face 11031 6340 6339 6219 Face 11032 6220 6340 6219 Face 11033 6462 6461 6339 Face 11034 6340 6462 6339 Face 11035 186 185 6461 Face 11036 6462 186 6461 Face 11037 768 269 185 Face 11038 186 768 185 Face 11039 6390 3015 269 Face 11040 768 6390 269 Face 11041 2880 3018 3015 Face 11042 6390 2880 3015 Face 11043 4072 3943 3018 Face 11044 2880 4072 3018 Face 11045 1744 1987 3943 Face 11046 4072 1744 3943 Face 11047 1641 1642 1987 Face 11048 1744 1641 1987 Face 11049 4078 1530 1642 Face 11050 1641 4078 1642 Face 11051 10394 9274 2667 Face 11052 5069 2003 2002 Face 11053 11116 11178 11115 Face 11054 11247 11246 11177 Face 11055 13233 13232 13137 Face 11056 13138 13233 13137 Face 11057 13707 13706 13613 Face 11058 13614 13707 13613 Face 11059 2874 2873 2746 Face 11060 2134 2259 2258 Face 11061 1774 1773 1667 Face 11062 1668 1774 1667 Face 11063 2612 2613 2743 Face 11064 4316 4442 4441 Face 11065 1199 1087 3013 Face 11066 1087 3157 3013 Face 11067 4569 4701 4700 Face 11068 4701 4832 4831 Face 11069 4962 4963 5092 Face 11070 6236 6237 6356 Face 11071 2870 3006 3005 Face 11072 34459 34662 34517 Face 11073 4558 4690 4689 Face 11074 615 730 729 Face 11075 968 1078 967 Face 11076 3656 3786 3785 Face 11077 5999 6000 6127 Face 11078 6000 6128 6127 Face 11079 4977 5108 5107 Face 11080 4976 4977 5107 Face 11081 30248 11020 30314 Face 11082 11965 12050 11964 Face 11083 1736 1737 1848 Face 11084 1628 1737 1736 Face 11085 4182 4183 4312 Face 11086 4183 4313 4312 Face 11087 4439 4440 4569 Face 11088 2613 2744 2743 Face 11089 1668 1667 1558 Face 11090 2136 2135 2010 Face 11091 2218 2219 2346 Face 11092 3135 3136 3269 Face 11093 1626 1735 1734 Face 11094 4082 4210 1317 Face 11095 1774 1890 1773 Face 11096 1559 1558 1444 Face 11097 5225 5226 5357 Face 11098 1667 1773 1666 Face 11099 4312 4313 4438 Face 11100 4439 4569 4568 Face 11101 491 599 490 Face 11102 3149 5370 2754 Face 11103 492 601 600 Face 11104 491 492 600 Face 11105 601 716 715 Face 11106 600 601 715 Face 11107 716 832 831 Face 11108 715 716 831 Face 11109 832 946 945 Face 11110 831 832 945 Face 11111 946 1056 1055 Face 11112 945 946 1055 Face 11113 1056 1169 1168 Face 11114 1055 1056 1168 Face 11115 1169 1277 1276 Face 11116 1168 1169 1276 Face 11117 1389 1388 1276 Face 11118 1277 1389 1276 Face 11119 1389 1503 1502 Face 11120 1388 1389 1502 Face 11121 1503 1614 1613 Face 11122 1502 1503 1613 Face 11123 34674 34446 34473 Face 11124 1613 1614 1723 Face 11125 14437 14480 14389 Face 11126 28369 28504 28368 Face 11127 34757 34718 34682 Face 11128 18329 18845 16238 Face 11129 34615 34751 12803 Face 11130 34723 34729 34436 Face 11131 2207 2206 2079 Face 11132 2080 2207 2079 Face 11133 2335 2334 2206 Face 11134 2207 2335 2206 Face 11135 2464 2463 2334 Face 11136 2335 2464 2334 Face 11137 2593 2592 2463 Face 11138 2464 2593 2463 Face 11139 2724 2723 2592 Face 11140 2593 2724 2592 Face 11141 2851 2850 2723 Face 11142 2724 2851 2723 Face 11143 2851 2987 2986 Face 11144 2850 2851 2986 Face 11145 2987 3124 3123 Face 11146 2986 2987 3123 Face 11147 3124 3258 3257 Face 11148 3123 3124 3257 Face 11149 3258 3386 3385 Face 11150 3257 3258 3385 Face 11151 3386 3515 3514 Face 11152 3385 3386 3514 Face 11153 3644 3643 3514 Face 11154 3515 3644 3514 Face 11155 3644 3774 3773 Face 11156 3643 3644 3773 Face 11157 3906 3905 3773 Face 11158 3774 3906 3773 Face 11159 3906 4034 4033 Face 11160 3905 3906 4033 Face 11161 4034 4163 4162 Face 11162 4033 4034 4162 Face 11163 4293 4292 4162 Face 11164 4163 4293 4162 Face 11165 4419 4418 4292 Face 11166 4293 4419 4292 Face 11167 4549 4548 4418 Face 11168 4419 4549 4418 Face 11169 4681 4680 4548 Face 11170 4549 4681 4548 Face 11171 4812 4811 4680 Face 11172 4681 4812 4680 Face 11173 4945 4944 4811 Face 11174 4812 4945 4811 Face 11175 34295 34306 34353 Face 11176 1471 24819 1693 Face 11177 11243 11242 11173 Face 11178 11174 11243 11173 Face 11179 5201 1018 17928 Face 11180 11318 11317 11242 Face 11181 15518 5328 14252 Face 11182 232 2541 15518 Face 11183 17229 17264 5459 Face 11184 34806 34417 34405 Face 11185 5459 5588 5587 Face 11186 5587 5588 5714 Face 11187 5840 5839 5714 Face 11188 34570 34782 34618 Face 11189 5968 5967 5839 Face 11190 5840 5968 5839 Face 11191 6095 6094 5967 Face 11192 5968 6095 5967 Face 11193 6221 6220 6094 Face 11194 6095 6221 6094 Face 11195 6341 6340 6220 Face 11196 6221 6341 6220 Face 11197 6463 6462 6340 Face 11198 6341 6463 6340 Face 11199 194 186 6462 Face 11200 6463 194 6462 Face 11201 1649 768 186 Face 11202 194 1649 186 Face 11203 2638 6390 768 Face 11204 1649 2638 768 Face 11205 2881 2880 6390 Face 11206 2638 2881 6390 Face 11207 3298 4072 2880 Face 11208 2881 3298 2880 Face 11209 1857 1744 4072 Face 11210 3298 1857 4072 Face 11211 1640 1641 1744 Face 11212 1857 1640 1744 Face 11213 4595 4078 1641 Face 11214 1640 4595 1641 Face 11215 2002 15964 5069 Face 11216 4595 2002 4078 Face 11217 11178 11247 11177 Face 11218 11322 11321 11246 Face 11219 13138 13137 13043 Face 11220 13044 13138 13043 Face 11221 13802 13801 13706 Face 11222 13707 13802 13706 Face 11223 13033 10350 13801 Face 11224 34563 34468 34728 Face 11225 34530 34571 34584 Face 11226 1445 1444 1330 Face 11227 611 726 725 Face 11228 1331 1330 1223 Face 11229 1186 1294 1185 Face 11230 2867 3003 2866 Face 11231 2743 2742 2611 Face 11232 4438 4568 4567 Face 11233 2612 2743 2611 Face 11234 4311 4312 4437 Face 11235 34472 34273 34492 Face 11236 6133 7259 6005 Face 11237 6133 6134 6259 Face 11238 1080 1193 1079 Face 11239 6378 10128 8166 Face 11240 3525 3524 3395 Face 11241 5978 6105 6104 Face 11242 4692 4823 4822 Face 11243 5108 5231 5230 Face 11244 5107 5108 5230 Face 11245 2610 2609 2480 Face 11246 7189 7295 14685 Face 11247 399 508 398 Face 11248 1849 1969 1968 Face 11249 4831 4832 4964 Face 11250 4313 4439 4438 Face 11251 4570 4702 4701 Face 11252 2613 2612 2483 Face 11253 397 398 506 Face 11254 1559 1668 1558 Face 11255 5101 5224 5223 Face 11256 1896 2017 2016 Face 11257 1895 1896 2016 Face 11258 2017 2142 2141 Face 11259 1445 1559 1444 Face 11260 3142 3143 3276 Face 11261 2484 2613 2483 Face 11262 2871 3007 3006 Face 11263 5218 5350 5349 Face 11264 4964 4965 5094 Face 11265 385 493 492 Face 11266 492 7066 384 Face 11267 493 602 601 Face 11268 492 493 601 Face 11269 602 717 716 Face 11270 601 602 716 Face 11271 717 833 832 Face 11272 716 717 832 Face 11273 833 947 946 Face 11274 832 833 946 Face 11275 947 1057 1056 Face 11276 946 947 1056 Face 11277 1057 1170 1169 Face 11278 1056 1057 1169 Face 11279 1170 1278 1277 Face 11280 1169 1170 1277 Face 11281 1278 1390 1389 Face 11282 1277 1278 1389 Face 11283 34424 34582 34653 Face 11284 1389 1390 1503 Face 11285 3683 148 7383 Face 11286 34400 34669 34423 Face 11287 21440 21439 21346 Face 11288 13574 34580 34387 Face 11289 4284 4283 16637 Face 11290 12410 12436 12318 Face 11291 15869 3188 7556 Face 11292 22497 22498 22591 Face 11293 31062 31061 30962 Face 11294 19880 19881 20653 Face 11295 2081 2208 2207 Face 11296 2080 2081 2207 Face 11297 2336 2335 2207 Face 11298 2208 2336 2207 Face 11299 2465 2464 2335 Face 11300 2336 2465 2335 Face 11301 2594 2593 2464 Face 11302 2465 2594 2464 Face 11303 2725 2724 2593 Face 11304 2594 2725 2593 Face 11305 2725 2852 2851 Face 11306 2724 2725 2851 Face 11307 2852 2988 2987 Face 11308 2851 2852 2987 Face 11309 2988 3125 3124 Face 11310 2987 2988 3124 Face 11311 3125 3259 3258 Face 11312 3124 3125 3258 Face 11313 3259 3387 3386 Face 11314 3258 3259 3386 Face 11315 3387 3516 3515 Face 11316 3386 3387 3515 Face 11317 3516 3645 3644 Face 11318 3515 3516 3644 Face 11319 3645 3775 3774 Face 11320 3644 3645 3774 Face 11321 3907 3906 3774 Face 11322 3775 3907 3774 Face 11323 3907 4035 4034 Face 11324 3906 3907 4034 Face 11325 4164 4163 4034 Face 11326 4035 4164 4034 Face 11327 4294 4293 4163 Face 11328 4164 4294 4163 Face 11329 4420 4419 4293 Face 11330 4294 4420 4293 Face 11331 4550 4549 4419 Face 11332 4420 4550 4419 Face 11333 4682 4681 4549 Face 11334 4550 4682 4549 Face 11335 4813 4812 4681 Face 11336 4682 4813 4681 Face 11337 4813 4946 4945 Face 11338 4812 4813 4945 Face 11339 14065 5077 15047 Face 11340 34681 34295 34284 Face 11341 11243 11318 11242 Face 11342 11399 11398 11317 Face 11343 10740 13284 8260 Face 11344 9644 10740 8260 Face 11345 2249 6517 3966 Face 11346 14983 1951 4941 Face 11347 5016 2404 5017 Face 11348 15002 2249 5248 Face 11349 5016 5017 2198 Face 11350 2197 5016 2198 Face 11351 16634 4287 16633 Face 11352 2197 2198 4410 Face 11353 5969 5968 5840 Face 11354 21384 14391 21288 Face 11355 6096 6095 5968 Face 11356 5969 6096 5968 Face 11357 6222 6221 6095 Face 11358 6096 6222 6095 Face 11359 6342 6341 6221 Face 11360 6222 6342 6221 Face 11361 6464 6463 6341 Face 11362 6342 6464 6341 Face 11363 195 194 6463 Face 11364 6464 195 6463 Face 11365 413 1649 194 Face 11366 195 413 194 Face 11367 2895 2638 1649 Face 11368 413 2895 1649 Face 11369 2876 2881 2638 Face 11370 2895 2876 2638 Face 11371 3164 3298 2881 Face 11372 2876 3164 2881 Face 11373 1979 1857 3298 Face 11374 3164 1979 3298 Face 11375 1639 1640 1857 Face 11376 1979 1639 1857 Face 11377 2878 4595 1640 Face 11378 1639 2878 1640 Face 11379 16115 2128 2253 Face 11380 2878 2128 4595 Face 11381 11247 11322 11246 Face 11382 11403 11402 11321 Face 11383 13044 13043 12953 Face 11384 12954 13044 12953 Face 11385 13802 13033 13801 Face 11386 11386 12478 10350 Face 11387 34617 34559 34344 Face 11388 2016 2017 2141 Face 11389 2142 2267 2266 Face 11390 1331 1445 1330 Face 11391 1224 1331 1223 Face 11392 34826 12102 34288 Face 11393 1426 1427 1199 Face 11394 5372 1646 5498 Face 11395 1646 1536 5498 Face 11396 4313 4314 4439 Face 11397 6483 1426 1098 Face 11398 4440 4570 4569 Face 11399 1426 1199 1200 Face 11400 4434 4564 4563 Face 11401 34804 34810 34785 Face 11402 4429 4430 4559 Face 11403 3287 3152 746 Face 11404 6259 6378 6377 Face 11405 4043 4044 4172 Face 11406 6133 6259 6258 Face 11407 6258 6259 6377 Face 11408 6483 8237 1427 Face 11409 6132 6133 6258 Face 11410 5095 5218 5217 Face 11411 6237 6357 6356 Face 11412 3939 3551 2498 Face 11413 4832 4965 4964 Face 11414 1556 1665 1555 Face 11415 2744 2871 2870 Face 11416 2141 2142 2266 Face 11417 245 10101 10850 Face 11418 2267 2394 2393 Face 11419 2266 2267 2393 Face 11420 1665 1664 1555 Face 11421 2394 2524 2523 Face 11422 2743 2744 2870 Face 11423 4053 4182 4181 Face 11424 5094 5095 5217 Face 11425 2497 2117 2498 Face 11426 386 494 493 Face 11427 385 384 6958 Face 11428 494 603 602 Face 11429 493 494 602 Face 11430 603 718 717 Face 11431 602 603 717 Face 11432 718 834 833 Face 11433 717 718 833 Face 11434 834 948 947 Face 11435 833 834 947 Face 11436 948 1058 1057 Face 11437 947 948 1057 Face 11438 1058 1171 1170 Face 11439 1057 1058 1170 Face 11440 1171 1279 1278 Face 11441 1170 1171 1278 Face 11442 1279 1391 1390 Face 11443 1278 1279 1390 Face 11444 438 548 14436 Face 11445 1275 1276 1387 Face 11446 34302 34713 34775 Face 11447 1874 5204 1746 Face 11448 8974 328 1437 Face 11449 34626 28549 26678 Face 11450 27964 28097 27963 Face 11451 18507 1835 1836 Face 11452 1660 378 6024 Face 11453 22441 21366 21178 Face 11454 4094 548 438 Face 11455 6024 4094 438 Face 11456 23791 11542 6398 Face 11457 548 14437 14436 Face 11458 18712 2209 2208 Face 11459 2208 2209 2336 Face 11460 2337 2466 2465 Face 11461 2336 2337 2465 Face 11462 2466 2595 2594 Face 11463 2465 2466 2594 Face 11464 2595 2726 2725 Face 11465 2594 2595 2725 Face 11466 2726 2853 2852 Face 11467 2725 2726 2852 Face 11468 2853 2989 2988 Face 11469 2852 2853 2988 Face 11470 2989 3126 3125 Face 11471 2988 2989 3125 Face 11472 3126 3260 3259 Face 11473 3125 3126 3259 Face 11474 3260 3388 3387 Face 11475 3259 3260 3387 Face 11476 3388 3517 3516 Face 11477 3387 3388 3516 Face 11478 3517 3646 3645 Face 11479 3516 3517 3645 Face 11480 3646 3776 3775 Face 11481 3645 3646 3775 Face 11482 3908 3907 3775 Face 11483 3776 3908 3775 Face 11484 4036 4035 3907 Face 11485 3908 4036 3907 Face 11486 4036 4165 4164 Face 11487 4035 4036 4164 Face 11488 4165 4295 4294 Face 11489 4164 4165 4294 Face 11490 4295 4421 4420 Face 11491 4294 4295 4420 Face 11492 4551 4550 4420 Face 11493 4421 4551 4420 Face 11494 4683 4682 4550 Face 11495 4551 4683 4550 Face 11496 4814 4813 4682 Face 11497 4683 4814 4682 Face 11498 4947 4946 4813 Face 11499 4814 4947 4813 Face 11500 5077 4947 5078 Face 11501 34306 34655 34353 Face 11502 11174 11173 11111 Face 11503 34277 34577 34587 Face 11504 11838 11837 11858 Face 11505 12561 10740 9644 Face 11506 13963 15002 5248 Face 11507 3842 3969 2886 Face 11508 2404 2886 5017 Face 11509 16634 16633 16474 Face 11510 16475 16634 16474 Face 11511 15454 5217 5071 Face 11512 4287 2197 4410 Face 11513 5842 5970 5969 Face 11514 5841 5842 5969 Face 11515 6097 6096 5969 Face 11516 5970 6097 5969 Face 11517 6223 6222 6096 Face 11518 6097 6223 6096 Face 11519 6343 6342 6222 Face 11520 6223 6343 6222 Face 11521 6465 6464 6342 Face 11522 6343 6465 6342 Face 11523 196 195 6464 Face 11524 6465 196 6464 Face 11525 521 413 195 Face 11526 196 521 195 Face 11527 2767 2895 413 Face 11528 521 2767 413 Face 11529 2882 2876 2895 Face 11530 2767 2882 2895 Face 11531 3426 3164 2876 Face 11532 2882 3426 2876 Face 11533 1980 1979 3164 Face 11534 3426 1980 3164 Face 11535 1638 1639 1979 Face 11536 1980 1638 1979 Face 11537 1195 2878 1639 Face 11538 1638 1195 1639 Face 11539 2253 2380 16115 Face 11540 1195 2253 2878 Face 11541 11322 11403 11321 Face 11542 11486 11485 11402 Face 11543 23883 12768 12861 Face 11544 12953 13043 12952 Face 11545 13033 11386 10350 Face 11546 11386 10705 9301 Face 11547 7235 7342 7234 Face 11548 6682 6778 6777 Face 11549 617 732 731 Face 11550 3654 3784 3653 Face 11551 10885 4582 4583 Face 11552 5221 5353 5352 Face 11553 2129 2509 2004 Face 11554 1536 1646 3305 Face 11555 4430 4431 4560 Face 11556 12499 12981 12410 Face 11557 2488 2487 2358 Face 11558 4442 4572 4571 Face 11559 2359 2488 2358 Face 11560 4571 4572 4703 Face 11561 1406 1405 1293 Face 11562 4690 4691 4821 Face 11563 1847 1848 1967 Face 11564 968 967 853 Face 11565 3655 3656 3785 Face 11566 11241 11316 11240 Face 11567 22118 22213 22117 Face 11568 6240 6360 6239 Face 11569 5102 5103 5225 Face 11570 3919 3918 3786 Face 11571 3157 3551 3939 Face 11572 3551 2497 2498 Face 11573 1888 8313 1887 Face 11574 5484 5485 5613 Face 11575 2393 2394 2523 Face 11576 2524 2655 2654 Face 11577 2523 2524 2654 Face 11578 34799 34750 34513 Face 11579 992 991 879 Face 11580 12443 16672 20013 Face 11581 2117 5372 2116 Face 11582 2117 2116 2498 Face 11583 387 495 494 Face 11584 385 386 493 Face 11585 495 604 603 Face 11586 494 495 603 Face 11587 604 719 718 Face 11588 603 604 718 Face 11589 719 835 834 Face 11590 718 719 834 Face 11591 835 949 948 Face 11592 834 835 948 Face 11593 949 1059 1058 Face 11594 948 949 1058 Face 11595 1059 1172 1171 Face 11596 1058 1059 1171 Face 11597 1172 1280 1279 Face 11598 1171 1172 1279 Face 11599 1505 18123 1392 Face 11600 1279 1280 1391 Face 11601 14437 14389 14381 Face 11602 14436 14437 14381 Face 11603 2077 14086 1660 Face 11604 378 4094 6024 Face 11605 1616 1725 1724 Face 11606 18220 1615 18316 Face 11607 1725 1837 1836 Face 11608 1724 1725 1836 Face 11609 1837 1957 1956 Face 11610 1956 18607 18507 Face 11611 2210 2082 2083 Face 11612 1957 2083 1956 Face 11613 1419 5649 3569 Face 11614 26537 26653 26652 Face 11615 3945 1419 3569 Face 11616 14086 2077 5649 Face 11617 2338 2467 2466 Face 11618 28639 28638 28503 Face 11619 2467 2596 2595 Face 11620 2466 2467 2595 Face 11621 2596 2727 2726 Face 11622 2595 2596 2726 Face 11623 2727 2854 2853 Face 11624 2726 2727 2853 Face 11625 2854 2990 2989 Face 11626 2853 2854 2989 Face 11627 2990 3127 3126 Face 11628 2989 2990 3126 Face 11629 3127 3261 3260 Face 11630 3126 3127 3260 Face 11631 3261 3389 3388 Face 11632 3260 3261 3388 Face 11633 3389 3518 3517 Face 11634 3388 3389 3517 Face 11635 3518 3647 3646 Face 11636 3517 3518 3646 Face 11637 3647 3777 3776 Face 11638 3646 3647 3776 Face 11639 3909 3908 3776 Face 11640 3777 3909 3776 Face 11641 4037 4036 3908 Face 11642 3909 4037 3908 Face 11643 4037 4166 4165 Face 11644 4036 4037 4165 Face 11645 4166 4296 4295 Face 11646 4165 4166 4295 Face 11647 4422 4421 4295 Face 11648 4296 4422 4295 Face 11649 4552 4551 4421 Face 11650 4422 4552 4421 Face 11651 4552 4684 4683 Face 11652 4551 4552 4683 Face 11653 4815 4814 4683 Face 11654 4684 4815 4683 Face 11655 4948 4947 4814 Face 11656 4815 4948 4814 Face 11657 14793 5079 14918 Face 11658 4948 5078 4947 Face 11659 12295 1198 12010 Face 11660 34503 34312 34709 Face 11661 11858 12561 9644 Face 11662 13284 1674 3823 Face 11663 2404 3842 2886 Face 11664 5716 18425 5591 Face 11665 5841 15614 5842 Face 11666 4287 4410 16633 Face 11667 5716 5843 5842 Face 11668 34289 34372 34710 Face 11669 5971 5970 5842 Face 11670 5843 5971 5842 Face 11671 6098 6097 5970 Face 11672 5971 6098 5970 Face 11673 6224 6223 6097 Face 11674 6098 6224 6097 Face 11675 6344 6343 6223 Face 11676 6224 6344 6223 Face 11677 6466 6465 6343 Face 11678 6344 6466 6343 Face 11679 217 196 6465 Face 11680 6466 217 6465 Face 11681 412 521 196 Face 11682 217 412 196 Face 11683 3546 2767 521 Face 11684 412 3546 521 Face 11685 3158 2882 2767 Face 11686 3546 3158 2767 Face 11687 3555 3426 2882 Face 11688 3158 3555 2882 Face 11689 1981 1980 3426 Face 11690 3555 1981 3426 Face 11691 1869 1638 1980 Face 11692 1981 1869 1980 Face 11693 4599 1195 1638 Face 11694 1869 4599 1638 Face 11695 2380 2253 1195 Face 11696 4599 2380 1195 Face 11697 11403 11486 11402 Face 11698 6129 6255 6254 Face 11699 12862 12954 12861 Face 11700 11564 11563 11485 Face 11701 12478 11386 9301 Face 11702 22137 22233 22441 Face 11703 10705 7781 7475 Face 11704 26767 26768 26881 Face 11705 16206 5215 14081 Face 11706 13272 12628 12540 Face 11707 5098 5099 5221 Face 11708 34495 34293 34799 Face 11709 1079 1192 1078 Face 11710 5485 5614 5613 Face 11711 11809 11808 11726 Face 11712 9301 10705 7475 Face 11713 7781 1991 10006 Face 11714 1863 1995 1864 Face 11715 3528 3529 3657 Face 11716 5103 5226 5225 Face 11717 6118 6117 5989 Face 11718 3020 3022 3160 Face 11719 13314 13313 13220 Face 11720 1623 1622 1511 Face 11721 5498 1536 5628 Face 11722 2739 2738 2607 Face 11723 2754 5367 2753 Face 11724 3407 3536 3535 Face 11725 6257 6258 6376 Face 11726 300 405 404 Face 11727 5099 5222 5221 Face 11728 3013 3157 3939 Face 11729 34498 34564 34306 Face 11730 5613 5614 5738 Face 11731 11492 11570 11491 Face 11732 11648 11647 11569 Face 11733 7475 7781 10006 Face 11734 1991 10093 12468 Face 11735 1904 1550 1118 Face 11736 5612 5611 5482 Face 11737 4690 4821 4820 Face 11738 5372 5498 2116 Face 11739 388 496 495 Face 11740 387 386 6960 Face 11741 496 605 604 Face 11742 495 496 604 Face 11743 605 720 719 Face 11744 604 605 719 Face 11745 720 836 835 Face 11746 719 720 835 Face 11747 836 950 949 Face 11748 835 836 949 Face 11749 950 1060 1059 Face 11750 949 950 1059 Face 11751 1060 1173 1172 Face 11752 1059 1060 1172 Face 11753 1173 1281 1280 Face 11754 1172 1173 1280 Face 11755 1281 1393 1392 Face 11756 1280 1281 1392 Face 11757 1393 1506 1505 Face 11758 18123 1505 18221 Face 11759 1506 1617 1616 Face 11760 14494 933 2508 Face 11761 16427 12012 10622 Face 11762 1419 14086 5649 Face 11763 1726 1838 1837 Face 11764 14955 14831 14956 Face 11765 1838 1958 1957 Face 11766 1837 1838 1957 Face 11767 1958 2084 2083 Face 11768 1957 1958 2083 Face 11769 2211 2210 2083 Face 11770 2084 2211 2083 Face 11771 28504 28639 28503 Face 11772 2211 2339 2210 Face 11773 2339 2468 2467 Face 11774 2338 2339 2467 Face 11775 2468 2597 2596 Face 11776 2467 2468 2596 Face 11777 2597 2728 2727 Face 11778 2596 2597 2727 Face 11779 2728 2855 2854 Face 11780 2727 2728 2854 Face 11781 2855 2991 2990 Face 11782 2854 2855 2990 Face 11783 2991 3128 3127 Face 11784 2990 2991 3127 Face 11785 3128 3262 3261 Face 11786 3127 3128 3261 Face 11787 3262 3390 3389 Face 11788 3261 3262 3389 Face 11789 3390 3519 3518 Face 11790 3389 3390 3518 Face 11791 3519 3648 3647 Face 11792 3518 3519 3647 Face 11793 3778 3777 3647 Face 11794 3648 3778 3647 Face 11795 3910 3909 3777 Face 11796 3778 3910 3777 Face 11797 3910 4038 4037 Face 11798 3909 3910 4037 Face 11799 4167 4166 4037 Face 11800 4038 4167 4037 Face 11801 4297 4296 4166 Face 11802 4167 4297 4166 Face 11803 4297 4423 4422 Face 11804 4296 4297 4422 Face 11805 4553 4552 4422 Face 11806 4423 4553 4422 Face 11807 4553 4685 4684 Face 11808 4552 4553 4684 Face 11809 4685 4816 4815 Face 11810 4684 4685 4815 Face 11811 4949 4948 4815 Face 11812 4816 4949 4815 Face 11813 34274 34425 34653 Face 11814 4949 5079 4948 Face 11815 3823 1674 5335 Face 11816 4861 4860 13273 Face 11817 8260 13284 3823 Face 11818 1674 4861 5335 Face 11819 5592 5591 5461 Face 11820 5462 5592 5461 Face 11821 5592 5717 5716 Face 11822 5591 5592 5716 Face 11823 5844 5843 5716 Face 11824 5717 5844 5716 Face 11825 5972 5971 5843 Face 11826 5844 5972 5843 Face 11827 6099 6098 5971 Face 11828 5972 6099 5971 Face 11829 6225 6224 6098 Face 11830 6099 6225 6098 Face 11831 6345 6344 6224 Face 11832 6225 6345 6224 Face 11833 6467 6466 6344 Face 11834 6345 6467 6344 Face 11835 277 217 6466 Face 11836 6467 277 6466 Face 11837 520 412 217 Face 11838 277 520 217 Face 11839 3545 3546 412 Face 11840 520 3545 412 Face 11841 3293 3158 3546 Face 11842 3545 3293 3546 Face 11843 3682 3555 3158 Face 11844 3293 3682 3158 Face 11845 1982 1981 3555 Face 11846 3682 1982 3555 Face 11847 1870 1869 1981 Face 11848 1982 1870 1981 Face 11849 4460 4599 1869 Face 11850 1870 4460 1869 Face 11851 2509 2380 4599 Face 11852 4460 2509 4599 Face 11853 6528 6403 26816 Face 11854 2509 2129 2380 Face 11855 11486 11564 11485 Face 11856 11968 11967 11883 Face 11857 34591 34310 34752 Face 11858 19754 22320 15437 Face 11859 10006 1991 12468 Face 11860 10093 13672 9168 Face 11861 6254 6255 6373 Face 11862 1624 1625 1733 Face 11863 6373 6374 6495 Face 11864 6891 11147 11148 Face 11865 32506 762 761 Face 11866 3787 3788 3919 Face 11867 846 960 959 Face 11868 405 514 404 Face 11869 5228 5229 5360 Face 11870 3140 3139 3002 Face 11871 3921 4049 4048 Face 11872 2230 2358 2229 Face 11873 2103 2230 2229 Face 11874 2102 2103 2229 Face 11875 4442 4443 4572 Face 11876 299 298 6773 Face 11877 2487 2486 2357 Face 11878 1648 9662 3034 Face 11879 623 622 513 Face 11880 1647 1646 5372 Face 11881 2257 2382 1989 Face 11882 11648 11727 11647 Face 11883 1647 3034 1646 Face 11884 6132 6258 6257 Face 11885 2225 2353 2352 Face 11886 12221 12220 12135 Face 11887 1975 2101 1974 Face 11888 1665 1771 1664 Face 11889 2118 5242 2117 Face 11890 9286 10747 12174 Face 11891 23317 23085 23689 Face 11892 389 497 496 Face 11893 388 6961 6962 Face 11894 497 606 605 Face 11895 496 497 605 Face 11896 606 721 720 Face 11897 605 606 720 Face 11898 721 837 836 Face 11899 720 721 836 Face 11900 837 951 950 Face 11901 836 837 950 Face 11902 951 1061 1060 Face 11903 950 951 1060 Face 11904 1061 1174 1173 Face 11905 1060 1061 1173 Face 11906 1174 1282 1281 Face 11907 1173 1174 1281 Face 11908 1282 1394 1393 Face 11909 1281 1282 1393 Face 11910 1394 1507 1506 Face 11911 1393 1394 1506 Face 11912 1507 1618 1617 Face 11913 1506 1507 1617 Face 11914 1618 1727 1726 Face 11915 19982 907 17106 Face 11916 1727 1839 1838 Face 11917 1726 1727 1838 Face 11918 1839 1959 1958 Face 11919 1838 1839 1958 Face 11920 2085 2084 1958 Face 11921 1959 2085 1958 Face 11922 2085 2212 2211 Face 11923 2084 2085 2211 Face 11924 2340 2339 2211 Face 11925 2212 2340 2211 Face 11926 2340 2469 2468 Face 11927 2339 2340 2468 Face 11928 2469 2598 2597 Face 11929 2468 2469 2597 Face 11930 2598 2729 2728 Face 11931 2597 2598 2728 Face 11932 2729 2856 2855 Face 11933 2728 2729 2855 Face 11934 2856 2992 2991 Face 11935 2855 2856 2991 Face 11936 2992 3129 3128 Face 11937 2991 2992 3128 Face 11938 3129 3263 3262 Face 11939 3128 3129 3262 Face 11940 3263 3391 3390 Face 11941 3262 3263 3390 Face 11942 3391 3520 3519 Face 11943 3390 3391 3519 Face 11944 3520 3649 3648 Face 11945 3519 3520 3648 Face 11946 3649 3779 3778 Face 11947 3648 3649 3778 Face 11948 3779 3911 3910 Face 11949 3778 3779 3910 Face 11950 4039 4038 3910 Face 11951 3911 4039 3910 Face 11952 4168 4167 4038 Face 11953 4039 4168 4038 Face 11954 4298 4297 4167 Face 11955 4168 4298 4167 Face 11956 4298 4424 4423 Face 11957 4297 4298 4423 Face 11958 4554 4553 4423 Face 11959 4424 4554 4423 Face 11960 4686 4685 4553 Face 11961 4554 4686 4553 Face 11962 4686 4817 4816 Face 11963 4685 4686 4816 Face 11964 4950 4949 4816 Face 11965 4817 4950 4816 Face 11966 5080 5079 4949 Face 11967 4950 5080 4949 Face 11968 12140 12139 12052 Face 11969 4458 14637 14757 Face 11970 12225 12224 12139 Face 11971 12053 12140 12052 Face 11972 12140 12225 12139 Face 11973 5593 5592 5462 Face 11974 5463 5593 5462 Face 11975 5593 5718 5717 Face 11976 5592 5593 5717 Face 11977 5718 5845 5844 Face 11978 5717 5718 5844 Face 11979 5973 5972 5844 Face 11980 5845 5973 5844 Face 11981 6100 6099 5972 Face 11982 5973 6100 5972 Face 11983 6226 6225 6099 Face 11984 6100 6226 6099 Face 11985 6346 6345 6225 Face 11986 6226 6346 6225 Face 11987 6468 6467 6345 Face 11988 6346 6468 6345 Face 11989 305 277 6467 Face 11990 6468 305 6467 Face 11991 411 520 277 Face 11992 305 411 277 Face 11993 3671 3545 520 Face 11994 411 3671 520 Face 11995 3159 3293 3545 Face 11996 3671 3159 3545 Face 11997 3026 3682 3293 Face 11998 3159 3026 3293 Face 11999 1983 1982 3682 Face 12000 3026 1983 3682 Face 12001 1871 1870 1982 Face 12002 1983 1871 1982 Face 12003 859 4460 1870 Face 12004 1871 859 1870 Face 12005 2642 2509 4460 Face 12006 859 2642 4460 Face 12007 34719 2037 34376 Face 12008 16172 24565 24703 Face 12009 11884 11968 11883 Face 12010 12053 12052 11967 Face 12011 22503 22597 22502 Face 12012 19356 15436 22131 Face 12013 12468 10093 9168 Face 12014 13672 8450 10684 Face 12015 5729 5857 5856 Face 12016 1295 1407 1294 Face 12017 6108 6234 6233 Face 12018 3925 4053 3924 Face 12019 4185 4184 4056 Face 12020 3925 3924 3792 Face 12021 395 396 503 Face 12022 5606 5731 5605 Face 12023 3663 3793 3662 Face 12024 5478 5607 5477 Face 12025 2098 2097 1971 Face 12026 5859 5858 5730 Face 12027 3793 3925 3792 Face 12028 4210 4597 1317 Face 12029 3793 3792 3662 Face 12030 5728 5729 5856 Face 12031 5732 5731 5606 Face 12032 854 968 853 Face 12033 6107 6108 6233 Face 12034 2998 2999 3135 Face 12035 6354 6476 6475 Face 12036 9168 13672 10684 Face 12037 3270 3398 3269 Face 12038 5242 1647 5372 Face 12039 5242 5372 2117 Face 12040 514 513 404 Face 12041 5229 5361 5360 Face 12042 390 498 497 Face 12043 6962 389 388 Face 12044 498 607 606 Face 12045 497 498 606 Face 12046 607 722 721 Face 12047 606 607 721 Face 12048 722 838 837 Face 12049 721 722 837 Face 12050 838 952 951 Face 12051 837 838 951 Face 12052 952 1062 1061 Face 12053 951 952 1061 Face 12054 1062 1175 1174 Face 12055 1061 1062 1174 Face 12056 1175 1283 1282 Face 12057 1174 1175 1282 Face 12058 1283 1395 1394 Face 12059 1282 1283 1394 Face 12060 1395 1508 1507 Face 12061 1394 1395 1507 Face 12062 1508 1619 1618 Face 12063 1507 1508 1618 Face 12064 1619 1728 1727 Face 12065 1618 1619 1727 Face 12066 1728 1840 1839 Face 12067 1727 1728 1839 Face 12068 1840 1960 1959 Face 12069 1839 1840 1959 Face 12070 2086 2085 1959 Face 12071 1960 2086 1959 Face 12072 2086 2213 2212 Face 12073 2085 2086 2212 Face 12074 2213 2341 2340 Face 12075 2212 2213 2340 Face 12076 2341 2470 2469 Face 12077 2340 2341 2469 Face 12078 2470 2599 2598 Face 12079 2469 2470 2598 Face 12080 2599 2730 2729 Face 12081 2598 2599 2729 Face 12082 2730 2857 2856 Face 12083 2729 2730 2856 Face 12084 2857 2993 2992 Face 12085 2856 2857 2992 Face 12086 2993 3130 3129 Face 12087 2992 2993 3129 Face 12088 3130 3264 3263 Face 12089 3129 3130 3263 Face 12090 3392 3391 3263 Face 12091 3264 3392 3263 Face 12092 3521 3520 3391 Face 12093 3392 3521 3391 Face 12094 3650 3649 3520 Face 12095 3521 3650 3520 Face 12096 3650 3780 3779 Face 12097 3649 3650 3779 Face 12098 3780 3912 3911 Face 12099 3779 3780 3911 Face 12100 4040 4039 3911 Face 12101 3912 4040 3911 Face 12102 4040 4169 4168 Face 12103 4039 4040 4168 Face 12104 4169 4299 4298 Face 12105 4168 4169 4298 Face 12106 4425 4424 4298 Face 12107 4299 4425 4298 Face 12108 4555 4554 4424 Face 12109 4425 4555 4424 Face 12110 4687 4686 4554 Face 12111 4555 4687 4554 Face 12112 4818 4817 4686 Face 12113 4687 4818 4686 Face 12114 4818 4951 4950 Face 12115 4817 4818 4950 Face 12116 4951 5081 5080 Face 12117 4950 4951 5080 Face 12118 5207 5208 14267 Face 12119 5081 5207 5080 Face 12120 20803 11166 16690 Face 12121 28815 23013 23067 Face 12122 29439 29438 29307 Face 12123 27998 25479 18870 Face 12124 5594 5593 5463 Face 12125 5463 5461 14172 Face 12126 5719 5718 5593 Face 12127 5594 5719 5593 Face 12128 9967 3302 7172 Face 12129 5718 5719 5845 Face 12130 5974 5973 5845 Face 12131 5846 5974 5845 Face 12132 5974 6101 6100 Face 12133 5973 5974 6100 Face 12134 6227 6226 6100 Face 12135 6101 6227 6100 Face 12136 6347 6346 6226 Face 12137 6227 6347 6226 Face 12138 6469 6468 6346 Face 12139 6347 6469 6346 Face 12140 306 305 6468 Face 12141 6469 306 6468 Face 12142 5720 411 305 Face 12143 306 5720 305 Face 12144 3801 3671 411 Face 12145 5720 3801 411 Face 12146 3808 3159 3671 Face 12147 3801 3808 3671 Face 12148 3808 2890 3026 Face 12149 3159 3808 3026 Face 12150 6362 1983 3026 Face 12151 2890 6362 3026 Face 12152 1872 1871 1983 Face 12153 6362 1872 1983 Face 12154 87 859 1871 Face 12155 1872 87 1871 Face 12156 2641 2642 859 Face 12157 87 2641 859 Face 12158 10486 10592 3953 Face 12159 2641 2004 2642 Face 12160 11968 12053 11967 Face 12161 12313 12314 12404 Face 12162 20703 20614 25419 Face 12163 655 20473 2801 Face 12164 8450 7287 12383 Face 12165 10684 8450 12383 Face 12166 4970 4971 5100 Face 12167 1997 2124 3959 Face 12168 7287 6382 6502 Face 12169 8112 8216 1897 Face 12170 2018 2143 2142 Face 12171 2017 2018 2142 Face 12172 2143 2268 2267 Face 12173 2142 2143 2267 Face 12174 2268 2395 2394 Face 12175 2267 2268 2394 Face 12176 2395 2525 2524 Face 12177 2394 2395 2524 Face 12178 2656 2526 2657 Face 12179 2524 2525 2655 Face 12180 10127 8373 13488 Face 12181 13043 13137 13042 Face 12182 6271 1001 8264 Face 12183 1964 1965 2090 Face 12184 960 1070 1069 Face 12185 514 623 513 Face 12186 3003 3140 3002 Face 12187 391 499 498 Face 12188 6963 390 389 Face 12189 499 608 607 Face 12190 498 499 607 Face 12191 723 722 607 Face 12192 608 723 607 Face 12193 723 839 838 Face 12194 722 723 838 Face 12195 839 953 952 Face 12196 838 839 952 Face 12197 953 1063 1062 Face 12198 952 953 1062 Face 12199 1063 1176 1175 Face 12200 1062 1063 1175 Face 12201 1176 1284 1283 Face 12202 1175 1176 1283 Face 12203 1284 1396 1395 Face 12204 1283 1284 1395 Face 12205 1396 1509 1508 Face 12206 1395 1396 1508 Face 12207 1509 1620 1619 Face 12208 1508 1509 1619 Face 12209 1620 1729 1728 Face 12210 1619 1620 1728 Face 12211 1729 1841 1840 Face 12212 1728 1729 1840 Face 12213 1841 1961 1960 Face 12214 1840 1841 1960 Face 12215 2087 2086 1960 Face 12216 1961 2087 1960 Face 12217 2214 2213 2086 Face 12218 2087 2214 2086 Face 12219 2214 2342 2341 Face 12220 2213 2214 2341 Face 12221 2342 2471 2470 Face 12222 2341 2342 2470 Face 12223 2471 2600 2599 Face 12224 2470 2471 2599 Face 12225 2600 2731 2730 Face 12226 2599 2600 2730 Face 12227 2731 2858 2857 Face 12228 2730 2731 2857 Face 12229 2858 2994 2993 Face 12230 2857 2858 2993 Face 12231 3131 3130 2993 Face 12232 2994 3131 2993 Face 12233 3131 3265 3264 Face 12234 3130 3131 3264 Face 12235 3393 3392 3264 Face 12236 3265 3393 3264 Face 12237 3522 3521 3392 Face 12238 3393 3522 3392 Face 12239 3651 3650 3521 Face 12240 3522 3651 3521 Face 12241 3651 3781 3780 Face 12242 3650 3651 3780 Face 12243 3781 3913 3912 Face 12244 3780 3781 3912 Face 12245 4041 4040 3912 Face 12246 3913 4041 3912 Face 12247 4041 4170 4169 Face 12248 4040 4041 4169 Face 12249 4300 4299 4169 Face 12250 4170 4300 4169 Face 12251 4426 4425 4299 Face 12252 4300 4426 4299 Face 12253 4426 4556 4555 Face 12254 4425 4426 4555 Face 12255 4556 4688 4687 Face 12256 4555 4556 4687 Face 12257 4819 4818 4687 Face 12258 4688 4819 4687 Face 12259 4952 4951 4818 Face 12260 4819 4952 4818 Face 12261 5082 5081 4951 Face 12262 4952 5082 4951 Face 12263 5209 5208 5082 Face 12264 3935 4190 9411 Face 12265 11809 11890 11808 Face 12266 28159 29408 29063 Face 12267 12383 7287 6502 Face 12268 6382 207 6142 Face 12269 5595 5594 5464 Face 12270 6502 6382 6142 Face 12271 11382 6748 6653 Face 12272 34698 34434 34455 Face 12273 6230 6350 6349 Face 12274 3399 3528 3527 Face 12275 5847 5975 5974 Face 12276 5719 7825 5846 Face 12277 5975 6102 6101 Face 12278 5974 5975 6101 Face 12279 6228 6227 6101 Face 12280 6102 6228 6101 Face 12281 6348 6347 6227 Face 12282 6228 6348 6227 Face 12283 6470 6469 6347 Face 12284 6348 6470 6347 Face 12285 315 306 6469 Face 12286 6470 315 6469 Face 12287 315 632 5720 Face 12288 306 315 5720 Face 12289 3416 3801 5720 Face 12290 632 3416 5720 Face 12291 3677 3808 3801 Face 12292 3416 3677 3801 Face 12293 2763 2890 3808 Face 12294 3677 2763 3808 Face 12295 1865 6362 2890 Face 12296 2763 1865 2890 Face 12297 1865 1993 1872 Face 12298 6362 1865 1872 Face 12299 86 87 1872 Face 12300 1993 86 1872 Face 12301 4727 2641 87 Face 12302 86 4727 87 Face 12303 1459 34408 34540 Face 12304 86 4859 4727 Face 12305 12405 12495 12494 Face 12306 12584 12495 23090 Face 12307 11727 11809 11726 Face 12308 11890 11889 11808 Face 12309 207 4343 35 Face 12310 6142 207 35 Face 12311 21722 21721 21626 Face 12312 11570 11648 11569 Face 12313 3010 3009 2873 Face 12314 34622 34334 34445 Face 12315 5224 5225 5356 Face 12316 2358 2357 2229 Face 12317 392 500 499 Face 12318 6964 6965 391 Face 12319 500 609 608 Face 12320 499 500 608 Face 12321 609 724 723 Face 12322 608 609 723 Face 12323 724 840 839 Face 12324 723 724 839 Face 12325 954 953 839 Face 12326 840 954 839 Face 12327 954 1064 1063 Face 12328 953 954 1063 Face 12329 1064 1177 1176 Face 12330 1063 1064 1176 Face 12331 1177 1285 1284 Face 12332 1176 1177 1284 Face 12333 1285 1397 1396 Face 12334 1284 1285 1396 Face 12335 1397 1510 1509 Face 12336 1396 1397 1509 Face 12337 1621 1620 1509 Face 12338 1510 1621 1509 Face 12339 1730 1729 1620 Face 12340 1621 1730 1620 Face 12341 1730 1842 1841 Face 12342 1729 1730 1841 Face 12343 1842 1962 1961 Face 12344 1841 1842 1961 Face 12345 1962 2088 2087 Face 12346 1961 1962 2087 Face 12347 2215 2214 2087 Face 12348 2088 2215 2087 Face 12349 2215 2343 2342 Face 12350 2214 2215 2342 Face 12351 2343 2472 2471 Face 12352 2342 2343 2471 Face 12353 2472 2601 2600 Face 12354 2471 2472 2600 Face 12355 2601 2732 2731 Face 12356 2600 2601 2731 Face 12357 2732 2859 2858 Face 12358 2731 2732 2858 Face 12359 2859 2995 2994 Face 12360 2858 2859 2994 Face 12361 3132 3131 2994 Face 12362 2995 3132 2994 Face 12363 3266 3265 3131 Face 12364 3132 3266 3131 Face 12365 3394 3393 3265 Face 12366 3266 3394 3265 Face 12367 3523 3522 3393 Face 12368 3394 3523 3393 Face 12369 3523 3652 3651 Face 12370 3522 3523 3651 Face 12371 3652 3782 3781 Face 12372 3651 3652 3781 Face 12373 3782 3914 3913 Face 12374 3781 3782 3913 Face 12375 4042 4041 3913 Face 12376 3914 4042 3913 Face 12377 4171 4170 4041 Face 12378 4042 4171 4041 Face 12379 4171 4301 4300 Face 12380 4170 4171 4300 Face 12381 4427 4426 4300 Face 12382 4301 4427 4300 Face 12383 4427 4557 4556 Face 12384 4426 4427 4556 Face 12385 4689 4688 4556 Face 12386 4557 4689 4556 Face 12387 4820 4819 4688 Face 12388 4689 4820 4688 Face 12389 4820 4953 4952 Face 12390 4819 4820 4952 Face 12391 5083 5082 4952 Face 12392 4953 5083 4952 Face 12393 12404 12405 12494 Face 12394 34484 34610 34273 Face 12395 30598 30597 30512 Face 12396 13673 9296 34659 Face 12397 21530 21623 21622 Face 12398 3827 4343 5507 Face 12399 11727 11726 11647 Face 12400 21435 21530 21529 Face 12401 5846 5847 5974 Face 12402 8021 5721 9856 Face 12403 5848 5976 5975 Face 12404 5847 5848 5975 Face 12405 5976 6103 6102 Face 12406 5975 5976 6102 Face 12407 6229 6228 6102 Face 12408 6103 6229 6102 Face 12409 6229 6349 6348 Face 12410 6228 6229 6348 Face 12411 6349 6471 6470 Face 12412 6348 6349 6470 Face 12413 6471 425 315 Face 12414 6470 6471 315 Face 12415 425 633 632 Face 12416 315 425 632 Face 12417 633 3544 3416 Face 12418 632 633 3416 Face 12419 3544 3550 3677 Face 12420 3416 3544 3677 Face 12421 2632 2763 3677 Face 12422 3550 2632 3677 Face 12423 1864 1865 2763 Face 12424 2632 1864 2763 Face 12425 1994 1993 1865 Face 12426 1864 1994 1865 Face 12427 982 86 1993 Face 12428 1994 982 1993 Face 12429 982 4859 86 Face 12430 15473 5210 583 Face 12431 33746 33745 33620 Face 12432 33361 33494 33360 Face 12433 12494 12495 12583 Face 12434 13794 13793 13698 Face 12435 30088 30150 30149 Face 12436 25995 25994 11183 Face 12437 5599 5724 8640 Face 12438 30375 30442 30374 Face 12439 23968 23920 24441 Face 12440 5355 5356 5482 Face 12441 1664 1770 1663 Face 12442 7784 13122 9444 Face 12443 4559 4691 4690 Face 12444 4173 4303 4302 Face 12445 4443 4573 4572 Face 12446 393 501 500 Face 12447 392 6965 6966 Face 12448 501 610 609 Face 12449 500 501 609 Face 12450 610 725 724 Face 12451 609 610 724 Face 12452 725 841 840 Face 12453 724 725 840 Face 12454 841 955 954 Face 12455 840 841 954 Face 12456 955 1065 1064 Face 12457 954 955 1064 Face 12458 1065 1178 1177 Face 12459 1064 1065 1177 Face 12460 1178 1286 1285 Face 12461 1177 1178 1285 Face 12462 1286 1398 1397 Face 12463 1285 1286 1397 Face 12464 1511 1510 1397 Face 12465 1398 1511 1397 Face 12466 1622 1621 1510 Face 12467 1511 1622 1510 Face 12468 1731 1730 1621 Face 12469 1622 1731 1621 Face 12470 1843 1842 1730 Face 12471 1731 1843 1730 Face 12472 1963 1962 1842 Face 12473 1843 1963 1842 Face 12474 1963 2089 2088 Face 12475 1962 1963 2088 Face 12476 2089 2216 2215 Face 12477 2088 2089 2215 Face 12478 2216 2344 2343 Face 12479 2215 2216 2343 Face 12480 2344 2473 2472 Face 12481 2343 2344 2472 Face 12482 2473 2602 2601 Face 12483 2472 2473 2601 Face 12484 2602 2733 2732 Face 12485 2601 2602 2732 Face 12486 2733 2860 2859 Face 12487 2732 2733 2859 Face 12488 2860 2996 2995 Face 12489 2859 2860 2995 Face 12490 2996 3133 3132 Face 12491 2995 2996 3132 Face 12492 3267 3266 3132 Face 12493 3133 3267 3132 Face 12494 3395 3394 3266 Face 12495 3267 3395 3266 Face 12496 3524 3523 3394 Face 12497 3395 3524 3394 Face 12498 3524 3653 3652 Face 12499 3523 3524 3652 Face 12500 3653 3783 3782 Face 12501 3652 3653 3782 Face 12502 3915 3914 3782 Face 12503 3783 3915 3782 Face 12504 3915 4043 4042 Face 12505 3914 3915 4042 Face 12506 4043 4172 4171 Face 12507 6778 6877 6876 Face 12508 21434 21435 21529 Face 12509 6777 6778 6876 Face 12510 12842 34752 10741 Face 12511 8004 8005 1779 Face 12512 13745 12822 13744 Face 12513 5001 3055 1882 Face 12514 34383 34466 34565 Face 12515 30087 30088 30149 Face 12516 34790 34372 34289 Face 12517 7018 7017 20624 Face 12518 34719 34303 18978 Face 12519 7068 14001 10858 Face 12520 12946 12855 19540 Face 12521 5632 5001 1882 Face 12522 34329 13762 34320 Face 12523 13609 13702 13701 Face 12524 34704 34511 34623 Face 12525 7690 10839 7088 Face 12526 1562 1447 7786 Face 12527 6995 6996 7102 Face 12528 8295 8294 8190 Face 12529 10974 8743 9733 Face 12530 10466 7824 9733 Face 12531 7093 7092 6985 Face 12532 8906 8905 8801 Face 12533 10262 10384 10383 Face 12534 5981 6109 8208 Face 12535 8919 9027 8918 Face 12536 10143 10262 10261 Face 12537 10096 10095 8859 Face 12538 9475 9474 9359 Face 12539 10142 10143 10261 Face 12540 10707 7927 10708 Face 12541 10022 10023 10141 Face 12542 7864 7971 7970 Face 12543 10993 10997 9272 Face 12544 6696 7513 7834 Face 12545 10023 10142 10141 Face 12546 8208 7146 5981 Face 12547 9915 9914 9797 Face 12548 8180 8284 8283 Face 12549 9027 9026 8918 Face 12550 10261 10262 10383 Face 12551 143 144 242 Face 12552 7739 7912 10976 Face 12553 10384 10507 10383 Face 12554 1130 5905 17696 Face 12555 10679 10309 10931 Face 12556 10561 10554 7610 Face 12557 15245 15113 3163 Face 12558 12930 7630 9328 Face 12559 8377 8376 8273 Face 12560 7051 7840 7159 Face 12561 8949 8832 10829 Face 12562 3795 10141 10140 Face 12563 8691 8690 8587 Face 12564 10147 10148 10266 Face 12565 10138 8456 6869 Face 12566 7984 8089 8088 Face 12567 8559 8152 8972 Face 12568 8838 16572 8837 Face 12569 7627 9210 9848 Face 12570 8794 8795 8898 Face 12571 20891 7020 7019 Face 12572 10466 8765 7824 Face 12573 10604 10727 8658 Face 12574 8949 10829 10490 Face 12575 28768 28767 28638 Face 12576 9360 9475 9359 Face 12577 1771 1887 1770 Face 12578 7620 10561 7610 Face 12579 12573 12663 12572 Face 12580 8743 6923 8439 Face 12581 8274 8377 8273 Face 12582 10264 10386 10385 Face 12583 9823 9940 9939 Face 12584 10387 10386 10264 Face 12585 10263 10264 10385 Face 12586 34150 34151 25853 Face 12587 8246 7183 5235 Face 12588 21822 21918 21917 Face 12589 34663 34622 34829 Face 12590 10800 10799 10073 Face 12591 6983 6982 6876 Face 12592 34723 34443 34729 Face 12593 6877 6983 6876 Face 12594 1355 4098 5379 Face 12595 10240 10121 10835 Face 12596 7431 7542 7541 Face 12597 8717 8716 8613 Face 12598 7755 7864 7863 Face 12599 8614 8717 8613 Face 12600 4086 10362 10071 Face 12601 7356 6630 9315 Face 12602 7627 7487 8250 Face 12603 24375 24242 24243 Face 12604 28639 28768 28638 Face 12605 8990 7841 8834 Face 12606 7082 7296 8270 Face 12607 28894 28893 28767 Face 12608 10005 100 6976 Face 12609 13606 13607 13699 Face 12610 12640 7471 10004 Face 12611 22211 22210 22115 Face 12612 1338 890 212 Face 12613 10027 10146 10145 Face 12614 29206 28426 34569 Face 12615 6746 6745 6652 Face 12616 9933 10049 9932 Face 12617 8323 8324 8426 Face 12618 8791 8790 8684 Face 12619 8218 8219 8323 Face 12620 8526 8525 8426 Face 12621 9775 10607 9662 Face 12622 8324 8427 8426 Face 12623 8685 8684 8581 Face 12624 8685 8791 8684 Face 12625 9456 9569 9568 Face 12626 8582 8685 8581 Face 12627 9455 9456 9568 Face 12628 9684 9798 9683 Face 12629 7090 7089 6982 Face 12630 6983 7090 6982 Face 12631 8115 8219 8218 Face 12632 8114 8115 8218 Face 12633 9567 9682 9681 Face 12634 11711 11712 11793 Face 12635 9155 10250 6695 Face 12636 8975 9087 7725 Face 12637 8415 8515 8414 Face 12638 8614 8613 8514 Face 12639 9537 8029 10117 Face 12640 8415 8414 8311 Face 12641 7647 7646 7534 Face 12642 2650 8932 2518 Face 12643 10898 7472 6700 Face 12644 6675 6770 6769 Face 12645 28768 28894 28767 Face 12646 2248 10707 1977 Face 12647 7090 7199 7198 Face 12648 8427 8526 8426 Face 12649 7089 7090 7198 Face 12650 20622 6917 11103 Face 12651 7304 7303 7198 Face 12652 1787 12007 34696 Face 12653 28790 28789 28660 Face 12654 7460 7459 7350 Face 12655 8115 8114 8009 Face 12656 7351 7460 7350 Face 12657 7572 7571 7459 Face 12658 7460 7572 7459 Face 12659 7684 7683 7571 Face 12660 7569 7681 7568 Face 12661 7572 7684 7571 Face 12662 9913 9912 9795 Face 12663 8219 8324 8323 Face 12664 7401 7290 6695 Face 12665 12355 12537 9990 Face 12666 11180 11179 11117 Face 12667 9422 10623 9997 Face 12668 11962 11961 11877 Face 12669 12163 12162 12075 Face 12670 8312 8415 8311 Face 12671 11117 11057 11058 Face 12672 8312 8311 8207 Face 12673 8515 8514 8414 Face 12674 19093 29484 29458 Face 12675 13511 13512 13608 Face 12676 8378 8478 8377 Face 12677 10243 10730 10244 Face 12678 34390 26816 6403 Face 12679 8335 10865 8455 Face 12680 8010 8115 8009 Face 12681 6790 6789 11146 Face 12682 7797 7796 7683 Face 12683 7457 7569 7456 Face 12684 7684 7797 7683 Face 12685 7906 7905 7796 Face 12686 7797 7906 7796 Face 12687 8013 8012 7905 Face 12688 7906 8013 7905 Face 12689 8118 8117 8012 Face 12690 8013 8118 8012 Face 12691 8222 8221 8117 Face 12692 8118 8222 8117 Face 12693 7794 7793 7680 Face 12694 8327 8326 8221 Face 12695 8727 8757 8237 Face 12696 7681 7794 7680 Face 12697 9584 9699 9583 Face 12698 7199 7304 7198 Face 12699 7412 7413 7523 Face 12700 9200 9097 8000 Face 12701 31372 31476 31371 Face 12702 6776 6777 6875 Face 12703 2370 1747 5780 Face 12704 8356 8459 7503 Face 12705 7304 7414 7413 Face 12706 29021 29020 28893 Face 12707 11972 12057 11971 Face 12708 7303 7304 7413 Face 12709 7525 7524 7413 Face 12710 7414 7525 7413 Face 12711 12385 11104 3168 Face 12712 7637 7636 7524 Face 12713 10388 10511 10510 Face 12714 9099 10244 7506 Face 12715 8275 8276 8378 Face 12716 9423 7051 9310 Face 12717 7681 7680 7568 Face 12718 8479 8578 8478 Face 12719 8222 8327 8221 Face 12720 16837 6939 34123 Face 12721 8430 8429 8326 Face 12722 8327 8430 8326 Face 12723 8430 8529 8528 Face 12724 8429 8430 8528 Face 12725 8529 8628 8627 Face 12726 8528 8529 8627 Face 12727 7457 7456 7347 Face 12728 8628 8733 8732 Face 12729 7903 8010 7902 Face 12730 7348 7457 7347 Face 12731 7903 7902 7793 Face 12732 7794 7903 7793 Face 12733 33226 33362 33225 Face 12734 8010 8009 7902 Face 12735 26787 27357 6603 Face 12736 20710 10965 11110 Face 12737 9097 9155 8000 Face 12738 9699 9698 9583 Face 12739 7525 7637 7524 Face 12740 7636 7635 7523 Face 12741 8810 8809 8703 Face 12742 10175 10293 10174 Face 12743 12403 12404 12493 Face 12744 11568 11646 11567 Face 12745 28894 29021 28893 Face 12746 11055 11114 11054 Face 12747 29152 29151 29020 Face 12748 18360 26209 2684 Face 12749 7750 7749 7636 Face 12750 6010 13300 1992 Face 12751 7303 7302 7197 Face 12752 8869 10429 10695 Face 12753 10808 9099 7506 Face 12754 7303 7413 7302 Face 12755 29086 29087 19093 Face 12756 3055 2024 3319 Face 12757 29319 28299 6281 Face 12758 26316 26433 26432 Face 12759 27701 27700 27573 Face 12760 34342 34519 34790 Face 12761 8627 8628 8732 Face 12762 652 6531 8539 Face 12763 8943 16572 8838 Face 12764 8732 8733 8837 Face 12765 10137 7461 8885 Face 12766 9502 9615 2256 Face 12767 29021 29152 29020 Face 12768 6625 11084 6690 Face 12769 29282 29281 29151 Face 12770 7569 7568 7456 Face 12771 7637 7750 7636 Face 12772 7859 7858 7749 Face 12773 27701 27830 27700 Face 12774 29152 29282 29151 Face 12775 34331 34543 34539 Face 12776 19190 29327 29473 Face 12777 6003 2374 2231 Face 12778 1081 10486 976 Face 12779 7983 8088 8087 Face 12780 8000 9155 6695 Face 12781 8869 7497 10429 Face 12782 7750 7859 7749 Face 12783 8356 9424 9538 Face 12784 9703 9817 9816 Face 12785 1081 8233 10486 Face 12786 5625 2234 2235 Face 12787 25849 27012 11573 Face 12788 1926 18476 18381 Face 12789 12401 12491 12490 Face 12790 8553 13393 9631 Face 12791 12400 12401 12490 Face 12792 25579 30526 25580 Face 12793 7617 8459 11099 Face 12794 13788 322 8416 Face 12795 7413 7412 7302 Face 12796 13412 13411 13317 Face 12797 7198 7303 7197 Face 12798 7413 7524 7523 Face 12799 7966 7965 7858 Face 12800 29413 29412 29281 Face 12801 7338 7339 7447 Face 12802 7447 7448 7559 Face 12803 8383 8483 8482 Face 12804 7859 7966 7858 Face 12805 7640 7641 7753 Face 12806 10371 770 9443 Face 12807 6693 7252 7596 Face 12808 7754 7755 7863 Face 12809 8071 8070 7965 Face 12810 7966 8071 7965 Face 12811 10269 10268 10149 Face 12812 1882 3055 3319 Face 12813 32515 7232 32514 Face 12814 26986 25978 17055 Face 12815 10147 10266 10146 Face 12816 7339 7448 7447 Face 12817 27640 29351 29350 Face 12818 26432 26433 26550 Face 12819 19196 19093 29458 Face 12820 761 7223 7114 Face 12821 5235 7183 5234 Face 12822 8071 8177 8176 Face 12823 28251 28385 28384 Face 12824 25575 25574 25490 Face 12825 29282 29413 29281 Face 12826 29605 25847 24012 Face 12827 29544 29543 29412 Face 12828 28384 28385 28519 Face 12829 10292 10291 10173 Face 12830 34427 34633 34816 Face 12831 1082 7381 8233 Face 12832 10592 8261 1197 Face 12833 8261 10592 10486 Face 12834 8233 8261 10486 Face 12835 1355 5379 339 Face 12836 2024 9389 2363 Face 12837 1636 8170 1525 Face 12838 10000 10123 2776 Face 12839 6901 7393 9668 Face 12840 232 15518 15478 Face 12841 13318 13412 13317 Face 12842 13787 13788 8416 Face 12843 11504 11420 11422 Face 12844 12338 12337 12249 Face 12845 29413 29544 29412 Face 12846 7223 7224 7328 Face 12847 7559 7560 1332 Face 12848 8070 8071 8176 Face 12849 8177 8281 8280 Face 12850 1332 1224 7559 Face 12851 3319 2024 2363 Face 12852 9338 9339 9453 Face 12853 13418 13513 13417 Face 12854 741 7302 857 Face 12855 13513 13610 13609 Face 12856 13700 13795 13794 Face 12857 10168 10167 10048 Face 12858 7763 7872 7762 Face 12859 596 487 7170 Face 12860 7448 7560 7559 Face 12861 8787 8891 8890 Face 12862 10267 10389 10266 Face 12863 29676 29675 29543 Face 12864 7264 8619 6134 Face 12865 13320 13414 13319 Face 12866 2173 2174 2300 Face 12867 13507 13506 13411 Face 12868 3538 3410 3539 Face 12869 30383 11016 30451 Face 12870 8176 8177 8280 Face 12871 8281 8384 8383 Face 12872 22135 12092 21651 Face 12873 8579 8580 8682 Face 12874 13232 13231 13136 Face 12875 7747 7856 7746 Face 12876 7963 7962 7855 Face 12877 22990 27277 24211 Face 12878 519 8546 3157 Face 12879 9781 8261 8233 Face 12880 7381 9781 8233 Face 12881 8769 8874 8261 Face 12882 9781 8769 8261 Face 12883 7708 7597 8874 Face 12884 8769 7708 8874 Face 12885 25026 4023 29065 Face 12886 1227 16126 3024 Face 12887 10236 9089 8342 Face 12888 10243 7083 10730 Face 12889 17142 18634 18605 Face 12890 27869 28762 27608 Face 12891 7268 7269 7583 Face 12892 12781 12780 12690 Face 12893 10898 10897 10775 Face 12894 15472 15466 16063 Face 12895 9678 9792 3410 Face 12896 10530 10531 10651 Face 12897 7873 7980 7979 Face 12898 1615 1724 18316 Face 12899 9956 9841 9842 Face 12900 9336 9337 9451 Face 12901 8470 6242 7446 Face 12902 12314 12405 12404 Face 12903 8280 8281 8383 Face 12904 8910 8909 8805 Face 12905 34688 34762 34371 Face 12906 9680 9794 9679 Face 12907 9452 9565 9564 Face 12908 7247 6869 9396 Face 12909 250 354 249 Face 12910 9564 9679 9563 Face 12911 9109 9558 7941 Face 12912 7775 7774 7661 Face 12913 7550 7662 7549 Face 12914 12643 11296 11681 Face 12915 12087 8770 12091 Face 12916 8727 8237 7446 Face 12917 8384 8484 8483 Face 12918 5124 3048 5469 Face 12919 8383 8384 8483 Face 12920 13118 12842 13272 Face 12921 8484 8583 8582 Face 12922 11725 11724 11645 Face 12923 10746 10742 3189 Face 12924 6961 387 6960 Face 12925 23236 21508 21509 Face 12926 18057 16917 17674 Face 12927 30384 22706 19265 Face 12928 10923 9781 7381 Face 12929 8141 10923 7381 Face 12930 8663 8769 9781 Face 12931 10923 8663 9781 Face 12932 7709 7708 8769 Face 12933 8663 7709 8769 Face 12934 13106 3947 34718 Face 12935 7709 10813 7708 Face 12936 9798 9915 9797 Face 12937 8141 7381 1082 Face 12938 10100 10681 9089 Face 12939 34542 34755 34499 Face 12940 12874 12966 12965 Face 12941 34326 18647 34303 Face 12942 7550 7549 7438 Face 12943 8770 11761 12091 Face 12944 10512 10511 10388 Face 12945 1446 1445 1332 Face 12946 1093 7597 1092 Face 12947 8680 8681 8786 Face 12948 9451 9452 9564 Face 12949 10587 4720 635 Face 12950 10783 10905 10904 Face 12951 9680 9679 9564 Face 12952 34797 34530 34584 Face 12953 29544 29676 29543 Face 12954 8483 8484 8582 Face 12955 10877 7927 2248 Face 12956 34312 34757 34285 Face 12957 5105 5104 10073 Face 12958 9565 9680 9564 Face 12959 11431 8475 34531 Face 12960 10282 10283 10404 Face 12961 4622 3461 12147 Face 12962 3932 5744 4578 Face 12963 7631 200 4317 Face 12964 8657 517 2028 Face 12965 9511 8747 9762 Face 12966 26476 11745 11665 Face 12967 6000 5999 5872 Face 12968 13013 13655 34288 Face 12969 7856 7963 7855 Face 12970 1083 9501 9616 Face 12971 9211 6003 5876 Face 12972 3809 3551 8650 Face 12973 9789 9905 3932 Face 12974 10260 10261 4056 Face 12975 10872 7161 10221 Face 12976 10586 10872 10221 Face 12977 9560 8141 7161 Face 12978 10872 9560 7161 Face 12979 9560 8162 10923 Face 12980 8141 9560 10923 Face 12981 8162 8980 8663 Face 12982 10923 8162 8663 Face 12983 8754 7709 8663 Face 12984 8980 8754 8663 Face 12985 8866 10813 7709 Face 12986 8754 8866 7709 Face 12987 1082 208 6540 Face 12988 8866 9536 10813 Face 12989 390 497 389 Face 12990 8615 8516 2258 Face 12991 24506 28436 19225 Face 12992 27454 27453 27334 Face 12993 11170 11171 11239 Face 12994 9408 10566 7478 Face 12995 7662 7661 7549 Face 12996 7662 7775 7661 Face 12997 516 625 515 Face 12998 10953 10980 8018 Face 12999 6869 7088 9396 Face 13000 10404 10405 10527 Face 13001 2123 3432 3561 Face 13002 9794 9793 9679 Face 13003 7506 7397 9882 Face 13004 9621 8552 8023 Face 13005 29807 29806 29675 Face 13006 29676 29807 29675 Face 13007 34345 34461 12836 Face 13008 28282 28283 18878 Face 13009 25647 34739 7923 Face 13010 7229 7249 6130 Face 13011 12925 2900 3947 Face 13012 25638 24082 22079 Face 13013 21455 27609 12636 Face 13014 17768 18840 18421 Face 13015 5756 8040 10673 Face 13016 8883 7733 5744 Face 13017 3664 3795 3794 Face 13018 19954 20031 20030 Face 13019 10460 10946 8340 Face 13020 7045 249 7044 Face 13021 7827 9219 8340 Face 13022 10946 7827 8340 Face 13023 7246 10836 9219 Face 13024 7827 7246 9219 Face 13025 10440 10586 10836 Face 13026 7246 10440 10836 Face 13027 10012 10872 10586 Face 13028 10440 10012 10586 Face 13029 10957 9560 10872 Face 13030 10012 10957 10872 Face 13031 10957 8161 8162 Face 13032 9560 10957 8162 Face 13033 8161 8873 8980 Face 13034 8162 8161 8980 Face 13035 8873 8860 8754 Face 13036 8980 8873 8754 Face 13037 9675 8866 8754 Face 13038 8860 9675 8754 Face 13039 9556 9536 8866 Face 13040 9675 9556 8866 Face 13041 8879 8985 9536 Face 13042 9556 8879 9536 Face 13043 6364 6486 6485 Face 13044 34777 34736 34627 Face 13045 12601 12691 12600 Face 13046 34474 34643 34685 Face 13047 7884 7883 7774 Face 13048 13312 13406 13405 Face 13049 8304 8303 8199 Face 13050 7775 7884 7774 Face 13051 7321 7431 7430 Face 13052 7321 7320 7215 Face 13053 9475 9588 9474 Face 13054 7320 7321 7430 Face 13055 8191 8295 8190 Face 13056 1451 10378 5633 Face 13057 9702 9816 9815 Face 13058 2251 8985 8879 Face 13059 318 6138 2528 Face 13060 7201 7202 7306 Face 13061 11485 11563 11484 Face 13062 34656 34434 34698 Face 13063 18064 16832 29806 Face 13064 9334 9335 9449 Face 13065 9223 9335 9334 Face 13066 9222 9223 9334 Face 13067 3666 3665 3536 Face 13068 9110 9223 9222 Face 13069 9335 9450 9449 Face 13070 29807 18064 29806 Face 13071 21264 21263 16832 Face 13072 27639 26180 26297 Face 13073 33438 12195 34262 Face 13074 7712 10089 9789 Face 13075 30862 30861 30755 Face 13076 10089 8783 9905 Face 13077 9789 10089 9905 Face 13078 8783 8884 8883 Face 13079 9905 8783 8883 Face 13080 8884 9074 7733 Face 13081 8883 8884 7733 Face 13082 9074 10461 10460 Face 13083 7733 9074 10460 Face 13084 10824 10946 10460 Face 13085 10461 10824 10460 Face 13086 10824 10937 7827 Face 13087 10946 10824 7827 Face 13088 10937 7605 7246 Face 13089 7827 10937 7246 Face 13090 7605 10445 10440 Face 13091 7246 7605 10440 Face 13092 10445 9897 10012 Face 13093 10440 10445 10012 Face 13094 9897 10956 10957 Face 13095 10012 9897 10957 Face 13096 10956 8160 8161 Face 13097 10957 10956 8161 Face 13098 8160 8561 8873 Face 13099 8161 8160 8873 Face 13100 8561 8965 8860 Face 13101 8873 8561 8860 Face 13102 8965 7194 9675 Face 13103 8860 8965 9675 Face 13104 7194 8347 9556 Face 13105 9675 7194 9556 Face 13106 8468 8879 9556 Face 13107 8347 8468 9556 Face 13108 34598 34749 34672 Face 13109 8468 7822 8879 Face 13110 20113 20192 20191 Face 13111 8686 8685 8582 Face 13112 11171 11240 11239 Face 13113 9050 2618 7915 Face 13114 7991 7990 7883 Face 13115 10201 99 2661 Face 13116 7143 3701 9627 Face 13117 7884 7991 7883 Face 13118 10238 7077 10240 Face 13119 8636 8333 10197 Face 13120 34335 34391 34577 Face 13121 10120 10238 10240 Face 13122 7862 7969 7968 Face 13123 7054 7946 7487 Face 13124 7046 250 7045 Face 13125 11122 11618 11765 Face 13126 7802 8558 9535 Face 13127 1976 8476 2103 Face 13128 9588 9587 9474 Face 13129 9701 9702 9815 Face 13130 34450 34615 34461 Face 13131 7707 10223 6289 Face 13132 7054 7378 7946 Face 13133 8073 8074 8179 Face 13134 3282 3281 3148 Face 13135 34614 34725 34748 Face 13136 9089 10482 8855 Face 13137 8527 8526 8427 Face 13138 16818 16748 16749 Face 13139 8578 8681 8577 Face 13140 9335 9336 9450 Face 13141 7682 7681 7569 Face 13142 10556 10191 7373 Face 13143 9451 9564 9563 Face 13144 8900 8901 9008 Face 13145 10265 10387 10264 Face 13146 7650 7649 7537 Face 13147 7496 10480 10357 Face 13148 18064 21264 16832 Face 13149 21264 17378 17819 Face 13150 34196 34069 21160 Face 13151 10870 8723 30824 Face 13152 7609 10089 7712 Face 13153 8723 7609 7712 Face 13154 8887 8783 10089 Face 13155 7609 8887 10089 Face 13156 8780 8884 8783 Face 13157 8887 8780 8783 Face 13158 8780 7075 9074 Face 13159 8884 8780 9074 Face 13160 7075 10340 10461 Face 13161 9074 7075 10461 Face 13162 10340 8106 10824 Face 13163 10461 10340 10824 Face 13164 8106 8025 10937 Face 13165 10824 8106 10937 Face 13166 8025 7140 7605 Face 13167 10937 8025 7605 Face 13168 7140 10676 10445 Face 13169 7605 7140 10445 Face 13170 10676 7852 9897 Face 13171 10445 10676 9897 Face 13172 7852 10819 10956 Face 13173 9897 7852 10956 Face 13174 10819 7589 8160 Face 13175 10956 10819 8160 Face 13176 7589 8464 8561 Face 13177 8160 7589 8561 Face 13178 8464 8648 8965 Face 13179 8561 8464 8965 Face 13180 8648 10576 7194 Face 13181 8965 8648 7194 Face 13182 10576 8445 8347 Face 13183 7194 10576 8347 Face 13184 8445 8472 8468 Face 13185 8347 8445 8468 Face 13186 10451 7822 8468 Face 13187 8472 10451 8468 Face 13188 24511 24372 34793 Face 13189 32821 32820 32687 Face 13190 2023 6535 15 Face 13191 5595 930 7695 Face 13192 6697 10201 2661 Face 13193 5748 9894 13011 Face 13194 8096 8095 7990 Face 13195 9710 9709 9594 Face 13196 10573 8333 8636 Face 13197 7439 10573 8636 Face 13198 8617 8618 8720 Face 13199 10186 10304 10185 Face 13200 9938 9939 10054 Face 13201 6944 7947 9855 Face 13202 8175 8176 8279 Face 13203 24442 23978 22901 Face 13204 8583 8686 8582 Face 13205 13494 9956 9957 Face 13206 8280 8383 8382 Face 13207 14623 14148 1529 Face 13208 7627 10991 7487 Face 13209 6922 10081 9665 Face 13210 10238 9872 9065 Face 13211 8618 8721 8720 Face 13212 21263 21264 17819 Face 13213 7980 8085 7979 Face 13214 8493 8494 8592 Face 13215 7707 6291 10593 Face 13216 8059 8270 9741 Face 13217 8558 10991 7818 Face 13218 30756 30862 30755 Face 13219 10991 7627 7818 Face 13220 10991 7054 7487 Face 13221 8558 7818 9535 Face 13222 7946 9741 7487 Face 13223 8792 8791 8685 Face 13224 9022 9135 9134 Face 13225 8686 8792 8685 Face 13226 8896 8895 8791 Face 13227 8792 8896 8791 Face 13228 8896 9004 9003 Face 13229 8895 8896 9003 Face 13230 6944 7378 10727 Face 13231 9004 9117 9116 Face 13232 9003 9004 9116 Face 13233 9230 9229 9116 Face 13234 9117 9230 9116 Face 13235 8482 8483 8581 Face 13236 8176 8280 8279 Face 13237 6968 395 394 Face 13238 17378 6906 432 Face 13239 17819 17378 432 Face 13240 10104 8723 10359 Face 13241 10359 33149 27362 Face 13242 9983 7609 8723 Face 13243 10104 9983 8723 Face 13244 8994 8887 7609 Face 13245 9983 8994 7609 Face 13246 8674 8780 8887 Face 13247 8994 8674 8887 Face 13248 10500 7075 8780 Face 13249 8674 10500 8780 Face 13250 10341 10340 7075 Face 13251 10500 10341 7075 Face 13252 10341 8105 8106 Face 13253 10340 10341 8106 Face 13254 8105 10588 8025 Face 13255 8106 8105 8025 Face 13256 10588 7693 7140 Face 13257 8025 10588 7140 Face 13258 7693 8153 10676 Face 13259 7140 7693 10676 Face 13260 8153 10501 7852 Face 13261 10676 8153 7852 Face 13262 10501 10834 10819 Face 13263 7852 10501 10819 Face 13264 10834 9671 7589 Face 13265 10819 10834 7589 Face 13266 9671 7011 8464 Face 13267 7589 9671 8464 Face 13268 7011 8549 8648 Face 13269 8464 7011 8648 Face 13270 8549 10454 10576 Face 13271 8648 8549 10576 Face 13272 10454 8165 8445 Face 13273 10576 10454 8445 Face 13274 8165 8370 8472 Face 13275 8445 8165 8472 Face 13276 8370 10329 10451 Face 13277 8472 8370 10451 Face 13278 2261 2388 8618 Face 13279 10329 8548 10451 Face 13280 1985 3817 170 Face 13281 13756 11856 11773 Face 13282 19094 29535 29484 Face 13283 1765 12853 13293 Face 13284 7863 7970 7969 Face 13285 34044 18322 18418 Face 13286 8333 7739 10197 Face 13287 9595 9710 9594 Face 13288 10426 10425 10303 Face 13289 10789 10911 10910 Face 13290 10106 8952 9855 Face 13291 10304 10426 10303 Face 13292 34764 34471 34321 Face 13293 21821 21822 21917 Face 13294 11850 12740 12823 Face 13295 7573 7572 7460 Face 13296 243 7038 244 Face 13297 11770 15193 11853 Face 13298 9377 9492 9376 Face 13299 10782 10904 10903 Face 13300 7074 10573 7439 Face 13301 9492 9605 9604 Face 13302 7232 7338 7337 Face 13303 10625 10556 7368 Face 13304 8827 8826 8720 Face 13305 8721 8827 8720 Face 13306 8827 8931 8826 Face 13307 8931 8930 8826 Face 13308 9265 9264 9151 Face 13309 9039 9038 8930 Face 13310 8931 9039 8930 Face 13311 9152 9151 9038 Face 13312 9152 9265 9151 Face 13313 9039 9152 9038 Face 13314 9377 9376 9264 Face 13315 9265 9377 9264 Face 13316 7802 9535 8559 Face 13317 9492 9491 9376 Face 13318 8256 11931 12006 Face 13319 10797 7802 8559 Face 13320 34376 34740 34336 Face 13321 7837 10818 10568 Face 13322 10604 6944 10727 Face 13323 6108 6109 6234 Face 13324 8765 10604 8658 Face 13325 2375 12562 11854 Face 13326 9842 13401 9957 Face 13327 7378 6944 9855 Face 13328 7685 7684 7572 Face 13329 16260 9613 9612 Face 13330 7573 7685 7572 Face 13331 7798 7797 7684 Face 13332 7685 7798 7684 Face 13333 7907 7906 7797 Face 13334 7254 6130 7249 Face 13335 13217 13488 7743 Face 13336 6906 20623 20622 Face 13337 432 6906 20622 Face 13338 9985 10104 7391 Face 13339 21252 34196 21160 Face 13340 6905 9983 10104 Face 13341 9985 6905 10104 Face 13342 9106 8994 9983 Face 13343 6905 9106 9983 Face 13344 10253 8674 8994 Face 13345 9106 10253 8994 Face 13346 10709 10500 8674 Face 13347 10253 10709 8674 Face 13348 10220 10341 10500 Face 13349 10709 10220 10500 Face 13350 10220 8104 8105 Face 13351 10341 10220 8105 Face 13352 8104 7444 10588 Face 13353 8105 8104 10588 Face 13354 7444 7139 7693 Face 13355 10588 7444 7693 Face 13356 7139 7387 8153 Face 13357 7693 7139 8153 Face 13358 7387 10502 10501 Face 13359 8153 7387 10501 Face 13360 10502 8423 10834 Face 13361 10501 10502 10834 Face 13362 8423 9529 9671 Face 13363 10834 8423 9671 Face 13364 9529 6820 7011 Face 13365 9671 9529 7011 Face 13366 6820 9077 8549 Face 13367 7011 6820 8549 Face 13368 9077 7895 10454 Face 13369 8549 9077 10454 Face 13370 7895 8101 8165 Face 13371 10454 7895 8165 Face 13372 8101 8268 8370 Face 13373 8165 8101 8370 Face 13374 8268 10209 10329 Face 13375 8370 8268 10329 Face 13376 10209 8647 8548 Face 13377 10329 10209 8548 Face 13378 8647 10854 8767 Face 13379 8548 8647 8767 Face 13380 7805 8245 8767 Face 13381 10854 7805 8767 Face 13382 23444 23443 24730 Face 13383 11610 11756 11676 Face 13384 9710 9824 9823 Face 13385 9342 9341 9229 Face 13386 10180 10181 10298 Face 13387 10299 10421 10420 Face 13388 10426 10549 10548 Face 13389 10697 10916 10794 Face 13390 29739 24541 29606 Face 13391 22017 22018 22115 Face 13392 7798 7907 7797 Face 13393 8014 8013 7906 Face 13394 7907 8014 7906 Face 13395 8483 8582 8581 Face 13396 8119 8118 8013 Face 13397 10425 10426 10548 Face 13398 9498 16421 9499 Face 13399 10788 10789 10910 Face 13400 10549 10670 10669 Face 13401 7991 8096 7990 Face 13402 10504 7074 7439 Face 13403 13404 13499 13498 Face 13404 205 635 4720 Face 13405 13310 13404 13403 Face 13406 11601 7784 13794 Face 13407 10272 10273 10807 Face 13408 13403 13404 13498 Face 13409 5090 5214 5073 Face 13410 3948 2782 5764 Face 13411 8761 10273 10272 Face 13412 8751 8761 10272 Face 13413 7373 8761 8751 Face 13414 7368 7373 8751 Face 13415 9738 9623 10625 Face 13416 10556 7373 7368 Face 13417 9834 9833 9719 Face 13418 7298 9623 9738 Face 13419 9491 9492 9604 Face 13420 9720 9834 9719 Face 13421 9720 9719 9604 Face 13422 9605 9720 9604 Face 13423 9951 9950 9833 Face 13424 9834 9951 9833 Face 13425 10067 10066 9950 Face 13426 9951 10067 9950 Face 13427 10186 10185 10066 Face 13428 10067 10186 10066 Face 13429 9842 9841 9727 Face 13430 10304 10303 10185 Face 13431 9728 9727 9612 Face 13432 9728 9842 9727 Face 13433 8073 8179 8178 Face 13434 7702 795 796 Face 13435 8014 8119 8013 Face 13436 6684 6685 6780 Face 13437 20623 17056 6917 Face 13438 20622 20623 6917 Face 13439 8142 9985 10995 Face 13440 7241 32093 31988 Face 13441 9987 6905 9985 Face 13442 8142 9987 9985 Face 13443 9218 9106 6905 Face 13444 9987 9218 6905 Face 13445 10252 10253 9106 Face 13446 9218 10252 9106 Face 13447 8854 10709 10253 Face 13448 10252 8854 10253 Face 13449 8444 10220 10709 Face 13450 8854 8444 10709 Face 13451 8444 8103 8104 Face 13452 10220 8444 8104 Face 13453 8103 7554 7444 Face 13454 8104 8103 7444 Face 13455 7554 10861 7139 Face 13456 7444 7554 7139 Face 13457 10861 10944 7387 Face 13458 7139 10861 7387 Face 13459 10944 10749 10502 Face 13460 7387 10944 10502 Face 13461 10749 9193 8423 Face 13462 10502 10749 8423 Face 13463 9193 9527 9529 Face 13464 8423 9193 9529 Face 13465 9527 9505 6820 Face 13466 9529 9527 6820 Face 13467 9505 9189 9077 Face 13468 6820 9505 9077 Face 13469 9189 10639 7895 Face 13470 9077 9189 7895 Face 13471 10639 8102 8101 Face 13472 7895 10639 8101 Face 13473 8102 7613 8268 Face 13474 8101 8102 8268 Face 13475 7613 10090 10209 Face 13476 8268 7613 10209 Face 13477 10090 7598 8647 Face 13478 10209 10090 8647 Face 13479 7598 8467 10854 Face 13480 8647 7598 10854 Face 13481 8535 7805 10854 Face 13482 8467 8535 10854 Face 13483 34576 34621 34350 Face 13484 197 296 6770 Face 13485 19988 4459 17970 Face 13486 3148 9450 9563 Face 13487 10062 10181 10061 Face 13488 10181 10299 10298 Face 13489 10915 10916 9653 Face 13490 8299 8402 8401 Face 13491 8823 8822 8716 Face 13492 10079 7520 7119 Face 13493 8223 8222 8118 Face 13494 8119 8223 8118 Face 13495 8328 8327 8222 Face 13496 8223 8328 8222 Face 13497 8431 8430 8327 Face 13498 20094 26650 26649 Face 13499 8328 8431 8327 Face 13500 10697 10794 10671 Face 13501 9230 9342 9229 Face 13502 10789 10788 10664 Face 13503 10793 10794 10915 Face 13504 9709 9710 9823 Face 13505 10911 7074 10504 Face 13506 8202 8201 8095 Face 13507 8096 8202 8095 Face 13508 8202 8306 8201 Face 13509 8306 8305 8201 Face 13510 8608 8607 8508 Face 13511 8409 8408 8305 Face 13512 8306 8409 8305 Face 13513 8509 8608 8508 Face 13514 8509 8508 8408 Face 13515 8409 8509 8408 Face 13516 8711 8710 8607 Face 13517 8608 8711 8607 Face 13518 8817 8816 8710 Face 13519 8711 8817 8710 Face 13520 8816 8817 8920 Face 13521 8817 8921 8920 Face 13522 10464 7298 9738 Face 13523 8921 9029 9028 Face 13524 8140 7298 10464 Face 13525 9623 10556 10625 Face 13526 10931 8140 8666 Face 13527 8666 8140 10464 Face 13528 10976 10931 10810 Face 13529 10810 10931 8666 Face 13530 7739 10976 9963 Face 13531 9963 10976 10810 Face 13532 10910 10911 10504 Face 13533 10197 7739 9963 Face 13534 10670 10794 10793 Face 13535 9946 10062 9945 Face 13536 10548 10549 10669 Face 13537 10669 10670 10793 Face 13538 7915 2618 4204 Face 13539 10281 10282 10403 Face 13540 8530 8529 8430 Face 13541 8431 8530 8430 Face 13542 17056 19862 13276 Face 13543 6917 17056 13276 Face 13544 7574 8142 9439 Face 13545 9439 8142 10995 Face 13546 8451 9987 8142 Face 13547 7574 8451 8142 Face 13548 9217 9218 9987 Face 13549 8451 9217 9987 Face 13550 10254 10252 9218 Face 13551 9217 10254 9218 Face 13552 6672 8854 10252 Face 13553 10254 6672 10252 Face 13554 10396 8444 8854 Face 13555 6672 10396 8854 Face 13556 10396 7666 8103 Face 13557 8444 10396 8103 Face 13558 7666 7553 7554 Face 13559 8103 7666 7554 Face 13560 7553 10739 10861 Face 13561 7554 7553 10861 Face 13562 10739 10822 10944 Face 13563 10861 10739 10944 Face 13564 10822 10624 10749 Face 13565 10944 10822 10749 Face 13566 10624 9772 9193 Face 13567 10749 10624 9193 Face 13568 9772 9552 9527 Face 13569 9193 9772 9527 Face 13570 9552 10467 9505 Face 13571 9527 9552 9505 Face 13572 10467 9300 9189 Face 13573 9505 10467 9189 Face 13574 9300 10308 10639 Face 13575 9189 9300 10639 Face 13576 10308 8107 8102 Face 13577 10639 10308 8102 Face 13578 8107 7117 7613 Face 13579 8102 8107 7613 Face 13580 7117 9973 10090 Face 13581 7613 7117 10090 Face 13582 9973 7483 7598 Face 13583 10090 9973 7598 Face 13584 7483 10726 8467 Face 13585 7598 7483 8467 Face 13586 10726 7400 8535 Face 13587 8467 10726 8535 Face 13588 1975 1855 1976 Face 13589 10954 4720 10587 Face 13590 13501 13598 13597 Face 13591 2123 3561 2122 Face 13592 9487 9486 9371 Face 13593 21724 21725 21821 Face 13594 7585 8885 7461 Face 13595 9652 8656 7826 Face 13596 34814 28548 34416 Face 13597 8823 8927 8822 Face 13598 8530 8629 8628 Face 13599 12136 12135 12048 Face 13600 8529 8530 8628 Face 13601 8629 8734 8733 Face 13602 8525 8524 8425 Face 13603 8628 8629 8733 Face 13604 9342 9457 9456 Face 13605 7820 10071 8360 Face 13606 13470 10084 10916 Face 13607 7365 456 349 Face 13608 10298 10299 10420 Face 13609 9653 10084 10071 Face 13610 9824 9941 9940 Face 13611 10665 10789 10664 Face 13612 8138 10323 10082 Face 13613 9823 9824 9940 Face 13614 13830 19682 19599 Face 13615 10082 10200 6697 Face 13616 38 11854 98 Face 13617 12562 12838 11937 Face 13618 7894 6981 8262 Face 13619 7508 6629 10496 Face 13620 9739 9744 7894 Face 13621 21204 14645 21174 Face 13622 7402 10076 9739 Face 13623 6981 9213 8262 Face 13624 10231 10237 7402 Face 13625 9744 6981 7894 Face 13626 8668 8669 10231 Face 13627 10076 9744 9739 Face 13628 8669 10237 10231 Face 13629 10237 10076 7402 Face 13630 9255 9254 9141 Face 13631 10118 10208 7300 Face 13632 8920 8921 9028 Face 13633 9142 9255 9141 Face 13634 9142 9141 9028 Face 13635 9029 9142 9028 Face 13636 9367 9366 9254 Face 13637 9255 9367 9254 Face 13638 9482 9481 9366 Face 13639 9367 9482 9366 Face 13640 9595 9594 9481 Face 13641 9482 9595 9481 Face 13642 9715 9829 9714 Face 13643 9946 9945 9828 Face 13644 10468 10240 10835 Face 13645 10282 10404 10403 Face 13646 8426 8425 8322 Face 13647 8323 8426 8322 Face 13648 8734 8839 8838 Face 13649 8733 8734 8838 Face 13650 19862 23434 20075 Face 13651 13276 19862 20075 Face 13652 10078 7574 10520 Face 13653 34055 10520 9439 Face 13654 10021 8451 7574 Face 13655 10078 10021 7574 Face 13656 9782 9217 8451 Face 13657 10021 9782 8451 Face 13658 10255 10254 9217 Face 13659 9782 10255 9217 Face 13660 9618 6672 10254 Face 13661 10255 9618 10254 Face 13662 9657 10396 6672 Face 13663 9618 9657 6672 Face 13664 9657 7667 7666 Face 13665 10396 9657 7666 Face 13666 7667 8209 7553 Face 13667 7666 7667 7553 Face 13668 8209 10862 10739 Face 13669 7553 8209 10739 Face 13670 10862 8319 10822 Face 13671 10739 10862 10822 Face 13672 8319 10503 10624 Face 13673 10822 8319 10624 Face 13674 10503 9659 9772 Face 13675 10624 10503 9772 Face 13676 9659 10983 9552 Face 13677 9772 9659 9552 Face 13678 10983 419 10467 Face 13679 9552 10983 10467 Face 13680 419 9413 9300 Face 13681 10467 419 9300 Face 13682 9413 10363 10308 Face 13683 9300 9413 10308 Face 13684 10363 8108 8107 Face 13685 10308 10363 8107 Face 13686 8108 7118 7117 Face 13687 8107 8108 7117 Face 13688 7118 9972 9973 Face 13689 7117 7118 9973 Face 13690 9972 10111 7483 Face 13691 9973 9972 7483 Face 13692 10111 8868 10726 Face 13693 7483 10111 10726 Face 13694 8868 10587 7400 Face 13695 10726 8868 7400 Face 13696 34333 34369 34283 Face 13697 34812 34784 34786 Face 13698 14009 752 753 Face 13699 7257 459 458 Face 13700 9260 9372 9259 Face 13701 10643 10767 10642 Face 13702 8394 8393 8290 Face 13703 567 458 459 Face 13704 8009 8114 8113 Face 13705 8008 8009 8113 Face 13706 6264 8139 6263 Face 13707 8839 16411 8943 Face 13708 34440 23023 34554 Face 13709 12470 11122 11765 Face 13710 13502 13503 13599 Face 13711 7902 8009 8008 Face 13712 19139 2590 2721 Face 13713 11562 11561 11483 Face 13714 8426 8525 8425 Face 13715 8770 12262 1425 Face 13716 6397 6528 26816 Face 13717 10544 10543 10420 Face 13718 9899 6873 10484 Face 13719 10057 10056 9940 Face 13720 10421 10544 10420 Face 13721 9409 7594 8138 Face 13722 9941 10057 9940 Face 13723 8518 8243 7577 Face 13724 10200 10201 6697 Face 13725 10888 8243 8518 Face 13726 7843 10888 8518 Face 13727 7250 10803 6902 Face 13728 8243 7250 7577 Face 13729 7379 7732 7717 Face 13730 7577 7250 6902 Face 13731 10803 7732 7379 Face 13732 8977 7937 8044 Face 13733 6902 10803 7379 Face 13734 7732 8977 7717 Face 13735 7717 8977 8044 Face 13736 7937 10729 7728 Face 13737 8044 7937 7728 Face 13738 10729 10367 7918 Face 13739 7728 10729 7918 Face 13740 34304 34810 34804 Face 13741 7301 8669 8668 Face 13742 7918 10367 7291 Face 13743 9551 8240 10118 Face 13744 7300 7301 8668 Face 13745 2661 99 9551 Face 13746 10208 7301 7300 Face 13747 99 8240 9551 Face 13748 8240 10208 10118 Face 13749 10536 10657 10535 Face 13750 10657 10781 10780 Face 13751 10539 10660 10538 Face 13752 10784 10906 10905 Face 13753 9372 9487 9371 Face 13754 9600 9599 9486 Face 13755 10477 8865 8972 Face 13756 10354 10477 8972 Face 13757 8114 8218 8217 Face 13758 8113 8114 8217 Face 13759 9341 9342 9456 Face 13760 23434 26104 26103 Face 13761 7410 3560 8654 Face 13762 1523 1635 1634 Face 13763 20075 23434 26103 Face 13764 26104 27444 27396 Face 13765 8442 10078 9214 Face 13766 32665 10520 34055 Face 13767 8550 10021 10078 Face 13768 8442 8550 10078 Face 13769 9900 9782 10021 Face 13770 8550 9900 10021 Face 13771 10256 10255 9782 Face 13772 9900 10256 9782 Face 13773 10136 9618 10255 Face 13774 10256 10136 10255 Face 13775 8126 9657 9618 Face 13776 10136 8126 9618 Face 13777 8126 7555 7667 Face 13778 9657 8126 7667 Face 13779 7555 8210 8209 Face 13780 7667 7555 8209 Face 13781 8210 10738 10862 Face 13782 8209 8210 10862 Face 13783 10738 8318 8319 Face 13784 10862 10738 8319 Face 13785 8318 7331 10503 Face 13786 8319 8318 10503 Face 13787 7331 10609 9659 Face 13788 10503 7331 9659 Face 13789 10609 8158 10983 Face 13790 9659 10609 10983 Face 13791 8158 9091 419 Face 13792 10983 8158 419 Face 13793 9091 9526 9413 Face 13794 419 9091 9413 Face 13795 9526 7481 10363 Face 13796 9413 9526 10363 Face 13797 7481 7944 8108 Face 13798 10363 7481 8108 Face 13799 7944 8620 7118 Face 13800 8108 7944 7118 Face 13801 8620 10621 9972 Face 13802 7118 8620 9972 Face 13803 10621 9992 10111 Face 13804 9972 10621 10111 Face 13805 9992 10814 8868 Face 13806 10111 9992 8868 Face 13807 10814 10954 10587 Face 13808 8868 10814 10587 Face 13809 7030 9428 4720 Face 13810 14009 871 1227 Face 13811 11084 11085 214 Face 13812 4453 4327 10642 Face 13813 9372 9371 9259 Face 13814 2397 2396 8525 Face 13815 10616 10833 7731 Face 13816 10117 8133 9998 Face 13817 7680 7793 7679 Face 13818 7793 7902 7901 Face 13819 9457 9570 9569 Face 13820 11397 11396 11315 Face 13821 9456 9457 9569 Face 13822 27 11771 38 Face 13823 7793 7792 7679 Face 13824 7858 7965 7857 Face 13825 23761 20779 21360 Face 13826 7901 7902 8008 Face 13827 9147 9260 9146 Face 13828 8542 5599 9062 Face 13829 10544 10665 10664 Face 13830 10181 10180 10061 Face 13831 10176 10175 10056 Face 13832 10543 10544 10664 Face 13833 10805 10559 9409 Face 13834 10057 10176 10056 Face 13835 9088 9537 10307 Face 13836 10323 10200 10082 Face 13837 7924 9047 10135 Face 13838 300 404 299 Face 13839 9570 9685 9684 Face 13840 9047 9399 7469 Face 13841 9569 9570 9684 Face 13842 10631 10632 10755 Face 13843 9799 9798 9684 Face 13844 9685 9799 9684 Face 13845 6719 10583 7295 Face 13846 12308 12307 12218 Face 13847 7507 7829 6719 Face 13848 2917 2916 7810 Face 13849 7726 6792 7507 Face 13850 8572 7576 7291 Face 13851 7615 7721 7726 Face 13852 7829 10583 6719 Face 13853 7721 6792 7726 Face 13854 6792 7829 7507 Face 13855 13324 13323 13230 Face 13856 7053 7162 10848 Face 13857 8416 322 13746 Face 13858 9616 2898 13369 Face 13859 9519 8137 9520 Face 13860 9735 10367 14328 Face 13861 9916 9915 9798 Face 13862 25859 25860 25970 Face 13863 10656 10657 10780 Face 13864 22118 22119 22213 Face 13865 10783 10784 10905 Face 13866 10781 10903 10902 Face 13867 9487 9600 9486 Face 13868 10784 10783 10659 Face 13869 4215 10188 129 Face 13870 9715 9714 9599 Face 13871 8218 8323 8322 Face 13872 9454 9567 9566 Face 13873 10761 10760 10636 Face 13874 8217 8218 8322 Face 13875 28826 2297 18647 Face 13876 13849 12113 11158 Face 13877 32665 8835 9214 Face 13878 10345 8348 32315 Face 13879 9107 8442 8835 Face 13880 8348 9107 8835 Face 13881 8649 8550 8442 Face 13882 9107 8649 8442 Face 13883 9901 9900 8550 Face 13884 8649 9901 8550 Face 13885 10751 10256 9900 Face 13886 9901 10751 9900 Face 13887 8784 10136 10256 Face 13888 10751 8784 10256 Face 13889 8022 8126 10136 Face 13890 8784 8022 10136 Face 13891 9788 7555 8126 Face 13892 8022 9788 8126 Face 13893 9788 8211 8210 Face 13894 7555 9788 8210 Face 13895 8211 10737 10738 Face 13896 8210 8211 10738 Face 13897 10737 8317 8318 Face 13898 10738 10737 8318 Face 13899 8317 7332 7331 Face 13900 8318 8317 7331 Face 13901 7332 10610 10609 Face 13902 7331 7332 10609 Face 13903 10610 8157 8158 Face 13904 10609 10610 8158 Face 13905 8157 9317 9091 Face 13906 8158 8157 9091 Face 13907 9317 9641 9526 Face 13908 9091 9317 9526 Face 13909 9641 8258 7481 Face 13910 9526 9641 7481 Face 13911 8051 7944 7481 Face 13912 8258 8051 7481 Face 13913 8051 8621 8620 Face 13914 7944 8051 8620 Face 13915 8621 8988 10621 Face 13916 8620 8621 10621 Face 13917 8988 10230 9992 Face 13918 10621 8988 9992 Face 13919 10230 7173 10814 Face 13920 9992 10230 10814 Face 13921 7173 7030 10954 Face 13922 10814 7173 10954 Face 13923 10954 7030 4720 Face 13924 9909 10024 3667 Face 13925 11875 11959 11958 Face 13926 9428 10112 4720 Face 13927 7915 517 7477 Face 13928 10628 4316 10507 Face 13929 7467 8990 8834 Face 13930 278 188 6387 Face 13931 7792 7793 7901 Face 13932 8387 8388 8487 Face 13933 8070 8069 7964 Face 13934 7568 7680 7567 Face 13935 8806 8910 8805 Face 13936 6043 6170 6169 Face 13937 8703 8702 8599 Face 13938 26103 26104 27396 Face 13939 10538 10659 10537 Face 13940 8187 8186 8080 Face 13941 7976 8081 7975 Face 13942 7568 7567 7455 Face 13943 7456 7568 7455 Face 13944 11537 11942 12741 Face 13945 6630 9403 9315 Face 13946 9147 9146 9033 Face 13947 9034 9147 9033 Face 13948 10294 10293 10175 Face 13949 10176 10294 10175 Face 13950 10413 10536 10412 Face 13951 10416 10415 10293 Face 13952 9298 3938 3797 Face 13953 7594 10323 8138 Face 13954 7924 10584 7292 Face 13955 8067 8068 8173 Face 13956 10895 659 10894 Face 13957 10584 7924 10135 Face 13958 10895 10894 10772 Face 13959 10773 10895 10772 Face 13960 659 10325 8833 Face 13961 659 8779 10894 Face 13962 10325 9438 8759 Face 13963 8779 659 8833 Face 13964 10606 9421 9203 Face 13965 8833 10325 8759 Face 13966 9438 9421 10606 Face 13967 8753 6892 8950 Face 13968 8759 9438 10606 Face 13969 9421 8753 9203 Face 13970 9203 8753 8950 Face 13971 6892 7465 10322 Face 13972 8950 6892 10322 Face 13973 7465 1546 3043 Face 13974 10971 7721 7615 Face 13975 10322 7465 3043 Face 13976 7469 9399 7053 Face 13977 10848 10971 7615 Face 13978 10135 9047 7469 Face 13979 7162 10971 10848 Face 13980 12407 12406 12315 Face 13981 9399 7162 7053 Face 13982 7543 7544 7655 Face 13983 9075 7699 9291 Face 13984 10780 10781 10902 Face 13985 7432 7433 7543 Face 13986 10660 10784 10659 Face 13987 10903 7837 7136 Face 13988 9600 9715 9599 Face 13989 10416 10539 10415 Face 13990 12718 6016 6137 Face 13991 9829 9828 9714 Face 13992 6172 10315 6171 Face 13993 10473 9990 13798 Face 13994 7707 10470 10223 Face 13995 13791 10094 13790 Face 13996 7009 8348 10223 Face 13997 10470 7009 10223 Face 13998 7832 9107 8348 Face 13999 7009 7832 8348 Face 14000 8755 8649 9107 Face 14001 7832 8755 9107 Face 14002 10016 9901 8649 Face 14003 8755 10016 8649 Face 14004 10257 10751 9901 Face 14005 10016 10257 9901 Face 14006 9283 8784 10751 Face 14007 10257 9283 10751 Face 14008 10245 8022 8784 Face 14009 9283 10245 8784 Face 14010 8756 9788 8022 Face 14011 10245 8756 8022 Face 14012 8756 8212 8211 Face 14013 9788 8756 8211 Face 14014 8212 10614 10737 Face 14015 8211 8212 10737 Face 14016 10614 8316 8317 Face 14017 10737 10614 8317 Face 14018 8316 7333 7332 Face 14019 8317 8316 7332 Face 14020 7333 8953 10610 Face 14021 7332 7333 10610 Face 14022 8953 8156 8157 Face 14023 10610 8953 8157 Face 14024 8156 9430 9317 Face 14025 8157 8156 9317 Face 14026 9430 9640 9641 Face 14027 9317 9430 9641 Face 14028 9640 8534 8258 Face 14029 9641 9640 8258 Face 14030 8050 8051 8258 Face 14031 8534 8050 8258 Face 14032 8050 8622 8621 Face 14033 8051 8050 8621 Face 14034 7665 8988 8621 Face 14035 8622 7665 8621 Face 14036 9879 10230 8988 Face 14037 7665 9879 8988 Face 14038 9879 8361 7173 Face 14039 10230 9879 7173 Face 14040 8361 6921 7030 Face 14041 7173 8361 7030 Face 14042 6921 9542 9428 Face 14043 7030 6921 9428 Face 14044 9542 7600 10112 Face 14045 9428 9542 10112 Face 14046 10112 7600 753 Face 14047 33935 21727 21631 Face 14048 10888 7843 8845 Face 14049 9799 9916 9798 Face 14050 11717 11799 11716 Face 14051 7638 7639 7751 Face 14052 7456 7455 7346 Face 14053 7347 7456 7346 Face 14054 9709 9708 9593 Face 14055 9594 9709 9593 Face 14056 19031 26473 28820 Face 14057 34557 34592 34437 Face 14058 20634 20728 13640 Face 14059 10825 3815 10874 Face 14060 1883 27164 27215 Face 14061 8342 8855 6941 Face 14062 21734 32201 21735 Face 14063 8026 8939 7377 Face 14064 30108 30109 30170 Face 14065 7266 7377 9885 Face 14066 20075 26103 26102 Face 14067 11082 13185 13000 Face 14068 8593 8696 8695 Face 14069 7680 7679 7567 Face 14070 9034 9033 8925 Face 14071 10633 10634 10757 Face 14072 10906 10871 9670 Face 14073 9260 9259 9146 Face 14074 10536 10535 10412 Face 14075 10905 10906 9670 Face 14076 8174 8278 8277 Face 14077 10657 10656 10535 Face 14078 12540 12095 12010 Face 14079 7109 7108 7001 Face 14080 7955 10332 9306 Face 14081 10234 7924 7292 Face 14082 7862 7863 7969 Face 14083 7392 7393 6901 Face 14084 7247 9396 8642 Face 14085 13314 13408 13313 Face 14086 8023 8642 7815 Face 14087 9184 8023 7815 Face 14088 8041 9184 7815 Face 14089 15321 15889 13468 Face 14090 2203 15321 13374 Face 14091 34391 34588 34500 Face 14092 11608 12202 12201 Face 14093 34479 34777 34294 Face 14094 12952 12951 20962 Face 14095 34673 34381 34680 Face 14096 12225 12226 12314 Face 14097 11637 11716 11636 Face 14098 12141 12140 12053 Face 14099 28886 28885 28758 Face 14100 7590 9048 9156 Face 14101 11941 12026 10747 Face 14102 1546 9048 7590 Face 14103 544 57 70 Face 14104 3043 1546 7590 Face 14105 9048 9159 9156 Face 14106 6133 7264 6134 Face 14107 9461 9460 9345 Face 14108 7085 12366 3694 Face 14109 9689 9803 9802 Face 14110 7544 7656 7655 Face 14111 8843 8739 8844 Face 14112 10902 10903 7136 Face 14113 7323 7433 7322 Face 14114 10660 10659 10538 Face 14115 7837 10568 9904 Face 14116 9829 9946 9828 Face 14117 10294 10416 10293 Face 14118 243 348 347 Face 14119 10062 10061 9945 Face 14120 10593 10470 7707 Face 14121 13489 13490 10189 Face 14122 10593 9100 7009 Face 14123 10470 10593 7009 Face 14124 8995 7832 7009 Face 14125 9100 8995 7009 Face 14126 9170 8755 7832 Face 14127 8995 9170 7832 Face 14128 10017 10016 8755 Face 14129 9170 10017 8755 Face 14130 7551 10257 10016 Face 14131 10017 7551 10016 Face 14132 10314 9283 10257 Face 14133 7551 10314 10257 Face 14134 10126 10245 9283 Face 14135 10314 10126 9283 Face 14136 10226 8756 10245 Face 14137 10126 10226 10245 Face 14138 10700 8212 8756 Face 14139 10226 10700 8756 Face 14140 10700 10613 10614 Face 14141 8212 10700 10614 Face 14142 10613 8315 8316 Face 14143 10614 10613 8316 Face 14144 8315 8418 7333 Face 14145 8316 8315 7333 Face 14146 8418 8872 8953 Face 14147 7333 8418 8953 Face 14148 8872 9448 8156 Face 14149 8953 8872 8156 Face 14150 9448 9544 9430 Face 14151 8156 9448 9430 Face 14152 9544 9639 9640 Face 14153 9430 9544 9640 Face 14154 9639 8523 8534 Face 14155 9640 9639 8534 Face 14156 8523 7945 8050 Face 14157 8534 8523 8050 Face 14158 8623 8622 8050 Face 14159 7945 8623 8050 Face 14160 9859 7665 8622 Face 14161 8623 9859 8622 Face 14162 9761 9879 7665 Face 14163 9859 9761 7665 Face 14164 9761 8257 8361 Face 14165 9879 9761 8361 Face 14166 8257 10920 6921 Face 14167 8361 8257 6921 Face 14168 10920 8760 9542 Face 14169 6921 10920 9542 Face 14170 8760 7599 7600 Face 14171 9542 8760 7600 Face 14172 12359 6699 13651 Face 14173 7265 873 7599 Face 14174 1671 1561 1562 Face 14175 3193 434 176 Face 14176 9959 7851 10372 Face 14177 10462 9306 6870 Face 14178 10032 10031 9915 Face 14179 27444 29144 29143 Face 14180 9064 7611 7512 Face 14181 9198 9885 8460 Face 14182 12057 12058 12144 Face 14183 14719 12760 24122 Face 14184 7817 4611 1580 Face 14185 24441 24442 22901 Face 14186 11639 11638 11560 Face 14187 9064 7512 7500 Face 14188 34666 34538 34452 Face 14189 7611 9198 8460 Face 14190 8048 9064 7500 Face 14191 7611 8460 7512 Face 14192 10376 8048 7500 Face 14193 9198 7266 9885 Face 14194 9916 10032 9915 Face 14195 8295 8398 8397 Face 14196 6923 10376 7500 Face 14197 6890 6996 6889 Face 14198 9337 9338 9452 Face 14199 8279 8280 8382 Face 14200 9437 8339 9172 Face 14201 7330 7334 8673 Face 14202 8716 8822 8715 Face 14203 8926 8925 8821 Face 14204 10095 7999 9525 Face 14205 10871 7999 10095 Face 14206 10173 10291 10172 Face 14207 10413 10412 10290 Face 14208 7655 7656 7768 Face 14209 7656 7769 7768 Face 14210 11888 11887 11806 Face 14211 11886 11885 11804 Face 14212 11876 11960 11959 Face 14213 21446 21541 21540 Face 14214 22774 7192 7998 Face 14215 3538 9909 3667 Face 14216 6888 6887 6788 Face 14217 34726 12631 12722 Face 14218 6887 6888 6993 Face 14219 6888 6994 6993 Face 14220 6993 6994 7100 Face 14221 6994 7101 7100 Face 14222 7100 7101 7209 Face 14223 7101 7210 7209 Face 14224 7425 7536 7535 Face 14225 7315 7314 7209 Face 14226 7210 7315 7209 Face 14227 7424 7425 7535 Face 14228 7315 7425 7424 Face 14229 7314 7315 7424 Face 14230 7648 7647 7535 Face 14231 7536 7648 7535 Face 14232 11220 11680 12908 Face 14233 7761 7760 7647 Face 14234 13197 13482 1766 Face 14235 12908 13000 13381 Face 14236 11317 11398 11316 Face 14237 13379 13378 13279 Face 14238 6173 6293 10315 Face 14239 6137 755 1766 Face 14240 7808 7778 9899 Face 14241 6687 6783 6782 Face 14242 11716 11715 11636 Face 14243 9999 10098 9899 Face 14244 7433 7544 7543 Face 14245 10151 10150 10031 Face 14246 7136 7837 9904 Face 14247 7218 7323 7217 Face 14248 10539 10538 10415 Face 14249 10568 10559 10805 Face 14250 11586 11505 11506 Face 14251 10315 6980 6291 Face 14252 10221 6540 319 Face 14253 6769 6768 110 Face 14254 6980 8968 9100 Face 14255 10593 6980 9100 Face 14256 8437 8995 9100 Face 14257 8968 8437 9100 Face 14258 9787 9170 8995 Face 14259 8437 9787 8995 Face 14260 9104 10017 9170 Face 14261 9787 9104 9170 Face 14262 6608 7551 10017 Face 14263 9104 6608 10017 Face 14264 10373 10314 7551 Face 14265 6608 10373 7551 Face 14266 10007 10126 10314 Face 14267 10373 10007 10314 Face 14268 7228 10226 10126 Face 14269 10007 7228 10126 Face 14270 10577 10700 10226 Face 14271 7228 10577 10226 Face 14272 10577 10612 10613 Face 14273 10700 10577 10613 Face 14274 10612 7441 8315 Face 14275 10613 10612 8315 Face 14276 7441 8419 8418 Face 14277 8315 7441 8418 Face 14278 8419 9175 8872 Face 14279 8418 8419 8872 Face 14280 9175 9441 9448 Face 14281 8872 9175 9448 Face 14282 9441 10724 9544 Face 14283 9448 9441 9544 Face 14284 10724 9638 9639 Face 14285 9544 10724 9639 Face 14286 9638 8522 8523 Face 14287 9639 9638 8523 Face 14288 8522 8052 7945 Face 14289 8523 8522 7945 Face 14290 8624 8623 7945 Face 14291 8052 8624 7945 Face 14292 9860 9859 8623 Face 14293 8624 9860 8623 Face 14294 10352 9761 9859 Face 14295 9860 10352 9859 Face 14296 8463 8257 9761 Face 14297 10352 8463 9761 Face 14298 7280 10920 8257 Face 14299 8463 7280 8257 Face 14300 7280 7274 8760 Face 14301 10920 7280 8760 Face 14302 7274 7265 7599 Face 14303 8760 7274 7599 Face 14304 25760 25759 21983 Face 14305 187 188 316 Face 14306 7076 10326 8545 Face 14307 485 376 377 Face 14308 8479 8478 8378 Face 14309 10032 10151 10031 Face 14310 10265 10264 10145 Face 14311 6017 6542 6543 Face 14312 8497 8498 8596 Face 14313 9130 9243 9129 Face 14314 6996 7103 7102 Face 14315 125 4334 4186 Face 14316 34307 34717 34298 Face 14317 8067 7961 7962 Face 14318 19901 19900 19824 Face 14319 27396 27444 29143 Face 14320 328 8974 3447 Face 14321 16661 25956 25955 Face 14322 27574 27701 27573 Face 14323 29144 19098 19095 Face 14324 9447 13762 34329 Face 14325 30 10941 16406 Face 14326 27574 27573 27453 Face 14327 8026 4735 9869 Face 14328 7764 7873 7872 Face 14329 8909 9017 9016 Face 14330 8908 8909 9016 Face 14331 8478 8577 8477 Face 14332 8939 8026 9869 Face 14333 8892 9000 8999 Face 14334 7763 7764 7872 Face 14335 8613 8612 8513 Face 14336 10722 7719 8871 Face 14337 10436 8443 8335 Face 14338 8822 8926 8821 Face 14339 10291 10290 10172 Face 14340 9525 10436 8335 Face 14341 7769 7878 7877 Face 14342 10291 10413 10290 Face 14343 11566 11565 11487 Face 14344 7768 7769 7877 Face 14345 34743 34677 34684 Face 14346 34451 34400 34355 Face 14347 8986 9078 7254 Face 14348 11324 11405 11323 Face 14349 9128 9127 9014 Face 14350 29143 29144 19095 Face 14351 637 527 18133 Face 14352 9015 9128 9014 Face 14353 7725 9882 8763 Face 14354 9211 9846 9098 Face 14355 9997 8975 8763 Face 14356 9884 9997 8763 Face 14357 9422 9997 9884 Face 14358 7160 9422 9884 Face 14359 10936 7035 10815 Face 14360 9422 7160 9512 Face 14361 10474 10936 7147 Face 14362 7035 9422 9512 Face 14363 7404 10474 8063 Face 14364 7035 9512 10815 Face 14365 10474 7147 8063 Face 14366 10936 10815 7147 Face 14367 7761 7870 7760 Face 14368 8834 7841 10570 Face 14369 7648 7761 7647 Face 14370 7977 7976 7869 Face 14371 7870 7977 7869 Face 14372 7870 7869 7760 Face 14373 8082 8081 7976 Face 14374 7977 8082 7976 Face 14375 34503 34445 34312 Face 14376 8188 8187 8081 Face 14377 7778 6873 9899 Face 14378 25473 25478 18456 Face 14379 10970 7286 13363 Face 14380 10476 10098 7476 Face 14381 7433 7432 7322 Face 14382 10270 10269 10150 Face 14383 9904 10568 10805 Face 14384 7218 7217 7108 Face 14385 10315 6293 7153 Face 14386 10559 7594 9409 Face 14387 7153 6980 10315 Face 14388 545 3701 3832 Face 14389 7153 9081 8968 Face 14390 6980 7153 8968 Face 14391 9984 8437 8968 Face 14392 9081 9984 8968 Face 14393 9902 9787 8437 Face 14394 9984 9902 8437 Face 14395 9105 9104 9787 Face 14396 9902 9105 9787 Face 14397 8469 6608 9104 Face 14398 9105 8469 9104 Face 14399 9847 10373 6608 Face 14400 8469 9847 6608 Face 14401 9893 10007 10373 Face 14402 9847 9893 10373 Face 14403 9893 7440 7228 Face 14404 10007 9893 7228 Face 14405 7440 10823 10577 Face 14406 7228 7440 10577 Face 14407 10823 10611 10612 Face 14408 10577 10823 10612 Face 14409 10611 7442 7441 Face 14410 10612 10611 7441 Face 14411 7442 8420 8419 Face 14412 7441 7442 8419 Face 14413 8420 128 9175 Face 14414 8419 8420 9175 Face 14415 9435 9441 9175 Face 14416 128 9435 9175 Face 14417 9179 10724 9441 Face 14418 9435 9179 9441 Face 14419 9179 7371 9638 Face 14420 10724 9179 9638 Face 14421 7371 8521 8522 Face 14422 9638 7371 8522 Face 14423 8521 8334 8052 Face 14424 8522 8521 8052 Face 14425 8334 10122 8624 Face 14426 8052 8334 8624 Face 14427 7253 9860 8624 Face 14428 10122 7253 8624 Face 14429 10475 10352 9860 Face 14430 7253 10475 9860 Face 14431 8154 8463 10352 Face 14432 10475 8154 10352 Face 14433 8047 7280 8463 Face 14434 8154 8047 8463 Face 14435 8047 9080 7274 Face 14436 7280 8047 7274 Face 14437 7484 7265 7274 Face 14438 9080 7484 7274 Face 14439 11402 11485 11401 Face 14440 6976 187 316 Face 14441 8414 8514 8413 Face 14442 6718 875 8752 Face 14443 8132 8960 9740 Face 14444 10151 10270 10150 Face 14445 10286 10285 10167 Face 14446 10026 10027 10145 Face 14447 10028 10147 10146 Face 14448 7374 8762 8761 Face 14449 8145 9784 8019 Face 14450 6823 6926 6822 Face 14451 3942 15394 15399 Face 14452 6823 6927 6926 Face 14453 16759 6926 16828 Face 14454 2296 18360 2684 Face 14455 19098 29618 29583 Face 14456 19095 19098 29583 Face 14457 7593 8335 8455 Face 14458 8275 8378 8274 Face 14459 7760 7869 7759 Face 14460 8478 8477 8377 Face 14461 8787 8788 8891 Face 14462 10449 8949 10490 Face 14463 10268 10269 10390 Face 14464 10027 10028 10146 Face 14465 6681 6777 6776 Face 14466 34600 34804 34541 Face 14467 10392 10391 10269 Face 14468 34014 34140 34013 Face 14469 9996 21868 11862 Face 14470 12891 9327 26322 Face 14471 9566 9567 9681 Face 14472 8311 8414 8310 Face 14473 8514 8513 8413 Face 14474 8335 8443 10865 Face 14475 8443 9868 10865 Face 14476 10173 10172 10053 Face 14477 10054 10173 10053 Face 14478 7877 7878 7984 Face 14479 7878 7985 7984 Face 14480 12262 7466 1425 Face 14481 13408 13407 13313 Face 14482 9326 12006 12087 Face 14483 11488 11487 11404 Face 14484 7711 7552 8986 Face 14485 9078 7259 7254 Face 14486 9128 9241 9127 Face 14487 9241 9240 9127 Face 14488 34578 34555 34313 Face 14489 6903 5365 10105 Face 14490 1121 8540 8441 Face 14491 26816 34428 34640 Face 14492 10105 10687 6903 Face 14493 10687 10955 6903 Face 14494 10687 8573 10955 Face 14495 8573 9554 10955 Face 14496 4848 6791 10070 Face 14497 9766 9622 9554 Face 14498 8573 9766 9554 Face 14499 2755 2364 3678 Face 14500 8863 8574 9622 Face 14501 9766 8863 9622 Face 14502 4071 4216 15000 Face 14503 7418 7529 7417 Face 14504 7404 8063 7355 Face 14505 10141 10260 3927 Face 14506 7841 7355 10570 Face 14507 7841 7404 7355 Face 14508 7931 9185 9651 Face 14509 8834 10570 9073 Face 14510 6016 755 6137 Face 14511 9185 8834 9073 Face 14512 8907 9015 8906 Face 14513 9164 7508 4073 Face 14514 2360 6498 9195 Face 14515 8802 8803 8906 Face 14516 10098 7808 9899 Face 14517 11807 11806 11724 Face 14518 9182 8538 8954 Face 14519 2360 9195 10959 Face 14520 7109 7218 7108 Face 14521 9183 9182 8954 Face 14522 7001 11218 11219 Face 14523 7323 7322 7217 Face 14524 5464 5594 5463 Face 14525 11561 11639 11560 Face 14526 34644 34715 34574 Face 14527 6293 6294 6416 Face 14528 34410 34707 34538 Face 14529 13301 10011 15499 Face 14530 7804 9902 9984 Face 14531 10103 7804 9984 Face 14532 8993 9105 9902 Face 14533 7804 8993 9902 Face 14534 7178 8469 9105 Face 14535 8993 7178 9105 Face 14536 7178 10948 9847 Face 14537 8469 7178 9847 Face 14538 10948 9058 9893 Face 14539 9847 10948 9893 Face 14540 9058 7262 7440 Face 14541 9893 9058 7440 Face 14542 7262 10455 10823 Face 14543 7440 7262 10823 Face 14544 10488 10611 10823 Face 14545 10455 10488 10823 Face 14546 7443 7442 10611 Face 14547 10488 7443 10611 Face 14548 8421 8420 7442 Face 14549 7443 8421 7442 Face 14550 6711 128 8420 Face 14551 8421 6711 8420 Face 14552 10982 9435 128 Face 14553 6711 10982 128 Face 14554 9908 9179 9435 Face 14555 10982 9908 9435 Face 14556 9637 7371 9179 Face 14557 9908 9637 9179 Face 14558 8520 8521 7371 Face 14559 9637 8520 7371 Face 14560 8520 8964 8334 Face 14561 8521 8520 8334 Face 14562 8964 7956 10122 Face 14563 8334 8964 10122 Face 14564 9745 7253 10122 Face 14565 7956 9745 10122 Face 14566 10598 10475 7253 Face 14567 9745 10598 7253 Face 14568 8768 8154 10475 Face 14569 10598 8768 10475 Face 14570 8768 10998 8047 Face 14571 8154 8768 8047 Face 14572 10998 10710 9080 Face 14573 8047 10998 9080 Face 14574 8752 7484 9080 Face 14575 10710 8752 9080 Face 14576 8752 875 7484 Face 14577 6976 316 10582 Face 14578 527 637 15745 Face 14579 8874 7597 3176 Face 14580 29618 26534 26533 Face 14581 27895 27019 27383 Face 14582 27335 27454 27334 Face 14583 7672 7673 1447 Face 14584 31913 31912 31805 Face 14585 10270 10392 10269 Face 14586 6823 6822 16697 Face 14587 17744 18067 14061 Face 14588 6824 6928 6927 Face 14589 6823 6824 6927 Face 14590 6926 144 143 Face 14591 6928 7038 6927 Face 14592 10761 10762 10883 Face 14593 26337 11408 11326 Face 14594 8822 8821 8715 Face 14595 8926 9034 8925 Face 14596 29583 29618 26533 Face 14597 8514 8613 8513 Face 14598 9822 9823 9939 Face 14599 11048 27047 27038 Face 14600 10392 10515 10514 Face 14601 6869 7690 7088 Face 14602 10391 10392 10514 Face 14603 10515 10635 10634 Face 14604 34429 25683 34721 Face 14605 10514 10515 10634 Face 14606 8502 8601 8600 Face 14607 8527 8626 8526 Face 14608 34339 34555 34578 Face 14609 27962 28095 21135 Face 14610 8207 8311 8206 Face 14611 8414 8413 8310 Face 14612 10865 9868 10441 Face 14613 9868 10563 10441 Face 14614 9938 10054 10053 Face 14615 9937 9938 10053 Face 14616 7984 7985 8089 Face 14617 7985 8090 8089 Face 14618 9734 1904 2529 Face 14619 12022 12108 13378 Face 14620 11712 11794 11793 Face 14621 8956 9326 12087 Face 14622 9163 8147 7711 Face 14623 7552 9078 8986 Face 14624 9241 9353 9240 Face 14625 9353 9352 9240 Face 14626 9629 756 9628 Face 14627 7970 7971 8075 Face 14628 12579 12580 12669 Face 14629 12312 12313 12403 Face 14630 7260 10462 10448 Face 14631 7255 7256 457 Face 14632 34523 8774 7461 Face 14633 8777 8566 7585 Face 14634 13416 13415 13321 Face 14635 11407 11406 11325 Face 14636 13795 11601 13794 Face 14637 8285 8388 8284 Face 14638 4728 2516 9274 Face 14639 8388 8387 8284 Face 14640 13413 13508 13507 Face 14641 30382 11018 30383 Face 14642 10635 10759 10758 Face 14643 13412 13413 13507 Face 14644 13794 7784 13793 Face 14645 7529 7641 7640 Face 14646 8885 7608 10137 Face 14647 7754 7863 7862 Face 14648 7970 8075 8074 Face 14649 34631 34719 34281 Face 14650 11405 11488 11404 Face 14651 10634 10635 10758 Face 14652 9015 9014 8906 Face 14653 13405 13500 13404 Face 14654 4839 4971 4838 Face 14655 8594 8697 8593 Face 14656 10476 7476 8557 Face 14657 252 155 156 Face 14658 10234 7292 9049 Face 14659 390 6963 6964 Face 14660 8538 10342 9049 Face 14661 10342 10234 9049 Face 14662 32662 21541 21542 Face 14663 8954 8538 9049 Face 14664 6416 7153 6293 Face 14665 26648 34741 28017 Face 14666 10102 6541 6542 Face 14667 1526 1527 1637 Face 14668 10102 7581 7804 Face 14669 10103 10102 7804 Face 14670 7581 8886 8993 Face 14671 7804 7581 8993 Face 14672 8886 8372 7178 Face 14673 8993 8886 7178 Face 14674 8372 7892 10948 Face 14675 7178 8372 10948 Face 14676 7892 8027 9058 Face 14677 10948 7892 9058 Face 14678 8027 9215 7262 Face 14679 9058 8027 7262 Face 14680 9215 10945 10455 Face 14681 7262 9215 10455 Face 14682 10716 10488 10455 Face 14683 10945 10716 10455 Face 14684 10129 7443 10488 Face 14685 10716 10129 10488 Face 14686 8422 8421 7443 Face 14687 10129 8422 7443 Face 14688 9545 6711 8421 Face 14689 8422 9545 8421 Face 14690 8066 10982 6711 Face 14691 9545 8066 6711 Face 14692 9658 9908 10982 Face 14693 8066 9658 10982 Face 14694 9751 9637 9908 Face 14695 9658 9751 9908 Face 14696 8519 8520 9637 Face 14697 9751 8519 9637 Face 14698 8135 8964 8520 Face 14699 8519 8135 8520 Face 14700 8135 10984 7956 Face 14701 8964 8135 7956 Face 14702 9746 9745 7956 Face 14703 10984 9746 7956 Face 14704 10721 10598 9745 Face 14705 9746 10721 9745 Face 14706 10721 8560 8768 Face 14707 10598 10721 8768 Face 14708 8560 9331 10998 Face 14709 8768 8560 10998 Face 14710 9331 10499 10710 Face 14711 10998 9331 10710 Face 14712 8858 8752 10710 Face 14713 10499 8858 10710 Face 14714 25994 25993 11183 Face 14715 8858 6718 8752 Face 14716 34613 34336 34787 Face 14717 10023 10022 3666 Face 14718 25952 28145 28144 Face 14719 7039 244 7038 Face 14720 9816 9933 9932 Face 14721 20910 20933 12630 Face 14722 10049 10168 10048 Face 14723 14817 14942 14941 Face 14724 20444 32921 20443 Face 14725 26534 12589 29621 Face 14726 6825 6929 6928 Face 14727 6824 6825 6928 Face 14728 7039 7038 6928 Face 14729 6929 7039 6928 Face 14730 11492 11408 11493 Face 14731 244 349 348 Face 14732 9670 10871 10095 Face 14733 489 490 598 Face 14734 8716 8715 8612 Face 14735 7999 10436 9525 Face 14736 28555 26335 20893 Face 14737 8613 8716 8612 Face 14738 13665 13664 13094 Face 14739 1798 11460 11616 Face 14740 11469 7460 7351 Face 14741 9784 9307 10558 Face 14742 7686 7685 7573 Face 14743 34475 34651 34531 Face 14744 7799 7798 7685 Face 14745 7467 8834 9185 Face 14746 18753 18754 20715 Face 14747 7449 7448 7339 Face 14748 7171 489 597 Face 14749 8207 8206 8100 Face 14750 1806 1926 18381 Face 14751 10441 10563 9966 Face 14752 10563 9851 9966 Face 14753 9707 9821 9706 Face 14754 9938 9937 9820 Face 14755 8089 8090 8195 Face 14756 8090 8196 8195 Face 14757 8060 8853 9086 Face 14758 11405 11404 11323 Face 14759 11326 11407 11325 Face 14760 13690 13691 13785 Face 14761 10321 8147 9163 Face 14762 10443 10321 9163 Face 14763 9353 9468 9352 Face 14764 9468 9467 9352 Face 14765 11717 11716 11637 Face 14766 7939 7834 10100 Face 14767 12404 12494 12493 Face 14768 4860 4728 9274 Face 14769 8689 8690 8795 Face 14770 7606 10236 8446 Face 14771 7826 7936 7716 Face 14772 7936 7720 7716 Face 14773 10100 7834 10681 Face 14774 10682 8046 7720 Face 14775 2798 2930 13030 Face 14776 6684 6620 6685 Face 14777 7307 7308 7417 Face 14778 7529 7528 7417 Face 14779 7936 10682 7720 Face 14780 10682 7491 8046 Face 14781 4861 4466 4860 Face 14782 7491 10246 8046 Face 14783 7914 8836 10876 Face 14784 11880 11879 11798 Face 14785 10876 8836 10877 Face 14786 11799 11880 11798 Face 14787 3797 181 180 Face 14788 11481 11480 11397 Face 14789 11964 11963 11879 Face 14790 8239 8728 8343 Face 14791 11767 11610 11301 Face 14792 755 5764 1766 Face 14793 8697 8803 8802 Face 14794 11676 11698 11697 Face 14795 2383 22469 14488 Face 14796 8394 8395 8494 Face 14797 1985 8767 8245 Face 14798 4204 2618 2619 Face 14799 7357 6244 6363 Face 14800 376 7059 377 Face 14801 10759 10881 10880 Face 14802 7380 121 183 Face 14803 9539 10476 8557 Face 14804 10098 9999 7476 Face 14805 396 6969 6970 Face 14806 26533 26534 29621 Face 14807 10102 6017 7581 Face 14808 13036 1877 12007 Face 14809 8320 8782 8886 Face 14810 7581 8320 8886 Face 14811 8782 9891 8372 Face 14812 8886 8782 8372 Face 14813 9891 7891 7892 Face 14814 8372 9891 7892 Face 14815 7891 7152 8027 Face 14816 7892 7891 8027 Face 14817 7152 9873 9215 Face 14818 8027 7152 9215 Face 14819 9873 8881 10945 Face 14820 9215 9873 10945 Face 14821 8229 10716 10945 Face 14822 8881 8229 10945 Face 14823 10130 10129 10716 Face 14824 8229 10130 10716 Face 14825 7482 8422 10129 Face 14826 10130 7482 10129 Face 14827 9431 9545 8422 Face 14828 7482 9431 8422 Face 14829 8065 8066 9545 Face 14830 9431 8065 9545 Face 14831 9771 9658 8066 Face 14832 8065 9771 8066 Face 14833 9750 9751 9658 Face 14834 9771 9750 9658 Face 14835 7227 8519 9751 Face 14836 9750 7227 9751 Face 14837 8053 8135 8519 Face 14838 7227 8053 8519 Face 14839 8053 9042 10984 Face 14840 8135 8053 10984 Face 14841 9747 9746 10984 Face 14842 9042 9747 10984 Face 14843 10844 10721 9746 Face 14844 9747 10844 9746 Face 14845 8662 8560 10721 Face 14846 10844 8662 10721 Face 14847 9417 9331 8560 Face 14848 8662 9417 8560 Face 14849 9440 10499 9331 Face 14850 9417 9440 9331 Face 14851 8963 8858 10499 Face 14852 9440 8963 10499 Face 14853 8963 10694 6718 Face 14854 8858 8963 6718 Face 14855 7484 875 874 Face 14856 10694 9096 6718 Face 14857 13229 13322 13228 Face 14858 34738 34688 34612 Face 14859 10309 9736 8140 Face 14860 10731 7839 3810 Face 14861 7686 7799 7685 Face 14862 7148 244 7039 Face 14863 29080 2173 2300 Face 14864 12589 28000 26817 Face 14865 6826 6930 6929 Face 14866 6825 6826 6929 Face 14867 6930 7040 7039 Face 14868 6929 6930 7039 Face 14869 18286 1696 1806 Face 14870 7040 7148 7039 Face 14871 25639 24081 25640 Face 14872 34347 34792 34392 Face 14873 7294 15332 15469 Face 14874 14891 21028 21117 Face 14875 34748 34542 34499 Face 14876 5757 25332 4593 Face 14877 4726 3715 25216 Face 14878 12722 7699 8368 Face 14879 7908 7907 7798 Face 14880 7799 7908 7798 Face 14881 8015 8014 7907 Face 14882 9537 10117 10307 Face 14883 7908 8015 7907 Face 14884 7340 7449 7339 Face 14885 7596 8942 8134 Face 14886 117 7388 4187 Face 14887 7449 7561 7560 Face 14888 9851 7835 1856 Face 14889 8311 8310 8206 Face 14890 9821 9820 9706 Face 14891 9966 9851 1856 Face 14892 8196 8300 8299 Face 14893 9821 9938 9820 Face 14894 8853 10713 9086 Face 14895 8195 8196 8299 Face 14896 25675 30531 25676 Face 14897 2902 18726 1312 Face 14898 9355 9356 9470 Face 14899 34446 34498 34306 Face 14900 9581 9580 9467 Face 14901 8147 7552 7711 Face 14902 7308 7309 7418 Face 14903 9468 9581 9467 Face 14904 2516 206 203 Face 14905 10961 10691 9400 Face 14906 21484 19413 12860 Face 14907 13699 13700 13794 Face 14908 8740 10591 7393 Face 14909 9971 7939 10100 Face 14910 7311 7421 7420 Face 14911 7310 7311 7420 Face 14912 9123 9236 9235 Face 14913 9010 9123 9122 Face 14914 7528 7529 7640 Face 14915 9804 9805 9921 Face 14916 9690 9691 9804 Face 14917 7188 7405 7260 Face 14918 9691 9805 9804 Face 14919 9805 9922 9921 Face 14920 7623 7509 10246 Face 14921 9463 9576 9462 Face 14922 7491 7623 10246 Face 14923 24081 25639 25162 Face 14924 348 243 244 Face 14925 9187 629 3935 Face 14926 12948 118 16514 Face 14927 8074 8075 8180 Face 14928 10275 10397 10274 Face 14929 1913 18265 17655 Face 14930 13402 13403 13497 Face 14931 8239 8343 10481 Face 14932 22033 20034 8726 Face 14933 6768 6767 109 Face 14934 8495 8594 8593 Face 14935 29403 29534 29533 Face 14936 11402 11401 11320 Face 14937 8292 8395 8394 Face 14938 2360 8557 2028 Face 14939 8415 8312 2008 Face 14940 2618 10484 2235 Face 14941 2026 2028 517 Face 14942 13387 9557 8764 Face 14943 7477 9050 7915 Face 14944 8696 8697 8802 Face 14945 34383 34565 34290 Face 14946 298 299 403 Face 14947 10997 5117 4988 Face 14948 10519 10019 8782 Face 14949 8320 10519 8782 Face 14950 10019 10434 9891 Face 14951 8782 10019 9891 Face 14952 10434 7782 7891 Face 14953 9891 10434 7891 Face 14954 7782 9849 7152 Face 14955 7891 7782 7152 Face 14956 9849 7375 9873 Face 14957 7152 9849 9873 Face 14958 7375 6977 8881 Face 14959 9873 7375 8881 Face 14960 6977 10374 8229 Face 14961 8881 6977 8229 Face 14962 10374 10131 10130 Face 14963 8229 10374 10130 Face 14964 10131 10003 7482 Face 14965 10130 10131 7482 Face 14966 9318 9431 7482 Face 14967 10003 9318 7482 Face 14968 7008 8065 9431 Face 14969 9318 7008 9431 Face 14970 9889 9771 8065 Face 14971 7008 9889 8065 Face 14972 9749 9750 9771 Face 14973 9889 9749 9771 Face 14974 7226 7227 9750 Face 14975 9749 7226 9750 Face 14976 8054 8053 7227 Face 14977 7226 8054 7227 Face 14978 8155 9042 8053 Face 14979 8054 8155 8053 Face 14980 8155 9748 9747 Face 14981 9042 8155 9747 Face 14982 10966 10844 9747 Face 14983 9748 10966 9747 Face 14984 10855 8662 10844 Face 14985 10966 10855 10844 Face 14986 9103 9417 8662 Face 14987 10855 9103 8662 Face 14988 9656 9440 9417 Face 14989 9103 9656 9417 Face 14990 8646 8963 9440 Face 14991 9656 8646 9440 Face 14992 8646 8035 10694 Face 14993 8963 8646 10694 Face 14994 8035 7195 9096 Face 14995 10694 8035 9096 Face 14996 11571 11493 26569 Face 14997 7195 7817 9096 Face 14998 8320 6021 10519 Face 14999 11569 11647 11568 Face 15000 384 385 492 Face 15001 1696 18286 18188 Face 15002 29621 12589 26817 Face 15003 31692 31691 31577 Face 15004 6825 6727 6826 Face 15005 6931 6930 6826 Face 15006 6827 6931 6826 Face 15007 7041 7040 6930 Face 15008 6931 7041 6930 Face 15009 7149 7148 7040 Face 15010 7041 7149 7040 Face 15011 7256 7255 7148 Face 15012 7149 7256 7148 Face 15013 7255 457 7365 Face 15014 22820 22774 2120 Face 15015 13196 12842 13118 Face 15016 6540 10221 7161 Face 15017 6414 770 7505 Face 15018 9116 9229 9228 Face 15019 6259 10128 6378 Face 15020 5107 5106 10190 Face 15021 8120 8119 8014 Face 15022 8015 8120 8014 Face 15023 8865 10975 8559 Face 15024 8552 10138 7247 Face 15025 7560 7561 7672 Face 15026 7448 7449 7560 Face 15027 10730 7294 8670 Face 15028 9229 9341 9228 Face 15029 1856 7835 8462 Face 15030 7835 10597 8462 Face 15031 9707 9706 9591 Face 15032 9592 9707 9591 Face 15033 8299 8300 8402 Face 15034 8300 8403 8402 Face 15035 10107 8853 8060 Face 15036 7369 10107 8060 Face 15037 5909 5781 5910 Face 15038 23205 23090 12496 Face 15039 8850 8951 10443 Face 15040 18257 26415 19838 Face 15041 9581 9696 9580 Face 15042 9696 9695 9580 Face 15043 8076 8182 8181 Face 15044 7203 7204 7308 Face 15045 7730 12809 11768 Face 15046 13175 11516 13081 Face 15047 9622 8574 9508 Face 15048 9554 9622 10580 Face 15049 16853 16852 16775 Face 15050 7606 9971 10236 Face 15051 7532 7531 7420 Face 15052 7421 7532 7420 Face 15053 9009 9010 9122 Face 15054 8902 9010 9009 Face 15055 10732 7188 7260 Face 15056 10337 9857 7955 Face 15057 10677 7955 7405 Face 15058 7188 10677 7405 Face 15059 10677 10337 7955 Face 15060 9857 10337 9311 Face 15061 9576 9691 9690 Face 15062 10337 7034 9311 Face 15063 9348 9463 9347 Face 15064 9575 9576 9690 Face 15065 9463 9462 9347 Face 15066 9576 9575 9462 Face 15067 10462 6870 7076 Face 15068 10616 9306 10833 Face 15069 9120 9121 9233 Face 15070 10448 10462 7076 Face 15071 10157 10275 10156 Face 15072 9007 9008 9120 Face 15073 1920 7914 9846 Face 15074 4066 10154 4067 Face 15075 22425 22329 21649 Face 15076 8134 8239 10358 Face 15077 8291 8292 8394 Face 15078 13126 34642 15029 Face 15079 8082 8188 8081 Face 15080 8395 8495 8494 Face 15081 8292 8291 8187 Face 15082 8188 8292 8187 Face 15083 8494 8495 8593 Face 15084 8697 8696 8593 Face 15085 9274 2516 203 Face 15086 8803 8907 8906 Face 15087 14620 11777 14813 Face 15088 34526 34778 34694 Face 15089 10765 10020 10019 Face 15090 10519 10765 10019 Face 15091 10020 8955 10434 Face 15092 10019 10020 10434 Face 15093 7889 7782 10434 Face 15094 8955 7889 10434 Face 15095 7225 9849 7782 Face 15096 7889 7225 7782 Face 15097 6973 7375 9849 Face 15098 7225 6973 9849 Face 15099 10620 6977 7375 Face 15100 6973 10620 7375 Face 15101 10620 7588 10374 Face 15102 6977 10620 10374 Face 15103 7588 10132 10131 Face 15104 10374 7588 10131 Face 15105 10132 10213 10003 Face 15106 10131 10132 10003 Face 15107 10213 10840 9318 Face 15108 10003 10213 9318 Face 15109 10840 10336 7008 Face 15110 9318 10840 7008 Face 15111 10336 10432 9889 Face 15112 7008 10336 9889 Face 15113 9864 9749 9889 Face 15114 10432 9864 9889 Face 15115 6673 7226 9749 Face 15116 9864 6673 9749 Face 15117 6673 9108 8054 Face 15118 7226 6673 8054 Face 15119 7372 8155 8054 Face 15120 9108 7372 8054 Face 15121 9634 9748 8155 Face 15122 7372 9634 8155 Face 15123 8244 10966 9748 Face 15124 9634 8244 9748 Face 15125 10978 10855 10966 Face 15126 8244 10978 10966 Face 15127 7954 9103 10855 Face 15128 10978 7954 10855 Face 15129 9769 9656 9103 Face 15130 7954 9769 9103 Face 15131 8547 8646 9656 Face 15132 9769 8547 9656 Face 15133 4867 8035 8646 Face 15134 8547 4867 8646 Face 15135 4867 7518 7195 Face 15136 8035 4867 7195 Face 15137 4611 10589 1226 Face 15138 7195 7518 7817 Face 15139 13063 13157 13062 Face 15140 22119 22214 22213 Face 15141 34281 34376 34613 Face 15142 3148 9449 9450 Face 15143 33423 31990 2950 Face 15144 26315 26316 26432 Face 15145 6728 6828 6827 Face 15146 31887 31775 16723 Face 15147 6932 6931 6827 Face 15148 6828 6932 6827 Face 15149 7042 7041 6931 Face 15150 6932 7042 6931 Face 15151 7150 7149 7041 Face 15152 7042 7150 7041 Face 15153 7257 7256 7149 Face 15154 7150 7257 7149 Face 15155 11462 12827 34448 Face 15156 7255 7365 349 Face 15157 7561 7673 7672 Face 15158 7673 7786 1447 Face 15159 9295 7592 10477 Face 15160 10600 10975 8865 Face 15161 8224 8223 8119 Face 15162 8120 8224 8119 Face 15163 8329 8328 8223 Face 15164 8224 8329 8223 Face 15165 34341 34695 34384 Face 15166 7592 10600 10477 Face 15167 530 4843 640 Face 15168 7822 435 8879 Face 15169 8127 10808 7725 Face 15170 9087 8127 7725 Face 15171 8462 10597 10328 Face 15172 10597 10339 10328 Face 15173 9363 9364 9478 Face 15174 9592 9591 9478 Face 15175 8402 8403 8502 Face 15176 8403 8503 8502 Face 15177 10121 9892 10086 Face 15178 9892 10107 7369 Face 15179 11973 11972 11888 Face 15180 19956 19957 21943 Face 15181 9907 8951 8850 Face 15182 8440 9907 8850 Face 15183 9696 9810 9695 Face 15184 9810 9809 9695 Face 15185 356 355 251 Face 15186 8574 5872 9508 Face 15187 10758 10759 10880 Face 15188 382 282 64 Face 15189 6272 1306 4322 Face 15190 9554 10580 10918 Face 15191 7644 7643 7531 Face 15192 7644 7757 7643 Face 15193 7532 7644 7531 Face 15194 7757 7756 7643 Face 15195 8901 8902 9009 Face 15196 8691 8692 8797 Face 15197 10246 7509 6696 Face 15198 12646 12737 5895 Face 15199 10358 10481 10591 Face 15200 8740 10358 10591 Face 15201 14820 14821 14945 Face 15202 9971 10100 10236 Face 15203 8643 7716 8544 Face 15204 10358 8239 10481 Face 15205 8643 8544 9311 Face 15206 7720 9971 7606 Face 15207 7034 8643 9311 Face 15208 7716 7606 8544 Face 15209 7716 7720 7606 Face 15210 8046 7939 9971 Face 15211 34470 34607 34537 Face 15212 10246 6696 7939 Face 15213 9121 9234 9233 Face 15214 9122 9123 9235 Face 15215 10038 10157 10037 Face 15216 7097 7206 7096 Face 15217 8942 8728 8239 Face 15218 18286 1806 18381 Face 15219 34534 34365 34752 Face 15220 9995 8741 7392 Face 15221 10881 7363 7710 Face 15222 9185 9073 9651 Face 15223 20658 22129 22049 Face 15224 34549 34515 34365 Face 15225 11881 11880 11799 Face 15226 14813 14282 14175 Face 15227 9098 7914 10876 Face 15228 17308 22128 18066 Face 15229 16197 16209 13915 Face 15230 1896 8110 1897 Face 15231 10640 10571 10020 Face 15232 10765 10640 10020 Face 15233 7783 8955 10020 Face 15234 10571 7783 10020 Face 15235 7669 7889 8955 Face 15236 7783 7669 8955 Face 15237 8247 7225 7889 Face 15238 7669 8247 7889 Face 15239 7853 6973 7225 Face 15240 8247 7853 7225 Face 15241 7196 10620 6973 Face 15242 7853 7196 6973 Face 15243 7196 6721 7588 Face 15244 10620 7196 7588 Face 15245 6721 10251 10132 Face 15246 7588 6721 10132 Face 15247 10251 9674 10213 Face 15248 10132 10251 10213 Face 15249 9674 9180 10840 Face 15250 10213 9674 10840 Face 15251 9180 7468 10336 Face 15252 10840 9180 10336 Face 15253 7468 8870 10432 Face 15254 10336 7468 10432 Face 15255 8870 9863 9864 Face 15256 10432 8870 9864 Face 15257 9863 9548 6673 Face 15258 9864 9863 6673 Face 15259 9548 10458 9108 Face 15260 6673 9548 9108 Face 15261 8543 7372 9108 Face 15262 10458 8543 9108 Face 15263 9635 9634 7372 Face 15264 8543 9635 7372 Face 15265 9635 9648 8244 Face 15266 9634 9635 8244 Face 15267 10979 10978 8244 Face 15268 9648 10979 8244 Face 15269 9303 7954 10978 Face 15270 10979 9303 10978 Face 15271 9887 9769 7954 Face 15272 9303 9887 7954 Face 15273 8449 8547 9769 Face 15274 9887 8449 9769 Face 15275 10110 4867 8547 Face 15276 8449 10110 8547 Face 15277 7517 7518 4867 Face 15278 10110 7517 4867 Face 15279 34681 34284 34480 Face 15280 26569 11493 26454 Face 15281 10950 9445 14362 Face 15282 27016 11382 6590 Face 15283 30314 11018 30382 Face 15284 9045 13630 13534 Face 15285 6643 6729 6728 Face 15286 13473 6642 6728 Face 15287 6729 6829 6828 Face 15288 6728 6729 6828 Face 15289 6933 6932 6828 Face 15290 6829 6933 6828 Face 15291 7043 7042 6932 Face 15292 6933 7043 6932 Face 15293 7151 7150 7042 Face 15294 7043 7151 7042 Face 15295 7258 7257 7150 Face 15296 7151 7258 7150 Face 15297 10880 7710 10879 Face 15298 34589 34609 34467 Face 15299 32686 32819 32685 Face 15300 10155 10154 10035 Face 15301 18258 17541 23544 Face 15302 10448 7076 8447 Face 15303 8432 8431 8328 Face 15304 6780 6781 6879 Face 15305 13252 13251 13156 Face 15306 8329 8432 8328 Face 15307 10477 10600 8865 Face 15308 8531 8530 8431 Face 15309 13556 9045 13534 Face 15310 10975 10797 8559 Face 15311 10235 10357 9200 Face 15312 7281 7817 1580 Face 15313 10339 7335 7334 Face 15314 7506 10244 7397 Face 15315 9252 9364 9363 Face 15316 10328 10339 7334 Face 15317 8503 8602 8601 Face 15318 9479 9592 9478 Face 15319 9892 7558 10086 Face 15320 8502 8503 8601 Face 15321 11889 11973 11888 Face 15322 7558 9892 7369 Face 15323 10196 9308 8440 Face 15324 13551 11813 2132 Face 15325 9927 9926 9809 Face 15326 8951 10321 10443 Face 15327 11638 11717 11637 Face 15328 9810 9927 9809 Face 15329 9201 9088 8777 Face 15330 34299 34572 34582 Face 15331 502 394 395 Face 15332 4196 10397 4327 Face 15333 10955 9554 10918 Face 15334 9622 9508 10580 Face 15335 7866 7865 7756 Face 15336 7757 7866 7756 Face 15337 8692 8798 8797 Face 15338 8589 8692 8691 Face 15339 8798 8902 8901 Face 15340 8797 8798 8901 Face 15341 3795 3664 3665 Face 15342 26209 28021 28091 Face 15343 2231 2232 6003 Face 15344 12306 12397 12396 Face 15345 9009 9122 9121 Face 15346 9122 9235 9234 Face 15347 8728 10448 8343 Face 15348 9008 9009 9121 Face 15349 10156 10155 10036 Face 15350 10037 10156 10036 Face 15351 6783 6784 6882 Face 15352 6883 6989 6988 Face 15353 7096 7205 7095 Face 15354 6882 6883 6988 Face 15355 8046 10246 7939 Face 15356 7310 7309 7204 Face 15357 9348 9347 9235 Face 15358 7720 8046 9971 Face 15359 7311 7310 7205 Face 15360 9236 9348 9235 Face 15361 10157 10156 10037 Face 15362 6883 6884 6989 Face 15363 9998 10358 8740 Face 15364 8942 10732 8728 Face 15365 9995 7392 7608 Face 15366 8741 9998 8740 Face 15367 8885 9995 7608 Face 15368 8741 8740 7392 Face 15369 8134 8942 8239 Face 15370 17261 22981 23291 Face 15371 6148 6144 6548 Face 15372 39 6511 3377 Face 15373 1632 1633 1742 Face 15374 21633 21729 21728 Face 15375 7813 10571 10640 Face 15376 10764 7813 10640 Face 15377 10704 7783 10571 Face 15378 7813 10704 10571 Face 15379 10433 7669 7783 Face 15380 10704 10433 7783 Face 15381 8785 8247 7669 Face 15382 10433 8785 7669 Face 15383 6974 7853 8247 Face 15384 8785 6974 8247 Face 15385 10319 7196 7853 Face 15386 6974 10319 7853 Face 15387 10319 10939 6721 Face 15388 7196 10319 6721 Face 15389 10939 7833 10251 Face 15390 6721 10939 10251 Face 15391 7833 6904 9674 Face 15392 10251 7833 9674 Face 15393 6904 9157 9180 Face 15394 9674 6904 9180 Face 15395 9157 10736 7468 Face 15396 9180 9157 7468 Face 15397 10736 10493 8870 Face 15398 7468 10736 8870 Face 15399 10493 9862 9863 Face 15400 8870 10493 9863 Face 15401 9862 9434 9548 Face 15402 9863 9862 9548 Face 15403 8055 10458 9548 Face 15404 9434 8055 9548 Face 15405 10626 8543 10458 Face 15406 8055 10626 10458 Face 15407 10626 9636 9635 Face 15408 8543 10626 9635 Face 15409 9636 9534 9648 Face 15410 9635 9636 9648 Face 15411 7181 10979 9648 Face 15412 9534 7181 9648 Face 15413 7181 6818 9303 Face 15414 10979 7181 9303 Face 15415 6818 8971 9887 Face 15416 9303 6818 9887 Face 15417 8971 8345 8449 Face 15418 9887 8971 8449 Face 15419 8938 10110 8449 Face 15420 8345 8938 8449 Face 15421 7037 7517 10110 Face 15422 8938 7037 10110 Face 15423 10950 10589 7517 Face 15424 7037 10950 7517 Face 15425 6173 6172 6046 Face 15426 33127 33262 33126 Face 15427 215 4712 4844 Face 15428 353 7258 7151 Face 15429 6643 6642 34116 Face 15430 6730 6830 6829 Face 15431 6729 6730 6829 Face 15432 6934 6933 6829 Face 15433 6830 6934 6829 Face 15434 7044 7043 6933 Face 15435 6934 7044 6933 Face 15436 5851 5850 7842 Face 15437 11563 11562 11484 Face 15438 4463 10836 6537 Face 15439 34327 34509 28004 Face 15440 7033 7141 6942 Face 15441 9981 9968 9865 Face 15442 9574 9689 9688 Face 15443 9573 9574 9688 Face 15444 8343 10448 8447 Face 15445 8898 8899 9006 Face 15446 15742 15823 780 Face 15447 10378 1451 7376 Face 15448 10813 749 547 Face 15449 2616 2617 2747 Face 15450 8432 8531 8431 Face 15451 8531 8630 8629 Face 15452 282 382 8654 Face 15453 3166 5627 5497 Face 15454 7538 7537 7426 Face 15455 8023 7247 8642 Face 15456 9470 9471 9583 Face 15457 7875 7876 7982 Face 15458 8336 9981 9865 Face 15459 7335 8678 8677 Face 15460 9139 9252 9251 Face 15461 9138 9139 9251 Face 15462 8705 8811 8810 Face 15463 8602 8705 8704 Face 15464 9395 10835 9305 Face 15465 10121 10086 10958 Face 15466 3817 66 170 Face 15467 21369 21363 20387 Face 15468 10990 9308 10196 Face 15469 10989 10990 10196 Face 15470 9927 10043 9926 Face 15471 10043 10042 9926 Face 15472 8133 8134 9998 Face 15473 10880 10881 7710 Face 15474 9201 9651 9088 Face 15475 9651 9537 9088 Face 15476 9471 9584 9583 Face 15477 34756 34813 34334 Face 15478 7973 7972 7865 Face 15479 12762 6509 5126 Face 15480 7866 7973 7865 Face 15481 10884 10885 215 Face 15482 8588 8589 8691 Face 15483 10066 10065 9949 Face 15484 29182 29312 29181 Face 15485 26198 26316 26315 Face 15486 9305 9195 6378 Face 15487 11034 11035 11090 Face 15488 8387 8487 8486 Face 15489 34825 34278 34747 Face 15490 9121 9122 9234 Face 15491 640 5760 530 Face 15492 6602 28548 18977 Face 15493 10156 10274 10155 Face 15494 9921 10037 10036 Face 15495 9920 9921 10036 Face 15496 7096 7095 6988 Face 15497 6989 7096 6988 Face 15498 8490 8489 8389 Face 15499 8390 8490 8389 Face 15500 8183 8287 8286 Face 15501 8182 8183 8286 Face 15502 7972 8077 8076 Face 15503 7971 7972 8076 Face 15504 7865 7972 7971 Face 15505 7864 7865 7971 Face 15506 7097 7096 6989 Face 15507 5756 10673 5639 Face 15508 2135 2260 2259 Face 15509 6785 6884 6883 Face 15510 9998 8134 10358 Face 15511 8836 10996 10877 Face 15512 10275 10274 10156 Face 15513 34738 34424 34688 Face 15514 9922 10038 10037 Face 15515 9921 9922 10037 Face 15516 34628 34567 27219 Face 15517 20456 21369 20387 Face 15518 6144 6148 10764 Face 15519 26197 26198 26315 Face 15520 7191 7813 10764 Face 15521 10887 7191 10764 Face 15522 10827 10704 7813 Face 15523 7191 10827 7813 Face 15524 9890 10433 10704 Face 15525 10827 9890 10704 Face 15526 9776 8785 10433 Face 15527 9890 9776 10433 Face 15528 8830 6974 8785 Face 15529 9776 8830 8785 Face 15530 8830 9061 10319 Face 15531 6974 8830 10319 Face 15532 9061 9321 10939 Face 15533 10319 9061 10939 Face 15534 9321 7838 7833 Face 15535 10939 9321 7833 Face 15536 7838 6804 6904 Face 15537 7833 7838 6904 Face 15538 6804 7691 9157 Face 15539 6904 6804 9157 Face 15540 7691 7032 10736 Face 15541 9157 7691 10736 Face 15542 7032 9419 10493 Face 15543 10736 7032 10493 Face 15544 9419 9861 9862 Face 15545 10493 9419 9862 Face 15546 9861 8565 9434 Face 15547 9862 9861 9434 Face 15548 8565 8056 8055 Face 15549 9434 8565 8055 Face 15550 8056 8251 10626 Face 15551 8055 8056 10626 Face 15552 8251 9522 9636 Face 15553 10626 8251 9636 Face 15554 9522 9420 9534 Face 15555 9636 9522 9534 Face 15556 7289 7181 9534 Face 15557 9420 7289 9534 Face 15558 6920 6818 7181 Face 15559 7289 6920 7181 Face 15560 6920 8143 8971 Face 15561 6818 6920 8971 Face 15562 8143 8241 8345 Face 15563 8971 8143 8345 Face 15564 8241 7354 8938 Face 15565 8345 8241 8938 Face 15566 7935 7037 8938 Face 15567 7354 7935 8938 Face 15568 10831 7935 9044 Face 15569 13017 13016 11943 Face 15570 34371 34815 34559 Face 15571 12762 13198 203 Face 15572 2513 9219 4463 Face 15573 762 879 7224 Face 15574 6731 6831 6830 Face 15575 26082 26198 26197 Face 15576 6935 6934 6830 Face 15577 6831 6935 6830 Face 15578 7045 7044 6934 Face 15579 6935 7045 6934 Face 15580 7896 7897 1672 Face 15581 26081 26082 26197 Face 15582 9251 9252 9363 Face 15583 9298 2748 8452 Face 15584 7334 7335 8677 Face 15585 8678 10248 10242 Face 15586 9699 9813 9698 Face 15587 9813 9930 9929 Face 15588 10527 10528 10648 Face 15589 7216 7215 7106 Face 15590 9798 9797 9683 Face 15591 10761 10883 10882 Face 15592 8731 8837 2659 Face 15593 8530 8531 8629 Face 15594 8630 8735 8734 Face 15595 8629 8630 8734 Face 15596 5462 5461 5463 Face 15597 13691 13786 13785 Face 15598 7327 7437 7326 Face 15599 10528 10649 10648 Face 15600 7876 7983 7982 Face 15601 10120 10240 10468 Face 15602 9865 9968 10863 Face 15603 9968 10830 10863 Face 15604 8814 8918 8813 Face 15605 9026 9025 8917 Face 15606 7585 8566 8885 Face 15607 8704 8705 8810 Face 15608 1985 8245 4997 Face 15609 10835 10121 10958 Face 15610 6788 6787 6691 Face 15611 4582 10884 10762 Face 15612 1791 1905 200 Face 15613 9308 9907 8440 Face 15614 8194 8298 8297 Face 15615 10043 10162 10161 Face 15616 9073 8029 9537 Face 15617 9234 9346 9345 Face 15618 7278 8651 7277 Face 15619 9651 9073 9537 Face 15620 10212 10875 10375 Face 15621 8673 8677 10239 Face 15622 10801 8882 7710 Face 15623 7358 10212 10375 Face 15624 9950 10066 9949 Face 15625 6901 9668 9427 Face 15626 9226 9227 9338 Face 15627 9089 10681 10482 Face 15628 7968 8073 8072 Face 15629 7639 7640 7752 Face 15630 8452 7631 4317 Face 15631 10236 10100 9089 Face 15632 5105 10190 5106 Face 15633 10479 9069 7290 Face 15634 7751 7752 7860 Face 15635 8545 10326 8644 Face 15636 10518 10638 10637 Face 15637 154 6414 5759 Face 15638 6688 6784 6783 Face 15639 9652 7826 6942 Face 15640 7205 7204 7095 Face 15641 6687 6688 6783 Face 15642 8390 8389 8286 Face 15643 8287 8390 8286 Face 15644 8491 8490 8390 Face 15645 8391 8491 8390 Face 15646 8799 8798 8692 Face 15647 8590 8589 8490 Face 15648 9011 9010 8902 Face 15649 8693 8799 8692 Face 15650 6879 6880 6985 Face 15651 8903 9011 8902 Face 15652 6784 6785 6883 Face 15653 9237 9236 9123 Face 15654 16518 19590 4592 Face 15655 6884 6990 6989 Face 15656 6689 6785 6784 Face 15657 6688 6689 6784 Face 15658 6990 7097 6989 Face 15659 7206 7205 7096 Face 15660 28002 34695 34341 Face 15661 7206 7311 7205 Face 15662 6148 10887 10764 Face 15663 34809 34698 10921 Face 15664 8458 7191 10887 Face 15665 9412 8458 10887 Face 15666 10703 10827 7191 Face 15667 8458 10703 7191 Face 15668 8371 9890 10827 Face 15669 10703 8371 10827 Face 15670 9663 9776 9890 Face 15671 8371 9663 9890 Face 15672 6978 8830 9776 Face 15673 9663 6978 9776 Face 15674 6978 7353 9061 Face 15675 8830 6978 9061 Face 15676 7353 7940 9321 Face 15677 9061 7353 9321 Face 15678 7940 10752 7838 Face 15679 9321 7940 7838 Face 15680 10752 10698 6804 Face 15681 7838 10752 6804 Face 15682 10698 7689 7691 Face 15683 6804 10698 7691 Face 15684 7689 418 7032 Face 15685 7691 7689 7032 Face 15686 418 9676 9419 Face 15687 7032 418 9419 Face 15688 9676 9975 9861 Face 15689 9419 9676 9861 Face 15690 9975 8667 8565 Face 15691 9861 9975 8565 Face 15692 8667 8057 8056 Face 15693 8565 8667 8056 Face 15694 8057 7157 8251 Face 15695 8056 8057 8251 Face 15696 7157 9523 9522 Face 15697 8251 7157 9522 Face 15698 9523 10922 9420 Face 15699 9522 9523 9420 Face 15700 7072 7289 9420 Face 15701 10922 7072 9420 Face 15702 6919 6920 7289 Face 15703 7072 6919 7289 Face 15704 6871 8143 6920 Face 15705 6919 6871 6920 Face 15706 6871 8136 8241 Face 15707 8143 6871 8241 Face 15708 8136 7807 7354 Face 15709 8241 8136 7354 Face 15710 9044 7935 7354 Face 15711 7807 9044 7354 Face 15712 6692 860 10740 Face 15713 15199 10832 14802 Face 15714 2027 125 281 Face 15715 2017 1896 1897 Face 15716 2233 5876 2232 Face 15717 7523 7522 7412 Face 15718 6732 6832 6831 Face 15719 6731 6732 6831 Face 15720 6936 6935 6831 Face 15721 6832 6936 6831 Face 15722 7046 7045 6935 Face 15723 6936 7046 6935 Face 15724 3932 9905 8883 Face 15725 20573 26759 25564 Face 15726 9364 9479 9478 Face 15727 11692 11614 13112 Face 15728 8677 8678 10242 Face 15729 9026 9139 9025 Face 15730 10357 9097 9200 Face 15731 10248 9981 8336 Face 15732 7107 7216 7106 Face 15733 7882 7881 7772 Face 15734 10681 7724 10381 Face 15735 7077 10238 9065 Face 15736 8735 8840 8839 Face 15737 6614 18264 29591 Face 15738 8734 8735 8839 Face 15739 8840 8945 8944 Face 15740 8273 8376 8375 Face 15741 8839 8840 8944 Face 15742 5631 13728 21363 Face 15743 8272 8273 8375 Face 15744 7113 7222 7112 Face 15745 7548 7547 7436 Face 15746 14769 14770 5347 Face 15747 4575 4576 4707 Face 15748 11557 11635 11634 Face 15749 12130 12131 12215 Face 15750 8707 8708 8813 Face 15751 8918 8917 8813 Face 15752 7141 7052 6942 Face 15753 10307 10117 8741 Face 15754 8181 8285 8284 Face 15755 8180 8181 8284 Face 15756 406 405 301 Face 15757 8094 8200 8093 Face 15758 10216 10153 8645 Face 15759 871 14009 753 Face 15760 9688 9689 9802 Face 15761 8200 8199 8093 Face 15762 9947 10063 9946 Face 15763 9803 9920 9919 Face 15764 8970 8448 8352 Face 15765 10182 10181 10062 Face 15766 8497 8596 8595 Face 15767 1549 7281 14806 Face 15768 34520 34656 34809 Face 15769 7535 7647 7534 Face 15770 8970 8352 8758 Face 15771 8448 8546 8352 Face 15772 10875 6941 10375 Face 15773 8855 8749 9625 Face 15774 7059 6950 377 Face 15775 6941 9625 10375 Face 15776 10570 6693 8029 Face 15777 8731 2527 2398 Face 15778 10036 10035 9919 Face 15779 9920 10036 9919 Face 15780 7100 7209 7208 Face 15781 6787 6788 6886 Face 15782 5631 20454 13728 Face 15783 7363 10801 7710 Face 15784 32887 20745 32644 Face 15785 8078 8077 7972 Face 15786 6784 6883 6882 Face 15787 8489 8490 8588 Face 15788 8077 8183 8182 Face 15789 8076 8077 8182 Face 15790 8491 8590 8490 Face 15791 8693 8692 8589 Face 15792 8544 8446 9511 Face 15793 7309 7419 7418 Face 15794 7608 7392 6901 Face 15795 8544 7606 8446 Face 15796 6959 385 6958 Face 15797 7392 8740 7393 Face 15798 10398 10397 10275 Face 15799 10276 10398 10275 Face 15800 10276 10275 10157 Face 15801 10158 10276 10157 Face 15802 9806 9923 9922 Face 15803 9805 9806 9922 Face 15804 9922 9923 10038 Face 15805 9923 10039 10038 Face 15806 10039 10158 10038 Face 15807 10158 10157 10038 Face 15808 9110 9222 2747 Face 15809 13338 13337 13244 Face 15810 8139 9906 8458 Face 15811 9412 8139 8458 Face 15812 10949 10703 8458 Face 15813 9906 10949 8458 Face 15814 7175 8371 10703 Face 15815 10949 7175 10703 Face 15816 7696 9663 8371 Face 15817 7175 7696 8371 Face 15818 8163 6978 9663 Face 15819 7696 8163 9663 Face 15820 8163 8875 7353 Face 15821 6978 8163 7353 Face 15822 8875 7056 7940 Face 15823 7353 8875 7940 Face 15824 7056 7116 10752 Face 15825 7940 7056 10752 Face 15826 7116 10575 10698 Face 15827 10752 7116 10698 Face 15828 10575 7115 7689 Face 15829 10698 10575 7689 Face 15830 7115 9391 418 Face 15831 7689 7115 418 Face 15832 9391 8338 9676 Face 15833 418 9391 9676 Face 15834 8338 9974 9975 Face 15835 9676 8338 9975 Face 15836 9974 10498 8667 Face 15837 9975 9974 8667 Face 15838 10498 8232 8057 Face 15839 8667 10498 8057 Face 15840 8232 8367 7157 Face 15841 8057 8232 7157 Face 15842 8367 7370 9523 Face 15843 7157 8367 9523 Face 15844 7370 8880 10922 Face 15845 9523 7370 10922 Face 15846 10952 7072 10922 Face 15847 8880 10952 10922 Face 15848 9980 6919 7072 Face 15849 10952 9980 7072 Face 15850 9980 10847 6871 Face 15851 6919 9980 6871 Face 15852 10847 8032 8136 Face 15853 6871 10847 8136 Face 15854 8032 10930 7807 Face 15855 8136 8032 7807 Face 15856 7155 9044 7807 Face 15857 10930 7155 7807 Face 15858 10832 15337 14802 Face 15859 7155 10832 9044 Face 15860 18260 17541 17751 Face 15861 13345 13344 13251 Face 15862 8978 10804 11303 Face 15863 5389 6393 16536 Face 15864 6733 6833 6832 Face 15865 6731 6830 6730 Face 15866 6937 6936 6832 Face 15867 6833 6937 6832 Face 15868 7047 7046 6936 Face 15869 6937 7047 6936 Face 15870 10011 6610 15499 Face 15871 6162 34834 34451 Face 15872 8601 8602 8704 Face 15873 10617 10961 10205 Face 15874 8918 9026 8917 Face 15875 9139 9138 9025 Face 15876 10242 10248 8336 Face 15877 15203 11846 11842 Face 15878 7660 7773 7659 Face 15879 7052 9652 6942 Face 15880 9872 6922 7950 Face 15881 5749 5876 2233 Face 15882 10106 7407 8952 Face 15883 386 387 494 Face 15884 13380 11454 5205 Face 15885 8248 12930 9328 Face 15886 11317 11316 11241 Face 15887 12050 12049 11964 Face 15888 12906 8978 11303 Face 15889 11690 11771 27 Face 15890 7947 10106 9855 Face 15891 7407 10372 10365 Face 15892 27225 27224 27108 Face 15893 7327 7326 7221 Face 15894 2684 26209 28091 Face 15895 6675 110 6709 Face 15896 11396 11479 11478 Face 15897 11556 11557 11634 Face 15898 8605 8708 8707 Face 15899 8604 8605 8707 Face 15900 8810 8811 8914 Face 15901 8811 8915 8914 Face 15902 7969 7970 8074 Face 15903 8075 8181 8180 Face 15904 7314 7313 7208 Face 15905 3959 14628 4464 Face 15906 8746 10578 8882 Face 15907 6887 6993 6992 Face 15908 6941 8855 9625 Face 15909 10482 10725 8749 Face 15910 8855 10482 8749 Face 15911 10381 9425 10725 Face 15912 8448 8650 8546 Face 15913 10522 10643 10521 Face 15914 21478 20923 21571 Face 15915 7423 7424 7534 Face 15916 9410 7731 7080 Face 15917 10351 9410 7080 Face 15918 9410 10351 10206 Face 15919 10326 9410 10206 Face 15920 4317 1905 3938 Face 15921 8452 8551 7631 Face 15922 7204 7309 7308 Face 15923 34337 34567 34733 Face 15924 7419 7530 7529 Face 15925 10801 8746 8882 Face 15926 10036 10155 10035 Face 15927 34375 34823 34561 Face 15928 14385 14736 11228 Face 15929 7608 6901 9314 Face 15930 5743 5618 5619 Face 15931 9073 10570 8029 Face 15932 7973 8078 7972 Face 15933 6903 10955 10918 Face 15934 8490 8589 8588 Face 15935 8184 8183 8077 Face 15936 7756 7865 7864 Face 15937 7755 7756 7864 Face 15938 8590 8693 8589 Face 15939 8903 8902 8798 Face 15940 7405 9306 10462 Face 15941 7939 6696 7834 Face 15942 7147 10815 10961 Face 15943 10815 9512 7141 Face 15944 7160 9884 7052 Face 15945 10691 10815 7141 Face 15946 8763 9882 8656 Face 15947 8763 8656 9652 Face 15948 8670 7463 10849 Face 15949 7397 10849 10219 Face 15950 7294 10356 7463 Face 15951 7397 8670 10849 Face 15952 25756 25863 25862 Face 15953 8670 7294 7463 Face 15954 10518 10517 4194 Face 15955 24373 34438 24374 Face 15956 1121 9190 3683 Face 15957 21369 5631 21363 Face 15958 10074 9906 8139 Face 15959 10430 10074 8139 Face 15960 10928 10949 9906 Face 15961 10074 10928 9906 Face 15962 8374 7175 10949 Face 15963 10928 8374 10949 Face 15964 7036 7696 7175 Face 15965 8374 7036 7175 Face 15966 7952 8163 7696 Face 15967 7036 7952 7696 Face 15968 7952 10353 8875 Face 15969 8163 7952 8875 Face 15970 10353 6694 7056 Face 15971 8875 10353 7056 Face 15972 6694 9790 7116 Face 15973 7056 6694 7116 Face 15974 9790 10821 10575 Face 15975 7116 9790 10575 Face 15976 10821 9090 7115 Face 15977 10575 10821 7115 Face 15978 9090 9390 9391 Face 15979 7115 9090 9391 Face 15980 9390 8536 8338 Face 15981 9391 9390 8338 Face 15982 8536 10091 9974 Face 15983 8338 8536 9974 Face 15984 10091 10497 10498 Face 15985 9974 10091 10498 Face 15986 10497 8436 8232 Face 15987 10498 10497 8232 Face 15988 8436 8466 8367 Face 15989 8232 8436 8367 Face 15990 8466 7479 7370 Face 15991 8367 8466 7370 Face 15992 7479 9171 8880 Face 15993 7370 7479 8880 Face 15994 6817 10952 8880 Face 15995 9171 6817 8880 Face 15996 9886 9980 10952 Face 15997 6817 9886 10952 Face 15998 9886 10567 10847 Face 15999 9980 9886 10847 Face 16000 12731 11368 10567 Face 16001 10847 10567 8032 Face 16002 7926 10567 11368 Face 16003 8032 7926 10930 Face 16004 7154 7155 10930 Face 16005 7261 7154 10930 Face 16006 7261 8172 7154 Face 16007 34435 34827 34781 Face 16008 1777 8004 1778 Face 16009 11598 12640 10004 Face 16010 9306 10616 6870 Face 16011 34807 34634 34770 Face 16012 29904 29903 29849 Face 16013 29850 29904 29849 Face 16014 6938 6937 6833 Face 16015 6834 6938 6833 Face 16016 7048 7047 6937 Face 16017 6938 7048 6937 Face 16018 34663 14034 34622 Face 16019 7048 7156 7047 Face 16020 20454 20453 13728 Face 16021 7156 7263 357 Face 16022 7005 7112 7004 Face 16023 1193 7632 1194 Face 16024 12396 12486 12395 Face 16025 7221 7220 7111 Face 16026 9509 10590 9418 Face 16027 12222 12223 12311 Face 16028 7224 7223 761 Face 16029 34348 28818 27105 Face 16030 7734 7510 10250 Face 16031 9098 10876 2374 Face 16032 3690 14800 1417 Face 16033 10372 7119 10365 Face 16034 28654 28655 28783 Face 16035 3157 1087 519 Face 16036 31211 31313 31210 Face 16037 12315 12406 12405 Face 16038 9040 9039 8931 Face 16039 7407 10365 8952 Face 16040 28784 28910 28909 Face 16041 8932 9040 8931 Face 16042 11395 11396 11478 Face 16043 6769 295 294 Face 16044 8506 8605 8604 Face 16045 9734 4842 9743 Face 16046 8915 9023 9022 Face 16047 8708 8814 8813 Face 16048 10139 10395 10128 Face 16049 8914 8915 9022 Face 16050 10395 9395 8166 Face 16051 10835 10958 9305 Face 16052 7286 9071 7814 Face 16053 11121 11183 11120 Face 16054 7141 7033 10569 Face 16055 9232 9233 9344 Face 16056 10399 10398 10276 Face 16057 5256 3447 329 Face 16058 7209 7314 7208 Face 16059 6993 7100 6992 Face 16060 10482 10381 10725 Face 16061 34813 34441 34649 Face 16062 34725 34546 34542 Face 16063 17097 344 452 Face 16064 7731 10212 7358 Face 16065 7080 7731 7358 Face 16066 20454 14908 14907 Face 16067 8182 8286 8285 Face 16068 5105 10073 10190 Face 16069 10117 9998 8741 Face 16070 10042 10043 10161 Face 16071 10162 10280 10279 Face 16072 8566 10307 8741 Face 16073 10161 10162 10279 Face 16074 10883 10884 8555 Face 16075 397 6971 292 Face 16076 7509 895 6696 Face 16077 215 10798 10799 Face 16078 7355 7252 6693 Face 16079 505 396 6971 Face 16080 34394 34764 34331 Face 16081 10570 7355 6693 Face 16082 8078 8184 8077 Face 16083 8389 8388 8285 Face 16084 7642 7643 7755 Face 16085 8288 8287 8183 Face 16086 8799 8903 8798 Face 16087 9124 9123 9010 Face 16088 110 6675 6769 Face 16089 8728 7260 10448 Face 16090 9512 7160 7052 Face 16091 7141 9512 7052 Face 16092 8246 7806 7183 Face 16093 10686 10687 10105 Face 16094 8958 10194 10435 Face 16095 6958 384 6957 Face 16096 34573 34504 34755 Face 16097 7084 10070 6791 Face 16098 7084 6791 10889 Face 16099 10890 7084 10889 Face 16100 10523 10644 10522 Face 16101 10768 10767 10643 Face 16102 10890 10889 10767 Face 16103 10644 10768 10643 Face 16104 206 12762 203 Face 16105 10768 10890 10767 Face 16106 8957 10074 10430 Face 16107 20083 20162 20161 Face 16108 10935 10928 10074 Face 16109 8957 10935 10074 Face 16110 6627 8374 10928 Face 16111 10935 6627 10928 Face 16112 7930 7036 8374 Face 16113 6627 7930 8374 Face 16114 8351 7952 7036 Face 16115 7930 8351 7036 Face 16116 6868 10353 7952 Face 16117 8351 6868 7952 Face 16118 6868 10487 6694 Face 16119 10353 6868 6694 Face 16120 10487 7957 9790 Face 16121 6694 10487 9790 Face 16122 7957 10453 10821 Face 16123 9790 7957 10821 Face 16124 10453 9206 9090 Face 16125 10821 10453 9090 Face 16126 9206 8058 9390 Face 16127 9090 9206 9390 Face 16128 8058 10485 8536 Face 16129 9390 8058 8536 Face 16130 10485 10210 10091 Face 16131 8536 10485 10091 Face 16132 10210 10495 10497 Face 16133 10091 10210 10497 Face 16134 10495 8146 8436 Face 16135 10497 10495 8436 Face 16136 8146 8363 8466 Face 16137 8436 8146 8466 Face 16138 8363 7480 7479 Face 16139 8466 8363 7479 Face 16140 7480 9649 9171 Face 16141 7479 7480 9171 Face 16142 9649 10960 6817 Face 16143 9171 9649 6817 Face 16144 7389 9886 6817 Face 16145 10672 10960 11288 Face 16146 10777 10899 10776 Face 16147 7389 10960 10672 Face 16148 8342 9089 8855 Face 16149 9670 10095 10096 Face 16150 9929 9928 9811 Face 16151 10681 10381 10482 Face 16152 6262 8248 7893 Face 16153 34822 34280 34558 Face 16154 13651 13127 12118 Face 16155 13742 7916 14648 Face 16156 6967 394 393 Face 16157 10299 10300 10421 Face 16158 10516 4193 10517 Face 16159 11929 1315 12185 Face 16160 14318 580 14265 Face 16161 9550 260 1799 Face 16162 34273 34782 34570 Face 16163 3966 2669 2407 Face 16164 740 857 856 Face 16165 6733 16766 6833 Face 16166 15398 3034 77 Face 16167 9219 2513 8340 Face 16168 3932 1114 9789 Face 16169 34801 34286 34440 Face 16170 1383 4484 1496 Face 16171 6291 6980 10593 Face 16172 7112 7221 7111 Face 16173 7776 7885 7775 Face 16174 21832 21831 21734 Face 16175 7326 7325 7220 Face 16176 377 7169 486 Face 16177 11326 11325 11250 Face 16178 25080 17857 23059 Face 16179 10722 8871 7703 Face 16180 9134 9247 9133 Face 16181 28253 28252 28115 Face 16182 8454 10722 7703 Face 16183 12926 10692 4601 Face 16184 7719 9740 8871 Face 16185 8600 8703 8599 Face 16186 10449 10459 8949 Face 16187 10783 10782 10658 Face 16188 8999 9000 9112 Face 16189 8797 8901 8900 Face 16190 9612 9611 9498 Face 16191 8796 8797 8900 Face 16192 9153 9152 9039 Face 16193 9497 9498 9611 Face 16194 10632 10631 10511 Face 16195 9040 9153 9039 Face 16196 3183 9734 9743 Face 16197 13688 13687 13594 Face 16198 8406 8506 8505 Face 16199 11715 11797 11714 Face 16200 9136 9135 9022 Face 16201 8505 8506 8604 Face 16202 8625 10139 8619 Face 16203 9023 9136 9022 Face 16204 8453 8552 9621 Face 16205 9395 9305 8166 Face 16206 8128 9184 8041 Face 16207 9060 8453 9621 Face 16208 9071 9060 9621 Face 16209 7814 9071 9621 Face 16210 9212 10852 8456 Face 16211 10369 9398 8541 Face 16212 10852 8541 8456 Face 16213 26445 20893 26183 Face 16214 9233 9234 9345 Face 16215 9346 9461 9345 Face 16216 8587 8690 8586 Face 16217 8690 8796 8795 Face 16218 9008 9007 8899 Face 16219 8900 9008 8899 Face 16220 9008 9121 9120 Face 16221 6870 10616 9410 Face 16222 8555 215 10799 Face 16223 749 9536 8985 Face 16224 7445 7078 8848 Face 16225 8848 8847 10989 Face 16226 10892 10893 7445 Face 16227 8847 10990 10989 Face 16228 10280 10402 10401 Face 16229 7078 8847 8848 Face 16230 10279 10280 10401 Face 16231 10643 10642 10521 Face 16232 10525 10524 10401 Face 16233 10402 10525 10401 Face 16234 8867 8863 9766 Face 16235 8867 7229 8863 Face 16236 8063 10617 7252 Face 16237 9979 8867 9766 Face 16238 6696 895 7513 Face 16239 7355 8063 7252 Face 16240 8184 8288 8183 Face 16241 8181 8182 8285 Face 16242 9011 9124 9010 Face 16243 8288 8391 8390 Face 16244 34596 34501 34745 Face 16245 10398 10521 10397 Face 16246 9884 9652 7052 Face 16247 9884 8763 9652 Face 16248 10578 5102 4972 Face 16249 7806 10105 7183 Face 16250 8440 8850 8745 Face 16251 7779 8440 8745 Face 16252 7711 8851 10134 Face 16253 8850 10443 10565 Face 16254 7711 8986 8851 Face 16255 9163 7711 10134 Face 16256 8969 8986 7249 Face 16257 8986 7254 7249 Face 16258 5619 10918 10580 Face 16259 9187 1306 629 Face 16260 9555 9187 3935 Face 16261 20453 20454 14907 Face 16262 26411 26412 20083 Face 16263 20161 26528 26411 Face 16264 9555 10313 10935 Face 16265 8957 9555 10935 Face 16266 8766 6627 10935 Face 16267 10313 8766 10935 Face 16268 9277 7930 6627 Face 16269 8766 9277 6627 Face 16270 9786 8351 7930 Face 16271 9277 9786 7930 Face 16272 9786 10333 6868 Face 16273 8351 9786 6868 Face 16274 10333 10364 10487 Face 16275 6868 10333 10487 Face 16276 8062 7957 10487 Face 16277 10364 8062 10487 Face 16278 8062 10943 10453 Face 16279 7957 8062 10453 Face 16280 10943 9092 9206 Face 16281 10453 10943 9206 Face 16282 9092 8061 8058 Face 16283 9206 9092 8058 Face 16284 8061 10002 10485 Face 16285 8058 8061 10485 Face 16286 10002 6838 10210 Face 16287 10485 10002 10210 Face 16288 6838 9221 10495 Face 16289 10210 6838 10495 Face 16290 9221 14124 14037 Face 16291 10495 9221 8146 Face 16292 10241 10192 8363 Face 16293 8146 10241 8363 Face 16294 10192 9524 7480 Face 16295 8363 10192 7480 Face 16296 9524 10001 9649 Face 16297 7480 9524 9649 Face 16298 8777 9088 10307 Face 16299 34439 34823 34375 Face 16300 10846 8743 10974 Face 16301 10723 10846 10974 Face 16302 10899 10898 10776 Face 16303 8814 8815 8918 Face 16304 9668 10505 9541 Face 16305 9481 9594 9480 Face 16306 9929 10045 9928 Face 16307 9398 7496 7267 Face 16308 34530 34387 34571 Face 16309 10538 10537 10414 Face 16310 34485 34427 34816 Face 16311 12909 34650 34552 Face 16312 7749 7858 7748 Face 16313 10035 10034 9918 Face 16314 353 249 354 Face 16315 15214 15350 15349 Face 16316 11698 11680 11220 Face 16317 155 252 7048 Face 16318 3447 5256 16376 Face 16319 48 232 15478 Face 16320 15887 15888 48 Face 16321 4598 11161 1316 Face 16322 7046 7047 251 Face 16323 10550 10671 10670 Face 16324 10559 8859 7594 Face 16325 10685 10810 9329 Face 16326 7593 8455 10323 Face 16327 7834 7513 7724 Face 16328 10197 9963 9962 Face 16329 7663 7776 7662 Face 16330 10438 10197 9962 Face 16331 7221 7326 7220 Face 16332 7885 7884 7775 Face 16333 10566 8034 7478 Face 16334 7436 7435 7325 Face 16335 15590 15588 15447 Face 16336 9402 9759 120 Face 16337 9266 9265 9152 Face 16338 8339 8130 7703 Face 16339 9727 9841 9726 Face 16340 9153 9266 9152 Face 16341 8462 10328 10218 Face 16342 11874 11875 11958 Face 16343 15958 16107 14996 Face 16344 10347 9969 7851 Face 16345 17731 19171 19172 Face 16346 491 7066 492 Face 16347 9969 8959 9854 Face 16348 7349 7458 7348 Face 16349 911 910 7702 Face 16350 10512 10632 10511 Face 16351 27964 27963 27831 Face 16352 28116 28253 28115 Face 16353 2143 2019 2144 Face 16354 6771 6676 6677 Face 16355 30057 11025 30120 Face 16356 8011 8010 7903 Face 16357 9727 9726 9611 Face 16358 2747 2874 2746 Face 16359 9493 9492 9377 Face 16360 9612 9727 9611 Face 16361 9679 9793 9678 Face 16362 9378 9493 9377 Face 16363 11878 11877 11796 Face 16364 7703 8871 10828 Face 16365 8406 8405 8302 Face 16366 5468 12191 12108 Face 16367 9136 9249 9248 Face 16368 8405 8406 8505 Face 16369 7276 8625 7275 Face 16370 9135 9136 9248 Face 16371 7403 10138 8552 Face 16372 10395 8166 10128 Face 16373 10369 6943 7496 Face 16374 8453 7403 8552 Face 16375 10490 10829 7942 Face 16376 10852 10369 8541 Face 16377 10829 10431 7120 Face 16378 10431 7464 7120 Face 16379 7464 10431 1006 Face 16380 10431 2792 1006 Face 16381 8417 10490 7273 Face 16382 2792 7356 10015 Face 16383 10490 7942 7273 Face 16384 10829 7120 7942 Face 16385 9220 8417 10348 Face 16386 10332 9858 9762 Face 16387 10802 9220 10678 Face 16388 9306 10332 10833 Face 16389 10591 7620 7394 Face 16390 8417 7273 10348 Face 16391 9398 10369 7496 Face 16392 6943 10603 10480 Face 16393 7496 6943 10480 Face 16394 10603 8676 8064 Face 16395 10480 10603 8064 Face 16396 8676 7616 7470 Face 16397 10771 10893 10892 Face 16398 8064 8676 7470 Face 16399 10770 10771 10892 Face 16400 10893 7078 7445 Face 16401 10524 10525 10645 Face 16402 10525 10646 10645 Face 16403 10646 10770 10769 Face 16404 10645 10646 10769 Face 16405 781 10997 10993 Face 16406 9979 9766 8573 Face 16407 7147 10961 10617 Face 16408 10277 10399 10276 Face 16409 7095 7204 7094 Face 16410 10762 10884 10883 Face 16411 8287 8288 8390 Face 16412 5853 8002 5725 Face 16413 34680 34381 13665 Face 16414 7417 7528 7527 Face 16415 9882 10219 8656 Face 16416 9882 7397 10219 Face 16417 34324 34343 34677 Face 16418 9386 10940 1886 Face 16419 8745 8850 10565 Face 16420 9163 10134 10565 Face 16421 10163 10162 10043 Face 16422 10044 10163 10043 Face 16423 9928 9927 9810 Face 16424 9811 9928 9810 Face 16425 9697 9696 9581 Face 16426 9582 9697 9581 Face 16427 9354 9469 9353 Face 16428 9582 9581 9468 Face 16429 9354 9353 9241 Face 16430 9242 9354 9241 Face 16431 8172 11538 16405 Face 16432 9469 9468 9353 Face 16433 9411 10313 9555 Face 16434 9411 9555 3935 Face 16435 9845 8766 10313 Face 16436 9411 9845 10313 Face 16437 7934 9277 8766 Face 16438 9845 7934 8766 Face 16439 7934 9672 9786 Face 16440 9277 7934 9786 Face 16441 9672 10334 10333 Face 16442 9786 9672 10333 Face 16443 9094 10364 10333 Face 16444 10334 9094 10333 Face 16445 9094 7958 8062 Face 16446 10364 9094 8062 Face 16447 7958 7385 10943 Face 16448 8062 7958 10943 Face 16449 7385 8981 9092 Face 16450 10943 7385 9092 Face 16451 8981 9388 8061 Face 16452 9092 8981 8061 Face 16453 9388 9533 10002 Face 16454 8061 9388 10002 Face 16455 9533 6837 6838 Face 16456 10002 9533 6838 Face 16457 11237 11312 11311 Face 16458 14225 6837 9533 Face 16459 11168 31533 31532 Face 16460 11236 11237 11311 Face 16461 7738 10199 10192 Face 16462 34581 34554 34715 Face 16463 20884 34812 34607 Face 16464 10192 10199 9524 Face 16465 7526 7527 7638 Face 16466 15135 15134 9783 Face 16467 498 390 391 Face 16468 7917 10732 8942 Face 16469 10846 10723 7704 Face 16470 8743 8439 9733 Face 16471 9020 9021 9133 Face 16472 9253 9365 9252 Face 16473 8747 8342 6941 Face 16474 9427 9668 9541 Face 16475 7359 9398 7267 Face 16476 7394 7836 10505 Face 16477 10293 10292 10174 Face 16478 10293 10415 10292 Face 16479 8948 10932 8832 Face 16480 1018 5201 16267 Face 16481 7636 7749 7635 Face 16482 7965 7964 7857 Face 16483 8596 8699 8595 Face 16484 19964 20041 20040 Face 16485 19890 19968 19889 Face 16486 22115 22210 22114 Face 16487 20371 21204 20370 Face 16488 1790 200 8042 Face 16489 6263 9412 6148 Face 16490 34737 34370 34693 Face 16491 8217 8322 8216 Face 16492 8113 8217 8216 Face 16493 8978 12906 9295 Face 16494 8920 9028 9027 Face 16495 8112 8113 8216 Face 16496 11481 11559 11480 Face 16497 9141 9254 9140 Face 16498 9963 10810 10685 Face 16499 8088 8194 8193 Face 16500 19968 20045 20044 Face 16501 9962 9963 10685 Face 16502 7326 7436 7325 Face 16503 7776 7775 7662 Face 16504 11480 11479 11396 Face 16505 11800 11881 11799 Face 16506 9118 9119 9231 Face 16507 8939 7947 6944 Face 16508 9378 9377 9265 Face 16509 9266 9378 9265 Face 16510 17882 20193 20114 Face 16511 7633 7746 1194 Face 16512 10083 9966 6383 Face 16513 7474 7365 565 Face 16514 8805 8804 8698 Face 16515 9470 9583 9582 Face 16516 10039 10040 10158 Face 16517 10975 10974 10797 Face 16518 9903 9653 7820 Face 16519 10071 10362 8360 Face 16520 8717 8823 8716 Face 16521 8927 8926 8822 Face 16522 19890 19889 19813 Face 16523 11797 11796 11714 Face 16524 9606 9721 9605 Face 16525 22106 22107 22201 Face 16526 9493 9606 9605 Face 16527 9492 9493 9605 Face 16528 8891 8999 8998 Face 16529 9721 9720 9605 Face 16530 10119 10695 9784 Face 16531 6690 6786 6785 Face 16532 8303 8302 8198 Face 16533 11558 11557 11479 Face 16534 9361 9360 9248 Face 16535 8303 8406 8302 Face 16536 9315 7276 9176 Face 16537 9249 9361 9248 Face 16538 9212 8456 10138 Face 16539 10139 10128 8619 Face 16540 88 6700 10678 Face 16541 7403 9212 10138 Face 16542 10896 10897 88 Face 16543 9220 10348 10678 Face 16544 10533 10654 10653 Face 16545 6700 10802 10678 Face 16546 10410 10533 10532 Face 16547 10409 10410 10532 Face 16548 10170 10288 10287 Face 16549 10169 10170 10287 Face 16550 10288 10410 10409 Face 16551 10287 10288 10409 Face 16552 10654 10778 10653 Face 16553 10900 10899 10777 Face 16554 10778 10900 10777 Face 16555 10900 7943 10198 Face 16556 7943 7595 8556 Face 16557 10899 10900 10198 Face 16558 10406 10407 10529 Face 16559 10198 7943 8556 Face 16560 10284 10285 10406 Face 16561 10530 10651 10650 Face 16562 10166 10167 10284 Face 16563 10407 10530 10529 Face 16564 10048 10167 10047 Face 16565 10285 10407 10406 Face 16566 7616 7398 7734 Face 16567 10167 10285 10284 Face 16568 10525 10526 10646 Face 16569 7470 7616 7734 Face 16570 10647 10771 10770 Face 16571 10646 10647 10770 Face 16572 10769 10770 10891 Face 16573 10770 10892 10891 Face 16574 10753 9979 8573 Face 16575 10686 10753 10687 Face 16576 10884 215 8555 Face 16577 10399 10522 10521 Face 16578 9272 10997 4988 Face 16579 9233 9345 9344 Face 16580 34422 34788 28004 Face 16581 7752 7753 7861 Face 16582 7416 7417 7527 Face 16583 9007 9120 9119 Face 16584 4981 10435 5111 Face 16585 7640 7753 7752 Face 16586 11538 8172 11541 Face 16587 8486 8487 8585 Face 16588 10443 9163 10565 Face 16589 8986 8969 8851 Face 16590 10044 10043 9927 Face 16591 9928 10044 9927 Face 16592 6998 6997 6891 Face 16593 12119 13291 16191 Face 16594 7214 7319 7318 Face 16595 7105 7104 6997 Face 16596 7429 7540 7539 Face 16597 7213 7214 7318 Face 16598 7652 7765 7764 Face 16599 7428 7429 7539 Face 16600 7765 7874 7873 Face 16601 7651 7652 7764 Face 16602 11808 11807 11725 Face 16603 3165 5744 7733 Face 16604 10873 9845 9411 Face 16605 8661 10873 9411 Face 16606 8169 7934 9845 Face 16607 10873 8169 9845 Face 16608 8169 8321 9672 Face 16609 7934 8169 9672 Face 16610 8321 8638 10334 Face 16611 9672 8321 10334 Face 16612 9207 9094 10334 Face 16613 8638 9207 10334 Face 16614 9207 7959 7958 Face 16615 9094 9207 7958 Face 16616 7959 9188 7385 Face 16617 7958 7959 7385 Face 16618 9188 8982 8981 Face 16619 7385 9188 8981 Face 16620 8982 8045 9388 Face 16621 8981 8982 9388 Face 16622 8045 9532 9533 Face 16623 9388 8045 9533 Face 16624 3052 7622 3053 Face 16625 1748 1755 1756 Face 16626 13480 420 13387 Face 16627 13692 13787 13691 Face 16628 8416 10868 13786 Face 16629 3054 3052 8131 Face 16630 1104 7550 7438 Face 16631 13271 13181 12628 Face 16632 9247 9246 9133 Face 16633 7277 7276 9315 Face 16634 19814 19890 19813 Face 16635 28234 28233 28096 Face 16636 8133 7596 8134 Face 16637 34360 34342 34790 Face 16638 13799 10473 13798 Face 16639 7704 7592 12906 Face 16640 8140 9736 7298 Face 16641 10818 9670 10096 Face 16642 9812 9811 9697 Face 16643 8064 7470 9155 Face 16644 10153 10139 8625 Face 16645 10096 8859 10559 Face 16646 10415 10414 10292 Face 16647 10056 10175 10055 Face 16648 6684 6780 6779 Face 16649 10320 10441 10083 Face 16650 7524 7636 7523 Face 16651 7858 7857 7748 Face 16652 7212 7213 7317 Face 16653 8396 8397 8496 Face 16654 5744 3932 8883 Face 16655 10383 4056 10261 Face 16656 13149 13150 13244 Face 16657 18261 1883 27215 Face 16658 7904 8011 7903 Face 16659 296 197 6771 Face 16660 855 856 970 Face 16661 9225 9337 9336 Face 16662 8007 8008 8112 Face 16663 7570 7682 7569 Face 16664 7791 7792 7900 Face 16665 7901 8008 8007 Face 16666 10407 10408 10530 Face 16667 7900 7901 8007 Face 16668 10810 8666 9329 Face 16669 7995 1554 1663 Face 16670 7663 7662 7550 Face 16671 8666 10464 4999 Face 16672 7104 7213 7212 Face 16673 7318 7428 7427 Face 16674 2025 151 4605 Face 16675 9679 9678 9563 Face 16676 9835 9834 9720 Face 16677 9721 9835 9720 Face 16678 9835 9952 9834 Face 16679 9952 9951 9834 Face 16680 9952 10068 9951 Face 16681 10068 10067 9951 Face 16682 34541 34785 34317 Face 16683 34447 34615 34450 Face 16684 34359 34418 34502 Face 16685 10305 10304 10186 Face 16686 10304 10305 10426 Face 16687 10305 10427 10426 Face 16688 10426 10427 10549 Face 16689 10427 10550 10549 Face 16690 10549 10550 10670 Face 16691 13098 7180 10428 Face 16692 10464 9738 9282 Face 16693 8298 8299 8401 Face 16694 10266 10265 10146 Face 16695 4999 10464 9282 Face 16696 7103 7104 7212 Face 16697 10265 10266 10387 Face 16698 7881 7988 7880 Face 16699 7213 7318 7317 Face 16700 9476 9475 9360 Face 16701 8199 8303 8198 Face 16702 7356 9315 10015 Face 16703 9361 9476 9360 Face 16704 10774 10775 10896 Face 16705 8625 8619 7275 Face 16706 10650 10651 10774 Face 16707 10897 6700 88 Face 16708 8228 10483 6793 Face 16709 10775 10897 10896 Face 16710 10778 10777 10653 Face 16711 10980 8228 6793 Face 16712 28695 27892 26590 Face 16713 10532 10533 10653 Face 16714 19226 33027 17859 Face 16715 7005 7004 6897 Face 16716 19097 19095 29537 Face 16717 7112 7111 7004 Face 16718 28238 28239 28372 Face 16719 26554 26670 26669 Face 16720 22033 8726 2362 Face 16721 13312 13313 13406 Face 16722 2898 7380 2400 Face 16723 20988 20847 20668 Face 16724 12182 12274 12095 Face 16725 22213 22212 22117 Face 16726 7595 8228 10980 Face 16727 22116 22211 22115 Face 16728 4201 775 9161 Face 16729 8556 7595 10980 Face 16730 10932 10811 4201 Face 16731 9160 9742 9660 Face 16732 9161 9160 9660 Face 16733 775 9160 9161 Face 16734 9932 10048 9931 Face 16735 9742 7279 7278 Face 16736 7398 8474 7510 Face 16737 10167 10166 10047 Face 16738 10403 10402 10280 Face 16739 7734 7398 7510 Face 16740 7445 6872 10891 Face 16741 10281 10403 10280 Face 16742 7806 10686 10105 Face 16743 10989 10196 10195 Face 16744 8063 7147 10617 Face 16745 10753 8573 10687 Face 16746 9006 9007 9119 Face 16747 10398 10399 10521 Face 16748 7610 8976 7727 Face 16749 9120 9233 9232 Face 16750 7836 7610 7727 Face 16751 10554 9322 8976 Face 16752 10554 8545 9322 Face 16753 9244 9356 9355 Face 16754 8586 8689 8688 Face 16755 10326 10206 8644 Face 16756 7753 7862 7861 Face 16757 8688 8689 8794 Face 16758 9811 9810 9696 Face 16759 9697 9811 9696 Face 16760 6998 7105 6997 Face 16761 7214 7213 7104 Face 16762 9473 9586 9585 Face 16763 9472 9473 9585 Face 16764 9246 9358 9357 Face 16765 9245 9246 9357 Face 16766 9020 9133 9132 Face 16767 9019 9020 9132 Face 16768 9020 9019 8911 Face 16769 8912 9020 8911 Face 16770 10068 13676 10186 Face 16771 21414 23544 25318 Face 16772 10825 10750 10873 Face 16773 8661 10825 10873 Face 16774 10750 6717 8169 Face 16775 10873 10750 8169 Face 16776 6717 7168 8321 Face 16777 8169 6717 8321 Face 16778 8003 8638 8321 Face 16779 7168 8003 8321 Face 16780 9093 9207 8638 Face 16781 8003 9093 8638 Face 16782 9093 6720 7959 Face 16783 9207 9093 7959 Face 16784 6720 10919 9188 Face 16785 7959 6720 9188 Face 16786 10919 7057 8982 Face 16787 9188 10919 8982 Face 16788 7057 9387 8045 Face 16789 8982 7057 8045 Face 16790 1549 1339 7281 Face 16791 8045 9387 9532 Face 16792 12823 12739 12556 Face 16793 12739 12932 12115 Face 16794 12739 12115 12556 Face 16795 12932 3435 12115 Face 16796 13226 13225 13130 Face 16797 11632 11711 11710 Face 16798 9506 5724 5599 Face 16799 388 387 6961 Face 16800 9021 9022 9134 Face 16801 6685 6781 6780 Face 16802 8720 8826 8719 Face 16803 8333 7352 7739 Face 16804 10833 10332 9762 Face 16805 756 7376 1451 Face 16806 10880 10879 10757 Face 16807 7183 5365 5234 Face 16808 6620 6684 6619 Face 16809 9770 8231 10573 Face 16810 14945 14946 15078 Face 16811 9698 9812 9697 Face 16812 8704 8810 8703 Face 16813 10537 10658 10536 Face 16814 10414 10413 10291 Face 16815 10175 10174 10055 Face 16816 10545 10544 10421 Face 16817 9491 9604 9490 Face 16818 397 292 293 Face 16819 7749 7748 7635 Face 16820 7317 7318 7427 Face 16821 7428 7539 7538 Face 16822 10187 10306 13676 Face 16823 8998 8999 9111 Face 16824 9224 9225 9336 Face 16825 9112 9225 9224 Face 16826 9111 9112 9224 Face 16827 8008 8113 8112 Face 16828 7679 7792 7791 Face 16829 8428 8527 8427 Face 16830 1769 10119 9784 Face 16831 9329 8666 4999 Face 16832 9076 8636 10438 Face 16833 7427 7428 7538 Face 16834 7651 7650 7538 Face 16835 9017 9130 9016 Face 16836 7102 7103 7211 Face 16837 12220 12309 12219 Face 16838 8515 8614 8514 Face 16839 13596 13689 13688 Face 16840 26354 26336 25539 Face 16841 34735 3819 9101 Face 16842 13498 13499 13595 Face 16843 10259 10272 10795 Face 16844 10273 2145 9332 Face 16845 8730 8751 10259 Face 16846 10272 10807 10795 Face 16847 7367 7368 8730 Face 16848 8751 10272 10259 Face 16849 10572 10625 7367 Face 16850 7368 8751 8730 Face 16851 9738 10625 10572 Face 16852 9282 9738 10572 Face 16853 7539 7651 7538 Face 16854 10625 7368 7367 Face 16855 7651 7764 7763 Face 16856 25540 26354 25539 Face 16857 8093 8092 7987 Face 16858 10634 10633 10513 Face 16859 9589 9588 9475 Face 16860 7988 8093 7987 Face 16861 9315 9176 10015 Face 16862 9476 9589 9475 Face 16863 10529 10530 10650 Face 16864 7276 7275 9176 Face 16865 8857 8947 8948 Face 16866 10651 10775 10774 Face 16867 6793 10483 10459 Face 16868 10459 8857 8948 Face 16869 20034 20035 8726 Face 16870 10483 8857 10459 Face 16871 8455 10865 10320 Face 16872 9424 8356 8252 Face 16873 8203 8202 8096 Face 16874 7478 13557 12562 Face 16875 7992 7991 7884 Face 16876 7885 7992 7884 Face 16877 8097 8096 7991 Face 16878 7992 8097 7991 Face 16879 8203 8307 8202 Face 16880 8410 8409 8306 Face 16881 8307 8410 8306 Face 16882 8510 8509 8409 Face 16883 8410 8510 8409 Face 16884 8609 8608 8509 Face 16885 8510 8609 8509 Face 16886 8712 8711 8608 Face 16887 13503 13600 13599 Face 16888 34509 34805 28004 Face 16889 8791 8895 8894 Face 16890 8790 8791 8894 Face 16891 13890 15253 1156 Face 16892 8381 8380 8277 Face 16893 33696 33697 20885 Face 16894 10545 10666 10665 Face 16895 9660 9742 7278 Face 16896 7257 7258 459 Face 16897 9701 9815 9814 Face 16898 7279 8652 8651 Face 16899 7189 7849 7510 Face 16900 9700 9701 9814 Face 16901 10163 10281 10280 Face 16902 6118 6244 6243 Face 16903 10972 10989 10195 Face 16904 10162 10163 10280 Face 16905 10159 10160 10277 Face 16906 10196 8440 7779 Face 16907 10815 10691 10961 Face 16908 10278 10400 10399 Face 16909 10150 10269 10149 Face 16910 6880 6986 6985 Face 16911 9130 9131 9243 Face 16912 8580 8683 8682 Face 16913 7647 7760 7646 Face 16914 18759 12090 7135 Face 16915 8193 8194 8297 Face 16916 3032 34490 26786 Face 16917 8795 8899 8898 Face 16918 8401 8400 8297 Face 16919 9469 9582 9468 Face 16920 8179 8180 8283 Face 16921 7105 7214 7104 Face 16922 7319 7429 7428 Face 16923 9358 9473 9472 Face 16924 9357 9358 9472 Face 16925 9986 9872 10238 Face 16926 8864 9986 10238 Face 16927 11718 11717 11638 Face 16928 8864 9871 9986 Face 16929 11909 11908 11827 Face 16930 11249 11324 11248 Face 16931 2259 8616 2258 Face 16932 320 5001 2772 Face 16933 4320 770 4321 Face 16934 11847 13577 11284 Face 16935 10874 9664 6717 Face 16936 10750 10874 6717 Face 16937 8355 7168 6717 Face 16938 9664 8355 6717 Face 16939 10641 8003 7168 Face 16940 8355 10641 7168 Face 16941 8983 9093 8003 Face 16942 10641 8983 8003 Face 16943 8983 9205 6720 Face 16944 9093 8983 6720 Face 16945 9205 8424 10919 Face 16946 6720 9205 10919 Face 16947 8424 7951 7057 Face 16948 10919 8424 7057 Face 16949 7951 7071 9387 Face 16950 7057 7951 9387 Face 16951 1215 434 3193 Face 16952 7071 7953 7070 Face 16953 6260 1215 3193 Face 16954 8568 151 434 Face 16955 10574 8781 9991 Face 16956 1215 8568 434 Face 16957 34030 34031 6665 Face 16958 7169 377 7060 Face 16959 7854 7855 7961 Face 16960 496 388 389 Face 16961 1414 1301 7854 Face 16962 2008 8313 1888 Face 16963 8765 8658 7824 Face 16964 9843 9844 13402 Face 16965 545 544 10478 Face 16966 9511 8446 8747 Face 16967 7607 7268 7488 Face 16968 8382 8383 8482 Face 16969 7631 8448 8970 Face 16970 9574 9573 9460 Face 16971 3794 10140 3926 Face 16972 5076 17735 14100 Face 16973 10568 10096 10559 Face 16974 9940 10056 10055 Face 16975 8809 8810 8913 Face 16976 10658 10657 10536 Face 16977 9604 9719 9603 Face 16978 19739 19738 19655 Face 16979 12382 11462 34448 Face 16980 13132 13133 13227 Face 16981 8758 8757 8727 Face 16982 20886 20885 33823 Face 16983 8352 7844 8757 Face 16984 8758 8352 8757 Face 16985 1080 970 7632 Face 16986 9337 9452 9451 Face 16987 1634 8271 1633 Face 16988 14946 15079 15078 Face 16989 1953 18603 18503 Face 16990 26787 16718 27357 Face 16991 1553 7995 7994 Face 16992 129 10084 13470 Face 16993 8871 9740 7386 Face 16994 7521 7633 7632 Face 16995 8130 8339 9437 Face 16996 9307 9109 10558 Face 16997 7455 7567 7454 Face 16998 11562 11640 11561 Face 16999 12309 12308 12219 Face 17000 7679 7678 7566 Face 17001 7439 8636 9076 Face 17002 12493 12494 12582 Face 17003 8828 7439 9076 Face 17004 8636 10197 10438 Face 17005 2050 16428 16588 Face 17006 3810 7839 5881 Face 17007 753 488 10112 Face 17008 21276 6633 26541 Face 17009 8913 8912 8808 Face 17010 15428 15429 15568 Face 17011 10066 10185 10065 Face 17012 9227 9339 9338 Face 17013 9947 9946 9829 Face 17014 10185 10184 10065 Face 17015 10239 10242 10193 Face 17016 8551 8650 8448 Face 17017 7882 7989 7881 Face 17018 8679 8680 8786 Face 17019 8651 10216 8645 Face 17020 10730 15332 7294 Face 17021 20161 26411 20083 Face 17022 34298 34444 11012 Face 17023 7547 7546 7435 Face 17024 1437 125 760 Face 17025 8199 8198 8092 Face 17026 7436 7547 7435 Face 17027 9704 9703 9588 Face 17028 8093 8199 8092 Face 17029 7766 7875 7874 Face 17030 9589 9704 9588 Face 17031 7653 7766 7765 Face 17032 7765 7766 7874 Face 17033 8948 8947 10932 Face 17034 7652 7653 7765 Face 17035 8278 8381 8277 Face 17036 8947 10811 10932 Face 17037 8381 8481 8480 Face 17038 8380 8381 8480 Face 17039 9030 9143 9029 Face 17040 7092 7091 6984 Face 17041 8307 8306 8202 Face 17042 9256 9255 9142 Face 17043 10504 7439 8828 Face 17044 8097 8203 8096 Face 17045 10910 10504 10379 Face 17046 10379 10504 8828 Face 17047 10788 10910 10909 Face 17048 10909 10910 10379 Face 17049 10788 10787 10663 Face 17050 10787 10788 10909 Face 17051 10664 10663 10542 Face 17052 10664 10788 10663 Face 17053 10543 10542 10419 Face 17054 10543 10664 10542 Face 17055 8609 8712 8608 Face 17056 10420 10543 10419 Face 17057 8818 8817 8711 Face 17058 8712 8818 8711 Face 17059 8922 8921 8817 Face 17060 8818 8922 8817 Face 17061 9596 9595 9482 Face 17062 9483 9596 9482 Face 17063 9711 9710 9595 Face 17064 9596 9711 9595 Face 17065 13224 13225 13317 Face 17066 9711 9825 9824 Face 17067 7278 7279 8651 Face 17068 20725 20990 14907 Face 17069 9586 9701 9700 Face 17070 8159 10120 10590 Face 17071 9354 9355 9469 Face 17072 9585 9586 9700 Face 17073 9016 9015 8907 Face 17074 1082 7161 8141 Face 17075 10195 10196 7779 Face 17076 8908 9016 8907 Face 17077 10040 10041 10159 Face 17078 6882 6988 6987 Face 17079 6787 6886 6885 Face 17080 10160 10278 10277 Face 17081 9830 9947 9829 Face 17082 7093 7202 7092 Face 17083 32564 32563 32446 Face 17084 34791 34647 34443 Face 17085 27165 11109 16962 Face 17086 10516 10393 4193 Face 17087 9243 9244 9355 Face 17088 3551 3157 8650 Face 17089 6986 7093 6985 Face 17090 7202 7201 7092 Face 17091 7318 7319 7428 Face 17092 7540 7652 7651 Face 17093 9133 9246 9245 Face 17094 9132 9133 9245 Face 17095 9872 9986 6922 Face 17096 13595 13688 13594 Face 17097 12311 12402 12401 Face 17098 12310 12311 12401 Face 17099 13677 8956 13746 Face 17100 12087 12091 7176 Face 17101 27047 25559 25558 Face 17102 11240 11315 11239 Face 17103 3561 9549 2122 Face 17104 10481 10561 7620 Face 17105 29460 29461 5513 Face 17106 32412 4602 3762 Face 17107 8350 8355 9664 Face 17108 9549 8350 9664 Face 17109 9043 10641 8355 Face 17110 8350 9043 8355 Face 17111 8877 8983 10641 Face 17112 9043 8877 10641 Face 17113 8877 7031 9205 Face 17114 8983 8877 9205 Face 17115 7031 10809 8424 Face 17116 9205 7031 8424 Face 17117 10809 7953 7951 Face 17118 8424 10809 7951 Face 17119 15383 7070 14612 Face 17120 7951 7953 7071 Face 17121 1898 9402 7182 Face 17122 10940 9284 10366 Face 17123 11483 11482 11399 Face 17124 30613 30527 30614 Face 17125 12204 12017 12740 Face 17126 23978 24287 24288 Face 17127 8566 9995 8885 Face 17128 4316 10628 4442 Face 17129 8439 10466 9733 Face 17130 777 4090 7513 Face 17131 8271 8272 1855 Face 17132 20745 32887 34637 Face 17133 27737 26787 6603 Face 17134 27694 27825 28299 Face 17135 34806 26928 28231 Face 17136 17055 29714 20625 Face 17137 7216 7321 7215 Face 17138 29194 26446 20987 Face 17139 8960 9765 8028 Face 17140 8325 8324 8219 Face 17141 7869 7976 7868 Face 17142 8081 8080 7975 Face 17143 10414 10537 10413 Face 17144 29194 27495 26446 Face 17145 8810 8914 8913 Face 17146 9403 7277 9315 Face 17147 405 300 301 Face 17148 12474 9291 11597 Face 17149 6876 6982 6875 Face 17150 34700 34663 34602 Face 17151 749 8985 3311 Face 17152 6777 6876 6875 Face 17153 8838 8837 8733 Face 17154 6242 8470 6241 Face 17155 25676 30529 25677 Face 17156 9754 8130 9437 Face 17157 7401 10479 7290 Face 17158 9953 9836 9954 Face 17159 9445 7037 7935 Face 17160 10969 34357 34831 Face 17161 4590 4457 3825 Face 17162 13134 13229 13133 Face 17163 7678 7679 7791 Face 17164 8350 9549 3561 Face 17165 7567 7679 7566 Face 17166 7792 7901 7900 Face 17167 9017 9018 9130 Face 17168 7346 7455 7345 Face 17169 9131 9244 9243 Face 17170 8298 8401 8297 Face 17171 8501 8500 8400 Face 17172 32196 7238 7237 Face 17173 1228 4201 6630 Face 17174 4576 10878 4707 Face 17175 7455 7454 7345 Face 17176 10180 10298 10297 Face 17177 11303 10804 8889 Face 17178 10180 10179 10060 Face 17179 10179 10180 10297 Face 17180 10061 10060 9944 Face 17181 10061 10180 10060 Face 17182 9714 9828 9713 Face 17183 9945 10061 9944 Face 17184 9945 9944 9827 Face 17185 9828 9945 9827 Face 17186 8921 8922 9029 Face 17187 8922 9030 9029 Face 17188 7607 9424 8252 Face 17189 8356 7503 7145 Face 17190 7772 7881 7771 Face 17191 7988 7987 7880 Face 17192 7659 7772 7658 Face 17193 7881 7880 7771 Face 17194 7659 7658 7546 Face 17195 7547 7659 7546 Face 17196 9818 9935 9817 Face 17197 7772 7771 7658 Face 17198 9818 9817 9703 Face 17199 9704 9818 9703 Face 17200 7874 7875 7981 Face 17201 9935 9934 9817 Face 17202 7250 10447 10803 Face 17203 7875 7982 7981 Face 17204 14660 12018 14541 Face 17205 7583 7269 7732 Face 17206 12135 12220 12134 Face 17207 10811 775 4201 Face 17208 11854 12562 11937 Face 17209 11244 11243 11174 Face 17210 9368 9367 9255 Face 17211 9256 9368 9255 Face 17212 9486 9599 9485 Face 17213 9143 9256 9142 Face 17214 9371 9486 9370 Face 17215 9714 9713 9598 Face 17216 13196 34385 34591 Face 17217 9599 9598 9485 Face 17218 9295 10477 10354 Face 17219 10029 10148 10028 Face 17220 3169 4838 4707 Face 17221 7378 7054 10991 Face 17222 8488 8489 8587 Face 17223 30525 30452 25580 Face 17224 10023 10024 10142 Face 17225 10648 10772 10771 Face 17226 740 625 741 Face 17227 10024 10143 10142 Face 17228 10298 10420 10419 Face 17229 7851 9854 10079 Face 17230 9146 9259 9145 Face 17231 10297 10298 10419 Face 17232 9033 9146 9032 Face 17233 9371 9370 9258 Face 17234 9033 9032 8924 Face 17235 9259 9258 9145 Face 17236 8925 9033 8924 Face 17237 9146 9145 9032 Face 17238 9942 9941 9824 Face 17239 9710 9711 9824 Face 17240 12813 13455 20749 Face 17241 10295 10417 10294 Face 17242 10469 8159 10590 Face 17243 12402 12492 12491 Face 17244 8500 8499 8399 Face 17245 8864 10238 10120 Face 17246 10473 12355 9990 Face 17247 8400 8500 8399 Face 17248 8804 8908 8907 Face 17249 8296 8295 8191 Face 17250 6881 6882 6987 Face 17251 8803 8804 8907 Face 17252 9924 9925 10040 Face 17253 8587 8586 8487 Face 17254 6786 6787 6885 Face 17255 10041 10160 10159 Face 17256 7201 7306 7305 Face 17257 6992 6991 6885 Face 17258 7076 6870 10326 Face 17259 10616 7731 9410 Face 17260 10637 10761 10636 Face 17261 11696 34606 11299 Face 17262 6870 9410 10326 Face 17263 8496 8595 8594 Face 17264 7539 7540 7651 Face 17265 7764 7765 7873 Face 17266 8912 8911 8807 Face 17267 8808 8912 8807 Face 17268 7812 9986 14290 Face 17269 12485 12574 12573 Face 17270 2916 7049 7810 Face 17271 29410 18651 17728 Face 17272 10540 10661 10539 Face 17273 10785 10784 10660 Face 17274 10906 10907 10871 Face 17275 10661 10785 10660 Face 17276 7999 9196 10436 Face 17277 9429 9196 7999 Face 17278 10985 34467 977 Face 17279 10637 10636 10516 Face 17280 13509 13508 13413 Face 17281 7822 170 66 Face 17282 7701 9043 8350 Face 17283 9549 9664 2122 Face 17284 7701 8771 8877 Face 17285 9043 7701 8877 Face 17286 8771 8030 7031 Face 17287 8877 8771 7031 Face 17288 8030 10608 10809 Face 17289 7031 8030 10809 Face 17290 10608 7067 7953 Face 17291 10809 10608 7953 Face 17292 10981 10858 15935 Face 17293 7953 7067 7070 Face 17294 3053 2511 1673 Face 17295 7622 13480 8641 Face 17296 11634 11713 11712 Face 17297 11633 11634 11712 Face 17298 12307 12308 12398 Face 17299 12736 12201 11850 Face 17300 4990 15459 1756 Face 17301 10141 3927 10140 Face 17302 7317 7316 7211 Face 17303 5104 5226 5103 Face 17304 25639 25300 25162 Face 17305 8272 8375 1855 Face 17306 11971 11970 11886 Face 17307 8786 8787 8890 Face 17308 8261 8874 1197 Face 17309 3147 3146 3010 Face 17310 9736 10370 7298 Face 17311 4450 4451 4582 Face 17312 10028 10027 9911 Face 17313 490 7065 491 Face 17314 10509 10629 10508 Face 17315 9923 9924 10039 Face 17316 457 565 7365 Face 17317 9939 9940 10055 Face 17318 9812 9929 9811 Face 17319 8601 8704 8600 Face 17320 30021 30020 29959 Face 17321 8145 8019 8037 Face 17322 9784 10558 8019 Face 17323 8038 8145 8037 Face 17324 9765 1437 760 Face 17325 8856 10087 8750 Face 17326 9660 9403 6630 Face 17327 8407 8406 8303 Face 17328 14821 14946 14945 Face 17329 16213 13950 13934 Face 17330 9754 9437 10335 Face 17331 9964 9982 9109 Face 17332 7346 7345 7238 Face 17333 9307 9964 9109 Face 17334 9167 11851 10689 Face 17335 14698 14821 14820 Face 17336 14693 14816 13647 Face 17337 16428 5138 5265 Face 17338 14697 14698 14820 Face 17339 10190 4976 5107 Face 17340 16588 16428 5265 Face 17341 5600 5725 9506 Face 17342 65 636 635 Face 17343 7567 7566 7454 Face 17344 10558 9109 7941 Face 17345 11853 15193 14674 Face 17346 27454 27574 27453 Face 17347 6619 6618 33410 Face 17348 7800 7799 7686 Face 17349 22718 20075 26102 Face 17350 7687 7800 7686 Face 17351 10695 9307 9784 Face 17352 28656 28657 28785 Face 17353 8681 8682 8787 Face 17354 7378 9855 7946 Face 17355 25851 18361 25978 Face 17356 10494 9437 9172 Face 17357 8304 8407 8303 Face 17358 9719 9718 9603 Face 17359 9599 9714 9598 Face 17360 9828 9827 9713 Face 17361 6781 6880 6879 Face 17362 9143 9142 9029 Face 17363 4972 4840 8882 Face 17364 8252 8356 7145 Face 17365 34720 34825 34357 Face 17366 9935 10051 10050 Face 17367 8900 8899 8795 Face 17368 9934 9935 10050 Face 17369 8488 8587 8487 Face 17370 10170 10169 10050 Face 17371 6686 6782 6781 Face 17372 10051 10170 10050 Face 17373 9460 9573 9459 Face 17374 1006 2792 10015 Face 17375 11684 34797 11448 Face 17376 8087 8086 7981 Face 17377 6631 9551 9780 Face 17378 10447 7583 10803 Face 17379 122 2661 6631 Face 17380 10118 7300 7299 Face 17381 8123 10560 8443 Face 17382 9551 10118 9780 Face 17383 9368 9483 9367 Face 17384 10436 8123 8443 Face 17385 9259 9371 9258 Face 17386 9483 9482 9367 Face 17387 20894 28555 20893 Face 17388 9486 9485 9370 Face 17389 9719 9833 9718 Face 17390 34253 32624 34129 Face 17391 25677 30528 25579 Face 17392 1674 9874 4861 Face 17393 10382 8462 10218 Face 17394 26103 27396 27395 Face 17395 7492 8856 7932 Face 17396 27155 26208 29194 Face 17397 29087 29088 19094 Face 17398 10328 7334 7330 Face 17399 9566 9681 9680 Face 17400 8856 8750 7932 Face 17401 8709 8815 8814 Face 17402 7650 7763 7649 Face 17403 6791 4716 10889 Face 17404 9338 9453 9452 Face 17405 8170 1636 8274 Face 17406 10079 5598 7520 Face 17407 25903 25952 28144 Face 17408 7341 7340 7233 Face 17409 596 7170 7171 Face 17410 7450 7449 7340 Face 17411 8513 8512 8412 Face 17412 8612 8611 8512 Face 17413 8413 8412 8309 Face 17414 8413 8513 8412 Face 17415 10540 10539 10416 Face 17416 8310 8413 8309 Face 17417 10222 10231 6815 Face 17418 10417 10540 10416 Face 17419 8159 8864 10120 Face 17420 7402 9739 9624 Face 17421 8400 8399 8296 Face 17422 10182 10300 10181 Face 17423 8192 8296 8191 Face 17424 8297 8400 8296 Face 17425 8804 8803 8697 Face 17426 8399 8398 8295 Face 17427 7204 7203 7094 Face 17428 8698 8804 8697 Face 17429 9807 9808 9924 Face 17430 409 517 7915 Face 17431 6886 6992 6885 Face 17432 9925 10041 10040 Face 17433 9239 9351 9238 Face 17434 9466 9465 9350 Face 17435 7339 7233 7340 Face 17436 6686 6781 6685 Face 17437 8292 8293 8395 Face 17438 8396 8496 8495 Face 17439 7981 7980 7873 Face 17440 8701 8700 8597 Face 17441 7982 8087 7981 Face 17442 8193 8192 8086 Face 17443 12484 12485 12573 Face 17444 12491 12580 12579 Face 17445 12691 12690 12600 Face 17446 24531 23355 21418 Face 17447 10785 10907 10906 Face 17448 10784 10785 10906 Face 17449 8310 8309 8205 Face 17450 8206 8310 8205 Face 17451 8100 8099 7994 Face 17452 7995 8100 7994 Face 17453 11612 11533 13277 Face 17454 19218 17104 17369 Face 17455 11949 5896 5767 Face 17456 11781 10001 9524 Face 17457 10941 10214 7701 Face 17458 9664 10874 2122 Face 17459 10214 8665 8771 Face 17460 7701 10214 8771 Face 17461 8665 7948 8030 Face 17462 8771 8665 8030 Face 17463 7948 9619 10608 Face 17464 8030 7948 10608 Face 17465 9619 7960 7067 Face 17466 10608 9619 7067 Face 17467 14001 15935 10858 Face 17468 7067 7960 10981 Face 17469 12487 12488 12576 Face 17470 11118 11180 11117 Face 17471 12667 12668 14964 Face 17472 12576 12577 12666 Face 17473 12488 12577 12576 Face 17474 420 2776 13387 Face 17475 8691 8797 8690 Face 17476 3926 3927 4055 Face 17477 9806 9807 9923 Face 17478 8494 8493 8393 Face 17479 34532 34789 27367 Face 17480 387 388 495 Face 17481 10063 10182 10062 Face 17482 10212 10833 10875 Face 17483 6535 7288 7193 Face 17484 25683 34714 25792 Face 17485 10904 10905 10818 Face 17486 7430 7431 7541 Face 17487 11297 25305 12653 Face 17488 9296 7272 10846 Face 17489 10386 10509 10508 Face 17490 10385 10386 10508 Face 17491 34527 34469 34407 Face 17492 7373 7374 8761 Face 17493 8645 10153 8625 Face 17494 7267 7496 10357 Face 17495 912 911 7702 Face 17496 8901 9009 9008 Face 17497 8750 7051 9423 Face 17498 7932 8750 9423 Face 17499 7719 8132 9740 Face 17500 9883 8974 9765 Face 17501 10300 10422 10421 Face 17502 1377 1376 16584 Face 17503 3823 5335 4729 Face 17504 7909 7908 7799 Face 17505 7800 7909 7799 Face 17506 242 7038 243 Face 17507 10146 10265 10145 Face 17508 8016 8015 7908 Face 17509 8577 8576 8477 Face 17510 7909 8016 7908 Face 17511 21918 21919 22016 Face 17512 34632 26326 34383 Face 17513 4104 4231 15191 Face 17514 904 14039 788 Face 17515 15494 233 15615 Face 17516 5265 5138 14200 Face 17517 16110 1797 1019 Face 17518 14520 16110 16106 Face 17519 22503 22502 22405 Face 17520 4848 4716 6791 Face 17521 8187 8291 8186 Face 17522 9264 9376 9263 Face 17523 4857 8959 1320 Face 17524 34405 34417 34391 Face 17525 8121 8120 8015 Face 17526 8016 8121 8015 Face 17527 8225 8224 8120 Face 17528 8121 8225 8120 Face 17529 10045 10044 9928 Face 17530 8330 8329 8224 Face 17531 7857 7964 7856 Face 17532 1224 1223 1113 Face 17533 30661 30660 30566 Face 17534 25580 30452 25581 Face 17535 34159 10995 7391 Face 17536 6769 6770 295 Face 17537 10242 8336 10193 Face 17538 8821 8925 8820 Face 17539 8042 7631 8970 Face 17540 7527 7528 7639 Face 17541 7308 7418 7417 Face 17542 409 2026 517 Face 17543 7203 7308 7307 Face 17544 7202 7203 7307 Face 17545 7203 7202 7093 Face 17546 7094 7203 7093 Face 17547 6881 6987 6986 Face 17548 6880 6881 6986 Face 17549 9314 6901 9427 Face 17550 6987 7094 6986 Face 17551 9688 9687 9572 Face 17552 9573 9688 9572 Face 17553 10035 10154 10034 Face 17554 9356 9471 9470 Face 17555 6683 6684 6779 Face 17556 9780 10118 7299 Face 17557 7752 7861 7860 Face 17558 7335 7364 8678 Face 17559 8039 7267 10235 Face 17560 10560 9960 9868 Face 17561 9813 9812 9698 Face 17562 10808 7506 7725 Face 17563 24319 2691 2554 Face 17564 7267 10357 10235 Face 17565 9365 9480 9479 Face 17566 34463 34550 34810 Face 17567 10531 10532 10652 Face 17568 9681 9795 9680 Face 17569 8225 8330 8224 Face 17570 34744 34610 34484 Face 17571 8433 8432 8329 Face 17572 8330 8433 8329 Face 17573 8532 8531 8432 Face 17574 8433 8532 8432 Face 17575 8532 8631 8630 Face 17576 8531 8532 8630 Face 17577 8631 8736 8735 Face 17578 8630 8631 8735 Face 17579 8736 8841 8840 Face 17580 8735 8736 8840 Face 17581 10403 10404 10526 Face 17582 9802 9803 9919 Face 17583 10138 6869 7247 Face 17584 34533 34589 34686 Face 17585 8914 9022 8913 Face 17586 10404 10527 10526 Face 17587 7562 7561 7449 Face 17588 7341 7450 7340 Face 17589 34396 34721 6614 Face 17590 9065 9872 7950 Face 17591 7950 6922 9665 Face 17592 7222 7327 7221 Face 17593 10425 10548 10547 Face 17594 7926 7261 10930 Face 17595 10661 10660 10539 Face 17596 9601 9716 9600 Face 17597 8668 10231 10222 Face 17598 7835 1229 10597 Face 17599 8606 8605 8506 Face 17600 8655 8668 10222 Face 17601 8087 8193 8086 Face 17602 6383 1856 10382 Face 17603 8296 8399 8295 Face 17604 8297 8296 8192 Face 17605 8495 8496 8594 Face 17606 8499 8498 8398 Face 17607 28114 28113 27980 Face 17608 8595 8698 8697 Face 17609 8393 8392 8289 Face 17610 10850 9654 70 Face 17611 8493 8492 8392 Face 17612 8290 8393 8289 Face 17613 2712 4447 2328 Face 17614 1317 6016 2913 Face 17615 7871 7978 7870 Face 17616 7978 8083 8082 Face 17617 8598 8701 8597 Face 17618 8806 8807 8910 Face 17619 7320 7430 7429 Face 17620 7319 7320 7429 Face 17621 12490 12491 12579 Face 17622 7438 7328 991 Face 17623 7300 8668 8655 Face 17624 7299 7300 8655 Face 17625 10907 9429 10871 Face 17626 10871 9429 7999 Face 17627 8206 8205 8099 Face 17628 8100 8206 8099 Face 17629 34388 34443 34723 Face 17630 11479 11557 11556 Face 17631 10941 3561 3432 Face 17632 11175 11174 11112 Face 17633 34496 34684 34734 Face 17634 9041 9040 8932 Face 17635 21561 14098 20811 Face 17636 15469 10356 7294 Face 17637 15307 11156 34629 Face 17638 11156 21745 34629 Face 17639 34690 15307 34629 Face 17640 8665 8563 7948 Face 17641 8563 7831 7948 Face 17642 7948 7831 9619 Face 17643 14082 9292 7831 Face 17644 9619 9292 7960 Face 17645 10437 10125 9319 Face 17646 14285 9292 15396 Face 17647 11633 11712 11711 Face 17648 13690 13689 13596 Face 17649 12217 12218 12306 Face 17650 12398 12488 12487 Face 17651 12201 12204 12740 Face 17652 12307 12398 12397 Face 17653 9347 9462 9461 Face 17654 8291 8394 8290 Face 17655 11799 11798 11716 Face 17656 8690 8689 8586 Face 17657 9465 9578 9577 Face 17658 13605 13604 13507 Face 17659 7313 7314 7423 Face 17660 10300 10299 10181 Face 17661 7863 7864 7970 Face 17662 8388 8488 8487 Face 17663 9140 9253 9139 Face 17664 10931 10309 8140 Face 17665 7705 7704 12998 Face 17666 7272 6923 8743 Face 17667 10629 10628 10508 Face 17668 10846 7272 8743 Face 17669 7082 7193 7296 Face 17670 10025 10026 10144 Face 17671 10009 12463 11208 Face 17672 10191 7374 7373 Face 17673 10755 10754 10630 Face 17674 2027 1320 8959 Face 17675 10335 7840 7051 Face 17676 8750 10335 7051 Face 17677 9883 9765 8960 Face 17678 8132 9883 8960 Face 17679 34638 11467 11604 Face 17680 30614 30527 30528 Face 17681 17950 22518 18288 Face 17682 6724 10863 9324 Face 17683 7461 34773 34523 Face 17684 8840 8841 8945 Face 17685 12726 12817 5205 Face 17686 12214 12303 12302 Face 17687 9682 9796 9681 Face 17688 8200 8304 8199 Face 17689 13488 13489 10094 Face 17690 8260 3823 3952 Face 17691 1756 2587 4990 Face 17692 172 18831 171 Face 17693 20360 20447 20359 Face 17694 15194 15191 14029 Face 17695 27995 20875 20964 Face 17696 14200 15494 15615 Face 17697 7058 6948 7059 Face 17698 14519 14520 16106 Face 17699 7994 7887 1553 Face 17700 14565 14566 14685 Face 17701 1637 8173 8276 Face 17702 13277 2377 11690 Face 17703 12818 2500 2640 Face 17704 8682 8788 8787 Face 17705 22901 23978 24288 Face 17706 27692 27640 26336 Face 17707 322 13677 13746 Face 17708 34675 34689 34480 Face 17709 2108 2400 6270 Face 17710 13325 13324 13231 Face 17711 32447 32564 32446 Face 17712 10695 10429 9307 Face 17713 8913 9021 8912 Face 17714 10818 10096 10568 Face 17715 7562 7674 7673 Face 17716 33230 33366 33229 Face 17717 6886 6887 6992 Face 17718 34669 34341 34373 Face 17719 8585 8688 8687 Face 17720 6780 6879 6878 Face 17721 34629 14034 34700 Face 17722 7410 10505 7727 Face 17723 8496 8497 8595 Face 17724 8293 8294 8396 Face 17725 8397 8497 8496 Face 17726 8189 8190 8293 Face 17727 8294 8397 8396 Face 17728 8083 8084 8189 Face 17729 20886 33823 20887 Face 17730 7978 7979 8083 Face 17731 8898 9006 9005 Face 17732 19297 19600 15165 Face 17733 10638 10762 10761 Face 17734 9343 9344 9458 Face 17735 8871 7386 10828 Face 17736 10637 10638 10761 Face 17737 8237 6483 8149 Face 17738 10517 10518 10637 Face 17739 9267 9266 9153 Face 17740 10879 3044 10878 Face 17741 7674 7787 7786 Face 17742 9154 9267 9153 Face 17743 9594 9593 9480 Face 17744 25753 25860 25859 Face 17745 7492 7932 9964 Face 17746 9022 9021 8913 Face 17747 3930 16444 7184 Face 17748 7703 10828 9172 Face 17749 8891 8892 8999 Face 17750 8758 1570 8970 Face 17751 10758 10880 10757 Face 17752 9000 9113 9112 Face 17753 9003 9116 9115 Face 17754 21730 21827 21729 Face 17755 8805 8909 8804 Face 17756 9703 9702 9587 Face 17757 10269 10391 10390 Face 17758 9220 10953 8417 Face 17759 10449 10490 8417 Face 17760 26221 11251 26105 Face 17761 12574 12575 12664 Face 17762 7437 7436 7326 Face 17763 9953 9952 9835 Face 17764 9836 9953 9835 Face 17765 9716 9715 9600 Face 17766 9225 9226 9337 Face 17767 10933 10450 10339 Face 17768 10597 10933 10339 Face 17769 10231 7402 6815 Face 17770 2661 9551 6631 Face 17771 34523 34368 34717 Face 17772 8745 10565 10686 Face 17773 8193 8297 8192 Face 17774 7540 7541 7652 Face 17775 8399 8499 8398 Face 17776 8598 8597 8498 Face 17777 8594 8595 8697 Face 17778 8395 8396 8495 Face 17779 6360 6240 8470 Face 17780 34534 34524 34365 Face 17781 9396 8990 7467 Face 17782 7815 8642 7922 Face 17783 12930 12933 9286 Face 17784 13311 13405 13404 Face 17785 7762 7871 7761 Face 17786 7978 7977 7870 Face 17787 8911 9019 9018 Face 17788 9244 9245 9356 Face 17789 34756 34702 34813 Face 17790 2874 9222 9334 Face 17791 9620 11362 8243 Face 17792 8977 9764 7937 Face 17793 7519 8138 9965 Face 17794 10082 6697 6698 Face 17795 9196 8123 10436 Face 17796 10339 10450 7335 Face 17797 8702 8703 8808 Face 17798 10424 10425 10547 Face 17799 7100 7099 6992 Face 17800 7314 7424 7423 Face 17801 34381 34424 34738 Face 17802 10691 7141 10569 Face 17803 10980 6793 8018 Face 17804 9135 9248 9247 Face 17805 4976 10798 4844 Face 17806 10478 70 9654 Face 17807 13408 13503 13502 Face 17808 13407 13408 13502 Face 17809 13694 13789 13693 Face 17810 322 4083 13677 Face 17811 4083 322 13788 Face 17812 13789 4083 13788 Face 17813 11598 10004 4594 Face 17814 14782 22138 13732 Face 17815 22610 22419 15441 Face 17816 6271 2025 1001 Face 17817 11795 11876 11794 Face 17818 13597 13690 13596 Face 17819 12398 12399 12488 Face 17820 11559 11558 11480 Face 17821 2375 7478 12562 Face 17822 11398 11481 11397 Face 17823 34117 6643 34116 Face 17824 8282 8283 8385 Face 17825 10141 10142 10260 Face 17826 7861 7862 7968 Face 17827 10723 10974 10975 Face 17828 23505 23427 23666 Face 17829 9295 12906 7592 Face 17830 10600 10723 10975 Face 17831 10961 9400 10205 Face 17832 7971 8076 8075 Face 17833 9365 9364 9252 Face 17834 10905 9670 10818 Face 17835 8085 8191 8084 Face 17836 9586 9587 9701 Face 17837 6923 7500 8439 Face 17838 7500 7512 8439 Face 17839 9909 9910 10025 Face 17840 10026 10145 10144 Face 17841 9480 9593 9479 Face 17842 9708 9707 9592 Face 17843 10387 10388 10510 Face 17844 10631 10755 10630 Face 17845 10335 9437 10494 Face 17846 7840 10335 10494 Face 17847 12973 12972 12880 Face 17848 27738 27869 6162 Face 17849 13415 13414 13320 Face 17850 13673 3573 8036 Face 17851 34827 34323 34781 Face 17852 766 767 883 Face 17853 10964 9072 9969 Face 17854 6790 11087 11147 Face 17855 8230 10964 10347 Face 17856 26061 26062 26174 Face 17857 4022 24692 4021 Face 17858 9359 9358 9246 Face 17859 10555 8230 8991 Face 17860 10921 34455 11273 Face 17861 9072 8959 9969 Face 17862 30573 30667 30572 Face 17863 16855 16777 16856 Face 17864 6650 6744 6743 Face 17865 6743 6844 6843 Face 17866 6744 6845 6844 Face 17867 6743 6744 6844 Face 17868 6845 6949 6948 Face 17869 6844 6845 6948 Face 17870 7058 375 374 Face 17871 6949 7059 6948 Face 17872 7233 7339 7232 Face 17873 11338 11337 11261 Face 17874 10865 10441 10320 Face 17875 8806 8805 8699 Face 17876 9823 9822 9708 Face 17877 10573 8231 8333 Face 17878 8026 9970 4735 Face 17879 9726 9840 9725 Face 17880 10964 9969 10347 Face 17881 4735 9507 10124 Face 17882 9507 7586 10124 Face 17883 7586 10555 10124 Face 17884 9726 9725 9610 Face 17885 9611 9726 9610 Face 17886 19482 19483 19563 Face 17887 7561 7562 7673 Face 17888 9793 9792 9678 Face 17889 9885 7377 10604 Face 17890 9802 9801 9687 Face 17891 9688 9802 9687 Face 17892 8688 8794 8793 Face 17893 8794 8898 8897 Face 17894 10505 7410 8654 Face 17895 10505 7836 7727 Face 17896 9161 9660 6630 Face 17897 9541 10505 8654 Face 17898 7416 7527 7526 Face 17899 7278 7277 9403 Face 17900 9345 9460 9459 Face 17901 7415 7416 7526 Face 17902 7927 10993 9272 Face 17903 9344 9345 9459 Face 17904 1635 8272 1634 Face 17905 7377 6944 10604 Face 17906 7824 8658 7802 Face 17907 7104 7103 6996 Face 17908 9267 9379 9266 Face 17909 26587 20119 13579 Face 17910 9611 9610 9497 Face 17911 9379 9378 9266 Face 17912 7186 13467 13094 Face 17913 34567 34566 34674 Face 17914 10555 8991 10124 Face 17915 13403 13498 13497 Face 17916 7159 9970 7266 Face 17917 8230 10347 8991 Face 17918 9310 7159 9198 Face 17919 9970 9507 4735 Face 17920 10665 10666 10789 Face 17921 9970 8026 7266 Face 17922 10441 9966 10083 Face 17923 9376 9491 9375 Face 17924 7746 7855 7854 Face 17925 10666 10790 10789 Face 17926 7964 8069 7963 Face 17927 6131 6132 6257 Face 17928 358 465 7263 Face 17929 8069 8175 8174 Face 17930 9325 10119 3560 Face 17931 8960 8028 6979 Face 17932 10792 10793 10914 Face 17933 10372 10079 7119 Face 17934 9653 10071 7820 Face 17935 6675 33662 6676 Face 17936 13491 13587 9955 Face 17937 10069 10068 9952 Face 17938 10266 10388 10387 Face 17939 34782 34277 34587 Face 17940 10450 7364 7335 Face 17941 10049 10048 9932 Face 17942 9965 10082 6698 Face 17943 8722 10249 10248 Face 17944 10888 9620 8243 Face 17945 6697 2661 122 Face 17946 7430 7541 7540 Face 17947 10803 7583 7732 Face 17948 8499 8598 8498 Face 17949 7429 7430 7540 Face 17950 8786 8890 2359 Face 17951 8807 8806 8700 Face 17952 7927 10707 2248 Face 17953 32566 32693 32565 Face 17954 491 7065 7066 Face 17955 4712 10885 4583 Face 17956 34319 34359 34713 Face 17957 14508 16088 16083 Face 17958 13481 13480 7622 Face 17959 12788 12881 12787 Face 17960 9357 9472 9471 Face 17961 9356 9357 9471 Face 17962 10306 13678 13773 Face 17963 8173 8174 8277 Face 17964 8148 10594 10729 Face 17965 11193 11262 11192 Face 17966 7424 7535 7534 Face 17967 7099 7100 7208 Face 17968 7364 8722 8678 Face 17969 7925 9977 9968 Face 17970 10168 10286 10167 Face 17971 9450 9451 9563 Face 17972 19032 17374 4996 Face 17973 10069 10187 10068 Face 17974 9035 9034 8926 Face 17975 8927 9035 8926 Face 17976 33693 20971 33569 Face 17977 6003 9211 9098 Face 17978 32351 32463 32350 Face 17979 70 10478 544 Face 17980 406 407 516 Face 17981 12918 12836 11277 Face 17982 11644 11643 11565 Face 17983 11566 11644 11565 Face 17984 13584 9326 8956 Face 17985 4083 13584 13677 Face 17986 12627 13176 13578 Face 17987 13677 13584 8956 Face 17988 1673 2257 12627 Face 17989 12484 12573 12483 Face 17990 11476 11477 11554 Face 17991 11632 11633 11711 Face 17992 13597 13596 13499 Face 17993 13785 13784 13689 Face 17994 11555 11633 11632 Face 17995 12217 12306 12305 Face 17996 7824 7802 10797 Face 17997 10142 10261 10260 Face 17998 34454 10227 5211 Face 17999 9733 7824 10797 Face 18000 8747 6941 10875 Face 18001 7704 10723 10600 Face 18002 9833 9950 9832 Face 18003 10218 10328 7330 Face 18004 4459 10951 17970 Face 18005 9541 8654 10968 Face 18006 20709 20710 11110 Face 18007 33867 33866 33740 Face 18008 8191 8190 8084 Face 18009 9587 9702 9701 Face 18010 8460 8765 10466 Face 18011 7512 8460 10466 Face 18012 9910 9909 9792 Face 18013 9793 9910 9792 Face 18014 10409 10532 10531 Face 18015 10408 10409 10531 Face 18016 10511 10631 10630 Face 18017 10510 10511 10630 Face 18018 7079 10929 7073 Face 18019 15441 22419 22604 Face 18020 11780 12557 7511 Face 18021 13321 13415 13320 Face 18022 13510 13509 13414 Face 18023 12128 12129 12213 Face 18024 21923 21922 21826 Face 18025 27630 27640 29350 Face 18026 34471 34404 34321 Face 18027 29604 14119 14032 Face 18028 9334 9449 3010 Face 18029 7727 8635 9325 Face 18030 7410 7727 9325 Face 18031 10087 9754 10335 Face 18032 20553 34821 34667 Face 18033 13116 12926 4601 Face 18034 10632 10756 10755 Face 18035 7932 9423 9982 Face 18036 33091 33226 33090 Face 18037 33091 33090 32956 Face 18038 16676 25473 11051 Face 18039 16718 20894 26445 Face 18040 6745 6846 6845 Face 18041 6743 6649 6650 Face 18042 6846 6950 6949 Face 18043 6845 6846 6949 Face 18044 34424 34653 34688 Face 18045 28818 34695 26987 Face 18046 11114 11176 11113 Face 18047 2230 8679 2359 Face 18048 8976 8869 8635 Face 18049 7727 8976 8635 Face 18050 7450 7562 7449 Face 18051 10727 7378 10991 Face 18052 5104 8746 10073 Face 18053 26201 26319 26318 Face 18054 9964 7932 9982 Face 18055 10164 10163 10044 Face 18056 1580 14806 7281 Face 18057 12520 24744 12608 Face 18058 9840 9839 9725 Face 18059 9322 7497 8869 Face 18060 9041 9154 9040 Face 18061 9154 9153 9040 Face 18062 7119 7520 7193 Face 18063 8797 8796 8690 Face 18064 9573 9572 9459 Face 18065 8832 10431 10829 Face 18066 3810 113 4843 Face 18067 8793 8794 8897 Face 18068 10140 3794 3795 Face 18069 10040 10159 10158 Face 18070 8386 8387 8486 Face 18071 10158 10159 10276 Face 18072 10572 7367 7366 Face 18073 8487 8586 8585 Face 18074 9294 9295 10354 Face 18075 10506 10572 7366 Face 18076 8658 10727 8558 Face 18077 10408 10531 10530 Face 18078 1742 1855 1854 Face 18079 22040 34794 34771 Face 18080 8111 8112 1897 Face 18081 463 357 464 Face 18082 8007 8112 8111 Face 18083 10205 9400 7188 Face 18084 10659 10783 10658 Face 18085 8006 8007 8111 Face 18086 34320 9279 34586 Face 18087 10145 10264 10263 Face 18088 8017 8016 7909 Face 18089 7909 7800 7910 Face 18090 8122 8121 8016 Face 18091 8017 8122 8016 Face 18092 33823 20885 33697 Face 18093 8226 8225 8121 Face 18094 7927 9272 10708 Face 18095 16856 21455 6649 Face 18096 8312 1887 8313 Face 18097 10802 10924 9220 Face 18098 9582 9583 9697 Face 18099 10903 10904 7837 Face 18100 8976 9322 8869 Face 18101 7200 7201 7305 Face 18102 8122 8226 8121 Face 18103 8644 8961 7497 Face 18104 8331 8330 8225 Face 18105 8226 8331 8225 Face 18106 8434 8433 8330 Face 18107 8331 8434 8330 Face 18108 8533 8532 8433 Face 18109 28686 34819 34724 Face 18110 7454 7566 7453 Face 18111 7791 7790 7677 Face 18112 7678 7677 7565 Face 18113 7566 7678 7565 Face 18114 11803 11884 11802 Face 18115 6927 7038 144 Face 18116 8339 7703 9172 Face 18117 13499 13596 13595 Face 18118 8678 8722 10248 Face 18119 10249 7925 9981 Face 18120 6698 6697 122 Face 18121 9936 9937 10052 Face 18122 7269 9764 8977 Face 18123 7732 7269 8977 Face 18124 7541 7653 7652 Face 18125 9355 9470 9469 Face 18126 8701 8807 8700 Face 18127 8807 8911 8910 Face 18128 10774 10896 10895 Face 18129 10650 10774 10649 Face 18130 10896 88 659 Face 18131 10773 10774 10895 Face 18132 88 10678 10325 Face 18133 10895 10896 659 Face 18134 10348 9438 10325 Face 18135 659 88 10325 Face 18136 9472 9585 9584 Face 18137 9471 9472 9584 Face 18138 10149 10268 10148 Face 18139 10268 10267 10148 Face 18140 11626 11705 7801 Face 18141 9322 8644 7497 Face 18142 9204 7136 8124 Face 18143 9904 10805 10680 Face 18144 9981 7925 9968 Face 18145 9407 7582 9408 Face 18146 34628 34780 34566 Face 18147 10080 10795 9978 Face 18148 9952 9953 10069 Face 18149 8952 8059 7946 Face 18150 7345 7454 7344 Face 18151 7566 7565 7453 Face 18152 8533 8632 8631 Face 18153 8532 8533 8631 Face 18154 8632 8737 8736 Face 18155 1332 1331 1224 Face 18156 14720 24119 22959 Face 18157 11965 11964 11880 Face 18158 11401 11400 11319 Face 18159 11881 11965 11880 Face 18160 11176 11245 11175 Face 18161 2382 2381 1989 Face 18162 12627 2257 13176 Face 18163 12396 12397 12486 Face 18164 9730 13031 13011 Face 18165 13500 13597 13499 Face 18166 13785 13786 123 Face 18167 11554 11555 11632 Face 18168 12216 12217 12305 Face 18169 12755 12664 12665 Face 18170 13500 13499 13404 Face 18171 9464 9465 9577 Face 18172 8658 8558 7802 Face 18173 9005 9006 9118 Face 18174 9461 9574 9460 Face 18175 34381 34673 34424 Face 18176 8708 8709 8814 Face 18177 34712 34490 20732 Face 18178 9912 10028 9911 Face 18179 2658 2527 2659 Face 18180 8116 8220 8115 Face 18181 9474 9473 9358 Face 18182 9247 9359 9246 Face 18183 2251 8879 435 Face 18184 8397 8398 8497 Face 18185 9885 10604 8765 Face 18186 8170 8274 8273 Face 18187 9910 10026 10025 Face 18188 8460 9885 8765 Face 18189 8778 8570 10010 Face 18190 10010 8570 10013 Face 18191 10010 8567 8778 Face 18192 7187 10465 8778 Face 18193 8567 10929 7079 Face 18194 8778 8567 7079 Face 18195 7138 8653 530 Face 18196 7138 7073 10929 Face 18197 19981 19982 17630 Face 18198 12360 11445 12269 Face 18199 9050 10484 2618 Face 18200 12676 3029 11364 Face 18201 7345 7344 7237 Face 18202 7237 7236 32300 Face 18203 8631 8632 8736 Face 18204 8737 8842 8841 Face 18205 8524 2268 2144 Face 18206 8446 10236 8342 Face 18207 25305 25167 12653 Face 18208 31931 32036 31930 Face 18209 8736 8737 8841 Face 18210 4444 4443 10628 Face 18211 34704 34720 34491 Face 18212 19103 21360 21359 Face 18213 8139 9412 6263 Face 18214 6745 6845 6744 Face 18215 25473 18456 11051 Face 18216 6746 6847 6846 Face 18217 6745 6746 6846 Face 18218 6847 6951 6950 Face 18219 6846 6847 6950 Face 18220 28002 26987 34695 Face 18221 34650 34381 34738 Face 18222 34622 34756 34334 Face 18223 4184 4055 4056 Face 18224 10206 10344 8961 Face 18225 11445 12676 11364 Face 18226 5840 17843 15614 Face 18227 7367 8730 8729 Face 18228 29905 29904 29850 Face 18229 27761 34420 28019 Face 18230 6737 14289 9871 Face 18231 28661 28660 28525 Face 18232 11454 11533 5205 Face 18233 1319 15354 15218 Face 18234 8353 34718 34728 Face 18235 8435 8332 12123 Face 18236 27391 29086 29085 Face 18237 27391 27394 29086 Face 18238 26102 26103 27395 Face 18239 13394 13121 3029 Face 18240 34285 34682 34606 Face 18241 10438 9962 9961 Face 18242 10317 10438 9961 Face 18243 6893 9076 10317 Face 18244 7417 7416 7306 Face 18245 8829 8828 6893 Face 18246 7202 7307 7306 Face 18247 8579 8682 8681 Face 18248 9076 10438 10317 Face 18249 3169 4707 10878 Face 18250 8788 8892 8891 Face 18251 8644 10206 8961 Face 18252 20894 20893 26445 Face 18253 10351 10820 10344 Face 18254 13276 20075 22718 Face 18255 13792 7743 10094 Face 18256 7872 7873 7979 Face 18257 7743 13488 10094 Face 18258 4859 982 4991 Face 18259 34385 9643 34553 Face 18260 2007 9616 9614 Face 18261 2400 1765 6270 Face 18262 10206 10351 10344 Face 18263 8018 6793 10449 Face 18264 7080 7406 10820 Face 18265 13512 13513 13609 Face 18266 7899 7900 8006 Face 18267 4840 4972 4839 Face 18268 11363 8781 10574 Face 18269 7673 7674 7786 Face 18270 7786 7787 1562 Face 18271 10773 10772 10648 Face 18272 1447 1562 1561 Face 18273 7787 7896 1562 Face 18274 10649 10773 10648 Face 18275 7854 1301 1194 Face 18276 10351 7080 10820 Face 18277 11301 11676 11697 Face 18278 7107 7106 6999 Face 18279 7900 8007 8006 Face 18280 7305 7306 7415 Face 18281 28500 26069 28635 Face 18282 7678 7791 7677 Face 18283 3032 11674 10331 Face 18284 7065 490 7064 Face 18285 10356 15469 9068 Face 18286 6295 6417 6416 Face 18287 6162 34451 34740 Face 18288 8028 760 9072 Face 18289 8680 8679 8576 Face 18290 200 7631 8042 Face 18291 8952 10365 8059 Face 18292 8606 8709 8605 Face 18293 10663 10787 10662 Face 18294 10647 10648 10771 Face 18295 10248 10249 9981 Face 18296 10787 10909 10908 Face 18297 9820 9937 9819 Face 18298 7080 7358 7285 Face 18299 9764 8148 7937 Face 18300 9937 10053 10052 Face 18301 7292 10584 7403 Face 18302 7545 7544 7433 Face 18303 9049 7292 8453 Face 18304 10584 9212 7403 Face 18305 9060 8954 8453 Face 18306 7292 7403 8453 Face 18307 9071 9183 9060 Face 18308 8954 9049 8453 Face 18309 8128 7286 7814 Face 18310 9183 8954 9060 Face 18311 7406 7080 7285 Face 18312 10970 9183 9071 Face 18313 12858 12859 13259 Face 18314 10125 9432 9319 Face 18315 11002 12104 12440 Face 18316 9653 10916 10084 Face 18317 27247 26787 27737 Face 18318 6896 6895 6795 Face 18319 10902 7136 9204 Face 18320 10901 10902 9204 Face 18321 7821 9650 13772 Face 18322 11094 12736 11850 Face 18323 8729 8730 10258 Face 18324 10259 10795 10080 Face 18325 13793 9444 7743 Face 18326 12494 12583 12582 Face 18327 7748 7857 7747 Face 18328 7851 10079 10372 Face 18329 6979 10964 8230 Face 18330 7386 6979 8230 Face 18331 7842 8640 5723 Face 18332 4592 19838 16518 Face 18333 11242 11241 11172 Face 18334 12137 12136 12049 Face 18335 13223 13316 13315 Face 18336 13316 13410 13315 Face 18337 13222 13223 13315 Face 18338 13410 13409 13315 Face 18339 13410 13505 13504 Face 18340 13409 13410 13504 Face 18341 13602 13601 13504 Face 18342 13505 13602 13504 Face 18343 13695 13694 13601 Face 18344 13602 13695 13601 Face 18345 13695 13790 13789 Face 18346 13694 13695 13789 Face 18347 1118 3937 10601 Face 18348 13603 13604 13696 Face 18349 8556 10980 10953 Face 18350 296 295 6770 Face 18351 8294 8295 8397 Face 18352 10198 8556 7472 Face 18353 9359 9474 9358 Face 18354 9474 9587 9586 Face 18355 9140 9139 9026 Face 18356 10924 8556 10953 Face 18357 9525 8335 7593 Face 18358 8859 9525 7593 Face 18359 8325 8428 8324 Face 18360 10976 10679 10931 Face 18361 4988 5117 2246 Face 18362 7912 10679 10976 Face 18363 10010 10013 8034 Face 18364 8034 13557 7478 Face 18365 8125 10010 8034 Face 18366 10566 8125 8034 Face 18367 8125 8831 8567 Face 18368 10010 8125 8567 Face 18369 8831 10917 10929 Face 18370 8567 8831 10929 Face 18371 8653 7138 10929 Face 18372 10917 8653 10929 Face 18373 2007 1083 9616 Face 18374 11440 148 9181 Face 18375 21555 22425 21649 Face 18376 8074 8180 8179 Face 18377 7454 7453 7344 Face 18378 10833 10212 7731 Face 18379 8028 9072 10964 Face 18380 6985 6984 6878 Face 18381 6979 8028 10964 Face 18382 10587 635 7400 Face 18383 6542 6017 10102 Face 18384 9643 8024 13119 Face 18385 11071 11070 11025 Face 18386 7411 9384 7578 Face 18387 13509 13606 13508 Face 18388 16223 4801 14570 Face 18389 34734 34507 34496 Face 18390 27105 27247 27737 Face 18391 6653 6747 6746 Face 18392 6652 6653 6746 Face 18393 6747 6848 6847 Face 18394 6746 6747 6847 Face 18395 6848 6952 6951 Face 18396 6847 6848 6951 Face 18397 6952 7061 7060 Face 18398 6951 6952 7060 Face 18399 18563 18565 5324 Face 18400 17505 5276 5407 Face 18401 296 6771 297 Face 18402 7066 6957 384 Face 18403 9962 10685 10442 Face 18404 9961 9962 10442 Face 18405 5904 8836 15317 Face 18406 8378 8377 8274 Face 18407 7620 7610 7836 Face 18408 29588 6652 6745 Face 18409 1451 5633 303 Face 18410 7710 3044 10879 Face 18411 8004 1777 1672 Face 18412 62 6894 8360 Face 18413 28147 28148 28153 Face 18414 10756 10878 4576 Face 18415 9481 9480 9365 Face 18416 9491 9490 9375 Face 18417 8640 5724 5723 Face 18418 7451 7450 7341 Face 18419 7342 7451 7341 Face 18420 7563 7562 7450 Face 18421 7451 7563 7450 Face 18422 6962 6963 389 Face 18423 7675 7674 7562 Face 18424 9364 9365 9479 Face 18425 14455 13744 3045 Face 18426 9912 9911 9794 Face 18427 9344 9459 9458 Face 18428 20241 20325 26642 Face 18429 9254 9366 9253 Face 18430 9038 9037 8929 Face 18431 6482 6360 8149 Face 18432 7302 7412 857 Face 18433 8826 8930 8825 Face 18434 7293 7404 7841 Face 18435 9264 9263 9150 Face 18436 7293 10942 7404 Face 18437 7074 9770 10573 Face 18438 9494 9607 9493 Face 18439 9452 9453 9565 Face 18440 9494 9493 9378 Face 18441 9379 9494 9378 Face 18442 10590 10468 9418 Face 18443 9607 9606 9493 Face 18444 8925 8924 8820 Face 18445 7766 7767 7875 Face 18446 8612 8715 8611 Face 18447 8821 8820 8714 Face 18448 8513 8612 8512 Face 18449 8715 8821 8714 Face 18450 7473 9509 10463 Face 18451 8715 8714 8611 Face 18452 9836 9835 9721 Face 18453 13651 12118 12359 Face 18454 9722 9721 9606 Face 18455 9722 9836 9721 Face 18456 7791 7900 7899 Face 18457 9607 9722 9606 Face 18458 9453 9566 9565 Face 18459 7790 7791 7899 Face 18460 9151 9264 9150 Face 18461 8270 7296 10701 Face 18462 10924 10953 9220 Face 18463 21346 21439 21345 Face 18464 10480 8064 9097 Face 18465 7277 8645 7276 Face 18466 8577 8680 8576 Face 18467 9210 7627 8250 Face 18468 8800 8799 8693 Face 18469 8094 8093 7988 Face 18470 10663 10662 10541 Face 18471 7505 10101 6414 Face 18472 23225 22436 28940 Face 18473 10542 10663 10541 Face 18474 9820 9819 9705 Face 18475 10375 7087 7285 Face 18476 7434 7545 7433 Face 18477 9706 9820 9705 Face 18478 9024 9137 9136 Face 18479 7545 7657 7656 Face 18480 9137 9250 9249 Face 18481 9023 9024 9136 Face 18482 9362 9361 9249 Face 18483 9136 9137 9249 Face 18484 9477 9476 9361 Face 18485 9250 9362 9249 Face 18486 9590 9589 9476 Face 18487 9362 9477 9361 Face 18488 9705 9704 9589 Face 18489 9477 9590 9476 Face 18490 9819 9818 9704 Face 18491 9590 9705 9589 Face 18492 7358 10375 7285 Face 18493 9705 9819 9704 Face 18494 7136 9904 8124 Face 18495 6895 7002 11219 Face 18496 13609 13610 13702 Face 18497 10780 10902 10901 Face 18498 10258 10259 10080 Face 18499 9743 4842 12378 Face 18500 10634 10758 10757 Face 18501 7366 7367 8729 Face 18502 8286 8389 8285 Face 18503 10143 10144 10262 Face 18504 9469 9470 9582 Face 18505 9741 8270 7243 Face 18506 8645 8625 7276 Face 18507 8085 8084 7979 Face 18508 26182 16718 26787 Face 18509 34374 34378 34433 Face 18510 11967 12052 11966 Face 18511 12052 12139 12051 Face 18512 11883 11967 11882 Face 18513 12139 12138 12051 Face 18514 11802 11883 11801 Face 18515 12052 12051 11966 Face 18516 11802 11801 11719 Face 18517 11967 11966 11882 Face 18518 11720 11802 11719 Face 18519 11883 11882 11801 Face 18520 13790 10189 13789 Face 18521 10189 4083 13789 Face 18522 20179 26898 20100 Face 18523 13095 10674 12262 Face 18524 10899 10198 10898 Face 18525 16835 11927 32662 Face 18526 1019 1797 1377 Face 18527 9027 9140 9026 Face 18528 21045 27830 27962 Face 18529 3556 10850 70 Face 18530 7458 7457 7348 Face 18531 6363 6364 6485 Face 18532 8337 10376 7384 Face 18533 7272 9296 13673 Face 18534 8337 7941 8048 Face 18535 10376 8337 8048 Face 18536 8617 8720 8616 Face 18537 8720 8719 8616 Face 18538 7582 10566 9408 Face 18539 2377 9408 7478 Face 18540 7626 8125 10566 Face 18541 7582 7626 10566 Face 18542 7626 7714 8831 Face 18543 8125 7626 8831 Face 18544 6708 10917 8831 Face 18545 7714 6708 8831 Face 18546 10731 8653 10917 Face 18547 6708 10731 10917 Face 18548 895 7297 7513 Face 18549 33359 33358 33222 Face 18550 9329 4999 6628 Face 18551 7969 8074 8073 Face 18552 10561 8447 10554 Face 18553 28253 28387 28386 Face 18554 22589 20279 22588 Face 18555 7487 9741 8250 Face 18556 8069 8068 7963 Face 18557 32362 32361 32255 Face 18558 12202 12361 3189 Face 18559 10094 10189 13790 Face 18560 12908 13381 13380 Face 18561 27247 26182 26787 Face 18562 13709 631 13708 Face 18563 11097 4598 11378 Face 18564 4457 636 6380 Face 18565 6590 6652 28290 Face 18566 34597 34579 34422 Face 18567 6115 6241 6114 Face 18568 20918 3331 20830 Face 18569 6748 6849 6848 Face 18570 6747 6748 6848 Face 18571 6849 6953 6952 Face 18572 6848 6849 6952 Face 18573 6953 7062 7061 Face 18574 6952 6953 7061 Face 18575 5407 18619 17505 Face 18576 7062 7170 7061 Face 18577 2036 20894 16718 Face 18578 19889 19888 19812 Face 18579 10297 10419 10418 Face 18580 10296 10297 10418 Face 18581 10790 10912 10911 Face 18582 7342 7341 7234 Face 18583 10617 10205 7917 Face 18584 14896 14895 14527 Face 18585 7538 7650 7537 Face 18586 9625 7086 7087 Face 18587 6257 6256 6131 Face 18588 10375 9625 7087 Face 18589 2248 2104 2374 Face 18590 10707 10708 8992 Face 18591 7231 7232 7337 Face 18592 7466 9165 2916 Face 18593 3927 10260 4055 Face 18594 26182 2036 16718 Face 18595 6938 155 7048 Face 18596 10165 10283 10164 Face 18597 8890 8891 8998 Face 18598 10387 10510 10509 Face 18599 8749 8238 7086 Face 18600 9795 9912 9794 Face 18601 9625 8749 7086 Face 18602 10725 10602 8238 Face 18603 8749 10725 8238 Face 18604 9425 9312 10602 Face 18605 6169 6289 6168 Face 18606 10725 9425 10602 Face 18607 9740 8960 6979 Face 18608 8237 8149 8470 Face 18609 930 5595 5464 Face 18610 9038 9151 9037 Face 18611 10429 7492 9964 Face 18612 9741 7243 8250 Face 18613 10148 10267 10266 Face 18614 10087 10335 8750 Face 18615 13688 13783 13687 Face 18616 7384 8036 8337 Face 18617 7767 7876 7875 Face 18618 7103 7212 7211 Face 18619 10058 10177 10176 Face 18620 9930 10046 9929 Face 18621 9825 9942 9824 Face 18622 10058 10057 9941 Face 18623 9942 10058 9941 Face 18624 9458 9459 9571 Face 18625 10057 10058 10176 Face 18626 8689 8795 8794 Face 18627 10295 10294 10176 Face 18628 10177 10295 10176 Face 18629 7773 7772 7659 Face 18630 10417 10416 10294 Face 18631 8130 8454 7703 Face 18632 7548 7660 7547 Face 18633 13600 13693 13692 Face 18634 10786 10787 10908 Face 18635 6130 7254 6131 Face 18636 10159 10277 10276 Face 18637 34482 34814 34711 Face 18638 7317 7427 7426 Face 18639 8068 8069 8174 Face 18640 10659 10658 10537 Face 18641 8542 9506 5599 Face 18642 10144 10145 10263 Face 18643 9610 9725 9609 Face 18644 2388 8721 8618 Face 18645 9839 9838 9724 Face 18646 9725 9839 9724 Face 18647 14528 14900 14775 Face 18648 7641 7754 7753 Face 18649 10787 10786 10662 Face 18650 10542 10541 10418 Face 18651 9425 329 9312 Face 18652 8700 8806 8699 Face 18653 9937 9936 9819 Face 18654 9706 9705 9590 Face 18655 7544 7545 7656 Face 18656 7657 7770 7769 Face 18657 7880 7879 7770 Face 18658 7771 7880 7770 Face 18659 7658 7657 7545 Face 18660 7546 7658 7545 Face 18661 7325 7324 7219 Face 18662 7220 7325 7219 Face 18663 7220 7219 7110 Face 18664 7111 7220 7110 Face 18665 7111 7110 7003 Face 18666 7004 7111 7003 Face 18667 7187 8778 7079 Face 18668 7004 7003 6896 Face 18669 9936 9935 9818 Face 18670 6897 7004 6896 Face 18671 21259 32629 21260 Face 18672 9819 9936 9818 Face 18673 10779 10780 10901 Face 18674 7001 11219 7002 Face 18675 3931 8568 1215 Face 18676 10535 10656 10534 Face 18677 8730 10259 10258 Face 18678 13219 13220 13312 Face 18679 13704 13799 13703 Face 18680 10179 10178 10059 Face 18681 7296 10005 10701 Face 18682 4066 10271 10152 Face 18683 10124 7081 9869 Face 18684 9725 9724 9609 Face 18685 7512 10466 8439 Face 18686 3034 3305 1646 Face 18687 11970 12055 11969 Face 18688 11229 11161 4598 Face 18689 11371 7501 11756 Face 18690 7573 11547 7686 Face 18691 7501 11780 11779 Face 18692 11756 7501 11779 Face 18693 11780 7511 11082 Face 18694 11779 11780 11082 Face 18695 11720 11719 11640 Face 18696 11641 11720 11640 Face 18697 11321 11320 11245 Face 18698 10189 13490 13584 Face 18699 10347 7851 9959 Face 18700 9969 9854 7851 Face 18701 13133 13228 13227 Face 18702 8991 10347 9959 Face 18703 8579 8578 8479 Face 18704 6001 8863 7229 Face 18705 8480 8479 8379 Face 18706 8480 8579 8479 Face 18707 1637 8276 8275 Face 18708 8380 8480 8379 Face 18709 8380 8379 8276 Face 18710 8277 8380 8276 Face 18711 7941 9558 8048 Face 18712 9558 9064 8048 Face 18713 6884 6885 6990 Face 18714 10828 7386 10555 Face 18715 8213 7582 9407 Face 18716 2377 9407 9408 Face 18717 8020 7626 7582 Face 18718 8213 8020 7582 Face 18719 7270 7714 7626 Face 18720 8020 7270 7626 Face 18721 7270 9297 6708 Face 18722 7714 7270 6708 Face 18723 10229 10731 6708 Face 18724 9297 10229 6708 Face 18725 7146 8002 5853 Face 18726 10229 7839 10731 Face 18727 7968 7969 8073 Face 18728 11223 11297 12653 Face 18729 2550 20891 20889 Face 18730 10685 9329 8878 Face 18731 8270 10701 7243 Face 18732 2549 2550 20889 Face 18733 7386 8230 10555 Face 18734 9610 9609 9496 Face 18735 11152 6795 6895 Face 18736 9432 13382 9169 Face 18737 9792 9909 3539 Face 18738 14627 4859 4991 Face 18739 13414 13413 13319 Face 18740 13414 13509 13413 Face 18741 2018 1897 8216 Face 18742 2019 8216 8322 Face 18743 17958 25553 27997 Face 18744 24347 24471 24761 Face 18745 26218 28555 20894 Face 18746 25730 25841 25840 Face 18747 27218 28682 28550 Face 18748 6749 6850 6849 Face 18749 24124 11371 11756 Face 18750 6850 6954 6953 Face 18751 6849 6850 6953 Face 18752 6954 7063 7062 Face 18753 6953 6954 7062 Face 18754 7171 7170 7062 Face 18755 7063 7171 7062 Face 18756 7707 6169 6170 Face 18757 15459 3174 1756 Face 18758 9944 10060 9943 Face 18759 7089 625 516 Face 18760 32405 7234 7233 Face 18761 11719 11718 11639 Face 18762 9497 9496 9381 Face 18763 9382 9269 16581 Face 18764 8377 8477 8476 Face 18765 8227 8226 8122 Face 18766 34488 34751 34615 Face 18767 8332 8331 8226 Face 18768 3076 21164 21257 Face 18769 8332 8435 8331 Face 18770 8226 8227 8332 Face 18771 8800 8904 8799 Face 18772 8220 8325 8219 Face 18773 11292 28636 16670 Face 18774 8428 8427 8324 Face 18775 8633 8738 8737 Face 18776 8632 8633 8737 Face 18777 8738 8843 8842 Face 18778 8737 8738 8842 Face 18779 34477 22039 34339 Face 18780 28136 16663 20540 Face 18781 11533 11454 4725 Face 18782 7806 8745 10686 Face 18783 13497 13498 13594 Face 18784 13131 13226 13130 Face 18785 9130 9129 9016 Face 18786 18257 19838 4592 Face 18787 5595 7245 5594 Face 18788 9162 8555 10800 Face 18789 13610 13611 13703 Face 18790 20889 20891 7019 Face 18791 34475 34781 34651 Face 18792 12215 12216 12304 Face 18793 178 16111 16594 Face 18794 10564 8564 9851 Face 18795 416 12385 1198 Face 18796 8443 10560 9868 Face 18797 9960 10564 10563 Face 18798 7894 8262 9669 Face 18799 9868 9960 10563 Face 18800 9304 10552 7388 Face 18801 34511 34675 34480 Face 18802 8446 8342 8747 Face 18803 14527 14528 14775 Face 18804 9169 2007 2006 Face 18805 9858 9511 9762 Face 18806 9624 9739 9669 Face 18807 8262 8263 9669 Face 18808 9851 8564 7835 Face 18809 6815 7402 9624 Face 18810 10563 10564 9851 Face 18811 1229 10933 10597 Face 18812 10909 10379 8236 Face 18813 8564 1229 7835 Face 18814 7787 7788 7896 Face 18815 9370 9369 9257 Face 18816 8541 9398 9059 Face 18817 2103 8679 2230 Face 18818 13604 13603 13506 Face 18819 9794 9911 9793 Face 18820 13791 13792 10094 Face 18821 21353 21446 21445 Face 18822 21352 21353 21445 Face 18823 30603 30697 30602 Face 18824 9708 9822 9707 Face 18825 8975 7725 8763 Face 18826 20280 20279 14896 Face 18827 4320 5510 770 Face 18828 10419 10542 10418 Face 18829 10060 10179 10059 Face 18830 10459 8948 8949 Face 18831 10185 10303 10184 Face 18832 9591 9706 9590 Face 18833 9591 9590 9477 Face 18834 7656 7657 7769 Face 18835 7879 7878 7769 Face 18836 7771 7770 7657 Face 18837 7658 7771 7657 Face 18838 8819 8818 8712 Face 18839 8713 8819 8712 Face 18840 9144 9143 9030 Face 18841 8923 8922 8818 Face 18842 9484 9483 9368 Face 18843 9031 9144 9030 Face 18844 9597 9596 9483 Face 18845 9369 9484 9368 Face 18846 9712 9711 9596 Face 18847 9484 9597 9483 Face 18848 7530 7531 7642 Face 18849 9597 9712 9596 Face 18850 9936 10052 10051 Face 18851 32138 32137 32033 Face 18852 6896 7003 6895 Face 18853 9935 9936 10051 Face 18854 10656 10780 10779 Face 18855 7110 7109 7002 Face 18856 7306 7416 7415 Face 18857 10655 10656 10779 Face 18858 9145 9258 9144 Face 18859 25846 29603 29605 Face 18860 34499 34442 34619 Face 18861 9261 9260 9147 Face 18862 9939 9938 9821 Face 18863 8703 8809 8808 Face 18864 2006 2007 9614 Face 18865 34434 34706 34455 Face 18866 11640 11719 11639 Face 18867 12046 12045 11960 Face 18868 23495 28438 23661 Face 18869 13189 11231 8570 Face 18870 38 98 12932 Face 18871 13787 8416 13786 Face 18872 11082 7511 13185 Face 18873 7511 13094 13185 Face 18874 11246 11321 11245 Face 18875 11321 11402 11320 Face 18876 8930 8929 8825 Face 18877 13432 13431 13337 Face 18878 34654 34761 34283 Face 18879 7682 7795 7681 Face 18880 27568 28154 27888 Face 18881 8116 8115 8010 Face 18882 1193 1194 1301 Face 18883 6512 7724 4090 Face 18884 625 7198 7197 Face 18885 33301 6288 32650 Face 18886 10018 9620 10888 Face 18887 28521 28522 28656 Face 18888 24506 19225 24367 Face 18889 7523 7635 7522 Face 18890 9083 7611 9064 Face 18891 8173 8277 8276 Face 18892 7596 7917 8942 Face 18893 9558 9083 9064 Face 18894 10702 8213 9521 Face 18895 13277 9521 9407 Face 18896 7736 8020 8213 Face 18897 10702 7736 8213 Face 18898 7283 7270 8020 Face 18899 7736 7283 8020 Face 18900 7742 9297 7270 Face 18901 7283 7742 7270 Face 18902 8242 10229 9297 Face 18903 7742 8242 9297 Face 18904 9628 7839 10229 Face 18905 8242 9628 10229 Face 18906 30528 30527 25579 Face 18907 13382 12751 9169 Face 18908 10442 10685 8878 Face 18909 10760 10761 10882 Face 18910 33498 33497 33364 Face 18911 9258 9257 9144 Face 18912 9497 9610 9496 Face 18913 11059 32304 30624 Face 18914 5600 9506 15642 Face 18915 10793 10915 10914 Face 18916 1553 7887 1439 Face 18917 20446 20447 33193 Face 18918 7599 872 7600 Face 18919 34280 34594 13574 Face 18920 5840 15614 5841 Face 18921 12676 13394 3029 Face 18922 3282 9563 9678 Face 18923 2036 26218 20894 Face 18924 26218 27501 28132 Face 18925 14533 32419 32535 Face 18926 29580 29579 29448 Face 18927 29062 19199 18683 Face 18928 18683 19199 27050 Face 18929 6750 6851 6850 Face 18930 6749 6750 6850 Face 18931 6851 6955 6954 Face 18932 6850 6851 6954 Face 18933 6955 7064 7063 Face 18934 6954 6955 7063 Face 18935 7064 489 7063 Face 18936 489 7171 7063 Face 18937 2490 1318 4333 Face 18938 8863 6001 8574 Face 18939 9032 9031 8923 Face 18940 26337 11326 26220 Face 18941 14292 10081 14291 Face 18942 8485 8486 8584 Face 18943 9035 9148 9034 Face 18944 10668 10669 10792 Face 18945 8683 8789 8788 Face 18946 4082 1317 7049 Face 18947 9155 7470 10250 Face 18948 10879 10878 10756 Face 18949 10757 10879 10756 Face 18950 10513 10633 10512 Face 18951 10633 10757 10756 Face 18952 458 566 457 Face 18953 10390 10513 10389 Face 18954 34498 34482 34564 Face 18955 2008 2133 8415 Face 18956 6681 33540 33541 Face 18957 7212 7317 7211 Face 18958 8961 8856 7492 Face 18959 31585 31584 31475 Face 18960 28555 26218 28132 Face 18961 19580 17087 16994 Face 18962 8878 9329 6628 Face 18963 27501 28301 18360 Face 18964 13189 13190 12931 Face 18965 4999 9282 7692 Face 18966 2928 2927 7664 Face 18967 12575 12665 12664 Face 18968 8124 9904 10680 Face 18969 9968 9977 10830 Face 18970 34332 34378 34374 Face 18971 8138 10082 9965 Face 18972 7473 6840 9509 Face 18973 11854 11937 98 Face 18974 10217 6840 7473 Face 18975 10216 10217 7473 Face 18976 8652 10217 10216 Face 18977 6840 9510 9509 Face 18978 10469 10590 9509 Face 18979 8651 8652 10216 Face 18980 11886 11970 11885 Face 18981 9510 10469 9509 Face 18982 9739 7894 9669 Face 18983 11686 13654 13299 Face 18984 8301 8302 8404 Face 18985 8405 8505 8504 Face 18986 6683 6779 6778 Face 18987 8204 8203 8097 Face 18988 8611 8610 8511 Face 18989 8512 8611 8511 Face 18990 7896 1672 1671 Face 18991 9608 9607 9494 Face 18992 873 872 7599 Face 18993 7745 3297 4989 Face 18994 10632 10633 10756 Face 18995 10390 10389 10267 Face 18996 10633 10632 10512 Face 18997 10268 10390 10267 Face 18998 8386 8486 8485 Face 18999 8005 8006 8110 Face 19000 9991 1898 7182 Face 19001 9488 9487 9372 Face 19002 10297 10296 10178 Face 19003 8309 8308 8204 Face 19004 10303 10302 10184 Face 19005 9830 9829 9715 Face 19006 9478 9591 9477 Face 19007 8091 8092 8197 Face 19008 7770 7879 7769 Face 19009 7986 7985 7878 Face 19010 7546 7545 7434 Face 19011 7435 7546 7434 Face 19012 8819 8923 8818 Face 19013 8923 9031 9030 Face 19014 155 6938 6939 Face 19015 677 7474 678 Face 19016 7660 7659 7547 Face 19017 10590 10120 10468 Face 19018 9865 10863 7888 Face 19019 7437 7548 7436 Face 19020 9601 9600 9487 Face 19021 9488 9601 9487 Face 19022 9826 9825 9711 Face 19023 9853 9865 7888 Face 19024 6682 6683 6778 Face 19025 9712 9826 9711 Face 19026 11454 11686 13299 Face 19027 13394 12113 13121 Face 19028 10422 10545 10421 Face 19029 6779 6878 6877 Face 19030 19981 17630 17629 Face 19031 10484 7137 2235 Face 19032 1413 1414 1527 Face 19033 11063 11062 11017 Face 19034 9148 9261 9147 Face 19035 9723 9722 9607 Face 19036 7899 8006 8005 Face 19037 7898 7899 8005 Face 19038 10513 10512 10389 Face 19039 34532 34460 34662 Face 19040 11018 11063 11017 Face 19041 276 4600 756 Face 19042 11186 11123 11124 Face 19043 24419 23148 24287 Face 19044 4989 3297 5469 Face 19045 8517 4212 5124 Face 19046 34695 34348 34457 Face 19047 13664 13570 13185 Face 19048 8482 8581 8580 Face 19049 30569 30568 30483 Face 19050 8278 8279 8381 Face 19051 8481 8482 8580 Face 19052 8382 8482 8481 Face 19053 8381 8382 8481 Face 19054 7635 7634 7522 Face 19055 8580 8581 8683 Face 19056 8507 8606 8506 Face 19057 6165 33301 6164 Face 19058 8949 8948 8832 Face 19059 10932 4201 1228 Face 19060 10481 8343 10561 Face 19061 8501 8600 8500 Face 19062 7748 7747 7634 Face 19063 6788 6887 6886 Face 19064 28132 27501 18360 Face 19065 7635 7748 7634 Face 19066 7531 7643 7642 Face 19067 21157 21067 21068 Face 19068 8137 10702 9520 Face 19069 4725 9520 9521 Face 19070 9895 7736 10702 Face 19071 8137 9895 10702 Face 19072 7284 7283 7736 Face 19073 9895 7284 7736 Face 19074 7514 7742 7283 Face 19075 7284 7514 7283 Face 19076 7514 8164 8242 Face 19077 7742 7514 8242 Face 19078 8164 9629 9628 Face 19079 8242 8164 9628 Face 19080 34768 34731 34792 Face 19081 29764 22709 29763 Face 19082 6965 392 391 Face 19083 32964 33098 32963 Face 19084 9145 9144 9031 Face 19085 9032 9145 9031 Face 19086 8068 8067 7962 Face 19087 9608 9723 9607 Face 19088 7676 7677 7789 Face 19089 7790 7899 7898 Face 19090 1755 15908 2587 Face 19091 10149 10148 10029 Face 19092 199 20174 1786 Face 19093 34298 34276 34444 Face 19094 12751 1083 2007 Face 19095 9169 12751 2007 Face 19096 23670 23657 23394 Face 19097 24773 24866 23813 Face 19098 28301 44 26209 Face 19099 18360 28301 26209 Face 19100 32958 33092 32957 Face 19101 17142 18430 18634 Face 19102 6849 6748 6749 Face 19103 30410 30409 30342 Face 19104 6751 6852 6851 Face 19105 6750 6751 6851 Face 19106 6852 6956 6955 Face 19107 6851 6852 6955 Face 19108 6956 7065 7064 Face 19109 6955 6956 7064 Face 19110 7597 7708 1092 Face 19111 490 489 7064 Face 19112 23387 24343 20846 Face 19113 7012 9095 9286 Face 19114 7994 7993 7886 Face 19115 8924 9032 8923 Face 19116 8385 8386 8485 Face 19117 4190 4063 8661 Face 19118 7565 7677 7564 Face 19119 7677 7790 7789 Face 19120 10030 10149 10029 Face 19121 7677 7676 7564 Face 19122 9797 9914 9796 Face 19123 10030 10029 9913 Face 19124 9683 9797 9682 Face 19125 9914 10030 9913 Face 19126 9567 9568 9682 Face 19127 9914 9913 9796 Face 19128 9454 9455 9567 Face 19129 9797 9796 9682 Face 19130 6144 10764 10640 Face 19131 9915 10031 9914 Face 19132 2716 9269 9268 Face 19133 12115 3435 12831 Face 19134 7788 7897 7896 Face 19135 11646 11725 11645 Face 19136 7563 7675 7562 Face 19137 7788 7787 7674 Face 19138 10908 10909 8236 Face 19139 7675 7788 7674 Face 19140 8283 8284 8386 Face 19141 10379 8828 8829 Face 19142 6628 4999 7692 Face 19143 9282 10572 10506 Face 19144 12575 12574 12485 Face 19145 7692 9282 10506 Face 19146 12216 12305 12304 Face 19147 13604 13697 13696 Face 19148 10805 9409 10360 Face 19149 12305 12396 12395 Face 19150 12055 12054 11969 Face 19151 10680 10805 10360 Face 19152 11176 11175 11113 Face 19153 11805 11886 11804 Face 19154 8702 8701 8598 Face 19155 11970 11969 11885 Face 19156 9815 9932 9814 Face 19157 8599 8702 8598 Face 19158 9932 9931 9814 Face 19159 10048 10047 9931 Face 19160 8599 8598 8499 Face 19161 8500 8599 8499 Face 19162 10135 10852 9212 Face 19163 10584 10135 9212 Face 19164 6778 6779 6877 Face 19165 8916 8915 8811 Face 19166 8198 8302 8301 Face 19167 8197 8198 8301 Face 19168 8098 8204 8097 Face 19169 8308 8307 8203 Face 19170 8309 8412 8308 Face 19171 8512 8511 8411 Face 19172 9495 9608 9494 Face 19173 30208 30273 30207 Face 19174 26099 26100 27391 Face 19175 18799 18457 16706 Face 19176 9568 9683 9682 Face 19177 10150 10149 10030 Face 19178 10031 10150 10030 Face 19179 10357 10480 9097 Face 19180 34310 34401 34534 Face 19181 12820 4472 15043 Face 19182 9373 9488 9372 Face 19183 20719 13276 22718 Face 19184 7994 8099 7993 Face 19185 10877 10996 7927 Face 19186 9716 9830 9715 Face 19187 8205 8204 8098 Face 19188 8092 8091 7986 Face 19189 8511 8510 8410 Face 19190 7879 7986 7878 Face 19191 7987 8092 7986 Face 19192 7435 7434 7324 Face 19193 7325 7435 7324 Face 19194 8922 8923 9030 Face 19195 9257 9256 9143 Face 19196 9812 9813 9929 Face 19197 10046 10045 9929 Face 19198 7642 7755 7754 Face 19199 18606 5456 17320 Face 19200 11646 11645 11567 Face 19201 10531 10652 10651 Face 19202 64 282 8038 Face 19203 8578 8577 8478 Face 19204 10303 10425 10302 Face 19205 7778 9436 8775 Face 19206 9943 9942 9825 Face 19207 10425 10424 10302 Face 19208 8829 6893 8123 Face 19209 9826 9943 9825 Face 19210 6893 10317 10560 Face 19211 9196 8829 8123 Face 19212 11931 13095 12006 Face 19213 8555 10799 10800 Face 19214 11399 11482 11398 Face 19215 6610 10011 14867 Face 19216 8619 10128 6134 Face 19217 11482 11481 11398 Face 19218 8006 8111 8110 Face 19219 24550 23699 23185 Face 19220 6984 6983 6877 Face 19221 7528 7640 7639 Face 19222 10959 9539 2360 Face 19223 23724 19314 24463 Face 19224 24366 24367 19225 Face 19225 12853 13388 2899 Face 19226 20273 20272 20190 Face 19227 25303 25360 23306 Face 19228 20112 20191 20190 Face 19229 10286 10287 10408 Face 19230 8581 8684 8683 Face 19231 10168 10169 10286 Face 19232 8041 7383 89 Face 19233 10050 10169 10049 Face 19234 10286 10408 10407 Face 19235 9816 9817 9933 Face 19236 10169 10287 10286 Face 19237 6878 6984 6877 Face 19238 10169 10168 10049 Face 19239 7091 7090 6983 Face 19240 6984 7091 6983 Face 19241 7091 7200 7199 Face 19242 7090 7091 7199 Face 19243 9934 10050 9933 Face 19244 7200 7305 7304 Face 19245 7857 7856 7747 Face 19246 9817 9934 9933 Face 19247 26209 44 28021 Face 19248 8684 8790 8789 Face 19249 9051 8137 9519 Face 19250 13299 9519 9520 Face 19251 9666 9895 8137 Face 19252 9051 9666 8137 Face 19253 7395 7284 9895 Face 19254 9666 7395 9895 Face 19255 9316 7514 7284 Face 19256 7395 9316 7284 Face 19257 10806 8164 7514 Face 19258 9316 10806 7514 Face 19259 10806 7144 9629 Face 19260 8164 10806 9629 Face 19261 9984 9081 10103 Face 19262 6416 6541 9081 Face 19263 9081 6541 10103 Face 19264 6416 9081 7153 Face 19265 9854 4214 5598 Face 19266 16371 530 16211 Face 19267 9837 9836 9722 Face 19268 7199 7200 7304 Face 19269 7789 7790 7898 Face 19270 9593 9592 9479 Face 19271 7305 7415 7414 Face 19272 7304 7305 7414 Face 19273 7526 7525 7414 Face 19274 6517 226 2669 Face 19275 12224 12225 12313 Face 19276 6982 7089 516 Face 19277 12183 8748 22730 Face 19278 22602 14809 22601 Face 19279 28021 23119 28091 Face 19280 23553 25455 25521 Face 19281 32372 32371 32265 Face 19282 31490 31489 31385 Face 19283 6657 6752 6751 Face 19284 26904 6749 11382 Face 19285 6752 6853 6852 Face 19286 6751 6752 6852 Face 19287 6853 6957 6956 Face 19288 6852 6853 6956 Face 19289 7066 7065 6956 Face 19290 6957 7066 6956 Face 19291 205 4720 488 Face 19292 13490 8256 9326 Face 19293 1633 8271 1742 Face 19294 3044 3169 10878 Face 19295 10791 10913 10912 Face 19296 10790 10791 10912 Face 19297 8401 8402 8501 Face 19298 9235 9347 9346 Face 19299 8893 8894 9001 Face 19300 7415 7526 7414 Face 19301 7638 7637 7525 Face 19302 7526 7638 7525 Face 19303 7751 7750 7637 Face 19304 7446 8237 8470 Face 19305 9339 9340 9454 Face 19306 8279 8278 8174 Face 19307 8175 8279 8174 Face 19308 7352 7912 7739 Face 19309 7344 7343 7236 Face 19310 7904 7903 7794 Face 19311 9148 9147 9034 Face 19312 7236 7235 32300 Face 19313 2377 2375 11771 Face 19314 11690 2377 11771 Face 19315 11172 11241 11171 Face 19316 13311 13219 13312 Face 19317 16721 5505 29738 Face 19318 7006 7005 6898 Face 19319 7006 7113 7005 Face 19320 7222 7221 7112 Face 19321 9944 9943 9826 Face 19322 11112 11111 31020 Face 19323 8236 10379 8829 Face 19324 10179 10297 10178 Face 19325 9113 9226 9225 Face 19326 8828 9076 6893 Face 19327 9232 9344 9343 Face 19328 11882 11881 11800 Face 19329 13406 13407 13501 Face 19330 2529 5637 4842 Face 19331 10290 10412 10289 Face 19332 9734 2529 4842 Face 19333 9409 8138 7519 Face 19334 10535 10534 10411 Face 19335 7937 8148 10729 Face 19336 10360 9409 7519 Face 19337 7106 7105 6998 Face 19338 34549 34315 34515 Face 19339 8808 8807 8701 Face 19340 7214 7215 7319 Face 19341 7638 7751 7637 Face 19342 8702 8808 8701 Face 19343 7751 7860 7859 Face 19344 7750 7751 7859 Face 19345 8474 7189 7510 Face 19346 7860 7967 7966 Face 19347 8694 8800 8693 Face 19348 7189 6719 7295 Face 19349 10135 7469 10369 Face 19350 8086 8192 8085 Face 19351 8812 8916 8811 Face 19352 13056 13150 13149 Face 19353 8302 8405 8404 Face 19354 8916 9024 9023 Face 19355 8204 8308 8203 Face 19356 2551 21263 20892 Face 19357 8412 8512 8411 Face 19358 8411 8410 8307 Face 19359 10996 10993 7927 Face 19360 8205 8309 8204 Face 19361 27390 27391 29085 Face 19362 6786 6885 6884 Face 19363 4735 10124 9869 Face 19364 7522 7634 7633 Face 19365 8991 9959 7081 Face 19366 8019 8337 8036 Face 19367 8011 8116 8010 Face 19368 8376 8377 8476 Face 19369 27394 29087 29086 Face 19370 9083 9310 7611 Face 19371 7643 7756 7755 Face 19372 10205 7188 10732 Face 19373 8099 8205 8098 Face 19374 7887 7994 7886 Face 19375 8411 8511 8410 Face 19376 8610 8609 8510 Face 19377 8092 8198 8197 Face 19378 7987 7986 7879 Face 19379 7607 8252 8148 Face 19380 9764 7607 8148 Face 19381 9144 9257 9143 Face 19382 9369 9368 9256 Face 19383 9509 9418 10463 Face 19384 7654 7767 7653 Face 19385 8699 8698 8595 Face 19386 9453 9454 9566 Face 19387 7795 7794 7681 Face 19388 9565 9566 9680 Face 19389 34792 34535 34796 Face 19390 7384 10376 6923 Face 19391 10365 7082 8059 Face 19392 6793 10459 10449 Face 19393 9911 9910 9793 Face 19394 8775 8776 6873 Face 19395 12486 12485 12395 Face 19396 6890 6889 6789 Face 19397 13338 13432 13337 Face 19398 12304 12305 12395 Face 19399 10085 10807 5496 Face 19400 11180 11249 11179 Face 19401 9629 7144 7376 Face 19402 13365 11204 4742 Face 19403 11563 11641 11562 Face 19404 12076 12075 11991 Face 19405 872 871 7600 Face 19406 11485 11484 11401 Face 19407 3667 10024 10023 Face 19408 22219 22315 22218 Face 19409 8100 7995 1663 Face 19410 13205 11768 11462 Face 19411 22411 22410 22314 Face 19412 18352 26452 27278 Face 19413 26452 27275 27278 Face 19414 19339 27698 21087 Face 19415 23871 2680 23872 Face 19416 26294 26412 26411 Face 19417 7859 7860 7966 Face 19418 10050 10049 9933 Face 19419 7967 8072 8071 Face 19420 7966 7967 8071 Face 19421 8072 8178 8177 Face 19422 7470 7734 10250 Face 19423 8071 8072 8177 Face 19424 8178 8282 8281 Face 19425 8177 8178 8281 Face 19426 8282 8385 8384 Face 19427 7510 7401 10250 Face 19428 8281 8282 8384 Face 19429 8683 8684 8789 Face 19430 6700 7472 10802 Face 19431 13654 9633 9519 Face 19432 8790 8894 8893 Face 19433 8637 9666 9051 Face 19434 10763 8637 9051 Face 19435 7729 7395 9666 Face 19436 8637 7729 9666 Face 19437 7515 9316 7395 Face 19438 7729 7515 7395 Face 19439 7515 10097 10806 Face 19440 9316 7515 10806 Face 19441 10097 7251 7144 Face 19442 10806 10097 7144 Face 19443 7251 7485 7376 Face 19444 7144 7251 7376 Face 19445 8040 10378 7376 Face 19446 7485 8040 7376 Face 19447 5639 10673 5510 Face 19448 183 36 1765 Face 19449 8385 8485 8484 Face 19450 10883 8555 9162 Face 19451 9955 9837 9838 Face 19452 8559 9535 8152 Face 19453 8974 1437 9765 Face 19454 9909 10025 10024 Face 19455 23774 25866 25867 Face 19456 10063 10062 9946 Face 19457 293 6768 294 Face 19458 11680 11082 13000 Face 19459 58 19553 19552 Face 19460 26293 26294 26411 Face 19461 14725 14905 19906 Face 19462 19885 2105 18586 Face 19463 11006 11048 27038 Face 19464 26682 26815 28282 Face 19465 33492 33619 33491 Face 19466 25882 11121 25777 Face 19467 6658 6753 6752 Face 19468 6656 6657 6751 Face 19469 6753 6854 6853 Face 19470 6752 6753 6853 Face 19471 6854 6958 6957 Face 19472 6853 6854 6957 Face 19473 168 2798 13030 Face 19474 33542 32754 21739 Face 19475 27697 27958 29582 Face 19476 4327 4326 4196 Face 19477 7911 8235 10679 Face 19478 7912 7911 10679 Face 19479 10913 10696 9770 Face 19480 10912 10913 9770 Face 19481 8651 8645 7277 Face 19482 16766 6733 34121 Face 19483 10370 9852 9623 Face 19484 10974 9733 10797 Face 19485 7869 7868 7759 Face 19486 7252 10617 7917 Face 19487 11647 11726 11646 Face 19488 6170 6171 6291 Face 19489 2878 2253 2128 Face 19490 7453 7565 7452 Face 19491 8894 9002 9001 Face 19492 7453 7452 7343 Face 19493 7344 7453 7343 Face 19494 7045 250 249 Face 19495 7565 7564 7452 Face 19496 24805 24902 22828 Face 19497 25778 25777 30623 Face 19498 9268 9267 9154 Face 19499 12026 13578 12467 Face 19500 9495 9494 9379 Face 19501 13585 13678 10069 Face 19502 9380 9379 9267 Face 19503 9380 9495 9379 Face 19504 9258 9370 9257 Face 19505 9268 9380 9267 Face 19506 10429 9964 9307 Face 19507 9827 9944 9826 Face 19508 32904 12531 12441 Face 19509 9110 2617 8997 Face 19510 10172 10171 10052 Face 19511 8653 10731 4843 Face 19512 10172 10290 10171 Face 19513 10053 10172 10052 Face 19514 10412 10535 10411 Face 19515 10412 10411 10289 Face 19516 13136 13135 13041 Face 19517 10656 10655 10534 Face 19518 10729 10594 10367 Face 19519 20042 20041 19964 Face 19520 6999 7106 6998 Face 19521 11882 11966 11881 Face 19522 8192 8191 8085 Face 19523 7215 7214 7105 Face 19524 7874 7981 7873 Face 19525 8086 8085 7980 Face 19526 9129 9128 9015 Face 19527 7981 8086 7980 Face 19528 10403 10526 10525 Face 19529 9016 9129 9015 Face 19530 10402 10403 10525 Face 19531 10526 10647 10646 Face 19532 9069 10243 9099 Face 19533 7290 9069 9099 Face 19534 10774 10773 10649 Face 19535 10678 10348 10325 Face 19536 13732 15577 14602 Face 19537 32362 32474 32361 Face 19538 8915 8916 9023 Face 19539 10171 10170 10051 Face 19540 3947 2900 34682 Face 19541 8384 8385 8484 Face 19542 8308 8411 8307 Face 19543 10059 10058 9942 Face 19544 8412 8411 8308 Face 19545 9226 9338 9337 Face 19546 10580 9508 5743 Face 19547 10696 7029 8231 Face 19548 10782 10783 10904 Face 19549 3561 7701 8350 Face 19550 10029 10028 9912 Face 19551 10102 10103 6541 Face 19552 12682 12681 12591 Face 19553 10691 10569 9400 Face 19554 33301 6165 6288 Face 19555 9852 10191 10556 Face 19556 9234 9235 9346 Face 19557 8540 8777 7585 Face 19558 8099 8098 7993 Face 19559 7887 7886 7777 Face 19560 8511 8610 8510 Face 19561 8713 8712 8609 Face 19562 7880 7987 7879 Face 19563 9269 16580 16581 Face 19564 7268 7607 9764 Face 19565 7269 7268 9764 Face 19566 9257 9369 9256 Face 19567 10541 10662 10540 Face 19568 7767 7766 7653 Face 19569 11478 11477 11394 Face 19570 2359 8679 8786 Face 19571 7029 8049 7352 Face 19572 1573 895 7509 Face 19573 9231 9232 9343 Face 19574 769 5633 304 Face 19575 8634 8633 12297 Face 19576 9535 8672 8152 Face 19577 8633 8632 12296 Face 19578 9999 9050 7477 Face 19579 7357 7446 6243 Face 19580 7784 9444 13793 Face 19581 8049 7911 7912 Face 19582 9982 9423 9083 Face 19583 10776 10898 10775 Face 19584 8731 2398 8626 Face 19585 34795 34645 34783 Face 19586 26903 26190 27015 Face 19587 21638 32201 32924 Face 19588 8897 8898 9005 Face 19589 8990 7293 7841 Face 19590 10517 4193 4194 Face 19591 5324 18565 5325 Face 19592 10798 4976 10799 Face 19593 11045 13675 11682 Face 19594 8739 8634 12389 Face 19595 1121 12990 12935 Face 19596 23576 28573 27154 Face 19597 12772 12771 12681 Face 19598 8485 8584 8583 Face 19599 12682 12772 12681 Face 19600 8484 8485 8583 Face 19601 8584 8687 8686 Face 19602 8583 8584 8686 Face 19603 8687 8793 8792 Face 19604 8686 8687 8792 Face 19605 11718 11800 11717 Face 19606 8793 8897 8896 Face 19607 8789 8790 8893 Face 19608 11487 11486 11403 Face 19609 8438 8637 10763 Face 19610 8553 8438 10763 Face 19611 10088 7729 8637 Face 19612 8438 10088 8637 Face 19613 10088 8168 7515 Face 19614 7729 10088 7515 Face 19615 8168 10562 10097 Face 19616 7515 8168 10097 Face 19617 7362 7251 10097 Face 19618 10562 7362 10097 Face 19619 7486 7485 7251 Face 19620 7362 7486 7251 Face 19621 8144 8040 7485 Face 19622 7486 8144 7485 Face 19623 7133 7024 6813 Face 19624 8144 10673 8040 Face 19625 10882 10883 9162 Face 19626 7380 183 2400 Face 19627 9295 9294 8978 Face 19628 8792 8793 8896 Face 19629 10144 10263 10262 Face 19630 402 297 298 Face 19631 8738 8739 8843 Face 19632 8447 7076 8545 Face 19633 8739 12479 8844 Face 19634 4972 8882 10578 Face 19635 3683 9181 148 Face 19636 11179 11178 11116 Face 19637 12865 12864 12771 Face 19638 12772 12865 12771 Face 19639 27495 25851 26446 Face 19640 28572 28274 18657 Face 19641 29466 23334 28421 Face 19642 33220 33356 33219 Face 19643 6659 6658 11285 Face 19644 25853 6658 6657 Face 19645 6754 6855 6854 Face 19646 6753 6754 6854 Face 19647 6855 6959 6958 Face 19648 6854 6855 6958 Face 19649 29965 30026 29964 Face 19650 1529 14148 1645 Face 19651 13498 13595 13594 Face 19652 8072 8073 8178 Face 19653 8235 10366 10309 Face 19654 10679 8235 10309 Face 19655 8865 8559 8972 Face 19656 7296 7288 10005 Face 19657 25562 8639 1382 Face 19658 7476 9999 7477 Face 19659 8843 8844 8946 Face 19660 7518 7517 10589 Face 19661 20029 20030 20111 Face 19662 11131 11130 11070 Face 19663 13507 13604 13506 Face 19664 8897 9005 9004 Face 19665 10153 10463 10139 Face 19666 22021 22119 22020 Face 19667 9366 9365 9253 Face 19668 8402 8502 8501 Face 19669 6689 6690 6785 Face 19670 9815 9816 9932 Face 19671 8714 8713 8610 Face 19672 7594 7593 10323 Face 19673 10060 10059 9943 Face 19674 8611 8714 8610 Face 19675 9827 9826 9712 Face 19676 9713 9827 9712 Face 19677 9713 9712 9597 Face 19678 9598 9713 9597 Face 19679 9485 9484 9369 Face 19680 9370 9485 9369 Face 19681 9598 9597 9484 Face 19682 9485 9598 9484 Face 19683 10216 7473 10153 Face 19684 7473 10463 10153 Face 19685 8917 9025 9024 Face 19686 8916 8917 9024 Face 19687 7434 7433 7323 Face 19688 10290 10289 10171 Face 19689 7324 7323 7218 Face 19690 7219 7324 7218 Face 19691 7003 7110 7002 Face 19692 7219 7218 7109 Face 19693 8896 8897 9004 Face 19694 7110 7219 7109 Face 19695 7106 7215 7105 Face 19696 9118 9117 9004 Face 19697 8910 8911 9018 Face 19698 7215 7320 7319 Face 19699 8189 8293 8292 Face 19700 9132 9131 9018 Face 19701 9242 9241 9128 Face 19702 8293 8396 8395 Face 19703 10989 10972 10204 Face 19704 9129 9242 9128 Face 19705 8848 10204 6872 Face 19706 8848 10989 10204 Face 19707 10892 7445 10891 Face 19708 7445 8848 6872 Face 19709 9087 9200 8127 Face 19710 6695 10808 8127 Face 19711 7273 9421 9438 Face 19712 8147 3043 7552 Face 19713 11723 11805 11722 Face 19714 13272 13271 12628 Face 19715 10052 10171 10051 Face 19716 10289 10288 10170 Face 19717 13231 13230 13135 Face 19718 13136 13231 13135 Face 19719 9943 10059 9942 Face 19720 10178 10177 10058 Face 19721 6997 6996 6890 Face 19722 11711 11793 11792 Face 19723 9770 10696 8231 Face 19724 10370 8341 9852 Face 19725 9784 8145 1769 Face 19726 741 7197 7302 Face 19727 10864 13161 15030 Face 19728 9005 9118 9004 Face 19729 9231 9230 9117 Face 19730 12957 12956 12864 Face 19731 9118 9231 9117 Face 19732 9690 9804 9803 Face 19733 22079 25300 25638 Face 19734 31276 31275 31174 Face 19735 10191 7850 7374 Face 19736 8610 8713 8609 Face 19737 12574 12664 12663 Face 19738 11966 11965 11881 Face 19739 10418 10417 10295 Face 19740 9650 7821 11361 Face 19741 34516 34499 34619 Face 19742 10786 10785 10661 Face 19743 10662 10786 10661 Face 19744 3053 8641 2511 Face 19745 10794 10670 10671 Face 19746 8231 7029 7352 Face 19747 3938 1905 181 Face 19748 6891 6997 6890 Face 19749 8029 6693 8133 Face 19750 9231 9343 9342 Face 19751 9230 9231 9342 Face 19752 9343 9458 9457 Face 19753 8909 8908 8804 Face 19754 9342 9343 9457 Face 19755 7352 8049 7912 Face 19756 8699 8805 8698 Face 19757 8950 10322 10321 Face 19758 10953 8018 8417 Face 19759 7316 7317 7426 Face 19760 9907 9203 8951 Face 19761 9398 7359 9059 Face 19762 10045 10164 10044 Face 19763 9418 9395 10395 Face 19764 10283 10405 10404 Face 19765 10361 9673 12537 Face 19766 8456 8541 7690 Face 19767 7058 7059 376 Face 19768 5111 10435 5235 Face 19769 12865 12957 12864 Face 19770 9888 9633 10618 Face 19771 9458 9571 9570 Face 19772 9457 9458 9570 Face 19773 9631 8314 8553 Face 19774 9583 9698 9697 Face 19775 10748 10310 6692 Face 19776 8537 8438 8553 Face 19777 10763 9051 9633 Face 19778 10471 10088 8438 Face 19779 8537 10471 8438 Face 19780 10492 8168 10088 Face 19781 10471 10492 10088 Face 19782 10492 7167 10562 Face 19783 8168 10492 10562 Face 19784 7361 7362 10562 Face 19785 7167 7361 10562 Face 19786 7601 7486 7362 Face 19787 7361 7601 7362 Face 19788 9309 8144 7486 Face 19789 7601 9309 7486 Face 19790 9443 10673 8144 Face 19791 9309 9443 8144 Face 19792 6283 11998 6591 Face 19793 12274 12295 12095 Face 19794 9571 9686 9685 Face 19795 8179 8283 8282 Face 19796 7818 9848 8672 Face 19797 7334 8677 8673 Face 19798 1570 8042 8970 Face 19799 2120 22774 7998 Face 19800 9570 9571 9685 Face 19801 9686 9800 9799 Face 19802 12811 10343 10125 Face 19803 10125 10343 9432 Face 19804 13047 13046 12956 Face 19805 12957 13047 12956 Face 19806 18873 26208 27155 Face 19807 18657 18873 27155 Face 19808 31869 31976 31868 Face 19809 31912 32017 32016 Face 19810 32768 33148 11298 Face 19811 28363 28092 27901 Face 19812 6755 6856 6855 Face 19813 6754 6755 6855 Face 19814 6856 6960 6959 Face 19815 6855 6856 6959 Face 19816 13141 13140 13046 Face 19817 465 464 7263 Face 19818 7925 10080 9977 Face 19819 7860 7861 7967 Face 19820 10366 9737 9736 Face 19821 8681 8787 8786 Face 19822 10306 13773 10428 Face 19823 6173 6174 6293 Face 19824 9685 9686 9799 Face 19825 9917 9916 9799 Face 19826 9800 9917 9799 Face 19827 10033 10032 9916 Face 19828 9609 9608 9495 Face 19829 9228 9340 9339 Face 19830 10309 10366 9736 Face 19831 10463 10395 10139 Face 19832 8820 8924 8819 Face 19833 9737 8341 10370 Face 19834 8820 8819 8713 Face 19835 8714 8820 8713 Face 19836 7989 7988 7881 Face 19837 8924 8923 8819 Face 19838 10193 8336 9853 Face 19839 8336 9865 9853 Face 19840 7654 7653 7541 Face 19841 7773 7882 7772 Face 19842 8415 2133 8516 Face 19843 7542 7654 7541 Face 19844 34380 13657 11142 Face 19845 7777 7776 7663 Face 19846 5725 5726 5853 Face 19847 7886 7885 7776 Face 19848 7777 7886 7776 Face 19849 7993 7992 7885 Face 19850 8604 8707 8706 Face 19851 8603 8604 8706 Face 19852 8706 8812 8811 Face 19853 7324 7434 7323 Face 19854 10852 10135 10369 Face 19855 7469 7053 6943 Face 19856 9917 10033 9916 Face 19857 9097 8064 9155 Face 19858 9132 9245 9131 Face 19859 10152 10151 10032 Face 19860 9019 9132 9018 Face 19861 9245 9357 9356 Face 19862 7977 7978 8082 Face 19863 9245 9244 9131 Face 19864 6988 7095 6987 Face 19865 8188 8189 8292 Face 19866 7095 7094 6987 Face 19867 8796 8900 8795 Face 19868 10277 10278 10399 Face 19869 6782 6783 6881 Face 19870 10400 10523 10522 Face 19871 10399 10400 10522 Face 19872 10279 10401 10400 Face 19873 10278 10279 10400 Face 19874 8000 6695 8127 Face 19875 7290 9099 10808 Face 19876 10348 7273 9438 Face 19877 7942 8753 9421 Face 19878 12087 12006 8770 Face 19879 11231 13189 12931 Face 19880 10171 10289 10170 Face 19881 10411 10410 10288 Face 19882 26176 26294 26293 Face 19883 10289 10411 10288 Face 19884 10059 10178 10058 Face 19885 12274 2749 12295 Face 19886 9112 9113 9225 Face 19887 10296 10295 10177 Face 19888 9967 7850 10191 Face 19889 10506 7366 7364 Face 19890 8541 9059 7690 Face 19891 9852 9967 10191 Face 19892 9227 9228 9339 Face 19893 9381 9496 9380 Face 19894 9115 9228 9227 Face 19895 9114 9115 9227 Face 19896 9002 9115 9114 Face 19897 9268 9154 2716 Face 19898 9496 9495 9380 Face 19899 7438 991 1104 Face 19900 7374 7382 8762 Face 19901 5637 1215 6260 Face 19902 10249 10258 7925 Face 19903 10296 10418 10295 Face 19904 10541 10540 10417 Face 19905 12269 11364 12182 Face 19906 8252 7145 10594 Face 19907 10786 10908 10907 Face 19908 8447 8545 10554 Face 19909 7377 8939 6944 Face 19910 10785 10786 10907 Face 19911 8762 7382 6391 Face 19912 12540 12628 12095 Face 19913 7641 7642 7754 Face 19914 7855 7962 7961 Face 19915 9001 9002 9114 Face 19916 4327 10397 10521 Face 19917 10033 10152 10032 Face 19918 10271 10270 10151 Face 19919 6782 6881 6880 Face 19920 10152 10271 10151 Face 19921 10548 10669 10668 Face 19922 10547 10548 10668 Face 19923 10393 10392 10270 Face 19924 10271 10393 10270 Face 19925 10516 10515 10392 Face 19926 10393 10516 10392 Face 19927 10636 10635 10515 Face 19928 10516 10636 10515 Face 19929 11487 11565 11486 Face 19930 9261 9373 9260 Face 19931 29087 19094 19093 Face 19932 11491 11490 11407 Face 19933 13047 13141 13046 Face 19934 13236 13235 13140 Face 19935 9630 13771 10845 Face 19936 8368 8314 9630 Face 19937 34587 34324 34670 Face 19938 7845 8537 8314 Face 19939 8368 7845 8314 Face 19940 7557 10471 8537 Face 19941 7845 7557 8537 Face 19942 10491 10492 10471 Face 19943 7557 10491 10471 Face 19944 10491 9866 7167 Face 19945 10492 10491 7167 Face 19946 9866 7179 7361 Face 19947 7167 9866 7361 Face 19948 7055 7601 7361 Face 19949 7179 7055 7361 Face 19950 7055 9197 9309 Face 19951 7601 7055 9309 Face 19952 10371 9443 9309 Face 19953 9197 10371 9309 Face 19954 9569 9684 9683 Face 19955 770 6414 4321 Face 19956 8178 8179 8282 Face 19957 34449 34401 27901 Face 19958 9021 9134 9133 Face 19959 10933 7692 10450 Face 19960 1113 7447 1224 Face 19961 10198 7472 10898 Face 19962 10760 10759 10635 Face 19963 9373 9372 9260 Face 19964 10636 10760 10635 Face 19965 11117 11116 11057 Face 19966 13141 13236 13140 Face 19967 13329 13328 13235 Face 19968 2689 2688 24594 Face 19969 21072 28227 28089 Face 19970 27361 24035 28163 Face 19971 6661 6756 6755 Face 19972 6660 6754 6659 Face 19973 6756 6857 6856 Face 19974 6755 6756 6856 Face 19975 6857 6961 6960 Face 19976 6856 6857 6960 Face 19977 14891 21117 12705 Face 19978 15469 15332 15333 Face 19979 10545 10546 10666 Face 19980 7639 7752 7751 Face 19981 10558 7941 8337 Face 19982 8019 10558 8337 Face 19983 9838 9837 9723 Face 19984 9724 9838 9723 Face 19985 10760 10882 10881 Face 19986 10759 10760 10881 Face 19987 9455 9568 9567 Face 19988 9325 8635 10119 Face 19989 9496 9609 9495 Face 19990 8279 8382 8381 Face 19991 9736 9737 10370 Face 19992 9724 9723 9608 Face 19993 1229 6628 10933 Face 19994 8341 9967 9852 Face 19995 7410 9325 3560 Face 19996 9740 6979 7386 Face 19997 8098 8097 7992 Face 19998 7886 7993 7885 Face 19999 8404 8405 8504 Face 20000 7993 8098 7992 Face 20001 9363 9478 9362 Face 20002 8505 8604 8603 Face 20003 9250 9251 9362 Face 20004 9478 9477 9362 Face 20005 9138 9251 9250 Face 20006 9137 9138 9250 Face 20007 9025 9138 9137 Face 20008 9251 9363 9362 Face 20009 8813 8917 8916 Face 20010 9024 9025 9137 Face 20011 8813 8812 8706 Face 20012 8812 8813 8916 Face 20013 8503 8504 8602 Face 20014 8707 8813 8706 Face 20015 10369 7469 6943 Face 20016 8705 8706 8811 Face 20017 9699 9700 9813 Face 20018 7053 10848 10603 Face 20019 9585 9700 9699 Face 20020 9584 9585 9699 Face 20021 7649 7648 7536 Face 20022 9700 9814 9813 Face 20023 7537 7649 7536 Face 20024 7762 7761 7648 Face 20025 8083 8189 8188 Face 20026 8082 8083 8188 Face 20027 7418 7419 7529 Face 20028 6783 6882 6881 Face 20029 9808 9925 9924 Face 20030 9694 9808 9807 Face 20031 1231 2667 13292 Face 20032 10644 10643 10522 Face 20033 8290 8289 8185 Face 20034 8186 8290 8185 Face 20035 10041 10042 10160 Face 20036 10279 10278 10160 Face 20037 10235 9200 9087 Face 20038 6695 7290 10808 Face 20039 7273 7942 9421 Face 20040 3043 7590 7552 Face 20041 10868 13031 9730 Face 20042 21736 21735 21639 Face 20043 3435 13379 13279 Face 20044 12006 12262 8770 Face 20045 10534 10533 10410 Face 20046 10778 10779 10900 Face 20047 13112 7619 12474 Face 20048 34426 34789 26189 Face 20049 10178 10296 10177 Face 20050 12670 14840 12669 Face 20051 8564 8878 1229 Face 20052 6628 7692 10933 Face 20053 7850 7382 7374 Face 20054 29319 27694 28299 Face 20055 20043 20044 20125 Face 20056 11478 11479 11556 Face 20057 7634 7747 7633 Face 20058 8930 9038 8929 Face 20059 7795 7904 7794 Face 20060 10124 8991 7081 Face 20061 6899 7006 6898 Face 20062 7113 7112 7005 Face 20063 10897 10898 6700 Face 20064 10882 9162 7363 Face 20065 10080 9978 9977 Face 20066 9960 9961 10564 Face 20067 10418 10541 10417 Face 20068 10662 10661 10540 Face 20069 8148 8252 10594 Face 20070 12576 12666 12665 Face 20071 8709 8708 8605 Face 20072 10411 10534 10410 Face 20073 10908 8236 9429 Face 20074 10055 10174 10054 Face 20075 11614 12809 13112 Face 20076 10907 10908 9429 Face 20077 9243 9242 9129 Face 20078 8722 8729 10249 Face 20079 9381 9380 9268 Face 20080 8059 7082 8270 Face 20081 8276 8379 8378 Face 20082 6781 6782 6880 Face 20083 8220 8219 8115 Face 20084 10912 9770 7074 Face 20085 25866 23774 25976 Face 20086 17819 432 431 Face 20087 9082 1904 3183 Face 20088 1904 1118 2529 Face 20089 10658 10782 10781 Face 20090 8480 8481 8579 Face 20091 9360 9359 9247 Face 20092 181 3797 3938 Face 20093 15593 2150 14203 Face 20094 10918 5490 5364 Face 20095 18318 24558 24557 Face 20096 11726 11725 11646 Face 20097 13236 13329 13235 Face 20098 13423 13422 13328 Face 20099 30145 30146 30209 Face 20100 9575 9690 9689 Face 20101 9075 7845 8368 Face 20102 7699 9075 8368 Face 20103 7816 7557 7845 Face 20104 9075 7816 7845 Face 20105 7516 10491 7557 Face 20106 7816 7516 7557 Face 20107 10581 9866 10491 Face 20108 7516 10581 10491 Face 20109 10581 9515 7179 Face 20110 9866 10581 7179 Face 20111 7164 7055 7179 Face 20112 9515 7164 7179 Face 20113 9768 9197 7055 Face 20114 7164 9768 7055 Face 20115 7396 10371 9197 Face 20116 9768 7396 9197 Face 20117 2260 8618 8617 Face 20118 7396 7505 10371 Face 20119 5111 5235 5234 Face 20120 1894 1778 1779 Face 20121 7692 10506 10450 Face 20122 6985 7092 6984 Face 20123 8681 8680 8577 Face 20124 21544 21545 6604 Face 20125 4023 25026 25027 Face 20126 15583 15726 14421 Face 20127 8018 10449 8417 Face 20128 10657 10658 10781 Face 20129 13329 13423 13328 Face 20130 10881 10882 7363 Face 20131 9765 760 8028 Face 20132 25841 25950 25840 Face 20133 25639 25741 25740 Face 20134 34153 6662 6661 Face 20135 6661 6660 34153 Face 20136 6757 6858 6857 Face 20137 6756 6757 6857 Face 20138 6858 6962 6961 Face 20139 6857 6858 6961 Face 20140 34629 34700 34800 Face 20141 25638 25639 25740 Face 20142 10423 10422 10300 Face 20143 10183 10301 10182 Face 20144 9796 9913 9795 Face 20145 9059 7359 7248 Face 20146 10638 4450 10762 Face 20147 10389 10388 10266 Face 20148 4443 4444 4573 Face 20149 9609 9724 9608 Face 20150 7789 7898 7788 Face 20151 8004 1779 1778 Face 20152 8005 8004 7897 Face 20153 7898 8005 7897 Face 20154 2234 5625 5749 Face 20155 10651 10652 10775 Face 20156 10422 10423 10545 Face 20157 10546 10667 10666 Face 20158 8894 8895 9002 Face 20159 8895 9003 9002 Face 20160 7521 7522 7633 Face 20161 10514 10513 10390 Face 20162 6262 7893 13782 Face 20163 8504 8505 8603 Face 20164 7986 8091 8090 Face 20165 7985 7986 8090 Face 20166 8090 8091 8196 Face 20167 8091 8197 8196 Face 20168 8403 8404 8503 Face 20169 8197 8301 8300 Face 20170 8196 8197 8300 Face 20171 8301 8404 8403 Face 20172 8300 8301 8403 Face 20173 8404 8504 8503 Face 20174 8603 8706 8705 Face 20175 8504 8603 8602 Face 20176 6943 7053 10603 Face 20177 8602 8603 8705 Face 20178 10406 10405 10283 Face 20179 10848 7615 8676 Face 20180 2488 2359 8890 Face 20181 10529 10650 10528 Face 20182 7649 7762 7648 Face 20183 6995 6994 6888 Face 20184 11697 11698 11220 Face 20185 7871 7870 7761 Face 20186 11320 11401 11319 Face 20187 11680 13000 12908 Face 20188 6411 100 7288 Face 20189 6016 12718 2913 Face 20190 9156 6005 7259 Face 20191 11800 11799 11717 Face 20192 9693 9694 9807 Face 20193 9466 9579 9465 Face 20194 6691 6787 6786 Face 20195 6690 6691 6786 Face 20196 8186 8185 8079 Face 20197 8080 8186 8079 Face 20198 10161 10279 10160 Face 20199 10401 10524 10523 Face 20200 10116 10235 9087 Face 20201 9200 8000 8127 Face 20202 7590 9156 9078 Face 20203 7552 7590 9078 Face 20204 9078 9156 7259 Face 20205 8233 1081 1082 Face 20206 9894 7890 13011 Face 20207 9086 1799 9436 Face 20208 10901 9204 7943 Face 20209 10900 10901 7943 Face 20210 12222 12311 12310 Face 20211 12221 12222 12310 Face 20212 14840 12668 12669 Face 20213 20990 20725 22605 Face 20214 10442 8878 8564 Face 20215 10564 10442 8564 Face 20216 26318 26319 26435 Face 20217 13137 13136 13042 Face 20218 7789 7788 7675 Face 20219 7676 7789 7675 Face 20220 9248 9360 9247 Face 20221 32406 21639 21638 Face 20222 2748 8992 2238 Face 20223 7452 7564 7451 Face 20224 376 485 375 Face 20225 885 32631 7230 Face 20226 7676 7675 7563 Face 20227 10317 9961 9960 Face 20228 517 8657 7477 Face 20229 8123 6893 10560 Face 20230 10560 10317 9960 Face 20231 13763 7488 13772 Face 20232 9162 10800 10801 Face 20233 10534 10655 10654 Face 20234 13182 13089 11205 Face 20235 9822 9939 9821 Face 20236 10533 10534 10654 Face 20237 8236 8829 9196 Face 20238 9966 1856 6383 Face 20239 10258 10080 7925 Face 20240 9429 8236 9196 Face 20241 7363 9162 10801 Face 20242 7364 7366 8722 Face 20243 7094 7093 6986 Face 20244 19536 19535 22872 Face 20245 10669 10793 10792 Face 20246 8021 9174 9173 Face 20247 10915 9653 9903 Face 20248 10914 10915 9903 Face 20249 7343 7452 7342 Face 20250 7564 7563 7451 Face 20251 7272 7384 6923 Face 20252 8556 10924 7472 Face 20253 8425 8524 2144 Face 20254 8486 8585 8584 Face 20255 10828 10555 7586 Face 20256 8216 2019 2018 Face 20257 12225 12314 12313 Face 20258 13518 13517 13422 Face 20259 13423 13518 13422 Face 20260 6779 6780 6878 Face 20261 8904 9012 8903 Face 20262 6889 6888 6789 Face 20263 9012 9011 8903 Face 20264 6924 7816 9075 Face 20265 9291 6924 9075 Face 20266 8744 7516 7816 Face 20267 6924 8744 7816 Face 20268 10014 10581 7516 Face 20269 8744 10014 7516 Face 20270 9516 9515 10581 Face 20271 10014 9516 10581 Face 20272 7713 7164 9515 Face 20273 9516 7713 9515 Face 20274 9655 9768 7164 Face 20275 7713 9655 7164 Face 20276 9655 7498 7396 Face 20277 9768 9655 7396 Face 20278 7360 7505 7396 Face 20279 7498 7360 7396 Face 20280 29050 29181 29049 Face 20281 7360 10101 7505 Face 20282 7092 7201 7200 Face 20283 6968 394 6967 Face 20284 7231 7337 7336 Face 20285 10423 10546 10545 Face 20286 7738 10241 14037 Face 20287 7230 7231 7336 Face 20288 7159 7266 9198 Face 20289 7452 7451 7342 Face 20290 8893 9001 9000 Face 20291 12355 10361 12537 Face 20292 10800 10073 8746 Face 20293 9006 9119 9118 Face 20294 26292 26293 26410 Face 20295 9642 20867 22764 Face 20296 16668 26356 26763 Face 20297 30083 30084 30145 Face 20298 6758 6859 6858 Face 20299 6756 6662 6757 Face 20300 6859 6963 6962 Face 20301 6858 6859 6962 Face 20302 10070 4981 4848 Face 20303 7510 7849 7401 Face 20304 9630 13768 12722 Face 20305 34783 3170 34571 Face 20306 10925 9059 7248 Face 20307 10165 10164 10045 Face 20308 25860 25971 25970 Face 20309 7343 7342 7235 Face 20310 8231 7352 8333 Face 20311 7235 7234 32405 Face 20312 8507 8506 8406 Face 20313 9340 9455 9454 Face 20314 10965 1883 18261 Face 20315 29012 29062 18683 Face 20316 10046 10165 10045 Face 20317 13949 11453 11620 Face 20318 9948 9947 9830 Face 20319 9948 10064 9947 Face 20320 9831 9948 9830 Face 20321 10064 10063 9947 Face 20322 7747 7746 7633 Face 20323 7497 7492 10429 Face 20324 11216 6998 6891 Face 20325 11637 11636 11558 Face 20326 6698 122 775 Face 20327 8947 9965 10811 Face 20328 14872 9846 1924 Face 20329 5853 5981 7146 Face 20330 7616 7726 7398 Face 20331 7507 6719 8474 Face 20332 12213 12214 12302 Face 20333 7398 7507 8474 Face 20334 7726 7507 7398 Face 20335 8474 6719 7189 Face 20336 10603 10848 8676 Face 20337 7615 7726 7616 Face 20338 10284 10406 10283 Face 20339 8676 7615 7616 Face 20340 6889 6995 6888 Face 20341 10529 10528 10405 Face 20342 13043 13042 12952 Face 20343 7102 7101 6994 Face 20344 12141 12226 12140 Face 20345 12226 12315 12314 Face 20346 9013 9012 8904 Face 20347 20811 16515 21655 Face 20348 9239 9238 9125 Face 20349 8905 9013 8904 Face 20350 9126 9239 9125 Face 20351 9351 9350 9238 Face 20352 9351 9466 9350 Face 20353 9579 9578 9465 Face 20354 9579 9694 9693 Face 20355 9578 9579 9693 Face 20356 6992 7099 7098 Face 20357 6991 6992 7098 Face 20358 7868 7975 7867 Face 20359 8080 8079 7974 Face 20360 10400 10401 10523 Face 20361 10645 10644 10523 Face 20362 8039 10235 10116 Face 20363 10623 8039 10116 Face 20364 7248 8039 10623 Face 20365 7142 7248 10623 Face 20366 6406 10992 7135 Face 20367 9203 8950 8951 Face 20368 1118 10601 2529 Face 20369 6633 26684 26541 Face 20370 9204 8124 7595 Face 20371 9086 7778 7808 Face 20372 21833 21832 21735 Face 20373 7943 9204 7595 Face 20374 22330 22044 22426 Face 20375 9624 9669 9510 Face 20376 8878 6628 1229 Face 20377 10174 10173 10054 Face 20378 27038 27047 25558 Face 20379 10301 10300 10182 Face 20380 7898 7897 7788 Face 20381 13615 13614 13517 Face 20382 10801 10800 8746 Face 20383 11110 10965 18261 Face 20384 245 1004 5759 Face 20385 13518 13615 13517 Face 20386 7760 7759 7646 Face 20387 7564 7676 7563 Face 20388 28252 28253 28386 Face 20389 10244 8670 7397 Face 20390 7725 7506 9882 Face 20391 9961 10442 10564 Face 20392 10667 10791 10790 Face 20393 17541 18260 23544 Face 20394 8899 9007 9006 Face 20395 13084 13178 12180 Face 20396 8956 7176 13746 Face 20397 10655 10779 10778 Face 20398 7595 8124 8228 Face 20399 9833 9832 9718 Face 20400 10654 10655 10778 Face 20401 8770 1425 11761 Face 20402 10174 10292 10173 Face 20403 8729 10258 10249 Face 20404 11797 11878 11796 Face 20405 7020 20710 20709 Face 20406 10450 10506 7364 Face 20407 23451 24226 23450 Face 20408 7019 7020 20709 Face 20409 26354 27692 26336 Face 20410 26085 26201 26200 Face 20411 26208 27495 29194 Face 20412 27732 27731 20699 Face 20413 13708 13707 13614 Face 20414 4185 10383 10507 Face 20415 9686 9687 9800 Face 20416 6486 1570 8758 Face 20417 13615 13708 13614 Face 20418 11251 11326 11250 Face 20419 13027 13802 13707 Face 20420 9156 9159 6005 Face 20421 12722 8368 9630 Face 20422 1790 1570 6487 Face 20423 13708 13027 13707 Face 20424 11597 9291 7699 Face 20425 8040 304 10378 Face 20426 8234 8744 6924 Face 20427 10368 8234 6924 Face 20428 10706 10014 8744 Face 20429 8234 10706 8744 Face 20430 10706 7621 9516 Face 20431 10014 10706 9516 Face 20432 7621 7165 7713 Face 20433 9516 7621 7713 Face 20434 10728 9655 7713 Face 20435 7165 10728 7713 Face 20436 8660 7498 9655 Face 20437 10728 8660 9655 Face 20438 9158 7360 7498 Face 20439 8660 9158 7498 Face 20440 8941 10101 7360 Face 20441 9158 8941 7360 Face 20442 11638 11637 11559 Face 20443 8941 10850 10101 Face 20444 10301 10423 10300 Face 20445 144 6926 6927 Face 20446 251 250 7046 Face 20447 10283 10282 10164 Face 20448 7497 8961 7492 Face 20449 13032 13033 13802 Face 20450 7043 7044 249 Face 20451 34445 34334 34568 Face 20452 13027 13032 13802 Face 20453 34714 27761 25792 Face 20454 13157 13252 13156 Face 20455 10517 10637 10516 Face 20456 13113 11386 13033 Face 20457 14623 1529 2003 Face 20458 29059 29058 28931 Face 20459 18453 18822 18357 Face 20460 16790 16725 16791 Face 20461 26435 26436 26553 Face 20462 6759 6860 6859 Face 20463 6758 6759 6859 Face 20464 6860 6964 6963 Face 20465 6859 6860 6963 Face 20466 392 6966 393 Face 20467 8207 8100 1663 Face 20468 8615 2258 8616 Face 20469 2259 8617 8616 Face 20470 10344 10087 8856 Face 20471 10755 10756 4576 Face 20472 24012 25846 29605 Face 20473 2133 2008 2009 Face 20474 2617 9110 2747 Face 20475 13032 13113 13033 Face 20476 7522 857 7412 Face 20477 34430 28548 26789 Face 20478 8578 8579 8681 Face 20479 9461 9462 9574 Face 20480 10405 10528 10527 Face 20481 8719 8825 8718 Face 20482 8929 8928 8824 Face 20483 9489 9602 9488 Face 20484 9717 9716 9601 Face 20485 17229 5587 18248 Face 20486 14027 7738 14037 Face 20487 8159 8263 8864 Face 20488 14283 9871 8249 Face 20489 9918 9917 9800 Face 20490 10811 6698 775 Face 20491 10166 10284 10165 Face 20492 10958 10959 9195 Face 20493 10046 10047 10165 Face 20494 10284 10283 10165 Face 20495 9931 10047 10046 Face 20496 9930 9931 10046 Face 20497 9931 9930 9813 Face 20498 10047 10166 10165 Face 20499 10406 10529 10405 Face 20500 9814 9931 9813 Face 20501 6995 7102 6994 Face 20502 10650 10649 10528 Face 20503 9341 9340 9228 Face 20504 7102 7211 7210 Face 20505 8393 8493 8392 Face 20506 8642 7467 7922 Face 20507 9126 9125 9012 Face 20508 8493 8592 8591 Face 20509 7533 7645 7532 Face 20510 9013 9126 9012 Face 20511 7423 7534 7422 Face 20512 7646 7645 7533 Face 20513 7312 7313 7422 Face 20514 7534 7646 7533 Face 20515 7208 7313 7207 Face 20516 7534 7533 7422 Face 20517 7208 7207 7098 Face 20518 7313 7423 7422 Face 20519 7099 7208 7098 Face 20520 7313 7312 7207 Face 20521 7868 7867 7758 Face 20522 7975 8080 7974 Face 20523 10524 10645 10523 Face 20524 10769 10768 10644 Face 20525 10645 10769 10644 Face 20526 10891 10890 10768 Face 20527 10134 10753 10686 Face 20528 10565 10134 10686 Face 20529 10606 9203 9907 Face 20530 9308 10606 9907 Face 20531 13000 13475 13381 Face 20532 12054 12141 12053 Face 20533 8060 9086 7808 Face 20534 12223 12224 12312 Face 20535 8124 10680 8228 Face 20536 8518 7577 9047 Face 20537 6840 6815 9510 Face 20538 9669 10469 9510 Face 20539 10537 10536 10413 Face 20540 32503 6898 6897 Face 20541 9374 9373 9261 Face 20542 9262 9374 9261 Face 20543 10244 10730 8670 Face 20544 8719 8718 8615 Face 20545 9310 9198 7611 Face 20546 10789 10790 10911 Face 20547 2396 8524 8525 Face 20548 13113 11948 10705 Face 20549 8401 8501 8400 Face 20550 11386 13113 10705 Face 20551 10024 10025 10143 Face 20552 8826 8825 8719 Face 20553 11948 6010 7781 Face 20554 8246 5235 10194 Face 20555 10666 10667 10790 Face 20556 10183 10182 10063 Face 20557 34308 34630 34299 Face 20558 12640 176 7471 Face 20559 8956 12087 7176 Face 20560 11639 11718 11638 Face 20561 10680 10360 10483 Face 20562 8228 10680 10483 Face 20563 10779 10901 10900 Face 20564 8060 7808 10098 Face 20565 30623 30622 30534 Face 20566 5721 7842 5849 Face 20567 11878 11962 11877 Face 20568 10222 6815 6840 Face 20569 7366 8729 8722 Face 20570 8635 8869 10695 Face 20571 9831 9830 9716 Face 20572 9717 9831 9716 Face 20573 8825 8929 8824 Face 20574 9037 9036 8928 Face 20575 18860 20540 27825 Face 20576 5762 304 5756 Face 20577 7856 7855 7746 Face 20578 8600 8599 8500 Face 20579 11408 11407 11326 Face 20580 7091 7092 7200 Face 20581 19648 19647 19564 Face 20582 10705 11948 7781 Face 20583 34517 34340 34745 Face 20584 396 395 6969 Face 20585 7258 353 460 Face 20586 857 7522 7521 Face 20587 5126 6509 117 Face 20588 10544 10545 10665 Face 20589 7619 6975 8234 Face 20590 10368 9291 12474 Face 20591 6975 8471 10706 Face 20592 8234 6975 10706 Face 20593 8471 7390 7621 Face 20594 10706 8471 7621 Face 20595 7390 7823 7165 Face 20596 7621 7390 7165 Face 20597 10851 10728 7165 Face 20598 7823 10851 7165 Face 20599 8659 8660 10728 Face 20600 10851 8659 10728 Face 20601 8043 9158 8660 Face 20602 8659 8043 8660 Face 20603 8151 8941 9158 Face 20604 8043 8151 9158 Face 20605 9654 10850 8941 Face 20606 8151 9654 8941 Face 20607 12136 12221 12135 Face 20608 2518 8932 8827 Face 20609 1194 7746 7854 Face 20610 9602 9717 9601 Face 20611 27506 18822 18453 Face 20612 9263 9262 9149 Face 20613 9151 9150 9037 Face 20614 10025 10144 10143 Face 20615 9001 9114 9113 Face 20616 11808 11889 11807 Face 20617 25300 25639 25638 Face 20618 6010 1992 1991 Face 20619 5471 7919 8248 Face 20620 8398 8498 8497 Face 20621 4715 4586 4716 Face 20622 28156 17053 27887 Face 20623 27576 27575 27455 Face 20624 6665 6760 6759 Face 20625 6662 6664 6758 Face 20626 6760 6861 6860 Face 20627 6759 6760 6860 Face 20628 6861 6965 6964 Face 20629 6860 6861 6964 Face 20630 77 3034 78 Face 20631 5216 5217 15454 Face 20632 9490 9489 9374 Face 20633 9375 9490 9374 Face 20634 8910 9018 9017 Face 20635 7710 8882 3044 Face 20636 10494 9507 9970 Face 20637 10911 10912 7074 Face 20638 7229 6129 6001 Face 20639 10508 10628 10507 Face 20640 7298 10370 9623 Face 20641 22369 19267 19266 Face 20642 9795 9794 9680 Face 20643 9913 10029 9912 Face 20644 9718 9717 9602 Face 20645 9603 9718 9602 Face 20646 9489 9488 9373 Face 20647 9374 9489 9373 Face 20648 25660 24039 25661 Face 20649 26539 26655 26654 Face 20650 9572 9687 9686 Face 20651 8263 8249 8864 Face 20652 9801 9918 9800 Face 20653 10034 10033 9917 Face 20654 7275 8619 7264 Face 20655 7161 1082 6540 Face 20656 7405 7955 9306 Face 20657 9858 9857 9511 Face 20658 7425 7426 7536 Face 20659 7426 7537 7536 Face 20660 7316 7426 7425 Face 20661 7315 7316 7425 Face 20662 7101 7102 7210 Face 20663 7211 7316 7315 Face 20664 7446 6242 6243 Face 20665 7210 7211 7315 Face 20666 8492 8493 8591 Face 20667 7815 7922 7383 Face 20668 7867 7866 7757 Face 20669 8592 8695 8694 Face 20670 9571 9572 9686 Face 20671 7758 7757 7644 Face 20672 9660 7278 9403 Face 20673 7645 7758 7644 Face 20674 9463 9464 9576 Face 20675 9577 9692 9691 Face 20676 9349 9464 9463 Face 20677 9576 9577 9691 Face 20678 9348 9349 9463 Face 20679 9464 9577 9576 Face 20680 9692 9806 9805 Face 20681 9691 9692 9805 Face 20682 8079 8078 7973 Face 20683 7974 8079 7973 Face 20684 7759 7868 7758 Face 20685 7975 7974 7867 Face 20686 7759 7758 7645 Face 20687 7646 7759 7645 Face 20688 9127 9240 9126 Face 20689 9352 9351 9239 Face 20690 8851 9979 10753 Face 20691 10134 8851 10753 Face 20692 8759 10606 9308 Face 20693 10990 8759 9308 Face 20694 12226 12225 12140 Face 20695 21444 21539 21443 Face 20696 12670 12671 12759 Face 20697 12057 12144 12143 Face 20698 7322 7432 7431 Face 20699 7321 7322 7431 Face 20700 9780 9742 9160 Face 20701 6631 9780 9160 Face 20702 26293 26411 26410 Face 20703 7114 7113 7006 Face 20704 9262 9261 9148 Face 20705 9149 9262 9148 Face 20706 9832 9949 9831 Face 20707 10065 10064 9948 Face 20708 7922 7467 9185 Face 20709 9918 10034 9917 Face 20710 1645 14148 16055 Face 20711 7081 9959 7407 Face 20712 9578 9693 9692 Face 20713 9869 7081 10106 Face 20714 8498 8597 8596 Face 20715 9855 8952 7946 Face 20716 8616 8719 8615 Face 20717 8825 8824 8718 Face 20718 10064 10183 10063 Face 20719 9149 9148 9035 Face 20720 5381 4073 8772 Face 20721 8635 10695 10119 Face 20722 11401 11484 11400 Face 20723 11315 11314 11239 Face 20724 10360 7519 8857 Face 20725 10483 10360 8857 Face 20726 7369 8060 10098 Face 20727 7369 10098 10476 Face 20728 8352 519 7844 Face 20729 6363 6485 8727 Face 20730 11556 11634 11633 Face 20731 11555 11556 11633 Face 20732 1425 2916 14 Face 20733 7328 7327 7222 Face 20734 9036 9035 8927 Face 20735 8928 9036 8927 Face 20736 8929 9037 8928 Face 20737 9150 9149 9036 Face 20738 10630 10629 10509 Face 20739 10510 10630 10509 Face 20740 9959 10372 7407 Face 20741 10532 10653 10652 Face 20742 8939 9869 10106 Face 20743 34358 34620 34487 Face 20744 7224 879 878 Face 20745 4447 6534 2328 Face 20746 9115 9116 9228 Face 20747 7781 6010 1991 Face 20748 11146 11086 6790 Face 20749 4201 9161 6630 Face 20750 7408 6975 7619 Face 20751 10368 12474 7619 Face 20752 7408 7928 8471 Face 20753 6975 7408 8471 Face 20754 7928 9517 7390 Face 20755 8471 7928 7390 Face 20756 9517 7929 7823 Face 20757 7390 9517 7823 Face 20758 10316 10851 7823 Face 20759 7929 10316 7823 Face 20760 10444 8659 10851 Face 20761 10316 10444 10851 Face 20762 10444 10077 8043 Face 20763 8659 10444 8043 Face 20764 8254 8151 8043 Face 20765 10077 8254 8043 Face 20766 9767 9654 8151 Face 20767 8254 9767 8151 Face 20768 9854 5598 10079 Face 20769 9767 10478 9654 Face 20770 8824 8928 8823 Face 20771 9888 8553 10763 Face 20772 9150 9263 9149 Face 20773 9375 9374 9262 Face 20774 11801 11800 11718 Face 20775 10386 10387 10509 Face 20776 7947 8939 10106 Face 20777 11097 34287 28272 Face 20778 10327 22610 15441 Face 20779 34555 34538 34702 Face 20780 4600 7839 9628 Face 20781 13513 13512 13417 Face 20782 12044 12131 12130 Face 20783 187 6976 100 Face 20784 4204 409 7915 Face 20785 7081 7407 10106 Face 20786 28682 28156 28550 Face 20787 16082 17422 17772 Face 20788 6666 6761 6760 Face 20789 6665 6664 34030 Face 20790 6761 6862 6861 Face 20791 6760 6761 6861 Face 20792 6862 6966 6965 Face 20793 6861 6862 6965 Face 20794 10667 10668 10791 Face 20795 9467 9466 9351 Face 20796 9603 9602 9489 Face 20797 9490 9603 9489 Face 20798 13117 34365 34515 Face 20799 9593 9708 9592 Face 20800 2374 10876 2248 Face 20801 10385 10508 10384 Face 20802 6652 29588 28290 Face 20803 796 795 680 Face 20804 13379 12022 13378 Face 20805 11087 6790 11086 Face 20806 10494 9172 7586 Face 20807 11570 11569 11491 Face 20808 13227 13226 13131 Face 20809 9718 9832 9717 Face 20810 9832 9831 9717 Face 20811 9602 9601 9488 Face 20812 8718 8824 8717 Face 20813 28385 28520 28519 Face 20814 25863 25974 25973 Face 20815 8263 8159 10469 Face 20816 9669 8263 10469 Face 20817 775 122 9160 Face 20818 122 6631 9160 Face 20819 2027 8959 9072 Face 20820 13129 13128 23505 Face 20821 8546 8650 3157 Face 20822 9857 9311 9511 Face 20823 10839 10925 10942 Face 20824 7248 7142 9063 Face 20825 1992 152 10093 Face 20826 1991 1992 10093 Face 20827 11468 13559 13030 Face 20828 13129 23505 23666 Face 20829 8591 8592 8694 Face 20830 13468 13374 15321 Face 20831 7758 7867 7757 Face 20832 8801 8800 8694 Face 20833 4349 25074 25073 Face 20834 7867 7974 7866 Face 20835 34298 11012 12935 Face 20836 9341 9456 9340 Face 20837 10942 10474 7404 Face 20838 680 681 796 Face 20839 152 10574 13672 Face 20840 9995 8566 8741 Face 20841 9801 9802 9918 Face 20842 9124 9237 9123 Face 20843 10569 7033 7034 Face 20844 9349 9348 9236 Face 20845 7645 7644 7532 Face 20846 10337 10569 7034 Face 20847 8185 8184 8078 Face 20848 7311 7312 7421 Face 20849 8289 8288 8184 Face 20850 8079 8185 8078 Face 20851 9125 9124 9011 Face 20852 9012 9125 9011 Face 20853 9014 9127 9013 Face 20854 9240 9239 9126 Face 20855 8969 8867 9979 Face 20856 8851 8969 9979 Face 20857 8833 8759 10990 Face 20858 8847 8833 10990 Face 20859 22595 259 5347 Face 20860 10093 152 13672 Face 20861 10154 10155 4067 Face 20862 11242 11317 11241 Face 20863 7432 7543 7542 Face 20864 7431 7432 7542 Face 20865 8669 8673 10237 Face 20866 10239 10193 10076 Face 20867 7007 7114 7006 Face 20868 7774 7773 7660 Face 20869 34467 10985 27498 Face 20870 5214 5091 16206 Face 20871 9949 10065 9948 Face 20872 10184 10183 10064 Face 20873 3815 2122 10874 Face 20874 5336 26187 27385 Face 20875 9172 10828 7586 Face 20876 8682 8683 8788 Face 20877 8892 8893 9000 Face 20878 10942 9063 10936 Face 20879 1855 1975 1854 Face 20880 10574 9991 8450 Face 20881 10302 10301 10183 Face 20882 10184 10302 10183 Face 20883 9036 9149 9035 Face 20884 9059 10925 10839 Face 20885 26538 26539 26654 Face 20886 9702 9703 9816 Face 20887 12218 12307 12306 Face 20888 10217 10222 6840 Face 20889 7519 9965 8947 Face 20890 8857 7519 8947 Face 20891 7558 7369 10476 Face 20892 9305 10958 9195 Face 20893 1856 8462 10382 Face 20894 7963 8068 7962 Face 20895 17976 17977 20278 Face 20896 6981 7888 9213 Face 20897 7223 7328 7222 Face 20898 7990 8095 7989 Face 20899 7267 8039 7248 Face 20900 7359 7267 7248 Face 20901 9037 9150 9036 Face 20902 10302 10424 10301 Face 20903 10674 7466 12262 Face 20904 6363 6244 6245 Face 20905 8407 8507 8406 Face 20906 13672 10574 8450 Face 20907 8352 8546 519 Face 20908 1087 1199 1427 Face 20909 9991 7182 7287 Face 20910 7701 3561 10941 Face 20911 10618 13393 9888 Face 20912 9018 9131 9130 Face 20913 6255 6130 6256 Face 20914 7409 7408 10446 Face 20915 7408 7619 10446 Face 20916 8671 7928 7408 Face 20917 7409 8671 7408 Face 20918 9518 9517 7928 Face 20919 8671 9518 7928 Face 20920 9994 7929 9517 Face 20921 9518 9994 9517 Face 20922 9994 7913 10316 Face 20923 7929 9994 10316 Face 20924 9785 10444 10316 Face 20925 7913 9785 10316 Face 20926 7803 10077 10444 Face 20927 9785 7803 10444 Face 20928 8358 8254 10077 Face 20929 7803 8358 10077 Face 20930 8973 9767 8254 Face 20931 8358 8973 8254 Face 20932 10355 10478 9767 Face 20933 8973 10355 9767 Face 20934 8365 11444 12360 Face 20935 9627 545 10355 Face 20936 9263 9375 9262 Face 20937 10423 10424 10546 Face 20938 8291 8290 8186 Face 20939 349 244 7148 Face 20940 10022 10141 3795 Face 20941 5870 5743 5871 Face 20942 15577 15441 21102 Face 20943 8450 9991 7287 Face 20944 8540 1121 8777 Face 20945 12368 11220 12817 Face 20946 12457 10125 10437 Face 20947 11316 11397 11315 Face 20948 1247 17909 17816 Face 20949 6512 4090 658 Face 20950 10638 4325 4450 Face 20951 6045 6172 6171 Face 20952 6665 6666 6760 Face 20953 28097 28096 27963 Face 20954 6667 6762 6761 Face 20955 6666 6667 6761 Face 20956 6762 6863 6862 Face 20957 6761 6762 6862 Face 20958 6863 6967 6966 Face 20959 6862 6863 6966 Face 20960 10792 10914 10913 Face 20961 5138 15494 14200 Face 20962 34787 34754 34575 Face 20963 9924 10040 10039 Face 20964 8732 8837 8731 Face 20965 10799 10190 10073 Face 20966 17843 5840 5714 Face 20967 328 4334 1437 Face 20968 6131 7254 7259 Face 20969 7182 120 6382 Face 20970 487 596 595 Face 20971 28436 34296 19225 Face 20972 17501 14997 13956 Face 20973 8732 8731 8626 Face 20974 8627 8732 8626 Face 20975 10914 9903 10696 Face 20976 9949 9948 9831 Face 20977 8928 8927 8823 Face 20978 8718 8717 8614 Face 20979 29694 29693 29561 Face 20980 28566 28695 26590 Face 20981 8655 10222 10217 Face 20982 8652 8655 10217 Face 20983 7924 8518 9047 Face 20984 10234 7843 7924 Face 20985 8654 382 10968 Face 20986 23544 21414 18258 Face 20987 7955 9857 9858 Face 20988 7260 7405 10462 Face 20989 10925 7248 9063 Face 20990 7088 10839 7293 Face 20991 6872 7084 10890 Face 20992 10769 10891 10768 Face 20993 8695 8801 8694 Face 20994 8905 8904 8800 Face 20995 8591 8590 8491 Face 20996 8801 8905 8800 Face 20997 7312 7311 7206 Face 20998 7974 7973 7866 Face 20999 7394 7620 7836 Face 21000 9237 9349 9236 Face 21001 7979 8084 8083 Face 21002 7631 8551 8448 Face 21003 7872 7979 7871 Face 21004 13608 13609 13701 Face 21005 11059 30624 30623 Face 21006 9668 7394 10505 Face 21007 7989 8094 7988 Face 21008 8677 10242 10239 Face 21009 7982 7983 8087 Face 21010 10969 9541 10968 Face 21011 7033 6942 8643 Face 21012 7034 7033 8643 Face 21013 7533 7532 7421 Face 21014 7422 7533 7421 Face 21015 10356 9068 7623 Face 21016 8470 6240 6241 Face 21017 9238 9237 9124 Face 21018 9125 9238 9124 Face 21019 8906 9014 8905 Face 21020 9127 9126 9013 Face 21021 7249 7229 8867 Face 21022 8969 7249 8867 Face 21023 8779 8833 8847 Face 21024 7078 8779 8847 Face 21025 7287 7182 6382 Face 21026 120 5507 207 Face 21027 1904 9734 3183 Face 21028 34300 34652 34730 Face 21029 7543 7655 7654 Face 21030 7542 7543 7654 Face 21031 7301 7330 8669 Face 21032 8673 10239 10237 Face 21033 7661 7774 7660 Face 21034 8408 8508 8407 Face 21035 7142 10623 9422 Face 21036 10936 9063 7035 Face 21037 10065 10184 10064 Face 21038 8360 6894 7911 Face 21039 8627 8626 8527 Face 21040 8528 8627 8527 Face 21041 8832 10932 1228 Face 21042 7427 7538 7426 Face 21043 9000 9001 9113 Face 21044 9114 9227 9226 Face 21045 8429 8528 8527 Face 21046 8428 8429 8527 Face 21047 24378 11700 24379 Face 21048 10424 10423 10301 Face 21049 7690 9059 10839 Face 21050 154 4321 6414 Face 21051 7223 7222 7113 Face 21052 7114 7223 7113 Face 21053 6815 9624 9510 Face 21054 11262 11338 11261 Face 21055 9965 6698 10811 Face 21056 7717 8044 7721 Face 21057 10086 9539 10959 Face 21058 10958 10086 10959 Face 21059 8068 8174 8173 Face 21060 7108 7107 7000 Face 21061 10076 10193 9744 Face 21062 9853 7888 6981 Face 21063 8201 8200 8094 Face 21064 8095 8201 8094 Face 21065 9997 10116 8975 Face 21066 9099 10243 10244 Face 21067 10424 10547 10546 Face 21068 7911 6894 8235 Face 21069 8221 8326 8220 Face 21070 8429 8428 8325 Face 21071 7840 10494 9970 Face 21072 9109 9982 9558 Face 21073 10018 10888 8845 Face 21074 13321 13320 13227 Face 21075 183 4331 36 Face 21076 9513 7409 10446 Face 21077 8909 8910 9017 Face 21078 8033 8671 7409 Face 21079 10457 8033 7409 Face 21080 8033 9404 9518 Face 21081 8671 8033 9518 Face 21082 9404 10113 9994 Face 21083 9518 9404 9994 Face 21084 10113 10377 7913 Face 21085 9994 10113 7913 Face 21086 7499 9785 7913 Face 21087 10377 7499 7913 Face 21088 7618 7803 9785 Face 21089 7499 7618 9785 Face 21090 7618 7723 8358 Face 21091 7803 7618 8358 Face 21092 9085 8973 8358 Face 21093 7723 9085 8358 Face 21094 10233 10355 8973 Face 21095 9085 10233 8973 Face 21096 545 9627 3701 Face 21097 10233 9627 10355 Face 21098 10547 10668 10667 Face 21099 11769 8260 3952 Face 21100 7530 7642 7641 Face 21101 10546 10547 10667 Face 21102 856 7521 970 Face 21103 8326 8325 8220 Face 21104 14570 14571 16197 Face 21105 34435 29405 34827 Face 21106 8987 3423 9783 Face 21107 391 390 6964 Face 21108 9614 9616 13369 Face 21109 8248 7919 12930 Face 21110 12131 12132 12216 Face 21111 34477 34339 34642 Face 21112 16563 16401 18893 Face 21113 7329 878 879 Face 21114 6291 6171 10315 Face 21115 34447 34366 26069 Face 21116 26770 26769 26654 Face 21117 6668 6763 6762 Face 21118 6667 6668 6762 Face 21119 6763 6864 6863 Face 21120 6762 6763 6863 Face 21121 6864 6968 6967 Face 21122 6863 6864 6967 Face 21123 10791 10792 10913 Face 21124 1562 7896 1671 Face 21125 8221 8220 8116 Face 21126 8117 8221 8116 Face 21127 9856 5721 5848 Face 21128 5977 5849 5850 Face 21129 8890 8998 8997 Face 21130 8997 8998 9110 Face 21131 8998 9111 9110 Face 21132 9110 9111 9223 Face 21133 7796 7905 7795 Face 21134 9111 9224 9223 Face 21135 10913 10914 10696 Face 21136 6382 120 207 Face 21137 8516 8615 8515 Face 21138 9903 7820 7029 Face 21139 8615 8718 8614 Face 21140 8824 8823 8717 Face 21141 7438 7437 7327 Face 21142 7328 7438 7327 Face 21143 9780 7299 7279 Face 21144 9742 9780 7279 Face 21145 9047 7577 9399 Face 21146 7577 6902 9399 Face 21147 10015 9176 9048 Face 21148 7275 7264 9159 Face 21149 12998 13092 9296 Face 21150 10332 7955 9858 Face 21151 10925 9063 10942 Face 21152 7088 7293 8990 Face 21153 10891 6872 10890 Face 21154 10204 10070 7084 Face 21155 9926 10042 10041 Face 21156 9925 9926 10041 Face 21157 8185 8289 8184 Face 21158 8392 8391 8288 Face 21159 7312 7422 7421 Face 21160 7207 7312 7206 Face 21161 9762 8747 10875 Face 21162 10833 9762 10875 Face 21163 8190 8294 8293 Face 21164 6772 6773 298 Face 21165 8087 8088 8193 Face 21166 7393 7394 9668 Face 21167 7979 7978 7871 Face 21168 7393 10591 7394 Face 21169 13116 34476 5341 Face 21170 8084 8190 8189 Face 21171 17501 13956 18424 Face 21172 8545 8644 9322 Face 21173 7826 7716 8643 Face 21174 14286 16406 14287 Face 21175 6942 7826 8643 Face 21176 18831 172 20312 Face 21177 7463 7623 7491 Face 21178 7463 10356 7623 Face 21179 9350 9349 9237 Face 21180 9238 9350 9237 Face 21181 8802 8906 8801 Face 21182 9014 9013 8905 Face 21183 10673 9443 5510 Face 21184 8757 7844 1427 Face 21185 10894 8779 7078 Face 21186 10893 10894 7078 Face 21187 1455 13294 3827 Face 21188 34482 34711 34564 Face 21189 9065 7950 8853 Face 21190 10107 9065 8853 Face 21191 7655 7768 7767 Face 21192 7654 7655 7767 Face 21193 10208 10218 7301 Face 21194 7330 8673 8669 Face 21195 8607 8606 8507 Face 21196 8508 8607 8507 Face 21197 9063 7142 7035 Face 21198 10250 7401 6695 Face 21199 8049 8360 7911 Face 21200 34577 34500 34324 Face 21201 7683 7796 7682 Face 21202 7905 7904 7795 Face 21203 10263 10385 10384 Face 21204 9224 9336 9335 Face 21205 10508 10507 10384 Face 21206 5594 7245 5719 Face 21207 34287 11097 11378 Face 21208 5846 5845 5719 Face 21209 21631 21727 21726 Face 21210 8551 3678 8650 Face 21211 7883 7882 7773 Face 21212 7252 7917 7596 Face 21213 7774 7883 7773 Face 21214 7990 7989 7882 Face 21215 1425 14 11761 Face 21216 11396 11395 11314 Face 21217 10971 7717 7721 Face 21218 8044 7728 6792 Face 21219 7558 10476 9539 Face 21220 10086 7558 9539 Face 21221 7000 11217 11218 Face 21222 12313 12404 12403 Face 21223 9744 9853 6981 Face 21224 7217 7216 7107 Face 21225 8305 8304 8200 Face 21226 10237 10239 10076 Face 21227 1197 8874 3176 Face 21228 8201 8305 8200 Face 21229 11432 12144 12058 Face 21230 10623 10116 9997 Face 21231 8326 8429 8325 Face 21232 8235 10940 10366 Face 21233 10262 10263 10384 Face 21234 7571 7683 7570 Face 21235 7458 7570 7457 Face 21236 5587 17229 5459 Face 21237 3560 1769 282 Face 21238 33225 33361 33224 Face 21239 6509 7388 117 Face 21240 9287 8033 10457 Face 21241 8109 9287 10457 Face 21242 9287 9405 9404 Face 21243 8033 9287 9404 Face 21244 9405 10232 10113 Face 21245 9404 9405 10113 Face 21246 10232 7494 10377 Face 21247 10113 10232 10377 Face 21248 8359 7499 10377 Face 21249 7494 8359 10377 Face 21250 7504 7618 7499 Face 21251 8359 7504 7499 Face 21252 7504 7612 7723 Face 21253 7618 7504 7723 Face 21254 7933 9085 7723 Face 21255 7612 7933 7723 Face 21256 10114 10233 9085 Face 21257 7933 10114 9085 Face 21258 7143 9627 10233 Face 21259 10114 7143 10233 Face 21260 6109 6108 8208 Face 21261 30524 30452 30525 Face 21262 10668 10792 10791 Face 21263 12713 7850 7172 Face 21264 7571 7570 7458 Face 21265 7459 7571 7458 Face 21266 44 20536 23118 Face 21267 9253 9252 9139 Face 21268 1886 6894 62 Face 21269 4597 4729 13180 Face 21270 10031 10030 9914 Face 21271 207 5507 4343 Face 21272 10472 15726 15583 Face 21273 29613 29018 28008 Face 21274 11726 11808 11725 Face 21275 11889 11888 11807 Face 21276 21623 21718 21717 Face 21277 7383 8041 7815 Face 21278 27375 27376 29012 Face 21279 26655 26770 26654 Face 21280 6669 6764 6763 Face 21281 15218 15087 18428 Face 21282 6764 6865 6864 Face 21283 6763 6764 6864 Face 21284 6865 6969 6968 Face 21285 6864 6865 6968 Face 21286 34323 34687 34758 Face 21287 6894 1886 10940 Face 21288 7459 7458 7349 Face 21289 7350 7459 7349 Face 21290 19804 19803 34437 Face 21291 7840 9970 7159 Face 21292 9507 10494 7586 Face 21293 8789 8893 8892 Face 21294 8788 8789 8892 Face 21295 8012 8011 7904 Face 21296 9687 9801 9800 Face 21297 10696 9903 7029 Face 21298 7905 8012 7904 Face 21299 7820 8360 8049 Face 21300 7029 7820 8049 Face 21301 8687 8688 8793 Face 21302 8516 8515 8415 Face 21303 10518 4194 4195 Face 21304 16568 16406 3432 Face 21305 7299 8655 8652 Face 21306 7549 7548 7437 Face 21307 6902 7379 7162 Face 21308 7279 7299 8652 Face 21309 7464 1006 7465 Face 21310 9399 6902 7162 Face 21311 2238 2755 2748 Face 21312 9176 7275 9159 Face 21313 10321 10322 8147 Face 21314 10578 8746 5103 Face 21315 9396 7088 8990 Face 21316 10839 10942 7293 Face 21317 6872 10204 7084 Face 21318 10972 8958 10070 Face 21319 10042 10161 10160 Face 21320 9926 9925 9808 Face 21321 8492 8491 8391 Face 21322 8289 8392 8288 Face 21323 7207 7206 7097 Face 21324 7098 7207 7097 Face 21325 8070 8176 8175 Face 21326 1724 18411 18316 Face 21327 9802 9919 9918 Face 21328 9919 10035 9918 Face 21329 7205 7310 7204 Face 21330 8343 8447 10561 Face 21331 10591 10481 7620 Face 21332 7650 7651 7763 Face 21333 8284 8387 8386 Face 21334 7861 7968 7967 Face 21335 7610 10554 8976 Face 21336 8585 8586 8688 Face 21337 11183 25993 11120 Face 21338 23442 25739 23859 Face 21339 4466 4728 4860 Face 21340 14330 14331 14447 Face 21341 10849 7491 10682 Face 21342 10849 7463 7491 Face 21343 9465 9464 9349 Face 21344 9350 9465 9349 Face 21345 8592 8593 8695 Face 21346 8696 8802 8801 Face 21347 8489 8588 8587 Face 21348 7753 7754 7862 Face 21349 10894 10893 10771 Face 21350 10772 10894 10771 Face 21351 8128 7814 9184 Face 21352 771 89 11440 Face 21353 7077 9065 10107 Face 21354 9892 7077 10107 Face 21355 7768 7877 7876 Face 21356 7983 7984 8088 Face 21357 10201 10083 99 Face 21358 6383 10382 8240 Face 21359 8710 8709 8606 Face 21360 8607 8710 8606 Face 21361 6294 6295 6416 Face 21362 2487 2488 2617 Face 21363 9967 7172 7850 Face 21364 9346 9347 9461 Face 21365 11643 11642 11564 Face 21366 2246 2238 10708 Face 21367 10474 10942 10936 Face 21368 2755 8551 8452 Face 21369 9856 7245 7695 Face 21370 24012 25847 23391 Face 21371 677 792 676 Face 21372 7245 9856 7825 Face 21373 7883 7990 7882 Face 21374 6966 6967 393 Face 21375 12048 12135 12047 Face 21376 8095 8094 7989 Face 21377 12220 12219 12134 Face 21378 8041 771 8128 Face 21379 11315 11396 11314 Face 21380 10742 11690 27 Face 21381 7721 8044 6792 Face 21382 7728 7918 7829 Face 21383 1006 1546 7465 Face 21384 7464 7465 6892 Face 21385 20044 20126 20125 Face 21386 9838 9839 13491 Face 21387 7108 7217 7107 Face 21388 13931 13977 13976 Face 21389 10193 9853 9744 Face 21390 7322 7321 7216 Face 21391 8408 8407 8304 Face 21392 10218 7330 7301 Face 21393 10116 9087 8975 Face 21394 8305 8408 8304 Face 21395 9284 10940 9386 Face 21396 4981 10070 8958 Face 21397 7796 7795 7682 Face 21398 10366 9284 9737 Face 21399 2659 2527 8731 Face 21400 9339 9454 9453 Face 21401 3169 3044 4840 Face 21402 4840 3044 8882 Face 21403 13030 13559 168 Face 21404 6541 6417 6542 Face 21405 9543 9287 8109 Face 21406 10457 9513 7730 Face 21407 9543 9406 9405 Face 21408 9287 9543 9405 Face 21409 9406 9881 10232 Face 21410 9405 9406 10232 Face 21411 9881 7495 7494 Face 21412 10232 9881 7494 Face 21413 8255 8359 7494 Face 21414 7495 8255 7494 Face 21415 9514 7504 8359 Face 21416 8255 9514 8359 Face 21417 7614 7612 7504 Face 21418 9514 7614 7504 Face 21419 7614 7493 7933 Face 21420 7612 7614 7933 Face 21421 7602 10114 7933 Face 21422 7493 7602 7933 Face 21423 6945 7143 10114 Face 21424 7602 6945 10114 Face 21425 12663 12662 12572 Face 21426 6945 10582 7143 Face 21427 7307 7417 7306 Face 21428 10084 129 10188 Face 21429 7683 7682 7570 Face 21430 457 7256 458 Face 21431 5719 7245 7825 Face 21432 10292 10414 10291 Face 21433 3701 10582 316 Face 21434 7967 7968 8072 Face 21435 10652 10776 10775 Face 21436 22469 4332 14369 Face 21437 5638 8340 2513 Face 21438 7965 8070 7964 Face 21439 1522 1634 1633 Face 21440 2150 9416 11274 Face 21441 21529 21530 21622 Face 21442 14458 14459 14576 Face 21443 20750 13202 20838 Face 21444 26770 26884 26883 Face 21445 6670 6765 6764 Face 21446 6668 6669 6763 Face 21447 6765 6866 6865 Face 21448 6764 6765 6865 Face 21449 6970 6969 6865 Face 21450 6866 6970 6865 Face 21451 8005 8110 1779 Face 21452 12470 11765 11608 Face 21453 20711 20622 11103 Face 21454 4580 6146 6290 Face 21455 1339 1338 875 Face 21456 9113 9114 9226 Face 21457 26769 26770 26883 Face 21458 10285 10286 10407 Face 21459 8117 8116 8011 Face 21460 407 406 6875 Face 21461 34634 34807 34664 Face 21462 8012 8117 8011 Face 21463 24458 27263 27151 Face 21464 34547 24243 24242 Face 21465 16206 14081 5214 Face 21466 7035 7142 9422 Face 21467 7922 9185 7931 Face 21468 8615 8614 8515 Face 21469 9119 9120 9232 Face 21470 7383 7922 7931 Face 21471 7379 7717 10971 Face 21472 8283 8386 8385 Face 21473 10015 9048 1546 Face 21474 7162 7379 10971 Face 21475 8557 8657 2028 Face 21476 1006 10015 1546 Face 21477 8951 8950 10321 Face 21478 7476 7477 8657 Face 21479 10972 10195 8958 Face 21480 8642 9396 7467 Face 21481 7779 8246 10194 Face 21482 10195 7779 10194 Face 21483 10204 10972 10070 Face 21484 10195 10194 8958 Face 21485 9809 9926 9808 Face 21486 9580 9695 9579 Face 21487 8492 8591 8491 Face 21488 8392 8492 8391 Face 21489 7098 7097 6990 Face 21490 6991 7098 6990 Face 21491 21622 21623 21717 Face 21492 6001 6128 6000 Face 21493 9400 10569 10337 Face 21494 10677 9400 10337 Face 21495 7309 7310 7419 Face 21496 7310 7420 7419 Face 21497 9804 9921 9803 Face 21498 9689 9690 9803 Face 21499 7529 7530 7641 Face 21500 7834 7724 10681 Face 21501 8584 8585 8687 Face 21502 4214 9854 4857 Face 21503 9311 8544 9511 Face 21504 3302 9967 8341 Face 21505 25778 30534 25779 Face 21506 5721 8021 7842 Face 21507 10219 10682 7936 Face 21508 10219 10849 10682 Face 21509 9577 9578 9692 Face 21510 9807 9924 9923 Face 21511 8394 8494 8393 Face 21512 8695 8696 8801 Face 21513 8489 8488 8388 Face 21514 18053 17674 3570 Face 21515 10527 10648 10647 Face 21516 10526 10527 10647 Face 21517 9621 8023 9184 Face 21518 7814 9621 9184 Face 21519 7077 9892 10121 Face 21520 10240 7077 10121 Face 21521 8089 8195 8194 Face 21522 8088 8089 8194 Face 21523 10323 8455 10200 Face 21524 10320 10083 10201 Face 21525 8816 8815 8709 Face 21526 8919 8920 9027 Face 21527 27215 27164 26099 Face 21528 26566 25989 429 Face 21529 7193 7288 7296 Face 21530 4327 10521 10642 Face 21531 9939 10055 10054 Face 21532 9588 9703 9587 Face 21533 9604 9603 9490 Face 21534 10148 10147 10028 Face 21535 8021 9856 9174 Face 21536 7695 9174 9856 Face 21537 11647 11646 11568 Face 21538 5848 5721 5849 Face 21539 2003 1529 1530 Face 21540 11220 12908 12817 Face 21541 14 2917 5381 Face 21542 15503 15645 12660 Face 21543 9735 8572 7291 Face 21544 3189 12204 12201 Face 21545 6792 7728 7829 Face 21546 10583 7291 7576 Face 21547 7918 7291 10583 Face 21548 7829 7918 10583 Face 21549 7120 7464 6892 Face 21550 7843 8518 7924 Face 21551 12386 12557 11780 Face 21552 9899 10484 9050 Face 21553 7950 9665 10713 Face 21554 8853 7950 10713 Face 21555 7217 7322 7216 Face 21556 7767 7768 7876 Face 21557 99 6383 8240 Face 21558 10382 10218 10208 Face 21559 8508 8507 8407 Face 21560 8710 8816 8709 Face 21561 25575 25666 25574 Face 21562 7121 25903 25899 Face 21563 7818 7627 9848 Face 21564 7964 7963 7856 Face 21565 9822 9821 9707 Face 21566 320 2489 5001 Face 21567 1636 1526 1637 Face 21568 6917 13276 20719 Face 21569 6875 6982 407 Face 21570 8727 6485 8758 Face 21571 10804 9543 8171 Face 21572 8171 9543 8109 Face 21573 9293 9406 9543 Face 21574 10804 9293 9543 Face 21575 9293 9763 9881 Face 21576 9406 9293 9881 Face 21577 9763 9084 7495 Face 21578 9881 9763 7495 Face 21579 8461 8255 7495 Face 21580 9084 8461 7495 Face 21581 8129 9514 8255 Face 21582 8461 8129 8255 Face 21583 9988 7614 9514 Face 21584 8129 9988 9514 Face 21585 9988 10605 7493 Face 21586 7614 9988 7493 Face 21587 7163 7602 7493 Face 21588 10605 7163 7493 Face 21589 9626 6945 7602 Face 21590 7163 9626 7602 Face 21591 10456 10582 6945 Face 21592 9626 10456 6945 Face 21593 2772 5632 10380 Face 21594 10456 6976 10582 Face 21595 9535 7818 8672 Face 21596 11569 11568 11490 Face 21597 10027 10026 9910 Face 21598 10287 10409 10408 Face 21599 7266 8026 7377 Face 21600 8999 9112 9111 Face 21601 8809 8913 8808 Face 21602 9021 9020 8912 Face 21603 10415 10538 10414 Face 21604 7763 7762 7649 Face 21605 8069 8070 8175 Face 21606 11408 11491 11407 Face 21607 9119 9232 9231 Face 21608 9539 8557 2360 Face 21609 6655 7128 21544 Face 21610 26335 17786 28554 Face 21611 6671 6766 6765 Face 21612 6669 33907 6670 Face 21613 6766 6867 6866 Face 21614 6765 6766 6866 Face 21615 6971 6970 6866 Face 21616 6867 6971 6866 Face 21617 6289 6169 7707 Face 21618 3297 8517 5469 Face 21619 2561 32884 2433 Face 21620 7946 8059 9741 Face 21621 8761 8762 10273 Face 21622 11103 6917 20719 Face 21623 9709 9823 9708 Face 21624 9911 10027 9910 Face 21625 10653 10777 10652 Face 21626 9623 9852 10556 Face 21627 8379 8479 8378 Face 21628 34818 3031 34297 Face 21629 25973 25974 26084 Face 21630 26100 27394 27391 Face 21631 7438 7549 7437 Face 21632 7661 7660 7548 Face 21633 8859 7593 7594 Face 21634 7549 7661 7548 Face 21635 8501 8502 8600 Face 21636 7527 7639 7638 Face 21637 1228 2792 10431 Face 21638 8832 1228 10431 Face 21639 13595 13596 13688 Face 21640 9176 9159 9048 Face 21641 9243 9355 9354 Face 21642 8557 7476 8657 Face 21643 8745 7806 8246 Face 21644 10322 3043 8147 Face 21645 9240 9352 9239 Face 21646 7779 8745 8246 Face 21647 9352 9467 9351 Face 21648 9580 9579 9466 Face 21649 9467 9580 9466 Face 21650 9695 9694 9579 Face 21651 9809 9808 9694 Face 21652 9695 9809 9694 Face 21653 8590 8591 8693 Face 21654 8591 8694 8693 Face 21655 6785 6786 6884 Face 21656 6885 6991 6990 Face 21657 10732 7260 8728 Face 21658 14287 16406 16568 Face 21659 7917 10205 10732 Face 21660 9400 10677 7188 Face 21661 7419 7420 7530 Face 21662 7420 7531 7530 Face 21663 9921 9920 9803 Face 21664 9462 9575 9574 Face 21665 8566 8777 10307 Face 21666 8029 8133 10117 Face 21667 1437 4334 125 Face 21668 6693 7596 8133 Face 21669 6293 6174 6294 Face 21670 11409 11493 26337 Face 21671 6875 301 6776 Face 21672 7328 7224 878 Face 21673 8656 7936 7826 Face 21674 8656 10219 7936 Face 21675 9693 9807 9806 Face 21676 9692 9693 9806 Face 21677 8081 8187 8080 Face 21678 8494 8593 8592 Face 21679 8075 8076 8181 Face 21680 8588 8691 8587 Face 21681 10282 10281 10163 Face 21682 10164 10282 10163 Face 21683 8552 7247 8023 Face 21684 8456 7690 6869 Face 21685 10468 10835 9395 Face 21686 9418 10468 9395 Face 21687 8195 8299 8298 Face 21688 8194 8195 8298 Face 21689 10200 10320 10201 Face 21690 10083 6383 99 Face 21691 9141 9140 9027 Face 21692 9254 9253 9140 Face 21693 26884 26997 26996 Face 21694 26084 26085 26200 Face 21695 7151 7043 249 Face 21696 7051 7159 9310 Face 21697 10777 10776 10652 Face 21698 9950 9949 9832 Face 21699 8700 8699 8596 Face 21700 8597 8700 8596 Face 21701 8640 8021 9173 Face 21702 9062 8640 9173 Face 21703 12049 12136 12048 Face 21704 8021 8640 7842 Face 21705 7699 12722 11597 Face 21706 2489 3940 3055 Face 21707 5001 2489 3055 Face 21708 1659 1455 3827 Face 21709 34458 34330 34806 Face 21710 26883 26884 26996 Face 21711 10692 8845 10342 Face 21712 8538 10692 10342 Face 21713 8845 7843 10234 Face 21714 10342 8845 10234 Face 21715 7120 6892 8753 Face 21716 7942 7120 8753 Face 21717 9999 9899 9050 Face 21718 6873 7137 10484 Face 21719 17839 22420 22416 Face 21720 3281 3147 3148 Face 21721 7877 7984 7983 Face 21722 10463 9418 10395 Face 21723 8240 10382 10208 Face 21724 7876 7877 7983 Face 21725 8816 8920 8919 Face 21726 8455 10320 10200 Face 21727 9242 9243 9354 Face 21728 8815 8816 8919 Face 21729 6699 34820 13651 Face 21730 26997 27113 27112 Face 21731 7472 10924 10802 Face 21732 7976 7975 7868 Face 21733 7872 7871 7762 Face 21734 3282 3410 3409 Face 21735 8997 2488 8890 Face 21736 12935 12990 34298 Face 21737 1896 1895 1779 Face 21738 10804 8171 8889 Face 21739 13934 410 3118 Face 21740 8978 9294 9293 Face 21741 10804 8978 9293 Face 21742 9294 10354 9763 Face 21743 9293 9294 9763 Face 21744 10354 8972 9084 Face 21745 9763 10354 9084 Face 21746 8152 8461 9084 Face 21747 8972 8152 9084 Face 21748 8672 8129 8461 Face 21749 8152 8672 8461 Face 21750 9848 9988 8129 Face 21751 8672 9848 8129 Face 21752 9210 10605 9988 Face 21753 9848 9210 9988 Face 21754 9210 8250 7163 Face 21755 10605 9210 7163 Face 21756 7243 9626 7163 Face 21757 8250 7243 7163 Face 21758 10701 10456 9626 Face 21759 7243 10701 9626 Face 21760 10005 6976 10456 Face 21761 10701 10005 10456 Face 21762 34767 34790 34289 Face 21763 7288 100 10005 Face 21764 6259 6134 10128 Face 21765 10095 9525 8859 Face 21766 9223 9224 9335 Face 21767 8389 8489 8388 Face 21768 6996 6995 6889 Face 21769 12998 9296 7705 Face 21770 9336 9451 9450 Face 21771 9376 9375 9263 Face 21772 6879 6985 6878 Face 21773 6766 6671 108 Face 21774 7570 7569 7457 Face 21775 6766 108 6767 Face 21776 5235 10435 10194 Face 21777 26996 26997 27112 Face 21778 34348 34532 34457 Face 21779 8111 1897 8110 Face 21780 9288 33813 33542 Face 21781 6766 6767 6867 Face 21782 21739 9288 33542 Face 21783 34710 34824 34289 Face 21784 9796 9795 9681 Face 21785 9982 9083 9558 Face 21786 9459 9572 9571 Face 21787 7521 856 857 Face 21788 9473 9474 9586 Face 21789 10365 7119 7082 Face 21790 15332 10730 7083 Face 21791 9423 9310 9083 Face 21792 10727 10991 8558 Face 21793 7119 7193 7082 Face 21794 7357 8727 7446 Face 21795 8815 8919 8918 Face 21796 10389 10512 10388 Face 21797 6997 7104 6996 Face 21798 9366 9481 9365 Face 21799 9028 9141 9027 Face 21800 10781 10782 10903 Face 21801 10904 10818 7837 Face 21802 9134 9135 9247 Face 21803 8704 8703 8600 Face 21804 1228 6630 2792 Face 21805 6630 7356 2792 Face 21806 7849 10479 7401 Face 21807 2771 4333 1544 Face 21808 31066 31165 31065 Face 21809 27113 27229 27228 Face 21810 13042 13136 13041 Face 21811 9722 9723 9837 Face 21812 10361 12811 12457 Face 21813 27112 27113 27228 Face 21814 11925 11678 11438 Face 21815 12034 13477 11438 Face 21816 11357 12034 11438 Face 21817 11846 11449 12034 Face 21818 12034 11449 13477 Face 21819 32851 32850 32717 Face 21820 28560 34512 26789 Face 21821 11248 11323 11247 Face 21822 11404 11403 11322 Face 21823 12894 13548 13456 Face 21824 13742 20281 7916 Face 21825 21736 21833 21735 Face 21826 21929 21928 21832 Face 21827 21833 21929 21832 Face 21828 22027 22026 21928 Face 21829 21929 22027 21928 Face 21830 22125 22124 22026 Face 21831 22027 22125 22026 Face 21832 22220 22219 22124 Face 21833 22125 22220 22124 Face 21834 22316 22315 22219 Face 21835 22220 22316 22219 Face 21836 22412 22411 22315 Face 21837 22316 22412 22315 Face 21838 3330 3455 17012 Face 21839 17712 17709 18796 Face 21840 20281 19677 19635 Face 21841 20465 20464 19673 Face 21842 22405 22502 22501 Face 21843 22308 22309 22404 Face 21844 15443 14303 14419 Face 21845 15726 15443 14419 Face 21846 14419 14303 12855 Face 21847 14303 2896 12855 Face 21848 2896 15732 15590 Face 21849 12855 2896 15590 Face 21850 15732 15309 15588 Face 21851 15590 15732 15588 Face 21852 15309 12859 12858 Face 21853 15588 15309 12858 Face 21854 22404 22405 22501 Face 21855 8876 3186 1680 Face 21856 22502 22596 22595 Face 21857 11694 13653 11776 Face 21858 13653 12450 12271 Face 21859 12929 10472 4355 Face 21860 32826 32958 32825 Face 21861 9647 2665 7740 Face 21862 12446 14648 9426 Face 21863 10472 12929 15726 Face 21864 22638 6019 22351 Face 21865 6019 12446 9426 Face 21866 14569 14928 20647 Face 21867 14809 4742 22601 Face 21868 28362 29210 34679 Face 21869 18672 18723 18294 Face 21870 7237 32300 32196 Face 21871 13653 5624 11776 Face 21872 12207 27739 18823 Face 21873 33233 33232 33097 Face 21874 30604 30698 30603 Face 21875 27739 29800 18823 Face 21876 33894 33893 33767 Face 21877 32972 33106 32971 Face 21878 1763 11215 5211 Face 21879 34820 5211 13651 Face 21880 12899 8876 1680 Face 21881 1763 1990 12375 Face 21882 34800 34700 34560 Face 21883 11694 11776 3186 Face 21884 11215 1763 12375 Face 21885 27339 27338 27228 Face 21886 1990 11754 11611 Face 21887 12375 1990 11611 Face 21888 11754 11083 11678 Face 21889 11611 11754 11678 Face 21890 13260 14370 13259 Face 21891 17340 17250 17251 Face 21892 2512 20065 19336 Face 21893 12856 14852 13356 Face 21894 12899 1680 13575 Face 21895 10857 12899 13575 Face 21896 13298 11357 11678 Face 21897 18966 12913 861 Face 21898 11083 13298 11678 Face 21899 12655 12034 11357 Face 21900 13298 12655 11357 Face 21901 7585 7461 8774 Face 21902 12655 11846 12034 Face 21903 12076 12163 12075 Face 21904 16185 12813 20749 Face 21905 11323 11404 11322 Face 21906 12142 12227 12141 Face 21907 9102 15135 9783 Face 21908 15337 8172 16405 Face 21909 8227 12036 8332 Face 21910 24180 24179 25287 Face 21911 13365 19222 15297 Face 21912 9414 13808 8215 Face 21913 14506 11002 12348 Face 21914 20451 20450 6269 Face 21915 13108 34584 3046 Face 21916 6019 9426 22351 Face 21917 17769 17861 22611 Face 21918 30963 30962 30861 Face 21919 978 12288 22351 Face 21920 14486 19066 14367 Face 21921 18523 17989 22220 Face 21922 30534 25778 30623 Face 21923 19741 19824 19740 Face 21924 32227 32333 32332 Face 21925 8876 11694 3186 Face 21926 19825 19824 19741 Face 21927 25777 11059 30623 Face 21928 34346 34317 34828 Face 21929 15036 17175 15108 Face 21930 18433 17673 18821 Face 21931 13741 7580 978 Face 21932 12288 22638 22351 Face 21933 8357 7580 13741 Face 21934 13288 8357 13741 Face 21935 12730 8357 13288 Face 21936 7580 12288 978 Face 21937 12730 14204 15881 Face 21938 14204 12730 13288 Face 21939 16189 15882 22352 Face 21940 15882 12730 15881 Face 21941 19296 16189 19376 Face 21942 21286 21278 20374 Face 21943 21286 2530 21278 Face 21944 20375 21286 20374 Face 21945 2530 2636 21278 Face 21946 2383 12913 22469 Face 21947 12859 13260 13259 Face 21948 15882 15881 22352 Face 21949 16543 12939 16512 Face 21950 34420 34714 34545 Face 21951 31212 31211 31112 Face 21952 11059 25777 11121 Face 21953 16189 22352 19376 Face 21954 16348 12588 8846 Face 21955 25779 30533 25780 Face 21956 34357 10969 34491 Face 21957 15108 17175 18996 Face 21958 12857 16348 14728 Face 21959 33616 33615 33488 Face 21960 15305 15168 13161 Face 21961 34400 34423 34624 Face 21962 13383 12857 13356 Face 21963 16753 16752 16691 Face 21964 18080 18174 18079 Face 21965 16348 8846 14728 Face 21966 34279 34412 13579 Face 21967 16192 15056 3631 Face 21968 16694 26443 13212 Face 21969 15031 10864 15030 Face 21970 15874 15040 14912 Face 21971 22592 14875 22591 Face 21972 29533 29534 29665 Face 21973 32343 32455 32342 Face 21974 15292 15156 163 Face 21975 32831 32963 32830 Face 21976 30505 30506 30590 Face 21977 22255 14910 22160 Face 21978 33773 33772 33647 Face 21979 2132 22255 8167 Face 21980 21291 15581 21290 Face 21981 3036 19269 7490 Face 21982 14910 16338 22160 Face 21983 21826 21825 21728 Face 21984 21729 21826 21728 Face 21985 30591 30685 30684 Face 21986 33643 33768 33767 Face 21987 7997 1763 10227 Face 21988 34828 5211 34820 Face 21989 22505 22599 22504 Face 21990 13766 1990 1763 Face 21991 20374 21278 20373 Face 21992 2636 15161 21275 Face 21993 7997 13766 1763 Face 21994 22599 22598 22504 Face 21995 6972 11754 1990 Face 21996 13766 6972 1990 Face 21997 11005 11083 11754 Face 21998 6972 11005 11754 Face 21999 5470 16503 16504 Face 22000 21638 32924 32406 Face 22001 21831 21733 21734 Face 22002 21832 21928 21831 Face 22003 29151 29281 29150 Face 22004 21872 23383 13305 Face 22005 11005 11046 13298 Face 22006 21605 24331 22937 Face 22007 11083 11005 13298 Face 22008 11046 12639 12655 Face 22009 13298 11046 12655 Face 22010 25874 25875 25982 Face 22011 34811 34597 34765 Face 22012 655 2801 12854 Face 22013 12295 416 1198 Face 22014 12142 12141 12054 Face 22015 12055 12142 12054 Face 22016 13018 11841 12808 Face 22017 11407 11490 11406 Face 22018 13676 10068 10187 Face 22019 3055 3940 2024 Face 22020 12170 21487 22690 Face 22021 15729 15874 14912 Face 22022 15040 14487 14606 Face 22023 20491 12170 22690 Face 22024 23114 23944 23829 Face 22025 14912 15040 14606 Face 22026 20580 23719 24135 Face 22027 14487 5763 7244 Face 22028 14606 14487 7244 Face 22029 3507 3635 7244 Face 22030 5763 3507 7244 Face 22031 9867 16032 3635 Face 22032 3507 9867 3635 Face 22033 34344 34510 34354 Face 22034 26416 28019 28155 Face 22035 29068 29069 11144 Face 22036 34611 34685 34802 Face 22037 27157 27897 27767 Face 22038 11457 22708 23249 Face 22039 29069 29068 27378 Face 22040 20014 26542 26657 Face 22041 14532 33675 15043 Face 22042 15156 15292 14530 Face 22043 15292 12114 14530 Face 22044 11524 20646 22141 Face 22045 14875 15292 163 Face 22046 27379 29069 27378 Face 22047 12444 14449 14669 Face 22048 15880 12444 14669 Face 22049 3059 1873 14449 Face 22050 34395 34575 34399 Face 22051 12444 3059 14449 Face 22052 16173 24701 24700 Face 22053 3694 12366 14059 Face 22054 30533 25779 30534 Face 22055 19599 19517 13808 Face 22056 1868 3307 1873 Face 22057 3059 1868 1873 Face 22058 12857 14728 13356 Face 22059 11894 11155 3307 Face 22060 1868 11894 3307 Face 22061 11894 14410 8725 Face 22062 19800 19879 19878 Face 22063 11155 11894 8725 Face 22064 22237 22243 16369 Face 22065 33935 21632 21727 Face 22066 21676 23278 23279 Face 22067 12164 12163 12076 Face 22068 21922 21921 21825 Face 22069 22243 14920 16369 Face 22070 14410 22273 16035 Face 22071 11923 13573 12903 Face 22072 8725 14410 16035 Face 22073 22273 4236 14784 Face 22074 16035 22273 14784 Face 22075 4236 20636 12437 Face 22076 20650 18165 20562 Face 22077 15620 15763 13573 Face 22078 12077 12164 12076 Face 22079 11756 11610 24124 Face 22080 21928 21927 21831 Face 22081 12251 12250 12163 Face 22082 14784 4236 12437 Face 22083 23783 23782 27280 Face 22084 20636 19277 19962 Face 22085 12437 20636 19962 Face 22086 19277 19722 19720 Face 22087 19962 19277 19720 Face 22088 19722 20479 20468 Face 22089 33098 33097 32963 Face 22090 34006 34132 34005 Face 22091 33648 33773 33647 Face 22092 33252 33388 33251 Face 22093 10092 7688 8362 Face 22094 32824 32823 32690 Face 22095 23451 25159 23785 Face 22096 24136 24141 24418 Face 22097 23452 23451 23785 Face 22098 10864 15305 13161 Face 22099 32691 32824 32690 Face 22100 13670 1316 1572 Face 22101 9989 7997 11014 Face 22102 10227 11014 7997 Face 22103 12568 13766 7997 Face 22104 9989 12568 7997 Face 22105 7384 7272 13673 Face 22106 7286 8128 12992 Face 22107 13759 6972 13766 Face 22108 11059 11121 11120 Face 22109 12568 13759 13766 Face 22110 10973 11005 6972 Face 22111 13759 10973 6972 Face 22112 10688 11046 11005 Face 22113 10973 10688 11005 Face 22114 19720 19722 20468 Face 22115 10766 12639 11046 Face 22116 13180 13206 755 Face 22117 20479 21472 21470 Face 22118 13597 13598 13690 Face 22119 13608 13701 13700 Face 22120 13179 13650 13370 Face 22121 12903 13179 13370 Face 22122 5624 12271 9562 Face 22123 12903 13370 12362 Face 22124 11776 5624 11859 Face 22125 12271 12903 12362 Face 22126 3186 11776 11859 Face 22127 12271 12362 9562 Face 22128 984 3186 11859 Face 22129 5624 9562 11859 Face 22130 10109 11524 14293 Face 22131 34673 34582 34424 Face 22132 12339 12431 12338 Face 22133 20646 22243 22141 Face 22134 12699 12698 12608 Face 22135 21627 21722 21626 Face 22136 1680 3186 984 Face 22137 20468 20479 21470 Face 22138 10688 10766 11046 Face 22139 8031 34344 34494 Face 22140 10766 11842 12639 Face 22141 21472 14604 10579 Face 22142 11104 416 13359 Face 22143 12698 12607 12608 Face 22144 9850 19923 352 Face 22145 11343 11424 11342 Face 22146 12789 12788 12698 Face 22147 13249 13248 13153 Face 22148 20627 20628 21867 Face 22149 12699 12789 12698 Face 22150 12882 12881 12788 Face 22151 9870 10312 16174 Face 22152 10312 9870 3897 Face 22153 20010 24227 20011 Face 22154 12227 12226 12141 Face 22155 416 11104 12385 Face 22156 11568 11567 11489 Face 22157 11565 11643 11564 Face 22158 34468 34411 34585 Face 22159 8356 9538 8459 Face 22160 13536 16019 13726 Face 22161 16019 9870 16174 Face 22162 27443 27326 20848 Face 22163 14507 12945 19438 Face 22164 13220 13313 13312 Face 22165 16019 16174 13726 Face 22166 21470 21472 10579 Face 22167 17544 19075 17970 Face 22168 14604 20542 20541 Face 22169 10579 14604 20541 Face 22170 12525 12434 20541 Face 22171 20542 12525 20541 Face 22172 12525 19675 20635 Face 22173 12434 12525 20635 Face 22174 6015 20 20635 Face 22175 19702 18326 19416 Face 22176 19675 6015 20635 Face 22177 25159 24411 24195 Face 22178 34286 34337 34733 Face 22179 12789 12882 12788 Face 22180 13444 14724 20 Face 22181 12251 12339 12250 Face 22182 12974 12973 12881 Face 22183 12164 12251 12163 Face 22184 12431 12430 12338 Face 22185 9673 12457 3571 Face 22186 12339 12338 12250 Face 22187 6015 13444 20 Face 22188 13670 1572 12746 Face 22189 14523 15042 14724 Face 22190 13444 14523 14724 Face 22191 21553 21554 15042 Face 22192 14523 21553 15042 Face 22193 15028 14642 21554 Face 22194 21553 15028 21554 Face 22195 15028 19724 21269 Face 22196 14642 15028 21269 Face 22197 2944 33155 2945 Face 22198 30352 30419 30351 Face 22199 19591 19588 16021 Face 22200 33252 33251 33116 Face 22201 32080 32079 31974 Face 22202 32956 32955 32823 Face 22203 32824 32956 32823 Face 22204 12921 9989 11040 Face 22205 8554 13736 19298 Face 22206 34672 11040 11014 Face 22207 19724 21272 22537 Face 22208 13786 10868 123 Face 22209 20375 20374 19591 Face 22210 21269 19724 22537 Face 22211 12197 12568 9989 Face 22212 20832 15166 19767 Face 22213 12921 12197 9989 Face 22214 13661 13759 12568 Face 22215 12197 13661 12568 Face 22216 3954 10973 13759 Face 22217 13661 3954 13759 Face 22218 3954 9791 10688 Face 22219 10973 3954 10688 Face 22220 13021 10766 10688 Face 22221 9791 13021 10688 Face 22222 11225 11842 10766 Face 22223 19660 19743 19659 Face 22224 19594 20375 19591 Face 22225 23551 12431 22909 Face 22226 34541 34317 34346 Face 22227 12056 12057 12143 Face 22228 21722 21819 21818 Face 22229 23384 19928 23546 Face 22230 13159 13158 13064 Face 22231 33363 33362 33226 Face 22232 5383 1680 984 Face 22233 13021 11225 10766 Face 22234 34465 34574 34675 Face 22235 11225 13554 11842 Face 22236 12575 12576 12665 Face 22237 21272 19863 22053 Face 22238 11454 13299 4725 Face 22239 12707 11207 12617 Face 22240 22537 21272 22053 Face 22241 24541 29739 23848 Face 22242 12988 12989 68 Face 22243 11863 12896 12716 Face 22244 11506 11505 11423 Face 22245 11296 13670 11681 Face 22246 13267 13266 9996 Face 22247 22138 15577 13732 Face 22248 10817 12147 12894 Face 22249 9870 2634 3897 Face 22250 21477 11524 10109 Face 22251 11643 11722 11642 Face 22252 34325 34683 34319 Face 22253 13500 13501 13597 Face 22254 10746 11612 10742 Face 22255 11722 11721 11642 Face 22256 23189 24343 23387 Face 22257 23997 23644 23024 Face 22258 19863 16192 12526 Face 22259 29675 29674 29542 Face 22260 22053 19863 12526 Face 22261 27229 27339 27228 Face 22262 12983 7174 12798 Face 22263 27458 27457 27338 Face 22264 13191 21001 20933 Face 22265 19038 16951 19222 Face 22266 34363 13657 34380 Face 22267 19581 17540 17312 Face 22268 19331 19408 19407 Face 22269 19330 19331 19407 Face 22270 14391 16369 13947 Face 22271 12560 22611 16498 Face 22272 12882 12974 12881 Face 22273 13064 13063 12973 Face 22274 20463 20461 19666 Face 22275 12974 13064 12973 Face 22276 11424 11506 11423 Face 22277 11585 11584 11505 Face 22278 11424 11423 11342 Face 22279 11663 11662 11584 Face 22280 11731 12707 12617 Face 22281 11343 11342 11266 Face 22282 11681 13670 12746 Face 22283 11207 12988 68 Face 22284 11681 12746 13758 Face 22285 10765 10519 6139 Face 22286 11844 11522 34751 Face 22287 11774 11681 13758 Face 22288 10963 19634 12619 Face 22289 30434 30435 30505 Face 22290 14852 13383 13356 Face 22291 13449 20989 19674 Face 22292 19488 19487 19407 Face 22293 16341 14852 12856 Face 22294 16183 16341 12856 Face 22295 19408 19488 19407 Face 22296 19569 19568 19487 Face 22297 19488 19569 19487 Face 22298 19652 19651 19568 Face 22299 34688 34653 34762 Face 22300 19569 19652 19568 Face 22301 13064 13158 13063 Face 22302 16353 14157 11515 Face 22303 22141 22237 21937 Face 22304 13158 13157 13063 Face 22305 19735 19734 19651 Face 22306 22141 22243 22237 Face 22307 19652 19735 19651 Face 22308 31868 31975 31867 Face 22309 30531 30530 25676 Face 22310 24961 24962 25100 Face 22311 28008 26701 26449 Face 22312 12453 12545 11163 Face 22313 22312 22408 22311 Face 22314 14791 12189 15177 Face 22315 19818 19817 19734 Face 22316 20395 2660 20317 Face 22317 160 13958 6794 Face 22318 13575 1680 5383 Face 22319 1787 13575 5383 Face 22320 34618 34587 34670 Face 22321 12007 11922 13036 Face 22322 6614 34721 18264 Face 22323 34536 3573 34818 Face 22324 16500 12844 21673 Face 22325 34595 34481 34518 Face 22326 19735 19818 19734 Face 22327 20451 14782 20450 Face 22328 11305 13674 11519 Face 22329 19799 19800 19878 Face 22330 22585 14371 22584 Face 22331 12896 11305 11519 Face 22332 19879 19954 19953 Face 22333 16191 14791 16190 Face 22334 9894 11523 7890 Face 22335 13249 13342 13248 Face 22336 13630 13536 13726 Face 22337 10601 7830 2529 Face 22338 19743 19742 19659 Face 22339 12147 13548 12894 Face 22340 33783 33782 33657 Face 22341 19660 19659 19576 Face 22342 33658 33783 33657 Face 22343 33090 33089 32955 Face 22344 32564 32691 32563 Face 22345 13577 12921 11284 Face 22346 11040 11284 12921 Face 22347 12111 12197 12921 Face 22348 13577 12111 12921 Face 22349 13660 13661 12197 Face 22350 12111 13660 12197 Face 22351 10977 3954 13661 Face 22352 13660 10977 13661 Face 22353 12815 9791 3954 Face 22354 10977 12815 3954 Face 22355 23289 23523 23290 Face 22356 24288 21236 24289 Face 22357 11277 7698 4854 Face 22358 19894 19893 19817 Face 22359 19818 19894 19817 Face 22360 30146 30147 30210 Face 22361 11863 12716 11465 Face 22362 12896 11519 12716 Face 22363 12473 11465 13765 Face 22364 12473 11863 11465 Face 22365 11267 11343 11266 Face 22366 12465 12473 13765 Face 22367 21531 21624 21623 Face 22368 11136 11198 11135 Face 22369 5466 11731 12617 Face 22370 21104 21013 22043 Face 22371 11207 68 12617 Face 22372 21435 21436 21530 Face 22373 21530 21531 21623 Face 22374 20217 22140 22043 Face 22375 7809 12459 13077 Face 22376 21463 20217 22043 Face 22377 27339 27458 27338 Face 22378 19634 19597 12619 Face 22379 12846 13021 9791 Face 22380 23205 23534 22714 Face 22381 12815 12846 9791 Face 22382 12846 12814 11225 Face 22383 13021 12846 11225 Face 22384 19972 19971 19893 Face 22385 12814 13553 11225 Face 22386 11858 9644 10712 Face 22387 13668 11858 10712 Face 22388 10712 9644 11769 Face 22389 25091 25092 25230 Face 22390 25370 25371 23646 Face 22391 20892 17819 431 Face 22392 22216 22312 22215 Face 22393 9644 8260 11769 Face 22394 27 38 12017 Face 22395 11804 11803 11721 Face 22396 12745 8354 13122 Face 22397 19894 19972 19893 Face 22398 20049 20048 19971 Face 22399 19972 20049 19971 Face 22400 20131 20130 20048 Face 22401 20049 20131 20048 Face 22402 20131 20209 20208 Face 22403 20130 20131 20208 Face 22404 12181 11039 4323 Face 22405 20209 20291 20290 Face 22406 2634 11039 12181 Face 22407 34733 34674 23023 Face 22408 27578 27577 27457 Face 22409 13415 13510 13414 Face 22410 11528 12453 11163 Face 22411 7240 7348 7347 Face 22412 26558 25985 26559 Face 22413 12673 14482 14775 Face 22414 14900 12673 14775 Face 22415 16500 21673 13162 Face 22416 20426 13350 20396 Face 22417 12844 14332 21673 Face 22418 13350 16500 13162 Face 22419 19388 19389 19881 Face 22420 12860 886 15163 Face 22421 12821 12376 13572 Face 22422 13289 14653 12498 Face 22423 20208 20209 20290 Face 22424 22602 22508 17353 Face 22425 27458 27578 27457 Face 22426 13531 13530 13435 Face 22427 991 7328 7329 Face 22428 23646 24591 13165 Face 22429 3761 13004 3765 Face 22430 12890 105 9278 Face 22431 19107 17839 18041 Face 22432 12563 11383 2781 Face 22433 7488 13457 9424 Face 22434 11289 13187 8554 Face 22435 27830 21045 20954 Face 22436 34294 34380 5895 Face 22437 31165 31164 31065 Face 22438 27378 29068 29066 Face 22439 20201 20202 20284 Face 22440 12530 12618 13643 Face 22441 3897 2634 12181 Face 22442 23128 23351 11829 Face 22443 15874 17136 15587 Face 22444 11039 5470 4323 Face 22445 31161 31160 31061 Face 22446 19357 4362 13727 Face 22447 19413 21484 4710 Face 22448 33531 33530 33397 Face 22449 30699 30698 30604 Face 22450 29983 29982 29924 Face 22451 33398 33397 33261 Face 22452 32691 32690 32563 Face 22453 33106 33241 33105 Face 22454 12828 13577 11847 Face 22455 34732 34406 11284 Face 22456 11077 11076 29935 Face 22457 11205 4601 10692 Face 22458 11523 8772 7890 Face 22459 11361 11362 4339 Face 22460 9414 13830 19599 Face 22461 27000 27116 27115 Face 22462 12070 12069 11985 Face 22463 11986 12070 11985 Face 22464 14788 14787 15449 Face 22465 20923 20835 21571 Face 22466 11700 12737 12646 Face 22467 12717 11468 12626 Face 22468 11267 11266 11197 Face 22469 11305 12028 12377 Face 22470 11076 11136 11075 Face 22471 11198 11267 11197 Face 22472 11076 11075 11027 Face 22473 11198 11197 11135 Face 22474 11297 11223 11221 Face 22475 11136 11135 11075 Face 22476 22408 22407 22311 Face 22477 11546 11221 11045 Face 22478 22505 22504 22407 Face 22479 22408 22505 22407 Face 22480 23440 23446 24677 Face 22481 13534 13630 13726 Face 22482 12110 12111 13577 Face 22483 12397 12398 12487 Face 22484 12828 12110 13577 Face 22485 11213 13660 12111 Face 22486 12110 11213 12111 Face 22487 3316 10977 13660 Face 22488 11213 3316 13660 Face 22489 13758 12746 10744 Face 22490 12746 1572 11060 Face 22491 7737 12815 10977 Face 22492 1572 13457 11060 Face 22493 3316 7737 10977 Face 22494 11603 12846 12815 Face 22495 11844 13758 11522 Face 22496 7737 11603 12815 Face 22497 14293 22141 21937 Face 22498 12450 11923 12271 Face 22499 20647 14928 20738 Face 22500 12942 19386 19352 Face 22501 19192 25560 21675 Face 22502 22159 2664 20997 Face 22503 13456 13551 2132 Face 22504 29987 30048 29986 Face 22505 18997 1881 18068 Face 22506 22035 16499 12498 Face 22507 22132 17669 22037 Face 22508 12895 12894 13361 Face 22509 13005 13103 12376 Face 22510 11027 11075 29994 Face 22511 11159 12808 12013 Face 22512 11078 11077 29935 Face 22513 11546 11297 11221 Face 22514 27705 27704 27577 Face 22515 12990 1121 8441 Face 22516 34397 13758 11844 Face 22517 12605 12695 12604 Face 22518 12695 12785 12694 Face 22519 22302 22398 22397 Face 22520 34575 34754 34761 Face 22521 13436 13531 13435 Face 22522 15613 15755 3058 Face 22523 12091 11761 11523 Face 22524 34307 34298 12990 Face 22525 13622 13715 13621 Face 22526 6692 7166 860 Face 22527 10856 7069 13717 Face 22528 11230 1418 13714 Face 22529 13625 13718 13624 Face 22530 13718 10856 13717 Face 22531 13246 13245 13150 Face 22532 13151 13246 13150 Face 22533 29471 34679 34603 Face 22534 17656 20472 17283 Face 22535 13720 8266 13719 Face 22536 34585 10921 11543 Face 22537 4362 12948 16514 Face 22538 19171 17140 19172 Face 22539 11897 11896 11815 Face 22540 2512 19336 19335 Face 22541 12170 14909 21487 Face 22542 11771 2375 11854 Face 22543 25317 22807 22728 Face 22544 22768 22770 23762 Face 22545 12650 32429 2954 Face 22546 22845 25296 22968 Face 22547 11679 12814 12846 Face 22548 23076 24429 24428 Face 22549 11603 11679 12846 Face 22550 13647 13553 12814 Face 22551 11679 13647 12814 Face 22552 11858 13668 11919 Face 22553 11838 11858 11919 Face 22554 11419 11418 11337 Face 22555 11245 11320 11244 Face 22556 11601 12745 7784 Face 22557 13608 13607 13510 Face 22558 8354 424 13122 Face 22559 10331 8365 13749 Face 22560 11906 11905 11824 Face 22561 34352 34654 34551 Face 22562 21263 17819 20892 Face 22563 21760 21858 13069 Face 22564 27396 29143 29088 Face 22565 12157 12156 12069 Face 22566 4622 12147 10817 Face 22567 20217 20299 22140 Face 22568 15449 14308 10714 Face 22569 15722 22135 13537 Face 22570 10615 11369 9299 Face 22571 11079 11078 25431 Face 22572 12717 12626 11463 Face 22573 13031 13746 5748 Face 22574 11439 12992 771 Face 22575 12350 28423 15736 Face 22576 11716 11798 11715 Face 22577 34444 11440 9181 Face 22578 34665 32197 34634 Face 22579 11161 11099 1316 Face 22580 8634 12298 12389 Face 22581 26096 26097 27380 Face 22582 34013 34012 33886 Face 22583 7698 11361 4339 Face 22584 7015 16661 26900 Face 22585 14282 14813 11777 Face 22586 22202 22298 22297 Face 22587 27963 27962 27830 Face 22588 13179 13573 15763 Face 22589 21859 21646 17359 Face 22590 19747 19830 19829 Face 22591 26420 27733 27699 Face 22592 13370 13652 12451 Face 22593 20379 20378 20294 Face 22594 27699 27733 29407 Face 22595 12362 13370 12451 Face 22596 10690 17416 17755 Face 22597 20702 20613 25417 Face 22598 12362 12451 13667 Face 22599 28544 13734 28937 Face 22600 11041 19435 17192 Face 22601 12746 11060 10744 Face 22602 25432 25431 29878 Face 22603 25405 25440 25439 Face 22604 13020 8353 34529 Face 22605 34351 34453 28155 Face 22606 11528 11163 11276 Face 22607 33496 33495 33362 Face 22608 13103 11222 12376 Face 22609 11273 11528 11276 Face 22610 12453 3301 12821 Face 22611 12545 12453 12821 Face 22612 3301 13005 12376 Face 22613 12821 3301 12376 Face 22614 13103 11437 11222 Face 22615 34692 34803 11214 Face 22616 32292 32398 32397 Face 22617 2171 32417 2042 Face 22618 8031 11768 12809 Face 22619 11223 12653 4853 Face 22620 12573 12572 12483 Face 22621 2749 416 12295 Face 22622 19666 19643 3378 Face 22623 11383 4854 2781 Face 22624 22394 22491 22393 Face 22625 16336 16178 14722 Face 22626 32624 12541 16843 Face 22627 5466 12617 12529 Face 22628 13622 13621 13524 Face 22629 11561 11560 11482 Face 22630 34413 34309 34749 Face 22631 13525 13622 13524 Face 22632 12876 12877 12968 Face 22633 8852 10553 7069 Face 22634 13153 13152 13058 Face 22635 12969 13059 13058 Face 22636 13059 13153 13058 Face 22637 13248 13247 13152 Face 22638 23709 22845 22968 Face 22639 34552 34738 34612 Face 22640 21237 23792 23791 Face 22641 12078 12077 11992 Face 22642 12252 12251 12164 Face 22643 22928 23788 23180 Face 22644 12340 12339 12251 Face 22645 12165 12252 12164 Face 22646 32445 32562 32561 Face 22647 12252 12340 12251 Face 22648 13121 13359 2749 Face 22649 11383 12918 4854 Face 22650 11798 11797 11715 Face 22651 14119 23135 23079 Face 22652 5624 13653 12271 Face 22653 7698 4339 4854 Face 22654 11989 11988 11905 Face 22655 11923 12903 12271 Face 22656 13758 10744 11522 Face 22657 24548 24625 24547 Face 22658 11009 28811 18543 Face 22659 25407 25406 29866 Face 22660 18352 27278 27160 Face 22661 28681 29593 27513 Face 22662 25986 27567 29319 Face 22663 26175 26176 26293 Face 22664 26062 26063 26175 Face 22665 21737 21736 21640 Face 22666 34545 34576 34471 Face 22667 21834 21833 21736 Face 22668 21737 21834 21736 Face 22669 21834 21930 21929 Face 22670 984 11859 12471 Face 22671 9562 13667 12285 Face 22672 22542 21420 24773 Face 22673 28552 28008 26449 Face 22674 30761 30867 30760 Face 22675 8266 9729 13719 Face 22676 14654 14722 14847 Face 22677 21937 22235 20384 Face 22678 22492 22586 22491 Face 22679 11879 11963 11878 Face 22680 23892 24316 24747 Face 22681 10327 15441 15577 Face 22682 1901 2790 11351 Face 22683 8675 5249 1196 Face 22684 11464 12717 11463 Face 22685 11369 1901 11351 Face 22686 11464 11463 11860 Face 22687 13674 13559 11468 Face 22688 971 11778 11860 Face 22689 11778 11464 11860 Face 22690 6262 5471 8248 Face 22691 11521 971 11860 Face 22692 12051 12050 11965 Face 22693 12933 7012 9286 Face 22694 21833 21834 21929 Face 22695 20917 19841 20638 Face 22696 8935 20529 5631 Face 22697 11483 11561 11482 Face 22698 19670 20463 19666 Face 22699 22235 21289 20383 Face 22700 13370 13650 13652 Face 22701 12073 12160 12072 Face 22702 21930 22028 22027 Face 22703 5383 984 12263 Face 22704 21929 21930 22027 Face 22705 22126 22125 22027 Face 22706 22028 22126 22027 Face 22707 18843 22220 17989 Face 22708 32023 32127 32022 Face 22709 30236 30301 30300 Face 22710 33262 33398 33261 Face 22711 32127 32231 32126 Face 22712 33377 33376 33240 Face 22713 19102 17336 17605 Face 22714 33899 33898 33772 Face 22715 12247 12246 12159 Face 22716 9562 12362 13667 Face 22717 14771 13187 11289 Face 22718 11347 11428 11346 Face 22719 5234 5365 5233 Face 22720 22323 22131 21742 Face 22721 22020 22118 22019 Face 22722 11951 8227 8122 Face 22723 12741 11942 9752 Face 22724 11117 11179 11116 Face 22725 12741 9752 12013 Face 22726 12185 12741 12013 Face 22727 5331 15092 5371 Face 22728 11942 12027 9752 Face 22729 12565 12925 11159 Face 22730 9319 9432 13767 Face 22731 12925 12565 11299 Face 22732 12808 12185 12013 Face 22733 34606 34682 11299 Face 22734 12925 12808 11159 Face 22735 11739 11738 11659 Face 22736 11660 11739 11659 Face 22737 8473 22557 16040 Face 22738 1097 14203 12710 Face 22739 971 11521 13013 Face 22740 12102 971 13013 Face 22741 30571 30665 30570 Face 22742 31068 31167 31067 Face 22743 119 7718 10962 Face 22744 31268 31267 31166 Face 22745 13525 13524 13429 Face 22746 13715 13714 13621 Face 22747 10856 8852 7069 Face 22748 26087 27373 24244 Face 22749 12784 12877 12783 Face 22750 12968 12969 13058 Face 22751 13065 13064 12974 Face 22752 12975 12883 28170 Face 22753 12165 12164 12077 Face 22754 12078 12165 12077 Face 22755 25408 25407 29866 Face 22756 11993 12078 11992 Face 22757 19883 20455 1875 Face 22758 25409 25408 29865 Face 22759 34742 28558 34630 Face 22760 21560 15462 3696 Face 22761 26793 26535 25655 Face 22762 19980 17629 20056 Face 22763 13264 8215 13360 Face 22764 17353 22508 18936 Face 22765 12784 12783 12693 Face 22766 12340 12252 12341 Face 22767 12694 12784 12693 Face 22768 12877 12876 12783 Face 22769 10553 8996 7996 Face 22770 22312 22311 22215 Face 22771 34491 34720 34357 Face 22772 8996 10553 8989 Face 22773 7069 10553 7996 Face 22774 34727 11693 34279 Face 22775 34615 12803 11004 Face 22776 12737 34636 11212 Face 22777 13511 13608 13510 Face 22778 3819 11004 11442 Face 22779 12486 12487 12575 Face 22780 8570 8778 13189 Face 22781 11859 9562 12285 Face 22782 16332 24698 16333 Face 22783 9279 11847 34599 Face 22784 17687 17860 17832 Face 22785 12195 27739 12109 Face 22786 11456 12110 12828 Face 22787 13762 11456 12828 Face 22788 652 8539 9415 Face 22789 26123 11414 26238 Face 22790 19217 18935 17395 Face 22791 23177 23114 23829 Face 22792 16033 17540 19473 Face 22793 12072 12159 12071 Face 22794 11187 11186 11124 Face 22795 11933 14654 14536 Face 22796 11125 11187 11124 Face 22797 19172 17040 12587 Face 22798 10557 21748 20384 Face 22799 30151 30152 30215 Face 22800 13331 13330 13237 Face 22801 11070 11069 11024 Face 22802 2907 3179 9632 Face 22803 11578 11577 11498 Face 22804 1901 3179 2907 Face 22805 34069 21157 34070 Face 22806 2790 1901 2907 Face 22807 4080 3179 23503 Face 22808 21065 21066 21155 Face 22809 21814 21815 21910 Face 22810 20053 20054 20135 Face 22811 11170 11169 31321 Face 22812 3893 13639 13258 Face 22813 7166 10215 860 Face 22814 12070 12157 12069 Face 22815 4087 19403 2664 Face 22816 1678 14771 11289 Face 22817 12244 12243 12156 Face 22818 25082 25028 25294 Face 22819 12890 12016 22659 Face 22820 11859 12285 12471 Face 22821 24316 25082 25294 Face 22822 11143 11213 12110 Face 22823 17340 17341 19719 Face 22824 11456 11143 12110 Face 22825 11143 7271 3316 Face 22826 11213 11143 3316 Face 22827 7271 13558 7737 Face 22828 3316 7271 7737 Face 22829 13558 13304 11603 Face 22830 7737 13558 11603 Face 22831 12651 11679 11603 Face 22832 13304 12651 11603 Face 22833 13648 14693 13555 Face 22834 12651 13555 11679 Face 22835 11838 11919 9755 Face 22836 8373 11838 9755 Face 22837 19988 17970 17178 Face 22838 11484 11483 11400 Face 22839 28011 28269 27623 Face 22840 22450 23311 25488 Face 22841 17553 3161 22342 Face 22842 22904 23619 23778 Face 22843 11073 11133 11072 Face 22844 20643 20629 19842 Face 22845 11073 11072 11026 Face 22846 34396 34439 34393 Face 22847 11195 11194 11132 Face 22848 11133 11132 11072 Face 22849 11503 11582 11502 Face 22850 11133 11195 11132 Face 22851 11503 11502 11420 Face 22852 11582 11581 11502 Face 22853 11264 11340 11263 Face 22854 11421 11420 11339 Face 22855 11264 11263 11194 Face 22856 11340 11421 11339 Face 22857 11195 11264 11194 Face 22858 11340 11339 11263 Face 22859 11660 11659 11581 Face 22860 11582 11660 11581 Face 22861 15871 3894 16336 Face 22862 11822 11821 11738 Face 22863 8253 14536 14535 Face 22864 18326 18261 24448 Face 22865 6397 29784 28295 Face 22866 21815 21911 21910 Face 22867 7688 119 10962 Face 22868 10947 8253 14535 Face 22869 13655 13752 13663 Face 22870 23408 19 23795 Face 22871 13430 13429 13335 Face 22872 13430 13525 13429 Face 22873 8852 11160 9898 Face 22874 10553 8852 9898 Face 22875 11988 12072 11987 Face 22876 12877 12969 12968 Face 22877 34542 34573 34755 Face 22878 12975 13065 12974 Face 22879 19594 19591 14157 Face 22880 13074 19594 14157 Face 22881 16516 14483 16034 Face 22882 13074 14157 16353 Face 22883 13380 13381 11454 Face 22884 34764 34321 34543 Face 22885 2273 5469 3048 Face 22886 19823 19899 19822 Face 22887 28300 27878 27738 Face 22888 13640 19674 16423 Face 22889 13346 16516 4336 Face 22890 17441 17442 17527 Face 22891 3379 13818 14431 Face 22892 14483 16353 16034 Face 22893 12516 12604 12515 Face 22894 23621 23296 23460 Face 22895 22616 20216 21367 Face 22896 12694 12693 12603 Face 22897 12618 12708 13644 Face 22898 7556 22060 14910 Face 22899 19958 19957 20038 Face 22900 22060 3036 14910 Face 22901 10071 10084 10188 Face 22902 16031 14650 12615 Face 22903 31273 31272 31171 Face 22904 11688 11767 12847 Face 22905 34773 7461 10137 Face 22906 30976 30975 30874 Face 22907 11452 11370 24248 Face 22908 3802 11100 7411 Face 22909 20136 20214 20213 Face 22910 14971 14845 23316 Face 22911 20546 21644 21579 Face 22912 22235 21384 21289 Face 22913 28685 27628 26450 Face 22914 20054 20053 19976 Face 22915 15033 14903 12001 Face 22916 28439 28575 13159 Face 22917 34336 34451 34355 Face 22918 21384 21288 21289 Face 22919 17618 17528 17529 Face 22920 655 12854 13069 Face 22921 22561 3378 19269 Face 22922 19666 20461 20456 Face 22923 13004 9278 3765 Face 22924 20827 20739 21013 Face 22925 16336 3893 16178 Face 22926 4339 9620 2781 Face 22927 13159 13065 28439 Face 22928 21196 20738 21104 Face 22929 3032 10331 34275 Face 22930 11696 12465 11683 Face 22931 11499 11578 11498 Face 22932 25410 25409 29864 Face 22933 11982 12066 11981 Face 22934 11656 11655 11577 Face 22935 12066 12153 12065 Face 22936 12153 12152 12065 Face 22937 12153 12240 12152 Face 22938 12240 12239 12152 Face 22939 12261 13265 13172 Face 22940 12328 12327 12239 Face 22941 7718 119 533 Face 22942 27578 27705 27577 Face 22943 19299 22627 19925 Face 22944 105 12890 22659 Face 22945 12424 12514 12423 Face 22946 11337 11336 11260 Face 22947 3894 3893 16336 Face 22948 12602 12601 12513 Face 22949 23927 24193 24252 Face 22950 34403 34456 34488 Face 22951 7848 15436 19356 Face 22952 11347 25796 25904 Face 22953 31699 31811 31698 Face 22954 18523 22125 22126 Face 22955 31811 31918 31810 Face 22956 20285 20286 18073 Face 22957 32287 32288 32393 Face 22958 21237 23020 24557 Face 22959 27395 27396 29088 Face 22960 1787 5383 12007 Face 22961 984 12471 12263 Face 22962 3845 16370 655 Face 22963 11002 12440 12348 Face 22964 31918 32023 31917 Face 22965 14803 14928 14569 Face 22966 33097 33232 33096 Face 22967 33398 33531 33397 Face 22968 1091 12710 12709 Face 22969 11331 11456 13762 Face 22970 33227 33363 33226 Face 22971 19298 20832 19767 Face 22972 23302 23301 25028 Face 22973 5383 12263 12007 Face 22974 34520 34562 34656 Face 22975 20321 22374 19303 Face 22976 12514 12602 12513 Face 22977 19717 19718 19799 Face 22978 22009 22107 22106 Face 22979 12692 12691 12601 Face 22980 14608 19297 15165 Face 22981 14371 15432 20744 Face 22982 12621 12712 13267 Face 22983 14373 12171 7697 Face 22984 12712 13266 13267 Face 22985 4025 19379 11918 Face 22986 7697 12171 12621 Face 22987 12171 12712 12621 Face 22988 13150 13245 13244 Face 22989 19297 20920 19600 Face 22990 15592 14373 7697 Face 22991 19359 14373 15592 Face 22992 16335 12616 14723 Face 22993 19600 19359 15592 Face 22994 1091 1097 12710 Face 22995 10963 12619 19379 Face 22996 12616 4025 11918 Face 22997 19093 19094 29484 Face 22998 14771 10816 13187 Face 22999 13736 13451 20832 Face 23000 12273 12364 34408 Face 23001 13182 34699 13089 Face 23002 7592 7704 10600 Face 23003 18943 28685 6529 Face 23004 21662 18635 17233 Face 23005 13100 11210 13752 Face 23006 12689 12688 12598 Face 23007 13336 13430 13335 Face 23008 14536 14847 14974 Face 23009 14535 14536 14974 Face 23010 11905 11988 11904 Face 23011 12159 12158 12071 Face 23012 15293 14408 11933 Face 23013 14405 20395 14645 Face 23014 22714 25143 25144 Face 23015 24991 15429 15428 Face 23016 34691 34304 34804 Face 23017 12825 11143 11456 Face 23018 11331 12825 11456 Face 23019 9199 7271 11143 Face 23020 12825 9199 11143 Face 23021 13462 13558 7271 Face 23022 14483 13074 16353 Face 23023 34641 34791 34311 Face 23024 14408 14899 14654 Face 23025 15294 15293 11933 Face 23026 12604 12694 12603 Face 23027 12426 12516 12425 Face 23028 11739 11822 11738 Face 23029 11986 11985 11902 Face 23030 11903 11902 11821 Face 23031 11822 11903 11821 Face 23032 22131 20038 21742 Face 23033 11903 11986 11902 Face 23034 12850 10557 20383 Face 23035 22610 22325 22419 Face 23036 20054 20136 20135 Face 23037 20733 20726 21846 Face 23038 18072 17982 20284 Face 23039 11135 11134 11074 Face 23040 14430 14506 12261 Face 23041 19813 19889 19812 Face 23042 24153 20695 21192 Face 23043 13456 2132 8167 Face 23044 9199 13462 7271 Face 23045 12094 13304 13558 Face 23046 13462 12094 13558 Face 23047 13743 12651 13304 Face 23048 23459 21489 24019 Face 23049 25112 25251 25250 Face 23050 12349 18966 7026 Face 23051 20395 20317 14645 Face 23052 13747 12086 10717 Face 23053 17536 15587 17136 Face 23054 12020 19924 16061 Face 23055 17941 18034 22412 Face 23056 12253 12341 12252 Face 23057 15587 15172 15040 Face 23058 13721 13720 13627 Face 23059 27834 27833 27704 Face 23060 971 34826 9561 Face 23061 11696 12564 12473 Face 23062 7069 7996 13716 Face 23063 13717 7069 13716 Face 23064 24234 26087 24244 Face 23065 14722 16178 14847 Face 23066 16178 16023 14847 Face 23067 25413 25412 29861 Face 23068 11163 12545 12363 Face 23069 15874 15587 15040 Face 23070 6595 29713 22183 Face 23071 15172 14486 14487 Face 23072 12240 12328 12239 Face 23073 29911 29910 29856 Face 23074 24380 11452 24381 Face 23075 11499 11498 11416 Face 23076 11261 11260 11191 Face 23077 11192 11261 11191 Face 23078 12602 12692 12601 Face 23079 18318 22439 27363 Face 23080 12438 22561 19269 Face 23081 19564 19647 19646 Face 23082 12700 12699 12609 Face 23083 15040 15172 14487 Face 23084 25136 25082 24316 Face 23085 1583 24820 24819 Face 23086 12094 13743 13304 Face 23087 14572 13648 13745 Face 23088 32693 32692 32565 Face 23089 21735 21832 21734 Face 23090 13743 13648 12651 Face 23091 32963 33097 32962 Face 23092 19386 19843 19842 Face 23093 34655 34487 34379 Face 23094 11934 427 18543 Face 23095 14033 20321 19303 Face 23096 23286 23045 24408 Face 23097 4025 10963 19379 Face 23098 19707 22785 19708 Face 23099 14157 16021 11515 Face 23100 21291 21290 20376 Face 23101 19591 20374 19588 Face 23102 21190 18165 20650 Face 23103 22737 23888 24899 Face 23104 23045 14033 19303 Face 23105 13153 13248 13152 Face 23106 11829 20491 20845 Face 23107 12967 13057 13056 Face 23108 19923 9057 19908 Face 23109 21067 21157 21156 Face 23110 12966 12967 13056 Face 23111 12614 12367 3764 Face 23112 19850 5466 5467 Face 23113 12016 11760 13188 Face 23114 12988 13080 972 Face 23115 5748 7176 9894 Face 23116 19469 17151 17152 Face 23117 13174 3568 12826 Face 23118 34586 9279 34599 Face 23119 16034 13203 22653 Face 23120 16034 16353 13203 Face 23121 11814 8473 16040 Face 23122 16353 11515 13203 Face 23123 20361 20448 20360 Face 23124 16345 4491 14788 Face 23125 19475 20385 12826 Face 23126 4336 16034 22653 Face 23127 11206 11274 13079 Face 23128 3568 19475 12826 Face 23129 13451 14610 20832 Face 23130 14610 19683 15166 Face 23131 12736 11608 12201 Face 23132 171 3248 3209 Face 23133 14486 9285 5763 Face 23134 14487 14486 5763 Face 23135 14685 14808 7189 Face 23136 3423 9102 9783 Face 23137 13655 13100 13752 Face 23138 13100 11861 11945 Face 23139 12599 12598 12510 Face 23140 12599 12689 12598 Face 23141 22205 22206 22301 Face 23142 7174 17538 7085 Face 23143 11905 11904 11823 Face 23144 12072 12071 11987 Face 23145 15870 3508 15871 Face 23146 2660 6794 20317 Face 23147 24687 24688 24823 Face 23148 21278 2636 21275 Face 23149 21 3507 5763 Face 23150 24604 23877 24409 Face 23151 8037 8036 3573 Face 23152 11071 11131 11070 Face 23153 22419 22515 22604 Face 23154 4989 5469 2273 Face 23155 10817 12894 12895 Face 23156 1318 4989 2273 Face 23157 22255 22160 8167 Face 23158 12258 10817 12895 Face 23159 4478 2236 4874 Face 23160 16516 16034 4336 Face 23161 20275 20274 20192 Face 23162 11933 14408 14654 Face 23163 12604 12603 12515 Face 23164 12334 12426 12333 Face 23165 13096 13188 11944 Face 23166 22585 22584 22490 Face 23167 13243 13336 13242 Face 23168 13147 13148 13242 Face 23169 12424 12423 12331 Face 23170 19726 17440 17351 Face 23171 12157 12244 12156 Face 23172 12332 12424 12331 Face 23173 12332 12331 12243 Face 23174 12244 12332 12243 Face 23175 11075 11135 11074 Face 23176 12514 12513 12423 Face 23177 9285 21 5763 Face 23178 2530 20449 2636 Face 23179 13361 13456 8167 Face 23180 19967 19966 19888 Face 23181 10754 4575 4574 Face 23182 34753 34283 34722 Face 23183 14366 9867 3507 Face 23184 21 14366 3507 Face 23185 12550 6510 26812 Face 23186 11017 11016 30383 Face 23187 22914 22913 23666 Face 23188 25414 25413 29860 Face 23189 32127 32126 32022 Face 23190 25074 4349 4478 Face 23191 32288 32394 32393 Face 23192 33748 33747 33622 Face 23193 22926 23968 23257 Face 23194 5757 12851 21395 Face 23195 29962 30023 29961 Face 23196 25386 25387 20141 Face 23197 34643 34586 34599 Face 23198 34608 34595 34518 Face 23199 3822 24550 23185 Face 23200 25292 24008 24007 Face 23201 14366 12550 9867 Face 23202 21701 21798 21797 Face 23203 22599 9045 22598 Face 23204 13548 13551 13456 Face 23205 12465 11696 12473 Face 23206 12564 13385 11863 Face 23207 21558 21478 21571 Face 23208 14760 1096 13358 Face 23209 20449 20426 2636 Face 23210 11395 11394 11313 Face 23211 13436 13435 13341 Face 23212 13628 13627 13530 Face 23213 11274 13174 13079 Face 23214 14602 13350 20426 Face 23215 22516 21198 24423 Face 23216 12617 68 10075 Face 23217 9402 83 9759 Face 23218 23958 25197 24950 Face 23219 11417 11499 11416 Face 23220 25415 25414 29859 Face 23221 11070 11130 11069 Face 23222 11192 11191 11129 Face 23223 27705 27834 27704 Face 23224 5079 5080 14918 Face 23225 21551 22330 21367 Face 23226 13393 8553 9888 Face 23227 18860 28136 20540 Face 23228 12731 9886 7389 Face 23229 23664 24726 22772 Face 23230 18550 28697 27046 Face 23231 11947 11331 9447 Face 23232 29666 27046 27446 Face 23233 13762 9447 11331 Face 23234 11029 11085 11084 Face 23235 6691 11084 214 Face 23236 19902 19903 19980 Face 23237 6788 214 11146 Face 23238 7801 7687 11625 Face 23239 34390 34660 34428 Face 23240 13004 12890 9278 Face 23241 34708 34709 34606 Face 23242 13627 13720 13626 Face 23243 17790 20113 20031 Face 23244 27902 12790 12700 Face 23245 13627 13626 13529 Face 23246 12790 12789 12699 Face 23247 12975 12974 12882 Face 23248 34399 34761 34654 Face 23249 12883 12882 12789 Face 23250 13341 13340 13247 Face 23251 12883 12790 28033 Face 23252 13057 13151 13150 Face 23253 13248 13341 13247 Face 23254 8861 9446 11379 Face 23255 13056 13057 13150 Face 23256 25664 25663 25572 Face 23257 15432 15433 20744 Face 23258 29069 15733 11144 Face 23259 26556 29666 27446 Face 23260 11945 2783 12030 Face 23261 6533 12444 15880 Face 23262 11945 12030 12089 Face 23263 11210 11945 12089 Face 23264 15883 17483 17823 Face 23265 1014 11949 2783 Face 23266 28020 27888 26334 Face 23267 34646 34822 34558 Face 23268 11682 11444 8365 Face 23269 11674 11682 8365 Face 23270 19664 19665 19747 Face 23271 10331 11674 8365 Face 23272 26899 26679 26586 Face 23273 34515 34275 13366 Face 23274 11210 12089 12721 Face 23275 13752 11210 12721 Face 23276 31916 31915 31808 Face 23277 32021 32125 32020 Face 23278 15880 14669 32427 Face 23279 32569 32696 32568 Face 23280 19744 19743 19660 Face 23281 423 3059 12444 Face 23282 7176 12091 9894 Face 23283 8675 1196 2489 Face 23284 6533 423 12444 Face 23285 19269 3378 5143 Face 23286 12511 12510 12420 Face 23287 12511 12599 12510 Face 23288 14522 22421 21095 Face 23289 2785 21965 9996 Face 23290 11824 11905 11823 Face 23291 11988 11987 11904 Face 23292 11824 11823 11740 Face 23293 11741 11824 11740 Face 23294 15870 15871 14482 Face 23295 11741 11740 11661 Face 23296 25116 25117 25255 Face 23297 13350 13162 20396 Face 23298 24277 12458 23488 Face 23299 23767 20078 23583 Face 23300 12894 13456 13361 Face 23301 478 477 25086 Face 23302 15160 12860 15163 Face 23303 12366 14151 14059 Face 23304 20113 20114 20192 Face 23305 21943 22616 21368 Face 23306 20114 20193 20192 Face 23307 17984 18074 17983 Face 23308 20193 20275 20192 Face 23309 27902 12700 27772 Face 23310 12516 12515 12425 Face 23311 12334 12333 12245 Face 23312 18080 18081 18175 Face 23313 13097 22627 19299 Face 23314 13336 13335 13242 Face 23315 13053 13054 13147 Face 23316 19685 22727 23591 Face 23317 8354 10310 10748 Face 23318 7688 10092 1204 Face 23319 4993 10489 11666 Face 23320 13487 1868 3059 Face 23321 20041 20042 20123 Face 23322 6999 11217 7000 Face 23323 12098 12896 11863 Face 23324 13342 13436 13341 Face 23325 13342 13341 13248 Face 23326 423 13487 3059 Face 23327 16695 13212 18561 Face 23328 12631 11597 12722 Face 23329 22501 22502 22595 Face 23330 13649 12825 11331 Face 23331 11947 13649 11331 Face 23332 6386 9199 12825 Face 23333 13649 6386 12825 Face 23334 12995 13462 9199 Face 23335 6386 12995 9199 Face 23336 13105 12094 13462 Face 23337 12995 13105 13462 Face 23338 13105 12822 13743 Face 23339 12094 13105 13743 Face 23340 14572 13745 13744 Face 23341 13743 12822 13648 Face 23342 12492 12493 12581 Face 23343 11876 11875 11794 Face 23344 12407 12315 12316 Face 23345 34655 34358 34487 Face 23346 10970 9071 7286 Face 23347 11146 6888 6788 Face 23348 25416 25415 29858 Face 23349 34322 11358 11439 Face 23350 26786 3950 11674 Face 23351 12473 12564 11863 Face 23352 11364 3029 12274 Face 23353 30084 30146 30145 Face 23354 11440 11439 771 Face 23355 12389 12479 8739 Face 23356 20644 19351 19337 Face 23357 12013 9752 12098 Face 23358 1264 5342 1154 Face 23359 13385 11159 12098 Face 23360 9752 5766 12098 Face 23361 11159 13385 12564 Face 23362 12565 11159 12564 Face 23363 19387 19388 19880 Face 23364 11159 12013 12098 Face 23365 26933 25416 29857 Face 23366 8849 11920 11384 Face 23367 11130 11192 11129 Face 23368 34334 34649 34568 Face 23369 11025 11070 11024 Face 23370 11130 11129 11069 Face 23371 12618 13644 13643 Face 23372 2691 24319 24259 Face 23373 34505 34635 34395 Face 23374 7961 8067 1527 Face 23375 11977 11894 1868 Face 23376 14536 14654 14847 Face 23377 24307 23045 19303 Face 23378 13487 11977 1868 Face 23379 12808 11841 12185 Face 23380 11428 11427 11346 Face 23381 9990 12537 6801 Face 23382 11030 11086 11085 Face 23383 6625 33009 11029 Face 23384 5344 12643 11681 Face 23385 11085 11086 11146 Face 23386 12874 12875 12966 Face 23387 19637 19643 20387 Face 23388 12781 12782 12874 Face 23389 12875 12967 12966 Face 23390 12782 12781 12691 Face 23391 12692 12782 12691 Face 23392 13530 13627 13529 Face 23393 12782 12875 12874 Face 23394 13435 13530 13434 Face 23395 13720 13719 13626 Face 23396 13435 13434 13340 Face 23397 13341 13435 13340 Face 23398 13433 13528 13432 Face 23399 13530 13529 13434 Face 23400 13715 11230 13714 Face 23401 13625 13624 13527 Face 23402 32696 32695 32568 Face 23403 10228 8861 11379 Face 23404 22987 29848 29847 Face 23405 30969 31068 30968 Face 23406 29933 29878 29934 Face 23407 28097 28234 28096 Face 23408 29802 29803 17266 Face 23409 14910 3036 16338 Face 23410 22656 19848 22631 Face 23411 13675 13110 11162 Face 23412 4853 11529 13001 Face 23413 11068 11067 11022 Face 23414 11023 11068 11022 Face 23415 11128 11127 11067 Face 23416 11068 11128 11067 Face 23417 11190 11189 11127 Face 23418 11128 11190 11127 Face 23419 11259 11258 11189 Face 23420 12686 12685 12595 Face 23421 11190 11259 11189 Face 23422 12596 12686 12595 Face 23423 12776 12775 12685 Face 23424 33229 33228 33093 Face 23425 13178 12540 12180 Face 23426 24708 15864 24709 Face 23427 20285 18072 20284 Face 23428 32320 32321 16679 Face 23429 10447 7250 8243 Face 23430 1340 13639 3893 Face 23431 34625 34282 34548 Face 23432 21485 4473 19595 Face 23433 11276 11163 11101 Face 23434 12241 12329 12240 Face 23435 12421 12511 12420 Face 23436 8215 13808 13268 Face 23437 17540 19581 19473 Face 23438 20456 20461 21369 Face 23439 21965 21868 9996 Face 23440 32448 32565 32447 Face 23441 14650 12587 16033 Face 23442 11662 11741 11661 Face 23443 8935 5631 21369 Face 23444 20426 20396 15161 Face 23445 11505 11584 11504 Face 23446 12798 7085 12892 Face 23447 19880 20653 19843 Face 23448 14782 13732 20450 Face 23449 15581 20451 6269 Face 23450 11197 11196 11134 Face 23451 21367 22426 14643 Face 23452 11342 11423 11341 Face 23453 11135 11197 11134 Face 23454 11423 11505 11422 Face 23455 11584 11583 11504 Face 23456 12246 12245 12158 Face 23457 12159 12246 12158 Face 23458 12246 12334 12245 Face 23459 12426 12425 12333 Face 23460 19768 11731 5466 Face 23461 21457 17482 193 Face 23462 13148 13243 13242 Face 23463 12963 12964 13053 Face 23464 34139 34138 34012 Face 23465 11210 13100 11945 Face 23466 24078 22880 19274 Face 23467 34595 34287 11378 Face 23468 11027 29935 11076 Face 23469 11928 13300 6010 Face 23470 13385 12098 11863 Face 23471 20202 20285 20284 Face 23472 13266 2785 9996 Face 23473 5766 11305 12896 Face 23474 33911 17937 31651 Face 23475 34529 11276 13020 Face 23476 10846 7705 9296 Face 23477 9314 10137 7608 Face 23478 12537 9673 10452 Face 23479 22920 14566 14448 Face 23480 34746 34374 34762 Face 23481 13643 13644 10843 Face 23482 25404 29873 29872 Face 23483 34735 34615 11004 Face 23484 16804 16736 16805 Face 23485 28229 16702 18618 Face 23486 11742 11825 11741 Face 23487 22546 21769 23796 Face 23488 13568 12546 12453 Face 23489 34832 34335 34744 Face 23490 13123 11437 13103 Face 23491 11044 13123 13103 Face 23492 7830 10601 15682 Face 23493 22228 22132 22037 Face 23494 22044 12854 21665 Face 23495 25025 25498 23959 Face 23496 9752 12027 5766 Face 23497 13157 13156 13062 Face 23498 34405 34391 34335 Face 23499 12104 14479 12530 Face 23500 11277 11355 7698 Face 23501 14430 12261 11105 Face 23502 9101 11443 7698 Face 23503 11443 11361 7698 Face 23504 11299 12565 11696 Face 23505 10629 10630 10754 Face 23506 11920 5202 13300 Face 23507 11928 11920 13300 Face 23508 9894 12091 11523 Face 23509 12321 15294 14371 Face 23510 12690 12780 12689 Face 23511 12872 12873 12964 Face 23512 12780 12873 12872 Face 23513 12779 12780 12872 Face 23514 12290 21450 21356 Face 23515 25264 25401 25263 Face 23516 30614 30708 30613 Face 23517 12565 12564 11696 Face 23518 29858 25415 29859 Face 23519 11528 13568 12453 Face 23520 30281 30280 30215 Face 23521 11825 11824 11741 Face 23522 33623 33748 33622 Face 23523 33874 33873 33747 Face 23524 11031 11087 11086 Face 23525 32877 11030 11029 Face 23526 7156 357 7047 Face 23527 251 7047 357 Face 23528 251 357 356 Face 23529 6890 6790 6891 Face 23530 19562 17170 19482 Face 23531 9519 13299 13654 Face 23532 9446 12944 9166 Face 23533 22008 22009 22106 Face 23534 13339 13433 13338 Face 23535 13528 13527 13432 Face 23536 13339 13338 13245 Face 23537 13246 13339 13245 Face 23538 13528 13625 13527 Face 23539 13433 13432 13338 Face 23540 8861 10228 1418 Face 23541 13718 13717 13624 Face 23542 22604 22515 12844 Face 23543 11230 8861 1418 Face 23544 22515 3035 12844 Face 23545 11888 11972 11887 Face 23546 22604 12844 16500 Face 23547 19600 15592 15593 Face 23548 21102 16500 13350 Face 23549 21102 22604 16500 Face 23550 24167 24168 20696 Face 23551 14602 21102 13350 Face 23552 26533 29621 28699 Face 23553 20449 14602 20426 Face 23554 15306 12229 29472 Face 23555 25665 25666 25768 Face 23556 19475 4336 20385 Face 23557 27966 27965 27833 Face 23558 4336 22653 20385 Face 23559 27834 27966 27833 Face 23560 4491 12614 3764 Face 23561 26419 26533 28699 Face 23562 11335 11334 11258 Face 23563 11259 11335 11258 Face 23564 12418 12508 12417 Face 23565 11416 11415 11334 Face 23566 12596 12595 12507 Face 23567 12508 12596 12507 Face 23568 31370 31369 31266 Face 23569 30968 31067 30967 Face 23570 12146 19583 12320 Face 23571 21267 21204 20371 Face 23572 12256 12706 12367 Face 23573 3894 1340 3893 Face 23574 13020 11276 11101 Face 23575 19356 22131 22323 Face 23576 12421 12420 12328 Face 23577 12329 12421 12328 Face 23578 12154 12241 12153 Face 23579 12329 12328 12240 Face 23580 12067 12154 12066 Face 23581 12241 12240 12153 Face 23582 11900 11983 11899 Face 23583 12067 12066 11982 Face 23584 21829 21828 21731 Face 23585 21730 32880 21731 Face 23586 11662 11661 11583 Face 23587 11584 11662 11583 Face 23588 11266 11342 11265 Face 23589 11423 11422 11341 Face 23590 11266 11265 11196 Face 23591 11197 11266 11196 Face 23592 20726 20727 22035 Face 23593 11342 11341 11265 Face 23594 12438 19269 3036 Face 23595 22060 12438 3036 Face 23596 10951 13638 17544 Face 23597 27107 20425 26991 Face 23598 14654 14899 14722 Face 23599 15175 10557 12850 Face 23600 14899 14601 14722 Face 23601 22206 22302 22301 Face 23602 3934 16497 22627 Face 23603 12820 11141 15434 Face 23604 13054 13148 13147 Face 23605 12872 12964 12963 Face 23606 1876 2783 11945 Face 23607 11861 1876 11945 Face 23608 2121 5473 13711 Face 23609 13712 2121 13711 Face 23610 11578 11656 11577 Face 23611 11735 11734 11655 Face 23612 11101 11163 12363 Face 23613 12545 12821 13572 Face 23614 12098 5766 12896 Face 23615 12027 1264 12028 Face 23616 13171 11045 11762 Face 23617 11762 3950 34389 Face 23618 33363 33496 33362 Face 23619 12453 12546 3301 Face 23620 25432 29878 29877 Face 23621 8738 8634 8739 Face 23622 34329 1543 9447 Face 23623 32184 32288 32183 Face 23624 8962 13649 11947 Face 23625 11214 8962 11947 Face 23626 13751 6386 13649 Face 23627 8962 13751 13649 Face 23628 13088 12995 6386 Face 23629 13751 13088 6386 Face 23630 13552 13105 12995 Face 23631 13088 13552 12995 Face 23632 13569 12822 13105 Face 23633 13552 13569 13105 Face 23634 11060 13763 12369 Face 23635 11060 13457 13763 Face 23636 10744 11060 12369 Face 23637 7107 6999 7000 Face 23638 13607 13606 13509 Face 23639 12904 12843 16067 Face 23640 12267 13363 11358 Face 23641 12189 11145 15177 Face 23642 9057 9276 22432 Face 23643 1780 19906 5369 Face 23644 11977 15032 14410 Face 23645 22121 22216 22120 Face 23646 21360 19103 23761 Face 23647 29859 25414 29860 Face 23648 10744 12369 11442 Face 23649 11522 10744 11442 Face 23650 29857 25416 29858 Face 23651 11004 11522 11442 Face 23652 11443 9650 11361 Face 23653 13575 1787 34696 Face 23654 11894 11977 14410 Face 23655 11969 11968 11884 Face 23656 21925 21924 21828 Face 23657 13048 13049 13142 Face 23658 15032 22272 22273 Face 23659 14410 15032 22273 Face 23660 12965 13055 13054 Face 23661 12873 12965 12964 Face 23662 13258 16509 16023 Face 23663 4854 4339 2781 Face 23664 21829 21925 21828 Face 23665 21370 8935 21369 Face 23666 12546 11466 3301 Face 23667 11369 11351 9299 Face 23668 20611 32660 32659 Face 23669 25432 23959 25433 Face 23670 22492 22491 22394 Face 23671 13569 13744 12822 Face 23672 11032 11088 11087 Face 23673 32877 11031 11030 Face 23674 11088 11148 11147 Face 23675 11087 11088 11147 Face 23676 18428 21093 17267 Face 23677 21093 20544 17267 Face 23678 11507 26243 11587 Face 23679 9633 13654 10618 Face 23680 11379 9446 9166 Face 23681 32954 32953 32821 Face 23682 22107 22202 22201 Face 23683 9166 12944 10938 Face 23684 12008 23866 22816 Face 23685 5467 5466 12529 Face 23686 12944 12008 3172 Face 23687 22491 22585 22490 Face 23688 19925 19850 5467 Face 23689 13097 3934 22627 Face 23690 585 14506 14430 Face 23691 14601 16336 14722 Face 23692 16497 19768 19850 Face 23693 19716 19717 19798 Face 23694 3893 13258 16178 Face 23695 22139 21196 22140 Face 23696 13639 10714 13258 Face 23697 22398 22495 22494 Face 23698 21196 21104 22140 Face 23699 14203 11274 12710 Face 23700 22397 22398 22494 Face 23701 20338 20254 20255 Face 23702 11274 11206 12710 Face 23703 21965 16335 21868 Face 23704 27215 26099 26098 Face 23705 10733 13830 9414 Face 23706 12616 11918 14723 Face 23707 585 3589 14506 Face 23708 12256 10816 14771 Face 23709 972 11814 16040 Face 23710 22659 12016 13188 Face 23711 22557 22464 16040 Face 23712 11335 11416 11334 Face 23713 14787 14786 14308 Face 23714 12326 12418 12325 Face 23715 11498 11497 11415 Face 23716 12326 12325 12237 Face 23717 12508 12507 12417 Face 23718 12151 12238 12150 Face 23719 12238 12326 12237 Face 23720 4491 3764 14788 Face 23721 12614 12256 12367 Face 23722 10714 7706 16509 Face 23723 13624 13623 13526 Face 23724 13624 13717 13623 Face 23725 13527 13624 13526 Face 23726 13717 13716 13623 Face 23727 19957 19956 21742 Face 23728 28695 28565 27892 Face 23729 6690 6623 6625 Face 23730 11983 12067 11982 Face 23731 12154 12153 12066 Face 23732 22023 22022 21924 Face 23733 11819 11900 11818 Face 23734 22121 22120 22022 Face 23735 21925 22023 21924 Face 23736 12888 22561 12438 Face 23737 22023 22121 22022 Face 23738 12801 12438 22060 Face 23739 33155 33296 2813 Face 23740 11261 11337 11260 Face 23741 12801 12888 12438 Face 23742 11736 11819 11735 Face 23743 11418 11417 11336 Face 23744 11736 11735 11656 Face 23745 11900 11899 11818 Face 23746 11657 11736 11656 Face 23747 11819 11818 11735 Face 23748 12779 12778 12688 Face 23749 12689 12779 12688 Face 23750 12872 12871 12778 Face 23751 12779 12872 12778 Face 23752 12871 12872 12963 Face 23753 12964 13054 13053 Face 23754 12626 2930 12264 Face 23755 1876 12264 2783 Face 23756 9299 10867 5473 Face 23757 20040 17800 17708 Face 23758 11656 11735 11655 Face 23759 13712 13711 13618 Face 23760 3036 7490 16338 Face 23761 11818 11817 11734 Face 23762 5766 12028 11305 Face 23763 20384 22235 20383 Face 23764 12306 12307 12397 Face 23765 26814 16696 16695 Face 23766 11466 8366 13005 Face 23767 20041 20123 17800 Face 23768 17891 17890 17800 Face 23769 3301 11466 13005 Face 23770 12312 12403 12402 Face 23771 4728 2256 2516 Face 23772 11710 11711 11792 Face 23773 28099 28098 27965 Face 23774 21826 21922 21825 Face 23775 13798 13797 13702 Face 23776 13703 13798 13702 Face 23777 20201 20284 17891 Face 23778 11008 28405 7013 Face 23779 23959 25432 29877 Face 23780 29871 25404 29872 Face 23781 6659 11285 6660 Face 23782 34770 34691 34600 Face 23783 33748 33874 33747 Face 23784 34494 34817 11768 Face 23785 34802 34685 34406 Face 23786 12285 12286 13373 Face 23787 12286 12285 13671 Face 23788 31698 31810 31697 Face 23789 12471 12285 13373 Face 23790 22543 7556 22255 Face 23791 6016 13180 755 Face 23792 32147 32146 32042 Face 23793 12888 19670 22561 Face 23794 22111 22206 22205 Face 23795 33878 34004 33877 Face 23796 11355 9101 7698 Face 23797 13412 13507 13411 Face 23798 12471 13373 4342 Face 23799 12263 12471 4342 Face 23800 12173 182 32903 Face 23801 11782 8962 11214 Face 23802 12007 12263 4342 Face 23803 12024 11782 11214 Face 23804 36 13388 12853 Face 23805 11922 12007 4342 Face 23806 16329 16171 16172 Face 23807 16769 34000 34127 Face 23808 13719 13718 13625 Face 23809 21624 21719 21718 Face 23810 13434 13529 13433 Face 23811 13626 13719 13625 Face 23812 13626 13625 13528 Face 23813 13529 13626 13528 Face 23814 20529 20454 5631 Face 23815 22272 12205 4236 Face 23816 2667 11783 13292 Face 23817 21100 24729 24674 Face 23818 16348 11298 12588 Face 23819 13036 34455 34706 Face 23820 12449 13751 8962 Face 23821 11782 12449 8962 Face 23822 11033 11089 11088 Face 23823 11032 11031 32744 Face 23824 11089 11149 11148 Face 23825 11088 11089 11148 Face 23826 11149 11217 11216 Face 23827 11148 11149 11216 Face 23828 21263 2551 17194 Face 23829 34483 34459 34501 Face 23830 10843 10733 9414 Face 23831 22273 22272 4236 Face 23832 12425 12515 12424 Face 23833 14371 20744 22584 Face 23834 12333 12425 12332 Face 23835 12603 12602 12514 Face 23836 12158 12245 12157 Face 23837 12515 12514 12424 Face 23838 12071 12158 12070 Face 23839 12333 12332 12244 Face 23840 11987 12071 11986 Face 23841 12245 12244 12157 Face 23842 11904 11987 11903 Face 23843 12158 12157 12070 Face 23844 11823 11904 11822 Face 23845 12071 12070 11986 Face 23846 11740 11823 11739 Face 23847 11987 11986 11903 Face 23848 11661 11740 11660 Face 23849 11904 11903 11822 Face 23850 11583 11661 11582 Face 23851 11823 11822 11739 Face 23852 11583 11582 11503 Face 23853 11740 11739 11660 Face 23854 11504 11583 11503 Face 23855 11661 11660 11582 Face 23856 34665 34634 34664 Face 23857 4751 2664 15072 Face 23858 12440 13264 13360 Face 23859 34443 34616 34729 Face 23860 19336 19337 19808 Face 23861 19644 19727 19726 Face 23862 11760 3934 13097 Face 23863 1204 7722 9540 Face 23864 11416 11498 11415 Face 23865 13639 15449 10714 Face 23866 11577 11576 11497 Face 23867 11498 11577 11497 Face 23868 11817 11816 11733 Face 23869 11734 11817 11733 Face 23870 8364 6626 1340 Face 23871 16345 14788 15589 Face 23872 19583 19582 12320 Face 23873 6626 15589 1340 Face 23874 12940 21091 20989 Face 23875 6626 16345 15589 Face 23876 19801 19802 20547 Face 23877 20340 12146 20256 Face 23878 19284 19254 19255 Face 23879 33496 33623 33495 Face 23880 20124 20202 20201 Face 23881 34426 34811 34778 Face 23882 11983 11982 11899 Face 23883 19269 5143 7490 Face 23884 11657 11656 11578 Face 23885 11579 11657 11578 Face 23886 11579 11578 11499 Face 23887 11500 11579 11499 Face 23888 11337 11418 11336 Face 23889 11500 11499 11417 Face 23890 11260 11259 11190 Face 23891 11418 11500 11417 Face 23892 11069 11129 11068 Face 23893 11191 11190 11128 Face 23894 11024 11069 11023 Face 23895 11129 11191 11128 Face 23896 10430 4322 8957 Face 23897 11129 11128 11068 Face 23898 5249 2528 1196 Face 23899 34818 34297 34704 Face 23900 13293 12853 2771 Face 23901 13110 4853 13001 Face 23902 17981 17891 17982 Face 23903 20123 20124 20201 Face 23904 30345 30344 30277 Face 23905 7001 7108 7000 Face 23906 4473 22033 2362 Face 23907 860 10215 12439 Face 23908 13619 13712 13618 Face 23909 12114 15031 15030 Face 23910 11735 11818 11734 Face 23911 13619 13618 13521 Face 23912 10886 15437 22228 Face 23913 11899 11898 11817 Face 23914 12973 13063 12972 Face 23915 22227 20037 20038 Face 23916 30697 30796 30795 Face 23917 12364 23752 34763 Face 23918 11044 13103 13005 Face 23919 33773 33899 33772 Face 23920 9990 6801 13797 Face 23921 8366 11044 13005 Face 23922 13087 13088 13751 Face 23923 2256 1102 2516 Face 23924 12449 13087 13751 Face 23925 13748 13552 13088 Face 23926 13087 13748 13088 Face 23927 13748 11758 13569 Face 23928 13552 13748 13569 Face 23929 25404 29871 29870 Face 23930 3045 13744 13569 Face 23931 11758 3045 13569 Face 23932 12311 12312 12402 Face 23933 14956 1456 14955 Face 23934 22213 22309 22308 Face 23935 12403 12493 12492 Face 23936 13798 9990 13797 Face 23937 12698 12697 12607 Face 23938 5637 3931 1215 Face 23939 12537 12927 6801 Face 23940 12285 13667 13671 Face 23941 12205 13200 20636 Face 23942 3948 5764 755 Face 23943 29914 29972 29913 Face 23944 28142 28815 26568 Face 23945 22216 22215 22120 Face 23946 19850 19768 5466 Face 23947 19352 19386 19842 Face 23948 24478 23108 22747 Face 23949 23731 12259 23516 Face 23950 4236 12205 20636 Face 23951 13200 19278 19277 Face 23952 29863 25410 29864 Face 23953 29867 25406 29868 Face 23954 34804 34785 34541 Face 23955 20636 13200 19277 Face 23956 31062 31161 31061 Face 23957 24441 24440 24486 Face 23958 19966 19967 20043 Face 23959 25000 21100 23605 Face 23960 12079 12078 11993 Face 23961 22224 20733 21748 Face 23962 14293 21937 21462 Face 23963 13340 13434 13339 Face 23964 13529 13528 13433 Face 23965 17538 16949 14151 Face 23966 19957 22616 21943 Face 23967 21769 23842 23796 Face 23968 2160 5252 2159 Face 23969 32601 32728 32600 Face 23970 23918 22901 24289 Face 23971 6602 26789 28548 Face 23972 14908 13479 20725 Face 23973 17626 19104 3638 Face 23974 11034 11090 11089 Face 23975 32744 11033 11032 Face 23976 11090 11150 11149 Face 23977 11089 11090 11149 Face 23978 11150 11218 11217 Face 23979 11149 11150 11217 Face 23980 6998 11216 6999 Face 23981 27966 28099 27965 Face 23982 12245 12333 12244 Face 23983 8476 8375 8376 Face 23984 34346 34828 34820 Face 23985 12425 12424 12332 Face 23986 10211 12 11537 Face 23987 34491 382 64 Face 23988 11295 10211 11537 Face 23989 22138 10327 15577 Face 23990 10754 4574 4444 Face 23991 10629 10754 4444 Face 23992 10697 10671 13281 Face 23993 9842 9957 9956 Face 23994 12160 12159 12072 Face 23995 7619 8234 10368 Face 23996 11906 11989 11905 Face 23997 12073 12072 11988 Face 23998 21178 21858 21760 Face 23999 34307 8540 7735 Face 24000 13060 13154 13059 Face 24001 12878 12877 12784 Face 24002 19643 19666 20456 Face 24003 20454 20529 14908 Face 24004 11222 5343 12466 Face 24005 18196 18672 18294 Face 24006 11341 11340 11264 Face 24007 11422 11421 11340 Face 24008 11134 11196 11133 Face 24009 11265 11341 11264 Face 24010 11265 11264 11195 Face 24011 11196 11265 11195 Face 24012 20463 21372 20461 Face 24013 28233 28367 28232 Face 24014 33225 33224 33089 Face 24015 25406 29867 29866 Face 24016 21066 21067 21156 Face 24017 21170 21171 2298 Face 24018 19062 18779 15052 Face 24019 21910 21911 22008 Face 24020 11817 11898 11816 Face 24021 11898 11897 11816 Face 24022 11981 11980 11897 Face 24023 11898 11981 11897 Face 24024 27037 26925 11979 Face 24025 11980 12064 11979 Face 24026 23191 23135 29604 Face 24027 31369 31368 31265 Face 24028 28893 29020 28892 Face 24029 19798 19799 19877 Face 24030 533 119 19 Face 24031 22586 22585 22491 Face 24032 4338 10962 9876 Face 24033 12440 12530 13264 Face 24034 11248 11247 11178 Face 24035 34338 34398 34766 Face 24036 11145 12189 1746 Face 24037 11069 11068 11023 Face 24038 11336 11335 11259 Face 24039 11191 11260 11190 Face 24040 11417 11416 11335 Face 24041 11260 11336 11259 Face 24042 2121 9299 5473 Face 24043 11336 11417 11335 Face 24044 18421 19933 17768 Face 24045 11351 11306 10867 Face 24046 3042 2907 10683 Face 24047 26099 27391 27390 Face 24048 26765 26766 26879 Face 24049 3179 4080 9632 Face 24050 21717 21718 21814 Face 24051 21342 21435 21434 Face 24052 12706 12796 3564 Face 24053 12367 12706 3564 Face 24054 13187 11154 13736 Face 24055 12706 14771 1678 Face 24056 12309 12400 12399 Face 24057 12308 12309 12399 Face 24058 13205 8109 7730 Face 24059 10457 7409 9513 Face 24060 32825 32957 32824 Face 24061 19278 19725 19722 Face 24062 13522 13619 13521 Face 24063 12836 11355 11277 Face 24064 11818 11899 11817 Face 24065 13522 13521 13426 Face 24066 20037 19958 20038 Face 24067 11982 11981 11898 Face 24068 16704 23707 23706 Face 24069 10359 8723 10870 Face 24070 34775 9392 11683 Face 24071 11358 13363 12992 Face 24072 7000 11218 7001 Face 24073 29861 25412 29862 Face 24074 15763 15915 13650 Face 24075 11761 14 5381 Face 24076 13652 12843 12452 Face 24077 11796 11877 11876 Face 24078 12451 12452 13671 Face 24079 12451 13652 12452 Face 24080 19286 19257 19258 Face 24081 13667 12451 13671 Face 24082 24800 24799 4069 Face 24083 22426 21665 14643 Face 24084 33872 33873 33999 Face 24085 11461 11782 12024 Face 24086 11939 11461 12024 Face 24087 11924 12449 11782 Face 24088 11461 11924 11782 Face 24089 12719 13087 12449 Face 24090 11924 12719 12449 Face 24091 29860 25413 29861 Face 24092 13479 7848 20725 Face 24093 11065 11125 11064 Face 24094 24682 23465 11429 Face 24095 7556 14910 22255 Face 24096 10557 20384 20383 Face 24097 20031 19954 17698 Face 24098 12600 12690 12599 Face 24099 23550 24682 11429 Face 24100 34823 34450 34345 Face 24101 19277 19278 19722 Face 24102 11829 23351 20491 Face 24103 12719 9976 13748 Face 24104 16808 16897 16896 Face 24105 13087 12719 13748 Face 24106 9976 12807 11758 Face 24107 14157 19591 16021 Face 24108 13748 9976 11758 Face 24109 3508 3894 15871 Face 24110 34763 34540 12364 Face 24111 21846 22041 21462 Face 24112 22133 22229 22224 Face 24113 13247 13340 13246 Face 24114 13434 13433 13339 Face 24115 20038 19957 21742 Face 24116 16335 14723 21868 Face 24117 28099 28236 28235 Face 24118 22325 22229 22419 Face 24119 24180 23655 23977 Face 24120 20697 24720 24818 Face 24121 22012 22013 22110 Face 24122 11275 11206 13080 Face 24123 12807 13463 3045 Face 24124 11758 12807 3045 Face 24125 11035 11091 11090 Face 24126 32617 11034 11033 Face 24127 11091 11151 11150 Face 24128 11090 11091 11150 Face 24129 11151 11219 11218 Face 24130 11150 11151 11218 Face 24131 10465 10622 13190 Face 24132 8128 771 12992 Face 24133 8122 8017 11951 Face 24134 11341 11422 11340 Face 24135 22013 22111 22110 Face 24136 3054 10619 3052 Face 24137 21818 21819 21914 Face 24138 13080 13079 11814 Face 24139 21721 21722 21818 Face 24140 21914 21915 22012 Face 24141 11995 24413 25078 Face 24142 21915 22013 22012 Face 24143 23548 23438 21055 Face 24144 21819 21915 21914 Face 24145 26306 12088 22680 Face 24146 24102 24108 25170 Face 24147 23392 23670 23323 Face 24148 24413 24548 25078 Face 24149 3589 5128 11002 Face 24150 24461 23317 24479 Face 24151 13069 3696 15462 Face 24152 24428 23670 23392 Face 24153 17179 22412 22316 Face 24154 20933 2644 12630 Face 24155 3950 11762 11674 Face 24156 11762 11682 11674 Face 24157 25495 11139 11079 Face 24158 11062 11123 25681 Face 24159 27333 20599 27223 Face 24160 34736 34760 29408 Face 24161 19958 20216 19957 Face 24162 18669 22326 20200 Face 24163 20216 21551 21367 Face 24164 34473 34295 34681 Face 24165 34387 34580 34795 Face 24166 12745 13122 7784 Face 24167 34488 34301 34751 Face 24168 13511 13510 13415 Face 24169 11379 9166 1901 Face 24170 1901 9166 3179 Face 24171 11369 11379 1901 Face 24172 9166 10938 3179 Face 24173 11981 12065 11980 Face 24174 12065 12064 11980 Face 24175 12509 12508 12418 Face 24176 12419 12509 12418 Face 24177 24567 24566 16169 Face 24178 26925 26810 11896 Face 24179 23597 17057 20537 Face 24180 12641 12674 22446 Face 24181 20372 20371 19582 Face 24182 22658 20340 6268 Face 24183 7718 533 532 Face 24184 9876 7718 532 Face 24185 701 1651 267 Face 24186 34651 34323 34758 Face 24187 13285 2790 3042 Face 24188 10962 7718 9876 Face 24189 11351 2790 11306 Face 24190 2907 9632 10683 Face 24191 9299 11351 10867 Face 24192 2790 2907 3042 Face 24193 2516 1102 206 Face 24194 2790 13285 11306 Face 24195 12051 12138 12050 Face 24196 12223 12222 12137 Face 24197 26189 26674 18553 Face 24198 10215 11852 12439 Face 24199 8554 19298 16497 Face 24200 20546 20547 21644 Face 24201 19725 20480 20479 Face 24202 11963 11962 11878 Face 24203 11813 22543 2132 Face 24204 17891 17981 17890 Face 24205 29584 29516 26096 Face 24206 21356 21449 21355 Face 24207 19722 19725 20479 Face 24208 20480 21473 21472 Face 24209 20479 20480 21472 Face 24210 21473 14911 14604 Face 24211 21472 21473 14604 Face 24212 14911 20543 20542 Face 24213 14604 14911 20542 Face 24214 5473 9053 13710 Face 24215 13427 13522 13426 Face 24216 12947 12525 20542 Face 24217 11899 11982 11898 Face 24218 13427 13426 13332 Face 24219 9427 9541 34831 Face 24220 12066 12065 11981 Face 24221 7180 13281 10671 Face 24222 12348 12440 13360 Face 24223 13473 34239 6642 Face 24224 20543 12947 20542 Face 24225 11796 11795 11713 Face 24226 28098 28099 28235 Face 24227 12465 13765 9561 Face 24228 12160 12247 12159 Face 24229 11683 12465 9561 Face 24230 26441 18546 28689 Face 24231 12335 12334 12246 Face 24232 25681 11123 25680 Face 24233 17583 17673 18433 Face 24234 25587 11202 11139 Face 24235 14229 14338 7591 Face 24236 32429 32893 2821 Face 24237 13463 2791 3045 Face 24238 12402 12403 12492 Face 24239 11319 11318 11243 Face 24240 12499 12410 16346 Face 24241 12493 12582 12581 Face 24242 2274 15133 15132 Face 24243 16508 12499 16346 Face 24244 24888 24806 23615 Face 24245 29863 25411 25410 Face 24246 24674 24220 24812 Face 24247 20429 23939 20515 Face 24248 22110 22111 22205 Face 24249 20920 19359 19600 Face 24250 12780 12779 12689 Face 24251 11196 11195 11133 Face 24252 19346 20571 17532 Face 24253 13055 13149 13148 Face 24254 24440 24441 23918 Face 24255 13384 6874 24637 Face 24256 19634 20381 19597 Face 24257 22743 20963 24357 Face 24258 29864 25409 29865 Face 24259 20374 20373 19588 Face 24260 31490 31599 31489 Face 24261 31214 31316 31213 Face 24262 33783 108 6671 Face 24263 33675 14532 14533 Face 24264 13079 12826 11814 Face 24265 11651 1091 12709 Face 24266 13019 11227 13018 Face 24267 24000 23635 25033 Face 24268 12782 12783 12875 Face 24269 12876 12968 12967 Face 24270 12138 12223 12137 Face 24271 11879 11878 11797 Face 24272 21095 15175 12850 Face 24273 12506 12505 12415 Face 24274 12272 11929 11841 Face 24275 11295 11537 1315 Face 24276 12826 20385 8473 Face 24277 12710 11206 12709 Face 24278 32288 32287 32183 Face 24279 25300 24073 25162 Face 24280 33648 33647 33520 Face 24281 28236 28370 28369 Face 24282 32559 32686 32685 Face 24283 11035 11034 32617 Face 24284 11092 11152 11151 Face 24285 11091 11092 11151 Face 24286 13320 13319 13226 Face 24287 11151 11152 11219 Face 24288 12427 12426 12334 Face 24289 5365 5364 5233 Face 24290 12080 11994 26822 Face 24291 14118 14032 14119 Face 24292 13757 11461 11939 Face 24293 24888 23268 24806 Face 24294 34453 34351 34409 Face 24295 12009 11924 11461 Face 24296 13757 12009 11461 Face 24297 12810 12719 11924 Face 24298 12009 12810 11924 Face 24299 5212 9976 12719 Face 24300 12810 5212 12719 Face 24301 5212 11935 12807 Face 24302 9976 5212 12807 Face 24303 9559 13463 12807 Face 24304 11935 9559 12807 Face 24305 7914 1920 8836 Face 24306 9559 7591 13463 Face 24307 11244 11319 11243 Face 24308 11963 12048 11962 Face 24309 12581 12582 12671 Face 24310 11994 12079 11993 Face 24311 12167 12079 12080 Face 24312 23968 24486 23257 Face 24313 22928 23180 23130 Face 24314 20963 23548 21055 Face 24315 23231 23174 25304 Face 24316 14341 14459 14458 Face 24317 18072 20285 18073 Face 24318 11907 11908 11990 Face 24319 12075 12074 11990 Face 24320 22224 21748 10557 Face 24321 22229 22325 20733 Face 24322 12981 12411 12436 Face 24323 12500 12411 4238 Face 24324 11762 11045 11682 Face 24325 12823 10011 11850 Face 24326 34834 27869 27608 Face 24327 11221 13110 13675 Face 24328 12962 12963 13052 Face 24329 13147 13242 13241 Face 24330 13053 13147 13146 Face 24331 13052 13053 13146 Face 24332 12509 12597 12508 Face 24333 12597 12596 12508 Face 24334 12687 12686 12596 Face 24335 12597 12687 12596 Face 24336 11497 11496 11414 Face 24337 11415 11497 11414 Face 24338 15037 23705 16339 Face 24339 24158 25561 22683 Face 24340 12146 12320 20256 Face 24341 22658 6268 22464 Face 24342 14329 8572 9735 Face 24343 22557 22658 22464 Face 24344 20340 20256 6268 Face 24345 11118 11117 11058 Face 24346 1340 15589 13639 Face 24347 13080 11814 972 Face 24348 29972 29971 29913 Face 24349 30028 30090 30089 Face 24350 12134 12219 12133 Face 24351 19730 19729 19646 Face 24352 34066 34063 2039 Face 24353 9645 9876 351 Face 24354 12868 12960 12867 Face 24355 12960 13050 12959 Face 24356 13050 13049 12959 Face 24357 11622 12646 12645 Face 24358 13426 13425 13331 Face 24359 13050 13144 13143 Face 24360 13144 13239 13143 Face 24361 13332 13426 13331 Face 24362 13239 13332 13331 Face 24363 13238 13239 13331 Face 24364 13521 13520 13425 Face 24365 13426 13521 13425 Face 24366 13618 13617 13520 Face 24367 13521 13618 13520 Face 24368 13711 13710 13617 Face 24369 13618 13711 13617 Face 24370 13711 5473 13710 Face 24371 10867 11689 9053 Face 24372 13070 19675 12525 Face 24373 83 4338 9645 Face 24374 13333 13427 13332 Face 24375 12947 13070 12525 Face 24376 12420 12419 12327 Face 24377 13240 13333 13332 Face 24378 13030 12626 11468 Face 24379 12328 12420 12327 Face 24380 22606 6015 19675 Face 24381 31167 31268 31166 Face 24382 1770 8207 1663 Face 24383 13238 13331 13237 Face 24384 13070 22606 19675 Face 24385 25408 29866 29865 Face 24386 19670 19666 22561 Face 24387 29583 26533 26419 Face 24388 22659 13188 13096 Face 24389 32450 32567 32449 Face 24390 11810 26910 27022 Face 24391 13188 13097 11944 Face 24392 16949 19765 19766 Face 24393 12166 12165 12078 Face 24394 12817 13380 5205 Face 24395 22901 24288 24289 Face 24396 12583 25302 12582 Face 24397 11119 11182 11181 Face 24398 14370 14488 13259 Face 24399 34624 34423 34333 Face 24400 34001 34000 33874 Face 24401 33383 33516 33382 Face 24402 33875 34001 33874 Face 24403 23418 23346 20956 Face 24404 12705 21117 21136 Face 24405 12247 12335 12246 Face 24406 21117 22980 21136 Face 24407 18073 20286 17983 Face 24408 11152 6895 11219 Face 24409 13054 13055 13148 Face 24410 11134 11133 11073 Face 24411 2773 105 22562 Face 24412 13149 13244 13243 Face 24413 12079 12166 12078 Face 24414 8852 6874 11160 Face 24415 20381 20376 19597 Face 24416 12253 12252 12165 Face 24417 3508 8364 3894 Face 24418 13440 22559 15033 Face 24419 11206 13079 13080 Face 24420 19767 15166 11651 Face 24421 15166 1091 11651 Face 24422 11206 11275 12709 Face 24423 22716 22083 23606 Face 24424 12454 34540 34763 Face 24425 12968 13058 13057 Face 24426 12875 12876 12967 Face 24427 12964 12965 13054 Face 24428 19965 20042 19964 Face 24429 12515 12603 12514 Face 24430 12693 12692 12602 Face 24431 11227 12272 11841 Face 24432 12272 12729 1315 Face 24433 12729 11295 1315 Face 24434 11929 12272 1315 Face 24435 22606 12122 13444 Face 24436 29405 20815 26415 Face 24437 16697 29735 6823 Face 24438 33521 33648 33520 Face 24439 28235 28236 28369 Face 24440 28370 28505 28504 Face 24441 28369 28370 28504 Face 24442 12429 12430 12519 Face 24443 11091 32501 11092 Face 24444 11426 11425 11344 Face 24445 12036 12123 8332 Face 24446 23594 24362 20407 Face 24447 11202 11201 11139 Face 24448 29966 29965 29907 Face 24449 34694 34765 34509 Face 24450 34685 34643 34599 Face 24451 33044 20701 33045 Face 24452 11757 12009 13757 Face 24453 13756 11757 13757 Face 24454 12629 12810 12009 Face 24455 11757 12629 12009 Face 24456 12204 27 12017 Face 24457 30216 30281 30215 Face 24458 15953 9843 16105 Face 24459 31268 31371 31267 Face 24460 12162 12161 12074 Face 24461 11991 12075 11990 Face 24462 12880 12972 12879 Face 24463 13062 13061 12971 Face 24464 13736 20832 19298 Face 24465 12411 16026 4238 Face 24466 22421 22133 15175 Face 24467 12706 12256 14771 Face 24468 6015 22606 13444 Face 24469 11045 11221 13675 Face 24470 973 11437 16386 Face 24471 4323 5470 16504 Face 24472 12688 12778 12687 Face 24473 12963 12962 12870 Face 24474 12871 12870 12777 Face 24475 12778 12871 12777 Face 24476 12777 12776 12686 Face 24477 12962 13052 13051 Face 24478 12687 12777 12686 Face 24479 12870 12869 12776 Face 24480 11653 11654 26585 Face 24481 11576 11654 11575 Face 24482 30865 30864 30758 Face 24483 32229 32228 32124 Face 24484 3042 10683 3681 Face 24485 5202 3042 3681 Face 24486 13049 13050 13143 Face 24487 13239 13238 13143 Face 24488 12851 5757 5249 Face 24489 5249 5757 2528 Face 24490 3765 3896 16028 Face 24491 19583 20372 19582 Face 24492 12622 314 532 Face 24493 13581 12851 5249 Face 24494 351 532 4217 Face 24495 20357 20356 20273 Face 24496 12236 12235 12148 Face 24497 12324 12323 12235 Face 24498 25325 25524 24469 Face 24499 11745 26476 26591 Face 24500 11188 11187 11125 Face 24501 12036 8227 11951 Face 24502 12775 12868 12774 Face 24503 11126 11188 11125 Face 24504 12685 12775 12684 Face 24505 12960 12959 12867 Face 24506 12595 12685 12594 Face 24507 12868 12867 12774 Face 24508 12507 12595 12506 Face 24509 12775 12774 12684 Face 24510 12417 12507 12416 Face 24511 12685 12684 12594 Face 24512 26470 11575 11654 Face 24513 12595 12594 12506 Face 24514 9876 532 351 Face 24515 24610 24614 23703 Face 24516 22137 22441 22440 Face 24517 34290 34565 34636 Face 24518 13239 13240 13332 Face 24519 22521 22137 22440 Face 24520 12510 12509 12419 Face 24521 13050 13051 13144 Face 24522 11521 13100 13655 Face 24523 12420 12510 12419 Face 24524 34674 34566 34446 Face 24525 13013 11521 13655 Face 24526 12122 15717 14523 Face 24527 12690 12689 12599 Face 24528 13444 12122 14523 Face 24529 34751 34397 11844 Face 24530 31371 31370 31267 Face 24531 30486 30571 30485 Face 24532 17430 19800 19719 Face 24533 19811 19887 19886 Face 24534 17441 19726 19727 Face 24535 12075 12162 12074 Face 24536 12369 13763 9650 Face 24537 9673 10361 12457 Face 24538 10108 5212 12810 Face 24539 12629 10108 12810 Face 24540 12021 11935 5212 Face 24541 10108 12021 5212 Face 24542 12354 9559 11935 Face 24543 12021 12354 11935 Face 24544 11278 7591 9559 Face 24545 12354 11278 9559 Face 24546 12135 12134 12047 Face 24547 25137 23677 23490 Face 24548 11442 12369 11443 Face 24549 11138 11137 11077 Face 24550 11078 11138 11077 Face 24551 11074 11134 11073 Face 24552 34789 6603 25545 Face 24553 13148 13149 13243 Face 24554 17442 19727 19810 Face 24555 22562 22659 13096 Face 24556 13337 13336 13243 Face 24557 21748 21846 21462 Face 24558 6874 8852 10856 Face 24559 12166 12079 12167 Face 24560 22041 14293 21462 Face 24561 23268 23262 24806 Face 24562 25536 23851 24445 Face 24563 20733 21846 21748 Face 24564 24117 24461 24600 Face 24565 30304 30371 30370 Face 24566 11227 11841 13018 Face 24567 12693 12783 12692 Face 24568 12967 12968 13057 Face 24569 8861 8996 9446 Face 24570 8996 8989 9446 Face 24571 12603 12693 12602 Face 24572 12783 12782 12692 Face 24573 25405 29868 25406 Face 24574 25411 29862 25412 Face 24575 11269 11268 11199 Face 24576 11269 11345 11268 Face 24577 11856 11939 34496 Face 24578 22899 24045 24044 Face 24579 20362 20278 18070 Face 24580 11618 11619 12920 Face 24581 28640 28639 28504 Face 24582 431 432 20711 Face 24583 28505 28640 28504 Face 24584 12429 12519 12428 Face 24585 12762 13389 6509 Face 24586 3950 26786 34389 Face 24587 11345 11426 11344 Face 24588 12368 12817 12726 Face 24589 34803 34684 11939 Face 24590 4729 5335 13274 Face 24591 13273 10394 7780 Face 24592 19539 16508 19621 Face 24593 28769 28768 28639 Face 24594 33624 33749 33623 Face 24595 27596 20609 27597 Face 24596 30300 30301 30367 Face 24597 33875 33874 33748 Face 24598 33899 34025 33898 Face 24599 34151 34150 34024 Face 24600 34500 34588 34544 Face 24601 33998 33999 34123 Face 24602 11280 11757 13756 Face 24603 11527 11280 13756 Face 24604 12448 12629 11757 Face 24605 11280 12448 11757 Face 24606 13083 10108 12629 Face 24607 12448 13083 12629 Face 24608 13083 12106 12021 Face 24609 10108 13083 12021 Face 24610 11466 13373 8366 Face 24611 12452 13123 11044 Face 24612 13671 11044 8366 Face 24613 12286 13671 8366 Face 24614 13156 13155 13061 Face 24615 12972 13062 12971 Face 24616 13062 13156 13061 Face 24617 13251 13250 13155 Face 24618 13343 13342 13249 Face 24619 13343 13437 13342 Face 24620 13250 13343 13249 Face 24621 13437 13436 13342 Face 24622 15717 21458 21553 Face 24623 11222 973 5343 Face 24624 11221 11223 13110 Face 24625 11026 11072 11071 Face 24626 12600 12599 12511 Face 24627 12778 12777 12687 Face 24628 12512 12600 12511 Face 24629 12598 12688 12597 Face 24630 12962 12961 12869 Face 24631 12777 12870 12776 Face 24632 11576 11575 11496 Face 24633 11497 11576 11496 Face 24634 97 14665 12549 Face 24635 12273 34609 12186 Face 24636 11363 12837 8781 Face 24637 24474 20006 19927 Face 24638 34668 34737 34833 Face 24639 29849 29903 29848 Face 24640 12018 19539 9320 Face 24641 11257 11333 11256 Face 24642 11257 11256 11187 Face 24643 22784 23106 24385 Face 24644 11188 11257 11187 Face 24645 11333 11332 11256 Face 24646 12236 12324 12235 Face 24647 11979 26925 11896 Face 24648 12324 12416 12323 Face 24649 12506 12594 12505 Face 24650 2489 1196 3940 Face 24651 12711 14507 19438 Face 24652 20093 24807 20012 Face 24653 19886 19887 19964 Face 24654 34604 33671 33917 Face 24655 11162 13001 12676 Face 24656 11529 12113 13394 Face 24657 21748 21462 20384 Face 24658 13001 11529 13394 Face 24659 33671 34604 34356 Face 24660 14660 14541 15168 Face 24661 14523 15717 21553 Face 24662 193 15028 21553 Face 24663 20216 22616 19957 Face 24664 22330 22426 21367 Face 24665 21458 193 21553 Face 24666 24746 24686 23976 Face 24667 29862 25411 29863 Face 24668 4338 9876 9645 Face 24669 22681 24339 24337 Face 24670 193 19723 19724 Face 24671 28813 29457 28567 Face 24672 13145 13240 13239 Face 24673 15028 193 19724 Face 24674 17637 2549 2423 Face 24675 13144 13145 13239 Face 24676 11860 11861 13100 Face 24677 13675 11162 11444 Face 24678 11521 11860 13100 Face 24679 11463 1876 11861 Face 24680 11860 11463 11861 Face 24681 11463 12626 1876 Face 24682 12735 981 11781 Face 24683 12626 12264 1876 Face 24684 19810 19811 19886 Face 24685 31475 31474 31370 Face 24686 12249 12248 12161 Face 24687 10816 11154 13187 Face 24688 7268 13772 7488 Face 24689 12162 12249 12161 Face 24690 12106 12445 12354 Face 24691 13373 12286 8366 Face 24692 12021 12106 12354 Face 24693 11596 11278 12354 Face 24694 12445 11596 12354 Face 24695 13107 11283 14128 Face 24696 11596 13107 11278 Face 24697 12920 12368 12726 Face 24698 13763 13772 9650 Face 24699 12546 4342 11466 Face 24700 11200 11199 11137 Face 24701 11138 11200 11137 Face 24702 26565 23975 18653 Face 24703 22327 22423 12409 Face 24704 17799 17708 17800 Face 24705 19312 17506 17507 Face 24706 13244 13337 13243 Face 24707 10228 10615 3821 Face 24708 9729 6874 10856 Face 24709 13431 13430 13336 Face 24710 9729 10856 13718 Face 24711 6874 13384 11160 Face 24712 13152 13247 13151 Face 24713 13719 9729 13718 Face 24714 13058 13152 13151 Face 24715 13340 13339 13246 Face 24716 13057 13058 13151 Face 24717 13247 13246 13151 Face 24718 8996 8861 11230 Face 24719 12783 12876 12875 Face 24720 9446 8989 12944 Face 24721 8989 12008 12944 Face 24722 13262 13168 19297 Face 24723 9561 13765 971 Face 24724 19723 21273 21272 Face 24725 22315 22411 22314 Face 24726 11200 11269 11199 Face 24727 11345 11344 11268 Face 24728 11442 11443 9101 Face 24729 3819 11442 9101 Face 24730 28640 28769 28639 Face 24731 12369 9650 11443 Face 24732 11319 11400 11318 Face 24733 29088 29143 19097 Face 24734 12844 3035 14332 Face 24735 9888 10763 9633 Face 24736 11612 11690 10742 Face 24737 270 11598 4594 Face 24738 13274 13273 7780 Face 24739 4342 13373 11466 Face 24740 11619 12368 12920 Face 24741 10552 4216 4071 Face 24742 11922 4342 13568 Face 24743 10960 9649 11288 Face 24744 19724 19723 21272 Face 24745 1439 7777 1324 Face 24746 21273 22151 19863 Face 24747 19887 19965 19964 Face 24748 4598 1316 13670 Face 24749 30301 30368 30367 Face 24750 11347 11346 11270 Face 24751 25686 11201 11202 Face 24752 11825 11906 11824 Face 24753 11663 11742 11662 Face 24754 11585 11663 11584 Face 24755 11742 11741 11662 Face 24756 25405 29869 29868 Face 24757 11714 11713 11634 Face 24758 30348 30347 30280 Face 24759 32245 32351 32244 Face 24760 33749 33875 33748 Face 24761 30281 30348 30280 Face 24762 33658 33657 33530 Face 24763 32718 32851 32717 Face 24764 11856 34496 11773 Face 24765 31417 31416 31312 Face 24766 33623 33622 33495 Face 24767 5344 11774 34301 Face 24768 21065 33693 21066 Face 24769 34605 34832 34744 Face 24770 13344 13343 13250 Face 24771 13156 13251 13155 Face 24772 22609 22226 20301 Face 24773 19344 22609 20301 Face 24774 13061 13060 12970 Face 24775 13061 13155 13060 Face 24776 12971 13061 12970 Face 24777 13155 13154 13060 Face 24778 11132 11131 11071 Face 24779 31942 31943 32047 Face 24780 11072 11132 11071 Face 24781 11194 11193 11131 Face 24782 25471 28635 26069 Face 24783 12422 12512 12421 Face 24784 11125 11124 11064 Face 24785 12870 12962 12869 Face 24786 24966 25105 25104 Face 24787 34757 34563 34718 Face 24788 20191 20273 20190 Face 24789 1196 2528 6138 Face 24790 13710 9053 13709 Face 24791 2489 320 8675 Face 24792 12594 12684 12593 Face 24793 12774 12867 12773 Face 24794 3681 12837 11363 Face 24795 5495 3681 11363 Face 24796 19483 19564 19563 Face 24797 8253 11933 14536 Face 24798 21272 21273 19863 Face 24799 23647 1911 23563 Face 24800 11021 11066 11020 Face 24801 11066 11126 11065 Face 24802 11065 11064 11019 Face 24803 11126 11125 11065 Face 24804 34802 34406 34732 Face 24805 19863 22151 16192 Face 24806 13268 13911 13175 Face 24807 30567 30661 30566 Face 24808 12867 12959 12866 Face 24809 34516 34619 34368 Face 24810 19730 19813 19729 Face 24811 11444 11162 11445 Face 24812 5767 12030 11949 Face 24813 11162 12676 11445 Face 24814 12186 11282 13566 Face 24815 34273 34610 34782 Face 24816 11856 13756 13757 Face 24817 12273 12186 13566 Face 24818 28895 28894 28768 Face 24819 30483 30568 30482 Face 24820 11066 11065 11020 Face 24821 118 20065 2512 Face 24822 22724 21512 23722 Face 24823 25404 29874 29873 Face 24824 9878 4338 83 Face 24825 22847 23008 21801 Face 24826 15072 22159 13354 Face 24827 3681 10683 12837 Face 24828 12776 12869 12775 Face 24829 19332 19409 19408 Face 24830 11682 13675 11444 Face 24831 12961 12960 12868 Face 24832 12510 12598 12509 Face 24833 13110 13001 11162 Face 24834 12598 12597 12509 Face 24835 12688 12687 12597 Face 24836 1418 10228 3821 Face 24837 11379 11369 10615 Face 24838 13765 11778 971 Face 24839 19331 19332 19408 Face 24840 3760 3761 14786 Face 24841 22589 22588 22494 Face 24842 12337 12336 12248 Face 24843 13251 13344 13250 Face 24844 29874 25404 29875 Face 24845 27599 32539 32658 Face 24846 11281 11280 11527 Face 24847 11605 11281 11527 Face 24848 11281 12357 12448 Face 24849 11280 11281 12448 Face 24850 12357 12379 13083 Face 24851 12448 12357 13083 Face 24852 19489 19488 19408 Face 24853 12192 12106 13083 Face 24854 12249 12337 12248 Face 24855 19409 19489 19408 Face 24856 11760 11289 3934 Face 24857 13439 13345 28828 Face 24858 13168 20920 19297 Face 24859 14787 3760 14786 Face 24860 13621 13714 13620 Face 24861 13531 13628 13530 Face 24862 13623 13622 13525 Face 24863 1418 3821 13713 Face 24864 13337 13431 13336 Face 24865 13526 13623 13525 Face 24866 13526 13525 13430 Face 24867 13431 13526 13430 Face 24868 13716 13715 13622 Face 24869 13623 13716 13622 Face 24870 7996 11230 13715 Face 24871 13716 7996 13715 Face 24872 12115 12831 12463 Face 24873 7996 8996 11230 Face 24874 9540 119 7688 Face 24875 1204 9540 7688 Face 24876 11465 11464 11778 Face 24877 10962 8934 8362 Face 24878 22508 22507 22410 Face 24879 13765 11465 11778 Face 24880 12519 12518 12428 Face 24881 14786 14665 97 Face 24882 12429 12428 12336 Face 24883 12337 12429 12336 Face 24884 21368 21367 14643 Face 24885 19967 20044 20043 Face 24886 34323 34827 34687 Face 24887 30968 30967 30866 Face 24888 6509 9304 7388 Face 24889 12379 12192 13083 Face 24890 12353 12445 12106 Face 24891 12192 12353 12106 Face 24892 11595 11596 12445 Face 24893 12353 11595 12445 Face 24894 8987 15000 4216 Face 24895 15581 6269 21290 Face 24896 20725 7848 19356 Face 24897 11508 11507 11425 Face 24898 11426 11508 11425 Face 24899 25022 22926 24883 Face 24900 25334 21607 27271 Face 24901 11744 11743 11664 Face 24902 22926 23257 24883 Face 24903 11827 11826 11743 Face 24904 26357 11664 11663 Face 24905 11908 11907 11826 Face 24906 11744 11827 11743 Face 24907 11908 11991 11990 Face 24908 11827 11908 11826 Face 24909 4466 9502 4728 Face 24910 12279 12371 13262 Face 24911 13671 12452 11044 Face 24912 12843 12904 13123 Face 24913 4342 12546 13568 Face 24914 12452 12843 13123 Face 24915 11595 11283 11596 Face 24916 19659 19742 19658 Face 24917 12057 12056 11971 Face 24918 13222 13315 13314 Face 24919 13468 12470 13374 Face 24920 12847 11619 11618 Face 24921 2636 20426 15161 Face 24922 20381 21291 20376 Face 24923 19900 19899 19823 Face 24924 15164 13440 15033 Face 24925 22423 12408 12409 Face 24926 20279 20280 22588 Face 24927 22515 22133 3035 Face 24928 3035 22421 20199 Face 24929 12695 12696 12785 Face 24930 12971 12970 12878 Face 24931 12879 12878 12785 Face 24932 12786 12879 12785 Face 24933 11263 11262 11193 Face 24934 11132 11194 11131 Face 24935 12959 13049 12958 Face 24936 13238 13237 13142 Face 24937 5373 83 9402 Face 24938 83 9645 9759 Face 24939 28769 28895 28768 Face 24940 19570 19569 19488 Face 24941 23224 23168 23169 Face 24942 19489 19570 19488 Face 24943 11067 11127 11066 Face 24944 1881 15036 15167 Face 24945 19653 19652 19569 Face 24946 9053 631 13709 Face 24947 5202 3681 5495 Face 24948 13300 5202 5495 Face 24949 13617 13616 13519 Face 24950 12774 12773 12683 Face 24951 19563 19564 19646 Face 24952 13520 13617 13519 Face 24953 13001 13394 12676 Face 24954 20203 20204 20286 Face 24955 19570 19653 19569 Face 24956 19736 19735 19652 Face 24957 19653 19736 19652 Face 24958 19819 19818 19735 Face 24959 12138 12137 12050 Face 24960 19813 19812 19729 Face 24961 20559 20646 11524 Face 24962 29022 29021 28894 Face 24963 26426 19936 26309 Face 24964 13275 13749 12360 Face 24965 1102 3833 206 Face 24966 21922 22020 21921 Face 24967 13418 13417 13323 Face 24968 13324 13418 13323 Face 24969 19736 19819 19735 Face 24970 19765 16949 19172 Face 24971 14151 16949 19766 Face 24972 32427 31535 15045 Face 24973 15729 9504 15874 Face 24974 19895 19894 19818 Face 24975 19819 19895 19818 Face 24976 19973 19972 19894 Face 24977 12150 12149 12062 Face 24978 28502 28501 28366 Face 24979 27455 27454 27335 Face 24980 12063 12150 12062 Face 24981 32125 32229 32124 Face 24982 10683 9632 23721 Face 24983 12869 12961 12868 Face 24984 19895 19973 19894 Face 24985 12961 13051 12960 Face 24986 13051 13050 12960 Face 24987 12152 12151 12064 Face 24988 13051 13145 13144 Face 24989 10228 11379 10615 Face 24990 13334 13333 13240 Face 24991 13771 34318 34552 Face 24992 12155 12242 12154 Face 24993 12408 20299 20217 Face 24994 18635 21662 6836 Face 24995 13438 13437 13343 Face 24996 12879 12971 12878 Face 24997 23959 29877 29876 Face 24998 13344 13438 13343 Face 24999 32777 8979 31993 Face 25000 21278 21275 20373 Face 25001 26121 26122 26238 Face 25002 30506 30591 30590 Face 25003 18480 17866 18430 Face 25004 32463 32462 32350 Face 25005 30236 30235 30171 Face 25006 21256 3076 21257 Face 25007 20050 20049 19972 Face 25008 12673 15870 14482 Face 25009 19718 19800 19799 Face 25010 28952 13438 13439 Face 25011 11289 8554 3934 Face 25012 12796 12890 13004 Face 25013 13188 11760 13097 Face 25014 22627 16497 19850 Face 25015 13714 1418 13713 Face 25016 13524 13621 13523 Face 25017 22467 32311 32419 Face 25018 30764 30763 30664 Face 25019 32826 32825 32692 Face 25020 31167 31166 31067 Face 25021 10310 7166 6692 Face 25022 19102 33027 33672 Face 25023 13113 11384 11948 Face 25024 32831 32830 32697 Face 25025 19973 20050 19972 Face 25026 424 8354 10748 Face 25027 11655 11654 11576 Face 25028 20132 20131 20049 Face 25029 22627 19850 19925 Face 25030 12594 12593 12505 Face 25031 12716 12717 11464 Face 25032 1659 351 1455 Face 25033 29879 20691 29826 Face 25034 24105 20095 21600 Face 25035 14308 14786 97 Face 25036 3564 12796 13004 Face 25037 15436 22227 22131 Face 25038 20050 20132 20049 Face 25039 13347 15297 16020 Face 25040 31975 32080 31974 Face 25041 62 8360 10362 Face 25042 31961 32066 31960 Face 25043 32017 32018 32121 Face 25044 26816 34390 34428 Face 25045 11359 11281 11605 Face 25046 14482 15871 14601 Face 25047 11684 11359 11605 Face 25048 14405 14645 21204 Face 25049 21267 14405 21204 Face 25050 22421 14522 20199 Face 25051 12887 22517 22226 Face 25052 12606 12605 12517 Face 25053 12518 12606 12517 Face 25054 22441 21178 22440 Face 25055 20132 20210 20209 Face 25056 21178 21177 22440 Face 25057 20131 20132 20209 Face 25058 21858 3696 13069 Face 25059 20210 20292 20291 Face 25060 34428 34660 34272 Face 25061 12518 12519 12606 Face 25062 12607 12697 12606 Face 25063 12697 12696 12606 Face 25064 12972 12971 12879 Face 25065 12787 12786 12696 Face 25066 12697 12787 12696 Face 25067 12880 12879 12786 Face 25068 21665 21570 14643 Face 25069 12787 12880 12786 Face 25070 12447 12357 11281 Face 25071 15871 16336 14601 Face 25072 11359 12447 11281 Face 25073 12447 11759 12379 Face 25074 12357 12447 12379 Face 25075 11759 13214 12192 Face 25076 27116 27232 27231 Face 25077 14775 14482 14899 Face 25078 14408 14527 14899 Face 25079 14482 14601 14899 Face 25080 22133 22224 15175 Face 25081 4238 16026 12279 Face 25082 16026 12371 12279 Face 25083 21477 20559 11524 Face 25084 12248 12247 12160 Face 25085 12248 12336 12247 Face 25086 12161 12248 12160 Face 25087 12336 12335 12247 Face 25088 11420 11419 11338 Face 25089 11263 11339 11262 Face 25090 11737 11820 11736 Face 25091 13425 13520 13424 Face 25092 11901 11900 11819 Face 25093 13520 13519 13424 Face 25094 13713 13712 13619 Face 25095 13523 13620 13522 Face 25096 11067 11066 11021 Face 25097 11022 11067 11021 Face 25098 11064 11063 11018 Face 25099 434 151 2025 Face 25100 10867 11306 11689 Face 25101 5473 10867 9053 Face 25102 13331 13425 13330 Face 25103 12325 12417 12324 Face 25104 12684 12774 12683 Face 25105 15313 4622 10817 Face 25106 13117 10741 34752 Face 25107 12867 12866 12773 Face 25108 12223 12312 12311 Face 25109 13749 8365 12360 Face 25110 19619 19702 19416 Face 25111 11689 8849 9275 Face 25112 20209 20210 20291 Face 25113 19647 19730 19646 Face 25114 21644 19459 19460 Face 25115 19351 19831 19809 Face 25116 12296 12297 8633 Face 25117 9276 1780 5369 Face 25118 34515 13366 13117 Face 25119 16568 2123 5241 Face 25120 12048 12047 11962 Face 25121 11400 11483 11399 Face 25122 13041 25085 12951 Face 25123 11400 11399 11318 Face 25124 11275 13080 11207 Face 25125 11798 11879 11797 Face 25126 22137 22521 19959 Face 25127 28113 28114 28250 Face 25128 28895 29022 28894 Face 25129 19960 22137 19959 Face 25130 22237 21384 22235 Face 25131 31166 31165 31066 Face 25132 12237 12236 12149 Face 25133 13640 13449 19674 Face 25134 21341 21342 21434 Face 25135 12150 12237 12149 Face 25136 14644 18839 20032 Face 25137 11920 13285 5202 Face 25138 19977 20054 19976 Face 25139 25179 22786 22775 Face 25140 11258 11257 11188 Face 25141 11189 11258 11188 Face 25142 13146 13241 13240 Face 25143 13145 13146 13240 Face 25144 12330 12329 12241 Face 25145 12242 12330 12241 Face 25146 16178 13258 16023 Face 25147 11738 11737 11658 Face 25148 11743 11826 11742 Face 25149 11907 11906 11825 Face 25150 13438 13533 13437 Face 25151 15580 22518 17950 Face 25152 2644 21662 19721 Face 25153 12795 20844 20833 Face 25154 12379 11759 12192 Face 25155 13214 12536 12353 Face 25156 12192 13214 12353 Face 25157 11675 11595 12353 Face 25158 12536 11675 12353 Face 25159 11209 11283 11595 Face 25160 11675 11209 11595 Face 25161 8364 1340 3894 Face 25162 20844 12105 12456 Face 25163 13258 10714 16509 Face 25164 19644 19645 19727 Face 25165 12016 1678 11760 Face 25166 12696 12695 12605 Face 25167 8989 9898 12008 Face 25168 21718 21815 21814 Face 25169 13714 13713 13620 Face 25170 13429 13524 13428 Face 25171 3378 12432 5143 Face 25172 22325 20726 20733 Face 25173 20214 20215 20296 Face 25174 12840 13640 16423 Face 25175 22035 12498 22041 Face 25176 13432 13527 13431 Face 25177 13527 13526 13431 Face 25178 19574 19573 19492 Face 25179 12418 12417 12325 Face 25180 21177 21178 21760 Face 25181 11432 12058 24047 Face 25182 11920 11928 11384 Face 25183 6894 10940 8235 Face 25184 34459 34517 34501 Face 25185 9737 271 8341 Face 25186 2932 13199 11229 Face 25187 3761 3765 14665 Face 25188 11397 11480 11396 Face 25189 12796 1678 12016 Face 25190 12890 12796 12016 Face 25191 19889 19967 19888 Face 25192 12887 22423 22517 Face 25193 11187 11256 11186 Face 25194 12809 7730 9513 Face 25195 13221 13220 15379 Face 25196 11845 10689 14041 Face 25197 11122 12847 11618 Face 25198 13409 13408 13314 Face 25199 16992 19496 19495 Face 25200 11732 13081 11435 Face 25201 20065 20644 19337 Face 25202 15297 15723 16020 Face 25203 16020 15723 3951 Face 25204 12518 12517 12427 Face 25205 12428 12518 12427 Face 25206 22017 22115 22114 Face 25207 21919 22017 22016 Face 25208 25435 25404 25436 Face 25209 28367 28502 28366 Face 25210 172 19075 17544 Face 25211 18741 19513 21382 Face 25212 22131 22227 20038 Face 25213 15723 1881 3951 Face 25214 22605 19356 22323 Face 25215 19645 19728 19727 Face 25216 20726 22035 21846 Face 25217 3378 19643 12432 Face 25218 13532 13531 13436 Face 25219 13532 13533 29082 Face 25220 22609 12887 22226 Face 25221 160 19344 13958 Face 25222 20372 21267 20371 Face 25223 22423 22327 22517 Face 25224 12520 23551 24744 Face 25225 21414 25318 11514 Face 25226 7949 13977 13932 Face 25227 12446 13742 14648 Face 25228 11056 11055 30820 Face 25229 33489 33488 33355 Face 25230 24080 23986 23323 Face 25231 22079 20781 25300 Face 25232 23998 14651 19273 Face 25233 11433 11514 21324 Face 25234 20215 20297 20296 Face 25235 4754 585 14430 Face 25236 25404 25435 29875 Face 25237 11078 29935 29934 Face 25238 12161 12160 12073 Face 25239 12074 12161 12073 Face 25240 11502 11501 11419 Face 25241 11339 11420 11338 Face 25242 12243 12242 12155 Face 25243 12156 12243 12155 Face 25244 11737 11736 11657 Face 25245 11658 11737 11657 Face 25246 3821 2121 13712 Face 25247 13620 13713 13619 Face 25248 12519 12520 12607 Face 25249 11127 11126 11066 Face 25250 11019 11064 11018 Face 25251 13132 13227 13131 Face 25252 11306 8849 11689 Face 25253 9053 11689 631 Face 25254 12507 12506 12416 Face 25255 13049 13048 12958 Face 25256 12945 4622 15313 Face 25257 12959 12958 12866 Face 25258 10921 11273 11276 Face 25259 13281 9778 10697 Face 25260 11124 11123 11063 Face 25261 13031 5748 13011 Face 25262 11064 11124 11063 Face 25263 26901 34549 34402 Face 25264 13579 34412 26587 Face 25265 9182 11205 8538 Face 25266 12297 12298 8634 Face 25267 8435 12208 12296 Face 25268 11432 24047 24533 Face 25269 6136 1886 62 Face 25270 12486 12575 12485 Face 25271 24379 11700 11622 Face 25272 123 10868 9730 Face 25273 9841 9840 9726 Face 25274 21104 20827 21013 Face 25275 13491 9839 13492 Face 25276 16990 19493 19412 Face 25277 13112 10446 7619 Face 25278 11719 11801 11718 Face 25279 22140 21104 22043 Face 25280 28657 28786 28785 Face 25281 26200 26201 26318 Face 25282 18556 26072 29801 Face 25283 30568 30567 30482 Face 25284 22543 22255 2132 Face 25285 19438 12945 15313 Face 25286 12325 12324 12236 Face 25287 12237 12325 12236 Face 25288 13285 11920 8849 Face 25289 11306 13285 8849 Face 25290 12721 12089 12186 Face 25291 12030 2783 11949 Face 25292 11334 11333 11257 Face 25293 11258 11334 11257 Face 25294 12961 12962 13051 Face 25295 13052 13146 13145 Face 25296 12422 12421 12329 Face 25297 12330 12422 12329 Face 25298 11659 11658 11580 Face 25299 11581 11659 11580 Face 25300 11826 11907 11825 Face 25301 11907 11990 11989 Face 25302 12363 13572 12729 Face 25303 12272 12363 12729 Face 25304 24859 13066 24266 Face 25305 25153 23858 22988 Face 25306 29875 23959 29876 Face 25307 34830 34769 34474 Face 25308 2383 861 12913 Face 25309 34448 12827 34551 Face 25310 34025 34024 33898 Face 25311 13108 11359 11684 Face 25312 11448 13108 11684 Face 25313 11611 11678 11925 Face 25314 12539 12447 11359 Face 25315 8215 13268 13360 Face 25316 11704 11611 11925 Face 25317 12606 12696 12605 Face 25318 16499 13289 12498 Face 25319 33997 33996 33869 Face 25320 9759 9645 1659 Face 25321 13621 13620 13523 Face 25322 20125 20126 20203 Face 25323 12065 12152 12064 Face 25324 13617 13710 13616 Face 25325 12238 12237 12150 Face 25326 13143 13238 13142 Face 25327 12869 12868 12775 Face 25328 9201 8777 1121 Face 25329 12686 12776 12685 Face 25330 25405 29870 29869 Face 25331 11586 26359 26358 Face 25332 3302 12713 7172 Face 25333 10672 7785 12731 Face 25334 10457 7730 8109 Face 25335 11287 11368 12731 Face 25336 7785 11287 12731 Face 25337 23304 23248 13199 Face 25338 11287 11702 11368 Face 25339 3760 3564 3761 Face 25340 11462 8889 8171 Face 25341 3564 13004 3761 Face 25342 14786 3761 14665 Face 25343 12219 12308 12218 Face 25344 14888 14765 14766 Face 25345 13205 7730 11768 Face 25346 7003 7002 6895 Face 25347 13108 12539 11359 Face 25348 13769 11759 12447 Face 25349 12539 13769 12447 Face 25350 13769 13193 13214 Face 25351 11611 11704 11376 Face 25352 12375 11611 11376 Face 25353 19746 19747 19829 Face 25354 19663 19664 19746 Face 25355 11743 11742 11663 Face 25356 11664 11743 11663 Face 25357 11659 11738 11658 Face 25358 11194 11263 11193 Face 25359 11465 12716 11464 Face 25360 11519 11468 12717 Face 25361 14001 7068 14285 Face 25362 12716 11519 12717 Face 25363 11204 13365 13347 Face 25364 11519 13674 11468 Face 25365 13818 14430 11105 Face 25366 20659 18005 17100 Face 25367 9837 9955 9954 Face 25368 14809 13365 4742 Face 25369 13437 13532 13436 Face 25370 33376 33509 33375 Face 25371 13250 13249 13154 Face 25372 13155 13250 13154 Face 25373 22495 22589 22494 Face 25374 12428 12427 12335 Face 25375 24725 11652 24073 Face 25376 12798 12892 12911 Face 25377 11759 13769 13214 Face 25378 12375 11376 13127 Face 25379 13193 12625 12536 Face 25380 13214 13193 12536 Face 25381 11755 11675 12536 Face 25382 12625 11755 12536 Face 25383 6699 12359 34676 Face 25384 5211 11215 13651 Face 25385 33241 33240 33105 Face 25386 11215 13127 13651 Face 25387 32336 32230 32449 Face 25388 18823 16853 16775 Face 25389 11137 11199 11136 Face 25390 11344 11343 11267 Face 25391 11268 11267 11198 Face 25392 11199 11268 11198 Face 25393 30412 30483 30411 Face 25394 12331 12330 12242 Face 25395 13365 15297 13347 Face 25396 11820 11819 11736 Face 25397 9954 9836 9837 Face 25398 11852 9758 9874 Face 25399 5346 13557 11231 Face 25400 6690 11084 6691 Face 25401 29153 29152 29021 Face 25402 18546 28543 28689 Face 25403 9444 13217 7743 Face 25404 6999 11216 11217 Face 25405 631 9275 13027 Face 25406 10362 4086 6136 Face 25407 18437 19982 7811 Face 25408 11231 13557 10013 Face 25409 12296 8533 8435 Face 25410 12607 12520 12608 Face 25411 12732 13470 10697 Face 25412 9778 12732 10697 Face 25413 34784 34528 34786 Face 25414 12732 129 13470 Face 25415 4196 4067 10274 Face 25416 4067 4196 4195 Face 25417 9546 6136 4086 Face 25418 4215 9546 4086 Face 25419 1885 1886 6136 Face 25420 9546 1885 6136 Face 25421 12112 9386 1886 Face 25422 1885 12112 1886 Face 25423 12035 11784 9386 Face 25424 12112 12035 9386 Face 25425 1002 271 11784 Face 25426 12035 1002 11784 Face 25427 34478 34410 34538 Face 25428 1002 3302 271 Face 25429 7801 11786 7910 Face 25430 8017 7909 7910 Face 25431 271 9737 11784 Face 25432 5641 2901 1550 Face 25433 31267 31370 31266 Face 25434 8038 9186 64 Face 25435 16508 16346 19621 Face 25436 7777 1439 7887 Face 25437 12417 12416 12324 Face 25438 11434 20820 6012 Face 25439 13285 3042 5202 Face 25440 10305 13676 10306 Face 25441 34583 34539 34298 Face 25442 11451 11288 10001 Face 25443 11415 11414 11333 Face 25444 12089 11282 12186 Face 25445 13051 13052 13145 Face 25446 11334 11415 11333 Face 25447 12512 12511 12421 Face 25448 29022 29153 29021 Face 25449 11420 11502 11419 Face 25450 11581 11580 11501 Face 25451 11906 11907 11989 Face 25452 12074 12073 11989 Face 25453 30708 30807 30707 Face 25454 11101 11227 13019 Face 25455 31069 31068 30969 Face 25456 31476 31585 31475 Face 25457 11360 11209 11675 Face 25458 11755 11360 11675 Face 25459 9167 11845 11209 Face 25460 11360 9167 11209 Face 25461 13315 13409 13314 Face 25462 13965 10689 11851 Face 25463 11688 12847 11122 Face 25464 13504 13503 13408 Face 25465 11678 11357 11438 Face 25466 29870 25405 25439 Face 25467 14382 20646 20559 Face 25468 19643 19637 12432 Face 25469 351 4217 1455 Face 25470 12696 12786 12785 Face 25471 13607 13700 13699 Face 25472 26123 11332 11333 Face 25473 9291 10368 6924 Face 25474 29283 29282 29152 Face 25475 13401 13496 13495 Face 25476 25431 29934 29878 Face 25477 29153 29283 29152 Face 25478 2400 183 1765 Face 25479 10306 10428 10427 Face 25480 10071 10188 4086 Face 25481 59 10672 11288 Face 25482 11451 59 11288 Face 25483 12848 7785 10672 Face 25484 59 12848 10672 Face 25485 12917 11287 7785 Face 25486 12848 12917 7785 Face 25487 11763 11702 11287 Face 25488 12917 11763 11287 Face 25489 29414 29413 29282 Face 25490 34824 11527 11773 Face 25491 13205 8171 8109 Face 25492 9385 7850 12713 Face 25493 19336 19808 19802 Face 25494 21873 28887 28760 Face 25495 89 148 11440 Face 25496 13492 9840 13493 Face 25497 29471 34603 34311 Face 25498 4842 5637 6260 Face 25499 6612 29326 27746 Face 25500 29934 25431 11078 Face 25501 4087 2664 4751 Face 25502 22315 22314 22218 Face 25503 5343 10211 11295 Face 25504 25950 23610 26062 Face 25505 11425 11507 11424 Face 25506 23369 23445 25156 Face 25507 11738 11821 11737 Face 25508 11821 11820 11737 Face 25509 12155 12154 12067 Face 25510 12068 12155 12067 Face 25511 11944 13097 19299 Face 25512 15433 15432 10947 Face 25513 15432 8253 10947 Face 25514 21911 22009 22008 Face 25515 13242 13335 13241 Face 25516 13524 13523 13428 Face 25517 13187 13736 8554 Face 25518 15175 22224 10557 Face 25519 20299 22139 22140 Face 25520 12409 12408 20217 Face 25521 27392 28681 27513 Face 25522 12376 11222 12466 Face 25523 12336 12428 12335 Face 25524 11223 4853 13110 Face 25525 22602 22601 22507 Face 25526 11507 11506 11424 Face 25527 11215 12375 13127 Face 25528 22411 22508 22410 Face 25529 25404 25439 25438 Face 25530 19727 19728 19810 Face 25531 33011 18359 2561 Face 25532 31396 31397 31500 Face 25533 30109 30110 30171 Face 25534 30905 30904 30806 Face 25535 12929 15443 15726 Face 25536 22508 22602 22507 Face 25537 21641 21737 21640 Face 25538 9201 3683 7931 Face 25539 12563 2781 10018 Face 25540 12926 12563 10018 Face 25541 12416 12506 12415 Face 25542 11199 11198 11136 Face 25543 13092 11467 34833 Face 25544 15432 15294 8253 Face 25545 34591 34752 13196 Face 25546 13510 13607 13509 Face 25547 11311 11312 11392 Face 25548 22038 22135 21651 Face 25549 9954 13585 10069 Face 25550 9953 9954 10069 Face 25551 34780 34482 34498 Face 25552 13678 10187 10069 Face 25553 10550 10428 7180 Face 25554 8626 2398 8526 Face 25555 2533 13098 10428 Face 25556 8526 2398 2397 Face 25557 13280 13281 7180 Face 25558 13098 13280 7180 Face 25559 9779 9778 13281 Face 25560 13280 9779 13281 Face 25561 12351 12732 9778 Face 25562 9779 12351 9778 Face 25563 896 129 12732 Face 25564 12351 896 12732 Face 25565 9178 4215 129 Face 25566 896 9178 129 Face 25567 4468 9546 4215 Face 25568 9178 4468 4215 Face 25569 1884 1885 9546 Face 25570 4468 1884 9546 Face 25571 3830 12112 1885 Face 25572 1884 3830 1885 Face 25573 12849 12035 12112 Face 25574 3830 12849 12112 Face 25575 272 1002 12035 Face 25576 12849 272 12035 Face 25577 13669 3302 1002 Face 25578 272 13669 1002 Face 25579 774 12713 3302 Face 25580 13669 774 3302 Face 25581 8664 9385 12713 Face 25582 774 8664 12713 Face 25583 5884 6391 9385 Face 25584 8664 5884 9385 Face 25585 1762 5884 657 Face 25586 5884 1762 6391 Face 25587 9275 13032 13027 Face 25588 8416 13746 10868 Face 25589 13313 13407 13406 Face 25590 29283 29414 29282 Face 25591 89 771 8041 Face 25592 11712 11713 11794 Face 25593 7286 12992 13363 Face 25594 4187 9384 117 Face 25595 8537 8553 8314 Face 25596 29875 25435 23959 Face 25597 8641 13387 8764 Face 25598 12761 13293 9192 Face 25599 11689 9275 631 Face 25600 28548 34430 34416 Face 25601 11990 12074 11989 Face 25602 11502 11581 11501 Face 25603 13020 11101 13019 Face 25604 11077 11137 11076 Face 25605 31699 31698 31584 Face 25606 12363 12272 11227 Face 25607 7821 10447 11362 Face 25608 19728 19811 19810 Face 25609 33768 33894 33767 Face 25610 3046 12266 12539 Face 25611 13108 3046 12539 Face 25612 12266 13009 13769 Face 25613 12539 12266 13769 Face 25614 13009 13213 13193 Face 25615 30970 31069 30969 Face 25616 2665 12929 4355 Face 25617 19643 20456 20387 Face 25618 19562 19645 19644 Face 25619 9645 351 1659 Face 25620 11826 11825 11742 Face 25621 22026 22124 22025 Face 25622 3029 2749 12274 Face 25623 11020 11065 11019 Face 25624 11631 11632 11710 Face 25625 34675 34574 34689 Face 25626 34331 34764 34543 Face 25627 34648 34739 34469 Face 25628 34394 34545 34764 Face 25629 11766 11451 11781 Face 25630 981 11766 11781 Face 25631 8457 59 11451 Face 25632 11766 8457 11451 Face 25633 7185 12848 59 Face 25634 8457 7185 59 Face 25635 13754 12917 12848 Face 25636 7185 13754 12848 Face 25637 13024 11763 12917 Face 25638 13754 13024 12917 Face 25639 13024 13283 11541 Face 25640 11763 13024 11541 Face 25641 12909 7694 13570 Face 25642 3931 5385 8568 Face 25643 11504 11503 11420 Face 25644 13094 13664 13185 Face 25645 34668 11467 34638 Face 25646 3189 10742 12204 Face 25647 13769 13009 13193 Face 25648 13213 12624 12625 Face 25649 2665 4355 7740 Face 25650 13193 13213 12625 Face 25651 12466 5343 11295 Face 25652 12806 3046 34584 Face 25653 11137 11136 11076 Face 25654 14370 2383 14488 Face 25655 11902 11901 11820 Face 25656 21011 20785 25223 Face 25657 11580 11658 11579 Face 25658 11821 11902 11820 Face 25659 13241 13334 13240 Face 25660 12242 12241 12154 Face 25661 11577 11655 11576 Face 25662 13428 13427 13333 Face 25663 11655 11734 11654 Face 25664 11734 11733 11654 Face 25665 13429 13428 13334 Face 25666 13335 13429 13334 Face 25667 13146 13147 13241 Face 25668 13335 13334 13241 Face 25669 12871 12963 12870 Face 25670 12963 13053 13052 Face 25671 11901 11984 11900 Face 25672 11984 12068 11983 Face 25673 11339 11338 11262 Face 25674 11902 11985 11901 Face 25675 11268 11344 11267 Face 25676 11425 11424 11343 Face 25677 13484 12343 18838 Face 25678 12414 24680 12322 Face 25679 259 20298 14769 Face 25680 9647 7740 14769 Face 25681 12624 11840 11755 Face 25682 12625 12624 11755 Face 25683 11441 11360 11755 Face 25684 11840 11441 11755 Face 25685 20298 259 22595 Face 25686 22596 20298 22595 Face 25687 17526 17441 17527 Face 25688 20298 14768 14769 Face 25689 4339 11362 9620 Face 25690 10567 7926 8032 Face 25691 3694 5203 13738 Face 25692 4473 2362 19595 Face 25693 21001 21002 6836 Face 25694 20725 19356 22605 Face 25695 10915 10794 10916 Face 25696 4083 10189 13584 Face 25697 9954 9955 13585 Face 25698 6888 11146 6789 Face 25699 13586 13679 13678 Face 25700 13585 13586 13678 Face 25701 13679 13774 13773 Face 25702 13678 13679 13773 Face 25703 2402 2533 13773 Face 25704 13774 2402 13773 Face 25705 13028 13098 2533 Face 25706 2402 13028 2533 Face 25707 13218 13280 13098 Face 25708 13028 13218 13098 Face 25709 9777 9779 13280 Face 25710 13218 9777 13280 Face 25711 3047 12351 9779 Face 25712 9777 3047 9779 Face 25713 10994 896 12351 Face 25714 3047 10994 12351 Face 25715 7489 9178 896 Face 25716 10994 7489 896 Face 25717 10853 4468 9178 Face 25718 7489 10853 9178 Face 25719 4081 1884 4468 Face 25720 10853 4081 4468 Face 25721 8346 3830 1884 Face 25722 4081 8346 1884 Face 25723 12756 12849 3830 Face 25724 8346 12756 3830 Face 25725 175 272 12849 Face 25726 12756 175 12849 Face 25727 9394 13669 272 Face 25728 175 9394 272 Face 25729 13397 774 13669 Face 25730 9394 13397 13669 Face 25731 8562 8664 774 Face 25732 13397 8562 774 Face 25733 6507 5884 8664 Face 25734 8562 6507 8664 Face 25735 34707 34562 34520 Face 25736 6507 657 5884 Face 25737 12201 12740 11850 Face 25738 7810 3054 8131 Face 25739 9275 11384 13032 Face 25740 11384 11928 11948 Face 25741 10960 7389 6817 Face 25742 11393 11476 11475 Face 25743 34755 34489 34442 Face 25744 11312 11393 11392 Face 25745 98 13379 3435 Face 25746 12932 98 3435 Face 25747 2776 1571 9557 Face 25748 13387 2776 9557 Face 25749 8036 7384 13673 Face 25750 11314 11395 11313 Face 25751 8849 11384 9275 Face 25752 9843 13402 13401 Face 25753 29870 25439 25404 Face 25754 9630 9631 10967 Face 25755 11101 12363 11227 Face 25756 11507 11587 11506 Face 25757 29545 29544 29413 Face 25758 10886 22228 886 Face 25759 1782 9167 11360 Face 25760 11441 1782 11360 Face 25761 11932 11851 1782 Face 25762 1782 11851 9167 Face 25763 13409 13504 13408 Face 25764 13504 13601 13600 Face 25765 14908 20725 14907 Face 25766 4710 21484 21091 Face 25767 12466 11295 12729 Face 25768 13572 12466 12729 Face 25769 13425 13424 13330 Face 25770 29827 11652 29828 Face 25771 14665 16028 12549 Face 25772 12457 12811 10125 Face 25773 11792 11793 11873 Face 25774 11553 11554 11631 Face 25775 11621 12735 11770 Face 25776 13872 13871 24751 Face 25777 9401 981 12735 Face 25778 11621 9401 12735 Face 25779 11687 11766 981 Face 25780 9401 11687 981 Face 25781 12734 8457 11766 Face 25782 11687 12734 11766 Face 25783 1758 7185 8457 Face 25784 12734 1758 8457 Face 25785 2768 13754 7185 Face 25786 1758 2768 7185 Face 25787 2768 11450 13024 Face 25788 13754 2768 13024 Face 25789 11450 11785 13283 Face 25790 13024 11450 13283 Face 25791 34460 34426 34778 Face 25792 34456 34301 34488 Face 25793 31712 31824 31711 Face 25794 12925 13018 12808 Face 25795 19677 19673 19635 Face 25796 12234 24680 24398 Face 25797 18484 18337 17878 Face 25798 9521 13277 4725 Face 25799 28406 28272 34287 Face 25800 23421 24130 24028 Face 25801 14506 12348 12261 Face 25802 17080 17170 17169 Face 25803 12969 12970 13059 Face 25804 973 16386 11011 Face 25805 22301 22302 22397 Face 25806 12427 12517 12426 Face 25807 12243 12331 12242 Face 25808 11985 11984 11901 Face 25809 11419 11501 11418 Face 25810 11580 11579 11500 Face 25811 13713 3821 13712 Face 25812 13334 13428 13333 Face 25813 29406 29015 14550 Face 25814 33888 33887 33761 Face 25815 12239 12238 12151 Face 25816 12152 12239 12151 Face 25817 12239 12327 12238 Face 25818 12327 12326 12238 Face 25819 12327 12419 12326 Face 25820 12419 12418 12326 Face 25821 13523 13522 13427 Face 25822 13428 13523 13427 Face 25823 11820 11901 11819 Face 25824 12068 12067 11983 Face 25825 12069 12068 11984 Face 25826 11985 12069 11984 Face 25827 11344 11425 11343 Face 25828 12156 12155 12068 Face 25829 24725 29828 11652 Face 25830 22421 15175 21095 Face 25831 14768 9647 14769 Face 25832 5341 12563 12926 Face 25833 13710 13709 13616 Face 25834 18133 17456 40 Face 25835 11509 26128 26245 Face 25836 11111 11112 11174 Face 25837 30020 30082 30081 Face 25838 32371 32372 32483 Face 25839 12940 4710 21091 Face 25840 18174 18173 20462 Face 25841 12878 12970 12877 Face 25842 12970 13060 13059 Face 25843 12695 12694 12604 Face 25844 12517 12605 12516 Face 25845 12371 13168 13262 Face 25846 20529 13479 14908 Face 25847 12504 22756 12414 Face 25848 34287 29067 28406 Face 25849 11490 11568 11489 Face 25850 9955 13586 13585 Face 25851 13587 13680 13679 Face 25852 13586 13587 13679 Face 25853 13680 13775 13774 Face 25854 13679 13680 13774 Face 25855 2531 2402 13774 Face 25856 13775 2531 13774 Face 25857 12934 13028 2402 Face 25858 2531 12934 2402 Face 25859 13085 13218 13028 Face 25860 12934 13085 13028 Face 25861 13295 9777 13218 Face 25862 13085 13295 13218 Face 25863 13306 3047 9777 Face 25864 13295 13306 9777 Face 25865 5629 10994 3047 Face 25866 13306 5629 3047 Face 25867 7604 7489 10994 Face 25868 5629 7604 10994 Face 25869 7629 10853 7489 Face 25870 7604 7629 7489 Face 25871 4209 4081 10853 Face 25872 7629 4209 10853 Face 25873 7575 8346 4081 Face 25874 4209 7575 4081 Face 25875 5375 12756 8346 Face 25876 7575 5375 8346 Face 25877 285 175 12756 Face 25878 5375 285 12756 Face 25879 12936 9394 175 Face 25880 285 12936 175 Face 25881 12461 13397 9394 Face 25882 12936 12461 9394 Face 25883 4474 8562 13397 Face 25884 12461 4474 13397 Face 25885 150 6507 8562 Face 25886 4474 150 8562 Face 25887 4447 657 6507 Face 25888 15712 15855 15711 Face 25889 27219 34567 34337 Face 25890 6507 150 4447 Face 25891 5468 9302 12191 Face 25892 9302 9070 12191 Face 25893 11392 11393 11475 Face 25894 11476 11554 11553 Face 25895 4073 7508 11941 Face 25896 11713 11795 11794 Face 25897 11937 12022 13379 Face 25898 98 11937 13379 Face 25899 10123 11677 1571 Face 25900 12378 6260 13104 Face 25901 34662 34460 34526 Face 25902 29414 29545 29413 Face 25903 13416 13511 13415 Face 25904 5385 3931 15682 Face 25905 7339 7338 7232 Face 25906 12323 12415 12322 Face 25907 12785 12878 12784 Face 25908 22561 19666 3378 Face 25909 15580 12560 3049 Face 25910 12630 2644 19721 Face 25911 32601 32600 32483 Face 25912 31989 31988 31881 Face 25913 30663 30662 30568 Face 25914 12806 12356 12266 Face 25915 11448 34584 13108 Face 25916 12356 12188 13009 Face 25917 22309 22405 22404 Face 25918 12266 12356 13009 Face 25919 3461 15954 12147 Face 25920 22212 22213 22308 Face 25921 25272 11673 25271 Face 25922 12363 12545 13572 Face 25923 8778 10465 13189 Face 25924 20281 19635 7916 Face 25925 10362 6136 62 Face 25926 11324 11323 11248 Face 25927 11544 11621 11853 Face 25928 8475 3170 34783 Face 25929 13201 9401 11621 Face 25930 11544 13201 11621 Face 25931 13565 11687 9401 Face 25932 13201 13565 9401 Face 25933 13764 12734 11687 Face 25934 13565 13764 11687 Face 25935 10934 1758 12734 Face 25936 13764 10934 12734 Face 25937 2639 2768 1758 Face 25938 10934 2639 1758 Face 25939 2639 7670 11450 Face 25940 2768 2639 11450 Face 25941 7670 13282 11785 Face 25942 11450 7670 11785 Face 25943 11695 11616 11785 Face 25944 13282 11695 11785 Face 25945 13406 13501 13500 Face 25946 13783 13782 13687 Face 25947 12504 12593 12592 Face 25948 12927 12537 10452 Face 25949 12415 12505 12414 Face 25950 19644 17260 19562 Face 25951 12188 13192 13213 Face 25952 13009 12188 13213 Face 25953 13192 12900 12624 Face 25954 20465 21379 21377 Face 25955 20464 20465 21377 Face 25956 11635 11714 11634 Face 25957 12970 12969 12877 Face 25958 7800 7801 7910 Face 25959 12785 12784 12694 Face 25960 12331 12423 12330 Face 25961 12423 12422 12330 Face 25962 11658 11657 11579 Face 25963 11501 11580 11500 Face 25964 3821 10615 2121 Face 25965 10615 9299 2121 Face 25966 8017 7910 11786 Face 25967 32400 32511 32510 Face 25968 9513 10446 12809 Face 25969 26189 25563 34426 Face 25970 12151 12150 12063 Face 25971 12064 12151 12063 Face 25972 11189 11188 11126 Face 25973 11127 11189 11126 Face 25974 24586 11349 29820 Face 25975 13620 13619 13522 Face 25976 7583 10447 7821 Face 25977 11984 11983 11900 Face 25978 11338 11419 11337 Face 25979 11501 11500 11418 Face 25980 12069 12156 12068 Face 25981 12513 12512 12422 Face 25982 12376 12466 13572 Face 25983 20738 20827 21104 Face 25984 34593 12918 11383 Face 25985 12335 12427 12334 Face 25986 13037 14976 20531 Face 25987 19677 20465 19673 Face 25988 13213 13192 12624 Face 25989 12900 11839 11840 Face 25990 12624 12900 11840 Face 25991 11520 11441 11840 Face 25992 21738 21835 21834 Face 25993 21379 14976 13037 Face 25994 14976 20532 20531 Face 25995 22219 22218 22123 Face 25996 8314 9631 9630 Face 25997 218 5385 15826 Face 25998 21937 22237 22235 Face 25999 13154 13249 13153 Face 26000 6789 6790 6890 Face 26001 29677 29676 29544 Face 26002 13588 13587 13491 Face 26003 13492 13588 13491 Face 26004 13588 13681 13680 Face 26005 13587 13588 13680 Face 26006 13681 13776 13775 Face 26007 13680 13681 13775 Face 26008 2662 2531 13775 Face 26009 13776 2662 13775 Face 26010 280 12934 2531 Face 26011 2662 280 2531 Face 26012 13026 13085 12934 Face 26013 280 13026 12934 Face 26014 13290 13295 13085 Face 26015 13026 13290 13085 Face 26016 12093 13306 13295 Face 26017 13290 12093 13295 Face 26018 5753 5629 13306 Face 26019 12093 5753 13306 Face 26020 9289 7604 5629 Face 26021 5753 9289 5629 Face 26022 7050 7629 7604 Face 26023 9289 7050 7604 Face 26024 2911 4209 7629 Face 26025 7050 2911 7629 Face 26026 4992 7575 4209 Face 26027 2911 4992 4209 Face 26028 2515 5375 7575 Face 26029 4992 2515 7575 Face 26030 639 285 5375 Face 26031 2515 639 5375 Face 26032 9393 12936 285 Face 26033 639 9393 285 Face 26034 13 12461 12936 Face 26035 9393 13 12936 Face 26036 8465 4474 12461 Face 26037 13 8465 12461 Face 26038 6534 150 4474 Face 26039 8465 6534 4474 Face 26040 10619 13481 7622 Face 26041 5904 10996 8836 Face 26042 2257 1989 13176 Face 26043 9302 12931 9757 Face 26044 12485 12484 12394 Face 26045 7622 8641 3053 Face 26046 11475 11476 11553 Face 26047 11554 11632 11631 Face 26048 5495 11363 152 Face 26049 123 5471 13784 Face 26050 12838 5468 12022 Face 26051 11937 12838 12022 Face 26052 10123 12378 11677 Face 26053 6260 3193 13104 Face 26054 29545 29677 29544 Face 26055 29808 29807 29676 Face 26056 14252 14983 4941 Face 26057 7508 10496 11941 Face 26058 11361 7821 11362 Face 26059 12591 24294 12592 Face 26060 20461 21370 21369 Face 26061 12149 12236 12148 Face 26062 16991 16992 19495 Face 26063 31266 31369 31265 Face 26064 11839 11520 11840 Face 26065 22124 22123 22025 Face 26066 9313 1782 11441 Face 26067 11520 9313 11441 Face 26068 13895 11932 12387 Face 26069 9313 11932 1782 Face 26070 13601 13694 13693 Face 26071 1550 3937 1118 Face 26072 988 15580 3049 Face 26073 21737 21738 21834 Face 26074 10553 9898 8989 Face 26075 9045 13556 22598 Face 26076 33917 31652 34175 Face 26077 12505 12593 12504 Face 26078 6629 1673 10496 Face 26079 13557 5346 12838 Face 26080 11545 11544 11936 Face 26081 34795 34783 34571 Face 26082 9500 13201 11544 Face 26083 11545 9500 11544 Face 26084 13658 13565 13201 Face 26085 9500 13658 13201 Face 26086 12374 13764 13565 Face 26087 13658 12374 13565 Face 26088 415 10934 13764 Face 26089 12374 415 13764 Face 26090 11848 2639 10934 Face 26091 415 11848 10934 Face 26092 11848 11211 7670 Face 26093 2639 11848 7670 Face 26094 11211 13111 13282 Face 26095 7670 11211 13282 Face 26096 11777 11695 13282 Face 26097 13111 11777 13282 Face 26098 29677 29808 29676 Face 26099 30022 30084 30083 Face 26100 10452 9673 3571 Face 26101 11972 11971 11887 Face 26102 13293 2771 9192 Face 26103 12683 12682 12592 Face 26104 27332 27450 27998 Face 26105 13503 13504 13600 Face 26106 21931 21930 21834 Face 26107 21835 21931 21834 Face 26108 22029 22028 21930 Face 26109 14674 11936 11853 Face 26110 11504 11422 11505 Face 26111 12593 12683 12592 Face 26112 11936 14674 13860 Face 26113 13457 9538 9424 Face 26114 11547 11625 7687 Face 26115 10001 11288 9649 Face 26116 4355 10472 7819 Face 26117 11421 11422 11420 Face 26118 11436 12086 13747 Face 26119 7460 11469 7573 Face 26120 7351 31989 7242 Face 26121 23642 13388 12852 Face 26122 17571 18628 17547 Face 26123 31989 7351 7350 Face 26124 34372 34646 34328 Face 26125 34448 34551 22040 Face 26126 13495 9957 13401 Face 26127 33808 34759 32301 Face 26128 8533 12296 8632 Face 26129 12208 12297 12296 Face 26130 15802 13310 9844 Face 26131 9432 9169 13767 Face 26132 30454 24425 22706 Face 26133 12423 12513 12422 Face 26134 12416 12415 12323 Face 26135 15449 14787 14308 Face 26136 12601 12600 12512 Face 26137 32565 32564 32447 Face 26138 11989 12073 11988 Face 26139 21377 21379 13037 Face 26140 12605 12604 12516 Face 26141 9302 5346 12931 Face 26142 21931 22029 21930 Face 26143 6686 33411 6687 Face 26144 32955 32954 32822 Face 26145 31373 31372 31269 Face 26146 31270 31373 31269 Face 26147 22127 22126 22028 Face 26148 22029 22127 22028 Face 26149 13223 13128 13224 Face 26150 22834 14766 14765 Face 26151 7704 7705 10846 Face 26152 13367 13366 13275 Face 26153 12773 12772 12682 Face 26154 9407 2377 13277 Face 26155 13589 13588 13492 Face 26156 13493 13589 13492 Face 26157 13589 13682 13681 Face 26158 13588 13589 13681 Face 26159 13682 13777 13776 Face 26160 13681 13682 13776 Face 26161 9773 2662 13776 Face 26162 13777 9773 13776 Face 26163 11042 280 2662 Face 26164 9773 11042 2662 Face 26165 13022 13026 280 Face 26166 11042 13022 280 Face 26167 13302 13290 13026 Face 26168 13022 13302 13026 Face 26169 891 12093 13290 Face 26170 13302 891 13290 Face 26171 1781 5753 12093 Face 26172 891 1781 12093 Face 26173 7715 9289 5753 Face 26174 1781 7715 5753 Face 26175 9547 7050 9289 Face 26176 7715 9547 9289 Face 26177 2912 2911 7050 Face 26178 9547 2912 7050 Face 26179 11372 4992 2911 Face 26180 2912 11372 2911 Face 26181 12757 2515 4992 Face 26182 11372 12757 4992 Face 26183 220 639 2515 Face 26184 12757 220 2515 Face 26185 12937 9393 639 Face 26186 220 12937 639 Face 26187 6674 13 9393 Face 26188 12937 6674 9393 Face 26189 5502 8465 13 Face 26190 6674 5502 13 Face 26191 5755 6534 8465 Face 26192 5502 5755 8465 Face 26193 10619 7622 3052 Face 26194 5755 4841 286 Face 26195 9070 9302 9757 Face 26196 13190 11539 9757 Face 26197 12304 12395 12394 Face 26198 12303 12304 12394 Face 26199 8764 10926 2382 Face 26200 2511 8764 2382 Face 26201 11677 11598 270 Face 26202 9557 13386 10926 Face 26203 5346 9302 5468 Face 26204 12838 5346 5468 Face 26205 2776 10123 1571 Face 26206 12378 13104 11677 Face 26207 16859 18064 29807 Face 26208 11170 11239 11238 Face 26209 13610 13703 13702 Face 26210 3947 13018 12925 Face 26211 29808 16859 29807 Face 26212 9759 1659 5507 Face 26213 4725 13299 9520 Face 26214 34664 34431 34592 Face 26215 20042 20124 20123 Face 26216 2917 7810 9164 Face 26217 34666 34452 34441 Face 26218 11444 11445 12360 Face 26219 32983 33117 32982 Face 26220 30413 30412 30345 Face 26221 11356 12356 12806 Face 26222 3170 11356 12806 Face 26223 11356 13195 12188 Face 26224 12356 11356 12188 Face 26225 14208 15719 20810 Face 26226 27628 29613 26450 Face 26227 14873 182 12765 Face 26228 17266 17637 2423 Face 26229 8844 12479 12569 Face 26230 13154 13153 13059 Face 26231 12562 13557 12838 Face 26232 12488 12489 12577 Face 26233 25563 26559 25985 Face 26234 34602 34829 34727 Face 26235 13216 9500 11545 Face 26236 12476 13216 11545 Face 26237 11530 13658 9500 Face 26238 13216 11530 9500 Face 26239 12464 12374 13658 Face 26240 11530 12464 13658 Face 26241 2909 415 12374 Face 26242 12464 2909 12374 Face 26243 11930 11848 415 Face 26244 2909 11930 415 Face 26245 11930 9397 11211 Face 26246 11848 11930 11211 Face 26247 9397 13017 13111 Face 26248 11211 9397 13111 Face 26249 23248 23192 23193 Face 26250 4325 10518 4195 Face 26251 12439 11852 9874 Face 26252 10518 4325 10638 Face 26253 7810 8131 9164 Face 26254 12489 12578 12577 Face 26255 12683 12773 12682 Face 26256 12866 12865 12772 Face 26257 13195 13120 13192 Face 26258 12188 13195 13192 Face 26259 13120 12991 12900 Face 26260 13192 13120 12900 Face 26261 18943 6529 26184 Face 26262 11146 214 11085 Face 26263 11387 11470 11469 Face 26264 34759 33808 34678 Face 26265 11470 11548 11547 Face 26266 11469 11470 11547 Face 26267 11548 11626 11625 Face 26268 11547 11548 11625 Face 26269 11625 11626 7801 Face 26270 7801 11705 11786 Face 26271 11705 11787 11786 Face 26272 13590 13493 9956 Face 26273 11787 11868 11867 Face 26274 11786 11787 11867 Face 26275 11868 11952 11951 Face 26276 11867 11868 11951 Face 26277 11952 12037 12036 Face 26278 11951 11952 12036 Face 26279 12037 12124 12123 Face 26280 12036 12037 12123 Face 26281 12124 12209 12208 Face 26282 12123 12124 12208 Face 26283 12209 12298 12297 Face 26284 12208 12209 12297 Face 26285 214 6788 6691 Face 26286 12773 12866 12772 Face 26287 12958 12957 12865 Face 26288 12866 12958 12865 Face 26289 22021 22020 21922 Face 26290 11205 10692 8538 Face 26291 11296 4598 13670 Face 26292 13048 13047 12957 Face 26293 12517 12516 12426 Face 26294 11270 11269 11200 Face 26295 29825 29824 22996 Face 26296 13690 13785 13689 Face 26297 12991 11921 11839 Face 26298 12900 12991 11839 Face 26299 11599 11520 11839 Face 26300 11921 11599 11839 Face 26301 28685 26450 6529 Face 26302 12563 5341 34593 Face 26303 11966 12051 11965 Face 26304 11201 11200 11138 Face 26305 8273 1635 8170 Face 26306 34806 34330 34417 Face 26307 11316 11315 11240 Face 26308 9424 7607 7488 Face 26309 13590 13589 13493 Face 26310 34783 34475 34531 Face 26311 13590 13683 13682 Face 26312 13589 13590 13682 Face 26313 13778 13777 13682 Face 26314 13683 13778 13682 Face 26315 13778 106 9773 Face 26316 13777 13778 9773 Face 26317 13029 11042 9773 Face 26318 106 13029 9773 Face 26319 13003 13022 11042 Face 26320 13029 13003 11042 Face 26321 2403 13302 13022 Face 26322 13003 2403 13022 Face 26323 10866 891 13302 Face 26324 2403 10866 13302 Face 26325 5880 1781 891 Face 26326 10866 5880 891 Face 26327 3957 7715 1781 Face 26328 5880 3957 1781 Face 26329 7938 9547 7715 Face 26330 3957 7938 7715 Face 26331 4337 2912 9547 Face 26332 7938 4337 9547 Face 26333 11849 11372 2912 Face 26334 4337 11849 2912 Face 26335 12758 12757 11372 Face 26336 11849 12758 11372 Face 26337 321 220 12757 Face 26338 12758 321 12757 Face 26339 9531 12937 220 Face 26340 321 9531 220 Face 26341 8724 6674 12937 Face 26342 9531 8724 12937 Face 26343 1233 5502 6674 Face 26344 8724 1233 6674 Face 26345 104 5755 5502 Face 26346 1233 104 5502 Face 26347 16603 4806 286 Face 26348 104 4841 5755 Face 26349 12931 13190 9757 Face 26350 5526 13674 11305 Face 26351 12215 12304 12303 Face 26352 12214 12215 12303 Face 26353 8764 9557 10926 Face 26354 1571 270 13386 Face 26355 11393 11394 11476 Face 26356 11477 11555 11554 Face 26357 5346 11231 12931 Face 26358 13190 13189 10465 Face 26359 6629 3053 1673 Face 26360 8641 8764 2511 Face 26361 11169 11170 11238 Face 26362 11314 11313 11238 Face 26363 10496 1673 12627 Face 26364 2511 2382 2257 Face 26365 12791 23129 23128 Face 26366 120 9759 5507 Face 26367 12573 12574 12663 Face 26368 11941 10496 12026 Face 26369 17039 33430 17424 Face 26370 1673 2511 2257 Face 26371 24694 24695 24830 Face 26372 13199 23362 23304 Face 26373 12538 9313 11520 Face 26374 11599 12538 11520 Face 26375 13895 12387 12385 Face 26376 12538 12387 9313 Face 26377 13789 13788 13693 Face 26378 13600 13601 13693 Face 26379 32957 32956 32824 Face 26380 21323 23514 21415 Face 26381 12958 13048 12957 Face 26382 11139 11138 11078 Face 26383 7182 9402 120 Face 26384 2123 16568 3432 Face 26385 34689 34681 34480 Face 26386 12107 14385 11228 Face 26387 12477 12476 12107 Face 26388 12193 12477 12107 Face 26389 13476 13216 12476 Face 26390 12477 13476 12476 Face 26391 11609 11530 13216 Face 26392 13476 11609 13216 Face 26393 12283 12464 11530 Face 26394 11609 12283 11530 Face 26395 12203 2909 12464 Face 26396 12283 12203 12464 Face 26397 12738 11930 2909 Face 26398 12203 12738 2909 Face 26399 12738 11526 9397 Face 26400 11930 12738 9397 Face 26401 11526 13016 13017 Face 26402 9397 11526 13017 Face 26403 11943 5019 15323 Face 26404 12291 13016 11526 Face 26405 9758 9502 4466 Face 26406 9874 9758 4466 Face 26407 13407 13502 13501 Face 26408 3170 8475 11356 Face 26409 13142 13141 13047 Face 26410 10394 2667 1231 Face 26411 21265 21264 18064 Face 26412 10192 10241 7738 Face 26413 2529 7830 5637 Face 26414 29077 28421 23276 Face 26415 11307 11388 11387 Face 26416 13048 13142 13047 Face 26417 11388 11471 11470 Face 26418 11387 11388 11470 Face 26419 11471 11549 11548 Face 26420 11470 11471 11548 Face 26421 11549 11627 11626 Face 26422 11548 11549 11626 Face 26423 11627 11706 11705 Face 26424 11626 11627 11705 Face 26425 11706 11788 11787 Face 26426 11705 11706 11787 Face 26427 11788 11869 11868 Face 26428 11787 11788 11868 Face 26429 11869 11953 11952 Face 26430 11868 11869 11952 Face 26431 11953 12038 12037 Face 26432 11952 11953 12037 Face 26433 12038 12125 12124 Face 26434 12037 12038 12124 Face 26435 12125 12210 12209 Face 26436 12124 12125 12209 Face 26437 12210 12299 12298 Face 26438 12209 12210 12298 Face 26439 12299 12390 12389 Face 26440 12298 12299 12389 Face 26441 12480 12479 12389 Face 26442 12390 12480 12389 Face 26443 26559 25563 18553 Face 26444 12480 12569 12479 Face 26445 30529 30528 25677 Face 26446 34550 34759 34521 Face 26447 11201 11270 11200 Face 26448 11056 11057 11116 Face 26449 7850 9385 7382 Face 26450 29837 29836 29825 Face 26451 13197 2782 5641 Face 26452 2901 10585 1550 Face 26453 19632 19633 19716 Face 26454 1762 2145 5253 Face 26455 11323 11322 11247 Face 26456 7583 7821 13772 Face 26457 11427 11426 11345 Face 26458 11346 11345 11269 Face 26459 20126 20204 20203 Face 26460 30278 30345 30277 Face 26461 9842 9843 13401 Face 26462 11147 6891 6790 Face 26463 6874 9729 8266 Face 26464 8266 24637 6874 Face 26465 13684 13683 13590 Face 26466 13591 13684 13590 Face 26467 13779 13778 13683 Face 26468 13684 13779 13683 Face 26469 13779 4062 106 Face 26470 13778 13779 106 Face 26471 8773 13029 106 Face 26472 4062 8773 106 Face 26473 12928 13003 13029 Face 26474 8773 12928 13029 Face 26475 5345 2403 13003 Face 26476 12928 5345 13003 Face 26477 13211 10866 2403 Face 26478 5345 13211 2403 Face 26479 1085 5880 10866 Face 26480 13211 1085 10866 Face 26481 3828 3957 5880 Face 26482 1085 3828 5880 Face 26483 7920 7938 3957 Face 26484 3828 7920 3957 Face 26485 4465 4337 7938 Face 26486 7920 4465 7938 Face 26487 13025 11849 4337 Face 26488 4465 13025 4337 Face 26489 13007 12758 11849 Face 26490 13025 13007 11849 Face 26491 2495 321 12758 Face 26492 13007 2495 12758 Face 26493 9646 9531 321 Face 26494 2495 9646 321 Face 26495 645 8724 9531 Face 26496 9646 645 9531 Face 26497 10627 1233 8724 Face 26498 645 10627 8724 Face 26499 5883 104 1233 Face 26500 10627 5883 1233 Face 26501 12556 14867 10011 Face 26502 5883 3431 104 Face 26503 13190 10622 11539 Face 26504 2025 3831 1001 Face 26505 12130 12215 12214 Face 26506 12129 12130 12214 Face 26507 9557 1571 13386 Face 26508 1571 11677 270 Face 26509 11312 11313 11393 Face 26510 11394 11477 11476 Face 26511 123 9730 5471 Face 26512 13011 12933 7919 Face 26513 7890 8772 7012 Face 26514 9730 13011 7919 Face 26515 11239 11314 11238 Face 26516 11395 11478 11394 Face 26517 10000 9743 10123 Face 26518 4842 6260 12378 Face 26519 10672 12731 7389 Face 26520 21827 21826 21729 Face 26521 12022 5468 12108 Face 26522 12395 12485 12394 Face 26523 11480 11558 11479 Face 26524 11636 11635 11557 Face 26525 8434 8435 8533 Face 26526 13237 13236 13141 Face 26527 31070 31169 31069 Face 26528 21462 21937 20384 Face 26529 25324 25317 23005 Face 26530 30346 30413 30345 Face 26531 31477 31476 31372 Face 26532 12397 12487 12486 Face 26533 33494 33493 33360 Face 26534 30484 30483 30412 Face 26535 29838 29837 29825 Face 26536 12018 9320 14541 Face 26537 29151 29150 29019 Face 26538 11139 11201 11138 Face 26539 7382 9385 6391 Face 26540 8145 8038 282 Face 26541 11157 11228 14066 Face 26542 2917 9164 5381 Face 26543 12922 12477 12193 Face 26544 12281 12922 12193 Face 26545 13372 13476 12477 Face 26546 12922 13372 12477 Face 26547 13469 11609 13476 Face 26548 13372 13469 13476 Face 26549 12282 12283 11609 Face 26550 13469 12282 11609 Face 26551 12830 12203 12283 Face 26552 12282 12830 12283 Face 26553 12830 12388 12738 Face 26554 12203 12830 12738 Face 26555 12388 11447 11526 Face 26556 12738 12388 11526 Face 26557 11540 5019 12291 Face 26558 11447 12291 11526 Face 26559 13489 13488 9755 Face 26560 9730 7919 5471 Face 26561 9502 2256 4728 Face 26562 12842 13271 13272 Face 26563 3552 1318 6407 Face 26564 2273 3048 5002 Face 26565 13457 7488 13763 Face 26566 16859 21265 18064 Face 26567 11451 10001 11781 Face 26568 10702 9521 9520 Face 26569 17424 33430 11232 Face 26570 16832 21263 17194 Face 26571 11308 11389 11388 Face 26572 11307 11308 11388 Face 26573 11389 11472 11471 Face 26574 11388 11389 11471 Face 26575 11472 11550 11549 Face 26576 11471 11472 11549 Face 26577 11550 11628 11627 Face 26578 11549 11550 11627 Face 26579 11628 11707 11706 Face 26580 11627 11628 11706 Face 26581 11707 11789 11788 Face 26582 11706 11707 11788 Face 26583 11789 11870 11869 Face 26584 11788 11789 11869 Face 26585 11870 11954 11953 Face 26586 11869 11870 11953 Face 26587 11954 12039 12038 Face 26588 11953 11954 12038 Face 26589 12039 12126 12125 Face 26590 12038 12039 12125 Face 26591 12126 12211 12210 Face 26592 12125 12126 12210 Face 26593 12211 12300 12299 Face 26594 12210 12211 12299 Face 26595 12300 12391 12390 Face 26596 12299 12300 12390 Face 26597 12481 12480 12390 Face 26598 12391 12481 12390 Face 26599 12570 12569 12480 Face 26600 12481 12570 12480 Face 26601 1417 5751 5752 Face 26602 12570 12660 12569 Face 26603 22044 21665 22426 Face 26604 11767 11301 12847 Face 26605 12842 13196 34752 Face 26606 8433 8434 8533 Face 26607 8475 11431 11356 Face 26608 12806 34584 34571 Face 26609 11431 12750 13195 Face 26610 11356 11431 13195 Face 26611 11438 13477 11518 Face 26612 25738 25739 23442 Face 26613 15479 11043 11449 Face 26614 13477 11043 11302 Face 26615 30412 30411 30344 Face 26616 11509 11508 11426 Face 26617 13495 13494 9957 Face 26618 8038 8037 3573 Face 26619 13495 13592 13591 Face 26620 13494 13495 13591 Face 26621 13685 13684 13591 Face 26622 13592 13685 13591 Face 26623 13780 13779 13684 Face 26624 13685 13780 13684 Face 26625 9079 4062 13779 Face 26626 13780 9079 13779 Face 26627 9667 8773 4062 Face 26628 9079 9667 4062 Face 26629 12923 12928 8773 Face 26630 9667 12923 8773 Face 26631 11865 5345 12928 Face 26632 12923 11865 12928 Face 26633 2904 13211 5345 Face 26634 11865 2904 5345 Face 26635 1084 1085 13211 Face 26636 2904 1084 13211 Face 26637 13662 3828 1085 Face 26638 1084 13662 1085 Face 26639 1878 7920 3828 Face 26640 13662 1878 3828 Face 26641 4596 4465 7920 Face 26642 1878 4596 7920 Face 26643 60 13025 4465 Face 26644 4596 60 4465 Face 26645 13006 13007 13025 Face 26646 60 13006 13025 Face 26647 279 2495 13007 Face 26648 13006 279 13007 Face 26649 12121 9646 2495 Face 26650 279 12121 2495 Face 26651 9880 645 9646 Face 26652 12121 9880 9646 Face 26653 2645 10627 645 Face 26654 9880 2645 645 Face 26655 1679 5883 10627 Face 26656 2645 1679 10627 Face 26657 16284 16444 3930 Face 26658 1679 7184 5883 Face 26659 12131 12216 12215 Face 26660 10926 893 2381 Face 26661 11874 11958 11957 Face 26662 11873 11874 11957 Face 26663 13104 12640 11598 Face 26664 11677 13104 11598 Face 26665 11237 11238 11312 Face 26666 11313 11394 11393 Face 26667 13011 7890 7012 Face 26668 12933 13011 7012 Face 26669 12044 12045 12131 Face 26670 12132 12217 12216 Face 26671 11478 11556 11555 Face 26672 11477 11478 11555 Face 26673 420 10000 2776 Face 26674 9743 12378 10123 Face 26675 34678 33808 34830 Face 26676 13599 13598 13501 Face 26677 3183 9743 10000 Face 26678 13576 3183 10000 Face 26679 11558 11636 11557 Face 26680 11715 11714 11635 Face 26681 11262 11261 11192 Face 26682 11786 11867 8017 Face 26683 5364 5365 6903 Face 26684 9886 12731 10567 Face 26685 12684 12683 12593 Face 26686 11538 13283 11460 Face 26687 13142 13237 13141 Face 26688 432 20622 20711 Face 26689 14565 14685 7295 Face 26690 10496 12627 12026 Face 26691 12750 13119 13120 Face 26692 13195 12750 13120 Face 26693 11179 11248 11178 Face 26694 13477 11302 11518 Face 26695 3951 1881 15167 Face 26696 11270 11346 11269 Face 26697 10519 6021 6139 Face 26698 12123 12208 8435 Face 26699 2784 2654 5330 Face 26700 12399 12489 12488 Face 26701 12652 12922 12281 Face 26702 12372 12652 12281 Face 26703 13466 13372 12922 Face 26704 12652 13466 12922 Face 26705 13376 13469 13372 Face 26706 13466 13376 13372 Face 26707 11374 12282 13469 Face 26708 13376 11374 13469 Face 26709 13571 12830 12282 Face 26710 11374 13571 12282 Face 26711 13571 12014 12388 Face 26712 12830 13571 12388 Face 26713 12014 11365 11447 Face 26714 12388 12014 11447 Face 26715 11617 14518 11540 Face 26716 11365 11540 11447 Face 26717 13488 8373 9755 Face 26718 20979 17378 21264 Face 26719 27388 18943 26184 Face 26720 10550 7180 10671 Face 26721 6407 2273 5002 Face 26722 15471 12116 20932 Face 26723 13330 13329 13236 Face 26724 13237 13330 13236 Face 26725 21265 20979 21264 Face 26726 13363 12267 10970 Face 26727 12501 14915 12590 Face 26728 29806 16832 29805 Face 26729 11309 11390 11389 Face 26730 11308 11309 11389 Face 26731 11390 11473 11472 Face 26732 11389 11390 11472 Face 26733 11473 11551 11550 Face 26734 11472 11473 11550 Face 26735 11551 11629 11628 Face 26736 11550 11551 11628 Face 26737 11629 11708 11707 Face 26738 11628 11629 11707 Face 26739 11708 11790 11789 Face 26740 11707 11708 11789 Face 26741 11790 11871 11870 Face 26742 11789 11790 11870 Face 26743 11871 11955 11954 Face 26744 11870 11871 11954 Face 26745 11955 12040 12039 Face 26746 11954 11955 12039 Face 26747 12040 12127 12126 Face 26748 12039 12040 12126 Face 26749 12127 12212 12211 Face 26750 12126 12127 12211 Face 26751 12212 12301 12300 Face 26752 12211 12212 12300 Face 26753 12301 12392 12391 Face 26754 12300 12301 12391 Face 26755 12392 12482 12481 Face 26756 12391 12392 12481 Face 26757 12571 12570 12481 Face 26758 12482 12571 12481 Face 26759 12662 12753 15503 Face 26760 12571 12661 12570 Face 26761 11301 11697 11619 Face 26762 12847 11301 11619 Face 26763 11523 11761 5381 Face 26764 7819 10472 15583 Face 26765 13049 13143 13142 Face 26766 1121 12935 9190 Face 26767 13119 13084 12991 Face 26768 13120 13119 12991 Face 26769 13084 12180 11921 Face 26770 12991 13084 11921 Face 26771 11438 11518 12184 Face 26772 11925 11438 12184 Face 26773 13205 11462 8171 Face 26774 13424 13423 13329 Face 26775 910 18437 909 Face 26776 8139 6264 10430 Face 26777 13593 13592 13495 Face 26778 13496 13593 13495 Face 26779 13686 13685 13592 Face 26780 13593 13686 13592 Face 26781 13781 13780 13685 Face 26782 13686 13781 13685 Face 26783 13781 8214 9079 Face 26784 13780 13781 9079 Face 26785 9553 9667 9079 Face 26786 8214 9553 9079 Face 26787 9553 534 12923 Face 26788 9667 9553 12923 Face 26789 12175 11865 12923 Face 26790 534 12175 12923 Face 26791 13303 2904 11865 Face 26792 12175 13303 11865 Face 26793 13091 1084 2904 Face 26794 13303 13091 2904 Face 26795 13177 13662 1084 Face 26796 13091 13177 1084 Face 26797 5879 1878 13662 Face 26798 13177 5879 13662 Face 26799 2510 4596 1878 Face 26800 5879 2510 1878 Face 26801 13082 60 4596 Face 26802 2510 13082 4596 Face 26803 12916 13006 60 Face 26804 13082 12916 60 Face 26805 221 279 13006 Face 26806 12916 221 13006 Face 26807 13582 12121 279 Face 26808 221 13582 279 Face 26809 9993 9880 12121 Face 26810 13582 9993 12121 Face 26811 757 2645 9880 Face 26812 9993 757 9880 Face 26813 273 1679 2645 Face 26814 757 273 2645 Face 26815 3930 7184 1679 Face 26816 273 3930 1679 Face 26817 7501 12386 11780 Face 26818 2658 2659 16573 Face 26819 11958 12043 12042 Face 26820 11957 11958 12042 Face 26821 3193 176 12640 Face 26822 6271 434 2025 Face 26823 11169 11238 11237 Face 26824 16767 33999 33873 Face 26825 8772 9095 7012 Face 26826 4073 11941 9095 Face 26827 11875 11876 11959 Face 26828 11960 12045 12044 Face 26829 5381 9164 4073 Face 26830 8131 6629 7508 Face 26831 9164 8131 7508 Face 26832 8131 3052 3053 Face 26833 13502 13599 13501 Face 26834 13692 13691 13598 Face 26835 13576 10000 420 Face 26836 61 13576 420 Face 26837 11636 11715 11635 Face 26838 12047 12046 11961 Face 26839 12490 12579 12578 Face 26840 12489 12490 12578 Face 26841 13245 13338 13244 Face 26842 11537 12 11942 Face 26843 7780 10394 1231 Face 26844 21923 22021 21922 Face 26845 13767 9169 2006 Face 26846 13330 13424 13329 Face 26847 11296 11378 4598 Face 26848 13587 13586 9955 Face 26849 12010 11599 11921 Face 26850 11704 11925 12184 Face 26851 12180 12010 11921 Face 26852 11346 11427 11345 Face 26853 2277 11704 12184 Face 26854 2721 2590 2591 Face 26855 23362 13199 2932 Face 26856 3072 3206 15001 Face 26857 15397 11377 16570 Face 26858 12832 12652 12372 Face 26859 12373 12832 12372 Face 26860 13465 13466 12652 Face 26861 12832 13465 12652 Face 26862 13377 13376 13466 Face 26863 13465 13377 13466 Face 26864 12194 11374 13376 Face 26865 13377 12194 13376 Face 26866 12638 13571 11374 Face 26867 12194 12638 11374 Face 26868 12638 13215 12014 Face 26869 13571 12638 12014 Face 26870 13215 1545 11365 Face 26871 12014 13215 11365 Face 26872 11617 11540 11365 Face 26873 1545 11617 11365 Face 26874 13697 13792 13791 Face 26875 14158 16090 15814 Face 26876 8526 2397 8525 Face 26877 5335 13273 13274 Face 26878 6270 1765 13293 Face 26879 12853 2899 2771 Face 26880 13519 13518 13423 Face 26881 13424 13519 13423 Face 26882 20979 6907 6906 Face 26883 29675 29806 29674 Face 26884 17378 20979 6906 Face 26885 11235 11310 11309 Face 26886 31769 11234 11308 Face 26887 11310 11391 11390 Face 26888 11309 11310 11390 Face 26889 11391 11474 11473 Face 26890 11390 11391 11473 Face 26891 11474 11552 11551 Face 26892 11473 11474 11551 Face 26893 11552 11630 11629 Face 26894 11551 11552 11629 Face 26895 11630 11709 11708 Face 26896 11629 11630 11708 Face 26897 11709 11791 11790 Face 26898 11708 11709 11790 Face 26899 11791 11872 11871 Face 26900 11790 11791 11871 Face 26901 11872 11956 11955 Face 26902 11871 11872 11955 Face 26903 11956 12041 12040 Face 26904 11955 11956 12040 Face 26905 12041 12128 12127 Face 26906 12040 12041 12127 Face 26907 12128 12213 12212 Face 26908 12127 12128 12212 Face 26909 12213 12302 12301 Face 26910 12212 12213 12301 Face 26911 12302 12393 12392 Face 26912 12301 12302 12392 Face 26913 12483 12482 12392 Face 26914 12393 12483 12392 Face 26915 12572 12571 12482 Face 26916 12483 12572 12482 Face 26917 12662 12661 12571 Face 26918 12572 12662 12571 Face 26919 11697 11220 12368 Face 26920 5349 5071 5218 Face 26921 7511 7186 13094 Face 26922 13665 13094 13467 Face 26923 13616 13615 13518 Face 26924 33783 6670 33907 Face 26925 6391 5253 8762 Face 26926 9844 13403 13402 Face 26927 1198 12538 11599 Face 26928 12010 1198 11599 Face 26929 16987 16895 19404 Face 26930 11615 11376 2277 Face 26931 34350 34421 34404 Face 26932 34736 27100 28686 Face 26933 13402 13497 13496 Face 26934 13401 13402 13496 Face 26935 13594 13593 13496 Face 26936 13497 13594 13496 Face 26937 13687 13686 13593 Face 26938 13594 13687 13593 Face 26939 13782 13781 13686 Face 26940 13687 13782 13686 Face 26941 13782 7893 8214 Face 26942 13781 13782 8214 Face 26943 9328 9553 8214 Face 26944 7893 9328 8214 Face 26945 7630 534 9553 Face 26946 9328 7630 9553 Face 26947 12174 12175 534 Face 26948 7630 12174 534 Face 26949 12467 13303 12175 Face 26950 12174 12467 12175 Face 26951 13578 13091 13303 Face 26952 12467 13578 13303 Face 26953 13176 13177 13091 Face 26954 13578 13176 13091 Face 26955 1989 5879 13177 Face 26956 13176 1989 13177 Face 26957 2381 2510 5879 Face 26958 1989 2381 5879 Face 26959 893 13082 2510 Face 26960 2381 893 2510 Face 26961 13008 12916 13082 Face 26962 893 13008 13082 Face 26963 4594 221 12916 Face 26964 13008 4594 12916 Face 26965 10004 13582 221 Face 26966 4594 10004 221 Face 26967 7471 9993 13582 Face 26968 10004 7471 13582 Face 26969 8264 757 9993 Face 26970 7471 8264 9993 Face 26971 1001 273 757 Face 26972 8264 1001 757 Face 26973 3831 3930 273 Face 26974 1001 3831 273 Face 26975 3571 12457 10437 Face 26976 55 9978 10795 Face 26977 12043 12130 12129 Face 26978 12042 12043 12129 Face 26979 13104 3193 12640 Face 26980 434 6271 176 Face 26981 6907 14914 20623 Face 26982 11238 11313 11312 Face 26983 13785 123 13784 Face 26984 8772 4073 9095 Face 26985 11959 11960 12044 Face 26986 12045 12132 12131 Face 26987 6629 8131 3053 Face 26988 11523 5381 8772 Face 26989 13746 7176 5748 Face 26990 13301 11094 11850 Face 26991 13599 13692 13598 Face 26992 13787 13786 13691 Face 26993 61 420 13480 Face 26994 13481 61 13480 Face 26995 11962 12047 11961 Face 26996 12134 12133 12046 Face 26997 12400 12490 12489 Face 26998 12399 12400 12489 Face 26999 13089 4601 11205 Face 27000 19824 19823 19740 Face 27001 15317 134 5904 Face 27002 13225 13318 13317 Face 27003 4229 4355 7819 Face 27004 13519 13616 13518 Face 27005 10247 34833 34305 Face 27006 12385 12387 12538 Face 27007 1198 12385 12538 Face 27008 13127 11376 11615 Face 27009 12268 13127 11615 Face 27010 12463 10009 12556 Face 27011 11427 11509 11426 Face 27012 12463 12373 11208 Face 27013 13709 13708 13615 Face 27014 12831 12832 12373 Face 27015 12463 12831 12373 Face 27016 13279 13465 12832 Face 27017 12831 13279 12832 Face 27018 13378 13377 13465 Face 27019 13279 13378 13465 Face 27020 12108 12194 13377 Face 27021 13378 12108 13377 Face 27022 12191 12638 12194 Face 27023 12108 12191 12194 Face 27024 9070 13215 12638 Face 27025 12191 9070 12638 Face 27026 9070 9757 1545 Face 27027 13215 9070 1545 Face 27028 11539 11617 1545 Face 27029 9757 11539 1545 Face 27030 13696 13697 13791 Face 27031 10622 12012 11539 Face 27032 10427 10305 10306 Face 27033 11370 12386 7501 Face 27034 2898 2400 2108 Face 27035 13369 2898 2108 Face 27036 13616 13709 13615 Face 27037 631 13027 13708 Face 27038 6906 6907 20623 Face 27039 14914 6812 17056 Face 27040 2038 32891 18366 Face 27041 16832 17194 29805 Face 27042 11236 11311 11310 Face 27043 11235 11236 11310 Face 27044 11311 11392 11391 Face 27045 11310 11311 11391 Face 27046 11392 11475 11474 Face 27047 11391 11392 11474 Face 27048 11475 11553 11552 Face 27049 11474 11475 11552 Face 27050 11553 11631 11630 Face 27051 11552 11553 11630 Face 27052 11631 11710 11709 Face 27053 11630 11631 11709 Face 27054 11710 11792 11791 Face 27055 11709 11710 11791 Face 27056 11792 11873 11872 Face 27057 11791 11792 11872 Face 27058 11873 11957 11956 Face 27059 11872 11873 11956 Face 27060 11957 12042 12041 Face 27061 11956 11957 12041 Face 27062 12042 12129 12128 Face 27063 12041 12042 12128 Face 27064 11142 13657 13467 Face 27065 15539 5255 2329 Face 27066 16275 4753 14246 Face 27067 2329 16275 14246 Face 27068 4753 15809 15810 Face 27069 14246 4753 15810 Face 27070 15809 5009 3201 Face 27071 15810 15809 3201 Face 27072 14323 14439 3201 Face 27073 5009 14323 3201 Face 27074 15740 14625 14439 Face 27075 14323 15740 14439 Face 27076 14630 14516 14625 Face 27077 15740 14630 14625 Face 27078 16264 14158 14516 Face 27079 14630 16264 14516 Face 27080 15200 4613 4711 Face 27081 14929 22 14272 Face 27082 22 3117 14272 Face 27083 14714 13961 14559 Face 27084 14392 16212 14158 Face 27085 15886 14740 4346 Face 27086 16264 14392 14158 Face 27087 14392 3375 14019 Face 27088 16212 14392 14019 Face 27089 2332 15090 14019 Face 27090 3375 2332 14019 Face 27091 2332 14190 14169 Face 27092 15090 2332 14169 Face 27093 14190 4476 15460 Face 27094 6155 6277 6736 Face 27095 14169 14190 15460 Face 27096 4711 4613 4752 Face 27097 14443 14561 15521 Face 27098 14206 15200 4711 Face 27099 4613 14714 4752 Face 27100 13819 14068 13803 Face 27101 14068 15200 14206 Face 27102 13819 13803 3117 Face 27103 2269 14068 14206 Face 27104 22 13819 3117 Face 27105 14068 2269 13803 Face 27106 1952 309 4591 Face 27107 309 14276 2493 Face 27108 14929 14272 14863 Face 27109 15933 1952 4591 Face 27110 6277 15521 6736 Face 27111 14740 14929 14863 Face 27112 4476 1760 3586 Face 27113 19929 19930 23732 Face 27114 15460 4476 3586 Face 27115 1760 14998 3252 Face 27116 21921 22019 21920 Face 27117 3586 1760 3252 Face 27118 14740 14863 4346 Face 27119 6736 15533 257 Face 27120 6277 14443 15521 Face 27121 15886 4346 14561 Face 27122 16087 14080 14079 Face 27123 14443 15886 14561 Face 27124 4591 309 2493 Face 27125 14276 16087 15934 Face 27126 15934 16087 14079 Face 27127 2493 14276 15934 Face 27128 14080 14865 14616 Face 27129 14079 14080 14616 Face 27130 14865 16383 16220 Face 27131 16220 16383 16374 Face 27132 14616 14865 16220 Face 27133 16383 3839 16374 Face 27134 3839 2976 14689 Face 27135 16374 3839 14689 Face 27136 14689 2976 451 Face 27137 13852 13866 13851 Face 27138 2976 136 451 Face 27139 136 14377 14262 Face 27140 21108 21081 20368 Face 27141 22019 22018 21920 Face 27142 14998 16043 14452 Face 27143 3252 14998 14452 Face 27144 16043 16545 15956 Face 27145 13392 1786 13544 Face 27146 14452 16043 15956 Face 27147 14963 15315 14012 Face 27148 9057 22432 19908 Face 27149 451 136 14262 Face 27150 14377 14963 14855 Face 27151 14855 14963 14012 Face 27152 14262 14377 14855 Face 27153 13900 13899 13881 Face 27154 15315 14067 3 Face 27155 2799 672 2798 Face 27156 13882 13900 13881 Face 27157 1912 14021 14007 Face 27158 1013 672 4221 Face 27159 14136 14238 14135 Face 27160 6022 1912 1126 Face 27161 14238 14237 14135 Face 27162 4221 6022 1126 Face 27163 14136 14135 14046 Face 27164 1126 1912 14007 Face 27165 14047 14046 13969 Face 27166 14047 14136 14046 Face 27167 13882 13881 13865 Face 27168 13970 14047 13969 Face 27169 3 14067 782 Face 27170 13839 13852 13838 Face 27171 9850 352 21081 Face 27172 16532 14062 15059 Face 27173 16545 5327 14111 Face 27174 2758 58 19552 Face 27175 15956 16545 14111 Face 27176 5327 4744 15192 Face 27177 31111 31110 31014 Face 27178 14111 5327 15192 Face 27179 14012 15315 3 Face 27180 21825 21921 21824 Face 27181 13826 13839 13825 Face 27182 14067 16532 782 Face 27183 13924 13970 13923 Face 27184 13866 13882 13865 Face 27185 13924 13923 13899 Face 27186 13900 13924 13899 Face 27187 15084 15216 15215 Face 27188 13970 13969 13923 Face 27189 10009 15397 14867 Face 27190 14348 14349 14466 Face 27191 1314 3205 3206 Face 27192 13806 3372 5903 Face 27193 15083 15084 15215 Face 27194 4235 4107 1661 Face 27195 26987 28002 26440 Face 27196 3977 15327 15093 Face 27197 14825 14950 14949 Face 27198 20616 20634 12840 Face 27199 15220 16437 4937 Face 27200 14390 15475 15248 Face 27201 15598 15640 16243 Face 27202 14829 14954 14953 Face 27203 13866 13865 13851 Face 27204 17273 17364 17272 Face 27205 782 16532 15059 Face 27206 14021 15130 15111 Face 27207 21921 21920 21824 Face 27208 14062 16408 15643 Face 27209 4744 2675 14251 Face 27210 6732 6731 34119 Face 27211 15192 4744 14251 Face 27212 34794 34398 34338 Face 27213 14251 2675 14927 Face 27214 14140 14141 14242 Face 27215 3168 13896 13895 Face 27216 14243 14353 14352 Face 27217 20015 19455 15727 Face 27218 14242 14243 14352 Face 27219 15059 14062 15643 Face 27220 21728 21825 21824 Face 27221 15912 15519 15672 Face 27222 16408 16111 1345 Face 27223 13815 13825 13824 Face 27224 13852 13851 13838 Face 27225 17720 17719 17630 Face 27226 14215 14214 5773 Face 27227 15200 5514 4613 Face 27228 4858 14215 5773 Face 27229 14858 15476 13985 Face 27230 12661 12660 12570 Face 27231 12660 12661 15503 Face 27232 14587 14588 14708 Face 27233 1339 1549 890 Face 27234 34560 34602 29204 Face 27235 5078 5079 14793 Face 27236 5379 2918 339 Face 27237 5526 5525 167 Face 27238 11358 12992 11439 Face 27239 5775 1345 3825 Face 27240 14858 13985 14123 Face 27241 17506 15929 15778 Face 27242 5525 166 167 Face 27243 13995 13936 15254 Face 27244 14588 14709 14708 Face 27245 1338 1339 890 Face 27246 1688 16242 1798 Face 27247 14007 14021 15111 Face 27248 13825 13838 13824 Face 27249 16091 8842 8946 Face 27250 14048 14047 13970 Face 27251 15088 4617 23399 Face 27252 34437 19803 34557 Face 27253 14353 14471 14470 Face 27254 787 13996 13994 Face 27255 14352 14353 14470 Face 27256 14223 15050 14179 Face 27257 14471 14589 14588 Face 27258 3449 6155 550 Face 27259 13876 15968 23159 Face 27260 6515 787 2164 Face 27261 5896 6515 2164 Face 27262 19327 19333 19759 Face 27263 21727 21728 21824 Face 27264 13925 13971 13924 Face 27265 13838 13851 11158 Face 27266 34811 25985 34597 Face 27267 451 14262 14263 Face 27268 1360 1474 1473 Face 27269 14139 14140 14241 Face 27270 12753 15504 15503 Face 27271 5885 383 3056 Face 27272 20276 20194 17974 Face 27273 14386 22 14929 Face 27274 14991 7079 7073 Face 27275 15776 15777 15928 Face 27276 15645 15788 12660 Face 27277 34434 34537 34706 Face 27278 14916 14432 7809 Face 27279 15788 15787 12660 Face 27280 15939 15938 15787 Face 27281 15788 15939 15787 Face 27282 16092 16091 15938 Face 27283 15939 16092 15938 Face 27284 14042 14041 10689 Face 27285 16092 16248 16091 Face 27286 14215 14216 15529 Face 27287 13259 14488 13166 Face 27288 16573 8943 16411 Face 27289 4329 18419 5238 Face 27290 34472 34484 34273 Face 27291 14840 12670 12759 Face 27292 13838 11158 13824 Face 27293 13851 13865 13850 Face 27294 16566 15746 14178 Face 27295 7817 7281 9096 Face 27296 7073 15121 14991 Face 27297 15491 15492 15633 Face 27298 1014 6515 5896 Face 27299 33761 33887 33760 Face 27300 17260 17170 19562 Face 27301 3060 3449 550 Face 27302 26184 6529 12910 Face 27303 17183 17273 17182 Face 27304 21534 21533 21438 Face 27305 14737 1011 14026 Face 27306 14704 14705 14827 Face 27307 13039 13133 22913 Face 27308 15131 15265 7578 Face 27309 13455 19333 19327 Face 27310 12667 12666 12577 Face 27311 13865 13864 13850 Face 27312 3048 14756 14878 Face 27313 10795 10807 10085 Face 27314 12666 12667 14964 Face 27315 55 10795 10085 Face 27316 8842 8843 8946 Face 27317 8864 8249 9871 Face 27318 85 5379 84 Face 27319 16573 16572 8943 Face 27320 15504 15646 15645 Face 27321 15503 15504 15645 Face 27322 15789 15788 15645 Face 27323 15646 15789 15645 Face 27324 15940 15939 15788 Face 27325 15789 15940 15788 Face 27326 16093 16092 15939 Face 27327 15940 16093 15939 Face 27328 16249 16248 16092 Face 27329 16093 16249 16092 Face 27330 14455 14572 13744 Face 27331 16249 16411 16248 Face 27332 19953 19954 20030 Face 27333 16376 328 3447 Face 27334 15096 12666 14964 Face 27335 8572 14329 14330 Face 27336 13881 13880 13864 Face 27337 13865 13881 13864 Face 27338 34420 34545 34394 Face 27339 34513 6699 34676 Face 27340 15326 14855 14473 Face 27341 3336 14689 14474 Face 27342 14873 17842 18226 Face 27343 13856 13855 13842 Face 27344 14791 15177 16190 Face 27345 15672 13910 15201 Face 27346 12904 11437 13123 Face 27347 2783 12264 1014 Face 27348 14840 12759 14841 Face 27349 13946 13948 2302 Face 27350 17811 17810 17719 Face 27351 18503 1833 1953 Face 27352 14964 12668 14840 Face 27353 13839 13838 13825 Face 27354 14840 14965 14964 Face 27355 15938 16091 8946 Face 27356 14965 15097 15096 Face 27357 14964 14965 15096 Face 27358 24938 23391 24937 Face 27359 6718 9096 1339 Face 27360 15230 15366 15365 Face 27361 12755 15365 12754 Face 27362 15366 15505 15504 Face 27363 15365 15366 15504 Face 27364 15505 15647 15646 Face 27365 15504 15505 15646 Face 27366 15790 15789 15646 Face 27367 15647 15790 15646 Face 27368 15941 15940 15789 Face 27369 15790 15941 15789 Face 27370 16094 16093 15940 Face 27371 15941 16094 15940 Face 27372 16250 16249 16093 Face 27373 16094 16250 16093 Face 27374 16412 16411 16249 Face 27375 16250 16412 16249 Face 27376 34490 34389 26786 Face 27377 1112 998 7336 Face 27378 15586 16502 20533 Face 27379 8776 8775 138 Face 27380 14068 5903 15200 Face 27381 13899 13898 13880 Face 27382 34566 34780 34498 Face 27383 14330 14447 8572 Face 27384 13973 13972 13926 Face 27385 17720 17811 17719 Face 27386 15057 14737 14026 Face 27387 14713 3501 14248 Face 27388 16224 16388 16387 Face 27389 16067 16224 12904 Face 27390 16551 16550 16387 Face 27391 16388 16551 16387 Face 27392 254 71 16550 Face 27393 16551 254 16550 Face 27394 5528 16126 212 Face 27395 14812 13917 5527 Face 27396 16216 16378 16377 Face 27397 17224 139 18718 Face 27398 371 17122 17123 Face 27399 293 292 6767 Face 27400 14841 14966 14965 Face 27401 14840 14841 14965 Face 27402 14966 15098 15097 Face 27403 14965 14966 15097 Face 27404 15098 15231 15230 Face 27405 15097 15098 15230 Face 27406 15231 15367 15366 Face 27407 15230 15231 15366 Face 27408 15367 15506 15505 Face 27409 15366 15367 15505 Face 27410 15506 15648 15647 Face 27411 15505 15506 15647 Face 27412 15791 15790 15647 Face 27413 15648 15791 15647 Face 27414 15942 15941 15790 Face 27415 15791 15942 15790 Face 27416 16095 16094 15941 Face 27417 15942 16095 15941 Face 27418 16251 16250 16094 Face 27419 16095 16251 16094 Face 27420 16413 16412 16250 Face 27421 16251 16413 16250 Face 27422 7336 998 885 Face 27423 34537 34548 34706 Face 27424 16243 15640 3113 Face 27425 5199 2658 2786 Face 27426 7576 8572 14447 Face 27427 4807 14592 14571 Face 27428 29839 29838 23029 Face 27429 12500 12344 12527 Face 27430 14689 451 14474 Face 27431 17811 17902 17901 Face 27432 2154 14815 14755 Face 27433 20147 182 14873 Face 27434 14227 13917 14812 Face 27435 18996 17175 17515 Face 27436 3376 2846 71 Face 27437 254 3376 71 Face 27438 2179 2560 2846 Face 27439 3376 2179 2846 Face 27440 2676 5902 14618 Face 27441 816 817 2560 Face 27442 34354 34399 34352 Face 27443 15187 15180 14022 Face 27444 15203 11842 15204 Face 27445 34747 34379 34697 Face 27446 34410 34705 34562 Face 27447 6767 292 6867 Face 27448 14842 14967 14966 Face 27449 14841 14842 14966 Face 27450 14967 15099 15098 Face 27451 14966 14967 15098 Face 27452 15099 15232 15231 Face 27453 15098 15099 15231 Face 27454 15232 15368 15367 Face 27455 15231 15232 15367 Face 27456 15368 15507 15506 Face 27457 15367 15368 15506 Face 27458 15507 15649 15648 Face 27459 15506 15507 15648 Face 27460 15649 15792 15791 Face 27461 15648 15649 15791 Face 27462 15792 15943 15942 Face 27463 15791 15792 15942 Face 27464 15943 16096 16095 Face 27465 15942 15943 16095 Face 27466 16096 16252 16251 Face 27467 16095 16096 16251 Face 27468 16252 16414 16413 Face 27469 16251 16252 16413 Face 27470 5909 32546 33287 Face 27471 34777 34760 34736 Face 27472 16574 5330 5199 Face 27473 2002 4595 2128 Face 27474 5208 5207 5081 Face 27475 12193 11157 12281 Face 27476 14221 14330 14329 Face 27477 14220 14221 14329 Face 27478 13927 13973 13926 Face 27479 17810 17811 17901 Face 27480 17902 17993 17992 Face 27481 17901 17902 17992 Face 27482 5902 14227 14618 Face 27483 14618 14227 14812 Face 27484 2179 816 2560 Face 27485 3711 5521 817 Face 27486 816 3711 817 Face 27487 365 366 5521 Face 27488 3711 365 5521 Face 27489 3504 124 3946 Face 27490 14288 14076 2676 Face 27491 21439 21534 21438 Face 27492 12663 12754 12662 Face 27493 25298 14599 24122 Face 27494 34627 34363 34380 Face 27495 14719 14843 14842 Face 27496 34823 34345 34561 Face 27497 14843 14968 14967 Face 27498 14842 14843 14967 Face 27499 14968 15100 15099 Face 27500 14967 14968 15099 Face 27501 15233 15232 15099 Face 27502 15100 15233 15099 Face 27503 15369 15368 15232 Face 27504 15233 15369 15232 Face 27505 15508 15507 15368 Face 27506 15369 15508 15368 Face 27507 15650 15649 15507 Face 27508 15508 15650 15507 Face 27509 15650 15793 15792 Face 27510 15649 15650 15792 Face 27511 15793 15944 15943 Face 27512 15792 15793 15943 Face 27513 15944 16097 16096 Face 27514 15943 15944 16096 Face 27515 16097 16253 16252 Face 27516 16096 16097 16252 Face 27517 16253 16415 16414 Face 27518 16252 16253 16414 Face 27519 16415 16575 16574 Face 27520 16414 16415 16574 Face 27521 19520 19440 19521 Face 27522 16574 16575 5330 Face 27523 2791 13463 7591 Face 27524 7399 7145 7503 Face 27525 8957 4322 9187 Face 27526 15577 21102 14602 Face 27527 3031 13673 34659 Face 27528 15111 15130 4882 Face 27529 13939 14076 14288 Face 27530 14632 14266 3851 Face 27531 2674 2673 366 Face 27532 15605 13939 14288 Face 27533 365 2674 366 Face 27534 901 902 2673 Face 27535 2674 901 2673 Face 27536 3963 3964 902 Face 27537 901 3963 902 Face 27538 9279 13762 12828 Face 27539 39 4214 6511 Face 27540 21627 21626 21533 Face 27541 1386 2197 4287 Face 27542 34004 34130 34129 Face 27543 33556 18226 18634 Face 27544 14844 14843 14719 Face 27545 13297 34690 12586 Face 27546 14969 14968 14843 Face 27547 14844 14969 14843 Face 27548 15101 15100 14968 Face 27549 14969 15101 14968 Face 27550 15234 15233 15100 Face 27551 15101 15234 15100 Face 27552 15370 15369 15233 Face 27553 15234 15370 15233 Face 27554 15509 15508 15369 Face 27555 15370 15509 15369 Face 27556 15651 15650 15508 Face 27557 15509 15651 15508 Face 27558 15651 15794 15793 Face 27559 15650 15651 15793 Face 27560 15794 15945 15944 Face 27561 15793 15794 15944 Face 27562 15945 16098 16097 Face 27563 15944 15945 16097 Face 27564 16098 16254 16253 Face 27565 16097 16098 16253 Face 27566 16254 16416 16415 Face 27567 16253 16254 16415 Face 27568 16416 16576 16575 Face 27569 16415 16416 16575 Face 27570 24121 14719 14599 Face 27571 34369 34596 34283 Face 27572 14005 15179 5201 Face 27573 20623 14914 17056 Face 27574 12759 14842 14841 Face 27575 20450 13732 20449 Face 27576 3038 638 3204 Face 27577 15323 13832 14282 Face 27578 14144 14249 14182 Face 27579 14076 5902 2676 Face 27580 3963 905 789 Face 27581 3964 3963 789 Face 27582 905 14073 14072 Face 27583 789 905 14072 Face 27584 14073 15225 15219 Face 27585 14072 14073 15219 Face 27586 15225 933 7828 Face 27587 15258 2923 15893 Face 27588 15219 15225 7828 Face 27589 14285 7068 9292 Face 27590 14842 12759 14719 Face 27591 21252 21253 21345 Face 27592 15437 22132 22228 Face 27593 2105 18841 18586 Face 27594 21439 21438 21345 Face 27595 34786 34528 34495 Face 27596 23732 19930 24228 Face 27597 14970 14969 14844 Face 27598 14845 14970 14844 Face 27599 15102 15101 14969 Face 27600 14970 15102 14969 Face 27601 15235 15234 15101 Face 27602 15102 15235 15101 Face 27603 15371 15370 15234 Face 27604 15235 15371 15234 Face 27605 15510 15509 15370 Face 27606 15371 15510 15370 Face 27607 15652 15651 15509 Face 27608 15510 15652 15509 Face 27609 15652 15795 15794 Face 27610 15651 15652 15794 Face 27611 15795 15946 15945 Face 27612 15794 15795 15945 Face 27613 15946 16099 16098 Face 27614 15945 15946 16098 Face 27615 16099 16255 16254 Face 27616 16098 16099 16254 Face 27617 16255 16417 16416 Face 27618 16254 16255 16416 Face 27619 16417 16577 16576 Face 27620 16416 16417 16576 Face 27621 16577 561 14113 Face 27622 16576 16577 14113 Face 27623 14719 24121 14720 Face 27624 14113 561 2204 Face 27625 17674 525 5527 Face 27626 19518 19438 14491 Face 27627 16215 16216 16377 Face 27628 34616 34292 34533 Face 27629 5515 13939 15605 Face 27630 14182 5515 15605 Face 27631 933 14494 14493 Face 27632 6275 2931 14144 Face 27633 7828 933 14493 Face 27634 19100 14494 17959 Face 27635 14493 14494 16547 Face 27636 19100 16547 14494 Face 27637 16547 15618 5255 Face 27638 34412 34279 34432 Face 27639 34512 28547 26789 Face 27640 4753 16275 20810 Face 27641 14568 16407 16050 Face 27642 875 6718 1339 Face 27643 7847 16595 13453 Face 27644 11158 13851 13850 Face 27645 15002 13963 3969 Face 27646 20046 20128 20127 Face 27647 13732 14602 20449 Face 27648 30756 30755 30656 Face 27649 19578 19577 19496 Face 27650 28502 28637 28501 Face 27651 21253 21346 21345 Face 27652 22959 14845 14720 Face 27653 20823 18317 21184 Face 27654 15103 15102 14970 Face 27655 14971 15103 14970 Face 27656 15236 15235 15102 Face 27657 15103 15236 15102 Face 27658 15372 15371 15235 Face 27659 15236 15372 15235 Face 27660 15511 15510 15371 Face 27661 15372 15511 15371 Face 27662 15653 15652 15510 Face 27663 15511 15653 15510 Face 27664 15653 15796 15795 Face 27665 15652 15653 15795 Face 27666 15796 15947 15946 Face 27667 15795 15796 15946 Face 27668 15947 16100 16099 Face 27669 15946 15947 16099 Face 27670 16100 16256 16255 Face 27671 16099 16100 16255 Face 27672 16256 16418 16417 Face 27673 16255 16256 16417 Face 27674 16418 16578 16577 Face 27675 16417 16418 16577 Face 27676 16578 5200 561 Face 27677 16577 16578 561 Face 27678 5330 2655 5199 Face 27679 5330 2654 2655 Face 27680 15335 15115 13992 Face 27681 9840 13492 9839 Face 27682 6812 13390 19862 Face 27683 23576 23613 23659 Face 27684 13873 16364 3633 Face 27685 6723 13873 3633 Face 27686 14249 5515 14182 Face 27687 16360 2714 4939 Face 27688 16275 2329 5255 Face 27689 2931 14249 14144 Face 27690 15808 15809 4753 Face 27691 11277 4854 12918 Face 27692 34361 34347 34386 Face 27693 34678 34830 34474 Face 27694 2641 2005 2004 Face 27695 1833 18503 18408 Face 27696 7830 3931 5637 Face 27697 19576 19659 19575 Face 27698 9052 12711 19518 Face 27699 20450 20449 2530 Face 27700 19674 20989 3049 Face 27701 18684 18288 22518 Face 27702 6269 20450 2530 Face 27703 26450 28552 28568 Face 27704 17621 12675 16349 Face 27705 20653 20643 19843 Face 27706 21161 21253 21252 Face 27707 15104 15103 14971 Face 27708 32822 32954 32821 Face 27709 15237 15236 15103 Face 27710 15104 15237 15103 Face 27711 15373 15372 15236 Face 27712 15237 15373 15236 Face 27713 15512 15511 15372 Face 27714 15373 15512 15372 Face 27715 15654 15653 15511 Face 27716 15512 15654 15511 Face 27717 15654 15797 15796 Face 27718 15653 15654 15796 Face 27719 15797 15948 15947 Face 27720 15796 15797 15947 Face 27721 15948 16101 16100 Face 27722 15947 15948 16100 Face 27723 16101 16257 16256 Face 27724 16100 16101 16256 Face 27725 16257 16419 16418 Face 27726 16256 16257 16418 Face 27727 16419 16579 16578 Face 27728 16418 16419 16578 Face 27729 5197 5200 16578 Face 27730 16579 5197 16578 Face 27731 5197 2780 5200 Face 27732 2716 9041 2780 Face 27733 7261 7926 11368 Face 27734 11767 11688 15889 Face 27735 1695 2368 3705 Face 27736 343 5905 3064 Face 27737 14211 340 49 Face 27738 22547 29665 22451 Face 27739 16198 16360 4939 Face 27740 4738 14923 15183 Face 27741 1131 581 4218 Face 27742 3314 1131 4218 Face 27743 20033 15603 19471 Face 27744 5268 5009 15809 Face 27745 15808 15603 19934 Face 27746 14324 14323 5009 Face 27747 5268 14324 5009 Face 27748 14683 15740 14323 Face 27749 14324 14683 14323 Face 27750 14388 14630 15740 Face 27751 14683 14388 15740 Face 27752 1800 16264 14630 Face 27753 14388 1800 14630 Face 27754 14161 14392 16264 Face 27755 1800 14161 16264 Face 27756 14018 3375 14392 Face 27757 14161 14018 14392 Face 27758 22559 22465 14903 Face 27759 20206 20288 20287 Face 27760 34421 34314 34476 Face 27761 15589 15449 13639 Face 27762 20206 20207 20288 Face 27763 12711 9052 12441 Face 27764 18870 28142 26568 Face 27765 20989 988 3049 Face 27766 12531 12711 12441 Face 27767 20376 21290 20375 Face 27768 19575 19658 19574 Face 27769 12105 20741 19413 Face 27770 6269 2530 21286 Face 27771 28405 28565 28695 Face 27772 22159 11917 13354 Face 27773 15105 15104 14972 Face 27774 14972 23808 24401 Face 27775 15238 15237 15104 Face 27776 15105 15238 15104 Face 27777 15374 15373 15237 Face 27778 15238 15374 15237 Face 27779 15513 15512 15373 Face 27780 15374 15513 15373 Face 27781 15655 15654 15512 Face 27782 15513 15655 15512 Face 27783 15655 15798 15797 Face 27784 15654 15655 15797 Face 27785 15798 15949 15948 Face 27786 15797 15798 15948 Face 27787 15949 16102 16101 Face 27788 15948 15949 16101 Face 27789 16102 16258 16257 Face 27790 16101 16102 16257 Face 27791 16420 16419 16257 Face 27792 16258 16420 16257 Face 27793 16580 16579 16419 Face 27794 16420 16580 16419 Face 27795 5195 5197 16579 Face 27796 16580 5195 16579 Face 27797 7265 7484 873 Face 27798 5195 2716 5197 Face 27799 1227 872 14011 Face 27800 7154 8172 15337 Face 27801 14140 14242 14241 Face 27802 2716 5195 9269 Face 27803 14380 14498 15759 Face 27804 16121 2365 3335 Face 27805 2756 18067 17940 Face 27806 73 14211 49 Face 27807 581 2931 6275 Face 27808 16431 16430 1128 Face 27809 15819 1131 3314 Face 27810 4218 581 6275 Face 27811 14559 15819 15531 Face 27812 15531 15819 3314 Face 27813 4752 14559 14799 Face 27814 14799 14559 15531 Face 27815 4711 4752 3112 Face 27816 3112 4752 14799 Face 27817 16569 14206 4871 Face 27818 4871 4711 3112 Face 27819 14959 2332 3375 Face 27820 15747 2269 16569 Face 27821 14018 14959 3375 Face 27822 14959 14383 14190 Face 27823 2332 14959 14190 Face 27824 14383 14084 4476 Face 27825 14190 14383 4476 Face 27826 14084 5511 1760 Face 27827 4476 14084 1760 Face 27828 5511 14038 14998 Face 27829 22611 17867 22319 Face 27830 12086 15033 12001 Face 27831 25987 29538 25553 Face 27832 18452 427 11950 Face 27833 33011 2562 2693 Face 27834 27450 25479 27998 Face 27835 12711 19438 19518 Face 27836 28631 28759 28630 Face 27837 19741 19740 19657 Face 27838 22559 13440 16185 Face 27839 21290 6269 21286 Face 27840 21290 21286 20375 Face 27841 19825 19901 19824 Face 27842 19979 19978 19900 Face 27843 14973 24401 23907 Face 27844 32754 33171 17281 Face 27845 15239 15238 15105 Face 27846 15106 15239 15105 Face 27847 15375 15374 15238 Face 27848 15239 15375 15238 Face 27849 15514 15513 15374 Face 27850 15375 15514 15374 Face 27851 15656 15655 15513 Face 27852 15514 15656 15513 Face 27853 15656 15799 15798 Face 27854 15655 15656 15798 Face 27855 15799 15950 15949 Face 27856 15798 15799 15949 Face 27857 16103 16102 15949 Face 27858 15950 16103 15949 Face 27859 16259 16258 16102 Face 27860 16103 16259 16102 Face 27861 16421 16420 16258 Face 27862 16259 16421 16258 Face 27863 16581 16580 16420 Face 27864 16421 16581 16420 Face 27865 5601 14680 14987 Face 27866 260 138 8775 Face 27867 7137 6873 8776 Face 27868 16269 5760 274 Face 27869 16496 16495 24696 Face 27870 7145 7399 10594 Face 27871 16595 7847 14099 Face 27872 12147 15954 13548 Face 27873 15199 9445 10831 Face 27874 4360 15337 16405 Face 27875 14265 15761 16526 Face 27876 16526 15761 14749 Face 27877 16652 16651 16492 Face 27878 14691 14692 16283 Face 27879 2714 16430 16431 Face 27880 16493 16652 16492 Face 27881 4939 2714 16431 Face 27882 16430 4103 1128 Face 27883 14923 331 2797 Face 27884 15183 14923 2797 Face 27885 331 16272 16271 Face 27886 2797 331 16271 Face 27887 16272 15124 15125 Face 27888 16271 16272 15125 Face 27889 14206 4711 4871 Face 27890 15124 15523 15524 Face 27891 1760 5511 14998 Face 27892 5131 13803 15747 Face 27893 14038 14732 16043 Face 27894 14998 14038 16043 Face 27895 14732 16382 16545 Face 27896 16043 14732 16545 Face 27897 16382 3632 5327 Face 27898 16545 16382 5327 Face 27899 3632 15056 4744 Face 27900 5327 3632 4744 Face 27901 19657 19656 19573 Face 27902 16498 22611 22319 Face 27903 17958 25987 25553 Face 27904 34794 34722 34398 Face 27905 22793 20621 22221 Face 27906 7013 28405 28695 Face 27907 4332 22469 10859 Face 27908 29407 29410 17728 Face 27909 13440 12813 16185 Face 27910 12276 10859 22469 Face 27911 20376 20375 19594 Face 27912 8259 13747 13077 Face 27913 5072 20728 19459 Face 27914 19597 20376 19594 Face 27915 19900 19978 19899 Face 27916 20728 20634 19459 Face 27917 15240 15239 15106 Face 27918 19301 15106 14973 Face 27919 15376 15375 15239 Face 27920 15240 15376 15239 Face 27921 15515 15514 15375 Face 27922 15376 15515 15375 Face 27923 15657 15656 15514 Face 27924 15515 15657 15514 Face 27925 15657 15800 15799 Face 27926 15656 15657 15799 Face 27927 15800 15951 15950 Face 27928 15799 15800 15950 Face 27929 15951 16104 16103 Face 27930 15950 15951 16103 Face 27931 16104 16260 16259 Face 27932 16103 16104 16259 Face 27933 13919 11932 13895 Face 27934 16259 16260 16421 Face 27935 9382 16581 9498 Face 27936 16580 9269 5195 Face 27937 6145 15183 5377 Face 27938 21372 21370 20461 Face 27939 22500 22501 22594 Face 27940 1780 14725 19906 Face 27941 16372 16368 14715 Face 27942 20298 14501 14768 Face 27943 5083 5210 5209 Face 27944 13854 13855 13868 Face 27945 4360 14802 15337 Face 27946 5760 16269 15127 Face 27947 15458 2076 4936 Face 27948 16242 16405 1798 Face 27949 15180 4487 15130 Face 27950 1805 14225 15821 Face 27951 1011 582 3501 Face 27952 15115 15114 13992 Face 27953 4156 4026 16651 Face 27954 14032 14118 14031 Face 27955 15125 15124 15524 Face 27956 15523 15178 864 Face 27957 3117 13803 2847 Face 27958 13803 2269 15747 Face 27959 14272 3117 14008 Face 27960 13803 5131 2847 Face 27961 14272 14008 14988 Face 27962 14863 14272 14988 Face 27963 2269 14206 16569 Face 27964 3117 2847 14008 Face 27965 7520 15 6535 Face 27966 14863 14988 5329 Face 27967 4744 15056 2675 Face 27968 29842 29841 25428 Face 27969 9613 16260 16105 Face 27970 14470 14471 14588 Face 27971 14589 14710 14709 Face 27972 13996 14006 15088 Face 27973 20296 20380 20295 Face 27974 19493 19574 19492 Face 27975 24319 2554 19537 Face 27976 21358 12976 24417 Face 27977 24669 24668 22890 Face 27978 24921 24789 24922 Face 27979 11993 26707 11994 Face 27980 33762 33888 33761 Face 27981 14488 22469 14369 Face 27982 28941 19190 29473 Face 27983 12459 12986 13077 Face 27984 12276 12913 32904 Face 27985 12619 19597 13074 Face 27986 17338 19719 19718 Face 27987 12619 13074 14483 Face 27988 19379 12619 14483 Face 27989 15106 15107 15240 Face 27990 19597 19594 13074 Face 27991 15377 15376 15240 Face 27992 15241 15377 15240 Face 27993 15377 15516 15515 Face 27994 15376 15377 15515 Face 27995 15516 15658 15657 Face 27996 15515 15516 15657 Face 27997 15658 15801 15800 Face 27998 15657 15658 15800 Face 27999 15801 15952 15951 Face 28000 15800 15801 15951 Face 28001 15952 16105 16104 Face 28002 15951 15952 16104 Face 28003 11620 11767 15889 Face 28004 16104 16105 16260 Face 28005 3841 4481 1690 Face 28006 34677 34343 34734 Face 28007 28930 29057 28929 Face 28008 12858 13259 13166 Face 28009 27720 27719 27592 Face 28010 22247 18518 17547 Face 28011 25216 350 4726 Face 28012 8835 32315 8348 Face 28013 29928 29927 29873 Face 28014 2236 4736 5006 Face 28015 16596 15611 5070 Face 28016 2921 14975 15442 Face 28017 15670 15661 15529 Face 28018 2802 13892 14919 Face 28019 16242 4360 16405 Face 28020 15351 15352 15491 Face 28021 14349 14467 14466 Face 28022 5891 3191 14023 Face 28023 10211 2640 12 Face 28024 8477 8576 8476 Face 28025 15634 15778 15777 Face 28026 14118 14117 14031 Face 28027 15524 15523 864 Face 28028 15178 4620 932 Face 28029 15521 15522 14209 Face 28030 6736 15521 14209 Face 28031 14588 14589 14709 Face 28032 15050 4935 14401 Face 28033 23213 14401 13876 Face 28034 15805 14553 14521 Face 28035 32474 32591 32473 Face 28036 32954 33088 32953 Face 28037 4346 14863 5329 Face 28038 22117 22116 22018 Face 28039 17273 17272 17182 Face 28040 15521 14561 15522 Face 28041 17993 18085 18084 Face 28042 13840 13839 13826 Face 28043 19837 638 4109 Face 28044 9840 9956 13493 Face 28045 15212 15348 15347 Face 28046 9728 9613 16105 Face 28047 17337 17246 17247 Face 28048 34441 34452 34411 Face 28049 21273 17869 18518 Face 28050 11109 29081 16962 Face 28051 18485 19723 193 Face 28052 6601 18048 16677 Face 28053 18126 12542 18740 Face 28054 12950 12858 13166 Face 28055 21354 21353 21260 Face 28056 14382 16370 3452 Face 28057 14488 14369 13166 Face 28058 26418 26306 29484 Face 28059 29086 19093 19196 Face 28060 14723 13346 21771 Face 28061 21868 14723 21771 Face 28062 15242 15378 15377 Face 28063 15241 15240 24299 Face 28064 15378 15517 15516 Face 28065 15377 15378 15516 Face 28066 15517 15659 15658 Face 28067 15516 15517 15658 Face 28068 15659 15802 15801 Face 28069 15658 15659 15801 Face 28070 15802 15953 15952 Face 28071 15801 15802 15952 Face 28072 12663 12755 12754 Face 28073 15952 15953 16105 Face 28074 16443 16436 14811 Face 28075 22309 22310 22405 Face 28076 13821 16590 14433 Face 28077 16590 14798 14433 Face 28078 15775 15927 15926 Face 28079 15630 15631 15774 Face 28080 17056 6812 19862 Face 28081 19733 19816 19732 Face 28082 14367 2906 9285 Face 28083 21447 21541 21446 Face 28084 25076 4874 5006 Face 28085 788 2165 6516 Face 28086 1494 21672 16354 Face 28087 2414 2285 4736 Face 28088 23171 2787 21101 Face 28089 22596 22597 20298 Face 28090 13895 12385 3168 Face 28091 14985 15319 15320 Face 28092 15096 15097 12755 Face 28093 5474 15329 15466 Face 28094 476 1336 475 Face 28095 9533 9532 14225 Face 28096 14137 14136 14047 Face 28097 13916 14114 14296 Face 28098 864 15178 932 Face 28099 4882 4618 14247 Face 28100 14561 14562 15522 Face 28101 15780 15117 932 Face 28102 21259 21165 32629 Face 28103 14607 14300 14370 Face 28104 16068 16225 16224 Face 28105 16067 16068 16224 Face 28106 14300 861 2383 Face 28107 16389 16388 16224 Face 28108 4346 5329 14562 Face 28109 12949 13261 12859 Face 28110 13260 13261 14370 Face 28111 14561 4346 14562 Face 28112 16225 16389 16224 Face 28113 21135 28095 21227 Face 28114 16552 16551 16388 Face 28115 16389 16552 16388 Face 28116 14486 14367 9285 Face 28117 19721 21662 22416 Face 28118 12677 21 9285 Face 28119 15750 5087 5088 Face 28120 24123 12760 12671 Face 28121 5213 5088 5089 Face 28122 2549 20889 20890 Face 28123 28368 28367 28233 Face 28124 19978 20055 20054 Face 28125 11918 16516 13346 Face 28126 15243 15379 15378 Face 28127 24299 15242 15241 Face 28128 34425 34746 34762 Face 28129 15378 15379 15517 Face 28130 7664 10830 9977 Face 28131 20832 14610 15166 Face 28132 15659 9731 15802 Face 28133 9843 9728 16105 Face 28134 9445 15199 14362 Face 28135 5003 5085 557 Face 28136 14132 14234 14131 Face 28137 13129 13224 13128 Face 28138 14814 14811 13813 Face 28139 13814 14814 13813 Face 28140 1133 14632 1692 Face 28141 14948 15081 15080 Face 28142 13172 13081 11732 Face 28143 22501 22595 22594 Face 28144 2779 4087 4751 Face 28145 2906 12677 9285 Face 28146 14256 14366 21 Face 28147 21354 21447 21353 Face 28148 14029 14024 2165 Face 28149 15488 15489 15630 Face 28150 2236 2414 4736 Face 28151 17992 17993 18084 Face 28152 14501 14767 14768 Face 28153 28923 29050 28922 Face 28154 1358 24952 4101 Face 28155 21352 21351 21258 Face 28156 21352 21445 21351 Face 28157 2029 2158 5899 Face 28158 4349 2159 4478 Face 28159 3206 3205 13962 Face 28160 2076 16585 16426 Face 28161 5901 15752 15901 Face 28162 13971 14048 13970 Face 28163 4936 2076 16426 Face 28164 4620 15780 932 Face 28165 2720 15335 13992 Face 28166 13261 14607 14370 Face 28167 15069 3327 15117 Face 28168 2677 254 16551 Face 28169 861 33937 7026 Face 28170 16552 2677 16551 Face 28171 2719 3376 254 Face 28172 2677 2719 254 Face 28173 3854 2179 3376 Face 28174 19937 9194 12945 Face 28175 2719 3854 3376 Face 28176 33489 33616 33488 Face 28177 30086 30148 30147 Face 28178 14300 2383 14370 Face 28179 28167 25968 16714 Face 28180 815 816 2179 Face 28181 14507 19937 12945 Face 28182 3854 815 2179 Face 28183 12677 14256 21 Face 28184 13210 6510 33812 Face 28185 3843 3711 816 Face 28186 13128 15243 15242 Face 28187 815 3843 816 Face 28188 6166 6167 8979 Face 28189 15379 15243 13221 Face 28190 8259 11436 13747 Face 28191 8249 14281 14283 Face 28192 13923 13922 13898 Face 28193 20011 20091 20010 Face 28194 2 13858 2286 Face 28195 2286 5252 4069 Face 28196 4487 14265 14260 Face 28197 6516 2165 6149 Face 28198 14616 16220 16064 Face 28199 16064 16220 3707 Face 28200 13941 13843 16538 Face 28201 16539 13941 16538 Face 28202 14234 14344 14233 Face 28203 14344 14343 14233 Face 28204 13814 13813 2030 Face 28205 1 13814 2030 Face 28206 15081 15213 15212 Face 28207 14947 14948 15080 Face 28208 1430 14123 3462 Face 28209 12578 12668 12667 Face 28210 14343 14342 14232 Face 28211 13985 15201 15070 Face 28212 16246 16049 14798 Face 28213 14162 15089 3459 Face 28214 14402 14318 4357 Face 28215 15631 15775 15774 Face 28216 17526 17440 17441 Face 28217 19540 15590 15447 Face 28218 14975 1494 15442 Face 28219 21257 21164 21258 Face 28220 21350 21349 21256 Face 28221 2413 2414 2236 Face 28222 15080 15212 15211 Face 28223 14716 16372 14715 Face 28224 14256 6510 14366 Face 28225 238 3064 3198 Face 28226 13870 13869 13856 Face 28227 3554 6002 15394 Face 28228 14552 14670 13981 Face 28229 14996 13820 14554 Face 28230 29181 29180 29049 Face 28231 4618 14260 14247 Face 28232 15780 15069 15117 Face 28233 14393 14394 3327 Face 28234 1011 3501 14713 Face 28235 13310 13403 9844 Face 28236 364 365 3711 Face 28237 3843 364 3711 Face 28238 2542 2674 365 Face 28239 364 2542 365 Face 28240 784 901 2674 Face 28241 2542 784 2674 Face 28242 784 4092 3963 Face 28243 14830 14831 14955 Face 28244 901 784 3963 Face 28245 9194 3461 4622 Face 28246 21366 21271 21178 Face 28247 4092 1346 905 Face 28248 5767 5896 1911 Face 28249 3963 4092 905 Face 28250 1346 14097 14073 Face 28251 905 1346 14073 Face 28252 14097 15227 15225 Face 28253 14073 14097 15225 Face 28254 13390 24885 23434 Face 28255 10863 6724 7888 Face 28256 18585 1343 17969 Face 28257 34573 34409 34504 Face 28258 15225 15227 933 Face 28259 18 15401 3937 Face 28260 14026 1011 14713 Face 28261 15112 15059 5775 Face 28262 2287 14730 3630 Face 28263 14730 14962 309 Face 28264 15492 15493 15634 Face 28265 15365 12753 12754 Face 28266 1435 2284 4084 Face 28267 14867 12556 10009 Face 28268 32851 32983 32850 Face 28269 13858 13848 2286 Face 28270 14122 1226 3065 Face 28271 15323 14282 11943 Face 28272 13886 13904 13885 Face 28273 16374 14689 3336 Face 28274 667 13835 555 Face 28275 14839 14835 13823 Face 28276 14344 14462 14343 Face 28277 14462 14461 14343 Face 28278 2247 7 6025 Face 28279 1547 6503 6821 Face 28280 15213 15349 15348 Face 28281 15080 15081 15212 Face 28282 22307 22308 22403 Face 28283 21443 21538 21537 Face 28284 15607 15743 15520 Face 28285 15743 1468 15051 Face 28286 14233 14343 14232 Face 28287 14461 14460 14342 Face 28288 4231 4357 15187 Face 28289 15191 4231 15187 Face 28290 25219 1651 701 Face 28291 14029 15191 14024 Face 28292 15869 7556 22543 Face 28293 5404 1651 25219 Face 28294 34603 34641 34311 Face 28295 2896 2643 15732 Face 28296 16368 16372 14940 Face 28297 5640 2919 2414 Face 28298 13962 238 3198 Face 28299 13928 13927 13903 Face 28300 34278 34379 34747 Face 28301 5474 15466 5475 Face 28302 34590 34473 34681 Face 28303 14571 14592 16209 Face 28304 13825 25166 13816 Face 28305 14260 14265 16526 Face 28306 15069 14393 3327 Face 28307 16110 16114 1797 Face 28308 657 4747 1762 Face 28309 14393 2287 3630 Face 28310 2508 15227 15228 Face 28311 781 1648 10997 Face 28312 930 5464 14859 Face 28313 339 900 2416 Face 28314 14325 14812 14198 Face 28315 34770 34600 34293 Face 28316 20547 20548 21838 Face 28317 34335 34277 34610 Face 28318 2147 13951 90 Face 28319 12945 9194 4622 Face 28320 3501 14361 14248 Face 28321 5896 2164 1911 Face 28322 18085 18180 18179 Face 28323 14812 5527 14198 Face 28324 18084 18085 18179 Face 28325 18180 18278 18277 Face 28326 14355 17535 17286 Face 28327 4470 14618 14325 Face 28328 18179 18180 18277 Face 28329 1952 14730 309 Face 28330 14832 14956 14831 Face 28331 15493 15635 15634 Face 28332 14962 15822 14276 Face 28333 14051 14140 14050 Face 28334 17566 17565 17476 Face 28335 19746 19829 19828 Face 28336 13881 13899 13880 Face 28337 15065 12321 22586 Face 28338 14861 14860 13848 Face 28339 14025 16535 14180 Face 28340 16406 10941 3432 Face 28341 13835 14839 13823 Face 28342 13855 13869 13868 Face 28343 13896 13920 13895 Face 28344 16539 16538 14835 Face 28345 7 1547 6821 Face 28346 14580 14579 14461 Face 28347 3064 1129 3198 Face 28348 1 2030 6503 Face 28349 21257 21350 21256 Face 28350 15212 15213 15348 Face 28351 337 231 4211 Face 28352 12621 13267 13173 Face 28353 5772 5018 16522 Face 28354 16203 15743 15051 Face 28355 18651 25967 25966 Face 28356 25488 25572 22450 Face 28357 20047 20129 20128 Face 28358 19406 19405 19329 Face 28359 15349 15489 15488 Face 28360 15348 15349 15488 Face 28361 5134 267 1651 Face 28362 4726 5134 1651 Face 28363 29464 26702 29465 Face 28364 11843 13010 2921 Face 28365 2413 5640 2414 Face 28366 667 555 2919 Face 28367 1153 1154 5342 Face 28368 5640 667 2919 Face 28369 34370 34766 34291 Face 28370 15901 15752 14025 Face 28371 34618 34670 34601 Face 28372 527 15745 14198 Face 28373 14749 2032 16527 Face 28374 15082 15083 15214 Face 28375 23492 23574 21635 Face 28376 14239 14349 14238 Face 28377 14394 14393 3630 Face 28378 582 3705 3501 Face 28379 16270 15128 15126 Face 28380 14730 1952 3630 Face 28381 15809 15808 5268 Face 28382 13896 3168 13878 Face 28383 14035 18627 14061 Face 28384 14682 14683 14324 Face 28385 16266 14682 14324 Face 28386 14273 14388 14683 Face 28387 14682 14273 14683 Face 28388 3463 1800 14388 Face 28389 14502 2676 4470 Face 28390 14273 3463 14388 Face 28391 15464 14288 14502 Face 28392 2676 14618 4470 Face 28393 2379 15605 15464 Face 28394 14288 2676 14502 Face 28395 1379 14182 2379 Face 28396 15605 14288 15464 Face 28397 14125 14161 1800 Face 28398 3463 14125 1800 Face 28399 14017 14018 14161 Face 28400 14125 14017 14161 Face 28401 15384 14959 14018 Face 28402 14144 14182 1379 Face 28403 137 14144 1379 Face 28404 14276 15822 16087 Face 28405 309 14962 14276 Face 28406 15352 15353 15492 Face 28407 14214 74 15969 Face 28408 28118 28117 27984 Face 28409 5903 5514 15200 Face 28410 14114 14124 1805 Face 28411 15309 15308 12859 Face 28412 340 15496 15638 Face 28413 12114 13364 15031 Face 28414 4488 16566 15359 Face 28415 2546 3630 15933 Face 28416 2929 15257 15392 Face 28417 14839 16539 14835 Face 28418 1129 6007 103 Face 28419 13920 13919 13895 Face 28420 14435 16195 15318 Face 28421 1547 1 6503 Face 28422 15380 14194 15500 Face 28423 15381 15380 15500 Face 28424 13805 634 337 Face 28425 9416 12621 13173 Face 28426 3834 4211 79 Face 28427 164 3834 79 Face 28428 16279 5772 16522 Face 28429 5018 15961 15960 Face 28430 1468 5772 16279 Face 28431 15051 1468 16279 Face 28432 4467 12929 2665 Face 28433 15743 16203 15520 Face 28434 15489 15631 15630 Face 28435 16175 4467 2665 Face 28436 2247 6025 267 Face 28437 14877 13877 14333 Face 28438 20881 26926 26908 Face 28439 5134 2247 267 Face 28440 14043 14132 14042 Face 28441 14234 14233 14131 Face 28442 13835 13823 555 Face 28443 14184 5136 13843 Face 28444 14451 2418 14250 Face 28445 16535 14451 14180 Face 28446 1645 1754 6484 Face 28447 15490 15491 15632 Face 28448 14027 14037 14114 Face 28449 1785 13956 14997 Face 28450 5905 1130 1129 Face 28451 2893 6533 15045 Face 28452 4158 18059 4028 Face 28453 3705 2368 2417 Face 28454 15822 5460 16087 Face 28455 5266 16546 16383 Face 28456 6275 14144 137 Face 28457 1796 6275 137 Face 28458 14102 3314 4454 Face 28459 4218 6275 1796 Face 28460 14618 14812 14325 Face 28461 4454 4218 1796 Face 28462 14017 15384 14018 Face 28463 4876 15531 14102 Face 28464 15384 15501 14383 Face 28465 14959 15384 14383 Face 28466 15501 4885 14084 Face 28467 14383 15501 14084 Face 28468 4885 3714 5511 Face 28469 14084 4885 5511 Face 28470 3714 14090 14038 Face 28471 5511 3714 14038 Face 28472 14090 15596 14732 Face 28473 14038 14090 14732 Face 28474 15596 16219 16382 Face 28475 5147 14799 4876 Face 28476 14732 15596 16382 Face 28477 5460 6157 14080 Face 28478 14182 15605 2379 Face 28479 15529 15662 15391 Face 28480 16087 5460 14080 Face 28481 18278 18373 18372 Face 28482 15190 14504 13812 Face 28483 14470 14588 14587 Face 28484 15045 15880 32427 Face 28485 14027 14114 13916 Face 28486 15215 15351 15350 Face 28487 14949 14950 15082 Face 28488 15351 15491 15490 Face 28489 18277 18278 18372 Face 28490 3630 1952 15933 Face 28491 15257 14868 14869 Face 28492 931 2929 15392 Face 28493 11283 13107 11596 Face 28494 2289 3703 671 Face 28495 15534 15536 15813 Face 28496 14805 16278 1652 Face 28497 3580 15380 15381 Face 28498 15382 3580 15381 Face 28499 14807 14792 634 Face 28500 554 13805 337 Face 28501 164 79 654 Face 28502 542 164 654 Face 28503 4737 63 1430 Face 28504 4730 13936 13909 Face 28505 13909 5198 4737 Face 28506 5198 63 4737 Face 28507 15607 15520 16409 Face 28508 16410 15607 16409 Face 28509 22308 22404 22403 Face 28510 265 264 699 Face 28511 34589 12721 12186 Face 28512 3048 5124 14756 Face 28513 7 6821 6025 Face 28514 14814 16443 14811 Face 28515 13966 14043 13965 Face 28516 14132 14131 14042 Face 28517 13941 14184 13843 Face 28518 6734 15617 5136 Face 28519 14162 3459 3460 Face 28520 13833 14162 3460 Face 28521 551 442 167 Face 28522 15350 15351 15490 Face 28523 22133 22421 3035 Face 28524 4357 14318 4487 Face 28525 13664 12909 13570 Face 28526 14031 23193 14032 Face 28527 7189 14808 10826 Face 28528 14242 14352 14351 Face 28529 14865 5266 16383 Face 28530 16546 3967 3839 Face 28531 14836 3112 5147 Face 28532 14799 15531 4876 Face 28533 16219 3631 3632 Face 28534 16382 16219 3632 Face 28535 4739 4871 14836 Face 28536 6006 12526 3631 Face 28537 3314 4218 4454 Face 28538 3112 14799 5147 Face 28539 3632 3631 15056 Face 28540 15226 16569 4739 Face 28541 2411 9177 4801 Face 28542 18914 19023 19022 Face 28543 19742 19741 19658 Face 28544 24565 16172 16171 Face 28545 14710 17873 17955 Face 28546 11853 11621 11770 Face 28547 16569 4871 4739 Face 28548 14420 2626 14783 Face 28549 6157 5266 14865 Face 28550 15531 3314 14102 Face 28551 14963 3796 15315 Face 28552 14080 6157 14865 Face 28553 14560 14063 14067 Face 28554 15315 14560 14067 Face 28555 14951 15084 15083 Face 28556 14706 14829 14828 Face 28557 5779 13945 3977 Face 28558 14145 14250 14156 Face 28559 14326 13916 14795 Face 28560 14674 14326 14795 Face 28561 13849 13863 13862 Face 28562 15083 15215 15214 Face 28563 15519 15933 15060 Face 28564 14794 15458 14298 Face 28565 15467 14935 13831 Face 28566 15392 15257 14869 Face 28567 15093 1454 18528 Face 28568 14286 30 16406 Face 28569 15813 15671 14754 Face 28570 15671 14753 14754 Face 28571 16118 3580 15382 Face 28572 14197 16118 15382 Face 28573 16422 16410 14792 Face 28574 13805 14807 634 Face 28575 542 654 263 Face 28576 264 542 263 Face 28577 22212 22211 22116 Face 28578 12929 4467 15443 Face 28579 14596 1380 3558 Face 28580 3459 14596 3558 Face 28581 634 14792 5472 Face 28582 16410 16409 14744 Face 28583 25221 698 5142 Face 28584 5769 542 264 Face 28585 34453 34409 34573 Face 28586 2490 7745 4989 Face 28587 15641 15637 16436 Face 28588 16443 15641 16436 Face 28589 13966 13965 13919 Face 28590 13920 13966 13919 Face 28591 14184 6734 5136 Face 28592 16123 16122 15617 Face 28593 21648 34313 34629 Face 28594 3955 14216 14215 Face 28595 15491 15633 15632 Face 28596 3182 423 6533 Face 28597 580 15761 14265 Face 28598 14326 14027 13916 Face 28599 14192 15455 14919 Face 28600 15477 15253 14938 Face 28601 670 785 13951 Face 28602 13345 13252 28701 Face 28603 16383 16546 3839 Face 28604 3967 4237 2976 Face 28605 14010 5131 15899 Face 28606 15747 16569 15226 Face 28607 15095 4883 4617 Face 28608 3455 21280 20735 Face 28609 778 15805 15680 Face 28610 2847 5131 14376 Face 28611 14179 4617 4883 Face 28612 4871 3112 14836 Face 28613 5131 15747 15899 Face 28614 383 5500 2146 Face 28615 14008 2847 15758 Face 28616 5630 980 130 Face 28617 2893 3182 6533 Face 28618 15680 15805 14521 Face 28619 19963 17708 17618 Face 28620 15308 12949 12859 Face 28621 13179 15763 13650 Face 28622 15169 15168 14659 Face 28623 14040 14128 11283 Face 28624 1951 24 76 Face 28625 15915 16069 16068 Face 28626 14562 5329 14679 Face 28627 5329 14988 14932 Face 28628 14562 14679 3195 Face 28629 14988 15118 14932 Face 28630 15522 14562 3195 Face 28631 5329 14932 14679 Face 28632 14067 14063 16532 Face 28633 14063 14224 16532 Face 28634 14692 14715 16358 Face 28635 14825 14826 14950 Face 28636 13968 13967 13921 Face 28637 13898 13922 13897 Face 28638 15047 5077 5078 Face 28639 13016 12291 5019 Face 28640 14582 14581 14463 Face 28641 15397 10009 11208 Face 28642 14042 10689 13965 Face 28643 16571 16582 13946 Face 28644 3068 14935 15467 Face 28645 1237 3068 15467 Face 28646 13840 13853 13839 Face 28647 15752 16057 16535 Face 28648 14753 14690 14754 Face 28649 14690 14112 14754 Face 28650 15963 16118 14197 Face 28651 15962 15963 14197 Face 28652 15619 15607 16410 Face 28653 14807 16422 14792 Face 28654 264 263 698 Face 28655 699 264 698 Face 28656 19997 24132 23559 Face 28657 22117 22212 22116 Face 28658 13965 11851 13919 Face 28659 10713 9665 1799 Face 28660 14792 16410 14744 Face 28661 14131 14130 14041 Face 28662 265 5769 264 Face 28663 14792 14744 5472 Face 28664 13359 13121 13862 Face 28665 72 164 542 Face 28666 15641 16195 14435 Face 28667 14675 16523 14922 Face 28668 14043 14042 13965 Face 28669 15637 15641 14435 Face 28670 6734 16123 15617 Face 28671 3765 9278 3896 Face 28672 14082 7831 8563 Face 28673 2929 931 16122 Face 28674 34493 34658 34692 Face 28675 3460 3459 14591 Face 28676 14037 14124 14114 Face 28677 13871 13887 13886 Face 28678 15476 15201 13985 Face 28679 13860 14674 13846 Face 28680 34796 34535 34493 Face 28681 15222 14858 14123 Face 28682 3839 3967 2976 Face 28683 15328 11373 14066 Face 28684 15899 15747 15226 Face 28685 4237 14358 136 Face 28686 1341 14997 2844 Face 28687 14209 15522 15495 Face 28688 16069 16226 16225 Face 28689 16068 16069 16225 Face 28690 14209 15495 15532 Face 28691 16390 16389 16225 Face 28692 5131 14010 14376 Face 28693 15533 14209 15532 Face 28694 16226 16390 16225 Face 28695 14008 15758 15118 Face 28696 16390 16553 16552 Face 28697 16389 16390 16552 Face 28698 2459 2677 16552 Face 28699 16553 2459 16552 Face 28700 2589 2719 2677 Face 28701 2459 2589 2677 Face 28702 3853 3854 2719 Face 28703 2589 3853 2719 Face 28704 814 815 3854 Face 28705 3853 814 3854 Face 28706 5520 3843 815 Face 28707 19650 19733 19649 Face 28708 814 5520 815 Face 28709 363 364 3843 Face 28710 34282 34495 34639 Face 28711 5520 363 3843 Face 28712 2543 2542 364 Face 28713 19567 19650 19566 Face 28714 19733 19732 19649 Face 28715 16532 14224 14062 Face 28716 14224 2933 14062 Face 28717 3705 2417 14361 Face 28718 14192 15248 15185 Face 28719 1241 14475 3841 Face 28720 13922 13968 13921 Face 28721 34473 34446 34295 Face 28722 11373 12281 11157 Face 28723 14438 14433 15324 Face 28724 15364 4488 16041 Face 28725 14798 16049 14403 Face 28726 34440 34733 23023 Face 28727 14001 14285 13831 Face 28728 14935 14617 13831 Face 28729 16175 2665 9647 Face 28730 15339 11846 15203 Face 28731 14690 6395 14112 Face 28732 6395 3577 14112 Face 28733 15535 15963 15962 Face 28734 6027 15535 15962 Face 28735 15619 15900 15743 Face 28736 16422 15619 16410 Face 28737 25358 5141 4365 Face 28738 19826 19825 19742 Face 28739 698 697 5141 Face 28740 21442 21443 21537 Face 28741 15909 15806 14187 Face 28742 1020 15936 16089 Face 28743 9209 13487 423 Face 28744 3182 9209 423 Face 28745 3834 337 4211 Face 28746 634 5472 231 Face 28747 5769 72 542 Face 28748 5378 3834 164 Face 28749 14194 14675 14922 Face 28750 15500 14194 14922 Face 28751 16195 14805 15318 Face 28752 15318 14805 1652 Face 28753 262 441 166 Face 28754 1525 1635 1524 Face 28755 16123 2929 16122 Face 28756 14868 13874 528 Face 28757 12260 11977 13487 Face 28758 11118 11058 11119 Face 28759 13199 13957 14030 Face 28760 34832 34405 34335 Face 28761 14385 13860 13846 Face 28762 14736 14385 13846 Face 28763 14351 14352 14469 Face 28764 14045 14044 13967 Face 28765 9209 12260 13487 Face 28766 12260 10207 15032 Face 28767 2976 4237 136 Face 28768 14062 2933 16408 Face 28769 19567 19566 19485 Face 28770 19486 19567 19485 Face 28771 363 2543 364 Face 28772 2543 448 784 Face 28773 2542 2543 784 Face 28774 448 4093 4092 Face 28775 15522 3195 15495 Face 28776 19665 19748 19747 Face 28777 14988 14008 15118 Face 28778 14358 14378 14377 Face 28779 13261 13260 12859 Face 28780 2847 14376 15758 Face 28781 784 448 4092 Face 28782 31536 33028 19117 Face 28783 4093 906 1346 Face 28784 4092 4093 1346 Face 28785 906 14105 14097 Face 28786 1346 906 14097 Face 28787 34302 34775 34826 Face 28788 14097 14105 15227 Face 28789 4801 4807 14571 Face 28790 5626 14961 5627 Face 28791 2005 2641 14626 Face 28792 18469 2174 18468 Face 28793 34407 34581 34715 Face 28794 563 17277 562 Face 28795 14098 14682 16266 Face 28796 17234 17899 15972 Face 28797 14274 14273 14682 Face 28798 14098 14274 14682 Face 28799 14803 3463 14273 Face 28800 18413 19355 17535 Face 28801 22425 22344 22329 Face 28802 14012 3 14170 Face 28803 2933 338 16408 Face 28804 14838 14009 3024 Face 28805 15527 2720 13995 Face 28806 4481 14357 14275 Face 28807 2276 6648 1124 Face 28808 15496 15397 16570 Face 28809 7068 7960 9292 Face 28810 14433 14798 14552 Face 28811 14709 14832 14831 Face 28812 3205 238 13962 Face 28813 13943 13942 16548 Face 28814 7745 2490 19703 Face 28815 14617 14001 13831 Face 28816 13579 20119 20816 Face 28817 13847 13836 899 Face 28818 6395 15385 3577 Face 28819 15385 14557 3577 Face 28820 5590 14399 3840 Face 28821 3968 15535 6027 Face 28822 15900 5590 1468 Face 28823 15607 15619 15743 Face 28824 22211 22212 22307 Face 28825 21538 21631 21630 Face 28826 263 369 697 Face 28827 5142 698 5141 Face 28828 2432 15806 15909 Face 28829 13918 2432 15909 Face 28830 19970 19969 19891 Face 28831 16048 15892 15601 Face 28832 337 634 231 Face 28833 19892 19970 19891 Face 28834 72 5378 164 Face 28835 14233 14232 14130 Face 28836 16523 14286 14922 Face 28837 554 337 3834 Face 28838 16278 15536 15534 Face 28839 16435 16422 14807 Face 28840 13016 5019 11943 Face 28841 1652 16278 15534 Face 28842 14869 14868 528 Face 28843 14797 14556 14082 Face 28844 890 5528 212 Face 28845 13874 3068 1237 Face 28846 15074 15075 15206 Face 28847 14356 1804 14278 Face 28848 14674 14795 13846 Face 28849 14004 14925 14387 Face 28850 14025 14180 2368 Face 28851 15321 2203 2076 Face 28852 19680 20467 20466 Face 28853 25741 25640 19520 Face 28854 338 16594 16111 Face 28855 6819 15093 14500 Face 28856 19650 19649 19566 Face 28857 16408 338 16111 Face 28858 14274 14803 14273 Face 28859 2164 23563 1911 Face 28860 16589 14125 3463 Face 28861 14803 16589 3463 Face 28862 14708 14831 14830 Face 28863 14016 14017 14125 Face 28864 14377 14378 14963 Face 28865 13849 13121 12113 Face 28866 136 14358 14377 Face 28867 3796 14560 15315 Face 28868 21956 21955 20302 Face 28869 14378 3796 14963 Face 28870 16589 14016 14125 Face 28871 22248 21955 21956 Face 28872 14002 15384 14017 Face 28873 14016 14002 14017 Face 28874 14002 13811 15501 Face 28875 15384 14002 15501 Face 28876 13811 4228 4885 Face 28877 15501 13811 4885 Face 28878 4228 3713 3714 Face 28879 4885 4228 3714 Face 28880 3713 15609 14090 Face 28881 3714 3713 14090 Face 28882 15609 15129 15596 Face 28883 14090 15609 15596 Face 28884 34647 34508 34774 Face 28885 15129 16042 16219 Face 28886 14159 14074 2585 Face 28887 22344 22248 22536 Face 28888 15391 334 74 Face 28889 15756 15906 15905 Face 28890 13551 13646 11813 Face 28891 13853 13852 13839 Face 28892 340 6610 15496 Face 28893 14155 13933 5528 Face 28894 15302 24545 695 Face 28895 15328 11377 11373 Face 28896 13943 15599 5269 Face 28897 15476 15672 15201 Face 28898 10589 4611 7817 Face 28899 14715 16368 16358 Face 28900 16582 13948 13946 Face 28901 16373 16125 16124 Face 28902 14797 14555 14557 Face 28903 16269 16270 15126 Face 28904 15900 15600 5590 Face 28905 15385 14797 14557 Face 28906 15743 15900 1468 Face 28907 3840 3968 6027 Face 28908 13632 16175 9647 Face 28909 5590 3840 5772 Face 28910 698 263 697 Face 28911 21350 21443 21349 Face 28912 229 2432 13918 Face 28913 654 408 369 Face 28914 14087 15909 14185 Face 28915 15806 1020 14187 Face 28916 16402 15502 16385 Face 28917 15892 16048 15358 Face 28918 14303 14539 2896 Face 28919 14744 14738 12654 Face 28920 15089 14596 3459 Face 28921 1380 14733 5901 Face 28922 5378 554 3834 Face 28923 15382 15381 15246 Face 28924 898 13807 554 Face 28925 14810 14807 13805 Face 28926 15536 15671 15813 Face 28927 13858 14861 13848 Face 28928 14677 14556 14797 Face 28929 15385 14677 14797 Face 28930 528 13874 1237 Face 28931 13948 14794 2302 Face 28932 14035 2757 18627 Face 28933 14617 14739 14001 Face 28934 14991 7187 7079 Face 28935 13879 13897 13878 Face 28936 13948 13949 14794 Face 28937 15741 15321 15458 Face 28938 1695 14025 2368 Face 28939 14950 14951 15083 Face 28940 672 2290 6022 Face 28941 2035 1912 6022 Face 28942 9436 7778 9086 Face 28943 3812 15399 1236 Face 28944 11977 12260 15032 Face 28945 14504 14622 13812 Face 28946 15596 15129 16219 Face 28947 16042 6006 3631 Face 28948 16219 16042 3631 Face 28949 1140 1247 1139 Face 28950 14707 14708 14830 Face 28951 14937 14325 15745 Face 28952 18406 18501 18500 Face 28953 586 17391 17301 Face 28954 16595 12470 13453 Face 28955 15216 15217 15352 Face 28956 21270 22344 22536 Face 28957 34660 34701 34485 Face 28958 14586 14587 14707 Face 28959 22536 22248 21956 Face 28960 2027 281 124 Face 28961 759 4470 14937 Face 28962 16375 14986 16372 Face 28963 5775 6380 65 Face 28964 13844 15055 14166 Face 28965 34462 25985 26558 Face 28966 13888 13906 13905 Face 28967 13887 13888 13905 Face 28968 6515 4344 787 Face 28969 18224 1319 18428 Face 28970 13906 13930 13929 Face 28971 14050 14049 13972 Face 28972 14361 13952 1463 Face 28973 15084 15085 15216 Face 28974 13973 14050 13972 Face 28975 14275 14155 5528 Face 28976 14214 15391 74 Face 28977 14211 15499 340 Face 28978 11853 11936 11544 Face 28979 14085 15598 13979 Face 28980 34305 3031 10247 Face 28981 13932 13931 13907 Face 28982 14475 14357 4481 Face 28983 22414 13286 22318 Face 28984 15599 16373 14397 Face 28985 3814 1341 2844 Face 28986 5269 15599 14397 Face 28987 14082 14734 14555 Face 28988 13453 12736 11094 Face 28989 15636 15600 15619 Face 28990 14797 14082 14555 Face 28991 1468 5590 5772 Face 28992 14399 3968 3840 Face 28993 19970 20047 19969 Face 28994 3840 6027 5018 Face 28995 263 654 369 Face 28996 22212 22308 22307 Face 28997 929 229 335 Face 28998 79 26 408 Face 28999 14187 16089 16245 Face 29000 335 229 13918 Face 29001 7960 7068 10858 Face 29002 14185 14187 16245 Face 29003 15502 15892 15358 Face 29004 15892 14876 15601 Face 29005 5472 14744 12654 Face 29006 14738 16402 14731 Face 29007 14042 14131 14041 Face 29008 16409 16402 14738 Face 29009 15387 15382 15246 Face 29010 14123 13985 3462 Face 29011 13807 14810 13805 Face 29012 15381 15500 15785 Face 29013 8576 2103 8476 Face 29014 2001 898 5378 Face 29015 14556 15396 14082 Face 29016 10207 22368 22272 Face 29017 14860 14861 16571 Face 29018 14677 15385 6395 Face 29019 15097 15230 12755 Face 29020 15032 10207 22272 Face 29021 13921 13920 13896 Face 29022 14935 16051 14617 Face 29023 14794 15741 15458 Face 29024 13897 13921 13896 Face 29025 2045 4858 14749 Face 29026 33887 33886 33760 Face 29027 3977 15093 6819 Face 29028 13880 13879 13863 Face 29029 2330 2651 2652 Face 29030 14497 14616 16064 Face 29031 14874 14940 16366 Face 29032 13951 3181 670 Face 29033 4883 14223 14179 Face 29034 14502 4470 759 Face 29035 903 14006 13996 Face 29036 130 778 15680 Face 29037 23269 14179 14401 Face 29038 9292 14082 15396 Face 29039 15464 14502 14384 Face 29040 19125 19234 19233 Face 29041 12668 12579 12669 Face 29042 15353 15493 15492 Face 29043 1804 15901 14278 Face 29044 16526 14749 16527 Face 29045 22368 14531 12205 Face 29046 167 442 168 Face 29047 14262 14855 15326 Face 29048 14325 14198 15745 Face 29049 9498 9497 9382 Face 29050 13853 13867 13852 Face 29051 1796 137 14360 Face 29052 14553 16120 16114 Face 29053 14947 14946 14821 Face 29054 22272 22368 12205 Face 29055 16050 14166 15477 Face 29056 11142 5895 34380 Face 29057 4454 1796 2386 Face 29058 371 480 17211 Face 29059 1463 13952 14672 Face 29060 4470 14325 14937 Face 29061 2500 12818 16549 Face 29062 14587 14708 14707 Face 29063 14826 14827 14951 Face 29064 9499 16260 9612 Face 29065 776 15904 15905 Face 29066 15217 15353 15352 Face 29067 16585 14099 14211 Face 29068 14828 14829 14953 Face 29069 5070 15611 16107 Face 29070 6610 15397 15496 Face 29071 17339 19719 17338 Face 29072 14584 14585 14705 Face 29073 14394 14280 2715 Face 29074 34588 34360 34544 Face 29075 11616 11460 11785 Face 29076 19767 11651 11731 Face 29077 13856 13871 13870 Face 29078 9324 10830 1230 Face 29079 16435 15636 16422 Face 29080 15964 2128 16115 Face 29081 5772 3840 5018 Face 29082 15600 14399 5590 Face 29083 14531 19270 13200 Face 29084 6027 15962 15961 Face 29085 654 79 408 Face 29086 3898 14539 14303 Face 29087 16280 929 14253 Face 29088 4211 6413 26 Face 29089 16089 14434 13859 Face 29090 14253 929 335 Face 29091 2150 7697 9416 Face 29092 16245 16089 13859 Face 29093 13933 15326 1352 Face 29094 4185 10507 4316 Face 29095 16411 8839 8944 Face 29096 4107 4108 1314 Face 29097 15502 15358 16385 Face 29098 3038 3204 3205 Face 29099 14744 16409 14738 Face 29100 12654 14738 6143 Face 29101 3462 13985 15070 Face 29102 15520 15502 16402 Face 29103 15246 15381 15785 Face 29104 15128 15526 15527 Face 29105 13807 13805 554 Face 29106 15500 14922 14921 Face 29107 34772 34746 34425 Face 29108 159 2001 72 Face 29109 665 14677 6395 Face 29110 11767 11620 11453 Face 29111 3204 343 238 Face 29112 665 6395 14690 Face 29113 14739 14857 14001 Face 29114 14692 16358 16283 Face 29115 13967 13966 13920 Face 29116 3068 5270 14935 Face 29117 13949 15741 14794 Face 29118 13921 13967 13920 Face 29119 6107 5980 8208 Face 29120 34355 34400 34624 Face 29121 14952 14953 15085 Face 29122 14467 14585 14584 Face 29123 15602 15459 4990 Face 29124 1803 474 1358 Face 29125 14384 14502 759 Face 29126 5601 14987 5602 Face 29127 14049 14048 13971 Face 29128 14168 1379 5380 Face 29129 15620 15764 15763 Face 29130 20396 13162 20395 Face 29131 13937 15464 14384 Face 29132 2386 1796 14360 Face 29133 233 15602 4990 Face 29134 18952 3962 171 Face 29135 14953 15086 15085 Face 29136 19071 17966 17784 Face 29137 94 20534 20533 Face 29138 16237 16401 16400 Face 29139 16220 16374 3707 Face 29140 9213 14281 8262 Face 29141 1128 4103 15122 Face 29142 15124 15123 15523 Face 29143 14499 4876 6616 Face 29144 14102 4454 13954 Face 29145 15764 15916 15915 Face 29146 15763 15764 15915 Face 29147 15916 16070 16069 Face 29148 15915 15916 16069 Face 29149 16227 16226 16069 Face 29150 16070 16227 16069 Face 29151 4876 14102 6616 Face 29152 16391 16390 16226 Face 29153 6002 5780 15394 Face 29154 13954 4454 2386 Face 29155 15643 5775 15059 Face 29156 1541 4341 1529 Face 29157 14952 15085 15084 Face 29158 11539 12012 11617 Face 29159 15086 15087 15218 Face 29160 14951 14952 15084 Face 29161 2076 2203 16585 Face 29162 14954 15087 15086 Face 29163 3503 4107 4235 Face 29164 15499 6610 340 Face 29165 4090 777 776 Face 29166 14433 14552 15324 Face 29167 13942 13943 5269 Face 29168 16206 5091 5092 Face 29169 15193 11770 14028 Face 29170 2129 16115 2380 Face 29171 14725 15722 14905 Face 29172 14014 14191 14074 Face 29173 14810 16435 14807 Face 29174 12662 15503 12661 Face 29175 5018 6027 15961 Face 29176 15600 15900 15619 Face 29177 14131 14233 14130 Face 29178 15962 14197 16424 Face 29179 79 4211 26 Face 29180 20047 20046 19969 Face 29181 14876 16280 16281 Face 29182 231 46 6413 Face 29183 14434 15388 13804 Face 29184 16281 16280 14253 Face 29185 20975 20886 33949 Face 29186 13859 14434 13804 Face 29187 19877 19878 19952 Face 29188 19417 19473 19388 Face 29189 21630 21631 21725 Face 29190 34363 34673 34680 Face 29191 2643 19541 15732 Face 29192 21823 21919 21918 Face 29193 22135 22038 13537 Face 29194 4108 3038 1314 Face 29195 16402 16385 14731 Face 29196 3503 1504 4107 Face 29197 16409 15520 16402 Face 29198 46 12654 132 Face 29199 13828 13841 13840 Face 29200 16203 15892 15502 Face 29201 15785 15500 14921 Face 29202 14743 14866 14622 Face 29203 898 554 5378 Face 29204 14922 14286 14287 Face 29205 14402 1133 580 Face 29206 5898 159 5769 Face 29207 15895 665 14690 Face 29208 15092 5241 5371 Face 29209 14861 16582 16571 Face 29210 15895 14690 14753 Face 29211 16051 14739 14617 Face 29212 15618 14208 5255 Face 29213 14044 14043 13966 Face 29214 13874 16204 3068 Face 29215 32700 32833 32699 Face 29216 13967 14044 13966 Face 29217 16283 16358 14279 Face 29218 34729 34686 34436 Face 29219 17364 17363 17272 Face 29220 14022 15180 14021 Face 29221 4103 14992 15122 Face 29222 13885 13903 13884 Face 29223 2379 15464 13937 Face 29224 20739 14098 21561 Face 29225 137 1379 14168 Face 29226 5380 2379 13937 Face 29227 14360 137 14168 Face 29228 1379 2379 5380 Face 29229 15389 15254 16211 Face 29230 19862 13390 23434 Face 29231 14925 16359 14743 Face 29232 14670 14387 15190 Face 29233 4359 3372 1243 Face 29234 16359 4359 1243 Face 29235 13869 13870 13885 Face 29236 16359 1243 14743 Face 29237 15525 15046 15178 Face 29238 14737 3066 1011 Face 29239 6616 14102 13954 Face 29240 15523 15525 15178 Face 29241 16227 16391 16226 Face 29242 5147 4876 14499 Face 29243 16391 16554 16553 Face 29244 16390 16391 16553 Face 29245 6742 2459 16553 Face 29246 16554 6742 16553 Face 29247 2460 2589 2459 Face 29248 1578 4739 14960 Face 29249 14836 5147 14207 Face 29250 14834 15896 4620 Face 29251 15123 15525 15523 Face 29252 14925 14743 14504 Face 29253 14357 14474 14155 Face 29254 14953 14954 15086 Face 29255 15085 15217 15216 Face 29256 15458 15321 2076 Face 29257 14703 14826 14825 Face 29258 1783 4488 15359 Face 29259 14099 15499 14211 Face 29260 14857 15935 14001 Face 29261 3251 3503 4235 Face 29262 4488 1783 16041 Face 29263 13858 24661 24524 Face 29264 16277 15537 15536 Face 29265 5761 6 51 Face 29266 13950 16365 410 Face 29267 10367 10594 14328 Face 29268 16036 16216 19924 Face 29269 15214 15215 15350 Face 29270 15961 15962 16424 Face 29271 15636 15619 16422 Face 29272 3965 14173 14735 Face 29273 14197 15382 15387 Face 29274 4211 231 6413 Face 29275 12205 14531 13200 Face 29276 408 26 91 Face 29277 5472 12654 46 Face 29278 15388 5331 14961 Face 29279 15601 14876 16281 Face 29280 16048 15601 15356 Face 29281 13804 15388 14961 Face 29282 5901 14733 15752 Face 29283 7019 20709 20708 Face 29284 2031 13847 899 Face 29285 19270 19309 19278 Face 29286 13887 13905 13904 Face 29287 14563 14443 6277 Face 29288 29402 29403 29533 Face 29289 21632 21728 21727 Face 29290 15356 15601 16282 Face 29291 11536 13646 13551 Face 29292 13902 13901 13883 Face 29293 15456 16048 15356 Face 29294 14738 14731 6143 Face 29295 13926 13925 13901 Face 29296 15520 16203 15502 Face 29297 6413 46 4462 Face 29298 13826 13816 13840 Face 29299 16203 15051 14876 Face 29300 14921 14922 14287 Face 29301 14247 16527 14223 Face 29302 2001 5378 72 Face 29303 34656 34470 34434 Face 29304 15191 15187 14024 Face 29305 266 5898 265 Face 29306 14870 15895 14753 Face 29307 14318 14402 580 Face 29308 3956 2125 518 Face 29309 14870 14753 15671 Face 29310 5270 16051 14935 Face 29311 19816 19815 19732 Face 29312 14133 14132 14043 Face 29313 14868 15893 13874 Face 29314 31416 31522 31415 Face 29315 14044 14133 14043 Face 29316 15180 15130 14021 Face 29317 21385 21456 114 Face 29318 17241 19224 18608 Face 29319 21723 21722 21627 Face 29320 6158 16116 16272 Face 29321 13903 13902 13884 Face 29322 2756 18487 4738 Face 29323 331 6158 16272 Face 29324 14395 6158 331 Face 29325 14923 14395 331 Face 29326 16116 15123 15124 Face 29327 16272 16116 15124 Face 29328 13959 14163 2287 Face 29329 14163 14730 2287 Face 29330 14730 14163 14962 Face 29331 14163 3837 14962 Face 29332 4359 15497 15639 Face 29333 3837 14334 15822 Face 29334 14263 15326 13933 Face 29335 3372 4359 15639 Face 29336 15046 14834 4620 Face 29337 15639 15497 14477 Face 29338 14207 5147 14499 Face 29339 15178 15046 4620 Face 29340 6742 2460 2459 Face 29341 4739 14836 14960 Face 29342 3980 3853 2589 Face 29343 2460 3980 2589 Face 29344 813 814 3853 Face 29345 3980 813 3853 Face 29346 5394 5520 814 Face 29347 1462 15226 1578 Face 29348 813 5394 814 Face 29349 15463 15069 15780 Face 29350 14960 14836 14207 Face 29351 15497 13983 14477 Face 29352 15896 15463 15780 Face 29353 14582 14703 14581 Face 29354 14387 14925 14504 Face 29355 1801 3075 1583 Face 29356 15639 14477 5514 Face 29357 13863 13879 13862 Face 29358 2203 14099 16585 Face 29359 6734 14397 16123 Face 29360 16049 15364 14004 Face 29361 16124 15612 2929 Face 29362 16123 16124 2929 Face 29363 15927 15928 16081 Face 29364 1661 1314 3206 Face 29365 14398 16277 16278 Face 29366 14805 14398 16278 Face 29367 672 1013 2798 Face 29368 13841 13854 13840 Face 29369 13173 13267 11862 Face 29370 700 25221 25220 Face 29371 8524 2396 2268 Face 29372 16424 14197 15387 Face 29373 14380 15759 15616 Face 29374 15498 14173 3965 Face 29375 16279 16522 929 Face 29376 231 5472 46 Face 29377 26 6413 6739 Face 29378 6413 4462 6739 Face 29379 15254 15121 16371 Face 29380 10993 9775 781 Face 29381 16385 15358 16384 Face 29382 16048 15456 15263 Face 29383 16269 15126 15127 Face 29384 16057 1585 16535 Face 29385 255 15959 15363 Face 29386 16537 14087 15475 Face 29387 13200 19270 19278 Face 29388 13559 13674 5526 Face 29389 168 2799 2798 Face 29390 13940 16208 14441 Face 29391 3327 14394 2715 Face 29392 2418 14055 14379 Face 29393 15601 16281 16282 Face 29394 15127 16211 5760 Face 29395 12580 12670 12669 Face 29396 15358 15263 16384 Face 29397 12654 6143 132 Face 29398 3812 1236 3011 Face 29399 15892 16203 14876 Face 29400 26 6739 91 Face 29401 15759 13877 14877 Face 29402 15051 16279 16280 Face 29403 2037 28300 18459 Face 29404 4973 15498 15640 Face 29405 159 72 5769 Face 29406 9173 3852 9062 Face 29407 15819 3708 1131 Face 29408 5898 5769 265 Face 29409 15530 14870 15671 Face 29410 3703 6516 671 Face 29411 23171 21101 23172 Face 29412 15536 15537 15671 Face 29413 16204 5270 3068 Face 29414 14250 2418 14264 Face 29415 14235 14234 14132 Face 29416 15893 16204 13874 Face 29417 22597 22596 22502 Face 29418 14133 14235 14132 Face 29419 5644 5761 51 Face 29420 20467 21456 21385 Face 29421 24243 34636 13101 Face 29422 14215 15529 14214 Face 29423 14594 14595 14093 Face 29424 13845 14595 14594 Face 29425 15463 15608 15069 Face 29426 15608 13959 2287 Face 29427 15604 15899 1462 Face 29428 15226 4739 1578 Face 29429 14010 15899 15054 Face 29430 15899 15226 1462 Face 29431 14010 15054 5754 Face 29432 14376 14010 5754 Face 29433 14962 3837 15822 Face 29434 15899 15604 15054 Face 29435 14595 14092 14093 Face 29436 14334 5589 5460 Face 29437 14356 14278 3066 Face 29438 15393 14356 3066 Face 29439 15896 15780 4620 Face 29440 5589 3451 6157 Face 29441 15118 15758 16591 Face 29442 14376 5754 14261 Face 29443 5394 362 363 Face 29444 5520 5394 363 Face 29445 362 234 2543 Face 29446 363 362 2543 Face 29447 234 2416 448 Face 29448 2543 234 448 Face 29449 2416 6274 4093 Face 29450 15118 16591 80 Face 29451 14932 15118 80 Face 29452 6157 3451 5266 Face 29453 15608 14393 15069 Face 29454 2365 13845 14594 Face 29455 13983 13845 2365 Face 29456 20278 20361 20277 Face 29457 13568 11528 11273 Face 29458 21456 94 114 Face 29459 20466 20467 21385 Face 29460 14235 14345 14234 Face 29461 13897 13896 13878 Face 29462 16378 16379 16541 Face 29463 4107 1314 1661 Face 29464 14184 5269 6734 Face 29465 14397 16124 16123 Face 29466 15929 16082 15928 Face 29467 5626 3114 14961 Face 29468 14319 14398 14805 Face 29469 16195 14319 14805 Face 29470 441 551 166 Face 29471 5524 262 5525 Face 29472 22404 22501 22500 Face 29473 22403 22404 22500 Face 29474 14085 14513 15598 Face 29475 9956 9840 9841 Face 29476 14173 14380 14735 Face 29477 15640 15498 3965 Face 29478 22414 22318 21004 Face 29479 15488 15630 15629 Face 29480 19309 19749 19725 Face 29481 46 132 4462 Face 29482 16281 14253 15606 Face 29483 15254 13936 15121 Face 29484 4462 132 5504 Face 29485 15358 16048 15263 Face 29486 13286 22223 22034 Face 29487 13961 14917 3708 Face 29488 14087 14185 14186 Face 29489 15363 16537 15475 Face 29490 15055 13804 3114 Face 29491 14837 3114 5750 Face 29492 13847 14854 13836 Face 29493 16248 16411 8944 Face 29494 13859 13804 15055 Face 29495 13804 14961 3114 Face 29496 16535 1585 14451 Face 29497 15883 12983 15451 Face 29498 16385 16384 14718 Face 29499 14731 16385 14718 Face 29500 16211 15254 16371 Face 29501 13936 4730 15121 Face 29502 408 91 478 Face 29503 369 408 478 Face 29504 14876 15051 16280 Face 29505 16280 16279 929 Face 29506 13910 14513 14085 Face 29507 15598 4973 15640 Face 29508 9844 15953 15802 Face 29509 1690 4481 14806 Face 29510 4467 3898 15443 Face 29511 34046 21633 21632 Face 29512 15057 14026 581 Face 29513 14394 3630 14280 Face 29514 16278 16277 15536 Face 29515 15537 15530 15671 Face 29516 13080 12988 11207 Face 29517 15776 15928 15927 Face 29518 15258 15893 14868 Face 29519 15257 15258 14868 Face 29520 14345 14344 14234 Face 29521 14463 14462 14344 Face 29522 19278 19309 19725 Face 29523 19678 19680 20466 Face 29524 14178 15746 13833 Face 29525 16656 4153 16655 Face 29526 14092 14356 15393 Face 29527 14093 14092 15393 Face 29528 14393 15608 2287 Face 29529 16546 13980 3967 Face 29530 14932 80 14926 Face 29531 14679 14932 14926 Face 29532 448 2416 4093 Face 29533 6274 1460 906 Face 29534 4093 6274 906 Face 29535 6273 1574 1460 Face 29536 15495 3195 235 Face 29537 906 1460 14105 Face 29538 15822 14334 5460 Face 29539 14679 14926 1351 Face 29540 15361 15912 14858 Face 29541 3967 1347 4237 Face 29542 5460 5589 6157 Face 29543 14181 14511 14063 Face 29544 15758 14376 14261 Face 29545 3451 14213 5266 Face 29546 13545 20909 12795 Face 29547 3195 1351 235 Face 29548 18817 14105 1460 Face 29549 34404 34421 34699 Face 29550 11751 24301 21599 Face 29551 17136 15874 18996 Face 29552 15532 15495 15673 Face 29553 3381 3509 3380 Face 29554 14213 13980 16546 Face 29555 15758 14261 16591 Face 29556 15912 15476 14858 Face 29557 5266 14213 16546 Face 29558 21726 21823 21822 Face 29559 14477 13983 2365 Face 29560 6516 6149 2290 Face 29561 6819 14500 256 Face 29562 14024 14022 2035 Face 29563 15633 15777 15776 Face 29564 2165 14024 2035 Face 29565 166 551 167 Face 29566 16542 2501 3553 Face 29567 20154 16379 16217 Face 29568 13942 5269 13941 Face 29569 5269 14397 6734 Face 29570 14180 14451 14250 Face 29571 21447 21446 21353 Face 29572 13810 14319 16195 Face 29573 15641 13810 16195 Face 29574 7998 10826 14808 Face 29575 672 6022 4221 Face 29576 29338 18255 6613 Face 29577 21443 21442 21349 Face 29578 5623 13910 14085 Face 29579 14513 4973 15598 Face 29580 14921 14287 13935 Face 29581 14735 14380 15616 Face 29582 14283 6645 6737 Face 29583 13884 13883 13867 Face 29584 19749 20483 20480 Face 29585 19406 19486 19405 Face 29586 14253 335 15959 Face 29587 16282 16281 15606 Face 29588 6739 4462 6740 Face 29589 132 47 5504 Face 29590 14473 14170 3024 Face 29591 1352 14473 3024 Face 29592 15959 16537 15363 Face 29593 15475 14087 14186 Face 29594 15220 15356 16437 Face 29595 16282 15606 15678 Face 29596 16437 16282 15678 Face 29597 15606 15959 255 Face 29598 14185 16245 16407 Face 29599 13844 13859 15055 Face 29600 8974 9312 3447 Face 29601 19725 19749 20480 Face 29602 6143 1010 47 Face 29603 132 6143 47 Face 29604 15820 16208 13940 Face 29605 13936 5198 13909 Face 29606 13826 13825 13816 Face 29607 697 369 696 Face 29608 16522 15960 229 Face 29609 929 16522 229 Face 29610 17570 1574 6392 Face 29611 15070 15201 5623 Face 29612 13821 14433 14438 Face 29613 15048 13821 14438 Face 29614 19486 19485 19405 Face 29615 5128 12104 11002 Face 29616 3630 2546 14280 Face 29617 20483 21550 21473 Face 29618 13822 14833 13814 Face 29619 16524 16443 14814 Face 29620 3459 3558 14591 Face 29621 15775 15776 15927 Face 29622 15612 15258 15257 Face 29623 2929 15612 15257 Face 29624 14345 14463 14344 Face 29625 14318 14265 4487 Face 29626 20480 20483 21473 Face 29627 13286 22034 22318 Face 29628 1352 3024 16126 Face 29629 671 2290 442 Face 29630 13971 13970 13924 Face 29631 11850 10011 13301 Face 29632 1347 14593 4237 Face 29633 1348 13938 3796 Face 29634 333 15532 439 Face 29635 15495 235 15673 Face 29636 14928 14803 14274 Face 29637 20827 16274 20739 Face 29638 14569 16589 14803 Face 29639 20738 14928 16274 Face 29640 3195 14679 1351 Face 29641 34820 6699 34513 Face 29642 14593 450 14358 Face 29643 4237 14593 14358 Face 29644 14560 14181 14063 Face 29645 14511 14094 14224 Face 29646 21550 247 14911 Face 29647 22151 22247 14056 Face 29648 21473 21550 14911 Face 29649 1262 15052 18779 Face 29650 13947 14016 16589 Face 29651 247 20600 20543 Face 29652 14569 13947 16589 Face 29653 15753 14002 14016 Face 29654 13947 15753 14016 Face 29655 13875 13811 14002 Face 29656 15753 13875 14002 Face 29657 14911 247 20543 Face 29658 20600 7668 12947 Face 29659 14094 14742 2933 Face 29660 13980 1347 3967 Face 29661 20543 20600 12947 Face 29662 781 9662 1648 Face 29663 19438 15313 14491 Face 29664 14191 6819 14074 Face 29665 14362 3065 1226 Face 29666 7192 10243 9069 Face 29667 9174 930 4489 Face 29668 12897 12551 12898 Face 29669 14024 15187 14022 Face 29670 4357 4487 15180 Face 29671 16379 20154 20232 Face 29672 23162 333 16361 Face 29673 16548 13942 16539 Face 29674 5269 14184 13941 Face 29675 13812 14622 15886 Face 29676 15752 16535 14025 Face 29677 14833 16524 14814 Face 29678 13810 15641 16443 Face 29679 15963 15813 16118 Face 29680 14754 14112 3580 Face 29681 16436 16435 14810 Face 29682 13267 9996 11862 Face 29683 15746 14673 14162 Face 29684 14673 15089 14162 Face 29685 15785 14921 14126 Face 29686 15362 15785 14126 Face 29687 14328 10594 7399 Face 29688 10845 34612 34415 Face 29689 9313 12387 11932 Face 29690 7146 8208 5980 Face 29691 335 13918 16537 Face 29692 15606 14253 15959 Face 29693 91 6739 990 Face 29694 4462 5504 6740 Face 29695 13992 5198 13936 Face 29696 116 1504 3503 Face 29697 16125 16425 15612 Face 29698 11942 1264 12027 Face 29699 15181 15456 15220 Face 29700 15356 16282 16437 Face 29701 16346 16344 2384 Face 29702 15678 15606 255 Face 29703 14186 14185 16407 Face 29704 16245 13859 13844 Face 29705 7625 13070 12947 Face 29706 22223 22222 22034 Face 29707 14731 14718 1010 Face 29708 6143 14731 1010 Face 29709 14476 14055 2418 Face 29710 14451 14476 2418 Face 29711 22019 22117 22018 Face 29712 696 3847 697 Face 29713 15960 15967 2432 Face 29714 229 15960 2432 Face 29715 14769 7740 9216 Face 29716 15201 13910 5623 Face 29717 14343 14461 14342 Face 29718 14579 14578 14460 Face 29719 7668 7625 12947 Face 29720 7625 22512 22606 Face 29721 13070 7625 22606 Face 29722 19892 19891 19815 Face 29723 445 13822 1 Face 29724 14833 14814 13814 Face 29725 15928 16082 16081 Face 29726 3449 3448 6155 Face 29727 14853 16548 14839 Face 29728 13942 13941 16539 Face 29729 14581 14580 14462 Face 29730 4858 3955 14215 Face 29731 15632 15633 15776 Face 29732 15777 15929 15928 Face 29733 3024 14009 1227 Face 29734 2946 2945 33155 Face 29735 22213 22214 22309 Face 29736 22310 22406 22405 Face 29737 14378 1348 3796 Face 29738 14742 14103 338 Face 29739 22512 15299 12122 Face 29740 22606 22512 12122 Face 29741 13875 3452 4228 Face 29742 13811 13875 4228 Face 29743 3452 3845 3713 Face 29744 4228 3452 3713 Face 29745 15532 15673 439 Face 29746 15299 15867 15717 Face 29747 450 1348 14378 Face 29748 14358 450 14378 Face 29749 14063 14511 14224 Face 29750 13995 13992 13936 Face 29751 20534 15586 20533 Face 29752 15879 21004 16502 Face 29753 3845 14089 15609 Face 29754 3713 3845 15609 Face 29755 2274 15132 15000 Face 29756 34397 34301 11774 Face 29757 15609 14089 15129 Face 29758 33750 33876 33749 Face 29759 15129 15462 16042 Face 29760 28635 28016 28500 Face 29761 16746 16815 16745 Face 29762 13575 11385 10857 Face 29763 14468 14469 14586 Face 29764 5116 16594 14103 Face 29765 34729 34533 34686 Face 29766 14224 14094 2933 Face 29767 11770 12735 10199 Face 29768 27016 6590 27133 Face 29769 14827 14952 14951 Face 29770 14220 14219 14119 Face 29771 12122 15299 15717 Face 29772 23079 23078 14220 Face 29773 1762 4747 2145 Face 29774 20128 20129 20206 Face 29775 1786 15727 13544 Face 29776 3326 9775 5904 Face 29777 2501 3503 3251 Face 29778 16541 16542 3553 Face 29779 21445 21444 21351 Face 29780 2159 2413 4478 Face 29781 10211 12818 2640 Face 29782 2928 9978 55 Face 29783 1237 15467 665 Face 29784 16524 13810 16443 Face 29785 14112 3577 15380 Face 29786 16118 14754 3580 Face 29787 14811 14810 13807 Face 29788 13813 14811 13807 Face 29789 16566 15223 15746 Face 29790 15223 14673 15746 Face 29791 15246 15785 15362 Face 29792 15247 15246 15362 Face 29793 34288 13655 13663 Face 29794 5248 2249 3966 Face 29795 6004 1156 1155 Face 29796 2766 13909 15400 Face 29797 15959 335 16537 Face 29798 13918 15909 14087 Face 29799 91 990 477 Face 29800 477 476 2046 Face 29801 13972 13971 13925 Face 29802 13884 13902 13883 Face 29803 5755 286 6534 Face 29804 16564 16548 14853 Face 29805 2003 4078 2002 Face 29806 14455 3045 2791 Face 29807 8837 16572 2659 Face 29808 34669 34834 28002 Face 29809 6391 1762 5253 Face 29810 16407 16245 13844 Face 29811 34320 13762 9279 Face 29812 9221 14037 10241 Face 29813 10273 9332 10807 Face 29814 776 15905 3574 Face 29815 14379 15820 13940 Face 29816 1236 3163 3154 Face 29817 21631 21726 21725 Face 29818 478 25086 696 Face 29819 15967 14981 15806 Face 29820 2432 15967 15806 Face 29821 10582 3701 7143 Face 29822 34478 34538 34555 Face 29823 14461 14579 14460 Face 29824 14700 14699 14578 Face 29825 14948 14947 14822 Face 29826 14823 14948 14822 Face 29827 24885 26125 26104 Face 29828 27377 29066 29062 Face 29829 1568 445 1547 Face 29830 13822 13814 1 Face 29831 13806 13819 22 Face 29832 5770 55 10085 Face 29833 13836 14853 13835 Face 29834 16548 16539 14839 Face 29835 14216 15670 15529 Face 29836 14477 2365 16121 Face 29837 15079 15080 15211 Face 29838 15320 14205 14109 Face 29839 27899 26094 26089 Face 29840 19659 19658 19575 Face 29841 7291 10367 9735 Face 29842 16583 637 5240 Face 29843 2933 14742 338 Face 29844 5019 11540 14518 Face 29845 13952 15386 14672 Face 29846 14469 14587 14586 Face 29847 13905 13906 13929 Face 29848 13870 13886 13885 Face 29849 13930 13976 13975 Face 29850 787 903 13996 Face 29851 21457 21458 15717 Face 29852 14170 3 14838 Face 29853 13938 14181 14560 Face 29854 3796 13938 14560 Face 29855 15867 21457 15717 Face 29856 14074 256 2585 Face 29857 34429 34393 34621 Face 29858 15217 15218 15353 Face 29859 4344 903 787 Face 29860 16364 16360 16198 Face 29861 14006 15095 15088 Face 29862 14521 14553 16114 Face 29863 16120 13873 6723 Face 29864 13883 13882 13866 Face 29865 16114 16120 6723 Face 29866 21458 21457 193 Face 29867 14108 4937 16596 Face 29868 34452 34520 34411 Face 29869 23434 24885 26104 Face 29870 16126 14011 212 Face 29871 3944 16587 16428 Face 29872 16587 2176 5138 Face 29873 13934 13950 410 Face 29874 14827 14826 14703 Face 29875 14704 14827 14703 Face 29876 15294 11933 8253 Face 29877 30306 30373 30372 Face 29878 14279 14874 1378 Face 29879 16366 14109 15182 Face 29880 13986 14938 15610 Face 29881 14504 14743 14622 Face 29882 14767 13632 14768 Face 29883 15722 13537 14905 Face 29884 18518 22151 21273 Face 29885 16354 21672 19425 Face 29886 528 1237 665 Face 29887 15895 528 665 Face 29888 3577 14557 14194 Face 29889 3580 14112 15380 Face 29890 6503 2030 2001 Face 29891 13813 13807 898 Face 29892 15223 16566 4488 Face 29893 3061 1909 15364 Face 29894 15967 16424 14981 Face 29895 15387 15246 15247 Face 29896 15196 15333 15332 Face 29897 14338 2791 7591 Face 29898 16565 1132 15388 Face 29899 3558 1380 5901 Face 29900 15909 14187 14185 Face 29901 16537 13918 14087 Face 29902 3165 7733 10460 Face 29903 6739 6740 990 Face 29904 10830 9324 10863 Face 29905 1338 873 874 Face 29906 1456 18240 18335 Face 29907 29665 29534 22451 Face 29908 4806 2712 2328 Face 29909 2791 14338 14456 Face 29910 5627 5331 5497 Face 29911 6534 4447 150 Face 29912 5082 5083 5209 Face 29913 34712 11304 34703 Face 29914 4743 2145 4747 Face 29915 4879 4743 4747 Face 29916 19979 19980 20056 Face 29917 13311 13310 9731 Face 29918 12855 12946 14421 Face 29919 23078 14221 14220 Face 29920 5141 697 3847 Face 29921 21537 21538 21630 Face 29922 14434 16565 15388 Face 29923 1132 15092 5331 Face 29924 13935 16568 15092 Face 29925 1132 13935 15092 Face 29926 14579 14700 14578 Face 29927 14700 14823 14822 Face 29928 14632 3851 3955 Face 29929 16590 16246 14798 Face 29930 21730 21729 21633 Face 29931 15588 12858 12950 Face 29932 1568 1547 7 Face 29933 2285 1568 7 Face 29934 13806 5903 13819 Face 29935 14822 14947 14821 Face 29936 899 13836 667 Face 29937 14853 14839 13835 Face 29938 21822 21823 21918 Face 29939 11449 15339 15479 Face 29940 15185 13986 15455 Face 29941 2978 5263 5270 Face 29942 4186 16376 16377 Face 29943 34680 13665 13467 Face 29944 14278 1695 582 Face 29945 3066 14278 582 Face 29946 5773 14214 15969 Face 29947 18123 18122 1391 Face 29948 4879 4747 1880 Face 29949 34562 34470 34656 Face 29950 14119 23079 14220 Face 29951 1585 14476 14451 Face 29952 9384 4187 7578 Face 29953 900 339 2918 Face 29954 14350 14351 14468 Face 29955 14937 15745 16583 Face 29956 22493 22587 22492 Face 29957 338 14103 16594 Face 29958 16158 16315 16157 Face 29959 34695 34457 34384 Face 29960 14248 14361 1463 Face 29961 14139 14138 14049 Face 29962 2627 4063 4191 Face 29963 759 14937 14862 Face 29964 4185 4316 4315 Face 29965 15479 15621 15620 Face 29966 34736 34724 34627 Face 29967 15621 15765 15764 Face 29968 15620 15621 15764 Face 29969 14013 13937 15355 Face 29970 15355 14384 3576 Face 29971 5380 13937 14013 Face 29972 14384 759 3576 Face 29973 1689 5380 14013 Face 29974 13937 14384 15355 Face 29975 16365 16265 14036 Face 29976 2050 3944 16428 Face 29977 16426 16585 73 Face 29978 15611 1232 16107 Face 29979 31115 31114 31018 Face 29980 1129 1130 209 Face 29981 16596 4937 15611 Face 29982 15182 14109 2584 Face 29983 15253 13890 14212 Face 29984 4060 5900 14691 Face 29985 13632 9647 14768 Face 29986 20129 20207 20206 Face 29987 21672 18137 19425 Face 29988 14702 14825 14824 Face 29989 9986 7812 6922 Face 29990 15467 14677 665 Face 29991 5343 11011 10211 Face 29992 15380 3577 14194 Face 29993 15263 15456 14986 Face 29994 2030 13813 898 Face 29995 1010 1214 2284 Face 29996 3061 15364 16049 Face 29997 13676 10305 10186 Face 29998 14981 15387 15247 Face 29999 16358 16368 14874 Face 30000 5239 5115 4850 Face 30001 7697 12621 9416 Face 30002 14733 16057 15752 Face 30003 3937 15401 10601 Face 30004 1232 2802 13820 Face 30005 4605 3831 2025 Face 30006 5496 9332 4743 Face 30007 16445 16604 16603 Face 30008 16444 16445 16603 Face 30009 16604 4808 4806 Face 30010 16603 16604 4806 Face 30011 4808 2713 2712 Face 30012 4806 4808 2712 Face 30013 2713 4881 1880 Face 30014 2712 2713 1880 Face 30015 4881 5011 4879 Face 30016 1880 4881 4879 Face 30017 4875 4743 4879 Face 30018 5011 4875 4879 Face 30019 16572 16573 2659 Face 30020 4875 5496 4743 Face 30021 14055 15820 14379 Face 30022 14627 14626 4859 Face 30023 15443 3898 14303 Face 30024 19816 19892 19815 Face 30025 15388 1132 5331 Face 30026 24380 24379 11622 Face 30027 12639 11842 11846 Face 30028 14981 15247 1020 Face 30029 15661 1242 14438 Face 30030 13935 14287 16568 Face 30031 14217 15812 15670 Face 30032 1242 15048 14438 Face 30033 28568 28552 27329 Face 30034 3715 4726 5404 Face 30035 445 1 1547 Face 30036 2285 7 2247 Face 30037 15759 15910 13877 Face 30038 138 449 8776 Face 30039 899 667 5640 Face 30040 3030 899 5640 Face 30041 1922 475 1803 Face 30042 4084 1656 50 Face 30043 15455 13986 15249 Face 30044 14938 14212 15610 Face 30045 172 1567 19075 Face 30046 92 785 670 Face 30047 14749 5773 2032 Face 30048 14798 14403 14552 Face 30049 4091 18414 4213 Face 30050 16265 3944 2050 Face 30051 341 14360 15452 Face 30052 14168 5380 1689 Face 30053 15765 15917 15916 Face 30054 15764 15765 15916 Face 30055 15917 16071 16070 Face 30056 15916 15917 16070 Face 30057 14862 14937 16583 Face 30058 14503 2386 341 Face 30059 14263 14262 15326 Face 30060 14855 14012 14473 Face 30061 15187 4357 15180 Face 30062 4590 3825 750 Face 30063 14050 14139 14049 Face 30064 14347 14346 14236 Face 30065 3576 759 14862 Face 30066 17909 18000 17908 Face 30067 16228 16227 16070 Face 30068 2386 14360 341 Face 30069 16071 16228 16070 Face 30070 16392 16391 16227 Face 30071 16228 16392 16227 Face 30072 16555 16554 16391 Face 30073 16392 16555 16391 Face 30074 13955 13954 14503 Face 30075 14075 6742 16554 Face 30076 16555 14075 16554 Face 30077 1266 6616 13955 Face 30078 13954 2386 14503 Face 30079 16116 15965 15123 Face 30080 410 16365 14036 Face 30081 17364 17451 17363 Face 30082 17989 18523 17880 Face 30083 1795 16050 15477 Face 30084 16041 16359 14925 Face 30085 16236 16237 16400 Face 30086 293 6767 6768 Face 30087 22790 21361 16836 Face 30088 14938 15253 14212 Face 30089 13892 14192 14919 Face 30090 21259 21352 21258 Face 30091 17451 19904 19829 Face 30092 14192 15185 15455 Face 30093 10830 2927 1230 Face 30094 34760 34777 34479 Face 30095 127 1345 16111 Face 30096 7578 4187 15131 Face 30097 446 16583 5240 Face 30098 18538 4498 4629 Face 30099 34705 20884 34607 Face 30100 15326 14473 1352 Face 30101 1726 1725 1617 Face 30102 15826 5385 15683 Face 30103 16209 16213 13934 Face 30104 13548 11536 13551 Face 30105 11043 15479 15620 Face 30106 15401 15540 10601 Face 30107 16128 16285 16284 Face 30108 10996 5904 10993 Face 30109 16285 16446 16445 Face 30110 16284 16285 16445 Face 30111 16446 16605 16604 Face 30112 16445 16446 16604 Face 30113 16605 4805 4808 Face 30114 16604 16605 4808 Face 30115 4805 2327 2713 Face 30116 4808 4805 2713 Face 30117 2327 4749 4881 Face 30118 2713 2327 4881 Face 30119 4749 4469 5011 Face 30120 4881 4749 5011 Face 30121 4469 745 4875 Face 30122 5011 4469 4875 Face 30123 5770 5496 4875 Face 30124 745 5770 4875 Face 30125 11094 13301 7847 Face 30126 12665 15096 12755 Face 30127 1637 8067 8173 Face 30128 3946 124 281 Face 30129 13854 13868 13853 Face 30130 14539 2643 2896 Face 30131 15806 14981 1020 Face 30132 5371 3557 5497 Face 30133 9977 2928 7664 Face 30134 15247 15362 15936 Face 30135 1692 14632 3955 Face 30136 14126 14921 13935 Face 30137 18753 18460 21169 Face 30138 14216 14217 15670 Face 30139 4736 2285 2247 Face 30140 14435 15600 15636 Face 30141 7513 7297 777 Face 30142 4736 2247 5134 Face 30143 13836 13835 667 Face 30144 8838 8839 8943 Face 30145 5900 14692 14691 Face 30146 34641 34508 34647 Face 30147 474 1124 473 Face 30148 15679 1919 1232 Face 30149 34513 34346 34820 Face 30150 1603 3811 4101 Face 30151 13995 2720 13992 Face 30152 34684 34803 34743 Face 30153 14036 16265 2050 Face 30154 4618 4487 14260 Face 30155 15452 14168 1689 Face 30156 14320 2670 6158 Face 30157 2588 2460 6742 Face 30158 14496 14499 1266 Face 30159 14075 2588 6742 Face 30160 3979 3980 2460 Face 30161 2588 3979 2460 Face 30162 14360 14168 15452 Face 30163 14177 14207 14496 Face 30164 34662 34526 34517 Face 30165 13196 13118 34385 Face 30166 14220 14329 14219 Face 30167 14518 15323 5019 Face 30168 14828 14953 14952 Face 30169 14135 14237 14134 Face 30170 15889 11688 13468 Face 30171 15330 13959 15608 Face 30172 15054 15604 13913 Face 30173 15604 1462 14936 Face 30174 3979 812 813 Face 30175 3980 3979 813 Face 30176 812 3970 5394 Face 30177 813 812 5394 Face 30178 3970 1355 362 Face 30179 5394 3970 362 Face 30180 1355 339 234 Face 30181 362 1355 234 Face 30182 8987 2274 15000 Face 30183 5754 15054 13913 Face 30184 4328 5754 13913 Face 30185 14163 16085 3837 Face 30186 15256 14195 15525 Face 30187 2031 899 3030 Face 30188 17248 17338 17247 Face 30189 16400 16401 16563 Face 30190 14166 14837 4619 Face 30191 14714 3335 13961 Face 30192 20200 22535 17768 Face 30193 15630 15774 15773 Face 30194 15773 15774 15925 Face 30195 16112 4464 14748 Face 30196 19010 17136 18996 Face 30197 15000 15132 15131 Face 30198 16038 13392 13544 Face 30199 15132 15266 15265 Face 30200 15131 15132 15265 Face 30201 15266 15402 15401 Face 30202 15265 15266 15401 Face 30203 15402 15541 15540 Face 30204 15401 15402 15540 Face 30205 15541 15683 15682 Face 30206 15540 15541 15682 Face 30207 24524 14861 13858 Face 30208 15970 16269 274 Face 30209 15826 15977 15976 Face 30210 6140 10765 6139 Face 30211 15977 16129 16128 Face 30212 15976 15977 16128 Face 30213 16129 16286 16285 Face 30214 16128 16129 16285 Face 30215 16286 16447 16446 Face 30216 16285 16286 16446 Face 30217 16447 16606 16605 Face 30218 16446 16447 16605 Face 30219 16606 4809 4805 Face 30220 16605 16606 4805 Face 30221 4809 2455 2327 Face 30222 4805 4809 2327 Face 30223 2455 1313 4749 Face 30224 2327 2455 4749 Face 30225 1313 2507 4469 Face 30226 4749 1313 4469 Face 30227 2507 656 745 Face 30228 4469 2507 745 Face 30229 4709 5770 745 Face 30230 656 4709 745 Face 30231 8 55 5770 Face 30232 4709 8 5770 Face 30233 5526 12377 5525 Face 30234 8 2928 55 Face 30235 14187 1020 16089 Face 30236 15936 16565 14434 Face 30237 11075 29995 29994 Face 30238 16089 15936 14434 Face 30239 1020 15247 15936 Face 30240 12 2640 5342 Face 30241 34818 3573 3031 Face 30242 15362 14126 16565 Face 30243 3851 14217 14216 Face 30244 14699 14700 14822 Face 30245 15637 14435 15636 Face 30246 3955 3851 14216 Face 30247 5006 4736 5134 Face 30248 14435 15318 14399 Face 30249 15661 14438 15662 Face 30250 5006 5134 4726 Face 30251 3030 5640 2413 Face 30252 14594 14093 14917 Face 30253 14390 15248 14192 Face 30254 2159 3030 2413 Face 30255 3811 1803 4101 Face 30256 15612 16425 15258 Face 30257 13374 16595 2203 Face 30258 20529 20530 13479 Face 30259 14247 14260 16527 Face 30260 15386 14083 14014 Face 30261 16943 16855 16856 Face 30262 2927 10830 7664 Face 30263 6616 13954 13955 Face 30264 2670 15965 16116 Face 30265 234 339 2416 Face 30266 14960 14207 14177 Face 30267 900 6273 6274 Face 30268 2416 900 6274 Face 30269 14499 6616 1266 Face 30270 1462 1578 2937 Face 30271 6158 2670 16116 Face 30272 15965 15256 15123 Face 30273 15761 2045 14749 Face 30274 997 996 884 Face 30275 14622 14866 14740 Face 30276 14298 15458 4936 Face 30277 15465 15330 15608 Face 30278 16542 16543 2501 Face 30279 15760 15604 14936 Face 30280 15330 16085 14163 Face 30281 1574 17570 17449 Face 30282 14261 5754 4328 Face 30283 6274 6273 1460 Face 30284 2657 5199 2656 Face 30285 16428 16587 5138 Face 30286 14719 24122 14599 Face 30287 18521 18224 20633 Face 30288 20647 14391 14569 Face 30289 16591 14261 16052 Face 30290 16541 16379 16542 Face 30291 13991 14619 14334 Face 30292 15604 15760 13913 Face 30293 14705 14706 14828 Face 30294 3837 13991 14334 Face 30295 15477 14166 4619 Face 30296 14591 3558 1804 Face 30297 18165 17780 18880 Face 30298 9320 19621 3436 Face 30299 14541 9320 14659 Face 30300 18224 17267 20633 Face 30301 15879 22414 21004 Face 30302 15487 15488 15629 Face 30303 2910 22447 11813 Face 30304 9268 9269 9381 Face 30305 16371 15121 7073 Face 30306 34386 34392 34586 Face 30307 15133 15267 15266 Face 30308 15132 15133 15266 Face 30309 15267 15403 15402 Face 30310 15266 15267 15402 Face 30311 15403 15542 15541 Face 30312 15402 15403 15541 Face 30313 15542 15684 15683 Face 30314 15541 15542 15683 Face 30315 15684 15827 15826 Face 30316 15683 15684 15826 Face 30317 15827 15978 15977 Face 30318 15826 15827 15977 Face 30319 15978 16130 16129 Face 30320 15977 15978 16129 Face 30321 16130 16287 16286 Face 30322 16129 16130 16286 Face 30323 16287 16448 16447 Face 30324 16286 16287 16447 Face 30325 16448 16607 16606 Face 30326 16447 16448 16606 Face 30327 16607 4804 4809 Face 30328 16606 16607 4809 Face 30329 4804 2201 2455 Face 30330 4809 4804 2455 Face 30331 2201 213 1313 Face 30332 2455 2201 1313 Face 30333 213 3668 2507 Face 30334 1313 213 2507 Face 30335 3668 2920 656 Face 30336 2507 3668 656 Face 30337 4096 4709 656 Face 30338 2920 4096 656 Face 30339 6925 8 4709 Face 30340 4096 6925 4709 Face 30341 2927 2928 8 Face 30342 6925 2927 8 Face 30343 1226 10589 10950 Face 30344 14117 7399 7503 Face 30345 13868 13884 13867 Face 30346 4341 1548 1529 Face 30347 15333 15470 15469 Face 30348 63 14123 1430 Face 30349 15936 15362 16565 Face 30350 15021 12793 25273 Face 30351 15812 1242 15661 Face 30352 14126 13935 1132 Face 30353 15670 15812 15661 Face 30354 13868 13867 13853 Face 30355 15600 14435 14399 Face 30356 14811 16436 14810 Face 30357 350 5006 4726 Face 30358 15535 15534 15963 Face 30359 6647 1435 6648 Face 30360 14285 15396 14556 Face 30361 3814 2844 2757 Face 30362 14756 4212 14757 Face 30363 1504 4108 4107 Face 30364 15168 14541 14659 Face 30365 1378 16366 15182 Face 30366 13926 13972 13925 Face 30367 5903 15639 5514 Face 30368 12377 5526 11305 Face 30369 16585 14211 73 Face 30370 15185 1795 14938 Face 30371 15123 15256 15525 Face 30372 14137 14239 14136 Face 30373 15091 14960 14177 Face 30374 14195 14801 15046 Face 30375 14936 1462 2937 Face 30376 14207 14499 14496 Face 30377 1578 14960 15091 Face 30378 2937 1578 15091 Face 30379 15525 14195 15046 Face 30380 13953 14834 15046 Face 30381 14124 14225 1805 Face 30382 582 1695 3705 Face 30383 14346 14464 14345 Face 30384 14403 14004 14387 Face 30385 2780 2330 5200 Face 30386 5877 2504 6004 Face 30387 13959 15330 14163 Face 30388 14826 14951 14950 Face 30389 3115 14261 4328 Face 30390 16085 13991 3837 Face 30391 24221 3172 22816 Face 30392 14261 3115 16052 Face 30393 13947 16369 15753 Face 30394 14382 13875 15753 Face 30395 16369 14920 15753 Face 30396 14920 20646 14382 Face 30397 13875 14382 3452 Face 30398 14926 80 14678 Face 30399 16591 16052 14514 Face 30400 15224 14176 3451 Face 30401 14619 15224 5589 Face 30402 15339 11449 11846 Face 30403 76 24 16362 Face 30404 3448 14563 6277 Face 30405 15632 15776 15775 Face 30406 14438 15324 15662 Face 30407 6648 50 1124 Face 30408 13986 15610 15249 Face 30409 15253 1155 1156 Face 30410 34680 13657 34363 Face 30411 20046 20047 20128 Face 30412 2302 14794 14298 Face 30413 29416 29417 29547 Face 30414 1097 15593 14203 Face 30415 14870 14869 15895 Face 30416 15134 15268 15267 Face 30417 15133 15134 15267 Face 30418 15268 15404 15403 Face 30419 15267 15268 15403 Face 30420 15404 15543 15542 Face 30421 15403 15404 15542 Face 30422 15543 15685 15684 Face 30423 15542 15543 15684 Face 30424 15685 15828 15827 Face 30425 15684 15685 15827 Face 30426 15828 15979 15978 Face 30427 15827 15828 15978 Face 30428 15979 16131 16130 Face 30429 15978 15979 16130 Face 30430 16131 16288 16287 Face 30431 16130 16131 16287 Face 30432 16288 16449 16448 Face 30433 16287 16288 16448 Face 30434 16449 16608 16607 Face 30435 16448 16449 16607 Face 30436 16608 4803 4804 Face 30437 16607 16608 4804 Face 30438 4803 2074 2201 Face 30439 4804 4803 2201 Face 30440 2074 1537 213 Face 30441 2201 2074 213 Face 30442 1537 1650 3668 Face 30443 213 1537 3668 Face 30444 1650 5758 2920 Face 30445 3668 1650 2920 Face 30446 4224 4096 2920 Face 30447 5758 4224 2920 Face 30448 56 6925 4096 Face 30449 4224 56 4096 Face 30450 1457 2927 6925 Face 30451 56 1457 6925 Face 30452 12639 11846 12655 Face 30453 1457 1230 2927 Face 30454 14218 14219 14328 Face 30455 19961 22233 19960 Face 30456 16522 5018 15960 Face 30457 15322 5403 14172 Face 30458 15960 15961 15967 Face 30459 15961 16424 15967 Face 30460 16565 14126 1132 Face 30461 16424 15387 14981 Face 30462 15243 13223 13222 Face 30463 1909 15223 4488 Face 30464 16436 15637 15636 Face 30465 34370 34291 34693 Face 30466 15813 14754 16118 Face 30467 16435 16436 15636 Face 30468 13831 14285 14556 Face 30469 1652 15534 15535 Face 30470 15467 13831 14556 Face 30471 14397 16373 16124 Face 30472 16107 1232 13820 Face 30473 14677 15467 14556 Face 30474 13440 1551 12813 Face 30475 16407 13844 16050 Face 30476 14099 13301 15499 Face 30477 14031 14117 14030 Face 30478 15611 15679 1232 Face 30479 2417 14060 13952 Face 30480 15741 15889 15321 Face 30481 13987 7187 14991 Face 30482 14015 14804 15463 Face 30483 14239 14238 14136 Face 30484 14801 13953 15046 Face 30485 15896 14015 15463 Face 30486 14015 15896 14834 Face 30487 13953 14015 14834 Face 30488 15465 15608 15463 Face 30489 14804 15465 15463 Face 30490 14583 14704 14582 Face 30491 14237 14347 14236 Face 30492 14559 13961 15819 Face 30493 14866 14929 14740 Face 30494 14173 14174 14380 Face 30495 13877 1241 3841 Face 30496 14950 15083 15082 Face 30497 14702 14703 14825 Face 30498 14334 14619 5589 Face 30499 1653 3374 13980 Face 30500 1351 14926 1465 Face 30501 80 14514 14678 Face 30502 16370 14382 20559 Face 30503 3452 16370 3845 Face 30504 16746 16686 16747 Face 30505 3845 655 14089 Face 30506 17272 17271 17181 Face 30507 14926 14678 1465 Face 30508 18177 18275 18274 Face 30509 5589 15224 3451 Face 30510 80 16591 14514 Face 30511 15216 15352 15351 Face 30512 14176 1653 14213 Face 30513 23222 25743 26907 Face 30514 13992 15114 63 Face 30515 17977 18070 20278 Face 30516 14134 14133 14044 Face 30517 11942 5342 1264 Face 30518 14701 14702 14824 Face 30519 34402 34549 34365 Face 30520 21440 21535 21439 Face 30521 27720 27849 27719 Face 30522 15442 1494 16354 Face 30523 2289 671 551 Face 30524 14918 5080 5207 Face 30525 7914 9098 9846 Face 30526 6644 9324 1230 Face 30527 15135 15269 15268 Face 30528 15134 15135 15268 Face 30529 15269 15405 15404 Face 30530 15268 15269 15404 Face 30531 15405 15544 15543 Face 30532 15404 15405 15543 Face 30533 15544 15686 15685 Face 30534 15543 15544 15685 Face 30535 15686 15829 15828 Face 30536 15685 15686 15828 Face 30537 15829 15980 15979 Face 30538 15828 15829 15979 Face 30539 15980 16132 16131 Face 30540 15979 15980 16131 Face 30541 16132 16289 16288 Face 30542 16131 16132 16288 Face 30543 16289 16450 16449 Face 30544 16288 16289 16449 Face 30545 16450 16609 16608 Face 30546 16449 16450 16608 Face 30547 16609 4802 4803 Face 30548 16608 16609 4803 Face 30549 4802 2583 2074 Face 30550 4803 4802 2074 Face 30551 2583 2769 1537 Face 30552 2074 2583 1537 Face 30553 2769 5886 1650 Face 30554 1537 2769 1650 Face 30555 5886 5007 5758 Face 30556 1650 5886 5758 Face 30557 4350 4224 5758 Face 30558 5007 4350 5758 Face 30559 81 56 4224 Face 30560 4350 81 4224 Face 30561 2926 1457 56 Face 30562 81 2926 56 Face 30563 174 1230 1457 Face 30564 2926 174 1457 Face 30565 17982 13075 17981 Face 30566 174 6644 1230 Face 30567 259 14769 5347 Face 30568 12373 12372 11377 Face 30569 14011 16126 1227 Face 30570 19580 16995 17088 Face 30571 13877 3841 14333 Face 30572 15616 15759 14877 Face 30573 16246 3061 16049 Face 30574 1909 4488 15364 Face 30575 6821 159 5898 Face 30576 6025 6821 5898 Face 30577 6821 6503 159 Face 30578 6503 2001 159 Face 30579 3968 1652 15535 Face 30580 2030 898 2001 Face 30581 15318 1652 3968 Face 30582 15534 15813 15963 Face 30583 13364 15162 15031 Face 30584 14399 15318 3968 Face 30585 16050 13844 14166 Face 30586 15248 14568 15185 Face 30587 14035 14023 3191 Face 30588 15894 2978 16204 Face 30589 14361 2417 13952 Face 30590 22413 19509 22147 Face 30591 5779 3977 14191 Face 30592 2417 14145 14060 Face 30593 15389 15527 13995 Face 30594 14237 14236 14134 Face 30595 9269 9382 9381 Face 30596 15215 15216 15351 Face 30597 14465 14583 14464 Face 30598 2368 14145 2417 Face 30599 14465 14464 14346 Face 30600 14704 14703 14582 Face 30601 14347 14465 14346 Face 30602 14583 14582 14464 Face 30603 5596 4057 444 Face 30604 14591 1804 14356 Face 30605 15901 14025 1695 Face 30606 14278 15901 1695 Face 30607 15761 580 2045 Face 30608 1692 3955 4858 Face 30609 14213 1653 13980 Face 30610 3374 4994 1347 Face 30611 15815 15673 16196 Face 30612 1351 1465 16196 Face 30613 12796 12706 1678 Face 30614 12264 2930 1014 Face 30615 3330 3331 20918 Face 30616 13929 13930 13975 Face 30617 13976 14053 14052 Face 30618 13975 13976 14052 Face 30619 332 439 15815 Face 30620 15673 235 16196 Face 30621 13893 14359 450 Face 30622 3451 14176 14213 Face 30623 14593 13893 450 Face 30624 14359 15818 1348 Face 30625 34632 24115 26327 Face 30626 14838 15112 14009 Face 30627 4973 13891 15498 Face 30628 14770 14769 9216 Face 30629 6380 5775 3825 Face 30630 14703 14702 14581 Face 30631 5504 1435 6647 Face 30632 27363 27899 26089 Face 30633 13121 13849 13862 Face 30634 3558 5901 1804 Face 30635 34650 13665 34381 Face 30636 14568 16050 1795 Face 30637 134 3326 5904 Face 30638 15620 13573 11302 Face 30639 15136 15270 15269 Face 30640 15135 15136 15269 Face 30641 15270 15406 15405 Face 30642 15269 15270 15405 Face 30643 15406 15545 15544 Face 30644 15405 15406 15544 Face 30645 15545 15687 15686 Face 30646 15544 15545 15686 Face 30647 15687 15830 15829 Face 30648 15686 15687 15829 Face 30649 15830 15981 15980 Face 30650 15829 15830 15980 Face 30651 15981 16133 16132 Face 30652 15980 15981 16132 Face 30653 16133 16290 16289 Face 30654 16132 16133 16289 Face 30655 16290 16451 16450 Face 30656 16289 16290 16450 Face 30657 16451 16610 16609 Face 30658 16450 16451 16609 Face 30659 16610 4669 4802 Face 30660 16609 16610 4802 Face 30661 4669 1950 2583 Face 30662 4802 4669 2583 Face 30663 1950 1043 2769 Face 30664 2583 1950 2769 Face 30665 1043 772 5886 Face 30666 2769 1043 5886 Face 30667 772 5135 5007 Face 30668 5886 772 5007 Face 30669 4479 4350 5007 Face 30670 5135 4479 5007 Face 30671 82 81 4350 Face 30672 4479 82 4350 Face 30673 2272 2926 81 Face 30674 82 2272 81 Face 30675 5892 174 2926 Face 30676 2272 5892 2926 Face 30677 6609 6644 174 Face 30678 5892 6609 174 Face 30679 30 14286 16523 Face 30680 6609 14281 6644 Face 30681 27230 27231 27340 Face 30682 15447 15588 12950 Face 30683 34356 34768 34347 Face 30684 21868 21771 11862 Face 30685 266 701 267 Face 30686 23436 24663 24662 Face 30687 267 6025 266 Face 30688 6025 5898 266 Face 30689 11773 34661 34824 Face 30690 1314 3038 3205 Face 30691 14555 14734 14675 Face 30692 3048 14878 5002 Face 30693 14555 14675 14194 Face 30694 14557 14555 14194 Face 30695 13902 13926 13901 Face 30696 14734 16523 14675 Face 30697 4938 16596 5070 Face 30698 19828 19827 19744 Face 30699 14250 14264 14156 Face 30700 4938 5070 16586 Face 30701 15352 15492 15491 Face 30702 476 475 1922 Face 30703 14083 5779 14191 Face 30704 14145 14156 14060 Face 30705 3574 16214 5256 Face 30706 15755 15905 15904 Face 30707 7935 10831 9445 Face 30708 14878 9102 5002 Face 30709 11942 12 5342 Face 30710 4186 16377 16540 Face 30711 13647 11679 13555 Face 30712 15134 15133 9783 Face 30713 14135 14134 14045 Face 30714 16533 15190 14563 Face 30715 2032 4935 15050 Face 30716 14046 14135 14045 Face 30717 13968 14045 13967 Face 30718 14022 14021 1912 Face 30719 1656 4057 6 Face 30720 6149 2035 6022 Face 30721 13980 3374 1347 Face 30722 5774 1688 1798 Face 30723 235 1351 16196 Face 30724 4994 13893 14593 Face 30725 2930 673 1014 Face 30726 439 15673 15815 Face 30727 14053 14142 14141 Face 30728 246 3175 1497 Face 30729 11460 1798 11538 Face 30730 3633 16364 16198 Face 30731 1262 16361 15052 Face 30732 15052 16361 332 Face 30733 17453 19841 18581 Face 30734 16361 439 332 Face 30735 15818 16054 13938 Face 30736 450 14359 1348 Face 30737 14156 5779 14083 Face 30738 15127 15126 15389 Face 30739 15783 14174 14173 Face 30740 14241 14242 14351 Face 30741 26190 34608 34456 Face 30742 13957 14031 14030 Face 30743 3589 11002 14506 Face 30744 15746 14162 13833 Face 30745 5256 16214 16376 Face 30746 14878 15005 9102 Face 30747 9102 15005 15136 Face 30748 14281 9213 6644 Face 30749 15005 15137 15136 Face 30750 13650 15915 16068 Face 30751 15137 15271 15270 Face 30752 15136 15137 15270 Face 30753 15271 15407 15406 Face 30754 15270 15271 15406 Face 30755 15407 15546 15545 Face 30756 15406 15407 15545 Face 30757 15546 15688 15687 Face 30758 15545 15546 15687 Face 30759 15688 15831 15830 Face 30760 15687 15688 15830 Face 30761 15831 15982 15981 Face 30762 15830 15831 15981 Face 30763 15982 16134 16133 Face 30764 15981 15982 16133 Face 30765 16134 16291 16290 Face 30766 16133 16134 16290 Face 30767 16291 16452 16451 Face 30768 16290 16291 16451 Face 30769 16452 16611 16610 Face 30770 16451 16452 16610 Face 30771 16611 4670 4669 Face 30772 16610 16611 4669 Face 30773 4670 1831 1950 Face 30774 4669 4670 1950 Face 30775 1831 1042 1043 Face 30776 1950 1831 1043 Face 30777 1042 1429 772 Face 30778 1043 1042 772 Face 30779 1429 5262 5135 Face 30780 772 1429 5135 Face 30781 4059 4479 5135 Face 30782 5262 4059 5135 Face 30783 6841 82 4479 Face 30784 4059 6841 4479 Face 30785 173 2272 82 Face 30786 6841 173 82 Face 30787 1458 5892 2272 Face 30788 173 1458 2272 Face 30789 6645 6609 5892 Face 30790 1458 6645 5892 Face 30791 14283 14281 6609 Face 30792 6645 14283 6609 Face 30793 34338 34766 34370 Face 30794 23020 6398 16958 Face 30795 4481 14275 14806 Face 30796 580 1133 1692 Face 30797 13854 13853 13840 Face 30798 17981 13075 20365 Face 30799 17249 17250 17339 Face 30800 14333 3841 1690 Face 30801 7831 9292 9619 Face 30802 19553 20369 20368 Face 30803 16277 16122 15537 Face 30804 15392 15530 15537 Face 30805 15392 14869 14870 Face 30806 931 15392 15537 Face 30807 14869 528 15895 Face 30808 15530 15392 14870 Face 30809 5463 3073 5464 Face 30810 15925 15926 16079 Face 30811 2584 4938 16586 Face 30812 5070 16107 15958 Face 30813 3811 5494 1922 Face 30814 14554 14919 15249 Face 30815 14060 14156 14083 Face 30816 14940 14985 15320 Face 30817 12755 15230 15365 Face 30818 23391 24938 24012 Face 30819 1247 17816 1139 Face 30820 4472 14479 12104 Face 30821 14351 14469 14468 Face 30822 19404 19484 16987 Face 30823 14241 14351 14350 Face 30824 14240 14241 14350 Face 30825 9643 34385 13118 Face 30826 16540 281 4186 Face 30827 13969 13968 13922 Face 30828 28638 28637 28502 Face 30829 238 343 3064 Face 30830 13923 13969 13922 Face 30831 14403 14387 14670 Face 30832 2290 6149 6022 Face 30833 2032 15969 4935 Face 30834 26125 27451 27444 Face 30835 1347 4994 14593 Face 30836 19256 30121 19257 Face 30837 15386 14014 14096 Face 30838 14096 14014 14159 Face 30839 5401 5400 3175 Face 30840 133 6396 334 Face 30841 5401 3070 3069 Face 30842 23192 23191 29604 Face 30843 14083 14191 14014 Face 30844 13927 13926 13902 Face 30845 3 782 14838 Face 30846 14838 782 15112 Face 30847 16533 14563 3448 Face 30848 1348 15818 13938 Face 30849 15324 14552 13981 Face 30850 15126 15527 15389 Face 30851 17986 20291 20292 Face 30852 6018 6145 5377 Face 30853 20989 21091 988 Face 30854 15883 15451 556 Face 30855 302 6018 5377 Face 30856 16835 32662 21542 Face 30857 14757 14879 14878 Face 30858 14756 14757 14878 Face 30859 14879 15006 15005 Face 30860 14878 14879 15005 Face 30861 15006 15138 15137 Face 30862 15005 15006 15137 Face 30863 15138 15272 15271 Face 30864 15137 15138 15271 Face 30865 15272 15408 15407 Face 30866 15271 15272 15407 Face 30867 15408 15547 15546 Face 30868 15407 15408 15546 Face 30869 15547 15689 15688 Face 30870 15546 15547 15688 Face 30871 15689 15832 15831 Face 30872 15688 15689 15831 Face 30873 15832 15983 15982 Face 30874 15831 15832 15982 Face 30875 15983 16135 16134 Face 30876 15982 15983 16134 Face 30877 16135 16292 16291 Face 30878 16134 16135 16291 Face 30879 16292 16453 16452 Face 30880 16291 16292 16452 Face 30881 16453 16612 16611 Face 30882 16452 16453 16611 Face 30883 16612 4671 4670 Face 30884 16611 16612 4670 Face 30885 4671 2582 1831 Face 30886 4670 4671 1831 Face 30887 2582 1041 1042 Face 30888 1831 2582 1042 Face 30889 1041 3037 1429 Face 30890 1042 1041 1429 Face 30891 3037 5393 5262 Face 30892 1429 3037 5262 Face 30893 4188 4059 5262 Face 30894 5393 4188 5262 Face 30895 6741 6841 4059 Face 30896 4188 6741 4059 Face 30897 6267 173 6841 Face 30898 6741 6267 6841 Face 30899 3446 1458 173 Face 30900 6267 3446 173 Face 30901 6737 6645 1458 Face 30902 3446 6737 1458 Face 30903 34717 34583 34298 Face 30904 15739 5625 7137 Face 30905 19490 19489 19409 Face 30906 3574 16061 16214 Face 30907 14275 5528 14806 Face 30908 15774 15775 15926 Face 30909 16538 13843 16524 Face 30910 5136 14319 13810 Face 30911 15617 14398 14319 Face 30912 13843 5136 13810 Face 30913 15617 16122 16277 Face 30914 5136 15617 14319 Face 30915 16122 931 15537 Face 30916 14398 15617 16277 Face 30917 14462 14580 14461 Face 30918 2418 14379 14264 Face 30919 22447 22543 11813 Face 30920 5903 14068 13819 Face 30921 17544 20312 172 Face 30922 441 2289 551 Face 30923 16586 5070 15958 Face 30924 1435 4084 6648 Face 30925 14717 14716 666 Face 30926 1214 14717 666 Face 30927 13969 14046 13968 Face 30928 15320 15319 14205 Face 30929 14997 380 1785 Face 30930 14350 14349 14239 Face 30931 4937 15679 15611 Face 30932 12321 14371 22585 Face 30933 19410 19490 19409 Face 30934 3248 3962 4232 Face 30935 2928 9977 9978 Face 30936 15204 15340 15339 Face 30937 5116 14103 446 Face 30938 15203 15204 15339 Face 30939 15190 13812 14563 Face 30940 9389 8937 2363 Face 30941 13899 13923 13898 Face 30942 74 3060 16119 Face 30943 14474 451 14263 Face 30944 13981 14670 16533 Face 30945 15095 15111 4883 Face 30946 475 2276 474 Face 30947 14862 16583 446 Face 30948 3704 14862 446 Face 30949 3576 14862 3704 Face 30950 1240 3576 3704 Face 30951 15340 15480 15479 Face 30952 15339 15340 15479 Face 30953 15480 15622 15621 Face 30954 15479 15480 15621 Face 30955 15622 15766 15765 Face 30956 14095 14013 15782 Face 30957 15621 15622 15765 Face 30958 15355 3576 1240 Face 30959 15782 15355 1240 Face 30960 4084 2158 1656 Face 30961 14718 16384 14717 Face 30962 14474 14263 14155 Face 30963 13981 16533 6396 Face 30964 5852 7146 5980 Face 30965 11354 11516 19437 Face 30966 5766 12027 12028 Face 30967 5761 5644 472 Face 30968 14637 14758 14757 Face 30969 5638 10460 8340 Face 30970 14758 14880 14879 Face 30971 14757 14758 14879 Face 30972 14880 15007 15006 Face 30973 14879 14880 15006 Face 30974 15007 15139 15138 Face 30975 15006 15007 15138 Face 30976 15139 15273 15272 Face 30977 15138 15139 15272 Face 30978 15273 15409 15408 Face 30979 15272 15273 15408 Face 30980 15409 15548 15547 Face 30981 15408 15409 15547 Face 30982 15548 15690 15689 Face 30983 15547 15548 15689 Face 30984 15690 15833 15832 Face 30985 15689 15690 15832 Face 30986 15833 15984 15983 Face 30987 15832 15833 15983 Face 30988 15984 16136 16135 Face 30989 15983 15984 16135 Face 30990 16136 16293 16292 Face 30991 16135 16136 16292 Face 30992 16293 16454 16453 Face 30993 16292 16293 16453 Face 30994 16454 16613 16612 Face 30995 16453 16454 16612 Face 30996 16613 4672 4671 Face 30997 16612 16613 4671 Face 30998 4672 2453 2582 Face 30999 4671 4672 2582 Face 31000 2453 1040 1041 Face 31001 2582 2453 1041 Face 31002 1040 311 3037 Face 31003 1041 1040 3037 Face 31004 311 5519 5393 Face 31005 3037 311 5393 Face 31006 4609 4188 5393 Face 31007 5519 4609 5393 Face 31008 4206 6741 4188 Face 31009 4609 4206 4188 Face 31010 3063 6267 6741 Face 31011 4206 3063 6741 Face 31012 201 3446 6267 Face 31013 3063 201 6267 Face 31014 6646 6737 3446 Face 31015 201 6646 3446 Face 31016 8776 449 15739 Face 31017 6646 14289 6737 Face 31018 15265 15401 18 Face 31019 4982 5115 2372 Face 31020 4231 14402 4357 Face 31021 15927 16081 16080 Face 31022 14835 16538 14833 Face 31023 13843 13810 16524 Face 31024 14949 15082 15081 Face 31025 14948 14949 15081 Face 31026 14949 14948 14823 Face 31027 14824 14949 14823 Face 31028 14824 14823 14700 Face 31029 14701 14824 14700 Face 31030 14701 14700 14579 Face 31031 14580 14701 14579 Face 31032 34772 34272 34746 Face 31033 4752 14714 14559 Face 31034 4619 1155 15253 Face 31035 13961 3708 15819 Face 31036 286 4841 16603 Face 31037 5252 3030 2159 Face 31038 16375 16372 14716 Face 31039 15181 15319 14985 Face 31040 14046 14045 13968 Face 31041 14716 14715 5899 Face 31042 6396 3448 3449 Face 31043 334 6396 3449 Face 31044 16054 1689 14095 Face 31045 3708 15057 1131 Face 31046 15766 15918 15917 Face 31047 15765 15766 15917 Face 31048 16072 16071 15917 Face 31049 15918 16072 15917 Face 31050 666 14716 5899 Face 31051 1653 14496 3374 Face 31052 74 334 3060 Face 31053 15969 16119 4935 Face 31054 3336 14474 14357 Face 31055 13928 13974 13927 Face 31056 11845 9167 10689 Face 31057 15592 7697 2150 Face 31058 14176 14177 1653 Face 31059 14496 1266 3374 Face 31060 16229 16228 16071 Face 31061 16072 16229 16071 Face 31062 16393 16392 16228 Face 31063 16229 16393 16228 Face 31064 16556 16555 16392 Face 31065 16393 16556 16392 Face 31066 6617 14075 16555 Face 31067 16556 6617 16555 Face 31068 15224 15091 14176 Face 31069 14177 14496 1653 Face 31070 286 2328 6534 Face 31071 19571 19570 19489 Face 31072 3707 3336 14475 Face 31073 14475 3336 14357 Face 31074 15193 14326 14674 Face 31075 27105 27737 34348 Face 31076 2791 14456 14455 Face 31077 21107 20032 18229 Face 31078 14638 14759 14758 Face 31079 14637 14638 14758 Face 31080 14759 14881 14880 Face 31081 14758 14759 14880 Face 31082 14881 15008 15007 Face 31083 14880 14881 15007 Face 31084 15008 15140 15139 Face 31085 15007 15008 15139 Face 31086 15140 15274 15273 Face 31087 15139 15140 15273 Face 31088 15274 15410 15409 Face 31089 15273 15274 15409 Face 31090 15410 15549 15548 Face 31091 15409 15410 15548 Face 31092 15549 15691 15690 Face 31093 15548 15549 15690 Face 31094 15691 15834 15833 Face 31095 15690 15691 15833 Face 31096 15834 15985 15984 Face 31097 15833 15834 15984 Face 31098 15985 16137 16136 Face 31099 15984 15985 16136 Face 31100 16137 16294 16293 Face 31101 16136 16137 16293 Face 31102 16294 16455 16454 Face 31103 16293 16294 16454 Face 31104 16455 16614 16613 Face 31105 16454 16455 16613 Face 31106 16614 4673 4672 Face 31107 16613 16614 4672 Face 31108 4673 2454 2453 Face 31109 4672 4673 2453 Face 31110 2454 1039 1040 Face 31111 2453 2454 1040 Face 31112 1039 1899 311 Face 31113 1040 1039 311 Face 31114 1899 5647 5519 Face 31115 311 1899 5519 Face 31116 5645 4609 5519 Face 31117 5647 5645 5519 Face 31118 3936 4206 4609 Face 31119 5645 3936 4609 Face 31120 6032 3063 4206 Face 31121 3936 6032 4206 Face 31122 421 201 3063 Face 31123 6032 421 3063 Face 31124 6584 6646 201 Face 31125 421 6584 201 Face 31126 14290 14289 6646 Face 31127 6584 14290 6646 Face 31128 34629 21745 21648 Face 31129 15198 15229 14492 Face 31130 15926 15927 16080 Face 31131 16081 16238 16237 Face 31132 13823 14835 13822 Face 31133 16538 16524 14833 Face 31134 15082 15214 15213 Face 31135 15081 15082 15213 Face 31136 14622 14740 15886 Face 31137 13945 13940 15327 Face 31138 14379 13940 13945 Face 31139 4619 14837 5877 Face 31140 1804 5901 15901 Face 31141 14264 14379 13945 Face 31142 34621 34375 34382 Face 31143 13940 14441 15327 Face 31144 47 2284 1435 Face 31145 3553 2501 3251 Face 31146 28554 28020 26334 Face 31147 16124 16125 15612 Face 31148 14986 15181 14985 Face 31149 15181 15220 14108 Face 31150 3841 14475 4481 Face 31151 2158 666 5899 Face 31152 6396 16533 3448 Face 31153 334 3449 3060 Face 31154 15452 1689 16054 Face 31155 14013 15355 15782 Face 31156 2845 2588 14075 Face 31157 6617 2845 14075 Face 31158 3978 3979 2588 Face 31159 2845 3978 2588 Face 31160 1266 13955 4994 Face 31161 3978 1472 812 Face 31162 3374 1266 4994 Face 31163 13955 14503 13893 Face 31164 15969 74 16119 Face 31165 16527 15050 14223 Face 31166 16064 3707 1241 Face 31167 1241 3707 14475 Face 31168 14726 18413 14054 Face 31169 1157 5115 15120 Face 31170 14619 2937 15224 Face 31171 15091 14177 14176 Face 31172 3979 3978 812 Face 31173 1472 4098 3970 Face 31174 812 1472 3970 Face 31175 10465 7187 10622 Face 31176 3970 4098 1355 Face 31177 783 900 2918 Face 31178 25545 26189 34789 Face 31179 13991 14936 14619 Face 31180 2937 15091 15224 Face 31181 16427 2766 15453 Face 31182 13987 2766 16427 Face 31183 14174 15395 14498 Face 31184 15395 14497 14498 Face 31185 16049 14004 14403 Face 31186 15055 3114 14837 Face 31187 9871 14289 9986 Face 31188 15319 15181 14108 Face 31189 105 22659 22562 Face 31190 31368 31367 31264 Face 31191 14760 14882 14881 Face 31192 24856 24944 23559 Face 31193 14882 15009 15008 Face 31194 14881 14882 15008 Face 31195 15009 15141 15140 Face 31196 15008 15009 15140 Face 31197 15141 15275 15274 Face 31198 15140 15141 15274 Face 31199 15275 15411 15410 Face 31200 15274 15275 15410 Face 31201 15411 15550 15549 Face 31202 15410 15411 15549 Face 31203 15550 15692 15691 Face 31204 15549 15550 15691 Face 31205 15692 15835 15834 Face 31206 15691 15692 15834 Face 31207 15835 15986 15985 Face 31208 15834 15835 15985 Face 31209 15986 16138 16137 Face 31210 15985 15986 16137 Face 31211 16138 16295 16294 Face 31212 16137 16138 16294 Face 31213 16295 16456 16455 Face 31214 16294 16295 16455 Face 31215 16456 16615 16614 Face 31216 16455 16456 16614 Face 31217 16615 4677 4673 Face 31218 16614 16615 4673 Face 31219 4677 2326 2454 Face 31220 4673 4677 2454 Face 31221 2326 2431 1039 Face 31222 2454 2326 1039 Face 31223 2431 1213 1899 Face 31224 1039 2431 1899 Face 31225 1213 5646 5647 Face 31226 1899 1213 5647 Face 31227 5245 5645 5647 Face 31228 5646 5245 5647 Face 31229 5643 3936 5645 Face 31230 5245 5643 5645 Face 31231 6031 6032 3936 Face 31232 5643 6031 3936 Face 31233 2793 421 6032 Face 31234 6031 2793 6032 Face 31235 6585 6584 421 Face 31236 2793 6585 421 Face 31237 14291 14290 6584 Face 31238 6585 14291 6584 Face 31239 20364 17979 17980 Face 31240 7849 7189 10826 Face 31241 16080 16081 16237 Face 31242 5586 5457 5458 Face 31243 555 13823 445 Face 31244 14835 14833 13822 Face 31245 14386 13806 22 Face 31246 14709 14710 18880 Face 31247 15085 15086 15217 Face 31248 14708 14709 14831 Face 31249 14581 14702 14580 Face 31250 19490 19571 19489 Face 31251 14463 14581 14462 Face 31252 14702 14701 14580 Face 31253 580 1692 2045 Face 31254 2045 1692 4858 Face 31255 22439 27899 27363 Face 31256 15359 16566 14178 Face 31257 14699 14822 14821 Face 31258 14698 14699 14821 Face 31259 14108 15220 4937 Face 31260 16437 15678 15679 Face 31261 14357 14155 14275 Face 31262 475 474 1803 Face 31263 15111 4882 4883 Face 31264 1013 4221 4344 Face 31265 15818 15452 16054 Face 31266 1689 14013 14095 Face 31267 341 15452 15818 Face 31268 14359 341 15818 Face 31269 4994 13955 13893 Face 31270 14503 341 14359 Face 31271 13901 13925 13900 Face 31272 13893 14503 14359 Face 31273 1124 50 5761 Face 31274 13867 13883 13866 Face 31275 13901 13900 13882 Face 31276 4105 85 84 Face 31277 14498 14497 15910 Face 31278 14497 16064 15910 Face 31279 2766 15400 15453 Face 31280 15453 15400 13832 Face 31281 15760 14936 13991 Face 31282 16085 15760 13991 Face 31283 34361 33671 34356 Face 31284 8024 9643 13118 Face 31285 17478 783 18901 Face 31286 900 783 6273 Face 31287 34460 34778 34526 Face 31288 783 17478 6392 Face 31289 15760 16085 15330 Face 31290 13913 15760 15330 Face 31291 14175 2936 14813 Face 31292 15400 13914 13832 Face 31293 50 6 5761 Face 31294 15360 15395 14174 Face 31295 15383 7071 7070 Face 31296 14155 14263 13933 Face 31297 20031 20113 20112 Face 31298 32092 32093 7239 Face 31299 14665 3765 16028 Face 31300 9278 9756 3896 Face 31301 34630 34349 34299 Face 31302 14760 14759 1096 Face 31303 14883 15010 15009 Face 31304 14882 14883 15009 Face 31305 15010 15142 15141 Face 31306 15009 15010 15141 Face 31307 15142 15276 15275 Face 31308 15141 15142 15275 Face 31309 15276 15412 15411 Face 31310 15275 15276 15411 Face 31311 15412 15551 15550 Face 31312 15411 15412 15550 Face 31313 15551 15693 15692 Face 31314 15550 15551 15692 Face 31315 15693 15836 15835 Face 31316 15692 15693 15835 Face 31317 15836 15987 15986 Face 31318 15835 15836 15986 Face 31319 15987 16139 16138 Face 31320 15986 15987 16138 Face 31321 16139 16296 16295 Face 31322 16138 16139 16295 Face 31323 16296 16457 16456 Face 31324 16295 16296 16456 Face 31325 16457 16616 16615 Face 31326 16456 16457 16615 Face 31327 16616 4674 4677 Face 31328 16615 16616 4677 Face 31329 4674 1721 2326 Face 31330 4677 4674 2326 Face 31331 1721 2303 2431 Face 31332 2326 1721 2431 Face 31333 2303 1900 1213 Face 31334 2431 2303 1213 Face 31335 1900 2385 5646 Face 31336 1213 1900 5646 Face 31337 5120 5245 5646 Face 31338 2385 5120 5646 Face 31339 5516 5643 5245 Face 31340 5120 5516 5245 Face 31341 3197 6031 5643 Face 31342 5516 3197 5643 Face 31343 543 2793 6031 Face 31344 3197 543 6031 Face 31345 14558 6585 2793 Face 31346 543 14558 2793 Face 31347 14292 14291 6585 Face 31348 14558 14292 6585 Face 31349 20219 19513 18339 Face 31350 2372 1157 2373 Face 31351 14760 24763 14882 Face 31352 34512 34453 34546 Face 31353 2919 555 1568 Face 31354 13823 13822 445 Face 31355 5524 5525 2506 Face 31356 262 166 5525 Face 31357 14718 14717 1214 Face 31358 15086 15218 15217 Face 31359 18137 19680 19678 Face 31360 19654 19653 19570 Face 31361 14795 13916 14796 Face 31362 15349 15350 15489 Face 31363 14874 16366 1378 Face 31364 34376 34336 34613 Face 31365 34433 34378 34505 Face 31366 15490 15632 15631 Face 31367 473 472 1693 Face 31368 13820 14919 14554 Face 31369 4937 16437 15679 Face 31370 7281 1339 9096 Face 31371 2368 14180 14145 Face 31372 1922 1803 3811 Face 31373 14280 2546 15361 Face 31374 2546 15933 15519 Face 31375 32333 32445 32444 Face 31376 14614 15393 14737 Face 31377 14093 15393 14614 Face 31378 3335 14594 14917 Face 31379 13925 13924 13900 Face 31380 13883 13901 13882 Face 31381 1157 1156 2373 Face 31382 13867 13866 13852 Face 31383 34414 29668 16663 Face 31384 15489 15490 15631 Face 31385 6644 9213 6724 Face 31386 15477 4619 15253 Face 31387 15910 16064 1241 Face 31388 15745 637 16583 Face 31389 13914 2936 14175 Face 31390 15783 15360 14174 Face 31391 14936 2937 14619 Face 31392 13832 13914 14175 Face 31393 14793 15047 5078 Face 31394 4328 13913 15465 Face 31395 29679 29810 29678 Face 31396 18588 18589 18693 Face 31397 19115 18950 17315 Face 31398 18492 18591 18590 Face 31399 18301 18397 18396 Face 31400 3115 4328 14804 Face 31401 13913 15330 15465 Face 31402 14813 14939 14453 Face 31403 14939 3062 14453 Face 31404 18240 1456 18241 Face 31405 3502 15360 15783 Face 31406 22586 12321 22585 Face 31407 13219 13311 15659 Face 31408 20274 20273 20191 Face 31409 20030 20031 20112 Face 31410 7706 11864 13564 Face 31411 7706 97 11864 Face 31412 16509 7706 13564 Face 31413 97 12549 11864 Face 31414 14884 15011 15010 Face 31415 14882 24763 14883 Face 31416 15011 15143 15142 Face 31417 15010 15011 15142 Face 31418 15143 15277 15276 Face 31419 15142 15143 15276 Face 31420 15277 15413 15412 Face 31421 15276 15277 15412 Face 31422 15413 15552 15551 Face 31423 15412 15413 15551 Face 31424 15552 15694 15693 Face 31425 15551 15552 15693 Face 31426 15694 15837 15836 Face 31427 15693 15694 15836 Face 31428 15837 15988 15987 Face 31429 15836 15837 15987 Face 31430 15988 16140 16139 Face 31431 15987 15988 16139 Face 31432 16140 16297 16296 Face 31433 16139 16140 16296 Face 31434 16297 16458 16457 Face 31435 16296 16297 16457 Face 31436 16458 16617 16616 Face 31437 16457 16458 16616 Face 31438 16617 4676 4674 Face 31439 16616 16617 4674 Face 31440 4676 1830 1721 Face 31441 4674 4676 1721 Face 31442 1830 2177 2303 Face 31443 1721 1830 2303 Face 31444 2177 11 1900 Face 31445 2303 2177 1900 Face 31446 11 308 2385 Face 31447 1900 11 2385 Face 31448 6381 5120 2385 Face 31449 308 6381 2385 Face 31450 5390 5516 5120 Face 31451 6381 5390 5120 Face 31452 6030 3197 5516 Face 31453 5390 6030 5516 Face 31454 2331 543 3197 Face 31455 6030 2331 3197 Face 31456 4226 14558 543 Face 31457 2331 4226 543 Face 31458 14294 14292 14558 Face 31459 4226 14294 14558 Face 31460 11538 11541 13283 Face 31461 7399 14218 14328 Face 31462 3703 788 6516 Face 31463 788 14029 2165 Face 31464 2414 2919 2285 Face 31465 555 445 1568 Face 31466 1154 1539 2506 Face 31467 1539 5524 2506 Face 31468 5504 47 1435 Face 31469 15910 1241 13877 Face 31470 19541 15308 15309 Face 31471 19425 18137 19678 Face 31472 13846 14795 13834 Face 31473 14114 1805 14296 Face 31474 380 90 1785 Face 31475 1693 24953 24952 Face 31476 12806 34571 3170 Face 31477 20112 20113 20191 Face 31478 23023 34674 34473 Face 31479 34695 28818 34348 Face 31480 15679 15678 1919 Face 31481 14498 15910 15759 Face 31482 15035 20530 8935 Face 31483 17341 17340 17251 Face 31484 19621 2384 3436 Face 31485 15185 14568 1795 Face 31486 1336 6647 2276 Face 31487 1338 212 14011 Face 31488 14670 15190 16533 Face 31489 14917 14093 14614 Face 31490 15391 133 334 Face 31491 20361 20360 20277 Face 31492 15363 15475 14390 Face 31493 14138 14137 14048 Face 31494 19571 19654 19570 Face 31495 14109 4938 2584 Face 31496 1427 1426 6483 Face 31497 5216 15454 5215 Face 31498 1427 8237 8757 Face 31499 13871 24752 24751 Face 31500 474 473 1358 Face 31501 22395 22492 22394 Face 31502 2936 14939 14813 Face 31503 14453 3062 15259 Face 31504 3115 14804 14015 Face 31505 16052 3115 14015 Face 31506 18567 17241 17320 Face 31507 20473 655 16370 Face 31508 17358 17579 17457 Face 31509 14052 14053 14141 Face 31510 16347 12763 24902 Face 31511 16052 14015 13953 Face 31512 14514 16052 13953 Face 31513 3113 14271 16567 Face 31514 3062 2366 15259 Face 31515 4945 14100 17735 Face 31516 13891 3502 15783 Face 31517 6795 11152 32502 Face 31518 13878 3168 11104 Face 31519 20274 20357 20273 Face 31520 20192 20274 20191 Face 31521 33057 20444 20445 Face 31522 20357 20444 20356 Face 31523 16509 13564 16177 Face 31524 16023 16509 16177 Face 31525 14885 15012 15011 Face 31526 14884 15010 14883 Face 31527 15012 15144 15143 Face 31528 15011 15012 15143 Face 31529 15144 15278 15277 Face 31530 15143 15144 15277 Face 31531 15278 15414 15413 Face 31532 15277 15278 15413 Face 31533 15414 15553 15552 Face 31534 15413 15414 15552 Face 31535 15553 15695 15694 Face 31536 15552 15553 15694 Face 31537 15695 15838 15837 Face 31538 15694 15695 15837 Face 31539 15838 15989 15988 Face 31540 15837 15838 15988 Face 31541 15989 16141 16140 Face 31542 15988 15989 16140 Face 31543 16141 16298 16297 Face 31544 16140 16141 16297 Face 31545 16298 16459 16458 Face 31546 16297 16298 16458 Face 31547 16459 16618 16617 Face 31548 16458 16459 16617 Face 31549 16618 4675 4676 Face 31550 16617 16618 4676 Face 31551 4675 1949 1830 Face 31552 4676 4675 1830 Face 31553 1949 2049 2177 Face 31554 1830 1949 2177 Face 31555 2049 5506 11 Face 31556 2177 2049 11 Face 31557 5506 6020 308 Face 31558 11 5506 308 Face 31559 4975 6381 308 Face 31560 6020 4975 308 Face 31561 5259 5390 6381 Face 31562 4975 5259 6381 Face 31563 3325 6030 5390 Face 31564 5259 3325 5390 Face 31565 2794 2331 6030 Face 31566 3325 2794 6030 Face 31567 14711 4226 2331 Face 31568 2794 14711 2331 Face 31569 14295 14294 4226 Face 31570 14711 14295 4226 Face 31571 34350 34382 34421 Face 31572 14295 15681 14294 Face 31573 15093 15327 1454 Face 31574 274 5247 15970 Face 31575 2919 1568 2285 Face 31576 5116 5240 147 Face 31577 28143 29582 23121 Face 31578 1264 1154 2506 Face 31579 14854 16564 14853 Face 31580 11157 14066 11373 Face 31581 16853 16776 16854 Face 31582 15732 19541 15309 Face 31583 15973 14736 13834 Face 31584 13916 14296 14796 Face 31585 6653 6748 6747 Face 31586 990 6740 1336 Face 31587 15672 15519 5636 Face 31588 15519 15060 5636 Face 31589 15476 15912 15672 Face 31590 5636 15060 13891 Face 31591 15115 13889 15114 Face 31592 15222 13889 14858 Face 31593 13889 15361 14858 Face 31594 14947 15080 15079 Face 31595 3205 3204 238 Face 31596 15060 3502 13891 Face 31597 281 125 4186 Face 31598 5198 13992 63 Face 31599 29209 29210 28435 Face 31600 31635 31634 31521 Face 31601 2924 15363 14390 Face 31602 15193 14028 14326 Face 31603 14026 14713 2931 Face 31604 15475 14186 15248 Face 31605 15540 15682 10601 Face 31606 13951 1785 90 Face 31607 28019 26416 26013 Face 31608 13665 34650 13664 Face 31609 16206 5093 5215 Face 31610 15472 14081 15454 Face 31611 15133 2274 9783 Face 31612 19737 19736 19653 Face 31613 2366 13979 13960 Face 31614 25270 25271 24779 Face 31615 4328 15465 14804 Face 31616 15259 2366 13960 Face 31617 14142 14244 14243 Face 31618 14678 14514 14801 Face 31619 673 4344 6515 Face 31620 3188 12801 22060 Face 31621 246 5401 3175 Face 31622 1014 673 6515 Face 31623 1465 14678 14195 Face 31624 14514 13953 14801 Face 31625 16243 3113 16567 Face 31626 1357 2586 14271 Face 31627 21867 12435 21843 Face 31628 22298 22299 22394 Face 31629 22203 22299 22298 Face 31630 260 9550 15681 Face 31631 22202 22203 22298 Face 31632 22299 22395 22394 Face 31633 26104 26125 27444 Face 31634 27451 29149 29144 Face 31635 16023 16177 14974 Face 31636 14847 16023 14974 Face 31637 14886 15013 15012 Face 31638 14885 15011 14884 Face 31639 15013 15145 15144 Face 31640 15012 15013 15144 Face 31641 15145 15279 15278 Face 31642 15144 15145 15278 Face 31643 15279 15415 15414 Face 31644 15278 15279 15414 Face 31645 15415 15554 15553 Face 31646 15414 15415 15553 Face 31647 15554 15696 15695 Face 31648 15553 15554 15695 Face 31649 15696 15839 15838 Face 31650 15695 15696 15838 Face 31651 15839 15990 15989 Face 31652 15838 15839 15989 Face 31653 15990 16142 16141 Face 31654 15989 15990 16141 Face 31655 16142 16299 16298 Face 31656 16141 16142 16298 Face 31657 16299 16460 16459 Face 31658 16298 16299 16459 Face 31659 16460 16619 16618 Face 31660 16459 16460 16618 Face 31661 16619 4544 4675 Face 31662 16618 16619 4675 Face 31663 4544 2073 1949 Face 31664 4675 4544 1949 Face 31665 2073 1925 2049 Face 31666 1949 2073 2049 Face 31667 1925 2387 5506 Face 31668 2049 1925 5506 Face 31669 2387 1334 6020 Face 31670 5506 2387 6020 Face 31671 1334 2770 4975 Face 31672 6020 1334 4975 Face 31673 5132 5259 4975 Face 31674 2770 5132 4975 Face 31675 6029 3325 5259 Face 31676 5132 6029 5259 Face 31677 283 2794 3325 Face 31678 6029 283 3325 Face 31679 1428 14711 2794 Face 31680 283 1428 2794 Face 31681 14297 14295 14711 Face 31682 1428 14297 14711 Face 31683 15738 15681 14295 Face 31684 14297 15738 14295 Face 31685 7518 10589 7817 Face 31686 15738 260 15681 Face 31687 9436 260 8775 Face 31688 7192 9069 10479 Face 31689 14565 7295 7576 Face 31690 16570 11377 15328 Face 31691 19654 19737 19653 Face 31692 15364 16041 14004 Face 31693 21108 9850 21081 Face 31694 20369 21108 20368 Face 31695 14000 14066 15973 Face 31696 14795 14796 13834 Face 31697 14859 5464 1575 Face 31698 34463 34304 33196 Face 31699 34403 34488 34447 Face 31700 14349 14348 14238 Face 31701 15629 15630 15773 Face 31702 19820 19819 19736 Face 31703 14861 24524 24384 Face 31704 16922 18739 3111 Face 31705 14277 14122 3065 Face 31706 10460 5638 3165 Face 31707 1580 4611 1226 Face 31708 14122 1580 1226 Face 31709 25672 30532 33015 Face 31710 13886 13887 13904 Face 31711 127 750 3825 Face 31712 13554 15073 15204 Face 31713 14296 1805 14189 Face 31714 1345 127 3825 Face 31715 29739 24277 23848 Face 31716 14248 1463 5515 Face 31717 13664 34650 12909 Face 31718 5073 5214 1923 Face 31719 16063 16205 15472 Face 31720 1798 16405 11538 Face 31721 16205 1923 14081 Face 31722 15472 16205 14081 Face 31723 14340 14341 14458 Face 31724 19737 19820 19736 Face 31725 7830 15682 3931 Face 31726 8535 4457 7805 Face 31727 16243 16567 13960 Face 31728 13979 16243 13960 Face 31729 16196 1465 14195 Face 31730 15256 16196 14195 Face 31731 14348 14466 14347 Face 31732 1608 1497 4026 Face 31733 16525 13908 1417 Face 31734 14705 14828 14827 Face 31735 12709 11275 12707 Face 31736 14170 14838 3024 Face 31737 2670 332 15965 Face 31738 15815 16196 15256 Face 31739 14113 2784 5330 Face 31740 3113 1357 14271 Face 31741 28002 34341 34669 Face 31742 14124 9221 6838 Face 31743 29020 29151 29019 Face 31744 556 15451 75 Face 31745 22108 22203 22202 Face 31746 22107 22108 22202 Face 31747 29281 29412 29280 Face 31748 29543 29542 29411 Face 31749 21549 29751 18876 Face 31750 29811 2299 29810 Face 31751 14887 15014 15013 Face 31752 14886 14885 19273 Face 31753 15014 15146 15145 Face 31754 15013 15014 15145 Face 31755 15146 15280 15279 Face 31756 15145 15146 15279 Face 31757 15280 15416 15415 Face 31758 15279 15280 15415 Face 31759 15416 15555 15554 Face 31760 15415 15416 15554 Face 31761 15555 15697 15696 Face 31762 15554 15555 15696 Face 31763 15697 15840 15839 Face 31764 15696 15697 15839 Face 31765 15840 15991 15990 Face 31766 15839 15840 15990 Face 31767 15991 16143 16142 Face 31768 15990 15991 16142 Face 31769 16143 16300 16299 Face 31770 16142 16143 16299 Face 31771 16300 16461 16460 Face 31772 16299 16300 16460 Face 31773 16461 16620 16619 Face 31774 16460 16461 16619 Face 31775 16620 4545 4544 Face 31776 16619 16620 4544 Face 31777 4545 2200 2073 Face 31778 4544 4545 2073 Face 31779 2200 3591 1925 Face 31780 2073 2200 1925 Face 31781 3591 3688 2387 Face 31782 1925 3591 2387 Face 31783 3688 4974 1334 Face 31784 2387 3688 1334 Face 31785 4974 1335 2770 Face 31786 1334 4974 2770 Face 31787 5004 5132 2770 Face 31788 1335 5004 2770 Face 31789 3450 6029 5132 Face 31790 5004 3450 5132 Face 31791 3572 283 6029 Face 31792 3450 3572 6029 Face 31793 1120 1428 283 Face 31794 3572 1120 283 Face 31795 14299 14297 1428 Face 31796 1120 14299 1428 Face 31797 15744 15738 14297 Face 31798 14299 15744 14297 Face 31799 261 260 15738 Face 31800 15744 261 15738 Face 31801 11437 973 11222 Face 31802 261 138 260 Face 31803 6740 6647 1336 Face 31804 1472 84 4098 Face 31805 13310 15802 9731 Face 31806 16564 13943 16548 Face 31807 2286 2031 5252 Face 31808 24934 24800 2160 Face 31809 15468 15328 14000 Face 31810 14736 13846 13834 Face 31811 6610 14867 15397 Face 31812 11437 12904 16386 Face 31813 19896 19895 19819 Face 31814 15583 15725 1321 Face 31815 32152 32151 32047 Face 31816 34507 34661 34496 Face 31817 15052 332 2670 Face 31818 14320 15052 2670 Face 31819 9323 4723 1924 Face 31820 332 15815 15965 Face 31821 21194 17104 32620 Face 31822 30789 30895 30788 Face 31823 16368 14940 14874 Face 31824 19820 19896 19819 Face 31825 19974 19973 19895 Face 31826 78 3034 25 Face 31827 11154 13451 13736 Face 31828 22913 13131 23666 Face 31829 23244 26063 23610 Face 31830 12372 12281 11373 Face 31831 15329 6946 16063 Face 31832 15466 15329 16063 Face 31833 6946 16367 16205 Face 31834 16063 6946 16205 Face 31835 16367 14931 1923 Face 31836 16205 16367 1923 Face 31837 8944 8945 16248 Face 31838 1923 14931 5073 Face 31839 6255 6129 6130 Face 31840 26819 11992 12077 Face 31841 15474 15336 2586 Face 31842 1357 15474 2586 Face 31843 14678 14801 14195 Face 31844 14277 3065 15336 Face 31845 31720 31832 31831 Face 31846 10981 14612 7070 Face 31847 13554 11225 13553 Face 31848 10831 10832 15199 Face 31849 19683 1097 1091 Face 31850 15073 15205 15204 Face 31851 15965 15815 15256 Face 31852 19896 19974 19895 Face 31853 1999 13908 16525 Face 31854 16362 2981 3434 Face 31855 2145 10273 5253 Face 31856 34693 34465 34522 Face 31857 34128 32624 16842 Face 31858 11731 11651 12707 Face 31859 21911 21912 22009 Face 31860 3049 16498 16423 Face 31861 22010 22108 22107 Face 31862 22009 22010 22107 Face 31863 34539 34276 34298 Face 31864 20973 21066 33693 Face 31865 14888 15015 15014 Face 31866 14887 14888 15014 Face 31867 15015 15147 15146 Face 31868 15014 15015 15146 Face 31869 15147 15281 15280 Face 31870 15146 15147 15280 Face 31871 15281 15417 15416 Face 31872 15280 15281 15416 Face 31873 15417 15556 15555 Face 31874 15416 15417 15555 Face 31875 15556 15698 15697 Face 31876 15555 15556 15697 Face 31877 15698 15841 15840 Face 31878 15697 15698 15840 Face 31879 15841 15992 15991 Face 31880 15840 15841 15991 Face 31881 15992 16144 16143 Face 31882 15991 15992 16143 Face 31883 16144 16301 16300 Face 31884 16143 16144 16300 Face 31885 16301 16462 16461 Face 31886 16300 16301 16461 Face 31887 16462 16621 16620 Face 31888 16461 16462 16620 Face 31889 16621 4543 4545 Face 31890 16620 16621 4545 Face 31891 4543 2325 2200 Face 31892 4545 4543 2200 Face 31893 2325 3590 3591 Face 31894 2200 2325 3591 Face 31895 3590 4745 3688 Face 31896 3591 3590 3688 Face 31897 4745 41 4974 Face 31898 3688 4745 4974 Face 31899 33 1335 4974 Face 31900 41 33 4974 Face 31901 4872 5004 1335 Face 31902 33 4872 1335 Face 31903 3579 3450 5004 Face 31904 4872 3579 5004 Face 31905 381 3572 3450 Face 31906 3579 381 3450 Face 31907 15244 1120 3572 Face 31908 381 15244 3572 Face 31909 14304 14299 1120 Face 31910 15244 14304 1120 Face 31911 15748 15744 14299 Face 31912 14304 15748 14299 Face 31913 15748 165 261 Face 31914 15744 15748 261 Face 31915 165 449 138 Face 31916 261 165 138 Face 31917 7778 8775 6873 Face 31918 13314 13221 13222 Face 31919 1214 666 2158 Face 31920 9844 9843 15953 Face 31921 13848 13847 2031 Face 31922 2286 13848 2031 Face 31923 5326 16570 15468 Face 31924 14066 14736 15973 Face 31925 10825 8661 4063 Face 31926 24227 22859 20011 Face 31927 14219 14218 14118 Face 31928 14119 14219 14118 Face 31929 2366 14085 13979 Face 31930 24135 23358 23911 Face 31931 13862 11104 13359 Face 31932 15935 14612 10981 Face 31933 22597 14501 20298 Face 31934 15205 15341 15340 Face 31935 14241 14240 14138 Face 31936 15204 15205 15340 Face 31937 14014 14074 14159 Face 31938 14139 14241 14138 Face 31939 11842 13554 15204 Face 31940 15127 15389 16211 Face 31941 1232 1919 2802 Face 31942 13972 14049 13971 Face 31943 13878 11104 13862 Face 31944 14987 5474 5602 Face 31945 16210 15331 6946 Face 31946 15329 16210 6946 Face 31947 15331 2033 16367 Face 31948 6946 15331 16367 Face 31949 2033 13999 14931 Face 31950 16367 2033 14931 Face 31951 18027 1387 18119 Face 31952 34514 28549 34626 Face 31953 5089 5073 5213 Face 31954 5474 14987 16210 Face 31955 16649 3899 16648 Face 31956 11228 11157 12193 Face 31957 15474 14277 15336 Face 31958 3764 3760 14787 Face 31959 14672 15386 14096 Face 31960 14290 14291 7812 Face 31961 15341 15481 15480 Face 31962 15340 15341 15480 Face 31963 15481 15623 15622 Face 31964 15480 15481 15622 Face 31965 5385 218 8568 Face 31966 782 15059 15112 Face 31967 16594 1003 178 Face 31968 21535 21628 21534 Face 31969 14788 3764 14787 Face 31970 34645 34475 34783 Face 31971 11275 11207 12707 Face 31972 11651 12709 12707 Face 31973 27444 27451 29144 Face 31974 30760 30759 30660 Face 31975 21816 21912 21911 Face 31976 21815 21816 21911 Face 31977 23443 25736 25737 Face 31978 20889 7019 7017 Face 31979 14889 15016 15015 Face 31980 14888 14889 15015 Face 31981 15016 15148 15147 Face 31982 15015 15016 15147 Face 31983 15148 15282 15281 Face 31984 15147 15148 15281 Face 31985 15282 15418 15417 Face 31986 15281 15282 15417 Face 31987 15418 15557 15556 Face 31988 15417 15418 15556 Face 31989 15557 15699 15698 Face 31990 15556 15557 15698 Face 31991 15699 15842 15841 Face 31992 15698 15699 15841 Face 31993 15842 15993 15992 Face 31994 15841 15842 15992 Face 31995 15993 16145 16144 Face 31996 15992 15993 16144 Face 31997 16145 16302 16301 Face 31998 16144 16145 16301 Face 31999 16302 16463 16462 Face 32000 16301 16302 16462 Face 32001 16463 16622 16621 Face 32002 16462 16463 16621 Face 32003 16622 4542 4543 Face 32004 16621 16622 4543 Face 32005 4542 2072 2325 Face 32006 4543 4542 2325 Face 32007 2072 3719 3590 Face 32008 2325 2072 3590 Face 32009 3719 4612 4745 Face 32010 3590 3719 4745 Face 32011 4612 1115 41 Face 32012 4745 4612 41 Face 32013 3309 33 41 Face 32014 1115 3309 41 Face 32015 4477 4872 33 Face 32016 3309 4477 33 Face 32017 6521 3579 4872 Face 32018 4477 6521 4872 Face 32019 16200 381 3579 Face 32020 6521 16200 3579 Face 32021 16200 14210 15244 Face 32022 381 16200 15244 Face 32023 14210 14305 14304 Face 32024 15244 14210 14304 Face 32025 14305 15749 15748 Face 32026 14304 14305 15748 Face 32027 15749 53 165 Face 32028 15748 15749 165 Face 32029 53 2415 449 Face 32030 165 53 449 Face 32031 2415 4723 15739 Face 32032 449 2415 15739 Face 32033 15750 5213 14980 Face 32034 9411 4190 8661 Face 32035 14860 14854 13847 Face 32036 13848 14860 13847 Face 32037 15638 15496 5326 Face 32038 15328 14066 14000 Face 32039 29961 29960 29902 Face 32040 10825 4063 2627 Face 32041 15471 15470 15334 Face 32042 16941 16942 17033 Face 32043 4727 4859 14626 Face 32044 1919 255 2924 Face 32045 1635 1525 8170 Face 32046 442 2290 2799 Face 32047 15623 15767 15766 Face 32048 15622 15623 15766 Face 32049 15919 15918 15766 Face 32050 14680 5601 5600 Face 32051 15767 15919 15766 Face 32052 14205 14108 16596 Face 32053 16366 15320 14109 Face 32054 3812 3011 3942 Face 32055 14048 14137 14047 Face 32056 14987 16534 16210 Face 32057 15430 15429 24990 Face 32058 12664 12755 12663 Face 32059 16210 16534 15331 Face 32060 34747 34697 34368 Face 32061 34724 34673 34363 Face 32062 15594 13998 13999 Face 32063 2033 15594 13999 Face 32064 13998 14147 14980 Face 32065 13999 13998 14980 Face 32066 14147 557 15750 Face 32067 14980 14147 15750 Face 32068 15165 19600 15593 Face 32069 4061 3680 18616 Face 32070 15970 16270 16269 Face 32071 6891 11148 11216 Face 32072 14742 3704 14103 Face 32073 14473 14012 14170 Face 32074 16073 16072 15918 Face 32075 15919 16073 15918 Face 32076 16230 16229 16072 Face 32077 16073 16230 16072 Face 32078 15855 15854 15711 Face 32079 14094 1240 14742 Face 32080 16372 14985 14940 Face 32081 751 127 178 Face 32082 3764 12367 3760 Face 32083 518 16525 14800 Face 32084 19768 19767 11731 Face 32085 16497 19298 19768 Face 32086 34404 25856 34321 Face 32087 19573 19656 19572 Face 32088 21912 22010 22009 Face 32089 21718 21719 21815 Face 32090 19779 19859 19858 Face 32091 20974 21068 21067 Face 32092 14890 15017 15016 Face 32093 14889 14890 15016 Face 32094 15017 15149 15148 Face 32095 15016 15017 15148 Face 32096 15149 15283 15282 Face 32097 15148 15149 15282 Face 32098 15283 15419 15418 Face 32099 15282 15283 15418 Face 32100 15419 15558 15557 Face 32101 15418 15419 15557 Face 32102 15558 15700 15699 Face 32103 15557 15558 15699 Face 32104 15700 15843 15842 Face 32105 15699 15700 15842 Face 32106 15843 15994 15993 Face 32107 15842 15843 15993 Face 32108 15994 16146 16145 Face 32109 15993 15994 16145 Face 32110 16146 16303 16302 Face 32111 16145 16146 16302 Face 32112 16303 16464 16463 Face 32113 16302 16303 16463 Face 32114 16464 16623 16622 Face 32115 16463 16464 16622 Face 32116 16623 4541 4542 Face 32117 16622 16623 4542 Face 32118 4541 2199 2072 Face 32119 4542 4541 2072 Face 32120 2199 3718 3719 Face 32121 2072 2199 3719 Face 32122 3718 4877 4612 Face 32123 3719 3718 4612 Face 32124 4877 4734 1115 Face 32125 4612 4877 1115 Face 32126 1125 3309 1115 Face 32127 4734 1125 1115 Face 32128 4607 4477 3309 Face 32129 1125 4607 3309 Face 32130 4607 6028 6521 Face 32131 4477 4607 6521 Face 32132 6028 641 16200 Face 32133 6521 6028 16200 Face 32134 641 13982 14210 Face 32135 16200 641 14210 Face 32136 13982 14306 14305 Face 32137 14210 13982 14305 Face 32138 14306 15751 15749 Face 32139 14305 14306 15749 Face 32140 15751 52 53 Face 32141 15749 15751 53 Face 32142 52 2672 2415 Face 32143 53 52 2415 Face 32144 1924 4723 2415 Face 32145 2672 1924 2415 Face 32146 4944 4945 17735 Face 32147 2004 2509 2642 Face 32148 16571 16564 14854 Face 32149 20448 19200 33331 Face 32150 15496 16570 5326 Face 32151 49 340 15638 Face 32152 2203 16595 14099 Face 32153 15527 15526 2720 Face 32154 15196 15197 15333 Face 32155 5725 5600 5601 Face 32156 24935 24934 2160 Face 32157 15934 14079 15395 Face 32158 15782 1240 14094 Face 32159 14511 15782 14094 Face 32160 16394 16393 16229 Face 32161 16230 16394 16229 Face 32162 16557 16556 16393 Face 32163 16394 16557 16393 Face 32164 14181 14095 14511 Face 32165 14095 15782 14511 Face 32166 4498 4630 4629 Face 32167 10081 14292 14294 Face 32168 14479 12618 12530 Face 32169 14987 14680 16534 Face 32170 34304 34463 34810 Face 32171 5085 5086 557 Face 32172 15058 1579 15594 Face 32173 13771 34552 34612 Face 32174 1579 669 13998 Face 32175 15594 1579 13998 Face 32176 669 928 14147 Face 32177 13998 669 14147 Face 32178 928 5003 557 Face 32179 14147 928 557 Face 32180 14054 18413 14143 Face 32181 10765 6140 10640 Face 32182 1310 4234 1538 Face 32183 255 15363 2924 Face 32184 16054 14095 14181 Face 32185 5204 7158 1746 Face 32186 6520 6617 16556 Face 32187 16557 6520 16556 Face 32188 6520 2979 2845 Face 32189 6617 6520 2845 Face 32190 3704 446 14103 Face 32191 3057 16547 15539 Face 32192 19409 19332 16896 Face 32193 5775 15643 1345 Face 32194 9532 15821 14225 Face 32195 19298 19767 19768 Face 32196 34430 34546 34725 Face 32197 5852 8002 7146 Face 32198 17416 10690 18729 Face 32199 19717 17338 19718 Face 32200 21623 21624 21718 Face 32201 21719 21816 21815 Face 32202 20917 18581 19841 Face 32203 19980 19979 19901 Face 32204 21028 14891 14890 Face 32205 14890 14889 14766 Face 32206 15018 15150 15149 Face 32207 15017 15018 15149 Face 32208 15150 15284 15283 Face 32209 15149 15150 15283 Face 32210 15284 15420 15419 Face 32211 15283 15284 15419 Face 32212 15420 15559 15558 Face 32213 15419 15420 15558 Face 32214 15559 15701 15700 Face 32215 15558 15559 15700 Face 32216 15701 15844 15843 Face 32217 15700 15701 15843 Face 32218 15844 15995 15994 Face 32219 15843 15844 15994 Face 32220 15995 16147 16146 Face 32221 15994 15995 16146 Face 32222 16147 16304 16303 Face 32223 16146 16147 16303 Face 32224 16304 16465 16464 Face 32225 16303 16304 16464 Face 32226 16465 16624 16623 Face 32227 16464 16465 16623 Face 32228 16624 4540 4541 Face 32229 16623 16624 4541 Face 32230 4540 1948 2199 Face 32231 4541 4540 2199 Face 32232 1948 3717 3718 Face 32233 2199 1948 3718 Face 32234 3717 4482 4877 Face 32235 3718 3717 4877 Face 32236 4482 1759 4734 Face 32237 4877 4482 4734 Face 32238 1759 2514 1125 Face 32239 4734 1759 1125 Face 32240 2514 4740 4607 Face 32241 1125 2514 4607 Face 32242 4740 3578 6028 Face 32243 4607 4740 6028 Face 32244 3578 16207 641 Face 32245 6028 3578 641 Face 32246 16207 14106 13982 Face 32247 641 16207 13982 Face 32248 14106 14307 14306 Face 32249 13982 14106 14306 Face 32250 14307 15754 15751 Face 32251 14306 14307 15751 Face 32252 15754 54 52 Face 32253 15751 15754 52 Face 32254 3575 2672 52 Face 32255 54 3575 52 Face 32256 14872 1924 2672 Face 32257 3575 14872 2672 Face 32258 12983 12798 15451 Face 32259 1345 15643 16408 Face 32260 14860 16571 14854 Face 32261 14189 15821 15383 Face 32262 16570 15328 15468 Face 32263 16571 13946 13943 Face 32264 14940 15320 16366 Face 32265 16107 13820 14996 Face 32266 23107 19062 20809 Face 32267 1124 5761 473 Face 32268 15360 15934 15395 Face 32269 2806 19098 29144 Face 32270 1240 3704 14742 Face 32271 278 3198 189 Face 32272 2979 4106 3978 Face 32273 16547 5255 15539 Face 32274 2845 2979 3978 Face 32275 4106 4105 84 Face 32276 3978 4106 1472 Face 32277 13575 34696 11385 Face 32278 29986 30047 29985 Face 32279 13919 11851 11932 Face 32280 15642 16241 16404 Face 32281 5210 5084 5003 Face 32282 16241 15955 15058 Face 32283 16404 16241 15058 Face 32284 15955 14681 1579 Face 32285 15058 15955 1579 Face 32286 14681 13997 669 Face 32287 1579 14681 669 Face 32288 13997 14930 928 Face 32289 669 13997 928 Face 32290 34822 34594 34280 Face 32291 928 14930 5003 Face 32292 2005 14626 14634 Face 32293 20051 20050 19973 Face 32294 1423 6539 17640 Face 32295 15353 15354 15493 Face 32296 14493 16547 3057 Face 32297 13938 16054 14181 Face 32298 15682 15683 5385 Face 32299 6648 4084 50 Face 32300 6145 2756 15183 Face 32301 34492 34570 34768 Face 32302 14058 14072 15202 Face 32303 13648 12822 13745 Face 32304 14072 14058 1234 Face 32305 15219 7828 2559 Face 32306 789 14072 1234 Face 32307 14072 15219 15202 Face 32308 9323 1924 9211 Face 32309 16061 16215 16214 Face 32310 16040 22464 21674 Face 32311 19718 19719 19800 Face 32312 16039 16040 21674 Face 32313 6268 199 21674 Face 32314 20739 21561 20923 Face 32315 21013 20739 20923 Face 32316 11348 22737 25041 Face 32317 12529 12617 10075 Face 32318 15019 15151 15150 Face 32319 15018 15019 15150 Face 32320 15151 15285 15284 Face 32321 15150 15151 15284 Face 32322 15285 15421 15420 Face 32323 15284 15285 15420 Face 32324 15421 15560 15559 Face 32325 15420 15421 15559 Face 32326 15560 15702 15701 Face 32327 15559 15560 15701 Face 32328 15702 15845 15844 Face 32329 15701 15702 15844 Face 32330 15845 15996 15995 Face 32331 15844 15845 15995 Face 32332 15996 16148 16147 Face 32333 15995 15996 16147 Face 32334 16148 16305 16304 Face 32335 16147 16148 16304 Face 32336 16305 16466 16465 Face 32337 16304 16305 16465 Face 32338 16466 16625 16624 Face 32339 16465 16466 16624 Face 32340 16625 4539 4540 Face 32341 16624 16625 4540 Face 32342 4539 1829 1948 Face 32343 4540 4539 1948 Face 32344 1829 3849 3717 Face 32345 1948 1829 3717 Face 32346 3849 4878 4482 Face 32347 3717 3849 4482 Face 32348 1116 1759 4482 Face 32349 4878 1116 4482 Face 32350 1116 5518 2514 Face 32351 1759 1116 2514 Face 32352 5518 1453 4740 Face 32353 2514 5518 4740 Face 32354 1453 6154 3578 Face 32355 4740 1453 3578 Face 32356 6154 1342 16207 Face 32357 3578 6154 16207 Face 32358 1342 14450 14106 Face 32359 16207 1342 14106 Face 32360 14315 14307 14106 Face 32361 14450 14315 14106 Face 32362 15762 15754 14307 Face 32363 14315 15762 14307 Face 32364 1134 54 15754 Face 32365 15762 1134 15754 Face 32366 6394 3575 54 Face 32367 1134 6394 54 Face 32368 14999 14872 3575 Face 32369 6394 14999 3575 Face 32370 7067 10981 7070 Face 32371 14999 1920 14872 Face 32372 28002 34834 27608 Face 32373 27099 23354 13842 Face 32374 16564 16571 13943 Face 32375 13946 2302 15599 Face 32376 8742 14894 14875 Face 32377 9320 3436 14659 Face 32378 444 897 4060 Face 32379 13124 14490 7848 Face 32380 15294 15432 14371 Face 32381 19955 21558 21571 Face 32382 13827 13828 13840 Face 32383 15494 1354 233 Face 32384 902 3964 2288 Face 32385 789 1234 3835 Face 32386 14023 15184 6018 Face 32387 3708 14614 15057 Face 32388 15787 12569 12660 Face 32389 3447 9312 329 Face 32390 15642 8542 16241 Face 32391 3852 16086 8542 Face 32392 16086 15061 15955 Face 32393 16241 16086 15955 Face 32394 15061 14510 14681 Face 32395 15955 15061 14681 Face 32396 14510 15067 13997 Face 32397 14681 14510 13997 Face 32398 15067 583 14930 Face 32399 13997 15067 14930 Face 32400 2005 15666 1577 Face 32401 15666 2005 14634 Face 32402 2113 5751 5878 Face 32403 16238 16081 16082 Face 32404 19974 20051 19973 Face 32405 16425 2923 15258 Face 32406 15202 15219 2559 Face 32407 14442 14493 3057 Face 32408 14141 14142 14243 Face 32409 14244 14354 14353 Face 32410 9436 1799 260 Face 32411 14243 14244 14353 Face 32412 19978 19979 20055 Face 32413 13855 13856 13869 Face 32414 1608 246 1497 Face 32415 20360 20359 20276 Face 32416 902 2288 552 Face 32417 2673 902 552 Face 32418 3504 6511 1320 Face 32419 15826 15976 218 Face 32420 22587 15065 22586 Face 32421 15065 15293 15294 Face 32422 22464 6268 21674 Face 32423 972 34 12989 Face 32424 14098 16266 20811 Face 32425 9288 21739 21738 Face 32426 20030 20112 20111 Face 32427 12989 12897 10075 Face 32428 15020 15152 15151 Face 32429 12705 15018 14891 Face 32430 15152 15286 15285 Face 32431 15151 15152 15285 Face 32432 15286 15422 15421 Face 32433 15285 15286 15421 Face 32434 15422 15561 15560 Face 32435 15421 15422 15560 Face 32436 15561 15703 15702 Face 32437 15560 15561 15702 Face 32438 15703 15846 15845 Face 32439 15702 15703 15845 Face 32440 15846 15997 15996 Face 32441 15845 15846 15996 Face 32442 15997 16149 16148 Face 32443 15996 15997 16148 Face 32444 16149 16306 16305 Face 32445 16148 16149 16305 Face 32446 16306 16467 16466 Face 32447 16305 16306 16466 Face 32448 16626 16625 16466 Face 32449 16467 16626 16466 Face 32450 4538 4539 16625 Face 32451 16626 4538 16625 Face 32452 4538 1720 1829 Face 32453 4539 4538 1829 Face 32454 1720 3848 3849 Face 32455 1829 1720 3849 Face 32456 3848 5137 4878 Face 32457 3849 3848 4878 Face 32458 5137 2494 1116 Face 32459 4878 5137 1116 Face 32460 2494 5392 5518 Face 32461 1116 2494 5518 Face 32462 5392 1569 1453 Face 32463 5518 5392 1453 Face 32464 1569 6153 6154 Face 32465 1453 1569 6154 Face 32466 2795 1342 6154 Face 32467 6153 2795 6154 Face 32468 14590 14450 1342 Face 32469 2795 14590 1342 Face 32470 14317 14315 14450 Face 32471 14590 14317 14450 Face 32472 15779 15762 14315 Face 32473 14317 15779 14315 Face 32474 1918 1134 15762 Face 32475 15779 1918 15762 Face 32476 1682 6394 1134 Face 32477 1918 1682 1134 Face 32478 14199 14999 6394 Face 32479 1682 14199 6394 Face 32480 15317 1920 14999 Face 32481 14199 15317 14999 Face 32482 6385 18424 785 Face 32483 10950 14362 1226 Face 32484 13943 13946 15599 Face 32485 16403 14189 14612 Face 32486 21445 21540 21444 Face 32487 2302 14298 16373 Face 32488 6 4057 5596 Face 32489 14917 14614 3708 Face 32490 21561 21655 20835 Face 32491 51 6 5596 Face 32492 16215 16377 16376 Face 32493 14954 14955 15087 Face 32494 3964 789 3835 Face 32495 16214 16215 16376 Face 32496 14584 14583 14465 Face 32497 366 2673 367 Face 32498 4156 1608 4026 Face 32499 5208 5081 5082 Face 32500 14466 14584 14465 Face 32501 9062 3852 8542 Face 32502 3852 14160 15061 Face 32503 16086 3852 15061 Face 32504 14160 15737 14510 Face 32505 15061 14160 14510 Face 32506 15737 14078 15067 Face 32507 14510 15737 15067 Face 32508 14078 14127 583 Face 32509 15067 14078 583 Face 32510 14127 14267 15473 Face 32511 583 14127 15473 Face 32512 14267 5208 15473 Face 32513 14290 9986 14289 Face 32514 28021 44 23118 Face 32515 5750 5626 2892 Face 32516 7828 14493 14442 Face 32517 2559 7828 14442 Face 32518 5521 366 5522 Face 32519 3964 3835 2288 Face 32520 3431 16444 16603 Face 32521 1642 1530 1548 Face 32522 11092 32502 11152 Face 32523 34810 34550 34798 Face 32524 11991 26819 12076 Face 32525 817 5521 818 Face 32526 14693 13647 13555 Face 32527 16080 16237 16236 Face 32528 15319 14108 14205 Face 32529 14757 4212 4458 Face 32530 10798 215 4844 Face 32531 12321 15065 15294 Face 32532 22299 22300 22395 Face 32533 12988 972 12989 Face 32534 972 16040 16039 Face 32535 16379 16378 16217 Face 32536 22043 21013 21478 Face 32537 68 12989 10075 Face 32538 34 12551 12897 Face 32539 15021 15153 15152 Face 32540 15020 15151 15019 Face 32541 15153 15287 15286 Face 32542 15152 15153 15286 Face 32543 15287 15423 15422 Face 32544 15286 15287 15422 Face 32545 15423 15562 15561 Face 32546 15422 15423 15561 Face 32547 15562 15704 15703 Face 32548 15561 15562 15703 Face 32549 15704 15847 15846 Face 32550 15703 15704 15846 Face 32551 15998 15997 15846 Face 32552 15847 15998 15846 Face 32553 16150 16149 15997 Face 32554 15998 16150 15997 Face 32555 16150 16307 16306 Face 32556 16149 16150 16306 Face 32557 16307 16468 16467 Face 32558 16306 16307 16467 Face 32559 16468 16627 16626 Face 32560 16467 16468 16626 Face 32561 16627 4537 4538 Face 32562 16626 16627 4538 Face 32563 4537 1611 1720 Face 32564 4538 4537 1720 Face 32565 3975 3848 1720 Face 32566 1611 3975 1720 Face 32567 5010 5137 3848 Face 32568 3975 5010 3848 Face 32569 5010 4717 2494 Face 32570 5137 5010 2494 Face 32571 4717 5261 5392 Face 32572 2494 4717 5392 Face 32573 5261 6141 1569 Face 32574 5392 5261 1569 Face 32575 6141 3706 6153 Face 32576 1569 6141 6153 Face 32577 2406 2795 6153 Face 32578 3706 2406 6153 Face 32579 2022 14590 2795 Face 32580 2406 2022 2795 Face 32581 14321 14317 14590 Face 32582 2022 14321 14590 Face 32583 15781 15779 14317 Face 32584 14321 15781 14317 Face 32585 1349 1918 15779 Face 32586 15781 1349 15779 Face 32587 1239 1682 1918 Face 32588 1349 1239 1918 Face 32589 14104 14199 1682 Face 32590 1239 14104 1682 Face 32591 14104 134 15317 Face 32592 14199 14104 15317 Face 32593 4153 4152 16655 Face 32594 14225 14124 6837 Face 32595 14189 15383 14612 Face 32596 1156 6004 2373 Face 32597 15599 2302 16373 Face 32598 14298 4936 16125 Face 32599 16358 14874 14279 Face 32600 14946 14947 15079 Face 32601 473 5761 472 Face 32602 4057 897 444 Face 32603 2930 2798 673 Face 32604 13648 14572 14693 Face 32605 5207 14267 15188 Face 32606 16540 3946 281 Face 32607 2560 817 1263 Face 32608 5521 5522 818 Face 32609 14941 15074 15073 Face 32610 26819 12077 12076 Face 32611 15074 15206 15205 Face 32612 15073 15074 15205 Face 32613 14219 14329 9735 Face 32614 14219 9735 14328 Face 32615 4489 14859 15737 Face 32616 14160 4489 15737 Face 32617 14859 1575 14078 Face 32618 15737 14859 14078 Face 32619 1575 15597 14127 Face 32620 14078 1575 14127 Face 32621 15597 15188 14267 Face 32622 14127 15597 14267 Face 32623 14918 5207 15188 Face 32624 7960 10858 10981 Face 32625 18066 22030 22031 Face 32626 10950 7037 9445 Face 32627 15756 21205 1009 Face 32628 34342 34330 34519 Face 32629 2846 2560 2980 Face 32630 2673 552 367 Face 32631 15206 15342 15341 Face 32632 15205 15206 15341 Face 32633 15342 15482 15481 Face 32634 15341 15342 15481 Face 32635 2560 1263 2980 Face 32636 15482 15624 15623 Face 32637 20923 21561 20835 Face 32638 366 367 5522 Face 32639 5213 15750 5088 Face 32640 1567 18893 19075 Face 32641 20300 21572 32764 Face 32642 16995 19580 16994 Face 32643 22396 22493 22492 Face 32644 20193 17882 20194 Face 32645 34 972 16039 Face 32646 22395 22396 22492 Face 32647 21463 22043 21478 Face 32648 20256 20174 199 Face 32649 12989 34 12897 Face 32650 21558 21463 21478 Face 32651 15021 20257 12793 Face 32652 16039 16038 12551 Face 32653 15288 15287 15153 Face 32654 26788 34608 26903 Face 32655 15288 15424 15423 Face 32656 15287 15288 15423 Face 32657 15424 15563 15562 Face 32658 15423 15424 15562 Face 32659 15563 15705 15704 Face 32660 15562 15563 15704 Face 32661 15705 15848 15847 Face 32662 15704 15705 15847 Face 32663 15848 15999 15998 Face 32664 15847 15848 15998 Face 32665 15999 16151 16150 Face 32666 15998 15999 16150 Face 32667 16308 16307 16150 Face 32668 16151 16308 16150 Face 32669 16469 16468 16307 Face 32670 16308 16469 16307 Face 32671 16469 16628 16627 Face 32672 16468 16469 16627 Face 32673 16628 4413 4537 Face 32674 16627 16628 4537 Face 32675 1500 1611 4537 Face 32676 4413 1500 4537 Face 32677 3974 3975 1611 Face 32678 1500 3974 1611 Face 32679 3974 5264 5010 Face 32680 3975 3974 5010 Face 32681 5264 4480 4717 Face 32682 5010 5264 4717 Face 32683 4480 5906 5261 Face 32684 4717 4480 5261 Face 32685 107 6141 5261 Face 32686 5906 107 5261 Face 32687 6519 3706 6141 Face 32688 107 6519 6141 Face 32689 2536 2406 3706 Face 32690 6519 2536 3706 Face 32691 14107 2022 2406 Face 32692 2536 14107 2406 Face 32693 14322 14321 2022 Face 32694 14107 14322 2022 Face 32695 15786 15781 14321 Face 32696 14322 15786 14321 Face 32697 1238 1349 15781 Face 32698 15786 1238 15781 Face 32699 14924 1239 1349 Face 32700 1238 14924 1349 Face 32701 14924 1694 14104 Face 32702 1239 14924 14104 Face 32703 1694 4887 134 Face 32704 14104 1694 134 Face 32705 9775 10993 5904 Face 32706 4887 3326 134 Face 32707 7663 7550 1105 Face 32708 13771 34612 10845 Face 32709 16373 14298 16125 Face 32710 11949 1014 5896 Face 32711 2035 14022 1912 Face 32712 14092 14591 14356 Face 32713 21629 21724 21723 Face 32714 15162 1321 10864 Face 32715 3502 2493 15360 Face 32716 2798 1013 673 Face 32717 14099 7847 13301 Face 32718 11011 12818 10211 Face 32719 2846 2980 2500 Face 32720 71 2846 2500 Face 32721 15481 15482 15623 Face 32722 15768 15767 15623 Face 32723 15624 15768 15623 Face 32724 15920 15919 15767 Face 32725 4187 7388 4071 Face 32726 5079 5078 4948 Face 32727 34483 34501 34596 Face 32728 4489 930 14859 Face 32729 11693 34683 34779 Face 32730 773 6007 209 Face 32731 14077 14621 15597 Face 32732 1575 14077 15597 Face 32733 14621 4886 15188 Face 32734 15597 14621 15188 Face 32735 4886 14793 14918 Face 32736 15188 4886 14918 Face 32737 7503 8459 7617 Face 32738 12189 1874 1746 Face 32739 752 14009 15112 Face 32740 26102 27395 27394 Face 32741 71 2500 16549 Face 32742 817 818 1263 Face 32743 15768 15920 15767 Face 32744 16074 16073 15919 Face 32745 15920 16074 15919 Face 32746 16550 16549 16386 Face 32747 16231 16230 16073 Face 32748 9783 2274 8987 Face 32749 16387 16550 16386 Face 32750 28767 28766 28637 Face 32751 29149 2806 29144 Face 32752 28638 28767 28637 Face 32753 29623 29618 19098 Face 32754 20547 21838 21644 Face 32755 13740 24499 24494 Face 32756 22587 22586 22492 Face 32757 22204 22300 22203 Face 32758 6268 20256 199 Face 32759 12320 1008 20174 Face 32760 21013 20923 21478 Face 32761 21463 21558 12092 Face 32762 34 16039 12551 Face 32763 16039 21674 13392 Face 32764 29995 11026 30057 Face 32765 34692 1543 34493 Face 32766 32020 32124 32019 Face 32767 32228 32227 32123 Face 32768 15564 15563 15424 Face 32769 15425 15564 15424 Face 32770 15706 15705 15563 Face 32771 15564 15706 15563 Face 32772 15706 15849 15848 Face 32773 15705 15706 15848 Face 32774 16000 15999 15848 Face 32775 15849 16000 15848 Face 32776 16152 16151 15999 Face 32777 16000 16152 15999 Face 32778 16152 16309 16308 Face 32779 16151 16152 16308 Face 32780 16470 16469 16308 Face 32781 16309 16470 16308 Face 32782 16629 16628 16469 Face 32783 16470 16629 16469 Face 32784 16629 4406 4413 Face 32785 16628 16629 4413 Face 32786 4406 2324 1500 Face 32787 4413 4406 1500 Face 32788 2324 4102 3974 Face 32789 1500 2324 3974 Face 32790 5396 5264 3974 Face 32791 4102 5396 3974 Face 32792 5396 4610 4480 Face 32793 5264 5396 4480 Face 32794 1016 5906 4480 Face 32795 4610 1016 4480 Face 32796 2250 107 5906 Face 32797 1016 2250 5906 Face 32798 6152 6519 107 Face 32799 2250 6152 107 Face 32800 6152 2535 2536 Face 32801 6519 6152 2536 Face 32802 2535 1492 14107 Face 32803 2536 2535 14107 Face 32804 1492 14327 14322 Face 32805 14107 1492 14322 Face 32806 14327 15803 15786 Face 32807 14322 14327 15786 Face 32808 15803 1235 1238 Face 32809 15786 15803 1238 Face 32810 1235 14934 14924 Face 32811 1238 1235 14924 Face 32812 14934 5068 1694 Face 32813 14924 14934 1694 Face 32814 4884 4887 1694 Face 32815 5068 4884 1694 Face 32816 10607 3326 4887 Face 32817 4884 10607 4887 Face 32818 34343 34544 34507 Face 32819 15322 5461 17323 Face 32820 4936 16426 16425 Face 32821 10708 2238 8992 Face 32822 13952 14060 15386 Face 32823 2501 116 3503 Face 32824 15893 15894 16204 Face 32825 4359 1783 15497 Face 32826 4234 39 3377 Face 32827 14118 14218 14117 Face 32828 32880 33146 21732 Face 32829 15454 14081 5215 Face 32830 18411 18506 18410 Face 32831 12904 16224 16387 Face 32832 16074 16231 16073 Face 32833 16395 16394 16230 Face 32834 16231 16395 16230 Face 32835 16558 16557 16394 Face 32836 167 168 13559 Face 32837 773 209 670 Face 32838 34553 10115 34531 Face 32839 5464 3073 14077 Face 32840 14066 11228 14736 Face 32841 14218 7399 14117 Face 32842 3073 15338 14621 Face 32843 14077 3073 14621 Face 32844 15338 14712 4886 Face 32845 14621 15338 4886 Face 32846 14712 15047 14793 Face 32847 4886 14712 14793 Face 32848 34579 34648 34527 Face 32849 18052 15354 1319 Face 32850 3946 3377 3504 Face 32851 114 94 20533 Face 32852 5090 5073 5089 Face 32853 16550 71 16549 Face 32854 16395 16558 16394 Face 32855 16558 157 6520 Face 32856 16557 16558 6520 Face 32857 157 2718 2979 Face 32858 5239 15120 5115 Face 32859 18290 18385 18837 Face 32860 28893 28892 28766 Face 32861 32565 32692 32564 Face 32862 2806 29623 19098 Face 32863 19977 19978 20054 Face 32864 17518 17517 17432 Face 32865 14274 16274 14928 Face 32866 22300 22396 22395 Face 32867 21719 21720 21816 Face 32868 20256 12320 20174 Face 32869 12320 19582 19561 Face 32870 12544 21463 12092 Face 32871 20460 1780 9276 Face 32872 16038 16039 13392 Face 32873 199 1786 13392 Face 32874 22491 22490 22393 Face 32875 22201 22202 22297 Face 32876 32124 32228 32123 Face 32877 11026 29995 11073 Face 32878 15426 15565 15564 Face 32879 15425 15426 15564 Face 32880 15707 15706 15564 Face 32881 15565 15707 15564 Face 32882 15850 15849 15706 Face 32883 15707 15850 15706 Face 32884 16001 16000 15849 Face 32885 15850 16001 15849 Face 32886 16153 16152 16000 Face 32887 16001 16153 16000 Face 32888 16310 16309 16152 Face 32889 16153 16310 16152 Face 32890 16471 16470 16309 Face 32891 16310 16471 16309 Face 32892 16630 16629 16470 Face 32893 16471 16630 16470 Face 32894 4407 4406 16629 Face 32895 16630 4407 16629 Face 32896 2071 2324 4406 Face 32897 4407 2071 4406 Face 32898 5405 4102 2324 Face 32899 2071 5405 2324 Face 32900 5395 5396 4102 Face 32901 5405 5395 4102 Face 32902 5395 4351 4610 Face 32903 5396 5395 4610 Face 32904 2270 1016 4610 Face 32905 4351 2270 4610 Face 32906 2270 1103 2250 Face 32907 1016 2270 2250 Face 32908 3838 6152 2250 Face 32909 1103 3838 2250 Face 32910 2668 2535 6152 Face 32911 3838 2668 6152 Face 32912 2668 15062 1492 Face 32913 2535 2668 1492 Face 32914 15062 14335 14327 Face 32915 1492 15062 14327 Face 32916 14335 15824 15803 Face 32917 14327 14335 15803 Face 32918 15824 1127 1235 Face 32919 15803 15824 1235 Face 32920 1127 14957 14934 Face 32921 1235 1127 14934 Face 32922 14957 16262 5068 Face 32923 14934 14957 5068 Face 32924 16262 14069 4884 Face 32925 5068 16262 4884 Face 32926 14069 25 10607 Face 32927 4884 14069 10607 Face 32928 5241 2123 3428 Face 32929 11460 13283 11785 Face 32930 16125 4936 16425 Face 32931 16426 73 2923 Face 32932 11695 11777 14620 Face 32933 15166 19683 1091 Face 32934 13910 15672 14513 Face 32935 13891 15783 15498 Face 32936 15126 15128 15527 Face 32937 20133 20132 20050 Face 32938 34297 34522 34511 Face 32939 15492 15634 15633 Face 32940 13079 13174 12826 Face 32941 11373 11377 12372 Face 32942 6520 157 2979 Face 32943 16119 3060 15968 Face 32944 2718 4105 4106 Face 32945 2979 2718 4106 Face 32946 2624 9298 3797 Face 32947 4106 84 1472 Face 32948 7484 874 873 Face 32949 14186 16407 14568 Face 32950 11781 10199 12735 Face 32951 15589 14788 15449 Face 32952 15586 15879 16502 Face 32953 14172 5403 15338 Face 32954 3073 14172 15338 Face 32955 5403 3337 14712 Face 32956 15338 5403 14712 Face 32957 3337 14065 15047 Face 32958 14712 3337 15047 Face 32959 4212 14756 5124 Face 32960 7663 1105 1216 Face 32961 14051 14052 14140 Face 32962 2653 2652 2520 Face 32963 24752 13871 13856 Face 32964 23797 22680 20157 Face 32965 15316 5076 14100 Face 32966 14227 2585 13917 Face 32967 2158 2029 1656 Face 32968 14354 14472 14471 Face 32969 9102 15136 15135 Face 32970 14052 14141 14140 Face 32971 26183 6286 18553 Face 32972 11703 4238 11153 Face 32973 20055 20137 20136 Face 32974 21254 21347 21346 Face 32975 20276 20275 20193 Face 32976 27745 6612 27746 Face 32977 21817 21913 21912 Face 32978 26183 7122 6286 Face 32979 1008 12320 19561 Face 32980 21816 21817 21912 Face 32981 16521 20460 9276 Face 32982 20317 6794 19984 Face 32983 21674 199 13392 Face 32984 22130 14725 1780 Face 32985 22298 22394 22393 Face 32986 1008 19561 19553 Face 32987 24814 23043 29755 Face 32988 22297 22298 22393 Face 32989 15566 15565 15426 Face 32990 15427 15566 15426 Face 32991 15566 15708 15707 Face 32992 15565 15566 15707 Face 32993 15851 15850 15707 Face 32994 15708 15851 15707 Face 32995 16002 16001 15850 Face 32996 15851 16002 15850 Face 32997 16002 16154 16153 Face 32998 16001 16002 16153 Face 32999 16154 16311 16310 Face 33000 16153 16154 16310 Face 33001 16472 16471 16310 Face 33002 16311 16472 16310 Face 33003 16631 16630 16471 Face 33004 16472 16631 16471 Face 33005 4408 4407 16630 Face 33006 16631 4408 16630 Face 33007 1828 2071 4407 Face 33008 4408 1828 4407 Face 33009 5273 5405 2071 Face 33010 1828 5273 2071 Face 33011 1101 5395 5405 Face 33012 5273 1101 5405 Face 33013 4225 4351 5395 Face 33014 1101 4225 5395 Face 33015 4225 1910 2270 Face 33016 4351 4225 2270 Face 33017 1910 2252 1103 Face 33018 2270 1910 1103 Face 33019 2252 6518 3838 Face 33020 1103 2252 3838 Face 33021 6518 2278 2668 Face 33022 3838 6518 2668 Face 33023 2278 13837 15062 Face 33024 2668 2278 15062 Face 33025 13837 14337 14335 Face 33026 15062 13837 14335 Face 33027 14337 15825 15824 Face 33028 14335 14337 15824 Face 33029 15825 447 1127 Face 33030 15824 15825 1127 Face 33031 447 14979 14957 Face 33032 1127 447 14957 Face 33033 14979 3067 16262 Face 33034 14957 14979 16262 Face 33035 3067 15538 14069 Face 33036 16262 3067 14069 Face 33037 15538 78 25 Face 33038 14069 15538 25 Face 33039 12667 12577 12578 Face 33040 34382 34314 34421 Face 33041 16425 16426 2923 Face 33042 73 49 15894 Face 33043 49 15638 2978 Face 33044 2923 73 15894 Face 33045 3501 3705 14361 Face 33046 15894 49 2978 Face 33047 14513 5636 4973 Face 33048 9662 781 9775 Face 33049 2923 15894 15893 Face 33050 5636 13891 4973 Face 33051 15593 15592 2150 Face 33052 15661 15662 15529 Face 33053 18117 18213 18212 Face 33054 34288 13663 34292 Face 33055 15659 13311 9731 Face 33056 14141 14243 14242 Face 33057 16041 1783 16359 Face 33058 14353 14354 14471 Face 33059 14166 15055 14837 Face 33060 17173 19064 5021 Face 33061 17215 18242 17835 Face 33062 1131 15057 581 Face 33063 7888 6724 9213 Face 33064 15739 7137 8776 Face 33065 34291 34362 34465 Face 33066 4747 657 1880 Face 33067 15322 15974 3337 Face 33068 5403 15322 3337 Face 33069 15974 15316 14065 Face 33070 3337 15974 14065 Face 33071 15316 15179 5076 Face 33072 14065 15316 14100 Face 33073 13974 13975 14051 Face 33074 22402 22401 22305 Face 33075 14471 14472 14589 Face 33076 14723 11918 13346 Face 33077 14552 14403 14670 Face 33078 14472 18740 17873 Face 33079 26563 26534 29618 Face 33080 22306 22402 22305 Face 33081 12500 4238 11703 Face 33082 9871 14283 6737 Face 33083 29338 27450 27332 Face 33084 12344 12500 11703 Face 33085 17975 20277 17974 Face 33086 21162 21254 21253 Face 33087 29623 26563 29618 Face 33088 20278 20277 17975 Face 33089 21913 22011 22010 Face 33090 28503 28638 28502 Face 33091 20317 19984 14646 Face 33092 21912 21913 22010 Face 33093 20460 22130 1780 Face 33094 14645 20317 14646 Face 33095 1008 58 20015 Face 33096 22612 15722 14725 Face 33097 9066 22962 14605 Face 33098 20174 1008 20015 Face 33099 15567 15566 15427 Face 33100 15428 15567 15427 Face 33101 15709 15708 15566 Face 33102 15567 15709 15566 Face 33103 15852 15851 15708 Face 33104 15709 15852 15708 Face 33105 16003 16002 15851 Face 33106 15852 16003 15851 Face 33107 16155 16154 16002 Face 33108 16003 16155 16002 Face 33109 16312 16311 16154 Face 33110 16155 16312 16154 Face 33111 16473 16472 16311 Face 33112 16312 16473 16311 Face 33113 16473 16632 16631 Face 33114 16472 16473 16631 Face 33115 4409 4408 16631 Face 33116 16632 4409 16631 Face 33117 1947 1828 4408 Face 33118 4409 1947 4408 Face 33119 5145 5273 1828 Face 33120 1947 5145 1828 Face 33121 3312 1101 5273 Face 33122 5145 3312 5273 Face 33123 4097 4225 1101 Face 33124 3312 4097 1101 Face 33125 2034 1910 4225 Face 33126 4097 2034 4225 Face 33127 2034 6412 2252 Face 33128 1910 2034 2252 Face 33129 6412 6151 6518 Face 33130 2252 6412 6518 Face 33131 6151 2407 2278 Face 33132 6518 6151 2278 Face 33133 2407 14057 13837 Face 33134 2278 2407 13837 Face 33135 14057 14363 14337 Face 33136 13837 14057 14337 Face 33137 14363 15887 15825 Face 33138 14337 14363 15825 Face 33139 15887 48 447 Face 33140 15825 15887 447 Face 33141 48 15478 14979 Face 33142 447 48 14979 Face 33143 15478 4746 3067 Face 33144 14979 15478 3067 Face 33145 4746 2075 15538 Face 33146 3067 4746 15538 Face 33147 2075 77 78 Face 33148 15538 2075 78 Face 33149 34432 34716 34603 Face 33150 34779 34508 34641 Face 33151 21534 21627 21533 Face 33152 18692 2323 2322 Face 33153 14739 14478 14857 Face 33154 15784 16403 15935 Face 33155 15638 5326 5263 Face 33156 2978 15638 5263 Face 33157 15498 15783 14173 Face 33158 5326 15468 236 Face 33159 14180 14250 14145 Face 33160 6508 2023 3072 Face 33161 2165 2035 6149 Face 33162 14264 13945 5779 Face 33163 16172 24703 24702 Face 33164 12843 13652 16067 Face 33165 18378 18472 18471 Face 33166 2281 15229 15198 Face 33167 12193 12107 11228 Face 33168 13975 14052 14051 Face 33169 15662 15324 133 Face 33170 14348 14347 14237 Face 33171 15954 11536 13548 Face 33172 15183 2797 15970 Face 33173 15348 15488 15487 Face 33174 15347 15348 15487 Face 33175 26563 6401 12589 Face 33176 3690 15804 14800 Face 33177 14116 16267 15974 Face 33178 15322 14116 15974 Face 33179 16267 15179 15316 Face 33180 15974 16267 15316 Face 33181 103 531 190 Face 33182 15179 14005 5075 Face 33183 13928 13929 13974 Face 33184 873 1338 14011 Face 33185 14584 14705 14704 Face 33186 14466 14465 14347 Face 33187 10273 8762 5253 Face 33188 27333 27453 20688 Face 33189 14583 14584 14704 Face 33190 22210 22209 22114 Face 33191 3305 15398 16362 Face 33192 4238 12279 11153 Face 33193 22306 22305 22209 Face 33194 26674 26183 18553 Face 33195 13357 13262 14608 Face 33196 28574 13159 28575 Face 33197 18261 27215 24448 Face 33198 20194 20276 20193 Face 33199 20447 20360 20448 Face 33200 22011 22109 22108 Face 33201 20359 20358 20275 Face 33202 20371 20370 19561 Face 33203 22109 22204 22108 Face 33204 22130 22612 14725 Face 33205 19582 20371 19561 Face 33206 20174 20015 1786 Face 33207 22231 12544 12092 Face 33208 15568 15567 15428 Face 33209 15290 24991 15427 Face 33210 15710 15709 15567 Face 33211 15568 15710 15567 Face 33212 15853 15852 15709 Face 33213 15710 15853 15709 Face 33214 16004 16003 15852 Face 33215 15853 16004 15852 Face 33216 16156 16155 16003 Face 33217 16004 16156 16003 Face 33218 16313 16312 16155 Face 33219 16156 16313 16155 Face 33220 16474 16473 16312 Face 33221 16313 16474 16312 Face 33222 16633 16632 16473 Face 33223 16474 16633 16473 Face 33224 4410 4409 16632 Face 33225 16633 4410 16632 Face 33226 2198 1947 4409 Face 33227 4410 2198 4409 Face 33228 5017 5145 1947 Face 33229 2198 5017 1947 Face 33230 2886 3312 5145 Face 33231 5017 2886 5145 Face 33232 3969 4097 3312 Face 33233 2886 3969 3312 Face 33234 13963 2034 4097 Face 33235 3969 13963 4097 Face 33236 13963 5248 6412 Face 33237 18529 790 791 Face 33238 26653 26768 26652 Face 33239 18603 1953 2078 Face 33240 16845 16846 16933 Face 33241 17552 17587 17372 Face 33242 18631 18747 17511 Face 33243 17110 17109 17018 Face 33244 26534 26563 12589 Face 33245 19023 19133 19132 Face 33246 8665 10214 8563 Face 33247 19179 19355 19429 Face 33248 8842 16091 8841 Face 33249 18017 18018 18109 Face 33250 30981 30980 30879 Face 33251 17599 17633 18563 Face 33252 1506 18221 1505 Face 33253 18913 18914 19022 Face 33254 6273 6392 1574 Face 33255 17648 17738 17647 Face 33256 19029 19139 19028 Face 33257 18594 18595 18699 Face 33258 19150 18047 17362 Face 33259 18891 3981 17756 Face 33260 17509 17335 18438 Face 33261 17686 17672 18466 Face 33262 17286 19179 19353 Face 33263 2532 18126 19508 Face 33264 26768 26882 26881 Face 33265 14064 16381 17666 Face 33266 18806 18910 18909 Face 33267 18697 18698 18805 Face 33268 17292 17291 17200 Face 33269 5747 18927 19221 Face 33270 19127 19128 19236 Face 33271 17202 17293 17201 Face 33272 18308 18309 18404 Face 33273 18090 18185 18184 Face 33274 19241 19242 18385 Face 33275 18285 18380 18284 Face 33276 18532 19047 4678 Face 33277 16821 16820 16751 Face 33278 16751 16750 16689 Face 33279 17741 17831 17830 Face 33280 17093 17183 17092 Face 33281 18089 18090 18184 Face 33282 18500 18599 18598 Face 33283 18803 18907 18906 Face 33284 1245 1246 17907 Face 33285 26419 26418 29535 Face 33286 18014 18015 18106 Face 33287 18126 18740 17987 Face 33288 34704 34623 34720 Face 33289 1724 1835 18411 Face 33290 14355 17987 14354 Face 33291 18805 18806 18909 Face 33292 18910 19019 19018 Face 33293 18909 18910 19018 Face 33294 17034 17125 17124 Face 33295 18167 18266 17644 Face 33296 17623 18099 18409 Face 33297 33087 33222 33086 Face 33298 6401 20980 28000 Face 33299 17093 17092 17000 Face 33300 17183 17182 17092 Face 33301 17001 17000 16908 Face 33302 17001 17093 17000 Face 33303 16909 16908 16820 Face 33304 16909 17001 16908 Face 33305 2821 2954 32429 Face 33306 16821 16909 16820 Face 33307 18613 17763 14064 Face 33308 29209 34412 29210 Face 33309 18587 18604 16948 Face 33310 17928 17323 17264 Face 33311 17323 16698 18346 Face 33312 16948 17928 17264 Face 33313 1504 116 5874 Face 33314 34765 34597 34805 Face 33315 1835 18507 18506 Face 33316 5021 17146 17145 Face 33317 17471 17470 17384 Face 33318 14472 17873 14589 Face 33319 19129 19238 19237 Face 33320 19019 19129 19128 Face 33321 18476 18577 18475 Face 33322 16843 16931 16930 Face 33323 16929 17021 16928 Face 33324 18807 18808 18911 Face 33325 17739 17740 17829 Face 33326 12589 6401 28000 Face 33327 27264 21073 25644 Face 33328 28765 28130 26676 Face 33329 17034 17035 17125 Face 33330 18679 18678 18574 Face 33331 17919 1261 17827 Face 33332 26767 26766 26651 Face 33333 17921 18011 18010 Face 33334 18123 18220 18122 Face 33335 4755 4756 4889 Face 33336 15334 15470 15333 Face 33337 18205 18206 18301 Face 33338 18025 18117 18116 Face 33339 17876 19011 17872 Face 33340 28700 28572 14427 Face 33341 17511 18852 17533 Face 33342 18880 17931 18165 Face 33343 34556 34418 34359 Face 33344 17955 17931 14710 Face 33345 5840 5841 5969 Face 33346 19018 19019 19128 Face 33347 17201 17200 17110 Face 33348 19128 19129 19237 Face 33349 18024 18025 18116 Face 33350 18748 3900 19002 Face 33351 34416 34430 34725 Face 33352 33915 31651 17852 Face 33353 29064 29589 648 Face 33354 16939 17031 17030 Face 33355 17030 17031 17121 Face 33356 18467 17686 18466 Face 33357 17959 2508 19123 Face 33358 17203 17294 17202 Face 33359 18507 18607 18506 Face 33360 16818 16817 16748 Face 33361 1615 18220 18221 Face 33362 17457 17545 18483 Face 33363 17490 18613 674 Face 33364 17202 17201 17111 Face 33365 18398 18493 18492 Face 33366 16937 16938 17029 Face 33367 18835 17596 19214 Face 33368 18112 18113 18208 Face 33369 29064 25743 25582 Face 33370 17780 18165 21190 Face 33371 34423 34373 34369 Face 33372 14056 1984 2675 Face 33373 1359 17909 1247 Face 33374 18854 18748 19162 Face 33375 17780 18241 14956 Face 33376 19238 18633 19173 Face 33377 19237 19238 19173 Face 33378 18532 4810 18834 Face 33379 18577 18576 18475 Face 33380 17999 18091 17998 Face 33381 32780 20699 27603 Face 33382 26667 26666 26550 Face 33383 19128 19237 19236 Face 33384 31713 31825 31712 Face 33385 18367 18272 1917 Face 33386 18884 18891 17623 Face 33387 18215 18214 18118 Face 33388 3505 674 17623 Face 33389 19665 17180 19748 Face 33390 18027 18119 18026 Face 33391 17264 17323 18346 Face 33392 32056 32160 32055 Face 33393 16945 19077 18923 Face 33394 17356 18425 15614 Face 33395 3161 17553 18436 Face 33396 34828 34598 34454 Face 33397 17556 17645 927 Face 33398 1021 1022 17632 Face 33399 28759 28886 28758 Face 33400 18106 18202 18201 Face 33401 30143 30144 30207 Face 33402 34384 34457 34459 Face 33403 18607 1956 2082 Face 33404 34480 34284 34278 Face 33405 18633 18314 17102 Face 33406 17385 17471 17384 Face 33407 19173 18633 17102 Face 33408 18672 3162 19005 Face 33409 18111 18207 18206 Face 33410 19104 17626 17602 Face 33411 18690 17725 17724 Face 33412 16698 18425 18346 Face 33413 19239 19240 18296 Face 33414 19184 17677 17697 Face 33415 17756 3505 17623 Face 33416 18020 18112 18111 Face 33417 17297 17387 17296 Face 33418 17918 18749 19210 Face 33419 1601 1489 1490 Face 33420 17477 17476 17390 Face 33421 17090 17089 16997 Face 33422 17090 17180 17089 Face 33423 17007 344 17006 Face 33424 18425 17356 18346 Face 33425 18535 18631 17545 Face 33426 26667 26782 26666 Face 33427 27257 18028 19089 Face 33428 2952 2951 12650 Face 33429 17133 16218 17844 Face 33430 16218 17280 17427 Face 33431 10479 7849 10826 Face 33432 5239 4850 3163 Face 33433 31910 31911 32015 Face 33434 7998 10479 10826 Face 33435 23847 23884 29474 Face 33436 34455 10921 34698 Face 33437 18314 16955 17454 Face 33438 21543 13073 18981 Face 33439 20558 5272 17656 Face 33440 19681 17463 18551 Face 33441 18675 18690 17724 Face 33442 17118 17119 17208 Face 33443 17513 18147 17841 Face 33444 18098 17315 19154 Face 33445 25755 25756 25862 Face 33446 2684 28091 27958 Face 33447 28783 28784 28909 Face 33448 19231 16016 20535 Face 33449 18789 18834 17734 Face 33450 18016 18108 18107 Face 33451 17966 3981 18891 Face 33452 4495 4496 4627 Face 33453 18298 18394 18393 Face 33454 16998 17090 16997 Face 33455 33105 33104 32970 Face 33456 17926 18016 18015 Face 33457 16756 16825 16824 Face 33458 16755 16756 16824 Face 33459 16825 16913 16912 Face 33460 16824 16825 16912 Face 33461 18373 2044 18372 Face 33462 34315 34464 34490 Face 33463 18221 1506 1616 Face 33464 34344 11614 34617 Face 33465 34317 34598 34828 Face 33466 1713 1822 1712 Face 33467 18565 18566 5325 Face 33468 18911 18912 19020 Face 33469 34524 34402 34365 Face 33470 18840 19058 20155 Face 33471 16913 17005 17004 Face 33472 16912 16913 17004 Face 33473 18232 17177 17107 Face 33474 17209 17300 17299 Face 33475 16906 16905 16817 Face 33476 16906 16998 16905 Face 33477 16818 16906 16817 Face 33478 16998 16997 16905 Face 33479 17382 17468 17381 Face 33480 18637 18789 18774 Face 33481 18396 18397 18491 Face 33482 5659 5531 5532 Face 33483 18441 3592 3722 Face 33484 18403 18498 18497 Face 33485 28910 29037 29036 Face 33486 18521 20064 19310 Face 33487 17005 17097 17096 Face 33488 17004 17005 17096 Face 33489 17097 17187 17186 Face 33490 17096 17097 17186 Face 33491 19029 2461 2590 Face 33492 17786 2296 27568 Face 33493 18052 18224 18521 Face 33494 34293 34750 34799 Face 33495 17267 18224 18428 Face 33496 29615 34701 6811 Face 33497 18297 18298 18393 Face 33498 34671 34592 20884 Face 33499 34555 34702 34313 Face 33500 2336 2209 2337 Face 33501 17187 17277 17276 Face 33502 31811 31810 31698 Face 33503 1917 2040 18367 Face 33504 4091 2153 18414 Face 33505 17208 17209 17299 Face 33506 17107 17133 17844 Face 33507 17926 1160 1268 Face 33508 4405 4536 4404 Face 33509 18119 18118 18026 Face 33510 28116 28115 27982 Face 33511 40 17456 986 Face 33512 10479 7998 7192 Face 33513 28291 28155 34512 Face 33514 17301 17391 17390 Face 33515 2040 18368 2041 Face 33516 34560 20816 34800 Face 33517 17186 17187 17276 Face 33518 18472 18573 18471 Face 33519 34308 34299 34819 Face 33520 17276 17277 17367 Face 33521 23066 23012 28815 Face 33522 17463 23303 27613 Face 33523 1044 17654 934 Face 33524 3680 3025 5238 Face 33525 17687 18052 17860 Face 33526 17860 18521 22525 Face 33527 10832 7154 15337 Face 33528 17467 17556 811 Face 33529 4158 4288 1452 Face 33530 34393 34375 34621 Face 33531 18201 18297 1713 Face 33532 4028 18059 19002 Face 33533 31372 31371 31268 Face 33534 27983 28116 27982 Face 33535 3680 5238 18616 Face 33536 27855 27987 27854 Face 33537 3119 2983 3120 Face 33538 23753 34763 23752 Face 33539 27381 28636 25653 Face 33540 1712 1711 1602 Face 33541 17477 17391 702 Face 33542 3759 3891 3758 Face 33543 2711 2841 2840 Face 33544 18215 1612 18311 Face 33545 18852 18959 17533 Face 33546 25985 34811 25563 Face 33547 17300 17301 17390 Face 33548 17925 4934 17242 Face 33549 17721 17720 17631 Face 33550 17632 17721 17631 Face 33551 17812 17811 17720 Face 33552 17721 17812 17720 Face 33553 18061 17375 19076 Face 33554 19221 19047 18637 Face 33555 18419 18414 18031 Face 33556 240 17007 16915 Face 33557 19338 17832 17860 Face 33558 18743 15778 15635 Face 33559 675 17277 563 Face 33560 6939 6938 6834 Face 33561 18010 18011 1490 Face 33562 253 359 358 Face 33563 19125 19126 19234 Face 33564 17812 17903 17902 Face 33565 17811 17812 17902 Face 33566 18348 17042 17443 Face 33567 17666 17587 17552 Face 33568 19234 19235 17622 Face 33569 2300 2174 2301 Face 33570 29803 17637 17266 Face 33571 15153 25273 15288 Face 33572 15197 15334 15333 Face 33573 18306 18307 18402 Face 33574 3505 17490 674 Face 33575 17844 17427 17358 Face 33576 18917 18918 19026 Face 33577 17677 18483 17697 Face 33578 17903 17994 17993 Face 33579 19137 19136 19026 Face 33580 17902 17903 17993 Face 33581 17994 18086 18085 Face 33582 17993 17994 18085 Face 33583 18086 18181 18180 Face 33584 553 17302 17490 Face 33585 17924 18014 18013 Face 33586 18584 17368 17502 Face 33587 18525 18584 17502 Face 33588 33784 6709 109 Face 33589 1722 1723 1833 Face 33590 5075 14005 17726 Face 33591 18093 1474 1586 Face 33592 4277 4148 4149 Face 33593 19124 19125 19233 Face 33594 18085 18086 18180 Face 33595 18181 18279 18278 Face 33596 2561 2433 2434 Face 33597 17500 15807 17403 Face 33598 18174 18272 18271 Face 33599 18173 18174 18271 Face 33600 18836 19176 17579 Face 33601 18060 18059 17684 Face 33602 22271 6586 11164 Face 33603 18047 17447 16860 Face 33604 26423 25540 25539 Face 33605 28127 28126 27993 Face 33606 34462 34648 34579 Face 33607 19139 19248 19138 Face 33608 18180 18181 18278 Face 33609 18279 18374 18373 Face 33610 18278 18279 18373 Face 33611 18373 18374 2044 Face 33612 26449 28551 29801 Face 33613 24852 16713 18781 Face 33614 18501 18600 18599 Face 33615 29431 29562 29430 Face 33616 17507 18743 22526 Face 33617 34373 34483 34369 Face 33618 15778 15634 15635 Face 33619 11751 27251 24301 Face 33620 4934 4933 4800 Face 33621 30274 30273 30208 Face 33622 16938 16939 17030 Face 33623 17422 15929 17506 Face 33624 17193 20032 18839 Face 33625 18393 18488 1943 Face 33626 18529 17106 907 Face 33627 17685 18730 18734 Face 33628 24763 14760 13358 Face 33629 18271 18272 18367 Face 33630 3308 529 2902 Face 33631 34586 34392 34320 Face 33632 18494 18593 18592 Face 33633 2051 2180 18577 Face 33634 17335 18745 19229 Face 33635 18785 32884 33415 Face 33636 1038 1037 17645 Face 33637 18374 18468 2044 Face 33638 19230 19078 19067 Face 33639 17332 17969 6009 Face 33640 1119 17956 18236 Face 33641 16774 370 13086 Face 33642 31804 31911 31910 Face 33643 17908 1246 17816 Face 33644 18214 18310 18309 Face 33645 23168 15884 22148 Face 33646 34703 34808 34389 Face 33647 20205 20206 20287 Face 33648 22244 23169 23168 Face 33649 16854 16942 16853 Face 33650 23001 24634 24138 Face 33651 17927 17599 17591 Face 33652 18082 18177 18176 Face 33653 18304 18305 18400 Face 33654 18229 17192 21654 Face 33655 23361 23362 28406 Face 33656 18282 18283 18377 Face 33657 1586 1696 18188 Face 33658 17032 17123 17122 Face 33659 17113 17203 17112 Face 33660 26449 26701 28551 Face 33661 18604 17726 14005 Face 33662 26338 26423 25539 Face 33663 19159 18853 19069 Face 33664 20525 32660 26422 Face 33665 27496 27497 18358 Face 33666 5533 5659 5532 Face 33667 17672 17633 18046 Face 33668 34420 34351 28019 Face 33669 2841 19124 19233 Face 33670 18092 18091 17999 Face 33671 18092 18187 18091 Face 33672 26684 25542 25541 Face 33673 5533 18619 5534 Face 33674 18837 17685 18734 Face 33675 18730 19180 19181 Face 33676 18329 17772 17865 Face 33677 20011 22859 24807 Face 33678 18329 16082 17772 Face 33679 16238 16082 18329 Face 33680 18247 18901 18585 Face 33681 17007 345 344 Face 33682 17925 17927 17591 Face 33683 1267 18015 18014 Face 33684 1138 1139 17816 Face 33685 25541 25542 26355 Face 33686 4405 15807 4536 Face 33687 6017 6021 8320 Face 33688 32296 32295 32191 Face 33689 30619 30532 25672 Face 33690 4023 25166 22434 Face 33691 14198 526 527 Face 33692 23070 27997 23069 Face 33693 2547 27877 2908 Face 33694 4240 4241 4366 Face 33695 25493 26872 25637 Face 33696 26788 26903 26448 Face 33697 3308 2902 1312 Face 33698 18694 18802 18801 Face 33699 18298 18299 18394 Face 33700 17741 17742 17831 Face 33701 19236 19115 17038 Face 33702 4496 4628 4627 Face 33703 4498 4367 4499 Face 33704 18627 17744 14061 Face 33705 3330 17012 3331 Face 33706 18845 18329 18625 Face 33707 20067 18625 17865 Face 33708 2323 18692 18693 Face 33709 18529 791 17106 Face 33710 19905 22039 34477 Face 33711 15635 17687 17832 Face 33712 17587 158 18711 Face 33713 16845 16933 16932 Face 33714 30918 31015 30917 Face 33715 5533 5534 5660 Face 33716 17806 3983 4111 Face 33717 4112 4240 4111 Face 33718 26301 25478 25473 Face 33719 17537 19166 17937 Face 33720 17537 16831 19166 Face 33721 17937 17852 31651 Face 33722 16831 17641 19178 Face 33723 17641 19105 19178 Face 33724 20638 20905 20809 Face 33725 16815 16903 16814 Face 33726 19175 18835 19214 Face 33727 17562 17651 17650 Face 33728 17907 1246 17908 Face 33729 18750 18749 17531 Face 33730 17572 17806 4111 Face 33731 3855 3856 3983 Face 33732 27456 27576 27455 Face 33733 791 792 17147 Face 33734 17405 18845 18625 Face 33735 28291 34512 28560 Face 33736 17171 18845 17405 Face 33737 17178 17171 17405 Face 33738 5588 17843 5714 Face 33739 34673 34724 34582 Face 33740 17967 17876 17872 Face 33741 17119 17120 17209 Face 33742 586 17301 479 Face 33743 16238 17171 16401 Face 33744 28557 28687 29199 Face 33745 17479 19220 19144 Face 33746 18786 18679 2305 Face 33747 27270 27999 7584 Face 33748 16831 19178 19166 Face 33749 17270 18994 18161 Face 33750 17096 17186 17185 Face 33751 19233 17622 2974 Face 33752 16911 16912 17003 Face 33753 17004 17096 17095 Face 33754 8002 5724 9506 Face 33755 17003 17004 17095 Face 33756 18242 17491 17835 Face 33757 18837 18734 18722 Face 33758 17371 18842 3380 Face 33759 17124 373 372 Face 33760 17567 5067 4934 Face 33761 31064 31063 30964 Face 33762 2170 652 9415 Face 33763 28681 29481 29593 Face 33764 19075 17178 17970 Face 33765 358 7156 252 Face 33766 18893 17171 17178 Face 33767 19075 18893 17178 Face 33768 18208 18209 18304 Face 33769 3111 2974 17622 Face 33770 34647 34616 34443 Face 33771 10951 17544 17970 Face 33772 22608 28141 27383 Face 33773 14056 2675 15056 Face 33774 16824 16912 16911 Face 33775 18886 18242 17215 Face 33776 3373 18161 17808 Face 33777 17622 17038 18098 Face 33778 3373 17270 18161 Face 33779 17270 18325 17414 Face 33780 16755 16824 16823 Face 33781 16754 16755 16823 Face 33782 18186 18284 18283 Face 33783 18125 18886 17215 Face 33784 17371 18061 17042 Face 33785 17019 17018 16926 Face 33786 3178 16693 16692 Face 33787 19181 18147 17513 Face 33788 16823 16824 16911 Face 33789 16912 17004 17003 Face 33790 5533 5660 5659 Face 33791 18982 540 4475 Face 33792 28417 20315 26673 Face 33793 26531 26301 25473 Face 33794 16783 18952 171 Face 33795 17630 17631 17720 Face 33796 5657 5530 5531 Face 33797 30661 30760 30660 Face 33798 18842 17042 18348 Face 33799 28886 29011 28885 Face 33800 17035 6843 6947 Face 33801 18401 18496 18495 Face 33802 16855 16854 16776 Face 33803 15755 15613 21205 Face 33804 20261 27011 20179 Face 33805 29811 29810 29679 Face 33806 34431 34664 34784 Face 33807 17807 3373 17808 Face 33808 34706 34548 34696 Face 33809 18680 18788 2305 Face 33810 34686 34589 34467 Face 33811 18701 18702 18809 Face 33812 18602 18707 18601 Face 33813 34649 34441 34468 Face 33814 17134 19039 17306 Face 33815 30486 30485 30414 Face 33816 27576 27703 27702 Face 33817 18917 19026 19025 Face 33818 17807 17808 19105 Face 33819 17641 17807 19105 Face 33820 30043 30044 30105 Face 33821 34384 34459 34483 Face 33822 18173 18078 20462 Face 33823 34532 34348 6603 Face 33824 1489 1375 18010 Face 33825 6279 21072 28089 Face 33826 1490 18011 18103 Face 33827 19211 17240 18006 Face 33828 18187 18186 18091 Face 33829 34438 24373 34793 Face 33830 17117 17116 17025 Face 33831 1161 1269 1268 Face 33832 17830 17831 17922 Face 33833 92 6385 785 Face 33834 11616 11695 14620 Face 33835 17044 3500 19170 Face 33836 18211 18212 18307 Face 33837 18364 1914 18267 Face 33838 18024 18116 18115 Face 33839 17998 18090 18089 Face 33840 17041 17134 17306 Face 33841 17112 17202 17111 Face 33842 17684 1452 18886 Face 33843 17293 17292 17201 Face 33844 18302 18398 18397 Face 33845 19154 17838 17041 Face 33846 17470 17469 17383 Face 33847 31868 31867 31755 Face 33848 18994 17270 17414 Face 33849 34650 34738 34552 Face 33850 18797 18688 17138 Face 33851 34755 34504 34489 Face 33852 16783 18831 18688 Face 33853 18797 16783 18688 Face 33854 23011 162 23065 Face 33855 27826 27827 29459 Face 33856 18535 18640 18631 Face 33857 16783 171 18831 Face 33858 17801 18927 5747 Face 33859 17025 17116 17024 Face 33860 17320 17241 18606 Face 33861 17306 19039 19211 Face 33862 17997 17998 18089 Face 33863 18023 18024 18115 Face 33864 18116 18212 18211 Face 33865 18307 18308 18403 Face 33866 18115 18116 18211 Face 33867 18099 17666 17593 Face 33868 18592 18593 18697 Face 33869 18804 18805 18908 Face 33870 17562 17563 17651 Face 33871 30484 30569 30483 Face 33872 18427 19162 17785 Face 33873 18577 18476 2051 Face 33874 2844 19153 18627 Face 33875 18607 2082 18712 Face 33876 18467 18466 17335 Face 33877 18047 16860 17362 Face 33878 19138 19247 19137 Face 33879 19121 18797 17532 Face 33880 17532 17138 19346 Face 33881 18952 16783 18797 Face 33882 19121 18952 18797 Face 33883 3209 172 171 Face 33884 125 2027 760 Face 33885 18209 18210 18305 Face 33886 18093 18188 18092 Face 33887 19131 19240 19239 Face 33888 17203 17204 17294 Face 33889 1158 17924 17831 Face 33890 17107 17844 17934 Face 33891 18381 18380 18285 Face 33892 18804 18908 18907 Face 33893 18212 18308 18307 Face 33894 18284 18379 18283 Face 33895 1244 1136 1245 Face 33896 18697 18805 18804 Face 33897 18015 18107 18106 Face 33898 29142 29141 29010 Face 33899 28557 28556 18457 Face 33900 1272 18023 1271 Face 33901 17633 17672 18565 Face 33902 18923 18885 17240 Face 33903 17240 19230 18006 Face 33904 18409 17593 18640 Face 33905 19701 19377 26305 Face 33906 17383 17382 17292 Face 33907 18313 17532 20571 Face 33908 27219 34514 34628 Face 33909 17101 19121 18313 Face 33910 18720 17101 18313 Face 33911 16784 18952 19121 Face 33912 17101 16784 19121 Face 33913 6843 16943 16856 Face 33914 16784 3962 18952 Face 33915 17111 17110 17019 Face 33916 17626 18748 17479 Face 33917 17295 17385 17384 Face 33918 18884 17623 18409 Face 33919 34730 34826 34288 Face 33920 674 14064 18099 Face 33921 19115 19173 18950 Face 33922 34604 34472 34492 Face 33923 18147 17934 17464 Face 33924 18406 18407 18501 Face 33925 18308 18404 18403 Face 33926 14774 15719 14208 Face 33927 2654 2204 2653 Face 33928 18502 18503 18601 Face 33929 1373 1260 1261 Face 33930 18696 18697 18804 Face 33931 17576 17693 17313 Face 33932 17742 1044 1045 Face 33933 16857 19159 18384 Face 33934 16857 18384 18245 Face 33935 20736 17664 18718 Face 33936 17690 20823 18339 Face 33937 18343 18720 18317 Face 33938 17690 18343 18317 Face 33939 17332 17101 18720 Face 33940 18343 17332 18720 Face 33941 1158 17742 1045 Face 33942 31649 27889 16924 Face 33943 34771 34338 34668 Face 33944 3046 12806 12266 Face 33945 17471 17560 17470 Face 33946 17560 17649 17559 Face 33947 18942 17177 18232 Face 33948 17177 17133 17107 Face 33949 18497 18498 18596 Face 33950 18495 18496 18594 Face 33951 16940 16941 17032 Face 33952 18188 18187 18092 Face 33953 17315 17838 19154 Face 33954 18530 18535 17671 Face 33955 16840 16841 16928 Face 33956 18502 18601 18600 Face 33957 18269 18270 18365 Face 33958 2522 2654 2653 Face 33959 23480 13994 23399 Face 33960 1151 1150 1038 Face 33961 30969 30968 30867 Face 33962 4148 4019 4020 Face 33963 27567 27694 29319 Face 33964 30415 30486 30414 Face 33965 24039 23315 25661 Face 33966 17304 4199 16919 Face 33967 17408 16857 18245 Face 33968 19159 19069 18384 Face 33969 19049 17690 18741 Face 33970 19513 18741 18339 Face 33971 18585 18343 17690 Face 33972 19049 18585 17690 Face 33973 17969 17332 18343 Face 33974 18585 17969 18343 Face 33975 15179 5075 5076 Face 33976 31824 31823 31711 Face 33977 18185 18186 18283 Face 33978 18885 17411 19078 Face 33979 17201 17292 17200 Face 33980 18704 18705 18812 Face 33981 19078 17011 17967 Face 33982 17423 17508 18613 Face 33983 253 17017 360 Face 33984 18532 18834 18789 Face 33985 17490 17423 18613 Face 33986 17387 17386 17296 Face 33987 32957 33091 32956 Face 33988 17874 18835 19175 Face 33989 18496 18595 18594 Face 33990 17293 17383 17292 Face 33991 18696 18804 18803 Face 33992 17206 17205 17115 Face 33993 17381 17380 17290 Face 33994 18907 18908 19016 Face 33995 16937 17029 17028 Face 33996 18017 18109 18108 Face 33997 20609 20522 26421 Face 33998 17200 17291 17199 Face 33999 34454 11014 10227 Face 34000 17815 16945 17134 Face 34001 18637 18532 18789 Face 34002 34679 29210 34432 Face 34003 17493 18744 18725 Face 34004 31371 31475 31370 Face 34005 17260 19644 17350 Face 34006 16757 16756 16694 Face 34007 32971 33105 32970 Face 34008 16757 16826 16825 Face 34009 16756 16757 16825 Face 34010 16062 18162 17693 Face 34011 141 16828 142 Face 34012 33226 33225 33090 Face 34013 16841 16929 16928 Face 34014 29901 29900 29846 Face 34015 25964 27105 28818 Face 34016 17408 18245 17045 Face 34017 19072 17408 17045 Face 34018 31653 16785 31538 Face 34019 19072 17045 4199 Face 34020 140 20906 20736 Face 34021 17304 19072 4199 Face 34022 34561 5341 34314 Face 34023 17985 18076 18075 Face 34024 18729 19049 18741 Face 34025 17416 18729 21382 Face 34026 18247 19049 18729 Face 34027 10690 18247 18729 Face 34028 34792 34731 34535 Face 34029 34322 11440 34444 Face 34030 19097 29537 29535 Face 34031 33492 33491 33358 Face 34032 16941 16940 16852 Face 34033 18250 18539 19155 Face 34034 27832 27964 27831 Face 34035 32465 32464 32352 Face 34036 16826 16914 16913 Face 34037 16825 16826 16913 Face 34038 16914 17006 17005 Face 34039 16913 16914 17005 Face 34040 34724 34819 34582 Face 34041 17686 18567 18566 Face 34042 17005 17006 17097 Face 34043 16534 2925 15331 Face 34044 16380 17684 18125 Face 34045 17508 17509 17763 Face 34046 17724 17725 18587 Face 34047 19039 18923 17240 Face 34048 18604 17928 16948 Face 34049 17469 17468 17382 Face 34050 17623 674 18099 Face 34051 19016 19126 19125 Face 34052 17554 17465 436 Face 34053 17763 18438 16381 Face 34054 18187 18285 18186 Face 34055 18641 18640 18535 Face 34056 18626 17229 18248 Face 34057 19214 17596 17752 Face 34058 18945 18232 18730 Face 34059 19067 17967 18953 Face 34060 4366 15595 17936 Face 34061 18403 18404 18498 Face 34062 17967 17872 18953 Face 34063 18301 18302 18397 Face 34064 4868 1676 18192 Face 34065 17277 675 17367 Face 34066 17684 18886 18125 Face 34067 17506 15778 17507 Face 34068 17018 17109 17017 Face 34069 18315 18410 1723 Face 34070 4800 17242 4934 Face 34071 26791 649 27629 Face 34072 17626 3768 18748 Face 34073 17721 17632 1135 Face 34074 17576 17313 18835 Face 34075 22892 11973 11889 Face 34076 17874 17576 18835 Face 34077 17505 18287 5276 Face 34078 1267 17924 1158 Face 34079 17813 17812 17721 Face 34080 4944 18905 4811 Face 34081 17904 17903 17812 Face 34082 17813 17904 17812 Face 34083 17904 17995 17994 Face 34084 17903 17904 17994 Face 34085 17995 18087 18086 Face 34086 18099 14064 17666 Face 34087 17473 17562 17561 Face 34088 16936 16935 16847 Face 34089 26987 25964 28818 Face 34090 18571 2301 2174 Face 34091 18595 18700 18699 Face 34092 18245 17460 17046 Face 34093 4199 17045 19156 Face 34094 17102 17454 17815 Face 34095 479 587 586 Face 34096 18074 17984 18075 Face 34097 19076 17375 19114 Face 34098 28558 26816 34640 Face 34099 34639 34799 34676 Face 34100 18643 10690 17755 Face 34101 17580 18643 17755 Face 34102 17478 18247 10690 Face 34103 18643 17478 10690 Face 34104 17447 3253 3380 Face 34105 17478 18901 18247 Face 34106 17447 3380 18842 Face 34107 373 483 482 Face 34108 34461 34345 34450 Face 34109 18379 18378 18283 Face 34110 18405 18406 18500 Face 34111 17994 17995 18086 Face 34112 18087 18182 18181 Face 34113 18086 18087 18181 Face 34114 18182 18280 18279 Face 34115 18181 18182 18279 Face 34116 27131 27247 27105 Face 34117 18280 18375 18374 Face 34118 19176 17671 17579 Face 34119 17022 17021 16929 Face 34120 18506 18411 1835 Face 34121 17427 18836 17579 Face 34122 18019 18020 18111 Face 34123 17358 17427 17579 Face 34124 7617 11099 14030 Face 34125 17391 17477 17390 Face 34126 18955 3695 3800 Face 34127 18959 19175 19011 Face 34128 19586 17781 3430 Face 34129 27769 11008 7013 Face 34130 4738 15183 2756 Face 34131 28144 27769 27638 Face 34132 18017 1268 18018 Face 34133 14429 6910 6913 Face 34134 17673 17583 32761 Face 34135 2653 2521 2522 Face 34136 25964 27131 27105 Face 34137 27749 29749 27745 Face 34138 17945 3982 18433 Face 34139 18821 17945 18433 Face 34140 16699 17691 3982 Face 34141 17945 16699 3982 Face 34142 17726 17734 5075 Face 34143 29444 29443 29312 Face 34144 18809 18810 18913 Face 34145 18923 17494 18885 Face 34146 16706 26182 27247 Face 34147 32787 20527 20528 Face 34148 2984 3120 2983 Face 34149 17725 17726 18604 Face 34150 18279 18280 18374 Face 34151 19235 17038 17622 Face 34152 18375 18469 18468 Face 34153 18374 18375 18468 Face 34154 22040 34753 34794 Face 34155 2301 18676 32898 Face 34156 27131 16706 27247 Face 34157 986 17456 17195 Face 34158 16762 17711 1210 Face 34159 18908 19017 19016 Face 34160 18693 18694 18801 Face 34161 19015 19125 19124 Face 34162 18489 18490 18588 Face 34163 2581 2452 18906 Face 34164 18395 18490 18489 Face 34165 18589 18694 18693 Face 34166 18394 18395 18489 Face 34167 18774 17726 17725 Face 34168 18490 18589 18588 Face 34169 18569 17722 18467 Face 34170 17038 17315 18098 Face 34171 18568 19224 17241 Face 34172 17508 18569 17509 Face 34173 18433 18584 17583 Face 34174 12833 32761 17583 Face 34175 783 2918 18901 Face 34176 18433 3982 17368 Face 34177 18457 2036 26182 Face 34178 26336 26325 25535 Face 34179 17781 19587 18564 Face 34180 18564 18940 18944 Face 34181 18363 17580 18564 Face 34182 18944 18363 18564 Face 34183 17570 18643 17580 Face 34184 18363 17570 17580 Face 34185 28020 17786 27568 Face 34186 3509 3510 3638 Face 34187 27329 26449 29801 Face 34188 19311 18743 17832 Face 34189 34739 25647 26072 Face 34190 17801 4288 4289 Face 34191 18730 18232 19180 Face 34192 17210 17211 17301 Face 34193 17298 17388 17297 Face 34194 17838 17815 17134 Face 34195 3983 4112 4111 Face 34196 17494 17411 18885 Face 34197 17101 6009 16784 Face 34198 16927 17019 16926 Face 34199 17020 17019 16927 Face 34200 18077 17986 18078 Face 34201 17240 18885 19230 Face 34202 18296 18290 2163 Face 34203 16401 17171 18893 Face 34204 17475 17564 17474 Face 34205 32138 32242 32137 Face 34206 20288 18075 17984 Face 34207 649 17958 27997 Face 34208 18129 19000 6797 Face 34209 18077 18172 18171 Face 34210 32230 32229 32125 Face 34211 23761 25776 24857 Face 34212 34644 34574 34465 Face 34213 19339 20390 26187 Face 34214 30250 19259 30185 Face 34215 21969 21970 22067 Face 34216 6635 11053 18356 Face 34217 30708 30707 30613 Face 34218 18048 21170 2298 Face 34219 5907 6597 21543 Face 34220 29155 29285 29284 Face 34221 29300 29299 29169 Face 34222 20179 20180 20261 Face 34223 20895 25795 25775 Face 34224 28633 18799 16706 Face 34225 26096 27380 27379 Face 34226 16827 141 16915 Face 34227 27593 27720 27592 Face 34228 18712 2081 18607 Face 34229 17606 19056 4492 Face 34230 22954 23878 27897 Face 34231 29562 29694 29561 Face 34232 17389 17475 17388 Face 34233 17564 17563 17474 Face 34234 17116 17115 17024 Face 34235 17323 1018 14116 Face 34236 16706 18457 26182 Face 34237 17454 19077 16945 Face 34238 17685 18945 18730 Face 34239 18593 18698 18697 Face 34240 18808 18809 18912 Face 34241 18913 19022 19021 Face 34242 18424 6385 18323 Face 34243 34657 34304 34691 Face 34244 19071 18427 17966 Face 34245 28556 26218 2036 Face 34246 34789 34426 34460 Face 34247 18000 17999 17908 Face 34248 18397 18398 18492 Face 34249 17206 17297 17205 Face 34250 3041 986 17195 Face 34251 17025 17024 16932 Face 34252 17423 18570 18569 Face 34253 16933 17025 16932 Face 34254 2841 2711 19124 Face 34255 17626 17479 17602 Face 34256 18316 18411 18315 Face 34257 17672 18566 18565 Face 34258 17204 17295 17294 Face 34259 34538 34666 34702 Face 34260 7351 7242 11387 Face 34261 34712 34389 34490 Face 34262 17003 17095 17094 Face 34263 17185 17184 17094 Face 34264 16911 17003 17002 Face 34265 17002 17003 17094 Face 34266 16999 17091 16998 Face 34267 16910 16911 17002 Face 34268 17181 17180 17090 Face 34269 17091 17181 17090 Face 34270 4415 18927 17801 Face 34271 16713 24852 20537 Face 34272 27640 27630 26325 Face 34273 2210 2339 2338 Face 34274 18941 18940 20834 Face 34275 18018 18019 18110 Face 34276 16763 18363 18944 Face 34277 19054 16763 18944 Face 34278 17449 17570 18363 Face 34279 16763 17449 18363 Face 34280 18457 28556 2036 Face 34281 34504 34394 34331 Face 34282 16766 34123 6939 Face 34283 3031 34305 34297 Face 34284 16853 16941 16852 Face 34285 25737 25738 23442 Face 34286 19077 17494 18923 Face 34287 18466 17672 18046 Face 34288 14064 17763 16381 Face 34289 1374 1373 1261 Face 34290 16823 16911 16910 Face 34291 17920 17921 18010 Face 34292 31803 31804 31910 Face 34293 19248 2721 2848 Face 34294 17563 17564 17652 Face 34295 19152 18854 18427 Face 34296 18270 18366 18365 Face 34297 18566 18567 17320 Face 34298 18076 18077 18171 Face 34299 18172 18270 18269 Face 34300 18170 18171 18268 Face 34301 18171 18172 18269 Face 34302 18076 18171 18170 Face 34303 18075 18076 18170 Face 34304 6948 17126 6947 Face 34305 18171 18269 18268 Face 34306 18365 18364 18268 Face 34307 18269 18365 18268 Face 34308 30028 30027 29966 Face 34309 24528 28829 24160 Face 34310 24395 25299 25757 Face 34311 17266 2423 2295 Face 34312 29178 29177 29046 Face 34313 29802 17266 21637 Face 34314 6918 26990 29785 Face 34315 30529 30614 30528 Face 34316 652 650 7131 Face 34317 7130 6611 6522 Face 34318 27694 18860 27825 Face 34319 18861 20895 25775 Face 34320 6597 13073 21543 Face 34321 29706 29707 5907 Face 34322 25879 26906 19088 Face 34323 20487 20573 20489 Face 34324 18894 15325 19188 Face 34325 29337 16676 17053 Face 34326 34519 34776 34646 Face 34327 18813 18814 18917 Face 34328 17722 18568 17686 Face 34329 17306 19211 3629 Face 34330 16935 16936 17027 Face 34331 1271 18021 1270 Face 34332 3981 16380 19209 Face 34333 18287 5148 5276 Face 34334 34543 34321 34377 Face 34335 17872 19214 18953 Face 34336 18116 18117 18212 Face 34337 18408 18503 18407 Face 34338 27758 27501 26218 Face 34339 17297 17296 17205 Face 34340 16691 3178 16692 Face 34341 16754 16823 16822 Face 34342 17918 19152 19071 Face 34343 16380 18125 19209 Face 34344 17115 17114 17023 Face 34345 26813 29332 34449 Face 34346 17785 18060 16380 Face 34347 18107 18108 18203 Face 34348 17111 17201 17110 Face 34349 25743 23223 25582 Face 34350 17924 1267 18014 Face 34351 28556 27758 26218 Face 34352 18277 18372 18371 Face 34353 17992 18084 18083 Face 34354 17900 17901 17991 Face 34355 14281 8249 8263 Face 34356 26882 26995 26994 Face 34357 17901 17900 17809 Face 34358 1275 18027 1274 Face 34359 17112 17111 17020 Face 34360 19242 19243 18435 Face 34361 18945 18942 18232 Face 34362 17719 17810 17718 Face 34363 34581 34440 34554 Face 34364 1454 436 17465 Face 34365 17474 17563 17562 Face 34366 18744 17242 18725 Face 34367 17185 17275 17184 Face 34368 5324 5323 18563 Face 34369 17557 17646 17556 Face 34370 18022 18023 18114 Face 34371 18813 18917 18916 Face 34372 18812 18813 18916 Face 34373 17500 18725 15807 Face 34374 26445 26183 26674 Face 34375 17241 18608 18606 Face 34376 18927 19047 19221 Face 34377 18916 19025 19024 Face 34378 17508 17423 18569 Face 34379 18708 18707 18602 Face 34380 18221 18220 18123 Face 34381 1834 18506 1954 Face 34382 27758 18447 28301 Face 34383 18275 18370 18369 Face 34384 7383 148 89 Face 34385 343 237 5905 Face 34386 17752 4149 4020 Face 34387 18587 16948 17446 Face 34388 19126 19235 19234 Face 34389 17899 16763 19054 Face 34390 18944 19668 19054 Face 34391 18817 17449 16763 Face 34392 17899 18817 16763 Face 34393 2305 18576 18680 Face 34394 2078 2079 2205 Face 34395 21739 21836 21738 Face 34396 27447 34780 34628 Face 34397 34649 34468 34563 Face 34398 17121 17122 17211 Face 34399 18113 18209 18208 Face 34400 18575 18679 18574 Face 34401 24373 24512 24511 Face 34402 2210 2338 2209 Face 34403 19220 17514 18924 Face 34404 16822 16823 16910 Face 34405 18584 18433 17368 Face 34406 19133 19242 19241 Face 34407 17045 18245 17046 Face 34408 18013 18014 18105 Face 34409 361 17109 17199 Face 34410 18384 17661 17460 Face 34411 32126 32230 32125 Face 34412 34286 18556 34337 Face 34413 18709 19032 18520 Face 34414 25482 28087 29782 Face 34415 18103 18104 18199 Face 34416 1676 4868 1675 Face 34417 18303 18304 18399 Face 34418 18504 19184 17011 Face 34419 18012 18104 18103 Face 34420 17411 18504 17011 Face 34421 19210 18749 17862 Face 34422 141 16827 16828 Face 34423 18304 18400 18399 Face 34424 17454 16955 19077 Face 34425 3759 18006 3892 Face 34426 19067 18953 4020 Face 34427 16766 6939 6834 Face 34428 17554 436 19118 Face 34429 18588 18693 18692 Face 34430 6733 6832 6732 Face 34431 17918 19071 18749 Face 34432 17110 17200 17109 Face 34433 34799 34513 34676 Face 34434 27501 27758 28301 Face 34435 19032 18236 18520 Face 34436 18473 18472 18378 Face 34437 34492 34273 34570 Face 34438 17374 19032 18709 Face 34439 25492 29337 17053 Face 34440 17045 17046 19156 Face 34441 18596 18597 18701 Face 34442 4199 19156 17369 Face 34443 18918 19027 19026 Face 34444 17470 17559 17469 Face 34445 19224 18626 18608 Face 34446 17385 17386 17471 Face 34447 29853 29852 25421 Face 34448 15493 18052 17687 Face 34449 17021 17112 17020 Face 34450 17909 17908 17816 Face 34451 593 486 594 Face 34452 19175 19214 17872 Face 34453 32016 32120 32015 Face 34454 18500 18501 18599 Face 34455 17533 18959 19011 Face 34456 16753 16754 16822 Face 34457 17966 17785 3981 Face 34458 18427 17785 17966 Face 34459 17785 16380 3981 Face 34460 19015 19124 2581 Face 34461 18276 18277 18371 Face 34462 12653 13815 13824 Face 34463 18179 18277 18276 Face 34464 12653 13824 4853 Face 34465 17991 17992 18083 Face 34466 18178 18179 18276 Face 34467 18084 18179 18178 Face 34468 18083 18084 18178 Face 34469 18568 18567 17686 Face 34470 17722 17686 18467 Face 34471 17810 17901 17809 Face 34472 18613 17508 17763 Face 34473 17718 17629 17719 Face 34474 17901 17992 17991 Face 34475 18591 18696 18695 Face 34476 17810 17809 17718 Face 34477 18447 20536 44 Face 34478 11909 26706 26819 Face 34479 18061 19144 17375 Face 34480 19246 17362 19245 Face 34481 17275 17366 17365 Face 34482 18569 18467 17509 Face 34483 17095 17185 17094 Face 34484 17274 17275 17365 Face 34485 16693 16754 16753 Face 34486 17275 17274 17184 Face 34487 17104 21194 5465 Face 34488 18595 18596 18700 Face 34489 11035 32501 11091 Face 34490 18408 18407 18311 Face 34491 28301 18447 44 Face 34492 21465 12613 28688 Face 34493 27609 16777 27884 Face 34494 34415 34559 34617 Face 34495 12343 18938 18838 Face 34496 373 482 372 Face 34497 18370 18371 2042 Face 34498 19047 18927 4546 Face 34499 2679 16721 18357 Face 34500 17384 17470 17383 Face 34501 15972 19054 20565 Face 34502 34634 34657 34691 Face 34503 34658 34743 34803 Face 34504 34819 34299 34582 Face 34505 139 17224 17012 Face 34506 18577 2180 18680 Face 34507 17320 5456 5325 Face 34508 34713 34502 34708 Face 34509 17334 18744 17493 Face 34510 5201 18604 14005 Face 34511 18711 16062 17576 Face 34512 16758 16827 16826 Face 34513 17321 1452 4288 Face 34514 16757 16758 16826 Face 34515 18499 18500 18598 Face 34516 28494 28493 28359 Face 34517 18379 18380 18473 Face 34518 16404 15058 2925 Face 34519 18245 18384 17460 Face 34520 3982 17691 18991 Face 34521 34533 34292 13663 Face 34522 19069 17717 17661 Face 34523 17038 19115 17315 Face 34524 16921 18579 17754 Face 34525 18520 18236 17956 Face 34526 18893 1567 16563 Face 34527 28498 28634 28141 Face 34528 34558 34280 34530 Face 34529 4667 4536 4668 Face 34530 22807 26063 23244 Face 34531 17919 17920 1375 Face 34532 18111 18112 18207 Face 34533 18530 18641 18535 Face 34534 18112 18208 18207 Face 34535 18242 5747 17491 Face 34536 34353 34379 34278 Face 34537 30580 30674 30579 Face 34538 2042 2041 18369 Face 34539 18748 19002 19162 Face 34540 32967 33101 32966 Face 34541 18273 18274 18368 Face 34542 18032 17443 18926 Face 34543 16813 16901 16812 Face 34544 16993 17087 19578 Face 34545 16744 16813 16743 Face 34546 16901 16993 16900 Face 34547 34118 34242 34117 Face 34548 16901 16900 16812 Face 34549 16683 33594 16684 Face 34550 16813 16812 16743 Face 34551 17754 17374 18709 Face 34552 17602 17479 19144 Face 34553 17499 17675 18621 Face 34554 17278 18001 17585 Face 34555 18384 19069 17661 Face 34556 18204 18300 18299 Face 34557 18493 18494 18592 Face 34558 18472 18473 18573 Face 34559 27227 27337 27336 Face 34560 17924 17923 17831 Face 34561 18886 17321 18242 Face 34562 21491 21584 28360 Face 34563 16827 16915 16914 Face 34564 16826 16827 16914 Face 34565 16915 17007 17006 Face 34566 16914 16915 17006 Face 34567 17907 17906 1245 Face 34568 17645 1037 927 Face 34569 19243 17965 18435 Face 34570 18211 18307 18306 Face 34571 17296 17386 17385 Face 34572 17375 18924 17331 Face 34573 16941 17033 17032 Face 34574 17593 17666 17552 Face 34575 17472 17561 17560 Face 34576 17635 19071 17784 Face 34577 481 480 371 Face 34578 17295 17296 17385 Face 34579 17386 17472 17471 Face 34580 14355 17286 17987 Face 34581 18398 18399 18493 Face 34582 18959 17874 19175 Face 34583 18812 18916 18915 Face 34584 18811 18812 18915 Face 34585 17371 17602 18061 Face 34586 11276 34529 10921 Face 34587 31594 31708 31593 Face 34588 1165 1273 1272 Face 34589 34692 11947 1543 Face 34590 16688 16750 16749 Face 34591 26338 25539 25535 Face 34592 18447 25653 20536 Face 34593 16819 16818 16749 Face 34594 16750 16819 16749 Face 34595 16907 16906 16818 Face 34596 16819 16907 16818 Face 34597 16907 16999 16906 Face 34598 19162 18060 17785 Face 34599 16999 16998 16906 Face 34600 17091 17090 16998 Face 34601 19028 19027 18918 Face 34602 18811 18915 18914 Face 34603 18491 18590 18589 Face 34604 17654 17653 17564 Face 34605 4453 10642 4586 Face 34606 18490 18491 18589 Face 34607 17290 579 470 Face 34608 34157 34759 34550 Face 34609 2435 18788 2306 Face 34610 19114 17375 17331 Face 34611 16850 16851 16938 Face 34612 25853 6657 6656 Face 34613 4946 14100 4945 Face 34614 17011 17876 17967 Face 34615 18395 18396 18490 Face 34616 3800 2897 4085 Face 34617 31582 31696 31581 Face 34618 18396 18491 18490 Face 34619 18026 18118 18117 Face 34620 18175 18273 18272 Face 34621 19123 17234 18586 Face 34622 34634 34691 34770 Face 34623 13650 16068 16067 Face 34624 23117 23118 20536 Face 34625 34741 20717 34435 Face 34626 6730 6729 34242 Face 34627 17563 17652 17651 Face 34628 17207 17206 17116 Face 34629 17035 17126 17125 Face 34630 14105 15228 15227 Face 34631 16926 17018 16925 Face 34632 17468 17557 17467 Face 34633 18299 18300 18395 Face 34634 17028 17119 17118 Face 34635 17234 19123 2508 Face 34636 18950 17815 17838 Face 34637 10813 547 1092 Face 34638 18994 17414 18853 Face 34639 18345 17444 17219 Face 34640 17044 17041 18540 Face 34641 19250 18636 17971 Face 34642 1387 1388 1501 Face 34643 23601 28166 23600 Face 34644 29072 29084 19456 Face 34645 6522 6611 6635 Face 34646 11053 18505 18356 Face 34647 18131 17938 19119 Face 34648 25478 27867 18456 Face 34649 25784 25675 25785 Face 34650 19228 17753 17309 Face 34651 17371 3509 19104 Face 34652 17917 17456 18133 Face 34653 2451 2323 2452 Face 34654 1473 18000 1359 Face 34655 1387 1501 18119 Face 34656 5238 18419 18031 Face 34657 18331 18622 18833 Face 34658 18496 18497 18595 Face 34659 17753 18331 17881 Face 34660 17881 18331 18833 Face 34661 18622 1212 17235 Face 34662 17309 17753 17881 Face 34663 17678 17588 17767 Face 34664 18833 18622 17235 Face 34665 1212 17588 17678 Face 34666 16861 17456 17917 Face 34667 17235 1212 17678 Face 34668 17588 16861 17767 Face 34669 17938 19228 19119 Face 34670 17767 16861 17917 Face 34671 3855 3983 18516 Face 34672 17220 17221 17231 Face 34673 17675 17278 17585 Face 34674 34635 34575 34395 Face 34675 18404 18405 18499 Face 34676 18989 17499 18988 Face 34677 16381 18438 158 Face 34678 25960 27246 28693 Face 34679 17368 18991 18990 Face 34680 4586 4585 4453 Face 34681 18402 18497 18496 Face 34682 325 20535 11006 Face 34683 34665 34664 34557 Face 34684 15228 14105 18817 Face 34685 18200 18201 1713 Face 34686 18803 18804 18907 Face 34687 791 790 17367 Face 34688 14766 23716 21028 Face 34689 17905 17904 17813 Face 34690 18283 18378 18377 Face 34691 25741 19602 23787 Face 34692 17959 17407 15618 Face 34693 19018 19128 19127 Face 34694 17564 17653 17652 Face 34695 18407 18502 18501 Face 34696 17841 17677 19184 Face 34697 6649 6743 16856 Face 34698 1490 18103 1602 Face 34699 17652 17653 17742 Face 34700 7447 1113 7337 Face 34701 2305 18788 2434 Face 34702 4868 17373 2902 Face 34703 16930 17022 16929 Face 34704 1311 3437 3308 Face 34705 19049 18247 18585 Face 34706 18585 18901 1343 Face 34707 18671 1312 18726 Face 34708 18749 18750 17862 Face 34709 4240 4366 17936 Face 34710 17313 17403 17596 Face 34711 16925 17017 253 Face 34712 18737 4492 19056 Face 34713 18091 18186 18185 Face 34714 34778 34765 34694 Face 34715 17640 17845 1423 Face 34716 17368 3982 18991 Face 34717 18991 17691 18955 Face 34718 19105 17808 17408 Face 34719 18161 19159 16857 Face 34720 20462 18079 18174 Face 34721 17473 17474 17562 Face 34722 7154 10832 7155 Face 34723 17927 17925 18744 Face 34724 34671 20884 34705 Face 34725 17905 17996 17995 Face 34726 17904 17905 17995 Face 34727 17996 18088 18087 Face 34728 17995 17996 18087 Face 34729 18088 18183 18182 Face 34730 18087 18088 18182 Face 34731 18183 18281 18280 Face 34732 18182 18183 18280 Face 34733 18281 18376 18375 Face 34734 18280 18281 18375 Face 34735 19209 18125 553 Face 34736 18376 18470 18469 Face 34737 18174 18175 18272 Face 34738 17651 17741 17740 Face 34739 17959 19123 18841 Face 34740 18841 2105 11038 Face 34741 34495 34799 34639 Face 34742 2466 2337 2338 Face 34743 17730 17604 525 Face 34744 17556 927 811 Face 34745 25639 25640 25741 Face 34746 18162 17334 17493 Face 34747 18067 2756 15184 Face 34748 18375 18376 18469 Face 34749 18469 18470 2174 Face 34750 17044 18540 3500 Face 34751 674 18613 14064 Face 34752 18567 18568 17241 Face 34753 3500 3499 19170 Face 34754 17234 15228 17899 Face 34755 17808 18161 16857 Face 34756 18994 18853 19159 Face 34757 18778 18882 17444 Face 34758 17846 18345 17219 Face 34759 18239 18636 19250 Face 34760 18238 18239 19250 Face 34761 18292 17716 18387 Face 34762 17716 18431 18387 Face 34763 17294 17384 17293 Face 34764 359 253 360 Face 34765 18235 19232 19207 Face 34766 19119 19228 17309 Face 34767 17141 18235 18231 Face 34768 17129 17141 18231 Face 34769 16779 18609 17871 Face 34770 17774 19074 17322 Face 34771 18609 16779 18539 Face 34772 18250 18609 18539 Face 34773 17082 17141 17129 Face 34774 18609 17774 17871 Face 34775 17871 17774 17322 Face 34776 1015 17082 17129 Face 34777 19074 17082 1015 Face 34778 17322 19074 1015 Face 34779 13092 34833 6802 Face 34780 25646 25855 26791 Face 34781 25457 25325 24469 Face 34782 18643 17570 6392 Face 34783 34567 34628 34566 Face 34784 17651 17652 17741 Face 34785 19232 18614 17196 Face 34786 17196 18614 19120 Face 34787 18231 18235 19207 Face 34788 19207 19232 17196 Face 34789 18422 17231 17409 Face 34790 17495 18422 17409 Face 34791 28896 28897 29023 Face 34792 34502 34503 34709 Face 34793 17660 18989 18792 Face 34794 17499 18621 18988 Face 34795 17513 17841 18504 Face 34796 19162 19002 18060 Face 34797 18603 18708 18602 Face 34798 28687 27381 29199 Face 34799 17362 16860 18481 Face 34800 17824 4856 4996 Face 34801 18400 18401 18495 Face 34802 17280 17862 18836 Face 34803 1267 17926 18015 Face 34804 18470 18571 2174 Face 34805 17514 19210 17331 Face 34806 5461 15322 14172 Face 34807 17366 17367 790 Face 34808 29405 26785 20815 Face 34809 5747 19221 17491 Face 34810 18080 18175 18174 Face 34811 17847 18737 17960 Face 34812 18310 18311 18406 Face 34813 17847 17960 17717 Face 34814 19069 17847 17717 Face 34815 28086 21303 21396 Face 34816 18737 19056 17960 Face 34817 21303 28086 27954 Face 34818 17875 17784 18884 Face 34819 28494 28631 28493 Face 34820 19064 18846 18463 Face 34821 1269 18019 18018 Face 34822 18307 18403 18402 Face 34823 5658 5531 5659 Face 34824 34777 34627 34294 Face 34825 18846 19064 17173 Face 34826 18219 18315 1614 Face 34827 18315 18219 18220 Face 34828 17146 18287 18239 Face 34829 17145 17146 18239 Face 34830 18287 17505 18636 Face 34831 18239 18287 18636 Face 34832 17505 18619 18336 Face 34833 18636 17505 18336 Face 34834 5657 5531 5658 Face 34835 149 6009 17969 Face 34836 18232 17107 19180 Face 34837 19178 19105 19072 Face 34838 17808 16857 17408 Face 34839 16846 16934 16933 Face 34840 33092 33227 33091 Face 34841 25493 6918 26872 Face 34842 18679 18786 18678 Face 34843 18271 18367 18366 Face 34844 32021 32020 31915 Face 34845 17596 17394 17752 Face 34846 1311 3308 1312 Face 34847 19235 19236 17038 Face 34848 17383 17469 17382 Face 34849 18590 18591 18695 Face 34850 17298 17297 17206 Face 34851 16945 18923 19039 Face 34852 17738 17737 17647 Face 34853 18678 18785 18677 Face 34854 18213 18214 18309 Face 34855 18841 17407 17959 Face 34856 4623 4492 4493 Face 34857 18364 18365 18366 Face 34858 19830 17363 17451 Face 34859 17291 17290 17199 Face 34860 17666 16381 17587 Face 34861 18020 18021 18112 Face 34862 933 15227 2508 Face 34863 12366 17538 14151 Face 34864 34719 34376 34281 Face 34865 17113 17112 17021 Face 34866 17558 17647 17557 Face 34867 17647 17646 17557 Face 34868 17647 17737 17646 Face 34869 11233 6406 7135 Face 34870 17737 17736 17646 Face 34871 17207 17298 17206 Face 34872 18125 17215 553 Face 34873 28020 27568 27888 Face 34874 6406 6633 21276 Face 34875 18345 18778 17444 Face 34876 18161 18994 19159 Face 34877 27999 26680 27274 Face 34878 18778 18947 18673 Face 34879 19046 1576 18431 Face 34880 18636 18336 17971 Face 34881 18431 17238 17658 Face 34882 17716 19046 18431 Face 34883 21073 28634 25644 Face 34884 16062 17693 17576 Face 34885 18727 17330 17419 Face 34886 18916 18917 19025 Face 34887 27251 11751 23433 Face 34888 18205 18301 18300 Face 34889 16899 16898 16810 Face 34890 18816 18920 18815 Face 34891 16811 16810 16741 Face 34892 16742 16811 16741 Face 34893 18202 18298 18297 Face 34894 16742 16741 16682 Face 34895 18393 18394 18488 Face 34896 16682 33333 33466 Face 34897 17922 17923 18012 Face 34898 34349 34640 34274 Face 34899 1164 1272 1271 Face 34900 29271 29272 29402 Face 34901 31734 31846 31733 Face 34902 15807 4668 4536 Face 34903 2306 2180 2181 Face 34904 18305 18306 18401 Face 34905 2461 2462 2590 Face 34906 18013 18105 18104 Face 34907 27224 27223 27107 Face 34908 20359 20447 20446 Face 34909 19143 17354 17484 Face 34910 17354 17495 17409 Face 34911 28946 5246 29073 Face 34912 25760 25761 25867 Face 34913 7343 7235 7236 Face 34914 29157 29287 29286 Face 34915 27708 27837 27836 Face 34916 20537 17057 16713 Face 34917 1375 1374 17919 Face 34918 18397 18492 18491 Face 34919 1837 1956 1836 Face 34920 34750 34346 34513 Face 34921 17844 16218 17427 Face 34922 17464 17457 17677 Face 34923 18638 18637 18774 Face 34924 452 17187 17097 Face 34925 19242 18435 18385 Face 34926 17215 17835 17302 Face 34927 30146 30210 30209 Face 34928 16860 18032 18481 Face 34929 17217 17513 18504 Face 34930 17324 6147 3041 Face 34931 29752 6280 28154 Face 34932 18578 18568 17722 Face 34933 18579 17374 17754 Face 34934 17675 17585 18621 Face 34935 17818 18579 16921 Face 34936 17914 17818 16921 Face 34937 19060 17818 17914 Face 34938 16834 19060 17914 Face 34939 17946 18630 18050 Face 34940 18155 19060 16834 Face 34941 18881 18673 17946 Face 34942 18050 18155 16834 Face 34943 18883 18882 18881 Face 34944 18630 18155 18050 Face 34945 17444 18882 19223 Face 34946 18673 18630 17946 Face 34947 17219 17444 17130 Face 34948 18882 18673 18881 Face 34949 17278 17219 18001 Face 34950 18882 18883 19223 Face 34951 17219 17130 18001 Face 34952 17444 19223 17130 Face 34953 17145 18239 18238 Face 34954 17144 17145 18238 Face 34955 18947 18056 18630 Face 34956 18673 18947 18630 Face 34957 19166 19178 17304 Face 34958 19105 17408 19072 Face 34959 2039 18366 2040 Face 34960 26301 27505 25478 Face 34961 18695 18696 18803 Face 34962 3695 17691 2153 Face 34963 17736 17737 17826 Face 34964 17737 17827 17826 Face 34965 19021 19022 19131 Face 34966 16775 13086 18823 Face 34967 18475 18474 18380 Face 34968 18115 18211 18210 Face 34969 18678 18677 18573 Face 34970 19016 19017 19126 Face 34971 19132 19241 19240 Face 34972 17225 17775 5781 Face 34973 17693 17493 17500 Face 34974 14832 17780 14956 Face 34975 907 19981 19903 Face 34976 1343 18901 2918 Face 34977 18853 17847 19069 Face 34978 2508 17959 14494 Face 34979 18707 18706 18601 Face 34980 18597 18702 18701 Face 34981 16769 16839 16838 Face 34982 18802 18803 18906 Face 34983 16943 16942 16854 Face 34984 16855 16943 16854 Face 34985 18122 1390 1391 Face 34986 16937 16936 16848 Face 34987 17926 1268 18016 Face 34988 18286 18285 18187 Face 34989 17262 19150 19247 Face 34990 1268 1269 18018 Face 34991 17987 14472 14354 Face 34992 547 2648 1092 Face 34993 18736 18250 19155 Face 34994 26701 25493 25637 Face 34995 4367 18538 4366 Face 34996 34620 34748 34516 Face 34997 3110 3111 3245 Face 34998 18882 18778 18673 Face 34999 23249 15733 19456 Face 35000 26876 26990 26811 Face 35001 17323 17928 1018 Face 35002 17400 17574 1576 Face 35003 18961 18642 18962 Face 35004 18387 17658 17930 Face 35005 17330 17235 17766 Face 35006 17758 17149 19177 Face 35007 17398 18620 19141 Face 35008 18691 18727 17417 Face 35009 21886 21790 29019 Face 35010 6531 7131 6398 Face 35011 29056 21797 29187 Face 35012 6613 18255 25493 Face 35013 29199 25653 18447 Face 35014 32134 32238 32133 Face 35015 18163 19041 18029 Face 35016 31262 31261 31160 Face 35017 6635 18356 22439 Face 35018 19106 18163 18029 Face 35019 19106 18029 16924 Face 35020 16916 19106 16924 Face 35021 18065 18632 18964 Face 35022 18687 16830 19041 Face 35023 18163 18687 19041 Face 35024 18963 18964 16830 Face 35025 18963 18065 18964 Face 35026 18687 18963 16830 Face 35027 18012 18013 18104 Face 35028 16863 18946 18632 Face 35029 25539 26336 25535 Face 35030 18919 18918 18814 Face 35031 18334 17354 17409 Face 35032 17597 17214 19040 Face 35033 2172 12120 2171 Face 35034 17354 18334 17484 Face 35035 18989 18988 18792 Face 35036 17236 16765 11165 Face 35037 23321 26543 26542 Face 35038 28923 28922 28796 Face 35039 18401 18402 18496 Face 35040 27754 28269 28011 Face 35041 17125 17126 373 Face 35042 17222 19076 19114 Face 35043 17321 17801 5747 Face 35044 29078 27266 18987 Face 35045 18885 19078 19230 Face 35046 17030 17121 17120 Face 35047 18880 17780 14832 Face 35048 16938 16937 16849 Face 35049 17625 17499 18989 Face 35050 19138 19137 19027 Face 35051 17133 17222 16218 Face 35052 18990 17625 18989 Face 35053 18348 17443 18032 Face 35054 18499 18598 18597 Face 35055 17204 17205 17295 Face 35056 17845 17846 17285 Face 35057 18815 18919 18814 Face 35058 2897 1423 17845 Face 35059 18503 18502 18407 Face 35060 18176 18274 18273 Face 35061 18169 18267 18266 Face 35062 13647 14816 14941 Face 35063 13554 13553 15073 Face 35064 18168 18169 18266 Face 35065 18074 18169 18168 Face 35066 18073 18074 18168 Face 35067 29792 24349 29791 Face 35068 3900 4028 19002 Face 35069 429 28687 18799 Face 35070 29714 27639 26297 Face 35071 27996 25482 3588 Face 35072 26650 26765 26764 Face 35073 2295 2423 651 Face 35074 2169 2292 18756 Face 35075 17173 17145 17144 Face 35076 17083 17173 17144 Face 35077 18056 18192 18155 Face 35078 18630 18056 18155 Face 35079 34615 34735 34461 Face 35080 19178 19072 17304 Face 35081 32048 32152 32047 Face 35082 3592 18441 17537 Face 35083 17335 18466 18745 Face 35084 19181 19180 18147 Face 35085 26062 26175 26174 Face 35086 16943 17035 17034 Face 35087 33915 16919 5465 Face 35088 23367 6399 24477 Face 35089 23987 24109 1459 Face 35090 17602 19144 18061 Face 35091 26305 26338 25535 Face 35092 4111 18051 17572 Face 35093 16839 16927 16838 Face 35094 18405 18500 18499 Face 35095 18506 1834 18410 Face 35096 18381 18475 18380 Face 35097 27999 27274 7584 Face 35098 20390 21658 27270 Face 35099 17427 17280 18836 Face 35100 27505 17958 649 Face 35101 17687 15635 15493 Face 35102 110 6768 109 Face 35103 17672 17686 18566 Face 35104 17677 17457 18483 Face 35105 18162 17493 17693 Face 35106 17118 17208 17117 Face 35107 19221 18637 18638 Face 35108 19026 19136 19135 Face 35109 17200 17199 17109 Face 35110 16874 16873 16785 Face 35111 20971 21064 21063 Face 35112 17951 17086 17410 Face 35113 16874 16966 16873 Face 35114 27837 27969 27968 Face 35115 19308 17060 19385 Face 35116 18021 18113 18112 Face 35117 17593 17552 18747 Face 35118 17028 17029 17119 Face 35119 17403 4405 17394 Face 35120 372 371 17123 Face 35121 18701 18809 18808 Face 35122 1460 1574 18817 Face 35123 18700 18701 18808 Face 35124 374 483 373 Face 35125 18475 18576 18474 Face 35126 13202 18256 17551 Face 35127 32288 32289 32394 Face 35128 17291 17381 17290 Face 35129 19195 29347 29277 Face 35130 540 18033 17942 Face 35131 34810 34798 34785 Face 35132 27456 27455 27336 Face 35133 26990 13002 26811 Face 35134 18904 18961 18009 Face 35135 25676 25786 25785 Face 35136 17678 17767 17634 Face 35137 18642 18387 17930 Face 35138 18390 19007 17398 Face 35139 17766 17678 17634 Face 35140 3638 3768 17626 Face 35141 19141 18691 17417 Face 35142 18439 17638 17404 Face 35143 18897 17775 18432 Face 35144 11139 11078 11079 Face 35145 17404 17314 18515 Face 35146 18805 18909 18908 Face 35147 17829 17921 17920 Face 35148 6033 10841 13857 Face 35149 17655 1792 17644 Face 35150 16917 17730 17674 Face 35151 793 17147 792 Face 35152 1834 1723 18410 Face 35153 17693 17500 17313 Face 35154 18037 17730 16917 Face 35155 17512 18037 16917 Face 35156 19151 18037 17512 Face 35157 17105 19151 17512 Face 35158 17419 18856 18903 Face 35159 18903 18856 17105 Face 35160 16863 17911 18946 Face 35161 18777 18138 17237 Face 35162 18105 18106 18201 Face 35163 17294 17293 17202 Face 35164 18931 17597 19040 Face 35165 17484 18832 17214 Face 35166 19040 28409 18931 Face 35167 19143 17484 17597 Face 35168 23069 29538 23015 Face 35169 26908 26926 28361 Face 35170 26098 26099 27390 Face 35171 21118 27822 27691 Face 35172 17660 17729 17502 Face 35173 29918 29917 29863 Face 35174 17934 17358 17464 Face 35175 17934 17844 17358 Face 35176 156 16925 253 Face 35177 16777 16855 16776 Face 35178 19247 19246 19137 Face 35179 19028 19138 19027 Face 35180 17285 17278 17675 Face 35181 17509 18467 17335 Face 35182 17721 1135 17813 Face 35183 17106 791 17147 Face 35184 17104 19218 19185 Face 35185 29442 29441 29310 Face 35186 33287 17225 5909 Face 35187 17172 18904 17549 Face 35188 18522 17870 18131 Face 35189 6280 29752 27697 Face 35190 18933 17059 18522 Face 35191 17870 17938 18131 Face 35192 17963 18434 18933 Face 35193 17059 17870 18522 Face 35194 18434 17963 18682 Face 35195 17762 18434 18682 Face 35196 17762 18682 17915 Face 35197 18434 17059 18933 Face 35198 18951 18146 17915 Face 35199 18146 17762 17915 Face 35200 17220 18951 17149 Face 35201 17149 18951 17915 Face 35202 18422 17220 17231 Face 35203 17221 17220 17149 Face 35204 3855 3722 3723 Face 35205 17023 17114 17113 Face 35206 19046 17400 1576 Face 35207 17694 17695 17574 Face 35208 18463 18846 18030 Face 35209 18846 17173 17083 Face 35210 18192 19059 19060 Face 35211 18155 18192 19060 Face 35212 16573 16412 2786 Face 35213 27505 25855 25478 Face 35214 18441 16831 17537 Face 35215 17537 17232 5123 Face 35216 17671 17545 17457 Face 35217 18516 17641 16831 Face 35218 18815 18814 18706 Face 35219 18912 18913 19021 Face 35220 18203 18204 18299 Face 35221 3161 14927 2675 Face 35222 17752 17394 4149 Face 35223 4404 17394 4405 Face 35224 18576 18575 18474 Face 35225 18300 18396 18395 Face 35226 34667 34821 34832 Face 35227 17558 17557 17468 Face 35228 1343 149 17969 Face 35229 18286 18381 18285 Face 35230 5583 5456 5584 Face 35231 34429 34621 34576 Face 35232 2033 15331 15594 Face 35233 18712 2208 2081 Face 35234 14116 15322 17323 Face 35235 374 17126 7058 Face 35236 19136 19245 19244 Face 35237 18842 17371 17042 Face 35238 17827 17828 17919 Face 35239 19025 19026 19135 Face 35240 19245 18481 18582 Face 35241 19135 19136 19244 Face 35242 16875 16874 16786 Face 35243 31653 16786 16785 Face 35244 16967 16966 16874 Face 35245 16875 16967 16874 Face 35246 17061 17060 16966 Face 35247 16967 17061 16966 Face 35248 18185 18283 18282 Face 35249 17152 17151 17061 Face 35250 19214 17752 18953 Face 35251 27166 27279 12341 Face 35252 3759 19211 18006 Face 35253 17208 17299 17298 Face 35254 17299 17389 17388 Face 35255 18109 18205 18204 Face 35256 17390 17389 17299 Face 35257 20699 27731 27730 Face 35258 18786 2434 2433 Face 35259 20462 18078 20377 Face 35260 18473 18574 18573 Face 35261 15029 34642 21648 Face 35262 18270 18271 18366 Face 35263 30868 30969 30867 Face 35264 16922 18098 17582 Face 35265 34510 34433 34395 Face 35266 650 7130 7131 Face 35267 17549 18904 18776 Face 35268 18542 25952 25903 Face 35269 17767 17917 18751 Face 35270 18642 17930 18962 Face 35271 17681 19007 18464 Face 35272 17634 17767 18751 Face 35273 28759 28758 28630 Face 35274 18620 18691 19141 Face 35275 17805 17227 18439 Face 35276 18385 17685 18837 Face 35277 18964 18632 18858 Face 35278 17314 18514 18515 Face 35279 18964 18858 19101 Face 35280 16830 18964 19101 Face 35281 18946 18790 17265 Face 35282 18632 17265 18858 Face 35283 17237 18138 17895 Face 35284 18632 18946 17265 Face 35285 17237 17895 18790 Face 35286 16781 18246 17461 Face 35287 18946 17237 18790 Face 35288 18138 17461 17895 Face 35289 18138 16781 17461 Face 35290 16781 18071 18324 Face 35291 19041 16830 18252 Face 35292 18246 16781 18324 Face 35293 17503 17419 18903 Face 35294 18856 19151 17105 Face 35295 17911 18777 17237 Face 35296 17417 17419 17503 Face 35297 158 16062 18711 Face 35298 19155 16781 18138 Face 35299 17597 17484 17214 Face 35300 26540 26656 26655 Face 35301 17498 19143 17597 Face 35302 18334 17539 18832 Face 35303 12060 5246 28946 Face 35304 26336 27640 26325 Face 35305 30342 30409 30341 Face 35306 28632 21776 28760 Face 35307 17660 18792 18825 Face 35308 29704 29705 18828 Face 35309 18990 18989 17660 Face 35310 18525 17502 17729 Face 35311 17625 4085 17499 Face 35312 17502 18990 17660 Face 35313 17846 17219 17278 Face 35314 4085 17285 17675 Face 35315 18677 18676 18572 Face 35316 17285 17846 17278 Face 35317 17172 17137 18904 Face 35318 29142 29272 29271 Face 35319 25795 27636 27632 Face 35320 18142 18642 18961 Face 35321 2170 650 652 Face 35322 652 7131 6531 Face 35323 18870 26568 18448 Face 35324 23023 34473 34590 Face 35325 27101 27157 27767 Face 35326 22708 15733 23249 Face 35327 20890 7017 7018 Face 35328 27268 18870 18448 Face 35329 651 20890 7018 Face 35330 23713 11081 22692 Face 35331 18529 17452 17365 Face 35332 5199 2786 16574 Face 35333 5238 18031 18616 Face 35334 26539 26540 26655 Face 35335 26536 26537 26652 Face 35336 26768 26767 26652 Face 35337 11991 11908 11909 Face 35338 32242 32348 32241 Face 35339 17294 17295 17384 Face 35340 27108 27224 27107 Face 35341 17400 17694 17574 Face 35342 19237 19173 19115 Face 35343 17643 18846 17083 Face 35344 17764 17776 17695 Face 35345 19059 17788 17818 Face 35346 17833 18463 17764 Face 35347 19166 17304 17852 Face 35348 19060 19059 17818 Face 35349 18257 29464 28092 Face 35350 27270 7584 26178 Face 35351 18441 18516 16831 Face 35352 34401 28499 27901 Face 35353 18516 17806 17641 Face 35354 17806 17807 17641 Face 35355 17806 17572 17807 Face 35356 17572 3373 17807 Face 35357 17015 6726 18263 Face 35358 18051 17270 3373 Face 35359 17572 18051 3373 Face 35360 6726 26186 18263 Face 35361 17936 18325 17270 Face 35362 18051 17936 17270 Face 35363 28522 28657 28656 Face 35364 14355 14245 17535 Face 35365 17233 18041 21662 Face 35366 24244 23196 24234 Face 35367 17579 17671 17457 Face 35368 26771 26770 26655 Face 35369 17173 5021 17145 Face 35370 17788 16762 17824 Face 35371 18411 18410 18315 Face 35372 1696 1586 1587 Face 35373 19076 17222 18922 Face 35374 17756 19209 3505 Face 35375 5533 18336 18619 Face 35376 16876 16875 16787 Face 35377 31654 16787 31653 Face 35378 16968 16967 16875 Face 35379 16876 16968 16875 Face 35380 17062 17061 16967 Face 35381 16968 17062 16967 Face 35382 17153 17152 17062 Face 35383 17062 17152 17061 Face 35384 17300 17390 17299 Face 35385 17965 18942 18945 Face 35386 18435 17965 18945 Face 35387 18598 18703 18702 Face 35388 20288 17985 18075 Face 35389 18747 18852 17511 Face 35390 19020 19021 19130 Face 35391 25855 25646 27867 Face 35392 18077 18078 18172 Face 35393 17653 17654 1044 Face 35394 17479 18854 19220 Face 35395 18173 18271 18270 Face 35396 6621 6799 3210 Face 35397 17622 18098 16922 Face 35398 26452 19037 25960 Face 35399 26586 26679 28949 Face 35400 19185 17549 17898 Face 35401 27246 27754 28693 Face 35402 17917 18133 17604 Face 35403 18961 18962 18009 Face 35404 19227 17681 17897 Face 35405 18751 17917 17604 Face 35406 26656 26771 26655 Face 35407 19007 18620 17398 Face 35408 17415 17392 18666 Face 35409 26771 26885 26884 Face 35410 18344 18897 17406 Face 35411 17638 17314 17404 Face 35412 18534 18638 18690 Face 35413 19079 18344 17406 Face 35414 16809 16897 16808 Face 35415 23707 16716 23712 Face 35416 16740 16809 16739 Face 35417 19412 16897 16898 Face 35418 26012 32928 16680 Face 35419 16809 16808 16739 Face 35420 18108 18204 18203 Face 35421 16768 16767 33873 Face 35422 25421 25457 25456 Face 35423 16681 16740 16739 Face 35424 18029 19041 18252 Face 35425 34326 34303 34631 Face 35426 16844 16932 16931 Face 35427 16830 19101 18252 Face 35428 26770 26771 26884 Face 35429 18257 28092 28363 Face 35430 17692 17417 17503 Face 35431 1158 1159 1267 Face 35432 18777 19155 18138 Face 35433 18674 19141 17692 Face 35434 16942 16943 17034 Face 35435 18539 18071 16781 Face 35436 17484 18334 18832 Face 35437 19104 3509 3638 Face 35438 17498 17597 18931 Face 35439 18334 17409 17319 Face 35440 5387 5388 18765 Face 35441 6910 19377 19701 Face 35442 18408 1722 1833 Face 35443 33669 17492 17336 Face 35444 17018 17017 16925 Face 35445 19114 17331 17280 Face 35446 18922 17222 17133 Face 35447 17177 18922 17133 Face 35448 18110 18206 18205 Face 35449 18573 18677 18572 Face 35450 17705 17706 17796 Face 35451 18303 18399 18398 Face 35452 17130 17220 18422 Face 35453 17888 17979 17978 Face 35454 18621 17585 17354 Face 35455 18001 17130 18422 Face 35456 18001 18422 17495 Face 35457 17585 18001 17495 Face 35458 19223 18951 17220 Face 35459 17130 19223 17220 Face 35460 18881 17946 18434 Face 35461 23445 23444 22911 Face 35462 19223 18883 18951 Face 35463 17762 18881 18434 Face 35464 26651 20094 26536 Face 35465 18883 18881 17762 Face 35466 29537 26419 29535 Face 35467 16519 313 22146 Face 35468 19177 18420 17896 Face 35469 26885 26998 26997 Face 35470 33621 33620 33493 Face 35471 19164 17401 17782 Face 35472 19131 19132 19240 Face 35473 18745 17334 18162 Face 35474 18682 18420 19177 Face 35475 18700 18808 18807 Face 35476 4946 5077 14100 Face 35477 17915 18682 19177 Face 35478 17694 17764 17695 Face 35479 16903 16902 16814 Face 35480 18846 17643 18030 Face 35481 18030 16544 17776 Face 35482 17788 17824 18579 Face 35483 17606 17833 17694 Face 35484 2000 18236 19032 Face 35485 17818 17788 18579 Face 35486 23423 23548 14428 Face 35487 18579 17824 17374 Face 35488 29473 29327 27486 Face 35489 16714 18358 28131 Face 35490 32336 32448 32335 Face 35491 32336 32335 32229 Face 35492 25733 25734 23369 Face 35493 18505 29584 28934 Face 35494 25878 19383 25984 Face 35495 18356 18505 28934 Face 35496 25418 26177 26126 Face 35497 25633 25734 25733 Face 35498 6531 6398 11542 Face 35499 25632 25633 25733 Face 35500 5533 5532 18336 Face 35501 17559 17648 17558 Face 35502 18119 18215 18118 Face 35503 18311 18310 18214 Face 35504 33368 33367 33231 Face 35505 16815 16814 16745 Face 35506 18854 19162 18427 Face 35507 13652 13650 16067 Face 35508 18694 18695 18802 Face 35509 16787 31774 16788 Face 35510 16877 16876 16788 Face 35511 16789 16877 16788 Face 35512 16969 16968 16876 Face 35513 16877 16969 16876 Face 35514 17063 17062 16968 Face 35515 16969 17063 16968 Face 35516 3683 9201 1121 Face 35517 17063 17153 17062 Face 35518 18702 18703 18810 Face 35519 7337 7338 7447 Face 35520 17828 17920 17919 Face 35521 18018 18110 18109 Face 35522 18747 17552 18852 Face 35523 18854 19152 19220 Face 35524 14656 15444 15306 Face 35525 18093 18092 18000 Face 35526 34293 34600 34750 Face 35527 17019 17110 17018 Face 35528 19154 17041 17044 Face 35529 18172 18173 18270 Face 35530 26764 26765 26878 Face 35531 17306 3629 18540 Face 35532 19377 26338 26305 Face 35533 26440 28287 26987 Face 35534 18039 16916 8369 Face 35535 29060 29191 29059 Face 35536 26884 26885 26997 Face 35537 18904 18009 18776 Face 35538 18130 19227 18227 Face 35539 374 375 484 Face 35540 26998 27114 27113 Face 35541 19007 18390 18464 Face 35542 18486 17415 18666 Face 35543 26997 26998 27113 Face 35544 16964 23380 29614 Face 35545 17415 17227 17805 Face 35546 18492 18493 18591 Face 35547 33287 18432 17225 Face 35548 16920 18898 17303 Face 35549 17120 17210 17209 Face 35550 17128 18388 18800 Face 35551 18851 17303 18517 Face 35552 18851 16920 17303 Face 35553 18388 18851 18517 Face 35554 16920 17131 18898 Face 35555 17131 17397 18898 Face 35556 17128 18800 19055 Face 35557 18388 18517 18800 Face 35558 18726 2902 17373 Face 35559 17126 6948 7058 Face 35560 34423 34369 34333 Face 35561 25950 25949 25840 Face 35562 18224 18052 1319 Face 35563 20064 18521 20633 Face 35564 27332 26990 6918 Face 35565 34712 34703 34389 Face 35566 17553 17547 18628 Face 35567 28287 25964 26987 Face 35568 11896 11897 11980 Face 35569 28797 28796 28667 Face 35570 18418 18322 18289 Face 35571 6281 28299 29482 Face 35572 18905 4944 17735 Face 35573 18912 19021 19020 Face 35574 17539 18334 17319 Face 35575 17231 17577 17319 Face 35576 7121 18542 25903 Face 35577 18937 19231 325 Face 35578 32358 32357 32251 Face 35579 28760 28887 28759 Face 35580 19218 17172 17549 Face 35581 19218 17549 19185 Face 35582 17137 18142 18961 Face 35583 17137 18961 18904 Face 35584 18142 18292 18642 Face 35585 18292 18387 18642 Face 35586 17696 237 17224 Face 35587 18578 18587 17446 Face 35588 18170 18268 18169 Face 35589 6385 17696 17224 Face 35590 18075 18170 18169 Face 35591 18268 18364 18267 Face 35592 18074 18075 18169 Face 35593 18268 18267 18169 Face 35594 19153 17501 17510 Face 35595 18883 18146 18951 Face 35596 34551 34753 22040 Face 35597 17946 18050 17059 Face 35598 17711 1675 1210 Face 35599 18726 17373 18056 Face 35600 18146 18883 17762 Face 35601 18671 18726 18947 Face 35602 27357 26445 26674 Face 35603 18434 17946 17059 Face 35604 27114 27230 27229 Face 35605 4492 18737 4493 Face 35606 17758 19177 17896 Face 35607 2462 2461 2333 Face 35608 18065 16863 18632 Face 35609 18514 17758 17896 Face 35610 16933 16934 17025 Face 35611 17911 17237 18946 Face 35612 17963 19164 18420 Face 35613 28360 28494 28359 Face 35614 27113 27114 27229 Face 35615 18682 17963 18420 Face 35616 17764 18030 17776 Face 35617 19249 16947 18614 Face 35618 18463 18030 17764 Face 35619 18030 17643 17733 Face 35620 19056 17606 17400 Face 35621 17833 17764 17694 Face 35622 790 18529 17365 Face 35623 19056 17400 19046 Face 35624 6611 11053 6635 Face 35625 3111 17622 16922 Face 35626 17999 17998 17907 Face 35627 7061 487 7169 Face 35628 18774 18789 17726 Face 35629 27129 23577 25197 Face 35630 16928 17020 16927 Face 35631 19124 2711 2581 Face 35632 18306 18402 18401 Face 35633 19017 19127 19126 Face 35634 17104 19185 32620 Face 35635 17446 17229 18626 Face 35636 30480 30479 30408 Face 35637 2809 25492 28156 Face 35638 28946 29073 27497 Face 35639 30759 30865 30758 Face 35640 12341 23886 12340 Face 35641 20777 27573 20866 Face 35642 18711 17576 17874 Face 35643 17591 18562 17567 Face 35644 17372 18711 17874 Face 35645 16724 16790 16789 Face 35646 16789 31887 16723 Face 35647 16878 16877 16789 Face 35648 16790 16878 16789 Face 35649 16970 16969 16877 Face 35650 16878 16970 16877 Face 35651 17064 17063 16969 Face 35652 16970 17064 16969 Face 35653 17154 17153 17063 Face 35654 17064 17154 17063 Face 35655 18722 18734 19182 Face 35656 15587 17536 17836 Face 35657 1360 1473 1359 Face 35658 16943 6843 17035 Face 35659 18627 2757 2844 Face 35660 19308 22991 16966 Face 35661 17331 19210 17862 Face 35662 17280 17331 17862 Face 35663 18206 18302 18301 Face 35664 18495 18594 18593 Face 35665 18023 1272 18024 Face 35666 17502 17368 18990 Face 35667 18016 18017 18108 Face 35668 18098 19154 17582 Face 35669 20290 17986 17985 Face 35670 26649 26650 26764 Face 35671 27230 27340 27339 Face 35672 18931 18826 17498 Face 35673 2292 2169 3210 Face 35674 19198 11144 27641 Face 35675 19256 19257 19285 Face 35676 16837 16925 156 Face 35677 17549 18776 17898 Face 35678 19164 18130 17401 Face 35679 27229 27230 27339 Face 35680 18592 18697 18696 Face 35681 17681 18464 17897 Face 35682 17392 17415 17805 Face 35683 18591 18592 18696 Face 35684 6539 4869 1312 Face 35685 17227 17638 18439 Face 35686 17468 17467 17381 Face 35687 27340 27459 27458 Face 35688 17512 16917 18057 Face 35689 18599 18600 18704 Face 35690 342 17108 17099 Face 35691 17573 17512 18057 Face 35692 27339 27340 27458 Face 35693 17108 18222 18218 Face 35694 27459 27579 27578 Face 35695 156 155 6939 Face 35696 18847 17406 17081 Face 35697 34543 34377 34276 Face 35698 17957 19055 17789 Face 35699 17957 17128 19055 Face 35700 1312 4869 1311 Face 35701 1676 17711 19059 Face 35702 27231 27341 27340 Face 35703 27462 27582 27581 Face 35704 17763 17509 18438 Face 35705 18603 18602 18503 Face 35706 26792 28087 25482 Face 35707 29689 29688 29556 Face 35708 16899 16991 16898 Face 35709 18707 18815 18706 Face 35710 1136 1244 1135 Face 35711 32334 32446 32333 Face 35712 19236 19237 19115 Face 35713 18051 4111 4240 Face 35714 17245 17246 19633 Face 35715 1953 1954 2078 Face 35716 17409 17231 17319 Face 35717 19017 19018 19127 Face 35718 19037 27246 25960 Face 35719 17221 17667 17577 Face 35720 26881 26882 26994 Face 35721 26995 27111 27110 Face 35722 27458 27459 27578 Face 35723 16091 16248 8945 Face 35724 18168 18167 19883 Face 35725 16903 16995 16902 Face 35726 6913 6910 19701 Face 35727 15807 18725 4668 Face 35728 2424 27996 3588 Face 35729 18739 3245 3111 Face 35730 17635 17784 17875 Face 35731 9875 20283 29750 Face 35732 16851 16939 16938 Face 35733 18133 526 17604 Face 35734 3163 4850 3291 Face 35735 27579 27706 27705 Face 35736 16808 16807 16738 Face 35737 17035 6947 17126 Face 35738 18274 18275 18369 Face 35739 1501 18215 18119 Face 35740 27578 27579 27705 Face 35741 31610 31724 31723 Face 35742 18778 18671 18947 Face 35743 18947 18726 18056 Face 35744 18050 16834 17870 Face 35745 17059 18050 17870 Face 35746 26652 26767 26651 Face 35747 18168 18266 18167 Face 35748 785 18424 13956 Face 35749 19209 553 3505 Face 35750 18420 17782 17896 Face 35751 17667 17758 18514 Face 35752 19155 18539 16781 Face 35753 17382 17381 17291 Face 35754 18025 18024 1273 Face 35755 18539 16779 16764 Face 35756 18933 18130 19164 Face 35757 17740 17741 17830 Face 35758 19232 19249 18614 Face 35759 17963 18933 19164 Face 35760 16544 18030 17733 Face 35761 18235 18237 19232 Face 35762 17733 17643 16988 Face 35763 17643 17083 16988 Face 35764 17960 19056 19046 Face 35765 17606 17694 17400 Face 35766 17960 19046 17716 Face 35767 17717 17960 17716 Face 35768 17717 17716 18292 Face 35769 17661 17717 18292 Face 35770 17661 18292 18142 Face 35771 17460 17661 18142 Face 35772 17460 18142 17137 Face 35773 17046 17460 17137 Face 35774 19156 17172 19218 Face 35775 17369 19156 19218 Face 35776 17046 17137 17172 Face 35777 19156 17046 17172 Face 35778 34526 34694 34340 Face 35779 17022 17113 17021 Face 35780 16934 17026 17025 Face 35781 21637 17266 2295 Face 35782 18220 18219 18122 Face 35783 17124 372 17123 Face 35784 16942 16941 16853 Face 35785 14320 14395 18644 Face 35786 7738 14028 10199 Face 35787 4628 4629 4760 Face 35788 34330 34776 34519 Face 35789 31578 31692 31577 Face 35790 16879 16878 16790 Face 35791 16791 16879 16790 Face 35792 16971 16970 16878 Face 35793 16879 16971 16878 Face 35794 17065 17064 16970 Face 35795 16971 17065 16970 Face 35796 17155 17154 17064 Face 35797 17065 17155 17064 Face 35798 10857 34676 12359 Face 35799 17155 17245 17154 Face 35800 17494 17217 17411 Face 35801 16922 17582 18739 Face 35802 27706 27835 27834 Face 35803 27705 27706 27834 Face 35804 16776 27884 16777 Face 35805 16695 16759 16758 Face 35806 16828 16827 16758 Face 35807 18908 18909 19017 Face 35808 16759 16828 16758 Face 35809 27835 27967 27966 Face 35810 18302 18303 18398 Face 35811 5724 8002 5852 Face 35812 18955 17625 18990 Face 35813 2423 20890 651 Face 35814 6682 6777 6681 Face 35815 18792 18988 19143 Face 35816 26992 26991 26878 Face 35817 8344 12060 28946 Face 35818 17498 18792 19143 Face 35819 18435 18945 17685 Face 35820 19185 17898 18039 Face 35821 18420 19164 17782 Face 35822 18810 18914 18913 Face 35823 17388 17474 17387 Face 35824 19227 17897 18227 Face 35825 17706 17797 17796 Face 35826 3163 3291 3154 Face 35827 525 17674 17730 Face 35828 17150 18486 18721 Face 35829 18600 18705 18704 Face 35830 26814 16695 18561 Face 35831 18880 14832 14709 Face 35832 19139 19138 19028 Face 35833 342 18827 17497 Face 35834 17478 18643 6392 Face 35835 17895 17461 18689 Face 35836 18827 342 17099 Face 35837 18790 17895 16782 Face 35838 17461 17760 18689 Face 35839 3038 4109 638 Face 35840 17895 18689 16782 Face 35841 20558 17283 18839 Face 35842 33409 6618 33541 Face 35843 20297 17991 17990 Face 35844 17603 17957 17789 Face 35845 12610 23635 27772 Face 35846 18019 1269 18020 Face 35847 6398 6522 16958 Face 35848 27772 12700 12610 Face 35849 1391 1280 1392 Face 35850 8845 10692 10018 Face 35851 31808 31807 31695 Face 35852 17515 17175 18997 Face 35853 19094 19097 29535 Face 35854 18493 18592 18591 Face 35855 17238 17911 16863 Face 35856 17658 17238 16863 Face 35857 17658 16863 18065 Face 35858 17930 17658 18065 Face 35859 17930 18065 18963 Face 35860 18962 17930 18963 Face 35861 18962 18963 18687 Face 35862 18009 18962 18687 Face 35863 17231 17221 17577 Face 35864 26541 26684 25541 Face 35865 17221 17149 17758 Face 35866 17667 17221 17758 Face 35867 13553 14941 15073 Face 35868 17149 17915 19177 Face 35869 17938 17914 19228 Face 35870 14486 15172 19066 Face 35871 20325 20324 26642 Face 35872 16921 17754 17753 Face 35873 17636 19153 17510 Face 35874 647 646 32394 Face 35875 17021 17020 16928 Face 35876 27834 27835 27966 Face 35877 26990 26876 29785 Face 35878 18575 18574 18473 Face 35879 884 767 32630 Face 35880 25950 26062 25949 Face 35881 16860 18348 18032 Face 35882 29145 27019 27895 Face 35883 17042 19076 17443 Face 35884 31996 16725 31888 Face 35885 16816 16815 16746 Face 35886 30144 30208 30207 Face 35887 17640 18345 17846 Face 35888 18953 17752 4020 Face 35889 17870 16834 17938 Face 35890 16834 17914 17938 Face 35891 26536 26652 26651 Face 35892 18590 18695 18694 Face 35893 27967 28100 28099 Face 35894 17560 17559 17470 Face 35895 17314 17667 18514 Face 35896 17577 17667 17314 Face 35897 16682 16741 16740 Face 35898 16739 33197 16681 Face 35899 18071 18539 16764 Face 35900 17127 17129 18223 Face 35901 26335 28554 7122 Face 35902 2323 18693 18801 Face 35903 18522 19227 18130 Face 35904 19119 17309 18620 Face 35905 17082 16988 17141 Face 35906 17143 18237 18235 Face 35907 17083 17144 17143 Face 35908 16988 17083 17143 Face 35909 17143 17144 18237 Face 35910 17144 18238 18237 Face 35911 18238 19250 19249 Face 35912 18237 18238 19249 Face 35913 19249 19250 16947 Face 35914 19250 17971 16947 Face 35915 27966 27967 28099 Face 35916 866 4213 18419 Face 35917 4085 17675 17499 Face 35918 18109 18110 18205 Face 35919 18208 18304 18303 Face 35920 19015 19016 19125 Face 35921 17033 17034 17124 Face 35922 28100 28237 28236 Face 35923 18702 18810 18809 Face 35924 17697 17533 19011 Face 35925 18387 18431 17658 Face 35926 1576 17932 17238 Face 35927 5584 5456 18606 Face 35928 28099 28100 28236 Face 35929 18640 18747 18631 Face 35930 33846 33974 16685 Face 35931 17649 17650 17739 Face 35932 17011 19184 17876 Face 35933 34730 34652 34826 Face 35934 28237 28371 28370 Face 35935 16792 16880 16879 Face 35936 16791 16792 16879 Face 35937 16880 16972 16971 Face 35938 16879 16880 16971 Face 35939 16972 17066 17065 Face 35940 16971 16972 17065 Face 35941 17066 17156 17155 Face 35942 17065 17066 17155 Face 35943 17246 17245 17155 Face 35944 17156 17246 17155 Face 35945 18213 18309 18308 Face 35946 19633 17337 19717 Face 35947 16828 6926 142 Face 35948 17474 17473 17387 Face 35949 32207 16728 32103 Face 35950 28264 28263 28126 Face 35951 18300 18301 18396 Face 35952 17394 4278 4149 Face 35953 17650 17651 17740 Face 35954 17838 17134 17041 Face 35955 17026 17117 17025 Face 35956 17024 17115 17023 Face 35957 5531 17971 5532 Face 35958 18207 18208 18303 Face 35959 18621 17354 19143 Face 35960 26765 26879 26878 Face 35961 18671 18778 18345 Face 35962 18988 18621 19143 Face 35963 28236 28237 28370 Face 35964 20758 27768 23879 Face 35965 18832 18486 17150 Face 35966 18272 18273 1917 Face 35967 17830 17922 17921 Face 35968 18130 18227 17401 Face 35969 17616 17706 17705 Face 35970 27640 27692 29351 Face 35971 17526 17527 17615 Face 35972 17797 17888 17887 Face 35973 28371 28506 28505 Face 35974 17210 17301 17300 Face 35975 6273 783 6392 Face 35976 28370 28371 28505 Face 35977 17935 17929 18887 Face 35978 4289 4415 17801 Face 35979 18491 18492 18590 Face 35980 17530 342 17497 Face 35981 11012 34444 9181 Face 35982 19101 18858 17605 Face 35983 18034 22508 22411 Face 35984 18816 18708 2205 Face 35985 17941 17642 18936 Face 35986 18034 17941 18936 Face 35987 17642 18957 17712 Face 35988 18936 17642 17712 Face 35989 18957 17601 18714 Face 35990 17712 18957 18714 Face 35991 17601 17352 19038 Face 35992 18714 17601 19038 Face 35993 17352 16952 16951 Face 35994 19038 17352 16951 Face 35995 18069 18068 16951 Face 35996 16952 18069 16951 Face 35997 19001 18997 18068 Face 35998 18069 19001 18068 Face 35999 15108 18996 9504 Face 36000 19001 17515 18997 Face 36001 2626 14420 14664 Face 36002 18966 12349 33924 Face 36003 19132 19133 19241 Face 36004 16927 16926 16838 Face 36005 17923 18013 18012 Face 36006 17561 17562 17650 Face 36007 18631 17511 18483 Face 36008 17723 17722 18569 Face 36009 16237 16238 16401 Face 36010 18739 17582 19170 Face 36011 16991 19495 17085 Face 36012 27702 27703 27831 Face 36013 17754 18709 18331 Face 36014 16900 19496 16992 Face 36015 17115 17205 17114 Face 36016 19228 16921 17753 Face 36017 17451 19829 19830 Face 36018 17205 17296 17295 Face 36019 34494 11768 8031 Face 36020 3981 19209 17756 Face 36021 18582 18926 18942 Face 36022 18070 17978 20363 Face 36023 17493 18725 17500 Face 36024 6726 6825 6824 Face 36025 34722 34745 34398 Face 36026 16698 17323 5461 Face 36027 15093 18528 14500 Face 36028 17956 6147 17324 Face 36029 29313 29444 29312 Face 36030 32196 32092 7239 Face 36031 16904 16903 16815 Face 36032 16747 16816 16746 Face 36033 18476 18475 18381 Face 36034 19039 17240 19211 Face 36035 18709 18520 18622 Face 36036 17914 16921 19228 Face 36037 1677 3695 2153 Face 36038 19059 18192 1676 Face 36039 15228 17234 2508 Face 36040 18577 18680 18576 Face 36041 17638 17577 17314 Face 36042 17319 17577 17638 Face 36043 16810 16809 16740 Face 36044 16741 16810 16740 Face 36045 18231 19207 19167 Face 36046 18464 18851 18388 Face 36047 28506 28641 28640 Face 36048 1015 17129 17486 Face 36049 19007 19119 18620 Face 36050 18745 18046 17334 Face 36051 17141 17143 18235 Face 36052 19227 18522 17681 Face 36053 16988 17143 17141 Face 36054 18237 19249 19232 Face 36055 17733 16988 17082 Face 36056 19074 17733 17082 Face 36057 16544 17733 19074 Face 36058 17774 16544 19074 Face 36059 17776 16544 17774 Face 36060 18609 17776 17774 Face 36061 17776 18609 18250 Face 36062 17695 17776 18250 Face 36063 17574 18736 17932 Face 36064 1576 17574 17932 Face 36065 18431 1576 17238 Face 36066 17695 18250 18736 Face 36067 18485 17482 18389 Face 36068 18616 18821 33018 Face 36069 17482 18485 193 Face 36070 18389 17869 18485 Face 36071 17574 17695 18736 Face 36072 17869 17547 18518 Face 36073 1837 1725 1726 Face 36074 2080 18607 2081 Face 36075 1956 18507 1836 Face 36076 647 32394 32395 Face 36077 17020 17111 17019 Face 36078 17740 17830 17829 Face 36079 16727 16793 16792 Face 36080 29901 29959 29900 Face 36081 16793 16881 16880 Face 36082 16792 16793 16880 Face 36083 16881 16973 16972 Face 36084 16880 16881 16972 Face 36085 16973 17067 17066 Face 36086 16972 16973 17066 Face 36087 17157 17156 17066 Face 36088 17067 17157 17066 Face 36089 17247 17246 17156 Face 36090 17157 17247 17156 Face 36091 19717 17337 17338 Face 36092 17441 17440 19726 Face 36093 18604 5201 17928 Face 36094 19037 26452 18352 Face 36095 17472 17473 17561 Face 36096 470 17199 17290 Face 36097 18699 18700 18807 Face 36098 18950 17102 17815 Face 36099 3629 3628 3500 Face 36100 17217 18504 17411 Face 36101 19176 18530 17671 Face 36102 19220 19152 17514 Face 36103 16930 16931 17022 Face 36104 17971 5531 16947 Face 36105 17089 17088 16996 Face 36106 16997 17089 16996 Face 36107 28505 28506 28640 Face 36108 1025 1139 1138 Face 36109 526 18133 527 Face 36110 18622 18520 1212 Face 36111 17585 17495 17354 Face 36112 18441 3855 18516 Face 36113 18056 17373 18192 Face 36114 18503 18602 18601 Face 36115 17443 18922 18926 Face 36116 17214 17150 19148 Face 36117 19040 17214 19148 Face 36118 28641 28770 28769 Face 36119 29752 27958 27697 Face 36120 18582 18481 18926 Face 36121 17615 17616 17705 Face 36122 586 587 17391 Face 36123 18779 19062 23164 Face 36124 436 14441 16208 Face 36125 17796 17797 17887 Face 36126 18346 17356 17843 Face 36127 2038 2039 34063 Face 36128 8774 34307 7735 Face 36129 17530 17497 17910 Face 36130 18843 17179 22316 Face 36131 28640 28641 28769 Face 36132 17989 17714 17179 Face 36133 22412 17179 17941 Face 36134 17714 17659 17941 Face 36135 17179 17714 17941 Face 36136 17659 17689 17642 Face 36137 17941 17659 17642 Face 36138 17689 17458 18957 Face 36139 17642 17689 18957 Face 36140 17458 18624 17601 Face 36141 18957 17458 17601 Face 36142 18624 18156 17352 Face 36143 17601 18624 17352 Face 36144 18156 16953 16952 Face 36145 17352 18156 16952 Face 36146 18094 18069 16952 Face 36147 16953 18094 16952 Face 36148 19013 19001 18069 Face 36149 18094 19013 18069 Face 36150 17428 17515 19001 Face 36151 19013 17428 19001 Face 36152 19010 18996 17515 Face 36153 17428 19010 17515 Face 36154 17351 17440 17439 Face 36155 17136 19010 17536 Face 36156 18638 18774 18690 Face 36157 18907 19016 19015 Face 36158 18598 18599 18703 Face 36159 28770 28896 28895 Face 36160 18722 19182 19183 Face 36161 16955 18722 19183 Face 36162 18000 18092 17999 Face 36163 4363 4493 18853 Face 36164 16902 16901 16813 Face 36165 17753 17754 18331 Face 36166 16996 16995 16903 Face 36167 16814 16902 16813 Face 36168 16997 16996 16904 Face 36169 28769 28770 28895 Face 36170 16728 32207 16795 Face 36171 16905 16997 16904 Face 36172 28896 29023 29022 Face 36173 17738 17739 17828 Face 36174 17121 17211 17210 Face 36175 17899 15228 18817 Face 36176 5584 18606 5457 Face 36177 16841 16842 16929 Face 36178 34668 34370 34737 Face 36179 18616 17945 18821 Face 36180 16905 16904 16816 Face 36181 16817 16905 16816 Face 36182 12587 17040 17540 Face 36183 16816 16904 16815 Face 36184 21450 20796 33929 Face 36185 16814 16813 16744 Face 36186 18331 18709 18622 Face 36187 18520 17956 1212 Face 36188 18080 20378 20379 Face 36189 16992 16991 16899 Face 36190 18025 18026 18117 Face 36191 18906 18907 19015 Face 36192 17227 17319 17638 Face 36193 17539 17319 17227 Face 36194 16898 16897 16809 Face 36195 16810 16898 16809 Face 36196 17897 18464 18388 Face 36197 19148 17150 17878 Face 36198 17129 18231 18223 Face 36199 18464 18390 16920 Face 36200 1835 1724 1836 Face 36201 17322 1015 17834 Face 36202 18131 19119 19007 Face 36203 1807 1926 1806 Face 36204 18933 18522 18130 Face 36205 17681 18131 19007 Face 36206 17309 17881 18691 Face 36207 18522 18131 17681 Face 36208 17881 18833 18727 Face 36209 18620 17309 18691 Face 36210 18833 17235 17330 Face 36211 18691 17881 18727 Face 36212 17235 17678 17766 Face 36213 18727 18833 17330 Face 36214 17749 17953 17410 Face 36215 17951 17410 12553 Face 36216 18389 17482 17953 Face 36217 17086 17749 17410 Face 36218 18293 18389 17953 Face 36219 17749 18293 17953 Face 36220 17571 17869 18389 Face 36221 18293 17571 18389 Face 36222 34565 34479 34636 Face 36223 17571 17547 17869 Face 36224 1788 3962 16784 Face 36225 2580 2452 2581 Face 36226 6822 6926 16759 Face 36227 18059 1452 17684 Face 36228 19241 18385 18290 Face 36229 27568 2296 29752 Face 36230 16728 16794 16793 Face 36231 16727 32103 16728 Face 36232 16794 16882 16881 Face 36233 16793 16794 16881 Face 36234 16882 16974 16973 Face 36235 16881 16882 16973 Face 36236 16974 17068 17067 Face 36237 16973 16974 17067 Face 36238 17068 17158 17157 Face 36239 17067 17068 17157 Face 36240 17248 17247 17157 Face 36241 17158 17248 17157 Face 36242 2434 2563 2562 Face 36243 17248 17249 17338 Face 36244 18275 18276 18370 Face 36245 30277 30276 30211 Face 36246 18744 17925 17242 Face 36247 17925 17591 17567 Face 36248 17024 17023 16931 Face 36249 16932 17024 16931 Face 36250 5657 5656 5530 Face 36251 18000 1473 18093 Face 36252 18310 18406 18405 Face 36253 28895 28896 29022 Face 36254 27575 27576 27702 Face 36255 17012 237 3331 Face 36256 34744 34335 34610 Face 36257 19723 17869 21273 Face 36258 17906 17997 17996 Face 36259 17905 17906 17996 Face 36260 17997 18089 18088 Face 36261 17996 17997 18088 Face 36262 18089 18184 18183 Face 36263 18088 18089 18183 Face 36264 18184 18282 18281 Face 36265 18183 18184 18281 Face 36266 18082 18083 18177 Face 36267 18178 18276 18275 Face 36268 18031 18414 16699 Face 36269 18641 18409 18640 Face 36270 16817 16816 16747 Face 36271 33516 33515 33382 Face 36272 18734 19181 19182 Face 36273 19184 17697 17876 Face 36274 5457 18606 18608 Face 36275 218 15976 151 Face 36276 1212 17956 17588 Face 36277 17956 17324 17588 Face 36278 19078 17967 19067 Face 36279 17845 17640 17846 Face 36280 271 3302 8341 Face 36281 17491 18638 18534 Face 36282 29705 5908 18828 Face 36283 21517 21422 21423 Face 36284 6613 25493 26701 Face 36285 18445 26815 26682 Face 36286 12550 14366 6510 Face 36287 17388 17387 17297 Face 36288 25569 18412 6612 Face 36289 27761 26013 25792 Face 36290 34301 34397 34751 Face 36291 17784 17966 18891 Face 36292 17392 17269 17487 Face 36293 18666 17392 17487 Face 36294 18978 27883 2037 Face 36295 17929 17530 17910 Face 36296 17880 18791 17989 Face 36297 22125 18523 22220 Face 36298 18791 17715 17714 Face 36299 17989 18791 17714 Face 36300 17715 17174 17659 Face 36301 17714 17715 17659 Face 36302 17174 18888 17689 Face 36303 17659 17174 17689 Face 36304 18888 16700 17458 Face 36305 17689 18888 17458 Face 36306 16700 17683 18624 Face 36307 17458 16700 18624 Face 36308 17683 18537 18156 Face 36309 18624 17683 18156 Face 36310 16954 16953 18156 Face 36311 18537 16954 18156 Face 36312 18102 18094 16953 Face 36313 16954 18102 16953 Face 36314 19014 19013 18094 Face 36315 18102 19014 18094 Face 36316 18249 17428 19013 Face 36317 19014 18249 19013 Face 36318 19042 19010 17428 Face 36319 18249 19042 17428 Face 36320 12926 10018 10692 Face 36321 19042 17536 19010 Face 36322 29141 29142 29271 Face 36323 29154 29153 29022 Face 36324 17965 18582 18942 Face 36325 19135 19244 19243 Face 36326 18926 18922 17177 Face 36327 19244 18582 17965 Face 36328 7695 7245 5595 Face 36329 19243 19244 17965 Face 36330 18734 18730 19181 Face 36331 4495 4494 17414 Face 36332 29023 29154 29022 Face 36333 16904 16996 16903 Face 36334 2040 1917 18368 Face 36335 29284 29283 29153 Face 36336 17990 17991 18082 Face 36337 16856 6743 6843 Face 36338 18282 18377 18376 Face 36339 18083 18178 18177 Face 36340 18281 18282 18376 Face 36341 18377 18471 18470 Face 36342 16995 16994 16902 Face 36343 17991 18083 18082 Face 36344 32394 646 7007 Face 36345 18031 16699 17945 Face 36346 18909 19018 19017 Face 36347 13086 16775 16774 Face 36348 2040 18366 18367 Face 36349 16996 17088 16995 Face 36350 16745 16814 16744 Face 36351 29154 29284 29153 Face 36352 7061 7169 7060 Face 36353 29415 29414 29283 Face 36354 16900 16992 16899 Face 36355 16900 16899 16811 Face 36356 18019 18111 18110 Face 36357 16844 16843 12541 Face 36358 17415 17539 17227 Face 36359 17214 18832 17150 Face 36360 19240 19241 18290 Face 36361 16991 19493 16990 Face 36362 18486 18666 18721 Face 36363 6799 17013 3210 Face 36364 18851 18464 16920 Face 36365 17530 17834 342 Face 36366 17129 17127 17486 Face 36367 18390 17398 17131 Face 36368 17292 17382 17291 Face 36369 17322 17834 1685 Face 36370 18037 18751 17730 Face 36371 17582 17044 19170 Face 36372 19151 17634 18037 Face 36373 18751 17604 17730 Face 36374 18856 17766 19151 Face 36375 17634 18751 18037 Face 36376 17419 17330 18856 Face 36377 17766 17634 19151 Face 36378 17417 18727 17419 Face 36379 17330 17766 18856 Face 36380 18100 17086 17861 Face 36381 17867 22611 17861 Face 36382 17481 17749 17086 Face 36383 18100 17481 17086 Face 36384 18007 18293 17749 Face 36385 17481 18007 17749 Face 36386 18628 17571 18293 Face 36387 18007 18628 18293 Face 36388 34340 34694 34364 Face 36389 17646 17736 1038 Face 36390 15618 19100 17959 Face 36391 934 17654 17565 Face 36392 15618 17407 14208 Face 36393 29284 29415 29283 Face 36394 17272 17363 17271 Face 36395 18698 18806 18805 Face 36396 16795 16794 16728 Face 36397 31998 32103 16727 Face 36398 16883 16882 16794 Face 36399 16795 16883 16794 Face 36400 16883 16975 16974 Face 36401 16882 16883 16974 Face 36402 16975 17069 17068 Face 36403 16974 16975 17068 Face 36404 17069 17159 17158 Face 36405 17068 17069 17158 Face 36406 17159 17249 17248 Face 36407 17158 17159 17248 Face 36408 18616 18031 17945 Face 36409 33669 12460 33414 Face 36410 29546 29545 29414 Face 36411 4853 13824 11529 Face 36412 18376 18377 18470 Face 36413 18471 18572 18571 Face 36414 18470 18471 18571 Face 36415 16714 25968 27496 Face 36416 18276 18371 18370 Face 36417 18204 18205 18300 Face 36418 13824 11158 11529 Face 36419 29415 29546 29414 Face 36420 18022 18021 1271 Face 36421 19126 19127 19235 Face 36422 32501 11035 32500 Face 36423 6926 143 142 Face 36424 19152 18427 19071 Face 36425 2563 18788 2435 Face 36426 7998 14808 2120 Face 36427 18177 18178 18275 Face 36428 18572 18676 18571 Face 36429 19015 2581 18906 Face 36430 18677 32898 18676 Face 36431 4278 4277 4149 Face 36432 27337 27456 27336 Face 36433 29678 29677 29545 Face 36434 16935 17027 16934 Face 36435 6601 16677 29693 Face 36436 29546 29678 29545 Face 36437 34657 34634 32197 Face 36438 17869 19723 18485 Face 36439 158 19229 16062 Face 36440 20553 20554 34821 Face 36441 29809 29808 29677 Face 36442 17588 17324 16861 Face 36443 17324 17195 16861 Face 36444 17101 17332 6009 Face 36445 4404 4278 17394 Face 36446 760 2027 9072 Face 36447 16840 16928 16927 Face 36448 26879 26992 26878 Face 36449 27108 27107 26991 Face 36450 525 526 14198 Face 36451 25273 25133 15288 Face 36452 28912 29039 29038 Face 36453 28387 28522 28521 Face 36454 27357 26674 25545 Face 36455 29678 29809 29677 Face 36456 17707 17798 17706 Face 36457 17987 18740 14472 Face 36458 26771 26772 26885 Face 36459 18721 17820 18484 Face 36460 18324 17935 18152 Face 36461 6683 6618 6619 Face 36462 17135 18097 18791 Face 36463 22126 17880 18523 Face 36464 18097 18319 17715 Face 36465 18791 18097 17715 Face 36466 18319 17592 17174 Face 36467 17715 18319 17174 Face 36468 17592 15907 18888 Face 36469 17174 17592 18888 Face 36470 15907 17688 16700 Face 36471 18888 15907 16700 Face 36472 17688 19208 17683 Face 36473 16700 17688 17683 Face 36474 19208 18956 18537 Face 36475 17683 19208 18537 Face 36476 17008 16954 18537 Face 36477 18956 17008 18537 Face 36478 18120 18102 16954 Face 36479 17008 18120 16954 Face 36480 19030 19014 18102 Face 36481 18120 19030 18102 Face 36482 17750 18249 19014 Face 36483 19030 17750 19014 Face 36484 19052 19042 18249 Face 36485 17750 19052 18249 Face 36486 18710 17536 19042 Face 36487 19052 18710 19042 Face 36488 19066 15172 17836 Face 36489 18710 17836 17536 Face 36490 19134 19135 19243 Face 36491 13366 34275 10331 Face 36492 19248 17262 19247 Face 36493 19031 28820 20625 Face 36494 17986 18077 18076 Face 36495 14890 14766 21028 Face 36496 18627 19153 17636 Face 36497 18291 18057 18053 Face 36498 17119 17209 17208 Face 36499 18562 18563 5323 Face 36500 17452 17451 17364 Face 36501 17027 17118 17117 Face 36502 11119 11058 32304 Face 36503 17365 17452 17364 Face 36504 17469 17558 17468 Face 36505 19011 19175 17872 Face 36506 18385 18435 17685 Face 36507 17184 17274 17183 Face 36508 17365 17364 17273 Face 36509 16848 16936 16847 Face 36510 30996 31095 30995 Face 36511 2042 2043 2171 Face 36512 17477 17566 17476 Face 36513 18105 18201 18200 Face 36514 20699 27730 27603 Face 36515 16685 16745 16744 Face 36516 17222 19114 16218 Face 36517 18695 18803 18802 Face 36518 17321 5747 18242 Face 36519 16812 16900 16811 Face 36520 16812 16811 16742 Face 36521 27332 27998 13002 Face 36522 26990 27332 13002 Face 36523 17539 17415 18486 Face 36524 18832 17539 18486 Face 36525 1713 1823 1822 Face 36526 18589 18590 18694 Face 36527 17150 18721 17878 Face 36528 17366 790 17365 Face 36529 17486 17127 17108 Face 36530 28299 27217 29482 Face 36531 16920 18390 17131 Face 36532 17929 1685 17530 Face 36533 17871 17322 1685 Face 36534 17398 19141 18674 Face 36535 16779 17871 1685 Face 36536 1015 17486 17834 Face 36537 18223 18231 19167 Face 36538 16764 16779 1685 Face 36539 19167 19207 18519 Face 36540 19207 17196 18519 Face 36541 18519 17196 18344 Face 36542 17196 19120 18344 Face 36543 18344 19120 18897 Face 36544 19120 17775 18897 Face 36545 18288 18100 17769 Face 36546 17861 17769 18100 Face 36547 17954 17481 18100 Face 36548 18288 17954 18100 Face 36549 17777 18007 17481 Face 36550 17954 17777 17481 Face 36551 17450 18628 18007 Face 36552 17777 17450 18007 Face 36553 1151 1038 1152 Face 36554 17450 17553 18628 Face 36555 16082 15929 17422 Face 36556 15807 4405 17403 Face 36557 17491 19221 18638 Face 36558 22526 17594 17507 Face 36559 18210 18306 18305 Face 36560 18114 18210 18209 Face 36561 29959 30020 29958 Face 36562 34119 6731 34242 Face 36563 16884 16883 16795 Face 36564 16796 16884 16795 Face 36565 16976 16975 16883 Face 36566 16884 16976 16883 Face 36567 17070 17069 16975 Face 36568 16976 17070 16975 Face 36569 17160 17159 17069 Face 36570 17070 17160 17069 Face 36571 17160 17250 17249 Face 36572 17159 17160 17249 Face 36573 15777 15778 15929 Face 36574 20823 20219 18339 Face 36575 17900 17991 20297 Face 36576 20380 17990 18082 Face 36577 18599 18704 18703 Face 36578 17184 17183 17093 Face 36579 17446 19224 18568 Face 36580 18924 17514 17331 Face 36581 34431 34784 34812 Face 36582 34585 34809 10921 Face 36583 17094 17093 17001 Face 36584 17203 17202 17112 Face 36585 18501 18502 18600 Face 36586 6843 6844 6947 Face 36587 16848 16849 16937 Face 36588 18601 18706 18705 Face 36589 16381 158 17587 Face 36590 17284 16859 29808 Face 36591 19248 19247 19138 Face 36592 17815 17454 16945 Face 36593 29809 17284 29808 Face 36594 28360 28359 28224 Face 36595 18201 18202 18297 Face 36596 18808 18912 18911 Face 36597 17209 17210 17300 Face 36598 17027 17028 17118 Face 36599 18081 18082 18176 Face 36600 17369 17104 5465 Face 36601 17475 17474 17388 Face 36602 934 17565 17566 Face 36603 2296 2684 29752 Face 36604 16994 16993 16901 Face 36605 17931 18880 14710 Face 36606 21266 21265 16859 Face 36607 18104 18105 18200 Face 36608 34449 29465 26813 Face 36609 16861 17195 17456 Face 36610 5908 18954 19149 Face 36611 18274 18369 18368 Face 36612 18337 19148 17878 Face 36613 26767 26881 26880 Face 36614 18562 5193 17567 Face 36615 29057 29056 28929 Face 36616 30364 30431 30363 Face 36617 2333 18816 2205 Face 36618 17284 21266 16859 Face 36619 28924 28923 28797 Face 36620 17566 17477 819 Face 36621 29352 18542 7121 Face 36622 17878 18721 18484 Face 36623 17798 17889 17888 Face 36624 7016 28303 29018 Face 36625 18666 17487 17820 Face 36626 21843 11434 6012 Face 36627 17929 17910 18887 Face 36628 17308 18857 18097 Face 36629 17135 17308 18097 Face 36630 18857 17624 18319 Face 36631 18097 18857 18319 Face 36632 17624 18063 17592 Face 36633 18319 17624 17592 Face 36634 18063 17393 15907 Face 36635 17592 18063 15907 Face 36636 17393 18713 17688 Face 36637 15907 17393 17688 Face 36638 18713 18160 19208 Face 36639 17688 18713 19208 Face 36640 18160 17455 18956 Face 36641 19208 18160 18956 Face 36642 17009 17008 18956 Face 36643 17455 17009 18956 Face 36644 18121 18120 17008 Face 36645 17009 18121 17008 Face 36646 19051 19030 18120 Face 36647 18121 19051 18120 Face 36648 18932 17750 19030 Face 36649 19051 18932 19030 Face 36650 19053 19052 17750 Face 36651 18932 19053 17750 Face 36652 17333 18710 19052 Face 36653 19053 17333 19052 Face 36654 18938 17836 18710 Face 36655 17333 18938 18710 Face 36656 34415 34371 34559 Face 36657 1612 1722 18311 Face 36658 29350 29351 18771 Face 36659 26926 28419 28361 Face 36660 11144 15733 22708 Face 36661 18311 18407 18406 Face 36662 5774 11616 14620 Face 36663 18497 18596 18595 Face 36664 17531 17635 17875 Face 36665 18884 18409 18641 Face 36666 16837 34123 16767 Face 36667 10767 4586 10642 Face 36668 18117 18118 18213 Face 36669 3962 3248 171 Face 36670 18474 18575 18473 Face 36671 20377 18078 20292 Face 36672 17875 18641 18530 Face 36673 17274 17365 17273 Face 36674 19029 19028 18919 Face 36675 17875 18884 18641 Face 36676 18991 18955 18990 Face 36677 17208 17207 17117 Face 36678 11585 11586 26357 Face 36679 17315 18950 17838 Face 36680 20978 20979 21265 Face 36681 26679 17236 28949 Face 36682 17560 17561 17649 Face 36683 17876 17697 19011 Face 36684 16743 16812 16742 Face 36685 16743 16742 16683 Face 36686 27758 29199 18447 Face 36687 24818 23597 20537 Face 36688 8375 1976 1855 Face 36689 2925 15594 15331 Face 36690 17442 17441 19727 Face 36691 17583 18584 18525 Face 36692 21540 7126 21539 Face 36693 19229 18745 18162 Face 36694 4889 5021 19064 Face 36695 28145 11008 27769 Face 36696 17834 17486 342 Face 36697 18705 18813 18812 Face 36698 17131 17398 18674 Face 36699 17935 16764 17929 Face 36700 18227 17897 17128 Face 36701 19141 17417 17692 Face 36702 17401 18227 17957 Face 36703 17897 18388 17128 Face 36704 17782 17401 17603 Face 36705 18227 17128 17957 Face 36706 17782 17603 18818 Face 36707 17896 17782 18818 Face 36708 17896 18818 18515 Face 36709 17401 17957 17603 Face 36710 12560 17950 17769 Face 36711 18514 17896 18515 Face 36712 17361 17954 18288 Face 36713 18684 17361 18288 Face 36714 18899 17777 17954 Face 36715 17361 18899 17954 Face 36716 19186 17450 17777 Face 36717 18899 19186 17777 Face 36718 18934 17553 17450 Face 36719 19186 18934 17450 Face 36720 3455 20918 21280 Face 36721 18934 18436 17553 Face 36722 18305 18401 18400 Face 36723 6822 16696 16697 Face 36724 18110 18111 18206 Face 36725 18207 18303 18302 Face 36726 19182 17513 17217 Face 36727 16729 16797 16796 Face 36728 6731 6730 34242 Face 36729 16885 16884 16796 Face 36730 16797 16885 16796 Face 36731 16977 16976 16884 Face 36732 16885 16977 16884 Face 36733 17071 17070 16976 Face 36734 16977 17071 16976 Face 36735 17161 17160 17070 Face 36736 17071 17161 17070 Face 36737 17251 17250 17160 Face 36738 17161 17251 17160 Face 36739 21641 21640 32882 Face 36740 33544 33819 32882 Face 36741 17027 17026 16934 Face 36742 16847 16935 16934 Face 36743 17094 17184 17093 Face 36744 17274 17273 17183 Face 36745 18290 18837 2163 Face 36746 16821 16822 16909 Face 36747 18023 18115 18114 Face 36748 8937 4458 2363 Face 36749 17002 17094 17001 Face 36750 12747 16691 16751 Face 36751 16846 16847 16934 Face 36752 17298 17299 17388 Face 36753 18297 18393 1823 Face 36754 29412 29543 29411 Face 36755 17114 17204 17203 Face 36756 17384 17383 17293 Face 36757 19130 19131 19239 Face 36758 16821 16751 16752 Face 36759 18905 18834 4810 Face 36760 18438 17335 19229 Face 36761 16919 17369 5465 Face 36762 1162 1270 1269 Face 36763 19047 18532 18637 Face 36764 18309 18310 18405 Face 36765 17649 17739 17738 Face 36766 16936 17028 17027 Face 36767 17828 17829 17920 Face 36768 21266 20978 21265 Face 36769 16902 16994 16901 Face 36770 17645 17646 1038 Face 36771 19256 30059 30121 Face 36772 33362 33361 33225 Face 36773 25325 25457 25422 Face 36774 479 480 587 Face 36775 26766 26767 26880 Face 36776 1823 1713 18297 Face 36777 20893 26335 7122 Face 36778 2552 2424 25656 Face 36779 29060 29059 28932 Face 36780 17510 17501 18330 Face 36781 27571 26302 25479 Face 36782 28008 6613 26701 Face 36783 17888 17889 17979 Face 36784 26992 27108 26991 Face 36785 18789 17734 17726 Face 36786 3695 18955 17691 Face 36787 18225 18322 33164 Face 36788 18212 18213 18308 Face 36789 28303 27571 27450 Face 36790 18721 18666 17820 Face 36791 22030 18066 22128 Face 36792 17935 18887 18152 Face 36793 18426 19215 17308 Face 36794 18066 18426 17308 Face 36795 19215 18004 18857 Face 36796 17308 19215 18857 Face 36797 18004 17665 17624 Face 36798 18857 18004 17624 Face 36799 17665 17662 18063 Face 36800 17624 17665 18063 Face 36801 17662 18478 17393 Face 36802 18063 17662 17393 Face 36803 18478 17191 18713 Face 36804 17393 18478 18713 Face 36805 17191 16858 18160 Face 36806 18713 17191 18160 Face 36807 16858 19006 17455 Face 36808 18160 16858 17455 Face 36809 17016 17009 17455 Face 36810 19006 17016 17455 Face 36811 18124 18121 17009 Face 36812 17016 18124 17009 Face 36813 19099 19051 18121 Face 36814 18124 19099 18121 Face 36815 19065 18932 19051 Face 36816 19099 19065 19051 Face 36817 19063 19053 18932 Face 36818 19065 19063 18932 Face 36819 17318 17333 19053 Face 36820 19063 17318 19053 Face 36821 17316 18938 17333 Face 36822 17318 17316 17333 Face 36823 17575 13484 18838 Face 36824 17316 18838 18938 Face 36825 18920 19029 18919 Face 36826 7131 6522 6398 Face 36827 18438 19229 158 Face 36828 18749 17635 17531 Face 36829 16852 16940 16851 Face 36830 14367 19066 12343 Face 36831 17033 17124 17123 Face 36832 17545 18631 18483 Face 36833 18199 1602 18103 Face 36834 1274 18027 18026 Face 36835 4991 16112 16113 Face 36836 19022 19132 19131 Face 36837 17531 18530 19176 Face 36838 19182 19181 17513 Face 36839 18705 18706 18813 Face 36840 17531 17875 18530 Face 36841 7811 17106 17147 Face 36842 17646 17645 17556 Face 36843 34539 34543 34276 Face 36844 18210 18211 18306 Face 36845 17116 17206 17115 Face 36846 17827 1261 17826 Face 36847 34722 34596 34745 Face 36848 18942 18926 17177 Face 36849 18596 18701 18700 Face 36850 17650 17740 17739 Face 36851 16682 33593 16683 Face 36852 20893 7122 26183 Face 36853 27473 27593 27472 Face 36854 29562 29561 29430 Face 36855 18168 19883 1875 Face 36856 25468 25467 23932 Face 36857 17618 17617 17528 Face 36858 17529 17528 17442 Face 36859 29272 29403 29402 Face 36860 18725 4800 4668 Face 36861 11181 26106 26105 Face 36862 27996 26792 25482 Face 36863 11095 6907 20979 Face 36864 17616 17617 17706 Face 36865 1685 17834 17530 Face 36866 18748 18854 17479 Face 36867 18071 16764 17935 Face 36868 18324 18071 17935 Face 36869 342 17486 17108 Face 36870 16764 1685 17929 Face 36871 17127 18223 18222 Face 36872 17108 17127 18222 Face 36873 18223 19167 19165 Face 36874 18222 18223 19165 Face 36875 19167 18519 19073 Face 36876 19073 18519 19079 Face 36877 19165 19167 19073 Face 36878 18519 18344 19079 Face 36879 17748 17361 18684 Face 36880 22518 22613 18684 Face 36881 18795 18899 17361 Face 36882 17748 18795 17361 Face 36883 17892 19186 18899 Face 36884 18795 17892 18899 Face 36885 18939 18934 19186 Face 36886 17892 18939 19186 Face 36887 18341 18436 18934 Face 36888 18939 18341 18934 Face 36889 16936 16937 17028 Face 36890 17655 18266 18267 Face 36891 19183 19182 17217 Face 36892 2163 18722 16955 Face 36893 18314 2163 16955 Face 36894 16730 16798 16797 Face 36895 13460 25853 6656 Face 36896 16886 16885 16797 Face 36897 16798 16886 16797 Face 36898 16978 16977 16885 Face 36899 16886 16978 16885 Face 36900 17072 17071 16977 Face 36901 16978 17072 16977 Face 36902 17162 17161 17071 Face 36903 17072 17162 17071 Face 36904 17162 17252 17251 Face 36905 17161 17162 17251 Face 36906 17252 17342 17341 Face 36907 17251 17252 17341 Face 36908 17517 19800 17431 Face 36909 17431 17430 17342 Face 36910 18750 17531 19176 Face 36911 17862 18750 19176 Face 36912 17002 17001 16909 Face 36913 18534 18690 18675 Face 36914 16753 16822 16821 Face 36915 16910 17002 16909 Face 36916 16752 16753 16821 Face 36917 16822 16910 16909 Face 36918 18836 17862 19176 Face 36919 553 17215 17302 Face 36920 18600 18601 18705 Face 36921 17648 17647 17558 Face 36922 17734 17735 5075 Face 36923 17739 17829 17828 Face 36924 17582 19154 17044 Face 36925 17784 18891 18884 Face 36926 17649 17648 17559 Face 36927 694 17381 17467 Face 36928 19150 17362 19246 Face 36929 17032 17033 17123 Face 36930 30110 30109 30047 Face 36931 18368 1917 18273 Face 36932 24503 22787 11573 Face 36933 34537 34625 34548 Face 36934 28544 28133 21380 Face 36935 24448 26098 26097 Face 36936 29516 24448 26097 Face 36937 17608 17699 17698 Face 36938 20624 19619 11053 Face 36939 11053 19619 18505 Face 36940 28797 28923 28796 Face 36941 2841 19233 2974 Face 36942 20978 11095 20979 Face 36943 27995 27862 20875 Face 36944 18252 19101 17605 Face 36945 17786 28020 28554 Face 36946 18330 18424 18323 Face 36947 21329 28539 21238 Face 36948 20201 17891 17800 Face 36949 11095 6738 14914 Face 36950 17797 17798 17888 Face 36951 6907 11095 14914 Face 36952 23 14927 18341 Face 36953 17889 17980 17979 Face 36954 17281 18190 17550 Face 36955 17413 17550 18190 Face 36956 18190 17663 17413 Face 36957 18426 18066 22031 Face 36958 17663 18524 18426 Face 36959 17413 17663 18426 Face 36960 18524 18054 19215 Face 36961 18426 18524 19215 Face 36962 18054 19050 18004 Face 36963 19215 18054 18004 Face 36964 19050 18347 17665 Face 36965 18004 19050 17665 Face 36966 18347 18228 17662 Face 36967 17665 18347 17662 Face 36968 18228 18895 18478 Face 36969 17662 18228 18478 Face 36970 18895 18382 17191 Face 36971 18478 18895 17191 Face 36972 18382 17399 16858 Face 36973 17191 18382 16858 Face 36974 17399 18157 19006 Face 36975 16858 17399 19006 Face 36976 17036 17016 19006 Face 36977 18157 17036 19006 Face 36978 18139 18124 17016 Face 36979 17036 18139 17016 Face 36980 19109 19099 18124 Face 36981 18139 19109 18124 Face 36982 17757 19065 19099 Face 36983 19109 17757 19099 Face 36984 19158 19063 19065 Face 36985 17757 19158 19065 Face 36986 18930 17318 19063 Face 36987 19158 18930 19063 Face 36988 18824 17316 17318 Face 36989 18930 18824 17318 Face 36990 16829 18838 17316 Face 36991 18824 16829 17316 Face 36992 18215 18311 18214 Face 36993 17823 12983 15883 Face 36994 17022 17023 17113 Face 36995 18380 18379 18284 Face 36996 16940 16939 16851 Face 36997 33397 33396 33260 Face 36998 18114 18115 18210 Face 36999 17835 17491 18534 Face 37000 19071 17635 18749 Face 37001 18402 18403 18497 Face 37002 17652 17742 17741 Face 37003 17313 17500 17403 Face 37004 18400 18495 18494 Face 37005 27629 27997 28417 Face 37006 18578 17446 18568 Face 37007 18706 18814 18813 Face 37008 17411 17011 19078 Face 37009 2083 2082 1956 Face 37010 19025 19135 19134 Face 37011 15595 18538 4628 Face 37012 17561 17650 17649 Face 37013 18399 18494 18493 Face 37014 10199 14028 11770 Face 37015 18206 18207 18302 Face 37016 18809 18913 18912 Face 37017 17471 17472 17560 Face 37018 6738 10999 6812 Face 37019 30059 19256 19255 Face 37020 6522 6635 16958 Face 37021 29019 29150 21886 Face 37022 17831 17923 17922 Face 37023 14245 14143 17535 Face 37024 17708 17707 17617 Face 37025 19963 17529 19886 Face 37026 19230 19067 3892 Face 37027 25133 25273 25272 Face 37028 27261 27262 24399 Face 37029 29311 29310 29180 Face 37030 17798 17797 17706 Face 37031 17527 17528 17616 Face 37032 17356 15614 17843 Face 37033 17392 17805 18038 Face 37034 1474 18093 1473 Face 37035 14914 6738 6812 Face 37036 2000 1438 18236 Face 37037 22892 11890 27138 Face 37038 18570 17723 18569 Face 37039 4366 4241 4367 Face 37040 1273 1166 1274 Face 37041 10999 20702 13390 Face 37042 1615 1616 1724 Face 37043 17711 16762 17788 Face 37044 6812 10999 13390 Face 37045 8841 16091 8945 Face 37046 17569 17748 19068 Face 37047 19068 22613 22134 Face 37048 18686 18795 17748 Face 37049 17569 18686 17748 Face 37050 18132 17892 18795 Face 37051 18686 18132 18795 Face 37052 19118 18939 17892 Face 37053 18132 19118 17892 Face 37054 19057 18341 18939 Face 37055 19118 19057 18939 Face 37056 18309 18405 18404 Face 37057 18266 17655 17644 Face 37058 18046 17633 17927 Face 37059 18184 18185 18282 Face 37060 18296 2163 18314 Face 37061 18633 18296 18314 Face 37062 20702 25417 24885 Face 37063 16799 16798 16730 Face 37064 32210 16730 32209 Face 37065 16799 16887 16886 Face 37066 16798 16799 16886 Face 37067 16887 16979 16978 Face 37068 16886 16887 16978 Face 37069 16979 17073 17072 Face 37070 16978 16979 17072 Face 37071 17073 17163 17162 Face 37072 17072 17073 17162 Face 37073 17163 17253 17252 Face 37074 17162 17163 17252 Face 37075 17253 17343 17342 Face 37076 17252 17253 17342 Face 37077 17343 17432 17431 Face 37078 17342 17343 17431 Face 37079 17865 18625 18329 Face 37080 17517 17518 19879 Face 37081 19152 17918 17514 Face 37082 594 7169 487 Face 37083 17600 18534 18675 Face 37084 17725 18604 18587 Face 37085 17835 18534 17600 Face 37086 17302 17835 17600 Face 37087 17648 17649 17738 Face 37088 19144 19220 18924 Face 37089 13390 20702 24885 Face 37090 25417 26126 26125 Face 37091 18834 18905 17735 Face 37092 18409 18099 17593 Face 37093 18021 18022 18113 Face 37094 17387 17473 17472 Face 37095 12590 15314 16778 Face 37096 24885 25417 26125 Face 37097 31693 31805 31692 Face 37098 32392 6898 32391 Face 37099 28398 28533 28397 Face 37100 28693 27754 28011 Face 37101 29181 29311 29180 Face 37102 29443 29442 29311 Face 37103 25635 25736 25735 Face 37104 25634 25635 25735 Face 37105 26097 26098 27382 Face 37106 26098 27390 27382 Face 37107 28937 26565 28408 Face 37108 17772 19312 21279 Face 37109 18006 19230 3892 Face 37110 26009 27216 6282 Face 37111 19139 2721 19248 Face 37112 18773 12090 18759 Face 37113 18323 6385 17224 Face 37114 17655 18267 1914 Face 37115 18412 27160 29326 Face 37116 16739 16738 26012 Face 37117 26704 27272 24476 Face 37118 17931 17955 20651 Face 37119 27887 27757 28550 Face 37120 30149 30150 30213 Face 37121 17281 17550 18629 Face 37122 28889 27273 16668 Face 37123 17584 17783 18190 Face 37124 17281 17584 18190 Face 37125 17783 18251 17663 Face 37126 18190 17783 17663 Face 37127 18251 17289 18524 Face 37128 17663 18251 18524 Face 37129 17289 19157 18054 Face 37130 18524 17289 18054 Face 37131 19157 17189 19050 Face 37132 18054 19157 19050 Face 37133 17189 17894 18347 Face 37134 19050 17189 18347 Face 37135 17894 18154 18228 Face 37136 18347 17894 18228 Face 37137 18154 17485 18895 Face 37138 18228 18154 18895 Face 37139 17485 17212 18382 Face 37140 18895 17485 18382 Face 37141 17212 17412 17399 Face 37142 18382 17212 17399 Face 37143 17412 17198 18157 Face 37144 17399 17412 18157 Face 37145 17037 17036 18157 Face 37146 17198 17037 18157 Face 37147 18141 18139 17036 Face 37148 17037 18141 17036 Face 37149 19110 19109 18139 Face 37150 18141 19110 18139 Face 37151 17279 17757 19109 Face 37152 19110 17279 19109 Face 37153 19168 19158 17757 Face 37154 17279 19168 17757 Face 37155 18775 18930 19158 Face 37156 19168 18775 19158 Face 37157 17305 18824 18930 Face 37158 18775 17305 18930 Face 37159 18605 16829 18824 Face 37160 17305 18605 18824 Face 37161 17842 18605 18634 Face 37162 18605 17842 16829 Face 37163 6512 329 10381 Face 37164 16218 19114 17280 Face 37165 18955 3800 17625 Face 37166 17998 17997 17906 Face 37167 2205 18708 2078 Face 37168 17514 17918 19210 Face 37169 18498 18597 18596 Face 37170 18708 18816 18707 Face 37171 34578 21648 34642 Face 37172 18108 18109 18204 Face 37173 16688 16689 16750 Face 37174 18399 18400 18494 Face 37175 29752 2684 27958 Face 37176 18816 18815 18707 Face 37177 14198 5527 525 Face 37178 17320 5325 18566 Face 37179 18915 18916 19024 Face 37180 18703 18704 18811 Face 37181 17557 17556 17467 Face 37182 17723 18578 17722 Face 37183 19240 18290 18296 Face 37184 16958 18318 24557 Face 37185 18118 18214 18213 Face 37186 16839 16840 16927 Face 37187 18853 18737 17847 Face 37188 22819 15196 22773 Face 37189 18337 18225 33164 Face 37190 29066 29068 19198 Face 37191 18081 18176 18175 Face 37192 17640 18671 18345 Face 37193 17799 17798 17707 Face 37194 17708 17799 17707 Face 37195 3983 17806 18516 Face 37196 19550 17244 19632 Face 37197 31915 31914 31807 Face 37198 33146 21733 21732 Face 37199 17617 17707 17706 Face 37200 18814 18918 18917 Face 37201 17269 17392 18038 Face 37202 17805 18439 18440 Face 37203 18674 18896 17397 Face 37204 17131 18674 17397 Face 37205 17692 18511 18896 Face 37206 18674 17692 18896 Face 37207 17692 17503 17504 Face 37208 17504 17503 19216 Face 37209 18511 17692 17504 Face 37210 17503 18903 19216 Face 37211 18903 17105 16862 Face 37212 19216 18903 16862 Face 37213 17105 17512 17573 Face 37214 16862 17105 17573 Face 37215 17747 17569 17287 Face 37216 17287 19068 22134 Face 37217 18195 18686 17569 Face 37218 17747 18195 17569 Face 37219 18533 18132 18686 Face 37220 18195 18533 18686 Face 37221 17554 19118 18132 Face 37222 18533 17554 18132 Face 37223 6166 8979 6288 Face 37224 14955 1456 15087 Face 37225 3505 553 17490 Face 37226 17841 17464 17677 Face 37227 18046 17927 17334 Face 37228 19224 17446 18626 Face 37229 19239 18296 18633 Face 37230 19238 19239 18633 Face 37231 11385 34282 34639 Face 37232 1763 5211 10227 Face 37233 29335 29670 29206 Face 37234 26126 27452 27451 Face 37235 26125 26126 27451 Face 37236 16732 16800 16799 Face 37237 24510 24372 24511 Face 37238 16800 16888 16887 Face 37239 16799 16800 16887 Face 37240 16888 16980 16979 Face 37241 16887 16888 16979 Face 37242 16980 17074 17073 Face 37243 16979 16980 17073 Face 37244 17074 17164 17163 Face 37245 17073 17074 17163 Face 37246 17164 17254 17253 Face 37247 17163 17164 17253 Face 37248 17254 17344 17343 Face 37249 17253 17254 17343 Face 37250 17344 17433 17432 Face 37251 17343 17344 17432 Face 37252 17433 17519 17518 Face 37253 17432 17433 17518 Face 37254 17608 17698 19954 Face 37255 17519 17608 17518 Face 37256 1943 1942 1823 Face 37257 15618 16547 19100 Face 37258 18891 17756 17623 Face 37259 16730 32210 16731 Face 37260 3253 17447 3119 Face 37261 18106 18107 18202 Face 37262 19183 17217 17494 Face 37263 19077 19183 17494 Face 37264 18810 18811 18914 Face 37265 19180 17107 17934 Face 37266 18188 18286 18187 Face 37267 17923 17924 18013 Face 37268 27452 29188 29149 Face 37269 27451 27452 29149 Face 37270 25488 23311 30828 Face 37271 24387 24162 24386 Face 37272 30828 30827 25488 Face 37273 34750 34541 34346 Face 37274 27882 26329 28431 Face 37275 29312 29443 29311 Face 37276 20158 22680 12088 Face 37277 23078 23079 23135 Face 37278 27382 27390 29084 Face 37279 27390 29085 29084 Face 37280 7018 20624 6611 Face 37281 29081 27216 26009 Face 37282 16962 29081 26009 Face 37283 27733 29410 29407 Face 37284 26413 26420 27699 Face 37285 25769 25876 25875 Face 37286 5246 6281 29073 Face 37287 2555 2426 24455 Face 37288 34694 34509 34364 Face 37289 27498 24366 29601 Face 37290 24854 18781 20619 Face 37291 34798 34521 34309 Face 37292 25645 8344 27496 Face 37293 27155 29194 29324 Face 37294 34297 34511 34704 Face 37295 33171 18738 17584 Face 37296 17727 17228 17783 Face 37297 17584 17727 17783 Face 37298 17228 18892 18251 Face 37299 17783 17228 18251 Face 37300 18892 18536 17289 Face 37301 18251 18892 17289 Face 37302 18536 18151 19157 Face 37303 17289 18536 19157 Face 37304 18151 17837 17189 Face 37305 19157 18151 17189 Face 37306 17837 18230 17894 Face 37307 17189 17837 17894 Face 37308 18230 18136 18154 Face 37309 17894 18230 18154 Face 37310 18136 18062 17485 Face 37311 18154 18136 17485 Face 37312 18062 17429 17212 Face 37313 17485 18062 17212 Face 37314 17429 18798 17412 Face 37315 17212 17429 17412 Face 37316 18798 18321 17198 Face 37317 17412 18798 17198 Face 37318 18321 17047 17037 Face 37319 17198 18321 17037 Face 37320 17047 18144 18141 Face 37321 17037 17047 18141 Face 37322 18144 19111 19110 Face 37323 18141 18144 19110 Face 37324 19111 17546 17279 Face 37325 19110 19111 17279 Face 37326 17546 19169 19168 Face 37327 17279 17546 19168 Face 37328 17916 18775 19168 Face 37329 19169 17916 19168 Face 37330 19035 17305 18775 Face 37331 17916 19035 18775 Face 37332 17142 18605 17305 Face 37333 19035 17142 17305 Face 37334 23770 24228 19931 Face 37335 20610 32539 26421 Face 37336 19024 19134 19133 Face 37337 18834 17735 17734 Face 37338 16939 16940 17031 Face 37339 19023 19024 19133 Face 37340 17120 17121 17210 Face 37341 17907 17998 17906 Face 37342 19133 19134 19242 Face 37343 13996 15088 13994 Face 37344 30235 30300 30299 Face 37345 18147 17464 17841 Face 37346 18203 18299 18298 Face 37347 16820 16819 16750 Face 37348 18093 1586 18188 Face 37349 29188 2678 2806 Face 37350 17591 17599 18562 Face 37351 29149 29188 2806 Face 37352 17596 17403 17394 Face 37353 19024 19025 19134 Face 37354 17372 17874 18959 Face 37355 18852 17372 18959 Face 37356 17029 17120 17119 Face 37357 18377 18378 18471 Face 37358 17898 18776 19106 Face 37359 18776 18009 18163 Face 37360 17898 19106 16916 Face 37361 18009 18687 18163 Face 37362 18039 17898 16916 Face 37363 18776 18163 19106 Face 37364 17618 17708 17617 Face 37365 17887 17888 17978 Face 37366 17799 17890 17889 Face 37367 17798 17799 17889 Face 37368 3892 19067 4020 Face 37369 16850 16938 16849 Face 37370 34813 34666 34441 Face 37371 18255 27332 6918 Face 37372 17528 17617 17616 Face 37373 2678 29741 29623 Face 37374 18038 17805 18440 Face 37375 18439 17404 17668 Face 37376 19079 17406 18847 Face 37377 18432 32425 19116 Face 37378 19073 19079 17445 Face 37379 17445 19079 18847 Face 37380 19165 19073 18295 Face 37381 18295 19073 17445 Face 37382 18222 19165 19163 Face 37383 19163 19165 18295 Face 37384 17099 17108 18218 Face 37385 18218 18222 19163 Face 37386 17287 22037 18780 Face 37387 18780 17669 18793 Face 37388 17568 17747 18780 Face 37389 18793 17568 18780 Face 37390 18526 18195 17747 Face 37391 17568 18526 17747 Face 37392 18391 18533 18195 Face 37393 18526 18391 18195 Face 37394 17465 17554 18533 Face 37395 18391 17465 18533 Face 37396 16208 19057 436 Face 37397 27110 27111 27226 Face 37398 17302 17600 17423 Face 37399 18640 17593 18747 Face 37400 19229 18162 16062 Face 37401 17381 694 17380 Face 37402 19130 19239 19238 Face 37403 19129 19130 19238 Face 37404 14023 18067 15184 Face 37405 18910 18911 19019 Face 37406 18394 18489 18488 Face 37407 1392 18123 1391 Face 37408 17633 17599 17927 Face 37409 17671 18535 17545 Face 37410 17026 17027 17117 Face 37411 16664 27157 27101 Face 37412 27739 12207 12109 Face 37413 16733 16801 16800 Face 37414 16731 32318 16732 Face 37415 16801 16889 16888 Face 37416 16800 16801 16888 Face 37417 16889 16981 16980 Face 37418 16888 16889 16980 Face 37419 16981 17075 17074 Face 37420 16980 16981 17074 Face 37421 17075 17165 17164 Face 37422 17074 17075 17164 Face 37423 17165 17255 17254 Face 37424 17164 17165 17254 Face 37425 17255 17345 17344 Face 37426 17254 17255 17344 Face 37427 17345 17434 17433 Face 37428 17344 17345 17433 Face 37429 17434 17520 17519 Face 37430 17433 17434 17519 Face 37431 17609 17608 17519 Face 37432 17520 17609 17519 Face 37433 17699 20031 17698 Face 37434 17609 17699 17608 Face 37435 17744 18627 17636 Face 37436 17791 20114 17790 Face 37437 18107 18203 18202 Face 37438 18202 18203 18298 Face 37439 17205 17204 17114 Face 37440 16908 16907 16819 Face 37441 17182 17272 17181 Face 37442 18915 19024 19023 Face 37443 17207 17208 17298 Face 37444 17476 17475 17389 Face 37445 17555 18728 33422 Face 37446 6034 28437 20574 Face 37447 28933 25429 29839 Face 37448 20606 17857 29761 Face 37449 27827 27829 29460 Face 37450 29461 18445 5513 Face 37451 23029 28933 29839 Face 37452 28269 26472 27623 Face 37453 19763 23956 23393 Face 37454 2424 3588 25656 Face 37455 29084 29085 19195 Face 37456 29085 19196 19195 Face 37457 651 7018 7130 Face 37458 650 651 7130 Face 37459 24595 2688 2425 Face 37460 18822 2679 18357 Face 37461 19463 25984 19464 Face 37462 25542 25543 26413 Face 37463 29417 29548 29547 Face 37464 15306 29472 29470 Face 37465 21702 21703 21799 Face 37466 23135 14119 29604 Face 37467 10711 23292 6639 Face 37468 33168 33289 6037 Face 37469 24506 27130 28436 Face 37470 26446 25978 26986 Face 37471 31532 31425 11168 Face 37472 23070 28417 27997 Face 37473 17317 18965 17228 Face 37474 17727 17317 17228 Face 37475 18965 17947 18892 Face 37476 17228 18965 18892 Face 37477 17947 17230 18536 Face 37478 18892 17947 18536 Face 37479 17230 18462 18151 Face 37480 18536 17230 18151 Face 37481 18462 17190 17837 Face 37482 18151 18462 17837 Face 37483 17190 18623 18230 Face 37484 17837 17190 18230 Face 37485 18623 17058 18136 Face 37486 18230 18623 18136 Face 37487 17058 18429 18062 Face 37488 18136 17058 18062 Face 37489 18429 17370 17429 Face 37490 18062 18429 17429 Face 37491 17370 18902 18798 Face 37492 17429 17370 18798 Face 37493 18902 18158 18321 Face 37494 18798 18902 18321 Face 37495 17048 17047 18321 Face 37496 18158 17048 18321 Face 37497 18149 18144 17047 Face 37498 17048 18149 17047 Face 37499 19112 19111 18144 Face 37500 18149 19112 18144 Face 37501 19112 18668 17546 Face 37502 19111 19112 17546 Face 37503 18668 19219 19169 Face 37504 17546 18668 19169 Face 37505 19219 18096 17916 Face 37506 19169 19219 17916 Face 37507 18096 19034 19035 Face 37508 17916 18096 19035 Face 37509 291 33787 33568 Face 37510 19034 18430 19035 Face 37511 28634 29145 27895 Face 37512 29026 29157 29156 Face 37513 20652 2787 23171 Face 37514 32563 32562 32445 Face 37515 17390 17476 17389 Face 37516 17476 17565 17475 Face 37517 17565 17564 17475 Face 37518 18597 18598 18702 Face 37519 18614 16947 5530 Face 37520 4213 18414 18419 Face 37521 17182 17181 17091 Face 37522 16751 16820 16750 Face 37523 18299 18395 18394 Face 37524 19022 19023 19132 Face 37525 16746 16745 16685 Face 37526 33507 33634 33506 Face 37527 18704 18812 18811 Face 37528 24226 26540 26539 Face 37529 18220 18316 18315 Face 37530 34312 34568 34757 Face 37531 20016 24671 12552 Face 37532 34514 34626 34780 Face 37533 17552 17372 18852 Face 37534 34714 25683 34429 Face 37535 17932 18777 17911 Face 37536 17238 17932 17911 Face 37537 16991 16990 16898 Face 37538 16811 16899 16810 Face 37539 18784 33415 27249 Face 37540 18060 17684 16380 Face 37541 18175 18176 18273 Face 37542 19633 19632 17244 Face 37543 20365 17980 17981 Face 37544 17889 17890 17980 Face 37545 16938 17030 17029 Face 37546 2209 2082 2210 Face 37547 18255 6918 25493 Face 37548 22342 17547 17553 Face 37549 17594 22526 21187 Face 37550 17447 18348 16860 Face 37551 18440 18439 17668 Face 37552 17404 18515 18615 Face 37553 28303 6280 27571 Face 37554 1883 20719 27164 Face 37555 17265 18479 17480 Face 37556 18858 17265 17480 Face 37557 17461 18246 18900 Face 37558 17760 17461 18900 Face 37559 18246 18324 18152 Face 37560 18900 18246 18152 Face 37561 34462 7923 34648 Face 37562 18858 17480 17605 Face 37563 17448 18793 17360 Face 37564 22324 17360 17669 Face 37565 17657 17568 18793 Face 37566 17448 17657 18793 Face 37567 17988 18526 17568 Face 37568 17657 17988 17568 Face 37569 18415 18391 18526 Face 37570 17988 18415 18526 Face 37571 18415 18948 17465 Face 37572 18391 18415 17465 Face 37573 17271 17363 19748 Face 37574 19211 3759 3629 Face 37575 17490 17302 17423 Face 37576 5453 5323 5324 Face 37577 18113 18114 18209 Face 37578 17633 18565 18563 Face 37579 19020 19130 19129 Face 37580 18806 18807 18910 Face 37581 18574 18678 18573 Face 37582 19019 19020 19129 Face 37583 18581 14320 18644 Face 37584 18703 18811 18810 Face 37585 19134 19243 19242 Face 37586 18914 18915 19023 Face 37587 18404 18499 18498 Face 37588 17334 17927 18744 Face 37589 18498 18499 18597 Face 37590 17587 18711 17372 Face 37591 17465 18948 1454 Face 37592 17281 33171 17584 Face 37593 23496 23923 23416 Face 37594 16734 16802 16801 Face 37595 16733 16734 16801 Face 37596 16802 16890 16889 Face 37597 16801 16802 16889 Face 37598 16890 16982 16981 Face 37599 16889 16890 16981 Face 37600 16982 17076 17075 Face 37601 16981 16982 17075 Face 37602 17076 17166 17165 Face 37603 17075 17076 17165 Face 37604 17166 17256 17255 Face 37605 17165 17166 17255 Face 37606 17256 17346 17345 Face 37607 17255 17256 17345 Face 37608 17346 17435 17434 Face 37609 17345 17346 17434 Face 37610 17435 17521 17520 Face 37611 17434 17435 17520 Face 37612 17610 17609 17520 Face 37613 17521 17610 17520 Face 37614 17700 17699 17609 Face 37615 17610 17700 17609 Face 37616 17791 17790 17699 Face 37617 17700 17791 17699 Face 37618 19021 19131 19130 Face 37619 17883 17882 17791 Face 37620 16820 16908 16819 Face 37621 17092 17091 16999 Face 37622 17042 18061 19076 Face 37623 17113 17114 17203 Face 37624 17134 16945 19039 Face 37625 19247 19150 19246 Face 37626 34528 34770 34293 Face 37627 32687 32820 32686 Face 37628 27600 32656 27601 Face 37629 28386 28387 28521 Face 37630 25573 25572 25488 Face 37631 23194 23029 29838 Face 37632 34805 34422 28004 Face 37633 2552 25656 29750 Face 37634 25316 23194 29825 Face 37635 19195 19196 29347 Face 37636 19196 29458 29347 Face 37637 2295 651 650 Face 37638 2170 2295 650 Face 37639 25875 25876 25982 Face 37640 27216 27506 6282 Face 37641 24196 25316 29825 Face 37642 7013 28695 28566 Face 37643 26474 26475 27863 Face 37644 34809 34656 34698 Face 37645 34668 34338 34370 Face 37646 31536 34053 33284 Face 37647 29772 24192 29771 Face 37648 24388 24387 29217 Face 37649 16369 21384 22237 Face 37650 29324 29194 20987 Face 37651 34814 34416 34711 Face 37652 30720 11058 11057 Face 37653 18040 17014 18965 Face 37654 17317 18040 18965 Face 37655 17014 17418 17947 Face 37656 18965 17014 17947 Face 37657 17418 17765 17230 Face 37658 17947 17418 17230 Face 37659 17765 17948 18462 Face 37660 17230 17765 18462 Face 37661 17948 17962 17190 Face 37662 18462 17948 17190 Face 37663 17962 17607 18623 Face 37664 17190 17962 18623 Face 37665 17607 18153 17058 Face 37666 18623 17607 17058 Face 37667 18153 17223 18429 Face 37668 17058 18153 18429 Face 37669 17223 18338 17370 Face 37670 18429 17223 17370 Face 37671 18338 17879 18902 Face 37672 17370 18338 18902 Face 37673 17879 17188 18158 Face 37674 18902 17879 18158 Face 37675 17188 17049 17048 Face 37676 18158 17188 17048 Face 37677 17049 18166 18149 Face 37678 17048 17049 18149 Face 37679 18166 19113 19112 Face 37680 18149 18166 19112 Face 37681 19113 17770 18668 Face 37682 19112 19113 18668 Face 37683 17770 19045 19219 Face 37684 18668 17770 19219 Face 37685 19045 17849 18096 Face 37686 19219 19045 18096 Face 37687 17849 18244 19034 Face 37688 18096 17849 19034 Face 37689 18241 17780 21190 Face 37690 19034 18244 18430 Face 37691 649 27997 27629 Face 37692 18029 17492 16924 Face 37693 17029 17030 17120 Face 37694 692 579 693 Face 37695 2580 2581 2711 Face 37696 23491 2815 22271 Face 37697 18788 2563 2434 Face 37698 16838 16926 16925 Face 37699 7708 10813 1092 Face 37700 17559 17558 17469 Face 37701 15883 556 13861 Face 37702 17092 17182 17091 Face 37703 12501 12590 31773 Face 37704 17823 17483 18058 Face 37705 18058 17822 17823 Face 37706 17823 17822 18724 Face 37707 17822 18830 18724 Face 37708 11674 3032 26786 Face 37709 18830 17968 18819 Face 37710 25741 19520 19602 Face 37711 17732 17731 18819 Face 37712 17968 17732 18819 Face 37713 17140 17040 19172 Face 37714 17732 19171 17731 Face 37715 18736 19155 18777 Face 37716 17932 18736 18777 Face 37717 17312 17540 19145 Face 37718 17540 17040 19145 Face 37719 11531 16032 9867 Face 37720 19008 17312 18477 Face 37721 19002 18059 18060 Face 37722 29351 29352 7121 Face 37723 33362 33495 33361 Face 37724 29067 34595 26788 Face 37725 19104 17602 17371 Face 37726 17738 17828 17827 Face 37727 26179 26181 27477 Face 37728 27593 27592 27472 Face 37729 17971 18336 5532 Face 37730 18986 18985 536 Face 37731 17668 17404 18615 Face 37732 18818 18002 18615 Face 37733 22718 26102 26100 Face 37734 12983 17823 18724 Face 37735 18790 16782 18479 Face 37736 17265 18790 18479 Face 37737 18041 17839 22416 Face 37738 13069 14089 655 Face 37739 18733 17839 17858 Face 37740 17233 19107 18041 Face 37741 17360 18733 17448 Face 37742 19107 17858 17839 Face 37743 17802 17448 18733 Face 37744 17858 17802 18733 Face 37745 18044 17657 17448 Face 37746 17802 18044 17448 Face 37747 18583 17988 17657 Face 37748 18044 18583 17657 Face 37749 17425 18415 17988 Face 37750 18583 17425 17988 Face 37751 17425 18528 18948 Face 37752 18415 17425 18948 Face 37753 3209 1567 172 Face 37754 5322 18562 5323 Face 37755 7336 7337 1113 Face 37756 17600 18675 18570 Face 37757 18698 18699 18806 Face 37758 6158 14395 14320 Face 37759 18911 19020 19019 Face 37760 18593 18594 18698 Face 37761 16942 17034 17033 Face 37762 18807 18911 18910 Face 37763 24195 19857 19858 Face 37764 16837 16838 16925 Face 37765 16946 18644 14923 Face 37766 18644 17453 18581 Face 37767 17565 17654 17564 Face 37768 18639 19845 18191 Face 37769 693 17380 694 Face 37770 18380 18474 18473 Face 37771 14208 17407 14774 Face 37772 17041 17306 18540 Face 37773 2082 2209 18712 Face 37774 18835 17313 17596 Face 37775 2163 18837 18722 Face 37776 16678 16679 16734 Face 37777 34322 34377 11358 Face 37778 16803 16802 16734 Face 37779 16735 16803 16734 Face 37780 16891 16890 16802 Face 37781 16803 16891 16802 Face 37782 16891 16983 16982 Face 37783 16890 16891 16982 Face 37784 16983 17077 17076 Face 37785 16982 16983 17076 Face 37786 17077 17167 17166 Face 37787 17076 17077 17166 Face 37788 17167 17257 17256 Face 37789 17166 17167 17256 Face 37790 17257 17347 17346 Face 37791 17256 17257 17346 Face 37792 17347 17436 17435 Face 37793 17346 17347 17435 Face 37794 17436 17522 17521 Face 37795 17435 17436 17521 Face 37796 17611 17610 17521 Face 37797 17522 17611 17521 Face 37798 17701 17700 17610 Face 37799 17611 17701 17610 Face 37800 17792 17791 17700 Face 37801 17701 17792 17700 Face 37802 17974 17883 17884 Face 37803 17792 17883 17791 Face 37804 17000 17092 16999 Face 37805 16739 16808 16738 Face 37806 26881 26994 26993 Face 37807 19144 18924 17375 Face 37808 1454 18948 18528 Face 37809 18015 18016 18107 Face 37810 21611 21705 29061 Face 37811 24167 18866 2938 Face 37812 28786 28912 28911 Face 37813 28250 28251 28384 Face 37814 32266 32372 32265 Face 37815 32372 32484 32483 Face 37816 28544 28408 28133 Face 37817 29303 29434 29302 Face 37818 30085 30147 30146 Face 37819 29458 22145 29347 Face 37820 22461 22365 29674 Face 37821 2170 22650 21637 Face 37822 29050 29049 28922 Face 37823 34388 34311 34443 Face 37824 27638 27769 27356 Face 37825 25984 19382 25877 Face 37826 22996 24196 29825 Face 37827 30658 30757 30657 Face 37828 18646 18772 19096 Face 37829 20402 20403 29330 Face 37830 29431 29430 29299 Face 37831 29300 29431 29299 Face 37832 22066 22067 22163 Face 37833 28632 28631 28494 Face 37834 26531 25473 16676 Face 37835 29337 26531 16676 Face 37836 18717 16923 17014 Face 37837 18040 17317 34053 Face 37838 16923 16780 17418 Face 37839 17014 16923 17418 Face 37840 16780 18332 17765 Face 37841 17418 16780 17765 Face 37842 18332 18145 17948 Face 37843 17765 18332 17948 Face 37844 18145 17868 17962 Face 37845 17948 18145 17962 Face 37846 17868 17402 17607 Face 37847 17962 17868 17607 Face 37848 17402 17462 18153 Face 37849 17607 17402 18153 Face 37850 17462 18850 17223 Face 37851 18153 17462 17223 Face 37852 18850 19012 18338 Face 37853 17223 18850 18338 Face 37854 19012 18312 17879 Face 37855 18338 19012 17879 Face 37856 18312 18417 17188 Face 37857 17879 18312 17188 Face 37858 18417 17050 17049 Face 37859 17188 18417 17049 Face 37860 17050 18189 18166 Face 37861 17049 17050 18166 Face 37862 18189 19122 19113 Face 37863 18166 18189 19113 Face 37864 17949 17770 19113 Face 37865 19122 17949 19113 Face 37866 17949 18531 19045 Face 37867 17770 17949 19045 Face 37868 17939 17849 19045 Face 37869 18531 17939 19045 Face 37870 18465 18244 17849 Face 37871 17939 18465 17849 Face 37872 29541 19037 18352 Face 37873 12587 17540 16033 Face 37874 19027 19137 19026 Face 37875 19246 19245 19136 Face 37876 19173 17102 18950 Face 37877 3892 4019 3891 Face 37878 18483 17511 17533 Face 37879 17697 18483 17533 Face 37880 12113 11529 11158 Face 37881 32393 7007 6899 Face 37882 31477 31586 31476 Face 37883 18553 6286 26559 Face 37884 29819 24725 24586 Face 37885 34315 34275 34515 Face 37886 24448 27215 26098 Face 37887 17855 18095 17822 Face 37888 18058 17855 17822 Face 37889 18095 17421 18830 Face 37890 17822 18095 18830 Face 37891 17421 18150 17968 Face 37892 18830 17421 17968 Face 37893 18320 17732 17968 Face 37894 18150 18320 17968 Face 37895 17581 19171 17732 Face 37896 18320 17581 17732 Face 37897 19765 19172 12587 Face 37898 17581 17853 19171 Face 37899 18848 19145 17140 Face 37900 17853 18848 17140 Face 37901 17310 17312 19145 Face 37902 18848 17310 19145 Face 37903 12011 26076 17496 Face 37904 17310 18477 17312 Face 37905 34422 34527 34788 Face 37906 18477 18045 19008 Face 37907 17737 17738 17827 Face 37908 17861 17086 17951 Face 37909 18669 20200 19933 Face 37910 18995 19005 17100 Face 37911 17908 17999 17907 Face 37912 34765 34805 34509 Face 37913 18515 18818 18615 Face 37914 17603 17789 18002 Face 37915 29929 29928 29874 Face 37916 20292 18078 17986 Face 37917 30820 30918 30819 Face 37918 18635 6836 17395 Face 37919 17328 17233 18635 Face 37920 18935 17328 18635 Face 37921 18328 19107 17233 Face 37922 17328 18328 17233 Face 37923 17679 17858 19107 Face 37924 18328 17679 19107 Face 37925 17548 17802 17858 Face 37926 17679 17548 17858 Face 37927 18043 18044 17802 Face 37928 17548 18043 17802 Face 37929 18482 18583 18044 Face 37930 18043 18482 18044 Face 37931 17542 17425 18583 Face 37932 18482 17542 18583 Face 37933 1270 1163 1271 Face 37934 17425 17542 18528 Face 37935 17423 17600 18570 Face 37936 1614 18315 1723 Face 37937 19180 17934 18147 Face 37938 34597 34422 34805 Face 37939 18494 18495 18593 Face 37940 18699 18807 18806 Face 37941 17102 18314 17454 Face 37942 18594 18699 18698 Face 37943 25675 25676 25785 Face 37944 1246 1245 1137 Face 37945 16946 17453 18644 Face 37946 20137 20056 17718 Face 37947 18639 18191 17453 Face 37948 16946 18639 17453 Face 37949 17000 16999 16907 Face 37950 1259 1152 1260 Face 37951 29962 29961 29903 Face 37952 16908 17000 16907 Face 37953 19633 17244 17245 Face 37954 3697 17825 18053 Face 37955 18176 18177 18274 Face 37956 18920 2333 2461 Face 37957 16842 16930 16929 Face 37958 17374 17824 4996 Face 37959 7169 594 486 Face 37960 12790 12699 12700 Face 37961 16736 16804 16803 Face 37962 30921 31020 31019 Face 37963 16804 16892 16891 Face 37964 16803 16804 16891 Face 37965 16984 16983 16891 Face 37966 16892 16984 16891 Face 37967 17078 17077 16983 Face 37968 16984 17078 16983 Face 37969 17078 17168 17167 Face 37970 17077 17078 17167 Face 37971 17168 17258 17257 Face 37972 17167 17168 17257 Face 37973 17258 17348 17347 Face 37974 17257 17258 17347 Face 37975 17348 17437 17436 Face 37976 17347 17348 17436 Face 37977 17437 17523 17522 Face 37978 17436 17437 17522 Face 37979 17523 17612 17611 Face 37980 17522 17523 17611 Face 37981 17612 17702 17701 Face 37982 17611 17612 17701 Face 37983 17793 17792 17701 Face 37984 17702 17793 17701 Face 37985 17884 17883 17792 Face 37986 17793 17884 17792 Face 37987 17975 17976 20278 Face 37988 17974 20277 20276 Face 37989 3768 3900 18748 Face 37990 1713 18199 18200 Face 37991 14927 3161 18436 Face 37992 34739 26072 34801 Face 37993 24725 29819 29828 Face 37994 25974 26085 26084 Face 37995 24369 24508 26988 Face 37996 11212 34636 34479 Face 37997 28785 28786 28911 Face 37998 28142 28143 28815 Face 37999 32692 32825 32691 Face 38000 28668 28667 28532 Face 38001 2552 20283 15154 Face 38002 18973 20981 4888 Face 38003 7024 6579 6813 Face 38004 21637 2295 2170 Face 38005 28533 28532 28397 Face 38006 31417 31523 31416 Face 38007 29470 29472 10987 Face 38008 26095 26096 27379 Face 38009 27356 7013 28566 Face 38010 27623 20803 18969 Face 38011 29819 24586 29820 Face 38012 18646 18979 11165 Face 38013 19096 18772 27486 Face 38014 27473 27472 27353 Face 38015 27354 27473 27353 Face 38016 28632 28760 28631 Face 38017 28760 28759 28631 Face 38018 2809 28156 28682 Face 38019 26564 2809 28682 Face 38020 19117 17586 16923 Face 38021 17014 18040 18717 Face 38022 17586 17787 16780 Face 38023 16923 17586 16780 Face 38024 17787 17213 18332 Face 38025 16780 17787 18332 Face 38026 17213 17516 18145 Face 38027 18332 17213 18145 Face 38028 17516 18049 17868 Face 38029 18145 17516 17868 Face 38030 18049 17803 17402 Face 38031 17868 18049 17402 Face 38032 17803 17627 17462 Face 38033 17402 17803 17462 Face 38034 17627 17376 18850 Face 38035 17462 17627 18850 Face 38036 18164 19012 18850 Face 38037 17376 18164 18850 Face 38038 17745 18312 19012 Face 38039 18164 17745 19012 Face 38040 17595 18417 18312 Face 38041 17745 17595 18312 Face 38042 17595 17051 17050 Face 38043 18417 17595 17050 Face 38044 17051 18198 18189 Face 38045 17050 17051 18189 Face 38046 18198 19140 19122 Face 38047 18189 18198 19122 Face 38048 19140 4220 17949 Face 38049 19122 19140 17949 Face 38050 4220 18992 18531 Face 38051 17949 4220 18531 Face 38052 18992 17848 17939 Face 38053 18531 18992 17939 Face 38054 17848 17039 18465 Face 38055 17939 17848 18465 Face 38056 27571 27697 26302 Face 38057 18465 17039 17424 Face 38058 18690 18774 17725 Face 38059 17362 18481 19245 Face 38060 34360 34790 34767 Face 38061 4799 4668 4800 Face 38062 28367 28366 28232 Face 38063 28233 28232 28095 Face 38064 17781 18564 17580 Face 38065 26433 26551 26550 Face 38066 25862 25863 25973 Face 38067 6286 6725 27388 Face 38068 6725 18943 27388 Face 38069 31992 10223 10345 Face 38070 30212 30277 30211 Face 38071 19048 18003 18095 Face 38072 17855 19048 18095 Face 38073 18003 17682 17421 Face 38074 18095 18003 17421 Face 38075 17682 17759 18150 Face 38076 17421 17682 18150 Face 38077 17534 18320 18150 Face 38078 17759 17534 18150 Face 38079 17851 17581 18320 Face 38080 17534 17851 18320 Face 38081 17043 17853 17581 Face 38082 17851 17043 17581 Face 38083 17239 18848 17853 Face 38084 17043 17239 17853 Face 38085 17307 17310 18848 Face 38086 17239 17307 18848 Face 38087 17598 18477 17310 Face 38088 17307 17598 17310 Face 38089 18752 18045 18477 Face 38090 17598 18752 18477 Face 38091 19108 17779 18045 Face 38092 18752 19108 18045 Face 38093 16833 18995 17779 Face 38094 19108 16833 17779 Face 38095 18723 18672 18995 Face 38096 16833 18723 18995 Face 38097 18818 17603 18002 Face 38098 24952 25091 1603 Face 38099 17395 21002 19217 Face 38100 19217 21002 18196 Face 38101 18921 18935 19217 Face 38102 17010 18921 19217 Face 38103 17329 17328 18935 Face 38104 18921 17329 18935 Face 38105 18233 18328 17328 Face 38106 17329 18233 17328 Face 38107 17589 17679 18328 Face 38108 18233 17589 18328 Face 38109 18148 17548 17679 Face 38110 17589 18148 17679 Face 38111 17746 18043 17548 Face 38112 18148 17746 17548 Face 38113 17746 18386 18482 Face 38114 18043 17746 18482 Face 38115 18386 18423 17542 Face 38116 18482 18386 17542 Face 38117 16696 6822 16759 Face 38118 21955 22053 6006 Face 38119 18675 17724 17723 Face 38120 24557 23020 16958 Face 38121 3509 17371 3380 Face 38122 18573 18572 18471 Face 38123 18011 18012 18103 Face 38124 16955 19183 19077 Face 38125 17829 17830 17921 Face 38126 18104 18200 18199 Face 38127 17922 18012 18011 Face 38128 16946 4738 18487 Face 38129 1452 17321 18886 Face 38130 1246 1137 1138 Face 38131 2756 17940 18487 Face 38132 18487 18639 16946 Face 38133 3500 18540 3629 Face 38134 1152 17826 1260 Face 38135 18487 17488 18639 Face 38136 19830 19748 17363 Face 38137 21859 17359 17913 Face 38138 4934 17925 17567 Face 38139 17464 17358 17457 Face 38140 3119 19150 2983 Face 38141 33558 17673 32761 Face 38142 19137 19246 19136 Face 38143 17117 17207 17116 Face 38144 17921 17922 18011 Face 38145 1616 1617 1725 Face 38146 18090 18091 18185 Face 38147 34544 34767 34507 Face 38148 24451 24293 27369 Face 38149 16893 16892 16804 Face 38150 16805 16893 16804 Face 38151 16893 16985 16984 Face 38152 16892 16893 16984 Face 38153 16985 17079 17078 Face 38154 16984 16985 17078 Face 38155 17079 17169 17168 Face 38156 17078 17079 17168 Face 38157 17169 17259 17258 Face 38158 17168 17169 17258 Face 38159 17259 17349 17348 Face 38160 17258 17259 17348 Face 38161 17349 17438 17437 Face 38162 17348 17349 17437 Face 38163 17524 17523 17437 Face 38164 17438 17524 17437 Face 38165 17613 17612 17523 Face 38166 17524 17613 17523 Face 38167 17703 17702 17612 Face 38168 17613 17703 17612 Face 38169 17703 17794 17793 Face 38170 17702 17703 17793 Face 38171 17794 17885 17884 Face 38172 17793 17794 17884 Face 38173 13075 17982 18072 Face 38174 17884 17885 17975 Face 38175 33665 33539 33540 Face 38176 19059 17711 17788 Face 38177 24154 24153 21583 Face 38178 22510 20980 19091 Face 38179 26537 23448 26538 Face 38180 34557 34664 34592 Face 38181 6286 27388 26559 Face 38182 25970 25971 26081 Face 38183 6725 26334 18943 Face 38184 27888 27628 28685 Face 38185 27450 27571 25479 Face 38186 26302 28143 28142 Face 38187 2292 18757 18756 Face 38188 18757 14429 18756 Face 38189 32956 33090 32955 Face 38190 29277 11775 11457 Face 38191 24667 24666 22891 Face 38192 27580 27581 27707 Face 38193 27380 29072 27379 Face 38194 29072 29069 27379 Face 38195 26906 6797 19088 Face 38196 28012 28011 16660 Face 38197 28949 17236 11165 Face 38198 18979 18646 19096 Face 38199 19081 19080 18761 Face 38200 6909 7021 18761 Face 38201 29272 29142 22163 Face 38202 28887 28886 28759 Face 38203 25492 17053 28156 Face 38204 20620 26564 27218 Face 38205 17676 17586 19117 Face 38206 34556 34829 34418 Face 38207 18527 17787 17586 Face 38208 17676 18527 17586 Face 38209 17282 17213 17787 Face 38210 18527 17282 17787 Face 38211 17282 19146 17516 Face 38212 17213 17282 17516 Face 38213 19146 17943 18049 Face 38214 17516 19146 18049 Face 38215 18342 17803 18049 Face 38216 17943 18342 18049 Face 38217 18342 18443 17627 Face 38218 17803 18342 17627 Face 38219 18443 17972 17376 Face 38220 17627 18443 17376 Face 38221 19044 18164 17376 Face 38222 17972 19044 17376 Face 38223 19213 17745 18164 Face 38224 19044 19213 18164 Face 38225 1684 17595 17745 Face 38226 19213 1684 17745 Face 38227 17052 17051 17595 Face 38228 1684 17052 17595 Face 38229 17052 18216 18198 Face 38230 17051 17052 18198 Face 38231 18216 19142 19140 Face 38232 18198 18216 19140 Face 38233 19142 17877 4220 Face 38234 19140 19142 4220 Face 38235 17877 18993 18992 Face 38236 4220 17877 18992 Face 38237 18993 18035 17848 Face 38238 18992 18993 17848 Face 38239 18035 17743 17039 Face 38240 17848 18035 17039 Face 38241 7016 29018 29613 Face 38242 17146 5148 18287 Face 38243 17625 3800 4085 Face 38244 22416 21662 18041 Face 38245 27829 29461 29460 Face 38246 18717 34053 31536 Face 38247 32443 32560 32559 Face 38248 29848 29902 29847 Face 38249 23486 6615 28761 Face 38250 21967 21871 11672 Face 38251 26419 28699 26418 Face 38252 28154 7016 27628 Face 38253 26334 28685 18943 Face 38254 6685 33411 6686 Face 38255 25479 26302 28142 Face 38256 18289 17912 18003 Face 38257 19048 18289 18003 Face 38258 17912 17840 17682 Face 38259 18003 17912 17682 Face 38260 17840 18127 17759 Face 38261 17682 17840 17759 Face 38262 18617 17534 17759 Face 38263 18127 18617 17759 Face 38264 18849 17851 17534 Face 38265 18617 18849 17534 Face 38266 17578 17043 17851 Face 38267 18849 17578 17851 Face 38268 17148 17239 17043 Face 38269 17578 17148 17043 Face 38270 17710 17307 17239 Face 38271 17148 17710 17239 Face 38272 17243 17598 17307 Face 38273 17710 17243 17307 Face 38274 18140 18752 17598 Face 38275 17243 18140 17598 Face 38276 17466 19108 18752 Face 38277 18140 17466 18752 Face 38278 18610 16833 19108 Face 38279 17466 18610 19108 Face 38280 19004 18723 16833 Face 38281 18610 19004 16833 Face 38282 18685 18294 18723 Face 38283 19004 18685 18723 Face 38284 16918 17010 18294 Face 38285 18685 16918 18294 Face 38286 17778 18921 17010 Face 38287 16918 17778 17010 Face 38288 18042 17329 18921 Face 38289 17778 18042 18921 Face 38290 17771 18233 17329 Face 38291 18042 17771 17329 Face 38292 17326 17589 18233 Face 38293 17771 17326 18233 Face 38294 17357 18148 17589 Face 38295 17326 17357 17589 Face 38296 17357 18134 17746 Face 38297 18148 17357 17746 Face 38298 18134 18194 18386 Face 38299 17746 18134 18386 Face 38300 18194 17825 18423 Face 38301 18386 18194 18423 Face 38302 1574 17449 18817 Face 38303 34782 34587 34618 Face 38304 18570 18675 17723 Face 38305 2897 17285 4085 Face 38306 18014 18106 18105 Face 38307 18466 18046 18745 Face 38308 18022 18114 18113 Face 38309 18920 18919 18815 Face 38310 1374 1261 17919 Face 38311 18285 18284 18186 Face 38312 17386 17387 17472 Face 38313 18504 17841 19184 Face 38314 17031 17032 17122 Face 38315 6145 15184 2756 Face 38316 17446 16948 17229 Face 38317 16948 17264 17229 Face 38318 694 17467 810 Face 38319 19231 20535 325 Face 38320 17940 17218 17488 Face 38321 18487 17940 17488 Face 38322 17933 17359 17488 Face 38323 17218 17933 17488 Face 38324 17864 17773 21671 Face 38325 17933 17913 17359 Face 38326 34654 34283 34753 Face 38327 17913 17864 18735 Face 38328 12765 13484 17575 Face 38329 17864 17664 17773 Face 38330 3570 3697 18053 Face 38331 14873 17575 17842 Face 38332 17031 17122 17121 Face 38333 1268 18017 18016 Face 38334 16698 5591 18425 Face 38335 34100 34225 16688 Face 38336 34099 34100 16688 Face 38337 16894 16893 16805 Face 38338 16806 16894 16805 Face 38339 16986 16985 16893 Face 38340 16894 16986 16893 Face 38341 16986 17080 17079 Face 38342 16985 16986 17079 Face 38343 16987 19483 19482 Face 38344 17079 17080 17169 Face 38345 17170 17080 19482 Face 38346 17169 17170 17259 Face 38347 17260 17350 17349 Face 38348 17259 17260 17349 Face 38349 17350 17439 17438 Face 38350 17349 17350 17438 Face 38351 17439 17525 17524 Face 38352 17438 17439 17524 Face 38353 17525 17614 17613 Face 38354 17524 17525 17613 Face 38355 17614 17704 17703 Face 38356 17613 17614 17703 Face 38357 17795 17794 17703 Face 38358 17704 17795 17703 Face 38359 17795 17886 17885 Face 38360 17794 17795 17885 Face 38361 17886 17977 17976 Face 38362 17885 17886 17976 Face 38363 1393 1505 1392 Face 38364 8263 8262 14281 Face 38365 13269 13633 22369 Face 38366 34320 34796 34329 Face 38367 27395 29088 29087 Face 38368 27394 27395 29087 Face 38369 6280 27697 27571 Face 38370 26334 27888 28685 Face 38371 27334 27333 27223 Face 38372 27224 27334 27223 Face 38373 29803 22365 22461 Face 38374 14790 14429 6913 Face 38375 31471 31470 31366 Face 38376 7242 11307 11387 Face 38377 12790 27902 28033 Face 38378 23992 28268 26327 Face 38379 29069 29072 15733 Face 38380 29072 19456 15733 Face 38381 24919 27740 27610 Face 38382 26702 18998 29465 Face 38383 24134 28226 29717 Face 38384 16765 18646 11165 Face 38385 31697 31809 31696 Face 38386 28643 28772 28771 Face 38387 29272 22258 29403 Face 38388 16665 24996 27374 Face 38389 31756 31868 31755 Face 38390 26564 28682 27218 Face 38391 17859 16761 17676 Face 38392 19226 17676 19117 Face 38393 16761 18383 18527 Face 38394 17676 16761 18527 Face 38395 18383 18925 17282 Face 38396 18527 18383 17282 Face 38397 18925 17964 19146 Face 38398 17282 18925 19146 Face 38399 17964 17850 17943 Face 38400 19146 17964 17943 Face 38401 17850 19009 18342 Face 38402 17943 17850 18342 Face 38403 18442 18443 18342 Face 38404 19009 18442 18342 Face 38405 18442 18746 17972 Face 38406 18443 18442 17972 Face 38407 18746 19061 19044 Face 38408 17972 18746 19044 Face 38409 17893 19213 19044 Face 38410 19061 17893 19044 Face 38411 18159 1684 19213 Face 38412 17893 18159 19213 Face 38413 17098 17052 1684 Face 38414 18159 17098 1684 Face 38415 17098 18217 18216 Face 38416 17052 17098 18216 Face 38417 18217 19160 19142 Face 38418 18216 18217 19142 Face 38419 19160 3454 17877 Face 38420 19142 19160 17877 Face 38421 3454 17327 18993 Face 38422 17877 3454 18993 Face 38423 17327 10311 18035 Face 38424 18993 17327 18035 Face 38425 26410 26411 26528 Face 38426 32122 32226 32225 Face 38427 27893 28813 25989 Face 38428 34600 34541 34750 Face 38429 11496 26237 26238 Face 38430 20891 20892 7020 Face 38431 25582 23223 26298 Face 38432 16698 5461 5591 Face 38433 6679 21319 23447 Face 38434 10965 11103 1883 Face 38435 34569 34630 34308 Face 38436 27888 28154 27628 Face 38437 29589 29064 25582 Face 38438 27628 7016 29613 Face 38439 6280 28303 7016 Face 38440 18322 18949 18289 Face 38441 32289 32395 32394 Face 38442 18949 17821 17912 Face 38443 18289 18949 17912 Face 38444 17821 17670 17840 Face 38445 17912 17821 17840 Face 38446 17670 17263 18127 Face 38447 17840 17670 18127 Face 38448 17268 18617 18127 Face 38449 17263 17268 18127 Face 38450 17268 18611 18849 Face 38451 18617 17268 18849 Face 38452 17489 17578 18849 Face 38453 18611 17489 18849 Face 38454 17854 17148 17578 Face 38455 17489 17854 17578 Face 38456 17680 17710 17148 Face 38457 17854 17680 17148 Face 38458 17543 17243 17710 Face 38459 17680 17543 17710 Face 38460 18055 18140 17243 Face 38461 17543 18055 17243 Face 38462 19174 17466 18140 Face 38463 18055 19174 18140 Face 38464 18333 18610 17466 Face 38465 19174 18333 17466 Face 38466 17814 19004 18610 Face 38467 18333 17814 18610 Face 38468 18794 18685 19004 Face 38469 17814 18794 19004 Face 38470 17396 16918 18685 Face 38471 18794 17396 18685 Face 38472 17817 17778 16918 Face 38473 17396 17817 16918 Face 38474 17084 18042 17778 Face 38475 17817 17084 17778 Face 38476 17420 17771 18042 Face 38477 17084 17420 18042 Face 38478 17420 17325 17326 Face 38479 17771 17420 17326 Face 38480 17325 16950 17357 Face 38481 17326 17325 17357 Face 38482 16950 18135 18134 Face 38483 17357 16950 18134 Face 38484 18135 18291 18194 Face 38485 18134 18135 18194 Face 38486 18053 17825 18194 Face 38487 18291 18053 18194 Face 38488 11890 22892 11889 Face 38489 6947 6844 6948 Face 38490 17724 18587 18578 Face 38491 17723 17724 18578 Face 38492 18209 18305 18304 Face 38493 6619 6684 6683 Face 38494 17599 18563 18562 Face 38495 16940 17032 17031 Face 38496 32210 32318 16731 Face 38497 3033 1423 2897 Face 38498 19244 19245 18582 Face 38499 17843 5588 18346 Face 38500 16931 17023 17022 Face 38501 5459 17264 18346 Face 38502 18067 14023 14061 Face 38503 17696 5905 237 Face 38504 140 18718 139 Face 38505 18067 17744 17218 Face 38506 17940 18067 17218 Face 38507 17744 17636 17933 Face 38508 17218 17744 17933 Face 38509 17636 17510 17913 Face 38510 17933 17636 17913 Face 38511 18330 17864 17913 Face 38512 17510 18330 17913 Face 38513 18323 17664 17864 Face 38514 18330 18323 17864 Face 38515 17224 18718 17664 Face 38516 18323 17224 17664 Face 38517 18025 1273 18026 Face 38518 3455 139 17012 Face 38519 18919 19028 18918 Face 38520 34550 34521 34798 Face 38521 18481 18032 18926 Face 38522 16895 16894 16806 Face 38523 16217 16036 19592 Face 38524 16894 16895 16986 Face 38525 17632 1022 1135 Face 38526 19328 19404 16895 Face 38527 19127 19236 19235 Face 38528 25740 25741 23787 Face 38529 343 3331 237 Face 38530 16842 16843 16930 Face 38531 15972 20565 17234 Face 38532 20565 19885 18586 Face 38533 17234 20565 18586 Face 38534 17350 17351 17439 Face 38535 17440 17526 17525 Face 38536 17439 17440 17525 Face 38537 17526 17615 17614 Face 38538 17525 17526 17614 Face 38539 17615 17705 17704 Face 38540 17614 17615 17704 Face 38541 17705 17796 17795 Face 38542 17704 17705 17795 Face 38543 17796 17887 17886 Face 38544 17795 17796 17886 Face 38545 17887 17978 17977 Face 38546 17886 17887 17977 Face 38547 18053 18057 17674 Face 38548 11385 34548 34282 Face 38549 34309 34802 34749 Face 38550 17936 15595 4496 Face 38551 26707 26708 11994 Face 38552 29088 19097 19094 Face 38553 26100 26102 27394 Face 38554 28287 27014 25964 Face 38555 29573 29572 29441 Face 38556 17979 20364 20363 Face 38557 27334 27453 27333 Face 38558 26014 26988 24508 Face 38559 14429 14790 18756 Face 38560 29565 29564 29433 Face 38561 10987 20881 26908 Face 38562 27998 18870 27268 Face 38563 13002 27998 27268 Face 38564 16715 27158 27157 Face 38565 21693 21790 21789 Face 38566 18558 18662 21171 Face 38567 27632 27636 28414 Face 38568 25478 25855 27867 Face 38569 25986 29319 5246 Face 38570 24510 24509 24371 Face 38571 26415 18257 28363 Face 38572 34160 18825 34034 Face 38573 26326 34632 26327 Face 38574 17676 19226 17859 Face 38575 19102 17605 17859 Face 38576 17480 16761 17859 Face 38577 17605 17480 17859 Face 38578 18479 18383 16761 Face 38579 17480 18479 16761 Face 38580 16782 18925 18383 Face 38581 18479 16782 18383 Face 38582 18689 17964 18925 Face 38583 16782 18689 18925 Face 38584 18689 17760 17850 Face 38585 17964 18689 17850 Face 38586 17760 18900 19009 Face 38587 17850 17760 19009 Face 38588 18152 18442 19009 Face 38589 18900 18152 19009 Face 38590 18887 18746 18442 Face 38591 18152 18887 18442 Face 38592 17910 19061 18746 Face 38593 18887 17910 18746 Face 38594 17497 17893 19061 Face 38595 17910 17497 19061 Face 38596 18827 18159 17893 Face 38597 17497 18827 17893 Face 38598 17099 17098 18159 Face 38599 18827 17099 18159 Face 38600 17099 18218 18217 Face 38601 17098 17099 18217 Face 38602 18218 19163 19160 Face 38603 18217 18218 19160 Face 38604 19163 18295 3454 Face 38605 19160 19163 3454 Face 38606 18295 17445 17327 Face 38607 3454 18295 17327 Face 38608 17445 18847 10311 Face 38609 17327 17445 10311 Face 38610 3683 7383 7931 Face 38611 34248 18143 17081 Face 38612 28533 28668 28532 Face 38613 28160 29145 21073 Face 38614 17154 17244 17153 Face 38615 2551 20892 20891 Face 38616 30764 30870 30763 Face 38617 17527 17616 17615 Face 38618 33593 16682 33466 Face 38619 3846 19590 21752 Face 38620 27164 22718 26100 Face 38621 20719 22718 27164 Face 38622 27697 29582 26302 Face 38623 28154 6280 7016 Face 38624 29338 28303 27450 Face 38625 28303 29338 29018 Face 38626 18225 18484 18949 Face 38627 27218 34337 20620 Face 38628 18484 17820 17821 Face 38629 18949 18484 17821 Face 38630 17820 17487 17670 Face 38631 17821 17820 17670 Face 38632 17269 17263 17670 Face 38633 17487 17269 17670 Face 38634 17269 18038 17268 Face 38635 17263 17269 17268 Face 38636 18038 18440 18611 Face 38637 17268 18038 18611 Face 38638 18440 17668 17489 Face 38639 18611 18440 17489 Face 38640 18615 17854 17489 Face 38641 17668 18615 17489 Face 38642 18002 17680 17854 Face 38643 18615 18002 17854 Face 38644 17789 17543 17680 Face 38645 18002 17789 17680 Face 38646 19055 18055 17543 Face 38647 17789 19055 17543 Face 38648 18800 19174 18055 Face 38649 19055 18800 18055 Face 38650 18517 18333 19174 Face 38651 18800 18517 19174 Face 38652 17303 17814 18333 Face 38653 18517 17303 18333 Face 38654 18898 18794 17814 Face 38655 17303 18898 17814 Face 38656 17397 17396 18794 Face 38657 18898 17397 18794 Face 38658 18896 17817 17396 Face 38659 17397 18896 17396 Face 38660 18511 17084 17817 Face 38661 18896 18511 17817 Face 38662 17504 17420 17084 Face 38663 18511 17504 17084 Face 38664 17504 19216 17325 Face 38665 17420 17504 17325 Face 38666 19216 16862 16950 Face 38667 17325 19216 16950 Face 38668 16862 17573 18135 Face 38669 16950 16862 18135 Face 38670 17573 18057 18291 Face 38671 18135 17573 18291 Face 38672 14098 20739 16274 Face 38673 23193 14031 23248 Face 38674 22435 20551 20732 Face 38675 22435 5336 20551 Face 38676 23979 23229 22979 Face 38677 11895 22747 22788 Face 38678 21144 23367 21143 Face 38679 27387 20146 28031 Face 38680 25108 25247 25246 Face 38681 23579 23515 24507 Face 38682 34768 34570 34731 Face 38683 24643 23579 24507 Face 38684 25166 21854 22434 Face 38685 23704 24321 24206 Face 38686 23698 22730 25059 Face 38687 19345 20637 19907 Face 38688 20667 24279 24074 Face 38689 33930 32769 12119 Face 38690 24032 24031 24424 Face 38691 23284 24772 23557 Face 38692 31089 31090 31188 Face 38693 312 3297 7745 Face 38694 23229 24357 22856 Face 38695 20784 23979 22979 Face 38696 21144 21143 22923 Face 38697 22973 21144 22923 Face 38698 23515 23579 23152 Face 38699 25107 25108 25246 Face 38700 24608 23704 23040 Face 38701 23579 23153 23152 Face 38702 23093 22987 25526 Face 38703 24605 24608 23040 Face 38704 22738 12584 23090 Face 38705 6603 34348 27737 Face 38706 24978 25117 25116 Face 38707 20051 20133 20050 Face 38708 25842 25731 23371 Face 38709 24711 24847 24846 Face 38710 22844 22797 24074 Face 38711 24710 24711 24846 Face 38712 23914 23797 20079 Face 38713 23952 22844 24074 Face 38714 11775 22145 23797 Face 38715 24414 24032 24424 Face 38716 33787 11367 3933 Face 38717 15613 15471 21113 Face 38718 16170 16169 24566 Face 38719 22979 23229 22856 Face 38720 23491 23211 23892 Face 38721 23367 18732 6399 Face 38722 23308 24608 24605 Face 38723 23153 23287 23147 Face 38724 25217 25218 22676 Face 38725 23306 23308 24605 Face 38726 28162 20150 26472 Face 38727 25218 22729 22676 Face 38728 24714 22779 20783 Face 38729 21141 25288 24665 Face 38730 24847 24982 24981 Face 38731 24977 24978 25116 Face 38732 24846 24847 24981 Face 38733 24982 25121 25120 Face 38734 24981 24982 25120 Face 38735 23759 23572 23473 Face 38736 25121 25260 25259 Face 38737 22779 25022 24883 Face 38738 20783 22779 24883 Face 38739 25178 19380 24552 Face 38740 24593 25005 24475 Face 38741 24250 2149 24251 Face 38742 20324 26641 26642 Face 38743 19476 19321 21087 Face 38744 19339 21087 19321 Face 38745 19321 20821 19339 Face 38746 20390 27270 26178 Face 38747 20821 21097 20390 Face 38748 21097 21658 20390 Face 38749 21009 21854 20908 Face 38750 25305 11297 20908 Face 38751 25355 22870 25354 Face 38752 22719 23058 24078 Face 38753 34402 34524 29332 Face 38754 24271 12190 4471 Face 38755 23473 23474 24713 Face 38756 24713 24714 20783 Face 38757 25120 25121 25259 Face 38758 25260 25397 25396 Face 38759 20133 20211 20210 Face 38760 18607 2080 18506 Face 38761 20132 20133 20210 Face 38762 25259 25260 25396 Face 38763 23572 23474 23473 Face 38764 25397 23420 20175 Face 38765 23474 24714 24713 Face 38766 34739 34801 34469 Face 38767 24479 23317 23689 Face 38768 19590 3846 26702 Face 38769 22912 22732 23057 Face 38770 24757 19538 24088 Face 38771 21752 20152 19476 Face 38772 15576 19476 20574 Face 38773 20645 19321 19476 Face 38774 20152 20645 19476 Face 38775 20645 20999 20821 Face 38776 19321 20645 20821 Face 38777 20999 21189 21097 Face 38778 20821 20999 21097 Face 38779 21189 12178 21753 Face 38780 21097 21189 21753 Face 38781 12178 21755 21380 Face 38782 25868 25017 23727 Face 38783 23774 25977 23726 Face 38784 23727 25977 25868 Face 38785 13535 11525 13734 Face 38786 33616 33741 33615 Face 38787 11525 20235 20316 Face 38788 22981 24040 23291 Face 38789 15105 14973 15106 Face 38790 20235 16517 20316 Face 38791 20211 20293 20292 Face 38792 20210 20211 20292 Face 38793 25396 25397 20175 Face 38794 23265 23572 23612 Face 38795 23420 11834 24550 Face 38796 27753 28945 22147 Face 38797 20815 19838 26415 Face 38798 12358 16518 19838 Face 38799 14407 12358 19838 Face 38800 19672 19590 16518 Face 38801 12358 19672 16518 Face 38802 19476 3846 21752 Face 38803 19672 16187 19590 Face 38804 16187 22531 20152 Face 38805 21752 16187 20152 Face 38806 22531 19322 20645 Face 38807 20152 22531 20645 Face 38808 19322 19598 20999 Face 38809 20645 19322 20999 Face 38810 19598 21281 21189 Face 38811 20999 19598 21189 Face 38812 21281 14309 12178 Face 38813 21189 21281 12178 Face 38814 14309 21852 21755 Face 38815 12178 14309 21755 Face 38816 21852 13580 13535 Face 38817 21755 21852 13535 Face 38818 13580 16181 11525 Face 38819 13535 13580 11525 Face 38820 16181 20401 20235 Face 38821 11525 16181 20235 Face 38822 12528 16517 20235 Face 38823 20401 12528 20235 Face 38824 20473 21570 2801 Face 38825 34648 34469 34527 Face 38826 20175 23420 24550 Face 38827 11834 24530 23699 Face 38828 26785 20814 20815 Face 38829 23788 23376 23180 Face 38830 13035 14407 20814 Face 38831 20813 13035 20814 Face 38832 20751 12358 14407 Face 38833 13035 20751 14407 Face 38834 19428 19672 12358 Face 38835 20751 19428 12358 Face 38836 5206 16187 19672 Face 38837 19428 5206 19672 Face 38838 5206 19433 22531 Face 38839 16187 5206 22531 Face 38840 19433 19506 19322 Face 38841 22531 19433 19322 Face 38842 19506 19340 19598 Face 38843 19322 19506 19598 Face 38844 19340 21376 21281 Face 38845 19598 19340 21281 Face 38846 21376 21761 14309 Face 38847 21281 21376 14309 Face 38848 21761 21949 21852 Face 38849 14309 21761 21852 Face 38850 21949 9503 13580 Face 38851 21852 21949 13580 Face 38852 9503 13307 16181 Face 38853 13580 9503 16181 Face 38854 13307 20486 20401 Face 38855 16181 13307 20401 Face 38856 30495 30580 30494 Face 38857 20410 20496 26870 Face 38858 20284 17982 17891 Face 38859 24550 11834 23699 Face 38860 25789 25680 11123 Face 38861 25133 25272 25132 Face 38862 20459 20813 21762 Face 38863 12623 20459 21762 Face 38864 1531 13035 20813 Face 38865 20459 1531 20813 Face 38866 19844 20751 13035 Face 38867 1531 19844 13035 Face 38868 19427 19428 20751 Face 38869 19844 19427 20751 Face 38870 11224 5206 19428 Face 38871 19427 11224 19428 Face 38872 11224 19477 19433 Face 38873 5206 11224 19433 Face 38874 19477 19323 19506 Face 38875 19433 19477 19506 Face 38876 19323 20822 19340 Face 38877 19506 19323 19340 Face 38878 20822 21469 21376 Face 38879 19340 20822 21376 Face 38880 21469 19349 21761 Face 38881 21376 21469 21761 Face 38882 19349 2879 21949 Face 38883 21761 19349 21949 Face 38884 2879 3444 9503 Face 38885 21949 2879 9503 Face 38886 3444 16180 13307 Face 38887 9503 3444 13307 Face 38888 16180 13445 20486 Face 38889 13307 16180 20486 Face 38890 34720 34623 34825 Face 38891 34607 34812 34625 Face 38892 24530 24402 25292 Face 38893 21025 23368 11253 Face 38894 23699 24530 25292 Face 38895 21563 12623 20750 Face 38896 20750 18256 13202 Face 38897 20724 20459 12623 Face 38898 21563 20724 12623 Face 38899 22445 1531 20459 Face 38900 20724 22445 20459 Face 38901 19512 19844 1531 Face 38902 22445 19512 1531 Face 38903 440 19427 19844 Face 38904 19512 440 19844 Face 38905 440 21657 11224 Face 38906 19427 440 11224 Face 38907 21657 20228 19477 Face 38908 11224 21657 19477 Face 38909 20228 20552 19323 Face 38910 19477 20228 19323 Face 38911 20552 21000 20822 Face 38912 19323 20552 20822 Face 38913 21000 19620 21469 Face 38914 20822 21000 21469 Face 38915 19620 19752 19349 Face 38916 21469 19620 19349 Face 38917 19752 15435 2879 Face 38918 19349 19752 2879 Face 38919 15435 4870 3444 Face 38920 2879 15435 3444 Face 38921 4870 10072 16180 Face 38922 3444 4870 16180 Face 38923 10072 7949 13445 Face 38924 16180 10072 13445 Face 38925 10033 10034 10152 Face 38926 20710 20711 10965 Face 38927 13888 12528 13906 Face 38928 24402 24009 24008 Face 38929 22563 20928 20838 Face 38930 27271 12701 27045 Face 38931 21468 21563 20838 Face 38932 20928 21468 20838 Face 38933 20458 20724 21563 Face 38934 21468 20458 21563 Face 38935 22541 22445 20724 Face 38936 20458 22541 20724 Face 38937 21391 19512 22445 Face 38938 22541 21391 22445 Face 38939 21391 15176 440 Face 38940 19512 21391 440 Face 38941 15176 21564 21657 Face 38942 440 15176 21657 Face 38943 21564 20230 20228 Face 38944 21657 21564 20228 Face 38945 20230 19589 20552 Face 38946 20228 20230 20552 Face 38947 19589 975 21000 Face 38948 20552 19589 21000 Face 38949 975 11290 19620 Face 38950 21000 975 19620 Face 38951 11290 19836 19752 Face 38952 19620 11290 19752 Face 38953 19836 6632 15435 Face 38954 19752 19836 15435 Face 38955 6632 15312 4870 Face 38956 15435 6632 4870 Face 38957 15312 19430 10072 Face 38958 4870 15312 10072 Face 38959 14726 7949 10072 Face 38960 19430 14726 10072 Face 38961 19810 19886 17529 Face 38962 17669 18780 22037 Face 38963 34371 34762 34815 Face 38964 20470 19914 22563 Face 38965 34604 34492 34356 Face 38966 13634 20928 22563 Face 38967 19914 13634 22563 Face 38968 21006 21468 20928 Face 38969 13634 21006 20928 Face 38970 20723 20458 21468 Face 38971 21006 20723 21468 Face 38972 22635 22541 20458 Face 38973 20723 22635 20458 Face 38974 12585 21391 22541 Face 38975 22635 12585 22541 Face 38976 12585 22529 15176 Face 38977 21391 12585 15176 Face 38978 22529 21007 21564 Face 38979 15176 22529 21564 Face 38980 21007 22626 20230 Face 38981 21564 21007 20230 Face 38982 22626 19324 19589 Face 38983 20230 22626 19589 Face 38984 19324 19341 975 Face 38985 19589 19324 975 Face 38986 19341 5376 11290 Face 38987 975 19341 11290 Face 38988 5376 19911 19836 Face 38989 11290 5376 19836 Face 38990 19911 10599 6632 Face 38991 19836 19911 6632 Face 38992 10599 21552 15312 Face 38993 6632 10599 15312 Face 38994 21552 19354 19430 Face 38995 15312 21552 19430 Face 38996 19354 18413 19430 Face 38997 34419 34590 34689 Face 38998 2801 21665 12854 Face 38999 30 16523 8563 Face 39000 12350 15736 20470 Face 39001 29857 29856 26933 Face 39002 22152 19991 19914 Face 39003 20470 22152 19914 Face 39004 3313 13634 19914 Face 39005 19991 3313 19914 Face 39006 3313 21005 21006 Face 39007 13634 3313 21006 Face 39008 20722 20723 21006 Face 39009 21005 20722 21006 Face 39010 22348 22635 20723 Face 39011 20722 22348 20723 Face 39012 22348 13540 12585 Face 39013 22635 22348 12585 Face 39014 13540 22624 22529 Face 39015 12585 13540 22529 Face 39016 22624 21098 21007 Face 39017 22529 22624 21007 Face 39018 21098 19478 22626 Face 39019 21007 21098 22626 Face 39020 19478 21088 19324 Face 39021 22626 19478 19324 Face 39022 21088 20911 19341 Face 39023 19324 21088 19341 Face 39024 20911 13486 5376 Face 39025 19341 20911 5376 Face 39026 13486 19910 19911 Face 39027 5376 13486 19911 Face 39028 19910 9271 10599 Face 39029 19911 19910 10599 Face 39030 9271 19429 21552 Face 39031 10599 9271 21552 Face 39032 19429 19355 19354 Face 39033 21552 19429 19354 Face 39034 14053 13977 14054 Face 39035 34500 34544 34343 Face 39036 34361 34769 34830 Face 39037 23698 25059 16347 Face 39038 25292 24402 24008 Face 39039 19990 19991 22152 Face 39040 16665 26899 11975 Face 39041 20812 3313 19991 Face 39042 19990 20812 19991 Face 39043 20561 21005 3313 Face 39044 20812 20561 3313 Face 39045 20561 20642 20722 Face 39046 21005 20561 20722 Face 39047 22252 22348 20722 Face 39048 20642 22252 20722 Face 39049 22252 20660 13540 Face 39050 22348 22252 13540 Face 39051 20660 22623 22624 Face 39052 13540 20660 22624 Face 39053 22623 13287 21098 Face 39054 22624 22623 21098 Face 39055 13287 21099 19478 Face 39056 21098 13287 19478 Face 39057 21099 19325 21088 Face 39058 19478 21099 21088 Face 39059 19325 21092 20911 Face 39060 21088 19325 20911 Face 39061 21092 4721 13486 Face 39062 20911 21092 13486 Face 39063 4721 20149 19910 Face 39064 13486 4721 19910 Face 39065 20149 2110 9271 Face 39066 19910 20149 9271 Face 39067 2110 19353 19429 Face 39068 9271 2110 19429 Face 39069 17890 17981 17980 Face 39070 17747 17287 18780 Face 39071 19279 19766 16031 Face 39072 19429 19353 19179 Face 39073 24009 23786 23158 Face 39074 20002 24135 23964 Face 39075 12653 25167 13815 Face 39076 21475 19990 20737 Face 39077 21466 21475 20737 Face 39078 21018 20812 19990 Face 39079 21475 21018 19990 Face 39080 20475 20561 20812 Face 39081 21018 20475 20812 Face 39082 20475 20721 20642 Face 39083 20561 20475 20642 Face 39084 22157 22252 20642 Face 39085 20721 22157 20642 Face 39086 22157 20572 20660 Face 39087 22252 22157 20660 Face 39088 20572 22433 22623 Face 39089 20660 20572 22623 Face 39090 22433 192 13287 Face 39091 22623 22433 13287 Face 39092 192 20831 21099 Face 39093 13287 192 21099 Face 39094 20831 21089 19325 Face 39095 21099 20831 19325 Face 39096 21089 20555 21092 Face 39097 19325 21089 21092 Face 39098 20555 19347 4721 Face 39099 21092 20555 4721 Face 39100 19347 20227 20149 Face 39101 4721 19347 20149 Face 39102 20227 2532 2110 Face 39103 20149 20227 2110 Face 39104 2532 19508 19353 Face 39105 2110 2532 19353 Face 39106 25844 25845 23417 Face 39107 17286 19353 19508 Face 39108 3762 14432 14916 Face 39109 24192 24581 24191 Face 39110 23394 24080 23323 Face 39111 24008 24009 23158 Face 39112 24905 20002 23964 Face 39113 23964 24135 23911 Face 39114 21568 21475 21466 Face 39115 12613 21568 21466 Face 39116 13538 21018 21475 Face 39117 21568 13538 21475 Face 39118 20389 20475 21018 Face 39119 13538 20389 21018 Face 39120 20389 20720 20721 Face 39121 20475 20389 20721 Face 39122 20720 22058 22157 Face 39123 20721 20720 22157 Face 39124 22058 20485 20572 Face 39125 22157 22058 20572 Face 39126 20485 22528 22433 Face 39127 20572 20485 22433 Face 39128 22528 20233 192 Face 39129 22433 22528 192 Face 39130 20233 21756 20831 Face 39131 192 20233 20831 Face 39132 21756 19326 21089 Face 39133 20831 21756 21089 Face 39134 19326 19342 20555 Face 39135 21089 19326 20555 Face 39136 19342 19834 19347 Face 39137 20555 19342 19347 Face 39138 19834 20308 20227 Face 39139 19347 19834 20227 Face 39140 20308 12542 2532 Face 39141 20227 20308 2532 Face 39142 21205 15756 15755 Face 39143 1881 18997 15036 Face 39144 21939 21934 20628 Face 39145 12542 18126 2532 Face 39146 26934 14664 28496 Face 39147 33426 18418 26076 Face 39148 22941 23836 24036 Face 39149 20220 12613 21465 Face 39150 13988 20220 21465 Face 39151 21663 21568 12613 Face 39152 20220 21663 12613 Face 39153 20282 13538 21568 Face 39154 21663 20282 21568 Face 39155 19832 20389 13538 Face 39156 20282 19832 13538 Face 39157 19832 19402 20720 Face 39158 20389 19832 20720 Face 39159 19402 13349 22058 Face 39160 20720 19402 22058 Face 39161 13349 19918 20485 Face 39162 22058 13349 20485 Face 39163 19918 22335 22528 Face 39164 20485 19918 22528 Face 39165 22335 9067 20233 Face 39166 22528 22335 20233 Face 39167 9067 21191 21756 Face 39168 20233 9067 21756 Face 39169 21191 20641 19326 Face 39170 21756 21191 19326 Face 39171 20641 20912 19342 Face 39172 19326 20641 19342 Face 39173 20912 19986 19834 Face 39174 19342 20912 19834 Face 39175 19986 20563 20308 Face 39176 19834 19986 20308 Face 39177 20563 19415 12542 Face 39178 20308 20563 12542 Face 39179 19980 19981 17629 Face 39180 20576 20490 6161 Face 39181 20093 20092 20011 Face 39182 19903 19902 19826 Face 39183 18740 12542 19415 Face 39184 20553 22225 13988 Face 39185 31220 28688 26928 Face 39186 20221 20220 13988 Face 39187 22225 20221 13988 Face 39188 22239 21663 20220 Face 39189 20221 22239 20220 Face 39190 20039 20282 21663 Face 39191 22239 20039 21663 Face 39192 19421 19832 20282 Face 39193 20039 19421 20282 Face 39194 19421 19401 19402 Face 39195 19832 19421 19402 Face 39196 19401 13443 13349 Face 39197 19402 19401 13349 Face 39198 13443 19432 19918 Face 39199 13349 13443 19918 Face 39200 19432 21567 22335 Face 39201 19918 19432 22335 Face 39202 21567 20153 9067 Face 39203 22335 21567 9067 Face 39204 20153 20919 21191 Face 39205 9067 20153 21191 Face 39206 20919 20630 20641 Face 39207 21191 20919 20641 Face 39208 20630 21185 20912 Face 39209 20641 20630 20912 Face 39210 21185 20476 19986 Face 39211 20912 21185 19986 Face 39212 20476 20651 20563 Face 39213 19986 20476 20563 Face 39214 17800 17890 17799 Face 39215 18941 20654 19668 Face 39216 28637 21598 28501 Face 39217 19861 19936 23452 Face 39218 20629 21939 20628 Face 39219 13550 12020 15906 Face 39220 18240 21094 21186 Face 39221 14647 22225 20553 Face 39222 21181 14647 20553 Face 39223 20222 20221 22225 Face 39224 14647 20222 22225 Face 39225 16352 22239 20221 Face 39226 20222 16352 20221 Face 39227 19472 20039 22239 Face 39228 16352 19472 22239 Face 39229 19472 20557 19421 Face 39230 20039 19472 19421 Face 39231 20557 19400 19401 Face 39232 19421 20557 19401 Face 39233 19400 3194 13443 Face 39234 19401 19400 13443 Face 39235 3194 14849 19432 Face 39236 13443 3194 19432 Face 39237 14849 21474 21567 Face 39238 19432 14849 21567 Face 39239 21474 20231 20153 Face 39240 21567 21474 20153 Face 39241 20231 19833 20919 Face 39242 20153 20231 20919 Face 39243 19833 20921 20630 Face 39244 20919 19833 20630 Face 39245 20921 21464 21185 Face 39246 20630 20921 21185 Face 39247 21464 20562 20476 Face 39248 21185 21464 20476 Face 39249 23417 23497 25844 Face 39250 20476 20562 20651 Face 39251 12948 13354 118 Face 39252 34640 34772 34274 Face 39253 19413 10886 12860 Face 39254 2664 12942 20997 Face 39255 18669 19933 28825 Face 39256 34433 34505 34395 Face 39257 13993 14647 21181 Face 39258 21180 13993 21181 Face 39259 20826 20222 14647 Face 39260 13993 20826 14647 Face 39261 15039 16352 20222 Face 39262 20826 15039 20222 Face 39263 21109 19472 16352 Face 39264 15039 21109 16352 Face 39265 21109 9530 20557 Face 39266 19472 21109 20557 Face 39267 9530 19399 19400 Face 39268 20557 9530 19400 Face 39269 19399 21960 3194 Face 39270 19400 19399 3194 Face 39271 21960 14609 14849 Face 39272 3194 21960 14849 Face 39273 14609 20309 21474 Face 39274 14849 14609 21474 Face 39275 20309 21951 20231 Face 39276 21474 20309 20231 Face 39277 21951 21864 19833 Face 39278 20231 21951 19833 Face 39279 21864 20631 20921 Face 39280 19833 21864 20921 Face 39281 20631 19343 21464 Face 39282 20921 20631 21464 Face 39283 19343 20650 20562 Face 39284 21464 19343 20562 Face 39285 17080 16986 16987 Face 39286 34527 34407 34788 Face 39287 20741 19754 15437 Face 39288 14550 29015 3816 Face 39289 13012 20933 20910 Face 39290 20653 22049 22032 Face 39291 22343 17768 22630 Face 39292 10034 10154 10152 Face 39293 16208 18341 19057 Face 39294 22629 13993 21180 Face 39295 22343 22534 19058 Face 39296 20915 20826 13993 Face 39297 22629 20915 13993 Face 39298 19840 15039 20826 Face 39299 20915 19840 20826 Face 39300 21201 21109 15039 Face 39301 19840 21201 15039 Face 39302 21201 12980 9530 Face 39303 21109 21201 9530 Face 39304 12980 12503 19399 Face 39305 9530 12980 19399 Face 39306 12503 21767 21960 Face 39307 19399 12503 21960 Face 39308 21767 13542 14609 Face 39309 21960 21767 14609 Face 39310 13542 20068 20309 Face 39311 14609 13542 20309 Face 39312 20068 20151 21951 Face 39313 20309 20068 21951 Face 39314 20151 19985 21864 Face 39315 21951 20151 21864 Face 39316 19985 21182 20631 Face 39317 21864 19985 20631 Face 39318 21182 20913 19343 Face 39319 20631 21182 19343 Face 39320 20913 21190 20650 Face 39321 19343 20913 20650 Face 39322 4874 25075 4478 Face 39323 27262 27263 24398 Face 39324 13727 14549 10718 Face 39325 15164 14902 13440 Face 39326 5128 4472 12104 Face 39327 23450 24226 23449 Face 39328 17360 22324 22420 Face 39329 29784 34742 29672 Face 39330 26756 20410 26870 Face 39331 26535 11109 6715 Face 39332 22534 22629 19058 Face 39333 21467 20915 22629 Face 39334 22534 21467 22629 Face 39335 19992 19840 20915 Face 39336 21467 19992 20915 Face 39337 21294 21201 19840 Face 39338 19992 21294 19840 Face 39339 21294 5243 12980 Face 39340 21201 21294 12980 Face 39341 5243 19398 12503 Face 39342 12980 5243 12503 Face 39343 19398 21766 21767 Face 39344 12503 19398 21767 Face 39345 21766 20399 13542 Face 39346 21767 21766 13542 Face 39347 20399 19989 20068 Face 39348 13542 20399 20068 Face 39349 19989 20229 20151 Face 39350 20068 19989 20151 Face 39351 20229 21282 19985 Face 39352 20151 20229 19985 Face 39353 21282 20457 21182 Face 39354 19985 21282 21182 Face 39355 20457 21094 20913 Face 39356 21182 20457 20913 Face 39357 22412 18034 22411 Face 39358 20913 21094 21190 Face 39359 11917 20644 20065 Face 39360 19410 19409 16896 Face 39361 28144 28145 27769 Face 39362 19827 19903 19826 Face 39363 140 20736 18718 Face 39364 15778 18743 17507 Face 39365 19411 19410 16896 Face 39366 20732 34464 6809 Face 39367 22438 22534 22343 Face 39368 22630 22438 22343 Face 39369 21562 21467 22534 Face 39370 22438 21562 22534 Face 39371 21562 20397 19992 Face 39372 21467 21562 19992 Face 39373 20397 21388 21294 Face 39374 19992 20397 21294 Face 39375 21388 13398 5243 Face 39376 21294 21388 5243 Face 39377 13398 19397 19398 Face 39378 5243 13398 19398 Face 39379 19397 21670 21766 Face 39380 19398 19397 21766 Face 39381 21670 19994 20399 Face 39382 21766 21670 20399 Face 39383 19994 19912 19989 Face 39384 20399 19994 19989 Face 39385 19912 21659 20229 Face 39386 19989 19912 20229 Face 39387 21659 21283 21282 Face 39388 20229 21659 21282 Face 39389 21283 20632 20457 Face 39390 21282 21283 20457 Face 39391 20632 21186 21094 Face 39392 20457 20632 21094 Face 39393 19981 907 19982 Face 39394 21094 18240 21190 Face 39395 20544 20633 17267 Face 39396 12435 12795 20833 Face 39397 24228 19930 19931 Face 39398 17839 18733 22420 Face 39399 20293 20377 20292 Face 39400 13734 28544 13535 Face 39401 18644 14395 14923 Face 39402 30 8563 10214 Face 39403 20651 17955 20563 Face 39404 20644 20997 19351 Face 39405 19577 19660 19576 Face 39406 19389 19581 19008 Face 39407 18629 21836 21739 Face 39408 15580 15163 22518 Face 39409 18672 18196 21002 Face 39410 15883 13861 17483 Face 39411 18840 17768 22343 Face 39412 20866 27573 27700 Face 39413 22341 22438 22630 Face 39414 22535 22341 22630 Face 39415 11699 21562 22438 Face 39416 22341 11699 22438 Face 39417 21758 20397 21562 Face 39418 11699 21758 21562 Face 39419 21758 11300 21388 Face 39420 20397 21758 21388 Face 39421 11300 4324 13398 Face 39422 21388 11300 13398 Face 39423 4324 19396 19397 Face 39424 13398 4324 19397 Face 39425 19396 21022 21670 Face 39426 19397 19396 21670 Face 39427 21022 19431 19994 Face 39428 21670 21022 19994 Face 39429 19431 19671 19912 Face 39430 19994 19431 19912 Face 39431 19671 21754 21659 Face 39432 19912 19671 21659 Face 39433 21754 19849 21283 Face 39434 21659 21754 21283 Face 39435 19849 1381 20632 Face 39436 21283 19849 20632 Face 39437 1381 21093 21186 Face 39438 20632 1381 21186 Face 39439 19389 19882 19881 Face 39440 20290 20291 17986 Face 39441 19899 19977 19898 Face 39442 16808 16896 16807 Face 39443 23786 23738 23853 Face 39444 23905 11835 22792 Face 39445 23158 23786 23853 Face 39446 24005 24553 19783 Face 39447 24002 24005 19783 Face 39448 34731 34601 34535 Face 39449 34121 6733 34120 Face 39450 25400 25401 23794 Face 39451 20323 11574 22862 Face 39452 1467 24484 21741 Face 39453 25249 25250 25386 Face 39454 5249 8675 13581 Face 39455 22776 20004 24468 Face 39456 25524 25325 25617 Face 39457 6531 11542 8539 Face 39458 24359 22471 20492 Face 39459 4203 23177 23945 Face 39460 12820 2127 4472 Face 39461 10988 16186 3763 Face 39462 17712 18796 18936 Face 39463 19580 17088 19663 Face 39464 14532 15043 5128 Face 39465 12987 13172 11732 Face 39466 22409 22506 22408 Face 39467 32196 7239 7238 Face 39468 20820 4710 12940 Face 39469 11109 27165 6715 Face 39470 18669 20300 22326 Face 39471 18335 18240 21093 Face 39472 21179 22535 20200 Face 39473 22326 21179 20200 Face 39474 22246 22341 22535 Face 39475 21179 22246 22535 Face 39476 22153 11699 22341 Face 39477 22246 22153 22341 Face 39478 21856 21758 11699 Face 39479 22153 21856 11699 Face 39480 21856 21482 11300 Face 39481 21758 21856 11300 Face 39482 21482 21374 4324 Face 39483 11300 21482 4324 Face 39484 21374 19395 19396 Face 39485 4324 21374 19396 Face 39486 19395 21021 21022 Face 39487 19396 19395 21022 Face 39488 21021 20995 19431 Face 39489 21022 21021 19431 Face 39490 20995 19426 19671 Face 39491 19431 20995 19671 Face 39492 19426 21851 21754 Face 39493 19671 19426 21754 Face 39494 21851 14785 19849 Face 39495 21754 21851 19849 Face 39496 14785 20544 1381 Face 39497 19849 14785 1381 Face 39498 18735 21671 21859 Face 39499 1381 20544 21093 Face 39500 16033 19473 19417 Face 39501 20031 17699 17790 Face 39502 19552 19553 20368 Face 39503 19760 20546 20545 Face 39504 23738 22796 23805 Face 39505 23853 23738 23805 Face 39506 23293 24676 23805 Face 39507 22796 23293 23805 Face 39508 20319 23692 24676 Face 39509 23293 20319 24676 Face 39510 24440 23918 13391 Face 39511 23671 22977 23692 Face 39512 24152 25048 23522 Face 39513 24439 24440 13391 Face 39514 22729 22845 23709 Face 39515 23856 22462 22741 Face 39516 24274 25285 24634 Face 39517 25617 23093 25618 Face 39518 25251 25388 25387 Face 39519 19920 20323 22862 Face 39520 33627 33626 33499 Face 39521 34528 34293 34495 Face 39522 25254 25255 25391 Face 39523 22822 24013 19542 Face 39524 25255 25392 25391 Face 39525 16340 22353 15037 Face 39526 23945 23829 24406 Face 39527 24944 23237 23559 Face 39528 15107 24299 15240 Face 39529 18437 910 911 Face 39530 3424 3763 9046 Face 39531 23533 23603 25289 Face 39532 16342 16343 12767 Face 39533 985 3424 9046 Face 39534 14727 985 9046 Face 39535 12767 14727 9046 Face 39536 15440 15579 22227 Face 39537 19272 23674 23422 Face 39538 17351 19644 19726 Face 39539 31168 31269 31167 Face 39540 14089 13069 15462 Face 39541 20300 19436 22326 Face 39542 21572 20300 18669 Face 39543 21086 21179 22326 Face 39544 19436 21086 22326 Face 39545 21086 22150 22246 Face 39546 21179 21086 22246 Face 39547 22054 22153 22246 Face 39548 22150 22054 22246 Face 39549 15438 21856 22153 Face 39550 22054 15438 22153 Face 39551 15438 21575 21482 Face 39552 21856 15438 21482 Face 39553 21575 20914 21374 Face 39554 21482 21575 21374 Face 39555 20914 19394 19395 Face 39556 21374 20914 19395 Face 39557 19394 20931 21021 Face 39558 19395 19394 21021 Face 39559 20931 12346 20995 Face 39560 21021 20931 20995 Face 39561 12346 19414 19426 Face 39562 20995 12346 19426 Face 39563 19414 22622 21851 Face 39564 19426 19414 21851 Face 39565 22622 20064 14785 Face 39566 21851 22622 14785 Face 39567 20064 20633 20544 Face 39568 14785 20064 20544 Face 39569 19350 19753 5874 Face 39570 19117 18717 31536 Face 39571 12615 16033 19417 Face 39572 19473 19389 19388 Face 39573 5203 13829 10733 Face 39574 20658 20659 22129 Face 39575 20319 23671 23692 Face 39576 361 360 17017 Face 39577 23671 23558 23475 Face 39578 23572 23759 23612 Face 39579 23467 22086 22085 Face 39580 24090 1450 23719 Face 39581 23265 23612 23578 Face 39582 24677 24678 22542 Face 39583 11586 26358 26357 Face 39584 23113 25327 25192 Face 39585 23512 23839 23350 Face 39586 21741 11670 22257 Face 39587 23749 23113 25192 Face 39588 20096 13642 24609 Face 39589 25135 23025 23863 Face 39590 24697 16333 24698 Face 39591 7365 7474 456 Face 39592 25392 23767 22947 Face 39593 24474 20007 20006 Face 39594 21961 248 23046 Face 39595 20781 24725 24073 Face 39596 23088 248 21961 Face 39597 24406 23088 21961 Face 39598 23455 19700 22897 Face 39599 248 24359 23046 Face 39600 23504 24817 23313 Face 39601 18455 19272 12085 Face 39602 23603 22625 25289 Face 39603 23409 11271 23533 Face 39604 14490 15440 15436 Face 39605 22841 20305 24583 Face 39606 7848 14490 15436 Face 39607 23390 24549 21514 Face 39608 15436 15440 22227 Face 39609 15579 20036 20037 Face 39610 22217 22313 22216 Face 39611 16505 15873 16342 Face 39612 22805 22838 24741 Face 39613 30904 30903 30805 Face 39614 31500 31501 31609 Face 39615 20471 20808 19436 Face 39616 20300 20471 19436 Face 39617 21085 21086 19436 Face 39618 20808 21085 19436 Face 39619 22052 22150 21086 Face 39620 21085 22052 21086 Face 39621 19501 22054 22150 Face 39622 22052 19501 22150 Face 39623 19501 19757 15438 Face 39624 22054 19501 15438 Face 39625 19757 21669 21575 Face 39626 15438 19757 21575 Face 39627 21669 20304 20914 Face 39628 21575 21669 20914 Face 39629 20304 19393 19394 Face 39630 20914 20304 19394 Face 39631 19393 7502 20931 Face 39632 19394 19393 20931 Face 39633 7502 3187 12346 Face 39634 20931 7502 12346 Face 39635 3187 12727 19414 Face 39636 12346 3187 19414 Face 39637 12727 19751 22622 Face 39638 19414 12727 22622 Face 39639 19751 19310 20064 Face 39640 22622 19751 20064 Face 39641 7130 7018 6611 Face 39642 15594 2925 15058 Face 39643 12795 12435 21867 Face 39644 18684 22613 19068 Face 39645 19337 19809 19808 Face 39646 19766 14650 16031 Face 39647 12435 11434 21843 Face 39648 22977 23671 23475 Face 39649 23558 23375 22907 Face 39650 23475 23558 22907 Face 39651 23471 21796 22907 Face 39652 23375 23471 22907 Face 39653 34387 34795 34571 Face 39654 23471 16964 21796 Face 39655 30240 30241 30305 Face 39656 23179 22905 22928 Face 39657 23108 22081 24616 Face 39658 23907 22944 22936 Face 39659 24360 22762 23764 Face 39660 21661 25084 21853 Face 39661 28547 34546 34430 Face 39662 23053 15450 24942 Face 39663 16517 13872 24751 Face 39664 24353 23476 20897 Face 39665 23040 23704 24206 Face 39666 23095 24888 23615 Face 39667 25250 25251 25387 Face 39668 24321 23997 23086 Face 39669 24834 24969 24968 Face 39670 33543 33422 18738 Face 39671 23106 12647 24400 Face 39672 23581 23499 24210 Face 39673 20492 22471 11746 Face 39674 24385 24400 11746 Face 39675 13760 12083 19995 Face 39676 21801 24385 11746 Face 39677 29142 22066 22163 Face 39678 22066 21969 22067 Face 39679 22067 22164 22163 Face 39680 22259 22258 22163 Face 39681 22258 22354 29403 Face 39682 22164 22259 22163 Face 39683 29534 22354 22451 Face 39684 22259 22355 22258 Face 39685 19664 17088 17089 Face 39686 22355 22451 22354 Face 39687 23285 23967 23966 Face 39688 22642 29796 22547 Face 39689 12532 23279 24613 Face 39690 23203 11916 4203 Face 39691 16343 14727 12767 Face 39692 22227 15579 20037 Face 39693 27767 27897 22955 Face 39694 15873 16343 16342 Face 39695 24741 27137 23958 Face 39696 23380 18560 18871 Face 39697 32951 32950 32818 Face 39698 30530 30529 25676 Face 39699 20386 20837 20808 Face 39700 20471 20386 20808 Face 39701 21084 21085 20808 Face 39702 20837 21084 20808 Face 39703 21954 22052 21085 Face 39704 21084 21954 21085 Face 39705 20303 19501 22052 Face 39706 21954 20303 22052 Face 39707 20303 19993 19757 Face 39708 19501 20303 19757 Face 39709 19993 21765 21669 Face 39710 19757 19993 21669 Face 39711 21765 20223 20304 Face 39712 21669 21765 20304 Face 39713 20223 20649 19393 Face 39714 20304 20223 19393 Face 39715 20649 21863 7502 Face 39716 19393 20649 7502 Face 39717 21863 12800 3187 Face 39718 7502 21863 3187 Face 39719 12800 22240 12727 Face 39720 3187 12800 12727 Face 39721 22240 19835 19751 Face 39722 12727 22240 19751 Face 39723 22525 19310 19751 Face 39724 19835 22525 19751 Face 39725 18521 19310 22525 Face 39726 26076 17855 18058 Face 39727 19334 19335 19801 Face 39728 17860 22525 19338 Face 39729 19579 19580 19662 Face 39730 3379 4754 13818 Face 39731 22905 20157 20158 Face 39732 23281 24158 21677 Face 39733 24548 24547 23950 Face 39734 23719 1450 24318 Face 39735 24276 23640 1903 Face 39736 22769 23969 22695 Face 39737 25059 25198 20580 Face 39738 24342 24023 24125 Face 39739 34499 34755 34442 Face 39740 25113 25252 25251 Face 39741 1450 23467 24318 Face 39742 33360 33359 33223 Face 39743 25112 25113 25251 Face 39744 24960 24961 25099 Face 39745 24407 23041 248 Face 39746 6586 22271 2815 Face 39747 24689 24690 24825 Face 39748 21303 21397 21396 Face 39749 28224 21396 21490 Face 39750 21397 21491 21490 Face 39751 21491 28360 21490 Face 39752 21491 21585 21584 Face 39753 21679 21584 21585 Face 39754 21585 21680 21679 Face 39755 21679 21680 21776 Face 39756 21680 21777 21776 Face 39757 21776 21873 28760 Face 39758 21777 21874 21873 Face 39759 21970 21873 21874 Face 39760 21874 21971 21970 Face 39761 21970 21969 28887 Face 39762 22068 22067 21970 Face 39763 21971 22068 21970 Face 39764 22165 22164 22067 Face 39765 22068 22165 22067 Face 39766 22260 22259 22164 Face 39767 22165 22260 22164 Face 39768 22356 22355 22259 Face 39769 22260 22356 22259 Face 39770 22452 22451 22355 Face 39771 22356 22452 22355 Face 39772 22548 22547 22451 Face 39773 22452 22548 22451 Face 39774 12723 23167 2788 Face 39775 17863 22642 13038 Face 39776 22972 24185 19783 Face 39777 17863 29796 22642 Face 39778 5597 5337 16505 Face 39779 25078 24548 23950 Face 39780 4751 15072 19599 Face 39781 6612 18412 29326 Face 39782 17432 17517 17431 Face 39783 21479 20472 20386 Face 39784 32819 32951 32818 Face 39785 20472 20926 20837 Face 39786 20386 20472 20837 Face 39787 20993 21084 20837 Face 39788 20926 20993 20837 Face 39789 21857 21954 21084 Face 39790 20993 21857 21084 Face 39791 13163 20303 21954 Face 39792 21857 13163 21954 Face 39793 13163 20398 19993 Face 39794 20303 13163 19993 Face 39795 20398 21862 21765 Face 39796 19993 20398 21765 Face 39797 21862 20145 20223 Face 39798 21765 21862 20223 Face 39799 20145 19750 20649 Face 39800 20223 20145 20649 Face 39801 19750 21576 21863 Face 39802 20649 19750 21863 Face 39803 21576 13809 12800 Face 39804 21863 21576 12800 Face 39805 13809 22144 22240 Face 39806 12800 13809 22240 Face 39807 22144 19909 19835 Face 39808 22240 22144 19835 Face 39809 19909 19338 22525 Face 39810 19835 19909 22525 Face 39811 17308 17135 22128 Face 39812 22024 22122 22023 Face 39813 29143 19095 19097 Face 39814 19493 19492 19412 Face 39815 18341 16208 23 Face 39816 22049 22129 13012 Face 39817 12792 25360 23614 Face 39818 20759 23252 23049 Face 39819 25185 24083 11749 Face 39820 23881 23281 21677 Face 39821 24733 24726 23664 Face 39822 24838 24839 24973 Face 39823 11751 12792 23433 Face 39824 24703 24839 24838 Face 39825 24702 24703 24838 Face 39826 24974 25113 25112 Face 39827 24839 24974 24973 Face 39828 25252 25389 25388 Face 39829 24973 24974 25112 Face 39830 15862 15861 24711 Face 39831 25251 25252 25388 Face 39832 21211 21118 21119 Face 39833 25239 25376 25375 Face 39834 21119 21212 21211 Face 39835 17775 5656 5781 Face 39836 21212 21304 21303 Face 39837 21211 21212 21303 Face 39838 21304 21398 21397 Face 39839 21303 21304 21397 Face 39840 21398 21492 21491 Face 39841 21397 21398 21491 Face 39842 21492 21586 21585 Face 39843 21491 21492 21585 Face 39844 21586 21681 21680 Face 39845 21585 21586 21680 Face 39846 21681 21778 21777 Face 39847 21680 21681 21777 Face 39848 21778 21875 21874 Face 39849 21777 21778 21874 Face 39850 21972 21971 21874 Face 39851 21875 21972 21874 Face 39852 22069 22068 21971 Face 39853 21972 22069 21971 Face 39854 22166 22165 22068 Face 39855 22069 22166 22068 Face 39856 22261 22260 22165 Face 39857 22166 22261 22165 Face 39858 22357 22356 22260 Face 39859 22261 22357 22260 Face 39860 22453 22452 22356 Face 39861 22357 22453 22356 Face 39862 22549 22548 22452 Face 39863 22453 22549 22452 Face 39864 22643 22642 22548 Face 39865 22549 22643 22548 Face 39866 1903 22883 13038 Face 39867 22643 14892 22642 Face 39868 24276 8967 974 Face 39869 14892 8967 13038 Face 39870 26063 26176 26175 Face 39871 5337 15873 16505 Face 39872 16958 22439 18318 Face 39873 18936 18796 17353 Face 39874 32764 31652 21479 Face 39875 20472 17656 20926 Face 39876 5272 21016 17656 Face 39877 20992 20993 20926 Face 39878 21016 20992 20926 Face 39879 8267 21857 20993 Face 39880 20992 8267 20993 Face 39881 12522 13163 21857 Face 39882 8267 12522 21857 Face 39883 12522 21953 20398 Face 39884 13163 12522 20398 Face 39885 21953 21959 21862 Face 39886 20398 21953 21862 Face 39887 21959 20144 20145 Face 39888 21862 21959 20145 Face 39889 20144 3716 19750 Face 39890 20145 20144 19750 Face 39891 3716 21483 21576 Face 39892 19750 3716 21576 Face 39893 21483 13541 13809 Face 39894 21576 21483 13809 Face 39895 13541 22046 22144 Face 39896 13809 13541 22144 Face 39897 22046 19987 19909 Face 39898 22144 22046 19909 Face 39899 19987 19311 19338 Face 39900 19909 19987 19338 Face 39901 18070 17977 17978 Face 39902 27496 28946 27497 Face 39903 13354 11917 118 Face 39904 19658 19657 19574 Face 39905 20054 20055 20136 Face 39906 19801 20547 20546 Face 39907 23642 23745 19703 Face 39908 2 24799 24661 Face 39909 22811 23832 23812 Face 39910 24313 23717 24022 Face 39911 24021 23881 21677 Face 39912 25389 23282 21581 Face 39913 18254 24476 23379 Face 39914 24152 22833 25048 Face 39915 25388 25389 21581 Face 39916 25238 25239 25375 Face 39917 24339 6735 23141 Face 39918 20937 27443 20848 Face 39919 24587 24589 23058 Face 39920 20849 20938 20937 Face 39921 21029 20937 20938 Face 39922 20938 21030 21029 Face 39923 27691 27565 21029 Face 39924 21030 21120 21119 Face 39925 21029 21030 21119 Face 39926 21120 21213 21212 Face 39927 21119 21120 21212 Face 39928 21213 21305 21304 Face 39929 21212 21213 21304 Face 39930 21305 21399 21398 Face 39931 21304 21305 21398 Face 39932 21399 21493 21492 Face 39933 21398 21399 21492 Face 39934 21493 21587 21586 Face 39935 21492 21493 21586 Face 39936 21587 21682 21681 Face 39937 21586 21587 21681 Face 39938 21682 21779 21778 Face 39939 21681 21682 21778 Face 39940 21779 21876 21875 Face 39941 21778 21779 21875 Face 39942 21876 21973 21972 Face 39943 21875 21876 21972 Face 39944 22070 22069 21972 Face 39945 21973 22070 21972 Face 39946 22167 22166 22069 Face 39947 22070 22167 22069 Face 39948 22262 22261 22166 Face 39949 22167 22262 22166 Face 39950 22358 22357 22261 Face 39951 22262 22358 22261 Face 39952 22454 22453 22357 Face 39953 22358 22454 22357 Face 39954 22550 22549 22453 Face 39955 22454 22550 22453 Face 39956 22644 22643 22549 Face 39957 22550 22644 22549 Face 39958 2774 14892 22643 Face 39959 22644 2774 22643 Face 39960 974 8967 14892 Face 39961 2774 974 14892 Face 39962 5144 15109 5597 Face 39963 30966 30965 30864 Face 39964 21836 21835 21738 Face 39965 12349 19376 33290 Face 39966 17709 13365 14809 Face 39967 17880 22127 17135 Face 39968 17283 20558 17656 Face 39969 17656 21016 20926 Face 39970 20900 20992 21016 Face 39971 5272 20900 21016 Face 39972 13989 8267 20992 Face 39973 20900 13989 20992 Face 39974 19502 12522 8267 Face 39975 13989 19502 8267 Face 39976 19502 22051 21953 Face 39977 12522 19502 21953 Face 39978 22051 22057 21959 Face 39979 21953 22051 21959 Face 39980 22057 19420 20144 Face 39981 21959 22057 20144 Face 39982 19420 19392 3716 Face 39983 20144 19420 3716 Face 39984 19392 21389 21483 Face 39985 3716 19392 21483 Face 39986 21389 20313 13541 Face 39987 21483 21389 13541 Face 39988 20313 21948 22046 Face 39989 13541 20313 22046 Face 39990 21948 20062 19987 Face 39991 22046 21948 19987 Face 39992 20062 22526 19311 Face 39993 19987 20062 19311 Face 39994 17709 18714 19222 Face 39995 18335 21093 18428 Face 39996 19333 19334 19760 Face 39997 29739 23910 12458 Face 39998 13365 17709 19222 Face 39999 24854 25320 24853 Face 40000 23904 23365 23112 Face 40001 23790 23923 23496 Face 40002 23282 23299 23232 Face 40003 24022 24021 21677 Face 40004 23242 16017 25359 Face 40005 21581 23282 23232 Face 40006 27098 20670 27214 Face 40007 11229 13199 11161 Face 40008 20671 20761 20760 Face 40009 27326 27214 20760 Face 40010 20761 20850 20849 Face 40011 20760 20761 20849 Face 40012 20850 20939 20938 Face 40013 20849 20850 20938 Face 40014 20939 21031 21030 Face 40015 20938 20939 21030 Face 40016 21031 21121 21120 Face 40017 21030 21031 21120 Face 40018 21121 21214 21213 Face 40019 21120 21121 21213 Face 40020 21214 21306 21305 Face 40021 21213 21214 21305 Face 40022 21306 21400 21399 Face 40023 21305 21306 21399 Face 40024 21400 21494 21493 Face 40025 21399 21400 21493 Face 40026 21494 21588 21587 Face 40027 21493 21494 21587 Face 40028 21588 21683 21682 Face 40029 21587 21588 21682 Face 40030 21683 21780 21779 Face 40031 21682 21683 21779 Face 40032 21780 21877 21876 Face 40033 21779 21780 21876 Face 40034 21877 21974 21973 Face 40035 21876 21877 21973 Face 40036 22071 22070 21973 Face 40037 21974 22071 21973 Face 40038 22168 22167 22070 Face 40039 22071 22168 22070 Face 40040 22263 22262 22167 Face 40041 22168 22263 22167 Face 40042 22359 22358 22262 Face 40043 22263 22359 22262 Face 40044 22455 22454 22358 Face 40045 22359 22455 22358 Face 40046 22551 22550 22454 Face 40047 22455 22551 22454 Face 40048 22645 22644 22550 Face 40049 22551 22645 22550 Face 40050 10986 2774 22644 Face 40051 22645 10986 22644 Face 40052 12287 974 2774 Face 40053 10986 12287 2774 Face 40054 695 2894 3050 Face 40055 12287 2894 974 Face 40056 21932 21931 21835 Face 40057 21836 21932 21835 Face 40058 18743 15635 17832 Face 40059 16517 12528 13888 Face 40060 14644 5272 20558 Face 40061 18724 18830 18819 Face 40062 20899 20900 5272 Face 40063 14644 20899 5272 Face 40064 21759 13989 20900 Face 40065 20899 21759 20900 Face 40066 19667 19502 13989 Face 40067 21759 19667 13989 Face 40068 19667 13483 22051 Face 40069 19502 19667 22051 Face 40070 13483 22156 22057 Face 40071 22051 13483 22057 Face 40072 22156 20556 19420 Face 40073 22057 22156 19420 Face 40074 20556 19983 19392 Face 40075 19420 20556 19392 Face 40076 19983 21020 21389 Face 40077 19392 19983 21389 Face 40078 21020 20314 20313 Face 40079 21389 21020 20313 Face 40080 20314 21381 21948 Face 40081 20313 20314 21948 Face 40082 21381 21187 20062 Face 40083 21948 21381 20062 Face 40084 19599 15072 19517 Face 40085 20062 21187 22526 Face 40086 25738 25737 23393 Face 40087 26072 34286 34801 Face 40088 19387 19880 19386 Face 40089 19902 19980 19901 Face 40090 22030 22029 21931 Face 40091 21932 22030 21931 Face 40092 22128 22127 22029 Face 40093 22030 22128 22029 Face 40094 17430 17431 19800 Face 40095 17180 19665 17089 Face 40096 22465 22559 16350 Face 40097 23334 29466 23405 Face 40098 20961 23048 23923 Face 40099 23790 20961 23923 Face 40100 7462 23904 23112 Face 40101 20961 23513 23479 Face 40102 23299 24092 24214 Face 40103 23717 24313 23365 Face 40104 25327 25359 22750 Face 40105 23232 23299 24214 Face 40106 20670 20582 20671 Face 40107 24409 24103 24079 Face 40108 20583 20672 20671 Face 40109 20582 20583 20671 Face 40110 20672 20762 20761 Face 40111 20671 20672 20761 Face 40112 20762 20851 20850 Face 40113 20761 20762 20850 Face 40114 20851 20940 20939 Face 40115 20850 20851 20939 Face 40116 20940 21032 21031 Face 40117 20939 20940 21031 Face 40118 21032 21122 21121 Face 40119 21031 21032 21121 Face 40120 21122 21215 21214 Face 40121 21121 21122 21214 Face 40122 21215 21307 21306 Face 40123 21214 21215 21306 Face 40124 21307 21401 21400 Face 40125 21306 21307 21400 Face 40126 21401 21495 21494 Face 40127 21400 21401 21494 Face 40128 21495 21589 21588 Face 40129 21494 21495 21588 Face 40130 21589 21684 21683 Face 40131 21588 21589 21683 Face 40132 21684 21781 21780 Face 40133 21683 21684 21780 Face 40134 21781 21878 21877 Face 40135 21780 21781 21877 Face 40136 21878 21975 21974 Face 40137 21877 21878 21974 Face 40138 21975 22072 22071 Face 40139 21974 21975 22071 Face 40140 22169 22168 22071 Face 40141 22072 22169 22071 Face 40142 22264 22263 22168 Face 40143 22169 22264 22168 Face 40144 22360 22359 22263 Face 40145 22264 22360 22263 Face 40146 22456 22455 22359 Face 40147 22360 22456 22359 Face 40148 22552 22551 22455 Face 40149 22456 22552 22455 Face 40150 22646 22645 22551 Face 40151 22552 22646 22551 Face 40152 13461 10986 22645 Face 40153 22646 13461 22645 Face 40154 12905 12287 10986 Face 40155 13461 12905 10986 Face 40156 695 3050 11600 Face 40157 12905 3050 12287 Face 40158 16185 20749 16037 Face 40159 3951 3184 15868 Face 40160 13077 13747 13078 Face 40161 1573 9068 15470 Face 40162 19976 20053 20052 Face 40163 17950 18288 17769 Face 40164 28162 27753 22147 Face 40165 20898 20899 14644 Face 40166 20032 20898 14644 Face 40167 21664 21759 20899 Face 40168 20898 21664 20899 Face 40169 20388 19667 21759 Face 40170 21664 20388 21759 Face 40171 20388 12919 13483 Face 40172 19667 20388 13483 Face 40173 12919 14525 22156 Face 40174 13483 12919 22156 Face 40175 14525 19785 20556 Face 40176 22156 14525 20556 Face 40177 19785 19391 19983 Face 40178 20556 19785 19983 Face 40179 19391 20930 21020 Face 40180 19983 19391 21020 Face 40181 20930 20073 20314 Face 40182 21020 20930 20314 Face 40183 20073 21285 21381 Face 40184 20314 20073 21381 Face 40185 21285 21279 21187 Face 40186 21381 21285 21187 Face 40187 17594 21187 21279 Face 40188 12552 29485 24536 Face 40189 12610 12700 12609 Face 40190 28013 27613 23361 Face 40191 19743 19826 19742 Face 40192 20135 20213 20212 Face 40193 12086 12001 10717 Face 40194 7809 13077 12061 Face 40195 13747 10717 13078 Face 40196 16658 15167 5144 Face 40197 3951 15167 16658 Face 40198 16020 3951 15868 Face 40199 15109 5337 5597 Face 40200 7809 12061 14915 Face 40201 11204 13347 13441 Face 40202 14916 7809 14915 Face 40203 27388 26184 26558 Face 40204 23048 20961 23479 Face 40205 24225 24533 24046 Face 40206 23513 24716 24715 Face 40207 23904 23717 23365 Face 40208 23806 7462 22844 Face 40209 24092 13452 13642 Face 40210 23717 24021 24022 Face 40211 25359 22652 22750 Face 40212 24214 24092 13642 Face 40213 20495 20583 26984 Face 40214 16017 24538 25359 Face 40215 20496 20584 20583 Face 40216 20495 20496 20583 Face 40217 20584 20673 20672 Face 40218 20583 20584 20672 Face 40219 20673 20763 20762 Face 40220 20672 20673 20762 Face 40221 20763 20852 20851 Face 40222 20762 20763 20851 Face 40223 20852 20941 20940 Face 40224 20851 20852 20940 Face 40225 20941 21033 21032 Face 40226 20940 20941 21032 Face 40227 21033 21123 21122 Face 40228 21032 21033 21122 Face 40229 21123 21216 21215 Face 40230 21122 21123 21215 Face 40231 21216 21308 21307 Face 40232 21215 21216 21307 Face 40233 21308 21402 21401 Face 40234 21307 21308 21401 Face 40235 21402 21496 21495 Face 40236 21401 21402 21495 Face 40237 21496 21590 21589 Face 40238 21495 21496 21589 Face 40239 21590 21685 21684 Face 40240 21589 21590 21684 Face 40241 21685 21782 21781 Face 40242 21684 21685 21781 Face 40243 21782 21879 21878 Face 40244 21781 21782 21878 Face 40245 21879 21976 21975 Face 40246 21878 21879 21975 Face 40247 21976 22073 22072 Face 40248 21975 21976 22072 Face 40249 22170 22169 22072 Face 40250 22073 22170 22072 Face 40251 22265 22264 22169 Face 40252 22170 22265 22169 Face 40253 22361 22360 22264 Face 40254 22265 22361 22264 Face 40255 22457 22456 22360 Face 40256 22361 22457 22360 Face 40257 22553 22552 22456 Face 40258 22457 22553 22456 Face 40259 22647 22646 22552 Face 40260 22553 22647 22552 Face 40261 4208 13461 22646 Face 40262 22647 4208 22646 Face 40263 7744 12905 13461 Face 40264 4208 7744 13461 Face 40265 1449 15302 11600 Face 40266 7744 11600 12905 Face 40267 11204 13629 12413 Face 40268 4742 11204 12413 Face 40269 13077 13078 12061 Face 40270 26559 27388 26558 Face 40271 20067 17865 20394 Face 40272 15756 15905 15755 Face 40273 21654 21107 18229 Face 40274 9068 15469 15470 Face 40275 15603 20033 19934 Face 40276 19560 20898 20032 Face 40277 21107 19560 20032 Face 40278 20481 21664 20898 Face 40279 19560 20481 20898 Face 40280 20474 20388 21664 Face 40281 20481 20474 21664 Face 40282 20474 16513 12919 Face 40283 20388 20474 12919 Face 40284 16513 22251 14525 Face 40285 12919 16513 14525 Face 40286 22251 21373 19785 Face 40287 14525 22251 19785 Face 40288 21373 22430 19391 Face 40289 19785 21373 19391 Face 40290 22430 20841 20930 Face 40291 19391 22430 20930 Face 40292 20841 20072 20073 Face 40293 20930 20841 20073 Face 40294 20072 21193 21285 Face 40295 20073 20072 21285 Face 40296 22127 17880 22126 Face 40297 21285 21193 21279 Face 40298 32153 32257 32152 Face 40299 20125 20203 20202 Face 40300 13641 13012 20910 Face 40301 17709 14809 18796 Face 40302 29215 29083 20786 Face 40303 19902 19901 19825 Face 40304 32425 17081 19116 Face 40305 16350 16185 16037 Face 40306 13441 13347 15868 Face 40307 13347 16020 15868 Face 40308 3184 3951 16658 Face 40309 15167 15109 5144 Face 40310 19959 19958 20037 Face 40311 22521 20216 19958 Face 40312 13629 11204 13441 Face 40313 20036 19959 20037 Face 40314 20749 19327 19319 Face 40315 22601 4742 22600 Face 40316 22559 16185 16350 Face 40317 10843 8215 13264 Face 40318 24962 25101 25100 Face 40319 22701 23557 19538 Face 40320 23479 23513 24715 Face 40321 13452 23557 22701 Face 40322 13642 13452 22701 Face 40323 11203 24006 24001 Face 40324 23557 22703 19538 Face 40325 21609 21516 24619 Face 40326 24079 24103 22836 Face 40327 20410 20497 20496 Face 40328 30674 30673 30579 Face 40329 20497 20585 20584 Face 40330 20496 20497 20584 Face 40331 20585 20674 20673 Face 40332 20584 20585 20673 Face 40333 20674 20764 20763 Face 40334 20673 20674 20763 Face 40335 20764 20853 20852 Face 40336 20763 20764 20852 Face 40337 20853 20942 20941 Face 40338 20852 20853 20941 Face 40339 20942 21034 21033 Face 40340 20941 20942 21033 Face 40341 21034 21124 21123 Face 40342 21033 21034 21123 Face 40343 21124 21217 21216 Face 40344 21123 21124 21216 Face 40345 21217 21309 21308 Face 40346 21216 21217 21308 Face 40347 21309 21403 21402 Face 40348 21308 21309 21402 Face 40349 21403 21497 21496 Face 40350 21402 21403 21496 Face 40351 21497 21591 21590 Face 40352 21496 21497 21590 Face 40353 21591 21686 21685 Face 40354 21590 21591 21685 Face 40355 21686 21783 21782 Face 40356 21685 21686 21782 Face 40357 21880 21879 21782 Face 40358 21783 21880 21782 Face 40359 21880 21977 21976 Face 40360 21879 21880 21976 Face 40361 21977 22074 22073 Face 40362 21976 21977 22073 Face 40363 22074 22171 22170 Face 40364 22073 22074 22170 Face 40365 22266 22265 22170 Face 40366 22171 22266 22170 Face 40367 22362 22361 22265 Face 40368 22266 22362 22265 Face 40369 22458 22457 22361 Face 40370 22362 22458 22361 Face 40371 22554 22553 22457 Face 40372 22458 22554 22457 Face 40373 22648 22647 22553 Face 40374 22554 22648 22553 Face 40375 9056 4208 22647 Face 40376 22648 9056 22647 Face 40377 13723 7744 4208 Face 40378 9056 13723 4208 Face 40379 1449 11600 7744 Face 40380 13723 1449 7744 Face 40381 4742 12413 22600 Face 40382 23295 22766 12534 Face 40383 16037 20749 19319 Face 40384 16423 6803 9383 Face 40385 25753 25752 23857 Face 40386 27273 26356 16668 Face 40387 19435 22230 21654 Face 40388 27861 20788 27862 Face 40389 21199 21107 21654 Face 40390 22230 21199 21654 Face 40391 19559 19560 21107 Face 40392 21199 19559 21107 Face 40393 21744 20481 19560 Face 40394 19559 21744 19560 Face 40395 20560 20474 20481 Face 40396 21744 20560 20481 Face 40397 20560 19676 16513 Face 40398 20474 20560 16513 Face 40399 19676 22634 22251 Face 40400 16513 19676 22251 Face 40401 22634 20825 21373 Face 40402 22251 22634 21373 Face 40403 20825 20994 22430 Face 40404 21373 20825 22430 Face 40405 20994 20842 20841 Face 40406 22430 20994 20841 Face 40407 20842 19510 20072 Face 40408 20841 20842 20072 Face 40409 19510 20394 21193 Face 40410 20072 19510 21193 Face 40411 20128 20206 20205 Face 40412 22535 22630 17768 Face 40413 19809 19831 20627 Face 40414 19982 17631 17630 Face 40415 20833 12456 4710 Face 40416 23120 23119 23064 Face 40417 20997 19352 19351 Face 40418 20819 12940 13449 Face 40419 19575 19574 19493 Face 40420 13449 12940 20989 Face 40421 14549 13454 19271 Face 40422 1551 13727 10718 Face 40423 13454 19335 19334 Face 40424 15033 22559 14903 Face 40425 12708 13738 13644 Face 40426 27831 27963 27830 Face 40427 19740 19739 19656 Face 40428 12840 16423 9383 Face 40429 20213 20214 20295 Face 40430 24716 23263 23678 Face 40431 24232 28270 23802 Face 40432 19281 19361 19280 Face 40433 22703 24344 24212 Face 40434 19361 19441 19360 Face 40435 23928 23000 23342 Face 40436 19441 19521 19440 Face 40437 5073 14931 14980 Face 40438 32952 32951 32819 Face 40439 20472 21479 17283 Face 40440 6164 33168 6037 Face 40441 22410 22507 22409 Face 40442 22601 22600 22506 Face 40443 19574 19657 19573 Face 40444 19899 19898 19822 Face 40445 23229 23228 24357 Face 40446 20380 20379 20295 Face 40447 25321 24950 25197 Face 40448 23784 25321 25197 Face 40449 24212 24344 16017 Face 40450 23430 24578 23889 Face 40451 24864 23430 24538 Face 40452 16017 24864 24538 Face 40453 20325 20411 20410 Face 40454 29277 29347 11775 Face 40455 20411 20498 20497 Face 40456 20410 20411 20497 Face 40457 20498 20586 20585 Face 40458 20497 20498 20585 Face 40459 20586 20675 20674 Face 40460 20585 20586 20674 Face 40461 20675 20765 20764 Face 40462 20674 20675 20764 Face 40463 20765 20854 20853 Face 40464 20764 20765 20853 Face 40465 20854 20943 20942 Face 40466 20853 20854 20942 Face 40467 20943 21035 21034 Face 40468 20942 20943 21034 Face 40469 21035 21125 21124 Face 40470 21034 21035 21124 Face 40471 21125 21218 21217 Face 40472 21124 21125 21217 Face 40473 21218 21310 21309 Face 40474 21217 21218 21309 Face 40475 21310 21404 21403 Face 40476 21309 21310 21403 Face 40477 21404 21498 21497 Face 40478 21403 21404 21497 Face 40479 21498 21592 21591 Face 40480 21497 21498 21591 Face 40481 21592 21687 21686 Face 40482 21591 21592 21686 Face 40483 21687 21784 21783 Face 40484 21686 21687 21783 Face 40485 21784 21881 21880 Face 40486 21783 21784 21880 Face 40487 21978 21977 21880 Face 40488 21881 21978 21880 Face 40489 21978 22075 22074 Face 40490 21977 21978 22074 Face 40491 22075 22172 22171 Face 40492 22074 22075 22171 Face 40493 22267 22266 22171 Face 40494 22172 22267 22171 Face 40495 22363 22362 22266 Face 40496 22267 22363 22266 Face 40497 22459 22458 22362 Face 40498 22363 22459 22362 Face 40499 22555 22554 22458 Face 40500 22459 22555 22458 Face 40501 22649 22648 22554 Face 40502 22555 22649 22554 Face 40503 9415 9056 22648 Face 40504 2170 22649 22650 Face 40505 8539 13723 9056 Face 40506 9415 22649 2170 Face 40507 4202 1449 13723 Face 40508 8539 4202 13723 Face 40509 23792 1449 23791 Face 40510 17492 18252 17336 Face 40511 26472 11166 20803 Face 40512 13738 5203 13644 Face 40513 25421 29852 29851 Face 40514 9186 34818 34704 Face 40515 31719 31720 31831 Face 40516 17225 5781 5909 Face 40517 16349 21292 21199 Face 40518 22230 16349 21199 Face 40519 19558 19559 21199 Face 40520 21292 19558 21199 Face 40521 21569 21744 19559 Face 40522 19558 21569 19559 Face 40523 2106 20560 21744 Face 40524 21569 2106 21744 Face 40525 2106 19917 19676 Face 40526 20560 2106 19676 Face 40527 19917 12845 22634 Face 40528 19676 19917 22634 Face 40529 12845 20143 20825 Face 40530 22634 12845 20825 Face 40531 20143 19390 20994 Face 40532 20825 20143 20994 Face 40533 19390 20754 20842 Face 40534 20994 19390 20842 Face 40535 20754 15301 19510 Face 40536 20842 20754 19510 Face 40537 15301 20067 20394 Face 40538 19510 15301 20394 Face 40539 17179 18843 17989 Face 40540 21639 33544 32882 Face 40541 19903 19981 19980 Face 40542 13911 11516 13175 Face 40543 18248 5458 18626 Face 40544 22416 22420 22324 Face 40545 24715 24716 23678 Face 40546 23263 25163 25152 Face 40547 23678 23263 25152 Face 40548 25163 23543 20605 Face 40549 25152 25163 20605 Face 40550 23543 23849 23920 Face 40551 16493 16331 16332 Face 40552 23185 23699 11080 Face 40553 24723 24859 24266 Face 40554 29851 29905 29850 Face 40555 21579 21644 19460 Face 40556 15451 12798 12911 Face 40557 20816 29204 13579 Face 40558 14990 5239 15113 Face 40559 19253 19282 19281 Face 40560 19253 29936 29997 Face 40561 19362 19361 19281 Face 40562 19282 19362 19281 Face 40563 19442 19441 19361 Face 40564 19362 19442 19361 Face 40565 19522 19521 19441 Face 40566 19442 19522 19441 Face 40567 19603 19602 19521 Face 40568 19522 19603 19521 Face 40569 19686 19685 19602 Face 40570 19603 19686 19602 Face 40571 22507 22601 22506 Face 40572 11440 34322 11439 Face 40573 20634 20616 19460 Face 40574 22314 22410 22313 Face 40575 12343 13484 2906 Face 40576 20605 23543 23920 Face 40577 23901 23880 23179 Face 40578 24279 24554 23952 Face 40579 25321 23446 23440 Face 40580 23806 22844 23952 Face 40581 23951 23806 23952 Face 40582 20242 20326 20325 Face 40583 20324 20325 20410 Face 40584 20326 20412 20411 Face 40585 20325 20326 20411 Face 40586 20412 20499 20498 Face 40587 20411 20412 20498 Face 40588 20499 20587 20586 Face 40589 20498 20499 20586 Face 40590 20587 20676 20675 Face 40591 20586 20587 20675 Face 40592 20676 20766 20765 Face 40593 20675 20676 20765 Face 40594 20766 20855 20854 Face 40595 20765 20766 20854 Face 40596 20855 20944 20943 Face 40597 20854 20855 20943 Face 40598 20944 21036 21035 Face 40599 20943 20944 21035 Face 40600 21036 21126 21125 Face 40601 21035 21036 21125 Face 40602 21126 21219 21218 Face 40603 21125 21126 21218 Face 40604 21219 21311 21310 Face 40605 21218 21219 21310 Face 40606 21311 21405 21404 Face 40607 21310 21311 21404 Face 40608 21405 21499 21498 Face 40609 21404 21405 21498 Face 40610 21499 21593 21592 Face 40611 21498 21499 21592 Face 40612 21593 21688 21687 Face 40613 21592 21593 21687 Face 40614 21688 21785 21784 Face 40615 21687 21688 21784 Face 40616 21785 21882 21881 Face 40617 21784 21785 21881 Face 40618 21979 21978 21881 Face 40619 21882 21979 21881 Face 40620 22076 22075 21978 Face 40621 21979 22076 21978 Face 40622 22076 22173 22172 Face 40623 22075 22076 22172 Face 40624 22173 22268 22267 Face 40625 22172 22173 22267 Face 40626 22364 22363 22267 Face 40627 22268 22364 22267 Face 40628 22460 22459 22363 Face 40629 22364 22460 22363 Face 40630 17488 21646 19845 Face 40631 22460 29803 29802 Face 40632 27892 27374 24996 Face 40633 23173 24531 24534 Face 40634 32579 32706 32578 Face 40635 24554 23951 23952 Face 40636 23927 23798 23019 Face 40637 22695 23026 24233 Face 40638 23849 24443 24442 Face 40639 23542 23669 22732 Face 40640 14367 12343 2906 Face 40641 12766 12677 2906 Face 40642 13484 12766 2906 Face 40643 14150 14256 12677 Face 40644 17974 17884 17975 Face 40645 12715 12675 17621 Face 40646 24807 22859 23448 Face 40647 19931 19855 22925 Face 40648 12675 21386 21292 Face 40649 16349 12675 21292 Face 40650 19557 19558 21292 Face 40651 21386 19557 21292 Face 40652 21476 21569 19558 Face 40653 19557 21476 19558 Face 40654 21476 19585 2106 Face 40655 21569 21476 2106 Face 40656 19585 20484 19917 Face 40657 2106 19585 19917 Face 40658 20484 22540 12845 Face 40659 19917 20484 12845 Face 40660 22540 19419 20143 Face 40661 12845 22540 20143 Face 40662 19419 21757 19390 Face 40663 20143 19419 19390 Face 40664 21757 2152 20754 Face 40665 19390 21757 20754 Face 40666 2152 15071 15301 Face 40667 20754 2152 15301 Face 40668 15071 19988 20067 Face 40669 15301 15071 20067 Face 40670 17550 17413 21933 Face 40671 17360 22420 18733 Face 40672 19333 19760 19759 Face 40673 20933 21001 2644 Face 40674 11105 12261 13172 Face 40675 19721 22416 22320 Face 40676 23920 23849 24442 Face 40677 24443 25309 23978 Face 40678 24007 24554 24279 Face 40679 24006 24007 24279 Face 40680 21395 25332 5757 Face 40681 22934 23230 23091 Face 40682 25293 22989 24446 Face 40683 23639 22831 22946 Face 40684 19434 11866 21209 Face 40685 24325 21698 22938 Face 40686 7020 431 20710 Face 40687 22854 20260 22857 Face 40688 19754 19721 22320 Face 40689 22600 22599 22505 Face 40690 12766 14150 12677 Face 40691 19254 19283 19282 Face 40692 17199 470 469 Face 40693 19363 19362 19282 Face 40694 19283 19363 19282 Face 40695 19443 19442 19362 Face 40696 19363 19443 19362 Face 40697 19523 19522 19442 Face 40698 19443 19523 19442 Face 40699 19604 19603 19522 Face 40700 19523 19604 19522 Face 40701 19687 19686 19603 Face 40702 19604 19687 19603 Face 40703 13089 13116 4601 Face 40704 19687 19770 19686 Face 40705 22507 22506 22409 Face 40706 19959 22521 19958 Face 40707 3321 5332 33812 Face 40708 22123 22218 22122 Face 40709 14150 3321 14256 Face 40710 24442 24443 23978 Face 40711 25309 24419 24287 Face 40712 23978 25309 24287 Face 40713 21411 28501 21504 Face 40714 11203 11080 24006 Face 40715 20243 20327 20326 Face 40716 20242 20243 20326 Face 40717 20327 20413 20412 Face 40718 20326 20327 20412 Face 40719 20413 20500 20499 Face 40720 20412 20413 20499 Face 40721 20500 20588 20587 Face 40722 20499 20500 20587 Face 40723 20588 20677 20676 Face 40724 20587 20588 20676 Face 40725 20677 20767 20766 Face 40726 20676 20677 20766 Face 40727 20767 20856 20855 Face 40728 20766 20767 20855 Face 40729 20856 20945 20944 Face 40730 20855 20856 20944 Face 40731 20945 21037 21036 Face 40732 20944 20945 21036 Face 40733 21037 21127 21126 Face 40734 21036 21037 21126 Face 40735 21127 21220 21219 Face 40736 21126 21127 21219 Face 40737 21220 21312 21311 Face 40738 21219 21220 21311 Face 40739 21312 21406 21405 Face 40740 21311 21312 21405 Face 40741 21406 21500 21499 Face 40742 21405 21406 21499 Face 40743 21500 21594 21593 Face 40744 21499 21500 21593 Face 40745 21594 21689 21688 Face 40746 21593 21594 21688 Face 40747 21689 21786 21785 Face 40748 21688 21689 21785 Face 40749 21786 21883 21882 Face 40750 21785 21786 21882 Face 40751 21883 21980 21979 Face 40752 21882 21883 21979 Face 40753 22077 22076 21979 Face 40754 21980 22077 21979 Face 40755 22077 22174 22173 Face 40756 22076 22077 22173 Face 40757 22174 22269 22268 Face 40758 22173 22174 22268 Face 40759 22269 22365 22364 Face 40760 22268 22269 22364 Face 40761 29674 29805 22461 Face 40762 22364 22365 22460 Face 40763 23583 23173 24534 Face 40764 11080 24007 24006 Face 40765 5001 5632 2772 Face 40766 34693 34291 34465 Face 40767 20652 13730 2787 Face 40768 25286 24180 25287 Face 40769 21487 25056 25195 Face 40770 22690 21487 25195 Face 40771 23157 24588 21966 Face 40772 32018 32017 31912 Face 40773 33117 33116 32982 Face 40774 29557 29689 29556 Face 40775 28421 23219 23276 Face 40776 18841 10693 17407 Face 40777 17857 24419 23059 Face 40778 17712 18714 17709 Face 40779 26677 28765 26676 Face 40780 12715 21480 21386 Face 40781 12675 12715 21386 Face 40782 19556 19557 21386 Face 40783 21480 19556 21386 Face 40784 20567 21476 19557 Face 40785 19556 20567 19557 Face 40786 20648 19585 21476 Face 40787 20567 20648 21476 Face 40788 20648 22149 20484 Face 40789 19585 20648 20484 Face 40790 22149 22444 22540 Face 40791 20484 22149 22540 Face 40792 22444 12084 19419 Face 40793 22540 22444 19419 Face 40794 12084 9661 21757 Face 40795 19419 12084 21757 Face 40796 9661 21295 2152 Face 40797 21757 9661 2152 Face 40798 21295 4459 15071 Face 40799 2152 21295 15071 Face 40800 8979 32777 6288 Face 40801 15071 4459 19988 Face 40802 2779 4751 19682 Face 40803 20731 19346 17138 Face 40804 14650 16033 12615 Face 40805 19663 19746 19745 Face 40806 20909 20910 12554 Face 40807 12630 19721 19754 Face 40808 24054 24055 10842 Face 40809 21324 11514 21323 Face 40810 23042 23875 19763 Face 40811 23185 11080 11203 Face 40812 23618 23185 11203 Face 40813 24538 23430 23889 Face 40814 24584 25277 23313 Face 40815 1496 4021 1383 Face 40816 24072 25081 24188 Face 40817 16330 16172 16173 Face 40818 25308 23616 24864 Face 40819 22506 22600 22505 Face 40820 24172 24292 24052 Face 40821 24907 23549 23292 Face 40822 20518 20517 20431 Face 40823 19284 19283 19254 Face 40824 19254 19253 29997 Face 40825 19364 19363 19283 Face 40826 19284 19364 19283 Face 40827 19444 19443 19363 Face 40828 19364 19444 19363 Face 40829 19524 19523 19443 Face 40830 19444 19524 19443 Face 40831 19605 19604 19523 Face 40832 19524 19605 19523 Face 40833 19688 19687 19604 Face 40834 19605 19688 19604 Face 40835 30865 30966 30864 Face 40836 19688 19771 19687 Face 40837 22521 22440 21551 Face 40838 12105 12554 20741 Face 40839 22314 22313 22217 Face 40840 20216 22521 21551 Face 40841 7028 6589 6588 Face 40842 22218 22314 22217 Face 40843 24639 25158 11410 Face 40844 24429 23657 23670 Face 40845 25156 23445 22911 Face 40846 24952 24953 25091 Face 40847 20162 20244 20243 Face 40848 26528 20161 20242 Face 40849 20244 20328 20327 Face 40850 20243 20244 20327 Face 40851 20328 20414 20413 Face 40852 20327 20328 20413 Face 40853 20414 20501 20500 Face 40854 20413 20414 20500 Face 40855 20501 20589 20588 Face 40856 20500 20501 20588 Face 40857 20589 20678 20677 Face 40858 20588 20589 20677 Face 40859 20678 20768 20767 Face 40860 20677 20678 20767 Face 40861 20768 20857 20856 Face 40862 20767 20768 20856 Face 40863 20857 20946 20945 Face 40864 20856 20857 20945 Face 40865 20946 21038 21037 Face 40866 20945 20946 21037 Face 40867 21038 21128 21127 Face 40868 21037 21038 21127 Face 40869 21128 21221 21220 Face 40870 21127 21128 21220 Face 40871 21221 21313 21312 Face 40872 21220 21221 21312 Face 40873 21313 21407 21406 Face 40874 21312 21313 21406 Face 40875 21407 21501 21500 Face 40876 21406 21407 21500 Face 40877 21501 21595 21594 Face 40878 21500 21501 21594 Face 40879 21595 21690 21689 Face 40880 21594 21595 21689 Face 40881 21690 21787 21786 Face 40882 21689 21690 21786 Face 40883 21787 21884 21883 Face 40884 21786 21787 21883 Face 40885 21884 21981 21980 Face 40886 21883 21884 21980 Face 40887 21886 29150 21982 Face 40888 21980 21981 22077 Face 40889 22078 21982 29280 Face 40890 22077 22078 22174 Face 40891 29280 22175 22078 Face 40892 22174 22175 22269 Face 40893 22269 22175 22270 Face 40894 22269 22270 22365 Face 40895 3822 23185 23618 Face 40896 22270 29542 22366 Face 40897 25092 25231 25230 Face 40898 12100 3822 23618 Face 40899 5767 1012 13566 Face 40900 29855 24194 26933 Face 40901 6655 21544 6604 Face 40902 1789 2893 15044 Face 40903 15044 2893 15045 Face 40904 22506 22505 22408 Face 40905 32481 32598 32480 Face 40906 21197 21848 12715 Face 40907 21515 23659 23613 Face 40908 21848 21573 21480 Face 40909 12715 21848 21480 Face 40910 19555 19556 21480 Face 40911 21573 19555 21480 Face 40912 15445 20567 19556 Face 40913 19555 15445 19556 Face 40914 15445 20740 20648 Face 40915 20567 15445 20648 Face 40916 20740 22245 22149 Face 40917 20648 20740 22149 Face 40918 22245 22347 22444 Face 40919 22149 22245 22444 Face 40920 22347 12659 12084 Face 40921 22444 22347 12084 Face 40922 12659 20998 9661 Face 40923 12084 12659 9661 Face 40924 20998 21202 21295 Face 40925 9661 20998 21295 Face 40926 21202 10951 4459 Face 40927 21295 21202 4459 Face 40928 24621 24631 20139 Face 40929 19005 20659 17100 Face 40930 23324 23327 24621 Face 40931 23425 25847 29612 Face 40932 22032 13641 21939 Face 40933 26319 26436 26435 Face 40934 12554 12630 19754 Face 40935 25234 25371 25370 Face 40936 25233 25234 25370 Face 40937 25394 25395 22835 Face 40938 21229 3822 12100 Face 40939 24578 23868 23889 Face 40940 23868 19786 23889 Face 40941 23927 24252 23798 Face 40942 21235 22679 21234 Face 40943 22979 22856 22973 Face 40944 20694 21144 22973 Face 40945 22218 22217 22122 Face 40946 16427 14518 12012 Face 40947 10699 3182 2893 Face 40948 1789 10699 2893 Face 40949 19285 19284 19255 Face 40950 30059 19254 29997 Face 40951 19365 19364 19284 Face 40952 19285 19365 19284 Face 40953 19445 19444 19364 Face 40954 19365 19445 19364 Face 40955 19525 19524 19444 Face 40956 19445 19525 19444 Face 40957 19606 19605 19524 Face 40958 19525 19606 19524 Face 40959 19689 19688 19605 Face 40960 19606 19689 19605 Face 40961 19772 19771 19688 Face 40962 19689 19772 19688 Face 40963 17673 33558 29203 Face 40964 31065 31064 30965 Face 40965 21177 22330 21551 Face 40966 7949 14726 14054 Face 40967 22410 22409 22313 Face 40968 22440 21177 21551 Face 40969 20084 20083 20004 Face 40970 24468 20004 22939 Face 40971 20162 20243 20161 Face 40972 20084 20163 20083 Face 40973 20163 20245 20244 Face 40974 20162 20163 20244 Face 40975 20245 20329 20328 Face 40976 20244 20245 20328 Face 40977 20329 20415 20414 Face 40978 20328 20329 20414 Face 40979 20415 20502 20501 Face 40980 20414 20415 20501 Face 40981 20502 20590 20589 Face 40982 20501 20502 20589 Face 40983 20590 20679 20678 Face 40984 20589 20590 20678 Face 40985 20679 20769 20768 Face 40986 20678 20679 20768 Face 40987 20769 20858 20857 Face 40988 20768 20769 20857 Face 40989 20858 20947 20946 Face 40990 20857 20858 20946 Face 40991 20947 21039 21038 Face 40992 20946 20947 21038 Face 40993 21039 21129 21128 Face 40994 21038 21039 21128 Face 40995 21129 21222 21221 Face 40996 21128 21129 21221 Face 40997 21222 21314 21313 Face 40998 21221 21222 21313 Face 40999 21314 21408 21407 Face 41000 21313 21314 21407 Face 41001 21408 21502 21501 Face 41002 21407 21408 21501 Face 41003 21502 21596 21595 Face 41004 21501 21502 21595 Face 41005 21596 21691 21690 Face 41006 21595 21596 21690 Face 41007 21691 21788 21787 Face 41008 21690 21691 21787 Face 41009 21788 21885 21884 Face 41010 21787 21788 21884 Face 41011 21885 21982 21981 Face 41012 21884 21885 21981 Face 41013 701 25220 25219 Face 41014 23839 20494 23350 Face 41015 23373 23653 23757 Face 41016 14599 25298 24121 Face 41017 24688 4614 1714 Face 41018 23507 25317 22728 Face 41019 25082 23302 25028 Face 41020 24637 23096 13384 Face 41021 24404 21183 19423 Face 41022 24405 24404 19423 Face 41023 25376 24298 24265 Face 41024 5334 9209 3182 Face 41025 10699 5334 3182 Face 41026 12347 12260 9209 Face 41027 5334 12347 9209 Face 41028 30784 30890 30889 Face 41029 19803 21105 21197 Face 41030 17621 21197 12715 Face 41031 21105 21945 21848 Face 41032 21197 21105 21848 Face 41033 21945 21667 21573 Face 41034 21848 21945 21573 Face 41035 19554 19555 21573 Face 41036 21667 19554 21573 Face 41037 22238 15445 19555 Face 41038 19554 22238 19555 Face 41039 22238 20828 20740 Face 41040 15445 22238 20740 Face 41041 20828 22340 22245 Face 41042 20740 20828 22245 Face 41043 22340 13912 22347 Face 41044 22245 22340 22347 Face 41045 13912 13296 12659 Face 41046 22347 13912 12659 Face 41047 13296 5338 20998 Face 41048 12659 13296 20998 Face 41049 5338 21019 21202 Face 41050 20998 5338 21202 Face 41051 21019 13638 10951 Face 41052 21202 21019 10951 Face 41053 21238 21147 21239 Face 41054 20312 17544 13638 Face 41055 20295 20294 20212 Face 41056 31117 31216 31116 Face 41057 22032 21939 20629 Face 41058 13641 20910 20909 Face 41059 24298 23961 13071 Face 41060 23302 24589 24587 Face 41061 21511 23441 19786 Face 41062 22835 21229 12100 Face 41063 699 700 265 Face 41064 23868 21511 19786 Face 41065 20867 20779 24858 Face 41066 23099 22256 24128 Face 41067 28133 27270 21658 Face 41068 21296 21112 20404 Face 41069 21206 22919 22969 Face 41070 21296 21206 21112 Face 41071 14409 10207 12260 Face 41072 22123 22122 22024 Face 41073 12347 14409 12260 Face 41074 19257 19286 19285 Face 41075 29855 29854 26927 Face 41076 19366 19365 19285 Face 41077 19286 19366 19285 Face 41078 19446 19445 19365 Face 41079 19366 19446 19365 Face 41080 19526 19525 19445 Face 41081 19446 19526 19445 Face 41082 19607 19606 19525 Face 41083 19526 19607 19525 Face 41084 19690 19689 19606 Face 41085 19607 19690 19606 Face 41086 19773 19772 19689 Face 41087 19690 19773 19689 Face 41088 24722 12976 14762 Face 41089 19773 19853 19772 Face 41090 16966 17060 19308 Face 41091 1321 15725 10864 Face 41092 20005 20084 20004 Face 41093 19927 20006 25307 Face 41094 20085 20084 20005 Face 41095 20006 20085 20005 Face 41096 20164 20163 20084 Face 41097 20085 20164 20084 Face 41098 20164 20246 20245 Face 41099 20163 20164 20245 Face 41100 20246 20330 20329 Face 41101 20245 20246 20329 Face 41102 20330 20416 20415 Face 41103 20329 20330 20415 Face 41104 20416 20503 20502 Face 41105 20415 20416 20502 Face 41106 20591 20590 20502 Face 41107 20503 20591 20502 Face 41108 20591 20680 20679 Face 41109 20590 20591 20679 Face 41110 20680 20770 20769 Face 41111 20679 20680 20769 Face 41112 20770 20859 20858 Face 41113 20769 20770 20858 Face 41114 20859 20948 20947 Face 41115 20858 20859 20947 Face 41116 20948 21040 21039 Face 41117 20947 20948 21039 Face 41118 21040 21130 21129 Face 41119 21039 21040 21129 Face 41120 21130 21223 21222 Face 41121 21129 21130 21222 Face 41122 21223 21315 21314 Face 41123 21222 21223 21314 Face 41124 21315 21409 21408 Face 41125 21314 21315 21408 Face 41126 21409 21503 21502 Face 41127 21408 21409 21502 Face 41128 21503 21597 21596 Face 41129 21502 21503 21596 Face 41130 21597 21692 21691 Face 41131 21596 21597 21691 Face 41132 21692 21789 21788 Face 41133 21691 21692 21788 Face 41134 21789 21886 21885 Face 41135 21788 21789 21885 Face 41136 28766 28892 21790 Face 41137 14409 22367 22368 Face 41138 10207 14409 22368 Face 41139 22367 9753 14531 Face 41140 22368 22367 14531 Face 41141 9753 14489 19270 Face 41142 14531 9753 19270 Face 41143 14489 19318 19309 Face 41144 19270 14489 19309 Face 41145 19318 19755 19749 Face 41146 19309 19318 19749 Face 41147 19755 20538 20483 Face 41148 19749 19755 20483 Face 41149 20538 21559 21550 Face 41150 20483 20538 21550 Face 41151 21559 9433 247 Face 41152 21550 21559 247 Face 41153 30685 30784 30783 Face 41154 34445 34568 34312 Face 41155 19804 21106 21105 Face 41156 19803 19804 21105 Face 41157 21106 22618 21945 Face 41158 21105 21106 21945 Face 41159 22618 21763 21667 Face 41160 21945 22618 21667 Face 41161 11352 19554 21667 Face 41162 21763 11352 21667 Face 41163 22142 22238 19554 Face 41164 11352 22142 19554 Face 41165 22142 20916 20828 Face 41166 22238 22142 20828 Face 41167 20916 22437 22340 Face 41168 20828 20916 22340 Face 41169 22437 19756 13912 Face 41170 22340 22437 13912 Face 41171 19756 21277 13296 Face 41172 13912 19756 13296 Face 41173 21277 20550 5338 Face 41174 13296 21277 5338 Face 41175 20550 20929 21019 Face 41176 5338 20550 21019 Face 41177 20929 20312 13638 Face 41178 21019 20929 13638 Face 41179 20708 19702 19619 Face 41180 25429 23932 25467 Face 41181 16514 2512 13454 Face 41182 33438 27884 12195 Face 41183 20643 22032 20629 Face 41184 13641 13545 21939 Face 41185 16038 15068 12733 Face 41186 12551 16038 12733 Face 41187 24339 24352 6735 Face 41188 23343 22897 22898 Face 41189 1903 13038 8967 Face 41190 11510 22900 25148 Face 41191 26699 26700 11815 Face 41192 20403 20402 20318 Face 41193 21390 21296 20403 Face 41194 20318 21390 20403 Face 41195 22158 22919 21768 Face 41196 21390 21768 21296 Face 41197 22025 22123 22024 Face 41198 17339 17340 19719 Face 41199 9433 20612 20600 Face 41200 247 9433 20600 Face 41201 19258 19287 19286 Face 41202 29854 29853 26927 Face 41203 19367 19366 19286 Face 41204 19287 19367 19286 Face 41205 19447 19446 19366 Face 41206 19367 19447 19366 Face 41207 19527 19526 19446 Face 41208 19447 19527 19446 Face 41209 19608 19607 19526 Face 41210 19527 19608 19526 Face 41211 19691 19690 19607 Face 41212 19608 19691 19607 Face 41213 19774 19773 19690 Face 41214 19691 19774 19690 Face 41215 19854 19853 19773 Face 41216 19774 19854 19773 Face 41217 14540 14660 15305 Face 41218 24474 19928 20008 Face 41219 31393 31497 31496 Face 41220 15725 14540 15305 Face 41221 20086 20085 20006 Face 41222 20007 20086 20006 Face 41223 20165 20164 20085 Face 41224 20086 20165 20085 Face 41225 20165 20247 20246 Face 41226 20164 20165 20246 Face 41227 20247 20331 20330 Face 41228 20246 20247 20330 Face 41229 20331 20417 20416 Face 41230 20330 20331 20416 Face 41231 20417 20504 20503 Face 41232 20416 20417 20503 Face 41233 20504 20592 20591 Face 41234 20503 20504 20591 Face 41235 20592 20681 20680 Face 41236 20591 20592 20680 Face 41237 20681 20771 20770 Face 41238 20680 20681 20770 Face 41239 20771 20860 20859 Face 41240 20770 20771 20859 Face 41241 20860 20949 20948 Face 41242 20859 20860 20948 Face 41243 20949 21041 21040 Face 41244 20948 20949 21040 Face 41245 21041 21131 21130 Face 41246 21040 21041 21130 Face 41247 21131 21224 21223 Face 41248 21130 21131 21223 Face 41249 21224 21316 21315 Face 41250 21223 21224 21315 Face 41251 21316 21410 21409 Face 41252 21315 21316 21409 Face 41253 21411 21318 28366 Face 41254 21409 21410 21503 Face 41255 28501 21411 28366 Face 41256 21503 21504 21597 Face 41257 21504 28501 21598 Face 41258 21597 21598 21692 Face 41259 21693 21598 28766 Face 41260 21692 21693 21789 Face 41261 21789 21790 21886 Face 41262 23301 23302 24587 Face 41263 19919 23189 24464 Face 41264 22801 11913 22900 Face 41265 24746 23255 24686 Face 41266 11140 22749 21791 Face 41267 20612 12198 7668 Face 41268 20600 20612 7668 Face 41269 21082 7625 7668 Face 41270 12198 21082 7668 Face 41271 21082 22415 22512 Face 41272 7625 21082 22512 Face 41273 22415 20196 15299 Face 41274 22512 22415 15299 Face 41275 21927 22025 21926 Face 41276 12553 15867 15299 Face 41277 21831 21927 21830 Face 41278 22025 22024 21926 Face 41279 20196 12553 15299 Face 41280 33196 33294 34463 Face 41281 4623 4624 4755 Face 41282 26538 24226 26539 Face 41283 15186 14990 15911 Face 41284 20545 20546 21579 Face 41285 19058 22629 21180 Face 41286 19809 20627 20570 Face 41287 21732 21733 21830 Face 41288 21927 21926 21830 Face 41289 14432 12459 7809 Face 41290 21831 21830 21733 Face 41291 34358 34614 34620 Face 41292 20486 13445 13932 Face 41293 22247 1984 14056 Face 41294 19963 20040 17708 Face 41295 19271 19334 19333 Face 41296 19411 16897 19412 Face 41297 22159 20997 20644 Face 41298 19805 19804 34437 Face 41299 23909 29823 23353 Face 41300 19805 21014 21106 Face 41301 19804 19805 21106 Face 41302 21014 21963 22618 Face 41303 21106 21014 22618 Face 41304 21963 21860 21763 Face 41305 22618 21963 21763 Face 41306 21860 22346 11352 Face 41307 21763 21860 11352 Face 41308 22334 22142 11352 Face 41309 22346 22334 11352 Face 41310 22334 21656 20916 Face 41311 22142 22334 20916 Face 41312 21656 22533 22437 Face 41313 20916 21656 22437 Face 41314 22533 20829 19756 Face 41315 22437 22533 19756 Face 41316 20829 20824 21277 Face 41317 19756 20829 21277 Face 41318 20824 20907 20550 Face 41319 21277 20824 20550 Face 41320 19008 18045 18005 Face 41321 20550 20907 20929 Face 41322 18735 17864 21671 Face 41323 17178 17405 19988 Face 41324 20653 20658 22049 Face 41325 33017 18226 33556 Face 41326 13545 13641 20909 Face 41327 19881 20658 20653 Face 41328 20910 12630 12554 Face 41329 19822 19898 19821 Face 41330 21558 19955 21651 Face 41331 12943 15174 13546 Face 41332 1786 20015 15727 Face 41333 12092 21558 21651 Face 41334 20489 20318 20487 Face 41335 12679 22765 13255 Face 41336 2271 21390 20318 Face 41337 20489 2271 20318 Face 41338 21865 21768 21390 Face 41339 2271 21865 21390 Face 41340 12413 9045 22599 Face 41341 22158 22253 22867 Face 41342 22600 12413 22599 Face 41343 15334 15197 3637 Face 41344 19259 19288 19287 Face 41345 30185 19258 19257 Face 41346 19368 19367 19287 Face 41347 19288 19368 19287 Face 41348 19448 19447 19367 Face 41349 19368 19448 19367 Face 41350 19528 19527 19447 Face 41351 19448 19528 19447 Face 41352 19609 19608 19527 Face 41353 19528 19609 19527 Face 41354 19692 19691 19608 Face 41355 19609 19692 19608 Face 41356 19775 19774 19691 Face 41357 19692 19775 19691 Face 41358 19855 19854 19774 Face 41359 19775 19855 19774 Face 41360 12371 7177 13168 Face 41361 19855 19929 19854 Face 41362 12679 12768 25029 Face 41363 19929 20008 19928 Face 41364 20087 20086 20007 Face 41365 20008 20087 20007 Face 41366 20166 20165 20086 Face 41367 20087 20166 20086 Face 41368 20166 20248 20247 Face 41369 20165 20166 20247 Face 41370 20248 20332 20331 Face 41371 20247 20248 20331 Face 41372 20332 20418 20417 Face 41373 20331 20332 20417 Face 41374 20418 20505 20504 Face 41375 20417 20418 20504 Face 41376 20505 20593 20592 Face 41377 20504 20505 20592 Face 41378 20593 20682 20681 Face 41379 20592 20593 20681 Face 41380 20682 20772 20771 Face 41381 20681 20682 20771 Face 41382 20772 20861 20860 Face 41383 20771 20772 20860 Face 41384 20861 20950 20949 Face 41385 20860 20861 20949 Face 41386 20950 21042 21041 Face 41387 20949 20950 21041 Face 41388 21042 21132 21131 Face 41389 21041 21042 21131 Face 41390 21132 21225 21224 Face 41391 21131 21132 21224 Face 41392 21225 21317 21316 Face 41393 21224 21225 21316 Face 41394 21317 21411 21410 Face 41395 21316 21317 21410 Face 41396 23305 24604 24589 Face 41397 23545 23253 25299 Face 41398 25299 25758 25757 Face 41399 25077 24351 23253 Face 41400 23545 25077 23253 Face 41401 23008 24385 21801 Face 41402 23746 23632 23943 Face 41403 6385 92 17696 Face 41404 20377 18079 20462 Face 41405 19491 19490 19410 Face 41406 19411 19491 19410 Face 41407 19572 19571 19490 Face 41408 19491 19572 19490 Face 41409 19655 19654 19571 Face 41410 19572 19655 19571 Face 41411 19738 19737 19654 Face 41412 34375 34561 34382 Face 41413 34393 34439 34375 Face 41414 19655 19738 19654 Face 41415 19821 19820 19737 Face 41416 19738 19821 19737 Face 41417 19897 19896 19820 Face 41418 19821 19897 19820 Face 41419 19975 19974 19896 Face 41420 19897 19975 19896 Face 41421 20052 20051 19974 Face 41422 19975 20052 19974 Face 41423 20052 20134 20133 Face 41424 20051 20052 20133 Face 41425 20134 20212 20211 Face 41426 20133 20134 20211 Face 41427 22039 19806 19805 Face 41428 34690 13297 15307 Face 41429 19806 21015 21014 Face 41430 19805 19806 21014 Face 41431 21015 22523 21963 Face 41432 21014 21015 21963 Face 41433 22523 21957 21860 Face 41434 21963 22523 21860 Face 41435 22443 22346 21860 Face 41436 21957 22443 21860 Face 41437 22333 22334 22346 Face 41438 22443 22333 22346 Face 41439 22333 21751 21656 Face 41440 22334 22333 21656 Face 41441 21751 22628 22533 Face 41442 21656 21751 22533 Face 41443 22628 16357 20829 Face 41444 22533 22628 20829 Face 41445 16357 19418 20824 Face 41446 20829 16357 20824 Face 41447 19418 20731 20907 Face 41448 20824 19418 20907 Face 41449 1038 17736 1152 Face 41450 24058 22826 24059 Face 41451 4602 3379 14431 Face 41452 18005 18045 17779 Face 41453 20213 20295 20212 Face 41454 11354 19437 14902 Face 41455 21934 12795 21867 Face 41456 25751 25858 22872 Face 41457 20294 20293 20211 Face 41458 20212 20294 20211 Face 41459 20378 20377 20293 Face 41460 32692 32691 32564 Face 41461 24548 24490 24625 Face 41462 20575 20489 20573 Face 41463 24221 10938 3172 Face 41464 20577 2271 20489 Face 41465 20575 20577 20489 Face 41466 21962 21865 2271 Face 41467 20577 21962 2271 Face 41468 21962 22349 22253 Face 41469 21962 22253 21865 Face 41470 20009 20010 20089 Face 41471 20294 20378 20293 Face 41472 19289 19288 19259 Face 41473 30185 19259 19258 Face 41474 19369 19368 19288 Face 41475 19289 19369 19288 Face 41476 19449 19448 19368 Face 41477 19369 19449 19368 Face 41478 19529 19528 19448 Face 41479 19449 19529 19448 Face 41480 19610 19609 19528 Face 41481 19529 19610 19528 Face 41482 19610 19693 19692 Face 41483 19609 19610 19692 Face 41484 19776 19775 19692 Face 41485 19693 19776 19692 Face 41486 19856 19855 19775 Face 41487 19776 19856 19775 Face 41488 34514 27219 28550 Face 41489 30024 30086 30085 Face 41490 19930 19929 19855 Face 41491 14907 20990 14906 Face 41492 20088 20087 20008 Face 41493 20009 20088 20008 Face 41494 20167 20166 20087 Face 41495 20088 20167 20087 Face 41496 20167 20249 20248 Face 41497 20166 20167 20248 Face 41498 20249 20333 20332 Face 41499 20248 20249 20332 Face 41500 20333 20419 20418 Face 41501 20332 20333 20418 Face 41502 20419 20506 20505 Face 41503 20418 20419 20505 Face 41504 20506 20594 20593 Face 41505 20505 20506 20593 Face 41506 20594 20683 20682 Face 41507 20593 20594 20682 Face 41508 20683 20773 20772 Face 41509 20682 20683 20772 Face 41510 20773 20862 20861 Face 41511 20772 20773 20861 Face 41512 20862 20951 20950 Face 41513 20861 20862 20950 Face 41514 20951 21043 21042 Face 41515 20950 20951 21042 Face 41516 21043 21133 21132 Face 41517 21042 21043 21132 Face 41518 21133 21226 21225 Face 41519 21132 21133 21225 Face 41520 21226 21318 21317 Face 41521 21225 21226 21317 Face 41522 21318 21227 28232 Face 41523 23682 23746 23943 Face 41524 23355 11203 24001 Face 41525 19879 19800 17517 Face 41526 19587 18940 18564 Face 41527 3162 18672 21002 Face 41528 19739 19822 19738 Face 41529 11435 11354 14902 Face 41530 17532 18313 19121 Face 41531 20833 20844 12456 Face 41532 29280 21982 29150 Face 41533 18743 19311 22526 Face 41534 19355 19179 17535 Face 41535 2127 14551 14479 Face 41536 4472 2127 14479 Face 41537 19664 19747 19746 Face 41538 20067 19988 18625 Face 41539 31469 31578 31468 Face 41540 19855 19931 19930 Face 41541 20819 20820 12940 Face 41542 21842 21843 6012 Face 41543 13172 13265 13081 Face 41544 19357 19358 4362 Face 41545 20565 19054 19668 Face 41546 32502 32390 6795 Face 41547 22247 22151 18518 Face 41548 20820 20819 6012 Face 41549 23610 26063 26062 Face 41550 19905 19807 19806 Face 41551 22039 19905 19806 Face 41552 19807 20924 21015 Face 41553 19806 19807 21015 Face 41554 20924 22331 22523 Face 41555 21015 20924 22523 Face 41556 22331 22055 21957 Face 41557 22523 22331 21957 Face 41558 22539 22443 21957 Face 41559 22055 22539 21957 Face 41560 22045 22333 22443 Face 41561 22539 22045 22443 Face 41562 22045 21850 21751 Face 41563 22333 22045 21751 Face 41564 21850 4239 22628 Face 41565 21751 21850 22628 Face 41566 4239 19998 16357 Face 41567 22628 4239 16357 Face 41568 19998 21299 19418 Face 41569 16357 19998 19418 Face 41570 21299 19346 20731 Face 41571 19418 21299 20731 Face 41572 20090 20010 20091 Face 41573 15462 20302 16042 Face 41574 28096 28095 27962 Face 41575 13068 19682 13830 Face 41576 12277 11105 12987 Face 41577 21186 21093 18240 Face 41578 20628 21934 21867 Face 41579 13454 2512 19335 Face 41580 17629 17630 17719 Face 41581 12060 25986 5246 Face 41582 18629 21933 21836 Face 41583 17883 20194 17882 Face 41584 19808 19809 20570 Face 41585 34508 34779 34300 Face 41586 28550 27219 27218 Face 41587 25382 25383 12533 Face 41588 21760 22044 22330 Face 41589 20665 20577 20575 Face 41590 20663 20665 20575 Face 41591 22059 21962 20577 Face 41592 20665 22059 20577 Face 41593 34014 34013 33887 Face 41594 22059 20665 22636 Face 41595 21933 21932 21836 Face 41596 18629 17550 21933 Face 41597 19261 19290 19289 Face 41598 19260 19261 19289 Face 41599 19370 19369 19289 Face 41600 19290 19370 19289 Face 41601 19450 19449 19369 Face 41602 19370 19450 19369 Face 41603 19530 19529 19449 Face 41604 19450 19530 19449 Face 41605 19611 19610 19529 Face 41606 19530 19611 19529 Face 41607 19694 19693 19610 Face 41608 19611 19694 19610 Face 41609 19777 19776 19693 Face 41610 19694 19777 19693 Face 41611 19857 19856 19776 Face 41612 19777 19857 19776 Face 41613 23221 23220 19479 Face 41614 34398 34364 34766 Face 41615 20990 12176 14906 Face 41616 32256 32362 32255 Face 41617 20089 20088 20009 Face 41618 24227 20009 23732 Face 41619 20168 20167 20088 Face 41620 20089 20168 20088 Face 41621 20250 20249 20167 Face 41622 20168 20250 20167 Face 41623 20250 20334 20333 Face 41624 20249 20250 20333 Face 41625 20334 20420 20419 Face 41626 20333 20334 20419 Face 41627 20420 20507 20506 Face 41628 20419 20420 20506 Face 41629 20507 20595 20594 Face 41630 20506 20507 20594 Face 41631 20595 20684 20683 Face 41632 20594 20595 20683 Face 41633 20684 20774 20773 Face 41634 20683 20684 20773 Face 41635 20774 20863 20862 Face 41636 20773 20774 20862 Face 41637 20863 20952 20951 Face 41638 20862 20863 20951 Face 41639 20952 21044 21043 Face 41640 20951 20952 21043 Face 41641 21044 21134 21133 Face 41642 21043 21044 21133 Face 41643 21134 21227 21226 Face 41644 21133 21134 21226 Face 41645 21134 21135 21227 Face 41646 24337 23141 23997 Face 41647 23114 23586 23944 Face 41648 24408 24407 23944 Face 41649 27517 22958 24466 Face 41650 11254 11327 21049 Face 41651 22734 22729 25218 Face 41652 12620 25316 24196 Face 41653 27377 27378 29066 Face 41654 23931 24735 23432 Face 41655 28772 28898 28897 Face 41656 29068 11144 19198 Face 41657 26062 26061 25949 Face 41658 28003 28686 27100 Face 41659 12261 12348 13265 Face 41660 25632 25733 25732 Face 41661 22031 22030 21932 Face 41662 19661 19744 19660 Face 41663 21933 22031 21932 Face 41664 32690 32689 32562 Face 41665 17135 22127 22128 Face 41666 21579 19460 6505 Face 41667 20196 17867 17951 Face 41668 21578 21579 6505 Face 41669 19460 20616 20615 Face 41670 20616 12840 9383 Face 41671 6505 19460 20615 Face 41672 24333 22781 24426 Face 41673 20615 20616 9383 Face 41674 24458 27151 27152 Face 41675 13829 13068 13830 Face 41676 19327 19759 19758 Face 41677 24411 23771 19932 Face 41678 19759 20545 20539 Face 41679 19319 19327 19758 Face 41680 20545 21579 21578 Face 41681 19758 19759 20539 Face 41682 16423 16498 6803 Face 41683 20539 20545 21578 Face 41684 19823 19822 19739 Face 41685 16498 22319 6803 Face 41686 20135 20136 20213 Face 41687 19657 19740 19656 Face 41688 10596 21364 19807 Face 41689 13089 34421 34476 Face 41690 21364 20925 20924 Face 41691 19807 21364 20924 Face 41692 20925 22427 22331 Face 41693 20924 20925 22331 Face 41694 22427 22154 22055 Face 41695 22331 22427 22055 Face 41696 22154 22250 22539 Face 41697 22055 22154 22539 Face 41698 22250 21383 22045 Face 41699 22539 22250 22045 Face 41700 21383 21947 21850 Face 41701 22045 21383 21850 Face 41702 21947 7010 4239 Face 41703 21850 21947 4239 Face 41704 7010 19921 19998 Face 41705 4239 7010 19998 Face 41706 19921 10720 21299 Face 41707 19998 19921 21299 Face 41708 10720 20571 19346 Face 41709 21299 10720 19346 Face 41710 18551 6161 20490 Face 41711 18082 18081 20380 Face 41712 19120 5530 5656 Face 41713 34494 34352 34817 Face 41714 17194 16701 29804 Face 41715 19977 19976 19898 Face 41716 11103 20719 1883 Face 41717 20214 20296 20295 Face 41718 27623 26472 20803 Face 41719 17575 14873 12765 Face 41720 34677 34734 34684 Face 41721 29485 12552 24671 Face 41722 26535 6715 25655 Face 41723 21177 21760 22330 Face 41724 13069 12854 22044 Face 41725 24425 22463 24892 Face 41726 20663 20752 20662 Face 41727 20664 20665 20663 Face 41728 20662 20664 20663 Face 41729 15197 15066 22636 Face 41730 20664 22636 20665 Face 41731 19661 19660 19577 Face 41732 16266 16515 20811 Face 41733 20634 13640 12840 Face 41734 15288 15289 15425 Face 41735 19262 19291 19290 Face 41736 19261 19262 19290 Face 41737 19371 19370 19290 Face 41738 19291 19371 19290 Face 41739 19451 19450 19370 Face 41740 19371 19451 19370 Face 41741 19531 19530 19450 Face 41742 19451 19531 19450 Face 41743 19612 19611 19530 Face 41744 19531 19612 19530 Face 41745 19695 19694 19611 Face 41746 19612 19695 19611 Face 41747 19778 19777 19694 Face 41748 19695 19778 19694 Face 41749 31807 31914 31806 Face 41750 32019 32018 31913 Face 41751 24411 19857 24195 Face 41752 31914 32019 31913 Face 41753 30662 30661 30567 Face 41754 19415 17955 17873 Face 41755 20090 20089 20010 Face 41756 20169 20168 20089 Face 41757 20090 20169 20089 Face 41758 20251 20250 20168 Face 41759 20169 20251 20168 Face 41760 20251 20335 20334 Face 41761 20250 20251 20334 Face 41762 20335 20421 20420 Face 41763 20334 20335 20420 Face 41764 20421 20508 20507 Face 41765 20420 20421 20507 Face 41766 20508 20596 20595 Face 41767 20507 20508 20595 Face 41768 20596 20685 20684 Face 41769 20595 20596 20684 Face 41770 20685 20775 20774 Face 41771 20684 20685 20774 Face 41772 20775 20864 20863 Face 41773 20774 20775 20863 Face 41774 20864 20953 20952 Face 41775 20863 20864 20952 Face 41776 20953 21045 21044 Face 41777 20952 20953 21044 Face 41778 20954 21045 20953 Face 41779 21044 21045 21134 Face 41780 21135 21134 21045 Face 41781 25396 20175 21229 Face 41782 23699 25292 11080 Face 41783 23536 21566 23385 Face 41784 24484 11670 21741 Face 41785 24971 24972 25110 Face 41786 23623 11729 22934 Face 41787 11729 20784 22934 Face 41788 22470 23536 23327 Face 41789 20784 22979 23230 Face 41790 11327 21140 21049 Face 41791 24307 23041 24407 Face 41792 23701 24216 24217 Face 41793 22949 22950 24099 Face 41794 24761 22916 24218 Face 41795 1803 1358 4101 Face 41796 23250 23245 24562 Face 41797 23528 20077 20237 Face 41798 21760 13069 22044 Face 41799 33868 33995 33867 Face 41800 19578 19661 19577 Face 41801 16829 17842 17575 Face 41802 19358 19357 11516 Face 41803 21330 21329 21238 Face 41804 11166 25659 16690 Face 41805 19969 20046 19968 Face 41806 18143 18847 17081 Face 41807 19459 20634 19460 Face 41808 18838 16829 17575 Face 41809 19389 18005 19882 Face 41810 19732 19815 19731 Face 41811 19891 19890 19814 Face 41812 2550 2551 20891 Face 41813 19802 20548 20547 Face 41814 27702 27701 27574 Face 41815 23372 23851 25138 Face 41816 19815 19814 19731 Face 41817 14431 13818 12277 Face 41818 19576 17085 19495 Face 41819 19566 19649 19565 Face 41820 20196 17951 12553 Face 41821 12765 12766 13484 Face 41822 23770 19932 23771 Face 41823 12173 14150 12766 Face 41824 12765 12173 12766 Face 41825 33013 5332 14150 Face 41826 12765 182 12173 Face 41827 26785 21762 20814 Face 41828 26885 26886 26998 Face 41829 12819 25632 23734 Face 41830 26999 27115 27114 Face 41831 27849 27848 27719 Face 41832 28557 29199 28556 Face 41833 33358 33357 33221 Face 41834 33222 33358 33221 Face 41835 21365 20836 20925 Face 41836 21364 21365 20925 Face 41837 20836 22332 22427 Face 41838 20925 20836 22427 Face 41839 22249 22154 22427 Face 41840 22332 22249 22427 Face 41841 22249 22155 22250 Face 41842 22154 22249 22250 Face 41843 22155 21287 21383 Face 41844 22250 22155 21383 Face 41845 21287 14649 21947 Face 41846 21383 21287 21947 Face 41847 14649 2378 7010 Face 41848 21947 14649 7010 Face 41849 2378 20734 19921 Face 41850 7010 2378 19921 Face 41851 20734 21184 10720 Face 41852 19921 20734 10720 Face 41853 17061 17151 17060 Face 41854 10720 21184 20571 Face 41855 25285 24274 22783 Face 41856 17492 33414 16924 Face 41857 13727 4362 14549 Face 41858 20892 431 7020 Face 41859 20711 11103 10965 Face 41860 16514 118 2512 Face 41861 15314 1789 15044 Face 41862 18255 29338 27332 Face 41863 19405 19404 19328 Face 41864 27575 27702 27574 Face 41865 19468 19385 17151 Face 41866 20571 18720 18313 Face 41867 20662 20752 13351 Face 41868 23017 28827 26673 Face 41869 21111 20662 13351 Face 41870 1205 21111 13351 Face 41871 20843 20664 20662 Face 41872 21111 20843 20662 Face 41873 3637 22636 20664 Face 41874 20843 3637 20664 Face 41875 15197 22636 3637 Face 41876 19411 16896 16897 Face 41877 20410 26756 20324 Face 41878 19292 19291 19262 Face 41879 19263 19292 19262 Face 41880 19372 19371 19291 Face 41881 19292 19372 19291 Face 41882 19452 19451 19371 Face 41883 19372 19452 19371 Face 41884 19532 19531 19451 Face 41885 19452 19532 19451 Face 41886 19613 19612 19531 Face 41887 19532 19613 19531 Face 41888 19696 19695 19612 Face 41889 19613 19696 19612 Face 41890 19779 19778 19695 Face 41891 19696 19779 19695 Face 41892 24195 19858 23785 Face 41893 19779 19858 19778 Face 41894 12061 1789 15314 Face 41895 14915 12061 15314 Face 41896 13090 21956 21560 Face 41897 13078 10699 1789 Face 41898 12030 11282 12089 Face 41899 20170 20169 20090 Face 41900 20091 20170 20090 Face 41901 20252 20251 20169 Face 41902 20170 20252 20169 Face 41903 20252 20336 20335 Face 41904 20251 20252 20335 Face 41905 20336 20422 20421 Face 41906 20335 20336 20421 Face 41907 20422 20509 20508 Face 41908 20421 20422 20508 Face 41909 20509 20597 20596 Face 41910 20508 20509 20596 Face 41911 20597 20686 20685 Face 41912 20596 20597 20685 Face 41913 20686 20776 20775 Face 41914 20685 20686 20775 Face 41915 20776 20865 20864 Face 41916 20775 20776 20864 Face 41917 20865 20954 20953 Face 41918 20864 20865 20953 Face 41919 20865 27700 20954 Face 41920 21115 21393 19422 Face 41921 24321 24337 23997 Face 41922 162 22372 6008 Face 41923 23577 23495 23784 Face 41924 24215 22975 23284 Face 41925 24662 23604 23748 Face 41926 15021 15020 12705 Face 41927 24559 24264 24558 Face 41928 24943 25053 24916 Face 41929 22934 20784 23230 Face 41930 24385 23106 24400 Face 41931 23729 24453 11998 Face 41932 20571 21184 18317 Face 41933 22958 24000 24466 Face 41934 24063 23489 24064 Face 41935 24737 24872 24084 Face 41936 12819 24038 25633 Face 41937 24959 25098 25097 Face 41938 24641 12635 12083 Face 41939 23826 24641 12083 Face 41940 12104 12530 12440 Face 41941 23138 23390 21514 Face 41942 17974 20194 17883 Face 41943 16284 16445 16444 Face 41944 19765 12587 14650 Face 41945 32400 32399 32293 Face 41946 19645 19646 19728 Face 41947 19766 19765 14650 Face 41948 19562 19563 19645 Face 41949 19729 19812 19811 Face 41950 19482 19563 19562 Face 41951 19646 19729 19728 Face 41952 17360 18793 17669 Face 41953 19563 19646 19645 Face 41954 20042 20043 20124 Face 41955 19891 19969 19890 Face 41956 19815 19891 19814 Face 41957 20046 20045 19968 Face 41958 19966 19965 19887 Face 41959 19969 19968 19890 Face 41960 19728 19729 19811 Face 41961 19888 19966 19887 Face 41962 19888 19887 19811 Face 41963 19812 19888 19811 Face 41964 19966 20043 20042 Face 41965 19965 19966 20042 Face 41966 19732 19731 19648 Face 41967 20043 20125 20124 Face 41968 19485 19566 19484 Face 41969 19649 19732 19648 Face 41970 19405 19485 19404 Face 41971 19649 19648 19565 Face 41972 19329 19405 19328 Face 41973 19566 19565 19484 Face 41974 29543 29675 29542 Face 41975 19485 19484 19404 Face 41976 12061 13078 1789 Face 41977 21271 22536 13090 Face 41978 10717 5334 10699 Face 41979 13078 10717 10699 Face 41980 29823 23909 22996 Face 41981 13126 21459 21365 Face 41982 19905 10596 19807 Face 41983 21459 22317 20836 Face 41984 21365 21459 20836 Face 41985 22317 22236 22332 Face 41986 20836 22317 22332 Face 41987 22236 22632 22249 Face 41988 22332 22236 22249 Face 41989 22632 22633 22155 Face 41990 22249 22632 22155 Face 41991 22633 21195 21287 Face 41992 22155 22633 21287 Face 41993 21195 19884 14649 Face 41994 21287 21195 14649 Face 41995 19884 6501 2378 Face 41996 14649 19884 2378 Face 41997 6501 20219 20734 Face 41998 2378 6501 20734 Face 41999 20219 20823 21184 Face 42000 20734 20219 21184 Face 42001 33430 32892 11232 Face 42002 22031 17413 18426 Face 42003 13808 19517 13911 Face 42004 19808 20570 20548 Face 42005 11516 19357 19437 Face 42006 13947 14569 14391 Face 42007 20055 20056 20137 Face 42008 12348 13360 13265 Face 42009 12001 12347 5334 Face 42010 10717 12001 5334 Face 42011 15113 5239 3163 Face 42012 22329 21270 21366 Face 42013 27382 29084 29072 Face 42014 26307 28429 26124 Face 42015 14851 1205 20234 Face 42016 20315 20234 1205 Face 42017 21203 21111 1205 Face 42018 14851 21203 1205 Face 42019 20932 20843 21111 Face 42020 21203 20932 21111 Face 42021 12116 3637 20843 Face 42022 20932 12116 20843 Face 42023 25422 29849 29848 Face 42024 17768 19933 20200 Face 42025 19264 19293 19292 Face 42026 19263 19264 19292 Face 42027 19373 19372 19292 Face 42028 19293 19373 19292 Face 42029 19453 19452 19372 Face 42030 19373 19453 19372 Face 42031 19533 19532 19452 Face 42032 19453 19533 19452 Face 42033 19614 19613 19532 Face 42034 19533 19614 19532 Face 42035 19697 19696 19613 Face 42036 19614 19697 19613 Face 42037 19780 19779 19696 Face 42038 19697 19780 19696 Face 42039 19860 23452 23785 Face 42040 19780 19859 19779 Face 42041 14903 14409 12347 Face 42042 12001 14903 12347 Face 42043 22465 22367 14409 Face 42044 20092 20091 20011 Face 42045 34558 34530 34797 Face 42046 20171 20170 20091 Face 42047 20092 20171 20091 Face 42048 20253 20252 20170 Face 42049 20171 20253 20170 Face 42050 20253 20337 20336 Face 42051 20252 20253 20336 Face 42052 20337 20423 20422 Face 42053 20336 20337 20422 Face 42054 20423 20510 20509 Face 42055 20422 20423 20509 Face 42056 20510 20598 20597 Face 42057 20509 20510 20597 Face 42058 20598 20687 20686 Face 42059 20597 20598 20686 Face 42060 20687 20777 20776 Face 42061 20686 20687 20776 Face 42062 20425 20512 20511 Face 42063 20776 20777 20865 Face 42064 31756 31755 31634 Face 42065 23037 23605 24813 Face 42066 12088 26418 28699 Face 42067 22730 23010 25198 Face 42068 21513 21870 21512 Face 42069 23452 19860 19861 Face 42070 20871 25321 23784 Face 42071 23503 3179 10938 Face 42072 21511 22832 23441 Face 42073 19276 20871 23784 Face 42074 24160 24527 24528 Face 42075 24346 24215 23284 Face 42076 24869 20156 25153 Face 42077 14970 14845 14971 Face 42078 24962 24963 25101 Face 42079 20237 20077 22081 Face 42080 20099 20017 23780 Face 42081 23822 24336 24810 Face 42082 23489 24737 24084 Face 42083 34749 34732 34672 Face 42084 23419 24899 16501 Face 42085 24216 24347 24872 Face 42086 12635 21116 22431 Face 42087 24976 24977 25115 Face 42088 23779 22911 23619 Face 42089 12083 12635 22431 Face 42090 25224 4364 3847 Face 42091 23444 23445 25735 Face 42092 24340 24546 22883 Face 42093 24802 24746 11511 Face 42094 12415 12414 12322 Face 42095 22620 25046 25044 Face 42096 11271 23603 23533 Face 42097 31522 31521 31415 Face 42098 20753 24780 25286 Face 42099 25286 25146 24180 Face 42100 13068 2779 19682 Face 42101 83 5373 9878 Face 42102 15043 4472 5128 Face 42103 11105 13172 12987 Face 42104 19496 19577 19495 Face 42105 4362 16514 14549 Face 42106 20124 20125 20202 Face 42107 21570 20473 21477 Face 42108 20203 20286 20285 Face 42109 20202 20203 20285 Face 42110 17986 18076 17985 Face 42111 16543 16542 20232 Face 42112 20473 20559 21477 Face 42113 21943 21368 13289 Face 42114 20302 6006 16042 Face 42115 15753 14920 14382 Face 42116 20727 19956 16499 Face 42117 19577 19576 19495 Face 42118 5268 16266 14324 Face 42119 21742 19956 20727 Face 42120 29748 26677 29741 Face 42121 25761 25868 25867 Face 42122 19337 19351 19809 Face 42123 19352 19842 19831 Face 42124 18326 24448 29516 Face 42125 32446 32563 32445 Face 42126 26097 27382 27380 Face 42127 19416 18326 29516 Face 42128 21956 20302 21560 Face 42129 20322 29621 26817 Face 42130 14903 22465 14409 Face 42131 21270 22536 21271 Face 42132 22465 16350 9753 Face 42133 22367 22465 9753 Face 42134 16350 16037 14489 Face 42135 31164 31163 31064 Face 42136 29849 25422 29850 Face 42137 15029 15439 21459 Face 42138 13126 15029 21459 Face 42139 15439 13399 22317 Face 42140 21459 15439 22317 Face 42141 13399 14764 22236 Face 42142 22317 13399 22236 Face 42143 14764 22538 22632 Face 42144 22236 14764 22632 Face 42145 22538 22056 22633 Face 42146 22632 22538 22633 Face 42147 22056 16351 21195 Face 42148 22633 22056 21195 Face 42149 16351 19503 19884 Face 42150 21195 16351 19884 Face 42151 13729 6501 19884 Face 42152 19503 13729 19884 Face 42153 13729 19513 20219 Face 42154 6501 13729 20219 Face 42155 22134 22037 17287 Face 42156 19668 18944 18941 Face 42157 75 12911 2127 Face 42158 16898 16990 19412 Face 42159 14902 1551 13440 Face 42160 32291 32292 32397 Face 42161 20909 12554 12105 Face 42162 1551 10718 12813 Face 42163 21934 21939 12795 Face 42164 9753 16350 14489 Face 42165 16037 19319 19318 Face 42166 14489 16037 19318 Face 42167 22233 22329 21366 Face 42168 20034 22222 19961 Face 42169 21355 21354 21261 Face 42170 21260 21261 21354 Face 42171 10133 14851 20400 Face 42172 20234 20400 14851 Face 42173 14781 21203 14851 Face 42174 10133 14781 14851 Face 42175 21113 20932 21203 Face 42176 14781 21113 21203 Face 42177 7805 4457 4590 Face 42178 4590 8245 7805 Face 42179 19312 17422 17506 Face 42180 19581 17312 19008 Face 42181 19294 19293 19264 Face 42182 19265 19294 19264 Face 42183 19374 19373 19293 Face 42184 19294 19374 19293 Face 42185 19454 19453 19373 Face 42186 19374 19454 19373 Face 42187 19534 19533 19453 Face 42188 19454 19534 19453 Face 42189 19615 19614 19533 Face 42190 19534 19615 19533 Face 42191 19698 19697 19614 Face 42192 19615 19698 19614 Face 42193 19781 19780 19697 Face 42194 19698 19781 19697 Face 42195 19860 19859 19780 Face 42196 19781 19860 19780 Face 42197 19319 19758 19755 Face 42198 20809 20917 20638 Face 42199 34825 34747 34506 Face 42200 24807 23448 20012 Face 42201 20172 20171 20092 Face 42202 20093 20172 20092 Face 42203 20254 20253 20171 Face 42204 20172 20254 20171 Face 42205 20254 20338 20337 Face 42206 20253 20254 20337 Face 42207 26878 26991 20255 Face 42208 20337 20338 20423 Face 42209 20424 20511 20510 Face 42210 20423 20424 20510 Face 42211 20511 20599 20598 Face 42212 20510 20511 20598 Face 42213 20599 20688 20687 Face 42214 20598 20599 20687 Face 42215 20687 20688 20777 Face 42216 22742 25045 24632 Face 42217 25225 25226 25362 Face 42218 24080 23470 23986 Face 42219 23254 24571 24570 Face 42220 24418 24141 22850 Face 42221 25257 25258 25394 Face 42222 24635 23748 13740 Face 42223 24350 24219 29491 Face 42224 25395 21229 22835 Face 42225 22752 22753 29742 Face 42226 22832 23851 23372 Face 42227 11592 23928 23342 Face 42228 20963 21055 24357 Face 42229 24972 24973 25111 Face 42230 23417 23915 21048 Face 42231 23463 24492 23478 Face 42232 23536 23385 23327 Face 42233 22781 25627 25534 Face 42234 25036 20099 23780 Face 42235 31580 31694 31579 Face 42236 24737 24216 24872 Face 42237 21990 22088 22087 Face 42238 33876 33875 33749 Face 42239 31508 31617 31507 Face 42240 20731 17138 20907 Face 42241 19212 22279 22375 Face 42242 17138 18688 20907 Face 42243 24281 23335 24315 Face 42244 24187 24072 24188 Face 42245 24071 11271 23409 Face 42246 24314 23204 24315 Face 42247 21011 24172 20785 Face 42248 23936 23937 23325 Face 42249 12496 23090 12495 Face 42250 24583 24722 14762 Face 42251 12862 12861 12768 Face 42252 20787 23145 23018 Face 42253 23032 22982 23199 Face 42254 29903 29961 29902 Face 42255 11411 23962 11081 Face 42256 23145 23032 23199 Face 42257 11096 12018 14660 Face 42258 24701 16173 24702 Face 42259 15976 16128 4605 Face 42260 4985 12499 16508 Face 42261 21570 21477 14653 Face 42262 20011 24807 20093 Face 42263 16499 21943 13289 Face 42264 14643 21570 14653 Face 42265 14643 14653 13289 Face 42266 21368 14643 13289 Face 42267 14540 11096 14660 Face 42268 15448 16508 19539 Face 42269 19704 19539 12018 Face 42270 11096 19704 12018 Face 42271 21645 21742 20727 Face 42272 19704 15448 19539 Face 42273 22323 21742 21645 Face 42274 19956 21943 16499 Face 42275 22605 22323 14687 Face 42276 14687 22323 21645 Face 42277 22605 22511 12176 Face 42278 22511 22605 14687 Face 42279 20453 14907 20452 Face 42280 20990 22605 12176 Face 42281 21448 21447 21354 Face 42282 14907 14906 20452 Face 42283 21366 21270 21271 Face 42284 21355 21448 21354 Face 42285 22222 21649 19961 Face 42286 22536 21956 13090 Face 42287 19318 19319 19755 Face 42288 21004 21485 5722 Face 42289 19758 20539 20538 Face 42290 21745 14641 15029 Face 42291 21648 21745 15029 Face 42292 14641 21268 15439 Face 42293 15029 14641 15439 Face 42294 21268 20122 13399 Face 42295 15439 21268 13399 Face 42296 20122 14652 14764 Face 42297 13399 20122 14764 Face 42298 14652 22442 22538 Face 42299 14764 14652 22538 Face 42300 14526 22056 22538 Face 42301 22442 14526 22538 Face 42302 14526 22429 16351 Face 42303 22056 14526 16351 Face 42304 22429 19504 19503 Face 42305 16351 22429 19503 Face 42306 2405 13729 19503 Face 42307 19504 2405 19503 Face 42308 2405 21382 19513 Face 42309 13729 2405 19513 Face 42310 19312 17594 21279 Face 42311 20114 20113 17790 Face 42312 19802 19808 20548 Face 42313 12911 12892 12708 Face 42314 20137 20215 20214 Face 42315 19403 19387 19386 Face 42316 13354 12948 19358 Face 42317 20909 20844 12795 Face 42318 19755 19758 20538 Face 42319 20539 21578 21559 Face 42320 20538 20539 21559 Face 42321 21578 6505 9433 Face 42322 21559 21578 9433 Face 42323 22034 22222 22033 Face 42324 22318 4473 21485 Face 42325 21649 22329 22233 Face 42326 19961 21649 22233 Face 42327 9276 5369 22432 Face 42328 33997 33998 34122 Face 42329 12270 10133 9066 Face 42330 20400 9066 10133 Face 42331 1009 14781 10133 Face 42332 12270 1009 10133 Face 42333 21205 21113 14781 Face 42334 1009 21205 14781 Face 42335 19335 19802 19801 Face 42336 17669 22132 22324 Face 42337 15471 15334 12116 Face 42338 17900 20297 20215 Face 42339 21322 23295 25880 Face 42340 33998 34123 34122 Face 42341 21414 21322 18340 Face 42342 19535 19534 19454 Face 42343 12316 23534 12407 Face 42344 19616 19615 19534 Face 42345 19535 19616 19534 Face 42346 19699 19698 19615 Face 42347 33871 33870 33744 Face 42348 19782 19781 19698 Face 42349 19615 19616 19699 Face 42350 19698 19699 19782 Face 42351 19782 19861 19781 Face 42352 6505 20615 20612 Face 42353 15068 16038 13544 Face 42354 9433 6505 20612 Face 42355 30482 30481 30410 Face 42356 20173 20172 20093 Face 42357 20093 26536 20094 Face 42358 26649 20093 20094 Face 42359 23634 24897 12763 Face 42360 24897 23634 24905 Face 42361 20255 20173 26764 Face 42362 23911 23358 23309 Face 42363 22181 21025 11892 Face 42364 26991 20425 20338 Face 42365 20424 20425 20511 Face 42366 20511 20512 20599 Face 42367 3172 10938 12944 Face 42368 33745 33744 33619 Face 42369 20427 24682 23550 Face 42370 21796 23281 23881 Face 42371 23475 22907 24021 Face 42372 21140 20427 23550 Face 42373 33221 33220 33085 Face 42374 12792 11751 23312 Face 42375 23346 23629 20956 Face 42376 25118 25119 25257 Face 42377 25258 25395 25394 Face 42378 24323 24759 24395 Face 42379 24892 24759 24323 Face 42380 24566 24565 16170 Face 42381 30783 30784 30889 Face 42382 23928 24056 23000 Face 42383 24056 24057 23000 Face 42384 14331 14448 14447 Face 42385 22830 24765 24027 Face 42386 33620 33619 33492 Face 42387 20667 24074 22972 Face 42388 21798 21894 21893 Face 42389 21797 21798 21893 Face 42390 21894 21991 21990 Face 42391 21893 21894 21990 Face 42392 21991 22089 22088 Face 42393 21990 21991 22088 Face 42394 22089 22184 22183 Face 42395 22088 22089 22183 Face 42396 22184 22280 22279 Face 42397 22183 22184 22279 Face 42398 22280 22376 22375 Face 42399 22472 22375 22376 Face 42400 22376 22473 22472 Face 42401 22472 22566 20718 Face 42402 22473 22567 22566 Face 42403 20718 22662 16016 Face 42404 22567 22663 22662 Face 42405 14761 22662 22663 Face 42406 22663 14640 14761 Face 42407 21797 21893 29317 Face 42408 30340 30407 30339 Face 42409 14640 14897 14761 Face 42410 25274 22734 25218 Face 42411 23265 23578 23416 Face 42412 11251 26221 26220 Face 42413 22972 22801 24185 Face 42414 23719 24318 23358 Face 42415 25356 12611 25355 Face 42416 11753 23122 3636 Face 42417 24167 24870 18866 Face 42418 20491 22690 24213 Face 42419 23628 23297 16176 Face 42420 23088 24407 248 Face 42421 20845 20491 24213 Face 42422 15448 4985 16508 Face 42423 22903 25177 23454 Face 42424 13161 13067 14901 Face 42425 15030 13161 14901 Face 42426 12981 13072 12411 Face 42427 15025 15156 14529 Face 42428 13072 12981 12499 Face 42429 14368 7603 16026 Face 42430 4985 13072 12499 Face 42431 13072 14368 12411 Face 42432 12411 14368 16026 Face 42433 7603 7177 12371 Face 42434 16026 7603 12371 Face 42435 7177 13169 13168 Face 42436 12432 19637 14152 Face 42437 20387 20382 19636 Face 42438 26089 27377 27376 Face 42439 19637 19636 14152 Face 42440 34164 21542 21447 Face 42441 18897 19116 17406 Face 42442 16502 21004 5722 Face 42443 21449 34038 21448 Face 42444 20615 9383 12198 Face 42445 22217 22216 22121 Face 42446 20612 20615 12198 Face 42447 9383 6803 21082 Face 42448 11156 13817 14641 Face 42449 11522 11004 12803 Face 42450 13817 21460 21268 Face 42451 14641 13817 21268 Face 42452 21460 21298 20122 Face 42453 21268 21460 20122 Face 42454 21298 12019 14652 Face 42455 20122 21298 14652 Face 42456 12019 22345 22442 Face 42457 14652 12019 22442 Face 42458 22345 12901 14526 Face 42459 22442 22345 14526 Face 42460 12901 21103 22429 Face 42461 14526 12901 22429 Face 42462 19586 19504 22429 Face 42463 21103 19586 22429 Face 42464 3430 2405 19504 Face 42465 19586 3430 19504 Face 42466 2716 9154 9041 Face 42467 2405 3430 21382 Face 42468 5203 10733 13644 Face 42469 15613 21113 21205 Face 42470 12892 13739 13738 Face 42471 12708 12892 13738 Face 42472 13455 19271 19333 Face 42473 20136 20137 20214 Face 42474 19517 19358 13911 Face 42475 24377 12294 24517 Face 42476 12198 9383 21082 Face 42477 22319 22415 21082 Face 42478 6803 22319 21082 Face 42479 17867 20196 22415 Face 42480 22319 17867 22415 Face 42481 20533 16502 20532 Face 42482 21385 114 14976 Face 42483 21004 22318 21485 Face 42484 22222 20034 22033 Face 42485 22034 22033 4473 Face 42486 22318 22034 4473 Face 42487 26088 26089 27376 Face 42488 21828 21827 21730 Face 42489 22962 22961 14605 Face 42490 257 15533 23103 Face 42491 16355 12270 14605 Face 42492 1605 16355 14605 Face 42493 13550 1009 12270 Face 42494 16355 13550 12270 Face 42495 13550 15756 1009 Face 42496 15938 8946 15787 Face 42497 8245 4590 750 Face 42498 19580 19579 17087 Face 42499 21382 3430 17416 Face 42500 26706 11828 26591 Face 42501 18463 4755 19064 Face 42502 17340 17339 17250 Face 42503 14997 17501 19153 Face 42504 19617 19616 19535 Face 42505 33224 33360 33223 Face 42506 24053 23810 24054 Face 42507 24940 25308 22703 Face 42508 22912 23542 22732 Face 42509 13534 13726 13632 Face 42510 23286 24408 23828 Face 42511 24100 20096 24630 Face 42512 25491 30926 31025 Face 42513 18005 19389 19008 Face 42514 24995 22894 21984 Face 42515 21117 22741 22980 Face 42516 22741 14667 22980 Face 42517 21508 24999 24861 Face 42518 21600 25005 24593 Face 42519 23258 23995 23571 Face 42520 23228 22743 24357 Face 42521 11670 22715 22257 Face 42522 23888 25280 23630 Face 42523 34592 34431 20884 Face 42524 22530 23820 23677 Face 42525 11673 25137 23490 Face 42526 21137 24937 21046 Face 42527 25362 25363 22943 Face 42528 24709 24845 24844 Face 42529 24708 24709 24844 Face 42530 23195 23139 24998 Face 42531 23135 23191 23134 Face 42532 23873 23339 25284 Face 42533 23078 23134 23077 Face 42534 24056 4058 24057 Face 42535 4058 23831 24057 Face 42536 11774 5344 11681 Face 42537 6658 25853 11285 Face 42538 21702 21799 21798 Face 42539 29056 21701 21797 Face 42540 21799 21895 21894 Face 42541 21798 21799 21894 Face 42542 21895 21992 21991 Face 42543 21894 21895 21991 Face 42544 21992 22090 22089 Face 42545 21991 21992 22089 Face 42546 22090 22185 22184 Face 42547 22089 22090 22184 Face 42548 22185 22281 22280 Face 42549 22184 22185 22280 Face 42550 22281 22377 22376 Face 42551 22280 22281 22376 Face 42552 22377 22474 22473 Face 42553 22376 22377 22473 Face 42554 22474 22568 22567 Face 42555 22473 22474 22567 Face 42556 22568 22664 22663 Face 42557 22567 22568 22663 Face 42558 22664 14639 14640 Face 42559 22663 22664 14640 Face 42560 14639 15157 14897 Face 42561 14640 14639 14897 Face 42562 9528 8639 14897 Face 42563 15157 9528 14897 Face 42564 19382 25984 19463 Face 42565 9528 1382 8639 Face 42566 25059 23634 16347 Face 42567 34741 34781 34475 Face 42568 24420 21507 22696 Face 42569 21507 22740 22696 Face 42570 25244 25381 25380 Face 42571 25177 25178 23454 Face 42572 23327 23385 24631 Face 42573 23921 23665 15027 Face 42574 4358 11833 23914 Face 42575 24003 24592 21301 Face 42576 15168 15169 13067 Face 42577 13161 15168 13067 Face 42578 14530 15030 14901 Face 42579 21628 21723 21627 Face 42580 15156 14530 14529 Face 42581 14529 14530 14901 Face 42582 163 14226 22590 Face 42583 22591 163 22590 Face 42584 12412 12172 12171 Face 42585 14373 12412 12171 Face 42586 16338 7490 16334 Face 42587 5143 13724 2503 Face 42588 12432 14152 13724 Face 42589 7490 5143 2503 Face 42590 4467 10312 3898 Face 42591 3897 12181 14539 Face 42592 4323 16504 19541 Face 42593 3898 3897 14539 Face 42594 21828 21924 21827 Face 42595 14767 13534 13632 Face 42596 22122 22217 22121 Face 42597 12288 12380 22638 Face 42598 22313 22312 22216 Face 42599 20570 21843 21842 Face 42600 22122 22121 22023 Face 42601 29806 29805 29674 Face 42602 15307 22424 13817 Face 42603 11156 14641 21745 Face 42604 22424 21461 21460 Face 42605 13817 22424 21460 Face 42606 21461 20059 21298 Face 42607 21460 21461 21298 Face 42608 20059 5501 12019 Face 42609 21298 20059 12019 Face 42610 5501 19638 22345 Face 42611 12019 5501 22345 Face 42612 19638 6816 12901 Face 42613 22345 19638 12901 Face 42614 6816 21012 21103 Face 42615 12901 6816 21103 Face 42616 17755 17416 3430 Face 42617 21103 21012 19586 Face 42618 18248 5587 5713 Face 42619 5713 5586 18248 Face 42620 17880 17135 18791 Face 42621 20827 20738 16274 Face 42622 12911 14551 2127 Face 42623 29573 29705 29572 Face 42624 20134 20135 20212 Face 42625 75 2127 12820 Face 42626 20627 21867 21843 Face 42627 7085 13739 12892 Face 42628 15072 13354 19517 Face 42629 23148 29762 29763 Face 42630 20548 20570 21842 Face 42631 17826 1152 17736 Face 42632 20465 20466 21379 Face 42633 19678 20466 20465 Face 42634 21379 21385 14976 Face 42635 16502 5722 20532 Face 42636 114 20533 20532 Face 42637 14976 114 20532 Face 42638 21731 21828 21730 Face 42639 21924 21923 21827 Face 42640 3442 22960 23013 Face 42641 23012 22372 3442 Face 42642 23159 550 257 Face 42643 22372 19592 3442 Face 42644 16036 1605 20197 Face 42645 19592 16036 20197 Face 42646 19924 16355 1605 Face 42647 16036 19924 1605 Face 42648 12020 13550 16355 Face 42649 19924 12020 16355 Face 42650 15603 15808 4753 Face 42651 17010 19217 18196 Face 42652 10718 14549 19271 Face 42653 20053 20135 20134 Face 42654 3161 2675 1984 Face 42655 20820 20833 4710 Face 42656 17538 12366 7085 Face 42657 11145 1746 12730 Face 42658 13591 13590 13494 Face 42659 11304 34712 20551 Face 42660 2644 6836 21662 Face 42661 32955 33089 32954 Face 42662 26880 26881 26993 Face 42663 22598 22597 22503 Face 42664 11843 2921 6019 Face 42665 22504 22598 22503 Face 42666 23393 25737 25736 Face 42667 11145 12730 15882 Face 42668 19492 19491 19411 Face 42669 19412 19492 19411 Face 42670 25859 19536 25858 Face 42671 25048 24911 23522 Face 42672 14990 15113 15911 Face 42673 19997 23418 25280 Face 42674 23237 19997 23559 Face 42675 22339 20393 20564 Face 42676 24844 24845 24979 Face 42677 22158 21865 22253 Face 42678 23807 19205 4445 Face 42679 24980 25119 25118 Face 42680 15862 24710 15863 Face 42681 15571 24851 15572 Face 42682 24712 24848 24847 Face 42683 22736 21230 21048 Face 42684 24711 24712 24847 Face 42685 24848 24983 24982 Face 42686 25272 25271 25132 Face 42687 24847 24848 24982 Face 42688 6034 27698 5336 Face 42689 24845 24980 24979 Face 42690 23202 23571 15735 Face 42691 29601 34414 34436 Face 42692 4058 24455 23831 Face 42693 24846 24981 24980 Face 42694 23873 25284 25283 Face 42695 24535 15734 4058 Face 42696 20078 23173 23583 Face 42697 13957 23248 14031 Face 42698 21703 21800 21799 Face 42699 29057 21702 21701 Face 42700 29601 34296 34414 Face 42701 21799 21800 21895 Face 42702 21896 21800 29321 Face 42703 21895 21896 21992 Face 42704 21993 22091 22090 Face 42705 21992 21993 22090 Face 42706 22091 22186 22185 Face 42707 22090 22091 22185 Face 42708 22186 22282 22281 Face 42709 22185 22186 22281 Face 42710 22282 22378 22377 Face 42711 22281 22282 22377 Face 42712 22475 22474 22377 Face 42713 22378 22475 22377 Face 42714 22475 22569 22568 Face 42715 22474 22475 22568 Face 42716 22569 22665 22664 Face 42717 22568 22569 22664 Face 42718 22665 32 14639 Face 42719 22664 22665 14639 Face 42720 32 15026 15157 Face 42721 14639 32 15157 Face 42722 13458 9528 15157 Face 42723 15026 13458 15157 Face 42724 1495 1382 9528 Face 42725 13458 1495 9528 Face 42726 34313 21648 34578 Face 42727 1495 14656 1382 Face 42728 22903 23454 22696 Face 42729 22740 22903 22696 Face 42730 11833 11457 23914 Face 42731 24190 22556 24142 Face 42732 20159 4358 23914 Face 42733 23665 24209 15027 Face 42734 23187 4358 22906 Face 42735 11457 11775 23914 Face 42736 21723 21820 21819 Face 42737 24636 20780 24778 Face 42738 21722 21723 21819 Face 42739 21820 21916 21915 Face 42740 21819 21820 21915 Face 42741 21916 22014 22013 Face 42742 22304 22400 22399 Face 42743 22303 22304 22399 Face 42744 12172 12802 12712 Face 42745 12171 12172 12712 Face 42746 22160 16338 22062 Face 42747 7490 2503 16334 Face 42748 16183 12856 12949 Face 42749 15308 16183 12949 Face 42750 12181 4323 2643 Face 42751 14539 12181 2643 Face 42752 19376 33930 19296 Face 42753 15177 15882 16189 Face 42754 17216 17284 29809 Face 42755 16190 16189 19296 Face 42756 34589 34533 13663 Face 42757 8344 28946 27496 Face 42758 24983 25122 25121 Face 42759 27392 27513 27752 Face 42760 26178 27387 27385 Face 42761 23505 15242 24299 Face 42762 17244 19470 17153 Face 42763 19633 19717 19716 Face 42764 17690 18339 18741 Face 42765 29906 29964 29905 Face 42766 13297 22520 22424 Face 42767 15307 13297 22424 Face 42768 22520 22234 21461 Face 42769 22424 22520 21461 Face 42770 22234 20058 20059 Face 42771 21461 22234 20059 Face 42772 20058 11003 5501 Face 42773 20059 20058 5501 Face 42774 11003 19639 19638 Face 42775 5501 11003 19638 Face 42776 19639 12475 6816 Face 42777 19638 19639 6816 Face 42778 12475 20922 21012 Face 42779 6816 12475 21012 Face 42780 34525 34723 34436 Face 42781 20922 19587 21012 Face 42782 21639 32882 21640 Face 42783 20380 20296 17990 Face 42784 19580 19663 19662 Face 42785 20290 17985 20289 Face 42786 14551 12911 12708 Face 42787 14059 13829 5203 Face 42788 23410 24363 22884 Face 42789 19334 19801 19760 Face 42790 333 23162 23161 Face 42791 19271 13454 19334 Face 42792 20288 17984 20287 Face 42793 20045 20046 20127 Face 42794 4109 1955 19753 Face 42795 32823 32955 32822 Face 42796 12380 11843 22638 Face 42797 1746 7158 8357 Face 42798 19677 19678 20465 Face 42799 20466 21385 21379 Face 42800 22022 22021 21923 Face 42801 21924 22022 21923 Face 42802 6026 23011 20225 Face 42803 417 23064 23119 Face 42804 32823 32822 32689 Face 42805 20226 6026 20225 Face 42806 7624 22372 162 Face 42807 6026 7624 162 Face 42808 20154 19592 22372 Face 42809 7624 20154 22372 Face 42810 20154 16217 19592 Face 42811 16217 16216 16036 Face 42812 19644 17351 17350 Face 42813 19576 19575 17085 Face 42814 16061 15906 12020 Face 42815 11828 26706 11909 Face 42816 33906 6667 34031 Face 42817 22435 20732 6809 Face 42818 20819 20728 5072 Face 42819 23066 23065 6008 Face 42820 20114 17791 17882 Face 42821 7158 7580 8357 Face 42822 3763 12857 13383 Face 42823 13742 16354 20281 Face 42824 20281 19425 19677 Face 42825 12446 15442 13742 Face 42826 19425 19678 19677 Face 42827 22638 11843 6019 Face 42828 16354 19425 20281 Face 42829 2921 15442 12446 Face 42830 6019 2921 12446 Face 42831 22407 22504 22503 Face 42832 22406 22407 22503 Face 42833 13556 14501 22597 Face 42834 22598 13556 22597 Face 42835 15177 11145 15882 Face 42836 1746 8357 12730 Face 42837 17779 18995 17100 Face 42838 16190 15177 16189 Face 42839 17955 19415 20563 Face 42840 32563 32690 32562 Face 42841 20175 24550 3822 Face 42842 19953 20030 20029 Face 42843 24982 24983 25121 Face 42844 25122 25261 25260 Face 42845 25121 25122 25260 Face 42846 25261 25398 25397 Face 42847 23757 24944 24856 Face 42848 25260 25261 25397 Face 42849 24979 24980 25118 Face 42850 25002 22788 23993 Face 42851 23247 23303 23246 Face 42852 25119 25258 25257 Face 42853 23613 23576 27154 Face 42854 22086 23102 22861 Face 42855 9181 3683 9190 Face 42856 25281 20579 21302 Face 42857 25398 25139 23420 Face 42858 25397 25398 23420 Face 42859 25139 23929 11834 Face 42860 23420 25139 11834 Face 42861 31913 32018 31912 Face 42862 25192 23517 11413 Face 42863 23645 24435 24139 Face 42864 25754 25161 24323 Face 42865 701 700 25220 Face 42866 23877 24106 24103 Face 42867 24691 4021 24692 Face 42868 23860 24312 22061 Face 42869 24068 11836 19434 Face 42870 23536 22470 21515 Face 42871 20017 20693 22869 Face 42872 25175 23288 24118 Face 42873 23960 19274 24070 Face 42874 21703 21702 29058 Face 42875 23976 24686 22885 Face 42876 19626 22986 19625 Face 42877 24045 22843 24253 Face 42878 25005 23500 24612 Face 42879 21994 22092 22091 Face 42880 21993 21994 22091 Face 42881 22092 22187 22186 Face 42882 22091 22092 22186 Face 42883 22187 22283 22282 Face 42884 22186 22187 22282 Face 42885 22379 22378 22282 Face 42886 22283 22379 22282 Face 42887 22476 22475 22378 Face 42888 22379 22476 22378 Face 42889 22476 22570 22569 Face 42890 22475 22476 22569 Face 42891 22570 22666 22665 Face 42892 22569 22570 22665 Face 42893 22666 6408 32 Face 42894 22665 22666 32 Face 42895 15158 15026 32 Face 42896 6408 15158 32 Face 42897 219 13458 15026 Face 42898 15158 219 15026 Face 42899 1606 1495 13458 Face 42900 219 1606 13458 Face 42901 14538 14656 1495 Face 42902 1606 14538 1495 Face 42903 15066 22819 22349 Face 42904 14538 15444 14656 Face 42905 21606 11895 24601 Face 42906 12229 15444 14783 Face 42907 22556 24144 24142 Face 42908 24054 24338 24055 Face 42909 23607 21891 22716 Face 42910 24338 23810 19537 Face 42911 4364 12885 12886 Face 42912 22278 23594 22651 Face 42913 17442 19810 17529 Face 42914 12885 11753 15038 Face 42915 21915 21916 22013 Face 42916 22014 22112 22111 Face 42917 22400 22497 22496 Face 42918 22399 22400 22496 Face 42919 12802 13362 13266 Face 42920 13266 13362 2785 Face 42921 13361 8167 11946 Face 42922 13362 13361 11946 Face 42923 12856 13356 13261 Face 42924 12949 12856 13261 Face 42925 12767 9046 13383 Face 42926 14852 12767 13383 Face 42927 16342 12767 14852 Face 42928 16341 16342 14852 Face 42929 18941 20834 20746 Face 42930 431 20711 20710 Face 42931 17271 17180 17181 Face 42932 1984 22342 3161 Face 42933 19054 15972 17899 Face 42934 17140 19145 17040 Face 42935 34696 34548 11385 Face 42936 14054 13977 7949 Face 42937 19954 19879 17608 Face 42938 18521 17860 18052 Face 42939 18173 18172 18078 Face 42940 12116 15334 3637 Face 42941 15307 13817 11156 Face 42942 28688 21466 20737 Face 42943 12586 22615 22520 Face 42944 13297 12586 22520 Face 42945 22615 22522 22234 Face 42946 22520 22615 22234 Face 42947 22522 19764 20058 Face 42948 22234 22522 20058 Face 42949 14314 11003 20058 Face 42950 19764 14314 20058 Face 42951 19640 19639 11003 Face 42952 14314 19640 11003 Face 42953 19640 21958 12475 Face 42954 19639 19640 12475 Face 42955 21958 20834 20922 Face 42956 12475 21958 20922 Face 42957 20834 18940 20922 Face 42958 9504 18996 15874 Face 42959 19975 19976 20052 Face 42960 18839 14644 20558 Face 42961 16031 2779 13068 Face 42962 13081 11354 11435 Face 42963 22320 22324 22132 Face 42964 11141 12820 15043 Face 42965 32144 32248 32143 Face 42966 16217 16378 16216 Face 42967 6012 20819 5072 Face 42968 4755 18463 4623 Face 42969 17832 19338 19311 Face 42970 19496 16900 16993 Face 42971 33032 2949 33278 Face 42972 16186 16348 12857 Face 42973 7158 12380 12288 Face 42974 7580 7158 12288 Face 42975 23118 19345 417 Face 42976 20637 11292 20817 Face 42977 24250 24124 2149 Face 42978 20817 19907 20637 Face 42979 20306 20226 19345 Face 42980 19907 20306 19345 Face 42981 3317 6026 20226 Face 42982 20306 3317 20226 Face 42983 12939 7624 6026 Face 42984 3317 12939 6026 Face 42985 20232 20154 7624 Face 42986 12939 20232 7624 Face 42987 14208 16275 5255 Face 42988 3455 3330 20918 Face 42989 16361 333 439 Face 42990 25428 25429 25467 Face 42991 17170 17260 17259 Face 42992 20302 15462 21560 Face 42993 12860 10886 886 Face 42994 10718 19271 13455 Face 42995 29805 17194 29804 Face 42996 1504 5874 1955 Face 42997 9046 3763 13383 Face 42998 5470 5597 16503 Face 42999 22120 22119 22021 Face 43000 22120 22215 22119 Face 43001 22022 22120 22021 Face 43002 22215 22214 22119 Face 43003 22311 22310 22214 Face 43004 22215 22311 22214 Face 43005 22311 22407 22406 Face 43006 22310 22311 22406 Face 43007 13556 13534 14767 Face 43008 14501 13556 14767 Face 43009 10312 4467 16175 Face 43010 19637 20387 19636 Face 43011 16174 10312 16175 Face 43012 10312 3897 3898 Face 43013 12793 11673 25272 Face 43014 23398 23436 24662 Face 43015 23929 23241 24530 Face 43016 32334 32333 32227 Face 43017 11834 23929 24530 Face 43018 23241 24267 24402 Face 43019 24530 23241 24402 Face 43020 24267 23009 24009 Face 43021 25270 25269 25130 Face 43022 24402 24267 24009 Face 43023 24813 23043 23037 Face 43024 22770 23763 23762 Face 43025 31805 31912 31911 Face 43026 23909 23353 22837 Face 43027 24463 23985 14258 Face 43028 19302 18545 21506 Face 43029 20696 24168 24169 Face 43030 12827 34817 34352 Face 43031 29847 29846 20870 Face 43032 22805 23436 23398 Face 43033 23009 12187 23786 Face 43034 24595 2425 24596 Face 43035 24009 23009 23786 Face 43036 12187 24896 23738 Face 43037 23853 23805 23951 Face 43038 23786 12187 23738 Face 43039 24300 20873 24434 Face 43040 318 24327 22804 Face 43041 20139 13740 24494 Face 43042 24435 24300 24434 Face 43043 25102 25241 25240 Face 43044 24494 24499 23201 Face 43045 24702 24838 24837 Face 43046 23335 24314 24315 Face 43047 23780 20017 22869 Face 43048 23385 24635 24631 Face 43049 24573 24574 22717 Face 43050 22990 24496 20693 Face 43051 24136 25331 24141 Face 43052 23938 23960 24070 Face 43053 21993 29453 21994 Face 43054 23149 25140 25000 Face 43055 21897 21995 21994 Face 43056 22987 20870 25461 Face 43057 21995 22093 22092 Face 43058 21994 21995 22092 Face 43059 22093 22188 22187 Face 43060 22092 22093 22187 Face 43061 22188 22284 22283 Face 43062 22187 22188 22283 Face 43063 22380 22379 22283 Face 43064 22284 22380 22283 Face 43065 22380 22477 22476 Face 43066 22379 22380 22476 Face 43067 22477 22571 22570 Face 43068 22476 22477 22570 Face 43069 22571 22667 22666 Face 43070 22570 22571 22666 Face 43071 22667 754 6408 Face 43072 22666 22667 6408 Face 43073 15159 15158 6408 Face 43074 754 15159 6408 Face 43075 5499 219 15158 Face 43076 15159 5499 15158 Face 43077 1715 1606 219 Face 43078 5499 1715 219 Face 43079 14657 14538 1606 Face 43080 1715 14657 1606 Face 43081 15584 15444 14538 Face 43082 14657 15584 14538 Face 43083 34683 34325 34779 Face 43084 15584 14783 15444 Face 43085 21964 11912 20076 Face 43086 24554 23158 23951 Face 43087 33089 33088 32954 Face 43088 22782 25561 25742 Face 43089 24811 24801 23590 Face 43090 24324 25287 24624 Face 43091 23636 22830 22995 Face 43092 22830 24027 22336 Face 43093 22013 22014 22111 Face 43094 23351 12170 20491 Face 43095 22591 22590 22496 Face 43096 22112 22207 22206 Face 43097 25101 25102 25240 Face 43098 23562 23552 23506 Face 43099 22160 22062 11946 Face 43100 23112 11996 22797 Face 43101 14728 14607 13261 Face 43102 14728 8846 14607 Face 43103 11039 5144 5470 Face 43104 5597 16505 16503 Face 43105 18714 19038 19222 Face 43106 28811 27392 27752 Face 43107 26309 19936 19861 Face 43108 6611 20624 11053 Face 43109 6282 27506 18453 Face 43110 26242 26295 27619 Face 43111 30172 30236 30171 Face 43112 20119 13731 12586 Face 43113 20118 20119 12586 Face 43114 13731 22328 22615 Face 43115 12586 13731 22615 Face 43116 22328 22617 22522 Face 43117 22615 22328 22522 Face 43118 22617 12941 19764 Face 43119 22522 22617 19764 Face 43120 12941 14313 14314 Face 43121 19764 12941 14314 Face 43122 19641 19640 14314 Face 43123 14313 19641 14314 Face 43124 19641 21861 21958 Face 43125 19640 19641 21958 Face 43126 21861 20746 20834 Face 43127 21958 21861 20834 Face 43128 21755 28544 21380 Face 43129 15425 15424 15288 Face 43130 19403 12942 2664 Face 43131 20052 20053 20134 Face 43132 3694 14059 5203 Face 43133 19279 16031 13068 Face 43134 12942 19403 19386 Face 43135 19413 20741 10886 Face 43136 16379 20232 16542 Face 43137 22228 22037 22134 Face 43138 19963 17618 17529 Face 43139 17518 17608 19879 Face 43140 16503 16505 16341 Face 43141 2634 16658 11039 Face 43142 3763 16186 12857 Face 43143 33308 11298 16348 Face 43144 16174 16175 13632 Face 43145 13726 16174 13632 Face 43146 20469 20817 15885 Face 43147 25781 25780 30533 Face 43148 20063 19907 20817 Face 43149 20469 20063 20817 Face 43150 20391 20306 19907 Face 43151 20063 20391 19907 Face 43152 21666 3317 20306 Face 43153 20391 21666 20306 Face 43154 16512 12939 3317 Face 43155 21666 16512 3317 Face 43156 5530 19120 18614 Face 43157 17951 17867 17861 Face 43158 23770 19931 19932 Face 43159 18720 20571 18317 Face 43160 17088 19664 19663 Face 43161 20297 17990 20296 Face 43162 19898 19897 19821 Face 43163 17528 17527 17442 Face 43164 18941 18944 18940 Face 43165 10843 9414 8215 Face 43166 30806 30805 30706 Face 43167 18796 14809 22602 Face 43168 16505 16342 16341 Face 43169 9870 3184 2634 Face 43170 16504 16183 15308 Face 43171 19541 16504 15308 Face 43172 5143 12432 13724 Face 43173 8167 22160 11946 Face 43174 21363 13728 21297 Face 43175 13728 20453 9270 Face 43176 20387 21363 20382 Face 43177 20453 20452 9270 Face 43178 21363 21297 20382 Face 43179 13728 9270 21297 Face 43180 24172 24052 20785 Face 43181 21319 6679 28438 Face 43182 13101 24377 24376 Face 43183 25289 22625 24065 Face 43184 24662 24663 23604 Face 43185 23571 24432 25223 Face 43186 13066 23043 24814 Face 43187 24663 21609 23604 Face 43188 25320 25187 19941 Face 43189 25098 25237 25236 Face 43190 23762 23763 24936 Face 43191 24363 21051 20958 Face 43192 22805 21566 22838 Face 43193 20781 24073 25300 Face 43194 25247 25384 25383 Face 43195 23008 22784 24385 Face 43196 11253 23368 23003 Face 43197 24781 24643 23106 Face 43198 24526 22162 23439 Face 43199 24499 23202 23201 Face 43200 24300 24169 20873 Face 43201 21327 21326 25267 Face 43202 23805 23806 23951 Face 43203 21637 22555 29802 Face 43204 24896 22893 22796 Face 43205 23738 24896 22796 Face 43206 22893 23638 23293 Face 43207 22796 22893 23293 Face 43208 19380 23901 24552 Face 43209 26309 19861 19782 Face 43210 22555 22459 29802 Face 43211 24169 24170 20873 Face 43212 24631 13740 20139 Face 43213 24968 24969 25107 Face 43214 21210 22530 25137 Face 43215 20017 22990 20693 Face 43216 18728 18738 33422 Face 43217 22997 23960 23938 Face 43218 31914 31913 31806 Face 43219 11811 19434 23830 Face 43220 22717 22997 23938 Face 43221 34120 34119 33994 Face 43222 20603 24208 21325 Face 43223 21802 21898 21897 Face 43224 33995 34120 33994 Face 43225 21898 21996 21995 Face 43226 21897 21898 21995 Face 43227 21996 22094 22093 Face 43228 21995 21996 22093 Face 43229 22094 22189 22188 Face 43230 22093 22094 22188 Face 43231 22189 22285 22284 Face 43232 22188 22189 22284 Face 43233 22285 22381 22380 Face 43234 22284 22285 22380 Face 43235 22381 22478 22477 Face 43236 22380 22381 22477 Face 43237 22478 22572 22571 Face 43238 22477 22478 22571 Face 43239 22572 22668 22667 Face 43240 22571 22572 22667 Face 43241 22668 8569 754 Face 43242 22667 22668 754 Face 43243 15295 15159 754 Face 43244 8569 15295 754 Face 43245 3445 5499 15159 Face 43246 15295 3445 15159 Face 43247 15582 1715 5499 Face 43248 3445 15582 5499 Face 43249 14658 14657 1715 Face 43250 15582 14658 1715 Face 43251 15585 15584 14657 Face 43252 14658 15585 14657 Face 43253 14662 14783 15584 Face 43254 15585 14662 15584 Face 43255 32020 32019 31914 Face 43256 14662 14420 14783 Face 43257 23200 22798 23146 Face 43258 30965 30964 30863 Face 43259 22798 24324 24491 Face 43260 25287 12342 24624 Face 43261 22995 22830 22336 Face 43262 24027 24893 24412 Face 43263 4364 25361 12885 Face 43264 12886 12885 15038 Face 43265 25217 22676 20787 Face 43266 24948 24949 22178 Face 43267 24165 24044 24254 Face 43268 24827 24828 24962 Face 43269 14909 12547 21394 Face 43270 21394 21027 12978 Face 43271 21115 23074 23076 Face 43272 25365 21964 11911 Face 43273 15868 3184 16019 Face 43274 23524 20515 24149 Face 43275 15976 4605 151 Face 43276 15620 11302 11043 Face 43277 23960 24078 19274 Face 43278 24505 22858 202 Face 43279 23421 24914 24130 Face 43280 12622 21488 314 Face 43281 30757 30863 30756 Face 43282 22881 24325 24031 Face 43283 34744 34484 18421 Face 43284 24091 24214 20096 Face 43285 11144 22708 27641 Face 43286 24552 23137 19700 Face 43287 23174 23232 24091 Face 43288 23626 20319 23293 Face 43289 12547 21027 21394 Face 43290 23638 23626 23293 Face 43291 23431 23671 20319 Face 43292 23626 23431 20319 Face 43293 23457 23558 23671 Face 43294 30659 30658 30564 Face 43295 34800 20816 20118 Face 43296 20120 3051 13731 Face 43297 20119 20120 13731 Face 43298 3051 22232 22328 Face 43299 13731 3051 22328 Face 43300 22232 19935 22617 Face 43301 22328 22232 22617 Face 43302 19935 3702 12941 Face 43303 22617 19935 12941 Face 43304 10796 14313 12941 Face 43305 3702 10796 12941 Face 43306 10796 19642 19641 Face 43307 14313 10796 19641 Face 43308 19642 21764 21861 Face 43309 19641 19642 21861 Face 43310 21764 20654 20746 Face 43311 21861 21764 20746 Face 43312 24813 24812 24219 Face 43313 18941 20746 20654 Face 43314 12456 19413 4710 Face 43315 17140 19171 17853 Face 43316 19279 13068 13829 Face 43317 14059 19279 13829 Face 43318 21666 5874 16512 Face 43319 19656 19655 19572 Face 43320 13739 3694 13738 Face 43321 19760 19801 20546 Face 43322 19312 17507 17594 Face 43323 19596 17664 20736 Face 43324 5144 5597 5470 Face 43325 3184 9870 16019 Face 43326 2643 4323 19541 Face 43327 58 2758 19455 Face 43328 20469 15885 19348 Face 43329 23115 21101 19348 Face 43330 20729 20469 19348 Face 43331 19316 20729 19348 Face 43332 21096 20063 20469 Face 43333 20729 21096 20469 Face 43334 20477 20391 20063 Face 43335 21096 20477 20063 Face 43336 19350 21666 20391 Face 43337 20477 19350 20391 Face 43338 16512 5874 116 Face 43339 34260 12023 34259 Face 43340 13590 9956 13494 Face 43341 7735 8540 7585 Face 43342 16031 12615 2779 Face 43343 12708 12618 14479 Face 43344 23391 25847 25848 Face 43345 19976 19975 19897 Face 43346 20548 21842 21838 Face 43347 21842 6012 21838 Face 43348 17731 19172 16949 Face 43349 18081 18080 20379 Face 43350 17138 17532 18797 Face 43351 16658 5144 11039 Face 43352 3184 16658 2634 Face 43353 13356 14728 13261 Face 43354 8846 14300 14607 Face 43355 16338 16334 22062 Face 43356 12258 12895 12802 Face 43357 13169 22621 20920 Face 43358 20920 22621 19359 Face 43359 13168 13169 20920 Face 43360 22621 19439 19359 Face 43361 19439 12412 14373 Face 43362 19359 19439 14373 Face 43363 24977 25116 25115 Face 43364 4617 15088 15095 Face 43365 11667 23643 23352 Face 43366 20159 20079 23880 Face 43367 15735 23571 25223 Face 43368 24549 23186 23809 Face 43369 23604 21609 24618 Face 43370 23201 23202 15735 Face 43371 24618 24619 22879 Face 43372 24619 23708 22879 Face 43373 22879 23708 24139 Face 43374 23708 23645 24139 Face 43375 6775 33665 6680 Face 43376 24435 24434 24139 Face 43377 20344 20431 20430 Face 43378 20430 20431 20517 Face 43379 20519 20520 27475 Face 43380 20517 20518 27474 Face 43381 25013 24532 23204 Face 43382 16332 24699 24698 Face 43383 27498 29601 34436 Face 43384 24617 23259 21415 Face 43385 23431 23457 23671 Face 43386 21506 23679 25032 Face 43387 23374 23375 23558 Face 43388 23457 23374 23558 Face 43389 21412 24592 24003 Face 43390 23374 22802 23471 Face 43391 17631 19982 18437 Face 43392 24570 24569 23250 Face 43393 24305 23962 22707 Face 43394 28676 28675 21329 Face 43395 21330 21423 21422 Face 43396 21422 21517 28806 Face 43397 21423 21518 21517 Face 43398 31808 31915 31807 Face 43399 28932 21517 29060 Face 43400 28806 21517 28932 Face 43401 21611 21706 21705 Face 43402 25976 23774 23627 Face 43403 21706 21803 21802 Face 43404 21705 21706 21802 Face 43405 21803 21899 21898 Face 43406 21802 21803 21898 Face 43407 21899 21997 21996 Face 43408 21898 21899 21996 Face 43409 21997 22095 22094 Face 43410 21996 21997 22094 Face 43411 22095 22190 22189 Face 43412 22094 22095 22189 Face 43413 22190 22286 22285 Face 43414 22189 22190 22285 Face 43415 22286 22382 22381 Face 43416 22285 22286 22381 Face 43417 22382 22479 22478 Face 43418 22381 22382 22478 Face 43419 22479 22573 22572 Face 43420 22478 22479 22572 Face 43421 22573 22669 22668 Face 43422 22572 22573 22668 Face 43423 9208 8569 22668 Face 43424 22669 9208 22668 Face 43425 15296 15295 8569 Face 43426 9208 15296 8569 Face 43427 9774 3445 15295 Face 43428 15296 9774 15295 Face 43429 15724 15582 3445 Face 43430 9774 15724 3445 Face 43431 14779 14658 15582 Face 43432 15724 14779 15582 Face 43433 15728 15585 14658 Face 43434 14779 15728 14658 Face 43435 14661 14662 15585 Face 43436 15728 14661 15585 Face 43437 14422 14420 14662 Face 43438 14661 14422 14662 Face 43439 12230 14664 14420 Face 43440 14422 12230 14420 Face 43441 30864 30965 30863 Face 43442 12230 12206 14664 Face 43443 22336 24027 24412 Face 43444 25634 25633 24038 Face 43445 31367 31366 31263 Face 43446 5765 11007 28419 Face 43447 26683 11728 11648 Face 43448 12032 16188 10225 Face 43449 11570 11571 26683 Face 43450 31264 31367 31263 Face 43451 24050 25194 25055 Face 43452 19202 5889 11934 Face 43453 22686 24995 24309 Face 43454 23278 23337 23381 Face 43455 25281 24633 20579 Face 43456 21393 21115 23076 Face 43457 20015 58 19455 Face 43458 15442 16354 13742 Face 43459 23290 23178 22813 Face 43460 17781 17580 17755 Face 43461 21793 22814 24480 Face 43462 24774 20018 24480 Face 43463 23076 23074 24429 Face 43464 21115 20935 23074 Face 43465 25331 25196 24141 Face 43466 23063 24431 24430 Face 43467 23349 25182 24421 Face 43468 25234 25235 25371 Face 43469 24684 23251 24679 Face 43470 23615 24768 22704 Face 43471 15861 15862 16013 Face 43472 14844 14720 14845 Face 43473 12611 24804 22870 Face 43474 25196 25057 24137 Face 43475 24914 24131 24130 Face 43476 25226 1604 25227 Face 43477 23912 23520 23519 Face 43478 24596 22725 24595 Face 43479 22768 23762 23751 Face 43480 23843 23912 23519 Face 43481 19302 21506 24907 Face 43482 16496 16655 16495 Face 43483 24214 13642 20096 Face 43484 12674 19302 24907 Face 43485 24432 21011 25223 Face 43486 21581 23232 23174 Face 43487 25144 24183 24182 Face 43488 25145 25144 24182 Face 43489 23375 23374 23471 Face 43490 11429 23465 22768 Face 43491 31473 31582 31472 Face 43492 23471 22802 16964 Face 43493 11751 23320 23312 Face 43494 23788 22905 20158 Face 43495 22608 21839 20120 Face 43496 25427 25464 25463 Face 43497 21839 9760 3051 Face 43498 20120 21839 3051 Face 43499 9760 22136 22232 Face 43500 3051 9760 22232 Face 43501 22136 21944 19935 Face 43502 22232 22136 19935 Face 43503 21944 16520 3702 Face 43504 19935 21944 3702 Face 43505 13539 10796 3702 Face 43506 16520 13539 3702 Face 43507 13539 21083 19642 Face 43508 10796 13539 19642 Face 43509 21083 21668 21764 Face 43510 19642 21083 21764 Face 43511 20566 20654 21764 Face 43512 21668 20566 21764 Face 43513 20566 20565 19668 Face 43514 20654 20566 19668 Face 43515 118 11917 20065 Face 43516 25845 23915 23417 Face 43517 19740 19823 19739 Face 43518 12615 4087 2779 Face 43519 6012 5072 21838 Face 43520 21666 19350 5874 Face 43521 19880 19843 19386 Face 43522 26302 29582 28143 Face 43523 18412 18352 27160 Face 43524 18191 20488 17453 Face 43525 31473 31472 31368 Face 43526 13536 13441 16019 Face 43527 2787 19316 21101 Face 43528 20564 13730 20652 Face 43529 7741 19316 2787 Face 43530 13730 7741 2787 Face 43531 20818 20729 19316 Face 43532 7741 20818 19316 Face 43533 21188 21096 20729 Face 43534 20818 21188 20729 Face 43535 20742 20477 21096 Face 43536 21188 20742 21096 Face 43537 19753 19350 20477 Face 43538 20742 19753 20477 Face 43539 25428 25467 25466 Face 43540 21465 31220 20554 Face 43541 10693 18841 11038 Face 43542 19822 19821 19738 Face 43543 18408 18311 1722 Face 43544 19682 4751 19599 Face 43545 3162 21002 21001 Face 43546 15163 22613 22518 Face 43547 16987 19482 17080 Face 43548 25224 696 25086 Face 43549 15242 15377 15241 Face 43550 23983 24334 21660 Face 43551 25132 15290 15289 Face 43552 12588 8936 8846 Face 43553 22784 24781 23106 Face 43554 12172 12258 12802 Face 43555 12895 13361 13362 Face 43556 12712 12802 13266 Face 43557 13362 11946 2785 Face 43558 22497 22591 22496 Face 43559 22208 22304 22303 Face 43560 15156 15025 14226 Face 43561 163 15156 14226 Face 43562 19866 19942 26554 Face 43563 25175 23780 23288 Face 43564 24706 24842 24841 Face 43565 24251 2149 11453 Face 43566 24426 24269 24333 Face 43567 23358 22181 23309 Face 43568 20101 20179 20100 Face 43569 23898 24803 20607 Face 43570 20101 20180 20179 Face 43571 26898 20179 27011 Face 43572 20180 20262 20261 Face 43573 6775 6680 6776 Face 43574 20262 20345 20344 Face 43575 20261 20262 20344 Face 43576 20345 20432 20431 Face 43577 20344 20345 20431 Face 43578 20432 20519 20518 Face 43579 20431 20432 20518 Face 43580 23744 23730 23979 Face 43581 24278 23981 22677 Face 43582 22680 22145 26306 Face 43583 20141 24396 23231 Face 43584 22749 21792 21791 Face 43585 23137 23179 23133 Face 43586 20321 22722 22374 Face 43587 12190 24463 14258 Face 43588 24356 23187 23622 Face 43589 23679 24998 25032 Face 43590 21100 24674 24812 Face 43591 25225 25362 25361 Face 43592 21239 21331 21330 Face 43593 21238 21239 21330 Face 43594 21331 21424 21423 Face 43595 21330 21331 21423 Face 43596 21424 21519 21518 Face 43597 21423 21424 21518 Face 43598 21519 21612 21611 Face 43599 21518 21519 21611 Face 43600 21612 21707 21706 Face 43601 21611 21612 21706 Face 43602 21707 21804 21803 Face 43603 21706 21707 21803 Face 43604 21804 21900 21899 Face 43605 21803 21804 21899 Face 43606 21900 21998 21997 Face 43607 21899 21900 21997 Face 43608 21998 22096 22095 Face 43609 21997 21998 22095 Face 43610 22096 22191 22190 Face 43611 22095 22096 22190 Face 43612 22191 22287 22286 Face 43613 22190 22191 22286 Face 43614 22287 22383 22382 Face 43615 22286 22287 22382 Face 43616 22383 22480 22479 Face 43617 22382 22383 22479 Face 43618 22480 22574 22573 Face 43619 22479 22480 22573 Face 43620 22574 22670 22669 Face 43621 22573 22574 22669 Face 43622 10099 9208 22669 Face 43623 22670 10099 22669 Face 43624 15866 15296 9208 Face 43625 10099 15866 9208 Face 43626 13254 9774 15296 Face 43627 15866 13254 15296 Face 43628 12025 15724 9774 Face 43629 13254 12025 9774 Face 43630 12025 14780 14779 Face 43631 15724 12025 14779 Face 43632 15872 15728 14779 Face 43633 14780 15872 14779 Face 43634 13164 14661 15728 Face 43635 15872 13164 15728 Face 43636 14542 14422 14661 Face 43637 13164 14542 14661 Face 43638 16182 12230 14422 Face 43639 14542 16182 14422 Face 43640 11098 12206 12230 Face 43641 16182 11098 12230 Face 43642 16029 3679 12206 Face 43643 11098 16029 12206 Face 43644 5508 12032 3679 Face 43645 16029 5508 3679 Face 43646 22545 16188 12032 Face 43647 5508 22545 12032 Face 43648 15173 14789 16188 Face 43649 22545 15173 16188 Face 43650 11934 5889 14789 Face 43651 15173 11934 14789 Face 43652 21328 22937 21676 Face 43653 30409 30480 30408 Face 43654 23074 24430 24429 Face 43655 30277 30344 30276 Face 43656 25042 23824 25281 Face 43657 12534 22766 20692 Face 43658 20579 25009 11668 Face 43659 23824 24633 25281 Face 43660 24429 24430 23657 Face 43661 25009 25011 11668 Face 43662 22813 23458 23395 Face 43663 24430 24774 23657 Face 43664 23074 23063 24430 Face 43665 24431 20018 24774 Face 43666 23245 24564 23243 Face 43667 24563 24564 24272 Face 43668 23251 24570 23250 Face 43669 24570 23846 23680 Face 43670 22924 24945 22176 Face 43671 24778 24640 22763 Face 43672 25295 22725 24060 Face 43673 24577 23931 23432 Face 43674 24000 22689 24466 Face 43675 24347 24218 24873 Face 43676 25359 24538 22652 Face 43677 23412 23411 11254 Face 43678 2688 24595 24594 Face 43679 24914 23421 23426 Face 43680 22748 22768 23751 Face 43681 25295 24595 22725 Face 43682 25032 24998 6810 Face 43683 13984 24576 22177 Face 43684 24396 21581 23174 Face 43685 24907 21506 23549 Face 43686 22870 22828 25354 Face 43687 23232 24214 24091 Face 43688 24833 24834 24968 Face 43689 24764 12183 12611 Face 43690 25198 24090 20580 Face 43691 23857 25161 25753 Face 43692 23465 22770 22768 Face 43693 24084 24261 24065 Face 43694 20120 26473 22608 Face 43695 24577 23432 21697 Face 43696 21840 16018 9760 Face 43697 21839 21840 9760 Face 43698 16018 21747 22136 Face 43699 9760 16018 22136 Face 43700 21747 21847 21944 Face 43701 22136 21747 21944 Face 43702 21847 20057 16520 Face 43703 21944 21847 16520 Face 43704 14603 13539 16520 Face 43705 20057 14603 16520 Face 43706 14603 21176 21083 Face 43707 13539 14603 21083 Face 43708 21176 21574 21668 Face 43709 21083 21176 21668 Face 43710 19885 20566 21668 Face 43711 21574 19885 21668 Face 43712 18625 19988 17405 Face 43713 20566 19885 20565 Face 43714 12615 19417 19403 Face 43715 18081 20379 20380 Face 43716 22611 12560 17769 Face 43717 20823 17690 18317 Face 43718 19437 13727 1551 Face 43719 3762 4602 14432 Face 43720 18935 18635 17395 Face 43721 29411 29542 22270 Face 43722 13441 15868 16019 Face 43723 13630 13629 13536 Face 43724 9281 9280 24356 Face 43725 20564 22436 22339 Face 43726 13253 13730 20564 Face 43727 20393 13253 20564 Face 43728 22422 7741 13730 Face 43729 13253 22422 13730 Face 43730 20735 20818 7741 Face 43731 22422 20735 7741 Face 43732 21280 21188 20818 Face 43733 20735 21280 20818 Face 43734 20830 20742 21188 Face 43735 21280 20830 21188 Face 43736 19837 19753 20742 Face 43737 20830 19837 20742 Face 43738 28544 21755 13535 Face 43739 31266 31265 31164 Face 43740 22320 22416 22324 Face 43741 22343 19058 18840 Face 43742 13829 13830 10733 Face 43743 4602 14431 14432 Face 43744 26175 26293 26292 Face 43745 19753 19837 4109 Face 43746 24826 24961 24960 Face 43747 25387 24396 20141 Face 43748 34016 34015 33889 Face 43749 25246 25247 25383 Face 43750 19461 24013 23954 Face 43751 25982 19381 19462 Face 43752 12802 12895 13362 Face 43753 19542 19624 22822 Face 43754 22062 21965 2785 Face 43755 11946 22062 2785 Face 43756 22207 22208 22303 Face 43757 22113 22208 22207 Face 43758 23782 27167 27280 Face 43759 23154 19706 19789 Face 43760 19868 19867 19788 Face 43761 19789 19868 19788 Face 43762 19943 19942 19867 Face 43763 19868 19943 19867 Face 43764 29346 25023 29216 Face 43765 19943 20020 19942 Face 43766 20102 20101 20019 Face 43767 20020 20102 20019 Face 43768 20102 20181 20180 Face 43769 20101 20102 20180 Face 43770 20181 20263 20262 Face 43771 20180 20181 20262 Face 43772 20263 20346 20345 Face 43773 20262 20263 20345 Face 43774 20346 20433 20432 Face 43775 20345 20346 20432 Face 43776 20520 20521 20608 Face 43777 20432 20433 20519 Face 43778 34283 34596 34722 Face 43779 23737 23740 24889 Face 43780 24706 24707 24842 Face 43781 23782 24466 27279 Face 43782 24843 24978 24977 Face 43783 22463 25157 24759 Face 43784 22047 24747 22793 Face 43785 23320 24614 24610 Face 43786 28267 28266 21056 Face 43787 25135 23863 25038 Face 43788 21057 21147 21146 Face 43789 28403 21146 21147 Face 43790 21147 21240 21239 Face 43791 21240 21332 21331 Face 43792 21239 21240 21331 Face 43793 21332 21425 21424 Face 43794 21331 21332 21424 Face 43795 21425 21520 21519 Face 43796 21424 21425 21519 Face 43797 21520 21613 21612 Face 43798 21519 21520 21612 Face 43799 21613 21708 21707 Face 43800 21612 21613 21707 Face 43801 21708 21805 21804 Face 43802 21707 21708 21804 Face 43803 21805 21901 21900 Face 43804 21804 21805 21900 Face 43805 21901 21999 21998 Face 43806 21900 21901 21998 Face 43807 21999 22097 22096 Face 43808 21998 21999 22096 Face 43809 22097 22192 22191 Face 43810 22096 22097 22191 Face 43811 22192 22288 22287 Face 43812 22191 22192 22287 Face 43813 22288 22384 22383 Face 43814 22287 22288 22383 Face 43815 22384 22481 22480 Face 43816 22383 22384 22480 Face 43817 22481 22575 22574 Face 43818 22480 22481 22574 Face 43819 22671 22670 22574 Face 43820 22575 22671 22574 Face 43821 12938 10099 22670 Face 43822 22671 12938 22670 Face 43823 15721 15866 10099 Face 43824 12938 15721 10099 Face 43825 13348 13254 15866 Face 43826 15721 13348 15866 Face 43827 13348 3973 12025 Face 43828 13254 13348 12025 Face 43829 3973 14904 14780 Face 43830 12025 3973 14780 Face 43831 16024 15872 14780 Face 43832 14904 16024 14780 Face 43833 13257 13164 15872 Face 43834 16024 13257 15872 Face 43835 14543 14542 13164 Face 43836 13257 14543 13164 Face 43837 11857 16182 14542 Face 43838 14543 11857 14542 Face 43839 8571 11098 16182 Face 43840 11857 8571 16182 Face 43841 14913 16029 11098 Face 43842 8571 14913 11098 Face 43843 12764 5508 16029 Face 43844 14913 12764 16029 Face 43845 22639 22545 5508 Face 43846 12764 22639 5508 Face 43847 15041 15173 22545 Face 43848 22639 15041 22545 Face 43849 11950 11934 15173 Face 43850 15041 11950 15173 Face 43851 30565 30564 30479 Face 43852 12943 11950 15041 Face 43853 25228 25365 25364 Face 43854 25227 25228 25364 Face 43855 20076 23823 23949 Face 43856 31312 31311 31209 Face 43857 23623 22929 24781 Face 43858 21486 21888 23526 Face 43859 23965 23936 23935 Face 43860 22998 19618 13984 Face 43861 24480 22813 23395 Face 43862 23178 23234 23458 Face 43863 8781 11494 1898 Face 43864 1583 3075 24685 Face 43865 23245 23243 24451 Face 43866 24564 24465 24272 Face 43867 24569 24570 23680 Face 43868 23846 23935 23934 Face 43869 23935 24397 23897 Face 43870 23680 23846 23934 Face 43871 24397 22256 23099 Face 43872 23934 23935 23897 Face 43873 23897 24397 23099 Face 43874 23411 11327 11254 Face 43875 24862 23194 25316 Face 43876 12620 24862 25316 Face 43877 31162 31161 31062 Face 43878 23255 24572 24571 Face 43879 21487 21394 25056 Face 43880 23254 23255 24571 Face 43881 23396 23195 23679 Face 43882 24942 15450 24580 Face 43883 22470 23327 23324 Face 43884 13263 22470 23324 Face 43885 24730 23443 23595 Face 43886 22848 24916 23057 Face 43887 24457 22989 22860 Face 43888 24446 24584 23313 Face 43889 24824 24959 24958 Face 43890 23561 22749 11140 Face 43891 21840 22608 27383 Face 43892 31162 31263 31161 Face 43893 21746 16018 21840 Face 43894 21841 21746 21840 Face 43895 21746 21650 21747 Face 43896 16018 21746 21747 Face 43897 21650 21749 21847 Face 43898 21747 21650 21847 Face 43899 21749 1122 20057 Face 43900 21847 21749 20057 Face 43901 22417 14603 20057 Face 43902 1122 22417 20057 Face 43903 22417 22428 21176 Face 43904 14603 22417 21176 Face 43905 21481 21574 21176 Face 43906 22428 21481 21176 Face 43907 21481 2105 19885 Face 43908 21574 21481 19885 Face 43909 17244 17154 17245 Face 43910 14941 13553 13647 Face 43911 20570 20627 21843 Face 43912 4087 12615 19403 Face 43913 11947 9447 1543 Face 43914 18126 17987 19508 Face 43915 12277 12987 12986 Face 43916 21646 17488 17359 Face 43917 23039 20904 3940 Face 43918 34769 34386 34643 Face 43919 22244 20393 22339 Face 43920 13629 13441 13536 Face 43921 20392 20393 22244 Face 43922 22148 20392 22244 Face 43923 2148 13253 20393 Face 43924 20392 2148 20393 Face 43925 20903 22422 13253 Face 43926 2148 20903 13253 Face 43927 20730 20735 22422 Face 43928 20903 20730 22422 Face 43929 20730 3455 20735 Face 43930 140 3455 20730 Face 43931 20918 20830 21280 Face 43932 20488 18191 19845 Face 43933 19354 19355 18413 Face 43934 21143 20178 23882 Face 43935 14431 12277 12459 Face 43936 4754 14430 13818 Face 43937 12502 3762 14916 Face 43938 14432 14431 12459 Face 43939 12987 11732 8259 Face 43940 12459 12277 12986 Face 43941 25042 25281 22080 Face 43942 7735 7585 8774 Face 43943 25136 23305 25082 Face 43944 25401 24086 23794 Face 43945 19463 19462 19382 Face 43946 16678 32213 32320 Face 43947 19543 19542 19462 Face 43948 19463 19543 19462 Face 43949 16334 16335 21965 Face 43950 32019 32123 32018 Face 43951 19707 19789 19706 Face 43952 32123 32227 32226 Face 43953 19790 19789 19707 Face 43954 19708 19790 19707 Face 43955 19869 19868 19789 Face 43956 19790 19869 19789 Face 43957 19944 19943 19868 Face 43958 19869 19944 19868 Face 43959 20021 20020 19943 Face 43960 19944 20021 19943 Face 43961 20103 20102 20020 Face 43962 20021 20103 20020 Face 43963 20103 20182 20181 Face 43964 20102 20103 20181 Face 43965 20182 20264 20263 Face 43966 20181 20182 20263 Face 43967 20264 20347 20346 Face 43968 20263 20264 20346 Face 43969 20347 20434 20433 Face 43970 20346 20347 20433 Face 43971 20434 20521 20520 Face 43972 20433 20434 20520 Face 43973 30866 30865 30759 Face 43974 20609 27596 20608 Face 43975 24842 24843 24977 Face 43976 23368 22898 23003 Face 43977 23790 23496 23662 Face 43978 24640 24505 202 Face 43979 21056 20964 21057 Face 43980 22722 22721 22374 Face 43981 20965 21058 21057 Face 43982 20964 20965 21057 Face 43983 21058 21148 21147 Face 43984 21057 21058 21147 Face 43985 21148 21241 21240 Face 43986 21147 21148 21240 Face 43987 21241 21333 21332 Face 43988 21240 21241 21332 Face 43989 21333 21426 21425 Face 43990 21332 21333 21425 Face 43991 21426 21521 21520 Face 43992 21425 21426 21520 Face 43993 21521 21614 21613 Face 43994 21520 21521 21613 Face 43995 21614 21709 21708 Face 43996 21613 21614 21708 Face 43997 21709 21806 21805 Face 43998 21708 21709 21805 Face 43999 21806 21902 21901 Face 44000 21805 21806 21901 Face 44001 21902 22000 21999 Face 44002 21901 21902 21999 Face 44003 22000 22098 22097 Face 44004 21999 22000 22097 Face 44005 22098 22193 22192 Face 44006 22097 22098 22192 Face 44007 22193 22289 22288 Face 44008 22192 22193 22288 Face 44009 22289 22385 22384 Face 44010 22288 22289 22384 Face 44011 22385 22482 22481 Face 44012 22384 22385 22481 Face 44013 22482 22576 22575 Face 44014 22481 22482 22575 Face 44015 22576 22672 22671 Face 44016 22575 22576 22671 Face 44017 14893 12938 22671 Face 44018 22672 14893 22671 Face 44019 15720 15721 12938 Face 44020 14893 15720 12938 Face 44021 13442 13348 15721 Face 44022 15720 13442 15721 Face 44023 14778 3973 13348 Face 44024 13442 14778 13348 Face 44025 14778 16511 14904 Face 44026 3973 14778 14904 Face 44027 16025 16024 14904 Face 44028 16511 16025 14904 Face 44029 13352 13257 16024 Face 44030 16025 13352 16024 Face 44031 2502 14543 13257 Face 44032 13352 2502 13257 Face 44033 11940 11857 14543 Face 44034 2502 11940 14543 Face 44035 12103 8571 11857 Face 44036 11940 12103 11857 Face 44037 12145 14913 8571 Face 44038 12103 12145 8571 Face 44039 11293 12764 14913 Face 44040 12145 11293 14913 Face 44041 22544 22639 12764 Face 44042 11293 22544 12764 Face 44043 15174 15041 22639 Face 44044 22544 15174 22639 Face 44045 13546 15174 15310 Face 44046 29057 29058 21702 Face 44047 12978 24050 25055 Face 44048 25194 25149 22687 Face 44049 11911 14509 23129 Face 44050 12791 11911 23129 Face 44051 25226 25227 25363 Face 44052 25364 11911 12791 Face 44053 25055 25194 22687 Face 44054 25363 25364 12791 Face 44055 23540 23352 23624 Face 44056 23352 22061 23624 Face 44057 24950 23440 23437 Face 44058 477 478 91 Face 44059 23002 25279 25189 Face 44060 23556 25153 22988 Face 44061 24293 24451 23243 Face 44062 24564 24563 23243 Face 44063 24502 21360 24997 Face 44064 24684 24679 25278 Face 44065 24937 24503 21046 Face 44066 22885 25278 24997 Face 44067 23294 20867 24858 Face 44068 33097 33096 32962 Face 44069 22256 24026 24128 Face 44070 24647 24785 6159 Face 44071 26585 26470 11653 Face 44072 22885 24684 25278 Face 44073 24592 24054 10842 Face 44074 24347 24761 24218 Face 44075 24269 24426 12620 Face 44076 19500 21837 23537 Face 44077 24196 22996 24341 Face 44078 25039 22724 23611 Face 44079 24638 11593 25158 Face 44080 24618 22879 23258 Face 44081 23327 24631 24621 Face 44082 23470 23389 24481 Face 44083 22470 13263 22992 Face 44084 21515 22470 22992 Face 44085 30866 30967 30865 Face 44086 30275 30274 30209 Face 44087 27696 14850 21841 Face 44088 22338 15034 20991 Face 44089 21938 21841 14850 Face 44090 15034 21938 14850 Face 44091 21844 21746 21841 Face 44092 21938 21844 21841 Face 44093 13637 21650 21746 Face 44094 21844 13637 21746 Face 44095 13637 21652 21749 Face 44096 21650 13637 21749 Face 44097 21652 14316 1122 Face 44098 21749 21652 1122 Face 44099 14316 20656 22417 Face 44100 1122 14316 22417 Face 44101 22524 22428 22417 Face 44102 20656 22524 22417 Face 44103 21387 21481 22428 Face 44104 22524 21387 22428 Face 44105 21387 11038 2105 Face 44106 21481 21387 2105 Face 44107 19662 19663 19745 Face 44108 12560 15580 17950 Face 44109 19417 19388 19387 Face 44110 29281 29280 29150 Face 44111 14902 15164 11436 Face 44112 12986 12987 8259 Face 44113 18034 18936 22508 Face 44114 1984 22247 22342 Face 44115 9045 12413 13630 Face 44116 12413 13629 13630 Face 44117 20698 20961 23790 Face 44118 33377 33510 33376 Face 44119 20307 20392 22148 Face 44120 22050 20307 22148 Face 44121 16356 2148 20392 Face 44122 20307 16356 20392 Face 44123 19317 20903 2148 Face 44124 16356 19317 2148 Face 44125 20906 20730 20903 Face 44126 19317 20906 20903 Face 44127 17496 26076 18058 Face 44128 218 151 8568 Face 44129 29412 29411 29280 Face 44130 22313 22409 22312 Face 44131 11732 11435 11436 Face 44132 24681 20698 23790 Face 44133 8259 11732 11436 Face 44134 30083 30145 30144 Face 44135 19827 19826 19743 Face 44136 18254 23379 29614 Face 44137 18586 18841 19123 Face 44138 20698 23518 23513 Face 44139 25145 24182 24181 Face 44140 20961 20698 23513 Face 44141 19382 19381 25877 Face 44142 25360 23308 23306 Face 44143 19544 19543 19463 Face 44144 19464 19544 19463 Face 44145 19625 19624 19543 Face 44146 19544 19625 19543 Face 44147 19709 19708 19624 Face 44148 22112 22113 22207 Face 44149 19791 19790 19708 Face 44150 19709 19791 19708 Face 44151 19870 19869 19790 Face 44152 19791 19870 19790 Face 44153 19945 19944 19869 Face 44154 19870 19945 19869 Face 44155 20022 20021 19944 Face 44156 19945 20022 19944 Face 44157 20104 20103 20021 Face 44158 20022 20104 20021 Face 44159 20104 20183 20182 Face 44160 20103 20104 20182 Face 44161 20183 20265 20264 Face 44162 20182 20183 20264 Face 44163 20265 20348 20347 Face 44164 20264 20265 20347 Face 44165 20348 20435 20434 Face 44166 20347 20348 20434 Face 44167 20435 20522 20521 Face 44168 20434 20435 20521 Face 44169 30760 30866 30759 Face 44170 20521 20522 20609 Face 44171 23518 24718 24716 Face 44172 20788 20789 27862 Face 44173 20789 20876 20875 Face 44174 20875 20965 20964 Face 44175 20876 20966 20965 Face 44176 20875 20876 20965 Face 44177 20966 21059 21058 Face 44178 20965 20966 21058 Face 44179 21059 21149 21148 Face 44180 21058 21059 21148 Face 44181 21149 21242 21241 Face 44182 21148 21149 21241 Face 44183 21242 21334 21333 Face 44184 21241 21242 21333 Face 44185 21334 21427 21426 Face 44186 21333 21334 21426 Face 44187 21427 21522 21521 Face 44188 21426 21427 21521 Face 44189 21522 21615 21614 Face 44190 21521 21522 21614 Face 44191 21615 21710 21709 Face 44192 21614 21615 21709 Face 44193 21710 21807 21806 Face 44194 21709 21710 21806 Face 44195 21807 21903 21902 Face 44196 21806 21807 21902 Face 44197 21903 22001 22000 Face 44198 21902 21903 22000 Face 44199 22001 22099 22098 Face 44200 22000 22001 22098 Face 44201 22099 22194 22193 Face 44202 22098 22099 22193 Face 44203 22194 22290 22289 Face 44204 22193 22194 22289 Face 44205 22290 22386 22385 Face 44206 22289 22290 22385 Face 44207 22386 22483 22482 Face 44208 22385 22386 22482 Face 44209 22483 22577 22576 Face 44210 22482 22483 22576 Face 44211 22577 22673 22672 Face 44212 22576 22577 22672 Face 44213 15022 14893 22672 Face 44214 22673 15022 22672 Face 44215 11532 15720 14893 Face 44216 15022 11532 14893 Face 44217 12672 13442 15720 Face 44218 11532 12672 15720 Face 44219 14777 14778 13442 Face 44220 12672 14777 13442 Face 44221 14777 2107 16511 Face 44222 14778 14777 16511 Face 44223 19623 16025 16511 Face 44224 2107 19623 16511 Face 44225 13446 13352 16025 Face 44226 19623 13446 16025 Face 44227 6835 2502 13352 Face 44228 13446 6835 13352 Face 44229 12469 11940 2502 Face 44230 6835 12469 2502 Face 44231 4490 12103 11940 Face 44232 12469 4490 11940 Face 44233 12231 12145 12103 Face 44234 4490 12231 12103 Face 44235 11272 11293 12145 Face 44236 12231 11272 12145 Face 44237 19601 22544 11293 Face 44238 11272 19601 11293 Face 44239 15310 15174 22544 Face 44240 19601 15310 22544 Face 44241 25271 23490 24779 Face 44242 13547 13546 14666 Face 44243 23977 23655 24165 Face 44244 2159 24935 2160 Face 44245 25235 25372 25371 Face 44246 24253 22843 27253 Face 44247 23100 20781 22079 Face 44248 23398 24662 24635 Face 44249 21892 21891 23607 Face 44250 23089 21892 23607 Face 44251 23119 23118 417 Face 44252 12294 12737 11700 Face 44253 24884 24886 22998 Face 44254 24986 24985 24849 Face 44255 13170 22275 23741 Face 44256 23386 24903 22731 Face 44257 23448 22859 23770 Face 44258 24085 24342 24575 Face 44259 24226 26538 23449 Face 44260 22859 24227 24228 Face 44261 20007 24474 20008 Face 44262 23770 22859 24228 Face 44263 24228 24227 23732 Face 44264 23904 23692 23717 Face 44265 14909 21394 21487 Face 44266 20140 19499 23723 Face 44267 23251 23250 24679 Face 44268 24272 24465 23861 Face 44269 20958 21051 24303 Face 44270 24064 24084 24065 Face 44271 23615 24806 24768 Face 44272 22735 23550 22777 Face 44273 22798 24491 23146 Face 44274 23262 23260 24802 Face 44275 24643 24507 12647 Face 44276 18724 7174 12983 Face 44277 23613 23536 21515 Face 44278 23106 24643 12647 Face 44279 30210 30275 30209 Face 44280 20604 25276 12259 Face 44281 20061 22338 14550 Face 44282 3816 20061 14550 Face 44283 22322 15034 22338 Face 44284 20061 22322 22338 Face 44285 22036 21938 15034 Face 44286 22322 22036 15034 Face 44287 21940 21844 21938 Face 44288 22036 21940 21938 Face 44289 12497 13637 21844 Face 44290 21940 12497 21844 Face 44291 21936 21652 13637 Face 44292 12497 21936 13637 Face 44293 9290 14316 21652 Face 44294 21936 9290 21652 Face 44295 20747 20656 14316 Face 44296 9290 20747 14316 Face 44297 22619 22524 20656 Face 44298 20747 22619 20656 Face 44299 22619 21293 21387 Face 44300 22524 22619 21387 Face 44301 21293 10693 11038 Face 44302 21387 21293 11038 Face 44303 27597 20609 26421 Face 44304 26421 20522 20523 Face 44305 139 3455 140 Face 44306 19403 19417 19387 Face 44307 34325 34319 34652 Face 44308 27831 27830 27701 Face 44309 17100 18005 17779 Face 44310 19179 17286 17535 Face 44311 15884 12723 22050 Face 44312 21935 21110 2788 Face 44313 21952 22050 12723 Face 44314 21110 21952 12723 Face 44315 20478 20307 22050 Face 44316 21952 20478 22050 Face 44317 21090 16356 20307 Face 44318 20478 21090 20307 Face 44319 21371 19317 16356 Face 44320 21090 21371 16356 Face 44321 20736 20906 19317 Face 44322 21371 20736 19317 Face 44323 20730 20906 140 Face 44324 32747 17193 17283 Face 44325 7083 22773 15195 Face 44326 27274 22434 28420 Face 44327 2024 3940 20904 Face 44328 10693 14774 17407 Face 44329 20004 20083 20003 Face 44330 21897 29453 29322 Face 44331 23513 23518 24716 Face 44332 24718 23602 23263 Face 44333 24716 24718 23263 Face 44334 23602 25297 25163 Face 44335 17632 17631 1021 Face 44336 22939 20003 23005 Face 44337 19545 19544 19464 Face 44338 32213 16678 32319 Face 44339 19545 19627 19626 Face 44340 19545 19626 19544 Face 44341 22111 22112 22206 Face 44342 22207 22303 22302 Face 44343 19792 19791 19709 Face 44344 28702 28701 28574 Face 44345 19871 19870 19791 Face 44346 19792 19871 19791 Face 44347 19946 19945 19870 Face 44348 19871 19946 19870 Face 44349 20023 20022 19945 Face 44350 19946 20023 19945 Face 44351 20105 20104 20022 Face 44352 20023 20105 20022 Face 44353 20105 20184 20183 Face 44354 20104 20105 20183 Face 44355 20184 20266 20265 Face 44356 20183 20184 20265 Face 44357 20266 20349 20348 Face 44358 20265 20266 20348 Face 44359 20349 20436 20435 Face 44360 20348 20349 20435 Face 44361 20436 20523 20522 Face 44362 20435 20436 20522 Face 44363 20610 20524 20611 Face 44364 30967 30966 30865 Face 44365 20700 20790 20789 Face 44366 30482 30567 30481 Face 44367 20790 20877 20876 Face 44368 20789 20790 20876 Face 44369 20877 20967 20966 Face 44370 20876 20877 20966 Face 44371 20967 21060 21059 Face 44372 20966 20967 21059 Face 44373 21060 21150 21149 Face 44374 21059 21060 21149 Face 44375 21150 21243 21242 Face 44376 21149 21150 21242 Face 44377 21243 21335 21334 Face 44378 21242 21243 21334 Face 44379 21335 21428 21427 Face 44380 21334 21335 21427 Face 44381 21428 21523 21522 Face 44382 21427 21428 21522 Face 44383 21523 21616 21615 Face 44384 21522 21523 21615 Face 44385 21616 21711 21710 Face 44386 21615 21616 21710 Face 44387 21711 21808 21807 Face 44388 21710 21711 21807 Face 44389 21808 21904 21903 Face 44390 21807 21808 21903 Face 44391 21904 22002 22001 Face 44392 21903 21904 22001 Face 44393 22002 22100 22099 Face 44394 22001 22002 22099 Face 44395 22100 22195 22194 Face 44396 22099 22100 22194 Face 44397 22195 22291 22290 Face 44398 22194 22195 22290 Face 44399 22291 22387 22386 Face 44400 22290 22291 22386 Face 44401 22387 22484 22483 Face 44402 22386 22387 22483 Face 44403 22484 22578 22577 Face 44404 22483 22484 22577 Face 44405 22578 22674 22673 Face 44406 22577 22578 22673 Face 44407 15023 15022 22673 Face 44408 22674 15023 22673 Face 44409 12097 11532 15022 Face 44410 15023 12097 15022 Face 44411 14598 12672 11532 Face 44412 12097 14598 11532 Face 44413 14418 14777 12672 Face 44414 14598 14418 12672 Face 44415 16510 2107 14777 Face 44416 14418 16510 14777 Face 44417 19622 19623 2107 Face 44418 16510 19622 2107 Face 44419 13447 13446 19623 Face 44420 19622 13447 19623 Face 44421 16507 6835 13446 Face 44422 13447 16507 13446 Face 44423 7671 12469 6835 Face 44424 16507 7671 6835 Face 44425 4361 4490 12469 Face 44426 7671 4361 12469 Face 44427 12319 12231 4490 Face 44428 4361 12319 4490 Face 44429 12033 11272 12231 Face 44430 12319 12033 12231 Face 44431 19519 19601 11272 Face 44432 12033 19519 11272 Face 44433 14666 15310 19601 Face 44434 19519 14666 19601 Face 44435 33247 33383 33246 Face 44436 15310 14666 13546 Face 44437 24727 24003 21301 Face 44438 10595 24727 21301 Face 44439 22687 23607 22716 Face 44440 248 23041 24359 Face 44441 23748 24611 24499 Face 44442 24146 23034 25312 Face 44443 23150 23259 24617 Face 44444 23259 21323 21415 Face 44445 5404 25354 3715 Face 44446 11160 13384 25003 Face 44447 27750 6415 19194 Face 44448 19618 24900 13984 Face 44449 1978 12535 10841 Face 44450 10841 6033 19194 Face 44451 27257 13857 13269 Face 44452 12535 16194 10841 Face 44453 27257 13269 28680 Face 44454 16194 13633 13857 Face 44455 13633 22466 22369 Face 44456 28680 22369 28945 Face 44457 22147 28945 19266 Face 44458 22466 19267 22369 Face 44459 22147 19509 28162 Face 44460 19267 22413 19266 Face 44461 23933 23143 23197 Face 44462 28162 19509 20150 Face 44463 24872 24873 24261 Face 44464 24465 23933 23861 Face 44465 3441 24687 24822 Face 44466 24084 24872 24261 Face 44467 24806 23262 24802 Face 44468 21600 20095 25005 Face 44469 20239 20158 12088 Face 44470 23262 24574 24573 Face 44471 32335 32334 32228 Face 44472 30411 30482 30410 Face 44473 11999 3816 22048 Face 44474 22146 11999 22048 Face 44475 20142 20061 3816 Face 44476 11999 20142 3816 Face 44477 22418 22322 20061 Face 44478 20142 22418 20061 Face 44479 15171 22036 22322 Face 44480 22418 15171 22322 Face 44481 21941 21940 22036 Face 44482 15171 21941 22036 Face 44483 12317 12497 21940 Face 44484 21941 12317 21940 Face 44485 13636 21936 12497 Face 44486 12317 13636 12497 Face 44487 10439 9290 21936 Face 44488 13636 10439 21936 Face 44489 20655 20747 9290 Face 44490 10439 20655 9290 Face 44491 10675 22619 20747 Face 44492 20655 10675 20747 Face 44493 21200 21293 22619 Face 44494 10675 21200 22619 Face 44495 14774 10693 21293 Face 44496 21200 14774 21293 Face 44497 21190 18240 18241 Face 44498 24872 24347 24873 Face 44499 7156 358 7263 Face 44500 14551 12708 14479 Face 44501 19358 12948 4362 Face 44502 17547 22342 22247 Face 44503 21110 12723 2788 Face 44504 30411 30410 30343 Face 44505 20840 21110 21935 Face 44506 19593 20840 21935 Face 44507 21855 21952 21110 Face 44508 20840 21855 21110 Face 44509 20066 20478 21952 Face 44510 21855 20066 21952 Face 44511 21577 21090 20478 Face 44512 20066 21577 20478 Face 44513 19596 21371 21090 Face 44514 21577 19596 21090 Face 44515 18995 18672 19005 Face 44516 21371 19596 20736 Face 44517 12435 20833 20820 Face 44518 34821 20554 26928 Face 44519 3049 12560 16498 Face 44520 19826 19902 19825 Face 44521 19842 20629 20628 Face 44522 19383 19465 25984 Face 44523 24942 24580 13308 Face 44524 19384 19383 19306 Face 44525 19307 19384 19306 Face 44526 19465 19545 19464 Face 44527 19384 19466 19383 Face 44528 19546 19545 19465 Face 44529 19466 19546 19465 Face 44530 19627 19546 19628 Face 44531 19546 19627 19545 Face 44532 17983 18074 18073 Face 44533 17569 19068 17287 Face 44534 19793 19792 19710 Face 44535 19709 19710 19792 Face 44536 19872 19871 19792 Face 44537 19793 19872 19792 Face 44538 19947 19946 19871 Face 44539 19872 19947 19871 Face 44540 20024 20023 19946 Face 44541 19947 20024 19946 Face 44542 20106 20105 20023 Face 44543 20024 20106 20023 Face 44544 20185 20184 20105 Face 44545 20106 20185 20105 Face 44546 20185 20267 20266 Face 44547 20184 20185 20266 Face 44548 20267 20350 20349 Face 44549 20266 20267 20349 Face 44550 20350 20437 20436 Face 44551 20349 20350 20436 Face 44552 20437 20524 20523 Face 44553 20436 20437 20523 Face 44554 26422 32660 20611 Face 44555 20523 20524 20610 Face 44556 32911 33045 20701 Face 44557 20700 20699 32780 Face 44558 20791 20878 20877 Face 44559 20790 20791 20877 Face 44560 20878 20968 20967 Face 44561 20877 20878 20967 Face 44562 20968 21061 21060 Face 44563 20967 20968 21060 Face 44564 21061 21151 21150 Face 44565 21060 21061 21150 Face 44566 21151 21244 21243 Face 44567 21150 21151 21243 Face 44568 21244 21336 21335 Face 44569 21243 21244 21335 Face 44570 21429 21428 21335 Face 44571 21336 21429 21335 Face 44572 21429 21524 21523 Face 44573 21428 21429 21523 Face 44574 21524 21617 21616 Face 44575 21523 21524 21616 Face 44576 21617 21712 21711 Face 44577 21616 21617 21711 Face 44578 21712 21809 21808 Face 44579 21711 21712 21808 Face 44580 21809 21905 21904 Face 44581 21808 21809 21904 Face 44582 21905 22003 22002 Face 44583 21904 21905 22002 Face 44584 22003 22101 22100 Face 44585 22002 22003 22100 Face 44586 22101 22196 22195 Face 44587 22100 22101 22195 Face 44588 22196 22292 22291 Face 44589 22195 22196 22291 Face 44590 22292 22388 22387 Face 44591 22291 22292 22387 Face 44592 22388 22485 22484 Face 44593 22387 22388 22484 Face 44594 22485 22579 22578 Face 44595 22484 22485 22578 Face 44596 22579 22675 22674 Face 44597 22578 22579 22674 Face 44598 22675 15024 15023 Face 44599 22674 22675 15023 Face 44600 13725 12097 15023 Face 44601 15024 13725 15023 Face 44602 14600 14598 12097 Face 44603 13725 14600 12097 Face 44604 14417 14418 14598 Face 44605 14600 14417 14598 Face 44606 11380 16510 14418 Face 44607 14417 11380 14418 Face 44608 13396 19622 16510 Face 44609 11380 13396 16510 Face 44610 13543 13447 19622 Face 44611 13396 13543 19622 Face 44612 16506 16507 13447 Face 44613 13543 16506 13447 Face 44614 3691 7671 16507 Face 44615 16506 3691 16507 Face 44616 3587 4361 7671 Face 44617 3691 3587 7671 Face 44618 14547 12319 4361 Face 44619 3587 14547 4361 Face 44620 6361 12033 12319 Face 44621 14547 6361 12319 Face 44622 19851 19519 12033 Face 44623 6361 19851 12033 Face 44624 16030 14666 19519 Face 44625 19851 16030 19519 Face 44626 23188 23676 23235 Face 44627 31213 31315 31212 Face 44628 23676 22956 22957 Face 44629 22829 23188 23235 Face 44630 24453 23729 21046 Face 44631 11912 23588 20076 Face 44632 25056 12978 24603 Face 44633 25055 22687 22887 Face 44634 23151 23891 22739 Face 44635 22739 23150 24617 Face 44636 13737 6415 27750 Face 44637 23810 24338 24054 Face 44638 9055 1123 1978 Face 44639 13737 9055 1978 Face 44640 1123 5333 12535 Face 44641 1978 1123 12535 Face 44642 16193 16194 12535 Face 44643 5333 16193 12535 Face 44644 16193 3798 13633 Face 44645 16194 16193 13633 Face 44646 22560 22466 13633 Face 44647 3798 22560 13633 Face 44648 19375 19267 22466 Face 44649 22560 19375 22466 Face 44650 12889 22413 19267 Face 44651 19375 12889 19267 Face 44652 19511 19509 22413 Face 44653 12889 19511 22413 Face 44654 30344 30343 30276 Face 44655 19511 20195 19509 Face 44656 22631 21003 21008 Face 44657 20195 21008 20150 Face 44658 24685 3441 24821 Face 44659 26472 21003 11166 Face 44660 23260 23262 24573 Face 44661 23291 22862 23711 Face 44662 313 16519 16690 Face 44663 24574 22997 22717 Face 44664 12442 11999 22146 Face 44665 22242 12442 22146 Face 44666 13355 20142 11999 Face 44667 12442 13355 11999 Face 44668 22514 22418 20142 Face 44669 13355 22514 20142 Face 44670 3818 15171 22418 Face 44671 22514 3818 22418 Face 44672 14524 21941 15171 Face 44673 3818 14524 15171 Face 44674 15446 12317 21941 Face 44675 14524 15446 21941 Face 44676 9877 13636 12317 Face 44677 15446 9877 12317 Face 44678 14164 10439 13636 Face 44679 9877 14164 13636 Face 44680 20657 20655 10439 Face 44681 14164 20657 10439 Face 44682 21946 10675 20655 Face 44683 20657 21946 20655 Face 44684 20218 21200 10675 Face 44685 21946 20218 10675 Face 44686 15719 14774 21200 Face 44687 20218 15719 21200 Face 44688 17152 17153 19470 Face 44689 16576 14113 16575 Face 44690 13012 13191 20933 Face 44691 20295 20379 20294 Face 44692 19593 20640 14729 Face 44693 18413 14726 19430 Face 44694 22527 19593 14729 Face 44695 20996 22527 14729 Face 44696 20839 20840 19593 Face 44697 22527 20839 19593 Face 44698 20311 21855 20840 Face 44699 20839 20311 20840 Face 44700 19669 20066 21855 Face 44701 20311 19669 21855 Face 44702 3190 21577 20066 Face 44703 19669 3190 20066 Face 44704 15289 15288 25133 Face 44705 21577 3190 19596 Face 44706 22032 22049 13641 Face 44707 19882 18005 20659 Face 44708 21939 13545 12795 Face 44709 15160 15163 988 Face 44710 20922 18940 19587 Face 44711 3574 15906 16061 Face 44712 19602 19685 23787 Face 44713 19385 19384 19307 Face 44714 19308 19385 19307 Face 44715 19467 19466 19384 Face 44716 19385 19467 19384 Face 44717 19547 19546 19466 Face 44718 19467 19547 19466 Face 44719 19629 24033 19628 Face 44720 19547 19628 19546 Face 44721 6529 28568 12910 Face 44722 34074 20977 20887 Face 44723 19794 19793 19711 Face 44724 19711 19710 22986 Face 44725 19873 19872 19793 Face 44726 19794 19873 19793 Face 44727 19948 19947 19872 Face 44728 19873 19948 19872 Face 44729 20025 20024 19947 Face 44730 19948 20025 19947 Face 44731 20107 20106 20024 Face 44732 20025 20107 20024 Face 44733 20186 20185 20106 Face 44734 20107 20186 20106 Face 44735 20186 20268 20267 Face 44736 20185 20186 20267 Face 44737 20268 20351 20350 Face 44738 20267 20268 20350 Face 44739 20351 20438 20437 Face 44740 20350 20351 20437 Face 44741 20438 20525 20524 Face 44742 20437 20438 20524 Face 44743 30147 30148 30211 Face 44744 22175 22174 22078 Face 44745 28549 34514 28550 Face 44746 20792 20879 20878 Face 44747 20701 33044 20790 Face 44748 20879 20969 20968 Face 44749 20878 20879 20968 Face 44750 20969 21062 21061 Face 44751 20968 20969 21061 Face 44752 21062 21152 21151 Face 44753 21061 21062 21151 Face 44754 21152 21245 21244 Face 44755 21151 21152 21244 Face 44756 21245 21337 21336 Face 44757 21244 21245 21336 Face 44758 21337 21430 21429 Face 44759 21336 21337 21429 Face 44760 21430 21525 21524 Face 44761 21429 21430 21524 Face 44762 21525 21618 21617 Face 44763 21524 21525 21617 Face 44764 21618 21713 21712 Face 44765 21617 21618 21712 Face 44766 21713 21810 21809 Face 44767 21712 21713 21809 Face 44768 21810 21906 21905 Face 44769 21809 21810 21905 Face 44770 21906 22004 22003 Face 44771 21905 21906 22003 Face 44772 22004 22102 22101 Face 44773 22003 22004 22101 Face 44774 22102 22197 22196 Face 44775 22101 22102 22196 Face 44776 22197 22293 22292 Face 44777 22196 22197 22292 Face 44778 22293 22389 22388 Face 44779 22292 22293 22388 Face 44780 22486 22485 22388 Face 44781 22389 22486 22388 Face 44782 22486 22580 22579 Face 44783 22485 22486 22579 Face 44784 22580 22241 22675 Face 44785 22579 22580 22675 Face 44786 22241 15155 15024 Face 44787 22675 22241 15024 Face 44788 15155 3315 13725 Face 44789 15024 15155 13725 Face 44790 14721 14600 13725 Face 44791 3315 14721 13725 Face 44792 14537 14417 14600 Face 44793 14721 14537 14600 Face 44794 6710 11380 14417 Face 44795 14537 6710 14417 Face 44796 12265 13396 11380 Face 44797 6710 12265 11380 Face 44798 13448 13543 13396 Face 44799 12265 13448 13396 Face 44800 16022 16506 13543 Face 44801 13448 16022 13543 Face 44802 15731 3691 16506 Face 44803 16022 15731 16506 Face 44804 268 3587 3691 Face 44805 15731 268 3691 Face 44806 14546 14547 3587 Face 44807 268 14546 3587 Face 44808 8150 6361 14547 Face 44809 14546 8150 14547 Face 44810 19926 19851 6361 Face 44811 8150 19926 6361 Face 44812 14548 16030 19851 Face 44813 19926 14548 19851 Face 44814 30085 30086 30147 Face 44815 30148 30212 30211 Face 44816 9875 1768 20283 Face 44817 2552 15154 29723 Face 44818 1768 22654 15154 Face 44819 15154 22654 12891 Face 44820 22654 37 12891 Face 44821 9327 12891 37 Face 44822 37 12997 9327 Face 44823 9055 28433 9327 Face 44824 12997 1007 9055 Face 44825 9327 12997 9055 Face 44826 1007 12805 1123 Face 44827 9055 1007 1123 Face 44828 12805 1000 5333 Face 44829 1123 12805 5333 Face 44830 14154 16193 5333 Face 44831 1000 14154 5333 Face 44832 14154 3692 3798 Face 44833 16193 14154 3798 Face 44834 22657 22560 3798 Face 44835 3692 22657 3798 Face 44836 2401 19375 22560 Face 44837 22657 2401 22560 Face 44838 12543 12889 19375 Face 44839 2401 12543 19375 Face 44840 19514 19511 12889 Face 44841 12543 19514 12889 Face 44842 20198 20195 19511 Face 44843 19514 20198 19511 Face 44844 21017 21008 20195 Face 44845 20198 21017 20195 Face 44846 22637 22631 21008 Face 44847 21017 22637 21008 Face 44848 19848 22254 17761 Face 44849 22637 22656 22631 Face 44850 25183 25182 24636 Face 44851 11353 29669 22254 Face 44852 22242 22146 313 Face 44853 25182 20780 24636 Face 44854 20060 13355 12442 Face 44855 11353 20060 12442 Face 44856 15578 22514 13355 Face 44857 20060 15578 13355 Face 44858 14484 3818 22514 Face 44859 15578 14484 22514 Face 44860 12521 14524 3818 Face 44861 14484 12521 3818 Face 44862 12521 19458 15446 Face 44863 14524 12521 15446 Face 44864 9191 9877 15446 Face 44865 19458 9191 15446 Face 44866 21175 14164 9877 Face 44867 9191 21175 9877 Face 44868 20568 20657 14164 Face 44869 21175 20568 14164 Face 44870 21849 21946 20657 Face 44871 20568 21849 20657 Face 44872 19471 20218 21946 Face 44873 21849 19471 21946 Face 44874 20810 15719 20218 Face 44875 19471 20810 20218 Face 44876 13872 16517 13888 Face 44877 32124 32123 32019 Face 44878 22049 13012 13641 Face 44879 19898 19976 19897 Face 44880 23998 14885 14884 Face 44881 19479 20639 20996 Face 44882 22143 22527 20996 Face 44883 20639 22143 20996 Face 44884 19762 20839 22527 Face 44885 22143 19762 22527 Face 44886 20070 20311 20839 Face 44887 19762 20070 20839 Face 44888 20070 19424 19669 Face 44889 20311 20070 19669 Face 44890 19424 21671 3190 Face 44891 19669 19424 3190 Face 44892 17900 20215 17809 Face 44893 15426 15425 15289 Face 44894 19881 19882 20658 Face 44895 19745 19828 19744 Face 44896 17151 19385 17060 Face 44897 15437 22320 22132 Face 44898 15451 12911 75 Face 44899 1130 17696 92 Face 44900 17247 17338 17337 Face 44901 20123 20201 17800 Face 44902 17151 19469 19468 Face 44903 19468 19467 19385 Face 44904 14208 20810 16275 Face 44905 19548 19547 19467 Face 44906 19468 19548 19467 Face 44907 19629 19628 19547 Face 44908 19548 19629 19547 Face 44909 21532 21625 21624 Face 44910 30023 30024 30085 Face 44911 19795 19794 19712 Face 44912 34366 34439 27330 Face 44913 19874 19873 19794 Face 44914 19795 19874 19794 Face 44915 19949 19948 19873 Face 44916 19874 19949 19873 Face 44917 20026 20025 19948 Face 44918 19949 20026 19948 Face 44919 20108 20107 20025 Face 44920 20026 20108 20025 Face 44921 20187 20186 20107 Face 44922 20108 20187 20107 Face 44923 20187 20269 20268 Face 44924 20186 20187 20268 Face 44925 20269 20352 20351 Face 44926 20268 20269 20351 Face 44927 20352 20439 20438 Face 44928 20351 20352 20438 Face 44929 20526 20527 32787 Face 44930 20438 20439 20525 Face 44931 22078 21981 21982 Face 44932 33493 33620 33492 Face 44933 25498 25497 25433 Face 44934 30024 30023 29962 Face 44935 33044 20792 20791 Face 44936 20880 20879 33312 Face 44937 20879 20880 20969 Face 44938 20970 21063 21062 Face 44939 20969 20970 21062 Face 44940 21063 21153 21152 Face 44941 21062 21063 21152 Face 44942 21153 21246 21245 Face 44943 21152 21153 21245 Face 44944 21246 21338 21337 Face 44945 21245 21246 21337 Face 44946 21338 21431 21430 Face 44947 21337 21338 21430 Face 44948 21431 21526 21525 Face 44949 21430 21431 21525 Face 44950 21526 21619 21618 Face 44951 21525 21526 21618 Face 44952 21619 21714 21713 Face 44953 21618 21619 21713 Face 44954 21714 21811 21810 Face 44955 21713 21714 21810 Face 44956 21811 21907 21906 Face 44957 21810 21811 21906 Face 44958 21907 22005 22004 Face 44959 21906 21907 22004 Face 44960 22005 22103 22102 Face 44961 22004 22005 22102 Face 44962 22103 22198 22197 Face 44963 22102 22103 22197 Face 44964 22198 22294 22293 Face 44965 22197 22198 22293 Face 44966 22294 22390 22389 Face 44967 22293 22294 22389 Face 44968 22487 22486 22389 Face 44969 22390 22487 22389 Face 44970 22581 22580 22486 Face 44971 22487 22581 22486 Face 44972 22581 4223 22241 Face 44973 22580 22581 22241 Face 44974 4223 15291 15155 Face 44975 22241 4223 15155 Face 44976 15291 7587 3315 Face 44977 15155 15291 3315 Face 44978 7587 14846 14721 Face 44979 3315 7587 14721 Face 44980 14655 14537 14721 Face 44981 14846 14655 14721 Face 44982 12096 6710 14537 Face 44983 14655 12096 14537 Face 44984 19705 12265 6710 Face 44985 12096 19705 6710 Face 44986 13733 13448 12265 Face 44987 19705 13733 12265 Face 44988 13353 16022 13448 Face 44989 13733 13353 13448 Face 44990 15730 15731 16022 Face 44991 13353 15730 16022 Face 44992 5887 268 15731 Face 44993 15730 5887 15731 Face 44994 14426 14546 268 Face 44995 5887 14426 268 Face 44996 8349 8150 14546 Face 44997 14426 8349 14546 Face 44998 20074 19926 8150 Face 44999 8349 20074 8150 Face 45000 15876 14548 19926 Face 45001 20074 15876 19926 Face 45002 15876 3303 9875 Face 45003 14548 15876 9875 Face 45004 3303 22532 1768 Face 45005 9875 3303 1768 Face 45006 22532 22655 22654 Face 45007 1768 22532 22654 Face 45008 22655 4345 37 Face 45009 22654 22655 37 Face 45010 4345 12984 12997 Face 45011 37 4345 12997 Face 45012 12984 13034 1007 Face 45013 12997 12984 1007 Face 45014 13034 12804 12805 Face 45015 1007 13034 12805 Face 45016 13400 1000 12805 Face 45017 12804 13400 12805 Face 45018 1265 14154 1000 Face 45019 13400 1265 1000 Face 45020 1265 4110 3692 Face 45021 14154 1265 3692 Face 45022 15304 22657 3692 Face 45023 4110 15304 3692 Face 45024 21010 2401 22657 Face 45025 15304 21010 22657 Face 45026 11185 12543 2401 Face 45027 21010 11185 2401 Face 45028 19515 19514 12543 Face 45029 11185 19515 12543 Face 45030 20366 20198 19514 Face 45031 19515 20366 19514 Face 45032 21079 21017 20198 Face 45033 20366 21079 20198 Face 45034 14567 22637 21017 Face 45035 21079 14567 21017 Face 45036 12000 22656 22637 Face 45037 14567 12000 22637 Face 45038 22337 22254 22656 Face 45039 12000 22337 22656 Face 45040 34775 9561 34826 Face 45041 22337 12985 22254 Face 45042 20549 20060 11353 Face 45043 12985 20549 11353 Face 45044 15300 15578 20060 Face 45045 20549 15300 20060 Face 45046 13635 14484 15578 Face 45047 15300 13635 15578 Face 45048 13635 22614 12521 Face 45049 14484 13635 12521 Face 45050 22614 21556 19458 Face 45051 12521 22614 19458 Face 45052 12433 9191 19458 Face 45053 21556 12433 19458 Face 45054 22321 21175 9191 Face 45055 12433 22321 9191 Face 45056 20748 20568 21175 Face 45057 22321 20748 21175 Face 45058 19584 21849 20568 Face 45059 20748 19584 20568 Face 45060 20033 19471 21849 Face 45061 19584 20033 21849 Face 45062 28809 33696 20885 Face 45063 19934 16515 15808 Face 45064 19573 19572 19491 Face 45065 18079 20377 20378 Face 45066 17987 17286 19508 Face 45067 27963 28096 27962 Face 45068 19916 20639 19480 Face 45069 30759 30758 30659 Face 45070 14898 22143 20639 Face 45071 19916 14898 20639 Face 45072 19846 19762 22143 Face 45073 14898 19846 22143 Face 45074 19846 19839 20070 Face 45075 19762 19846 20070 Face 45076 19839 21859 19424 Face 45077 20070 19839 19424 Face 45078 19416 29516 29584 Face 45079 19424 21859 21671 Face 45080 20749 13455 19327 Face 45081 19745 19746 19828 Face 45082 13360 13268 13175 Face 45083 15163 15580 988 Face 45084 13265 13360 13175 Face 45085 886 22228 22134 Face 45086 20643 20653 22032 Face 45087 19656 19739 19655 Face 45088 13643 10843 13264 Face 45089 17152 19470 19469 Face 45090 3574 15905 15906 Face 45091 19549 19548 19468 Face 45092 19469 19549 19468 Face 45093 19630 19629 19548 Face 45094 19549 19630 19548 Face 45095 19714 19713 19629 Face 45096 19630 19714 19629 Face 45097 19796 19795 19713 Face 45098 19714 19796 19713 Face 45099 19875 19874 19795 Face 45100 19796 19875 19795 Face 45101 19950 19949 19874 Face 45102 19875 19950 19874 Face 45103 20027 20026 19949 Face 45104 19950 20027 19949 Face 45105 20109 20108 20026 Face 45106 20027 20109 20026 Face 45107 20188 20187 20108 Face 45108 20109 20188 20108 Face 45109 20188 20270 20269 Face 45110 20187 20188 20269 Face 45111 20270 20353 20352 Face 45112 20269 20270 20352 Face 45113 20353 20440 20439 Face 45114 20352 20353 20439 Face 45115 20527 20441 20528 Face 45116 20439 20440 20526 Face 45117 29963 29962 29904 Face 45118 22279 6595 22183 Face 45119 21692 21598 21693 Face 45120 27575 27574 27454 Face 45121 27455 27575 27454 Face 45122 25657 25758 25299 Face 45123 16690 16519 18446 Face 45124 20971 33442 33569 Face 45125 33442 20970 20969 Face 45126 21064 21154 21153 Face 45127 21063 21064 21153 Face 45128 21154 21247 21246 Face 45129 21153 21154 21246 Face 45130 21247 21339 21338 Face 45131 21246 21247 21338 Face 45132 21339 21432 21431 Face 45133 21338 21339 21431 Face 45134 21432 21527 21526 Face 45135 21431 21432 21526 Face 45136 21527 21620 21619 Face 45137 21526 21527 21619 Face 45138 21620 21715 21714 Face 45139 21619 21620 21714 Face 45140 21715 21812 21811 Face 45141 21714 21715 21811 Face 45142 21812 21908 21907 Face 45143 21811 21812 21907 Face 45144 21908 22006 22005 Face 45145 21907 21908 22005 Face 45146 22006 22104 22103 Face 45147 22005 22006 22103 Face 45148 22104 22199 22198 Face 45149 22103 22104 22198 Face 45150 22199 22295 22294 Face 45151 22198 22199 22294 Face 45152 22295 22391 22390 Face 45153 22294 22295 22390 Face 45154 22488 22487 22390 Face 45155 22391 22488 22390 Face 45156 22582 22581 22487 Face 45157 22488 22582 22487 Face 45158 14167 4223 22581 Face 45159 22582 14167 22581 Face 45160 14167 15718 15291 Face 45161 4223 14167 15291 Face 45162 15718 2151 7587 Face 45163 15291 15718 7587 Face 45164 2151 13309 14846 Face 45165 7587 2151 14846 Face 45166 14776 14655 14846 Face 45167 13309 14776 14846 Face 45168 3766 12096 14655 Face 45169 14776 3766 14655 Face 45170 11102 19705 12096 Face 45171 3766 11102 12096 Face 45172 7282 13733 19705 Face 45173 11102 7282 19705 Face 45174 3895 13353 13733 Face 45175 7282 3895 13733 Face 45176 15875 15730 13353 Face 45177 3895 15875 13353 Face 45178 4198 5887 15730 Face 45179 15875 4198 15730 Face 45180 14425 14426 5887 Face 45181 4198 14425 5887 Face 45182 9732 8349 14426 Face 45183 14425 9732 14426 Face 45184 22371 20074 8349 Face 45185 9732 22371 8349 Face 45186 22371 15877 15876 Face 45187 20074 22371 15876 Face 45188 15877 8888 3303 Face 45189 15876 15877 3303 Face 45190 8888 15303 22532 Face 45191 3303 8888 22532 Face 45192 15303 22558 22655 Face 45193 22532 15303 22655 Face 45194 22558 11976 4345 Face 45195 22655 22558 4345 Face 45196 11976 12799 12984 Face 45197 4345 11976 12984 Face 45198 12799 8862 13034 Face 45199 12984 12799 13034 Face 45200 8862 12714 12804 Face 45201 13034 8862 12804 Face 45202 668 13400 12804 Face 45203 12714 668 12804 Face 45204 2982 1265 13400 Face 45205 668 2982 13400 Face 45206 2982 12179 4110 Face 45207 1265 2982 4110 Face 45208 15110 15304 4110 Face 45209 12179 15110 4110 Face 45210 19268 21010 15304 Face 45211 15110 19268 15304 Face 45212 13450 11185 21010 Face 45213 19268 13450 21010 Face 45214 19551 19515 11185 Face 45215 13450 19551 11185 Face 45216 20367 20366 19515 Face 45217 19551 20367 19515 Face 45218 21080 21079 20366 Face 45219 20367 21080 20366 Face 45220 5020 14567 21079 Face 45221 21080 5020 21079 Face 45222 13645 12000 14567 Face 45223 5020 13645 14567 Face 45224 22350 22337 12000 Face 45225 13645 22350 12000 Face 45226 3185 12985 22337 Face 45227 22350 3185 22337 Face 45228 19474 20549 12985 Face 45229 3185 19474 12985 Face 45230 11013 15300 20549 Face 45231 19474 11013 20549 Face 45232 12728 13635 15300 Face 45233 11013 12728 15300 Face 45234 12728 22519 22614 Face 45235 13635 12728 22614 Face 45236 21557 21556 22614 Face 45237 22519 21557 22614 Face 45238 12523 12433 21556 Face 45239 21557 12523 21556 Face 45240 22607 22321 12433 Face 45241 12523 22607 12433 Face 45242 20569 20748 22321 Face 45243 22607 20569 22321 Face 45244 21750 19584 20748 Face 45245 20569 21750 20748 Face 45246 19934 20033 19584 Face 45247 21750 19934 19584 Face 45248 15808 16515 5268 Face 45249 28096 28233 28095 Face 45250 22409 22408 22312 Face 45251 23339 29746 25285 Face 45252 11917 22159 20644 Face 45253 20624 20708 19619 Face 45254 30660 30759 30659 Face 45255 20639 19479 19480 Face 45256 19313 14898 19916 Face 45257 20905 19313 19916 Face 45258 19845 19846 14898 Face 45259 19313 19845 14898 Face 45260 19845 21646 19839 Face 45261 19846 19845 19839 Face 45262 17249 17339 17338 Face 45263 19839 21646 21859 Face 45264 18079 20378 18080 Face 45265 19437 19357 13727 Face 45266 19662 19745 19744 Face 45267 19578 19579 19661 Face 45268 25278 23267 24502 Face 45269 19351 19352 19831 Face 45270 27702 27831 27701 Face 45271 20728 20819 13449 Face 45272 15723 16951 18068 Face 45273 16512 116 16543 Face 45274 19470 19550 19549 Face 45275 19469 19470 19549 Face 45276 19631 19630 19549 Face 45277 19550 19631 19549 Face 45278 19715 19714 19630 Face 45279 19631 19715 19630 Face 45280 19797 19796 19714 Face 45281 19715 19797 19714 Face 45282 19876 19875 19796 Face 45283 19797 19876 19796 Face 45284 19951 19950 19875 Face 45285 19876 19951 19875 Face 45286 19951 20028 20027 Face 45287 19950 19951 20027 Face 45288 20028 20110 20109 Face 45289 20027 20028 20109 Face 45290 20110 20189 20188 Face 45291 20109 20110 20188 Face 45292 20271 20270 20188 Face 45293 20189 20271 20188 Face 45294 20354 20353 20270 Face 45295 20271 20354 20270 Face 45296 20354 20441 20440 Face 45297 20353 20354 20440 Face 45298 32920 20442 32921 Face 45299 20440 20441 20527 Face 45300 19465 19383 19466 Face 45301 22048 16519 22146 Face 45302 27226 27225 27109 Face 45303 27110 27226 27109 Face 45304 26650 26651 26765 Face 45305 26651 26766 26765 Face 45306 3213 3212 3078 Face 45307 29303 29302 29172 Face 45308 21065 21155 21154 Face 45309 21064 21065 21154 Face 45310 21155 21248 21247 Face 45311 21154 21155 21247 Face 45312 21156 21249 21248 Face 45313 21247 21248 21339 Face 45314 21340 21433 21432 Face 45315 21339 21340 21432 Face 45316 21433 21528 21527 Face 45317 21432 21433 21527 Face 45318 21528 21621 21620 Face 45319 21527 21528 21620 Face 45320 21621 21716 21715 Face 45321 21620 21621 21715 Face 45322 21716 21813 21812 Face 45323 21715 21716 21812 Face 45324 21813 21909 21908 Face 45325 21812 21813 21908 Face 45326 21909 22007 22006 Face 45327 21908 21909 22006 Face 45328 22007 22105 22104 Face 45329 22006 22007 22104 Face 45330 22105 22200 22199 Face 45331 22104 22105 22199 Face 45332 22200 22296 22295 Face 45333 22199 22200 22295 Face 45334 22296 22392 22391 Face 45335 22295 22296 22391 Face 45336 22489 22488 22391 Face 45337 22392 22489 22391 Face 45338 22583 22582 22488 Face 45339 22489 22583 22488 Face 45340 4750 14167 22582 Face 45341 22583 4750 22582 Face 45342 4750 15865 15718 Face 45343 14167 4750 15718 Face 45344 15865 12117 2151 Face 45345 15718 15865 2151 Face 45346 12117 14534 13309 Face 45347 2151 12117 13309 Face 45348 14416 14776 13309 Face 45349 14534 14416 13309 Face 45350 4024 3766 14776 Face 45351 14416 4024 14776 Face 45352 7190 11102 3766 Face 45353 4024 7190 3766 Face 45354 13099 7282 11102 Face 45355 7190 13099 11102 Face 45356 19852 3895 7282 Face 45357 13099 19852 7282 Face 45358 16027 15875 3895 Face 45359 19852 16027 3895 Face 45360 3929 4198 15875 Face 45361 16027 3929 15875 Face 45362 12678 14425 4198 Face 45363 3929 12678 4198 Face 45364 6379 9732 14425 Face 45365 12678 6379 14425 Face 45366 22468 22371 9732 Face 45367 6379 22468 9732 Face 45368 22468 7700 15877 Face 45369 22371 22468 15877 Face 45370 7700 10812 8888 Face 45371 15877 7700 8888 Face 45372 10812 19300 15303 Face 45373 8888 10812 15303 Face 45374 19300 21866 22558 Face 45375 15303 19300 22558 Face 45376 21866 11893 11976 Face 45377 22558 21866 11976 Face 45378 11893 12893 12799 Face 45379 11976 11893 12799 Face 45380 12893 5875 8862 Face 45381 12799 12893 8862 Face 45382 12898 12714 8862 Face 45383 5875 12898 8862 Face 45384 12733 668 12714 Face 45385 12898 12733 12714 Face 45386 15068 2982 668 Face 45387 12733 15068 668 Face 45388 15068 13544 12179 Face 45389 2982 15068 12179 Face 45390 15727 15110 12179 Face 45391 13544 15727 12179 Face 45392 19455 19268 15110 Face 45393 15727 19455 15110 Face 45394 2758 13450 19268 Face 45395 19455 2758 19268 Face 45396 2758 19552 19551 Face 45397 13450 2758 19551 Face 45398 19552 20368 20367 Face 45399 19551 19552 20367 Face 45400 21081 21080 20367 Face 45401 20368 21081 20367 Face 45402 352 5020 21080 Face 45403 21081 352 21080 Face 45404 19908 13645 5020 Face 45405 352 19908 5020 Face 45406 22432 22350 13645 Face 45407 19908 22432 13645 Face 45408 5369 3185 22350 Face 45409 22432 5369 22350 Face 45410 19906 19474 3185 Face 45411 5369 19906 3185 Face 45412 14905 11013 19474 Face 45413 19906 14905 19474 Face 45414 13537 12728 11013 Face 45415 14905 13537 11013 Face 45416 13537 22038 22519 Face 45417 12728 13537 22519 Face 45418 21651 21557 22519 Face 45419 22038 21651 22519 Face 45420 19955 12523 21557 Face 45421 21651 19955 21557 Face 45422 21571 22607 12523 Face 45423 19955 21571 12523 Face 45424 20835 20569 22607 Face 45425 21571 20835 22607 Face 45426 21655 21750 20569 Face 45427 20835 21655 20569 Face 45428 16515 19934 21750 Face 45429 21655 16515 21750 Face 45430 116 2501 16543 Face 45431 4061 18616 33018 Face 45432 19759 19760 20545 Face 45433 13191 3162 21001 Face 45434 31210 31312 31209 Face 45435 19578 17087 19579 Face 45436 29489 24220 29488 Face 45437 24674 29488 24220 Face 45438 20488 19313 20905 Face 45439 20638 20488 20905 Face 45440 21859 17913 18735 Face 45441 19313 20488 19845 Face 45442 14274 14098 16274 Face 45443 17395 6836 21002 Face 45444 14151 19766 19279 Face 45445 22129 13191 13012 Face 45446 11435 14902 11436 Face 45447 14059 14151 19279 Face 45448 18168 1875 18073 Face 45449 18294 17010 18196 Face 45450 19843 20643 19842 Face 45451 19470 17244 19550 Face 45452 21001 6836 2644 Face 45453 13550 15906 15756 Face 45454 19579 19662 19661 Face 45455 32152 32256 32151 Face 45456 16266 5268 16515 Face 45457 19632 19631 19550 Face 45458 34745 34340 34364 Face 45459 19716 19715 19631 Face 45460 19632 19716 19631 Face 45461 19798 19797 19715 Face 45462 19716 19798 19715 Face 45463 19877 19876 19797 Face 45464 19798 19877 19797 Face 45465 19877 19952 19951 Face 45466 19876 19877 19951 Face 45467 19952 20029 20028 Face 45468 19951 19952 20028 Face 45469 20029 20111 20110 Face 45470 20028 20029 20110 Face 45471 20111 20190 20189 Face 45472 20110 20111 20189 Face 45473 20272 20271 20189 Face 45474 20190 20272 20189 Face 45475 20355 20354 20271 Face 45476 20272 20355 20271 Face 45477 20355 20442 20441 Face 45478 20354 20355 20441 Face 45479 20443 32921 20442 Face 45480 23872 2680 28007 Face 45481 21967 23695 23697 Face 45482 27336 27455 27335 Face 45483 27336 27335 27225 Face 45484 26993 26992 26879 Face 45485 26766 26880 26879 Face 45486 30570 30664 30569 Face 45487 25666 25665 25574 Face 45488 21066 21156 21155 Face 45489 21065 21064 33693 Face 45490 21156 34068 21249 Face 45491 21155 21156 21248 Face 45492 6588 20613 20702 Face 45493 26671 26682 28281 Face 45494 21341 21434 21433 Face 45495 21339 21248 34067 Face 45496 21434 21529 21528 Face 45497 21433 21434 21528 Face 45498 21529 21622 21621 Face 45499 21528 21529 21621 Face 45500 21622 21717 21716 Face 45501 21621 21622 21716 Face 45502 21717 21814 21813 Face 45503 21716 21717 21813 Face 45504 21814 21910 21909 Face 45505 21813 21814 21909 Face 45506 21910 22008 22007 Face 45507 21909 21910 22007 Face 45508 22008 22106 22105 Face 45509 22007 22008 22105 Face 45510 22106 22201 22200 Face 45511 22105 22106 22200 Face 45512 22201 22297 22296 Face 45513 22200 22201 22296 Face 45514 22297 22393 22392 Face 45515 22296 22297 22392 Face 45516 22490 22489 22392 Face 45517 22393 22490 22392 Face 45518 22584 22583 22489 Face 45519 22490 22584 22489 Face 45520 20744 4750 22583 Face 45521 22584 20744 22583 Face 45522 20744 15433 15865 Face 45523 4750 20744 15865 Face 45524 15433 10947 12117 Face 45525 15865 15433 12117 Face 45526 10947 14535 14534 Face 45527 12117 10947 14534 Face 45528 14974 14416 14534 Face 45529 14535 14974 14534 Face 45530 16177 4024 14416 Face 45531 14974 16177 14416 Face 45532 13564 7190 4024 Face 45533 16177 13564 4024 Face 45534 11864 13099 7190 Face 45535 13564 11864 7190 Face 45536 12549 19852 13099 Face 45537 11864 12549 13099 Face 45538 16028 16027 19852 Face 45539 12549 16028 19852 Face 45540 3896 3929 16027 Face 45541 16028 3896 16027 Face 45542 9756 12678 3929 Face 45543 3896 9756 3929 Face 45544 2773 6379 12678 Face 45545 9756 2773 12678 Face 45546 22562 22468 6379 Face 45547 2773 22562 6379 Face 45548 22562 13096 7700 Face 45549 22468 22562 7700 Face 45550 13096 11944 10812 Face 45551 7700 13096 10812 Face 45552 11944 19299 19300 Face 45553 10812 11944 19300 Face 45554 19299 19925 21866 Face 45555 19300 19299 21866 Face 45556 19925 5467 11893 Face 45557 21866 19925 11893 Face 45558 5467 12529 12893 Face 45559 11893 5467 12893 Face 45560 12529 10075 5875 Face 45561 12893 12529 5875 Face 45562 12897 12898 5875 Face 45563 10075 12897 5875 Face 45564 12551 12733 12898 Face 45565 23263 23602 25163 Face 45566 17283 21479 33024 Face 45567 19854 19929 19928 Face 45568 16340 15037 23053 Face 45569 23617 16340 23053 Face 45570 22895 25084 21661 Face 45571 20238 22895 21661 Face 45572 15021 12705 21136 Face 45573 25297 23584 23543 Face 45574 24686 23254 24684 Face 45575 28573 23576 2914 Face 45576 20257 22688 12793 Face 45577 25402 24810 24086 Face 45578 11650 21210 22688 Face 45579 15021 25273 15153 Face 45580 20897 22509 23570 Face 45581 23580 23844 23497 Face 45582 25044 23766 24482 Face 45583 25045 25044 24482 Face 45584 24336 22850 24556 Face 45585 25081 23204 24314 Face 45586 24686 24684 22885 Face 45587 24265 24298 13071 Face 45588 23287 23882 23147 Face 45589 22722 23006 22721 Face 45590 12641 22446 21660 Face 45591 5767 1911 1012 Face 45592 1262 18779 23164 Face 45593 12592 12682 12591 Face 45594 34561 34345 34593 Face 45595 12414 12505 12504 Face 45596 33662 6675 6709 Face 45597 22756 24680 12414 Face 45598 21183 24809 23948 Face 45599 34013 34139 34012 Face 45600 13856 23354 24752 Face 45601 21609 24619 24618 Face 45602 25073 24935 4349 Face 45603 15013 14886 14887 Face 45604 16517 24751 20316 Face 45605 25365 25366 21964 Face 45606 12234 12323 12322 Face 45607 16192 14056 15056 Face 45608 23688 23508 11574 Face 45609 24032 22881 24031 Face 45610 21583 24153 21489 Face 45611 21675 24334 23226 Face 45612 22960 20197 22961 Face 45613 24936 24946 20323 Face 45614 20604 21509 24860 Face 45615 23058 24409 24079 Face 45616 23301 24587 24585 Face 45617 23058 24079 24078 Face 45618 24252 23594 23094 Face 45619 24426 24862 12620 Face 45620 25243 25244 25380 Face 45621 23720 19919 21116 Face 45622 12635 23720 21116 Face 45623 23821 12254 23822 Face 45624 24945 23516 22176 Face 45625 25163 25297 23543 Face 45626 23314 23849 23543 Face 45627 11914 20957 24667 Face 45628 23584 23314 23543 Face 45629 24117 25332 24461 Face 45630 23596 29612 29605 Face 45631 23314 24444 24443 Face 45632 14034 34663 34700 Face 45633 21986 24438 23919 Face 45634 25323 35 4343 Face 45635 34565 34760 34479 Face 45636 2236 5006 4874 Face 45637 19345 20226 417 Face 45638 16716 16704 11411 Face 45639 24587 23058 22719 Face 45640 22795 24766 21837 Face 45641 21516 24724 24619 Face 45642 20098 22713 23038 Face 45643 13840 13816 13827 Face 45644 24825 24960 24959 Face 45645 21508 25050 24999 Face 45646 24179 24180 23977 Face 45647 24744 23551 25173 Face 45648 25131 25130 24991 Face 45649 25001 23435 23620 Face 45650 12609 25173 25033 Face 45651 23849 23314 24443 Face 45652 23435 23903 20759 Face 45653 24805 16347 24902 Face 45654 24444 23059 25309 Face 45655 23674 21320 23841 Face 45656 34274 34772 34425 Face 45657 23385 23398 24635 Face 45658 23589 23183 28030 Face 45659 24143 25001 23620 Face 45660 24634 23001 24274 Face 45661 23620 23435 20759 Face 45662 21136 22980 20257 Face 45663 12883 12975 12882 Face 45664 22980 14667 11650 Face 45665 24397 23325 22256 Face 45666 14667 22448 11650 Face 45667 23985 23617 22895 Face 45668 20160 20238 22448 Face 45669 14667 20160 22448 Face 45670 14258 23985 22895 Face 45671 14258 22895 20238 Face 45672 20160 14258 20238 Face 45673 22082 16340 23617 Face 45674 24443 24444 25309 Face 45675 25110 25111 25249 Face 45676 23414 22952 24105 Face 45677 24555 24260 24526 Face 45678 23586 14312 23828 Face 45679 25041 24899 23083 Face 45680 21580 23526 21984 Face 45681 13816 25027 13828 Face 45682 23985 22082 23617 Face 45683 24850 24986 24849 Face 45684 25421 29851 25422 Face 45685 23623 22934 23472 Face 45686 23975 29581 27099 Face 45687 25166 25027 13816 Face 45688 34748 34499 34516 Face 45689 21566 23398 23385 Face 45690 15573 15574 15716 Face 45691 7688 10962 8362 Face 45692 24723 24266 12976 Face 45693 19857 22925 19856 Face 45694 24088 24212 23242 Face 45695 24146 23663 20305 Face 45696 22960 3442 19592 Face 45697 24073 11652 20691 Face 45698 23667 11668 25329 Face 45699 23490 23677 24779 Face 45700 11668 19422 25329 Face 45701 23307 24575 21987 Face 45702 23049 23252 24151 Face 45703 22982 22798 23200 Face 45704 24619 24724 23708 Face 45705 20778 21138 22894 Face 45706 24074 22797 22972 Face 45707 23608 23609 20236 Face 45708 20320 23108 24478 Face 45709 24616 23209 23373 Face 45710 20236 20320 24478 Face 45711 23570 22509 2131 Face 45712 22747 24616 23373 Face 45713 23346 21984 23629 Face 45714 22895 23617 25084 Face 45715 23653 23570 2131 Face 45716 24485 23847 22817 Face 45717 18872 23381 24335 Face 45718 21394 12978 25056 Face 45719 23149 23439 25140 Face 45720 9280 23628 11833 Face 45721 31216 31215 31116 Face 45722 25220 25356 25219 Face 45723 22769 22999 23969 Face 45724 24358 21580 23346 Face 45725 23337 23336 24335 Face 45726 21984 22894 23629 Face 45727 23554 21580 24745 Face 45728 111 3441 3074 Face 45729 21580 21984 23346 Face 45730 32515 7233 7232 Face 45731 34017 34143 34016 Face 45732 20083 26412 20003 Face 45733 28420 21854 21009 Face 45734 25167 25305 25166 Face 45735 19857 19932 19931 Face 45736 34361 34356 34347 Face 45737 25197 23958 27129 Face 45738 24058 24059 22684 Face 45739 12770 12769 12679 Face 45740 22509 23554 2131 Face 45741 21580 24358 24745 Face 45742 23902 24748 12168 Face 45743 24996 24423 21198 Face 45744 23663 21505 20305 Face 45745 23525 21486 24353 Face 45746 22729 22734 22845 Face 45747 24328 20936 22755 Face 45748 25392 25393 23767 Face 45749 25057 24328 22755 Face 45750 22929 23623 23472 Face 45751 23941 24938 21137 Face 45752 21509 21508 24861 Face 45753 12770 12679 12680 Face 45754 19771 14372 19770 Face 45755 4217 23996 1455 Face 45756 24707 15864 24708 Face 45757 13255 24295 24294 Face 45758 24570 24571 23846 Face 45759 23108 24616 22747 Face 45760 23900 12552 24536 Face 45761 20778 21139 23581 Face 45762 23027 23028 24329 Face 45763 19500 14977 24329 Face 45764 30890 30991 30990 Face 45765 25237 25374 25373 Face 45766 22848 24943 24916 Face 45767 21393 21026 25329 Face 45768 6591 24453 21047 Face 45769 24861 23037 23043 Face 45770 25117 25256 25255 Face 45771 25309 23059 24419 Face 45772 24295 14772 22756 Face 45773 24294 24295 22756 Face 45774 14772 24415 24680 Face 45775 5210 14930 583 Face 45776 22756 14772 24680 Face 45777 21489 21192 24019 Face 45778 24635 24662 23748 Face 45779 22446 24907 23292 Face 45780 31734 31733 31619 Face 45781 32184 32185 32288 Face 45782 34044 18418 33426 Face 45783 23744 11730 23669 Face 45784 27371 26071 24246 Face 45785 24893 21795 23097 Face 45786 20908 11546 21887 Face 45787 24399 24394 27261 Face 45788 24415 24399 24680 Face 45789 23352 23860 22061 Face 45790 25366 11912 21964 Face 45791 20305 24722 24583 Face 45792 15450 16339 20408 Face 45793 22081 23843 24616 Face 45794 24152 23522 22988 Face 45795 34713 34708 34775 Face 45796 21509 24861 24860 Face 45797 20936 24328 23636 Face 45798 23035 24765 22830 Face 45799 23739 23035 24328 Face 45800 24229 23739 24328 Face 45801 16501 23941 21137 Face 45802 23729 16501 21137 Face 45803 21770 4074 22275 Face 45804 24756 24029 25403 Face 45805 25192 25327 23517 Face 45806 22750 23459 24019 Face 45807 15572 15714 15571 Face 45808 22943 23128 23122 Face 45809 24560 24561 22546 Face 45810 23796 23842 23947 Face 45811 19936 23321 23452 Face 45812 19275 13170 23741 Face 45813 20602 25174 19996 Face 45814 23373 23209 23653 Face 45815 23617 23053 25084 Face 45816 22780 22179 24107 Face 45817 25035 23637 9333 Face 45818 23061 23608 20405 Face 45819 25187 22695 19941 Face 45820 23818 24721 23821 Face 45821 23287 23091 23882 Face 45822 25299 24395 23545 Face 45823 11433 21414 11514 Face 45824 24551 23583 24215 Face 45825 22707 23962 11411 Face 45826 23530 24748 23902 Face 45827 25285 29746 24634 Face 45828 25374 25375 23839 Face 45829 22846 22984 25296 Face 45830 28433 9055 13737 Face 45831 20753 24324 22798 Face 45832 20753 25286 24324 Face 45833 25056 24603 24330 Face 45834 22804 23175 23038 Face 45835 24575 24125 24529 Face 45836 15017 14890 14891 Face 45837 12003 24188 24314 Face 45838 29994 30055 29993 Face 45839 25085 20962 12951 Face 45840 23816 23123 21887 Face 45841 23658 23816 21887 Face 45842 19681 20490 23134 Face 45843 34703 23816 23930 Face 45844 24086 24810 24556 Face 45845 25195 25056 24330 Face 45846 584 23625 21770 Face 45847 23236 23084 21508 Face 45848 24330 24603 16872 Face 45849 24326 25320 20602 Face 45850 22792 25039 23611 Face 45851 24603 22887 16872 Face 45852 23858 24152 22988 Face 45853 24810 24336 24556 Face 45854 23730 23228 23229 Face 45855 25318 23621 23514 Face 45856 23636 23035 22830 Face 45857 24911 25048 22742 Face 45858 23010 11572 25333 Face 45859 12195 12109 34261 Face 45860 27445 24878 22782 Face 45861 21794 21328 19940 Face 45862 21795 21794 19940 Face 45863 24027 20927 24893 Face 45864 20689 24732 24304 Face 45865 22984 22714 21968 Face 45866 20320 20237 23108 Face 45867 25270 24779 25269 Face 45868 11514 25318 23514 Face 45869 19928 23384 19854 Face 45870 12168 23349 24421 Face 45871 19941 24233 23084 Face 45872 22795 23527 23609 Face 45873 24829 24964 24963 Face 45874 28549 28550 27757 Face 45875 23268 23301 24585 Face 45876 22937 21772 21676 Face 45877 24031 24325 24472 Face 45878 24854 24865 25320 Face 45879 24264 23793 23792 Face 45880 29789 24490 22983 Face 45881 26558 26184 7923 Face 45882 24399 24398 24680 Face 45883 32344 32343 32237 Face 45884 14566 14565 14448 Face 45885 22148 22244 23168 Face 45886 34827 28363 34687 Face 45887 22686 25310 21139 Face 45888 20429 20515 23524 Face 45889 23637 24898 23739 Face 45890 24183 24184 24533 Face 45891 13171 23658 11546 Face 45892 21011 11513 24172 Face 45893 15027 11831 11832 Face 45894 25271 25270 25131 Face 45895 24779 23714 21419 Face 45896 23903 23469 23252 Face 45897 34494 34354 34352 Face 45898 23817 23819 24487 Face 45899 13171 23930 23658 Face 45900 19712 19713 19795 Face 45901 29909 29908 29854 Face 45902 32126 32125 32021 Face 45903 25085 13041 13040 Face 45904 19312 17772 17422 Face 45905 11048 20535 14773 Face 45906 34262 34261 34138 Face 45907 34702 34666 34813 Face 45908 700 701 266 Face 45909 20759 23903 23252 Face 45910 14980 5213 5073 Face 45911 24879 22769 25187 Face 45912 13133 13132 22913 Face 45913 6155 257 550 Face 45914 24987 25126 24986 Face 45915 11669 25008 20935 Face 45916 25279 23419 23729 Face 45917 23634 25059 20002 Face 45918 21853 24942 13308 Face 45919 15450 20408 24580 Face 45920 19314 22082 23985 Face 45921 24463 19314 23985 Face 45922 25276 21505 23663 Face 45923 12259 25276 23663 Face 45924 22791 25008 11669 Face 45925 21505 25276 24723 Face 45926 23605 24812 24813 Face 45927 25371 24591 23646 Face 45928 22981 23092 24280 Face 45929 33223 33222 33087 Face 45930 24157 23092 23980 Face 45931 24900 24157 23980 Face 45932 24886 24887 19618 Face 45933 20603 21325 23389 Face 45934 13358 14651 23998 Face 45935 34122 34121 33996 Face 45936 23931 22854 24735 Face 45937 24909 24910 24501 Face 45938 21326 25403 25266 Face 45939 19422 21393 25329 Face 45940 23608 20236 20405 Face 45941 20260 23874 20343 Face 45942 24802 23260 24746 Face 45943 20156 22702 20669 Face 45944 23743 23049 22833 Face 45945 19712 19794 19711 Face 45946 22702 22711 20669 Face 45947 24732 23386 24749 Face 45948 15429 24991 24990 Face 45949 22733 23740 23737 Face 45950 25051 22998 15660 Face 45951 25132 25271 25131 Face 45952 22985 19320 24641 Face 45953 24470 26933 24194 Face 45954 27012 20955 11573 Face 45955 25083 21412 24003 Face 45956 23082 24157 24900 Face 45957 19618 23082 24900 Face 45958 22082 22257 16340 Face 45959 22257 22353 16340 Face 45960 22257 22715 23750 Face 45961 22353 22257 23750 Face 45962 25374 23839 23512 Face 45963 11330 24757 23429 Face 45964 24571 23965 23846 Face 45965 23472 22934 23091 Face 45966 23251 23254 24570 Face 45967 34676 10857 11385 Face 45968 21865 22158 21768 Face 45969 11349 29821 29820 Face 45970 29823 22996 29824 Face 45971 23005 25317 23507 Face 45972 25256 25393 25392 Face 45973 24963 24964 25102 Face 45974 19624 19542 19543 Face 45975 20874 11348 25041 Face 45976 23913 23957 23876 Face 45977 22910 24305 23499 Face 45978 21488 12622 24771 Face 45979 13263 21599 24301 Face 45980 22800 22811 23812 Face 45981 25196 24229 25057 Face 45982 22431 22791 11997 Face 45983 24229 24328 25057 Face 45984 22882 24875 20927 Face 45985 24310 11329 25291 Face 45986 22702 23620 22711 Face 45987 22858 20069 23411 Face 45988 20780 20869 24640 Face 45989 23977 24165 25079 Face 45990 23255 23260 24572 Face 45991 25375 24265 23839 Face 45992 24909 24501 22855 Face 45993 20779 23761 24857 Face 45994 31265 31368 31264 Face 45995 22776 24468 21704 Face 45996 23890 25156 23779 Face 45997 22939 23005 23507 Face 45998 22720 584 13170 Face 45999 32398 32509 32508 Face 46000 20407 4588 22848 Face 46001 23961 4203 24454 Face 46002 22952 22964 20601 Face 46003 21987 24575 24529 Face 46004 24688 24824 24823 Face 46005 23956 23100 22079 Face 46006 3715 25353 25352 Face 46007 23046 24359 20492 Face 46008 24151 25186 25047 Face 46009 22711 23049 23743 Face 46010 23716 23741 23856 Face 46011 22275 24271 22462 Face 46012 24823 24958 24957 Face 46013 23741 22275 22462 Face 46014 20080 20081 20310 Face 46015 11995 25078 24449 Face 46016 13042 13041 12951 Face 46017 30490 30575 30489 Face 46018 22720 13170 19275 Face 46019 24945 25190 23516 Face 46020 23729 21137 21046 Face 46021 22713 20904 23155 Face 46022 19686 19770 19769 Face 46023 23609 23527 20320 Face 46024 24361 23764 22904 Face 46025 25376 25377 24298 Face 46026 25375 25376 24265 Face 46027 23840 23081 22811 Face 46028 21395 21488 24771 Face 46029 25033 25173 22908 Face 46030 22968 25296 23462 Face 46031 12797 12257 23817 Face 46032 27251 27244 24301 Face 46033 20962 12953 12952 Face 46034 23723 19499 23724 Face 46035 24266 13066 24815 Face 46036 24987 24988 25126 Face 46037 25265 25264 25125 Face 46038 24298 23203 23961 Face 46039 11892 21025 11253 Face 46040 25402 25401 25264 Face 46041 23663 24146 22176 Face 46042 11589 23018 23200 Face 46043 24326 19996 24852 Face 46044 24441 22901 23918 Face 46045 23883 12861 20962 Face 46046 18866 13391 2807 Face 46047 119 9540 23795 Face 46048 11012 9190 12935 Face 46049 22834 14765 20607 Face 46050 23625 21985 23834 Face 46051 584 21770 13170 Face 46052 20607 22720 19275 Face 46053 24088 23242 23113 Face 46054 24771 12622 23408 Face 46055 24136 24140 25331 Face 46056 25050 23149 25000 Face 46057 22877 23636 22995 Face 46058 24730 23595 23778 Face 46059 22965 22702 24484 Face 46060 1467 19499 24484 Face 46061 20669 22711 23743 Face 46062 23049 24151 22833 Face 46063 4074 24129 24271 Face 46064 22275 4074 24271 Face 46065 30697 30698 30796 Face 46066 4080 20960 9632 Face 46067 19273 23898 14887 Face 46068 24538 23889 22652 Face 46069 11371 24249 11370 Face 46070 23277 24672 24673 Face 46071 20258 10489 10092 Face 46072 22908 22909 23886 Face 46073 24141 24137 22850 Face 46074 4365 12886 23855 Face 46075 24806 24802 24768 Face 46076 22462 4471 22741 Face 46077 22765 22685 13255 Face 46078 25029 22765 12679 Face 46079 22685 24296 24295 Face 46080 13255 22685 24295 Face 46081 24296 12275 14772 Face 46082 24295 24296 14772 Face 46083 24416 24415 14772 Face 46084 12275 24416 14772 Face 46085 24727 23338 24003 Face 46086 23207 16337 22530 Face 46087 23832 23833 24993 Face 46088 22812 23833 23832 Face 46089 12609 12608 24744 Face 46090 23795 9540 7722 Face 46091 23085 24223 20081 Face 46092 20077 22767 20581 Face 46093 25186 25185 11749 Face 46094 19499 1467 23724 Face 46095 30505 30590 30589 Face 46096 24722 24723 12976 Face 46097 23341 23096 23847 Face 46098 24208 21322 11433 Face 46099 23874 23876 20343 Face 46100 24179 23977 24178 Face 46101 31163 31162 31063 Face 46102 25848 23425 23506 Face 46103 24416 24394 24415 Face 46104 2426 24456 24455 Face 46105 23831 24456 22826 Face 46106 25357 25356 25220 Face 46107 24898 22603 24765 Face 46108 24141 25196 24137 Face 46109 23439 25141 25140 Face 46110 22704 23573 23615 Face 46111 11511 24746 23976 Face 46112 25215 25076 350 Face 46113 23446 24678 24677 Face 46114 18866 2807 2938 Face 46115 24233 23149 25050 Face 46116 24411 19932 19857 Face 46117 21412 24053 24592 Face 46118 22702 20156 24484 Face 46119 19499 22965 24484 Face 46120 25045 24482 12082 Face 46121 24482 23344 23345 Face 46122 23723 23724 24129 Face 46123 4074 23723 24129 Face 46124 23895 23380 23280 Face 46125 23655 22899 24044 Face 46126 24758 24892 25161 Face 46127 11866 19679 23921 Face 46128 31649 16924 33414 Face 46129 21566 22805 23398 Face 46130 24693 24829 24828 Face 46131 22706 24425 24758 Face 46132 23081 22812 22811 Face 46133 22811 22812 23832 Face 46134 22850 22556 24556 Face 46135 24437 24870 24436 Face 46136 23691 23062 23063 Face 46137 23762 24936 24906 Face 46138 23429 23113 23749 Face 46139 21985 25001 20140 Face 46140 23509 23429 23749 Face 46141 24994 23096 23341 Face 46142 23336 24186 24335 Face 46143 22772 22775 23776 Face 46144 24993 24994 23341 Face 46145 24901 25038 24023 Face 46146 25173 22909 22908 Face 46147 23345 25310 22686 Face 46148 25268 21327 25267 Face 46149 24801 24945 24755 Face 46150 24083 24910 24909 Face 46151 24949 24951 23488 Face 46152 23714 23817 24487 Face 46153 22762 23890 23779 Face 46154 29213 29341 13628 Face 46155 24271 24129 12190 Face 46156 23537 23608 23061 Face 46157 22833 24151 25047 Face 46158 23918 24289 13391 Face 46159 24036 14638 25034 Face 46160 23001 24668 24669 Face 46161 21966 24034 21604 Face 46162 20341 24302 23502 Face 46163 23502 24302 23840 Face 46164 20258 20341 23502 Face 46165 24302 23081 23840 Face 46166 11749 24909 25046 Face 46167 24695 16496 24696 Face 46168 23642 10203 23745 Face 46169 24501 23414 23415 Face 46170 23968 24441 24486 Face 46171 23100 24586 20781 Face 46172 21235 21234 24148 Face 46173 12082 24353 23382 Face 46174 24309 24995 21984 Face 46175 23768 21235 24148 Face 46176 23629 12702 21321 Face 46177 23526 24309 21984 Face 46178 20579 11668 23667 Face 46179 24990 25129 24989 Face 46180 23813 23919 24311 Face 46181 22935 23521 23520 Face 46182 25182 20115 20780 Face 46183 23085 23184 24223 Face 46184 23781 23811 24949 Face 46185 24951 23654 23488 Face 46186 4588 24943 22848 Face 46187 23833 24994 24993 Face 46188 24850 24849 15573 Face 46189 25129 25128 24989 Face 46190 23961 24454 13071 Face 46191 25308 24344 22703 Face 46192 33888 34014 33887 Face 46193 25259 25396 25395 Face 46194 23676 16872 22956 Face 46195 11836 19679 11866 Face 46196 22836 23561 11140 Face 46197 23628 16176 11833 Face 46198 23096 24637 23847 Face 46199 23914 11775 23797 Face 46200 22697 22696 23455 Face 46201 22896 22720 20607 Face 46202 23859 19684 23591 Face 46203 24690 24826 24825 Face 46204 25241 25242 25378 Face 46205 15332 15195 15196 Face 46206 12257 12345 23819 Face 46207 25258 25259 25395 Face 46208 23080 23076 24428 Face 46209 23677 23820 23714 Face 46210 23248 23247 23192 Face 46211 13308 24018 12257 Face 46212 8934 11410 11255 Face 46213 25104 25105 25243 Face 46214 25105 25244 25243 Face 46215 23084 24233 25050 Face 46216 24275 22780 24107 Face 46217 23847 24637 23884 Face 46218 21660 20963 22743 Face 46219 22989 25293 22860 Face 46220 23458 23234 24080 Face 46221 19500 23537 14977 Face 46222 24860 24861 23043 Face 46223 24680 12234 12322 Face 46224 15066 21962 22059 Face 46225 24889 12169 23082 Face 46226 28827 20661 25564 Face 46227 25006 22735 24903 Face 46228 22777 22748 22733 Face 46229 21050 21049 25006 Face 46230 22735 22777 24903 Face 46231 11184 11254 21050 Face 46232 21049 22735 25006 Face 46233 25268 25267 25128 Face 46234 24483 7722 23760 Face 46235 22850 24137 22556 Face 46236 22929 23472 23153 Face 46237 26783 26669 20100 Face 46238 25119 25120 25258 Face 46239 24407 23088 23829 Face 46240 22677 22727 19769 Face 46241 23328 23399 4617 Face 46242 24749 23386 22710 Face 46243 23519 23520 23487 Face 46244 11513 24171 24172 Face 46245 31497 31606 31605 Face 46246 25279 23729 11998 Face 46247 24622 24268 24281 Face 46248 25111 25250 25249 Face 46249 23001 11914 24668 Face 46250 22771 22772 23772 Face 46251 23776 24948 24947 Face 46252 23624 23625 584 Face 46253 24803 22896 20607 Face 46254 24960 25099 25098 Face 46255 23525 23345 21486 Face 46256 25138 28830 24154 Face 46257 25125 25264 25124 Face 46258 20323 23688 11574 Face 46259 23831 22826 24058 Face 46260 24870 20696 24436 Face 46261 24724 22932 23708 Face 46262 24729 23277 24673 Face 46263 21966 24588 24034 Face 46264 23469 23266 24101 Face 46265 25120 25259 25258 Face 46266 23266 25184 25185 Face 46267 21417 24756 21326 Face 46268 22806 23778 23591 Face 46269 23811 24951 24949 Face 46270 20758 20668 29146 Face 46271 22715 11670 15575 Face 46272 32820 32819 32686 Face 46273 24318 23467 22085 Face 46274 23898 14765 14887 Face 46275 8748 15038 23010 Face 46276 4874 25076 25075 Face 46277 21145 19920 24040 Face 46278 24906 19920 21145 Face 46279 24903 22777 22733 Face 46280 22748 23751 23740 Face 46281 20098 11748 24051 Face 46282 22994 20098 24051 Face 46283 11748 20098 23531 Face 46284 20098 23038 23531 Face 46285 23531 23038 23176 Face 46286 23038 23175 23176 Face 46287 23685 20080 23769 Face 46288 24493 24627 23176 Face 46289 12611 22870 25355 Face 46290 25356 25355 25219 Face 46291 24151 24101 25186 Face 46292 25298 25274 24121 Face 46293 23252 23469 24101 Face 46294 25184 23461 24083 Face 46295 24101 23266 25185 Face 46296 23461 24777 24910 Face 46297 25185 25184 24083 Face 46298 23718 23733 24886 Face 46299 24083 23461 24910 Face 46300 22700 22710 23718 Face 46301 24887 23082 19618 Face 46302 22780 24329 22179 Face 46303 23538 25035 22179 Face 46304 19857 19931 22925 Face 46305 25164 24479 23685 Face 46306 25164 23685 23686 Face 46307 20868 25164 23686 Face 46308 23461 24636 24777 Face 46309 19505 23624 584 Face 46310 25045 12082 24632 Face 46311 21138 20778 23498 Face 46312 22696 23454 23455 Face 46313 12023 11938 34259 Face 46314 24884 22998 25051 Face 46315 24881 24884 25051 Face 46316 24329 22780 24275 Face 46317 23820 23817 23714 Face 46318 22715 15575 22767 Face 46319 23733 24887 24886 Face 46320 23750 22715 22767 Face 46321 15575 23556 22921 Face 46322 22767 15575 22921 Face 46323 23556 22988 22935 Face 46324 22921 23556 22935 Face 46325 24358 19997 23237 Face 46326 11650 22448 21210 Face 46327 21699 21794 24875 Face 46328 14971 23316 23808 Face 46329 24482 23525 12082 Face 46330 24948 22178 20342 Face 46331 23581 24210 24231 Face 46332 24944 2131 23237 Face 46333 24890 24906 21145 Face 46334 19920 22862 24040 Face 46335 1096 24036 979 Face 46336 23836 23835 23036 Face 46337 25024 21986 23919 Face 46338 1096 979 13358 Face 46339 24036 23036 979 Face 46340 20195 20150 19509 Face 46341 23470 23234 23389 Face 46342 24949 23488 22178 Face 46343 23084 25050 21508 Face 46344 25128 25127 24988 Face 46345 23236 23256 14848 Face 46346 23541 23542 22912 Face 46347 16347 23634 12763 Face 46348 24988 24987 24851 Face 46349 24840 24975 24974 Face 46350 25320 19941 20602 Face 46351 25320 24326 24853 Face 46352 24487 23819 21417 Face 46353 23522 23521 22935 Face 46354 24692 16657 24693 Face 46355 25226 5494 1604 Face 46356 21393 23076 23080 Face 46357 25170 25217 20787 Face 46358 11832 11831 23319 Face 46359 11831 24424 23319 Face 46360 13158 28574 13157 Face 46361 25237 25238 25374 Face 46362 11494 5373 1898 Face 46363 23061 20405 24876 Face 46364 25085 21053 20962 Face 46365 8362 11255 10092 Face 46366 21053 25043 23883 Face 46367 20962 21053 23883 Face 46368 25043 24717 25029 Face 46369 23883 25043 25029 Face 46370 24717 14259 22765 Face 46371 25029 24717 22765 Face 46372 14259 21695 22685 Face 46373 22765 14259 22685 Face 46374 21695 24297 24296 Face 46375 22685 21695 24296 Face 46376 4023 25027 25166 Face 46377 23834 20140 23723 Face 46378 23028 23027 24017 Face 46379 23760 7722 11588 Face 46380 24036 23836 23036 Face 46381 22994 24051 23835 Face 46382 23751 24906 24890 Face 46383 24778 22763 20001 Face 46384 23757 23653 24944 Face 46385 13740 23748 24499 Face 46386 25040 23664 22771 Face 46387 25333 23966 24090 Face 46388 23184 24483 24223 Face 46389 23025 24356 23863 Face 46390 12345 24017 24140 Face 46391 24329 14977 22179 Face 46392 24306 12275 24296 Face 46393 24297 24306 24296 Face 46394 24282 24416 12275 Face 46395 24306 24282 12275 Face 46396 24393 24394 24416 Face 46397 24282 24393 24416 Face 46398 19941 22695 24233 Face 46399 23819 12345 23818 Face 46400 24861 24999 23037 Face 46401 23157 21870 22683 Face 46402 21583 21489 23459 Face 46403 21145 24040 24280 Face 46404 24155 24278 19927 Face 46405 24947 24948 20342 Face 46406 23772 23776 24947 Face 46407 1651 5404 4726 Face 46408 20935 23691 23063 Face 46409 20405 20236 21606 Face 46410 23764 22762 23779 Face 46411 18437 1021 17631 Face 46412 24031 24472 23319 Face 46413 5336 28031 20551 Face 46414 14372 19771 19772 Face 46415 21768 21206 21296 Face 46416 24036 1096 14638 Face 46417 24729 24673 24674 Face 46418 23604 24618 24611 Face 46419 21051 20176 24733 Face 46420 22959 24108 24102 Face 46421 24233 23026 23149 Face 46422 23234 24150 23389 Face 46423 27147 23865 24599 Face 46424 25363 12791 22943 Face 46425 22832 23372 23441 Face 46426 23520 23407 23487 Face 46427 22852 25304 23702 Face 46428 24100 24630 23428 Face 46429 25142 25282 23900 Face 46430 23526 21580 23554 Face 46431 32591 32718 32590 Face 46432 23382 24353 20897 Face 46433 24899 23728 16501 Face 46434 20400 22962 9066 Face 46435 23893 24938 23941 Face 46436 24988 25127 25126 Face 46437 24486 24440 24439 Face 46438 25049 24486 24439 Face 46439 11593 23721 20960 Face 46440 24386 22891 24666 Face 46441 22999 24555 23969 Face 46442 23554 24745 2131 Face 46443 27167 23782 27166 Face 46444 25224 25225 25361 Face 46445 22448 23207 21210 Face 46446 23538 23061 24203 Face 46447 23209 23570 23653 Face 46448 25035 23538 24203 Face 46449 20237 22081 23108 Face 46450 24326 24852 24853 Face 46451 14977 23538 22179 Face 46452 24992 24993 23758 Face 46453 24274 23001 24669 Face 46454 25245 25246 25382 Face 46455 22919 21206 21768 Face 46456 22950 24102 24099 Face 46457 23733 23737 24887 Face 46458 23625 23834 21770 Face 46459 24825 24826 24960 Face 46460 16872 23606 22956 Face 46461 11996 11913 22801 Face 46462 24330 16872 23676 Face 46463 25304 24091 24100 Face 46464 7628 14848 24332 Face 46465 24433 11513 21011 Face 46466 21417 23818 24756 Face 46467 24040 22862 23291 Face 46468 23740 23751 24890 Face 46469 19505 584 22720 Face 46470 22896 19505 22720 Face 46471 14222 20310 11252 Face 46472 22772 23776 23772 Face 46473 24887 24889 23082 Face 46474 24475 24612 22692 Face 46475 24017 23027 24140 Face 46476 23027 24275 24140 Face 46477 12345 24721 23818 Face 46478 23027 24329 24275 Face 46479 21378 27387 28814 Face 46480 24721 12345 24140 Face 46481 12674 24907 22446 Face 46482 23580 23497 21321 Face 46483 24334 21675 12641 Face 46484 31316 31420 31315 Face 46485 22878 23539 22042 Face 46486 13631 24278 22677 Face 46487 24889 24890 12169 Face 46488 11328 20427 21140 Face 46489 11452 11622 11623 Face 46490 25332 23885 24461 Face 46491 23026 23439 23149 Face 46492 24231 24210 12443 Face 46493 20081 23410 20310 Face 46494 24642 21791 23815 Face 46495 23537 23538 14977 Face 46496 22620 11749 25046 Face 46497 19783 24185 24940 Face 46498 11255 20959 20341 Face 46499 31210 31209 31110 Face 46500 11161 14030 11099 Face 46501 20100 26669 26670 Face 46502 11327 11328 21140 Face 46503 24268 24128 23335 Face 46504 23659 23493 2820 Face 46505 21792 22684 19304 Face 46506 22730 25198 25059 Face 46507 29486 24672 24536 Face 46508 22684 24059 19304 Face 46509 25140 25141 24729 Face 46510 24676 23692 7462 Face 46511 24324 24624 24491 Face 46512 25018 24058 22684 Face 46513 24710 24846 24845 Face 46514 23084 23236 25174 Face 46515 34690 34629 34800 Face 46516 14257 2894 695 Face 46517 25095 25096 25234 Face 46518 22845 22846 25296 Face 46519 19929 20009 20008 Face 46520 24474 25031 19928 Face 46521 13828 13827 13816 Face 46522 15532 333 23103 Face 46523 23133 23130 24770 Face 46524 33997 34122 33996 Face 46525 21049 21140 22735 Face 46526 23778 23595 23591 Face 46527 23516 23663 22176 Face 46528 24123 25302 24122 Face 46529 18692 2196 2068 Face 46530 25302 25298 24122 Face 46531 24632 23382 23407 Face 46532 12143 12144 24184 Face 46533 320 25322 8675 Face 46534 24117 23999 24629 Face 46535 16176 11457 11833 Face 46536 25046 22855 23766 Face 46537 24777 20001 20000 Face 46538 21770 23834 4074 Face 46539 19711 19793 19710 Face 46540 20001 23413 24728 Face 46541 24910 24777 20000 Face 46542 6389 24749 22700 Face 46543 20000 20001 24728 Face 46544 24304 24749 6389 Face 46545 22710 23733 23718 Face 46546 23500 24304 6389 Face 46547 24749 22710 22700 Face 46548 12082 23525 24353 Face 46549 11866 23921 11747 Face 46550 20115 20869 20780 Face 46551 13628 29341 13721 Face 46552 23499 24305 22707 Face 46553 26475 14656 15306 Face 46554 23808 22950 22949 Face 46555 24986 25125 25124 Face 46556 22061 21985 23625 Face 46557 23624 22061 23625 Face 46558 23686 23685 23769 Face 46559 22884 20958 20513 Face 46560 19996 25174 20697 Face 46561 24292 24192 24259 Face 46562 24670 22888 29353 Face 46563 24356 9280 23187 Face 46564 25283 25284 20016 Face 46565 24260 24204 22162 Face 46566 12169 24280 24157 Face 46567 23969 24555 24526 Face 46568 25031 24278 13631 Face 46569 20493 19500 24329 Face 46570 23452 23321 23451 Face 46571 11667 23352 23540 Face 46572 33357 33356 33220 Face 46573 33221 33357 33220 Face 46574 23202 23258 23571 Face 46575 22179 25035 9333 Face 46576 24994 25003 23096 Face 46577 24553 22972 19783 Face 46578 23488 23654 24277 Face 46579 23231 25304 22852 Face 46580 23812 24992 24951 Face 46581 22809 22800 22786 Face 46582 22800 23812 23811 Face 46583 25179 22809 22786 Face 46584 1204 10092 10489 Face 46585 20959 25147 24302 Face 46586 23091 23230 22923 Face 46587 9333 23637 23739 Face 46588 23199 22982 23200 Face 46589 21209 11866 11747 Face 46590 24911 24912 23521 Face 46591 22988 23522 22935 Face 46592 23522 24911 23521 Face 46593 22742 24632 24912 Face 46594 25737 23442 23443 Face 46595 19274 24504 23896 Face 46596 34277 34335 34577 Face 46597 13872 13887 13871 Face 46598 11467 34668 34833 Face 46599 11546 11045 13171 Face 46600 23128 23129 23351 Face 46601 23605 21100 24812 Face 46602 12674 21675 19302 Face 46603 25372 23598 24591 Face 46604 12793 22688 11673 Face 46605 23462 25145 25146 Face 46606 24591 23598 22985 Face 46607 4593 2528 5757 Face 46608 25172 11974 23734 Face 46609 23011 23064 20225 Face 46610 24024 13040 13039 Face 46611 25373 25374 23512 Face 46612 22756 12504 24294 Face 46613 5632 312 10380 Face 46614 23155 22804 23038 Face 46615 5142 5141 25358 Face 46616 25322 320 2772 Face 46617 12851 13581 21488 Face 46618 23836 22994 23835 Face 46619 7628 24332 12259 Face 46620 23043 24813 29755 Face 46621 24865 25187 25320 Face 46622 3318 22370 15591 Face 46623 20341 20959 24302 Face 46624 33870 33997 33869 Face 46625 25000 25140 21100 Face 46626 24024 25088 25085 Face 46627 19302 26757 18545 Face 46628 25088 20097 21053 Face 46629 25085 25088 21053 Face 46630 23344 24310 25291 Face 46631 20097 23406 25043 Face 46632 21053 20097 25043 Face 46633 25131 25270 25130 Face 46634 23406 20240 24717 Face 46635 25043 23406 24717 Face 46636 24460 14259 24717 Face 46637 20240 24460 24717 Face 46638 25190 24720 23731 Face 46639 20960 23721 9632 Face 46640 22815 23845 23833 Face 46641 15430 24990 24989 Face 46642 22964 20689 20601 Face 46643 15050 14401 14179 Face 46644 25250 25387 25386 Face 46645 22902 12704 23102 Face 46646 24421 25183 23266 Face 46647 25183 24636 23461 Face 46648 20080 20310 14222 Face 46649 23769 20080 14222 Face 46650 11252 22884 20513 Face 46651 20310 22884 11252 Face 46652 23501 24303 25040 Face 46653 20958 24303 23501 Face 46654 20513 20958 23501 Face 46655 23664 22772 22771 Face 46656 25180 24462 20868 Face 46657 24303 23664 25040 Face 46658 16872 22887 23606 Face 46659 24004 24462 25180 Face 46660 23256 21509 20604 Face 46661 24575 24342 24125 Face 46662 23969 24526 23026 Face 46663 25035 24203 21610 Face 46664 33619 33618 33491 Face 46665 23637 21610 22603 Face 46666 19062 20917 20809 Face 46667 13040 13041 13135 Face 46668 24721 24140 12254 Face 46669 24899 23888 23728 Face 46670 25333 23285 23966 Face 46671 24140 24275 25331 Face 46672 22941 8937 9389 Face 46673 21653 23642 19703 Face 46674 24380 11622 11452 Face 46675 20904 22713 21142 Face 46676 24632 12082 23382 Face 46677 25381 24087 23867 Face 46678 22754 21695 14259 Face 46679 24460 22754 14259 Face 46680 24173 24297 21695 Face 46681 21741 22257 22082 Face 46682 884 885 997 Face 46683 23476 23526 23554 Face 46684 11610 2149 24124 Face 46685 25385 25386 22789 Face 46686 23024 23342 19939 Face 46687 24831 24832 24966 Face 46688 22997 22719 23960 Face 46689 25188 23024 19939 Face 46690 22869 20693 23765 Face 46691 22794 24642 23383 Face 46692 20409 23261 19320 Face 46693 24496 24731 20782 Face 46694 14179 23269 23328 Face 46695 19320 23261 23720 Face 46696 23783 27280 27397 Face 46697 24988 15431 24989 Face 46698 22754 24173 21695 Face 46699 15574 24849 24984 Face 46700 25176 24306 24297 Face 46701 25187 22769 22695 Face 46702 24663 24664 21609 Face 46703 25014 22883 24546 Face 46704 22741 4471 14667 Face 46705 4471 20160 14667 Face 46706 24721 12254 23821 Face 46707 21606 24478 11895 Face 46708 22733 22748 23740 Face 46709 25147 25171 23081 Face 46710 25307 22776 21704 Face 46711 16496 24695 24694 Face 46712 24302 25147 23081 Face 46713 24173 25176 24297 Face 46714 20257 11650 22688 Face 46715 24283 24282 24306 Face 46716 25176 24283 24306 Face 46717 30054 30116 30053 Face 46718 24392 24393 24282 Face 46719 24283 24392 24282 Face 46720 23156 23349 12168 Face 46721 24599 24392 24738 Face 46722 24392 24599 24393 Face 46723 24184 11432 24533 Face 46724 12183 22730 23698 Face 46725 23702 24100 23428 Face 46726 23685 23689 20080 Face 46727 24630 11330 14301 Face 46728 22812 22815 23833 Face 46729 25267 21326 25266 Face 46730 23325 23409 22256 Face 46731 23845 25003 24994 Face 46732 34379 34487 34697 Face 46733 23981 22806 22727 Face 46734 21055 23438 20694 Face 46735 8748 23010 22730 Face 46736 25184 25183 23461 Face 46737 24636 24778 24777 Face 46738 23469 22693 23266 Face 46739 25183 25184 23266 Face 46740 22946 22693 23469 Face 46741 23903 22946 23469 Face 46742 23639 22946 23903 Face 46743 23435 23639 23903 Face 46744 24312 25001 21985 Face 46745 22061 24312 21985 Face 46746 24312 23639 23435 Face 46747 25001 24312 23435 Face 46748 23190 24004 25180 Face 46749 22693 24421 23266 Face 46750 24493 24004 23190 Face 46751 24462 25164 20868 Face 46752 23175 24493 23176 Face 46753 24627 24493 23190 Face 46754 17197 23050 16722 Face 46755 22714 23534 25143 Face 46756 22786 22800 23811 Face 46757 24801 24755 23562 Face 46758 25002 23993 21869 Face 46759 23630 22736 21048 Face 46760 20897 23476 22509 Face 46761 12584 22738 25302 Face 46762 24883 23257 22691 Face 46763 24867 24883 22691 Face 46764 23475 24021 23717 Face 46765 23256 23236 21509 Face 46766 16337 12797 23820 Face 46767 24102 25170 25169 Face 46768 32228 32334 32227 Face 46769 21985 20140 23834 Face 46770 20573 25564 20661 Face 46771 34605 34744 18421 Face 46772 23362 2932 12839 Face 46773 13568 13036 11922 Face 46774 23524 24149 23178 Face 46775 22789 20141 23233 Face 46776 20141 23231 23233 Face 46777 24967 25106 25105 Face 46778 28948 18731 20487 Face 46779 23342 23000 25018 Face 46780 19939 23342 25018 Face 46781 24504 22794 23383 Face 46782 22880 22794 24504 Face 46783 20693 24496 20782 Face 46784 33744 33743 33618 Face 46785 23830 21209 19919 Face 46786 22985 20409 19320 Face 46787 22933 23338 24727 Face 46788 23042 19763 24093 Face 46789 25137 22530 23677 Face 46790 24153 23283 20695 Face 46791 23828 24408 23944 Face 46792 24101 25185 25186 Face 46793 23819 23818 21417 Face 46794 32294 32400 32293 Face 46795 20869 24505 24640 Face 46796 6283 25189 11998 Face 46797 1383 24689 1714 Face 46798 22752 29743 23711 Face 46799 333 23161 23103 Face 46800 23939 24857 12534 Face 46801 19995 22431 11997 Face 46802 25171 22815 22812 Face 46803 25524 25617 25616 Face 46804 22448 20238 23207 Face 46805 23081 25171 22812 Face 46806 21395 23885 25332 Face 46807 32274 32273 32169 Face 46808 21675 12674 12641 Face 46809 21395 24771 24904 Face 46810 14686 22821 14808 Face 46811 24771 23408 23184 Face 46812 25221 699 698 Face 46813 1358 1693 24952 Face 46814 23885 21395 24904 Face 46815 9174 3852 9173 Face 46816 23408 23795 24483 Face 46817 24904 24771 23184 Face 46818 11547 7573 11469 Face 46819 20927 24875 24893 Face 46820 23184 23408 24483 Face 46821 23833 23845 24994 Face 46822 15575 24869 23556 Face 46823 24576 23873 21601 Face 46824 24211 27277 20621 Face 46825 21141 24665 24666 Face 46826 23414 24728 22952 Face 46827 22652 24020 23459 Face 46828 20957 21141 24666 Face 46829 22179 9333 24107 Face 46830 11329 21600 21694 Face 46831 24822 24823 24957 Face 46832 25097 25098 25236 Face 46833 24628 23156 12168 Face 46834 23418 20956 22736 Face 46835 20604 24860 24859 Face 46836 24859 24860 13066 Face 46837 25041 22737 24899 Face 46838 20234 20315 23070 Face 46839 24132 19997 25280 Face 46840 23716 23856 21028 Face 46841 23855 8748 12183 Face 46842 23741 22462 23856 Face 46843 23412 11254 11184 Face 46844 19997 24358 23418 Face 46845 24777 24778 20001 Face 46846 23413 23412 11184 Face 46847 22763 23412 23413 Face 46848 20001 22763 23413 Face 46849 32690 32823 32689 Face 46850 11254 21049 21050 Face 46851 24820 24955 24954 Face 46852 24697 16495 16333 Face 46853 24869 25153 23556 Face 46854 33223 33359 33222 Face 46855 24182 24183 24225 Face 46856 20013 24231 12443 Face 46857 17555 34053 17317 Face 46858 23413 11184 22964 Face 46859 24865 24879 25187 Face 46860 23011 6026 162 Face 46861 20225 417 20226 Face 46862 14030 11161 13199 Face 46863 25313 20783 24867 Face 46864 24713 20783 25313 Face 46865 11278 13107 14229 Face 46866 24565 24704 24703 Face 46867 25304 24100 23702 Face 46868 25248 25249 25385 Face 46869 12407 23205 12406 Face 46870 24696 24832 24831 Face 46871 24057 24058 25018 Face 46872 23000 24057 25018 Face 46873 19274 22880 24504 Face 46874 23268 24585 24574 Face 46875 24496 24211 24731 Face 46876 25264 25263 25124 Face 46877 23261 23830 23720 Face 46878 25371 25372 24591 Face 46879 22837 23353 23042 Face 46880 23032 22968 24780 Face 46881 23290 23524 23178 Face 46882 24537 21115 19422 Face 46883 24728 23413 22964 Face 46884 11184 21050 20689 Face 46885 23993 23336 21869 Face 46886 21419 24487 21327 Face 46887 23758 24485 23848 Face 46888 23654 23758 23848 Face 46889 24053 24054 24592 Face 46890 22984 23205 22714 Face 46891 15289 25133 25132 Face 46892 23812 23832 24992 Face 46893 3441 24822 24821 Face 46894 3636 20845 23285 Face 46895 22603 20927 24765 Face 46896 12234 12235 12323 Face 46897 22786 23811 23781 Face 46898 34563 34728 34718 Face 46899 20493 20408 19500 Face 46900 22775 22786 23781 Face 46901 25020 25323 13294 Face 46902 21837 24766 23537 Face 46903 19275 23741 23716 Face 46904 2772 25020 13294 Face 46905 34714 34429 34576 Face 46906 23156 20115 25182 Face 46907 23821 23822 24029 Face 46908 21699 22937 21328 Face 46909 22952 20601 20095 Face 46910 23135 23134 23078 Face 46911 20095 20601 23500 Face 46912 24105 22952 20095 Face 46913 20601 24304 23500 Face 46914 24911 22742 24912 Face 46915 29332 34524 34449 Face 46916 23476 23554 22509 Face 46917 23487 20897 23570 Face 46918 11913 22792 23611 Face 46919 25403 24029 24810 Face 46920 24964 25103 25102 Face 46921 6802 10247 34659 Face 46922 24213 22690 25330 Face 46923 24665 24387 24386 Face 46924 14651 15591 19273 Face 46925 22711 20759 23049 Face 46926 25291 21694 22910 Face 46927 25310 25291 22910 Face 46928 23344 25291 25310 Face 46929 23345 23344 25310 Face 46930 30019 30020 30081 Face 46931 23525 24482 23345 Face 46932 33088 33223 33087 Face 46933 24362 4588 20407 Face 46934 33088 33087 32953 Face 46935 19854 23384 19853 Face 46936 28940 22436 20652 Face 46937 3811 1604 5494 Face 46938 25226 25087 5494 Face 46939 31111 31210 31110 Face 46940 23781 24949 24948 Face 46941 4993 1204 10489 Face 46942 24984 25123 25122 Face 46943 24983 24984 25122 Face 46944 23252 24101 24151 Face 46945 24935 2159 4349 Face 46946 24666 24665 24386 Face 46947 25362 22943 20482 Face 46948 32822 32821 32688 Face 46949 13223 15243 13128 Face 46950 20176 22818 25007 Face 46951 25291 11329 21694 Face 46952 24143 22965 19499 Face 46953 24726 25179 22775 Face 46954 23555 22620 25044 Face 46955 12760 12759 12671 Face 46956 13130 23666 13131 Face 46957 23534 12316 25143 Face 46958 24693 16657 16656 Face 46959 22914 24048 24024 Face 46960 22913 22914 24024 Face 46961 24048 25089 25088 Face 46962 24024 24048 25088 Face 46963 25123 25262 25261 Face 46964 25122 25123 25261 Face 46965 25262 25399 25398 Face 46966 23466 23473 24683 Face 46967 23759 23473 23466 Face 46968 24683 24713 25313 Face 46969 20783 24883 24867 Face 46970 24839 24840 24974 Face 46971 24975 25114 25113 Face 46972 25386 20141 22789 Face 46973 25109 25110 25248 Face 46974 24695 24696 24831 Face 46975 24832 24967 24966 Face 46976 24057 23831 24058 Face 46977 23086 23024 25188 Face 46978 23262 23268 24574 Face 46979 24585 22719 22997 Face 46980 15430 15431 15570 Face 46981 32444 32445 32561 Face 46982 23598 20409 22985 Face 46983 24822 24957 24956 Face 46984 24736 24217 24737 Face 46985 23595 23859 23591 Face 46986 25182 25183 24421 Face 46987 24430 24431 24774 Face 46988 25274 25218 24119 Face 46989 11911 21964 14509 Face 46990 23993 24856 24186 Face 46991 24697 24696 16495 Face 46992 2528 4593 318 Face 46993 11773 11527 13756 Face 46994 34409 34420 34394 Face 46995 21698 24577 21697 Face 46996 699 25221 700 Face 46997 14972 15104 14971 Face 46998 11753 3636 11572 Face 46999 15038 11753 11572 Face 47000 1911 23647 1012 Face 47001 21229 20175 3822 Face 47002 20402 28948 20487 Face 47003 32839 32838 32705 Face 47004 22692 22699 23713 Face 47005 16339 21837 20408 Face 47006 23188 24330 23676 Face 47007 11811 24068 19434 Face 47008 23362 12839 28406 Face 47009 33620 33745 33619 Face 47010 23715 24884 24881 Face 47011 24712 15574 24848 Face 47012 2691 24192 29772 Face 47013 23752 12364 13566 Face 47014 23976 22885 22790 Face 47015 7722 11666 11588 Face 47016 24006 24279 20667 Face 47017 32332 32333 32444 Face 47018 25089 19999 20097 Face 47019 23979 23730 23229 Face 47020 25088 25089 20097 Face 47021 24675 23406 20097 Face 47022 19999 24675 20097 Face 47023 2131 24745 23237 Face 47024 23620 22702 22965 Face 47025 24449 25078 24450 Face 47026 23793 24545 15302 Face 47027 22958 23635 24000 Face 47028 16722 23050 19938 Face 47029 14886 19273 14887 Face 47030 32694 32693 32566 Face 47031 25267 25266 25127 Face 47032 14651 3318 15591 Face 47033 22910 21694 24305 Face 47034 21694 24593 24305 Face 47035 11890 11809 11891 Face 47036 24305 24593 23962 Face 47037 23818 23821 24756 Face 47038 22840 12620 24196 Face 47039 23503 20960 4080 Face 47040 21983 21233 25761 Face 47041 32718 32717 32590 Face 47042 22892 24047 12058 Face 47043 23160 23214 23213 Face 47044 23159 23160 23213 Face 47045 23214 23270 23269 Face 47046 23213 23214 23269 Face 47047 23270 23329 23328 Face 47048 23269 23270 23328 Face 47049 23400 23399 23328 Face 47050 23329 23400 23328 Face 47051 6732 34120 6733 Face 47052 23400 23480 23399 Face 47053 34609 34408 977 Face 47054 12316 12227 12228 Face 47055 24000 22908 22689 Face 47056 22814 22813 24480 Face 47057 24987 24986 24850 Face 47058 25332 24117 24327 Face 47059 15027 24209 11831 Face 47060 24357 21055 22856 Face 47061 20000 24728 23414 Face 47062 24880 22999 24879 Face 47063 23908 20240 23406 Face 47064 24358 23346 23418 Face 47065 24675 23908 23406 Face 47066 22866 24460 20240 Face 47067 23908 22866 20240 Face 47068 25261 25262 25398 Face 47069 25399 23031 25139 Face 47070 25398 25399 25139 Face 47071 23612 23759 19276 Face 47072 23343 23560 22897 Face 47073 20871 23759 23466 Face 47074 23473 24713 24683 Face 47075 24974 24975 25113 Face 47076 25253 25390 25389 Face 47077 25114 25253 25252 Face 47078 25113 25114 25252 Face 47079 25249 25386 25385 Face 47080 24971 25110 25109 Face 47081 24966 24967 25105 Face 47082 25106 25245 25244 Face 47083 23142 23086 25188 Face 47084 24206 23086 23142 Face 47085 24574 24585 22997 Face 47086 22719 24078 23960 Face 47087 17197 22704 17713 Face 47088 23288 22869 24322 Face 47089 24821 24822 24956 Face 47090 24957 25096 25095 Face 47091 22738 22734 25274 Face 47092 25298 22738 25274 Face 47093 20018 21793 24480 Face 47094 25009 19995 25011 Face 47095 11668 25011 19422 Face 47096 25011 24537 19422 Face 47097 14312 23827 23828 Face 47098 21420 24866 24773 Face 47099 3296 23949 14909 Face 47100 23949 12547 14909 Face 47101 23644 10595 11592 Face 47102 23882 20178 25036 Face 47103 20845 24213 23967 Face 47104 21054 23227 23228 Face 47105 23285 20845 23967 Face 47106 24213 25330 11910 Face 47107 24179 24178 12342 Face 47108 24144 22755 12977 Face 47109 2196 18692 2322 Face 47110 23622 19380 25178 Face 47111 13134 13039 13040 Face 47112 24099 24102 25169 Face 47113 21840 21839 22608 Face 47114 25402 25403 24810 Face 47115 11572 3636 23285 Face 47116 15591 24803 23898 Face 47117 14605 12270 9066 Face 47118 23999 24600 24462 Face 47119 15884 23168 23167 Face 47120 19544 19626 19625 Face 47121 25101 25240 25239 Face 47122 24186 11348 20874 Face 47123 25298 25302 22738 Face 47124 20515 20692 24149 Face 47125 23031 24166 23929 Face 47126 24814 24815 13066 Face 47127 22799 22754 24460 Face 47128 23438 23464 20694 Face 47129 22866 22799 24460 Face 47130 24174 24173 22754 Face 47131 22799 24174 22754 Face 47132 22705 25176 24173 Face 47133 24174 22705 24173 Face 47134 23689 20081 20080 Face 47135 23133 22928 23130 Face 47136 13886 13870 13871 Face 47137 15037 16339 15450 Face 47138 25139 23031 23929 Face 47139 25033 22908 24000 Face 47140 24877 21605 21699 Face 47141 19062 23107 23164 Face 47142 24766 22795 23609 Face 47143 24726 22775 22772 Face 47144 24166 23240 23241 Face 47145 24593 24475 23962 Face 47146 24413 24490 24548 Face 47147 19927 24278 25031 Face 47148 23929 24166 23241 Face 47149 25087 2046 1922 Face 47150 34760 34466 29408 Face 47151 32983 32982 32850 Face 47152 23103 23161 23160 Face 47153 31090 31189 31188 Face 47154 23161 23215 23214 Face 47155 23160 23161 23214 Face 47156 23215 23271 23270 Face 47157 23214 23215 23270 Face 47158 23271 23330 23329 Face 47159 23270 23271 23329 Face 47160 23401 23400 23329 Face 47161 23330 23401 23329 Face 47162 23481 23480 23400 Face 47163 23401 23481 23400 Face 47164 23564 23563 23480 Face 47165 23481 23564 23480 Face 47166 23408 12622 19 Face 47167 23564 23647 23563 Face 47168 23882 25036 23147 Face 47169 23692 23904 7462 Face 47170 24945 22924 24755 Face 47171 22980 11650 20257 Face 47172 24284 24283 25176 Face 47173 22705 24284 25176 Face 47174 24391 24392 24283 Face 47175 24183 24533 24225 Face 47176 19624 22986 19709 Face 47177 24842 24977 24976 Face 47178 23612 19276 23661 Face 47179 16964 29614 23379 Face 47180 23578 23661 28428 Face 47181 23759 20871 19276 Face 47182 25252 25253 25389 Face 47183 22746 23582 23299 Face 47184 25390 22746 23282 Face 47185 25389 25390 23282 Face 47186 24835 24836 24970 Face 47187 24700 24836 24835 Face 47188 24970 24971 25109 Face 47189 25110 25249 25248 Face 47190 25105 25106 25244 Face 47191 25245 25382 25381 Face 47192 24106 24206 23142 Face 47193 23040 24206 24106 Face 47194 24642 23815 23814 Face 47195 23383 24642 23814 Face 47196 20693 20782 23765 Face 47197 24118 23288 24939 Face 47198 24956 24957 25095 Face 47199 25096 25235 25234 Face 47200 24501 20000 23414 Face 47201 25111 25112 25250 Face 47202 11997 11669 24537 Face 47203 25011 11997 24537 Face 47204 24774 24480 23395 Face 47205 23657 24774 23395 Face 47206 24900 23980 24576 Face 47207 25280 22736 23630 Face 47208 14509 23949 3296 Face 47209 23129 14509 3296 Face 47210 24146 20305 22841 Face 47211 24007 24008 24554 Face 47212 31870 31977 31869 Face 47213 24145 21054 23744 Face 47214 11910 25330 22829 Face 47215 23967 24213 11910 Face 47216 24142 24144 12977 Face 47217 20936 23170 12977 Face 47218 25177 23622 25178 Face 47219 23622 23187 19380 Face 47220 23541 24145 23542 Face 47221 21054 23730 23744 Face 47222 15864 24568 16015 Face 47223 13828 25027 25026 Face 47224 1693 1358 473 Face 47225 12520 12519 12430 Face 47226 22937 24331 21772 Face 47227 23527 20237 20320 Face 47228 19280 25021 24602 Face 47229 23145 23199 23018 Face 47230 9737 9284 11784 Face 47231 19593 21935 20640 Face 47232 11378 34481 34595 Face 47233 22982 23032 20753 Face 47234 20095 23500 25005 Face 47235 11304 20551 28031 Face 47236 24898 24765 23035 Face 47237 24687 24823 24822 Face 47238 23240 24403 24267 Face 47239 23739 24898 23035 Face 47240 24284 24391 24283 Face 47241 24401 23808 22949 Face 47242 24739 24738 24391 Face 47243 24391 24738 24392 Face 47244 23743 23858 25153 Face 47245 23241 23240 24267 Face 47246 24230 22904 22806 Face 47247 22822 19624 23210 Face 47248 24585 24587 22719 Face 47249 12884 23009 24267 Face 47250 24403 12884 24267 Face 47251 23002 23083 23419 Face 47252 23389 21325 21324 Face 47253 23166 12187 23009 Face 47254 3811 1603 1604 Face 47255 23120 28091 23119 Face 47256 32123 32122 32018 Face 47257 23817 12257 23819 Face 47258 24601 24331 21605 Face 47259 11666 22818 20176 Face 47260 3060 550 15968 Face 47261 11666 7722 4993 Face 47262 23163 23162 16361 Face 47263 13036 11273 34455 Face 47264 11273 13036 13568 Face 47265 23162 23216 23215 Face 47266 23161 23162 23215 Face 47267 23216 23272 23271 Face 47268 23215 23216 23271 Face 47269 23272 23331 23330 Face 47270 23271 23272 23330 Face 47271 23331 23402 23401 Face 47272 23330 23331 23401 Face 47273 23402 23482 23481 Face 47274 23401 23402 23481 Face 47275 23565 23564 23481 Face 47276 23482 23565 23481 Face 47277 23648 23647 23564 Face 47278 23565 23648 23564 Face 47279 13255 12680 12679 Face 47280 23648 23752 23647 Face 47281 12884 23166 23009 Face 47282 24315 11995 24449 Face 47283 23751 23762 24906 Face 47284 23428 24630 14301 Face 47285 11330 23429 23509 Face 47286 23207 21661 16337 Face 47287 25084 24942 21853 Face 47288 24486 25049 22691 Face 47289 22887 22716 23606 Face 47290 23257 24486 22691 Face 47291 34601 34670 34743 Face 47292 19 119 23795 Face 47293 24346 23284 13452 Face 47294 24734 25058 24156 Face 47295 23282 22746 23299 Face 47296 24092 24346 13452 Face 47297 23582 24346 24092 Face 47298 23299 23582 24092 Face 47299 25255 25256 25392 Face 47300 21675 23283 19192 Face 47301 24699 24700 24835 Face 47302 24836 24971 24970 Face 47303 25244 25245 25381 Face 47304 12533 23587 14312 Face 47305 25382 12533 24087 Face 47306 25381 25382 24087 Face 47307 23877 23040 24106 Face 47308 23305 23306 24604 Face 47309 24061 24062 23814 Face 47310 23815 24061 23814 Face 47311 22869 23765 24322 Face 47312 23478 24118 19922 Face 47313 23720 23830 19919 Face 47314 21209 11747 23189 Face 47315 24205 23734 25632 Face 47316 23101 23369 25156 Face 47317 11669 20935 21115 Face 47318 24537 11669 21115 Face 47319 22813 23178 23458 Face 47320 14302 23824 25042 Face 47321 21230 21321 23417 Face 47322 1604 25228 25227 Face 47323 25149 23089 23607 Face 47324 22687 25149 23607 Face 47325 22176 24146 25312 Face 47326 24359 24308 22471 Face 47327 23947 23946 21565 Face 47328 24908 24488 22863 Face 47329 25330 23188 22829 Face 47330 11546 20908 11297 Face 47331 22755 20936 12977 Face 47332 23636 22877 23170 Face 47333 6809 16961 22435 Face 47334 24210 22707 11512 Face 47335 24759 25157 23545 Face 47336 9991 8781 1898 Face 47337 4365 4364 12886 Face 47338 20482 23122 11753 Face 47339 23514 23621 23460 Face 47340 25170 20787 23018 Face 47341 22882 24877 21699 Face 47342 20408 21837 19500 Face 47343 24137 24144 22556 Face 47344 23528 23750 20077 Face 47345 11282 12030 5767 Face 47346 19781 19861 19860 Face 47347 24780 25146 25286 Face 47348 25146 24181 24180 Face 47349 4069 2 2286 Face 47350 23325 24071 23409 Face 47351 23632 23746 23623 Face 47352 1921 1583 1471 Face 47353 4343 3827 25323 Face 47354 12861 12953 20962 Face 47355 23737 24889 24887 Face 47356 23167 23222 2788 Face 47357 19777 19778 19857 Face 47358 12430 12431 23551 Face 47359 23166 22876 24896 Face 47360 24965 24966 25104 Face 47361 21136 20257 15021 Face 47362 24903 22733 22731 Face 47363 23205 12407 23534 Face 47364 31807 31806 31694 Face 47365 23866 9898 11160 Face 47366 6802 9296 13092 Face 47367 24601 25002 21869 Face 47368 23024 23644 23342 Face 47369 24958 24959 25097 Face 47370 25037 23470 24481 Face 47371 25229 1604 1603 Face 47372 21890 24601 21605 Face 47373 23082 12169 24157 Face 47374 1922 5494 25087 Face 47375 25379 20428 11916 Face 47376 23542 23744 23669 Face 47377 25238 25375 25374 Face 47378 24304 24732 24749 Face 47379 31220 21465 28688 Face 47380 12187 23166 24896 Face 47381 23163 23217 23216 Face 47382 23162 23163 23216 Face 47383 23217 23273 23272 Face 47384 23216 23217 23272 Face 47385 23273 23332 23331 Face 47386 23272 23273 23331 Face 47387 23403 23402 23331 Face 47388 23332 23403 23331 Face 47389 23483 23482 23402 Face 47390 23403 23483 23402 Face 47391 23566 23565 23482 Face 47392 23483 23566 23482 Face 47393 23649 23648 23565 Face 47394 23566 23649 23565 Face 47395 23649 23753 23752 Face 47396 23648 23649 23752 Face 47397 21180 34667 20155 Face 47398 16787 16875 16786 Face 47399 22876 22945 22893 Face 47400 24439 13391 24438 Face 47401 13876 16119 15968 Face 47402 24567 24568 24706 Face 47403 25008 23691 20935 Face 47404 23590 24801 23562 Face 47405 24664 24677 21516 Face 47406 24768 24802 11511 Face 47407 22542 24773 24724 Face 47408 35 25323 10203 Face 47409 24544 24352 24339 Face 47410 21516 22542 24724 Face 47411 23705 23528 23527 Face 47412 22681 24544 24339 Face 47413 16173 24700 16331 Face 47414 23643 23530 22831 Face 47415 22676 22729 23709 Face 47416 16330 16173 16331 Face 47417 24087 12533 14312 Face 47418 23798 23286 23827 Face 47419 23587 23019 23827 Face 47420 14312 23587 23827 Face 47421 23306 24605 24604 Face 47422 22886 25303 23211 Face 47423 24605 23040 23877 Face 47424 24604 24605 23877 Face 47425 24422 24290 24062 Face 47426 24061 24422 24062 Face 47427 23288 24322 24939 Face 47428 11812 23478 22881 Face 47429 19919 21209 23189 Face 47430 11747 24104 24343 Face 47431 13039 13134 13133 Face 47432 24354 23101 23890 Face 47433 31472 31471 31367 Face 47434 34183 34180 33309 Face 47435 23588 14302 25042 Face 47436 22682 14302 23588 Face 47437 24156 24221 22816 Face 47438 23653 2131 24944 Face 47439 23392 10719 21891 Face 47440 31825 31824 31712 Face 47441 23730 21054 23228 Face 47442 24337 24339 23141 Face 47443 23552 23562 24754 Face 47444 24755 22924 23535 Face 47445 11895 22788 25002 Face 47446 23022 14331 14330 Face 47447 20936 23636 23170 Face 47448 3050 12905 11600 Face 47449 16708 24234 23196 Face 47450 23289 23290 22814 Face 47451 23242 25359 25327 Face 47452 22176 25312 23535 Face 47453 12885 20482 11753 Face 47454 23122 11829 3636 Face 47455 25169 25170 23018 Face 47456 7462 23112 22844 Face 47457 24069 24556 24190 Face 47458 24601 11895 25002 Face 47459 21237 24264 23792 Face 47460 23295 12534 25776 Face 47461 24123 12671 12582 Face 47462 24568 24707 24706 Face 47463 34382 34561 34314 Face 47464 24775 23640 24276 Face 47465 24590 24340 22883 Face 47466 1903 8967 24276 Face 47467 24547 24349 24546 Face 47468 24532 24413 11995 Face 47469 23294 24858 23984 Face 47470 23204 24532 11995 Face 47471 30274 30341 30273 Face 47472 24230 24361 22904 Face 47473 24396 23174 23231 Face 47474 24896 22876 22893 Face 47475 22713 23155 23038 Face 47476 32689 32822 32688 Face 47477 24162 24387 28957 Face 47478 1605 14605 22961 Face 47479 24943 23749 25053 Face 47480 20016 22783 24671 Face 47481 34263 33438 34262 Face 47482 4581 3933 179 Face 47483 24731 23874 20260 Face 47484 4364 25224 25361 Face 47485 24331 24601 21869 Face 47486 24993 23341 23758 Face 47487 23500 6389 24612 Face 47488 24526 24260 22162 Face 47489 2899 21653 2490 Face 47490 25226 25363 25362 Face 47491 31065 31164 31064 Face 47492 19314 21741 22082 Face 47493 21968 22714 25144 Face 47494 25001 24143 20140 Face 47495 25140 24729 21100 Face 47496 30086 30087 30148 Face 47497 32446 32445 32333 Face 47498 23164 23218 23217 Face 47499 23163 23164 23217 Face 47500 23218 23274 23273 Face 47501 23217 23218 23273 Face 47502 23333 23332 23273 Face 47503 23274 23333 23273 Face 47504 23404 23403 23332 Face 47505 23333 23404 23332 Face 47506 23484 23483 23403 Face 47507 23404 23484 23403 Face 47508 23567 23566 23483 Face 47509 23484 23567 23483 Face 47510 23567 23650 23649 Face 47511 23566 23567 23649 Face 47512 23650 23754 23753 Face 47513 23649 23650 23753 Face 47514 15152 15020 15021 Face 47515 29744 17261 23291 Face 47516 30966 31065 30965 Face 47517 33276 33411 6620 Face 47518 24348 24349 29793 Face 47519 34279 13579 29204 Face 47520 24206 24321 23086 Face 47521 21892 24428 23392 Face 47522 24235 24367 24366 Face 47523 24109 24235 10985 Face 47524 20758 24497 20668 Face 47525 26931 26932 20758 Face 47526 22651 22723 20321 Face 47527 24352 22933 6735 Face 47528 22278 22651 14033 Face 47529 22723 22722 20321 Face 47530 22278 14033 23045 Face 47531 23094 22278 23045 Face 47532 23019 23798 23827 Face 47533 22651 20321 14033 Face 47534 23094 23045 23286 Face 47535 23798 23094 23286 Face 47536 23467 25311 22086 Face 47537 22886 23211 23491 Face 47538 25303 23306 23305 Face 47539 25136 25303 23305 Face 47540 24597 24736 24290 Face 47541 24597 23144 24736 Face 47542 24422 24597 24290 Face 47543 23144 24217 24736 Face 47544 24118 24939 19922 Face 47545 11812 22881 24032 Face 47546 23189 11747 24343 Face 47547 24104 11832 21208 Face 47548 23369 23370 25733 Face 47549 22762 22728 23890 Face 47550 11413 23541 22912 Face 47551 22943 12791 23128 Face 47552 11912 22682 23588 Face 47553 25367 22682 11912 Face 47554 14509 20076 23949 Face 47555 23823 22080 12547 Face 47556 25227 25364 25363 Face 47557 19628 24033 19627 Face 47558 24631 24635 13740 Face 47559 23227 23983 22743 Face 47560 24754 24755 23535 Face 47561 21870 21966 21512 Face 47562 23366 21582 12532 Face 47563 18872 23982 23381 Face 47564 15302 695 11600 Face 47565 25395 25396 21229 Face 47566 25129 25268 25128 Face 47567 32706 32839 32705 Face 47568 22879 24139 23995 Face 47569 13351 20315 1205 Face 47570 24209 11830 11831 Face 47571 24308 23971 22471 Face 47572 24592 10842 21301 Face 47573 22975 21418 24002 Face 47574 23785 19859 19860 Face 47575 19859 23785 19858 Face 47576 24545 14257 695 Face 47577 19853 23384 14372 Face 47578 34691 34804 34600 Face 47579 23018 23199 23200 Face 47580 13633 13269 13857 Face 47581 16994 17087 16993 Face 47582 31762 31874 31761 Face 47583 23758 23341 24485 Face 47584 23965 23087 23936 Face 47585 23937 24071 23325 Face 47586 22911 23444 24730 Face 47587 24626 23463 11812 Face 47588 23764 23779 23619 Face 47589 22911 24730 23619 Face 47590 22904 23764 23619 Face 47591 14889 14888 14766 Face 47592 10489 22818 11666 Face 47593 25331 24275 24107 Face 47594 34305 34522 34297 Face 47595 22909 12340 23886 Face 47596 29757 24417 24815 Face 47597 23888 23630 23728 Face 47598 24401 14973 14972 Face 47599 21601 23873 25283 Face 47600 24556 22556 24190 Face 47601 19305 24528 24527 Face 47602 25160 19305 24527 Face 47603 24830 24965 24964 Face 47604 24018 23028 24017 Face 47605 22881 19922 24325 Face 47606 22855 24501 23415 Face 47607 24204 25282 25142 Face 47608 24611 24618 23258 Face 47609 24818 24720 25190 Face 47610 21854 25166 25305 Face 47611 13252 13345 13251 Face 47612 23107 23165 23164 Face 47613 7745 19703 312 Face 47614 23219 23218 23164 Face 47615 23165 23219 23164 Face 47616 23275 23274 23218 Face 47617 23219 23275 23218 Face 47618 23334 23333 23274 Face 47619 23219 28421 23275 Face 47620 23405 23404 23333 Face 47621 23275 23334 23274 Face 47622 23485 23484 23404 Face 47623 23405 23485 23404 Face 47624 23568 23567 23484 Face 47625 23485 23568 23484 Face 47626 23651 23650 23567 Face 47627 23568 23651 23567 Face 47628 23651 23755 23754 Face 47629 23650 23651 23754 Face 47630 23755 23870 23869 Face 47631 23754 23755 23869 Face 47632 23870 23988 23987 Face 47633 23869 23870 23987 Face 47634 23988 24110 24109 Face 47635 23987 23988 24109 Face 47636 24110 24236 24235 Face 47637 24109 24110 24235 Face 47638 24236 24368 24367 Face 47639 24235 24236 24367 Face 47640 11730 23744 23979 Face 47641 11409 26339 26455 Face 47642 1450 23140 23467 Face 47643 11589 23200 23146 Face 47644 12851 21488 21395 Face 47645 24369 26988 24368 Face 47646 25358 23855 24764 Face 47647 24950 25321 23440 Face 47648 25311 22902 22086 Face 47649 34622 34316 34829 Face 47650 23574 22886 23491 Face 47651 11541 8172 11702 Face 47652 24276 2894 24775 Face 47653 25303 25136 23211 Face 47654 24028 23701 24217 Face 47655 24532 22983 24413 Face 47656 23144 24028 24217 Face 47657 32953 33087 32952 Face 47658 23060 24473 24414 Face 47659 23060 24414 11830 Face 47660 24473 11812 24032 Face 47661 23478 19922 22881 Face 47662 24343 24104 21208 Face 47663 11832 23319 22180 Face 47664 23101 25156 23890 Face 47665 24360 23507 22762 Face 47666 29061 21705 29192 Face 47667 23640 24590 1903 Face 47668 25366 25367 11912 Face 47669 25230 25367 25366 Face 47670 23949 23823 12547 Face 47671 22080 21302 21027 Face 47672 23813 25024 23919 Face 47673 22686 21139 20778 Face 47674 20846 21208 21421 Face 47675 19786 23441 24020 Face 47676 23041 24308 24359 Face 47677 27641 23297 24495 Face 47678 25378 25379 11916 Face 47679 20428 23114 23177 Face 47680 9389 20904 21142 Face 47681 13039 22913 24024 Face 47682 23141 6735 10595 Face 47683 23823 25042 22080 Face 47684 24972 25111 25110 Face 47685 24611 23258 23202 Face 47686 22761 22954 28029 Face 47687 24830 24831 24965 Face 47688 21892 23392 21891 Face 47689 23323 24863 10719 Face 47690 28133 21753 21380 Face 47691 29967 29966 29908 Face 47692 24123 12582 25302 Face 47693 20782 24731 20260 Face 47694 2533 10428 13773 Face 47695 34559 34510 34344 Face 47696 25776 12534 24857 Face 47697 12287 3050 2894 Face 47698 9054 8266 13720 Face 47699 22797 11996 22801 Face 47700 23787 19685 19684 Face 47701 3636 11829 20845 Face 47702 24155 21704 24230 Face 47703 21704 24361 24230 Face 47704 22847 21801 22471 Face 47705 23351 3296 12170 Face 47706 25019 23909 22837 Face 47707 20009 24227 20010 Face 47708 22964 11184 20689 Face 47709 23419 25279 23002 Face 47710 24769 11349 23875 Face 47711 21050 25006 24732 Face 47712 20689 21050 24732 Face 47713 3940 6138 23039 Face 47714 23644 11592 23342 Face 47715 23995 24433 24432 Face 47716 11572 23285 25333 Face 47717 20079 23797 20157 Face 47718 24055 24338 24535 Face 47719 20159 23914 20079 Face 47720 28828 24528 28953 Face 47721 23767 23583 24551 Face 47722 24018 24017 12345 Face 47723 12975 28170 28305 Face 47724 25265 25266 25402 Face 47725 24765 20927 24027 Face 47726 25006 24903 23386 Face 47727 29488 24674 24673 Face 47728 30566 30660 30565 Face 47729 30276 30275 30210 Face 47730 23441 21583 24020 Face 47731 23220 23219 23165 Face 47732 30211 30276 30210 Face 47733 23276 23219 23220 Face 47734 23220 23221 18612 Face 47735 23057 22732 23006 Face 47736 22723 23057 23006 Face 47737 22732 23669 23682 Face 47738 23669 23746 23682 Face 47739 30481 30566 30480 Face 47740 23669 11730 11729 Face 47741 22839 23673 11511 Face 47742 6639 23292 23549 Face 47743 25885 25995 11183 Face 47744 23746 23669 11729 Face 47745 23756 23755 23651 Face 47746 34611 34474 34685 Face 47747 23756 23871 23870 Face 47748 23755 23756 23870 Face 47749 23871 23989 23988 Face 47750 23870 23871 23988 Face 47751 23989 24111 24110 Face 47752 23988 23989 24110 Face 47753 24237 24236 24110 Face 47754 24111 24237 24110 Face 47755 24369 24368 24236 Face 47756 24237 24369 24236 Face 47757 2815 23491 23892 Face 47758 24370 24509 24508 Face 47759 25186 11749 22620 Face 47760 23211 24316 23892 Face 47761 24828 24963 24962 Face 47762 22992 27244 23493 Face 47763 24691 24692 24827 Face 47764 23045 24307 24408 Face 47765 24688 1714 24689 Face 47766 24181 24182 22899 Face 47767 20004 22776 20005 Face 47768 23855 12886 8748 Face 47769 11836 24405 19679 Face 47770 24572 23087 23965 Face 47771 19423 23948 23665 Face 47772 19679 19423 23665 Face 47773 24498 11591 11830 Face 47774 24209 24498 11830 Face 47775 11591 23060 11830 Face 47776 24473 24032 24414 Face 47777 21208 11832 22180 Face 47778 22938 22989 24457 Face 47779 24472 24457 22180 Face 47780 23319 24472 22180 Face 47781 22728 24354 23890 Face 47782 22939 23507 24360 Face 47783 24428 24429 23670 Face 47784 17414 18325 4495 Face 47785 25229 25230 25366 Face 47786 25091 25230 25229 Face 47787 23230 22979 22973 Face 47788 12547 22080 21027 Face 47789 11730 23979 20784 Face 47790 21198 27892 24996 Face 47791 25173 23551 22909 Face 47792 26590 22516 25571 Face 47793 23970 23297 23628 Face 47794 19922 21698 24325 Face 47795 23235 23676 22957 Face 47796 24529 21507 22957 Face 47797 23692 22977 23717 Face 47798 23944 24407 23829 Face 47799 19625 22986 19624 Face 47800 21327 21417 21326 Face 47801 23827 23286 23828 Face 47802 24091 20096 24100 Face 47803 23460 23296 23970 Face 47804 23598 23512 20409 Face 47805 23392 23323 10719 Face 47806 23986 23891 24863 Face 47807 5336 22435 6034 Face 47808 25162 20691 23742 Face 47809 24301 27244 22992 Face 47810 19940 21582 19864 Face 47811 23341 23847 24485 Face 47812 20310 23410 22884 Face 47813 27099 13842 13256 Face 47814 7923 34462 26558 Face 47815 23099 24128 24268 Face 47816 19498 23099 24268 Face 47817 23934 23897 23143 Face 47818 23933 23934 23143 Face 47819 24569 24564 23245 Face 47820 23250 24569 23245 Face 47821 27368 23267 24562 Face 47822 25681 25581 11062 Face 47823 25327 22750 23517 Face 47824 25156 22911 23779 Face 47825 17865 17772 21279 Face 47826 15242 23505 13128 Face 47827 14030 14117 7617 Face 47828 24294 12504 12592 Face 47829 34553 34758 34385 Face 47830 8932 2650 9041 Face 47831 26011 16846 12748 Face 47832 25020 2772 10380 Face 47833 24332 23256 20604 Face 47834 24432 24433 21011 Face 47835 23454 25178 23455 Face 47836 23794 24086 24069 Face 47837 24898 23637 22603 Face 47838 22932 23813 24311 Face 47839 23279 23278 23982 Face 47840 24335 24186 20874 Face 47841 22917 22914 23666 Face 47842 23606 21987 22956 Face 47843 23427 22917 23666 Face 47844 22917 24049 24048 Face 47845 22914 22917 24048 Face 47846 24049 25090 25089 Face 47847 24139 24434 24433 Face 47848 23254 23251 24684 Face 47849 30566 30565 30480 Face 47850 25278 24679 23267 Face 47851 22722 22723 23006 Face 47852 22732 23682 23006 Face 47853 23620 20759 22711 Face 47854 24143 23620 22965 Face 47855 1467 21741 19314 Face 47856 23724 1467 19314 Face 47857 24874 25013 25081 Face 47858 23010 25333 25198 Face 47859 25160 24527 24388 Face 47860 30481 30480 30409 Face 47861 25038 23863 25177 Face 47862 25007 22778 25179 Face 47863 24912 24632 23407 Face 47864 24479 23689 23685 Face 47865 24387 24665 29217 Face 47866 24108 24119 25217 Face 47867 2680 23871 23756 Face 47868 23871 23872 23989 Face 47869 24112 24111 23989 Face 47870 23990 24112 23989 Face 47871 24112 24238 24237 Face 47872 24111 24112 24237 Face 47873 24238 24370 24369 Face 47874 24237 24238 24369 Face 47875 24509 24510 12233 Face 47876 24369 24370 24508 Face 47877 19938 23913 23874 Face 47878 23144 23426 24028 Face 47879 23839 24265 20494 Face 47880 24731 19938 23874 Face 47881 20494 13071 24068 Face 47882 13071 24320 24068 Face 47883 24068 24320 11836 Face 47884 24320 24405 11836 Face 47885 23948 24498 24209 Face 47886 24405 19423 19679 Face 47887 24735 22857 23504 Face 47888 23665 23948 24209 Face 47889 24735 23504 25277 Face 47890 23432 24735 25277 Face 47891 23432 25277 24584 Face 47892 22857 23768 23504 Face 47893 24472 22938 24457 Face 47894 21697 23432 24584 Face 47895 21697 24584 22989 Face 47896 22938 21697 22989 Face 47897 34715 34554 34419 Face 47898 30533 25672 25781 Face 47899 24468 22939 24360 Face 47900 23507 22728 22762 Face 47901 23523 20429 23524 Face 47902 21026 21393 23080 Face 47903 24705 24706 24841 Face 47904 20524 26422 20611 Face 47905 24783 24645 23585 Face 47906 22891 29220 24668 Face 47907 23994 24423 24645 Face 47908 24783 23994 24645 Face 47909 2428 22516 23802 Face 47910 23994 22516 24423 Face 47911 23472 23091 23287 Face 47912 25039 21513 22724 Face 47913 25038 25177 22903 Face 47914 22956 24529 22957 Face 47915 24614 22681 23703 Face 47916 23703 22681 24337 Face 47917 11542 23791 4202 Face 47918 34296 29601 19225 Face 47919 12340 22909 12339 Face 47920 19440 19360 19441 Face 47921 21415 23460 9281 Face 47922 23296 23297 23970 Face 47923 23323 23986 24863 Face 47924 23986 25037 23150 Face 47925 28499 34401 34310 Face 47926 19538 22703 24212 Face 47927 24149 24150 23234 Face 47928 23178 24149 23234 Face 47929 25168 25169 11589 Face 47930 23449 23770 23771 Face 47931 22776 20006 20005 Face 47932 25307 21704 24155 Face 47933 23897 23099 19498 Face 47934 23143 23897 19498 Face 47935 23409 23533 24026 Face 47936 22256 23409 24026 Face 47937 24261 24072 24187 Face 47938 23533 25289 25290 Face 47939 24261 24873 24072 Face 47940 24065 24261 24187 Face 47941 24873 24218 24874 Face 47942 24218 24094 24874 Face 47943 17199 469 361 Face 47944 24704 24840 24839 Face 47945 24048 24049 25089 Face 47946 23300 19999 25089 Face 47947 25090 23300 25089 Face 47948 24539 24675 19999 Face 47949 23808 14972 14971 Face 47950 22854 22857 24735 Face 47951 23637 25035 21610 Face 47952 24720 20697 7628 Face 47953 23879 22955 24750 Face 47954 22567 22662 22566 Face 47955 23026 24526 23439 Face 47956 21610 24877 22882 Face 47957 23750 22767 20077 Face 47958 22693 12168 24421 Face 47959 23300 24539 19999 Face 47960 22966 23908 24675 Face 47961 24539 22966 24675 Face 47962 24580 20408 23028 Face 47963 22865 22866 23908 Face 47964 23863 23622 25177 Face 47965 30343 30342 30275 Face 47966 22727 19685 19769 Face 47967 21027 24050 12978 Face 47968 23441 23372 21583 Face 47969 24082 25739 25738 Face 47970 30345 30412 30344 Face 47971 4889 19064 4755 Face 47972 24344 25308 24864 Face 47973 23616 11510 23430 Face 47974 25148 23722 23868 Face 47975 24864 23616 23430 Face 47976 21604 21511 23868 Face 47977 24578 25148 23868 Face 47978 24034 22832 21511 Face 47979 23722 21604 23868 Face 47980 19273 15591 23898 Face 47981 21604 24034 21511 Face 47982 24878 25850 24445 Face 47983 22788 23373 23757 Face 47984 24034 24445 22832 Face 47985 23338 25083 24003 Face 47986 23990 28007 23991 Face 47987 23989 23872 23990 Face 47988 24113 24239 24238 Face 47989 24112 24113 24238 Face 47990 24239 24371 24370 Face 47991 24238 24239 24370 Face 47992 30149 30213 30212 Face 47993 24370 24371 24509 Face 47994 21143 23367 24477 Face 47995 24211 19938 24731 Face 47996 23913 23050 12002 Face 47997 28029 22954 27897 Face 47998 23876 23957 22679 Face 47999 22764 20867 23294 Face 48000 20343 23876 21235 Face 48001 23957 23294 22679 Face 48002 20343 21235 23768 Face 48003 22857 20343 23768 Face 48004 24094 29786 18782 Face 48005 23876 22679 21235 Face 48006 23709 22968 23032 Face 48007 23527 23528 20237 Face 48008 23302 23305 24589 Face 48009 34736 28686 34724 Face 48010 22801 23055 24185 Face 48011 20004 20003 22939 Face 48012 23145 23709 23032 Face 48013 22968 23462 24780 Face 48014 23165 23107 19480 Face 48015 23743 22833 24152 Face 48016 24225 24046 24045 Face 48017 23243 23212 24293 Face 48018 23939 12534 20515 Face 48019 22803 23133 24770 Face 48020 24783 23585 14485 Face 48021 23585 21454 191 Face 48022 24410 24783 14485 Face 48023 22951 24410 14485 Face 48024 23864 23994 24783 Face 48025 24410 23864 24783 Face 48026 30084 30085 30146 Face 48027 23864 23802 23994 Face 48028 24529 24125 22740 Face 48029 24125 24023 22740 Face 48030 21507 24529 22740 Face 48031 24023 22903 22740 Face 48032 23292 14428 22446 Face 48033 20963 21660 23548 Face 48034 21582 23279 12532 Face 48035 23765 20782 22854 Face 48036 318 22804 23155 Face 48037 24401 22949 22944 Face 48038 23025 24617 9281 Face 48039 23460 23970 9281 Face 48040 23891 23986 23150 Face 48041 25037 24481 23259 Face 48042 24344 24864 16017 Face 48043 24059 24060 19304 Face 48044 20692 20603 24150 Face 48045 24149 20692 24150 Face 48046 23824 23825 24633 Face 48047 13760 19995 25009 Face 48048 19995 11997 25011 Face 48049 24633 13760 25009 Face 48050 24569 23680 24465 Face 48051 24564 24569 24465 Face 48052 24026 23533 25290 Face 48053 25289 24065 24187 Face 48054 22436 23169 22339 Face 48055 24689 24825 24824 Face 48056 22763 202 23412 Face 48057 23437 24664 24663 Face 48058 21772 23337 23278 Face 48059 202 23411 23412 Face 48060 24232 23802 23864 Face 48061 23039 318 23155 Face 48062 22966 22865 23908 Face 48063 9389 21142 22941 Face 48064 23494 22799 22866 Face 48065 22865 23494 22866 Face 48066 24175 24174 22799 Face 48067 11973 22892 12058 Face 48068 20408 20493 23028 Face 48069 13994 2164 787 Face 48070 24203 24876 24877 Face 48071 19498 24268 24622 Face 48072 25178 24552 23455 Face 48073 30720 11057 11056 Face 48074 23372 24154 21583 Face 48075 23494 24175 22799 Face 48076 25174 14848 20697 Face 48077 23356 22705 24174 Face 48078 24175 23356 24174 Face 48079 23411 20069 11327 Face 48080 24285 24284 22705 Face 48081 24989 25128 24988 Face 48082 20238 21661 23207 Face 48083 15884 22050 22148 Face 48084 30991 31090 31089 Face 48085 11729 11730 20784 Face 48086 23223 25743 23222 Face 48087 24799 24933 24932 Face 48088 15533 6736 14209 Face 48089 30022 30023 30084 Face 48090 27372 24246 24244 Face 48091 11510 25148 24578 Face 48092 23430 11510 24578 Face 48093 23192 23247 23191 Face 48094 12183 24804 12611 Face 48095 24103 24106 23561 Face 48096 19301 23907 22936 Face 48097 22929 23579 24643 Face 48098 23561 23142 22749 Face 48099 23456 24022 21773 Face 48100 27272 24158 23281 Face 48101 21677 24158 21773 Face 48102 20409 23350 23261 Face 48103 24916 25053 22912 Face 48104 6735 22933 24727 Face 48105 29793 29794 24348 Face 48106 30723 30829 23311 Face 48107 24114 24240 24239 Face 48108 24113 24114 24239 Face 48109 24240 24372 24371 Face 48110 24239 24240 24371 Face 48111 30025 30087 30086 Face 48112 30023 30022 29961 Face 48113 34580 34645 34795 Face 48114 24957 24958 25096 Face 48115 32301 34759 34157 Face 48116 30660 30659 30565 Face 48117 21140 23550 22735 Face 48118 6037 6038 6164 Face 48119 25143 24184 24183 Face 48120 22814 23290 22813 Face 48121 24193 22373 24252 Face 48122 24072 24874 25081 Face 48123 23946 23197 22842 Face 48124 23748 23604 24611 Face 48125 23861 23197 23946 Face 48126 23842 23861 23946 Face 48127 20138 24622 24488 Face 48128 23197 20138 22842 Face 48129 24561 24563 21769 Face 48130 24272 23861 23842 Face 48131 23243 24563 23212 Face 48132 21769 24272 23842 Face 48133 26071 27371 24293 Face 48134 24563 24272 21769 Face 48135 22277 24200 24199 Face 48136 24563 24561 23212 Face 48137 24199 22182 22277 Face 48138 30964 30963 30862 Face 48139 22182 23468 22951 Face 48140 22277 22182 22951 Face 48141 22825 24410 22951 Face 48142 23468 22825 22951 Face 48143 24232 23864 24410 Face 48144 22825 24232 24410 Face 48145 30147 30211 30210 Face 48146 18831 20312 18688 Face 48147 24437 24436 24311 Face 48148 29652 29653 24471 Face 48149 23919 24437 24311 Face 48150 23583 24534 24215 Face 48151 22957 21507 24420 Face 48152 12704 22957 24420 Face 48153 24253 24254 24044 Face 48154 23087 23937 23936 Face 48155 23907 24401 22944 Face 48156 22949 24099 24098 Face 48157 22739 25135 24901 Face 48158 23151 22739 24901 Face 48159 23150 25037 23259 Face 48160 24481 21324 21323 Face 48161 15430 15570 15569 Face 48162 9190 11012 9181 Face 48163 22766 24208 20603 Face 48164 20692 22766 20603 Face 48165 14302 15170 23824 Face 48166 23825 13760 24633 Face 48167 24685 24821 24820 Face 48168 12583 12495 12584 Face 48169 23680 23934 23933 Face 48170 24465 23680 23933 Face 48171 25290 25289 24187 Face 48172 24873 24874 24072 Face 48173 11329 24105 21600 Face 48174 22688 21210 25137 Face 48175 23174 24091 25304 Face 48176 14401 23213 23269 Face 48177 23029 23194 24862 Face 48178 25729 22781 24333 Face 48179 24223 24483 23760 Face 48180 24447 23029 24862 Face 48181 9296 6802 34659 Face 48182 19940 21328 21582 Face 48183 23356 24285 22705 Face 48184 12622 533 19 Face 48185 24390 24391 24284 Face 48186 24285 24390 24284 Face 48187 23714 24487 21419 Face 48188 24739 27144 27145 Face 48189 23869 23987 34540 Face 48190 23086 23997 23024 Face 48191 10380 23745 25020 Face 48192 23869 34540 12454 Face 48193 25660 25762 21233 Face 48194 21699 21605 22937 Face 48195 24390 24739 24391 Face 48196 25144 25143 24183 Face 48197 12704 24420 23560 Face 48198 14301 11330 23509 Face 48199 22945 24291 23638 Face 48200 25049 24439 21986 Face 48201 12591 12681 12680 Face 48202 25057 22755 24144 Face 48203 12680 13255 12591 Face 48204 23586 23828 23944 Face 48205 26298 23223 23224 Face 48206 23168 23223 23167 Face 48207 22690 25195 25330 Face 48208 2129 2004 16263 Face 48209 15864 24707 24568 Face 48210 23841 23139 23195 Face 48211 11835 24313 23456 Face 48212 24022 21677 21773 Face 48213 23365 24313 23905 Face 48214 24313 24022 23456 Face 48215 22893 22945 23638 Face 48216 23397 23626 23638 Face 48217 24291 23397 23638 Face 48218 23360 23431 23626 Face 48219 23397 23360 23626 Face 48220 19784 23457 23431 Face 48221 23112 23365 11996 Face 48222 24313 11835 23905 Face 48223 21326 24756 25403 Face 48224 22723 22848 23057 Face 48225 24836 24837 24971 Face 48226 24119 25218 25217 Face 48227 28289 26326 26327 Face 48228 24113 23991 23992 Face 48229 30213 30278 30212 Face 48230 24119 24108 22959 Face 48231 26069 28500 34447 Face 48232 30148 30149 30212 Face 48233 24512 24648 24647 Face 48234 24510 24371 24372 Face 48235 24648 24786 24785 Face 48236 24647 24648 24785 Face 48237 24919 24787 24920 Face 48238 27610 24918 24919 Face 48239 24281 24315 24449 Face 48240 21743 24281 24449 Face 48241 22842 20138 24488 Face 48242 24622 24281 21743 Face 48243 23715 23718 24884 Face 48244 24488 24622 21743 Face 48245 33275 33276 6620 Face 48246 24886 19618 22998 Face 48247 23610 25950 25841 Face 48248 25265 25402 25264 Face 48249 2908 24067 2547 Face 48250 24598 20514 27875 Face 48251 23075 24133 24067 Face 48252 20514 11752 2908 Face 48253 24200 24134 24199 Face 48254 11752 23075 24067 Face 48255 24882 24199 24133 Face 48256 23075 24882 24133 Face 48257 23683 22182 24199 Face 48258 24882 23683 24199 Face 48259 23683 23777 23468 Face 48260 22182 23683 23468 Face 48261 20177 22825 23468 Face 48262 23777 20177 23468 Face 48263 22065 24232 22825 Face 48264 20177 22065 22825 Face 48265 24094 18782 25013 Face 48266 30864 30863 30757 Face 48267 23642 12852 10203 Face 48268 24468 24360 24361 Face 48269 24240 34438 34793 Face 48270 24073 20691 25162 Face 48271 23235 22957 12704 Face 48272 22902 23235 12704 Face 48273 25126 25265 25125 Face 48274 22861 23343 23368 Face 48275 22783 24274 24670 Face 48276 4358 9280 11833 Face 48277 22739 24617 23025 Face 48278 25135 22739 23025 Face 48279 23259 24481 21323 Face 48280 11514 23514 21323 Face 48281 23859 23787 19684 Face 48282 25158 20872 21052 Face 48283 25776 25880 23295 Face 48284 22766 23295 24208 Face 48285 22682 23675 14302 Face 48286 15170 23825 23824 Face 48287 24821 24956 24955 Face 48288 24820 24821 24955 Face 48289 11916 23177 4203 Face 48290 25240 25241 25377 Face 48291 25019 22837 24038 Face 48292 25378 11916 23203 Face 48293 24946 23688 20323 Face 48294 23415 24105 11329 Face 48295 23055 22801 22900 Face 48296 24447 24862 24426 Face 48297 22721 23007 22847 Face 48298 23943 22784 23008 Face 48299 24308 19303 23971 Face 48300 22721 22847 23971 Face 48301 25379 25380 20428 Face 48302 23867 23586 23114 Face 48303 21284 23633 23060 Face 48304 20428 23867 23114 Face 48305 24848 24984 24983 Face 48306 3852 4489 14160 Face 48307 23858 23743 24152 Face 48308 23191 19681 23134 Face 48309 22677 23981 22727 Face 48310 24331 21869 21772 Face 48311 23360 19784 23431 Face 48312 19784 23940 23374 Face 48313 24856 23559 11348 Face 48314 25046 24909 22855 Face 48315 24615 24544 22681 Face 48316 24424 24031 23319 Face 48317 12705 15019 15018 Face 48318 27018 2680 23756 Face 48319 23336 23993 24186 Face 48320 24487 21417 21327 Face 48321 455 456 7474 Face 48322 33356 33489 33355 Face 48323 12768 23883 25029 Face 48324 23457 19784 23374 Face 48325 23224 23169 14310 Face 48326 23981 24230 22806 Face 48327 23551 12520 12430 Face 48328 13842 23354 13856 Face 48329 23422 23841 23195 Face 48330 28497 21228 21320 Face 48331 22844 23112 22797 Face 48332 23365 23905 11996 Face 48333 23280 22802 23374 Face 48334 23940 23280 23374 Face 48335 23895 12532 24613 Face 48336 22802 23280 23380 Face 48337 24318 22085 22181 Face 48338 24135 23719 23358 Face 48339 12063 27037 11979 Face 48340 25014 29795 3464 Face 48341 34120 6732 34119 Face 48342 21139 22910 23499 Face 48343 11073 29995 11074 Face 48344 24701 24837 24836 Face 48345 30568 30662 30567 Face 48346 24114 24115 24240 Face 48347 24511 34793 24373 Face 48348 30278 30277 30212 Face 48349 24374 24513 24512 Face 48350 24373 24374 24512 Face 48351 24513 24649 24648 Face 48352 24512 24513 24648 Face 48353 24649 24787 24786 Face 48354 24648 24649 24786 Face 48355 24920 24788 24921 Face 48356 24786 24787 24919 Face 48357 24312 23860 23639 Face 48358 25276 24859 24723 Face 48359 24801 24811 24945 Face 48360 23860 22831 23639 Face 48361 25329 21026 25149 Face 48362 25034 14637 8937 Face 48363 21302 23667 24050 Face 48364 21027 21302 24050 Face 48365 23667 25329 25194 Face 48366 24050 23667 25194 Face 48367 23690 20514 23340 Face 48368 24598 23340 20514 Face 48369 14763 11752 20514 Face 48370 23690 14763 20514 Face 48371 21392 23075 11752 Face 48372 14763 21392 11752 Face 48373 21392 24224 24882 Face 48374 23075 21392 24882 Face 48375 22871 23683 24882 Face 48376 24224 22871 24882 Face 48377 22871 22889 23777 Face 48378 23683 22871 23777 Face 48379 20756 20177 23777 Face 48380 22889 20756 23777 Face 48381 23660 22065 20177 Face 48382 20756 23660 20177 Face 48383 30758 30864 30757 Face 48384 23660 23801 22065 Face 48385 25311 22829 22902 Face 48386 23600 23801 23601 Face 48387 23966 23967 23140 Face 48388 11910 22829 25311 Face 48389 22829 23235 22902 Face 48390 23140 11910 25311 Face 48391 21025 22861 23368 Face 48392 13994 15088 23399 Face 48393 25284 25285 22783 Face 48394 24274 24669 24670 Face 48395 24617 21415 9281 Face 48396 20872 25058 24734 Face 48397 20138 19498 24622 Face 48398 16501 23728 23941 Face 48399 24038 24093 25634 Face 48400 24062 24063 13305 Face 48401 24831 24966 24965 Face 48402 11916 20428 23177 Face 48403 25231 25368 25367 Face 48404 25230 25231 25367 Face 48405 24956 25095 25094 Face 48406 24955 24956 25094 Face 48407 24540 23370 23101 Face 48408 25377 25378 23203 Face 48409 23814 24062 13305 Face 48410 24290 23489 24063 Face 48411 24600 24461 24479 Face 48412 9041 2650 2651 Face 48413 25534 24426 22781 Face 48414 4022 16657 24692 Face 48415 22374 22721 23971 Face 48416 23007 23008 22847 Face 48417 23433 12792 23614 Face 48418 12792 23312 23308 Face 48419 24608 24610 23704 Face 48420 25360 12792 23308 Face 48421 23997 23141 23644 Face 48422 23703 24337 24321 Face 48423 23141 10595 23644 Face 48424 2 4069 24799 Face 48425 24454 24320 13071 Face 48426 23905 22792 11913 Face 48427 12699 12608 12609 Face 48428 22905 23788 22928 Face 48429 21419 21327 25268 Face 48430 25393 20078 23767 Face 48431 25269 21419 25268 Face 48432 12234 24458 12235 Face 48433 24461 23885 23317 Face 48434 22713 20098 22994 Face 48435 21142 22713 22994 Face 48436 25130 25269 25129 Face 48437 21142 22994 23836 Face 48438 564 454 455 Face 48439 23358 24318 22181 Face 48440 23211 25136 24316 Face 48441 30479 30564 30478 Face 48442 4358 20159 22906 Face 48443 24029 23822 24810 Face 48444 22436 23225 23169 Face 48445 19687 19771 19770 Face 48446 25044 25046 23766 Face 48447 22855 23415 24310 Face 48448 23841 21228 23139 Face 48449 24692 24828 24827 Face 48450 24001 24006 20667 Face 48451 24279 23952 24074 Face 48452 10719 24863 23307 Face 48453 23137 23133 22803 Face 48454 23891 23151 24085 Face 48455 13452 23284 23557 Face 48456 31920 31919 31812 Face 48457 22941 21142 23836 Face 48458 33745 33871 33744 Face 48459 24378 12294 11700 Face 48460 31697 31696 31582 Face 48461 23710 21047 20955 Face 48462 5193 18562 5322 Face 48463 30867 30866 30760 Face 48464 30761 30760 30661 Face 48465 24242 24375 24374 Face 48466 34415 34726 10845 Face 48467 24375 24514 24513 Face 48468 24374 24375 24513 Face 48469 24514 24650 24649 Face 48470 24513 24514 24649 Face 48471 24650 24788 24787 Face 48472 24649 24650 24787 Face 48473 25849 11573 22787 Face 48474 24787 24788 24920 Face 48475 24428 21892 23089 Face 48476 23080 24428 23089 Face 48477 25194 25329 25149 Face 48478 23080 23089 25149 Face 48479 13984 24900 24576 Face 48480 21026 23080 25149 Face 48481 21888 22686 24309 Face 48482 23980 23339 23873 Face 48483 23340 16871 23690 Face 48484 13722 16871 12701 Face 48485 23238 23690 16871 Face 48486 13722 23238 16871 Face 48487 25012 14763 23690 Face 48488 23238 25012 23690 Face 48489 25012 3180 21392 Face 48490 14763 25012 21392 Face 48491 3180 23477 24224 Face 48492 21392 3180 24224 Face 48493 23477 21300 22871 Face 48494 24224 23477 22871 Face 48495 21300 25328 22889 Face 48496 22871 21300 22889 Face 48497 22661 20756 22889 Face 48498 25328 22661 22889 Face 48499 20339 23660 20756 Face 48500 22661 20339 20756 Face 48501 21678 23801 23660 Face 48502 20339 21678 23660 Face 48503 23601 21678 24035 Face 48504 21678 23601 23801 Face 48505 23492 23614 22886 Face 48506 9898 23866 12008 Face 48507 23091 22923 23882 Face 48508 22840 24341 23734 Face 48509 33490 33489 33356 Face 48510 26184 12910 7923 Face 48511 19684 19685 23591 Face 48512 25086 477 2046 Face 48513 1021 18437 911 Face 48514 21052 20872 24734 Face 48515 23595 23442 23859 Face 48516 34676 11385 34639 Face 48517 11410 25158 21052 Face 48518 22868 14566 22920 Face 48519 23950 24547 24340 Face 48520 29791 24349 24625 Face 48521 25368 23675 22682 Face 48522 25367 25368 22682 Face 48523 25095 25234 25233 Face 48524 25094 25095 25233 Face 48525 23244 24354 22728 Face 48526 22807 23244 22728 Face 48527 24062 24290 24063 Face 48528 24736 24737 23489 Face 48529 21284 23060 11591 Face 48530 11590 21284 11591 Face 48531 12339 22909 12431 Face 48532 25078 23950 24450 Face 48533 24408 24307 24407 Face 48534 24307 19303 24308 Face 48535 23312 24610 24608 Face 48536 23308 23312 24608 Face 48537 23014 23068 23067 Face 48538 23594 22278 23094 Face 48539 24603 25055 22887 Face 48540 22870 24805 22828 Face 48541 24849 15574 15573 Face 48542 23891 23150 22739 Face 48543 12519 12607 12606 Face 48544 29791 24625 29790 Face 48545 20487 26759 20573 Face 48546 25034 22941 24036 Face 48547 24756 23821 24029 Face 48548 22831 23530 23902 Face 48549 22834 19275 23716 Face 48550 12443 11512 16704 Face 48551 12169 21145 24280 Face 48552 13876 23159 23213 Face 48553 24824 24825 24959 Face 48554 23731 7628 12259 Face 48555 23580 23498 23844 Face 48556 16951 15297 19222 Face 48557 25296 21968 23462 Face 48558 25455 23553 26927 Face 48559 25031 24474 19927 Face 48560 24553 20667 22972 Face 48561 11496 26238 11414 Face 48562 24259 23810 24053 Face 48563 22349 22819 22253 Face 48564 24268 23335 24281 Face 48565 24863 23891 24085 Face 48566 24052 24259 24053 Face 48567 22974 22805 24741 Face 48568 22932 24311 23645 Face 48569 23618 11203 23355 Face 48570 24531 23618 23355 Face 48571 18488 18489 18588 Face 48572 20580 24090 23719 Face 48573 1262 23163 16361 Face 48574 24681 23662 27012 Face 48575 31583 31697 31582 Face 48576 20607 19275 22834 Face 48577 23555 25044 25045 Face 48578 24772 24940 22703 Face 48579 23790 23662 24681 Face 48580 23353 24769 23042 Face 48581 33510 33509 33376 Face 48582 22818 10489 20258 Face 48583 24243 24376 24375 Face 48584 24241 24242 24374 Face 48585 24376 24515 24514 Face 48586 24375 24376 24514 Face 48587 24515 24651 24650 Face 48588 24514 24515 24650 Face 48589 24651 24789 24788 Face 48590 24650 24651 24788 Face 48591 32547 16736 32432 Face 48592 24788 24789 24921 Face 48593 22042 23540 19505 Face 48594 24728 22964 22952 Face 48595 21888 24309 23526 Face 48596 23540 23624 19505 Face 48597 21607 25334 22758 Face 48598 23070 23016 20234 Face 48599 28166 28302 23600 Face 48600 25335 22758 25334 Face 48601 24913 13722 21607 Face 48602 22758 24913 21607 Face 48603 22948 23238 13722 Face 48604 24913 22948 13722 Face 48605 22948 22660 25012 Face 48606 23238 22948 25012 Face 48607 22660 23789 3180 Face 48608 25012 22660 3180 Face 48609 23789 23773 23477 Face 48610 3180 23789 23477 Face 48611 23773 22927 21300 Face 48612 23477 23773 21300 Face 48613 22927 25193 25328 Face 48614 21300 22927 25328 Face 48615 24606 22661 25328 Face 48616 25193 24606 25328 Face 48617 24760 20339 22661 Face 48618 24606 24760 22661 Face 48619 21774 21678 20339 Face 48620 24760 21774 20339 Face 48621 191 14485 23585 Face 48622 21774 24035 21678 Face 48623 22983 29788 29789 Face 48624 24121 25274 24119 Face 48625 12386 11370 11452 Face 48626 21676 21772 23278 Face 48627 20002 20580 24135 Face 48628 23776 23781 24948 Face 48629 24904 23184 23085 Face 48630 24223 23760 23410 Face 48631 25058 24221 24156 Face 48632 24188 25081 24314 Face 48633 21796 23379 23281 Face 48634 33222 33221 33086 Face 48635 23230 22973 22923 Face 48636 22737 24132 23888 Face 48637 24450 23950 24590 Face 48638 24547 24546 24340 Face 48639 23675 15170 14302 Face 48640 24070 19274 23896 Face 48641 3296 14909 12170 Face 48642 21505 24723 24722 Face 48643 24540 23101 24354 Face 48644 23244 24540 24354 Face 48645 24290 24736 23489 Face 48646 24217 24216 24737 Face 48647 20406 11590 11591 Face 48648 24498 20406 11591 Face 48649 24764 23855 12183 Face 48650 6284 24207 24477 Face 48651 23041 24307 24308 Face 48652 19303 22374 23971 Face 48653 24610 23703 23704 Face 48654 23704 23703 24321 Face 48655 25290 24187 24188 Face 48656 12003 25290 24188 Face 48657 24311 24436 23645 Face 48658 20696 24300 24435 Face 48659 23512 23350 20409 Face 48660 24436 20696 24435 Face 48661 21566 23536 23613 Face 48662 22838 21566 23613 Face 48663 30154 30155 30218 Face 48664 23209 23519 23570 Face 48665 26680 4023 22434 Face 48666 24677 22542 21516 Face 48667 28957 24387 28956 Face 48668 24732 25006 23386 Face 48669 23312 23320 24610 Face 48670 13994 23480 23563 Face 48671 5142 25357 25221 Face 48672 20140 24143 19499 Face 48673 19316 19348 21101 Face 48674 9333 23739 24229 Face 48675 20817 11292 15885 Face 48676 23547 23518 20698 Face 48677 23115 16670 23172 Face 48678 24246 27372 27371 Face 48679 24052 24053 21412 Face 48680 20785 24052 21412 Face 48681 19713 19712 24033 Face 48682 21698 21697 22938 Face 48683 23708 22932 23645 Face 48684 24436 24435 23645 Face 48685 12100 23618 24531 Face 48686 23173 12100 24531 Face 48687 24871 23547 20698 Face 48688 23547 24743 24718 Face 48689 23518 23547 24718 Face 48690 24743 22759 23602 Face 48691 19301 23347 15106 Face 48692 23326 23427 23505 Face 48693 3318 22878 22370 Face 48694 24103 23561 22836 Face 48695 24938 24937 21137 Face 48696 23349 23156 25182 Face 48697 20669 23743 25153 Face 48698 9878 24639 8934 Face 48699 24243 34547 34290 Face 48700 19928 25031 23546 Face 48701 24377 24516 24515 Face 48702 24376 24377 24515 Face 48703 24516 24652 24651 Face 48704 24515 24516 24651 Face 48705 24652 24790 24789 Face 48706 24651 24652 24789 Face 48707 24790 24923 24922 Face 48708 24789 24790 24922 Face 48709 24923 25061 25060 Face 48710 32964 32963 32831 Face 48711 25061 25200 25199 Face 48712 25335 25334 18960 Face 48713 25336 25335 25199 Face 48714 25200 25336 25199 Face 48715 23206 22758 25335 Face 48716 25336 23206 25335 Face 48717 23206 20259 24913 Face 48718 22758 23206 24913 Face 48719 20259 23239 22948 Face 48720 24913 20259 22948 Face 48721 23239 23357 22660 Face 48722 22948 23239 22660 Face 48723 23357 24011 23789 Face 48724 22660 23357 23789 Face 48725 24011 23894 23773 Face 48726 23789 24011 23773 Face 48727 23894 22976 22927 Face 48728 23773 23894 22927 Face 48729 22976 25054 25193 Face 48730 22927 22976 25193 Face 48731 24607 24606 25193 Face 48732 25054 24607 25193 Face 48733 11672 24760 24606 Face 48734 24607 11672 24606 Face 48735 21871 21774 24760 Face 48736 11672 21871 24760 Face 48737 23696 24035 21774 Face 48738 17978 17979 20363 Face 48739 22042 19505 22896 Face 48740 24576 23980 23873 Face 48741 25098 25099 25237 Face 48742 23339 23980 16944 Face 48743 24995 22686 20778 Face 48744 25099 25238 25237 Face 48745 15429 15430 15569 Face 48746 21139 23499 23581 Face 48747 22727 22806 23591 Face 48748 22370 22042 22896 Face 48749 24745 24358 23237 Face 48750 24332 20604 12259 Face 48751 24758 24425 24892 Face 48752 19542 19461 19462 Face 48753 23640 22863 24590 Face 48754 23950 24340 24590 Face 48755 23393 24082 25738 Face 48756 24492 24118 23478 Face 48757 31874 31981 31873 Face 48758 24858 20779 24857 Face 48759 23370 23371 25732 Face 48760 24310 23415 11329 Face 48761 24269 12620 22840 Face 48762 11974 24269 22840 Face 48763 24809 20406 24498 Face 48764 23948 24809 24498 Face 48765 23966 23140 1450 Face 48766 25357 25358 24764 Face 48767 24876 20405 21890 Face 48768 24478 22747 11895 Face 48769 23560 22697 22897 Face 48770 21512 21966 21604 Face 48771 24155 24230 23981 Face 48772 22679 23984 21234 Face 48773 19206 24168 2939 Face 48774 24300 20696 24169 Face 48775 22835 12100 23173 Face 48776 20078 22835 23173 Face 48777 25394 22835 20078 Face 48778 25393 25394 20078 Face 48779 11080 25292 24007 Face 48780 24299 23326 23505 Face 48781 22918 22917 23427 Face 48782 23326 22918 23427 Face 48783 24077 24049 22917 Face 48784 22918 24077 22917 Face 48785 20778 23581 23498 Face 48786 24077 25134 25090 Face 48787 24107 24229 25196 Face 48788 22742 23555 25045 Face 48789 24107 9333 24229 Face 48790 10595 21301 11592 Face 48791 23117 20536 17804 Face 48792 23688 20342 23508 Face 48793 11292 17804 28636 Face 48794 10092 20341 20258 Face 48795 20785 21412 25083 Face 48796 25223 20785 25083 Face 48797 22887 22687 22716 Face 48798 22924 22176 23535 Face 48799 25257 25394 25393 Face 48800 25256 25257 25393 Face 48801 25118 25257 25256 Face 48802 25117 25118 25256 Face 48803 24718 24743 23602 Face 48804 22759 25301 25297 Face 48805 23602 22759 25297 Face 48806 23033 23584 25297 Face 48807 24049 24077 25090 Face 48808 25134 16965 23300 Face 48809 19434 11836 11866 Face 48810 23517 24019 11413 Face 48811 29917 29916 29862 Face 48812 8934 24639 11410 Face 48813 23006 23007 22721 Face 48814 23746 11729 23623 Face 48815 30483 30482 30411 Face 48816 22370 22896 24803 Face 48817 14428 21660 22446 Face 48818 21361 20867 16836 Face 48819 24517 24653 24652 Face 48820 24516 24517 24652 Face 48821 24653 24791 24790 Face 48822 24652 24653 24790 Face 48823 24791 24924 24923 Face 48824 24790 24791 24923 Face 48825 24924 25062 25061 Face 48826 24923 24924 25061 Face 48827 25062 25201 25200 Face 48828 25061 25062 25200 Face 48829 25337 25336 25200 Face 48830 25201 25337 25200 Face 48831 22810 23206 25336 Face 48832 25337 22810 25336 Face 48833 22810 23700 20259 Face 48834 23206 22810 20259 Face 48835 23700 22161 23239 Face 48836 20259 23700 23239 Face 48837 22161 25016 23357 Face 48838 23239 22161 23357 Face 48839 25016 25010 24011 Face 48840 23357 25016 24011 Face 48841 25010 24201 23894 Face 48842 24011 25010 23894 Face 48843 23684 22976 23894 Face 48844 24201 23684 23894 Face 48845 24917 25054 22976 Face 48846 23684 24917 22976 Face 48847 23906 24607 25054 Face 48848 24917 23906 25054 Face 48849 25326 11672 24607 Face 48850 23906 25326 24607 Face 48851 24517 24516 24377 Face 48852 25326 21967 11672 Face 48853 23187 22906 19380 Face 48854 19493 16991 17085 Face 48855 23125 23589 23696 Face 48856 21871 23696 21774 Face 48857 22863 21743 24450 Face 48858 26649 20173 20093 Face 48859 24327 24629 22804 Face 48860 22777 11429 22748 Face 48861 23520 23521 23407 Face 48862 2024 20904 9389 Face 48863 4365 23855 25358 Face 48864 23609 20320 20236 Face 48865 25229 25366 25365 Face 48866 21230 23417 21048 Face 48867 22353 23705 15037 Face 48868 24950 22974 23958 Face 48869 24775 24908 23640 Face 48870 22863 24450 24590 Face 48871 23875 23100 23956 Face 48872 19763 23875 23956 Face 48873 24858 24857 23939 Face 48874 23984 24858 23939 Face 48875 25361 20482 12885 Face 48876 7503 7617 14117 Face 48877 24269 11974 25172 Face 48878 25172 23734 24205 Face 48879 23766 22855 24310 Face 48880 24353 21486 23476 Face 48881 24420 22696 22697 Face 48882 24090 23966 1450 Face 48883 22856 20694 22973 Face 48884 23438 18732 23464 Face 48885 24129 23724 24463 Face 48886 24741 27154 27137 Face 48887 22679 23294 23984 Face 48888 20782 20260 22854 Face 48889 4203 23945 24454 Face 48890 23117 20637 19345 Face 48891 24978 24979 25117 Face 48892 25301 23033 25297 Face 48893 23033 12081 23314 Face 48894 24008 23158 24554 Face 48895 23584 23033 23314 Face 48896 25090 25134 23300 Face 48897 16965 24542 24539 Face 48898 23300 16965 24539 Face 48899 23681 22966 24539 Face 48900 7722 24483 23795 Face 48901 24995 20778 22894 Face 48902 11255 11410 20959 Face 48903 25331 24107 25196 Face 48904 23488 12458 22178 Face 48905 24946 24947 23688 Face 48906 22603 21610 22882 Face 48907 22974 24950 23437 Face 48908 12496 12406 23205 Face 48909 25003 13384 23096 Face 48910 15735 25223 25083 Face 48911 23338 15735 25083 Face 48912 23788 20158 23376 Face 48913 21891 22083 22716 Face 48914 24843 24844 24978 Face 48915 24979 25118 25117 Face 48916 12081 24582 24444 Face 48917 23314 12081 24444 Face 48918 24582 25080 23059 Face 48919 24444 24582 23059 Face 48920 22803 24770 23003 Face 48921 24542 23681 24539 Face 48922 23681 24816 22865 Face 48923 23169 23225 14310 Face 48924 23386 22731 22710 Face 48925 20959 21052 25147 Face 48926 11410 21052 20959 Face 48927 6389 22700 22699 Face 48928 23763 23772 24946 Face 48929 30684 30685 30783 Face 48930 24984 24848 15574 Face 48931 24378 24518 24517 Face 48932 20867 21361 20779 Face 48933 24518 24654 24653 Face 48934 24517 24518 24653 Face 48935 24654 24792 24791 Face 48936 24653 24654 24791 Face 48937 24792 24925 24924 Face 48938 24791 24792 24924 Face 48939 24925 25063 25062 Face 48940 24924 24925 25062 Face 48941 25202 25201 25062 Face 48942 25063 25202 25062 Face 48943 25338 25337 25201 Face 48944 25202 25338 25201 Face 48945 25338 23044 22810 Face 48946 25337 25338 22810 Face 48947 23044 23388 23700 Face 48948 22810 23044 23700 Face 48949 23388 12101 22161 Face 48950 23700 23388 22161 Face 48951 12101 22564 25016 Face 48952 22161 12101 25016 Face 48953 22564 2130 25010 Face 48954 25016 22564 25010 Face 48955 2130 23298 24201 Face 48956 25010 2130 24201 Face 48957 20757 23684 24201 Face 48958 23298 20757 24201 Face 48959 24784 24917 23684 Face 48960 20757 24784 23684 Face 48961 24025 23906 24917 Face 48962 24784 24025 24917 Face 48963 25191 25326 23906 Face 48964 24025 25191 23906 Face 48965 22064 21967 25326 Face 48966 25191 22064 25326 Face 48967 23697 23125 23696 Face 48968 22064 23695 21967 Face 48969 23592 23125 23697 Face 48970 23695 23592 23697 Face 48971 23592 21603 23111 Face 48972 23592 23111 23125 Face 48973 23451 23450 25159 Face 48974 19496 16993 19578 Face 48975 21325 11433 21324 Face 48976 25159 23771 24411 Face 48977 20155 34667 34832 Face 48978 9280 9281 23628 Face 48979 23384 23546 14372 Face 48980 23546 13631 14372 Face 48981 14762 21262 25080 Face 48982 23450 23771 25159 Face 48983 14257 21565 24775 Face 48984 24908 22863 23640 Face 48985 11349 24586 23100 Face 48986 23875 11349 23100 Face 48987 23984 23939 20429 Face 48988 21234 23984 20429 Face 48989 22806 22904 23778 Face 48990 25047 22620 23555 Face 48991 24697 24698 24833 Face 48992 24698 24834 24833 Face 48993 23504 23768 24817 Face 48994 15297 16951 15723 Face 48995 25242 25243 25379 Face 48996 25380 23867 20428 Face 48997 20694 23464 21144 Face 48998 25165 25168 11430 Face 48999 23053 15037 15450 Face 49000 23705 22795 16339 Face 49001 22652 23889 24020 Face 49002 16412 16573 16411 Face 49003 23697 23696 21871 Face 49004 23113 23242 25327 Face 49005 5210 15473 5209 Face 49006 24412 24893 23097 Face 49007 14056 16192 22151 Face 49008 22966 23681 22865 Face 49009 19915 23494 22865 Face 49010 19940 19864 23097 Face 49011 20602 19941 23084 Face 49012 25147 24734 25171 Face 49013 21052 24734 25147 Face 49014 24252 23094 23798 Face 49015 24947 20342 23688 Face 49016 22982 20753 22798 Face 49017 4496 18325 17936 Face 49018 10842 23928 11592 Face 49019 21301 10842 11592 Face 49020 24352 24494 22933 Face 49021 23201 15735 23338 Face 49022 25142 23900 23277 Face 49023 23309 22181 11892 Face 49024 24708 24844 24843 Face 49025 24707 24708 24843 Face 49026 25286 25287 24324 Face 49027 22944 22949 24098 Face 49028 25169 23018 11589 Face 49029 23307 24085 24575 Face 49030 24816 19915 22865 Face 49031 24176 24175 23494 Face 49032 24085 23151 24342 Face 49033 2807 13391 24289 Face 49034 22815 22816 23845 Face 49035 24734 24156 25171 Face 49036 24320 24454 24405 Face 49037 22770 22771 23763 Face 49038 13111 13017 11777 Face 49039 23456 21513 25039 Face 49040 24379 24519 24518 Face 49041 24378 24379 24518 Face 49042 24519 24655 24654 Face 49043 24518 24519 24654 Face 49044 24655 24793 24792 Face 49045 24654 24655 24792 Face 49046 24793 24926 24925 Face 49047 24792 24793 24925 Face 49048 24926 25064 25063 Face 49049 24925 24926 25063 Face 49050 25064 25203 25202 Face 49051 25063 25064 25202 Face 49052 25203 25339 25338 Face 49053 25202 25203 25338 Face 49054 25339 24273 23044 Face 49055 25338 25339 23044 Face 49056 24273 13395 23388 Face 49057 23044 24273 23388 Face 49058 13395 24161 12101 Face 49059 23388 13395 12101 Face 49060 24161 22565 22564 Face 49061 12101 24161 22564 Face 49062 22565 2255 2130 Face 49063 22564 22565 2130 Face 49064 25151 23298 2130 Face 49065 2255 25151 2130 Face 49066 24579 20757 23298 Face 49067 25151 24579 23298 Face 49068 24646 24784 20757 Face 49069 24579 24646 20757 Face 49070 22851 24025 24784 Face 49071 24646 22851 24784 Face 49072 25052 25191 24025 Face 49073 22851 25052 24025 Face 49074 22063 22064 25191 Face 49075 25052 22063 25191 Face 49076 23694 23695 22064 Face 49077 22063 23694 22064 Face 49078 23126 23592 23695 Face 49079 23694 23126 23695 Face 49080 29667 23111 21603 Face 49081 23126 21603 23592 Face 49082 23517 22750 24019 Face 49083 19855 19856 22925 Face 49084 24545 23947 14257 Face 49085 21565 24908 24775 Face 49086 24264 22546 23793 Face 49087 23796 23947 24545 Face 49088 23198 24560 23196 Face 49089 22546 24264 24559 Face 49090 25734 23445 23369 Face 49091 19679 23665 23921 Face 49092 23198 23196 24244 Face 49093 11747 23921 24104 Face 49094 22950 22959 24102 Face 49095 24108 25217 25170 Face 49096 21234 20429 23523 Face 49097 24148 21234 23523 Face 49098 24252 22373 23594 Face 49099 23768 24148 24817 Face 49100 22907 21796 23881 Face 49101 24488 21743 22863 Face 49102 24700 24701 24836 Face 49103 24691 24827 24826 Face 49104 25103 25104 25242 Face 49105 25243 25380 25379 Face 49106 24280 24040 22981 Face 49107 24055 24535 24056 Face 49108 24544 20139 24352 Face 49109 24494 23201 22933 Face 49110 23889 19786 24020 Face 49111 24630 24609 11330 Face 49112 24561 21769 22546 Face 49113 22846 23090 22984 Face 49114 27218 27219 34337 Face 49115 15431 24988 24851 Face 49116 25143 12228 24184 Face 49117 19915 24176 23494 Face 49118 25307 24155 19927 Face 49119 19913 23356 24175 Face 49120 24156 22816 22815 Face 49121 29855 29909 29854 Face 49122 23501 25040 23465 Face 49123 25171 24156 22815 Face 49124 23158 23853 23951 Face 49125 14861 24384 24251 Face 49126 1262 23164 23163 Face 49127 15019 12705 15020 Face 49128 24055 24056 23928 Face 49129 25104 25243 25242 Face 49130 22933 23201 23338 Face 49131 10842 24055 23928 Face 49132 24566 24567 24705 Face 49133 20139 24494 24352 Face 49134 24844 24979 24978 Face 49135 23463 23478 11812 Face 49136 1037 1036 927 Face 49137 22788 23757 23993 Face 49138 23261 11811 23830 Face 49139 4021 24690 1383 Face 49140 24176 19913 24175 Face 49141 12254 24136 24418 Face 49142 24286 24285 23356 Face 49143 15172 15587 17836 Face 49144 24129 24463 12190 Face 49145 24248 24381 11452 Face 49146 23822 24418 24336 Face 49147 23772 24947 24946 Face 49148 22771 23772 23763 Face 49149 13017 11943 11777 Face 49150 22471 21801 11746 Face 49151 24380 24520 24519 Face 49152 24379 24380 24519 Face 49153 24520 24656 24655 Face 49154 24519 24520 24655 Face 49155 24656 24794 24793 Face 49156 24655 24656 24793 Face 49157 24794 24927 24926 Face 49158 24793 24794 24926 Face 49159 25065 25064 24926 Face 49160 24927 25065 24926 Face 49161 25065 25204 25203 Face 49162 25064 25065 25203 Face 49163 25204 25340 25339 Face 49164 25203 25204 25339 Face 49165 25340 22694 24273 Face 49166 25339 25340 24273 Face 49167 22694 14663 13395 Face 49168 24273 22694 13395 Face 49169 14663 24041 24161 Face 49170 13395 14663 24161 Face 49171 24041 12924 22565 Face 49172 24161 24041 22565 Face 49173 12924 25015 2255 Face 49174 22565 12924 2255 Face 49175 23852 25151 2255 Face 49176 25015 23852 2255 Face 49177 24941 24579 25151 Face 49178 23852 24941 25151 Face 49179 22827 24646 24579 Face 49180 24941 22827 24579 Face 49181 23004 22851 24646 Face 49182 22827 23004 24646 Face 49183 24915 25052 22851 Face 49184 23004 24915 22851 Face 49185 23348 22063 25052 Face 49186 24915 23348 25052 Face 49187 22513 23694 22063 Face 49188 23348 22513 22063 Face 49189 12255 23126 23694 Face 49190 22513 12255 23694 Face 49191 21602 21603 23126 Face 49192 12255 21602 23126 Face 49193 4989 1318 2490 Face 49194 22760 21602 22761 Face 49195 23793 23796 24545 Face 49196 23947 21565 14257 Face 49197 21869 23336 23337 Face 49198 23999 24117 24600 Face 49199 24612 6389 22699 Face 49200 21513 21512 22724 Face 49201 24819 24954 24953 Face 49202 23718 23715 22699 Face 49203 25093 25232 25231 Face 49204 18122 18219 1503 Face 49205 16339 22795 21837 Face 49206 23820 12797 23817 Face 49207 24148 23523 23289 Face 49208 24817 24148 23289 Face 49209 24191 16771 29770 Face 49210 23186 24193 23809 Face 49211 25383 25384 23138 Face 49212 24128 24026 12003 Face 49213 24690 24691 24826 Face 49214 24827 24962 24961 Face 49215 24965 25104 25103 Face 49216 24964 24965 25103 Face 49217 12978 25055 24603 Face 49218 23499 22707 24210 Face 49219 24621 20139 24544 Face 49220 24615 24621 24544 Face 49221 25099 25100 25238 Face 49222 22989 24584 24446 Face 49223 24591 22985 13165 Face 49224 22080 25281 21302 Face 49225 1383 24690 24689 Face 49226 24504 23383 21872 Face 49227 24561 24560 23198 Face 49228 19685 19686 19769 Face 49229 19913 24286 23356 Face 49230 24389 24390 24285 Face 49231 19788 19867 19787 Face 49232 13107 14128 14229 Face 49233 24363 11588 21051 Face 49234 22816 23866 23845 Face 49235 24707 24843 24842 Face 49236 23718 24886 24884 Face 49237 23065 23064 23011 Face 49238 26214 20640 29462 Face 49239 14686 22868 22821 Face 49240 23065 23120 23064 Face 49241 22833 25047 25048 Face 49242 11429 22768 22748 Face 49243 24535 19537 15734 Face 49244 10719 23307 22083 Face 49245 23324 24621 24615 Face 49246 23322 23324 24615 Face 49247 22180 24457 22860 Face 49248 23634 20002 24905 Face 49249 15864 16015 15863 Face 49250 24499 24611 23202 Face 49251 24953 25092 25091 Face 49252 13165 22985 24641 Face 49253 24286 24389 24285 Face 49254 24390 24389 24740 Face 49255 23028 20493 24329 Face 49256 23674 23841 23422 Face 49257 24249 24248 11370 Face 49258 11588 20176 21051 Face 49259 23465 25040 22770 Face 49260 24682 23501 23465 Face 49261 11371 24124 24249 Face 49262 19320 23720 12635 Face 49263 10203 25020 23745 Face 49264 24955 25094 25093 Face 49265 24521 24520 24380 Face 49266 24381 24521 24380 Face 49267 24521 24657 24656 Face 49268 24520 24521 24656 Face 49269 24657 24795 24794 Face 49270 24656 24657 24794 Face 49271 24928 24927 24794 Face 49272 24795 24928 24794 Face 49273 24928 25066 25065 Face 49274 24927 24928 25065 Face 49275 25066 25205 25204 Face 49276 25065 25066 25204 Face 49277 25205 25341 25340 Face 49278 25204 25205 25340 Face 49279 25341 4603 22694 Face 49280 25340 25341 22694 Face 49281 4603 14545 14663 Face 49282 22694 4603 14663 Face 49283 14545 24042 24041 Face 49284 14663 14545 24041 Face 49285 24042 21231 12924 Face 49286 24041 24042 12924 Face 49287 21231 22640 25015 Face 49288 12924 21231 25015 Face 49289 24623 23852 25015 Face 49290 22640 24623 25015 Face 49291 24855 24941 23852 Face 49292 24623 24855 23852 Face 49293 23736 22827 24941 Face 49294 24855 23736 24941 Face 49295 20666 23004 22827 Face 49296 23736 20666 22827 Face 49297 24782 24915 23004 Face 49298 20666 24782 23004 Face 49299 24808 23348 24915 Face 49300 24782 24808 24915 Face 49301 20901 22513 23348 Face 49302 24808 20901 23348 Face 49303 23127 12255 22513 Face 49304 20901 23127 22513 Face 49305 21510 21602 12255 Face 49306 23127 21510 12255 Face 49307 25222 19454 22872 Face 49308 21510 22761 21602 Face 49309 24560 22546 24559 Face 49310 22546 23796 23793 Face 49311 23090 23205 22984 Face 49312 22946 23902 22693 Face 49313 24817 23289 22744 Face 49314 23313 24817 22744 Face 49315 25293 24446 21889 Face 49316 24066 25293 21889 Face 49317 21421 22860 24452 Face 49318 23062 21421 24452 Face 49319 24464 23387 25008 Face 49320 22791 24464 25008 Face 49321 25008 23387 23691 Face 49322 23387 20846 23691 Face 49323 24678 21420 22542 Face 49324 24292 24581 24192 Face 49325 24026 25290 12003 Face 49326 25221 25357 25220 Face 49327 24826 24827 24961 Face 49328 25100 25101 25239 Face 49329 24694 24830 24829 Face 49330 24693 24694 24829 Face 49331 23514 23460 21415 Face 49332 23874 23913 23876 Face 49333 13263 23324 23322 Face 49334 21599 13263 23322 Face 49335 24823 24824 24958 Face 49336 23407 23382 23487 Face 49337 25273 12793 25272 Face 49338 22688 25137 11673 Face 49339 24641 19320 12635 Face 49340 12259 23663 23516 Face 49341 12148 12235 24458 Face 49342 24572 24573 23087 Face 49343 29960 29959 29901 Face 49344 23140 25311 23467 Face 49345 24985 24986 25124 Face 49346 25146 25145 24181 Face 49347 22081 20581 23843 Face 49348 22717 23938 23937 Face 49349 23716 14766 22834 Face 49350 23012 6008 22372 Face 49351 23437 23440 24664 Face 49352 11751 21599 23320 Face 49353 23632 23623 24781 Face 49354 22710 22731 23733 Face 49355 20872 20960 25058 Face 49356 20960 23503 25058 Face 49357 23012 3442 23013 Face 49358 20640 23221 14729 Face 49359 23221 20640 26214 Face 49360 23087 22717 23937 Face 49361 28091 23120 27958 Face 49362 2338 2337 2209 Face 49363 24482 23766 23344 Face 49364 33636 33635 33508 Face 49365 22837 23042 24093 Face 49366 23619 24730 23778 Face 49367 34263 34262 34139 Face 49368 23861 23933 23197 Face 49369 20176 25007 24733 Face 49370 24020 21583 23459 Face 49371 23470 25037 23986 Face 49372 25276 20604 24859 Face 49373 21950 23573 17197 Face 49374 23095 23615 23573 Face 49375 24614 24615 22681 Face 49376 24724 24773 22932 Face 49377 21328 21676 21582 Face 49378 2689 24594 24456 Face 49379 24418 22850 24336 Face 49380 24992 23758 23654 Face 49381 25040 22771 22770 Face 49382 20427 20513 24682 Face 49383 22999 22769 24879 Face 49384 25422 29851 29850 Face 49385 24382 24381 24248 Face 49386 24249 24382 24248 Face 49387 24522 24521 24381 Face 49388 24382 24522 24381 Face 49389 24522 24658 24657 Face 49390 24521 24522 24657 Face 49391 24796 24795 24657 Face 49392 24658 24796 24657 Face 49393 24929 24928 24795 Face 49394 24796 24929 24795 Face 49395 24929 25067 25066 Face 49396 24928 24929 25066 Face 49397 25067 25206 25205 Face 49398 25066 25067 25205 Face 49399 25206 25342 25341 Face 49400 25205 25206 25341 Face 49401 25342 19507 4603 Face 49402 25341 25342 4603 Face 49403 19507 12834 14545 Face 49404 4603 19507 14545 Face 49405 12834 24043 24042 Face 49406 14545 12834 24042 Face 49407 24043 20690 21231 Face 49408 24042 24043 21231 Face 49409 20690 22641 22640 Face 49410 21231 20690 22640 Face 49411 24075 24623 22640 Face 49412 22641 24075 22640 Face 49413 23359 24855 24623 Face 49414 24075 23359 24623 Face 49415 23735 23736 24855 Face 49416 23359 23735 24855 Face 49417 20578 20666 23736 Face 49418 23735 20578 23736 Face 49419 24644 24782 20666 Face 49420 20578 24644 20666 Face 49421 23641 24808 24782 Face 49422 24644 23641 24782 Face 49423 14153 20901 24808 Face 49424 23641 14153 24808 Face 49425 23071 23127 20901 Face 49426 14153 23071 20901 Face 49427 21416 21510 23127 Face 49428 23071 21416 23127 Face 49429 25753 25161 25754 Face 49430 21416 22954 21510 Face 49431 33634 33633 33506 Face 49432 24560 24559 23196 Face 49433 23902 12168 22693 Face 49434 23785 25159 24195 Face 49435 24446 23313 22744 Face 49436 21889 24446 22744 Face 49437 11997 22791 11669 Face 49438 22899 24225 24045 Face 49439 30990 30991 31089 Face 49440 23295 21322 24208 Face 49441 26176 22807 25317 Face 49442 20003 25324 23005 Face 49443 23371 24540 23610 Face 49444 20158 20239 23376 Face 49445 23212 24561 23198 Face 49446 20079 20157 22905 Face 49447 23880 22905 23179 Face 49448 23429 24088 23113 Face 49449 25240 25377 25376 Face 49450 25239 25240 25376 Face 49451 24780 23462 25146 Face 49452 24679 23250 24562 Face 49453 23588 25042 23823 Face 49454 24874 24094 25013 Face 49455 22736 20956 21230 Face 49456 24096 24098 25165 Face 49457 24963 25102 25101 Face 49458 25100 25239 25238 Face 49459 23763 24946 24936 Face 49460 24481 23389 21324 Face 49461 23255 23254 24686 Face 49462 6008 23012 23066 Face 49463 23034 24146 22841 Face 49464 23549 25032 6639 Face 49465 24773 23813 22932 Face 49466 15715 15714 15572 Face 49467 14638 14637 25034 Face 49468 23594 20407 22651 Face 49469 25126 25125 24986 Face 49470 22516 2428 25571 Face 49471 23562 29612 23590 Face 49472 257 6155 6736 Face 49473 24720 7628 23731 Face 49474 24981 25120 25119 Face 49475 24980 24981 25119 Face 49476 22941 25034 8937 Face 49477 24703 24704 24839 Face 49478 23160 23159 257 Face 49479 23537 24766 23608 Face 49480 25296 22984 21968 Face 49481 11593 20960 20872 Face 49482 23754 23869 12454 Face 49483 22960 19592 20197 Face 49484 25158 11593 20872 Face 49485 10734 16705 20755 Face 49486 24184 12144 11432 Face 49487 33502 33501 33368 Face 49488 34131 34132 34254 Face 49489 21051 24733 24303 Face 49490 22861 23102 23343 Face 49491 24334 23983 23227 Face 49492 23226 24334 23227 Face 49493 21192 24145 23541 Face 49494 24019 21192 23541 Face 49495 21192 20695 24145 Face 49496 20695 21054 24145 Face 49497 24961 25100 25099 Face 49498 25380 25381 23867 Face 49499 12613 21466 28688 Face 49500 24533 24047 24046 Face 49501 24586 24725 20781 Face 49502 22907 23881 24021 Face 49503 24811 24818 25190 Face 49504 20258 23502 22778 Face 49505 19305 28953 24528 Face 49506 23643 23860 23352 Face 49507 23811 23812 24951 Face 49508 24639 24638 25158 Face 49509 25003 23866 11160 Face 49510 20513 23501 24682 Face 49511 24250 24249 24124 Face 49512 23177 23829 23945 Face 49513 24383 24382 24249 Face 49514 24250 24383 24249 Face 49515 24523 24522 24382 Face 49516 24383 24523 24382 Face 49517 24659 24658 24522 Face 49518 24523 24659 24522 Face 49519 24797 24796 24658 Face 49520 24659 24797 24658 Face 49521 24930 24929 24796 Face 49522 24797 24930 24796 Face 49523 24930 25068 25067 Face 49524 24929 24930 25067 Face 49525 25068 25207 25206 Face 49526 25067 25068 25206 Face 49527 25207 25343 25342 Face 49528 25206 25207 25342 Face 49529 25343 11978 19507 Face 49530 25342 25343 19507 Face 49531 11978 1764 12834 Face 49532 19507 11978 12834 Face 49533 1764 23924 24043 Face 49534 12834 1764 24043 Face 49535 23924 13755 20690 Face 49536 24043 23924 20690 Face 49537 22873 22641 20690 Face 49538 13755 22873 20690 Face 49539 22873 24076 24075 Face 49540 22641 22873 24075 Face 49541 22808 23359 24075 Face 49542 24076 22808 24075 Face 49543 24894 23735 23359 Face 49544 22808 24894 23359 Face 49545 20934 20578 23735 Face 49546 24894 20934 23735 Face 49547 20224 24644 20578 Face 49548 20934 20224 20578 Face 49549 22712 23641 24644 Face 49550 20224 22712 24644 Face 49551 20116 14153 23641 Face 49552 22712 20116 23641 Face 49553 22963 23071 14153 Face 49554 20116 22963 14153 Face 49555 21696 21416 23071 Face 49556 22963 21696 23071 Face 49557 34766 34364 34327 Face 49558 21696 23878 21416 Face 49559 23523 23524 23290 Face 49560 23921 15027 24104 Face 49561 5252 24800 4069 Face 49562 24954 25093 25092 Face 49563 22860 25293 24066 Face 49564 24452 22860 24066 Face 49565 23993 23757 24856 Face 49566 30344 30411 30343 Face 49567 22840 24196 24341 Face 49568 23305 23302 25082 Face 49569 24769 29822 29821 Face 49570 24333 24269 25172 Face 49571 12886 15038 8748 Face 49572 21486 23526 23476 Face 49573 23191 23247 23246 Face 49574 30889 30890 30990 Face 49575 23913 12002 23957 Face 49576 11830 24414 24424 Face 49577 25377 23203 24298 Face 49578 23945 24406 24404 Face 49579 24811 25190 24945 Face 49580 20957 24666 24667 Face 49581 23197 23143 20138 Face 49582 24150 20603 23389 Face 49583 24334 12641 21660 Face 49584 12951 12952 13042 Face 49585 24589 24409 23058 Face 49586 23867 24087 23586 Face 49587 23805 24676 23806 Face 49588 8038 3573 34536 Face 49589 21208 22180 21421 Face 49590 24676 7462 23806 Face 49591 2371 2370 5780 Face 49592 23983 21660 22743 Face 49593 24128 12003 23335 Face 49594 23502 23840 22809 Face 49595 25053 25192 11413 Face 49596 22818 20258 22778 Face 49597 23410 23760 24363 Face 49598 23345 21888 21486 Face 49599 15107 23326 24299 Face 49600 20904 23039 23155 Face 49601 12458 24277 29739 Face 49602 22778 23502 22809 Face 49603 15107 23347 23326 Face 49604 23754 12454 23753 Face 49605 24590 22883 1903 Face 49606 8934 4338 9878 Face 49607 21870 23157 21966 Face 49608 257 23103 23160 Face 49609 22603 22882 20927 Face 49610 24776 23721 11593 Face 49611 23347 22922 22918 Face 49612 23326 23347 22918 Face 49613 23007 23943 23008 Face 49614 23062 24452 24431 Face 49615 22778 22809 25179 Face 49616 29474 24541 22817 Face 49617 13949 13948 16582 Face 49618 11777 11943 14282 Face 49619 22961 23014 23013 Face 49620 22960 22961 23013 Face 49621 18448 23067 23068 Face 49622 23014 23067 23013 Face 49623 23129 3296 23351 Face 49624 23766 24310 23344 Face 49625 23226 23227 21054 Face 49626 20695 23226 21054 Face 49627 20400 20234 23016 Face 49628 21968 25144 25145 Face 49629 24612 22699 22692 Face 49630 23462 21968 25145 Face 49631 24087 14312 23586 Face 49632 24916 22912 23057 Face 49633 22977 23475 23717 Face 49634 24316 25294 24747 Face 49635 24638 24776 11593 Face 49636 26473 20120 20706 Face 49637 22922 24095 24077 Face 49638 22918 22922 24077 Face 49639 24095 25155 25134 Face 49640 24766 23609 23608 Face 49641 24328 23035 23636 Face 49642 24485 22817 24541 Face 49643 23760 11588 24363 Face 49644 24208 11433 21325 Face 49645 11252 20513 20427 Face 49646 20197 1605 22961 Face 49647 14884 24763 23998 Face 49648 24384 24383 24250 Face 49649 24251 24384 24250 Face 49650 24524 24523 24383 Face 49651 24384 24524 24383 Face 49652 24660 24659 24523 Face 49653 24524 24660 24523 Face 49654 24798 24797 24659 Face 49655 24660 24798 24659 Face 49656 24798 24931 24930 Face 49657 24797 24798 24930 Face 49658 24931 25069 25068 Face 49659 24930 24931 25068 Face 49660 25069 25208 25207 Face 49661 25068 25069 25207 Face 49662 25208 25344 25343 Face 49663 25207 25208 25343 Face 49664 25344 22942 11978 Face 49665 25343 25344 11978 Face 49666 22942 21775 1764 Face 49667 11978 22942 1764 Face 49668 21775 23925 23924 Face 49669 1764 21775 23924 Face 49670 23925 24189 13755 Face 49671 23924 23925 13755 Face 49672 24189 22967 22873 Face 49673 13755 24189 22873 Face 49674 22967 9442 24076 Face 49675 22873 22967 24076 Face 49676 25150 22808 24076 Face 49677 9442 25150 24076 Face 49678 24895 24894 22808 Face 49679 25150 24895 22808 Face 49680 21207 20934 24894 Face 49681 24895 21207 24894 Face 49682 21471 20224 20934 Face 49683 21207 21471 20934 Face 49684 23917 22712 20224 Face 49685 21471 23917 20224 Face 49686 19494 20116 22712 Face 49687 23917 19494 22712 Face 49688 23109 22963 20116 Face 49689 19494 23109 20116 Face 49690 24750 21696 22963 Face 49691 23109 24750 22963 Face 49692 27767 22955 23879 Face 49693 34119 34118 33993 Face 49694 23657 23395 23394 Face 49695 23896 24504 21872 Face 49696 24953 24954 25092 Face 49697 25092 25093 25231 Face 49698 20846 21421 23062 Face 49699 23691 20846 23062 Face 49700 11282 5767 13566 Face 49701 28129 25560 25138 Face 49702 24086 24556 24069 Face 49703 24193 23927 23809 Face 49704 20406 20492 11590 Face 49705 24400 21284 11590 Face 49706 12647 24507 23633 Face 49707 11746 24400 11590 Face 49708 23463 23515 24492 Face 49709 23515 23463 24626 Face 49710 23147 25036 25175 Face 49711 23152 23147 25175 Face 49712 24454 23945 24404 Face 49713 20492 11746 11590 Face 49714 24398 27263 12234 Face 49715 14973 15105 14972 Face 49716 25277 23504 23313 Face 49717 24701 24702 24837 Face 49718 4588 23509 24943 Face 49719 23749 25192 25053 Face 49720 23228 23227 22743 Face 49721 20157 22680 20158 Face 49722 16337 21853 12797 Face 49723 31478 31477 31373 Face 49724 25224 3847 696 Face 49725 202 22858 23411 Face 49726 20069 11328 11327 Face 49727 13294 25323 3827 Face 49728 24077 24095 25134 Face 49729 25155 11750 16965 Face 49730 25134 25155 16965 Face 49731 24098 25168 25165 Face 49732 11750 24543 24542 Face 49733 23546 25031 13631 Face 49734 25128 25267 25127 Face 49735 24893 24875 21795 Face 49736 21987 24529 22956 Face 49737 34803 34692 34658 Face 49738 24845 24846 24980 Face 49739 22353 23750 23528 Face 49740 23350 20494 11811 Face 49741 27098 26984 20582 Face 49742 23233 22852 23186 Face 49743 22852 23702 23186 Face 49744 24427 23783 27397 Face 49745 23433 23614 23492 Face 49746 5373 9402 1898 Face 49747 24695 24831 24830 Face 49748 12190 14258 20160 Face 49749 4471 12190 20160 Face 49750 16965 11750 24542 Face 49751 23850 23681 24542 Face 49752 22767 22921 20581 Face 49753 22884 24363 20958 Face 49754 8675 23996 13581 Face 49755 24462 24600 25164 Face 49756 9041 2651 2780 Face 49757 5141 3847 4364 Face 49758 22962 23015 23014 Face 49759 22961 22962 23014 Face 49760 23015 29538 23068 Face 49761 23015 23068 23014 Face 49762 25084 23053 24942 Face 49763 15572 15573 15715 Face 49764 22789 23233 24549 Face 49765 23390 22789 24549 Face 49766 25047 25186 22620 Face 49767 23117 17804 11292 Face 49768 23682 23943 23007 Face 49769 23006 23682 23007 Face 49770 23382 20897 23487 Face 49771 22086 22902 23102 Face 49772 23203 4203 23961 Face 49773 19423 21183 23948 Face 49774 24616 23843 23209 Face 49775 23519 23487 23570 Face 49776 24543 23850 24542 Face 49777 16179 24816 23681 Face 49778 25357 5142 25358 Face 49779 23705 22353 23528 Face 49780 28699 20239 12088 Face 49781 20697 14848 7628 Face 49782 25126 25127 25265 Face 49783 23698 16347 24805 Face 49784 11328 11252 20427 Face 49785 14222 11252 11328 Face 49786 21853 13308 12797 Face 49787 24829 24830 24964 Face 49788 23171 28940 20652 Face 49789 2 24661 13858 Face 49790 19709 22986 19710 Face 49791 417 20225 23064 Face 49792 24661 24660 24524 Face 49793 24837 24972 24971 Face 49794 24661 24799 24798 Face 49795 24660 24661 24798 Face 49796 24799 24932 24931 Face 49797 24798 24799 24931 Face 49798 24932 25070 25069 Face 49799 24931 24932 25069 Face 49800 25070 25209 25208 Face 49801 25069 25070 25208 Face 49802 25209 25345 25344 Face 49803 25208 25209 25344 Face 49804 25345 24222 22942 Face 49805 25344 25345 22942 Face 49806 24222 24120 21775 Face 49807 22942 24222 21775 Face 49808 24120 23926 23925 Face 49809 21775 24120 23925 Face 49810 23926 21232 24189 Face 49811 23925 23926 24189 Face 49812 21232 24258 22967 Face 49813 24189 21232 22967 Face 49814 24037 9442 22967 Face 49815 24258 24037 22967 Face 49816 23687 25150 9442 Face 49817 24037 23687 9442 Face 49818 22874 24895 25150 Face 49819 23687 22874 25150 Face 49820 21024 21207 24895 Face 49821 22874 21024 24895 Face 49822 24467 21471 21207 Face 49823 21024 24467 21207 Face 49824 22745 23917 21471 Face 49825 24467 22745 21471 Face 49826 25181 19494 23917 Face 49827 22745 25181 23917 Face 49828 22971 23109 19494 Face 49829 25181 22971 19494 Face 49830 22864 24750 23109 Face 49831 22971 22864 23109 Face 49832 20394 17865 21193 Face 49833 23879 24497 20758 Face 49834 32546 6037 33289 Face 49835 22744 23289 22814 Face 49836 25232 25369 25368 Face 49837 25231 25232 25368 Face 49838 21116 24464 22791 Face 49839 22431 21116 22791 Face 49840 25657 23253 22823 Face 49841 23610 24540 23244 Face 49842 23886 22689 22908 Face 49843 23550 11429 22777 Face 49844 12647 23633 21284 Face 49845 24400 12647 21284 Face 49846 12760 24123 24122 Face 49847 19380 22906 23901 Face 49848 21421 22180 22860 Face 49849 23880 20079 22905 Face 49850 20935 23063 23074 Face 49851 24633 25009 20579 Face 49852 19929 23732 20009 Face 49853 24841 24842 24976 Face 49854 24251 16582 14861 Face 49855 25391 25392 22947 Face 49856 11762 12559 13171 Face 49857 27018 23652 29598 Face 49858 25385 22789 23390 Face 49859 25384 25385 23390 Face 49860 24292 24259 24052 Face 49861 11574 23508 22752 Face 49862 24171 24581 24292 Face 49863 24172 24171 24292 Face 49864 22530 16337 23820 Face 49865 25127 25266 25265 Face 49866 11810 11891 11809 Face 49867 25280 23418 22736 Face 49868 23850 16179 23681 Face 49869 21274 19915 24816 Face 49870 11670 24869 15575 Face 49871 24580 23028 24018 Face 49872 24733 25007 24726 Face 49873 24033 19629 19713 Face 49874 25085 13040 24024 Face 49875 15427 15289 15290 Face 49876 19302 21675 26757 Face 49877 455 7474 564 Face 49878 24999 25000 23605 Face 49879 23713 23715 24881 Face 49880 23829 23088 24406 Face 49881 25050 25000 24999 Face 49882 9838 13491 9955 Face 49883 23745 10380 312 Face 49884 22987 25422 29848 Face 49885 24549 23233 23186 Face 49886 472 1471 1693 Face 49887 21210 23207 22530 Face 49888 23316 22959 22950 Face 49889 24464 23189 23387 Face 49890 20956 21321 21230 Face 49891 22083 21987 23606 Face 49892 16179 21274 24816 Face 49893 24177 24176 19915 Face 49894 30820 30819 30720 Face 49895 28305 13065 12975 Face 49896 12254 24418 23822 Face 49897 24685 3075 3074 Face 49898 30368 30435 30434 Face 49899 22701 19538 24757 Face 49900 23016 23015 22962 Face 49901 16496 24694 16656 Face 49902 23070 23069 23016 Face 49903 23016 23069 23015 Face 49904 24454 24404 24405 Face 49905 3074 3441 24685 Face 49906 25248 25385 25384 Face 49907 25247 25248 25384 Face 49908 20581 22921 23912 Face 49909 21661 21853 16337 Face 49910 23946 22842 21565 Face 49911 1503 18219 1614 Face 49912 15573 15572 24850 Face 49913 18122 1503 1390 Face 49914 23842 23946 23947 Face 49915 24849 24985 24984 Face 49916 2772 13294 25322 Face 49917 24985 25124 25123 Face 49918 21274 24177 19915 Face 49919 24145 23744 23542 Face 49920 20516 19913 24176 Face 49921 25007 25179 24726 Face 49922 24828 24829 24963 Face 49923 25266 25403 25402 Face 49924 30918 30917 30819 Face 49925 20069 14222 11328 Face 49926 20869 20868 24505 Face 49927 24838 24973 24972 Face 49928 24933 24799 24800 Face 49929 24984 24985 25123 Face 49930 21565 22842 24908 Face 49931 34566 34498 34446 Face 49932 14310 26298 23224 Face 49933 12364 12273 13566 Face 49934 24991 15290 25131 Face 49935 64 9186 34704 Face 49936 23025 9281 24356 Face 49937 25560 26757 21675 Face 49938 2899 23642 21653 Face 49939 24933 25071 25070 Face 49940 24932 24933 25070 Face 49941 25071 25210 25209 Face 49942 25070 25071 25209 Face 49943 25210 25346 25345 Face 49944 25209 25210 25345 Face 49945 25346 12794 24222 Face 49946 25345 25346 24222 Face 49947 12794 3565 24120 Face 49948 24222 12794 24120 Face 49949 3565 21375 23926 Face 49950 24120 3565 23926 Face 49951 21375 24097 21232 Face 49952 23926 21375 21232 Face 49953 24097 22940 24258 Face 49954 21232 24097 24258 Face 49955 2759 24037 24258 Face 49956 22940 2759 24258 Face 49957 25275 23687 24037 Face 49958 2759 25275 24037 Face 49959 22757 22874 23687 Face 49960 25275 22757 23687 Face 49961 21989 21024 22874 Face 49962 22757 21989 22874 Face 49963 24719 24467 21024 Face 49964 21989 24719 21024 Face 49965 19847 22745 24467 Face 49966 24719 19847 24467 Face 49967 19481 25181 22745 Face 49968 19847 19481 22745 Face 49969 23021 22971 25181 Face 49970 19481 23021 25181 Face 49971 23593 22864 22971 Face 49972 23021 23593 22971 Face 49973 24497 23879 22864 Face 49974 23593 24497 22864 Face 49975 23458 24080 23394 Face 49976 33996 33995 33868 Face 49977 25369 23668 23675 Face 49978 25368 25369 23675 Face 49979 13165 24641 23826 Face 49980 12293 13165 23826 Face 49981 6377 6378 9195 Face 49982 34328 34797 34710 Face 49983 25048 25047 23555 Face 49984 24640 202 22763 Face 49985 24507 24626 23633 Face 49986 24507 23515 24626 Face 49987 24567 24706 24705 Face 49988 28495 21320 21319 Face 49989 25850 25536 24445 Face 49990 14883 24763 14884 Face 49991 24664 21516 21609 Face 49992 22959 23316 14845 Face 49993 24906 24936 19920 Face 49994 20006 22776 25307 Face 49995 20156 20669 25153 Face 49996 24936 20323 19920 Face 49997 21514 23809 23019 Face 49998 24837 24838 24972 Face 49999 24969 24970 25108 Face 50000 25109 25248 25247 Face 50001 25330 25195 23188 Face 50002 23843 23519 23209 Face 50003 9056 9415 8539 Face 50004 23633 24473 23060 Face 50005 25124 25263 25262 Face 50006 25123 25124 25262 Face 50007 25400 25399 25262 Face 50008 25263 25400 25262 Face 50009 24177 20516 24176 Face 50010 23967 11910 23140 Face 50011 24163 24286 19913 Face 50012 2490 4333 2899 Face 50013 13308 24580 24018 Face 50014 5193 5322 5321 Face 50015 34551 34654 34753 Face 50016 26078 26194 26193 Face 50017 26079 26078 19617 Face 50018 6620 33410 33275 Face 50019 12228 25143 12316 Face 50020 16332 16331 24699 Face 50021 1455 23996 13294 Face 50022 22822 24014 24013 Face 50023 23794 23031 25399 Face 50024 27243 27127 20430 Face 50025 33618 33743 33617 Face 50026 23702 24193 23186 Face 50027 23509 23749 24943 Face 50028 25195 24330 23188 Face 50029 23856 22741 21117 Face 50030 24343 21208 20846 Face 50031 22373 24362 23594 Face 50032 25400 23794 25399 Face 50033 23794 24069 24166 Face 50034 20516 24163 19913 Face 50035 24255 24256 27256 Face 50036 24326 20602 19996 Face 50037 20602 23084 25174 Face 50038 24004 23999 24462 Face 50039 23337 24335 23381 Face 50040 23769 14222 20069 Face 50041 24505 23686 22858 Face 50042 21113 15471 20932 Face 50043 5252 2160 24800 Face 50044 16722 24211 20621 Face 50045 20315 23017 26673 Face 50046 25115 25116 25254 Face 50047 24973 25112 25111 Face 50048 24834 24835 24969 Face 50049 24970 25109 25108 Face 50050 25174 23236 14848 Face 50051 24104 15027 11832 Face 50052 20482 22943 23122 Face 50053 23020 21237 23791 Face 50054 23031 23794 24166 Face 50055 24069 24190 23240 Face 50056 24166 24069 23240 Face 50057 24190 24142 24403 Face 50058 23240 24190 24403 Face 50059 24163 24255 24286 Face 50060 24130 24131 29517 Face 50061 25228 25229 25365 Face 50062 24165 24164 25079 Face 50063 24600 24479 25164 Face 50064 24629 24493 23175 Face 50065 23686 23769 22858 Face 50066 20115 25180 20869 Face 50067 33358 33491 33357 Face 50068 23283 23226 20695 Face 50069 24142 12977 12884 Face 50070 22805 22974 23436 Face 50071 24475 22692 23962 Face 50072 884 32630 885 Face 50073 20096 24609 24630 Face 50074 23830 19434 21209 Face 50075 16014 15862 15863 Face 50076 28574 28701 13252 Face 50077 24800 24934 24933 Face 50078 23642 2899 13388 Face 50079 24934 25072 25071 Face 50080 24933 24934 25071 Face 50081 25072 25211 25210 Face 50082 25071 25072 25210 Face 50083 25211 25347 25346 Face 50084 25210 25211 25346 Face 50085 25347 12703 12794 Face 50086 25346 25347 12794 Face 50087 12703 5121 3565 Face 50088 12794 12703 3565 Face 50089 5121 20902 21375 Face 50090 3565 5121 21375 Face 50091 20902 23854 24097 Face 50092 21375 20902 24097 Face 50093 23854 25306 22940 Face 50094 24097 23854 22940 Face 50095 24762 2759 22940 Face 50096 25306 24762 22940 Face 50097 24159 25275 2759 Face 50098 24762 24159 2759 Face 50099 23056 22757 25275 Face 50100 24159 23056 25275 Face 50101 21988 21989 22757 Face 50102 23056 21988 22757 Face 50103 24355 24719 21989 Face 50104 21988 24355 21989 Face 50105 24345 19847 24719 Face 50106 24355 24345 24719 Face 50107 25319 19481 19847 Face 50108 24345 25319 19847 Face 50109 24489 23021 19481 Face 50110 25319 24489 19481 Face 50111 24459 23593 23021 Face 50112 24489 24459 23021 Face 50113 20988 24497 23593 Face 50114 24459 20988 23593 Face 50115 20847 29146 20668 Face 50116 20988 20668 24497 Face 50117 23668 12293 15170 Face 50118 22898 22803 23003 Face 50119 23646 13165 12293 Face 50120 23668 23646 12293 Face 50121 22906 20159 23880 Face 50122 23734 24341 25019 Face 50123 22625 13305 24064 Face 50124 23489 24084 24064 Face 50125 23515 23152 24492 Face 50126 24492 23152 25175 Face 50127 26078 26079 26194 Face 50128 21704 24468 24361 Face 50129 9524 10199 11781 Face 50130 23538 23537 23061 Face 50131 15430 24989 15431 Face 50132 24699 24835 24834 Face 50133 20077 20581 22081 Face 50134 31804 31805 31911 Face 50135 22878 22042 22370 Face 50136 6735 24727 10595 Face 50137 23539 23540 22042 Face 50138 11670 24484 24869 Face 50139 25108 25109 25247 Face 50140 22795 23705 23527 Face 50141 2894 14257 24775 Face 50142 24565 24566 24704 Face 50143 23655 24044 24165 Face 50144 25361 25362 20482 Face 50145 24403 24142 12884 Face 50146 12977 23170 23166 Face 50147 12884 12977 23166 Face 50148 23170 22877 22876 Face 50149 11974 22840 23734 Face 50150 22923 21143 23882 Face 50151 23166 23170 22876 Face 50152 25087 25226 25225 Face 50153 23419 16501 23729 Face 50154 33410 6620 6619 Face 50155 13019 13106 13020 Face 50156 5141 4364 4365 Face 50157 25132 25131 15290 Face 50158 22877 22995 22945 Face 50159 20305 21505 24722 Face 50160 12646 11622 11700 Face 50161 15493 15354 18052 Face 50162 15289 15427 15426 Face 50163 23210 23131 24014 Face 50164 22822 23210 24014 Face 50165 23838 23953 24014 Face 50166 23131 23838 24014 Face 50167 24005 24001 24553 Face 50168 25871 23775 23672 Face 50169 21028 23856 21117 Face 50170 23702 23428 22373 Face 50171 21116 19919 24464 Face 50172 20956 23629 21321 Face 50173 22883 25014 3464 Face 50174 16574 2786 16413 Face 50175 19440 25640 24081 Face 50176 6284 24477 6399 Face 50177 24875 21794 21795 Face 50178 21794 21699 21328 Face 50179 21772 21869 23337 Face 50180 15533 15532 23103 Face 50181 23190 23156 24628 Face 50182 23728 23630 23942 Face 50183 24697 24833 24832 Face 50184 22858 23769 20069 Face 50185 22436 20564 20652 Face 50186 14686 14566 22868 Face 50187 22734 22846 22845 Face 50188 23347 15107 15106 Face 50189 24876 21890 24877 Face 50190 24180 24181 23655 Face 50191 24698 24699 24834 Face 50192 24835 24970 24969 Face 50193 24566 24705 24704 Face 50194 24705 24841 24840 Face 50195 25024 22691 21986 Face 50196 24439 24438 21986 Face 50197 22876 22877 22945 Face 50198 22995 22336 24291 Face 50199 22945 22995 24291 Face 50200 22336 24412 23397 Face 50201 23304 23303 23247 Face 50202 11430 11589 23146 Face 50203 23322 24615 24614 Face 50204 21582 23366 19864 Face 50205 25167 25166 13815 Face 50206 23999 24004 24493 Face 50207 11914 24667 24668 Face 50208 20868 23686 24505 Face 50209 23156 23190 20115 Face 50210 14448 14331 22970 Face 50211 2899 4333 2771 Face 50212 22842 24488 24908 Face 50213 22974 23437 23436 Face 50214 23713 24881 24880 Face 50215 19828 19829 19827 Face 50216 23712 23713 24880 Face 50217 24881 25051 22999 Face 50218 23204 11995 24315 Face 50219 20780 24640 24778 Face 50220 25364 25365 11911 Face 50221 14885 23998 19273 Face 50222 24935 25073 25072 Face 50223 24934 24935 25072 Face 50224 25073 25212 25211 Face 50225 25072 25073 25211 Face 50226 25212 25348 25347 Face 50227 25211 25212 25347 Face 50228 25348 21700 12703 Face 50229 25347 25348 12703 Face 50230 21700 14423 5121 Face 50231 12703 21700 5121 Face 50232 14423 19497 20902 Face 50233 5121 14423 20902 Face 50234 19497 23974 23854 Face 50235 20902 19497 23854 Face 50236 23030 25306 23854 Face 50237 23974 23030 23854 Face 50238 13076 24762 25306 Face 50239 23030 13076 25306 Face 50240 12524 24159 24762 Face 50241 13076 12524 24762 Face 50242 22875 23056 24159 Face 50243 12524 22875 24159 Face 50244 22084 21988 23056 Face 50245 22875 22084 23056 Face 50246 24127 24355 21988 Face 50247 22084 24127 21988 Face 50248 15298 24345 24355 Face 50249 24127 15298 24355 Face 50250 23693 25319 24345 Face 50251 15298 23693 24345 Face 50252 23136 24489 25319 Face 50253 23693 23136 25319 Face 50254 24525 24459 24489 Face 50255 23136 24525 24489 Face 50256 25315 20988 24459 Face 50257 24525 25315 24459 Face 50258 23662 28365 20955 Face 50259 27012 23662 20955 Face 50260 23675 23668 15170 Face 50261 12293 23826 23825 Face 50262 25370 23646 23668 Face 50263 25369 25370 23668 Face 50264 12819 23734 25019 Face 50265 24341 22996 23909 Face 50266 23603 21872 22625 Face 50267 13305 24063 24064 Face 50268 25036 23780 25175 Face 50269 23560 24420 22697 Face 50270 23674 20618 23447 Face 50271 25241 25378 25377 Face 50272 20081 24223 23410 Face 50273 24044 24045 24253 Face 50274 13170 21770 22275 Face 50275 23260 24573 24572 Face 50276 24976 25115 25114 Face 50277 24975 24976 25114 Face 50278 25391 22947 22746 Face 50279 25115 25254 25253 Face 50280 22947 24551 23582 Face 50281 25390 25391 22746 Face 50282 22862 11574 23711 Face 50283 22746 22947 23582 Face 50284 23807 24581 24171 Face 50285 24170 23807 24171 Face 50286 24866 24867 25024 Face 50287 22691 25049 21986 Face 50288 24291 22336 23397 Face 50289 23097 23360 23397 Face 50290 24412 23097 23397 Face 50291 19864 19784 23360 Face 50292 23320 23322 24614 Face 50293 21599 23322 23320 Face 50294 27251 23575 28678 Face 50295 28574 13252 13157 Face 50296 24851 24987 24850 Face 50297 10092 11255 20341 Face 50298 23728 23942 23941 Face 50299 24899 23419 23083 Face 50300 25401 25400 25263 Face 50301 23097 19864 23360 Face 50302 23942 23893 23941 Face 50303 19707 23098 22785 Face 50304 13225 13129 13130 Face 50305 32697 32696 32569 Face 50306 22785 23132 23131 Face 50307 23210 22785 23131 Face 50308 23837 23838 23131 Face 50309 23132 23837 23131 Face 50310 23672 23775 23838 Face 50311 23837 23672 23838 Face 50312 24193 23702 22373 Face 50313 25017 25869 23672 Face 50314 12702 23580 21321 Face 50315 23428 14301 24362 Face 50316 16574 16413 16414 Face 50317 23260 23255 24746 Face 50318 23310 23311 22450 Face 50319 24039 23310 22450 Face 50320 26220 11409 26337 Face 50321 23670 23394 23323 Face 50322 23559 24132 11348 Face 50323 19864 23366 23940 Face 50324 23167 12723 15884 Face 50325 22804 24629 23175 Face 50326 23530 23531 24748 Face 50327 23176 24627 24628 Face 50328 14765 14888 14887 Face 50329 20575 20661 20663 Face 50330 24558 21237 24557 Face 50331 19706 23098 19707 Face 50332 23143 19498 20138 Face 50333 24696 24697 24832 Face 50334 25387 25388 24396 Face 50335 23310 30723 23311 Face 50336 30023 30085 30084 Face 50337 33543 18738 33171 Face 50338 24704 24705 24840 Face 50339 24841 24976 24975 Face 50340 21420 25313 24866 Face 50341 24867 22691 25024 Face 50342 19784 19864 23940 Face 50343 23366 12532 23280 Face 50344 23940 23366 23280 Face 50345 18975 24613 23982 Face 50346 8362 8934 11255 Face 50347 24186 24856 11348 Face 50348 24140 24136 12254 Face 50349 23832 24993 24992 Face 50350 24132 22737 11348 Face 50351 25058 23503 24221 Face 50352 23630 21048 23942 Face 50353 25180 20868 20869 Face 50354 24627 23190 24628 Face 50355 25141 23277 24729 Face 50356 23912 22935 23520 Face 50357 21055 20694 22856 Face 50358 23440 24677 24664 Face 50359 24019 23541 11413 Face 50360 25091 25229 1603 Face 50361 25051 15660 24555 Face 50362 24880 24881 22999 Face 50363 25048 23555 22742 Face 50364 24181 22899 23655 Face 50365 24215 24534 22975 Face 50366 20494 24068 11811 Face 50367 12008 22816 3172 Face 50368 14844 14719 14720 Face 50369 25074 25213 25212 Face 50370 25073 25074 25212 Face 50371 25213 25349 25348 Face 50372 25212 25213 25348 Face 50373 25349 19761 21700 Face 50374 25348 25349 21700 Face 50375 19761 14424 14423 Face 50376 21700 19761 14423 Face 50377 14424 22449 19497 Face 50378 14423 14424 19497 Face 50379 22449 23973 23974 Face 50380 19497 22449 23974 Face 50381 24089 23030 23974 Face 50382 23973 24089 23974 Face 50383 24270 13076 23030 Face 50384 24089 24270 23030 Face 50385 22276 12524 13076 Face 50386 24270 22276 13076 Face 50387 22276 23051 22875 Face 50388 12524 22276 22875 Face 50389 23051 22751 22084 Face 50390 22875 23051 22084 Face 50391 24202 24127 22084 Face 50392 22751 24202 22084 Face 50393 23529 15298 24127 Face 50394 24202 23529 24127 Face 50395 23800 23693 15298 Face 50396 23529 23800 15298 Face 50397 23208 23136 23693 Face 50398 23800 23208 23693 Face 50399 23110 24525 23136 Face 50400 23208 23110 23136 Face 50401 32747 33285 17193 Face 50402 17193 33285 11041 Face 50403 23234 23470 24080 Face 50404 23395 23458 23394 Face 50405 15170 12293 23825 Face 50406 23826 12083 13760 Face 50407 25233 25370 25369 Face 50408 25232 25233 25369 Face 50409 25019 24341 23909 Face 50410 32018 32122 32121 Face 50411 11271 23896 23603 Face 50412 21872 13305 22625 Face 50413 25198 25333 24090 Face 50414 25081 25013 23204 Face 50415 24890 21145 12169 Face 50416 21514 24549 23809 Face 50417 24409 23877 24103 Face 50418 20581 23912 23843 Face 50419 23706 20619 16672 Face 50420 19440 19520 25640 Face 50421 25114 25115 25253 Face 50422 25254 25391 25390 Face 50423 24678 24683 21420 Face 50424 25313 24867 24866 Face 50425 23466 24683 24678 Face 50426 23446 23466 24678 Face 50427 24551 24215 24346 Face 50428 24683 25313 21420 Face 50429 24434 20873 24433 Face 50430 24170 24171 11513 Face 50431 25166 13825 13815 Face 50432 23860 23643 22831 Face 50433 23280 12532 23895 Face 50434 24804 23698 24805 Face 50435 25059 20580 20002 Face 50436 22339 23169 22244 Face 50437 23115 19348 15885 Face 50438 25130 25129 24990 Face 50439 25269 25268 25129 Face 50440 24278 24155 23981 Face 50441 24132 25280 23888 Face 50442 23498 24231 23844 Face 50443 24991 25130 24990 Face 50444 23614 25360 22886 Face 50445 25190 23731 23516 Face 50446 23574 23492 22886 Face 50447 15018 15017 14891 Face 50448 23098 24015 23132 Face 50449 22785 23098 23132 Face 50450 23727 23837 23132 Face 50451 24015 23727 23132 Face 50452 34601 34743 34658 Face 50453 23727 25017 23837 Face 50454 25287 24179 12342 Face 50455 24484 20156 24869 Face 50456 22373 23428 24362 Face 50457 15591 22370 24803 Face 50458 14301 23509 4588 Face 50459 24362 14301 4588 Face 50460 23631 23310 24039 Face 50461 23315 24039 22450 Face 50462 15066 15197 15196 Face 50463 23436 23437 24663 Face 50464 21138 23498 23580 Face 50465 24748 24628 12168 Face 50466 6403 27386 25585 Face 50467 23689 23085 20081 Face 50468 24748 23176 24628 Face 50469 22085 22861 21025 Face 50470 22775 23781 23776 Face 50471 24303 24733 23664 Face 50472 25383 23138 12533 Face 50473 11749 24083 24909 Face 50474 24833 24968 24967 Face 50475 24609 24757 11330 Face 50476 22867 22919 22158 Face 50477 15570 15431 24851 Face 50478 24002 19783 24940 Face 50479 24772 24002 24940 Face 50480 24840 24841 24975 Face 50481 23582 24551 24346 Face 50482 20871 23466 23446 Face 50483 25321 20871 23446 Face 50484 22181 22085 21025 Face 50485 19700 23137 22803 Face 50486 23179 22928 23133 Face 50487 31579 31693 31578 Face 50488 22809 23840 22800 Face 50489 23840 22811 22800 Face 50490 24804 24805 22870 Face 50491 33357 33490 33356 Face 50492 12702 21138 23580 Face 50493 11588 11666 20176 Face 50494 22818 22778 25007 Face 50495 23190 25180 20115 Face 50496 23531 23176 24748 Face 50497 24588 24445 24034 Face 50498 24361 24360 23764 Face 50499 23740 24890 24889 Face 50500 22731 23737 23733 Face 50501 23632 24781 22784 Face 50502 23943 23632 22784 Face 50503 15660 22177 24260 Face 50504 22999 25051 24555 Face 50505 9280 4358 23187 Face 50506 12550 11531 9867 Face 50507 23907 19301 14973 Face 50508 21418 24005 24002 Face 50509 34791 34641 34647 Face 50510 34508 34300 34774 Face 50511 25075 25214 25213 Face 50512 25074 25075 25213 Face 50513 25214 25350 25349 Face 50514 25213 25214 25349 Face 50515 25350 22993 19761 Face 50516 25349 25350 19761 Face 50517 22993 14544 14424 Face 50518 19761 22993 14424 Face 50519 14544 23803 22449 Face 50520 14424 14544 22449 Face 50521 23803 23972 23973 Face 50522 22449 23803 23973 Face 50523 23972 24147 24089 Face 50524 23973 23972 24089 Face 50525 12912 24270 24089 Face 50526 24147 12912 24089 Face 50527 12912 24364 22276 Face 50528 24270 12912 22276 Face 50529 24365 23051 22276 Face 50530 24364 24365 22276 Face 50531 25154 22751 23051 Face 50532 24365 25154 23051 Face 50533 23887 24202 22751 Face 50534 25154 23887 22751 Face 50535 23532 23529 24202 Face 50536 23887 23532 24202 Face 50537 23799 23800 23529 Face 50538 23532 23799 23529 Face 50539 23072 23208 23800 Face 50540 23799 23072 23800 Face 50541 23182 23110 23208 Face 50542 23072 23182 23208 Face 50543 23378 20980 22510 Face 50544 23182 22510 23110 Face 50545 23063 23062 24431 Face 50546 24452 24066 20018 Face 50547 23825 23826 13760 Face 50548 12083 22431 19995 Face 50549 25094 25233 25232 Face 50550 25093 25094 25232 Face 50551 20236 24478 21606 Face 50552 24045 24046 22843 Face 50553 24071 24070 11271 Face 50554 23896 21872 23603 Face 50555 23102 12704 23560 Face 50556 23834 23723 4074 Face 50557 28765 20847 19091 Face 50558 24342 24901 24023 Face 50559 20601 20689 24304 Face 50560 24832 24833 24967 Face 50561 23956 22079 24082 Face 50562 25388 21581 24396 Face 50563 25253 25254 25390 Face 50564 22975 24002 24772 Face 50565 23455 24552 19700 Face 50566 28940 428 23225 Face 50567 24453 21046 21047 Face 50568 31805 31804 31692 Face 50569 23102 23560 23343 Face 50570 24503 11573 21047 Face 50571 20873 24170 11513 Face 50572 24552 23901 23137 Face 50573 22462 24271 4471 Face 50574 23995 24139 24433 Face 50575 11673 23490 25271 Face 50576 21046 24503 21047 Face 50577 23368 23343 22898 Face 50578 30024 30025 30086 Face 50579 19700 22803 22898 Face 50580 24277 23654 23848 Face 50581 10938 24221 23503 Face 50582 19788 23154 19789 Face 50583 19301 22936 22922 Face 50584 23347 19301 22922 Face 50585 22936 24096 24095 Face 50586 22922 22936 24095 Face 50587 24096 25165 25155 Face 50588 24999 23605 23037 Face 50589 23629 22894 12702 Face 50590 21047 23710 6591 Face 50591 34657 33196 34304 Face 50592 23098 19706 24015 Face 50593 24016 24030 19706 Face 50594 23726 23727 24015 Face 50595 24030 23726 24015 Face 50596 21112 21206 22969 Face 50597 21112 21023 20755 Face 50598 13351 20752 23017 Face 50599 23046 20492 20406 Face 50600 24860 23043 13066 Face 50601 23172 21101 23115 Face 50602 34707 34410 34562 Face 50603 13574 34594 29014 Face 50604 24620 23631 22853 Face 50605 21233 24620 22853 Face 50606 24095 24096 25155 Face 50607 25165 11430 11750 Face 50608 24251 13949 16582 Face 50609 12797 13308 12257 Face 50610 23233 23231 22852 Face 50611 22897 19700 22898 Face 50612 16171 16170 24565 Face 50613 15378 15242 15243 Face 50614 22731 22733 23737 Face 50615 21694 21600 24593 Face 50616 21302 20579 23667 Face 50617 10596 34477 13126 Face 50618 22900 23611 25148 Face 50619 11748 23643 11667 Face 50620 10962 4338 8934 Face 50621 24158 22683 21773 Face 50622 24185 25308 24940 Face 50623 3831 4605 16284 Face 50624 24804 12183 23698 Face 50625 23901 23179 23137 Face 50626 25357 24764 25356 Face 50627 22697 23455 22897 Face 50628 23552 23547 24871 Face 50629 24162 29089 24386 Face 50630 23552 24754 24743 Face 50631 23547 23552 24743 Face 50632 25155 25165 11750 Face 50633 22826 25295 24059 Face 50634 11430 23146 24543 Face 50635 24157 24280 23092 Face 50636 24692 24693 24828 Face 50637 24051 11748 11667 Face 50638 25282 12552 23900 Face 50639 11748 23531 23530 Face 50640 23643 11748 23530 Face 50641 22747 23373 22788 Face 50642 19845 18639 17488 Face 50643 22900 11913 23611 Face 50644 24264 21237 24558 Face 50645 22177 21601 24204 Face 50646 24555 15660 24260 Face 50647 24781 22929 24643 Face 50648 24901 25135 25038 Face 50649 23557 24772 22703 Face 50650 25076 5006 350 Face 50651 2413 2236 4478 Face 50652 24754 23535 22759 Face 50653 25076 25215 25214 Face 50654 25075 25076 25214 Face 50655 25215 25351 25350 Face 50656 25214 25215 25350 Face 50657 25351 21608 22993 Face 50658 25350 25351 22993 Face 50659 21608 23599 14544 Face 50660 22993 21608 14544 Face 50661 23804 23803 14544 Face 50662 23599 23804 14544 Face 50663 22931 23972 23803 Face 50664 23804 22931 23803 Face 50665 24126 24147 23972 Face 50666 22931 24126 23972 Face 50667 24126 24197 12912 Face 50668 24147 24126 12912 Face 50669 23047 24364 12912 Face 50670 24197 23047 12912 Face 50671 23052 24365 24364 Face 50672 23047 23052 24364 Face 50673 23105 25154 24365 Face 50674 23052 23105 24365 Face 50675 23105 11915 23887 Face 50676 25154 23105 23887 Face 50677 22698 23532 23887 Face 50678 11915 22698 23887 Face 50679 23916 23799 23532 Face 50680 22698 23916 23532 Face 50681 23073 23072 23799 Face 50682 23916 23073 23799 Face 50683 23181 23182 23072 Face 50684 23073 23181 23072 Face 50685 23377 28000 23378 Face 50686 23181 23378 23182 Face 50687 24431 24452 20018 Face 50688 24066 21889 21793 Face 50689 23142 25188 22749 Face 50690 24951 24992 23654 Face 50691 22734 22738 22846 Face 50692 22738 23090 22846 Face 50693 21193 17865 21279 Face 50694 25005 24612 24475 Face 50695 23937 23938 24071 Face 50696 24070 23896 11271 Face 50697 23971 22847 22471 Face 50698 24747 23656 22793 Face 50699 31063 31162 31062 Face 50700 6811 34390 25585 Face 50701 24968 25107 25106 Face 50702 24967 24968 25106 Face 50703 23070 20315 28417 Face 50704 25028 23301 24888 Face 50705 23284 22975 24772 Face 50706 23055 23616 25308 Face 50707 24764 12611 25356 Face 50708 24892 22463 24759 Face 50709 24743 24754 22759 Face 50710 23535 25312 25301 Face 50711 22759 23535 25301 Face 50712 22944 24098 24096 Face 50713 25312 23034 23033 Face 50714 20873 11513 24433 Face 50715 23317 24904 23085 Face 50716 25301 25312 23033 Face 50717 23034 22841 12081 Face 50718 23033 23034 12081 Face 50719 23154 19788 23264 Face 50720 11750 11430 24543 Face 50721 25242 25379 25378 Face 50722 24491 23850 24543 Face 50723 25284 22783 20016 Face 50724 22894 21138 12702 Face 50725 22841 24583 24582 Face 50726 21773 22683 21870 Face 50727 12081 22841 24582 Face 50728 19706 24030 24015 Face 50729 23725 23726 24030 Face 50730 24016 23725 24030 Face 50731 32953 32952 32820 Face 50732 23725 23774 23726 Face 50733 24809 23046 20406 Face 50734 25384 23390 23138 Face 50735 25168 11589 11430 Face 50736 24404 24406 21183 Face 50737 25867 25977 23774 Face 50738 29474 23884 9054 Face 50739 24891 24620 21233 Face 50740 21983 24891 21233 Face 50741 23146 24491 24543 Face 50742 24624 16179 23850 Face 50743 22773 22820 22819 Face 50744 22819 22820 22253 Face 50745 15716 15715 15573 Face 50746 22253 22820 22867 Face 50747 21321 23497 23417 Face 50748 32022 32126 32021 Face 50749 25030 22706 24758 Face 50750 16284 4605 16128 Face 50751 24910 20000 24501 Face 50752 12769 12862 12768 Face 50753 24051 11667 23539 Face 50754 23835 24051 23539 Face 50755 12257 24018 12345 Face 50756 24779 21419 25269 Face 50757 23350 11811 23261 Face 50758 29609 29742 22753 Face 50759 23456 21773 21513 Face 50760 25215 350 25216 Face 50761 25023 29345 29215 Face 50762 24583 14762 24582 Face 50763 21262 14762 21358 Face 50764 24106 23142 23561 Face 50765 21795 19940 23097 Face 50766 20515 12534 20692 Face 50767 24491 24624 23850 Face 50768 12342 21274 16179 Face 50769 24624 12342 16179 Face 50770 23539 11667 23540 Face 50771 24759 23545 24395 Face 50772 23521 24912 23407 Face 50773 20490 23077 23134 Face 50774 979 23036 3318 Face 50775 23835 23539 22878 Face 50776 21888 23345 22686 Face 50777 25157 25077 23545 Face 50778 24688 24689 24824 Face 50779 24959 24960 25098 Face 50780 21601 25283 25282 Face 50781 24260 22177 24204 Face 50782 23277 23900 24672 Face 50783 23863 24356 23622 Face 50784 25103 25242 25241 Face 50785 25102 25103 25241 Face 50786 24327 24117 24629 Face 50787 34540 23987 1459 Face 50788 12609 24744 25173 Face 50789 24438 24437 23919 Face 50790 25216 25352 25351 Face 50791 25215 25216 25351 Face 50792 25352 23124 21608 Face 50793 25351 25352 21608 Face 50794 23124 19865 23599 Face 50795 21608 23124 23599 Face 50796 15311 23804 23599 Face 50797 19865 15311 23599 Face 50798 22930 22931 23804 Face 50799 15311 22930 23804 Face 50800 22915 24126 22931 Face 50801 22930 22915 22931 Face 50802 22915 24198 24197 Face 50803 24126 22915 24197 Face 50804 24198 24317 23047 Face 50805 24197 24198 23047 Face 50806 24317 24742 23052 Face 50807 23047 24317 23052 Face 50808 24742 23104 23105 Face 50809 23052 24742 23105 Face 50810 23104 22824 11915 Face 50811 23105 23104 11915 Face 50812 22849 22698 11915 Face 50813 22824 22849 11915 Face 50814 22726 23916 22698 Face 50815 22849 22726 22698 Face 50816 23453 23073 23916 Face 50817 22726 23453 23916 Face 50818 24010 23181 23073 Face 50819 23453 24010 23073 Face 50820 24256 24255 24163 Face 50821 24010 23377 23181 Face 50822 20018 24066 21793 Face 50823 22744 22814 21793 Face 50824 24818 24811 23596 Face 50825 22921 22935 23912 Face 50826 25097 25236 25235 Face 50827 25096 25097 25235 Face 50828 21048 23915 23942 Face 50829 24958 25097 25096 Face 50830 15038 11572 23010 Face 50831 8172 7261 11702 Face 50832 21950 20621 22793 Face 50833 24768 11511 23673 Face 50834 11511 23976 22839 Face 50835 25294 23095 23656 Face 50836 25107 25246 25245 Face 50837 24257 24131 24914 Face 50838 21743 24449 24450 Face 50839 25106 25107 25245 Face 50840 24185 23055 25308 Face 50841 369 478 696 Face 50842 22085 22086 22861 Face 50843 23055 22900 11510 Face 50844 23977 25079 24178 Face 50845 21773 21870 21513 Face 50846 26869 26870 20495 Face 50847 24099 25169 25168 Face 50848 11835 23456 25039 Face 50849 24098 24099 25168 Face 50850 22083 23307 21987 Face 50851 23151 24901 24342 Face 50852 23393 25635 19763 Face 50853 19787 23264 19788 Face 50854 24178 24177 21274 Face 50855 12342 24178 21274 Face 50856 21413 11914 24138 Face 50857 24265 13071 20494 Face 50858 22699 23715 23713 Face 50859 22162 24204 25142 Face 50860 23780 22869 23288 Face 50861 25760 21983 25761 Face 50862 23899 24016 23154 Face 50863 26436 19787 19866 Face 50864 23627 23725 24016 Face 50865 26320 23899 23264 Face 50866 11307 7242 31882 Face 50867 23899 23627 24016 Face 50868 64 34704 34491 Face 50869 22936 22944 24096 Face 50870 21961 23046 24809 Face 50871 19938 23050 23913 Face 50872 24406 21961 21183 Face 50873 21183 21961 24809 Face 50874 22823 24891 21983 Face 50875 29857 29911 29856 Face 50876 22823 25314 24891 Face 50877 2164 13994 23563 Face 50878 23122 23128 11829 Face 50879 22773 22774 22820 Face 50880 22970 21023 22969 Face 50881 22820 22821 22867 Face 50882 22868 22920 22919 Face 50883 22867 22868 22919 Face 50884 22920 22970 22969 Face 50885 22919 22920 22969 Face 50886 15066 15196 22819 Face 50887 23022 23077 21023 Face 50888 23036 23835 22878 Face 50889 6138 318 23039 Face 50890 23571 23995 24432 Face 50891 22947 23767 24551 Face 50892 24079 22836 22880 Face 50893 11831 11830 24424 Face 50894 4202 23791 1449 Face 50895 25079 20516 24177 Face 50896 14886 15012 14885 Face 50897 25352 25216 3715 Face 50898 25401 25402 24086 Face 50899 24178 25079 24177 Face 50900 24164 24163 20516 Face 50901 23415 23414 24105 Face 50902 21791 21792 19304 Face 50903 32960 32959 32827 Face 50904 22882 21699 24875 Face 50905 13358 979 14651 Face 50906 23036 22878 3318 Face 50907 25236 25237 25373 Face 50908 23846 23965 23935 Face 50909 23936 23325 24397 Face 50910 23935 23936 24397 Face 50911 25283 20016 12552 Face 50912 24204 21601 25282 Face 50913 25141 25142 23277 Face 50914 24536 29485 29486 Face 50915 24863 24085 23307 Face 50916 21891 10719 22083 Face 50917 23212 23198 24246 Face 50918 32443 32444 32560 Face 50919 13642 22701 24609 Face 50920 25353 3715 25354 Face 50921 12591 13255 24294 Face 50922 23448 26537 20012 Face 50923 12612 23124 25352 Face 50924 25353 12612 25352 Face 50925 23955 19865 23124 Face 50926 12612 23955 23124 Face 50927 23955 20121 15311 Face 50928 19865 23955 15311 Face 50929 13160 22930 15311 Face 50930 20121 13160 15311 Face 50931 24868 22915 22930 Face 50932 13160 24868 22930 Face 50933 23963 24198 22915 Face 50934 24868 23963 22915 Face 50935 23963 24262 24317 Face 50936 24198 23963 24317 Face 50937 23318 24742 24317 Face 50938 24262 23318 24317 Face 50939 23318 21114 23104 Face 50940 24742 23318 23104 Face 50941 21114 24500 22824 Face 50942 23104 21114 22824 Face 50943 24500 23054 22849 Face 50944 22824 24500 22849 Face 50945 22953 22726 22849 Face 50946 23054 22953 22849 Face 50947 23116 23453 22726 Face 50948 22953 23116 22726 Face 50949 22978 24010 23453 Face 50950 23116 22978 23453 Face 50951 24767 23377 24010 Face 50952 22978 24767 24010 Face 50953 21889 22744 21793 Face 50954 20322 20239 28699 Face 50955 23709 23145 20787 Face 50956 22676 23709 20787 Face 50957 25236 25373 25372 Face 50958 25235 25236 25372 Face 50959 24322 23931 24577 Face 50960 24939 24322 24577 Face 50961 24322 23765 23931 Face 50962 23765 22854 23931 Face 50963 24078 24079 22880 Face 50964 22836 11140 22794 Face 50965 24747 25294 23656 Face 50966 25028 24888 23095 Face 50967 24596 2425 23426 Face 50968 20076 23588 23823 Face 50969 25246 25383 25382 Face 50970 23138 21514 23587 Face 50971 24609 22701 24757 Face 50972 19192 23283 28830 Face 50973 23616 23055 11510 Face 50974 23611 22724 23722 Face 50975 11996 23905 11913 Face 50976 11835 25039 22792 Face 50977 24212 16017 23242 Face 50978 22831 23902 22946 Face 50979 22700 23718 22699 Face 50980 24819 24820 24954 Face 50981 22797 22801 22972 Face 50982 24954 24955 25093 Face 50983 22177 24576 21601 Face 50984 15660 13984 22177 Face 50985 17983 20286 20204 Face 50986 25079 24164 20516 Face 50987 31115 31214 31114 Face 50988 22998 13984 15660 Face 50989 29796 29665 22547 Face 50990 23677 23714 24779 Face 50991 20400 23016 22962 Face 50992 24492 25175 24118 Face 50993 24451 27368 24562 Face 50994 22794 11140 24642 Face 50995 23697 21871 21967 Face 50996 24060 24061 23815 Face 50997 21791 19304 23815 Face 50998 22725 24422 24061 Face 50999 19304 24060 23815 Face 51000 24596 24597 24422 Face 51001 24060 22725 24061 Face 51002 23426 23144 24597 Face 51003 22725 24596 24422 Face 51004 23426 23421 24028 Face 51005 24596 23426 24597 Face 51006 29905 29963 29904 Face 51007 33178 33313 20793 Face 51008 24351 25314 22823 Face 51009 23253 24351 22823 Face 51010 14881 14759 14760 Face 51011 20260 20343 22857 Face 51012 15428 15427 24991 Face 51013 31911 31912 32016 Face 51014 24688 24687 111 Face 51015 24573 22717 23087 Face 51016 23938 24070 24071 Face 51017 14331 23022 21023 Face 51018 22920 14448 22970 Face 51019 24023 25038 22903 Face 51020 22970 14331 21023 Face 51021 14848 23256 24332 Face 51022 24866 25024 23813 Face 51023 24137 25057 24144 Face 51024 4489 3852 9174 Face 51025 24571 24572 23965 Face 51026 23153 23472 23287 Face 51027 25354 5404 25355 Face 51028 25294 25028 23095 Face 51029 21143 24477 20178 Face 51030 2819 23575 23492 Face 51031 265 700 266 Face 51032 23885 24904 23317 Face 51033 21610 24203 24877 Face 51034 21890 21605 24877 Face 51035 24763 13358 23998 Face 51036 979 3318 14651 Face 51037 23498 23581 24231 Face 51038 25310 22910 21139 Face 51039 23808 23316 22950 Face 51040 23335 12003 24314 Face 51041 29485 24671 29353 Face 51042 25282 25283 12552 Face 51043 22162 25142 25141 Face 51044 23439 22162 25141 Face 51045 22848 22723 22651 Face 51046 20407 22848 22651 Face 51047 23301 23268 24888 Face 51048 24534 21418 22975 Face 51049 24203 23061 24876 Face 51050 20405 21606 21890 Face 51051 25355 5404 25219 Face 51052 22826 24594 25295 Face 51053 22828 12612 25353 Face 51054 25354 22828 25353 Face 51055 24902 23955 12612 Face 51056 22828 24902 12612 Face 51057 12763 20121 23955 Face 51058 24902 12763 23955 Face 51059 24897 13160 20121 Face 51060 12763 24897 20121 Face 51061 24897 24905 24868 Face 51062 13160 24897 24868 Face 51063 24905 23964 23963 Face 51064 24868 24905 23963 Face 51065 23964 23911 24262 Face 51066 23963 23964 24262 Face 51067 23911 23309 23318 Face 51068 24262 23911 23318 Face 51069 23309 11892 21114 Face 51070 23318 23309 21114 Face 51071 11892 11253 24500 Face 51072 21114 11892 24500 Face 51073 11253 23003 23054 Face 51074 24500 11253 23054 Face 51075 24770 22953 23054 Face 51076 23003 24770 23054 Face 51077 23130 23116 22953 Face 51078 24770 23130 22953 Face 51079 23180 22978 23116 Face 51080 23130 23180 23116 Face 51081 23376 24767 22978 Face 51082 23180 23376 22978 Face 51083 20239 20322 24767 Face 51084 23376 20239 24767 Face 51085 23042 24769 23875 Face 51086 34678 34474 34611 Face 51087 25373 23512 23598 Face 51088 25372 25373 23598 Face 51089 24939 24577 21698 Face 51090 19922 24939 21698 Face 51091 25116 25255 25254 Face 51092 24629 23999 24493 Face 51093 22880 22836 22794 Face 51094 11140 21791 24642 Face 51095 19939 25018 22684 Face 51096 21792 19939 22684 Face 51097 25188 19939 21792 Face 51098 22749 25188 21792 Face 51099 12533 23138 23587 Face 51100 23587 21514 23019 Face 51101 24969 25108 25107 Face 51102 19538 24212 24088 Face 51103 25148 23611 23722 Face 51104 21512 21604 23722 Face 51105 21418 23355 24005 Face 51106 24001 20667 24553 Face 51107 23656 23095 23573 Face 51108 23809 23927 23019 Face 51109 4101 24952 1603 Face 51110 25849 23506 24871 Face 51111 23355 24001 24005 Face 51112 14401 4935 13876 Face 51113 24757 24088 23429 Face 51114 24534 24531 21418 Face 51115 22750 22652 23459 Face 51116 23258 22879 23995 Face 51117 24709 24710 24845 Face 51118 318 4593 24327 Face 51119 22625 24064 24065 Face 51120 23248 23304 23247 Face 51121 16656 24694 24693 Face 51122 21890 21606 24601 Face 51123 24059 25295 24060 Face 51124 21582 21676 23279 Face 51125 23915 23893 23942 Face 51126 1604 25229 25228 Face 51127 14638 1096 14759 Face 51128 24589 24604 24409 Face 51129 29822 23353 29823 Face 51130 18820 19191 23183 Face 51131 19280 19361 19360 Face 51132 28436 20626 29668 Face 51133 29592 27136 27246 Face 51134 20937 21029 27565 Face 51135 26414 19088 29718 Face 51136 27617 27619 29323 Face 51137 28545 25586 26936 Face 51138 18862 18861 25658 Face 51139 28572 28700 26784 Face 51140 28032 28572 26784 Face 51141 20671 20760 20670 Face 51142 26643 29455 28810 Face 51143 7125 19033 19516 Face 51144 14897 8639 14773 Face 51145 33224 33223 33088 Face 51146 29874 29928 29873 Face 51147 10225 11007 5765 Face 51148 34797 34584 11448 Face 51149 2683 28027 28559 Face 51150 34398 34745 34364 Face 51151 17942 18033 6912 Face 51152 26643 28810 26871 Face 51153 4475 540 17942 Face 51154 11028 12232 6912 Face 51155 28032 26784 27481 Face 51156 18033 6911 6912 Face 51157 25586 26643 26871 Face 51158 29455 28032 27481 Face 51159 25586 26871 26936 Face 51160 29455 27481 28810 Face 51161 17773 17664 19596 Face 51162 5257 19457 28559 Face 51163 3190 17773 19596 Face 51164 26934 28496 28419 Face 51165 26926 26934 28419 Face 51166 28496 5765 28419 Face 51167 19480 23220 23165 Face 51168 21544 19081 19085 Face 51169 19457 2683 28559 Face 51170 28697 16717 27045 Face 51171 14088 29649 28027 Face 51172 2683 14088 28027 Face 51173 25967 26064 28148 Face 51174 25543 25546 26420 Face 51175 28569 28433 13737 Face 51176 325 11006 11036 Face 51177 26820 25546 25543 Face 51178 23278 23381 23982 Face 51179 6911 11028 6912 Face 51180 26794 26820 25543 Face 51181 11028 26820 26794 Face 51182 12232 11028 26794 Face 51183 14311 5257 28559 Face 51184 25546 26424 26420 Face 51185 21545 21544 19085 Face 51186 27742 5257 14311 Face 51187 19081 18761 18762 Face 51188 29909 29967 29908 Face 51189 26010 27742 27612 Face 51190 19085 19081 18762 Face 51191 29673 28545 19203 Face 51192 27612 27742 14311 Face 51193 29673 19203 29649 Face 51194 14088 29673 29649 Face 51195 29450 17377 18651 Face 51196 28545 26936 19203 Face 51197 29410 29450 18651 Face 51198 17377 26064 25967 Face 51199 28149 28135 16659 Face 51200 28148 28149 16659 Face 51201 25419 25420 26179 Face 51202 31066 31065 30966 Face 51203 25766 25873 25872 Face 51204 27046 27045 27162 Face 51205 25663 25766 25765 Face 51206 25765 25766 25872 Face 51207 12012 14518 11617 Face 51208 222 18452 12943 Face 51209 28135 25881 26438 Face 51210 26438 25881 28164 Face 51211 19193 26010 19092 Face 51212 6523 19193 19092 Face 51213 12943 15041 15174 Face 51214 32331 32332 32443 Face 51215 18509 11009 427 Face 51216 6036 19193 6523 Face 51217 18452 18509 427 Face 51218 27733 27747 29410 Face 51219 19092 26010 27612 Face 51220 26424 27747 27733 Face 51221 26420 26424 27733 Face 51222 18651 17377 25967 Face 51223 27747 29450 29410 Face 51224 6798 11167 6738 Face 51225 26064 28149 28148 Face 51226 18878 25958 29799 Face 51227 18937 325 327 Face 51228 25628 26874 28561 Face 51229 537 536 20799 Face 51230 25542 26413 26355 Face 51231 24423 11975 24645 Face 51232 28916 28915 28789 Face 51233 29304 29435 29303 Face 51234 28661 28790 28660 Face 51235 28790 28916 28789 Face 51236 29701 29702 6621 Face 51237 28770 28771 28896 Face 51238 27258 28296 29483 Face 51239 28296 20983 7015 Face 51240 28281 6036 2685 Face 51241 28161 28281 2685 Face 51242 20805 28811 11009 Face 51243 18509 20805 11009 Face 51244 27393 27392 28811 Face 51245 26529 26671 28161 Face 51246 20805 27393 28811 Face 51247 16659 28135 26438 Face 51248 2685 6036 6523 Face 51249 32332 32444 32443 Face 51250 25881 27258 28164 Face 51251 11061 11062 25581 Face 51252 25653 17804 20536 Face 51253 21076 19087 29190 Face 51254 27050 24495 23296 Face 51255 29043 29042 28915 Face 51256 19031 29463 26473 Face 51257 28916 29043 28915 Face 51258 29174 29173 29042 Face 51259 29043 29174 29042 Face 51260 29304 29303 29173 Face 51261 29174 29304 29173 Face 51262 29435 29434 29303 Face 51263 29566 29565 29434 Face 51264 29435 29566 29434 Face 51265 29698 29697 29565 Face 51266 29566 29698 29565 Face 51267 30513 30512 30441 Face 51268 32121 32122 32225 Face 51269 29483 28296 7015 Face 51270 20983 29536 16661 Face 51271 7129 7014 26529 Face 51272 26671 28281 28161 Face 51273 27276 28681 27392 Face 51274 27393 27276 27392 Face 51275 18869 29481 28681 Face 51276 27276 18869 28681 Face 51277 25537 25879 29481 Face 51278 29459 7014 7129 Face 51279 29454 29459 7129 Face 51280 29536 20986 25956 Face 51281 28164 27258 29483 Face 51282 23353 29822 24769 Face 51283 22890 29220 29221 Face 51284 676 7474 677 Face 51285 27854 27853 27724 Face 51286 6809 34549 26901 Face 51287 32567 32694 32566 Face 51288 24511 12233 24510 Face 51289 30087 30149 30148 Face 51290 29902 29960 29901 Face 51291 18929 17620 6663 Face 51292 16427 10622 13987 Face 51293 29696 19516 29695 Face 51294 24769 29821 11349 Face 51295 21168 21169 17620 Face 51296 25667 25666 25575 Face 51297 28516 28517 28651 Face 51298 16687 7125 29697 Face 51299 29698 16687 29697 Face 51300 25427 29843 29842 Face 51301 18829 12833 18525 Face 51302 7015 20983 16661 Face 51303 26447 26535 26793 Face 51304 27826 29459 29454 Face 51305 27823 27826 29454 Face 51306 18869 25537 29481 Face 51307 25538 26906 25879 Face 51308 25537 25538 25879 Face 51309 26439 26451 27823 Face 51310 19090 18129 26906 Face 51311 16661 29536 25956 Face 51312 7014 26671 26529 Face 51313 2811 16711 26208 Face 51314 28094 26793 25956 Face 51315 23838 23775 25981 Face 51316 11891 27022 27138 Face 51317 27022 27139 27138 Face 51318 19778 19858 19857 Face 51319 27139 27253 27252 Face 51320 27138 27139 27252 Face 51321 27253 22843 27252 Face 51322 11586 11585 11505 Face 51323 27886 25628 28561 Face 51324 28898 28899 29025 Face 51325 25628 29590 18552 Face 51326 26874 25628 18552 Face 51327 24785 24918 6159 Face 51328 18552 29590 26214 Face 51329 16717 27384 18416 Face 51330 27610 27740 27631 Face 51331 18667 19033 7125 Face 51332 16687 18667 7125 Face 51333 25429 29840 29839 Face 51334 25427 29842 25428 Face 51335 28094 26447 26793 Face 51336 26447 20071 11109 Face 51337 27013 27021 25549 Face 51338 25551 26451 26439 Face 51339 25538 19090 26906 Face 51340 27507 27634 18129 Face 51341 19090 27507 18129 Face 51342 27507 6593 17379 Face 51343 11036 27021 27013 Face 51344 11000 11036 27013 Face 51345 26818 29074 29081 Face 51346 20986 28094 25956 Face 51347 24046 27252 22843 Face 51348 23892 24747 2815 Face 51349 26910 27023 27022 Face 51350 11728 26910 11810 Face 51351 27023 27140 27139 Face 51352 27022 27023 27139 Face 51353 27140 27254 27253 Face 51354 27139 27140 27253 Face 51355 17761 29669 22242 Face 51356 33178 20792 33044 Face 51357 19191 28030 23183 Face 51358 27598 27725 27597 Face 51359 25566 25570 27480 Face 51360 27502 27389 27898 Face 51361 29794 25014 24348 Face 51362 27740 24920 27364 Face 51363 27384 27610 27631 Face 51364 22279 22280 22375 Face 51365 18667 2422 21167 Face 51366 18754 20896 20712 Face 51367 28255 28389 28254 Face 51368 20799 18937 327 Face 51369 26535 26447 11109 Face 51370 26818 29081 11109 Face 51371 25549 25551 26439 Face 51372 26451 27826 27823 Face 51373 27634 27507 17379 Face 51374 326 327 11000 Face 51375 6593 29599 29733 Face 51376 17379 6593 29733 Face 51377 327 11036 11000 Face 51378 29599 25662 27273 Face 51379 29074 29070 27506 Face 51380 27021 25551 25549 Face 51381 32444 32561 32560 Face 51382 11648 11570 26683 Face 51383 26795 26911 26910 Face 51384 11728 11810 11727 Face 51385 26911 27024 27023 Face 51386 26910 26911 27023 Face 51387 27024 27141 27140 Face 51388 27023 27024 27140 Face 51389 27141 27255 27254 Face 51390 27140 27141 27254 Face 51391 31806 31805 31693 Face 51392 24164 24165 24256 Face 51393 7021 5386 18762 Face 51394 26320 19787 26436 Face 51395 27480 27502 27898 Face 51396 21003 26472 20150 Face 51397 23148 24419 20606 Face 51398 24226 20014 26540 Face 51399 11845 14129 14040 Face 51400 28517 28652 28651 Face 51401 19033 18667 21167 Face 51402 2422 20896 18754 Face 51403 29183 29182 29051 Face 51404 327 325 11036 Face 51405 20071 26818 11109 Face 51406 29074 27216 29081 Face 51407 537 20799 20798 Face 51408 538 537 20798 Face 51409 29733 29599 27273 Face 51410 20799 327 326 Face 51411 25662 27508 26356 Face 51412 27273 25662 26356 Face 51413 27508 20883 16710 Face 51414 18327 18879 17426 Face 51415 18879 537 538 Face 51416 24256 24165 24254 Face 51417 27216 29074 27506 Face 51418 26683 11649 26795 Face 51419 26569 26685 11649 Face 51420 26796 26912 26911 Face 51421 26795 26796 26911 Face 51422 26912 27025 27024 Face 51423 26911 26912 27024 Face 51424 27025 27142 27141 Face 51425 27024 27025 27141 Face 51426 27256 27255 27141 Face 51427 27142 27256 27141 Face 51428 33240 33376 33239 Face 51429 24367 24368 26988 Face 51430 10734 20576 6161 Face 51431 31270 31269 31168 Face 51432 27389 18820 29667 Face 51433 27898 27389 29667 Face 51434 18446 16519 6587 Face 51435 28680 29592 18028 Face 51436 27045 16717 27271 Face 51437 27581 27708 27707 Face 51438 21167 2422 18754 Face 51439 20896 13735 20712 Face 51440 26235 26119 25004 Face 51441 28541 16773 21228 Face 51442 29070 27616 18822 Face 51443 18822 27616 2679 Face 51444 18879 18984 17426 Face 51445 20798 20799 326 Face 51446 26356 27508 16710 Face 51447 20883 223 27265 Face 51448 16710 20883 27265 Face 51449 29975 29974 29916 Face 51450 223 20807 28160 Face 51451 23568 23652 23651 Face 51452 18984 18879 538 Face 51453 28402 21146 28403 Face 51454 32402 32514 32513 Face 51455 26685 26797 26796 Face 51456 11649 26796 26795 Face 51457 26797 26913 26912 Face 51458 26796 26797 26912 Face 51459 26913 27026 27025 Face 51460 26912 26913 27025 Face 51461 27026 27143 27142 Face 51462 27025 27026 27142 Face 51463 12350 20470 29014 Face 51464 12350 34594 28423 Face 51465 20599 27333 20688 Face 51466 22709 21236 24288 Face 51467 18865 25570 25566 Face 51468 33869 33996 33868 Face 51469 29276 18865 12059 Face 51470 29274 29276 12059 Face 51471 20752 20663 20661 Face 51472 6033 27257 19089 Face 51473 16717 18416 27271 Face 51474 27384 27631 18416 Face 51475 6706 6705 20712 Face 51476 13735 6706 20712 Face 51477 26180 28498 29463 Face 51478 29052 29183 29051 Face 51479 27506 29070 18822 Face 51480 27616 11108 2679 Face 51481 29711 7124 29710 Face 51482 7124 18327 17426 Face 51483 27265 223 28160 Face 51484 29275 29145 28160 Face 51485 26528 20241 26527 Face 51486 20807 29275 28160 Face 51487 16016 22662 14761 Face 51488 34690 20118 12586 Face 51489 26454 26570 26569 Face 51490 20755 21023 20576 Face 51491 26570 26686 26685 Face 51492 26569 26570 26685 Face 51493 26686 26798 26797 Face 51494 26685 26686 26797 Face 51495 26798 26914 26913 Face 51496 26797 26798 26913 Face 51497 26914 27027 27026 Face 51498 26913 26914 27026 Face 51499 27027 27144 27143 Face 51500 27026 27027 27143 Face 51501 24194 25520 25519 Face 51502 21411 21317 21318 Face 51503 25877 19381 25876 Face 51504 20520 20519 20433 Face 51505 26202 26320 26319 Face 51506 27515 27516 29274 Face 51507 25756 25757 25863 Face 51508 26201 26202 26319 Face 51509 27162 23340 27446 Face 51510 25757 25864 25863 Face 51511 23915 25845 24012 Face 51512 4445 16771 23807 Face 51513 16867 16866 6705 Face 51514 6706 16867 6705 Face 51515 34701 29615 34326 Face 51516 31367 31471 31366 Face 51517 11108 2647 16721 Face 51518 2679 11108 16721 Face 51519 29579 29711 29578 Face 51520 21166 7124 17426 Face 51521 29275 18868 27019 Face 51522 29145 29275 27019 Face 51523 17621 16349 17961 Face 51524 16705 29330 20404 Face 51525 29462 2788 23222 Face 51526 26878 20255 26764 Face 51527 23544 18260 27050 Face 51528 26455 26571 26570 Face 51529 26454 26455 26570 Face 51530 26571 26687 26686 Face 51531 26570 26571 26686 Face 51532 26687 26799 26798 Face 51533 26686 26687 26798 Face 51534 26799 26915 26914 Face 51535 26798 26799 26914 Face 51536 26915 27028 27027 Face 51537 26914 26915 27027 Face 51538 27145 27144 27027 Face 51539 27028 27145 27027 Face 51540 22366 29542 29674 Face 51541 19866 26554 26436 Face 51542 26319 26320 26436 Face 51543 27478 29193 27477 Face 51544 28111 28110 27977 Face 51545 13182 11205 10970 Face 51546 28248 28247 28110 Face 51547 27717 27846 27716 Face 51548 25980 25988 25484 Face 51549 27846 27978 27845 Face 51550 25988 25485 25484 Face 51551 25485 26308 26295 Face 51552 16867 25988 25980 Face 51553 16866 16867 25980 Face 51554 31474 31473 31369 Face 51555 31370 31474 31369 Face 51556 2647 28297 5505 Face 51557 16721 2647 5505 Face 51558 7124 21166 29710 Face 51559 28297 29720 2692 Face 51560 19471 15603 20810 Face 51561 29711 29710 29578 Face 51562 27019 18868 27696 Face 51563 11181 26105 11250 Face 51564 25172 25730 24333 Face 51565 25731 24205 25732 Face 51566 21702 21798 21701 Face 51567 11427 11428 11509 Face 51568 26339 26456 26455 Face 51569 26221 26339 11409 Face 51570 26456 26572 26571 Face 51571 26455 26456 26571 Face 51572 26572 26688 26687 Face 51573 26571 26572 26687 Face 51574 26688 26800 26799 Face 51575 26687 26688 26799 Face 51576 26800 26916 26915 Face 51577 26799 26800 26915 Face 51578 26916 27029 27028 Face 51579 26915 26916 27028 Face 51580 27029 27146 27145 Face 51581 27028 27029 27145 Face 51582 24786 24919 24918 Face 51583 12253 27166 12341 Face 51584 28248 28382 28381 Face 51585 19189 18894 19188 Face 51586 28938 18458 25487 Face 51587 27978 28111 27977 Face 51588 27621 27620 26295 Face 51589 27365 28938 25487 Face 51590 27956 28088 27751 Face 51591 25484 25485 26295 Face 51592 27217 27956 27751 Face 51593 20982 20626 28088 Face 51594 27956 20982 28088 Face 51595 29668 20982 16663 Face 51596 21549 18101 29751 Face 51597 20982 29668 20626 Face 51598 2692 29720 21549 Face 51599 18101 27156 29751 Face 51600 5505 28297 2692 Face 51601 29720 18101 21549 Face 51602 29579 29578 29447 Face 51603 29448 29579 29447 Face 51604 23296 23621 27050 Face 51605 29317 29448 29316 Face 51606 19036 18985 18986 Face 51607 20806 19231 18937 Face 51608 11181 11182 26106 Face 51609 28524 28659 28658 Face 51610 30284 30351 30283 Face 51611 24168 19206 24169 Face 51612 26902 27014 28287 Face 51613 26105 26222 26221 Face 51614 33872 33999 33871 Face 51615 26222 26340 26339 Face 51616 26221 26222 26339 Face 51617 26340 26457 26456 Face 51618 26339 26340 26456 Face 51619 26457 26573 26572 Face 51620 26456 26457 26572 Face 51621 26573 26689 26688 Face 51622 26572 26573 26688 Face 51623 26689 26801 26800 Face 51624 26688 26689 26800 Face 51625 26917 26916 26800 Face 51626 26801 26917 26800 Face 51627 27030 27029 26916 Face 51628 26917 27030 26916 Face 51629 27030 27147 27146 Face 51630 27029 27030 27146 Face 51631 31916 32021 31915 Face 51632 30590 30684 30683 Face 51633 25487 18458 26090 Face 51634 29429 29560 29559 Face 51635 18508 6638 27744 Face 51636 18458 19251 26090 Face 51637 18670 27614 21078 Face 51638 27614 18508 27744 Face 51639 17311 18670 20972 Face 51640 27614 27744 21078 Face 51641 13202 29014 22563 Face 51642 25427 29844 29843 Face 51643 29844 25427 29845 Face 51644 5889 2168 27741 Face 51645 27156 21071 21072 Face 51646 29751 27156 21072 Face 51647 29317 29316 29186 Face 51648 29187 29317 29186 Face 51649 29187 29186 29055 Face 51650 29448 29447 29316 Face 51651 28128 28127 27994 Face 51652 29056 29187 29055 Face 51653 27995 28128 27994 Face 51654 19202 18355 2168 Face 51655 28544 28937 28408 Face 51656 18657 27155 28943 Face 51657 11182 25993 26106 Face 51658 28943 27155 29324 Face 51659 28572 18657 14427 Face 51660 29047 29046 28919 Face 51661 28931 29058 28930 Face 51662 14427 18657 28943 Face 51663 28805 28931 28804 Face 51664 29058 29057 28930 Face 51665 28676 28805 28675 Face 51666 32971 32970 32838 Face 51667 20255 26991 20338 Face 51668 26106 26223 26222 Face 51669 26105 26106 26222 Face 51670 26223 26341 26340 Face 51671 26222 26223 26340 Face 51672 26341 26458 26457 Face 51673 26340 26341 26457 Face 51674 26458 26574 26573 Face 51675 26457 26458 26573 Face 51676 26574 26690 26689 Face 51677 26573 26574 26689 Face 51678 26690 26802 26801 Face 51679 26689 26690 26801 Face 51680 26918 26917 26801 Face 51681 26802 26918 26801 Face 51682 27031 27030 26917 Face 51683 26918 27031 26917 Face 51684 27031 27148 27147 Face 51685 27030 27031 27147 Face 51686 28632 28494 21679 Face 51687 28886 21969 29011 Face 51688 19701 26305 26127 Face 51689 34415 34617 12631 Face 51690 13549 19701 26127 Face 51691 25535 25525 26127 Face 51692 29433 29432 29301 Face 51693 23120 29582 27958 Face 51694 18820 23183 23111 Face 51695 27860 27859 27730 Face 51696 13907 13906 12528 Face 51697 24255 24389 24286 Face 51698 28670 28669 28534 Face 51699 28539 28538 28403 Face 51700 29183 29313 29182 Face 51701 21330 21422 28676 Face 51702 28931 28930 28804 Face 51703 25644 28498 26180 Face 51704 11205 9182 10970 Face 51705 28805 28804 28675 Face 51706 29602 27886 2817 Face 51707 2420 29748 2678 Face 51708 17942 6912 11233 Face 51709 21329 28675 28539 Face 51710 27886 28561 2817 Face 51711 28239 28240 28373 Face 51712 28803 28802 28673 Face 51713 28674 28803 28673 Face 51714 29189 29188 27452 Face 51715 31068 31067 30968 Face 51716 28373 28374 28508 Face 51717 26772 26773 26886 Face 51718 6404 29602 18362 Face 51719 27232 27342 27341 Face 51720 26542 26658 26657 Face 51721 19088 6797 18541 Face 51722 26887 27000 26999 Face 51723 28128 27995 20964 Face 51724 28400 28535 28399 Face 51725 25667 25668 25770 Face 51726 10999 6588 20702 Face 51727 28665 28794 28664 Face 51728 29199 27758 28556 Face 51729 24386 29089 22891 Face 51730 29574 29573 29442 Face 51731 28158 28153 27245 Face 51732 20403 21296 20404 Face 51733 26177 27476 26126 Face 51734 33619 33744 33618 Face 51735 31064 31163 31063 Face 51736 26107 26224 26223 Face 51737 26106 26107 26223 Face 51738 26224 26342 26341 Face 51739 26223 26224 26341 Face 51740 26342 26459 26458 Face 51741 26341 26342 26458 Face 51742 26459 26575 26574 Face 51743 26458 26459 26574 Face 51744 26575 26691 26690 Face 51745 26574 26575 26690 Face 51746 26691 26803 26802 Face 51747 26690 26691 26802 Face 51748 26919 26918 26802 Face 51749 26803 26919 26802 Face 51750 27032 27031 26918 Face 51751 26919 27032 26918 Face 51752 27032 27149 27148 Face 51753 27031 27032 27148 Face 51754 31264 31263 31162 Face 51755 31163 31264 31162 Face 51756 30965 31064 30964 Face 51757 11684 11605 34710 Face 51758 25659 17761 313 Face 51759 28401 28400 28266 Face 51760 21168 21167 18753 Face 51761 28651 28652 28780 Face 51762 28788 28914 28787 Face 51763 29041 29040 28913 Face 51764 29308 29439 29307 Face 51765 28914 29041 28913 Face 51766 26684 26794 25542 Face 51767 18444 28287 26440 Face 51768 21887 21009 20908 Face 51769 6281 29482 27048 Face 51770 23264 19787 26320 Face 51771 29666 18550 27046 Face 51772 26932 27044 27768 Face 51773 28015 28022 28697 Face 51774 10683 23721 12837 Face 51775 27985 27984 27852 Face 51776 19087 2420 29189 Face 51777 29323 29331 18862 Face 51778 28929 29056 28928 Face 51779 6594 29748 2420 Face 51780 28929 28928 28802 Face 51781 28803 28929 28802 Face 51782 29964 29963 29905 Face 51783 29056 29055 28928 Face 51784 28118 28255 28117 Face 51785 9642 22764 12002 Face 51786 27853 27985 27852 Face 51787 27606 27632 25979 Face 51788 25775 27632 27606 Face 51789 18861 25775 25658 Face 51790 18355 27900 2168 Face 51791 27632 28414 25979 Face 51792 25658 25775 27606 Face 51793 28414 28134 18769 Face 51794 6808 6705 7027 Face 51795 25429 29841 29840 Face 51796 25979 28414 18769 Face 51797 28674 28673 28538 Face 51798 34590 34681 34689 Face 51799 28389 28524 28523 Face 51800 28539 28674 28538 Face 51801 25870 25951 25481 Face 51802 17055 20625 169 Face 51803 6705 6808 20715 Face 51804 23125 23183 23589 Face 51805 26242 27619 27617 Face 51806 25993 26108 26107 Face 51807 27750 28569 13737 Face 51808 26108 26225 26224 Face 51809 26107 26108 26224 Face 51810 26225 26343 26342 Face 51811 26224 26225 26342 Face 51812 26343 26460 26459 Face 51813 26342 26343 26459 Face 51814 26460 26576 26575 Face 51815 26459 26460 26575 Face 51816 26576 26692 26691 Face 51817 26575 26576 26691 Face 51818 26692 26804 26803 Face 51819 26691 26692 26803 Face 51820 26804 26920 26919 Face 51821 26803 26804 26919 Face 51822 26920 27033 27032 Face 51823 26919 26920 27032 Face 51824 27033 27150 27149 Face 51825 27032 27033 27149 Face 51826 27150 27262 27261 Face 51827 27149 27150 27261 Face 51828 24490 29789 29790 Face 51829 19938 24211 16722 Face 51830 28267 28401 28266 Face 51831 34408 12364 34540 Face 51832 14427 28943 27267 Face 51833 6940 14427 27267 Face 51834 27619 29331 29323 Face 51835 28943 29324 29456 Face 51836 26241 26242 27617 Face 51837 6705 16866 7027 Face 51838 20099 24207 19378 Face 51839 27504 27364 25060 Face 51840 27481 26784 26672 Face 51841 3321 6510 14256 Face 51842 30659 30758 30658 Face 51843 24167 20696 24870 Face 51844 25428 29841 25429 Face 51845 29825 23194 29838 Face 51846 307 3953 10592 Face 51847 25667 25770 25769 Face 51848 29210 28362 28435 Face 51849 21072 21071 28227 Face 51850 20976 20975 33949 Face 51851 31373 31477 31372 Face 51852 29719 28432 29586 Face 51853 34123 33999 16767 Face 51854 6594 26681 29748 Face 51855 33495 33622 33494 Face 51856 28255 28254 28117 Face 51857 6704 6703 6908 Face 51858 28388 28389 28523 Face 51859 27985 28118 27984 Face 51860 29845 20870 29846 Face 51861 19462 19381 19382 Face 51862 25199 18960 27504 Face 51863 28134 28230 28364 Face 51864 26176 25317 26294 Face 51865 18769 28134 28364 Face 51866 28543 26566 26299 Face 51867 31888 31889 31996 Face 51868 26202 23899 26320 Face 51869 20750 12623 18256 Face 51870 29717 21077 24134 Face 51871 20625 28820 29076 Face 51872 20870 29845 25427 Face 51873 30828 23311 30829 Face 51874 6607 17055 169 Face 51875 20691 11652 29826 Face 51876 21023 21112 22969 Face 51877 2818 20987 26873 Face 51878 16263 2004 15667 Face 51879 22986 19626 19627 Face 51880 30565 30659 30564 Face 51881 25433 23959 25498 Face 51882 13013 34288 12102 Face 51883 29667 18820 23111 Face 51884 33089 33224 33088 Face 51885 19378 22990 20099 Face 51886 22175 29280 29411 Face 51887 25994 26109 26108 Face 51888 25993 25994 26108 Face 51889 26109 26226 26225 Face 51890 26108 26109 26225 Face 51891 26226 26344 26343 Face 51892 26225 26226 26343 Face 51893 26344 26461 26460 Face 51894 26343 26344 26460 Face 51895 26461 26577 26576 Face 51896 26460 26461 26576 Face 51897 26577 26693 26692 Face 51898 26576 26577 26692 Face 51899 26805 26804 26692 Face 51900 26693 26805 26692 Face 51901 26805 26921 26920 Face 51902 26804 26805 26920 Face 51903 26921 27034 27033 Face 51904 26920 26921 27033 Face 51905 27034 27151 27150 Face 51906 27033 27034 27150 Face 51907 27263 27262 27150 Face 51908 27151 27263 27150 Face 51909 17261 16944 23092 Face 51910 29490 29491 24219 Face 51911 26936 26871 20801 Face 51912 29190 19087 29189 Face 51913 27491 27499 29205 Face 51914 28810 27493 25682 Face 51915 2819 2690 23575 Face 51916 31694 31806 31693 Face 51917 13546 222 12943 Face 51918 222 13546 16868 Face 51919 28700 10837 26530 Face 51920 30342 30341 30274 Face 51921 28781 28907 28906 Face 51922 26784 28700 26530 Face 51923 28432 27128 28298 Face 51924 29164 29165 29294 Face 51925 24133 21077 24067 Face 51926 27128 2811 18873 Face 51927 27875 26556 24598 Face 51928 24393 24599 23865 Face 51929 29594 29719 25961 Face 51930 28432 28298 29586 Face 51931 28563 28427 19043 Face 51932 28427 28563 29732 Face 51933 27128 28274 28298 Face 51934 28698 26205 25851 Face 51935 28433 26322 9327 Face 51936 18873 2811 26208 Face 51937 25487 26090 28230 Face 51938 19202 2168 5889 Face 51939 29696 29695 29563 Face 51940 28134 25487 28230 Face 51941 32022 32021 31916 Face 51942 25872 25873 25981 Face 51943 23423 14428 17590 Face 51944 27995 27994 27862 Face 51945 19276 23495 23661 Face 51946 29712 29711 29579 Face 51947 32662 32880 21634 Face 51948 24470 25518 11671 Face 51949 169 20625 29076 Face 51950 19306 19383 25878 Face 51951 20706 26587 29076 Face 51952 28820 20706 29076 Face 51953 25669 25668 25577 Face 51954 25578 25669 25577 Face 51955 26179 27477 26177 Face 51956 29350 18771 18559 Face 51957 26986 17055 6607 Face 51958 5889 27741 28429 Face 51959 29456 29324 2818 Face 51960 26873 26986 6607 Face 51961 27267 28943 29456 Face 51962 20987 26986 26873 Face 51963 26784 26530 26672 Face 51964 29324 20987 2818 Face 51965 16957 18509 18452 Face 51966 26871 28810 25682 Face 51967 222 16957 18452 Face 51968 2681 20805 18509 Face 51969 16957 2681 18509 Face 51970 28540 23577 27129 Face 51971 29734 27393 20805 Face 51972 25995 26110 26109 Face 51973 25994 25995 26109 Face 51974 26110 26227 26226 Face 51975 26109 26110 26226 Face 51976 26227 26345 26344 Face 51977 26226 26227 26344 Face 51978 26345 26462 26461 Face 51979 26344 26345 26461 Face 51980 26462 26578 26577 Face 51981 26461 26462 26577 Face 51982 26578 26694 26693 Face 51983 26577 26578 26693 Face 51984 26694 26806 26805 Face 51985 26693 26694 26805 Face 51986 26806 26922 26921 Face 51987 26805 26806 26921 Face 51988 26922 27035 27034 Face 51989 26921 26922 27034 Face 51990 27152 27151 27034 Face 51991 27035 27152 27034 Face 51992 23391 24503 24937 Face 51993 24399 27262 24398 Face 51994 20637 23117 11292 Face 51995 20316 13734 11525 Face 51996 2681 29734 20805 Face 51997 27635 27276 27393 Face 51998 29734 27635 27393 Face 51999 27487 18869 27276 Face 52000 27635 27487 27276 Face 52001 25643 25537 18869 Face 52002 27487 25643 18869 Face 52003 26323 25538 25537 Face 52004 28027 29649 27161 Face 52005 25643 26323 25537 Face 52006 28700 14427 6940 Face 52007 19203 26303 28570 Face 52008 28536 28535 28400 Face 52009 10837 28700 6940 Face 52010 28401 28536 28400 Face 52011 28671 28670 28535 Face 52012 6914 6913 13549 Face 52013 14790 6913 14668 Face 52014 28225 18512 20972 Face 52015 18670 21078 20972 Face 52016 27217 27751 29728 Face 52017 29482 27217 29728 Face 52018 29482 29728 29732 Face 52019 27048 29482 29732 Face 52020 25749 28563 19043 Face 52021 28563 27048 29732 Face 52022 25749 19043 28808 Face 52023 7127 25749 28808 Face 52024 7127 28808 6638 Face 52025 18508 7127 6638 Face 52026 23585 26586 21454 Face 52027 191 21454 28225 Face 52028 29976 30037 29975 Face 52029 30409 30408 30341 Face 52030 30480 30565 30479 Face 52031 26358 26476 11665 Face 52032 29034 29165 29164 Face 52033 16963 6715 25567 Face 52034 27165 16962 1866 Face 52035 29295 29426 29425 Face 52036 29058 29059 21703 Face 52037 13256 23975 27099 Face 52038 30880 30981 30879 Face 52039 29847 29901 29846 Face 52040 25669 25772 25771 Face 52041 25668 25669 25771 Face 52042 2894 24276 974 Face 52043 25771 25772 25878 Face 52044 29348 29350 18559 Face 52045 18771 25899 25884 Face 52046 21233 22853 25660 Face 52047 26325 27630 26324 Face 52048 2908 27875 20514 Face 52049 21057 21146 28267 Face 52050 29719 29586 25961 Face 52051 18986 536 537 Face 52052 29594 25961 20800 Face 52053 18541 29594 20800 Face 52054 27481 26672 27493 Face 52055 14330 14221 23022 Face 52056 29649 28570 27161 Face 52057 28810 27481 27493 Face 52058 11106 19090 25538 Face 52059 2293 14311 25636 Face 52060 26323 11106 25538 Face 52061 25885 25996 25995 Face 52062 28494 28360 21584 Face 52063 25996 26111 26110 Face 52064 25995 25996 26110 Face 52065 26111 26228 26227 Face 52066 26110 26111 26227 Face 52067 26228 26346 26345 Face 52068 26227 26228 26345 Face 52069 26346 26463 26462 Face 52070 26345 26346 26462 Face 52071 26463 26579 26578 Face 52072 26462 26463 26578 Face 52073 26695 26694 26578 Face 52074 26579 26695 26578 Face 52075 26695 26807 26806 Face 52076 26694 26695 26806 Face 52077 26807 26923 26922 Face 52078 26806 26807 26922 Face 52079 27036 27035 26922 Face 52080 26923 27036 26922 Face 52081 27153 27152 27035 Face 52082 27036 27153 27035 Face 52083 22781 25729 25728 Face 52084 11950 427 11934 Face 52085 29622 27507 19090 Face 52086 11106 29622 19090 Face 52087 28151 28161 28279 Face 52088 29622 6712 6593 Face 52089 26871 25682 20801 Face 52090 28559 28027 25636 Face 52091 29649 19203 28570 Face 52092 26936 20801 26303 Face 52093 28800 28926 28799 Face 52094 19203 26936 26303 Face 52095 28536 28671 28535 Face 52096 28800 28799 28670 Face 52097 28671 28800 28670 Face 52098 28926 28925 28799 Face 52099 6913 6914 14668 Face 52100 2169 18756 2294 Face 52101 6913 19701 13549 Face 52102 26092 19089 29749 Face 52103 27620 27621 29333 Face 52104 19251 21452 20148 Face 52105 26308 27621 26295 Face 52106 29334 2167 20895 Face 52107 29333 29334 20895 Face 52108 27621 29334 29333 Face 52109 20895 2167 25795 Face 52110 2167 25843 25795 Face 52111 25795 25843 27636 Face 52112 25843 27735 27636 Face 52113 27636 27735 27365 Face 52114 27735 28938 27365 Face 52115 24996 11975 24423 Face 52116 21454 18512 28225 Face 52117 29154 29155 29284 Face 52118 25416 11671 25451 Face 52119 20574 19476 21087 Face 52120 23994 23802 22516 Face 52121 22152 15736 28688 Face 52122 29564 29563 29432 Face 52123 28566 26590 25571 Face 52124 18512 17311 20972 Face 52125 27356 28566 6800 Face 52126 6800 28566 25571 Face 52127 27638 27356 27625 Face 52128 27625 27356 6800 Face 52129 28024 27638 27511 Face 52130 27511 27638 27625 Face 52131 18559 18771 25884 Face 52132 27762 28024 27511 Face 52133 25899 28024 27762 Face 52134 25884 25899 27762 Face 52135 27630 29350 29348 Face 52136 28271 26877 29666 Face 52137 25535 26325 25525 Face 52138 27626 27630 29348 Face 52139 26305 25535 26127 Face 52140 27630 27626 26324 Face 52141 18756 18755 2294 Face 52142 26325 26324 25525 Face 52143 29184 29183 29052 Face 52144 2169 2294 18253 Face 52145 29053 29052 28925 Face 52146 29053 29184 29052 Face 52147 28027 27161 25636 Face 52148 28926 29053 28925 Face 52149 27507 29622 6593 Face 52150 28161 2685 28279 Face 52151 6712 29469 29599 Face 52152 20866 20865 20777 Face 52153 25886 25997 25996 Face 52154 25885 25886 25996 Face 52155 25997 26112 26111 Face 52156 25996 25997 26111 Face 52157 26112 26229 26228 Face 52158 26111 26112 26228 Face 52159 26229 26347 26346 Face 52160 26228 26229 26346 Face 52161 26347 26464 26463 Face 52162 26346 26347 26463 Face 52163 26464 26580 26579 Face 52164 26463 26464 26579 Face 52165 26580 26696 26695 Face 52166 26579 26580 26695 Face 52167 26696 26808 26807 Face 52168 26695 26696 26807 Face 52169 26924 26923 26807 Face 52170 26808 26924 26807 Face 52171 27037 27036 26923 Face 52172 26924 27037 26923 Face 52173 16836 22839 22790 Face 52174 27036 27037 27153 Face 52175 6593 6712 29599 Face 52176 29469 25790 25662 Face 52177 29599 29469 25662 Face 52178 25790 27607 27508 Face 52179 2685 6523 25631 Face 52180 25662 25790 27508 Face 52181 29314 29445 29313 Face 52182 28279 2685 25631 Face 52183 29314 29313 29183 Face 52184 29184 29314 29183 Face 52185 29576 29575 29444 Face 52186 29445 29444 29313 Face 52187 6621 6606 29700 Face 52188 29445 29576 29444 Face 52189 18756 14790 18755 Face 52190 29701 6621 29700 Face 52191 14790 14668 18755 Face 52192 26092 29749 27749 Face 52193 6797 19000 29594 Face 52194 2811 6651 16711 Face 52195 27725 27724 27597 Face 52196 25419 26179 26177 Face 52197 28689 28543 26902 Face 52198 2299 19188 17216 Face 52199 28381 28382 28516 Face 52200 28111 28248 28110 Face 52201 27846 27845 27716 Face 52202 31189 31290 31289 Face 52203 27978 27977 27845 Face 52204 27590 27717 27589 Face 52205 26682 28282 28281 Face 52206 20718 16016 20806 Face 52207 29554 29686 29685 Face 52208 29422 29423 29553 Face 52209 29553 29554 29685 Face 52210 29686 29817 29816 Face 52211 29817 21547 29816 Face 52212 21547 21548 29816 Face 52213 29685 29686 29816 Face 52214 24671 24670 29353 Face 52215 29423 29554 29553 Face 52216 25849 24871 24681 Face 52217 26090 19251 20148 Face 52218 21322 21414 11433 Face 52219 31188 31189 31289 Face 52220 20148 21452 28270 Face 52221 25977 23727 23726 Face 52222 25772 19306 25878 Face 52223 25736 25635 23393 Face 52224 25962 26556 27875 Face 52225 27877 25962 27875 Face 52226 28271 29666 26556 Face 52227 25962 28271 26556 Face 52228 26877 18550 29666 Face 52229 26758 28015 18550 Face 52230 26877 26758 18550 Face 52231 6592 27765 28015 Face 52232 6592 28944 27765 Face 52233 26758 6592 28015 Face 52234 28944 28152 27765 Face 52235 27622 19070 28152 Face 52236 28944 27622 28152 Face 52237 3210 2169 18253 Face 52238 18767 27763 19070 Face 52239 29046 29177 29045 Face 52240 29307 29306 29176 Face 52241 29708 29707 29575 Face 52242 540 541 18033 Face 52243 26529 28161 28151 Face 52244 26066 26529 28151 Face 52245 27607 18970 20883 Face 52246 17132 7129 26066 Face 52247 27508 27607 20883 Face 52248 25778 25887 25886 Face 52249 11979 12064 12063 Face 52250 25887 25998 25997 Face 52251 25886 25887 25997 Face 52252 25998 26113 26112 Face 52253 25997 25998 26112 Face 52254 26113 26230 26229 Face 52255 26112 26113 26229 Face 52256 26230 26348 26347 Face 52257 26229 26230 26347 Face 52258 26348 26465 26464 Face 52259 26347 26348 26464 Face 52260 26465 26581 26580 Face 52261 26464 26465 26580 Face 52262 26581 26697 26696 Face 52263 26580 26581 26696 Face 52264 26809 26808 26696 Face 52265 26697 26809 26696 Face 52266 26925 26924 26808 Face 52267 26809 26925 26808 Face 52268 21364 10596 13126 Face 52269 26924 26925 27037 Face 52270 28950 27612 2293 Face 52271 14311 28559 25636 Face 52272 21069 19092 28950 Face 52273 27612 14311 2293 Face 52274 6523 19092 21069 Face 52275 25631 6523 21069 Face 52276 13073 18008 18982 Face 52277 19092 27612 28950 Face 52278 29177 29307 29176 Face 52279 18980 541 540 Face 52280 12167 27166 12253 Face 52281 29569 29701 29568 Face 52282 27764 29716 27128 Face 52283 3210 18253 6606 Face 52284 34121 34120 33995 Face 52285 6621 3210 6606 Face 52286 18799 28557 18457 Face 52287 29285 29416 29284 Face 52288 28762 26440 27608 Face 52289 27622 18767 19070 Face 52290 26773 26772 26657 Face 52291 26999 27000 27115 Face 52292 25654 27748 26792 Face 52293 28506 28507 28641 Face 52294 6525 6524 7028 Face 52295 23585 24645 11975 Face 52296 25864 25975 25974 Face 52297 25863 25864 25974 Face 52298 25974 25975 26085 Face 52299 25975 26086 26085 Face 52300 26085 26086 26201 Face 52301 26086 26202 26201 Face 52302 23297 23296 24495 Face 52303 27047 27049 25559 Face 52304 28364 28166 27361 Face 52305 26296 28364 27361 Face 52306 25979 18769 19197 Face 52307 27637 25979 19197 Face 52308 25651 25658 27605 Face 52309 27606 25979 27637 Face 52310 18862 25658 25651 Face 52311 27605 27606 27637 Face 52312 18863 18862 25651 Face 52313 25658 27606 27605 Face 52314 18769 28364 26296 Face 52315 19197 18769 26296 Face 52316 29323 18862 18863 Face 52317 28382 28517 28516 Face 52318 27617 29323 29320 Face 52319 29320 29323 18863 Face 52320 26241 27617 27611 Face 52321 27611 27617 29320 Face 52322 25481 26241 26240 Face 52323 26240 26241 27611 Face 52324 25857 25870 25480 Face 52325 25480 25481 26240 Face 52326 6716 25870 25857 Face 52327 16864 6716 25857 Face 52328 6807 6716 16864 Face 52329 25870 25481 25480 Face 52330 20714 20713 6805 Face 52331 6805 6807 16864 Face 52332 29563 29562 29431 Face 52333 29432 29563 29431 Face 52334 26015 26014 27763 Face 52335 25074 4478 25075 Face 52336 29046 29045 28918 Face 52337 28919 29046 28918 Face 52338 324 6911 18033 Face 52339 17139 324 18033 Face 52340 29454 7129 17132 Face 52341 29452 29454 17132 Face 52342 18970 29650 223 Face 52343 20883 18970 223 Face 52344 29650 16703 20807 Face 52345 223 29650 20807 Face 52346 29406 29275 20807 Face 52347 25779 25888 25887 Face 52348 25778 25779 25887 Face 52349 25888 25999 25998 Face 52350 25887 25888 25998 Face 52351 25999 26114 26113 Face 52352 25998 25999 26113 Face 52353 26114 26231 26230 Face 52354 26113 26114 26230 Face 52355 26231 26349 26348 Face 52356 26230 26231 26348 Face 52357 26349 26466 26465 Face 52358 26348 26349 26465 Face 52359 26466 26582 26581 Face 52360 26465 26466 26581 Face 52361 26582 26698 26697 Face 52362 26581 26582 26697 Face 52363 26698 26810 26809 Face 52364 26697 26698 26809 Face 52365 30021 30022 30083 Face 52366 26809 26810 26925 Face 52367 29576 29708 29575 Face 52368 12233 26014 24509 Face 52369 29708 6605 29707 Face 52370 6605 6597 29707 Face 52371 6597 6605 13073 Face 52372 6605 18008 13073 Face 52373 18982 18980 540 Face 52374 18008 18980 18982 Face 52375 29438 29437 29306 Face 52376 541 17139 18033 Face 52377 26015 26988 26014 Face 52378 29307 29438 29306 Face 52379 20404 29330 20403 Face 52380 7846 18510 19377 Face 52381 18767 26015 27763 Face 52382 27231 27232 27341 Face 52383 6524 6525 15325 Face 52384 26677 26676 29741 Face 52385 18558 18460 20714 Face 52386 6589 6634 20703 Face 52387 18460 18558 21170 Face 52388 20713 6807 6805 Face 52389 21169 18460 21170 Face 52390 18460 20713 20714 Face 52391 29024 29155 29154 Face 52392 28656 28785 28784 Face 52393 29035 29036 29166 Face 52394 29167 29297 29296 Face 52395 12059 18865 25566 Face 52396 25570 27502 27480 Face 52397 25469 26219 26217 Face 52398 26217 26219 27515 Face 52399 24445 23851 22832 Face 52400 6651 28889 16711 Face 52401 29025 29156 29155 Face 52402 33869 33868 33742 Face 52403 25468 23932 24447 Face 52404 33743 33869 33742 Face 52405 11652 29827 29826 Face 52406 22955 21696 24750 Face 52407 25663 25664 25766 Face 52408 27475 27474 20518 Face 52409 25767 25874 25873 Face 52410 20019 26670 19942 Face 52411 25766 25767 25873 Face 52412 27474 27473 27354 Face 52413 28812 28940 23171 Face 52414 20613 25418 25417 Face 52415 24413 22983 24490 Face 52416 14915 15314 12590 Face 52417 20880 33444 33443 Face 52418 30275 30342 30274 Face 52419 27594 27593 27473 Face 52420 27474 27594 27473 Face 52421 27721 27720 27593 Face 52422 27594 27721 27593 Face 52423 27850 27849 27720 Face 52424 27721 27850 27720 Face 52425 28252 28251 28114 Face 52426 27982 27981 27849 Face 52427 27850 27982 27849 Face 52428 28115 28252 28114 Face 52429 28115 28114 27981 Face 52430 27982 28115 27981 Face 52431 29695 29694 29562 Face 52432 28252 28386 28385 Face 52433 28907 29034 29033 Face 52434 29432 29431 29300 Face 52435 29177 29176 29045 Face 52436 28780 28781 28906 Face 52437 324 11001 11028 Face 52438 28919 28918 28792 Face 52439 7129 26529 26066 Face 52440 6911 324 11028 Face 52441 16703 29406 20807 Face 52442 27823 29454 29452 Face 52443 28831 28956 24160 Face 52444 29275 29406 18868 Face 52445 24115 24114 26327 Face 52446 25780 25889 25888 Face 52447 25779 25780 25888 Face 52448 25889 26000 25999 Face 52449 25888 25889 25999 Face 52450 26000 26115 26114 Face 52451 25999 26000 26114 Face 52452 26115 26232 26231 Face 52453 26114 26115 26231 Face 52454 26232 26350 26349 Face 52455 26231 26232 26349 Face 52456 26350 26467 26466 Face 52457 26349 26350 26466 Face 52458 26583 26582 26466 Face 52459 26467 26583 26466 Face 52460 26699 26698 26582 Face 52461 26583 26699 26582 Face 52462 6415 13737 1978 Face 52463 26698 26699 26810 Face 52464 27340 27341 27459 Face 52465 23673 17713 22704 Face 52466 27747 27760 29450 Face 52467 29451 18654 17377 Face 52468 29450 29451 17377 Face 52469 18654 26065 26064 Face 52470 28394 28393 28259 Face 52471 28260 28394 28259 Face 52472 29569 29568 29437 Face 52473 29438 29569 29437 Face 52474 26813 16961 26901 Face 52475 29701 29700 29568 Face 52476 29563 29695 29562 Face 52477 15755 15904 3058 Face 52478 17620 18048 6601 Face 52479 29695 6663 29694 Face 52480 21169 21170 18048 Face 52481 6663 17620 6601 Face 52482 29730 29731 27386 Face 52483 17620 21169 18048 Face 52484 28521 28656 28655 Face 52485 26206 26204 25426 Face 52486 28251 28252 28385 Face 52487 28520 28521 28655 Face 52488 28386 28521 28520 Face 52489 28385 28386 28520 Face 52490 28655 28656 28784 Face 52491 28785 28911 28910 Face 52492 28653 28654 28782 Face 52493 28783 28909 28908 Face 52494 7021 7132 6915 Face 52495 18761 7021 18762 Face 52496 25460 25469 26217 Face 52497 26219 27516 27515 Face 52498 25475 25469 25460 Face 52499 25454 25475 25460 Face 52500 25026 29065 29725 Face 52501 6582 25475 6581 Face 52502 13721 29341 9054 Face 52503 30569 30663 30568 Face 52504 22839 16836 9642 Face 52505 30567 30566 30481 Face 52506 26187 5336 27698 Face 52507 24114 23992 26327 Face 52508 6908 6909 18760 Face 52509 7134 6634 6589 Face 52510 18661 6908 18760 Face 52511 6908 6703 7025 Face 52512 6909 6908 7025 Face 52513 6582 6581 7025 Face 52514 6703 6582 7025 Face 52515 25475 25454 6581 Face 52516 21173 18661 18760 Face 52517 27516 29276 29274 Face 52518 2942 21173 19080 Face 52519 19080 21173 18760 Face 52520 6654 2942 2943 Face 52521 2943 2942 19080 Face 52522 29691 6654 7128 Face 52523 7128 6654 2943 Face 52524 29691 29690 29558 Face 52525 29690 29691 7128 Face 52526 29559 29558 29427 Face 52527 29559 29691 29558 Face 52528 28654 28783 28782 Face 52529 29428 29559 29427 Face 52530 29168 29169 29298 Face 52531 28519 28654 28653 Face 52532 29301 29432 29300 Face 52533 29299 29430 29429 Face 52534 29647 24257 24914 Face 52535 29301 29300 29170 Face 52536 28793 28919 28792 Face 52537 21228 23841 21320 Face 52538 11001 26909 26820 Face 52539 28793 28792 28663 Face 52540 27771 27823 29452 Face 52541 11028 11001 26820 Face 52542 29756 24815 24814 Face 52543 26439 27823 27771 Face 52544 29443 29574 29442 Face 52545 26993 26994 27109 Face 52546 20991 18868 29406 Face 52547 25781 25890 25889 Face 52548 25780 25781 25889 Face 52549 25890 26001 26000 Face 52550 25889 25890 26000 Face 52551 26001 26116 26115 Face 52552 26000 26001 26115 Face 52553 26116 26233 26232 Face 52554 26115 26116 26232 Face 52555 26233 26351 26350 Face 52556 26232 26233 26350 Face 52557 26468 26467 26350 Face 52558 26351 26468 26350 Face 52559 26584 26583 26467 Face 52560 26468 26584 26467 Face 52561 26584 26700 26699 Face 52562 26583 26584 26699 Face 52563 23612 23661 23578 Face 52564 18732 23424 11049 Face 52565 326 11000 323 Face 52566 27013 25549 25548 Face 52567 11000 27013 26985 Face 52568 3173 11000 26985 Face 52569 26065 28150 28149 Face 52570 17377 18654 26064 Face 52571 28260 28259 28122 Face 52572 28123 28260 28122 Face 52573 32226 32332 32331 Face 52574 33509 33508 33375 Face 52575 28657 28658 28786 Face 52576 18754 20712 20715 Face 52577 29037 29038 29168 Face 52578 6663 6601 29694 Face 52579 28910 28911 29037 Face 52580 29038 29169 29168 Face 52581 28784 28785 28910 Face 52582 28911 29038 29037 Face 52583 28102 28103 28239 Face 52584 29298 29429 29428 Face 52585 29418 29549 29548 Face 52586 29417 29418 29548 Face 52587 29166 29167 29296 Face 52588 29297 29428 29427 Face 52589 29036 29167 29166 Face 52590 29296 29297 29427 Face 52591 28782 28783 28908 Face 52592 28909 29036 29035 Face 52593 32232 32338 32231 Face 52594 28908 28909 29035 Face 52595 25453 25459 25458 Face 52596 25452 25453 25458 Face 52597 25459 26211 25458 Face 52598 26211 26210 25458 Face 52599 26211 27514 26210 Face 52600 27514 27503 26210 Face 52601 6600 2807 21236 Face 52602 26527 20241 26642 Face 52603 29213 29342 29341 Face 52604 15904 895 3058 Face 52605 29342 29475 29474 Face 52606 29341 29342 29474 Face 52607 26119 26120 25004 Face 52608 34576 34350 34471 Face 52609 11571 11649 26683 Face 52610 13860 14385 11936 Face 52611 29273 13485 20984 Face 52612 25672 30533 30620 Face 52613 27514 29273 29219 Face 52614 29219 29273 20984 Face 52615 6580 25453 25452 Face 52616 27503 27514 29219 Face 52617 5386 7021 6915 Face 52618 16959 6580 25452 Face 52619 6580 16959 6915 Face 52620 7132 6580 6915 Face 52621 13485 25565 16712 Face 52622 20984 13485 16712 Face 52623 25565 27479 27360 Face 52624 16712 25565 27360 Face 52625 28567 16670 28636 Face 52626 27479 28165 27896 Face 52627 27360 27479 27896 Face 52628 29742 29743 22752 Face 52629 18688 20929 20907 Face 52630 28165 25568 22760 Face 52631 28518 28519 28653 Face 52632 17355 23083 23002 Face 52633 29298 29299 29429 Face 52634 28384 28519 28518 Face 52635 29171 29301 29170 Face 52636 29430 29561 29560 Face 52637 25305 20908 21854 Face 52638 29171 29170 29039 Face 52639 28664 28793 28663 Face 52640 28133 27999 27270 Face 52641 26909 25547 25546 Face 52642 28664 28663 28528 Face 52643 26437 26439 27771 Face 52644 26820 26909 25546 Face 52645 12982 19036 18986 Face 52646 26985 27013 25548 Face 52647 18985 20806 536 Face 52648 29416 29415 29284 Face 52649 29440 29439 29308 Face 52650 25673 25782 25781 Face 52651 20991 14550 22338 Face 52652 25782 25891 25890 Face 52653 25781 25782 25890 Face 52654 25891 26002 26001 Face 52655 25890 25891 26001 Face 52656 26002 26117 26116 Face 52657 26001 26002 26116 Face 52658 26117 26234 26233 Face 52659 26116 26117 26233 Face 52660 26234 26352 26351 Face 52661 26233 26234 26351 Face 52662 26469 26468 26351 Face 52663 26352 26469 26351 Face 52664 26469 26585 26584 Face 52665 26468 26469 26584 Face 52666 12267 13182 10970 Face 52667 26584 26585 26700 Face 52668 18257 4592 29464 Face 52669 20797 20798 323 Face 52670 28920 28919 28793 Face 52671 23486 17054 28947 Face 52672 539 538 20797 Face 52673 20798 326 323 Face 52674 28150 28168 28135 Face 52675 26064 26065 28149 Face 52676 28123 28122 27989 Face 52677 27990 28123 27989 Face 52678 18975 18664 24613 Face 52679 28652 28781 28780 Face 52680 28523 28658 28657 Face 52681 28522 28523 28657 Face 52682 21171 21172 2941 Face 52683 29169 29299 29298 Face 52684 26888 26887 26773 Face 52685 27980 28113 27979 Face 52686 28509 28644 28643 Face 52687 28103 28240 28239 Face 52688 28644 28773 28772 Face 52689 28643 28644 28772 Face 52690 25966 28147 28146 Face 52691 28147 28153 28158 Face 52692 27764 28432 29719 Face 52693 19000 27764 29719 Face 52694 23990 23991 24112 Face 52695 29212 21070 20981 Face 52696 32450 32449 32337 Face 52697 13438 28952 13533 Face 52698 23363 25452 25434 Face 52699 27125 27124 27008 Face 52700 27241 27351 27240 Face 52701 25458 26210 26207 Face 52702 33782 33783 33907 Face 52703 27351 27350 27240 Face 52704 30022 30021 29960 Face 52705 25420 26181 26179 Face 52706 29082 29214 29213 Face 52707 11744 11745 11828 Face 52708 29214 29343 29342 Face 52709 29213 29214 29342 Face 52710 29343 29476 29475 Face 52711 29342 29343 29475 Face 52712 25868 25869 25017 Face 52713 29475 24541 29474 Face 52714 11545 11936 12107 Face 52715 29476 29606 24541 Face 52716 20322 28699 29621 Face 52717 21510 22954 22761 Face 52718 34008 34134 34007 Face 52719 6634 20614 20703 Face 52720 12206 28496 14664 Face 52721 29205 29212 20981 Face 52722 21070 16715 16664 Face 52723 30090 30152 30151 Face 52724 27896 22760 28028 Face 52725 29547 29679 29546 Face 52726 27360 27896 28028 Face 52727 27896 28165 22760 Face 52728 16712 27360 27359 Face 52729 27359 27360 28028 Face 52730 20984 16712 16669 Face 52731 16669 16712 27359 Face 52732 29219 20984 20985 Face 52733 20985 20984 16669 Face 52734 25452 25458 25434 Face 52735 29218 29219 20985 Face 52736 27009 27125 27008 Face 52737 16959 25452 23363 Face 52738 28383 28384 28518 Face 52739 26874 18768 29729 Face 52740 29429 29430 29560 Face 52741 28250 28384 28383 Face 52742 29040 29171 29039 Face 52743 29561 29693 29692 Face 52744 28133 28408 27999 Face 52745 29040 29039 28912 Face 52746 28529 28664 28528 Face 52747 28408 26680 27999 Face 52748 25547 26425 26424 Face 52749 28529 28528 28393 Face 52750 25549 26439 26437 Face 52751 25546 25547 26424 Face 52752 11000 3173 323 Face 52753 25548 25549 26437 Face 52754 18771 7121 25899 Face 52755 538 20798 20797 Face 52756 29597 29598 28761 Face 52757 25674 25783 25782 Face 52758 25673 25674 25782 Face 52759 25783 25892 25891 Face 52760 25782 25783 25891 Face 52761 25892 26003 26002 Face 52762 25891 25892 26002 Face 52763 26003 26118 26117 Face 52764 26002 26003 26117 Face 52765 26118 26235 26234 Face 52766 26117 26118 26234 Face 52767 26235 26353 26352 Face 52768 26234 26235 26352 Face 52769 26353 26470 26469 Face 52770 26352 26353 26469 Face 52771 21776 28632 21679 Face 52772 26469 26470 26585 Face 52773 28822 23486 28761 Face 52774 21598 28637 28766 Face 52775 27018 29598 29597 Face 52776 27135 27018 29597 Face 52777 27018 27135 27894 Face 52778 18742 17426 18983 Face 52779 18984 538 539 Face 52780 28168 29079 25881 Face 52781 28149 28150 28135 Face 52782 27990 27989 27857 Face 52783 27858 27990 27857 Face 52784 6528 28824 6403 Face 52785 28534 28533 28398 Face 52786 32057 32161 32056 Face 52787 28658 28787 28786 Face 52788 26774 26888 26773 Face 52789 33747 33873 33746 Face 52790 26782 26781 26666 Face 52791 26888 27001 27000 Face 52792 27266 29064 648 Face 52793 26551 26667 26550 Face 52794 29623 29741 26563 Face 52795 26676 28130 6401 Face 52796 27498 34686 34467 Face 52797 26563 26676 6401 Face 52798 29548 29549 29680 Face 52799 29812 2686 2299 Face 52800 27503 29219 29218 Face 52801 27500 27503 29218 Face 52802 25434 25458 26207 Face 52803 26210 27503 27500 Face 52804 18958 26900 18353 Face 52805 26207 26210 27500 Face 52806 29309 29440 29308 Face 52807 29703 29702 29570 Face 52808 29518 24028 24130 Face 52809 28698 16668 26205 Face 52810 33618 33617 33490 Face 52811 25882 25885 11183 Face 52812 29215 29214 29082 Face 52813 29083 29215 29082 Face 52814 29344 29343 29214 Face 52815 29215 29344 29214 Face 52816 29344 29477 29476 Face 52817 29343 29344 29476 Face 52818 29477 29607 29606 Face 52819 29476 29477 29606 Face 52820 29607 29740 29739 Face 52821 29606 29607 29739 Face 52822 28540 28541 21228 Face 52823 12458 23910 22178 Face 52824 29716 6651 2811 Face 52825 24113 24112 23991 Face 52826 18580 27996 2424 Face 52827 32972 32971 32839 Face 52828 28525 28524 28389 Face 52829 25955 25655 6287 Face 52830 28507 28508 28642 Face 52831 28390 28525 28389 Face 52832 25968 18357 25645 Face 52833 18876 25986 12060 Face 52834 29470 10987 18445 Face 52835 26908 28361 28283 Face 52836 18193 29673 14088 Face 52837 18968 2683 19457 Face 52838 18968 28683 2683 Face 52839 27742 27741 5257 Face 52840 27900 18968 19457 Face 52841 27829 27863 29461 Face 52842 6814 16959 23363 Face 52843 11048 14773 27047 Face 52844 18552 18928 18768 Face 52845 6915 16959 6814 Face 52846 28249 28250 28383 Face 52847 6654 16956 2942 Face 52848 29560 29561 29692 Face 52849 28113 28250 28249 Face 52850 28913 29040 28912 Face 52851 16677 16956 29692 Face 52852 26565 29065 26680 Face 52853 28913 28912 28786 Face 52854 28394 28529 28393 Face 52855 28408 26565 26680 Face 52856 26424 26425 27747 Face 52857 27729 27728 27601 Face 52858 26425 27760 27747 Face 52859 27760 29451 29450 Face 52860 17426 18742 7123 Face 52861 21166 17426 7123 Face 52862 29598 28822 28761 Face 52863 22837 24093 24038 Face 52864 25675 25784 25783 Face 52865 25674 25675 25783 Face 52866 25784 25893 25892 Face 52867 25783 25784 25892 Face 52868 25893 26004 26003 Face 52869 25892 25893 26003 Face 52870 26004 26119 26118 Face 52871 26003 26004 26118 Face 52872 26470 26353 11575 Face 52873 26118 26119 26235 Face 52874 29191 21703 29059 Face 52875 29903 29902 29848 Face 52876 23198 24244 24246 Face 52877 27154 24741 22838 Face 52878 23117 19345 23118 Face 52879 2680 27018 27894 Face 52880 29710 29709 29577 Face 52881 29564 29696 29563 Face 52882 28135 28168 25881 Face 52883 18983 18984 539 Face 52884 27858 27857 27728 Face 52885 29079 29715 27258 Face 52886 28687 28557 18799 Face 52887 32689 32688 32561 Face 52888 33622 33747 33621 Face 52889 20752 20661 28827 Face 52890 6401 28130 20980 Face 52891 28300 27738 18459 Face 52892 27983 27982 27850 Face 52893 6579 25992 6160 Face 52894 2806 2678 29623 Face 52895 27851 27983 27850 Face 52896 28298 28032 29455 Face 52897 29741 26676 26563 Face 52898 29680 29679 29547 Face 52899 28130 19091 20980 Face 52900 27893 26566 28543 Face 52901 28567 29457 16670 Face 52902 2168 27900 19457 Face 52903 19086 20718 20806 Face 52904 20535 16016 14761 Face 52905 5257 2168 19457 Face 52906 29936 19253 19252 Face 52907 18040 34053 18717 Face 52908 30047 30109 30046 Face 52909 16838 16768 16769 Face 52910 24200 22277 18972 Face 52911 33308 16348 16186 Face 52912 28828 13345 28701 Face 52913 25750 19374 25648 Face 52914 32687 32686 32559 Face 52915 29216 25023 19305 Face 52916 26306 26418 12088 Face 52917 23157 22782 24588 Face 52918 29345 29344 29215 Face 52919 6595 22279 19212 Face 52920 29345 29478 29477 Face 52921 29344 29345 29477 Face 52922 29478 29608 29607 Face 52923 29477 29478 29607 Face 52924 22753 23910 29740 Face 52925 29607 29608 29740 Face 52926 20706 20120 20119 Face 52927 14850 20991 15034 Face 52928 22178 23910 20342 Face 52929 23220 18612 23276 Face 52930 26677 26681 28765 Face 52931 27836 27837 27968 Face 52932 29031 29162 29030 Face 52933 29292 29423 29422 Face 52934 29162 29292 29291 Face 52935 29161 29162 29291 Face 52936 28904 29031 28903 Face 52937 29291 29292 29422 Face 52938 28777 28778 28903 Face 52939 29162 29161 29030 Face 52940 28649 28778 28648 Face 52941 29031 29030 28903 Face 52942 28514 28649 28513 Face 52943 28778 28904 28903 Face 52944 28245 28244 28107 Face 52945 28778 28777 28648 Face 52946 33308 12015 32768 Face 52947 27975 27974 27842 Face 52948 6916 6915 6814 Face 52949 31919 32024 31918 Face 52950 2941 21172 21173 Face 52951 19085 19084 21546 Face 52952 28112 28113 28249 Face 52953 25562 26474 26471 Face 52954 29693 16677 29692 Face 52955 27472 27592 27471 Face 52956 28787 28913 28786 Face 52957 2298 2941 16956 Face 52958 29404 29407 10349 Face 52959 27852 27984 27851 Face 52960 27728 27600 27601 Face 52961 26565 18653 29725 Face 52962 27258 29715 28296 Face 52963 29332 26901 34402 Face 52964 17426 18984 18983 Face 52965 27492 5130 20983 Face 52966 2680 27894 28268 Face 52967 29447 29578 29446 Face 52968 27158 28029 27157 Face 52969 10622 7187 13987 Face 52970 20659 19005 22129 Face 52971 25785 25894 25893 Face 52972 25784 25785 25893 Face 52973 25894 26005 26004 Face 52974 25893 25894 26004 Face 52975 26005 26120 26119 Face 52976 26004 26005 26119 Face 52977 18781 24854 24853 Face 52978 25004 26120 26237 Face 52979 21703 29191 21800 Face 52980 29488 24673 29487 Face 52981 32136 32135 32031 Face 52982 19516 6663 29695 Face 52983 536 18937 20799 Face 52984 11353 12442 29669 Face 52985 29578 29710 29577 Face 52986 27862 20789 20875 Face 52987 25881 29079 27258 Face 52988 29710 21166 7123 Face 52989 29052 29051 28924 Face 52990 29715 27492 28296 Face 52991 26590 27892 21198 Face 52992 27729 27858 27728 Face 52993 28388 28523 28387 Face 52994 18455 20618 19272 Face 52995 27878 28431 27738 Face 52996 6162 18459 27738 Face 52997 26542 26543 26658 Face 52998 26774 26773 26658 Face 52999 26567 26214 29462 Face 53000 25848 23506 22787 Face 53001 29297 29298 29428 Face 53002 28909 28910 29036 Face 53003 18665 18758 2292 Face 53004 28526 28661 28525 Face 53005 29286 29417 29416 Face 53006 29548 29680 29547 Face 53007 28379 28514 28378 Face 53008 28649 28648 28513 Face 53009 28245 28379 28244 Face 53010 28514 28513 28378 Face 53011 28108 28245 28107 Face 53012 28379 28378 28244 Face 53013 11409 26454 11493 Face 53014 17660 18825 16760 Face 53015 26683 26795 11728 Face 53016 19305 20786 28953 Face 53017 28829 28828 28701 Face 53018 28702 28829 28701 Face 53019 11202 25687 25686 Face 53020 31810 31917 31809 Face 53021 27136 27753 27754 Face 53022 19037 29592 27246 Face 53023 30410 30481 30409 Face 53024 25284 23339 25285 Face 53025 12833 17583 18525 Face 53026 26294 25317 25324 Face 53027 29346 29479 29478 Face 53028 29345 29346 29478 Face 53029 29479 29609 29608 Face 53030 29478 29479 29608 Face 53031 29608 29609 22753 Face 53032 23508 23910 22753 Face 53033 23067 18448 26568 Face 53034 17551 13574 13202 Face 53035 26547 26546 26428 Face 53036 29551 29552 29683 Face 53037 27121 27237 27120 Face 53038 26193 26194 26311 Face 53039 27005 27121 27004 Face 53040 27347 27346 27236 Face 53041 26892 27005 26891 Face 53042 27237 27236 27120 Face 53043 26892 26891 26777 Face 53044 27121 27120 27004 Face 53045 26778 26892 26777 Face 53046 27005 27004 26891 Face 53047 27237 27347 27236 Face 53048 27466 27465 27346 Face 53049 27347 27466 27346 Face 53050 27586 27585 27465 Face 53051 27466 27586 27465 Face 53052 27713 27712 27585 Face 53053 27587 27714 27586 Face 53054 27843 27842 27713 Face 53055 32128 32127 32023 Face 53056 25585 25489 29615 Face 53057 29688 6604 29687 Face 53058 21545 21546 29818 Face 53059 25559 25562 26471 Face 53060 6282 18453 28167 Face 53061 27472 27471 27352 Face 53062 27353 27472 27352 Face 53063 16677 2298 16956 Face 53064 6714 25685 6583 Face 53065 27852 27851 27722 Face 53066 27723 27852 27722 Face 53067 25956 26793 25655 Face 53068 25761 21233 25762 Face 53069 32225 32226 32331 Face 53070 26329 18444 28762 Face 53071 28296 27492 20983 Face 53072 28888 28434 20986 Face 53073 29447 29446 29315 Face 53074 29316 29447 29315 Face 53075 27855 27854 27725 Face 53076 28007 2680 28268 Face 53077 3162 13191 22129 Face 53078 22129 19005 3162 Face 53079 25786 25895 25894 Face 53080 25785 25786 25894 Face 53081 25895 26006 26005 Face 53082 25894 25895 26005 Face 53083 26121 26120 26005 Face 53084 26006 26121 26005 Face 53085 34579 34527 34422 Face 53086 14500 18528 17542 Face 53087 21413 20957 11914 Face 53088 32539 27597 26421 Face 53089 27726 27855 27725 Face 53090 29055 29186 29054 Face 53091 29316 29315 29185 Face 53092 5130 16667 29536 Face 53093 29709 29710 7123 Face 53094 20983 5130 29536 Face 53095 16667 28888 20986 Face 53096 29302 29433 29301 Face 53097 11036 11006 27021 Face 53098 1867 6798 20978 Face 53099 26900 16661 25955 Face 53100 28254 28388 28387 Face 53101 28253 28254 28387 Face 53102 21171 18662 18660 Face 53103 2298 21171 2941 Face 53104 26659 26774 26658 Face 53105 17013 2292 3210 Face 53106 27581 27582 27708 Face 53107 27970 28103 28102 Face 53108 28431 26329 28762 Face 53109 27838 27970 27969 Face 53110 28432 27764 27128 Face 53111 27748 27749 26792 Face 53112 27843 27975 27842 Face 53113 28108 28107 27974 Face 53114 27842 27841 27712 Face 53115 27586 27713 27585 Face 53116 23886 12341 22689 Face 53117 27713 27842 27712 Face 53118 23253 25657 25299 Face 53119 34547 24241 24115 Face 53120 26454 11409 26455 Face 53121 18612 23221 29590 Face 53122 28575 28703 28702 Face 53123 28574 28575 28702 Face 53124 28703 24160 28702 Face 53125 23493 18783 2820 Face 53126 26414 29718 29726 Face 53127 27513 29593 28684 Face 53128 29593 26414 29726 Face 53129 27752 27513 29328 Face 53130 18866 24870 13391 Face 53131 23447 20618 6679 Face 53132 25288 21141 29480 Face 53133 13721 13627 13628 Face 53134 29346 25288 29479 Face 53135 21226 21227 21318 Face 53136 29480 29610 29609 Face 53137 29479 29480 29609 Face 53138 29610 29743 29742 Face 53139 29609 29610 29742 Face 53140 18545 23679 21506 Face 53141 19536 25969 19535 Face 53142 29684 29815 29814 Face 53143 6525 6798 1867 Face 53144 26312 26429 26428 Face 53145 29683 29684 29814 Face 53146 33998 33997 33870 Face 53147 26311 26312 26428 Face 53148 28815 28143 23066 Face 53149 26194 26312 26311 Face 53150 28119 28118 27985 Face 53151 27986 28119 27985 Face 53152 19535 25969 26079 Face 53153 29571 29703 29570 Face 53154 25958 11007 26307 Face 53155 23747 25869 25763 Face 53156 18193 29540 29673 Face 53157 28391 28390 28256 Face 53158 27974 27973 27841 Face 53159 25903 28144 28024 Face 53160 27714 27843 27713 Face 53161 27842 27974 27841 Face 53162 26588 26067 18976 Face 53163 27714 27713 27586 Face 53164 6604 21545 29818 Face 53165 25489 26588 18976 Face 53166 16962 26009 28941 Face 53167 6604 29818 29687 Face 53168 27592 27591 27471 Face 53169 19190 6282 28167 Face 53170 25685 25476 25474 Face 53171 27243 27353 27242 Face 53172 27984 27983 27851 Face 53173 25550 25685 25474 Face 53174 32561 32688 32687 Face 53175 27596 27723 27595 Face 53176 25576 25667 25575 Face 53177 25762 25763 25869 Face 53178 18877 26447 28094 Face 53179 23597 29603 17057 Face 53180 29578 29577 29446 Face 53181 28434 18877 28094 Face 53182 28395 28530 28394 Face 53183 29186 29185 29054 Face 53184 27726 27725 27598 Face 53185 25677 25787 25786 Face 53186 25676 25677 25786 Face 53187 25787 25896 25895 Face 53188 25786 25787 25895 Face 53189 25896 26007 26006 Face 53190 25895 25896 26006 Face 53191 26007 26122 26121 Face 53192 26006 26007 26121 Face 53193 3697 14500 18423 Face 53194 17825 3697 18423 Face 53195 28266 28265 28128 Face 53196 29055 29054 28927 Face 53197 28665 28664 28529 Face 53198 29536 16667 20986 Face 53199 29186 29316 29185 Face 53200 28434 28094 20986 Face 53201 23742 20691 25021 Face 53202 23220 19480 19479 Face 53203 22853 23631 24039 Face 53204 24517 12294 24378 Face 53205 27884 27739 12195 Face 53206 28117 28116 27983 Face 53207 11095 6798 6738 Face 53208 21172 21171 18660 Face 53209 28523 28522 28387 Face 53210 27848 27847 27718 Face 53211 18662 7023 7022 Face 53212 27848 27980 27847 Face 53213 28113 28112 27979 Face 53214 28531 28666 28530 Face 53215 28915 28914 28788 Face 53216 5386 6915 6916 Face 53217 18659 18762 6530 Face 53218 32017 32121 32120 Face 53219 6811 25585 29615 Face 53220 34469 34801 34581 Face 53221 27975 28108 27974 Face 53222 12148 24458 27152 Face 53223 26817 23377 24767 Face 53224 10845 34726 13768 Face 53225 32560 32687 32559 Face 53226 24319 23810 24259 Face 53227 34525 28136 34388 Face 53228 28439 28576 28575 Face 53229 23975 20316 29581 Face 53230 28704 28703 28575 Face 53231 28576 28704 28575 Face 53232 22689 27279 24466 Face 53233 28704 28831 28703 Face 53234 24350 24813 24219 Face 53235 11994 12080 12079 Face 53236 27513 28684 29328 Face 53237 31067 31166 31066 Face 53238 25288 29480 29479 Face 53239 29593 29726 28684 Face 53240 31267 31266 31165 Face 53241 23544 23621 25318 Face 53242 29475 29476 24541 Face 53243 20535 14761 14773 Face 53244 29611 29610 29480 Face 53245 34387 34280 13574 Face 53246 29611 29744 29743 Face 53247 29610 29611 29743 Face 53248 26220 11326 11251 Face 53249 23711 29743 29744 Face 53250 29420 29421 29551 Face 53251 20609 20608 20521 Face 53252 21643 21642 14202 Face 53253 29290 29421 29420 Face 53254 29815 21642 21643 Face 53255 18763 18764 14202 Face 53256 29814 29815 21643 Face 53257 21642 15878 14202 Face 53258 15878 18763 14202 Face 53259 18763 5129 6526 Face 53260 6577 6578 11037 Face 53261 29552 29684 29683 Face 53262 18764 18763 6526 Face 53263 6702 6577 11037 Face 53264 6702 11037 6526 Face 53265 5129 6702 6526 Face 53266 28530 28529 28394 Face 53267 27116 27117 27232 Face 53268 28107 28106 27973 Face 53269 27974 28107 27973 Face 53270 27587 27586 27466 Face 53271 27467 27587 27466 Face 53272 17619 17628 26067 Face 53273 26588 17619 26067 Face 53274 29556 29688 29687 Face 53275 29555 29556 29687 Face 53276 1866 16962 28941 Face 53277 26009 6282 19190 Face 53278 27127 27243 27126 Face 53279 27353 27352 27242 Face 53280 25476 26239 26236 Face 53281 25474 25476 26236 Face 53282 23562 23506 23425 Face 53283 27723 27722 27595 Face 53284 2299 17216 29810 Face 53285 21236 22709 29764 Face 53286 25764 25765 25871 Face 53287 20697 20537 19996 Face 53288 20716 20071 26447 Face 53289 18877 20716 26447 Face 53290 28928 28927 28801 Face 53291 28802 28928 28801 Face 53292 28029 27897 27157 Face 53293 28265 28264 28127 Face 53294 25678 25788 25787 Face 53295 25677 25678 25787 Face 53296 25788 25897 25896 Face 53297 25787 25788 25896 Face 53298 25897 26008 26007 Face 53299 25896 25897 26007 Face 53300 26008 26123 26122 Face 53301 26007 26008 26122 Face 53302 26122 26123 26238 Face 53303 25770 25771 25877 Face 53304 23742 24081 25162 Face 53305 25543 26420 26413 Face 53306 21361 22790 24997 Face 53307 28928 29055 28927 Face 53308 25757 25756 24395 Face 53309 23195 12085 23422 Face 53310 26359 11586 11587 Face 53311 17857 29760 29761 Face 53312 22974 24741 23958 Face 53313 25033 23635 12610 Face 53314 27984 28117 27983 Face 53315 25660 25763 25762 Face 53316 18660 18662 7022 Face 53317 28254 28253 28116 Face 53318 27592 27719 27591 Face 53319 7023 6806 6704 Face 53320 27719 27848 27718 Face 53321 27980 27979 27847 Face 53322 28789 28915 28788 Face 53323 28262 28396 28261 Face 53324 29048 29179 29047 Face 53325 29309 29308 29178 Face 53326 20344 20430 27127 Face 53327 6530 5386 6916 Face 53328 23448 23449 26538 Face 53329 28266 28128 21056 Face 53330 27902 28034 28033 Face 53331 29860 29914 29859 Face 53332 28034 28171 28170 Face 53333 28033 28034 28170 Face 53334 28171 28306 28305 Face 53335 28170 28171 28305 Face 53336 28306 28440 28439 Face 53337 28305 28306 28439 Face 53338 28440 28577 28576 Face 53339 28439 28440 28576 Face 53340 28705 28704 28576 Face 53341 28577 28705 28576 Face 53342 28832 28831 28704 Face 53343 28705 28832 28704 Face 53344 28957 28956 28831 Face 53345 28832 28957 28831 Face 53346 361 17017 17109 Face 53347 18868 20991 14850 Face 53348 14201 33147 32427 Face 53349 27246 27136 27754 Face 53350 28269 28162 26472 Face 53351 12883 12789 12790 Face 53352 27754 27753 28269 Face 53353 2788 29462 21935 Face 53354 33231 33367 33230 Face 53355 34773 34506 34523 Face 53356 29611 24138 29744 Face 53357 29611 21413 24138 Face 53358 31265 31264 31163 Face 53359 29745 17261 29744 Face 53360 31164 31265 31163 Face 53361 12721 13663 13752 Face 53362 29289 29290 29420 Face 53363 20790 33044 20791 Face 53364 29290 29289 29159 Face 53365 29421 29552 29551 Face 53366 29160 29159 29028 Face 53367 29160 29290 29159 Face 53368 29029 29028 28901 Face 53369 29029 29160 29028 Face 53370 28776 28902 28775 Face 53371 28902 29029 28901 Face 53372 28776 28775 28646 Face 53373 28647 28776 28646 Face 53374 18681 20705 6578 Face 53375 6577 18681 6578 Face 53376 20800 25586 28545 Face 53377 18732 23438 23424 Face 53378 28244 28243 28106 Face 53379 28107 28244 28106 Face 53380 27238 27348 27237 Face 53381 27467 27466 27347 Face 53382 26091 28935 17628 Face 53383 17619 26091 17628 Face 53384 29293 29294 29424 Face 53385 29425 29556 29555 Face 53386 29738 8344 25645 Face 53387 28023 29738 25645 Face 53388 27127 27126 27010 Face 53389 27011 27127 27010 Face 53390 26239 27572 27566 Face 53391 26236 26239 27566 Face 53392 26822 26937 12080 Face 53393 25796 11347 11270 Face 53394 27619 27620 29331 Face 53395 27738 28431 27869 Face 53396 25471 34366 27330 Face 53397 19537 23810 24319 Face 53398 26821 26818 20071 Face 53399 20716 26821 20071 Face 53400 28538 28673 28537 Face 53401 28802 28801 28672 Face 53402 28128 28265 28127 Face 53403 27497 29073 28563 Face 53404 25679 25789 25788 Face 53405 25678 25679 25788 Face 53406 25789 25898 25897 Face 53407 25788 25789 25897 Face 53408 28828 28953 13439 Face 53409 25897 25898 26008 Face 53410 11586 11506 11587 Face 53411 11123 11062 11063 Face 53412 11744 11664 11665 Face 53413 28272 28406 12839 Face 53414 32688 32821 32687 Face 53415 34442 34583 34717 Face 53416 22087 22088 29713 Face 53417 10154 4066 10152 Face 53418 19248 2848 2983 Face 53419 26706 26707 11992 Face 53420 24558 18318 18354 Face 53421 11909 26819 11991 Face 53422 29936 24602 29879 Face 53423 7022 7023 6704 Face 53424 28117 28254 28116 Face 53425 18425 5842 15614 Face 53426 6714 6583 6704 Face 53427 26994 27110 27109 Face 53428 20621 21950 16722 Face 53429 18453 18357 25968 Face 53430 16704 11512 11411 Face 53431 28167 18453 25968 Face 53432 28941 26009 19190 Face 53433 23449 23448 23770 Face 53434 21545 19085 21546 Face 53435 24028 29651 23701 Face 53436 29089 24162 28958 Face 53437 27772 27903 27902 Face 53438 27011 20261 20344 Face 53439 27903 28035 28034 Face 53440 27902 27903 28034 Face 53441 28035 28172 28171 Face 53442 28034 28035 28171 Face 53443 28172 28307 28306 Face 53444 28171 28172 28306 Face 53445 28307 28441 28440 Face 53446 28306 28307 28440 Face 53447 28441 28578 28577 Face 53448 28440 28441 28577 Face 53449 28706 28705 28577 Face 53450 28578 28706 28577 Face 53451 28833 28832 28705 Face 53452 28706 28833 28705 Face 53453 28958 28957 28832 Face 53454 28833 28958 28832 Face 53455 27453 27573 20777 Face 53456 22435 16961 6034 Face 53457 11816 11815 26700 Face 53458 11653 26470 11654 Face 53459 27002 27001 26888 Face 53460 29746 29745 24634 Face 53461 27118 27117 27001 Face 53462 26889 27002 26888 Face 53463 12186 34609 34589 Face 53464 27002 27118 27001 Face 53465 10271 4066 10393 Face 53466 11909 11827 11828 Face 53467 16944 17261 29745 Face 53468 29746 16944 29745 Face 53469 22649 9415 22648 Face 53470 24506 26988 26015 Face 53471 30762 30761 30662 Face 53472 21159 21158 6035 Face 53473 30870 30971 30869 Face 53474 27269 27883 18978 Face 53475 31070 31069 30970 Face 53476 30868 30867 30761 Face 53477 6033 19089 26092 Face 53478 2037 34719 18978 Face 53479 19194 6033 26092 Face 53480 29168 29298 29297 Face 53481 28902 28901 28775 Face 53482 27955 27872 27883 Face 53483 25425 25424 20705 Face 53484 28647 28646 28511 Face 53485 28794 28920 28793 Face 53486 18681 25425 20705 Face 53487 28378 28377 28243 Face 53488 26815 26908 28283 Face 53489 27348 27467 27347 Face 53490 28244 28378 28243 Face 53491 26557 13167 28935 Face 53492 27122 27238 27121 Face 53493 29424 29425 29555 Face 53494 26091 26557 28935 Face 53495 18855 12060 8344 Face 53496 29163 29164 29293 Face 53497 27243 27242 27126 Face 53498 29738 18855 8344 Face 53499 27572 29318 29279 Face 53500 27011 27010 26897 Face 53501 27596 27595 27475 Face 53502 27566 27572 29279 Face 53503 3464 17863 13038 Face 53504 25559 26471 26453 Face 53505 25765 25872 25871 Face 53506 28433 28569 26322 Face 53507 26821 26555 29074 Face 53508 28002 27608 26440 Face 53509 28673 28802 28672 Face 53510 26818 26821 29074 Face 53511 17728 18651 25966 Face 53512 28403 28538 28402 Face 53513 27497 28563 25749 Face 53514 25579 25680 25679 Face 53515 2558 225 8940 Face 53516 25679 25680 25789 Face 53517 32693 32826 32692 Face 53518 6591 8940 8575 Face 53519 20703 25419 25418 Face 53520 24323 24395 25756 Face 53521 20613 20703 25418 Face 53522 33882 34008 33881 Face 53523 28887 21873 21970 Face 53524 26359 26477 26476 Face 53525 26358 26359 26476 Face 53526 26477 26592 26591 Face 53527 26476 26477 26591 Face 53528 26592 26707 26706 Face 53529 26591 26592 26706 Face 53530 10841 19194 6415 Face 53531 11993 11992 26707 Face 53532 6806 6714 6704 Face 53533 25041 23083 6163 Face 53534 16771 24191 24581 Face 53535 25685 25550 6583 Face 53536 12167 27051 27166 Face 53537 34633 34367 34497 Face 53538 27279 22689 12341 Face 53539 12253 12166 12167 Face 53540 25516 25451 25517 Face 53541 20338 20425 20424 Face 53542 18762 18659 19084 Face 53543 18762 5386 6530 Face 53544 30109 30108 30046 Face 53545 19085 18762 19084 Face 53546 27642 27773 27772 Face 53547 20344 27127 27011 Face 53548 27773 27904 27903 Face 53549 27772 27773 27903 Face 53550 27904 28036 28035 Face 53551 27903 27904 28035 Face 53552 28036 28173 28172 Face 53553 28035 28036 28172 Face 53554 28173 28308 28307 Face 53555 28172 28173 28307 Face 53556 28308 28442 28441 Face 53557 28307 28308 28441 Face 53558 28442 28579 28578 Face 53559 28441 28442 28578 Face 53560 28707 28706 28578 Face 53561 28579 28707 28578 Face 53562 28834 28833 28706 Face 53563 28707 28834 28706 Face 53564 28959 28958 28833 Face 53565 28834 28959 28833 Face 53566 28959 29090 29089 Face 53567 28958 28959 29089 Face 53568 32463 32580 32462 Face 53569 29925 29983 29924 Face 53570 25021 29879 24602 Face 53571 23339 16944 29746 Face 53572 27344 27343 27233 Face 53573 27234 27344 27233 Face 53574 27234 27233 27117 Face 53575 27118 27234 27117 Face 53576 23092 16944 23980 Face 53577 29723 2424 2552 Face 53578 30665 30664 30570 Face 53579 30658 30657 30563 Face 53580 26191 27489 27485 Face 53581 12253 12165 12166 Face 53582 19204 27044 26932 Face 53583 20704 20705 25423 Face 53584 29197 29198 21159 Face 53585 6035 19204 26932 Face 53586 27485 27489 29197 Face 53587 21158 19204 6035 Face 53588 25663 25765 23315 Face 53589 29198 21158 21159 Face 53590 29407 17728 10349 Face 53591 20146 21378 23123 Face 53592 27269 27955 27883 Face 53593 2420 2678 29188 Face 53594 28512 28647 28511 Face 53595 26330 26331 27872 Face 53596 25425 26203 26191 Face 53597 28512 28511 28376 Face 53598 23506 23552 24871 Face 53599 25424 25425 26191 Face 53600 28513 28512 28377 Face 53601 26702 4592 19590 Face 53602 27348 27347 27237 Face 53603 28378 28513 28377 Face 53604 26557 26298 29016 Face 53605 27006 27122 27005 Face 53606 29294 29425 29424 Face 53607 13167 26557 29016 Face 53608 18855 18876 12060 Face 53609 29032 29033 29163 Face 53610 26898 27011 26897 Face 53611 27731 27860 27730 Face 53612 29318 18867 18864 Face 53613 26898 26897 26783 Face 53614 25762 25869 25868 Face 53615 29279 29318 18864 Face 53616 27252 24046 24047 Face 53617 3846 19476 15576 Face 53618 28925 29052 28924 Face 53619 21238 28539 28403 Face 53620 28140 29070 29074 Face 53621 11006 27038 27021 Face 53622 28673 28672 28537 Face 53623 26555 28140 29074 Face 53624 18358 27497 25749 Face 53625 19942 19866 19867 Face 53626 18550 28015 28697 Face 53627 25580 25681 25680 Face 53628 25579 25580 25680 Face 53629 23118 23119 28021 Face 53630 8940 23710 2558 Face 53631 18165 20651 20562 Face 53632 25032 23549 21506 Face 53633 29073 27048 28563 Face 53634 28015 27765 28022 Face 53635 27477 29190 27476 Face 53636 27765 27871 28022 Face 53637 9314 34773 10137 Face 53638 23245 24451 24562 Face 53639 26360 26478 26477 Face 53640 26359 26360 26477 Face 53641 26478 26593 26592 Face 53642 26477 26478 26592 Face 53643 26593 26708 26707 Face 53644 26592 26593 26707 Face 53645 24133 24199 24134 Face 53646 22642 22547 22548 Face 53647 20101 26670 20019 Face 53648 27719 27718 27591 Face 53649 24588 22782 24878 Face 53650 27166 23782 27279 Face 53651 27051 27167 27166 Face 53652 26937 27051 12167 Face 53653 21887 23123 21378 Face 53654 31165 31266 31164 Face 53655 25489 18976 29615 Face 53656 27517 24427 27397 Face 53657 23195 23396 12085 Face 53658 27223 20512 27107 Face 53659 27517 27643 27642 Face 53660 30449 30448 30381 Face 53661 27643 27774 27773 Face 53662 27642 27643 27773 Face 53663 27774 27905 27904 Face 53664 27773 27774 27904 Face 53665 27905 28037 28036 Face 53666 27904 27905 28036 Face 53667 28037 28174 28173 Face 53668 28036 28037 28173 Face 53669 28174 28309 28308 Face 53670 28173 28174 28308 Face 53671 28309 28443 28442 Face 53672 28308 28309 28442 Face 53673 28580 28579 28442 Face 53674 28443 28580 28442 Face 53675 28708 28707 28579 Face 53676 28580 28708 28579 Face 53677 28835 28834 28707 Face 53678 28708 28835 28707 Face 53679 28960 28959 28834 Face 53680 28835 28960 28834 Face 53681 28960 29091 29090 Face 53682 28959 28960 29090 Face 53683 29091 29221 29220 Face 53684 29090 29091 29220 Face 53685 11896 11980 11979 Face 53686 24438 13391 24870 Face 53687 27344 27463 27462 Face 53688 19188 19187 17216 Face 53689 6402 6701 7134 Face 53690 6524 6402 7134 Face 53691 29220 22891 29090 Face 53692 6701 11010 6634 Face 53693 29167 29168 29297 Face 53694 31275 31378 31274 Face 53695 27344 27345 27463 Face 53696 23962 22692 11081 Face 53697 25424 26191 26185 Face 53698 27464 27584 27583 Face 53699 6578 20705 20704 Face 53700 25423 25424 26185 Face 53701 11010 6578 20704 Face 53702 20705 25424 25423 Face 53703 26185 26191 27485 Face 53704 27489 29198 29197 Face 53705 17054 23405 29466 Face 53706 23569 23568 23485 Face 53707 2558 23710 28365 Face 53708 23321 20014 23451 Face 53709 27955 26330 27872 Face 53710 32311 3379 32412 Face 53711 28377 28512 28376 Face 53712 27102 25555 26331 Face 53713 26203 27490 27489 Face 53714 28243 28377 28242 Face 53715 20814 14407 20815 Face 53716 26191 26203 27489 Face 53717 28648 28647 28512 Face 53718 8933 428 28940 Face 53719 27238 27237 27121 Face 53720 28513 28648 28512 Face 53721 32958 32957 32825 Face 53722 27122 27121 27005 Face 53723 29164 29294 29293 Face 53724 29016 26298 14310 Face 53725 28806 28676 21422 Face 53726 29033 29164 29163 Face 53727 22636 15066 22059 Face 53728 29207 27567 25986 Face 53729 18867 25642 25630 Face 53730 26668 26669 26783 Face 53731 28266 28400 28265 Face 53732 18864 18867 25630 Face 53733 28399 28534 28398 Face 53734 23710 8940 6591 Face 53735 18256 26648 17551 Face 53736 28914 28913 28787 Face 53737 28140 27618 27616 Face 53738 27021 27038 25551 Face 53739 28538 28537 28402 Face 53740 29070 28140 27616 Face 53741 27724 27853 27723 Face 53742 28535 28670 28534 Face 53743 28152 28009 27871 Face 53744 19848 17761 25659 Face 53745 25580 25581 25681 Face 53746 19087 6594 2420 Face 53747 24456 24594 22826 Face 53748 27724 27723 27596 Face 53749 27597 27724 27596 Face 53750 26220 26221 11409 Face 53751 27853 27852 27723 Face 53752 11587 26243 26360 Face 53753 5513 26682 26671 Face 53754 26243 26361 26360 Face 53755 24138 29745 29744 Face 53756 26361 26479 26478 Face 53757 26360 26361 26478 Face 53758 26479 26594 26593 Face 53759 26478 26479 26593 Face 53760 26594 26709 26708 Face 53761 26593 26594 26708 Face 53762 26709 26823 26822 Face 53763 26708 26709 26822 Face 53764 26823 26938 26937 Face 53765 26822 26823 26937 Face 53766 26938 27052 27051 Face 53767 26937 26938 27051 Face 53768 27168 27167 27051 Face 53769 27052 27168 27051 Face 53770 27153 27037 12062 Face 53771 27168 27280 27167 Face 53772 29517 29518 24130 Face 53773 25898 25789 11186 Face 53774 27397 27518 27517 Face 53775 22888 29222 29353 Face 53776 27518 27644 27643 Face 53777 27517 27518 27643 Face 53778 27644 27775 27774 Face 53779 27643 27644 27774 Face 53780 27775 27906 27905 Face 53781 27774 27775 27905 Face 53782 27906 28038 28037 Face 53783 27905 27906 28037 Face 53784 28038 28175 28174 Face 53785 28037 28038 28174 Face 53786 28175 28310 28309 Face 53787 28174 28175 28309 Face 53788 28310 28444 28443 Face 53789 28309 28310 28443 Face 53790 28581 28580 28443 Face 53791 28444 28581 28443 Face 53792 28709 28708 28580 Face 53793 28581 28709 28580 Face 53794 28709 28836 28835 Face 53795 28708 28709 28835 Face 53796 28961 28960 28835 Face 53797 28836 28961 28835 Face 53798 29092 29091 28960 Face 53799 28961 29092 28960 Face 53800 29092 29222 29221 Face 53801 29091 29092 29221 Face 53802 11270 11201 25796 Face 53803 19261 19260 30250 Face 53804 19265 19264 30384 Face 53805 22888 24670 24669 Face 53806 17944 6402 18894 Face 53807 12234 27263 24458 Face 53808 20704 25423 25420 Face 53809 20614 20704 25420 Face 53810 28239 28373 28372 Face 53811 25989 28567 27381 Face 53812 27235 27345 27344 Face 53813 29024 29025 29155 Face 53814 27583 27584 27710 Face 53815 27003 27119 27002 Face 53816 27463 27464 27583 Face 53817 27840 27839 27710 Face 53818 27345 27464 27463 Face 53819 27584 27711 27710 Face 53820 27234 27235 27344 Face 53821 23652 27018 23756 Face 53822 23405 23333 23334 Face 53823 11081 23712 16716 Face 53824 29598 23652 28822 Face 53825 14310 23225 428 Face 53826 29586 29455 26643 Face 53827 30564 30658 30563 Face 53828 26330 27102 26331 Face 53829 28890 25652 25555 Face 53830 28243 28242 28105 Face 53831 28106 28243 28105 Face 53832 29202 29198 27489 Face 53833 27490 29202 27489 Face 53834 28763 428 8933 Face 53835 28890 28763 8933 Face 53836 28777 28776 28647 Face 53837 28648 28777 28647 Face 53838 26779 26893 26778 Face 53839 27006 27005 26892 Face 53840 19086 18985 19036 Face 53841 22888 24669 22890 Face 53842 28779 28780 28905 Face 53843 28906 29033 29032 Face 53844 29426 29557 29556 Face 53845 27861 27732 20788 Face 53846 26553 26669 26668 Face 53847 26552 26553 26668 Face 53848 25642 27604 27512 Face 53849 25630 25642 27512 Face 53850 25978 29714 17055 Face 53851 28389 28388 28254 Face 53852 26451 26453 27826 Face 53853 25961 26643 25586 Face 53854 28799 28925 28798 Face 53855 28925 28924 28798 Face 53856 27618 10838 11108 Face 53857 27616 27618 11108 Face 53858 25322 23996 8675 Face 53859 29449 29580 29448 Face 53860 22706 25030 25557 Face 53861 29335 29206 28139 Face 53862 29213 13531 13532 Face 53863 11166 21003 25659 Face 53864 33531 33658 33530 Face 53865 19000 29719 29594 Face 53866 23775 25871 25872 Face 53867 26244 11508 11509 Face 53868 29331 29333 18861 Face 53869 26244 26362 26361 Face 53870 26243 26244 26361 Face 53871 26362 26480 26479 Face 53872 26361 26362 26479 Face 53873 26480 26595 26594 Face 53874 26479 26480 26594 Face 53875 26595 26710 26709 Face 53876 26594 26595 26709 Face 53877 26710 26824 26823 Face 53878 26709 26710 26823 Face 53879 26824 26939 26938 Face 53880 26823 26824 26938 Face 53881 26939 27053 27052 Face 53882 26938 26939 27052 Face 53883 27169 27168 27052 Face 53884 27053 27169 27052 Face 53885 27281 27280 27168 Face 53886 27169 27281 27168 Face 53887 27281 27398 27397 Face 53888 27280 27281 27397 Face 53889 27398 27519 27518 Face 53890 27397 27398 27518 Face 53891 27519 27645 27644 Face 53892 27518 27519 27644 Face 53893 27645 27776 27775 Face 53894 27644 27645 27775 Face 53895 27776 27907 27906 Face 53896 27775 27776 27906 Face 53897 27907 28039 28038 Face 53898 27906 27907 28038 Face 53899 28176 28175 28038 Face 53900 28039 28176 28038 Face 53901 28311 28310 28175 Face 53902 28176 28311 28175 Face 53903 28445 28444 28310 Face 53904 28311 28445 28310 Face 53905 28582 28581 28444 Face 53906 28445 28582 28444 Face 53907 28710 28709 28581 Face 53908 28582 28710 28581 Face 53909 28710 28837 28836 Face 53910 28709 28710 28836 Face 53911 28837 28962 28961 Face 53912 28836 28837 28961 Face 53913 29093 29092 28961 Face 53914 28962 29093 28961 Face 53915 29093 29223 29222 Face 53916 29092 29093 29222 Face 53917 29223 29354 29353 Face 53918 29222 29223 29353 Face 53919 2822 23922 2693 Face 53920 29354 29485 29353 Face 53921 26357 11663 11585 Face 53922 29669 12442 22242 Face 53923 25423 26185 26181 Face 53924 19315 17944 19189 Face 53925 27883 28300 2037 Face 53926 25420 25423 26181 Face 53927 27700 20865 20866 Face 53928 18571 18676 2301 Face 53929 27235 27234 27118 Face 53930 32630 32631 885 Face 53931 27003 27002 26889 Face 53932 27119 27235 27118 Face 53933 26890 27003 26889 Face 53934 27119 27118 27002 Face 53935 16704 16716 23707 Face 53936 29730 29078 29731 Face 53937 16704 23706 16672 Face 53938 24388 29217 25160 Face 53939 29604 14032 23193 Face 53940 28957 28958 24162 Face 53941 30408 30407 30340 Face 53942 29159 29158 29027 Face 53943 27102 28890 25555 Face 53944 18543 27752 18355 Face 53945 28377 28376 28242 Face 53946 28890 8933 18259 Face 53947 29202 18973 21158 Face 53948 28106 28105 27972 Face 53949 20881 2626 26926 Face 53950 29198 29202 21158 Face 53951 28903 28902 28776 Face 53952 28169 25991 26330 Face 53953 26893 27006 26892 Face 53954 28777 28903 28776 Face 53955 17551 28017 13574 Face 53956 26893 26892 26778 Face 53957 28905 28906 29032 Face 53958 19212 19086 19036 Face 53959 29570 29702 29701 Face 53960 28780 28906 28905 Face 53961 22349 21962 15066 Face 53962 6655 6604 29688 Face 53963 27604 27509 27510 Face 53964 26434 26435 26552 Face 53965 29449 29448 29317 Face 53966 27512 27604 27510 Face 53967 27727 27726 27599 Face 53968 21504 21410 21411 Face 53969 27038 25558 25551 Face 53970 32539 27599 27598 Face 53971 10838 6405 2647 Face 53972 28274 27128 18873 Face 53973 29580 29712 29579 Face 53974 11108 10838 2647 Face 53975 2813 2947 2946 Face 53976 27859 27858 27729 Face 53977 26441 28689 26329 Face 53978 29439 29570 29438 Face 53979 26181 27478 27477 Face 53980 19782 19699 26192 Face 53981 2692 21549 18876 Face 53982 32238 32237 32133 Face 53983 28831 24160 28703 Face 53984 26245 26363 26362 Face 53985 26244 26245 26362 Face 53986 26363 26481 26480 Face 53987 26362 26363 26480 Face 53988 26481 26596 26595 Face 53989 26480 26481 26595 Face 53990 26596 26711 26710 Face 53991 26595 26596 26710 Face 53992 26711 26825 26824 Face 53993 26710 26711 26824 Face 53994 26825 26940 26939 Face 53995 26824 26825 26939 Face 53996 27054 27053 26939 Face 53997 26940 27054 26939 Face 53998 27170 27169 27053 Face 53999 27054 27170 27053 Face 54000 27282 27281 27169 Face 54001 27170 27282 27169 Face 54002 27282 27399 27398 Face 54003 27281 27282 27398 Face 54004 27399 27520 27519 Face 54005 27398 27399 27519 Face 54006 27520 27646 27645 Face 54007 27519 27520 27645 Face 54008 27646 27777 27776 Face 54009 27645 27646 27776 Face 54010 27777 27908 27907 Face 54011 27776 27777 27907 Face 54012 27908 28040 28039 Face 54013 27907 27908 28039 Face 54014 28177 28176 28039 Face 54015 28040 28177 28039 Face 54016 28312 28311 28176 Face 54017 28177 28312 28176 Face 54018 28446 28445 28311 Face 54019 28312 28446 28311 Face 54020 28583 28582 28445 Face 54021 28446 28583 28445 Face 54022 28711 28710 28582 Face 54023 28583 28711 28582 Face 54024 28711 28838 28837 Face 54025 28710 28711 28837 Face 54026 28838 28963 28962 Face 54027 28837 28838 28962 Face 54028 29094 29093 28962 Face 54029 28963 29094 28962 Face 54030 29094 29224 29223 Face 54031 29093 29094 29223 Face 54032 29224 29355 29354 Face 54033 29223 29224 29354 Face 54034 29486 29485 29354 Face 54035 29355 29486 29354 Face 54036 13344 13439 13438 Face 54037 26214 29590 23221 Face 54038 6402 6524 18894 Face 54039 27343 27344 27462 Face 54040 26185 27485 27478 Face 54041 2814 19315 2686 Face 54042 33873 33872 33746 Face 54043 26181 26185 27478 Face 54044 26331 27882 27878 Face 54045 30762 30868 30761 Face 54046 3679 5765 28496 Face 54047 27872 26331 27878 Face 54048 29738 5505 18855 Face 54049 27883 27872 28300 Face 54050 20619 24865 24854 Face 54051 25555 26441 27882 Face 54052 11414 26123 11333 Face 54053 24509 26014 24508 Face 54054 34593 5341 34561 Face 54055 25650 25649 25030 Face 54056 29028 29159 29027 Face 54057 33622 33621 33494 Face 54058 28274 28572 28032 Face 54059 29289 29288 29158 Face 54060 25652 28890 18259 Face 54061 18454 26900 18958 Face 54062 27973 28106 27972 Face 54063 8933 28940 28812 Face 54064 18973 4888 19204 Face 54065 27973 27972 27840 Face 54066 28763 28890 27102 Face 54067 21158 18973 19204 Face 54068 29030 29029 28902 Face 54069 25991 28763 27102 Face 54070 26664 26779 26663 Face 54071 29811 29812 2299 Face 54072 30757 30756 30657 Face 54073 25885 25882 25886 Face 54074 28516 28651 28515 Face 54075 28780 28779 28650 Face 54076 28906 28907 29033 Face 54077 25761 25762 25868 Face 54078 26318 26435 26434 Face 54079 26317 26318 26434 Face 54080 27509 27959 19191 Face 54081 27510 27509 19191 Face 54082 28806 28805 28676 Face 54083 27708 27709 27837 Face 54084 27856 27855 27726 Face 54085 27727 27856 27726 Face 54086 23711 11574 22752 Face 54087 27389 27510 18820 Face 54088 6405 28816 28297 Face 54089 2647 6405 28297 Face 54090 25670 25671 25773 Face 54091 26543 19936 26426 Face 54092 28391 28526 28390 Face 54093 29312 29311 29181 Face 54094 7014 5513 26671 Face 54095 18580 25654 27996 Face 54096 28230 28302 28166 Face 54097 18879 18986 537 Face 54098 10393 4066 4193 Face 54099 12080 26937 12167 Face 54100 21885 21886 21982 Face 54101 26128 26246 26245 Face 54102 11509 26245 26244 Face 54103 26246 26364 26363 Face 54104 26245 26246 26363 Face 54105 26364 26482 26481 Face 54106 26363 26364 26481 Face 54107 26482 26597 26596 Face 54108 26481 26482 26596 Face 54109 26597 26712 26711 Face 54110 26596 26597 26711 Face 54111 26712 26826 26825 Face 54112 26711 26712 26825 Face 54113 26826 26941 26940 Face 54114 26825 26826 26940 Face 54115 27055 27054 26940 Face 54116 26941 27055 26940 Face 54117 27171 27170 27054 Face 54118 27055 27171 27054 Face 54119 27171 27283 27282 Face 54120 27170 27171 27282 Face 54121 27283 27400 27399 Face 54122 27282 27283 27399 Face 54123 27400 27521 27520 Face 54124 27399 27400 27520 Face 54125 27521 27647 27646 Face 54126 27520 27521 27646 Face 54127 27647 27778 27777 Face 54128 27646 27647 27777 Face 54129 27778 27909 27908 Face 54130 27777 27778 27908 Face 54131 27909 28041 28040 Face 54132 27908 27909 28040 Face 54133 28041 28178 28177 Face 54134 28040 28041 28177 Face 54135 28313 28312 28177 Face 54136 28178 28313 28177 Face 54137 28447 28446 28312 Face 54138 28313 28447 28312 Face 54139 28584 28583 28446 Face 54140 28447 28584 28446 Face 54141 28712 28711 28583 Face 54142 28584 28712 28583 Face 54143 28712 28839 28838 Face 54144 28711 28712 28838 Face 54145 28839 28964 28963 Face 54146 28838 28839 28963 Face 54147 29095 29094 28963 Face 54148 28964 29095 28963 Face 54149 29095 29225 29224 Face 54150 29094 29095 29224 Face 54151 29225 29356 29355 Face 54152 29224 29225 29355 Face 54153 29487 29486 29355 Face 54154 29356 29487 29355 Face 54155 4753 20810 15603 Face 54156 34521 34611 34309 Face 54157 27463 27583 27582 Face 54158 26889 26888 26774 Face 54159 17944 18894 19189 Face 54160 27462 27463 27582 Face 54161 27485 29197 29193 Face 54162 29813 2814 2686 Face 54163 21935 29462 20640 Face 54164 27478 27485 29193 Face 54165 27603 32781 32780 Face 54166 5344 34301 34518 Face 54167 29652 23701 29651 Face 54168 29863 29917 29862 Face 54169 18325 4496 4495 Face 54170 17193 18839 17283 Face 54171 16707 16672 20619 Face 54172 18781 16707 20619 Face 54173 23172 29457 23171 Face 54174 29585 25844 20013 Face 54175 10225 27355 11007 Face 54176 26106 25993 26107 Face 54177 29159 29289 29158 Face 54178 29028 29027 28900 Face 54179 28508 28643 28642 Face 54180 29420 29419 29288 Face 54181 18259 8933 28812 Face 54182 17013 18715 2292 Face 54183 27841 27973 27840 Face 54184 31369 31473 31368 Face 54185 4888 27101 27044 Face 54186 27841 27840 27711 Face 54187 27446 27046 27162 Face 54188 19204 4888 27044 Face 54189 19189 19188 2299 Face 54190 27725 27854 27724 Face 54191 25556 25557 25648 Face 54192 29286 29287 29417 Face 54193 28651 28780 28650 Face 54194 25649 25751 25750 Face 54195 29569 29570 29701 Face 54196 28651 28650 28515 Face 54197 26435 26553 26552 Face 54198 29486 29487 24672 Face 54199 27959 18544 28030 Face 54200 26199 26200 26317 Face 54201 34821 34405 34832 Face 54202 19191 27959 28030 Face 54203 27988 27987 27855 Face 54204 25664 25767 25766 Face 54205 25877 25878 25984 Face 54206 27856 27988 27855 Face 54207 28816 29587 29720 Face 54208 16668 26763 26205 Face 54209 20848 27326 20760 Face 54210 28297 28816 29720 Face 54211 10349 17728 25963 Face 54212 31836 31943 31942 Face 54213 26205 10715 18361 Face 54214 23083 17355 6163 Face 54215 13547 14666 16030 Face 54216 20712 6705 20715 Face 54217 22890 29221 22888 Face 54218 25671 25774 25773 Face 54219 30867 30968 30866 Face 54220 29453 21993 21896 Face 54221 26128 11509 11428 Face 54222 29083 13533 28952 Face 54223 26129 26247 26246 Face 54224 26128 26129 26246 Face 54225 26247 26365 26364 Face 54226 26246 26247 26364 Face 54227 26365 26483 26482 Face 54228 26364 26365 26482 Face 54229 26483 26598 26597 Face 54230 26482 26483 26597 Face 54231 26598 26713 26712 Face 54232 26597 26598 26712 Face 54233 26713 26827 26826 Face 54234 26712 26713 26826 Face 54235 26827 26942 26941 Face 54236 26826 26827 26941 Face 54237 27056 27055 26941 Face 54238 26942 27056 26941 Face 54239 27172 27171 27055 Face 54240 27056 27172 27055 Face 54241 27172 27284 27283 Face 54242 27171 27172 27283 Face 54243 27284 27401 27400 Face 54244 27283 27284 27400 Face 54245 27401 27522 27521 Face 54246 27400 27401 27521 Face 54247 27522 27648 27647 Face 54248 27521 27522 27647 Face 54249 27648 27779 27778 Face 54250 27647 27648 27778 Face 54251 27779 27910 27909 Face 54252 27778 27779 27909 Face 54253 27910 28042 28041 Face 54254 27909 27910 28041 Face 54255 28042 28179 28178 Face 54256 28041 28042 28178 Face 54257 28314 28313 28178 Face 54258 28179 28314 28178 Face 54259 28448 28447 28313 Face 54260 28314 28448 28313 Face 54261 28585 28584 28447 Face 54262 28448 28585 28447 Face 54263 28713 28712 28584 Face 54264 28585 28713 28584 Face 54265 28713 28840 28839 Face 54266 28712 28713 28839 Face 54267 28840 28965 28964 Face 54268 28839 28840 28964 Face 54269 28965 29096 29095 Face 54270 28964 28965 29095 Face 54271 29096 29226 29225 Face 54272 29095 29096 29225 Face 54273 29226 29357 29356 Face 54274 29225 29226 29356 Face 54275 29488 29487 29356 Face 54276 29357 29488 29356 Face 54277 24891 25314 30627 Face 54278 34759 34678 34521 Face 54279 26775 26889 26774 Face 54280 27753 28162 28269 Face 54281 27710 27709 27582 Face 54282 26660 26775 26659 Face 54283 29812 29813 2686 Face 54284 27583 27710 27582 Face 54285 6035 26932 26931 Face 54286 29550 29682 29549 Face 54287 21159 6035 19147 Face 54288 19147 6035 26931 Face 54289 29197 21159 21076 Face 54290 21076 21159 19147 Face 54291 26783 20100 26898 Face 54292 29193 29197 21076 Face 54293 16713 16707 18781 Face 54294 34651 34758 34553 Face 54295 29341 29474 9054 Face 54296 16713 29585 16707 Face 54297 16707 20013 16672 Face 54298 29585 20013 16707 Face 54299 28901 29028 28900 Face 54300 23992 24114 24113 Face 54301 29289 29420 29288 Face 54302 28901 28900 28774 Face 54303 18890 28696 28025 Face 54304 29420 29551 29550 Face 54305 31582 31581 31472 Face 54306 27854 27986 27853 Face 54307 27712 27841 27711 Face 54308 18258 21414 18340 Face 54309 18552 26214 26567 Face 54310 18928 18552 26567 Face 54311 27232 27233 27342 Face 54312 27461 27462 27581 Face 54313 29156 29157 29286 Face 54314 29287 29418 29417 Face 54315 24547 24625 24349 Face 54316 25750 25751 22872 Face 54317 28381 28516 28515 Face 54318 28380 28381 28515 Face 54319 29723 12891 26322 Face 54320 23792 23793 15302 Face 54321 26083 26084 26199 Face 54322 26200 26318 26317 Face 54323 24035 23589 28163 Face 54324 18544 28163 23589 Face 54325 25483 25484 26242 Face 54326 29466 28421 29077 Face 54327 28121 28120 27987 Face 54328 27988 28121 27987 Face 54329 11016 11061 11015 Face 54330 31694 31693 31579 Face 54331 29587 18513 18101 Face 54332 29720 29587 18101 Face 54333 32656 27602 27601 Face 54334 24879 23707 23712 Face 54335 34740 34451 34336 Face 54336 27639 25644 26180 Face 54337 25789 11123 11186 Face 54338 18355 29328 27900 Face 54339 26998 26999 27114 Face 54340 12032 5765 3679 Face 54341 28889 16668 28698 Face 54342 25796 25905 25904 Face 54343 4217 314 21488 Face 54344 25905 26017 26016 Face 54345 25904 25905 26016 Face 54346 26017 26130 26129 Face 54347 26016 26017 26129 Face 54348 26130 26248 26247 Face 54349 26129 26130 26247 Face 54350 26248 26366 26365 Face 54351 26247 26248 26365 Face 54352 26366 26484 26483 Face 54353 26365 26366 26483 Face 54354 26484 26599 26598 Face 54355 26483 26484 26598 Face 54356 26599 26714 26713 Face 54357 26598 26599 26713 Face 54358 26714 26828 26827 Face 54359 26713 26714 26827 Face 54360 26828 26943 26942 Face 54361 26827 26828 26942 Face 54362 27057 27056 26942 Face 54363 26943 27057 26942 Face 54364 27173 27172 27056 Face 54365 27057 27173 27056 Face 54366 27173 27285 27284 Face 54367 27172 27173 27284 Face 54368 27285 27402 27401 Face 54369 27284 27285 27401 Face 54370 27402 27523 27522 Face 54371 27401 27402 27522 Face 54372 27523 27649 27648 Face 54373 27522 27523 27648 Face 54374 27649 27780 27779 Face 54375 27648 27649 27779 Face 54376 27780 27911 27910 Face 54377 27779 27780 27910 Face 54378 27911 28043 28042 Face 54379 27910 27911 28042 Face 54380 28043 28180 28179 Face 54381 28042 28043 28179 Face 54382 28315 28314 28179 Face 54383 28180 28315 28179 Face 54384 28449 28448 28314 Face 54385 28315 28449 28314 Face 54386 28586 28585 28448 Face 54387 28449 28586 28448 Face 54388 28714 28713 28585 Face 54389 28586 28714 28585 Face 54390 28714 28841 28840 Face 54391 28713 28714 28840 Face 54392 28841 28966 28965 Face 54393 28840 28841 28965 Face 54394 28966 29097 29096 Face 54395 28965 28966 29096 Face 54396 29227 29226 29096 Face 54397 29097 29227 29096 Face 54398 29227 29358 29357 Face 54399 29226 29227 29357 Face 54400 29358 29489 29488 Face 54401 29357 29358 29488 Face 54402 26123 26008 11332 Face 54403 28953 20786 28952 Face 54404 26544 26660 26543 Face 54405 26775 26774 26659 Face 54406 24390 24740 24739 Face 54407 26660 26659 26543 Face 54408 27839 27971 27970 Face 54409 26426 26544 26543 Face 54410 29682 29813 29812 Face 54411 27838 27839 27970 Face 54412 29550 29549 29418 Face 54413 29681 29682 29812 Face 54414 29419 29550 29418 Face 54415 29682 29681 29549 Face 54416 2079 1954 2080 Face 54417 19315 19189 2686 Face 54418 17781 19586 19587 Face 54419 19587 19586 21012 Face 54420 29595 29585 16713 Face 54421 17057 29595 16713 Face 54422 25845 25844 29585 Face 54423 29595 25845 29585 Face 54424 30875 30976 30874 Face 54425 24170 19205 23807 Face 54426 28775 28901 28774 Face 54427 19339 26187 27698 Face 54428 29419 29420 29550 Face 54429 28775 28774 28645 Face 54430 28119 28256 28118 Face 54431 29551 29683 29682 Face 54432 27117 27233 27232 Face 54433 29703 6900 29702 Face 54434 28824 29730 27386 Face 54435 28237 28238 28371 Face 54436 25969 19536 25970 Face 54437 28903 29030 28902 Face 54438 29025 29026 29156 Face 54439 26548 26664 26547 Face 54440 20786 19305 25023 Face 54441 29969 29968 29910 Face 54442 28110 28247 28109 Face 54443 28381 28380 28246 Face 54444 29037 29168 29167 Face 54445 313 16690 25659 Face 54446 25973 26084 26083 Face 54447 25972 25973 26083 Face 54448 34183 12550 34180 Face 54449 20401 13907 12528 Face 54450 26295 27620 27619 Face 54451 18460 18753 20713 Face 54452 28258 28257 28120 Face 54453 28121 28258 28120 Face 54454 31943 32048 32047 Face 54455 32447 32446 32334 Face 54456 18513 18449 27156 Face 54457 18101 18513 27156 Face 54458 6594 19147 26681 Face 54459 26681 26931 29146 Face 54460 31915 32020 31914 Face 54461 25687 11202 25587 Face 54462 33490 33617 33489 Face 54463 27100 29408 28159 Face 54464 23635 22958 27642 Face 54465 26681 26677 29748 Face 54466 25686 25797 25796 Face 54467 24620 24891 30627 Face 54468 25797 25906 25905 Face 54469 25796 25797 25905 Face 54470 25906 26018 26017 Face 54471 25905 25906 26017 Face 54472 26018 26131 26130 Face 54473 26017 26018 26130 Face 54474 26131 26249 26248 Face 54475 26130 26131 26248 Face 54476 26249 26367 26366 Face 54477 26248 26249 26366 Face 54478 26367 26485 26484 Face 54479 26366 26367 26484 Face 54480 26485 26600 26599 Face 54481 26484 26485 26599 Face 54482 26600 26715 26714 Face 54483 26599 26600 26714 Face 54484 26715 26829 26828 Face 54485 26714 26715 26828 Face 54486 26829 26944 26943 Face 54487 26828 26829 26943 Face 54488 27058 27057 26943 Face 54489 26944 27058 26943 Face 54490 27174 27173 27057 Face 54491 27058 27174 27057 Face 54492 27174 27286 27285 Face 54493 27173 27174 27285 Face 54494 27286 27403 27402 Face 54495 27285 27286 27402 Face 54496 27403 27524 27523 Face 54497 27402 27403 27523 Face 54498 27524 27650 27649 Face 54499 27523 27524 27649 Face 54500 27650 27781 27780 Face 54501 27649 27650 27780 Face 54502 27781 27912 27911 Face 54503 27780 27781 27911 Face 54504 27912 28044 28043 Face 54505 27911 27912 28043 Face 54506 28044 28181 28180 Face 54507 28043 28044 28180 Face 54508 28181 28316 28315 Face 54509 28180 28181 28315 Face 54510 28450 28449 28315 Face 54511 28316 28450 28315 Face 54512 28587 28586 28449 Face 54513 28450 28587 28449 Face 54514 28715 28714 28586 Face 54515 28587 28715 28586 Face 54516 28715 28842 28841 Face 54517 28714 28715 28841 Face 54518 28842 28967 28966 Face 54519 28841 28842 28966 Face 54520 28967 29098 29097 Face 54521 28966 28967 29097 Face 54522 29228 29227 29097 Face 54523 29098 29228 29097 Face 54524 29359 29358 29227 Face 54525 29228 29359 29227 Face 54526 29359 29490 29489 Face 54527 29358 29359 29489 Face 54528 34458 28688 15736 Face 54529 23334 23275 28421 Face 54530 28375 28374 28240 Face 54531 28241 28375 28240 Face 54532 28375 28510 28374 Face 54533 28510 28509 28374 Face 54534 28510 28645 28509 Face 54535 28645 28644 28509 Face 54536 28241 28240 28103 Face 54537 28774 28773 28644 Face 54538 28104 28103 27970 Face 54539 28104 28241 28103 Face 54540 27839 27838 27709 Face 54541 27971 28104 27970 Face 54542 29605 29603 23597 Face 54543 27710 27839 27709 Face 54544 11025 30057 11026 Face 54545 24665 25288 29217 Face 54546 29603 29595 17057 Face 54547 29605 23597 23596 Face 54548 29603 25846 25845 Face 54549 29595 29603 25845 Face 54550 23210 19708 22785 Face 54551 17246 17337 19633 Face 54552 28298 28274 28032 Face 54553 19089 18028 25569 Face 54554 28646 28775 28645 Face 54555 5505 2692 18855 Face 54556 29550 29551 29682 Face 54557 28376 28511 28375 Face 54558 28697 28022 16717 Face 54559 29683 29814 29813 Face 54560 28507 28642 28641 Face 54561 26887 26888 27000 Face 54562 29030 29161 29160 Face 54563 25991 27102 26330 Face 54564 26779 26778 26663 Face 54565 29029 29030 29160 Face 54566 33870 33869 33743 Face 54567 26664 26663 26547 Face 54568 28247 28381 28246 Face 54569 25969 26080 26079 Face 54570 27254 24253 27253 Face 54571 28247 28246 28109 Face 54572 26084 26200 26199 Face 54573 23154 23264 23899 Face 54574 27470 27469 27350 Face 54575 25861 25862 25972 Face 54576 25573 25664 25572 Face 54577 27351 27470 27350 Face 54578 28392 28391 28257 Face 54579 27009 27008 26895 Face 54580 25984 19465 19464 Face 54581 28258 28392 28257 Face 54582 18449 1767 21071 Face 54583 6159 27327 24647 Face 54584 29328 18968 27900 Face 54585 27156 18449 21071 Face 54586 28159 28277 28139 Face 54587 28898 29025 29024 Face 54588 27001 27117 27116 Face 54589 27100 28159 28139 Face 54590 19996 20537 24852 Face 54591 24067 2908 11752 Face 54592 24220 29489 29490 Face 54593 25687 25798 25797 Face 54594 25686 25687 25797 Face 54595 25798 25907 25906 Face 54596 25797 25798 25906 Face 54597 25907 26019 26018 Face 54598 25906 25907 26018 Face 54599 26019 26132 26131 Face 54600 26018 26019 26131 Face 54601 26132 26250 26249 Face 54602 26131 26132 26249 Face 54603 26250 26368 26367 Face 54604 26249 26250 26367 Face 54605 26368 26486 26485 Face 54606 26367 26368 26485 Face 54607 26486 26601 26600 Face 54608 26485 26486 26600 Face 54609 26601 26716 26715 Face 54610 26600 26601 26715 Face 54611 26716 26830 26829 Face 54612 26715 26716 26829 Face 54613 26830 26945 26944 Face 54614 26829 26830 26944 Face 54615 27059 27058 26944 Face 54616 26945 27059 26944 Face 54617 27175 27174 27058 Face 54618 27059 27175 27058 Face 54619 27175 27287 27286 Face 54620 27174 27175 27286 Face 54621 27287 27404 27403 Face 54622 27286 27287 27403 Face 54623 27404 27525 27524 Face 54624 27403 27404 27524 Face 54625 27525 27651 27650 Face 54626 27524 27525 27650 Face 54627 27651 27782 27781 Face 54628 27650 27651 27781 Face 54629 27782 27913 27912 Face 54630 27781 27782 27912 Face 54631 27913 28045 28044 Face 54632 27912 27913 28044 Face 54633 28182 28181 28044 Face 54634 28045 28182 28044 Face 54635 28182 28317 28316 Face 54636 28181 28182 28316 Face 54637 28451 28450 28316 Face 54638 28317 28451 28316 Face 54639 28588 28587 28450 Face 54640 28451 28588 28450 Face 54641 28588 28716 28715 Face 54642 28587 28588 28715 Face 54643 28716 28843 28842 Face 54644 28715 28716 28842 Face 54645 28843 28968 28967 Face 54646 28842 28843 28967 Face 54647 29099 29098 28967 Face 54648 28968 29099 28967 Face 54649 29229 29228 29098 Face 54650 29099 29229 29098 Face 54651 29229 29360 29359 Face 54652 29228 29229 29359 Face 54653 29360 29491 29490 Face 54654 29359 29360 29490 Face 54655 11994 26708 26822 Face 54656 29755 24350 29624 Face 54657 4202 8539 11542 Face 54658 27254 24256 24254 Face 54659 29288 29419 29287 Face 54660 24417 24266 24815 Face 54661 29158 29288 29157 Face 54662 29419 29418 29287 Face 54663 29026 29027 29157 Face 54664 29288 29287 29157 Face 54665 28899 28900 29026 Face 54666 29027 29158 29157 Face 54667 28774 28900 28773 Face 54668 28900 29027 29026 Face 54669 28645 28774 28644 Face 54670 28900 28899 28773 Face 54671 24740 27143 27144 Face 54672 23596 24811 23590 Face 54673 29321 21800 29191 Face 54674 31290 31393 31392 Face 54675 1316 11099 8459 Face 54676 9538 13457 1572 Face 54677 1316 9538 1572 Face 54678 20119 26587 20706 Face 54679 23212 26071 24293 Face 54680 27381 28567 28636 Face 54681 29586 28298 29455 Face 54682 28274 18873 18657 Face 54683 28646 28645 28510 Face 54684 20800 25961 25586 Face 54685 6163 20874 25041 Face 54686 28511 28646 28510 Face 54687 24256 27255 27256 Face 54688 31263 31262 31161 Face 54689 25992 25430 6160 Face 54690 26810 26699 11815 Face 54691 29161 29291 29290 Face 54692 29160 29161 29290 Face 54693 26430 26548 26547 Face 54694 26429 26430 26547 Face 54695 19190 28167 29327 Face 54696 26080 26196 26195 Face 54697 28110 28109 27976 Face 54698 27977 28110 27976 Face 54699 30089 30090 30151 Face 54700 30152 30216 30215 Face 54701 25754 25755 25861 Face 54702 25862 25973 25972 Face 54703 26681 29146 28765 Face 54704 29671 18362 29672 Face 54705 27128 29716 2811 Face 54706 6808 6807 20713 Face 54707 28527 28526 28391 Face 54708 28392 28527 28391 Face 54709 27266 648 18987 Face 54710 13547 29781 16868 Face 54711 1767 28435 28362 Face 54712 21071 1767 28362 Face 54713 7125 19516 29696 Face 54714 7022 6704 6908 Face 54715 28829 24528 28828 Face 54716 27770 16957 222 Face 54717 25517 11671 25518 Face 54718 17761 22242 313 Face 54719 17728 25966 25963 Face 54720 25587 25688 25687 Face 54721 29624 24350 29491 Face 54722 25688 25799 25798 Face 54723 25687 25688 25798 Face 54724 25799 25908 25907 Face 54725 25798 25799 25907 Face 54726 25908 26020 26019 Face 54727 25907 25908 26019 Face 54728 26020 26133 26132 Face 54729 26019 26020 26132 Face 54730 26133 26251 26250 Face 54731 26132 26133 26250 Face 54732 26251 26369 26368 Face 54733 26250 26251 26368 Face 54734 26369 26487 26486 Face 54735 26368 26369 26486 Face 54736 26487 26602 26601 Face 54737 26486 26487 26601 Face 54738 26602 26717 26716 Face 54739 26601 26602 26716 Face 54740 26717 26831 26830 Face 54741 26716 26717 26830 Face 54742 26831 26946 26945 Face 54743 26830 26831 26945 Face 54744 27060 27059 26945 Face 54745 26946 27060 26945 Face 54746 27176 27175 27059 Face 54747 27060 27176 27059 Face 54748 27176 27288 27287 Face 54749 27175 27176 27287 Face 54750 27288 27405 27404 Face 54751 27287 27288 27404 Face 54752 27405 27526 27525 Face 54753 27404 27405 27525 Face 54754 27526 27652 27651 Face 54755 27525 27526 27651 Face 54756 27652 27783 27782 Face 54757 27651 27652 27782 Face 54758 27783 27914 27913 Face 54759 27782 27783 27913 Face 54760 27914 28046 28045 Face 54761 27913 27914 28045 Face 54762 28046 28183 28182 Face 54763 28045 28046 28182 Face 54764 28318 28317 28182 Face 54765 28183 28318 28182 Face 54766 28452 28451 28317 Face 54767 28318 28452 28317 Face 54768 28589 28588 28451 Face 54769 28452 28589 28451 Face 54770 28589 28717 28716 Face 54771 28588 28589 28716 Face 54772 28717 28844 28843 Face 54773 28716 28717 28843 Face 54774 28844 28969 28968 Face 54775 28843 28844 28968 Face 54776 29100 29099 28968 Face 54777 28969 29100 28968 Face 54778 29230 29229 29099 Face 54779 29100 29230 29099 Face 54780 29230 29361 29360 Face 54781 29229 29230 29360 Face 54782 29361 29492 29491 Face 54783 29360 29361 29491 Face 54784 11081 23713 23712 Face 54785 29492 29624 29491 Face 54786 29624 29756 29755 Face 54787 24256 24163 24164 Face 54788 24637 8266 23884 Face 54789 33996 34121 33995 Face 54790 13566 1012 23752 Face 54791 23647 23752 1012 Face 54792 2786 16412 16413 Face 54793 18972 22951 14485 Face 54794 27499 27491 26204 Face 54795 25430 26206 25426 Face 54796 26206 27499 26204 Face 54797 27706 27707 27835 Face 54798 27968 28101 28100 Face 54799 28238 28372 28371 Face 54800 6910 7846 19377 Face 54801 17216 19187 17284 Face 54802 13857 27257 6033 Face 54803 20486 13907 20401 Face 54804 9538 1316 8459 Face 54805 29612 25847 29605 Face 54806 10985 24235 24366 Face 54807 22254 29669 17761 Face 54808 25659 22631 19848 Face 54809 16184 14429 18757 Face 54810 26759 20487 18731 Face 54811 27255 24256 27254 Face 54812 26192 26310 26309 Face 54813 6797 29594 18541 Face 54814 26309 19782 26192 Face 54815 22650 22649 21637 Face 54816 18975 18872 6163 Face 54817 17355 18975 6163 Face 54818 27254 24254 24253 Face 54819 32491 32492 32608 Face 54820 29291 29422 29421 Face 54821 28240 28374 28373 Face 54822 26313 26430 26429 Face 54823 26312 26313 26429 Face 54824 26079 26080 26195 Face 54825 26196 26314 26313 Face 54826 27977 27976 27844 Face 54827 27845 27977 27844 Face 54828 30279 30278 30213 Face 54829 30214 30279 30213 Face 54830 28932 28931 28805 Face 54831 25755 25862 25861 Face 54832 31812 31919 31811 Face 54833 6798 6525 11167 Face 54834 21378 20146 27387 Face 54835 26896 27009 26895 Face 54836 28662 28661 28526 Face 54837 28527 28662 28526 Face 54838 26453 27827 27826 Face 54839 21584 21679 28494 Face 54840 31586 31585 31476 Face 54841 29209 26587 34412 Face 54842 18362 18349 29672 Face 54843 6583 6582 6703 Face 54844 16868 27770 222 Face 54845 18971 2681 16957 Face 54846 25432 25496 25495 Face 54847 25431 25432 25495 Face 54848 25496 25588 25587 Face 54849 34308 28686 28003 Face 54850 25588 25689 25688 Face 54851 25587 25588 25688 Face 54852 25689 25800 25799 Face 54853 25688 25689 25799 Face 54854 25800 25909 25908 Face 54855 25799 25800 25908 Face 54856 25909 26021 26020 Face 54857 25908 25909 26020 Face 54858 26021 26134 26133 Face 54859 26020 26021 26133 Face 54860 26134 26252 26251 Face 54861 26133 26134 26251 Face 54862 26252 26370 26369 Face 54863 26251 26252 26369 Face 54864 26370 26488 26487 Face 54865 26369 26370 26487 Face 54866 26488 26603 26602 Face 54867 26487 26488 26602 Face 54868 26603 26718 26717 Face 54869 26602 26603 26717 Face 54870 26718 26832 26831 Face 54871 26717 26718 26831 Face 54872 26832 26947 26946 Face 54873 26831 26832 26946 Face 54874 26947 27061 27060 Face 54875 26946 26947 27060 Face 54876 27177 27176 27060 Face 54877 27061 27177 27060 Face 54878 27177 27289 27288 Face 54879 27176 27177 27288 Face 54880 27289 27406 27405 Face 54881 27288 27289 27405 Face 54882 27406 27527 27526 Face 54883 27405 27406 27526 Face 54884 27527 27653 27652 Face 54885 27526 27527 27652 Face 54886 27653 27784 27783 Face 54887 27652 27653 27783 Face 54888 27784 27915 27914 Face 54889 27783 27784 27914 Face 54890 27915 28047 28046 Face 54891 27914 27915 28046 Face 54892 28047 28184 28183 Face 54893 28046 28047 28183 Face 54894 28319 28318 28183 Face 54895 28184 28319 28183 Face 54896 28453 28452 28318 Face 54897 28319 28453 28318 Face 54898 28590 28589 28452 Face 54899 28453 28590 28452 Face 54900 28590 28718 28717 Face 54901 28589 28590 28717 Face 54902 28718 28845 28844 Face 54903 28717 28718 28844 Face 54904 28845 28970 28969 Face 54905 28844 28845 28969 Face 54906 29101 29100 28969 Face 54907 28970 29101 28969 Face 54908 29231 29230 29100 Face 54909 29101 29231 29100 Face 54910 29231 29362 29361 Face 54911 29230 29231 29361 Face 54912 29362 29493 29492 Face 54913 29361 29362 29492 Face 54914 29493 29625 29624 Face 54915 29492 29493 29624 Face 54916 29625 29757 29756 Face 54917 29624 29625 29756 Face 54918 22510 23182 23378 Face 54919 33665 33540 6680 Face 54920 27752 29328 18355 Face 54921 23508 22753 22752 Face 54922 28025 28696 6640 Face 54923 26586 11975 26899 Face 54924 18715 18665 2292 Face 54925 25953 18890 17856 Face 54926 28256 28255 28118 Face 54927 6900 18715 6799 Face 54928 23424 23423 6278 Face 54929 27986 27985 27853 Face 54930 29692 29691 29559 Face 54931 26988 24506 24367 Face 54932 11975 26586 23585 Face 54933 28543 26299 26902 Face 54934 23283 24153 24154 Face 54935 20553 34667 21181 Face 54936 33086 33085 32951 Face 54937 34008 34007 33881 Face 54938 34740 2037 18459 Face 54939 20614 25420 25419 Face 54940 29285 29286 29416 Face 54941 27872 27878 28300 Face 54942 2556 2429 25189 Face 54943 29428 29429 29559 Face 54944 25279 11998 25189 Face 54945 19461 19542 24013 Face 54946 18664 18975 17355 Face 54947 2429 18664 17355 Face 54948 23416 28418 23496 Face 54949 23627 26086 25976 Face 54950 29290 29291 29421 Face 54951 28772 28773 28898 Face 54952 26195 26313 26312 Face 54953 26194 26195 26312 Face 54954 26195 26196 26313 Face 54955 26314 26431 26430 Face 54956 27716 27715 27588 Face 54957 27589 27716 27588 Face 54958 28295 6528 6397 Face 54959 6397 26816 28558 Face 54960 27750 19194 27748 Face 54961 23573 22704 17197 Face 54962 27516 27566 29276 Face 54963 29279 18864 18865 Face 54964 25865 25866 25976 Face 54965 27768 27767 23879 Face 54966 28791 28790 28661 Face 54967 28662 28791 28661 Face 54968 28102 28239 28238 Face 54969 27050 23621 23544 Face 54970 33742 33868 33741 Face 54971 25551 25558 26451 Face 54972 18660 7022 18661 Face 54973 30348 30415 30347 Face 54974 27770 18971 16957 Face 54975 18362 2817 18349 Face 54976 29737 29734 2681 Face 54977 24417 29757 21358 Face 54978 25432 25433 25496 Face 54979 25497 25589 25588 Face 54980 25496 25497 25588 Face 54981 25589 25690 25689 Face 54982 25588 25589 25689 Face 54983 25690 25801 25800 Face 54984 25689 25690 25800 Face 54985 25801 25910 25909 Face 54986 25800 25801 25909 Face 54987 25910 26022 26021 Face 54988 25909 25910 26021 Face 54989 26022 26135 26134 Face 54990 26021 26022 26134 Face 54991 26135 26253 26252 Face 54992 26134 26135 26252 Face 54993 26253 26371 26370 Face 54994 26252 26253 26370 Face 54995 26371 26489 26488 Face 54996 26370 26371 26488 Face 54997 26489 26604 26603 Face 54998 26488 26489 26603 Face 54999 26604 26719 26718 Face 55000 26603 26604 26718 Face 55001 26719 26833 26832 Face 55002 26718 26719 26832 Face 55003 26833 26948 26947 Face 55004 26832 26833 26947 Face 55005 26948 27062 27061 Face 55006 26947 26948 27061 Face 55007 27178 27177 27061 Face 55008 27062 27178 27061 Face 55009 27178 27290 27289 Face 55010 27177 27178 27289 Face 55011 27290 27407 27406 Face 55012 27289 27290 27406 Face 55013 27407 27528 27527 Face 55014 27406 27407 27527 Face 55015 27528 27654 27653 Face 55016 27527 27528 27653 Face 55017 27654 27785 27784 Face 55018 27653 27654 27784 Face 55019 27785 27916 27915 Face 55020 27784 27785 27915 Face 55021 27916 28048 28047 Face 55022 27915 27916 28047 Face 55023 28048 28185 28184 Face 55024 28047 28048 28184 Face 55025 28320 28319 28184 Face 55026 28185 28320 28184 Face 55027 28454 28453 28319 Face 55028 28320 28454 28319 Face 55029 28591 28590 28453 Face 55030 28454 28591 28453 Face 55031 28591 28719 28718 Face 55032 28590 28591 28718 Face 55033 28719 28846 28845 Face 55034 28718 28719 28845 Face 55035 28846 28971 28970 Face 55036 28845 28846 28970 Face 55037 29102 29101 28970 Face 55038 28971 29102 28970 Face 55039 29232 29231 29101 Face 55040 29102 29232 29101 Face 55041 29363 29362 29231 Face 55042 29232 29363 29231 Face 55043 29363 29494 29493 Face 55044 29362 29363 29493 Face 55045 29494 29626 29625 Face 55046 29493 29494 29625 Face 55047 29626 29758 29757 Face 55048 29625 29626 29757 Face 55049 33868 33867 33741 Face 55050 29758 21358 29757 Face 55051 26331 25555 27882 Face 55052 29457 28812 23171 Face 55053 25555 25652 26441 Face 55054 25652 18546 26441 Face 55055 18546 25652 27893 Face 55056 25652 18259 27893 Face 55057 18259 28812 27893 Face 55058 28812 28813 27893 Face 55059 28813 28812 29457 Face 55060 18664 18560 23895 Face 55061 28129 25138 23851 Face 55062 27245 25953 17856 Face 55063 19089 25569 29749 Face 55064 18543 18355 19202 Face 55065 24349 24348 24546 Face 55066 26932 27768 20758 Face 55067 5021 4889 5022 Face 55068 20848 20760 20849 Face 55069 26874 18552 18768 Face 55070 28130 28765 19091 Face 55071 18256 21762 26648 Face 55072 6634 11010 20614 Face 55073 33617 33616 33489 Face 55074 34645 28017 34741 Face 55075 23701 24471 24216 Face 55076 24740 27144 24739 Face 55077 18560 18664 2429 Face 55078 2556 18560 2429 Face 55079 25004 26237 11496 Face 55080 29061 29060 21517 Face 55081 28899 29026 29025 Face 55082 21992 21896 21993 Face 55083 26079 26195 26194 Face 55084 25648 19374 19294 Face 55085 26313 26314 26430 Face 55086 26431 26549 26548 Face 55087 27845 27844 27715 Face 55088 27716 27845 27715 Face 55089 25794 28824 6528 Face 55090 28295 25794 6528 Face 55091 28569 27750 25654 Face 55092 19194 26092 27748 Face 55093 26219 26236 27516 Face 55094 27566 29279 29276 Face 55095 25758 25759 25865 Face 55096 32821 32953 32820 Face 55097 28917 28916 28790 Face 55098 28791 28917 28790 Face 55099 20118 34690 34800 Face 55100 29714 26297 20625 Face 55101 13678 10306 10187 Face 55102 21735 32201 21638 Face 55103 21378 21009 21887 Face 55104 29653 29654 24761 Face 55105 16711 28889 28698 Face 55106 20020 20019 19942 Face 55107 18971 29737 2681 Face 55108 4621 27635 29734 Face 55109 27474 27354 20517 Face 55110 25288 29216 29217 Face 55111 25498 25590 25589 Face 55112 25497 25498 25589 Face 55113 25590 25691 25690 Face 55114 25589 25590 25690 Face 55115 25691 25802 25801 Face 55116 25690 25691 25801 Face 55117 25802 25911 25910 Face 55118 25801 25802 25910 Face 55119 25911 26023 26022 Face 55120 25910 25911 26022 Face 55121 26023 26136 26135 Face 55122 26022 26023 26135 Face 55123 26136 26254 26253 Face 55124 26135 26136 26253 Face 55125 26254 26372 26371 Face 55126 26253 26254 26371 Face 55127 26372 26490 26489 Face 55128 26371 26372 26489 Face 55129 26490 26605 26604 Face 55130 26489 26490 26604 Face 55131 26605 26720 26719 Face 55132 26604 26605 26719 Face 55133 26720 26834 26833 Face 55134 26719 26720 26833 Face 55135 26834 26949 26948 Face 55136 26833 26834 26948 Face 55137 27063 27062 26948 Face 55138 26949 27063 26948 Face 55139 27179 27178 27062 Face 55140 27063 27179 27062 Face 55141 27179 27291 27290 Face 55142 27178 27179 27290 Face 55143 27291 27408 27407 Face 55144 27290 27291 27407 Face 55145 27408 27529 27528 Face 55146 27407 27408 27528 Face 55147 27529 27655 27654 Face 55148 27528 27529 27654 Face 55149 27655 27786 27785 Face 55150 27654 27655 27785 Face 55151 27786 27917 27916 Face 55152 27785 27786 27916 Face 55153 28049 28048 27916 Face 55154 27917 28049 27916 Face 55155 28049 28186 28185 Face 55156 28048 28049 28185 Face 55157 28321 28320 28185 Face 55158 28186 28321 28185 Face 55159 28455 28454 28320 Face 55160 28321 28455 28320 Face 55161 28592 28591 28454 Face 55162 28455 28592 28454 Face 55163 28592 28720 28719 Face 55164 28591 28592 28719 Face 55165 28720 28847 28846 Face 55166 28719 28720 28846 Face 55167 28847 28972 28971 Face 55168 28846 28847 28971 Face 55169 29103 29102 28971 Face 55170 28972 29103 28971 Face 55171 29233 29232 29102 Face 55172 29103 29233 29102 Face 55173 29364 29363 29232 Face 55174 29233 29364 29232 Face 55175 29364 29495 29494 Face 55176 29363 29364 29494 Face 55177 29495 29627 29626 Face 55178 29494 29495 29626 Face 55179 29627 29759 29758 Face 55180 29626 29627 29758 Face 55181 21262 21358 29758 Face 55182 29759 21262 29758 Face 55183 27147 24599 27146 Face 55184 22677 19769 19770 Face 55185 26776 26890 26775 Face 55186 24681 24871 20698 Face 55187 26661 26776 26660 Face 55188 26890 26889 26775 Face 55189 26545 26661 26544 Face 55190 26776 26775 26660 Face 55191 26427 26545 26426 Face 55192 26661 26660 26544 Face 55193 26310 26427 26426 Face 55194 26309 26310 26426 Face 55195 27000 27001 27116 Face 55196 26545 26544 26426 Face 55197 29146 26931 20758 Face 55198 4217 13581 23996 Face 55199 17713 9642 12002 Face 55200 29786 24094 22916 Face 55201 7134 6701 6634 Face 55202 25496 25587 25495 Face 55203 25856 34699 11358 Face 55204 11010 20704 20614 Face 55205 24158 27272 25561 Face 55206 19307 19306 25773 Face 55207 6599 2556 6283 Face 55208 8575 6599 6283 Face 55209 18871 18560 2556 Face 55210 6599 18871 2556 Face 55211 34545 34471 34764 Face 55212 24712 24711 15861 Face 55213 15716 24712 15860 Face 55214 25160 29217 29216 Face 55215 22823 21983 25657 Face 55216 27837 27838 27969 Face 55217 26430 26431 26548 Face 55218 26665 26664 26548 Face 55219 27589 27588 27468 Face 55220 27469 27589 27468 Face 55221 29193 21076 29190 Face 55222 19147 6594 19087 Face 55223 27750 27748 25654 Face 55224 1867 20978 21266 Face 55225 25469 25474 26219 Face 55226 26236 27566 27516 Face 55227 6163 18872 20874 Face 55228 25759 25866 25865 Face 55229 29044 29043 28916 Face 55230 28917 29044 28916 Face 55231 28508 28509 28643 Face 55232 28431 28762 27869 Face 55233 22991 25883 16966 Face 55234 10274 10397 4196 Face 55235 29172 29302 29171 Face 55236 29172 29171 29040 Face 55237 28302 20148 29754 Face 55238 25418 25419 26177 Face 55239 29737 4621 29734 Face 55240 27615 27487 27635 Face 55241 11467 12998 11604 Face 55242 27698 6034 21087 Face 55243 25499 25591 25590 Face 55244 25498 25499 25590 Face 55245 25591 25692 25691 Face 55246 25590 25591 25691 Face 55247 25692 25803 25802 Face 55248 25691 25692 25802 Face 55249 25803 25912 25911 Face 55250 25802 25803 25911 Face 55251 25912 26024 26023 Face 55252 25911 25912 26023 Face 55253 26024 26137 26136 Face 55254 26023 26024 26136 Face 55255 26137 26255 26254 Face 55256 26136 26137 26254 Face 55257 26255 26373 26372 Face 55258 26254 26255 26372 Face 55259 26373 26491 26490 Face 55260 26372 26373 26490 Face 55261 26491 26606 26605 Face 55262 26490 26491 26605 Face 55263 26606 26721 26720 Face 55264 26605 26606 26720 Face 55265 26721 26835 26834 Face 55266 26720 26721 26834 Face 55267 26835 26950 26949 Face 55268 26834 26835 26949 Face 55269 26950 27064 27063 Face 55270 26949 26950 27063 Face 55271 27064 27180 27179 Face 55272 27063 27064 27179 Face 55273 27180 27292 27291 Face 55274 27179 27180 27291 Face 55275 27292 27409 27408 Face 55276 27291 27292 27408 Face 55277 27409 27530 27529 Face 55278 27408 27409 27529 Face 55279 27530 27656 27655 Face 55280 27529 27530 27655 Face 55281 27787 27786 27655 Face 55282 27656 27787 27655 Face 55283 27787 27918 27917 Face 55284 27786 27787 27917 Face 55285 27918 28050 28049 Face 55286 27917 27918 28049 Face 55287 28050 28187 28186 Face 55288 28049 28050 28186 Face 55289 28322 28321 28186 Face 55290 28187 28322 28186 Face 55291 28322 28456 28455 Face 55292 28321 28322 28455 Face 55293 28593 28592 28455 Face 55294 28456 28593 28455 Face 55295 28593 28721 28720 Face 55296 28592 28593 28720 Face 55297 28721 28848 28847 Face 55298 28720 28721 28847 Face 55299 28848 28973 28972 Face 55300 28847 28848 28972 Face 55301 29104 29103 28972 Face 55302 28973 29104 28972 Face 55303 29234 29233 29103 Face 55304 29104 29234 29103 Face 55305 29365 29364 29233 Face 55306 29234 29365 29233 Face 55307 29365 29496 29495 Face 55308 29364 29365 29495 Face 55309 29496 29628 29627 Face 55310 29495 29496 29627 Face 55311 29628 29760 29759 Face 55312 29627 29628 29759 Face 55313 17857 21262 29759 Face 55314 29760 17857 29759 Face 55315 23679 23195 24998 Face 55316 14762 12976 21358 Face 55317 2068 18588 18692 Face 55318 18488 18588 2068 Face 55319 27972 27971 27839 Face 55320 27711 27840 27710 Face 55321 28105 28104 27971 Face 55322 27840 27972 27839 Face 55323 28242 28241 28104 Face 55324 27972 28105 27971 Face 55325 28376 28375 28241 Face 55326 28105 28242 28104 Face 55327 28511 28510 28375 Face 55328 28242 28376 28241 Face 55329 24234 16708 26087 Face 55330 22145 29458 29484 Face 55331 11250 26105 11251 Face 55332 33491 33618 33490 Face 55333 24246 26071 23212 Face 55334 23196 24559 16708 Face 55335 13158 13159 28574 Face 55336 24918 27610 28009 Face 55337 22891 29089 29090 Face 55338 18354 16708 24558 Face 55339 2816 6599 8575 Face 55340 8940 2816 8575 Face 55341 18652 18871 6599 Face 55342 2816 18652 6599 Face 55343 24712 15861 15860 Face 55344 18652 29614 18871 Face 55345 20792 33178 20793 Face 55346 32828 32960 32827 Face 55347 21796 16964 23379 Face 55348 27342 27343 27461 Face 55349 26549 26665 26548 Face 55350 26780 26779 26664 Face 55351 27469 27468 27349 Face 55352 27350 27469 27349 Face 55353 29596 29730 28824 Face 55354 25794 29596 28824 Face 55355 23167 23223 23222 Face 55356 23267 24679 24562 Face 55357 25475 25550 25469 Face 55358 25474 26236 26219 Face 55359 24613 23279 23982 Face 55360 25657 25759 25758 Face 55361 29175 29174 29043 Face 55362 29044 29175 29043 Face 55363 29155 29156 29285 Face 55364 28669 28668 28533 Face 55365 8575 6283 6591 Face 55366 11019 11018 30314 Face 55367 28498 28141 29463 Face 55368 29347 22145 11775 Face 55369 4621 27615 27635 Face 55370 27159 25643 27487 Face 55371 27615 27159 27487 Face 55372 28546 26323 25643 Face 55373 25435 25500 25499 Face 55374 34364 34509 34327 Face 55375 25500 25592 25591 Face 55376 25499 25500 25591 Face 55377 25592 25693 25692 Face 55378 25591 25592 25692 Face 55379 25693 25804 25803 Face 55380 25692 25693 25803 Face 55381 25913 25912 25803 Face 55382 25804 25913 25803 Face 55383 26025 26024 25912 Face 55384 25913 26025 25912 Face 55385 26025 26138 26137 Face 55386 26024 26025 26137 Face 55387 26138 26256 26255 Face 55388 26137 26138 26255 Face 55389 26256 26374 26373 Face 55390 26255 26256 26373 Face 55391 26374 26492 26491 Face 55392 26373 26374 26491 Face 55393 26492 26607 26606 Face 55394 26491 26492 26606 Face 55395 26607 26722 26721 Face 55396 26606 26607 26721 Face 55397 26722 26836 26835 Face 55398 26721 26722 26835 Face 55399 26836 26951 26950 Face 55400 26835 26836 26950 Face 55401 26951 27065 27064 Face 55402 26950 26951 27064 Face 55403 27065 27181 27180 Face 55404 27064 27065 27180 Face 55405 27181 27293 27292 Face 55406 27180 27181 27292 Face 55407 27293 27410 27409 Face 55408 27292 27293 27409 Face 55409 27410 27531 27530 Face 55410 27409 27410 27530 Face 55411 27531 27657 27656 Face 55412 27530 27531 27656 Face 55413 27788 27787 27656 Face 55414 27657 27788 27656 Face 55415 27919 27918 27787 Face 55416 27788 27919 27787 Face 55417 27919 28051 28050 Face 55418 27918 27919 28050 Face 55419 28051 28188 28187 Face 55420 28050 28051 28187 Face 55421 28188 28323 28322 Face 55422 28187 28188 28322 Face 55423 28323 28457 28456 Face 55424 28322 28323 28456 Face 55425 28457 28594 28593 Face 55426 28456 28457 28593 Face 55427 28594 28722 28721 Face 55428 28593 28594 28721 Face 55429 28849 28848 28721 Face 55430 28722 28849 28721 Face 55431 28974 28973 28848 Face 55432 28849 28974 28848 Face 55433 29105 29104 28973 Face 55434 28974 29105 28973 Face 55435 29235 29234 29104 Face 55436 29105 29235 29104 Face 55437 29366 29365 29234 Face 55438 29235 29366 29234 Face 55439 29497 29496 29365 Face 55440 29366 29497 29365 Face 55441 29497 29629 29628 Face 55442 29496 29497 29628 Face 55443 29629 29761 29760 Face 55444 29628 29629 29760 Face 55445 28031 20146 23123 Face 55446 29345 25023 29346 Face 55447 12178 21380 21753 Face 55448 20795 21356 21355 Face 55449 6578 11010 6701 Face 55450 11037 6578 6701 Face 55451 6526 11037 6701 Face 55452 6402 6526 6701 Face 55453 6526 6402 17944 Face 55454 18764 6526 17944 Face 55455 18764 17944 19315 Face 55456 14202 18764 19315 Face 55457 14202 19315 2814 Face 55458 21643 14202 2814 Face 55459 29682 29683 29813 Face 55460 29814 21643 2814 Face 55461 28689 26902 18444 Face 55462 29813 29814 2814 Face 55463 21009 28814 28420 Face 55464 23635 27642 27772 Face 55465 25981 23954 23953 Face 55466 23922 33011 2693 Face 55467 23954 25981 25873 Face 55468 25021 19360 23742 Face 55469 31214 31213 31114 Face 55470 24559 24558 16708 Face 55471 21740 2816 8940 Face 55472 225 21740 8940 Face 55473 18548 18652 2816 Face 55474 21740 18548 2816 Face 55475 18254 29614 18652 Face 55476 18548 18254 18652 Face 55477 27877 27875 2908 Face 55478 26933 11671 25416 Face 55479 16871 23340 27162 Face 55480 27233 27343 27342 Face 55481 26665 26780 26664 Face 55482 26894 26893 26779 Face 55483 27124 27240 27123 Face 55484 27350 27349 27239 Face 55485 17288 29078 29730 Face 55486 29596 17288 29730 Face 55487 2810 18928 28285 Face 55488 26567 29462 26907 Face 55489 25550 25475 6582 Face 55490 6583 25550 6582 Face 55491 11508 26244 26243 Face 55492 27136 28945 27753 Face 55493 29305 29304 29174 Face 55494 29175 29305 29174 Face 55495 6524 7134 7028 Face 55496 23367 23464 18732 Face 55497 12982 18327 7124 Face 55498 20987 26446 26986 Face 55499 28684 28683 18968 Face 55500 17857 20606 24419 Face 55501 27159 28546 25643 Face 55502 27250 11106 26323 Face 55503 28546 27250 26323 Face 55504 25436 25501 25500 Face 55505 25435 25436 25500 Face 55506 25501 25593 25592 Face 55507 25500 25501 25592 Face 55508 25593 25694 25693 Face 55509 25592 25593 25693 Face 55510 25694 25805 25804 Face 55511 25693 25694 25804 Face 55512 25805 25914 25913 Face 55513 25804 25805 25913 Face 55514 25914 26026 26025 Face 55515 25913 25914 26025 Face 55516 26026 26139 26138 Face 55517 26025 26026 26138 Face 55518 26139 26257 26256 Face 55519 26138 26139 26256 Face 55520 26257 26375 26374 Face 55521 26256 26257 26374 Face 55522 26375 26493 26492 Face 55523 26374 26375 26492 Face 55524 26493 26608 26607 Face 55525 26492 26493 26607 Face 55526 26608 26723 26722 Face 55527 26607 26608 26722 Face 55528 26723 26837 26836 Face 55529 26722 26723 26836 Face 55530 26837 26952 26951 Face 55531 26836 26837 26951 Face 55532 26952 27066 27065 Face 55533 26951 26952 27065 Face 55534 27182 27181 27065 Face 55535 27066 27182 27065 Face 55536 27182 27294 27293 Face 55537 27181 27182 27293 Face 55538 27294 27411 27410 Face 55539 27293 27294 27410 Face 55540 27411 27532 27531 Face 55541 27410 27411 27531 Face 55542 27532 27658 27657 Face 55543 27531 27532 27657 Face 55544 27789 27788 27657 Face 55545 27658 27789 27657 Face 55546 27920 27919 27788 Face 55547 27789 27920 27788 Face 55548 27920 28052 28051 Face 55549 27919 27920 28051 Face 55550 28052 28189 28188 Face 55551 28051 28052 28188 Face 55552 28189 28324 28323 Face 55553 28188 28189 28323 Face 55554 28324 28458 28457 Face 55555 28323 28324 28457 Face 55556 28458 28595 28594 Face 55557 28457 28458 28594 Face 55558 28595 28723 28722 Face 55559 28594 28595 28722 Face 55560 28850 28849 28722 Face 55561 28723 28850 28722 Face 55562 28975 28974 28849 Face 55563 28850 28975 28849 Face 55564 29106 29105 28974 Face 55565 28975 29106 28974 Face 55566 29236 29235 29105 Face 55567 29106 29236 29105 Face 55568 29367 29366 29235 Face 55569 29236 29367 29235 Face 55570 29498 29497 29366 Face 55571 29367 29498 29366 Face 55572 29498 29630 29629 Face 55573 29497 29498 29629 Face 55574 29630 29762 29761 Face 55575 29629 29630 29761 Face 55576 12609 25033 12610 Face 55577 2914 23576 23659 Face 55578 33742 33741 33616 Face 55579 33617 33742 33616 Face 55580 9314 34831 34773 Face 55581 13949 24251 11453 Face 55582 25632 25732 24205 Face 55583 18658 5387 18765 Face 55584 7024 7133 5388 Face 55585 28641 28642 28770 Face 55586 28771 28897 28896 Face 55587 429 18799 28633 Face 55588 10715 27264 25644 Face 55589 27699 29407 29404 Face 55590 15325 1867 19187 Face 55591 29680 29811 29679 Face 55592 29560 29692 29559 Face 55593 16956 2941 2942 Face 55594 32952 33086 32951 Face 55595 24476 23281 23379 Face 55596 25874 23954 25873 Face 55597 28418 28404 23496 Face 55598 28404 18889 2558 Face 55599 28365 28404 2558 Face 55600 10346 225 2558 Face 55601 18889 10346 2558 Face 55602 21636 21740 225 Face 55603 10346 21636 225 Face 55604 18650 18548 21740 Face 55605 21636 18650 21740 Face 55606 26704 18254 18548 Face 55607 18650 26704 18548 Face 55608 20017 20099 22990 Face 55609 19535 25222 22872 Face 55610 23575 23433 23492 Face 55611 19535 19454 25222 Face 55612 26780 26894 26779 Face 55613 12267 11358 34699 Face 55614 27240 27350 27239 Face 55615 27007 27006 26893 Face 55616 2810 27266 29078 Face 55617 27124 27123 27007 Face 55618 28285 26567 26907 Face 55619 17288 2810 29078 Face 55620 6704 6583 6703 Face 55621 18928 26567 28285 Face 55622 27148 27149 23865 Face 55623 25550 25474 25469 Face 55624 29436 29435 29304 Face 55625 26205 26763 10715 Face 55626 26471 27829 27827 Face 55627 29305 29436 29304 Face 55628 29460 5513 7014 Face 55629 32911 20700 32780 Face 55630 29178 29308 29177 Face 55631 29459 29460 7014 Face 55632 27163 29622 11106 Face 55633 29718 18541 29540 Face 55634 27250 27163 11106 Face 55635 25404 25437 25436 Face 55636 25437 25502 25501 Face 55637 25436 25437 25501 Face 55638 25502 25594 25593 Face 55639 25501 25502 25593 Face 55640 25594 25695 25694 Face 55641 25593 25594 25694 Face 55642 25695 25806 25805 Face 55643 25694 25695 25805 Face 55644 25915 25914 25805 Face 55645 25806 25915 25805 Face 55646 26027 26026 25914 Face 55647 25915 26027 25914 Face 55648 26027 26140 26139 Face 55649 26026 26027 26139 Face 55650 26140 26258 26257 Face 55651 26139 26140 26257 Face 55652 26258 26376 26375 Face 55653 26257 26258 26375 Face 55654 26376 26494 26493 Face 55655 26375 26376 26493 Face 55656 26494 26609 26608 Face 55657 26493 26494 26608 Face 55658 26609 26724 26723 Face 55659 26608 26609 26723 Face 55660 26724 26838 26837 Face 55661 26723 26724 26837 Face 55662 26838 26953 26952 Face 55663 26837 26838 26952 Face 55664 26953 27067 27066 Face 55665 26952 26953 27066 Face 55666 27183 27182 27066 Face 55667 27067 27183 27066 Face 55668 27183 27295 27294 Face 55669 27182 27183 27294 Face 55670 27295 27412 27411 Face 55671 27294 27295 27411 Face 55672 27412 27533 27532 Face 55673 27411 27412 27532 Face 55674 27533 27659 27658 Face 55675 27532 27533 27658 Face 55676 27790 27789 27658 Face 55677 27659 27790 27658 Face 55678 27790 27921 27920 Face 55679 27789 27790 27920 Face 55680 27921 28053 28052 Face 55681 27920 27921 28052 Face 55682 28053 28190 28189 Face 55683 28052 28053 28189 Face 55684 28190 28325 28324 Face 55685 28189 28190 28324 Face 55686 28325 28459 28458 Face 55687 28324 28325 28458 Face 55688 28459 28596 28595 Face 55689 28458 28459 28595 Face 55690 28596 28724 28723 Face 55691 28595 28596 28723 Face 55692 28851 28850 28723 Face 55693 28724 28851 28723 Face 55694 28976 28975 28850 Face 55695 28851 28976 28850 Face 55696 29107 29106 28975 Face 55697 28976 29107 28975 Face 55698 29237 29236 29106 Face 55699 29107 29237 29106 Face 55700 29368 29367 29236 Face 55701 29237 29368 29236 Face 55702 29499 29498 29367 Face 55703 29368 29499 29367 Face 55704 29499 29631 29630 Face 55705 29498 29499 29630 Face 55706 29631 29763 29762 Face 55707 29630 29631 29762 Face 55708 20606 29761 29762 Face 55709 30408 30479 30407 Face 55710 26428 26546 26427 Face 55711 26662 26661 26545 Face 55712 26310 26311 26427 Face 55713 26546 26545 26427 Face 55714 26192 26193 26310 Face 55715 26311 26428 26427 Face 55716 21675 23226 23283 Face 55717 26193 26311 26310 Face 55718 29540 20800 28545 Face 55719 26078 26193 26192 Face 55720 18890 28164 28696 Face 55721 11007 27355 26307 Face 55722 27769 7013 27356 Face 55723 28164 29483 28696 Face 55724 21072 6279 29207 Face 55725 29751 21072 29207 Face 55726 24134 24200 28226 Face 55727 28024 28144 27638 Face 55728 25553 23069 27997 Face 55729 28428 28418 23416 Face 55730 28418 13978 18889 Face 55731 28404 28418 18889 Face 55732 16865 10346 18889 Face 55733 13978 16865 18889 Face 55734 17973 21636 10346 Face 55735 16865 17973 10346 Face 55736 18649 18650 21636 Face 55737 17973 18649 21636 Face 55738 25742 26704 18650 Face 55739 18649 25742 18650 Face 55740 25561 27272 26704 Face 55741 25742 25561 26704 Face 55742 12233 24511 27327 Face 55743 11744 11665 11745 Face 55744 26121 26237 26120 Face 55745 26471 26474 27829 Face 55746 26894 27007 26893 Face 55747 27123 27122 27006 Face 55748 27008 27124 27007 Face 55749 27240 27239 27123 Face 55750 2810 28285 29064 Face 55751 27271 18960 25334 Face 55752 29729 18768 29596 Face 55753 18928 2810 17288 Face 55754 18960 27271 18416 Face 55755 21056 21057 28267 Face 55756 23802 28270 21452 Face 55757 23183 23125 23111 Face 55758 29567 29566 29435 Face 55759 29436 29567 29435 Face 55760 20626 28436 27130 Face 55761 13734 20316 28937 Face 55762 31700 31699 31585 Face 55763 34679 28227 28362 Face 55764 27730 27859 27729 Face 55765 27991 27990 27858 Face 55766 27163 17103 6712 Face 55767 29622 27163 6712 Face 55768 25438 25437 25404 Face 55769 25438 25503 25502 Face 55770 25437 25438 25502 Face 55771 25503 25595 25594 Face 55772 25502 25503 25594 Face 55773 25595 25696 25695 Face 55774 25594 25595 25695 Face 55775 25696 25807 25806 Face 55776 25695 25696 25806 Face 55777 25807 25916 25915 Face 55778 25806 25807 25915 Face 55779 25916 26028 26027 Face 55780 25915 25916 26027 Face 55781 26028 26141 26140 Face 55782 26027 26028 26140 Face 55783 26141 26259 26258 Face 55784 26140 26141 26258 Face 55785 26259 26377 26376 Face 55786 26258 26259 26376 Face 55787 26377 26495 26494 Face 55788 26376 26377 26494 Face 55789 26495 26610 26609 Face 55790 26494 26495 26609 Face 55791 26610 26725 26724 Face 55792 26609 26610 26724 Face 55793 26725 26839 26838 Face 55794 26724 26725 26838 Face 55795 26839 26954 26953 Face 55796 26838 26839 26953 Face 55797 26954 27068 27067 Face 55798 26953 26954 27067 Face 55799 27068 27184 27183 Face 55800 27067 27068 27183 Face 55801 27184 27296 27295 Face 55802 27183 27184 27295 Face 55803 27296 27413 27412 Face 55804 27295 27296 27412 Face 55805 27413 27534 27533 Face 55806 27412 27413 27533 Face 55807 27534 27660 27659 Face 55808 27533 27534 27659 Face 55809 27791 27790 27659 Face 55810 27660 27791 27659 Face 55811 27791 27922 27921 Face 55812 27790 27791 27921 Face 55813 27922 28054 28053 Face 55814 27921 27922 28053 Face 55815 28054 28191 28190 Face 55816 28053 28054 28190 Face 55817 28191 28326 28325 Face 55818 28190 28191 28325 Face 55819 28326 28460 28459 Face 55820 28325 28326 28459 Face 55821 28460 28597 28596 Face 55822 28459 28460 28596 Face 55823 28597 28725 28724 Face 55824 28596 28597 28724 Face 55825 28852 28851 28724 Face 55826 28725 28852 28724 Face 55827 28977 28976 28851 Face 55828 28852 28977 28851 Face 55829 28977 29108 29107 Face 55830 28976 28977 29107 Face 55831 29238 29237 29107 Face 55832 29108 29238 29107 Face 55833 29369 29368 29237 Face 55834 29238 29369 29237 Face 55835 29500 29499 29368 Face 55836 29369 29500 29368 Face 55837 29500 29632 29631 Face 55838 29499 29500 29631 Face 55839 29632 29764 29763 Face 55840 29631 29632 29763 Face 55841 34345 12918 34593 Face 55842 22709 24287 23148 Face 55843 27969 28102 28101 Face 55844 2043 2042 18371 Face 55845 26777 26776 26661 Face 55846 26662 26777 26661 Face 55847 26777 26891 26776 Face 55848 26891 26890 26776 Face 55849 26891 27004 26890 Face 55850 27004 27003 26890 Face 55851 27004 27120 27003 Face 55852 27120 27119 27003 Face 55853 27120 27236 27119 Face 55854 27236 27235 27119 Face 55855 27236 27346 27235 Face 55856 27346 27345 27235 Face 55857 27346 27465 27345 Face 55858 27465 27464 27345 Face 55859 12550 34183 11531 Face 55860 27585 27584 27464 Face 55861 30626 30724 23631 Face 55862 23496 28404 28365 Face 55863 6598 13978 28418 Face 55864 28428 6598 28418 Face 55865 224 16865 13978 Face 55866 6598 224 13978 Face 55867 9958 17973 16865 Face 55868 224 9958 16865 Face 55869 18554 18649 17973 Face 55870 9958 18554 17973 Face 55871 18554 25544 25742 Face 55872 18649 18554 25742 Face 55873 25544 22782 25742 Face 55874 22683 22782 23157 Face 55875 17463 19681 23246 Face 55876 29795 25014 29794 Face 55877 19202 11934 18543 Face 55878 28526 28525 28390 Face 55879 27007 27123 27006 Face 55880 27715 27714 27587 Face 55881 26550 26666 26549 Face 55882 26781 26780 26665 Face 55883 27266 2810 29064 Face 55884 28285 26907 25743 Face 55885 18768 17288 29596 Face 55886 18768 18928 17288 Face 55887 21320 23674 21319 Face 55888 15968 550 23159 Face 55889 28018 20794 18450 Face 55890 18450 29077 18612 Face 55891 29699 29698 29566 Face 55892 29567 29699 29566 Face 55893 28088 20626 28026 Face 55894 24393 23865 24394 Face 55895 29047 29178 29046 Face 55896 29308 29307 29177 Face 55897 34592 34478 34437 Face 55898 6596 7124 29711 Face 55899 17103 29468 29469 Face 55900 6712 17103 29469 Face 55901 25439 25504 25503 Face 55902 25438 25439 25503 Face 55903 25504 25596 25595 Face 55904 25503 25504 25595 Face 55905 25697 25696 25595 Face 55906 25596 25697 25595 Face 55907 25697 25808 25807 Face 55908 25696 25697 25807 Face 55909 25808 25917 25916 Face 55910 25807 25808 25916 Face 55911 25917 26029 26028 Face 55912 25916 25917 26028 Face 55913 26029 26142 26141 Face 55914 26028 26029 26141 Face 55915 26142 26260 26259 Face 55916 26141 26142 26259 Face 55917 26260 26378 26377 Face 55918 26259 26260 26377 Face 55919 26378 26496 26495 Face 55920 26377 26378 26495 Face 55921 26611 26610 26495 Face 55922 26496 26611 26495 Face 55923 26726 26725 26610 Face 55924 26611 26726 26610 Face 55925 26840 26839 26725 Face 55926 26726 26840 26725 Face 55927 26955 26954 26839 Face 55928 26840 26955 26839 Face 55929 27069 27068 26954 Face 55930 26955 27069 26954 Face 55931 27069 27185 27184 Face 55932 27068 27069 27184 Face 55933 27185 27297 27296 Face 55934 27184 27185 27296 Face 55935 27297 27414 27413 Face 55936 27296 27297 27413 Face 55937 27414 27535 27534 Face 55938 27413 27414 27534 Face 55939 27535 27661 27660 Face 55940 27534 27535 27660 Face 55941 27792 27791 27660 Face 55942 27661 27792 27660 Face 55943 27792 27923 27922 Face 55944 27791 27792 27922 Face 55945 27923 28055 28054 Face 55946 27922 27923 28054 Face 55947 28055 28192 28191 Face 55948 28054 28055 28191 Face 55949 28192 28327 28326 Face 55950 28191 28192 28326 Face 55951 28327 28461 28460 Face 55952 28326 28327 28460 Face 55953 28461 28598 28597 Face 55954 28460 28461 28597 Face 55955 28726 28725 28597 Face 55956 28598 28726 28597 Face 55957 28853 28852 28725 Face 55958 28726 28853 28725 Face 55959 28978 28977 28852 Face 55960 28853 28978 28852 Face 55961 29109 29108 28977 Face 55962 28978 29109 28977 Face 55963 29109 29239 29238 Face 55964 29108 29109 29238 Face 55965 29370 29369 29238 Face 55966 29239 29370 29238 Face 55967 29501 29500 29369 Face 55968 29370 29501 29369 Face 55969 29501 29633 29632 Face 55970 29500 29501 29632 Face 55971 29633 29765 29764 Face 55972 29632 29633 29764 Face 55973 10225 16188 27355 Face 55974 29765 6600 29764 Face 55975 22760 21603 21602 Face 55976 6600 21236 29764 Face 55977 25653 28636 17804 Face 55978 20847 20988 25315 Face 55979 16956 6654 29691 Face 55980 28372 28373 28507 Face 55981 19188 15325 19187 Face 55982 11167 7028 6588 Face 55983 19377 18510 26338 Face 55984 28634 28498 25644 Face 55985 28022 27384 16717 Face 55986 30098 30160 30159 Face 55987 29078 18987 29731 Face 55988 26429 26547 26428 Face 55989 22864 23879 24750 Face 55990 33694 20973 33693 Face 55991 23747 25871 23672 Face 55992 30367 30366 30299 Face 55993 29654 29786 22916 Face 55994 24920 27740 24919 Face 55995 6679 6598 28428 Face 55996 28438 6679 28428 Face 55997 20618 224 6598 Face 55998 6679 20618 6598 Face 55999 20618 6527 9958 Face 56000 224 20618 9958 Face 56001 6527 18557 18554 Face 56002 9958 6527 18554 Face 56003 18557 27445 25544 Face 56004 18554 18557 25544 Face 56005 24613 18664 23895 Face 56006 13065 13159 13064 Face 56007 28497 28540 21228 Face 56008 20517 27354 20430 Face 56009 27863 29470 29461 Face 56010 28683 14088 2683 Face 56011 27588 27587 27467 Face 56012 27468 27588 27467 Face 56013 26666 26781 26665 Face 56014 26895 26894 26780 Face 56015 29064 28285 25743 Face 56016 20750 20838 21563 Face 56017 18349 16673 28295 Face 56018 29729 29596 25794 Face 56019 25199 25060 25061 Face 56020 29723 15154 12891 Face 56021 28947 20794 28018 Face 56022 29736 28947 28018 Face 56023 6796 16687 29698 Face 56024 18243 2421 2422 Face 56025 28088 28026 27494 Face 56026 27751 28088 27494 Face 56027 29726 29718 18193 Face 56028 29570 29569 29438 Face 56029 30627 30626 24620 Face 56030 23148 20606 29762 Face 56031 29468 27039 25790 Face 56032 29469 29468 25790 Face 56033 25440 25505 25504 Face 56034 25439 25440 25504 Face 56035 25505 25597 25596 Face 56036 25504 25505 25596 Face 56037 25698 25697 25596 Face 56038 25597 25698 25596 Face 56039 25698 25809 25808 Face 56040 25697 25698 25808 Face 56041 25809 25918 25917 Face 56042 25808 25809 25917 Face 56043 25918 26030 26029 Face 56044 25917 25918 26029 Face 56045 26030 26143 26142 Face 56046 26029 26030 26142 Face 56047 26143 26261 26260 Face 56048 26142 26143 26260 Face 56049 26261 26379 26378 Face 56050 26260 26261 26378 Face 56051 26379 26497 26496 Face 56052 26378 26379 26496 Face 56053 26497 26612 26611 Face 56054 26496 26497 26611 Face 56055 26727 26726 26611 Face 56056 26612 26727 26611 Face 56057 26841 26840 26726 Face 56058 26727 26841 26726 Face 56059 26841 26956 26955 Face 56060 26840 26841 26955 Face 56061 26956 27070 27069 Face 56062 26955 26956 27069 Face 56063 27070 27186 27185 Face 56064 27069 27070 27185 Face 56065 27186 27298 27297 Face 56066 27185 27186 27297 Face 56067 27298 27415 27414 Face 56068 27297 27298 27414 Face 56069 27415 27536 27535 Face 56070 27414 27415 27535 Face 56071 27536 27662 27661 Face 56072 27535 27536 27661 Face 56073 27793 27792 27661 Face 56074 27662 27793 27661 Face 56075 27793 27924 27923 Face 56076 27792 27793 27923 Face 56077 27924 28056 28055 Face 56078 27923 27924 28055 Face 56079 28056 28193 28192 Face 56080 28055 28056 28192 Face 56081 28193 28328 28327 Face 56082 28192 28193 28327 Face 56083 28328 28462 28461 Face 56084 28327 28328 28461 Face 56085 28462 28599 28598 Face 56086 28461 28462 28598 Face 56087 28727 28726 28598 Face 56088 28599 28727 28598 Face 56089 28854 28853 28726 Face 56090 28727 28854 28726 Face 56091 28979 28978 28853 Face 56092 28854 28979 28853 Face 56093 29110 29109 28978 Face 56094 28979 29110 28978 Face 56095 29110 29240 29239 Face 56096 29109 29110 29239 Face 56097 29240 29371 29370 Face 56098 29239 29240 29370 Face 56099 29502 29501 29370 Face 56100 29371 29502 29370 Face 56101 29634 29633 29501 Face 56102 29502 29634 29501 Face 56103 29634 29766 29765 Face 56104 29633 29634 29765 Face 56105 13368 6600 29765 Face 56106 29766 13368 29765 Face 56107 2938 2807 6600 Face 56108 13368 2938 6600 Face 56109 25463 25528 25462 Face 56110 26670 20101 20100 Face 56111 28361 11007 25958 Face 56112 25288 29346 29216 Face 56113 26180 29463 19031 Face 56114 29654 22916 24761 Face 56115 28101 28102 28238 Face 56116 28675 28674 28539 Face 56117 30628 30627 25314 Face 56118 6715 27165 25567 Face 56119 30535 30628 24351 Face 56120 7006 6899 7007 Face 56121 8067 1637 1527 Face 56122 16787 31654 31774 Face 56123 25197 23577 23784 Face 56124 30971 31070 30970 Face 56125 24417 12976 24266 Face 56126 19272 20618 23674 Face 56127 23696 23589 24035 Face 56128 5842 18425 5716 Face 56129 32082 32081 31976 Face 56130 23422 12085 19272 Face 56131 18455 6527 20618 Face 56132 20512 20425 27107 Face 56133 18455 18461 18557 Face 56134 6527 18455 18557 Face 56135 18461 25954 27445 Face 56136 18557 18461 27445 Face 56137 25850 24878 27445 Face 56138 25954 25850 27445 Face 56139 27037 12063 12062 Face 56140 33087 33086 32952 Face 56141 24921 27364 24920 Face 56142 30662 30761 30661 Face 56143 27468 27467 27348 Face 56144 27349 27468 27348 Face 56145 26781 26895 26780 Face 56146 27008 27007 26894 Face 56147 29056 29057 21701 Face 56148 28806 28932 28805 Face 56149 29672 18349 29784 Face 56150 16673 29729 25794 Face 56151 22152 20470 15736 Face 56152 18865 18864 25570 Face 56153 6615 28947 29736 Face 56154 20794 29077 18450 Face 56155 29699 6796 29698 Face 56156 18667 18243 2422 Face 56157 27751 27494 18655 Face 56158 20626 27130 28026 Face 56159 30536 30535 25077 Face 56160 20794 29466 29077 Face 56161 24918 28009 6159 Face 56162 20838 13202 22563 Face 56163 27039 2419 27607 Face 56164 25790 27039 27607 Face 56165 25405 25441 25440 Face 56166 25441 25506 25505 Face 56167 25440 25441 25505 Face 56168 25506 25598 25597 Face 56169 25505 25506 25597 Face 56170 25699 25698 25597 Face 56171 25598 25699 25597 Face 56172 25699 25810 25809 Face 56173 25698 25699 25809 Face 56174 25810 25919 25918 Face 56175 25809 25810 25918 Face 56176 25919 26031 26030 Face 56177 25918 25919 26030 Face 56178 26031 26144 26143 Face 56179 26030 26031 26143 Face 56180 26144 26262 26261 Face 56181 26143 26144 26261 Face 56182 26262 26380 26379 Face 56183 26261 26262 26379 Face 56184 26380 26498 26497 Face 56185 26379 26380 26497 Face 56186 26498 26613 26612 Face 56187 26497 26498 26612 Face 56188 26613 26728 26727 Face 56189 26612 26613 26727 Face 56190 26728 26842 26841 Face 56191 26727 26728 26841 Face 56192 26842 26957 26956 Face 56193 26841 26842 26956 Face 56194 26957 27071 27070 Face 56195 26956 26957 27070 Face 56196 27071 27187 27186 Face 56197 27070 27071 27186 Face 56198 27187 27299 27298 Face 56199 27186 27187 27298 Face 56200 27299 27416 27415 Face 56201 27298 27299 27415 Face 56202 27416 27537 27536 Face 56203 27415 27416 27536 Face 56204 27537 27663 27662 Face 56205 27536 27537 27662 Face 56206 27794 27793 27662 Face 56207 27663 27794 27662 Face 56208 27794 27925 27924 Face 56209 27793 27794 27924 Face 56210 27925 28057 28056 Face 56211 27924 27925 28056 Face 56212 28057 28194 28193 Face 56213 28056 28057 28193 Face 56214 28194 28329 28328 Face 56215 28193 28194 28328 Face 56216 28329 28463 28462 Face 56217 28328 28329 28462 Face 56218 28463 28600 28599 Face 56219 28462 28463 28599 Face 56220 28600 28728 28727 Face 56221 28599 28600 28727 Face 56222 28855 28854 28727 Face 56223 28728 28855 28727 Face 56224 28980 28979 28854 Face 56225 28855 28980 28854 Face 56226 29111 29110 28979 Face 56227 28980 29111 28979 Face 56228 29111 29241 29240 Face 56229 29110 29111 29240 Face 56230 29241 29372 29371 Face 56231 29240 29241 29371 Face 56232 29503 29502 29371 Face 56233 29372 29503 29371 Face 56234 29635 29634 29502 Face 56235 29503 29635 29502 Face 56236 29635 29767 29766 Face 56237 29634 29635 29766 Face 56238 16772 13368 29766 Face 56239 29767 16772 29766 Face 56240 2939 2938 13368 Face 56241 16772 2939 13368 Face 56242 2939 24167 2938 Face 56243 18612 29077 23276 Face 56244 18765 5388 18763 Face 56245 28497 23495 23577 Face 56246 26204 27491 27490 Face 56247 7133 6702 5129 Face 56248 26204 26203 25425 Face 56249 25426 26204 25425 Face 56250 25426 25425 18681 Face 56251 6160 25426 18681 Face 56252 6813 6160 18681 Face 56253 6577 6813 18681 Face 56254 5388 7133 5129 Face 56255 7133 6813 6577 Face 56256 33747 33746 33621 Face 56257 6702 7133 6577 Face 56258 28438 23495 28495 Face 56259 21228 16773 23139 Face 56260 30341 30408 30340 Face 56261 25731 25732 23371 Face 56262 28281 28282 6036 Face 56263 18758 18757 2292 Face 56264 28956 24388 24527 Face 56265 18878 29799 19193 Face 56266 20804 18461 18455 Face 56267 12085 20804 18455 Face 56268 25900 25954 18461 Face 56269 20804 25900 18461 Face 56270 25536 25850 25954 Face 56271 25900 25536 25954 Face 56272 25750 25648 25649 Face 56273 24878 24445 24588 Face 56274 24598 27446 23340 Face 56275 28365 23710 20955 Face 56276 27239 27238 27122 Face 56277 27123 27239 27122 Face 56278 26431 26432 26549 Face 56279 26895 27008 26894 Face 56280 3679 28496 12206 Face 56281 26322 18580 29723 Face 56282 34630 28562 34742 Face 56283 16673 25794 28295 Face 56284 34687 28499 34310 Face 56285 29276 29279 18865 Face 56286 6615 27824 28823 Face 56287 27824 6615 29736 Face 56288 6796 18243 18667 Face 56289 16687 6796 18667 Face 56290 29728 18655 25791 Face 56291 29728 27751 18655 Face 56292 21518 21611 29061 Face 56293 18541 20800 29540 Face 56294 19838 20815 14407 Face 56295 16966 25883 16873 Face 56296 2419 25959 18970 Face 56297 27607 2419 18970 Face 56298 25406 25442 25441 Face 56299 25405 25406 25441 Face 56300 25442 25507 25506 Face 56301 25441 25442 25506 Face 56302 25507 25599 25598 Face 56303 25506 25507 25598 Face 56304 25700 25699 25598 Face 56305 25599 25700 25598 Face 56306 25700 25811 25810 Face 56307 25699 25700 25810 Face 56308 25811 25920 25919 Face 56309 25810 25811 25919 Face 56310 25920 26032 26031 Face 56311 25919 25920 26031 Face 56312 26032 26145 26144 Face 56313 26031 26032 26144 Face 56314 26145 26263 26262 Face 56315 26144 26145 26262 Face 56316 26263 26381 26380 Face 56317 26262 26263 26380 Face 56318 26381 26499 26498 Face 56319 26380 26381 26498 Face 56320 26499 26614 26613 Face 56321 26498 26499 26613 Face 56322 26614 26729 26728 Face 56323 26613 26614 26728 Face 56324 26729 26843 26842 Face 56325 26728 26729 26842 Face 56326 26843 26958 26957 Face 56327 26842 26843 26957 Face 56328 26958 27072 27071 Face 56329 26957 26958 27071 Face 56330 27072 27188 27187 Face 56331 27071 27072 27187 Face 56332 27188 27300 27299 Face 56333 27187 27188 27299 Face 56334 27300 27417 27416 Face 56335 27299 27300 27416 Face 56336 27417 27538 27537 Face 56337 27416 27417 27537 Face 56338 27538 27664 27663 Face 56339 27537 27538 27663 Face 56340 27795 27794 27663 Face 56341 27664 27795 27663 Face 56342 27926 27925 27794 Face 56343 27795 27926 27794 Face 56344 27926 28058 28057 Face 56345 27925 27926 28057 Face 56346 28058 28195 28194 Face 56347 28057 28058 28194 Face 56348 28195 28330 28329 Face 56349 28194 28195 28329 Face 56350 28330 28464 28463 Face 56351 28329 28330 28463 Face 56352 28464 28601 28600 Face 56353 28463 28464 28600 Face 56354 28601 28729 28728 Face 56355 28600 28601 28728 Face 56356 28856 28855 28728 Face 56357 28729 28856 28728 Face 56358 28981 28980 28855 Face 56359 28856 28981 28855 Face 56360 28981 29112 29111 Face 56361 28980 28981 29111 Face 56362 29112 29242 29241 Face 56363 29111 29112 29241 Face 56364 29373 29372 29241 Face 56365 29242 29373 29241 Face 56366 29504 29503 29372 Face 56367 29373 29504 29372 Face 56368 29636 29635 29503 Face 56369 29504 29636 29503 Face 56370 29636 29768 29767 Face 56371 29635 29636 29767 Face 56372 21451 16772 29767 Face 56373 29768 21451 29767 Face 56374 19206 2939 16772 Face 56375 21451 19206 16772 Face 56376 34478 22039 34437 Face 56377 29215 20786 25023 Face 56378 26067 28826 18647 Face 56379 18976 26067 18647 Face 56380 28120 28257 28119 Face 56381 30863 30862 30756 Face 56382 34253 12541 32624 Face 56383 19454 19374 25750 Face 56384 31586 31700 31585 Face 56385 9642 16836 20867 Face 56386 31812 31811 31699 Face 56387 31919 31918 31811 Face 56388 34303 18647 2297 Face 56389 31700 31812 31699 Face 56390 27146 24738 27145 Face 56391 33696 28809 33695 Face 56392 29756 29757 24815 Face 56393 23372 25138 24154 Face 56394 30535 24351 25077 Face 56395 9182 9183 10970 Face 56396 23396 20802 12085 Face 56397 27582 27709 27708 Face 56398 24438 24870 24437 Face 56399 25961 29586 26643 Face 56400 20802 20804 12085 Face 56401 23761 19103 25776 Face 56402 20802 10551 25900 Face 56403 20804 20802 25900 Face 56404 28129 25536 25900 Face 56405 10551 28129 25900 Face 56406 25536 28129 23851 Face 56407 21003 22631 25659 Face 56408 23801 23600 29754 Face 56409 33374 33507 33373 Face 56410 27349 27348 27238 Face 56411 27239 27349 27238 Face 56412 26314 26315 26431 Face 56413 26666 26665 26549 Face 56414 28569 25654 18580 Face 56415 26322 28569 18580 Face 56416 34139 34262 34138 Face 56417 18349 28295 29784 Face 56418 25483 26242 26241 Face 56419 18864 25630 25570 Face 56420 28761 28823 29467 Face 56421 28761 6615 28823 Face 56422 2421 18645 20896 Face 56423 2422 2421 20896 Face 56424 28427 29732 25791 Face 56425 29732 29728 25791 Face 56426 26090 20148 28302 Face 56427 23674 23447 21319 Face 56428 28497 21320 28495 Face 56429 18647 34326 18976 Face 56430 25959 20617 29650 Face 56431 18970 25959 29650 Face 56432 25407 25443 25442 Face 56433 25406 25407 25442 Face 56434 25443 25508 25507 Face 56435 25442 25443 25507 Face 56436 25508 25600 25599 Face 56437 25507 25508 25599 Face 56438 25701 25700 25599 Face 56439 25600 25701 25599 Face 56440 25812 25811 25700 Face 56441 25701 25812 25700 Face 56442 25812 25921 25920 Face 56443 25811 25812 25920 Face 56444 26033 26032 25920 Face 56445 25921 26033 25920 Face 56446 26033 26146 26145 Face 56447 26032 26033 26145 Face 56448 26146 26264 26263 Face 56449 26145 26146 26263 Face 56450 26264 26382 26381 Face 56451 26263 26264 26381 Face 56452 26382 26500 26499 Face 56453 26381 26382 26499 Face 56454 26615 26614 26499 Face 56455 26500 26615 26499 Face 56456 26615 26730 26729 Face 56457 26614 26615 26729 Face 56458 26730 26844 26843 Face 56459 26729 26730 26843 Face 56460 26844 26959 26958 Face 56461 26843 26844 26958 Face 56462 26959 27073 27072 Face 56463 26958 26959 27072 Face 56464 27073 27189 27188 Face 56465 27072 27073 27188 Face 56466 27189 27301 27300 Face 56467 27188 27189 27300 Face 56468 27301 27418 27417 Face 56469 27300 27301 27417 Face 56470 27418 27539 27538 Face 56471 27417 27418 27538 Face 56472 27539 27665 27664 Face 56473 27538 27539 27664 Face 56474 27796 27795 27664 Face 56475 27665 27796 27664 Face 56476 27927 27926 27795 Face 56477 27796 27927 27795 Face 56478 27927 28059 28058 Face 56479 27926 27927 28058 Face 56480 28059 28196 28195 Face 56481 28058 28059 28195 Face 56482 28196 28331 28330 Face 56483 28195 28196 28330 Face 56484 28331 28465 28464 Face 56485 28330 28331 28464 Face 56486 28465 28602 28601 Face 56487 28464 28465 28601 Face 56488 28602 28730 28729 Face 56489 28601 28602 28729 Face 56490 28730 28857 28856 Face 56491 28729 28730 28856 Face 56492 28982 28981 28856 Face 56493 28857 28982 28856 Face 56494 28982 29113 29112 Face 56495 28981 28982 29112 Face 56496 29113 29243 29242 Face 56497 29112 29113 29242 Face 56498 29374 29373 29242 Face 56499 29243 29374 29242 Face 56500 29505 29504 29373 Face 56501 29374 29505 29373 Face 56502 29637 29636 29504 Face 56503 29505 29637 29504 Face 56504 29769 29768 29636 Face 56505 29637 29769 29636 Face 56506 4445 21451 29768 Face 56507 29769 4445 29768 Face 56508 19205 19206 21451 Face 56509 4445 19205 21451 Face 56510 28515 28650 28514 Face 56511 31820 31927 31819 Face 56512 28650 28779 28649 Face 56513 28779 28778 28649 Face 56514 28778 28779 28904 Face 56515 28779 28905 28904 Face 56516 29424 29555 29554 Face 56517 28905 29032 29031 Face 56518 29293 29424 29423 Face 56519 29292 29293 29423 Face 56520 29163 29293 29292 Face 56521 29162 29163 29292 Face 56522 28904 28905 29031 Face 56523 29032 29163 29162 Face 56524 34686 27498 34436 Face 56525 29031 29032 29162 Face 56526 28541 28540 27129 Face 56527 27137 28541 27129 Face 56528 24207 6284 18719 Face 56529 18719 19378 24207 Face 56530 26307 27355 28429 Face 56531 28633 16706 27131 Face 56532 27748 26092 27749 Face 56533 27585 27712 27584 Face 56534 24490 29790 24625 Face 56535 24160 28829 28702 Face 56536 26757 10551 20802 Face 56537 18545 26757 20802 Face 56538 25560 28129 10551 Face 56539 26757 25560 10551 Face 56540 12985 11353 22254 Face 56541 25560 28830 25138 Face 56542 22991 19307 25773 Face 56543 33090 33225 33089 Face 56544 27588 27715 27587 Face 56545 27844 27843 27714 Face 56546 26196 26197 26314 Face 56547 26432 26550 26549 Face 56548 18340 21322 25880 Face 56549 31698 31697 31583 Face 56550 21319 28438 28495 Face 56551 29784 6397 34742 Face 56552 25951 25483 25481 Face 56553 25481 25483 26241 Face 56554 27135 29597 29467 Face 56555 29597 28761 29467 Face 56556 11093 13735 20896 Face 56557 18645 11093 20896 Face 56558 28427 28294 17639 Face 56559 28294 28427 25791 Face 56560 29041 29172 29040 Face 56561 20148 28270 29754 Face 56562 9392 34775 34708 Face 56563 24169 19205 24170 Face 56564 20617 6587 16703 Face 56565 29650 20617 16703 Face 56566 25444 25443 25407 Face 56567 25408 25444 25407 Face 56568 25444 25509 25508 Face 56569 25443 25444 25508 Face 56570 25509 25601 25600 Face 56571 25508 25509 25600 Face 56572 25702 25701 25600 Face 56573 25601 25702 25600 Face 56574 25813 25812 25701 Face 56575 25702 25813 25701 Face 56576 25813 25922 25921 Face 56577 25812 25813 25921 Face 56578 25922 26034 26033 Face 56579 25921 25922 26033 Face 56580 26034 26147 26146 Face 56581 26033 26034 26146 Face 56582 26147 26265 26264 Face 56583 26146 26147 26264 Face 56584 26265 26383 26382 Face 56585 26264 26265 26382 Face 56586 26383 26501 26500 Face 56587 26382 26383 26500 Face 56588 26616 26615 26500 Face 56589 26501 26616 26500 Face 56590 26616 26731 26730 Face 56591 26615 26616 26730 Face 56592 26845 26844 26730 Face 56593 26731 26845 26730 Face 56594 26960 26959 26844 Face 56595 26845 26960 26844 Face 56596 26960 27074 27073 Face 56597 26959 26960 27073 Face 56598 27074 27190 27189 Face 56599 27073 27074 27189 Face 56600 27190 27302 27301 Face 56601 27189 27190 27301 Face 56602 27302 27419 27418 Face 56603 27301 27302 27418 Face 56604 27419 27540 27539 Face 56605 27418 27419 27539 Face 56606 27540 27666 27665 Face 56607 27539 27540 27665 Face 56608 27797 27796 27665 Face 56609 27666 27797 27665 Face 56610 27928 27927 27796 Face 56611 27797 27928 27796 Face 56612 27928 28060 28059 Face 56613 27927 27928 28059 Face 56614 28060 28197 28196 Face 56615 28059 28060 28196 Face 56616 28197 28332 28331 Face 56617 28196 28197 28331 Face 56618 28332 28466 28465 Face 56619 28331 28332 28465 Face 56620 28466 28603 28602 Face 56621 28465 28466 28602 Face 56622 28603 28731 28730 Face 56623 28602 28603 28730 Face 56624 28858 28857 28730 Face 56625 28731 28858 28730 Face 56626 28858 28983 28982 Face 56627 28857 28858 28982 Face 56628 28983 29114 29113 Face 56629 28982 28983 29113 Face 56630 29114 29244 29243 Face 56631 29113 29114 29243 Face 56632 29244 29375 29374 Face 56633 29243 29244 29374 Face 56634 29506 29505 29374 Face 56635 29375 29506 29374 Face 56636 29638 29637 29505 Face 56637 29506 29638 29505 Face 56638 29770 29769 29637 Face 56639 29638 29770 29637 Face 56640 16771 4445 29769 Face 56641 29770 16771 29769 Face 56642 19225 29601 24366 Face 56643 17336 22678 33669 Face 56644 26413 27699 26355 Face 56645 29538 18448 23068 Face 56646 29799 26124 26010 Face 56647 28282 18878 6036 Face 56648 23380 16964 22802 Face 56649 28956 24387 24388 Face 56650 648 17619 26588 Face 56651 18987 648 26588 Face 56652 648 29589 17619 Face 56653 29589 26091 17619 Face 56654 26091 29589 26557 Face 56655 29589 25582 26557 Face 56656 26557 25582 26298 Face 56657 26237 26121 26238 Face 56658 11332 26008 25898 Face 56659 24426 25534 25468 Face 56660 28573 28541 27137 Face 56661 27154 28573 27137 Face 56662 535 16773 28541 Face 56663 28573 535 28541 Face 56664 25561 22782 22683 Face 56665 535 6810 16773 Face 56666 27465 27585 27464 Face 56667 27712 27711 27584 Face 56668 20786 29083 28952 Face 56669 27101 27767 27768 Face 56670 31015 31014 30917 Face 56671 24634 29745 24138 Face 56672 31374 31478 31373 Face 56673 30681 30680 30586 Face 56674 24154 28830 23283 Face 56675 25560 19192 28830 Face 56676 25649 25648 25557 Face 56677 21047 11573 20955 Face 56678 27715 27844 27714 Face 56679 16773 6810 23139 Face 56680 26197 26315 26314 Face 56681 26315 26432 26431 Face 56682 25754 25861 25860 Face 56683 25753 25754 25860 Face 56684 31475 31584 31474 Face 56685 31584 31583 31474 Face 56686 7027 16866 25951 Face 56687 6807 6808 6716 Face 56688 27894 27135 18875 Face 56689 27484 27135 29467 Face 56690 11093 6707 6706 Face 56691 13735 11093 6706 Face 56692 19043 17639 26068 Face 56693 19043 28427 17639 Face 56694 23807 16771 24581 Face 56695 29302 29301 29171 Face 56696 28435 169 29209 Face 56697 30415 30414 30347 Face 56698 29015 29406 16703 Face 56699 6587 29015 16703 Face 56700 25409 25445 25444 Face 56701 25408 25409 25444 Face 56702 25445 25510 25509 Face 56703 25444 25445 25509 Face 56704 25510 25602 25601 Face 56705 25509 25510 25601 Face 56706 25602 25703 25702 Face 56707 25601 25602 25702 Face 56708 25814 25813 25702 Face 56709 25703 25814 25702 Face 56710 25814 25923 25922 Face 56711 25813 25814 25922 Face 56712 25923 26035 26034 Face 56713 25922 25923 26034 Face 56714 26035 26148 26147 Face 56715 26034 26035 26147 Face 56716 26148 26266 26265 Face 56717 26147 26148 26265 Face 56718 26266 26384 26383 Face 56719 26265 26266 26383 Face 56720 26384 26502 26501 Face 56721 26383 26384 26501 Face 56722 26502 26617 26616 Face 56723 26501 26502 26616 Face 56724 26617 26732 26731 Face 56725 26616 26617 26731 Face 56726 26732 26846 26845 Face 56727 26731 26732 26845 Face 56728 26846 26961 26960 Face 56729 26845 26846 26960 Face 56730 26961 27075 27074 Face 56731 26960 26961 27074 Face 56732 27075 27191 27190 Face 56733 27074 27075 27190 Face 56734 27191 27303 27302 Face 56735 27190 27191 27302 Face 56736 27303 27420 27419 Face 56737 27302 27303 27419 Face 56738 27541 27540 27419 Face 56739 27420 27541 27419 Face 56740 27667 27666 27540 Face 56741 27541 27667 27540 Face 56742 27798 27797 27666 Face 56743 27667 27798 27666 Face 56744 27929 27928 27797 Face 56745 27798 27929 27797 Face 56746 27929 28061 28060 Face 56747 27928 27929 28060 Face 56748 28061 28198 28197 Face 56749 28060 28061 28197 Face 56750 28198 28333 28332 Face 56751 28197 28198 28332 Face 56752 28333 28467 28466 Face 56753 28332 28333 28466 Face 56754 28467 28604 28603 Face 56755 28466 28467 28603 Face 56756 28604 28732 28731 Face 56757 28603 28604 28731 Face 56758 28732 28859 28858 Face 56759 28731 28732 28858 Face 56760 28859 28984 28983 Face 56761 28858 28859 28983 Face 56762 28984 29115 29114 Face 56763 28983 28984 29114 Face 56764 29115 29245 29244 Face 56765 29114 29115 29244 Face 56766 29245 29376 29375 Face 56767 29244 29245 29375 Face 56768 29507 29506 29375 Face 56769 29376 29507 29375 Face 56770 29639 29638 29506 Face 56771 29507 29639 29506 Face 56772 29771 29770 29638 Face 56773 29639 29771 29638 Face 56774 21969 22066 29011 Face 56775 24138 11914 23001 Face 56776 16679 32432 16736 Face 56777 25544 27445 22782 Face 56778 27126 27125 27009 Face 56779 27010 27126 27009 Face 56780 26668 26783 26667 Face 56781 26897 26896 26782 Face 56782 27010 27009 26896 Face 56783 26783 26897 26782 Face 56784 27242 27241 27125 Face 56785 26897 27010 26896 Face 56786 27471 27591 27470 Face 56787 27126 27242 27125 Face 56788 27352 27471 27351 Face 56789 27591 27590 27470 Face 56790 27242 27352 27241 Face 56791 27471 27470 27351 Face 56792 31289 31290 31392 Face 56793 27352 27351 27241 Face 56794 31392 31393 31496 Face 56795 21896 21895 21800 Face 56796 2914 535 28573 Face 56797 16169 16168 24567 Face 56798 6639 6810 535 Face 56799 2914 6639 535 Face 56800 27504 25060 25199 Face 56801 28166 23601 27361 Face 56802 27044 27101 27768 Face 56803 21696 22955 23878 Face 56804 28169 26330 27955 Face 56805 27366 28169 27955 Face 56806 12701 27162 27045 Face 56807 23069 25553 29538 Face 56808 16871 27162 12701 Face 56809 21489 24153 21192 Face 56810 11512 12443 24210 Face 56811 21990 29449 21893 Face 56812 26081 26197 26196 Face 56813 23774 23725 23627 Face 56814 26083 26199 26198 Face 56815 26080 26081 26196 Face 56816 16679 16736 16735 Face 56817 25861 25972 25971 Face 56818 28562 29672 34742 Face 56819 29216 19305 25160 Face 56820 27894 18875 28289 Face 56821 16866 25980 25951 Face 56822 11052 25990 25988 Face 56823 28268 27894 28289 Face 56824 6707 11052 16867 Face 56825 6706 6707 16867 Face 56826 6638 28808 29195 Face 56827 28808 19043 26068 Face 56828 21167 18754 18753 Face 56829 26810 11815 11896 Face 56830 1767 6607 28435 Face 56831 169 29076 29209 Face 56832 23679 18545 23396 Face 56833 29770 29771 24191 Face 56834 25410 25446 25445 Face 56835 25409 25410 25445 Face 56836 25446 25511 25510 Face 56837 25445 25446 25510 Face 56838 25511 25603 25602 Face 56839 25510 25511 25602 Face 56840 25603 25704 25703 Face 56841 25602 25603 25703 Face 56842 25815 25814 25703 Face 56843 25704 25815 25703 Face 56844 25815 25924 25923 Face 56845 25814 25815 25923 Face 56846 25924 26036 26035 Face 56847 25923 25924 26035 Face 56848 26036 26149 26148 Face 56849 26035 26036 26148 Face 56850 26149 26267 26266 Face 56851 26148 26149 26266 Face 56852 26267 26385 26384 Face 56853 26266 26267 26384 Face 56854 26385 26503 26502 Face 56855 26384 26385 26502 Face 56856 26503 26618 26617 Face 56857 26502 26503 26617 Face 56858 26618 26733 26732 Face 56859 26617 26618 26732 Face 56860 26733 26847 26846 Face 56861 26732 26733 26846 Face 56862 26847 26962 26961 Face 56863 26846 26847 26961 Face 56864 26962 27076 27075 Face 56865 26961 26962 27075 Face 56866 27076 27192 27191 Face 56867 27075 27076 27191 Face 56868 27192 27304 27303 Face 56869 27191 27192 27303 Face 56870 27304 27421 27420 Face 56871 27303 27304 27420 Face 56872 27421 27542 27541 Face 56873 27420 27421 27541 Face 56874 27542 27668 27667 Face 56875 27541 27542 27667 Face 56876 27668 27799 27798 Face 56877 27667 27668 27798 Face 56878 27930 27929 27798 Face 56879 27799 27930 27798 Face 56880 27930 28062 28061 Face 56881 27929 27930 28061 Face 56882 28062 28199 28198 Face 56883 28061 28062 28198 Face 56884 28199 28334 28333 Face 56885 28198 28199 28333 Face 56886 28334 28468 28467 Face 56887 28333 28334 28467 Face 56888 28468 28605 28604 Face 56889 28467 28468 28604 Face 56890 28605 28733 28732 Face 56891 28604 28605 28732 Face 56892 28733 28860 28859 Face 56893 28732 28733 28859 Face 56894 28860 28985 28984 Face 56895 28859 28860 28984 Face 56896 28985 29116 29115 Face 56897 28984 28985 29115 Face 56898 29116 29246 29245 Face 56899 29115 29116 29245 Face 56900 29246 29377 29376 Face 56901 29245 29246 29376 Face 56902 29508 29507 29376 Face 56903 29377 29508 29376 Face 56904 29640 29639 29507 Face 56905 29508 29640 29507 Face 56906 29772 29771 29639 Face 56907 29640 29772 29639 Face 56908 23495 19276 23784 Face 56909 24192 24191 29771 Face 56910 28795 28921 28794 Face 56911 31366 31470 31365 Face 56912 28396 28395 28261 Face 56913 27992 28125 27991 Face 56914 28262 28261 28124 Face 56915 27860 27992 27859 Face 56916 28125 28124 27991 Face 56917 27992 27991 27859 Face 56918 28921 29048 28920 Face 56919 28125 28262 28124 Face 56920 28531 28530 28395 Face 56921 28396 28531 28395 Face 56922 28666 28665 28530 Face 56923 28795 28794 28665 Face 56924 28666 28795 28665 Face 56925 29048 29047 28920 Face 56926 27461 27581 27580 Face 56927 28921 28920 28794 Face 56928 22992 23493 23659 Face 56929 18960 25199 25335 Face 56930 24568 16168 16015 Face 56931 24567 16168 24568 Face 56932 10711 6639 2914 Face 56933 2820 10711 2914 Face 56934 19575 19493 17085 Face 56935 17590 14428 23292 Face 56936 28773 28899 28898 Face 56937 32086 32085 31980 Face 56938 27366 27955 27269 Face 56939 28826 27366 27269 Face 56940 29422 29553 29552 Face 56941 29421 29422 29552 Face 56942 28763 29016 428 Face 56943 29193 29190 27477 Face 56944 27878 27882 28431 Face 56945 27882 26441 26329 Face 56946 25970 26081 26080 Face 56947 29156 29286 29285 Face 56948 25860 25861 25971 Face 56949 26082 26083 26198 Face 56950 28789 28788 28659 Face 56951 2820 2914 23659 Face 56952 25980 25484 25483 Face 56953 29063 26326 28289 Face 56954 22258 22355 22354 Face 56955 27135 27484 18875 Face 56956 16867 11052 25988 Face 56957 25990 25494 25485 Face 56958 21078 27744 19003 Face 56959 6638 29195 27874 Face 56960 28808 26068 29195 Face 56961 27744 6638 27874 Face 56962 27477 27476 26177 Face 56963 19033 21167 18929 Face 56964 18449 26873 1767 Face 56965 6607 169 28435 Face 56966 27825 20540 27956 Face 56967 27341 27342 27460 Face 56968 25411 25447 25446 Face 56969 25410 25411 25446 Face 56970 25447 25512 25511 Face 56971 25446 25447 25511 Face 56972 25512 25604 25603 Face 56973 25511 25512 25603 Face 56974 25604 25705 25704 Face 56975 25603 25604 25704 Face 56976 25816 25815 25704 Face 56977 25705 25816 25704 Face 56978 25816 25925 25924 Face 56979 25815 25816 25924 Face 56980 25925 26037 26036 Face 56981 25924 25925 26036 Face 56982 26037 26150 26149 Face 56983 26036 26037 26149 Face 56984 26150 26268 26267 Face 56985 26149 26150 26267 Face 56986 26268 26386 26385 Face 56987 26267 26268 26385 Face 56988 26386 26504 26503 Face 56989 26385 26386 26503 Face 56990 26504 26619 26618 Face 56991 26503 26504 26618 Face 56992 26619 26734 26733 Face 56993 26618 26619 26733 Face 56994 26734 26848 26847 Face 56995 26733 26734 26847 Face 56996 26848 26963 26962 Face 56997 26847 26848 26962 Face 56998 26963 27077 27076 Face 56999 26962 26963 27076 Face 57000 27077 27193 27192 Face 57001 27076 27077 27192 Face 57002 27193 27305 27304 Face 57003 27192 27193 27304 Face 57004 27305 27422 27421 Face 57005 27304 27305 27421 Face 57006 27543 27542 27421 Face 57007 27422 27543 27421 Face 57008 27669 27668 27542 Face 57009 27543 27669 27542 Face 57010 27669 27800 27799 Face 57011 27668 27669 27799 Face 57012 27800 27931 27930 Face 57013 27799 27800 27930 Face 57014 27931 28063 28062 Face 57015 27930 27931 28062 Face 57016 28063 28200 28199 Face 57017 28062 28063 28199 Face 57018 28200 28335 28334 Face 57019 28199 28200 28334 Face 57020 28335 28469 28468 Face 57021 28334 28335 28468 Face 57022 28469 28606 28605 Face 57023 28468 28469 28605 Face 57024 28606 28734 28733 Face 57025 28605 28606 28733 Face 57026 28734 28861 28860 Face 57027 28733 28734 28860 Face 57028 28861 28986 28985 Face 57029 28860 28861 28985 Face 57030 28986 29117 29116 Face 57031 28985 28986 29116 Face 57032 29117 29247 29246 Face 57033 29116 29117 29246 Face 57034 29247 29378 29377 Face 57035 29246 29247 29377 Face 57036 29509 29508 29377 Face 57037 29378 29509 29377 Face 57038 29641 29640 29508 Face 57039 29509 29641 29508 Face 57040 29773 29772 29640 Face 57041 29641 29773 29640 Face 57042 23485 23405 23486 Face 57043 29773 2691 29772 Face 57044 29403 22354 29534 Face 57045 14931 13999 14980 Face 57046 26772 26886 26885 Face 57047 23315 25765 25764 Face 57048 18450 18612 29590 Face 57049 25628 18450 29590 Face 57050 27824 29736 6404 Face 57051 28018 27886 29602 Face 57052 28018 18450 25628 Face 57053 29736 28018 29602 Face 57054 27257 28680 18028 Face 57055 27886 28018 25628 Face 57056 25758 25865 25864 Face 57057 28680 28945 27136 Face 57058 29592 28680 27136 Face 57059 23865 27147 27148 Face 57060 27460 27461 27580 Face 57061 25635 25634 24093 Face 57062 19280 19360 25021 Face 57063 25572 25663 22450 Face 57064 31263 31366 31262 Face 57065 27244 28677 23493 Face 57066 10318 10711 2820 Face 57067 18783 10318 2820 Face 57068 24767 20322 26817 Face 57069 10318 17590 10711 Face 57070 18506 2080 1954 Face 57071 17590 23292 10711 Face 57072 2297 18978 34303 Face 57073 22872 25858 19536 Face 57074 29553 29685 29684 Face 57075 29552 29553 29684 Face 57076 25991 13167 28763 Face 57077 29016 14310 428 Face 57078 27976 27975 27843 Face 57079 28109 28108 27975 Face 57080 12149 12148 27153 Face 57081 25969 25970 26080 Face 57082 25972 26083 26082 Face 57083 25971 25972 26082 Face 57084 18876 29207 25986 Face 57085 28932 29059 28931 Face 57086 13439 13344 13345 Face 57087 27962 21135 21045 Face 57088 27512 27510 27389 Face 57089 20884 34431 34812 Face 57090 25988 25990 25485 Face 57091 26321 26308 25485 Face 57092 20972 21078 29717 Face 57093 27744 27874 19003 Face 57094 29033 29034 29164 Face 57095 29434 29433 29302 Face 57096 29434 29565 29433 Face 57097 29173 29303 29172 Face 57098 18513 2818 18449 Face 57099 26873 6607 1767 Face 57100 29706 29705 29573 Face 57101 29574 29706 29573 Face 57102 25412 25448 25447 Face 57103 25411 25412 25447 Face 57104 25448 25513 25512 Face 57105 25447 25448 25512 Face 57106 25513 25605 25604 Face 57107 25512 25513 25604 Face 57108 25605 25706 25705 Face 57109 25604 25605 25705 Face 57110 25706 25817 25816 Face 57111 25705 25706 25816 Face 57112 25817 25926 25925 Face 57113 25816 25817 25925 Face 57114 25926 26038 26037 Face 57115 25925 25926 26037 Face 57116 26038 26151 26150 Face 57117 26037 26038 26150 Face 57118 26151 26269 26268 Face 57119 26150 26151 26268 Face 57120 26387 26386 26268 Face 57121 26269 26387 26268 Face 57122 26505 26504 26386 Face 57123 26387 26505 26386 Face 57124 26505 26620 26619 Face 57125 26504 26505 26619 Face 57126 26620 26735 26734 Face 57127 26619 26620 26734 Face 57128 26735 26849 26848 Face 57129 26734 26735 26848 Face 57130 26849 26964 26963 Face 57131 26848 26849 26963 Face 57132 26964 27078 27077 Face 57133 26963 26964 27077 Face 57134 27078 27194 27193 Face 57135 27077 27078 27193 Face 57136 27194 27306 27305 Face 57137 27193 27194 27305 Face 57138 27306 27423 27422 Face 57139 27305 27306 27422 Face 57140 27423 27544 27543 Face 57141 27422 27423 27543 Face 57142 27670 27669 27543 Face 57143 27544 27670 27543 Face 57144 27670 27801 27800 Face 57145 27669 27670 27800 Face 57146 27801 27932 27931 Face 57147 27800 27801 27931 Face 57148 27932 28064 28063 Face 57149 27931 27932 28063 Face 57150 28064 28201 28200 Face 57151 28063 28064 28200 Face 57152 28201 28336 28335 Face 57153 28200 28201 28335 Face 57154 28336 28470 28469 Face 57155 28335 28336 28469 Face 57156 28470 28607 28606 Face 57157 28469 28470 28606 Face 57158 28607 28735 28734 Face 57159 28606 28607 28734 Face 57160 28735 28862 28861 Face 57161 28734 28735 28861 Face 57162 28862 28987 28986 Face 57163 28861 28862 28986 Face 57164 28987 29118 29117 Face 57165 28986 28987 29117 Face 57166 29118 29248 29247 Face 57167 29117 29118 29247 Face 57168 29248 29379 29378 Face 57169 29247 29248 29378 Face 57170 29510 29509 29378 Face 57171 29379 29510 29378 Face 57172 29642 29641 29509 Face 57173 29510 29642 29509 Face 57174 29774 29773 29641 Face 57175 29642 29774 29641 Face 57176 2554 2691 29773 Face 57177 29774 2554 29773 Face 57178 29083 29082 13533 Face 57179 21097 21753 21658 Face 57180 21969 28886 28887 Face 57181 26658 26773 26657 Face 57182 27631 27504 18960 Face 57183 18416 27631 18960 Face 57184 24595 25295 24594 Face 57185 27740 27364 27504 Face 57186 27968 27969 28101 Face 57187 6279 28089 6636 Face 57188 12701 27271 21607 Face 57189 12701 21607 13722 Face 57190 29206 29671 28426 Face 57191 24039 25660 22853 Face 57192 29672 28562 28426 Face 57193 19456 29277 23249 Face 57194 23249 29277 11457 Face 57195 29671 29672 28426 Face 57196 20490 19681 18551 Face 57197 19904 19903 19827 Face 57198 31579 31578 31469 Face 57199 2430 18783 23493 Face 57200 16989 10318 18783 Face 57201 2430 16989 18783 Face 57202 6278 17590 10318 Face 57203 16989 6278 10318 Face 57204 6278 23423 17590 Face 57205 23956 24082 23393 Face 57206 28826 27269 2297 Face 57207 20964 21056 28128 Face 57208 29685 29816 29815 Face 57209 29684 29685 29815 Face 57210 28935 13167 28169 Face 57211 13167 29016 28763 Face 57212 27844 27976 27843 Face 57213 27976 28109 27975 Face 57214 25752 25859 25858 Face 57215 23443 23444 25736 Face 57216 26199 26317 26316 Face 57217 26198 26199 26316 Face 57218 29207 6279 27567 Face 57219 28089 27957 6636 Face 57220 28823 27824 29670 Face 57221 29736 29602 6404 Face 57222 25630 27512 27502 Face 57223 27502 27512 27389 Face 57224 25494 26321 25485 Face 57225 25852 27736 27735 Face 57226 14789 28429 16188 Face 57227 5656 17775 19120 Face 57228 29592 19037 29541 Face 57229 29165 29295 29294 Face 57230 29456 2818 18513 Face 57231 29587 29456 18513 Face 57232 29705 29706 5908 Face 57233 2818 26873 18449 Face 57234 29706 5907 5908 Face 57235 25413 25449 25448 Face 57236 25412 25413 25448 Face 57237 25449 25514 25513 Face 57238 25448 25449 25513 Face 57239 25514 25606 25605 Face 57240 25513 25514 25605 Face 57241 25606 25707 25706 Face 57242 25605 25606 25706 Face 57243 25707 25818 25817 Face 57244 25706 25707 25817 Face 57245 25818 25927 25926 Face 57246 25817 25818 25926 Face 57247 25927 26039 26038 Face 57248 25926 25927 26038 Face 57249 26039 26152 26151 Face 57250 26038 26039 26151 Face 57251 26152 26270 26269 Face 57252 26151 26152 26269 Face 57253 26270 26388 26387 Face 57254 26269 26270 26387 Face 57255 26388 26506 26505 Face 57256 26387 26388 26505 Face 57257 26506 26621 26620 Face 57258 26505 26506 26620 Face 57259 26621 26736 26735 Face 57260 26620 26621 26735 Face 57261 26736 26850 26849 Face 57262 26735 26736 26849 Face 57263 26850 26965 26964 Face 57264 26849 26850 26964 Face 57265 26965 27079 27078 Face 57266 26964 26965 27078 Face 57267 27079 27195 27194 Face 57268 27078 27079 27194 Face 57269 27195 27307 27306 Face 57270 27194 27195 27306 Face 57271 27307 27424 27423 Face 57272 27306 27307 27423 Face 57273 27424 27545 27544 Face 57274 27423 27424 27544 Face 57275 27671 27670 27544 Face 57276 27545 27671 27544 Face 57277 27671 27802 27801 Face 57278 27670 27671 27801 Face 57279 27802 27933 27932 Face 57280 27801 27802 27932 Face 57281 27933 28065 28064 Face 57282 27932 27933 28064 Face 57283 28065 28202 28201 Face 57284 28064 28065 28201 Face 57285 28202 28337 28336 Face 57286 28201 28202 28336 Face 57287 28337 28471 28470 Face 57288 28336 28337 28470 Face 57289 28471 28608 28607 Face 57290 28470 28471 28607 Face 57291 28608 28736 28735 Face 57292 28607 28608 28735 Face 57293 28736 28863 28862 Face 57294 28735 28736 28862 Face 57295 28863 28988 28987 Face 57296 28862 28863 28987 Face 57297 28988 29119 29118 Face 57298 28987 28988 29118 Face 57299 29119 29249 29248 Face 57300 29118 29119 29248 Face 57301 29249 29380 29379 Face 57302 29248 29249 29379 Face 57303 29511 29510 29379 Face 57304 29380 29511 29379 Face 57305 29643 29642 29510 Face 57306 29511 29643 29510 Face 57307 29775 29774 29642 Face 57308 29643 29775 29642 Face 57309 2687 2554 29774 Face 57310 29775 2687 29774 Face 57311 11025 11026 11071 Face 57312 2687 19537 2554 Face 57313 19070 6159 28009 Face 57314 25730 25172 25731 Face 57315 27631 27740 27504 Face 57316 20980 23378 28000 Face 57317 34390 6811 34660 Face 57318 26663 26778 26662 Face 57319 19251 29147 21452 Face 57320 16176 22708 11457 Face 57321 27879 29147 19251 Face 57322 18458 27879 19251 Face 57323 26773 26887 26886 Face 57324 29147 2428 21452 Face 57325 26778 26777 26662 Face 57326 26547 26663 26546 Face 57327 21873 21776 21777 Face 57328 25733 23370 25732 Face 57329 27251 28678 28677 Face 57330 27244 27251 28677 Face 57331 2557 2430 28677 Face 57332 28678 2557 28677 Face 57333 6641 16989 2430 Face 57334 2557 6641 2430 Face 57335 6641 11049 6278 Face 57336 16989 6641 6278 Face 57337 23548 23423 23438 Face 57338 1978 10841 6415 Face 57339 30279 30346 30278 Face 57340 28687 25989 27381 Face 57341 21548 21642 29815 Face 57342 29816 21548 29815 Face 57343 17628 28935 27366 Face 57344 13167 25991 28169 Face 57345 28246 28245 28108 Face 57346 28109 28246 28108 Face 57347 25650 25752 25751 Face 57348 25751 25752 25858 Face 57349 26317 26434 26433 Face 57350 26316 26317 26433 Face 57351 30020 30021 30082 Face 57352 26907 29462 23222 Face 57353 18875 28159 29063 Face 57354 28289 18875 29063 Face 57355 7027 25951 25870 Face 57356 25570 25630 27502 Face 57357 2166 25852 25843 Face 57358 2167 2166 25843 Face 57359 191 28225 28226 Face 57360 18972 191 28226 Face 57361 21076 19147 19087 Face 57362 29712 6596 29711 Face 57363 6405 6940 28816 Face 57364 27267 29456 29587 Face 57365 28360 28224 21490 Face 57366 29179 29178 29047 Face 57367 25414 25450 25449 Face 57368 25413 25414 25449 Face 57369 25450 25515 25514 Face 57370 25449 25450 25514 Face 57371 25515 25607 25606 Face 57372 25514 25515 25606 Face 57373 25607 25708 25707 Face 57374 25606 25607 25707 Face 57375 25819 25818 25707 Face 57376 25708 25819 25707 Face 57377 25819 25928 25927 Face 57378 25818 25819 25927 Face 57379 25928 26040 26039 Face 57380 25927 25928 26039 Face 57381 26040 26153 26152 Face 57382 26039 26040 26152 Face 57383 26153 26271 26270 Face 57384 26152 26153 26270 Face 57385 26271 26389 26388 Face 57386 26270 26271 26388 Face 57387 26389 26507 26506 Face 57388 26388 26389 26506 Face 57389 26507 26622 26621 Face 57390 26506 26507 26621 Face 57391 26622 26737 26736 Face 57392 26621 26622 26736 Face 57393 26737 26851 26850 Face 57394 26736 26737 26850 Face 57395 26851 26966 26965 Face 57396 26850 26851 26965 Face 57397 26966 27080 27079 Face 57398 26965 26966 27079 Face 57399 27080 27196 27195 Face 57400 27079 27080 27195 Face 57401 27196 27308 27307 Face 57402 27195 27196 27307 Face 57403 27308 27425 27424 Face 57404 27307 27308 27424 Face 57405 27425 27546 27545 Face 57406 27424 27425 27545 Face 57407 27672 27671 27545 Face 57408 27546 27672 27545 Face 57409 27672 27803 27802 Face 57410 27671 27672 27802 Face 57411 27803 27934 27933 Face 57412 27802 27803 27933 Face 57413 27934 28066 28065 Face 57414 27933 27934 28065 Face 57415 28066 28203 28202 Face 57416 28065 28066 28202 Face 57417 28203 28338 28337 Face 57418 28202 28203 28337 Face 57419 28338 28472 28471 Face 57420 28337 28338 28471 Face 57421 28472 28609 28608 Face 57422 28471 28472 28608 Face 57423 28609 28737 28736 Face 57424 28608 28609 28736 Face 57425 28737 28864 28863 Face 57426 28736 28737 28863 Face 57427 28864 28989 28988 Face 57428 28863 28864 28988 Face 57429 29120 29119 28988 Face 57430 28989 29120 28988 Face 57431 29120 29250 29249 Face 57432 29119 29120 29249 Face 57433 29250 29381 29380 Face 57434 29249 29250 29380 Face 57435 29512 29511 29380 Face 57436 29381 29512 29380 Face 57437 29644 29643 29511 Face 57438 29512 29644 29511 Face 57439 29776 29775 29643 Face 57440 29644 29776 29643 Face 57441 2555 2687 29775 Face 57442 29776 2555 29775 Face 57443 15734 19537 2687 Face 57444 2555 15734 2687 Face 57445 28247 28248 28381 Face 57446 12623 21762 18256 Face 57447 27343 27462 27461 Face 57448 27717 27716 27589 Face 57449 27735 27736 28938 Face 57450 27766 27879 18458 Face 57451 6800 25571 2428 Face 57452 29147 6800 2428 Face 57453 27736 27762 27766 Face 57454 2815 24747 22047 Face 57455 25852 25884 27736 Face 57456 27511 27625 27879 Face 57457 27626 29348 29340 Face 57458 27762 27511 27766 Face 57459 28678 23575 2557 Face 57460 27624 27626 29340 Face 57461 15302 1449 23792 Face 57462 19942 26670 26554 Face 57463 25189 6283 2556 Face 57464 29756 24814 29755 Face 57465 6624 6641 2557 Face 57466 2690 6624 2557 Face 57467 6624 6637 11049 Face 57468 6641 6624 11049 Face 57469 24447 28933 23029 Face 57470 6637 18732 11049 Face 57471 30663 30762 30662 Face 57472 25030 24758 25650 Face 57473 19083 15878 21642 Face 57474 15878 19083 18763 Face 57475 17628 27366 28826 Face 57476 26067 17628 28826 Face 57477 28380 28379 28245 Face 57478 28246 28380 28245 Face 57479 23837 25017 23672 Face 57480 25649 25650 25751 Face 57481 26434 26552 26551 Face 57482 26551 26552 26667 Face 57483 29689 6655 29688 Face 57484 6279 6636 27567 Face 57485 18875 27484 28277 Face 57486 28159 18875 28277 Face 57487 20715 6808 20713 Face 57488 28268 28289 26327 Face 57489 27621 27624 29334 Face 57490 29340 2166 2167 Face 57491 28225 20972 29717 Face 57492 28226 28225 29717 Face 57493 19147 26931 26681 Face 57494 28684 29726 28683 Face 57495 10838 10837 6405 Face 57496 28816 27267 29587 Face 57497 4058 24056 24535 Face 57498 6798 11095 20978 Face 57499 25415 25451 25450 Face 57500 25414 25415 25450 Face 57501 25451 25516 25515 Face 57502 25450 25451 25515 Face 57503 25516 25608 25607 Face 57504 25515 25516 25607 Face 57505 25608 25709 25708 Face 57506 25607 25608 25708 Face 57507 25820 25819 25708 Face 57508 25709 25820 25708 Face 57509 25820 25929 25928 Face 57510 25819 25820 25928 Face 57511 25929 26041 26040 Face 57512 25928 25929 26040 Face 57513 26041 26154 26153 Face 57514 26040 26041 26153 Face 57515 26154 26272 26271 Face 57516 26153 26154 26271 Face 57517 26272 26390 26389 Face 57518 26271 26272 26389 Face 57519 26390 26508 26507 Face 57520 26389 26390 26507 Face 57521 26508 26623 26622 Face 57522 26507 26508 26622 Face 57523 26623 26738 26737 Face 57524 26622 26623 26737 Face 57525 26738 26852 26851 Face 57526 26737 26738 26851 Face 57527 26852 26967 26966 Face 57528 26851 26852 26966 Face 57529 27081 27080 26966 Face 57530 26967 27081 26966 Face 57531 27197 27196 27080 Face 57532 27081 27197 27080 Face 57533 27197 27309 27308 Face 57534 27196 27197 27308 Face 57535 27309 27426 27425 Face 57536 27308 27309 27425 Face 57537 27426 27547 27546 Face 57538 27425 27426 27546 Face 57539 27673 27672 27546 Face 57540 27547 27673 27546 Face 57541 27673 27804 27803 Face 57542 27672 27673 27803 Face 57543 27804 27935 27934 Face 57544 27803 27804 27934 Face 57545 27935 28067 28066 Face 57546 27934 27935 28066 Face 57547 28067 28204 28203 Face 57548 28066 28067 28203 Face 57549 28204 28339 28338 Face 57550 28203 28204 28338 Face 57551 28339 28473 28472 Face 57552 28338 28339 28472 Face 57553 28473 28610 28609 Face 57554 28472 28473 28609 Face 57555 28610 28738 28737 Face 57556 28609 28610 28737 Face 57557 28738 28865 28864 Face 57558 28737 28738 28864 Face 57559 28865 28990 28989 Face 57560 28864 28865 28989 Face 57561 29121 29120 28989 Face 57562 28990 29121 28989 Face 57563 29121 29251 29250 Face 57564 29120 29121 29250 Face 57565 29382 29381 29250 Face 57566 29251 29382 29250 Face 57567 29513 29512 29381 Face 57568 29382 29513 29381 Face 57569 29645 29644 29512 Face 57570 29513 29645 29512 Face 57571 29777 29776 29644 Face 57572 29645 29777 29644 Face 57573 2426 2555 29776 Face 57574 29777 2426 29776 Face 57575 15734 24455 4058 Face 57576 597 596 7171 Face 57577 27470 27590 27469 Face 57578 29463 22608 26473 Face 57579 27874 27877 2547 Face 57580 19003 27874 2547 Face 57581 27736 27766 28938 Face 57582 28938 27766 18458 Face 57583 27625 6800 29147 Face 57584 13631 19770 14372 Face 57585 25669 25670 25772 Face 57586 24527 24160 28956 Face 57587 27869 34834 6162 Face 57588 21840 27383 27696 Face 57589 26187 26178 27385 Face 57590 29328 28684 18968 Face 57591 25884 27762 27736 Face 57592 7584 28814 27387 Face 57593 30381 30448 30380 Face 57594 29608 22753 29740 Face 57595 2819 23492 21635 Face 57596 23991 28007 28268 Face 57597 10735 6624 2690 Face 57598 2819 10735 2690 Face 57599 10735 11050 6637 Face 57600 6624 10735 6637 Face 57601 6399 18732 6637 Face 57602 11050 6399 6637 Face 57603 31169 31168 31069 Face 57604 11815 11816 11897 Face 57605 21548 19083 21642 Face 57606 5388 5129 18763 Face 57607 27987 28120 27986 Face 57608 28935 28169 27366 Face 57609 28515 28514 28379 Face 57610 28380 28515 28379 Face 57611 18987 26588 25489 Face 57612 23992 23991 28268 Face 57613 26433 26434 26551 Face 57614 26783 26782 26667 Face 57615 28660 28789 28659 Face 57616 29294 29295 29425 Face 57617 27484 29467 29335 Face 57618 27824 6404 29670 Face 57619 6716 7027 25870 Face 57620 11512 22707 11411 Face 57621 27624 27621 26308 Face 57622 29334 29340 2167 Face 57623 28696 18454 6640 Face 57624 21078 19003 29717 Face 57625 29718 29540 18193 Face 57626 31213 31212 31113 Face 57627 26530 10837 27618 Face 57628 6940 27267 28816 Face 57629 25668 25771 25770 Face 57630 33756 33755 33630 Face 57631 14892 13038 22642 Face 57632 25415 25416 25451 Face 57633 33882 33881 33755 Face 57634 20870 25427 25463 Face 57635 25517 25609 25608 Face 57636 25516 25517 25608 Face 57637 25609 25710 25709 Face 57638 25608 25609 25709 Face 57639 25710 25821 25820 Face 57640 25709 25710 25820 Face 57641 25821 25930 25929 Face 57642 25820 25821 25929 Face 57643 25930 26042 26041 Face 57644 25929 25930 26041 Face 57645 26042 26155 26154 Face 57646 26041 26042 26154 Face 57647 26155 26273 26272 Face 57648 26154 26155 26272 Face 57649 26391 26390 26272 Face 57650 26273 26391 26272 Face 57651 26391 26509 26508 Face 57652 26390 26391 26508 Face 57653 26509 26624 26623 Face 57654 26508 26509 26623 Face 57655 26624 26739 26738 Face 57656 26623 26624 26738 Face 57657 26739 26853 26852 Face 57658 26738 26739 26852 Face 57659 26853 26968 26967 Face 57660 26852 26853 26967 Face 57661 26968 27082 27081 Face 57662 26967 26968 27081 Face 57663 27198 27197 27081 Face 57664 27082 27198 27081 Face 57665 27310 27309 27197 Face 57666 27198 27310 27197 Face 57667 27310 27427 27426 Face 57668 27309 27310 27426 Face 57669 27427 27548 27547 Face 57670 27426 27427 27547 Face 57671 27674 27673 27547 Face 57672 27548 27674 27547 Face 57673 27674 27805 27804 Face 57674 27673 27674 27804 Face 57675 27805 27936 27935 Face 57676 27804 27805 27935 Face 57677 27936 28068 28067 Face 57678 27935 27936 28067 Face 57679 28068 28205 28204 Face 57680 28067 28068 28204 Face 57681 28205 28340 28339 Face 57682 28204 28205 28339 Face 57683 28340 28474 28473 Face 57684 28339 28340 28473 Face 57685 28474 28611 28610 Face 57686 28473 28474 28610 Face 57687 28611 28739 28738 Face 57688 28610 28611 28738 Face 57689 28739 28866 28865 Face 57690 28738 28739 28865 Face 57691 28866 28991 28990 Face 57692 28865 28866 28990 Face 57693 29122 29121 28990 Face 57694 28991 29122 28990 Face 57695 29122 29252 29251 Face 57696 29121 29122 29251 Face 57697 29252 29383 29382 Face 57698 29251 29252 29382 Face 57699 29514 29513 29382 Face 57700 29383 29514 29382 Face 57701 29646 29645 29513 Face 57702 29514 29646 29513 Face 57703 29778 29777 29645 Face 57704 29646 29778 29645 Face 57705 2689 2426 29777 Face 57706 29778 2689 29777 Face 57707 20777 20688 27453 Face 57708 22221 22047 22793 Face 57709 27590 27589 27469 Face 57710 23574 23491 21635 Face 57711 29195 25962 27877 Face 57712 27874 29195 27877 Face 57713 25525 25494 25990 Face 57714 26127 25525 25990 Face 57715 27766 27511 27879 Face 57716 27879 27625 29147 Face 57717 27827 29460 29459 Face 57718 29726 18193 28683 Face 57719 26672 26530 28140 Face 57720 10837 10838 27618 Face 57721 25682 27493 26821 Face 57722 26672 28140 26555 Face 57723 27859 27991 27858 Face 57724 27493 26672 26555 Face 57725 2166 18559 25852 Face 57726 28535 28534 28399 Face 57727 22271 21635 23491 Face 57728 23424 23438 23423 Face 57729 21635 8269 10735 Face 57730 2819 21635 10735 Face 57731 16709 11050 10735 Face 57732 8269 16709 10735 Face 57733 16709 6284 6399 Face 57734 11050 16709 6399 Face 57735 21517 21518 29061 Face 57736 30758 30757 30658 Face 57737 29540 28545 29673 Face 57738 19083 18765 18763 Face 57739 19084 19082 21547 Face 57740 28120 28119 27986 Face 57741 30863 30964 30862 Face 57742 28650 28649 28514 Face 57743 28112 28111 27978 Face 57744 29731 25489 25585 Face 57745 2942 2941 21173 Face 57746 26552 26668 26667 Face 57747 21172 18660 18661 Face 57748 28364 28230 28166 Face 57749 28277 27484 29335 Face 57750 28823 29670 29335 Face 57751 28139 29206 28003 Face 57752 6808 7027 6716 Face 57753 26321 27624 26308 Face 57754 27624 29340 29334 Face 57755 18715 17013 6799 Face 57756 17856 18890 28025 Face 57757 25670 25669 25578 Face 57758 29781 13547 29750 Face 57759 27493 26555 26821 Face 57760 10837 6940 6405 Face 57761 29575 29707 29574 Face 57762 29313 29312 29182 Face 57763 24220 24219 24812 Face 57764 21118 21211 27822 Face 57765 22065 23801 29754 Face 57766 22065 28270 24232 Face 57767 25518 25610 25609 Face 57768 25517 25518 25609 Face 57769 25610 25711 25710 Face 57770 25609 25610 25710 Face 57771 25822 25821 25710 Face 57772 25711 25822 25710 Face 57773 25931 25930 25821 Face 57774 25822 25931 25821 Face 57775 26043 26042 25930 Face 57776 25931 26043 25930 Face 57777 26156 26155 26042 Face 57778 26043 26156 26042 Face 57779 26274 26273 26155 Face 57780 26156 26274 26155 Face 57781 26274 26392 26391 Face 57782 26273 26274 26391 Face 57783 26392 26510 26509 Face 57784 26391 26392 26509 Face 57785 26510 26625 26624 Face 57786 26509 26510 26624 Face 57787 26625 26740 26739 Face 57788 26624 26625 26739 Face 57789 26740 26854 26853 Face 57790 26739 26740 26853 Face 57791 26854 26969 26968 Face 57792 26853 26854 26968 Face 57793 26969 27083 27082 Face 57794 26968 26969 27082 Face 57795 27083 27199 27198 Face 57796 27082 27083 27198 Face 57797 27311 27310 27198 Face 57798 27199 27311 27198 Face 57799 27428 27427 27310 Face 57800 27311 27428 27310 Face 57801 27428 27549 27548 Face 57802 27427 27428 27548 Face 57803 27675 27674 27548 Face 57804 27549 27675 27548 Face 57805 27675 27806 27805 Face 57806 27674 27675 27805 Face 57807 27806 27937 27936 Face 57808 27805 27806 27936 Face 57809 27937 28069 28068 Face 57810 27936 27937 28068 Face 57811 28069 28206 28205 Face 57812 28068 28069 28205 Face 57813 28206 28341 28340 Face 57814 28205 28206 28340 Face 57815 28341 28475 28474 Face 57816 28340 28341 28474 Face 57817 28475 28612 28611 Face 57818 28474 28475 28611 Face 57819 28612 28740 28739 Face 57820 28611 28612 28739 Face 57821 28740 28867 28866 Face 57822 28739 28740 28866 Face 57823 28992 28991 28866 Face 57824 28867 28992 28866 Face 57825 29123 29122 28991 Face 57826 28992 29123 28991 Face 57827 29123 29253 29252 Face 57828 29122 29123 29252 Face 57829 29253 29384 29383 Face 57830 29252 29253 29383 Face 57831 29515 29514 29383 Face 57832 29384 29515 29383 Face 57833 29647 29646 29514 Face 57834 29515 29647 29514 Face 57835 29779 29778 29646 Face 57836 29647 29779 29646 Face 57837 2688 2689 29778 Face 57838 29779 2688 29778 Face 57839 21211 21303 27954 Face 57840 22271 11164 21635 Face 57841 29195 26068 25962 Face 57842 27459 27460 27579 Face 57843 13549 26127 25990 Face 57844 26068 28271 25962 Face 57845 18361 10715 27639 Face 57846 11052 13549 25990 Face 57847 26178 7584 27387 Face 57848 11587 26360 26359 Face 57849 25682 26821 20716 Face 57850 20870 22987 29847 Face 57851 28920 29047 28919 Face 57852 20801 25682 20716 Face 57853 29575 29574 29443 Face 57854 25668 25667 25576 Face 57855 26530 27618 28140 Face 57856 20801 20716 18877 Face 57857 25558 26453 26451 Face 57858 28402 28401 28267 Face 57859 18068 1881 15723 Face 57860 18559 25884 25852 Face 57861 11164 8269 21635 Face 57862 24207 20178 24477 Face 57863 11164 29013 16709 Face 57864 8269 11164 16709 Face 57865 29013 18719 6284 Face 57866 16709 29013 6284 Face 57867 11890 11891 27138 Face 57868 23802 21452 2428 Face 57869 28283 28361 25958 Face 57870 28771 28772 28897 Face 57871 21546 21547 29817 Face 57872 21546 19084 21547 Face 57873 32024 32128 32023 Face 57874 27386 29731 25585 Face 57875 27979 27978 27846 Face 57876 27979 28112 27978 Face 57877 25632 12819 25633 Face 57878 29042 29041 28914 Face 57879 25975 25976 26086 Face 57880 20874 18872 24335 Face 57881 31584 31698 31583 Face 57882 29467 28823 29335 Face 57883 9875 16030 14548 Face 57884 28003 34569 34308 Face 57885 27626 27624 26321 Face 57886 25843 25852 27735 Face 57887 25648 19294 25556 Face 57888 29810 17216 29809 Face 57889 27161 28570 28888 Face 57890 25670 25773 25772 Face 57891 31020 30921 11113 Face 57892 26303 18877 28434 Face 57893 25736 23444 25735 Face 57894 21147 21238 28403 Face 57895 29515 24257 29647 Face 57896 28270 22065 29754 Face 57897 11671 26933 24470 Face 57898 25519 25611 25610 Face 57899 25518 25519 25610 Face 57900 25611 25712 25711 Face 57901 25610 25611 25711 Face 57902 25823 25822 25711 Face 57903 25712 25823 25711 Face 57904 25823 25932 25931 Face 57905 25822 25823 25931 Face 57906 26044 26043 25931 Face 57907 25932 26044 25931 Face 57908 26157 26156 26043 Face 57909 26044 26157 26043 Face 57910 26275 26274 26156 Face 57911 26157 26275 26156 Face 57912 26393 26392 26274 Face 57913 26275 26393 26274 Face 57914 26393 26511 26510 Face 57915 26392 26393 26510 Face 57916 26511 26626 26625 Face 57917 26510 26511 26625 Face 57918 26626 26741 26740 Face 57919 26625 26626 26740 Face 57920 26741 26855 26854 Face 57921 26740 26741 26854 Face 57922 26855 26970 26969 Face 57923 26854 26855 26969 Face 57924 26970 27084 27083 Face 57925 26969 26970 27083 Face 57926 27084 27200 27199 Face 57927 27083 27084 27199 Face 57928 27200 27312 27311 Face 57929 27199 27200 27311 Face 57930 27312 27429 27428 Face 57931 27311 27312 27428 Face 57932 27429 27550 27549 Face 57933 27428 27429 27549 Face 57934 27676 27675 27549 Face 57935 27550 27676 27549 Face 57936 27676 27807 27806 Face 57937 27675 27676 27806 Face 57938 27807 27938 27937 Face 57939 27806 27807 27937 Face 57940 27938 28070 28069 Face 57941 27937 27938 28069 Face 57942 28070 28207 28206 Face 57943 28069 28070 28206 Face 57944 28342 28341 28206 Face 57945 28207 28342 28206 Face 57946 28342 28476 28475 Face 57947 28341 28342 28475 Face 57948 28476 28613 28612 Face 57949 28475 28476 28612 Face 57950 28613 28741 28740 Face 57951 28612 28613 28740 Face 57952 28741 28868 28867 Face 57953 28740 28741 28867 Face 57954 28868 28993 28992 Face 57955 28867 28868 28992 Face 57956 28993 29124 29123 Face 57957 28992 28993 29123 Face 57958 29124 29254 29253 Face 57959 29123 29124 29253 Face 57960 29254 29385 29384 Face 57961 29253 29254 29384 Face 57962 25585 34390 6403 Face 57963 29384 29385 29515 Face 57964 29187 21797 29317 Face 57965 29779 29647 24914 Face 57966 24471 24347 24216 Face 57967 20424 20423 20338 Face 57968 2425 2688 29779 Face 57969 23932 25429 28933 Face 57970 3464 13038 22883 Face 57971 23139 6810 24998 Face 57972 17639 26877 28271 Face 57973 28371 28372 28506 Face 57974 6914 6707 11093 Face 57975 14668 6914 11093 Face 57976 16676 11051 25584 Face 57977 25734 25735 23445 Face 57978 25636 27161 28888 Face 57979 16667 25636 28888 Face 57980 25577 25668 25576 Face 57981 28570 28434 28888 Face 57982 25577 25576 25491 Face 57983 2425 29779 24914 Face 57984 28124 28261 28123 Face 57985 26303 20801 18877 Face 57986 5130 2293 16667 Face 57987 24738 27146 24599 Face 57988 28537 28536 28401 Face 57989 32125 32124 32020 Face 57990 29348 18559 2166 Face 57991 12883 28033 28170 Face 57992 24582 14762 25080 Face 57993 6586 26935 29013 Face 57994 11164 6586 29013 Face 57995 26935 19378 18719 Face 57996 29013 26935 18719 Face 57997 28402 28267 21146 Face 57998 20099 20178 24207 Face 57999 28683 18193 14088 Face 58000 28000 23377 26817 Face 58001 29818 29817 29686 Face 58002 29818 21546 29817 Face 58003 32232 32231 32127 Face 58004 31063 31062 30963 Face 58005 27847 27846 27717 Face 58006 27847 27979 27846 Face 58007 28915 29042 28914 Face 58008 29042 29173 29041 Face 58009 25757 25758 25864 Face 58010 25865 25976 25975 Face 58011 18972 28226 24200 Face 58012 27100 28139 28003 Face 58013 26663 26662 26546 Face 58014 8470 8149 6360 Face 58015 26324 26321 25494 Face 58016 26324 27626 26321 Face 58017 19266 28945 22369 Face 58018 34631 34281 34633 Face 58019 27492 28950 5130 Face 58020 28570 26303 28434 Face 58021 28261 28260 28123 Face 58022 5513 18445 26682 Face 58023 30250 19260 19259 Face 58024 25967 28148 28147 Face 58025 27709 27838 27837 Face 58026 26124 28429 27741 Face 58027 30628 25314 24351 Face 58028 16659 26438 25953 Face 58029 19265 25557 25556 Face 58030 30317 19262 19261 Face 58031 27969 27970 28102 Face 58032 25966 25967 28147 Face 58033 28131 18358 7127 Face 58034 28153 16659 25953 Face 58035 25161 24892 24323 Face 58036 31522 31635 31521 Face 58037 25557 25030 25649 Face 58038 24192 2691 24259 Face 58039 28131 7127 18508 Face 58040 24470 25519 25518 Face 58041 29725 13828 25026 Face 58042 25520 25612 25611 Face 58043 25519 25520 25611 Face 58044 25612 25713 25712 Face 58045 25611 25612 25712 Face 58046 25824 25823 25712 Face 58047 25713 25824 25712 Face 58048 25824 25933 25932 Face 58049 25823 25824 25932 Face 58050 26045 26044 25932 Face 58051 25933 26045 25932 Face 58052 26158 26157 26044 Face 58053 26045 26158 26044 Face 58054 26158 26276 26275 Face 58055 26157 26158 26275 Face 58056 26276 26394 26393 Face 58057 26275 26276 26393 Face 58058 26394 26512 26511 Face 58059 26393 26394 26511 Face 58060 26512 26627 26626 Face 58061 26511 26512 26626 Face 58062 26627 26742 26741 Face 58063 26626 26627 26741 Face 58064 26742 26856 26855 Face 58065 26741 26742 26855 Face 58066 26856 26971 26970 Face 58067 26855 26856 26970 Face 58068 26971 27085 27084 Face 58069 26970 26971 27084 Face 58070 27085 27201 27200 Face 58071 27084 27085 27200 Face 58072 27201 27313 27312 Face 58073 27200 27201 27312 Face 58074 27313 27430 27429 Face 58075 27312 27313 27429 Face 58076 27430 27551 27550 Face 58077 27429 27430 27550 Face 58078 27551 27677 27676 Face 58079 27550 27551 27676 Face 58080 27677 27808 27807 Face 58081 27676 27677 27807 Face 58082 27808 27939 27938 Face 58083 27807 27808 27938 Face 58084 27939 28071 28070 Face 58085 27938 27939 28070 Face 58086 28071 28208 28207 Face 58087 28070 28071 28207 Face 58088 28208 28343 28342 Face 58089 28207 28208 28342 Face 58090 28343 28477 28476 Face 58091 28342 28343 28476 Face 58092 28477 28614 28613 Face 58093 28476 28477 28613 Face 58094 28614 28742 28741 Face 58095 28613 28614 28741 Face 58096 28869 28868 28741 Face 58097 28742 28869 28741 Face 58098 28869 28994 28993 Face 58099 28868 28869 28993 Face 58100 28994 29125 29124 Face 58101 28993 28994 29124 Face 58102 29125 29255 29254 Face 58103 29124 29125 29254 Face 58104 29255 29386 29385 Face 58105 29254 29255 29385 Face 58106 26078 19699 19616 Face 58107 20582 20670 27098 Face 58108 28652 28653 28781 Face 58109 20848 20849 20937 Face 58110 25565 25566 27479 Face 58111 27480 27898 28165 Face 58112 24476 18254 26704 Face 58113 29023 29024 29154 Face 58114 23281 24476 27272 Face 58115 11229 12839 2932 Face 58116 17639 28294 26877 Face 58117 29679 29678 29546 Face 58118 14668 11093 18645 Face 58119 18755 14668 18645 Face 58120 25665 25664 25573 Face 58121 25664 25665 25767 Face 58122 29715 21069 27492 Face 58123 28950 2293 5130 Face 58124 26703 28131 18508 Face 58125 27765 28152 27871 Face 58126 18358 25749 7127 Face 58127 28152 19070 28009 Face 58128 25631 21069 29715 Face 58129 29079 25631 29715 Face 58130 27274 28420 28814 Face 58131 7584 27274 28814 Face 58132 2815 22047 22221 Face 58133 29340 29348 2166 Face 58134 22221 6586 2815 Face 58135 25568 29667 21603 Face 58136 22221 27277 26935 Face 58137 6586 22221 26935 Face 58138 17538 18724 18819 Face 58139 26935 27277 19378 Face 58140 21118 27691 21029 Face 58141 20619 23706 24865 Face 58142 28257 28391 28256 Face 58143 23627 26202 26086 Face 58144 29423 29424 29554 Face 58145 29687 29818 29686 Face 58146 32128 32232 32127 Face 58147 29731 18987 25489 Face 58148 27718 27717 27590 Face 58149 27718 27847 27717 Face 58150 28561 26874 29729 Face 58151 29173 29172 29041 Face 58152 25864 25865 25975 Face 58153 22951 18972 22277 Face 58154 30346 30345 30278 Face 58155 31810 31809 31697 Face 58156 23078 23022 14221 Face 58157 25848 25847 23425 Face 58158 6914 13549 11052 Face 58159 25525 26324 25494 Face 58160 20809 20905 23107 Face 58161 26763 27264 10715 Face 58162 28279 25631 29079 Face 58163 2293 25636 16667 Face 58164 20342 23910 23508 Face 58165 19070 27763 6159 Face 58166 27763 27327 6159 Face 58167 27763 26014 27327 Face 58168 19262 30317 19263 Face 58169 30724 23310 23631 Face 58170 23310 30724 30723 Face 58171 25556 19294 19265 Face 58172 22706 25557 19265 Face 58173 19261 30250 30317 Face 58174 25157 30536 25077 Face 58175 23303 17463 23246 Face 58176 24620 30626 23631 Face 58177 18430 33556 18634 Face 58178 34315 34549 18451 Face 58179 2046 25087 25086 Face 58180 25157 22463 30537 Face 58181 19263 30317 30384 Face 58182 32660 20525 20526 Face 58183 19248 2983 17262 Face 58184 32562 32689 32561 Face 58185 29385 29386 29517 Face 58186 33845 33846 16685 Face 58187 13263 24301 22992 Face 58188 26014 12233 27327 Face 58189 27385 27387 28031 Face 58190 26933 29856 29855 Face 58191 24938 23893 24012 Face 58192 25521 25613 25612 Face 58193 25520 25521 25612 Face 58194 25613 25714 25713 Face 58195 25612 25613 25713 Face 58196 25714 25825 25824 Face 58197 25713 25714 25824 Face 58198 25825 25934 25933 Face 58199 25824 25825 25933 Face 58200 25934 26046 26045 Face 58201 25933 25934 26045 Face 58202 26046 26159 26158 Face 58203 26045 26046 26158 Face 58204 26159 26277 26276 Face 58205 26158 26159 26276 Face 58206 26395 26394 26276 Face 58207 26277 26395 26276 Face 58208 26513 26512 26394 Face 58209 26395 26513 26394 Face 58210 26628 26627 26512 Face 58211 26513 26628 26512 Face 58212 26743 26742 26627 Face 58213 26628 26743 26627 Face 58214 26743 26857 26856 Face 58215 26742 26743 26856 Face 58216 26857 26972 26971 Face 58217 26856 26857 26971 Face 58218 26972 27086 27085 Face 58219 26971 26972 27085 Face 58220 27086 27202 27201 Face 58221 27085 27086 27201 Face 58222 27202 27314 27313 Face 58223 27201 27202 27313 Face 58224 27314 27431 27430 Face 58225 27313 27314 27430 Face 58226 27431 27552 27551 Face 58227 27430 27431 27551 Face 58228 27552 27678 27677 Face 58229 27551 27552 27677 Face 58230 27678 27809 27808 Face 58231 27677 27678 27808 Face 58232 27809 27940 27939 Face 58233 27808 27809 27939 Face 58234 27940 28072 28071 Face 58235 27939 27940 28071 Face 58236 28072 28209 28208 Face 58237 28071 28072 28208 Face 58238 28209 28344 28343 Face 58239 28208 28209 28343 Face 58240 28344 28478 28477 Face 58241 28343 28344 28477 Face 58242 28478 28615 28614 Face 58243 28477 28478 28614 Face 58244 28615 28743 28742 Face 58245 28614 28615 28742 Face 58246 28870 28869 28742 Face 58247 28743 28870 28742 Face 58248 28870 28995 28994 Face 58249 28869 28870 28994 Face 58250 28995 29126 29125 Face 58251 28994 28995 29125 Face 58252 29126 29256 29255 Face 58253 29125 29126 29255 Face 58254 29256 29387 29386 Face 58255 29255 29256 29386 Face 58256 29387 29518 29517 Face 58257 29386 29387 29517 Face 58258 26536 20012 26537 Face 58259 31166 31267 31165 Face 58260 27479 27480 28165 Face 58261 27898 29667 25568 Face 58262 20717 29405 34435 Face 58263 32024 32023 31918 Face 58264 15325 6525 1867 Face 58265 6525 7028 11167 Face 58266 25791 6592 26758 Face 58267 19187 1867 21266 Face 58268 18253 2294 2421 Face 58269 18243 18253 2421 Face 58270 25768 25875 25874 Face 58271 25767 25768 25874 Face 58272 26065 26066 28150 Face 58273 28151 28279 28168 Face 58274 20814 21762 20813 Face 58275 22048 3816 29015 Face 58276 29681 29812 29811 Face 58277 21950 22793 23656 Face 58278 21069 28950 27492 Face 58279 18654 17132 26065 Face 58280 24081 23742 19360 Face 58281 19440 24081 19360 Face 58282 26902 26299 27014 Face 58283 6796 6606 18243 Face 58284 23442 23595 23443 Face 58285 18724 17538 7174 Face 58286 33744 33870 33743 Face 58287 22221 20621 27277 Face 58288 26128 11428 26016 Face 58289 15576 18998 26702 Face 58290 31599 31598 31489 Face 58291 20495 26870 20496 Face 58292 18445 10987 26815 Face 58293 28257 28256 28119 Face 58294 29687 29686 29554 Face 58295 29555 29687 29554 Face 58296 34359 34502 34713 Face 58297 32338 32337 32231 Face 58298 27591 27718 27590 Face 58299 28249 28248 28111 Face 58300 27125 27241 27124 Face 58301 28561 29729 16673 Face 58302 19867 19866 19787 Face 58303 27153 12062 12149 Face 58304 28414 27365 28134 Face 58305 4217 21488 13581 Face 58306 19003 2547 21077 Face 58307 29717 19003 21077 Face 58308 18755 18645 2421 Face 58309 6707 6914 11052 Face 58310 25574 25665 25573 Face 58311 25665 25768 25767 Face 58312 29451 29452 18654 Face 58313 28168 28279 29079 Face 58314 28814 21009 21378 Face 58315 23367 21144 23464 Face 58316 29549 29681 29680 Face 58317 30150 30214 30213 Face 58318 30453 24425 30454 Face 58319 25573 25488 30827 Face 58320 19281 19252 19253 Face 58321 30029 30028 29967 Face 58322 31695 31694 31580 Face 58323 25025 23959 25435 Face 58324 29963 30024 29962 Face 58325 30209 30274 30208 Face 58326 15045 31535 15044 Face 58327 32129 32128 32024 Face 58328 30590 30591 30684 Face 58329 31313 31417 31312 Face 58330 34633 34281 34367 Face 58331 29067 26788 26448 Face 58332 28013 28406 29067 Face 58333 26448 28013 29067 Face 58334 23613 27154 22838 Face 58335 7923 34739 34648 Face 58336 32820 32952 32819 Face 58337 26412 26294 25324 Face 58338 27361 23601 24035 Face 58339 29680 29681 29811 Face 58340 23378 23181 23377 Face 58341 30082 30083 30144 Face 58342 28143 23121 23066 Face 58343 24447 23932 28933 Face 58344 25455 25522 25521 Face 58345 23553 25521 25520 Face 58346 25522 25614 25613 Face 58347 25521 25522 25613 Face 58348 25614 25715 25714 Face 58349 25613 25614 25714 Face 58350 25826 25825 25714 Face 58351 25715 25826 25714 Face 58352 25826 25935 25934 Face 58353 25825 25826 25934 Face 58354 26047 26046 25934 Face 58355 25935 26047 25934 Face 58356 26160 26159 26046 Face 58357 26047 26160 26046 Face 58358 26160 26278 26277 Face 58359 26159 26160 26277 Face 58360 26278 26396 26395 Face 58361 26277 26278 26395 Face 58362 26396 26514 26513 Face 58363 26395 26396 26513 Face 58364 26629 26628 26513 Face 58365 26514 26629 26513 Face 58366 26744 26743 26628 Face 58367 26629 26744 26628 Face 58368 26858 26857 26743 Face 58369 26744 26858 26743 Face 58370 26858 26973 26972 Face 58371 26857 26858 26972 Face 58372 26973 27087 27086 Face 58373 26972 26973 27086 Face 58374 27087 27203 27202 Face 58375 27086 27087 27202 Face 58376 27203 27315 27314 Face 58377 27202 27203 27314 Face 58378 27315 27432 27431 Face 58379 27314 27315 27431 Face 58380 27432 27553 27552 Face 58381 27431 27432 27552 Face 58382 27553 27679 27678 Face 58383 27552 27553 27678 Face 58384 27679 27810 27809 Face 58385 27678 27679 27809 Face 58386 27810 27941 27940 Face 58387 27809 27810 27940 Face 58388 27941 28073 28072 Face 58389 27940 27941 28072 Face 58390 28073 28210 28209 Face 58391 28072 28073 28209 Face 58392 28210 28345 28344 Face 58393 28209 28210 28344 Face 58394 28345 28479 28478 Face 58395 28344 28345 28478 Face 58396 28479 28616 28615 Face 58397 28478 28479 28615 Face 58398 28744 28743 28615 Face 58399 28616 28744 28615 Face 58400 28744 28871 28870 Face 58401 28743 28744 28870 Face 58402 28871 28996 28995 Face 58403 28870 28871 28995 Face 58404 28996 29127 29126 Face 58405 28995 28996 29126 Face 58406 29127 29257 29256 Face 58407 29126 29127 29256 Face 58408 29257 29388 29387 Face 58409 29256 29257 29387 Face 58410 29388 29519 29518 Face 58411 29387 29388 29518 Face 58412 28499 34687 28363 Face 58413 29519 29651 29518 Face 58414 28165 27898 25568 Face 58415 23996 25322 13294 Face 58416 2682 21359 24502 Face 58417 29907 29906 29852 Face 58418 27605 27637 27509 Face 58419 27604 27605 27509 Face 58420 25791 18655 6592 Face 58421 23569 23485 23486 Face 58422 29437 29568 29436 Face 58423 29700 29699 29567 Face 58424 25770 25877 25876 Face 58425 27495 28698 25851 Face 58426 27760 27771 29451 Face 58427 28150 28151 28168 Face 58428 25775 25795 27632 Face 58429 27636 27365 28414 Face 58430 24739 27145 24738 Face 58431 22369 28680 13269 Face 58432 26066 28151 28150 Face 58433 26437 27771 27760 Face 58434 30021 30083 30082 Face 58435 30027 30028 30089 Face 58436 26299 28633 27014 Face 58437 6606 18253 18243 Face 58438 7474 676 564 Face 58439 12526 16192 3631 Face 58440 24776 11494 8781 Face 58441 8781 12837 24776 Face 58442 895 15904 7297 Face 58443 23954 25874 25982 Face 58444 27897 23878 22955 Face 58445 26203 26204 27490 Face 58446 19082 18658 18765 Face 58447 6824 26186 6726 Face 58448 19084 18659 18658 Face 58449 19082 19084 18658 Face 58450 34594 12350 29014 Face 58451 7231 7230 32631 Face 58452 28112 28249 28111 Face 58453 28383 28382 28248 Face 58454 28824 27386 6403 Face 58455 27241 27240 27124 Face 58456 24503 23391 22787 Face 58457 25417 25418 26126 Face 58458 26296 27361 28163 Face 58459 23954 24013 24014 Face 58460 26068 17639 28271 Face 58461 28294 26758 26877 Face 58462 6606 6796 29699 Face 58463 2294 18755 2421 Face 58464 25495 11079 25431 Face 58465 25666 25667 25769 Face 58466 25548 26437 26425 Face 58467 17132 26066 26065 Face 58468 26299 429 28633 Face 58469 27342 27461 27460 Face 58470 27050 19199 24495 Face 58471 25574 25573 25490 Face 58472 16670 29457 23172 Face 58473 25575 25490 30926 Face 58474 30926 25491 25575 Face 58475 24740 24389 27256 Face 58476 29968 29967 29909 Face 58477 32694 32827 32693 Face 58478 32827 32959 32826 Face 58479 26190 28500 28016 Face 58480 32959 32958 32826 Face 58481 30435 30506 30505 Face 58482 26190 28016 27015 Face 58483 13749 13366 10331 Face 58484 22872 19454 25750 Face 58485 18547 26448 26903 Face 58486 27015 18547 26903 Face 58487 27873 28013 26448 Face 58488 18547 27873 26448 Face 58489 24495 19199 27641 Face 58490 27873 27613 28013 Face 58491 25774 25883 22991 Face 58492 27641 19199 19198 Face 58493 13439 28953 28952 Face 58494 28007 23990 23872 Face 58495 27327 24511 24647 Face 58496 21198 22516 26590 Face 58497 14385 12107 11936 Face 58498 25421 25455 26927 Face 58499 25421 25456 25455 Face 58500 30178 30242 30177 Face 58501 25456 25523 25522 Face 58502 25455 25456 25522 Face 58503 25523 25615 25614 Face 58504 25522 25523 25614 Face 58505 25615 25716 25715 Face 58506 25614 25615 25715 Face 58507 25827 25826 25715 Face 58508 25716 25827 25715 Face 58509 25827 25936 25935 Face 58510 25826 25827 25935 Face 58511 25936 26048 26047 Face 58512 25935 25936 26047 Face 58513 26048 26161 26160 Face 58514 26047 26048 26160 Face 58515 26161 26279 26278 Face 58516 26160 26161 26278 Face 58517 26279 26397 26396 Face 58518 26278 26279 26396 Face 58519 26397 26515 26514 Face 58520 26396 26397 26514 Face 58521 26630 26629 26514 Face 58522 26515 26630 26514 Face 58523 26745 26744 26629 Face 58524 26630 26745 26629 Face 58525 26859 26858 26744 Face 58526 26745 26859 26744 Face 58527 26859 26974 26973 Face 58528 26858 26859 26973 Face 58529 26974 27088 27087 Face 58530 26973 26974 27087 Face 58531 27088 27204 27203 Face 58532 27087 27088 27203 Face 58533 27204 27316 27315 Face 58534 27203 27204 27315 Face 58535 27316 27433 27432 Face 58536 27315 27316 27432 Face 58537 27433 27554 27553 Face 58538 27432 27433 27553 Face 58539 27554 27680 27679 Face 58540 27553 27554 27679 Face 58541 27680 27811 27810 Face 58542 27679 27680 27810 Face 58543 27811 27942 27941 Face 58544 27810 27811 27941 Face 58545 27942 28074 28073 Face 58546 27941 27942 28073 Face 58547 28074 28211 28210 Face 58548 28073 28074 28210 Face 58549 28211 28346 28345 Face 58550 28210 28211 28345 Face 58551 28346 28480 28479 Face 58552 28345 28346 28479 Face 58553 28480 28617 28616 Face 58554 28479 28480 28616 Face 58555 28745 28744 28616 Face 58556 28617 28745 28616 Face 58557 28745 28872 28871 Face 58558 28744 28745 28871 Face 58559 28872 28997 28996 Face 58560 28871 28872 28996 Face 58561 28997 29128 29127 Face 58562 28996 28997 29127 Face 58563 29128 29258 29257 Face 58564 29127 29128 29257 Face 58565 29389 29388 29257 Face 58566 29258 29389 29257 Face 58567 29389 29520 29519 Face 58568 29388 29389 29519 Face 58569 29520 29652 29651 Face 58570 29519 29520 29651 Face 58571 19990 22152 20737 Face 58572 32699 32832 32698 Face 58573 31019 31018 30921 Face 58574 22787 23391 25848 Face 58575 27637 19197 27959 Face 58576 27509 27637 27959 Face 58577 28026 18767 27622 Face 58578 27494 28026 27622 Face 58579 29306 29437 29305 Face 58580 29568 29700 29567 Face 58581 25851 26205 18361 Face 58582 27861 27993 27860 Face 58583 26985 25548 25547 Face 58584 29452 17132 18654 Face 58585 28100 28101 28237 Face 58586 26543 26659 26658 Face 58587 25654 26792 27996 Face 58588 11001 3173 26909 Face 58589 29723 18580 2424 Face 58590 26425 26437 27760 Face 58591 27771 29452 29451 Face 58592 23451 20014 24226 Face 58593 27861 27860 27731 Face 58594 23575 27251 23433 Face 58595 28762 18444 26440 Face 58596 17197 17713 23050 Face 58597 23121 23120 23065 Face 58598 14500 17542 18423 Face 58599 17713 12002 23050 Face 58600 21547 19082 21548 Face 58601 20981 16664 4888 Face 58602 28028 22761 28029 Face 58603 19082 19083 21548 Face 58604 28028 28029 27158 Face 58605 27359 28028 27158 Face 58606 18659 6530 5387 Face 58607 18658 18659 5387 Face 58608 26124 27741 27742 Face 58609 22258 29272 22163 Face 58610 28249 28383 28248 Face 58611 28383 28518 28517 Face 58612 27499 29212 29205 Face 58613 15576 20574 28437 Face 58614 29740 23910 29739 Face 58615 25484 26295 26242 Face 58616 19197 26296 18544 Face 58617 18544 26296 28163 Face 58618 28294 25791 26758 Face 58619 18655 28944 6592 Face 58620 29176 29306 29175 Face 58621 29700 6606 29699 Face 58622 27732 27861 27731 Face 58623 27993 27992 27860 Face 58624 323 3173 324 Face 58625 25547 25548 26425 Face 58626 21168 18753 21169 Face 58627 18753 20715 20713 Face 58628 34831 9314 9427 Face 58629 22708 16176 27641 Face 58630 30927 30926 25490 Face 58631 30928 30927 30827 Face 58632 25490 30827 30927 Face 58633 30827 25490 25573 Face 58634 29910 29968 29909 Face 58635 30117 30179 30116 Face 58636 33093 33092 32958 Face 58637 32959 33093 32958 Face 58638 12454 34763 23753 Face 58639 28635 25471 28764 Face 58640 26762 28016 28635 Face 58641 28764 26762 28635 Face 58642 27132 27015 28016 Face 58643 26762 27132 28016 Face 58644 10860 18547 27015 Face 58645 27132 10860 27015 Face 58646 16674 27873 18547 Face 58647 10860 16674 18547 Face 58648 29201 27613 27873 Face 58649 16674 29201 27873 Face 58650 23362 23361 23304 Face 58651 29201 17463 27613 Face 58652 28822 23652 23569 Face 58653 25764 25661 23315 Face 58654 28532 28667 28531 Face 58655 29036 29037 29167 Face 58656 29713 22088 22183 Face 58657 19537 24535 24338 Face 58658 24470 24194 25519 Face 58659 34000 16769 16768 Face 58660 34000 16768 33873 Face 58661 25457 25524 25523 Face 58662 25456 25457 25523 Face 58663 25524 25616 25615 Face 58664 25523 25524 25615 Face 58665 25616 25717 25716 Face 58666 25615 25616 25716 Face 58667 25717 25828 25827 Face 58668 25716 25717 25827 Face 58669 25828 25937 25936 Face 58670 25827 25828 25936 Face 58671 25937 26049 26048 Face 58672 25936 25937 26048 Face 58673 26162 26161 26048 Face 58674 26049 26162 26048 Face 58675 26280 26279 26161 Face 58676 26162 26280 26161 Face 58677 26280 26398 26397 Face 58678 26279 26280 26397 Face 58679 26398 26516 26515 Face 58680 26397 26398 26515 Face 58681 26516 26631 26630 Face 58682 26515 26516 26630 Face 58683 26631 26746 26745 Face 58684 26630 26631 26745 Face 58685 26746 26860 26859 Face 58686 26745 26746 26859 Face 58687 26860 26975 26974 Face 58688 26859 26860 26974 Face 58689 26975 27089 27088 Face 58690 26974 26975 27088 Face 58691 27089 27205 27204 Face 58692 27088 27089 27204 Face 58693 27317 27316 27204 Face 58694 27205 27317 27204 Face 58695 27434 27433 27316 Face 58696 27317 27434 27316 Face 58697 27434 27555 27554 Face 58698 27433 27434 27554 Face 58699 27555 27681 27680 Face 58700 27554 27555 27680 Face 58701 27681 27812 27811 Face 58702 27680 27681 27811 Face 58703 27812 27943 27942 Face 58704 27811 27812 27942 Face 58705 27943 28075 28074 Face 58706 27942 27943 28074 Face 58707 28075 28212 28211 Face 58708 28074 28075 28211 Face 58709 28212 28347 28346 Face 58710 28211 28212 28346 Face 58711 28347 28481 28480 Face 58712 28346 28347 28480 Face 58713 28481 28618 28617 Face 58714 28480 28481 28617 Face 58715 28746 28745 28617 Face 58716 28618 28746 28617 Face 58717 28746 28873 28872 Face 58718 28745 28746 28872 Face 58719 28873 28998 28997 Face 58720 28872 28873 28997 Face 58721 28998 29129 29128 Face 58722 28997 28998 29128 Face 58723 29129 29259 29258 Face 58724 29128 29129 29258 Face 58725 29390 29389 29258 Face 58726 29259 29390 29258 Face 58727 29521 29520 29389 Face 58728 29390 29521 29389 Face 58729 29521 29653 29652 Face 58730 29520 29521 29652 Face 58731 15154 20283 1768 Face 58732 23662 23496 28365 Face 58733 28030 18544 23589 Face 58734 14773 27049 27047 Face 58735 18867 18863 25642 Face 58736 6588 6589 20613 Face 58737 27130 26015 18767 Face 58738 28026 27130 18767 Face 58739 29176 29175 29044 Face 58740 29568 29567 29436 Face 58741 28126 28125 27992 Face 58742 27993 28126 27992 Face 58743 17139 20797 324 Face 58744 26909 26985 25547 Face 58745 24194 23553 25520 Face 58746 27510 19191 18820 Face 58747 25013 18782 22983 Face 58748 30895 30894 30788 Face 58749 539 20797 17139 Face 58750 541 539 17139 Face 58751 28263 28262 28125 Face 58752 28126 28263 28125 Face 58753 23673 9642 17713 Face 58754 26657 26656 26540 Face 58755 22709 24288 24287 Face 58756 25845 25846 24012 Face 58757 22764 23957 12002 Face 58758 26015 27130 24506 Face 58759 29202 29205 18973 Face 58760 26421 20523 20610 Face 58761 29581 24751 24752 Face 58762 28153 25953 27245 Face 58763 27115 27231 27230 Face 58764 27580 27707 27706 Face 58765 28525 28660 28524 Face 58766 29179 29309 29178 Face 58767 6715 16963 6287 Face 58768 29571 29570 29439 Face 58769 10987 26908 26815 Face 58770 29461 29470 18445 Face 58771 28382 28383 28517 Face 58772 28517 28518 28652 Face 58773 11693 34779 34716 Face 58774 30964 31063 30963 Face 58775 29748 29741 2678 Face 58776 23191 23246 19681 Face 58777 25651 27605 27604 Face 58778 27959 19197 18544 Face 58779 27494 27622 28944 Face 58780 18655 27494 28944 Face 58781 29045 29176 29044 Face 58782 29437 29436 29305 Face 58783 28397 28396 28262 Face 58784 28263 28397 28262 Face 58785 18983 539 541 Face 58786 3173 26985 26909 Face 58787 25760 25867 25866 Face 58788 22983 18782 29788 Face 58789 31538 16785 25671 Face 58790 31430 31538 25671 Face 58791 25883 25774 16873 Face 58792 30774 30880 30773 Face 58793 26585 11733 26700 Face 58794 30692 30791 30691 Face 58795 32058 32162 32057 Face 58796 29910 29909 29855 Face 58797 29856 29910 29855 Face 58798 32190 32294 32189 Face 58799 33228 33227 33092 Face 58800 29017 28764 27330 Face 58801 31605 31606 31719 Face 58802 25552 26762 28764 Face 58803 29017 25552 28764 Face 58804 27248 27132 26762 Face 58805 25552 27248 26762 Face 58806 26332 10860 27132 Face 58807 27248 26332 27132 Face 58808 28005 16674 10860 Face 58809 26332 28005 10860 Face 58810 28553 29201 16674 Face 58811 28005 28553 16674 Face 58812 28284 17463 29201 Face 58813 28553 28284 29201 Face 58814 24667 22891 24668 Face 58815 28284 18551 17463 Face 58816 27137 27129 23958 Face 58817 24469 25524 25457 Face 58818 18008 18742 18980 Face 58819 3173 11001 324 Face 58820 15642 16404 14680 Face 58821 25759 25760 25866 Face 58822 17984 17983 20287 Face 58823 34000 33873 33874 Face 58824 23651 23652 23756 Face 58825 21762 26785 26648 Face 58826 20205 20287 17983 Face 58827 20204 20205 17983 Face 58828 25617 25718 25717 Face 58829 25616 25617 25717 Face 58830 25829 25828 25717 Face 58831 25718 25829 25717 Face 58832 25829 25938 25937 Face 58833 25828 25829 25937 Face 58834 25938 26050 26049 Face 58835 25937 25938 26049 Face 58836 26163 26162 26049 Face 58837 26050 26163 26049 Face 58838 26281 26280 26162 Face 58839 26163 26281 26162 Face 58840 26399 26398 26280 Face 58841 26281 26399 26280 Face 58842 26517 26516 26398 Face 58843 26399 26517 26398 Face 58844 26632 26631 26516 Face 58845 26517 26632 26516 Face 58846 26632 26747 26746 Face 58847 26631 26632 26746 Face 58848 26747 26861 26860 Face 58849 26746 26747 26860 Face 58850 26861 26976 26975 Face 58851 26860 26861 26975 Face 58852 27090 27089 26975 Face 58853 26976 27090 26975 Face 58854 27206 27205 27089 Face 58855 27090 27206 27089 Face 58856 27318 27317 27205 Face 58857 27206 27318 27205 Face 58858 27435 27434 27317 Face 58859 27318 27435 27317 Face 58860 27556 27555 27434 Face 58861 27435 27556 27434 Face 58862 27682 27681 27555 Face 58863 27556 27682 27555 Face 58864 27682 27813 27812 Face 58865 27681 27682 27812 Face 58866 27813 27944 27943 Face 58867 27812 27813 27943 Face 58868 27944 28076 28075 Face 58869 27943 27944 28075 Face 58870 28076 28213 28212 Face 58871 28075 28076 28212 Face 58872 28213 28348 28347 Face 58873 28212 28213 28347 Face 58874 28348 28482 28481 Face 58875 28347 28348 28481 Face 58876 28482 28619 28618 Face 58877 28481 28482 28618 Face 58878 28747 28746 28618 Face 58879 28619 28747 28618 Face 58880 28747 28874 28873 Face 58881 28746 28747 28873 Face 58882 28874 28999 28998 Face 58883 28873 28874 28998 Face 58884 29130 29129 28998 Face 58885 28999 29130 28998 Face 58886 29260 29259 29129 Face 58887 29130 29260 29129 Face 58888 29391 29390 29259 Face 58889 29260 29391 29259 Face 58890 29522 29521 29390 Face 58891 29391 29522 29390 Face 58892 29654 29653 29521 Face 58893 29522 29654 29521 Face 58894 29653 24761 24471 Face 58895 21413 29611 29480 Face 58896 28031 23123 11304 Face 58897 23578 28428 23416 Face 58898 26453 26471 27827 Face 58899 18863 25651 25642 Face 58900 28792 28918 28791 Face 58901 23865 27261 24394 Face 58902 29310 29309 29179 Face 58903 29045 29044 28917 Face 58904 29709 7123 29708 Face 58905 28532 28531 28396 Face 58906 34439 34396 27330 Face 58907 7123 18742 18008 Face 58908 8312 1770 1887 Face 58909 21396 21397 21490 Face 58910 22839 23976 22790 Face 58911 20797 323 324 Face 58912 29577 29709 29576 Face 58913 28667 28796 28666 Face 58914 28796 28795 28666 Face 58915 26896 26895 26781 Face 58916 26782 26896 26781 Face 58917 28497 28495 23495 Face 58918 28437 18998 15576 Face 58919 24776 12837 23721 Face 58920 22839 9642 23673 Face 58921 29205 20981 18973 Face 58922 19602 19520 19521 Face 58923 29692 16956 29691 Face 58924 28373 28508 28507 Face 58925 27967 27968 28100 Face 58926 28101 28238 28237 Face 58927 18353 25955 6287 Face 58928 24786 24918 24785 Face 58929 29690 7128 6655 Face 58930 29689 29690 6655 Face 58931 29558 29690 29689 Face 58932 29557 29558 29689 Face 58933 28518 28653 28652 Face 58934 28653 28782 28781 Face 58935 27515 29274 29273 Face 58936 22760 25568 21603 Face 58937 25951 25980 25483 Face 58938 11733 11816 26700 Face 58939 26239 26240 27572 Face 58940 25642 25651 27604 Face 58941 19280 24602 19281 Face 58942 20390 26178 26187 Face 58943 28528 28663 28527 Face 58944 29306 29305 29175 Face 58945 28397 28532 28396 Face 58946 28667 28666 28531 Face 58947 29446 29577 29445 Face 58948 18980 18983 541 Face 58949 27891 27770 16868 Face 58950 29781 27891 16868 Face 58951 9875 29750 16030 Face 58952 25578 31122 31223 Face 58953 34132 34131 34005 Face 58954 33878 33877 33751 Face 58955 32266 32265 32161 Face 58956 30791 30790 30691 Face 58957 30692 30691 30597 Face 58958 30598 30692 30597 Face 58959 33093 33228 33092 Face 58960 33364 33363 33227 Face 58961 32044 32043 31938 Face 58962 34746 34332 34374 Face 58963 29278 29017 27448 Face 58964 6614 29278 27448 Face 58965 26077 25552 29017 Face 58966 29278 26077 29017 Face 58967 27358 27248 25552 Face 58968 26077 27358 25552 Face 58969 28821 26332 27248 Face 58970 27358 28821 27248 Face 58971 29196 28005 26332 Face 58972 28821 29196 26332 Face 58973 28416 28553 28005 Face 58974 29196 28416 28005 Face 58975 28817 28284 28553 Face 58976 28416 28817 28553 Face 58977 6161 18551 28284 Face 58978 28817 6161 28284 Face 58979 33086 33221 33085 Face 58980 20490 20576 23077 Face 58981 18742 18983 18980 Face 58982 26358 11665 26357 Face 58983 20888 18971 27770 Face 58984 27891 20888 27770 Face 58985 29782 29737 18971 Face 58986 11545 12107 12476 Face 58987 25325 22987 23093 Face 58988 20537 20697 24818 Face 58989 25981 23775 25872 Face 58990 19770 13631 22677 Face 58991 25618 25719 25718 Face 58992 25617 25618 25718 Face 58993 25830 25829 25718 Face 58994 25719 25830 25718 Face 58995 25939 25938 25829 Face 58996 25830 25939 25829 Face 58997 25939 26051 26050 Face 58998 25938 25939 26050 Face 58999 26164 26163 26050 Face 59000 26051 26164 26050 Face 59001 26282 26281 26163 Face 59002 26164 26282 26163 Face 59003 26400 26399 26281 Face 59004 26282 26400 26281 Face 59005 26518 26517 26399 Face 59006 26400 26518 26399 Face 59007 26633 26632 26517 Face 59008 26518 26633 26517 Face 59009 26748 26747 26632 Face 59010 26633 26748 26632 Face 59011 26862 26861 26747 Face 59012 26748 26862 26747 Face 59013 26977 26976 26861 Face 59014 26862 26977 26861 Face 59015 27091 27090 26976 Face 59016 26977 27091 26976 Face 59017 27207 27206 27090 Face 59018 27091 27207 27090 Face 59019 27319 27318 27206 Face 59020 27207 27319 27206 Face 59021 27436 27435 27318 Face 59022 27319 27436 27318 Face 59023 27557 27556 27435 Face 59024 27436 27557 27435 Face 59025 27683 27682 27556 Face 59026 27557 27683 27556 Face 59027 27683 27814 27813 Face 59028 27682 27683 27813 Face 59029 27814 27945 27944 Face 59030 27813 27814 27944 Face 59031 27945 28077 28076 Face 59032 27944 27945 28076 Face 59033 28214 28213 28076 Face 59034 28077 28214 28076 Face 59035 28214 28349 28348 Face 59036 28213 28214 28348 Face 59037 28349 28483 28482 Face 59038 28348 28349 28482 Face 59039 28620 28619 28482 Face 59040 28483 28620 28482 Face 59041 28748 28747 28619 Face 59042 28620 28748 28619 Face 59043 28748 28875 28874 Face 59044 28747 28748 28874 Face 59045 28875 29000 28999 Face 59046 28874 28875 28999 Face 59047 29131 29130 28999 Face 59048 29000 29131 28999 Face 59049 29261 29260 29130 Face 59050 29131 29261 29130 Face 59051 29392 29391 29260 Face 59052 29261 29392 29260 Face 59053 29392 29523 29522 Face 59054 29391 29392 29522 Face 59055 29655 29654 29522 Face 59056 29523 29655 29522 Face 59057 20957 21413 21141 Face 59058 29655 29786 29654 Face 59059 22460 22365 29803 Face 59060 16519 22048 6587 Face 59061 25781 33015 25673 Face 59062 28399 28398 28264 Face 59063 28663 28792 28662 Face 59064 28918 29045 28917 Face 59065 28922 29049 28921 Face 59066 29180 29310 29179 Face 59067 29446 29445 29314 Face 59068 6605 7123 18008 Face 59069 20888 29782 18971 Face 59070 29648 4621 29737 Face 59071 29782 29648 29737 Face 59072 27746 27615 4621 Face 59073 7123 6605 29708 Face 59074 29315 29314 29184 Face 59075 28922 28921 28795 Face 59076 28796 28922 28795 Face 59077 22885 24997 22790 Face 59078 28792 28791 28662 Face 59079 31122 25578 11691 Face 59080 22821 22868 22867 Face 59081 29582 23120 23121 Face 59082 23121 23065 23066 Face 59083 27491 29205 29202 Face 59084 25671 16873 25774 Face 59085 18357 28023 25645 Face 59086 29425 29426 29556 Face 59087 29218 20985 21070 Face 59088 29212 29218 21070 Face 59089 18758 16184 18757 Face 59090 27114 27115 27230 Face 59091 29295 29296 29426 Face 59092 29427 29558 29557 Face 59093 7025 7132 7021 Face 59094 6909 7025 7021 Face 59095 6581 25454 25453 Face 59096 7025 6581 6580 Face 59097 27595 27594 27474 Face 59098 6580 6581 25453 Face 59099 25476 25480 26239 Face 59100 21023 23077 20576 Face 59101 28947 17054 20794 Face 59102 26240 27611 27572 Face 59103 29065 26565 29725 Face 59104 11649 26685 26796 Face 59105 28393 28528 28392 Face 59106 28663 28662 28527 Face 59107 29049 29048 28921 Face 59108 29572 29571 29440 Face 59109 29185 29184 29053 Face 59110 29709 29708 29576 Face 59111 29648 27746 4621 Face 59112 29326 27159 27615 Face 59113 16873 25671 16785 Face 59114 31922 31921 31814 Face 59115 31326 25578 31223 Face 59116 33236 33372 33235 Face 59117 33236 33235 33100 Face 59118 33497 33496 33363 Face 59119 33497 33624 33496 Face 59120 33364 33497 33363 Face 59121 33624 33623 33496 Face 59122 25670 31326 25671 Face 59123 18264 34721 25683 Face 59124 34522 34465 34675 Face 59125 11387 11469 7351 Face 59126 29409 29278 6614 Face 59127 29591 29409 6614 Face 59128 29619 26077 29278 Face 59129 29409 29619 29278 Face 59130 27328 27358 26077 Face 59131 29619 27328 26077 Face 59132 18844 28821 27358 Face 59133 27328 18844 27358 Face 59134 21453 29196 28821 Face 59135 18844 21453 28821 Face 59136 27221 28416 29196 Face 59137 21453 27221 29196 Face 59138 28413 28817 28416 Face 59139 27221 28413 28416 Face 59140 10734 6161 28817 Face 59141 28413 10734 28817 Face 59142 23596 23597 24818 Face 59143 22787 23506 25849 Face 59144 23022 23078 23077 Face 59145 28372 28507 28506 Face 59146 28927 29054 28926 Face 59147 29577 29576 29445 Face 59148 27746 29326 27615 Face 59149 27160 28546 27159 Face 59150 25618 23093 25526 Face 59151 29326 27160 27159 Face 59152 25526 25619 25618 Face 59153 20242 20325 20241 Face 59154 25619 25720 25719 Face 59155 25618 25619 25719 Face 59156 25720 25831 25830 Face 59157 25719 25720 25830 Face 59158 25940 25939 25830 Face 59159 25831 25940 25830 Face 59160 25940 26052 26051 Face 59161 25939 25940 26051 Face 59162 26165 26164 26051 Face 59163 26052 26165 26051 Face 59164 26283 26282 26164 Face 59165 26165 26283 26164 Face 59166 26401 26400 26282 Face 59167 26283 26401 26282 Face 59168 26519 26518 26400 Face 59169 26401 26519 26400 Face 59170 26634 26633 26518 Face 59171 26519 26634 26518 Face 59172 26749 26748 26633 Face 59173 26634 26749 26633 Face 59174 26863 26862 26748 Face 59175 26749 26863 26748 Face 59176 26978 26977 26862 Face 59177 26863 26978 26862 Face 59178 27092 27091 26977 Face 59179 26978 27092 26977 Face 59180 27208 27207 27091 Face 59181 27092 27208 27091 Face 59182 27320 27319 27207 Face 59183 27208 27320 27207 Face 59184 27437 27436 27319 Face 59185 27320 27437 27319 Face 59186 27558 27557 27436 Face 59187 27437 27558 27436 Face 59188 27684 27683 27557 Face 59189 27558 27684 27557 Face 59190 27815 27814 27683 Face 59191 27684 27815 27683 Face 59192 27946 27945 27814 Face 59193 27815 27946 27814 Face 59194 28078 28077 27945 Face 59195 27946 28078 27945 Face 59196 28078 28215 28214 Face 59197 28077 28078 28214 Face 59198 28215 28350 28349 Face 59199 28214 28215 28349 Face 59200 28484 28483 28349 Face 59201 28350 28484 28349 Face 59202 28621 28620 28483 Face 59203 28484 28621 28483 Face 59204 28749 28748 28620 Face 59205 28621 28749 28620 Face 59206 28876 28875 28748 Face 59207 28749 28876 28748 Face 59208 28876 29001 29000 Face 59209 28875 28876 29000 Face 59210 29132 29131 29000 Face 59211 29001 29132 29000 Face 59212 29262 29261 29131 Face 59213 29132 29262 29131 Face 59214 29262 29393 29392 Face 59215 29261 29262 29392 Face 59216 29393 29524 29523 Face 59217 29392 29393 29523 Face 59218 29524 29656 29655 Face 59219 29523 29524 29655 Face 59220 29656 29787 29786 Face 59221 29655 29656 29786 Face 59222 12148 27152 27153 Face 59223 29787 18782 29786 Face 59224 24399 24415 24394 Face 59225 21361 24997 21360 Face 59226 28259 28393 28258 Face 59227 28918 28917 28791 Face 59228 29180 29179 29048 Face 59229 29049 29180 29048 Face 59230 28801 28927 28800 Face 59231 29315 29446 29314 Face 59232 27278 27250 28546 Face 59233 27160 27278 28546 Face 59234 27275 27163 27250 Face 59235 27278 27275 27250 Face 59236 29185 29315 29184 Face 59237 28672 28801 28671 Face 59238 29441 29440 29309 Face 59239 29310 29441 29309 Face 59240 29189 2420 29188 Face 59241 28393 28392 28258 Face 59242 22413 22147 19266 Face 59243 23900 24536 24672 Face 59244 23573 21950 23656 Face 59245 27954 27822 21211 Face 59246 27490 27491 29202 Face 59247 20575 20573 20661 Face 59248 28390 28389 28255 Face 59249 28256 28390 28255 Face 59250 27500 29218 29212 Face 59251 27499 27500 29212 Face 59252 27707 27836 27835 Face 59253 27741 2168 5257 Face 59254 29296 29427 29426 Face 59255 24512 24647 24511 Face 59256 7132 7025 6580 Face 59257 26217 27515 27514 Face 59258 27722 27851 27721 Face 59259 16187 21752 19590 Face 59260 25857 25480 25476 Face 59261 27475 27595 27474 Face 59262 24168 24167 2939 Face 59263 25685 25857 25476 Face 59264 25774 22991 25773 Face 59265 17054 29466 20794 Face 59266 28261 28395 28260 Face 59267 20576 10734 20755 Face 59268 28259 28258 28121 Face 59269 27728 27727 27600 Face 59270 18715 19149 18665 Face 59271 29441 29572 29440 Face 59272 28672 28671 28536 Face 59273 29054 29185 29053 Face 59274 27275 17459 17103 Face 59275 27163 27275 17103 Face 59276 32669 32795 16806 Face 59277 16806 25901 32669 Face 59278 31588 31587 31478 Face 59279 30574 30573 30488 Face 59280 34001 34127 34000 Face 59281 33117 33252 33116 Face 59282 29908 29966 29907 Face 59283 30027 30026 29965 Face 59284 11856 13757 11939 Face 59285 29965 29964 29906 Face 59286 28564 18264 25792 Face 59287 26013 28564 25792 Face 59288 25472 29591 18264 Face 59289 28564 25472 18264 Face 59290 29600 29409 29591 Face 59291 25472 29600 29591 Face 59292 27106 29619 29409 Face 59293 29600 27106 29409 Face 59294 26675 27328 29619 Face 59295 27106 26675 29619 Face 59296 29747 18844 27328 Face 59297 26675 29747 27328 Face 59298 26644 21453 18844 Face 59299 29747 26644 18844 Face 59300 27868 27221 21453 Face 59301 26644 27868 21453 Face 59302 29200 28413 27221 Face 59303 27868 29200 27221 Face 59304 29200 16705 10734 Face 59305 28413 29200 10734 Face 59306 29011 22066 29142 Face 59307 21753 28133 21658 Face 59308 25278 24502 24997 Face 59309 4592 26702 29464 Face 59310 7022 6908 18661 Face 59311 27014 27131 25964 Face 59312 17459 29336 29468 Face 59313 17103 17459 29468 Face 59314 25882 25778 25886 Face 59315 25461 25527 25526 Face 59316 29804 29803 22461 Face 59317 25527 25620 25619 Face 59318 25526 25527 25619 Face 59319 25620 25721 25720 Face 59320 25619 25620 25720 Face 59321 25721 25832 25831 Face 59322 25720 25721 25831 Face 59323 25941 25940 25831 Face 59324 25832 25941 25831 Face 59325 25941 26053 26052 Face 59326 25940 25941 26052 Face 59327 26166 26165 26052 Face 59328 26053 26166 26052 Face 59329 26284 26283 26165 Face 59330 26166 26284 26165 Face 59331 26402 26401 26283 Face 59332 26284 26402 26283 Face 59333 26520 26519 26401 Face 59334 26402 26520 26401 Face 59335 26635 26634 26519 Face 59336 26520 26635 26519 Face 59337 26750 26749 26634 Face 59338 26635 26750 26634 Face 59339 26864 26863 26749 Face 59340 26750 26864 26749 Face 59341 26979 26978 26863 Face 59342 26864 26979 26863 Face 59343 27093 27092 26978 Face 59344 26979 27093 26978 Face 59345 27209 27208 27092 Face 59346 27093 27209 27092 Face 59347 27321 27320 27208 Face 59348 27209 27321 27208 Face 59349 27438 27437 27320 Face 59350 27321 27438 27320 Face 59351 27559 27558 27437 Face 59352 27438 27559 27437 Face 59353 27685 27684 27558 Face 59354 27559 27685 27558 Face 59355 27816 27815 27684 Face 59356 27685 27816 27684 Face 59357 27947 27946 27815 Face 59358 27816 27947 27815 Face 59359 28079 28078 27946 Face 59360 27947 28079 27946 Face 59361 28216 28215 28078 Face 59362 28079 28216 28078 Face 59363 28351 28350 28215 Face 59364 28216 28351 28215 Face 59365 28351 28485 28484 Face 59366 28350 28351 28484 Face 59367 28485 28622 28621 Face 59368 28484 28485 28621 Face 59369 28750 28749 28621 Face 59370 28622 28750 28621 Face 59371 28877 28876 28749 Face 59372 28750 28877 28749 Face 59373 28877 29002 29001 Face 59374 28876 28877 29001 Face 59375 29133 29132 29001 Face 59376 29002 29133 29001 Face 59377 29263 29262 29132 Face 59378 29133 29263 29132 Face 59379 29263 29394 29393 Face 59380 29262 29263 29393 Face 59381 29394 29525 29524 Face 59382 29393 29394 29524 Face 59383 29525 29657 29656 Face 59384 29524 29525 29656 Face 59385 29657 29788 29787 Face 59386 29656 29657 29787 Face 59387 22916 24094 24218 Face 59388 29787 29788 18782 Face 59389 28794 28793 28664 Face 59390 19086 19212 22375 Face 59391 27989 28122 27988 Face 59392 28528 28527 28392 Face 59393 6900 18828 18715 Face 59394 29704 29703 29571 Face 59395 18028 29592 29541 Face 59396 29054 29053 28926 Face 59397 29336 28012 27039 Face 59398 29468 29336 27039 Face 59399 28012 16660 2419 Face 59400 27039 28012 2419 Face 59401 16660 18969 25959 Face 59402 28927 28926 28800 Face 59403 28537 28672 28536 Face 59404 18828 6900 29703 Face 59405 29572 29704 29571 Face 59406 6738 11167 10999 Face 59407 28122 28259 28121 Face 59408 27368 28936 23267 Face 59409 21416 23878 22954 Face 59410 30873 30974 30872 Face 59411 33240 33239 33104 Face 59412 24672 29487 24673 Face 59413 25844 23844 20013 Face 59414 6589 20703 20613 Face 59415 29416 29547 29415 Face 59416 26207 26206 25430 Face 59417 25434 26207 25430 Face 59418 27836 27968 27967 Face 59419 14773 8639 27049 Face 59420 6813 6579 6160 Face 59421 25963 25966 28146 Face 59422 25459 25460 26211 Face 59423 26211 26217 27514 Face 59424 27722 27721 27594 Face 59425 27595 27722 27594 Face 59426 6806 6805 6714 Face 59427 25480 26240 26239 Face 59428 28530 28665 28529 Face 59429 28124 28123 27990 Face 59430 29670 6404 29671 Face 59431 28265 28399 28264 Face 59432 27692 27693 29352 Face 59433 29404 10349 18542 Face 59434 2291 18759 18665 Face 59435 18759 7135 16184 Face 59436 25989 28687 429 Face 59437 18759 18758 18665 Face 59438 2419 16660 25959 Face 59439 21173 21172 18661 Face 59440 18969 18446 20617 Face 59441 25959 18969 20617 Face 59442 19330 19406 19329 Face 59443 16896 19332 16807 Face 59444 33106 33105 32971 Face 59445 34004 34003 33877 Face 59446 29966 30027 29965 Face 59447 30027 30089 30088 Face 59448 29908 29907 29853 Face 59449 29854 29908 29853 Face 59450 11951 8017 11867 Face 59451 32188 32292 32187 Face 59452 16675 28564 26013 Face 59453 26416 16675 26013 Face 59454 26646 25472 28564 Face 59455 16675 26646 28564 Face 59456 28286 29600 25472 Face 59457 26646 28286 25472 Face 59458 25486 27106 29600 Face 59459 28286 25486 29600 Face 59460 19161 26675 27106 Face 59461 25486 19161 27106 Face 59462 29071 29747 26675 Face 59463 19161 29071 26675 Face 59464 26215 26644 29747 Face 59465 29071 26215 29747 Face 59466 2808 27868 26644 Face 59467 26215 2808 26644 Face 59468 29330 29200 27868 Face 59469 2808 29330 27868 Face 59470 24426 25468 24447 Face 59471 29200 29330 16705 Face 59472 31067 31066 30967 Face 59473 26543 23321 19936 Face 59474 18828 19149 18715 Face 59475 23371 23370 24540 Face 59476 2817 28561 16673 Face 59477 28402 28537 28401 Face 59478 20789 20788 27732 Face 59479 20617 18446 6587 Face 59480 23168 23224 23223 Face 59481 15576 26702 3846 Face 59482 25462 25528 25527 Face 59483 25461 25462 25527 Face 59484 25528 25621 25620 Face 59485 25527 25528 25620 Face 59486 25621 25722 25721 Face 59487 25620 25621 25721 Face 59488 25722 25833 25832 Face 59489 25721 25722 25832 Face 59490 25942 25941 25832 Face 59491 25833 25942 25832 Face 59492 26054 26053 25941 Face 59493 25942 26054 25941 Face 59494 26167 26166 26053 Face 59495 26054 26167 26053 Face 59496 26285 26284 26166 Face 59497 26167 26285 26166 Face 59498 26403 26402 26284 Face 59499 26285 26403 26284 Face 59500 26521 26520 26402 Face 59501 26403 26521 26402 Face 59502 26636 26635 26520 Face 59503 26521 26636 26520 Face 59504 26751 26750 26635 Face 59505 26636 26751 26635 Face 59506 26865 26864 26750 Face 59507 26751 26865 26750 Face 59508 26980 26979 26864 Face 59509 26865 26980 26864 Face 59510 27094 27093 26979 Face 59511 26980 27094 26979 Face 59512 27210 27209 27093 Face 59513 27094 27210 27093 Face 59514 27322 27321 27209 Face 59515 27210 27322 27209 Face 59516 27439 27438 27321 Face 59517 27322 27439 27321 Face 59518 27560 27559 27438 Face 59519 27439 27560 27438 Face 59520 27686 27685 27559 Face 59521 27560 27686 27559 Face 59522 27817 27816 27685 Face 59523 27686 27817 27685 Face 59524 27948 27947 27816 Face 59525 27817 27948 27816 Face 59526 28080 28079 27947 Face 59527 27948 28080 27947 Face 59528 28080 28217 28216 Face 59529 28079 28080 28216 Face 59530 28217 28352 28351 Face 59531 28216 28217 28351 Face 59532 28352 28486 28485 Face 59533 28351 28352 28485 Face 59534 28486 28623 28622 Face 59535 28485 28486 28622 Face 59536 28623 28751 28750 Face 59537 28622 28623 28750 Face 59538 28751 28878 28877 Face 59539 28750 28751 28877 Face 59540 28878 29003 29002 Face 59541 28877 28878 29002 Face 59542 29003 29134 29133 Face 59543 29002 29003 29133 Face 59544 29134 29264 29263 Face 59545 29133 29134 29263 Face 59546 29264 29395 29394 Face 59547 29263 29264 29394 Face 59548 29395 29526 29525 Face 59549 29394 29395 29525 Face 59550 29526 29658 29657 Face 59551 29525 29526 29657 Face 59552 29658 29789 29788 Face 59553 29657 29658 29788 Face 59554 23370 23369 23101 Face 59555 16725 16724 31888 Face 59556 27857 27989 27856 Face 59557 29199 27381 25653 Face 59558 7846 10992 18510 Face 59559 28122 28121 27988 Face 59560 25989 28813 28567 Face 59561 19149 2291 18665 Face 59562 26243 11507 11508 Face 59563 2817 16673 18349 Face 59564 27732 20699 20789 Face 59565 20755 16705 21112 Face 59566 11671 25517 25451 Face 59567 29565 29697 29564 Face 59568 29697 29696 29564 Face 59569 18510 21276 26423 Face 59570 28801 28800 28671 Face 59571 11496 11575 25004 Face 59572 29704 18828 29703 Face 59573 18234 18421 34484 Face 59574 11654 11733 26585 Face 59575 28936 2682 24502 Face 59576 34053 17555 33284 Face 59577 33930 19376 12349 Face 59578 21660 14428 23548 Face 59579 33105 33240 33104 Face 59580 20003 26412 25324 Face 59581 27699 27693 26355 Face 59582 19462 19461 25982 Face 59583 27500 27499 26206 Face 59584 16669 27359 27158 Face 59585 30489 30488 30417 Face 59586 26207 27500 26206 Face 59587 27693 27699 29404 Face 59588 20520 20608 27475 Face 59589 25454 25460 25459 Face 59590 26657 26772 26771 Face 59591 20402 29330 28948 Face 59592 27851 27850 27721 Face 59593 16864 25857 25685 Face 59594 6714 16864 25685 Face 59595 26815 28283 28282 Face 59596 6615 23486 28947 Face 59597 28400 28399 28265 Face 59598 27600 27599 32657 Face 59599 26355 27693 26354 Face 59600 27693 29404 29352 Face 59601 21167 21168 18929 Face 59602 29331 18861 18862 Face 59603 16663 34525 34414 Face 59604 19033 18929 19516 Face 59605 20540 16663 20982 Face 59606 28299 27825 27217 Face 59607 16738 32927 26012 Face 59608 31874 31873 31761 Face 59609 32927 16738 16807 Face 59610 30575 30669 30574 Face 59611 31171 31272 31170 Face 59612 30280 30279 30214 Face 59613 30026 30027 30088 Face 59614 32860 32861 32992 Face 59615 24033 19712 19627 Face 59616 19837 20830 3331 Face 59617 26416 28155 25583 Face 59618 29075 16675 26416 Face 59619 25583 29075 26416 Face 59620 26761 26646 16675 Face 59621 29075 26761 16675 Face 59622 25477 28286 26646 Face 59623 26761 25477 26646 Face 59624 25747 25486 28286 Face 59625 25477 25747 28286 Face 59626 26560 19161 25486 Face 59627 25747 26560 25486 Face 59628 26333 29071 19161 Face 59629 26560 26333 19161 Face 59630 43 26215 29071 Face 59631 26333 43 29071 Face 59632 28948 2808 26215 Face 59633 43 28948 26215 Face 59634 31723 31724 31835 Face 59635 2808 28948 29330 Face 59636 27579 27580 27706 Face 59637 21841 21840 27696 Face 59638 25963 28146 28145 Face 59639 10715 25644 27639 Face 59640 29322 29453 29321 Face 59641 18758 18759 16184 Face 59642 20540 20982 27956 Face 59643 26566 429 26299 Face 59644 21543 18981 18773 Face 59645 2547 24067 21077 Face 59646 11009 18543 427 Face 59647 25463 25529 25528 Face 59648 2429 17355 23002 Face 59649 25529 25622 25621 Face 59650 25528 25529 25621 Face 59651 25622 25723 25722 Face 59652 25621 25622 25722 Face 59653 25723 25834 25833 Face 59654 25722 25723 25833 Face 59655 25943 25942 25833 Face 59656 25834 25943 25833 Face 59657 26055 26054 25942 Face 59658 25943 26055 25942 Face 59659 26168 26167 26054 Face 59660 26055 26168 26054 Face 59661 26286 26285 26167 Face 59662 26168 26286 26167 Face 59663 26404 26403 26285 Face 59664 26286 26404 26285 Face 59665 26522 26521 26403 Face 59666 26404 26522 26403 Face 59667 26637 26636 26521 Face 59668 26522 26637 26521 Face 59669 26752 26751 26636 Face 59670 26637 26752 26636 Face 59671 26866 26865 26751 Face 59672 26752 26866 26751 Face 59673 26981 26980 26865 Face 59674 26866 26981 26865 Face 59675 27095 27094 26980 Face 59676 26981 27095 26980 Face 59677 27211 27210 27094 Face 59678 27095 27211 27094 Face 59679 27323 27322 27210 Face 59680 27211 27323 27210 Face 59681 27440 27439 27322 Face 59682 27323 27440 27322 Face 59683 27561 27560 27439 Face 59684 27440 27561 27439 Face 59685 27687 27686 27560 Face 59686 27561 27687 27560 Face 59687 27818 27817 27686 Face 59688 27687 27818 27686 Face 59689 27949 27948 27817 Face 59690 27818 27949 27817 Face 59691 28081 28080 27948 Face 59692 27949 28081 27948 Face 59693 28218 28217 28080 Face 59694 28081 28218 28080 Face 59695 28353 28352 28217 Face 59696 28218 28353 28217 Face 59697 28487 28486 28352 Face 59698 28353 28487 28352 Face 59699 28487 28624 28623 Face 59700 28486 28487 28623 Face 59701 28624 28752 28751 Face 59702 28623 28624 28751 Face 59703 28752 28879 28878 Face 59704 28751 28752 28878 Face 59705 28879 29004 29003 Face 59706 28878 28879 29003 Face 59707 29004 29135 29134 Face 59708 29003 29004 29134 Face 59709 29265 29264 29134 Face 59710 29135 29265 29134 Face 59711 29265 29396 29395 Face 59712 29264 29265 29395 Face 59713 29396 29527 29526 Face 59714 29395 29396 29526 Face 59715 29527 29659 29658 Face 59716 29526 29527 29658 Face 59717 29659 29790 29789 Face 59718 29658 29659 29789 Face 59719 20161 20243 20242 Face 59720 18421 18234 19933 Face 59721 27989 27988 27856 Face 59722 19187 21266 17284 Face 59723 7135 10992 7846 Face 59724 21276 26541 26423 Face 59725 29192 29322 29191 Face 59726 19088 18541 29718 Face 59727 18954 21543 18773 Face 59728 18773 18981 12090 Face 59729 18981 4475 12090 Face 59730 31474 31583 31473 Face 59731 29061 29192 29060 Face 59732 29322 29321 29191 Face 59733 24451 27369 27368 Face 59734 26541 25541 25540 Face 59735 23954 24014 23953 Face 59736 25842 23371 23610 Face 59737 23701 29652 24471 Face 59738 22473 22566 22472 Face 59739 24502 21359 21360 Face 59740 28936 24502 23267 Face 59741 2682 16662 19103 Face 59742 21359 2682 19103 Face 59743 16662 25880 25776 Face 59744 19103 16662 25776 Face 59745 20014 26657 26540 Face 59746 20519 27475 20518 Face 59747 20985 16669 16715 Face 59748 16715 16669 27158 Face 59749 27049 25562 25559 Face 59750 19193 29799 26010 Face 59751 29166 29296 29295 Face 59752 29426 29427 29557 Face 59753 25453 25454 25459 Face 59754 25460 26217 26211 Face 59755 26648 26785 20717 Face 59756 26934 26926 2626 Face 59757 27611 29320 29318 Face 59758 27572 27611 29318 Face 59759 18028 29541 25569 Face 59760 25771 25878 25877 Face 59761 27857 27856 27727 Face 59762 27728 27857 27727 Face 59763 26423 26541 25540 Face 59764 26355 26354 25540 Face 59765 23707 24865 23706 Face 59766 29697 7125 29696 Face 59767 31583 31582 31473 Face 59768 28659 28788 28658 Face 59769 16806 19328 16895 Face 59770 16807 19331 19330 Face 59771 32840 32839 32706 Face 59772 32365 32477 32364 Face 59773 30089 30151 30150 Face 59774 30088 30089 30150 Face 59775 30151 30215 30214 Face 59776 30150 30151 30214 Face 59777 31218 31217 31117 Face 59778 30509 30594 30593 Face 59779 25902 25583 28291 Face 59780 28560 25902 28291 Face 59781 18974 29075 25583 Face 59782 25902 18974 25583 Face 59783 27220 26761 29075 Face 59784 18974 27220 29075 Face 59785 26300 25477 26761 Face 59786 27220 26300 26761 Face 59787 25854 25747 25477 Face 59788 26300 25854 25477 Face 59789 29722 26560 25747 Face 59790 25854 29722 25747 Face 59791 27734 26333 26560 Face 59792 29722 27734 26560 Face 59793 28430 43 26333 Face 59794 27734 28430 26333 Face 59795 18731 28948 43 Face 59796 28430 18731 43 Face 59797 29879 25021 20691 Face 59798 29321 29453 21896 Face 59799 16961 6809 26901 Face 59800 27835 27836 27967 Face 59801 29352 29404 18542 Face 59802 25952 25963 28145 Face 59803 32840 32972 32839 Face 59804 25013 22983 24532 Face 59805 26886 26887 26999 Face 59806 16664 16715 27157 Face 59807 5600 15642 14680 Face 59808 24455 15734 2555 Face 59809 25464 25530 25529 Face 59810 25463 25464 25529 Face 59811 25530 25623 25622 Face 59812 25529 25530 25622 Face 59813 25623 25724 25723 Face 59814 25622 25623 25723 Face 59815 25724 25835 25834 Face 59816 25723 25724 25834 Face 59817 25944 25943 25834 Face 59818 25835 25944 25834 Face 59819 26056 26055 25943 Face 59820 25944 26056 25943 Face 59821 26056 26169 26168 Face 59822 26055 26056 26168 Face 59823 26287 26286 26168 Face 59824 26169 26287 26168 Face 59825 26405 26404 26286 Face 59826 26287 26405 26286 Face 59827 26523 26522 26404 Face 59828 26405 26523 26404 Face 59829 26638 26637 26522 Face 59830 26523 26638 26522 Face 59831 26753 26752 26637 Face 59832 26638 26753 26637 Face 59833 26867 26866 26752 Face 59834 26753 26867 26752 Face 59835 26982 26981 26866 Face 59836 26867 26982 26866 Face 59837 27096 27095 26981 Face 59838 26982 27096 26981 Face 59839 27212 27211 27095 Face 59840 27096 27212 27095 Face 59841 27324 27323 27211 Face 59842 27212 27324 27211 Face 59843 27441 27440 27323 Face 59844 27324 27441 27323 Face 59845 27562 27561 27440 Face 59846 27441 27562 27440 Face 59847 27688 27687 27561 Face 59848 27562 27688 27561 Face 59849 27819 27818 27687 Face 59850 27688 27819 27687 Face 59851 27950 27949 27818 Face 59852 27819 27950 27818 Face 59853 28082 28081 27949 Face 59854 27950 28082 27949 Face 59855 28219 28218 28081 Face 59856 28082 28219 28081 Face 59857 28354 28353 28218 Face 59858 28219 28354 28218 Face 59859 28488 28487 28353 Face 59860 28354 28488 28353 Face 59861 28625 28624 28487 Face 59862 28488 28625 28487 Face 59863 28753 28752 28624 Face 59864 28625 28753 28624 Face 59865 28880 28879 28752 Face 59866 28753 28880 28752 Face 59867 29005 29004 28879 Face 59868 28880 29005 28879 Face 59869 29136 29135 29004 Face 59870 29005 29136 29004 Face 59871 29136 29266 29265 Face 59872 29135 29136 29265 Face 59873 29266 29397 29396 Face 59874 29265 29266 29396 Face 59875 29397 29528 29527 Face 59876 29396 29397 29527 Face 59877 29528 29660 29659 Face 59878 29527 29528 29659 Face 59879 29660 29791 29790 Face 59880 29659 29660 29790 Face 59881 21981 22078 22077 Face 59882 28429 14789 5889 Face 59883 33302 3212 3211 Face 59884 29810 29809 29678 Face 59885 16184 7135 7846 Face 59886 10992 21276 18510 Face 59887 17197 16722 21950 Face 59888 25731 25172 24205 Face 59889 28788 28787 28658 Face 59890 29602 2817 18362 Face 59891 19617 19535 26079 Face 59892 18327 12982 18879 Face 59893 28670 28799 28669 Face 59894 536 20806 18937 Face 59895 24456 2426 2689 Face 59896 28158 27245 28405 Face 59897 27371 27369 24293 Face 59898 11605 34824 34710 Face 59899 28939 28936 27368 Face 59900 27369 28939 27368 Face 59901 2548 2682 28936 Face 59902 28939 2548 28936 Face 59903 18340 16662 2682 Face 59904 2548 18340 2682 Face 59905 34046 34047 32662 Face 59906 16662 18340 25880 Face 59907 18510 26423 26338 Face 59908 25495 25587 11139 Face 59909 25434 25430 25992 Face 59910 21070 20985 16715 Face 59911 26474 27863 27829 Face 59912 26010 26124 27742 Face 59913 29035 29166 29165 Face 59914 29165 29166 29295 Face 59915 27514 27515 29273 Face 59916 29274 12059 13485 Face 59917 17261 23092 22981 Face 59918 26785 29405 20717 Face 59919 29320 18863 18867 Face 59920 29318 29320 18867 Face 59921 28822 23569 23486 Face 59922 25764 25871 25763 Face 59923 23672 25869 23747 Face 59924 23747 25763 25871 Face 59925 25541 26355 25540 Face 59926 27693 27692 26354 Face 59927 18868 14850 27696 Face 59928 29192 29191 29060 Face 59929 27620 29333 29331 Face 59930 30479 30478 30407 Face 59931 19331 16807 19332 Face 59932 32927 16807 19330 Face 59933 30048 30047 29986 Face 59934 32257 32363 32256 Face 59935 30347 30346 30279 Face 59936 30215 30280 30214 Face 59937 32728 32861 32727 Face 59938 32993 33127 33126 Face 59939 10985 24366 27498 Face 59940 30508 30509 30593 Face 59941 27828 25902 28560 Face 59942 6602 27828 28560 Face 59943 10224 18974 25902 Face 59944 27828 10224 25902 Face 59945 27331 27220 18974 Face 59946 10224 27331 18974 Face 59947 28891 26300 27220 Face 59948 27331 28891 27220 Face 59949 25965 25854 26300 Face 59950 28891 25965 26300 Face 59951 26561 29722 25854 Face 59952 25965 26561 25854 Face 59953 26216 27734 29722 Face 59954 26561 26216 29722 Face 59955 28273 28430 27734 Face 59956 26216 28273 27734 Face 59957 28273 26759 18731 Face 59958 28430 28273 18731 Face 59959 19330 16806 32795 Face 59960 33504 33631 33503 Face 59961 27476 27452 26126 Face 59962 27460 27580 27579 Face 59963 10349 25963 25952 Face 59964 18542 10349 25952 Face 59965 19083 19082 18765 Face 59966 14664 26934 2626 Face 59967 29707 6597 5907 Face 59968 29444 29575 29443 Face 59969 25427 25465 25464 Face 59970 22365 22270 22366 Face 59971 25465 25531 25530 Face 59972 25464 25465 25530 Face 59973 25531 25624 25623 Face 59974 25530 25531 25623 Face 59975 25624 25725 25724 Face 59976 25623 25624 25724 Face 59977 25725 25836 25835 Face 59978 25724 25725 25835 Face 59979 25945 25944 25835 Face 59980 25836 25945 25835 Face 59981 26057 26056 25944 Face 59982 25945 26057 25944 Face 59983 26170 26169 26056 Face 59984 26057 26170 26056 Face 59985 26288 26287 26169 Face 59986 26170 26288 26169 Face 59987 26406 26405 26287 Face 59988 26288 26406 26287 Face 59989 26524 26523 26405 Face 59990 26406 26524 26405 Face 59991 26639 26638 26523 Face 59992 26524 26639 26523 Face 59993 26754 26753 26638 Face 59994 26639 26754 26638 Face 59995 26868 26867 26753 Face 59996 26754 26868 26753 Face 59997 26983 26982 26867 Face 59998 26868 26983 26867 Face 59999 27097 27096 26982 Face 60000 26983 27097 26982 Face 60001 27213 27212 27096 Face 60002 27097 27213 27096 Face 60003 27325 27324 27212 Face 60004 27213 27325 27212 Face 60005 27442 27441 27324 Face 60006 27325 27442 27324 Face 60007 27563 27562 27441 Face 60008 27442 27563 27441 Face 60009 27689 27688 27562 Face 60010 27563 27689 27562 Face 60011 27820 27819 27688 Face 60012 27689 27820 27688 Face 60013 27951 27950 27819 Face 60014 27820 27951 27819 Face 60015 28083 28082 27950 Face 60016 27951 28083 27950 Face 60017 28220 28219 28082 Face 60018 28083 28220 28082 Face 60019 28355 28354 28219 Face 60020 28220 28355 28219 Face 60021 28489 28488 28354 Face 60022 28355 28489 28354 Face 60023 28626 28625 28488 Face 60024 28489 28626 28488 Face 60025 28754 28753 28625 Face 60026 28626 28754 28625 Face 60027 28881 28880 28753 Face 60028 28754 28881 28753 Face 60029 29006 29005 28880 Face 60030 28881 29006 28880 Face 60031 29137 29136 29005 Face 60032 29006 29137 29005 Face 60033 29137 29267 29266 Face 60034 29136 29137 29266 Face 60035 29267 29398 29397 Face 60036 29266 29267 29397 Face 60037 29398 29529 29528 Face 60038 29397 29398 29528 Face 60039 29529 29661 29660 Face 60040 29528 29529 29660 Face 60041 29661 29792 29791 Face 60042 29660 29661 29791 Face 60043 22175 29411 22270 Face 60044 792 791 676 Face 60045 24231 20013 23844 Face 60046 27341 27460 27459 Face 60047 28146 28158 11008 Face 60048 28145 28146 11008 Face 60049 28930 28929 28803 Face 60050 25970 19536 25859 Face 60051 28374 28509 28508 Face 60052 29707 29706 29574 Face 60053 25958 26307 29799 Face 60054 21236 2807 24289 Face 60055 29713 29712 29580 Face 60056 25655 6715 6287 Face 60057 27355 16188 28429 Face 60058 28025 6640 16665 Face 60059 30580 30579 30494 Face 60060 23425 29612 23562 Face 60061 28951 28939 27369 Face 60062 27371 28951 27369 Face 60063 19201 2548 28939 Face 60064 28951 19201 28939 Face 60065 18258 18340 2548 Face 60066 19201 18258 2548 Face 60067 21634 21633 32662 Face 60068 32662 21633 34046 Face 60069 18975 23982 18872 Face 60070 13907 20486 13932 Face 60071 6814 23363 25992 Face 60072 23363 25434 25992 Face 60073 16016 19231 20806 Face 60074 18985 19086 20806 Face 60075 28908 29035 29034 Face 60076 29034 29035 29165 Face 60077 29273 29274 13485 Face 60078 12059 25566 25565 Face 60079 17551 26648 28017 Face 60080 33756 33882 33755 Face 60081 20714 6805 6806 Face 60082 7023 20714 6806 Face 60083 27871 27610 27384 Face 60084 28022 27871 27384 Face 60085 25660 25661 25763 Face 60086 29333 20895 18861 Face 60087 11008 28158 28405 Face 60088 27245 17856 28565 Face 60089 26794 25543 25542 Face 60090 28799 28798 28669 Face 60091 26438 28164 18890 Face 60092 28277 29335 28139 Face 60093 32927 19330 32795 Face 60094 16806 19329 19328 Face 60095 30442 30513 30441 Face 60096 31179 31178 31079 Face 60097 30414 30413 30346 Face 60098 30280 30347 30279 Face 60099 33262 33261 33126 Face 60100 34151 11285 25853 Face 60101 10968 34491 10969 Face 60102 26789 6602 28560 Face 60103 25684 27828 6602 Face 60104 18977 25684 6602 Face 60105 20743 10224 27828 Face 60106 25684 20743 27828 Face 60107 27449 27331 10224 Face 60108 20743 27449 10224 Face 60109 29148 28891 27331 Face 60110 27449 29148 27331 Face 60111 29620 25965 28891 Face 60112 29148 29620 28891 Face 60113 28691 26561 25965 Face 60114 29620 28691 25965 Face 60115 27864 26216 26561 Face 60116 28691 27864 26561 Face 60117 27864 28407 28273 Face 60118 26216 27864 28273 Face 60119 28407 25564 26759 Face 60120 28273 28407 26759 Face 60121 33994 34119 33993 Face 60122 25004 26353 26235 Face 60123 25567 1866 18772 Face 60124 21329 21330 28676 Face 60125 18546 27893 28543 Face 60126 28405 27245 28565 Face 60127 29483 7015 18454 Face 60128 6633 12232 26684 Face 60129 25953 26438 18890 Face 60130 25428 25466 25465 Face 60131 25427 25428 25465 Face 60132 25466 25532 25531 Face 60133 25465 25466 25531 Face 60134 25532 25625 25624 Face 60135 25531 25532 25624 Face 60136 25625 25726 25725 Face 60137 25624 25625 25725 Face 60138 25726 25837 25836 Face 60139 25725 25726 25836 Face 60140 25946 25945 25836 Face 60141 25837 25946 25836 Face 60142 26058 26057 25945 Face 60143 25946 26058 25945 Face 60144 26058 26171 26170 Face 60145 26057 26058 26170 Face 60146 26289 26288 26170 Face 60147 26171 26289 26170 Face 60148 26407 26406 26288 Face 60149 26289 26407 26288 Face 60150 26525 26524 26406 Face 60151 26407 26525 26406 Face 60152 26640 26639 26524 Face 60153 26525 26640 26524 Face 60154 26755 26754 26639 Face 60155 26640 26755 26639 Face 60156 26869 26868 26754 Face 60157 26755 26869 26754 Face 60158 26984 26983 26868 Face 60159 26869 26984 26868 Face 60160 27098 27097 26983 Face 60161 26984 27098 26983 Face 60162 27214 27213 27097 Face 60163 27098 27214 27097 Face 60164 27326 27325 27213 Face 60165 27214 27326 27213 Face 60166 27443 27442 27325 Face 60167 27326 27443 27325 Face 60168 27564 27563 27442 Face 60169 27443 27564 27442 Face 60170 27690 27689 27563 Face 60171 27564 27690 27563 Face 60172 27821 27820 27689 Face 60173 27690 27821 27689 Face 60174 27952 27951 27820 Face 60175 27821 27952 27820 Face 60176 28084 28083 27951 Face 60177 27952 28084 27951 Face 60178 28221 28220 28083 Face 60179 28084 28221 28083 Face 60180 28356 28355 28220 Face 60181 28221 28356 28220 Face 60182 28490 28489 28355 Face 60183 28356 28490 28355 Face 60184 28627 28626 28489 Face 60185 28490 28627 28489 Face 60186 28755 28754 28626 Face 60187 28627 28755 28626 Face 60188 28882 28881 28754 Face 60189 28755 28882 28754 Face 60190 29007 29006 28881 Face 60191 28882 29007 28881 Face 60192 29138 29137 29006 Face 60193 29007 29138 29006 Face 60194 29138 29268 29267 Face 60195 29137 29138 29267 Face 60196 29268 29399 29398 Face 60197 29267 29268 29398 Face 60198 29399 29530 29529 Face 60199 29398 29399 29529 Face 60200 29530 29662 29661 Face 60201 29529 29530 29661 Face 60202 29662 29793 29792 Face 60203 29661 29662 29792 Face 60204 23659 21515 22992 Face 60205 18938 12343 19066 Face 60206 25661 25764 25763 Face 60207 26475 15306 27863 Face 60208 17856 28025 27374 Face 60209 28565 17856 27374 Face 60210 12232 26794 26684 Face 60211 22087 29713 29580 Face 60212 27614 27486 18508 Face 60213 28696 29483 18454 Face 60214 18670 19096 27614 Face 60215 27486 26703 18508 Face 60216 18979 19096 17311 Face 60217 13533 13532 13437 Face 60218 5908 5907 18954 Face 60219 23321 26542 20014 Face 60220 26899 18958 26679 Face 60221 12643 34518 34481 Face 60222 34481 11378 12643 Face 60223 27372 28954 28951 Face 60224 27371 27372 28951 Face 60225 28954 17541 19201 Face 60226 28951 28954 19201 Face 60227 7059 6949 6950 Face 60228 7060 377 6950 Face 60229 2043 18371 18372 Face 60230 24012 23893 23915 Face 60231 29440 29571 29439 Face 60232 26202 23627 23899 Face 60233 6916 6814 6579 Face 60234 6579 6814 25992 Face 60235 25567 27165 1866 Face 60236 6036 18878 19193 Face 60237 28782 28908 28907 Face 60238 28907 28908 29034 Face 60239 13485 12059 25565 Face 60240 25566 27480 27479 Face 60241 27243 20430 27354 Face 60242 30273 30272 30207 Face 60243 18558 20714 7023 Face 60244 6805 16864 6714 Face 60245 2557 23575 2690 Face 60246 27871 28009 27610 Face 60247 25225 25224 25086 Face 60248 24751 29581 20316 Face 60249 27374 28025 16665 Face 60250 6640 18958 26899 Face 60251 12232 6633 6406 Face 60252 5907 21543 18954 Face 60253 19096 27486 27614 Face 60254 18512 11165 17311 Face 60255 19329 16806 19330 Face 60256 32162 32266 32161 Face 60257 17452 18529 907 Face 60258 30347 30414 30346 Face 60259 32484 32601 32483 Face 60260 30485 30484 30413 Face 60261 30414 30485 30413 Face 60262 29906 29905 29851 Face 60263 30110 30172 30171 Face 60264 27866 18977 26678 Face 60265 26678 18977 28548 Face 60266 25793 25684 18977 Face 60267 27866 25793 18977 Face 60268 29208 20743 25684 Face 60269 25793 29208 25684 Face 60270 27570 27449 20743 Face 60271 29208 27570 20743 Face 60272 28571 29148 27449 Face 60273 27570 28571 27449 Face 60274 25957 29620 29148 Face 60275 28571 25957 29148 Face 60276 26532 28691 29620 Face 60277 25957 26532 29620 Face 60278 26101 27864 28691 Face 60279 26532 26101 28691 Face 60280 26101 28542 28407 Face 60281 27864 26101 28407 Face 60282 28542 28827 25564 Face 60283 28407 28542 25564 Face 60284 10008 18829 33465 Face 60285 19086 22472 20718 Face 60286 16963 25567 18646 Face 60287 29702 6799 6621 Face 60288 4475 17942 11233 Face 60289 26566 27893 25989 Face 60290 19096 18670 17311 Face 60291 22890 24668 29220 Face 60292 7923 12910 25647 Face 60293 32888 33816 32891 Face 60294 25467 25533 25532 Face 60295 25466 25467 25532 Face 60296 25533 25626 25625 Face 60297 25532 25533 25625 Face 60298 25626 25727 25726 Face 60299 25625 25626 25726 Face 60300 25727 25838 25837 Face 60301 25726 25727 25837 Face 60302 25838 25947 25946 Face 60303 25837 25838 25946 Face 60304 25947 26059 26058 Face 60305 25946 25947 26058 Face 60306 26059 26172 26171 Face 60307 26058 26059 26171 Face 60308 26172 26290 26289 Face 60309 26171 26172 26289 Face 60310 26408 26407 26289 Face 60311 26290 26408 26289 Face 60312 26526 26525 26407 Face 60313 26408 26526 26407 Face 60314 26641 26640 26525 Face 60315 26526 26641 26525 Face 60316 26756 26755 26640 Face 60317 26641 26756 26640 Face 60318 26870 26869 26755 Face 60319 26756 26870 26755 Face 60320 20718 22566 22662 Face 60321 20760 27214 20670 Face 60322 22375 22472 19086 Face 60323 29221 29222 22888 Face 60324 25755 24323 25756 Face 60325 20937 27565 27443 Face 60326 20255 20254 20172 Face 60327 20093 20012 26536 Face 60328 20094 26651 26650 Face 60329 26078 26192 19699 Face 60330 27565 27564 27443 Face 60331 24349 29792 29793 Face 60332 27691 27690 27564 Face 60333 27565 27691 27564 Face 60334 27822 27821 27690 Face 60335 27691 27822 27690 Face 60336 27953 27952 27821 Face 60337 27822 27953 27821 Face 60338 28085 28084 27952 Face 60339 27953 28085 27952 Face 60340 28222 28221 28084 Face 60341 28085 28222 28084 Face 60342 28357 28356 28221 Face 60343 28222 28357 28221 Face 60344 28491 28490 28356 Face 60345 28357 28491 28356 Face 60346 28628 28627 28490 Face 60347 28491 28628 28490 Face 60348 28756 28755 28627 Face 60349 28628 28756 28627 Face 60350 28883 28882 28755 Face 60351 28756 28883 28755 Face 60352 29008 29007 28882 Face 60353 28883 29008 28882 Face 60354 29139 29138 29007 Face 60355 29008 29139 29007 Face 60356 29269 29268 29138 Face 60357 29139 29269 29138 Face 60358 29269 29400 29399 Face 60359 29268 29269 29399 Face 60360 29400 29531 29530 Face 60361 29399 29400 29530 Face 60362 29531 29663 29662 Face 60363 29530 29531 29662 Face 60364 29663 29794 29793 Face 60365 29662 29663 29793 Face 60366 16705 20404 21112 Face 60367 13126 21365 21364 Face 60368 27991 28124 27990 Face 60369 28634 27895 28141 Face 60370 16665 6640 26899 Face 60371 18958 18353 26679 Face 60372 12090 4475 11233 Face 60373 6912 12232 6406 Face 60374 28949 11165 18512 Face 60375 26329 28689 18444 Face 60376 26586 28949 21454 Face 60377 26546 26662 26545 Face 60378 29182 29181 29050 Face 60379 29051 29182 29050 Face 60380 18353 6287 17236 Face 60381 34140 34139 34013 Face 60382 25496 25433 25497 Face 60383 22958 27517 27642 Face 60384 11111 11172 31218 Face 60385 31117 11111 31218 Face 60386 27373 28955 28954 Face 60387 27372 27373 28954 Face 60388 28955 17751 17541 Face 60389 28954 28955 17541 Face 60390 34317 34413 34598 Face 60391 6950 6951 7060 Face 60392 24865 23707 24879 Face 60393 25686 25796 11201 Face 60394 6900 6799 29702 Face 60395 6640 18454 18958 Face 60396 6530 6916 7024 Face 60397 7024 6916 6579 Face 60398 27476 29189 27452 Face 60399 19212 19036 6595 Face 60400 2943 19080 19081 Face 60401 28781 28782 28907 Face 60402 24768 23673 22704 Face 60403 18760 6909 18761 Face 60404 32170 32274 32169 Face 60405 19480 23107 20905 Face 60406 21170 18558 21171 Face 60407 18662 18558 7023 Face 60408 19480 20905 19916 Face 60409 6278 11049 23424 Face 60410 27987 27986 27854 Face 60411 22254 19848 22656 Face 60412 16963 16765 17236 Face 60413 6287 16963 17236 Face 60414 29051 29050 28923 Face 60415 6912 6406 11233 Face 60416 29190 29189 27476 Face 60417 25462 20870 25463 Face 60418 17451 17452 907 Face 60419 29453 21897 21994 Face 60420 33974 16686 16685 Face 60421 32861 32860 32727 Face 60422 30485 30570 30484 Face 60423 30570 30569 30484 Face 60424 30872 30973 30871 Face 60425 31072 31171 31071 Face 60426 30025 30024 29963 Face 60427 34025 34151 34024 Face 60428 27757 27866 28549 Face 60429 26678 28549 27866 Face 60430 16671 25793 27866 Face 60431 27757 16671 27866 Face 60432 28014 29208 25793 Face 60433 16671 28014 25793 Face 60434 5509 27570 29208 Face 60435 28014 5509 29208 Face 60436 18555 28571 27570 Face 60437 5509 18555 27570 Face 60438 25554 25957 28571 Face 60439 18555 25554 28571 Face 60440 26562 26532 25957 Face 60441 25554 26562 25957 Face 60442 27865 26101 26532 Face 60443 26562 27865 26532 Face 60444 27865 29617 28542 Face 60445 26101 27865 28542 Face 60446 29617 26673 28827 Face 60447 28542 29617 28827 Face 60448 24133 24134 21077 Face 60449 20318 20402 20487 Face 60450 29713 6595 29712 Face 60451 16765 16963 18646 Face 60452 26706 11992 26819 Face 60453 28798 28797 28668 Face 60454 21454 28949 18512 Face 60455 18364 32891 33816 Face 60456 34729 34616 34533 Face 60457 25468 25534 25533 Face 60458 25467 25468 25533 Face 60459 25534 25627 25626 Face 60460 25533 25534 25626 Face 60461 25627 25728 25727 Face 60462 25626 25627 25727 Face 60463 25728 25839 25838 Face 60464 25727 25728 25838 Face 60465 25948 25947 25838 Face 60466 25839 25948 25838 Face 60467 26060 26059 25947 Face 60468 25948 26060 25947 Face 60469 26060 26173 26172 Face 60470 26059 26060 26172 Face 60471 26173 26291 26290 Face 60472 26172 26173 26290 Face 60473 26409 26408 26290 Face 60474 26291 26409 26290 Face 60475 26527 26526 26408 Face 60476 26409 26527 26408 Face 60477 26642 26641 26526 Face 60478 26527 26642 26526 Face 60479 26756 26641 20324 Face 60480 21893 29449 29317 Face 60481 23895 18560 23380 Face 60482 14897 14773 14761 Face 60483 26984 26869 20495 Face 60484 19289 19259 19260 Face 60485 26886 26999 26998 Face 60486 13663 12721 34589 Face 60487 26656 26657 26771 Face 60488 19252 24602 29936 Face 60489 29433 29564 29432 Face 60490 21119 21118 21029 Face 60491 14429 16184 6910 Face 60492 28437 6034 16961 Face 60493 23012 23013 28815 Face 60494 28230 26090 28302 Face 60495 19617 26078 19616 Face 60496 11081 16716 11411 Face 60497 12943 18452 11950 Face 60498 19904 19827 19829 Face 60499 27954 27953 27822 Face 60500 31598 31712 31597 Face 60501 28086 28085 27953 Face 60502 27954 28086 27953 Face 60503 28223 28222 28085 Face 60504 28086 28223 28085 Face 60505 28358 28357 28222 Face 60506 28223 28358 28222 Face 60507 28492 28491 28357 Face 60508 28358 28492 28357 Face 60509 28629 28628 28491 Face 60510 28492 28629 28491 Face 60511 28629 28757 28756 Face 60512 28628 28629 28756 Face 60513 28884 28883 28756 Face 60514 28757 28884 28756 Face 60515 29009 29008 28883 Face 60516 28884 29009 28883 Face 60517 29140 29139 29008 Face 60518 29009 29140 29008 Face 60519 29270 29269 29139 Face 60520 29140 29270 29139 Face 60521 29270 29401 29400 Face 60522 29269 29270 29400 Face 60523 29401 29532 29531 Face 60524 29400 29401 29531 Face 60525 29532 29664 29663 Face 60526 29531 29532 29663 Face 60527 29664 29795 29794 Face 60528 29663 29664 29794 Face 60529 21693 28766 21790 Face 60530 24348 25014 24546 Face 60531 21410 21504 21503 Face 60532 33509 33636 33508 Face 60533 34326 29615 18976 Face 60534 18646 25567 18772 Face 60535 11165 18979 17311 Face 60536 6595 6596 29712 Face 60537 25461 25526 22987 Face 60538 28827 23017 20752 Face 60539 2686 19189 2299 Face 60540 1577 1687 2004 Face 60541 19036 12982 6596 Face 60542 33782 33781 33656 Face 60543 26679 18353 17236 Face 60544 29755 24813 24350 Face 60545 29449 21990 22087 Face 60546 26087 27375 27373 Face 60547 11111 31117 31020 Face 60548 27375 29012 28955 Face 60549 27373 27375 28955 Face 60550 29012 18683 17751 Face 60551 28955 29012 17751 Face 60552 18683 27050 18260 Face 60553 17751 18683 18260 Face 60554 22817 23847 29474 Face 60555 24670 24671 22783 Face 60556 4888 16664 27101 Face 60557 26900 25955 18353 Face 60558 5387 7024 5388 Face 60559 5387 6530 7024 Face 60560 28642 28643 28771 Face 60561 28660 28659 28524 Face 60562 7128 2943 21544 Face 60563 21544 2943 19081 Face 60564 26436 26554 26553 Face 60565 20737 22152 28688 Face 60566 27354 27353 27243 Face 60567 23361 23303 23304 Face 60568 29694 6601 29693 Face 60569 18048 2298 16677 Face 60570 27365 25487 28134 Face 60571 13721 9054 13720 Face 60572 6404 18362 29671 Face 60573 28395 28394 28260 Face 60574 1866 28941 29473 Face 60575 18772 1866 29473 Face 60576 28675 28804 28674 Face 60577 28924 29051 28923 Face 60578 26353 25004 11575 Face 60579 18894 6524 15325 Face 60580 21360 20779 21361 Face 60581 2005 1577 2004 Face 60582 30513 30598 30512 Face 60583 33388 33387 33251 Face 60584 30763 30762 30663 Face 60585 30664 30663 30569 Face 60586 30048 30110 30047 Face 60587 30996 30995 30894 Face 60588 34285 34757 34682 Face 60589 31635 31756 31634 Face 60590 32560 32561 32687 Face 60591 13574 29014 13202 Face 60592 25584 16671 27757 Face 60593 27887 25584 27757 Face 60594 11051 28014 16671 Face 60595 25584 11051 16671 Face 60596 18456 5509 28014 Face 60597 11051 18456 28014 Face 60598 27867 18555 5509 Face 60599 18456 27867 5509 Face 60600 25646 25554 18555 Face 60601 27867 25646 18555 Face 60602 26791 26562 25554 Face 60603 25646 26791 25554 Face 60604 26791 27629 27865 Face 60605 26562 26791 27865 Face 60606 27629 28417 29617 Face 60607 27865 27629 29617 Face 60608 20315 13351 23017 Face 60609 29617 28417 26673 Face 60610 28167 27488 29327 Face 60611 19665 19664 17089 Face 60612 28804 28803 28674 Face 60613 28669 28798 28668 Face 60614 25430 25426 6160 Face 60615 25772 25773 19306 Face 60616 21413 29480 21141 Face 60617 19381 25982 25876 Face 60618 23898 20607 14765 Face 60619 22781 25728 25627 Face 60620 25754 24323 25755 Face 60621 25729 24333 25730 Face 60622 23783 24466 23782 Face 60623 32650 6288 32777 Face 60624 25729 25840 25839 Face 60625 25728 25729 25839 Face 60626 25949 25948 25839 Face 60627 25840 25949 25839 Face 60628 26061 26060 25948 Face 60629 25949 26061 25948 Face 60630 26061 26174 26173 Face 60631 26060 26061 26173 Face 60632 26174 26292 26291 Face 60633 26173 26174 26291 Face 60634 26292 26410 26409 Face 60635 26291 26292 26409 Face 60636 26528 26527 26409 Face 60637 26410 26528 26409 Face 60638 22460 29802 22459 Face 60639 27641 16176 23297 Face 60640 25778 25882 25777 Face 60641 26528 20242 20241 Face 60642 34002 34003 34128 Face 60643 34367 34613 34635 Face 60644 28437 16961 26813 Face 60645 4996 2000 19032 Face 60646 6636 18860 27694 Face 60647 27567 6636 27694 Face 60648 28089 29471 25744 Face 60649 27957 28136 18860 Face 60650 33494 33621 33493 Face 60651 29853 29907 29852 Face 60652 32184 32183 32079 Face 60653 33749 33748 33623 Face 60654 18998 28437 26813 Face 60655 22048 29015 6587 Face 60656 28677 2430 23493 Face 60657 24602 19252 19281 Face 60658 34789 34532 6603 Face 60659 19516 18929 6663 Face 60660 21396 28224 28086 Face 60661 23569 23652 23568 Face 60662 20582 26984 20583 Face 60663 29902 29901 29847 Face 60664 28224 28223 28086 Face 60665 907 19904 17451 Face 60666 28359 28358 28223 Face 60667 28224 28359 28223 Face 60668 28493 28492 28358 Face 60669 28359 28493 28358 Face 60670 28630 28629 28492 Face 60671 28493 28630 28492 Face 60672 28758 28757 28629 Face 60673 28630 28758 28629 Face 60674 28885 28884 28757 Face 60675 28758 28885 28757 Face 60676 29010 29009 28884 Face 60677 28885 29010 28884 Face 60678 29141 29140 29009 Face 60679 29010 29141 29009 Face 60680 29271 29270 29140 Face 60681 29141 29271 29140 Face 60682 29271 29402 29401 Face 60683 29270 29271 29401 Face 60684 29402 29533 29532 Face 60685 29401 29402 29532 Face 60686 29533 29665 29664 Face 60687 29532 29533 29664 Face 60688 29665 29796 29795 Face 60689 29664 29665 29795 Face 60690 29796 17863 3464 Face 60691 29795 29796 3464 Face 60692 21597 21504 21598 Face 60693 17054 23486 23405 Face 60694 28804 28930 28803 Face 60695 28534 28669 28533 Face 60696 7028 7134 6589 Face 60697 11167 6588 10999 Face 60698 20929 18688 20312 Face 60699 23002 25189 2429 Face 60700 18972 14485 191 Face 60701 25968 25645 27496 Face 60702 6595 19036 6596 Face 60703 26176 26063 22807 Face 60704 29449 22087 29580 Face 60705 18354 26088 26087 Face 60706 16708 18354 26087 Face 60707 26088 27376 27375 Face 60708 26087 26088 27375 Face 60709 27376 29062 29012 Face 60710 29925 29924 29870 Face 60711 12290 21356 21357 Face 60712 32068 32172 32067 Face 60713 32276 32275 32171 Face 60714 32172 32276 32171 Face 60715 32382 32381 32275 Face 60716 32276 32382 32275 Face 60717 32494 32493 32381 Face 60718 32382 32494 32381 Face 60719 32611 32610 32493 Face 60720 32494 32611 32493 Face 60721 32738 32737 32610 Face 60722 32611 32738 32610 Face 60723 32871 32870 32737 Face 60724 32738 32871 32737 Face 60725 33003 33002 32870 Face 60726 32871 33003 32870 Face 60727 33137 33136 33002 Face 60728 33003 33137 33002 Face 60729 33272 33271 33136 Face 60730 33137 33272 33136 Face 60731 33408 33407 33271 Face 60732 33272 33408 33271 Face 60733 33408 33541 33540 Face 60734 33407 33408 33540 Face 60735 31623 31744 31743 Face 60736 24880 24879 23712 Face 60737 33406 33539 33538 Face 60738 31622 31623 31743 Face 60739 31096 31095 30996 Face 60740 31854 31961 31853 Face 60741 31643 31764 31642 Face 60742 30602 30696 30601 Face 60743 31510 31623 31622 Face 60744 32050 32154 32153 Face 60745 32049 32050 32153 Face 60746 6756 6661 6662 Face 60747 34150 25853 34149 Face 60748 34266 27961 34265 Face 60749 30116 30178 30115 Face 60750 20707 12636 16719 Face 60751 33772 33898 33771 Face 60752 3592 17537 5123 Face 60753 32593 32592 32475 Face 60754 34024 34023 33897 Face 60755 31404 31510 31509 Face 60756 32262 32263 32368 Face 60757 32364 32476 32363 Face 60758 33395 33528 33394 Face 60759 30307 30374 30373 Face 60760 31876 31875 31763 Face 60761 31403 31404 31509 Face 60762 31530 31643 31529 Face 60763 31764 31763 31642 Face 60764 31854 31853 31741 Face 60765 30154 30218 30217 Face 60766 32251 32250 32146 Face 60767 33528 33655 33527 Face 60768 33528 33527 33394 Face 60769 31321 31320 31218 Face 60770 31300 31404 31403 Face 60771 30691 30690 30596 Face 60772 880 763 764 Face 60773 33651 33776 33650 Face 60774 32055 32159 32054 Face 60775 30576 30575 30490 Face 60776 30242 30241 30177 Face 60777 31944 32049 32048 Face 60778 31836 31837 31943 Face 60779 31612 31611 31502 Face 60780 32068 32067 31962 Face 60781 34020 34146 34019 Face 60782 31285 31388 31284 Face 60783 31503 31612 31502 Face 60784 34028 34154 34153 Face 60785 30597 30691 30596 Face 60786 33780 33779 33654 Face 60787 33259 33395 33258 Face 60788 32481 32480 32368 Face 60789 32263 32262 32158 Face 60790 19904 907 19903 Face 60791 32159 32263 32158 Face 60792 33902 33901 33775 Face 60793 33776 33902 33775 Face 60794 33902 34028 33901 Face 60795 34028 34027 33901 Face 60796 30039 30101 30100 Face 60797 33891 34017 33890 Face 60798 32975 33109 32974 Face 60799 32248 32247 32143 Face 60800 33109 33244 33108 Face 60801 33244 33243 33108 Face 60802 33116 33115 32981 Face 60803 33101 33236 33100 Face 60804 30030 30092 30091 Face 60805 30667 30766 30666 Face 60806 34027 34028 34153 Face 60807 16112 4991 1099 Face 60808 32397 32398 32508 Face 60809 879 762 763 Face 60810 17492 18029 18252 Face 60811 29203 18821 17673 Face 60812 31837 31944 31943 Face 60813 30986 31085 30985 Face 60814 31422 31528 31421 Face 60815 31724 31725 31836 Face 60816 31085 31184 31084 Face 60817 32264 32263 32159 Face 60818 34143 34142 34016 Face 60819 31492 31491 31387 Face 60820 30488 30487 30416 Face 60821 31827 31934 31826 Face 60822 31726 31838 31837 Face 60823 32050 32049 31944 Face 60824 31197 31198 31299 Face 60825 30283 30282 30217 Face 60826 31963 31962 31855 Face 60827 31719 31718 31604 Face 60828 31934 31933 31826 Face 60829 34007 34006 33880 Face 60830 33379 33512 33378 Face 60831 32397 32508 32507 Face 60832 32251 32357 32250 Face 60833 28809 20975 20974 Face 60834 32396 32397 32507 Face 60835 32290 32291 32396 Face 60836 33500 33627 33499 Face 60837 31609 31610 31723 Face 60838 31641 31640 31527 Face 60839 31950 31951 32055 Face 60840 32852 32984 32851 Face 60841 32469 32586 32468 Face 60842 32984 32983 32851 Face 60843 30691 30790 30690 Face 60844 30504 30505 30589 Face 60845 31425 31424 31320 Face 60846 31321 31425 31320 Face 60847 31531 31530 31424 Face 60848 31425 31531 31424 Face 60849 31644 31643 31530 Face 60850 30616 30615 30530 Face 60851 30531 30616 30530 Face 60852 30790 30896 30789 Face 60853 30710 30709 30615 Face 60854 33537 33538 33664 Face 60855 30431 30502 30430 Face 60856 32885 17961 19435 Face 60857 16845 16844 12541 Face 60858 30286 30353 30285 Face 60859 34005 34004 33878 Face 60860 31925 32030 31924 Face 60861 33753 33879 33752 Face 60862 34255 34256 12748 Face 60863 32134 32133 32029 Face 60864 18669 28825 21572 Face 60865 31220 26928 20554 Face 60866 13460 34271 34148 Face 60867 34271 13460 26904 Face 60868 34023 34149 34022 Face 60869 34149 13460 34148 Face 60870 31921 31920 31813 Face 60871 31075 31174 31074 Face 60872 32721 32720 32593 Face 60873 30218 30283 30217 Face 60874 30790 30789 30690 Face 60875 30997 30996 30895 Face 60876 30616 30710 30615 Face 60877 33538 33665 33664 Face 60878 30809 30808 30709 Face 60879 30710 30809 30709 Face 60880 30907 30906 30808 Face 60881 30809 30907 30808 Face 60882 31004 31003 30906 Face 60883 30907 31004 30906 Face 60884 31004 31100 31099 Face 60885 33269 33405 33268 Face 60886 33405 33538 33404 Face 60887 33269 33268 33133 Face 60888 33538 33537 33404 Face 60889 33134 33269 33133 Face 60890 33405 33404 33268 Face 60891 33881 33880 33754 Face 60892 31710 31709 31595 Face 60893 31289 31392 31391 Face 60894 31496 31605 31604 Face 60895 33118 33253 33117 Face 60896 33522 33649 33521 Face 60897 33781 33907 33906 Face 60898 31422 31421 31317 Face 60899 33639 33638 33511 Face 60900 31596 31710 31595 Face 60901 33755 33881 33754 Face 60902 31482 31481 31377 Face 60903 30156 30157 30220 Face 60904 31929 32034 31928 Face 60905 33000 32999 32867 Face 60906 32868 33000 32867 Face 60907 31003 31004 31099 Face 60908 31100 31199 31198 Face 60909 31099 31100 31198 Face 60910 16789 16723 16724 Face 60911 34821 26928 34806 Face 60912 34453 34512 28155 Face 60913 32507 762 32506 Face 60914 31199 31301 31300 Face 60915 31198 31199 31300 Face 60916 31301 31405 31404 Face 60917 31300 31301 31404 Face 60918 31405 31511 31510 Face 60919 31404 31405 31510 Face 60920 32607 32608 32734 Face 60921 32735 32868 32734 Face 60922 32490 32491 32607 Face 60923 32868 32867 32734 Face 60924 32379 32491 32490 Face 60925 32608 32735 32734 Face 60926 32378 32379 32490 Face 60927 32491 32608 32607 Face 60928 31184 31183 31084 Face 60929 30772 30771 30672 Face 60930 34279 34716 34432 Face 60931 33781 33780 33655 Face 60932 30579 30673 30578 Face 60933 30897 30998 30997 Face 60934 30979 30978 30877 Face 60935 31185 31286 31184 Face 60936 33134 33133 32999 Face 60937 33000 33134 32999 Face 60938 31511 31624 31623 Face 60939 32272 32273 32378 Face 60940 31510 31511 31623 Face 60941 20975 28809 20885 Face 60942 33665 6775 6774 Face 60943 7156 7048 252 Face 60944 32570 32569 32452 Face 60945 20553 13988 20554 Face 60946 29203 33558 34166 Face 60947 30488 30573 30487 Face 60948 31745 31744 31623 Face 60949 31624 31745 31623 Face 60950 31857 31856 31744 Face 60951 31745 31857 31744 Face 60952 31964 31963 31856 Face 60953 31857 31964 31856 Face 60954 32069 32068 31963 Face 60955 31964 32069 31963 Face 60956 32173 32172 32068 Face 60957 32273 32272 32168 Face 60958 32273 32379 32378 Face 60959 31960 32065 31959 Face 60960 32169 32273 32168 Face 60961 32169 32168 32064 Face 60962 32065 32169 32064 Face 60963 32357 32356 32250 Face 60964 33656 33781 33655 Face 60965 31487 31596 31486 Face 60966 33243 33242 33107 Face 60967 32026 32130 32025 Face 60968 30979 31078 30978 Face 60969 31741 31853 31740 Face 60970 31960 31959 31852 Face 60971 32069 32173 32068 Face 60972 32277 32276 32172 Face 60973 32173 32277 32172 Face 60974 32383 32382 32276 Face 60975 32277 32383 32276 Face 60976 16766 34122 34123 Face 60977 32617 32500 11035 Face 60978 33887 34013 33886 Face 60979 30820 30720 11056 Face 60980 31272 31375 31271 Face 60981 31479 31478 31374 Face 60982 32495 32494 32382 Face 60983 32383 32495 32382 Face 60984 32612 32611 32494 Face 60985 32495 32612 32494 Face 60986 32739 32738 32611 Face 60987 32612 32739 32611 Face 60988 32872 32871 32738 Face 60989 32739 32872 32738 Face 60990 33004 33003 32871 Face 60991 32872 33004 32871 Face 60992 30903 31000 30999 Face 60993 31853 31852 31740 Face 60994 30706 30805 30705 Face 60995 30902 30903 30999 Face 60996 30805 30903 30902 Face 60997 30804 30805 30902 Face 60998 30896 30895 30789 Face 60999 30791 30897 30790 Face 61000 31853 31960 31852 Face 61001 32065 32064 31959 Face 61002 33138 33137 33003 Face 61003 30805 30804 30705 Face 61004 33004 33138 33003 Face 61005 14113 5330 16575 Face 61006 34351 34420 34409 Face 61007 5909 6037 32546 Face 61008 20155 34832 34605 Face 61009 30665 30764 30664 Face 61010 30613 30707 30612 Face 61011 30407 30478 30406 Face 61012 33974 33846 33847 Face 61013 33541 6682 6681 Face 61014 32707 32840 32706 Face 61015 32234 32233 32129 Face 61016 32130 32234 32129 Face 61017 33273 33272 33137 Face 61018 33138 33273 33137 Face 61019 33409 33408 33272 Face 61020 33273 33409 33272 Face 61021 11015 11061 25581 Face 61022 33408 33409 33541 Face 61023 31098 31099 31197 Face 61024 11170 31218 11171 Face 61025 31531 31644 31530 Face 61026 31765 31764 31643 Face 61027 31320 31424 31319 Face 61028 30527 30612 30526 Face 61029 31320 31319 31217 Face 61030 30612 30611 30526 Face 61031 31218 31320 31217 Face 61032 31424 31423 31319 Face 61033 15736 28423 34458 Face 61034 30613 30612 30527 Face 61035 31644 31765 31643 Face 61036 32858 32990 32857 Face 61037 31877 31876 31764 Face 61038 15667 2004 1687 Face 61039 33302 33435 3077 Face 61040 33085 33084 32950 Face 61041 31652 32764 34175 Face 61042 25844 23497 23844 Face 61043 16767 16838 16837 Face 61044 28013 23361 28406 Face 61045 7347 7346 7239 Face 61046 32503 6795 32390 Face 61047 20880 33312 33444 Face 61048 6388 27017 2813 Face 61049 11075 11074 29995 Face 61050 31585 31699 31584 Face 61051 30706 30705 30611 Face 61052 30612 30706 30611 Face 61053 31509 31510 31622 Face 61054 31099 31198 31197 Face 61055 32154 32258 32153 Face 61056 32258 32257 32153 Face 61057 32982 32981 32849 Face 61058 32850 32982 32849 Face 61059 33772 33771 33646 Face 61060 27961 20707 16719 Face 61061 32985 32984 32852 Face 61062 33647 33772 33646 Face 61063 33395 33394 33258 Face 61064 29993 30054 29992 Face 61065 30906 31003 30905 Face 61066 30242 30307 30241 Face 61067 32476 32593 32475 Face 61068 31765 31877 31764 Face 61069 31003 31099 31098 Face 61070 31984 31983 31876 Face 61071 31877 31984 31876 Face 61072 19435 21654 17192 Face 61073 32301 31652 33917 Face 61074 34175 34472 34604 Face 61075 33025 33024 31652 Face 61076 32301 33025 31652 Face 61077 33025 33285 32747 Face 61078 33024 33025 32747 Face 61079 32644 17621 17961 Face 61080 17961 32885 32752 Face 61081 21634 21730 21633 Face 61082 21447 21542 21541 Face 61083 1114 4578 6290 Face 61084 32230 32337 32449 Face 61085 32201 21734 21733 Face 61086 31975 31974 31867 Face 61087 30054 30053 29992 Face 61088 32725 32724 32597 Face 61089 30709 30708 30614 Face 61090 32089 32088 31983 Face 61091 31612 31726 31725 Face 61092 31299 31300 31403 Face 61093 32151 32255 32150 Face 61094 31611 31612 31725 Face 61095 32361 32360 32254 Face 61096 32255 32361 32254 Face 61097 32727 32860 32726 Face 61098 34266 34265 34142 Face 61099 32850 32849 32716 Face 61100 34143 34266 34142 Face 61101 33389 33390 33522 Face 61102 32717 32850 32716 Face 61103 30615 30614 30529 Face 61104 33671 32301 33917 Face 61105 16679 16678 32320 Face 61106 34157 33025 32301 Face 61107 33808 33671 34830 Face 61108 33151 33285 33025 Face 61109 34157 33151 33025 Face 61110 33151 12633 11041 Face 61111 33285 33151 11041 Face 61112 12633 32752 32885 Face 61113 11041 12633 32885 Face 61114 30116 30115 30053 Face 61115 32644 17961 32752 Face 61116 30235 30236 30300 Face 61117 19287 19258 19259 Face 61118 31725 31726 31837 Face 61119 31172 31273 31171 Face 61120 31984 32089 31983 Face 61121 30530 30615 30529 Face 61122 32193 32192 32088 Face 61123 32089 32193 32088 Face 61124 30617 30616 30531 Face 61125 30532 30617 30531 Face 61126 30711 30710 30616 Face 61127 30617 30711 30616 Face 61128 30810 30809 30710 Face 61129 30711 30810 30710 Face 61130 30908 30907 30809 Face 61131 30810 30908 30809 Face 61132 31005 31004 30907 Face 61133 30908 31005 30907 Face 61134 31101 31100 31004 Face 61135 31005 31101 31004 Face 61136 31101 31200 31199 Face 61137 31100 31101 31199 Face 61138 31200 31302 31301 Face 61139 30597 30596 30511 Face 61140 31199 31200 31301 Face 61141 21197 17621 32644 Face 61142 31989 7241 31988 Face 61143 31882 31989 31881 Face 61144 33196 33151 34157 Face 61145 25563 26189 18553 Face 61146 33551 12633 33151 Face 61147 33196 33551 33151 Face 61148 33551 32887 32752 Face 61149 12633 33551 32752 Face 61150 26415 28363 34827 Face 61151 32752 32887 32644 Face 61152 11309 11234 11235 Face 61153 33664 6678 33663 Face 61154 31302 31406 31405 Face 61155 31301 31302 31405 Face 61156 31406 31512 31511 Face 61157 31405 31406 31511 Face 61158 31625 31624 31511 Face 61159 31512 31625 31511 Face 61160 31746 31745 31624 Face 61161 31625 31746 31624 Face 61162 31858 31857 31745 Face 61163 31746 31858 31745 Face 61164 31965 31964 31857 Face 61165 31858 31965 31857 Face 61166 32070 32069 31964 Face 61167 31965 32070 31964 Face 61168 30502 30587 30501 Face 61169 32174 32173 32069 Face 61170 33380 33513 33379 Face 61171 32713 32712 32585 Face 61172 31961 31960 31853 Face 61173 32380 32379 32273 Face 61174 33906 33905 33779 Face 61175 33124 33259 33258 Face 61176 33655 33654 33527 Face 61177 32477 32476 32364 Face 61178 31095 31194 31094 Face 61179 30441 30512 30440 Face 61180 32070 32174 32069 Face 61181 11024 11023 30183 Face 61182 32278 32277 32173 Face 61183 30763 30869 30762 Face 61184 34550 33294 34157 Face 61185 30664 30763 30663 Face 61186 32197 33551 33196 Face 61187 17193 11041 17192 Face 61188 33196 34657 32197 Face 61189 33551 32197 32887 Face 61190 30373 30440 30439 Face 61191 16850 16774 16851 Face 61192 6682 33541 6618 Face 61193 32174 32278 32173 Face 61194 32384 32383 32277 Face 61195 32278 32384 32277 Face 61196 32496 32495 32383 Face 61197 32384 32496 32383 Face 61198 32613 32612 32495 Face 61199 32496 32613 32495 Face 61200 32740 32739 32612 Face 61201 32613 32740 32612 Face 61202 32873 32872 32739 Face 61203 31601 31600 31491 Face 61204 32740 32873 32739 Face 61205 31979 31978 31871 Face 61206 30162 30163 30226 Face 61207 30512 30597 30511 Face 61208 31760 31872 31759 Face 61209 30039 30038 29977 Face 61210 29978 30039 29977 Face 61211 33005 33004 32872 Face 61212 31170 31271 31169 Face 61213 32873 33005 32872 Face 61214 33139 33138 33004 Face 61215 33005 33139 33004 Face 61216 33274 33273 33138 Face 61217 33139 33274 33138 Face 61218 33757 33883 33756 Face 61219 33274 33410 33409 Face 61220 33273 33274 33409 Face 61221 4997 8245 750 Face 61222 11020 11019 30314 Face 61223 31504 31503 31399 Face 61224 31198 31300 31299 Face 61225 32830 32829 32696 Face 61226 33268 33404 33267 Face 61227 30056 30055 29994 Face 61228 30056 30118 30055 Face 61229 29995 30056 29994 Face 61230 30118 30117 30055 Face 61231 30180 30179 30117 Face 61232 30118 30180 30117 Face 61233 30244 30243 30179 Face 61234 30180 30244 30179 Face 61235 33268 33267 33132 Face 61236 33133 33268 33132 Face 61237 32297 32296 32192 Face 61238 32193 32297 32192 Face 61239 6772 6771 6677 Face 61240 30526 30525 25580 Face 61241 11022 11021 30248 Face 61242 33663 6678 6677 Face 61243 30423 30422 30355 Face 61244 29871 29925 29870 Face 61245 22773 15196 15195 Face 61246 29852 29906 29851 Face 61247 32403 32402 32296 Face 61248 32297 32403 32296 Face 61249 32734 32867 32733 Face 61250 30681 30780 30680 Face 61251 33244 33380 33243 Face 61252 30407 30406 30339 Face 61253 34017 34016 33890 Face 61254 16719 12636 18874 Face 61255 33765 33891 33764 Face 61256 31492 31601 31491 Face 61257 30309 30376 30308 Face 61258 33513 33512 33379 Face 61259 30309 30308 30243 Face 61260 30244 30309 30243 Face 61261 30443 30442 30375 Face 61262 30376 30375 30308 Face 61263 30898 30897 30791 Face 61264 30376 30443 30375 Face 61265 30605 30699 30604 Face 61266 30792 30898 30791 Face 61267 30282 30281 30216 Face 61268 32058 32057 31952 Face 61269 33880 34006 33879 Face 61270 21639 21640 21736 Face 61271 30587 30586 30501 Face 61272 30152 30153 30216 Face 61273 33536 33537 33663 Face 61274 30092 30093 30154 Face 61275 32469 32468 32356 Face 61276 33537 33536 33403 Face 61277 33523 33650 33522 Face 61278 32364 32363 32257 Face 61279 32717 32716 32589 Face 61280 32590 32717 32589 Face 61281 32607 32734 32733 Face 61282 33647 33646 33519 Face 61283 31840 31839 31727 Face 61284 32606 32607 32733 Face 61285 32716 32715 32588 Face 61286 32478 32595 32477 Face 61287 32589 32588 32471 Face 61288 32472 32589 32471 Face 61289 31947 32052 31946 Face 61290 32156 32155 32051 Face 61291 33404 33403 33267 Face 61292 32052 32156 32051 Face 61293 33898 33897 33771 Face 61294 32489 32490 32606 Face 61295 32593 32720 32592 Face 61296 22774 22773 7192 Face 61297 33994 33993 33866 Face 61298 33741 33867 33740 Face 61299 22773 7083 7192 Face 61300 34470 34537 34434 Face 61301 7231 32631 32514 Face 61302 32513 32514 32631 Face 61303 32853 32985 32852 Face 61304 30906 30905 30807 Face 61305 31002 31003 31098 Face 61306 32999 32998 32866 Face 61307 30341 30340 30273 Face 61308 30514 30599 30513 Face 61309 32867 32999 32866 Face 61310 30514 30513 30442 Face 61311 30443 30514 30442 Face 61312 30693 30692 30598 Face 61313 30599 30598 30513 Face 61314 30792 30791 30692 Face 61315 30599 30693 30598 Face 61316 33646 33771 33645 Face 61317 30693 30792 30692 Face 61318 34149 34148 34022 Face 61319 33897 33896 33770 Face 61320 33519 33646 33645 Face 61321 33771 33770 33645 Face 61322 33250 33386 33249 Face 61323 33385 33386 33518 Face 61324 31297 31298 31400 Face 61325 33115 33250 33114 Face 61326 30898 30998 30897 Face 61327 31505 31504 31400 Face 61328 31298 31297 31196 Face 61329 31298 31401 31400 Face 61330 31401 31505 31400 Face 61331 31614 31613 31504 Face 61332 31505 31614 31504 Face 61333 31728 31727 31613 Face 61334 33404 33537 33403 Face 61335 31614 31728 31613 Face 61336 32867 32866 32733 Face 61337 33537 33664 33663 Face 61338 32403 32514 32402 Face 61339 32378 32490 32489 Face 61340 34665 32887 34486 Face 61341 2330 561 5200 Face 61342 32272 32378 32377 Face 61343 31589 31588 31479 Face 61344 32722 32721 32594 Face 61345 32271 32272 32377 Face 61346 32595 32722 32594 Face 61347 32855 32854 32721 Face 61348 32987 33121 32986 Face 61349 33120 33121 33255 Face 61350 32156 32260 32259 Face 61351 32155 32156 32259 Face 61352 32064 32168 32063 Face 61353 32272 32271 32167 Face 61354 16693 16755 16754 Face 61355 6802 34833 10247 Face 61356 34129 32624 34128 Face 61357 33290 14507 12711 Face 61358 34265 16719 34264 Face 61359 32168 32167 32063 Face 61360 31744 31856 31743 Face 61361 33133 33132 32998 Face 61362 32490 32607 32606 Face 61363 32366 32365 32259 Face 61364 32999 33133 32998 Face 61365 32360 32359 32253 Face 61366 32260 32366 32259 Face 61367 32254 32360 32253 Face 61368 32472 32471 32359 Face 61369 2821 23922 2822 Face 61370 33897 34023 33896 Face 61371 33626 33625 33498 Face 61372 33771 33897 33770 Face 61373 763 32508 764 Face 61374 34023 34022 33896 Face 61375 6658 6752 6657 Face 61376 30239 30304 30303 Face 61377 33752 33878 33751 Face 61378 30371 30438 30437 Face 61379 30438 30509 30508 Face 61380 30238 30239 30303 Face 61381 33386 33385 33249 Face 61382 30370 30371 30437 Face 61383 33115 33114 32980 Face 61384 32981 33115 32980 Face 61385 32981 32980 32848 Face 61386 33250 33249 33114 Face 61387 32849 32848 32715 Face 61388 32849 32981 32848 Face 61389 32589 32716 32588 Face 61390 32716 32849 32715 Face 61391 31839 31840 31946 Face 61392 32360 32472 32359 Face 61393 31728 31840 31727 Face 61394 32052 32051 31946 Face 61395 32377 32378 32489 Face 61396 31840 31947 31946 Face 61397 34152 6660 11285 Face 61398 31959 32064 31958 Face 61399 33650 33775 33649 Face 61400 32720 32719 32592 Face 61401 31959 31958 31851 Face 61402 11531 12015 10988 Face 61403 31852 31959 31851 Face 61404 32064 32063 31958 Face 61405 33525 33524 33391 Face 61406 33256 33392 33391 Face 61407 32722 32855 32721 Face 61408 32987 32986 32854 Face 61409 32168 32272 32167 Face 61410 32855 32987 32854 Face 61411 32904 10859 12276 Face 61412 31740 31852 31739 Face 61413 32047 32151 32046 Face 61414 32255 32254 32150 Face 61415 31941 31942 32046 Face 61416 32395 32396 32506 Face 61417 33901 33900 33774 Face 61418 30902 30999 30901 Face 61419 31852 31851 31739 Face 61420 32478 32477 32365 Face 61421 32366 32478 32365 Face 61422 33777 33776 33651 Face 61423 32595 32594 32477 Face 61424 33652 33777 33651 Face 61425 33903 33902 33776 Face 61426 30091 30092 30153 Face 61427 31834 31941 31940 Face 61428 6666 6665 34031 Face 61429 32832 32831 32698 Face 61430 6622 12632 2300 Face 61431 33018 18821 29203 Face 61432 33741 33740 33615 Face 61433 21253 21161 21162 Face 61434 12531 33924 33290 Face 61435 22274 26443 16694 Face 61436 20147 32537 33682 Face 61437 25499 25498 25025 Face 61438 20359 20446 20358 Face 61439 33329 20448 33330 Face 61440 31990 2951 2950 Face 61441 29926 29925 29871 Face 61442 1542 13278 13861 Face 61443 29872 29926 29871 Face 61444 29984 29983 29925 Face 61445 767 32512 32630 Face 61446 29926 29984 29925 Face 61447 30045 30044 29983 Face 61448 29984 30045 29983 Face 61449 30045 30107 30106 Face 61450 32254 32253 32149 Face 61451 32150 32254 32149 Face 61452 33392 33525 33391 Face 61453 33652 33651 33524 Face 61454 30804 30902 30901 Face 61455 30803 30804 30901 Face 61456 30804 30803 30704 Face 61457 30705 30804 30704 Face 61458 32151 32150 32046 Face 61459 30611 30705 30610 Face 61460 31856 31855 31743 Face 61461 33650 33649 33522 Face 61462 30526 30611 30525 Face 61463 30587 30681 30586 Face 61464 30611 30610 30525 Face 61465 30705 30704 30610 Face 61466 32858 32857 32724 Face 61467 33538 33539 33665 Face 61468 33121 33120 32986 Face 61469 31950 32055 32054 Face 61470 31196 31297 31296 Face 61471 31195 31196 31296 Face 61472 31837 31838 31944 Face 61473 31613 31612 31503 Face 61474 31504 31613 31503 Face 61475 30618 30617 30532 Face 61476 14500 3697 256 Face 61477 30712 30711 30617 Face 61478 32990 32989 32857 Face 61479 32153 32152 32048 Face 61480 32725 32858 32724 Face 61481 30886 30885 30779 Face 61482 32025 32024 31919 Face 61483 12913 33924 32904 Face 61484 34029 34028 33902 Face 61485 33777 33903 33776 Face 61486 30431 30430 30363 Face 61487 31950 31949 31842 Face 61488 19254 30059 19255 Face 61489 30532 30531 25675 Face 61490 33356 33355 33219 Face 61491 16776 16853 18823 Face 61492 18128 18337 8001 Face 61493 18337 34043 8001 Face 61494 7026 32769 33930 Face 61495 33196 34157 33294 Face 61496 33930 12119 19296 Face 61497 16686 16746 16685 Face 61498 489 598 597 Face 61499 32509 32510 765 Face 61500 32427 14669 14201 Face 61501 34071 20975 20976 Face 61502 33147 31535 32427 Face 61503 27017 33278 2947 Face 61504 21160 21161 21252 Face 61505 12541 26073 16845 Face 61506 31535 26589 15044 Face 61507 34485 34816 34332 Face 61508 30044 30045 30106 Face 61509 30107 30169 30168 Face 61510 31941 32046 31940 Face 61511 32150 32149 32045 Face 61512 33525 33652 33524 Face 61513 33903 34029 33902 Face 61514 31177 31176 31077 Face 61515 30765 30871 30764 Face 61516 30618 30712 30617 Face 61517 30811 30810 30711 Face 61518 30712 30811 30711 Face 61519 30909 30908 30810 Face 61520 30811 30909 30810 Face 61521 31006 31005 30908 Face 61522 30909 31006 30908 Face 61523 31102 31101 31005 Face 61524 31006 31102 31005 Face 61525 31201 31200 31101 Face 61526 31102 31201 31101 Face 61527 31303 31302 31200 Face 61528 32989 32990 33123 Face 61529 31201 31303 31200 Face 61530 765 32510 766 Face 61531 15739 4723 9323 Face 61532 31407 31406 31302 Face 61533 31303 31407 31302 Face 61534 31513 31512 31406 Face 61535 31407 31513 31406 Face 61536 31626 31625 31512 Face 61537 31513 31626 31512 Face 61538 31747 31746 31625 Face 61539 31626 31747 31625 Face 61540 31859 31858 31746 Face 61541 31747 31859 31746 Face 61542 31966 31965 31858 Face 61543 31859 31966 31858 Face 61544 32071 32070 31965 Face 61545 31966 32071 31965 Face 61546 32175 32174 32070 Face 61547 32071 32175 32070 Face 61548 32279 32278 32174 Face 61549 32175 32279 32174 Face 61550 33655 33780 33654 Face 61551 32400 32401 32511 Face 61552 31589 31703 31588 Face 61553 34479 34294 11212 Face 61554 11113 11175 11112 Face 61555 29935 29993 29934 Face 61556 18966 861 7026 Face 61557 33752 33751 33626 Face 61558 9214 10078 10520 Face 61559 3592 3593 3722 Face 61560 33032 33423 2950 Face 61561 16696 26814 28280 Face 61562 33937 29325 32769 Face 61563 7026 33937 32769 Face 61564 29325 13014 24116 Face 61565 32769 29325 24116 Face 61566 13014 33678 13291 Face 61567 24116 13014 13291 Face 61568 33678 30825 33147 Face 61569 13291 33678 33147 Face 61570 30825 26589 31535 Face 61571 33147 30825 31535 Face 61572 34175 34604 33917 Face 61573 26589 16778 15044 Face 61574 32337 32230 32126 Face 61575 6757 6662 6758 Face 61576 30106 30107 30168 Face 61577 30680 30779 30679 Face 61578 32046 32150 32045 Face 61579 30169 30233 30232 Face 61580 1542 15434 33429 Face 61581 31833 31834 31940 Face 61582 31620 31734 31619 Face 61583 34028 34029 34154 Face 61584 32385 32384 32278 Face 61585 31480 31589 31479 Face 61586 32279 32385 32278 Face 61587 32497 32496 32384 Face 61588 32385 32497 32384 Face 61589 32614 32613 32496 Face 61590 32497 32614 32496 Face 61591 31715 31827 31714 Face 61592 33380 33379 33243 Face 61593 32741 32740 32613 Face 61594 32614 32741 32613 Face 61595 32874 32873 32740 Face 61596 32741 32874 32740 Face 61597 33006 33005 32873 Face 61598 32874 33006 32873 Face 61599 33140 33139 33005 Face 61600 33006 33140 33005 Face 61601 33275 33274 33139 Face 61602 33140 33275 33139 Face 61603 33995 33994 33867 Face 61604 33274 33275 33410 Face 61605 33430 17039 18618 Face 61606 21357 21356 34178 Face 61607 31838 31945 31944 Face 61608 31400 31504 31399 Face 61609 33405 33406 33538 Face 61610 13366 13749 13275 Face 61611 33135 33270 33134 Face 61612 33270 33406 33269 Face 61613 30487 30486 30415 Face 61614 32887 34665 34637 Face 61615 33368 33501 33367 Face 61616 31071 31170 31070 Face 61617 13770 34221 18265 Face 61618 31822 31821 31709 Face 61619 2173 29080 2172 Face 61620 6667 33906 33907 Face 61621 33937 12588 29325 Face 61622 12588 33937 8936 Face 61623 33148 5118 13014 Face 61624 29325 33148 13014 Face 61625 5118 33564 33678 Face 61626 13014 5118 33678 Face 61627 33564 33022 30825 Face 61628 33678 33564 30825 Face 61629 33022 27259 26589 Face 61630 30825 33022 26589 Face 61631 12590 16778 27259 Face 61632 26589 27259 16778 Face 61633 7232 7231 32514 Face 61634 636 7400 635 Face 61635 30779 30778 30679 Face 61636 30885 30884 30778 Face 61637 30168 30169 30232 Face 61638 30298 30297 30232 Face 61639 31722 31834 31833 Face 61640 32046 32045 31940 Face 61641 33529 33656 33528 Face 61642 11169 11237 31321 Face 61643 32843 32975 32842 Face 61644 31388 31387 31284 Face 61645 33234 33233 33098 Face 61646 30416 30415 30348 Face 61647 31618 31732 31617 Face 61648 34027 34026 33900 Face 61649 33775 33774 33649 Face 61650 32590 32589 32472 Face 61651 32473 32590 32472 Face 61652 31601 31715 31600 Face 61653 31716 31715 31601 Face 61654 33387 33386 33250 Face 61655 31716 31828 31715 Face 61656 33520 33647 33519 Face 61657 32853 32852 32719 Face 61658 32720 32853 32719 Face 61659 30808 30906 30807 Face 61660 31003 31002 30905 Face 61661 30808 30807 30708 Face 61662 30709 30808 30708 Face 61663 32967 32966 32834 Face 61664 30615 30709 30614 Face 61665 31424 31530 31423 Face 61666 33109 33108 32974 Face 61667 32594 32593 32476 Face 61668 31742 31854 31741 Face 61669 31856 31963 31855 Face 61670 30897 30896 30790 Face 61671 31503 31502 31398 Face 61672 31399 31503 31398 Face 61673 31872 31979 31871 Face 61674 32733 32866 32865 Face 61675 33231 33230 33095 Face 61676 31500 31609 31608 Face 61677 31609 31723 31722 Face 61678 32188 32187 32083 Face 61679 31499 31500 31608 Face 61680 32513 32631 32630 Face 61681 33775 33901 33774 Face 61682 16767 16768 16838 Face 61683 32512 32513 32630 Face 61684 32488 32489 32605 Face 61685 32606 32733 32732 Face 61686 12588 33148 29325 Face 61687 30878 30877 30771 Face 61688 32126 32231 32337 Face 61689 30178 30177 30115 Face 61690 34598 34672 34454 Face 61691 31773 33788 12502 Face 61692 32768 12994 5118 Face 61693 33148 32768 5118 Face 61694 12994 32532 33564 Face 61695 5118 12994 33564 Face 61696 32532 12649 33022 Face 61697 33564 32532 33022 Face 61698 12649 32309 27259 Face 61699 33022 12649 27259 Face 61700 2950 3086 2949 Face 61701 32309 31773 12590 Face 61702 16683 16684 16743 Face 61703 12502 14916 12501 Face 61704 14916 14915 12501 Face 61705 11168 11236 31533 Face 61706 30233 30298 30232 Face 61707 30365 30364 30297 Face 61708 31607 31608 31721 Face 61709 31721 31722 31833 Face 61710 33396 33529 33395 Face 61711 33656 33655 33528 Face 61712 32482 32481 32369 Face 61713 33118 33117 32983 Face 61714 30153 30217 30216 Face 61715 31271 31270 31169 Face 61716 33255 33254 33119 Face 61717 31828 31827 31715 Face 61718 18829 18525 17729 Face 61719 636 8535 7400 Face 61720 256 3570 2585 Face 61721 18451 34549 6809 Face 61722 30713 30712 30618 Face 61723 30619 30713 30618 Face 61724 32271 32377 32376 Face 61725 30812 30811 30712 Face 61726 31935 31934 31827 Face 61727 32270 32271 32376 Face 61728 30713 30812 30712 Face 61729 32166 32167 32270 Face 61730 30910 30909 30811 Face 61731 30812 30910 30811 Face 61732 31007 31006 30909 Face 61733 30910 31007 30909 Face 61734 31103 31102 31006 Face 61735 31007 31103 31006 Face 61736 31202 31201 31102 Face 61737 31103 31202 31102 Face 61738 32063 32167 32062 Face 61739 31304 31303 31201 Face 61740 32063 32062 31957 Face 61741 32167 32271 32270 Face 61742 31958 32063 31957 Face 61743 32167 32166 32062 Face 61744 30100 30101 30162 Face 61745 31715 31714 31600 Face 61746 32088 32087 31982 Face 61747 31827 31826 31714 Face 61748 32294 32293 32189 Face 61749 30163 30227 30226 Face 61750 33536 33663 33662 Face 61751 33149 10870 30824 Face 61752 31202 31304 31201 Face 61753 31408 31407 31303 Face 61754 31304 31408 31303 Face 61755 31514 31513 31407 Face 61756 31408 31514 31407 Face 61757 32998 33132 32997 Face 61758 31627 31626 31513 Face 61759 31514 31627 31513 Face 61760 31748 31747 31626 Face 61761 31627 31748 31626 Face 61762 31860 31859 31747 Face 61763 31748 31860 31747 Face 61764 31967 31966 31859 Face 61765 31860 31967 31859 Face 61766 31739 31851 31738 Face 61767 32072 32071 31966 Face 61768 31967 32072 31966 Face 61769 31958 31957 31850 Face 61770 32176 32175 32071 Face 61771 32072 32176 32071 Face 61772 32280 32279 32175 Face 61773 32176 32280 32175 Face 61774 32386 32385 32279 Face 61775 32280 32386 32279 Face 61776 32605 32606 32732 Face 61777 30802 30803 30900 Face 61778 31020 31116 31019 Face 61779 31116 31115 31019 Face 61780 11307 31769 11308 Face 61781 32291 32397 32396 Face 61782 33784 33660 6709 Face 61783 32769 24116 12119 Face 61784 32768 12015 12994 Face 61785 12015 33308 10988 Face 61786 34183 33309 32532 Face 61787 12994 34183 32532 Face 61788 33309 32748 12649 Face 61789 32532 33309 12649 Face 61790 32748 18549 32309 Face 61791 12649 32748 32309 Face 61792 18549 33788 31773 Face 61793 32309 18549 31773 Face 61794 32542 2042 32417 Face 61795 33788 33288 12502 Face 61796 10995 9985 7391 Face 61797 3762 33288 32412 Face 61798 3379 4602 32412 Face 61799 3079 32645 13560 Face 61800 32665 9214 10520 Face 61801 32363 32475 32362 Face 61802 31498 31499 31607 Face 61803 31608 31722 31721 Face 61804 33881 34007 33880 Face 61805 31710 31822 31709 Face 61806 34133 34132 34006 Face 61807 30094 30095 30156 Face 61808 32829 32828 32695 Face 61809 34131 34130 34004 Face 61810 31602 31716 31601 Face 61811 32829 32961 32828 Face 61812 32489 32606 32605 Face 61813 33095 33230 33094 Face 61814 32498 32497 32385 Face 61815 32377 32489 32488 Face 61816 32386 32498 32385 Face 61817 32615 32614 32497 Face 61818 32498 32615 32497 Face 61819 32742 32741 32614 Face 61820 30803 30901 30900 Face 61821 32615 32742 32614 Face 61822 30610 30704 30609 Face 61823 30803 30802 30703 Face 61824 32875 32874 32741 Face 61825 32742 32875 32741 Face 61826 33007 33006 32874 Face 61827 30525 30610 30524 Face 61828 32875 33007 32874 Face 61829 32401 32512 32511 Face 61830 30704 30703 30609 Face 61831 32401 32400 32294 Face 61832 30610 30609 30524 Face 61833 33141 33140 33006 Face 61834 32295 32401 32294 Face 61835 33007 33141 33006 Face 61836 33276 33275 33140 Face 61837 33141 33276 33140 Face 61838 20870 25462 25461 Face 61839 32295 32294 32190 Face 61840 32191 32295 32190 Face 61841 32984 33118 32983 Face 61842 31187 31188 31288 Face 61843 32170 32169 32065 Face 61844 32340 32339 32233 Face 61845 30766 30765 30666 Face 61846 31275 31274 31173 Face 61847 33535 33536 33662 Face 61848 6620 33411 6685 Face 61849 33267 33403 33266 Face 61850 33536 33535 33402 Face 61851 33132 33267 33131 Face 61852 33403 33536 33402 Face 61853 33267 33266 33131 Face 61854 33403 33402 33266 Face 61855 32998 32997 32865 Face 61856 32866 32998 32865 Face 61857 31851 31958 31850 Face 61858 33132 33131 32997 Face 61859 21802 21897 29322 Face 61860 31400 31399 31296 Face 61861 32744 11031 32877 Face 61862 31533 11236 11235 Face 61863 31982 32087 31981 Face 61864 32172 32171 32067 Face 61865 31851 31850 31738 Face 61866 31872 31871 31759 Face 61867 30512 30511 30440 Face 61868 32837 32969 32836 Face 61869 31532 31531 31425 Face 61870 20386 32764 21479 Face 61871 32583 32710 32582 Face 61872 31645 31644 31531 Face 61873 31215 31214 31115 Face 61874 29993 29992 29934 Face 61875 12015 34183 12994 Face 61876 30694 30693 30599 Face 61877 32706 32705 32578 Face 61878 3213 3078 3079 Face 61879 8979 6289 31992 Face 61880 24776 24638 11494 Face 61881 21180 21181 34667 Face 61882 31368 31472 31367 Face 61883 34180 33553 32748 Face 61884 33309 34180 32748 Face 61885 33553 28819 18549 Face 61886 32748 33553 18549 Face 61887 28819 11613 33788 Face 61888 18549 28819 33788 Face 61889 11613 33299 33288 Face 61890 33788 11613 33288 Face 61891 33299 32525 32412 Face 61892 33288 33299 32412 Face 61893 32525 32419 32311 Face 61894 32412 32525 32311 Face 61895 31993 31992 10345 Face 61896 3589 585 14533 Face 61897 3178 16691 13750 Face 61898 31911 32016 32015 Face 61899 31394 31395 31498 Face 61900 31499 31608 31607 Face 61901 31291 31292 31394 Face 61902 31395 31499 31498 Face 61903 12637 26011 12748 Face 61904 31292 31395 31394 Face 61905 30286 30285 30220 Face 61906 32030 32029 31924 Face 61907 31818 31925 31817 Face 61908 33879 34005 33878 Face 61909 32376 32377 32488 Face 61910 31280 31383 31279 Face 61911 32975 32974 32842 Face 61912 31934 32039 31933 Face 61913 31532 31645 31531 Face 61914 33232 33368 33231 Face 61915 30517 30602 30516 Face 61916 34027 34153 34152 Face 61917 30704 30803 30703 Face 61918 29920 29919 29865 Face 61919 33901 34027 33900 Face 61920 32039 32038 31933 Face 61921 32473 32472 32360 Face 61922 32361 32473 32360 Face 61923 32982 33116 32981 Face 61924 33251 33387 33250 Face 61925 29920 29978 29919 Face 61926 33119 33118 32984 Face 61927 32985 33119 32984 Face 61928 30101 30163 30162 Face 61929 33119 33254 33118 Face 61930 33254 33253 33118 Face 61931 12636 20707 21455 Face 61932 33390 33523 33522 Face 61933 31766 31765 31644 Face 61934 32258 32364 32257 Face 61935 30038 30039 30100 Face 61936 31645 31766 31644 Face 61937 33780 33906 33779 Face 61938 6667 33907 6668 Face 61939 31215 31317 31214 Face 61940 31421 31420 31316 Face 61941 30370 30437 30436 Face 61942 30369 30370 30436 Face 61943 34180 12550 26812 Face 61944 31383 31382 31279 Face 61945 30772 30878 30771 Face 61946 31487 31486 31382 Face 61947 31286 31389 31285 Face 61948 31078 31077 30978 Face 61949 32974 33108 32973 Face 61950 33108 33243 33107 Face 61951 31188 31289 31288 Face 61952 31389 31388 31285 Face 61953 33124 33125 33259 Face 61954 31288 31289 31391 Face 61955 33252 33253 33388 Face 61956 33780 33781 33906 Face 61957 32087 32191 32086 Face 61958 33389 33522 33521 Face 61959 31878 31877 31765 Face 61960 33905 33906 34031 Face 61961 31766 31878 31765 Face 61962 31985 31984 31877 Face 61963 31878 31985 31877 Face 61964 31285 31284 31183 Face 61965 31587 31701 31586 Face 61966 32592 32719 32591 Face 61967 30896 30997 30895 Face 61968 31317 31316 31214 Face 61969 33898 34024 33897 Face 61970 31932 31931 31824 Face 61971 31174 31173 31074 Face 61972 32084 32083 31978 Face 61973 31071 31070 30971 Face 61974 30767 30873 30766 Face 61975 30600 30694 30599 Face 61976 31170 31169 31070 Face 61977 31402 31506 31401 Face 61978 30973 31072 30972 Face 61979 32645 3078 12558 Face 61980 31692 31804 31803 Face 61981 27613 23303 23361 Face 61982 6774 6775 300 Face 61983 26812 13210 33553 Face 61984 34180 26812 33553 Face 61985 13210 32652 28819 Face 61986 33553 13210 28819 Face 61987 32652 34186 11613 Face 61988 28819 32652 11613 Face 61989 34186 33432 33299 Face 61990 11613 34186 33299 Face 61991 33432 32523 32525 Face 61992 33299 33432 32525 Face 61993 32523 32535 32419 Face 61994 32525 32523 32419 Face 61995 9878 24638 24639 Face 61996 24638 9878 5373 Face 61997 16842 32624 16843 Face 61998 11141 33717 15434 Face 61999 33057 33056 20444 Face 62000 18366 2039 2038 Face 62001 30919 11054 30920 Face 62002 1542 75 15434 Face 62003 16724 16723 31888 Face 62004 34116 6642 34115 Face 62005 31191 31292 31291 Face 62006 30720 30719 11058 Face 62007 30436 30437 30507 Face 62008 31190 31191 31291 Face 62009 31116 31215 31115 Face 62010 34142 34141 34015 Face 62011 32704 32703 32576 Face 62012 33125 33260 33259 Face 62013 32034 32033 31928 Face 62014 30487 30572 30486 Face 62015 31979 32084 31978 Face 62016 32370 32482 32369 Face 62017 30972 31071 30971 Face 62018 32402 32513 32401 Face 62019 30416 30487 30415 Face 62020 30349 30416 30348 Face 62021 31731 31730 31616 Face 62022 32090 32089 31984 Face 62023 31985 32090 31984 Face 62024 32194 32193 32089 Face 62025 33877 33876 33750 Face 62026 32090 32194 32089 Face 62027 32298 32297 32193 Face 62028 33751 33750 33625 Face 62029 19435 16349 22230 Face 62030 14550 20991 29406 Face 62031 33402 33401 33265 Face 62032 30714 30713 30619 Face 62033 30119 30118 30056 Face 62034 34255 12748 34254 Face 62035 31317 31421 31316 Face 62036 30057 30119 30056 Face 62037 30237 30238 30302 Face 62038 30057 30056 29995 Face 62039 31091 31092 31190 Face 62040 30437 30508 30507 Face 62041 30992 30993 31091 Face 62042 31092 31191 31190 Face 62043 30891 30892 30992 Face 62044 30993 31092 31091 Face 62045 30785 30786 30891 Face 62046 30892 30993 30992 Face 62047 30686 30687 30785 Face 62048 30786 30892 30891 Face 62049 30592 30593 30686 Face 62050 30687 30786 30785 Face 62051 30508 30593 30592 Face 62052 30507 30508 30592 Face 62053 30238 30303 30302 Face 62054 30593 30687 30686 Face 62055 30181 30180 30118 Face 62056 30174 30238 30237 Face 62057 34128 34127 34001 Face 62058 30119 30181 30118 Face 62059 32087 32086 31981 Face 62060 32191 32190 32086 Face 62061 31982 31981 31874 Face 62062 32160 32264 32159 Face 62063 30896 30897 30997 Face 62064 31875 31982 31874 Face 62065 30310 30377 30309 Face 62066 30444 30443 30376 Face 62067 32240 32239 32135 Face 62068 30515 30600 30514 Face 62069 30620 30714 30619 Face 62070 33266 33265 33130 Face 62071 30813 30812 30713 Face 62072 30714 30813 30713 Face 62073 33131 33130 32996 Face 62074 30911 30910 30812 Face 62075 31615 31614 31505 Face 62076 32997 33131 32996 Face 62077 32596 32595 32478 Face 62078 32479 32596 32478 Face 62079 13210 26812 6510 Face 62080 32016 32017 32120 Face 62081 33799 33302 3211 Face 62082 20970 20971 21063 Face 62083 33812 21845 32652 Face 62084 13210 33812 32652 Face 62085 21845 12292 34186 Face 62086 32652 21845 34186 Face 62087 12292 33431 33432 Face 62088 34186 12292 33432 Face 62089 33431 32526 32523 Face 62090 33432 33431 32523 Face 62091 32526 33552 32535 Face 62092 32523 32526 32535 Face 62093 33552 32541 33675 Face 62094 32535 33552 33675 Face 62095 32541 33717 11141 Face 62096 33675 32541 11141 Face 62097 5895 11212 34294 Face 62098 33717 33429 15434 Face 62099 33429 13278 1542 Face 62100 6728 6827 13473 Face 62101 31025 31123 11691 Face 62102 6727 13473 6827 Face 62103 25562 27049 8639 Face 62104 12501 31773 12502 Face 62105 30298 30365 30297 Face 62106 31262 31365 31261 Face 62107 31817 31816 31704 Face 62108 34265 34264 34141 Face 62109 30793 30792 30693 Face 62110 32596 32723 32595 Face 62111 32604 32605 32731 Face 62112 32997 32996 32864 Face 62113 30813 30911 30812 Face 62114 31008 31007 30910 Face 62115 30911 31008 30910 Face 62116 31104 31103 31007 Face 62117 32487 32488 32604 Face 62118 32605 32732 32731 Face 62119 31008 31104 31007 Face 62120 31203 31202 31103 Face 62121 31104 31203 31103 Face 62122 31305 31304 31202 Face 62123 31203 31305 31202 Face 62124 31409 31408 31304 Face 62125 32375 32376 32487 Face 62126 31305 31409 31304 Face 62127 32451 32450 32338 Face 62128 33626 33751 33625 Face 62129 31515 31514 31408 Face 62130 31409 31515 31408 Face 62131 31628 31627 31514 Face 62132 31515 31628 31514 Face 62133 31749 31748 31627 Face 62134 31628 31749 31627 Face 62135 31861 31860 31748 Face 62136 31749 31861 31748 Face 62137 33266 33402 33265 Face 62138 31968 31967 31860 Face 62139 30694 30793 30693 Face 62140 33535 33534 33401 Face 62141 31611 31725 31724 Face 62142 30793 30898 30792 Face 62143 30303 30370 30369 Face 62144 32186 32187 32290 Face 62145 30432 30503 30431 Face 62146 30302 30303 30369 Face 62147 30432 30431 30364 Face 62148 30588 30587 30502 Face 62149 30365 30432 30364 Face 62150 30503 30502 30431 Face 62151 30503 30588 30502 Face 62152 30682 30681 30587 Face 62153 30588 30682 30587 Face 62154 30781 30780 30681 Face 62155 30887 30886 30780 Face 62156 30682 30781 30681 Face 62157 30988 30987 30886 Face 62158 30781 30887 30780 Face 62159 31086 31087 31185 Face 62160 30887 30988 30886 Face 62161 30988 31087 31086 Face 62162 30987 30988 31086 Face 62163 30173 30174 30237 Face 62164 31087 31186 31185 Face 62165 30245 30310 30244 Face 62166 30050 30112 30049 Face 62167 30245 30244 30180 Face 62168 30377 30376 30309 Face 62169 30181 30245 30180 Face 62170 30310 30309 30244 Face 62171 30377 30444 30376 Face 62172 30515 30514 30443 Face 62173 30444 30515 30443 Face 62174 30600 30599 30514 Face 62175 31402 31401 31298 Face 62176 33877 34003 33876 Face 62177 33131 33266 33130 Face 62178 31506 31505 31401 Face 62179 31861 31968 31860 Face 62180 32376 32488 32487 Face 62181 32073 32072 31967 Face 62182 31968 32073 31967 Face 62183 32165 32166 32269 Face 62184 32177 32176 32072 Face 62185 32723 32722 32595 Face 62186 32270 32376 32375 Face 62187 32696 32829 32695 Face 62188 32988 33122 32987 Face 62189 32507 32508 763 Face 62190 34630 28558 34349 Face 62191 33812 5332 21845 Face 62192 18897 18432 19116 Face 62193 33789 13015 12292 Face 62194 21845 33789 12292 Face 62195 13015 33560 33431 Face 62196 12292 13015 33431 Face 62197 33560 32767 32526 Face 62198 33431 33560 32526 Face 62199 32767 11375 33552 Face 62200 32526 32767 33552 Face 62201 11375 34241 32541 Face 62202 33552 11375 32541 Face 62203 34241 26905 33717 Face 62204 32541 34241 33717 Face 62205 26905 32421 33429 Face 62206 33717 26905 33429 Face 62207 32421 11685 13278 Face 62208 33429 32421 13278 Face 62209 33152 12011 13278 Face 62210 11685 33152 13278 Face 62211 34501 34517 34745 Face 62212 33152 26076 12011 Face 62213 6660 6755 6754 Face 62214 6643 34242 6729 Face 62215 31283 31282 31181 Face 62216 32844 32843 32710 Face 62217 32856 32855 32722 Face 62218 32837 32836 32703 Face 62219 32865 32997 32864 Face 62220 32723 32856 32722 Face 62221 32073 32177 32072 Face 62222 32062 32166 32061 Face 62223 32281 32280 32176 Face 62224 32177 32281 32176 Face 62225 32387 32386 32280 Face 62226 31738 31850 31737 Face 62227 31957 31956 31849 Face 62228 32281 32387 32280 Face 62229 32499 32498 32386 Face 62230 32387 32499 32386 Face 62231 32616 32615 32498 Face 62232 32499 32616 32498 Face 62233 32743 32742 32615 Face 62234 32616 32743 32615 Face 62235 30802 30900 30801 Face 62236 32876 32875 32742 Face 62237 31506 31615 31505 Face 62238 32488 32605 32604 Face 62239 30684 30783 30782 Face 62240 33499 33626 33498 Face 62241 6642 6643 6728 Face 62242 30589 30590 30683 Face 62243 30683 30684 30782 Face 62244 30783 30889 30888 Face 62245 1977 10707 8992 Face 62246 14150 12173 33013 Face 62247 33402 33535 33401 Face 62248 33535 33662 33661 Face 62249 32156 32157 32260 Face 62250 33534 33535 33661 Face 62251 34142 34265 34141 Face 62252 32367 32366 32260 Face 62253 31287 31390 31286 Face 62254 31610 31611 31724 Face 62255 31287 31286 31185 Face 62256 31186 31287 31185 Face 62257 30105 30167 30166 Face 62258 31390 31389 31286 Face 62259 30586 30680 30585 Face 62260 30104 30105 30166 Face 62261 30586 30585 30500 Face 62262 30501 30586 30500 Face 62263 30501 30500 30429 Face 62264 30680 30679 30585 Face 62265 30430 30429 30362 Face 62266 30430 30501 30429 Face 62267 30296 30363 30295 Face 62268 30363 30430 30362 Face 62269 30231 30296 30230 Face 62270 30363 30362 30295 Face 62271 30166 30167 30230 Face 62272 30296 30295 30230 Face 62273 29982 30043 29981 Face 62274 30043 30105 30104 Face 62275 31494 31493 31389 Face 62276 29924 29982 29923 Face 62277 30112 30174 30173 Face 62278 31390 31494 31389 Face 62279 29989 30050 29988 Face 62280 30111 30112 30173 Face 62281 29931 29989 29930 Face 62282 30112 30111 30049 Face 62283 29877 29931 29876 Face 62284 30050 30049 29988 Face 62285 29931 29930 29876 Face 62286 29989 29988 29930 Face 62287 34006 34005 33879 Face 62288 32969 33103 32968 Face 62289 32367 32479 32366 Face 62290 33904 34030 34029 Face 62291 30703 30802 30801 Face 62292 30702 30703 30801 Face 62293 32743 32876 32742 Face 62294 33008 33007 32875 Face 62295 32876 33008 32875 Face 62296 33142 33141 33007 Face 62297 32269 32270 32375 Face 62298 30609 30703 30608 Face 62299 33095 33094 32960 Face 62300 33393 33392 33256 Face 62301 3594 3465 3466 Face 62302 7583 13772 7268 Face 62303 33013 12199 33789 Face 62304 5332 33789 21845 Face 62305 12199 6839 13015 Face 62306 33789 12199 13015 Face 62307 6839 33559 33560 Face 62308 13015 6839 33560 Face 62309 33559 32527 32767 Face 62310 33560 33559 32767 Face 62311 32527 32901 11375 Face 62312 32767 32527 11375 Face 62313 32901 33936 34241 Face 62314 11375 32901 34241 Face 62315 33936 33972 26905 Face 62316 34241 33936 26905 Face 62317 33972 34195 32421 Face 62318 26905 33972 32421 Face 62319 34195 31885 11685 Face 62320 32421 34195 11685 Face 62321 32416 33152 11685 Face 62322 31885 32416 11685 Face 62323 33426 26076 33152 Face 62324 32416 33426 33152 Face 62325 17857 25080 21262 Face 62326 18364 18366 32891 Face 62327 32711 32844 32710 Face 62328 6686 6687 6782 Face 62329 30673 30672 30578 Face 62330 32976 32975 32843 Face 62331 32988 32987 32855 Face 62332 32833 32832 32699 Face 62333 32166 32270 32269 Face 62334 32856 32988 32855 Face 62335 33008 33142 33007 Face 62336 32062 32061 31956 Face 62337 33277 33276 33141 Face 62338 33142 33277 33141 Face 62339 30524 30609 30523 Face 62340 30703 30702 30608 Face 62341 8844 12569 15787 Face 62342 33276 33277 33411 Face 62343 27961 16719 34265 Face 62344 30820 11055 30919 Face 62345 32194 32298 32193 Face 62346 33891 33890 33764 Face 62347 30524 30523 30452 Face 62348 32404 32403 32297 Face 62349 33122 33121 32987 Face 62350 31850 31849 31737 Face 62351 31729 31728 31614 Face 62352 31615 31729 31614 Face 62353 31729 31841 31728 Face 62354 31841 31840 31728 Face 62355 31840 31841 31947 Face 62356 31841 31948 31947 Face 62357 31948 32053 31947 Face 62358 32053 32052 31947 Face 62359 32053 32157 32052 Face 62360 32157 32156 32052 Face 62361 32261 32367 32260 Face 62362 32157 32261 32260 Face 62363 33890 34016 33889 Face 62364 32479 32478 32366 Face 62365 29964 30025 29963 Face 62366 30094 30156 30155 Face 62367 34003 34002 33876 Face 62368 30174 30175 30238 Face 62369 30155 30156 30219 Face 62370 30042 30043 30104 Face 62371 31114 31113 31017 Face 62372 30167 30231 30230 Face 62373 30292 30291 30226 Face 62374 30227 30292 30226 Face 62375 30497 30496 30425 Face 62376 30359 30358 30291 Face 62377 30292 30359 30291 Face 62378 30426 30497 30425 Face 62379 30426 30425 30358 Face 62380 30359 30426 30358 Face 62381 30582 30581 30496 Face 62382 30497 30582 30496 Face 62383 30676 30675 30581 Face 62384 30582 30676 30581 Face 62385 30676 30775 30675 Face 62386 30775 30774 30675 Face 62387 30775 30881 30774 Face 62388 30881 30880 30774 Face 62389 30043 30042 29981 Face 62390 30982 30981 30880 Face 62391 31603 31717 31602 Face 62392 29924 29923 29869 Face 62393 31603 31602 31493 Face 62394 31829 31828 31716 Face 62395 31494 31603 31493 Face 62396 31717 31716 31602 Face 62397 31717 31829 31716 Face 62398 31936 31935 31828 Face 62399 31829 31936 31828 Face 62400 32041 32040 31935 Face 62401 30491 30576 30490 Face 62402 31936 32041 31935 Face 62403 33903 33904 34029 Face 62404 34003 34004 34129 Face 62405 30900 30899 30801 Face 62406 3593 5123 33418 Face 62407 32298 32404 32297 Face 62408 32264 32370 32263 Face 62409 32515 32514 32403 Face 62410 32404 32515 32403 Face 62411 32482 32599 32481 Face 62412 32513 32512 32401 Face 62413 33257 33393 33256 Face 62414 32131 32235 32130 Face 62415 16732 32319 16733 Face 62416 32512 767 32511 Face 62417 32903 28679 12199 Face 62418 33013 32903 12199 Face 62419 28679 34098 6839 Face 62420 12199 28679 6839 Face 62421 34098 33685 33559 Face 62422 6839 34098 33559 Face 62423 33685 32646 32527 Face 62424 33559 33685 32527 Face 62425 32646 32312 32901 Face 62426 32527 32646 32901 Face 62427 32312 29996 33936 Face 62428 32901 32312 33936 Face 62429 29996 34096 33972 Face 62430 33936 29996 33972 Face 62431 34096 32923 34195 Face 62432 33972 34096 34195 Face 62433 32923 17952 31885 Face 62434 34195 32923 31885 Face 62435 32773 32416 31885 Face 62436 17952 32773 31885 Face 62437 34044 33426 32416 Face 62438 32773 34044 32416 Face 62439 28004 34362 34291 Face 62440 31022 32629 21165 Face 62441 31022 21164 26790 Face 62442 4322 10430 6265 Face 62443 32844 32976 32843 Face 62444 30040 30041 30102 Face 62445 32577 32704 32576 Face 62446 33110 33109 32975 Face 62447 33526 33525 33392 Face 62448 32573 32572 32455 Face 62449 31957 32062 31956 Face 62450 33393 33526 33392 Face 62451 31850 31957 31849 Face 62452 32166 32165 32061 Face 62453 33876 34002 34001 Face 62454 31763 31762 31641 Face 62455 30602 30601 30516 Face 62456 34026 34027 34152 Face 62457 17775 17225 18432 Face 62458 31835 31942 31941 Face 62459 31834 31835 31941 Face 62460 31529 31642 31528 Face 62461 33251 33250 33115 Face 62462 33904 33903 33777 Face 62463 30609 30608 30523 Face 62464 31759 31871 31758 Face 62465 33778 33904 33777 Face 62466 32187 32291 32290 Face 62467 32238 32344 32237 Face 62468 32187 32186 32082 Face 62469 32083 32187 32082 Face 62470 31978 32083 31977 Face 62471 31318 31422 31317 Face 62472 31951 32056 32055 Face 62473 30448 30447 30380 Face 62474 32586 32585 32468 Face 62475 32978 32977 32845 Face 62476 34016 34142 34015 Face 62477 30297 30296 30231 Face 62478 32467 32584 32466 Face 62479 30232 30297 30231 Face 62480 30489 30574 30488 Face 62481 31161 31262 31160 Face 62482 30031 30030 29969 Face 62483 29970 30031 29969 Face 62484 29858 29912 29857 Face 62485 29970 29969 29911 Face 62486 29904 29962 29903 Face 62487 29912 29970 29911 Face 62488 33414 17492 33669 Face 62489 585 22467 14533 Face 62490 30358 30425 30357 Face 62491 30496 30495 30424 Face 62492 30291 30358 30290 Face 62493 30425 30496 30424 Face 62494 30225 30226 30290 Face 62495 30425 30424 30357 Face 62496 30161 30162 30225 Face 62497 30358 30357 30290 Face 62498 30099 30100 30161 Face 62499 30226 30291 30290 Face 62500 30100 30162 30161 Face 62501 30162 30226 30225 Face 62502 30038 30100 30099 Face 62503 30037 30038 30099 Face 62504 30881 30982 30880 Face 62505 30156 30220 30219 Face 62506 29870 29924 29869 Face 62507 31081 31080 30981 Face 62508 31758 31870 31757 Face 62509 29982 29981 29923 Face 62510 31637 31758 31636 Face 62511 31977 31976 31869 Face 62512 31758 31757 31636 Face 62513 31870 31869 31757 Face 62514 34011 34137 34010 Face 62515 32860 32992 32859 Face 62516 33514 33513 33380 Face 62517 31708 31707 31593 Face 62518 6772 6677 6678 Face 62519 33381 33514 33380 Face 62520 11119 32304 11059 Face 62521 30297 30364 30296 Face 62522 31763 31875 31762 Face 62523 31527 31526 31420 Face 62524 33116 33251 33115 Face 62525 33774 33900 33773 Face 62526 31092 31093 31191 Face 62527 31608 31609 31722 Face 62528 31185 31184 31085 Face 62529 31875 31874 31762 Face 62530 31639 31760 31638 Face 62531 21455 16856 16777 Face 62532 31527 31640 31526 Face 62533 11495 33682 28679 Face 62534 32903 11495 28679 Face 62535 33682 12384 34098 Face 62536 28679 33682 34098 Face 62537 12384 3306 33685 Face 62538 34098 12384 33685 Face 62539 3306 32524 32646 Face 62540 33685 3306 32646 Face 62541 32524 32420 32312 Face 62542 32646 32524 32312 Face 62543 32420 30316 29996 Face 62544 32312 32420 29996 Face 62545 30316 34223 34096 Face 62546 29996 30316 34096 Face 62547 34223 34126 32923 Face 62548 34096 34223 32923 Face 62549 34126 12005 17952 Face 62550 32923 34126 17952 Face 62551 33310 32773 17952 Face 62552 12005 33310 17952 Face 62553 28425 34044 32773 Face 62554 33310 28425 32773 Face 62555 21164 31022 21165 Face 62556 28425 33164 34044 Face 62557 23859 25740 23787 Face 62558 31269 31372 31268 Face 62559 30229 30294 30228 Face 62560 31930 32035 31929 Face 62561 32976 33110 32975 Face 62562 32458 32457 32345 Face 62563 32573 32700 32572 Face 62564 33245 33244 33109 Face 62565 33778 33777 33652 Face 62566 32456 32455 32343 Face 62567 33653 33652 33525 Face 62568 33653 33778 33652 Face 62569 31642 31763 31641 Face 62570 33526 33653 33525 Face 62571 33243 33379 33242 Face 62572 30981 31080 30980 Face 62573 12276 22469 12913 Face 62574 34150 34149 34023 Face 62575 27370 21162 9896 Face 62576 579 17290 17380 Face 62577 32346 32345 32239 Face 62578 32363 32362 32256 Face 62579 31483 31482 31378 Face 62580 31953 32058 31952 Face 62581 32859 32991 32858 Face 62582 30696 30697 30795 Face 62583 21248 21249 34067 Face 62584 32145 32144 32040 Face 62585 32041 32145 32040 Face 62586 2950 2951 3087 Face 62587 32249 32248 32144 Face 62588 32145 32249 32144 Face 62589 6751 6750 6656 Face 62590 32249 32355 32248 Face 62591 32355 32354 32248 Face 62592 32355 32467 32354 Face 62593 32467 32466 32354 Face 62594 32711 32710 32583 Face 62595 32584 32583 32466 Face 62596 30361 30360 30293 Face 62597 32584 32711 32583 Face 62598 31823 31822 31710 Face 62599 32185 32186 32289 Face 62600 31195 31296 31194 Face 62601 31703 31702 31588 Face 62602 17498 18826 18792 Face 62603 30873 30872 30766 Face 62604 7126 34046 33935 Face 62605 33935 34046 21632 Face 62606 32880 21730 21634 Face 62607 16844 16845 16932 Face 62608 31578 31577 31468 Face 62609 13278 12011 13861 Face 62610 7391 27362 33014 Face 62611 30505 30504 30433 Face 62612 31641 31762 31640 Face 62613 31599 31713 31598 Face 62614 30175 30239 30238 Face 62615 30289 30356 30288 Face 62616 30109 30171 30170 Face 62617 30303 30304 30370 Face 62618 33098 33233 33097 Face 62619 30698 30697 30603 Face 62620 29912 29911 29857 Face 62621 31876 31983 31875 Face 62622 30350 30349 30282 Face 62623 30031 30093 30092 Face 62624 31281 31280 31179 Face 62625 31938 32043 31937 Face 62626 30982 31081 30981 Face 62627 31180 31281 31179 Face 62628 31180 31179 31080 Face 62629 31081 31180 31080 Face 62630 31384 31383 31280 Face 62631 31281 31384 31280 Face 62632 31488 31487 31383 Face 62633 31384 31488 31383 Face 62634 31278 31277 31176 Face 62635 31597 31596 31487 Face 62636 33641 33640 33513 Face 62637 31705 31704 31590 Face 62638 30364 30363 30296 Face 62639 33514 33641 33513 Face 62640 31421 31527 31420 Face 62641 33112 33111 32977 Face 62642 31760 31759 31638 Face 62643 31640 31639 31526 Face 62644 31195 31194 31095 Face 62645 31642 31641 31528 Face 62646 32240 32346 32239 Face 62647 31843 31950 31842 Face 62648 31526 31639 31525 Face 62649 31757 31869 31756 Face 62650 21633 21728 21632 Face 62651 7126 21538 21539 Face 62652 33682 11495 20147 Face 62653 34043 18337 33164 Face 62654 32537 34064 12384 Face 62655 33682 32537 12384 Face 62656 34064 27260 3306 Face 62657 12384 34064 3306 Face 62658 27260 32528 32524 Face 62659 3306 27260 32524 Face 62660 32528 34051 32420 Face 62661 32524 32528 32420 Face 62662 34051 34045 30316 Face 62663 32420 34051 30316 Face 62664 34045 33413 34223 Face 62665 30316 34045 34223 Face 62666 33413 33281 34126 Face 62667 34223 33413 34126 Face 62668 33281 28304 12005 Face 62669 34126 33281 12005 Face 62670 24247 33310 12005 Face 62671 28304 24247 12005 Face 62672 33194 28425 33310 Face 62673 24247 33194 33310 Face 62674 34043 33164 28425 Face 62675 33194 34043 28425 Face 62676 18785 2433 32884 Face 62677 18128 19148 18337 Face 62678 32139 32138 32034 Face 62679 32877 11029 33009 Face 62680 30041 30103 30102 Face 62681 32035 32139 32034 Face 62682 33110 33245 33109 Face 62683 33126 33261 33125 Face 62684 32344 32456 32343 Face 62685 33381 33380 33244 Face 62686 34148 34147 34021 Face 62687 34022 34148 34021 Face 62688 31761 31760 31639 Face 62689 32234 32340 32233 Face 62690 31478 31587 31477 Face 62691 31480 31479 31375 Face 62692 31096 31195 31095 Face 62693 32402 32401 32295 Face 62694 30696 30695 30601 Face 62695 32192 32296 32191 Face 62696 32296 32402 32295 Face 62697 30696 30795 30794 Face 62698 30695 30696 30794 Face 62699 32143 32247 32142 Face 62700 32710 32709 32582 Face 62701 30351 30418 30350 Face 62702 30668 30767 30667 Face 62703 34271 26904 34270 Face 62704 13770 1913 13183 Face 62705 27041 29588 21647 Face 62706 26760 27041 27961 Face 62707 30904 31001 31000 Face 62708 18480 17424 17866 Face 62709 28290 27133 6590 Face 62710 13988 21465 20554 Face 62711 32992 32991 32859 Face 62712 30241 30306 30305 Face 62713 30596 30595 30510 Face 62714 34046 7126 21540 Face 62715 30294 30361 30293 Face 62716 34269 27133 34268 Face 62717 31711 31823 31710 Face 62718 33261 33260 33125 Face 62719 33094 33229 33093 Face 62720 31930 31929 31822 Face 62721 34260 34259 34136 Face 62722 31983 31982 31875 Face 62723 34046 21540 34047 Face 62724 31182 31283 31181 Face 62725 17743 18618 17039 Face 62726 17743 18143 34248 Face 62727 31416 31415 31311 Face 62728 31312 31416 31311 Face 62729 32662 11927 32880 Face 62730 20996 14729 23221 Face 62731 1573 15613 3058 Face 62732 1573 15471 15613 Face 62733 15471 1573 15470 Face 62734 33017 32910 18226 Face 62735 31076 31075 30976 Face 62736 31175 31174 31075 Face 62737 30977 30976 30875 Face 62738 30977 31076 30976 Face 62739 30876 30875 30769 Face 62740 30876 30977 30875 Face 62741 30285 30352 30284 Face 62742 30770 30876 30769 Face 62743 30219 30284 30218 Face 62744 30770 30769 30670 Face 62745 30038 30037 29976 Face 62746 29914 29913 29859 Face 62747 29977 29976 29918 Face 62748 29977 30038 29976 Face 62749 29919 29918 29864 Face 62750 29919 29977 29918 Face 62751 25853 13460 34149 Face 62752 29865 29919 29864 Face 62753 30767 30766 30667 Face 62754 31617 31731 31616 Face 62755 32139 32243 32138 Face 62756 32133 32132 32028 Face 62757 31817 31924 31816 Face 62758 32349 32348 32242 Face 62759 33892 33891 33765 Face 62760 30423 30494 30422 Face 62761 32586 32713 32585 Face 62762 33766 33892 33765 Face 62763 33396 33395 33259 Face 62764 31502 31611 31610 Face 62765 33875 33876 34001 Face 62766 33260 33396 33259 Face 62767 31319 31423 31318 Face 62768 31701 31700 31586 Face 62769 31529 31528 31422 Face 62770 31423 31529 31422 Face 62771 16850 16849 16774 Face 62772 6652 6590 6653 Face 62773 32910 34162 32537 Face 62774 18226 32910 20147 Face 62775 34162 13109 34064 Face 62776 32537 34162 34064 Face 62777 13109 32533 27260 Face 62778 34064 13109 27260 Face 62779 32533 32647 32528 Face 62780 27260 32533 32528 Face 62781 32647 33920 34051 Face 62782 32528 32647 34051 Face 62783 33920 32543 34045 Face 62784 34051 33920 34045 Face 62785 32543 11366 33413 Face 62786 34045 32543 33413 Face 62787 11366 33021 33281 Face 62788 33413 11366 33281 Face 62789 33021 26093 28304 Face 62790 33281 33021 28304 Face 62791 26093 33160 24247 Face 62792 28304 26093 24247 Face 62793 18766 33194 24247 Face 62794 33160 18766 24247 Face 62795 8001 34043 33194 Face 62796 18766 8001 33194 Face 62797 18337 18484 18225 Face 62798 31017 31113 31016 Face 62799 16923 18717 19117 Face 62800 34582 34572 34653 Face 62801 32243 32242 32138 Face 62802 33375 33508 33374 Face 62803 31637 31636 31523 Face 62804 31524 31637 31523 Face 62805 33245 33381 33244 Face 62806 30442 30441 30374 Face 62807 33770 33896 33769 Face 62808 34022 34021 33895 Face 62809 31929 31928 31821 Face 62810 34256 34255 34132 Face 62811 29978 29977 29919 Face 62812 32143 32142 32038 Face 62813 34068 21157 34069 Face 62814 31945 32050 31944 Face 62815 31399 31398 31295 Face 62816 2887 15112 5775 Face 62817 30780 30779 30680 Face 62818 30621 30620 30533 Face 62819 12748 26073 34254 Face 62820 30350 30417 30349 Face 62821 30534 30621 30533 Face 62822 34007 34133 34006 Face 62823 32710 32843 32709 Face 62824 34271 34270 34147 Face 62825 31822 31929 31821 Face 62826 20707 27041 21647 Face 62827 27016 26904 11382 Face 62828 29859 29913 29858 Face 62829 31083 31082 30983 Face 62830 7236 7237 7344 Face 62831 21251 21343 21250 Face 62832 21250 34196 21251 Face 62833 34068 34196 21250 Face 62834 28558 34742 6397 Face 62835 21541 32662 34047 Face 62836 31711 31710 31596 Face 62837 31488 31597 31487 Face 62838 31823 31930 31822 Face 62839 31597 31711 31596 Face 62840 29968 30029 29967 Face 62841 32035 32034 31929 Face 62842 31295 31294 31193 Face 62843 31375 31374 31271 Face 62844 33503 33502 33369 Face 62845 31386 31385 31282 Face 62846 30421 30420 30353 Face 62847 30354 30421 30353 Face 62848 10311 18847 18143 Face 62849 34669 34373 34423 Face 62850 34717 8774 34523 Face 62851 17232 34037 5123 Face 62852 6508 3072 15001 Face 62853 6411 6508 15001 Face 62854 16835 32924 33146 Face 62855 11927 16835 33146 Face 62856 18826 18825 18792 Face 62857 32924 32201 33146 Face 62858 31618 31617 31508 Face 62859 19035 18430 17142 Face 62860 32086 32190 32085 Face 62861 31016 31015 30918 Face 62862 30919 31016 30918 Face 62863 31112 31111 31015 Face 62864 31016 31112 31015 Face 62865 30449 30520 30448 Face 62866 30671 30770 30670 Face 62867 32190 32189 32085 Face 62868 32572 32699 32571 Face 62869 30492 30577 30491 Face 62870 30670 30669 30575 Face 62871 32832 32964 32831 Face 62872 33369 33368 33232 Face 62873 32963 32962 32830 Face 62874 30036 30035 29974 Face 62875 29975 30036 29974 Face 62876 27960 18787 13478 Face 62877 12657 27960 13478 Face 62878 32025 32129 32024 Face 62879 33759 33885 33758 Face 62880 32243 32349 32242 Face 62881 31924 32029 31923 Face 62882 30579 30578 30493 Face 62883 32461 32460 32348 Face 62884 34018 34017 33891 Face 62885 33372 33505 33371 Face 62886 31501 31502 31610 Face 62887 33892 34018 33891 Face 62888 33253 33252 33117 Face 62889 32083 32082 31977 Face 62890 33649 33774 33648 Face 62891 32162 32161 32057 Face 62892 33556 18430 17866 Face 62893 30963 31062 30962 Face 62894 16748 16747 34099 Face 62895 7114 7007 646 Face 62896 33017 32896 34162 Face 62897 32910 33017 34162 Face 62898 32896 33159 13109 Face 62899 34162 32896 13109 Face 62900 33159 32618 32533 Face 62901 13109 33159 32533 Face 62902 32618 32907 32647 Face 62903 32533 32618 32647 Face 62904 26417 33920 32647 Face 62905 32907 26417 32647 Face 62906 32640 32543 33920 Face 62907 26417 32640 33920 Face 62908 32640 32097 11366 Face 62909 32543 32640 11366 Face 62910 32097 25983 33021 Face 62911 11366 32097 33021 Face 62912 25983 11701 26093 Face 62913 33021 25983 26093 Face 62914 11701 32101 33160 Face 62915 26093 11701 33160 Face 62916 33681 18766 33160 Face 62917 32101 33681 33160 Face 62918 31221 8001 18766 Face 62919 33681 31221 18766 Face 62920 33308 16186 10988 Face 62921 31221 16720 8001 Face 62922 33665 6774 6678 Face 62923 15087 1456 18428 Face 62924 33239 33375 33238 Face 62925 33508 33507 33374 Face 62926 33657 33782 33656 Face 62927 33530 33657 33529 Face 62928 32371 32483 32370 Face 62929 32265 32371 32264 Face 62930 33645 33770 33644 Face 62931 33896 34022 33895 Face 62932 34131 34254 34253 Face 62933 30157 30221 30220 Face 62934 30581 30580 30495 Face 62935 30675 30674 30580 Face 62936 30715 30714 30620 Face 62937 30621 30715 30620 Face 62938 30814 30813 30714 Face 62939 30715 30814 30714 Face 62940 30912 30911 30813 Face 62941 30814 30912 30813 Face 62942 32037 32036 31931 Face 62943 32245 32244 32140 Face 62944 29875 29929 29874 Face 62945 30417 30488 30416 Face 62946 34148 34271 34147 Face 62947 30033 30032 29971 Face 62948 32093 7240 7239 Face 62949 26904 27016 34270 Face 62950 6750 6749 6656 Face 62951 21068 34070 21157 Face 62952 32483 32600 32482 Face 62953 29971 29970 29912 Face 62954 30340 30339 30272 Face 62955 21252 21251 34196 Face 62956 30657 30756 30656 Face 62957 34068 34069 34196 Face 62958 17842 18634 18226 Face 62959 16740 33333 16682 Face 62960 30243 30308 30242 Face 62961 32695 32694 32567 Face 62962 32475 32474 32362 Face 62963 34009 34008 33882 Face 62964 21355 21449 21448 Face 62965 32265 32264 32160 Face 62966 31075 31074 30975 Face 62967 30697 30696 30602 Face 62968 32242 32241 32137 Face 62969 30987 30986 30885 Face 62970 30096 30158 30157 Face 62971 30095 30096 30157 Face 62972 30667 30666 30572 Face 62973 32580 32579 32462 Face 62974 24638 5373 11494 Face 62975 34038 34164 21448 Face 62976 34164 34161 16835 Face 62977 34068 21156 21157 Face 62978 34161 32406 32924 Face 62979 16835 34161 32924 Face 62980 11298 33308 32768 Face 62981 17937 17232 17537 Face 62982 31704 31816 31703 Face 62983 17424 11232 17866 Face 62984 31816 31815 31703 Face 62985 31923 31922 31815 Face 62986 31704 31703 31589 Face 62987 31590 31704 31589 Face 62988 31590 31589 31480 Face 62989 31481 31590 31480 Face 62990 33512 33639 33511 Face 62991 32698 32697 32570 Face 62992 30671 30670 30576 Face 62993 33890 33889 33763 Face 62994 30421 30492 30420 Face 62995 30577 30671 30576 Face 62996 30492 30491 30420 Face 62997 30577 30576 30491 Face 62998 30034 30096 30095 Face 62999 30033 30034 30095 Face 63000 29973 29972 29914 Face 63001 29915 29973 29914 Face 63002 32049 32153 32048 Face 63003 29861 29915 29860 Face 63004 30574 30668 30573 Face 63005 33099 33098 32964 Face 63006 32349 32461 32348 Face 63007 32237 32236 32132 Face 63008 33372 33371 33235 Face 63009 32578 32577 32460 Face 63010 34144 34143 34017 Face 63011 29992 30053 29991 Face 63012 30314 30313 30248 Face 63013 34018 34144 34017 Face 63014 31978 31977 31870 Face 63015 31528 31527 31421 Face 63016 30862 30963 30861 Face 63017 31871 31978 31870 Face 63018 32774 33017 33556 Face 63019 16720 18036 18128 Face 63020 32774 33150 32896 Face 63021 33017 32774 32896 Face 63022 33150 33158 33159 Face 63023 32896 33150 33159 Face 63024 33158 32505 32618 Face 63025 33159 33158 32618 Face 63026 32505 33041 32907 Face 63027 32618 32505 32907 Face 63028 32204 26417 32907 Face 63029 33041 32204 32907 Face 63030 33680 32640 26417 Face 63031 32204 33680 26417 Face 63032 32098 32097 32640 Face 63033 33680 32098 32640 Face 63034 33667 25983 32097 Face 63035 32098 33667 32097 Face 63036 13093 11701 25983 Face 63037 33667 13093 25983 Face 63038 13093 32906 32101 Face 63039 11701 13093 32101 Face 63040 32906 32639 33681 Face 63041 32101 32906 33681 Face 63042 32639 1090 31221 Face 63043 33681 32639 31221 Face 63044 1090 16869 16720 Face 63045 31221 1090 16720 Face 63046 19040 19148 18128 Face 63047 6754 6753 6659 Face 63048 18128 18036 19040 Face 63049 21068 34071 34070 Face 63050 31524 31523 31417 Face 63051 31418 31524 31417 Face 63052 30678 30677 30583 Face 63053 30428 30499 30427 Face 63054 33896 33895 33769 Face 63055 30308 30307 30242 Face 63056 31706 31818 31705 Face 63057 33770 33769 33644 Face 63058 20707 21647 21455 Face 63059 34005 34131 34004 Face 63060 31009 31008 30911 Face 63061 31976 31975 31868 Face 63062 30912 31009 30911 Face 63063 31105 31104 31008 Face 63064 30155 30219 30218 Face 63065 31009 31105 31008 Face 63066 31204 31203 31104 Face 63067 31105 31204 31104 Face 63068 31080 31079 30980 Face 63069 30777 30883 30776 Face 63070 33114 33249 33113 Face 63071 30419 30418 30351 Face 63072 33385 33384 33248 Face 63073 33249 33385 33248 Face 63074 30690 30689 30595 Face 63075 31952 32057 31951 Face 63076 10451 8548 170 Face 63077 11531 10988 16032 Face 63078 33508 33635 33507 Face 63079 33635 33634 33507 Face 63080 32394 7007 32393 Face 63081 9789 1114 24263 Face 63082 31650 9789 24263 Face 63083 34070 21160 34069 Face 63084 34685 34599 34406 Face 63085 3079 3080 3214 Face 63086 31918 31917 31810 Face 63087 30563 30562 30477 Face 63088 34645 34741 34475 Face 63089 30478 30563 30477 Face 63090 30657 30656 30562 Face 63091 16848 26011 18787 Face 63092 30354 30353 30286 Face 63093 30287 30354 30286 Face 63094 30158 30222 30221 Face 63095 30157 30158 30221 Face 63096 30287 30286 30221 Face 63097 30222 30287 30221 Face 63098 32774 17866 11232 Face 63099 32155 32154 32050 Face 63100 2887 5775 65 Face 63101 20977 34200 34199 Face 63102 34038 33929 34161 Face 63103 34164 34038 34161 Face 63104 33929 33544 32406 Face 63105 34161 33929 32406 Face 63106 17430 17341 17342 Face 63107 21255 21163 21256 Face 63108 31074 31073 30974 Face 63109 29203 33568 33018 Face 63110 30768 30874 30767 Face 63111 30975 30974 30873 Face 63112 30975 31074 30974 Face 63113 30874 30975 30873 Face 63114 31173 31172 31073 Face 63115 31074 31173 31073 Face 63116 32571 32698 32570 Face 63117 31274 31273 31172 Face 63118 30047 30046 29985 Face 63119 32571 32570 32453 Face 63120 31315 31314 31212 Face 63121 32580 32707 32579 Face 63122 31095 31094 30995 Face 63123 29928 29986 29927 Face 63124 30034 30033 29972 Face 63125 29973 30034 29972 Face 63126 32081 32185 32080 Face 63127 32185 32289 32288 Face 63128 30035 30034 29973 Face 63129 29916 29915 29861 Face 63130 32081 32080 31975 Face 63131 29974 30035 29973 Face 63132 32029 32028 31923 Face 63133 31976 32081 31975 Face 63134 32461 32578 32460 Face 63135 32029 32133 32028 Face 63136 30115 30177 30114 Face 63137 32705 32704 32577 Face 63138 34267 26760 34266 Face 63139 30164 30165 30228 Face 63140 34267 34266 34143 Face 63141 27041 20707 27961 Face 63142 34144 34267 34143 Face 63143 26760 27961 34266 Face 63144 20885 20886 20975 Face 63145 12011 17496 13861 Face 63146 30823 33150 32774 Face 63147 11232 30823 32774 Face 63148 30823 28090 33158 Face 63149 33150 30823 33158 Face 63150 28090 31021 32505 Face 63151 33158 28090 32505 Face 63152 31021 32642 33041 Face 63153 32505 31021 33041 Face 63154 32642 32313 32204 Face 63155 33041 32642 32204 Face 63156 33043 33680 32204 Face 63157 32313 33043 32204 Face 63158 12835 32098 33680 Face 63159 33043 12835 33680 Face 63160 12835 31120 33667 Face 63161 32098 12835 33667 Face 63162 32522 13093 33667 Face 63163 31120 32522 33667 Face 63164 11458 32906 13093 Face 63165 32522 11458 13093 Face 63166 11458 33668 32639 Face 63167 32906 11458 32639 Face 63168 33668 31771 1090 Face 63169 32639 33668 1090 Face 63170 31771 11294 16869 Face 63171 1090 31771 16869 Face 63172 11294 34034 28409 Face 63173 16869 11294 28409 Face 63174 31472 31581 31471 Face 63175 33924 12531 32904 Face 63176 30177 30241 30240 Face 63177 30176 30177 30240 Face 63178 11033 11088 11032 Face 63179 33261 33397 33260 Face 63180 31952 31951 31844 Face 63181 32830 32962 32829 Face 63182 33518 33517 33384 Face 63183 33385 33518 33384 Face 63184 14532 5128 3589 Face 63185 31925 31924 31817 Face 63186 30090 30091 30152 Face 63187 30300 30367 30299 Face 63188 31306 31305 31203 Face 63189 31204 31306 31203 Face 63190 31410 31409 31305 Face 63191 30028 30029 30090 Face 63192 31306 31410 31305 Face 63193 30572 30571 30486 Face 63194 30496 30581 30495 Face 63195 31516 31515 31409 Face 63196 31410 31516 31409 Face 63197 32129 32233 32128 Face 63198 33754 33880 33753 Face 63199 32339 32451 32338 Face 63200 31280 31279 31178 Face 63201 30030 30029 29968 Face 63202 32980 33114 32979 Face 63203 33249 33248 33113 Face 63204 33693 21064 20971 Face 63205 30596 30690 30595 Face 63206 11141 15043 33675 Face 63207 17283 33024 32747 Face 63208 32133 32237 32132 Face 63209 33886 33885 33759 Face 63210 32764 21572 34175 Face 63211 34178 20795 28275 Face 63212 34071 34198 34197 Face 63213 34070 34071 34197 Face 63214 34198 12370 9896 Face 63215 34197 34198 9896 Face 63216 12370 25746 27370 Face 63217 9896 12370 27370 Face 63218 25746 28411 3076 Face 63219 27370 25746 3076 Face 63220 20795 34178 21356 Face 63221 16817 16747 16748 Face 63222 32774 33556 17866 Face 63223 21164 21259 21258 Face 63224 34038 21449 21450 Face 63225 31650 7712 9789 Face 63226 32051 32155 32050 Face 63227 34038 21450 33929 Face 63228 34135 34258 34134 Face 63229 31378 31482 31377 Face 63230 29581 24752 27099 Face 63231 17483 13861 17496 Face 63232 31168 31167 31068 Face 63233 21639 21735 21638 Face 63234 20796 33819 33544 Face 63235 33929 20796 33544 Face 63236 34801 34440 34581 Face 63237 23845 23866 25003 Face 63238 3087 2951 3088 Face 63239 33038 21641 32882 Face 63240 3076 21163 27370 Face 63241 21737 9288 21738 Face 63242 30082 30144 30143 Face 63243 32303 12290 21357 Face 63244 33675 14533 32535 Face 63245 31397 31501 31500 Face 63246 31173 31274 31172 Face 63247 34572 34274 34653 Face 63248 32454 32571 32453 Face 63249 31377 31376 31273 Face 63250 32342 32341 32235 Face 63251 32236 32342 32235 Face 63252 30035 30036 30097 Face 63253 3076 28411 21164 Face 63254 31636 31757 31635 Face 63255 29915 29914 29860 Face 63256 29862 29916 29861 Face 63257 29974 29973 29915 Face 63258 32237 32343 32236 Face 63259 30160 30224 30223 Face 63260 34135 34134 34008 Face 63261 34011 34010 33884 Face 63262 31386 31490 31385 Face 63263 30494 30579 30493 Face 63264 31846 31953 31845 Face 63265 31019 31115 31018 Face 63266 32578 32705 32577 Face 63267 31175 31276 31174 Face 63268 30883 30882 30776 Face 63269 32838 32837 32704 Face 63270 33787 3933 4189 Face 63271 30584 30678 30583 Face 63272 31733 31845 31732 Face 63273 30103 30165 30164 Face 63274 6006 20302 21955 Face 63275 20471 32764 20386 Face 63276 32892 30823 11232 Face 63277 7350 7241 31989 Face 63278 32892 7579 28090 Face 63279 30823 32892 28090 Face 63280 7579 33167 31021 Face 63281 28090 7579 31021 Face 63282 33167 32529 32642 Face 63283 31021 33167 32642 Face 63284 32529 34191 32313 Face 63285 32642 32529 32313 Face 63286 34191 31772 33043 Face 63287 32313 34191 33043 Face 63288 33547 12835 33043 Face 63289 31772 33547 33043 Face 63290 34246 31120 12835 Face 63291 33547 34246 12835 Face 63292 1784 32522 31120 Face 63293 34246 1784 31120 Face 63294 30058 11458 32522 Face 63295 1784 30058 32522 Face 63296 30058 32411 33668 Face 63297 11458 30058 33668 Face 63298 32411 33785 31771 Face 63299 33668 32411 31771 Face 63300 33785 31325 11294 Face 63301 31771 33785 11294 Face 63302 31325 34160 34034 Face 63303 11294 31325 34034 Face 63304 693 579 17380 Face 63305 16793 16727 16728 Face 63306 33104 33239 33103 Face 63307 33239 33238 33103 Face 63308 30605 30604 30519 Face 63309 33375 33374 33238 Face 63310 34130 34253 34129 Face 63311 585 4754 32311 Face 63312 33114 33113 32979 Face 63313 30093 30094 30155 Face 63314 31080 31179 31079 Face 63315 31981 32086 31980 Face 63316 32452 32569 32451 Face 63317 30666 30665 30571 Face 63318 31629 31628 31515 Face 63319 31516 31629 31515 Face 63320 31750 31749 31628 Face 63321 31629 31750 31628 Face 63322 32961 32960 32828 Face 63323 32569 32568 32451 Face 63324 32568 32695 32567 Face 63325 32828 32827 32694 Face 63326 31862 31861 31749 Face 63327 31750 31862 31749 Face 63328 30921 31018 30920 Face 63329 30153 30154 30217 Face 63330 30997 31096 30996 Face 63331 31381 31380 31277 Face 63332 32842 32974 32841 Face 63333 30029 30091 30090 Face 63334 20880 33443 33442 Face 63335 3589 14533 14532 Face 63336 33569 33694 33693 Face 63337 34239 34115 6642 Face 63338 6727 6825 6726 Face 63339 20886 20887 33949 Face 63340 32185 32184 32080 Face 63341 32343 32342 32236 Face 63342 33277 6688 6687 Face 63343 16689 12747 16751 Face 63344 30624 11058 30719 Face 63345 32632 33908 21261 Face 63346 34199 1566 12370 Face 63347 34198 34199 12370 Face 63348 1566 25629 25746 Face 63349 12370 1566 25746 Face 63350 25629 26790 28411 Face 63351 25746 25629 28411 Face 63352 28363 27901 28499 Face 63353 16404 2925 16534 Face 63354 31022 32632 32629 Face 63355 16404 16534 14680 Face 63356 32629 32632 21261 Face 63357 33908 20795 21261 Face 63358 6411 15001 894 Face 63359 3680 4061 4189 Face 63360 32454 32453 32341 Face 63361 170 7822 10451 Face 63362 21450 12290 20796 Face 63363 32342 32454 32341 Face 63364 12290 12841 20796 Face 63365 12833 18829 10008 Face 63366 12841 32317 33819 Face 63367 20796 12841 33819 Face 63368 13186 32882 33819 Face 63369 32317 13186 33819 Face 63370 21641 33038 9288 Face 63371 13186 33038 32882 Face 63372 33038 33813 9288 Face 63373 16916 17226 8369 Face 63374 9387 7071 15383 Face 63375 15383 15821 9387 Face 63376 33542 33171 32754 Face 63377 9387 15821 9532 Face 63378 14533 22467 32419 Face 63379 32121 32225 32224 Face 63380 31274 31377 31273 Face 63381 31481 31480 31376 Face 63382 32236 32235 32131 Face 63383 32132 32236 32131 Face 63384 34132 34255 34254 Face 63385 30434 30433 30366 Face 63386 31523 31636 31522 Face 63387 31757 31756 31635 Face 63388 29916 29974 29915 Face 63389 30035 30097 30096 Face 63390 29917 29975 29916 Face 63391 34009 34135 34008 Face 63392 34261 34260 34137 Face 63393 34138 34261 34137 Face 63394 34303 34719 34631 Face 63395 12109 12023 34260 Face 63396 31943 31944 32048 Face 63397 12207 18823 13086 Face 63398 33640 33639 33512 Face 63399 34151 34152 11285 Face 63400 33104 33103 32969 Face 63401 31920 32025 31919 Face 63402 32705 32838 32704 Face 63403 32970 33104 32969 Face 63404 32970 32969 32837 Face 63405 32838 32970 32837 Face 63406 17743 18035 18143 Face 63407 18825 34160 16760 Face 63408 16702 32892 33430 Face 63409 25457 25421 25422 Face 63410 16702 32890 7579 Face 63411 32892 16702 7579 Face 63412 32890 33300 33167 Face 63413 7579 32890 33167 Face 63414 33300 32908 32529 Face 63415 33167 33300 32529 Face 63416 32908 33557 34191 Face 63417 32529 32908 34191 Face 63418 31994 31772 34191 Face 63419 33557 31994 34191 Face 63420 34244 33547 31772 Face 63421 31994 34244 31772 Face 63422 34155 34246 33547 Face 63423 34244 34155 33547 Face 63424 28010 1784 34246 Face 63425 34155 28010 34246 Face 63426 28010 33298 30058 Face 63427 1784 28010 30058 Face 63428 33298 34124 32411 Face 63429 30058 33298 32411 Face 63430 34124 33303 33785 Face 63431 32411 34124 33785 Face 63432 33303 33465 31325 Face 63433 33785 33303 31325 Face 63434 33465 16760 34160 Face 63435 31325 33465 34160 Face 63436 34411 34809 34585 Face 63437 6709 110 109 Face 63438 32698 32831 32697 Face 63439 32455 32454 32342 Face 63440 32235 32234 32130 Face 63441 32697 32830 32696 Face 63442 30036 30098 30097 Face 63443 31420 31419 31315 Face 63444 32848 32980 32847 Face 63445 30032 30094 30093 Face 63446 31272 31271 31170 Face 63447 31493 31492 31388 Face 63448 32962 33096 32961 Face 63449 30170 30171 30234 Face 63450 31969 31968 31861 Face 63451 31862 31969 31861 Face 63452 32074 32073 31968 Face 63453 31969 32074 31968 Face 63454 32178 32177 32073 Face 63455 32074 32178 32073 Face 63456 33498 33625 33497 Face 63457 30576 30670 30575 Face 63458 32282 32281 32177 Face 63459 33096 33095 32961 Face 63460 32178 32282 32177 Face 63461 32452 32451 32339 Face 63462 16190 19296 12119 Face 63463 32120 32121 32224 Face 63464 31089 31188 31187 Face 63465 30878 30979 30877 Face 63466 33443 33570 33569 Face 63467 33442 33443 33569 Face 63468 33570 33695 33694 Face 63469 33569 33570 33694 Face 63470 6688 33277 6623 Face 63471 31321 11168 31425 Face 63472 21631 21538 7126 Face 63473 8375 8476 1976 Face 63474 16841 34127 34128 Face 63475 30418 30489 30417 Face 63476 20977 34074 34200 Face 63477 21163 3076 21256 Face 63478 34200 13583 1566 Face 63479 34199 34200 1566 Face 63480 13583 20082 25629 Face 63481 1566 13583 25629 Face 63482 20082 28157 26790 Face 63483 25629 20082 26790 Face 63484 28157 31023 31022 Face 63485 26790 28157 31022 Face 63486 31023 32633 32632 Face 63487 31022 31023 32632 Face 63488 32633 33909 33908 Face 63489 32632 32633 33908 Face 63490 33909 28275 20795 Face 63491 33908 33909 20795 Face 63492 33544 21639 32406 Face 63493 18931 28409 18826 Face 63494 34438 24240 24115 Face 63495 27895 27383 28141 Face 63496 32303 33157 12841 Face 63497 12290 32303 12841 Face 63498 33157 33807 32317 Face 63499 12841 33157 32317 Face 63500 34169 13186 32317 Face 63501 33807 34169 32317 Face 63502 19295 33038 13186 Face 63503 34169 19295 13186 Face 63504 19295 31991 33813 Face 63505 33038 19295 33813 Face 63506 31991 33543 33542 Face 63507 33813 31991 33542 Face 63508 29472 12229 20881 Face 63509 33542 33543 33171 Face 63510 17773 3190 21671 Face 63511 882 765 766 Face 63512 31377 31481 31376 Face 63513 30284 30283 30218 Face 63514 32132 32131 32027 Face 63515 32028 32132 32027 Face 63516 31922 32027 31921 Face 63517 33629 33754 33628 Face 63518 31526 31525 31419 Face 63519 31636 31635 31522 Face 63520 30034 30035 30096 Face 63521 30097 30159 30158 Face 63522 31820 31819 31707 Face 63523 31083 31182 31082 Face 63524 34261 12109 34260 Face 63525 12207 13086 12023 Face 63526 34141 34264 34140 Face 63527 18874 33438 34263 Face 63528 33889 34015 33888 Face 63529 34141 34140 34014 Face 63530 33511 33638 33510 Face 63531 33889 33888 33762 Face 63532 33378 33511 33377 Face 63533 33638 33637 33510 Face 63534 33242 33378 33241 Face 63535 33511 33510 33377 Face 63536 33107 33242 33106 Face 63537 33378 33377 33241 Face 63538 21357 34178 32303 Face 63539 6678 33664 33665 Face 63540 34248 28229 18618 Face 63541 18618 16702 33430 Face 63542 28229 33794 32890 Face 63543 16702 28229 32890 Face 63544 33433 33300 32890 Face 63545 33794 33433 32890 Face 63546 33042 32908 33300 Face 63547 33433 33042 33300 Face 63548 18999 33557 32908 Face 63549 33042 18999 32908 Face 63550 12824 31994 33557 Face 63551 18999 12824 33557 Face 63552 12824 16666 34244 Face 63553 31994 12824 34244 Face 63554 34058 34155 34244 Face 63555 16666 34058 34244 Face 63556 33417 28010 34155 Face 63557 34058 33417 34155 Face 63558 33417 30925 33298 Face 63559 28010 33417 33298 Face 63560 30925 33195 34124 Face 63561 33298 30925 34124 Face 63562 33195 10008 33303 Face 63563 34124 33195 33303 Face 63564 27143 24740 27256 Face 63565 33303 10008 33465 Face 63566 34362 34644 34465 Face 63567 6658 6659 6753 Face 63568 33886 34012 33885 Face 63569 20879 20793 33312 Face 63570 33760 33886 33759 Face 63571 34012 34011 33885 Face 63572 32962 32961 32829 Face 63573 30886 30987 30885 Face 63574 33369 33502 33368 Face 63575 30871 30972 30870 Face 63576 32980 32979 32847 Face 63577 30031 30032 30093 Face 63578 31602 31601 31492 Face 63579 34152 34151 34025 Face 63580 33661 33660 33533 Face 63581 32833 32965 32832 Face 63582 32388 32387 32281 Face 63583 32282 32388 32281 Face 63584 32500 32499 32387 Face 63585 32388 32500 32387 Face 63586 32617 32616 32499 Face 63587 32500 32617 32499 Face 63588 33401 33534 33400 Face 63589 32744 32743 32616 Face 63590 32617 32744 32616 Face 63591 32877 32876 32743 Face 63592 33265 33401 33264 Face 63593 33534 33533 33400 Face 63594 30921 11054 11114 Face 63595 9665 10081 15681 Face 63596 33444 33571 33570 Face 63597 33443 33444 33570 Face 63598 33571 33696 33695 Face 63599 33570 33571 33695 Face 63600 30081 30082 30143 Face 63601 34175 21572 28825 Face 63602 29959 29958 29900 Face 63603 20977 20976 33949 Face 63604 16792 16726 16727 Face 63605 12229 14783 2626 Face 63606 34074 34201 34200 Face 63607 20887 20977 33949 Face 63608 34201 26212 13583 Face 63609 34200 34201 13583 Face 63610 26212 29727 20082 Face 63611 13583 26212 20082 Face 63612 29727 12365 28157 Face 63613 20082 29727 28157 Face 63614 12365 31024 31023 Face 63615 28157 12365 31023 Face 63616 31024 32634 32633 Face 63617 31023 31024 32633 Face 63618 32634 33910 33909 Face 63619 32633 32634 33909 Face 63620 33910 26647 28275 Face 63621 33909 33910 28275 Face 63622 34185 34178 28275 Face 63623 26647 34185 28275 Face 63624 34185 34158 32303 Face 63625 34178 34185 32303 Face 63626 34158 33926 33157 Face 63627 32303 34158 33157 Face 63628 33926 12381 33807 Face 63629 33157 33926 33807 Face 63630 32894 34169 33807 Face 63631 12381 32894 33807 Face 63632 32760 19295 34169 Face 63633 32894 32760 34169 Face 63634 32760 34049 31991 Face 63635 19295 32760 31991 Face 63636 34049 34168 33543 Face 63637 31991 34049 33543 Face 63638 12229 2626 20881 Face 63639 34168 33422 33543 Face 63640 11025 11024 30120 Face 63641 17555 17727 18728 Face 63642 32354 32353 32247 Face 63643 32225 32331 32224 Face 63644 32028 32027 31922 Face 63645 31923 32028 31922 Face 63646 31313 31312 31210 Face 63647 26591 11828 11745 Face 63648 33099 33234 33098 Face 63649 30447 30518 30446 Face 63650 30096 30097 30158 Face 63651 30159 30223 30222 Face 63652 30777 30776 30677 Face 63653 31977 32082 31976 Face 63654 12109 12207 12023 Face 63655 30871 30870 30764 Face 63656 34015 34141 34014 Face 63657 34264 34263 34140 Face 63658 32186 32185 32081 Face 63659 31017 31016 30919 Face 63660 32032 32136 32031 Face 63661 30666 30765 30665 Face 63662 31078 31177 31077 Face 63663 30976 31075 30975 Face 63664 32575 32574 32457 Face 63665 32346 32458 32345 Face 63666 11938 12023 370 Face 63667 34137 34260 34136 Face 63668 7240 32093 7241 Face 63669 10995 34159 9439 Face 63670 33177 28229 34248 Face 63671 33193 33192 20446 Face 63672 12177 33794 28229 Face 63673 33177 12177 28229 Face 63674 12177 33561 33433 Face 63675 33794 12177 33433 Face 63676 32641 33042 33433 Face 63677 33561 32641 33433 Face 63678 32314 18999 33042 Face 63679 32641 32314 33042 Face 63680 6713 12824 18999 Face 63681 32314 6713 18999 Face 63682 32410 16666 12824 Face 63683 6713 32410 12824 Face 63684 33280 34058 16666 Face 63685 32410 33280 16666 Face 63686 5339 33417 34058 Face 63687 33280 5339 34058 Face 63688 5339 27627 30925 Face 63689 33417 5339 30925 Face 63690 27627 30315 33195 Face 63691 30925 27627 33195 Face 63692 30315 33436 10008 Face 63693 33195 30315 10008 Face 63694 17729 16760 18829 Face 63695 33436 12833 10008 Face 63696 11113 11112 31020 Face 63697 8535 636 4457 Face 63698 34138 34137 34011 Face 63699 34012 34138 34011 Face 63700 34264 18874 34263 Face 63701 27609 27884 33438 Face 63702 30382 30381 30314 Face 63703 18874 27609 33438 Face 63704 33754 33753 33628 Face 63705 7241 7350 7349 Face 63706 32848 32847 32714 Face 63707 30032 30031 29970 Face 63708 33108 33107 32973 Face 63709 30989 30990 31088 Face 63710 33130 33265 33129 Face 63711 33534 33661 33533 Face 63712 32744 32877 32743 Face 63713 33009 33008 32876 Face 63714 32877 33009 32876 Face 63715 33265 33264 33129 Face 63716 33143 33142 33008 Face 63717 33009 33143 33008 Face 63718 33313 33312 20793 Face 63719 33142 33143 33277 Face 63720 30224 30289 30288 Face 63721 34062 33155 2944 Face 63722 32996 33130 32995 Face 63723 33312 33445 33444 Face 63724 2301 6622 2300 Face 63725 33445 33572 33571 Face 63726 33444 33445 33571 Face 63727 33572 33697 33696 Face 63728 33571 33572 33696 Face 63729 1799 9665 9550 Face 63730 9550 9665 15681 Face 63731 6773 6772 6678 Face 63732 33823 33951 20887 Face 63733 33951 34075 34074 Face 63734 12502 33288 3762 Face 63735 34075 34202 34201 Face 63736 34074 34075 34201 Face 63737 34202 11594 26212 Face 63738 34201 34202 26212 Face 63739 11594 27870 29727 Face 63740 26212 11594 29727 Face 63741 27870 12567 12365 Face 63742 29727 27870 12365 Face 63743 12567 31219 31024 Face 63744 12365 12567 31024 Face 63745 31219 32637 32634 Face 63746 31024 31219 32634 Face 63747 32637 33919 33910 Face 63748 32634 32637 33910 Face 63749 33919 33161 26647 Face 63750 33910 33919 26647 Face 63751 33161 34224 34185 Face 63752 26647 33161 34185 Face 63753 34224 26188 34158 Face 63754 34185 34224 34158 Face 63755 26188 27103 33926 Face 63756 34158 26188 33926 Face 63757 27103 12907 12381 Face 63758 33926 27103 12381 Face 63759 33174 32894 12381 Face 63760 12907 33174 12381 Face 63761 33439 32760 32894 Face 63762 33174 33439 32894 Face 63763 33439 23862 34049 Face 63764 32760 33439 34049 Face 63765 23862 33039 34168 Face 63766 34049 23862 34168 Face 63767 33684 33422 34168 Face 63768 33039 33684 34168 Face 63769 17555 17317 17727 Face 63770 33684 33284 33422 Face 63771 21829 21731 21732 Face 63772 16680 32928 32929 Face 63773 31816 31923 31815 Face 63774 27599 27600 27727 Face 63775 32572 32571 32454 Face 63776 31376 31480 31375 Face 63777 32032 32031 31926 Face 63778 30769 30768 30669 Face 63779 30158 30159 30222 Face 63780 30288 30287 30222 Face 63781 30308 30375 30307 Face 63782 31938 31937 31830 Face 63783 16847 26011 16848 Face 63784 31184 31285 31183 Face 63785 33763 33889 33762 Face 63786 34015 34014 33888 Face 63787 32835 32967 32834 Face 63788 33101 33100 32966 Face 63789 32471 32470 32358 Face 63790 32359 32471 32358 Face 63791 32253 32252 32148 Face 63792 32149 32253 32148 Face 63793 32149 32148 32044 Face 63794 32045 32149 32044 Face 63795 31833 31940 31832 Face 63796 32045 32044 31939 Face 63797 34146 34269 34145 Face 63798 31940 32045 31939 Face 63799 17081 33177 34248 Face 63800 32395 32506 647 Face 63801 34060 12177 33177 Face 63802 32425 34060 33177 Face 63803 34060 18350 33561 Face 63804 12177 34060 33561 Face 63805 32530 32641 33561 Face 63806 18350 32530 33561 Face 63807 32422 32314 32641 Face 63808 32530 32422 32641 Face 63809 32544 6713 32314 Face 63810 32422 32544 32314 Face 63811 11517 32410 6713 Face 63812 32544 11517 6713 Face 63813 26304 33280 32410 Face 63814 11517 26304 32410 Face 63815 11535 5339 33280 Face 63816 26304 11535 33280 Face 63817 11535 33061 27627 Face 63818 5339 11535 27627 Face 63819 33567 30315 27627 Face 63820 33061 33567 27627 Face 63821 10202 33436 30315 Face 63822 33567 10202 30315 Face 63823 32761 12833 33436 Face 63824 10202 32761 33436 Face 63825 34153 34154 6662 Face 63826 3570 256 3697 Face 63827 32708 32841 32707 Face 63828 32973 32972 32840 Face 63829 33107 33106 32972 Face 63830 32841 32973 32840 Face 63831 33515 33516 33642 Face 63832 30511 30596 30510 Face 63833 32351 32350 32244 Face 63834 34269 34268 34145 Face 63835 32588 32715 32587 Face 63836 32715 32848 32714 Face 63837 32599 32726 32598 Face 63838 33774 33773 33648 Face 63839 33130 33129 32995 Face 63840 33401 33400 33264 Face 63841 28280 29735 16697 Face 63842 33406 33407 33539 Face 63843 6676 6771 197 Face 63844 31613 31727 31726 Face 63845 31612 31613 31726 Face 63846 32864 32996 32863 Face 63847 31726 31727 31838 Face 63848 31727 31839 31838 Face 63849 11031 11032 11087 Face 63850 34484 34472 28825 Face 63851 11034 11089 11033 Face 63852 34796 34493 34329 Face 63853 33313 33446 33445 Face 63854 33312 33313 33445 Face 63855 33446 33573 33572 Face 63856 33445 33446 33572 Face 63857 33573 33698 33697 Face 63858 33572 33573 33697 Face 63859 33698 33824 33823 Face 63860 33697 33698 33823 Face 63861 33824 33952 33951 Face 63862 33823 33824 33951 Face 63863 33952 34076 34075 Face 63864 33951 33952 34075 Face 63865 34076 34203 34202 Face 63866 34075 34076 34202 Face 63867 34203 7921 11594 Face 63868 34202 34203 11594 Face 63869 7921 27755 27870 Face 63870 11594 7921 27870 Face 63871 27755 32203 12567 Face 63872 27870 27755 12567 Face 63873 32203 31323 31219 Face 63874 12567 32203 31219 Face 63875 31323 32643 32637 Face 63876 31219 31323 32637 Face 63877 32643 33922 33919 Face 63878 32637 32643 33919 Face 63879 33922 30923 33161 Face 63880 33919 33922 33161 Face 63881 30923 33012 34224 Face 63882 33161 30923 34224 Face 63883 33012 23364 26188 Face 63884 34224 33012 26188 Face 63885 23364 33421 27103 Face 63886 26188 23364 27103 Face 63887 33421 29211 12907 Face 63888 27103 33421 12907 Face 63889 33441 33174 12907 Face 63890 29211 33441 12907 Face 63891 33790 33439 33174 Face 63892 33441 33790 33174 Face 63893 13102 23862 33439 Face 63894 33790 13102 33439 Face 63895 11772 33039 23862 Face 63896 13102 11772 23862 Face 63897 11926 33684 33039 Face 63898 11772 11926 33039 Face 63899 33036 33284 33684 Face 63900 11926 33036 33684 Face 63901 34700 34602 34560 Face 63902 33036 31536 33284 Face 63903 21733 33146 32201 Face 63904 24922 24923 25060 Face 63905 30305 30306 30372 Face 63906 31211 31210 31111 Face 63907 30499 30584 30498 Face 63908 32348 32347 32241 Face 63909 30223 30288 30222 Face 63910 30355 30354 30287 Face 63911 31296 31399 31295 Face 63912 30419 30490 30418 Face 63913 30670 30769 30669 Face 63914 32160 32159 32055 Face 63915 32973 33107 32972 Face 63916 33242 33241 33106 Face 63917 30673 30772 30672 Face 63918 30769 30875 30768 Face 63919 32359 32358 32252 Face 63920 32253 32359 32252 Face 63921 31873 31980 31872 Face 63922 32085 32084 31979 Face 63923 30120 30182 30119 Face 63924 31980 32085 31979 Face 63925 30182 30246 30181 Face 63926 30246 30245 30181 Face 63927 31940 31939 31832 Face 63928 30311 30310 30245 Face 63929 18369 18370 2042 Face 63930 22434 27274 26680 Face 63931 33912 34060 32425 Face 63932 33287 33912 32425 Face 63933 33912 12914 18350 Face 63934 34060 33912 18350 Face 63935 32776 32530 18350 Face 63936 12914 32776 18350 Face 63937 32521 32422 32530 Face 63938 32776 32521 32530 Face 63939 32664 32544 32422 Face 63940 32521 32664 32422 Face 63941 33565 11517 32544 Face 63942 32664 33565 32544 Face 63943 33923 26304 11517 Face 63944 33565 33923 11517 Face 63945 12812 11535 26304 Face 63946 33923 12812 26304 Face 63947 12812 18656 33061 Face 63948 11535 12812 33061 Face 63949 33666 33567 33061 Face 63950 18656 33666 33061 Face 63951 33163 10202 33567 Face 63952 33666 33163 33567 Face 63953 33558 32761 10202 Face 63954 33163 33558 10202 Face 63955 16725 16726 16791 Face 63956 12836 12918 34345 Face 63957 32841 32840 32707 Face 63958 21165 21259 21164 Face 63959 34020 34019 33893 Face 63960 34146 34145 34019 Face 63961 32600 32599 32482 Face 63962 30584 30583 30498 Face 63963 32588 32587 32470 Face 63964 32471 32588 32470 Face 63965 31761 31873 31760 Face 63966 32715 32714 32587 Face 63967 32604 32731 32730 Face 63968 31640 31761 31639 Face 63969 33407 33406 33270 Face 63970 32603 32604 32730 Face 63971 32476 32475 32363 Face 63972 31963 32068 31962 Face 63973 32235 32341 32234 Face 63974 32719 32852 32718 Face 63975 31942 32047 32046 Face 63976 31722 31723 31834 Face 63977 6676 33662 33663 Face 63978 30994 31093 31092 Face 63979 19712 19711 22986 Face 63980 16848 18787 16849 Face 63981 33178 33314 33313 Face 63982 22986 19627 19712 Face 63983 33314 33447 33446 Face 63984 33313 33314 33446 Face 63985 33447 33574 33573 Face 63986 33446 33447 33573 Face 63987 33574 33699 33698 Face 63988 33573 33574 33698 Face 63989 33699 33825 33824 Face 63990 33698 33699 33824 Face 63991 33825 33953 33952 Face 63992 33824 33825 33952 Face 63993 33953 34077 34076 Face 63994 33952 33953 34076 Face 63995 34077 34204 34203 Face 63996 34076 34077 34203 Face 63997 34204 25748 7921 Face 63998 34203 34204 7921 Face 63999 25748 13561 27755 Face 64000 7921 25748 27755 Face 64001 13561 13125 32203 Face 64002 27755 13561 32203 Face 64003 13125 31648 31323 Face 64004 32203 13125 31323 Face 64005 31648 32653 32643 Face 64006 31323 31648 32643 Face 64007 32653 33931 33922 Face 64008 32643 32653 33922 Face 64009 33931 30924 30923 Face 64010 33922 33931 30923 Face 64011 30924 26442 33012 Face 64012 30923 30924 33012 Face 64013 26442 2812 23364 Face 64014 33012 26442 23364 Face 64015 2812 32307 33421 Face 64016 23364 2812 33421 Face 64017 32307 33026 29211 Face 64018 33421 32307 29211 Face 64019 33286 33441 29211 Face 64020 33026 33286 29211 Face 64021 32651 33790 33441 Face 64022 33286 32651 33441 Face 64023 27633 13102 33790 Face 64024 32651 27633 33790 Face 64025 33291 11772 13102 Face 64026 27633 33291 13102 Face 64027 33810 11926 11772 Face 64028 33291 33810 11772 Face 64029 33796 33036 11926 Face 64030 33810 33796 11926 Face 64031 33282 31536 33036 Face 64032 33796 33282 33036 Face 64033 24921 24922 27364 Face 64034 33282 33028 31536 Face 64035 6167 6289 8979 Face 64036 27142 27143 27256 Face 64037 31283 31386 31282 Face 64038 30367 30434 30366 Face 64039 30288 30355 30287 Face 64040 30422 30421 30354 Face 64041 30375 30374 30307 Face 64042 30117 30116 30054 Face 64043 31316 31315 31213 Face 64044 31276 31379 31275 Face 64045 32708 32707 32580 Face 64046 32581 32708 32580 Face 64047 31927 32032 31926 Face 64048 32289 32290 32395 Face 64049 31721 31833 31832 Face 64050 31720 31721 31832 Face 64051 32189 32188 32084 Face 64052 30120 30119 30057 Face 64053 32487 32604 32603 Face 64054 32486 32487 32603 Face 64055 32269 32375 32268 Face 64056 32375 32487 32486 Face 64057 30246 30311 30245 Face 64058 32374 32375 32486 Face 64059 20316 23975 28937 Face 64060 30378 30377 30310 Face 64061 32546 33912 33287 Face 64062 3768 3638 3639 Face 64063 32546 33289 12914 Face 64064 33912 32546 12914 Face 64065 32909 32776 12914 Face 64066 33289 32909 12914 Face 64067 32519 32521 32776 Face 64068 32909 32519 32776 Face 64069 18859 32664 32521 Face 64070 32519 18859 32521 Face 64071 12029 33565 32664 Face 64072 18859 12029 32664 Face 64073 33692 33923 33565 Face 64074 12029 33692 33565 Face 64075 27104 12812 33923 Face 64076 33692 27104 33923 Face 64077 27104 3698 18656 Face 64078 12812 27104 18656 Face 64079 3698 32305 33666 Face 64080 18656 3698 33666 Face 64081 12455 33163 33666 Face 64082 32305 12455 33666 Face 64083 12455 34166 33558 Face 64084 33163 12455 33558 Face 64085 34311 34791 34443 Face 64086 34670 34677 34743 Face 64087 7235 32299 32300 Face 64088 34787 34355 34754 Face 64089 30789 30788 30689 Face 64090 7574 9439 10520 Face 64091 31498 31607 31606 Face 64092 31497 31498 31606 Face 64093 31606 31607 31720 Face 64094 31607 31721 31720 Face 64095 32859 32858 32725 Face 64096 31980 31979 31872 Face 64097 32375 32374 32268 Face 64098 32996 32995 32863 Face 64099 32483 32482 32370 Face 64100 33628 33753 33627 Face 64101 30993 30994 31092 Face 64102 32164 32165 32268 Face 64103 33271 33270 33135 Face 64104 33512 33511 33378 Face 64105 33001 33135 33000 Face 64106 31376 31375 31272 Face 64107 33136 33271 33135 Face 64108 31069 31168 31068 Face 64109 20887 33951 34074 Face 64110 33045 33179 33178 Face 64111 33044 33045 33178 Face 64112 33179 33315 33314 Face 64113 33178 33179 33314 Face 64114 33315 33448 33447 Face 64115 33314 33315 33447 Face 64116 33448 33575 33574 Face 64117 33447 33448 33574 Face 64118 33575 33700 33699 Face 64119 33574 33575 33699 Face 64120 33700 33826 33825 Face 64121 33699 33700 33825 Face 64122 33826 33954 33953 Face 64123 33825 33826 33953 Face 64124 33954 34078 34077 Face 64125 33953 33954 34077 Face 64126 34078 34205 34204 Face 64127 34077 34078 34204 Face 64128 34205 12196 25748 Face 64129 34204 34205 25748 Face 64130 12196 13472 13561 Face 64131 25748 12196 13561 Face 64132 13472 10338 13125 Face 64133 13561 13472 13125 Face 64134 10338 32094 31648 Face 64135 13125 10338 31648 Face 64136 32094 32654 32653 Face 64137 31648 32094 32653 Face 64138 32654 33933 33931 Face 64139 32653 32654 33931 Face 64140 33933 33844 30924 Face 64141 33931 33933 30924 Face 64142 33844 21942 26442 Face 64143 30924 33844 26442 Face 64144 21942 33801 2812 Face 64145 26442 21942 2812 Face 64146 33801 33040 32307 Face 64147 2812 33801 32307 Face 64148 33040 32925 33026 Face 64149 32307 33040 33026 Face 64150 13563 33286 33026 Face 64151 32925 13563 33026 Face 64152 28942 32651 33286 Face 64153 13563 28942 33286 Face 64154 33690 27633 32651 Face 64155 28942 33690 32651 Face 64156 29753 33291 27633 Face 64157 33690 29753 27633 Face 64158 34172 33810 33291 Face 64159 29753 34172 33291 Face 64160 28293 33796 33810 Face 64161 34172 28293 33810 Face 64162 33672 33282 33796 Face 64163 28293 33672 33796 Face 64164 33027 33028 33282 Face 64165 33672 33027 33282 Face 64166 17226 27889 32095 Face 64167 6037 5910 5911 Face 64168 33885 33884 33758 Face 64169 31825 31932 31824 Face 64170 30355 30422 30354 Face 64171 30493 30492 30421 Face 64172 32965 32964 32832 Face 64173 31379 31378 31275 Face 64174 30105 30106 30167 Face 64175 30106 30168 30167 Face 64176 32581 32580 32463 Face 64177 32464 32581 32463 Face 64178 32396 32507 32506 Face 64179 30690 30789 30689 Face 64180 31189 31190 31290 Face 64181 31291 31394 31393 Face 64182 30182 30181 30119 Face 64183 30311 30378 30310 Face 64184 32061 32165 32060 Face 64185 32165 32269 32268 Face 64186 33406 33405 33269 Face 64187 32477 32594 32476 Face 64188 32165 32164 32060 Face 64189 33136 33135 33001 Face 64190 32061 32060 31955 Face 64191 31956 32061 31955 Face 64192 30870 30869 30763 Face 64193 6858 6757 6758 Face 64194 33018 33568 4061 Face 64195 4061 33568 33787 Face 64196 33031 32909 33289 Face 64197 33168 33031 33289 Face 64198 33154 32519 32909 Face 64199 33031 33154 32909 Face 64200 13207 18859 32519 Face 64201 33154 13207 32519 Face 64202 34190 12029 18859 Face 64203 13207 34190 18859 Face 64204 33010 33692 12029 Face 64205 34190 33010 12029 Face 64206 33921 27104 33692 Face 64207 33010 33921 33692 Face 64208 33921 12472 3698 Face 64209 27104 33921 3698 Face 64210 33718 32305 3698 Face 64211 12472 33718 3698 Face 64212 33718 33306 12455 Face 64213 32305 33718 12455 Face 64214 33306 33292 34166 Face 64215 12455 33306 34166 Face 64216 33568 29203 34166 Face 64217 33292 33568 34166 Face 64218 5527 13917 3570 Face 64219 34638 12382 34771 Face 64220 6898 32503 32391 Face 64221 1099 4991 4340 Face 64222 31290 31291 31393 Face 64223 31394 31498 31497 Face 64224 30445 30516 30444 Face 64225 30601 30600 30515 Face 64226 31737 31849 31736 Face 64227 31873 31872 31760 Face 64228 33524 33523 33390 Face 64229 31956 31955 31848 Face 64230 33120 33255 33119 Face 64231 33002 33136 33001 Face 64232 33651 33650 33523 Face 64233 32869 33001 32868 Face 64234 31849 31848 31736 Face 64235 33391 33524 33390 Face 64236 10104 10359 7391 Face 64237 32341 32453 32340 Face 64238 32911 33046 33045 Face 64239 6670 33783 6671 Face 64240 33046 33180 33179 Face 64241 33045 33046 33179 Face 64242 33180 33316 33315 Face 64243 33179 33180 33315 Face 64244 33316 33449 33448 Face 64245 33315 33316 33448 Face 64246 33449 33576 33575 Face 64247 33448 33449 33575 Face 64248 33576 33701 33700 Face 64249 33575 33576 33700 Face 64250 33701 33827 33826 Face 64251 33700 33701 33826 Face 64252 33827 33955 33954 Face 64253 33826 33827 33954 Face 64254 33955 34079 34078 Face 64255 33954 33955 34078 Face 64256 34079 34206 34205 Face 64257 34078 34079 34205 Face 64258 34206 12284 12196 Face 64259 34205 34206 12196 Face 64260 12284 12720 13472 Face 64261 12196 12284 13472 Face 64262 12720 12634 10338 Face 64263 13472 12720 10338 Face 64264 12634 32102 32094 Face 64265 10338 12634 32094 Face 64266 32102 32655 32654 Face 64267 32094 32102 32654 Face 64268 32655 33934 33933 Face 64269 32654 32655 33933 Face 64270 33934 34194 33844 Face 64271 33933 33934 33844 Face 64272 34194 5340 21942 Face 64273 33844 34194 21942 Face 64274 5340 12644 33801 Face 64275 21942 5340 33801 Face 64276 12644 32636 33040 Face 64277 33801 12644 33040 Face 64278 32636 18351 32925 Face 64279 33040 32636 32925 Face 64280 18351 11855 13563 Face 64281 32925 18351 13563 Face 64282 12280 28942 13563 Face 64283 11855 12280 13563 Face 64284 33023 33690 28942 Face 64285 12280 33023 28942 Face 64286 33332 29753 33690 Face 64287 33023 33332 33690 Face 64288 32308 34172 29753 Face 64289 33332 32308 29753 Face 64290 28228 28293 34172 Face 64291 32308 28228 34172 Face 64292 22678 33672 28293 Face 64293 28228 22678 28293 Face 64294 24255 27256 24389 Face 64295 32311 4754 3379 Face 64296 34753 34722 34794 Face 64297 6667 6666 34031 Face 64298 33632 33631 33504 Face 64299 30285 30284 30219 Face 64300 30422 30493 30421 Face 64301 30578 30577 30492 Face 64302 370 27960 12657 Face 64303 11938 370 12657 Face 64304 31705 31817 31704 Face 64305 31177 31278 31176 Face 64306 32464 32463 32351 Face 64307 32352 32464 32351 Face 64308 32161 32160 32056 Face 64309 32161 32265 32160 Face 64310 31090 31091 31189 Face 64311 31190 31291 31290 Face 64312 30445 30444 30377 Face 64313 30695 30694 30600 Face 64314 30701 30702 30800 Face 64315 30801 30899 30800 Face 64316 32657 27599 32658 Face 64317 33168 6164 33301 Face 64318 31646 31645 31532 Face 64319 31533 31646 31532 Face 64320 32870 33002 32869 Face 64321 31888 16723 31775 Face 64322 34774 34730 34288 Face 64323 30020 30019 29958 Face 64324 23221 19479 20996 Face 64325 32414 33031 33168 Face 64326 33301 32414 33168 Face 64327 26444 33154 33031 Face 64328 32414 26444 33031 Face 64329 31537 13207 33154 Face 64330 26444 31537 33154 Face 64331 32750 34190 13207 Face 64332 31537 32750 13207 Face 64333 34156 33010 34190 Face 64334 32750 34156 34190 Face 64335 28278 33921 33010 Face 64336 34156 28278 33010 Face 64337 30184 12472 33921 Face 64338 28278 30184 33921 Face 64339 30722 33718 12472 Face 64340 30184 30722 12472 Face 64341 30722 28690 33306 Face 64342 33718 30722 33306 Face 64343 28690 33293 33292 Face 64344 33306 28690 33292 Face 64345 33293 291 33568 Face 64346 33292 33293 33568 Face 64347 12382 34448 22040 Face 64348 34771 12382 22040 Face 64349 28141 22608 29463 Face 64350 16796 16795 32207 Face 64351 30992 31091 31090 Face 64352 31393 31394 31497 Face 64353 30378 30445 30377 Face 64354 30516 30601 30515 Face 64355 30702 30801 30800 Face 64356 31849 31956 31848 Face 64357 31767 31766 31645 Face 64358 31646 31767 31645 Face 64359 31430 31539 31538 Face 64360 34029 34030 6664 Face 64361 31539 31653 31538 Face 64362 7712 30824 8723 Face 64363 31879 31878 31766 Face 64364 31767 31879 31766 Face 64365 30622 30621 30534 Face 64366 30716 30715 30621 Face 64367 19040 18036 28409 Face 64368 32780 32912 32911 Face 64369 16678 16734 32319 Face 64370 32912 33047 33046 Face 64371 32911 32912 33046 Face 64372 33047 33181 33180 Face 64373 33046 33047 33180 Face 64374 33181 33317 33316 Face 64375 33180 33181 33316 Face 64376 33317 33450 33449 Face 64377 33316 33317 33449 Face 64378 33450 33577 33576 Face 64379 33449 33450 33576 Face 64380 33577 33702 33701 Face 64381 33576 33577 33701 Face 64382 33702 33828 33827 Face 64383 33701 33702 33827 Face 64384 33828 33956 33955 Face 64385 33827 33828 33955 Face 64386 33956 34080 34079 Face 64387 33955 33956 34079 Face 64388 34080 34207 34206 Face 64389 34079 34080 34206 Face 64390 34207 12462 12284 Face 64391 34206 34207 12284 Face 64392 12462 11286 12720 Face 64393 12284 12462 12720 Face 64394 11286 12724 12634 Face 64395 12720 11286 12634 Face 64396 32205 32102 12634 Face 64397 12724 32205 12634 Face 64398 32205 32661 32655 Face 64399 32102 32205 32655 Face 64400 32661 33939 33934 Face 64401 32655 32661 33934 Face 64402 33939 34252 34194 Face 64403 33934 33939 34194 Face 64404 34252 25745 5340 Face 64405 34194 34252 5340 Face 64406 25745 28807 12644 Face 64407 5340 25745 12644 Face 64408 28807 32881 32636 Face 64409 12644 28807 32636 Face 64410 32881 20882 18351 Face 64411 32636 32881 18351 Face 64412 20882 33545 11855 Face 64413 18351 20882 11855 Face 64414 18197 12280 11855 Face 64415 33545 18197 11855 Face 64416 33419 33023 12280 Face 64417 18197 33419 12280 Face 64418 12648 33332 33023 Face 64419 33419 12648 33023 Face 64420 33673 32308 33332 Face 64421 12648 33673 33332 Face 64422 12460 28228 32308 Face 64423 33673 12460 32308 Face 64424 33669 22678 28228 Face 64425 12460 33669 28228 Face 64426 5749 5625 15739 Face 64427 34785 34798 34413 Face 64428 29971 30032 29970 Face 64429 20439 20526 20525 Face 64430 30578 30672 30577 Face 64431 32707 32706 32579 Face 64432 30493 30578 30492 Face 64433 30672 30671 30577 Face 64434 6660 34152 34153 Face 64435 6650 29588 6745 Face 64436 31182 31181 31082 Face 64437 33883 33882 33756 Face 64438 32142 32141 32037 Face 64439 32038 32142 32037 Face 64440 31831 31938 31830 Face 64441 31843 31842 31730 Face 64442 30991 30992 31090 Face 64443 31091 31190 31189 Face 64444 30601 30695 30600 Face 64445 30794 30793 30694 Face 64446 30523 30608 30522 Face 64447 30702 30701 30607 Face 64448 30622 30716 30621 Face 64449 30815 30814 30715 Face 64450 30716 30815 30715 Face 64451 30913 30912 30814 Face 64452 30815 30913 30814 Face 64453 31010 31009 30912 Face 64454 16919 4199 17369 Face 64455 15218 18428 1319 Face 64456 32650 32414 33301 Face 64457 4061 33787 4189 Face 64458 33683 26444 32414 Face 64459 32650 33683 32414 Face 64460 16770 31537 26444 Face 64461 33683 16770 26444 Face 64462 32759 32750 31537 Face 64463 16770 32759 31537 Face 64464 13562 34156 32750 Face 64465 32759 13562 32750 Face 64466 12993 28278 34156 Face 64467 13562 12993 34156 Face 64468 33170 30184 28278 Face 64469 12993 33170 28278 Face 64470 32902 30722 30184 Face 64471 33170 32902 30184 Face 64472 32902 33425 28690 Face 64473 30722 32902 28690 Face 64474 33425 26074 33293 Face 64475 28690 33425 33293 Face 64476 26074 11367 291 Face 64477 33293 26074 291 Face 64478 6826 6727 6827 Face 64479 291 11367 33787 Face 64480 30784 30785 30890 Face 64481 32207 32208 16729 Face 64482 31616 31730 31615 Face 64483 30891 30992 30991 Face 64484 30523 30522 30451 Face 64485 30516 30515 30444 Face 64486 30913 31010 30912 Face 64487 30452 30523 30451 Face 64488 31106 31105 31009 Face 64489 31996 31997 16726 Face 64490 31123 31224 31223 Face 64491 31122 31123 31223 Face 64492 31224 31327 31326 Face 64493 31223 31224 31326 Face 64494 31327 31431 31430 Face 64495 31326 31327 31430 Face 64496 31431 31540 31539 Face 64497 31430 31431 31539 Face 64498 31540 31654 31653 Face 64499 31539 31540 31653 Face 64500 16726 16725 31996 Face 64501 17809 20137 17718 Face 64502 16680 16739 26012 Face 64503 31010 31106 31009 Face 64504 31205 31204 31105 Face 64505 31106 31205 31105 Face 64506 12643 5344 34518 Face 64507 17336 18252 17605 Face 64508 32781 32913 32912 Face 64509 32780 32781 32912 Face 64510 32913 33048 33047 Face 64511 32912 32913 33047 Face 64512 33048 33182 33181 Face 64513 33047 33048 33181 Face 64514 33182 33318 33317 Face 64515 33181 33182 33317 Face 64516 33318 33451 33450 Face 64517 33317 33318 33450 Face 64518 33451 33578 33577 Face 64519 33450 33451 33577 Face 64520 33578 33703 33702 Face 64521 33577 33578 33702 Face 64522 33703 33829 33828 Face 64523 33702 33703 33828 Face 64524 33829 33957 33956 Face 64525 33828 33829 33956 Face 64526 33957 34081 34080 Face 64527 33956 33957 34080 Face 64528 34081 34208 34207 Face 64529 34080 34081 34207 Face 64530 34208 12555 12462 Face 64531 34207 34208 12462 Face 64532 12555 28424 11286 Face 64533 12462 12555 11286 Face 64534 28424 2427 12724 Face 64535 11286 28424 12724 Face 64536 32619 32205 12724 Face 64537 2427 32619 12724 Face 64538 32619 32666 32661 Face 64539 32205 32619 32661 Face 64540 32666 33940 33939 Face 64541 32661 32666 33939 Face 64542 33940 18648 34252 Face 64543 33939 33940 34252 Face 64544 18648 18663 25745 Face 64545 34252 18648 25745 Face 64546 18663 11226 28807 Face 64547 25745 18663 28807 Face 64548 11226 32879 32881 Face 64549 28807 11226 32881 Face 64550 32879 33172 20882 Face 64551 32881 32879 20882 Face 64552 33172 32922 33545 Face 64553 20882 33172 33545 Face 64554 34177 18197 33545 Face 64555 32922 34177 33545 Face 64556 34125 33419 18197 Face 64557 34177 34125 18197 Face 64558 33821 12648 33419 Face 64559 34125 33821 33419 Face 64560 32772 33673 12648 Face 64561 33821 32772 12648 Face 64562 33414 12460 33673 Face 64563 32772 33414 33673 Face 64564 34198 34071 34199 Face 64565 34199 20976 20977 Face 64566 21340 21339 34067 Face 64567 20879 20792 20793 Face 64568 11033 32744 32617 Face 64569 6764 6669 6670 Face 64570 30771 30770 30671 Face 64571 30672 30771 30671 Face 64572 34259 34258 34135 Face 64573 34136 34259 34135 Face 64574 34259 11938 34258 Face 64575 11938 12657 34258 Face 64576 30883 30984 30882 Face 64577 29987 29986 29928 Face 64578 32246 32245 32141 Face 64579 32142 32246 32141 Face 64580 32380 32492 32491 Face 64581 29985 29984 29926 Face 64582 30301 30302 30368 Face 64583 30369 30436 30435 Face 64584 30695 30794 30694 Face 64585 30368 30369 30435 Face 64586 30608 30702 30607 Face 64587 31507 31506 31402 Face 64588 31307 31306 31204 Face 64589 31423 31422 31318 Face 64590 31205 31307 31204 Face 64591 31411 31410 31306 Face 64592 31307 31411 31306 Face 64593 32257 32256 32152 Face 64594 31217 31319 31216 Face 64595 33907 6669 6668 Face 64596 21197 32644 20745 Face 64597 33169 33683 32650 Face 64598 32777 33169 32650 Face 64599 6400 16770 33683 Face 64600 33169 6400 33683 Face 64601 32199 32759 16770 Face 64602 6400 32199 16770 Face 64603 33550 13562 32759 Face 64604 32199 33550 32759 Face 64605 34240 12993 13562 Face 64606 33550 34240 13562 Face 64607 32905 33170 12993 Face 64608 34240 32905 12993 Face 64609 32200 32902 33170 Face 64610 32905 32200 33170 Face 64611 32200 32926 33425 Face 64612 32902 32200 33425 Face 64613 32926 12742 26074 Face 64614 33425 32926 26074 Face 64615 12742 12743 179 Face 64616 26074 12742 11367 Face 64617 7240 7241 7348 Face 64618 30495 30494 30423 Face 64619 30785 30891 30890 Face 64620 30890 30891 30991 Face 64621 31507 31616 31506 Face 64622 31842 31841 31729 Face 64623 12643 11378 11296 Face 64624 30608 30607 30522 Face 64625 31517 31516 31410 Face 64626 31411 31517 31410 Face 64627 16726 16792 16791 Face 64628 31025 31124 31123 Face 64629 2949 3085 2948 Face 64630 31124 31225 31224 Face 64631 31123 31124 31224 Face 64632 31225 31328 31327 Face 64633 31224 31225 31327 Face 64634 31328 31432 31431 Face 64635 31327 31328 31431 Face 64636 31432 31541 31540 Face 64637 31431 31432 31540 Face 64638 31541 31655 31654 Face 64639 31540 31541 31654 Face 64640 31655 31775 31774 Face 64641 31654 31655 31774 Face 64642 31691 31692 31803 Face 64643 31774 31775 31887 Face 64644 31832 31939 31831 Face 64645 108 33783 33784 Face 64646 31630 31629 31516 Face 64647 31517 31630 31516 Face 64648 31751 31750 31629 Face 64649 31630 31751 31629 Face 64650 31863 31862 31750 Face 64651 31751 31863 31750 Face 64652 32782 27603 27602 Face 64653 20137 17809 20215 Face 64654 32782 32914 32913 Face 64655 32781 32782 32913 Face 64656 32914 33049 33048 Face 64657 32913 32914 33048 Face 64658 33049 33183 33182 Face 64659 33048 33049 33182 Face 64660 33183 33319 33318 Face 64661 33182 33183 33318 Face 64662 33319 33452 33451 Face 64663 33318 33319 33451 Face 64664 33452 33579 33578 Face 64665 33451 33452 33578 Face 64666 33579 33704 33703 Face 64667 33578 33579 33703 Face 64668 33704 33830 33829 Face 64669 33703 33704 33829 Face 64670 33830 33958 33957 Face 64671 33829 33830 33957 Face 64672 33958 34082 34081 Face 64673 33957 33958 34081 Face 64674 34082 34209 34208 Face 64675 34081 34082 34208 Face 64676 34209 13208 12555 Face 64677 34208 34209 12555 Face 64678 13208 18392 28424 Face 64679 12555 13208 28424 Face 64680 18392 11607 2427 Face 64681 28424 18392 2427 Face 64682 11607 32628 32619 Face 64683 2427 11607 32619 Face 64684 32628 32668 32666 Face 64685 32619 32628 32666 Face 64686 32668 33942 33940 Face 64687 32666 32668 33940 Face 64688 33942 30249 18648 Face 64689 33940 33942 18648 Face 64690 30249 26645 18663 Face 64691 18648 30249 18663 Face 64692 26645 12656 11226 Face 64693 18663 26645 11226 Face 64694 12656 33035 32879 Face 64695 11226 12656 32879 Face 64696 33035 33304 33172 Face 64697 32879 33035 33172 Face 64698 33304 32793 32922 Face 64699 33172 33304 32922 Face 64700 32316 34177 32922 Face 64701 32793 32316 32922 Face 64702 33803 34125 34177 Face 64703 32316 33803 34177 Face 64704 33820 33821 34125 Face 64705 33803 33820 34125 Face 64706 33020 32772 33821 Face 64707 33820 33020 33821 Face 64708 31649 33414 32772 Face 64709 33020 31649 32772 Face 64710 32141 32140 32036 Face 64711 18787 27960 16774 Face 64712 31993 8979 31992 Face 64713 34258 12657 34257 Face 64714 30877 30876 30770 Face 64715 30771 30877 30770 Face 64716 34010 34009 33883 Face 64717 33884 34010 33883 Face 64718 34010 34136 34009 Face 64719 34136 34135 34009 Face 64720 30223 30224 30288 Face 64721 30356 30355 30288 Face 64722 29868 29922 29867 Face 64723 33883 34009 33882 Face 64724 32352 32351 32245 Face 64725 32246 32352 32245 Face 64726 32369 32481 32368 Face 64727 32598 32725 32597 Face 64728 30436 30507 30506 Face 64729 30435 30436 30506 Face 64730 32480 32479 32367 Face 64731 32368 32480 32367 Face 64732 31616 31615 31506 Face 64733 31730 31842 31729 Face 64734 34254 26073 34253 Face 64735 30698 30699 30797 Face 64736 31970 31969 31862 Face 64737 31863 31970 31862 Face 64738 32075 32074 31969 Face 64739 31970 32075 31969 Face 64740 16725 16790 16724 Face 64741 31112 31211 31111 Face 64742 25491 31025 11691 Face 64743 31321 11237 11168 Face 64744 18262 33169 32777 Face 64745 31993 18262 32777 Face 64746 12816 6400 33169 Face 64747 18262 12816 33169 Face 64748 32751 32199 6400 Face 64749 12816 32751 6400 Face 64750 33546 33550 32199 Face 64751 32751 33546 32199 Face 64752 29329 34240 33550 Face 64753 33546 29329 33550 Face 64754 33420 32905 34240 Face 64755 29329 33420 34240 Face 64756 33562 32200 32905 Face 64757 33420 33562 32905 Face 64758 33562 31883 32926 Face 64759 32200 33562 32926 Face 64760 31883 12743 12742 Face 64761 32926 31883 12742 Face 64762 7346 7238 7239 Face 64763 5332 33013 33789 Face 64764 30686 30785 30784 Face 64765 16758 13212 16695 Face 64766 32054 32053 31948 Face 64767 30685 30686 30784 Face 64768 30382 30449 30381 Face 64769 31730 31729 31615 Face 64770 32179 32178 32074 Face 64771 30032 30033 30094 Face 64772 32075 32179 32074 Face 64773 29517 29515 29385 Face 64774 31026 31025 30926 Face 64775 30927 31026 30926 Face 64776 31125 31124 31025 Face 64777 31026 31125 31025 Face 64778 31226 31225 31124 Face 64779 31125 31226 31124 Face 64780 31329 31328 31225 Face 64781 31226 31329 31225 Face 64782 31433 31432 31328 Face 64783 31329 31433 31328 Face 64784 31542 31541 31432 Face 64785 31433 31542 31432 Face 64786 31656 31655 31541 Face 64787 31542 31656 31541 Face 64788 31656 31776 31775 Face 64789 31655 31656 31775 Face 64790 8369 32620 18039 Face 64791 18039 32620 19185 Face 64792 33027 19226 33028 Face 64793 16846 16845 26073 Face 64794 16843 16844 16931 Face 64795 34127 16841 16840 Face 64796 32283 32282 32178 Face 64797 21705 21802 29192 Face 64798 32179 32283 32178 Face 64799 32389 32388 32282 Face 64800 20971 20970 33442 Face 64801 32283 32389 32282 Face 64802 32656 32783 32782 Face 64803 31643 31642 31529 Face 64804 32783 32915 32914 Face 64805 32782 32783 32914 Face 64806 32915 33050 33049 Face 64807 32914 32915 33049 Face 64808 33050 33184 33183 Face 64809 33049 33050 33183 Face 64810 33184 33320 33319 Face 64811 33183 33184 33319 Face 64812 33320 33453 33452 Face 64813 33319 33320 33452 Face 64814 33453 33580 33579 Face 64815 33452 33453 33579 Face 64816 33580 33705 33704 Face 64817 33579 33580 33704 Face 64818 33705 33831 33830 Face 64819 33704 33705 33830 Face 64820 33831 33959 33958 Face 64821 33830 33831 33958 Face 64822 33959 34083 34082 Face 64823 33958 33959 34082 Face 64824 34083 34210 34209 Face 64825 34082 34083 34209 Face 64826 34210 13115 13208 Face 64827 34209 34210 13208 Face 64828 13115 67 18392 Face 64829 13208 13115 18392 Face 64830 67 11279 11607 Face 64831 18392 67 11607 Face 64832 11279 32895 32628 Face 64833 11607 11279 32628 Face 64834 32895 32745 32668 Face 64835 32628 32895 32668 Face 64836 32745 33943 33942 Face 64837 32668 32745 33942 Face 64838 33943 30625 30249 Face 64839 33942 33943 30249 Face 64840 30625 27482 26645 Face 64841 30249 30625 26645 Face 64842 27482 20117 12656 Face 64843 26645 27482 12656 Face 64844 20117 33805 33035 Face 64845 12656 20117 33035 Face 64846 33805 28694 33304 Face 64847 33035 33805 33304 Face 64848 28694 28001 32793 Face 64849 33304 28694 32793 Face 64850 34181 32316 32793 Face 64851 28001 34181 32793 Face 64852 32623 33803 32316 Face 64853 34181 32623 32316 Face 64854 34173 33820 33803 Face 64855 32623 34173 33803 Face 64856 32095 33020 33820 Face 64857 34173 32095 33820 Face 64858 27889 31649 33020 Face 64859 32095 27889 33020 Face 64860 20976 34199 34071 Face 64861 34452 34707 34520 Face 64862 30097 30098 30159 Face 64863 12657 13478 34257 Face 64864 30978 30977 30876 Face 64865 30877 30978 30876 Face 64866 33884 33883 33757 Face 64867 33758 33884 33757 Face 64868 31708 31820 31707 Face 64869 31927 31926 31819 Face 64870 31174 31275 31173 Face 64871 31378 31377 31274 Face 64872 31933 31932 31825 Face 64873 31826 31933 31825 Face 64874 31933 32038 31932 Face 64875 32038 32037 31932 Face 64876 30306 30307 30373 Face 64877 30707 30706 30612 Face 64878 30507 30592 30591 Face 64879 30591 30592 30685 Face 64880 32158 32262 32157 Face 64881 32368 32367 32261 Face 64882 31172 31171 31072 Face 64883 33764 33890 33763 Face 64884 30987 31086 30986 Face 64885 31296 31295 31194 Face 64886 32501 32500 32388 Face 64887 32389 32501 32388 Face 64888 12650 2953 2952 Face 64889 4023 26680 29065 Face 64890 31993 10345 32315 Face 64891 33663 6677 6676 Face 64892 8835 32665 32315 Face 64893 32315 18262 31993 Face 64894 16689 34225 12747 Face 64895 32545 12816 18262 Face 64896 32315 32545 18262 Face 64897 34041 32751 12816 Face 64898 32545 34041 12816 Face 64899 33014 33546 32751 Face 64900 34041 33014 32751 Face 64901 27362 29329 33546 Face 64902 33014 27362 33546 Face 64903 33149 33420 29329 Face 64904 27362 33149 29329 Face 64905 28093 33562 33420 Face 64906 33149 28093 33420 Face 64907 33307 31883 33562 Face 64908 28093 33307 33562 Face 64909 33307 24263 12743 Face 64910 31883 33307 12743 Face 64911 20611 32659 20610 Face 64912 6146 24263 6290 Face 64913 30302 30369 30368 Face 64914 20442 20528 20441 Face 64915 31949 31948 31841 Face 64916 31949 32054 31948 Face 64917 32043 32147 32042 Face 64918 31379 31483 31378 Face 64919 31533 11235 11234 Face 64920 13131 22913 13132 Face 64921 19263 30384 19264 Face 64922 29515 29517 24131 Face 64923 31027 31026 30927 Face 64924 30928 31027 30927 Face 64925 31126 31125 31026 Face 64926 31027 31126 31026 Face 64927 31227 31226 31125 Face 64928 31126 31227 31125 Face 64929 31330 31329 31226 Face 64930 31227 31330 31226 Face 64931 31434 31433 31329 Face 64932 31330 31434 31329 Face 64933 31543 31542 31433 Face 64934 31434 31543 31433 Face 64935 31657 31656 31542 Face 64936 31543 31657 31542 Face 64937 31657 31777 31776 Face 64938 31656 31657 31776 Face 64939 31777 31889 31888 Face 64940 31776 31777 31888 Face 64941 34341 34384 34373 Face 64942 12926 13116 5341 Face 64943 34339 22039 34478 Face 64944 20147 11495 182 Face 64945 11084 6625 11029 Face 64946 31647 31533 11234 Face 64947 6623 33143 6625 Face 64948 32656 27600 32657 Face 64949 11085 11029 11030 Face 64950 27364 24922 25060 Face 64951 32657 32784 32783 Face 64952 32656 32657 32783 Face 64953 32784 32916 32915 Face 64954 32783 32784 32915 Face 64955 32916 33051 33050 Face 64956 32915 32916 33050 Face 64957 33051 33185 33184 Face 64958 33050 33051 33184 Face 64959 33185 33321 33320 Face 64960 33184 33185 33320 Face 64961 33321 33454 33453 Face 64962 33320 33321 33453 Face 64963 33454 33581 33580 Face 64964 33453 33454 33580 Face 64965 33581 33706 33705 Face 64966 33580 33581 33705 Face 64967 33706 33832 33831 Face 64968 33705 33706 33831 Face 64969 33832 33960 33959 Face 64970 33831 33832 33959 Face 64971 33960 34084 34083 Face 64972 33959 33960 34083 Face 64973 34084 34211 34210 Face 64974 34083 34084 34210 Face 64975 34211 13114 13115 Face 64976 34210 34211 13115 Face 64977 13114 29721 67 Face 64978 13115 13114 67 Face 64979 29721 2376 11279 Face 64980 67 29721 11279 Face 64981 2376 32900 32895 Face 64982 11279 2376 32895 Face 64983 32900 32746 32745 Face 64984 32895 32900 32745 Face 64985 32746 33944 33943 Face 64986 32745 32746 33943 Face 64987 33944 30721 30625 Face 64988 33943 33944 30625 Face 64989 30721 33791 27482 Face 64990 30625 30721 27482 Face 64991 33791 34176 20117 Face 64992 27482 33791 20117 Face 64993 34176 34163 33805 Face 64994 20117 34176 33805 Face 64995 34163 33029 28694 Face 64996 33805 34163 28694 Face 64997 33029 26075 28001 Face 64998 28694 33029 28001 Face 64999 34040 34181 28001 Face 65000 26075 34040 28001 Face 65001 33030 32623 34181 Face 65002 34040 33030 34181 Face 65003 32627 34173 32623 Face 65004 33030 32627 32623 Face 65005 32306 32095 34173 Face 65006 32627 32306 34173 Face 65007 32306 17226 32095 Face 65008 27889 17226 16916 Face 65009 16686 34099 16747 Face 65010 761 646 647 Face 65011 32699 32698 32571 Face 65012 18265 34095 17655 Face 65013 31077 31076 30977 Face 65014 30978 31077 30977 Face 65015 33633 33632 33505 Face 65016 33506 33633 33505 Face 65017 31485 31484 31380 Face 65018 31381 31485 31380 Face 65019 31714 31713 31599 Face 65020 31600 31714 31599 Face 65021 31714 31826 31713 Face 65022 31826 31825 31713 Face 65023 29927 29985 29926 Face 65024 30046 30045 29984 Face 65025 29927 29926 29872 Face 65026 29873 29927 29872 Face 65027 30506 30507 30591 Face 65028 30592 30686 30685 Face 65029 32158 32157 32053 Face 65030 32262 32368 32261 Face 65031 31319 31318 31216 Face 65032 30095 30157 30156 Face 65033 16788 31887 16789 Face 65034 32737 32870 32736 Face 65035 3081 3080 13560 Face 65036 32610 32737 32609 Face 65037 33002 33001 32869 Face 65038 32043 32042 31937 Face 65039 32259 32365 32258 Face 65040 30699 30798 30797 Face 65041 31953 31952 31845 Face 65042 32665 32545 32315 Face 65043 33662 6709 33661 Face 65044 34055 34041 32545 Face 65045 32665 34055 32545 Face 65046 34159 33014 34041 Face 65047 34055 34159 34041 Face 65048 34159 7391 33014 Face 65049 27362 7391 10359 Face 65050 10870 33149 10359 Face 65051 18826 34034 18825 Face 65052 30824 28093 33149 Face 65053 6680 6681 6776 Face 65054 31650 33307 28093 Face 65055 30824 31650 28093 Face 65056 21162 27370 21163 Face 65057 33307 31650 24263 Face 65058 31114 31213 31113 Face 65059 18787 16774 16849 Face 65060 32724 32723 32596 Face 65061 30236 30237 30301 Face 65062 33530 33529 33396 Face 65063 31842 31949 31841 Face 65064 31986 31985 31878 Face 65065 31483 31592 31482 Face 65066 32870 32869 32736 Face 65067 30537 30536 25157 Face 65068 30929 30928 30827 Face 65069 30828 30929 30827 Face 65070 31028 31027 30928 Face 65071 30929 31028 30928 Face 65072 31127 31126 31027 Face 65073 31028 31127 31027 Face 65074 31228 31227 31126 Face 65075 31127 31228 31126 Face 65076 31331 31330 31227 Face 65077 31228 31331 31227 Face 65078 31435 31434 31330 Face 65079 31331 31435 31330 Face 65080 31544 31543 31434 Face 65081 31435 31544 31434 Face 65082 31658 31657 31543 Face 65083 31544 31658 31543 Face 65084 31778 31777 31657 Face 65085 31658 31778 31657 Face 65086 31890 31889 31777 Face 65087 31778 31890 31777 Face 65088 31997 31996 31889 Face 65089 31890 31997 31889 Face 65090 20470 22563 29014 Face 65091 33009 6625 33143 Face 65092 31879 31986 31878 Face 65093 32539 27598 27597 Face 65094 32091 32090 31985 Face 65095 32493 32610 32492 Face 65096 6664 6759 6758 Face 65097 6289 6167 6168 Face 65098 32658 32785 32784 Face 65099 32657 32658 32784 Face 65100 32785 32917 32916 Face 65101 32784 32785 32916 Face 65102 32917 33052 33051 Face 65103 32916 32917 33051 Face 65104 33052 33186 33185 Face 65105 33051 33052 33185 Face 65106 33186 33322 33321 Face 65107 33185 33186 33321 Face 65108 33322 33455 33454 Face 65109 33321 33322 33454 Face 65110 33455 33582 33581 Face 65111 33454 33455 33581 Face 65112 33582 33707 33706 Face 65113 33581 33582 33706 Face 65114 33707 33833 33832 Face 65115 33706 33707 33832 Face 65116 33833 33961 33960 Face 65117 33832 33833 33960 Face 65118 33961 34085 34084 Face 65119 33960 33961 34084 Face 65120 34085 34212 34211 Face 65121 34084 34085 34211 Face 65122 34212 12031 13114 Face 65123 34211 34212 13114 Face 65124 12031 29349 29721 Face 65125 13114 12031 29721 Face 65126 29349 11606 2376 Face 65127 29721 29349 2376 Face 65128 11606 33019 32900 Face 65129 2376 11606 32900 Face 65130 33019 32756 32746 Face 65131 32900 33019 32746 Face 65132 32756 33945 33944 Face 65133 32746 32756 33944 Face 65134 33945 30821 30721 Face 65135 33944 33945 30721 Face 65136 30821 12749 33791 Face 65137 30721 30821 33791 Face 65138 12749 26213 34176 Face 65139 33791 12749 34176 Face 65140 26213 34165 34163 Face 65141 34176 26213 34163 Face 65142 34165 12200 33029 Face 65143 34163 34165 33029 Face 65144 33153 26075 33029 Face 65145 12200 33153 33029 Face 65146 33153 34052 34040 Face 65147 26075 33153 34040 Face 65148 32766 33030 34040 Face 65149 34052 32766 34040 Face 65150 32520 32627 33030 Face 65151 32766 32520 33030 Face 65152 32518 32306 32627 Face 65153 32520 32518 32627 Face 65154 34417 34588 34391 Face 65155 32518 33941 32306 Face 65156 20790 20700 20701 Face 65157 5910 6037 5909 Face 65158 31846 31845 31733 Face 65159 27889 16916 16924 Face 65160 31176 31175 31076 Face 65161 31077 31176 31076 Face 65162 33506 33505 33372 Face 65163 33373 33506 33372 Face 65164 32835 32834 32701 Face 65165 32702 32835 32701 Face 65166 31600 31599 31490 Face 65167 31491 31600 31490 Face 65168 30045 30046 30107 Face 65169 30108 30170 30169 Face 65170 29985 30046 29984 Face 65171 30046 30108 30107 Face 65172 30111 30173 30110 Face 65173 30237 30236 30172 Face 65174 30173 30237 30172 Face 65175 30237 30302 30301 Face 65176 32054 32158 32053 Face 65177 32262 32261 32157 Face 65178 33751 33877 33750 Face 65179 31592 31591 31482 Face 65180 31986 32091 31985 Face 65181 33271 33407 33270 Face 65182 33407 33540 33539 Face 65183 32719 32718 32591 Face 65184 31286 31285 31184 Face 65185 31605 31719 31604 Face 65186 31831 31830 31718 Face 65187 30786 30787 30892 Face 65188 31723 31835 31834 Face 65189 32247 32246 32142 Face 65190 31702 31814 31701 Face 65191 30970 30969 30868 Face 65192 32843 32842 32709 Face 65193 31269 31268 31167 Face 65194 34055 9439 34159 Face 65195 22053 12526 6006 Face 65196 8442 9214 8835 Face 65197 27259 32309 12590 Face 65198 20880 33442 20969 Face 65199 20700 32911 20701 Face 65200 21160 34070 34197 Face 65201 30563 30657 30562 Face 65202 32724 32857 32723 Face 65203 6113 6114 6240 Face 65204 26927 29853 25421 Face 65205 32989 32988 32856 Face 65206 32787 32660 20526 Face 65207 32857 32856 32723 Face 65208 32857 32989 32856 Face 65209 32039 32143 32038 Face 65210 32597 32724 32596 Face 65211 32034 32138 32033 Face 65212 33513 33640 33512 Face 65213 30893 30994 30993 Face 65214 30453 30537 22463 Face 65215 24425 30453 22463 Face 65216 30930 30929 30828 Face 65217 30829 30930 30828 Face 65218 31029 31028 30929 Face 65219 30930 31029 30929 Face 65220 31128 31127 31028 Face 65221 31029 31128 31028 Face 65222 31229 31228 31127 Face 65223 31128 31229 31127 Face 65224 31332 31331 31228 Face 65225 31229 31332 31228 Face 65226 31436 31435 31331 Face 65227 31332 31436 31331 Face 65228 31545 31544 31435 Face 65229 31436 31545 31435 Face 65230 31659 31658 31544 Face 65231 31545 31659 31544 Face 65232 31779 31778 31658 Face 65233 31659 31779 31658 Face 65234 31891 31890 31778 Face 65235 31779 31891 31778 Face 65236 31998 31997 31890 Face 65237 31891 31998 31890 Face 65238 31997 31998 16727 Face 65239 25901 32547 32669 Face 65240 7712 31650 30824 Face 65241 2947 33278 2948 Face 65242 32493 32492 32380 Face 65243 32030 32134 32029 Face 65244 32195 32194 32090 Face 65245 32539 32659 32658 Face 65246 21261 20795 21355 Face 65247 32659 32786 32785 Face 65248 32658 32659 32785 Face 65249 32786 32918 32917 Face 65250 32785 32786 32917 Face 65251 32918 33053 33052 Face 65252 32917 32918 33052 Face 65253 33053 33187 33186 Face 65254 33052 33053 33186 Face 65255 33187 33323 33322 Face 65256 33186 33187 33322 Face 65257 33323 33456 33455 Face 65258 33322 33323 33455 Face 65259 33456 33583 33582 Face 65260 33455 33456 33582 Face 65261 33583 33708 33707 Face 65262 33582 33583 33707 Face 65263 33708 33834 33833 Face 65264 33707 33708 33833 Face 65265 33834 33962 33961 Face 65266 33833 33834 33961 Face 65267 33962 34086 34085 Face 65268 33961 33962 34085 Face 65269 34086 34213 34212 Face 65270 34085 34086 34212 Face 65271 9273 12031 34212 Face 65272 34213 9273 34212 Face 65273 11047 29349 12031 Face 65274 9273 11047 12031 Face 65275 11047 11107 11606 Face 65276 29349 11047 11606 Face 65277 11107 33058 33019 Face 65278 11606 11107 33019 Face 65279 33058 32757 32756 Face 65280 33019 33058 32756 Face 65281 32757 33946 33945 Face 65282 32756 32757 33945 Face 65283 33946 30822 30821 Face 65284 33945 33946 30821 Face 65285 30822 11455 12749 Face 65286 30821 30822 12749 Face 65287 11455 12099 26213 Face 65288 12749 11455 26213 Face 65289 12099 33679 34165 Face 65290 26213 12099 34165 Face 65291 33679 21074 12200 Face 65292 34165 33679 12200 Face 65293 21074 12979 33153 Face 65294 12200 21074 33153 Face 65295 24245 34052 33153 Face 65296 12979 24245 33153 Face 65297 32765 32766 34052 Face 65298 24245 32765 34052 Face 65299 34222 32520 32766 Face 65300 32765 34222 32766 Face 65301 32635 32518 32520 Face 65302 34222 32635 32520 Face 65303 33815 33941 32518 Face 65304 32635 33815 32518 Face 65305 27756 8369 33941 Face 65306 33815 27756 33941 Face 65307 20789 20699 20700 Face 65308 27756 32620 8369 Face 65309 6899 32392 32393 Face 65310 6678 6774 6773 Face 65311 33373 33372 33236 Face 65312 33237 33373 33236 Face 65313 32458 32575 32457 Face 65314 32702 32701 32574 Face 65315 31491 31490 31386 Face 65316 31387 31491 31386 Face 65317 30107 30108 30169 Face 65318 30170 30234 30233 Face 65319 29988 30049 29987 Face 65320 30111 30110 30048 Face 65321 30173 30172 30110 Face 65322 30049 30111 30048 Face 65323 33123 33122 32988 Face 65324 32989 33123 32988 Face 65325 32597 32596 32479 Face 65326 32480 32597 32479 Face 65327 31217 31216 31117 Face 65328 17937 19166 17852 Face 65329 7349 7348 7241 Face 65330 30972 30971 30870 Face 65331 32381 32493 32380 Face 65332 32091 32195 32090 Face 65333 32299 32298 32194 Face 65334 32195 32299 32194 Face 65335 32405 32404 32298 Face 65336 32299 32405 32298 Face 65337 33625 33624 33497 Face 65338 29866 29920 29865 Face 65339 16693 16753 16692 Face 65340 32893 23922 2821 Face 65341 16696 28280 16697 Face 65342 34066 2039 2040 Face 65343 30581 30675 30580 Face 65344 12023 13086 370 Face 65345 32027 32026 31921 Face 65346 30030 30031 30092 Face 65347 31271 31374 31270 Face 65348 31713 31712 31598 Face 65349 30765 30764 30665 Face 65350 30093 30155 30154 Face 65351 31813 31812 31700 Face 65352 31701 31813 31700 Face 65353 33094 33093 32959 Face 65354 30091 30153 30152 Face 65355 32695 32828 32694 Face 65356 32960 33094 32959 Face 65357 29980 30041 29979 Face 65358 30782 30783 30888 Face 65359 30984 31083 30983 Face 65360 30830 30829 30723 Face 65361 30724 30830 30723 Face 65362 30931 30930 30829 Face 65363 30830 30931 30829 Face 65364 31030 31029 30930 Face 65365 30931 31030 30930 Face 65366 31129 31128 31029 Face 65367 31030 31129 31029 Face 65368 31230 31229 31128 Face 65369 31129 31230 31128 Face 65370 31333 31332 31229 Face 65371 31230 31333 31229 Face 65372 31437 31436 31332 Face 65373 31333 31437 31332 Face 65374 31546 31545 31436 Face 65375 31437 31546 31436 Face 65376 31660 31659 31545 Face 65377 31546 31660 31545 Face 65378 31780 31779 31659 Face 65379 31660 31780 31659 Face 65380 31892 31891 31779 Face 65381 31780 31892 31779 Face 65382 31999 31998 31891 Face 65383 31892 31999 31891 Face 65384 31999 32104 32103 Face 65385 31998 31999 32103 Face 65386 18322 18225 18949 Face 65387 32104 32207 32103 Face 65388 16719 18874 34264 Face 65389 32057 32056 31951 Face 65390 30717 30716 30622 Face 65391 30623 30717 30622 Face 65392 33063 16680 32929 Face 65393 6660 6661 6755 Face 65394 32660 32787 32786 Face 65395 32659 32660 32786 Face 65396 32787 32919 32918 Face 65397 32786 32787 32918 Face 65398 32919 33054 33053 Face 65399 32918 32919 33053 Face 65400 33054 33188 33187 Face 65401 33053 33054 33187 Face 65402 33188 33324 33323 Face 65403 33187 33188 33323 Face 65404 33324 33457 33456 Face 65405 33323 33324 33456 Face 65406 33457 33584 33583 Face 65407 33456 33457 33583 Face 65408 33584 33709 33708 Face 65409 33583 33584 33708 Face 65410 33709 33835 33834 Face 65411 33708 33709 33834 Face 65412 33835 33963 33962 Face 65413 33834 33835 33962 Face 65414 33963 34087 34086 Face 65415 33962 33963 34086 Face 65416 34087 34214 34213 Face 65417 34086 34087 34213 Face 65418 34214 11624 9273 Face 65419 34213 34214 9273 Face 65420 12289 11047 9273 Face 65421 11624 12289 9273 Face 65422 13204 11107 11047 Face 65423 12289 13204 11047 Face 65424 13204 33156 33058 Face 65425 11107 13204 33058 Face 65426 33156 32758 32757 Face 65427 33058 33156 32757 Face 65428 32758 33947 33946 Face 65429 32757 32758 33946 Face 65430 33947 30922 30822 Face 65431 33946 33947 30822 Face 65432 30922 11350 11455 Face 65433 30822 30922 11455 Face 65434 11350 34189 12099 Face 65435 11455 11350 12099 Face 65436 34189 32428 33679 Face 65437 12099 34189 33679 Face 65438 32428 33145 21074 Face 65439 33679 32428 21074 Face 65440 33145 33817 12979 Face 65441 21074 33145 12979 Face 65442 33817 33689 24245 Face 65443 12979 33817 24245 Face 65444 32310 32765 24245 Face 65445 33689 32310 24245 Face 65446 33916 34222 32765 Face 65447 32310 33916 32765 Face 65448 33916 32753 32635 Face 65449 34222 33916 32635 Face 65450 32753 12915 33815 Face 65451 32635 32753 33815 Face 65452 12915 28006 27756 Face 65453 33815 12915 27756 Face 65454 28006 21194 32620 Face 65455 27756 28006 32620 Face 65456 27277 22990 19378 Face 65457 34830 33671 34361 Face 65458 16846 26073 12748 Face 65459 23110 19091 25315 Face 65460 29969 30030 29968 Face 65461 32575 32702 32574 Face 65462 31387 31386 31283 Face 65463 31284 31387 31283 Face 65464 30169 30170 30233 Face 65465 30299 30298 30233 Face 65466 29930 29988 29929 Face 65467 30049 30048 29987 Face 65468 33527 33654 33526 Face 65469 33779 33778 33653 Face 65470 33394 33393 33257 Face 65471 33258 33394 33257 Face 65472 32460 32459 32347 Face 65473 33753 33752 33627 Face 65474 32721 32854 32720 Face 65475 30420 30419 30352 Face 65476 18653 13842 13828 Face 65477 33628 33627 33500 Face 65478 31732 31844 31731 Face 65479 31844 31951 31843 Face 65480 30816 30815 30716 Face 65481 30717 30816 30716 Face 65482 30914 30913 30815 Face 65483 30816 30914 30815 Face 65484 30774 30773 30674 Face 65485 33659 33660 33784 Face 65486 31011 31010 30913 Face 65487 33660 33659 33532 Face 65488 30914 31011 30913 Face 65489 31107 31106 31010 Face 65490 31011 31107 31010 Face 65491 31206 31205 31106 Face 65492 31107 31206 31106 Face 65493 31308 31307 31205 Face 65494 31206 31308 31205 Face 65495 31412 31411 31307 Face 65496 31308 31412 31307 Face 65497 31518 31517 31411 Face 65498 31412 31518 31411 Face 65499 31631 31630 31517 Face 65500 31518 31631 31517 Face 65501 31752 31751 31630 Face 65502 31631 31752 31630 Face 65503 30626 30725 30724 Face 65504 30831 30830 30724 Face 65505 30725 30831 30724 Face 65506 30932 30931 30830 Face 65507 30831 30932 30830 Face 65508 31031 31030 30931 Face 65509 30932 31031 30931 Face 65510 31130 31129 31030 Face 65511 31031 31130 31030 Face 65512 31231 31230 31129 Face 65513 31130 31231 31129 Face 65514 31334 31333 31230 Face 65515 31231 31334 31230 Face 65516 31438 31437 31333 Face 65517 31334 31438 31333 Face 65518 31547 31546 31437 Face 65519 31438 31547 31437 Face 65520 31661 31660 31546 Face 65521 31547 31661 31546 Face 65522 31781 31780 31660 Face 65523 31661 31781 31660 Face 65524 31893 31892 31780 Face 65525 31781 31893 31780 Face 65526 32000 31999 31892 Face 65527 31893 32000 31892 Face 65528 32105 32104 31999 Face 65529 32000 32105 31999 Face 65530 32105 32208 32207 Face 65531 32104 32105 32207 Face 65532 16742 16682 16683 Face 65533 20526 20440 20527 Face 65534 31864 31863 31751 Face 65535 31752 31864 31751 Face 65536 17341 17430 19719 Face 65537 32787 20528 32919 Face 65538 21341 21433 21340 Face 65539 32920 20528 20442 Face 65540 12015 11531 34183 Face 65541 21340 34067 21341 Face 65542 32920 33055 33054 Face 65543 32919 32920 33054 Face 65544 33055 33189 33188 Face 65545 33054 33055 33188 Face 65546 33189 33325 33324 Face 65547 33188 33189 33324 Face 65548 33325 33458 33457 Face 65549 33324 33325 33457 Face 65550 33458 33585 33584 Face 65551 33457 33458 33584 Face 65552 33585 33710 33709 Face 65553 33584 33585 33709 Face 65554 33710 33836 33835 Face 65555 33709 33710 33835 Face 65556 33836 33964 33963 Face 65557 33835 33836 33963 Face 65558 33964 34088 34087 Face 65559 33963 33964 34087 Face 65560 34088 34215 34214 Face 65561 34087 34088 34214 Face 65562 34215 13656 11624 Face 65563 34214 34215 11624 Face 65564 13656 11381 12289 Face 65565 11624 13656 12289 Face 65566 11381 12658 13204 Face 65567 12289 11381 13204 Face 65568 12658 33165 33156 Face 65569 13204 12658 33156 Face 65570 33165 32762 32758 Face 65571 33156 33165 32758 Face 65572 32762 33948 33947 Face 65573 32758 32762 33947 Face 65574 33948 31118 30922 Face 65575 33947 33948 30922 Face 65576 31118 26929 11350 Face 65577 30922 31118 11350 Face 65578 26929 32415 34189 Face 65579 11350 26929 34189 Face 65580 32415 34039 32428 Face 65581 34189 32415 32428 Face 65582 34039 33688 33145 Face 65583 32428 34039 33145 Face 65584 33688 18716 33817 Face 65585 33145 33688 33817 Face 65586 26989 33689 33817 Face 65587 18716 26989 33817 Face 65588 26989 28292 32310 Face 65589 33689 26989 32310 Face 65590 28292 34251 33916 Face 65591 32310 28292 33916 Face 65592 32886 32753 33916 Face 65593 34251 32886 33916 Face 65594 32886 27134 12915 Face 65595 32753 32886 12915 Face 65596 27134 12902 28006 Face 65597 12915 27134 28006 Face 65598 12902 28138 21194 Face 65599 28006 12902 21194 Face 65600 33915 5465 21194 Face 65601 28138 33915 21194 Face 65602 24496 22990 24211 Face 65603 1914 2663 29783 Face 65604 34002 34128 34001 Face 65605 16694 13212 16757 Face 65606 31284 31283 31182 Face 65607 31183 31284 31182 Face 65608 30234 30299 30233 Face 65609 30299 30366 30365 Face 65610 29876 29930 29875 Face 65611 29988 29987 29929 Face 65612 33654 33779 33653 Face 65613 33905 33904 33778 Face 65614 33533 33532 33399 Face 65615 33400 33533 33399 Face 65616 33400 33399 33263 Face 65617 33264 33400 33263 Face 65618 31971 31970 31863 Face 65619 31864 31971 31863 Face 65620 32076 32075 31970 Face 65621 31971 32076 31970 Face 65622 33264 33263 33128 Face 65623 33129 33264 33128 Face 65624 32180 32179 32075 Face 65625 32076 32180 32075 Face 65626 32284 32283 32179 Face 65627 32180 32284 32179 Face 65628 32863 32995 32994 Face 65629 33129 33128 32994 Face 65630 33533 33660 33532 Face 65631 27372 24244 27373 Face 65632 32390 32389 32283 Face 65633 32602 32603 32729 Face 65634 32284 32390 32283 Face 65635 30726 30725 30626 Face 65636 30627 30726 30626 Face 65637 30832 30831 30725 Face 65638 30726 30832 30725 Face 65639 30933 30932 30831 Face 65640 30832 30933 30831 Face 65641 31032 31031 30932 Face 65642 30933 31032 30932 Face 65643 31131 31130 31031 Face 65644 31032 31131 31031 Face 65645 31232 31231 31130 Face 65646 31131 31232 31130 Face 65647 31335 31334 31231 Face 65648 31232 31335 31231 Face 65649 31439 31438 31334 Face 65650 31335 31439 31334 Face 65651 31548 31547 31438 Face 65652 31439 31548 31438 Face 65653 31662 31661 31547 Face 65654 31548 31662 31547 Face 65655 31782 31781 31661 Face 65656 31662 31782 31661 Face 65657 31894 31893 31781 Face 65658 31782 31894 31781 Face 65659 32001 32000 31893 Face 65660 31894 32001 31893 Face 65661 32106 32105 32000 Face 65662 32001 32106 32000 Face 65663 32106 32209 32208 Face 65664 32105 32106 32208 Face 65665 32208 32209 16729 Face 65666 34725 34542 34748 Face 65667 32502 32501 32389 Face 65668 33499 33498 33365 Face 65669 32390 32502 32389 Face 65670 20443 20442 20356 Face 65671 32339 32338 32232 Face 65672 32233 32339 32232 Face 65673 8001 16720 18128 Face 65674 6664 6662 34154 Face 65675 32921 33056 33055 Face 65676 32920 32921 33055 Face 65677 33056 33190 33189 Face 65678 33055 33056 33189 Face 65679 33190 33326 33325 Face 65680 33189 33190 33325 Face 65681 33326 33459 33458 Face 65682 33325 33326 33458 Face 65683 33459 33586 33585 Face 65684 33458 33459 33585 Face 65685 33586 33711 33710 Face 65686 33585 33586 33710 Face 65687 33837 33836 33710 Face 65688 33711 33837 33710 Face 65689 33965 33964 33836 Face 65690 33837 33965 33836 Face 65691 33965 34089 34088 Face 65692 33964 33965 34088 Face 65693 34089 34216 34215 Face 65694 34088 34089 34215 Face 65695 34216 26070 13656 Face 65696 34215 34216 13656 Face 65697 26070 29339 11381 Face 65698 13656 26070 11381 Face 65699 28412 12658 11381 Face 65700 29339 28412 11381 Face 65701 33175 33165 12658 Face 65702 28412 33175 12658 Face 65703 33175 32763 32762 Face 65704 33165 33175 32762 Face 65705 32763 33973 33948 Face 65706 32762 32763 33948 Face 65707 33973 31119 31118 Face 65708 33948 33973 31118 Face 65709 31119 13464 26929 Face 65710 31118 31119 26929 Face 65711 13464 33687 32415 Face 65712 26929 13464 32415 Face 65713 33687 32426 34039 Face 65714 32415 33687 34039 Face 65715 32426 25470 33688 Face 65716 34039 32426 33688 Face 65717 25470 33818 18716 Face 65718 33688 25470 18716 Face 65719 33818 33670 26989 Face 65720 18716 33818 26989 Face 65721 33670 33059 28292 Face 65722 26989 33670 28292 Face 65723 33059 31534 34251 Face 65724 28292 33059 34251 Face 65725 31534 27759 32886 Face 65726 34251 31534 32886 Face 65727 27759 12566 27134 Face 65728 32886 27759 27134 Face 65729 12566 4986 12902 Face 65730 27134 12566 12902 Face 65731 4986 11602 28138 Face 65732 12902 4986 28138 Face 65733 11602 33166 33915 Face 65734 28138 11602 33915 Face 65735 13183 1914 29783 Face 65736 1914 13183 1913 Face 65737 6665 6759 6664 Face 65738 21647 29588 6650 Face 65739 31183 31182 31083 Face 65740 31084 31183 31083 Face 65741 30298 30299 30365 Face 65742 30433 30432 30365 Face 65743 31871 31870 31758 Face 65744 29930 29929 29875 Face 65745 33779 33905 33778 Face 65746 32189 32293 32188 Face 65747 32268 32374 32267 Face 65748 32374 32486 32485 Face 65749 16729 16730 16797 Face 65750 32460 32577 32459 Face 65751 32704 32837 32703 Face 65752 31839 31946 31945 Face 65753 31838 31839 31945 Face 65754 32275 32274 32170 Face 65755 32374 32373 32267 Face 65756 33001 33000 32868 Face 65757 33270 33269 33134 Face 65758 33776 33775 33650 Face 65759 32164 32268 32163 Face 65760 33524 33651 33523 Face 65761 33527 33526 33393 Face 65762 32995 33129 32994 Face 65763 33654 33653 33526 Face 65764 33394 33527 33393 Face 65765 32486 32603 32602 Face 65766 32729 32730 32862 Face 65767 33120 33119 32985 Face 65768 32986 33120 32985 Face 65769 30903 30904 31000 Face 65770 33135 33134 33000 Face 65771 32736 32869 32735 Face 65772 32171 32170 32066 Face 65773 30727 30726 30627 Face 65774 30628 30727 30627 Face 65775 30833 30832 30726 Face 65776 30727 30833 30726 Face 65777 30934 30933 30832 Face 65778 30833 30934 30832 Face 65779 31033 31032 30933 Face 65780 30934 31033 30933 Face 65781 31132 31131 31032 Face 65782 31033 31132 31032 Face 65783 31233 31232 31131 Face 65784 31132 31233 31131 Face 65785 31336 31335 31232 Face 65786 31233 31336 31232 Face 65787 31440 31439 31335 Face 65788 31336 31440 31335 Face 65789 31549 31548 31439 Face 65790 31440 31549 31439 Face 65791 31663 31662 31548 Face 65792 31549 31663 31548 Face 65793 31783 31782 31662 Face 65794 31663 31783 31662 Face 65795 31895 31894 31782 Face 65796 31783 31895 31782 Face 65797 32002 32001 31894 Face 65798 31895 32002 31894 Face 65799 32107 32106 32001 Face 65800 32002 32107 32001 Face 65801 32210 32209 32106 Face 65802 32107 32210 32106 Face 65803 27099 24752 23354 Face 65804 33011 2561 2562 Face 65805 32268 32267 32163 Face 65806 33056 32921 20444 Face 65807 31647 31646 31533 Face 65808 33879 33878 33752 Face 65809 33625 33750 33624 Face 65810 32737 32736 32609 Face 65811 17424 18480 18244 Face 65812 20147 32910 32537 Face 65813 33941 17226 32306 Face 65814 25086 25087 25225 Face 65815 33057 33191 33190 Face 65816 33056 33057 33190 Face 65817 33191 33327 33326 Face 65818 33190 33191 33326 Face 65819 33327 33460 33459 Face 65820 33326 33327 33459 Face 65821 33460 33587 33586 Face 65822 33459 33460 33586 Face 65823 33587 33712 33711 Face 65824 33586 33587 33711 Face 65825 33712 33838 33837 Face 65826 33711 33712 33837 Face 65827 33838 33966 33965 Face 65828 33837 33838 33965 Face 65829 33966 34090 34089 Face 65830 33965 33966 34089 Face 65831 34217 34216 34089 Face 65832 34090 34217 34089 Face 65833 16870 26070 34216 Face 65834 34217 16870 34216 Face 65835 28422 29339 26070 Face 65836 16870 28422 26070 Face 65837 13194 28412 29339 Face 65838 28422 13194 29339 Face 65839 33295 33175 28412 Face 65840 13194 33295 28412 Face 65841 33295 32779 32763 Face 65842 33175 33295 32763 Face 65843 32779 34032 33973 Face 65844 32763 32779 33973 Face 65845 34032 31121 31119 Face 65846 33973 34032 31119 Face 65847 31121 11534 13464 Face 65848 31119 31121 13464 Face 65849 11534 32899 33687 Face 65850 13464 11534 33687 Face 65851 32899 32534 32426 Face 65852 33687 32899 32426 Face 65853 32534 33173 25470 Face 65854 32426 32534 25470 Face 65855 32775 33818 25470 Face 65856 33173 32775 25470 Face 65857 32775 32099 33670 Face 65858 33818 32775 33670 Face 65859 32099 34188 33059 Face 65860 33670 32099 33059 Face 65861 34188 31324 31534 Face 65862 33059 34188 31534 Face 65863 31324 18770 27759 Face 65864 31534 31324 27759 Face 65865 18770 32408 12566 Face 65866 27759 18770 12566 Face 65867 32408 33950 4986 Face 65868 12566 32408 4986 Face 65869 33950 33792 11602 Face 65870 4986 33950 11602 Face 65871 33792 32755 33166 Face 65872 11602 33792 33166 Face 65873 32755 33911 31651 Face 65874 33166 32755 31651 Face 65875 16785 16786 16874 Face 65876 19062 15052 20917 Face 65877 30985 31084 30984 Face 65878 13256 18653 23975 Face 65879 30366 30433 30365 Face 65880 30504 30503 30432 Face 65881 31759 31758 31637 Face 65882 31638 31759 31637 Face 65883 32293 32399 32398 Face 65884 33900 33899 33773 Face 65885 31955 32060 31954 Face 65886 32164 32163 32059 Face 65887 30029 30030 30091 Face 65888 30092 30154 30153 Face 65889 30221 30286 30220 Face 65890 30353 30352 30285 Face 65891 31192 31293 31292 Face 65892 31191 31192 31292 Face 65893 30594 30688 30687 Face 65894 30892 30893 30993 Face 65895 33630 33755 33629 Face 65896 31848 31847 31735 Face 65897 31736 31848 31735 Face 65898 32026 32025 31920 Face 65899 33905 34031 34030 Face 65900 33904 33905 34030 Face 65901 32726 32725 32598 Face 65902 32485 32486 32602 Face 65903 32603 32730 32729 Face 65904 30701 30800 30799 Face 65905 32373 32374 32485 Face 65906 29911 29969 29910 Face 65907 30700 30701 30799 Face 65908 31962 32067 31961 Face 65909 30535 30629 30628 Face 65910 30728 30727 30628 Face 65911 30629 30728 30628 Face 65912 30834 30833 30727 Face 65913 30728 30834 30727 Face 65914 30935 30934 30833 Face 65915 30834 30935 30833 Face 65916 31034 31033 30934 Face 65917 30935 31034 30934 Face 65918 31133 31132 31033 Face 65919 31034 31133 31033 Face 65920 31234 31233 31132 Face 65921 31133 31234 31132 Face 65922 31337 31336 31233 Face 65923 31234 31337 31233 Face 65924 31441 31440 31336 Face 65925 31337 31441 31336 Face 65926 31550 31549 31440 Face 65927 31441 31550 31440 Face 65928 31664 31663 31549 Face 65929 31550 31664 31549 Face 65930 31784 31783 31663 Face 65931 31664 31784 31663 Face 65932 31896 31895 31783 Face 65933 31784 31896 31783 Face 65934 32003 32002 31895 Face 65935 31896 32003 31895 Face 65936 32108 32107 32002 Face 65937 32003 32108 32002 Face 65938 32211 32210 32107 Face 65939 32108 32211 32107 Face 65940 14320 18581 20917 Face 65941 20917 15052 14320 Face 65942 16688 34225 16689 Face 65943 11309 11308 11234 Face 65944 32610 32609 32492 Face 65945 31931 31930 31823 Face 65946 31768 31767 31646 Face 65947 31647 31768 31646 Face 65948 30768 30767 30668 Face 65949 32027 32131 32026 Face 65950 20610 32659 32539 Face 65951 33911 34037 17232 Face 65952 33057 20445 33191 Face 65953 18728 17584 18738 Face 65954 33192 33328 33327 Face 65955 33191 33192 33327 Face 65956 33328 33461 33460 Face 65957 33327 33328 33460 Face 65958 33461 33588 33587 Face 65959 33460 33461 33587 Face 65960 33588 33713 33712 Face 65961 33587 33588 33712 Face 65962 33713 33839 33838 Face 65963 33712 33713 33838 Face 65964 33967 33966 33838 Face 65965 33839 33967 33838 Face 65966 34091 34090 33966 Face 65967 33967 34091 33966 Face 65968 34218 34217 34090 Face 65969 34091 34218 34090 Face 65970 34218 27876 16870 Face 65971 34217 34218 16870 Face 65972 27042 28422 16870 Face 65973 27876 27042 16870 Face 65974 8984 13194 28422 Face 65975 27042 8984 28422 Face 65976 33437 33295 13194 Face 65977 8984 33437 13194 Face 65978 32788 32779 33295 Face 65979 33437 32788 33295 Face 65980 32788 34033 34032 Face 65981 32779 32788 34032 Face 65982 31322 31121 34032 Face 65983 34033 31322 34032 Face 65984 12004 11534 31121 Face 65985 31322 12004 31121 Face 65986 12004 32407 32899 Face 65987 11534 12004 32899 Face 65988 32407 33793 32534 Face 65989 32899 32407 32534 Face 65990 33793 13209 33173 Face 65991 32534 33793 33173 Face 65992 13209 33283 32775 Face 65993 33173 13209 32775 Face 65994 33283 33034 32099 Face 65995 32775 33283 32099 Face 65996 33034 27040 34188 Face 65997 32099 33034 34188 Face 65998 27040 33060 31324 Face 65999 34188 27040 31324 Face 66000 33060 28137 18770 Face 66001 31324 33060 18770 Face 66002 28137 29539 32408 Face 66003 18770 28137 32408 Face 66004 29539 29798 33950 Face 66005 32408 29539 33950 Face 66006 29798 34192 33792 Face 66007 33950 29798 33792 Face 66008 34192 32778 32755 Face 66009 33792 34192 32755 Face 66010 32778 34037 33911 Face 66011 32755 32778 33911 Face 66012 31429 6388 2813 Face 66013 32207 16729 16796 Face 66014 3086 3085 2949 Face 66015 33510 33637 33509 Face 66016 30433 30504 30432 Face 66017 30504 30589 30503 Face 66018 31525 31638 31524 Face 66019 31528 31641 31527 Face 66020 32292 32293 32398 Face 66021 33529 33528 33395 Face 66022 31955 31954 31847 Face 66023 32060 32164 32059 Face 66024 31880 31879 31767 Face 66025 31768 31880 31767 Face 66026 31987 31986 31879 Face 66027 31880 31987 31879 Face 66028 32092 32091 31986 Face 66029 31987 32092 31986 Face 66030 32196 32195 32091 Face 66031 32092 32196 32091 Face 66032 32300 32299 32195 Face 66033 30607 30606 30521 Face 66034 30522 30607 30521 Face 66035 29972 30033 29971 Face 66036 34133 34256 34132 Face 66037 25577 25491 11691 Face 66038 32085 32189 32084 Face 66039 30522 30521 30450 Face 66040 32293 32292 32188 Face 66041 32196 32300 32195 Face 66042 30451 30522 30450 Face 66043 3768 3639 3769 Face 66044 30630 30629 30535 Face 66045 30536 30630 30535 Face 66046 30729 30728 30629 Face 66047 30630 30729 30629 Face 66048 30835 30834 30728 Face 66049 30729 30835 30728 Face 66050 30936 30935 30834 Face 66051 30835 30936 30834 Face 66052 31035 31034 30935 Face 66053 30936 31035 30935 Face 66054 31134 31133 31034 Face 66055 31035 31134 31034 Face 66056 31235 31234 31133 Face 66057 31134 31235 31133 Face 66058 31338 31337 31234 Face 66059 31235 31338 31234 Face 66060 31442 31441 31337 Face 66061 31338 31442 31337 Face 66062 31551 31550 31441 Face 66063 31442 31551 31441 Face 66064 31665 31664 31550 Face 66065 31551 31665 31550 Face 66066 31785 31784 31664 Face 66067 31665 31785 31664 Face 66068 31897 31896 31784 Face 66069 31785 31897 31784 Face 66070 32004 32003 31896 Face 66071 31897 32004 31896 Face 66072 32109 32108 32003 Face 66073 32004 32109 32003 Face 66074 32212 32211 32108 Face 66075 32109 32212 32108 Face 66076 32319 32318 32211 Face 66077 32212 32319 32211 Face 66078 21068 20975 34071 Face 66079 25577 11691 25578 Face 66080 7233 32515 32404 Face 66081 2553 22274 16694 Face 66082 11114 11113 30921 Face 66083 31085 31084 30985 Face 66084 20445 33192 33191 Face 66085 30885 30986 30884 Face 66086 32036 32035 31930 Face 66087 556 1542 13861 Face 66088 6510 3321 33812 Face 66089 16786 31653 16787 Face 66090 33193 33329 33328 Face 66091 33192 33193 33328 Face 66092 33329 33462 33461 Face 66093 33328 33329 33461 Face 66094 33589 33588 33461 Face 66095 33462 33589 33461 Face 66096 33714 33713 33588 Face 66097 33589 33714 33588 Face 66098 33714 33840 33839 Face 66099 33713 33714 33839 Face 66100 33840 33968 33967 Face 66101 33839 33840 33967 Face 66102 33968 34092 34091 Face 66103 33967 33968 34091 Face 66104 34219 34218 34091 Face 66105 34092 34219 34091 Face 66106 13666 27876 34218 Face 66107 34219 13666 34218 Face 66108 27043 27042 27876 Face 66109 13666 27043 27876 Face 66110 13184 8984 27042 Face 66111 27043 13184 27042 Face 66112 33554 33437 8984 Face 66113 13184 33554 8984 Face 66114 32789 32788 33437 Face 66115 33554 32789 33437 Face 66116 32789 34035 34033 Face 66117 32788 32789 34033 Face 66118 34035 31426 31322 Face 66119 34033 34035 31322 Face 66120 31426 10745 12004 Face 66121 31322 31426 12004 Face 66122 10745 31222 32407 Face 66123 12004 10745 32407 Face 66124 21075 33793 32407 Face 66125 31222 21075 32407 Face 66126 32431 13209 33793 Face 66127 21075 32431 33793 Face 66128 32431 34250 33283 Face 66129 13209 32431 33283 Face 66130 34250 34193 33034 Face 66131 33283 34250 33034 Face 66132 34193 33913 27040 Face 66133 33034 34193 27040 Face 66134 33913 34036 33060 Face 66135 27040 33913 33060 Face 66136 34036 32413 28137 Face 66137 33060 34036 28137 Face 66138 32413 33428 29539 Face 66139 28137 32413 29539 Face 66140 33428 32418 29798 Face 66141 29539 33428 29798 Face 66142 32418 34065 34192 Face 66143 29798 32418 34192 Face 66144 34065 34179 32778 Face 66145 34192 34065 32778 Face 66146 34179 12829 34037 Face 66147 32778 34179 34037 Face 66148 12829 33418 5123 Face 66149 34037 12829 5123 Face 66150 21249 34068 21250 Face 66151 27602 27729 27601 Face 66152 30589 30588 30503 Face 66153 30974 30973 30872 Face 66154 30519 30518 30447 Face 66155 31732 31731 31617 Face 66156 32991 32990 32858 Face 66157 32599 32598 32481 Face 66158 31848 31955 31847 Face 66159 32060 32059 31954 Face 66160 30701 30700 30606 Face 66161 30607 30701 30606 Face 66162 32290 32396 32395 Face 66163 17226 33941 8369 Face 66164 30718 30717 30623 Face 66165 30624 30718 30623 Face 66166 30817 30816 30717 Face 66167 30718 30817 30717 Face 66168 30915 30914 30816 Face 66169 30817 30915 30816 Face 66170 32040 32039 31934 Face 66171 32854 32853 32720 Face 66172 30248 30313 30247 Face 66173 34256 12637 12748 Face 66174 30313 30312 30247 Face 66175 32961 33095 32960 Face 66176 31012 31011 30914 Face 66177 30573 30572 30487 Face 66178 30915 31012 30914 Face 66179 1244 1245 17905 Face 66180 30631 30630 30536 Face 66181 30537 30631 30536 Face 66182 30730 30729 30630 Face 66183 30631 30730 30630 Face 66184 30836 30835 30729 Face 66185 30730 30836 30729 Face 66186 30937 30936 30835 Face 66187 30836 30937 30835 Face 66188 31036 31035 30936 Face 66189 30937 31036 30936 Face 66190 31135 31134 31035 Face 66191 31036 31135 31035 Face 66192 31236 31235 31134 Face 66193 31135 31236 31134 Face 66194 31339 31338 31235 Face 66195 31236 31339 31235 Face 66196 31443 31442 31338 Face 66197 31339 31443 31338 Face 66198 31552 31551 31442 Face 66199 31443 31552 31442 Face 66200 31666 31665 31551 Face 66201 31552 31666 31551 Face 66202 31786 31785 31665 Face 66203 31666 31786 31665 Face 66204 31898 31897 31785 Face 66205 31786 31898 31785 Face 66206 32005 32004 31897 Face 66207 31898 32005 31897 Face 66208 32110 32109 32004 Face 66209 32005 32110 32004 Face 66210 32213 32212 32109 Face 66211 32110 32213 32109 Face 66212 17453 20488 20638 Face 66213 32212 32213 32319 Face 66214 16732 32318 32319 Face 66215 20448 33329 33193 Face 66216 31108 31107 31011 Face 66217 31012 31108 31011 Face 66218 31207 31206 31107 Face 66219 31108 31207 31107 Face 66220 32453 32570 32452 Face 66221 32453 32452 32340 Face 66222 32080 32184 32079 Face 66223 33331 33330 20448 Face 66224 2041 34072 2040 Face 66225 25576 25575 25491 Face 66226 33330 33463 33462 Face 66227 33329 33330 33462 Face 66228 33463 33590 33589 Face 66229 33462 33463 33589 Face 66230 33590 33715 33714 Face 66231 33589 33590 33714 Face 66232 33715 33841 33840 Face 66233 33714 33715 33840 Face 66234 33969 33968 33840 Face 66235 33841 33969 33840 Face 66236 34093 34092 33968 Face 66237 33969 34093 33968 Face 66238 34220 34219 34092 Face 66239 34093 34220 34092 Face 66240 12744 13666 34219 Face 66241 34220 12744 34219 Face 66242 26930 27043 13666 Face 66243 12744 26930 13666 Face 66244 10743 13184 27043 Face 66245 26930 10743 27043 Face 66246 33566 33554 13184 Face 66247 10743 33566 13184 Face 66248 32790 32789 33554 Face 66249 33566 32790 33554 Face 66250 34042 34035 32789 Face 66251 32790 34042 32789 Face 66252 31427 31426 34035 Face 66253 34042 31427 34035 Face 66254 31427 23510 10745 Face 66255 31426 31427 10745 Face 66256 13471 31222 10745 Face 66257 23510 13471 10745 Face 66258 32622 21075 31222 Face 66259 13471 32622 31222 Face 66260 32622 33822 32431 Face 66261 21075 32622 32431 Face 66262 33822 33928 34250 Face 66263 32431 33822 34250 Face 66264 33928 32649 34193 Face 66265 34250 33928 34193 Face 66266 32649 33914 33913 Face 66267 34193 32649 33913 Face 66268 33914 34170 34036 Face 66269 33913 33914 34036 Face 66270 34170 33549 32413 Face 66271 34036 34170 32413 Face 66272 33549 33795 33428 Face 66273 32413 33549 33428 Face 66274 33795 27020 32418 Face 66275 33428 33795 32418 Face 66276 27020 11459 34065 Face 66277 32418 27020 34065 Face 66278 11459 33799 34179 Face 66279 34065 11459 34179 Face 66280 3593 33418 3594 Face 66281 34179 33799 12829 Face 66282 30424 30495 30423 Face 66283 6689 6688 6623 Face 66284 33627 33752 33626 Face 66285 33540 6681 6680 Face 66286 30683 30682 30588 Face 66287 30589 30683 30588 Face 66288 31295 31398 31397 Face 66289 31638 31637 31524 Face 66290 16734 16733 32319 Face 66291 31703 31815 31702 Face 66292 30179 30243 30178 Face 66293 32233 32232 32128 Face 66294 30766 30872 30765 Face 66295 31814 31921 31813 Face 66296 30313 30380 30312 Face 66297 30451 30450 30383 Face 66298 31309 31308 31206 Face 66299 31207 31309 31206 Face 66300 31413 31412 31308 Face 66301 31309 31413 31308 Face 66302 31519 31518 31412 Face 66303 31413 31519 31412 Face 66304 30380 30447 30379 Face 66305 30380 30379 30312 Face 66306 31632 31631 31518 Face 66307 30518 30517 30446 Face 66308 31519 31632 31518 Face 66309 31753 31752 31631 Face 66310 31632 31753 31631 Face 66311 30453 30538 30537 Face 66312 1244 17905 17813 Face 66313 30632 30631 30537 Face 66314 30538 30632 30537 Face 66315 30731 30730 30631 Face 66316 30632 30731 30631 Face 66317 30837 30836 30730 Face 66318 30731 30837 30730 Face 66319 30938 30937 30836 Face 66320 30837 30938 30836 Face 66321 31037 31036 30937 Face 66322 30938 31037 30937 Face 66323 31136 31135 31036 Face 66324 31037 31136 31036 Face 66325 31237 31236 31135 Face 66326 31136 31237 31135 Face 66327 31340 31339 31236 Face 66328 31237 31340 31236 Face 66329 31444 31443 31339 Face 66330 31340 31444 31339 Face 66331 31553 31552 31443 Face 66332 31444 31553 31443 Face 66333 31667 31666 31552 Face 66334 31553 31667 31552 Face 66335 31787 31786 31666 Face 66336 31667 31787 31666 Face 66337 31899 31898 31786 Face 66338 31787 31899 31786 Face 66339 32006 32005 31898 Face 66340 31899 32006 31898 Face 66341 32111 32110 32005 Face 66342 32006 32111 32005 Face 66343 32214 32213 32110 Face 66344 32111 32214 32110 Face 66345 20638 19841 17453 Face 66346 32214 32320 32213 Face 66347 16760 33465 18829 Face 66348 16733 16800 16732 Face 66349 6664 34154 34029 Face 66350 18653 13828 29725 Face 66351 31865 31864 31752 Face 66352 31753 31865 31752 Face 66353 31972 31971 31864 Face 66354 31865 31972 31864 Face 66355 32077 32076 31971 Face 66356 30283 30350 30282 Face 66357 30417 30416 30349 Face 66358 8992 2624 1977 Face 66359 16842 16841 34128 Face 66360 33331 33464 33463 Face 66361 33330 33331 33463 Face 66362 33464 33591 33590 Face 66363 33463 33464 33590 Face 66364 33591 33716 33715 Face 66365 33590 33591 33715 Face 66366 33842 33841 33715 Face 66367 33716 33842 33715 Face 66368 33970 33969 33841 Face 66369 33842 33970 33841 Face 66370 34094 34093 33969 Face 66371 33970 34094 33969 Face 66372 34221 34220 34093 Face 66373 34094 34221 34093 Face 66374 13770 12744 34220 Face 66375 34221 13770 34220 Face 66376 27885 26930 12744 Face 66377 13770 27885 12744 Face 66378 29780 10743 26930 Face 66379 27885 29780 26930 Face 66380 33674 33566 10743 Face 66381 29780 33674 10743 Face 66382 32792 32790 33566 Face 66383 33674 32792 33566 Face 66384 34048 34042 32790 Face 66385 32792 34048 32790 Face 66386 31886 31427 34042 Face 66387 34048 31886 34042 Face 66388 2940 23510 31427 Face 66389 31886 2940 31427 Face 66390 33927 13471 23510 Face 66391 2940 33927 23510 Face 66392 33802 32622 13471 Face 66393 33927 33802 13471 Face 66394 32626 33822 32622 Face 66395 33802 32626 32622 Face 66396 32626 33297 33928 Face 66397 33822 32626 33928 Face 66398 33297 33925 32649 Face 66399 33928 33297 32649 Face 66400 33925 33918 33914 Face 66401 32649 33925 33914 Face 66402 33918 28276 34170 Face 66403 33914 33918 34170 Face 66404 28276 27743 33549 Face 66405 34170 28276 33549 Face 66406 27743 33434 33795 Face 66407 33549 27743 33795 Face 66408 33434 33311 27020 Face 66409 33795 33434 27020 Face 66410 33311 33302 11459 Face 66411 27020 33311 11459 Face 66412 34119 34242 34118 Face 66413 11459 33302 33799 Face 66414 33237 33236 33101 Face 66415 6272 4322 6265 Face 66416 32365 32364 32258 Face 66417 30490 30489 30418 Face 66418 30985 30984 30883 Face 66419 31084 31083 30984 Face 66420 30683 30782 30781 Face 66421 30682 30683 30781 Face 66422 31294 31295 31397 Face 66423 30314 30381 30313 Face 66424 32713 32846 32712 Face 66425 33383 33382 33246 Face 66426 32727 32726 32599 Face 66427 29983 30044 29982 Face 66428 26073 12541 34253 Face 66429 30033 30095 30094 Face 66430 32475 32592 32474 Face 66431 30248 30247 30183 Face 66432 31972 32077 31971 Face 66433 32181 32180 32076 Face 66434 32077 32181 32076 Face 66435 32285 32284 32180 Face 66436 32181 32285 32180 Face 66437 32391 32390 32284 Face 66438 32285 32391 32284 Face 66439 29192 21802 29322 Face 66440 32391 32503 32390 Face 66441 30539 30538 30453 Face 66442 30454 30539 30453 Face 66443 30633 30632 30538 Face 66444 30539 30633 30538 Face 66445 30732 30731 30632 Face 66446 30633 30732 30632 Face 66447 30838 30837 30731 Face 66448 30732 30838 30731 Face 66449 30939 30938 30837 Face 66450 30838 30939 30837 Face 66451 31038 31037 30938 Face 66452 30939 31038 30938 Face 66453 31137 31136 31037 Face 66454 31038 31137 31037 Face 66455 31238 31237 31136 Face 66456 31137 31238 31136 Face 66457 31341 31340 31237 Face 66458 31238 31341 31237 Face 66459 31445 31444 31340 Face 66460 31341 31445 31340 Face 66461 31554 31553 31444 Face 66462 31445 31554 31444 Face 66463 31668 31667 31553 Face 66464 31554 31668 31553 Face 66465 31788 31787 31667 Face 66466 31668 31788 31667 Face 66467 31900 31899 31787 Face 66468 31788 31900 31787 Face 66469 32007 32006 31899 Face 66470 31900 32007 31899 Face 66471 32112 32111 32006 Face 66472 32007 32112 32006 Face 66473 32215 32214 32111 Face 66474 32112 32215 32111 Face 66475 32321 32320 32214 Face 66476 32215 32321 32214 Face 66477 32425 18432 33287 Face 66478 32432 16679 32321 Face 66479 1382 14656 26475 Face 66480 1382 26474 25562 Face 66481 32171 32275 32170 Face 66482 34134 34257 34133 Face 66483 33843 33842 33716 Face 66484 33971 33970 33842 Face 66485 33843 33971 33842 Face 66486 34095 34094 33970 Face 66487 33971 34095 33970 Face 66488 13841 13828 13842 Face 66489 13842 18653 13256 Face 66490 33867 33994 33866 Face 66491 25315 24525 23110 Face 66492 13183 27885 13770 Face 66493 19091 23110 22510 Face 66494 29797 29780 27885 Face 66495 13183 29797 27885 Face 66496 33691 33674 29780 Face 66497 29797 33691 29780 Face 66498 32794 32792 33674 Face 66499 33691 32794 33674 Face 66500 34050 34048 32792 Face 66501 32794 34050 32792 Face 66502 32100 31886 34048 Face 66503 34050 32100 34048 Face 66504 26328 2940 31886 Face 66505 32100 26328 31886 Face 66506 33548 33927 2940 Face 66507 26328 33548 2940 Face 66508 33797 33802 33927 Face 66509 33548 33797 33927 Face 66510 17176 32626 33802 Face 66511 33797 17176 33802 Face 66512 17176 23511 33297 Face 66513 32626 17176 33297 Face 66514 23511 34182 33925 Face 66515 33297 23511 33925 Face 66516 34182 33176 33918 Face 66517 33925 34182 33918 Face 66518 33176 33555 28276 Face 66519 33918 33176 28276 Face 66520 33555 32889 27743 Face 66521 28276 33555 27743 Face 66522 32889 32791 33434 Face 66523 27743 32889 33434 Face 66524 32791 33435 33311 Face 66525 33434 32791 33311 Face 66526 18784 18677 18785 Face 66527 33311 33435 33302 Face 66528 31277 31276 31175 Face 66529 33937 861 8936 Face 66530 33102 33101 32967 Face 66531 33102 33237 33101 Face 66532 30604 30603 30518 Face 66533 31171 31170 31071 Face 66534 30679 30778 30678 Face 66535 30884 30985 30883 Face 66536 30782 30888 30887 Face 66537 30781 30782 30887 Face 66538 30887 30888 30988 Face 66539 30888 30989 30988 Face 66540 30988 30989 31087 Face 66541 30989 31088 31087 Face 66542 34672 11014 34454 Face 66543 30044 30043 29982 Face 66544 31592 31706 31591 Face 66545 34130 34131 34253 Face 66546 32465 32582 32464 Face 66547 31086 31085 30986 Face 66548 765 881 764 Face 66549 30294 30293 30228 Face 66550 31962 31961 31854 Face 66551 30420 30491 30419 Face 66552 14143 18413 17535 Face 66553 25781 25672 33015 Face 66554 20745 19803 21197 Face 66555 26927 24194 29855 Face 66556 24194 26927 23553 Face 66557 16695 16696 16759 Face 66558 19257 30121 30185 Face 66559 5332 3321 14150 Face 66560 33197 33333 16681 Face 66561 7026 33930 12349 Face 66562 30384 30455 30454 Face 66563 30540 30539 30454 Face 66564 30455 30540 30454 Face 66565 30634 30633 30539 Face 66566 30540 30634 30539 Face 66567 30733 30732 30633 Face 66568 30634 30733 30633 Face 66569 30839 30838 30732 Face 66570 30733 30839 30732 Face 66571 30940 30939 30838 Face 66572 30839 30940 30838 Face 66573 31039 31038 30939 Face 66574 30940 31039 30939 Face 66575 31138 31137 31038 Face 66576 31039 31138 31038 Face 66577 31239 31238 31137 Face 66578 31138 31239 31137 Face 66579 31342 31341 31238 Face 66580 31239 31342 31238 Face 66581 31446 31445 31341 Face 66582 31342 31446 31341 Face 66583 31555 31554 31445 Face 66584 31446 31555 31445 Face 66585 31669 31668 31554 Face 66586 31555 31669 31554 Face 66587 31789 31788 31668 Face 66588 31669 31789 31668 Face 66589 31901 31900 31788 Face 66590 31789 31901 31788 Face 66591 32008 32007 31900 Face 66592 31901 32008 31900 Face 66593 32113 32112 32007 Face 66594 32008 32113 32007 Face 66595 32216 32215 32112 Face 66596 32113 32216 32112 Face 66597 32322 32321 32215 Face 66598 32216 32322 32215 Face 66599 32433 32432 32321 Face 66600 32322 32433 32321 Face 66601 32433 32548 32547 Face 66602 32432 32433 32547 Face 66603 16748 34099 16749 Face 66604 32548 32669 32547 Face 66605 32669 32796 32795 Face 66606 32796 32928 32927 Face 66607 32795 32796 32927 Face 66608 26012 32927 32928 Face 66609 13393 7694 12909 Face 66610 34242 6643 34117 Face 66611 16739 16680 33197 Face 66612 7336 1113 1112 Face 66613 6506 17824 16762 Face 66614 33284 17555 33422 Face 66615 33333 16740 16681 Face 66616 17824 6506 4856 Face 66617 18058 17483 17496 Face 66618 32082 32186 32081 Face 66619 33085 33220 33084 Face 66620 32259 32258 32154 Face 66621 33409 33410 6618 Face 66622 32547 25901 16736 Face 66623 15867 12553 21457 Face 66624 17410 21457 12553 Face 66625 12711 12531 33290 Face 66626 29783 29797 13183 Face 66627 21457 17953 17482 Face 66628 33800 33691 29797 Face 66629 29783 33800 29797 Face 66630 32878 32794 33691 Face 66631 33800 32878 33691 Face 66632 34054 34050 32794 Face 66633 32878 34054 32794 Face 66634 32198 32100 34050 Face 66635 34054 32198 34050 Face 66636 34243 26328 32100 Face 66637 32198 34243 32100 Face 66638 32663 33548 26328 Face 66639 34243 32663 26328 Face 66640 32517 33797 33548 Face 66641 32663 32517 33548 Face 66642 32621 17176 33797 Face 66643 32517 32621 33797 Face 66644 32621 27880 23511 Face 66645 17176 32621 23511 Face 66646 27880 33412 34182 Face 66647 23511 27880 34182 Face 66648 33412 34174 33176 Face 66649 34182 33412 33176 Face 66650 34174 32409 33555 Face 66651 33176 34174 33555 Face 66652 32409 2275 32889 Face 66653 33555 32409 32889 Face 66654 2275 33037 32791 Face 66655 32889 2275 32791 Face 66656 33037 12558 33435 Face 66657 32791 33037 33435 Face 66658 12558 3077 33435 Face 66659 27729 27602 27730 Face 66660 31176 31277 31175 Face 66661 31932 32037 31931 Face 66662 32968 32967 32835 Face 66663 32968 33102 32967 Face 66664 29992 29991 29933 Face 66665 30177 30176 30114 Face 66666 30884 30883 30777 Face 66667 30778 30884 30777 Face 66668 30585 30679 30584 Face 66669 30778 30777 30678 Face 66670 30500 30585 30499 Face 66671 30679 30678 30584 Face 66672 31088 31187 31186 Face 66673 31087 31088 31186 Face 66674 26474 1382 26475 Face 66675 32860 32859 32726 Face 66676 31706 31705 31591 Face 66677 31818 31817 31705 Face 66678 32594 32721 32593 Face 66679 32340 32452 32339 Face 66680 33370 33369 33233 Face 66681 32736 32735 32608 Face 66682 29879 29937 29936 Face 66683 29937 29998 29997 Face 66684 29936 29937 29997 Face 66685 29998 30060 30059 Face 66686 29997 29998 30059 Face 66687 30060 30122 30121 Face 66688 30059 30060 30121 Face 66689 30122 30186 30185 Face 66690 30121 30122 30185 Face 66691 30186 30251 30250 Face 66692 30185 30186 30250 Face 66693 30251 30318 30317 Face 66694 30250 30251 30317 Face 66695 30318 30385 30384 Face 66696 30317 30318 30384 Face 66697 30456 30455 30384 Face 66698 30385 30456 30384 Face 66699 30541 30540 30455 Face 66700 30456 30541 30455 Face 66701 30635 30634 30540 Face 66702 30541 30635 30540 Face 66703 30734 30733 30634 Face 66704 30635 30734 30634 Face 66705 30840 30839 30733 Face 66706 30734 30840 30733 Face 66707 30941 30940 30839 Face 66708 30840 30941 30839 Face 66709 31040 31039 30940 Face 66710 30941 31040 30940 Face 66711 31139 31138 31039 Face 66712 31040 31139 31039 Face 66713 31240 31239 31138 Face 66714 31139 31240 31138 Face 66715 31343 31342 31239 Face 66716 31240 31343 31239 Face 66717 31447 31446 31342 Face 66718 31343 31447 31342 Face 66719 31556 31555 31446 Face 66720 31447 31556 31446 Face 66721 31670 31669 31555 Face 66722 31556 31670 31555 Face 66723 31790 31789 31669 Face 66724 31670 31790 31669 Face 66725 31902 31901 31789 Face 66726 31790 31902 31789 Face 66727 32009 32008 31901 Face 66728 31902 32009 31901 Face 66729 32114 32113 32008 Face 66730 32009 32114 32008 Face 66731 32217 32216 32113 Face 66732 32114 32217 32113 Face 66733 32323 32322 32216 Face 66734 32217 32323 32216 Face 66735 32434 32433 32322 Face 66736 32323 32434 32322 Face 66737 32434 32549 32548 Face 66738 32433 32434 32548 Face 66739 32549 32670 32669 Face 66740 32548 32549 32669 Face 66741 32670 32797 32796 Face 66742 32669 32670 32796 Face 66743 32797 32929 32928 Face 66744 32796 32797 32928 Face 66745 34318 13393 34552 Face 66746 13393 34318 9631 Face 66747 33063 33198 33197 Face 66748 13393 12909 34552 Face 66749 33198 33334 33333 Face 66750 33197 33198 33333 Face 66751 33334 33467 33466 Face 66752 33333 33334 33466 Face 66753 33467 33594 33593 Face 66754 33466 33467 33593 Face 66755 26013 27761 28019 Face 66756 33594 33719 16684 Face 66757 33593 33594 16683 Face 66758 13291 33147 14201 Face 66759 32051 32050 31945 Face 66760 31855 31854 31742 Face 66761 32854 32986 32853 Face 66762 30353 30420 30352 Face 66763 32067 32171 32066 Face 66764 32141 32245 32140 Face 66765 33816 2663 18364 Face 66766 31882 31881 31769 Face 66767 17953 21457 17410 Face 66768 3077 12558 3078 Face 66769 33816 33800 29783 Face 66770 2663 33816 29783 Face 66771 32888 32878 33800 Face 66772 33816 32888 33800 Face 66773 34056 34054 32878 Face 66774 32888 34056 32878 Face 66775 32423 32198 34054 Face 66776 34056 32423 34054 Face 66777 24753 34243 32198 Face 66778 32423 24753 32198 Face 66779 18967 32663 34243 Face 66780 24753 18967 34243 Face 66781 11764 32517 32663 Face 66782 18967 11764 32663 Face 66783 11764 34061 32621 Face 66784 32517 11764 32621 Face 66785 34061 33592 27880 Face 66786 32621 34061 27880 Face 66787 33592 33677 33412 Face 66788 27880 33592 33412 Face 66789 33677 32770 34174 Face 66790 33412 33677 34174 Face 66791 32770 32536 32409 Face 66792 34174 32770 32409 Face 66793 32536 32648 2275 Face 66794 32409 32536 2275 Face 66795 32648 34247 33037 Face 66796 2275 32648 33037 Face 66797 34247 32645 12558 Face 66798 33037 34247 12558 Face 66799 12646 5895 11142 Face 66800 16803 16735 16736 Face 66801 31380 31379 31276 Face 66802 31277 31380 31276 Face 66803 32836 32835 32702 Face 66804 32836 32968 32835 Face 66805 31981 31980 31873 Face 66806 31844 31843 31731 Face 66807 33238 33237 33102 Face 66808 30440 30511 30439 Face 66809 30429 30500 30428 Face 66810 30875 30874 30768 Face 66811 31287 31288 31390 Face 66812 30585 30584 30499 Face 66813 32577 32576 32459 Face 66814 31187 31288 31287 Face 66815 32709 32842 32708 Face 66816 30920 31017 30919 Face 66817 31086 31185 31085 Face 66818 29929 29987 29928 Face 66819 30687 30688 30786 Face 66820 31949 31950 32054 Face 66821 33755 33754 33629 Face 66822 31395 31396 31499 Face 66823 29826 29880 29879 Face 66824 29938 29937 29879 Face 66825 29880 29938 29879 Face 66826 29938 29999 29998 Face 66827 29937 29938 29998 Face 66828 30061 30060 29998 Face 66829 29999 30061 29998 Face 66830 30123 30122 30060 Face 66831 30061 30123 30060 Face 66832 30187 30186 30122 Face 66833 30123 30187 30122 Face 66834 30252 30251 30186 Face 66835 30187 30252 30186 Face 66836 30319 30318 30251 Face 66837 30252 30319 30251 Face 66838 30386 30385 30318 Face 66839 30319 30386 30318 Face 66840 30457 30456 30385 Face 66841 30386 30457 30385 Face 66842 30542 30541 30456 Face 66843 30457 30542 30456 Face 66844 30636 30635 30541 Face 66845 30542 30636 30541 Face 66846 30735 30734 30635 Face 66847 30636 30735 30635 Face 66848 30841 30840 30734 Face 66849 30735 30841 30734 Face 66850 30942 30941 30840 Face 66851 30841 30942 30840 Face 66852 31041 31040 30941 Face 66853 30942 31041 30941 Face 66854 31140 31139 31040 Face 66855 31041 31140 31040 Face 66856 31241 31240 31139 Face 66857 31140 31241 31139 Face 66858 31344 31343 31240 Face 66859 31241 31344 31240 Face 66860 31448 31447 31343 Face 66861 31344 31448 31343 Face 66862 31557 31556 31447 Face 66863 31448 31557 31447 Face 66864 31671 31670 31556 Face 66865 31557 31671 31556 Face 66866 31791 31790 31670 Face 66867 31671 31791 31670 Face 66868 31903 31902 31790 Face 66869 31791 31903 31790 Face 66870 32010 32009 31902 Face 66871 31903 32010 31902 Face 66872 32115 32114 32009 Face 66873 32010 32115 32009 Face 66874 32218 32217 32114 Face 66875 32115 32218 32114 Face 66876 32324 32323 32217 Face 66877 32218 32324 32217 Face 66878 32435 32434 32323 Face 66879 32324 32435 32323 Face 66880 32550 32549 32434 Face 66881 32435 32550 32434 Face 66882 32550 32671 32670 Face 66883 32549 32550 32670 Face 66884 32798 32797 32670 Face 66885 32671 32798 32670 Face 66886 32930 32929 32797 Face 66887 32798 32930 32797 Face 66888 33064 33063 32929 Face 66889 32930 33064 32929 Face 66890 33199 33198 33063 Face 66891 33064 33199 33063 Face 66892 33335 33334 33198 Face 66893 33199 33335 33198 Face 66894 33468 33467 33334 Face 66895 33335 33468 33334 Face 66896 33468 33595 33594 Face 66897 33467 33468 33594 Face 66898 33595 33720 33719 Face 66899 33594 33595 33719 Face 66900 33720 33846 33845 Face 66901 33719 33720 33845 Face 66902 10311 18143 18035 Face 66903 34613 34787 34635 Face 66904 32986 32985 32853 Face 66905 6649 21455 21647 Face 66906 31093 31192 31191 Face 66907 30780 30886 30779 Face 66908 31293 31396 31395 Face 66909 31588 31702 31587 Face 66910 16805 25901 16806 Face 66911 33880 33879 33753 Face 66912 28825 34472 34175 Face 66913 25901 16805 16736 Face 66914 32891 2038 34063 Face 66915 32656 32782 27602 Face 66916 34059 34056 32888 Face 66917 32891 34059 32888 Face 66918 32424 32423 34056 Face 66919 34059 32424 34056 Face 66920 30826 24753 32423 Face 66921 32424 30826 32423 Face 66922 32206 18967 24753 Face 66923 30826 32206 24753 Face 66924 13459 11764 18967 Face 66925 32206 13459 18967 Face 66926 13459 16737 34061 Face 66927 11764 13459 34061 Face 66928 16737 33416 33592 Face 66929 34061 16737 33592 Face 66930 33416 33686 33677 Face 66931 33592 33416 33677 Face 66932 33686 33279 32770 Face 66933 33677 33686 32770 Face 66934 33279 33033 32536 Face 66935 32770 33279 32536 Face 66936 33033 32531 32648 Face 66937 32536 33033 32648 Face 66938 32531 34073 34247 Face 66939 32648 32531 34247 Face 66940 34073 13560 32645 Face 66941 34247 34073 32645 Face 66942 11041 32885 19435 Face 66943 21641 9288 21737 Face 66944 31484 31483 31379 Face 66945 31380 31484 31379 Face 66946 32459 32576 32458 Face 66947 32703 32836 32702 Face 66948 30040 30039 29978 Face 66949 32703 32702 32575 Face 66950 30429 30428 30361 Face 66951 34003 34129 34128 Face 66952 30295 30362 30294 Face 66953 30362 30429 30361 Face 66954 31186 31187 31287 Face 66955 31391 31495 31494 Face 66956 32348 32460 32347 Face 66957 29922 29921 29867 Face 66958 31869 31868 31756 Face 66959 31194 31193 31094 Face 66960 32583 32582 32465 Face 66961 32709 32708 32581 Face 66962 31292 31293 31395 Face 66963 30113 30175 30174 Face 66964 31396 31500 31499 Face 66965 29881 29880 29826 Face 66966 29827 29881 29826 Face 66967 29939 29938 29880 Face 66968 29881 29939 29880 Face 66969 30000 29999 29938 Face 66970 29939 30000 29938 Face 66971 30062 30061 29999 Face 66972 30000 30062 29999 Face 66973 30124 30123 30061 Face 66974 30062 30124 30061 Face 66975 30188 30187 30123 Face 66976 30124 30188 30123 Face 66977 30253 30252 30187 Face 66978 30188 30253 30187 Face 66979 30320 30319 30252 Face 66980 30253 30320 30252 Face 66981 30387 30386 30319 Face 66982 30320 30387 30319 Face 66983 30458 30457 30386 Face 66984 30387 30458 30386 Face 66985 30543 30542 30457 Face 66986 30458 30543 30457 Face 66987 30637 30636 30542 Face 66988 30543 30637 30542 Face 66989 30736 30735 30636 Face 66990 30637 30736 30636 Face 66991 30842 30841 30735 Face 66992 30736 30842 30735 Face 66993 30943 30942 30841 Face 66994 30842 30943 30841 Face 66995 31042 31041 30942 Face 66996 30943 31042 30942 Face 66997 31141 31140 31041 Face 66998 31042 31141 31041 Face 66999 31242 31241 31140 Face 67000 31141 31242 31140 Face 67001 31345 31344 31241 Face 67002 31242 31345 31241 Face 67003 31449 31448 31344 Face 67004 31345 31449 31344 Face 67005 31558 31557 31448 Face 67006 31449 31558 31448 Face 67007 31672 31671 31557 Face 67008 31558 31672 31557 Face 67009 31792 31791 31671 Face 67010 31672 31792 31671 Face 67011 31904 31903 31791 Face 67012 31792 31904 31791 Face 67013 32011 32010 31903 Face 67014 31904 32011 31903 Face 67015 32116 32115 32010 Face 67016 32011 32116 32010 Face 67017 32219 32218 32115 Face 67018 32116 32219 32115 Face 67019 32325 32324 32218 Face 67020 32219 32325 32218 Face 67021 32436 32435 32324 Face 67022 32325 32436 32324 Face 67023 32551 32550 32435 Face 67024 32436 32551 32435 Face 67025 32672 32671 32550 Face 67026 32551 32672 32550 Face 67027 32799 32798 32671 Face 67028 32672 32799 32671 Face 67029 32931 32930 32798 Face 67030 32799 32931 32798 Face 67031 33065 33064 32930 Face 67032 32931 33065 32930 Face 67033 33200 33199 33064 Face 67034 33065 33200 33064 Face 67035 33336 33335 33199 Face 67036 33200 33336 33199 Face 67037 33469 33468 33335 Face 67038 33336 33469 33335 Face 67039 33596 33595 33468 Face 67040 33469 33596 33468 Face 67041 33596 33721 33720 Face 67042 33595 33596 33720 Face 67043 33721 33847 33846 Face 67044 33720 33721 33846 Face 67045 34511 34480 34623 Face 67046 25904 26016 11428 Face 67047 766 32511 767 Face 67048 25904 11428 11347 Face 67049 32144 32143 32039 Face 67050 31992 6289 10223 Face 67051 31216 31318 31215 Face 67052 32247 32353 32246 Face 67053 30112 30113 30174 Face 67054 30171 30235 30234 Face 67055 30349 30348 30281 Face 67056 32037 32141 32036 Face 67057 10430 6264 6265 Face 67058 30282 30349 30281 Face 67059 34063 34059 32891 Face 67060 16734 16679 16735 Face 67061 32516 32424 34059 Face 67062 34063 32516 34059 Face 67063 27890 30826 32424 Face 67064 32516 27890 32424 Face 67065 32202 32206 30826 Face 67066 27890 32202 30826 Face 67067 32202 34171 13459 Face 67068 32206 32202 13459 Face 67069 13753 16737 13459 Face 67070 34171 13753 13459 Face 67071 13753 11446 33416 Face 67072 16737 13753 33416 Face 67073 11446 33424 33686 Face 67074 33416 11446 33686 Face 67075 33424 32625 33279 Face 67076 33686 33424 33279 Face 67077 32625 33062 33033 Face 67078 33279 32625 33033 Face 67079 33062 27483 32531 Face 67080 33033 33062 32531 Face 67081 27483 34062 34073 Face 67082 32531 27483 34073 Face 67083 2425 24914 23426 Face 67084 34073 34062 13560 Face 67085 30919 30918 30820 Face 67086 19117 33028 19226 Face 67087 32459 32458 32346 Face 67088 31593 31592 31483 Face 67089 30102 30164 30163 Face 67090 32347 32459 32346 Face 67091 30295 30294 30229 Face 67092 29979 30040 29978 Face 67093 31718 31830 31717 Face 67094 30230 30295 30229 Face 67095 31937 31936 31829 Face 67096 31830 31937 31829 Face 67097 33103 33238 33102 Face 67098 31288 31391 31390 Face 67099 31815 31922 31814 Face 67100 33507 33506 33373 Face 67101 31375 31479 31374 Face 67102 31179 31280 31178 Face 67103 32466 32583 32465 Face 67104 31495 31496 31604 Face 67105 31622 31743 31742 Face 67106 31596 31595 31486 Face 67107 29882 29881 29827 Face 67108 29828 29882 29827 Face 67109 29940 29939 29881 Face 67110 29882 29940 29881 Face 67111 30001 30000 29939 Face 67112 29940 30001 29939 Face 67113 30063 30062 30000 Face 67114 30001 30063 30000 Face 67115 30125 30124 30062 Face 67116 30063 30125 30062 Face 67117 30189 30188 30124 Face 67118 30125 30189 30124 Face 67119 30254 30253 30188 Face 67120 30189 30254 30188 Face 67121 30321 30320 30253 Face 67122 30254 30321 30253 Face 67123 30388 30387 30320 Face 67124 30321 30388 30320 Face 67125 30459 30458 30387 Face 67126 30388 30459 30387 Face 67127 30544 30543 30458 Face 67128 30459 30544 30458 Face 67129 30638 30637 30543 Face 67130 30544 30638 30543 Face 67131 30737 30736 30637 Face 67132 30638 30737 30637 Face 67133 30843 30842 30736 Face 67134 30737 30843 30736 Face 67135 30944 30943 30842 Face 67136 30843 30944 30842 Face 67137 31043 31042 30943 Face 67138 30944 31043 30943 Face 67139 31142 31141 31042 Face 67140 31043 31142 31042 Face 67141 31243 31242 31141 Face 67142 31142 31243 31141 Face 67143 31346 31345 31242 Face 67144 31243 31346 31242 Face 67145 31450 31449 31345 Face 67146 31346 31450 31345 Face 67147 31559 31558 31449 Face 67148 31450 31559 31449 Face 67149 31673 31672 31558 Face 67150 31559 31673 31558 Face 67151 31793 31792 31672 Face 67152 31673 31793 31672 Face 67153 31905 31904 31792 Face 67154 31793 31905 31792 Face 67155 32012 32011 31904 Face 67156 31905 32012 31904 Face 67157 32117 32116 32011 Face 67158 32012 32117 32011 Face 67159 32220 32219 32116 Face 67160 32117 32220 32116 Face 67161 32326 32325 32219 Face 67162 32220 32326 32219 Face 67163 32437 32436 32325 Face 67164 32326 32437 32325 Face 67165 32552 32551 32436 Face 67166 32437 32552 32436 Face 67167 32673 32672 32551 Face 67168 32552 32673 32551 Face 67169 32800 32799 32672 Face 67170 32673 32800 32672 Face 67171 32932 32931 32799 Face 67172 32800 32932 32799 Face 67173 33066 33065 32931 Face 67174 32932 33066 32931 Face 67175 33201 33200 33065 Face 67176 33066 33201 33065 Face 67177 33337 33336 33200 Face 67178 33201 33337 33200 Face 67179 33470 33469 33336 Face 67180 33337 33470 33336 Face 67181 33597 33596 33469 Face 67182 33470 33597 33469 Face 67183 33722 33721 33596 Face 67184 33597 33722 33596 Face 67185 33722 33848 33847 Face 67186 33721 33722 33847 Face 67187 33848 33975 33974 Face 67188 33847 33848 33974 Face 67189 33975 34100 34099 Face 67190 33974 33975 34099 Face 67191 108 33784 109 Face 67192 34257 13478 12637 Face 67193 12636 27609 18874 Face 67194 16876 16787 16788 Face 67195 31509 31622 31621 Face 67196 31388 31492 31387 Face 67197 31621 31622 31742 Face 67198 8767 170 8548 Face 67199 30217 30282 30216 Face 67200 30895 30996 30894 Face 67201 34072 34066 2040 Face 67202 13560 34062 2944 Face 67203 32538 32516 34063 Face 67204 34066 32538 34063 Face 67205 12352 27890 32516 Face 67206 32538 12352 32516 Face 67207 5382 32202 27890 Face 67208 12352 5382 27890 Face 67209 32749 34171 32202 Face 67210 5382 32749 32202 Face 67211 32749 34184 13753 Face 67212 34171 32749 13753 Face 67213 34184 33563 11446 Face 67214 13753 34184 11446 Face 67215 33563 33144 33424 Face 67216 11446 33563 33424 Face 67217 33144 33427 32625 Face 67218 33424 33144 32625 Face 67219 33427 12999 33062 Face 67220 32625 33427 33062 Face 67221 12999 33296 27483 Face 67222 33062 12999 27483 Face 67223 33296 33155 34062 Face 67224 27483 33296 34062 Face 67225 182 11495 32903 Face 67226 34134 34133 34007 Face 67227 31707 31819 31706 Face 67228 31819 31926 31818 Face 67229 32137 32241 32136 Face 67230 32576 32575 32458 Face 67231 30040 30102 30101 Face 67232 30101 30102 30163 Face 67233 30103 30104 30165 Face 67234 30362 30361 30294 Face 67235 31604 31718 31603 Face 67236 32042 32041 31936 Face 67237 33238 33374 33237 Face 67238 32456 32573 32455 Face 67239 31088 31089 31187 Face 67240 33374 33373 33237 Face 67241 32974 32973 32841 Face 67242 34026 34025 33899 Face 67243 30880 30879 30773 Face 67244 32582 32709 32581 Face 67245 32609 32736 32608 Face 67246 32353 32352 32246 Face 67247 30806 30904 30805 Face 67248 29819 29829 29828 Face 67249 29883 29882 29828 Face 67250 29829 29883 29828 Face 67251 29941 29940 29882 Face 67252 29883 29941 29882 Face 67253 30002 30001 29940 Face 67254 29941 30002 29940 Face 67255 30064 30063 30001 Face 67256 30002 30064 30001 Face 67257 30126 30125 30063 Face 67258 30064 30126 30063 Face 67259 30190 30189 30125 Face 67260 30126 30190 30125 Face 67261 30255 30254 30189 Face 67262 30190 30255 30189 Face 67263 30322 30321 30254 Face 67264 30255 30322 30254 Face 67265 30389 30388 30321 Face 67266 30322 30389 30321 Face 67267 30460 30459 30388 Face 67268 30389 30460 30388 Face 67269 30545 30544 30459 Face 67270 30460 30545 30459 Face 67271 30639 30638 30544 Face 67272 30545 30639 30544 Face 67273 30738 30737 30638 Face 67274 30639 30738 30638 Face 67275 30844 30843 30737 Face 67276 30738 30844 30737 Face 67277 30945 30944 30843 Face 67278 30844 30945 30843 Face 67279 31044 31043 30944 Face 67280 30945 31044 30944 Face 67281 31143 31142 31043 Face 67282 31044 31143 31043 Face 67283 31244 31243 31142 Face 67284 31143 31244 31142 Face 67285 31347 31346 31243 Face 67286 31244 31347 31243 Face 67287 31451 31450 31346 Face 67288 31347 31451 31346 Face 67289 31560 31559 31450 Face 67290 31451 31560 31450 Face 67291 31674 31673 31559 Face 67292 31560 31674 31559 Face 67293 31794 31793 31673 Face 67294 31674 31794 31673 Face 67295 31906 31905 31793 Face 67296 31794 31906 31793 Face 67297 32013 32012 31905 Face 67298 31906 32013 31905 Face 67299 32118 32117 32012 Face 67300 32013 32118 32012 Face 67301 32221 32220 32117 Face 67302 32118 32221 32117 Face 67303 32327 32326 32220 Face 67304 32221 32327 32220 Face 67305 32438 32437 32326 Face 67306 32327 32438 32326 Face 67307 32553 32552 32437 Face 67308 32438 32553 32437 Face 67309 32674 32673 32552 Face 67310 32553 32674 32552 Face 67311 32801 32800 32673 Face 67312 32674 32801 32673 Face 67313 32933 32932 32800 Face 67314 32801 32933 32800 Face 67315 33067 33066 32932 Face 67316 32933 33067 32932 Face 67317 33202 33201 33066 Face 67318 33067 33202 33066 Face 67319 33338 33337 33201 Face 67320 33202 33338 33201 Face 67321 33471 33470 33337 Face 67322 33338 33471 33337 Face 67323 33598 33597 33470 Face 67324 33471 33598 33470 Face 67325 33723 33722 33597 Face 67326 33598 33723 33597 Face 67327 33849 33848 33722 Face 67328 33723 33849 33722 Face 67329 33976 33975 33848 Face 67330 33849 33976 33848 Face 67331 33976 34101 34100 Face 67332 33975 33976 34100 Face 67333 33799 3338 12829 Face 67334 34101 34225 34100 Face 67335 29864 29918 29863 Face 67336 20358 20446 20445 Face 67337 30675 30774 30674 Face 67338 33103 33102 32968 Face 67339 31001 31097 31000 Face 67340 32379 32380 32491 Face 67341 32263 32369 32368 Face 67342 32920 32919 20528 Face 67343 2041 34097 34072 Face 67344 16720 16869 18036 Face 67345 32540 32538 34066 Face 67346 34072 32540 34066 Face 67347 31770 12352 32538 Face 67348 32540 31770 32538 Face 67349 31428 5382 12352 Face 67350 31770 31428 12352 Face 67351 31884 32749 5382 Face 67352 31428 31884 5382 Face 67353 31884 15064 34184 Face 67354 32749 31884 34184 Face 67355 15064 28410 33563 Face 67356 34184 15064 33563 Face 67357 28410 21362 33144 Face 67358 33563 28410 33144 Face 67359 21362 33814 33427 Face 67360 33144 21362 33427 Face 67361 33814 31429 12999 Face 67362 33427 33814 12999 Face 67363 2553 16693 28692 Face 67364 12999 31429 33296 Face 67365 11031 11086 11030 Face 67366 7239 7240 7347 Face 67367 33232 33231 33096 Face 67368 7238 7345 7237 Face 67369 31593 31707 31592 Face 67370 31926 31925 31818 Face 67371 32347 32346 32240 Face 67372 32241 32347 32240 Face 67373 29979 29978 29920 Face 67374 30039 30040 30101 Face 67375 30166 30230 30229 Face 67376 30165 30166 30229 Face 67377 31495 31604 31494 Face 67378 31830 31829 31717 Face 67379 32700 32699 32572 Face 67380 32969 32968 32836 Face 67381 31389 31493 31388 Face 67382 31493 31602 31492 Face 67383 33924 12913 18966 Face 67384 29986 29985 29927 Face 67385 30707 30806 30706 Face 67386 30234 30235 30299 Face 67387 33027 19102 17859 Face 67388 31002 31098 31097 Face 67389 31001 31002 31097 Face 67390 32381 32380 32274 Face 67391 29830 29829 29819 Face 67392 29820 29830 29819 Face 67393 29884 29883 29829 Face 67394 29830 29884 29829 Face 67395 29942 29941 29883 Face 67396 29884 29942 29883 Face 67397 30003 30002 29941 Face 67398 29942 30003 29941 Face 67399 30065 30064 30002 Face 67400 30003 30065 30002 Face 67401 30127 30126 30064 Face 67402 30065 30127 30064 Face 67403 30191 30190 30126 Face 67404 30127 30191 30126 Face 67405 30256 30255 30190 Face 67406 30191 30256 30190 Face 67407 30323 30322 30255 Face 67408 30256 30323 30255 Face 67409 30390 30389 30322 Face 67410 30323 30390 30322 Face 67411 30461 30460 30389 Face 67412 30390 30461 30389 Face 67413 30546 30545 30460 Face 67414 30461 30546 30460 Face 67415 30640 30639 30545 Face 67416 30546 30640 30545 Face 67417 30739 30738 30639 Face 67418 30640 30739 30639 Face 67419 30845 30844 30738 Face 67420 30739 30845 30738 Face 67421 30946 30945 30844 Face 67422 30845 30946 30844 Face 67423 31045 31044 30945 Face 67424 30946 31045 30945 Face 67425 31144 31143 31044 Face 67426 31045 31144 31044 Face 67427 31245 31244 31143 Face 67428 31144 31245 31143 Face 67429 31348 31347 31244 Face 67430 31245 31348 31244 Face 67431 31452 31451 31347 Face 67432 31348 31452 31347 Face 67433 31561 31560 31451 Face 67434 31452 31561 31451 Face 67435 31675 31674 31560 Face 67436 31561 31675 31560 Face 67437 31795 31794 31674 Face 67438 31675 31795 31674 Face 67439 31907 31906 31794 Face 67440 31795 31907 31794 Face 67441 32014 32013 31906 Face 67442 31907 32014 31906 Face 67443 32119 32118 32013 Face 67444 32014 32119 32013 Face 67445 32222 32221 32118 Face 67446 32119 32222 32118 Face 67447 32328 32327 32221 Face 67448 32222 32328 32221 Face 67449 32439 32438 32327 Face 67450 32328 32439 32327 Face 67451 32554 32553 32438 Face 67452 32439 32554 32438 Face 67453 32675 32674 32553 Face 67454 32554 32675 32553 Face 67455 32802 32801 32674 Face 67456 32675 32802 32674 Face 67457 32934 32933 32801 Face 67458 32802 32934 32801 Face 67459 33068 33067 32933 Face 67460 32934 33068 32933 Face 67461 33203 33202 33067 Face 67462 33068 33203 33067 Face 67463 33339 33338 33202 Face 67464 33203 33339 33202 Face 67465 33472 33471 33338 Face 67466 33339 33472 33338 Face 67467 33599 33598 33471 Face 67468 33472 33599 33471 Face 67469 33724 33723 33598 Face 67470 33599 33724 33598 Face 67471 33850 33849 33723 Face 67472 33724 33850 33723 Face 67473 33977 33976 33849 Face 67474 33850 33977 33849 Face 67475 34102 34101 33976 Face 67476 33977 34102 33976 Face 67477 34102 34226 34225 Face 67478 34101 34102 34225 Face 67479 19102 33672 22678 Face 67480 34226 12747 34225 Face 67481 34024 34150 34023 Face 67482 2042 34097 2041 Face 67483 32275 32381 32274 Face 67484 31587 31586 31477 Face 67485 30905 31002 30904 Face 67486 30418 30417 30350 Face 67487 32542 34097 2042 Face 67488 16727 16726 31997 Face 67489 32542 32540 34072 Face 67490 34097 32542 34072 Face 67491 32302 31770 32540 Face 67492 32542 32302 32540 Face 67493 33305 31428 31770 Face 67494 32302 33305 31770 Face 67495 34187 31884 31428 Face 67496 33305 34187 31428 Face 67497 34187 34057 15064 Face 67498 31884 34187 15064 Face 67499 34057 26705 28410 Face 67500 15064 34057 28410 Face 67501 26705 34245 21362 Face 67502 28410 26705 21362 Face 67503 34245 33440 33814 Face 67504 21362 34245 33814 Face 67505 33440 6388 31429 Face 67506 33814 33440 31429 Face 67507 33296 31429 2813 Face 67508 27017 2947 2813 Face 67509 32898 18677 18784 Face 67510 6623 6690 6689 Face 67511 32455 32572 32454 Face 67512 19048 18418 18289 Face 67513 31484 31593 31483 Face 67514 31819 31818 31706 Face 67515 32241 32240 32136 Face 67516 32576 32703 32575 Face 67517 29921 29920 29866 Face 67518 29921 29979 29920 Face 67519 30104 30166 30165 Face 67520 30500 30499 30428 Face 67521 31390 31391 31494 Face 67522 31718 31717 31603 Face 67523 30603 30602 30517 Face 67524 33370 33503 33369 Face 67525 32582 32581 32464 Face 67526 30990 31089 31088 Face 67527 31374 31373 31270 Face 67528 31076 31175 31075 Face 67529 32067 32066 31961 Face 67530 32492 32609 32608 Face 67531 31769 31768 31647 Face 67532 19116 17081 17406 Face 67533 31881 31880 31768 Face 67534 31769 31881 31768 Face 67535 29831 29830 29820 Face 67536 29821 29831 29820 Face 67537 29885 29884 29830 Face 67538 29831 29885 29830 Face 67539 29943 29942 29884 Face 67540 29885 29943 29884 Face 67541 30004 30003 29942 Face 67542 29943 30004 29942 Face 67543 30066 30065 30003 Face 67544 30004 30066 30003 Face 67545 30128 30127 30065 Face 67546 30066 30128 30065 Face 67547 30192 30191 30127 Face 67548 30128 30192 30127 Face 67549 30257 30256 30191 Face 67550 30192 30257 30191 Face 67551 30324 30323 30256 Face 67552 30257 30324 30256 Face 67553 30391 30390 30323 Face 67554 30324 30391 30323 Face 67555 30462 30461 30390 Face 67556 30391 30462 30390 Face 67557 30547 30546 30461 Face 67558 30462 30547 30461 Face 67559 30641 30640 30546 Face 67560 30547 30641 30546 Face 67561 30740 30739 30640 Face 67562 30641 30740 30640 Face 67563 30846 30845 30739 Face 67564 30740 30846 30739 Face 67565 30947 30946 30845 Face 67566 30846 30947 30845 Face 67567 31046 31045 30946 Face 67568 30947 31046 30946 Face 67569 31145 31144 31045 Face 67570 31046 31145 31045 Face 67571 31246 31245 31144 Face 67572 31145 31246 31144 Face 67573 31349 31348 31245 Face 67574 31246 31349 31245 Face 67575 31453 31452 31348 Face 67576 31349 31453 31348 Face 67577 31562 31561 31452 Face 67578 31453 31562 31452 Face 67579 31676 31675 31561 Face 67580 31562 31676 31561 Face 67581 31796 31795 31675 Face 67582 31676 31796 31675 Face 67583 31796 31907 31795 Face 67584 32223 32222 32119 Face 67585 32223 32329 32328 Face 67586 32222 32223 32328 Face 67587 32440 32439 32328 Face 67588 32329 32440 32328 Face 67589 32555 32554 32439 Face 67590 32440 32555 32439 Face 67591 32676 32675 32554 Face 67592 32555 32676 32554 Face 67593 32803 32802 32675 Face 67594 32676 32803 32675 Face 67595 32935 32934 32802 Face 67596 32803 32935 32802 Face 67597 33069 33068 32934 Face 67598 32935 33069 32934 Face 67599 33204 33203 33068 Face 67600 33069 33204 33068 Face 67601 33340 33339 33203 Face 67602 33204 33340 33203 Face 67603 33473 33472 33339 Face 67604 33340 33473 33339 Face 67605 33600 33599 33472 Face 67606 33473 33600 33472 Face 67607 33725 33724 33599 Face 67608 33600 33725 33599 Face 67609 33851 33850 33724 Face 67610 33725 33851 33724 Face 67611 33978 33977 33850 Face 67612 33851 33978 33850 Face 67613 34103 34102 33977 Face 67614 33978 34103 33977 Face 67615 34103 34227 34226 Face 67616 34102 34103 34226 Face 67617 13750 12747 34226 Face 67618 34227 13750 34226 Face 67619 26790 21164 28411 Face 67620 18728 17727 17584 Face 67621 30572 30666 30571 Face 67622 31813 31920 31812 Face 67623 31988 31987 31880 Face 67624 31881 31988 31880 Face 67625 2950 2949 33032 Face 67626 30719 30718 30624 Face 67627 16846 26011 16847 Face 67628 2663 1914 18364 Face 67629 32417 2171 12120 Face 67630 27598 27599 27726 Face 67631 32771 33305 32302 Face 67632 32417 32771 32302 Face 67633 33811 34187 33305 Face 67634 32771 33811 33305 Face 67635 33811 33676 34057 Face 67636 34187 33811 34057 Face 67637 33676 32883 26705 Face 67638 34057 33676 26705 Face 67639 32883 27569 34245 Face 67640 26705 32883 34245 Face 67641 27569 33162 33440 Face 67642 34245 27569 33440 Face 67643 33162 27881 6388 Face 67644 33440 33162 6388 Face 67645 27881 33278 27017 Face 67646 6388 27881 27017 Face 67647 20524 20525 26422 Face 67648 2585 3570 13917 Face 67649 29913 29912 29858 Face 67650 28409 34034 18826 Face 67651 32137 32136 32032 Face 67652 31707 31706 31592 Face 67653 30228 30293 30227 Face 67654 32033 32137 32032 Face 67655 29981 30042 29980 Face 67656 29867 29921 29866 Face 67657 32250 32249 32145 Face 67658 30042 30104 30103 Face 67659 30167 30168 30231 Face 67660 31604 31603 31494 Face 67661 32399 32510 32509 Face 67662 32568 32567 32450 Face 67663 33367 33366 33230 Face 67664 32842 32841 32708 Face 67665 16752 16751 16691 Face 67666 33365 33498 33364 Face 67667 30818 30817 30718 Face 67668 30719 30818 30718 Face 67669 30916 30915 30817 Face 67670 30818 30916 30817 Face 67671 31013 31012 30915 Face 67672 30916 31013 30915 Face 67673 29832 29831 29821 Face 67674 29822 29832 29821 Face 67675 29886 29885 29831 Face 67676 29832 29886 29831 Face 67677 29944 29943 29885 Face 67678 29886 29944 29885 Face 67679 30005 30004 29943 Face 67680 29944 30005 29943 Face 67681 30067 30066 30004 Face 67682 30005 30067 30004 Face 67683 30129 30128 30066 Face 67684 30067 30129 30066 Face 67685 30193 30192 30128 Face 67686 30129 30193 30128 Face 67687 30258 30257 30192 Face 67688 30193 30258 30192 Face 67689 30325 30324 30257 Face 67690 30258 30325 30257 Face 67691 30392 30391 30324 Face 67692 30325 30392 30324 Face 67693 30463 30462 30391 Face 67694 30392 30463 30391 Face 67695 30548 30547 30462 Face 67696 30463 30548 30462 Face 67697 30642 30641 30547 Face 67698 30548 30642 30547 Face 67699 30741 30740 30641 Face 67700 30642 30741 30641 Face 67701 30847 30846 30740 Face 67702 30741 30847 30740 Face 67703 30948 30947 30846 Face 67704 30847 30948 30846 Face 67705 31047 31046 30947 Face 67706 30948 31047 30947 Face 67707 31146 31145 31046 Face 67708 31047 31146 31046 Face 67709 31247 31246 31145 Face 67710 31146 31247 31145 Face 67711 31350 31349 31246 Face 67712 31247 31350 31246 Face 67713 31454 31453 31349 Face 67714 31350 31454 31349 Face 67715 31563 31562 31453 Face 67716 31454 31563 31453 Face 67717 31677 31676 31562 Face 67718 31563 31677 31562 Face 67719 31797 31796 31676 Face 67720 31677 31797 31676 Face 67721 32330 32329 32223 Face 67722 32441 32440 32329 Face 67723 32330 32441 32329 Face 67724 32556 32555 32440 Face 67725 32441 32556 32440 Face 67726 32677 32676 32555 Face 67727 32556 32677 32555 Face 67728 32804 32803 32676 Face 67729 32677 32804 32676 Face 67730 32936 32935 32803 Face 67731 32804 32936 32803 Face 67732 33070 33069 32935 Face 67733 32936 33070 32935 Face 67734 33205 33204 33069 Face 67735 33070 33205 33069 Face 67736 33341 33340 33204 Face 67737 33205 33341 33204 Face 67738 33474 33473 33340 Face 67739 33341 33474 33340 Face 67740 33601 33600 33473 Face 67741 33474 33601 33473 Face 67742 33726 33725 33600 Face 67743 33601 33726 33600 Face 67744 33852 33851 33725 Face 67745 33726 33852 33725 Face 67746 33979 33978 33851 Face 67747 33852 33979 33851 Face 67748 34104 34103 33978 Face 67749 33979 34104 33978 Face 67750 34228 34227 34103 Face 67751 34104 34228 34103 Face 67752 3178 13750 34227 Face 67753 34228 3178 34227 Face 67754 21739 32754 18629 Face 67755 15681 10081 14294 Face 67756 30872 30871 30765 Face 67757 33096 33231 33095 Face 67758 31109 31108 31012 Face 67759 31639 31638 31525 Face 67760 31013 31109 31012 Face 67761 31208 31207 31108 Face 67762 30044 30106 30105 Face 67763 31109 31208 31108 Face 67764 16731 16799 16730 Face 67765 33112 33247 33111 Face 67766 12120 32771 32417 Face 67767 1913 13770 18265 Face 67768 12120 33938 33811 Face 67769 32771 12120 33811 Face 67770 33938 13023 33676 Face 67771 33811 33938 33676 Face 67772 13023 33932 32883 Face 67773 33676 13023 32883 Face 67774 33932 32096 27569 Face 67775 32883 33932 27569 Face 67776 32096 32667 33162 Face 67777 27569 32096 33162 Face 67778 32667 28415 27881 Face 67779 33162 32667 27881 Face 67780 28415 33032 33278 Face 67781 27881 28415 33278 Face 67782 18418 19048 26076 Face 67783 8348 10345 10223 Face 67784 21647 6650 6649 Face 67785 16349 19435 17961 Face 67786 31928 32033 31927 Face 67787 32965 33099 32964 Face 67788 30164 30228 30227 Face 67789 30360 30359 30292 Face 67790 29923 29981 29922 Face 67791 30041 30042 30103 Face 67792 31937 32042 31936 Face 67793 32146 32250 32145 Face 67794 33247 33246 33111 Face 67795 32451 32568 32450 Face 67796 34026 34152 34025 Face 67797 32398 32399 32509 Face 67798 2172 29080 12120 Face 67799 33750 33749 33624 Face 67800 31310 31309 31207 Face 67801 31208 31310 31207 Face 67802 31414 31413 31309 Face 67803 31310 31414 31309 Face 67804 31520 31519 31413 Face 67805 33900 34026 33899 Face 67806 31414 31520 31413 Face 67807 31633 31632 31519 Face 67808 29833 29832 29822 Face 67809 29823 29833 29822 Face 67810 29887 29886 29832 Face 67811 29833 29887 29832 Face 67812 29945 29944 29886 Face 67813 29887 29945 29886 Face 67814 30006 30005 29944 Face 67815 29945 30006 29944 Face 67816 30068 30067 30005 Face 67817 30006 30068 30005 Face 67818 30130 30129 30067 Face 67819 30068 30130 30067 Face 67820 30194 30193 30129 Face 67821 30130 30194 30129 Face 67822 30259 30258 30193 Face 67823 30194 30259 30193 Face 67824 30326 30325 30258 Face 67825 30259 30326 30258 Face 67826 30393 30392 30325 Face 67827 30326 30393 30325 Face 67828 30464 30463 30392 Face 67829 30393 30464 30392 Face 67830 30549 30548 30463 Face 67831 30464 30549 30463 Face 67832 30643 30642 30548 Face 67833 30549 30643 30548 Face 67834 30742 30741 30642 Face 67835 30643 30742 30642 Face 67836 30848 30847 30741 Face 67837 30742 30848 30741 Face 67838 30949 30948 30847 Face 67839 30848 30949 30847 Face 67840 31048 31047 30948 Face 67841 30949 31048 30948 Face 67842 31147 31146 31047 Face 67843 31048 31147 31047 Face 67844 31248 31247 31146 Face 67845 31147 31248 31146 Face 67846 31351 31350 31247 Face 67847 31248 31351 31247 Face 67848 31455 31454 31350 Face 67849 31351 31455 31350 Face 67850 31564 31563 31454 Face 67851 31455 31564 31454 Face 67852 31678 31677 31563 Face 67853 31564 31678 31563 Face 67854 31678 31797 31677 Face 67855 32442 32441 32330 Face 67856 32442 32557 32556 Face 67857 32441 32442 32556 Face 67858 32678 32677 32556 Face 67859 32557 32678 32556 Face 67860 32805 32804 32677 Face 67861 32678 32805 32677 Face 67862 32937 32936 32804 Face 67863 32805 32937 32804 Face 67864 33071 33070 32936 Face 67865 32937 33071 32936 Face 67866 33206 33205 33070 Face 67867 33071 33206 33070 Face 67868 33342 33341 33205 Face 67869 33206 33342 33205 Face 67870 33475 33474 33341 Face 67871 33342 33475 33341 Face 67872 33602 33601 33474 Face 67873 33475 33602 33474 Face 67874 33727 33726 33601 Face 67875 33602 33727 33601 Face 67876 33853 33852 33726 Face 67877 33727 33853 33726 Face 67878 33980 33979 33852 Face 67879 33853 33980 33852 Face 67880 34105 34104 33979 Face 67881 33980 34105 33979 Face 67882 34229 34228 34104 Face 67883 34105 34229 34104 Face 67884 34229 28692 3178 Face 67885 34228 34229 3178 Face 67886 29800 27884 16776 Face 67887 31769 31647 11234 Face 67888 31297 31400 31296 Face 67889 25740 23859 25739 Face 67890 31520 31633 31519 Face 67891 31754 31753 31632 Face 67892 31633 31754 31632 Face 67893 31866 31865 31753 Face 67894 31754 31866 31753 Face 67895 31973 31972 31865 Face 67896 31731 31843 31730 Face 67897 31123 31122 11691 Face 67898 16755 16693 2553 Face 67899 21254 21163 21255 Face 67900 29080 32638 33938 Face 67901 12120 29080 33938 Face 67902 32638 32897 13023 Face 67903 33938 32638 13023 Face 67904 32897 33804 33932 Face 67905 13023 32897 33932 Face 67906 33804 33786 32096 Face 67907 33932 33804 32096 Face 67908 33786 13761 32667 Face 67909 32096 33786 32667 Face 67910 13761 33809 28415 Face 67911 32667 13761 28415 Face 67912 33809 33423 33032 Face 67913 28415 33809 33032 Face 67914 34094 18265 34221 Face 67915 18265 34094 34095 Face 67916 6676 6770 6675 Face 67917 17192 18229 17193 Face 67918 31821 31928 31820 Face 67919 30520 30519 30448 Face 67920 30163 30164 30227 Face 67921 30293 30292 30227 Face 67922 29869 29923 29868 Face 67923 30042 30041 29980 Face 67924 32146 32145 32041 Face 67925 32042 32146 32041 Face 67926 31397 31398 31501 Face 67927 21071 28362 28227 Face 67928 32370 32369 32263 Face 67929 32726 32859 32725 Face 67930 33658 33659 33783 Face 67931 32592 32591 32474 Face 67932 31866 31973 31865 Face 67933 32078 32077 31972 Face 67934 31973 32078 31972 Face 67935 32182 32181 32077 Face 67936 32078 32182 32077 Face 67937 32286 32285 32181 Face 67938 32182 32286 32181 Face 67939 32392 32391 32285 Face 67940 29834 29833 29823 Face 67941 29824 29834 29823 Face 67942 29888 29887 29833 Face 67943 29834 29888 29833 Face 67944 29946 29945 29887 Face 67945 29888 29946 29887 Face 67946 30007 30006 29945 Face 67947 29946 30007 29945 Face 67948 30069 30068 30006 Face 67949 30007 30069 30006 Face 67950 30131 30130 30068 Face 67951 30069 30131 30068 Face 67952 30195 30194 30130 Face 67953 30131 30195 30130 Face 67954 30260 30259 30194 Face 67955 30195 30260 30194 Face 67956 30327 30326 30259 Face 67957 30260 30327 30259 Face 67958 30394 30393 30326 Face 67959 30327 30394 30326 Face 67960 30465 30464 30393 Face 67961 30394 30465 30393 Face 67962 30550 30549 30464 Face 67963 30465 30550 30464 Face 67964 30644 30643 30549 Face 67965 30550 30644 30549 Face 67966 30743 30742 30643 Face 67967 30644 30743 30643 Face 67968 30849 30848 30742 Face 67969 30950 30949 30848 Face 67970 30849 30950 30848 Face 67971 31049 31048 30949 Face 67972 30950 31049 30949 Face 67973 31148 31147 31048 Face 67974 31049 31148 31048 Face 67975 31249 31248 31147 Face 67976 31148 31249 31147 Face 67977 31352 31351 31248 Face 67978 31249 31352 31248 Face 67979 31456 31455 31351 Face 67980 31352 31456 31351 Face 67981 31456 31565 31564 Face 67982 31455 31456 31564 Face 67983 31565 31679 31678 Face 67984 31564 31565 31678 Face 67985 32558 32557 32442 Face 67986 32679 32678 32557 Face 67987 32558 32679 32557 Face 67988 32806 32805 32678 Face 67989 32679 32806 32678 Face 67990 32938 32937 32805 Face 67991 32806 32938 32805 Face 67992 33072 33071 32937 Face 67993 32938 33072 32937 Face 67994 33207 33206 33071 Face 67995 33072 33207 33071 Face 67996 33343 33342 33206 Face 67997 33207 33343 33206 Face 67998 33476 33475 33342 Face 67999 33343 33476 33342 Face 68000 33603 33602 33475 Face 68001 33476 33603 33475 Face 68002 33728 33727 33602 Face 68003 33603 33728 33602 Face 68004 33854 33853 33727 Face 68005 33728 33854 33727 Face 68006 33981 33980 33853 Face 68007 33854 33981 33853 Face 68008 34106 34105 33980 Face 68009 33981 34106 33980 Face 68010 34230 34229 34105 Face 68011 34106 34230 34105 Face 68012 27695 28692 34229 Face 68013 34230 27695 34229 Face 68014 28692 16693 3178 Face 68015 27695 2553 28692 Face 68016 17655 1914 1913 Face 68017 32503 6897 6896 Face 68018 32286 32392 32285 Face 68019 15880 15045 6533 Face 68020 28937 23975 26565 Face 68021 30974 31073 30973 Face 68022 20792 20878 20791 Face 68023 31196 31195 31096 Face 68024 33532 33659 33531 Face 68025 21067 21066 20973 Face 68026 2950 3087 3086 Face 68027 2300 12632 32897 Face 68028 16755 16694 16756 Face 68029 32638 2300 32897 Face 68030 16694 16755 2553 Face 68031 12632 430 33804 Face 68032 32897 12632 33804 Face 68033 430 34167 33786 Face 68034 33804 430 33786 Face 68035 34167 33806 13761 Face 68036 33786 34167 13761 Face 68037 33806 34249 33809 Face 68038 13761 33806 33809 Face 68039 34249 31990 33423 Face 68040 33809 34249 33423 Face 68041 647 32506 761 Face 68042 2951 2952 3088 Face 68043 6709 33660 33661 Face 68044 16753 16691 16692 Face 68045 31709 31821 31708 Face 68046 32033 32032 31927 Face 68047 30293 30360 30292 Face 68048 30427 30426 30359 Face 68049 31314 31418 31313 Face 68050 29981 29980 29922 Face 68051 32356 32355 32249 Face 68052 32250 32356 32249 Face 68053 30519 30604 30518 Face 68054 30168 30232 30231 Face 68055 30273 30340 30272 Face 68056 31278 31381 31277 Face 68057 33399 33532 33398 Face 68058 15434 75 12820 Face 68059 31855 31962 31854 Face 68060 31392 31496 31495 Face 68061 32093 32092 31987 Face 68062 30807 30905 30806 Face 68063 31988 32093 31987 Face 68064 7663 1216 7777 Face 68065 31983 32088 31982 Face 68066 29835 29834 29824 Face 68067 29825 29835 29824 Face 68068 29889 29888 29834 Face 68069 29835 29889 29834 Face 68070 29947 29946 29888 Face 68071 29889 29947 29888 Face 68072 30008 30007 29946 Face 68073 29947 30008 29946 Face 68074 30070 30069 30007 Face 68075 30008 30070 30007 Face 68076 30132 30131 30069 Face 68077 30070 30132 30069 Face 68078 30196 30195 30131 Face 68079 30132 30196 30131 Face 68080 30261 30260 30195 Face 68081 30196 30261 30195 Face 68082 30328 30327 30260 Face 68083 30261 30328 30260 Face 68084 30395 30394 30327 Face 68085 30328 30395 30327 Face 68086 30466 30465 30394 Face 68087 30395 30466 30394 Face 68088 30551 30550 30465 Face 68089 30466 30551 30465 Face 68090 30645 30644 30550 Face 68091 30551 30645 30550 Face 68092 30744 30743 30644 Face 68093 30645 30744 30644 Face 68094 30744 30850 30743 Face 68095 30951 30950 30849 Face 68096 31050 31049 30950 Face 68097 30951 31050 30950 Face 68098 31149 31148 31049 Face 68099 31050 31149 31049 Face 68100 31250 31249 31148 Face 68101 31149 31250 31148 Face 68102 31353 31352 31249 Face 68103 31250 31353 31249 Face 68104 31457 31456 31352 Face 68105 31353 31457 31352 Face 68106 31457 31566 31565 Face 68107 31456 31457 31565 Face 68108 31566 31680 31679 Face 68109 31565 31566 31679 Face 68110 32680 32679 32558 Face 68111 32807 32806 32679 Face 68112 32680 32807 32679 Face 68113 32939 32938 32806 Face 68114 32807 32939 32806 Face 68115 33073 33072 32938 Face 68116 32939 33073 32938 Face 68117 33208 33207 33072 Face 68118 33073 33208 33072 Face 68119 33344 33343 33207 Face 68120 33208 33344 33207 Face 68121 33477 33476 33343 Face 68122 33344 33477 33343 Face 68123 33604 33603 33476 Face 68124 33477 33604 33476 Face 68125 33729 33728 33603 Face 68126 33604 33729 33603 Face 68127 33855 33854 33728 Face 68128 33729 33855 33728 Face 68129 33982 33981 33854 Face 68130 33855 33982 33854 Face 68131 34107 34106 33981 Face 68132 33982 34107 33981 Face 68133 34231 34230 34106 Face 68134 34107 34231 34106 Face 68135 12548 27695 34230 Face 68136 34231 12548 34230 Face 68137 22274 2553 27695 Face 68138 12548 22274 27695 Face 68139 32417 32302 32542 Face 68140 26076 19048 17855 Face 68141 1324 7777 1216 Face 68142 31702 31701 31587 Face 68143 31743 31855 31742 Face 68144 30593 30594 30687 Face 68145 33659 33784 33783 Face 68146 33263 33399 33262 Face 68147 12742 179 11367 Face 68148 31815 31814 31702 Face 68149 16799 16731 16732 Face 68150 6622 2301 32898 Face 68151 32638 29080 2300 Face 68152 31990 12650 2951 Face 68153 31995 430 12632 Face 68154 6622 31995 12632 Face 68155 33798 34167 430 Face 68156 31995 33798 430 Face 68157 33798 28288 33806 Face 68158 34167 33798 33806 Face 68159 28288 32430 34249 Face 68160 33806 28288 34249 Face 68161 32430 12650 31990 Face 68162 34249 32430 31990 Face 68163 30869 30970 30868 Face 68164 33277 6687 33411 Face 68165 32031 32030 31925 Face 68166 6670 6671 6765 Face 68167 31821 31820 31708 Face 68168 31928 31927 31820 Face 68169 30360 30427 30359 Face 68170 30498 30497 30426 Face 68171 31314 31313 31211 Face 68172 29923 29922 29868 Face 68173 32468 32467 32355 Face 68174 32356 32468 32355 Face 68175 31419 31418 31314 Face 68176 32846 32978 32845 Face 68177 32357 32469 32356 Face 68178 31591 31705 31590 Face 68179 33399 33398 33262 Face 68180 33659 33658 33531 Face 68181 33649 33648 33521 Face 68182 32600 32727 32599 Face 68183 30787 30893 30892 Face 68184 20357 20445 20444 Face 68185 11054 30919 11055 Face 68186 30113 30112 30050 Face 68187 27884 29800 27739 Face 68188 29836 29835 29825 Face 68189 29890 29889 29835 Face 68190 29836 29890 29835 Face 68191 29948 29947 29889 Face 68192 29890 29948 29889 Face 68193 30009 30008 29947 Face 68194 29948 30009 29947 Face 68195 30071 30070 30008 Face 68196 30009 30071 30008 Face 68197 30133 30132 30070 Face 68198 30071 30133 30070 Face 68199 30197 30196 30132 Face 68200 30133 30197 30132 Face 68201 30262 30261 30196 Face 68202 30197 30262 30196 Face 68203 30329 30328 30261 Face 68204 30262 30329 30261 Face 68205 30396 30395 30328 Face 68206 30329 30396 30328 Face 68207 30467 30466 30395 Face 68208 30396 30467 30395 Face 68209 30552 30551 30466 Face 68210 30467 30552 30466 Face 68211 30646 30645 30551 Face 68212 30552 30646 30551 Face 68213 30745 30744 30645 Face 68214 30646 30745 30645 Face 68215 30851 30850 30744 Face 68216 30745 30851 30744 Face 68217 31051 31050 30951 Face 68218 30952 31051 30951 Face 68219 31150 31149 31050 Face 68220 31051 31150 31050 Face 68221 31251 31250 31149 Face 68222 31150 31251 31149 Face 68223 31354 31353 31250 Face 68224 31251 31354 31250 Face 68225 31458 31457 31353 Face 68226 31354 31458 31353 Face 68227 31458 31567 31566 Face 68228 31457 31458 31566 Face 68229 31567 31681 31680 Face 68230 31566 31567 31680 Face 68231 32808 32807 32680 Face 68232 32681 32808 32680 Face 68233 32940 32939 32807 Face 68234 32808 32940 32807 Face 68235 33074 33073 32939 Face 68236 32940 33074 32939 Face 68237 33209 33208 33073 Face 68238 33074 33209 33073 Face 68239 33345 33344 33208 Face 68240 33209 33345 33208 Face 68241 33478 33477 33344 Face 68242 33345 33478 33344 Face 68243 33605 33604 33477 Face 68244 33478 33605 33477 Face 68245 33730 33729 33604 Face 68246 33605 33730 33604 Face 68247 33856 33855 33729 Face 68248 33730 33856 33729 Face 68249 33983 33982 33855 Face 68250 33856 33983 33855 Face 68251 34108 34107 33982 Face 68252 33983 34108 33982 Face 68253 34232 34231 34107 Face 68254 34108 34232 34107 Face 68255 12278 12548 34231 Face 68256 34232 12278 34231 Face 68257 26443 22274 12548 Face 68258 12278 26443 12548 Face 68259 21479 31652 33024 Face 68260 16730 16729 32209 Face 68261 30055 30117 30054 Face 68262 33128 33263 33127 Face 68263 30051 30113 30050 Face 68264 31617 31616 31507 Face 68265 32292 32291 32187 Face 68266 33532 33531 33398 Face 68267 32994 33128 32993 Face 68268 30183 30182 30120 Face 68269 30247 30246 30182 Face 68270 32341 32340 32234 Face 68271 32131 32130 32026 Face 68272 18629 32754 17281 Face 68273 12743 6146 179 Face 68274 27249 31995 6622 Face 68275 32898 27249 6622 Face 68276 33016 33798 31995 Face 68277 27249 33016 31995 Face 68278 32504 28288 33798 Face 68279 33016 32504 33798 Face 68280 32504 32429 32430 Face 68281 28288 32504 32430 Face 68282 7233 32404 32405 Face 68283 32430 32429 12650 Face 68284 30669 30668 30574 Face 68285 32904 12441 10859 Face 68286 31486 31595 31485 Face 68287 31926 32031 31925 Face 68288 30776 30775 30676 Face 68289 31709 31708 31594 Face 68290 30053 30115 30052 Face 68291 30427 30498 30426 Face 68292 32977 33111 32976 Face 68293 33397 33530 33396 Face 68294 6241 6240 6114 Face 68295 32585 32584 32467 Face 68296 30517 30516 30445 Face 68297 16774 27960 370 Face 68298 32862 32861 32728 Face 68299 30183 30247 30182 Face 68300 32044 32148 32043 Face 68301 32729 32862 32728 Face 68302 32159 32158 32054 Face 68303 32405 32299 7235 Face 68304 16680 33063 33197 Face 68305 16758 16757 13212 Face 68306 30779 30885 30778 Face 68307 32598 32597 32480 Face 68308 30986 30985 30884 Face 68309 29891 29890 29836 Face 68310 29837 29891 29836 Face 68311 29949 29948 29890 Face 68312 29891 29949 29890 Face 68313 30010 30009 29948 Face 68314 29949 30010 29948 Face 68315 30072 30071 30009 Face 68316 30010 30072 30009 Face 68317 30134 30133 30071 Face 68318 30072 30134 30071 Face 68319 30198 30197 30133 Face 68320 30134 30198 30133 Face 68321 30198 30263 30262 Face 68322 30197 30198 30262 Face 68323 30263 30330 30329 Face 68324 30262 30263 30329 Face 68325 30397 30396 30329 Face 68326 30330 30397 30329 Face 68327 30468 30467 30396 Face 68328 30397 30468 30396 Face 68329 30553 30552 30467 Face 68330 30468 30553 30467 Face 68331 30647 30646 30552 Face 68332 30553 30647 30552 Face 68333 30746 30745 30646 Face 68334 30647 30746 30646 Face 68335 30852 30851 30745 Face 68336 30746 30852 30745 Face 68337 30852 30953 30851 Face 68338 31052 31051 30952 Face 68339 31151 31150 31051 Face 68340 31052 31151 31051 Face 68341 31252 31251 31150 Face 68342 31151 31252 31150 Face 68343 31355 31354 31251 Face 68344 31252 31355 31251 Face 68345 31459 31458 31354 Face 68346 31355 31459 31354 Face 68347 31459 31568 31567 Face 68348 31458 31459 31567 Face 68349 31568 31682 31681 Face 68350 31567 31568 31681 Face 68351 32809 32808 32681 Face 68352 32941 32940 32808 Face 68353 32809 32941 32808 Face 68354 33075 33074 32940 Face 68355 32941 33075 32940 Face 68356 33210 33209 33074 Face 68357 33075 33210 33074 Face 68358 33346 33345 33209 Face 68359 33210 33346 33209 Face 68360 33479 33478 33345 Face 68361 33346 33479 33345 Face 68362 33606 33605 33478 Face 68363 33479 33606 33478 Face 68364 33731 33730 33605 Face 68365 33606 33731 33605 Face 68366 33857 33856 33730 Face 68367 33731 33857 33730 Face 68368 33984 33983 33856 Face 68369 33857 33984 33856 Face 68370 34109 34108 33983 Face 68371 33984 34109 33983 Face 68372 34233 34232 34108 Face 68373 34109 34233 34108 Face 68374 27222 12278 34232 Face 68375 34233 27222 34232 Face 68376 18561 26443 12278 Face 68377 27222 18561 12278 Face 68378 11298 33148 12588 Face 68379 26443 18561 13212 Face 68380 32602 32729 32601 Face 68381 32898 18784 27249 Face 68382 31383 31487 31382 Face 68383 31098 31197 31097 Face 68384 30441 30440 30373 Face 68385 32130 32129 32025 Face 68386 33263 33262 33127 Face 68387 32484 32485 32601 Face 68388 30312 30311 30246 Face 68389 30247 30312 30246 Face 68390 31398 31502 31501 Face 68391 31762 31761 31640 Face 68392 32474 32473 32361 Face 68393 31921 32026 31920 Face 68394 34099 16688 16749 Face 68395 2953 12650 2954 Face 68396 33415 33016 27249 Face 68397 33415 18784 18785 Face 68398 9202 32504 33016 Face 68399 33415 9202 33016 Face 68400 32893 32429 32504 Face 68401 9202 32893 32504 Face 68402 21180 20155 19058 Face 68403 6749 26904 6656 Face 68404 32135 32134 32030 Face 68405 32239 32238 32134 Face 68406 31595 31594 31485 Face 68407 31595 31709 31594 Face 68408 30677 30676 30582 Face 68409 30677 30776 30676 Face 68410 31194 31295 31193 Face 68411 33781 33782 33907 Face 68412 32845 32977 32844 Face 68413 33246 33245 33110 Face 68414 34270 27016 34269 Face 68415 31939 31938 31831 Face 68416 30446 30445 30378 Face 68417 30446 30517 30445 Face 68418 32485 32602 32601 Face 68419 33128 33127 32993 Face 68420 27133 26875 34268 Face 68421 30374 30441 30373 Face 68422 30511 30510 30439 Face 68423 32186 32290 32289 Face 68424 32425 33177 17081 Face 68425 32373 32485 32372 Face 68426 861 14300 8936 Face 68427 29892 29891 29837 Face 68428 29838 29892 29837 Face 68429 29950 29949 29891 Face 68430 29892 29950 29891 Face 68431 30011 30010 29949 Face 68432 29950 30011 29949 Face 68433 30073 30072 30010 Face 68434 30011 30073 30010 Face 68435 30135 30134 30072 Face 68436 30073 30135 30072 Face 68437 30135 30199 30198 Face 68438 30134 30135 30198 Face 68439 30199 30264 30263 Face 68440 30198 30199 30263 Face 68441 30264 30331 30330 Face 68442 30263 30264 30330 Face 68443 30398 30397 30330 Face 68444 30331 30398 30330 Face 68445 30469 30468 30397 Face 68446 30398 30469 30397 Face 68447 30554 30553 30468 Face 68448 30469 30554 30468 Face 68449 30648 30647 30553 Face 68450 30554 30648 30553 Face 68451 30747 30746 30647 Face 68452 30648 30747 30647 Face 68453 30853 30852 30746 Face 68454 30747 30853 30746 Face 68455 30954 30953 30852 Face 68456 30853 30954 30852 Face 68457 31152 31151 31052 Face 68458 31053 31152 31052 Face 68459 31253 31252 31151 Face 68460 31152 31253 31151 Face 68461 31356 31355 31252 Face 68462 31253 31356 31252 Face 68463 31460 31459 31355 Face 68464 31356 31460 31355 Face 68465 31460 31569 31568 Face 68466 31459 31460 31568 Face 68467 31569 31683 31682 Face 68468 31568 31569 31682 Face 68469 32942 32941 32809 Face 68470 32810 32942 32809 Face 68471 33076 33075 32941 Face 68472 32942 33076 32941 Face 68473 33211 33210 33075 Face 68474 33076 33211 33075 Face 68475 33347 33346 33210 Face 68476 33211 33347 33210 Face 68477 33480 33479 33346 Face 68478 33347 33480 33346 Face 68479 33607 33606 33479 Face 68480 33480 33607 33479 Face 68481 33732 33731 33606 Face 68482 33607 33732 33606 Face 68483 33858 33857 33731 Face 68484 33732 33858 33731 Face 68485 33985 33984 33857 Face 68486 33858 33985 33857 Face 68487 34110 34109 33984 Face 68488 33985 34110 33984 Face 68489 34234 34233 34109 Face 68490 34110 34234 34109 Face 68491 16960 27222 34233 Face 68492 34234 16960 34233 Face 68493 26814 18561 27222 Face 68494 16960 26814 27222 Face 68495 30620 30619 25672 Face 68496 18678 18786 18785 Face 68497 32485 32484 32372 Face 68498 30874 30873 30767 Face 68499 30819 30818 30719 Face 68500 30720 30819 30719 Face 68501 30917 30916 30818 Face 68502 30819 30917 30818 Face 68503 32729 32728 32601 Face 68504 32373 32372 32266 Face 68505 30379 30378 30311 Face 68506 30312 30379 30311 Face 68507 31419 31525 31418 Face 68508 30381 30380 30313 Face 68509 32468 32585 32467 Face 68510 32712 32711 32584 Face 68511 26904 13460 6656 Face 68512 34197 9896 21161 Face 68513 18786 2433 18785 Face 68514 25499 25025 25435 Face 68515 32884 18359 9202 Face 68516 33415 32884 9202 Face 68517 23922 32893 9202 Face 68518 18359 23922 9202 Face 68519 32457 32456 32344 Face 68520 30159 30160 30223 Face 68521 31279 31382 31278 Face 68522 32031 32135 32030 Face 68523 30983 31082 30982 Face 68524 31486 31485 31381 Face 68525 30499 30498 30427 Face 68526 30583 30677 30582 Face 68527 33642 33641 33514 Face 68528 30428 30427 30360 Face 68529 34270 34269 34146 Face 68530 33111 33110 32976 Face 68531 30052 30114 30051 Face 68532 19254 19282 19253 Face 68533 32059 32163 32058 Face 68534 30379 30446 30378 Face 68535 31014 31013 30916 Face 68536 32267 32266 32162 Face 68537 30917 31014 30916 Face 68538 31110 31109 31013 Face 68539 31014 31110 31013 Face 68540 31209 31208 31109 Face 68541 31110 31209 31109 Face 68542 29893 29892 29838 Face 68543 29839 29893 29838 Face 68544 29951 29950 29892 Face 68545 29893 29951 29892 Face 68546 30012 30011 29950 Face 68547 29951 30012 29950 Face 68548 30074 30073 30011 Face 68549 30012 30074 30011 Face 68550 30074 30136 30135 Face 68551 30073 30074 30135 Face 68552 30136 30200 30199 Face 68553 30135 30136 30199 Face 68554 30200 30265 30264 Face 68555 30199 30200 30264 Face 68556 30332 30331 30264 Face 68557 30265 30332 30264 Face 68558 30399 30398 30331 Face 68559 30332 30399 30331 Face 68560 30470 30469 30398 Face 68561 30399 30470 30398 Face 68562 30555 30554 30469 Face 68563 30470 30555 30469 Face 68564 30649 30648 30554 Face 68565 30555 30649 30554 Face 68566 30748 30747 30648 Face 68567 30649 30748 30648 Face 68568 30854 30853 30747 Face 68569 30748 30854 30747 Face 68570 30955 30954 30853 Face 68571 30854 30955 30853 Face 68572 30955 31054 30954 Face 68573 31153 31152 31053 Face 68574 31254 31253 31152 Face 68575 31153 31254 31152 Face 68576 31357 31356 31253 Face 68577 31254 31357 31253 Face 68578 31461 31460 31356 Face 68579 31357 31461 31356 Face 68580 31570 31569 31460 Face 68581 31461 31570 31460 Face 68582 31570 31684 31683 Face 68583 31569 31570 31683 Face 68584 32943 32942 32810 Face 68585 32811 32943 32810 Face 68586 33077 33076 32942 Face 68587 32943 33077 32942 Face 68588 33212 33211 33076 Face 68589 33077 33212 33076 Face 68590 33348 33347 33211 Face 68591 33212 33348 33211 Face 68592 33481 33480 33347 Face 68593 33348 33481 33347 Face 68594 33608 33607 33480 Face 68595 33481 33608 33480 Face 68596 33733 33732 33607 Face 68597 33608 33733 33607 Face 68598 33859 33858 33732 Face 68599 33733 33859 33732 Face 68600 33986 33985 33858 Face 68601 33859 33986 33858 Face 68602 34111 34110 33985 Face 68603 33986 34111 33985 Face 68604 34235 34234 34110 Face 68605 34111 34235 34110 Face 68606 29616 16960 34234 Face 68607 34235 29616 34234 Face 68608 28280 26814 16960 Face 68609 29616 28280 16960 Face 68610 3212 33302 3077 Face 68611 32884 2561 18359 Face 68612 32163 32162 32058 Face 68613 30352 30351 30284 Face 68614 31311 31310 31208 Face 68615 31209 31311 31208 Face 68616 31415 31414 31310 Face 68617 31311 31415 31310 Face 68618 32267 32373 32266 Face 68619 32059 32058 31953 Face 68620 32846 32845 32712 Face 68621 29933 29932 29878 Face 68622 31315 31419 31314 Face 68623 31525 31524 31418 Face 68624 32585 32712 32584 Face 68625 32845 32844 32711 Face 68626 30668 30667 30573 Face 68627 31212 31314 31211 Face 68628 32764 20471 20300 Face 68629 32354 32466 32353 Face 68630 33277 33143 6623 Face 68631 18618 17743 34248 Face 68632 27012 25849 24681 Face 68633 18359 33011 23922 Face 68634 32135 32239 32134 Face 68635 32345 32457 32344 Face 68636 31178 31279 31177 Face 68637 31382 31486 31381 Face 68638 30983 30982 30881 Face 68639 31181 31180 31081 Face 68640 29922 29980 29921 Face 68641 30351 30350 30283 Face 68642 33246 33382 33245 Face 68643 33515 33642 33514 Face 68644 34147 34146 34020 Face 68645 34147 34270 34146 Face 68646 30052 30051 29990 Face 68647 30114 30176 30175 Face 68648 31954 31953 31846 Face 68649 32163 32267 32162 Face 68650 31521 31520 31414 Face 68651 31415 31521 31414 Face 68652 31634 31633 31520 Face 68653 30450 30521 30449 Face 68654 31521 31634 31520 Face 68655 31755 31754 31633 Face 68656 31634 31755 31633 Face 68657 31867 31866 31754 Face 68658 29894 29893 29839 Face 68659 29840 29894 29839 Face 68660 29952 29951 29893 Face 68661 29894 29952 29893 Face 68662 30013 30012 29951 Face 68663 29952 30013 29951 Face 68664 30075 30074 30012 Face 68665 30013 30075 30012 Face 68666 30075 30137 30136 Face 68667 30074 30075 30136 Face 68668 30137 30201 30200 Face 68669 30136 30137 30200 Face 68670 30201 30266 30265 Face 68671 30200 30201 30265 Face 68672 30333 30332 30265 Face 68673 30266 30333 30265 Face 68674 30400 30399 30332 Face 68675 30333 30400 30332 Face 68676 30471 30470 30399 Face 68677 30400 30471 30399 Face 68678 30556 30555 30470 Face 68679 30471 30556 30470 Face 68680 30650 30649 30555 Face 68681 30556 30650 30555 Face 68682 30749 30748 30649 Face 68683 30650 30749 30649 Face 68684 30855 30854 30748 Face 68685 30749 30855 30748 Face 68686 30956 30955 30854 Face 68687 30855 30956 30854 Face 68688 31055 31054 30955 Face 68689 30956 31055 30955 Face 68690 31255 31254 31153 Face 68691 31154 31255 31153 Face 68692 31358 31357 31254 Face 68693 31255 31358 31254 Face 68694 31462 31461 31357 Face 68695 31358 31462 31357 Face 68696 31571 31570 31461 Face 68697 31462 31571 31461 Face 68698 31571 31685 31684 Face 68699 31570 31571 31684 Face 68700 32944 32943 32811 Face 68701 32812 32944 32811 Face 68702 33078 33077 32943 Face 68703 32944 33078 32943 Face 68704 33213 33212 33077 Face 68705 33078 33213 33077 Face 68706 33349 33348 33212 Face 68707 33213 33349 33212 Face 68708 33482 33481 33348 Face 68709 33349 33482 33348 Face 68710 33609 33608 33481 Face 68711 33482 33609 33481 Face 68712 33734 33733 33608 Face 68713 33609 33734 33608 Face 68714 33860 33859 33733 Face 68715 33734 33860 33733 Face 68716 33987 33986 33859 Face 68717 33860 33987 33859 Face 68718 34112 34111 33986 Face 68719 33987 34112 33986 Face 68720 34236 34235 34111 Face 68721 34112 34236 34111 Face 68722 25641 29616 34235 Face 68723 34236 25641 34235 Face 68724 29735 28280 29616 Face 68725 25641 29735 29616 Face 68726 32591 32590 32473 Face 68727 33193 20447 20448 Face 68728 31755 31867 31754 Face 68729 30450 30449 30382 Face 68730 31974 31973 31866 Face 68731 31867 31974 31866 Face 68732 32079 32078 31973 Face 68733 31954 32059 31953 Face 68734 32040 32144 32039 Face 68735 29991 29990 29932 Face 68736 29933 29991 29932 Face 68737 27016 27133 34269 Face 68738 34021 34020 33894 Face 68739 32712 32845 32711 Face 68740 32977 32976 32844 Face 68741 31418 31417 31313 Face 68742 30448 30519 30447 Face 68743 30583 30582 30497 Face 68744 29913 29971 29912 Face 68745 27261 23865 27149 Face 68746 16691 12747 13750 Face 68747 32966 32965 32833 Face 68748 6683 6682 6618 Face 68749 32345 32344 32238 Face 68750 32239 32345 32238 Face 68751 31079 31178 31078 Face 68752 31382 31381 31278 Face 68753 30882 30983 30881 Face 68754 31082 31081 30982 Face 68755 30165 30229 30228 Face 68756 30361 30428 30360 Face 68757 33515 33514 33381 Face 68758 33382 33515 33381 Face 68759 33895 33894 33768 Face 68760 34021 34147 34020 Face 68761 29991 30052 29990 Face 68762 30114 30113 30051 Face 68763 30700 30799 30699 Face 68764 31847 31954 31846 Face 68765 31974 32079 31973 Face 68766 32183 32182 32078 Face 68767 30521 30606 30520 Face 68768 32079 32183 32078 Face 68769 30383 30450 30382 Face 68770 30606 30605 30520 Face 68771 32287 32286 32182 Face 68772 32183 32287 32182 Face 68773 32287 32393 32392 Face 68774 32286 32287 32392 Face 68775 29895 29894 29840 Face 68776 29841 29895 29840 Face 68777 29953 29952 29894 Face 68778 29895 29953 29894 Face 68779 30014 30013 29952 Face 68780 29953 30014 29952 Face 68781 30076 30075 30013 Face 68782 30014 30076 30013 Face 68783 30076 30138 30137 Face 68784 30075 30076 30137 Face 68785 30138 30202 30201 Face 68786 30137 30138 30201 Face 68787 30202 30267 30266 Face 68788 30201 30202 30266 Face 68789 30334 30333 30266 Face 68790 30267 30334 30266 Face 68791 30401 30400 30333 Face 68792 30334 30401 30333 Face 68793 30472 30471 30400 Face 68794 30401 30472 30400 Face 68795 30557 30556 30471 Face 68796 30472 30557 30471 Face 68797 30651 30650 30556 Face 68798 30557 30651 30556 Face 68799 30750 30749 30650 Face 68800 30651 30750 30650 Face 68801 30856 30855 30749 Face 68802 30750 30856 30749 Face 68803 30957 30956 30855 Face 68804 30856 30957 30855 Face 68805 31056 31055 30956 Face 68806 30957 31056 30956 Face 68807 31056 31155 31055 Face 68808 31256 31255 31154 Face 68809 31359 31358 31255 Face 68810 31256 31359 31255 Face 68811 31463 31462 31358 Face 68812 31359 31463 31358 Face 68813 31572 31571 31462 Face 68814 31463 31572 31462 Face 68815 31572 31686 31685 Face 68816 31571 31572 31685 Face 68817 31686 31798 31685 Face 68818 32945 32944 32812 Face 68819 32813 32945 32812 Face 68820 33079 33078 32944 Face 68821 32945 33079 32944 Face 68822 33214 33213 33078 Face 68823 33079 33214 33078 Face 68824 33350 33349 33213 Face 68825 33214 33350 33213 Face 68826 33483 33482 33349 Face 68827 33350 33483 33349 Face 68828 33610 33609 33482 Face 68829 33483 33610 33482 Face 68830 33735 33734 33609 Face 68831 33610 33735 33609 Face 68832 33861 33860 33734 Face 68833 33735 33861 33734 Face 68834 33988 33987 33860 Face 68835 33861 33988 33860 Face 68836 34113 34112 33987 Face 68837 33988 34113 33987 Face 68838 34237 34236 34112 Face 68839 34113 34237 34112 Face 68840 18263 25641 34236 Face 68841 34237 18263 34236 Face 68842 18263 26186 29735 Face 68843 25641 18263 29735 Face 68844 19255 19256 19285 Face 68845 6897 6898 7005 Face 68846 6898 32392 6899 Face 68847 20361 19200 20448 Face 68848 30688 30787 30786 Face 68849 32371 32370 32264 Face 68850 31391 31392 31495 Face 68851 31725 31837 31836 Face 68852 31828 31935 31827 Face 68853 30113 30114 30175 Face 68854 30176 30240 30239 Face 68855 33895 34021 33894 Face 68856 33113 33112 32978 Face 68857 33111 33246 33110 Face 68858 33382 33381 33245 Face 68859 30115 30114 30052 Face 68860 34137 34136 34010 Face 68861 30882 30881 30775 Face 68862 30498 30583 30497 Face 68863 30879 30980 30878 Face 68864 31079 31078 30979 Face 68865 33100 33099 32965 Face 68866 32834 32966 32833 Face 68867 32574 32573 32456 Face 68868 32457 32574 32456 Face 68869 30980 31079 30979 Face 68870 31279 31278 31177 Face 68871 31082 31181 31081 Face 68872 31282 31281 31180 Face 68873 31594 31593 31484 Face 68874 29980 29979 29921 Face 68875 33893 33892 33766 Face 68876 33767 33893 33766 Face 68877 33248 33247 33112 Face 68878 33769 33895 33768 Face 68879 30175 30176 30239 Face 68880 30240 30305 30304 Face 68881 31735 31734 31620 Face 68882 31847 31846 31734 Face 68883 30700 30699 30605 Face 68884 31735 31847 31734 Face 68885 30606 30700 30605 Face 68886 30799 30798 30699 Face 68887 30521 30520 30449 Face 68888 30510 30595 30594 Face 68889 32903 33013 12173 Face 68890 31924 31923 31816 Face 68891 30437 30438 30508 Face 68892 31002 31001 30904 Face 68893 29896 29895 29841 Face 68894 29842 29896 29841 Face 68895 29954 29953 29895 Face 68896 29896 29954 29895 Face 68897 30015 30014 29953 Face 68898 29954 30015 29953 Face 68899 30077 30076 30014 Face 68900 30015 30077 30014 Face 68901 30077 30139 30138 Face 68902 30076 30077 30138 Face 68903 30139 30203 30202 Face 68904 30138 30139 30202 Face 68905 30203 30268 30267 Face 68906 30202 30203 30267 Face 68907 30335 30334 30267 Face 68908 30268 30335 30267 Face 68909 30402 30401 30334 Face 68910 30335 30402 30334 Face 68911 30473 30472 30401 Face 68912 30402 30473 30401 Face 68913 30558 30557 30472 Face 68914 30473 30558 30472 Face 68915 30652 30651 30557 Face 68916 30558 30652 30557 Face 68917 30751 30750 30651 Face 68918 30652 30751 30651 Face 68919 30857 30856 30750 Face 68920 30751 30857 30750 Face 68921 30958 30957 30856 Face 68922 30857 30958 30856 Face 68923 31057 31056 30957 Face 68924 30958 31057 30957 Face 68925 31156 31155 31056 Face 68926 31057 31156 31056 Face 68927 31360 31359 31256 Face 68928 31257 31360 31256 Face 68929 31464 31463 31359 Face 68930 31360 31464 31359 Face 68931 31573 31572 31463 Face 68932 31464 31573 31463 Face 68933 31573 31687 31686 Face 68934 31572 31573 31686 Face 68935 31799 31798 31686 Face 68936 31687 31799 31686 Face 68937 32946 32945 32813 Face 68938 32814 32946 32813 Face 68939 33080 33079 32945 Face 68940 32946 33080 32945 Face 68941 33215 33214 33079 Face 68942 33080 33215 33079 Face 68943 33351 33350 33214 Face 68944 33215 33351 33214 Face 68945 33484 33483 33350 Face 68946 33351 33484 33350 Face 68947 33611 33610 33483 Face 68948 33484 33611 33483 Face 68949 33736 33735 33610 Face 68950 33611 33736 33610 Face 68951 33862 33861 33735 Face 68952 33736 33862 33735 Face 68953 33989 33988 33861 Face 68954 33862 33989 33861 Face 68955 34114 34113 33988 Face 68956 33989 34114 33988 Face 68957 34238 34237 34113 Face 68958 34114 34238 34113 Face 68959 17015 18263 34237 Face 68960 34238 17015 34237 Face 68961 6795 32503 6896 Face 68962 34067 21250 21342 Face 68963 3594 3723 3593 Face 68964 34140 34263 34139 Face 68965 31318 31317 31215 Face 68966 33894 34020 33893 Face 68967 30807 30806 30707 Face 68968 30491 30490 30419 Face 68969 31273 31376 31272 Face 68970 30518 30603 30517 Face 68971 15314 15044 16778 Face 68972 30502 30501 30430 Face 68973 30594 30595 30688 Face 68974 30788 30787 30688 Face 68975 32979 33113 32978 Face 68976 32979 32978 32846 Face 68977 34019 34018 33892 Face 68978 33893 34019 33892 Face 68979 30102 30103 30164 Face 68980 30041 30040 29979 Face 68981 31282 31385 31281 Face 68982 30776 30882 30775 Face 68983 30161 30225 30224 Face 68984 30160 30161 30224 Face 68985 34256 34257 12637 Face 68986 32966 33100 32965 Face 68987 32701 32700 32573 Face 68988 32574 32701 32573 Face 68989 30773 30879 30772 Face 68990 31178 31177 31078 Face 68991 31181 31282 31180 Face 68992 31385 31384 31281 Face 68993 31485 31594 31484 Face 68994 33885 34011 33884 Face 68995 34145 34144 34018 Face 68996 30984 30983 30882 Face 68997 33113 33248 33112 Face 68998 34019 34145 34018 Face 68999 30438 30439 30509 Face 69000 33384 33383 33247 Face 69001 30371 30372 30438 Face 69002 30439 30510 30509 Face 69003 30239 30240 30304 Face 69004 30305 30372 30371 Face 69005 30304 30305 30371 Face 69006 30372 30439 30438 Face 69007 30509 30510 30594 Face 69008 30595 30689 30688 Face 69009 31719 31831 31718 Face 69010 31117 31116 31020 Face 69011 33234 33370 33233 Face 69012 31946 32051 31945 Face 69013 29897 29896 29842 Face 69014 29843 29897 29842 Face 69015 29955 29954 29896 Face 69016 29897 29955 29896 Face 69017 30016 30015 29954 Face 69018 29955 30016 29954 Face 69019 30016 30078 30077 Face 69020 30015 30016 30077 Face 69021 30078 30140 30139 Face 69022 30077 30078 30139 Face 69023 30140 30204 30203 Face 69024 30139 30140 30203 Face 69025 30204 30269 30268 Face 69026 30203 30204 30268 Face 69027 30336 30335 30268 Face 69028 30269 30336 30268 Face 69029 30403 30402 30335 Face 69030 30336 30403 30335 Face 69031 30474 30473 30402 Face 69032 30403 30474 30402 Face 69033 30559 30558 30473 Face 69034 30474 30559 30473 Face 69035 30653 30652 30558 Face 69036 30559 30653 30558 Face 69037 30752 30751 30652 Face 69038 30653 30752 30652 Face 69039 30858 30857 30751 Face 69040 30752 30858 30751 Face 69041 30959 30958 30857 Face 69042 30858 30959 30857 Face 69043 31058 31057 30958 Face 69044 30959 31058 30958 Face 69045 31157 31156 31057 Face 69046 31058 31157 31057 Face 69047 31361 31360 31257 Face 69048 31258 31361 31257 Face 69049 31465 31464 31360 Face 69050 31361 31465 31360 Face 69051 31574 31573 31464 Face 69052 31465 31574 31464 Face 69053 31688 31687 31573 Face 69054 31574 31688 31573 Face 69055 31800 31799 31687 Face 69056 31688 31800 31687 Face 69057 32682 32815 32814 Face 69058 32947 32946 32814 Face 69059 32815 32947 32814 Face 69060 33081 33080 32946 Face 69061 32947 33081 32946 Face 69062 33216 33215 33080 Face 69063 33081 33216 33080 Face 69064 33352 33351 33215 Face 69065 33216 33352 33215 Face 69066 33485 33484 33351 Face 69067 33352 33485 33351 Face 69068 33612 33611 33484 Face 69069 33485 33612 33484 Face 69070 33737 33736 33611 Face 69071 33612 33737 33611 Face 69072 33863 33862 33736 Face 69073 33737 33863 33736 Face 69074 33990 33989 33862 Face 69075 33863 33990 33862 Face 69076 34115 34114 33989 Face 69077 33990 34115 33989 Face 69078 34239 34238 34114 Face 69079 34115 34239 34114 Face 69080 13474 17015 34238 Face 69081 34239 13474 34238 Face 69082 13474 6726 17015 Face 69083 7234 7341 7233 Face 69084 32155 32259 32154 Face 69085 30669 30768 30668 Face 69086 32192 32191 32087 Face 69087 32274 32380 32273 Face 69088 32852 32851 32718 Face 69089 32088 32192 32087 Face 69090 32399 32400 32510 Face 69091 33379 33378 33242 Face 69092 30689 30788 30688 Face 69093 30995 30994 30893 Face 69094 30894 30893 30787 Face 69095 30788 30894 30787 Face 69096 32847 32979 32846 Face 69097 32587 32714 32586 Face 69098 31619 31733 31618 Face 69099 21250 34067 21249 Face 69100 32978 33112 32977 Face 69101 31888 31775 31776 Face 69102 32244 32350 32243 Face 69103 31489 31488 31384 Face 69104 30036 30037 30098 Face 69105 30099 30161 30160 Face 69106 13478 18787 12637 Face 69107 18787 26011 12637 Face 69108 32834 32833 32700 Face 69109 32701 32834 32700 Face 69110 30773 30772 30673 Face 69111 30980 30979 30878 Face 69112 31385 31489 31384 Face 69113 31598 31597 31488 Face 69114 31712 31711 31597 Face 69115 31489 31598 31488 Face 69116 30678 30777 30677 Face 69117 31018 31017 30920 Face 69118 27041 28290 29588 Face 69119 31072 31071 30972 Face 69120 33248 33384 33247 Face 69121 28290 27041 26760 Face 69122 33517 33516 33383 Face 69123 33384 33517 33383 Face 69124 33769 33768 33643 Face 69125 33644 33769 33643 Face 69126 32358 32470 32357 Face 69127 32470 32587 32469 Face 69128 30894 30995 30893 Face 69129 31294 31397 31396 Face 69130 30888 30889 30989 Face 69131 30889 30990 30989 Face 69132 30051 30050 29989 Face 69133 32084 32188 32083 Face 69134 29898 29897 29843 Face 69135 29844 29898 29843 Face 69136 29956 29955 29897 Face 69137 29898 29956 29897 Face 69138 30017 30016 29955 Face 69139 29956 30017 29955 Face 69140 30017 30079 30078 Face 69141 30016 30017 30078 Face 69142 30079 30141 30140 Face 69143 30078 30079 30140 Face 69144 30141 30205 30204 Face 69145 30140 30141 30204 Face 69146 30205 30270 30269 Face 69147 30204 30205 30269 Face 69148 30337 30336 30269 Face 69149 30270 30337 30269 Face 69150 30404 30403 30336 Face 69151 30337 30404 30336 Face 69152 30475 30474 30403 Face 69153 30404 30475 30403 Face 69154 30560 30559 30474 Face 69155 30475 30560 30474 Face 69156 30654 30653 30559 Face 69157 30560 30654 30559 Face 69158 30753 30752 30653 Face 69159 30654 30753 30653 Face 69160 30859 30858 30752 Face 69161 30753 30859 30752 Face 69162 30960 30959 30858 Face 69163 30859 30960 30858 Face 69164 31059 31058 30959 Face 69165 30960 31059 30959 Face 69166 31158 31157 31058 Face 69167 31059 31158 31058 Face 69168 31158 31259 31157 Face 69169 31362 31361 31258 Face 69170 31466 31465 31361 Face 69171 31362 31466 31361 Face 69172 31575 31574 31465 Face 69173 31466 31575 31465 Face 69174 31575 31689 31688 Face 69175 31574 31575 31688 Face 69176 31801 31800 31688 Face 69177 31689 31801 31688 Face 69178 31801 31908 31800 Face 69179 32816 32815 32682 Face 69180 32683 32816 32682 Face 69181 32948 32947 32815 Face 69182 32816 32948 32815 Face 69183 33082 33081 32947 Face 69184 32948 33082 32947 Face 69185 33217 33216 33081 Face 69186 33082 33217 33081 Face 69187 33353 33352 33216 Face 69188 33217 33353 33216 Face 69189 33486 33485 33352 Face 69190 33353 33486 33352 Face 69191 33613 33612 33485 Face 69192 33486 33613 33485 Face 69193 33738 33737 33612 Face 69194 33613 33738 33612 Face 69195 33864 33863 33737 Face 69196 33738 33864 33737 Face 69197 33991 33990 33863 Face 69198 33864 33991 33863 Face 69199 34116 34115 33990 Face 69200 33991 34116 33990 Face 69201 33290 33924 12349 Face 69202 34164 21447 21448 Face 69203 13473 13474 34239 Face 69204 13474 6727 6726 Face 69205 34164 16835 21542 Face 69206 15739 9323 5749 Face 69207 29990 29989 29931 Face 69208 29990 30051 29989 Face 69209 29932 29931 29877 Face 69210 31073 31072 30973 Face 69211 31935 32040 31934 Face 69212 31094 31093 30994 Face 69213 30447 30446 30379 Face 69214 32252 32251 32147 Face 69215 30995 31094 30994 Face 69216 32847 32846 32713 Face 69217 32714 32713 32586 Face 69218 31530 31529 31423 Face 69219 32714 32847 32713 Face 69220 29934 29992 29933 Face 69221 31845 31844 31732 Face 69222 32462 32461 32349 Face 69223 32136 32240 32135 Face 69224 30037 30099 30098 Face 69225 32350 32462 32349 Face 69226 3465 12829 3338 Face 69227 30098 30099 30160 Face 69228 31479 31588 31478 Face 69229 31321 31218 11170 Face 69230 33235 33234 33099 Face 69231 33100 33235 33099 Face 69232 30674 30773 30673 Face 69233 30879 30878 30772 Face 69234 30225 30290 30289 Face 69235 30424 30423 30356 Face 69236 32140 32244 32139 Face 69237 32350 32349 32243 Face 69238 32140 32139 32035 Face 69239 32244 32243 32139 Face 69240 33505 33632 33504 Face 69241 33505 33504 33371 Face 69242 26875 28290 26760 Face 69243 5743 9508 5871 Face 69244 26875 26760 34267 Face 69245 34268 26875 34267 Face 69246 34268 34267 34144 Face 69247 34145 34268 34144 Face 69248 32252 32358 32251 Face 69249 32587 32586 32469 Face 69250 31094 31193 31093 Face 69251 31293 31294 31396 Face 69252 32147 32251 32146 Face 69253 32248 32354 32247 Face 69254 29932 29990 29931 Face 69255 26875 27133 28290 Face 69256 29899 29898 29844 Face 69257 29845 29899 29844 Face 69258 29957 29956 29898 Face 69259 29899 29957 29898 Face 69260 30018 30017 29956 Face 69261 29957 30018 29956 Face 69262 30018 30080 30079 Face 69263 30017 30018 30079 Face 69264 30080 30142 30141 Face 69265 30079 30080 30141 Face 69266 30142 30206 30205 Face 69267 30141 30142 30205 Face 69268 30271 30270 30205 Face 69269 30206 30271 30205 Face 69270 30338 30337 30270 Face 69271 30271 30338 30270 Face 69272 30405 30404 30337 Face 69273 30338 30405 30337 Face 69274 30476 30475 30404 Face 69275 30405 30476 30404 Face 69276 30561 30560 30475 Face 69277 30476 30561 30475 Face 69278 30655 30654 30560 Face 69279 30561 30655 30560 Face 69280 30754 30753 30654 Face 69281 30655 30754 30654 Face 69282 30860 30859 30753 Face 69283 30754 30860 30753 Face 69284 30961 30960 30859 Face 69285 30860 30961 30859 Face 69286 31060 31059 30960 Face 69287 30961 31060 30960 Face 69288 31159 31158 31059 Face 69289 31060 31159 31059 Face 69290 31260 31259 31158 Face 69291 31159 31260 31158 Face 69292 31467 31466 31362 Face 69293 31363 31467 31362 Face 69294 31576 31575 31466 Face 69295 31467 31576 31466 Face 69296 31690 31689 31575 Face 69297 31576 31690 31575 Face 69298 31802 31801 31689 Face 69299 31690 31802 31689 Face 69300 31802 31909 31908 Face 69301 31801 31802 31908 Face 69302 32817 32816 32683 Face 69303 32684 32817 32683 Face 69304 32949 32948 32816 Face 69305 32817 32949 32816 Face 69306 33083 33082 32948 Face 69307 32949 33083 32948 Face 69308 33218 33217 33082 Face 69309 33083 33218 33082 Face 69310 33354 33353 33217 Face 69311 33218 33354 33217 Face 69312 33487 33486 33353 Face 69313 33354 33487 33353 Face 69314 33614 33613 33486 Face 69315 33487 33614 33486 Face 69316 33739 33738 33613 Face 69317 33614 33739 33613 Face 69318 33865 33864 33738 Face 69319 33739 33865 33738 Face 69320 33992 33991 33864 Face 69321 33865 33992 33864 Face 69322 34117 34116 33991 Face 69323 33992 34117 33991 Face 69324 20446 33192 20445 Face 69325 28409 18036 16869 Face 69326 6823 26186 6824 Face 69327 30220 30285 30219 Face 69328 29878 29932 29877 Face 69329 30243 30242 30178 Face 69330 30372 30373 30439 Face 69331 30307 30306 30241 Face 69332 30973 30972 30871 Face 69333 32466 32465 32353 Face 69334 31501 31610 31609 Face 69335 31193 31192 31093 Face 69336 31939 32044 31938 Face 69337 32148 32147 32043 Face 69338 32066 32170 32065 Face 69339 31764 31876 31763 Face 69340 31113 31112 31016 Face 69341 31733 31732 31618 Face 69342 32579 32578 32461 Face 69343 30053 30052 29991 Face 69344 29976 29975 29917 Face 69345 32462 32579 32461 Face 69346 29918 29976 29917 Face 69347 30037 30036 29975 Face 69348 31814 31813 31701 Face 69349 34258 34257 34134 Face 69350 29994 29993 29935 Face 69351 31073 31172 31072 Face 69352 33371 33370 33234 Face 69353 33235 33371 33234 Face 69354 33371 33504 33370 Face 69355 33504 33503 33370 Face 69356 30224 30225 30289 Face 69357 30357 30356 30289 Face 69358 30357 30424 30356 Face 69359 30290 30357 30289 Face 69360 31824 31931 31823 Face 69361 32036 32140 32035 Face 69362 30356 30423 30355 Face 69363 30494 30493 30422 Face 69364 31482 31591 31481 Face 69365 31591 31590 31481 Face 69366 31113 31212 31112 Face 69367 33657 33656 33529 Face 69368 32066 32065 31960 Face 69369 31845 31952 31844 Face 69370 32148 32252 32147 Face 69371 32470 32469 32357 Face 69372 31193 31294 31293 Face 69373 31192 31193 31293 Face 69374 32353 32465 32352 Face 69375 31420 31526 31419 Face 69376 30179 30178 30116 Face 69377 32869 32868 32735 Face 69378 29900 29899 29845 Face 69379 29846 29900 29845 Face 69380 29958 29957 29899 Face 69381 29900 29958 29899 Face 69382 30019 30018 29957 Face 69383 29958 30019 29957 Face 69384 30019 30081 30080 Face 69385 30018 30019 30080 Face 69386 30081 30143 30142 Face 69387 30080 30081 30142 Face 69388 30143 30207 30206 Face 69389 30142 30143 30206 Face 69390 30272 30271 30206 Face 69391 30207 30272 30206 Face 69392 30339 30338 30271 Face 69393 30272 30339 30271 Face 69394 30406 30405 30338 Face 69395 30339 30406 30338 Face 69396 30477 30476 30405 Face 69397 30406 30477 30405 Face 69398 30562 30561 30476 Face 69399 30477 30562 30476 Face 69400 30656 30655 30561 Face 69401 30562 30656 30561 Face 69402 30755 30754 30655 Face 69403 30656 30755 30655 Face 69404 30861 30860 30754 Face 69405 30755 30861 30754 Face 69406 30962 30961 30860 Face 69407 30861 30962 30860 Face 69408 31061 31060 30961 Face 69409 30962 31061 30961 Face 69410 31160 31159 31060 Face 69411 31061 31160 31060 Face 69412 31261 31260 31159 Face 69413 31160 31261 31159 Face 69414 31261 31364 31260 Face 69415 31468 31467 31363 Face 69416 31577 31576 31467 Face 69417 31468 31577 31467 Face 69418 31691 31690 31576 Face 69419 31577 31691 31576 Face 69420 31691 31803 31802 Face 69421 31690 31691 31802 Face 69422 31803 31910 31909 Face 69423 31802 31803 31909 Face 69424 31910 32015 31909 Face 69425 32818 32817 32684 Face 69426 32685 32818 32684 Face 69427 32950 32949 32817 Face 69428 32818 32950 32817 Face 69429 33084 33083 32949 Face 69430 32950 33084 32949 Face 69431 33219 33218 33083 Face 69432 33084 33219 33083 Face 69433 33355 33354 33218 Face 69434 33219 33355 33218 Face 69435 33488 33487 33354 Face 69436 33355 33488 33354 Face 69437 33615 33614 33487 Face 69438 33488 33615 33487 Face 69439 33740 33739 33614 Face 69440 33615 33740 33614 Face 69441 33866 33865 33739 Face 69442 33740 33866 33739 Face 69443 33993 33992 33865 Face 69444 33866 33993 33865 Face 69445 34118 34117 33992 Face 69446 33993 34118 33992 Face 69447 21539 21444 21540 Face 69448 33719 33845 16684 Face 69449 16744 33845 16685 Face 69450 33845 16744 16684 Face 69451 16684 16744 16743 Face 69452 17644 1792 34835 Face 69453 1792 17655 34835 Face 69454 17655 34095 34835 Face 69455 34095 33971 34835 Face 69456 33971 33843 34835 Face 69457 33843 33716 34835 Face 69458 33716 33591 34835 Face 69459 33591 33464 34835 Face 69460 33464 33331 34835 Face 69461 33331 19200 34835 Face 69462 19200 20362 34835 Face 69463 20362 20363 34835 Face 69464 20363 20364 34835 Face 69465 20364 20365 34835 Face 69466 20365 13075 34835 Face 69467 13075 18072 34835 Face 69468 18072 18073 34835 Face 69469 18073 1875 34835 Face 69470 1875 20455 34835 Face 69471 20455 19883 34835 Face 69472 19883 18167 34835 Face 69473 18167 17644 34835 ================================================ FILE: models/bunny10k.m ================================================ Vertex 1 -0.0418663 0.0340021 -0.00580283 Vertex 2 -0.0380666 0.0385186 -0.00730796 Vertex 3 0.00621941 0.0351341 0.00654928 Vertex 4 0.021677 0.0354914 0.00935068 Vertex 5 -0.0324992 0.033739 0.00907408 Vertex 6 0.0174901 0.0346463 0.0220409 Vertex 7 -0.0525671 0.0335472 0.0123651 Vertex 8 -0.0360812 0.0358497 0.0136623 Vertex 9 -0.0510279 0.0336678 0.0250302 Vertex 10 0.00852878 0.034888 0.0362651 Vertex 11 -0.0348346 0.0347214 0.0345782 Vertex 12 -0.0149936 0.0395459 0.0398583 Vertex 13 -0.0631142 0.178334 -0.0583576 Vertex 14 -0.0926613 0.122825 0.0414622 Vertex 15 0.0334188 0.115464 0.00204907 Vertex 16 0.00150188 0.0938741 0.0550191 Vertex 17 0.0122157 0.0346138 -0.0197432 Vertex 18 0.057752 0.0523416 0.0181873 Vertex 19 -0.0203431 0.186558 -0.0166005 Vertex 20 -0.0706835 0.155594 0.0053992 Vertex 21 -0.049291 0.131272 -0.000642385 Vertex 22 -0.0654945 0.0398115 -0.0063825 Vertex 23 -0.0597544 0.151092 0.0347772 Vertex 24 -0.00479883 0.0826783 -0.0376925 Vertex 25 0.0154275 0.0350916 0.0411096 Vertex 26 -0.0274456 0.0382197 0.0539829 Vertex 27 0.00866181 0.128565 0.0271896 Vertex 28 -0.0849159 0.123546 -0.00333555 Vertex 29 -0.0427254 0.0358312 -0.0275925 Vertex 30 -0.0634853 0.0904216 0.0451002 Vertex 31 0.0371254 0.0869172 -0.0157926 Vertex 32 -0.0808762 0.0733317 0.00350919 Vertex 33 -0.0870329 0.152942 0.0187545 Vertex 34 0.0344933 0.0929192 0.0394802 Vertex 35 -0.0606157 0.0459479 0.0402046 Vertex 36 0.0106278 0.12033 -0.0136749 Vertex 37 -0.00975768 0.167025 -0.0223761 Vertex 38 -0.0486234 0.0532712 -0.0094518 Vertex 39 -0.064755 0.068231 0.0343382 Vertex 40 -0.0827096 0.131285 0.0511192 Vertex 41 -0.0737739 0.0878479 -0.0153893 Vertex 42 -0.0680885 0.16093 -0.05501 Vertex 43 -0.0370064 0.121579 0.0285082 Vertex 44 -0.027701 0.0549269 0.0368456 Vertex 45 0.0383993 0.0413521 -0.00190432 Vertex 46 0.0577041 0.0703778 0.00716237 Vertex 47 -0.0777137 0.177848 -0.0500546 Vertex 48 -0.0650925 0.142629 -0.00933509 Vertex 49 0.0181983 0.0768373 0.0527356 Vertex 50 -0.0304781 0.0523954 -0.0163632 Vertex 51 -0.0913588 0.113353 0.0143394 Vertex 52 -0.0510836 0.145457 -0.000907293 Vertex 53 -0.0444613 0.12936 0.0182577 Vertex 54 -0.0194987 0.0828823 0.05729 Vertex 55 0.0193474 0.0551603 -0.0276297 Vertex 56 -0.0213746 0.0936314 -0.0333712 Vertex 57 -0.0716377 0.0368114 0.00909586 Vertex 58 -0.0735089 0.120392 0.0535609 Vertex 59 0.034591 0.113857 0.0224952 Vertex 60 -0.0790692 0.0804499 0.033529 Vertex 61 -0.0311696 0.0749025 -0.031542 Vertex 62 0.0100369 0.130324 0.00340984 Vertex 63 -0.0581623 0.155642 0.0142378 Vertex 64 -0.0523454 0.059725 0.0287459 Vertex 65 -0.0778099 0.148638 -0.00388521 Vertex 66 0.0502975 0.0560957 -0.00457555 Vertex 67 -0.0298463 0.0958488 -0.0239617 Vertex 68 -0.0596993 0.0345337 0.0416145 Vertex 69 -0.0142526 0.181479 -0.0279552 Vertex 70 -0.0335185 0.0974234 0.0440535 Vertex 71 0.0553211 0.0622297 0.0271921 Vertex 72 -0.089555 0.092956 0.0194329 Vertex 73 -0.0354636 0.172718 -0.000342919 Vertex 74 -0.0778403 0.10982 0.0432074 Vertex 75 0.0437747 0.084485 0.0264379 Vertex 76 -0.061825 0.164563 -0.0576805 Vertex 77 -0.00773495 0.12664 -0.00628182 Vertex 78 -0.039497 0.0436994 0.0413132 Vertex 79 0.0122013 0.0878954 -0.0308742 Vertex 80 -0.09096 0.148814 0.0141536 Vertex 81 -0.0501563 0.11976 0.0326732 Vertex 82 -0.0568852 0.111179 -0.0170834 Vertex 83 -0.0391149 0.0337868 -0.0291782 Vertex 84 0.0455252 0.0918117 0.00617298 Vertex 85 -0.00149547 0.119691 0.0381347 Vertex 86 0.00250176 0.0620246 0.0566613 Vertex 87 -0.0725091 0.147853 -0.0287195 Vertex 88 -0.0667502 0.0337781 -0.00695475 Vertex 89 -0.0706528 0.0621972 0.0100461 Vertex 90 -0.0132407 0.164048 -0.012311 Vertex 91 -0.0532393 0.0448331 0.0206817 Vertex 92 -0.0164815 0.0515035 0.0485835 Vertex 93 -0.0655548 0.153788 -0.00146085 Vertex 94 -0.0509182 0.146274 0.0133981 Vertex 95 -0.00957846 0.178815 -0.0287373 Vertex 96 -0.0836424 0.0924862 -0.00555232 Vertex 97 0.0384903 0.0499056 0.0320993 Vertex 98 0.0240424 0.122784 0.0256717 Vertex 99 -0.0137183 0.0628763 -0.0368336 Vertex 100 -0.0345208 0.0633716 0.0403553 Vertex 101 -0.0728479 0.14776 0.0416103 Vertex 102 -0.0358756 0.107103 -0.0202685 Vertex 103 -0.0537766 0.0826585 -0.0215583 Vertex 104 -0.0672891 0.178209 -0.0595336 Vertex 105 0.00532997 0.0389553 -0.00830106 Vertex 106 -0.0588103 0.157344 0.00530008 Vertex 107 0.0339626 0.0356317 0.0117064 Vertex 108 0.0335254 0.101204 -0.0131717 Vertex 109 -0.0385029 0.0346069 0.040918 Vertex 110 -0.0842996 0.0965857 0.0297797 Vertex 111 0.0104112 0.0375138 -0.0230668 Vertex 112 -0.0246656 0.0492403 -0.0269082 Vertex 113 -0.0749499 0.112554 -0.00662315 Vertex 114 0.0184707 0.107054 0.0413783 Vertex 115 0.0552084 0.0493743 0.00621284 Vertex 116 -0.0610891 0.0339525 0.017372 Vertex 117 -0.0670049 0.0372923 0.032499 Vertex 118 -0.0634989 0.108392 0.0384413 Vertex 119 0.0358388 0.063303 0.0376893 Vertex 120 -0.0148223 0.129108 0.012888 Vertex 121 -0.0667756 0.124253 0.0509201 Vertex 122 0.0499455 0.0733656 0.0164225 Vertex 123 -0.0181454 0.0347978 0.0451006 Vertex 124 -0.0356288 0.0533886 -0.010251 Vertex 125 -0.0306281 0.0831438 0.0423752 Vertex 126 -0.0258016 0.0867079 -0.0364604 Vertex 127 0.0137867 0.0377633 0.0443361 Vertex 128 0.0191388 0.0356129 -0.00667825 Vertex 129 0.0451032 0.0777437 0.000209071 Vertex 130 -0.0505797 0.0528906 0.0145102 Vertex 131 -0.0259323 0.124597 0.000115118 Vertex 132 -0.0946899 0.124172 0.0202666 Vertex 133 -0.0662037 0.154495 -0.0505507 Vertex 134 0.0070795 0.101453 -0.021277 Vertex 135 -0.0265805 0.0377426 0.0157053 Vertex 136 -0.087976 0.141871 0.0376917 Vertex 137 -0.0160134 0.0959893 0.0521651 Vertex 138 -0.0589977 0.125247 -0.00779139 Vertex 139 -0.0188175 0.159674 -0.00630165 Vertex 140 -0.0564911 0.0400264 0.0468768 Vertex 141 -0.0169683 0.186741 -0.0196674 Vertex 142 0.0593498 0.066038 0.0207029 Vertex 143 0.037704 0.0574555 -0.00668675 Vertex 144 0.00242535 0.0343652 0.00462872 Vertex 145 -0.034222 0.0422724 0.0479221 Vertex 146 -0.0367537 0.0783235 -0.0195335 Vertex 147 -0.0686919 0.0750175 -0.0147112 Vertex 148 -0.0345377 0.0353482 -0.0311793 Vertex 149 -0.0449507 0.157934 0.00683281 Vertex 150 -0.0515288 0.0559219 0.0167726 Vertex 151 -0.089438 0.113514 0.0412091 Vertex 152 -0.0570856 0.153101 -0.000954757 Vertex 153 -0.0284906 0.0932063 0.0444855 Vertex 154 -0.0654928 0.0818627 0.0433416 Vertex 155 -0.0185134 0.0473863 0.05026 Vertex 156 -0.0865431 0.106355 0.0183534 Vertex 157 -0.0772499 0.172214 -0.0459981 Vertex 158 0.004329 0.114453 -0.0192954 Vertex 159 -0.0681398 0.156014 0.0252192 Vertex 160 0.0260218 0.0493062 -0.0196675 Vertex 161 0.0233024 0.124378 0.00401489 Vertex 162 0.02054 0.116646 0.0351499 Vertex 163 0.0434163 0.0464179 0.0294988 Vertex 164 -0.077237 0.0721326 0.0266059 Vertex 165 0.0463602 0.0692197 0.00260588 Vertex 166 -0.0294591 0.0367076 -0.0187628 Vertex 167 -0.058126 0.0494622 0.00265482 Vertex 168 -0.0451547 0.0437693 -0.0122411 Vertex 169 -0.0755097 0.135846 0.0506323 Vertex 170 -0.0513643 0.132495 0.031006 Vertex 171 -0.0454912 0.0719252 0.0419203 Vertex 172 -0.0665925 0.064199 -0.00375071 Vertex 173 -0.0874441 0.0860134 0.00347726 Vertex 174 0.00569987 0.0949071 -0.0304911 Vertex 175 -0.0374161 0.12162 -0.0106267 Vertex 176 -0.0618223 0.170491 -0.0617288 Vertex 177 0.00769138 0.039029 0.0323953 Vertex 178 -0.0695902 0.113495 0.0492959 Vertex 179 -0.0688202 0.180176 -0.0531787 Vertex 180 -0.0482072 0.0335431 -0.012174 Vertex 181 -0.0148262 0.181632 -0.021586 Vertex 182 0.0503042 0.0691243 0.0253774 Vertex 183 0.0426741 0.0972641 0.0231497 Vertex 184 0.0343607 0.0505331 -0.00657713 Vertex 185 -0.00149572 0.0505531 0.0529099 Vertex 186 0.0314957 0.0386039 0.0249642 Vertex 187 -0.0620515 0.035927 0.0204607 Vertex 188 -0.0623817 0.147548 -0.00757469 Vertex 189 -0.0683794 0.0434664 0.00169373 Vertex 190 0.0606167 0.0609422 0.00915424 Vertex 191 -0.0396922 0.0460798 -0.021311 Vertex 192 0.0237088 0.0942271 0.0467477 Vertex 193 -0.0547181 0.0708998 -0.0155975 Vertex 194 0.0108694 0.130662 0.0179509 Vertex 195 -0.0536146 0.150855 0.0243962 Vertex 196 -0.047699 0.144615 0.00435323 Vertex 197 -0.0406946 0.0340162 0.0268873 Vertex 198 -0.0258761 0.0796032 0.0512286 Vertex 199 -0.0055446 0.0384588 0.0102869 Vertex 200 -0.00862356 0.0451919 -0.0286362 Vertex 201 -0.0762512 0.156264 -0.00677505 Vertex 202 -0.0328048 0.0886955 -0.0250147 Vertex 203 -0.085121 0.108927 0.00536277 Vertex 204 0.0205756 0.0550317 0.0471809 Vertex 205 -0.0412993 0.127471 0.0164976 Vertex 206 0.0187342 0.112585 -0.0153321 Vertex 207 -0.0227837 0.0742285 -0.0385317 Vertex 208 -0.0715256 0.0958228 0.0413941 Vertex 209 0.00810435 0.0348429 0.0181346 Vertex 210 -0.0870553 0.118453 0.000244653 Vertex 211 0.0361089 0.0577094 0.0344737 Vertex 212 -0.0500652 0.125773 -0.00688378 Vertex 213 -0.00841973 0.128157 0.0268439 Vertex 214 -0.0274771 0.120676 0.0274866 Vertex 215 -0.0111259 0.174182 -0.0282833 Vertex 216 0.0409317 0.0971197 -0.00479362 Vertex 217 -0.0241215 0.0944713 0.0461972 Vertex 218 -0.00947876 0.108641 0.0432746 Vertex 219 -0.0241861 0.0351713 0.0521271 Vertex 220 -0.0896787 0.135012 0.00721892 Vertex 221 -0.0555164 0.0482866 0.0387265 Vertex 222 -0.0340535 0.158097 0.00328753 Vertex 223 -0.0759299 0.126701 -0.00794305 Vertex 224 -0.0524198 0.0648658 0.0346087 Vertex 225 -0.0518518 0.0970732 -0.0222063 Vertex 226 0.0464078 0.0756596 0.0165703 Vertex 227 0.00679595 0.0352467 -0.0139815 Vertex 228 0.00924009 0.0846665 0.0556174 Vertex 229 -0.0861064 0.0806138 0.0174966 Vertex 230 -0.0675754 0.0334584 0.000400215 Vertex 231 -0.043284 0.169832 -0.00794427 Vertex 232 0.0187103 0.0342934 0.0023932 Vertex 233 -0.0709691 0.153934 -0.0469289 Vertex 234 0.0296359 0.112746 0.0324848 Vertex 235 -0.0797904 0.152563 0.0316147 Vertex 236 -0.0465092 0.0776139 0.042786 Vertex 237 -0.0155135 0.0631057 0.0533345 Vertex 238 -0.0168218 0.086916 -0.0386596 Vertex 239 -0.0401934 0.0365351 0.0429119 Vertex 240 0.0262523 0.076131 -0.0243472 Vertex 241 0.00647697 0.0459611 0.0484012 Vertex 242 -0.0216233 0.0450569 -0.0280185 Vertex 243 -0.020486 0.18455 -0.0138786 Vertex 244 -0.0627252 0.0416196 0.0257026 Vertex 245 0.0488884 0.0431235 0.0112233 Vertex 246 0.0455013 0.0583861 0.0319381 Vertex 247 -0.0351753 0.160922 -0.000113953 Vertex 248 -0.0607657 0.139716 -0.00595313 Vertex 249 -0.0760841 0.104861 0.0354581 Vertex 250 -0.0348898 0.0767003 -0.020496 Vertex 251 -0.0607324 0.0592584 0.00571875 Vertex 252 -0.0876142 0.116272 0.0465171 Vertex 253 -0.0424793 0.0958739 0.0423242 Vertex 254 -0.0672273 0.135447 0.0449702 Vertex 255 -0.0414124 0.128336 0.00169512 Vertex 256 -0.0904343 0.136488 0.021207 Vertex 257 -0.0601827 0.0460596 0.0101722 Vertex 258 -0.064973 0.0365283 0.0405192 Vertex 259 0.0378045 0.0701003 -0.0128173 Vertex 260 -0.0204702 0.16083 -0.0136222 Vertex 261 -0.091649 0.146116 0.0221478 Vertex 262 -0.0304896 0.0559845 0.0366491 Vertex 263 0.0472621 0.0627303 -0.00287883 Vertex 264 -0.00248889 0.101618 0.0440339 Vertex 265 0.000818555 0.130756 0.00282721 Vertex 266 -0.066871 0.0626922 0.0228964 Vertex 267 0.0407616 0.105622 0.0111617 Vertex 268 -0.0471043 0.0355495 0.00808039 Vertex 269 -0.0759405 0.177963 -0.0471435 Vertex 270 -0.0726014 0.0365856 0.00586956 Vertex 271 -0.0268762 0.104433 -0.0231038 Vertex 272 -0.0770239 0.141306 -0.00545257 Vertex 273 -0.0508117 0.0354248 -0.0125858 Vertex 274 -0.0709391 0.109631 0.0395791 Vertex 275 -0.026722 0.0386646 -0.0162927 Vertex 276 -0.0325248 0.0371997 0.032926 Vertex 277 -0.0264744 0.0486202 0.0485825 Vertex 278 -0.0124346 0.0985527 -0.0264295 Vertex 279 0.0109305 0.0685438 0.0544088 Vertex 280 -0.0794073 0.0772395 -0.00557672 Vertex 281 -0.0606205 0.136712 0.0351771 Vertex 282 0.0113671 0.0479427 -0.0268055 Vertex 283 0.0433583 0.0505545 -0.0063311 Vertex 284 0.0226361 0.118891 -0.00814073 Vertex 285 0.0576036 0.0717386 0.0163116 Vertex 286 -0.0764447 0.154164 -0.0158984 Vertex 287 -0.00550346 0.076042 0.0585145 Vertex 288 -0.0261594 0.066324 0.0406106 Vertex 289 -0.0514931 0.156432 0.0104716 Vertex 290 -0.0355869 0.116022 -0.0147547 Vertex 291 -0.071904 0.103673 -0.0126696 Vertex 292 -0.0033633 0.038102 0.0128662 Vertex 293 -0.0345116 0.111154 0.0360997 Vertex 294 -0.0888256 0.100978 0.0104077 Vertex 295 0.0231755 0.0916964 -0.0230758 Vertex 296 -0.0464999 0.104301 0.0412272 Vertex 297 0.042292 0.0669509 0.0276386 Vertex 298 -0.0540417 0.148675 -0.00217424 Vertex 299 -0.029008 0.0478606 -0.0250513 Vertex 300 -0.0809707 0.15134 0.0022444 Vertex 301 -0.0314643 0.126198 0.0141678 Vertex 302 -0.0361107 0.0459963 0.0412564 Vertex 303 -0.0281559 0.0380199 0.00608926 Vertex 304 0.0329815 0.112282 -0.00498623 Vertex 305 -0.0930586 0.122743 0.0102788 Vertex 306 -0.0114184 0.169868 -0.0184586 Vertex 307 -0.0544937 0.112536 0.0358256 Vertex 308 -0.0187325 0.0374026 0.0529482 Vertex 309 -0.0441151 0.0643553 0.040206 Vertex 310 -0.0536272 0.0632225 -0.00927695 Vertex 311 -0.0627985 0.161541 -0.0235962 Vertex 312 0.0153228 0.0362397 0.00366285 Vertex 313 0.0213151 0.0393899 0.0411211 Vertex 314 -0.0230309 0.0906523 0.0522978 Vertex 315 -0.00847869 0.123725 0.0338017 Vertex 316 0.017237 0.0368135 -0.0176915 Vertex 317 -0.00317446 0.0951663 -0.0328247 Vertex 318 -0.0034975 0.0661744 0.0565538 Vertex 319 0.00824182 0.0753956 -0.0338579 Vertex 320 -0.0738713 0.116445 -0.00712552 Vertex 321 -0.0495471 0.140136 0.00640196 Vertex 322 -0.0514988 0.090386 0.0447021 Vertex 323 -0.0693701 0.141497 -0.00893397 Vertex 324 -0.0467828 0.168244 0.000200438 Vertex 325 -0.0552831 0.0478834 0.0286656 Vertex 326 -0.0326228 0.0506668 -0.0115219 Vertex 327 0.00810763 0.0366956 0.0273459 Vertex 328 -0.0562637 0.142432 0.0309288 Vertex 329 -0.0649682 0.034557 0.0300942 Vertex 330 -0.0719124 0.168014 -0.0470137 Vertex 331 0.00793957 0.0368635 -0.0077325 Vertex 332 0.0335588 0.0862851 0.0416032 Vertex 333 -0.0808546 0.140749 0.0461596 Vertex 334 -0.0749535 0.0823401 -0.0135889 Vertex 335 -0.0324125 0.0849398 -0.0275574 Vertex 336 -0.0144938 0.0897854 0.0566872 Vertex 337 -0.060807 0.170968 -0.0607383 Vertex 338 0.0562407 0.0648113 0.00118357 Vertex 339 -0.0706828 0.180611 -0.0569213 Vertex 340 -0.0692573 0.169753 -0.0288779 Vertex 341 -0.0314585 0.0335695 -0.0237257 Vertex 342 -0.0388285 0.0339925 0.000319116 Vertex 343 -0.0465551 0.0447198 -0.0107805 Vertex 344 -0.0564798 0.081975 0.044689 Vertex 345 -0.00663677 0.109707 -0.0221975 Vertex 346 -0.0903128 0.141958 0.0142327 Vertex 347 0.0182222 0.0631608 0.0491228 Vertex 348 -0.0444709 0.120321 -0.0132547 Vertex 349 -0.052342 0.035529 0.0457534 Vertex 350 0.0493794 0.0453908 0.0224152 Vertex 351 -0.0114889 0.103024 0.0436761 Vertex 352 0.0294478 0.0506302 0.0370841 Vertex 353 0.00450037 0.0427385 0.0456181 Vertex 354 -0.0298138 0.0344903 0.0411187 Vertex 355 -0.0334973 0.0859864 0.0423406 Vertex 356 0.00348136 0.111402 0.0420175 Vertex 357 0.00281822 0.126541 -0.00629609 Vertex 358 -0.0917743 0.120197 0.0434965 Vertex 359 -0.0636966 0.117092 0.044917 Vertex 360 -0.0474886 0.05462 0.0367747 Vertex 361 0.0240885 0.124582 0.018553 Vertex 362 0.0131476 0.100265 -0.0227775 Vertex 363 -0.0417165 0.069628 -0.0168617 Vertex 364 0.0313723 0.0597573 -0.0175925 Vertex 365 -0.0791963 0.108632 0.0349508 Vertex 366 -0.00405506 0.101077 0.0451334 Vertex 367 0.0174821 0.10039 0.0467276 Vertex 368 -0.0603705 0.118249 -0.0108601 Vertex 369 -0.0792333 0.169423 -0.0379787 Vertex 370 -0.0115711 0.100192 -0.0241483 Vertex 371 0.0126063 0.0576596 0.0514859 Vertex 372 0.0214264 0.0348625 -0.00133145 Vertex 373 0.00237701 0.131635 0.0162813 Vertex 374 -0.0587837 0.0940397 -0.0203993 Vertex 375 0.053394 0.0525543 0.0260735 Vertex 376 -0.0510278 0.0474301 0.0166894 Vertex 377 -0.0923003 0.132372 0.0212228 Vertex 378 0.0442448 0.0902943 -0.00180307 Vertex 379 -0.0926082 0.117405 0.0243082 Vertex 380 -0.0774969 0.130279 0.0531227 Vertex 381 -0.000233069 0.0988811 0.0510016 Vertex 382 -0.0855482 0.149965 0.0308161 Vertex 383 -0.0211482 0.169745 -0.0200914 Vertex 384 0.0162996 0.0623114 -0.0287447 Vertex 385 -0.0326324 0.0534241 -0.0105104 Vertex 386 -0.0166832 0.0525719 -0.0322771 Vertex 387 0.00144074 0.0344391 0.0153316 Vertex 388 -2.83383e-005 0.0370817 -0.0151505 Vertex 389 -0.0881296 0.100997 0.0213597 Vertex 390 -0.0576496 0.0629466 -0.00612077 Vertex 391 -0.0574991 0.105703 0.0407441 Vertex 392 -0.076218 0.0887607 0.0388797 Vertex 393 0.0377831 0.0813859 -0.0147095 Vertex 394 -0.00950118 0.06052 0.0554819 Vertex 395 -0.0592802 0.154415 0.0283608 Vertex 396 -0.0265191 0.0388768 0.0380618 Vertex 397 -0.0839703 0.0843113 0.0284366 Vertex 398 -0.0454967 0.109818 0.0383281 Vertex 399 -0.0142894 0.184628 -0.0268303 Vertex 400 -0.0728419 0.0642516 0.016748 Vertex 401 0.00839558 0.0418967 -0.0238735 Vertex 402 -0.0575351 0.0727864 0.0407731 Vertex 403 -0.0460388 0.0353834 -0.0203139 Vertex 404 -0.0837054 0.10067 -0.00361944 Vertex 405 -0.0680504 0.12005 0.0525411 Vertex 406 -0.0699102 0.14965 -0.0409667 Vertex 407 -0.0842752 0.141807 0.00320102 Vertex 408 -0.0197076 0.059653 0.0484949 Vertex 409 -0.0228186 0.161021 -0.00330981 Vertex 410 -0.0520295 0.0429585 0.0453289 Vertex 411 -0.0780015 0.155773 0.018849 Vertex 412 -0.0898642 0.114175 0.0316644 Vertex 413 -0.0669932 0.138471 -0.00790807 Vertex 414 -0.0900062 0.133811 0.0372136 Vertex 415 0.0184726 0.0851741 0.0505075 Vertex 416 -0.00864981 0.171144 -0.0247734 Vertex 417 -0.0581231 0.149655 0.0336366 Vertex 418 0.0536516 0.0710277 0.00477709 Vertex 419 -0.074971 0.152728 -0.0179063 Vertex 420 -0.0437659 0.0811743 -0.0201658 Vertex 421 -0.0625972 0.0348156 0.0215996 Vertex 422 -0.0187316 0.184448 -0.0230478 Vertex 423 0.0189601 0.036126 0.0191857 Vertex 424 -0.0667327 0.078026 -0.0171522 Vertex 425 -0.0217098 0.115215 -0.0159934 Vertex 426 -0.0511988 0.137011 0.0243968 Vertex 427 -0.0871031 0.0846537 0.0064784 Vertex 428 -0.0288615 0.0353967 0.01735 Vertex 429 0.00450017 0.0441843 0.0459802 Vertex 430 -0.035752 0.0415598 -0.0291214 Vertex 431 0.0309459 0.0700081 0.0411857 Vertex 432 0.000356348 0.0496808 -0.0306188 Vertex 433 0.020694 0.101208 -0.0211426 Vertex 434 0.0137336 0.122464 0.0333928 Vertex 435 -0.039222 0.0363262 0.0107899 Vertex 436 -0.0237576 0.0713185 -0.0373359 Vertex 437 0.0434691 0.0624283 0.0290897 Vertex 438 -0.0695561 0.0340783 0.00839793 Vertex 439 0.0124807 0.0949598 0.0504131 Vertex 440 0.0222832 0.066418 -0.0268569 Vertex 441 0.0265802 0.0345508 0.0130494 Vertex 442 -0.0564976 0.0959787 0.0438593 Vertex 443 0.00941817 0.0340541 0.000745804 Vertex 444 -0.0647783 0.173212 -0.0488362 Vertex 445 0.0265924 0.0466157 -0.0146569 Vertex 446 -0.0205217 0.0448565 0.0528623 Vertex 447 -0.0174935 0.0786826 0.056671 Vertex 448 -0.0678925 0.0435809 0.00801004 Vertex 449 0.00550075 0.0772523 0.0562045 Vertex 450 -0.0384668 0.0931237 0.0434147 Vertex 451 -0.065182 0.160968 -0.0576695 Vertex 452 -0.0321193 0.0366883 0.0508235 Vertex 453 0.0577493 0.0579199 0.00320063 Vertex 454 -0.0621264 0.0457845 0.0326787 Vertex 455 0.0373363 0.105992 0.0277645 Vertex 456 -0.00743438 0.120242 -0.0134406 Vertex 457 -0.0922148 0.11614 0.0373108 Vertex 458 -0.0304972 0.101559 0.0427282 Vertex 459 0.00750493 0.0561002 0.0528313 Vertex 460 -0.0589296 0.1241 0.041105 Vertex 461 -0.069998 0.157611 -0.0031485 Vertex 462 -0.0717761 0.0344583 0.000444464 Vertex 463 0.0305131 0.0418181 0.0291512 Vertex 464 -0.0846054 0.11036 0.02536 Vertex 465 -0.0558064 0.0562012 0.00862658 Vertex 466 0.0279019 0.110786 -0.0114065 Vertex 467 -0.0497522 0.0716181 0.0399477 Vertex 468 -0.0285281 0.0522637 0.0377683 Vertex 469 -0.00175042 0.0897209 -0.0353687 Vertex 470 0.0484396 0.0486951 -0.00266239 Vertex 471 0.0465387 0.0750529 0.00819241 Vertex 472 -0.0637641 0.044271 -0.0022694 Vertex 473 -0.0583136 0.145422 -0.00203607 Vertex 474 -0.0356427 0.112876 -0.017464 Vertex 475 0.00152343 0.0759482 0.0573355 Vertex 476 0.0331199 0.0754691 0.0408773 Vertex 477 -0.0290239 0.0918566 -0.0266024 Vertex 478 -0.0630792 0.17626 -0.0613621 Vertex 479 -0.0198183 0.158714 -0.00970491 Vertex 480 -0.000964682 0.0992981 -0.0251507 Vertex 481 -0.0733262 0.151241 -0.0368807 Vertex 482 -0.0444963 0.119293 0.0294103 Vertex 483 0.0177513 0.0462342 0.0429632 Vertex 484 -0.0846698 0.148755 0.00515607 Vertex 485 0.0213663 0.0593118 -0.0264401 Vertex 486 -0.040399 0.128703 0.00942739 Vertex 487 0.0393484 0.0561243 -0.00568756 Vertex 488 0.040097 0.105566 0.00218117 Vertex 489 -0.0654627 0.0598015 0.0150426 Vertex 490 -0.0744393 0.114503 0.0509494 Vertex 491 -0.0850289 0.111596 0.00326083 Vertex 492 -0.0885609 0.087538 0.0184581 Vertex 493 -0.0851404 0.125756 0.0494653 Vertex 494 0.0292061 0.055224 -0.0177993 Vertex 495 0.00897858 0.127106 -0.00499333 Vertex 496 -0.0725078 0.160609 -0.0083559 Vertex 497 -0.0237797 0.125538 0.0184413 Vertex 498 -0.0351354 0.165203 -0.0147634 Vertex 499 -0.0637376 0.15365 0.0326508 Vertex 500 -0.0630684 0.138136 0.036884 Vertex 501 0.00557978 0.101599 0.0456072 Vertex 502 -0.0273746 0.181651 -0.00921581 Vertex 503 -0.0476898 0.0679558 -0.0146484 Vertex 504 -0.0501571 0.0529434 0.0176286 Vertex 505 -0.0119274 0.182669 -0.0262872 Vertex 506 -0.0772165 0.0934484 -0.0125951 Vertex 507 0.00228793 0.0626666 -0.0335374 Vertex 508 -0.0115065 0.0517326 0.051159 Vertex 509 -0.0700187 0.074071 0.0369567 Vertex 510 -0.0415011 0.0506114 0.0394281 Vertex 511 -0.0489995 0.126854 0.0308899 Vertex 512 -0.0355277 0.0846755 0.0433772 Vertex 513 -0.0870454 0.128039 -0.000695728 Vertex 514 0.0411176 0.0661976 -0.00575682 Vertex 515 -0.0600876 0.0367271 0.0456071 Vertex 516 -0.0213985 0.181639 -0.0134576 Vertex 517 -0.0628733 0.0996403 -0.0179913 Vertex 518 0.0190867 0.0428243 -0.0216805 Vertex 519 0.0606816 0.0664976 0.015162 Vertex 520 -0.0915744 0.128321 0.0372423 Vertex 521 -0.0668846 0.117985 -0.00889164 Vertex 522 -0.0633398 0.0410523 0.0148679 Vertex 523 -0.0467665 0.152145 0.00944802 Vertex 524 -0.00149512 0.0562755 0.0546084 Vertex 525 -0.0353955 0.0337248 -0.0302701 Vertex 526 0.0315757 0.0914687 -0.0188156 Vertex 527 -0.0856435 0.0805169 0.00650219 Vertex 528 0.0405765 0.0793262 0.0323176 Vertex 529 0.0464062 0.0525822 0.0317783 Vertex 530 -0.0600908 0.115373 0.0375616 Vertex 531 -0.0545976 0.139948 -0.00193829 Vertex 532 -0.0528842 0.102762 -0.0205636 Vertex 533 -0.0689033 0.0887623 0.0428815 Vertex 534 -0.0387789 0.0392857 0.0427431 Vertex 535 0.018728 0.0549999 0.0480114 Vertex 536 -0.0481836 0.0335793 0.00422402 Vertex 537 -0.0320326 0.0609937 -0.0164107 Vertex 538 0.000700235 0.0374335 0.0215506 Vertex 539 -0.0892169 0.151457 0.0141575 Vertex 540 -0.0767777 0.176413 -0.0510191 Vertex 541 -0.0695434 0.0352232 -0.00418951 Vertex 542 0.0238242 0.0981836 0.0451545 Vertex 543 -0.0635974 0.151927 -0.0324488 Vertex 544 -0.035233 0.0374002 -0.014964 Vertex 545 -0.0366651 0.0353042 0.023032 Vertex 546 -0.0824089 0.107319 0.0275588 Vertex 547 -0.052057 0.15088 0.0153954 Vertex 548 -0.043573 0.126043 -0.00725208 Vertex 549 -0.0545162 0.049049 -0.0054035 Vertex 550 -0.0661875 0.165349 -0.0586121 Vertex 551 -0.0495023 0.0862453 0.0455995 Vertex 552 -0.0305455 0.0776911 -0.0335901 Vertex 553 -0.0650557 0.129761 0.0446036 Vertex 554 0.0236875 0.0373106 0.0299772 Vertex 555 0.0595491 0.0594739 0.0201736 Vertex 556 -0.0408044 0.0884947 -0.0224789 Vertex 557 -0.00387787 0.10737 -0.022403 Vertex 558 -0.0157548 0.0714554 -0.0386719 Vertex 559 0.0167127 0.0887461 0.050636 Vertex 560 -0.00871553 0.0642094 -0.0357226 Vertex 561 0.00633738 0.0581963 -0.0307089 Vertex 562 -0.0753023 0.155004 0.00375308 Vertex 563 -0.00849993 0.0787667 0.0579153 Vertex 564 -0.0104925 0.119661 0.037142 Vertex 565 -0.0414785 0.105663 0.0400022 Vertex 566 0.0257124 0.0795754 0.0477924 Vertex 567 0.0282931 0.118599 0.0272385 Vertex 568 -0.0222639 0.0783263 0.0546841 Vertex 569 -0.0630631 0.0351206 0.0420909 Vertex 570 -0.0767718 0.0716181 -0.00247133 Vertex 571 0.0138852 0.0348367 0.0283807 Vertex 572 -0.00250245 0.104479 0.0441797 Vertex 573 0.0401736 0.0801429 -0.00978947 Vertex 574 0.0410852 0.0394499 0.00526393 Vertex 575 -0.00196639 0.0392296 -0.0118812 Vertex 576 -0.068364 0.143961 0.043402 Vertex 577 -0.0915391 0.118654 0.00731945 Vertex 578 -0.0618299 0.0939366 -0.0189413 Vertex 579 -0.0164766 0.111102 -0.0196668 Vertex 580 -0.0813576 0.0734641 0.0155425 Vertex 581 -0.0150651 0.12575 -0.00315467 Vertex 582 -0.000130337 0.0395577 0.0357254 Vertex 583 -0.0895773 0.139272 0.0261794 Vertex 584 -0.0614844 0.158425 -0.031588 Vertex 585 0.0538065 0.0721186 0.0208488 Vertex 586 -0.0409497 0.0337305 -0.016439 Vertex 587 -0.00174908 0.0726707 -0.0356483 Vertex 588 -0.0176147 0.042187 -0.0278695 Vertex 589 -0.0265055 0.0946665 0.044662 Vertex 590 -0.0574961 0.0904385 0.0452768 Vertex 591 -0.0319348 0.125225 0.000800635 Vertex 592 0.00749105 0.050377 0.0513506 Vertex 593 -0.0346028 0.0344648 0.0366099 Vertex 594 0.0395569 0.0702481 -0.0107925 Vertex 595 -0.0832309 0.120353 0.049216 Vertex 596 -0.0340447 0.1653 -0.00374721 Vertex 597 -0.0810037 0.0777776 0.0280061 Vertex 598 -0.0822314 0.0842513 -0.00555381 Vertex 599 0.0112474 0.0724264 -0.0317987 Vertex 600 -0.0597828 0.0810723 -0.0197911 Vertex 601 -0.0445078 0.128204 0.0197407 Vertex 602 -0.0611638 0.0468972 0.00167818 Vertex 603 0.0547011 0.0728313 0.00929699 Vertex 604 -0.0106525 0.165176 -0.016643 Vertex 605 0.0049172 0.0339971 0.00916661 Vertex 606 0.0163088 0.048977 0.0444188 Vertex 607 -0.0416172 0.17268 -0.00599082 Vertex 608 -0.0683506 0.181259 -0.055895 Vertex 609 0.0323433 0.0592178 0.0396143 Vertex 610 0.0104481 0.102845 -0.020901 Vertex 611 -0.0740871 0.156873 -0.0259173 Vertex 612 -0.0479431 0.0356599 -0.0132734 Vertex 613 -0.0875073 0.0954698 0.00341799 Vertex 614 -0.0271171 0.059077 -0.028426 Vertex 615 0.0124992 0.111251 0.0392691 Vertex 616 0.0443256 0.0931523 0.0201621 Vertex 617 -0.0528475 0.140082 0.0254195 Vertex 618 -0.0544894 0.0594391 0.0238452 Vertex 619 -0.00948854 0.0965445 0.0534324 Vertex 620 0.0242315 0.0818412 -0.0251267 Vertex 621 -0.0384968 0.066293 0.0418062 Vertex 622 -0.0624591 0.155071 0.0054624 Vertex 623 0.00146529 0.0341167 -0.0177588 Vertex 624 -0.0124826 0.0701993 0.05486 Vertex 625 0.0011864 0.12951 0.0259323 Vertex 626 0.0172673 0.128465 0.0103258 Vertex 627 -0.0754641 0.149954 -0.0208706 Vertex 628 -0.0900228 0.148451 0.0254546 Vertex 629 -0.0441494 0.163638 -0.00943446 Vertex 630 -0.0526579 0.0504274 0.026653 Vertex 631 -0.0780191 0.149419 0.0383262 Vertex 632 -0.0297808 0.0348722 0.0494682 Vertex 633 -0.028101 0.0890412 0.0460663 Vertex 634 -0.0797368 0.119028 0.049952 Vertex 635 -0.0605051 0.128314 0.040613 Vertex 636 0.0164745 0.103092 0.0456772 Vertex 637 -0.0300755 0.123175 0.0220771 Vertex 638 0.0101281 0.105858 -0.0202342 Vertex 639 -0.0657288 0.163321 -0.0189522 Vertex 640 -0.0571213 0.0576422 0.000580071 Vertex 641 -0.0874054 0.110457 0.012344 Vertex 642 -0.0814183 0.138999 -0.00180871 Vertex 643 -0.0217957 0.119089 -0.0120655 Vertex 644 -0.0657515 0.154274 -0.0462128 Vertex 645 0.0313679 0.117954 0.0212794 Vertex 646 -0.0344941 0.171246 -0.00077903 Vertex 647 -0.00244861 0.0605864 0.0553645 Vertex 648 -0.0293764 0.039648 0.0531021 Vertex 649 -0.0626586 0.0676213 -0.0103966 Vertex 650 -0.0627949 0.167828 -0.0455908 Vertex 651 0.0301953 0.0476864 0.0346108 Vertex 652 0.00892319 0.0349264 0.0435129 Vertex 653 -0.0107349 0.0699421 -0.0371274 Vertex 654 0.0311277 0.0795524 0.0433085 Vertex 655 -0.0930288 0.116051 0.018311 Vertex 656 -0.0795939 0.112319 0.0461682 Vertex 657 0.0111874 0.0630268 0.0529412 Vertex 658 0.0388816 0.0927717 0.0335536 Vertex 659 -0.054019 0.0333099 0.015848 Vertex 660 -0.00109974 0.118227 -0.0153259 Vertex 661 0.0343906 0.0529675 -0.00763383 Vertex 662 -0.0349979 0.152158 8.20742e-005 Vertex 663 -0.0264587 0.0902029 -0.033595 Vertex 664 -0.0488828 0.108449 -0.0190525 Vertex 665 -0.00766545 0.0541253 -0.0331554 Vertex 666 0.0391712 0.0402919 0.0231925 Vertex 667 -0.0843731 0.110309 0.0377873 Vertex 668 -0.0893948 0.09291 0.012442 Vertex 669 -0.0296304 0.159454 -0.0131553 Vertex 670 -0.0174424 0.10313 -0.0232301 Vertex 671 -0.0284943 0.0674472 0.03888 Vertex 672 -0.0392444 0.0481623 -0.0129943 Vertex 673 0.0538716 0.0661448 0.0268494 Vertex 674 0.0200527 0.0618555 0.0482337 Vertex 675 -0.052947 0.1293 -0.00466978 Vertex 676 -0.0633366 0.0613129 -0.000511485 Vertex 677 -0.0544907 0.101557 0.0424048 Vertex 678 -0.0635064 0.100118 0.0422551 Vertex 679 -0.085625 0.079203 0.01151 Vertex 680 0.0117447 0.0343946 -0.0103375 Vertex 681 -0.0633409 0.155276 -0.011594 Vertex 682 -0.0859779 0.0910726 0.0273961 Vertex 683 -0.0346492 0.0577427 -0.0111408 Vertex 684 -0.0604976 0.0761414 0.0420756 Vertex 685 -0.0858069 0.133905 0.0470456 Vertex 686 -0.0234219 0.0537493 0.0424994 Vertex 687 -0.0710541 0.174778 -0.0424234 Vertex 688 -0.00649809 0.0703887 0.0571625 Vertex 689 -0.0458425 0.0985138 -0.0217256 Vertex 690 -0.0449923 0.0381195 -0.0222607 Vertex 691 -0.0547363 0.159762 -0.000811247 Vertex 692 -0.00115829 0.0378141 0.0044798 Vertex 693 -0.0636469 0.11387 0.0394431 Vertex 694 -0.0537592 0.0797599 -0.020636 Vertex 695 -0.0147266 0.0922559 -0.0359307 Vertex 696 -0.0642327 0.0431706 0.0367918 Vertex 697 0.0235192 0.107033 0.0392433 Vertex 698 0.00898082 0.0376394 0.0339008 Vertex 699 -0.0368013 0.0842007 -0.0223672 Vertex 700 0.0223344 0.0535713 -0.0254238 Vertex 701 -0.0245306 0.112636 0.0373469 Vertex 702 -0.0925801 0.120153 0.0312943 Vertex 703 -0.013506 0.0486161 0.0481837 Vertex 704 -0.0756189 0.168382 -0.0269354 Vertex 705 -0.0558038 0.116914 0.0367748 Vertex 706 -0.0404837 0.0818282 0.0429123 Vertex 707 -0.0620809 0.0336347 -0.00771095 Vertex 708 -0.0196387 0.0464931 -0.0280998 Vertex 709 0.00126756 0.0669175 -0.0339113 Vertex 710 -0.000497159 0.0856626 0.0573342 Vertex 711 0.034401 0.0461473 -0.00601616 Vertex 712 0.0407559 0.0844033 -0.0107694 Vertex 713 0.0131787 0.0793804 0.0542326 Vertex 714 0.00134052 0.0539375 -0.0306386 Vertex 715 -0.0504998 0.0931897 0.044287 Vertex 716 0.00749947 0.122404 0.035106 Vertex 717 0.0220365 0.0430228 -0.0147268 Vertex 718 0.0183573 0.0461568 -0.0227219 Vertex 719 -0.0204991 0.12085 0.0318342 Vertex 720 -0.0108296 0.0855471 -0.0384547 Vertex 721 -0.0625128 0.145366 0.0377954 Vertex 722 -0.0497796 0.0518319 0.0348836 Vertex 723 -0.0396703 0.036174 -0.00733977 Vertex 724 0.016382 0.0888799 -0.0281622 Vertex 725 0.00251128 0.0661582 0.0562906 Vertex 726 -0.0548438 0.043635 0.0177242 Vertex 727 0.0105065 0.107115 0.0414414 Vertex 728 0.0366581 0.0727136 0.0371657 Vertex 729 -0.0515001 0.0465582 0.0417907 Vertex 730 0.0164098 0.126062 -0.00187701 Vertex 731 -0.0457101 0.131722 0.0089192 Vertex 732 -0.00243741 0.0385239 0.0217416 Vertex 733 -0.0787639 0.0696569 0.0125705 Vertex 734 -0.0550812 0.153793 0.0226168 Vertex 735 0.00183737 0.0373069 0.04638 Vertex 736 -0.0597101 0.0723346 -0.0163812 Vertex 737 -0.0254927 0.0974122 0.0441083 Vertex 738 0.0442559 0.0973532 0.00916034 Vertex 739 0.0502575 0.0602229 -0.00418894 Vertex 740 -0.0788622 0.169438 -0.0409605 Vertex 741 -0.00234994 0.125819 -0.00745455 Vertex 742 -0.0380711 0.0340829 0.00944176 Vertex 743 -0.00945074 0.100225 0.0471086 Vertex 744 0.0285394 0.0735396 -0.0227021 Vertex 745 -0.0432329 0.156565 0.00586077 Vertex 746 -0.0233436 0.179984 -0.0199453 Vertex 747 -0.0249679 0.0851951 0.0529639 Vertex 748 0.000388646 0.0448955 -0.0263577 Vertex 749 0.0324736 0.0490215 0.0326282 Vertex 750 0.049267 0.0717276 0.00605578 Vertex 751 0.00650421 0.0883449 0.0558788 Vertex 752 -0.0354946 0.118017 0.0312708 Vertex 753 -0.0104985 0.0362063 -0.0254961 Vertex 754 -0.00707285 0.12974 0.0027455 Vertex 755 -0.0895401 0.135156 0.0272131 Vertex 756 0.00110427 0.111585 -0.0201254 Vertex 757 -0.0893497 0.130881 0.0042394 Vertex 758 -0.0138991 0.162654 -0.0155462 Vertex 759 -0.0369296 0.0455099 -0.0248207 Vertex 760 -0.021494 0.10578 0.0424616 Vertex 761 -0.0847817 0.111591 0.0313073 Vertex 762 -0.0139903 0.169817 -0.0169155 Vertex 763 -0.090059 0.136447 0.0142016 Vertex 764 0.0193881 0.0506007 -0.0247336 Vertex 765 -0.0566266 0.157159 0.00899778 Vertex 766 -0.0308996 0.107699 -0.0200324 Vertex 767 0.0250885 0.119458 -0.00473925 Vertex 768 -0.0088618 0.129865 0.0208462 Vertex 769 -0.0244855 0.0461464 0.0516096 Vertex 770 -0.0474662 0.0960033 0.0439936 Vertex 771 -0.00449702 0.0590031 0.0543234 Vertex 772 -0.0716387 0.0675256 0.0265031 Vertex 773 -0.0514866 0.0748352 0.0426181 Vertex 774 -0.0214969 0.0498836 0.0466158 Vertex 775 -0.0597745 0.0434652 0.0436848 Vertex 776 -0.0720681 0.0805547 0.0392361 Vertex 777 -0.053617 0.0500325 0.0119809 Vertex 778 -0.0416808 0.0622091 -0.0130274 Vertex 779 0.0238471 0.107154 -0.0155051 Vertex 780 -0.0114724 0.180094 -0.0295969 Vertex 781 -0.0223025 0.0957816 -0.0275832 Vertex 782 0.0123125 0.0680946 -0.0309662 Vertex 783 -0.0557216 0.125528 0.0387388 Vertex 784 -0.0829648 0.129479 -0.00406234 Vertex 785 -0.0658161 0.0866791 -0.018673 Vertex 786 0.0281352 0.0915776 0.0443357 Vertex 787 0.0583506 0.0662943 0.00413175 Vertex 788 -0.0906667 0.113308 0.0195238 Vertex 789 -0.0170835 0.187214 -0.0216216 Vertex 790 -0.0815948 0.123081 0.0504133 Vertex 791 -0.0363521 0.126723 0.0183002 Vertex 792 -0.0500595 0.117739 -0.014504 Vertex 793 -0.044794 0.0870021 -0.0219374 Vertex 794 0.0258263 0.0624492 -0.0231007 Vertex 795 -0.0324984 0.0788891 0.0412743 Vertex 796 -0.0630458 0.0345815 0.0177326 Vertex 797 -0.0110657 0.112343 -0.0190003 Vertex 798 -0.0435318 0.087421 0.0430041 Vertex 799 0.0537506 0.0519895 0.00024739 Vertex 800 -0.0474944 0.116586 0.0319739 Vertex 801 0.0354547 0.103863 -0.00997386 Vertex 802 0.0288719 0.121048 0.0132077 Vertex 803 -0.063571 0.122754 0.0468224 Vertex 804 -0.0853564 0.091162 -0.00253932 Vertex 805 -0.0824118 0.0788951 -0.000494107 Vertex 806 -0.0808086 0.113339 -0.00208766 Vertex 807 -0.0867821 0.10632 0.010369 Vertex 808 -0.0717396 0.156144 0.0122972 Vertex 809 0.0326207 0.0944486 -0.0159568 Vertex 810 -0.0496377 0.143234 0.0104059 Vertex 811 -0.022876 0.0362943 -0.0189473 Vertex 812 -0.0778042 0.156927 -0.0169128 Vertex 813 0.0375013 0.045461 0.0306904 Vertex 814 -0.00749863 0.0884246 0.0571361 Vertex 815 0.00121183 0.0853285 -0.0350521 Vertex 816 0.0299608 0.102103 0.0382304 Vertex 817 -0.069928 0.113662 -0.00916203 Vertex 818 0.0237226 0.0699627 0.0465409 Vertex 819 -0.0741702 0.0968478 0.0394202 Vertex 820 -0.0348901 0.0738831 -0.020486 Vertex 821 -0.07522 0.0688188 0.0015368 Vertex 822 -0.0318926 0.0385829 -0.0116716 Vertex 823 0.00150976 0.0562224 0.0541662 Vertex 824 -0.0744578 0.144386 -0.00789461 Vertex 825 -0.0542618 0.0348321 -0.0120282 Vertex 826 0.0226207 0.0360088 0.0127544 Vertex 827 -0.0725589 0.0360747 0.00146649 Vertex 828 0.016279 0.127286 0.0242335 Vertex 829 -0.0398566 0.099981 -0.0216989 Vertex 830 0.0424296 0.0696684 0.0278335 Vertex 831 -0.0648948 0.103911 -0.0165942 Vertex 832 -0.0567225 0.0423764 0.0206991 Vertex 833 -0.021805 0.0812974 -0.0389167 Vertex 834 -0.00525238 0.0350087 0.0405181 Vertex 835 -0.0586992 0.142676 -0.00307276 Vertex 836 -0.0132305 0.174198 -0.0268981 Vertex 837 -0.0364777 0.0491722 0.0391199 Vertex 838 -0.0346452 0.0340944 0.0173387 Vertex 839 0.0242032 0.0987613 -0.0205495 Vertex 840 0.0231289 0.0835821 0.0493611 Vertex 841 0.0234826 0.113521 -0.012343 Vertex 842 0.023086 0.119339 0.0317977 Vertex 843 -0.030565 0.0383245 0.0341404 Vertex 844 -0.0713393 0.134067 0.0496215 Vertex 845 -0.0526183 0.0343668 0.0293685 Vertex 846 -0.0276983 0.125752 0.00966815 Vertex 847 -0.0631137 0.14437 -0.00863045 Vertex 848 -0.0667813 0.0354951 0.0323861 Vertex 849 0.0203856 0.0348183 -0.00149748 Vertex 850 0.0584482 0.0538047 0.0101717 Vertex 851 -0.0370838 0.159234 -0.0122889 Vertex 852 -0.0200798 0.0653829 0.0501099 Vertex 853 -0.0243398 0.183957 -0.0138554 Vertex 854 0.0130456 0.0946785 -0.0262358 Vertex 855 0.0282217 0.0664463 -0.0207545 Vertex 856 0.0413792 0.0533854 -0.00680998 Vertex 857 -0.0505514 0.0338848 0.0267025 Vertex 858 -0.0491606 0.0375682 0.0458781 Vertex 859 -0.0709313 0.156768 -0.044906 Vertex 860 0.029758 0.0352966 0.00556049 Vertex 861 -0.028183 0.0499752 0.0445203 Vertex 862 0.0063341 0.0539359 -0.0303914 Vertex 863 -0.00965525 0.0511768 -0.0320162 Vertex 864 0.0283556 0.0605487 0.0426528 Vertex 865 -0.0677895 0.175109 -0.0580246 Vertex 866 0.0541381 0.0477755 0.0182012 Vertex 867 0.047975 0.0710438 0.0215578 Vertex 868 -0.0779361 0.129573 -0.00656407 Vertex 869 -0.046566 0.128368 -0.00156221 Vertex 870 -0.0627767 0.112367 0.0371562 Vertex 871 -0.0550398 0.0573097 0.0169909 Vertex 872 0.0102664 0.0739304 0.0552835 Vertex 873 0.0210708 0.0349944 0.0242708 Vertex 874 0.0078778 0.0989406 -0.0227671 Vertex 875 0.00548706 0.108567 0.0416722 Vertex 876 -0.0541694 0.136721 0.0304424 Vertex 877 -0.0616452 0.139553 0.0354433 Vertex 878 -0.00159817 0.0419657 -0.0250292 Vertex 879 -0.0842229 0.144678 0.0395137 Vertex 880 -0.0139593 0.0967237 -0.0305143 Vertex 881 -0.042575 0.0491291 -0.011035 Vertex 882 0.0234089 0.0418644 -0.00766906 Vertex 883 -0.0679313 0.0622594 0.0032802 Vertex 884 -0.0197736 0.0998405 0.0442778 Vertex 885 -0.0494983 0.102885 0.0411106 Vertex 886 -0.0278275 0.158128 -8.54745e-006 Vertex 887 -0.0736758 0.108402 0.0380105 Vertex 888 -0.0625249 0.0642497 0.029495 Vertex 889 -0.0713267 0.169665 -0.0267525 Vertex 890 -0.0625367 0.161521 -0.0446005 Vertex 891 -0.088793 0.0888086 0.00747102 Vertex 892 -0.0866887 0.120341 0.0484058 Vertex 893 -0.0346997 0.0808739 -0.0236048 Vertex 894 0.0308141 0.0862286 0.0429136 Vertex 895 -0.00373539 0.0684024 -0.0350771 Vertex 896 -0.0843436 0.144613 0.00514953 Vertex 897 -0.000815302 0.10869 -0.0211159 Vertex 898 0.0141656 0.0475343 0.0448184 Vertex 899 -0.0665361 0.11864 0.0512424 Vertex 900 -0.0792032 0.10313 -0.00756064 Vertex 901 -0.0741326 0.180484 -0.0536706 Vertex 902 -0.0386792 0.0336259 0.00249375 Vertex 903 -0.000579953 0.0361804 -0.0245898 Vertex 904 -0.0728742 0.149812 -0.0379734 Vertex 905 -0.0923833 0.130942 0.0122392 Vertex 906 0.0456137 0.0708816 0.00289794 Vertex 907 0.0173062 0.0421724 0.0440438 Vertex 908 0.00151372 0.070315 0.0563646 Vertex 909 -0.0134941 0.0773082 0.0569169 Vertex 910 0.0291366 0.0495584 -0.0147305 Vertex 911 -0.00334607 0.0347739 0.0411187 Vertex 912 -0.0646788 0.0378404 0.0247428 Vertex 913 0.0134754 0.0990564 0.0479483 Vertex 914 -0.00748372 0.0488969 0.0502433 Vertex 915 -0.0501963 0.061364 0.033592 Vertex 916 -0.0590743 0.136941 -0.00615344 Vertex 917 -0.0682817 0.156606 -0.0532672 Vertex 918 -0.0776508 0.152845 -0.000892884 Vertex 919 -0.0174771 0.0924389 0.0547456 Vertex 920 0.000300241 0.0612559 -0.033673 Vertex 921 -0.084288 0.111698 0.0438155 Vertex 922 -0.0722654 0.153589 0.032663 Vertex 923 -0.00138527 0.0424799 0.0468649 Vertex 924 -0.0365713 0.0483594 -0.015218 Vertex 925 -0.0896969 0.139298 0.033185 Vertex 926 -0.0577888 0.0439091 -0.00660137 Vertex 927 -0.0395435 0.101505 0.0409276 Vertex 928 -0.0452834 0.0395877 -0.019291 Vertex 929 0.0437196 0.0846401 -0.00379782 Vertex 930 -0.0358918 0.166781 -0.00116722 Vertex 931 0.0578262 0.0552267 0.0219335 Vertex 932 0.0395 0.055533 0.0316092 Vertex 933 -0.0857911 0.0847131 0.0234468 Vertex 934 -0.0931113 0.126933 0.0272608 Vertex 935 0.026474 0.110098 0.0367031 Vertex 936 -0.0424851 0.033913 -0.0262188 Vertex 937 -0.0086601 0.174145 -0.0268323 Vertex 938 -0.0759079 0.150006 -0.00888842 Vertex 939 -0.0345483 0.152531 -0.00560476 Vertex 940 -0.0364756 0.0917702 0.0440382 Vertex 941 -0.0715046 0.0901731 0.0417302 Vertex 942 -0.058698 0.0349789 0.0448461 Vertex 943 -0.0890324 0.144705 0.01118 Vertex 944 -0.0540681 0.135339 -0.00310003 Vertex 945 -0.0355149 0.0804148 0.0426568 Vertex 946 -0.0774993 0.127442 0.0532862 Vertex 947 0.00720473 0.0823989 -0.0333538 Vertex 948 -0.0608758 0.0968112 -0.0186271 Vertex 949 -0.0187399 0.0656914 -0.0372373 Vertex 950 0.0243441 0.0535282 0.0420575 Vertex 951 -0.0870966 0.0995146 0.0044219 Vertex 952 -0.0265289 0.11806 0.03154 Vertex 953 -0.0479777 0.147732 0.00938552 Vertex 954 0.0476241 0.0444058 0.00228058 Vertex 955 -0.0634506 0.15272 2.2453e-005 Vertex 956 -0.0134598 0.0645734 0.0539775 Vertex 957 -0.0745832 0.173457 -0.038075 Vertex 958 -0.0077824 0.0784642 -0.0379203 Vertex 959 -0.0120829 0.121468 -0.0106691 Vertex 960 -0.0669546 0.128237 -0.00895731 Vertex 961 -0.0382309 0.0365042 0.0436563 Vertex 962 -0.0386776 0.11516 -0.0158482 Vertex 963 0.0101664 0.120462 0.0359466 Vertex 964 -0.0525108 0.0819776 0.0447141 Vertex 965 -0.0731036 0.0721584 0.0326952 Vertex 966 -0.0225065 0.111294 0.03935 Vertex 967 -0.0182635 0.180096 -0.0244849 Vertex 968 -0.000757843 0.0354065 0.0103826 Vertex 969 -0.0434926 0.0789866 0.0425224 Vertex 970 -0.00650329 0.0547609 0.0534371 Vertex 971 0.0548584 0.0611516 -0.00113589 Vertex 972 -0.0548148 0.0898539 -0.0222515 Vertex 973 -0.0454982 0.045182 0.0420491 Vertex 974 -0.0915139 0.140599 0.0171878 Vertex 975 -0.0508009 0.0912872 -0.0218676 Vertex 976 0.0455444 0.0774866 0.0217209 Vertex 977 -0.0356978 0.0346221 -0.0180732 Vertex 978 -0.0690565 0.0338884 -0.00389811 Vertex 979 0.0322123 0.0856789 -0.0192748 Vertex 980 -0.0144888 0.0673806 0.0542261 Vertex 981 -0.00149662 0.114206 0.0415504 Vertex 982 0.00698354 0.131641 0.013682 Vertex 983 -0.0624759 0.0959475 0.043683 Vertex 984 -0.0688327 0.09803 -0.0157395 Vertex 985 0.0106658 0.0351593 0.00371028 Vertex 986 -0.0308492 0.121938 -0.00695618 Vertex 987 -0.0364861 0.0547872 0.0389196 Vertex 988 -0.0474148 0.133778 0.0200381 Vertex 989 -0.0127931 0.0799092 -0.038653 Vertex 990 0.016043 0.107446 -0.0178315 Vertex 991 0.0102426 0.0752832 -0.032327 Vertex 992 -0.0144184 0.0997913 0.0448499 Vertex 993 0.032684 0.0640121 -0.0177767 Vertex 994 -0.0298836 0.04486 -0.0282273 Vertex 995 -0.0116307 0.0337076 -0.023716 Vertex 996 -0.0624905 0.0804598 0.0431805 Vertex 997 -0.0833705 0.0767799 0.0142875 Vertex 998 0.0064803 0.0977098 0.0499318 Vertex 999 -0.0895466 0.0969995 0.0164128 Vertex 1000 -0.0289152 0.0846603 -0.0346291 Vertex 1001 -0.074384 0.0726496 -0.00763941 Vertex 1002 -0.0823897 0.104663 0.0290404 Vertex 1003 -0.0659809 0.169803 -0.037696 Vertex 1004 -0.0289948 0.0522303 -0.0223864 Vertex 1005 -0.0867616 0.0833332 0.0134846 Vertex 1006 -0.0662744 0.179701 -0.0600508 Vertex 1007 0.0399293 0.104183 0.0231644 Vertex 1008 0.0338477 0.0711662 -0.016803 Vertex 1009 -0.0647338 0.0418755 0.0296857 Vertex 1010 -0.0185844 0.16399 -0.00948536 Vertex 1011 0.0239979 0.0768543 0.0488301 Vertex 1012 -0.0693963 0.0393871 -0.00132267 Vertex 1013 -0.0735157 0.102656 0.0375574 Vertex 1014 -0.0258651 0.101595 -0.0237434 Vertex 1015 -0.0399361 0.123254 0.0259269 Vertex 1016 -0.0906536 0.150215 0.0201223 Vertex 1017 -0.0244911 0.101622 0.043846 Vertex 1018 -0.0652563 0.0459546 0.00568144 Vertex 1019 0.0194957 0.0920261 0.0477827 Vertex 1020 -0.00761327 0.0434711 -0.0261832 Vertex 1021 -0.0366993 0.124957 -0.00615077 Vertex 1022 0.0266728 0.0713177 0.0438181 Vertex 1023 0.00571651 0.037694 -0.0126956 Vertex 1024 -0.0276074 0.0356491 0.0527176 Vertex 1025 0.0124372 0.0548875 0.0512192 Vertex 1026 -0.0796939 0.0873057 0.0353613 Vertex 1027 -0.0164643 0.0842755 0.0572298 Vertex 1028 0.0213046 0.0374522 0.0382518 Vertex 1029 0.0400602 0.0922366 -0.00959201 Vertex 1030 -0.0707473 0.127025 0.0521985 Vertex 1031 -0.0417544 0.0339701 -0.0279962 Vertex 1032 0.0419622 0.102841 0.00417469 Vertex 1033 0.0519577 0.0621966 0.0293389 Vertex 1034 -0.0296335 0.0635627 -0.0254272 Vertex 1035 0.0100949 0.034771 0.018605 Vertex 1036 0.00451331 0.0814276 0.0565046 Vertex 1037 -0.0273656 0.0360131 -0.0296152 Vertex 1038 0.0240034 0.0449703 0.0396985 Vertex 1039 0.00350505 0.0590839 0.0549927 Vertex 1040 -0.0888241 0.114444 0.00524771 Vertex 1041 -0.0408758 0.107069 -0.0201235 Vertex 1042 -0.066143 0.143958 0.0413147 Vertex 1043 0.033595 0.0660055 0.039722 Vertex 1044 -0.0104988 0.09255 0.056119 Vertex 1045 0.00543406 0.120555 -0.0138758 Vertex 1046 0.0340797 0.115381 0.00660331 Vertex 1047 0.0149493 0.0344805 -0.015521 Vertex 1048 -0.00347107 0.112728 -0.01944 Vertex 1049 0.0301352 0.0955658 0.0419698 Vertex 1050 -0.0438179 0.0928034 -0.0224841 Vertex 1051 -0.011709 0.0628424 -0.0363307 Vertex 1052 -0.0616292 0.146031 -0.00460349 Vertex 1053 -0.0644302 0.0384213 0.0160253 Vertex 1054 -0.0756134 0.163772 -0.0350068 Vertex 1055 0.0152655 0.0695272 -0.0306629 Vertex 1056 -0.0274399 0.180304 -0.00715734 Vertex 1057 -0.0451284 0.159142 -0.00893675 Vertex 1058 0.0373474 0.083464 0.036489 Vertex 1059 0.00590625 0.0356875 -0.00331654 Vertex 1060 -0.0616418 0.158426 -0.0235923 Vertex 1061 -0.0524975 0.111152 0.036921 Vertex 1062 -0.0907738 0.125596 0.0437739 Vertex 1063 -0.0526737 0.0678526 -0.0129346 Vertex 1064 -0.0829949 0.115554 0.048125 Vertex 1065 -0.0310017 0.0339922 0.010953 Vertex 1066 -0.0567073 0.152073 0.0307854 Vertex 1067 0.000496501 0.103028 0.0440499 Vertex 1068 0.00334971 0.0510613 -0.029847 Vertex 1069 -0.0287388 0.076371 0.0428795 Vertex 1070 -0.0318715 0.0510682 0.0382665 Vertex 1071 -0.0357662 0.0798799 -0.0213145 Vertex 1072 0.0273731 0.0578707 -0.0207586 Vertex 1073 -0.0548009 0.0547174 0.00969263 Vertex 1074 -0.0529063 0.0676787 0.0373317 Vertex 1075 0.00726635 0.0696573 -0.0326992 Vertex 1076 -0.0324762 0.0778813 -0.0295332 Vertex 1077 -0.0592659 0.0599215 0.0215991 Vertex 1078 0.0597965 0.0678036 0.00914167 Vertex 1079 -0.0765967 0.152807 -0.00988734 Vertex 1080 -0.0574587 0.045976 0.042703 Vertex 1081 -0.0146296 0.185817 -0.0244743 Vertex 1082 -0.0618544 0.174099 -0.0565963 Vertex 1083 -0.067642 0.150503 -0.040589 Vertex 1084 -0.088166 0.0963498 0.023753 Vertex 1085 -0.0788489 0.119288 -0.00581129 Vertex 1086 -0.0234485 0.122824 -0.00599554 Vertex 1087 -0.0314067 0.0423682 0.0507901 Vertex 1088 0.00426025 0.0352382 0.0224392 Vertex 1089 -0.016347 0.159993 -0.0102438 Vertex 1090 -0.0764848 0.142819 0.0460732 Vertex 1091 -0.0034971 0.0732704 0.0586485 Vertex 1092 -0.0637886 0.083851 -0.0191517 Vertex 1093 0.0160048 0.0590435 0.0493667 Vertex 1094 -0.0828253 0.0815398 -0.00255091 Vertex 1095 -0.072066 0.0353469 0.00817017 Vertex 1096 -0.0665048 0.104229 0.0399675 Vertex 1097 0.00938205 0.0449001 -0.0251557 Vertex 1098 0.0376047 0.0616532 -0.0107499 Vertex 1099 -0.0400291 0.0354632 0.00960076 Vertex 1100 0.0118566 0.0887261 0.0541581 Vertex 1101 0.0391514 0.0617239 0.0318804 Vertex 1102 0.0383001 0.0969495 -0.00880451 Vertex 1103 -0.0741599 0.155538 0.00126713 Vertex 1104 -0.00202406 0.126832 0.0305449 Vertex 1105 -0.0160918 0.0359549 0.0514785 Vertex 1106 -0.0762362 0.0865455 -0.0135615 Vertex 1107 0.00250445 0.0519435 0.0530423 Vertex 1108 -0.0136476 0.0481469 -0.0303471 Vertex 1109 -0.0528781 0.0490838 0.0346622 Vertex 1110 -0.052801 0.144689 0.0203903 Vertex 1111 -0.033406 0.159477 0.0024166 Vertex 1112 -0.0501179 0.137029 0.00241503 Vertex 1113 0.00777681 0.0385776 0.0292039 Vertex 1114 -0.0484634 0.122511 0.0297787 Vertex 1115 -0.0938694 0.121489 0.0252875 Vertex 1116 -0.0304269 0.169744 -0.0072967 Vertex 1117 -0.0424883 0.0846004 0.0426298 Vertex 1118 -0.00481466 0.0868424 -0.0368113 Vertex 1119 0.0135086 0.116829 0.0366875 Vertex 1120 0.00653601 0.0924318 -0.0319265 Vertex 1121 -0.0645431 0.0356401 -0.00785526 Vertex 1122 -0.0805747 0.154604 0.0238516 Vertex 1123 0.0145335 0.034759 0.0322003 Vertex 1124 -0.0801061 0.109977 -0.00253557 Vertex 1125 0.0363991 0.039859 -0.00104313 Vertex 1126 0.0134519 0.128957 0.00181284 Vertex 1127 0.0304509 0.117992 0.000957505 Vertex 1128 -0.0622726 0.163207 -0.0582148 Vertex 1129 -0.0870489 0.0900041 0.00248653 Vertex 1130 -0.0357211 0.0710689 -0.0174927 Vertex 1131 0.0179164 0.102978 -0.02104 Vertex 1132 0.0560814 0.0704234 0.0216351 Vertex 1133 -0.0532705 0.0373829 0.0469289 Vertex 1134 0.0168316 0.0926978 0.0490711 Vertex 1135 -0.0786774 0.168631 -0.0343418 Vertex 1136 -0.0817879 0.0734817 0.0075372 Vertex 1137 0.0272261 0.0451183 -0.00768323 Vertex 1138 -0.0174561 0.0544373 0.0497557 Vertex 1139 -0.0931816 0.121543 0.0372829 Vertex 1140 -0.0588719 0.102608 -0.018764 Vertex 1141 -0.0555716 0.122697 0.0389476 Vertex 1142 0.0103374 0.0553349 -0.0300221 Vertex 1143 -0.0674289 0.114212 0.0481237 Vertex 1144 -0.0916539 0.147467 0.0181472 Vertex 1145 -0.0238582 0.0382811 0.0283891 Vertex 1146 -0.0268606 0.0378639 0.0137313 Vertex 1147 -0.0329323 0.126815 0.00921204 Vertex 1148 -0.073438 0.145781 -0.0138542 Vertex 1149 -0.039497 0.060614 0.0410267 Vertex 1150 -0.0144968 0.0472352 0.0484474 Vertex 1151 0.0543448 0.0567886 0.0274783 Vertex 1152 0.0469552 0.0427274 0.0188429 Vertex 1153 -0.0699384 0.129684 -0.00901632 Vertex 1154 -0.0733588 0.0659821 0.00263497 Vertex 1155 -0.00449913 0.108643 0.0435023 Vertex 1156 -0.0130347 0.166801 -0.0212915 Vertex 1157 -0.0195815 0.0341867 -0.0200865 Vertex 1158 -0.0293346 0.0347045 0.0427947 Vertex 1159 0.0366798 0.105376 -0.00582172 Vertex 1160 -0.0481456 0.14427 0.00342034 Vertex 1161 -0.0442438 0.113637 -0.0162318 Vertex 1162 -0.0707648 0.0836514 -0.0167885 Vertex 1163 -0.0426789 0.168728 0.0023488 Vertex 1164 0.0133536 0.0359529 -0.0210721 Vertex 1165 -0.0218071 0.110009 -0.0205036 Vertex 1166 0.0353694 0.082169 0.0388786 Vertex 1167 -0.0652787 0.173897 -0.0604957 Vertex 1168 0.00650677 0.0702743 0.0558788 Vertex 1169 -0.0505323 0.0346392 0.0434961 Vertex 1170 -0.0837382 0.0804711 0.0245022 Vertex 1171 0.0526661 0.0660937 -0.000184776 Vertex 1172 -0.0226723 0.0582322 -0.0321918 Vertex 1173 -0.0498404 0.122243 -0.0112035 Vertex 1174 -0.0596861 0.0693591 -0.0143393 Vertex 1175 0.0143121 0.0753991 0.0540935 Vertex 1176 0.00931098 0.130351 0.0216675 Vertex 1177 -0.0064886 0.118022 -0.0150746 Vertex 1178 -0.0446453 0.0577855 -0.0118043 Vertex 1179 -0.00714364 0.101607 -0.0236448 Vertex 1180 -0.0691845 0.152183 -0.0467119 Vertex 1181 0.0398757 0.096658 0.0297176 Vertex 1182 -0.0588318 0.146817 0.0344225 Vertex 1183 -0.0277909 0.0796672 -0.0363416 Vertex 1184 -0.0384921 0.111131 0.0361977 Vertex 1185 -0.0799536 0.133905 -0.00443135 Vertex 1186 -0.032014 0.0567822 -0.0123897 Vertex 1187 -0.00225491 0.0393816 0.0354457 Vertex 1188 -0.06805 0.157495 -0.00534926 Vertex 1189 -0.038197 0.0342285 0.0289964 Vertex 1190 0.0603506 0.0581587 0.0121666 Vertex 1191 -0.00149823 0.0535022 0.0547476 Vertex 1192 -0.014689 0.0555534 -0.0339367 Vertex 1193 -0.0230319 0.0374462 0.0541561 Vertex 1194 -0.0584973 0.0875674 0.0446281 Vertex 1195 0.0483695 0.0734096 0.0143189 Vertex 1196 -0.0871097 0.129792 0.0470428 Vertex 1197 0.0312695 0.0800594 -0.0199503 Vertex 1198 -0.0542529 0.0545999 -0.00539104 Vertex 1199 0.0184111 0.122524 0.0307587 Vertex 1200 -0.0483458 0.0338972 -0.0143683 Vertex 1201 -0.0591948 0.0603156 -0.000522259 Vertex 1202 0.0262112 0.0873747 -0.0229809 Vertex 1203 -0.00120622 0.113981 -0.0187843 Vertex 1204 0.0232549 0.0645506 0.0458531 Vertex 1205 0.0290261 0.106116 0.036871 Vertex 1206 0.0163905 0.0491901 -0.024833 Vertex 1207 -0.0466962 0.147986 -0.00319779 Vertex 1208 -0.0534962 0.0959644 0.0436141 Vertex 1209 -0.0157734 0.075693 -0.0388238 Vertex 1210 0.0105328 0.103079 0.0462759 Vertex 1211 -0.0728736 0.0659781 0.0205309 Vertex 1212 -0.00149388 0.0787876 0.0581499 Vertex 1213 -0.0340031 0.1089 -0.0192874 Vertex 1214 -0.0906238 0.143032 0.0276653 Vertex 1215 -0.0642885 0.148287 -0.0250747 Vertex 1216 -0.00395268 0.131078 0.00966125 Vertex 1217 0.00602348 0.111527 -0.0200414 Vertex 1218 0.0425051 0.049941 0.0324381 Vertex 1219 0.0099878 0.0342067 -0.0142754 Vertex 1220 -0.0881544 0.121251 0.000301062 Vertex 1221 -0.0238626 0.169762 -0.0118641 Vertex 1222 -0.0925871 0.117342 0.0103086 Vertex 1223 -0.0890673 0.101028 0.0173829 Vertex 1224 0.0265706 0.0535806 -0.0207269 Vertex 1225 -0.0654224 0.156324 0.0217941 Vertex 1226 -0.0168818 0.100112 -0.0240537 Vertex 1227 0.0303748 0.106409 -0.0127112 Vertex 1228 -0.0520559 0.142894 8.38279e-005 Vertex 1229 -0.0689469 0.0433261 0.00632212 Vertex 1230 -0.0663081 0.150341 0.0377708 Vertex 1231 0.0158504 0.0959717 -0.0236278 Vertex 1232 -0.029494 0.0631194 0.0377814 Vertex 1233 -0.0905968 0.140629 0.0221693 Vertex 1234 0.0459145 0.0862168 0.00717824 Vertex 1235 0.0343966 0.0968432 0.0376227 Vertex 1236 -0.0154965 0.0573571 0.0513792 Vertex 1237 -0.0718351 0.180364 -0.0513557 Vertex 1238 -0.0792845 0.0704649 0.0170607 Vertex 1239 -0.0582446 0.13534 0.0351018 Vertex 1240 -0.0814773 0.128835 0.0524787 Vertex 1241 0.0213383 0.0635548 -0.0266585 Vertex 1242 0.00223085 0.129379 -0.00131325 Vertex 1243 -0.0425054 0.0705013 0.0420152 Vertex 1244 -0.0184879 0.0856371 0.0571362 Vertex 1245 -0.0468539 0.0397424 -0.0132276 Vertex 1246 0.00434041 0.0596672 -0.031584 Vertex 1247 -0.0580499 0.11553 -0.0140963 Vertex 1248 -0.0672802 0.0405919 -0.00423161 Vertex 1249 -0.0314817 0.0889488 0.0439042 Vertex 1250 -0.015947 0.124632 0.0285893 Vertex 1251 0.0163555 0.0343012 4.36539e-005 Vertex 1252 -0.0841478 0.15365 0.0123539 Vertex 1253 -0.0478246 0.129609 0.027299 Vertex 1254 0.00890036 0.0630937 0.0549611 Vertex 1255 0.0100662 0.0792875 0.0550109 Vertex 1256 -0.0788405 0.11444 0.0481937 Vertex 1257 -0.0134137 0.0581871 0.0521911 Vertex 1258 -0.045504 0.0832988 0.0437099 Vertex 1259 -0.0797877 0.0746142 -0.00147983 Vertex 1260 0.0250243 0.0618819 0.0448807 Vertex 1261 -0.0165785 0.162548 -0.00831661 Vertex 1262 -0.000764451 0.0769261 -0.0359174 Vertex 1263 0.0105059 0.0348976 0.020389 Vertex 1264 0.00919662 0.0865327 -0.0319845 Vertex 1265 0.0324248 0.0752705 -0.0187807 Vertex 1266 -0.0485971 0.0359097 0.00925535 Vertex 1267 -0.0883931 0.1336 0.00326444 Vertex 1268 -0.0838901 0.110998 0.0281595 Vertex 1269 -0.0605698 0.0727907 0.0401099 Vertex 1270 -0.0514869 0.0987554 0.0433116 Vertex 1271 -0.00668986 0.0584241 -0.0339312 Vertex 1272 -0.0588974 0.156171 0.00210438 Vertex 1273 -0.0617635 0.0387159 0.0237173 Vertex 1274 0.0420636 0.0915328 -0.00679501 Vertex 1275 0.0102739 0.0667155 -0.0310192 Vertex 1276 -0.0733885 0.111282 0.0466166 Vertex 1277 -0.0758319 0.0675199 0.00554661 Vertex 1278 -0.0887986 0.114294 0.0264066 Vertex 1279 0.0446984 0.0804984 -0.000780025 Vertex 1280 0.0387801 0.058953 0.031306 Vertex 1281 -0.0663865 0.0388997 0.0348294 Vertex 1282 -0.00450662 0.0828853 0.0572758 Vertex 1283 0.0462172 0.0729792 0.0194263 Vertex 1284 0.0223974 0.0473356 -0.0199928 Vertex 1285 -0.0117053 0.0909225 -0.0365538 Vertex 1286 0.0222568 0.0748707 -0.0265095 Vertex 1287 0.00638455 0.0464233 -0.0264515 Vertex 1288 0.0546976 0.0478581 0.0131951 Vertex 1289 -0.0548531 0.149577 0.0276913 Vertex 1290 0.0274001 0.0354299 0.0197116 Vertex 1291 -0.0445007 0.165214 0.00483168 Vertex 1292 -0.0558611 0.0955845 -0.021564 Vertex 1293 0.0388229 0.0428364 0.0281231 Vertex 1294 -0.0261628 0.0674202 -0.0335157 Vertex 1295 -0.0294962 0.107041 0.0398129 Vertex 1296 -0.0561079 0.0571065 0.0121919 Vertex 1297 -0.0484872 0.0931824 0.0442201 Vertex 1298 -0.070167 0.162396 -0.0479528 Vertex 1299 -0.0809104 0.126584 -0.00546143 Vertex 1300 -0.0306087 0.0394849 -0.0300968 Vertex 1301 -0.0764966 0.117544 0.0520468 Vertex 1302 -0.0464984 0.047794 0.0396541 Vertex 1303 0.0203519 0.0506032 0.0432764 Vertex 1304 -0.0164738 0.10119 0.0439603 Vertex 1305 0.0159163 0.0366121 0.0434543 Vertex 1306 -0.0755977 0.151334 -0.0218791 Vertex 1307 -0.0116389 0.034923 0.0481436 Vertex 1308 -0.0334971 0.119329 0.0299275 Vertex 1309 -0.0614858 0.175719 -0.0606762 Vertex 1310 -0.00952557 0.169814 -0.0256004 Vertex 1311 -0.0514974 0.0791051 0.0438079 Vertex 1312 -0.0384168 0.120732 -0.0116964 Vertex 1313 -0.0196877 0.127428 0.0169554 Vertex 1314 -0.00744498 0.124256 -0.00972454 Vertex 1315 -0.0405007 0.0860467 0.0431081 Vertex 1316 0.0206619 0.125677 0.022985 Vertex 1317 -0.088151 0.137836 0.0407884 Vertex 1318 -0.0252695 0.156633 -0.00336931 Vertex 1319 -0.000436316 0.122463 0.0356275 Vertex 1320 0.00352724 0.10161 0.0446753 Vertex 1321 -0.0336645 0.0339705 0.0230467 Vertex 1322 -0.0192952 0.097132 0.0469462 Vertex 1323 0.0214237 0.0444841 -0.0187153 Vertex 1324 -0.0397368 0.0739371 -0.0178005 Vertex 1325 -0.0803464 0.147298 -0.000827063 Vertex 1326 -0.0134817 0.073078 0.0557755 Vertex 1327 -0.00876475 0.075634 -0.0378123 Vertex 1328 -0.000234214 0.0957245 -0.0313684 Vertex 1329 -0.0346163 0.0505906 -0.0107587 Vertex 1330 -0.059344 0.139552 0.0335155 Vertex 1331 -0.0739879 0.139879 -0.00672352 Vertex 1332 0.0343769 0.112004 0.0266888 Vertex 1333 -0.0301912 0.0664057 -0.0274649 Vertex 1334 -0.0843669 0.106153 0.00138874 Vertex 1335 -0.0535427 0.0402957 -0.0106063 Vertex 1336 0.00624351 0.0810351 -0.0338384 Vertex 1337 0.0386277 0.0672715 0.0346845 Vertex 1338 -0.049761 0.069112 0.038562 Vertex 1339 -0.0475138 0.156385 0.00914965 Vertex 1340 0.0290027 0.0741128 0.0436952 Vertex 1341 0.00950273 0.0546854 0.0525766 Vertex 1342 -0.0671319 0.0355924 0.0145398 Vertex 1343 0.0180716 0.0350245 0.0344937 Vertex 1344 -0.062221 0.119852 0.0434664 Vertex 1345 0.0221547 0.0979182 -0.0216266 Vertex 1346 0.0182349 0.0355117 -0.0116753 Vertex 1347 -0.0334891 0.091814 0.044517 Vertex 1348 0.0485032 0.0638048 0.0293893 Vertex 1349 -0.06937 0.145758 -0.0234859 Vertex 1350 -0.0263571 0.0549776 0.0383278 Vertex 1351 0.0134018 0.0418881 -0.0236384 Vertex 1352 -0.0477302 0.0753108 -0.0175447 Vertex 1353 -0.0574825 0.113918 0.0359516 Vertex 1354 -0.0114267 0.182822 -0.0276369 Vertex 1355 -0.0610153 0.131125 -0.0076807 Vertex 1356 -0.0788017 0.0846357 0.0359502 Vertex 1357 -0.0834735 0.076324 0.00852235 Vertex 1358 -0.0105985 0.0406145 -0.0262787 Vertex 1359 0.0292435 0.0637114 -0.0199317 Vertex 1360 0.0190672 0.117213 -0.0123322 Vertex 1361 -0.0573375 0.0472769 0.0101218 Vertex 1362 -0.0274981 0.0960112 0.0443229 Vertex 1363 -0.0328692 0.104316 -0.0215625 Vertex 1364 -0.0270496 0.033483 -0.0265278 Vertex 1365 -0.0144886 0.109993 0.0419529 Vertex 1366 -0.0353285 0.0851433 -0.0237512 Vertex 1367 0.0208423 0.104696 0.0425993 Vertex 1368 -0.032514 0.105674 0.0400124 Vertex 1369 0.0180082 0.0355585 0.00482766 Vertex 1370 -0.0542457 0.0574384 0.01981 Vertex 1371 0.0546767 0.0732977 0.0167178 Vertex 1372 -0.0715157 0.106884 0.0372861 Vertex 1373 -0.0447383 0.0738987 -0.0178782 Vertex 1374 0.0315143 0.0525771 -0.0117816 Vertex 1375 0.00893209 0.124393 0.0330753 Vertex 1376 0.0457594 0.0890174 0.0101642 Vertex 1377 0.000146176 0.101649 -0.0227639 Vertex 1378 0.0254504 0.0415949 -0.00563526 Vertex 1379 -0.0841907 0.078353 0.0198111 Vertex 1380 -0.0664749 0.0875478 0.0443297 Vertex 1381 0.0368421 0.0742334 -0.0127504 Vertex 1382 -0.0682887 0.164315 -0.0170259 Vertex 1383 -0.058681 0.0336414 -0.0106847 Vertex 1384 -0.0502775 0.0487457 0.0176637 Vertex 1385 -0.0292201 0.0564848 -0.022383 Vertex 1386 -0.0308709 0.178515 -0.0130008 Vertex 1387 -0.0560128 0.0334549 0.00994988 Vertex 1388 0.024638 0.124378 0.010214 Vertex 1389 0.000500504 0.0519731 0.0534094 Vertex 1390 -0.0603651 0.0470889 0.0366883 Vertex 1391 0.0130247 0.112857 -0.017601 Vertex 1392 -0.0451234 0.0336213 -0.00611106 Vertex 1393 -0.000502571 0.0965565 0.053664 Vertex 1394 -0.00150449 0.0350731 0.0394353 Vertex 1395 -0.0239356 0.0374925 -0.0183912 Vertex 1396 -0.0334338 0.0382234 0.0500909 Vertex 1397 -0.0784776 0.134439 0.0514602 Vertex 1398 -0.0912831 0.133698 0.0142161 Vertex 1399 -0.0105023 0.0829243 0.0578427 Vertex 1400 -0.0853984 0.0872002 -0.00151975 Vertex 1401 -0.0430994 0.12944 0.0113807 Vertex 1402 -0.00377564 0.078412 -0.0370359 Vertex 1403 0.043329 0.066441 -0.000599376 Vertex 1404 0.00357616 0.0395385 0.0347033 Vertex 1405 -0.0483279 0.119696 0.0300033 Vertex 1406 -0.029443 0.0834063 0.0447309 Vertex 1407 0.00542741 0.0336773 0.0131964 Vertex 1408 -0.0354812 0.0383051 -0.00290933 Vertex 1409 0.00516194 0.0978455 -0.0256065 Vertex 1410 -0.0321779 0.0474216 0.0442941 Vertex 1411 -0.0634376 0.179008 -0.0598746 Vertex 1412 -0.0555707 0.033544 0.017104 Vertex 1413 -0.0338438 0.0337316 0.012415 Vertex 1414 -0.0555168 0.154658 0.0152234 Vertex 1415 -0.000629686 0.0466337 -0.0288231 Vertex 1416 0.0124215 0.122685 -0.01021 Vertex 1417 0.0599111 0.0692057 0.0151972 Vertex 1418 -0.0439898 0.0350927 -0.0256307 Vertex 1419 0.000357196 0.0347559 0.0401008 Vertex 1420 -0.0624968 0.102902 0.0415908 Vertex 1421 0.0125018 0.115423 0.0374065 Vertex 1422 0.00751849 0.0440876 0.0454461 Vertex 1423 -0.0368219 0.0900544 -0.0239252 Vertex 1424 0.00841968 0.0357631 -0.0122614 Vertex 1425 0.0207672 0.0700064 0.0493524 Vertex 1426 -0.0870672 0.0882048 0.024333 Vertex 1427 -0.0545043 0.0918174 0.0448821 Vertex 1428 -0.069909 0.0416997 0.00317022 Vertex 1429 -0.033095 0.0723179 -0.02347 Vertex 1430 0.0162209 0.0779008 -0.0293961 Vertex 1431 -0.0182701 0.114743 -0.017523 Vertex 1432 -0.0238593 0.0838986 0.0547079 Vertex 1433 -0.0215596 0.0891328 -0.036783 Vertex 1434 -0.0301219 0.0493909 -0.0214267 Vertex 1435 -0.0881094 0.0861284 0.0104766 Vertex 1436 0.0114791 0.0353993 0.0291949 Vertex 1437 -0.0284773 0.177212 -0.00607735 Vertex 1438 -0.0901845 0.132425 0.0322244 Vertex 1439 -0.0298032 0.034287 0.0163531 Vertex 1440 0.0242087 0.039076 0.0343007 Vertex 1441 0.0152433 0.0658912 0.0518711 Vertex 1442 -0.0640313 0.13251 0.040793 Vertex 1443 -0.055098 0.146723 0.029184 Vertex 1444 -0.0880403 0.150094 0.0102212 Vertex 1445 0.0297172 0.11319 -0.0079908 Vertex 1446 -0.0695221 0.143851 -0.0150076 Vertex 1447 -0.0420037 0.0449364 -0.0183222 Vertex 1448 -0.0155087 0.105817 0.0426846 Vertex 1449 -0.0580149 0.0675718 0.0363481 Vertex 1450 -0.0512719 0.127504 -0.00467957 Vertex 1451 -0.0701585 0.0623473 0.0172092 Vertex 1452 -0.00121369 0.0389243 -0.000247465 Vertex 1453 0.0403742 0.101353 -0.00282827 Vertex 1454 -0.070992 0.0395652 0.00837515 Vertex 1455 -0.0533112 0.162693 5.53052e-005 Vertex 1456 -0.051883 0.143128 0.0183637 Vertex 1457 0.00419323 0.0880606 -0.0335488 Vertex 1458 -0.0732611 0.161033 -0.0359392 Vertex 1459 -0.0485728 0.0503685 -0.00899002 Vertex 1460 -0.00241533 0.0389975 -0.0136337 Vertex 1461 -0.0631283 0.163827 -0.0595262 Vertex 1462 -0.0704857 0.116111 0.0520944 Vertex 1463 -0.0864626 0.107749 0.0163884 Vertex 1464 -0.0558948 0.101262 -0.0199275 Vertex 1465 -0.0776607 0.0817583 -0.0102119 Vertex 1466 -0.0454731 0.0675709 0.040115 Vertex 1467 -0.00995662 0.169734 -0.0198047 Vertex 1468 0.0346025 0.0754478 0.0394941 Vertex 1469 -0.0567945 0.0589511 -0.00142935 Vertex 1470 -0.0169338 0.185679 -0.0240586 Vertex 1471 -0.00851871 0.0471234 0.047663 Vertex 1472 -0.00322809 0.0999661 -0.0238789 Vertex 1473 -0.0725837 0.0763091 -0.0123208 Vertex 1474 -0.0138747 0.104484 -0.023001 Vertex 1475 0.0179261 0.0900567 0.048881 Vertex 1476 -0.0254896 0.049863 0.0466034 Vertex 1477 -0.0144059 0.112046 -0.0186792 Vertex 1478 -0.0201874 0.0711262 0.0528634 Vertex 1479 -0.0668535 0.0938084 -0.0173106 Vertex 1480 -0.0475686 0.0376232 -0.0123457 Vertex 1481 0.00788239 0.0363273 0.00580236 Vertex 1482 -0.0425006 0.0888114 0.0424593 Vertex 1483 -0.070543 0.17193 -0.0350862 Vertex 1484 -0.0332242 0.152554 -0.00262082 Vertex 1485 -0.0675058 0.060447 0.0122781 Vertex 1486 0.0289709 0.0848578 0.043728 Vertex 1487 0.00836647 0.0494746 -0.0282442 Vertex 1488 -0.00033732 0.0338454 -0.0216338 Vertex 1489 -0.0413557 0.0405762 -0.0252979 Vertex 1490 -0.0866855 0.14466 0.00818677 Vertex 1491 0.0496382 0.068363 0.00147832 Vertex 1492 -0.091934 0.128302 0.0312437 Vertex 1493 -0.073851 0.0979023 -0.0138506 Vertex 1494 0.0233319 0.059176 0.0459237 Vertex 1495 -0.0587477 0.0767588 -0.0188591 Vertex 1496 -0.0271752 0.172675 -0.0185845 Vertex 1497 0.0383138 0.109087 0.0181423 Vertex 1498 0.0571986 0.0536922 0.00517882 Vertex 1499 -0.0450959 0.122461 0.0255697 Vertex 1500 -0.00949145 0.115547 0.0400498 Vertex 1501 0.00724322 0.0361893 0.0456372 Vertex 1502 -0.0631801 0.0406886 0.0415101 Vertex 1503 -0.0233033 0.0429927 0.0537933 Vertex 1504 -0.0412769 0.0356814 0.042879 Vertex 1505 0.0271048 0.0835778 0.0462962 Vertex 1506 -0.0859359 0.0980836 0.000413826 Vertex 1507 0.0214874 0.0892516 0.0486681 Vertex 1508 -0.000201542 0.0357861 0.0174114 Vertex 1509 -0.0801984 0.0868229 -0.00856132 Vertex 1510 0.0187635 0.105558 -0.0177865 Vertex 1511 -0.0311962 0.0475489 -0.0247586 Vertex 1512 -0.0809179 0.0761444 0.0241516 Vertex 1513 0.0252976 0.0661311 -0.0233121 Vertex 1514 -0.083982 0.134868 -0.000717317 Vertex 1515 -0.0653284 0.0349129 0.0366619 Vertex 1516 -0.0638988 0.109582 -0.0144399 Vertex 1517 -0.0764972 0.123179 0.0527664 Vertex 1518 -0.0679678 0.0383221 0.0123903 Vertex 1519 -0.0435006 0.0534118 0.0391466 Vertex 1520 0.0423862 0.047532 -0.00502925 Vertex 1521 -0.0167796 0.121583 -0.00869919 Vertex 1522 -0.0627029 0.150609 -0.0235776 Vertex 1523 -0.0881185 0.151555 0.0230923 Vertex 1524 -0.0404902 0.0790417 0.0431478 Vertex 1525 -0.0580426 0.153536 0.0303048 Vertex 1526 -0.0144882 0.101623 0.0437286 Vertex 1527 -0.0517378 0.0545135 0.0226244 Vertex 1528 0.0533192 0.0587911 -0.00291354 Vertex 1529 -0.0680095 0.151244 0.0371953 Vertex 1530 -0.0271239 0.117991 -0.0128729 Vertex 1531 0.0116633 0.0616767 0.0519085 Vertex 1532 -0.00749507 0.10164 0.0441128 Vertex 1533 -0.0365184 0.126747 -0.000928273 Vertex 1534 -0.0821611 0.0761834 0.00152312 Vertex 1535 0.0345037 0.0468848 0.0307194 Vertex 1536 -0.0207268 0.0612423 -0.0346723 Vertex 1537 -0.0373842 0.0433946 0.0425967 Vertex 1538 -0.0458215 0.091313 -0.0218951 Vertex 1539 -0.0534886 0.0862338 0.0454573 Vertex 1540 -0.0628269 0.1502 -0.00476792 Vertex 1541 -0.0126507 0.0350556 0.0425263 Vertex 1542 0.0293325 0.0535401 0.0386956 Vertex 1543 0.0112159 0.0922395 -0.029689 Vertex 1544 0.00228893 0.0341509 0.0103163 Vertex 1545 -0.0538924 0.106961 -0.0186698 Vertex 1546 0.019505 0.108463 0.0397034 Vertex 1547 0.0324265 0.0414912 -0.00365574 Vertex 1548 -0.0941834 0.120103 0.0162919 Vertex 1549 -0.0341434 0.0780256 -0.025502 Vertex 1550 -0.05375 0.0560385 0.0116204 Vertex 1551 -0.0718751 0.150885 -0.0428436 Vertex 1552 0.0292296 0.08295 -0.0208022 Vertex 1553 -0.0915903 0.125424 0.00726612 Vertex 1554 -0.00670797 0.0627873 -0.0354975 Vertex 1555 -0.0410706 0.0335739 0.0056728 Vertex 1556 -0.0514307 0.12406 0.0344067 Vertex 1557 -0.0535585 0.062801 0.0308747 Vertex 1558 -0.0636039 0.0445634 0.0326846 Vertex 1559 0.0219696 0.0347867 0.0191885 Vertex 1560 -0.073544 0.177863 -0.0540307 Vertex 1561 0.0328182 0.0967204 -0.0144274 Vertex 1562 -0.0265155 0.115287 0.0336658 Vertex 1563 -0.0885025 0.144515 0.032494 Vertex 1564 -0.0757302 0.147214 -0.00986768 Vertex 1565 -0.0534987 0.0427392 0.045857 Vertex 1566 0.00949394 0.0426698 0.0450285 Vertex 1567 0.00543862 0.118556 -0.0157347 Vertex 1568 -0.0372934 0.126961 0.0179492 Vertex 1569 -0.0437556 0.0335262 -0.0205177 Vertex 1570 -0.0633574 0.155908 0.0123853 Vertex 1571 -0.0149675 0.0986909 -0.0245721 Vertex 1572 -0.0520579 0.0336325 0.0248414 Vertex 1573 -0.0738585 0.0762694 0.0355202 Vertex 1574 -0.0645865 0.0628123 -0.00359236 Vertex 1575 0.0208388 0.126564 0.0173475 Vertex 1576 -0.00948171 0.174183 -0.0285537 Vertex 1577 -0.05553 0.137483 -0.00349047 Vertex 1578 -0.0306198 0.11135 -0.017885 Vertex 1579 -0.00749701 0.0576432 0.054379 Vertex 1580 0.0163546 0.0537375 -0.0279072 Vertex 1581 0.000507305 0.0828912 0.0574668 Vertex 1582 -0.0357116 0.0358916 0.0155029 Vertex 1583 -0.0787919 0.108745 0.0367247 Vertex 1584 0.0340234 0.0585319 -0.0137143 Vertex 1585 0.0187381 0.119283 0.0342968 Vertex 1586 0.0352621 0.0826509 -0.01774 Vertex 1587 0.0128917 0.127573 0.0272919 Vertex 1588 0.0309974 0.0673207 0.0412553 Vertex 1589 -0.0284453 0.0903864 0.0448476 Vertex 1590 -0.0107484 0.0348144 0.0431359 Vertex 1591 0.00350637 0.0702767 0.0558823 Vertex 1592 -0.0074932 0.0842694 0.0572981 Vertex 1593 -0.0369639 0.0346855 -0.0305537 Vertex 1594 0.0316149 0.0916151 0.0423373 Vertex 1595 -0.0582906 0.0411368 0.01871 Vertex 1596 -0.0857362 0.141867 0.00617644 Vertex 1597 -0.0240513 0.0386342 -0.0120079 Vertex 1598 -0.0309847 0.0381919 0.0323901 Vertex 1599 0.00946556 0.123094 -0.0106511 Vertex 1600 -0.0175019 0.0758159 0.0556202 Vertex 1601 -0.0480694 0.153165 -0.00566954 Vertex 1602 0.00549376 0.116905 0.0389072 Vertex 1603 -0.0548009 0.0449973 0.0226803 Vertex 1604 -0.0248989 0.0968475 -0.0246804 Vertex 1605 -0.0431166 0.0378307 0.0441123 Vertex 1606 -0.0239671 0.075324 0.0508435 Vertex 1607 -0.0444374 0.124419 -0.00954541 Vertex 1608 0.039601 0.107391 0.00564087 Vertex 1609 0.0129485 0.0726239 0.0538836 Vertex 1610 -0.0673634 0.110954 0.0392365 Vertex 1611 -0.033686 0.0637452 -0.0146972 Vertex 1612 -0.0890554 0.136524 0.0291987 Vertex 1613 -0.0787857 0.0744548 -0.00455566 Vertex 1614 0.0256941 0.120543 -0.00190068 Vertex 1615 -0.0484084 0.144974 0.000471547 Vertex 1616 -0.0688351 0.0951745 -0.0162656 Vertex 1617 -0.046283 0.129949 0.00285861 Vertex 1618 0.042675 0.0751161 0.0282624 Vertex 1619 -0.0185008 0.119534 0.0344711 Vertex 1620 -0.0917791 0.117463 0.0421754 Vertex 1621 -0.0351226 0.169652 -0.0145814 Vertex 1622 -0.090178 0.113449 0.0375353 Vertex 1623 -0.0251052 0.162299 -0.0151004 Vertex 1624 0.0113952 0.116794 -0.0158535 Vertex 1625 0.0065027 0.0533154 0.0528127 Vertex 1626 -0.0605331 0.151186 -0.000375191 Vertex 1627 -0.0787271 0.0954037 0.0355432 Vertex 1628 -0.0417953 0.0435116 -0.0223513 Vertex 1629 0.0239341 0.0561524 -0.0247597 Vertex 1630 -0.0260899 0.0522789 0.0395517 Vertex 1631 -0.0635622 0.0403137 0.0257086 Vertex 1632 -0.0698935 0.122364 -0.00881274 Vertex 1633 -0.0515081 0.0490357 0.0376444 Vertex 1634 -0.0867708 0.110409 0.0193573 Vertex 1635 -0.0136243 0.0450811 -0.0280269 Vertex 1636 -0.0572353 0.0465198 -0.0043437 Vertex 1637 -0.0335027 0.074683 0.04142 Vertex 1638 0.0110844 0.0345718 0.0406762 Vertex 1639 -0.029505 0.0545565 0.0362962 Vertex 1640 -0.0776021 0.0994637 0.0357144 Vertex 1641 -0.0623267 0.035582 -0.00867786 Vertex 1642 0.000192029 0.0811649 -0.0359709 Vertex 1643 -0.082525 0.0896742 -0.00660526 Vertex 1644 -0.0758657 0.097813 -0.01246 Vertex 1645 -0.0187977 0.0799028 -0.0389405 Vertex 1646 -0.0514165 0.0627417 0.0327301 Vertex 1647 -0.0279294 0.0931359 -0.0265478 Vertex 1648 -0.0285781 0.0423048 0.0521933 Vertex 1649 -0.0054968 0.061946 0.0559894 Vertex 1650 -0.0396568 0.0577566 -0.0113194 Vertex 1651 -0.0446441 0.0338442 0.00651202 Vertex 1652 -0.0576238 0.145329 0.032529 Vertex 1653 -0.0915486 0.143335 0.0161726 Vertex 1654 -0.0204109 0.178661 -0.0155986 Vertex 1655 -0.0165553 0.128252 0.0064647 Vertex 1656 -0.0536948 0.0661603 -0.0107375 Vertex 1657 0.00730214 0.0624461 -0.0313742 Vertex 1658 -0.0458982 0.107069 -0.0194756 Vertex 1659 -0.0781795 0.165241 -0.0349583 Vertex 1660 -0.0309707 0.163858 -0.00458082 Vertex 1661 -0.0734033 0.167233 -0.0217479 Vertex 1662 -0.0168075 0.0827608 -0.0394117 Vertex 1663 -0.0686207 0.128453 0.0500102 Vertex 1664 -0.0217169 0.0945664 0.0494448 Vertex 1665 -0.0687556 0.0680025 -0.00564855 Vertex 1666 -0.0406156 0.155109 0.0060988 Vertex 1667 -0.0597218 0.118329 0.0399103 Vertex 1668 -0.0574975 0.0426993 0.0453715 Vertex 1669 -0.0707251 0.033867 0.00298473 Vertex 1670 0.0407755 0.0675587 -0.00776366 Vertex 1671 -0.0828745 0.119161 -0.00328383 Vertex 1672 0.00340212 0.0390598 -0.024445 Vertex 1673 -0.0456074 0.0345826 0.0394197 Vertex 1674 -0.0374992 0.0847101 0.0439351 Vertex 1675 -0.0237163 0.0380022 0.0196686 Vertex 1676 0.0455301 0.0677752 0.0254231 Vertex 1677 -0.0883678 0.128089 0.00227451 Vertex 1678 -0.0457735 0.0826328 -0.0207974 Vertex 1679 -0.047508 0.0903548 0.0442194 Vertex 1680 -0.0700277 0.153659 -0.0489787 Vertex 1681 -0.0840242 0.151932 0.0065796 Vertex 1682 0.0161135 0.0534638 0.0477167 Vertex 1683 -0.00968478 0.0584187 -0.0340646 Vertex 1684 -0.0136298 0.0943834 -0.0340901 Vertex 1685 -0.0935499 0.129634 0.0192397 Vertex 1686 0.055706 0.0507437 0.0211984 Vertex 1687 -0.0856626 0.0912736 -0.000553528 Vertex 1688 -0.0434909 0.104315 0.0413728 Vertex 1689 -0.0160151 0.185636 -0.0207096 Vertex 1690 0.0452897 0.0861791 0.0201631 Vertex 1691 0.00400981 0.0391328 0.0279405 Vertex 1692 -0.0817242 0.148679 0.0369003 Vertex 1693 -0.0862444 0.0819176 0.00849345 Vertex 1694 0.0047217 0.0940547 -0.0316305 Vertex 1695 -0.0870357 0.141902 0.00919077 Vertex 1696 -0.0180735 0.0611876 0.0510587 Vertex 1697 -0.0896121 0.0902414 0.0154476 Vertex 1698 -0.0682478 0.066271 0.0282875 Vertex 1699 -0.0789669 0.172206 -0.0419919 Vertex 1700 -0.0418449 0.0971142 -0.0220611 Vertex 1701 -0.0261049 0.0632214 -0.0314499 Vertex 1702 0.0234619 0.0343557 0.00702041 Vertex 1703 -0.0255122 0.0349295 -0.0287387 Vertex 1704 -0.0309758 0.0383278 -0.0168292 Vertex 1705 0.0096904 0.0344726 -0.0051827 Vertex 1706 -0.076883 0.154198 -0.00789596 Vertex 1707 -0.0446824 0.0651214 -0.0145177 Vertex 1708 -0.00949444 0.063336 0.0558203 Vertex 1709 -0.074262 0.155148 0.0274653 Vertex 1710 0.0413778 0.0561233 -0.00592276 Vertex 1711 -0.0598098 0.08825 -0.0201729 Vertex 1712 0.00382729 0.106411 -0.0207174 Vertex 1713 0.0241621 0.0505303 0.0399762 Vertex 1714 -0.0717673 0.146065 -0.0213605 Vertex 1715 0.00850898 0.0990197 0.0481875 Vertex 1716 -0.0364949 0.0747255 0.0419725 Vertex 1717 -0.0385 0.120755 0.0293207 Vertex 1718 -0.086661 0.123026 0.0482846 Vertex 1719 -0.0512571 0.0488673 0.0206327 Vertex 1720 -0.0224848 0.0474635 0.0510926 Vertex 1721 -0.0727332 0.173623 -0.0510446 Vertex 1722 -0.0210104 0.0417331 0.053591 Vertex 1723 0.0254863 0.0578069 0.043747 Vertex 1724 -0.0216102 0.0408331 -0.028871 Vertex 1725 -0.0641686 0.178174 -0.0558405 Vertex 1726 0.021052 0.0358187 -0.0026817 Vertex 1727 -0.0715396 0.0362187 -0.000138837 Vertex 1728 0.0572801 0.0608152 0.0247108 Vertex 1729 -0.0314223 0.0343059 -0.0206653 Vertex 1730 -0.0751782 0.152724 -0.0149145 Vertex 1731 -0.0358314 0.0356542 0.0457978 Vertex 1732 0.0134639 0.0616949 0.0510096 Vertex 1733 -0.0197661 0.0728664 -0.0388949 Vertex 1734 -0.0229243 0.0972075 0.044901 Vertex 1735 -0.0399669 0.0343914 -0.00210399 Vertex 1736 0.00250363 0.0489881 0.0513443 Vertex 1737 0.051394 0.0726569 0.00804397 Vertex 1738 -0.0757838 0.06757 0.0150388 Vertex 1739 0.0416527 0.0846461 0.030449 Vertex 1740 -0.0639569 0.158297 -0.0475943 Vertex 1741 0.00040853 0.0356817 0.00488121 Vertex 1742 -0.0198767 0.105865 -0.0225965 Vertex 1743 -0.0252093 0.112572 -0.0171753 Vertex 1744 0.0222475 0.0847573 -0.0259093 Vertex 1745 -0.0614967 0.0876222 0.0452319 Vertex 1746 0.0589161 0.0621713 0.00415053 Vertex 1747 -0.0338028 0.122413 -0.00742547 Vertex 1748 0.0432138 0.091668 0.0251628 Vertex 1749 -0.0284893 0.0903534 -0.0305816 Vertex 1750 -0.0926124 0.120126 0.0272917 Vertex 1751 -0.0569845 0.0535242 0.00365398 Vertex 1752 -0.0889751 0.0969295 0.00842099 Vertex 1753 -0.0147132 0.0599449 -0.0358879 Vertex 1754 -0.0365049 0.10423 0.0397359 Vertex 1755 -0.0104962 0.0897854 0.05669 Vertex 1756 -0.0744971 0.176396 -0.0436946 Vertex 1757 0.0233312 0.0436331 0.0404882 Vertex 1758 -0.00987706 0.108745 -0.0220853 Vertex 1759 -0.0288624 0.0606727 -0.0254104 Vertex 1760 0.0371127 0.037099 0.0128773 Vertex 1761 -0.00449744 0.0939058 0.0556112 Vertex 1762 -0.0198519 0.0357263 0.0525976 Vertex 1763 -0.0816795 0.117485 0.0486704 Vertex 1764 -0.0304784 0.0381297 0.00370653 Vertex 1765 -0.0307981 0.0381678 0.00179566 Vertex 1766 0.00648653 0.0951017 0.0524749 Vertex 1767 -0.0695161 0.108303 0.0373324 Vertex 1768 -0.0587501 0.0482189 0.00571238 Vertex 1769 0.018427 0.0917703 -0.0251723 Vertex 1770 -0.0485262 0.0344313 0.0301756 Vertex 1771 -0.0714887 0.0860678 0.0412957 Vertex 1772 0.0276821 0.0862408 0.0453967 Vertex 1773 -0.012672 0.0526484 -0.0327744 Vertex 1774 -0.00957953 0.177197 -0.0268263 Vertex 1775 0.000352424 0.0511166 -0.0306262 Vertex 1776 -0.0489044 0.0413839 -0.0112514 Vertex 1777 -0.0315044 0.0860003 0.0426216 Vertex 1778 0.0255053 0.103245 -0.0173339 Vertex 1779 0.0502478 0.0496891 0.0267596 Vertex 1780 0.00542168 0.12935 -0.00135496 Vertex 1781 0.0116725 0.130674 0.0125466 Vertex 1782 -0.066026 0.146409 -0.0228827 Vertex 1783 0.0267262 0.114038 0.0335472 Vertex 1784 -0.0677301 0.181168 -0.057983 Vertex 1785 0.0202221 0.0721388 -0.0279345 Vertex 1786 -0.0170034 0.127025 0.0015954 Vertex 1787 -0.055795 0.129741 0.0368819 Vertex 1788 0.0284454 0.0995183 0.0412905 Vertex 1789 0.0166594 0.125691 0.027245 Vertex 1790 -0.0631004 0.038056 0.0429096 Vertex 1791 -0.0488679 0.135513 0.00441971 Vertex 1792 -0.0123225 0.124091 -0.00743567 Vertex 1793 -0.000730499 0.0683317 -0.0340878 Vertex 1794 0.0362974 0.0657667 -0.0137187 Vertex 1795 -0.0492809 0.152135 0.0110836 Vertex 1796 -0.0640639 0.0351963 0.0227232 Vertex 1797 0.0250957 0.0348061 0.00319961 Vertex 1798 -0.00873489 0.068452 -0.036144 Vertex 1799 -0.0151821 0.115592 -0.0164315 Vertex 1800 -0.0628998 0.1209 -0.00884208 Vertex 1801 -0.0442317 0.12547 0.021384 Vertex 1802 -0.0765838 0.178662 -0.0494737 Vertex 1803 -0.0606769 0.0676671 -0.0113119 Vertex 1804 -0.0332024 0.0455956 -0.0269373 Vertex 1805 -0.0124761 0.0531764 0.0512005 Vertex 1806 0.00252455 0.078679 0.0567626 Vertex 1807 -0.0715343 0.141411 0.0464325 Vertex 1808 -0.0564971 0.0987696 0.0431638 Vertex 1809 -0.051492 0.107057 0.0393982 Vertex 1810 0.00840449 0.0360838 -0.0229864 Vertex 1811 -0.0632228 0.141176 -0.0069873 Vertex 1812 -0.00944135 0.168135 -0.0197365 Vertex 1813 0.0134328 0.0846923 0.0528905 Vertex 1814 -0.00378356 0.130498 0.0212315 Vertex 1815 0.0143831 0.0448677 -0.0245168 Vertex 1816 -0.062835 0.128322 0.0425151 Vertex 1817 -0.00758529 0.0395118 0.037828 Vertex 1818 -0.00966712 0.0394179 0.0374824 Vertex 1819 0.0378536 0.10688 -0.000832307 Vertex 1820 -0.0609158 0.169795 -0.0608698 Vertex 1821 -0.0770271 0.0743283 0.0300122 Vertex 1822 0.0285377 0.0523356 -0.0187697 Vertex 1823 -0.0360635 0.034528 0.0238485 Vertex 1824 0.0492065 0.0445737 0.00425603 Vertex 1825 -0.0154945 0.0925097 0.0555061 Vertex 1826 -0.0728877 0.143976 -0.0119757 Vertex 1827 -0.0399106 0.033865 0.000215963 Vertex 1828 -0.041271 0.0338554 -0.00188008 Vertex 1829 -0.00949277 0.073156 0.0570282 Vertex 1830 -0.0529166 0.0566407 0.0191372 Vertex 1831 0.042296 0.0775058 -0.00576261 Vertex 1832 -0.00880359 0.113633 -0.0183799 Vertex 1833 0.00584239 0.0374362 -0.00493399 Vertex 1834 -0.0757024 0.160453 -0.0116926 Vertex 1835 -0.0696814 0.0354769 0.0114289 Vertex 1836 -0.0366615 0.0606699 -0.0121541 Vertex 1837 -0.0397664 0.0812015 -0.0202928 Vertex 1838 -0.029592 0.0522946 -0.0203629 Vertex 1839 -0.0674561 0.1652 -0.0559896 Vertex 1840 -0.0504972 0.083371 0.044762 Vertex 1841 0.0174929 0.0962345 0.0475335 Vertex 1842 -0.0771042 0.163136 -0.0202013 Vertex 1843 -0.0921157 0.118792 0.0303066 Vertex 1844 -0.0639025 0.0344657 0.0356117 Vertex 1845 0.0449595 0.0889486 0.000172045 Vertex 1846 -0.0322922 0.122832 0.0242564 Vertex 1847 -0.0474992 0.0718408 0.0410603 Vertex 1848 -0.026729 0.159626 -0.000161005 Vertex 1849 -0.0745333 0.152696 -0.0258905 Vertex 1850 -0.0175125 0.109971 0.0410978 Vertex 1851 0.0565412 0.0674698 0.002463 Vertex 1852 0.00903586 0.100133 -0.0220275 Vertex 1853 -0.0379623 0.174733 -0.00453553 Vertex 1854 -0.0496483 0.0634464 -0.0118311 Vertex 1855 0.0483442 0.0575601 -0.00531363 Vertex 1856 -0.0846192 0.0805533 0.0214764 Vertex 1857 -0.0350636 0.0383682 -0.0121121 Vertex 1858 -0.0476682 0.165409 0.0039929 Vertex 1859 -0.0297787 0.125132 0.0177406 Vertex 1860 -0.081815 0.108922 0.02836 Vertex 1861 -0.042812 0.14778 0.00347562 Vertex 1862 -0.0663652 0.0422587 0.0107808 Vertex 1863 0.026251 0.103389 0.0398709 Vertex 1864 -0.0777504 0.112676 -0.00382147 Vertex 1865 -0.040787 0.0855384 -0.021437 Vertex 1866 0.0132683 0.0765435 -0.0305058 Vertex 1867 -0.0225647 0.184728 -0.0122995 Vertex 1868 -0.0545965 0.0575496 0.0196126 Vertex 1869 -0.00859312 0.0384098 0.0205847 Vertex 1870 -0.00387451 0.0384228 0.00884205 Vertex 1871 -0.0446011 0.0519723 -0.0106716 Vertex 1872 0.055991 0.067441 0.024671 Vertex 1873 -0.0652746 0.0378654 0.0394026 Vertex 1874 0.0330411 0.10941 -0.00791346 Vertex 1875 0.0241838 0.0363666 0.0254891 Vertex 1876 -0.0594975 0.111137 0.0367915 Vertex 1877 -0.0615895 0.155312 -0.0215829 Vertex 1878 -0.00948933 0.0674612 0.0553354 Vertex 1879 -0.00874511 0.0976201 -0.0294139 Vertex 1880 -0.0164714 0.0348128 0.0436847 Vertex 1881 -0.051802 0.111349 -0.0178923 Vertex 1882 -0.0577034 0.0591273 0.0216745 Vertex 1883 0.0462048 0.0792353 0.00618416 Vertex 1884 -0.0516941 0.147804 0.0164166 Vertex 1885 -0.0323987 0.114036 -0.016697 Vertex 1886 -0.0704897 0.0719829 -0.0097429 Vertex 1887 -0.0646908 0.166411 -0.0300665 Vertex 1888 -0.055499 0.0761852 0.0427309 Vertex 1889 0.0235224 0.0727618 0.0480692 Vertex 1890 0.0367284 0.0875226 0.0373878 Vertex 1891 -0.0328931 0.0486572 0.0421875 Vertex 1892 -0.0134788 0.105828 0.0432751 Vertex 1893 0.0297667 0.100164 -0.016062 Vertex 1894 0.0176795 0.0740469 0.0519763 Vertex 1895 0.00525297 0.069736 -0.0335357 Vertex 1896 -0.0865466 0.137714 0.00320362 Vertex 1897 -0.0133594 0.127978 0.0236019 Vertex 1898 -0.0691508 0.152358 -0.047074 Vertex 1899 0.0143608 0.0508459 -0.0270896 Vertex 1900 -0.0608088 0.148246 0.0367611 Vertex 1901 0.0182356 0.126981 0.00216332 Vertex 1902 -0.0866345 0.094046 0.00237751 Vertex 1903 -0.0749615 0.135451 -0.00681495 Vertex 1904 -0.0684956 0.0958684 0.0422138 Vertex 1905 -0.0384792 0.116679 0.0322191 Vertex 1906 -0.0564919 0.0875695 0.0445907 Vertex 1907 -0.0364972 0.0605644 0.0405385 Vertex 1908 -0.0184955 0.0513594 0.0472431 Vertex 1909 0.0606094 0.0637127 0.00915317 Vertex 1910 -0.0514117 0.134659 0.0288827 Vertex 1911 -0.0821235 0.0802564 0.0295192 Vertex 1912 -0.0484976 0.0805051 0.0439961 Vertex 1913 -0.0678494 0.155094 0.00351036 Vertex 1914 0.00849221 0.108496 0.0406568 Vertex 1915 0.0193228 0.0679612 -0.0287395 Vertex 1916 -0.0701548 0.148741 -0.0366493 Vertex 1917 -0.0274957 0.102963 0.0425886 Vertex 1918 -0.014497 0.0856418 0.0570702 Vertex 1919 0.0144377 0.119508 -0.0127985 Vertex 1920 -0.00385838 0.101641 -0.0231016 Vertex 1921 -0.0476906 0.0356242 -0.0142735 Vertex 1922 -0.0669549 0.160975 -0.0568649 Vertex 1923 -0.0888783 0.111909 0.0103621 Vertex 1924 -0.0254875 0.0959781 0.0438332 Vertex 1925 -0.0414965 0.0424145 0.0425934 Vertex 1926 0.0372794 0.0574491 -0.00767997 Vertex 1927 -0.0768656 0.120803 -0.0071099 Vertex 1928 -0.085549 0.104961 0.0233427 Vertex 1929 -0.0875304 0.0861027 0.015468 Vertex 1930 0.0112751 0.0505364 0.0494832 Vertex 1931 -0.058744 0.140559 -0.00481674 Vertex 1932 -0.064981 0.131148 -0.00860586 Vertex 1933 -0.0709341 0.162789 -0.0122264 Vertex 1934 0.0285939 0.108783 0.0362583 Vertex 1935 -0.0469091 0.134066 0.0158053 Vertex 1936 0.0519851 0.0567984 0.0293579 Vertex 1937 -0.0146056 0.0435263 -0.0269315 Vertex 1938 -0.019299 0.0668878 0.052102 Vertex 1939 -0.0633264 0.159631 -0.0180726 Vertex 1940 -0.00575874 0.0741425 -0.036638 Vertex 1941 -0.0339572 0.173519 -0.0141904 Vertex 1942 -0.0864925 0.10492 0.00639597 Vertex 1943 0.0350128 0.0797448 -0.0167143 Vertex 1944 -0.0584964 0.0932599 0.0452695 Vertex 1945 0.0189066 0.0808659 0.0520326 Vertex 1946 -0.0537709 0.0460941 0.0150722 Vertex 1947 -0.0592101 0.142401 0.0336275 Vertex 1948 -0.0388696 0.105647 -0.0202518 Vertex 1949 -0.0380759 0.16073 -0.01276 Vertex 1950 -0.0455114 0.0338265 0.027816 Vertex 1951 0.00332905 0.0553943 -0.0309954 Vertex 1952 -0.0579079 0.121934 -0.00872095 Vertex 1953 -0.0276907 0.0335904 -0.024878 Vertex 1954 -0.0304948 0.094646 0.0448519 Vertex 1955 0.0104883 0.0936688 0.0521003 Vertex 1956 -0.0512935 0.0556822 0.0305914 Vertex 1957 -0.00725841 0.0408714 0.048906 Vertex 1958 -0.0331798 0.0779303 -0.0275261 Vertex 1959 -0.0644851 0.0755505 0.0404189 Vertex 1960 0.0166807 0.124611 -0.00431903 Vertex 1961 -0.0560752 0.0602595 -0.0044615 Vertex 1962 0.0332799 0.0564373 0.0374441 Vertex 1963 -0.0315196 0.0834471 -0.0305496 Vertex 1964 -0.0332851 0.0368458 -0.0306141 Vertex 1965 -0.0481785 0.0341964 0.00728185 Vertex 1966 -0.0856264 0.110331 0.00634317 Vertex 1967 -0.00880164 0.0826803 -0.0379328 Vertex 1968 0.0531496 0.0491587 0.00225551 Vertex 1969 -0.0567974 0.0854612 -0.0213212 Vertex 1970 -0.0236559 0.0709438 0.0478646 Vertex 1971 -0.0485119 0.112536 -0.0170517 Vertex 1972 -0.0155184 0.118264 0.0365807 Vertex 1973 -0.0632785 0.0347611 0.0232648 Vertex 1974 -0.0809167 0.107332 -0.00361395 Vertex 1975 -0.0696582 0.0642657 0.000568637 Vertex 1976 0.0226739 0.0430625 -0.011732 Vertex 1977 -0.0274987 0.0631476 0.0380009 Vertex 1978 -0.0374976 0.0888821 0.0433743 Vertex 1979 -0.033949 0.0667384 -0.0165589 Vertex 1980 -0.0202144 0.186446 -0.0187314 Vertex 1981 -0.000508445 0.105851 0.0435843 Vertex 1982 -0.0651006 0.0458549 0.00368955 Vertex 1983 0.00851416 0.06604 0.0550264 Vertex 1984 -0.0737507 0.0835282 -0.0152437 Vertex 1985 -0.0503963 0.1183 0.0322871 Vertex 1986 -0.0566419 0.0336495 -0.0102846 Vertex 1987 0.0340242 0.115407 0.0165889 Vertex 1988 -0.0417786 0.156522 0.00614116 Vertex 1989 -0.0774937 0.145636 0.0432119 Vertex 1990 0.0147067 0.111012 -0.0176211 Vertex 1991 -0.0861948 0.1005 0.0258994 Vertex 1992 -0.0110238 0.098585 0.0502027 Vertex 1993 0.0143257 0.0594816 -0.0287805 Vertex 1994 -0.0426342 0.12559 0.0204963 Vertex 1995 0.0571336 0.0721807 0.0116675 Vertex 1996 -0.0551792 0.0336096 0.018904 Vertex 1997 0.00411662 0.125005 -0.00865855 Vertex 1998 -0.0794636 0.141716 -0.00376694 Vertex 1999 -0.0878144 0.105004 0.012374 Vertex 2000 -0.054238 0.13299 -0.00459005 Vertex 2001 0.0605691 0.0637105 0.0171755 Vertex 2002 -0.0265893 0.161003 -0.00174275 Vertex 2003 0.0359154 0.0915824 -0.0149202 Vertex 2004 -0.0171345 0.165288 -0.0183426 Vertex 2005 -0.000501715 0.0634055 0.0567322 Vertex 2006 0.0299737 0.0934986 -0.0189639 Vertex 2007 -0.0274618 0.045988 0.0503593 Vertex 2008 0.0124903 0.101789 0.047403 Vertex 2009 -0.0280887 0.123076 -0.00418723 Vertex 2010 -0.0541243 0.156074 -0.00260128 Vertex 2011 0.013232 0.0835986 -0.0303791 Vertex 2012 -0.0806754 0.155074 0.0150117 Vertex 2013 0.0220013 0.0348195 0.00816409 Vertex 2014 0.01567 0.0343236 0.00175615 Vertex 2015 0.0130231 0.0965172 -0.0241956 Vertex 2016 -0.0813824 0.099165 -0.00657823 Vertex 2017 -0.0742711 0.149885 -0.0318724 Vertex 2018 0.0318609 0.0710037 -0.0187224 Vertex 2019 -0.0154981 0.060248 0.0524646 Vertex 2020 -0.0675101 0.0369158 -0.0062949 Vertex 2021 0.00994394 0.0362916 0.0335003 Vertex 2022 -0.0242491 0.0796961 0.0538111 Vertex 2023 0.0433708 0.0459415 -0.00338184 Vertex 2024 -0.0588392 0.0371017 0.0463605 Vertex 2025 0.0254584 0.0383883 -0.00303811 Vertex 2026 0.0206783 0.0361727 0.0176735 Vertex 2027 -0.0871021 0.111516 0.0397664 Vertex 2028 0.0438483 0.076237 -0.00278527 Vertex 2029 -0.0931447 0.118854 0.0382959 Vertex 2030 -0.0144999 0.162187 -0.0103051 Vertex 2031 -0.0600846 0.0399274 0.0217122 Vertex 2032 -0.013279 0.101966 -0.0239644 Vertex 2033 -0.0480938 0.0362157 0.0456887 Vertex 2034 0.0327323 0.0809002 0.0421262 Vertex 2035 -0.0033226 0.122983 -0.0103909 Vertex 2036 -0.0340151 0.0498932 -0.013349 Vertex 2037 -0.0127272 0.0348945 -0.0256797 Vertex 2038 -0.0113718 0.177173 -0.0236196 Vertex 2039 -0.0857201 0.113489 0.0456231 Vertex 2040 -0.0407405 0.0739506 -0.0180651 Vertex 2041 -0.085501 0.0791776 0.00851156 Vertex 2042 -0.0815194 0.125984 0.0522053 Vertex 2043 -0.0380903 0.041957 -0.0274154 Vertex 2044 0.0293657 0.0447288 -0.00609588 Vertex 2045 -0.0875345 0.0914089 0.00446769 Vertex 2046 0.00119588 0.0881146 -0.0344258 Vertex 2047 -0.0460118 0.126697 0.0245216 Vertex 2048 -0.063731 0.0751942 -0.0171769 Vertex 2049 0.00595359 0.131311 0.0061803 Vertex 2050 0.0345357 0.0373492 0.0194302 Vertex 2051 0.0181741 0.0988563 -0.0226017 Vertex 2052 -0.0424955 0.0464529 0.0406301 Vertex 2053 -0.0744896 0.128852 0.0526631 Vertex 2054 0.0049695 0.0340349 0.00359293 Vertex 2055 -0.0405211 0.16525 0.00379284 Vertex 2056 -0.0483231 0.128062 -0.00327126 Vertex 2057 -0.0794271 0.0732336 0.00151817 Vertex 2058 -0.0137235 0.0657235 -0.0372342 Vertex 2059 -0.0640918 0.158696 -0.0546245 Vertex 2060 -0.0902457 0.140661 0.0271695 Vertex 2061 0.0401246 0.0657991 0.0315825 Vertex 2062 -0.0246949 0.0550734 -0.0288078 Vertex 2063 -0.0434936 0.107078 0.040105 Vertex 2064 0.0429025 0.100097 0.0151567 Vertex 2065 -0.0896061 0.126751 0.00429509 Vertex 2066 -0.0657521 0.033742 -0.00672308 Vertex 2067 -0.086732 0.125284 -0.00171301 Vertex 2068 0.0461172 0.0759623 0.0190037 Vertex 2069 -0.0332179 0.0347336 0.0278325 Vertex 2070 0.0205519 0.0414936 -0.0177079 Vertex 2071 -0.0223058 0.184466 -0.0180708 Vertex 2072 -0.0384749 0.0351927 -0.0135871 Vertex 2073 -0.0394998 0.076195 0.0426907 Vertex 2074 -0.00548466 0.051944 0.0528973 Vertex 2075 -0.0908687 0.135097 0.0172074 Vertex 2076 0.00729554 0.0653986 -0.0323322 Vertex 2077 -0.0179511 0.175707 -0.0173471 Vertex 2078 0.0472026 0.0681414 0.0256953 Vertex 2079 -0.00422605 0.0355815 -0.0164762 Vertex 2080 -0.032486 0.0449059 0.0475402 Vertex 2081 -0.0772978 0.0685904 0.0138065 Vertex 2082 -0.0641215 0.0336259 -0.00810847 Vertex 2083 -0.0557441 0.0768187 -0.0193441 Vertex 2084 -0.0694333 0.0348816 0.0112742 Vertex 2085 -0.0335583 0.116878 -0.0136466 Vertex 2086 -0.0613355 0.171315 -0.0617342 Vertex 2087 -0.0102744 0.0864318 -0.0379838 Vertex 2088 0.0259518 0.075434 0.0462884 Vertex 2089 0.0358746 0.0755562 -0.0137901 Vertex 2090 -0.0846322 0.139314 0.044315 Vertex 2091 0.00913312 0.10443 -0.020596 Vertex 2092 -0.0424979 0.0817557 0.0420871 Vertex 2093 -0.0492762 0.143079 0.00435473 Vertex 2094 -0.0536545 0.154299 0.0129697 Vertex 2095 -0.0025152 0.0575969 0.0540026 Vertex 2096 -0.0484883 0.0960313 0.0444485 Vertex 2097 -0.0381652 0.0336678 -0.0288809 Vertex 2098 -0.0167464 0.108538 -0.0209441 Vertex 2099 -0.00195749 0.0369571 0.00873581 Vertex 2100 -0.060738 0.148827 -0.00180261 Vertex 2101 -0.032272 0.0343596 0.0389523 Vertex 2102 -0.0501127 0.0337803 -0.0127711 Vertex 2103 -0.0746487 0.0760382 -0.00984365 Vertex 2104 -0.00764633 0.048167 -0.0303862 Vertex 2105 0.0301667 0.116977 -0.00204442 Vertex 2106 -0.0495043 0.073253 0.0416255 Vertex 2107 -0.0564446 0.0520481 -0.00138381 Vertex 2108 -0.0607941 0.143953 0.0367655 Vertex 2109 0.0409333 0.0900371 -0.0097907 Vertex 2110 -0.0265911 0.123944 0.0203778 Vertex 2111 -0.0580932 0.155356 0.0200663 Vertex 2112 0.0187645 0.036357 0.00611202 Vertex 2113 -0.0345217 0.127119 0.00425139 Vertex 2114 -0.0273861 0.0720614 0.0416635 Vertex 2115 -0.0943409 0.12415 0.0172628 Vertex 2116 -0.011501 0.0787467 0.0576654 Vertex 2117 -0.0640511 0.139618 0.0390194 Vertex 2118 0.0368789 0.0941727 0.035906 Vertex 2119 -0.0728418 0.0685704 -0.00149472 Vertex 2120 -0.0555362 0.0629843 -0.00681601 Vertex 2121 0.0331811 0.0417541 0.0279348 Vertex 2122 -0.022273 0.0879769 0.0544159 Vertex 2123 0.0300894 0.118197 0.0250757 Vertex 2124 -0.0208075 0.0827095 -0.0389174 Vertex 2125 0.000494109 0.118289 0.0391022 Vertex 2126 -0.0764024 0.150045 -0.00692327 Vertex 2127 -0.0722117 0.0348867 0.00176609 Vertex 2128 -0.0106808 0.0555967 -0.0338825 Vertex 2129 -0.038857 0.101401 -0.0214118 Vertex 2130 0.0213045 0.0372836 -0.00268556 Vertex 2131 0.00250208 0.0547919 0.0536548 Vertex 2132 -0.0690491 0.153118 -0.0485047 Vertex 2133 -0.031508 0.0675059 0.0394967 Vertex 2134 0.0226438 0.0875613 0.0487078 Vertex 2135 -0.0261276 0.166758 -0.01752 Vertex 2136 -0.0878748 0.0861246 0.0134664 Vertex 2137 0.0347431 0.103404 0.0328426 Vertex 2138 -0.0508615 0.101367 -0.0215394 Vertex 2139 0.0427869 0.0611675 -0.0033403 Vertex 2140 -0.00141239 0.101018 0.0444401 Vertex 2141 -0.0357408 0.0754574 -0.0191515 Vertex 2142 0.00183354 0.10009 0.0472603 Vertex 2143 -0.0626129 0.0371673 0.0184653 Vertex 2144 -0.062219 0.164671 -0.0505894 Vertex 2145 0.00750673 0.0758763 0.0563548 Vertex 2146 0.0178346 0.0505132 0.0449253 Vertex 2147 -0.072166 0.063706 0.0120556 Vertex 2148 0.0454967 0.0611109 0.0306935 Vertex 2149 -0.0695053 0.106913 0.0375568 Vertex 2150 -0.0666556 0.0360676 0.0353877 Vertex 2151 -0.0891519 0.0956005 0.0104313 Vertex 2152 -0.0438381 0.033833 0.0263899 Vertex 2153 -0.0190564 0.0920061 -0.0357108 Vertex 2154 -0.0445073 0.0491885 0.039305 Vertex 2155 0.026785 0.0955535 0.0441601 Vertex 2156 -0.0424858 0.064826 0.0410217 Vertex 2157 -0.0698329 0.112058 0.0465849 Vertex 2158 -0.0710533 0.04057 0.0057746 Vertex 2159 -0.0649027 0.179945 -0.0575726 Vertex 2160 0.00723985 0.076824 -0.0341303 Vertex 2161 -0.0312407 0.0510927 0.0390643 Vertex 2162 0.047344 0.0721054 0.0183678 Vertex 2163 -0.0871035 0.11231 0.0319974 Vertex 2164 -0.00617179 0.128513 -0.00228639 Vertex 2165 0.00121056 0.115576 -0.018509 Vertex 2166 -0.0144467 0.0348076 0.0441223 Vertex 2167 -0.0257365 0.0348667 0.0503471 Vertex 2168 -0.00148178 0.0718081 0.0578063 Vertex 2169 -0.0786005 0.174957 -0.0470491 Vertex 2170 -0.0541716 0.144673 0.0274046 Vertex 2171 0.0146525 0.0927004 0.0511905 Vertex 2172 -0.0314795 0.0774889 0.0410863 Vertex 2173 -0.0623396 0.172509 -0.0536126 Vertex 2174 -0.0635465 0.0333817 0.00128463 Vertex 2175 0.0156656 0.0713152 0.0525386 Vertex 2176 -0.0665114 0.0931036 0.0430214 Vertex 2177 -0.0494981 0.105619 0.0396922 Vertex 2178 -0.0555 0.0488797 0.0362241 Vertex 2179 0.0247051 0.054807 -0.022754 Vertex 2180 -0.0608886 0.105445 -0.0177606 Vertex 2181 -0.0658232 0.100991 -0.0166158 Vertex 2182 0.0433826 0.0987102 0.00417641 Vertex 2183 0.0153242 0.0566704 -0.0288596 Vertex 2184 -0.0591236 0.0454581 0.0276809 Vertex 2185 0.0067064 0.0341407 0.0184863 Vertex 2186 -0.053144 0.0595659 0.0253997 Vertex 2187 0.0383914 0.0390949 0.00219016 Vertex 2188 -0.063874 0.0967575 -0.0177619 Vertex 2189 -0.0838382 0.11616 -0.00137187 Vertex 2190 -0.00374904 0.0712712 -0.0357267 Vertex 2191 -0.0727656 0.156832 -0.0339136 Vertex 2192 0.00450167 0.0459455 0.0484199 Vertex 2193 -0.0871543 0.105024 0.0183639 Vertex 2194 0.00734362 0.0524803 -0.0298755 Vertex 2195 -0.0468308 0.0941893 -0.021914 Vertex 2196 0.00629906 0.0381702 -0.0111411 Vertex 2197 -0.0574075 0.0649991 0.0334306 Vertex 2198 -0.0278003 0.174225 -0.00868668 Vertex 2199 -0.049383 0.140141 0.0133936 Vertex 2200 -0.0322885 0.177691 -0.00536129 Vertex 2201 0.0042017 0.130577 0.0226921 Vertex 2202 -0.0509363 0.126898 0.0333376 Vertex 2203 -0.0420636 0.159404 0.00394669 Vertex 2204 0.0469057 0.0738955 0.00933063 Vertex 2205 -0.00362249 0.0451016 -0.0279234 Vertex 2206 -0.0387577 0.150948 -0.00516845 Vertex 2207 -0.0144941 0.122325 0.033097 Vertex 2208 -0.0620707 0.163126 -0.0385937 Vertex 2209 0.0318002 0.118052 0.00717688 Vertex 2210 0.0232974 0.0648673 -0.0252072 Vertex 2211 -0.0647819 0.0809531 -0.0185144 Vertex 2212 -0.00388013 0.0394939 0.0368098 Vertex 2213 -0.046711 0.0723683 -0.0164352 Vertex 2214 0.0284552 0.0607955 -0.0208488 Vertex 2215 -0.0773785 0.174262 -0.0420678 Vertex 2216 -0.0911855 0.114622 0.00933636 Vertex 2217 -0.0596132 0.113903 0.0363038 Vertex 2218 0.0427594 0.0986702 0.00117933 Vertex 2219 -0.089161 0.137877 0.0251937 Vertex 2220 0.014203 0.08785 -0.0301032 Vertex 2221 -0.0226414 0.0961417 -0.0259441 Vertex 2222 -0.0400219 0.111533 -0.0180322 Vertex 2223 -0.0349082 0.033686 0.00682403 Vertex 2224 -0.0782171 0.159705 -0.021925 Vertex 2225 -0.0206715 0.0524183 -0.0304469 Vertex 2226 0.00351036 0.0856577 0.0572413 Vertex 2227 0.00350858 0.074484 0.056374 Vertex 2228 0.0179105 0.0350278 -0.0116533 Vertex 2229 0.0295237 0.0727272 0.042682 Vertex 2230 -0.0891859 0.139294 0.0371595 Vertex 2231 0.00823122 0.079605 -0.0335706 Vertex 2232 -0.0522733 0.13577 -0.00153662 Vertex 2233 -0.0373724 0.0344314 0.0325332 Vertex 2234 -0.0655762 0.155146 -0.00586759 Vertex 2235 -0.0507107 0.0708743 -0.0151986 Vertex 2236 0.025252 0.0719314 -0.0249494 Vertex 2237 -0.00165753 0.05399 -0.0314052 Vertex 2238 -0.064123 0.113942 -0.0123233 Vertex 2239 -0.053794 0.086942 -0.0216962 Vertex 2240 0.0390771 0.099844 -0.00681802 Vertex 2241 0.0443888 0.0846966 -0.000809941 Vertex 2242 -0.0473203 0.122487 0.0279328 Vertex 2243 0.0232916 0.104676 0.0408599 Vertex 2244 -0.0763864 0.109432 0.0420745 Vertex 2245 -0.0506187 0.0531538 -0.00831388 Vertex 2246 -0.00150749 0.0442279 0.0463824 Vertex 2247 0.023375 0.0504685 -0.0225374 Vertex 2248 -0.0425982 0.0463965 -0.0133084 Vertex 2249 -0.0814721 0.135361 0.0497671 Vertex 2250 -0.0269007 0.0388242 0.0362546 Vertex 2251 -0.0454994 0.0804154 0.0426755 Vertex 2252 -0.0429021 0.171269 -0.00696466 Vertex 2253 -0.0757136 0.107486 0.0366393 Vertex 2254 -0.0157732 0.0799164 -0.0389165 Vertex 2255 -0.0144955 0.0701698 0.0547379 Vertex 2256 -0.088267 0.147416 0.00925394 Vertex 2257 0.0155029 0.119565 0.0348769 Vertex 2258 -0.0728856 0.148047 -0.0249504 Vertex 2259 -0.0858669 0.119072 -0.00140229 Vertex 2260 -0.0215925 0.0364837 -0.0283556 Vertex 2261 -0.0661715 0.0383371 0.0290301 Vertex 2262 -0.0382796 0.035429 0.0243806 Vertex 2263 -0.0849678 0.0844642 -0.00152644 Vertex 2264 0.024446 0.115337 -0.010308 Vertex 2265 -0.0433018 0.0342732 -0.0267127 Vertex 2266 -0.0917004 0.143358 0.0201656 Vertex 2267 -0.0773599 0.0940895 0.0370488 Vertex 2268 -0.00891681 0.0351082 0.0414685 Vertex 2269 -0.00700917 0.0348727 0.042072 Vertex 2270 -0.0648645 0.041891 0.032665 Vertex 2271 -0.0859248 0.0832079 0.00547822 Vertex 2272 0.0144928 0.11263 0.0387455 Vertex 2273 -0.0847301 0.0966436 -0.00257686 Vertex 2274 -0.0666009 0.15275 -0.0468174 Vertex 2275 -0.0784664 0.0703272 0.00666705 Vertex 2276 -0.0277867 0.0904111 0.0457123 Vertex 2277 -0.00267325 0.0569172 -0.0326724 Vertex 2278 -0.0205328 0.113457 -0.0181494 Vertex 2279 -0.0882187 0.112165 0.0210064 Vertex 2280 0.0393635 0.0445531 -0.00413158 Vertex 2281 0.0508347 0.0727393 0.0196905 Vertex 2282 -0.0845698 0.0831877 0.0245094 Vertex 2283 0.0105117 0.057471 0.0526043 Vertex 2284 0.0095961 0.0354723 -0.00987583 Vertex 2285 0.0440337 0.0734407 -0.000804833 Vertex 2286 -0.0750921 0.156856 -0.022942 Vertex 2287 0.0173872 0.0432828 -0.0228623 Vertex 2288 -0.0619683 0.12268 0.0437909 Vertex 2289 -0.00170857 0.0641356 -0.0344906 Vertex 2290 0.00149398 0.0394449 0.0343588 Vertex 2291 -0.00562089 0.115673 -0.0165634 Vertex 2292 0.0368491 0.0767795 0.0374896 Vertex 2293 -0.063767 0.0615586 0.0227478 Vertex 2294 -0.0825849 0.0762413 0.018536 Vertex 2295 -0.0515872 0.0558557 0.0146208 Vertex 2296 -0.0561893 0.159558 0.00559608 Vertex 2297 -0.0817922 0.143171 0.000171875 Vertex 2298 -0.000810177 0.084021 -0.0366442 Vertex 2299 -0.0188389 0.0383463 0.00224079 Vertex 2300 -0.0455017 0.0973341 0.0429686 Vertex 2301 -0.00206852 0.0346139 0.0433223 Vertex 2302 0.00481949 0.0349074 0.0372909 Vertex 2303 0.00672447 0.0346721 0.0378883 Vertex 2304 -0.0704953 0.104114 0.0382884 Vertex 2305 -0.0507419 0.0753249 -0.0179378 Vertex 2306 0.0148253 0.0447411 0.0439981 Vertex 2307 0.0381223 0.106958 0.0251953 Vertex 2308 0.0572481 0.0508905 0.0141872 Vertex 2309 0.0484836 0.0582148 0.031165 Vertex 2310 -0.0327087 0.156604 0.00170747 Vertex 2311 -0.0633934 0.178218 -0.0607118 Vertex 2312 0.00156461 0.124373 0.0333352 Vertex 2313 0.0204173 0.0925165 -0.0239466 Vertex 2314 -0.0891577 0.092949 0.0214162 Vertex 2315 -0.0290584 0.0385824 0.0360072 Vertex 2316 -0.0379322 0.0359407 -0.029738 Vertex 2317 -0.0304238 0.12007 0.0279522 Vertex 2318 0.0300166 0.0708304 -0.0207823 Vertex 2319 -0.00550703 0.0787847 0.0579843 Vertex 2320 -0.0626127 0.0339199 -0.00909656 Vertex 2321 -0.0623049 0.142641 -0.00633906 Vertex 2322 -0.0478227 0.148347 -0.00331487 Vertex 2323 -0.0788357 0.148682 -0.00186858 Vertex 2324 -0.0462814 0.155049 0.00841735 Vertex 2325 -0.0325544 0.0348985 0.0454309 Vertex 2326 0.046038 0.044353 0.0245911 Vertex 2327 0.016266 0.0750624 -0.0291952 Vertex 2328 -0.0267649 0.0754486 -0.0363172 Vertex 2329 0.0208653 0.122279 0.030221 Vertex 2330 0.0305352 0.10973 -0.0102674 Vertex 2331 -0.0688005 0.087996 -0.0171065 Vertex 2332 -0.0319337 0.0680008 -0.0224492 Vertex 2333 -0.0074894 0.104457 0.0437929 Vertex 2334 0.00846909 0.111301 0.0401143 Vertex 2335 -0.0614566 0.0372076 0.0201515 Vertex 2336 0.0504568 0.0627892 -0.00292241 Vertex 2337 -0.0758939 0.107753 -0.00831552 Vertex 2338 -0.0328555 0.100056 -0.0225692 Vertex 2339 -0.0352323 0.0337248 0.00491425 Vertex 2340 -0.0940215 0.120122 0.0233001 Vertex 2341 -0.0414824 0.100082 0.0415393 Vertex 2342 -0.0285919 0.0494861 -0.0235098 Vertex 2343 -0.0719831 0.170733 -0.0298702 Vertex 2344 -0.0509112 0.0517382 0.0331779 Vertex 2345 -0.0537237 0.147766 0.0244131 Vertex 2346 -0.0448473 0.0339909 -0.0230279 Vertex 2347 -0.00748755 0.111393 0.0423782 Vertex 2348 0.030267 0.0496887 -0.0107252 Vertex 2349 -0.0402835 0.123242 -0.0103332 Vertex 2350 -0.090924 0.128274 0.0409748 Vertex 2351 0.0396278 0.103602 -0.00160767 Vertex 2352 -0.0121975 0.182647 -0.0286755 Vertex 2353 -0.0199406 0.122541 -0.00772092 Vertex 2354 0.0132839 0.0652538 -0.0302637 Vertex 2355 0.0365033 0.0512847 0.031619 Vertex 2356 -0.0653079 0.154958 0.0291369 Vertex 2357 0.000487516 0.110024 0.0426254 Vertex 2358 -0.0292503 0.036802 0.0530596 Vertex 2359 -0.0707082 0.0395895 0.00064332 Vertex 2360 0.0293268 0.0963357 -0.0179631 Vertex 2361 -0.0283604 0.112635 -0.0172343 Vertex 2362 -0.0277078 0.0725313 -0.0348614 Vertex 2363 0.00767659 0.0346834 0.0054103 Vertex 2364 -0.0932461 0.129666 0.0232459 Vertex 2365 -0.0121993 0.177175 -0.0288808 Vertex 2366 -0.0617049 0.070743 -0.0146345 Vertex 2367 -0.00466385 0.129429 0.0252614 Vertex 2368 -0.0704758 0.123201 0.0533571 Vertex 2369 0.0144985 0.107111 0.0421568 Vertex 2370 -0.0823671 0.0939609 0.0321712 Vertex 2371 -0.039718 0.0695625 -0.0162922 Vertex 2372 -0.0134983 0.0501789 0.0495792 Vertex 2373 -0.00887643 0.105922 -0.0227472 Vertex 2374 -0.0675712 0.139722 0.0445155 Vertex 2375 -0.0315045 0.100214 0.0434156 Vertex 2376 -0.0146147 0.12166 -0.00880985 Vertex 2377 0.0300675 0.0822073 0.0435477 Vertex 2378 0.00314926 0.122256 -0.0116623 Vertex 2379 -0.0647364 0.118589 0.0486106 Vertex 2380 -0.0660018 0.133981 0.0432166 Vertex 2381 -0.0363013 0.0408102 0.0457892 Vertex 2382 -0.00613038 0.0999315 0.0488982 Vertex 2383 0.0198737 0.0358544 0.0359282 Vertex 2384 0.0365837 0.0686678 0.0370221 Vertex 2385 -0.0334673 0.0532523 0.0375728 Vertex 2386 -0.0177087 0.0584461 -0.0348025 Vertex 2387 -0.0725189 0.144585 -0.0159026 Vertex 2388 -0.0399375 0.150681 0.00347523 Vertex 2389 0.0255945 0.0477251 0.0385093 Vertex 2390 -0.0374342 0.125294 0.0223398 Vertex 2391 -0.0850182 0.0831804 0.00149618 Vertex 2392 -0.0699808 0.136988 -0.00795948 Vertex 2393 -0.0578948 0.0983776 -0.0200563 Vertex 2394 -0.0456148 0.043386 -0.0114089 Vertex 2395 -0.0762359 0.113613 0.0494664 Vertex 2396 0.000137101 0.104495 -0.0221519 Vertex 2397 0.0190773 0.108184 -0.0165978 Vertex 2398 -0.0437744 0.116579 -0.0153348 Vertex 2399 -0.0579078 0.0494657 0.0056917 Vertex 2400 -0.0720312 0.141354 -0.00781974 Vertex 2401 -0.00929516 0.17029 -0.0258484 Vertex 2402 -0.03164 0.0581442 -0.0153958 Vertex 2403 -0.0336642 0.082217 -0.0255373 Vertex 2404 -0.00703497 0.101085 0.0445106 Vertex 2405 -0.0816947 0.113482 0.0465399 Vertex 2406 0.0235861 0.0352777 0.0154316 Vertex 2407 -0.0330169 0.0750953 -0.0275046 Vertex 2408 -0.0860007 0.147303 0.0341634 Vertex 2409 -0.0440446 0.129866 0.0080667 Vertex 2410 -0.0849611 0.0883696 0.0278927 Vertex 2411 -0.0763933 0.111249 -0.00565203 Vertex 2412 -0.0438465 0.0359346 0.00839642 Vertex 2413 -0.0426772 0.14763 -0.000244298 Vertex 2414 -0.0871972 0.102223 0.00642609 Vertex 2415 0.0166077 0.128469 0.0186355 Vertex 2416 -0.0440132 0.0366004 -0.0242792 Vertex 2417 -0.0357596 0.0367769 0.0465803 Vertex 2418 -0.0125102 0.0897843 0.0566766 Vertex 2419 0.0244407 0.0405616 0.0372831 Vertex 2420 -0.0795322 0.0826724 -0.00859002 Vertex 2421 -0.0301706 0.0421547 -0.0296993 Vertex 2422 -0.0737727 0.0928414 0.040556 Vertex 2423 -0.0298632 0.102958 -0.0228236 Vertex 2424 -0.0348879 0.043516 0.0457289 Vertex 2425 -0.0356146 0.127659 0.0111781 Vertex 2426 -0.0594798 0.0790546 0.0431577 Vertex 2427 -0.0597327 0.156046 0.0093301 Vertex 2428 -0.0599121 0.0588939 0.00621161 Vertex 2429 -0.00761024 0.0420402 -0.0258045 Vertex 2430 0.00539495 0.0433546 -0.0245866 Vertex 2431 0.0174939 0.0350076 -0.00788091 Vertex 2432 -0.053835 0.0329874 0.0179508 Vertex 2433 -0.0626839 0.154165 0.00249175 Vertex 2434 -0.0556539 0.153362 0.0267778 Vertex 2435 -0.0729035 0.125275 -0.00849683 Vertex 2436 0.00642086 0.116423 -0.0174422 Vertex 2437 -0.0761998 0.14998 -0.0148766 Vertex 2438 0.0156145 0.128768 0.00543431 Vertex 2439 -0.0820812 0.0748515 0.0115294 Vertex 2440 -0.0755167 0.0714511 -0.00453448 Vertex 2441 0.0189949 0.0449386 0.0430002 Vertex 2442 0.00946449 0.0616923 0.0540126 Vertex 2443 -0.00449141 0.0911839 0.0565229 Vertex 2444 0.0147936 0.104084 -0.0202238 Vertex 2445 -0.0175094 0.116845 0.0368185 Vertex 2446 -0.0405043 0.0944618 0.0422679 Vertex 2447 0.0450791 0.0411084 0.0144119 Vertex 2448 -0.018203 0.175668 -0.0239316 Vertex 2449 0.00536718 0.125777 0.0317922 Vertex 2450 -0.00837752 0.0353543 0.048476 Vertex 2451 -0.0321289 0.0337822 0.0109163 Vertex 2452 -0.0734967 0.126028 0.0530224 Vertex 2453 0.0125555 0.034405 -0.0178251 Vertex 2454 -0.00977952 0.0372711 0.0498001 Vertex 2455 -0.0654857 0.101487 0.0416824 Vertex 2456 0.0432388 0.0804742 0.027354 Vertex 2457 -0.0649207 0.122383 -0.00889091 Vertex 2458 0.0349752 0.0684447 -0.0157877 Vertex 2459 -0.0239808 0.0936155 -0.0313592 Vertex 2460 -0.0678958 0.0610238 0.00808464 Vertex 2461 0.0455086 0.055594 0.0323303 Vertex 2462 -0.0304487 0.0334492 -0.0290445 Vertex 2463 -0.0132739 0.162396 -0.014817 Vertex 2464 -0.0419921 0.0349859 0.0415962 Vertex 2465 -0.0761893 0.0686573 0.0192806 Vertex 2466 -0.0586032 0.141 0.0328315 Vertex 2467 -0.0905476 0.146077 0.0141502 Vertex 2468 -0.0540072 0.144242 -0.000990452 Vertex 2469 -0.0375019 0.0804666 0.0432825 Vertex 2470 0.0180643 0.0577618 0.0488361 Vertex 2471 -0.0642285 0.0429095 -0.00424321 Vertex 2472 -0.0685481 0.156429 0.0206858 Vertex 2473 0.0190515 0.0781917 0.0522129 Vertex 2474 -0.0224928 0.0988548 0.044702 Vertex 2475 -0.0111299 0.129809 0.0171219 Vertex 2476 0.00411674 0.108725 -0.0201726 Vertex 2477 -0.0174898 0.105786 0.0424611 Vertex 2478 0.00448236 0.11415 0.0407558 Vertex 2479 -0.0514248 0.0500855 0.0140283 Vertex 2480 0.0322227 0.0828447 -0.0192606 Vertex 2481 0.00535116 0.0480874 -0.0284111 Vertex 2482 -0.0676995 0.0606833 0.0155957 Vertex 2483 -0.00450247 0.056202 0.0539356 Vertex 2484 -0.0701499 0.0695315 0.0320822 Vertex 2485 -0.0475132 0.0875996 0.0450977 Vertex 2486 -0.0313268 0.0609036 -0.0184352 Vertex 2487 -0.0537032 0.140954 0.0276054 Vertex 2488 0.0403123 0.0491555 -0.00629774 Vertex 2489 -0.0578223 0.12834 0.0392194 Vertex 2490 0.0101258 0.125306 -0.00703851 Vertex 2491 -0.0809364 0.129495 -0.00494346 Vertex 2492 0.0243337 0.0605883 -0.0247185 Vertex 2493 -0.0444587 0.11222 -0.0167423 Vertex 2494 -0.0499299 0.0335056 -0.0106454 Vertex 2495 -0.0127393 0.0700008 -0.0380391 Vertex 2496 -0.0306705 0.0692801 -0.0274547 Vertex 2497 -0.0563673 0.0575771 -0.00141956 Vertex 2498 0.0142784 0.11622 -0.015243 Vertex 2499 -0.0174959 0.0984963 0.0451272 Vertex 2500 -0.00781609 0.0854881 -0.0377912 Vertex 2501 0.0308479 0.0567691 -0.0158074 Vertex 2502 0.0103735 0.0460953 0.0463477 Vertex 2503 0.0412042 0.046738 0.0312341 Vertex 2504 -0.00468764 0.0584239 -0.0337898 Vertex 2505 -0.0155441 0.165408 -0.0121335 Vertex 2506 -0.00548585 0.118301 0.0387556 Vertex 2507 0.0272754 0.0703879 -0.0233186 Vertex 2508 -0.0226202 0.181624 -0.0117104 Vertex 2509 -0.0720231 0.149543 -0.0391183 Vertex 2510 0.00924462 0.0710839 -0.0326657 Vertex 2511 -0.0523414 0.0402098 0.0465679 Vertex 2512 -0.0406241 0.0520111 -0.0110025 Vertex 2513 -0.0261763 0.0931476 0.0454624 Vertex 2514 0.0333197 0.0357288 0.0133458 Vertex 2515 -0.0218317 0.124906 0.0220793 Vertex 2516 -0.0846424 0.139002 0.00130344 Vertex 2517 -0.0486367 0.0591511 -0.0114572 Vertex 2518 -0.055623 0.120216 -0.0109924 Vertex 2519 -0.0792494 0.0723341 0.0207326 Vertex 2520 -0.0430533 0.034543 -0.0263375 Vertex 2521 -0.054126 0.0491389 0.0369634 Vertex 2522 -0.0659084 0.106679 -0.0142087 Vertex 2523 -0.0620106 0.15528 -0.0315878 Vertex 2524 -0.0331634 0.0381954 -0.000525199 Vertex 2525 0.0179185 0.121996 -0.0074786 Vertex 2526 -0.0311459 0.0354418 0.0504241 Vertex 2527 0.0420833 0.0409609 0.00227771 Vertex 2528 -0.0902473 0.132271 0.00623314 Vertex 2529 -0.00148382 0.131063 0.00627096 Vertex 2530 0.0254608 0.100767 0.0422505 Vertex 2531 -0.0224071 0.0510134 0.0440995 Vertex 2532 -0.0304938 0.0960556 0.0449536 Vertex 2533 0.0132792 0.0343795 0.0214237 Vertex 2534 -0.0263289 0.0434924 0.0526862 Vertex 2535 0.0303629 0.0483136 -0.00765132 Vertex 2536 0.00250661 0.0924946 0.055168 Vertex 2537 -0.0650018 0.0435996 0.0108034 Vertex 2538 -0.0305755 0.0788685 0.0415824 Vertex 2539 -0.0678048 0.17421 -0.0455841 Vertex 2540 0.0250153 0.0699448 0.0449142 Vertex 2541 -0.0126939 0.0585083 -0.0350263 Vertex 2542 0.0279051 0.0395203 0.0288639 Vertex 2543 -0.0694924 0.0846972 0.0421957 Vertex 2544 -0.086501 0.0833246 0.0174861 Vertex 2545 -0.0607836 0.171276 -0.0609166 Vertex 2546 -0.0532836 0.0335112 0.0086601 Vertex 2547 0.0275656 0.0563642 0.0414619 Vertex 2548 -0.0493916 0.144765 0.00938332 Vertex 2549 0.0313753 0.111403 0.0314731 Vertex 2550 -0.0817321 0.120346 0.0490739 Vertex 2551 -0.0351787 0.0336265 -0.0226404 Vertex 2552 -0.0125152 0.0589286 0.0534547 Vertex 2553 0.0100598 0.0371564 0.0309489 Vertex 2554 -0.0499113 0.147776 0.0118822 Vertex 2555 -0.0768619 0.116386 -0.00596474 Vertex 2556 -0.0408255 0.0914222 -0.0231618 Vertex 2557 -0.0605498 0.0341606 0.0243603 Vertex 2558 -0.0602464 0.144668 -0.00329576 Vertex 2559 0.0150017 0.0576648 0.0496654 Vertex 2560 -0.0684496 0.0369814 0.0129839 Vertex 2561 -0.0697681 0.156742 -0.0499137 Vertex 2562 -0.0261702 0.0823861 0.0514348 Vertex 2563 -0.0104184 0.179993 -0.0295246 Vertex 2564 -0.0261647 0.0620468 0.0393395 Vertex 2565 -0.0348319 0.0943645 -0.0236767 Vertex 2566 0.0407504 0.0633497 -0.00473671 Vertex 2567 -0.0045943 0.109577 -0.0220661 Vertex 2568 -0.0482842 0.164088 -0.00583628 Vertex 2569 0.000291608 0.0641338 -0.034343 Vertex 2570 -0.0694635 0.0618968 0.00696654 Vertex 2571 -0.0684622 0.16137 -0.0113077 Vertex 2572 -0.0762473 0.0920177 -0.013581 Vertex 2573 0.0463618 0.0504062 -0.00492067 Vertex 2574 -0.0669938 0.0358141 0.0313063 Vertex 2575 -0.0469304 0.116649 -0.0154073 Vertex 2576 -0.0307256 0.0915724 -0.0247467 Vertex 2577 -0.0423306 0.040657 -0.0232664 Vertex 2578 -0.0599208 0.0394628 0.0453423 Vertex 2579 -0.0266388 0.038336 -0.00299264 Vertex 2580 -0.00945158 0.0346766 0.0453022 Vertex 2581 -0.055158 0.0361639 -0.0112393 Vertex 2582 -0.00484087 0.0994589 -0.0252596 Vertex 2583 -0.0576549 0.124438 -0.00742698 Vertex 2584 0.0163171 0.0686116 0.0516854 Vertex 2585 -0.0659423 0.149401 -0.0328697 Vertex 2586 -0.0887091 0.0983318 0.0213821 Vertex 2587 0.0256492 0.0831048 -0.024123 Vertex 2588 -0.0720139 0.180999 -0.0528377 Vertex 2589 0.048187 0.0717514 0.00605259 Vertex 2590 0.0457541 0.0497206 0.0308161 Vertex 2591 -0.031899 0.0792306 -0.0315346 Vertex 2592 -0.0447185 0.0709976 -0.0171011 Vertex 2593 -0.0184886 0.0801089 0.0571361 Vertex 2594 -0.0864962 0.112872 0.0280752 Vertex 2595 0.0425127 0.0872289 0.028142 Vertex 2596 -0.0237033 0.091176 -0.0348871 Vertex 2597 -0.0718704 0.117956 -0.00810673 Vertex 2598 -0.050567 0.0474222 -0.00850865 Vertex 2599 -0.0534972 0.0732542 0.0410474 Vertex 2600 -0.00650105 0.0472142 0.0482843 Vertex 2601 -0.0162681 0.118552 -0.0135478 Vertex 2602 -0.0746787 0.169356 -0.0440586 Vertex 2603 0.0582269 0.0686747 0.0208601 Vertex 2604 -0.0264808 0.0509031 0.0429156 Vertex 2605 -0.0776508 0.151441 -0.00388634 Vertex 2606 -0.0607701 0.0447346 0.0418038 Vertex 2607 0.0212843 0.0490624 0.0410711 Vertex 2608 0.0406613 0.0638232 0.0297482 Vertex 2609 -0.0606301 0.0613516 -0.00265703 Vertex 2610 0.0219313 0.0605513 0.0474343 Vertex 2611 -0.0844232 0.100698 -0.00156743 Vertex 2612 -0.0351624 0.0344214 0.0133327 Vertex 2613 -0.0366019 0.0472824 -0.0203909 Vertex 2614 0.0234605 0.0367801 -0.00165856 Vertex 2615 0.00551166 0.0504095 0.0521406 Vertex 2616 -0.0730559 0.14548 -0.015959 Vertex 2617 -0.0220444 0.0384934 -0.0170721 Vertex 2618 -0.0802651 0.0963563 -0.00854135 Vertex 2619 -0.00773143 0.0670178 -0.0355816 Vertex 2620 -0.0285962 0.0377287 0.0207135 Vertex 2621 -0.0154864 0.0814755 0.0571167 Vertex 2622 -0.0144859 0.0951551 0.0535558 Vertex 2623 0.05377 0.0682444 0.00163269 Vertex 2624 -0.0743245 0.179234 -0.0539852 Vertex 2625 0.0419459 0.0625408 -0.0027477 Vertex 2626 0.0285253 0.065965 0.0429423 Vertex 2627 -0.0485539 0.0376116 -0.0123218 Vertex 2628 -0.0626214 0.149057 -0.0155813 Vertex 2629 -0.0184974 0.103009 0.0434402 Vertex 2630 0.0302883 0.103408 0.0369471 Vertex 2631 -0.0354827 0.0945899 0.0441989 Vertex 2632 -0.0246777 0.0366811 0.0541279 Vertex 2633 -0.0266334 0.0505574 -0.0257305 Vertex 2634 -0.0318359 0.0344957 0.0406866 Vertex 2635 -0.065193 0.165273 -0.0595568 Vertex 2636 0.00623573 0.0382417 0.0273828 Vertex 2637 -0.0538836 0.0984784 -0.021806 Vertex 2638 -0.0530779 0.153128 -0.00337034 Vertex 2639 0.0610023 0.062364 0.012157 Vertex 2640 -0.0388025 0.125966 -0.00521606 Vertex 2641 -0.0489146 0.121146 0.0309679 Vertex 2642 -0.0821005 0.0885236 0.0320901 Vertex 2643 -0.0445267 0.0423569 -0.0163056 Vertex 2644 -0.0773495 0.081875 0.035997 Vertex 2645 -0.0318598 0.0496767 -0.0173511 Vertex 2646 -0.0457478 0.130844 0.0207105 Vertex 2647 0.0252085 0.0464911 -0.0166174 Vertex 2648 0.0390327 0.0744186 -0.0107818 Vertex 2649 -0.0575438 0.119835 0.0395668 Vertex 2650 -0.0236176 0.123316 0.0244011 Vertex 2651 -0.0267986 0.0839175 -0.0367186 Vertex 2652 -0.0711187 0.0642492 0.0206358 Vertex 2653 0.0278638 0.0367181 0.000104301 Vertex 2654 -0.0418598 0.102811 -0.0210501 Vertex 2655 -0.00118398 0.0362533 0.0473478 Vertex 2656 -0.0465061 0.0425232 0.0438042 Vertex 2657 -0.0343564 0.043282 -0.028737 Vertex 2658 -0.0375014 0.106979 0.038117 Vertex 2659 0.00940878 0.0389595 -0.0232113 Vertex 2660 0.00350126 0.104382 0.0428343 Vertex 2661 0.0527245 0.0736707 0.0159788 Vertex 2662 -0.0564976 0.101562 0.0427397 Vertex 2663 -0.0536498 0.152894 0.0173581 Vertex 2664 -0.0577821 0.0826022 -0.0210434 Vertex 2665 0.0201601 0.0357218 -0.00467829 Vertex 2666 0.00894357 0.0819404 0.0551438 Vertex 2667 -0.0647467 0.143415 -0.011401 Vertex 2668 -0.0760712 0.152304 0.0343668 Vertex 2669 -0.0612546 0.0341987 0.0206565 Vertex 2670 -0.0132802 0.102485 0.0435875 Vertex 2671 0.00204515 0.0345955 -0.0162029 Vertex 2672 -0.0297799 0.106834 -0.0211406 Vertex 2673 -0.0657333 0.121445 0.0506733 Vertex 2674 -0.0125029 0.0673483 0.0540527 Vertex 2675 -0.0749218 0.0661459 0.00857247 Vertex 2676 -0.0417916 0.0869783 -0.0214259 Vertex 2677 -0.0872247 0.152479 0.0216964 Vertex 2678 0.0204871 0.0934146 0.0476927 Vertex 2679 0.00350781 0.064793 0.0565955 Vertex 2680 0.0453646 0.0575572 -0.00557548 Vertex 2681 -0.0485081 0.0504118 0.037253 Vertex 2682 0.058913 0.070492 0.0108657 Vertex 2683 -0.0544964 0.10974 0.0378742 Vertex 2684 -0.050269 0.11691 0.032477 Vertex 2685 -0.0336693 0.0607336 -0.0127906 Vertex 2686 -0.0492298 0.13342 0.00108021 Vertex 2687 0.0270498 0.0919981 -0.0213752 Vertex 2688 -0.0544725 0.0478754 0.0402183 Vertex 2689 -0.0540808 0.0434992 0.0186914 Vertex 2690 -0.0664147 0.112558 0.0425241 Vertex 2691 -0.0724467 0.0361675 0.00255211 Vertex 2692 -0.0245528 0.116739 0.0335827 Vertex 2693 -0.014903 0.172738 -0.0182312 Vertex 2694 0.00340018 0.0348289 -0.0229504 Vertex 2695 0.0122352 0.0808526 -0.0312408 Vertex 2696 -0.00890819 0.0389895 -0.0111716 Vertex 2697 -0.0159434 0.0385311 0.027994 Vertex 2698 -0.0167333 0.0642714 -0.0369951 Vertex 2699 -0.0211646 0.0933284 0.0517404 Vertex 2700 -0.0319013 0.0525534 -0.0124561 Vertex 2701 -0.0357967 0.0383351 -0.00483874 Vertex 2702 -0.0365004 0.0719314 0.0420432 Vertex 2703 -0.0281162 0.181397 -0.0109687 Vertex 2704 -0.0604952 0.0932426 0.0451145 Vertex 2705 0.00518099 0.090879 -0.0329112 Vertex 2706 -0.000266463 0.0936214 -0.0332218 Vertex 2707 -0.033517 0.115303 0.0329858 Vertex 2708 -0.0434783 0.0690982 0.041489 Vertex 2709 -0.0487066 0.064243 0.0362896 Vertex 2710 -0.0907184 0.115992 0.0263684 Vertex 2711 -0.0633419 0.155193 -0.0376165 Vertex 2712 -0.0691313 0.170851 -0.0540166 Vertex 2713 -0.0435038 0.0438236 0.0424673 Vertex 2714 -0.0896848 0.0929338 0.0144339 Vertex 2715 0.00321341 0.034575 0.0192003 Vertex 2716 0.0344395 0.062733 -0.0148459 Vertex 2717 -0.0193967 0.186852 -0.0171886 Vertex 2718 0.037525 0.0785071 -0.0127982 Vertex 2719 -0.0580787 0.133988 -0.00600022 Vertex 2720 -0.022965 0.108799 -0.0212234 Vertex 2721 0.0214495 0.0822346 0.0504578 Vertex 2722 -0.0925573 0.125589 0.0382552 Vertex 2723 -0.0882052 0.0955366 0.00643448 Vertex 2724 -0.0715324 0.144165 0.0446205 Vertex 2725 -0.0558871 0.108356 -0.0181276 Vertex 2726 -0.0613177 0.0470312 0.00669678 Vertex 2727 -0.048723 0.166988 -0.000980568 Vertex 2728 -0.089592 0.111931 0.0163329 Vertex 2729 -0.0891532 0.121635 0.0465292 Vertex 2730 -0.0389556 0.0350986 0.042208 Vertex 2731 -0.0445836 0.0476428 -0.0105653 Vertex 2732 -0.0892473 0.0888575 0.0104669 Vertex 2733 -0.0562712 0.146757 0.030967 Vertex 2734 -0.0669945 0.169371 -0.0323347 Vertex 2735 0.0578503 0.0648244 0.0238145 Vertex 2736 -0.0151514 0.041952 0.0515406 Vertex 2737 -0.0134154 0.0393527 0.0385623 Vertex 2738 -0.0112898 0.0395292 0.0388441 Vertex 2739 -0.00349688 0.0633763 0.0563118 Vertex 2740 0.0422094 0.0873179 -0.00779978 Vertex 2741 -0.0225608 0.0608496 0.0442445 Vertex 2742 -0.0448632 0.102817 -0.0213129 Vertex 2743 -0.0498374 0.138571 0.0183794 Vertex 2744 0.0514754 0.0531199 -0.00283685 Vertex 2745 0.00952731 0.105746 0.0431674 Vertex 2746 -0.0903092 0.140666 0.025165 Vertex 2747 -0.0802058 0.0759672 -0.0035211 Vertex 2748 -0.0139288 0.0883705 -0.0380287 Vertex 2749 -0.081252 0.0993542 0.0322994 Vertex 2750 -0.032468 0.175717 -0.00291757 Vertex 2751 0.0144021 0.0780973 0.054252 Vertex 2752 -0.00650337 0.0633626 0.0562557 Vertex 2753 -0.0106577 0.165418 -0.0198106 Vertex 2754 0.0133781 0.0537725 -0.0285433 Vertex 2755 -0.0534962 0.0931826 0.0441514 Vertex 2756 -0.0779458 0.175786 -0.0452228 Vertex 2757 -0.0536299 0.144677 0.0243972 Vertex 2758 -0.0218698 0.104438 -0.0229686 Vertex 2759 -0.0444858 0.091688 0.0430295 Vertex 2760 -0.0616679 0.0643653 -0.00651734 Vertex 2761 -0.0265381 0.155425 -0.00506198 Vertex 2762 -0.0434567 0.155083 0.00724724 Vertex 2763 0.0145806 0.0953173 0.0493246 Vertex 2764 -0.0657222 0.0431534 -0.00229362 Vertex 2765 0.0137354 0.10206 -0.0220537 Vertex 2766 -0.0564853 0.0791423 0.0441771 Vertex 2767 -0.0409612 0.0344092 -0.00782476 Vertex 2768 -0.0181519 0.16827 -0.0202389 Vertex 2769 0.00364343 0.0960341 -0.0296841 Vertex 2770 -0.0441537 0.0408799 -0.0213021 Vertex 2771 0.0438124 0.093116 0.0231537 Vertex 2772 -0.0528967 0.0476266 0.0236645 Vertex 2773 -0.085378 0.128494 0.0496125 Vertex 2774 0.0390675 0.0617702 -0.00778266 Vertex 2775 0.00624218 0.039472 0.0335072 Vertex 2776 -0.0568151 0.142191 -0.00256359 Vertex 2777 0.0453927 0.0833662 0.00319518 Vertex 2778 0.0200495 0.124902 -0.000599563 Vertex 2779 -0.0194396 0.0527865 0.0471813 Vertex 2780 -0.0559881 0.0594067 0.0225062 Vertex 2781 -0.0372275 0.160948 0.000450464 Vertex 2782 -0.0748544 0.15611 0.0141114 Vertex 2783 0.0241599 0.0418198 -0.00678118 Vertex 2784 -0.0892074 0.127019 0.0449806 Vertex 2785 -0.052836 0.095613 -0.0220115 Vertex 2786 0.0277412 0.121021 0.0227689 Vertex 2787 -0.0484929 0.0776741 0.0437591 Vertex 2788 0.00650779 0.0575337 0.0533257 Vertex 2789 -0.0147199 0.184604 -0.0232088 Vertex 2790 -0.0640739 0.0617863 -0.0011495 Vertex 2791 -0.0723413 0.0352299 0.00501169 Vertex 2792 -0.00350265 0.0689326 0.0566398 Vertex 2793 -0.00953059 0.096141 -0.0318625 Vertex 2794 0.0101112 0.110138 -0.0193681 Vertex 2795 -0.0709029 0.110786 -0.0101311 Vertex 2796 -0.0655106 0.0972881 0.0421527 Vertex 2797 -0.0613587 0.0343255 -0.00949544 Vertex 2798 -0.0135041 0.11966 0.0364252 Vertex 2799 -0.000233811 0.123831 -0.00932637 Vertex 2800 -0.0301947 0.125922 0.0102205 Vertex 2801 0.00838362 0.046349 -0.0258656 Vertex 2802 0.0192289 0.0820148 -0.027672 Vertex 2803 -0.0623548 0.166257 -0.0465894 Vertex 2804 -0.0379669 0.0433397 0.0417712 Vertex 2805 0.0257216 0.0672521 0.0441644 Vertex 2806 -0.0653439 0.127011 0.0477296 Vertex 2807 0.0386236 0.109277 0.0110826 Vertex 2808 0.0373688 0.102607 -0.00785264 Vertex 2809 -0.0809901 0.135346 -0.00326263 Vertex 2810 -0.058758 0.148538 -0.00150368 Vertex 2811 -0.082839 0.145958 0.00218243 Vertex 2812 -0.0294246 0.0861745 0.0444819 Vertex 2813 -0.0137302 0.107232 -0.0215702 Vertex 2814 0.0252321 0.0889244 0.0471615 Vertex 2815 -0.000753869 0.0390895 -0.00403098 Vertex 2816 -0.0626717 0.152516 0.0345768 Vertex 2817 -0.0107827 0.0784509 -0.0379132 Vertex 2818 -0.086583 0.1077 0.0153543 Vertex 2819 -0.0470957 0.0376632 0.0453493 Vertex 2820 -0.0788893 0.125151 -0.00625598 Vertex 2821 -0.0442894 0.126542 0.0198398 Vertex 2822 -0.0578055 0.0883401 -0.0213124 Vertex 2823 -0.0367737 0.0813353 -0.0218258 Vertex 2824 0.0603913 0.0595429 0.0161691 Vertex 2825 -0.0906686 0.139207 0.0161786 Vertex 2826 0.0102881 0.063916 -0.0312717 Vertex 2827 -0.035694 0.0666325 -0.0153314 Vertex 2828 -0.0284243 0.0487716 0.0462084 Vertex 2829 -0.0884887 0.122612 0.00129126 Vertex 2830 -0.0475033 0.113884 0.0346438 Vertex 2831 -0.0754019 0.151364 -0.0118956 Vertex 2832 -0.0255993 0.037974 -0.029094 Vertex 2833 -0.00750736 0.0561433 0.0534652 Vertex 2834 -0.0795325 0.124539 0.0521412 Vertex 2835 -0.0156461 0.186781 -0.0233704 Vertex 2836 0.00650044 0.0910463 0.0545358 Vertex 2837 -0.0382462 0.044597 -0.024375 Vertex 2838 -0.0300276 0.0875944 -0.030572 Vertex 2839 -0.08227 0.0830732 0.0310042 Vertex 2840 -0.0381589 0.163687 -0.0131595 Vertex 2841 -0.0707265 0.080778 -0.0161096 Vertex 2842 -0.0747471 0.147201 -0.0128585 Vertex 2843 -0.0524893 0.105673 0.0402508 Vertex 2844 -0.0709378 0.0995366 0.0403447 Vertex 2845 0.0341142 0.0605859 0.0386759 Vertex 2846 -0.0525972 0.055954 -0.00763978 Vertex 2847 0.0441694 0.0706598 0.0245614 Vertex 2848 -0.0558854 0.0479468 0.0296668 Vertex 2849 -0.0377966 0.0870844 -0.0227292 Vertex 2850 -0.0776418 0.158287 -0.0219264 Vertex 2851 -0.0719223 0.112846 0.049279 Vertex 2852 -0.0413446 0.0335325 -0.0237744 Vertex 2853 -0.0136017 0.0392183 -0.0267222 Vertex 2854 -0.0373144 0.033633 0.00457247 Vertex 2855 0.0541546 0.0547912 -0.000791323 Vertex 2856 -0.0779853 0.13835 -0.00526914 Vertex 2857 0.0405223 0.0582848 0.0307512 Vertex 2858 0.0336268 0.0557054 -0.0117007 Vertex 2859 0.0135801 0.0874029 0.0531363 Vertex 2860 -0.0648162 0.092445 -0.0185198 Vertex 2861 -0.00596208 0.0394 0.0364646 Vertex 2862 0.00434097 0.053874 -0.0300717 Vertex 2863 0.0537553 0.0686728 0.0251859 Vertex 2864 -0.0867731 0.0820034 0.0144903 Vertex 2865 -0.0246346 0.0464142 -0.0272665 Vertex 2866 0.0404333 0.0725805 0.0320798 Vertex 2867 -0.00457894 0.0383459 0.0160278 Vertex 2868 -0.000666067 0.037425 0.0194672 Vertex 2869 0.012166 0.127075 0.0284779 Vertex 2870 -0.0585235 0.0425717 0.0226979 Vertex 2871 0.0399369 0.0860773 0.0331939 Vertex 2872 0.015086 0.0406501 0.0443863 Vertex 2873 -0.000994561 0.129288 -0.0011666 Vertex 2874 -0.00832726 0.0349131 -0.024554 Vertex 2875 -0.0719279 0.153998 -0.0419035 Vertex 2876 -0.0474967 0.100136 0.0424923 Vertex 2877 -0.0653179 0.156011 -0.0499494 Vertex 2878 -0.0872747 0.139127 0.00719289 Vertex 2879 0.0125705 0.0658518 0.0532694 Vertex 2880 -0.0557727 0.0333786 -0.00437552 Vertex 2881 -0.0287174 0.0344722 -0.0298467 Vertex 2882 -0.0466572 0.0369109 -0.0172699 Vertex 2883 -0.0407686 0.0811968 -0.0203079 Vertex 2884 -0.0764595 0.111219 0.0459768 Vertex 2885 -0.0911932 0.147489 0.0241289 Vertex 2886 -0.0684671 0.140894 -0.00832284 Vertex 2887 -0.0415045 0.0548576 0.0396938 Vertex 2888 -0.0506923 0.0693793 -0.0143111 Vertex 2889 0.0173244 0.0580274 -0.0281164 Vertex 2890 -0.0870302 0.13217 0.00132034 Vertex 2891 -0.00529252 0.125273 -0.00885488 Vertex 2892 -0.0375032 0.0987213 0.042382 Vertex 2893 0.0242723 0.0647548 -0.0237835 Vertex 2894 -0.0272298 0.037736 0.022792 Vertex 2895 -0.0368214 0.16531 -0.000729186 Vertex 2896 -0.062358 0.172308 -0.0618736 Vertex 2897 0.0211096 0.0343656 0.00467028 Vertex 2898 -0.0626767 0.0346583 0.0408688 Vertex 2899 -0.0164665 0.068805 0.0544258 Vertex 2900 -0.0535232 0.0556038 0.0117195 Vertex 2901 -0.0706455 0.0701231 -0.00669595 Vertex 2902 -0.0699623 0.155307 -0.0499609 Vertex 2903 -0.0804177 0.153092 0.00488677 Vertex 2904 0.0100263 0.0352289 0.0272451 Vertex 2905 -0.0580888 0.115436 0.0369297 Vertex 2906 -0.0404915 0.113924 0.0347061 Vertex 2907 -0.0183468 0.0445922 0.0521871 Vertex 2908 -0.00149233 0.077429 0.0585147 Vertex 2909 0.0215063 0.107058 0.0398344 Vertex 2910 0.029273 0.103313 -0.0154093 Vertex 2911 -0.0763048 0.0702707 0.00153293 Vertex 2912 0.0164894 0.10985 0.0397676 Vertex 2913 0.0207029 0.0950845 -0.0226908 Vertex 2914 -0.0421609 0.128746 0.00435225 Vertex 2915 0.0185111 0.114004 0.0370685 Vertex 2916 -0.0357073 0.03405 0.0117511 Vertex 2917 0.00524711 0.0726037 -0.0343433 Vertex 2918 -0.0286636 0.0662687 -0.0294695 Vertex 2919 -0.00983206 0.0896484 -0.0366649 Vertex 2920 -0.0745085 0.13306 0.0516401 Vertex 2921 -0.0567366 0.0753362 -0.0185878 Vertex 2922 -0.033621 0.0519746 -0.0102559 Vertex 2923 -0.0708559 0.177779 -0.0481346 Vertex 2924 0.0317544 0.0632771 0.0405733 Vertex 2925 0.0350851 0.0848737 -0.0178837 Vertex 2926 0.013481 0.0358562 0.0436245 Vertex 2927 -0.087913 0.0900756 0.00446758 Vertex 2928 -0.0347045 0.0851136 -0.0245778 Vertex 2929 -0.0620309 0.153757 -0.0155846 Vertex 2930 -0.0251728 0.1712 -0.0194857 Vertex 2931 -0.0653369 0.0416124 0.0352199 Vertex 2932 -0.0842691 0.117693 0.0488129 Vertex 2933 -0.0729386 0.0646873 0.0146181 Vertex 2934 -0.0275703 0.070462 0.0404211 Vertex 2935 -0.0802136 0.0813857 -0.00655277 Vertex 2936 0.0183828 0.0447123 -0.0227438 Vertex 2937 -0.0628667 0.101101 -0.0182166 Vertex 2938 0.0423416 0.0718943 -0.00578991 Vertex 2939 -0.0661037 0.0713259 0.0366501 Vertex 2940 -0.0707159 0.179287 -0.0569572 Vertex 2941 0.0275411 0.044881 0.0360262 Vertex 2942 -0.0114897 0.0951792 0.0542781 Vertex 2943 -0.0598385 0.0385019 0.0199857 Vertex 2944 -0.0444606 0.147723 0.0056898 Vertex 2945 -0.0780672 0.161102 -0.0219327 Vertex 2946 -0.0197782 0.075693 -0.0390468 Vertex 2947 -0.0776167 0.145877 -0.00384676 Vertex 2948 0.00659366 0.0345497 0.005308 Vertex 2949 0.0480167 0.0525694 0.0306027 Vertex 2950 -0.0505296 0.0657745 0.0361047 Vertex 2951 -0.0553377 0.0457536 -0.00639551 Vertex 2952 -0.0894818 0.137913 0.0311948 Vertex 2953 0.0456498 0.0806034 0.02116 Vertex 2954 -0.0320867 0.0651952 -0.0194497 Vertex 2955 -0.0416725 0.0607151 -0.0124173 Vertex 2956 0.0354074 0.0446129 -0.00524037 Vertex 2957 0.0360643 0.108191 -0.003826 Vertex 2958 -0.021763 0.159801 -0.0034487 Vertex 2959 -0.00965605 0.0527028 -0.0331963 Vertex 2960 -0.0918829 0.116106 0.0333156 Vertex 2961 -0.0241862 0.125789 0.00366503 Vertex 2962 -0.0167402 0.0671791 -0.0380101 Vertex 2963 -0.0524922 0.0384865 -0.0115467 Vertex 2964 -0.0612458 0.141043 0.0360828 Vertex 2965 -0.085208 0.150101 0.00618898 Vertex 2966 -0.0704588 0.109521 0.0380634 Vertex 2967 0.0136873 0.0685864 0.0531495 Vertex 2968 0.0390662 0.103279 0.0267541 Vertex 2969 -0.0358778 0.159506 0.00240863 Vertex 2970 -0.0744184 0.069256 0.0261761 Vertex 2971 -0.0558334 0.0358523 0.0464479 Vertex 2972 -0.0766704 0.154203 -0.00290271 Vertex 2973 -0.0338728 0.0483909 -0.0193366 Vertex 2974 -0.0298552 0.0986755 -0.0232224 Vertex 2975 -0.0523357 0.136679 0.027812 Vertex 2976 0.0226853 0.115014 -0.0119595 Vertex 2977 -0.0131928 0.11434 -0.0171133 Vertex 2978 -0.0654711 0.157635 -0.0545345 Vertex 2979 -0.0895155 0.0983259 0.0124123 Vertex 2980 -0.0185161 0.125172 -0.00248935 Vertex 2981 0.0264872 0.122262 0.00520712 Vertex 2982 0.0144149 0.0343798 -0.00603429 Vertex 2983 -0.00449355 0.112805 0.041803 Vertex 2984 -0.0346676 0.0359024 -0.017193 Vertex 2985 -0.0062818 0.102371 0.0437669 Vertex 2986 0.0136708 0.0820393 0.0532361 Vertex 2987 -0.072499 0.117558 0.0529308 Vertex 2988 -0.0896904 0.116203 0.0443945 Vertex 2989 0.0156033 0.0352036 -0.0174539 Vertex 2990 0.0210892 0.0521114 0.044364 Vertex 2991 -0.0916761 0.122705 0.00729331 Vertex 2992 -0.0314993 0.116609 0.0322344 Vertex 2993 -0.0391365 0.0406682 0.0418102 Vertex 2994 -0.0222042 0.178612 -0.0212581 Vertex 2995 -0.0495014 0.0464837 0.0411417 Vertex 2996 -0.0927326 0.12419 0.0292678 Vertex 2997 -0.0113093 0.0384672 0.00547553 Vertex 2998 -0.0146369 0.0466344 -0.0294365 Vertex 2999 -0.0745678 0.155931 0.022959 Vertex 3000 -0.0792715 0.107765 0.0320009 Vertex 3001 -0.0380638 0.174118 -0.00995608 Vertex 3002 -0.0809392 0.0721012 0.0145438 Vertex 3003 0.0499211 0.0443554 0.0178724 Vertex 3004 -0.0761608 0.175035 -0.0499961 Vertex 3005 -0.0476227 0.0370311 -0.0128189 Vertex 3006 -0.0832232 0.0789707 0.00151853 Vertex 3007 -0.0348769 0.105695 -0.0204457 Vertex 3008 -0.0657759 0.0410192 0.0130518 Vertex 3009 -0.0324895 0.0874934 0.0434306 Vertex 3010 -0.0184842 0.0897075 0.0555921 Vertex 3011 -0.0765583 0.148625 -0.00886956 Vertex 3012 0.0101747 0.096292 -0.0259611 Vertex 3013 -0.0205078 0.049871 0.046386 Vertex 3014 -0.0215406 0.0711033 0.0513847 Vertex 3015 -0.0374543 0.155389 -0.00975319 Vertex 3016 -0.0185636 0.161122 -0.00592394 Vertex 3017 -0.088758 0.143311 0.0121502 Vertex 3018 0.0430064 0.0930319 -0.00281527 Vertex 3019 -0.0829532 0.112769 0.000219246 Vertex 3020 0.0113097 0.0609536 -0.0296395 Vertex 3021 0.0259096 0.0534724 0.0407837 Vertex 3022 -0.0178949 0.0971863 0.0483787 Vertex 3023 -0.0485053 0.108444 0.0391022 Vertex 3024 -0.0845703 0.11062 0.0357089 Vertex 3025 -0.0568081 0.154369 0.0248865 Vertex 3026 0.00150053 0.0591133 0.0550768 Vertex 3027 -0.0308747 0.056662 -0.0163864 Vertex 3028 -0.0215094 0.0983521 -0.0242621 Vertex 3029 -0.0607901 0.0839118 -0.0197808 Vertex 3030 0.0463117 0.0820487 0.00917902 Vertex 3031 0.0319638 0.0780558 -0.0197042 Vertex 3032 -0.0285033 0.0616825 0.0373869 Vertex 3033 -0.00773777 0.0727528 -0.0370634 Vertex 3034 0.0199833 0.0422265 0.0426566 Vertex 3035 -0.0678832 0.147765 -0.0303891 Vertex 3036 -0.0680436 0.0337635 0.00720288 Vertex 3037 0.0538026 0.0595499 0.0284925 Vertex 3038 -0.063712 0.167032 -0.0383216 Vertex 3039 -0.0902184 0.117255 0.00530427 Vertex 3040 0.0207674 0.103342 -0.0194283 Vertex 3041 0.0313815 0.0461664 -0.00629419 Vertex 3042 -0.0334786 0.100129 0.0429194 Vertex 3043 0.0393164 0.0948581 -0.00836399 Vertex 3044 0.059111 0.0580409 0.00617531 Vertex 3045 -0.0842614 0.0857549 -0.00354776 Vertex 3046 -0.0763465 0.151411 -0.00788806 Vertex 3047 0.0374508 0.109679 0.00217662 Vertex 3048 -0.00444148 0.0916785 -0.0352643 Vertex 3049 -0.0384924 0.0478181 0.0398313 Vertex 3050 -0.0544491 0.156028 0.0112408 Vertex 3051 0.00650695 0.0731027 0.0564796 Vertex 3052 -0.0846404 0.107661 0.0233457 Vertex 3053 0.0567415 0.0605855 0.00115011 Vertex 3054 -0.0421185 0.122004 0.0266511 Vertex 3055 0.0270604 0.0795391 0.0462139 Vertex 3056 -0.092883 0.116038 0.0143172 Vertex 3057 -0.0145052 0.0544906 0.0506759 Vertex 3058 0.0145889 0.124413 0.0307966 Vertex 3059 -0.0772744 0.177812 -0.051035 Vertex 3060 -0.018731 0.0627665 -0.0359648 Vertex 3061 0.0121657 0.0990535 -0.0228743 Vertex 3062 -0.0650238 0.0405393 0.0286621 Vertex 3063 -0.0861823 0.107654 0.00936346 Vertex 3064 -0.0295052 0.113904 0.0347936 Vertex 3065 -0.0251636 0.119759 -0.0107128 Vertex 3066 0.0335552 0.036072 0.00748554 Vertex 3067 -0.0520047 0.0344961 0.0416004 Vertex 3068 -0.0261604 0.114813 -0.0155316 Vertex 3069 -0.0738828 0.103582 -0.0116089 Vertex 3070 0.0565843 0.0508466 0.00719292 Vertex 3071 -0.0361895 0.0355992 0.0192692 Vertex 3072 -0.0337241 0.163848 -0.00328844 Vertex 3073 -0.0528198 0.0927332 -0.0219739 Vertex 3074 -0.0385753 0.165326 0.00202421 Vertex 3075 -0.0603715 0.133894 0.0372893 Vertex 3076 -0.0830301 0.110196 0.00131843 Vertex 3077 -0.062996 0.0444935 0.0306768 Vertex 3078 -0.0536324 0.0335534 0.00133593 Vertex 3079 -0.0510158 0.118895 -0.0136999 Vertex 3080 -0.00171216 0.066944 -0.0344014 Vertex 3081 -0.0570388 0.149629 0.0316784 Vertex 3082 0.00181256 0.0994772 -0.0233519 Vertex 3083 -0.0631603 0.151216 -0.00238889 Vertex 3084 -0.0477034 0.0649971 -0.0135628 Vertex 3085 -0.0379377 0.157973 0.00463177 Vertex 3086 -0.0118669 0.165326 -0.0197278 Vertex 3087 -0.0841107 0.0938743 -0.00455389 Vertex 3088 -0.006336 0.10011 -0.0240468 Vertex 3089 -0.0692317 0.155651 0.00154206 Vertex 3090 0.0269115 0.116892 -0.00595645 Vertex 3091 -0.00400483 0.123769 0.0343163 Vertex 3092 0.00350363 0.0883757 0.0563643 Vertex 3093 -0.0310391 0.0892178 -0.0256627 Vertex 3094 -0.0788477 0.0773102 0.0306071 Vertex 3095 -0.0830031 0.148729 0.00315098 Vertex 3096 0.0415243 0.0623608 0.0290336 Vertex 3097 -0.0633722 0.04322 0.0387983 Vertex 3098 0.0138422 0.0901622 -0.0294996 Vertex 3099 -0.0447592 0.0797381 -0.0197229 Vertex 3100 -0.0925898 0.124211 0.034269 Vertex 3101 -0.0586314 0.0580318 0.0162523 Vertex 3102 0.0302609 0.0461225 0.032895 Vertex 3103 -0.0555168 0.0610654 0.0262173 Vertex 3104 0.0105108 0.100431 0.0479236 Vertex 3105 -0.0672962 0.0785128 0.0408262 Vertex 3106 -0.00162211 0.0369274 0.0160989 Vertex 3107 -0.0324964 0.0518418 0.0373712 Vertex 3108 -0.00601913 0.126314 0.0306279 Vertex 3109 -0.00649113 0.0718493 0.0579775 Vertex 3110 -0.0913122 0.133748 0.0212171 Vertex 3111 0.0342459 0.0889575 0.0408509 Vertex 3112 -0.0114995 0.0486859 0.0490069 Vertex 3113 -0.0835371 0.151134 0.0310567 Vertex 3114 -0.0537204 0.0491564 0.0326591 Vertex 3115 -0.0549717 0.132532 0.0345672 Vertex 3116 -0.0394569 0.124785 -0.00795634 Vertex 3117 -0.0544751 0.0987674 0.042954 Vertex 3118 0.043074 0.0401669 0.0073914 Vertex 3119 0.00247314 0.0964836 0.053027 Vertex 3120 -0.0317919 0.0396266 0.0512352 Vertex 3121 -0.0336503 0.0577563 -0.0112696 Vertex 3122 0.0260285 0.0450625 -0.0106845 Vertex 3123 -0.0346988 0.120729 -0.0096591 Vertex 3124 -0.0726553 0.180933 -0.0546755 Vertex 3125 -0.0716243 0.157487 -0.00225608 Vertex 3126 -0.00467238 0.0555139 -0.0327809 Vertex 3127 -0.0301518 0.0360809 0.0236741 Vertex 3128 -0.0797379 0.0738711 0.0228323 Vertex 3129 -0.078769 0.165248 -0.0339573 Vertex 3130 -0.0718123 0.0950995 -0.0154446 Vertex 3131 0.0169437 0.0346991 -0.00395051 Vertex 3132 -0.0796395 0.11488 0.0476725 Vertex 3133 -0.0893681 0.0902559 0.0194368 Vertex 3134 -0.00186382 0.104504 -0.0225214 Vertex 3135 -0.0286491 0.125506 0.0152069 Vertex 3136 -0.0643328 0.146767 0.0386771 Vertex 3137 0.0455985 0.0918132 0.00816712 Vertex 3138 -0.0457387 0.0767861 -0.0183415 Vertex 3139 -0.0121936 0.163667 -0.0136225 Vertex 3140 -0.0222119 0.158173 -0.00418672 Vertex 3141 -0.0365003 0.087456 0.0430956 Vertex 3142 -0.04049 0.0677003 0.0417506 Vertex 3143 -0.0434938 0.0619471 0.0402773 Vertex 3144 0.000535895 0.0548656 0.0545076 Vertex 3145 -0.0272596 0.0409813 0.0537728 Vertex 3146 -0.0504978 0.159322 0.00851944 Vertex 3147 -0.00162661 0.100486 0.0474782 Vertex 3148 0.0260213 0.111246 -0.0119 Vertex 3149 0.0461205 0.0704224 0.0223322 Vertex 3150 -0.00881786 0.169637 -0.0227487 Vertex 3151 -0.0634907 0.0833477 0.0441845 Vertex 3152 -0.0292722 0.116973 -0.0137779 Vertex 3153 -0.010275 0.170544 -0.0261793 Vertex 3154 0.0267286 0.0521731 -0.0207566 Vertex 3155 0.022476 0.125337 0.020807 Vertex 3156 0.0319159 0.0876168 0.0427503 Vertex 3157 -0.0772012 0.161073 -0.0279344 Vertex 3158 -0.0236196 0.0436733 -0.0286374 Vertex 3159 -0.0137359 0.061178 0.0537969 Vertex 3160 -0.0185117 0.0387718 -0.0147573 Vertex 3161 0.0234195 0.0349614 0.0211471 Vertex 3162 -0.0229594 0.0811266 0.055321 Vertex 3163 -0.0662143 0.0386042 0.0318887 Vertex 3164 -0.00279611 0.0826469 -0.0371795 Vertex 3165 -0.051788 0.0855011 -0.0215694 Vertex 3166 -0.0464974 0.074738 0.042075 Vertex 3167 -0.0182219 0.0954777 -0.0312615 Vertex 3168 0.00965733 0.0345667 0.0223294 Vertex 3169 -0.0825513 0.110697 0.0307352 Vertex 3170 -0.0666041 0.164889 -0.0207192 Vertex 3171 0.00822226 0.0366869 -0.011267 Vertex 3172 -0.0304965 0.0917653 0.0441169 Vertex 3173 -0.0526101 0.0632972 -0.0100113 Vertex 3174 -0.0618964 0.108239 -0.0162152 Vertex 3175 -0.0703202 0.132668 0.0493213 Vertex 3176 -0.043632 0.0462886 -0.0112814 Vertex 3177 -0.00650346 0.112991 -0.0197156 Vertex 3178 -0.0350351 0.0408695 0.0473482 Vertex 3179 -0.0395514 0.159448 0.00235113 Vertex 3180 -0.0652339 0.0355811 0.0395373 Vertex 3181 -0.065855 0.0967089 -0.0173163 Vertex 3182 -0.0575 0.0589785 0.0215704 Vertex 3183 -0.0339952 0.0752026 -0.0244888 Vertex 3184 -0.0895729 0.151493 0.0191084 Vertex 3185 -0.0411413 0.0364371 -0.0278037 Vertex 3186 0.0203517 0.0672611 0.0487139 Vertex 3187 -0.0477832 0.129154 -0.000397631 Vertex 3188 -0.0420623 0.154724 -0.00848194 Vertex 3189 -0.0632766 0.146612 -0.0147592 Vertex 3190 -0.0504886 0.0946205 0.0445363 Vertex 3191 -0.0921816 0.132336 0.0152245 Vertex 3192 -0.038588 0.0341641 0.0271976 Vertex 3193 0.0133897 0.0389058 -0.0222843 Vertex 3194 -0.0317989 0.0382037 0.00155838 Vertex 3195 0.0330115 0.107346 -0.00970764 Vertex 3196 -0.0156288 0.184043 -0.0262877 Vertex 3197 -0.0660161 0.169448 -0.0590294 Vertex 3198 -0.0677151 0.171772 -0.0397619 Vertex 3199 0.000980613 0.120181 -0.0134191 Vertex 3200 0.0204519 0.0357096 0.00704168 Vertex 3201 0.0566718 0.0553009 0.0238011 Vertex 3202 0.0189844 0.127654 0.0109555 Vertex 3203 -0.0334912 0.0604137 0.038899 Vertex 3204 0.00396755 0.0341147 0.00886829 Vertex 3205 -0.087209 0.0941073 0.00444199 Vertex 3206 0.0364026 0.0547846 -0.00674979 Vertex 3207 -0.0340047 0.0386047 -0.0302796 Vertex 3208 -0.0613242 0.174126 -0.0596453 Vertex 3209 -0.0224957 0.101642 0.0440993 Vertex 3210 -0.0404538 0.105662 0.0393313 Vertex 3211 0.000505152 0.0675448 0.0563482 Vertex 3212 0.00399334 0.0399971 0.0458959 Vertex 3213 0.0224953 0.109772 0.0381484 Vertex 3214 -0.0694907 0.0930374 0.0422024 Vertex 3215 -0.0810295 0.0895599 -0.00769505 Vertex 3216 -0.0673041 0.044774 0.00468689 Vertex 3217 -0.0113988 0.126257 0.0287047 Vertex 3218 -0.0886736 0.132413 0.0428724 Vertex 3219 0.0532901 0.0621073 -0.00218568 Vertex 3220 0.0271512 0.0740976 0.0445232 Vertex 3221 -0.0716693 0.147461 -0.0281971 Vertex 3222 0.0289187 0.0580129 -0.0187889 Vertex 3223 -0.0588731 0.101172 -0.0189069 Vertex 3224 0.0413371 0.0444728 -0.00290745 Vertex 3225 -0.0845615 0.0777561 0.014943 Vertex 3226 -0.0263139 0.182659 -0.010558 Vertex 3227 0.0243141 0.0347256 0.0105738 Vertex 3228 -0.0253625 0.126177 0.010523 Vertex 3229 0.0326792 0.103442 0.0351236 Vertex 3230 0.0583564 0.0538008 0.0181861 Vertex 3231 -0.00544058 0.119032 -0.0141551 Vertex 3232 -0.0524535 0.0335708 0.023045 Vertex 3233 -0.0523224 0.146252 0.0184018 Vertex 3234 0.0465866 0.0714909 0.00427537 Vertex 3235 -0.0377389 0.0753784 -0.0182557 Vertex 3236 -0.0741619 0.0781636 -0.0115723 Vertex 3237 0.0249311 0.118938 0.0303034 Vertex 3238 -0.0521809 0.0564969 0.0230721 Vertex 3239 0.0342103 0.0795441 0.0407378 Vertex 3240 0.00322165 0.0782734 -0.0348651 Vertex 3241 0.0460243 0.0737836 0.00392327 Vertex 3242 0.0468601 0.0467385 0.0270828 Vertex 3243 -0.0292743 0.157003 -0.0105584 Vertex 3244 -0.0105333 0.0457993 0.0483516 Vertex 3245 -0.0186551 0.184576 -0.0164922 Vertex 3246 -0.060628 0.0588072 0.00794551 Vertex 3247 -0.0386685 0.0621637 -0.0127302 Vertex 3248 -0.0376403 0.0336717 0.00266115 Vertex 3249 -0.086438 0.0832915 0.00949498 Vertex 3250 -0.0474984 0.0833402 0.0443799 Vertex 3251 -0.0539828 0.0700164 0.038652 Vertex 3252 -0.0590903 0.0626036 0.0281123 Vertex 3253 -0.0109917 0.177231 -0.0295208 Vertex 3254 -0.0518373 0.0337424 -0.0112411 Vertex 3255 0.000993843 0.0989182 -0.0247915 Vertex 3256 -0.0409396 0.168342 -0.0108401 Vertex 3257 -0.0733228 0.17276 -0.036126 Vertex 3258 -0.0258097 0.0766327 0.0484243 Vertex 3259 -0.0731823 0.109139 0.039466 Vertex 3260 -0.0448486 0.0351369 -0.0234128 Vertex 3261 -0.0588626 0.0344147 0.0367317 Vertex 3262 -0.0829241 0.126549 -0.00467577 Vertex 3263 0.000515748 0.0349973 0.0453092 Vertex 3264 0.0220994 0.0476682 0.0404859 Vertex 3265 -0.0620402 0.161574 -0.0285866 Vertex 3266 -0.0534255 0.124412 -0.00739059 Vertex 3267 0.0383695 0.0533606 -0.00654853 Vertex 3268 -0.0503848 0.141583 0.00270968 Vertex 3269 0.0555717 0.0706847 0.00515518 Vertex 3270 0.0603302 0.0678632 0.0121432 Vertex 3271 -0.024687 0.0892375 0.0511394 Vertex 3272 -0.0810695 0.111472 -0.000645953 Vertex 3273 -0.00971954 0.0656257 -0.0358484 Vertex 3274 -0.0927217 0.128206 0.0112525 Vertex 3275 -0.0861865 0.0926674 0.00242789 Vertex 3276 0.00861625 0.13122 0.00857267 Vertex 3277 -0.0179474 0.100123 -0.0240926 Vertex 3278 -0.0300925 0.0509394 -0.0183595 Vertex 3279 0.0503561 0.073461 0.0121181 Vertex 3280 -0.0345226 0.0846315 0.0427551 Vertex 3281 -0.0494012 0.054529 0.0344155 Vertex 3282 0.00628325 0.0668147 -0.0324472 Vertex 3283 -0.0709552 0.134052 -0.00817596 Vertex 3284 -0.0413464 0.0470648 -0.0139804 Vertex 3285 -0.00649844 0.0814993 0.0573243 Vertex 3286 0.0157741 0.036715 -0.0196413 Vertex 3287 -0.0497297 0.0737805 -0.0165746 Vertex 3288 -0.0652623 0.158339 -0.0115587 Vertex 3289 0.0445386 0.0917351 0.000179815 Vertex 3290 0.0171004 0.120495 -0.00987579 Vertex 3291 -0.0779905 0.173544 -0.0470087 Vertex 3292 -0.0353577 0.174409 -0.00212011 Vertex 3293 -0.0524908 0.113899 0.0349209 Vertex 3294 -0.090055 0.132436 0.0352224 Vertex 3295 -0.0623153 0.13671 0.0362243 Vertex 3296 -0.0320742 0.0383234 -0.000421092 Vertex 3297 -0.0759547 0.129619 -0.00760722 Vertex 3298 -0.0897323 0.115129 0.0291209 Vertex 3299 0.0440515 0.0722274 0.0248494 Vertex 3300 -0.0117675 0.0728437 -0.0380964 Vertex 3301 0.00532494 0.0625045 -0.0319907 Vertex 3302 -0.0264937 0.0973851 0.0437224 Vertex 3303 -0.0719291 0.0394019 0.00652921 Vertex 3304 -0.0357817 0.0351096 0.0179926 Vertex 3305 -0.00849948 0.0911907 0.056727 Vertex 3306 0.0134356 0.129163 0.0217505 Vertex 3307 -0.0501691 0.0348773 0.00986405 Vertex 3308 -0.0556769 0.0499718 0.00979142 Vertex 3309 -0.0750529 0.0860661 0.0392001 Vertex 3310 -0.0114929 0.0745162 0.0566704 Vertex 3311 -0.0575878 0.158069 0.0020235 Vertex 3312 0.0172553 0.072257 -0.0294021 Vertex 3313 -0.0718669 0.115007 -0.00776782 Vertex 3314 -0.0604958 0.0890419 0.0453253 Vertex 3315 -0.0515329 0.0431219 -0.00982617 Vertex 3316 -0.0864391 0.131188 0.0477462 Vertex 3317 -0.0260317 0.0348457 -0.0200988 Vertex 3318 -0.0704544 0.150585 -0.0434585 Vertex 3319 -0.0624811 0.149792 0.0367836 Vertex 3320 -0.0206145 0.038142 0.0147556 Vertex 3321 0.0162971 0.0651874 -0.0294171 Vertex 3322 -0.00779714 0.0812765 -0.0379169 Vertex 3323 -0.0335104 0.175675 -0.00315318 Vertex 3324 -0.0802884 0.146109 0.0411929 Vertex 3325 -0.0833358 0.105954 0.0271122 Vertex 3326 -0.0650964 0.155112 0.00596226 Vertex 3327 -0.0294372 0.045874 0.0494957 Vertex 3328 -0.037714 0.0710075 -0.016855 Vertex 3329 -0.0327877 0.082138 -0.0285334 Vertex 3330 -0.00248496 0.0548872 0.0545581 Vertex 3331 -0.0640364 0.138454 -0.00746704 Vertex 3332 -0.0292731 0.0691492 -0.0304581 Vertex 3333 -0.0498819 0.105595 -0.0195612 Vertex 3334 -0.0939473 0.122782 0.0142819 Vertex 3335 0.00772266 0.115023 0.0394097 Vertex 3336 -0.0324058 0.05963 -0.0134049 Vertex 3337 -0.0375341 0.0356789 0.0117182 Vertex 3338 -0.0593508 0.0339548 0.0212701 Vertex 3339 0.0224678 0.0975265 0.046211 Vertex 3340 -0.0641258 0.0611318 0.00140431 Vertex 3341 -0.0605064 0.0394509 -0.00845033 Vertex 3342 0.0140142 0.0519753 0.0481823 Vertex 3343 -0.0188243 0.0868874 -0.0382929 Vertex 3344 -0.0631194 0.0357147 0.0189543 Vertex 3345 -0.0350845 0.124972 -0.00417237 Vertex 3346 0.0264007 0.116693 0.0313169 Vertex 3347 0.0264293 0.0400385 -0.00421056 Vertex 3348 -0.089989 0.142041 0.0291697 Vertex 3349 -0.0231479 0.0919482 0.0509374 Vertex 3350 0.0314823 0.114431 0.0284596 Vertex 3351 -0.0636875 0.0722354 -0.0149801 Vertex 3352 0.0148847 0.0378033 0.0441286 Vertex 3353 0.00655622 0.121628 -0.0130526 Vertex 3354 -0.0738026 0.1492 0.0397758 Vertex 3355 -0.0223231 0.0391341 0.0387105 Vertex 3356 -0.0384872 0.0337149 -0.0296051 Vertex 3357 0.00393342 0.0340406 0.014385 Vertex 3358 -0.0524826 0.132311 -0.00383544 Vertex 3359 0.00133514 0.0554198 -0.0315391 Vertex 3360 -0.0759388 0.151364 -0.016882 Vertex 3361 0.03144 0.0681325 -0.0188162 Vertex 3362 -0.059742 0.156334 0.00641085 Vertex 3363 0.00795856 0.126912 0.0298215 Vertex 3364 -0.0131452 0.0346678 0.0462791 Vertex 3365 0.0329293 0.104175 -0.0123189 Vertex 3366 -0.0295276 0.0383617 0.0343291 Vertex 3367 -0.0716194 0.0382939 0.000706648 Vertex 3368 0.0309191 0.0539829 -0.0147501 Vertex 3369 -0.0375058 0.171208 0.00081801 Vertex 3370 -0.0653109 0.180421 -0.0593142 Vertex 3371 -0.0822334 0.107404 -0.00162196 Vertex 3372 -0.000640169 0.0481947 -0.0300913 Vertex 3373 -0.0590026 0.0609591 0.0242669 Vertex 3374 -0.00594439 0.13066 0.0175514 Vertex 3375 -0.0267774 0.122204 0.0247423 Vertex 3376 -0.0545067 0.0904158 0.0449797 Vertex 3377 -0.0290915 0.0334798 -0.0269263 Vertex 3378 -0.0655034 0.108381 0.0382088 Vertex 3379 0.00348965 0.105764 0.0424132 Vertex 3380 -0.0254743 0.105723 0.0415881 Vertex 3381 0.0185916 0.116689 0.0359263 Vertex 3382 -0.0759599 0.0675387 0.00855626 Vertex 3383 0.0387467 0.0828368 -0.0137708 Vertex 3384 -0.0792849 0.109686 0.041215 Vertex 3385 -0.0743937 0.157452 -0.00470821 Vertex 3386 -0.082746 0.0802849 -0.000491629 Vertex 3387 0.00320889 0.0824712 -0.0345101 Vertex 3388 -0.00634516 0.0379873 -0.0153566 Vertex 3389 -0.0791947 0.116328 0.04948 Vertex 3390 -0.0309502 0.0376665 0.0292806 Vertex 3391 -0.0408028 0.033851 -0.0276993 Vertex 3392 -0.00915886 0.0385694 0.027547 Vertex 3393 0.0267764 0.0373043 0.025139 Vertex 3394 -0.0194926 0.111309 0.040066 Vertex 3395 -0.0257724 0.0797722 -0.0374309 Vertex 3396 -0.0514967 0.101534 0.0419051 Vertex 3397 -0.024781 0.0769658 -0.0376048 Vertex 3398 -0.00333145 0.0968513 -0.0305901 Vertex 3399 -0.0472614 0.125357 0.0280089 Vertex 3400 -0.0671097 0.0432428 -0.000257977 Vertex 3401 -0.0697867 0.034416 -0.00452426 Vertex 3402 -0.0114637 0.165492 -0.0149909 Vertex 3403 -0.0584632 0.0480819 0.000648378 Vertex 3404 -0.0289733 0.124361 0.000543811 Vertex 3405 0.00964519 0.0349724 -0.00752839 Vertex 3406 -0.0399677 0.0461402 -0.0203282 Vertex 3407 -0.0908772 0.119982 0.00630567 Vertex 3408 -0.0135796 0.18457 -0.0255034 Vertex 3409 0.0247589 0.0435818 0.039017 Vertex 3410 -0.00649361 0.105887 0.04408 Vertex 3411 0.0451079 0.0636949 -0.00183531 Vertex 3412 -0.0608612 0.0435863 0.0137318 Vertex 3413 0.0140143 0.0357038 0.00388789 Vertex 3414 -0.0414935 0.0776367 0.0431734 Vertex 3415 0.0222529 0.0365833 0.0139797 Vertex 3416 0.021665 0.0416371 -0.0126942 Vertex 3417 -0.0453927 0.0336614 -0.0191153 Vertex 3418 0.0012658 0.0697321 -0.0339789 Vertex 3419 0.0293799 0.0892796 -0.0205263 Vertex 3420 0.0372616 0.0915229 0.0364203 Vertex 3421 0.0175395 0.0364962 0.0420884 Vertex 3422 0.0194745 0.0851519 0.050256 Vertex 3423 -0.0724141 0.159616 -0.0379306 Vertex 3424 -0.0291964 0.162421 -0.00376774 Vertex 3425 0.0387498 0.0659721 -0.0107606 Vertex 3426 0.00341059 0.0376223 -0.0244648 Vertex 3427 -0.0702669 0.176516 -0.0559875 Vertex 3428 0.0203688 0.0459169 -0.020834 Vertex 3429 0.0363374 0.104678 0.0298648 Vertex 3430 -0.0417008 0.153622 0.00625938 Vertex 3431 0.00932784 0.0581716 -0.0301717 Vertex 3432 -0.0487592 0.0797294 -0.0200154 Vertex 3433 -0.0244966 0.0509689 0.0431921 Vertex 3434 -0.0561697 0.0684762 0.0377129 Vertex 3435 -0.0508913 0.0474088 0.0186488 Vertex 3436 -0.0722746 0.15542 -0.0369062 Vertex 3437 -0.0785777 0.0907895 -0.0106208 Vertex 3438 -0.027328 0.0951114 -0.0248637 Vertex 3439 -0.0206629 0.0479548 -0.0285983 Vertex 3440 -0.0281007 0.162292 -0.0150733 Vertex 3441 -0.0713444 0.144531 -0.0156116 Vertex 3442 -0.000492298 0.0605899 0.0560413 Vertex 3443 -0.0384869 0.0860997 0.0437907 Vertex 3444 -0.0554809 0.0440191 0.0450323 Vertex 3445 -0.0227439 0.0669905 -0.0360641 Vertex 3446 0.0106928 0.0341923 -0.0160349 Vertex 3447 -0.0524014 0.152599 0.0134601 Vertex 3448 0.0335365 0.0483507 0.0312493 Vertex 3449 -0.00788756 0.107371 -0.0226705 Vertex 3450 -0.0442655 0.127665 -0.00291939 Vertex 3451 -0.0278445 0.0535534 0.0370258 Vertex 3452 0.0314312 0.0625198 -0.0186445 Vertex 3453 0.0471599 0.07398 0.0153485 Vertex 3454 -0.0110827 0.102149 -0.0241692 Vertex 3455 0.0419445 0.0972272 0.0251571 Vertex 3456 0.028089 0.0929174 0.0442737 Vertex 3457 -0.0624218 0.113827 0.0376933 Vertex 3458 -0.0543637 0.116891 0.0353365 Vertex 3459 -0.0414996 0.117985 0.0314618 Vertex 3460 -0.0402206 0.0433137 -0.0233156 Vertex 3461 -0.0714195 0.067071 -0.00151156 Vertex 3462 -0.0862013 0.10903 0.0113533 Vertex 3463 -0.0908205 0.132399 0.0292201 Vertex 3464 0.0132369 0.0709965 -0.0314873 Vertex 3465 -0.0886682 0.141939 0.0121971 Vertex 3466 0.0393962 0.0505525 -0.00668347 Vertex 3467 -0.00126307 0.039726 0.0470556 Vertex 3468 -0.0694879 0.0368888 0.0112092 Vertex 3469 0.00314961 0.0344334 0.00286196 Vertex 3470 -0.00148646 0.0489421 0.0507365 Vertex 3471 -0.0231964 0.0651165 0.0447582 Vertex 3472 -0.00949201 0.129843 0.00617837 Vertex 3473 0.0159863 0.0860656 0.0513294 Vertex 3474 -0.0823822 0.144566 0.00117046 Vertex 3475 0.0122459 0.0780339 -0.0313519 Vertex 3476 -0.0841314 0.0776758 0.00449933 Vertex 3477 -0.0882602 0.111934 0.0373837 Vertex 3478 0.024601 0.0954054 -0.0210454 Vertex 3479 0.00296745 0.0390391 -0.00510833 Vertex 3480 0.0246727 0.0884534 -0.0236513 Vertex 3481 0.041033 0.0788113 -0.0077656 Vertex 3482 -0.0205761 0.0350586 0.0512942 Vertex 3483 -0.051798 0.0884029 -0.0218862 Vertex 3484 -0.0125985 0.0420542 -0.026434 Vertex 3485 -0.0571547 0.150227 -0.00146353 Vertex 3486 -0.0218218 0.0854612 -0.0381675 Vertex 3487 -0.0304078 0.0499703 0.0425042 Vertex 3488 -0.0179932 0.0940702 -0.0337993 Vertex 3489 -0.0343151 0.0794495 -0.0245241 Vertex 3490 0.0159009 0.113257 -0.0160529 Vertex 3491 0.00242842 0.0916453 -0.033159 Vertex 3492 -0.0689178 0.0717538 0.0356819 Vertex 3493 -0.0197912 0.0347004 -0.0276305 Vertex 3494 -0.0555068 0.0341015 0.0254741 Vertex 3495 0.0189748 0.0699869 0.0502663 Vertex 3496 0.0123741 0.0494269 -0.0274814 Vertex 3497 -0.00204808 0.0983649 0.051847 Vertex 3498 0.0043237 0.131753 0.0112849 Vertex 3499 -0.0572639 0.0601869 -0.00219809 Vertex 3500 -0.0176301 0.183064 -0.0184359 Vertex 3501 -0.046761 0.126023 -0.00719597 Vertex 3502 -0.0205025 0.0486482 0.0489372 Vertex 3503 -0.025466 0.0460651 0.0509844 Vertex 3504 -0.0484861 0.137101 0.00939484 Vertex 3505 -0.0790004 0.100402 -0.00859092 Vertex 3506 -0.0428426 0.0956907 -0.0224311 Vertex 3507 -0.0868944 0.122556 -0.00173403 Vertex 3508 -0.0316129 0.119551 -0.0104429 Vertex 3509 -0.075211 0.159631 -0.0279486 Vertex 3510 0.041497 0.0527902 0.0324777 Vertex 3511 -0.0496676 0.0649029 -0.0122308 Vertex 3512 -0.0367962 0.0383714 -0.00507539 Vertex 3513 -0.0550525 0.129598 -0.0055846 Vertex 3514 -0.0347686 0.16678 -0.00304399 Vertex 3515 -0.08839 0.0995952 0.00742201 Vertex 3516 -0.0571826 0.122684 0.0401181 Vertex 3517 -0.0622817 0.0458517 0.0346831 Vertex 3518 0.0202715 0.077733 -0.0270961 Vertex 3519 0.0388132 0.0794166 0.0350891 Vertex 3520 0.0367726 0.100261 -0.0101361 Vertex 3521 -0.0884616 0.136381 0.00620417 Vertex 3522 -0.0804668 0.131637 0.0521945 Vertex 3523 -0.0427238 0.072521 -0.0180673 Vertex 3524 -0.067993 0.0619274 0.01978 Vertex 3525 -0.0478093 0.0898718 -0.0219802 Vertex 3526 -0.0614701 0.166956 -0.0604533 Vertex 3527 -0.0276317 0.056316 -0.0254148 Vertex 3528 0.00524969 0.0395071 0.0332712 Vertex 3529 -0.00949487 0.11143 0.0422271 Vertex 3530 -0.0450098 0.146255 0.00342574 Vertex 3531 -0.050774 0.143198 0.0153986 Vertex 3532 -0.0760947 0.171183 -0.0343205 Vertex 3533 0.0353499 0.042038 0.028119 Vertex 3534 0.0152276 0.0835585 -0.0295949 Vertex 3535 -0.00834994 0.0943471 -0.0340215 Vertex 3536 -0.0244452 0.181836 -0.00961144 Vertex 3537 -0.047499 0.0451812 0.0421654 Vertex 3538 -0.0625329 0.155555 0.0257427 Vertex 3539 -0.0414945 0.041025 0.0428519 Vertex 3540 -0.0751309 0.154085 -0.0179327 Vertex 3541 -0.050462 0.0402796 0.0458238 Vertex 3542 0.00350232 0.123774 0.0338316 Vertex 3543 -0.0135829 0.03702 0.0510108 Vertex 3544 -0.0355091 0.0676694 0.0413832 Vertex 3545 -0.047648 0.0614917 0.0367154 Vertex 3546 -0.0629391 0.12384 -0.00881569 Vertex 3547 0.0291103 0.0713139 0.0420683 Vertex 3548 -0.0120884 0.101067 0.0439606 Vertex 3549 -0.0862834 0.141953 0.0402325 Vertex 3550 -0.0358361 0.11045 -0.0189078 Vertex 3551 0.00651507 0.0344231 0.0163793 Vertex 3552 0.0223468 0.121292 -0.00473526 Vertex 3553 0.022681 0.0549804 0.0449373 Vertex 3554 -0.0530219 0.147196 -0.00187885 Vertex 3555 0.00773677 0.0341095 0.00222437 Vertex 3556 -0.0356104 0.127425 0.0141251 Vertex 3557 -0.0721891 0.0696552 -0.00460695 Vertex 3558 -0.04424 0.130203 0.0124253 Vertex 3559 0.0182047 0.100313 -0.0224597 Vertex 3560 0.02441 0.101163 -0.0191142 Vertex 3561 0.0593532 0.0636103 0.0211835 Vertex 3562 -0.0637445 0.0781022 -0.0180675 Vertex 3563 -0.00359562 0.043415 -0.0257386 Vertex 3564 -0.0672347 0.158081 -0.05503 Vertex 3565 -0.0770334 0.158982 -0.013085 Vertex 3566 0.0106165 0.0644536 0.0539383 Vertex 3567 0.011955 0.0349898 0.0332703 Vertex 3568 -0.0114987 0.0856547 0.0572923 Vertex 3569 -0.0395021 0.0450562 0.0411081 Vertex 3570 -0.0169788 0.106067 -0.0223329 Vertex 3571 -0.0364996 0.0789928 0.0425809 Vertex 3572 -0.0162644 0.11453 -0.017303 Vertex 3573 -0.0250606 0.0603159 -0.031412 Vertex 3574 -0.0321931 0.123411 -0.0044713 Vertex 3575 0.0294554 0.0416168 0.02991 Vertex 3576 -0.0878523 0.0860961 0.00747941 Vertex 3577 -0.0561139 0.139571 -0.00370722 Vertex 3578 -0.0262667 0.110544 -0.0190457 Vertex 3579 -0.0747384 0.149908 -0.0288721 Vertex 3580 -0.0359224 0.034124 0.026018 Vertex 3581 -0.0315484 0.0749387 -0.030532 Vertex 3582 -0.0315243 0.0802674 0.0412906 Vertex 3583 0.0438775 0.06952 0.000229591 Vertex 3584 -0.063129 0.0366622 0.0429743 Vertex 3585 -0.0352015 0.153653 0.00157065 Vertex 3586 -0.0635438 0.0341847 -0.00786744 Vertex 3587 0.0110271 0.112101 -0.0187639 Vertex 3588 0.00450086 0.0533884 0.0535142 Vertex 3589 0.00352032 0.0772514 0.0561756 Vertex 3590 0.00942926 0.0360304 0.00452751 Vertex 3591 -0.0624979 0.0760891 0.0414437 Vertex 3592 -0.0295401 0.0904607 -0.0275932 Vertex 3593 -0.0192518 0.185941 -0.0210687 Vertex 3594 0.00720445 0.088027 -0.0329216 Vertex 3595 -0.00975454 0.0728065 -0.0376393 Vertex 3596 -0.0609822 0.170956 -0.0597011 Vertex 3597 0.0506847 0.044695 0.00922239 Vertex 3598 -0.0428553 0.101381 -0.0214106 Vertex 3599 -0.0175006 0.0829087 0.0576844 Vertex 3600 -0.0414976 0.0860064 0.0425981 Vertex 3601 -0.0274963 0.100194 0.0434874 Vertex 3602 -0.0594807 0.0398598 0.0207095 Vertex 3603 -0.00465552 0.0526099 -0.031899 Vertex 3604 -0.0659605 0.110851 0.0377691 Vertex 3605 -0.0713326 0.0345571 0.00760774 Vertex 3606 -0.00749453 0.0952341 0.0547544 Vertex 3607 0.0442623 0.0959503 0.0151546 Vertex 3608 -0.0444006 0.0337168 -0.00238543 Vertex 3609 -0.0468821 0.108426 -0.0186436 Vertex 3610 -0.0482032 0.131003 0.0267578 Vertex 3611 -0.050104 0.0515366 0.0156131 Vertex 3612 -0.0345086 0.0775176 0.0416541 Vertex 3613 -0.0334278 0.124984 0.0208436 Vertex 3614 -0.0087012 0.0613261 -0.0351009 Vertex 3615 -0.0757755 0.0948358 -0.0134771 Vertex 3616 -0.0188178 0.158773 -0.00942574 Vertex 3617 0.0218587 0.0714183 0.0491823 Vertex 3618 -0.0771842 0.102138 0.0352151 Vertex 3619 0.0357614 0.089262 -0.0164786 Vertex 3620 0.00673484 0.0364109 -0.0131882 Vertex 3621 0.0193574 0.0537071 -0.027254 Vertex 3622 -0.0331932 0.0348891 0.047012 Vertex 3623 -0.091455 0.148836 0.0171378 Vertex 3624 0.0125066 0.10443 0.0450477 Vertex 3625 -0.00269376 0.0613003 -0.0344696 Vertex 3626 0.0574071 0.0691343 0.00477569 Vertex 3627 0.014908 0.106309 -0.0185911 Vertex 3628 -0.0931203 0.121503 0.0403997 Vertex 3629 -0.00350029 0.0856691 0.0572933 Vertex 3630 0.0188202 0.124811 0.0265908 Vertex 3631 -0.0505534 0.0543594 0.017626 Vertex 3632 -0.016863 0.0640072 0.0526042 Vertex 3633 0.0164763 0.0348375 -0.0136598 Vertex 3634 0.00614005 0.103026 -0.0213684 Vertex 3635 -0.0858054 0.102155 0.00239755 Vertex 3636 0.0346496 0.0972102 -0.0129196 Vertex 3637 0.0315208 0.0994913 0.038731 Vertex 3638 -0.0684451 0.117201 0.0519481 Vertex 3639 -0.0321194 0.165225 -0.0156285 Vertex 3640 -0.0425023 0.0986936 0.0421906 Vertex 3641 -0.0121987 0.171236 -0.0257581 Vertex 3642 -0.0628956 0.119461 -0.00917238 Vertex 3643 -0.0134047 0.0981882 0.0494032 Vertex 3644 0.0558431 0.0722822 0.0186151 Vertex 3645 -0.0716986 0.077793 -0.0140498 Vertex 3646 -0.0898842 0.145774 0.0282412 Vertex 3647 -0.0552085 0.151192 0.0284379 Vertex 3648 -0.0114161 0.0382303 0.016554 Vertex 3649 -0.0495137 0.0503617 0.0366255 Vertex 3650 -0.066663 0.144317 -0.015468 Vertex 3651 0.0170761 0.115474 -0.0144429 Vertex 3652 -0.0298766 0.05514 -0.0203901 Vertex 3653 -0.0657818 0.152842 -0.0413063 Vertex 3654 -0.089294 0.136502 0.0252035 Vertex 3655 -0.0137772 0.0770735 -0.0384143 Vertex 3656 -0.0291577 0.0380555 0.005854 Vertex 3657 -0.0675442 0.151908 -0.0456642 Vertex 3658 0.0258633 0.0505634 0.0389033 Vertex 3659 -0.0406764 0.0344836 0.0353061 Vertex 3660 -0.0839499 0.0979633 -0.0036111 Vertex 3661 -0.0284012 0.038721 -0.0148192 Vertex 3662 -0.00956353 0.172645 -0.0227849 Vertex 3663 -0.0166197 0.126668 0.0238945 Vertex 3664 0.0523683 0.0540101 0.0281247 Vertex 3665 -0.0727381 0.151148 -0.0398146 Vertex 3666 -0.0378682 0.104226 -0.0203027 Vertex 3667 -0.038496 0.0450464 0.0406484 Vertex 3668 -0.0384859 0.0520062 0.0392089 Vertex 3669 0.0436968 0.0818627 -0.00278544 Vertex 3670 -0.0487026 0.0708482 -0.0151225 Vertex 3671 -0.0521172 0.0545658 0.0256302 Vertex 3672 -0.0346349 0.176996 -0.009991 Vertex 3673 -0.0568589 0.0562507 0.00563881 Vertex 3674 -0.0428742 0.10707 -0.020141 Vertex 3675 0.0381644 0.0887078 -0.0138852 Vertex 3676 0.0360371 0.0547702 0.0325687 Vertex 3677 -0.0744487 0.141666 -0.00675172 Vertex 3678 -0.051497 0.0890197 0.045238 Vertex 3679 0.00104126 0.108173 -0.0205653 Vertex 3680 -0.0365789 0.0337187 0.00826156 Vertex 3681 -0.0833865 0.140392 0.00124854 Vertex 3682 -0.0783796 0.172116 -0.0450441 Vertex 3683 0.0134074 0.0463149 -0.0249889 Vertex 3684 0.0150763 0.0900809 0.0517899 Vertex 3685 0.0495286 0.0610841 0.0304744 Vertex 3686 -0.0903603 0.143336 0.0142018 Vertex 3687 -0.0617514 0.175333 -0.0614739 Vertex 3688 0.00286437 0.130486 0.00148286 Vertex 3689 -0.0358502 0.0986071 -0.0225695 Vertex 3690 0.0432452 0.100105 0.0111579 Vertex 3691 -0.0887169 0.125354 0.00227396 Vertex 3692 0.0193977 0.0490363 -0.0230642 Vertex 3693 -0.00161218 0.0387745 0.0252993 Vertex 3694 0.0360211 0.0628935 -0.0127986 Vertex 3695 -0.0556759 0.0661408 -0.010195 Vertex 3696 0.0458177 0.0820138 0.0181729 Vertex 3697 0.0553821 0.0590684 -0.00081652 Vertex 3698 -0.0861039 0.0846923 0.0224682 Vertex 3699 -0.07448 0.0662148 0.0164657 Vertex 3700 0.0133075 0.062355 -0.0296823 Vertex 3701 0.0222613 0.0692548 -0.0269722 Vertex 3702 0.0355013 0.0605581 0.0371681 Vertex 3703 -0.0597431 0.093988 -0.019461 Vertex 3704 -0.019761 0.0984382 0.0445534 Vertex 3705 -0.0217734 0.0713925 -0.0382795 Vertex 3706 0.0350895 0.0686836 0.0383949 Vertex 3707 0.00551873 0.0842341 0.0568816 Vertex 3708 -0.0568793 0.105485 -0.0183902 Vertex 3709 -0.00849416 0.0661021 0.0557034 Vertex 3710 -0.0784667 0.141403 0.0468168 Vertex 3711 -0.015856 0.0980295 -0.0258983 Vertex 3712 -0.035816 0.0448118 0.0437923 Vertex 3713 0.0478387 0.0734572 0.0126134 Vertex 3714 -0.0861037 0.109061 0.0193453 Vertex 3715 0.0345395 0.0727588 0.0393885 Vertex 3716 0.0191348 0.102061 0.0453843 Vertex 3717 -0.0643033 0.0426016 0.0312522 Vertex 3718 -0.0538286 0.0338166 -0.0117099 Vertex 3719 -0.0464924 0.159333 0.00779524 Vertex 3720 -0.0480228 0.144604 0.00545108 Vertex 3721 -0.0529425 0.0516633 -0.00638853 Vertex 3722 -0.0749519 0.164602 -0.018207 Vertex 3723 -0.0683644 0.0381281 -0.00463362 Vertex 3724 -0.00845767 0.100229 0.0476033 Vertex 3725 -0.0688616 0.033602 -0.00179476 Vertex 3726 -0.0833424 0.104748 -0.00163012 Vertex 3727 -0.0639761 0.129691 -0.00851425 Vertex 3728 0.0181014 0.0354956 -0.0136744 Vertex 3729 0.0147782 0.0929392 -0.0263979 Vertex 3730 -0.0647046 0.0352193 0.0243246 Vertex 3731 -0.0294344 0.0381755 0.00387704 Vertex 3732 -0.0620129 0.0587144 0.0113478 Vertex 3733 -0.0520638 0.0723523 0.0405753 Vertex 3734 -0.042488 0.1112 0.0368617 Vertex 3735 -0.0885678 0.139164 0.0111992 Vertex 3736 0.0278568 0.0643129 -0.0209613 Vertex 3737 0.0313718 0.118521 0.0155758 Vertex 3738 -0.0593549 0.0410534 0.0179552 Vertex 3739 -0.0647018 0.172123 -0.0473675 Vertex 3740 0.0184724 0.0934238 0.0476306 Vertex 3741 -0.0932956 0.12823 0.014251 Vertex 3742 -0.0433492 0.123979 0.0232099 Vertex 3743 0.0343592 0.0519767 -0.00689954 Vertex 3744 -0.0301636 0.153871 -0.00371356 Vertex 3745 -0.073516 0.18065 -0.0535934 Vertex 3746 -0.0530296 0.137293 -0.00118635 Vertex 3747 0.0195769 0.0347391 0.0223805 Vertex 3748 -0.0242347 0.0401682 0.0541848 Vertex 3749 -0.091423 0.144753 0.0241539 Vertex 3750 -0.0471845 0.0383965 -0.0142868 Vertex 3751 -0.087746 0.09368 0.0248353 Vertex 3752 -0.0530084 0.149326 0.0224058 Vertex 3753 -0.0338224 0.0338142 0.00692539 Vertex 3754 0.0305676 0.0350004 0.0115893 Vertex 3755 -0.0333397 0.0410057 0.0499212 Vertex 3756 0.0583601 0.0593964 0.0227402 Vertex 3757 -0.0593595 0.0336431 -0.00899455 Vertex 3758 0.040988 0.0392554 0.0153655 Vertex 3759 -0.0705055 0.0343308 -0.00278598 Vertex 3760 -0.0034922 0.0473569 0.0490622 Vertex 3761 -0.0638531 0.04136 -0.00615806 Vertex 3762 -0.0649278 0.105334 -0.0156241 Vertex 3763 -0.0817249 0.153192 0.027965 Vertex 3764 -0.0266349 0.121939 -0.00696588 Vertex 3765 0.0266901 0.106496 -0.0148024 Vertex 3766 -0.061495 0.100138 0.0425963 Vertex 3767 -0.0425494 0.0346163 0.040046 Vertex 3768 -0.0743362 0.15411 -0.0219057 Vertex 3769 -0.0798447 0.116298 -0.00419638 Vertex 3770 0.023446 0.0385037 -0.00396461 Vertex 3771 -0.00341693 0.115827 -0.0167447 Vertex 3772 -0.0338231 0.0915286 -0.0241849 Vertex 3773 -0.0575 0.0588269 0.0212602 Vertex 3774 -0.0599651 0.0469723 0.0336736 Vertex 3775 0.0444747 0.0438727 0.000520461 Vertex 3776 -0.00552934 0.126815 -0.00649473 Vertex 3777 -0.0154881 0.0758696 0.0561745 Vertex 3778 -0.0437474 0.0783133 -0.0194351 Vertex 3779 -0.0642686 0.171043 -0.0609844 Vertex 3780 -0.0116746 0.164119 -0.0176003 Vertex 3781 -0.0649024 0.119454 -0.00881631 Vertex 3782 0.0294698 0.0801098 -0.0210213 Vertex 3783 -0.00548333 0.122374 0.0356916 Vertex 3784 0.0417109 0.0957641 -0.00380547 Vertex 3785 -0.0280888 0.121741 0.0242898 Vertex 3786 0.0101881 0.0341976 -0.00109267 Vertex 3787 0.0280724 0.0678498 -0.0217391 Vertex 3788 -0.0180785 0.0337977 -0.021304 Vertex 3789 -0.0596514 0.142474 0.0348633 Vertex 3790 0.0189212 0.0875932 -0.0268145 Vertex 3791 -0.0769165 0.147253 -0.00586064 Vertex 3792 -0.0345099 0.109779 0.0372255 Vertex 3793 -0.0659978 0.135528 -0.00820667 Vertex 3794 0.0268259 0.0605622 0.0439609 Vertex 3795 -0.0945397 0.121475 0.0202819 Vertex 3796 -0.0708338 0.143978 -0.0149516 Vertex 3797 -0.0847135 0.152577 0.00925173 Vertex 3798 -0.042501 0.0803745 0.0423542 Vertex 3799 -0.0199623 0.0624791 0.0486773 Vertex 3800 -0.0175036 0.0357848 -0.0270478 Vertex 3801 0.0442902 0.0875035 0.0241471 Vertex 3802 -0.0194949 0.122198 0.0303074 Vertex 3803 -0.0554437 0.158541 0.0079523 Vertex 3804 0.0215711 0.035903 0.0289947 Vertex 3805 0.0202169 0.0591906 0.0484605 Vertex 3806 -0.0650996 0.115729 0.046366 Vertex 3807 -0.0135013 0.0687469 0.0541774 Vertex 3808 0.00450074 0.0938217 0.0540732 Vertex 3809 -0.0439563 0.147482 -0.0018962 Vertex 3810 -0.082872 0.154403 0.0201091 Vertex 3811 0.00950265 0.0517655 0.0513753 Vertex 3812 0.0413547 0.102812 0.0011821 Vertex 3813 -0.0293882 0.0593157 -0.02241 Vertex 3814 -0.0289938 0.16114 -0.00164375 Vertex 3815 -0.0855476 0.136296 0.00125685 Vertex 3816 -0.0370133 0.1227 0.0269929 Vertex 3817 -0.0479423 0.118344 0.0305757 Vertex 3818 0.00637279 0.049483 -0.0283693 Vertex 3819 -0.0330517 0.0624982 -0.0144201 Vertex 3820 -0.0553478 0.054711 -0.00338754 Vertex 3821 -0.022007 0.0754165 0.0531212 Vertex 3822 0.043354 0.053395 -0.00666154 Vertex 3823 -0.0222445 0.159024 -0.0114139 Vertex 3824 -0.0617686 0.159987 -0.035592 Vertex 3825 -0.0153943 0.099814 0.0443638 Vertex 3826 -0.0534999 0.0820142 0.0450601 Vertex 3827 -0.00382316 0.0854518 -0.0372434 Vertex 3828 -0.0106905 0.18126 -0.0286694 Vertex 3829 -0.0372457 0.0381548 -0.00680953 Vertex 3830 -0.051366 0.129708 0.032749 Vertex 3831 -0.0886141 0.0928486 0.00844707 Vertex 3832 -0.0832785 0.12444 0.0504652 Vertex 3833 -0.0385893 0.036902 -0.00962928 Vertex 3834 -0.0903951 0.118903 0.0450094 Vertex 3835 -0.0344955 0.0889014 0.0434521 Vertex 3836 0.0271939 0.0479684 -0.0167032 Vertex 3837 -0.0799858 0.150056 0.000166757 Vertex 3838 -0.0786706 0.0853441 -0.0105854 Vertex 3839 -0.0284962 0.0946634 0.0451029 Vertex 3840 0.0141872 0.0347155 0.0357788 Vertex 3841 0.0121741 0.0780107 0.0545179 Vertex 3842 -0.0224569 0.0524128 0.0435307 Vertex 3843 0.0306859 0.0377485 0.0237503 Vertex 3844 -0.076573 0.153595 0.0311713 Vertex 3845 0.00132582 0.0568889 -0.0321653 Vertex 3846 -0.055978 0.0534457 0.00767233 Vertex 3847 -0.0639717 0.0459278 0.00771742 Vertex 3848 -0.0090863 0.16966 -0.0247514 Vertex 3849 -0.0267697 0.0750695 0.0452054 Vertex 3850 0.000516491 0.101662 0.0444028 Vertex 3851 0.00710731 0.126603 -0.00643182 Vertex 3852 -0.0575339 0.0493779 -0.000368537 Vertex 3853 -0.0609581 0.142927 -0.00458074 Vertex 3854 -0.0305143 0.0348089 0.0211376 Vertex 3855 0.0272256 0.10745 0.0377741 Vertex 3856 -0.000472995 0.0746288 0.0583091 Vertex 3857 0.000514279 0.0383337 0.0225142 Vertex 3858 -0.0383911 0.127983 0.00280515 Vertex 3859 -0.0347226 0.0711465 -0.0183854 Vertex 3860 -0.0660878 0.161167 -0.014759 Vertex 3861 -0.0558806 0.154815 0.016521 Vertex 3862 -0.0366476 0.0577363 -0.0111372 Vertex 3863 -0.0692254 0.124258 0.0526584 Vertex 3864 -0.0336564 0.0343441 0.0369141 Vertex 3865 -0.0909094 0.114612 0.0400043 Vertex 3866 0.00958152 0.0417197 0.0451866 Vertex 3867 0.0464379 0.0778615 0.0131806 Vertex 3868 -0.0475797 0.035695 0.0449374 Vertex 3869 -0.059497 0.0861573 0.0445009 Vertex 3870 -0.0605375 0.155317 0.003221 Vertex 3871 0.0223236 0.0550419 -0.0260567 Vertex 3872 -0.0172469 0.116672 -0.0155678 Vertex 3873 0.0111209 0.0908234 -0.0303895 Vertex 3874 -0.0745556 0.104899 0.0367465 Vertex 3875 -0.0224893 0.0462052 0.0523041 Vertex 3876 -0.0308908 0.0524482 -0.0143777 Vertex 3877 -0.0633155 0.125546 0.0454063 Vertex 3878 0.0262873 0.0942382 0.0451936 Vertex 3879 -0.0894613 0.148789 0.0111841 Vertex 3880 -0.056363 0.13673 0.0325483 Vertex 3881 0.0401031 0.0589615 -0.00453029 Vertex 3882 0.00962081 0.119433 -0.0146957 Vertex 3883 0.0123855 0.0603174 0.0511841 Vertex 3884 -0.0624131 0.11535 0.0394932 Vertex 3885 0.0164932 0.112605 0.0382483 Vertex 3886 -0.065916 0.0662086 0.0305519 Vertex 3887 -0.0356689 0.117866 -0.0126779 Vertex 3888 -0.0285082 0.0874866 -0.0336017 Vertex 3889 -0.0305089 0.0760274 0.0408429 Vertex 3890 0.011503 0.108488 0.0403225 Vertex 3891 -0.0434333 0.15941 0.00551467 Vertex 3892 -0.043544 0.157959 0.00535766 Vertex 3893 -0.0376189 0.0505906 -0.0108802 Vertex 3894 0.0389262 0.103315 -0.00332456 Vertex 3895 0.00109253 0.113026 -0.0199046 Vertex 3896 -0.0137593 0.0388335 -0.0101314 Vertex 3897 -0.0193156 0.162502 -0.00702982 Vertex 3898 -0.0490964 0.156122 -0.00621407 Vertex 3899 -0.0707579 0.0639499 0.00302292 Vertex 3900 0.033576 0.0781814 -0.0177928 Vertex 3901 0.029421 0.0461183 -0.00671048 Vertex 3902 -0.0454276 0.0345386 0.0307405 Vertex 3903 0.00024817 0.0726618 -0.0353693 Vertex 3904 -0.0633235 0.0388939 0.025715 Vertex 3905 -0.0119077 0.0894805 -0.0370977 Vertex 3906 -0.068322 0.144999 -0.0199128 Vertex 3907 -0.0810351 0.0787684 -0.0035164 Vertex 3908 0.0213076 0.110412 -0.0149847 Vertex 3909 0.0208395 0.034464 0.00266226 Vertex 3910 -0.0205044 0.11679 0.0360351 Vertex 3911 -0.0346391 0.0469045 -0.0241611 Vertex 3912 -0.037803 0.0885803 -0.0235006 Vertex 3913 -0.012533 0.0458468 0.048979 Vertex 3914 0.0549036 0.0506667 0.00319831 Vertex 3915 0.0515169 0.0664883 0.0274059 Vertex 3916 -0.0318614 0.109962 -0.0183828 Vertex 3917 -0.0292113 0.156649 -0.000270816 Vertex 3918 -0.0534544 0.124093 0.0367404 Vertex 3919 -0.0405119 0.125571 0.0212459 Vertex 3920 0.00613123 0.105885 -0.0208912 Vertex 3921 -0.035755 0.0783248 -0.0195335 Vertex 3922 -0.0627834 0.035148 0.0195098 Vertex 3923 -0.0309197 0.0805646 -0.0325792 Vertex 3924 -0.0737025 0.144377 -0.00986626 Vertex 3925 0.0587274 0.0538199 0.013179 Vertex 3926 -0.0879643 0.115809 0.00328051 Vertex 3927 -0.0275135 0.111195 0.0372083 Vertex 3928 -0.0446505 0.0592548 -0.0123035 Vertex 3929 -0.0384965 0.0620329 0.0413169 Vertex 3930 -0.00849476 0.0745791 0.0575173 Vertex 3931 -0.042649 0.0378778 -0.0263104 Vertex 3932 -0.0498262 0.0941747 -0.0218116 Vertex 3933 0.009256 0.0681484 -0.0312392 Vertex 3934 -0.0332116 0.0851655 -0.0254848 Vertex 3935 0.0405023 0.0484755 0.0322215 Vertex 3936 -0.0783661 0.108548 -0.00557568 Vertex 3937 -0.0160251 0.0375717 -0.0270066 Vertex 3938 -0.0864815 0.0846104 0.00248575 Vertex 3939 0.0187298 0.0489829 0.0426596 Vertex 3940 -0.0474986 0.102884 0.0412273 Vertex 3941 0.010498 0.0909888 0.0536897 Vertex 3942 -0.0505067 0.0805184 0.044061 Vertex 3943 -0.0255422 0.0377889 0.0158759 Vertex 3944 -0.0815406 0.110006 0.0333062 Vertex 3945 0.0170529 0.075444 0.0528157 Vertex 3946 0.0034577 0.0989815 0.0493164 Vertex 3947 -0.0604913 0.0818799 0.0434166 Vertex 3948 -0.0427865 0.0855262 -0.0214717 Vertex 3949 0.0408171 0.04213 0.0255289 Vertex 3950 -0.0764978 0.13864 0.0490601 Vertex 3951 -0.0344792 0.0382691 -0.00267158 Vertex 3952 -0.00386335 0.103093 -0.0232514 Vertex 3953 -0.0714603 0.0390724 0.00325296 Vertex 3954 -0.0679008 0.1038 -0.0147014 Vertex 3955 -0.0779467 0.170107 -0.0351609 Vertex 3956 -0.0554697 0.0345193 -0.0117205 Vertex 3957 -0.00439966 0.119978 -0.0131705 Vertex 3958 -0.0829013 0.122118 -0.00412754 Vertex 3959 -0.050636 0.0604891 -0.0105672 Vertex 3960 0.0413134 0.0732089 -0.00778125 Vertex 3961 -0.0940576 0.125561 0.0242759 Vertex 3962 0.038172 0.0967289 0.0325586 Vertex 3963 0.0390555 0.064539 0.0335561 Vertex 3964 -0.00277478 0.078376 -0.0365291 Vertex 3965 -0.00573884 0.0712887 -0.036141 Vertex 3966 -0.0499421 0.135837 0.0234945 Vertex 3967 -0.0448982 0.123992 0.0241166 Vertex 3968 -0.0769362 0.0914256 0.0381174 Vertex 3969 -0.0622614 0.0594461 0.0178467 Vertex 3970 -0.00868026 0.111843 -0.0204858 Vertex 3971 -0.0857179 0.124363 0.0486993 Vertex 3972 0.0045204 0.0661365 0.0560558 Vertex 3973 -0.078386 0.154762 0.00850622 Vertex 3974 0.0252695 0.0532659 -0.021679 Vertex 3975 -0.0594971 0.101543 0.0424741 Vertex 3976 0.0402856 0.10561 0.017163 Vertex 3977 -0.0300853 0.179019 -0.00589649 Vertex 3978 -0.065316 0.0625169 -0.002419 Vertex 3979 -0.0124833 0.108618 0.0427908 Vertex 3980 -0.0116556 0.127143 -0.00273206 Vertex 3981 -0.030416 0.0692532 -0.0284548 Vertex 3982 -0.0497318 0.0354763 -0.0126201 Vertex 3983 -0.053795 0.115431 0.0343764 Vertex 3984 -0.0105014 0.0546468 0.0522278 Vertex 3985 -0.0355126 0.10012 0.0421792 Vertex 3986 -0.0921826 0.114725 0.0193089 Vertex 3987 -0.073344 0.0672327 0.000494062 Vertex 3988 -0.0280768 0.169745 -0.00916431 Vertex 3989 -0.0857862 0.0939971 -0.000563608 Vertex 3990 -0.00332845 0.128773 0.0271941 Vertex 3991 -0.061937 0.111099 -0.0150221 Vertex 3992 -0.076603 0.120411 0.0526033 Vertex 3993 0.00552678 0.0619607 0.0559576 Vertex 3994 -0.0340875 0.177472 -0.00744261 Vertex 3995 -0.0859938 0.0978404 0.0272064 Vertex 3996 -0.0631406 0.152896 -0.00931447 Vertex 3997 -0.0498767 0.0529199 0.0166388 Vertex 3998 -0.000499367 0.0456802 0.0470389 Vertex 3999 -0.0572808 0.0345537 0.0438127 Vertex 4000 -0.0611505 0.153585 0.0321143 Vertex 4001 -0.0777833 0.0694772 0.0182331 Vertex 4002 -0.0615714 0.111062 0.0370307 Vertex 4003 -0.0863511 0.0872693 0.000483168 Vertex 4004 -0.0504985 0.0776737 0.0437561 Vertex 4005 -0.093011 0.118839 0.0352993 Vertex 4006 -0.0553875 0.143884 0.0305002 Vertex 4007 0.0304284 0.0383851 -0.001443 Vertex 4008 -0.0367435 0.0437017 -0.0271198 Vertex 4009 -0.016529 0.0558872 0.0508401 Vertex 4010 -0.0874477 0.148578 0.0299355 Vertex 4011 -0.0494962 0.100168 0.0429965 Vertex 4012 -0.0324333 0.126109 0.00355422 Vertex 4013 0.00904636 0.090083 -0.0314826 Vertex 4014 -0.00449819 0.0604864 0.0551163 Vertex 4015 -0.0568311 0.0912579 -0.0217399 Vertex 4016 -0.0517386 0.139928 0.000994109 Vertex 4017 0.0431795 0.0737197 0.0272167 Vertex 4018 -0.0408691 0.158042 0.00401656 Vertex 4019 -0.0790281 0.166651 -0.0329632 Vertex 4020 -0.0523102 0.116406 -0.0150785 Vertex 4021 0.00318984 0.0852564 -0.0341139 Vertex 4022 -0.0614467 0.0335533 -0.00933279 Vertex 4023 -0.0870838 0.0846865 0.0114769 Vertex 4024 -0.0543959 0.12661 -0.00573734 Vertex 4025 -0.0136509 0.0496769 -0.0312069 Vertex 4026 -0.0769695 0.154154 -0.0139015 Vertex 4027 -0.0537237 0.0477139 0.0256667 Vertex 4028 -0.0463694 0.113628 -0.0162147 Vertex 4029 0.0146321 0.0460649 0.043757 Vertex 4030 -0.0909161 0.13091 0.00724248 Vertex 4031 -0.0491155 0.0337431 -0.0125383 Vertex 4032 -0.0036313 0.046681 -0.0294588 Vertex 4033 -0.0417782 0.0473939 -0.012205 Vertex 4034 0.0205957 0.0394417 0.0417168 Vertex 4035 -0.0658419 0.0995396 -0.0165139 Vertex 4036 -0.0676348 0.0704852 -0.0103532 Vertex 4037 -0.0703591 0.0620888 0.0120183 Vertex 4038 0.000940682 0.0357179 -0.0155776 Vertex 4039 -0.0283572 0.0578046 -0.0244014 Vertex 4040 0.0211162 0.126093 0.00605375 Vertex 4041 -0.0621205 0.0458041 0.0366793 Vertex 4042 -0.0540772 0.146211 0.0253916 Vertex 4043 -0.0896944 0.133694 0.0395953 Vertex 4044 0.0093588 0.0524416 -0.0295377 Vertex 4045 -0.0923144 0.132364 0.0182222 Vertex 4046 -0.0835033 0.0804619 0.0265017 Vertex 4047 0.0045298 0.102977 0.0440255 Vertex 4048 -0.0276072 0.0488225 -0.0246209 Vertex 4049 -0.0198832 0.0335337 -0.0251748 Vertex 4050 -0.080224 0.0913049 0.0343483 Vertex 4051 0.00351386 0.100332 0.0462561 Vertex 4052 0.0231651 0.0624431 -0.0251426 Vertex 4053 -0.0455391 0.0396225 -0.0172907 Vertex 4054 -0.0696635 0.159559 -0.0499324 Vertex 4055 -0.0850735 0.0819457 0.0214598 Vertex 4056 0.00464616 0.034105 0.00716872 Vertex 4057 -0.0276455 0.0376114 0.0210157 Vertex 4058 -0.0302058 0.0649962 -0.0264588 Vertex 4059 0.0084996 0.0488213 0.0500608 Vertex 4060 -0.0714963 0.118989 0.0533881 Vertex 4061 -0.00921165 0.172686 -0.0275682 Vertex 4062 -0.0658978 0.147832 -0.0279808 Vertex 4063 -0.0419839 0.128576 0.0133734 Vertex 4064 0.0409408 0.0873455 0.0311847 Vertex 4065 -0.0355275 0.04785 0.0396404 Vertex 4066 0.0222999 0.0360441 0.0108303 Vertex 4067 0.018318 0.0607989 -0.0274966 Vertex 4068 -0.0833629 0.0829469 -0.00357326 Vertex 4069 -0.0908309 0.136473 0.0182032 Vertex 4070 -0.0187173 0.108826 -0.0212527 Vertex 4071 -0.0334968 0.033775 0.00883944 Vertex 4072 -0.0800761 0.0936246 -0.00957758 Vertex 4073 -0.0761724 0.154401 0.00198863 Vertex 4074 0.0326237 0.0768475 0.0419257 Vertex 4075 -0.0701875 0.0395708 0.00901355 Vertex 4076 -0.0224756 0.0348012 0.0476768 Vertex 4077 0.0148515 0.129255 0.0180171 Vertex 4078 -0.0435029 0.119128 -0.0140097 Vertex 4079 -0.053326 0.162717 0.00204741 Vertex 4080 0.0166529 0.120978 0.0330533 Vertex 4081 -0.0606335 0.122654 0.0421622 Vertex 4082 -0.000596636 0.0433605 -0.0249736 Vertex 4083 0.0517118 0.048146 0.0235716 Vertex 4084 -0.0874426 0.110454 0.0173412 Vertex 4085 0.0281029 0.0968693 0.0425418 Vertex 4086 -0.0786738 0.10815 0.0335843 Vertex 4087 -0.0521847 0.140082 0.0224024 Vertex 4088 -0.0802571 0.096729 0.0342047 Vertex 4089 -0.0743754 0.0995209 0.0381506 Vertex 4090 -0.0646755 0.142507 0.0398915 Vertex 4091 -0.0135852 0.123715 -0.00700086 Vertex 4092 -0.0015019 0.110031 0.0427805 Vertex 4093 -0.0366797 0.0636525 -0.0138021 Vertex 4094 -0.0534691 0.0491595 0.0373719 Vertex 4095 -0.0557185 0.0570014 0.011057 Vertex 4096 -0.0118767 0.105907 -0.0227385 Vertex 4097 -0.028277 0.0807444 0.0465032 Vertex 4098 -0.0755506 0.0791122 0.0357048 Vertex 4099 -0.0685344 0.180035 -0.058648 Vertex 4100 0.00747563 0.0378784 -0.00876072 Vertex 4101 -0.0404793 0.0832528 0.0431634 Vertex 4102 -0.0205797 0.0906821 0.0540574 Vertex 4103 -0.0544948 0.107078 0.0398767 Vertex 4104 -0.0623508 0.146001 -0.00658982 Vertex 4105 -0.0777024 0.176292 -0.0501047 Vertex 4106 -0.0334735 0.0337737 0.0142583 Vertex 4107 -0.0627925 0.0838575 -0.0191674 Vertex 4108 0.0482587 0.0460086 0.000382582 Vertex 4109 -0.0908832 0.150197 0.0161314 Vertex 4110 -0.0458316 0.03478 0.00723173 Vertex 4111 -0.0522074 0.122732 -0.00965468 Vertex 4112 -0.0810176 0.109646 0.0372868 Vertex 4113 0.0281109 0.0477624 0.0368744 Vertex 4114 -0.0476672 0.0405803 -0.0117113 Vertex 4115 0.014283 0.0681091 -0.0306905 Vertex 4116 0.025242 0.0761745 -0.0249679 Vertex 4117 -0.0477812 0.0840973 -0.0215817 Vertex 4118 0.00221584 0.0364728 0.000816389 Vertex 4119 0.00650273 0.121045 0.0359095 Vertex 4120 -0.0857527 0.0792184 0.0135098 Vertex 4121 0.0502632 0.0713497 0.022405 Vertex 4122 0.0209941 0.0373175 -0.00464913 Vertex 4123 0.026308 0.0822369 0.0469135 Vertex 4124 -0.0682581 0.156305 0.0164417 Vertex 4125 -0.0856199 0.144636 0.00717286 Vertex 4126 -0.0632614 0.0601538 0.00426714 Vertex 4127 0.0444938 0.0959562 0.00517859 Vertex 4128 -0.0697681 0.0822532 -0.0170635 Vertex 4129 -0.089639 0.0983559 0.0164014 Vertex 4130 -0.00978935 0.0841125 -0.0382567 Vertex 4131 -0.0189776 0.0390241 0.0529956 Vertex 4132 0.04586 0.0820013 0.00419826 Vertex 4133 -0.00748374 0.116886 0.0393445 Vertex 4134 0.00926262 0.129557 0.000393265 Vertex 4135 0.000436968 0.130385 0.0227651 Vertex 4136 -0.0633749 0.1608 -0.057006 Vertex 4137 0.0234983 0.102092 0.0429315 Vertex 4138 0.0328256 0.0611992 -0.0167775 Vertex 4139 -0.0009793 0.0356154 0.0137824 Vertex 4140 -0.0913716 0.140622 0.0201693 Vertex 4141 -0.0491873 0.165537 -0.00392571 Vertex 4142 0.016475 0.0352036 0.002978 Vertex 4143 -0.0186212 0.04503 -0.027692 Vertex 4144 -0.0341168 0.0383136 -0.000825234 Vertex 4145 -0.0154988 0.114109 0.0392017 Vertex 4146 -0.0549375 0.140991 0.0293007 Vertex 4147 -0.0315694 0.0461612 0.0465874 Vertex 4148 0.0264018 0.0591975 -0.0228202 Vertex 4149 -0.0792107 0.0760132 0.0281283 Vertex 4150 -0.0252277 0.12616 0.0135052 Vertex 4151 -0.019688 0.0352649 -0.0192337 Vertex 4152 -0.0187772 0.186086 -0.0166294 Vertex 4153 0.0278403 0.121636 0.00711658 Vertex 4154 -0.000523565 0.0428273 0.0465064 Vertex 4155 -0.0344815 0.0575696 0.0386716 Vertex 4156 0.02824 0.0686155 0.0425458 Vertex 4157 -0.0440686 0.0364096 0.0444754 Vertex 4158 -0.00639449 0.0347093 0.0459249 Vertex 4159 -0.0478629 0.0335429 0.00613354 Vertex 4160 -0.0134794 0.0559661 0.0512091 Vertex 4161 0.0044907 0.119648 0.0370088 Vertex 4162 -0.060985 0.168641 -0.0594898 Vertex 4163 -0.00860718 0.0361712 0.0494902 Vertex 4164 0.0352424 0.0726953 -0.0147969 Vertex 4165 -0.0347689 0.0780934 -0.0215038 Vertex 4166 0.0422807 0.0831292 -0.00677447 Vertex 4167 -0.0416194 0.0336308 -0.0257822 Vertex 4168 0.0161529 0.100264 -0.0224296 Vertex 4169 -0.0564565 0.03337 -0.00815977 Vertex 4170 -0.093138 0.120057 0.0112982 Vertex 4171 -0.062597 0.0740287 0.040345 Vertex 4172 -0.085793 0.0818712 0.00648437 Vertex 4173 0.00597565 0.131268 0.0190237 Vertex 4174 -0.026888 0.0344315 -0.0290471 Vertex 4175 0.0569982 0.0642691 0.00177262 Vertex 4176 -0.0547216 0.118372 0.0366122 Vertex 4177 -0.0126137 0.180121 -0.0236267 Vertex 4178 -0.0706849 0.0819434 0.0406373 Vertex 4179 -0.0681426 0.159579 -0.055037 Vertex 4180 -0.0500528 0.150184 -0.0037815 Vertex 4181 0.0204806 0.109788 0.0388648 Vertex 4182 0.0242732 0.0346695 0.0161217 Vertex 4183 0.0385114 0.038461 0.00447642 Vertex 4184 -0.0444648 0.0945053 0.0429498 Vertex 4185 -0.0880434 0.125329 0.00027907 Vertex 4186 0.00174509 0.0392548 -0.00741822 Vertex 4187 -0.0712372 0.167165 -0.0209901 Vertex 4188 -0.0737877 0.170302 -0.0290826 Vertex 4189 -0.0435026 0.0465062 0.0407289 Vertex 4190 -0.0361046 0.0383233 -0.0122787 Vertex 4191 -0.0314842 0.0386701 -0.0153847 Vertex 4192 -0.0175437 0.119111 -0.0121224 Vertex 4193 0.0348029 0.113058 0.00110003 Vertex 4194 -0.0619877 0.169385 -0.052596 Vertex 4195 0.0445696 0.0677675 0.0254424 Vertex 4196 0.00351232 0.0575709 0.0538233 Vertex 4197 -0.0699903 0.034504 0.00971713 Vertex 4198 -0.0354987 0.113848 0.0338946 Vertex 4199 -0.039166 0.0355671 -0.0293815 Vertex 4200 -0.0534968 0.0790911 0.0438637 Vertex 4201 -0.0669175 0.115159 -0.00990572 Vertex 4202 -0.0778591 0.161105 -0.0269202 Vertex 4203 -0.0397846 0.0841362 -0.0215764 Vertex 4204 -0.0615536 0.151288 -0.000477544 Vertex 4205 -0.07404 0.148543 -0.0208687 Vertex 4206 -0.0621937 0.156854 -0.0175927 Vertex 4207 0.00206776 0.0348089 0.0386094 Vertex 4208 0.00310705 0.0348555 0.0387811 Vertex 4209 0.0454797 0.0637982 0.0288243 Vertex 4210 0.00703854 0.0344034 -0.0150394 Vertex 4211 -0.066706 0.0375681 0.0351923 Vertex 4212 -0.0697305 0.146842 -0.0262196 Vertex 4213 -0.0515886 0.0460739 0.0176829 Vertex 4214 -0.0698172 0.0908437 -0.0164973 Vertex 4215 -0.0698527 0.139727 0.0465118 Vertex 4216 -0.0191218 0.165312 -0.0179178 Vertex 4217 0.018083 0.0887399 0.0491141 Vertex 4218 -0.038499 0.0747376 0.0420783 Vertex 4219 -0.0586925 0.0677294 -0.0118268 Vertex 4220 -0.0455004 0.113892 0.0345333 Vertex 4221 0.023574 0.105697 0.0395934 Vertex 4222 -0.00316977 0.101093 -0.0230747 Vertex 4223 -0.0766463 0.0803349 -0.0100768 Vertex 4224 0.0409735 0.0405135 0.0215425 Vertex 4225 -0.0536233 0.0657097 0.0353836 Vertex 4226 -0.0475605 0.047528 -0.00960427 Vertex 4227 0.0317406 0.107408 0.0337947 Vertex 4228 0.00450584 0.0547654 0.053433 Vertex 4229 -0.0466073 0.0518764 -0.00969859 Vertex 4230 0.0171734 0.0960138 -0.0234178 Vertex 4231 -0.00549746 0.0503818 0.0516227 Vertex 4232 -0.0836005 0.0763298 0.006515 Vertex 4233 -0.0234016 0.184697 -0.0149423 Vertex 4234 -0.0635003 0.0931972 0.0443921 Vertex 4235 0.00485548 0.0339942 -0.0207847 Vertex 4236 -0.0751616 0.0715622 0.0292788 Vertex 4237 -0.0105137 0.0589924 0.0541839 Vertex 4238 -0.0320031 0.0370471 -0.0177181 Vertex 4239 -0.0261077 0.0372445 -0.0185929 Vertex 4240 0.0375206 0.0540908 0.0314327 Vertex 4241 -0.00559653 0.0391515 -0.0257085 Vertex 4242 -0.023785 0.0621839 0.0426152 Vertex 4243 -0.0613445 0.0434338 0.042412 Vertex 4244 0.0517581 0.0684217 0.00143507 Vertex 4245 -0.0475913 0.133999 0.00741747 Vertex 4246 -0.0679859 0.155562 0.00782161 Vertex 4247 -0.0523266 0.033478 -0.00194369 Vertex 4248 -0.0156999 0.0584946 -0.0353551 Vertex 4249 -0.0620333 0.153738 -0.0275809 Vertex 4250 -0.0451337 0.127804 0.0210049 Vertex 4251 -0.0124605 0.0646213 0.0545516 Vertex 4252 -0.0832597 0.10897 0.0263609 Vertex 4253 -0.016949 0.0909918 -0.0366612 Vertex 4254 0.00802743 0.0346823 0.0237027 Vertex 4255 0.0264487 0.0948748 -0.0204583 Vertex 4256 0.0227875 0.0348957 0.00078699 Vertex 4257 -0.0890361 0.146068 0.0101777 Vertex 4258 -0.0416459 0.056333 -0.0114534 Vertex 4259 -0.0731839 0.178324 -0.0475338 Vertex 4260 -0.0315034 0.0717826 0.0402663 Vertex 4261 -0.0244788 0.0486839 0.0492934 Vertex 4262 -0.0518659 0.144686 0.0163701 Vertex 4263 -0.0334992 0.0704401 0.0410454 Vertex 4264 0.0153651 0.0493118 -0.0259325 Vertex 4265 -0.06539 0.178765 -0.0548301 Vertex 4266 -0.0454458 0.168254 0.00168996 Vertex 4267 -0.031608 0.0496402 -0.0193495 Vertex 4268 -0.0883434 0.0968836 0.00640652 Vertex 4269 -0.067159 0.152634 -0.0476967 Vertex 4270 -0.0265277 0.10717 0.0404632 Vertex 4271 -0.0548971 0.104115 -0.019193 Vertex 4272 -0.0100812 0.168118 -0.0236136 Vertex 4273 -0.062214 0.131105 0.0398962 Vertex 4274 -0.0124976 0.0472007 0.0479814 Vertex 4275 -0.0205007 0.0971766 0.0453281 Vertex 4276 -0.0246065 0.0394112 -0.0290873 Vertex 4277 -0.0235889 0.0983837 -0.0242804 Vertex 4278 -0.06275 0.178179 -0.0598124 Vertex 4279 -0.0406505 0.117474 -0.0142631 Vertex 4280 0.00445187 0.116712 -0.0177471 Vertex 4281 -0.0543178 0.0387289 0.0471882 Vertex 4282 -0.0745011 0.151286 -0.0298782 Vertex 4283 0.0137231 0.129888 0.00901711 Vertex 4284 -0.0917675 0.126924 0.040336 Vertex 4285 -0.0628433 0.16149 -0.0495873 Vertex 4286 -0.0242006 0.107431 -0.0217757 Vertex 4287 -0.064618 0.0659249 -0.00682147 Vertex 4288 -0.0517494 0.0782459 -0.0193853 Vertex 4289 -0.0154952 0.087016 0.0568367 Vertex 4290 -0.0592557 0.146819 0.0355066 Vertex 4291 -0.030521 0.0636541 -0.0224277 Vertex 4292 -0.00549934 0.085642 0.0570911 Vertex 4293 -0.0881735 0.15196 0.0139234 Vertex 4294 -0.0034944 0.103046 0.0439357 Vertex 4295 -0.0123281 0.0344052 -0.018857 Vertex 4296 -0.0378831 0.156583 0.00477982 Vertex 4297 0.00645901 0.0392685 0.0301228 Vertex 4298 0.0282219 0.0816125 -0.0219304 Vertex 4299 0.0242611 0.0448626 -0.0136813 Vertex 4300 0.00640925 0.0404248 -0.023654 Vertex 4301 -0.0485004 0.157854 0.0090451 Vertex 4302 -0.00947595 0.130265 0.0133884 Vertex 4303 -0.0114927 0.0938853 0.0554733 Vertex 4304 -0.030496 0.0988081 0.0439786 Vertex 4305 -0.0360819 0.0351453 0.0214963 Vertex 4306 -0.0787914 0.14589 -0.00282549 Vertex 4307 -0.0294988 0.0559628 0.0364214 Vertex 4308 -0.0555057 0.0946 0.044463 Vertex 4309 -0.0337394 0.0355643 0.0323212 Vertex 4310 -0.0849208 0.114388 0.046865 Vertex 4311 -0.0305016 0.108423 0.0388291 Vertex 4312 0.0473276 0.0547587 -0.00564531 Vertex 4313 -0.0663574 0.0370366 0.0151548 Vertex 4314 -0.0454304 0.130382 0.00608349 Vertex 4315 -0.0414956 0.0464933 0.0408152 Vertex 4316 -0.0138083 0.082755 -0.0391488 Vertex 4317 0.00649387 0.0590149 0.0539921 Vertex 4318 0.0245364 0.0862451 0.0478999 Vertex 4319 -0.0225002 0.104414 0.0430095 Vertex 4320 -0.0157973 0.0382489 0.019257 Vertex 4321 -0.0293056 0.125075 0.00323421 Vertex 4322 0.0507854 0.0445928 0.0142166 Vertex 4323 -0.0811057 0.0748245 0.0195385 Vertex 4324 -0.0379836 0.153062 -0.00765575 Vertex 4325 0.0074278 0.117326 -0.0164147 Vertex 4326 0.0485095 0.0723104 0.0188157 Vertex 4327 0.0322412 0.0368006 0.00286913 Vertex 4328 -0.0649507 0.13395 0.041174 Vertex 4329 -0.0259103 0.0721759 0.0444214 Vertex 4330 0.0208979 0.0359371 0.0087849 Vertex 4331 -0.0567655 0.0797174 -0.020408 Vertex 4332 -0.0537245 0.0723552 -0.016258 Vertex 4333 0.011218 0.0822648 -0.0313395 Vertex 4334 -0.0655009 0.0903733 0.0443899 Vertex 4335 0.016507 0.0913965 0.0503683 Vertex 4336 -0.083022 0.132397 -0.0026267 Vertex 4337 0.00320624 0.036422 0.0229702 Vertex 4338 0.0448999 0.0861351 0.000186185 Vertex 4339 0.00951792 0.0799496 0.0550675 Vertex 4340 0.010042 0.0970288 -0.0247384 Vertex 4341 0.00960463 0.0369501 0.029234 Vertex 4342 -0.0276264 0.046347 -0.026964 Vertex 4343 -0.064327 0.034541 0.0284972 Vertex 4344 -0.0281556 0.17562 -0.0175208 Vertex 4345 -0.0756983 0.148597 -0.0138657 Vertex 4346 -0.0251464 0.0824617 0.0532115 Vertex 4347 -0.0519318 0.0352921 -0.0124585 Vertex 4348 -0.012492 0.061843 0.0546212 Vertex 4349 0.0549936 0.0732019 0.0123756 Vertex 4350 -0.0488158 0.0912881 -0.0217052 Vertex 4351 -0.0323685 0.0497273 -0.0163483 Vertex 4352 0.0099296 0.113714 0.0390911 Vertex 4353 0.024363 0.0867852 -0.0239669 Vertex 4354 -0.044493 0.0860963 0.0437549 Vertex 4355 -0.0780353 0.0880327 -0.0115615 Vertex 4356 -0.0450103 0.054631 0.0385549 Vertex 4357 -0.0109155 0.0356188 0.0494667 Vertex 4358 0.0321413 0.0513188 -0.0087021 Vertex 4359 -0.0574904 0.0847348 0.0442092 Vertex 4360 -0.0781465 0.155117 0.0246877 Vertex 4361 0.0192058 0.0834241 -0.02764 Vertex 4362 0.0108601 0.117776 0.0369396 Vertex 4363 -0.065333 0.177827 -0.0606985 Vertex 4364 -0.0541424 0.033642 0.0190888 Vertex 4365 -0.0889001 0.136394 0.00820864 Vertex 4366 -0.0862104 0.140486 0.00518463 Vertex 4367 0.0295458 0.115836 -0.00482165 Vertex 4368 -0.057332 0.137224 -0.00518105 Vertex 4369 -0.0664605 0.152204 -0.0437352 Vertex 4370 -0.0302725 0.114038 -0.0167089 Vertex 4371 -0.0674507 0.155183 -0.000720572 Vertex 4372 -0.0576661 0.143885 0.0324483 Vertex 4373 0.0163786 0.0403059 -0.0216745 Vertex 4374 -0.00826521 0.0380456 0.0491273 Vertex 4375 -0.0719312 0.128266 -0.00893149 Vertex 4376 0.0215717 0.0401714 -0.00970048 Vertex 4377 0.0147818 0.0631153 0.0511723 Vertex 4378 -0.00750789 0.0386054 0.00429878 Vertex 4379 -0.0104849 0.101611 0.0440429 Vertex 4380 -0.0527782 0.0338002 0.0103069 Vertex 4381 0.0103893 0.0434318 -0.0247637 Vertex 4382 -0.0197554 0.158352 -0.00754965 Vertex 4383 -0.0617308 0.0752409 -0.0175405 Vertex 4384 0.0199305 0.0645206 0.0480779 Vertex 4385 -0.076873 0.114866 -0.00505023 Vertex 4386 -0.0768389 0.102007 -0.0101454 Vertex 4387 0.00746772 0.0343056 0.0166757 Vertex 4388 -0.0448731 0.128505 0.000263047 Vertex 4389 -0.0165027 0.0499584 0.0473896 Vertex 4390 -0.0241332 0.0349697 0.043675 Vertex 4391 -0.038884 0.108506 -0.019659 Vertex 4392 -0.0250378 0.174204 -0.0117666 Vertex 4393 -0.084275 0.0897993 -0.00457099 Vertex 4394 0.0196453 0.0521206 0.045827 Vertex 4395 -0.0727804 0.0887809 0.0411113 Vertex 4396 -0.0324512 0.0353306 -0.0309147 Vertex 4397 -0.0900419 0.139254 0.023178 Vertex 4398 -0.0618416 0.098205 -0.0180486 Vertex 4399 -0.0243904 0.183518 -0.0110527 Vertex 4400 0.000108091 0.0340814 -0.0198793 Vertex 4401 -0.0771635 0.0705018 0.0227664 Vertex 4402 -0.0887218 0.0874968 0.0134639 Vertex 4403 -0.0235296 0.159196 -0.00227474 Vertex 4404 -0.026997 0.0382812 -0.00486026 Vertex 4405 0.0295344 0.0524338 -0.0167463 Vertex 4406 -0.043713 0.0695592 -0.0168487 Vertex 4407 -0.0299566 0.122268 0.0236125 Vertex 4408 -0.036902 0.0362143 0.0131672 Vertex 4409 -0.010479 0.0991873 -0.02508 Vertex 4410 -0.00357674 0.0347286 -0.0239915 Vertex 4411 -0.0636168 0.143654 -0.00954122 Vertex 4412 -0.00564979 0.0511569 -0.0315211 Vertex 4413 0.00931572 0.0725689 0.0556419 Vertex 4414 -0.0321779 0.0750041 -0.0285287 Vertex 4415 -0.0621531 0.152198 -0.0185797 Vertex 4416 -0.00449363 0.0456798 0.0470573 Vertex 4417 -0.0658521 0.0361993 0.0388506 Vertex 4418 -0.0374964 0.118015 0.0312717 Vertex 4419 -0.0436408 0.0408205 -0.0223011 Vertex 4420 0.0380126 0.0687088 -0.0127776 Vertex 4421 0.00749081 0.093253 -0.0307631 Vertex 4422 0.0408155 0.0939721 0.0292858 Vertex 4423 -0.0381186 0.128235 0.00584498 Vertex 4424 0.0506567 0.0703381 0.00346635 Vertex 4425 -0.00158589 0.110252 -0.0207823 Vertex 4426 -0.0114995 0.164138 -0.0150087 Vertex 4427 -0.0810711 0.076096 -0.000474636 Vertex 4428 -0.0459114 0.0657109 0.0391289 Vertex 4429 -0.0106878 0.0598858 -0.0348312 Vertex 4430 -0.000496894 0.0520342 0.0541515 Vertex 4431 0.00450508 0.0688823 0.055725 Vertex 4432 -0.0779569 0.132491 -0.00592536 Vertex 4433 -0.0232213 0.183101 -0.0108227 Vertex 4434 -0.0207916 0.117992 -0.012906 Vertex 4435 -0.0799767 0.138308 -0.00390962 Vertex 4436 -0.0643724 0.0341771 0.0147182 Vertex 4437 0.0112619 0.069597 -0.0315203 Vertex 4438 -0.0801977 0.117632 0.0490824 Vertex 4439 -0.0494399 0.119744 0.0319359 Vertex 4440 -0.0524967 0.0945727 0.0438723 Vertex 4441 0.00197552 0.0378956 -0.000532017 Vertex 4442 -0.0607891 0.0597911 0.00342454 Vertex 4443 -0.0584646 0.0588965 0.0024905 Vertex 4444 0.011996 0.0344545 0.00276628 Vertex 4445 -0.0454999 0.102932 0.0417867 Vertex 4446 0.0346942 0.0401467 0.0260507 Vertex 4447 -0.0760774 0.166574 -0.0390172 Vertex 4448 0.0364284 0.0413843 -0.00274773 Vertex 4449 -0.0788582 0.171448 -0.0399026 Vertex 4450 -0.0581184 0.132538 0.0370402 Vertex 4451 0.00114663 0.103071 -0.022297 Vertex 4452 0.012258 0.0751733 -0.0308354 Vertex 4453 -0.0517432 0.0487299 0.0143843 Vertex 4454 -0.0156647 0.109623 -0.0201068 Vertex 4455 -0.0357119 0.0695868 -0.0167299 Vertex 4456 -0.0386191 0.118326 -0.013151 Vertex 4457 -0.0673807 0.115762 0.049991 Vertex 4458 0.019654 0.122236 -0.00577023 Vertex 4459 -0.0573945 0.0371513 -0.0102727 Vertex 4460 -0.0426307 0.0338188 -0.00946517 Vertex 4461 -0.0719281 0.148635 -0.0350398 Vertex 4462 0.0313895 0.0549645 0.0381834 Vertex 4463 0.027653 0.0506012 0.0379885 Vertex 4464 0.0237757 0.0343382 0.00896337 Vertex 4465 -0.0258672 0.156547 -0.00846874 Vertex 4466 0.0234401 0.112665 0.0358138 Vertex 4467 0.0484031 0.0553841 0.03118 Vertex 4468 0.0115331 0.101889 -0.0218781 Vertex 4469 -0.00577511 0.0770351 -0.037534 Vertex 4470 -0.0405044 0.166738 0.00354035 Vertex 4471 -0.0770983 0.150031 -0.00589737 Vertex 4472 -0.0037118 0.0655569 -0.0347446 Vertex 4473 -0.0694847 0.181423 -0.0563964 Vertex 4474 0.0174821 0.0990004 0.0469682 Vertex 4475 -0.0370447 0.0379826 0.045213 Vertex 4476 0.0227098 0.105005 -0.0172062 Vertex 4477 -0.0614955 0.0973435 0.04311 Vertex 4478 -0.0434973 0.0719505 0.0423325 Vertex 4479 -0.0255625 0.0532992 -0.0274025 Vertex 4480 -0.0742533 0.17954 -0.0493425 Vertex 4481 -0.0511061 0.129858 -0.00316533 Vertex 4482 -0.0614957 0.105649 0.0403113 Vertex 4483 -0.0848581 0.120613 -0.00298955 Vertex 4484 -0.0844285 0.0832425 0.0264792 Vertex 4485 -0.0418518 0.098529 -0.0215916 Vertex 4486 -0.059 0.0412164 0.021703 Vertex 4487 0.0354525 0.106753 -0.0069512 Vertex 4488 -0.057498 0.0762057 0.0428357 Vertex 4489 -0.0674677 0.10143 0.0408399 Vertex 4490 -0.0270301 0.0604609 -0.0294673 Vertex 4491 -0.0164922 0.103019 0.043564 Vertex 4492 -0.0466801 0.130916 0.0233152 Vertex 4493 0.00649798 0.107134 0.0414437 Vertex 4494 0.0482689 0.0616107 -0.00376704 Vertex 4495 -0.059258 0.0467212 -0.00132733 Vertex 4496 -0.0220401 0.0852804 0.0556778 Vertex 4497 -0.07566 0.1555 -0.0199215 Vertex 4498 -0.0769289 0.125211 -0.00745968 Vertex 4499 -0.0709364 0.151841 0.036169 Vertex 4500 -0.0190294 0.0739916 0.05444 Vertex 4501 0.0141304 0.056278 0.0501629 Vertex 4502 -0.0590564 0.0335255 0.00387291 Vertex 4503 -0.00855639 0.121127 -0.0123669 Vertex 4504 -0.0615294 0.0333928 -0.00373148 Vertex 4505 0.00259703 0.093007 -0.0325523 Vertex 4506 -0.0660244 0.166553 -0.0262486 Vertex 4507 0.0284181 0.0835438 0.0446794 Vertex 4508 -0.0331612 0.0342582 0.0246899 Vertex 4509 0.0548799 0.0492406 0.0202107 Vertex 4510 -0.00349094 0.060529 0.0547186 Vertex 4511 0.0191194 0.0349494 -0.00374623 Vertex 4512 -0.0115046 0.0688083 0.054897 Vertex 4513 -0.0546717 0.0587861 -0.00643621 Vertex 4514 -0.0157667 0.0742966 -0.0389627 Vertex 4515 -0.0892801 0.091541 0.0104497 Vertex 4516 -0.0663959 0.148276 0.0393784 Vertex 4517 -0.067702 0.169446 -0.0560134 Vertex 4518 -0.0781961 0.0730005 -0.00359699 Vertex 4519 -0.0149561 0.0997734 -0.0237179 Vertex 4520 0.00551455 0.110936 0.0415028 Vertex 4521 -0.0865012 0.0967606 0.00143514 Vertex 4522 -0.0628273 0.0924874 -0.0189476 Vertex 4523 0.00352818 0.0386899 -0.0121702 Vertex 4524 -0.0652367 0.0347413 0.0281307 Vertex 4525 -0.0793826 0.0705862 0.00854889 Vertex 4526 -0.0205392 0.0971418 -0.0249761 Vertex 4527 0.0218862 0.107458 -0.0158341 Vertex 4528 -0.0596936 0.155857 0.0122367 Vertex 4529 0.000234629 0.0985537 -0.0263753 Vertex 4530 0.0108543 0.128955 0.0251156 Vertex 4531 -0.044804 0.0884409 -0.0220028 Vertex 4532 -0.0430993 0.157658 -0.00954173 Vertex 4533 -0.0159859 0.0984773 0.0464357 Vertex 4534 -0.0197891 0.0785016 -0.0390423 Vertex 4535 -0.0897769 0.0915868 0.0144438 Vertex 4536 0.0594014 0.060828 0.00515272 Vertex 4537 -0.0295885 0.120405 -0.00932945 Vertex 4538 0.04471 0.0789677 0.024116 Vertex 4539 -0.0084928 0.0591086 0.0550857 Vertex 4540 0.0226682 0.115322 0.0347114 Vertex 4541 0.00356645 0.0339958 0.0125338 Vertex 4542 -0.0118724 0.166916 -0.0155725 Vertex 4543 -0.0398973 0.160894 0.00183362 Vertex 4544 -0.0196184 0.043638 -0.0281382 Vertex 4545 -0.0592051 0.0411249 -0.00803844 Vertex 4546 -0.007347 0.0952877 -0.0329727 Vertex 4547 -0.0332219 0.0344808 0.0386469 Vertex 4548 -0.0895706 0.136541 0.0322035 Vertex 4549 -0.0680426 0.110046 0.0381289 Vertex 4550 -0.0336555 0.0363317 0.0490618 Vertex 4551 -0.0494977 0.0903933 0.0446494 Vertex 4552 0.0416487 0.0806113 0.0304012 Vertex 4553 0.0242906 0.0676576 -0.0247124 Vertex 4554 -0.0689807 0.155012 0.0293114 Vertex 4555 -0.0223034 0.0381733 0.0107634 Vertex 4556 -0.0685061 0.105552 0.0384458 Vertex 4557 -0.0401042 0.037954 0.0427598 Vertex 4558 -0.0289244 0.033884 -0.0216457 Vertex 4559 0.0453737 0.0474164 -0.00383546 Vertex 4560 -0.0276164 0.0422898 -0.0293674 Vertex 4561 -0.0274798 0.0446461 0.0507675 Vertex 4562 -0.0572856 0.125533 0.0399888 Vertex 4563 -0.0755108 0.126011 0.0529241 Vertex 4564 -0.0159686 0.128428 0.0182857 Vertex 4565 0.0131268 0.120538 0.0349816 Vertex 4566 -0.0538607 0.152062 0.0231076 Vertex 4567 -0.0546238 0.0527377 0.0100793 Vertex 4568 -0.037505 0.0874848 0.0436782 Vertex 4569 -0.00749897 0.0815283 0.0577578 Vertex 4570 -0.0505005 0.109789 0.0379415 Vertex 4571 0.0452304 0.0763569 0.00121116 Vertex 4572 0.00493781 0.100395 -0.0223096 Vertex 4573 -0.0348248 0.0473223 0.0413292 Vertex 4574 0.0377103 0.0955073 -0.00984226 Vertex 4575 -0.0489315 0.137078 0.0173942 Vertex 4576 -0.0267368 0.0385445 0.0329521 Vertex 4577 -0.0554797 0.0848037 0.0450617 Vertex 4578 -0.0915979 0.115467 0.0229868 Vertex 4579 -0.0519836 0.0517496 0.0236325 Vertex 4580 -0.0375072 0.123454 -0.00854988 Vertex 4581 0.0204505 0.044377 -0.0207645 Vertex 4582 0.00550646 0.078617 0.0558754 Vertex 4583 0.0306214 0.073711 -0.0207585 Vertex 4584 0.0185294 0.0358466 0.0392699 Vertex 4585 -0.0634196 0.15027 -0.0277557 Vertex 4586 -0.0336617 0.0592604 -0.0121578 Vertex 4587 0.0344933 0.0646793 0.0392567 Vertex 4588 -0.072774 0.10871 0.0380686 Vertex 4589 -0.0518826 0.071407 0.0396894 Vertex 4590 0.0591153 0.0705615 0.014025 Vertex 4591 -0.0577811 0.0472143 0.0403119 Vertex 4592 -0.0758642 0.117897 -0.00698249 Vertex 4593 -0.033489 0.172734 -0.00156283 Vertex 4594 -0.0649264 0.112407 -0.0127033 Vertex 4595 0.0292092 0.0563773 0.0403225 Vertex 4596 0.00323976 0.128177 0.0281353 Vertex 4597 0.0559734 0.0494153 0.0101945 Vertex 4598 -0.0535372 0.0578641 0.0215172 Vertex 4599 -0.0635357 0.119961 0.0469254 Vertex 4600 -0.0422272 0.127744 0.0161624 Vertex 4601 -0.0427465 0.0393017 -0.0242897 Vertex 4602 -0.0708458 0.0980019 -0.0152545 Vertex 4603 -0.0154871 0.10859 0.0421893 Vertex 4604 -0.0367909 0.0856326 -0.0224706 Vertex 4605 -0.0636975 0.0593607 0.0104272 Vertex 4606 0.0112895 0.0624411 -0.0303571 Vertex 4607 0.0342215 0.0827959 -0.0185003 Vertex 4608 -0.0727292 0.0730957 -0.00887693 Vertex 4609 -0.0704921 0.0944433 0.0420805 Vertex 4610 -0.0575865 0.0586919 0.0194779 Vertex 4611 -0.0304696 0.0875178 0.0438182 Vertex 4612 -0.0647804 0.153444 -0.00410741 Vertex 4613 0.00812607 0.108726 -0.0199063 Vertex 4614 -0.0898786 0.113438 0.0340422 Vertex 4615 0.0363932 0.0476439 -0.00624826 Vertex 4616 -0.0107444 0.0685007 -0.0365794 Vertex 4617 -0.0294972 0.0602632 0.0372614 Vertex 4618 0.0474285 0.0692644 0.00256538 Vertex 4619 0.0153133 0.121135 -0.0105519 Vertex 4620 -0.0609269 0.155849 0.0219449 Vertex 4621 -0.0620444 0.166711 -0.0606187 Vertex 4622 0.0182552 0.0736117 -0.028651 Vertex 4623 0.0164183 0.0726599 0.0518741 Vertex 4624 -0.0411389 0.0448599 -0.0213399 Vertex 4625 -0.0328734 0.0680853 -0.0194707 Vertex 4626 -0.0414961 0.0902351 0.0425692 Vertex 4627 -0.0497211 0.131062 0.0298847 Vertex 4628 -0.048358 0.146267 0.00883601 Vertex 4629 -0.0788715 0.122217 -0.0060966 Vertex 4630 -0.0800654 0.121688 0.0502425 Vertex 4631 -0.0280876 0.0511424 0.0415727 Vertex 4632 -0.0794888 0.111206 0.0453002 Vertex 4633 -0.0539202 0.0610131 0.0274265 Vertex 4634 -0.0194954 0.107168 0.0420699 Vertex 4635 -0.0161996 0.0386499 0.0314325 Vertex 4636 0.0053433 0.0524636 -0.0297405 Vertex 4637 -0.0914492 0.117418 0.0293041 Vertex 4638 0.010861 0.0360066 0.0447493 Vertex 4639 0.00325461 0.0697315 -0.0336623 Vertex 4640 -0.0616015 0.0614498 -0.00273471 Vertex 4641 -0.0581897 0.157381 0.00697939 Vertex 4642 -0.0331359 0.168192 -0.0157544 Vertex 4643 -0.0809405 0.141759 -0.00181375 Vertex 4644 -0.0283423 0.118847 0.030216 Vertex 4645 -0.00152895 0.1273 -0.00507098 Vertex 4646 -0.0575003 0.0630187 0.0298519 Vertex 4647 0.00821621 0.124741 -0.00840458 Vertex 4648 -0.0619045 0.104018 -0.0180451 Vertex 4649 -0.0498856 0.149233 0.0119087 Vertex 4650 -0.0830551 0.128552 0.0515383 Vertex 4651 0.0590657 0.0691634 0.0182335 Vertex 4652 0.0345596 0.114411 0.00388032 Vertex 4653 -0.0884641 0.0887716 0.00547605 Vertex 4654 -0.00248857 0.0703789 0.0573235 Vertex 4655 -0.00469334 0.101051 0.0441761 Vertex 4656 -0.00249266 0.0760635 0.0587913 Vertex 4657 -0.00927598 0.177254 -0.0287785 Vertex 4658 -0.058907 0.0983413 -0.0195805 Vertex 4659 -0.0200678 0.0384268 0.0272406 Vertex 4660 -0.0252491 0.162472 -0.00507229 Vertex 4661 0.0244967 0.0375596 0.0281073 Vertex 4662 0.0140069 0.0433574 0.0445182 Vertex 4663 -0.090746 0.114598 0.00833305 Vertex 4664 -0.0214986 0.100246 0.0444424 Vertex 4665 -0.0163928 0.0384645 -0.00103951 Vertex 4666 -0.0180211 0.168338 -0.0139614 Vertex 4667 -0.0725233 0.143597 -0.0104167 Vertex 4668 0.0422452 0.0986357 -0.000817872 Vertex 4669 0.0104332 0.0344417 -0.0125223 Vertex 4670 0.0369819 0.102039 0.0307859 Vertex 4671 -0.0507589 0.144713 0.0133585 Vertex 4672 -0.0816885 0.110103 -0.000571623 Vertex 4673 -0.0614924 0.0384787 0.0187446 Vertex 4674 -0.0291057 0.0349617 0.0478282 Vertex 4675 -0.0685946 0.0353745 -0.00558788 Vertex 4676 -0.0945826 0.122834 0.0222802 Vertex 4677 -0.0244818 0.0988555 0.0446892 Vertex 4678 -0.0525421 0.050441 0.0296546 Vertex 4679 -0.0107227 0.165105 -0.0188107 Vertex 4680 -0.0311133 0.0510509 -0.015361 Vertex 4681 0.0377251 0.0602627 -0.00973714 Vertex 4682 -0.00782261 0.0985178 0.051315 Vertex 4683 -0.0112874 0.182441 -0.0284978 Vertex 4684 -0.0125497 0.0445369 0.0499253 Vertex 4685 -0.0652676 0.179645 -0.0602668 Vertex 4686 -0.00680045 0.129424 0.0244883 Vertex 4687 -0.00120988 0.105335 0.044053 Vertex 4688 -0.00149343 0.0883979 0.0566431 Vertex 4689 -0.00270958 0.0391757 0.033738 Vertex 4690 -0.0864107 0.0819973 0.0174801 Vertex 4691 0.0115191 0.107071 0.0419973 Vertex 4692 -0.0317613 0.0567558 -0.0133876 Vertex 4693 0.0170456 0.0808203 0.0528345 Vertex 4694 -0.0291189 0.15522 -0.00190906 Vertex 4695 -0.0759006 0.161818 -0.014334 Vertex 4696 0.0194777 0.0878818 0.0491927 Vertex 4697 -0.0491191 0.159098 -0.00622225 Vertex 4698 -0.0619009 0.0678892 0.0352357 Vertex 4699 -0.0837744 0.107497 0.00138169 Vertex 4700 -0.0526652 0.0647199 -0.0102 Vertex 4701 -0.0131915 0.184654 -0.0268832 Vertex 4702 -0.0332153 0.107417 -0.0197253 Vertex 4703 -0.06629 0.139698 0.0427919 Vertex 4704 0.00833271 0.0567886 -0.0305627 Vertex 4705 -0.023866 0.103031 -0.0237009 Vertex 4706 -0.0501537 0.152144 0.0115744 Vertex 4707 -0.0646767 0.146003 -0.0179612 Vertex 4708 0.025639 0.0740461 0.0458389 Vertex 4709 -0.0401921 0.166668 -0.0117758 Vertex 4710 -0.0850765 0.107567 0.00438106 Vertex 4711 -0.00451061 0.0534011 0.0538125 Vertex 4712 0.0210547 0.0358177 -0.00168489 Vertex 4713 -0.0741825 0.156237 0.0158024 Vertex 4714 -0.0628457 0.158366 -0.0406006 Vertex 4715 -0.0757282 0.0754387 0.0328339 Vertex 4716 -0.0587405 0.0737726 -0.0173801 Vertex 4717 0.0242996 0.120934 0.0286395 Vertex 4718 -0.0691914 0.171601 -0.0360136 Vertex 4719 -0.0301161 0.0396403 0.0523893 Vertex 4720 0.0273536 0.106086 0.0379553 Vertex 4721 -0.0437453 0.0348723 0.00757323 Vertex 4722 -0.0366299 0.0534085 -0.0105028 Vertex 4723 -0.00645978 0.0918654 -0.0354548 Vertex 4724 -0.0764978 0.13308 0.0521415 Vertex 4725 0.0064937 0.048929 0.05087 Vertex 4726 -0.035492 0.0648204 0.0410644 Vertex 4727 -0.0442176 0.170815 -0.00391429 Vertex 4728 0.0293522 0.0768437 0.0442363 Vertex 4729 -0.0438294 0.0913555 -0.0224139 Vertex 4730 -0.00950098 0.0884225 0.0571104 Vertex 4731 0.0173388 0.0781757 0.0532571 Vertex 4732 -0.0478493 0.099947 -0.0217978 Vertex 4733 0.0463647 0.0703187 0.00350637 Vertex 4734 -0.0486546 0.0620591 -0.0122264 Vertex 4735 -0.0686641 0.0435432 0.00268116 Vertex 4736 0.0583737 0.0676977 0.00512132 Vertex 4737 -0.0516913 0.0680528 0.0372779 Vertex 4738 -0.0470988 0.0345244 0.0321531 Vertex 4739 -0.02575 0.0536249 0.0391706 Vertex 4740 -0.0773811 0.108845 0.0387481 Vertex 4741 -0.0318198 0.0887354 -0.0251772 Vertex 4742 -0.0792933 0.16941 -0.0399858 Vertex 4743 0.0175889 0.0549386 0.0481228 Vertex 4744 0.0296386 0.114736 0.0306143 Vertex 4745 -0.0164997 0.0938314 0.054193 Vertex 4746 -0.0624013 0.116928 0.041368 Vertex 4747 0.0223908 0.0489358 -0.0217863 Vertex 4748 0.032953 0.0994589 0.0373001 Vertex 4749 0.0331357 0.0570437 -0.0137102 Vertex 4750 -0.00177837 0.0811944 -0.0365591 Vertex 4751 -0.0722633 0.0367738 0.0082856 Vertex 4752 -0.0374809 0.113893 0.0340704 Vertex 4753 -0.0715439 0.0376425 0.00026118 Vertex 4754 -0.0743109 0.165184 -0.0390136 Vertex 4755 -0.0537672 0.0812389 -0.0213883 Vertex 4756 -0.0157653 0.161968 -0.0148041 Vertex 4757 -0.018422 0.0583296 0.0500808 Vertex 4758 -0.0770169 0.112922 0.0479771 Vertex 4759 -0.0871093 0.106357 0.0153576 Vertex 4760 0.0261935 0.0402752 0.032238 Vertex 4761 0.0528846 0.0533107 -0.0017243 Vertex 4762 -0.0708767 0.0346286 -0.00100073 Vertex 4763 -0.00451637 0.113738 -0.0185133 Vertex 4764 -0.0206125 0.0553712 0.0467047 Vertex 4765 -0.0857293 0.121702 0.0488414 Vertex 4766 -0.00894653 0.174179 -0.0257648 Vertex 4767 -0.0863225 0.128011 -0.00168174 Vertex 4768 0.0444976 0.0583814 0.0318302 Vertex 4769 -0.00863658 0.0467032 -0.0298179 Vertex 4770 -0.0531047 0.0345095 0.0361399 Vertex 4771 -0.0646684 0.155196 -0.0425404 Vertex 4772 -0.046701 0.144949 0.00345496 Vertex 4773 -0.0394877 0.095879 0.0424449 Vertex 4774 -0.0678684 0.063022 0.000880975 Vertex 4775 -0.0334933 0.0946149 0.0444857 Vertex 4776 -0.0155018 0.080076 0.0569734 Vertex 4777 0.0130443 0.113867 -0.0167218 Vertex 4778 0.0402562 0.0857576 -0.0117696 Vertex 4779 0.0408807 0.0948081 -0.00628698 Vertex 4780 -0.016526 0.0387631 -0.00875803 Vertex 4781 0.0440634 0.064827 -0.000963389 Vertex 4782 -0.0244827 0.044849 0.0526821 Vertex 4783 0.0100844 0.123139 0.0340691 Vertex 4784 -0.0142042 0.169737 -0.0232161 Vertex 4785 -0.0398248 0.0928735 -0.0232663 Vertex 4786 -0.0470742 0.127422 -0.00463291 Vertex 4787 -0.049499 0.0747526 0.0426395 Vertex 4788 -0.0294715 0.117536 0.0312989 Vertex 4789 -0.0908755 0.147455 0.0141474 Vertex 4790 -0.0367613 0.0798086 -0.0204262 Vertex 4791 0.0208541 0.11855 -0.00976629 Vertex 4792 -0.0238257 0.0881589 -0.0366228 Vertex 4793 0.0126937 0.0345417 0.0229719 Vertex 4794 -0.0445079 0.0424992 0.043443 Vertex 4795 -0.0840769 0.0911454 0.0297191 Vertex 4796 -0.087831 0.103641 0.0093887 Vertex 4797 -0.0659208 0.0390922 0.037189 Vertex 4798 -0.0765723 0.0689281 0.00553415 Vertex 4799 -0.0687139 0.0394283 -0.00171366 Vertex 4800 0.005469 0.0964333 0.0520715 Vertex 4801 -0.0895793 0.136441 0.0122186 Vertex 4802 -0.0168597 0.0382017 0.0136589 Vertex 4803 -0.000826517 0.0853922 -0.0362438 Vertex 4804 -0.0295018 0.159581 0.00108834 Vertex 4805 -0.0320811 0.1577 -0.0118106 Vertex 4806 -0.0622483 0.0470201 0.00467011 Vertex 4807 -0.0708261 0.144835 -0.0182015 Vertex 4808 -0.0858362 0.103636 0.0243714 Vertex 4809 -0.0594926 0.112518 0.0361699 Vertex 4810 0.0160068 0.0347306 -0.00980024 Vertex 4811 -0.0735831 0.152654 -0.0328925 Vertex 4812 -0.028039 0.0849631 0.0475609 Vertex 4813 0.0250594 0.122946 0.0231962 Vertex 4814 -0.0226479 0.182963 -0.0190305 Vertex 4815 -0.0164761 0.0673645 0.0539812 Vertex 4816 0.00251006 0.102973 0.0437486 Vertex 4817 -0.00532834 0.0367049 -0.0158504 Vertex 4818 -0.00271812 0.0380275 0.0166967 Vertex 4819 -0.0239591 0.0958294 0.044594 Vertex 4820 0.0246691 0.103387 0.0411037 Vertex 4821 -0.066886 0.129814 0.0472408 Vertex 4822 0.0379525 0.0888235 0.0356698 Vertex 4823 -0.0599273 0.122373 -0.00867944 Vertex 4824 -0.0396922 0.156587 0.00568688 Vertex 4825 0.00623924 0.0754282 -0.0343629 Vertex 4826 -0.0557017 0.0693735 -0.0143448 Vertex 4827 -0.0668021 0.0909191 -0.0174744 Vertex 4828 -0.0274983 0.0932247 0.0447643 Vertex 4829 -0.0882804 0.103688 0.0163664 Vertex 4830 0.056791 0.0717301 0.0086079 Vertex 4831 -0.0303696 0.0486908 0.0439216 Vertex 4832 -0.0384968 0.104212 0.0394832 Vertex 4833 0.0144999 0.10985 0.0401157 Vertex 4834 -0.017747 0.0685932 -0.0381265 Vertex 4835 -0.0871174 0.110466 0.0103621 Vertex 4836 0.0210632 0.038679 -0.00769573 Vertex 4837 -0.0210545 0.100222 -0.024166 Vertex 4838 0.0522643 0.0732287 0.00987093 Vertex 4839 -0.013526 0.162053 -0.0127433 Vertex 4840 0.0363875 0.037641 0.0177175 Vertex 4841 -0.0688973 0.120914 -0.00896239 Vertex 4842 -0.0897054 0.124293 0.0455762 Vertex 4843 -0.0568794 0.0548721 0.000601057 Vertex 4844 -0.0151483 0.0405525 0.0515137 Vertex 4845 0.00751373 0.0869673 0.0561316 Vertex 4846 -0.0494259 0.144129 0.00171058 Vertex 4847 -0.00149557 0.0675596 0.0566557 Vertex 4848 -0.0147917 0.0951887 -0.0329173 Vertex 4849 0.00181081 0.131692 0.0146438 Vertex 4850 -0.0721444 0.145534 -0.0189034 Vertex 4851 -0.0897234 0.125377 0.0042981 Vertex 4852 0.0073096 0.0609801 -0.0307365 Vertex 4853 -0.032605 0.0408975 -0.030074 Vertex 4854 0.00619535 0.0866083 -0.0331365 Vertex 4855 -0.077632 0.077285 -0.00766199 Vertex 4856 -0.0565711 0.159859 0.00306588 Vertex 4857 0.0228849 0.0849076 0.049031 Vertex 4858 -0.0594261 0.151258 -0.000475846 Vertex 4859 0.0239769 0.0672243 0.0451455 Vertex 4860 -0.0625742 0.17727 -0.0581696 Vertex 4861 -0.0370838 0.0486029 -0.013278 Vertex 4862 -0.0728909 0.120866 -0.00826881 Vertex 4863 -0.0614985 0.0833224 0.0439406 Vertex 4864 -0.00849613 0.0703395 0.0565554 Vertex 4865 -0.0249633 0.0931679 0.047071 Vertex 4866 0.0241683 0.0795725 0.0490812 Vertex 4867 0.0124861 0.100431 0.0478938 Vertex 4868 0.0434944 0.0719976 -0.00179535 Vertex 4869 0.03264 0.0822319 0.0419892 Vertex 4870 -0.047302 0.16443 0.00497116 Vertex 4871 -0.0272685 0.0368017 0.0538626 Vertex 4872 -0.09118 0.143373 0.022161 Vertex 4873 0.0125362 0.127772 -0.00169738 Vertex 4874 0.00750963 0.0646928 0.0554932 Vertex 4875 0.0015066 0.0490028 0.0513272 Vertex 4876 -0.0456599 0.0636306 -0.0135866 Vertex 4877 -0.00762589 0.0451743 -0.028662 Vertex 4878 -0.060035 0.0645406 0.0315175 Vertex 4879 -0.0268076 0.0782799 -0.0366273 Vertex 4880 -0.0339024 0.123839 0.0236394 Vertex 4881 -0.0840365 0.147342 0.0364323 Vertex 4882 -0.0369545 0.0349347 0.0427177 Vertex 4883 -0.0816979 0.073476 0.0105355 Vertex 4884 -0.0488761 0.107007 -0.0192731 Vertex 4885 -0.00648958 0.0503786 0.0513549 Vertex 4886 0.0246298 0.0347052 0.0125163 Vertex 4887 0.0347555 0.0768972 -0.0157225 Vertex 4888 -0.0512658 0.0335234 0.00365116 Vertex 4889 -0.0655092 0.0986926 0.0420188 Vertex 4890 0.0192972 0.063662 -0.0278633 Vertex 4891 -0.0880478 0.0908955 0.0237752 Vertex 4892 0.0206219 0.119357 0.0335278 Vertex 4893 0.0203586 0.0565379 -0.0271575 Vertex 4894 -0.0864944 0.112209 0.0250023 Vertex 4895 0.0116939 0.0459283 0.0447695 Vertex 4896 -0.0422106 0.112435 -0.0169649 Vertex 4897 -0.0739382 0.132552 -0.00766265 Vertex 4898 -0.0641553 0.168532 -0.0413683 Vertex 4899 -0.057499 0.0889744 0.0446686 Vertex 4900 -0.0698809 0.100876 -0.0145572 Vertex 4901 0.056541 0.064854 0.0254614 Vertex 4902 -0.0184988 0.100234 0.0438197 Vertex 4903 -0.0133496 0.124356 0.0309811 Vertex 4904 0.0511798 0.0581784 0.029952 Vertex 4905 0.0196594 0.10025 -0.0221259 Vertex 4906 -0.0509437 0.0349503 0.0448676 Vertex 4907 0.0449905 0.0917771 0.0161555 Vertex 4908 -0.050433 0.0505709 0.0355945 Vertex 4909 -0.0759966 0.0994807 0.0369297 Vertex 4910 -0.0170398 0.124093 -0.00535053 Vertex 4911 -0.0568115 0.11798 -0.012657 Vertex 4912 0.0118497 0.0354401 0.0310392 Vertex 4913 -0.0191687 0.171226 -0.0215143 Vertex 4914 -0.052497 0.108432 0.038849 Vertex 4915 -0.0164973 0.0485745 0.0476342 Vertex 4916 -0.0869607 0.111738 0.00633151 Vertex 4917 0.0249549 0.0915796 0.0467751 Vertex 4918 -0.000687654 0.0583509 -0.0327859 Vertex 4919 -0.0446977 0.147484 -0.0025954 Vertex 4920 -0.0117585 0.0742488 -0.0381827 Vertex 4921 -0.0534956 0.0478266 0.0400304 Vertex 4922 0.021809 0.1242 0.000142479 Vertex 4923 -0.0809703 0.132422 -0.00393108 Vertex 4924 -0.0657091 0.157202 -0.00882727 Vertex 4925 -0.0559297 0.13815 0.0313829 Vertex 4926 -0.0298753 0.0537337 -0.0203803 Vertex 4927 -0.0469365 0.0404762 -0.0121149 Vertex 4928 -0.0699548 0.147947 -0.0321477 Vertex 4929 0.0114981 0.0658063 0.0534716 Vertex 4930 0.038544 0.0726461 0.034619 Vertex 4931 -0.0566015 0.0451895 0.0246815 Vertex 4932 0.00922562 0.0809438 -0.0326125 Vertex 4933 -0.069363 0.163799 -0.0509746 Vertex 4934 -0.00550326 0.0801395 0.0576107 Vertex 4935 -0.0732751 0.148715 -0.0303812 Vertex 4936 -0.0646081 0.0450546 0.000685836 Vertex 4937 -0.0435029 0.0832144 0.0426759 Vertex 4938 -0.0616232 0.148175 -0.003118 Vertex 4939 -0.0117867 0.0798822 -0.0383021 Vertex 4940 -0.0752763 0.0667216 0.0105318 Vertex 4941 -0.0697357 0.167099 -0.0218834 Vertex 4942 -0.00718079 0.0390105 -0.0127195 Vertex 4943 -0.0372876 0.0421099 0.0439093 Vertex 4944 -0.038606 0.0392918 -0.0284798 Vertex 4945 -0.0899141 0.140577 0.0142032 Vertex 4946 -0.0588327 0.0911696 -0.0205864 Vertex 4947 -0.006733 0.0684593 -0.0359965 Vertex 4948 0.0210931 0.0429808 -0.0187308 Vertex 4949 -0.0291817 0.0832547 -0.0346104 Vertex 4950 -0.0723024 0.111428 0.0467445 Vertex 4951 -0.032464 0.126152 0.0167563 Vertex 4952 -0.0732162 0.169408 -0.0460252 Vertex 4953 0.0420895 0.102851 0.00717012 Vertex 4954 -0.0745039 0.117561 0.0526615 Vertex 4955 -0.091603 0.144731 0.0191577 Vertex 4956 -0.0622964 0.150648 -0.0145762 Vertex 4957 -0.0582195 0.03947 0.0465299 Vertex 4958 -0.00392373 0.129832 0.00104637 Vertex 4959 0.0440424 0.0496996 0.0318585 Vertex 4960 -0.0618962 0.0443648 0.0286813 Vertex 4961 -0.0579061 0.0357757 0.046064 Vertex 4962 -0.0336295 0.0533957 -0.0102549 Vertex 4963 -0.0774663 0.168085 -0.0299733 Vertex 4964 -0.0775093 0.0961888 -0.0115304 Vertex 4965 -0.00674435 0.0340208 -0.0192827 Vertex 4966 -0.0594946 0.0959853 0.0440949 Vertex 4967 -0.0357813 0.0828042 -0.0224653 Vertex 4968 -0.0816886 0.154881 0.0175845 Vertex 4969 0.0109283 0.0616839 0.0526314 Vertex 4970 0.0139874 0.0924572 -0.0278842 Vertex 4971 0.0124994 0.0909598 0.0531045 Vertex 4972 -0.0334757 0.072353 -0.0224701 Vertex 4973 -0.0873971 0.140576 0.0399568 Vertex 4974 0.0420841 0.090131 -0.00780186 Vertex 4975 -0.0609826 0.13955 0.0346529 Vertex 4976 0.0207235 0.123161 0.0287274 Vertex 4977 0.0397983 0.0672171 0.0328832 Vertex 4978 -0.0528885 0.108408 -0.0187758 Vertex 4979 0.0130981 0.124462 0.0316831 Vertex 4980 -0.00533161 0.123249 -0.0106624 Vertex 4981 0.0288769 0.120252 0.0217702 Vertex 4982 -0.0341012 0.162237 -0.0142117 Vertex 4983 -0.0603223 0.0385556 0.0217181 Vertex 4984 -0.0489136 0.125469 0.0310273 Vertex 4985 0.0309186 0.094253 -0.0177648 Vertex 4986 -0.0284889 0.100156 0.0431683 Vertex 4987 -0.0608279 0.0910686 -0.0191968 Vertex 4988 0.0084218 0.0346373 0.0418695 Vertex 4989 0.0422139 0.06433 -0.00247442 Vertex 4990 0.0033475 0.0524625 -0.0299019 Vertex 4991 -0.0676215 0.0688155 -0.00772966 Vertex 4992 0.00227655 0.0655175 -0.0339267 Vertex 4993 -0.0168782 0.0351038 0.0503404 Vertex 4994 -0.0656404 0.0608118 0.00501538 Vertex 4995 -0.0488766 0.0663121 0.037594 Vertex 4996 0.0179771 0.0393777 0.0432522 Vertex 4997 -0.0470477 0.150201 -0.00445632 Vertex 4998 -0.0366211 0.124122 -0.00724685 Vertex 4999 -0.0628199 0.164682 -0.0345962 Vertex 5000 -0.070799 0.0908224 -0.0163205 Vertex 5001 -0.0289503 0.0931616 -0.025199 Vertex 5002 -0.01776 0.0714448 -0.0386564 Vertex 5003 -0.0617624 0.0810326 -0.0192317 Vertex 5004 -0.067492 0.0944588 0.0423306 Vertex 5005 -0.0270215 0.0563432 0.0375362 Vertex 5006 0.0564285 0.0727253 0.0143999 Vertex 5007 0.0202826 0.0693621 -0.0284085 Vertex 5008 -0.017803 0.0813337 -0.0391893 Vertex 5009 -0.0504951 0.0960175 0.0443724 Vertex 5010 0.00338055 0.0465728 -0.0280809 Vertex 5011 -0.0658345 0.0367656 0.0273328 Vertex 5012 -0.0399614 0.0343338 -0.0130933 Vertex 5013 -0.0325454 0.0624467 -0.016419 Vertex 5014 -0.0868004 0.0846768 0.00848321 Vertex 5015 -0.0506214 0.0416531 0.0455899 Vertex 5016 -0.0190668 0.12797 0.0127969 Vertex 5017 -0.0612579 0.167808 -0.0576007 Vertex 5018 0.0312054 0.104936 -0.0131412 Vertex 5019 -0.0151964 0.178666 -0.0203777 Vertex 5020 -0.0939252 0.118758 0.016301 Vertex 5021 0.0277468 0.0465681 -0.0107176 Vertex 5022 0.0109129 0.0833325 0.0545132 Vertex 5023 -0.0828306 0.150071 0.00319212 Vertex 5024 0.0414526 0.0425673 -0.000513932 Vertex 5025 -0.042494 0.0676556 0.0412962 Vertex 5026 -0.0404958 0.0478428 0.0400733 Vertex 5027 0.0173644 0.052219 -0.0267492 Vertex 5028 0.0325508 0.115423 -0.000329209 Vertex 5029 -0.0394659 0.108422 0.0377073 Vertex 5030 -0.0755105 0.151351 -0.0138965 Vertex 5031 -0.0130686 0.183424 -0.0252779 Vertex 5032 0.0435266 0.0664036 0.0265247 Vertex 5033 0.0109534 0.0475021 0.0472035 Vertex 5034 0.00923639 0.0753581 -0.0333366 Vertex 5035 -0.0787984 0.113337 -0.0032043 Vertex 5036 -0.041491 0.0832013 0.0425516 Vertex 5037 -0.0534903 0.102908 0.0413848 Vertex 5038 -0.060198 0.152175 0.0339452 Vertex 5039 -0.0140608 0.038299 0.0231793 Vertex 5040 -0.0668923 0.109473 -0.0126504 Vertex 5041 -0.0474794 0.0917467 0.0438194 Vertex 5042 0.0484981 0.0664872 0.0276228 Vertex 5043 -0.0865918 0.127084 0.0480364 Vertex 5044 0.00652975 0.0380351 0.0455331 Vertex 5045 -0.0763852 0.114637 0.0504008 Vertex 5046 -0.073748 0.0805288 0.0380979 Vertex 5047 -0.0560239 0.144237 -0.00161522 Vertex 5048 -0.055962 0.148162 0.0296522 Vertex 5049 -0.0709835 0.0353942 0.00988845 Vertex 5050 0.0252334 0.114772 -0.00969056 Vertex 5051 -0.0842824 0.0818436 0.0235004 Vertex 5052 -0.0564797 0.0356812 -0.0108166 Vertex 5053 -0.0162612 0.17862 -0.0260128 Vertex 5054 -0.0725184 0.128806 0.0519752 Vertex 5055 -0.0186162 0.0391183 0.0377018 Vertex 5056 -0.0285577 0.048864 -0.0238529 Vertex 5057 0.0465334 0.07646 0.0111853 Vertex 5058 -0.0615214 0.155998 0.0173864 Vertex 5059 -0.0925344 0.124191 0.0302708 Vertex 5060 -0.0334673 0.174268 -0.00177832 Vertex 5061 -0.0651404 0.112408 0.0390225 Vertex 5062 -0.0263231 0.034658 0.0434735 Vertex 5063 -0.0794788 0.13585 0.0504167 Vertex 5064 0.0170314 0.126681 0.0245104 Vertex 5065 -0.0488368 0.0970812 -0.0221898 Face 1 2451 1413 4071 Face 2 3649 1633 2995 Face 3 838 1321 1823 Face 4 28 3507 2067 Face 5 1321 838 2451 Face 6 3127 4309 2069 Face 7 4732 3598 689 Face 8 2363 1481 3 Face 9 2948 3 2054 Face 10 144 1544 968 Face 11 3840 10 3567 Face 12 4167 936 1031 Face 13 1965 3307 2546 Face 14 1857 3829 4190 Face 15 571 2904 4254 Face 16 1638 2303 10 Face 17 978 3759 3401 Face 18 3163 1009 3062 Face 19 3902 4738 1770 Face 20 4158 2450 2580 Face 21 3306 2415 194 Face 22 216 4779 3043 Face 23 1499 482 3742 Face 24 1908 4389 92 Face 25 4239 2617 275 Face 26 166 2984 1729 Face 27 1594 34 1049 Face 28 1824 954 1968 Face 29 2891 77 3776 Face 30 4028 1971 792 Face 31 1291 1163 1858 Face 32 1811 48 2321 Face 33 2468 5047 473 Face 34 2548 94 810 Face 35 3019 491 3926 Face 36 532 1464 4271 Face 37 2266 4872 4955 Face 38 3604 3378 4002 Face 39 947 1336 4021 Face 40 4025 2386 1192 Face 41 1343 3840 1123 Face 42 666 1293 4446 Face 43 4178 3105 154 Face 44 3382 2275 4798 Face 45 2650 497 2110 Face 46 1375 4783 4979 Face 47 824 2947 3791 Face 48 2400 2886 413 Face 49 343 2394 1776 Face 50 3328 1324 1130 Face 51 798 1117 3600 Face 52 3802 1250 2650 Face 53 2566 1670 514 Face 54 240 4116 620 Face 55 2795 2337 113 Face 56 2119 3987 821 Face 57 4528 1225 5058 Face 58 1103 3125 3385 Face 59 1283 2068 3299 Face 60 1608 4652 1046 Face 61 515 1790 3584 Face 62 410 3537 729 Face 63 1901 2778 730 Face 64 108 1893 3365 Face 65 3001 1941 231 Face 66 3616 479 758 Face 67 4226 1459 2731 Face 68 871 3101 1296 Face 69 2154 510 1519 Face 70 1908 92 2779 Face 71 3817 1985 800 Face 72 576 2724 1807 Face 73 2048 147 424 Face 74 2119 821 570 Face 75 2588 608 3124 Face 76 4585 1522 1215 Face 77 1876 307 4809 Face 78 4445 1688 2063 Face 79 2106 1847 3166 Face 80 4428 3545 309 Face 81 2897 1797 1702 Face 82 1584 1098 4681 Face 83 2078 4121 867 Face 84 470 4559 2573 Face 85 2323 65 2947 Face 86 2972 201 2605 Face 87 1564 824 3791 Face 88 4062 2585 1215 Face 89 1501 5044 735 Face 90 3448 4240 749 Face 91 112 2633 4479 Face 92 690 403 928 Face 93 1084 2586 72 Face 94 379 2340 3986 Face 95 1980 2071 19 Face 96 939 1484 3809 Face 97 1795 523 1339 Face 98 1556 81 4439 Face 99 1829 624 4864 Face 100 3792 1184 2658 Face 101 445 5021 3122 Face 102 83 1031 3356 Face 103 3231 4503 1314 Face 104 2397 4527 990 Face 105 2546 4888 536 Face 106 2432 1996 1412 Face 107 3295 1442 281 Face 108 685 1317 3316 Face 109 1546 3885 2912 Face 110 3607 3690 2064 Face 111 921 4632 656 Face 112 379 3986 4578 Face 113 238 4253 2748 Face 114 3573 1172 2062 Face 115 1655 1786 2961 Face 116 1587 3306 4530 Face 117 2816 4000 499 Face 118 3447 4649 4706 Face 119 130 2295 1550 Face 120 1719 2772 4579 Face 121 812 1706 3565 Face 122 812 286 4026 Face 123 4838 3279 2661 Face 124 787 1909 1746 Face 125 663 2459 56 Face 126 614 4039 1759 Face 127 857 1770 1572 Face 128 1950 3902 1770 Face 129 383 2768 4216 Face 130 1057 4697 629 Face 131 1589 153 3172 Face 132 2418 1755 1044 Face 133 163 4959 2503 Face 134 3756 3561 1728 Face 135 3045 4393 1643 Face 136 32 1136 4232 Face 137 2717 4152 141 Face 138 3292 1163 3369 Face 139 546 4252 3052 Face 140 1372 2149 1767 Face 141 1181 4422 3455 Face 142 4064 1739 2595 Face 143 3526 1128 1461 Face 144 4249 1522 4585 Face 145 3079 792 4020 Face 146 731 3558 2409 Face 147 2325 109 593 Face 148 3755 145 3178 Face 149 4985 2360 809 Face 150 1744 2587 620 Face 151 1523 3184 628 Face 152 411 2782 2012 Face 153 783 1141 3918 Face 154 178 4457 3638 Face 155 113 817 2795 Face 156 3313 521 817 Face 157 4235 1488 2694 Face 158 388 3388 4817 Face 159 929 4338 2241 Face 160 4166 573 712 Face 161 16 1393 1761 Face 162 2243 1546 114 Face 163 4113 1038 2941 Face 164 3109 1829 688 Face 165 2875 481 4811 Face 166 4179 1922 3564 Face 167 586 1569 2852 Face 168 4460 1392 1569 Face 169 3969 3101 1077 Face 170 3524 1451 2482 Face 171 3500 1654 181 Face 172 1291 4870 3719 Face 173 130 3997 2295 Face 174 3847 448 2537 Face 175 980 237 956 Face 176 1138 2779 92 Face 177 4371 2234 1188 Face 178 622 2427 3362 Face 179 3610 1910 4627 Face 180 2199 3531 2743 Face 181 1774 505 3662 Face 182 4061 215 1576 Face 183 2714 999 668 Face 184 2714 2586 999 Face 185 529 4959 2590 Face 186 2078 867 1676 Face 187 59 2123 1332 Face 188 2786 4813 98 Face 189 3343 2124 1433 Face 190 3845 3359 4918 Face 191 2804 837 3667 Face 192 3032 671 1232 Face 193 1529 101 1230 Face 194 2408 3549 879 Face 195 1852 134 610 Face 196 1571 3028 1226 Face 197 3506 689 4485 Face 198 3138 4288 3432 Face 199 550 2635 1922 Face 200 540 901 2624 Face 201 1869 732 3392 Face 202 1675 4802 4320 Face 203 2810 3485 298 Face 204 955 2433 1626 Face 205 4 3227 4066 Face 206 2112 2897 2013 Face 207 801 108 3365 Face 208 801 2808 3520 Face 209 78 1537 2804 Face 210 78 1925 3539 Face 211 3094 1911 597 Face 212 2839 2642 397 Face 213 1068 432 1775 Face 214 518 316 3286 Face 215 2316 3207 1964 Face 216 2577 3460 2837 Face 217 1671 2189 2259 Face 218 1331 2400 413 Face 219 356 875 4520 Face 220 2333 351 2985 Face 221 555 2001 3561 Face 222 866 4322 1288 Face 223 2560 4313 1053 Face 224 2066 707 230 Face 225 116 2669 3922 Face 226 3338 2557 4343 Face 227 1096 3378 4556 Face 228 3376 322 1427 Face 229 3420 4822 658 Face 230 279 2879 2967 Face 231 2515 497 2650 Face 232 2475 4302 120 Face 233 58 2368 2452 Face 234 4758 1276 2395 Face 235 3234 2204 2589 Face 236 226 3453 2204 Face 237 1158 4674 2325 Face 238 2402 3336 537 Face 239 2770 690 928 Face 240 447 3821 4500 Face 241 336 4303 1825 Face 242 61 552 2362 Face 243 3581 1076 2591 Face 244 4874 3566 1983 Face 245 956 237 4251 Face 246 3171 2284 331 Face 247 17 1164 2989 Face 248 1851 2623 3269 Face 249 3466 3267 856 Face 250 167 2399 1751 Face 251 1229 448 1018 Face 252 1086 131 2980 Face 253 1747 3574 986 Face 254 3465 3735 4945 Face 255 3095 2811 896 Face 256 1128 451 1461 Face 257 4585 1215 2585 Face 258 4705 4837 1014 Face 259 158 1391 3587 Face 260 3127 2620 3390 Face 261 685 4973 1317 Face 262 2090 879 3549 Face 263 4655 366 2140 Face 264 2513 1589 2276 Face 265 4016 531 1228 Face 266 212 3266 1450 Face 267 2554 523 1795 Face 268 2554 2548 953 Face 269 569 515 3584 Face 270 2033 858 1133 Face 271 2038 5019 2693 Face 272 780 69 2352 Face 273 46 2682 1078 Face 274 4838 2661 4349 Face 275 2025 1378 3347 Face 276 2025 2783 1378 Face 277 4378 3648 2997 Face 278 2196 3171 4100 Face 279 468 2161 4631 Face 280 1410 2424 145 Face 281 1423 3912 2556 Face 282 1076 3581 4414 Face 283 4068 2935 1094 Face 284 3645 424 147 Face 285 903 753 4241 Face 286 903 4410 753 Face 287 1848 3814 4804 Face 288 4666 1221 1660 Face 289 1527 3631 504 Face 290 2186 3103 618 Face 291 3628 2029 1620 Face 292 934 1115 2996 Face 293 3362 3870 622 Face 294 2252 3001 231 Face 295 3548 1526 3825 Face 296 3640 2300 253 Face 297 3376 1906 322 Face 298 533 1771 2543 Face 299 3503 769 4261 Face 300 3467 4154 923 Face 301 51 2728 788 Face 302 51 1923 2728 Face 303 1167 865 104 Face 304 2191 3768 611 Face 305 1363 271 2423 Face 306 643 1521 4434 Face 307 411 4713 2782 Face 308 3844 2668 922 Face 309 3496 4264 282 Face 310 2716 3694 1584 Face 311 15 2209 1046 Face 312 2981 1614 161 Face 313 842 162 4540 Face 314 1199 4080 1585 Face 315 1686 1779 4083 Face 316 3756 1728 3201 Face 317 4098 4715 1573 Face 318 3094 4149 4715 Face 319 906 165 1403 Face 320 906 3234 4733 Face 321 4238 166 1704 Face 322 4238 2984 166 Face 323 3315 926 2951 Face 324 1012 3367 2359 Face 325 881 3176 343 Face 326 881 4033 3176 Face 327 1397 169 3950 Face 328 5054 1663 3175 Face 329 4042 2170 2757 Face 330 1652 1182 1947 Face 331 3668 510 3049 Face 332 355 3009 3835 Face 333 193 1063 4826 Face 334 4843 167 1751 Face 335 2911 1259 570 Face 336 3476 4232 527 Face 337 1684 3535 1285 Face 338 2582 3088 1472 Face 339 3508 1747 986 Face 340 290 962 4456 Face 341 4363 2896 1167 Face 342 478 3687 2896 Face 343 538 2636 3857 Face 344 1462 178 3638 Face 345 1462 4954 490 Face 346 650 444 3739 Face 347 1725 2159 4265 Face 348 2494 180 1392 Face 349 2882 928 403 Face 350 1689 181 4177 Face 351 1689 3500 181 Face 352 1936 2949 3664 Face 353 71 2735 4901 Face 354 1497 1007 3976 Face 355 59 1332 2307 Face 356 1137 1378 2783 Face 357 3206 487 3743 Face 358 3112 914 508 Face 359 1341 459 592 Face 360 3102 3575 749 Face 361 554 3804 4661 Face 362 3062 2261 3163 Face 363 726 257 3412 Face 364 681 2929 4206 Face 365 1052 3853 2321 Face 366 3403 4495 602 Face 367 2107 2951 3852 Face 368 2308 3925 18 Face 369 1968 799 3914 Face 370 2700 326 385 Face 371 1838 2342 1434 Face 372 1766 439 998 Face 373 228 5022 2859 Face 374 1373 2213 3138 Face 375 1198 2107 3820 Face 376 1126 2438 1901 Face 377 754 3472 2529 Face 378 23 417 1066 Face 379 1900 4290 417 Face 380 1228 4846 3268 Face 381 2468 1615 4846 Face 382 2152 197 1189 Face 383 3271 314 3349 Face 384 1696 3632 3799 Face 385 692 1870 1452 Face 386 692 2099 1870 Face 387 2801 282 3683 Face 388 401 4300 2430 Face 389 1103 201 2972 Face 390 1103 3385 201 Face 391 67 2565 2338 Face 392 1749 2838 3592 Face 393 1334 203 4699 Face 394 2151 668 999 Face 395 1930 3811 592 Face 396 1303 1713 950 Face 397 131 4321 846 Face 398 2009 591 3404 Face 399 4777 1391 2436 Face 400 3090 1445 466 Face 401 2962 558 2058 Face 402 2698 3060 949 Face 403 4334 533 1380 Face 404 4334 2176 533 Face 405 3204 1544 144 Face 406 4663 577 3039 Face 407 1548 2115 3334 Face 408 830 2061 2608 Face 409 2845 609 1962 Face 410 21 3187 4481 Face 411 1617 2409 4388 Face 412 625 3990 4596 Face 413 1814 373 3374 Face 414 1846 1308 2317 Face 415 2707 3064 4788 Face 416 2994 2448 2930 Face 417 2365 3253 215 Face 418 4487 2808 801 Face 419 1274 4779 3784 Face 420 1664 3349 314 Face 421 1992 2382 3724 Face 422 4119 3335 963 Face 423 1368 2375 4311 Face 424 3748 1193 1722 Face 425 1024 2526 632 Face 426 2115 3741 3334 Face 427 1685 4045 3741 Face 428 2184 2870 244 Face 429 35 1080 4591 Face 430 1318 3917 4694 Face 431 3140 1848 886 Face 432 4592 2597 521 Face 433 4592 1085 1927 Face 434 1449 3434 1269 Face 435 888 3373 3252 Face 436 4117 3525 793 Face 437 1092 4522 4107 Face 438 2771 616 183 Face 439 2068 1283 226 Face 440 4210 227 2671 Face 441 1219 4669 1424 Face 442 2836 751 1955 Face 443 4292 3285 1282 Face 444 492 3698 1426 Face 445 1929 1005 2544 Face 446 3338 4502 1387 Face 447 3725 2066 230 Face 448 2010 691 2568 Face 449 1272 106 3311 Face 450 2989 1047 17 Face 451 4712 372 849 Face 452 3657 1180 2274 Face 453 627 3360 1306 Face 454 2630 4720 816 Face 455 1181 2968 455 Face 456 2999 1709 159 Face 457 1523 628 382 Face 458 4359 1906 1194 Face 459 3733 4787 773 Face 460 1236 2019 4757 Face 461 1257 3159 2019 Face 462 4803 1118 2046 Face 463 4130 989 4316 Face 464 2730 239 2464 Face 465 2381 145 2424 Face 466 2214 1359 364 Face 467 561 3020 3431 Face 468 3244 4274 3913 Face 469 353 1422 429 Face 470 112 4048 2633 Face 471 3563 4082 878 Face 472 4593 2750 3323 Face 473 1291 3719 4470 Face 474 4486 244 2870 Face 475 1273 912 3904 Face 476 3843 666 186 Face 477 3758 3118 2447 Face 478 673 1033 71 Face 479 4209 437 2148 Face 480 3891 4018 2203 Face 481 2324 2762 745 Face 482 2000 944 3358 Face 483 3727 1932 1355 Face 484 1084 1991 389 Face 485 4089 2844 2304 Face 486 3921 250 2141 Face 487 2403 1076 1958 Face 488 172 3978 1975 Face 489 1201 4443 251 Face 490 4954 5045 490 Face 491 790 3971 2550 Face 492 450 2446 1315 Face 493 2892 927 4773 Face 494 3175 254 2374 Face 495 3175 4821 254 Face 496 4388 255 3450 Face 497 4388 2914 255 Face 498 2364 377 1685 Face 499 2364 3463 377 Face 500 1361 257 1946 Face 501 2399 167 1768 Face 502 117 2150 4211 Face 503 848 1515 2150 Face 504 1265 1008 2018 Face 505 573 4166 3481 Face 506 1156 2004 2768 Face 507 4756 479 3823 Face 508 2746 4872 1233 Face 509 136 2408 1563 Face 510 4260 2133 671 Face 511 100 1907 4155 Face 512 2139 487 3881 Face 513 165 1491 3411 Face 514 1320 2140 366 Face 515 4833 2272 615 Face 516 2049 265 2529 Face 517 495 3851 1780 Face 518 4878 888 3252 Face 519 3886 1698 888 Face 520 3690 3976 2064 Face 521 4668 1453 3812 Face 522 1651 4110 4159 Face 523 901 1802 4480 Face 524 4963 1842 704 Face 525 4751 270 1095 Face 526 1454 1229 3303 Face 527 4503 2601 959 Face 528 1758 4096 2813 Face 529 1185 1331 1903 Face 530 4435 2809 642 Face 531 1383 3956 1986 Face 532 1121 3341 1641 Face 533 1276 274 4950 Face 534 2253 3874 887 Face 535 575 4942 1460 Face 536 1597 2579 4404 Face 537 2894 3390 2620 Face 538 145 4147 1410 Face 539 145 3755 2080 Face 540 2793 1879 4546 Face 541 4848 3167 880 Face 542 872 279 2967 Face 543 4339 2666 4582 Face 544 2103 4855 4223 Face 545 4991 4287 1665 Face 546 1239 281 3075 Face 547 2975 426 617 Face 548 2430 1287 2801 Face 549 1108 863 2104 Face 550 4312 283 3822 Face 551 2744 470 2573 Face 552 1919 4619 1360 Face 553 36 1599 1416 Face 554 1132 585 2863 Face 555 142 519 1417 Face 556 4202 2850 2224 Face 557 330 3423 1458 Face 558 1581 1282 1212 Face 559 3092 2536 4688 Face 560 1406 1069 4097 Face 561 3582 2172 2538 Face 562 2427 765 3362 Face 563 2427 1414 765 Face 564 77 581 3980 Face 565 1521 643 2353 Face 566 2188 4398 948 Face 567 1493 1644 291 Face 568 1088 1508 2715 Face 569 327 2636 4337 Face 570 719 952 2692 Face 571 719 4644 952 Face 572 1999 1223 4829 Face 573 807 1942 4796 Face 574 3790 2313 4353 Face 575 724 3098 3729 Face 576 1208 1270 3396 Face 577 4966 2704 1944 Face 578 4240 2857 1280 Face 579 932 2148 2857 Face 580 669 1623 260 Face 581 2468 473 298 Face 582 242 2865 112 Face 583 4560 1300 2421 Face 584 3095 3837 2811 Face 585 4293 33 1252 Face 586 486 4423 3858 Face 587 3919 2390 1568 Face 588 1070 4573 2161 Face 589 1070 4065 302 Face 590 2299 2579 4780 Face 591 1127 2105 1614 Face 592 1819 1159 2957 Face 593 577 305 2991 Face 594 577 4170 305 Face 595 4660 1010 3424 Face 596 4542 1812 1467 Face 597 398 4570 3023 Face 598 43 1015 1717 Face 599 219 2632 1024 Face 600 2655 1501 735 Face 601 5025 2156 621 Face 602 5025 4428 309 Face 603 1352 2213 3287 Face 604 1352 3138 2213 Face 605 2234 681 4924 Face 606 3996 188 681 Face 607 4142 2014 232 Face 608 2926 1305 3352 Face 609 4584 2383 1028 Face 610 747 314 3271 Face 611 1432 2122 314 Face 612 3783 315 564 Face 613 2449 3363 1104 Face 614 882 1976 3122 Face 615 128 4511 2228 Face 616 480 3398 1879 Face 617 3873 79 4013 Face 618 2739 318 1649 Face 619 4654 3109 688 Face 620 3273 560 1051 Face 621 815 4021 3387 Face 622 113 3313 817 Face 623 1864 3272 806 Face 624 1935 3504 2199 Face 625 2232 3746 1112 Face 626 798 1679 2485 Face 627 253 2300 4184 Face 628 3650 323 1446 Face 629 48 2886 323 Face 630 4856 1455 3311 Face 631 4079 2296 324 Face 632 1109 3114 2178 Face 633 4908 722 3114 Face 634 3406 3284 2613 Face 635 3406 1447 2248 Face 636 2553 1436 4912 Face 637 2553 1113 4341 Face 638 281 1330 3295 Face 639 281 3880 1330 Face 640 117 848 2150 Face 641 117 2261 2574 Face 642 4754 330 1458 Face 643 1721 3427 865 Face 644 1059 331 3405 Face 645 1059 4118 1833 Face 646 415 3422 4696 Face 647 1011 2088 566 Face 648 2724 3950 1807 Face 649 4881 2408 879 Face 650 3615 2572 506 Face 651 4128 424 2841 Face 652 4741 3592 3934 Face 653 4741 3093 3592 Face 654 2122 3010 919 Face 655 3310 3930 563 Face 656 13 4278 2311 Face 657 1725 444 2173 Face 658 4761 799 470 Face 659 971 1171 338 Face 660 2311 1411 13 Face 661 1560 540 2624 Face 662 2539 3198 3739 Face 663 3257 2343 1483 Face 664 2852 2551 586 Face 665 1488 2453 623 Face 666 1827 902 3608 Face 667 1335 3315 2963 Face 668 1335 926 3315 Face 669 236 2787 4787 Face 670 1539 3678 1906 Face 671 1567 3199 1045 Face 672 158 3895 2165 Face 673 3686 346 1653 Face 674 2965 5023 3095 Face 675 1043 1588 2924 Face 676 2034 654 4074 Face 677 1607 348 1173 Face 678 175 3887 1312 Face 679 569 942 515 Face 680 68 3999 942 Face 681 4224 2050 4840 Face 682 1152 3003 350 Face 683 3042 2375 1368 Face 684 70 2532 4304 Face 685 4462 352 651 Face 686 4462 1542 352 Face 687 5044 3212 735 Face 688 483 4029 2306 Face 689 2634 1158 2325 Face 690 2073 4218 3571 Face 691 4263 2133 4260 Face 692 981 356 2125 Face 693 218 3979 2333 Face 694 36 3353 1599 Face 695 4777 2436 4325 Face 696 2988 3865 151 Face 697 4630 790 2550 Face 698 3884 4746 693 Face 699 3884 1667 4746 Face 700 3545 360 309 Face 701 3281 2344 722 Face 702 161 1388 2981 Face 703 1901 2438 4040 Face 704 3765 779 466 Face 705 2015 1852 3061 Face 706 38 1178 1871 Face 707 2517 4734 1178 Face 708 3836 910 445 Face 709 160 3154 1822 Face 710 74 4740 2244 Face 711 3384 4112 1583 Face 712 992 743 1532 Face 713 4533 3643 743 Face 714 4696 3740 4217 Face 715 1367 114 636 Face 716 1881 4020 792 Face 717 2522 5040 1516 Face 718 47 2756 1802 Face 719 47 2169 2756 Face 720 1217 3895 158 Face 721 3088 4409 370 Face 722 204 535 4394 Face 723 204 2610 3805 Face 724 4448 4007 1547 Face 725 4183 107 3066 Face 726 2201 373 4135 Face 727 2201 4173 373 Face 728 225 2637 2138 Face 729 3073 3483 972 Face 730 2590 1779 2949 Face 731 3242 4083 1779 Face 732 4486 1595 3602 Face 733 3997 130 3611 Face 734 3110 377 755 Face 735 2825 346 4945 Face 736 4668 3018 3784 Face 737 1845 929 378 Face 738 1278 2710 4578 Face 739 702 3100 5059 Face 740 1397 4724 169 Face 741 40 3316 2773 Face 742 2745 501 1210 Face 743 4047 2660 1320 Face 744 235 3113 1692 Face 745 235 3763 3113 Face 746 3440 1623 669 Face 747 3440 3639 2135 Face 748 2917 3903 1262 Face 749 5007 440 1915 Face 750 1329 2922 326 Face 751 3862 1836 683 Face 752 2998 386 4025 Face 753 1172 1536 2386 Face 754 2185 3357 3551 Face 755 2185 3168 4254 Face 756 4038 388 2079 Face 757 4038 3620 388 Face 758 2193 389 4808 Face 759 4829 1223 389 Face 760 4287 2760 1574 Face 761 4287 649 2760 Face 762 1876 2683 307 Face 763 118 1096 4482 Face 764 4609 3214 1904 Face 765 208 819 2422 Face 766 1202 979 1552 Face 767 4778 712 3383 Face 768 4231 2074 970 Face 769 592 459 1625 Face 770 63 3861 1414 Face 771 5058 1225 4620 Face 772 3355 4659 5055 Face 773 110 682 2370 Face 774 1084 72 2314 Face 775 43 752 1308 Face 776 43 1717 752 Face 777 141 789 2717 Face 778 3408 505 1354 Face 779 1698 2652 266 Face 780 4401 3128 2519 Face 781 3193 1351 4373 Face 782 1672 4300 2659 Face 783 684 402 4488 Face 784 1959 509 2939 Face 785 1569 936 4167 Face 786 2102 3982 1200 Face 787 900 404 1974 Face 788 1902 2045 3205 Face 789 121 405 2673 Face 790 3863 1030 2368 Face 791 3906 1782 3650 Face 792 87 4461 4928 Face 793 2890 3815 1514 Face 794 2878 4801 3735 Face 795 3471 2741 3799 Face 796 3471 4242 2741 Face 797 3016 409 139 Face 798 1261 1010 3897 Face 799 1668 3444 775 Face 800 4281 858 2511 Face 801 4968 411 2012 Face 802 4968 1122 411 Face 803 4112 3944 365 Face 804 1622 3865 457 Face 805 2435 4375 960 Face 806 1903 1331 2392 Face 807 2230 414 4043 Face 808 3749 261 2746 Face 809 2145 4339 449 Face 810 2473 1945 4731 Face 811 37 1812 2753 Face 812 3153 215 4061 Face 813 1289 3081 5048 Face 814 1289 3647 3081 Face 815 4830 603 1995 Face 816 3626 1851 3269 Face 817 3011 938 4345 Face 818 2831 1730 5030 Face 819 2928 3912 1423 Face 820 1324 363 2040 Face 821 2335 1796 1273 Face 822 3344 796 3922 Face 823 3196 422 1470 Face 824 3256 231 1941 Face 825 3747 4182 3161 Face 826 103 2664 1969 Face 827 2083 1495 600 Face 828 579 1431 3572 Face 829 271 1363 2672 Face 830 4262 1456 3531 Face 831 1110 4087 1456 Face 832 668 4535 2714 Face 833 2263 4068 1094 Face 834 1439 3854 4508 Face 835 241 429 1422 Face 836 241 2192 429 Face 837 2613 759 191 Face 838 4342 3158 994 Face 839 3186 818 1425 Face 840 2805 2626 4156 Face 841 2481 432 1068 Face 842 1287 748 5010 Face 843 2687 4255 2006 Face 844 295 2913 3478 Face 845 1587 1789 828 Face 846 2869 1375 4979 Face 847 1413 3680 4071 Face 848 2328 2362 552 Face 849 4834 2962 3705 Face 850 4195 1676 867 Face 851 2608 1280 3096 Face 852 116 4436 3036 Face 853 2084 1835 5049 Face 854 1841 1134 1475 Face 855 913 1715 439 Face 856 240 2236 4116 Face 857 240 744 2236 Face 858 3754 1702 860 Face 859 1290 3393 1875 Face 860 2876 2096 770 Face 861 885 3396 1270 Face 862 1047 2982 1219 Face 863 232 2014 1251 Face 864 4265 444 1725 Face 865 1237 269 4259 Face 866 4376 1976 882 Face 867 717 1323 1284 Face 868 4684 923 3244 Face 869 1720 4261 769 Face 870 1244 1027 3010 Face 871 2593 568 447 Face 872 4751 1454 3303 Face 873 57 4075 1454 Face 874 1983 1168 4431 Face 875 279 872 4413 Face 876 1954 1347 3172 Face 877 1954 4775 1347 Face 878 2978 451 4136 Face 879 2978 3564 451 Face 880 4475 4943 534 Face 881 3622 632 2526 Face 882 4175 3053 971 Face 883 4175 787 1746 Face 884 1502 3097 1873 Face 885 35 4591 1390 Face 886 3350 1332 2123 Face 887 2549 2137 3429 Face 888 1177 456 3231 Face 889 797 4454 1477 Face 890 1278 4637 2710 Face 891 412 4614 2960 Face 892 2670 1448 4491 Face 893 351 2333 1892 Face 894 1254 4317 2442 Face 895 86 2005 3442 Face 896 2489 1787 4450 Face 897 1816 2288 460 Face 898 2734 4506 1887 Face 899 340 889 4941 Face 900 827 462 2127 Face 901 827 1727 462 Face 902 2542 4760 554 Face 903 4446 1293 3533 Face 904 1860 4252 546 Face 905 1268 761 2594 Face 906 1296 4095 871 Face 907 251 4443 2428 Face 908 3908 3148 779 Face 909 841 5050 3148 Face 910 4737 467 4589 Face 911 1646 915 2709 Face 912 2779 3842 1908 Face 913 3451 1639 468 Face 914 3535 4723 1285 Face 915 2769 174 1694 Face 916 1968 470 799 Face 917 1968 4108 470 Face 918 3867 3030 1376 Face 919 226 2204 471 Face 920 189 3400 1012 Face 921 189 1982 4936 Face 922 1540 1052 4104 Face 923 2100 1626 2810 Face 924 2361 3068 1743 Face 925 4391 1041 2222 Face 926 449 3589 2227 Face 927 4582 1036 3589 Face 928 4156 3547 2805 Face 929 431 1468 2229 Face 930 3772 2576 202 Face 931 3028 1571 3711 Face 932 104 4363 1167 Face 933 104 1006 4363 Face 934 1318 2761 4382 Face 935 1318 4694 3744 Face 936 3012 4340 2015 Face 937 174 2769 1409 Face 938 3665 481 2875 Face 939 3318 406 2509 Face 940 2684 800 1985 Face 941 1061 398 2830 Face 942 907 2441 2306 Face 943 4996 4034 1757 Face 944 3465 3017 1695 Face 945 346 3686 3017 Face 946 440 4890 1915 Face 947 2018 3361 1359 Face 948 4600 1401 601 Face 949 4063 1568 486 Face 950 3411 1710 2139 Face 951 739 66 1855 Face 952 1608 488 3047 Face 953 1608 1032 488 Face 954 89 2482 4037 Face 955 3732 1296 489 Face 956 2851 2395 1276 Face 957 2851 1462 490 Face 958 3076 491 4672 Face 959 3076 1966 491 Face 960 72 3133 2314 Face 961 72 1697 3133 Face 962 380 1240 946 Face 963 380 3522 1240 Face 964 2501 494 3222 Face 965 2501 3368 494 Face 966 1126 4873 4134 Face 967 1126 1901 730 Face 968 2343 889 1483 Face 969 704 1842 3722 Face 970 120 4564 2475 Face 971 1655 2961 3228 Face 972 2994 1496 4344 Face 973 2994 2930 1496 Face 974 2356 499 4000 Face 975 159 1709 4554 Face 976 2380 500 2117 Face 977 2380 4328 500 Face 978 2142 1320 366 Face 979 998 439 1715 Face 980 853 4399 1867 Face 981 3994 607 1853 Face 982 3959 1854 2517 Face 983 3173 4700 1854 Face 984 3435 1719 1384 Face 985 3435 2772 1719 Face 986 95 505 1774 Face 987 95 1354 505 Face 988 4072 506 1643 Face 989 2016 404 900 Face 990 4704 561 3431 Face 991 2194 4636 862 Face 992 4160 1257 2019 Face 993 92 2372 1805 Face 994 3886 2484 1698 Face 995 39 2939 3492 Face 996 2156 1149 3929 Face 997 2156 3143 1149 Face 998 4627 511 1253 Face 999 3830 1787 2202 Face 1000 1315 3443 450 Face 1001 3414 2073 1524 Face 1002 905 3274 3334 Face 1003 220 1267 2528 Face 1004 4868 514 2938 Face 1005 4571 3241 906 Face 1006 2971 4961 942 Face 1007 2578 1790 515 Face 1008 243 516 3245 Face 1009 2508 930 2198 Face 1010 4900 4035 984 Face 1011 3954 831 2181 Face 1012 1206 718 282 Face 1013 1206 3692 718 Face 1014 2639 2001 2824 Face 1015 1909 787 1078 Face 1016 3628 2722 1139 Face 1017 2350 414 3294 Face 1018 3727 960 1932 Face 1019 2583 1952 4823 Face 1020 3008 1862 1518 Face 1021 4673 3738 522 Face 1022 3430 523 2388 Face 1023 1666 745 2762 Face 1024 2483 3330 2095 Face 1025 2483 970 4711 Face 1026 3377 2462 1364 Face 1027 2097 1593 525 Face 1028 2003 3619 809 Face 1029 31 2925 3619 Face 1030 5014 4023 1435 Face 1031 1094 3907 805 Face 1032 3706 728 1588 Face 1033 1618 2456 4552 Face 1034 4904 2949 1936 Face 1035 2461 4959 529 Face 1036 3458 705 1353 Face 1037 3516 2649 4176 Face 1038 2719 944 2000 Face 1039 3853 2558 835 Face 1040 1881 664 4978 Face 1041 1881 792 1971 Face 1042 4395 941 4609 Face 1043 4395 1771 941 Face 1044 2993 534 78 Face 1045 4557 961 534 Face 1046 3566 4929 279 Face 1047 4501 3342 1682 Face 1048 902 536 4247 Face 1049 902 1555 536 Face 1050 250 820 2141 Face 1051 250 3183 820 Face 1052 2868 538 3857 Face 1053 968 387 4139 Face 1054 1444 2965 484 Face 1055 3623 261 1016 Face 1056 3004 540 1560 Face 1057 2169 47 4105 Face 1058 22 2020 1248 Face 1059 22 1121 2020 Face 1060 192 542 3339 Face 1061 3878 3456 2155 Face 1062 4285 890 1740 Face 1063 2144 4194 2803 Face 1064 4190 544 4191 Face 1065 2072 2984 544 Face 1066 197 3192 1189 Face 1067 249 1002 3618 Face 1068 249 3000 546 Face 1069 4566 2663 734 Face 1070 1884 4649 547 Face 1071 1747 3345 3574 Face 1072 175 1312 2349 Face 1073 2517 2245 3959 Face 1074 2598 3315 2951 Face 1075 42 550 1922 Face 1076 42 1839 550 Face 1077 3250 3942 1912 Face 1078 4354 798 2485 Face 1079 2838 1963 3592 Face 1080 3486 833 2651 Face 1081 4821 553 2380 Face 1082 121 2673 803 Face 1083 1440 554 4760 Face 1084 1305 25 3421 Face 1085 3230 555 931 Face 1086 3230 3925 1190 Face 1087 420 793 3948 Face 1088 420 1678 793 Face 1089 3454 4096 1179 Face 1090 2032 670 1474 Face 1091 4834 558 2962 Face 1092 5008 3343 1662 Face 1093 2763 1134 1841 Face 1094 2763 2171 4335 Face 1095 1055 3464 599 Face 1096 2354 2826 1275 Face 1097 1068 2862 4636 Face 1098 2826 4606 1657 Face 1099 2323 2972 65 Face 1100 300 1681 2903 Face 1101 1399 1592 4730 Face 1102 1918 4776 909 Face 1103 1365 3394 1850 Face 1104 2506 85 564 Face 1105 3985 927 2892 Face 1106 3042 1368 1754 Face 1107 654 3055 4728 Face 1108 2134 192 1507 Face 1109 98 567 2786 Face 1110 3630 1789 1199 Face 1111 1432 2022 3162 Face 1112 4097 1069 3849 Face 1113 1844 1515 329 Face 1114 68 942 2898 Face 1115 4518 570 1259 Face 1116 4518 1001 2440 Face 1117 3747 4793 2533 Face 1118 3747 873 571 Face 1119 356 2357 875 Face 1120 356 981 2357 Face 1121 3782 744 240 Face 1122 393 712 573 Face 1123 4327 4183 3066 Face 1124 2023 470 4108 Face 1125 4523 575 1460 Face 1126 1452 199 2815 Face 1127 1900 721 2108 Face 1128 1230 2724 576 Face 1129 3507 4185 2067 Face 1130 1220 3039 577 Face 1131 1162 2331 785 Face 1132 1493 291 4602 Face 1133 1742 670 3277 Face 1134 3570 4070 2098 Face 1135 4525 1136 32 Face 1136 733 1238 3002 Face 1137 1530 3065 643 Face 1138 4537 986 3764 Face 1139 3693 3392 732 Face 1140 4397 2746 1233 Face 1141 2952 3348 583 Face 1142 650 2208 2803 Face 1143 4999 311 3265 Face 1144 285 3644 1132 Face 1145 1995 603 4349 Face 1146 2767 5012 2072 Face 1147 4460 1569 586 Face 1148 1275 782 2354 Face 1149 4639 3418 1895 Face 1150 3158 4544 1724 Face 1151 242 708 4143 Face 1152 1954 2532 70 Face 1153 153 1589 2513 Face 1154 2704 590 1944 Face 1155 3314 1745 1194 Face 1156 1533 591 3345 Face 1157 1533 2113 591 Face 1158 1389 1736 1107 Face 1159 2192 241 1736 Face 1160 3580 1189 3192 Face 1161 259 594 4420 Face 1162 1831 1279 2028 Face 1163 1718 4765 3971 Face 1164 892 2932 4765 Face 1165 5019 2077 2693 Face 1166 5019 1654 2077 Face 1167 1170 597 4046 Face 1168 997 580 2294 Face 1169 3437 3215 506 Face 1170 2420 2935 598 Face 1171 991 599 2510 Face 1172 1430 2802 3518 Face 1173 2211 5003 1495 Face 1174 785 2860 1092 Face 1175 53 601 1401 Face 1176 1253 3399 2047 Face 1177 3847 1018 448 Face 1178 257 1361 2726 Face 1179 3269 603 4830 Face 1180 418 1737 603 Face 1181 4542 604 1812 Face 1182 3016 139 2030 Face 1183 3204 605 4541 Face 1184 1025 3342 4501 Face 1185 1930 898 3342 Face 1186 324 2727 4079 Face 1187 324 1853 4727 Face 1188 4099 1006 104 Face 1189 339 3124 4473 Face 1190 864 2924 1588 Face 1191 204 4394 3553 Face 1192 3559 1131 4905 Face 1193 362 1852 4468 Face 1194 3540 611 3768 Face 1195 2286 3509 611 Face 1196 273 3982 2102 Face 1197 4927 2394 1245 Face 1198 1334 4710 203 Face 1199 1506 4521 951 Face 1200 1429 1333 2332 Face 1201 3981 3332 2918 Face 1202 1981 875 2357 Face 1203 2660 727 4493 Face 1204 3867 3696 2068 Face 1205 3867 1376 3696 Face 1206 328 2170 4006 Face 1207 328 4146 2487 Face 1208 871 4610 3101 Face 1209 3631 3238 4598 Face 1210 3643 1992 743 Face 1211 3643 2622 1992 Face 1212 2695 2802 1430 Face 1213 2220 3098 724 Face 1214 100 4726 1907 Face 1215 2702 1716 3142 Face 1216 1913 2433 955 Face 1217 4528 2427 622 Face 1218 2079 2671 4038 Face 1219 341 3377 1953 Face 1220 1600 1326 3777 Face 1221 4815 237 980 Face 1222 3363 625 4596 Face 1223 27 2201 625 Face 1224 3276 4283 62 Face 1225 194 2415 4077 Face 1226 87 627 3579 Face 1227 2258 4205 627 Face 1228 2885 628 1016 Face 1229 2885 3646 628 Face 1230 4709 3256 1941 Face 1231 4709 2840 629 Face 1232 1603 2772 91 Face 1233 3114 722 2344 Face 1234 101 1989 1090 Face 1235 101 1529 3354 Face 1236 219 632 2167 Face 1237 219 1024 632 Face 1238 125 2812 1777 Face 1239 1406 4812 633 Face 1240 4438 634 2550 Face 1241 3389 2395 5045 Face 1242 1442 3075 281 Face 1243 803 2288 3877 Face 1244 1841 913 2763 Face 1245 367 3716 636 Face 1246 3135 2110 497 Face 1247 3556 486 1568 Face 1248 134 2091 610 Face 1249 2396 1712 4451 Face 1250 4941 3170 340 Face 1251 3860 1939 639 Face 1252 310 2120 4700 Face 1253 310 4513 1961 Face 1254 3462 4835 3063 Face 1255 1463 1634 4084 Face 1256 2947 4306 2323 Face 1257 272 2856 1998 Face 1258 3152 3068 2361 Face 1259 3152 1530 643 Face 1260 2274 4369 3657 Face 1261 133 2059 2877 Face 1262 59 645 2123 Face 1263 1497 2807 1987 Face 1264 243 2508 516 Face 1265 2750 4593 1437 Face 1266 2788 4317 4196 Face 1267 2788 2442 4317 Face 1268 1024 2358 452 Face 1269 4782 769 2534 Face 1270 2901 1886 1665 Face 1271 147 2048 3351 Face 1272 5017 4194 2144 Face 1273 1309 4860 3208 Face 1274 313 3409 1757 Face 1275 313 1028 2419 Face 1276 1638 652 4988 Face 1277 25 1305 2926 Face 1278 2817 1327 3655 Face 1279 1402 587 1940 Face 1280 894 2377 4869 Face 1281 1594 1049 3456 Face 1282 4170 1548 3334 Face 1283 51 788 3986 Face 1284 2932 1763 595 Face 1285 4310 921 2405 Face 1286 2283 1531 2788 Face 1287 371 3883 1531 Face 1288 4670 1181 3429 Face 1289 2118 3420 658 Face 1290 7 659 1412 Face 1291 1048 1203 4425 Face 1292 3771 3957 660 Face 1293 4681 661 2858 Face 1294 3206 3743 661 Face 1295 1861 2388 2944 Face 1296 1861 1484 662 Face 1297 2153 2596 56 Face 1298 126 2651 1000 Face 1299 4884 3609 1658 Face 1300 4884 1545 664 Face 1301 99 2541 1753 Face 1302 99 3273 1051 Face 1303 3949 666 4224 Face 1304 3949 1293 666 Face 1305 921 667 3384 Face 1306 4614 412 2163 Face 1307 1400 1129 1687 Face 1308 4003 2927 1129 Face 1309 52 2322 4919 Face 1310 3554 4180 2322 Face 1311 2098 670 3570 Face 1312 579 1477 4454 Face 1313 288 2934 1977 Face 1314 1069 125 2538 Face 1315 4861 672 1329 Face 1316 3284 3406 2248 Face 1317 182 2863 585 Face 1318 182 5042 3915 Face 1319 4384 1204 4859 Face 1320 347 1093 674 Face 1321 2583 4024 1952 Face 1322 2583 3513 675 Face 1323 251 4442 1201 Face 1324 251 4126 4442 Face 1325 4570 1809 2177 Face 1326 4570 4914 1809 Face 1327 1808 1208 3117 Face 1328 1420 1096 2455 Face 1329 3225 997 2294 Face 1330 2864 1693 679 Face 1331 3131 2982 4810 Face 1332 443 3555 1705 Face 1333 311 1939 4206 Face 1334 311 639 1939 Face 1335 4484 2410 2282 Face 1336 397 2642 4795 Face 1337 1611 2827 1979 Face 1338 4962 124 683 Face 1339 3869 4359 1194 Face 1340 154 3105 3591 Face 1341 40 685 3316 Face 1342 40 2249 685 Face 1343 1977 2564 288 Face 1344 3451 4739 1350 Face 1345 2539 687 3198 Face 1346 2539 2923 687 Face 1347 1878 2792 4512 Face 1348 318 4847 2792 Face 1349 4350 3525 3165 Face 1350 5065 4732 689 Face 1351 1489 2577 2837 Face 1352 2416 3260 4419 Face 1353 4141 691 1455 Face 1354 4141 2568 691 Face 1355 4100 1833 105 Face 1356 331 1059 1833 Face 1357 1610 2690 2157 Face 1358 1610 5061 693 Face 1359 103 4755 2664 Face 1360 4117 793 1678 Face 1361 3488 695 4253 Face 1362 4848 880 1684 Face 1363 1390 4041 35 Face 1364 454 3077 1558 Face 1365 4720 697 4221 Face 1366 4540 162 4466 Face 1367 10 698 2021 Face 1368 3921 1071 4165 Face 1369 4790 4203 2823 Face 1370 55 3621 1580 Face 1371 3871 2492 1629 Face 1372 966 701 4270 Face 1373 1619 719 2692 Face 1374 2960 4637 412 Face 1375 2029 3628 1139 Face 1376 4274 1150 3913 Face 1377 1471 914 3112 Face 1378 269 957 1756 Face 1379 269 2215 957 Face 1380 2905 705 2649 Face 1381 2905 1353 705 Face 1382 5036 3600 1117 Face 1383 5036 3798 706 Face 1384 2082 707 2066 Face 1385 2320 1641 2797 Face 1386 112 708 242 Face 1387 2225 386 3439 Face 1388 920 2569 507 Face 1389 560 895 4472 Face 1390 4934 1282 3285 Face 1391 4934 1212 1282 Face 1392 283 2488 856 Face 1393 283 1520 2488 Face 1394 3018 1274 3784 Face 1395 378 929 2740 Face 1396 415 4693 1945 Face 1397 4217 559 3473 Face 1398 507 1246 3845 Face 1399 3301 1657 1246 Face 1400 4308 2755 1208 Face 1401 1427 322 2755 Face 1402 3091 2312 3108 Face 1403 1602 3335 4119 Face 1404 1346 3416 128 Face 1405 316 518 2070 Face 1406 518 4948 2070 Face 1407 2287 1351 1815 Face 1408 2207 3802 2798 Face 1409 2207 1250 3802 Face 1410 238 4316 1662 Face 1411 238 2748 720 Face 1412 576 1042 4516 Face 1413 2374 4703 1042 Face 1414 360 722 2681 Face 1415 360 3281 722 Face 1416 4190 3833 544 Face 1417 4361 3790 1744 Face 1418 4361 2220 724 Face 1419 86 2679 2005 Face 1420 4874 3972 2679 Face 1421 376 4213 3435 Face 1422 1946 257 726 Face 1423 4691 2745 3624 Face 1424 4691 3890 727 Face 1425 4930 728 2384 Face 1426 1058 1890 1166 Face 1427 4908 1633 3649 Face 1428 4591 1080 2688 Face 1429 1599 1960 1416 Face 1430 4873 1126 730 Face 1431 1617 4314 2409 Face 1432 1617 2686 4314 Face 1433 2867 732 1869 Face 1434 2867 4818 732 Face 1435 2147 1738 2675 Face 1436 1211 772 2465 Face 1437 2111 3861 63 Face 1438 1525 5038 1066 Face 1439 4374 3467 1957 Face 1440 4374 4163 735 Face 1441 2305 2921 2083 Face 1442 193 4826 736 Face 1443 1362 1924 3302 Face 1444 2513 217 1924 Face 1445 3137 738 3607 Face 1446 2182 3018 2218 Face 1447 4494 739 2680 Face 1448 4494 1491 4244 Face 1449 157 2169 3291 Face 1450 3509 2286 3157 Face 1451 2799 741 1242 Face 1452 2799 3199 3957 Face 1453 1099 742 3337 Face 1454 1651 536 1555 Face 1455 366 3724 2382 Face 1456 366 4655 3724 Face 1457 2718 2089 1943 Face 1458 1381 1008 4164 Face 1459 247 2781 2969 Face 1460 3424 3072 2781 Face 1461 4814 746 1386 Face 1462 422 2994 746 Face 1463 198 2562 1406 Face 1464 198 4346 2562 Face 1465 2205 748 3563 Face 1466 2205 1415 748 Face 1467 1101 1280 2608 Face 1468 1962 651 749 Face 1469 165 4618 1491 Face 1470 165 906 4733 Face 1471 2226 3092 710 Face 1472 228 2859 1100 Face 1473 2906 1905 3459 Face 1474 3734 565 1184 Face 1475 1037 2260 1703 Face 1476 1724 2853 2260 Face 1477 4958 754 2529 Face 1478 3776 77 2164 Face 1479 4548 1438 3294 Face 1480 1612 583 2219 Face 1481 557 897 3134 Face 1482 557 2567 897 Face 1483 2890 757 1267 Face 1484 2890 1677 757 Face 1485 3153 3641 215 Face 1486 37 2753 3086 Face 1487 3911 759 2613 Face 1488 4944 3185 2043 Face 1489 458 1917 1295 Face 1490 4986 3601 1917 Face 1491 3298 761 2163 Face 1492 3298 4637 1278 Face 1493 1010 4666 1660 Face 1494 306 2038 2693 Face 1495 3191 1398 905 Face 1496 3191 2075 1398 Face 1497 160 2247 3154 Face 1498 160 4747 2247 Face 1499 3146 3803 3050 Face 1500 4870 1291 1858 Face 1501 4434 1743 3068 Face 1502 4286 271 2672 Face 1503 284 2264 2976 Face 1504 284 3552 767 Face 1505 213 4686 1897 Face 1506 2367 1814 4686 Face 1507 3875 769 4782 Face 1508 3875 1720 769 Face 1509 1679 1297 715 Face 1510 1679 798 2759 Face 1511 2752 1649 318 Face 1512 394 4539 1649 Face 1513 164 2970 4236 Face 1514 4001 2465 2970 Face 1515 4200 1311 3942 Face 1516 1888 2599 1311 Face 1517 1720 1476 4261 Face 1518 155 4915 3502 Face 1519 2606 775 1080 Face 1520 1502 258 1790 Face 1521 1356 3309 392 Face 1522 4098 1573 5046 Face 1523 2479 777 4453 Face 1524 2479 4567 777 Face 1525 2592 3084 503 Face 1526 363 1324 2371 Face 1527 1131 1510 3040 Face 1528 610 2091 3627 Face 1529 95 4683 1354 Face 1530 1576 215 3253 Face 1531 1749 2459 663 Face 1532 477 3438 1647 Face 1533 3903 1895 3418 Face 1534 3903 2917 1895 Face 1535 4562 783 2489 Face 1536 4562 3516 783 Face 1537 1299 2491 2820 Face 1538 3262 2067 4767 Face 1539 2211 785 1092 Face 1540 2211 4128 785 Face 1541 4507 1505 566 Face 1542 1486 894 786 Face 1543 3626 787 1851 Face 1544 4736 1078 787 Face 1545 2279 788 2728 Face 1546 2279 1278 4578 Face 1547 399 2835 1081 Face 1548 399 3196 1470 Face 1549 58 3992 1301 Face 1550 58 2452 1517 Face 1551 637 3613 1846 Face 1552 637 1859 3613 Face 1553 2575 792 3079 Face 1554 2575 4028 792 Face 1555 556 2676 4531 Face 1556 2849 699 1865 Face 1557 2492 794 4148 Face 1558 4553 1513 2893 Face 1559 355 795 3582 Face 1560 355 3280 795 Face 1561 116 796 4436 Face 1562 116 3922 796 Face 1563 2977 797 1477 Face 1564 1758 2813 797 Face 1565 1482 798 3600 Face 1566 1482 2759 798 Face 1567 3697 2855 1528 Face 1568 453 1498 2855 Face 1569 482 2830 4220 Face 1570 482 1499 800 Face 1571 3195 801 3365 Face 1572 3195 4487 801 Face 1573 1575 3202 626 Face 1574 361 4981 802 Face 1575 2806 803 3877 Face 1576 2806 121 803 Face 1577 96 804 3087 Face 1578 96 1643 4393 Face 1579 3006 805 1534 Face 1580 3386 1094 805 Face 1581 4592 2555 1085 Face 1582 4385 1864 5035 Face 1583 203 3063 1966 Face 1584 203 4710 3063 Face 1585 3326 1570 622 Face 1586 20 562 808 Face 1587 1561 809 2360 Face 1588 1102 216 3043 Face 1589 3504 810 2199 Face 1590 2093 2548 810 Face 1591 2551 1729 977 Face 1592 3788 4295 1157 Face 1593 4963 2945 1842 Face 1594 369 1659 3129 Face 1595 1535 813 97 Face 1596 1535 2121 3533 Face 1597 2536 2443 4688 Face 1598 16 1761 2443 Face 1599 3964 1262 587 Face 1600 24 2500 3827 Face 1601 1367 2243 114 Face 1602 1049 1235 3637 Face 1603 4201 817 521 Face 1604 3991 3174 1516 Face 1605 2229 3547 431 Face 1606 4074 654 4728 Face 1607 2749 3618 1002 Face 1608 4088 1627 1640 Face 1609 2332 4972 1429 Face 1610 5013 1611 1979 Face 1611 32 2275 4525 Face 1612 32 2057 2275 Face 1613 1704 4191 544 Face 1614 3160 1597 3661 Face 1615 524 823 3026 Face 1616 4430 1389 3144 Face 1617 4667 3796 1446 Face 1618 2400 3677 824 Face 1619 2963 2581 1335 Face 1620 273 4347 2581 Face 1621 2406 4886 441 Face 1622 270 2691 2127 Face 1623 2158 1428 3953 Face 1624 5064 828 1789 Face 1625 5064 2415 828 Face 1626 3598 4485 689 Face 1627 4702 766 3007 Face 1628 4977 2866 4930 Face 1629 4977 2061 2866 Face 1630 3174 3762 1516 Face 1631 3174 2180 3762 Face 1632 91 832 1603 Face 1633 91 2689 832 Face 1634 207 833 4534 Face 1635 3397 3395 833 Face 1636 2269 911 2580 Face 1637 531 2776 1228 Face 1638 531 3577 2776 Face 1639 215 836 2365 Face 1640 215 3641 836 Face 1641 3107 4065 1070 Face 1642 2385 987 3668 Face 1643 8 2612 1582 Face 1644 3337 742 2916 Face 1645 433 839 1345 Face 1646 1778 1227 2910 Face 1647 566 4866 1011 Face 1648 566 1505 4123 Face 1649 206 2397 990 Face 1650 3651 1919 1360 Face 1651 3346 3237 4540 Face 1652 567 98 4717 Face 1653 2250 1145 3355 Face 1654 4215 844 2374 Face 1655 2920 2053 844 Face 1656 3261 845 4770 Face 1657 2557 3338 1996 Face 1658 497 4150 3135 Face 1659 1313 5016 4150 Face 1660 4415 1522 4249 Face 1661 4104 1052 2321 Face 1662 4524 2574 5011 Face 1663 329 1515 848 Face 1664 2897 849 4256 Face 1665 2897 3909 849 Face 1666 3044 1498 453 Face 1667 3044 1190 850 Face 1668 1601 4997 2322 Face 1669 1601 2638 3898 Face 1670 3821 1606 1478 Face 1671 2022 198 1606 Face 1672 19 4233 1867 Face 1673 19 2071 4233 Face 1674 1769 3729 1231 Face 1675 1769 724 3729 Face 1676 2236 2507 4553 Face 1677 2236 744 2507 Face 1678 1710 856 3267 Face 1679 1710 263 2680 Face 1680 9 857 1572 Face 1681 239 1605 1504 Face 1682 2993 78 3539 Face 1683 4054 1298 4933 Face 1684 2561 233 859 Face 1685 372 4256 849 Face 1686 4007 1125 2653 Face 1687 2080 4147 145 Face 1688 2828 1476 861 Face 1689 561 2862 1951 Face 1690 561 4704 862 Face 1691 1051 2541 99 Face 1692 2277 3359 2237 Face 1693 1494 1260 1204 Face 1694 1494 1723 1260 Face 1695 2712 4933 1298 Face 1696 2712 1721 865 Face 1697 18 866 2308 Face 1698 18 931 1686 Face 1699 122 4326 2281 Face 1700 122 3279 1195 Face 1701 223 3297 1153 Face 1702 1927 1085 4629 Face 1703 3501 4786 548 Face 1704 212 1450 2056 Face 1705 2905 2217 1353 Face 1706 3884 693 3457 Face 1707 2295 871 1550 Face 1708 150 1830 871 Face 1709 2175 1609 2584 Face 1710 1175 2751 1609 Face 1711 441 3161 4182 Face 1712 441 2514 3161 Face 1713 4340 874 2015 Face 1714 480 2582 1472 Face 1715 4493 3379 2660 Face 1716 1914 2334 875 Face 1717 3830 3115 1787 Face 1718 170 1910 876 Face 1719 500 877 2117 Face 1720 500 1330 877 Face 1721 2853 1358 753 Face 1722 1937 1020 3484 Face 1723 333 879 2090 Face 1724 333 3324 879 Face 1725 278 880 3167 Face 1726 2582 480 1879 Face 1727 4258 1871 2955 Face 1728 1329 672 3893 Face 1729 2130 3770 372 Face 1730 128 4376 4836 Face 1731 89 1485 2482 Face 1732 1277 821 1154 Face 1733 4677 2474 1017 Face 1734 1924 217 4819 Face 1735 2300 2876 770 Face 1736 3023 4570 2177 Face 1737 4804 886 1848 Face 1738 3585 4694 3917 Face 1739 1610 4549 5061 Face 1740 3259 4740 887 Face 1741 266 888 1698 Face 1742 2293 3373 888 Face 1743 3722 1661 704 Face 1744 496 4187 1661 Face 1745 2711 4714 2523 Face 1746 2711 1740 4714 Face 1747 427 3576 173 Face 1748 5014 1435 3576 Face 1749 1196 1718 5043 Face 1750 2729 3834 892 Face 1751 1071 3489 1549 Face 1752 699 2849 4604 Face 1753 332 3156 4869 Face 1754 332 3111 1594 Face 1755 3595 3033 1798 Face 1756 1327 4469 1940 Face 1757 407 896 2297 Face 1758 407 1596 896 Face 1759 756 4425 1203 Face 1760 2476 3920 1712 Face 1761 3939 898 483 Face 1762 3939 606 898 Face 1763 2379 899 4457 Face 1764 4599 803 2673 Face 1765 1644 3069 291 Face 1766 3505 2016 900 Face 1767 3059 901 540 Face 1768 3059 1802 901 Face 1769 342 902 1827 Face 1770 3426 903 4241 Face 1771 1164 17 1810 Face 1772 1306 3579 627 Face 1773 481 3665 904 Face 1774 220 905 1398 Face 1775 220 4030 905 Face 1776 3583 906 1403 Face 1777 3583 2285 906 Face 1778 3352 907 2872 Face 1779 3352 1305 4996 Face 1780 725 4847 2005 Face 1781 725 3972 4431 Face 1782 563 2116 3310 Face 1783 563 1399 2116 Face 1784 1822 910 3836 Face 1785 1822 4405 910 Face 1786 834 911 2269 Face 1787 3730 912 1273 Face 1788 5011 2574 2261 Face 1789 636 4867 367 Face 1790 1210 501 3104 Face 1791 3760 914 2600 Face 1792 185 2074 4231 Face 1793 64 915 1646 Face 1794 3671 630 1956 Face 1795 248 916 3331 Face 1796 248 835 1931 Face 1797 3665 1551 904 Face 1798 1680 2902 2132 Face 1799 2903 918 300 Face 1800 4073 1103 2972 Face 1801 314 2699 1664 Face 1802 314 2122 4102 Face 1803 560 1554 3614 Face 1804 560 2289 1554 Face 1805 151 2039 2988 Face 1806 2027 667 921 Face 1807 4499 922 2668 Face 1808 499 2356 922 Face 1809 446 2907 155 Face 1810 1722 4844 2736 Face 1811 4861 924 672 Face 1812 2973 2613 924 Face 1813 2230 925 414 Face 1814 2230 1563 925 Face 1815 472 926 2471 Face 1816 472 602 4495 Face 1817 5029 2658 1184 Face 1818 2341 4773 927 Face 1819 4053 928 2882 Face 1820 1447 2770 928 Face 1821 3669 929 2241 Face 1822 3669 1831 4166 Face 1823 3074 930 646 Face 1824 3074 2895 930 Face 1825 375 3201 1151 Face 1826 375 1686 3201 Face 1827 97 2355 1535 Face 1828 97 3510 932 Face 1829 2864 2544 1005 Face 1830 1856 1512 1170 Face 1831 1492 934 2996 Face 1832 1492 3463 934 Face 1833 1934 1205 4227 Face 1834 4744 3346 1783 Face 1835 403 1200 1921 Face 1836 1418 2265 936 Face 1837 416 937 4766 Face 1838 416 1310 2401 Face 1839 419 3360 1730 Face 1840 419 1306 3360 Face 1841 3823 939 3243 Face 1842 3823 4465 939 Face 1843 2631 1347 4775 Face 1844 450 1978 940 Face 1845 533 941 1771 Face 1846 533 2176 941 Face 1847 349 942 3999 Face 1848 349 2971 942 Face 1849 484 2256 1444 Face 1850 484 4125 1490 Face 1851 1577 944 2719 Face 1852 531 4016 3746 Face 1853 3280 945 795 Face 1854 1674 4101 2469 Face 1855 790 2834 3832 Face 1856 790 4630 1517 Face 1857 4854 947 4021 Face 1858 3534 2802 2695 Face 1859 1292 2637 2785 Face 1860 3703 578 948 Face 1861 3573 1536 1172 Face 1862 436 207 3705 Face 1863 3021 950 1713 Face 1864 2924 864 2547 Face 1865 613 951 4521 Face 1866 613 3515 951 Face 1867 293 3064 2707 Face 1868 293 4311 3064 Face 1869 523 953 2388 Face 1870 523 2554 953 Face 1871 574 954 1824 Face 1872 574 2527 954 Face 1873 1540 4938 1052 Face 1874 93 1913 955 Face 1875 318 3709 2752 Face 1876 318 2792 1878 Face 1877 704 3532 3955 Face 1878 704 1661 4188 Face 1879 24 4130 2500 Face 1880 1402 1940 4469 Face 1881 1314 959 1792 Face 1882 1314 4503 959 Face 1883 4823 3546 138 Face 1884 3781 2597 4841 Face 1885 2730 961 239 Face 1886 109 2325 4882 Face 1887 474 962 290 Face 1888 2222 1041 3674 Face 1889 2272 1421 615 Face 1890 4565 434 4783 Face 1891 3826 964 1539 Face 1892 2766 684 4488 Face 1893 3492 2484 39 Face 1894 509 776 1573 Face 1895 2798 1972 1500 Face 1896 2798 3802 1619 Face 1897 3196 967 422 Face 1898 5053 2448 967 Face 1899 2099 968 4139 Face 1900 2099 692 4118 Face 1901 171 969 3166 Face 1902 3414 1524 969 Face 1903 1257 3984 2552 Face 1904 508 4885 970 Face 1905 4761 1528 2855 Face 1906 66 739 1528 Face 1907 1711 1969 2664 Face 1908 374 2393 1292 Face 1909 78 3569 1925 Face 1910 3667 3668 3049 Face 1911 2075 2825 763 Face 1912 1233 4872 2266 Face 1913 2785 3073 1292 Face 1914 2785 3932 975 Face 1915 75 4538 2953 Face 1916 2595 4552 2456 Face 1917 5012 977 2072 Face 1918 586 2551 977 Face 1919 462 978 3725 Face 1920 462 4762 978 Face 1921 3383 1586 31 Face 1922 1943 3031 1197 Face 1923 2674 980 956 Face 1924 1326 1600 2255 Face 1925 1365 1500 4145 Face 1926 218 1155 2347 Face 1927 62 2049 3276 Face 1928 62 3688 2049 Face 1929 4477 983 442 Face 1930 2796 5004 2176 Face 1931 578 2188 948 Face 1932 2860 1479 3181 Face 1933 4444 985 443 Face 1934 2009 986 3574 Face 1935 2009 3764 986 Face 1936 1149 1907 3929 Face 1937 510 3668 987 Face 1938 4492 988 3966 Face 1939 53 1935 988 Face 1940 3655 4939 2817 Face 1941 2254 5008 1662 Face 1942 638 990 3627 Face 1943 3920 2476 4613 Face 1944 5034 991 2510 Face 1945 5034 2231 991 Face 1946 217 1322 4275 Face 1947 217 1664 1322 Face 1948 1359 3452 364 Face 1949 1359 3361 3452 Face 1950 3207 4853 1300 Face 1951 430 2043 4008 Face 1952 1703 3493 1364 Face 1953 1703 2260 3493 Face 1954 2543 1380 533 Face 1955 154 3591 996 Face 1956 4120 997 3225 Face 1957 2439 580 997 Face 1958 381 2142 3147 Face 1959 4800 1766 998 Face 1960 1223 4129 2586 Face 1961 1752 2151 4129 Face 1962 3888 2838 1749 Face 1963 3888 126 1000 Face 1964 2103 1001 1613 Face 1965 4608 1886 2901 Face 1966 3325 1002 249 Face 1967 4808 389 1991 Face 1968 311 1887 639 Face 1969 311 4999 1887 Face 1970 1838 1004 2342 Face 1971 3652 2486 1385 Face 1972 2271 1693 427 Face 1973 527 2041 1693 Face 1974 1784 1006 4099 Face 1975 2159 13 1411 Face 1976 3455 2968 1181 Face 1977 2064 3976 1007 Face 1978 259 1008 1381 Face 1979 259 4420 2458 Face 1980 1281 2270 3163 Face 1981 4041 1390 3517 Face 1982 2505 1010 1261 Face 1983 2505 4666 1010 Face 1984 2473 1011 1945 Face 1985 3495 3186 1425 Face 1986 541 1727 3723 Face 1987 4762 462 1727 Face 1988 3874 1372 887 Face 1989 249 3618 1013 Face 1990 4277 1014 4837 Face 1991 2974 2338 2423 Face 1992 205 3919 1568 Face 1993 1994 3054 3919 Face 1994 4293 3184 33 Face 1995 539 80 4109 Face 1996 3209 1017 2474 Face 1997 760 3394 4319 Face 1998 2726 1018 3847 Face 1999 602 4936 1982 Face 2000 192 2678 1507 Face 2001 192 3339 2678 Face 2002 1635 1020 1937 Face 2003 1635 200 1020 Face 2004 3116 4998 4580 Face 2005 2640 1533 1021 Face 2006 3220 4728 3055 Face 2007 2540 2805 1022 Face 2008 105 2196 4100 Face 2009 105 575 4523 Face 2010 4871 1024 2632 Face 2011 4871 2358 1024 Face 2012 4059 1930 592 Face 2013 2502 898 5033 Face 2014 3968 1026 1356 Face 2015 3968 2267 1026 Face 2016 447 2621 2593 Face 2017 447 3777 4776 Face 2018 554 1028 2383 Face 2019 554 1440 1028 Face 2020 4778 2109 712 Face 2021 2003 3043 1029 Face 2022 2053 5054 844 Face 2023 2053 946 4563 Face 2024 29 2520 1418 Face 2025 2316 3356 4199 Face 2026 4953 1032 267 Face 2027 4953 2182 1032 Face 2028 1348 3685 3915 Face 2029 246 4467 2309 Face 2030 3813 1759 1385 Face 2031 3813 2954 4291 Face 2032 209 1263 3168 Face 2033 228 2666 5022 Face 2034 228 4845 3707 Face 2035 2881 1037 4174 Face 2036 1300 4560 4276 Face 2037 3264 1038 2389 Face 2038 2441 3034 1757 Face 2039 3442 1039 86 Face 2040 3026 4196 1039 Face 2041 4916 1040 3926 Face 2042 4916 1966 1923 Face 2043 2138 4732 225 Face 2044 2138 3674 2742 Face 2045 721 4090 2964 Face 2046 3136 4516 1042 Face 2047 2845 4587 609 Face 2048 1337 4930 2384 Face 2049 4682 3606 1393 Face 2050 619 2942 4303 Face 2051 2799 2378 3199 Face 2052 2799 1997 2378 Face 2053 4981 3737 802 Face 2054 645 59 1987 Face 2055 2431 4810 3633 Face 2056 2431 3131 4810 Face 2057 2567 1048 4425 Face 2058 3970 1832 3177 Face 2059 1788 1049 3637 Face 2060 542 3878 2155 Face 2061 689 2195 5065 Face 2062 689 3506 1050 Face 2063 4918 2504 920 Face 2064 665 2128 1683 Face 2065 2810 2558 2100 Face 2066 473 835 2558 Face 2067 3344 2143 1342 Face 2068 2943 3738 4673 Face 2069 4447 1054 1659 Face 2070 4952 330 4754 Face 2071 384 3321 4890 Face 2072 2354 782 4115 Face 2073 243 4433 2508 Face 2074 4152 19 1867 Face 2075 1949 2840 498 Face 2076 4532 1601 3898 Face 2077 3519 1058 2292 Face 2078 1739 4064 2871 Face 2079 2054 3469 1705 Face 2080 144 1741 3469 Face 2081 584 1060 1877 Face 2082 584 3824 2208 Face 2083 3293 1061 2830 Face 2084 307 2683 1061 Face 2085 358 1062 14 Face 2086 4842 1718 2784 Face 2087 1656 2888 3511 Face 2088 2760 649 1803 Face 2089 252 2932 892 Face 2090 252 2039 4310 Face 2091 2451 1439 1321 Face 2092 734 2434 4566 Face 2093 3025 1525 2434 Face 2094 264 1067 572 Face 2095 2140 1320 3850 Face 2096 714 4990 1775 Face 2097 3359 3845 1951 Face 2098 288 2114 2934 Face 2099 288 4329 2114 Face 2100 468 1070 2161 Face 2101 468 3107 1070 Face 2102 699 2823 4203 Face 2103 699 4967 2823 Face 2104 1224 3222 494 Face 2105 4148 794 2214 Face 2106 1550 2900 130 Face 2107 3673 640 1751 Face 2108 4225 3434 1449 Face 2109 2950 1338 4737 Face 2110 2510 1075 319 Face 2111 4437 3933 1075 Face 2112 335 3329 2403 Face 2113 335 1963 3329 Face 2114 1882 1077 871 Face 2115 618 3103 3373 Face 2116 3270 1078 2682 Face 2117 3270 1909 1078 Face 2118 3011 2126 938 Face 2119 65 2972 2605 Face 2120 1565 3444 1668 Face 2121 1565 729 3444 Face 2122 1689 1081 2835 Face 2123 1689 2789 1081 Face 2124 650 2173 444 Face 2125 650 2803 2173 Face 2126 644 4369 2274 Face 2127 4771 2711 3653 Face 2128 110 3751 682 Face 2129 110 3995 3751 Face 2130 1671 1085 3769 Face 2131 3958 4629 1085 Face 2132 2353 1086 2980 Face 2133 2353 643 3065 Face 2134 1648 1087 3120 Face 2135 2534 769 3503 Face 2136 1436 2904 571 Face 2137 327 4337 1088 Face 2138 2753 3780 3086 Face 2139 604 3402 4426 Face 2140 3710 1090 1989 Face 2141 3710 5063 3950 Face 2142 475 3856 2168 Face 2143 4656 287 1091 Face 2144 600 5003 3029 Face 2145 600 1495 5003 Face 2146 4743 1093 2559 Face 2147 2470 674 1093 Face 2148 427 3938 2271 Face 2149 427 173 3938 Face 2150 1669 2127 462 Face 2151 4436 2084 5049 Face 2152 2844 1096 4556 Face 2153 2844 4489 1096 Face 2154 2659 1351 3193 Face 2155 401 2430 1097 Face 2156 594 3425 4420 Face 2157 2938 514 1670 Face 2158 435 1099 3337 Face 2159 751 1100 3941 Face 2160 4845 228 1100 Face 2161 3702 1101 3963 Face 2162 211 1280 1101 Face 2163 108 1561 1893 Face 2164 108 801 3520 Face 2165 20 1103 4073 Face 2166 20 3125 1103 Face 2167 315 3108 3217 Face 2168 315 3091 3108 Face 2169 219 1762 2632 Face 2170 1307 2450 4163 Face 2171 1984 1106 41 Face 2172 1465 280 2420 Face 2173 4196 4228 2788 Face 2174 823 1389 2131 Face 2175 4877 4769 2104 Face 2176 200 1635 1108 Face 2177 221 1109 2178 Face 2178 4094 1633 1109 Face 2179 4262 1110 1456 Face 2180 4262 3233 1110 Face 2181 1666 1988 745 Face 2182 222 886 4804 Face 2183 3268 4016 1228 Face 2184 3504 1935 4245 Face 2185 4297 1113 2553 Face 2186 1691 3857 2636 Face 2187 1499 3817 800 Face 2188 2047 3399 2242 Face 2189 132 4676 3961 Face 2190 2115 1548 3795 Face 2191 3514 1116 2198 Face 2192 3514 596 1116 Face 2193 4354 1117 798 Face 2194 2251 2092 4937 Face 2195 720 2500 4130 Face 2196 1285 4723 2919 Face 2197 162 2915 3213 Face 2198 1585 2257 3381 Face 2199 2046 3491 1457 Face 2200 3048 317 2706 Face 2201 3586 1121 1641 Face 2202 88 4675 1121 Face 2203 3844 4360 3763 Face 2204 3844 4554 1709 Face 2205 571 1123 1436 Face 2206 571 873 1123 Face 2207 1864 4672 3272 Face 2208 2411 3936 1124 Face 2209 45 4448 2280 Face 2210 2527 4183 2187 Face 2211 62 1126 4134 Face 2212 62 2438 1126 Face 2213 15 1127 2209 Face 2214 5028 2105 1127 Face 2215 76 1128 4162 Face 2216 76 2877 2059 Face 2217 4515 3831 2927 Face 2218 668 2151 3831 Face 2219 3121 4586 2685 Face 2220 3121 1836 4586 Face 2221 2765 1131 3559 Face 2222 2765 2444 1131 Face 2223 142 2603 4901 Face 2224 142 1417 4651 Face 2225 140 4281 2511 Face 2226 140 2024 4281 Face 2227 3684 4335 2171 Face 2228 559 1475 4335 Face 2229 2756 2215 269 Face 2230 369 4019 1135 Face 2231 3002 1136 4525 Face 2232 4883 2439 1136 Face 2233 4358 1137 2348 Face 2234 4358 2535 1137 Face 2235 408 1696 3799 Face 2236 408 4764 1138 Face 2237 702 1139 3100 Face 2238 702 4005 1139 Face 2239 517 1140 3223 Face 2240 2181 831 2937 Face 2241 81 1141 4176 Face 2242 81 3918 1141 Face 2243 2183 1142 3431 Face 2244 2183 1580 2754 Face 2245 693 2690 1610 Face 2246 693 3806 2690 Face 2247 80 3623 4109 Face 2248 80 943 2467 Face 2249 2894 1145 4576 Face 2250 2894 4057 3943 Face 2251 135 1146 3943 Face 2252 2425 4423 486 Face 2253 4321 131 3404 Face 2254 3924 1148 1826 Face 2255 3924 1564 1148 Face 2256 2887 1149 3143 Face 2257 2887 1907 1149 Face 2258 703 1150 4274 Face 2259 4389 1908 3013 Face 2260 1728 1151 3201 Face 2261 3037 4904 1936 Face 2262 2447 1152 3758 Face 2263 2447 3003 1152 Face 2264 413 2392 1331 Face 2265 1932 960 1153 Face 2266 3340 2790 676 Face 2267 883 3899 1975 Face 2268 2333 3410 218 Face 2269 572 4687 1155 Face 2270 3086 1156 3153 Face 2271 3086 2004 1156 Face 2272 4817 2079 388 Face 2273 1729 2551 4558 Face 2274 354 1158 2634 Face 2275 3894 1159 1819 Face 2276 3894 2808 1159 Face 2277 1861 2413 1484 Face 2278 3720 2093 1160 Face 2279 4896 1161 4279 Face 2280 2493 1971 4028 Face 2281 41 1162 1984 Face 2282 5000 2331 1162 Face 2283 324 4266 1853 Face 2284 324 1858 4266 Face 2285 111 1164 1810 Face 2286 3193 4373 3286 Face 2287 425 2278 1743 Face 2288 2601 3872 1431 Face 2289 728 3715 1588 Face 2290 2292 1058 1166 Face 2291 3779 1167 2896 Face 2292 3779 3197 1167 Face 2293 449 3051 2145 Face 2294 449 2227 3051 Face 2295 3767 1673 3659 Face 2296 3767 2464 1673 Face 2297 933 2282 2410 Face 2298 933 4055 5051 Face 2299 3219 1171 971 Face 2300 3219 2336 1171 Face 2301 112 2225 3439 Face 2302 112 4479 2225 Face 2303 212 1173 4111 Face 2304 3501 1607 1173 Face 2305 649 2366 1803 Face 2306 1886 147 3351 Face 2307 3945 1175 1894 Face 2308 3945 2751 1175 Face 2309 194 4530 3306 Face 2310 194 4173 1176 Face 2311 1048 3771 1203 Face 2312 3177 1832 4763 Face 2313 778 1707 363 Face 2314 778 1650 2955 Face 2315 3134 2373 3449 Face 2316 1377 1472 4222 Face 2317 2132 1898 1680 Face 2318 917 133 4269 Face 2319 658 1181 3962 Face 2320 658 4422 1181 Face 2321 2964 2108 721 Face 2322 3789 1947 1182 Face 2323 552 4879 2328 Face 2324 4949 1000 1183 Face 2325 1905 1184 4752 Face 2326 1905 2906 1184 Face 2327 2491 4923 868 Face 2328 4336 2809 4923 Face 2329 385 1186 2700 Face 2330 385 3121 1186 Face 2331 582 1187 2290 Face 2332 1382 2571 3170 Face 2333 461 4371 1188 Face 2334 593 2233 11 Face 2335 593 3767 3659 Face 2336 555 2824 2001 Face 2337 555 3230 2824 Face 2338 524 1191 3144 Face 2339 4711 970 2074 Face 2340 2959 2128 665 Face 2341 863 4025 1773 Face 2342 308 2632 1762 Face 2343 4131 1722 1193 Face 2344 4899 1194 1906 Face 2345 590 3314 1194 Face 2346 4326 1195 2162 Face 2347 4326 122 1195 Face 2348 2784 1196 3218 Face 2349 2784 1718 1196 Face 2350 2480 3782 1552 Face 2351 4607 1943 1197 Face 2352 549 3721 2598 Face 2353 549 2107 1198 Face 2354 4892 2329 1585 Face 2355 4717 98 2329 Face 2356 936 2346 1418 Face 2357 936 1569 3417 Face 2358 2760 4640 1574 Face 2359 390 3499 2609 Face 2360 3419 1202 3480 Face 2361 3419 979 1202 Face 2362 660 1203 3771 Face 2363 660 4280 2165 Face 2364 674 1204 4384 Face 2365 2610 1494 1204 Face 2366 3855 1205 1934 Face 2367 3855 697 4720 Face 2368 5027 1899 2754 Face 2369 764 3692 1206 Face 2370 4805 3015 851 Face 2371 3243 2206 4324 Face 2372 3766 1208 1808 Face 2373 3766 442 1208 Face 2374 3300 4514 4920 Face 2375 558 5002 4514 Face 2376 636 3624 2008 Face 2377 636 2369 3624 Face 2378 400 1211 3699 Face 2379 1451 3524 2652 Face 2380 475 2908 3856 Face 2381 1806 1581 1212 Face 2382 102 1213 3007 Face 2383 102 3550 1213 Face 2384 3348 2060 583 Face 2385 3348 1563 1214 Face 2386 2667 3189 4411 Face 2387 2667 4707 3189 Face 2388 373 4849 3374 Face 2389 373 3498 4849 Face 2390 990 2794 1990 Face 2391 990 638 2794 Face 2392 3935 1218 3510 Face 2393 3935 2503 1218 Face 2394 2453 3446 623 Face 2395 2453 1047 1219 Face 2396 2259 3507 4483 Face 2397 210 3039 1220 Face 2398 3072 3988 1116 Face 2399 3072 1660 1221 Face 2400 51 2216 1923 Face 2401 51 3056 2216 Face 2402 2979 1223 1999 Face 2403 2979 4129 1223 Face 2404 2179 3974 2247 Face 2405 2179 1072 3974 Face 2406 159 2472 2999 Face 2407 2356 3538 1225 Face 2408 2032 1226 670 Face 2409 4519 1571 1226 Face 2410 2330 1227 3765 Face 2411 2330 3195 1227 Face 2412 2468 1228 2776 Face 2413 2468 4846 1228 Face 2414 3216 1229 1982 Face 2415 3216 2158 1229 Face 2416 3319 4516 3136 Face 2417 2816 1529 1230 Face 2418 362 3061 1852 Face 2419 3559 4905 2051 Face 2420 3203 2133 100 Face 2421 4617 3032 1232 Face 2422 4069 1233 4140 Face 2423 256 4397 1233 Face 2424 471 5057 226 Face 2425 3241 4571 1883 Face 2426 34 1235 1049 Face 2427 4670 3429 2137 Face 2428 3057 1236 4009 Face 2429 3057 1805 4160 Face 2430 2923 1237 4259 Face 2431 179 608 1237 Face 2432 4401 4001 2970 Face 2433 4401 2519 4001 Face 2434 3880 3115 170 Face 2435 3880 281 1239 Face 2436 5043 2773 1196 Face 2437 3971 790 3832 Face 2438 485 1241 4052 Face 2439 4067 384 4890 Face 2440 4958 3776 2164 Face 2441 3688 62 4134 Face 2442 3142 1243 2708 Face 2443 3142 4218 1243 Face 2444 4496 2122 1432 Face 2445 3599 1027 1244 Face 2446 1921 2882 403 Face 2447 3005 1480 1245 Face 2448 4990 1951 2862 Face 2449 4990 714 1951 Face 2450 4201 2238 4594 Face 2451 2518 3079 4911 Face 2452 3400 2764 1012 Face 2453 472 2471 2764 Face 2454 355 1777 3009 Face 2455 355 3582 1777 Face 2456 3217 1250 4903 Face 2457 3217 3663 1250 Face 2458 443 1251 2014 Face 2459 443 3786 1251 Face 2460 562 3973 2782 Face 2461 2903 3797 1252 Face 2462 53 2646 601 Face 2463 53 988 2646 Face 2464 3993 1254 2679 Face 2465 3993 4317 1254 Face 2466 713 1255 3841 Face 2467 4693 415 2986 Face 2468 4438 3389 634 Face 2469 656 2884 4758 Face 2470 1805 1257 4160 Face 2471 1805 3984 1257 Face 2472 2251 3250 1912 Face 2473 2251 4937 1258 Face 2474 805 4427 1534 Face 2475 805 2747 1259 Face 2476 864 3794 1723 Face 2477 864 1588 2626 Face 2478 90 1261 3139 Face 2479 90 2505 1261 Face 2480 1642 1262 4750 Face 2481 1642 3387 1262 Face 2482 1035 1263 209 Face 2483 79 1264 4013 Face 2484 2220 4361 3534 Face 2485 4583 1265 2018 Face 2486 3031 1943 3900 Face 2487 268 1266 1965 Face 2488 407 4366 1596 Face 2489 2809 1514 2516 Face 2490 2253 3000 249 Face 2491 4086 3944 3169 Face 2492 402 1269 3434 Face 2493 402 684 1269 Face 2494 5009 1270 4440 Face 2495 3190 1297 2096 Face 2496 1683 1271 3126 Face 2497 3614 1554 1271 Face 2498 2010 1272 691 Face 2499 4858 2810 1626 Face 2500 2031 1273 1631 Face 2501 4983 2335 1273 Face 2502 712 2740 4166 Face 2503 712 2109 2740 Face 2504 4992 3282 2076 Face 2505 4639 1075 3282 Face 2506 4632 2884 656 Face 2507 74 2244 2884 Face 2508 3899 2675 1154 Face 2509 89 2147 2675 Face 2510 761 1278 2594 Face 2511 761 3298 1278 Face 2512 4571 4132 1883 Face 2513 129 2028 1279 Face 2514 3676 1280 211 Face 2515 3676 4240 1280 Face 2516 696 2931 4797 Face 2517 696 1558 2931 Face 2518 710 1282 1581 Face 2519 3629 4292 1282 Face 2520 5032 2847 3299 Face 2521 3149 4326 2162 Face 2522 445 2647 3836 Face 2523 4299 717 2647 Face 2524 3905 1285 2919 Face 2525 3905 695 1285 Face 2526 599 3312 1055 Face 2527 599 4452 4622 Face 2528 282 1487 3496 Face 2529 282 2801 1487 Face 2530 115 3597 1824 Face 2531 3070 850 2308 Face 2532 3233 2345 1110 Face 2533 195 3647 1289 Face 2534 3754 2514 441 Face 2535 4840 2050 2514 Face 2536 3369 1291 4470 Face 2537 3369 1163 1291 Face 2538 972 1292 3073 Face 2539 4015 374 1292 Face 2540 163 1293 3949 Face 2541 163 2503 1293 Face 2542 2362 3332 61 Face 2543 2362 1536 1294 Face 2544 701 1295 4270 Face 2545 701 3927 1295 Face 2546 251 3246 4605 Face 2547 251 2428 3246 Face 2548 4184 2759 1482 Face 2549 770 2096 1297 Face 2550 859 3423 4054 Face 2551 2191 1458 3423 Face 2552 1671 3958 1085 Face 2553 28 2067 3262 Face 2554 1964 1300 1037 Face 2555 1964 3207 1300 Face 2556 634 1301 3992 Face 2557 634 3389 1301 Face 2558 3537 2995 729 Face 2559 2052 510 2154 Face 2560 606 2146 1682 Face 2561 606 3939 2146 Face 2562 884 1304 2629 Face 2563 4902 3825 1304 Face 2564 313 4034 3421 Face 2565 313 1757 4034 Face 2566 481 4282 4811 Face 2567 481 2017 4282 Face 2568 219 3482 1762 Face 2569 219 2167 3482 Face 2570 4644 4788 952 Face 2571 4644 2317 4788 Face 2572 337 1309 3208 Face 2573 1820 176 2086 Face 2574 3848 1310 416 Face 2575 4272 3086 3153 Face 2576 773 1311 2599 Face 2577 2787 236 1912 Face 2578 2575 2398 1161 Face 2579 4078 2349 1312 Face 2580 497 1313 4150 Face 2581 497 2515 3663 Face 2582 77 1314 1792 Face 2583 77 2891 1314 Face 2584 4101 3600 5036 Face 2585 4101 3443 1315 Face 2586 98 1316 4976 Face 2587 98 3155 1316 Face 2588 14 4284 2722 Face 2589 14 1062 4284 Face 2590 3140 1318 4382 Face 2591 3140 3917 1318 Face 2592 3783 3091 315 Face 2593 2125 2478 1602 Face 2594 501 1320 4051 Face 2595 501 4047 1320 Face 2596 4508 1321 1439 Face 2597 4508 2233 3580 Face 2598 992 4533 743 Face 2599 3825 2499 4533 Face 2600 4581 4948 518 Face 2601 3428 1284 1323 Face 2602 2883 1324 2040 Face 2603 146 2141 3235 Face 2604 1998 4306 272 Face 2605 2297 896 3474 Face 2606 624 1326 3807 Face 2607 624 1829 3310 Face 2608 653 3595 1798 Face 2609 653 3300 4920 Face 2610 317 1328 2706 Face 2611 4546 1879 3398 Face 2612 124 1329 3893 Face 2613 124 2922 1329 Face 2614 328 2466 4146 Face 2615 328 4372 2466 Face 2616 272 1331 2856 Face 2617 2947 824 3677 Face 2618 455 1332 2549 Face 2619 455 2307 1332 Face 2620 614 4490 3573 Face 2621 614 1034 4058 Face 2622 3726 1334 4699 Face 2623 2273 804 1506 Face 2624 22 3341 1121 Face 2625 3761 926 4545 Face 2626 319 2160 2231 Face 2627 2917 1262 4825 Face 2628 119 1337 2384 Face 2629 3963 1101 4977 Face 2630 467 1338 1847 Face 2631 467 4737 1338 Face 2632 149 2324 745 Face 2633 149 4470 3719 Face 2634 1022 1340 3220 Face 2635 3547 2229 1340 Face 2636 371 2283 1025 Face 2637 371 1531 2283 Face 2638 2084 1342 1835 Face 2639 796 3344 1342 Face 2640 873 1343 1123 Face 2641 3804 554 2383 Face 2642 4599 1344 803 Face 2643 359 693 4746 Face 2644 4230 2913 2313 Face 2645 4168 3559 2051 Face 2646 2989 3633 1047 Face 2647 3728 2070 1346 Face 2648 940 1347 2631 Face 2649 3009 1249 1347 Face 2650 4768 2148 932 Face 2651 246 3685 2148 Face 2652 3035 4212 3221 Face 2653 3035 2585 4062 Face 2654 686 1350 4739 Face 2655 686 2741 1350 Face 2656 4381 1351 401 Face 2657 4381 1815 1351 Face 2658 2305 1352 3287 Face 2659 2305 2083 4288 Face 2660 307 1353 4809 Face 2661 3983 3458 1353 Face 2662 2352 4701 4683 Face 2663 399 3408 4701 Face 2664 916 1355 1932 Face 2665 916 4368 2719 Face 2666 60 2839 1911 Face 2667 60 2644 1356 Face 2668 679 1357 997 Face 2669 679 1693 2041 Face 2670 878 2429 3563 Face 2671 878 1672 2429 Face 2672 794 3736 2214 Face 2673 2893 1513 3736 Face 2674 2976 1360 4791 Face 2675 2976 3651 1360 Face 2676 777 1361 1946 Face 2677 777 4567 3308 Face 2678 3839 2532 1954 Face 2679 589 1924 1362 Face 2680 2338 2129 2423 Face 2681 829 2654 2129 Face 2682 623 4400 1488 Face 2683 623 4965 4400 Face 2684 3529 1365 3979 Face 2685 3529 1500 1365 Face 2686 3934 2928 4741 Face 2687 4967 699 4604 Face 2688 3716 1367 636 Face 2689 542 2155 4137 Face 2690 293 3792 4311 Face 2691 293 1184 3792 Face 2692 2112 1369 232 Face 2693 618 4598 2186 Face 2694 3182 871 1370 Face 2695 2281 1371 2661 Face 2696 585 1132 3644 Face 2697 1013 1372 3874 Face 2698 2304 2149 1372 Face 2699 3523 1373 2040 Face 2700 363 1707 4406 Face 2701 4358 1374 2858 Face 2702 4358 2348 1374 Face 2703 2312 2449 1104 Face 2704 716 4783 1375 Face 2705 84 1376 3030 Face 2706 4127 738 3137 Face 2707 4572 1377 3634 Face 2708 4572 3082 1377 Face 2709 3743 2535 661 Face 2710 184 711 3041 Face 2711 4690 4055 2544 Face 2712 229 4120 3225 Face 2713 996 3151 154 Face 2714 3869 1194 1745 Face 2715 2718 1381 2089 Face 2716 2718 3481 1381 Face 2717 4187 4941 889 Face 2718 1933 2571 1382 Face 2719 707 4022 3757 Face 2720 707 2320 4022 Face 2721 4453 3611 2479 Face 2722 376 3435 1384 Face 2723 3527 4039 614 Face 2724 1004 3652 1385 Face 2725 3994 3672 607 Face 2726 853 4814 1386 Face 2727 4380 2546 3307 Face 2728 7 1412 1387 Face 2729 802 1388 361 Face 2730 4153 2981 1388 Face 2731 185 1389 4430 Face 2732 4875 1736 1389 Face 2733 2848 2178 3114 Face 2734 3774 3517 1390 Face 2735 1990 1391 3490 Face 2736 1990 3587 1391 Face 2737 4502 3078 1387 Face 2738 4502 2880 3078 Face 2739 381 3119 3946 Face 2740 3497 4682 1393 Face 2741 4988 2303 1638 Face 2742 166 4239 1704 Face 2743 166 811 4239 Face 2744 2526 4550 1731 Face 2745 3120 3755 1396 Face 2746 3522 5063 2249 Face 2747 3522 380 1397 Face 2748 763 4801 2075 Face 2749 763 3735 4801 Face 2750 3568 1399 4730 Face 2751 1918 2116 1399 Face 2752 4003 2263 3938 Face 2753 4003 1129 1400 Face 2754 486 1401 4063 Face 2755 486 3858 2914 Face 2756 24 3322 1967 Face 2757 4750 1262 3964 Face 2758 3206 3881 487 Face 2759 2566 514 4989 Face 2760 1691 3693 732 Face 2761 2242 3817 1499 Face 2762 1114 4984 2641 Face 2763 125 1406 2812 Face 2764 125 1069 1406 Face 2765 605 1407 3357 Face 2766 3951 2701 1857 Face 2767 480 3255 4529 Face 2768 480 1472 3255 Face 2769 1891 1410 3487 Face 2770 1891 3712 1410 Face 2771 1006 3370 4685 Face 2772 1006 1784 3370 Face 2773 116 3338 2669 Face 2774 116 2174 3338 Face 2775 4106 1413 2451 Face 2776 2612 8 1413 Face 2777 2663 1414 3861 Face 2778 3447 4706 2094 Face 2779 2104 3372 4032 Face 2780 432 2481 3372 Face 2781 4791 2525 3552 Face 2782 4791 1360 2525 Face 2783 1995 2682 4830 Face 2784 285 4651 1417 Face 2785 403 3260 2346 Face 2786 403 690 3260 Face 2787 1394 1419 2301 Face 2788 391 2662 677 Face 2789 391 118 4482 Face 2790 963 4362 4565 Face 2791 963 3335 4362 Face 2792 898 4029 483 Face 2793 898 2502 4895 Face 2794 202 1423 3772 Face 2795 202 2928 1423 Face 2796 227 1424 3620 Face 2797 227 4210 1424 Face 2798 3617 1425 818 Face 2799 3617 49 1425 Face 2800 2410 1426 933 Face 2801 682 3751 4891 Face 2802 442 4308 1208 Face 2803 1944 590 1427 Face 2804 189 3216 1982 Face 2805 189 1012 2359 Face 2806 2496 1429 2407 Face 2807 2496 1333 1429 Face 2808 991 4452 599 Face 2809 991 3475 1866 Face 2810 4070 2278 579 Face 2811 1165 1743 2278 Face 2812 747 1432 314 Face 2813 747 4346 1432 Face 2814 3486 1433 2124 Face 2815 126 2596 4792 Face 2816 2036 2973 924 Face 2817 4680 50 3278 Face 2818 492 1929 3698 Face 2819 492 1697 1929 Face 2820 4341 1436 2553 Face 2821 327 2904 1436 Face 2822 646 1437 4593 Face 2823 646 930 1437 Face 2824 755 1438 1612 Face 2825 755 377 1438 Face 2826 1065 1439 2451 Face 2827 651 3102 749 Face 2828 2419 1028 1440 Face 2829 347 1441 4377 Face 2830 2584 1609 2967 Face 2831 553 4328 2380 Face 2832 553 1816 1442 Face 2833 2487 2170 328 Face 2834 2487 2757 2170 Face 2835 80 3879 4257 Face 2836 80 539 3879 Face 2837 4367 1445 3090 Face 2838 2957 4487 1874 Face 2839 2258 1714 4850 Face 2840 2258 4212 1714 Face 2841 168 4053 3750 Face 2842 168 2248 2643 Face 2843 1850 1448 4603 Face 2844 2477 4491 1448 Face 2845 39 4698 2939 Face 2846 3886 888 4878 Face 2847 675 4024 2583 Face 2848 4481 3187 1450 Face 2849 400 1451 2652 Face 2850 2147 89 4037 Face 2851 105 3479 4186 Face 2852 105 1833 3479 Face 2853 3784 1453 4668 Face 2854 216 2240 1453 Face 2855 448 1454 4075 Face 2856 448 1229 1454 Face 2857 4727 2727 324 Face 2858 2252 4141 1455 Face 2859 426 1456 4087 Face 2860 2743 3531 1456 Face 2861 1264 4854 3594 Face 2862 1264 947 4854 Face 2863 611 1458 2191 Face 2864 611 3509 1458 Face 2865 38 1459 2245 Face 2866 38 1871 4229 Face 2867 388 1460 3388 Face 2868 388 1023 1460 Face 2869 176 2635 3779 Face 2870 4621 3526 1461 Face 2871 4060 1462 3638 Face 2872 4060 2987 1462 Face 2873 4829 4759 1999 Face 2874 3714 1634 1463 Face 2875 2393 2637 1292 Face 2876 3223 3708 1464 Face 2877 334 1465 1106 Face 2878 3236 2103 4223 Face 2879 1338 1466 1847 Face 2880 1338 4995 1466 Face 2881 306 3662 2038 Face 2882 306 4542 1467 Face 2883 3239 1468 2292 Face 2884 3239 476 1468 Face 2885 1961 2120 310 Face 2886 640 2428 4443 Face 2887 789 1980 2717 Face 2888 2835 399 1470 Face 2889 4416 1471 3244 Face 2890 2600 914 1471 Face 2891 3082 1472 1377 Face 2892 3082 3255 1472 Face 2893 147 1473 3645 Face 2894 147 1886 1473 Face 2895 3449 4096 1758 Face 2896 3449 2373 4096 Face 2897 415 4217 3473 Face 2898 415 4696 4217 Face 2899 3502 1476 1720 Face 2900 774 2531 1476 Face 2901 3872 3572 1431 Face 2902 1799 2977 1477 Face 2903 237 3632 1696 Face 2904 237 4815 3632 Face 2905 785 4827 2860 Face 2906 785 2331 4827 Face 2907 2627 1480 612 Face 2908 1776 2394 4927 Face 2909 3590 1481 2363 Face 2910 2446 4626 1315 Face 2911 253 4184 4626 Face 2912 340 1483 889 Face 2913 4718 1003 3198 Face 2914 2761 3744 939 Face 2915 2761 1318 3744 Face 2916 4994 2460 2570 Face 2917 4126 251 2460 Face 2918 2377 4507 3055 Face 2919 2377 894 1486 Face 2920 1287 1487 2801 Face 2921 2481 1068 3818 Face 2922 995 1488 4400 Face 2923 4410 2694 1488 Face 2924 3931 1489 2043 Face 2925 29 1418 4601 Face 2926 3017 1490 1695 Face 2927 943 80 4257 Face 2928 4424 1491 4618 Face 2929 4424 4244 1491 Face 2930 2722 3100 1139 Face 2931 520 3463 1492 Face 2932 5000 3615 3130 Face 2933 41 2572 3615 Face 2934 204 1494 2610 Face 2935 204 3553 1494 Face 2936 2921 1495 2083 Face 2937 4383 3562 1495 Face 2938 3639 4642 2930 Face 2939 1621 1941 4642 Face 2940 59 1497 1987 Face 2941 59 2307 1497 Face 2942 850 1498 3044 Face 2943 850 3070 1498 Face 2944 601 2821 4600 Face 2945 2047 2242 3967 Face 2946 2983 2347 1155 Face 2947 2506 564 4133 Face 2948 3263 1501 2655 Face 2949 652 25 2926 Face 2950 2606 1502 4243 Face 2951 2606 3097 1502 Face 2952 3748 1503 3145 Face 2953 3748 1722 1503 Face 2954 4157 1504 1605 Face 2955 3868 1169 2464 Face 2956 786 1772 4507 Face 2957 786 4917 1772 Face 2958 1334 1506 3635 Face 2959 1334 2273 1506 Face 2960 1945 3422 415 Face 2961 840 4857 3422 Face 2962 4337 1508 1088 Face 2963 538 2868 1508 Face 2964 2572 3437 506 Face 2965 1106 1465 3838 Face 2966 4527 1510 990 Face 2967 4527 4476 1510 Face 2968 2342 1511 1434 Face 2969 299 1804 1511 Face 2970 4149 1512 1821 Face 2971 597 1170 1512 Face 2972 2318 2507 744 Face 2973 855 3736 1513 Face 2974 2491 4336 4923 Face 2975 4767 513 4336 Face 2976 569 2898 942 Face 2977 3180 4417 1515 Face 2978 4594 1516 5040 Face 2979 4594 3991 1516 Face 2980 2834 1517 4563 Face 2981 2834 790 1517 Face 2982 57 3468 4075 Face 2983 1835 4313 2560 Face 2984 4356 3143 309 Face 2985 4356 2681 1519 Face 2986 2023 4559 470 Face 2987 3224 2280 1520 Face 2988 959 2376 1792 Face 2989 959 2601 4192 Face 2990 847 2628 4956 Face 2991 847 3189 2628 Face 2992 3810 2677 1122 Face 2993 33 3184 2677 Face 2994 3571 1524 2073 Face 2995 3571 706 1524 Face 2996 395 1525 3025 Face 2997 395 2356 4000 Face 2998 1304 4491 2629 Face 2999 1304 3825 1526 Face 3000 3671 4579 630 Face 3001 3238 3631 1527 Face 3002 971 1528 3219 Face 3003 971 3697 1528 Face 3004 499 1529 2816 Face 3005 499 922 4499 Face 3006 2085 1530 3152 Face 3007 3508 986 4537 Face 3008 657 1531 1732 Face 3009 4969 2788 1531 Face 3010 351 1532 2985 Face 3011 4379 992 1532 Face 3012 3858 1533 2640 Face 3013 3858 2113 1533 Face 3014 32 1534 2057 Face 3015 32 4232 3476 Face 3016 463 3448 749 Face 3017 463 2121 1535 Face 3018 3705 3445 436 Face 3019 949 3060 3445 Face 3020 534 1537 78 Face 3021 534 4943 1537 Face 3022 1050 2195 689 Face 3023 4729 556 4531 Face 3024 1840 1539 964 Face 3025 551 3678 1539 Face 3026 2234 3996 681 Face 3027 4612 3083 1540 Face 3028 2166 1590 2580 Face 3029 4595 1542 4462 Face 3030 4595 2547 1542 Face 3031 4421 3873 4013 Face 3032 3012 854 1543 Face 3033 387 3357 2185 Face 3034 387 968 1544 Face 3035 3708 4271 1464 Face 3036 2180 3174 2725 Face 3037 2909 1546 2243 Face 3038 697 935 3213 Face 3039 711 2956 2044 Face 3040 2488 1520 2280 Face 3041 3056 5020 1222 Face 3042 655 3795 5020 Face 3043 4165 1549 3183 Face 3044 4165 1071 1549 Face 3045 2428 4095 3246 Face 3046 465 1073 1550 Face 3047 1898 1551 1680 Face 3048 1180 3657 3318 Face 3049 240 4298 3782 Face 3050 240 620 2587 Face 3051 4030 3274 905 Face 3052 757 1677 2065 Face 3053 920 3625 2289 Face 3054 920 2504 3625 Face 3055 742 3680 2916 Face 3056 742 4721 1555 Face 3057 511 4984 1114 Face 3058 511 3830 2202 Face 3059 224 1646 2709 Face 3060 4225 2197 4646 Face 3061 3717 1558 3077 Face 3062 2270 2931 1558 Face 3063 423 1559 3747 Face 3064 3415 826 2406 Face 3065 104 3427 2940 Face 3066 104 865 3427 Face 3067 3636 1561 108 Face 3068 3636 4574 1561 Face 3069 952 1562 2692 Face 3070 952 4788 1562 Face 3071 4010 1563 2408 Face 3072 4010 3646 1563 Face 3073 2437 4345 938 Face 3074 627 2842 4345 Face 3075 3541 2511 858 Face 3076 410 729 1565 Face 3077 353 1566 1422 Face 3078 3212 5044 2872 Face 3079 158 2436 1391 Face 3080 158 2165 4280 Face 3081 791 1568 2390 Face 3082 791 3556 1568 Face 3083 180 1569 1392 Face 3084 180 3417 1569 Face 3085 4246 1570 3326 Face 3086 808 4713 4124 Face 3087 4409 1571 370 Face 3088 278 3711 1571 Face 3089 3232 1572 3494 Face 3090 965 1573 4715 Face 3091 965 3492 1573 Face 3092 676 3978 4640 Face 3093 676 2790 3978 Face 3094 3155 1575 1316 Face 3095 361 3202 1575 Face 3096 95 4657 2563 Face 3097 95 937 4657 Face 3098 531 1577 3577 Face 3099 531 3746 1577 Face 3100 1213 1578 3916 Face 3101 1213 474 1578 Face 3102 970 3984 508 Face 3103 970 2483 2833 Face 3104 764 5027 3621 Face 3105 764 1206 5027 Face 3106 1036 1581 1806 Face 3107 1036 228 3707 Face 3108 3304 1582 838 Face 3109 365 1583 4112 Face 3110 2253 887 4740 Face 3111 2501 4749 3368 Face 3112 364 4138 1584 Face 3113 162 1585 3381 Face 3114 162 4892 1585 Face 3115 2480 4607 1197 Face 3116 979 526 2925 Face 3117 27 1587 4530 Face 3118 27 1375 2869 Face 3119 431 1588 3715 Face 3120 431 2626 1588 Face 3121 633 2812 1406 Face 3122 633 2276 2812 Face 3123 1541 1590 2166 Face 3124 908 1591 3589 Face 3125 3211 725 4431 Face 3126 563 4569 1399 Face 3127 563 4934 3285 Face 3128 1964 1593 2316 Face 3129 148 525 1593 Face 3130 3156 1594 3456 Face 3131 3156 332 1594 Face 3132 2689 1595 832 Face 3133 726 3412 3738 Face 3134 3521 2878 1896 Face 3135 4365 4801 2878 Face 3136 575 2696 4942 Face 3137 2815 199 4378 Face 3138 843 1598 3366 Face 3139 2490 4647 3851 Face 3140 2490 1960 1599 Face 3141 447 1600 3777 Face 3142 447 4500 1600 Face 3143 4180 1601 2322 Face 3144 4180 2638 1601 Face 3145 1319 4161 2312 Face 3146 1319 2125 4161 Face 3147 325 2870 2184 Face 3148 4027 2772 1603 Face 3149 67 3438 5001 Face 3150 2974 1014 1604 Face 3151 2819 3539 1925 Face 3152 2819 4157 1605 Face 3153 4329 3849 2114 Face 3154 3014 1478 1606 Face 3155 548 1607 3501 Face 3156 2640 1021 3116 Face 3157 267 2807 1497 Face 3158 267 1032 1608 Face 3159 872 3841 1255 Face 3160 872 2967 1609 Face 3161 274 1610 2157 Face 3162 274 2966 1610 Face 3163 3336 2685 537 Face 3164 1186 3121 2685 Face 3165 4548 1612 1438 Face 3166 4548 925 2952 Face 3167 3907 2747 805 Face 3168 4855 2103 1613 Face 3169 767 1614 4367 Face 3170 767 3552 1614 Face 3171 939 2206 3243 Face 3172 939 3809 2206 Face 3173 4602 3130 1493 Face 3174 984 1479 1616 Face 3175 21 1617 3187 Face 3176 21 2686 1617 Face 3177 830 2866 2061 Face 3178 4017 4538 1618 Face 3179 966 3910 701 Face 3180 3394 1365 2445 Face 3181 358 1620 3834 Face 3182 358 3628 1620 Face 3183 498 1621 4642 Face 3184 498 2840 1621 Face 3185 151 2027 2039 Face 3186 151 3865 1622 Face 3187 2930 2135 3639 Face 3188 383 4216 2135 Face 3189 3882 1624 4325 Face 3190 3490 1391 4777 Face 3191 4228 1625 459 Face 3192 3588 2615 1625 Face 3193 3870 1626 2433 Face 3194 1272 4858 1626 Face 3195 2642 2370 4795 Face 3196 4050 2267 1627 Face 3197 4624 2770 1447 Face 3198 191 759 3460 Face 3199 2179 1629 1072 Face 3200 700 3871 1629 Face 3201 468 1630 3451 Face 3202 468 4631 1630 Face 3203 244 3062 1009 Face 3204 244 4486 1631 Face 3205 1927 4862 4592 Face 3206 2435 960 1632 Face 3207 729 2688 3444 Face 3208 729 2995 4921 Face 3209 464 1634 3714 Face 3210 4894 1278 2279 Face 3211 708 2998 4143 Face 3212 3439 386 2998 Face 3213 926 1636 2951 Face 3214 926 472 1636 Face 3215 100 3544 4726 Face 3216 100 2133 4263 Face 3217 25 1638 1343 Face 3218 25 652 1638 Face 3219 262 1639 4307 Face 3220 262 987 2385 Face 3221 2267 4909 1627 Face 3222 4089 1013 4909 Face 3223 5052 4459 1335 Face 3224 5052 2797 4459 Face 3225 2298 1642 4750 Face 3226 815 3387 1642 Face 3227 3215 1643 506 Face 3228 3215 3045 1643 Face 3229 4964 1644 3615 Face 3230 4964 2618 1644 Face 3231 3655 2254 989 Face 3232 4514 5002 2946 Face 3233 1557 1646 224 Face 3234 3252 3373 3103 Face 3235 2221 1647 3438 Face 3236 3167 56 2459 Face 3237 4719 1648 3120 Face 3238 3145 1503 2534 Face 3239 771 4014 1579 Face 3240 4510 2739 4014 Face 3241 124 4722 683 Face 3242 124 3893 2512 Face 3243 1099 4721 742 Face 3244 2412 4110 4721 Face 3245 3081 2733 5048 Face 3246 3081 1182 1652 Face 3247 974 1653 346 Face 3248 4140 1233 2266 Face 3249 4392 1654 2198 Face 3250 4392 2077 1654 Face 3251 5016 1655 3228 Face 3252 120 4302 3472 Face 3253 3695 4700 2120 Face 3254 3695 4219 1656 Face 3255 561 4852 3020 Face 3256 561 1246 4852 Face 3257 4896 2493 1161 Face 3258 4896 2222 2493 Face 3259 740 1659 4742 Face 3260 740 4447 1659 Face 3261 3424 1660 3072 Face 3262 3424 1010 1660 Face 3263 889 1661 4187 Face 3264 889 2343 1661 Face 3265 989 1662 4316 Face 3266 989 2254 1662 Face 3267 3863 1663 1030 Face 3268 121 2806 1663 Face 3269 137 1664 2699 Face 3270 3022 1322 1664 Face 3271 570 3557 2119 Face 3272 2440 2901 3557 Face 3273 3585 3430 2388 Face 3274 222 3085 4296 Face 3275 460 2649 3516 Face 3276 460 2288 4081 Face 3277 140 4957 2024 Face 3278 140 1565 1668 Face 3279 438 1669 3036 Face 3280 438 3605 1669 Face 3281 1098 1670 2774 Face 3282 3694 1794 3425 Face 3283 4483 1671 2259 Face 3284 4483 3958 1671 Face 3285 111 3426 2659 Face 3286 111 1810 3426 Face 3287 1169 1673 2464 Face 3288 3999 68 3067 Face 3289 512 1674 2469 Face 3290 1978 450 3443 Face 3291 4659 1675 2697 Face 3292 1145 2894 1675 Face 3293 2857 3096 1280 Face 3294 437 2078 1676 Face 3295 3407 2829 1220 Face 3296 3691 2065 1677 Face 3297 694 3432 4288 Face 3298 4755 4117 1678 Face 3299 4551 1679 715 Face 3300 4551 2485 1679 Face 3301 3665 1680 1551 Face 3302 233 2561 1680 Face 3303 539 3797 1444 Face 3304 4293 1252 3797 Face 3305 535 4743 2146 Face 3306 2470 1093 4743 Face 3307 3614 1683 4429 Face 3308 3614 1271 1683 Face 3309 695 1684 1285 Face 3310 695 4848 1684 Face 3311 2115 1685 3741 Face 3312 132 2364 1685 Face 3313 866 4509 350 Face 3314 866 18 4509 Face 3315 804 3989 1506 Face 3316 804 1400 1687 Face 3317 2341 3640 253 Face 3318 565 2063 1688 Face 3319 141 1689 2835 Face 3320 141 4152 3245 Face 3321 4907 1690 1376 Face 3322 616 2771 1690 Face 3323 4297 1691 1113 Face 3324 3528 3693 1691 Face 3325 1989 3324 333 Face 3326 631 235 1692 Face 3327 3249 1693 2864 Face 3328 3249 5014 1693 Face 3329 1120 1694 174 Face 3330 2705 1457 4505 Face 3331 4125 1695 1490 Face 3332 4125 1596 1695 Face 3333 1138 4757 408 Face 3334 4009 1236 4757 Face 3335 891 2732 4515 Face 3336 891 1435 2732 Face 3337 772 1698 2484 Face 3338 772 1211 1698 Face 3339 4742 1699 740 Face 3340 4742 4449 1699 Face 3341 1423 2565 3772 Face 3342 4785 2556 3506 Face 3343 3332 1701 2918 Face 3344 1294 1536 1701 Face 3345 441 1702 3754 Face 3346 441 4886 3227 Face 3347 2462 4174 1364 Face 3348 2462 2881 4174 Face 3349 275 1704 4239 Face 3350 275 4191 1704 Face 3351 3405 1705 1059 Face 3352 2982 1251 3786 Face 3353 4026 1706 812 Face 3354 4471 65 2605 Face 3355 4876 1707 778 Face 3356 1178 4734 3928 Face 3357 3159 4251 237 Face 3358 394 1649 2752 Face 3359 4360 1709 2999 Face 3360 4360 3844 1709 Face 3361 487 1710 3267 Face 3362 487 2139 1710 Face 3363 374 3703 948 Face 3364 374 4015 4946 Face 3365 3679 1712 2396 Face 3366 3679 2476 1712 Face 3367 2389 2607 3264 Face 3368 3658 3021 1713 Face 3369 3906 1714 1349 Face 3370 3906 3796 4807 Face 3371 501 1715 3104 Face 3372 501 4051 1715 Face 3373 3612 1716 2702 Face 3374 3612 945 1716 Face 3375 3054 1717 1015 Face 3376 482 4220 3459 Face 3377 892 1718 2729 Face 3378 892 4765 1718 Face 3379 504 1719 4579 Face 3380 504 1384 1719 Face 3381 155 1720 446 Face 3382 155 3502 1720 Face 3383 4447 2602 4754 Face 3384 157 3291 2602 Face 3385 446 1722 2736 Face 3386 446 1503 1722 Face 3387 950 1723 1494 Face 3388 950 3021 1723 Face 3389 2832 4276 2260 Face 3390 2832 1300 4276 Face 3391 4860 1725 2173 Face 3392 13 2159 1725 Face 3393 2665 1726 849 Face 3394 4122 3770 2130 Face 3395 1012 1727 4753 Face 3396 1012 4799 1727 Face 3397 71 1728 2735 Face 3398 3037 1151 1728 Face 3399 3317 1729 4558 Face 3400 3317 166 1729 Face 3401 286 1730 4026 Face 3402 2286 611 3540 Face 3403 4475 1731 2417 Face 3404 961 2730 1731 Face 3405 3883 1732 1531 Face 3406 1093 347 4377 Face 3407 207 1733 3705 Face 3408 207 2946 1733 Face 3409 884 4902 1304 Face 3410 2474 4677 1734 Face 3411 1828 1827 3608 Face 3412 592 2615 4725 Face 3413 592 1625 2615 Face 3414 750 1737 4424 Face 3415 750 3713 3279 Face 3416 733 2081 1238 Face 3417 4525 2275 2081 Face 3418 3519 1739 2871 Face 3419 528 2866 4552 Face 3420 4771 1740 2711 Face 3421 2877 76 1740 Face 3422 968 1741 144 Face 3423 968 2099 1741 Face 3424 2758 1742 3277 Face 3425 2758 4286 1742 Face 3426 2672 3578 1165 Face 3427 3916 1578 3578 Face 3428 1202 4353 3480 Face 3429 1202 2587 4353 Face 3430 1380 1745 30 Face 3431 3151 4863 1745 Face 3432 453 4536 3044 Face 3433 3697 971 3053 Face 3434 3123 1747 2085 Face 3435 3123 4998 1747 Face 3436 2595 1748 4064 Face 3437 75 2953 3801 Face 3438 477 1749 3592 Face 3439 477 1647 1749 Face 3440 379 1750 1115 Face 3441 2710 1843 1750 Face 3442 3846 1751 2399 Face 3443 3846 3673 1751 Face 3444 2979 1752 4129 Face 3445 2414 951 3515 Face 3446 2386 4248 1192 Face 3447 2386 1536 3060 Face 3448 927 1754 4832 Face 3449 927 3985 1754 Face 3450 814 4730 1592 Face 3451 3305 1044 1755 Face 3452 3257 1756 957 Face 3453 687 2923 4259 Face 3454 1038 1757 3409 Face 3455 1038 2441 1757 Face 3456 3970 1758 797 Face 3457 345 3449 1758 Face 3458 2332 4291 2954 Face 3459 1034 614 1759 Face 3460 107 1760 2514 Face 3461 107 574 1760 Face 3462 1044 3606 619 Face 3463 1044 3305 3606 Face 3464 1105 1762 3482 Face 3465 1105 308 1762 Face 3466 656 2405 921 Face 3467 656 1256 3132 Face 3468 2579 1765 4404 Face 3469 1764 1765 3731 Face 3470 3808 1766 4800 Face 3471 2536 3092 2836 Face 3472 2966 1767 1610 Face 3473 4588 1372 1767 Face 3474 602 1768 3403 Face 3475 602 1982 4806 Face 3476 295 2313 2913 Face 3477 295 4353 2313 Face 3478 845 1770 4770 Face 3479 845 1572 1770 Face 3480 2644 3309 1356 Face 3481 4178 2543 1771 Face 3482 2134 2814 192 Face 3483 1505 4507 1772 Face 3484 1192 1773 4025 Face 3485 2541 1683 2128 Face 3486 937 1774 4766 Face 3487 937 95 1774 Face 3488 4412 1775 432 Face 3489 2959 665 3603 Face 3490 2627 1776 4114 Face 3491 273 2581 2963 Face 3492 4611 1777 2812 Face 3493 4611 3009 1777 Face 3494 3560 1778 2910 Face 3495 433 1131 3040 Face 3496 375 1779 1686 Face 3497 3664 2949 1779 Face 3498 1242 1780 357 Face 3499 1242 3688 1780 Face 3500 194 1781 982 Face 3501 194 4077 1781 Face 3502 1349 4062 3906 Face 3503 1349 3035 4062 Face 3504 935 1783 4466 Face 3505 935 234 1783 Face 3506 608 4473 3124 Face 3507 2159 3370 1784 Face 3508 4622 3312 599 Face 3509 1286 3701 1785 Face 3510 754 1786 1655 Face 3511 2164 77 3980 Face 3512 783 1787 2489 Face 3513 783 3918 1787 Face 3514 2530 1788 4820 Face 3515 2530 4085 1788 Face 3516 4979 3058 2869 Face 3517 4080 1199 1789 Face 3518 775 1790 2578 Face 3519 4243 1502 1790 Face 3520 1112 2686 2232 Face 3521 1112 321 1791 Face 3522 581 4091 1521 Face 3523 581 77 1792 Face 3524 709 1793 3282 Face 3525 2289 560 4472 Face 3526 2716 1794 3694 Face 3527 993 2458 1794 Face 3528 4301 1795 1339 Face 3529 289 2094 4706 Face 3530 421 1796 2335 Face 3531 421 1973 1796 Face 3532 860 2653 4327 Face 3533 860 1702 1797 Face 3534 4947 3965 2190 Face 3535 2619 4616 1798 Face 3536 4503 3872 2601 Face 3537 456 1177 3872 Face 3538 3781 1800 3642 Face 3539 3781 2457 1800 Face 3540 1499 3967 2242 Face 3541 1499 3742 3967 Face 3542 269 1802 2756 Face 3543 269 4480 1802 Face 3544 1063 4219 4826 Face 3545 1063 1656 4219 Face 3546 994 1804 299 Face 3547 4853 430 2657 Face 3548 508 1805 2372 Face 3549 508 3984 1805 Face 3550 475 1806 2908 Face 3551 475 908 3589 Face 3552 169 1807 3950 Face 3553 2920 844 4215 Face 3554 4482 2662 391 Face 3555 3975 3766 1808 Face 3556 4103 2843 4914 Face 3557 3117 1208 3396 Face 3558 903 2694 4410 Face 3559 903 3426 1810 Face 3560 248 1811 2321 Face 3561 248 3331 1811 Face 3562 3150 1812 37 Face 3563 3150 1467 1812 Face 3564 1255 5022 2666 Face 3565 2986 415 3473 Face 3566 625 4135 3990 Face 3567 625 2201 4135 Face 3568 718 3683 282 Face 3569 2936 2287 1815 Face 3570 635 1816 460 Face 3571 4273 1442 1816 Face 3572 2697 4635 4659 Face 3573 1817 1818 2861 Face 3574 3047 1819 2957 Face 3575 3047 488 1819 Face 3576 337 1820 2545 Face 3577 5017 76 4162 Face 3578 164 1821 1512 Face 3579 164 4236 1821 Face 3580 494 1822 3154 Face 3581 494 4405 1822 Face 3582 545 3192 2262 Face 3583 3304 838 1823 Face 3584 245 1824 3597 Face 3585 245 3118 1824 Face 3586 4745 2622 137 Face 3587 919 336 1825 Face 3588 323 4667 1446 Face 3589 323 3924 4667 Face 3590 1735 1827 1828 Face 3591 1 1828 3608 Face 3592 287 3930 3109 Face 3593 4934 563 3930 Face 3594 1370 4598 3182 Face 3595 1868 871 1830 Face 3596 259 2648 594 Face 3597 259 1381 2648 Face 3598 797 1832 3970 Face 3599 797 2977 1832 Face 3600 692 4441 4118 Face 3601 692 3479 4441 Face 3602 3385 1834 201 Face 3603 496 1661 3722 Face 3604 57 1835 3468 Face 3605 57 5049 1835 Face 3606 3247 1836 3862 Face 3607 778 363 2371 Face 3608 3921 4790 1071 Face 3609 146 3235 1837 Face 3610 50 1838 3278 Face 3611 3876 4692 2402 Face 3612 865 4517 2712 Face 3613 865 1167 3197 Face 3614 551 1840 3250 Face 3615 551 1539 1840 Face 3616 4474 3740 1019 Face 3617 4474 913 1841 Face 3618 3565 1842 2945 Face 3619 3565 4695 1842 Face 3620 702 1843 4005 Face 3621 702 5059 1843 Face 3622 3261 2557 3494 Face 3623 68 2898 1844 Face 3624 3289 1845 378 Face 3625 84 1234 4338 Face 3626 4880 1846 3613 Face 3627 43 1308 1846 Face 3628 171 2708 4478 Face 3629 171 3166 1847 Face 3630 409 2958 139 Face 3631 2002 3814 1848 Face 3632 419 1849 1306 Face 3633 3768 3436 1849 Face 3634 760 4634 3394 Face 3635 2629 4491 2477 Face 3636 338 1851 787 Face 3637 338 1171 1851 Face 3638 874 1852 2015 Face 3639 874 134 1852 Face 3640 3292 1853 4266 Face 3641 2200 3994 1853 Face 3642 3511 1854 4700 Face 3643 3511 3928 4734 Face 3644 856 3822 283 Face 3645 856 1710 3822 Face 3646 1379 1856 229 Face 3647 1379 1512 1856 Face 3648 3661 4191 275 Face 3649 822 3951 1857 Face 3650 765 4641 3362 Face 3651 3803 4870 1858 Face 3652 2800 3135 846 Face 3653 301 4951 1859 Face 3654 3169 3000 4086 Face 3655 1268 4252 1860 Face 3656 196 4772 2944 Face 3657 196 1160 4772 Face 3658 2537 1862 3008 Face 3659 2537 448 1862 Face 3660 816 1863 1788 Face 3661 816 4720 1863 Face 3662 113 1864 4385 Face 3663 2411 4672 1864 Face 3664 2676 1865 3948 Face 3665 2676 2849 1865 Face 3666 1430 1866 3475 Face 3667 1430 2327 1866 Face 3668 4433 1867 4399 Face 3669 4433 243 1867 Face 3670 1370 1868 1830 Face 3671 1370 871 1868 Face 3672 5039 1869 2697 Face 3673 5039 4320 1869 Face 3674 199 2867 1869 Face 3675 199 1452 1870 Face 3676 881 2731 2512 Face 3677 881 343 2731 Face 3678 3915 2863 182 Face 3679 673 71 4901 Face 3680 4417 1873 4211 Face 3681 258 1502 1873 Face 3682 1445 1874 2330 Face 3683 1445 304 1874 Face 3684 873 3804 2383 Face 3685 3161 1290 1875 Face 3686 118 1876 4002 Face 3687 118 2683 1876 Face 3688 188 2929 681 Face 3689 4956 2628 2929 Face 3690 956 1878 4512 Face 3691 956 4251 3709 Face 3692 880 1879 2793 Face 3693 880 278 1879 Face 3694 4076 3364 3482 Face 3695 82 1881 4978 Face 3696 82 4020 1881 Face 3697 618 1882 2780 Face 3698 618 3373 1882 Face 3699 3030 1883 4132 Face 3700 3030 3867 5057 Face 3701 4566 3752 547 Face 3702 195 1289 3752 Face 3703 474 1885 1578 Face 3704 474 290 1885 Face 3705 4991 1886 4036 Face 3706 4991 1665 1886 Face 3707 1003 1887 3038 Face 3708 1003 2734 1887 Face 3709 4200 1888 1311 Face 3710 4200 2766 1888 Face 3711 1011 1889 4708 Face 3712 1011 2473 1889 Face 3713 332 1890 3111 Face 3714 332 1166 1890 Face 3715 302 4573 1070 Face 3716 302 1537 4573 Face 3717 1448 1892 4603 Face 3718 1448 2670 1892 Face 3719 2360 1893 1561 Face 3720 2360 3560 1893 Face 3721 1425 1894 3495 Face 3722 1425 49 1894 Face 3723 1075 1895 319 Face 3724 1075 4639 1895 Face 3725 3815 2516 1514 Face 3726 3815 3521 1896 Face 3727 4564 1897 768 Face 3728 1313 497 3663 Face 3729 1180 1898 2132 Face 3730 1180 1551 1898 Face 3731 1206 4264 5027 Face 3732 1206 282 4264 Face 3733 23 1900 417 Face 3734 2816 1230 3319 Face 3735 161 1901 4040 Face 3736 161 4922 1901 Face 3737 3989 4521 1506 Face 3738 3989 3275 1902 Face 3739 868 3297 223 Face 3740 868 4923 4432 Face 3741 2796 1904 5004 Face 3742 678 1420 2455 Face 3743 4198 1905 4752 Face 3744 4418 3459 1905 Face 3745 4577 1906 4359 Face 3746 4577 1539 1906 Face 3747 987 1907 2887 Face 3748 987 4155 1907 Face 3749 774 1908 2531 Face 3750 774 3013 1908 Face 3751 190 2639 1190 Face 3752 190 4536 1909 Face 3753 426 3966 988 Face 3754 426 2975 3966 Face 3755 397 1911 2839 Face 3756 4484 1170 4046 Face 3757 1311 1912 3942 Face 3758 1311 4004 1912 Face 3759 4371 1913 93 Face 3760 20 4246 1913 Face 3761 3890 1914 727 Face 3762 615 2334 1914 Face 3763 4115 3321 2354 Face 3764 1055 3312 1915 Face 3765 406 1916 2509 Face 3766 406 1083 1916 Face 3767 1017 1917 3601 Face 3768 3380 966 4270 Face 3769 336 2418 4303 Face 3770 336 4289 1918 Face 3771 3882 2498 1624 Face 3772 36 1416 1919 Face 3773 3088 4222 1472 Face 3774 1179 4096 2373 Face 3775 612 1921 1200 Face 3776 612 1480 3005 Face 3777 451 1922 2635 Face 3778 451 3564 1922 Face 3779 1040 1923 4663 Face 3780 1040 4916 1923 Face 3781 737 1924 4819 Face 3782 737 3302 1924 Face 3783 4794 1925 2713 Face 3784 4794 2819 1925 Face 3785 143 2566 2625 Face 3786 3206 661 1926 Face 3787 4498 1927 4629 Face 3788 2435 1632 1927 Face 3789 3325 4808 1991 Face 3790 3325 3052 1928 Face 3791 1435 4402 2732 Face 3792 1435 4023 2136 Face 3793 1025 1930 3342 Face 3794 1025 3811 1930 Face 3795 916 1931 4368 Face 3796 916 248 1931 Face 3797 413 3793 2392 Face 3798 3331 916 3793 Face 3799 461 1933 496 Face 3800 461 2571 1933 Face 3801 3350 2549 1332 Face 3802 234 935 1934 Face 3803 731 1935 3558 Face 3804 731 4245 1935 Face 3805 1151 1936 3664 Face 3806 1151 3037 1936 Face 3807 588 1937 3484 Face 3808 4544 242 4143 Face 3809 1478 1938 4815 Face 3810 1478 3014 1938 Face 3811 681 1939 3288 Face 3812 681 4206 1939 Face 3813 2190 1940 587 Face 3814 2190 3965 1940 Face 3815 746 1941 1386 Face 3816 4344 4642 1941 Face 3817 951 3635 1506 Face 3818 951 2414 3635 Face 3819 393 1943 1586 Face 3820 393 2718 1943 Face 3821 442 1944 4308 Face 3822 442 4966 1944 Face 3823 2721 1945 1011 Face 3824 2721 3422 1945 Face 3825 376 1946 4213 Face 3826 4453 777 1946 Face 3827 2466 1947 4975 Face 3828 2466 4372 1947 Face 3829 4391 1948 1041 Face 3830 102 3007 1948 Face 3831 4982 1949 498 Face 3832 851 3015 3188 Face 3833 857 1950 1770 Face 3834 1246 1951 3845 Face 3835 1246 561 1951 Face 3836 4111 3266 212 Face 3837 3642 4823 1952 Face 3838 1364 1953 3377 Face 3839 4049 995 1953 Face 3840 153 1954 3172 Face 3841 153 3839 1954 Face 3842 439 1955 2171 Face 3843 439 1766 1955 Face 3844 3545 3281 360 Face 3845 915 64 1956 Face 3846 923 1957 3467 Face 3847 2907 446 2736 Face 3848 1549 2407 3183 Face 3849 1549 3489 1958 Face 3850 684 3591 4171 Face 3851 2426 3947 3591 Face 3852 730 1960 2490 Face 3853 730 2778 4458 Face 3854 3820 1961 4513 Face 3855 2497 1469 1961 Face 3856 211 1962 749 Face 3857 3702 2845 1962 Face 3858 3923 1963 2838 Face 3859 2591 3329 1963 Face 3860 4396 1964 1037 Face 3861 148 1593 1964 Face 3862 536 4159 2546 Face 3863 536 1651 4159 Face 3864 641 4835 3462 Face 3865 641 1923 4835 Face 3866 958 1967 3322 Face 3867 2817 4939 1967 Face 3868 115 1968 3914 Face 3869 115 1824 1968 Face 3870 2822 1969 1711 Face 3871 2822 2239 1969 Face 3872 852 1970 3471 Face 3873 852 1938 3014 Face 3874 3609 1971 2493 Face 3875 664 1881 1971 Face 3876 1619 1972 2798 Face 3877 2445 1365 4145 Face 3878 4343 2669 3338 Face 3879 4343 2574 4524 Face 3880 4672 3371 3076 Face 3881 1124 3936 1974 Face 3882 3987 1975 3899 Face 3883 3987 3461 1975 Face 3884 445 4299 2647 Face 3885 445 3122 4299 Face 3886 44 4307 1639 Face 3887 44 5005 1977 Face 3888 512 4568 1674 Face 3889 3280 355 3141 Face 3890 3859 1979 4455 Face 3891 4972 2332 4625 Face 3892 3593 1980 789 Face 3893 3593 2071 1980 Face 3894 1067 4687 572 Face 3895 4816 3379 1981 Face 3896 1018 1982 1229 Face 3897 1018 4806 1982 Face 3898 279 1983 3566 Face 3899 279 1168 1983 Face 3900 3236 3645 1473 Face 3901 334 1106 1984 Face 3902 81 1985 4439 Face 3903 81 4176 3458 Face 3904 4347 3718 825 Face 3905 2102 2494 3254 Face 3906 1046 1987 2807 Face 3907 1046 2209 3737 Face 3908 1111 2969 222 Face 3909 1111 247 2969 Face 3910 3354 1989 101 Face 3911 631 3324 1989 Face 3912 206 1990 3490 Face 3913 206 990 1990 Face 3914 1002 3995 110 Face 3915 1002 3325 3995 Face 3916 619 1992 2942 Face 3917 4682 2382 1992 Face 3918 485 4067 1241 Face 3919 485 2889 4067 Face 3920 205 1994 3919 Face 3921 4600 2821 1994 Face 3922 285 5006 3644 Face 3923 285 4590 5006 Face 3924 3494 1996 3232 Face 3925 3494 2557 1996 Face 3926 1599 4647 2490 Face 3927 1599 2378 4647 Face 3928 642 4643 4435 Face 3929 2297 3474 4643 Face 3930 807 1999 4759 Face 3931 807 4796 1999 Face 3932 675 2000 3358 Face 3933 675 3513 2000 Face 3934 519 2001 2639 Face 3935 519 142 2001 Face 3936 409 2002 1848 Face 3937 3897 1010 4660 Face 3938 3675 2003 1029 Face 3939 31 3619 2003 Face 3940 260 2004 4756 Face 3941 260 1623 4216 Face 3942 318 2005 4847 Face 3943 318 2739 2005 Face 3944 3619 4985 809 Face 3945 526 979 3419 Face 3946 1087 2007 3327 Face 3947 1087 1648 4561 Face 3948 913 3104 1715 Face 3949 913 4474 4867 Face 3950 131 2009 3404 Face 3951 131 1086 2009 Face 3952 3485 2638 4180 Face 3953 152 1272 2010 Face 3954 1264 2011 4333 Face 3955 1264 79 2011 Face 3956 1252 3973 2903 Face 3957 1252 4968 2012 Face 3958 1702 2013 2897 Face 3959 1702 441 4464 Face 3960 312 2014 4142 Face 3961 3413 985 4444 Face 3962 3729 2015 1231 Face 3963 854 3012 2015 Face 3964 2618 2016 3505 Face 3965 2618 3087 2016 Face 3966 904 2017 481 Face 3967 4461 87 4935 Face 3968 855 2018 1359 Face 3969 2318 4583 2018 Face 3970 237 2019 3159 Face 3971 237 1696 2019 Face 3972 541 4675 3401 Face 3973 541 3723 4675 Face 3974 1123 4912 1436 Face 3975 3567 10 2021 Face 3976 568 2022 1606 Face 3977 568 3162 2022 Face 3978 2527 3775 954 Face 3979 5024 1520 2023 Face 3980 515 2024 4957 Face 3981 515 942 4961 Face 3982 2614 4007 2653 Face 3983 2614 3770 2025 Face 3984 423 2026 1559 Face 3985 1622 3477 151 Face 3986 4614 2163 3477 Face 3987 594 2938 1670 Face 3988 594 2648 3960 Face 3989 2960 4005 1843 Face 3990 457 3865 2029 Face 3991 1089 2030 139 Face 3992 3780 604 4426 Face 3993 832 4486 2870 Face 3994 832 1595 4486 Face 3995 370 3454 3088 Face 3996 4519 1226 2032 Face 3997 349 2033 2971 Face 3998 3868 1504 4157 Face 3999 3239 2034 4074 Face 4000 1166 332 4869 Face 4001 2891 4980 1314 Face 4002 741 2799 2035 Face 4003 326 4861 1329 Face 4004 4680 4351 2036 Face 4005 995 2037 753 Face 4006 995 4049 2037 Face 4007 505 2038 3662 Face 4008 4177 181 2038 Face 4009 921 2039 2027 Face 4010 921 4310 2039 Face 4011 3778 2040 1373 Face 4012 3778 2883 2040 Face 4013 1357 4232 1136 Face 4014 1357 679 2041 Face 4015 1240 2042 946 Face 4016 4650 493 3832 Face 4017 2837 2043 1489 Face 4018 2837 4008 2043 Face 4019 1378 2044 3347 Face 4020 1378 1137 3901 Face 4021 3275 2045 1902 Face 4022 1129 2927 2045 Face 4023 469 2046 1118 Face 4024 469 3491 2046 Face 4025 601 4250 2821 Face 4026 601 1253 4250 Face 4027 736 4383 4716 Face 4028 736 3351 4383 Face 4029 982 3498 373 Face 4030 982 3276 3498 Face 4031 666 2050 4224 Face 4032 666 3843 2050 Face 4033 1345 2051 4905 Face 4034 2913 4230 2051 Face 4035 4189 2052 2154 Face 4036 2713 1925 2052 Face 4037 4724 2053 2920 Face 4038 4724 946 2053 Face 4039 144 2054 4056 Face 4040 144 3469 2054 Face 4041 646 2055 3074 Face 4042 646 73 2055 Face 4043 4388 3187 1617 Face 4044 869 548 4786 Face 4045 1259 4427 805 Face 4046 1259 2911 4427 Face 4047 653 2058 2495 Face 4048 653 1798 4616 Face 4049 1128 4136 451 Face 4050 1128 76 4136 Face 4051 1214 2060 3348 Face 4052 1214 2885 3749 Face 4053 1101 2061 4977 Face 4054 1101 2608 2061 Face 4055 614 4479 3527 Face 4056 614 3573 2062 Face 4057 4220 2906 3459 Face 4058 398 3023 2063 Face 4059 183 2064 1007 Face 4060 183 3607 2064 Face 4061 4851 2065 3691 Face 4062 1553 4030 2065 Face 4063 978 2066 3725 Face 4064 978 3401 2066 Face 4065 513 2067 4185 Face 4066 513 4767 2067 Face 4067 976 2068 2953 Face 4068 976 3299 2068 Face 4069 11 2069 4309 Face 4070 11 2233 2069 Face 4071 717 2070 4948 Face 4072 3416 1346 2070 Face 4073 422 4814 3593 Face 4074 422 746 4814 Face 4075 3833 2072 544 Face 4076 3833 2767 2072 Face 4077 4478 2073 3414 Face 4078 1243 4218 2073 Face 4079 1191 2074 185 Face 4080 1191 3330 2074 Face 4081 256 3110 3654 Face 4082 4069 2825 2075 Face 4083 3301 2076 1657 Face 4084 507 4992 2076 Face 4085 3988 2077 4392 Face 4086 1221 2693 2077 Face 4087 182 2078 5042 Face 4088 182 4121 2078 Face 4089 1157 4151 3317 Face 4090 1157 4295 4151 Face 4091 3327 2080 1087 Face 4092 2828 4147 2080 Face 4093 1738 4940 2675 Face 4094 3699 1211 2465 Face 4095 88 2082 2066 Face 4096 88 1121 2082 Face 4097 694 2083 4331 Face 4098 694 4288 2083 Face 4099 796 2084 4436 Face 4100 796 1342 2084 Face 4101 290 2085 1885 Face 4102 3887 3123 2085 Face 4103 1309 3687 2311 Face 4104 1309 337 3687 Face 4105 720 2087 2500 Face 4106 720 2748 2087 Face 4107 818 4708 1889 Face 4108 2540 1022 4708 Face 4109 1265 4164 1008 Face 4110 4887 1943 2089 Face 4111 685 2090 4973 Face 4112 685 2249 2090 Face 4113 3920 4451 1712 Face 4114 638 3627 2091 Face 4115 969 2092 2251 Face 4116 969 3798 2092 Face 4117 321 2093 810 Face 4118 321 1112 3268 Face 4119 1414 3050 765 Face 4120 1414 2663 2094 Face 4121 3442 3026 1039 Face 4122 647 4510 2095 Face 4123 1270 4011 885 Face 4124 1270 5009 4011 Face 4125 2852 2097 2551 Face 4126 83 3356 2097 Face 4127 579 2098 4070 Face 4128 579 4454 2098 Face 4129 292 2099 3106 Face 4130 292 1870 2099 Face 4131 4938 2100 1052 Face 4132 4204 1626 2100 Face 4133 4547 2634 2325 Face 4134 4031 2102 1200 Face 4135 4031 2494 2102 Face 4136 1473 2103 3236 Face 4137 4608 1001 2103 Face 4138 432 2104 4412 Face 4139 432 3372 2104 Face 4140 304 2105 5028 Face 4141 304 1445 4367 Face 4142 467 2106 3733 Face 4143 467 1847 2106 Face 4144 167 2107 3852 Face 4145 167 4843 2107 Face 4146 4290 2108 3789 Face 4147 4290 1900 2108 Face 4148 1029 2109 3675 Face 4149 1029 1274 4974 Face 4150 637 2110 1859 Face 4151 3785 3375 2110 Face 4152 3538 4620 1225 Face 4153 395 3025 4620 Face 4154 3200 2112 2013 Face 4155 1147 4423 2425 Face 4156 4012 591 2113 Face 4157 1069 2114 3849 Face 4158 1069 2538 2114 Face 4159 132 2115 3795 Face 4160 132 1685 2115 Face 4161 909 2116 1918 Face 4162 909 3310 2116 Face 4163 1042 4090 3136 Face 4164 1042 4703 4090 Face 4165 34 2118 1235 Face 4166 34 3420 2118 Face 4167 3461 2119 3557 Face 4168 3461 3987 2119 Face 4169 1469 3499 1961 Face 4170 1469 1201 3499 Face 4171 2542 2121 463 Face 4172 4446 3533 2121 Face 4173 1244 2122 4496 Face 4174 1244 3010 2122 Face 4175 567 2123 2786 Face 4176 567 3350 2123 Face 4177 833 2124 4534 Face 4178 833 3486 2124 Face 4179 85 2125 1319 Face 4180 85 981 2125 Face 4181 3046 4471 2605 Face 4182 2831 938 2126 Face 4183 5049 3605 4197 Face 4184 1095 270 2791 Face 4185 1773 2128 2959 Face 4186 1773 1192 2128 Face 4187 1363 3666 1948 Face 4188 1363 2423 2129 Face 4189 4712 2130 372 Face 4190 1726 4122 2130 Face 4191 1107 2131 1389 Face 4192 3588 1625 4228 Face 4193 917 2132 2902 Face 4194 917 4269 2132 Face 4195 1232 2133 3203 Face 4196 1232 671 2133 Face 4197 4318 4857 4123 Face 4198 4318 2814 2134 Face 4199 1623 2135 4216 Face 4200 1623 3440 2135 Face 4201 1929 2136 1005 Face 4202 1929 1697 2136 Face 4203 2630 3229 1205 Face 4204 1235 2118 2137 Face 4205 532 2138 2637 Face 4206 532 3674 2138 Face 4207 165 4781 1403 Face 4208 165 3411 4781 Face 4209 264 2140 3850 Face 4210 2985 4655 2140 Face 4211 1130 2141 820 Face 4212 1130 3235 2141 Face 4213 3946 2142 381 Face 4214 998 1715 4051 Face 4215 1053 2143 522 Face 4216 1053 4313 2143 Face 4217 76 4285 1740 Face 4218 76 5017 2144 Face 4219 872 2145 4413 Face 4220 872 4339 2145 Face 4221 1303 2146 3939 Face 4222 4394 535 2146 Face 4223 400 2933 4037 Face 4224 400 3699 2933 Face 4225 1348 2148 3685 Face 4226 1348 4209 2148 Face 4227 118 3378 1096 Face 4228 118 4002 3378 Face 4229 258 4417 3180 Face 4230 258 1873 4417 Face 4231 2723 2151 1752 Face 4232 2723 3831 2151 Face 4233 1950 2152 1189 Face 4234 1433 2153 3343 Face 4235 1433 2596 2153 Face 4236 1302 2681 3649 Face 4237 1302 973 2154 Face 4238 1049 4085 3456 Face 4239 1049 1788 4085 Face 4240 309 2156 5025 Face 4241 309 3143 2156 Face 4242 178 2157 1143 Face 4243 2851 1276 4950 Face 4244 270 2158 2691 Face 4245 270 4751 3303 Face 4246 608 2159 1784 Face 4247 608 179 2159 Face 4248 3387 3240 1262 Face 4249 1336 2231 2160 Face 4250 4831 3487 1410 Face 4251 861 2604 3487 Face 4252 3453 2162 1195 Face 4253 1283 3299 2847 Face 4254 3024 2163 761 Face 4255 3024 3477 2163 Face 4256 754 2164 3980 Face 4257 754 4958 2164 Face 4258 1203 2165 3895 Face 4259 1203 660 2165 Face 4260 1880 3364 123 Face 4261 123 4076 4390 Face 4262 123 3364 4076 Face 4263 4847 4654 2792 Face 4264 908 475 2168 Face 4265 3682 2169 157 Face 4266 3682 1699 2169 Face 4267 1443 2170 4042 Face 4268 1443 4006 2170 Face 4269 1100 4971 3941 Face 4270 1100 2859 4971 Face 4271 795 2172 3582 Face 4272 3612 1637 2172 Face 4273 4194 2173 2803 Face 4274 1082 4860 2173 Face 4275 3036 2174 116 Face 4276 230 4504 2174 Face 4277 1175 4623 1894 Face 4278 1175 1609 2175 Face 4279 983 2176 4234 Face 4280 983 2796 2176 Face 4281 885 2177 1809 Face 4282 2876 2300 3940 Face 4283 1390 2178 3774 Face 4284 1390 221 2178 Face 4285 700 2179 2247 Face 4286 700 1629 2179 Face 4287 3708 2180 2725 Face 4288 1140 517 2937 Face 4289 517 2181 2937 Face 4290 4398 2188 4035 Face 4291 4127 2182 738 Face 4292 84 1845 3289 Face 4293 55 2889 4893 Face 4294 55 1580 2183 Face 4295 454 2184 4960 Face 4296 2848 325 2184 Face 4297 209 2185 4387 Face 4298 209 3168 2185 Face 4299 3671 3238 1527 Face 4300 64 4633 2186 Face 4301 1125 4327 2653 Face 4302 1125 45 2187 Face 4303 984 3181 1479 Face 4304 984 4035 3181 Face 4305 2555 3769 1085 Face 4306 3019 210 2189 Face 4307 3418 2190 587 Face 4308 895 4947 2190 Face 4309 859 2191 3423 Face 4310 3436 3768 2191 Face 4311 4875 2192 1736 Face 4312 3470 4231 3760 Face 4313 156 2193 1928 Face 4314 156 1463 2193 Face 4315 4704 2194 862 Face 4316 2754 1899 4044 Face 4317 1538 2195 1050 Face 4318 1538 4350 3932 Face 4319 1023 4523 1460 Face 4320 1023 3171 2196 Face 4321 1449 2197 4225 Face 4322 4698 39 2197 Face 4323 516 2198 1654 Face 4324 516 2508 2198 Face 4325 4575 2199 2743 Face 4326 4575 1935 2199 Face 4327 3977 2200 2750 Face 4328 502 2703 2200 Face 4329 1176 2201 27 Face 4330 1176 4173 2201 Face 4331 3918 2202 1787 Face 4332 1556 2641 4984 Face 4333 596 4543 2781 Face 4334 596 930 2895 Face 4335 3713 2204 3453 Face 4336 3713 2589 2204 Face 4337 4877 2205 3563 Face 4338 4877 2104 4032 Face 4339 4919 2206 3809 Face 4340 4919 1207 2206 Face 4341 315 2207 2798 Face 4342 315 3217 4903 Face 4343 1060 3265 311 Face 4344 1060 584 3265 Face 4345 802 4153 1388 Face 4346 802 3737 2209 Face 4347 1241 2210 4052 Face 4348 1241 440 2210 Face 4349 3562 2211 1495 Face 4350 3562 4128 2211 Face 4351 3392 2861 1818 Face 4352 503 2213 2592 Face 4353 503 2888 3670 Face 4354 3222 2214 364 Face 4355 1072 4148 2214 Face 4356 1135 3955 369 Face 4357 1135 704 3955 Face 4358 1222 2216 3056 Face 4359 1222 577 4663 Face 4360 5061 3457 693 Face 4361 4002 1876 4809 Face 4362 1032 2218 3812 Face 4363 1032 2182 2218 Face 4364 3654 2219 256 Face 4365 3654 1612 2219 Face 4366 79 2220 3534 Face 4367 79 3098 2220 Face 4368 3167 3711 278 Face 4369 781 1647 2221 Face 4370 474 2222 962 Face 4371 3550 4391 2222 Face 4372 2339 2223 3680 Face 4373 2945 2224 2850 Face 4374 2945 4963 4019 Face 4375 1172 2225 2062 Face 4376 1172 386 2225 Face 4377 1581 2226 710 Face 4378 1581 1036 3707 Face 4379 1591 2227 3589 Face 4380 1591 1168 2227 Face 4381 1346 2228 3728 Face 4382 1346 128 2228 Face 4383 476 2229 1468 Face 4384 4074 1340 2229 Face 4385 4973 2230 1317 Face 4386 136 1563 2230 Face 4387 947 2231 1336 Face 4388 2695 1430 3475 Face 4389 21 3358 2686 Face 4390 21 4481 3358 Face 4391 3902 3659 4738 Face 4392 1189 3580 2233 Face 4393 4612 2234 4371 Face 4394 4612 3996 2234 Face 4395 2888 2235 3670 Face 4396 2888 193 2235 Face 4397 3701 2236 2210 Face 4398 3701 4116 2236 Face 4399 1775 2237 714 Face 4400 1775 4412 3603 Face 4401 1247 2238 368 Face 4402 1247 82 3991 Face 4403 103 3165 3525 Face 4404 103 1969 3165 Face 4405 1102 2240 216 Face 4406 3636 108 3520 Face 4407 1234 2241 4338 Face 4408 1234 2777 2241 Face 4409 1114 2242 3399 Face 4410 1114 1405 2242 Face 4411 1863 4820 1788 Face 4412 1863 2909 4820 Face 4413 3259 2244 4740 Face 4414 274 1276 2244 Face 4415 1198 3721 549 Face 4416 4513 2846 3721 Face 4417 4154 2246 923 Face 4418 4154 429 2246 Face 4419 764 2247 4747 Face 4420 764 700 2247 Face 4421 4033 2248 3176 Face 4422 4033 3284 2248 Face 4423 333 2249 5063 Face 4424 333 2090 2249 Face 4425 396 2250 3355 Face 4426 236 2251 1912 Face 4427 3166 969 2251 Face 4428 4727 2252 2727 Face 4429 607 3672 2252 Face 4430 4086 2253 4740 Face 4431 4086 3000 2253 Face 4432 1645 2254 3655 Face 4433 1645 5008 2254 Face 4434 980 2255 2899 Face 4435 980 2674 3807 Face 4436 1490 2256 484 Face 4437 1490 943 4257 Face 4438 434 2257 3058 Face 4439 434 4565 2257 Face 4440 3221 2258 627 Face 4441 3221 4212 2258 Face 4442 210 2259 2189 Face 4443 210 3507 2259 Face 4444 3937 2260 2853 Face 4445 3937 3800 2260 Face 4446 912 2261 3062 Face 4447 912 5011 2261 Face 4448 197 2262 3192 Face 4449 1400 2263 4003 Face 4450 3045 4068 2263 Face 4451 767 2264 284 Face 4452 3090 3148 5050 Face 4453 1031 2265 29 Face 4454 1031 936 2265 Face 4455 1653 2266 4955 Face 4456 1653 974 2266 Face 4457 819 2267 3968 Face 4458 819 4909 2267 Face 4459 1590 2268 2580 Face 4460 2268 2269 2580 Face 4461 3717 2270 1558 Face 4462 3717 3163 2270 Face 4463 3006 3386 805 Face 4464 527 1693 4172 Face 4465 3381 2915 162 Face 4466 1119 1421 2272 Face 4467 2611 2273 1334 Face 4468 3660 2016 3087 Face 4469 133 2274 4269 Face 4470 133 2877 2274 Face 4471 2911 2275 2057 Face 4472 2911 4798 2275 Face 4473 217 3349 1664 Face 4474 217 2513 2276 Face 4475 665 3126 3603 Face 4476 665 1683 3126 Face 4477 1431 2278 425 Face 4478 1431 579 2278 Face 4479 1634 2279 2728 Face 4480 1634 4894 2279 Face 4481 1547 2280 4448 Face 4482 1547 2044 2956 Face 4483 585 4121 182 Face 4484 585 1371 2281 Face 4485 1170 5051 1856 Face 4486 1170 4484 2282 Face 4487 1341 2283 2788 Face 4488 1341 1025 2283 Face 4489 4669 2284 1424 Face 4490 680 3786 3405 Face 4491 129 2285 2028 Face 4492 4571 906 2285 Face 4493 4497 2286 3540 Face 4494 2850 4202 2286 Face 4495 518 2287 2936 Face 4496 518 3286 4373 Face 4497 1344 2288 803 Face 4498 1344 4081 2288 Face 4499 2569 2289 4472 Face 4500 2569 920 2289 Face 4501 1404 2290 3528 Face 4502 2977 2291 1832 Face 4503 1177 3957 2291 Face 4504 728 2292 3715 Face 4505 728 3519 2292 Face 4506 266 2293 888 Face 4507 3524 2482 3969 Face 4508 1512 3128 164 Face 4509 1512 1379 2294 Face 4510 150 2295 3997 Face 4511 150 871 2295 Face 4512 1858 2296 3803 Face 4513 1858 324 2296 Face 4514 642 2297 4643 Face 4515 642 3681 2297 Face 4516 4803 3827 1118 Face 4517 815 1642 2298 Face 4518 4555 3320 3943 Face 4519 4555 2579 2299 Face 4520 4445 2300 3640 Face 4521 296 3940 2300 Face 4522 911 4158 2580 Face 4523 911 1394 2301 Face 4524 4208 2303 4988 Face 4525 2302 2303 4208 Face 4526 1013 2304 1372 Face 4527 1013 4089 2304 Face 4528 193 4332 2235 Face 4529 193 2921 4332 Face 4530 1566 2306 4029 Face 4531 2872 907 4662 Face 4532 1007 2968 3455 Face 4533 1007 1497 2307 Face 4534 1288 2308 866 Face 4535 4597 3070 2308 Face 4536 1033 4904 3037 Face 4537 3685 246 2309 Face 4538 222 2310 3917 Face 4539 222 4296 2310 Face 4540 478 2311 3687 Face 4541 4363 1006 4685 Face 4542 3542 2312 4161 Face 4543 3542 2449 2312 Face 4544 1769 2313 3790 Face 4545 1769 4230 2313 Face 4546 1426 4891 3133 Face 4547 1426 682 4891 Face 4548 2250 4576 1145 Face 4549 3185 2316 4199 Face 4550 3185 4944 2316 Face 4551 637 3785 2110 Face 4552 637 1846 4407 Face 4553 3787 2318 2018 Face 4554 3787 2507 2318 Face 4555 287 2319 3930 Face 4556 287 4656 2319 Face 4557 3586 2320 707 Face 4558 3586 1641 2320 Face 4559 4411 2321 48 Face 4560 847 4104 2321 Face 4561 1207 2322 4997 Face 4562 1207 4919 2322 Face 4563 5023 3837 3095 Face 4564 300 918 3837 Face 4565 1339 2324 149 Face 4566 1339 523 2324 Face 4567 632 2325 4674 Face 4568 632 3622 2325 Face 4569 350 2326 1152 Face 4570 4083 3242 2326 Face 4571 1286 3518 2802 Face 4572 1286 1785 3518 Face 4573 207 3397 833 Face 4574 207 436 3397 Face 4575 1199 4976 3630 Face 4576 1199 1585 2329 Face 4577 466 2330 3765 Face 4578 466 1445 2330 Face 4579 4214 2331 5000 Face 4580 1616 4827 2331 Face 4581 1034 2332 4058 Face 4582 1034 4291 2332 Face 4583 572 4294 264 Face 4584 572 3410 4294 Face 4585 4352 2334 615 Face 4586 4352 3335 4520 Face 4587 187 2335 4673 Face 4588 187 421 2335 Face 4589 263 4494 2680 Face 4590 263 1491 4494 Face 4591 900 4386 3505 Face 4592 900 1974 3936 Face 4593 3689 2338 2565 Face 4594 3689 2129 2338 Face 4595 2854 2339 3680 Face 4596 1115 2340 379 Face 4597 4676 132 3795 Face 4598 565 5029 1184 Face 4599 565 3640 2341 Face 4600 2865 4048 112 Face 4601 299 1511 5056 Face 4602 957 2343 3257 Face 4603 4188 1661 2343 Face 4604 630 2344 1956 Face 4605 630 4678 2344 Face 4606 1289 2345 3752 Face 4607 1289 5048 4042 Face 4608 1200 3417 180 Face 4609 1200 403 3417 Face 4610 1500 4133 564 Face 4611 1500 3529 4133 Face 4612 910 5021 445 Face 4613 910 1374 2348 Face 4614 1607 2349 348 Face 4615 1607 548 3116 Face 4616 3218 2350 2784 Face 4617 4043 414 2350 Face 4618 488 2351 1819 Face 4619 3812 1453 2351 Face 4620 399 2352 3196 Face 4621 399 4701 2352 Face 4622 581 4910 2980 Face 4623 581 1521 4910 Face 4624 3700 2354 3321 Face 4625 4606 2826 2354 Face 4626 932 2355 97 Face 4627 932 2857 4240 Face 4628 159 2356 1225 Face 4629 159 4554 2356 Face 4630 4092 2357 2983 Face 4631 4092 1981 2357 Face 4632 648 2358 4871 Face 4633 4719 452 2358 Face 4634 1428 2359 3953 Face 4635 1428 4735 2359 Face 4636 4255 2360 4985 Face 4637 839 3560 2360 Face 4638 1578 2361 3578 Face 4639 1578 4370 2361 Face 4640 436 2362 2328 Face 4641 436 3445 2362 Face 4642 443 2363 3555 Face 4643 443 985 2363 Face 4644 3961 2364 132 Face 4645 934 3463 2364 Face 4646 69 5053 967 Face 4647 69 780 2365 Face 4648 1174 2366 736 Face 4649 1174 1803 2366 Face 4650 213 2367 4686 Face 4651 213 3108 3990 Face 4652 4060 2368 58 Face 4653 405 3863 2368 Face 4654 114 2369 636 Face 4655 4833 3890 4691 Face 4656 1627 2370 4050 Face 4657 1627 4088 2370 Face 4658 4093 3328 4455 Face 4659 4093 3247 3328 Face 4660 4389 2372 92 Face 4661 703 4274 3112 Face 4662 1920 2373 3952 Face 4663 1920 1179 2373 Face 4664 576 2374 1042 Face 4665 576 4215 2374 Face 4666 458 4304 1362 Face 4667 458 1295 2375 Face 4668 1521 4192 4434 Face 4669 1521 4091 2376 Face 4670 654 2377 3055 Face 4671 654 2034 2377 Face 4672 1045 3353 3882 Face 4673 1045 3199 2378 Face 4674 3806 2379 4457 Face 4675 359 1344 4599 Face 4676 4703 2380 2117 Face 4677 254 4821 2380 Face 4678 2417 2381 4475 Face 4679 3178 145 2381 Face 4680 3497 2382 4682 Face 4681 3497 3147 2382 Face 4682 1343 2383 4584 Face 4683 1343 873 2383 Face 4684 3706 2384 728 Face 4685 4587 119 2384 Face 4686 1639 3107 468 Face 4687 1639 262 2385 Face 4688 386 2386 4025 Face 4689 386 1172 2386 Face 4690 1714 2387 4850 Face 4691 1714 3906 4807 Face 4692 662 2388 1861 Face 4693 662 3585 2388 Face 4694 352 4113 651 Face 4695 3658 1713 2389 Face 4696 3816 2390 1015 Face 4697 3816 1846 4880 Face 4698 1094 2391 2263 Face 4699 1094 3386 2391 Face 4700 1153 3283 1932 Face 4701 1153 3297 3283 Face 4702 4658 2393 374 Face 4703 4658 4398 3223 Face 4704 3176 2394 343 Face 4705 168 1245 2394 Face 4706 490 2395 2851 Face 4707 490 5045 2395 Face 4708 1377 2396 4451 Face 4709 1377 4222 3952 Face 4710 3908 2397 206 Face 4711 3908 4527 2397 Face 4712 1312 4279 4078 Face 4713 4456 962 4279 Face 4714 1361 2399 1768 Face 4715 1361 777 3308 Face 4716 323 2400 3924 Face 4717 323 2886 2400 Face 4718 937 4061 1576 Face 4719 937 416 2401 Face 4720 4926 3652 1004 Face 4721 3027 3876 2402 Face 4722 3489 2403 1958 Face 4723 893 2928 2403 Face 4724 1532 2404 2985 Face 4725 1532 3724 2404 Face 4726 3132 2405 656 Face 4727 1763 1064 2405 Face 4728 4182 2406 441 Face 4729 1559 2026 2406 Face 4730 1958 2407 1549 Face 4731 1958 1076 4414 Face 4732 382 2408 4881 Face 4733 382 4010 2408 Face 4734 1401 2409 3558 Face 4735 2914 4388 2409 Face 4736 682 4795 2370 Face 4737 682 1426 2410 Face 4738 113 2411 1864 Face 4739 113 2337 2411 Face 4740 1099 2412 4721 Face 4741 1160 2413 4772 Face 4742 1160 4919 3809 Face 4743 294 4796 3515 Face 4744 294 1999 4796 Face 4745 1575 2415 1316 Face 4746 1575 4077 2415 Face 4747 1489 4601 2577 Face 4748 1489 3931 4601 Face 4749 1396 4550 452 Face 4750 3178 2381 2417 Face 4751 1918 2418 336 Face 4752 1918 1399 3568 Face 4753 2941 2419 1440 Face 4754 2941 1038 3409 Face 4755 1509 2420 598 Face 4756 4355 1106 3838 Face 4757 994 2421 2657 Face 4758 994 3158 2421 Face 4759 3968 2422 819 Face 4760 392 3309 4395 Face 4761 1014 2423 271 Face 4762 1014 2974 2423 Face 4763 1537 3712 4573 Face 4764 1537 4943 3712 Face 4765 301 3556 4951 Face 4766 301 1147 2425 Face 4767 684 2426 3591 Face 4768 684 344 2426 Face 4769 63 2427 4528 Face 4770 63 1414 2427 Face 4771 3673 2428 640 Face 4772 465 4095 2428 Face 4773 4241 2429 1672 Face 4774 1358 2853 3484 Face 4775 748 4082 3563 Face 4776 748 1287 2430 Face 4777 4511 2431 2228 Face 4778 4511 3909 2431 Face 4779 659 2432 1412 Face 4780 622 2433 3326 Face 4781 622 3870 2433 Face 4782 1066 2434 1525 Face 4783 3647 195 2434 Face 4784 4498 2435 1927 Face 4785 223 4375 2435 Face 4786 4280 2436 158 Face 4787 1567 4325 2436 Face 4788 627 2437 3360 Face 4789 627 4345 2437 Face 4790 626 4283 1781 Face 4791 626 3202 2438 Face 4792 1357 2439 997 Face 4793 1357 1136 2439 Face 4794 570 2440 3557 Face 4795 570 4518 2440 Face 4796 3264 2441 1038 Face 4797 483 2306 2441 Face 4798 4969 2442 2788 Face 4799 3566 1254 2442 Face 4800 814 3305 4730 Face 4801 814 3629 2443 Face 4802 1510 3627 990 Face 4803 1510 1131 2444 Face 4804 1619 2445 1972 Face 4805 3910 3394 2445 Face 4806 253 2446 2341 Face 4807 253 4626 2446 Face 4808 245 2447 3118 Face 4809 4322 3003 2447 Face 4810 836 2448 5053 Face 4811 4913 383 2448 Face 4812 1375 2449 716 Face 4813 1375 3363 2449 Face 4814 3263 2450 4158 Face 4815 3263 2655 2450 Face 4816 5 2451 4071 Face 4817 1030 2452 2368 Face 4818 5054 2053 2452 Face 4819 4235 2453 1488 Face 4820 17 1047 2453 Face 4821 4844 2454 2736 Face 4822 3543 4357 2454 Face 4823 1904 4489 2844 Face 4824 1904 2796 4889 Face 4825 4538 2456 1618 Face 4826 4538 75 2456 Face 4827 3546 2457 1632 Face 4828 3546 1800 2457 Face 4829 1008 2458 2018 Face 4830 1008 259 2458 Face 4831 1647 2459 1749 Face 4832 1647 781 2459 Face 4833 4605 2460 251 Face 4834 1485 89 2460 Face 4835 246 2461 4467 Face 4836 4768 932 3510 Face 4837 525 2462 3377 Face 4838 525 4396 2462 Face 4839 1089 4839 2030 Face 4840 1089 758 2463 Face 4841 1504 2464 239 Face 4842 1504 3868 2464 Face 4843 2081 2465 4001 Face 4844 2081 1738 2465 Face 4845 1330 2466 4975 Face 4846 1330 4925 2466 Face 4847 1144 3686 1653 Face 4848 4789 80 2467 Face 4849 3554 2468 298 Face 4850 52 1615 2468 Face 4851 945 3571 4218 Face 4852 945 512 2469 Face 4853 535 2470 4743 Face 4854 535 204 3805 Face 4855 3761 2471 926 Face 4856 22 1248 2471 Face 4857 1225 2472 159 Face 4858 1225 4124 2472 Face 4859 49 2473 4731 Face 4860 49 3617 2473 Face 4861 884 4664 3704 Face 4862 884 3209 4664 Face 4863 768 2475 4564 Face 4864 768 1814 2475 Face 4865 756 2476 3679 Face 4866 756 1217 2476 Face 4867 1850 2477 1448 Face 4868 4634 2629 2477 Face 4869 356 2478 2125 Face 4870 356 4520 2478 Face 4871 130 2479 3611 Face 4872 130 2900 2479 Face 4873 979 2480 1552 Face 4874 979 2925 2480 Face 4875 1287 2481 3818 Face 4876 1287 5010 2481 Face 4877 489 2482 1485 Face 4878 489 3969 2482 Face 4879 771 2483 2095 Face 4880 771 1579 2483 Face 4881 965 2484 3492 Face 4882 4236 2970 2484 Face 4883 551 2485 3678 Face 4884 551 1258 2485 Face 4885 537 2486 2402 Face 4886 5013 2954 2486 Face 4887 617 2487 2975 Face 4888 617 2757 2487 Face 4889 4615 2488 2956 Face 4890 3466 856 2488 Face 4891 3075 2489 4450 Face 4892 635 4562 2489 Face 4893 495 2490 3851 Face 4894 4873 730 2490 Face 4895 784 2491 1299 Face 4896 784 4336 2491 Face 4897 4893 2492 3871 Face 4898 485 4052 2492 Face 4899 1658 2493 2222 Face 4900 1658 3609 2493 Face 4901 707 4504 230 Face 4902 707 3757 4504 Face 4903 558 2495 2058 Face 4904 558 4514 3300 Face 4905 3581 3981 4414 Face 4906 61 3332 3981 Face 4907 640 4843 1751 Face 4908 640 1469 2497 Face 4909 1919 2498 36 Face 4910 1919 3651 2498 Face 4911 3704 2499 884 Face 4912 4275 1322 2499 Face 4913 1118 2919 469 Face 4914 1118 3827 2500 Face 4915 364 2501 3222 Face 4916 364 4749 2501 Face 4917 4725 4059 592 Face 4918 241 1422 2502 Face 4919 813 2503 3935 Face 4920 3533 1293 2503 Face 4921 1271 2504 3126 Face 4922 1271 1554 2504 Face 4923 306 2505 4542 Face 4924 306 762 2505 Face 4925 2983 2506 2347 Face 4926 981 85 2506 Face 4927 1513 2507 3787 Face 4928 1513 4553 2507 Face 4929 1437 2508 3536 Face 4930 1437 930 2508 Face 4931 904 4461 2017 Face 4932 904 3318 2509 Face 4933 782 3464 1055 Face 4934 4437 1075 2510 Face 4935 1565 2511 5015 Face 4936 1565 140 2511 Face 4937 1650 4258 2955 Face 4938 4722 124 2512 Face 4939 589 2513 1924 Face 4940 589 4828 2513 Face 4941 1290 2514 2050 Face 4942 1290 3161 2514 Face 4943 1250 2515 2650 Face 4944 1250 3663 2515 Face 4945 1896 2516 3815 Face 4946 4366 407 2516 Face 4947 38 2517 1178 Face 4948 38 2245 2517 Face 4949 368 2518 4911 Face 4950 3642 1952 2518 Face 4951 580 2519 4323 Face 4952 580 1238 2519 Face 4953 2265 2520 29 Face 4954 2265 1418 2520 Face 4955 221 2521 1109 Face 4956 221 2688 2521 Face 4957 3762 2522 1516 Face 4958 3762 3954 2522 Face 4959 584 2523 3824 Face 4960 584 1877 4249 Face 4961 3296 3951 822 Face 4962 3290 2525 1360 Face 4963 4619 1960 2525 Face 4964 452 2526 1024 Face 4965 452 4550 2526 Face 4966 45 2527 2187 Face 4967 5024 3775 2527 Face 4968 757 2528 1267 Face 4969 757 2065 4030 Face 4970 1216 2529 3472 Face 4971 4849 3498 2529 Face 4972 1367 4137 4820 Face 4973 1367 3716 4137 Face 4974 4739 3842 686 Face 4975 1630 2604 3433 Face 4976 1362 2532 3839 Face 4977 1362 4304 2532 Face 4978 1263 2533 4793 Face 4979 1648 2534 3503 Face 4980 1648 3145 2534 Face 4981 3041 2535 3743 Face 4982 2044 1378 3901 Face 4983 3808 2536 2836 Face 4984 16 2443 2536 Face 4985 522 2537 1053 Face 4986 3412 3847 2537 Face 4987 2934 2538 3889 Face 4988 2934 2114 2538 Face 4989 444 2539 3739 Face 4990 444 4265 2539 Face 4991 818 2540 4708 Face 4992 818 4384 2540 Face 4993 1192 2541 2128 Face 4994 1192 4248 2541 Face 4995 186 3393 3843 Face 4996 186 2121 2542 Face 4997 154 2543 4178 Face 4998 154 1380 2543 Face 4999 3698 2544 4055 Face 5000 3698 1929 2544 Face 5001 2086 2545 1820 Face 5002 2086 337 2545 Face 5003 1387 2546 4380 Face 5004 1387 3078 2546 Face 5005 1723 2547 864 Face 5006 1723 3021 2547 Face 5007 196 3720 1160 Face 5008 196 2944 3720 Face 5009 1934 2549 234 Face 5010 1934 4227 2549 Face 5011 595 2550 3971 Face 5012 595 1763 2550 Face 5013 341 2551 3377 Face 5014 341 4558 2551 Face 5015 394 4237 4539 Face 5016 394 1708 4348 Face 5017 698 2553 2021 Face 5018 698 177 2553 Face 5019 94 4649 1884 Face 5020 94 2548 2554 Face 5021 806 5035 1864 Face 5022 806 3769 5035 Face 5023 4729 2556 556 Face 5024 4729 3506 2556 Face 5025 1844 2557 3261 Face 5026 1844 4343 2557 Face 5027 1052 2558 3853 Face 5028 1052 2100 2558 Face 5029 371 2559 3883 Face 5030 371 1025 4501 Face 5031 1518 2560 3008 Face 5032 3468 1835 2560 Face 5033 42 4054 4933 Face 5034 2902 1680 2561 Face 5035 747 2562 4346 Face 5036 747 633 4812 Face 5037 3253 2563 4657 Face 5038 780 2352 4683 Face 5039 1350 5005 44 Face 5040 1350 2741 4242 Face 5041 1700 2565 4785 Face 5042 1700 3689 2565 Face 5043 2774 2566 143 Face 5044 2774 1670 2566 Face 5045 345 2567 3449 Face 5046 345 3177 2567 Face 5047 629 3256 4709 Face 5048 629 4697 2568 Face 5049 709 2569 3080 Face 5050 4992 507 2569 Face 5051 89 2570 2460 Face 5052 89 2675 3899 Face 5053 1188 2571 461 Face 5054 3288 1939 3860 Face 5055 1106 2572 41 Face 5056 1106 4355 2572 Face 5057 283 2573 1520 Face 5058 283 4312 2573 Face 5059 848 2574 329 Face 5060 848 117 2574 Face 5061 348 2575 3079 Face 5062 4078 2398 2575 Face 5063 5001 2576 67 Face 5064 477 3592 3093 Face 5065 4419 2577 2416 Face 5066 4419 1628 2577 Face 5067 1668 4957 140 Face 5068 1668 775 2578 Face 5069 303 2579 4555 Face 5070 3731 1765 2579 Face 5071 1307 2580 2450 Face 5072 1307 2166 2580 Face 5073 825 2581 4347 Face 5074 3956 1383 5052 Face 5075 278 2582 1879 Face 5076 278 1571 4409 Face 5077 138 2583 4823 Face 5078 138 3513 2583 Face 5079 347 2584 1441 Face 5080 347 818 3186 Face 5081 1083 2585 3035 Face 5082 4369 644 3653 Face 5083 389 2586 1084 Face 5084 389 1223 2586 Face 5085 4298 2587 1202 Face 5086 4298 240 2587 Face 5087 1237 4480 269 Face 5088 1237 608 2588 Face 5089 750 2589 3713 Face 5090 4618 165 4733 Face 5091 163 2590 4959 Face 5092 3242 1779 2590 Face 5093 552 4949 1183 Face 5094 552 61 2591 Face 5095 1373 2592 2213 Face 5096 1373 3523 2592 Face 5097 54 3599 1244 Face 5098 3162 568 2593 Face 5099 464 4894 1634 Face 5100 464 1268 2594 Face 5101 75 2595 2456 Face 5102 75 3801 2595 Face 5103 663 2596 126 Face 5104 663 56 2596 Face 5105 1632 4862 1927 Face 5106 1632 4841 4862 Face 5107 1459 2598 3721 Face 5108 1459 4226 2598 Face 5109 3251 2599 1888 Face 5110 4589 467 3733 Face 5111 3998 4416 2246 Face 5112 3998 3760 4416 Face 5113 425 2601 1431 Face 5114 425 4192 2601 Face 5115 1721 3004 1560 Face 5116 1721 330 4952 Face 5117 1132 2603 285 Face 5118 1132 1872 2603 Face 5119 1476 2604 861 Face 5120 1476 3433 2604 Face 5121 1706 2605 201 Face 5122 1706 3046 2605 Face 5123 35 2606 1080 Face 5124 35 4041 2606 Face 5125 1713 2607 2389 Face 5126 1713 1303 2607 Face 5127 5032 2608 3096 Face 5128 297 830 2608 Face 5129 1201 2609 3499 Face 5130 1201 676 2609 Face 5131 674 2610 1204 Face 5132 674 3805 2610 Face 5133 3726 2611 1334 Face 5134 404 2016 3660 Face 5135 4106 2612 1413 Face 5136 4106 1582 2612 Face 5137 1511 2613 2973 Face 5138 1511 3911 2613 Face 5139 372 2614 4256 Face 5140 372 3770 2614 Face 5141 1736 2615 1107 Face 5142 1736 4725 2615 Face 5143 2842 2616 2387 Face 5144 4205 2258 4850 Face 5145 1460 2617 1395 Face 5146 1460 4942 2617 Face 5147 4072 2618 4964 Face 5148 4072 3087 2618 Face 5149 560 2619 895 Face 5150 560 3273 2619 Face 5151 135 2620 428 Face 5152 4057 2894 2620 Face 5153 4289 2621 1918 Face 5154 1027 3599 2621 Face 5155 1825 2622 4745 Face 5156 2942 1992 2622 Face 5157 1171 2623 1851 Face 5158 1171 2336 2623 Face 5159 339 2940 3124 Face 5160 4099 104 2940 Face 5161 4989 2625 2566 Face 5162 4989 4781 2625 Face 5163 1260 2626 2805 Face 5164 3794 864 2626 Face 5165 273 2627 3982 Face 5166 273 2963 2627 Face 5167 1522 2628 1215 Face 5168 1522 4415 2628 Face 5169 760 2629 4634 Face 5170 760 884 2629 Face 5171 1235 4748 3637 Face 5172 1235 3229 4748 Face 5173 2892 2631 3985 Face 5174 450 940 2631 Face 5175 1193 2632 308 Face 5176 1193 26 2632 Face 5177 1004 2633 2342 Face 5178 1004 4039 3527 Face 5179 2101 2634 4547 Face 5180 1461 2635 4621 Face 5181 1461 451 2635 Face 5182 1113 2636 4341 Face 5183 1113 1691 2636 Face 5184 1464 2637 2393 Face 5185 1464 532 2637 Face 5186 2010 2638 152 Face 5187 4697 3898 2638 Face 5188 1909 2639 190 Face 5189 1909 3270 2639 Face 5190 548 3450 3116 Face 5191 548 869 3450 Face 5192 3817 4439 1985 Face 5193 1405 1114 2641 Face 5194 1026 2642 2839 Face 5195 1026 2267 4050 Face 5196 1447 2643 2248 Face 5197 1447 928 2643 Face 5198 776 5046 1573 Face 5199 4178 3309 5046 Face 5200 3278 2645 4680 Face 5201 4267 1511 2973 Face 5202 3610 4492 3966 Face 5203 1253 601 2646 Face 5204 1284 2647 717 Face 5205 4747 160 2647 Face 5206 3481 2648 1381 Face 5207 1831 3960 2648 Face 5208 4081 2649 460 Face 5209 1667 2905 2649 Face 5210 3375 2650 2110 Face 5211 3375 3802 2650 Face 5212 3395 2651 833 Face 5213 1183 1000 2651 Face 5214 1211 2652 1698 Face 5215 1211 400 2652 Face 5216 1797 2653 860 Face 5217 1797 2614 2653 Face 5218 1948 2654 1041 Face 5219 1948 3666 2654 Face 5220 4163 2655 735 Face 5221 4163 2450 2655 Face 5222 5015 2656 3537 Face 5223 3541 858 2656 Face 5224 3911 4008 759 Face 5225 1804 994 2657 Face 5226 1754 2658 4832 Face 5227 1754 1368 2658 Face 5228 401 2659 4300 Face 5229 401 1351 2659 Face 5230 4816 2660 3379 Face 5231 4816 1320 2660 Face 5232 122 2661 3279 Face 5233 122 2281 2661 Face 5234 1808 2662 3975 Face 5235 1808 3117 2662 Face 5236 547 2663 4566 Face 5237 3447 2094 2663 Face 5238 4331 2664 4755 Face 5239 600 3029 2664 Face 5240 128 2665 4511 Face 5241 128 4836 4122 Face 5242 1036 2666 228 Face 5243 1036 4582 2666 Face 5244 48 2667 4411 Face 5245 48 323 2667 Face 5246 631 2668 235 Face 5247 3354 4499 2668 Face 5248 1973 2669 4343 Face 5249 1973 421 2669 Face 5250 351 4379 1532 Face 5251 351 1892 4379 Face 5252 623 4295 4965 Face 5253 623 3446 2671 Face 5254 766 2672 1363 Face 5255 766 3578 2672 Face 5256 899 2673 405 Face 5257 899 2379 2673 Face 5258 624 4512 4864 Face 5259 624 3807 2674 Face 5260 1277 2675 3382 Face 5261 1277 1154 2675 Face 5262 793 2676 3948 Face 5263 793 4531 2676 Face 5264 1523 2677 3184 Face 5265 1523 3113 3763 Face 5266 1019 2678 4474 Face 5267 1019 1507 2678 Face 5268 725 2679 3972 Face 5269 725 2005 2679 Face 5270 1855 2680 739 Face 5271 3822 1710 2680 Face 5272 2154 2681 1302 Face 5273 2154 1519 2681 Face 5274 1417 4590 285 Face 5275 1417 3270 4590 Face 5276 391 2683 118 Face 5277 391 4103 4914 Face 5278 307 3983 1353 Face 5279 3293 800 2684 Face 5280 3819 2685 4586 Face 5281 3819 537 2685 Face 5282 1791 2686 1112 Face 5283 4245 4314 2686 Face 5284 295 3480 4353 Face 5285 295 4255 2687 Face 5286 1633 4921 2995 Face 5287 1633 4094 4921 Face 5288 726 4213 1946 Face 5289 726 1595 2689 Face 5290 1143 2690 3806 Face 5291 1143 2157 2690 Face 5292 3367 3953 2359 Face 5293 827 2127 2691 Face 5294 701 2692 1562 Face 5295 701 3910 2692 Face 5296 4666 2693 1221 Face 5297 762 306 2693 Face 5298 1810 2694 903 Face 5299 1810 4235 2694 Face 5300 4932 2695 3475 Face 5301 947 1264 4333 Face 5302 3896 4378 2997 Face 5303 3896 4942 2696 Face 5304 3392 2697 1869 Face 5305 3392 1818 2697 Face 5306 2962 2698 949 Face 5307 99 1753 2698 Face 5308 919 4102 2122 Face 5309 4745 137 2699 Face 5310 50 3876 3027 Face 5311 50 4680 3876 Face 5312 1408 2701 3951 Face 5313 4263 3544 100 Face 5314 1637 3612 2702 Face 5315 853 2703 3226 Face 5316 853 1386 2703 Face 5317 4334 4234 2176 Face 5318 30 1745 3314 Face 5319 1120 2705 1694 Face 5320 4013 1264 3594 Face 5321 4505 2706 1328 Face 5322 4505 1457 3491 Face 5323 752 2707 2992 Face 5324 4418 1905 4198 Face 5325 1847 2708 171 Face 5326 1847 1466 2708 Face 5327 1466 4428 5025 Face 5328 1466 4995 4428 Face 5329 379 2710 1750 Face 5330 379 4578 2710 Face 5331 543 2711 2523 Face 5332 543 3653 2711 Face 5333 330 2712 1298 Face 5334 330 1721 2712 Face 5335 973 4189 2154 Face 5336 973 2656 2713 Face 5337 72 2714 4535 Face 5338 72 2586 2714 Face 5339 387 2715 1508 Face 5340 387 2185 2715 Face 5341 3452 4138 364 Face 5342 993 1794 2716 Face 5343 19 2717 1980 Face 5344 19 4152 2717 Face 5345 573 2718 393 Face 5346 573 3481 2718 Face 5347 3513 2719 2000 Face 5348 1355 916 2719 Face 5349 1165 2720 2672 Face 5350 4070 3570 2720 Face 5351 840 4866 566 Face 5352 840 3422 2721 Face 5353 520 2722 4284 Face 5354 520 3100 2722 Face 5355 4268 2723 1752 Face 5356 3205 2045 2723 Face 5357 101 2724 1230 Face 5358 101 1090 2724 Face 5359 1545 4978 664 Face 5360 1545 3708 2725 Face 5361 1768 2726 1361 Face 5362 1768 602 4806 Face 5363 1455 2727 2252 Face 5364 1455 4079 2727 Face 5365 641 2728 1923 Face 5366 4084 1634 2728 Face 5367 358 2729 1062 Face 5368 358 3834 2729 Face 5369 3767 2730 2464 Face 5370 109 4882 2730 Face 5371 1871 2731 4229 Face 5372 1871 2512 2731 Face 5373 1697 4535 4402 Face 5374 1697 72 4535 Face 5375 1652 2733 3081 Face 5376 4372 328 4006 Face 5377 340 4718 1483 Face 5378 340 4506 2734 Face 5379 142 3561 2001 Face 5380 142 4901 2735 Face 5381 1957 2736 2454 Face 5382 1957 2907 2736 Face 5383 2738 2737 2697 Face 5384 1818 2738 2697 Face 5385 647 2739 4510 Face 5386 3442 2005 2739 Face 5387 1274 2740 4974 Face 5388 1274 378 2740 Face 5389 408 2741 686 Face 5390 408 3799 2741 Face 5391 1041 2742 3674 Face 5392 1041 2654 2742 Face 5393 426 2743 1456 Face 5394 426 4575 2743 Face 5395 4312 2744 2573 Face 5396 66 1528 2744 Face 5397 727 2745 4691 Face 5398 727 2660 4047 Face 5399 583 2746 2219 Face 5400 583 2060 2746 Face 5401 1613 2747 4855 Face 5402 4518 1259 2747 Face 5403 695 2748 4253 Face 5404 695 3905 2748 Face 5405 110 2749 1002 Face 5406 110 2370 4088 Face 5407 1056 2750 1437 Face 5408 1056 3977 2750 Face 5409 4693 4731 1945 Face 5410 713 3841 2751 Face 5411 1708 2752 3709 Face 5412 1708 394 2752 Face 5413 604 2753 1812 Face 5414 604 4679 2753 Face 5415 1142 2754 4044 Face 5416 1142 2183 2754 Face 5417 715 2755 322 Face 5418 715 4440 2755 Face 5419 1699 2756 2169 Face 5420 1699 4449 2756 Face 5421 1110 2757 617 Face 5422 1110 2345 2757 Face 5423 271 4705 1014 Face 5424 271 4286 4705 Face 5425 1297 2759 4184 Face 5426 5041 1679 2759 Face 5427 3695 2760 1803 Face 5428 390 4640 2760 Face 5429 4465 2761 939 Face 5430 479 4382 2761 Face 5431 523 2762 2324 Face 5432 523 3430 2762 Face 5433 439 2763 913 Face 5434 439 2171 2763 Face 5435 1248 2764 2471 Face 5436 3723 1727 4799 Face 5437 610 4468 1852 Face 5438 610 2444 4468 Face 5439 4577 3826 1539 Face 5440 344 684 2766 Face 5441 1 2767 723 Face 5442 4460 5012 2767 Face 5443 836 4913 2448 Face 5444 836 4784 4913 Face 5445 1328 2769 1694 Face 5446 1328 480 4529 Face 5447 1628 2770 4624 Face 5448 1628 4419 2770 Face 5449 4422 2771 3455 Face 5450 1748 2595 3801 Face 5451 630 2772 4027 Face 5452 630 4579 2772 Face 5453 1240 4650 2042 Face 5454 1240 40 4650 Face 5455 1926 2774 143 Face 5456 4681 1098 2774 Face 5457 4297 3528 1691 Face 5458 835 2776 1931 Face 5459 835 473 5047 Face 5460 1279 4132 129 Face 5461 3669 2241 2777 Face 5462 1614 4922 161 Face 5463 1614 3552 4922 Face 5464 686 4764 408 Face 5465 686 3842 2779 Face 5466 4598 2780 3182 Face 5467 4598 618 2780 Face 5468 3179 2781 4543 Face 5469 3179 2969 2781 Face 5470 808 2782 4713 Face 5471 808 562 2782 Face 5472 4836 2783 4122 Face 5473 882 3122 2783 Face 5474 1062 2784 2350 Face 5475 1062 4842 2784 Face 5476 225 2785 2637 Face 5477 5065 3932 2785 Face 5478 4981 2786 2123 Face 5479 4981 361 2786 Face 5480 773 4004 1311 Face 5481 773 4787 4004 Face 5482 459 2788 4228 Face 5483 459 1341 2788 Face 5484 505 4177 2038 Face 5485 505 3408 5031 Face 5486 1975 4774 883 Face 5487 1975 3978 4774 Face 5488 2127 2791 270 Face 5489 2127 1669 2791 Face 5490 688 2792 4654 Face 5491 4864 4512 2792 Face 5492 1684 2793 3535 Face 5493 1684 880 2793 Face 5494 1217 4613 2476 Face 5495 1217 158 3587 Face 5496 3954 5040 2522 Face 5497 291 3069 2795 Face 5498 4477 2796 983 Face 5499 678 4889 2796 Face 5500 1383 2797 5052 Face 5501 4022 2320 2797 Face 5502 564 2798 1500 Face 5503 564 315 2798 Face 5504 357 2799 1242 Face 5505 357 1997 2799 Face 5506 301 2800 1147 Face 5507 301 3135 2800 Face 5508 1097 2801 3683 Face 5509 1097 2430 2801 Face 5510 4361 2802 3534 Face 5511 620 4116 2802 Face 5512 3824 2803 2208 Face 5513 890 4285 2803 Face 5514 302 2804 1537 Face 5515 302 837 2804 Face 5516 1204 2805 4859 Face 5517 1204 1260 2805 Face 5518 553 2806 1816 Face 5519 553 4821 2806 Face 5520 1608 2807 267 Face 5521 1608 1046 2807 Face 5522 1453 2808 3894 Face 5523 1453 2240 2808 Face 5524 407 3681 2516 Face 5525 407 2297 3681 Face 5526 473 2810 298 Face 5527 473 2558 2810 Face 5528 1325 2811 3837 Face 5529 3474 896 2811 Face 5530 1589 2812 2276 Face 5531 1589 4611 2812 Face 5532 670 2813 1474 Face 5533 670 2098 2813 Face 5534 1772 2814 1505 Face 5535 1772 4917 2814 Face 5536 575 2815 2696 Face 5537 575 105 4186 Face 5538 5038 2816 3319 Face 5539 5038 4000 2816 Face 5540 958 2817 1967 Face 5541 958 1327 2817 Face 5542 1463 4759 2193 Face 5543 1463 641 2818 Face 5544 858 2819 2656 Face 5545 858 2033 2819 Face 5546 868 2820 2491 Face 5547 868 4498 2820 Face 5548 1801 2821 4250 Face 5549 1801 3742 2821 Face 5550 972 4015 1292 Face 5551 972 2239 4015 Face 5552 1071 2823 4967 Face 5553 1071 4790 2823 Face 5554 1190 2824 3230 Face 5555 1190 2639 2824 Face 5556 4140 2825 4069 Face 5557 974 346 2825 Face 5558 2076 2826 1657 Face 5559 2076 3282 2826 Face 5560 4455 2827 4093 Face 5561 4455 1979 2827 Face 5562 3327 2828 2080 Face 5563 277 1476 2828 Face 5564 1677 4185 3691 Face 5565 1677 513 4185 Face 5566 800 2830 482 Face 5567 800 3293 2830 Face 5568 3046 2831 2126 Face 5569 1079 1730 2831 Face 5570 1037 2832 2260 Face 5571 1037 1300 2832 Face 5572 1579 2833 2483 Face 5573 1579 4237 2833 Face 5574 946 2834 4563 Face 5575 946 2042 2834 Face 5576 789 2835 1470 Face 5577 789 141 2835 Face 5578 1766 2836 1955 Face 5579 1766 3808 2836 Face 5580 759 2837 3460 Face 5581 759 4008 2837 Face 5582 1000 2838 3888 Face 5583 1000 4949 2838 Face 5584 1356 2839 60 Face 5585 1356 1026 2839 Face 5586 1057 2840 1949 Face 5587 1057 629 2840 Face 5588 1984 2841 334 Face 5589 1984 4128 2841 Face 5590 1148 2842 2387 Face 5591 1148 1564 2842 Face 5592 1809 3396 885 Face 5593 1809 4914 2843 Face 5594 208 2844 4089 Face 5595 208 1904 2844 Face 5596 119 2845 3702 Face 5597 119 4587 2845 Face 5598 310 2846 4513 Face 5599 3173 1854 3959 Face 5600 2162 2847 3149 Face 5601 2162 1283 2847 Face 5602 454 2848 2184 Face 5603 3774 2178 2848 Face 5604 556 2849 2676 Face 5605 556 2556 3912 Face 5606 4497 2850 2286 Face 5607 286 812 2850 Face 5608 178 2851 4950 Face 5609 178 1462 2851 Face 5610 3391 4167 1031 Face 5611 3391 2097 2852 Face 5612 588 2853 1724 Face 5613 588 3484 2853 Face 5614 3248 2854 1555 Face 5615 799 2855 1498 Face 5616 799 4761 2855 Face 5617 1185 2856 1331 Face 5618 1185 2809 2856 Face 5619 437 2857 2148 Face 5620 437 3096 2857 Face 5621 1584 4749 364 Face 5622 1584 4681 2858 Face 5623 3684 2859 3473 Face 5624 3684 4971 2859 Face 5625 4522 2860 2188 Face 5626 4522 1092 2860 Face 5627 2212 2861 1187 Face 5628 862 2862 561 Face 5629 862 4636 2862 Face 5630 1872 2863 673 Face 5631 1872 1132 2863 Face 5632 4690 2864 4120 Face 5633 4690 2544 2864 Face 5634 299 4342 994 Face 5635 299 4048 4342 Face 5636 1618 2866 4017 Face 5637 1618 4552 2866 Face 5638 1870 2867 199 Face 5639 1870 292 2867 Face 5640 292 4818 2867 Face 5641 292 3106 4818 Face 5642 1587 2869 1789 Face 5643 1587 27 2869 Face 5644 4931 2870 325 Face 5645 1603 832 2870 Face 5646 1058 4822 1890 Face 5647 1058 3519 2871 Face 5648 3866 2872 4662 Face 5649 3866 3212 2872 Face 5650 1242 2873 3688 Face 5651 1242 741 4645 Face 5652 995 4410 1488 Face 5653 995 753 2874 Face 5654 3436 2875 4811 Face 5655 859 233 2875 Face 5656 885 2876 3940 Face 5657 885 4011 2876 Face 5658 4771 2877 1740 Face 5659 644 2274 2877 Face 5660 1596 2878 1695 Face 5661 1596 4366 2878 Face 5662 1732 4929 657 Face 5663 4377 1441 2879 Face 5664 2494 2880 4169 Face 5665 2494 3078 2880 Face 5666 4396 2881 2462 Face 5667 4396 1037 2881 Face 5668 3750 2882 1921 Face 5669 3750 4053 2882 Face 5670 1837 2883 4203 Face 5671 1837 3235 2883 Face 5672 1276 2884 2244 Face 5673 1276 4758 2884 Face 5674 261 2885 1016 Face 5675 261 3749 2885 Face 5676 1811 2886 48 Face 5677 1811 413 2886 Face 5678 510 2887 1519 Face 5679 510 987 2887 Face 5680 1063 2888 1656 Face 5681 1063 193 2888 Face 5682 2183 2889 55 Face 5683 2183 1993 2889 Face 5684 513 2890 1514 Face 5685 513 1677 2890 Face 5686 741 2891 4645 Face 5687 741 4980 2891 Face 5688 450 2892 4773 Face 5689 450 2631 2892 Face 5690 794 2893 3736 Face 5691 794 2492 4052 Face 5692 1598 2894 4576 Face 5693 1598 3390 2894 Face 5694 2203 2895 3891 Face 5695 4543 596 2895 Face 5696 176 2896 2086 Face 5697 176 3779 2896 Face 5698 232 2897 2112 Face 5699 232 3909 2897 Face 5700 1515 2898 3180 Face 5701 1515 1844 2898 Face 5702 1600 2899 2255 Face 5703 1600 4500 2899 Face 5704 1073 2900 1550 Face 5705 4567 2479 2900 Face 5706 1001 2901 2440 Face 5707 1001 4608 2901 Face 5708 42 4179 4054 Face 5709 42 1922 4179 Face 5710 562 2903 3973 Face 5711 4073 918 2903 Face 5712 1088 2904 327 Face 5713 1088 4254 2904 Face 5714 530 2905 1667 Face 5715 530 2217 2905 Face 5716 2063 3734 398 Face 5717 2063 565 3734 Face 5718 923 2907 1957 Face 5719 923 4684 2907 Face 5720 1212 2908 1806 Face 5721 1212 2319 2908 Face 5722 697 2909 4221 Face 5723 697 4181 2909 Face 5724 1893 2910 5018 Face 5725 1893 3560 2910 Face 5726 821 2911 570 Face 5727 821 4798 2911 Face 5728 114 2912 2369 Face 5729 114 1546 2912 Face 5730 1345 2913 2051 Face 5731 1345 3478 2913 Face 5732 1401 2914 2409 Face 5733 1401 486 2914 Face 5734 2272 3885 3381 Face 5735 2272 2912 3885 Face 5736 1413 2916 3680 Face 5737 1413 8 2916 Face 5738 319 2917 2160 Face 5739 319 1895 2917 Face 5740 4058 4490 614 Face 5741 1333 3981 2918 Face 5742 2500 2919 1118 Face 5743 2500 3905 2919 Face 5744 169 2920 4215 Face 5745 169 4724 2920 Face 5746 736 2921 193 Face 5747 736 4716 2921 Face 5748 385 4962 683 Face 5749 385 326 2922 Face 5750 4265 2923 2539 Face 5751 179 1237 2923 Face 5752 4595 2924 2547 Face 5753 609 1043 2924 Face 5754 1586 2925 31 Face 5755 4607 2480 2925 Face 5756 1501 4638 127 Face 5757 1501 652 4638 Face 5758 891 2927 4653 Face 5759 891 4515 2927 Face 5760 1366 2928 893 Face 5761 1366 3912 2928 Face 5762 4415 2929 2628 Face 5763 1877 4206 2929 Face 5764 383 2930 2448 Face 5765 383 2135 2930 Face 5766 1281 2931 2270 Face 5767 1281 4797 2931 Face 5768 4310 2932 252 Face 5769 1064 1763 2932 Face 5770 2147 2933 1738 Face 5771 2147 4037 2933 Face 5772 671 2934 3889 Face 5773 671 1977 2934 Face 5774 280 2935 2420 Face 5775 280 2747 3907 Face 5776 718 2936 3683 Face 5777 3428 1323 4581 Face 5778 4648 2937 831 Face 5779 4648 1140 2937 Face 5780 3960 2938 594 Face 5781 2028 4868 2938 Face 5782 4171 2939 4698 Face 5783 4171 1959 2939 Face 5784 2624 2940 1560 Face 5785 2624 3124 2940 Face 5786 651 2941 3102 Face 5787 651 4113 2941 Face 5788 1825 2942 2622 Face 5789 1825 4303 2942 Face 5790 2335 2943 4673 Face 5791 2335 4983 3602 Face 5792 953 2944 2388 Face 5793 953 4628 2944 Face 5794 812 2945 2850 Face 5795 812 3565 2945 Face 5796 1645 4534 5008 Face 5797 1645 1209 2946 Face 5798 272 2947 3677 Face 5799 272 4306 2947 Face 5800 2363 2948 3555 Face 5801 2363 3 2948 Face 5802 4467 2949 4904 Face 5803 529 2590 2949 Face 5804 224 2950 4737 Face 5805 224 2709 2950 Face 5806 549 2951 2107 Face 5807 549 2598 2951 Face 5808 1612 2952 583 Face 5809 1612 4548 2952 Face 5810 3696 2953 2068 Face 5811 1690 3801 2953 Face 5812 1979 2954 5013 Face 5813 1979 3859 4625 Face 5814 1178 2955 1871 Face 5815 1178 3928 2955 Face 5816 2280 2956 2488 Face 5817 2280 1547 2956 Face 5818 304 2957 1874 Face 5819 304 5028 4193 Face 5820 1848 2958 409 Face 5821 1848 3140 4403 Face 5822 4412 2959 3603 Face 5823 863 1773 2959 Face 5824 457 2960 4614 Face 5825 457 4005 2960 Face 5826 131 2961 2980 Face 5827 131 846 2961 Face 5828 99 2962 2058 Face 5829 99 2698 2962 Face 5830 1776 2963 343 Face 5831 1776 2627 2963 Face 5832 877 2964 4090 Face 5833 4975 1947 3789 Face 5834 3797 2965 1444 Face 5835 1681 5023 2965 Face 5836 887 4588 3259 Face 5837 887 1372 4588 Face 5838 1441 2967 2879 Face 5839 1441 2584 2967 Face 5840 2307 2968 1007 Face 5841 2307 455 2968 Face 5842 3085 2969 3179 Face 5843 3085 222 2969 Face 5844 772 2970 2465 Face 5845 772 2484 2970 Face 5846 1133 2971 2033 Face 5847 1133 2024 2971 Face 5848 918 2972 2323 Face 5849 918 4073 2972 Face 5850 4351 2973 2036 Face 5851 2645 4267 2973 Face 5852 67 2974 3438 Face 5853 67 2338 2974 Face 5854 4925 4146 2466 Face 5855 876 1910 2975 Face 5856 841 2976 2264 Face 5857 3908 206 2976 Face 5858 1177 2977 1799 Face 5859 1177 2291 2977 Face 5860 133 2978 2059 Face 5861 133 3564 2978 Face 5862 294 2979 1999 Face 5863 294 1752 2979 Face 5864 1786 2980 2961 Face 5865 1786 581 2980 Face 5866 1127 2981 4153 Face 5867 1127 1614 2981 Face 5868 680 2982 3786 Face 5869 4669 1219 2982 Face 5870 981 2983 2357 Face 5871 981 2506 2983 Face 5872 977 2984 2072 Face 5873 977 1729 2984 Face 5874 264 2985 2140 Face 5875 264 4294 2985 Face 5876 1255 2986 1813 Face 5877 1255 713 2986 Face 5878 58 2987 4060 Face 5879 58 1301 4954 Face 5880 252 2988 2039 Face 5881 252 892 3834 Face 5882 316 2989 3286 Face 5883 3728 3633 2989 Face 5884 1303 2990 2146 Face 5885 1303 950 2990 Face 5886 1553 2991 305 Face 5887 1553 2065 4851 Face 5888 1308 4788 2317 Face 5889 1308 752 2992 Face 5890 4557 2993 3539 Face 5891 4557 534 2993 Face 5892 967 2994 422 Face 5893 967 2448 2994 Face 5894 1302 2995 3537 Face 5895 1302 3649 2995 Face 5896 1750 2996 1115 Face 5897 1750 1843 2996 Face 5898 4802 2997 4320 Face 5899 2299 4665 2997 Face 5900 1635 2998 1108 Face 5901 1635 4143 2998 Face 5902 411 2999 4713 Face 5903 411 4360 2999 Face 5904 1860 3000 3169 Face 5905 1860 546 3000 Face 5906 1386 3672 2703 Face 5907 1386 1941 3001 Face 5908 580 3002 1238 Face 5909 580 2439 4883 Face 5910 866 3003 4322 Face 5911 866 350 3003 Face 5912 2602 3004 1721 Face 5913 2602 3291 3004 Face 5914 1921 3005 3750 Face 5915 1921 612 3005 Face 5916 527 3006 3476 Face 5917 527 4172 3006 Face 5918 1363 3007 766 Face 5919 1363 1948 3007 Face 5920 1053 3008 2560 Face 5921 1053 2537 3008 Face 5922 940 3009 1347 Face 5923 940 3835 3009 Face 5924 336 3010 4289 Face 5925 336 919 3010 Face 5926 3791 3011 1564 Face 5927 3791 4471 3011 Face 5928 4421 3012 1543 Face 5929 174 1409 3012 Face 5930 4915 3013 3502 Face 5931 4915 4389 3013 Face 5932 1970 3014 3258 Face 5933 1970 852 3014 Face 5934 1207 4324 2206 Face 5935 1207 3188 3015 Face 5936 1261 3016 2030 Face 5937 1261 3897 3016 Face 5938 943 3017 2467 Face 5939 943 1490 3017 Face 5940 378 3018 3289 Face 5941 378 1274 3018 Face 5942 806 3019 2189 Face 5943 806 3272 3019 Face 5944 4606 3020 4852 Face 5945 3700 1993 3020 Face 5946 1542 3021 4463 Face 5947 1542 2547 3021 Face 5948 137 3022 1664 Face 5949 137 2622 3643 Face 5950 296 3023 3940 Face 5951 296 2063 3023 Face 5952 667 4112 3384 Face 5953 667 3477 3024 Face 5954 734 3025 2434 Face 5955 3861 2111 3025 Face 5956 2095 3026 647 Face 5957 2095 524 3026 Face 5958 4926 3027 3652 Face 5959 4926 50 3027 Face 5960 1604 4277 4526 Face 5961 1604 1014 4277 Face 5962 4987 4107 578 Face 5963 1711 2664 3029 Face 5964 1234 3030 4132 Face 5965 1234 84 3030 Face 5966 744 4583 2318 Face 5967 744 1197 3031 Face 5968 1977 3032 44 Face 5969 1977 671 3032 Face 5970 1940 3033 1327 Face 5971 1940 3965 3033 Face 5972 907 3034 2441 Face 5973 907 3352 4996 Face 5974 4928 3035 3221 Face 5975 1916 1083 3035 Face 5976 230 3036 3725 Face 5977 230 2174 3036 Face 5978 71 3037 1728 Face 5979 71 1033 3037 Face 5980 650 3038 2208 Face 5981 650 4898 3038 Face 5982 1040 3039 3926 Face 5983 1040 4663 3039 Face 5984 1778 4476 779 Face 5985 1778 433 3040 Face 5986 2044 3041 711 Face 5987 2044 3901 3041 Face 5988 70 3042 2631 Face 5989 70 2375 3042 Face 5990 809 3043 2003 Face 5991 809 1561 4574 Face 5992 190 3044 4536 Face 5993 190 1190 3044 Face 5994 1400 3045 2263 Face 5995 1400 4393 3045 Face 5996 1079 3046 1706 Face 5997 1079 2831 3046 Face 5998 15 4652 4193 Face 5999 15 1046 4652 Face 6000 469 3048 3491 Face 6001 469 2919 4723 Face 6002 2052 5026 510 Face 6003 2052 1925 4315 Face 6004 2094 3050 1414 Face 6005 2094 289 3050 Face 6006 1168 3051 2227 Face 6007 1168 279 4413 Face 6008 3714 3052 464 Face 6009 156 1928 3052 Face 6010 1746 3053 4175 Face 6011 1746 453 3053 Face 6012 482 3054 3742 Face 6013 482 3459 3054 Face 6014 566 3055 4507 Face 6015 566 2088 3055 Face 6016 3986 3056 51 Face 6017 655 5020 3056 Face 6018 92 3057 4009 Face 6019 92 1805 3057 Face 6020 1789 3058 4080 Face 6021 1789 2869 3058 Face 6022 47 3059 4105 Face 6023 47 1802 3059 Face 6024 1753 3060 2698 Face 6025 4248 2386 3060 Face 6026 4230 4168 2051 Face 6027 1231 2015 3061 Face 6028 1631 3062 244 Face 6029 1631 1273 3904 Face 6030 807 3063 1942 Face 6031 807 3462 3063 Face 6032 3927 3064 4311 Face 6033 1562 4788 3064 Face 6034 1086 3764 2009 Face 6035 1086 2353 3065 Face 6036 860 3066 3754 Face 6037 860 4327 3066 Face 6038 4738 4770 1770 Face 6039 1673 1169 3067 Face 6040 643 3068 3152 Face 6041 643 4434 3068 Face 6042 2337 4386 900 Face 6043 2337 2795 4386 Face 6044 115 3070 4597 Face 6045 115 3914 3070 Face 6046 4305 3304 1823 Face 6047 596 3072 1116 Face 6048 596 2781 3072 Face 6049 975 3073 2785 Face 6050 975 3483 3073 Face 6051 149 3074 2055 Face 6052 3891 2895 3074 Face 6053 4273 3075 1442 Face 6054 635 2489 3075 Face 6055 203 3076 4699 Face 6056 203 1966 3076 Face 6057 244 4960 2184 Face 6058 244 1009 3077 Face 6059 4247 3078 2494 Face 6060 4247 536 4888 Face 6061 1173 3079 4111 Face 6062 1173 348 3079 Face 6063 1793 3080 895 Face 6064 1793 709 3080 Face 6065 417 3081 3647 Face 6066 417 1182 3081 Face 6067 874 3082 4572 Face 6068 874 3255 3082 Face 6069 955 3083 93 Face 6070 955 1626 4204 Face 6071 1707 3084 4406 Face 6072 1707 4876 3084 Face 6073 1988 4824 4018 Face 6074 1988 1666 4824 Face 6075 758 3086 3780 Face 6076 4756 2004 3086 Face 6077 2273 3087 804 Face 6078 2273 3660 3087 Face 6079 1179 3088 3454 Face 6080 1179 1920 3088 Face 6081 20 3089 3125 Face 6082 20 1913 3089 Face 6083 767 3090 2264 Face 6084 767 4367 3090 Face 6085 1319 3091 85 Face 6086 1319 2312 3091 Face 6087 751 3092 2226 Face 6088 751 2836 3092 Face 6089 2576 3093 4741 Face 6090 2576 5001 3093 Face 6091 60 4098 2644 Face 6092 60 1911 3094 Face 6093 484 3095 4125 Face 6094 484 2965 3095 Face 6095 1676 3096 437 Face 6096 1676 5032 3096 Face 6097 4041 3097 2606 Face 6098 696 4797 3097 Face 6099 3873 3098 79 Face 6100 1543 854 4970 Face 6101 420 3099 1678 Face 6102 420 2883 3099 Face 6103 1492 3100 520 Face 6104 1492 5059 3100 Face 6105 489 3101 3969 Face 6106 489 1296 3101 Face 6107 1440 3102 2941 Face 6108 1440 4760 3102 Face 6109 4633 3103 2186 Face 6110 4633 1557 3103 Face 6111 4867 3104 913 Face 6112 2008 1210 3104 Face 6113 509 3105 776 Face 6114 509 1959 3105 Face 6115 1508 4139 387 Face 6116 1508 2868 3106 Face 6117 2385 3107 1639 Face 6118 2385 4065 3107 Face 6119 1104 3108 2312 Face 6120 1104 3990 3108 Face 6121 1091 3109 2168 Face 6122 1091 287 3109 Face 6123 2075 3110 256 Face 6124 2075 3191 3110 Face 6125 34 3111 3420 Face 6126 34 1594 3111 Face 6127 2372 3112 508 Face 6128 2372 703 3112 Face 6129 382 3113 1523 Face 6130 382 4881 3113 Face 6131 4027 4678 630 Face 6132 325 2848 3114 Face 6133 1239 3115 3880 Face 6134 1239 1787 3115 Face 6135 2349 3116 4580 Face 6136 2349 1607 3116 Face 6137 677 3117 5037 Face 6138 677 2662 3117 Face 6139 574 3118 1760 Face 6140 574 1824 3118 Face 6141 1393 3119 381 Face 6142 1393 16 3119 Face 6143 452 3120 1396 Face 6144 452 4719 3120 Face 6145 683 3121 385 Face 6146 683 1836 3121 Face 6147 1137 3122 5021 Face 6148 1137 2783 3122 Face 6149 175 3123 3887 Face 6150 4580 4998 3123 Face 6151 901 3124 2624 Face 6152 901 3745 3124 Face 6153 461 3125 3089 Face 6154 461 496 3125 Face 6155 2277 3126 2504 Face 6156 2277 3603 3126 Face 6157 3854 3127 2069 Face 6158 3854 2620 3127 Face 6159 2294 3128 1512 Face 6160 4323 2519 3128 Face 6161 2224 3129 4202 Face 6162 4019 369 3129 Face 6163 1616 3130 4602 Face 6164 4214 5000 3130 Face 6165 1251 3909 232 Face 6166 1251 2982 3131 Face 6167 1763 4438 2550 Face 6168 1763 2405 3132 Face 6169 492 3133 1697 Face 6170 492 1426 3133 Face 6171 2396 3134 897 Face 6172 2396 1377 3952 Face 6173 1859 3135 301 Face 6174 1859 2110 3135 Face 6175 721 3136 4090 Face 6176 721 3319 3136 Face 6177 1376 3137 4907 Face 6178 1376 84 3137 Face 6179 3099 3138 3432 Face 6180 3778 1373 3138 Face 6181 2030 3139 1261 Face 6182 2030 4839 3139 Face 6183 139 3140 4382 Face 6184 139 2958 3140 Face 6185 3835 3141 355 Face 6186 1978 3443 4568 Face 6187 621 3142 5025 Face 6188 621 3544 3142 Face 6189 1519 3143 4356 Face 6190 1519 2887 3143 Face 6191 823 3144 1389 Face 6192 823 524 3144 Face 6193 648 3145 1648 Face 6194 648 26 3145 Face 6195 289 3146 3050 Face 6196 4301 3719 4870 Face 6197 366 3147 2142 Face 6198 366 2382 3147 Face 6199 466 3148 3090 Face 6200 466 779 3148 Face 6201 5032 4195 2847 Face 6202 5032 1676 4195 Face 6203 416 3150 3848 Face 6204 416 4766 3150 Face 6205 1380 3151 1745 Face 6206 1380 154 3151 Face 6207 4370 3152 2361 Face 6208 4370 2085 3152 Face 6209 1310 3153 2401 Face 6210 1310 3848 3153 Face 6211 3974 3154 2247 Face 6212 1224 494 3154 Face 6213 361 4813 2786 Face 6214 361 1575 3155 Face 6215 894 3156 3456 Face 6216 894 4869 3156 Face 6217 1659 3157 3129 Face 6218 1659 1054 3157 Face 6219 242 3158 2865 Face 6220 242 4544 3158 Face 6221 2552 3159 1257 Face 6222 4237 394 4348 Face 6223 275 3160 3661 Face 6224 275 2617 3160 Face 6225 873 3161 1875 Face 6226 873 3747 3161 Face 6227 54 3162 2593 Face 6228 4496 1432 3162 Face 6229 117 3163 2261 Face 6230 117 1281 3163 Face 6231 24 3164 3964 Face 6232 24 3827 3164 Face 6233 2239 3165 1969 Face 6234 3483 4350 3165 Face 6235 236 3166 2251 Face 6236 236 2106 3166 Face 6237 781 3167 2459 Face 6238 781 3711 3167 Face 6239 571 4793 3747 Face 6240 571 4254 3168 Face 6241 1268 3169 761 Face 6242 1268 1860 3169 Face 6243 639 3170 3860 Face 6244 639 1887 4506 Face 6245 1424 3171 3620 Face 6246 1424 2284 3171 Face 6247 1249 3172 1347 Face 6248 4611 1589 3172 Face 6249 310 3173 2846 Face 6250 310 4700 3173 Face 6251 82 3174 3991 Face 6252 82 2725 3174 Face 6253 844 3175 2374 Face 6254 844 5054 3175 Face 6255 168 3176 2248 Face 6256 168 2394 3176 Face 6257 1048 3177 4763 Face 6258 1048 2567 3177 Face 6259 1396 3178 2417 Face 6260 1396 3755 3178 Face 6261 745 4018 3892 Face 6262 745 1988 4018 Face 6263 569 3180 2898 Face 6264 569 3584 3180 Face 6265 2188 3181 4035 Face 6266 2188 2860 3181 Face 6267 1882 3182 2780 Face 6268 1882 871 3773 Face 6269 1429 3183 2407 Face 6270 1429 4972 3183 Face 6271 4109 3184 539 Face 6272 1016 628 3184 Face 6273 29 3185 1031 Face 6274 3931 2043 3185 Face 6275 2584 3186 2175 Face 6276 2584 347 3186 Face 6277 2056 3187 869 Face 6278 2056 1450 3187 Face 6279 4532 3188 1601 Face 6280 1949 851 3188 Face 6281 1215 3189 4707 Face 6282 1215 2628 3189 Face 6283 715 3190 4440 Face 6284 715 1297 3190 Face 6285 377 4045 1685 Face 6286 377 3110 4045 Face 6287 1823 3192 545 Face 6288 1823 3580 3192 Face 6289 111 3193 1164 Face 6290 111 2659 3193 Face 6291 1765 3296 4404 Face 6292 1874 3195 2330 Face 6293 1874 4487 3195 Face 6294 69 3196 2352 Face 6295 69 967 3196 Face 6296 1839 3197 550 Face 6297 4933 2712 4517 Face 6298 1483 3198 687 Face 6299 1483 4718 3198 Face 6300 660 3199 1567 Face 6301 660 3957 3199 Face 6302 4330 3200 2013 Face 6303 931 3201 1686 Face 6304 931 3756 3201 Face 6305 1388 3202 361 Face 6306 1388 161 4040 Face 6307 262 4155 987 Face 6308 4617 1232 3203 Face 6309 4056 3204 144 Face 6310 4056 605 3204 Face 6311 4268 3205 2723 Face 6312 613 1902 3205 Face 6313 143 3206 1926 Face 6314 143 3881 3206 Face 6315 4944 3207 2316 Face 6316 430 4853 3207 Face 6317 1082 3208 4860 Face 6318 4194 3596 3208 Face 6319 760 3209 884 Face 6320 760 4319 3209 Face 6321 2341 3210 565 Face 6322 2341 927 3210 Face 6323 908 3211 1591 Face 6324 908 4654 4847 Face 6325 4154 3212 3866 Face 6326 4154 3467 3212 Face 6327 4181 3213 2915 Face 6328 4181 697 3213 Face 6329 941 3214 4609 Face 6330 941 2176 3214 Face 6331 598 3215 1509 Face 6332 598 3045 3215 Face 6333 1428 3216 4735 Face 6334 1428 2158 3216 Face 6335 213 3217 3108 Face 6336 213 1897 3217 Face 6337 1317 3218 3316 Face 6338 1317 2230 4043 Face 6339 739 3219 1528 Face 6340 739 2336 3219 Face 6341 2088 3220 3055 Face 6342 4708 1022 3220 Face 6343 87 3221 627 Face 6344 87 4928 3221 Face 6345 1072 3222 1224 Face 6346 1072 2214 3222 Face 6347 2393 3223 1464 Face 6348 2393 4658 3223 Face 6349 45 5024 2527 Face 6350 45 2280 3224 Face 6351 1379 3225 2294 Face 6352 1379 229 3225 Face 6353 502 3226 2703 Face 6354 502 3536 3226 Face 6355 2013 4464 4 Face 6356 2013 1702 4464 Face 6357 846 3228 2961 Face 6358 846 3135 3228 Face 6359 2137 3229 1235 Face 6360 2137 2549 4227 Face 6361 18 3230 931 Face 6362 18 3925 3230 Face 6363 4980 3231 1314 Face 6364 2035 2799 3957 Face 6365 4364 3232 1996 Face 6366 1884 3233 94 Face 6367 3752 2345 3233 Face 6368 3241 3234 906 Face 6369 3241 2204 3234 Face 6370 1324 3235 1130 Face 6371 1324 2883 3235 Face 6372 334 3236 4223 Face 6373 334 3645 3236 Face 6374 842 4717 2329 Face 6375 842 4540 3237 Face 6376 2186 3238 64 Face 6377 2186 4598 3238 Face 6378 1166 3239 2292 Face 6379 1166 2034 3239 Face 6380 2160 4825 1336 Face 6381 2160 2917 4825 Face 6382 471 3241 1883 Face 6383 471 2204 3241 Face 6384 163 3242 2590 Face 6385 163 3949 3242 Face 6386 4805 3243 4324 Face 6387 4805 3823 3243 Face 6388 2246 3244 923 Face 6389 2246 4416 3244 Face 6390 1689 3245 3500 Face 6391 1689 141 3245 Face 6392 1296 3246 4095 Face 6393 1296 3732 3246 Face 6394 778 3247 1650 Face 6395 778 2371 3247 Face 6396 902 3248 1555 Face 6397 1005 3249 2864 Face 6398 1005 2136 4023 Face 6399 1258 3250 2251 Face 6400 1258 551 3250 Face 6401 402 3251 1888 Face 6402 402 3434 3251 Face 6403 4646 3252 3103 Face 6404 4646 2197 3252 Face 6405 780 3253 2365 Face 6406 780 2563 3253 Face 6407 1986 3254 2494 Face 6408 1986 3956 3718 Face 6409 4340 3255 874 Face 6410 1409 4529 3255 Face 6411 2568 3256 629 Face 6412 2568 231 3256 Face 6413 687 3257 1483 Face 6414 687 1756 3257 Face 6415 1606 3258 3014 Face 6416 1606 198 3258 Face 6417 274 3259 4588 Face 6418 274 2244 3259 Face 6419 1418 3260 2416 Face 6420 1418 2346 3260 Face 6421 68 3261 4770 Face 6422 68 1844 3261 Face 6423 1299 3262 784 Face 6424 3958 28 3262 Face 6425 652 3263 2301 Face 6426 652 1501 3263 Face 6427 483 3264 2607 Face 6428 483 2441 3264 Face 6429 2208 3265 584 Face 6430 2208 4999 3265 Face 6431 1952 3266 2518 Face 6432 1952 4024 3266 Face 6433 184 3267 3466 Face 6434 3743 487 3267 Face 6435 2093 3268 4846 Face 6436 2093 321 3268 Face 6437 418 3269 2623 Face 6438 418 603 3269 Face 6439 519 3270 1417 Face 6440 519 2639 3270 Face 6441 633 3271 2276 Face 6442 633 747 3271 Face 6443 491 3272 4672 Face 6444 491 3019 3272 Face 6445 2058 3273 99 Face 6446 2058 653 4616 Face 6447 1553 3274 4030 Face 6448 1553 305 3274 Face 6449 1129 3275 1687 Face 6450 1129 2045 3275 Face 6451 1781 3276 982 Face 6452 1781 4283 3276 Face 6453 1226 3277 670 Face 6454 1226 3028 3277 Face 6455 1434 3278 1838 Face 6456 4267 2645 3278 Face 6457 1737 3279 4838 Face 6458 1737 750 3279 Face 6459 512 3280 3141 Face 6460 512 945 3280 Face 6461 1956 3281 915 Face 6462 1956 2344 3281 Face 6463 3933 3282 1075 Face 6464 1275 2826 3282 Face 6465 2392 3283 4897 Face 6466 2392 3793 3283 Face 6467 924 3284 672 Face 6468 924 2613 3284 Face 6469 1592 3285 4292 Face 6470 1592 1399 4569 Face 6471 1164 3286 2989 Face 6472 1164 3193 3286 Face 6473 2235 3287 3670 Face 6474 2235 4332 3287 Face 6475 1188 3288 3860 Face 6476 1188 2234 4924 Face 6477 2182 3289 3018 Face 6478 2182 4127 3289 Face 6479 4619 3290 1360 Face 6480 4619 2525 3290 Face 6481 4105 3291 2169 Face 6482 4105 3004 3291 Face 6483 2200 3323 2750 Face 6484 2200 1853 3323 Face 6485 307 3293 3983 Face 6486 307 1061 3293 Face 6487 520 3294 1438 Face 6488 520 4284 3294 Face 6489 500 3295 1330 Face 6490 500 4328 3295 Face 6491 3194 3296 1765 Face 6492 4432 3297 868 Face 6493 4897 3283 3297 Face 6494 412 3298 2163 Face 6495 412 4637 3298 Face 6496 830 4017 2866 Face 6497 830 297 3299 Face 6498 2495 3300 653 Face 6499 2495 558 3300 Face 6500 507 3301 1246 Face 6501 507 2076 3301 Face 6502 4986 3302 3601 Face 6503 4986 1362 3302 Face 6504 2158 3303 1229 Face 6505 2158 270 3303 Face 6506 3071 3304 4305 Face 6507 2443 3305 814 Face 6508 2443 1761 3305 Face 6509 828 3306 1587 Face 6510 828 2415 3306 Face 6511 1266 3307 1965 Face 6512 2399 3308 3846 Face 6513 2399 1361 3308 Face 6514 1771 3309 4178 Face 6515 1771 4395 3309 Face 6516 1326 3310 3777 Face 6517 1326 624 3310 Face 6518 691 3311 1455 Face 6519 691 1272 3311 Face 6520 1785 3312 4622 Face 6521 5007 1915 3312 Face 6522 320 4385 2555 Face 6523 320 521 3313 Face 6524 2704 3314 590 Face 6525 2704 30 3314 Face 6526 4226 3315 2598 Face 6527 343 2963 3315 Face 6528 1196 3316 3218 Face 6529 1196 2773 3316 Face 6530 811 3317 4151 Face 6531 811 166 3317 Face 6532 1551 3318 904 Face 6533 1551 1180 3318 Face 6534 1900 3319 721 Face 6535 1900 23 3319 Face 6536 2299 3320 4555 Face 6537 2299 2997 4802 Face 6538 1915 3321 4115 Face 6539 1915 4890 3321 Face 6540 3964 3322 24 Face 6541 1402 958 3322 Face 6542 3292 3323 1853 Face 6543 3292 5060 3323 Face 6544 1692 3324 631 Face 6545 1692 879 3324 Face 6546 546 3325 249 Face 6547 546 3052 3325 Face 6548 1913 3326 2433 Face 6549 1913 4246 3326 Face 6550 277 3327 2007 Face 6551 277 2828 3327 Face 6552 2371 3328 3247 Face 6553 2371 1324 3328 Face 6554 1076 3329 2591 Face 6555 1076 2403 3329 Face 6556 524 3330 1191 Face 6557 524 2095 3330 Face 6558 413 3331 3793 Face 6559 413 1811 3331 Face 6560 1294 3332 2362 Face 6561 1294 1701 3332 Face 6562 532 3333 3674 Face 6563 532 4271 3333 Face 6564 305 3334 3274 Face 6565 305 4170 3334 Face 6566 2478 3335 1602 Face 6567 2478 4520 3335 Face 6568 4692 3336 2402 Face 6569 1186 2685 3336 Face 6570 4408 3337 2916 Face 6571 1412 3338 1387 Face 6572 1412 1996 3338 Face 6573 367 3339 3716 Face 6574 4474 2678 3339 Face 6575 883 3340 2570 Face 6576 883 2790 3340 Face 6577 1335 4545 926 Face 6578 1335 4459 4545 Face 6579 606 3342 898 Face 6580 606 1682 3342 Face 6581 238 3343 4253 Face 6582 238 1662 3343 Face 6583 187 3344 3922 Face 6584 187 2143 3344 Face 6585 1021 3345 1747 Face 6586 1021 1533 3345 Face 6587 567 3346 4744 Face 6588 567 3237 3346 Face 6589 1547 3347 2044 Face 6590 1547 4007 3347 Face 6591 925 3348 2952 Face 6592 925 1563 3348 Face 6593 2276 4865 217 Face 6594 2276 3271 3349 Face 6595 4744 3350 567 Face 6596 4744 2549 3350 Face 6597 2366 3351 736 Face 6598 4036 1886 3351 Face 6599 127 3352 2872 Face 6600 127 2926 3352 Face 6601 2378 3353 1045 Face 6602 2378 1599 3353 Face 6603 631 3354 2668 Face 6604 631 1989 3354 Face 6605 12 3355 5055 Face 6606 1593 3356 2316 Face 6607 1593 2097 3356 Face 6608 1544 4541 387 Face 6609 1544 3204 4541 Face 6610 2232 3358 944 Face 6611 2232 2686 3358 Face 6612 714 3359 1951 Face 6613 714 2237 3359 Face 6614 938 5030 2437 Face 6615 938 2831 5030 Face 6616 2458 3361 2018 Face 6617 2458 993 3361 Face 6618 106 3362 4641 Face 6619 106 3870 3362 Face 6620 27 3363 1375 Face 6621 27 625 3363 Face 6622 2166 3364 1880 Face 6623 2166 1307 3364 Face 6624 1227 5018 2910 Face 6625 1227 3195 5018 Face 6626 2315 3366 2250 Face 6627 827 4753 1727 Face 6628 827 3953 4753 Face 6629 1374 3368 4749 Face 6630 1374 910 3368 Face 6631 73 3369 2055 Face 6632 73 3292 3369 Face 6633 1411 3370 2159 Face 6634 1411 4685 3370 Face 6635 1974 3371 1124 Face 6636 1974 3726 3371 Face 6637 1415 3372 2481 Face 6638 1415 4032 3372 Face 6639 1077 3373 2293 Face 6640 1077 1882 3373 Face 6641 2475 3374 4302 Face 6642 2475 1814 3374 Face 6643 214 3375 3785 Face 6644 214 719 3375 Face 6645 590 3376 1427 Face 6646 4899 1906 3376 Face 6647 2097 3377 2551 Face 6648 2097 525 3377 Face 6649 2149 3378 1767 Face 6650 2149 4556 3378 Face 6651 875 3379 4493 Face 6652 875 1981 3379 Face 6653 1017 3380 1917 Face 6654 1017 3209 4319 Face 6655 4565 3381 2257 Face 6656 1119 2272 3381 Face 6657 2081 4940 1738 Face 6658 2081 2275 3382 Face 6659 393 3383 712 Face 6660 393 1586 3383 Face 6661 74 3384 4740 Face 6662 74 921 3384 Face 6663 496 3385 3125 Face 6664 496 4695 3385 Face 6665 4172 3386 3006 Face 6666 4172 2391 3386 Face 6667 1336 3387 4021 Face 6668 1336 3240 3387 Face 6669 1395 3388 1460 Face 6670 1395 4817 3388 Face 6671 1256 3389 3132 Face 6672 1256 2395 3389 Face 6673 276 3390 1598 Face 6674 4309 3127 3390 Face 6675 83 3391 1031 Face 6676 83 2097 3391 Face 6677 4689 3392 3693 Face 6678 4689 2861 3392 Face 6679 2542 4661 186 Face 6680 2542 554 4661 Face 6681 966 3394 3910 Face 6682 966 4319 3394 Face 6683 1183 4879 552 Face 6684 1183 2651 3395 Face 6685 2843 3396 1809 Face 6686 5037 3117 3396 Face 6687 2328 3397 436 Face 6688 2328 4879 3397 Face 6689 1328 3398 480 Face 6690 1328 317 3398 Face 6691 511 3399 1253 Face 6692 511 1114 3399 Face 6693 472 4936 602 Face 6694 472 2764 4936 Face 6695 88 3401 4675 Face 6696 88 2066 3401 Face 6697 90 3402 2505 Face 6698 90 4426 3402 Face 6699 167 3403 1768 Face 6700 167 3852 3403 Face 6701 4012 3404 591 Face 6702 4012 4321 3404 Face 6703 2284 3405 331 Face 6704 2284 680 3405 Face 6705 191 3406 2613 Face 6706 191 1628 4624 Face 6707 577 3407 1220 Face 6708 577 2991 3407 Face 6709 1081 3408 399 Face 6710 1081 5031 3408 Face 6711 2419 3409 313 Face 6712 2419 2941 3409 Face 6713 1155 3410 572 Face 6714 1155 218 3410 Face 6715 263 3411 1491 Face 6716 263 1710 3411 Face 6717 522 3412 2537 Face 6718 522 3738 3412 Face 6719 312 3413 2014 Face 6720 171 3414 969 Face 6721 171 4478 3414 Face 6722 2026 3415 2406 Face 6723 717 3416 2070 Face 6724 717 1976 3416 Face 6725 2346 3417 403 Face 6726 2346 936 3417 Face 6727 895 3418 1793 Face 6728 895 2190 3418 Face 6729 2006 3419 2687 Face 6730 2006 526 3419 Face 6731 1890 3420 3111 Face 6732 1890 4822 3420 Face 6733 1028 3421 4584 Face 6734 1028 313 3421 Face 6735 1507 3422 2134 Face 6736 1507 4696 3422 Face 6737 1298 3423 330 Face 6738 1298 4054 3423 Face 6739 247 3424 2781 Face 6740 3814 2002 3424 Face 6741 1670 3425 594 Face 6742 1670 1098 3425 Face 6743 1672 3426 4241 Face 6744 1672 2659 3426 Face 6745 1560 3427 1721 Face 6746 1560 2940 3427 Face 6747 718 3428 2936 Face 6748 718 3692 3428 Face 6749 455 3429 1181 Face 6750 455 2549 3429 Face 6751 1666 3430 3585 Face 6752 1666 2762 3430 Face 6753 1993 3431 3020 Face 6754 1993 2183 3431 Face 6755 1678 3432 694 Face 6756 1678 3099 3432 Face 6757 2531 3433 1476 Face 6758 3842 1630 3433 Face 6759 1074 3434 4225 Face 6760 1074 3251 3434 Face 6761 91 3435 4213 Face 6762 91 2772 3435 Face 6763 859 3436 2191 Face 6764 859 2875 3436 Face 6765 4355 3437 2572 Face 6766 1509 3215 3437 Face 6767 1604 3438 2974 Face 6768 1604 2221 3438 Face 6769 708 3439 2998 Face 6770 708 112 3439 Face 6771 851 3440 669 Face 6772 4982 3639 3440 Face 6773 2387 3441 3796 Face 6774 2387 1714 4807 Face 6775 647 3442 2739 Face 6776 647 3026 3442 Face 6777 1674 3443 4101 Face 6778 1674 4568 3443 Face 6779 1080 3444 2688 Face 6780 1080 775 3444 Face 6781 1536 3445 3060 Face 6782 1536 2362 3445 Face 6783 1219 3446 2453 Face 6784 4210 2671 3446 Face 6785 547 3447 2663 Face 6786 547 4649 3447 Face 6787 1535 3448 463 Face 6788 1535 2355 3448 Face 6789 557 3449 2567 Face 6790 557 3134 3449 Face 6791 2640 3450 255 Face 6792 2640 3116 3450 Face 6793 44 3451 1350 Face 6794 44 1639 3451 Face 6795 993 3452 3361 Face 6796 993 4138 3452 Face 6797 1283 3453 226 Face 6798 1283 2162 3453 Face 6799 2032 3454 370 Face 6800 2032 1474 3454 Face 6801 183 3455 2771 Face 6802 183 1007 3455 Face 6803 786 3456 4917 Face 6804 786 894 3456 Face 6805 2217 3457 870 Face 6806 2217 530 3457 Face 6807 1985 3458 3983 Face 6808 1985 81 3458 Face 6809 1717 3459 4418 Face 6810 1717 3054 3459 Face 6811 1628 3460 2577 Face 6812 1628 191 3460 Face 6813 172 3461 1665 Face 6814 172 1975 3461 Face 6815 2818 3462 807 Face 6816 2818 641 3462 Face 6817 1438 3463 520 Face 6818 1438 377 3463 Face 6819 2510 3464 4437 Face 6820 2510 599 3464 Face 6821 346 3465 4945 Face 6822 346 3017 3465 Face 6823 711 4615 2956 Face 6824 711 184 4615 Face 6825 735 3467 4374 Face 6826 735 3212 3467 Face 6827 1518 3468 2560 Face 6828 1518 1862 3468 Face 6829 1059 3469 4118 Face 6830 1059 1705 3469 Face 6831 185 3470 1389 Face 6832 185 4231 3470 Face 6833 288 3471 1970 Face 6834 288 4242 3471 Face 6835 1655 3472 754 Face 6836 1655 120 3472 Face 6837 1813 3473 2859 Face 6838 1813 2986 3473 Face 6839 1325 3474 2811 Face 6840 4306 4643 3474 Face 6841 2231 3475 991 Face 6842 2231 4932 3475 Face 6843 1534 3476 3006 Face 6844 1534 32 3476 Face 6845 2027 3477 667 Face 6846 2027 151 3477 Face 6847 839 3478 1345 Face 6848 839 2360 4255 Face 6849 1452 3479 692 Face 6850 1452 4186 3479 Face 6851 2687 3480 295 Face 6852 2687 3419 3480 Face 6853 1831 3481 4166 Face 6854 1831 2648 3481 Face 6855 4993 3482 3364 Face 6856 4993 1105 3482 Face 6857 2239 3483 3165 Face 6858 2239 972 3483 Face 6859 2429 3484 1020 Face 6860 2429 1358 3484 Face 6861 4858 3485 2810 Face 6862 152 2638 3485 Face 6863 126 3486 2651 Face 6864 126 4792 3486 Face 6865 2161 3487 4631 Face 6866 2161 1891 3487 Face 6867 56 3488 2153 Face 6868 56 3167 3488 Face 6869 893 3489 1071 Face 6870 893 2403 3489 Face 6871 2498 3490 1624 Face 6872 2498 3651 3490 Face 6873 2706 3491 3048 Face 6874 2706 4505 3491 Face 6875 509 3492 2939 Face 6876 509 1573 3492 Face 6877 2037 3800 3937 Face 6878 2037 4049 3800 Face 6879 845 3494 1572 Face 6880 845 3261 3494 Face 6881 2175 4623 1175 Face 6882 2175 3186 3495 Face 6883 4044 3496 1487 Face 6884 4044 1899 3496 Face 6885 381 3497 1393 Face 6886 381 3147 3497 Face 6887 2049 3498 3276 Face 6888 2049 2529 3498 Face 6889 2120 3499 390 Face 6890 2120 1961 3499 Face 6891 516 3500 3245 Face 6892 516 1654 3500 Face 6893 212 3501 1173 Face 6894 212 4786 3501 Face 6895 774 3502 3013 Face 6896 774 1476 3502 Face 6897 2007 3503 4261 Face 6898 4561 1648 3503 Face 6899 321 3504 1791 Face 6900 321 810 3504 Face 6901 1644 3505 3069 Face 6902 1644 2618 3505 Face 6903 1700 3506 4485 Face 6904 1700 4785 3506 Face 6905 1220 3507 210 Face 6906 1220 2829 3507 Face 6907 2085 3508 1530 Face 6908 2085 1747 3508 Face 6909 1054 3509 3157 Face 6910 4754 1458 3509 Face 6911 2461 3510 1218 Face 6912 2461 4768 3510 Face 6913 503 3511 2888 Face 6914 503 3084 3511 Face 6915 2701 3829 1857 Face 6916 1355 3513 3727 Face 6917 1355 2719 3513 Face 6918 930 3514 2198 Face 6919 930 596 3514 Face 6920 1752 3515 4268 Face 6921 1752 294 3515 Face 6922 1141 3516 4176 Face 6923 1141 783 3516 Face 6924 1558 3517 454 Face 6925 1558 696 3517 Face 6926 4622 3518 1785 Face 6927 2327 1430 3518 Face 6928 528 3519 728 Face 6929 528 1739 3519 Face 6930 2240 3520 2808 Face 6931 2240 1102 3520 Face 6932 220 3521 1267 Face 6933 220 1398 4365 Face 6934 40 3522 2249 Face 6935 40 1240 3522 Face 6936 363 3523 2040 Face 6937 363 4406 3523 Face 6938 266 3524 2293 Face 6939 266 2652 3524 Face 6940 1538 3525 4350 Face 6941 4531 793 3525 Face 6942 1820 3526 176 Face 6943 4162 1128 3526 Face 6944 2633 3527 4479 Face 6945 2633 1004 3527 Face 6946 2775 3528 4297 Face 6947 218 3529 3979 Face 6948 218 2347 3529 Face 6949 1861 3530 2413 Face 6950 1861 2944 3530 Face 6951 810 4671 2199 Face 6952 810 94 4671 Face 6953 957 3532 2343 Face 6954 957 2215 3532 Face 6955 813 3533 2503 Face 6956 813 1535 3533 Face 6957 2011 3534 2695 Face 6958 2011 79 3534 Face 6959 4546 3535 2793 Face 6960 317 3048 3535 Face 6961 1056 3536 502 Face 6962 1056 1437 3536 Face 6963 973 3537 2656 Face 6964 973 1302 3537 Face 6965 395 3538 2356 Face 6966 395 4620 3538 Face 6967 1605 3539 2819 Face 6968 1605 239 3539 Face 6969 1730 3540 419 Face 6970 1730 286 3540 Face 6971 410 5015 3537 Face 6972 410 1565 5015 Face 6973 4119 3542 1602 Face 6974 716 2449 3542 Face 6975 4131 4844 1722 Face 6976 4131 1105 3543 Face 6977 2702 3544 4263 Face 6978 2702 3142 3544 Face 6979 915 3545 2709 Face 6980 915 3281 3545 Face 6981 960 3546 1632 Face 6982 960 3727 3546 Face 6983 1022 3547 1340 Face 6984 1022 2805 3547 Face 6985 2670 4379 1892 Face 6986 2670 1526 3548 Face 6987 136 3549 2408 Face 6988 136 2230 4973 Face 6989 474 3550 2222 Face 6990 474 1213 3550 Face 6991 1407 3551 3357 Face 6992 1960 4458 2525 Face 6993 1960 730 4458 Face 6994 950 3553 2990 Face 6995 950 1494 3553 Face 6996 52 3554 2322 Face 6997 52 2468 3554 Face 6998 2054 3555 2948 Face 6999 2054 1705 3555 Face 7000 2425 3556 301 Face 7001 2425 486 3556 Face 7002 1665 3557 2901 Face 7003 1665 3461 3557 Face 7004 53 3558 1935 Face 7005 53 1401 3558 Face 7006 362 3559 4168 Face 7007 362 2765 3559 Face 7008 433 3560 839 Face 7009 433 1778 3560 Face 7010 2735 3561 142 Face 7011 2735 1728 3561 Face 7012 424 3562 2048 Face 7013 424 4128 3562 Face 7014 1020 3563 2429 Face 7015 1020 4877 3563 Face 7016 917 3564 133 Face 7017 917 4179 3564 Face 7018 201 3565 1706 Face 7019 201 1834 3565 Face 7020 657 3566 2442 Face 7021 657 4929 3566 Face 7022 1123 3567 4912 Face 7023 1123 3840 3567 Face 7024 2418 3568 1755 Face 7025 2418 1918 3568 Face 7026 3049 3569 3667 Face 7027 5026 2052 4315 Face 7028 1742 3570 670 Face 7029 1742 2720 3570 Face 7030 2469 3571 945 Face 7031 2469 706 3571 Face 7032 1477 3572 1799 Face 7033 1477 579 3572 Face 7034 1701 3573 4490 Face 7035 1701 1536 3573 Face 7036 591 3574 3345 Face 7037 591 2009 3574 Face 7038 463 3575 2542 Face 7039 463 749 3575 Face 7040 891 3576 1435 Face 7041 891 4653 3576 Face 7042 1931 3577 4368 Face 7043 1931 2776 3577 Face 7044 1743 3578 2361 Face 7045 1743 1165 3578 Face 7046 4935 3579 4282 Face 7047 4935 87 3579 Face 7048 1321 3580 1823 Face 7049 1321 4508 3580 Face 7050 61 3581 2591 Face 7051 61 3981 3581 Face 7052 125 3582 2538 Face 7053 125 1777 3582 Face 7054 514 3583 4989 Face 7055 514 4868 3583 Face 7056 258 3584 1790 Face 7057 258 3180 3584 Face 7058 2310 3585 3917 Face 7059 2310 1666 3585 Face 7060 2082 3586 707 Face 7061 2082 1121 3586 Face 7062 2794 3587 1990 Face 7063 2794 1217 3587 Face 7064 1107 3588 2131 Face 7065 1107 2615 3588 Face 7066 1806 3589 1036 Face 7067 1806 475 3589 Face 7068 985 3590 2363 Face 7069 1959 3591 3105 Face 7070 1959 4171 3591 Face 7071 335 3592 1963 Face 7072 335 3934 3592 Face 7073 1470 3593 789 Face 7074 1470 422 3593 Face 7075 2705 3594 4854 Face 7076 2705 1120 3594 Face 7077 1327 4920 1209 Face 7078 1327 3033 3595 Face 7079 337 3596 1820 Face 7080 337 3208 3596 Face 7081 4597 3597 115 Face 7082 1288 4322 3597 Face 7083 2654 3598 2742 Face 7084 2654 829 3598 Face 7085 2593 3599 54 Face 7086 2593 2621 3599 Face 7087 1315 3600 4101 Face 7088 1315 1482 3600 Face 7089 737 3601 3302 Face 7090 4677 1017 3601 Face 7091 2943 3602 1595 Face 7092 2943 2335 3602 Face 7093 2237 3603 2277 Face 7094 2237 1775 3603 Face 7095 1767 4549 1610 Face 7096 1767 3378 3604 Face 7097 2791 3605 1095 Face 7098 2791 1669 3605 Face 7099 1761 3606 3305 Face 7100 1761 1393 3606 Face 7101 616 3607 183 Face 7102 4907 3137 3607 Face 7103 1392 4247 2494 Face 7104 1392 1 3608 Face 7105 664 3609 4884 Face 7106 664 1971 3609 Face 7107 1253 3610 4627 Face 7108 1253 4492 3610 Face 7109 1384 3611 376 Face 7110 1384 3997 3611 Face 7111 795 3612 2172 Face 7112 795 945 3612 Face 7113 4951 3613 1859 Face 7114 791 4880 3613 Face 7115 1051 3614 4429 Face 7116 1051 560 3614 Face 7117 1493 3615 1644 Face 7118 1493 3130 3615 Face 7119 1089 3616 758 Face 7120 1089 139 3616 Face 7121 1889 3617 818 Face 7122 1889 2473 3617 Face 7123 1640 3618 2749 Face 7124 1640 1013 3618 Face 7125 526 3619 2925 Face 7126 526 4985 3619 Face 7127 1023 3620 3171 Face 7128 1023 388 3620 Face 7129 700 3621 3871 Face 7130 700 764 3621 Face 7131 1731 3622 2526 Face 7132 4882 2325 3622 Face 7133 1144 4789 2467 Face 7134 1144 261 3623 Face 7135 1210 3624 2745 Face 7136 1210 2008 3624 Face 7137 1554 3625 2504 Face 7138 1554 2289 3625 Face 7139 46 3626 3269 Face 7140 46 1078 4736 Face 7141 2444 3627 1510 Face 7142 2444 610 3627 Face 7143 14 3628 358 Face 7144 14 2722 3628 Face 7145 710 3629 1282 Face 7146 710 3092 4688 Face 7147 1316 3630 4976 Face 7148 1316 2415 5064 Face 7149 150 3631 1830 Face 7150 150 3997 3631 Face 7151 1938 3632 4815 Face 7152 1938 852 3632 Face 7153 2228 3633 3728 Face 7154 2228 2431 3633 Face 7155 2091 4451 3920 Face 7156 2091 134 3634 Face 7157 1942 3635 2414 Face 7158 4710 1334 3635 Face 7159 1102 3636 3520 Face 7160 1102 4574 3636 Face 7161 816 3637 4748 Face 7162 816 1788 3637 Face 7163 899 3638 4457 Face 7164 899 405 3638 Face 7165 498 3639 4982 Face 7166 498 4642 3639 Face 7167 1688 3640 565 Face 7168 1688 4445 3640 Face 7169 1156 3641 3153 Face 7170 1156 2768 4784 Face 7171 368 3642 2518 Face 7172 4201 3781 3642 Face 7173 3022 3643 4533 Face 7174 3022 137 3643 Face 7175 1371 3644 5006 Face 7176 1371 585 3644 Face 7177 2841 3645 334 Face 7178 2841 424 3645 Face 7179 1214 3646 2885 Face 7180 1214 1563 3646 Face 7181 1066 3647 2434 Face 7182 1066 417 3647 Face 7183 199 3648 4378 Face 7184 199 1869 3648 Face 7185 722 3649 2681 Face 7186 722 4908 3649 Face 7187 2667 3650 4707 Face 7188 2667 323 3650 Face 7189 206 3651 2976 Face 7190 206 3490 3651 Face 7191 2402 3652 3027 Face 7192 2402 2486 3652 Face 7193 2585 3653 543 Face 7194 2585 1083 3653 Face 7195 755 3654 3110 Face 7196 755 1612 3654 Face 7197 1209 3655 1327 Face 7198 1209 1645 3655 Face 7199 303 3656 2579 Face 7200 406 3657 4369 Face 7201 406 3318 3657 Face 7202 352 4463 4113 Face 7203 352 1542 4463 Face 7204 2233 3659 1189 Face 7205 2233 593 3659 Face 7206 2611 3660 2273 Face 7207 2611 404 3660 Face 7208 822 3661 1597 Face 7209 822 4191 3661 Face 7210 1467 3662 306 Face 7211 1467 3150 3662 Face 7212 1897 3663 3217 Face 7213 1897 4564 3663 Face 7214 375 3664 1779 Face 7215 375 1151 3664 Face 7216 233 3665 2875 Face 7217 233 1680 3665 Face 7218 2129 3666 1363 Face 7219 2129 2654 3666 Face 7220 78 3667 3569 Face 7221 78 2804 3667 Face 7222 837 3668 3667 Face 7223 837 2385 3668 Face 7224 1279 3669 2777 Face 7225 1279 1831 3669 Face 7226 2213 3670 3287 Face 7227 2213 503 3670 Face 7228 64 3671 1956 Face 7229 64 3238 3671 Face 7230 3001 3672 1386 Face 7231 3001 2252 3672 Face 7232 465 3673 1073 Face 7233 465 2428 3673 Face 7234 1658 3674 3333 Face 7235 1658 2222 3674 Face 7236 31 4778 3383 Face 7237 31 2003 3675 Face 7238 749 3676 211 Face 7239 749 4240 3676 Face 7240 1331 3677 2400 Face 7241 1331 272 3677 Face 7242 4551 3678 2485 Face 7243 322 1906 3678 Face 7244 897 3679 2396 Face 7245 4425 756 3679 Face 7246 1555 3680 742 Face 7247 1555 2854 3680 Face 7248 2809 3681 642 Face 7249 2809 2516 3681 Face 7250 740 3682 157 Face 7251 740 1699 3682 Face 7252 1815 3683 2936 Face 7253 1815 1097 3683 Face 7254 559 3684 3473 Face 7255 559 4335 3684 Face 7256 1033 3685 4904 Face 7257 1033 3915 3685 Face 7258 2467 3686 1144 Face 7259 2467 3017 3686 Face 7260 2086 3687 337 Face 7261 2086 2896 3687 Face 7262 4958 3688 2873 Face 7263 265 2049 3688 Face 7264 4485 3689 1700 Face 7265 829 2129 3689 Face 7266 738 3690 3607 Face 7267 738 2182 4953 Face 7268 3407 3691 2829 Face 7269 3407 4851 3691 Face 7270 4747 3692 764 Face 7271 1284 3428 3692 Face 7272 2290 3693 3528 Face 7273 2290 4689 3693 Face 7274 1098 3694 3425 Face 7275 1098 1584 3694 Face 7276 390 3695 2120 Face 7277 390 2760 3695 Face 7278 1690 3696 1376 Face 7279 1690 2953 3696 Face 7280 453 3697 3053 Face 7281 453 2855 3697 Face 7282 933 3698 4055 Face 7283 933 1426 3698 Face 7284 1738 3699 2465 Face 7285 1738 2933 3699 Face 7286 384 3700 3321 Face 7287 384 1993 3700 Face 7288 440 3701 2210 Face 7289 440 5007 3701 Face 7290 211 3702 1962 Face 7291 211 1101 3702 Face 7292 4946 3703 374 Face 7293 1711 3029 4987 Face 7294 1734 4275 2474 Face 7295 4819 217 4275 Face 7296 949 3705 2962 Face 7297 949 3445 3705 Face 7298 1043 3706 1588 Face 7299 4587 2384 3706 Face 7300 2226 3707 4845 Face 7301 2226 1581 3707 Face 7302 1140 3708 3223 Face 7303 1140 2180 3708 Face 7304 1878 3709 318 Face 7305 1878 956 3709 Face 7306 333 3710 1989 Face 7307 333 5063 3710 Face 7308 2221 3711 781 Face 7309 2221 1604 4526 Face 7310 2424 3712 4943 Face 7311 2424 1410 3712 Face 7312 1195 3713 3453 Face 7313 1195 3279 3713 Face 7314 156 3714 1463 Face 7315 156 3052 3714 Face 7316 1468 3715 2292 Face 7317 1468 431 3715 Face 7318 542 3716 3339 Face 7319 542 4137 3716 Face 7320 1009 3717 3077 Face 7321 1009 3163 3717 Face 7322 3254 3718 4347 Face 7323 3254 1986 3718 Face 7324 1339 3719 4301 Face 7325 1339 149 3719 Face 7326 2548 4628 953 Face 7327 2548 2093 3720 Face 7328 2245 3721 2846 Face 7329 2245 1459 3721 Face 7330 4695 3722 1842 Face 7331 4695 496 3722 Face 7332 1248 3723 4799 Face 7333 1248 2020 3723 Face 7334 743 3724 1532 Face 7335 743 1992 3724 Face 7336 1669 3725 3036 Face 7337 1669 462 3725 Face 7338 404 3726 1974 Face 7339 404 2611 3726 Face 7340 138 3727 3513 Face 7341 138 3546 3727 Face 7342 316 3728 2989 Face 7343 316 2070 3728 Face 7344 854 3729 4970 Face 7345 854 2015 3729 Face 7346 1796 3730 1273 Face 7347 1796 1973 3730 Face 7348 3656 3731 2579 Face 7349 4605 3732 489 Face 7350 4605 3246 3732 Face 7351 2599 3733 773 Face 7352 2599 4589 3733 Face 7353 2906 3734 1184 Face 7354 2906 4220 3734 Face 7355 1695 3735 3465 Face 7356 1695 2878 3735 Face 7357 1359 3736 855 Face 7358 1359 2214 3736 Face 7359 1987 3737 645 Face 7360 1987 1046 3737 Face 7361 1595 3738 2943 Face 7362 1595 726 3738 Face 7363 4898 3739 3198 Face 7364 4898 650 3739 Face 7365 1841 3740 4474 Face 7366 1841 1475 3740 Face 7367 905 3741 3191 Face 7368 905 3334 3741 Face 7369 1994 3742 3054 Face 7370 1994 2821 3742 Face 7371 184 3743 3267 Face 7372 184 3041 3743 Face 7373 1484 3744 4694 Face 7374 1484 939 3744 Face 7375 4480 3745 901 Face 7376 2588 3124 3745 Face 7377 944 3746 2232 Face 7378 944 1577 3746 Face 7379 6 3747 2533 Face 7380 6 423 3747 Face 7381 26 3748 3145 Face 7382 26 1193 3748 Face 7383 2060 3749 2746 Face 7384 2060 1214 3749 Face 7385 1245 3750 3005 Face 7386 1245 168 3750 Face 7387 1084 3751 3995 Face 7388 1084 2314 3751 Face 7389 1884 3752 3233 Face 7390 1884 547 3752 Face 7391 2223 4071 3680 Face 7392 107 3754 3066 Face 7393 107 2514 3754 Face 7394 1087 3755 3120 Face 7395 1087 2080 3755 Face 7396 555 3756 931 Face 7397 555 3561 3756 Face 7398 4169 3757 1383 Face 7399 4169 2880 3757 Face 7400 1760 4840 2514 Face 7401 1760 3118 3758 Face 7402 541 4762 1727 Face 7403 541 3401 3759 Face 7404 2192 3760 3998 Face 7405 2192 3470 3760 Face 7406 22 3761 4545 Face 7407 22 2471 3761 Face 7408 831 3762 4648 Face 7409 831 3954 3762 Face 7410 2677 3763 1122 Face 7411 2677 1523 3763 Face 7412 3065 3764 1086 Face 7413 3065 1530 3764 Face 7414 1778 3765 1227 Face 7415 1778 779 3765 Face 7416 678 3766 3975 Face 7417 678 2796 4477 Face 7418 109 3767 593 Face 7419 109 2730 3767 Face 7420 419 3768 1849 Face 7421 419 3540 3768 Face 7422 2189 3769 806 Face 7423 2189 1671 3769 Face 7424 2783 3770 4122 Face 7425 2783 2025 3770 Face 7426 4763 3771 1048 Face 7427 2291 3957 3771 Face 7428 67 3772 2565 Face 7429 67 2576 3772 Face 7430 3182 3773 871 Face 7431 3182 1882 3773 Face 7432 454 3774 2848 Face 7433 454 3517 3774 Face 7434 2023 3775 5024 Face 7435 2023 4108 3775 Face 7436 2873 3776 4958 Face 7437 4645 2891 3776 Face 7438 909 3777 3310 Face 7439 909 4776 3777 Face 7440 3099 3778 3138 Face 7441 3099 2883 3778 Face 7442 550 3779 2635 Face 7443 550 3197 3779 Face 7444 2463 3780 4426 Face 7445 2463 758 3780 Face 7446 521 3781 4201 Face 7447 521 2597 3781 Face 7448 1197 3782 2480 Face 7449 1197 744 3782 Face 7450 85 3783 564 Face 7451 85 3091 3783 Face 7452 216 3784 4779 Face 7453 216 1453 3784 Face 7454 4407 3785 637 Face 7455 4407 214 3785 Face 7456 1705 3786 443 Face 7457 1705 3405 3786 Face 7458 855 3787 2018 Face 7459 855 1513 3787 Face 7460 341 3788 1157 Face 7461 341 1953 3788 Face 7462 2964 3789 2108 Face 7463 2964 877 3789 Face 7464 724 3790 4361 Face 7465 724 1769 3790 Face 7466 65 3791 2947 Face 7467 65 4471 3791 Face 7468 1368 3792 2658 Face 7469 1368 4311 3792 Face 7470 1932 3793 916 Face 7471 1932 3283 3793 Face 7472 1260 3794 2626 Face 7473 1260 1723 3794 Face 7474 2340 3795 655 Face 7475 2340 4676 3795 Face 7476 1148 3796 1826 Face 7477 1148 2387 3796 Face 7478 1681 3797 2903 Face 7479 1681 2965 3797 Face 7480 1524 3798 969 Face 7481 1524 706 3798 Face 7482 852 3799 3632 Face 7483 852 3471 3799 Face 7484 3493 3800 4049 Face 7485 3493 2260 3800 Face 7486 2771 3801 1690 Face 7487 2771 1748 3801 Face 7488 719 3802 3375 Face 7489 719 1619 3802 Face 7490 765 3803 4641 Face 7491 765 3050 3803 Face 7492 1875 3804 873 Face 7493 1875 4661 3804 Face 7494 2470 3805 674 Face 7495 2470 535 3805 Face 7496 359 3806 693 Face 7497 359 2379 3806 Face 7498 2255 3807 1326 Face 7499 2255 980 3807 Face 7500 16 3808 3119 Face 7501 16 2536 3808 Face 7502 2413 3809 1484 Face 7503 2413 1160 3809 Face 7504 33 4968 1252 Face 7505 33 2677 3810 Face 7506 1341 3811 1025 Face 7507 1341 592 3811 Face 7508 488 3812 2351 Face 7509 488 1032 3812 Face 7510 2486 3813 1385 Face 7511 2486 2954 3813 Face 7512 247 3814 3424 Face 7513 247 4804 3814 Face 7514 1267 3815 2890 Face 7515 1267 3521 3815 Face 7516 43 3816 1015 Face 7517 43 1846 3816 Face 7518 1405 3817 2242 Face 7519 1405 4439 3817 Face 7520 1487 3818 2194 Face 7521 1487 1287 3818 Face 7522 1611 3819 4586 Face 7523 1611 5013 3819 Face 7524 2497 3820 2107 Face 7525 2497 1961 3820 Face 7526 568 3821 447 Face 7527 568 1606 3821 Face 7528 1855 3822 2680 Face 7529 1855 4312 3822 Face 7530 260 3823 669 Face 7531 260 4756 3823 Face 7532 4714 3824 2523 Face 7533 890 2803 3824 Face 7534 992 3825 4533 Face 7535 992 3548 3825 Face 7536 2766 3826 344 Face 7537 2766 964 3826 Face 7538 2298 3827 4803 Face 7539 2298 3164 3827 Face 7540 2563 3828 95 Face 7541 2563 780 4683 Face 7542 3512 3829 2701 Face 7543 4627 3830 511 Face 7544 170 3115 3830 Face 7545 2045 3831 2723 Face 7546 2045 2927 3831 Face 7547 2042 3832 2834 Face 7548 2042 4650 3832 Face 7549 723 3833 2 Face 7550 723 2767 3833 Face 7551 2988 3834 1620 Face 7552 2988 252 3834 Face 7553 1978 3835 940 Face 7554 1978 3141 3835 Face 7555 160 3836 2647 Face 7556 160 1822 3836 Face 7557 2323 3837 918 Face 7558 2323 1325 3837 Face 7559 2420 3838 1465 Face 7560 2420 1509 3838 Face 7561 589 3839 4828 Face 7562 589 1362 3839 Face 7563 1638 3840 1343 Face 7564 1638 10 3840 Face 7565 1609 3841 872 Face 7566 1609 2751 3841 Face 7567 2531 3842 3433 Face 7568 2531 1908 3842 Face 7569 1290 3843 3393 Face 7570 1290 2050 3843 Face 7571 235 3844 3763 Face 7572 235 2668 3844 Face 7573 920 3845 4918 Face 7574 920 507 3845 Face 7575 4567 3846 3308 Face 7576 1073 3673 3846 Face 7577 257 3847 3412 Face 7578 257 2726 3847 Face 7579 4272 3848 3150 Face 7580 4272 3153 3848 Face 7581 3258 3849 4329 Face 7582 3258 4097 3849 Face 7583 4816 3850 1320 Face 7584 1067 264 3850 Face 7585 357 3851 1997 Face 7586 357 1780 3851 Face 7587 1636 3852 2951 Face 7588 4495 3403 3852 Face 7589 248 3853 835 Face 7590 248 2321 3853 Face 7591 428 3854 1439 Face 7592 428 2620 3854 Face 7593 935 3855 1934 Face 7594 935 697 3855 Face 7595 1091 3856 4656 Face 7596 1091 2168 3856 Face 7597 732 3857 1691 Face 7598 732 4818 3857 Face 7599 255 3858 2640 Face 7600 255 2914 3858 Face 7601 820 3859 1130 Face 7602 820 3183 4972 Face 7603 2571 3860 3170 Face 7604 2571 1188 3860 Face 7605 734 3861 3025 Face 7606 734 2663 3861 Face 7607 1650 3862 4258 Face 7608 1650 3247 3862 Face 7609 121 3863 405 Face 7610 121 1663 3863 Face 7611 593 3864 2325 Face 7612 1620 3865 2988 Face 7613 1620 2029 3865 Face 7614 1566 3866 4662 Face 7615 1566 353 3866 Face 7616 226 3867 2068 Face 7617 226 5057 3867 Face 7618 4906 3868 2033 Face 7619 4906 1169 3868 Face 7620 996 4863 3151 Face 7621 3947 4359 3869 Face 7622 1272 3870 106 Face 7623 1272 1626 3870 Face 7624 55 3871 3621 Face 7625 55 4893 3871 Face 7626 1799 3872 1177 Face 7627 1799 3572 3872 Face 7628 1543 3873 4421 Face 7629 1543 4970 3873 Face 7630 249 3874 2253 Face 7631 249 1013 3874 Face 7632 446 3875 1503 Face 7633 446 1720 3875 Face 7634 2700 3876 4680 Face 7635 2700 4692 3876 Face 7636 1816 3877 2288 Face 7637 1816 2806 3877 Face 7638 192 3878 542 Face 7639 192 2814 4917 Face 7640 1444 3879 539 Face 7641 1444 2256 3879 Face 7642 876 3880 170 Face 7643 4925 1330 3880 Face 7644 2625 3881 143 Face 7645 2625 2139 3881 Face 7646 36 3882 3353 Face 7647 36 2498 3882 Face 7648 1093 3883 2559 Face 7649 1093 1732 3883 Face 7650 530 3884 3457 Face 7651 530 1667 3884 Face 7652 2915 3885 4181 Face 7653 2915 3381 3885 Face 7654 39 3886 4878 Face 7655 39 2484 3886 Face 7656 290 3887 2085 Face 7657 290 4456 3887 Face 7658 663 3888 1749 Face 7659 663 126 3888 Face 7660 4260 3889 2538 Face 7661 4260 671 3889 Face 7662 615 3890 4833 Face 7663 615 1914 3890 Face 7664 149 3891 3074 Face 7665 149 745 3892 Face 7666 3891 3892 4018 Face 7667 3891 149 3892 Face 7668 881 3893 4033 Face 7669 881 2512 3893 Face 7670 2351 3894 1819 Face 7671 2351 1453 3894 Face 7672 756 3895 1217 Face 7673 756 1203 3895 Face 7674 4780 4665 2299 Face 7675 4780 3160 3896 Face 7676 409 3897 4660 Face 7677 409 3016 3897 Face 7678 1057 3898 4697 Face 7679 1057 4532 3898 Face 7680 2570 3899 883 Face 7681 2570 89 3899 Face 7682 1265 4887 4164 Face 7683 1265 3031 3900 Face 7684 2535 3901 1137 Face 7685 2535 3041 3901 Face 7686 1189 3902 1950 Face 7687 1189 3659 3902 Face 7688 587 3903 3418 Face 7689 587 1262 3903 Face 7690 3062 3904 912 Face 7691 3062 1631 3904 Face 7692 2087 3905 2500 Face 7693 2087 2748 3905 Face 7694 1446 3906 3650 Face 7695 1446 3796 3906 Face 7696 2935 3907 1094 Face 7697 2935 280 3907 Face 7698 841 3908 2976 Face 7699 841 3148 3908 Face 7700 3131 3909 1251 Face 7701 3131 2431 3909 Face 7702 1619 3910 2445 Face 7703 1619 2692 3910 Face 7704 1804 3911 1511 Face 7705 1804 4008 3911 Face 7706 2849 3912 4604 Face 7707 2849 556 3912 Face 7708 155 3913 1150 Face 7709 155 2907 3913 Face 7710 1498 3914 799 Face 7711 1498 3070 3914 Face 7712 673 3915 1033 Face 7713 673 2863 3915 Face 7714 766 3916 3578 Face 7715 766 4702 3916 Face 7716 886 3917 3140 Face 7717 886 222 3917 Face 7718 1556 3918 81 Face 7719 1556 2202 3918 Face 7720 1015 3919 3054 Face 7721 1015 2390 3919 Face 7722 638 3920 2794 Face 7723 638 2091 3920 Face 7724 146 3921 2141 Face 7725 146 4790 3921 Face 7726 421 3922 2669 Face 7727 421 187 3922 Face 7728 2591 3923 552 Face 7729 2591 1963 3923 Face 7730 824 3924 2400 Face 7731 824 1564 3924 Face 7732 850 3925 2308 Face 7733 850 1190 3925 Face 7734 210 3926 3039 Face 7735 210 3019 3926 Face 7736 1562 3927 701 Face 7737 1562 3064 3927 Face 7738 3084 3928 3511 Face 7739 3084 4876 3928 Face 7740 621 4726 3544 Face 7741 621 2156 3929 Face 7742 1829 3930 3310 Face 7743 1829 3109 3930 Face 7744 29 3931 3185 Face 7745 29 4601 3931 Face 7746 2195 3932 5065 Face 7747 2195 1538 3932 Face 7748 1275 3933 782 Face 7749 1275 3282 3933 Face 7750 2403 3934 335 Face 7751 2403 2928 3934 Face 7752 97 3935 3510 Face 7753 97 813 3935 Face 7754 2337 3936 2411 Face 7755 2337 900 3936 Face 7756 753 3937 2853 Face 7757 753 2037 3937 Face 7758 2391 3938 2263 Face 7759 2391 2271 3938 Face 7760 2607 3939 483 Face 7761 2607 1303 3939 Face 7762 2177 3940 3023 Face 7763 2177 885 3940 Face 7764 1955 3941 4971 Face 7765 1955 751 3941 Face 7766 1840 3942 3250 Face 7767 1840 964 3942 Face 7768 1675 3943 3320 Face 7769 1675 2894 3943 Face 7770 761 3944 3024 Face 7771 761 3169 3944 Face 7772 49 3945 1894 Face 7773 49 4731 3945 Face 7774 998 3946 4800 Face 7775 998 4051 3946 Face 7776 996 3947 4863 Face 7777 996 3591 3947 Face 7778 2883 3948 4203 Face 7779 2883 420 3948 Face 7780 2326 3949 4224 Face 7781 2326 3242 3949 Face 7782 1090 3950 2724 Face 7783 1090 3710 3950 Face 7784 4144 3951 3296 Face 7785 3134 3952 2373 Face 7786 3134 2396 3952 Face 7787 2691 3953 827 Face 7788 2691 2158 3953 Face 7789 4900 3954 2181 Face 7790 291 5040 3954 Face 7791 2215 3955 3532 Face 7792 2215 2756 4449 Face 7793 825 3956 2581 Face 7794 825 3718 3956 Face 7795 3231 3957 1177 Face 7796 3231 4980 3957 Face 7797 1299 3958 3262 Face 7798 1299 2820 3958 Face 7799 2846 3959 2245 Face 7800 2846 3173 3959 Face 7801 2028 3960 1831 Face 7802 2028 2938 3960 Face 7803 934 3961 1115 Face 7804 934 2364 3961 Face 7805 2118 4670 2137 Face 7806 2118 658 3962 Face 7807 119 3963 1337 Face 7808 119 3702 3963 Face 7809 1402 3964 587 Face 7810 1402 3322 3964 Face 7811 1798 3965 4947 Face 7812 1798 3033 3965 Face 7813 1910 3966 2975 Face 7814 1910 3610 3966 Face 7815 1801 3967 3742 Face 7816 1801 2047 3967 Face 7817 392 3968 1356 Face 7818 392 2422 3968 Face 7819 2293 3969 1077 Face 7820 2293 3524 3969 Face 7821 345 3970 3177 Face 7822 345 1758 3970 Face 7823 493 3971 3832 Face 7824 5043 1718 3971 Face 7825 1983 3972 4874 Face 7826 1983 4431 3972 Face 7827 2012 3973 1252 Face 7828 2012 2782 3973 Face 7829 1224 3974 1072 Face 7830 1224 3154 3974 Face 7831 4482 3975 2662 Face 7832 1420 678 3975 Face 7833 267 3976 3690 Face 7834 267 1497 3976 Face 7835 502 3977 1056 Face 7836 502 2200 3977 Face 7837 1574 3978 172 Face 7838 1574 4640 3978 Face 7839 1892 3979 4603 Face 7840 1892 2333 3979 Face 7841 1786 3980 581 Face 7842 1786 754 3980 Face 7843 2496 3981 1333 Face 7844 2496 4414 3981 Face 7845 612 3982 2627 Face 7846 612 1200 3982 Face 7847 2684 3983 3293 Face 7848 2684 1985 3983 Face 7849 2833 3984 970 Face 7850 2833 2552 3984 Face 7851 3042 3985 2631 Face 7852 3042 1754 3985 Face 7853 655 3986 2340 Face 7854 655 3056 3986 Face 7855 1154 3987 3899 Face 7856 1154 821 3987 Face 7857 1221 3988 3072 Face 7858 1221 2077 3988 Face 7859 1687 3989 804 Face 7860 1687 3275 3989 Face 7861 2367 3990 4135 Face 7862 2367 213 3990 Face 7863 2238 3991 4594 Face 7864 2238 1247 3991 Face 7865 1517 3992 58 Face 7866 1517 634 3992 Face 7867 86 3993 2679 Face 7868 86 1039 3993 Face 7869 2703 3994 2200 Face 7870 2703 3672 3994 Face 7871 1991 3995 3325 Face 7872 1991 1084 3995 Face 7873 1540 3996 4612 Face 7874 1540 4104 3996 Face 7875 504 3997 1384 Face 7876 504 3631 3997 Face 7877 429 3998 2246 Face 7878 429 2192 3998 Face 7879 1169 3999 3067 Face 7880 1169 4906 3999 Face 7881 1525 4000 5038 Face 7882 1525 395 4000 Face 7883 1238 4001 2519 Face 7884 1238 2081 4001 Face 7885 870 4002 4809 Face 7886 5061 3604 4002 Face 7887 173 4003 3938 Face 7888 4653 2927 4003 Face 7889 2787 4004 4787 Face 7890 2787 1912 4004 Face 7891 2029 4005 457 Face 7892 2029 1139 4005 Face 7893 2733 4006 1443 Face 7894 2733 1652 4006 Face 7895 2025 4007 2614 Face 7896 2025 3347 4007 Face 7897 2657 4008 1804 Face 7898 2657 430 4008 Face 7899 1138 4009 4757 Face 7900 1138 92 4009 Face 7901 628 4010 382 Face 7902 628 3646 4010 Face 7903 2096 4011 5009 Face 7904 2096 2876 4011 Face 7905 1147 4012 2113 Face 7906 1147 2800 4012 Face 7907 1120 4013 3594 Face 7908 1120 4421 4013 Face 7909 1649 4014 2739 Face 7910 1649 4539 4014 Face 7911 2822 4015 2239 Face 7912 2822 4946 4015 Face 7913 1112 4016 3268 Face 7914 1112 3746 4016 Face 7915 3299 4017 830 Face 7916 3299 976 4017 Face 7917 3179 4018 3085 Face 7918 3179 4543 4018 Face 7919 2224 4019 3129 Face 7920 2224 2945 4019 Face 7921 1247 4020 82 Face 7922 4911 3079 4020 Face 7923 2046 4021 815 Face 7924 2046 1457 4021 Face 7925 1383 4022 2797 Face 7926 1383 3757 4022 Face 7927 3249 4023 5014 Face 7928 3249 1005 4023 Face 7929 1450 4024 4481 Face 7930 1450 3266 4024 Face 7931 1108 4025 863 Face 7932 1108 2998 4025 Face 7933 1079 4026 1730 Face 7934 1079 1706 4026 Face 7935 325 4027 4931 Face 7936 325 4678 4027 Face 7937 1161 4028 2575 Face 7938 1161 2493 4028 Face 7939 4895 4029 898 Face 7940 4895 1566 4029 Face 7941 2528 4030 220 Face 7942 2528 757 4030 Face 7943 180 4031 1200 Face 7944 180 2494 4031 Face 7945 2205 4032 1415 Face 7946 2205 4877 4032 Face 7947 672 4033 3893 Face 7948 672 3284 4033 Face 7949 1305 4034 4996 Face 7950 1305 3421 4034 Face 7951 2181 4035 4900 Face 7952 2181 517 4035 Face 7953 2366 4036 3351 Face 7954 2366 649 4036 Face 7955 1451 4037 2482 Face 7956 1451 400 4037 Face 7957 227 4038 2671 Face 7958 227 3620 4038 Face 7959 1385 4039 1004 Face 7960 1385 1759 4039 Face 7961 3202 4040 2438 Face 7962 3202 1388 4040 Face 7963 696 4041 3517 Face 7964 696 3097 4041 Face 7965 2345 4042 2757 Face 7966 2345 1289 4042 Face 7967 3218 4043 2350 Face 7968 3218 1317 4043 Face 7969 2194 4044 1487 Face 7970 2194 4704 4044 Face 7971 3191 4045 3110 Face 7972 3191 3741 4045 Face 7973 1911 4046 597 Face 7974 1911 397 4046 Face 7975 2745 4047 501 Face 7976 2745 727 4047 Face 7977 5056 4048 299 Face 7978 2342 2633 4048 Face 7979 1364 4049 1953 Face 7980 1364 3493 4049 Face 7981 2642 4050 2370 Face 7982 2642 1026 4050 Face 7983 2142 4051 1320 Face 7984 2142 3946 4051 Face 7985 2893 4052 2210 Face 7986 2893 794 4052 Face 7987 2643 4053 168 Face 7988 2643 928 4053 Face 7989 2561 4054 4179 Face 7990 2561 859 4054 Face 7991 1856 4055 229 Face 7992 1856 5051 4055 Face 7993 3 4056 2054 Face 7994 3 605 4056 Face 7995 135 4057 2620 Face 7996 135 3943 4057 Face 7997 1333 4058 2332 Face 7998 1333 4490 4058 Face 7999 2502 4059 241 Face 8000 2502 5033 4059 Face 8001 405 4060 3638 Face 8002 405 2368 4060 Face 8003 2401 4061 937 Face 8004 2401 3153 4061 Face 8005 1782 4062 1215 Face 8006 1782 3906 4062 Face 8007 4600 4063 1401 Face 8008 205 1568 4063 Face 8009 658 4064 4422 Face 8010 658 4822 4064 Face 8011 837 4065 2385 Face 8012 837 302 4065 Face 8013 826 4066 3227 Face 8014 1993 4067 2889 Face 8015 1993 384 4067 Face 8016 598 4068 3045 Face 8017 598 2935 4068 Face 8018 256 4069 2075 Face 8019 256 1233 4069 Face 8020 1165 4070 2720 Face 8021 1165 2278 4070 Face 8022 3753 4071 2223 Face 8023 96 4072 1643 Face 8024 96 3087 4072 Face 8025 562 4073 2903 Face 8026 562 20 4073 Face 8027 476 4074 2229 Face 8028 476 3239 4074 Face 8029 1862 4075 3468 Face 8030 1862 448 4075 Face 8031 2167 4076 3482 Face 8032 2167 4390 4076 Face 8033 626 4077 1575 Face 8034 626 1781 4077 Face 8035 348 4078 2575 Face 8036 348 2349 4078 Face 8037 4856 4079 1455 Face 8038 4856 4641 4079 Face 8039 2257 4080 3058 Face 8040 2257 1585 4080 Face 8041 1667 4081 4746 Face 8042 1667 2649 4081 Face 8043 2430 4082 748 Face 8044 2430 4300 4082 Face 8045 350 4083 2326 Face 8046 350 4509 4083 Face 8047 641 4084 2728 Face 8048 641 1463 4084 Face 8049 2155 4085 2530 Face 8050 2155 3456 4085 Face 8051 365 4086 1583 Face 8052 365 3944 4086 Face 8053 617 4087 1110 Face 8054 617 426 4087 Face 8055 2749 4088 1640 Face 8056 2749 110 4088 Face 8057 819 4089 4909 Face 8058 819 208 4089 Face 8059 2117 4090 4703 Face 8060 2117 877 4090 Face 8061 1792 4091 581 Face 8062 1792 2376 4091 Face 8063 1155 4092 2983 Face 8064 1155 4687 4092 Face 8065 1836 4093 4586 Face 8066 1836 3247 4093 Face 8067 2521 4094 1109 Face 8068 2521 2688 4094 Face 8069 1550 4095 465 Face 8070 1550 871 4095 Face 8071 1474 4096 3454 Face 8072 1474 2813 4096 Face 8073 198 4097 3258 Face 8074 198 1406 4097 Face 8075 3094 4098 60 Face 8076 3094 4715 4098 Face 8077 339 4099 2940 Face 8078 339 4473 4099 Face 8079 331 4100 3171 Face 8080 331 1833 4100 Face 8081 706 4101 5036 Face 8082 706 2469 4101 Face 8083 2699 4102 4745 Face 8084 2699 314 4102 Face 8085 677 4103 391 Face 8086 677 5037 4103 Face 8087 188 4104 847 Face 8088 188 3996 4104 Face 8089 540 4105 3059 Face 8090 540 3004 4105 Face 8091 838 4106 2451 Face 8092 838 1582 4106 Face 8093 3029 4107 4987 Face 8094 3029 5003 4107 Face 8095 954 4108 1968 Face 8096 954 3775 4108 Face 8097 1016 4109 3623 Face 8098 1016 3184 4109 Face 8099 268 4110 2412 Face 8100 268 1965 4110 Face 8101 2518 4111 3079 Face 8102 2518 3266 4111 Face 8103 3024 4112 667 Face 8104 3024 3944 4112 Face 8105 2389 4113 4463 Face 8106 2389 1038 4113 Face 8107 1480 4114 1245 Face 8108 1480 2627 4114 Face 8109 1055 4115 782 Face 8110 1055 1915 4115 Face 8111 1286 4116 3701 Face 8112 1286 2802 4116 Face 8113 103 4117 4755 Face 8114 103 3525 4117 Face 8115 1741 4118 3469 Face 8116 1741 2099 4118 Face 8117 716 4119 963 Face 8118 716 3542 4119 Face 8119 679 4120 2864 Face 8120 679 997 4120 Face 8121 2281 4121 585 Face 8122 2281 867 4121 Face 8123 2665 4122 1726 Face 8124 2665 128 4122 Face 8125 840 4123 4857 Face 8126 840 566 4123 Face 8127 4528 4124 1225 Face 8128 1570 4246 4124 Face 8129 896 4125 3095 Face 8130 896 1596 4125 Face 8131 4994 4126 2460 Face 8132 3340 676 4126 Face 8133 84 4127 3137 Face 8134 84 3289 4127 Face 8135 1162 4128 1984 Face 8136 1162 785 4128 Face 8137 999 4129 2151 Face 8138 999 2586 4129 Face 8139 1967 4130 24 Face 8140 1967 4939 4130 Face 8141 308 4131 1193 Face 8142 308 1105 4131 Face 8143 2777 4132 1279 Face 8144 2777 1234 4132 Face 8145 2347 4133 3529 Face 8146 2347 2506 4133 Face 8147 1780 4134 495 Face 8148 1780 3688 4134 Face 8149 1814 4135 373 Face 8150 1814 2367 4135 Face 8151 2059 4136 76 Face 8152 2059 2978 4136 Face 8153 2530 4137 2155 Face 8154 2530 4820 4137 Face 8155 2716 4138 993 Face 8156 2716 1584 4138 Face 8157 3106 4139 1508 Face 8158 3106 2099 4139 Face 8159 974 4140 2266 Face 8160 974 2825 4140 Face 8161 231 4141 2252 Face 8162 231 2568 4141 Face 8163 1369 4142 232 Face 8164 1369 312 4142 Face 8165 1937 4143 1635 Face 8166 1937 4544 4143 Face 8167 2524 4144 3296 Face 8168 1972 4145 1500 Face 8169 1972 2445 4145 Face 8170 2975 4146 4925 Face 8171 2975 2487 4146 Face 8172 4831 4147 2828 Face 8173 4831 1410 4147 Face 8174 1629 4148 1072 Face 8175 1629 2492 4148 Face 8176 597 4149 3094 Face 8177 597 1512 4149 Face 8178 3228 4150 5016 Face 8179 3228 3135 4150 Face 8180 2079 4151 4295 Face 8181 2079 4817 4151 Face 8182 243 4152 1867 Face 8183 243 3245 4152 Face 8184 2209 4153 802 Face 8185 2209 1127 4153 Face 8186 353 4154 3866 Face 8187 353 429 4154 Face 8188 3203 4155 4617 Face 8189 3203 100 4155 Face 8190 431 4156 2626 Face 8191 431 3547 4156 Face 8192 2033 4157 2819 Face 8193 2033 3868 4157 Face 8194 2301 4158 911 Face 8195 2301 3263 4158 Face 8196 1965 4159 4110 Face 8197 1965 2546 4159 Face 8198 1236 4160 2019 Face 8199 1236 3057 4160 Face 8200 1602 4161 2125 Face 8201 1602 3542 4161 Face 8202 1820 4162 3526 Face 8203 1820 3596 4162 Face 8204 1105 4357 3543 Face 8205 1105 4993 4357 Face 8206 2089 4164 4887 Face 8207 2089 1381 4164 Face 8208 250 4165 3183 Face 8209 250 3921 4165 Face 8210 929 4166 2740 Face 8211 929 3669 4166 Face 8212 2852 4167 3391 Face 8213 2852 1569 4167 Face 8214 3061 4168 1231 Face 8215 3061 362 4168 Face 8216 1986 4169 1383 Face 8217 1986 2494 4169 Face 8218 1222 4170 577 Face 8219 1222 5020 4170 Face 8220 1269 4171 4698 Face 8221 1269 684 4171 Face 8222 2271 4172 1693 Face 8223 2271 2391 4172 Face 8224 982 4173 194 Face 8225 982 373 4173 Face 8226 1703 4174 1037 Face 8227 1703 1364 4174 Face 8228 338 4175 971 Face 8229 338 787 4175 Face 8230 705 4176 2649 Face 8231 705 3458 4176 Face 8232 5031 4177 505 Face 8233 2789 1689 4177 Face 8234 776 4178 5046 Face 8235 776 3105 4178 Face 8236 2902 4179 917 Face 8237 2902 2561 4179 Face 8238 298 4180 3554 Face 8239 298 3485 4180 Face 8240 1546 4181 3885 Face 8241 1546 2909 4181 Face 8242 1559 4182 3747 Face 8243 1559 2406 4182 Face 8244 574 4183 2527 Face 8245 574 107 4183 Face 8246 770 4184 2300 Face 8247 770 1297 4184 Face 8248 2829 4185 3507 Face 8249 2829 3691 4185 Face 8250 2815 4186 1452 Face 8251 2815 575 4186 Face 8252 1933 4187 496 Face 8253 1933 1382 4187 Face 8254 3532 4188 2343 Face 8255 3532 704 4188 Face 8256 2713 4189 973 Face 8257 2713 2052 4189 Face 8258 2 4190 3829 Face 8259 2 3833 4190 Face 8260 1857 4191 822 Face 8261 1857 4190 4191 Face 8262 2376 4192 1521 Face 8263 2376 959 4192 Face 8264 2957 4193 3047 Face 8265 2957 304 4193 Face 8266 1082 4194 3208 Face 8267 1082 2173 4194 Face 8268 3149 4195 867 Face 8269 3149 2847 4195 Face 8270 823 4196 3026 Face 8271 823 4228 4196 Face 8272 438 4197 3605 Face 8273 438 3036 4436 Face 8274 2707 4198 293 Face 8275 2707 752 4198 Face 8276 1031 4199 3356 Face 8277 1031 3185 4199 Face 8278 964 4200 3942 Face 8279 964 2766 4200 Face 8280 368 4201 3642 Face 8281 368 2238 4201 Face 8282 3157 4202 3129 Face 8283 3157 2286 4202 Face 8284 1865 4203 3948 Face 8285 1865 699 4203 Face 8286 4938 4204 2100 Face 8287 3083 955 4204 Face 8288 2842 4205 4850 Face 8289 2842 627 4205 Face 8290 1060 4206 1877 Face 8291 1060 311 4206 Face 8292 1419 4208 2301 Face 8293 4207 4208 1419 Face 8294 2078 4209 5042 Face 8295 2078 437 4209 Face 8296 1219 4210 3446 Face 8297 1219 1424 4210 Face 8298 1281 4211 4797 Face 8299 1281 117 4211 Face 8300 1349 4212 3035 Face 8301 1349 1714 4212 Face 8302 2689 4213 726 Face 8303 2689 91 4213 Face 8304 1616 4214 3130 Face 8305 1616 2331 4214 Face 8306 1807 4215 576 Face 8307 1807 169 4215 Face 8308 2004 4216 2768 Face 8309 2004 260 4216 Face 8310 1475 4217 3740 Face 8311 1475 559 4217 Face 8312 1716 4218 3142 Face 8313 1716 945 4218 Face 8314 1803 4219 3695 Face 8315 1803 1174 4219 Face 8316 398 4220 2830 Face 8317 398 3734 4220 Face 8318 1863 4221 2909 Face 8319 1863 4720 4221 Face 8320 1920 4222 3088 Face 8321 1920 3952 4222 Face 8322 1465 4223 280 Face 8323 1465 334 4223 Face 8324 1152 4224 4840 Face 8325 1152 2326 4224 Face 8326 224 4225 1557 Face 8327 224 1074 4225 Face 8328 343 4226 2731 Face 8329 343 3315 4226 Face 8330 3229 4227 1205 Face 8331 3229 2137 4227 Face 8332 2131 4228 823 Face 8333 2131 3588 4228 Face 8334 1459 4229 2731 Face 8335 1459 38 4229 Face 8336 1231 4230 1769 Face 8337 1231 4168 4230 Face 8338 914 4885 508 Face 8339 914 3760 4885 Face 8340 2041 4232 1357 Face 8341 2041 527 4232 Face 8342 853 4233 4814 Face 8343 853 1867 4233 Face 8344 2704 4234 30 Face 8345 2704 4966 4234 Face 8346 17 4235 1810 Face 8347 17 2453 4235 Face 8348 965 4236 2484 Face 8349 965 1821 4236 Face 8350 2552 4237 4348 Face 8351 2552 2833 4237 Face 8352 544 4238 1704 Face 8353 544 2984 4238 Face 8354 1395 4239 811 Face 8355 1395 2617 4239 Face 8356 2355 4240 3448 Face 8357 2355 932 4240 Face 8358 1358 4241 753 Face 8359 1358 2429 4241 Face 8360 2564 4242 288 Face 8361 2564 1350 4242 Face 8362 775 4243 1790 Face 8363 775 2606 4243 Face 8364 2623 4244 4424 Face 8365 2623 2336 4244 Face 8366 1791 4245 2686 Face 8367 1791 3504 4245 Face 8368 808 4246 20 Face 8369 808 4124 4246 Face 8370 3608 4247 1392 Face 8371 3608 902 4247 Face 8372 1753 4248 3060 Face 8373 1753 2541 4248 Face 8374 2523 4249 4585 Face 8375 2523 584 4249 Face 8376 2047 4250 1253 Face 8377 2047 1801 4250 Face 8378 1708 4251 4348 Face 8379 1708 3709 4251 Face 8380 464 4252 1268 Face 8381 464 3052 4252 Face 8382 2153 4253 3343 Face 8383 2153 3488 4253 Face 8384 2715 4254 1088 Face 8385 2715 2185 4254 Face 8386 3478 4255 295 Face 8387 3478 839 4255 Face 8388 1797 4256 2614 Face 8389 1797 2897 4256 Face 8390 2256 4257 3879 Face 8391 2256 1490 4257 Face 8392 2512 4258 4722 Face 8393 2512 1871 4258 Face 8394 1756 4259 269 Face 8395 1756 687 4259 Face 8396 2172 4260 2538 Face 8397 2172 1637 4260 Face 8398 277 4261 1476 Face 8399 277 2007 4261 Face 8400 94 4262 4671 Face 8401 94 3233 4262 Face 8402 1637 4263 4260 Face 8403 1637 2702 4263 Face 8404 1899 4264 3496 Face 8405 1899 5027 4264 Face 8406 179 4265 2159 Face 8407 179 2923 4265 Face 8408 1163 4266 1858 Face 8409 1163 3292 4266 Face 8410 1434 4267 3278 Face 8411 1434 1511 4267 Face 8412 613 4268 3515 Face 8413 613 3205 4268 Face 8414 1180 4269 2274 Face 8415 1180 2132 4269 Face 8416 1917 4270 1295 Face 8417 1917 3380 4270 Face 8418 1545 4271 3708 Face 8419 1545 3333 4271 Face 8420 37 4272 3150 Face 8421 37 3086 4272 Face 8422 635 4273 1816 Face 8423 635 3075 4273 Face 8424 1471 4274 3244 Face 8425 1471 3112 4274 Face 8426 3704 4275 2499 Face 8427 3704 2474 4275 Face 8428 1724 4276 4560 Face 8429 1724 2260 4276 Face 8430 3028 4277 4837 Face 8431 3028 4526 4277 Face 8432 1309 4278 4860 Face 8433 1309 2311 4278 Face 8434 2398 4279 1161 Face 8435 2398 4078 4279 Face 8436 1567 4280 660 Face 8437 1567 2436 4280 Face 8438 1133 4281 2024 Face 8439 1133 858 4281 Face 8440 1306 4282 3579 Face 8441 1306 1849 4282 Face 8442 2438 4283 626 Face 8443 2438 62 4283 Face 8444 2350 4284 1062 Face 8445 2350 3294 4284 Face 8446 2144 4285 76 Face 8447 2144 2803 4285 Face 8448 2720 4286 2672 Face 8449 2720 1742 4286 Face 8450 172 4287 1574 Face 8451 172 1665 4287 Face 8452 1352 4288 3138 Face 8453 1352 2305 4288 Face 8454 1027 4289 3010 Face 8455 1027 2621 4289 Face 8456 1182 4290 3789 Face 8457 1182 417 4290 Face 8458 1759 4291 1034 Face 8459 1759 3813 4291 Face 8460 814 4292 3629 Face 8461 814 1592 4292 Face 8462 539 4293 3797 Face 8463 539 3184 4293 Face 8464 2333 4294 3410 Face 8465 2333 2985 4294 Face 8466 2671 4295 623 Face 8467 2671 2079 4295 Face 8468 1666 4296 4824 Face 8469 1666 2310 4296 Face 8470 177 4297 2553 Face 8471 177 2775 4297 Face 8472 1552 4298 1202 Face 8473 1552 3782 4298 Face 8474 1976 4299 3122 Face 8475 1976 717 4299 Face 8476 878 4300 1672 Face 8477 878 4082 4300 Face 8478 289 4301 3146 Face 8479 289 4706 4301 Face 8480 1216 4302 3374 Face 8481 1216 3472 4302 Face 8482 1044 4303 2418 Face 8483 1044 619 4303 Face 8484 2375 4304 458 Face 8485 2375 70 4304 Face 8486 545 4305 1823 Face 8487 1325 4306 3474 Face 8488 1325 2323 4306 Face 8489 3032 4307 44 Face 8490 3032 4617 4307 Face 8491 1427 4308 1944 Face 8492 1427 2755 4308 Face 8493 276 4309 3390 Face 8494 276 11 4309 Face 8495 1064 4310 2405 Face 8496 1064 2932 4310 Face 8497 1295 4311 2375 Face 8498 1295 3927 4311 Face 8499 66 4312 1855 Face 8500 66 2744 4312 Face 8501 1342 4313 1835 Face 8502 1342 2143 4313 Face 8503 731 4314 4245 Face 8504 731 2409 4314 Face 8505 3569 4315 1925 Face 8506 3569 5026 4315 Face 8507 720 4316 238 Face 8508 720 4130 4316 Face 8509 1039 4317 3993 Face 8510 1039 4196 4317 Face 8511 1505 4318 4123 Face 8512 1505 2814 4318 Face 8513 3380 4319 966 Face 8514 3380 1017 4319 Face 8515 3648 4320 2997 Face 8516 3648 1869 4320 Face 8517 2800 4321 4012 Face 8518 2800 846 4321 Face 8519 245 4322 2447 Face 8520 245 3597 4322 Face 8521 2294 4323 3128 Face 8522 2294 580 4323 Face 8523 3015 4324 1207 Face 8524 3015 4805 4324 Face 8525 1045 4325 1567 Face 8526 1045 3882 4325 Face 8527 867 4326 3149 Face 8528 867 2281 4326 Face 8529 2187 4327 1125 Face 8530 2187 4183 4327 Face 8531 1442 4328 553 Face 8532 1442 3295 4328 Face 8533 1970 4329 288 Face 8534 1970 3258 4329 Face 8535 4 4330 2013 Face 8536 600 4331 2083 Face 8537 600 2664 4331 Face 8538 2305 4332 2921 Face 8539 2305 3287 4332 Face 8540 2695 4333 2011 Face 8541 2695 4932 4333 Face 8542 30 4334 1380 Face 8543 30 4234 4334 Face 8544 1134 4335 1475 Face 8545 1134 2763 4335 Face 8546 1514 4336 513 Face 8547 1514 2809 4336 Face 8548 538 4337 2636 Face 8549 538 1508 4337 Face 8550 1845 4338 929 Face 8551 1845 84 4338 Face 8552 1255 4339 872 Face 8553 1255 2666 4339 Face 8554 1409 4340 3012 Face 8555 1409 3255 4340 Face 8556 327 4341 2636 Face 8557 327 1436 4341 Face 8558 2865 4342 4048 Face 8559 2865 3158 4342 Face 8560 329 4343 1844 Face 8561 329 2574 4343 Face 8562 746 4344 1941 Face 8563 746 2994 4344 Face 8564 1564 4345 2842 Face 8565 1564 3011 4345 Face 8566 2022 4346 198 Face 8567 2022 1432 4346 Face 8568 2102 4347 273 Face 8569 2102 3254 4347 Face 8570 3159 4348 4251 Face 8571 3159 2552 4348 Face 8572 1371 4349 2661 Face 8573 1371 5006 4349 Face 8574 975 4350 3483 Face 8575 975 3932 4350 Face 8576 2645 4351 4680 Face 8577 2645 2973 4351 Face 8578 1421 4352 615 Face 8579 1421 3335 4352 Face 8580 1744 4353 2587 Face 8581 1744 3790 4353 Face 8582 1258 4354 2485 Face 8583 1258 4937 4354 Face 8584 1509 4355 3838 Face 8585 1509 3437 4355 Face 8586 360 4356 309 Face 8587 360 2681 4356 Face 8588 4163 4357 1307 Face 8589 4163 2454 4357 Face 8590 661 4358 2858 Face 8591 661 2535 4358 Face 8592 2426 4359 3947 Face 8593 2426 344 4359 Face 8594 1122 4360 411 Face 8595 1122 3763 4360 Face 8596 620 4361 1744 Face 8597 620 2802 4361 Face 8598 1421 4362 3335 Face 8599 1421 1119 4362 Face 8600 478 4363 2311 Face 8601 478 2896 4363 Face 8602 2432 4364 1996 Face 8603 2432 3232 4364 Face 8604 3521 4365 2878 Face 8605 3521 220 4365 Face 8606 1896 4366 2516 Face 8607 1896 2878 4366 Face 8608 2105 4367 1614 Face 8609 2105 304 4367 Face 8610 1577 4368 3577 Face 8611 1577 2719 4368 Face 8612 1083 4369 3653 Face 8613 1083 406 4369 Face 8614 1885 4370 1578 Face 8615 1885 2085 4370 Face 8616 3089 4371 461 Face 8617 3089 1913 4371 Face 8618 1652 4372 4006 Face 8619 1652 1947 4372 Face 8620 2287 4373 1351 Face 8621 2287 518 4373 Face 8622 2454 4374 1957 Face 8623 2454 4163 4374 Face 8624 1153 4375 223 Face 8625 1153 960 4375 Face 8626 3416 4376 128 Face 8627 3416 1976 4376 Face 8628 1732 4377 2879 Face 8629 1732 1093 4377 Face 8630 2696 4378 3896 Face 8631 2696 2815 4378 Face 8632 3548 4379 2670 Face 8633 3548 992 4379 Face 8634 7 4380 3307 Face 8635 7 1387 4380 Face 8636 1097 4381 401 Face 8637 1097 1815 4381 Face 8638 3616 4382 479 Face 8639 3616 139 4382 Face 8640 2048 4383 3351 Face 8641 2048 3562 4383 Face 8642 347 4384 818 Face 8643 347 674 4384 Face 8644 3313 4385 320 Face 8645 3313 113 4385 Face 8646 3069 4386 2795 Face 8647 3069 3505 4386 Face 8648 3551 4387 2185 Face 8649 869 4388 3450 Face 8650 869 3187 4388 Face 8651 703 4389 1150 Face 8652 703 2372 4389 Face 8653 5062 4390 2167 Face 8654 102 4391 3550 Face 8655 102 1948 4391 Face 8656 1116 4392 2198 Face 8657 1116 3988 4392 Face 8658 804 4393 1400 Face 8659 804 96 4393 Face 8660 2990 4394 2146 Face 8661 2990 3553 4394 Face 8662 2422 4395 4609 Face 8663 2422 392 4395 Face 8664 148 4396 525 Face 8665 148 1964 4396 Face 8666 2219 4397 256 Face 8667 2219 2746 4397 Face 8668 517 4398 4035 Face 8669 517 3223 4398 Face 8670 3226 4399 853 Face 8671 3226 4433 4399 Face 8672 1953 4400 4965 Face 8673 1953 995 4400 Face 8674 164 4401 2970 Face 8675 164 3128 4401 Face 8676 2136 4402 1435 Face 8677 2136 1697 4402 Face 8678 2958 4403 3140 Face 8679 2958 1848 4403 Face 8680 822 4404 3296 Face 8681 822 1597 4404 Face 8682 3368 4405 494 Face 8683 3368 910 4405 Face 8684 2592 4406 3084 Face 8685 2592 3523 4406 Face 8686 2317 4407 1846 Face 8687 2317 214 4407 Face 8688 8 4408 2916 Face 8689 2582 4409 3088 Face 8690 2582 278 4409 Face 8691 2874 4410 995 Face 8692 2874 753 4410 Face 8693 847 4411 3189 Face 8694 847 2321 4411 Face 8695 863 4412 2104 Face 8696 863 2959 4412 Face 8697 3051 4413 2145 Face 8698 3051 1168 4413 Face 8699 2407 4414 2496 Face 8700 2407 1958 4414 Face 8701 1877 4415 4249 Face 8702 1877 2929 4415 Face 8703 2600 4416 3760 Face 8704 2600 1471 4416 Face 8705 2150 4417 4211 Face 8706 2150 1515 4417 Face 8707 752 4418 4198 Face 8708 752 1717 4418 Face 8709 690 4419 3260 Face 8710 690 2770 4419 Face 8711 1794 4420 3425 Face 8712 1794 2458 4420 Face 8713 174 4421 1120 Face 8714 174 3012 4421 Face 8715 1748 4422 4064 Face 8716 1748 2771 4422 Face 8717 2113 4423 1147 Face 8718 2113 3858 4423 Face 8719 418 4424 1737 Face 8720 418 2623 4424 Face 8721 897 4425 3679 Face 8722 897 2567 4425 Face 8723 3139 4426 90 Face 8724 3139 2463 4426 Face 8725 2057 4427 2911 Face 8726 2057 1534 4427 Face 8727 2709 4428 4995 Face 8728 2709 3545 4428 Face 8729 2541 4429 1683 Face 8730 2541 1051 4429 Face 8731 1191 4430 3144 Face 8732 1191 185 4430 Face 8733 1591 4431 1168 Face 8734 1591 3211 4431 Face 8735 1903 4432 1185 Face 8736 4897 3297 4432 Face 8737 3536 4433 3226 Face 8738 3536 2508 4433 Face 8739 425 4434 4192 Face 8740 425 1743 4434 Face 8741 2856 4435 1998 Face 8742 2856 2809 4435 Face 8743 4197 4436 5049 Face 8744 4197 438 4436 Face 8745 782 4437 3464 Face 8746 782 3933 4437 Face 8747 3132 4438 1763 Face 8748 3132 3389 4438 Face 8749 2641 4439 1405 Face 8750 2641 1556 4439 Face 8751 1208 4440 1270 Face 8752 1208 2755 4440 Face 8753 1833 4441 3479 Face 8754 1833 4118 4441 Face 8755 676 4442 4126 Face 8756 676 1201 4442 Face 8757 1469 4443 1201 Face 8758 1469 640 4443 Face 8759 2014 4444 443 Face 8760 2014 3413 4444 Face 8761 296 4445 2063 Face 8762 296 2300 4445 Face 8763 186 4446 2121 Face 8764 186 666 4446 Face 8765 157 4447 740 Face 8766 157 2602 4447 Face 8767 1125 4448 45 Face 8768 1125 4007 4448 Face 8769 3955 4449 369 Face 8770 3955 2215 4449 Face 8771 1239 4450 1787 Face 8772 1239 3075 4450 Face 8773 3634 4451 2091 Face 8774 3634 1377 4451 Face 8775 1866 4452 991 Face 8776 1866 4622 4452 Face 8777 376 4453 1946 Face 8778 376 3611 4453 Face 8779 2813 4454 797 Face 8780 2813 2098 4454 Face 8781 1130 4455 3328 Face 8782 1130 3859 4455 Face 8783 1312 4456 4279 Face 8784 1312 3887 4456 Face 8785 1143 4457 178 Face 8786 1143 3806 4457 Face 8787 3552 4458 2778 Face 8788 3552 2525 4458 Face 8789 1641 4459 2797 Face 8790 1641 3341 4459 Face 8791 1 4460 2767 Face 8792 1 1392 4460 Face 8793 2509 4461 904 Face 8794 2509 1916 4461 Face 8795 1962 4462 651 Face 8796 1962 609 4462 Face 8797 3658 4463 3021 Face 8798 3658 2389 4463 Face 8799 3227 4464 441 Face 8800 3227 4 4464 Face 8801 479 4465 3823 Face 8802 479 2761 4465 Face 8803 3213 4466 162 Face 8804 3213 935 4466 Face 8805 529 4467 2461 Face 8806 529 2949 4467 Face 8807 2765 4468 2444 Face 8808 2765 362 4468 Face 8809 958 4469 1327 Face 8810 958 1402 4469 Face 8811 2055 4470 149 Face 8812 2055 3369 4470 Face 8813 2126 4471 3046 Face 8814 2126 3011 4471 Face 8815 3080 4472 895 Face 8816 3080 2569 4472 Face 8817 1784 4473 608 Face 8818 1784 4099 4473 Face 8819 367 4474 3339 Face 8820 367 4867 4474 Face 8821 961 4475 534 Face 8822 961 1731 4475 Face 8823 3040 4476 1778 Face 8824 3040 1510 4476 Face 8825 3766 4477 442 Face 8826 3766 678 4477 Face 8827 1243 4478 2708 Face 8828 1243 2073 4478 Face 8829 2062 4479 614 Face 8830 2062 2225 4479 Face 8831 2588 4480 1237 Face 8832 2588 3745 4480 Face 8833 675 4481 4024 Face 8834 675 3358 4481 Face 8835 1420 4482 1096 Face 8836 1420 3975 4482 Face 8837 28 4483 3507 Face 8838 28 3958 4483 Face 8839 397 4484 4046 Face 8840 397 4795 4484 Face 8841 829 4485 3598 Face 8842 829 3689 4485 Face 8843 2031 4486 3602 Face 8844 2031 1631 4486 Face 8845 1159 4487 2957 Face 8846 1159 2808 4487 Face 8847 1888 4488 402 Face 8848 1888 2766 4488 Face 8849 4889 4489 1904 Face 8850 2455 1096 4489 Face 8851 2918 4490 1333 Face 8852 2918 1701 4490 Face 8853 1526 4491 1304 Face 8854 1526 2670 4491 Face 8855 2646 4492 1253 Face 8856 2646 988 4492 Face 8857 1914 4493 727 Face 8858 1914 875 4493 Face 8859 2336 4494 4244 Face 8860 2336 739 4494 Face 8861 1636 4495 3852 Face 8862 1636 472 4495 Face 8863 54 4496 3162 Face 8864 54 1244 4496 Face 8865 286 4497 3540 Face 8866 286 2850 4497 Face 8867 223 4498 868 Face 8868 223 2435 4498 Face 8869 1529 4499 3354 Face 8870 1529 499 4499 Face 8871 1478 4500 3821 Face 8872 1478 4815 4500 Face 8873 2559 4501 1682 Face 8874 2559 371 4501 Face 8875 2174 4502 3338 Face 8876 2174 4504 4502 Face 8877 456 4503 3231 Face 8878 456 3872 4503 Face 8879 2880 4504 3757 Face 8880 2880 4502 4504 Face 8881 1694 4505 1328 Face 8882 1694 2705 4505 Face 8883 3170 4506 340 Face 8884 3170 639 4506 Face 8885 1486 4507 2377 Face 8886 1486 786 4507 Face 8887 2069 4508 3854 Face 8888 2069 2233 4508 Face 8889 1686 4509 18 Face 8890 1686 4083 4509 Face 8891 771 4510 4014 Face 8892 771 2095 4510 Face 8893 849 4511 2665 Face 8894 849 3909 4511 Face 8895 2674 4512 624 Face 8896 2674 956 4512 Face 8897 1198 4513 3721 Face 8898 1198 3820 4513 Face 8899 1209 4514 2946 Face 8900 1209 4920 4514 Face 8901 668 4515 4535 Face 8902 668 3831 4515 Face 8903 1230 4516 3319 Face 8904 1230 576 4516 Face 8905 3197 4517 865 Face 8906 3197 1839 4517 Face 8907 1613 4518 2747 Face 8908 1613 1001 4518 Face 8909 370 4519 2032 Face 8910 370 1571 4519 Face 8911 2334 4520 875 Face 8912 2334 4352 4520 Face 8913 1902 4521 3989 Face 8914 1902 613 4521 Face 8915 578 4522 2188 Face 8916 578 4107 4522 Face 8917 2196 4523 1023 Face 8918 2196 105 4523 Face 8919 1973 4524 3730 Face 8920 1973 4343 4524 Face 8921 733 4525 2081 Face 8922 733 3002 4525 Face 8923 3711 4526 3028 Face 8924 3711 2221 4526 Face 8925 779 4527 3908 Face 8926 779 4476 4527 Face 8927 1570 4528 622 Face 8928 1570 4124 4528 Face 8929 2769 4529 1409 Face 8930 2769 1328 4529 Face 8931 1176 4530 194 Face 8932 1176 27 4530 Face 8933 1538 4531 3525 Face 8934 1538 4729 4531 Face 8935 1949 4532 1057 Face 8936 1949 3188 4532 Face 8937 1322 4533 2499 Face 8938 1322 3022 4533 Face 8939 2946 4534 1645 Face 8940 2946 207 4534 Face 8941 2732 4535 4515 Face 8942 2732 4402 4535 Face 8943 1746 4536 453 Face 8944 1746 1909 4536 Face 8945 1530 4537 3764 Face 8946 1530 3508 4537 Face 8947 976 4538 4017 Face 8948 976 2953 4538 Face 8949 1579 4539 4237 Face 8950 1579 4014 4539 Face 8951 1783 4540 4466 Face 8952 1783 3346 4540 Face 8953 3357 4541 605 Face 8954 3357 387 4541 Face 8955 3402 4542 2505 Face 8956 3402 604 4542 Face 8957 2203 4543 2895 Face 8958 2203 4018 4543 Face 8959 588 4544 1937 Face 8960 588 1724 4544 Face 8961 3341 4545 4459 Face 8962 3341 22 4545 Face 8963 317 4546 3398 Face 8964 317 3535 4546 Face 8965 3864 4547 2325 Face 8966 414 4548 3294 Face 8967 414 925 4548 Face 8968 3604 4549 1767 Face 8969 3604 5061 4549 Face 8970 2417 4550 1396 Face 8971 2417 1731 4550 Face 8972 322 4551 715 Face 8973 322 3678 4551 Face 8974 1739 4552 2595 Face 8975 1739 528 4552 Face 8976 2210 4553 2893 Face 8977 2210 2236 4553 Face 8978 922 4554 3844 Face 8979 922 2356 4554 Face 8980 1146 4555 3943 Face 8981 1146 303 4555 Face 8982 2304 4556 2149 Face 8983 2304 2844 4556 Face 8984 239 4557 3539 Face 8985 239 961 4557 Face 8986 1157 4558 341 Face 8987 1157 3317 4558 Face 8988 1520 4559 2023 Face 8989 1520 2573 4559 Face 8990 3158 4560 2421 Face 8991 3158 1724 4560 Face 8992 2007 4561 3503 Face 8993 2007 1087 4561 Face 8994 460 4562 635 Face 8995 460 3516 4562 Face 8996 2452 4563 1517 Face 8997 2452 2053 4563 Face 8998 1313 4564 5016 Face 8999 1313 3663 4564 Face 9000 1119 4565 4362 Face 9001 1119 3381 4565 Face 9002 195 4566 2434 Face 9003 195 3752 4566 Face 9004 1073 4567 2900 Face 9005 1073 3846 4567 Face 9006 3141 4568 512 Face 9007 3141 1978 4568 Face 9008 3285 4569 563 Face 9009 3285 1592 4569 Face 9010 1061 4570 398 Face 9011 1061 2683 4570 Face 9012 129 4571 2285 Face 9013 129 4132 4571 Face 9014 134 4572 3634 Face 9015 134 874 4572 Face 9016 1891 4573 3712 Face 9017 1891 2161 4573 Face 9018 3043 4574 1102 Face 9019 3043 809 4574 Face 9020 988 4575 426 Face 9021 988 1935 4575 Face 9022 3366 4576 2250 Face 9023 3366 1598 4576 Face 9024 344 4577 4359 Face 9025 344 3826 4577 Face 9026 788 4578 3986 Face 9027 788 2279 4578 Face 9028 1527 4579 3671 Face 9029 1527 504 4579 Face 9030 175 4580 3123 Face 9031 175 2349 4580 Face 9032 2936 4581 518 Face 9033 2936 3428 4581 Face 9034 449 4582 3589 Face 9035 449 4339 4582 Face 9036 3031 4583 744 Face 9037 3031 1265 4583 Face 9038 25 4584 3421 Face 9039 25 1343 4584 Face 9040 543 4585 2585 Face 9041 543 2523 4585 Face 9042 2827 4586 4093 Face 9043 2827 1611 4586 Face 9044 1043 4587 3706 Face 9045 1043 609 4587 Face 9046 2966 4588 1767 Face 9047 2966 274 4588 Face 9048 3251 4589 2599 Face 9049 3251 4737 4589 Face 9050 2682 4590 3270 Face 9051 2682 1995 4590 Face 9052 221 4591 2688 Face 9053 221 1390 4591 Face 9054 320 4592 521 Face 9055 320 2555 4592 Face 9056 5060 4593 3323 Face 9057 73 646 4593 Face 9058 817 4594 2795 Face 9059 817 4201 4594 Face 9060 609 4595 4462 Face 9061 609 2924 4595 Face 9062 1104 4596 3990 Face 9063 1104 3363 4596 Face 9064 1288 4597 2308 Face 9065 1288 3597 4597 Face 9066 1830 4598 1370 Face 9067 1830 3631 4598 Face 9068 2379 4599 2673 Face 9069 2379 359 4599 Face 9070 205 4600 1994 Face 9071 205 4063 4600 Face 9072 2416 4601 1418 Face 9073 2416 2577 4601 Face 9074 984 4602 4900 Face 9075 984 1616 4602 Face 9076 1365 4603 3979 Face 9077 1365 1850 4603 Face 9078 1366 4604 3912 Face 9079 1366 4967 4604 Face 9080 1485 4605 489 Face 9081 1485 2460 4605 Face 9082 3700 4606 2354 Face 9083 3700 3020 4606 Face 9084 1586 4607 2925 Face 9085 1586 1943 4607 Face 9086 1473 4608 2103 Face 9087 1473 1886 4608 Face 9088 208 4609 1904 Face 9089 208 2422 4609 Face 9090 1077 4610 871 Face 9091 1077 3101 4610 Face 9092 1249 4611 3172 Face 9093 1249 3009 4611 Face 9094 93 4612 4371 Face 9095 93 3083 4612 Face 9096 2794 4613 1217 Face 9097 2794 3920 4613 Face 9098 1622 4614 3477 Face 9099 1622 457 4614 Face 9100 3466 4615 184 Face 9101 3466 2488 4615 Face 9102 3273 4616 2619 Face 9103 3273 2058 4616 Face 9104 262 4617 4155 Face 9105 262 4307 4617 Face 9106 750 4618 4733 Face 9107 750 4424 4618 Face 9108 1416 4619 1919 Face 9109 1416 1960 4619 Face 9110 2111 4620 3025 Face 9111 2111 5058 4620 Face 9112 176 4621 2635 Face 9113 176 3526 4621 Face 9114 2327 4622 1866 Face 9115 2327 3518 4622 Face 9116 3495 4623 2175 Face 9117 3495 1894 4623 Face 9118 3406 4624 1447 Face 9119 3406 191 4624 Face 9120 2954 4625 2332 Face 9121 2954 1979 4625 Face 9122 1482 4626 4184 Face 9123 1482 1315 4626 Face 9124 170 4627 1910 Face 9125 170 3830 4627 Face 9126 3720 4628 2548 Face 9127 3720 2944 4628 Face 9128 2820 4629 3958 Face 9129 2820 4498 4629 Face 9130 634 4630 2550 Face 9131 634 1517 4630 Face 9132 2604 4631 3487 Face 9133 2604 1630 4631 Face 9134 74 4632 921 Face 9135 74 2884 4632 Face 9136 1646 4633 64 Face 9137 1646 1557 4633 Face 9138 1850 4634 2477 Face 9139 1850 3394 4634 Face 9140 2737 4635 2697 Face 9141 2737 12 4635 Face 9142 3818 4636 2194 Face 9143 3818 1068 4636 Face 9144 1843 4637 2960 Face 9145 1843 2710 4637 Face 9146 2926 4638 652 Face 9147 2926 127 4638 Face 9148 1793 4639 3282 Face 9149 1793 3418 4639 Face 9150 2609 4640 390 Face 9151 2609 676 4640 Face 9152 2296 4641 3803 Face 9153 2296 4079 4641 Face 9154 1496 4642 4344 Face 9155 1496 2930 4642 Face 9156 1998 4643 4306 Face 9157 1998 4435 4643 Face 9158 214 4644 719 Face 9159 214 2317 4644 Face 9160 2873 4645 3776 Face 9161 2873 1242 4645 Face 9162 1557 4646 3103 Face 9163 1557 4225 4646 Face 9164 1997 4647 2378 Face 9165 1997 3851 4647 Face 9166 2180 4648 3762 Face 9167 2180 1140 4648 Face 9168 2554 4649 94 Face 9169 2554 1795 4649 Face 9170 2773 4650 40 Face 9171 2773 493 4650 Face 9172 2603 4651 285 Face 9173 2603 142 4651 Face 9174 3047 4652 1608 Face 9175 3047 4193 4652 Face 9176 173 4653 4003 Face 9177 173 3576 4653 Face 9178 2168 4654 908 Face 9179 2168 3109 4654 Face 9180 2404 4655 2985 Face 9181 2404 3724 4655 Face 9182 2908 4656 3856 Face 9183 2908 2319 4656 Face 9184 1576 4657 937 Face 9185 1576 3253 4657 Face 9186 948 4658 374 Face 9187 948 4398 4658 Face 9188 1145 4659 3355 Face 9189 1145 1675 4659 Face 9190 2002 4660 3424 Face 9191 2002 409 4660 Face 9192 3393 4661 1875 Face 9193 3393 186 4661 Face 9194 2306 4662 907 Face 9195 2306 1566 4662 Face 9196 2216 4663 1923 Face 9197 2216 1222 4663 Face 9198 2474 4664 3209 Face 9199 2474 3704 4664 Face 9200 3896 4665 4780 Face 9201 3896 2997 4665 Face 9202 762 4666 2505 Face 9203 762 2693 4666 Face 9204 1826 4667 3924 Face 9205 1826 3796 4667 Face 9206 2218 4668 3812 Face 9207 2218 3018 4668 Face 9208 680 4669 2982 Face 9209 680 2284 4669 Face 9210 3962 4670 2118 Face 9211 3962 1181 4670 Face 9212 3531 4671 4262 Face 9213 3531 2199 4671 Face 9214 1124 4672 2411 Face 9215 1124 3371 4672 Face 9216 2143 4673 522 Face 9217 2143 187 4673 Face 9218 2167 4674 5062 Face 9219 2167 632 4674 Face 9220 2020 4675 3723 Face 9221 2020 1121 4675 Face 9222 1115 4676 2340 Face 9223 1115 3961 4676 Face 9224 737 4677 3601 Face 9225 737 1734 4677 Face 9226 3114 4678 325 Face 9227 3114 2344 4678 Face 9228 3780 4679 604 Face 9229 3780 2753 4679 Face 9230 326 4680 2036 Face 9231 326 2700 4680 Face 9232 1926 4681 2774 Face 9233 1926 661 4681 Face 9234 619 4682 1992 Face 9235 619 3606 4682 Face 9236 3828 4683 95 Face 9237 3828 2563 4683 Face 9238 3913 4684 3244 Face 9239 3913 2907 4684 Face 9240 2311 4685 1411 Face 9241 2311 4363 4685 Face 9242 768 4686 1814 Face 9243 768 1897 4686 Face 9244 1981 4687 1067 Face 9245 1981 4092 4687 Face 9246 3629 4688 2443 Face 9247 3629 710 4688 Face 9248 1187 4689 2290 Face 9249 1187 2861 4689 Face 9250 229 4690 4120 Face 9251 229 4055 4690 Face 9252 2369 4691 3624 Face 9253 2369 4833 4691 Face 9254 1186 4692 2700 Face 9255 1186 3336 4692 Face 9256 713 4693 2986 Face 9257 713 2751 4693 Face 9258 662 4694 3585 Face 9259 662 1484 4694 Face 9260 1834 4695 3565 Face 9261 1834 3385 4695 Face 9262 1019 4696 1507 Face 9263 1019 3740 4696 Face 9264 2010 4697 2638 Face 9265 2010 2568 4697 Face 9266 1449 4698 2197 Face 9267 1449 1269 4698 Face 9268 3371 4699 3076 Face 9269 3371 3726 4699 Face 9270 1656 4700 3695 Face 9271 1656 3511 4700 Face 9272 1354 4701 3408 Face 9273 1354 4683 4701 Face 9274 1213 4702 3007 Face 9275 1213 3916 4702 Face 9276 254 4703 2374 Face 9277 254 2380 4703 Face 9278 1142 4704 3431 Face 9279 1142 4044 4704 Face 9280 2758 4705 4286 Face 9281 2758 4837 4705 Face 9282 1795 4706 4649 Face 9283 1795 4301 4706 Face 9284 1782 4707 3650 Face 9285 1782 1215 4707 Face 9286 2088 4708 3220 Face 9287 2088 1011 4708 Face 9288 1621 4709 1941 Face 9289 1621 2840 4709 Face 9290 1942 4710 3635 Face 9291 1942 3063 4710 Face 9292 3330 4711 2074 Face 9293 3330 2483 4711 Face 9294 1726 4712 849 Face 9295 1726 2130 4712 Face 9296 2472 4713 2999 Face 9297 2472 4124 4713 Face 9298 890 4714 1740 Face 9299 890 3824 4714 Face 9300 1821 4715 4149 Face 9301 1821 965 4715 Face 9302 1495 4716 4383 Face 9303 1495 2921 4716 Face 9304 3237 4717 842 Face 9305 3237 567 4717 Face 9306 2734 4718 340 Face 9307 2734 1003 4718 Face 9308 648 4719 2358 Face 9309 648 1648 4719 Face 9310 1205 4720 2630 Face 9311 1205 3855 4720 Face 9312 1651 4721 4110 Face 9313 1651 1555 4721 Face 9314 3862 4722 4258 Face 9315 3862 683 4722 Face 9316 3048 4723 3535 Face 9317 3048 469 4723 Face 9318 380 4724 1397 Face 9319 380 946 4724 Face 9320 241 4725 1736 Face 9321 241 4059 4725 Face 9322 3929 4726 621 Face 9323 3929 1907 4726 Face 9324 607 4727 1853 Face 9325 607 2252 4727 Face 9326 1340 4728 3220 Face 9327 1340 4074 4728 Face 9328 1050 4729 1538 Face 9329 1050 3506 4729 Face 9330 1755 4730 3305 Face 9331 1755 3568 4730 Face 9332 2751 4731 4693 Face 9333 2751 3945 4731 Face 9334 2742 4732 2138 Face 9335 2742 3598 4732 Face 9336 2589 4733 3234 Face 9337 2589 750 4733 Face 9338 1854 4734 2517 Face 9339 1854 3511 4734 Face 9340 189 4735 3216 Face 9341 189 2359 4735 Face 9342 3626 4736 787 Face 9343 3626 46 4736 Face 9344 1074 4737 3251 Face 9345 1074 224 4737 Face 9346 1673 4738 3659 Face 9347 1673 3067 4738 Face 9348 1630 4739 3451 Face 9349 1630 3842 4739 Face 9350 1583 4740 3384 Face 9351 1583 4086 4740 Face 9352 202 4741 2928 Face 9353 202 2576 4741 Face 9354 369 4742 1659 Face 9355 369 4449 4742 Face 9356 1682 4743 2559 Face 9357 1682 2146 4743 Face 9358 234 4744 1783 Face 9359 234 2549 4744 Face 9360 919 4745 4102 Face 9361 919 1825 4745 Face 9362 1344 4746 4081 Face 9363 1344 359 4746 Face 9364 1284 4747 2647 Face 9365 1284 3692 4747 Face 9366 2630 4748 3229 Face 9367 2630 816 4748 Face 9368 2858 4749 1584 Face 9369 2858 1374 4749 Face 9370 3164 4750 3964 Face 9371 3164 2298 4750 Face 9372 57 4751 5049 Face 9373 57 1454 4751 Face 9374 293 4752 1184 Face 9375 293 4198 4752 Face 9376 3367 4753 3953 Face 9377 3367 1012 4753 Face 9378 1054 4754 3509 Face 9379 1054 4447 4754 Face 9380 694 4755 1678 Face 9381 694 4331 4755 Face 9382 758 4756 3086 Face 9383 758 479 4756 Face 9384 1696 4757 2019 Face 9385 1696 408 4757 Face 9386 1256 4758 2395 Face 9387 1256 656 4758 Face 9388 2818 4759 1463 Face 9389 2818 807 4759 Face 9390 3575 4760 2542 Face 9391 3575 3102 4760 Face 9392 2744 4761 470 Face 9393 2744 1528 4761 Face 9394 3759 4762 541 Face 9395 3759 978 4762 Face 9396 2291 4763 1832 Face 9397 2291 3771 4763 Face 9398 2779 4764 686 Face 9399 2779 1138 4764 Face 9400 595 4765 2932 Face 9401 595 3971 4765 Face 9402 3662 4766 1774 Face 9403 3662 3150 4766 Face 9404 784 4767 4336 Face 9405 784 3262 4767 Face 9406 246 4768 2461 Face 9407 246 2148 4768 Face 9408 1108 4769 200 Face 9409 1108 2104 4769 Face 9410 3067 4770 4738 Face 9411 3067 68 4770 Face 9412 644 4771 3653 Face 9413 644 2877 4771 Face 9414 3530 4772 2413 Face 9415 3530 2944 4772 Face 9416 2446 4773 2341 Face 9417 2446 450 4773 Face 9418 2790 4774 3978 Face 9419 2790 883 4774 Face 9420 70 4775 1954 Face 9421 70 2631 4775 Face 9422 2621 4776 1918 Face 9423 2621 447 4776 Face 9424 1624 4777 4325 Face 9425 1624 3490 4777 Face 9426 3675 4778 31 Face 9427 3675 2109 4778 Face 9428 1029 4779 1274 Face 9429 1029 3043 4779 Face 9430 1597 4780 2579 Face 9431 1597 3160 4780 Face 9432 2139 4781 3411 Face 9433 2139 2625 4781 Face 9434 1503 4782 2534 Face 9435 1503 3875 4782 Face 9436 963 4783 716 Face 9437 963 4565 4783 Face 9438 3641 4784 836 Face 9439 3641 1156 4784 Face 9440 1423 4785 2565 Face 9441 1423 2556 4785 Face 9442 2056 4786 212 Face 9443 2056 869 4786 Face 9444 2106 4787 3733 Face 9445 2106 236 4787 Face 9446 2992 4788 1308 Face 9447 2992 2707 4788 Face 9448 3623 4789 1144 Face 9449 3623 80 4789 Face 9450 1837 4790 146 Face 9451 1837 4203 4790 Face 9452 284 4791 3552 Face 9453 284 2976 4791 Face 9454 1433 4792 2596 Face 9455 1433 3486 4792 Face 9456 3168 4793 571 Face 9457 3168 1263 4793 Face 9458 2656 4794 2713 Face 9459 2656 2819 4794 Face 9460 2410 4795 682 Face 9461 2410 4484 4795 Face 9462 2414 4796 1942 Face 9463 2414 3515 4796 Face 9464 1873 4797 4211 Face 9465 1873 3097 4797 Face 9466 1277 4798 821 Face 9467 1277 3382 4798 Face 9468 2764 4799 1012 Face 9469 2764 1248 4799 Face 9470 3119 4800 3946 Face 9471 3119 3808 4800 Face 9472 1398 4801 4365 Face 9473 1398 2075 4801 Face 9474 3320 4802 1675 Face 9475 3320 2299 4802 Face 9476 815 4803 2046 Face 9477 815 2298 4803 Face 9478 1111 4804 247 Face 9479 1111 222 4804 Face 9480 669 4805 851 Face 9481 669 3823 4805 Face 9482 2726 4806 1018 Face 9483 2726 1768 4806 Face 9484 3441 4807 3796 Face 9485 3441 2387 4807 Face 9486 1928 4808 3325 Face 9487 1928 2193 4808 Face 9488 2217 4809 1353 Face 9489 2217 870 4809 Face 9490 1047 4810 2982 Face 9491 1047 3633 4810 Face 9492 1849 4811 4282 Face 9493 1849 3436 4811 Face 9494 2562 4812 1406 Face 9495 2562 747 4812 Face 9496 3155 4813 361 Face 9497 3155 98 4813 Face 9498 2071 4814 4233 Face 9499 2071 3593 4814 Face 9500 2899 4815 980 Face 9501 2899 4500 4815 Face 9502 1067 4816 1981 Face 9503 1067 3850 4816 Face 9504 811 4817 1395 Face 9505 811 4151 4817 Face 9506 2868 4818 3106 Face 9507 2868 3857 4818 Face 9508 1734 4819 4275 Face 9509 1734 737 4819 Face 9510 2243 4820 2909 Face 9511 2243 1367 4820 Face 9512 1663 4821 3175 Face 9513 1663 2806 4821 Face 9514 2871 4822 1058 Face 9515 2871 4064 4822 Face 9516 1800 4823 3642 Face 9517 1800 3546 4823 Face 9518 3085 4824 4296 Face 9519 3085 4018 4824 Face 9520 3240 4825 1262 Face 9521 3240 1336 4825 Face 9522 1174 4826 4219 Face 9523 1174 736 4826 Face 9524 1479 4827 1616 Face 9525 1479 2860 4827 Face 9526 153 4828 3839 Face 9527 153 2513 4828 Face 9528 2193 4829 389 Face 9529 2193 4759 4829 Face 9530 46 4830 2682 Face 9531 46 3269 4830 Face 9532 861 4831 2828 Face 9533 861 3487 4831 Face 9534 5029 4832 2658 Face 9535 3210 927 4832 Face 9536 2912 4833 2369 Face 9537 2912 2272 4833 Face 9538 1733 4834 3705 Face 9539 5002 558 4834 Face 9540 1966 4835 1923 Face 9541 1966 3063 4835 Face 9542 882 4836 4376 Face 9543 882 2783 4836 Face 9544 3277 4837 2758 Face 9545 3277 3028 4837 Face 9546 603 4838 4349 Face 9547 603 1737 4838 Face 9548 2463 4839 1089 Face 9549 2463 3139 4839 Face 9550 3758 4840 1760 Face 9551 3758 1152 4840 Face 9552 2457 4841 1632 Face 9553 2457 3781 4841 Face 9554 2729 4842 1062 Face 9555 2729 1718 4842 Face 9556 2497 4843 640 Face 9557 2497 2107 4843 Face 9558 3543 4844 4131 Face 9559 3543 2454 4844 Face 9560 751 4845 1100 Face 9561 751 2226 4845 Face 9562 1160 4846 1615 Face 9563 1160 2093 4846 Face 9564 3211 4847 725 Face 9565 3211 908 4847 Face 9566 3488 4848 695 Face 9567 3488 3167 4848 Face 9568 1216 4849 2529 Face 9569 1216 3374 4849 Face 9570 2616 4850 2387 Face 9571 2616 2842 4850 Face 9572 2991 4851 3407 Face 9573 2991 1553 4851 Face 9574 1657 4852 1246 Face 9575 1657 4606 4852 Face 9576 2421 4853 2657 Face 9577 2421 1300 4853 Face 9578 1457 4854 4021 Face 9579 1457 2705 4854 Face 9580 280 4855 2747 Face 9581 280 4223 4855 Face 9582 106 4856 3311 Face 9583 106 4641 4856 Face 9584 2134 4857 4318 Face 9585 2134 3422 4857 Face 9586 152 4858 1272 Face 9587 152 3485 4858 Face 9588 2540 4859 2805 Face 9589 2540 4384 4859 Face 9590 13 4860 4278 Face 9591 13 1725 4860 Face 9592 2036 4861 326 Face 9593 2036 924 4861 Face 9594 2597 4862 4841 Face 9595 2597 4592 4862 Face 9596 3869 4863 3947 Face 9597 3869 1745 4863 Face 9598 688 4864 2792 Face 9599 688 1829 4864 Face 9600 3349 4865 2276 Face 9601 3349 217 4865 Face 9602 2721 4866 840 Face 9603 2721 1011 4866 Face 9604 2008 4867 636 Face 9605 2008 3104 4867 Face 9606 2285 4868 2028 Face 9607 2285 3583 4868 Face 9608 2034 4869 2377 Face 9609 2034 1166 4869 Face 9610 3146 4870 3803 Face 9611 3146 4301 4870 Face 9612 26 4871 2632 Face 9613 26 648 4871 Face 9614 261 4872 2746 Face 9615 261 4955 4872 Face 9616 495 4873 2490 Face 9617 495 4134 4873 Face 9618 1254 4874 2679 Face 9619 1254 3566 4874 Face 9620 3470 4875 1389 Face 9621 3470 2192 4875 Face 9622 2955 4876 778 Face 9623 2955 3928 4876 Face 9624 200 4877 1020 Face 9625 200 4769 4877 Face 9626 2197 4878 3252 Face 9627 2197 39 4878 Face 9628 3395 4879 1183 Face 9629 3395 3397 4879 Face 9630 2390 4880 791 Face 9631 2390 3816 4880 Face 9632 1692 4881 879 Face 9633 1692 3113 4881 Face 9634 1731 4882 3622 Face 9635 1731 2730 4882 Face 9636 3002 4883 1136 Face 9637 3002 580 4883 Face 9638 3333 4884 1658 Face 9639 3333 1545 4884 Face 9640 4231 4885 3760 Face 9641 4231 970 4885 Face 9642 826 4886 2406 Face 9643 826 3227 4886 Face 9644 3900 4887 1265 Face 9645 3900 1943 4887 Face 9646 3078 4888 2546 Face 9647 3078 4247 4888 Face 9648 2455 4889 678 Face 9649 2455 4489 4889 Face 9650 1241 4890 440 Face 9651 1241 4067 4890 Face 9652 2314 4891 3751 Face 9653 2314 3133 4891 Face 9654 842 4892 162 Face 9655 842 2329 4892 Face 9656 485 4893 2889 Face 9657 485 2492 4893 Face 9658 2594 4894 464 Face 9659 2594 1278 4894 Face 9660 1422 4895 2502 Face 9661 1422 1566 4895 Face 9662 962 4896 4279 Face 9663 962 2222 4896 Face 9664 1903 4897 4432 Face 9665 1903 2392 4897 Face 9666 1003 4898 3198 Face 9667 1003 3038 4898 Face 9668 590 4899 3376 Face 9669 590 1194 4899 Face 9670 291 4900 4602 Face 9671 291 3954 4900 Face 9672 1872 4901 2603 Face 9673 1872 673 4901 Face 9674 2499 4902 884 Face 9675 2499 3825 4902 Face 9676 2207 4903 1250 Face 9677 2207 315 4903 Face 9678 2309 4904 3685 Face 9679 2309 4467 4904 Face 9680 433 4905 1131 Face 9681 433 1345 4905 Face 9682 349 4906 2033 Face 9683 349 3999 4906 Face 9684 616 4907 3607 Face 9685 616 1690 4907 Face 9686 1109 4908 3114 Face 9687 1109 1633 4908 Face 9688 1640 4909 1013 Face 9689 1640 1627 4909 Face 9690 2353 4910 1521 Face 9691 2353 2980 4910 Face 9692 1247 4911 4020 Face 9693 1247 368 4911 Face 9694 2021 4912 3567 Face 9695 2021 2553 4912 Face 9696 2768 4913 4784 Face 9697 2768 383 4913 Face 9698 2683 4914 4570 Face 9699 2683 391 4914 Face 9700 1150 4915 155 Face 9701 1150 4389 4915 Face 9702 491 4916 3926 Face 9703 491 1966 4916 Face 9704 3878 4917 3456 Face 9705 3878 192 4917 Face 9706 2277 4918 3359 Face 9707 2277 2504 4918 Face 9708 1615 4919 1160 Face 9709 1615 52 4919 Face 9710 3595 4920 1327 Face 9711 3595 653 4920 Face 9712 2688 4921 4094 Face 9713 2688 729 4921 Face 9714 2778 4922 3552 Face 9715 2778 1901 4922 Face 9716 1185 4923 2809 Face 9717 1185 4432 4923 Face 9718 3288 4924 681 Face 9719 3288 1188 4924 Face 9720 876 4925 3880 Face 9721 876 2975 4925 Face 9722 1838 4926 1004 Face 9723 1838 50 4926 Face 9724 4114 4927 1245 Face 9725 4114 1776 4927 Face 9726 1916 4928 4461 Face 9727 1916 3035 4928 Face 9728 2879 4929 1732 Face 9729 2879 279 4929 Face 9730 528 4930 2866 Face 9731 528 728 4930 Face 9732 1603 4931 4027 Face 9733 1603 2870 4931 Face 9734 947 4932 2231 Face 9735 947 4333 4932 Face 9736 1839 4933 4517 Face 9737 1839 42 4933 Face 9738 2319 4934 3930 Face 9739 2319 1212 4934 Face 9740 2017 4935 4282 Face 9741 2017 4461 4935 Face 9742 3400 4936 2764 Face 9743 3400 189 4936 Face 9744 1117 4937 5036 Face 9745 1117 4354 4937 Face 9746 3083 4938 1540 Face 9747 3083 4204 4938 Face 9748 989 4939 3655 Face 9749 989 4130 4939 Face 9750 3382 4940 2081 Face 9751 3382 2675 4940 Face 9752 1382 4941 4187 Face 9753 1382 3170 4941 Face 9754 3160 4942 3896 Face 9755 3160 2617 4942 Face 9756 2381 4943 4475 Face 9757 2381 2424 4943 Face 9758 430 4944 2043 Face 9759 430 3207 4944 Face 9760 763 4945 3735 Face 9761 763 2825 4945 Face 9762 1711 4946 2822 Face 9763 1711 4987 4946 Face 9764 2619 4947 895 Face 9765 2619 1798 4947 Face 9766 1323 4948 4581 Face 9767 1323 717 4948 Face 9768 3923 4949 552 Face 9769 3923 2838 4949 Face 9770 2157 4950 274 Face 9771 2157 178 4950 Face 9772 791 4951 3556 Face 9773 791 3613 4951 Face 9774 2602 4952 4754 Face 9775 2602 1721 4952 Face 9776 3690 4953 267 Face 9777 3690 738 4953 Face 9778 2987 4954 1462 Face 9779 2987 58 4954 Face 9780 1144 4955 261 Face 9781 1144 1653 4955 Face 9782 188 4956 2929 Face 9783 188 847 4956 Face 9784 2578 4957 1668 Face 9785 2578 515 4957 Face 9786 265 4958 2529 Face 9787 265 3688 4958 Face 9788 1218 4959 2461 Face 9789 1218 2503 4959 Face 9790 3077 4960 244 Face 9791 3077 454 4960 Face 9792 2024 4961 2971 Face 9793 2024 515 4961 Face 9794 2922 4962 385 Face 9795 2922 124 4962 Face 9796 1135 4963 704 Face 9797 1135 4019 4963 Face 9798 506 4964 3615 Face 9799 506 4072 4964 Face 9800 3788 4965 4295 Face 9801 3788 1953 4965 Face 9802 983 4966 442 Face 9803 983 4234 4966 Face 9804 893 4967 1366 Face 9805 893 1071 4967 Face 9806 3810 4968 33 Face 9807 3810 1122 4968 Face 9808 657 4969 1531 Face 9809 657 2442 4969 Face 9810 3098 4970 3729 Face 9811 3098 3873 4970 Face 9812 2171 4971 3684 Face 9813 2171 1955 4971 Face 9814 3859 4972 4625 Face 9815 3859 820 4972 Face 9816 3549 4973 2090 Face 9817 3549 136 4973 Face 9818 2109 4974 2740 Face 9819 2109 1029 4974 Face 9820 877 4975 3789 Face 9821 877 1330 4975 Face 9822 2329 4976 1199 Face 9823 2329 98 4976 Face 9824 1337 4977 4930 Face 9825 1337 3963 4977 Face 9826 2725 4978 1545 Face 9827 2725 82 4978 Face 9828 434 4979 4783 Face 9829 434 3058 4979 Face 9830 2035 4980 741 Face 9831 2035 3957 4980 Face 9832 645 4981 2123 Face 9833 645 3737 4981 Face 9834 851 4982 3440 Face 9835 851 1949 4982 Face 9836 2031 4983 1273 Face 9837 2031 3602 4983 Face 9838 2202 4984 511 Face 9839 2202 1556 4984 Face 9840 2006 4985 526 Face 9841 2006 4255 4985 Face 9842 458 4986 1917 Face 9843 458 1362 4986 Face 9844 3703 4987 578 Face 9845 3703 4946 4987 Face 9846 2301 4988 652 Face 9847 2301 4208 4988 Face 9848 1403 4989 3583 Face 9849 1403 4781 4989 Face 9850 1068 4990 2862 Face 9851 1068 1775 4990 Face 9852 649 4991 4036 Face 9853 649 4287 4991 Face 9854 709 4992 2569 Face 9855 709 3282 4992 Face 9856 1307 4993 3364 Face 9857 1307 4357 4993 Face 9858 3340 4994 2570 Face 9859 3340 4126 4994 Face 9860 2950 4995 1338 Face 9861 2950 2709 4995 Face 9862 3034 4996 1757 Face 9863 3034 907 4996 Face 9864 3188 4997 1601 Face 9865 3188 1207 4997 Face 9866 1021 4998 3116 Face 9867 1021 1747 4998 Face 9868 3038 4999 2208 Face 9869 3038 1887 4999 Face 9870 41 5000 1162 Face 9871 41 3615 5000 Face 9872 477 5001 3438 Face 9873 477 3093 5001 Face 9874 1733 5002 4834 Face 9875 1733 2946 5002 Face 9876 1092 5003 2211 Face 9877 1092 4107 5003 Face 9878 3214 5004 1904 Face 9879 3214 2176 5004 Face 9880 2564 5005 1350 Face 9881 2564 1977 5005 Face 9882 1995 5006 4590 Face 9883 1995 4349 5006 Face 9884 1785 5007 3312 Face 9885 1785 3701 5007 Face 9886 2124 5008 4534 Face 9887 2124 3343 5008 Face 9888 3190 5009 4440 Face 9889 3190 2096 5009 Face 9890 1415 5010 748 Face 9891 1415 2481 5010 Face 9892 3730 5011 912 Face 9893 3730 4524 5011 Face 9894 586 5012 4460 Face 9895 586 977 5012 Face 9896 537 5013 2486 Face 9897 537 3819 5013 Face 9898 427 5014 3576 Face 9899 427 1693 5014 Face 9900 3541 5015 2511 Face 9901 3541 2656 5015 Face 9902 120 5016 4564 Face 9903 120 1655 5016 Face 9904 3596 5017 4162 Face 9905 3596 4194 5017 Face 9906 3365 5018 3195 Face 9907 3365 1893 5018 Face 9908 181 5019 2038 Face 9909 181 1654 5019 Face 9910 1548 5020 3795 Face 9911 1548 4170 5020 Face 9912 2348 5021 910 Face 9913 2348 1137 5021 Face 9914 1813 5022 1255 Face 9915 1813 2859 5022 Face 9916 300 5023 1681 Face 9917 300 3837 5023 Face 9918 3224 5024 45 Face 9919 3224 1520 5024 Face 9920 2708 5025 3142 Face 9921 2708 1466 5025 Face 9922 3049 5026 3569 Face 9923 3049 510 5026 Face 9924 1580 5027 2754 Face 9925 1580 3621 5027 Face 9926 15 5028 1127 Face 9927 15 4193 5028 Face 9928 3210 5029 565 Face 9929 3210 4832 5029 Face 9930 3360 5030 1730 Face 9931 3360 2437 5030 Face 9932 2789 5031 1081 Face 9933 2789 4177 5031 Face 9934 297 5032 3299 Face 9935 297 2608 5032 Face 9936 1930 5033 898 Face 9937 1930 4059 5033 Face 9938 319 5034 2510 Face 9939 319 2231 5034 Face 9940 2555 5035 3769 Face 9941 2555 4385 5035 Face 9942 2092 5036 4937 Face 9943 2092 3798 5036 Face 9944 2843 5037 3396 Face 9945 2843 4103 5037 Face 9946 23 5038 3319 Face 9947 23 1066 5038 Face 9948 1675 5039 2697 Face 9949 1675 4320 5039 Face 9950 2795 5040 291 Face 9951 2795 4594 5040 Face 9952 1297 5041 2759 Face 9953 1297 1679 5041 Face 9954 1348 5042 4209 Face 9955 1348 3915 5042 Face 9956 493 5043 3971 Face 9957 493 2773 5043 Face 9958 127 5044 1501 Face 9959 127 2872 5044 Face 9960 1301 5045 4954 Face 9961 1301 3389 5045 Face 9962 2644 5046 3309 Face 9963 2644 4098 5046 Face 9964 2776 5047 2468 Face 9965 2776 835 5047 Face 9966 1443 5048 2733 Face 9967 1443 4042 5048 Face 9968 1095 5049 4751 Face 9969 1095 3605 5049 Face 9970 2264 5050 841 Face 9971 2264 3090 5050 Face 9972 2282 5051 1170 Face 9973 2282 933 5051 Face 9974 2581 5052 1335 Face 9975 2581 3956 5052 Face 9976 2365 5053 69 Face 9977 2365 836 5053 Face 9978 1030 5054 2452 Face 9979 1030 1663 5054 Face 9980 4635 5055 4659 Face 9981 4635 12 5055 Face 9982 2342 5056 1511 Face 9983 2342 4048 5056 Face 9984 1883 5057 471 Face 9985 1883 3030 5057 Face 9986 63 5058 2111 Face 9987 63 4528 5058 Face 9988 2996 5059 1492 Face 9989 2996 1843 5059 Face 9990 73 5060 3292 Face 9991 73 4593 5060 Face 9992 870 5061 4002 Face 9993 870 3457 5061 Face 9994 1158 5062 4674 Face 9995 1397 5063 3522 Face 9996 1397 3950 5063 Face 9997 3630 5064 1789 Face 9998 3630 1316 5064 Face 9999 225 5065 2785 Face 10000 225 4732 5065 ================================================ FILE: models/bunny500.m ================================================ Vertex 1 -0.0418663 0.0340021 -0.00580283 Vertex 2 -0.0380666 0.0385186 -0.00730796 Vertex 3 0.00621941 0.0351341 0.00654928 Vertex 4 0.021677 0.0354914 0.00935068 Vertex 5 -0.0324992 0.033739 0.00907408 Vertex 6 0.0174901 0.0346463 0.0220409 Vertex 7 -0.0525671 0.0335472 0.0123651 Vertex 8 -0.0360812 0.0358497 0.0136623 Vertex 9 -0.0510279 0.0336678 0.0250302 Vertex 10 0.00852878 0.034888 0.0362651 Vertex 11 -0.0348346 0.0347214 0.0345782 Vertex 12 -0.0149936 0.0395459 0.0398583 Vertex 13 -0.0631142 0.178334 -0.0583576 Vertex 14 -0.0926613 0.122825 0.0414622 Vertex 15 0.0334188 0.115464 0.00204907 Vertex 16 0.00150188 0.0938741 0.0550191 Vertex 17 0.0122157 0.0346138 -0.0197432 Vertex 18 0.057752 0.0523416 0.0181873 Vertex 19 -0.0203431 0.186558 -0.0166005 Vertex 20 -0.0706835 0.155594 0.0053992 Vertex 21 -0.049291 0.131272 -0.000642385 Vertex 22 -0.0654945 0.0398115 -0.0063825 Vertex 23 -0.0597544 0.151092 0.0347772 Vertex 24 -0.00479883 0.0826783 -0.0376925 Vertex 25 0.0154275 0.0350916 0.0411096 Vertex 26 -0.0274456 0.0382197 0.0539829 Vertex 27 0.00866181 0.128565 0.0271896 Vertex 28 -0.0849159 0.123546 -0.00333555 Vertex 29 -0.0427254 0.0358312 -0.0275925 Vertex 30 -0.0634853 0.0904216 0.0451002 Vertex 31 0.0371254 0.0869172 -0.0157926 Vertex 32 -0.0808762 0.0733317 0.00350919 Vertex 33 -0.0870329 0.152942 0.0187545 Vertex 34 0.0344933 0.0929192 0.0394802 Vertex 35 -0.0606157 0.0459479 0.0402046 Vertex 36 0.0106278 0.12033 -0.0136749 Vertex 37 -0.00975768 0.167025 -0.0223761 Vertex 38 -0.0486234 0.0532712 -0.0094518 Vertex 39 -0.064755 0.068231 0.0343382 Vertex 40 -0.0827096 0.131285 0.0511192 Vertex 41 -0.0737739 0.0878479 -0.0153893 Vertex 42 -0.0680885 0.16093 -0.05501 Vertex 43 -0.0370064 0.121579 0.0285082 Vertex 44 -0.027701 0.0549269 0.0368456 Vertex 45 0.0383993 0.0413521 -0.00190432 Vertex 46 0.0577041 0.0703778 0.00716237 Vertex 47 -0.0777137 0.177848 -0.0500546 Vertex 48 -0.0650925 0.142629 -0.00933509 Vertex 49 0.0181983 0.0768373 0.0527356 Vertex 50 -0.0304781 0.0523954 -0.0163632 Vertex 51 -0.0913588 0.113353 0.0143394 Vertex 52 -0.0510836 0.145457 -0.000907293 Vertex 53 -0.0444613 0.12936 0.0182577 Vertex 54 -0.0194987 0.0828823 0.05729 Vertex 55 0.0193474 0.0551603 -0.0276297 Vertex 56 -0.0213746 0.0936314 -0.0333712 Vertex 57 -0.0716377 0.0368114 0.00909586 Vertex 58 -0.0735089 0.120392 0.0535609 Vertex 59 0.034591 0.113857 0.0224952 Vertex 60 -0.0790692 0.0804499 0.033529 Vertex 61 -0.0311696 0.0749025 -0.031542 Vertex 62 0.0100369 0.130324 0.00340984 Vertex 63 -0.0581623 0.155642 0.0142378 Vertex 64 -0.0523454 0.059725 0.0287459 Vertex 65 -0.0778099 0.148638 -0.00388521 Vertex 66 0.0502975 0.0560957 -0.00457555 Vertex 67 -0.0298463 0.0958488 -0.0239617 Vertex 68 -0.0596993 0.0345337 0.0416145 Vertex 69 -0.0142526 0.181479 -0.0279552 Vertex 70 -0.0335185 0.0974234 0.0440535 Vertex 71 0.0553211 0.0622297 0.0271921 Vertex 72 -0.089555 0.092956 0.0194329 Vertex 73 -0.0354636 0.172718 -0.000342919 Vertex 74 -0.0778403 0.10982 0.0432074 Vertex 75 0.0437747 0.084485 0.0264379 Vertex 76 -0.061825 0.164563 -0.0576805 Vertex 77 -0.00773495 0.12664 -0.00628182 Vertex 78 -0.039497 0.0436994 0.0413132 Vertex 79 0.0122013 0.0878954 -0.0308742 Vertex 80 -0.09096 0.148814 0.0141536 Vertex 81 -0.0501563 0.11976 0.0326732 Vertex 82 -0.0568852 0.111179 -0.0170834 Vertex 83 -0.0391149 0.0337868 -0.0291782 Vertex 84 0.0455252 0.0918117 0.00617298 Vertex 85 -0.00149547 0.119691 0.0381347 Vertex 86 0.00250176 0.0620246 0.0566613 Vertex 87 -0.0725091 0.147853 -0.0287195 Vertex 88 -0.0667502 0.0337781 -0.00695475 Vertex 89 -0.0706528 0.0621972 0.0100461 Vertex 90 -0.0132407 0.164048 -0.012311 Vertex 91 -0.0532393 0.0448331 0.0206817 Vertex 92 -0.0164815 0.0515035 0.0485835 Vertex 93 -0.0655548 0.153788 -0.00146085 Vertex 94 -0.0509182 0.146274 0.0133981 Vertex 95 -0.00957846 0.178815 -0.0287373 Vertex 96 -0.0836424 0.0924862 -0.00555232 Vertex 97 0.0384903 0.0499056 0.0320993 Vertex 98 0.0240424 0.122784 0.0256717 Vertex 99 -0.0137183 0.0628763 -0.0368336 Vertex 100 -0.0345208 0.0633716 0.0403553 Vertex 101 -0.0728479 0.14776 0.0416103 Vertex 102 -0.0358756 0.107103 -0.0202685 Vertex 103 -0.0537766 0.0826585 -0.0215583 Vertex 104 -0.0672891 0.178209 -0.0595336 Vertex 105 0.00532997 0.0389553 -0.00830106 Vertex 106 -0.0588103 0.157344 0.00530008 Vertex 107 0.0339626 0.0356317 0.0117064 Vertex 108 0.0335254 0.101204 -0.0131717 Vertex 109 -0.0385029 0.0346069 0.040918 Vertex 110 -0.0842996 0.0965857 0.0297797 Vertex 111 0.0104112 0.0375138 -0.0230668 Vertex 112 -0.0246656 0.0492403 -0.0269082 Vertex 113 -0.0749499 0.112554 -0.00662315 Vertex 114 0.0184707 0.107054 0.0413783 Vertex 115 0.0552084 0.0493743 0.00621284 Vertex 116 -0.0610891 0.0339525 0.017372 Vertex 117 -0.0670049 0.0372923 0.032499 Vertex 118 -0.0634989 0.108392 0.0384413 Vertex 119 0.0358388 0.063303 0.0376893 Vertex 120 -0.0148223 0.129108 0.012888 Vertex 121 -0.0667756 0.124253 0.0509201 Vertex 122 0.0499455 0.0733656 0.0164225 Vertex 123 -0.0181454 0.0347978 0.0451006 Vertex 124 -0.0356288 0.0533886 -0.010251 Vertex 125 -0.0306281 0.0831438 0.0423752 Vertex 126 -0.0258016 0.0867079 -0.0364604 Vertex 127 0.0137867 0.0377633 0.0443361 Vertex 128 0.0191388 0.0356129 -0.00667825 Vertex 129 0.0451032 0.0777437 0.000209071 Vertex 130 -0.0505797 0.0528906 0.0145102 Vertex 131 -0.0259323 0.124597 0.000115118 Vertex 132 -0.0946899 0.124172 0.0202666 Vertex 133 -0.0662037 0.154495 -0.0505507 Vertex 134 0.0070795 0.101453 -0.021277 Vertex 135 -0.0265805 0.0377426 0.0157053 Vertex 136 -0.087976 0.141871 0.0376917 Vertex 137 -0.0160134 0.0959893 0.0521651 Vertex 138 -0.0589977 0.125247 -0.00779139 Vertex 139 -0.0188175 0.159674 -0.00630165 Vertex 140 -0.0564911 0.0400264 0.0468768 Vertex 141 -0.0169683 0.186741 -0.0196674 Vertex 142 0.0593498 0.066038 0.0207029 Vertex 143 0.037704 0.0574555 -0.00668675 Vertex 144 0.00242535 0.0343652 0.00462872 Vertex 145 -0.034222 0.0422724 0.0479221 Vertex 146 -0.0367537 0.0783235 -0.0195335 Vertex 147 -0.0686919 0.0750175 -0.0147112 Vertex 148 -0.0345377 0.0353482 -0.0311793 Vertex 149 -0.0449507 0.157934 0.00683281 Vertex 150 -0.0515288 0.0559219 0.0167726 Vertex 151 -0.089438 0.113514 0.0412091 Vertex 152 -0.0570856 0.153101 -0.000954757 Vertex 153 -0.0284906 0.0932063 0.0444855 Vertex 154 -0.0654928 0.0818627 0.0433416 Vertex 155 -0.0185134 0.0473863 0.05026 Vertex 156 -0.0865431 0.106355 0.0183534 Vertex 157 -0.0772499 0.172214 -0.0459981 Vertex 158 0.004329 0.114453 -0.0192954 Vertex 159 -0.0681398 0.156014 0.0252192 Vertex 160 0.0260218 0.0493062 -0.0196675 Vertex 161 0.0233024 0.124378 0.00401489 Vertex 162 0.02054 0.116646 0.0351499 Vertex 163 0.0434163 0.0464179 0.0294988 Vertex 164 -0.077237 0.0721326 0.0266059 Vertex 165 0.0463602 0.0692197 0.00260588 Vertex 166 -0.0294591 0.0367076 -0.0187628 Vertex 167 -0.058126 0.0494622 0.00265482 Vertex 168 -0.0451547 0.0437693 -0.0122411 Vertex 169 -0.0755097 0.135846 0.0506323 Vertex 170 -0.0513643 0.132495 0.031006 Vertex 171 -0.0454912 0.0719252 0.0419203 Vertex 172 -0.0665925 0.064199 -0.00375071 Vertex 173 -0.0874441 0.0860134 0.00347726 Vertex 174 0.00569987 0.0949071 -0.0304911 Vertex 175 -0.0374161 0.12162 -0.0106267 Vertex 176 -0.0618223 0.170491 -0.0617288 Vertex 177 0.00769138 0.039029 0.0323953 Vertex 178 -0.0695902 0.113495 0.0492959 Vertex 179 -0.0688202 0.180176 -0.0531787 Vertex 180 -0.0482072 0.0335431 -0.012174 Vertex 181 -0.0148262 0.181632 -0.021586 Vertex 182 0.0503042 0.0691243 0.0253774 Vertex 183 0.0426741 0.0972641 0.0231497 Vertex 184 0.0343607 0.0505331 -0.00657713 Vertex 185 -0.00149572 0.0505531 0.0529099 Vertex 186 0.0314957 0.0386039 0.0249642 Vertex 187 -0.0620515 0.035927 0.0204607 Vertex 188 -0.0623817 0.147548 -0.00757469 Vertex 189 -0.0683794 0.0434664 0.00169373 Vertex 190 0.0606167 0.0609422 0.00915424 Vertex 191 -0.0396922 0.0460798 -0.021311 Vertex 192 0.0237088 0.0942271 0.0467477 Vertex 193 -0.0547181 0.0708998 -0.0155975 Vertex 194 0.0108694 0.130662 0.0179509 Vertex 195 -0.0536146 0.150855 0.0243962 Vertex 196 -0.047699 0.144615 0.00435323 Vertex 197 -0.0406946 0.0340162 0.0268873 Vertex 198 -0.0258761 0.0796032 0.0512286 Vertex 199 -0.0055446 0.0384588 0.0102869 Vertex 200 -0.00862356 0.0451919 -0.0286362 Vertex 201 -0.0762512 0.156264 -0.00677505 Vertex 202 -0.0328048 0.0886955 -0.0250147 Vertex 203 -0.085121 0.108927 0.00536277 Vertex 204 0.0205756 0.0550317 0.0471809 Vertex 205 -0.0412993 0.127471 0.0164976 Vertex 206 0.0187342 0.112585 -0.0153321 Vertex 207 -0.0227837 0.0742285 -0.0385317 Vertex 208 -0.0715256 0.0958228 0.0413941 Vertex 209 0.00810435 0.0348429 0.0181346 Vertex 210 -0.0870553 0.118453 0.000244653 Vertex 211 0.0361089 0.0577094 0.0344737 Vertex 212 -0.0500652 0.125773 -0.00688378 Vertex 213 -0.00841973 0.128157 0.0268439 Vertex 214 -0.0274771 0.120676 0.0274866 Vertex 215 -0.0111259 0.174182 -0.0282833 Vertex 216 0.0409317 0.0971197 -0.00479362 Vertex 217 -0.0241215 0.0944713 0.0461972 Vertex 218 -0.00947876 0.108641 0.0432746 Vertex 219 -0.0241861 0.0351713 0.0521271 Vertex 220 -0.0896787 0.135012 0.00721892 Vertex 221 -0.0555164 0.0482866 0.0387265 Vertex 222 -0.0340535 0.158097 0.00328753 Vertex 223 -0.0759299 0.126701 -0.00794305 Vertex 224 -0.0524198 0.0648658 0.0346087 Vertex 225 -0.0518518 0.0970732 -0.0222063 Vertex 226 0.0464078 0.0756596 0.0165703 Vertex 227 0.00679595 0.0352467 -0.0139815 Vertex 228 0.00924009 0.0846665 0.0556174 Vertex 229 -0.0861064 0.0806138 0.0174966 Vertex 230 -0.0675754 0.0334584 0.000400215 Vertex 231 -0.043284 0.169832 -0.00794427 Vertex 232 0.0187103 0.0342934 0.0023932 Vertex 233 -0.0709691 0.153934 -0.0469289 Vertex 234 0.0296359 0.112746 0.0324848 Vertex 235 -0.0797904 0.152563 0.0316147 Vertex 236 -0.0465092 0.0776139 0.042786 Vertex 237 -0.0155135 0.0631057 0.0533345 Vertex 238 -0.0168218 0.086916 -0.0386596 Vertex 239 -0.0401934 0.0365351 0.0429119 Vertex 240 0.0262523 0.076131 -0.0243472 Vertex 241 0.00647697 0.0459611 0.0484012 Vertex 242 -0.0216233 0.0450569 -0.0280185 Vertex 243 -0.020486 0.18455 -0.0138786 Vertex 244 -0.0627252 0.0416196 0.0257026 Vertex 245 0.0488884 0.0431235 0.0112233 Vertex 246 0.0455013 0.0583861 0.0319381 Vertex 247 -0.0351753 0.160922 -0.000113953 Vertex 248 -0.0607657 0.139716 -0.00595313 Vertex 249 -0.0760841 0.104861 0.0354581 Vertex 250 -0.0348898 0.0767003 -0.020496 Vertex 251 -0.0607324 0.0592584 0.00571875 Vertex 252 -0.0876142 0.116272 0.0465171 Vertex 253 -0.0424793 0.0958739 0.0423242 Vertex 254 -0.0672273 0.135447 0.0449702 Vertex 255 -0.0414124 0.128336 0.00169512 Vertex 256 -0.0904343 0.136488 0.021207 Face 1 5 8 1 Face 2 64 221 78 Face 3 8 11 197 Face 4 28 210 220 Face 5 11 8 5 Face 6 5 12 11 Face 7 82 102 225 Face 8 232 4 3 Face 9 232 3 144 Face 10 144 209 10 Face 11 25 10 6 Face 12 83 180 29 Face 13 1 8 7 Face 14 105 135 2 Face 15 6 10 209 Face 16 25 123 10 Face 17 57 22 88 Face 18 117 35 244 Face 19 11 109 68 Face 20 123 25 219 Face 21 98 161 194 Face 22 216 31 108 Face 23 53 43 205 Face 24 155 241 92 Face 25 166 227 105 Face 26 166 1 83 Face 27 49 34 192 Face 28 245 45 115 Face 29 36 77 62 Face 30 102 82 175 Face 31 73 106 63 Face 32 248 48 188 Face 33 52 248 93 Face 34 196 94 21 Face 35 113 203 210 Face 36 82 225 41 Face 37 256 136 80 Face 38 74 118 81 Face 39 79 24 174 Face 40 200 112 99 Face 41 107 25 6 Face 42 245 163 186 Face 43 60 39 154 Face 44 164 32 89 Face 45 214 120 205 Face 46 85 162 27 Face 47 48 28 65 Face 48 48 248 223 Face 49 22 168 88 Face 50 38 146 124 Face 51 253 236 171 Face 52 85 213 214 Face 53 143 31 129 Face 54 240 24 79 Face 55 41 96 113 Face 56 172 89 32 Face 57 20 159 63 Face 58 20 179 47 Face 59 97 75 119 Face 60 84 15 59 Face 61 140 35 117 Face 62 140 78 221 Face 63 161 36 62 Face 64 108 79 206 Face 65 19 69 231 Face 66 90 139 37 Face 67 22 38 124 Face 68 150 89 251 Face 69 78 171 64 Face 70 155 92 44 Face 71 53 81 43 Face 72 23 101 169 Face 73 193 147 103 Face 74 172 32 147 Face 75 179 104 47 Face 76 76 188 48 Face 77 118 43 81 Face 78 118 70 43 Face 79 224 171 236 Face 80 224 64 171 Face 81 232 45 107 Face 82 160 31 143 Face 83 182 142 122 Face 84 115 45 66 Face 85 80 65 28 Face 86 80 201 65 Face 87 87 48 65 Face 88 87 133 48 Face 89 25 127 219 Face 90 186 97 211 Face 91 112 50 61 Face 92 29 180 168 Face 93 110 156 72 Face 94 151 132 51 Face 95 141 69 19 Face 96 37 139 196 Face 97 63 222 149 Face 98 170 81 53 Face 99 228 54 86 Face 100 85 43 70 Face 101 128 160 143 Face 102 83 29 148 Face 103 36 158 77 Face 104 206 79 134 Face 105 7 230 1 Face 106 7 68 116 Face 107 254 121 170 Face 108 40 14 252 Face 109 234 162 114 Face 110 226 84 183 Face 111 151 74 252 Face 112 151 51 74 Face 113 238 126 56 Face 114 207 112 61 Face 115 120 62 131 Face 116 27 98 194 Face 117 23 63 159 Face 118 195 94 63 Face 119 130 150 251 Face 120 91 221 64 Face 121 47 65 201 Face 122 47 157 65 Face 123 46 165 122 Face 124 46 190 66 Face 125 126 67 56 Face 126 61 50 250 Face 127 9 68 7 Face 128 9 11 68 Face 129 52 215 37 Face 130 52 152 69 Face 131 125 153 100 Face 132 54 16 137 Face 133 163 97 186 Face 134 18 142 71 Face 135 173 96 41 Face 136 32 164 229 Face 137 19 243 141 Face 138 19 106 73 Face 139 249 74 156 Face 140 249 118 74 Face 141 34 75 183 Face 142 34 119 75 Face 143 13 76 176 Face 144 13 188 76 Face 145 212 175 82 Face 146 21 53 205 Face 147 219 109 11 Face 148 26 145 109 Face 149 31 79 108 Face 150 31 240 79 Face 151 33 80 136 Face 152 33 20 80 Face 153 121 81 170 Face 154 178 74 81 Face 155 113 82 41 Face 156 113 138 82 Face 157 17 83 111 Face 158 227 166 83 Face 159 129 84 226 Face 160 129 31 84 Face 161 16 114 137 Face 162 192 234 114 Face 163 211 127 25 Face 164 49 228 86 Face 165 42 233 65 Face 166 42 133 233 Face 167 1 180 83 Face 168 1 230 180 Face 169 39 89 150 Face 170 39 164 89 Face 171 243 149 181 Face 172 73 63 149 Face 173 130 91 150 Face 174 130 57 187 Face 175 54 237 86 Face 176 125 44 92 Face 177 20 93 179 Face 178 20 63 106 Face 179 53 94 170 Face 180 53 21 94 Face 181 37 95 90 Face 182 37 215 95 Face 183 72 203 173 Face 184 72 156 203 Face 185 246 97 163 Face 186 182 122 97 Face 187 59 98 234 Face 188 59 161 98 Face 189 238 207 126 Face 190 24 55 99 Face 191 44 100 78 Face 192 44 125 100 Face 193 159 101 23 Face 194 235 136 101 Face 195 174 134 79 Face 196 56 67 134 Face 197 202 225 102 Face 198 146 193 103 Face 199 42 176 133 Face 200 157 47 104 Face 201 12 199 177 Face 202 12 135 199 Face 203 93 152 52 Face 204 93 20 152 Face 205 4 107 6 Face 206 4 232 107 Face 207 15 108 206 Face 208 15 216 108 Face 209 78 239 44 Face 210 78 140 239 Face 211 60 110 229 Face 212 60 208 110 Face 213 55 200 99 Face 214 160 128 111 Face 215 29 242 148 Face 216 29 191 242 Face 217 28 113 210 Face 218 28 48 223 Face 219 218 114 162 Face 220 218 70 114 Face 221 18 190 142 Face 222 18 245 115 Face 223 57 116 187 Face 224 57 88 230 Face 225 116 117 187 Face 226 116 68 117 Face 227 208 118 249 Face 228 30 253 118 Face 229 49 119 34 Face 230 49 204 119 Face 231 213 120 214 Face 232 213 194 120 Face 233 58 121 40 Face 234 252 74 178 Face 235 226 122 165 Face 236 226 97 122 Face 237 11 123 219 Face 238 50 124 250 Face 239 191 29 168 Face 240 54 198 237 Face 241 54 137 198 Face 242 61 126 207 Face 243 61 202 126 Face 244 86 204 49 Face 245 86 237 185 Face 246 227 232 144 Face 247 17 111 128 Face 248 66 165 46 Face 249 66 184 165 Face 250 167 130 251 Face 251 189 57 130 Face 252 77 131 62 Face 253 175 255 131 Face 254 80 220 256 Face 255 80 28 220 Face 256 76 133 176 Face 257 76 48 133 Face 258 158 134 67 Face 259 158 206 134 Face 260 5 135 12 Face 261 40 136 14 Face 262 40 101 136 Face 263 70 217 114 Face 264 153 125 217 Face 265 21 248 52 Face 266 212 82 138 Face 267 94 222 63 Face 268 94 196 222 Face 269 68 140 117 Face 270 68 239 140 Face 271 95 181 90 Face 272 95 69 141 Face 273 46 142 190 Face 274 46 122 142 Face 275 45 184 66 Face 276 45 128 184 Face 277 105 199 135 Face 278 105 227 144 Face 279 44 145 155 Face 280 44 239 145 Face 281 202 146 225 Face 282 202 61 250 Face 283 41 147 173 Face 284 41 103 147 Face 285 111 148 242 Face 286 111 83 148 Face 287 90 247 222 Face 288 90 181 247 Face 289 64 150 91 Face 290 64 224 150 Face 291 14 151 252 Face 292 14 132 151 Face 293 106 152 20 Face 294 106 19 231 Face 295 70 153 217 Face 296 70 118 253 Face 297 30 236 253 Face 298 208 60 154 Face 299 26 155 145 Face 300 219 127 155 Face 301 51 156 74 Face 302 51 203 156 Face 303 42 157 104 Face 304 42 65 157 Face 305 102 158 67 Face 306 102 77 158 Face 307 33 159 20 Face 308 235 101 159 Face 309 55 160 200 Face 310 240 31 160 Face 311 15 161 59 Face 312 15 36 161 Face 313 98 162 234 Face 314 98 27 162 Face 315 18 163 245 Face 316 18 71 163 Face 317 60 164 39 Face 318 60 229 164 Face 319 129 165 143 Face 320 129 226 165 Face 321 2 166 105 Face 322 2 1 166 Face 323 22 189 38 Face 324 22 57 189 Face 325 124 168 22 Face 326 124 191 168 Face 327 40 169 101 Face 328 40 121 169 Face 329 195 170 94 Face 330 195 254 170 Face 331 100 171 78 Face 332 100 153 171 Face 333 193 172 147 Face 334 193 167 251 Face 335 32 173 147 Face 336 32 229 173 Face 337 56 174 238 Face 338 56 134 174 Face 339 77 175 131 Face 340 77 102 175 Face 341 104 176 42 Face 342 104 13 176 Face 343 10 177 199 Face 344 121 178 81 Face 345 121 58 178 Face 346 13 179 93 Face 347 13 104 179 Face 348 88 180 230 Face 349 88 168 180 Face 350 141 181 95 Face 351 141 243 181 Face 352 71 246 163 Face 353 71 142 182 Face 354 59 183 84 Face 355 59 234 183 Face 356 143 184 128 Face 357 143 165 184 Face 358 241 185 92 Face 359 204 86 185 Face 360 25 186 211 Face 361 25 107 186 Face 362 244 187 117 Face 363 91 130 187 Face 364 93 188 13 Face 365 93 248 188 Face 366 167 189 130 Face 367 167 38 189 Face 368 115 190 18 Face 369 115 66 190 Face 370 50 191 124 Face 371 50 242 191 Face 372 16 192 114 Face 373 228 49 192 Face 374 38 193 146 Face 375 38 167 193 Face 376 62 194 161 Face 377 62 120 194 Face 378 23 195 63 Face 379 23 254 195 Face 380 52 196 21 Face 381 52 37 196 Face 382 9 197 11 Face 383 125 198 217 Face 384 125 237 198 Face 385 144 199 105 Face 386 144 10 199 Face 387 111 200 160 Face 388 111 242 200 Face 389 20 201 80 Face 390 20 47 201 Face 391 67 202 102 Face 392 67 126 202 Face 393 96 203 113 Face 394 96 173 203 Face 395 241 204 185 Face 396 241 211 204 Face 397 131 205 120 Face 398 131 255 205 Face 399 36 206 158 Face 400 36 15 206 Face 401 99 207 24 Face 402 99 112 207 Face 403 30 208 154 Face 404 30 118 208 Face 405 3 209 144 Face 406 51 210 203 Face 407 51 132 210 Face 408 119 211 97 Face 409 119 204 211 Face 410 21 212 138 Face 411 21 205 212 Face 412 27 213 85 Face 413 27 194 213 Face 414 43 214 205 Face 415 43 85 214 Face 416 69 215 52 Face 417 69 95 215 Face 418 84 216 15 Face 419 84 31 216 Face 420 137 217 198 Face 421 137 114 217 Face 422 85 218 162 Face 423 85 70 218 Face 424 26 219 155 Face 425 26 109 219 Face 426 132 220 210 Face 427 132 256 220 Face 428 35 221 244 Face 429 35 140 221 Face 430 139 222 196 Face 431 139 90 222 Face 432 113 223 138 Face 433 113 28 223 Face 434 39 224 154 Face 435 39 150 224 Face 436 103 225 146 Face 437 103 41 225 Face 438 75 226 183 Face 439 75 97 226 Face 440 17 227 83 Face 441 17 232 227 Face 442 16 228 192 Face 443 16 54 228 Face 444 72 229 110 Face 445 72 173 229 Face 446 116 230 7 Face 447 116 57 230 Face 448 152 231 69 Face 449 152 106 231 Face 450 128 232 17 Face 451 128 45 232 Face 452 87 233 133 Face 453 87 65 233 Face 454 34 234 192 Face 455 34 183 234 Face 456 33 235 159 Face 457 33 136 235 Face 458 154 236 30 Face 459 154 224 236 Face 460 92 237 125 Face 461 92 185 237 Face 462 24 238 174 Face 463 24 207 238 Face 464 109 239 68 Face 465 109 145 239 Face 466 55 240 160 Face 467 55 24 240 Face 468 127 241 155 Face 469 127 211 241 Face 470 112 242 50 Face 471 112 200 242 Face 472 73 243 19 Face 473 73 149 243 Face 474 91 244 221 Face 475 91 187 244 Face 476 107 245 186 Face 477 107 45 245 Face 478 182 246 71 Face 479 182 97 246 Face 480 149 247 181 Face 481 149 222 247 Face 482 138 248 21 Face 483 138 223 248 Face 484 110 249 156 Face 485 110 208 249 Face 486 146 250 124 Face 487 146 202 250 Face 488 172 251 89 Face 489 172 193 251 Face 490 58 252 178 Face 491 58 40 252 Face 492 153 253 171 Face 493 153 70 253 Face 494 169 254 23 Face 495 169 121 254 Face 496 212 255 175 Face 497 212 205 255 Face 498 14 256 132 Face 499 14 136 256 ================================================ FILE: models/cessna500.m ================================================ Vertex 1 -11.2429 -3.34616 -7.6444 Vertex 2 -11.4049 -3.2215 -7.5698 Vertex 3 -11.348 -3.47795 -7.71857 Vertex 4 -11.3587 -5.03145 -4.69954 Vertex 5 -11.2317 -3.07954 -7.70508 Vertex 6 -11.3373 0.265308 -7.80791 Vertex 7 -11.3929 -3.07629 -7.97425 Vertex 8 -11.3996 -3.07894 -7.7704 Vertex 9 -11.2704 -3.41977 -7.92181 Vertex 10 -11.4072 -4.92862 -10.2727 Vertex 11 -11.2997 -3.27368 -8.00828 Vertex 12 -11.2567 -4.67238 5.63925 Vertex 13 -11.3409 -5.00291 4.74338 Vertex 14 -11.4337 -4.30584 5.54256 Vertex 15 -11.3279 -3.48714 7.18154 Vertex 16 -11.3632 -4.15839 6.44287 Vertex 17 -11.2607 -0.885498 7.81201 Vertex 18 -11.4144 -0.465431 8.01354 Vertex 19 -11.3156 0.05431 7.75596 Vertex 20 -11.2389 -4.73976 10.5342 Vertex 21 -11.4135 -4.96246 10.3438 Vertex 22 -11.3323 -4.45603 10.2159 Vertex 23 -11.3419 -3.37287 7.94242 Vertex 24 -2.56373 -5.02805 0.899863 Vertex 25 -0.157729 -4.91732 0.928425 Vertex 26 -0.164229 -5.02968 -0.893371 Vertex 27 -1.78791 -4.30222 -2.48474 Vertex 28 -11.3489 -3.70489 -7.79146 Vertex 29 -11.1305 -3.10882 -8.33526 Vertex 30 -11.386 -3.33254 -8.33538 Vertex 31 -11.7354 -2.84954 -8.0453 Vertex 32 -11.3586 -3.0958 -7.34579 Vertex 33 -10.109 -2.85502 -6.56999 Vertex 34 -10.1863 -4.21425 -6.62607 Vertex 35 1.89827 -4.05522 -9.14679 Vertex 36 -10.1031 -2.86381 -8.96068 Vertex 37 -10.1781 -4.21366 6.59512 Vertex 38 -10.1241 -2.90343 6.4078 Vertex 39 -0.829151 -3.70095 8.63871 Vertex 40 -10.0932 -2.74701 8.6081 Vertex 41 -11.0998 -3.74205 7.82856 Vertex 42 -12.5183 -3.25372 7.79196 Vertex 43 -11.1762 -2.92501 8.20368 Vertex 44 -11.142 -2.91983 7.40455 Vertex 45 -11.2977 -3.50282 7.37258 Vertex 46 -11.4076 -3.08184 7.84094 Vertex 47 -11.4254 -3.35667 -7.95766 Vertex 48 18.9516 -2.31453 0.522404 Vertex 49 -0.155335 -0.216196 0.0961053 Vertex 50 -0.347151 -4.50954 -6.42412 Vertex 51 -2.70998 -3.38206 -22.1529 Vertex 52 -3.18481 -4.11531 13.3012 Vertex 53 18.927 -2.3574 -0.108172 Vertex 54 -7.39831 -4.63184 2.15221 Vertex 55 7.41935 -3.84473 2.10658 Vertex 56 -12.5087 -2.54419 -2.42289 Vertex 57 12.533 -2.58462 -1.47224 Vertex 58 -7.23466 -4.18859 10.2562 Vertex 59 -4.91658 -3.35218 16.1792 Vertex 60 -0.680317 -4.14481 -10.2505 Vertex 61 -0.681453 -4.29603 -10.2509 Vertex 62 -7.31656 -4.10195 -10.2588 Vertex 63 12.5618 0.515457 0.244445 Vertex 64 21.6703 5.09033 -0.0944992 Vertex 65 15.7337 -1.06548 -0.182942 Vertex 66 5.98 -0.733647 -1.35195 Vertex 67 1.24305 -1.63884 2.40269 Vertex 68 -13.4191 -5.16651 0.672846 Vertex 69 -6.72557 -3.83223 10.2578 Vertex 70 -6.20573 -3.42215 22.1539 Vertex 71 13.0416 -2.34073 1.44625 Vertex 72 13.9185 -2.42451 8.54118 Vertex 73 16.7063 -2.50268 8.61671 Vertex 74 -6.70658 -3.74122 -10.252 Vertex 75 1.88454 -4.18869 6.60922 Vertex 76 1.87813 -4.30066 9.09842 Vertex 77 -7.31276 -4.6197 -2.6485 Vertex 78 17.622 4.05037 0.240187 Vertex 79 18.192 5.03987 -0.198878 Vertex 80 12.6226 -2.68184 -1.46117 Vertex 81 13.9495 -2.37125 -7.00607 Vertex 82 13.3137 -2.58751 8.61806 Vertex 83 1.87295 -4.22788 -6.53973 Vertex 84 1.87204 -4.61032 -9.10595 Vertex 85 -0.326997 -4.38949 6.4326 Vertex 86 -0.343544 -4.54461 6.43121 Vertex 87 17.9382 -2.49078 -0.846229 Vertex 88 -6.32957 -3.37292 -22.1607 Vertex 89 13.9184 -2.42149 7.0258 Vertex 90 17.9342 -2.5033 0.870213 Vertex 91 -7.36194 -4.33265 6.42929 Vertex 92 16.7232 -2.53142 -8.593 Vertex 93 13.261 -2.62506 -8.51971 Vertex 94 -2.61083 -4.10085 -6.43229 Vertex 95 14.4305 0.0924068 0.244909 Vertex 96 11.6542 -0.258267 0.195894 Vertex 97 12.7237 0.285452 -0.223774 Vertex 98 -7.03889 -4.71171 2.66272 Vertex 99 -0.157895 -4.65733 -2.29819 Vertex 100 -5.9328 -4.05909 2.54482 Vertex 101 -2.59553 -4.29708 2.44597 Vertex 102 -18.8386 -2.73165 -0.640777 Vertex 103 -7.90715 -0.426592 -1.40047 Vertex 104 -11.8881 -2.38622 2.30811 Vertex 105 14.1638 -2.37695 7.01053 Vertex 106 13.318 -2.54942 -8.59581 Vertex 107 21.6746 5.09423 0.166146 Vertex 108 13.9039 -2.45869 -8.51982 Vertex 109 17.9373 -2.577 -0.860383 Vertex 110 16.7483 4.12514 -0.218186 Vertex 111 12.6206 -2.68089 1.48057 Vertex 112 11.6505 -0.246442 -0.173479 Vertex 113 7.44839 -0.824882 1.3836 Vertex 114 10.8002 -2.73151 1.6626 Vertex 115 18.9667 -2.81345 0.028035 Vertex 116 14.2278 -2.4148 -8.5175 Vertex 117 -2.74513 -3.29139 22.1529 Vertex 118 -2.20946 -3.5291 19.1112 Vertex 119 -1.18565 -4.0002 13.303 Vertex 120 19.5014 4.01321 -0.227995 Vertex 121 -0.97767 -1.60334 -2.55209 Vertex 122 -4.52032 -0.180064 0.0999518 Vertex 123 -5.70519 -0.113574 -0.0803541 Vertex 124 -1.80493 -0.488807 -1.5941 Vertex 125 4.33029 -1.56825 -2.16363 Vertex 126 5.91939 -0.815866 -1.3384 Vertex 127 4.32513 -0.724012 -1.38619 Vertex 128 5.38612 -1.6617 -2.08027 Vertex 129 5.34176 -1.66417 -2.01575 Vertex 130 -5.93758 -1.8574 -2.52584 Vertex 131 -8.28549 -2.00594 -2.22972 Vertex 132 19.5093 4.02176 0.290085 Vertex 133 -10.9267 -2.98422 -8.73647 Vertex 134 -10.9992 -3.74193 -7.85734 Vertex 135 -10.8725 -2.98623 -8.15301 Vertex 136 9.01751 -0.830129 0.199173 Vertex 137 18.9841 4.03192 0.191109 Vertex 138 15.7159 -1.05377 0.243501 Vertex 139 -10.8341 -3.57906 7.51761 Vertex 140 -5.75294 -1.70342 2.46916 Vertex 141 -2.55951 -0.481386 1.56852 Vertex 142 -4.53111 -0.461747 1.57312 Vertex 143 -10.8977 -3.62409 8.11986 Vertex 144 -10.9888 -2.88766 7.52823 Vertex 145 18.2931 5.02525 0.231181 Vertex 146 -0.797783 -3.65046 -6.91484 Vertex 147 -0.727876 -3.76185 -8.67229 Vertex 148 -0.221925 -3.87452 -6.96214 Vertex 149 -3.53483 -1.66275 -2.56435 Vertex 150 -4.51184 -0.474176 -1.57239 Vertex 151 -2.5496 -0.518823 -1.57355 Vertex 152 17.9364 -2.5965 0.875425 Vertex 153 18.1362 4.06445 -0.213771 Vertex 154 -0.500571 -3.80422 6.98172 Vertex 155 1.89831 -4.04665 9.17964 Vertex 156 -0.107641 -3.90075 8.60855 Vertex 157 -10.1703 -3.91777 9.19468 Vertex 158 -2.87451 -3.68042 13.2994 Vertex 159 -15.7825 -3.7188 1.9209 Vertex 160 -10.1796 -4.00965 -9.18925 Vertex 161 -6.66847 -3.28092 -22.1023 Vertex 162 4.31389 -0.651154 1.41559 Vertex 163 -3.53113 -1.61347 2.55292 Vertex 164 0.433884 -0.582514 1.54366 Vertex 165 -7.25432 -4.41878 2.63562 Vertex 166 4.29944 -0.637923 -1.39304 Vertex 167 4.29738 -1.64236 -2.23572 Vertex 168 2.0649 -0.647234 -1.44438 Vertex 169 0.436211 -0.587284 -1.53176 Vertex 170 2.06066 -1.60696 -2.16935 Vertex 171 0.43847 -1.56637 -2.31813 Vertex 172 -0.161153 -0.595432 -1.55352 Vertex 173 -0.155476 -4.6494 2.29512 Vertex 174 -7.5843 -0.482669 1.44317 Vertex 175 17.6236 4.04994 -0.197454 Vertex 176 4.78088 -1.69215 2.19724 Vertex 177 2.06253 -0.645579 1.45547 Vertex 178 5.92868 -0.800311 1.32182 Vertex 179 -2.30035 -4.12298 6.43014 Vertex 180 -5.22995 -4.1043 -2.48562 Vertex 181 -2.34961 -4.32589 -2.44089 Vertex 182 -10.4597 -1.50028 0.0107484 Vertex 183 6.01935 -4.9906 0.538016 Vertex 184 -12.7776 -4.72668 -1.92254 Vertex 185 -2.2113 -3.63405 19.1134 Vertex 186 17.9329 -2.14106 0.233672 Vertex 187 -6.34083 -3.04867 22.1537 Vertex 188 -18.594 -3.59686 -0.850123 Vertex 189 -1.80655 -0.513929 1.59308 Vertex 190 -0.0442178 -1.05337 2.05687 Vertex 191 -1.80483 -1.52721 2.38196 Vertex 192 -10.9788 -2.96562 -7.40955 Vertex 193 6.62733 -4.39231 -1.88787 Vertex 194 -10.7185 -3.23019 8.88245 Vertex 195 -6.66258 -4.22551 -2.65608 Vertex 196 0.113585 -4.72375 7.03528 Vertex 197 -10.9794 -3.53973 -6.91143 Vertex 198 -10.7174 -3.25631 -6.7385 Vertex 199 -10.7323 -3.27169 -7.28108 Vertex 200 0.120021 -4.64414 -7.0153 Vertex 201 12.5309 -2.58367 1.49134 Vertex 202 5.85763 -0.436522 -0.174432 Vertex 203 -7.42621 -4.5569 -2.14161 Vertex 204 -6.56681 -0.361699 -1.54156 Vertex 205 -1.38067 -0.219921 0.0537108 Vertex 206 -4.52018 -0.180127 -0.0995772 Vertex 207 -6.69859 -3.26684 22.1023 Vertex 208 -10.8643 -3.45108 -8.91629 Vertex 209 -4.73055 -3.71208 -6.01487 Vertex 210 18.9719 4.02605 -0.161307 Vertex 211 -10.9657 -3.4203 6.72008 Vertex 212 -10.9469 -3.06758 7.39378 Vertex 213 -10.7604 -3.51892 -8.13956 Vertex 214 -10.6956 -3.39843 -6.73132 Vertex 215 -10.9269 -3.03472 -6.74505 Vertex 216 -10.9668 -3.43513 -6.70503 Vertex 217 -10.086 -2.6029 -7.04492 Vertex 218 1.88239 -4.21696 -9.43036 Vertex 219 -10.7647 -3.41076 8.89897 Vertex 220 -10.7081 -3.32619 8.2115 Vertex 221 -10.7824 -3.32873 8.24463 Vertex 222 -10.7836 -3.34609 8.24264 Vertex 223 -10.7301 -3.36097 6.73802 Vertex 224 -10.7259 -3.29055 7.39937 Vertex 225 -10.7061 -3.23231 6.74842 Vertex 226 -10.7993 -3.04093 8.0836 Vertex 227 -2.67724 -4.56771 6.42878 Vertex 228 -2.17541 -4.33423 2.41826 Vertex 229 -10.1199 -3.08132 9.15233 Vertex 230 -18.6137 -4.13116 0.260052 Vertex 231 -11.1057 -3.00842 -7.31792 Vertex 232 -11.2548 -3.78379 -7.73023 Vertex 233 13.0489 -2.36527 -1.4537 Vertex 234 1.88226 -4.26161 6.37999 Vertex 235 -7.34806 -4.34749 -6.42995 Vertex 236 -6.60953 -4.32779 -10.2621 Vertex 237 -10.7778 -3.57402 -7.45905 Vertex 238 -3.58889 -3.34245 19.1058 Vertex 239 -3.41283 -3.34426 -19.1126 Vertex 240 -3.17376 -3.66956 -13.2955 Vertex 241 -3.73098 -3.31078 -19.1087 Vertex 242 -8.7713 -1.98459 2.02962 Vertex 243 0.108643 -4.78798 8.63168 Vertex 244 -10.6705 -3.12961 -8.85484 Vertex 245 18.9466 -2.34038 -0.501887 Vertex 246 -18.6536 -2.75862 0.874513 Vertex 247 -6.30475 -3.09574 -22.1006 Vertex 248 16.7613 4.11029 0.247038 Vertex 249 -10.7726 -3.07436 8.76595 Vertex 250 -10.6979 -3.2099 -8.1977 Vertex 251 -7.88719 -2.79595 6.52165 Vertex 252 -10.6437 -2.93944 -7.44027 Vertex 253 -3.44249 0.509074 -0.00321054 Vertex 254 -3.82656 0.497653 -0.0328462 Vertex 255 -3.8266 0.497674 0.0318818 Vertex 256 -11.2992 -3.61146 8.18574 Vertex 257 -10.7101 -3.33316 -8.87937 Vertex 258 -10.1897 -4.33301 7.82632 Vertex 259 -0.246129 -3.86686 -8.62854 Vertex 260 -0.132844 -4.65091 -2.49338 Vertex 261 -3.74921 -3.63669 19.1115 Vertex 262 -8.76556 -1.96748 -2.06073 Vertex 263 -8.26894 -2.00362 2.27298 Vertex 264 -0.157205 -0.257352 -0.101252 Vertex 265 -10.9386 -3.10207 8.91951 Vertex 266 -7.27698 -4.44622 2.40803 Vertex 267 -5.56821 -4.57212 -8.98866 Vertex 268 -11.3521 -4.84434 -10.6985 Vertex 269 18.7598 5.13164 0.0765112 Vertex 270 -0.106297 -4.62612 2.24659 Vertex 271 1.8883 -4.17104 9.36989 Vertex 272 -10.685 -3.02375 7.42784 Face 1 2 3 4 Face 2 18 17 19 Face 3 251 40 39 Face 4 14 16 15 Face 5 7 6 5 Face 6 6 7 8 Face 7 12 14 15 Face 8 234 37 38 Face 9 13 12 16 Face 10 42 45 256 Face 11 19 46 18 Face 12 8 5 6 Face 13 21 20 22 Face 14 37 211 38 Face 15 9 47 10 Face 16 217 35 36 Face 17 8 7 5 Face 18 29 30 31 Face 19 23 22 20 Face 20 229 271 155 Face 21 26 25 24 Face 22 13 14 12 Face 23 10 47 11 Face 24 28 30 29 Face 25 28 32 31 Face 26 1 2 4 Face 27 14 13 16 Face 28 28 31 30 Face 29 42 44 45 Face 30 4 3 1 Face 31 28 231 32 Face 32 23 21 22 Face 33 43 42 256 Face 34 32 231 31 Face 35 91 58 69 Face 36 12 15 16 Face 37 33 36 133 Face 38 68 26 24 Face 39 41 44 43 Face 40 9 11 47 Face 41 34 209 33 Face 42 26 193 183 Face 43 41 45 44 Face 44 42 43 44 Face 45 46 17 18 Face 46 21 23 20 Face 47 19 17 46 Face 48 1 3 2 Face 49 268 11 9 Face 50 267 160 218 Face 51 260 193 99 Face 52 66 202 245 Face 53 113 178 176 Face 54 113 48 136 Face 55 26 99 193 Face 56 236 51 61 Face 57 247 88 161 Face 58 60 61 51 Face 59 119 52 86 Face 60 59 165 69 Face 61 186 138 136 Face 62 193 260 109 Face 63 67 100 55 Face 64 184 26 68 Face 65 173 55 100 Face 66 183 115 55 Face 67 233 66 245 Face 68 203 26 184 Face 69 260 80 109 Face 70 27 56 130 Face 71 98 58 91 Face 72 24 52 58 Face 73 85 119 86 Face 74 101 100 59 Face 75 195 74 62 Face 76 27 50 60 Face 77 50 61 60 Face 78 50 236 61 Face 79 26 236 50 Face 80 26 77 236 Face 81 132 137 186 Face 82 97 112 63 Face 83 53 107 186 Face 84 248 63 78 Face 85 53 65 120 Face 86 53 202 65 Face 87 262 204 131 Face 88 141 49 205 Face 89 103 174 123 Face 90 188 230 102 Face 91 54 68 24 Face 92 266 104 159 Face 93 117 187 70 Face 94 117 59 187 Face 95 58 70 207 Face 96 58 52 70 Face 97 55 113 176 Face 98 72 105 89 Face 99 82 72 71 Face 100 82 73 72 Face 101 152 73 82 Face 102 152 90 73 Face 103 94 74 180 Face 104 241 51 247 Face 105 154 75 251 Face 106 155 76 75 Face 107 157 271 229 Face 108 37 234 196 Face 109 27 203 184 Face 110 180 74 195 Face 111 107 132 186 Face 112 64 79 269 Face 113 65 210 120 Face 114 97 63 110 Face 115 57 80 260 Face 116 92 109 80 Face 117 57 106 93 Face 118 87 109 92 Face 119 111 82 201 Face 120 111 152 82 Face 121 35 83 84 Face 122 35 217 147 Face 123 200 84 83 Face 124 34 160 267 Face 125 25 85 86 Face 126 101 158 179 Face 127 24 227 52 Face 128 24 25 86 Face 129 233 87 81 Face 130 233 245 87 Face 131 51 88 247 Face 132 51 236 88 Face 133 71 89 105 Face 134 71 72 89 Face 135 71 90 48 Face 136 71 73 90 Face 137 165 91 69 Face 138 165 98 91 Face 139 106 92 93 Face 140 81 87 92 Face 141 80 93 92 Face 142 80 57 93 Face 143 60 94 27 Face 144 240 74 94 Face 145 63 95 78 Face 146 63 112 96 Face 147 95 96 136 Face 148 95 63 96 Face 149 65 97 210 Face 150 65 112 97 Face 151 24 98 54 Face 152 24 58 98 Face 153 50 99 26 Face 154 50 27 99 Face 155 266 100 104 Face 156 165 59 100 Face 157 173 228 179 Face 158 173 100 228 Face 159 104 246 159 Face 160 104 182 246 Face 161 56 262 131 Face 162 56 102 182 Face 163 140 104 100 Face 164 174 182 242 Face 165 73 105 72 Face 166 73 71 105 Face 167 81 106 233 Face 168 81 108 106 Face 169 64 107 53 Face 170 64 269 107 Face 171 116 108 81 Face 172 116 106 108 Face 173 245 109 87 Face 174 245 115 109 Face 175 79 110 145 Face 176 175 97 110 Face 177 114 111 201 Face 178 114 152 111 Face 179 202 112 65 Face 180 264 96 112 Face 181 71 113 114 Face 182 71 48 113 Face 183 55 114 113 Face 184 55 115 114 Face 185 48 115 53 Face 186 152 114 115 Face 187 92 116 81 Face 188 92 106 116 Face 189 185 117 70 Face 190 118 238 117 Face 191 185 118 117 Face 192 185 119 118 Face 193 158 119 85 Face 194 158 118 119 Face 195 64 120 79 Face 196 64 53 120 Face 197 57 167 128 Face 198 57 260 167 Face 199 124 205 264 Face 200 123 141 122 Face 201 124 123 206 Face 202 124 150 123 Face 203 66 166 202 Face 204 125 167 166 Face 205 126 127 166 Face 206 66 233 128 Face 207 66 126 166 Face 208 66 128 126 Face 209 125 127 126 Face 210 125 166 127 Face 211 125 128 167 Face 212 129 126 128 Face 213 125 129 128 Face 214 125 126 129 Face 215 149 130 204 Face 216 121 27 130 Face 217 130 131 204 Face 218 130 56 131 Face 219 145 132 107 Face 220 78 137 132 Face 221 134 133 36 Face 222 135 33 133 Face 223 34 134 160 Face 224 34 33 216 Face 225 134 213 208 Face 226 134 34 197 Face 227 49 136 96 Face 228 49 141 162 Face 229 138 137 78 Face 230 138 186 137 Face 231 95 138 78 Face 232 95 136 138 Face 233 229 265 157 Face 234 40 38 144 Face 235 163 140 100 Face 236 142 123 174 Face 237 142 141 123 Face 238 164 177 141 Face 239 163 142 140 Face 240 163 141 142 Face 241 144 249 40 Face 242 139 37 143 Face 243 211 144 38 Face 244 212 143 144 Face 245 78 145 248 Face 246 78 132 145 Face 247 209 146 217 Face 248 83 35 148 Face 249 146 147 217 Face 250 259 35 147 Face 251 146 148 147 Face 252 146 83 148 Face 253 121 149 124 Face 254 121 130 149 Face 255 151 150 124 Face 256 149 204 150 Face 257 149 151 124 Face 258 149 150 151 Face 259 48 152 115 Face 260 48 90 152 Face 261 175 153 97 Face 262 79 120 153 Face 263 39 154 251 Face 264 156 75 154 Face 265 156 155 75 Face 266 39 40 155 Face 267 39 156 154 Face 268 39 155 156 Face 269 37 258 143 Face 270 37 196 258 Face 271 238 158 101 Face 272 238 118 158 Face 273 230 159 246 Face 274 68 266 159 Face 275 36 160 134 Face 276 36 218 160 Face 277 62 161 88 Face 278 62 74 161 Face 279 136 178 113 Face 280 136 49 162 Face 281 191 163 100 Face 282 189 141 163 Face 283 189 164 141 Face 284 67 177 164 Face 285 54 165 100 Face 286 54 98 165 Face 287 124 168 169 Face 288 124 202 166 Face 289 121 167 260 Face 290 170 166 167 Face 291 166 168 124 Face 292 166 170 168 Face 293 171 169 168 Face 294 172 124 169 Face 295 171 170 167 Face 296 171 168 170 Face 297 121 171 167 Face 298 121 169 171 Face 299 121 172 169 Face 300 121 124 172 Face 301 25 173 85 Face 302 270 55 173 Face 303 140 174 263 Face 304 140 142 174 Face 305 79 175 110 Face 306 79 153 175 Face 307 67 176 177 Face 308 67 55 176 Face 309 162 177 176 Face 310 162 141 177 Face 311 162 178 136 Face 312 162 176 178 Face 313 85 179 158 Face 314 85 173 179 Face 315 27 180 203 Face 316 181 94 180 Face 317 27 181 180 Face 318 27 94 181 Face 319 103 182 174 Face 320 262 56 182 Face 321 25 270 173 Face 322 25 26 183 Face 323 56 188 102 Face 324 56 27 184 Face 325 52 261 70 Face 326 52 119 261 Face 327 48 186 136 Face 328 48 53 186 Face 329 69 187 59 Face 330 69 58 207 Face 331 184 188 56 Face 332 184 230 188 Face 333 67 190 100 Face 334 67 164 190 Face 335 189 190 164 Face 336 191 100 190 Face 337 189 191 190 Face 338 189 163 191 Face 339 135 215 33 Face 340 135 237 192 Face 341 115 193 109 Face 342 115 183 193 Face 343 220 194 226 Face 344 265 40 249 Face 345 77 235 62 Face 346 77 180 195 Face 347 76 196 234 Face 348 243 258 196 Face 349 216 197 34 Face 350 214 237 197 Face 351 192 198 197 Face 352 199 237 214 Face 353 192 252 198 Face 354 192 237 199 Face 355 34 200 209 Face 356 34 84 200 Face 357 71 201 82 Face 358 71 114 201 Face 359 264 202 124 Face 360 264 112 202 Face 361 77 203 180 Face 362 77 26 203 Face 363 123 204 103 Face 364 123 150 204 Face 365 206 205 124 Face 366 122 141 205 Face 367 253 206 123 Face 368 122 205 206 Face 369 187 207 70 Face 370 187 69 207 Face 371 133 208 244 Face 372 133 134 208 Face 373 83 209 200 Face 374 83 146 209 Face 375 153 210 97 Face 376 153 120 210 Face 377 139 211 37 Face 378 212 144 211 Face 379 139 224 223 Face 380 139 143 212 Face 381 135 213 134 Face 382 250 257 213 Face 383 198 214 197 Face 384 198 199 214 Face 385 192 215 135 Face 386 216 33 215 Face 387 192 216 215 Face 388 192 197 216 Face 389 33 217 36 Face 390 33 209 217 Face 391 35 218 36 Face 392 35 84 218 Face 393 221 222 194 Face 394 143 157 219 Face 395 143 220 226 Face 396 143 219 220 Face 397 220 221 194 Face 398 220 222 221 Face 399 219 222 220 Face 400 219 194 222 Face 401 211 223 225 Face 402 211 139 223 Face 403 212 224 139 Face 404 225 223 224 Face 405 272 225 224 Face 406 212 211 225 Face 407 144 226 249 Face 408 144 143 226 Face 409 86 227 24 Face 410 86 52 227 Face 411 101 228 100 Face 412 101 179 228 Face 413 40 229 155 Face 414 40 265 229 Face 415 68 230 184 Face 416 68 159 230 Face 417 29 232 28 Face 418 29 31 231 Face 419 231 232 29 Face 420 231 28 232 Face 421 57 233 106 Face 422 57 128 233 Face 423 75 234 251 Face 424 75 76 234 Face 425 195 235 77 Face 426 195 62 235 Face 427 62 236 77 Face 428 62 88 236 Face 429 134 237 135 Face 430 134 197 237 Face 431 59 238 101 Face 432 59 117 238 Face 433 60 239 94 Face 434 60 51 239 Face 435 239 240 94 Face 436 241 74 240 Face 437 239 241 240 Face 438 239 51 241 Face 439 104 242 182 Face 440 104 140 263 Face 441 76 243 196 Face 442 271 157 243 Face 443 250 244 257 Face 444 135 133 244 Face 445 53 245 202 Face 446 53 115 245 Face 447 102 246 182 Face 448 102 230 246 Face 449 74 247 161 Face 450 74 241 247 Face 451 110 248 145 Face 452 110 63 248 Face 453 194 249 226 Face 454 194 219 249 Face 455 135 250 213 Face 456 135 244 250 Face 457 38 251 234 Face 458 38 40 251 Face 459 199 252 192 Face 460 199 198 252 Face 461 255 254 123 Face 462 122 206 253 Face 463 253 254 255 Face 464 253 123 254 Face 465 122 255 123 Face 466 122 253 255 Face 467 41 256 45 Face 468 41 43 256 Face 469 208 257 244 Face 470 208 213 257 Face 471 157 258 243 Face 472 157 143 258 Face 473 148 259 147 Face 474 148 35 259 Face 475 27 260 99 Face 476 27 121 260 Face 477 185 261 119 Face 478 185 70 261 Face 479 103 262 182 Face 480 103 204 262 Face 481 242 263 174 Face 482 242 104 263 Face 483 49 264 205 Face 484 49 96 264 Face 485 219 265 249 Face 486 219 157 265 Face 487 54 266 68 Face 488 54 100 266 Face 489 84 267 218 Face 490 84 34 267 Face 491 10 268 9 Face 492 10 11 268 Face 493 145 269 79 Face 494 145 107 269 Face 495 183 270 25 Face 496 183 55 270 Face 497 76 271 243 Face 498 76 155 271 Face 499 212 272 224 Face 500 212 225 272 ================================================ FILE: models/cessna_color.m ================================================ # |Created on 2003/10/31 09:19:57 using: # | C:\cygwin\home\Zoe\hh_src\bin\filtermesh.exe cessna_color500.m -removekey # | normal # |(Timing on cpu=x86-L6-R0806 host=BUTTERCUP) # | (_readmesh: 0.02) # | (Filtermesh: 0.03) # Created on 2003/10/31 09:22:02 using: # C:\cygwin\home\Zoe\hh_src\bin\filtermesh.exe c.m -removekey wid # (Timing on cpu=x86-L6-R0806 host=BUTTERCUP) # (_readmesh: 0.02) # (Filtermesh: 0.02) Vertex 1 -11.2429 -3.34616 -7.6444 Vertex 2 -11.4049 -3.2215 -7.5698 Vertex 3 -11.348 -3.47795 -7.71857 Vertex 4 -11.3587 -5.03145 -4.69954 Vertex 5 -11.2317 -3.07954 -7.70508 Vertex 6 -11.3373 0.265308 -7.80791 Vertex 7 -11.3929 -3.07629 -7.97425 Vertex 8 -11.3996 -3.07894 -7.7704 Vertex 9 -11.2704 -3.41977 -7.92181 Vertex 10 -11.4072 -4.92862 -10.2727 Vertex 11 -11.2997 -3.27368 -8.00828 Vertex 12 -11.2567 -4.67238 5.63925 Vertex 13 -11.3409 -5.00291 4.74338 Vertex 14 -11.4337 -4.30584 5.54256 Vertex 15 -11.3279 -3.48714 7.18154 Vertex 16 -11.3632 -4.15839 6.44287 Vertex 17 -11.2607 -0.885498 7.81201 Vertex 18 -11.4144 -0.465431 8.01354 Vertex 19 -11.3156 0.05431 7.75596 Vertex 20 -11.2389 -4.73976 10.5342 Vertex 21 -11.4135 -4.96246 10.3438 Vertex 22 -11.3323 -4.45603 10.2159 Vertex 23 -11.3419 -3.37287 7.94242 Vertex 24 -2.56373 -5.02805 0.899863 Vertex 25 -0.157729 -4.91732 0.928425 Vertex 26 -0.164229 -5.02968 -0.893371 Vertex 27 -1.78791 -4.30222 -2.48474 Vertex 28 -11.3489 -3.70489 -7.79146 Vertex 29 -11.1305 -3.10882 -8.33526 Vertex 30 -11.386 -3.33254 -8.33538 Vertex 31 -11.7354 -2.84954 -8.0453 Vertex 32 -11.3586 -3.0958 -7.34579 Vertex 33 -10.109 -2.85502 -6.56999 Vertex 34 -10.1863 -4.21425 -6.62607 Vertex 35 1.89827 -4.05522 -9.14679 Vertex 36 -10.1031 -2.86381 -8.96068 Vertex 37 -10.1781 -4.21366 6.59512 Vertex 38 -10.1241 -2.90343 6.4078 Vertex 39 -0.829151 -3.70095 8.63871 Vertex 40 -10.0932 -2.74701 8.6081 Vertex 41 -11.0998 -3.74205 7.82856 Vertex 42 -12.5183 -3.25372 7.79196 Vertex 43 -11.1762 -2.92501 8.20368 Vertex 44 -11.142 -2.91983 7.40455 Vertex 45 -11.2977 -3.50282 7.37258 Vertex 46 -11.4076 -3.08184 7.84094 Vertex 47 -11.4254 -3.35667 -7.95766 Vertex 48 18.9516 -2.31453 0.522404 Vertex 49 -0.155335 -0.216196 0.0961053 Vertex 50 -0.347151 -4.50954 -6.42412 Vertex 51 -2.70998 -3.38206 -22.1529 Vertex 52 -3.18481 -4.11531 13.3012 Vertex 53 18.927 -2.3574 -0.108172 Vertex 54 -7.39831 -4.63184 2.15221 Vertex 55 7.41935 -3.84473 2.10658 Vertex 56 -12.5087 -2.54419 -2.42289 Vertex 57 12.533 -2.58462 -1.47224 Vertex 58 -7.23466 -4.18859 10.2562 Vertex 59 -4.91658 -3.35218 16.1792 Vertex 60 -0.680317 -4.14481 -10.2505 Vertex 61 -0.681453 -4.29603 -10.2509 Vertex 62 -7.31656 -4.10195 -10.2588 Vertex 63 12.5618 0.515457 0.244445 Vertex 64 21.6703 5.09033 -0.0944992 Vertex 65 15.7337 -1.06548 -0.182942 Vertex 66 5.98 -0.733647 -1.35195 Vertex 67 1.24305 -1.63884 2.40269 Vertex 68 -13.4191 -5.16651 0.672846 Vertex 69 -6.72557 -3.83223 10.2578 Vertex 70 -6.20573 -3.42215 22.1539 Vertex 71 13.0416 -2.34073 1.44625 Vertex 72 13.9185 -2.42451 8.54118 Vertex 73 16.7063 -2.50268 8.61671 Vertex 74 -6.70658 -3.74122 -10.252 Vertex 75 1.88454 -4.18869 6.60922 Vertex 76 1.87813 -4.30066 9.09842 Vertex 77 -7.31276 -4.6197 -2.6485 Vertex 78 17.622 4.05037 0.240187 Vertex 79 18.192 5.03987 -0.198878 Vertex 80 12.6226 -2.68184 -1.46117 Vertex 81 13.9495 -2.37125 -7.00607 Vertex 82 13.3137 -2.58751 8.61806 Vertex 83 1.87295 -4.22788 -6.53973 Vertex 84 1.87204 -4.61032 -9.10595 Vertex 85 -0.326997 -4.38949 6.4326 Vertex 86 -0.343544 -4.54461 6.43121 Vertex 87 17.9382 -2.49078 -0.846229 Vertex 88 -6.32957 -3.37292 -22.1607 Vertex 89 13.9184 -2.42149 7.0258 Vertex 90 17.9342 -2.5033 0.870213 Vertex 91 -7.36194 -4.33265 6.42929 Vertex 92 16.7232 -2.53142 -8.593 Vertex 93 13.261 -2.62506 -8.51971 Vertex 94 -2.61083 -4.10085 -6.43229 Vertex 95 14.4305 0.0924068 0.244909 Vertex 96 11.6542 -0.258267 0.195894 Vertex 97 12.7237 0.285452 -0.223774 Vertex 98 -7.03889 -4.71171 2.66272 Vertex 99 -0.157895 -4.65733 -2.29819 Vertex 100 -5.9328 -4.05909 2.54482 Vertex 101 -2.59553 -4.29708 2.44597 Vertex 102 -18.8386 -2.73165 -0.640777 Vertex 103 -7.90715 -0.426592 -1.40047 Vertex 104 -11.8881 -2.38622 2.30811 Vertex 105 14.1638 -2.37695 7.01053 Vertex 106 13.318 -2.54942 -8.59581 Vertex 107 21.6746 5.09423 0.166146 Vertex 108 13.9039 -2.45869 -8.51982 Vertex 109 17.9373 -2.577 -0.860383 Vertex 110 16.7483 4.12514 -0.218186 Vertex 111 12.6206 -2.68089 1.48057 Vertex 112 11.6505 -0.246442 -0.173479 Vertex 113 7.44839 -0.824882 1.3836 Vertex 114 10.8002 -2.73151 1.6626 Vertex 115 18.9667 -2.81345 0.028035 Vertex 116 14.2278 -2.4148 -8.5175 Vertex 117 -2.74513 -3.29139 22.1529 Vertex 118 -2.20946 -3.5291 19.1112 Vertex 119 -1.18565 -4.0002 13.303 Vertex 120 19.5014 4.01321 -0.227995 Vertex 121 -0.97767 -1.60334 -2.55209 Vertex 122 -4.52032 -0.180064 0.0999518 Vertex 123 -5.70519 -0.113574 -0.0803541 Vertex 124 -1.80493 -0.488807 -1.5941 Vertex 125 4.33029 -1.56825 -2.16363 Vertex 126 5.91939 -0.815866 -1.3384 Vertex 127 4.32513 -0.724012 -1.38619 Vertex 128 5.38612 -1.6617 -2.08027 Vertex 129 5.34176 -1.66417 -2.01575 Vertex 130 -5.93758 -1.8574 -2.52584 Vertex 131 -8.28549 -2.00594 -2.22972 Vertex 132 19.5093 4.02176 0.290085 Vertex 133 -10.9267 -2.98422 -8.73647 Vertex 134 -10.9992 -3.74193 -7.85734 Vertex 135 -10.8725 -2.98623 -8.15301 Vertex 136 9.01751 -0.830129 0.199173 Vertex 137 18.9841 4.03192 0.191109 Vertex 138 15.7159 -1.05377 0.243501 Vertex 139 -10.8341 -3.57906 7.51761 Vertex 140 -5.75294 -1.70342 2.46916 Vertex 141 -2.55951 -0.481386 1.56852 Vertex 142 -4.53111 -0.461747 1.57312 Vertex 143 -10.8977 -3.62409 8.11986 Vertex 144 -10.9888 -2.88766 7.52823 Vertex 145 18.2931 5.02525 0.231181 Vertex 146 -0.797783 -3.65046 -6.91484 Vertex 147 -0.727876 -3.76185 -8.67229 Vertex 148 -0.221925 -3.87452 -6.96214 Vertex 149 -3.53483 -1.66275 -2.56435 Vertex 150 -4.51184 -0.474176 -1.57239 Vertex 151 -2.5496 -0.518823 -1.57355 Vertex 152 17.9364 -2.5965 0.875425 Vertex 153 18.1362 4.06445 -0.213771 Vertex 154 -0.500571 -3.80422 6.98172 Vertex 155 1.89831 -4.04665 9.17964 Vertex 156 -0.107641 -3.90075 8.60855 Vertex 157 -10.1703 -3.91777 9.19468 Vertex 158 -2.87451 -3.68042 13.2994 Vertex 159 -15.7825 -3.7188 1.9209 Vertex 160 -10.1796 -4.00965 -9.18925 Vertex 161 -6.66847 -3.28092 -22.1023 Vertex 162 4.31389 -0.651154 1.41559 Vertex 163 -3.53113 -1.61347 2.55292 Vertex 164 0.433884 -0.582514 1.54366 Vertex 165 -7.25432 -4.41878 2.63562 Vertex 166 4.29944 -0.637923 -1.39304 Vertex 167 4.29738 -1.64236 -2.23572 Vertex 168 2.0649 -0.647234 -1.44438 Vertex 169 0.436211 -0.587284 -1.53176 Vertex 170 2.06066 -1.60696 -2.16935 Vertex 171 0.43847 -1.56637 -2.31813 Vertex 172 -0.161153 -0.595432 -1.55352 Vertex 173 -0.155476 -4.6494 2.29512 Vertex 174 -7.5843 -0.482669 1.44317 Vertex 175 17.6236 4.04994 -0.197454 Vertex 176 4.78088 -1.69215 2.19724 Vertex 177 2.06253 -0.645579 1.45547 Vertex 178 5.92868 -0.800311 1.32182 Vertex 179 -2.30035 -4.12298 6.43014 Vertex 180 -5.22995 -4.1043 -2.48562 Vertex 181 -2.34961 -4.32589 -2.44089 Vertex 182 -10.4597 -1.50028 0.0107484 Vertex 183 6.01935 -4.9906 0.538016 Vertex 184 -12.7776 -4.72668 -1.92254 Vertex 185 -2.2113 -3.63405 19.1134 Vertex 186 17.9329 -2.14106 0.233672 Vertex 187 -6.34083 -3.04867 22.1537 Vertex 188 -18.594 -3.59686 -0.850123 Vertex 189 -1.80655 -0.513929 1.59308 Vertex 190 -0.0442178 -1.05337 2.05687 Vertex 191 -1.80483 -1.52721 2.38196 Vertex 192 -10.9788 -2.96562 -7.40955 Vertex 193 6.62733 -4.39231 -1.88787 Vertex 194 -10.7185 -3.23019 8.88245 Vertex 195 -6.66258 -4.22551 -2.65608 Vertex 196 0.113585 -4.72375 7.03528 Vertex 197 -10.9794 -3.53973 -6.91143 Vertex 198 -10.7174 -3.25631 -6.7385 Vertex 199 -10.7323 -3.27169 -7.28108 Vertex 200 0.120021 -4.64414 -7.0153 Vertex 201 12.5309 -2.58367 1.49134 Vertex 202 5.85763 -0.436522 -0.174432 Vertex 203 -7.42621 -4.5569 -2.14161 Vertex 204 -6.56681 -0.361699 -1.54156 Vertex 205 -1.38067 -0.219921 0.0537108 Vertex 206 -4.52018 -0.180127 -0.0995772 Vertex 207 -6.69859 -3.26684 22.1023 Vertex 208 -10.8643 -3.45108 -8.91629 Vertex 209 -4.73055 -3.71208 -6.01487 Vertex 210 18.9719 4.02605 -0.161307 Vertex 211 -10.9657 -3.4203 6.72008 Vertex 212 -10.9469 -3.06758 7.39378 Vertex 213 -10.7604 -3.51892 -8.13956 Vertex 214 -10.6956 -3.39843 -6.73132 Vertex 215 -10.9269 -3.03472 -6.74505 Vertex 216 -10.9668 -3.43513 -6.70503 Vertex 217 -10.086 -2.6029 -7.04492 Vertex 218 1.88239 -4.21696 -9.43036 Vertex 219 -10.7647 -3.41076 8.89897 Vertex 220 -10.7081 -3.32619 8.2115 Vertex 221 -10.7824 -3.32873 8.24463 Vertex 222 -10.7836 -3.34609 8.24264 Vertex 223 -10.7301 -3.36097 6.73802 Vertex 224 -10.7259 -3.29055 7.39937 Vertex 225 -10.7061 -3.23231 6.74842 Vertex 226 -10.7993 -3.04093 8.0836 Vertex 227 -2.67724 -4.56771 6.42878 Vertex 228 -2.17541 -4.33423 2.41826 Vertex 229 -10.1199 -3.08132 9.15233 Vertex 230 -18.6137 -4.13116 0.260052 Vertex 231 -11.1057 -3.00842 -7.31792 Vertex 232 -11.2548 -3.78379 -7.73023 Vertex 233 13.0489 -2.36527 -1.4537 Vertex 234 1.88226 -4.26161 6.37999 Vertex 235 -7.34806 -4.34749 -6.42995 Vertex 236 -6.60953 -4.32779 -10.2621 Vertex 237 -10.7778 -3.57402 -7.45905 Vertex 238 -3.58889 -3.34245 19.1058 Vertex 239 -3.41283 -3.34426 -19.1126 Vertex 240 -3.17376 -3.66956 -13.2955 Vertex 241 -3.73098 -3.31078 -19.1087 Vertex 242 -8.7713 -1.98459 2.02962 Vertex 243 0.108643 -4.78798 8.63168 Vertex 244 -10.6705 -3.12961 -8.85484 Vertex 245 18.9466 -2.34038 -0.501887 Vertex 246 -18.6536 -2.75862 0.874513 Vertex 247 -6.30475 -3.09574 -22.1006 Vertex 248 16.7613 4.11029 0.247038 Vertex 249 -10.7726 -3.07436 8.76595 Vertex 250 -10.6979 -3.2099 -8.1977 Vertex 251 -7.88719 -2.79595 6.52165 Vertex 252 -10.6437 -2.93944 -7.44027 Vertex 253 -3.44249 0.509074 -0.00321054 Vertex 254 -3.82656 0.497653 -0.0328462 Vertex 255 -3.8266 0.497674 0.0318818 Vertex 256 -11.2992 -3.61146 8.18574 Vertex 257 -10.7101 -3.33316 -8.87937 Vertex 258 -10.1897 -4.33301 7.82632 Vertex 259 -0.246129 -3.86686 -8.62854 Vertex 260 -0.132844 -4.65091 -2.49338 Vertex 261 -3.74921 -3.63669 19.1115 Vertex 262 -8.76556 -1.96748 -2.06073 Vertex 263 -8.26894 -2.00362 2.27298 Vertex 264 -0.157205 -0.257352 -0.101252 Vertex 265 -10.9386 -3.10207 8.91951 Vertex 266 -7.27698 -4.44622 2.40803 Vertex 267 -5.56821 -4.57212 -8.98866 Vertex 268 -11.3521 -4.84434 -10.6985 Vertex 269 18.7598 5.13164 0.0765112 Vertex 270 -0.106297 -4.62612 2.24659 Vertex 271 1.8883 -4.17104 9.36989 Vertex 272 -10.685 -3.02375 7.42784 Face 1 2 3 4 {rgb=(1 0 0) matid=3} Face 2 18 17 19 {rgb=(1 0 0) matid=3} Face 3 251 40 39 {rgb=(.9 .9 .9) matid=0} Face 4 14 16 15 {rgb=(1 0 0) matid=3} Face 5 7 6 5 {rgb=(1 0 0) matid=3} Face 6 6 7 8 {rgb=(1 0 0) matid=3} Face 7 12 14 15 {rgb=(1 0 0) matid=3} Face 8 234 37 38 {rgb=(.9 .9 .9) matid=0} Face 9 13 12 16 {rgb=(1 0 0) matid=3} Face 10 42 45 256 {rgb=(1 0 0) matid=3} Face 11 19 46 18 {rgb=(1 0 0) matid=3} Face 12 8 5 6 {rgb=(1 0 0) matid=3} Face 13 21 20 22 {rgb=(1 0 0) matid=3} Face 14 37 211 38 {rgb=(.9 .9 .9) matid=0} Face 15 9 47 10 {rgb=(1 0 0) matid=3} Face 16 217 35 36 {rgb=(.9 .9 .9) matid=0} Face 17 8 7 5 {rgb=(1 0 0) matid=3} Face 18 29 30 31 {rgb=(.9 .9 .9) matid=0} Face 19 23 22 20 {rgb=(1 0 0) matid=3} Face 20 229 271 155 {rgb=(.9 .9 .9) matid=0} Face 21 26 25 24 {rgb=(1 0 0) matid=3} Face 22 13 14 12 {rgb=(1 0 0) matid=3} Face 23 10 47 11 {rgb=(1 0 0) matid=3} Face 24 28 30 29 {rgb=(.9 .9 .9) matid=0} Face 25 28 32 31 {rgb=(.9 .9 .9) matid=0} Face 26 1 2 4 {rgb=(1 0 0) matid=3} Face 27 14 13 16 {rgb=(1 0 0) matid=3} Face 28 28 31 30 {rgb=(.9 .9 .9) matid=0} Face 29 42 44 45 {rgb=(1 0 0) matid=3} Face 30 4 3 1 {rgb=(1 0 0) matid=3} Face 31 28 231 32 {rgb=(.9 .9 .9) matid=0} Face 32 23 21 22 {rgb=(1 0 0) matid=3} Face 33 43 42 256 {rgb=(1 0 0) matid=3} Face 34 32 231 31 {rgb=(.9 .9 .9) matid=0} Face 35 91 58 69 {rgb=(.9 .9 .9) matid=0} Face 36 12 15 16 {rgb=(1 0 0) matid=3} Face 37 33 36 133 {rgb=(.9 .9 .9) matid=0} Face 38 68 26 24 {rgb=(1 0 0) matid=3} Face 39 41 44 43 {rgb=(1 0 0) matid=3} Face 40 9 11 47 {rgb=(1 0 0) matid=3} Face 41 34 209 33 {rgb=(.9 .9 .9) matid=0} Face 42 26 193 183 {rgb=(1 0 0) matid=3} Face 43 41 45 44 {rgb=(1 0 0) matid=3} Face 44 42 43 44 {rgb=(1 0 0) matid=3} Face 45 46 17 18 {rgb=(1 0 0) matid=3} Face 46 21 23 20 {rgb=(1 0 0) matid=3} Face 47 19 17 46 {rgb=(1 0 0) matid=3} Face 48 1 3 2 {rgb=(1 0 0) matid=3} Face 49 268 11 9 {rgb=(1 0 0) matid=3} Face 50 267 160 218 {rgb=(.9 .9 .9) matid=0} Face 51 260 193 99 {rgb=(1 0 0) matid=3} Face 52 66 202 245 {rgb=(1 0 0) matid=3} Face 53 113 178 176 {rgb=(1 0 0) matid=3} Face 54 113 48 136 {rgb=(1 0 0) matid=3} Face 55 26 99 193 {rgb=(1 0 0) matid=3} Face 56 236 51 61 {rgb=(.9 .9 .9) matid=0} Face 57 247 88 161 {rgb=(0 0 0) matid=1} Face 58 60 61 51 {rgb=(.9 .9 .9) matid=0} Face 59 119 52 86 {rgb=(.9 .9 .9) matid=0} Face 60 59 165 69 {rgb=(.9 .9 .9) matid=0} Face 61 186 138 136 {rgb=(.9 .9 .9) matid=0} Face 62 193 260 109 {rgb=(1 0 0) matid=3} Face 63 67 100 55 {rgb=(1 0 0) matid=3} Face 64 184 26 68 {rgb=(1 0 0) matid=3} Face 65 173 55 100 {rgb=(1 0 0) matid=3} Face 66 183 115 55 {rgb=(1 0 0) matid=3} Face 67 233 66 245 {rgb=(1 0 0) matid=3} Face 68 203 26 184 {rgb=(1 0 0) matid=3} Face 69 260 80 109 {rgb=(1 0 0) matid=3} Face 70 27 56 130 {rgb=(1 0 0) matid=3} Face 71 98 58 91 {rgb=(.9 .9 .9) matid=0} Face 72 24 52 58 {rgb=(.9 .9 .9) matid=0} Face 73 85 119 86 {rgb=(.9 .9 .9) matid=0} Face 74 101 100 59 {rgb=(.9 .9 .9) matid=0} Face 75 195 74 62 {rgb=(.9 .9 .9) matid=0} Face 76 27 50 60 {rgb=(.9 .9 .9) matid=0} Face 77 50 61 60 {rgb=(.9 .9 .9) matid=0} Face 78 50 236 61 {rgb=(.9 .9 .9) matid=0} Face 79 26 236 50 {rgb=(.9 .9 .9) matid=0} Face 80 26 77 236 {rgb=(.9 .9 .9) matid=0} Face 81 132 137 186 {rgb=(.9 .9 .9) matid=0} Face 82 97 112 63 {rgb=(.9 .9 .9) matid=0} Face 83 53 107 186 {rgb=(.9 .9 .9) matid=0} Face 84 248 63 78 {rgb=(0 0 0) matid=1} Face 85 53 65 120 {rgb=(.9 .9 .9) matid=0} Face 86 53 202 65 {rgb=(.9 .9 .9) matid=0} Face 87 262 204 131 {rgb=(1 0 0) matid=3} Face 88 141 49 205 {rgb=(1 0 0) matid=3} Face 89 103 174 123 {rgb=(1 0 0) matid=3} Face 90 188 230 102 {rgb=(0 0 0) matid=1} Face 91 54 68 24 {rgb=(1 0 0) matid=3} Face 92 266 104 159 {rgb=(1 0 0) matid=3} Face 93 117 187 70 {rgb=(.9 .9 .9) matid=0} Face 94 117 59 187 {rgb=(.9 .9 .9) matid=0} Face 95 58 70 207 {rgb=(0 0 0) matid=1} Face 96 58 52 70 {rgb=(.9 .9 .9) matid=0} Face 97 55 113 176 {rgb=(1 0 0) matid=3} Face 98 72 105 89 {rgb=(.9 .9 .9) matid=0} Face 99 82 72 71 {rgb=(.9 .9 .9) matid=0} Face 100 82 73 72 {rgb=(.9 .9 .9) matid=0} Face 101 152 73 82 {rgb=(.9 .9 .9) matid=0} Face 102 152 90 73 {rgb=(.9 .9 .9) matid=0} Face 103 94 74 180 {rgb=(.9 .9 .9) matid=0} Face 104 241 51 247 {rgb=(.9 .9 .9) matid=0} Face 105 154 75 251 {rgb=(.9 .9 .9) matid=0} Face 106 155 76 75 {rgb=(.9 .9 .9) matid=0} Face 107 157 271 229 {rgb=(.9 .9 .9) matid=0} Face 108 37 234 196 {rgb=(.9 .9 .9) matid=0} Face 109 27 203 184 {rgb=(1 0 0) matid=3} Face 110 180 74 195 {rgb=(.9 .9 .9) matid=0} Face 111 107 132 186 {rgb=(.9 .9 .9) matid=0} Face 112 64 79 269 {rgb=(.9 .9 .9) matid=0} Face 113 65 210 120 {rgb=(.9 .9 .9) matid=0} Face 114 97 63 110 {rgb=(0 0 0) matid=1} Face 115 57 80 260 {rgb=(1 0 0) matid=3} Face 116 92 109 80 {rgb=(.9 .9 .9) matid=0} Face 117 57 106 93 {rgb=(0 0 0) matid=1} Face 118 87 109 92 {rgb=(.9 .9 .9) matid=0} Face 119 111 82 201 {rgb=(0 0 0) matid=1} Face 120 111 152 82 {rgb=(.9 .9 .9) matid=0} Face 121 35 83 84 {rgb=(.9 .9 .9) matid=0} Face 122 35 217 147 {rgb=(.9 .9 .9) matid=0} Face 123 200 84 83 {rgb=(.9 .9 .9) matid=0} Face 124 34 160 267 {rgb=(.9 .9 .9) matid=0} Face 125 25 85 86 {rgb=(.7 .7 .7) matid=2} Face 126 101 158 179 {rgb=(.9 .9 .9) matid=0} Face 127 24 227 52 {rgb=(.9 .9 .9) matid=0} Face 128 24 25 86 {rgb=(.7 .7 .7) matid=2} Face 129 233 87 81 {rgb=(.9 .9 .9) matid=0} Face 130 233 245 87 {rgb=(1 0 0) matid=3} Face 131 51 88 247 {rgb=(.9 .9 .9) matid=0} Face 132 51 236 88 {rgb=(.9 .9 .9) matid=0} Face 133 71 89 105 {rgb=(.9 .9 .9) matid=0} Face 134 71 72 89 {rgb=(.9 .9 .9) matid=0} Face 135 71 90 48 {rgb=(1 0 0) matid=3} Face 136 71 73 90 {rgb=(.9 .9 .9) matid=0} Face 137 165 91 69 {rgb=(.9 .9 .9) matid=0} Face 138 165 98 91 {rgb=(0 0 0) matid=1} Face 139 106 92 93 {rgb=(.9 .9 .9) matid=0} Face 140 81 87 92 {rgb=(.9 .9 .9) matid=0} Face 141 80 93 92 {rgb=(.9 .9 .9) matid=0} Face 142 80 57 93 {rgb=(0 0 0) matid=1} Face 143 60 94 27 {rgb=(.9 .9 .9) matid=0} Face 144 240 74 94 {rgb=(.9 .9 .9) matid=0} Face 145 63 95 78 {rgb=(0 0 0) matid=1} Face 146 63 112 96 {rgb=(.9 .9 .9) matid=0} Face 147 95 96 136 {rgb=(.9 .9 .9) matid=0} Face 148 95 63 96 {rgb=(.9 .9 .9) matid=0} Face 149 65 97 210 {rgb=(.9 .9 .9) matid=0} Face 150 65 112 97 {rgb=(.9 .9 .9) matid=0} Face 151 24 98 54 {rgb=(.9 .9 .9) matid=0} Face 152 24 58 98 {rgb=(.9 .9 .9) matid=0} Face 153 50 99 26 {rgb=(.9 .9 .9) matid=0} Face 154 50 27 99 {rgb=(.9 .9 .9) matid=0} Face 155 266 100 104 {rgb=(1 0 0) matid=3} Face 156 165 59 100 {rgb=(.9 .9 .9) matid=0} Face 157 173 228 179 {rgb=(.7 .7 .7) matid=2} Face 158 173 100 228 {rgb=(1 0 0) matid=3} Face 159 104 246 159 {rgb=(1 0 0) matid=3} Face 160 104 182 246 {rgb=(1 0 0) matid=3} Face 161 56 262 131 {rgb=(1 0 0) matid=3} Face 162 56 102 182 {rgb=(1 0 0) matid=3} Face 163 140 104 100 {rgb=(1 0 0) matid=3} Face 164 174 182 242 {rgb=(.7 .7 .7) matid=2} Face 165 73 105 72 {rgb=(.9 .9 .9) matid=0} Face 166 73 71 105 {rgb=(.9 .9 .9) matid=0} Face 167 81 106 233 {rgb=(.9 .9 .9) matid=0} Face 168 81 108 106 {rgb=(.9 .9 .9) matid=0} Face 169 64 107 53 {rgb=(.9 .9 .9) matid=0} Face 170 64 269 107 {rgb=(.9 .9 .9) matid=0} Face 171 116 108 81 {rgb=(.9 .9 .9) matid=0} Face 172 116 106 108 {rgb=(.9 .9 .9) matid=0} Face 173 245 109 87 {rgb=(1 0 0) matid=3} Face 174 245 115 109 {rgb=(1 0 0) matid=3} Face 175 79 110 145 {rgb=(.9 .9 .9) matid=0} Face 176 175 97 110 {rgb=(0 0 0) matid=1} Face 177 114 111 201 {rgb=(1 0 0) matid=3} Face 178 114 152 111 {rgb=(1 0 0) matid=3} Face 179 202 112 65 {rgb=(.9 .9 .9) matid=0} Face 180 264 96 112 {rgb=(.9 .9 .9) matid=0} Face 181 71 113 114 {rgb=(1 0 0) matid=3} Face 182 71 48 113 {rgb=(1 0 0) matid=3} Face 183 55 114 113 {rgb=(.7 .7 .7) matid=2} Face 184 55 115 114 {rgb=(1 0 0) matid=3} Face 185 48 115 53 {rgb=(1 0 0) matid=3} Face 186 152 114 115 {rgb=(1 0 0) matid=3} Face 187 92 116 81 {rgb=(.9 .9 .9) matid=0} Face 188 92 106 116 {rgb=(.9 .9 .9) matid=0} Face 189 185 117 70 {rgb=(.9 .9 .9) matid=0} Face 190 118 238 117 {rgb=(.9 .9 .9) matid=0} Face 191 185 118 117 {rgb=(.9 .9 .9) matid=0} Face 192 185 119 118 {rgb=(.7 .7 .7) matid=2} Face 193 158 119 85 {rgb=(.9 .9 .9) matid=0} Face 194 158 118 119 {rgb=(.7 .7 .7) matid=2} Face 195 64 120 79 {rgb=(.9 .9 .9) matid=0} Face 196 64 53 120 {rgb=(.9 .9 .9) matid=0} Face 197 57 167 128 {rgb=(1 0 0) matid=3} Face 198 57 260 167 {rgb=(1 0 0) matid=3} Face 199 124 205 264 {rgb=(1 0 0) matid=3} Face 200 123 141 122 {rgb=(1 0 0) matid=3} Face 201 124 123 206 {rgb=(1 0 0) matid=3} Face 202 124 150 123 {rgb=(1 0 0) matid=3} Face 203 66 166 202 {rgb=(1 0 0) matid=3} Face 204 125 167 166 {rgb=(.3 .3 .3) matid=4} Face 205 126 127 166 {rgb=(.3 .3 .3) matid=4} Face 206 66 233 128 {rgb=(1 0 0) matid=3} Face 207 66 126 166 {rgb=(.3 .3 .3) matid=4} Face 208 66 128 126 {rgb=(.3 .3 .3) matid=4} Face 209 125 127 126 {rgb=(.7 .7 .7) matid=2} Face 210 125 166 127 {rgb=(.3 .3 .3) matid=4} Face 211 125 128 167 {rgb=(.3 .3 .3) matid=4} Face 212 129 126 128 {rgb=(.3 .3 .3) matid=4} Face 213 125 129 128 {rgb=(.3 .3 .3) matid=4} Face 214 125 126 129 {rgb=(.7 .7 .7) matid=2} Face 215 149 130 204 {rgb=(1 0 0) matid=3} Face 216 121 27 130 {rgb=(1 0 0) matid=3} Face 217 130 131 204 {rgb=(.7 .7 .7) matid=2} Face 218 130 56 131 {rgb=(1 0 0) matid=3} Face 219 145 132 107 {rgb=(.9 .9 .9) matid=0} Face 220 78 137 132 {rgb=(.9 .9 .9) matid=0} Face 221 134 133 36 {rgb=(.9 .9 .9) matid=0} Face 222 135 33 133 {rgb=(.9 .9 .9) matid=0} Face 223 34 134 160 {rgb=(.9 .9 .9) matid=0} Face 224 34 33 216 {rgb=(.9 .9 .9) matid=0} Face 225 134 213 208 {rgb=(.9 .9 .9) matid=0} Face 226 134 34 197 {rgb=(.9 .9 .9) matid=0} Face 227 49 136 96 {rgb=(.9 .9 .9) matid=0} Face 228 49 141 162 {rgb=(1 0 0) matid=3} Face 229 138 137 78 {rgb=(.9 .9 .9) matid=0} Face 230 138 186 137 {rgb=(.9 .9 .9) matid=0} Face 231 95 138 78 {rgb=(.9 .9 .9) matid=0} Face 232 95 136 138 {rgb=(.9 .9 .9) matid=0} Face 233 229 265 157 {rgb=(.9 .9 .9) matid=0} Face 234 40 38 144 {rgb=(.9 .9 .9) matid=0} Face 235 163 140 100 {rgb=(1 0 0) matid=3} Face 236 142 123 174 {rgb=(1 0 0) matid=3} Face 237 142 141 123 {rgb=(1 0 0) matid=3} Face 238 164 177 141 {rgb=(1 0 0) matid=3} Face 239 163 142 140 {rgb=(1 0 0) matid=3} Face 240 163 141 142 {rgb=(.7 .7 .7) matid=2} Face 241 144 249 40 {rgb=(.9 .9 .9) matid=0} Face 242 139 37 143 {rgb=(.9 .9 .9) matid=0} Face 243 211 144 38 {rgb=(.9 .9 .9) matid=0} Face 244 212 143 144 {rgb=(.9 .9 .9) matid=0} Face 245 78 145 248 {rgb=(.9 .9 .9) matid=0} Face 246 78 132 145 {rgb=(.9 .9 .9) matid=0} Face 247 209 146 217 {rgb=(.9 .9 .9) matid=0} Face 248 83 35 148 {rgb=(.9 .9 .9) matid=0} Face 249 146 147 217 {rgb=(.9 .9 .9) matid=0} Face 250 259 35 147 {rgb=(.9 .9 .9) matid=0} Face 251 146 148 147 {rgb=(0 0 0) matid=1} Face 252 146 83 148 {rgb=(.9 .9 .9) matid=0} Face 253 121 149 124 {rgb=(1 0 0) matid=3} Face 254 121 130 149 {rgb=(1 0 0) matid=3} Face 255 151 150 124 {rgb=(1 0 0) matid=3} Face 256 149 204 150 {rgb=(1 0 0) matid=3} Face 257 149 151 124 {rgb=(1 0 0) matid=3} Face 258 149 150 151 {rgb=(.7 .7 .7) matid=2} Face 259 48 152 115 {rgb=(1 0 0) matid=3} Face 260 48 90 152 {rgb=(1 0 0) matid=3} Face 261 175 153 97 {rgb=(.9 .9 .9) matid=0} Face 262 79 120 153 {rgb=(.9 .9 .9) matid=0} Face 263 39 154 251 {rgb=(.9 .9 .9) matid=0} Face 264 156 75 154 {rgb=(.9 .9 .9) matid=0} Face 265 156 155 75 {rgb=(.9 .9 .9) matid=0} Face 266 39 40 155 {rgb=(.9 .9 .9) matid=0} Face 267 39 156 154 {rgb=(0 0 0) matid=1} Face 268 39 155 156 {rgb=(.9 .9 .9) matid=0} Face 269 37 258 143 {rgb=(.9 .9 .9) matid=0} Face 270 37 196 258 {rgb=(.9 .9 .9) matid=0} Face 271 238 158 101 {rgb=(.9 .9 .9) matid=0} Face 272 238 118 158 {rgb=(.7 .7 .7) matid=2} Face 273 230 159 246 {rgb=(1 0 0) matid=3} Face 274 68 266 159 {rgb=(1 0 0) matid=3} Face 275 36 160 134 {rgb=(.9 .9 .9) matid=0} Face 276 36 218 160 {rgb=(.9 .9 .9) matid=0} Face 277 62 161 88 {rgb=(0 0 0) matid=1} Face 278 62 74 161 {rgb=(0 0 0) matid=1} Face 279 136 178 113 {rgb=(1 0 0) matid=3} Face 280 136 49 162 {rgb=(1 0 0) matid=3} Face 281 191 163 100 {rgb=(1 0 0) matid=3} Face 282 189 141 163 {rgb=(1 0 0) matid=3} Face 283 189 164 141 {rgb=(1 0 0) matid=3} Face 284 67 177 164 {rgb=(.7 .7 .7) matid=2} Face 285 54 165 100 {rgb=(.9 .9 .9) matid=0} Face 286 54 98 165 {rgb=(.9 .9 .9) matid=0} Face 287 124 168 169 {rgb=(1 0 0) matid=3} Face 288 124 202 166 {rgb=(1 0 0) matid=3} Face 289 121 167 260 {rgb=(1 0 0) matid=3} Face 290 170 166 167 {rgb=(1 0 0) matid=3} Face 291 166 168 124 {rgb=(1 0 0) matid=3} Face 292 166 170 168 {rgb=(1 0 0) matid=3} Face 293 171 169 168 {rgb=(.7 .7 .7) matid=2} Face 294 172 124 169 {rgb=(1 0 0) matid=3} Face 295 171 170 167 {rgb=(1 0 0) matid=3} Face 296 171 168 170 {rgb=(.7 .7 .7) matid=2} Face 297 121 171 167 {rgb=(1 0 0) matid=3} Face 298 121 169 171 {rgb=(1 0 0) matid=3} Face 299 121 172 169 {rgb=(1 0 0) matid=3} Face 300 121 124 172 {rgb=(.7 .7 .7) matid=2} Face 301 25 173 85 {rgb=(.7 .7 .7) matid=2} Face 302 270 55 173 {rgb=(1 0 0) matid=3} Face 303 140 174 263 {rgb=(.7 .7 .7) matid=2} Face 304 140 142 174 {rgb=(1 0 0) matid=3} Face 305 79 175 110 {rgb=(.9 .9 .9) matid=0} Face 306 79 153 175 {rgb=(.9 .9 .9) matid=0} Face 307 67 176 177 {rgb=(1 0 0) matid=3} Face 308 67 55 176 {rgb=(1 0 0) matid=3} Face 309 162 177 176 {rgb=(1 0 0) matid=3} Face 310 162 141 177 {rgb=(1 0 0) matid=3} Face 311 162 178 136 {rgb=(1 0 0) matid=3} Face 312 162 176 178 {rgb=(.7 .7 .7) matid=2} Face 313 85 179 158 {rgb=(.9 .9 .9) matid=0} Face 314 85 173 179 {rgb=(.7 .7 .7) matid=2} Face 315 27 180 203 {rgb=(1 0 0) matid=3} Face 316 181 94 180 {rgb=(.9 .9 .9) matid=0} Face 317 27 181 180 {rgb=(1 0 0) matid=3} Face 318 27 94 181 {rgb=(.9 .9 .9) matid=0} Face 319 103 182 174 {rgb=(.7 .7 .7) matid=2} Face 320 262 56 182 {rgb=(1 0 0) matid=3} Face 321 25 270 173 {rgb=(1 0 0) matid=3} Face 322 25 26 183 {rgb=(1 0 0) matid=3} Face 323 56 188 102 {rgb=(1 0 0) matid=3} Face 324 56 27 184 {rgb=(1 0 0) matid=3} Face 325 52 261 70 {rgb=(.9 .9 .9) matid=0} Face 326 52 119 261 {rgb=(.7 .7 .7) matid=2} Face 327 48 186 136 {rgb=(1 0 0) matid=3} Face 328 48 53 186 {rgb=(1 0 0) matid=3} Face 329 69 187 59 {rgb=(.9 .9 .9) matid=0} Face 330 69 58 207 {rgb=(0 0 0) matid=1} Face 331 184 188 56 {rgb=(1 0 0) matid=3} Face 332 184 230 188 {rgb=(1 0 0) matid=3} Face 333 67 190 100 {rgb=(1 0 0) matid=3} Face 334 67 164 190 {rgb=(1 0 0) matid=3} Face 335 189 190 164 {rgb=(1 0 0) matid=3} Face 336 191 100 190 {rgb=(1 0 0) matid=3} Face 337 189 191 190 {rgb=(.7 .7 .7) matid=2} Face 338 189 163 191 {rgb=(1 0 0) matid=3} Face 339 135 215 33 {rgb=(.9 .9 .9) matid=0} Face 340 135 237 192 {rgb=(.9 .9 .9) matid=0} Face 341 115 193 109 {rgb=(1 0 0) matid=3} Face 342 115 183 193 {rgb=(1 0 0) matid=3} Face 343 220 194 226 {rgb=(1 0 0) matid=3} Face 344 265 40 249 {rgb=(.9 .9 .9) matid=0} Face 345 77 235 62 {rgb=(.9 .9 .9) matid=0} Face 346 77 180 195 {rgb=(.9 .9 .9) matid=0} Face 347 76 196 234 {rgb=(.9 .9 .9) matid=0} Face 348 243 258 196 {rgb=(.9 .9 .9) matid=0} Face 349 216 197 34 {rgb=(.9 .9 .9) matid=0} Face 350 214 237 197 {rgb=(0 0 0) matid=1} Face 351 192 198 197 {rgb=(0 0 0) matid=1} Face 352 199 237 214 {rgb=(1 0 0) matid=3} Face 353 192 252 198 {rgb=(0 0 0) matid=1} Face 354 192 237 199 {rgb=(0 0 0) matid=1} Face 355 34 200 209 {rgb=(.9 .9 .9) matid=0} Face 356 34 84 200 {rgb=(.9 .9 .9) matid=0} Face 357 71 201 82 {rgb=(0 0 0) matid=1} Face 358 71 114 201 {rgb=(1 0 0) matid=3} Face 359 264 202 124 {rgb=(1 0 0) matid=3} Face 360 264 112 202 {rgb=(.9 .9 .9) matid=0} Face 361 77 203 180 {rgb=(.9 .9 .9) matid=0} Face 362 77 26 203 {rgb=(.9 .9 .9) matid=0} Face 363 123 204 103 {rgb=(1 0 0) matid=3} Face 364 123 150 204 {rgb=(1 0 0) matid=3} Face 365 206 205 124 {rgb=(1 0 0) matid=3} Face 366 122 141 205 {rgb=(1 0 0) matid=3} Face 367 253 206 123 {rgb=(.9 .9 .9) matid=0} Face 368 122 205 206 {rgb=(1 0 0) matid=3} Face 369 187 207 70 {rgb=(0 0 0) matid=1} Face 370 187 69 207 {rgb=(0 0 0) matid=1} Face 371 133 208 244 {rgb=(0 0 0) matid=1} Face 372 133 134 208 {rgb=(.9 .9 .9) matid=0} Face 373 83 209 200 {rgb=(.9 .9 .9) matid=0} Face 374 83 146 209 {rgb=(.9 .9 .9) matid=0} Face 375 153 210 97 {rgb=(.9 .9 .9) matid=0} Face 376 153 120 210 {rgb=(.9 .9 .9) matid=0} Face 377 139 211 37 {rgb=(.9 .9 .9) matid=0} Face 378 212 144 211 {rgb=(.9 .9 .9) matid=0} Face 379 139 224 223 {rgb=(1 0 0) matid=3} Face 380 139 143 212 {rgb=(.9 .9 .9) matid=0} Face 381 135 213 134 {rgb=(.9 .9 .9) matid=0} Face 382 250 257 213 {rgb=(1 0 0) matid=3} Face 383 198 214 197 {rgb=(0 0 0) matid=1} Face 384 198 199 214 {rgb=(1 0 0) matid=3} Face 385 192 215 135 {rgb=(.9 .9 .9) matid=0} Face 386 216 33 215 {rgb=(.9 .9 .9) matid=0} Face 387 192 216 215 {rgb=(.9 .9 .9) matid=0} Face 388 192 197 216 {rgb=(.9 .9 .9) matid=0} Face 389 33 217 36 {rgb=(.9 .9 .9) matid=0} Face 390 33 209 217 {rgb=(.9 .9 .9) matid=0} Face 391 35 218 36 {rgb=(.9 .9 .9) matid=0} Face 392 35 84 218 {rgb=(.9 .9 .9) matid=0} Face 393 221 222 194 {rgb=(1 0 0) matid=3} Face 394 143 157 219 {rgb=(.9 .9 .9) matid=0} Face 395 143 220 226 {rgb=(0 0 0) matid=1} Face 396 143 219 220 {rgb=(1 0 0) matid=3} Face 397 220 221 194 {rgb=(1 0 0) matid=3} Face 398 220 222 221 {rgb=(1 0 0) matid=3} Face 399 219 222 220 {rgb=(1 0 0) matid=3} Face 400 219 194 222 {rgb=(1 0 0) matid=3} Face 401 211 223 225 {rgb=(0 0 0) matid=1} Face 402 211 139 223 {rgb=(0 0 0) matid=1} Face 403 212 224 139 {rgb=(0 0 0) matid=1} Face 404 225 223 224 {rgb=(1 0 0) matid=3} Face 405 272 225 224 {rgb=(1 0 0) matid=3} Face 406 212 211 225 {rgb=(0 0 0) matid=1} Face 407 144 226 249 {rgb=(.9 .9 .9) matid=0} Face 408 144 143 226 {rgb=(.9 .9 .9) matid=0} Face 409 86 227 24 {rgb=(.7 .7 .7) matid=2} Face 410 86 52 227 {rgb=(.9 .9 .9) matid=0} Face 411 101 228 100 {rgb=(1 0 0) matid=3} Face 412 101 179 228 {rgb=(.9 .9 .9) matid=0} Face 413 40 229 155 {rgb=(.9 .9 .9) matid=0} Face 414 40 265 229 {rgb=(.9 .9 .9) matid=0} Face 415 68 230 184 {rgb=(1 0 0) matid=3} Face 416 68 159 230 {rgb=(1 0 0) matid=3} Face 417 29 232 28 {rgb=(.9 .9 .9) matid=0} Face 418 29 31 231 {rgb=(.9 .9 .9) matid=0} Face 419 231 232 29 {rgb=(.9 .9 .9) matid=0} Face 420 231 28 232 {rgb=(.9 .9 .9) matid=0} Face 421 57 233 106 {rgb=(0 0 0) matid=1} Face 422 57 128 233 {rgb=(1 0 0) matid=3} Face 423 75 234 251 {rgb=(.9 .9 .9) matid=0} Face 424 75 76 234 {rgb=(.9 .9 .9) matid=0} Face 425 195 235 77 {rgb=(0 0 0) matid=1} Face 426 195 62 235 {rgb=(.9 .9 .9) matid=0} Face 427 62 236 77 {rgb=(.9 .9 .9) matid=0} Face 428 62 88 236 {rgb=(0 0 0) matid=1} Face 429 134 237 135 {rgb=(.9 .9 .9) matid=0} Face 430 134 197 237 {rgb=(.9 .9 .9) matid=0} Face 431 59 238 101 {rgb=(.9 .9 .9) matid=0} Face 432 59 117 238 {rgb=(.9 .9 .9) matid=0} Face 433 60 239 94 {rgb=(.9 .9 .9) matid=0} Face 434 60 51 239 {rgb=(.9 .9 .9) matid=0} Face 435 239 240 94 {rgb=(.9 .9 .9) matid=0} Face 436 241 74 240 {rgb=(.9 .9 .9) matid=0} Face 437 239 241 240 {rgb=(.9 .9 .9) matid=0} Face 438 239 51 241 {rgb=(.9 .9 .9) matid=0} Face 439 104 242 182 {rgb=(1 0 0) matid=3} Face 440 104 140 263 {rgb=(1 0 0) matid=3} Face 441 76 243 196 {rgb=(.9 .9 .9) matid=0} Face 442 271 157 243 {rgb=(.9 .9 .9) matid=0} Face 443 250 244 257 {rgb=(1 0 0) matid=3} Face 444 135 133 244 {rgb=(0 0 0) matid=1} Face 445 53 245 202 {rgb=(1 0 0) matid=3} Face 446 53 115 245 {rgb=(1 0 0) matid=3} Face 447 102 246 182 {rgb=(1 0 0) matid=3} Face 448 102 230 246 {rgb=(0 0 0) matid=1} Face 449 74 247 161 {rgb=(0 0 0) matid=1} Face 450 74 241 247 {rgb=(.9 .9 .9) matid=0} Face 451 110 248 145 {rgb=(.9 .9 .9) matid=0} Face 452 110 63 248 {rgb=(0 0 0) matid=1} Face 453 194 249 226 {rgb=(1 0 0) matid=3} Face 454 194 219 249 {rgb=(0 0 0) matid=1} Face 455 135 250 213 {rgb=(0 0 0) matid=1} Face 456 135 244 250 {rgb=(1 0 0) matid=3} Face 457 38 251 234 {rgb=(.9 .9 .9) matid=0} Face 458 38 40 251 {rgb=(.9 .9 .9) matid=0} Face 459 199 252 192 {rgb=(0 0 0) matid=1} Face 460 199 198 252 {rgb=(1 0 0) matid=3} Face 461 255 254 123 {rgb=(.9 .9 .9) matid=0} Face 462 122 206 253 {rgb=(.9 .9 .9) matid=0} Face 463 253 254 255 {rgb=(.9 .9 .9) matid=0} Face 464 253 123 254 {rgb=(.9 .9 .9) matid=0} Face 465 122 255 123 {rgb=(.9 .9 .9) matid=0} Face 466 122 253 255 {rgb=(.9 .9 .9) matid=0} Face 467 41 256 45 {rgb=(1 0 0) matid=3} Face 468 41 43 256 {rgb=(1 0 0) matid=3} Face 469 208 257 244 {rgb=(0 0 0) matid=1} Face 470 208 213 257 {rgb=(1 0 0) matid=3} Face 471 157 258 243 {rgb=(.9 .9 .9) matid=0} Face 472 157 143 258 {rgb=(.9 .9 .9) matid=0} Face 473 148 259 147 {rgb=(0 0 0) matid=1} Face 474 148 35 259 {rgb=(.9 .9 .9) matid=0} Face 475 27 260 99 {rgb=(1 0 0) matid=3} Face 476 27 121 260 {rgb=(1 0 0) matid=3} Face 477 185 261 119 {rgb=(.7 .7 .7) matid=2} Face 478 185 70 261 {rgb=(.9 .9 .9) matid=0} Face 479 103 262 182 {rgb=(.7 .7 .7) matid=2} Face 480 103 204 262 {rgb=(1 0 0) matid=3} Face 481 242 263 174 {rgb=(1 0 0) matid=3} Face 482 242 104 263 {rgb=(1 0 0) matid=3} Face 483 49 264 205 {rgb=(.9 .9 .9) matid=0} Face 484 49 96 264 {rgb=(.9 .9 .9) matid=0} Face 485 219 265 249 {rgb=(.9 .9 .9) matid=0} Face 486 219 157 265 {rgb=(.9 .9 .9) matid=0} Face 487 54 266 68 {rgb=(1 0 0) matid=3} Face 488 54 100 266 {rgb=(1 0 0) matid=3} Face 489 84 267 218 {rgb=(.9 .9 .9) matid=0} Face 490 84 34 267 {rgb=(.9 .9 .9) matid=0} Face 491 10 268 9 {rgb=(1 0 0) matid=3} Face 492 10 11 268 {rgb=(1 0 0) matid=3} Face 493 145 269 79 {rgb=(.9 .9 .9) matid=0} Face 494 145 107 269 {rgb=(.9 .9 .9) matid=0} Face 495 183 270 25 {rgb=(1 0 0) matid=3} Face 496 183 55 270 {rgb=(1 0 0) matid=3} Face 497 76 271 243 {rgb=(.9 .9 .9) matid=0} Face 498 76 155 271 {rgb=(.9 .9 .9) matid=0} Face 499 212 272 224 {rgb=(0 0 0) matid=1} Face 500 212 225 272 {rgb=(0 0 0) matid=1} ================================================ FILE: models/cessna_color500.m ================================================ Vertex 1 -11.2429 -3.34616 -7.6444 Vertex 2 -11.4049 -3.2215 -7.5698 Vertex 3 -11.348 -3.47795 -7.71857 Vertex 4 -11.3587 -5.03145 -4.69954 {wid=4 normal=(-0.480307 -0.421307 0.769289)} Vertex 5 -11.2317 -3.07954 -7.70508 Vertex 6 -11.3373 0.265308 -7.80791 {wid=6 normal=(0.568751 0.802705 -0.179404)} Vertex 7 -11.3929 -3.07629 -7.97425 Vertex 8 -11.3996 -3.07894 -7.7704 Vertex 9 -11.2704 -3.41977 -7.92181 Vertex 10 -11.4072 -4.92862 -10.2727 {wid=10 normal=(-0.642357 -0.747387 -0.169675)} Vertex 11 -11.2997 -3.27368 -8.00828 Vertex 12 -11.2567 -4.67238 5.63925 {wid=12 normal=(0.97715 -0.208317 0.0422058)} Vertex 13 -11.3409 -5.00291 4.74338 {wid=13 normal=(0.482832 -0.348481 -0.803389)} Vertex 14 -11.4337 -4.30584 5.54256 {wid=14 normal=(-0.548494 0.701792 -0.45458)} Vertex 15 -11.3279 -3.48714 7.18154 {wid=15 normal=(0.213196 0.934134 0.286253)} Vertex 16 -11.3632 -4.15839 6.44287 {wid=16 normal=(-0.727495 -0.441826 0.52492)} Vertex 17 -11.2607 -0.885498 7.81201 {wid=17 normal=(0.981727 0.0477817 0.1842)} Vertex 18 -11.4144 -0.465431 8.01354 {wid=18 normal=(-0.747693 0.130349 0.651125)} Vertex 19 -11.3156 0.05431 7.75596 {wid=19 normal=(-0.63617 0.451151 -0.6259)} Vertex 20 -11.2389 -4.73976 10.5342 {wid=20 normal=(0.931628 -0.170003 0.321198)} Vertex 21 -11.4135 -4.96246 10.3438 {wid=21 normal=(-0.69186 -0.72021 -0.0512478)} Vertex 22 -11.3323 -4.45603 10.2159 {wid=22 normal=(-0.697642 0.421768 0.579144)} Vertex 23 -11.3419 -3.37287 7.94242 {wid=23 normal=(0.153945 0.14102 -0.977964)} Vertex 24 -2.56373 -5.02805 0.899863 Vertex 25 -0.157729 -4.91732 0.928425 Vertex 26 -0.164229 -5.02968 -0.893371 Vertex 27 -1.78791 -4.30222 -2.48474 Vertex 28 -11.3489 -3.70489 -7.79146 Vertex 29 -11.1305 -3.10882 -8.33526 Vertex 30 -11.386 -3.33254 -8.33538 Vertex 31 -11.7354 -2.84954 -8.0453 Vertex 32 -11.3586 -3.0958 -7.34579 Vertex 33 -10.109 -2.85502 -6.56999 Vertex 34 -10.1863 -4.21425 -6.62607 Vertex 35 1.89827 -4.05522 -9.14679 Vertex 36 -10.1031 -2.86381 -8.96068 Vertex 37 -10.1781 -4.21366 6.59512 Vertex 38 -10.1241 -2.90343 6.4078 Vertex 39 -0.829151 -3.70095 8.63871 Vertex 40 -10.0932 -2.74701 8.6081 Vertex 41 -11.0998 -3.74205 7.82856 Vertex 42 -12.5183 -3.25372 7.79196 {wid=42 normal=(-0.950984 0.221551 -0.21574)} Vertex 43 -11.1762 -2.92501 8.20368 Vertex 44 -11.142 -2.91983 7.40455 Vertex 45 -11.2977 -3.50282 7.37258 Vertex 46 -11.4076 -3.08184 7.84094 {wid=46 normal=(-0.461616 -0.886923 0.0166762)} Vertex 47 -11.4254 -3.35667 -7.95766 Vertex 48 18.9516 -2.31453 0.522404 Vertex 49 -0.155335 -0.216196 0.0961053 Vertex 50 -0.347151 -4.50954 -6.42412 Vertex 51 -2.70998 -3.38206 -22.1529 Vertex 52 -3.18481 -4.11531 13.3012 Vertex 53 18.927 -2.3574 -0.108172 Vertex 54 -7.39831 -4.63184 2.15221 Vertex 55 7.41935 -3.84473 2.10658 Vertex 56 -12.5087 -2.54419 -2.42289 {wid=104 normal=(-0.133085 0.503185 -0.853869)} Vertex 57 12.533 -2.58462 -1.47224 Vertex 58 -7.23466 -4.18859 10.2562 Vertex 59 -4.91658 -3.35218 16.1792 {wid=96 normal=(0.0311356 0.997932 -0.0562134)} Vertex 60 -0.680317 -4.14481 -10.2505 Vertex 61 -0.681453 -4.29603 -10.2509 Vertex 62 -7.31656 -4.10195 -10.2588 Vertex 63 12.5618 0.515457 0.244445 Vertex 64 21.6703 5.09033 -0.0944992 Vertex 65 15.7337 -1.06548 -0.182942 {wid=129 normal=(0.000632898 -0.00110735 -0.999999)} Vertex 66 5.98 -0.733647 -1.35195 Vertex 67 1.24305 -1.63884 2.40269 Vertex 68 -13.4191 -5.16651 0.672846 {wid=58 normal=(-0.132755 -0.975776 0.173886)} Vertex 69 -6.72557 -3.83223 10.2578 Vertex 70 -6.20573 -3.42215 22.1539 Vertex 71 13.0416 -2.34073 1.44625 Vertex 72 13.9185 -2.42451 8.54118 {wid=148 normal=(-0.103556 0.905003 0.412609)} Vertex 73 16.7063 -2.50268 8.61671 Vertex 74 -6.70658 -3.74122 -10.252 Vertex 75 1.88454 -4.18869 6.60922 Vertex 76 1.87813 -4.30066 9.09842 Vertex 77 -7.31276 -4.6197 -2.6485 Vertex 78 17.622 4.05037 0.240187 Vertex 79 18.192 5.03987 -0.198878 Vertex 80 12.6226 -2.68184 -1.46117 Vertex 81 13.9495 -2.37125 -7.00607 {wid=203 normal=(-0.088637 0.996008 -0.0105575)} Vertex 82 13.3137 -2.58751 8.61806 Vertex 83 1.87295 -4.22788 -6.53973 Vertex 84 1.87204 -4.61032 -9.10595 Vertex 85 -0.326997 -4.38949 6.4326 Vertex 86 -0.343544 -4.54461 6.43121 Vertex 87 17.9382 -2.49078 -0.846229 Vertex 88 -6.32957 -3.37292 -22.1607 Vertex 89 13.9184 -2.42149 7.0258 Vertex 90 17.9342 -2.5033 0.870213 Vertex 91 -7.36194 -4.33265 6.42929 Vertex 92 16.7232 -2.53142 -8.593 Vertex 93 13.261 -2.62506 -8.51971 Vertex 94 -2.61083 -4.10085 -6.43229 {wid=217 normal=(0.0770319 0.995635 0.0526972)} Vertex 95 14.4305 0.0924068 0.244909 Vertex 96 11.6542 -0.258267 0.195894 Vertex 97 12.7237 0.285452 -0.223774 Vertex 98 -7.03889 -4.71171 2.66272 Vertex 99 -0.157895 -4.65733 -2.29819 Vertex 100 -5.9328 -4.05909 2.54482 Vertex 101 -2.59553 -4.29708 2.44597 Vertex 102 -18.8386 -2.73165 -0.640777 Vertex 103 -7.90715 -0.426592 -1.40047 Vertex 104 -11.8881 -2.38622 2.30811 {wid=240 normal=(-0.0930617 0.551171 0.829187)} Vertex 105 14.1638 -2.37695 7.01053 {wid=244 normal=(-0.0592293 0.998206 0.00871955)} Vertex 106 13.318 -2.54942 -8.59581 Vertex 107 21.6746 5.09423 0.166146 Vertex 108 13.9039 -2.45869 -8.51982 Vertex 109 17.9373 -2.577 -0.860383 Vertex 110 16.7483 4.12514 -0.218186 Vertex 111 12.6206 -2.68089 1.48057 Vertex 112 11.6505 -0.246442 -0.173479 Vertex 113 7.44839 -0.824882 1.3836 Vertex 114 10.8002 -2.73151 1.6626 Vertex 115 18.9667 -2.81345 0.028035 Vertex 116 14.2278 -2.4148 -8.5175 {wid=270 normal=(-0.0626757 0.939419 -0.336993)} Vertex 117 -2.74513 -3.29139 22.1529 Vertex 118 -2.20946 -3.5291 19.1112 Vertex 119 -1.18565 -4.0002 13.303 Vertex 120 19.5014 4.01321 -0.227995 {wid=131 normal=(-0.0443805 0.028597 -0.998605)} Vertex 121 -0.97767 -1.60334 -2.55209 Vertex 122 -4.52032 -0.180064 0.0999518 Vertex 123 -5.70519 -0.113574 -0.0803541 Vertex 124 -1.80493 -0.488807 -1.5941 Vertex 125 4.33029 -1.56825 -2.16363 Vertex 126 5.91939 -0.815866 -1.3384 Vertex 127 4.32513 -0.724012 -1.38619 Vertex 128 5.38612 -1.6617 -2.08027 Vertex 129 5.34176 -1.66417 -2.01575 Vertex 130 -5.93758 -1.8574 -2.52584 Vertex 131 -8.28549 -2.00594 -2.22972 Vertex 132 19.5093 4.02176 0.290085 {wid=166 normal=(-0.0474592 0.0301069 0.998419)} Vertex 133 -10.9267 -2.98422 -8.73647 Vertex 134 -10.9992 -3.74193 -7.85734 Vertex 135 -10.8725 -2.98623 -8.15301 Vertex 136 9.01751 -0.830129 0.199173 Vertex 137 18.9841 4.03192 0.191109 Vertex 138 15.7159 -1.05377 0.243501 {wid=318 normal=(0.000248315 -0.000615363 1)} Vertex 139 -10.8341 -3.57906 7.51761 Vertex 140 -5.75294 -1.70342 2.46916 Vertex 141 -2.55951 -0.481386 1.56852 Vertex 142 -4.53111 -0.461747 1.57312 Vertex 143 -10.8977 -3.62409 8.11986 Vertex 144 -10.9888 -2.88766 7.52823 Vertex 145 18.2931 5.02525 0.231181 Vertex 146 -0.797783 -3.65046 -6.91484 Vertex 147 -0.727876 -3.76185 -8.67229 Vertex 148 -0.221925 -3.87452 -6.96214 Vertex 149 -3.53483 -1.66275 -2.56435 Vertex 150 -4.51184 -0.474176 -1.57239 Vertex 151 -2.5496 -0.518823 -1.57355 Vertex 152 17.9364 -2.5965 0.875425 Vertex 153 18.1362 4.06445 -0.213771 {wid=223 normal=(-0.104867 0.0854302 -0.99081)} Vertex 154 -0.500571 -3.80422 6.98172 Vertex 155 1.89831 -4.04665 9.17964 Vertex 156 -0.107641 -3.90075 8.60855 Vertex 157 -10.1703 -3.91777 9.19468 Vertex 158 -2.87451 -3.68042 13.2994 Vertex 159 -15.7825 -3.7188 1.9209 {wid=357 normal=(-0.247504 -0.245989 0.93714)} Vertex 160 -10.1796 -4.00965 -9.18925 Vertex 161 -6.66847 -3.28092 -22.1023 Vertex 162 4.31389 -0.651154 1.41559 Vertex 163 -3.53113 -1.61347 2.55292 Vertex 164 0.433884 -0.582514 1.54366 Vertex 165 -7.25432 -4.41878 2.63562 Vertex 166 4.29944 -0.637923 -1.39304 Vertex 167 4.29738 -1.64236 -2.23572 Vertex 168 2.0649 -0.647234 -1.44438 Vertex 169 0.436211 -0.587284 -1.53176 Vertex 170 2.06066 -1.60696 -2.16935 Vertex 171 0.43847 -1.56637 -2.31813 Vertex 172 -0.161153 -0.595432 -1.55352 Vertex 173 -0.155476 -4.6494 2.29512 Vertex 174 -7.5843 -0.482669 1.44317 Vertex 175 17.6236 4.04994 -0.197454 Vertex 176 4.78088 -1.69215 2.19724 Vertex 177 2.06253 -0.645579 1.45547 Vertex 178 5.92868 -0.800311 1.32182 Vertex 179 -2.30035 -4.12298 6.43014 Vertex 180 -5.22995 -4.1043 -2.48562 Vertex 181 -2.34961 -4.32589 -2.44089 Vertex 182 -10.4597 -1.50028 0.0107484 Vertex 183 6.01935 -4.9906 0.538016 {wid=411 normal=(0.114029 -0.976308 0.18391)} Vertex 184 -12.7776 -4.72668 -1.92254 {wid=413 normal=(-0.172949 -0.757292 -0.62976)} Vertex 185 -2.2113 -3.63405 19.1134 Vertex 186 17.9329 -2.14106 0.233672 Vertex 187 -6.34083 -3.04867 22.1537 Vertex 188 -18.594 -3.59686 -0.850123 Vertex 189 -1.80655 -0.513929 1.59308 Vertex 190 -0.0442178 -1.05337 2.05687 Vertex 191 -1.80483 -1.52721 2.38196 Vertex 192 -10.9788 -2.96562 -7.40955 Vertex 193 6.62733 -4.39231 -1.88787 {wid=433 normal=(0.11445 -0.692556 -0.712227)} Vertex 194 -10.7185 -3.23019 8.88245 Vertex 195 -6.66258 -4.22551 -2.65608 Vertex 196 0.113585 -4.72375 7.03528 {wid=440 normal=(0.0873309 -0.986954 -0.135257)} Vertex 197 -10.9794 -3.53973 -6.91143 Vertex 198 -10.7174 -3.25631 -6.7385 Vertex 199 -10.7323 -3.27169 -7.28108 Vertex 200 0.120021 -4.64414 -7.0153 {wid=453 normal=(0.0873311 -0.986955 0.135253)} Vertex 201 12.5309 -2.58367 1.49134 Vertex 202 5.85763 -0.436522 -0.174432 Vertex 203 -7.42621 -4.5569 -2.14161 Vertex 204 -6.56681 -0.361699 -1.54156 Vertex 205 -1.38067 -0.219921 0.0537108 Vertex 206 -4.52018 -0.180127 -0.0995772 Vertex 207 -6.69859 -3.26684 22.1023 Vertex 208 -10.8643 -3.45108 -8.91629 Vertex 209 -4.73055 -3.71208 -6.01487 {wid=474 normal=(-0.023954 -0.00848351 0.999677)} Vertex 210 18.9719 4.02605 -0.161307 Vertex 211 -10.9657 -3.4203 6.72008 Vertex 212 -10.9469 -3.06758 7.39378 Vertex 213 -10.7604 -3.51892 -8.13956 Vertex 214 -10.6956 -3.39843 -6.73132 Vertex 215 -10.9269 -3.03472 -6.74505 Vertex 216 -10.9668 -3.43513 -6.70503 Vertex 217 -10.086 -2.6029 -7.04492 Vertex 218 1.88239 -4.21696 -9.43036 Vertex 219 -10.7647 -3.41076 8.89897 Vertex 220 -10.7081 -3.32619 8.2115 Vertex 221 -10.7824 -3.32873 8.24463 Vertex 222 -10.7836 -3.34609 8.24264 Vertex 223 -10.7301 -3.36097 6.73802 Vertex 224 -10.7259 -3.29055 7.39937 Vertex 225 -10.7061 -3.23231 6.74842 Vertex 226 -10.7993 -3.04093 8.0836 Vertex 227 -2.67724 -4.56771 6.42878 Vertex 228 -2.17541 -4.33423 2.41826 Vertex 229 -10.1199 -3.08132 9.15233 Vertex 230 -18.6137 -4.13116 0.260052 Vertex 231 -11.1057 -3.00842 -7.31792 Vertex 232 -11.2548 -3.78379 -7.73023 Vertex 233 13.0489 -2.36527 -1.4537 Vertex 234 1.88226 -4.26161 6.37999 Vertex 235 -7.34806 -4.34749 -6.42995 Vertex 236 -6.60953 -4.32779 -10.2621 Vertex 237 -10.7778 -3.57402 -7.45905 Vertex 238 -3.58889 -3.34245 19.1058 Vertex 239 -3.41283 -3.34426 -19.1126 Vertex 240 -3.17376 -3.66956 -13.2955 Vertex 241 -3.73098 -3.31078 -19.1087 Vertex 242 -8.7713 -1.98459 2.02962 Vertex 243 0.108643 -4.78798 8.63168 {wid=574 normal=(0.0959302 -0.985378 0.140811)} Vertex 244 -10.6705 -3.12961 -8.85484 Vertex 245 18.9466 -2.34038 -0.501887 Vertex 246 -18.6536 -2.75862 0.874513 Vertex 247 -6.30475 -3.09574 -22.1006 Vertex 248 16.7613 4.11029 0.247038 Vertex 249 -10.7726 -3.07436 8.76595 Vertex 250 -10.6979 -3.2099 -8.1977 Vertex 251 -7.88719 -2.79595 6.52165 {wid=599 normal=(-0.0651825 0.945152 -0.320062)} Vertex 252 -10.6437 -2.93944 -7.44027 Vertex 253 -3.44249 0.509074 -0.00321054 Vertex 254 -3.82656 0.497653 -0.0328462 Vertex 255 -3.8266 0.497674 0.0318818 Vertex 256 -11.2992 -3.61146 8.18574 Vertex 257 -10.7101 -3.33316 -8.87937 Vertex 258 -10.1897 -4.33301 7.82632 Vertex 259 -0.246129 -3.86686 -8.62854 Vertex 260 -0.132844 -4.65091 -2.49338 Vertex 261 -3.74921 -3.63669 19.1115 Vertex 262 -8.76556 -1.96748 -2.06073 Vertex 263 -8.26894 -2.00362 2.27298 Vertex 264 -0.157205 -0.257352 -0.101252 Vertex 265 -10.9386 -3.10207 8.91951 Vertex 266 -7.27698 -4.44622 2.40803 Vertex 267 -5.56821 -4.57212 -8.98866 {wid=654 normal=(-0.0656472 -0.875847 -0.478102)} Vertex 268 -11.3521 -4.84434 -10.6985 {wid=655 normal=(-0.796085 0.365992 -0.481974)} Vertex 269 18.7598 5.13164 0.0765112 Vertex 270 -0.106297 -4.62612 2.24659 {wid=658 normal=(0.162303 -0.736057 0.657176)} Vertex 271 1.8883 -4.17104 9.36989 Vertex 272 -10.685 -3.02375 7.42784 Face 1 2 3 4 {rgb=(1 0 0) matid=3} Face 2 18 17 19 {rgb=(1 0 0) matid=3} Face 3 251 40 39 {rgb=(.9 .9 .9) matid=0} Face 4 14 16 15 {rgb=(1 0 0) matid=3} Face 5 7 6 5 {rgb=(1 0 0) matid=3} Face 6 6 7 8 {rgb=(1 0 0) matid=3} Face 7 12 14 15 {rgb=(1 0 0) matid=3} Face 8 234 37 38 {rgb=(.9 .9 .9) matid=0} Face 9 13 12 16 {rgb=(1 0 0) matid=3} Face 10 42 45 256 {rgb=(1 0 0) matid=3} Face 11 19 46 18 {rgb=(1 0 0) matid=3} Face 12 8 5 6 {rgb=(1 0 0) matid=3} Face 13 21 20 22 {rgb=(1 0 0) matid=3} Face 14 37 211 38 {rgb=(.9 .9 .9) matid=0} Face 15 9 47 10 {rgb=(1 0 0) matid=3} Face 16 217 35 36 {rgb=(.9 .9 .9) matid=0} Face 17 8 7 5 {rgb=(1 0 0) matid=3} Face 18 29 30 31 {rgb=(.9 .9 .9) matid=0} Face 19 23 22 20 {rgb=(1 0 0) matid=3} Face 20 229 271 155 {rgb=(.9 .9 .9) matid=0} Face 21 26 25 24 {rgb=(1 0 0) matid=3} Face 22 13 14 12 {rgb=(1 0 0) matid=3} Face 23 10 47 11 {rgb=(1 0 0) matid=3} Face 24 28 30 29 {rgb=(.9 .9 .9) matid=0} Face 25 28 32 31 {rgb=(.9 .9 .9) matid=0} Face 26 1 2 4 {rgb=(1 0 0) matid=3} Face 27 14 13 16 {rgb=(1 0 0) matid=3} Face 28 28 31 30 {rgb=(.9 .9 .9) matid=0} Face 29 42 44 45 {rgb=(1 0 0) matid=3} Face 30 4 3 1 {rgb=(1 0 0) matid=3} Face 31 28 231 32 {rgb=(.9 .9 .9) matid=0} Face 32 23 21 22 {rgb=(1 0 0) matid=3} Face 33 43 42 256 {rgb=(1 0 0) matid=3} Face 34 32 231 31 {rgb=(.9 .9 .9) matid=0} Face 35 91 58 69 {rgb=(.9 .9 .9) matid=0} Face 36 12 15 16 {rgb=(1 0 0) matid=3} Face 37 33 36 133 {rgb=(.9 .9 .9) matid=0} Face 38 68 26 24 {rgb=(1 0 0) matid=3} Face 39 41 44 43 {rgb=(1 0 0) matid=3} Face 40 9 11 47 {rgb=(1 0 0) matid=3} Face 41 34 209 33 {rgb=(.9 .9 .9) matid=0} Face 42 26 193 183 {rgb=(1 0 0) matid=3} Face 43 41 45 44 {rgb=(1 0 0) matid=3} Face 44 42 43 44 {rgb=(1 0 0) matid=3} Face 45 46 17 18 {rgb=(1 0 0) matid=3} Face 46 21 23 20 {rgb=(1 0 0) matid=3} Face 47 19 17 46 {rgb=(1 0 0) matid=3} Face 48 1 3 2 {rgb=(1 0 0) matid=3} Face 49 268 11 9 {rgb=(1 0 0) matid=3} Face 50 267 160 218 {rgb=(.9 .9 .9) matid=0} Face 51 260 193 99 {rgb=(1 0 0) matid=3} Face 52 66 202 245 {rgb=(1 0 0) matid=3} Face 53 113 178 176 {rgb=(1 0 0) matid=3} Face 54 113 48 136 {rgb=(1 0 0) matid=3} Face 55 26 99 193 {rgb=(1 0 0) matid=3} Face 56 236 51 61 {rgb=(.9 .9 .9) matid=0} Face 57 247 88 161 {rgb=(0 0 0) matid=1} Face 58 60 61 51 {rgb=(.9 .9 .9) matid=0} Face 59 119 52 86 {rgb=(.9 .9 .9) matid=0} Face 60 59 165 69 {rgb=(.9 .9 .9) matid=0} Face 61 186 138 136 {rgb=(.9 .9 .9) matid=0} Face 62 193 260 109 {rgb=(1 0 0) matid=3} Face 63 67 100 55 {rgb=(1 0 0) matid=3} Face 64 184 26 68 {rgb=(1 0 0) matid=3} Face 65 173 55 100 {rgb=(1 0 0) matid=3} Face 66 183 115 55 {rgb=(1 0 0) matid=3} Face 67 233 66 245 {rgb=(1 0 0) matid=3} Face 68 203 26 184 {rgb=(1 0 0) matid=3} Face 69 260 80 109 {rgb=(1 0 0) matid=3} Face 70 27 56 130 {rgb=(1 0 0) matid=3} Face 71 98 58 91 {rgb=(.9 .9 .9) matid=0} Face 72 24 52 58 {rgb=(.9 .9 .9) matid=0} Face 73 85 119 86 {rgb=(.9 .9 .9) matid=0} Face 74 101 100 59 {rgb=(.9 .9 .9) matid=0} Face 75 195 74 62 {rgb=(.9 .9 .9) matid=0} Face 76 27 50 60 {rgb=(.9 .9 .9) matid=0} Face 77 50 61 60 {rgb=(.9 .9 .9) matid=0} Face 78 50 236 61 {rgb=(.9 .9 .9) matid=0} Face 79 26 236 50 {rgb=(.9 .9 .9) matid=0} Face 80 26 77 236 {rgb=(.9 .9 .9) matid=0} Face 81 132 137 186 {rgb=(.9 .9 .9) matid=0} Face 82 97 112 63 {rgb=(.9 .9 .9) matid=0} Face 83 53 107 186 {rgb=(.9 .9 .9) matid=0} Face 84 248 63 78 {rgb=(0 0 0) matid=1} Face 85 53 65 120 {rgb=(.9 .9 .9) matid=0} Face 86 53 202 65 {rgb=(.9 .9 .9) matid=0} Face 87 262 204 131 {rgb=(1 0 0) matid=3} Face 88 141 49 205 {rgb=(1 0 0) matid=3} Face 89 103 174 123 {rgb=(1 0 0) matid=3} Face 90 188 230 102 {rgb=(0 0 0) matid=1} Face 91 54 68 24 {rgb=(1 0 0) matid=3} Face 92 266 104 159 {rgb=(1 0 0) matid=3} Face 93 117 187 70 {rgb=(.9 .9 .9) matid=0} Face 94 117 59 187 {rgb=(.9 .9 .9) matid=0} Face 95 58 70 207 {rgb=(0 0 0) matid=1} Face 96 58 52 70 {rgb=(.9 .9 .9) matid=0} Face 97 55 113 176 {rgb=(1 0 0) matid=3} Face 98 72 105 89 {rgb=(.9 .9 .9) matid=0} Face 99 82 72 71 {rgb=(.9 .9 .9) matid=0} Face 100 82 73 72 {rgb=(.9 .9 .9) matid=0} Face 101 152 73 82 {rgb=(.9 .9 .9) matid=0} Face 102 152 90 73 {rgb=(.9 .9 .9) matid=0} Face 103 94 74 180 {rgb=(.9 .9 .9) matid=0} Face 104 241 51 247 {rgb=(.9 .9 .9) matid=0} Face 105 154 75 251 {rgb=(.9 .9 .9) matid=0} Face 106 155 76 75 {rgb=(.9 .9 .9) matid=0} Face 107 157 271 229 {rgb=(.9 .9 .9) matid=0} Face 108 37 234 196 {rgb=(.9 .9 .9) matid=0} Face 109 27 203 184 {rgb=(1 0 0) matid=3} Face 110 180 74 195 {rgb=(.9 .9 .9) matid=0} Face 111 107 132 186 {rgb=(.9 .9 .9) matid=0} Face 112 64 79 269 {rgb=(.9 .9 .9) matid=0} Face 113 65 210 120 {rgb=(.9 .9 .9) matid=0} Face 114 97 63 110 {rgb=(0 0 0) matid=1} Face 115 57 80 260 {rgb=(1 0 0) matid=3} Face 116 92 109 80 {rgb=(.9 .9 .9) matid=0} Face 117 57 106 93 {rgb=(0 0 0) matid=1} Face 118 87 109 92 {rgb=(.9 .9 .9) matid=0} Face 119 111 82 201 {rgb=(0 0 0) matid=1} Face 120 111 152 82 {rgb=(.9 .9 .9) matid=0} Face 121 35 83 84 {rgb=(.9 .9 .9) matid=0} Face 122 35 217 147 {rgb=(.9 .9 .9) matid=0} Face 123 200 84 83 {rgb=(.9 .9 .9) matid=0} Face 124 34 160 267 {rgb=(.9 .9 .9) matid=0} Face 125 25 85 86 {rgb=(.7 .7 .7) matid=2} Face 126 101 158 179 {rgb=(.9 .9 .9) matid=0} Face 127 24 227 52 {rgb=(.9 .9 .9) matid=0} Face 128 24 25 86 {rgb=(.7 .7 .7) matid=2} Face 129 233 87 81 {rgb=(.9 .9 .9) matid=0} Face 130 233 245 87 {rgb=(1 0 0) matid=3} Face 131 51 88 247 {rgb=(.9 .9 .9) matid=0} Face 132 51 236 88 {rgb=(.9 .9 .9) matid=0} Face 133 71 89 105 {rgb=(.9 .9 .9) matid=0} Face 134 71 72 89 {rgb=(.9 .9 .9) matid=0} Face 135 71 90 48 {rgb=(1 0 0) matid=3} Face 136 71 73 90 {rgb=(.9 .9 .9) matid=0} Face 137 165 91 69 {rgb=(.9 .9 .9) matid=0} Face 138 165 98 91 {rgb=(0 0 0) matid=1} Face 139 106 92 93 {rgb=(.9 .9 .9) matid=0} Face 140 81 87 92 {rgb=(.9 .9 .9) matid=0} Face 141 80 93 92 {rgb=(.9 .9 .9) matid=0} Face 142 80 57 93 {rgb=(0 0 0) matid=1} Face 143 60 94 27 {rgb=(.9 .9 .9) matid=0} Face 144 240 74 94 {rgb=(.9 .9 .9) matid=0} Face 145 63 95 78 {rgb=(0 0 0) matid=1} Face 146 63 112 96 {rgb=(.9 .9 .9) matid=0} Face 147 95 96 136 {rgb=(.9 .9 .9) matid=0} Face 148 95 63 96 {rgb=(.9 .9 .9) matid=0} Face 149 65 97 210 {rgb=(.9 .9 .9) matid=0} Face 150 65 112 97 {rgb=(.9 .9 .9) matid=0} Face 151 24 98 54 {rgb=(.9 .9 .9) matid=0} Face 152 24 58 98 {rgb=(.9 .9 .9) matid=0} Face 153 50 99 26 {rgb=(.9 .9 .9) matid=0} Face 154 50 27 99 {rgb=(.9 .9 .9) matid=0} Face 155 266 100 104 {rgb=(1 0 0) matid=3} Face 156 165 59 100 {rgb=(.9 .9 .9) matid=0} Face 157 173 228 179 {rgb=(.7 .7 .7) matid=2} Face 158 173 100 228 {rgb=(1 0 0) matid=3} Face 159 104 246 159 {rgb=(1 0 0) matid=3} Face 160 104 182 246 {rgb=(1 0 0) matid=3} Face 161 56 262 131 {rgb=(1 0 0) matid=3} Face 162 56 102 182 {rgb=(1 0 0) matid=3} Face 163 140 104 100 {rgb=(1 0 0) matid=3} Face 164 174 182 242 {rgb=(.7 .7 .7) matid=2} Face 165 73 105 72 {rgb=(.9 .9 .9) matid=0} Face 166 73 71 105 {rgb=(.9 .9 .9) matid=0} Face 167 81 106 233 {rgb=(.9 .9 .9) matid=0} Face 168 81 108 106 {rgb=(.9 .9 .9) matid=0} Face 169 64 107 53 {rgb=(.9 .9 .9) matid=0} Face 170 64 269 107 {rgb=(.9 .9 .9) matid=0} Face 171 116 108 81 {rgb=(.9 .9 .9) matid=0} Face 172 116 106 108 {rgb=(.9 .9 .9) matid=0} Face 173 245 109 87 {rgb=(1 0 0) matid=3} Face 174 245 115 109 {rgb=(1 0 0) matid=3} Face 175 79 110 145 {rgb=(.9 .9 .9) matid=0} Face 176 175 97 110 {rgb=(0 0 0) matid=1} Face 177 114 111 201 {rgb=(1 0 0) matid=3} Face 178 114 152 111 {rgb=(1 0 0) matid=3} Face 179 202 112 65 {rgb=(.9 .9 .9) matid=0} Face 180 264 96 112 {rgb=(.9 .9 .9) matid=0} Face 181 71 113 114 {rgb=(1 0 0) matid=3} Face 182 71 48 113 {rgb=(1 0 0) matid=3} Face 183 55 114 113 {rgb=(.7 .7 .7) matid=2} Face 184 55 115 114 {rgb=(1 0 0) matid=3} Face 185 48 115 53 {rgb=(1 0 0) matid=3} Face 186 152 114 115 {rgb=(1 0 0) matid=3} Face 187 92 116 81 {rgb=(.9 .9 .9) matid=0} Face 188 92 106 116 {rgb=(.9 .9 .9) matid=0} Face 189 185 117 70 {rgb=(.9 .9 .9) matid=0} Face 190 118 238 117 {rgb=(.9 .9 .9) matid=0} Face 191 185 118 117 {rgb=(.9 .9 .9) matid=0} Face 192 185 119 118 {rgb=(.7 .7 .7) matid=2} Face 193 158 119 85 {rgb=(.9 .9 .9) matid=0} Face 194 158 118 119 {rgb=(.7 .7 .7) matid=2} Face 195 64 120 79 {rgb=(.9 .9 .9) matid=0} Face 196 64 53 120 {rgb=(.9 .9 .9) matid=0} Face 197 57 167 128 {rgb=(1 0 0) matid=3} Face 198 57 260 167 {rgb=(1 0 0) matid=3} Face 199 124 205 264 {rgb=(1 0 0) matid=3} Face 200 123 141 122 {rgb=(1 0 0) matid=3} Face 201 124 123 206 {rgb=(1 0 0) matid=3} Face 202 124 150 123 {rgb=(1 0 0) matid=3} Face 203 66 166 202 {rgb=(1 0 0) matid=3} Face 204 125 167 166 {rgb=(.3 .3 .3) matid=4} Face 205 126 127 166 {rgb=(.3 .3 .3) matid=4} Face 206 66 233 128 {rgb=(1 0 0) matid=3} Face 207 66 126 166 {rgb=(.3 .3 .3) matid=4} Face 208 66 128 126 {rgb=(.3 .3 .3) matid=4} Face 209 125 127 126 {rgb=(.7 .7 .7) matid=2} Face 210 125 166 127 {rgb=(.3 .3 .3) matid=4} Face 211 125 128 167 {rgb=(.3 .3 .3) matid=4} Face 212 129 126 128 {rgb=(.3 .3 .3) matid=4} Face 213 125 129 128 {rgb=(.3 .3 .3) matid=4} Face 214 125 126 129 {rgb=(.7 .7 .7) matid=2} Face 215 149 130 204 {rgb=(1 0 0) matid=3} Face 216 121 27 130 {rgb=(1 0 0) matid=3} Face 217 130 131 204 {rgb=(.7 .7 .7) matid=2} Face 218 130 56 131 {rgb=(1 0 0) matid=3} Face 219 145 132 107 {rgb=(.9 .9 .9) matid=0} Face 220 78 137 132 {rgb=(.9 .9 .9) matid=0} Face 221 134 133 36 {rgb=(.9 .9 .9) matid=0} Face 222 135 33 133 {rgb=(.9 .9 .9) matid=0} Face 223 34 134 160 {rgb=(.9 .9 .9) matid=0} Face 224 34 33 216 {rgb=(.9 .9 .9) matid=0} Face 225 134 213 208 {rgb=(.9 .9 .9) matid=0} Face 226 134 34 197 {rgb=(.9 .9 .9) matid=0} Face 227 49 136 96 {rgb=(.9 .9 .9) matid=0} Face 228 49 141 162 {rgb=(1 0 0) matid=3} Face 229 138 137 78 {rgb=(.9 .9 .9) matid=0} Face 230 138 186 137 {rgb=(.9 .9 .9) matid=0} Face 231 95 138 78 {rgb=(.9 .9 .9) matid=0} Face 232 95 136 138 {rgb=(.9 .9 .9) matid=0} Face 233 229 265 157 {rgb=(.9 .9 .9) matid=0} Face 234 40 38 144 {rgb=(.9 .9 .9) matid=0} Face 235 163 140 100 {rgb=(1 0 0) matid=3} Face 236 142 123 174 {rgb=(1 0 0) matid=3} Face 237 142 141 123 {rgb=(1 0 0) matid=3} Face 238 164 177 141 {rgb=(1 0 0) matid=3} Face 239 163 142 140 {rgb=(1 0 0) matid=3} Face 240 163 141 142 {rgb=(.7 .7 .7) matid=2} Face 241 144 249 40 {rgb=(.9 .9 .9) matid=0} Face 242 139 37 143 {rgb=(.9 .9 .9) matid=0} Face 243 211 144 38 {rgb=(.9 .9 .9) matid=0} Face 244 212 143 144 {rgb=(.9 .9 .9) matid=0} Face 245 78 145 248 {rgb=(.9 .9 .9) matid=0} Face 246 78 132 145 {rgb=(.9 .9 .9) matid=0} Face 247 209 146 217 {rgb=(.9 .9 .9) matid=0} Face 248 83 35 148 {rgb=(.9 .9 .9) matid=0} Face 249 146 147 217 {rgb=(.9 .9 .9) matid=0} Face 250 259 35 147 {rgb=(.9 .9 .9) matid=0} Face 251 146 148 147 {rgb=(0 0 0) matid=1} Face 252 146 83 148 {rgb=(.9 .9 .9) matid=0} Face 253 121 149 124 {rgb=(1 0 0) matid=3} Face 254 121 130 149 {rgb=(1 0 0) matid=3} Face 255 151 150 124 {rgb=(1 0 0) matid=3} Face 256 149 204 150 {rgb=(1 0 0) matid=3} Face 257 149 151 124 {rgb=(1 0 0) matid=3} Face 258 149 150 151 {rgb=(.7 .7 .7) matid=2} Face 259 48 152 115 {rgb=(1 0 0) matid=3} Face 260 48 90 152 {rgb=(1 0 0) matid=3} Face 261 175 153 97 {rgb=(.9 .9 .9) matid=0} Face 262 79 120 153 {rgb=(.9 .9 .9) matid=0} Face 263 39 154 251 {rgb=(.9 .9 .9) matid=0} Face 264 156 75 154 {rgb=(.9 .9 .9) matid=0} Face 265 156 155 75 {rgb=(.9 .9 .9) matid=0} Face 266 39 40 155 {rgb=(.9 .9 .9) matid=0} Face 267 39 156 154 {rgb=(0 0 0) matid=1} Face 268 39 155 156 {rgb=(.9 .9 .9) matid=0} Face 269 37 258 143 {rgb=(.9 .9 .9) matid=0} Face 270 37 196 258 {rgb=(.9 .9 .9) matid=0} Face 271 238 158 101 {rgb=(.9 .9 .9) matid=0} Face 272 238 118 158 {rgb=(.7 .7 .7) matid=2} Face 273 230 159 246 {rgb=(1 0 0) matid=3} Face 274 68 266 159 {rgb=(1 0 0) matid=3} Face 275 36 160 134 {rgb=(.9 .9 .9) matid=0} Face 276 36 218 160 {rgb=(.9 .9 .9) matid=0} Face 277 62 161 88 {rgb=(0 0 0) matid=1} Face 278 62 74 161 {rgb=(0 0 0) matid=1} Face 279 136 178 113 {rgb=(1 0 0) matid=3} Face 280 136 49 162 {rgb=(1 0 0) matid=3} Face 281 191 163 100 {rgb=(1 0 0) matid=3} Face 282 189 141 163 {rgb=(1 0 0) matid=3} Face 283 189 164 141 {rgb=(1 0 0) matid=3} Face 284 67 177 164 {rgb=(.7 .7 .7) matid=2} Face 285 54 165 100 {rgb=(.9 .9 .9) matid=0} Face 286 54 98 165 {rgb=(.9 .9 .9) matid=0} Face 287 124 168 169 {rgb=(1 0 0) matid=3} Face 288 124 202 166 {rgb=(1 0 0) matid=3} Face 289 121 167 260 {rgb=(1 0 0) matid=3} Face 290 170 166 167 {rgb=(1 0 0) matid=3} Face 291 166 168 124 {rgb=(1 0 0) matid=3} Face 292 166 170 168 {rgb=(1 0 0) matid=3} Face 293 171 169 168 {rgb=(.7 .7 .7) matid=2} Face 294 172 124 169 {rgb=(1 0 0) matid=3} Face 295 171 170 167 {rgb=(1 0 0) matid=3} Face 296 171 168 170 {rgb=(.7 .7 .7) matid=2} Face 297 121 171 167 {rgb=(1 0 0) matid=3} Face 298 121 169 171 {rgb=(1 0 0) matid=3} Face 299 121 172 169 {rgb=(1 0 0) matid=3} Face 300 121 124 172 {rgb=(.7 .7 .7) matid=2} Face 301 25 173 85 {rgb=(.7 .7 .7) matid=2} Face 302 270 55 173 {rgb=(1 0 0) matid=3} Face 303 140 174 263 {rgb=(.7 .7 .7) matid=2} Face 304 140 142 174 {rgb=(1 0 0) matid=3} Face 305 79 175 110 {rgb=(.9 .9 .9) matid=0} Face 306 79 153 175 {rgb=(.9 .9 .9) matid=0} Face 307 67 176 177 {rgb=(1 0 0) matid=3} Face 308 67 55 176 {rgb=(1 0 0) matid=3} Face 309 162 177 176 {rgb=(1 0 0) matid=3} Face 310 162 141 177 {rgb=(1 0 0) matid=3} Face 311 162 178 136 {rgb=(1 0 0) matid=3} Face 312 162 176 178 {rgb=(.7 .7 .7) matid=2} Face 313 85 179 158 {rgb=(.9 .9 .9) matid=0} Face 314 85 173 179 {rgb=(.7 .7 .7) matid=2} Face 315 27 180 203 {rgb=(1 0 0) matid=3} Face 316 181 94 180 {rgb=(.9 .9 .9) matid=0} Face 317 27 181 180 {rgb=(1 0 0) matid=3} Face 318 27 94 181 {rgb=(.9 .9 .9) matid=0} Face 319 103 182 174 {rgb=(.7 .7 .7) matid=2} Face 320 262 56 182 {rgb=(1 0 0) matid=3} Face 321 25 270 173 {rgb=(1 0 0) matid=3} Face 322 25 26 183 {rgb=(1 0 0) matid=3} Face 323 56 188 102 {rgb=(1 0 0) matid=3} Face 324 56 27 184 {rgb=(1 0 0) matid=3} Face 325 52 261 70 {rgb=(.9 .9 .9) matid=0} Face 326 52 119 261 {rgb=(.7 .7 .7) matid=2} Face 327 48 186 136 {rgb=(1 0 0) matid=3} Face 328 48 53 186 {rgb=(1 0 0) matid=3} Face 329 69 187 59 {rgb=(.9 .9 .9) matid=0} Face 330 69 58 207 {rgb=(0 0 0) matid=1} Face 331 184 188 56 {rgb=(1 0 0) matid=3} Face 332 184 230 188 {rgb=(1 0 0) matid=3} Face 333 67 190 100 {rgb=(1 0 0) matid=3} Face 334 67 164 190 {rgb=(1 0 0) matid=3} Face 335 189 190 164 {rgb=(1 0 0) matid=3} Face 336 191 100 190 {rgb=(1 0 0) matid=3} Face 337 189 191 190 {rgb=(.7 .7 .7) matid=2} Face 338 189 163 191 {rgb=(1 0 0) matid=3} Face 339 135 215 33 {rgb=(.9 .9 .9) matid=0} Face 340 135 237 192 {rgb=(.9 .9 .9) matid=0} Face 341 115 193 109 {rgb=(1 0 0) matid=3} Face 342 115 183 193 {rgb=(1 0 0) matid=3} Face 343 220 194 226 {rgb=(1 0 0) matid=3} Face 344 265 40 249 {rgb=(.9 .9 .9) matid=0} Face 345 77 235 62 {rgb=(.9 .9 .9) matid=0} Face 346 77 180 195 {rgb=(.9 .9 .9) matid=0} Face 347 76 196 234 {rgb=(.9 .9 .9) matid=0} Face 348 243 258 196 {rgb=(.9 .9 .9) matid=0} Face 349 216 197 34 {rgb=(.9 .9 .9) matid=0} Face 350 214 237 197 {rgb=(0 0 0) matid=1} Face 351 192 198 197 {rgb=(0 0 0) matid=1} Face 352 199 237 214 {rgb=(1 0 0) matid=3} Face 353 192 252 198 {rgb=(0 0 0) matid=1} Face 354 192 237 199 {rgb=(0 0 0) matid=1} Face 355 34 200 209 {rgb=(.9 .9 .9) matid=0} Face 356 34 84 200 {rgb=(.9 .9 .9) matid=0} Face 357 71 201 82 {rgb=(0 0 0) matid=1} Face 358 71 114 201 {rgb=(1 0 0) matid=3} Face 359 264 202 124 {rgb=(1 0 0) matid=3} Face 360 264 112 202 {rgb=(.9 .9 .9) matid=0} Face 361 77 203 180 {rgb=(.9 .9 .9) matid=0} Face 362 77 26 203 {rgb=(.9 .9 .9) matid=0} Face 363 123 204 103 {rgb=(1 0 0) matid=3} Face 364 123 150 204 {rgb=(1 0 0) matid=3} Face 365 206 205 124 {rgb=(1 0 0) matid=3} Face 366 122 141 205 {rgb=(1 0 0) matid=3} Face 367 253 206 123 {rgb=(.9 .9 .9) matid=0} Face 368 122 205 206 {rgb=(1 0 0) matid=3} Face 369 187 207 70 {rgb=(0 0 0) matid=1} Face 370 187 69 207 {rgb=(0 0 0) matid=1} Face 371 133 208 244 {rgb=(0 0 0) matid=1} Face 372 133 134 208 {rgb=(.9 .9 .9) matid=0} Face 373 83 209 200 {rgb=(.9 .9 .9) matid=0} Face 374 83 146 209 {rgb=(.9 .9 .9) matid=0} Face 375 153 210 97 {rgb=(.9 .9 .9) matid=0} Face 376 153 120 210 {rgb=(.9 .9 .9) matid=0} Face 377 139 211 37 {rgb=(.9 .9 .9) matid=0} Face 378 212 144 211 {rgb=(.9 .9 .9) matid=0} Face 379 139 224 223 {rgb=(1 0 0) matid=3} Face 380 139 143 212 {rgb=(.9 .9 .9) matid=0} Face 381 135 213 134 {rgb=(.9 .9 .9) matid=0} Face 382 250 257 213 {rgb=(1 0 0) matid=3} Face 383 198 214 197 {rgb=(0 0 0) matid=1} Face 384 198 199 214 {rgb=(1 0 0) matid=3} Face 385 192 215 135 {rgb=(.9 .9 .9) matid=0} Face 386 216 33 215 {rgb=(.9 .9 .9) matid=0} Face 387 192 216 215 {rgb=(.9 .9 .9) matid=0} Face 388 192 197 216 {rgb=(.9 .9 .9) matid=0} Face 389 33 217 36 {rgb=(.9 .9 .9) matid=0} Face 390 33 209 217 {rgb=(.9 .9 .9) matid=0} Face 391 35 218 36 {rgb=(.9 .9 .9) matid=0} Face 392 35 84 218 {rgb=(.9 .9 .9) matid=0} Face 393 221 222 194 {rgb=(1 0 0) matid=3} Face 394 143 157 219 {rgb=(.9 .9 .9) matid=0} Face 395 143 220 226 {rgb=(0 0 0) matid=1} Face 396 143 219 220 {rgb=(1 0 0) matid=3} Face 397 220 221 194 {rgb=(1 0 0) matid=3} Face 398 220 222 221 {rgb=(1 0 0) matid=3} Face 399 219 222 220 {rgb=(1 0 0) matid=3} Face 400 219 194 222 {rgb=(1 0 0) matid=3} Face 401 211 223 225 {rgb=(0 0 0) matid=1} Face 402 211 139 223 {rgb=(0 0 0) matid=1} Face 403 212 224 139 {rgb=(0 0 0) matid=1} Face 404 225 223 224 {rgb=(1 0 0) matid=3} Face 405 272 225 224 {rgb=(1 0 0) matid=3} Face 406 212 211 225 {rgb=(0 0 0) matid=1} Face 407 144 226 249 {rgb=(.9 .9 .9) matid=0} Face 408 144 143 226 {rgb=(.9 .9 .9) matid=0} Face 409 86 227 24 {rgb=(.7 .7 .7) matid=2} Face 410 86 52 227 {rgb=(.9 .9 .9) matid=0} Face 411 101 228 100 {rgb=(1 0 0) matid=3} Face 412 101 179 228 {rgb=(.9 .9 .9) matid=0} Face 413 40 229 155 {rgb=(.9 .9 .9) matid=0} Face 414 40 265 229 {rgb=(.9 .9 .9) matid=0} Face 415 68 230 184 {rgb=(1 0 0) matid=3} Face 416 68 159 230 {rgb=(1 0 0) matid=3} Face 417 29 232 28 {rgb=(.9 .9 .9) matid=0} Face 418 29 31 231 {rgb=(.9 .9 .9) matid=0} Face 419 231 232 29 {rgb=(.9 .9 .9) matid=0} Face 420 231 28 232 {rgb=(.9 .9 .9) matid=0} Face 421 57 233 106 {rgb=(0 0 0) matid=1} Face 422 57 128 233 {rgb=(1 0 0) matid=3} Face 423 75 234 251 {rgb=(.9 .9 .9) matid=0} Face 424 75 76 234 {rgb=(.9 .9 .9) matid=0} Face 425 195 235 77 {rgb=(0 0 0) matid=1} Face 426 195 62 235 {rgb=(.9 .9 .9) matid=0} Face 427 62 236 77 {rgb=(.9 .9 .9) matid=0} Face 428 62 88 236 {rgb=(0 0 0) matid=1} Face 429 134 237 135 {rgb=(.9 .9 .9) matid=0} Face 430 134 197 237 {rgb=(.9 .9 .9) matid=0} Face 431 59 238 101 {rgb=(.9 .9 .9) matid=0} Face 432 59 117 238 {rgb=(.9 .9 .9) matid=0} Face 433 60 239 94 {rgb=(.9 .9 .9) matid=0} Face 434 60 51 239 {rgb=(.9 .9 .9) matid=0} Face 435 239 240 94 {rgb=(.9 .9 .9) matid=0} Face 436 241 74 240 {rgb=(.9 .9 .9) matid=0} Face 437 239 241 240 {rgb=(.9 .9 .9) matid=0} Face 438 239 51 241 {rgb=(.9 .9 .9) matid=0} Face 439 104 242 182 {rgb=(1 0 0) matid=3} Face 440 104 140 263 {rgb=(1 0 0) matid=3} Face 441 76 243 196 {rgb=(.9 .9 .9) matid=0} Face 442 271 157 243 {rgb=(.9 .9 .9) matid=0} Face 443 250 244 257 {rgb=(1 0 0) matid=3} Face 444 135 133 244 {rgb=(0 0 0) matid=1} Face 445 53 245 202 {rgb=(1 0 0) matid=3} Face 446 53 115 245 {rgb=(1 0 0) matid=3} Face 447 102 246 182 {rgb=(1 0 0) matid=3} Face 448 102 230 246 {rgb=(0 0 0) matid=1} Face 449 74 247 161 {rgb=(0 0 0) matid=1} Face 450 74 241 247 {rgb=(.9 .9 .9) matid=0} Face 451 110 248 145 {rgb=(.9 .9 .9) matid=0} Face 452 110 63 248 {rgb=(0 0 0) matid=1} Face 453 194 249 226 {rgb=(1 0 0) matid=3} Face 454 194 219 249 {rgb=(0 0 0) matid=1} Face 455 135 250 213 {rgb=(0 0 0) matid=1} Face 456 135 244 250 {rgb=(1 0 0) matid=3} Face 457 38 251 234 {rgb=(.9 .9 .9) matid=0} Face 458 38 40 251 {rgb=(.9 .9 .9) matid=0} Face 459 199 252 192 {rgb=(0 0 0) matid=1} Face 460 199 198 252 {rgb=(1 0 0) matid=3} Face 461 255 254 123 {rgb=(.9 .9 .9) matid=0} Face 462 122 206 253 {rgb=(.9 .9 .9) matid=0} Face 463 253 254 255 {rgb=(.9 .9 .9) matid=0} Face 464 253 123 254 {rgb=(.9 .9 .9) matid=0} Face 465 122 255 123 {rgb=(.9 .9 .9) matid=0} Face 466 122 253 255 {rgb=(.9 .9 .9) matid=0} Face 467 41 256 45 {rgb=(1 0 0) matid=3} Face 468 41 43 256 {rgb=(1 0 0) matid=3} Face 469 208 257 244 {rgb=(0 0 0) matid=1} Face 470 208 213 257 {rgb=(1 0 0) matid=3} Face 471 157 258 243 {rgb=(.9 .9 .9) matid=0} Face 472 157 143 258 {rgb=(.9 .9 .9) matid=0} Face 473 148 259 147 {rgb=(0 0 0) matid=1} Face 474 148 35 259 {rgb=(.9 .9 .9) matid=0} Face 475 27 260 99 {rgb=(1 0 0) matid=3} Face 476 27 121 260 {rgb=(1 0 0) matid=3} Face 477 185 261 119 {rgb=(.7 .7 .7) matid=2} Face 478 185 70 261 {rgb=(.9 .9 .9) matid=0} Face 479 103 262 182 {rgb=(.7 .7 .7) matid=2} Face 480 103 204 262 {rgb=(1 0 0) matid=3} Face 481 242 263 174 {rgb=(1 0 0) matid=3} Face 482 242 104 263 {rgb=(1 0 0) matid=3} Face 483 49 264 205 {rgb=(.9 .9 .9) matid=0} Face 484 49 96 264 {rgb=(.9 .9 .9) matid=0} Face 485 219 265 249 {rgb=(.9 .9 .9) matid=0} Face 486 219 157 265 {rgb=(.9 .9 .9) matid=0} Face 487 54 266 68 {rgb=(1 0 0) matid=3} Face 488 54 100 266 {rgb=(1 0 0) matid=3} Face 489 84 267 218 {rgb=(.9 .9 .9) matid=0} Face 490 84 34 267 {rgb=(.9 .9 .9) matid=0} Face 491 10 268 9 {rgb=(1 0 0) matid=3} Face 492 10 11 268 {rgb=(1 0 0) matid=3} Face 493 145 269 79 {rgb=(.9 .9 .9) matid=0} Face 494 145 107 269 {rgb=(.9 .9 .9) matid=0} Face 495 183 270 25 {rgb=(1 0 0) matid=3} Face 496 183 55 270 {rgb=(1 0 0) matid=3} Face 497 76 271 243 {rgb=(.9 .9 .9) matid=0} Face 498 76 155 271 {rgb=(.9 .9 .9) matid=0} Face 499 212 272 224 {rgb=(0 0 0) matid=1} Face 500 212 225 272 {rgb=(0 0 0) matid=1} Corner 2 1 {wid=49 normal=(-0.2595 0.873985 0.410866)} Corner 3 1 {wid=50 normal=(-0.824364 -0.487503 -0.28769)} Corner 40 3 {wid=71 normal=(-0.117008 0.992018 0.0470017)} Corner 39 3 {wid=39 normal=(0.164872 0.985056 0.0498234)} Corner 7 5 {wid=52 normal=(-0.112118 -0.0780707 -0.990623)} Corner 5 5 {wid=5 normal=(0.824021 -0.00547315 -0.566533)} Corner 7 6 {wid=52 normal=(-0.112118 -0.0780707 -0.990623)} Corner 8 6 {wid=8 normal=(-0.824396 -0.00539226 0.565988)} Corner 234 8 {wid=556 normal=(0.150042 -0.175068 -0.973056)} Corner 37 8 {wid=69 normal=(-0.28723 -0.884656 -0.367265)} Corner 38 8 {wid=70 normal=(-0.285088 0.771579 -0.568675)} Corner 45 10 {wid=77 normal=(0 -0.11754 -0.993068)} Corner 256 10 {wid=73 normal=(0 -0.760414 0.649439)} Corner 8 12 {wid=8 normal=(-0.824396 -0.00539226 0.565988)} Corner 5 12 {wid=5 normal=(0.824021 -0.00547315 -0.566533)} Corner 37 14 {wid=37 normal=(-0.481413 -0.813934 -0.325198)} Corner 211 14 {wid=476 normal=(-0.661444 -0.430147 -0.614383)} Corner 38 14 {wid=38 normal=(-0.13648 0.955242 -0.262461)} Corner 9 15 {wid=9 normal=(0.823989 -0.487933 0.288032)} Corner 47 15 {wid=78 normal=(-0.824399 0.492851 -0.278324)} Corner 217 16 {wid=496 normal=(-0.117009 0.992018 0.0470098)} Corner 35 16 {wid=35 normal=(0.143688 0.982099 -0.121797)} Corner 36 16 {wid=67 normal=(-0.246136 0.882619 -0.4005)} Corner 8 17 {wid=53 normal=(0 -1 0)} Corner 7 17 {wid=7 normal=(0 -1 0)} Corner 5 17 {wid=51 normal=(0 -1 0)} Corner 29 18 {wid=29 normal=(0 -4.64916e-006 -1)} Corner 30 18 {wid=30 normal=(0 0.23345 -0.972369)} Corner 31 18 {wid=31 normal=(0 0.951049 -0.30904)} Corner 229 20 {wid=544 normal=(-0.373235 0.168162 0.912369)} Corner 271 20 {wid=659 normal=(0.10493 0.59559 0.796406)} Corner 155 20 {wid=348 normal=(0.145391 0.974834 0.168995)} Corner 26 21 {wid=26 normal=(0.0229398 -0.989574 -0.142187)} Corner 25 21 {wid=25 normal=(0.0227813 -0.989483 0.142855)} Corner 24 21 {wid=24 normal=(0.0134038 -0.99468 0.102141)} Corner 47 23 {wid=78 normal=(-0.824399 0.492851 -0.278324)} Corner 11 23 {wid=11 normal=(0.26003 0.873864 -0.410786)} Corner 28 24 {wid=28 normal=(0 -0.987688 0.156436)} Corner 30 24 {wid=30 normal=(0 0.23345 -0.972369)} Corner 29 24 {wid=29 normal=(0 -4.64916e-006 -1)} Corner 28 25 {wid=60 normal=(0 -1 -1.35464e-006)} Corner 32 25 {wid=63 normal=(0 0.505658 0.862734)} Corner 31 25 {wid=62 normal=(0 0.809023 -0.587777)} Corner 1 26 {wid=48 normal=(0.824024 0.493363 0.278527)} Corner 2 26 {wid=49 normal=(-0.2595 0.873985 0.410866)} Corner 28 28 {wid=60 normal=(0 -1 -1.35464e-006)} Corner 31 28 {wid=62 normal=(0 0.809023 -0.587777)} Corner 30 28 {wid=61 normal=(0 -0.233456 -0.972367)} Corner 44 29 {wid=76 normal=(0 0.891008 -0.453988)} Corner 45 29 {wid=77 normal=(0 -0.11754 -0.993068)} Corner 3 30 {wid=50 normal=(-0.824364 -0.487503 -0.28769)} Corner 1 30 {wid=48 normal=(0.824024 0.493363 0.278527)} Corner 28 31 {wid=28 normal=(0 -0.987688 0.156436)} Corner 231 31 {wid=547 normal=(0 0.309008 0.951059)} Corner 32 31 {wid=32 normal=(0 0.453992 0.891006)} Corner 43 33 {wid=74 normal=(0 0.92388 0.382683)} Corner 256 33 {wid=73 normal=(0 -0.760414 0.649439)} Corner 32 34 {wid=32 normal=(0 0.453992 0.891006)} Corner 231 34 {wid=547 normal=(0 0.309008 0.951059)} Corner 31 34 {wid=31 normal=(0 0.951049 -0.30904)} Corner 91 35 {wid=209 normal=(-0.596131 0.801658 -0.0443976)} Corner 58 35 {wid=56 normal=(-0.608938 0.792394 -0.036152)} Corner 69 35 {wid=57 normal=(-0.218075 0.974152 -0.0589111)} Corner 33 37 {wid=64 normal=(-0.13648 0.955242 0.262462)} Corner 36 37 {wid=36 normal=(-0.13648 0.955242 -0.262459)} Corner 133 37 {wid=65 normal=(-0.469984 0.86773 -0.161741)} Corner 26 38 {wid=26 normal=(0.0229398 -0.989574 -0.142187)} Corner 24 38 {wid=24 normal=(0.0134038 -0.99468 0.102141)} Corner 41 39 {wid=41 normal=(1 0 0)} Corner 44 39 {wid=44 normal=(1 0 0)} Corner 43 39 {wid=43 normal=(1 0 0)} Corner 9 40 {wid=54 normal=(4.96986e-006 0.500006 0.866022)} Corner 11 40 {wid=55 normal=(4.96986e-006 0.500006 0.866022)} Corner 47 40 {wid=47 normal=(4.96986e-006 0.500006 0.866022)} Corner 34 41 {wid=34 normal=(-0.287232 -0.884655 0.367264)} Corner 33 41 {wid=33 normal=(-0.317586 0.77419 0.547512)} Corner 26 42 {wid=26 normal=(0.0229398 -0.989574 -0.142187)} Corner 41 43 {wid=72 normal=(0 -1 3.47523e-006)} Corner 45 43 {wid=45 normal=(0 -0.156443 -0.987687)} Corner 44 43 {wid=75 normal=(0 0.619095 -0.785316)} Corner 43 44 {wid=74 normal=(0 0.92388 0.382683)} Corner 44 44 {wid=76 normal=(0 0.891008 -0.453988)} Corner 1 48 {wid=1 normal=(-1.15631e-005 0.500008 -0.866021)} Corner 3 48 {wid=3 normal=(-1.15631e-005 0.500008 -0.866021)} Corner 2 48 {wid=2 normal=(-1.15631e-005 0.500008 -0.866021)} Corner 11 49 {wid=11 normal=(0.26003 0.873864 -0.410786)} Corner 9 49 {wid=9 normal=(0.823989 -0.487933 0.288032)} Corner 160 50 {wid=359 normal=(-0.35593 -0.559204 -0.748736)} Corner 218 50 {wid=500 normal=(0.111142 0.0162154 -0.993673)} Corner 260 51 {wid=634 normal=(0.0664426 -0.289164 -0.954971)} Corner 99 51 {wid=84 normal=(0.176593 -0.968275 -0.176799)} Corner 66 52 {wid=133 normal=(0.0876848 0.864565 -0.494811)} Corner 202 52 {wid=458 normal=(0.0779111 0.9946 -0.0685672)} Corner 245 52 {wid=79 normal=(0.245345 0.946622 -0.209077)} Corner 113 53 {wid=261 normal=(0.112169 0.836901 0.535738)} Corner 178 53 {wid=397 normal=(0.0888316 0.870374 0.484312)} Corner 176 53 {wid=395 normal=(0.0813044 0.289608 0.953685)} Corner 113 54 {wid=261 normal=(0.112169 0.836901 0.535738)} Corner 48 54 {wid=83 normal=(0.245107 0.946751 0.208769)} Corner 136 54 {wid=315 normal=(0.114342 0.990324 0.0786388)} Corner 26 55 {wid=26 normal=(0.0229398 -0.989574 -0.142187)} Corner 99 55 {wid=84 normal=(0.176593 -0.968275 -0.176799)} Corner 236 56 {wid=562 normal=(-0.15614 -0.98517 -0.0711387)} Corner 51 56 {wid=87 normal=(0.0127709 -0.898657 -0.438466)} Corner 61 56 {wid=85 normal=(0.013767 -0.997366 -0.0712122)} Corner 247 57 {wid=583 normal=(-0.209074 0.919459 -0.332992)} Corner 88 57 {wid=88 normal=(-0.324564 0.665731 -0.671908)} Corner 161 57 {wid=92 normal=(-0.610547 0.770557 -0.182958)} Corner 60 58 {wid=91 normal=(0.991424 -0.0146477 -0.129858)} Corner 61 58 {wid=93 normal=(0.99185 -0.015927 -0.126413)} Corner 51 58 {wid=89 normal=(0.857337 0 -0.514756)} Corner 119 59 {wid=95 normal=(0.0139585 -0.99686 0.0779396)} Corner 52 59 {wid=94 normal=(0.0110296 -0.996937 0.0774233)} Corner 86 59 {wid=196 normal=(0.014872 -0.99755 0.0683505)} Corner 165 60 {wid=59 normal=(-0.701569 0.711459 -0.0403479)} Corner 69 60 {wid=57 normal=(-0.218075 0.974152 -0.0589111)} Corner 186 61 {wid=100 normal=(0.0831281 -0.0107116 0.996481)} Corner 136 61 {wid=101 normal=(-0.0226901 0.0172872 0.999593)} Corner 260 62 {wid=634 normal=(0.0664426 -0.289164 -0.954971)} Corner 109 62 {wid=99 normal=(0.214065 -0.00684393 -0.976795)} Corner 67 63 {wid=134 normal=(0.0723477 0.299683 0.951291)} Corner 100 63 {wid=230 normal=(-0.0308193 -0.196562 0.980008)} Corner 55 63 {wid=103 normal=(0.112664 -0.177998 0.97756)} Corner 26 64 {wid=26 normal=(0.0229398 -0.989574 -0.142187)} Corner 173 65 {wid=386 normal=(0.0545787 -0.278839 0.958787)} Corner 55 65 {wid=103 normal=(0.112664 -0.177998 0.97756)} Corner 100 65 {wid=230 normal=(-0.0308193 -0.196562 0.980008)} Corner 115 66 {wid=266 normal=(0.285351 -0.952123 -0.10971)} Corner 55 66 {wid=103 normal=(0.112664 -0.177998 0.97756)} Corner 233 67 {wid=552 normal=(0.120704 0.0243889 -0.992389)} Corner 66 67 {wid=133 normal=(0.0876848 0.864565 -0.494811)} Corner 245 67 {wid=79 normal=(0.245345 0.946622 -0.209077)} Corner 203 68 {wid=164 normal=(-0.458551 -0.818221 -0.346763)} Corner 26 68 {wid=26 normal=(0.0229398 -0.989574 -0.142187)} Corner 260 69 {wid=634 normal=(0.0664426 -0.289164 -0.954971)} Corner 80 69 {wid=174 normal=(0.197282 0.850602 -0.487397)} Corner 109 69 {wid=99 normal=(0.214065 -0.00684393 -0.976795)} Corner 27 70 {wid=80 normal=(0.00222244 -0.310061 -0.950714)} Corner 130 70 {wid=302 normal=(-0.0271493 0.214852 -0.976269)} Corner 98 71 {wid=224 normal=(-0.240495 -0.968163 0.0694492)} Corner 58 71 {wid=106 normal=(-0.305999 -0.949197 0.0734175)} Corner 91 71 {wid=107 normal=(-0.302077 -0.951019 0.0656712)} Corner 24 72 {wid=97 normal=(0.0134038 -0.99468 0.102141)} Corner 52 72 {wid=94 normal=(0.0110296 -0.996937 0.0774233)} Corner 58 72 {wid=106 normal=(-0.305999 -0.949197 0.0734175)} Corner 85 73 {wid=109 normal=(0.996656 -0.0469899 0.0668473)} Corner 119 73 {wid=108 normal=(0.985621 -0.00043018 0.168971)} Corner 86 73 {wid=111 normal=(0.996901 -0.0452546 0.0643496)} Corner 101 74 {wid=110 normal=(0.0686898 0.996968 -0.0365704)} Corner 100 74 {wid=231 normal=(-0.100391 0.99431 -0.035638)} Corner 195 75 {wid=165 normal=(-0.257519 0.965337 0.0425238)} Corner 74 75 {wid=158 normal=(-0.218152 0.97419 0.0579946)} Corner 62 75 {wid=115 normal=(-0.608967 0.792431 0.0348194)} Corner 27 76 {wid=114 normal=(0.141863 0.988737 0.047688)} Corner 50 76 {wid=116 normal=(0.164898 0.984981 0.0512016)} Corner 60 76 {wid=112 normal=(0.162923 0.985532 0.0467299)} Corner 50 77 {wid=117 normal=(0.99655 -0.0461941 -0.0689538)} Corner 61 77 {wid=93 normal=(0.99185 -0.015927 -0.126413)} Corner 60 77 {wid=91 normal=(0.991424 -0.0146477 -0.129858)} Corner 50 78 {wid=118 normal=(0.0149467 -0.997594 -0.0676943)} Corner 236 78 {wid=562 normal=(-0.15614 -0.98517 -0.0711387)} Corner 61 78 {wid=85 normal=(0.013767 -0.997366 -0.0712122)} Corner 26 79 {wid=119 normal=(0.0229394 -0.989574 -0.142187)} Corner 236 79 {wid=562 normal=(-0.15614 -0.98517 -0.0711387)} Corner 50 79 {wid=118 normal=(0.0149467 -0.997594 -0.0676943)} Corner 26 80 {wid=119 normal=(0.0229394 -0.989574 -0.142187)} Corner 77 80 {wid=120 normal=(-0.304086 -0.950194 -0.0682845)} Corner 236 80 {wid=562 normal=(-0.15614 -0.98517 -0.0711387)} Corner 137 81 {wid=317 normal=(0.0012807 -0.00141397 0.999998)} Corner 186 81 {wid=100 normal=(0.0831281 -0.0107116 0.996481)} Corner 97 82 {wid=123 normal=(-0.606667 0.705776 -0.365835)} Corner 112 82 {wid=124 normal=(-0.297219 0.89628 -0.329155)} Corner 63 82 {wid=121 normal=(-0.607206 0.707161 0.362249)} Corner 53 83 {wid=126 normal=(0.147198 -0.0189675 0.988925)} Corner 107 83 {wid=122 normal=(0.216059 -0.00616429 0.976361)} Corner 186 83 {wid=100 normal=(0.0831281 -0.0107116 0.996481)} Corner 248 84 {wid=127 normal=(-0.00193934 0.0005402 0.999998)} Corner 63 84 {wid=128 normal=(-0.000672551 -0.000420194 1)} Corner 78 84 {wid=125 normal=(-0.0020735 0.00133548 0.999997)} Corner 53 85 {wid=130 normal=(0.13516 -0.0174153 -0.990671)} Corner 53 86 {wid=130 normal=(0.13516 -0.0174153 -0.990671)} Corner 202 86 {wid=132 normal=(-0.00722631 0.00580162 -0.999957)} Corner 262 87 {wid=640 normal=(-0.170655 0.815429 -0.55313)} Corner 204 87 {wid=462 normal=(-0.072887 0.805779 -0.587714)} Corner 131 87 {wid=303 normal=(-0.252204 0.389576 -0.88579)} Corner 141 88 {wid=321 normal=(-0.000181079 0.917626 0.397443)} Corner 49 88 {wid=82 normal=(0.0204086 0.997586 0.0663801)} Corner 205 88 {wid=463 normal=(0.0397327 0.997129 0.0644528)} Corner 103 89 {wid=239 normal=(-0.281292 0.901211 -0.329686)} Corner 174 89 {wid=388 normal=(-0.236503 0.851449 0.468081)} Corner 123 89 {wid=287 normal=(-0.0132257 0.998798 -0.0472074)} Corner 188 90 {wid=136 normal=(-0.464515 -0.300355 -0.833074)} Corner 230 90 {wid=137 normal=(-0.375181 -0.898713 0.227054)} Corner 102 90 {wid=135 normal=(-0.420261 0.761677 -0.493183)} Corner 54 91 {wid=102 normal=(-0.458951 -0.818031 0.346681)} Corner 24 91 {wid=24 normal=(0.0134038 -0.99468 0.102141)} Corner 266 92 {wid=650 normal=(-0.0798312 -0.39783 0.91398)} Corner 117 93 {wid=139 normal=(0 0 1)} Corner 187 93 {wid=138 normal=(0 0 1)} Corner 70 93 {wid=141 normal=(0 0 1)} Corner 117 94 {wid=140 normal=(0.19458 0.914305 0.355226)} Corner 187 94 {wid=420 normal=(-0.161864 0.720168 0.674655)} Corner 58 95 {wid=144 normal=(-0.305999 -0.949197 0.0734184)} Corner 70 95 {wid=142 normal=(-0.110499 -0.668863 0.735128)} Corner 207 95 {wid=145 normal=(-0.293632 -0.911864 0.286851)} Corner 58 96 {wid=106 normal=(-0.305999 -0.949197 0.0734175)} Corner 52 96 {wid=94 normal=(0.0110296 -0.996937 0.0774233)} Corner 70 96 {wid=143 normal=(-0.110499 -0.668863 0.735128)} Corner 55 97 {wid=103 normal=(0.112664 -0.177998 0.97756)} Corner 113 97 {wid=261 normal=(0.112169 0.836901 0.535738)} Corner 176 97 {wid=395 normal=(0.0813044 0.289608 0.953685)} Corner 89 98 {wid=147 normal=(-0.627394 0.778248 0.0265965)} Corner 82 99 {wid=150 normal=(-0.225085 0.892478 0.390922)} Corner 71 99 {wid=151 normal=(-0.189291 0.981801 0.0153508)} Corner 82 100 {wid=150 normal=(-0.225085 0.892478 0.390922)} Corner 73 100 {wid=149 normal=(0.0378593 0.966038 0.255613)} Corner 152 101 {wid=154 normal=(0.0209982 -0.999759 0.00648044)} Corner 73 101 {wid=152 normal=(0.0178007 -0.958498 0.284542)} Corner 82 101 {wid=156 normal=(0.0178007 -0.958498 0.284542)} Corner 152 102 {wid=155 normal=(0.98789 0.000492244 0.155154)} Corner 90 102 {wid=157 normal=(0.98789 0.000492244 0.155154)} Corner 73 102 {wid=153 normal=(0.931038 6.24836e-005 0.364921)} Corner 74 103 {wid=158 normal=(-0.218152 0.97419 0.0579946)} Corner 180 103 {wid=113 normal=(-0.0328681 0.998867 0.0344148)} Corner 241 104 {wid=569 normal=(0.0786132 0.99551 0.0527507)} Corner 51 104 {wid=159 normal=(0.194967 0.914066 -0.355629)} Corner 247 104 {wid=584 normal=(-0.209074 0.919459 -0.332992)} Corner 154 105 {wid=347 normal=(0.164302 0.985253 -0.0477602)} Corner 75 105 {wid=160 normal=(0.148371 0.983734 -0.10126)} Corner 155 106 {wid=162 normal=(0.997657 -0.0684201 0)} Corner 76 106 {wid=163 normal=(0.997657 -0.0684201 0)} Corner 75 106 {wid=161 normal=(0.997657 -0.0684201 0)} Corner 157 107 {wid=354 normal=(-0.355922 -0.559206 0.748737)} Corner 271 107 {wid=659 normal=(0.10493 0.59559 0.796406)} Corner 229 107 {wid=544 normal=(-0.373235 0.168162 0.912369)} Corner 37 108 {wid=69 normal=(-0.28723 -0.884656 -0.367265)} Corner 234 108 {wid=556 normal=(0.150042 -0.175068 -0.973056)} Corner 27 109 {wid=80 normal=(0.00222244 -0.310061 -0.950714)} Corner 203 109 {wid=164 normal=(-0.458551 -0.818221 -0.346763)} Corner 180 110 {wid=113 normal=(-0.0328681 0.998867 0.0344148)} Corner 74 110 {wid=158 normal=(-0.218152 0.97419 0.0579946)} Corner 195 110 {wid=165 normal=(-0.257519 0.965337 0.0425238)} Corner 107 111 {wid=122 normal=(0.216059 -0.00616429 0.976361)} Corner 186 111 {wid=100 normal=(0.0831281 -0.0107116 0.996481)} Corner 64 112 {wid=168 normal=(0.164784 0.622891 -0.764757)} Corner 79 112 {wid=169 normal=(-0.221112 0.901735 -0.371459)} Corner 269 112 {wid=656 normal=(-0.0018383 0.874822 0.484441)} Corner 210 113 {wid=170 normal=(0.00313286 -0.00243266 -0.999992)} Corner 97 114 {wid=172 normal=(-0.606667 0.705776 -0.365835)} Corner 63 114 {wid=173 normal=(-0.607206 0.707161 0.362249)} Corner 110 114 {wid=171 normal=(-0.609268 0.708465 -0.356186)} Corner 57 115 {wid=105 normal=(0.122621 0.0192016 -0.992268)} Corner 80 115 {wid=174 normal=(0.197282 0.850602 -0.487397)} Corner 260 115 {wid=634 normal=(0.0664426 -0.289164 -0.954971)} Corner 92 116 {wid=176 normal=(0.0181222 -0.958679 -0.283914)} Corner 109 116 {wid=177 normal=(0.021003 -0.999763 -0.00581463)} Corner 80 116 {wid=175 normal=(0.0207462 -0.999767 -0.0059661)} Corner 57 117 {wid=180 normal=(-0.731931 -0.677594 -0.0717164)} Corner 106 117 {wid=178 normal=(-0.718545 -0.663833 -0.207408)} Corner 93 117 {wid=182 normal=(-0.712052 -0.657424 -0.246528)} Corner 87 118 {wid=181 normal=(0.988103 0.000392534 -0.153795)} Corner 109 118 {wid=183 normal=(0.988103 0.000392534 -0.153795)} Corner 92 118 {wid=179 normal=(0.931526 -0.000237825 -0.363675)} Corner 111 119 {wid=185 normal=(-0.731633 -0.677979 0.0711206)} Corner 82 119 {wid=184 normal=(-0.718402 -0.664159 0.206859)} Corner 201 119 {wid=187 normal=(-0.731633 -0.677979 0.0711206)} Corner 111 120 {wid=186 normal=(0.0207398 -0.999763 0.00663167)} Corner 152 120 {wid=154 normal=(0.0209982 -0.999759 0.00648044)} Corner 82 120 {wid=156 normal=(0.0178007 -0.958498 0.284542)} Corner 35 121 {wid=190 normal=(0.997657 -0.0684201 0)} Corner 83 121 {wid=189 normal=(0.997657 -0.0684201 0)} Corner 84 121 {wid=191 normal=(0.997657 -0.0684201 0)} Corner 35 122 {wid=35 normal=(0.143688 0.982099 -0.121797)} Corner 217 122 {wid=496 normal=(-0.117009 0.992018 0.0470098)} Corner 147 122 {wid=335 normal=(0.16549 0.984885 -0.0511396)} Corner 84 123 {wid=66 normal=(0.111257 -0.977469 -0.179379)} Corner 83 123 {wid=188 normal=(0.727012 0.0197174 0.686342)} Corner 34 124 {wid=34 normal=(-0.287232 -0.884655 0.367264)} Corner 160 124 {wid=359 normal=(-0.35593 -0.559204 -0.748736)} Corner 25 125 {wid=194 normal=(0.950039 -0.305795 0.062582)} Corner 85 125 {wid=192 normal=(0.996656 -0.0469899 0.0668473)} Corner 86 125 {wid=195 normal=(0.996901 -0.0452546 0.0643496)} Corner 101 126 {wid=110 normal=(0.0686898 0.996968 -0.0365704)} Corner 158 126 {wid=355 normal=(0.0996943 0.99368 -0.0515787)} Corner 179 126 {wid=401 normal=(-0.0886436 0.925026 -0.369418)} Corner 24 127 {wid=97 normal=(0.0134038 -0.99468 0.102141)} Corner 227 127 {wid=538 normal=(0.0114029 -0.997569 0.0687507)} Corner 52 127 {wid=94 normal=(0.0110296 -0.996937 0.0774233)} Corner 24 128 {wid=198 normal=(0.0134038 -0.99468 0.102141)} Corner 25 128 {wid=199 normal=(0.0227811 -0.989482 0.142853)} Corner 86 128 {wid=197 normal=(0.014872 -0.99755 0.0683505)} Corner 233 129 {wid=202 normal=(-0.189304 0.981784 -0.016235)} Corner 87 129 {wid=200 normal=(0.0513537 0.998643 -0.0086256)} Corner 233 130 {wid=552 normal=(0.120704 0.0243889 -0.992389)} Corner 245 130 {wid=79 normal=(0.245345 0.946622 -0.209077)} Corner 87 130 {wid=201 normal=(0.217125 0.0411699 -0.975275)} Corner 51 131 {wid=159 normal=(0.194967 0.914066 -0.355629)} Corner 88 131 {wid=204 normal=(-0.160976 0.719512 -0.675566)} Corner 247 131 {wid=584 normal=(-0.209074 0.919459 -0.332992)} Corner 51 132 {wid=87 normal=(0.0127709 -0.898657 -0.438466)} Corner 236 132 {wid=562 normal=(-0.15614 -0.98517 -0.0711387)} Corner 88 132 {wid=205 normal=(-0.10967 -0.669017 -0.735111)} Corner 71 133 {wid=151 normal=(-0.189291 0.981801 0.0153508)} Corner 89 133 {wid=206 normal=(-0.0886396 0.996016 0.00980267)} Corner 71 134 {wid=151 normal=(-0.189291 0.981801 0.0153508)} Corner 89 134 {wid=206 normal=(-0.0886396 0.996016 0.00980267)} Corner 71 135 {wid=146 normal=(0.11958 0.0249788 0.99251)} Corner 90 135 {wid=207 normal=(0.215897 0.0417089 0.975525)} Corner 48 135 {wid=83 normal=(0.245107 0.946751 0.208769)} Corner 71 136 {wid=151 normal=(-0.189291 0.981801 0.0153508)} Corner 73 136 {wid=149 normal=(0.0378593 0.966038 0.255613)} Corner 90 136 {wid=208 normal=(0.0513409 0.998649 0.00805669)} Corner 165 137 {wid=59 normal=(-0.701569 0.711459 -0.0403479)} Corner 91 137 {wid=209 normal=(-0.596131 0.801658 -0.0443976)} Corner 69 137 {wid=57 normal=(-0.218075 0.974152 -0.0589111)} Corner 165 138 {wid=211 normal=(-0.304145 -0.950162 0.0684756)} Corner 98 138 {wid=212 normal=(-0.240495 -0.968163 0.0694492)} Corner 91 138 {wid=210 normal=(-0.302077 -0.951019 0.0656712)} Corner 106 139 {wid=214 normal=(0.0181222 -0.958679 -0.283914)} Corner 92 139 {wid=176 normal=(0.0181222 -0.958679 -0.283914)} Corner 93 139 {wid=215 normal=(0.0197448 -0.991322 -0.129969)} Corner 87 140 {wid=200 normal=(0.0513537 0.998643 -0.0086256)} Corner 92 140 {wid=213 normal=(0.0381629 0.965881 -0.256158)} Corner 80 141 {wid=175 normal=(0.0207462 -0.999767 -0.0059661)} Corner 93 141 {wid=215 normal=(0.0197448 -0.991322 -0.129969)} Corner 92 141 {wid=176 normal=(0.0181222 -0.958679 -0.283914)} Corner 80 142 {wid=216 normal=(-0.731931 -0.677594 -0.0717164)} Corner 57 142 {wid=180 normal=(-0.731931 -0.677594 -0.0717164)} Corner 93 142 {wid=182 normal=(-0.712052 -0.657424 -0.246528)} Corner 60 143 {wid=112 normal=(0.162923 0.985532 0.0467299)} Corner 27 143 {wid=114 normal=(0.141863 0.988737 0.047688)} Corner 240 144 {wid=568 normal=(0.0755186 0.995733 0.0530426)} Corner 74 144 {wid=158 normal=(-0.218152 0.97419 0.0579946)} Corner 63 145 {wid=128 normal=(-0.000672551 -0.000420194 1)} Corner 95 145 {wid=218 normal=(-0.000330962 -0.000765221 1)} Corner 78 145 {wid=125 normal=(-0.0020735 0.00133548 0.999997)} Corner 63 146 {wid=121 normal=(-0.607206 0.707161 0.362249)} Corner 112 146 {wid=124 normal=(-0.297219 0.89628 -0.329155)} Corner 96 146 {wid=219 normal=(-0.298444 0.898583 0.321684)} Corner 95 147 {wid=98 normal=(-0.000330962 -0.000765221 1)} Corner 96 147 {wid=220 normal=(-0.00372708 0.00272159 0.999989)} Corner 136 147 {wid=101 normal=(-0.0226901 0.0172872 0.999593)} Corner 95 148 {wid=98 normal=(-0.000330962 -0.000765221 1)} Corner 63 148 {wid=221 normal=(-0.000672551 -0.000420194 1)} Corner 96 148 {wid=220 normal=(-0.00372708 0.00272159 0.999989)} Corner 97 149 {wid=222 normal=(-6.57687e-005 -0.00271505 -0.999996)} Corner 210 149 {wid=475 normal=(0.00522839 -0.00762786 -0.999957)} Corner 112 150 {wid=259 normal=(-0.00298995 0.00193331 -0.999994)} Corner 97 150 {wid=222 normal=(-6.57687e-005 -0.00271505 -0.999996)} Corner 24 151 {wid=97 normal=(0.0134038 -0.99468 0.102141)} Corner 98 151 {wid=224 normal=(-0.240495 -0.968163 0.0694492)} Corner 54 151 {wid=225 normal=(-0.458952 -0.818032 0.34668)} Corner 24 152 {wid=97 normal=(0.0134038 -0.99468 0.102141)} Corner 58 152 {wid=106 normal=(-0.305999 -0.949197 0.0734175)} Corner 98 152 {wid=224 normal=(-0.240495 -0.968163 0.0694492)} Corner 50 153 {wid=228 normal=(0.99655 -0.0461941 -0.0689538)} Corner 99 153 {wid=226 normal=(0.951724 -0.302046 -0.0546738)} Corner 26 153 {wid=229 normal=(0.950884 -0.304673 -0.0547154)} Corner 50 154 {wid=116 normal=(0.164898 0.984981 0.0512016)} Corner 27 154 {wid=114 normal=(0.141863 0.988737 0.047688)} Corner 99 154 {wid=227 normal=(0.170167 0.984141 0.0500912)} Corner 266 155 {wid=650 normal=(-0.0798312 -0.39783 0.91398)} Corner 100 155 {wid=230 normal=(-0.0308193 -0.196562 0.980008)} Corner 165 156 {wid=59 normal=(-0.701569 0.711459 -0.0403479)} Corner 100 156 {wid=231 normal=(-0.100391 0.99431 -0.035638)} Corner 173 157 {wid=234 normal=(0.170221 0.984112 -0.0504855)} Corner 228 157 {wid=232 normal=(-0.109181 0.992684 -0.05156)} Corner 179 157 {wid=236 normal=(-0.0674596 0.990817 -0.117179)} Corner 173 158 {wid=235 normal=(0.151961 0.596207 0.788318)} Corner 100 158 {wid=237 normal=(-0.113835 0.641259 0.758834)} Corner 228 158 {wid=233 normal=(0.0645628 0.0328336 0.997373)} Corner 246 159 {wid=581 normal=(-0.427505 0.690879 0.583032)} Corner 182 160 {wid=409 normal=(-0.166602 0.986024 -0.000410676)} Corner 246 160 {wid=581 normal=(-0.427505 0.690879 0.583032)} Corner 262 161 {wid=640 normal=(-0.170655 0.815429 -0.55313)} Corner 131 161 {wid=303 normal=(-0.252204 0.389576 -0.88579)} Corner 102 162 {wid=238 normal=(-0.420261 0.761677 -0.493183)} Corner 182 162 {wid=409 normal=(-0.166602 0.986024 -0.000410676)} Corner 140 163 {wid=320 normal=(-0.0282229 0.215469 0.976103)} Corner 100 163 {wid=230 normal=(-0.0308193 -0.196562 0.980008)} Corner 174 164 {wid=242 normal=(-0.371612 0.836493 0.402721)} Corner 182 164 {wid=243 normal=(-0.389186 0.921159 -0.000558674)} Corner 242 164 {wid=241 normal=(-0.334358 0.652262 0.680264)} Corner 73 165 {wid=149 normal=(0.0378593 0.966038 0.255613)} Corner 73 166 {wid=149 normal=(0.0378593 0.966038 0.255613)} Corner 71 166 {wid=151 normal=(-0.189291 0.981801 0.0153508)} Corner 106 167 {wid=245 normal=(-0.224742 0.892283 -0.391564)} Corner 233 167 {wid=202 normal=(-0.189304 0.981784 -0.016235)} Corner 108 168 {wid=246 normal=(-0.103077 0.904732 -0.413322)} Corner 106 168 {wid=245 normal=(-0.224742 0.892283 -0.391564)} Corner 64 169 {wid=249 normal=(1 -0.000185198 0.000807919)} Corner 107 169 {wid=247 normal=(1 -0.000185199 0.00080792)} Corner 53 169 {wid=251 normal=(0.997295 -0.0734987 0.000739386)} Corner 64 170 {wid=250 normal=(0 1 0)} Corner 269 170 {wid=252 normal=(0 1 0)} Corner 107 170 {wid=248 normal=(0 1 0)} Corner 108 171 {wid=253 normal=(-0.272628 0.962077 -0.00899747)} Corner 106 172 {wid=245 normal=(-0.224742 0.892283 -0.391564)} Corner 108 172 {wid=246 normal=(-0.103077 0.904732 -0.413322)} Corner 245 173 {wid=79 normal=(0.245345 0.946622 -0.209077)} Corner 109 173 {wid=99 normal=(0.214065 -0.00684393 -0.976795)} Corner 87 173 {wid=201 normal=(0.217125 0.0411699 -0.975275)} Corner 245 174 {wid=79 normal=(0.245345 0.946622 -0.209077)} Corner 115 174 {wid=266 normal=(0.285351 -0.952123 -0.10971)} Corner 109 174 {wid=99 normal=(0.214065 -0.00684393 -0.976795)} Corner 79 175 {wid=169 normal=(-0.221112 0.901735 -0.371459)} Corner 110 175 {wid=254 normal=(-0.609268 0.708465 -0.356186)} Corner 145 175 {wid=167 normal=(-0.225551 0.900124 0.372698)} Corner 175 176 {wid=256 normal=(0.00309017 -0.00694389 -0.999971)} Corner 97 176 {wid=257 normal=(-6.57687e-005 -0.00271505 -0.999996)} Corner 110 176 {wid=255 normal=(0.00197757 -0.00532543 -0.999984)} Corner 114 177 {wid=262 normal=(0.101861 -0.0143418 0.994695)} Corner 111 177 {wid=258 normal=(0.196726 0.851194 0.486588)} Corner 201 177 {wid=454 normal=(0.121521 0.0199206 0.992389)} Corner 114 178 {wid=262 normal=(0.101861 -0.0143418 0.994695)} Corner 152 178 {wid=27 normal=(0.212822 -0.0061729 0.977072)} Corner 111 178 {wid=258 normal=(0.196726 0.851194 0.486588)} Corner 202 179 {wid=132 normal=(-0.00722631 0.00580162 -0.999957)} Corner 112 179 {wid=259 normal=(-0.00298995 0.00193331 -0.999994)} Corner 264 180 {wid=260 normal=(-0.00625729 0.853341 -0.521316)} Corner 96 180 {wid=219 normal=(-0.298444 0.898583 0.321684)} Corner 112 180 {wid=124 normal=(-0.297219 0.89628 -0.329155)} Corner 71 181 {wid=146 normal=(0.11958 0.0249788 0.99251)} Corner 113 181 {wid=261 normal=(0.112169 0.836901 0.535738)} Corner 114 181 {wid=262 normal=(0.101861 -0.0143418 0.994695)} Corner 71 182 {wid=146 normal=(0.11958 0.0249788 0.99251)} Corner 48 182 {wid=83 normal=(0.245107 0.946751 0.208769)} Corner 113 182 {wid=261 normal=(0.112169 0.836901 0.535738)} Corner 55 183 {wid=264 normal=(0.112664 -0.177998 0.97756)} Corner 114 183 {wid=263 normal=(0.101861 -0.0143418 0.994695)} Corner 113 183 {wid=265 normal=(0.112169 0.836901 0.535738)} Corner 55 184 {wid=103 normal=(0.112664 -0.177998 0.97756)} Corner 115 184 {wid=266 normal=(0.285351 -0.952123 -0.10971)} Corner 114 184 {wid=262 normal=(0.101861 -0.0143418 0.994695)} Corner 48 185 {wid=268 normal=(1 -4.96174e-005 0.000702549)} Corner 115 185 {wid=267 normal=(1 -4.96174e-005 0.000702549)} Corner 53 185 {wid=269 normal=(0.997295 -0.0734987 0.000739386)} Corner 152 186 {wid=27 normal=(0.212822 -0.0061729 0.977072)} Corner 114 186 {wid=262 normal=(0.101861 -0.0143418 0.994695)} Corner 115 186 {wid=266 normal=(0.285351 -0.952123 -0.10971)} Corner 92 187 {wid=213 normal=(0.0381629 0.965881 -0.256158)} Corner 92 188 {wid=213 normal=(0.0381629 0.965881 -0.256158)} Corner 106 188 {wid=245 normal=(-0.224742 0.892283 -0.391564)} Corner 185 189 {wid=414 normal=(0.0143406 -0.996851 0.0779932)} Corner 117 189 {wid=271 normal=(0.0122842 -0.898546 0.438707)} Corner 70 189 {wid=143 normal=(-0.110499 -0.668863 0.735128)} Corner 118 190 {wid=272 normal=(0.18964 0.981163 -0.0368239)} Corner 238 190 {wid=566 normal=(0.10164 0.993552 -0.0502214)} Corner 117 190 {wid=140 normal=(0.19458 0.914305 0.355226)} Corner 185 191 {wid=275 normal=(0.985624 -0.000260697 0.168956)} Corner 118 191 {wid=273 normal=(0.985624 -0.00025171 0.168955)} Corner 117 191 {wid=277 normal=(0.856754 -0.000124531 0.515725)} Corner 185 192 {wid=276 normal=(0.985624 -0.000260697 0.168956)} Corner 119 192 {wid=278 normal=(0.985621 -0.00043018 0.168971)} Corner 118 192 {wid=274 normal=(0.985624 -0.00025171 0.168955)} Corner 158 193 {wid=355 normal=(0.0996943 0.99368 -0.0515787)} Corner 119 193 {wid=279 normal=(0.173549 0.984038 -0.0393626)} Corner 85 193 {wid=193 normal=(0.164955 0.98495 -0.051604)} Corner 158 194 {wid=281 normal=(0.0996943 0.99368 -0.0515787)} Corner 118 194 {wid=282 normal=(0.18964 0.981163 -0.0368239)} Corner 119 194 {wid=280 normal=(0.173549 0.984038 -0.0393626)} Corner 64 195 {wid=283 normal=(0.208976 0.0560059 -0.976315)} Corner 79 195 {wid=284 normal=(0.00339018 0.137203 -0.990537)} Corner 64 196 {wid=283 normal=(0.208976 0.0560059 -0.976315)} Corner 53 196 {wid=130 normal=(0.13516 -0.0174153 -0.990671)} Corner 57 197 {wid=105 normal=(0.122621 0.0192016 -0.992268)} Corner 167 197 {wid=373 normal=(0.067721 0.300547 -0.95136)} Corner 128 197 {wid=292 normal=(0.0841458 0.30055 -0.950046)} Corner 57 198 {wid=105 normal=(0.122621 0.0192016 -0.992268)} Corner 260 198 {wid=634 normal=(0.0664426 -0.289164 -0.954971)} Corner 167 198 {wid=373 normal=(0.067721 0.300547 -0.95136)} Corner 124 199 {wid=288 normal=(0.0351027 0.90077 -0.432875)} Corner 205 199 {wid=463 normal=(0.0397327 0.997129 0.0644528)} Corner 264 199 {wid=81 normal=(0.0204892 0.997544 -0.0669848)} Corner 123 200 {wid=287 normal=(-0.0132257 0.998798 -0.0472074)} Corner 141 200 {wid=321 normal=(-0.000181079 0.917626 0.397443)} Corner 122 200 {wid=286 normal=(-0.0039004 0.998631 0.0521583)} Corner 124 201 {wid=288 normal=(0.0351027 0.90077 -0.432875)} Corner 123 201 {wid=287 normal=(-0.0132257 0.998798 -0.0472074)} Corner 206 201 {wid=464 normal=(-0.00384402 0.998598 -0.0527976)} Corner 124 202 {wid=288 normal=(0.0351027 0.90077 -0.432875)} Corner 150 202 {wid=341 normal=(0.0267741 0.919766 -0.391554)} Corner 123 202 {wid=287 normal=(-0.0132257 0.998798 -0.0472074)} Corner 66 203 {wid=133 normal=(0.0876848 0.864565 -0.494811)} Corner 166 203 {wid=372 normal=(0.0790653 0.905989 -0.415851)} Corner 202 203 {wid=458 normal=(0.0779111 0.9946 -0.0685672)} Corner 125 204 {wid=290 normal=(0.100851 0.347142 -0.932374)} Corner 167 204 {wid=291 normal=(0.067721 0.300547 -0.95136)} Corner 166 204 {wid=289 normal=(0.0790653 0.905989 -0.415852)} Corner 126 205 {wid=293 normal=(0.0981436 0.827201 -0.553269)} Corner 127 205 {wid=296 normal=(0.0999646 0.82909 -0.550106)} Corner 166 205 {wid=289 normal=(0.0790653 0.905989 -0.415852)} Corner 66 206 {wid=133 normal=(0.0876848 0.864565 -0.494811)} Corner 233 206 {wid=552 normal=(0.120704 0.0243889 -0.992389)} Corner 128 206 {wid=292 normal=(0.0841458 0.30055 -0.950046)} Corner 66 207 {wid=294 normal=(0.0876848 0.864565 -0.494812)} Corner 126 207 {wid=293 normal=(0.0981436 0.827201 -0.553269)} Corner 166 207 {wid=289 normal=(0.0790653 0.905989 -0.415852)} Corner 66 208 {wid=294 normal=(0.0876848 0.864565 -0.494812)} Corner 128 208 {wid=295 normal=(0.0841458 0.30055 -0.950047)} Corner 126 208 {wid=293 normal=(0.0981436 0.827201 -0.553269)} Corner 125 209 {wid=298 normal=(0.100851 0.347142 -0.932374)} Corner 127 209 {wid=297 normal=(0.0999646 0.82909 -0.550106)} Corner 126 209 {wid=299 normal=(0.0981436 0.827201 -0.553269)} Corner 125 210 {wid=290 normal=(0.100851 0.347142 -0.932374)} Corner 166 210 {wid=289 normal=(0.0790653 0.905989 -0.415852)} Corner 127 210 {wid=296 normal=(0.0999646 0.82909 -0.550106)} Corner 125 211 {wid=290 normal=(0.100851 0.347142 -0.932374)} Corner 128 211 {wid=295 normal=(0.0841458 0.30055 -0.950047)} Corner 167 211 {wid=291 normal=(0.067721 0.300547 -0.95136)} Corner 129 212 {wid=300 normal=(0.0827748 0.35345 -0.931784)} Corner 126 212 {wid=293 normal=(0.0981436 0.827201 -0.553269)} Corner 128 212 {wid=295 normal=(0.0841458 0.30055 -0.950047)} Corner 125 213 {wid=290 normal=(0.100851 0.347142 -0.932374)} Corner 129 213 {wid=300 normal=(0.0827748 0.35345 -0.931784)} Corner 128 213 {wid=295 normal=(0.0841458 0.30055 -0.950047)} Corner 125 214 {wid=298 normal=(0.100851 0.347142 -0.932374)} Corner 126 214 {wid=299 normal=(0.0981436 0.827201 -0.553269)} Corner 129 214 {wid=301 normal=(0.0827748 0.35345 -0.931784)} Corner 149 215 {wid=340 normal=(0.00455241 0.292118 -0.956372)} Corner 130 215 {wid=302 normal=(-0.0271493 0.214852 -0.976269)} Corner 204 215 {wid=462 normal=(-0.072887 0.805779 -0.587714)} Corner 121 216 {wid=285 normal=(0.0295938 0.314764 -0.948709)} Corner 27 216 {wid=80 normal=(0.00222244 -0.310061 -0.950714)} Corner 130 216 {wid=302 normal=(-0.0271493 0.214852 -0.976269)} Corner 130 217 {wid=305 normal=(-0.0537101 0.22696 -0.972422)} Corner 131 217 {wid=304 normal=(-0.224497 0.395362 -0.890668)} Corner 204 217 {wid=306 normal=(-0.0394127 0.777053 -0.628201)} Corner 130 218 {wid=302 normal=(-0.0271493 0.214852 -0.976269)} Corner 131 218 {wid=303 normal=(-0.252204 0.389576 -0.88579)} Corner 145 219 {wid=331 normal=(-0.00327559 0.0446688 0.998996)} Corner 107 219 {wid=122 normal=(0.216059 -0.00616429 0.976361)} Corner 78 220 {wid=307 normal=(-0.00207356 0.00133552 0.999996)} Corner 137 220 {wid=308 normal=(0.00219129 -0.00364436 0.999991)} Corner 134 221 {wid=309 normal=(-0.627957 -0.778111 0.0145726)} Corner 133 221 {wid=65 normal=(-0.469984 0.86773 -0.161741)} Corner 36 221 {wid=36 normal=(-0.13648 0.955242 -0.262459)} Corner 135 222 {wid=311 normal=(-0.499854 0.82733 -0.256262)} Corner 33 222 {wid=64 normal=(-0.13648 0.955242 0.262462)} Corner 133 222 {wid=65 normal=(-0.469984 0.86773 -0.161741)} Corner 34 223 {wid=310 normal=(-0.481412 -0.813934 0.325198)} Corner 134 223 {wid=309 normal=(-0.627957 -0.778111 0.0145726)} Corner 160 223 {wid=358 normal=(-0.411212 -0.578794 -0.704203)} Corner 34 224 {wid=310 normal=(-0.481412 -0.813934 0.325198)} Corner 33 224 {wid=64 normal=(-0.13648 0.955242 0.262462)} Corner 216 224 {wid=431 normal=(-0.594623 -0.263326 0.75966)} Corner 134 225 {wid=313 normal=(-1 3.72529e-008 8.79169e-007)} Corner 213 225 {wid=484 normal=(-0.943809 -0.157919 -0.290322)} Corner 208 225 {wid=314 normal=(-0.997673 0.0681807 -0.000154302)} Corner 134 226 {wid=309 normal=(-0.627957 -0.778111 0.0145726)} Corner 34 226 {wid=310 normal=(-0.481412 -0.813934 0.325198)} Corner 197 226 {wid=441 normal=(-0.732359 -0.640649 0.230693)} Corner 49 227 {wid=316 normal=(-0.000546539 0 1)} Corner 136 227 {wid=101 normal=(-0.0226901 0.0172872 0.999593)} Corner 96 227 {wid=220 normal=(-0.00372708 0.00272159 0.999989)} Corner 49 228 {wid=82 normal=(0.0204086 0.997586 0.0663801)} Corner 141 228 {wid=321 normal=(-0.000181079 0.917626 0.397443)} Corner 162 228 {wid=364 normal=(0.0787042 0.906248 0.415356)} Corner 137 229 {wid=308 normal=(0.00219129 -0.00364436 0.999991)} Corner 78 229 {wid=307 normal=(-0.00207356 0.00133552 0.999996)} Corner 186 230 {wid=100 normal=(0.0831281 -0.0107116 0.996481)} Corner 137 230 {wid=317 normal=(0.0012807 -0.00141397 0.999998)} Corner 95 231 {wid=98 normal=(-0.000330962 -0.000765221 1)} Corner 78 231 {wid=307 normal=(-0.00207356 0.00133552 0.999996)} Corner 95 232 {wid=98 normal=(-0.000330962 -0.000765221 1)} Corner 136 232 {wid=101 normal=(-0.0226901 0.0172872 0.999593)} Corner 229 233 {wid=545 normal=(-0.198153 0.196185 0.960337)} Corner 265 233 {wid=646 normal=(-0.449139 0.41819 0.789551)} Corner 157 233 {wid=353 normal=(-0.411211 -0.578795 0.704203)} Corner 40 234 {wid=319 normal=(-0.11504 0.991803 0.0556074)} Corner 38 234 {wid=38 normal=(-0.13648 0.955242 -0.262461)} Corner 144 234 {wid=327 normal=(-0.499867 0.827321 -0.256272)} Corner 163 235 {wid=365 normal=(0.00258078 0.280699 0.959792)} Corner 140 235 {wid=320 normal=(-0.0282229 0.215469 0.976103)} Corner 100 235 {wid=230 normal=(-0.0308193 -0.196562 0.980008)} Corner 142 236 {wid=322 normal=(0.0224748 0.901768 0.431631)} Corner 123 236 {wid=287 normal=(-0.0132257 0.998798 -0.0472074)} Corner 174 236 {wid=388 normal=(-0.236503 0.851449 0.468081)} Corner 142 237 {wid=322 normal=(0.0224748 0.901768 0.431631)} Corner 141 237 {wid=321 normal=(-0.000181079 0.917626 0.397443)} Corner 123 237 {wid=287 normal=(-0.0132257 0.998798 -0.0472074)} Corner 164 238 {wid=366 normal=(0.0497582 0.897929 0.437315)} Corner 177 238 {wid=396 normal=(0.0264118 0.872582 0.487753)} Corner 141 238 {wid=321 normal=(-0.000181079 0.917626 0.397443)} Corner 163 239 {wid=365 normal=(0.00258078 0.280699 0.959792)} Corner 142 239 {wid=322 normal=(0.0224748 0.901768 0.431631)} Corner 140 239 {wid=320 normal=(-0.0282229 0.215469 0.976103)} Corner 163 240 {wid=324 normal=(0.0046211 0.367251 0.93011)} Corner 141 240 {wid=325 normal=(0.00600091 0.848233 0.529589)} Corner 142 240 {wid=323 normal=(0.0208575 0.846571 0.531868)} Corner 144 241 {wid=327 normal=(-0.499867 0.827321 -0.256272)} Corner 249 241 {wid=434 normal=(-0.469985 0.867729 0.161741)} Corner 40 241 {wid=319 normal=(-0.11504 0.991803 0.0556074)} Corner 139 242 {wid=40 normal=(-0.746698 -0.661827 -0.0665416)} Corner 37 242 {wid=37 normal=(-0.481413 -0.813934 -0.325198)} Corner 143 242 {wid=326 normal=(-0.694279 -0.71884 -0.0353024)} Corner 211 243 {wid=476 normal=(-0.661444 -0.430147 -0.614383)} Corner 144 243 {wid=327 normal=(-0.499867 0.827321 -0.256272)} Corner 38 243 {wid=38 normal=(-0.13648 0.955242 -0.262461)} Corner 212 244 {wid=329 normal=(-0.741272 -0.0252675 -0.670729)} Corner 143 244 {wid=330 normal=(-0.95087 -0.15732 0.26664)} Corner 144 244 {wid=328 normal=(-1 0 0)} Corner 78 245 {wid=332 normal=(-0.0020735 0.00133548 0.999997)} Corner 145 245 {wid=331 normal=(-0.00327559 0.0446688 0.998996)} Corner 248 245 {wid=333 normal=(-0.00193934 0.0005402 0.999998)} Corner 78 246 {wid=307 normal=(-0.00207356 0.00133552 0.999996)} Corner 145 246 {wid=331 normal=(-0.00327559 0.0446688 0.998996)} Corner 146 247 {wid=334 normal=(0.165507 0.984881 0.0511634)} Corner 217 247 {wid=496 normal=(-0.117009 0.992018 0.0470098)} Corner 83 248 {wid=188 normal=(0.727012 0.0197174 0.686342)} Corner 35 248 {wid=35 normal=(0.143688 0.982099 -0.121797)} Corner 148 248 {wid=336 normal=(0.164174 0.985293 0.0473962)} Corner 146 249 {wid=334 normal=(0.165507 0.984881 0.0511634)} Corner 147 249 {wid=335 normal=(0.16549 0.984885 -0.0511396)} Corner 217 249 {wid=496 normal=(-0.117009 0.992018 0.0470098)} Corner 259 250 {wid=630 normal=(0.165458 0.985215 -0.0444593)} Corner 35 250 {wid=35 normal=(0.143688 0.982099 -0.121797)} Corner 147 250 {wid=335 normal=(0.16549 0.984885 -0.0511396)} Corner 146 251 {wid=338 normal=(0.164893 0.986311 0)} Corner 148 251 {wid=337 normal=(0.164893 0.986311 0)} Corner 147 251 {wid=339 normal=(0.164893 0.986311 0)} Corner 146 252 {wid=334 normal=(0.165507 0.984881 0.0511634)} Corner 83 252 {wid=188 normal=(0.727012 0.0197174 0.686342)} Corner 148 252 {wid=336 normal=(0.164174 0.985293 0.0473962)} Corner 121 253 {wid=285 normal=(0.0295938 0.314764 -0.948709)} Corner 149 253 {wid=340 normal=(0.00455241 0.292118 -0.956372)} Corner 124 253 {wid=288 normal=(0.0351027 0.90077 -0.432875)} Corner 121 254 {wid=285 normal=(0.0295938 0.314764 -0.948709)} Corner 130 254 {wid=302 normal=(-0.0271493 0.214852 -0.976269)} Corner 149 254 {wid=340 normal=(0.00455241 0.292118 -0.956372)} Corner 151 255 {wid=342 normal=(0.000169096 0.882382 -0.470536)} Corner 150 255 {wid=341 normal=(0.0267741 0.919766 -0.391554)} Corner 124 255 {wid=288 normal=(0.0351027 0.90077 -0.432875)} Corner 149 256 {wid=340 normal=(0.00455241 0.292118 -0.956372)} Corner 204 256 {wid=462 normal=(-0.072887 0.805779 -0.587714)} Corner 150 256 {wid=341 normal=(0.0267741 0.919766 -0.391554)} Corner 149 257 {wid=340 normal=(0.00455241 0.292118 -0.956372)} Corner 151 257 {wid=342 normal=(0.000169096 0.882382 -0.470536)} Corner 124 257 {wid=288 normal=(0.0351027 0.90077 -0.432875)} Corner 149 258 {wid=344 normal=(0.00569222 0.366668 -0.930335)} Corner 150 258 {wid=345 normal=(0.0214233 0.846235 -0.532379)} Corner 151 258 {wid=343 normal=(0.00662427 0.847905 -0.530106)} Corner 48 259 {wid=83 normal=(0.245107 0.946751 0.208769)} Corner 152 259 {wid=27 normal=(0.212822 -0.0061729 0.977072)} Corner 115 259 {wid=266 normal=(0.285351 -0.952123 -0.10971)} Corner 48 260 {wid=83 normal=(0.245107 0.946751 0.208769)} Corner 90 260 {wid=207 normal=(0.215897 0.0417089 0.975525)} Corner 152 260 {wid=27 normal=(0.212822 -0.0061729 0.977072)} Corner 175 261 {wid=346 normal=(0.00309017 -0.00694389 -0.999971)} Corner 97 261 {wid=222 normal=(-6.57687e-005 -0.00271505 -0.999996)} Corner 79 262 {wid=284 normal=(0.00339018 0.137203 -0.990537)} Corner 39 263 {wid=39 normal=(0.164872 0.985056 0.0498234)} Corner 154 263 {wid=347 normal=(0.164302 0.985253 -0.0477602)} Corner 156 264 {wid=349 normal=(0.164105 0.985296 0.0475515)} Corner 75 264 {wid=160 normal=(0.148371 0.983734 -0.10126)} Corner 154 264 {wid=347 normal=(0.164302 0.985253 -0.0477602)} Corner 156 265 {wid=349 normal=(0.164105 0.985296 0.0475515)} Corner 155 265 {wid=348 normal=(0.145391 0.974834 0.168995)} Corner 75 265 {wid=160 normal=(0.148371 0.983734 -0.10126)} Corner 39 266 {wid=39 normal=(0.164872 0.985056 0.0498234)} Corner 40 266 {wid=71 normal=(-0.117008 0.992018 0.0470017)} Corner 155 266 {wid=348 normal=(0.145391 0.974834 0.168995)} Corner 39 267 {wid=351 normal=(0.164774 0.986331 0)} Corner 156 267 {wid=350 normal=(0.164774 0.986331 0)} Corner 154 267 {wid=352 normal=(0.164774 0.986331 0)} Corner 39 268 {wid=39 normal=(0.164872 0.985056 0.0498234)} Corner 155 268 {wid=348 normal=(0.145391 0.974834 0.168995)} Corner 156 268 {wid=349 normal=(0.164105 0.985296 0.0475515)} Corner 37 269 {wid=37 normal=(-0.481413 -0.813934 -0.325198)} Corner 258 269 {wid=629 normal=(-0.49594 -0.868357 -1.51992e-006)} Corner 143 269 {wid=326 normal=(-0.694279 -0.71884 -0.0353024)} Corner 37 270 {wid=69 normal=(-0.28723 -0.884656 -0.367265)} Corner 258 270 {wid=628 normal=(-0.241811 -0.970323 -1.95205e-005)} Corner 238 271 {wid=566 normal=(0.10164 0.993552 -0.0502214)} Corner 158 271 {wid=355 normal=(0.0996943 0.99368 -0.0515787)} Corner 101 271 {wid=110 normal=(0.0686898 0.996968 -0.0365704)} Corner 238 272 {wid=356 normal=(0.10164 0.993552 -0.0502214)} Corner 118 272 {wid=282 normal=(0.18964 0.981163 -0.0368239)} Corner 158 272 {wid=281 normal=(0.0996943 0.99368 -0.0515787)} Corner 230 273 {wid=546 normal=(-0.375181 -0.898713 0.227054)} Corner 246 273 {wid=581 normal=(-0.427505 0.690879 0.583032)} Corner 266 274 {wid=650 normal=(-0.0798312 -0.39783 0.91398)} Corner 36 275 {wid=36 normal=(-0.13648 0.955242 -0.262459)} Corner 160 275 {wid=358 normal=(-0.411212 -0.578794 -0.704203)} Corner 134 275 {wid=309 normal=(-0.627957 -0.778111 0.0145726)} Corner 36 276 {wid=67 normal=(-0.246136 0.882619 -0.4005)} Corner 218 276 {wid=500 normal=(0.111142 0.0162154 -0.993673)} Corner 160 276 {wid=359 normal=(-0.35593 -0.559204 -0.748736)} Corner 62 277 {wid=361 normal=(-0.305894 -0.949245 -0.0732299)} Corner 161 277 {wid=360 normal=(-0.293306 -0.912085 -0.286483)} Corner 88 277 {wid=363 normal=(-0.157124 -0.676987 -0.719028)} Corner 62 278 {wid=362 normal=(-0.608967 0.792431 0.0348194)} Corner 74 278 {wid=90 normal=(-0.218152 0.97419 0.0579926)} Corner 161 278 {wid=92 normal=(-0.610547 0.770557 -0.182958)} Corner 136 279 {wid=315 normal=(0.114342 0.990324 0.0786388)} Corner 178 279 {wid=397 normal=(0.0888316 0.870374 0.484312)} Corner 113 279 {wid=261 normal=(0.112169 0.836901 0.535738)} Corner 136 280 {wid=315 normal=(0.114342 0.990324 0.0786388)} Corner 49 280 {wid=82 normal=(0.0204086 0.997586 0.0663801)} Corner 162 280 {wid=364 normal=(0.0787042 0.906248 0.415356)} Corner 191 281 {wid=427 normal=(0.0146277 0.32386 0.945991)} Corner 163 281 {wid=365 normal=(0.00258078 0.280699 0.959792)} Corner 100 281 {wid=230 normal=(-0.0308193 -0.196562 0.980008)} Corner 189 282 {wid=425 normal=(0.0345894 0.90103 0.432372)} Corner 141 282 {wid=321 normal=(-0.000181079 0.917626 0.397443)} Corner 163 282 {wid=365 normal=(0.00258078 0.280699 0.959792)} Corner 189 283 {wid=425 normal=(0.0345894 0.90103 0.432372)} Corner 164 283 {wid=366 normal=(0.0497582 0.897929 0.437315)} Corner 141 283 {wid=321 normal=(-0.000181079 0.917626 0.397443)} Corner 67 284 {wid=368 normal=(0.086207 0.360384 0.928812)} Corner 177 284 {wid=369 normal=(0.0601684 0.839501 0.540017)} Corner 164 284 {wid=367 normal=(0.0646539 0.842931 0.534122)} Corner 54 285 {wid=371 normal=(-0.706193 0.706897 -0.0398573)} Corner 165 285 {wid=59 normal=(-0.701569 0.711459 -0.0403479)} Corner 100 285 {wid=231 normal=(-0.100391 0.99431 -0.035638)} Corner 54 286 {wid=225 normal=(-0.458952 -0.818032 0.34668)} Corner 98 286 {wid=224 normal=(-0.240495 -0.968163 0.0694492)} Corner 165 286 {wid=370 normal=(-0.304145 -0.950162 0.0684756)} Corner 124 287 {wid=288 normal=(0.0351027 0.90077 -0.432875)} Corner 168 287 {wid=374 normal=(0.0267388 0.872298 -0.488243)} Corner 169 287 {wid=375 normal=(0.0496977 0.897813 -0.437563)} Corner 124 288 {wid=288 normal=(0.0351027 0.90077 -0.432875)} Corner 202 288 {wid=458 normal=(0.0779111 0.9946 -0.0685672)} Corner 166 288 {wid=372 normal=(0.0790653 0.905989 -0.415851)} Corner 121 289 {wid=285 normal=(0.0295938 0.314764 -0.948709)} Corner 167 289 {wid=373 normal=(0.067721 0.300547 -0.95136)} Corner 260 289 {wid=634 normal=(0.0664426 -0.289164 -0.954971)} Corner 170 290 {wid=379 normal=(0.0504825 0.305107 -0.950979)} Corner 166 290 {wid=372 normal=(0.0790653 0.905989 -0.415851)} Corner 167 290 {wid=373 normal=(0.067721 0.300547 -0.95136)} Corner 166 291 {wid=372 normal=(0.0790653 0.905989 -0.415851)} Corner 168 291 {wid=374 normal=(0.0267388 0.872298 -0.488243)} Corner 124 291 {wid=288 normal=(0.0351027 0.90077 -0.432875)} Corner 166 292 {wid=372 normal=(0.0790653 0.905989 -0.415851)} Corner 170 292 {wid=379 normal=(0.0504825 0.305107 -0.950979)} Corner 168 292 {wid=374 normal=(0.0267388 0.872298 -0.488243)} Corner 171 293 {wid=377 normal=(0.0892618 0.362438 -0.927724)} Corner 169 293 {wid=376 normal=(0.0652957 0.842608 -0.534555)} Corner 168 293 {wid=378 normal=(0.0608079 0.839166 -0.540465)} Corner 172 294 {wid=382 normal=(0.0107135 0.91999 -0.391797)} Corner 124 294 {wid=288 normal=(0.0351027 0.90077 -0.432875)} Corner 169 294 {wid=375 normal=(0.0496977 0.897813 -0.437563)} Corner 171 295 {wid=381 normal=(0.0926376 0.314472 -0.944736)} Corner 170 295 {wid=379 normal=(0.0504825 0.305107 -0.950979)} Corner 167 295 {wid=373 normal=(0.067721 0.300547 -0.95136)} Corner 171 296 {wid=377 normal=(0.0892618 0.362438 -0.927724)} Corner 168 296 {wid=378 normal=(0.0608079 0.839166 -0.540465)} Corner 170 296 {wid=380 normal=(0.0852696 0.357134 -0.930153)} Corner 121 297 {wid=285 normal=(0.0295938 0.314764 -0.948709)} Corner 171 297 {wid=381 normal=(0.0926376 0.314472 -0.944736)} Corner 167 297 {wid=373 normal=(0.067721 0.300547 -0.95136)} Corner 121 298 {wid=285 normal=(0.0295938 0.314764 -0.948709)} Corner 169 298 {wid=375 normal=(0.0496977 0.897813 -0.437563)} Corner 171 298 {wid=381 normal=(0.0926376 0.314472 -0.944736)} Corner 121 299 {wid=285 normal=(0.0295938 0.314764 -0.948709)} Corner 172 299 {wid=382 normal=(0.0107135 0.91999 -0.391797)} Corner 169 299 {wid=375 normal=(0.0496977 0.897813 -0.437563)} Corner 121 300 {wid=384 normal=(0.0229271 0.375912 -0.926372)} Corner 124 300 {wid=385 normal=(0.0345243 0.850164 -0.525385)} Corner 172 300 {wid=383 normal=(0.0243069 0.851665 -0.523523)} Corner 25 301 {wid=194 normal=(0.950039 -0.305795 0.062582)} Corner 173 301 {wid=387 normal=(0.926872 -0.369216 0.0677409)} Corner 85 301 {wid=192 normal=(0.996656 -0.0469899 0.0668473)} Corner 55 302 {wid=103 normal=(0.112664 -0.177998 0.97756)} Corner 173 302 {wid=386 normal=(0.0545787 -0.278839 0.958787)} Corner 140 303 {wid=390 normal=(-0.0668825 0.236152 0.969412)} Corner 174 303 {wid=389 normal=(-0.110129 0.764433 0.635228)} Corner 263 303 {wid=391 normal=(-0.225504 0.395949 0.890153)} Corner 140 304 {wid=320 normal=(-0.0282229 0.215469 0.976103)} Corner 142 304 {wid=322 normal=(0.0224748 0.901768 0.431631)} Corner 174 304 {wid=388 normal=(-0.236503 0.851449 0.468081)} Corner 79 305 {wid=284 normal=(0.00339018 0.137203 -0.990537)} Corner 175 305 {wid=392 normal=(0.00309017 -0.00694389 -0.999971)} Corner 110 305 {wid=394 normal=(0.00197757 -0.00532543 -0.999984)} Corner 79 306 {wid=284 normal=(0.00339018 0.137203 -0.990537)} Corner 175 306 {wid=393 normal=(0.00677647 -0.00826687 -0.999943)} Corner 67 307 {wid=134 normal=(0.0723477 0.299683 0.951291)} Corner 176 307 {wid=395 normal=(0.0813044 0.289608 0.953685)} Corner 177 307 {wid=396 normal=(0.0264118 0.872582 0.487753)} Corner 67 308 {wid=134 normal=(0.0723477 0.299683 0.951291)} Corner 55 308 {wid=103 normal=(0.112664 -0.177998 0.97756)} Corner 176 308 {wid=395 normal=(0.0813044 0.289608 0.953685)} Corner 162 309 {wid=364 normal=(0.0787042 0.906248 0.415356)} Corner 177 309 {wid=396 normal=(0.0264118 0.872582 0.487753)} Corner 176 309 {wid=395 normal=(0.0813044 0.289608 0.953685)} Corner 162 310 {wid=364 normal=(0.0787042 0.906248 0.415356)} Corner 141 310 {wid=321 normal=(-0.000181079 0.917626 0.397443)} Corner 177 310 {wid=396 normal=(0.0264118 0.872582 0.487753)} Corner 162 311 {wid=364 normal=(0.0787042 0.906248 0.415356)} Corner 178 311 {wid=397 normal=(0.0888316 0.870374 0.484312)} Corner 136 311 {wid=315 normal=(0.114342 0.990324 0.0786388)} Corner 162 312 {wid=399 normal=(0.099318 0.829444 0.54969)} Corner 176 312 {wid=400 normal=(0.091024 0.348804 0.932765)} Corner 178 312 {wid=398 normal=(0.0971732 0.826582 0.554364)} Corner 85 313 {wid=193 normal=(0.164955 0.98495 -0.051604)} Corner 179 313 {wid=401 normal=(-0.0886436 0.925026 -0.369418)} Corner 158 313 {wid=355 normal=(0.0996943 0.99368 -0.0515787)} Corner 85 314 {wid=402 normal=(0.164955 0.98495 -0.051604)} Corner 173 314 {wid=234 normal=(0.170221 0.984112 -0.0504855)} Corner 179 314 {wid=236 normal=(-0.0674596 0.990817 -0.117179)} Corner 27 315 {wid=404 normal=(0.136545 0.593755 -0.792975)} Corner 180 315 {wid=403 normal=(-0.0480673 0.645862 -0.76194)} Corner 203 315 {wid=406 normal=(-0.656741 0.217939 -0.721937)} Corner 181 316 {wid=405 normal=(0.0686463 0.99699 0.0360287)} Corner 180 316 {wid=113 normal=(-0.0328681 0.998867 0.0344148)} Corner 27 317 {wid=404 normal=(0.136545 0.593755 -0.792975)} Corner 181 317 {wid=407 normal=(0.0846528 0.323944 -0.942281)} Corner 180 317 {wid=403 normal=(-0.0480673 0.645862 -0.76194)} Corner 27 318 {wid=114 normal=(0.141863 0.988737 0.047688)} Corner 181 318 {wid=408 normal=(-0.346356 0.936525 0.0543875)} Corner 103 319 {wid=410 normal=(-0.384641 0.837717 -0.387661)} Corner 182 319 {wid=243 normal=(-0.389186 0.921159 -0.000558674)} Corner 174 319 {wid=242 normal=(-0.371612 0.836493 0.402721)} Corner 262 320 {wid=640 normal=(-0.170655 0.815429 -0.55313)} Corner 182 320 {wid=409 normal=(-0.166602 0.986024 -0.000410676)} Corner 25 321 {wid=25 normal=(0.0227813 -0.989483 0.142855)} Corner 173 321 {wid=412 normal=(0.176394 -0.968159 0.17763)} Corner 25 322 {wid=25 normal=(0.0227813 -0.989483 0.142855)} Corner 26 322 {wid=26 normal=(0.0229398 -0.989574 -0.142187)} Corner 188 323 {wid=424 normal=(-0.464515 -0.300355 -0.833074)} Corner 102 323 {wid=238 normal=(-0.420261 0.761677 -0.493183)} Corner 27 324 {wid=80 normal=(0.00222244 -0.310061 -0.950714)} Corner 52 325 {wid=94 normal=(0.0110296 -0.996937 0.0774233)} Corner 261 325 {wid=638 normal=(0.0110887 -0.996936 0.0774315)} Corner 70 325 {wid=143 normal=(-0.110499 -0.668863 0.735128)} Corner 52 326 {wid=416 normal=(0.0110296 -0.996937 0.0774233)} Corner 119 326 {wid=417 normal=(0.0139585 -0.99686 0.0779396)} Corner 261 326 {wid=415 normal=(0.0110887 -0.996936 0.0774315)} Corner 48 327 {wid=83 normal=(0.245107 0.946751 0.208769)} Corner 186 327 {wid=418 normal=(0.207871 0.975917 0.0661548)} Corner 136 327 {wid=315 normal=(0.114342 0.990324 0.0786388)} Corner 48 328 {wid=83 normal=(0.245107 0.946751 0.208769)} Corner 53 328 {wid=419 normal=(0.255295 0.965949 0.0420414)} Corner 186 328 {wid=418 normal=(0.207871 0.975917 0.0661548)} Corner 69 329 {wid=57 normal=(-0.218075 0.974152 -0.0589111)} Corner 187 329 {wid=420 normal=(-0.161864 0.720168 0.674655)} Corner 69 330 {wid=422 normal=(-0.218075 0.974152 -0.0589111)} Corner 58 330 {wid=423 normal=(-0.608938 0.792394 -0.036152)} Corner 207 330 {wid=421 normal=(-0.61058 0.770795 0.181842)} Corner 188 331 {wid=424 normal=(-0.464515 -0.300355 -0.833074)} Corner 230 332 {wid=546 normal=(-0.375181 -0.898713 0.227054)} Corner 188 332 {wid=424 normal=(-0.464515 -0.300355 -0.833074)} Corner 67 333 {wid=134 normal=(0.0723477 0.299683 0.951291)} Corner 190 333 {wid=426 normal=(0.034794 0.681983 0.730538)} Corner 100 333 {wid=230 normal=(-0.0308193 -0.196562 0.980008)} Corner 67 334 {wid=134 normal=(0.0723477 0.299683 0.951291)} Corner 164 334 {wid=366 normal=(0.0497582 0.897929 0.437315)} Corner 190 334 {wid=426 normal=(0.034794 0.681983 0.730538)} Corner 189 335 {wid=425 normal=(0.0345894 0.90103 0.432372)} Corner 190 335 {wid=426 normal=(0.034794 0.681983 0.730538)} Corner 164 335 {wid=366 normal=(0.0497582 0.897929 0.437315)} Corner 191 336 {wid=427 normal=(0.0146277 0.32386 0.945991)} Corner 100 336 {wid=230 normal=(-0.0308193 -0.196562 0.980008)} Corner 190 336 {wid=426 normal=(0.034794 0.681983 0.730538)} Corner 189 337 {wid=429 normal=(0.0339074 0.850484 0.524906)} Corner 191 337 {wid=428 normal=(0.0174884 0.375702 0.926575)} Corner 190 337 {wid=430 normal=(0.0263132 0.646705 0.762286)} Corner 189 338 {wid=425 normal=(0.0345894 0.90103 0.432372)} Corner 163 338 {wid=365 normal=(0.00258078 0.280699 0.959792)} Corner 191 338 {wid=427 normal=(0.0146277 0.32386 0.945991)} Corner 135 339 {wid=311 normal=(-0.499854 0.82733 -0.256262)} Corner 215 339 {wid=492 normal=(-0.463615 0.565893 0.681781)} Corner 33 339 {wid=64 normal=(-0.13648 0.955242 0.262462)} Corner 135 340 {wid=312 normal=(-0.326037 0.644753 -0.691371)} Corner 237 340 {wid=564 normal=(-0.950881 -0.157225 0.266655)} Corner 192 340 {wid=432 normal=(-0.666972 0.108266 0.737175)} Corner 115 341 {wid=266 normal=(0.285351 -0.952123 -0.10971)} Corner 109 341 {wid=99 normal=(0.214065 -0.00684393 -0.976795)} Corner 115 342 {wid=266 normal=(0.285351 -0.952123 -0.10971)} Corner 220 343 {wid=436 normal=(-0.997641 0.0686437 0.000226945)} Corner 194 343 {wid=435 normal=(-0.99758 0.0695359 -4.32845e-005)} Corner 226 343 {wid=437 normal=(-0.997651 0.0684966 0.000256754)} Corner 265 344 {wid=646 normal=(-0.449139 0.41819 0.789551)} Corner 40 344 {wid=319 normal=(-0.11504 0.991803 0.0556074)} Corner 249 344 {wid=434 normal=(-0.469985 0.867729 0.161741)} Corner 77 345 {wid=120 normal=(-0.304086 -0.950194 -0.0682845)} Corner 235 345 {wid=438 normal=(-0.30201 -0.951054 -0.0654767)} Corner 62 345 {wid=86 normal=(-0.305894 -0.949245 -0.0732299)} Corner 77 346 {wid=439 normal=(-0.699895 0.713368 0.0353903)} Corner 180 346 {wid=113 normal=(-0.0328681 0.998867 0.0344148)} Corner 195 346 {wid=165 normal=(-0.257519 0.965337 0.0425238)} Corner 76 347 {wid=68 normal=(0.097815 -0.980487 0.17052)} Corner 234 347 {wid=556 normal=(0.150042 -0.175068 -0.973056)} Corner 258 348 {wid=628 normal=(-0.241811 -0.970323 -1.95205e-005)} Corner 216 349 {wid=431 normal=(-0.594623 -0.263326 0.75966)} Corner 197 349 {wid=441 normal=(-0.732359 -0.640649 0.230693)} Corner 34 349 {wid=310 normal=(-0.481412 -0.813934 0.325198)} Corner 214 350 {wid=488 normal=(0.00992953 0.175033 -0.984513)} Corner 237 350 {wid=444 normal=(0.0566153 0.997991 0.0284449)} Corner 197 350 {wid=442 normal=(0.0539041 0.950195 -0.30696)} Corner 192 351 {wid=446 normal=(-0.0563406 -0.993337 0.100538)} Corner 198 351 {wid=443 normal=(-3.72529e-009 2.98023e-008 -1)} Corner 197 351 {wid=442 normal=(0.0539041 0.950195 -0.30696)} Corner 199 352 {wid=447 normal=(-0.997656 0.0684249 7.37537e-005)} Corner 237 352 {wid=448 normal=(-0.997651 0.0685005 7.27522e-005)} Corner 214 352 {wid=445 normal=(-0.997603 0.0691906 0.000397439)} Corner 192 353 {wid=446 normal=(-0.0563406 -0.993337 0.100538)} Corner 252 353 {wid=449 normal=(-0.0563406 -0.993337 0.100538)} Corner 198 353 {wid=443 normal=(-3.72529e-009 2.98023e-008 -1)} Corner 192 354 {wid=451 normal=(-0.666972 0.108266 0.737175)} Corner 237 354 {wid=452 normal=(-0.332538 -0.505702 0.796043)} Corner 199 354 {wid=450 normal=(0.0088878 0.0821886 0.996577)} Corner 34 355 {wid=34 normal=(-0.287232 -0.884655 0.367264)} Corner 34 356 {wid=34 normal=(-0.287232 -0.884655 0.367264)} Corner 84 356 {wid=66 normal=(0.111257 -0.977469 -0.179379)} Corner 71 357 {wid=456 normal=(-0.189291 0.981801 0.0153508)} Corner 201 357 {wid=455 normal=(-0.252502 0.967395 0.0197351)} Corner 82 357 {wid=457 normal=(-0.250174 0.956697 0.148808)} Corner 71 358 {wid=146 normal=(0.11958 0.0249788 0.99251)} Corner 114 358 {wid=262 normal=(0.101861 -0.0143418 0.994695)} Corner 201 358 {wid=454 normal=(0.121521 0.0199206 0.992389)} Corner 264 359 {wid=81 normal=(0.0204892 0.997544 -0.0669848)} Corner 202 359 {wid=458 normal=(0.0779111 0.9946 -0.0685672)} Corner 124 359 {wid=288 normal=(0.0351027 0.90077 -0.432875)} Corner 264 360 {wid=459 normal=(0.000574811 0 -1)} Corner 112 360 {wid=259 normal=(-0.00298995 0.00193331 -0.999994)} Corner 202 360 {wid=132 normal=(-0.00722631 0.00580162 -0.999957)} Corner 77 361 {wid=439 normal=(-0.699895 0.713368 0.0353903)} Corner 203 361 {wid=460 normal=(-0.706228 0.70694 0.0384372)} Corner 180 361 {wid=113 normal=(-0.0328681 0.998867 0.0344148)} Corner 77 362 {wid=120 normal=(-0.304086 -0.950194 -0.0682845)} Corner 26 362 {wid=119 normal=(0.0229394 -0.989574 -0.142187)} Corner 203 362 {wid=461 normal=(-0.458551 -0.818221 -0.346763)} Corner 123 363 {wid=287 normal=(-0.0132257 0.998798 -0.0472074)} Corner 204 363 {wid=462 normal=(-0.072887 0.805779 -0.587714)} Corner 103 363 {wid=239 normal=(-0.281292 0.901211 -0.329686)} Corner 123 364 {wid=287 normal=(-0.0132257 0.998798 -0.0472074)} Corner 150 364 {wid=341 normal=(0.0267741 0.919766 -0.391554)} Corner 204 364 {wid=462 normal=(-0.072887 0.805779 -0.587714)} Corner 206 365 {wid=464 normal=(-0.00384402 0.998598 -0.0527976)} Corner 205 365 {wid=463 normal=(0.0397327 0.997129 0.0644528)} Corner 124 365 {wid=288 normal=(0.0351027 0.90077 -0.432875)} Corner 122 366 {wid=286 normal=(-0.0039004 0.998631 0.0521583)} Corner 141 366 {wid=321 normal=(-0.000181079 0.917626 0.397443)} Corner 205 366 {wid=463 normal=(0.0397327 0.997129 0.0644528)} Corner 253 367 {wid=466 normal=(-0.00199548 0.100004 -0.994985)} Corner 206 367 {wid=465 normal=(-0.00199548 0.100004 -0.994985)} Corner 123 367 {wid=467 normal=(-0.00199548 0.100004 -0.994985)} Corner 122 368 {wid=286 normal=(-0.0039004 0.998631 0.0521583)} Corner 205 368 {wid=463 normal=(0.0397327 0.997129 0.0644528)} Corner 206 368 {wid=464 normal=(-0.00384402 0.998598 -0.0527976)} Corner 187 369 {wid=468 normal=(-0.204755 -0.682227 0.701885)} Corner 207 369 {wid=145 normal=(-0.293632 -0.911864 0.286851)} Corner 70 369 {wid=142 normal=(-0.110499 -0.668863 0.735128)} Corner 187 370 {wid=469 normal=(-0.161864 0.720168 0.674655)} Corner 69 370 {wid=422 normal=(-0.218075 0.974152 -0.0589111)} Corner 207 370 {wid=421 normal=(-0.61058 0.770795 0.181842)} Corner 133 371 {wid=471 normal=(-0.0547706 -0.965807 0.25341)} Corner 208 371 {wid=470 normal=(0.0197012 0.347282 0.937554)} Corner 244 371 {wid=473 normal=(-0.0488522 -0.861518 0.505372)} Corner 133 372 {wid=472 normal=(-0.994475 0.0799384 -0.0680414)} Corner 134 372 {wid=313 normal=(-1 3.72529e-008 8.79169e-007)} Corner 208 372 {wid=314 normal=(-0.997673 0.0681807 -0.000154302)} Corner 83 373 {wid=188 normal=(0.727012 0.0197174 0.686342)} Corner 83 374 {wid=188 normal=(0.727012 0.0197174 0.686342)} Corner 146 374 {wid=334 normal=(0.165507 0.984881 0.0511634)} Corner 210 375 {wid=475 normal=(0.00522839 -0.00762786 -0.999957)} Corner 97 375 {wid=222 normal=(-6.57687e-005 -0.00271505 -0.999996)} Corner 210 376 {wid=475 normal=(0.00522839 -0.00762786 -0.999957)} Corner 139 377 {wid=40 normal=(-0.746698 -0.661827 -0.0665416)} Corner 211 377 {wid=476 normal=(-0.661444 -0.430147 -0.614383)} Corner 37 377 {wid=37 normal=(-0.481413 -0.813934 -0.325198)} Corner 212 378 {wid=478 normal=(-0.546101 -0.833084 -0.0880058)} Corner 144 378 {wid=479 normal=(-0.719171 -0.681414 -0.135896)} Corner 211 378 {wid=477 normal=(-0.997666 0.068289 -9.69758e-005)} Corner 139 379 {wid=481 normal=(-0.997631 0.0687942 -0.000406124)} Corner 224 379 {wid=480 normal=(-0.997533 0.0701991 0.000799695)} Corner 223 379 {wid=483 normal=(-0.997657 0.0683443 -0.00321824)} Corner 139 380 {wid=482 normal=(-0.997293 0.0416895 -0.0605699)} Corner 143 380 {wid=330 normal=(-0.95087 -0.15732 0.26664)} Corner 212 380 {wid=329 normal=(-0.741272 -0.0252675 -0.670729)} Corner 135 381 {wid=312 normal=(-0.326037 0.644753 -0.691371)} Corner 213 381 {wid=484 normal=(-0.943809 -0.157919 -0.290322)} Corner 134 381 {wid=313 normal=(-1 3.72529e-008 8.79169e-007)} Corner 250 382 {wid=486 normal=(-0.997766 0.0668039 -0.00059008)} Corner 257 382 {wid=487 normal=(-0.997646 0.068555 -0.0015005)} Corner 213 382 {wid=485 normal=(-0.997533 0.0701991 0.000799715)} Corner 198 383 {wid=443 normal=(-3.72529e-009 2.98023e-008 -1)} Corner 214 383 {wid=488 normal=(0.00992953 0.175033 -0.984513)} Corner 197 383 {wid=442 normal=(0.0539041 0.950195 -0.30696)} Corner 198 384 {wid=490 normal=(0.0564777 0.996537 -0.0610344)} Corner 199 384 {wid=491 normal=(0.0564777 0.996537 -0.0610344)} Corner 214 384 {wid=489 normal=(0.0564777 0.996537 -0.0610344)} Corner 192 385 {wid=432 normal=(-0.666972 0.108266 0.737175)} Corner 215 385 {wid=493 normal=(-0.968109 0.216046 0.126843)} Corner 135 385 {wid=312 normal=(-0.326037 0.644753 -0.691371)} Corner 216 386 {wid=431 normal=(-0.594623 -0.263326 0.75966)} Corner 33 386 {wid=64 normal=(-0.13648 0.955242 0.262462)} Corner 215 386 {wid=492 normal=(-0.463615 0.565893 0.681781)} Corner 192 387 {wid=432 normal=(-0.666972 0.108266 0.737175)} Corner 216 387 {wid=494 normal=(-0.997676 0.0681403 -0.000108898)} Corner 215 387 {wid=493 normal=(-0.968109 0.216046 0.126843)} Corner 192 388 {wid=432 normal=(-0.666972 0.108266 0.737175)} Corner 197 388 {wid=495 normal=(-0.997662 0.0683456 0.000111142)} Corner 216 388 {wid=494 normal=(-0.997676 0.0681403 -0.000108898)} Corner 33 389 {wid=498 normal=(0.743352 -0.534637 -0.401984)} Corner 217 389 {wid=497 normal=(0.76875 -0.638766 -0.0316364)} Corner 36 389 {wid=499 normal=(0.761557 -0.581396 0.286374)} Corner 33 390 {wid=33 normal=(-0.317586 0.77419 0.547512)} Corner 217 390 {wid=496 normal=(-0.117009 0.992018 0.0470098)} Corner 35 391 {wid=35 normal=(0.143688 0.982099 -0.121797)} Corner 218 391 {wid=500 normal=(0.111142 0.0162154 -0.993673)} Corner 36 391 {wid=67 normal=(-0.246136 0.882619 -0.4005)} Corner 35 392 {wid=190 normal=(0.997657 -0.0684201 0)} Corner 84 392 {wid=191 normal=(0.997657 -0.0684201 0)} Corner 218 392 {wid=501 normal=(0.997657 -0.0684201 0)} Corner 221 393 {wid=504 normal=(-0.997654 0.0684565 -1.22736e-005)} Corner 222 393 {wid=503 normal=(-0.997654 0.0684564 -1.22736e-005)} Corner 194 393 {wid=505 normal=(-0.997654 0.0684564 -1.22736e-005)} Corner 143 394 {wid=326 normal=(-0.694279 -0.71884 -0.0353024)} Corner 157 394 {wid=353 normal=(-0.411211 -0.578795 0.704203)} Corner 219 394 {wid=502 normal=(-0.594709 -0.263309 0.759598)} Corner 143 395 {wid=508 normal=(-0.95087 -0.15732 0.26664)} Corner 220 395 {wid=506 normal=(-0.0130124 -0.229419 0.973241)} Corner 226 395 {wid=510 normal=(-0.326031 0.644757 0.69137)} Corner 143 396 {wid=509 normal=(0.0564732 0.99604 -0.0686616)} Corner 219 396 {wid=511 normal=(0.0564732 0.99604 -0.0686616)} Corner 220 396 {wid=507 normal=(0.0564732 0.99604 -0.0686616)} Corner 220 397 {wid=514 normal=(0.0565432 0.997159 -0.0497697)} Corner 221 397 {wid=512 normal=(0.0565432 0.997159 -0.0497697)} Corner 194 397 {wid=516 normal=(0.0565432 0.997159 -0.0497697)} Corner 220 398 {wid=515 normal=(0.00643367 0.113462 -0.993522)} Corner 222 398 {wid=517 normal=(0.00643367 0.113462 -0.993522)} Corner 221 398 {wid=513 normal=(0.00643367 0.113462 -0.993522)} Corner 219 399 {wid=519 normal=(-0.0565811 -0.996943 0.0538876)} Corner 222 399 {wid=518 normal=(-0.0565811 -0.996943 0.0538876)} Corner 220 399 {wid=520 normal=(-0.0565811 -0.996943 0.0538876)} Corner 219 400 {wid=519 normal=(-0.0565811 -0.996943 0.0538876)} Corner 194 400 {wid=521 normal=(-0.0565811 -0.996943 0.0538876)} Corner 222 400 {wid=518 normal=(-0.0565811 -0.996943 0.0538876)} Corner 211 401 {wid=523 normal=(0.0429071 0.756345 0.652765)} Corner 223 401 {wid=522 normal=(0 0 1)} Corner 225 401 {wid=524 normal=(0 0 1)} Corner 211 402 {wid=523 normal=(0.0429071 0.756345 0.652765)} Corner 139 402 {wid=525 normal=(0.0566261 0.99818 0.0207183)} Corner 223 402 {wid=522 normal=(0 0 1)} Corner 212 403 {wid=528 normal=(-0.301302 0.36979 -0.878904)} Corner 224 403 {wid=526 normal=(0.0138804 0.146092 -0.989174)} Corner 139 403 {wid=530 normal=(-0.0399705 -0.704582 -0.708496)} Corner 225 404 {wid=529 normal=(-0.997684 0.0680206 -2.63127e-005)} Corner 223 404 {wid=531 normal=(-0.997684 0.0680206 -2.63127e-005)} Corner 224 404 {wid=527 normal=(-0.997684 0.0680206 -2.63127e-005)} Corner 272 405 {wid=533 normal=(-0.99765 0.0685132 0.000116429)} Corner 225 405 {wid=532 normal=(-0.997665 0.0682954 0.000514509)} Corner 224 405 {wid=535 normal=(-0.997634 0.0687471 0.000378501)} Corner 212 406 {wid=534 normal=(-0.0563406 -0.993337 -0.100538)} Corner 211 406 {wid=523 normal=(0.0429071 0.756345 0.652765)} Corner 225 406 {wid=524 normal=(0 0 1)} Corner 144 407 {wid=327 normal=(-0.499867 0.827321 -0.256272)} Corner 226 407 {wid=536 normal=(-0.499854 0.827331 0.256261)} Corner 249 407 {wid=434 normal=(-0.469985 0.867729 0.161741)} Corner 144 408 {wid=328 normal=(-1 0 0)} Corner 143 408 {wid=330 normal=(-0.95087 -0.15732 0.26664)} Corner 226 408 {wid=537 normal=(-0.983531 0.126531 0.129061)} Corner 86 409 {wid=197 normal=(0.014872 -0.99755 0.0683505)} Corner 227 409 {wid=539 normal=(0.0114029 -0.997569 0.0687507)} Corner 24 409 {wid=198 normal=(0.0134038 -0.99468 0.102141)} Corner 86 410 {wid=196 normal=(0.014872 -0.99755 0.0683505)} Corner 52 410 {wid=94 normal=(0.0110296 -0.996937 0.0774233)} Corner 227 410 {wid=538 normal=(0.0114029 -0.997569 0.0687507)} Corner 101 411 {wid=541 normal=(0.0926757 0.425215 0.900335)} Corner 228 411 {wid=233 normal=(0.0645628 0.0328336 0.997373)} Corner 100 411 {wid=237 normal=(-0.113835 0.641259 0.758834)} Corner 101 412 {wid=542 normal=(0.1164 0.992324 -0.0417633)} Corner 179 412 {wid=543 normal=(0.1164 0.992324 -0.0417633)} Corner 228 412 {wid=540 normal=(0.1164 0.992324 -0.0417633)} Corner 40 413 {wid=71 normal=(-0.117008 0.992018 0.0470017)} Corner 229 413 {wid=544 normal=(-0.373235 0.168162 0.912369)} Corner 155 413 {wid=348 normal=(0.145391 0.974834 0.168995)} Corner 40 414 {wid=319 normal=(-0.11504 0.991803 0.0556074)} Corner 265 414 {wid=646 normal=(-0.449139 0.41819 0.789551)} Corner 229 414 {wid=545 normal=(-0.198153 0.196185 0.960337)} Corner 230 415 {wid=546 normal=(-0.375181 -0.898713 0.227054)} Corner 230 416 {wid=546 normal=(-0.375181 -0.898713 0.227054)} Corner 29 417 {wid=29 normal=(0 -4.64916e-006 -1)} Corner 232 417 {wid=548 normal=(0 -0.987688 0.156439)} Corner 28 417 {wid=28 normal=(0 -0.987688 0.156436)} Corner 29 418 {wid=29 normal=(0 -4.64916e-006 -1)} Corner 31 418 {wid=31 normal=(0 0.951049 -0.30904)} Corner 231 418 {wid=547 normal=(0 0.309008 0.951059)} Corner 231 419 {wid=550 normal=(0 0.453988 0.891008)} Corner 232 419 {wid=549 normal=(0 -0.987688 0.156434)} Corner 29 419 {wid=551 normal=(0 0.156432 -0.987689)} Corner 231 420 {wid=547 normal=(0 0.309008 0.951059)} Corner 28 420 {wid=28 normal=(0 -0.987688 0.156436)} Corner 232 420 {wid=548 normal=(0 -0.987688 0.156439)} Corner 57 421 {wid=554 normal=(-0.252522 0.96737 -0.0206966)} Corner 233 421 {wid=553 normal=(-0.189304 0.981784 -0.016235)} Corner 106 421 {wid=555 normal=(-0.25007 0.956587 -0.149689)} Corner 57 422 {wid=105 normal=(0.122621 0.0192016 -0.992268)} Corner 128 422 {wid=292 normal=(0.0841458 0.30055 -0.950046)} Corner 233 422 {wid=552 normal=(0.120704 0.0243889 -0.992389)} Corner 75 423 {wid=160 normal=(0.148371 0.983734 -0.10126)} Corner 234 423 {wid=556 normal=(0.150042 -0.175068 -0.973056)} Corner 75 424 {wid=161 normal=(0.997657 -0.0684201 0)} Corner 76 424 {wid=163 normal=(0.997657 -0.0684201 0)} Corner 234 424 {wid=557 normal=(0.997657 -0.0684201 0)} Corner 195 425 {wid=560 normal=(-0.257519 0.965337 0.0425238)} Corner 235 425 {wid=558 normal=(-0.593933 0.803123 0.0473068)} Corner 77 425 {wid=561 normal=(-0.699895 0.713368 0.0353903)} Corner 195 426 {wid=165 normal=(-0.257519 0.965337 0.0425238)} Corner 62 426 {wid=115 normal=(-0.608967 0.792431 0.0348194)} Corner 235 426 {wid=559 normal=(-0.593933 0.803123 0.0473068)} Corner 62 427 {wid=86 normal=(-0.305894 -0.949245 -0.0732299)} Corner 236 427 {wid=562 normal=(-0.15614 -0.98517 -0.0711387)} Corner 77 427 {wid=120 normal=(-0.304086 -0.950194 -0.0682845)} Corner 62 428 {wid=361 normal=(-0.305894 -0.949245 -0.0732299)} Corner 88 428 {wid=363 normal=(-0.157124 -0.676987 -0.719028)} Corner 236 428 {wid=563 normal=(-0.15614 -0.98517 -0.0711387)} Corner 134 429 {wid=313 normal=(-1 3.72529e-008 8.79169e-007)} Corner 237 429 {wid=564 normal=(-0.950881 -0.157225 0.266655)} Corner 135 429 {wid=312 normal=(-0.326037 0.644753 -0.691371)} Corner 134 430 {wid=313 normal=(-1 3.72529e-008 8.79169e-007)} Corner 197 430 {wid=565 normal=(-0.997662 0.0683456 0.000111142)} Corner 237 430 {wid=564 normal=(-0.950881 -0.157225 0.266655)} Corner 238 431 {wid=566 normal=(0.10164 0.993552 -0.0502214)} Corner 101 431 {wid=110 normal=(0.0686898 0.996968 -0.0365704)} Corner 117 432 {wid=140 normal=(0.19458 0.914305 0.355226)} Corner 238 432 {wid=566 normal=(0.10164 0.993552 -0.0502214)} Corner 60 433 {wid=112 normal=(0.162923 0.985532 0.0467299)} Corner 239 433 {wid=567 normal=(0.101585 0.993583 0.0497612)} Corner 60 434 {wid=112 normal=(0.162923 0.985532 0.0467299)} Corner 51 434 {wid=159 normal=(0.194967 0.914066 -0.355629)} Corner 239 434 {wid=567 normal=(0.101585 0.993583 0.0497612)} Corner 239 435 {wid=567 normal=(0.101585 0.993583 0.0497612)} Corner 240 435 {wid=568 normal=(0.0755186 0.995733 0.0530426)} Corner 241 436 {wid=569 normal=(0.0786132 0.99551 0.0527507)} Corner 74 436 {wid=158 normal=(-0.218152 0.97419 0.0579946)} Corner 240 436 {wid=568 normal=(0.0755186 0.995733 0.0530426)} Corner 239 437 {wid=571 normal=(0.106108 0.993105 0.0498361)} Corner 241 437 {wid=570 normal=(0.106108 0.993105 0.0498361)} Corner 240 437 {wid=572 normal=(0.106108 0.993105 0.0498361)} Corner 239 438 {wid=567 normal=(0.101585 0.993583 0.0497612)} Corner 51 438 {wid=159 normal=(0.194967 0.914066 -0.355629)} Corner 241 438 {wid=569 normal=(0.0786132 0.99551 0.0527507)} Corner 242 439 {wid=573 normal=(-0.153967 0.819245 0.552387)} Corner 182 439 {wid=409 normal=(-0.166602 0.986024 -0.000410676)} Corner 140 440 {wid=320 normal=(-0.0282229 0.215469 0.976103)} Corner 263 440 {wid=642 normal=(-0.187047 0.732107 0.655006)} Corner 76 441 {wid=68 normal=(0.097815 -0.980487 0.17052)} Corner 271 442 {wid=659 normal=(0.10493 0.59559 0.796406)} Corner 157 442 {wid=354 normal=(-0.355922 -0.559206 0.748737)} Corner 250 443 {wid=576 normal=(-0.997641 0.0686437 -0.000226941)} Corner 244 443 {wid=575 normal=(-0.997712 0.0675977 0.00111722)} Corner 257 443 {wid=578 normal=(-0.997579 0.0695359 4.32822e-005)} Corner 135 444 {wid=577 normal=(-0.0563406 -0.993337 -0.100539)} Corner 133 444 {wid=471 normal=(-0.0547706 -0.965807 0.25341)} Corner 244 444 {wid=473 normal=(-0.0488522 -0.861518 0.505372)} Corner 53 445 {wid=580 normal=(0.254706 0.96623 -0.0390359)} Corner 245 445 {wid=79 normal=(0.245345 0.946622 -0.209077)} Corner 202 445 {wid=458 normal=(0.0779111 0.9946 -0.0685672)} Corner 53 446 {wid=269 normal=(0.997295 -0.0734987 0.000739386)} Corner 115 446 {wid=267 normal=(1 -4.96174e-005 0.000702549)} Corner 245 446 {wid=579 normal=(1 -4.96209e-005 0.000702549)} Corner 102 447 {wid=238 normal=(-0.420261 0.761677 -0.493183)} Corner 246 447 {wid=581 normal=(-0.427505 0.690879 0.583032)} Corner 182 447 {wid=409 normal=(-0.166602 0.986024 -0.000410676)} Corner 102 448 {wid=135 normal=(-0.420261 0.761677 -0.493183)} Corner 230 448 {wid=137 normal=(-0.375181 -0.898713 0.227054)} Corner 246 448 {wid=582 normal=(-0.427505 0.690879 0.583032)} Corner 74 449 {wid=90 normal=(-0.218152 0.97419 0.0579926)} Corner 247 449 {wid=583 normal=(-0.209074 0.919459 -0.332992)} Corner 161 449 {wid=92 normal=(-0.610547 0.770557 -0.182958)} Corner 74 450 {wid=158 normal=(-0.218152 0.97419 0.0579946)} Corner 241 450 {wid=569 normal=(0.0786132 0.99551 0.0527507)} Corner 247 450 {wid=584 normal=(-0.209074 0.919459 -0.332992)} Corner 110 451 {wid=254 normal=(-0.609268 0.708465 -0.356186)} Corner 248 451 {wid=585 normal=(-0.608086 0.707951 0.359216)} Corner 145 451 {wid=167 normal=(-0.225551 0.900124 0.372698)} Corner 110 452 {wid=171 normal=(-0.609268 0.708465 -0.356186)} Corner 63 452 {wid=173 normal=(-0.607206 0.707161 0.362249)} Corner 248 452 {wid=586 normal=(-0.608086 0.707951 0.359216)} Corner 194 453 {wid=589 normal=(-0.997613 0.069055 -4.07638e-005)} Corner 249 453 {wid=587 normal=(-0.997613 0.069055 -4.07638e-005)} Corner 226 453 {wid=591 normal=(-0.997613 0.069055 -4.07638e-005)} Corner 194 454 {wid=590 normal=(-0.0112119 -0.197636 -0.980211)} Corner 219 454 {wid=592 normal=(0 0 -1)} Corner 249 454 {wid=588 normal=(-0.0488268 -0.861069 -0.506138)} Corner 135 455 {wid=595 normal=(-0.147432 0.628776 -0.763482)} Corner 250 455 {wid=593 normal=(0.0210551 0.34743 -0.93747)} Corner 213 455 {wid=597 normal=(-0.587246 -0.35557 -0.727126)} Corner 135 456 {wid=596 normal=(-0.997614 0.0690427 8.41708e-005)} Corner 244 456 {wid=598 normal=(-0.997712 0.0675977 0.00111722)} Corner 250 456 {wid=594 normal=(-0.997679 0.0680869 -0.00031462)} Corner 38 457 {wid=70 normal=(-0.285088 0.771579 -0.568675)} Corner 234 457 {wid=556 normal=(0.150042 -0.175068 -0.973056)} Corner 38 458 {wid=70 normal=(-0.285088 0.771579 -0.568675)} Corner 40 458 {wid=71 normal=(-0.117008 0.992018 0.0470017)} Corner 199 459 {wid=450 normal=(0.0088878 0.0821886 0.996577)} Corner 252 459 {wid=600 normal=(0.0440995 0.658045 0.751686)} Corner 192 459 {wid=451 normal=(-0.666972 0.108266 0.737175)} Corner 199 460 {wid=602 normal=(-0.997634 0.0687471 -0.000378513)} Corner 198 460 {wid=603 normal=(-0.997644 0.0686081 -0.000382367)} Corner 252 460 {wid=601 normal=(-0.997543 0.0700494 -0.000610059)} Corner 255 461 {wid=606 normal=(-0.354051 0.935226 -0.000537551)} Corner 254 461 {wid=604 normal=(-0.354051 0.935226 -0.000537551)} Corner 123 461 {wid=608 normal=(-0.354051 0.935226 -0.000537551)} Corner 122 462 {wid=607 normal=(0.538726 -0.842481 0.000634346)} Corner 206 462 {wid=609 normal=(0.538726 -0.842481 0.000634346)} Corner 253 462 {wid=605 normal=(0.538726 -0.842481 0.000634346)} Corner 253 463 {wid=612 normal=(-0.0265561 0.999647 -0.000341139)} Corner 254 463 {wid=610 normal=(-0.0265561 0.999647 -0.000341139)} Corner 255 463 {wid=613 normal=(-0.0265561 0.999647 -0.000341139)} Corner 253 464 {wid=466 normal=(-0.00199548 0.100004 -0.994985)} Corner 123 464 {wid=467 normal=(-0.00199548 0.100004 -0.994985)} Corner 254 464 {wid=611 normal=(-0.00199548 0.100004 -0.994985)} Corner 122 465 {wid=615 normal=(-0.00318278 0.103159 0.99466)} Corner 255 465 {wid=614 normal=(-0.00318278 0.103159 0.99466)} Corner 123 465 {wid=616 normal=(-0.00318278 0.103159 0.99466)} Corner 122 466 {wid=615 normal=(-0.00318278 0.103159 0.99466)} Corner 253 466 {wid=617 normal=(-0.00318278 0.103159 0.99466)} Corner 255 466 {wid=614 normal=(-0.00318278 0.103159 0.99466)} Corner 41 467 {wid=620 normal=(-1 0 0)} Corner 256 467 {wid=618 normal=(-1 0 0)} Corner 45 467 {wid=622 normal=(-1 0 0)} Corner 41 468 {wid=621 normal=(0 -1 3.47523e-006)} Corner 43 468 {wid=623 normal=(0 0.271447 0.962453)} Corner 256 468 {wid=619 normal=(0 -0.587805 0.809003)} Corner 208 469 {wid=470 normal=(0.0197012 0.347282 0.937554)} Corner 257 469 {wid=624 normal=(0.00498402 0.0878553 0.996121)} Corner 244 469 {wid=473 normal=(-0.0488522 -0.861518 0.505372)} Corner 208 470 {wid=626 normal=(-0.997588 0.0694172 0.000554126)} Corner 213 470 {wid=627 normal=(-0.997633 0.0687606 6.87758e-005)} Corner 257 470 {wid=625 normal=(-0.997621 0.0689344 -0.000175719)} Corner 157 471 {wid=354 normal=(-0.355922 -0.559206 0.748737)} Corner 258 471 {wid=628 normal=(-0.241811 -0.970323 -1.95205e-005)} Corner 157 472 {wid=353 normal=(-0.411211 -0.578795 0.704203)} Corner 143 472 {wid=326 normal=(-0.694279 -0.71884 -0.0353024)} Corner 258 472 {wid=629 normal=(-0.49594 -0.868357 -1.51992e-006)} Corner 148 473 {wid=632 normal=(0.164894 0.986311 0)} Corner 259 473 {wid=631 normal=(0.164894 0.986311 0)} Corner 147 473 {wid=633 normal=(0.164894 0.986311 0)} Corner 148 474 {wid=336 normal=(0.164174 0.985293 0.0473962)} Corner 35 474 {wid=35 normal=(0.143688 0.982099 -0.121797)} Corner 259 474 {wid=630 normal=(0.165458 0.985215 -0.0444593)} Corner 27 475 {wid=636 normal=(0.136544 0.593755 -0.792976)} Corner 260 475 {wid=635 normal=(0.152865 0.595753 -0.788486)} Corner 99 475 {wid=637 normal=(0.152865 0.595753 -0.788486)} Corner 27 476 {wid=80 normal=(0.00222244 -0.310061 -0.950714)} Corner 121 476 {wid=285 normal=(0.0295938 0.314764 -0.948709)} Corner 260 476 {wid=634 normal=(0.0664426 -0.289164 -0.954971)} Corner 185 477 {wid=639 normal=(0.0143406 -0.996851 0.0779932)} Corner 261 477 {wid=415 normal=(0.0110887 -0.996936 0.0774315)} Corner 119 477 {wid=417 normal=(0.0139585 -0.99686 0.0779396)} Corner 185 478 {wid=414 normal=(0.0143406 -0.996851 0.0779932)} Corner 70 478 {wid=143 normal=(-0.110499 -0.668863 0.735128)} Corner 261 478 {wid=638 normal=(0.0110887 -0.996936 0.0774315)} Corner 103 479 {wid=410 normal=(-0.384641 0.837717 -0.387661)} Corner 262 479 {wid=641 normal=(-0.333548 0.651828 -0.681078)} Corner 182 479 {wid=243 normal=(-0.389186 0.921159 -0.000558674)} Corner 103 480 {wid=239 normal=(-0.281292 0.901211 -0.329686)} Corner 204 480 {wid=462 normal=(-0.072887 0.805779 -0.587714)} Corner 262 480 {wid=640 normal=(-0.170655 0.815429 -0.55313)} Corner 242 481 {wid=573 normal=(-0.153967 0.819245 0.552387)} Corner 263 481 {wid=642 normal=(-0.187047 0.732107 0.655006)} Corner 174 481 {wid=643 normal=(-0.236503 0.85145 0.468081)} Corner 242 482 {wid=573 normal=(-0.153967 0.819245 0.552387)} Corner 263 482 {wid=642 normal=(-0.187047 0.732107 0.655006)} Corner 49 483 {wid=644 normal=(-0.00684186 0.853552 0.520962)} Corner 264 483 {wid=260 normal=(-0.00625729 0.853341 -0.521316)} Corner 205 483 {wid=645 normal=(-0.0133995 0.853614 0.520733)} Corner 49 484 {wid=644 normal=(-0.00684186 0.853552 0.520962)} Corner 96 484 {wid=219 normal=(-0.298444 0.898583 0.321684)} Corner 264 484 {wid=260 normal=(-0.00625729 0.853341 -0.521316)} Corner 219 485 {wid=648 normal=(-0.997667 0.0682693 3.63864e-005)} Corner 265 485 {wid=647 normal=(-0.980526 0.180048 0.0784285)} Corner 249 485 {wid=649 normal=(-0.993899 0.105334 0.0327154)} Corner 219 486 {wid=502 normal=(-0.594709 -0.263309 0.759598)} Corner 157 486 {wid=353 normal=(-0.411211 -0.578795 0.704203)} Corner 265 486 {wid=646 normal=(-0.449139 0.41819 0.789551)} Corner 54 487 {wid=102 normal=(-0.458951 -0.818031 0.346681)} Corner 266 487 {wid=650 normal=(-0.0798312 -0.39783 0.91398)} Corner 54 488 {wid=652 normal=(-0.657628 0.218384 0.720995)} Corner 100 488 {wid=653 normal=(-0.113835 0.641259 0.758834)} Corner 266 488 {wid=651 normal=(-0.516469 0.357329 0.778187)} Corner 84 489 {wid=66 normal=(0.111257 -0.977469 -0.179379)} Corner 218 489 {wid=500 normal=(0.111142 0.0162154 -0.993673)} Corner 84 490 {wid=66 normal=(0.111257 -0.977469 -0.179379)} Corner 34 490 {wid=34 normal=(-0.287232 -0.884655 0.367264)} Corner 9 491 {wid=9 normal=(0.823989 -0.487933 0.288032)} Corner 11 492 {wid=11 normal=(0.26003 0.873864 -0.410786)} Corner 145 493 {wid=167 normal=(-0.225551 0.900124 0.372698)} Corner 269 493 {wid=656 normal=(-0.0018383 0.874822 0.484441)} Corner 79 493 {wid=169 normal=(-0.221112 0.901735 -0.371459)} Corner 145 494 {wid=167 normal=(-0.225551 0.900124 0.372698)} Corner 107 494 {wid=657 normal=(0.172783 0.599748 0.781312)} Corner 269 494 {wid=656 normal=(-0.0018383 0.874822 0.484441)} Corner 25 495 {wid=25 normal=(0.0227813 -0.989483 0.142855)} Corner 55 496 {wid=103 normal=(0.112664 -0.177998 0.97756)} Corner 76 497 {wid=68 normal=(0.097815 -0.980487 0.17052)} Corner 271 497 {wid=659 normal=(0.10493 0.59559 0.796406)} Corner 76 498 {wid=163 normal=(0.997657 -0.0684201 0)} Corner 155 498 {wid=162 normal=(0.997657 -0.0684201 0)} Corner 271 498 {wid=660 normal=(0.997657 -0.0684201 0)} Corner 212 499 {wid=528 normal=(-0.301302 0.36979 -0.878904)} Corner 272 499 {wid=661 normal=(0.0440995 0.658045 -0.751686)} Corner 224 499 {wid=526 normal=(0.0138804 0.146092 -0.989174)} Corner 212 500 {wid=534 normal=(-0.0563406 -0.993337 -0.100538)} Corner 225 500 {wid=524 normal=(0 0 1)} Corner 272 500 {wid=662 normal=(-0.0563406 -0.993337 -0.100538)} # (_write_mesh: 0.08) # (FilterPM: 0.08) ================================================ FILE: models/dragon10k.m ================================================ Vertex 1 0.0426847 0.077947 0.0194524 Vertex 2 -0.0700004 0.150208 -0.0137753 Vertex 3 -0.0654998 0.153773 -0.00289576 Vertex 4 -0.0698508 0.150233 -0.0138021 Vertex 5 0.00614719 0.0937321 -0.0178742 Vertex 6 -0.0693374 0.156037 -0.0182349 Vertex 7 0.0257745 0.0597182 0.00744148 Vertex 8 0.0358972 0.0845348 -0.00191574 Vertex 9 0.011916 0.0762008 -0.0136377 Vertex 10 0.0119182 0.0762192 -0.0136841 Vertex 11 0.0119202 0.0762902 -0.0136208 Vertex 12 0.0357587 0.0846243 -0.00186089 Vertex 13 0.0119313 0.0762581 -0.0137207 Vertex 14 0.0119352 0.0763849 -0.0138214 Vertex 15 0.0275682 0.0663484 0.0116963 Vertex 16 0.024858 0.0599069 0.0077613 Vertex 17 0.0358415 0.0846433 -0.00192396 Vertex 18 0.0256428 0.0598314 0.00751453 Vertex 19 0.044582 0.0843205 0.0187839 Vertex 20 0.0446653 0.0843993 0.0187539 Vertex 21 0.0256842 0.0598028 0.00743018 Vertex 22 0.0333729 0.0856797 -0.00146812 Vertex 23 0.0443358 0.0858837 0.0188476 Vertex 24 0.0120592 0.0773313 -0.0185868 Vertex 25 0.0429743 0.079289 0.0187858 Vertex 26 -0.0558279 0.144186 -0.0146652 Vertex 27 0.0234132 0.0609752 0.00754347 Vertex 28 0.0122594 0.0812961 -0.0144974 Vertex 29 -0.0558627 0.144219 -0.0146213 Vertex 30 0.0122541 0.0812747 -0.0144419 Vertex 31 0.012233 0.0810645 -0.0144458 Vertex 32 0.0119964 0.0811458 -0.0144995 Vertex 33 0.0163617 0.0650257 0.0028451 Vertex 34 0.0231935 0.0610195 0.00748457 Vertex 35 0.0122318 0.0810871 -0.0145736 Vertex 36 0.0276219 0.0666358 0.0120598 Vertex 37 0.0161787 0.0652845 0.00295152 Vertex 38 0.0452743 0.0854659 0.019761 Vertex 39 0.0232942 0.0611942 0.0075198 Vertex 40 0.0442687 0.0859376 0.0187689 Vertex 41 0.0442917 0.08597 0.0188019 Vertex 42 0.0353777 0.119322 0.00649632 Vertex 43 0.0446106 0.0842065 0.0187412 Vertex 44 -0.0695441 0.156022 -0.0180847 Vertex 45 -0.0558532 0.14423 -0.0147975 Vertex 46 0.0446136 0.0843179 0.0188076 Vertex 47 0.0648869 0.0945978 -0.00381989 Vertex 48 0.0119258 0.0763824 -0.0135826 Vertex 49 -0.0563638 0.14471 -0.0147855 Vertex 50 0.0163673 0.0649547 0.0027857 Vertex 51 -0.000827267 0.142898 -0.0278687 Vertex 52 0.0443037 0.0858149 0.0188063 Vertex 53 0.0641591 0.107402 -0.0105832 Vertex 54 -0.0725437 0.149405 -0.0161212 Vertex 55 0.0418654 0.0845363 -0.00640331 Vertex 56 -0.0698508 0.155923 -0.0180001 Vertex 57 0.0650439 0.0944827 -0.00157173 Vertex 58 0.00607573 0.0935058 -0.0178919 Vertex 59 -0.0137663 0.064509 0.00319705 Vertex 60 -0.065693 0.153896 -0.00380872 Vertex 61 0.0275605 0.0663264 0.0116952 Vertex 62 0.0657384 0.124256 -0.0187537 Vertex 63 -0.0762237 0.165291 -0.00227343 Vertex 64 0.0441778 0.0854486 0.0184493 Vertex 65 0.0261527 0.0655012 0.0113045 Vertex 66 0.0353291 0.104335 0.0129557 Vertex 67 -0.0474911 0.179104 -0.021771 Vertex 68 0.0281885 0.0570244 0.00774162 Vertex 69 0.0442439 0.0860462 0.0187318 Vertex 70 -0.0672045 0.153397 -0.00381031 Vertex 71 -0.0693083 0.156004 -0.0181685 Vertex 72 0.0257592 0.0598077 0.00765418 Vertex 73 0.024568 0.123761 -0.022254 Vertex 74 0.0433825 0.0800739 0.0181993 Vertex 75 -0.0762098 0.165182 -0.00178802 Vertex 76 -0.0760143 0.165122 -0.00164998 Vertex 77 0.060604 0.0846742 0.00421528 Vertex 78 -0.0669222 0.153394 -0.00425434 Vertex 79 -0.0674579 0.153455 -0.00387949 Vertex 80 -0.0671344 0.153451 -0.0043895 Vertex 81 -0.0168796 0.0683221 -0.0273035 Vertex 82 0.0274244 0.0662655 0.0115902 Vertex 83 0.0644325 0.0937947 0.000318763 Vertex 84 -0.0671209 0.153252 -0.00414989 Vertex 85 -0.0670754 0.153463 -0.00398597 Vertex 86 0.032274 0.11915 -0.0113137 Vertex 87 0.0436436 0.0806563 0.0187651 Vertex 88 0.0644772 0.0931869 -0.00193549 Vertex 89 -0.0736186 0.0836488 -0.0284169 Vertex 90 0.0138405 0.0667685 0.0056043 Vertex 91 -0.0699661 0.150255 -0.0137663 Vertex 92 0.00706707 0.0967828 -0.0193581 Vertex 93 0.0645312 0.0932971 -0.00199045 Vertex 94 0.0308804 0.0897684 0.013911 Vertex 95 0.035307 0.119354 0.00659528 Vertex 96 -0.0691586 0.156082 -0.017871 Vertex 97 0.0275513 0.0663778 0.0117479 Vertex 98 0.0155624 0.0617266 0.0245445 Vertex 99 -0.0558271 0.144117 -0.0147432 Vertex 100 -0.0762141 0.165113 -0.00160396 Vertex 101 -0.0762188 0.165279 -0.00175708 Vertex 102 0.0649297 0.0945813 -0.00173721 Vertex 103 0.0274257 0.0660569 0.0113521 Vertex 104 0.0352878 0.119016 0.00665232 Vertex 105 -0.0558165 0.144215 -0.0149895 Vertex 106 0.0257228 0.0598352 0.00744908 Vertex 107 -0.0656451 0.153888 -0.00377984 Vertex 108 0.0301805 0.086153 0.0194261 Vertex 109 -0.069565 0.155994 -0.0181655 Vertex 110 0.0231254 0.0620619 0.00760928 Vertex 111 0.0366502 0.117322 0.0060149 Vertex 112 -0.0775816 0.165916 0.00495208 Vertex 113 -0.0543544 0.143782 -0.0159755 Vertex 114 0.0390378 0.0856671 -0.00360004 Vertex 115 -0.069657 0.156045 -0.0182895 Vertex 116 0.0233288 0.0609764 0.00764541 Vertex 117 0.00612364 0.093589 -0.0179351 Vertex 118 -0.0659724 0.153415 -0.00246964 Vertex 119 0.0351419 0.118805 0.007042 Vertex 120 0.0428444 0.0795786 0.0188241 Vertex 121 0.0425138 0.077432 0.0199952 Vertex 122 0.016251 0.0647522 0.00273069 Vertex 123 0.0592133 0.0715318 0.0254735 Vertex 124 0.0232358 0.0610505 0.00746139 Vertex 125 0.0431803 0.0796838 0.0187306 Vertex 126 0.0447166 0.0843932 0.0186416 Vertex 127 -0.0734551 0.148171 -0.0100037 Vertex 128 0.0358213 0.0846732 -0.00191888 Vertex 129 0.0665787 0.135392 -0.015953 Vertex 130 0.0441926 0.086203 0.0187114 Vertex 131 0.0647647 0.0943016 -0.00186179 Vertex 132 0.0352824 0.119194 0.00657663 Vertex 133 0.026228 0.0577939 0.00859598 Vertex 134 -0.05526 0.144229 -0.0136431 Vertex 135 0.0442774 0.0861774 0.0187719 Vertex 136 0.00618193 0.0933352 -0.0179135 Vertex 137 0.0424791 0.0781838 0.0169471 Vertex 138 0.0159994 0.0671233 0.00491769 Vertex 139 0.0360857 0.0883263 -0.0342347 Vertex 140 -0.0699273 0.150187 -0.0136737 Vertex 141 0.0438858 0.0794042 0.0193704 Vertex 142 -0.0656428 0.153778 -0.0018483 Vertex 143 0.042895 0.0783697 0.0194328 Vertex 144 -0.0612967 0.15808 -0.0187486 Vertex 145 0.0667401 0.0937645 -0.00166896 Vertex 146 0.0271034 0.0664075 0.0117039 Vertex 147 0.0646998 0.0939083 -0.00198213 Vertex 148 0.00432258 0.0959347 -0.0250863 Vertex 149 -0.07569 0.165311 -0.00123138 Vertex 150 0.0358229 0.084781 -0.00195952 Vertex 151 0.0163067 0.0650397 0.00286133 Vertex 152 0.0738995 0.0632899 0.00168544 Vertex 153 0.0186995 0.081965 -0.00277383 Vertex 154 0.0428774 0.0780705 0.0194331 Vertex 155 -0.0699969 0.150312 -0.0137652 Vertex 156 0.00365965 0.0877921 -0.0147431 Vertex 157 0.0251513 0.128013 -0.0287623 Vertex 158 -0.0714877 0.163778 0.00158044 Vertex 159 -0.0316673 0.101551 -0.014578 Vertex 160 -0.0460997 0.064005 0.032633 Vertex 161 0.0126208 0.0664484 -0.016547 Vertex 162 -0.0250939 0.158614 -0.00235348 Vertex 163 -0.0541114 0.179761 -0.00484433 Vertex 164 -0.0854826 0.0712933 -0.00514869 Vertex 165 -0.0209653 0.143411 -0.0232197 Vertex 166 0.0407566 0.131934 -0.00212322 Vertex 167 0.0354616 0.160461 -0.0184162 Vertex 168 -0.0517744 0.141038 -0.0254949 Vertex 169 -0.060559 0.117009 0.0074095 Vertex 170 -0.085949 0.145479 -0.00926912 Vertex 171 -0.0844201 0.139229 -0.008352 Vertex 172 -0.090029 0.152633 0.00287492 Vertex 173 -0.0537554 0.142945 -0.0130005 Vertex 174 0.0542412 0.0578413 -0.0278221 Vertex 175 0.0391673 0.113764 -0.0332752 Vertex 176 -0.0684246 0.156069 -0.0203261 Vertex 177 -0.0674291 0.121307 0.00268664 Vertex 178 -0.0510027 0.0777875 0.0290041 Vertex 179 -0.0106271 0.114754 0.000509582 Vertex 180 -0.0656493 0.153527 -0.00942126 Vertex 181 -0.0810801 0.151684 0.00577042 Vertex 182 -0.031224 0.145371 -0.00410203 Vertex 183 0.0363595 0.122739 0.00764196 Vertex 184 0.0354051 0.119292 0.00652427 Vertex 185 0.00286719 0.135805 -0.0340428 Vertex 186 -0.0504665 0.129033 -0.0262195 Vertex 187 -0.0525179 0.1414 -0.0199574 Vertex 188 0.0269054 0.0554413 0.0199014 Vertex 189 -0.0541356 0.0891094 -0.0235714 Vertex 190 0.0724728 0.0837831 0.0224825 Vertex 191 0.0471181 0.0912511 -0.0260415 Vertex 192 0.0395398 0.0735836 -0.0337942 Vertex 193 0.0135134 0.0881107 -0.014726 Vertex 194 -0.053311 0.146324 -0.000216524 Vertex 195 0.0446205 0.0844028 0.019139 Vertex 196 0.0461141 0.0993648 0.0151613 Vertex 197 -0.0203195 0.0679979 0.0186753 Vertex 198 -0.0335907 0.0540693 0.00737789 Vertex 199 -0.0957032 0.144033 0.0194957 Vertex 200 0.00653211 0.111087 -0.0044367 Vertex 201 -0.0617782 0.0928359 -0.0294815 Vertex 202 -0.0904009 0.170254 -9.74115e-005 Vertex 203 -0.0331782 0.168738 -0.0279104 Vertex 204 -0.0209574 0.100152 -0.0301031 Vertex 205 -0.0381667 0.0658001 -0.0370248 Vertex 206 -0.040156 0.0548551 -0.0233407 Vertex 207 0.0575534 0.142142 -0.0133324 Vertex 208 -0.076877 0.0940761 0.0124196 Vertex 209 -0.0454116 0.100859 -0.00506541 Vertex 210 -0.0667794 0.0711744 -0.0294341 Vertex 211 -0.056767 0.0665713 0.0375243 Vertex 212 0.00104699 0.142017 -0.00560329 Vertex 213 -0.0280837 0.154133 -0.0283305 Vertex 214 0.0274791 0.0891343 -0.0028323 Vertex 215 -0.0590158 0.0582044 0.0142288 Vertex 216 -0.0581795 0.0536342 0.0312405 Vertex 217 -0.041135 0.0664716 0.0243802 Vertex 218 0.0657866 0.0647942 -0.0127649 Vertex 219 0.0837868 0.100557 0.00105145 Vertex 220 -0.0556609 0.156704 -0.00614795 Vertex 221 -0.0674801 0.0667394 0.022461 Vertex 222 -0.049621 0.160131 0.00112202 Vertex 223 -0.0656805 0.153844 -0.00401925 Vertex 224 -0.0630317 0.154696 -0.00476519 Vertex 225 -0.0691191 0.155952 -0.0183035 Vertex 226 -0.0599067 0.154317 -0.014149 Vertex 227 0.012074 0.0813837 -0.014722 Vertex 228 0.0135133 0.0845081 -0.0206816 Vertex 229 0.0770677 0.12629 -0.0108806 Vertex 230 0.0710003 0.121372 -0.01945 Vertex 231 0.0503836 0.101945 -0.0303406 Vertex 232 0.0295502 0.0569176 0.011042 Vertex 233 -0.0407445 0.092604 0.00567749 Vertex 234 0.0890661 0.140095 -0.0137895 Vertex 235 0.0759752 0.140807 -0.00703264 Vertex 236 -0.0315531 0.0568465 -0.0414373 Vertex 237 0.037247 0.152808 -0.00869546 Vertex 238 -0.0513172 0.179148 -0.00393011 Vertex 239 0.0348296 0.151444 -0.0323457 Vertex 240 -0.0134688 0.0595073 -0.0122278 Vertex 241 -0.0457031 0.167299 -0.0357646 Vertex 242 0.0141802 0.0584625 0.013805 Vertex 243 0.0619323 0.127512 -0.0123941 Vertex 244 0.0558809 0.102994 -0.0101548 Vertex 245 0.0743815 0.0860064 -0.00192923 Vertex 246 -0.0742081 0.163506 0.0132183 Vertex 247 -0.0934155 0.165391 -0.010935 Vertex 248 -0.075993 0.165279 -0.00170154 Vertex 249 -0.0861543 0.160375 -0.0116006 Vertex 250 0.044332 0.10442 0.0216885 Vertex 251 0.00837875 0.0639459 0.0200476 Vertex 252 0.0393397 0.0653485 -0.0302448 Vertex 253 -0.0755068 0.171904 0.00530604 Vertex 254 -0.0798271 0.174039 -0.00547133 Vertex 255 0.0830404 0.133867 -0.00914657 Vertex 256 0.0846454 0.136448 -0.0168036 Vertex 257 0.059923 0.0533615 0.0161009 Vertex 258 0.0315874 0.0604 -0.0447527 Vertex 259 0.0388386 0.0794569 0.00223416 Vertex 260 0.0281421 0.0678091 0.0157297 Vertex 261 0.0426797 0.0770626 0.019243 Vertex 262 0.0273489 0.0664195 0.0117569 Vertex 263 0.0276332 0.0665992 0.012444 Vertex 264 -0.0740586 0.0599352 -0.0324035 Vertex 265 -0.0846868 0.074431 -0.0105033 Vertex 266 -0.0872988 0.0639255 -0.0267808 Vertex 267 -0.0833037 0.0584338 -0.0291281 Vertex 268 -0.0385211 0.155026 -0.0376767 Vertex 269 -0.0375993 0.172738 -0.0301568 Vertex 270 -0.0404273 0.174324 -0.0360001 Vertex 271 -0.0805435 0.0667637 -0.032929 Vertex 272 0.0664833 0.101934 0.00245125 Vertex 273 0.0248198 0.0640953 0.0148312 Vertex 274 -0.0202969 0.165857 -0.0122209 Vertex 275 0.0376208 0.158944 -0.0226395 Vertex 276 -0.10305 0.14452 0.00411943 Vertex 277 0.0122626 0.0810003 -0.0143889 Vertex 278 0.0263526 0.0567654 -0.025105 Vertex 279 -0.0596446 0.165213 -0.0270228 Vertex 280 -0.0299376 0.0902627 -0.0279516 Vertex 281 0.0340042 0.0636161 -0.0466243 Vertex 282 -0.0101455 0.162333 -0.00803689 Vertex 283 -0.0373095 0.177463 -0.0118522 Vertex 284 -0.00864877 0.162534 -0.0110086 Vertex 285 -0.0172416 0.169113 -0.0102791 Vertex 286 -0.0666829 0.147738 0.0109586 Vertex 287 -0.0422704 0.18077 -0.012996 Vertex 288 -0.00400028 0.194336 -0.0321217 Vertex 289 0.0382424 0.118934 0.00597669 Vertex 290 0.0389249 0.106521 0.0207239 Vertex 291 -0.0752339 0.060556 -0.0146785 Vertex 292 -0.0439017 0.0631209 0.0276648 Vertex 293 -0.0243217 0.0601392 0.0260459 Vertex 294 -0.0252974 0.160963 -0.0142874 Vertex 295 0.0557456 0.0542624 -0.0141865 Vertex 296 0.0118677 0.0760977 -0.0135792 Vertex 297 0.0166552 0.0651287 0.00245916 Vertex 298 0.0745449 0.0633458 0.0132431 Vertex 299 0.0378162 0.130186 -0.00286446 Vertex 300 -0.0852423 0.0930437 -0.0122213 Vertex 301 -0.0596261 0.106726 -0.0227118 Vertex 302 0.0210446 0.0746996 -0.0322263 Vertex 303 0.022072 0.0705271 -0.037659 Vertex 304 -0.0387195 0.0534768 -0.039709 Vertex 305 -0.069744 0.0639859 0.0138623 Vertex 306 0.0605158 0.103002 -0.0111698 Vertex 307 -0.0993597 0.143834 -0.00462765 Vertex 308 -0.0836664 0.172569 0.0153099 Vertex 309 -0.0548721 0.0533099 -0.015588 Vertex 310 -0.0838122 0.064742 -0.0228345 Vertex 311 -0.0556851 0.0938289 0.0181486 Vertex 312 -0.0409327 0.0691452 0.0267722 Vertex 313 -0.0297228 0.0606009 0.025401 Vertex 314 -0.0714704 0.108091 0.00904456 Vertex 315 0.0705247 0.0543643 -0.0131906 Vertex 316 -0.0659392 0.0729706 -0.0308715 Vertex 317 0.0327833 0.131601 -0.032373 Vertex 318 -0.0133093 0.186436 -0.0245365 Vertex 319 -0.0228657 0.174913 -0.00759132 Vertex 320 -0.0441109 0.149758 -0.034069 Vertex 321 -0.0592995 0.0532511 0.0233678 Vertex 322 0.0339822 0.0612524 0.0191338 Vertex 323 0.0424644 0.0786684 0.0189416 Vertex 324 -0.0691071 0.175608 -0.00109333 Vertex 325 -0.0363939 0.178967 -0.0143269 Vertex 326 -0.0152228 0.18812 -0.023656 Vertex 327 0.0682225 0.127432 -0.0101541 Vertex 328 0.0717286 0.138084 -0.0182494 Vertex 329 -0.0279408 0.0540809 0.0126608 Vertex 330 -0.0536375 0.0540949 0.00308759 Vertex 331 -0.0394284 0.176838 -0.0240613 Vertex 332 -0.0711024 0.175669 -0.0177444 Vertex 333 0.00542123 0.0633122 0.013989 Vertex 334 -0.0227486 0.147459 -0.00896856 Vertex 335 0.0731541 0.067351 -0.00379995 Vertex 336 -0.0213963 0.145345 -0.0212401 Vertex 337 0.0426291 0.0814746 0.0141608 Vertex 338 0.0491425 0.0761085 -0.00851201 Vertex 339 0.0434007 0.0573715 0.0188046 Vertex 340 0.0257585 0.0688442 -0.0407545 Vertex 341 -0.0991592 0.1513 0.0114744 Vertex 342 -0.0570943 0.154654 -0.0261783 Vertex 343 -0.0733175 0.160031 -0.0215467 Vertex 344 -0.0930575 0.149283 0.0195077 Vertex 345 -0.0445996 0.144276 0.00135901 Vertex 346 -0.0535274 0.123844 0.00456962 Vertex 347 -0.0032678 0.114651 0.00114421 Vertex 348 -0.0084236 0.0637651 0.0195417 Vertex 349 -0.0235457 0.0718996 0.0180295 Vertex 350 -0.0203188 0.0733388 0.0128289 Vertex 351 0.0443971 0.128937 -0.0344205 Vertex 352 -0.0898557 0.173444 0.0142107 Vertex 353 0.0312575 0.0760294 -0.035529 Vertex 354 0.0297118 0.0534478 -0.000618642 Vertex 355 0.0167376 0.141243 -0.00286859 Vertex 356 -0.048529 0.176833 -0.0266473 Vertex 357 -0.0446157 0.0994534 -0.0131624 Vertex 358 0.0250728 0.0840962 -0.000295331 Vertex 359 0.0298509 0.122397 -0.0170154 Vertex 360 0.065264 0.0882456 0.0192949 Vertex 361 -0.00655336 0.081475 -0.028127 Vertex 362 -0.0016559 0.101587 -0.0330642 Vertex 363 0.0599141 0.0716399 -0.0024289 Vertex 364 -0.016862 0.127493 -0.0155088 Vertex 365 0.0207341 0.0832157 0.00754704 Vertex 366 -0.029065 0.182185 -0.026458 Vertex 367 -0.0321063 0.185427 -0.0232469 Vertex 368 -0.0734976 0.172807 -0.0179401 Vertex 369 -0.0582434 0.0749181 0.0331745 Vertex 370 0.0723333 0.123863 -0.00764497 Vertex 371 -0.0740032 0.142815 0.0112077 Vertex 372 -0.0822068 0.10438 -0.0113218 Vertex 373 0.04487 0.0757561 0.0121759 Vertex 374 0.0551597 0.0779709 0.0202887 Vertex 375 -0.0231291 0.154649 -0.00492962 Vertex 376 -0.0912927 0.154588 0.00924887 Vertex 377 0.0717333 0.0599017 0.00809072 Vertex 378 -0.0666235 0.0538362 0.000945334 Vertex 379 0.037796 0.053802 0.00642108 Vertex 380 -0.0916913 0.179873 0.00270431 Vertex 381 0.0611538 0.137338 -0.0147066 Vertex 382 0.046285 0.158382 -0.0195578 Vertex 383 0.00902266 0.0577461 0.0266403 Vertex 384 -0.0372456 0.150256 -0.0368356 Vertex 385 -0.0696193 0.150253 -0.013736 Vertex 386 -0.0815315 0.147938 -0.0052747 Vertex 387 0.0456323 0.0824915 -0.0203064 Vertex 388 -0.0767744 0.0624509 -0.0391487 Vertex 389 -0.062999 0.166419 0.0113616 Vertex 390 -0.023244 0.162472 -0.0393335 Vertex 391 -0.0133583 0.0653972 -0.022309 Vertex 392 -0.0117776 0.122264 -0.0298408 Vertex 393 -0.0349728 0.0975977 -0.010937 Vertex 394 -0.0114066 0.172531 -0.0115642 Vertex 395 -0.0260451 0.0718281 -0.0372359 Vertex 396 -0.0289882 0.0821011 -0.0306774 Vertex 397 -0.0206938 0.156761 -0.0253269 Vertex 398 0.0441422 0.0637565 -0.0381432 Vertex 399 0.0455032 0.0734773 -0.0310279 Vertex 400 0.038297 0.0610942 -0.0257061 Vertex 401 0.0373382 0.156376 -0.0243828 Vertex 402 -0.0100006 0.0737119 0.00784352 Vertex 403 -0.0467161 0.0582221 0.0244841 Vertex 404 -0.0482411 0.170237 0.00327626 Vertex 405 -0.0546933 0.164117 0.00783717 Vertex 406 0.0601614 0.137712 -0.0232646 Vertex 407 0.0742378 0.0609617 -0.006017 Vertex 408 -0.0479575 0.0741902 0.0321569 Vertex 409 -0.0649813 0.0966666 -0.0240604 Vertex 410 0.0535258 0.131757 -0.00370556 Vertex 411 -0.0547319 0.0968769 0.0135877 Vertex 412 -0.0330798 0.0527821 -0.0383767 Vertex 413 0.0455837 0.0526762 -0.0121239 Vertex 414 -0.0707437 0.0981385 -0.0226468 Vertex 415 0.0667577 0.110197 -0.0131038 Vertex 416 -0.00880518 0.138645 -0.0147759 Vertex 417 0.0418381 0.0818487 0.0147238 Vertex 418 0.0455983 0.0839781 0.0274568 Vertex 419 -0.0408616 0.185083 -0.0377131 Vertex 420 -0.0403762 0.18281 -0.0368834 Vertex 421 -0.0338167 0.170467 -0.0396353 Vertex 422 -0.0271616 0.170677 -0.0391493 Vertex 423 -0.0415054 0.183884 -0.0379282 Vertex 424 -0.0245924 0.17577 -0.0423621 Vertex 425 0.036788 0.089215 0.0296098 Vertex 426 -0.0591626 0.0617554 -0.024257 Vertex 427 -0.0790993 0.112147 -0.00173332 Vertex 428 -0.0753375 0.174033 -0.00541801 Vertex 429 -0.0285095 0.185225 -0.00616668 Vertex 430 -0.0333065 0.184101 -0.00536504 Vertex 431 -0.0941118 0.139369 -0.00542212 Vertex 432 0.0478912 0.110124 -0.00235938 Vertex 433 0.0682673 0.136701 -0.0182048 Vertex 434 -0.0465607 0.0644967 0.0187636 Vertex 435 0.0381715 0.0532832 -0.0187255 Vertex 436 -0.0129567 0.0541683 0.0124924 Vertex 437 0.00705792 0.0608227 0.0165692 Vertex 438 0.0765704 0.108772 0.00507078 Vertex 439 -0.0588928 0.158735 -0.0183057 Vertex 440 -0.0324822 0.174891 -0.0187609 Vertex 441 -0.0190026 0.15334 -0.0242952 Vertex 442 -0.0499355 0.0853317 -0.0275339 Vertex 443 -0.0837817 0.0652943 -0.0332287 Vertex 444 -0.0255336 0.0758681 0.0108297 Vertex 445 -0.0277608 0.155621 -0.0341907 Vertex 446 -0.02453 0.162508 -0.0442125 Vertex 447 -0.0407004 0.0545511 -0.0260174 Vertex 448 -0.0262604 0.0530664 -0.0186867 Vertex 449 -0.045316 0.115429 0.00220462 Vertex 450 0.0286178 0.0711855 0.0206486 Vertex 451 0.0513892 0.0951264 -0.0158931 Vertex 452 0.0931436 0.147977 -0.00393442 Vertex 453 -0.0556946 0.138526 -0.013135 Vertex 454 0.0354193 0.0602571 0.0151848 Vertex 455 -0.0789344 0.0597105 -0.0180842 Vertex 456 -0.0273805 0.182689 -0.0184056 Vertex 457 -0.0426133 0.189224 -0.018706 Vertex 458 -0.0368591 0.129782 -0.00169362 Vertex 459 -0.0259708 0.141915 -0.00965985 Vertex 460 0.0583094 0.0543058 0.0189491 Vertex 461 0.0651625 0.0551132 -0.0198017 Vertex 462 -0.0686949 0.0708548 -0.022696 Vertex 463 -0.03582 0.0596476 0.0133648 Vertex 464 0.0693017 0.055003 -0.00140226 Vertex 465 0.00880625 0.064392 0.0171355 Vertex 466 0.0489931 0.0803734 -0.0257157 Vertex 467 -0.0585456 0.053256 0.0012433 Vertex 468 -0.0784762 0.170204 -0.00798009 Vertex 469 -0.055057 0.0612843 0.0379458 Vertex 470 -0.0658858 0.0680462 -0.0335478 Vertex 471 -0.0592276 0.0782679 0.0200944 Vertex 472 0.0114175 0.11004 -0.0132935 Vertex 473 -0.0336246 0.169767 -0.030949 Vertex 474 0.0215183 0.0547559 -0.00428793 Vertex 475 0.0154467 0.0650568 0.00305555 Vertex 476 -0.0979758 0.152402 0.00237853 Vertex 477 -0.100421 0.153526 0.00670426 Vertex 478 -0.106903 0.159497 0.0117983 Vertex 479 -0.0318645 0.17655 -0.00530225 Vertex 480 -0.0343947 0.133916 -0.0287483 Vertex 481 0.0480161 0.151953 -0.0233881 Vertex 482 -0.0233101 0.0712861 -0.0360611 Vertex 483 -0.0774411 0.158012 -0.0132865 Vertex 484 -0.0854135 0.181597 0.00450531 Vertex 485 -0.0548159 0.0817221 0.0204268 Vertex 486 -0.0373259 0.189135 -0.0171359 Vertex 487 -0.0409671 0.18835 -0.0159216 Vertex 488 -0.0331932 0.1954 -0.0206767 Vertex 489 -0.0383293 0.156652 0.000926 Vertex 490 0.0396492 0.0601263 -0.0457931 Vertex 491 0.0293471 0.0623955 -0.0436565 Vertex 492 0.057032 0.0799544 0.00160833 Vertex 493 0.0651799 0.101172 -0.00261913 Vertex 494 -0.0299346 0.182665 -0.00705964 Vertex 495 0.0518441 0.0919158 -0.00967271 Vertex 496 -0.0620003 0.0945831 0.014511 Vertex 497 0.0119198 0.0760411 -0.0140314 Vertex 498 0.0297814 0.0668927 -0.0476155 Vertex 499 -0.0706976 0.164254 -0.0180739 Vertex 500 -0.0338269 0.0540637 0.00136474 Vertex 501 -0.0304301 0.149651 -0.0324513 Vertex 502 0.013607 0.151212 -0.00797033 Vertex 503 -0.0279459 0.172994 -0.00227335 Vertex 504 0.0701158 0.0801933 0.001169 Vertex 505 0.0392308 0.106184 0.00815261 Vertex 506 -0.0753124 0.0738329 0.0139985 Vertex 507 -0.0610912 0.140659 -0.0242279 Vertex 508 0.0359244 0.070956 -0.0375092 Vertex 509 0.0573089 0.0816601 0.00327712 Vertex 510 0.0361532 0.0654144 0.0162707 Vertex 511 0.0800749 0.100552 -0.00706618 Vertex 512 -0.0497771 0.143823 0.0066076 Vertex 513 -0.0198068 0.0858355 -0.0328444 Vertex 514 -0.068629 0.0867056 -0.0329054 Vertex 515 0.0689246 0.0737542 0.000624691 Vertex 516 0.0360289 0.0573802 0.0239683 Vertex 517 -0.0678067 0.070782 -0.0265424 Vertex 518 -0.099127 0.177089 -0.000414642 Vertex 519 0.0814139 0.076052 0.0126517 Vertex 520 -0.0291133 0.169342 -0.00244854 Vertex 521 -0.086267 0.172845 0.017285 Vertex 522 0.0415706 0.101674 0.0276681 Vertex 523 0.0301041 0.0772653 -0.033866 Vertex 524 0.0418089 0.0893741 -0.0314903 Vertex 525 0.0123539 0.0634473 0.0247722 Vertex 526 -0.0749534 0.0682815 -0.0266341 Vertex 527 -0.0430201 0.0889566 -0.0190523 Vertex 528 -0.0107137 0.0570999 0.0213827 Vertex 529 -0.069935 0.0601499 -0.0208815 Vertex 530 -0.0168936 0.0873223 0.0104807 Vertex 531 0.0103561 0.147939 -0.031505 Vertex 532 -0.0157549 0.12759 -0.0139658 Vertex 533 -0.0255491 0.172953 -0.0435434 Vertex 534 -0.0231003 0.173208 -0.0415522 Vertex 535 0.0162936 0.124647 -0.0082582 Vertex 536 -0.0797679 0.0884523 -0.0200183 Vertex 537 0.0817668 0.137816 -0.017418 Vertex 538 -0.0273767 0.0748641 -0.0323913 Vertex 539 -0.0347082 0.0715863 -0.0311091 Vertex 540 -0.0654377 0.061613 0.034026 Vertex 541 0.0386888 0.0849 0.0122681 Vertex 542 0.0371162 0.0748151 0.015195 Vertex 543 0.0368498 0.0744195 0.0152347 Vertex 544 0.036877 0.0744621 0.0152302 Vertex 545 0.0376985 0.075672 0.0151315 Vertex 546 0.0358078 0.0728551 0.0154077 Vertex 547 0.0358223 0.072869 0.0154061 Vertex 548 0.0350757 0.0717636 0.0154568 Vertex 549 0.0358501 0.0729113 0.0154023 Vertex 550 0.0349369 0.0715708 0.0154568 Vertex 551 0.0350157 0.0716849 0.0154558 Vertex 552 0.0369253 0.074533 0.0152235 Vertex 553 0.0371106 0.0748077 0.0151955 Vertex 554 0.0375752 0.0754862 0.0151359 Vertex 555 -0.0593929 0.0618129 -0.0254553 Vertex 556 -0.0466298 0.181235 -0.0186496 Vertex 557 -0.0547862 0.141723 -0.0247239 Vertex 558 -0.0897088 0.178846 -0.00151706 Vertex 559 -0.0851615 0.168612 0.0139582 Vertex 560 0.0219263 0.0647211 -0.0455358 Vertex 561 -0.0653442 0.176336 0.00366852 Vertex 562 0.0766306 0.120418 -0.0148888 Vertex 563 0.0790234 0.125928 -0.0113151 Vertex 564 0.0378126 0.0687437 0.0220513 Vertex 565 -0.0191913 0.156054 -0.011281 Vertex 566 -0.0169987 0.150024 -0.00674678 Vertex 567 -0.0168466 0.158739 -0.0102071 Vertex 568 -0.0718125 0.142124 0.00328344 Vertex 569 0.0229633 0.053596 -0.0151878 Vertex 570 -0.0184144 0.0922751 -0.0321801 Vertex 571 -0.0277625 0.170905 -0.0115747 Vertex 572 0.0933334 0.149785 -0.00579849 Vertex 573 0.0345831 0.101615 0.0144143 Vertex 574 0.0605841 0.0844929 0.014759 Vertex 575 0.0381886 0.091331 0.0126829 Vertex 576 -0.086446 0.141686 0.0223238 Vertex 577 -0.0300538 0.0978315 -0.00985926 Vertex 578 -0.0437258 0.139789 -0.00112097 Vertex 579 0.0103631 0.0594778 0.00681743 Vertex 580 0.0085768 0.0596573 0.0111143 Vertex 581 -0.0573159 0.172685 -0.02767 Vertex 582 -0.036376 0.119491 -0.0211738 Vertex 583 0.0209948 0.0698098 0.0115048 Vertex 584 -0.0821931 0.142351 0.012805 Vertex 585 -0.0412599 0.108929 -0.00946075 Vertex 586 -0.0194032 0.0668007 -0.0300794 Vertex 587 -0.0260239 0.157577 -0.0368563 Vertex 588 -0.0333355 0.160395 -0.0393623 Vertex 589 -0.0508988 0.156339 -0.0293954 Vertex 590 -0.0553594 0.160807 -0.0285257 Vertex 591 -0.0767479 0.140903 -0.010621 Vertex 592 -0.0234452 0.0650224 0.0233662 Vertex 593 -0.0460149 0.176101 0.000222458 Vertex 594 -0.0412684 0.17877 -0.00720431 Vertex 595 -0.050181 0.177165 -0.0366838 Vertex 596 -0.0486318 0.17338 -0.0320514 Vertex 597 -0.0534248 0.171011 -0.030932 Vertex 598 0.0472339 0.151803 -0.0152104 Vertex 599 0.0611052 0.0529613 0.00480991 Vertex 600 -0.0726722 0.175059 -0.0104131 Vertex 601 -0.0786862 0.150482 0.00759833 Vertex 602 -0.028822 0.169114 -0.0397011 Vertex 603 -0.10154 0.140561 -0.0030325 Vertex 604 0.0330693 0.0813276 -0.0347476 Vertex 605 -0.0530582 0.144998 0.00479668 Vertex 606 -0.00230602 0.0894447 0.000684574 Vertex 607 -0.0343651 0.0945394 -0.00794141 Vertex 608 0.0445698 0.0787455 -0.00198727 Vertex 609 0.045031 0.0853623 -0.0209406 Vertex 610 0.0280307 0.158042 -0.0242387 Vertex 611 -0.0609393 0.0747545 0.0227426 Vertex 612 -0.00237691 0.152449 -0.0215511 Vertex 613 -0.0173858 0.122452 -0.0207473 Vertex 614 0.0256102 0.108156 -0.0158649 Vertex 615 0.038372 0.101258 0.0254709 Vertex 616 0.026241 0.0666385 -0.0408469 Vertex 617 0.0299755 0.157575 -0.0177127 Vertex 618 -0.0240451 0.119662 -0.0167713 Vertex 619 0.0836591 0.143788 -0.0139654 Vertex 620 -0.0422778 0.168212 -0.0360557 Vertex 621 -0.0862941 0.13928 -0.00957505 Vertex 622 -0.095286 0.138651 -0.00760158 Vertex 623 0.00870343 0.0576372 0.020905 Vertex 624 0.00227065 0.0568514 0.0238114 Vertex 625 -0.0232994 0.158466 -0.0124678 Vertex 626 -0.0101253 0.162431 -0.0118151 Vertex 627 0.0679517 0.0732877 -0.00514552 Vertex 628 0.0391436 0.061849 -0.0481118 Vertex 629 0.0161748 0.0629434 0.00268725 Vertex 630 0.0178629 0.0734391 -0.0364221 Vertex 631 0.0576261 0.103779 -0.0169708 Vertex 632 -0.078623 0.0582887 -0.0204846 Vertex 633 -0.0134969 0.150634 -0.0108602 Vertex 634 0.0420841 0.0830758 0.0157806 Vertex 635 0.0202251 0.0884959 -0.0315956 Vertex 636 -0.0510699 0.0536252 0.0302529 Vertex 637 -0.0413925 0.0622908 0.0316834 Vertex 638 -0.0303303 0.0943098 0.0018487 Vertex 639 0.0464214 0.0558142 0.00510452 Vertex 640 -0.0344098 0.182755 0.000677021 Vertex 641 0.0334726 0.0898343 0.0208877 Vertex 642 -0.0320003 0.176508 -0.0224191 Vertex 643 -0.101508 0.147501 0.0111683 Vertex 644 0.0338387 0.0799879 0.00473183 Vertex 645 -0.040313 0.115021 -0.0212042 Vertex 646 -0.0106513 0.172971 -0.00937147 Vertex 647 -0.0226644 0.17448 -0.00510079 Vertex 648 -0.0312165 0.175176 -0.00633879 Vertex 649 0.082833 0.137149 -0.00739547 Vertex 650 0.0818554 0.144018 -0.00619557 Vertex 651 0.0946362 0.147559 -0.00693016 Vertex 652 0.0900851 0.139311 -0.00776735 Vertex 653 0.0956251 0.137923 -0.00999808 Vertex 654 0.0612403 0.0638045 -0.0200496 Vertex 655 0.0408955 0.0727125 0.0158602 Vertex 656 -0.0341672 0.121167 -0.0110172 Vertex 657 0.0292483 0.0616576 0.0225427 Vertex 658 0.0356942 0.0546605 0.0255956 Vertex 659 0.034888 0.0563807 0.027899 Vertex 660 0.0301057 0.0528555 -0.0195649 Vertex 661 -0.062997 0.1688 -0.025933 Vertex 662 -0.0163972 0.0718763 0.0204198 Vertex 663 -0.0954618 0.174243 0.000659415 Vertex 664 -0.0950628 0.169409 -0.00299871 Vertex 665 0.0792361 0.151019 -0.00773816 Vertex 666 0.00858772 0.064197 0.00659463 Vertex 667 -0.063648 0.0620726 -0.0324226 Vertex 668 0.0308552 0.135554 -0.00333957 Vertex 669 -0.0428149 0.077831 -0.0283519 Vertex 670 -0.0843542 0.0610482 -0.0314768 Vertex 671 -0.103783 0.147585 0.00611819 Vertex 672 -0.0517843 0.15814 -0.00285804 Vertex 673 -0.0498737 0.157765 0.000540246 Vertex 674 -0.025081 0.149595 -0.0395686 Vertex 675 -0.0245645 0.150984 -0.0417122 Vertex 676 -0.0439602 0.0531949 -0.0349289 Vertex 677 -0.0932127 0.178513 0.0090749 Vertex 678 -0.0723271 0.172496 -0.0103748 Vertex 679 -0.0972342 0.153741 0.0122457 Vertex 680 -0.104874 0.157773 0.0076517 Vertex 681 -0.0260572 0.084476 -0.0350015 Vertex 682 0.0761451 0.145884 -0.00931734 Vertex 683 0.0758685 0.146048 -0.0136918 Vertex 684 0.0702268 0.137984 -0.0108098 Vertex 685 0.0361577 0.0648972 -0.0335706 Vertex 686 -0.0278855 0.0705658 -0.0392596 Vertex 687 0.0269447 0.0561367 0.0135392 Vertex 688 -0.0572718 0.153132 0.00657123 Vertex 689 0.0428058 0.072445 -0.0368446 Vertex 690 -0.0412417 0.111607 -0.00812821 Vertex 691 -0.041155 0.0994448 -0.00938874 Vertex 692 0.0728365 0.0737095 0.0246206 Vertex 693 -0.0489909 0.151855 -0.0300112 Vertex 694 0.00239293 0.0553739 0.02273 Vertex 695 0.019349 0.0628544 -0.000716811 Vertex 696 0.0262638 0.138562 -0.0349543 Vertex 697 0.0498179 0.0870557 -0.00928126 Vertex 698 0.0595666 0.0681054 -0.00674599 Vertex 699 0.0622451 0.0699843 -0.00691117 Vertex 700 -0.0377259 0.0853247 0.0185176 Vertex 701 -0.0545943 0.156642 -0.0282254 Vertex 702 -0.0652758 0.0728871 0.0213663 Vertex 703 -0.0481598 0.0950566 0.00910819 Vertex 704 -0.0349199 0.0558945 -0.0102936 Vertex 705 -0.00157915 0.0781976 -0.0186008 Vertex 706 -0.0435259 0.0727581 -0.0348905 Vertex 707 -0.0506798 0.0749506 0.0334703 Vertex 708 -0.0636565 0.0703328 0.0404955 Vertex 709 -0.0464766 0.16293 0.0037795 Vertex 710 -0.0257172 0.0530834 0.0133353 Vertex 711 -0.0401235 0.175809 -0.000708397 Vertex 712 -0.0929077 0.175181 -0.00406844 Vertex 713 0.0804474 0.150169 -0.00662232 Vertex 714 -0.0474351 0.0546686 0.0300445 Vertex 715 -0.0843337 0.0594786 -0.0232527 Vertex 716 -0.087263 0.059664 -0.0193017 Vertex 717 -0.0362237 0.138803 -0.0298883 Vertex 718 0.0580347 0.140451 -0.0239714 Vertex 719 -0.0188499 0.0842186 0.0119023 Vertex 720 -0.0793976 0.0676627 -0.0193468 Vertex 721 -0.0464342 0.180794 -0.0126823 Vertex 722 -0.0711274 0.0680743 -0.0346949 Vertex 723 -0.0685435 0.151031 0.00368782 Vertex 724 -0.0913331 0.141869 0.0219282 Vertex 725 -0.0107017 0.0734322 0.0141028 Vertex 726 -0.0764375 0.165364 -0.0011346 Vertex 727 -0.0866614 0.167881 0.00999064 Vertex 728 -0.00501203 0.137721 -0.00746862 Vertex 729 0.0254743 0.0700553 -0.0331488 Vertex 730 -0.027478 0.154342 -0.0375337 Vertex 731 -0.021262 0.161894 -0.0432857 Vertex 732 -0.0359043 0.162776 -0.0383191 Vertex 733 0.0402572 0.107518 0.0188109 Vertex 734 0.016401 0.064249 0.0129673 Vertex 735 -0.0545942 0.0541214 -0.0108764 Vertex 736 0.0155599 0.0770141 -0.00586898 Vertex 737 -0.0448579 0.14356 0.00364569 Vertex 738 -0.0207229 0.147972 -0.00691609 Vertex 739 -0.0330598 0.0552161 -0.0267758 Vertex 740 0.0338327 0.119707 -0.0286181 Vertex 741 -0.0476334 0.143302 -0.0293107 Vertex 742 -0.0421804 0.146449 -0.0333076 Vertex 743 -0.0339511 0.147661 -0.035306 Vertex 744 0.00394491 0.11016 -0.0328326 Vertex 745 0.0312528 0.100185 -0.00423337 Vertex 746 -0.0194936 0.121913 -0.019278 Vertex 747 -0.065258 0.0543405 0.0277596 Vertex 748 0.0124008 0.155315 -0.0166581 Vertex 749 0.0165846 0.0647276 0.00294295 Vertex 750 -0.0374878 0.0706963 -0.0310683 Vertex 751 -0.0386231 0.188828 -0.0225989 Vertex 752 0.0326229 0.0826728 0.0213855 Vertex 753 0.0772782 0.140456 -0.0173239 Vertex 754 0.0164947 0.0945725 -0.0186293 Vertex 755 -0.0252863 0.0533624 0.000107239 Vertex 756 -0.0159517 0.0527593 0.0114871 Vertex 757 0.0437931 0.0852704 0.0171238 Vertex 758 -0.0508524 0.144102 -0.00540441 Vertex 759 0.0115305 0.060213 0.00240143 Vertex 760 -0.0263118 0.0821805 -0.0360104 Vertex 761 -0.02924 0.0743858 -0.0307025 Vertex 762 -0.0472008 0.0539158 0.00865531 Vertex 763 0.0357205 0.105427 0.0205553 Vertex 764 0.0933758 0.128413 -0.0100521 Vertex 765 0.0493041 0.144012 -0.0304507 Vertex 766 0.0330587 0.0879555 0.0251071 Vertex 767 0.0157269 0.074926 0.00402325 Vertex 768 -0.0523698 0.142385 -0.0217769 Vertex 769 0.0458681 0.097185 0.0147433 Vertex 770 -0.0599605 0.0738733 0.0309781 Vertex 771 0.0779038 0.127573 -0.0181613 Vertex 772 -0.0692555 0.0789016 0.0158658 Vertex 773 0.0838689 0.145935 -0.00727005 Vertex 774 -0.09816 0.168532 -0.00885736 Vertex 775 -0.0845152 0.0605425 -0.0336014 Vertex 776 -0.0344998 0.196087 -0.0232708 Vertex 777 0.0542531 0.0714862 -0.00887057 Vertex 778 -0.106441 0.15928 0.0131033 Vertex 779 -0.0863683 0.150193 0.0163858 Vertex 780 0.0153644 0.156641 -0.023606 Vertex 781 -0.0656219 0.161047 0.00968276 Vertex 782 -0.0724352 0.0569054 0.00388704 Vertex 783 0.0622719 0.0720679 -0.00215892 Vertex 784 -0.00774813 0.145069 -0.0204554 Vertex 785 -0.0839432 0.150695 -0.00159433 Vertex 786 -0.0746452 0.148854 -0.00744366 Vertex 787 0.0717443 0.141989 -0.0151236 Vertex 788 -0.0533665 0.162137 -0.0314237 Vertex 789 -0.00817842 0.0646989 0.01663 Vertex 790 0.0645347 0.121132 -0.0124755 Vertex 791 -0.068903 0.0727986 0.0176645 Vertex 792 -0.0404883 0.170412 -0.0371361 Vertex 793 -0.0807052 0.16799 0.0161847 Vertex 794 0.0259612 0.0762651 -0.0415043 Vertex 795 0.022553 0.074278 -0.0400377 Vertex 796 -0.0856567 0.162301 -0.016595 Vertex 797 -0.0720847 0.0766874 -0.0235895 Vertex 798 0.00552159 0.153929 -0.0180624 Vertex 799 -0.0164653 0.0766376 0.0147537 Vertex 800 -0.0206208 0.0755997 0.0105168 Vertex 801 0.0539989 0.130428 -0.0321071 Vertex 802 0.00552856 0.055912 0.0123324 Vertex 803 -0.0671509 0.119661 -0.0195487 Vertex 804 -0.0579376 0.0695749 0.0379806 Vertex 805 -0.0881412 0.178508 0.007043 Vertex 806 -0.0258643 0.162214 -0.0175662 Vertex 807 -0.0229861 0.1534 -0.0197642 Vertex 808 -0.079144 0.167943 -0.0108622 Vertex 809 -0.0432624 0.160289 0.00212453 Vertex 810 -0.0929663 0.165575 -0.00576507 Vertex 811 -0.0698215 0.113178 0.00738589 Vertex 812 0.024619 0.0699007 -0.0394474 Vertex 813 -0.0595208 0.171181 0.0038898 Vertex 814 -0.0703648 0.171592 0.000407028 Vertex 815 -0.0899861 0.153069 0.0128224 Vertex 816 -0.0542283 0.0717216 0.0357916 Vertex 817 -0.035503 0.158185 -0.00106552 Vertex 818 -0.0669071 0.0662384 0.0183564 Vertex 819 -0.0745115 0.0852779 0.0145484 Vertex 820 -0.087446 0.0874975 -0.0040908 Vertex 821 -0.00142443 0.146939 -0.0169122 Vertex 822 -0.0842222 0.175271 -0.0066249 Vertex 823 -0.0538041 0.133563 -0.00185149 Vertex 824 -0.0914346 0.177196 -0.00161658 Vertex 825 -0.0445652 0.0681775 -0.0362487 Vertex 826 -0.041941 0.144516 -0.0322009 Vertex 827 0.0583584 0.143334 -0.0156174 Vertex 828 0.0449962 0.0922886 0.0298381 Vertex 829 -0.0168416 0.0539402 0.0248983 Vertex 830 0.0328841 0.0663934 -0.0459136 Vertex 831 -0.0679313 0.178157 -0.0136542 Vertex 832 0.0180078 0.124011 -0.0290878 Vertex 833 -0.0857957 0.0596811 -0.0374637 Vertex 834 0.00662399 0.126271 -0.00126891 Vertex 835 -0.0310784 0.0778924 0.0197602 Vertex 836 -0.0836081 0.163312 -0.0166689 Vertex 837 -0.0802805 0.16611 -0.0139343 Vertex 838 -0.0594589 0.0975428 0.0134071 Vertex 839 -0.0844214 0.0593494 -0.0251031 Vertex 840 0.0202293 0.0957205 -0.0106694 Vertex 841 0.0682875 0.053693 -0.0127984 Vertex 842 -0.0378857 0.18241 -0.0241728 Vertex 843 0.0398204 0.121201 0.00952577 Vertex 844 0.0432213 0.109334 0.0129638 Vertex 845 -0.0499014 0.114944 0.00558197 Vertex 846 -0.00227764 0.193196 -0.0321166 Vertex 847 0.0403082 0.10098 0.0114343 Vertex 848 -0.0837744 0.180655 -0.00279724 Vertex 849 -0.0444823 0.0658384 0.0231961 Vertex 850 -0.0352446 0.12342 -0.00520888 Vertex 851 0.0495691 0.0930553 -0.0175912 Vertex 852 -0.0431743 0.0551478 0.0326742 Vertex 853 -0.0319448 0.0824649 0.0126413 Vertex 854 0.0200803 0.0579399 0.0228796 Vertex 855 0.0650189 0.0955368 -0.00239943 Vertex 856 0.0587317 0.100402 -0.0103497 Vertex 857 -0.059128 0.0938905 -0.0229458 Vertex 858 -0.0845631 0.165519 -0.00485474 Vertex 859 -0.0740887 0.140444 -0.0135875 Vertex 860 -0.034968 0.175277 -0.00150869 Vertex 861 0.0656838 0.0673819 -0.0109142 Vertex 862 -0.0361885 0.0700275 -0.0346107 Vertex 863 -0.0659645 0.169253 0.00664789 Vertex 864 0.0196299 0.151535 -0.00648829 Vertex 865 -0.00281991 0.151796 -0.0202372 Vertex 866 0.0152069 0.0632049 -0.00948619 Vertex 867 0.047815 0.0942991 -0.00890493 Vertex 868 0.0955538 0.135473 -0.00838819 Vertex 869 0.0926652 0.131905 -0.00964792 Vertex 870 -0.0414969 0.166925 0.00211979 Vertex 871 -0.024453 0.0685274 -0.0396262 Vertex 872 -0.0277803 0.0563835 -0.0405946 Vertex 873 -0.0311918 0.0972623 -0.0175233 Vertex 874 -0.0448954 0.141957 -0.0284047 Vertex 875 -0.0637585 0.106079 -0.0224548 Vertex 876 0.0206415 0.0630633 0.00268445 Vertex 877 -0.0484525 0.0607419 0.0344521 Vertex 878 -0.0854317 0.0993461 -0.00824733 Vertex 879 0.0130666 0.0595599 0.00282308 Vertex 880 0.00693261 0.0604988 0.00506388 Vertex 881 -0.0330246 0.174541 -0.0219509 Vertex 882 0.0772543 0.0680168 0.00870194 Vertex 883 -0.0206204 0.0893734 0.00685702 Vertex 884 -0.0243268 0.149048 -0.0419417 Vertex 885 -0.0270998 0.0538277 -0.00500906 Vertex 886 0.0421659 0.0996594 -0.0339426 Vertex 887 -0.0319144 0.12247 -0.0140569 Vertex 888 -0.0277313 0.122776 -0.0171653 Vertex 889 -0.0822966 0.142097 0.0151314 Vertex 890 -0.0215557 0.172565 -0.00542705 Vertex 891 0.0645506 0.112591 -0.0146822 Vertex 892 0.0595756 0.113695 -0.00943736 Vertex 893 -0.0113232 0.175194 -0.0090936 Vertex 894 -0.0928334 0.146355 0.0215875 Vertex 895 0.0452896 0.0536851 -0.0155151 Vertex 896 -0.0937225 0.175378 0.00368105 Vertex 897 0.018519 0.158122 -0.0189479 Vertex 898 0.0242793 0.162051 -0.0214526 Vertex 899 -0.0734497 0.165266 -0.0172577 Vertex 900 -0.0143862 0.0854767 -0.0319376 Vertex 901 -0.009362 0.129743 -0.0285272 Vertex 902 -0.0291812 0.185996 -0.0200512 Vertex 903 0.0214071 0.0633382 0.020993 Vertex 904 0.00483436 0.15572 -0.0200773 Vertex 905 0.00285922 0.155419 -0.0219387 Vertex 906 -0.036529 0.142187 -0.00166438 Vertex 907 0.0202675 0.121609 -0.0222505 Vertex 908 -0.0859463 0.168072 -0.0029486 Vertex 909 -0.0634309 0.176852 -0.0195534 Vertex 910 0.0302905 0.121811 -0.0199989 Vertex 911 -0.0771237 0.0652042 0.0100883 Vertex 912 0.00444852 0.101609 -0.00438744 Vertex 913 -0.0641822 0.0853206 0.01667 Vertex 914 -0.0874642 0.176224 0.0151867 Vertex 915 -0.0902082 0.147784 -0.0064963 Vertex 916 -0.0845305 0.0801841 -0.0146559 Vertex 917 0.0615402 0.0532175 -0.000272445 Vertex 918 0.0285628 0.0700858 -0.0475606 Vertex 919 0.050844 0.0529352 0.0166596 Vertex 920 -0.0367959 0.170057 -0.000743632 Vertex 921 -0.0335747 0.164992 -0.00132729 Vertex 922 -0.0283845 0.166322 -0.00346118 Vertex 923 -0.0210249 0.162029 -0.00547676 Vertex 924 0.0454654 0.0657958 0.0216633 Vertex 925 -0.0849255 0.159523 -0.00883877 Vertex 926 0.0795091 0.102183 0.0102918 Vertex 927 0.0390759 0.0888159 0.0314089 Vertex 928 -0.0303414 0.0572883 0.0121609 Vertex 929 -0.0972548 0.1705 -0.00897412 Vertex 930 -0.0894144 0.168742 -0.0124378 Vertex 931 0.0376998 0.0756733 0.0151304 Vertex 932 0.0427319 0.0780839 0.0192685 Vertex 933 0.041171 0.0742532 0.016124 Vertex 934 -0.0777975 0.0681689 -0.0305844 Vertex 935 -0.087019 0.0665182 -0.0279016 Vertex 936 -0.0432209 0.0663081 0.018146 Vertex 937 -0.0208102 0.0562398 -0.0200385 Vertex 938 -0.0187812 0.15838 -0.00511013 Vertex 939 -0.0724357 0.171772 -0.0170266 Vertex 940 -0.0841439 0.065185 -0.0372349 Vertex 941 0.0115661 0.159022 -0.0207304 Vertex 942 -0.0863952 0.0770062 0.00318669 Vertex 943 -0.0841839 0.0821535 0.00726206 Vertex 944 -0.0895881 0.170239 0.00929261 Vertex 945 -0.0746782 0.164704 0.0144453 Vertex 946 -0.0664949 0.164043 0.0129562 Vertex 947 -0.0251721 0.058087 -0.0248453 Vertex 948 -0.012203 0.0852859 0.00703606 Vertex 949 0.017154 0.130768 -0.0342108 Vertex 950 -0.0731362 0.147284 -0.0168799 Vertex 951 -0.035911 0.0736114 0.0231462 Vertex 952 -0.0696995 0.120083 -0.0165251 Vertex 953 0.000860804 0.156178 -0.020469 Vertex 954 0.0390117 0.0711445 0.0162633 Vertex 955 -0.0808889 0.144655 0.0170142 Vertex 956 0.0252399 0.0806044 0.0161845 Vertex 957 0.0323487 0.0549601 -0.0484097 Vertex 958 0.0341696 0.0941277 0.0158487 Vertex 959 -0.0614249 0.0635366 0.037357 Vertex 960 0.0720829 0.148541 -0.0122151 Vertex 961 -0.0584585 0.156409 -0.0217319 Vertex 962 -0.0907478 0.16285 -0.00967478 Vertex 963 0.0177722 0.0847376 -0.00692653 Vertex 964 -0.0287949 0.0539986 -0.031226 Vertex 965 0.00780862 0.0640662 0.0233755 Vertex 966 -0.0143447 0.0646379 0.0207316 Vertex 967 0.0244183 0.0629566 -0.0454167 Vertex 968 0.075108 0.0599776 -0.00407318 Vertex 969 0.0702088 0.0976092 -0.00534097 Vertex 970 0.0673296 0.0839696 0.00233635 Vertex 971 0.0265484 0.130423 -0.00750957 Vertex 972 0.0570758 0.0992041 -0.0136459 Vertex 973 -0.0757804 0.163335 0.00843128 Vertex 974 0.0282268 0.0721532 -0.0421655 Vertex 975 0.03005 0.0740711 -0.0414068 Vertex 976 -0.068973 0.0934823 0.0141764 Vertex 977 0.0127117 0.0593145 0.0261993 Vertex 978 -0.030944 0.123384 -0.0205419 Vertex 979 -0.0352869 0.173839 -0.0370452 Vertex 980 -0.0834759 0.064642 -0.0189072 Vertex 981 0.0906998 0.14207 -0.00858021 Vertex 982 0.0617066 0.12443 -0.0244911 Vertex 983 0.0318125 0.070705 -0.0409374 Vertex 984 -0.0689951 0.167494 0.0129596 Vertex 985 0.0526996 0.111852 -0.0320408 Vertex 986 -0.0539253 0.0799169 0.0215553 Vertex 987 0.0500029 0.0756275 -0.0285387 Vertex 988 -0.0700656 0.150447 -0.0139129 Vertex 989 -0.0902656 0.15 -0.00426391 Vertex 990 -0.0827753 0.147283 -0.00855021 Vertex 991 -0.0406948 0.175672 -0.0335451 Vertex 992 -0.0412222 0.175119 -0.034577 Vertex 993 -0.0621487 0.144789 -0.0136422 Vertex 994 -0.0297085 0.0658126 0.0259856 Vertex 995 0.0405443 0.123714 -0.0337897 Vertex 996 -0.0442358 0.0662244 0.0166225 Vertex 997 -0.0608786 0.0940672 -0.0245382 Vertex 998 -0.0268733 0.14468 -0.00324228 Vertex 999 -0.0405 0.0902603 0.00882552 Vertex 1000 -0.0778942 0.0592685 -0.0390895 Vertex 1001 -0.078788 0.146452 0.0151044 Vertex 1002 0.0419019 0.0634193 -0.0330652 Vertex 1003 0.0707796 0.147604 -0.00923364 Vertex 1004 0.0583691 0.132159 -0.00799074 Vertex 1005 -0.0783551 0.142323 -0.0146504 Vertex 1006 -0.039989 0.161544 -0.0373642 Vertex 1007 0.084943 0.145619 -0.00632322 Vertex 1008 0.0732533 0.0614558 0.000242776 Vertex 1009 0.067157 0.134348 -0.0179918 Vertex 1010 -0.0383308 0.140767 -0.00190676 Vertex 1011 0.0871172 0.128933 -0.0129643 Vertex 1012 -0.0707509 0.169545 0.00969586 Vertex 1013 0.0457132 0.0860671 -0.0263596 Vertex 1014 -0.037539 0.109917 -0.0125705 Vertex 1015 -0.0914312 0.165658 -0.0133191 Vertex 1016 -0.0722285 0.158552 -0.0214149 Vertex 1017 -0.0819755 0.168797 -0.00919837 Vertex 1018 0.0808224 0.0923234 0.0153829 Vertex 1019 0.0284312 0.0642283 -0.0297854 Vertex 1020 -0.0333391 0.174804 -0.0119773 Vertex 1021 -0.0661575 0.14424 0.0080283 Vertex 1022 -0.0183352 0.148776 -0.00953513 Vertex 1023 0.0790393 0.133294 -0.0195018 Vertex 1024 -0.0652702 0.0626248 -0.0235912 Vertex 1025 -0.0234295 0.163829 -0.024021 Vertex 1026 -0.0243234 0.073769 0.011854 Vertex 1027 0.0168653 0.160548 -0.0225951 Vertex 1028 0.0224251 0.16233 -0.0224941 Vertex 1029 -0.0244009 0.154388 -0.00361208 Vertex 1030 -0.0806352 0.150571 0.0133139 Vertex 1031 -0.0764685 0.148942 0.00757916 Vertex 1032 -0.0833769 0.150433 0.0116005 Vertex 1033 -0.0131377 0.0667743 0.00550785 Vertex 1034 -0.0647575 0.0655537 0.0362447 Vertex 1035 -0.0630772 0.0593416 0.0165494 Vertex 1036 -0.0631846 0.173836 0.00460766 Vertex 1037 -0.0538702 0.0575386 0.016258 Vertex 1038 -0.0373791 0.0741319 -0.0290069 Vertex 1039 -0.035229 0.148508 -0.000254006 Vertex 1040 0.0748499 0.0690631 -0.000291435 Vertex 1041 -0.0518521 0.176914 -0.0239356 Vertex 1042 -0.043174 0.174624 -0.0282205 Vertex 1043 0.0844659 0.128159 -0.0106657 Vertex 1044 0.0870208 0.128483 -0.0107749 Vertex 1045 0.0880243 0.141574 -0.0136481 Vertex 1046 -0.0493148 0.0536183 -0.0192893 Vertex 1047 -0.0673308 0.173832 0.000616036 Vertex 1048 0.0671775 0.0715382 0.0255662 Vertex 1049 0.0913095 0.13313 -0.011167 Vertex 1050 0.0423938 0.159103 -0.017851 Vertex 1051 0.0400454 0.160589 -0.0205267 Vertex 1052 -0.0344733 0.0541209 -0.0172933 Vertex 1053 -0.0182802 0.07275 0.0190901 Vertex 1054 -0.0151998 0.0752656 0.0167271 Vertex 1055 -0.0357643 0.153567 -0.0379681 Vertex 1056 -0.0376723 0.17211 -1.83159e-005 Vertex 1057 -0.029399 0.157771 -0.00115271 Vertex 1058 -0.041841 0.156635 0.0030152 Vertex 1059 0.0182593 0.152814 -0.0304345 Vertex 1060 -0.0363844 0.188507 -0.0186355 Vertex 1061 -0.0670915 0.0698203 0.0205084 Vertex 1062 0.0601332 0.0640914 0.0253212 Vertex 1063 -0.0742914 0.0927903 -0.023292 Vertex 1064 0.0359526 0.081219 0.0299382 Vertex 1065 -0.023815 0.175929 -0.00514994 Vertex 1066 0.0364382 0.0896933 -0.00294055 Vertex 1067 -0.0996616 0.151678 0.00565267 Vertex 1068 -0.0589218 0.173985 -0.0260416 Vertex 1069 -0.0401165 0.097039 -0.0116547 Vertex 1070 -0.0417786 0.0916759 -0.0138692 Vertex 1071 -0.0482258 0.0940567 -0.015504 Vertex 1072 -0.0696518 0.169752 -0.0190059 Vertex 1073 -0.0221729 0.16613 -0.0426561 Vertex 1074 -0.0332167 0.0579956 0.0197106 Vertex 1075 0.00214945 0.151617 -0.0184222 Vertex 1076 0.00909387 0.158551 -0.0198114 Vertex 1077 0.0214261 0.0977138 -0.0273031 Vertex 1078 0.0525399 0.153191 -0.0186127 Vertex 1079 0.0522296 0.154375 -0.0202998 Vertex 1080 0.0513791 0.156301 -0.0202695 Vertex 1081 -0.0441043 0.174531 0.00087806 Vertex 1082 -0.0502759 0.174248 0.00256087 Vertex 1083 0.0805117 0.109247 0.00154457 Vertex 1084 -0.0916986 0.166072 -0.00309404 Vertex 1085 -0.0868997 0.0937549 -0.00743985 Vertex 1086 -0.0279308 0.142057 -0.0277793 Vertex 1087 0.0349701 0.0564344 -0.0451157 Vertex 1088 -0.00982256 0.187481 -0.0311089 Vertex 1089 0.0240673 0.155013 -0.00980265 Vertex 1090 0.0363105 0.141834 -0.00244659 Vertex 1091 -0.091179 0.144441 0.0148531 Vertex 1092 0.0550043 0.0548162 -0.0216169 Vertex 1093 0.0652951 0.0538678 -0.0187605 Vertex 1094 0.0157149 0.0576095 0.0227718 Vertex 1095 -0.0819673 0.0641587 -0.00116758 Vertex 1096 -0.0862273 0.0735416 -0.0053344 Vertex 1097 0.0918781 0.129503 -0.00845565 Vertex 1098 0.0855166 0.127216 -0.0113812 Vertex 1099 -0.0456346 0.0785999 0.0293984 Vertex 1100 -0.0312831 0.176575 -0.00391407 Vertex 1101 -0.0580478 0.179726 -0.0173692 Vertex 1102 0.0492656 0.0789149 -0.00353297 Vertex 1103 -0.0662973 0.0991272 0.0127779 Vertex 1104 -0.052628 0.155158 -0.0291413 Vertex 1105 -0.0569146 0.149237 -0.0257761 Vertex 1106 -0.0643109 0.149485 -0.0222973 Vertex 1107 -0.0764497 0.116382 -0.00359113 Vertex 1108 0.0302618 0.0577375 -0.0484596 Vertex 1109 -0.0642897 0.0726924 0.0239032 Vertex 1110 -0.0191892 0.166948 -0.00795651 Vertex 1111 -0.0775021 0.101275 -0.0190169 Vertex 1112 0.040961 0.0743666 0.016615 Vertex 1113 -0.0176078 0.0581187 0.00195056 Vertex 1114 -0.0136302 0.0951502 0.00572614 Vertex 1115 -0.0987612 0.137914 -0.00631881 Vertex 1116 -0.017347 0.0568257 0.026208 Vertex 1117 -0.0224511 0.0618175 0.0255305 Vertex 1118 -0.015711 0.0562717 -0.00850112 Vertex 1119 0.0367984 0.121781 -0.00451046 Vertex 1120 0.0430133 0.0784374 0.0193391 Vertex 1121 0.0428213 0.0781771 0.0195337 Vertex 1122 0.0424421 0.0780896 0.0193362 Vertex 1123 -0.0850131 0.150621 -0.00244681 Vertex 1124 -0.0207203 0.168352 -0.00639284 Vertex 1125 -0.0122854 0.0974472 0.00419639 Vertex 1126 -0.0414031 0.152127 0.00205282 Vertex 1127 -0.0379667 0.153431 3.71567e-006 Vertex 1128 0.0848712 0.145994 -0.01172 Vertex 1129 -0.0146334 0.18963 -0.0257574 Vertex 1130 -0.0443861 0.0800445 0.0214686 Vertex 1131 -0.0436336 0.062478 0.0337293 Vertex 1132 -0.0346332 0.0927612 0.00377183 Vertex 1133 -0.0565399 0.17821 -0.00114354 Vertex 1134 -0.0631521 0.178826 -0.00289166 Vertex 1135 -0.0423924 0.0813163 -0.0279036 Vertex 1136 -0.0254278 0.10828 -0.0175891 Vertex 1137 -0.034755 0.0608443 -0.04102 Vertex 1138 -0.0162011 0.0659011 0.0195295 Vertex 1139 -0.0313585 0.176649 -0.0192001 Vertex 1140 0.0261138 0.0642967 0.0206156 Vertex 1141 -0.0170887 0.0767816 -0.0321647 Vertex 1142 0.0479024 0.0687584 -0.0342565 Vertex 1143 0.0335806 0.0968716 0.0187727 Vertex 1144 -0.00979149 0.161002 -0.0102059 Vertex 1145 -0.0744837 0.0678141 -0.0249491 Vertex 1146 0.0281799 0.10831 -0.0260773 Vertex 1147 -0.0990655 0.146777 0.0118397 Vertex 1148 -0.049235 0.157828 -0.0294905 Vertex 1149 0.0426461 0.109866 0.0155074 Vertex 1150 -0.0275034 0.132652 -0.0233003 Vertex 1151 -0.0231563 0.137532 -0.0242964 Vertex 1152 -0.0396857 0.13998 -0.0308988 Vertex 1153 -0.0545168 0.149466 0.00769358 Vertex 1154 0.00751569 0.0619376 0.0205064 Vertex 1155 -0.0311688 0.0831277 0.0110689 Vertex 1156 0.0387595 0.0754031 0.0272894 Vertex 1157 -0.0302977 0.184174 -0.00380247 Vertex 1158 -0.0532251 0.0556138 -0.00728123 Vertex 1159 -0.0351266 0.19724 -0.0206066 Vertex 1160 -0.0185387 0.122725 -0.0134971 Vertex 1161 0.0828988 0.125249 -0.0143766 Vertex 1162 -0.0324345 0.145971 -0.0303346 Vertex 1163 -0.08326 0.174615 0.00989074 Vertex 1164 -0.0797073 0.174131 0.00740792 Vertex 1165 -0.0812969 0.179709 0.00210051 Vertex 1166 0.0108062 0.156883 -0.0224865 Vertex 1167 -0.096525 0.152874 0.0141181 Vertex 1168 0.0400947 0.0753542 0.0133291 Vertex 1169 0.0378625 0.0749365 0.0116352 Vertex 1170 0.0374009 0.0757616 0.0129114 Vertex 1171 0.0261862 0.0525713 -0.000494273 Vertex 1172 -0.0888015 0.0576091 -0.0279142 Vertex 1173 -0.0423922 0.0688983 0.0283408 Vertex 1174 0.0737313 0.105058 0.00961331 Vertex 1175 0.0324461 0.0527171 -0.0170948 Vertex 1176 -0.0137294 0.0583842 0.00855707 Vertex 1177 0.0625684 0.0779024 0.00288259 Vertex 1178 0.0723692 0.136881 -0.00934919 Vertex 1179 -0.0575429 0.129616 -0.0222578 Vertex 1180 -0.0512569 0.176765 -0.0279645 Vertex 1181 -0.0289332 0.169599 -0.036078 Vertex 1182 -0.0761525 0.115696 -0.0107013 Vertex 1183 -0.0669891 0.123726 -0.0168426 Vertex 1184 0.0424606 0.154243 -0.0244117 Vertex 1185 -0.0727827 0.17341 -0.0213436 Vertex 1186 0.0724638 0.115472 -0.0170785 Vertex 1187 -0.0583443 0.161527 -0.0126438 Vertex 1188 -0.0838454 0.168541 0.00860271 Vertex 1189 0.0245014 0.0641249 -0.0466125 Vertex 1190 -0.0522632 0.168459 -0.0314188 Vertex 1191 0.0301812 0.0711266 -0.0448906 Vertex 1192 -0.0797706 0.142005 0.0172569 Vertex 1193 -0.0215374 0.0937482 -0.031236 Vertex 1194 -0.0864158 0.0926232 0.00203793 Vertex 1195 -0.085078 0.090043 0.00473364 Vertex 1196 -0.0774796 0.0903456 0.0128214 Vertex 1197 -0.0326552 0.174375 -0.0021295 Vertex 1198 -0.0744621 0.167694 -0.0156542 Vertex 1199 -0.0835448 0.103825 -0.00634963 Vertex 1200 -0.081551 0.107455 0.000603396 Vertex 1201 0.0315888 0.161449 -0.0219028 Vertex 1202 0.022463 0.158215 -0.0235552 Vertex 1203 -0.048667 0.17041 -0.0335518 Vertex 1204 -0.100325 0.174083 -0.00568024 Vertex 1205 0.0189123 0.0780109 -0.0318536 Vertex 1206 0.0262007 0.124815 -0.015894 Vertex 1207 0.0384601 0.0537097 0.0126784 Vertex 1208 -0.0578872 0.14138 -0.0245755 Vertex 1209 -0.0556746 0.07368 0.0371125 Vertex 1210 0.0240589 0.159053 -0.0195713 Vertex 1211 0.0313134 0.161614 -0.0202347 Vertex 1212 0.0724782 0.0710008 -0.00151612 Vertex 1213 0.0714137 0.0730354 -0.000470892 Vertex 1214 -0.0245392 0.0557942 0.00850461 Vertex 1215 -0.0796477 0.0586159 -0.0327264 Vertex 1216 -0.0860077 0.0578548 -0.036569 Vertex 1217 0.0524032 0.148038 -0.0137017 Vertex 1218 -0.0929704 0.150086 -0.00465196 Vertex 1219 -0.0602386 0.124292 0.00321565 Vertex 1220 0.0462322 0.158202 -0.0211297 Vertex 1221 0.0454008 0.159634 -0.0203801 Vertex 1222 -0.0116395 0.132722 -0.0224808 Vertex 1223 -0.0267706 0.105782 -0.0120179 Vertex 1224 -0.0410121 0.17401 -0.0311557 Vertex 1225 0.0489836 0.0900405 -0.0136522 Vertex 1226 -0.023287 0.161392 -0.00407728 Vertex 1227 0.0706505 0.0647753 -0.00795866 Vertex 1228 0.0304039 0.0866728 0.00643685 Vertex 1229 0.00416241 0.0885025 -0.0112177 Vertex 1230 -0.0336478 0.155817 -0.0396905 Vertex 1231 -0.063655 0.070016 0.0351452 Vertex 1232 0.0198215 0.156868 -0.016854 Vertex 1233 -0.0407362 0.174068 0.000655021 Vertex 1234 -0.0335777 0.0529699 -0.0298347 Vertex 1235 -0.0653146 0.151426 -0.0142258 Vertex 1236 -0.0299691 0.104809 -0.0138574 Vertex 1237 -0.0306207 0.102706 -0.0121964 Vertex 1238 -0.034946 0.144108 -9.73255e-005 Vertex 1239 -0.0369822 0.143427 0.000987956 Vertex 1240 -0.0479718 0.0593112 0.0140168 Vertex 1241 -0.0707941 0.143069 -0.0139369 Vertex 1242 -0.0875378 0.172866 -0.0067325 Vertex 1243 0.0603607 0.107705 -0.0167956 Vertex 1244 -0.0431383 0.0735986 0.0294609 Vertex 1245 -0.0771233 0.0682263 -0.019117 Vertex 1246 -0.0455775 0.0925638 0.0106403 Vertex 1247 0.0357718 0.064063 -0.0481437 Vertex 1248 0.068024 0.10823 0.00304932 Vertex 1249 0.0358858 0.0757748 -0.0340331 Vertex 1250 -0.0243649 0.151548 -0.00264655 Vertex 1251 0.0318075 0.0832142 0.0202871 Vertex 1252 0.0321065 0.0852798 0.0216201 Vertex 1253 0.0664545 0.132068 -0.0151935 Vertex 1254 0.0810836 0.151283 -0.00937952 Vertex 1255 0.0170065 0.0644164 0.0105381 Vertex 1256 -0.0747731 0.0817236 -0.0229827 Vertex 1257 -0.0021459 0.094934 0.00141605 Vertex 1258 0.037579 0.0953532 0.0278201 Vertex 1259 0.036856 0.0943677 0.0262913 Vertex 1260 -0.0937335 0.140489 -0.00701445 Vertex 1261 0.0453812 0.147052 -0.00633645 Vertex 1262 0.0524134 0.155102 -0.0187999 Vertex 1263 0.0463549 0.154337 -0.0168899 Vertex 1264 -0.0288133 0.144498 -0.00419743 Vertex 1265 0.092816 0.147834 -0.00876959 Vertex 1266 0.00833613 0.0632237 0.0101569 Vertex 1267 -0.0586283 0.142711 0.0100819 Vertex 1268 0.060078 0.066365 -0.0185631 Vertex 1269 0.070413 0.0607592 -0.0117695 Vertex 1270 -0.0488609 0.0793078 0.0251687 Vertex 1271 0.040416 0.0616577 -0.0374516 Vertex 1272 -0.0315008 0.148686 -0.0354344 Vertex 1273 -0.034029 0.145807 -0.0341587 Vertex 1274 -0.0755042 0.170173 0.0144709 Vertex 1275 -0.00472252 0.151537 -0.021087 Vertex 1276 -0.0727345 0.0698787 -0.0280118 Vertex 1277 -0.0710042 0.16783 0.0147023 Vertex 1278 -0.0419341 0.056367 0.0308421 Vertex 1279 0.00780584 0.0565879 0.0235118 Vertex 1280 0.00865205 0.0574197 0.00285147 Vertex 1281 0.0243445 0.145607 -0.00350382 Vertex 1282 0.0377983 0.070409 0.0167191 Vertex 1283 -0.0642245 0.0682674 0.0336325 Vertex 1284 0.0673407 0.121221 -0.0182038 Vertex 1285 -0.02122 0.135844 -0.0214337 Vertex 1286 -0.0261669 0.127829 -0.0215361 Vertex 1287 -0.044101 0.184092 -0.0369668 Vertex 1288 -0.0874858 0.151401 0.00962289 Vertex 1289 0.0773912 0.086043 -0.00223898 Vertex 1290 -0.0778283 0.102218 0.00890637 Vertex 1291 -0.0592193 0.0568914 -0.020658 Vertex 1292 0.038102 0.0606203 -0.0497326 Vertex 1293 0.0124829 0.0637684 0.00192753 Vertex 1294 -0.0409424 0.102689 -0.010311 Vertex 1295 0.0398526 0.0787715 0.0150641 Vertex 1296 -0.0290154 0.073365 -0.0321609 Vertex 1297 0.0417466 0.0822234 0.0146836 Vertex 1298 -0.0292948 0.173899 -0.0422317 Vertex 1299 -0.0848777 0.174644 0.0090405 Vertex 1300 -0.0238142 0.138721 -0.0181573 Vertex 1301 0.0252903 0.0607662 0.00592221 Vertex 1302 -0.0509915 0.142515 -0.0056725 Vertex 1303 -0.00462806 0.144163 -0.0230606 Vertex 1304 0.0633015 0.0539948 -0.00382173 Vertex 1305 0.069611 0.0575117 0.00175937 Vertex 1306 -0.065215 0.140211 -0.019881 Vertex 1307 0.0272314 0.0775147 -0.036355 Vertex 1308 0.0785703 0.124539 -0.0134346 Vertex 1309 0.0367518 0.0955342 0.0140891 Vertex 1310 -0.0215654 0.0670033 -0.0360926 Vertex 1311 0.0460113 0.0540855 0.0117878 Vertex 1312 -0.0635932 0.0782279 0.0188456 Vertex 1313 0.0121854 0.0815224 -0.0140585 Vertex 1314 -0.0109893 0.141758 -0.0180209 Vertex 1315 -0.0091919 0.144515 -0.0189445 Vertex 1316 -0.00762339 0.144082 -0.0187807 Vertex 1317 0.0350412 0.159176 -0.023213 Vertex 1318 0.0307157 0.0563953 -0.047191 Vertex 1319 -0.0111259 0.0622933 -0.00310051 Vertex 1320 -0.0628816 0.129804 -0.00707788 Vertex 1321 0.0098954 0.158859 -0.0211607 Vertex 1322 -0.0388073 0.162762 0.000963952 Vertex 1323 0.0232002 0.145416 -0.0353547 Vertex 1324 -0.0573328 0.155818 -0.0170657 Vertex 1325 0.0291178 0.0666749 -0.0366098 Vertex 1326 -0.0792916 0.0689191 -0.0169117 Vertex 1327 -0.0781032 0.0631441 -0.0142976 Vertex 1328 0.00558135 0.0605481 0.0119746 Vertex 1329 -0.053942 0.103906 0.0094569 Vertex 1330 -0.07446 0.16861 -0.0101161 Vertex 1331 0.0472429 0.0815137 -0.00891693 Vertex 1332 -0.0832949 0.097366 0.00430886 Vertex 1333 -0.0823136 0.103887 0.000102789 Vertex 1334 0.02854 0.154332 -0.0298002 Vertex 1335 0.0345686 0.156605 -0.0154166 Vertex 1336 0.0482442 0.0961638 0.0194857 Vertex 1337 -0.0345377 0.175285 -0.00949588 Vertex 1338 -0.0187193 0.15597 -0.0066187 Vertex 1339 0.0420017 0.157163 -0.0231324 Vertex 1340 0.0387211 0.161447 -0.0214261 Vertex 1341 -0.0978945 0.154299 0.00409469 Vertex 1342 -0.0671831 0.0914291 -0.0316058 Vertex 1343 -0.0851466 0.0686659 -0.02622 Vertex 1344 -0.0759835 0.150794 0.00542796 Vertex 1345 -0.0745364 0.173542 -0.00673272 Vertex 1346 -0.0771148 0.174722 -0.00327933 Vertex 1347 -0.0135932 0.152979 -0.00930536 Vertex 1348 -0.042816 0.143943 -0.000539264 Vertex 1349 -0.0645741 0.180384 -0.0067349 Vertex 1350 -0.0505994 0.0580912 -0.0246653 Vertex 1351 -0.0811386 0.172585 0.0151557 Vertex 1352 -0.018301 0.149491 -0.0105399 Vertex 1353 0.0342597 0.0656608 0.0178629 Vertex 1354 0.034144 0.0609259 0.0241273 Vertex 1355 -0.0379713 0.0553474 -0.0248089 Vertex 1356 -0.038597 0.0530864 -0.0281761 Vertex 1357 -0.0540491 0.0584887 0.0141821 Vertex 1358 0.0741917 0.135782 -0.0197375 Vertex 1359 0.0544867 0.145764 -0.0238049 Vertex 1360 0.055931 0.143681 -0.0241563 Vertex 1361 0.0318729 0.0651382 0.0232214 Vertex 1362 -0.0583173 0.169435 -0.0280562 Vertex 1363 -0.0568431 0.167927 -0.0286344 Vertex 1364 -0.0598036 0.0741566 0.0386598 Vertex 1365 -0.0387951 0.15268 -0.0371081 Vertex 1366 -0.0898865 0.172195 -0.0069878 Vertex 1367 -0.0900132 0.176107 -0.00393827 Vertex 1368 -0.0433848 0.0655371 -0.0373945 Vertex 1369 -0.0348981 0.0659751 -0.0386016 Vertex 1370 0.0352034 0.133926 -0.0342481 Vertex 1371 -0.0463864 0.179857 -0.0374158 Vertex 1372 -0.0674761 0.170764 0.000980952 Vertex 1373 -0.0629132 0.169566 0.00585299 Vertex 1374 -0.0611321 0.168071 0.00628937 Vertex 1375 0.00360828 0.124145 -0.0348557 Vertex 1376 -0.0210537 0.161829 -0.0234207 Vertex 1377 -0.037751 0.141085 0.000711937 Vertex 1378 0.0412251 0.081573 0.0132802 Vertex 1379 -0.0659702 0.172471 -0.0235926 Vertex 1380 -0.062479 0.171651 -0.0253896 Vertex 1381 -0.0111188 0.0676534 0.0189617 Vertex 1382 -0.0729389 0.17102 -0.0133256 Vertex 1383 -0.068443 0.142598 0.0132993 Vertex 1384 -0.0460914 0.177941 -0.00542776 Vertex 1385 0.0533993 0.138146 -0.00590268 Vertex 1386 -0.0295189 0.0563597 0.00840339 Vertex 1387 0.0482787 0.0721777 0.0208495 Vertex 1388 -0.0475826 0.0555014 0.0321385 Vertex 1389 0.0458923 0.0786825 -0.0161073 Vertex 1390 -0.0921552 0.173376 0.00619747 Vertex 1391 -0.0239734 0.165893 -0.0220561 Vertex 1392 -0.0204318 0.159646 -0.0235342 Vertex 1393 -0.106892 0.157249 0.0123147 Vertex 1394 -0.0971112 0.15087 0.0161293 Vertex 1395 -0.0921424 0.150864 0.0184238 Vertex 1396 -0.0722499 0.16276 0.00869488 Vertex 1397 0.0839844 0.13003 -0.0103309 Vertex 1398 -0.100284 0.149925 7.5876e-005 Vertex 1399 -0.0801546 0.164059 -0.00643289 Vertex 1400 -0.0218553 0.173357 -0.0100463 Vertex 1401 0.0444774 0.0923417 0.0165709 Vertex 1402 -0.0644426 0.157531 -0.0236099 Vertex 1403 -0.067213 0.0629656 -0.0328781 Vertex 1404 -0.0847629 0.0648066 -0.0249022 Vertex 1405 -0.0807434 0.163372 0.00933076 Vertex 1406 -0.0692346 0.0556878 -0.0120002 Vertex 1407 -0.0791711 0.0625888 -0.0108072 Vertex 1408 -0.0838507 0.0652929 -0.0352249 Vertex 1409 -0.0503576 0.0548285 0.0207082 Vertex 1410 -0.0185309 0.111315 -0.0024413 Vertex 1411 -0.0184167 0.0985321 0.00314665 Vertex 1412 -0.0255233 0.0621286 -0.0408053 Vertex 1413 0.0316023 0.146975 -0.0350257 Vertex 1414 -0.0302077 0.162211 -0.0401124 Vertex 1415 -0.0698679 0.143266 -0.0127609 Vertex 1416 -0.0723902 0.142632 -0.0111921 Vertex 1417 0.00817023 0.14679 -0.00660988 Vertex 1418 -0.0342372 0.193135 -0.0220007 Vertex 1419 -0.031621 0.160764 -0.000830487 Vertex 1420 -0.0392344 0.164737 0.00213006 Vertex 1421 0.0449901 0.0536461 -0.00993336 Vertex 1422 -0.0577473 0.171852 0.00395922 Vertex 1423 -0.0540256 0.170716 0.00470372 Vertex 1424 0.0136896 0.156753 -0.0182554 Vertex 1425 0.0371621 0.082472 -0.000927321 Vertex 1426 -0.0945388 0.152857 0.00120924 Vertex 1427 0.0375661 0.10167 0.023197 Vertex 1428 0.0349138 0.0962943 0.0221135 Vertex 1429 -0.0504814 0.0696434 0.0334567 Vertex 1430 0.0184562 0.0596637 0.00707668 Vertex 1431 -0.0665691 0.127035 -0.00903098 Vertex 1432 -0.0640884 0.125569 4.96025e-005 Vertex 1433 -0.0883671 0.171593 0.00615499 Vertex 1434 0.0293634 0.0709086 -0.0429107 Vertex 1435 -0.0125313 0.0941188 0.00687073 Vertex 1436 -0.0106826 0.0900558 0.00528106 Vertex 1437 -0.0101616 0.0933413 0.00453699 Vertex 1438 0.0647468 0.0724597 0.0255778 Vertex 1439 -0.0931144 0.139333 -0.00668886 Vertex 1440 -0.0593709 0.0766114 0.0229097 Vertex 1441 0.0313403 0.0627911 -0.0454194 Vertex 1442 0.0278697 0.0562296 0.0219096 Vertex 1443 -0.0469327 0.152912 -0.0322038 Vertex 1444 0.0105811 0.157302 -0.0198211 Vertex 1445 0.0372542 0.0562555 -0.0476329 Vertex 1446 0.0681354 0.130831 -0.013337 Vertex 1447 -0.0552815 0.144965 -0.0171714 Vertex 1448 0.0147106 0.0761583 -0.00272681 Vertex 1449 0.0507956 0.0547898 0.0194559 Vertex 1450 -0.0382038 0.170632 -0.0366493 Vertex 1451 -0.0410785 0.1425 0.00274228 Vertex 1452 0.0211438 0.0634018 0.016701 Vertex 1453 0.0562499 0.074408 -0.00139393 Vertex 1454 -0.0998367 0.16971 -0.00624157 Vertex 1455 0.0106718 0.0656137 0.00361193 Vertex 1456 -0.0522595 0.0778955 -0.0363567 Vertex 1457 0.00778726 0.152317 -0.0249495 Vertex 1458 0.0301991 0.055511 0.0170327 Vertex 1459 -0.0212063 0.0535986 -0.00851834 Vertex 1460 -0.0109902 0.174089 -0.00834367 Vertex 1461 -0.0888296 0.0599781 -0.0203408 Vertex 1462 -0.0475782 0.1584 -0.0330633 Vertex 1463 -0.0286768 0.127385 -0.0218393 Vertex 1464 -0.0329579 0.125379 -0.0226246 Vertex 1465 -0.0194671 0.160027 -0.00510003 Vertex 1466 -0.0245115 0.159806 -0.0203938 Vertex 1467 0.0486935 0.0978106 0.0238858 Vertex 1468 0.0245486 0.0709599 -0.0353862 Vertex 1469 0.0211556 0.0727949 -0.03472 Vertex 1470 0.0216327 0.0742445 -0.0344227 Vertex 1471 -0.0706145 0.121886 -0.00347953 Vertex 1472 -0.0751129 0.118036 -0.00298799 Vertex 1473 -0.0684199 0.143996 0.00649712 Vertex 1474 -0.0353867 0.156961 -0.0402656 Vertex 1475 0.0284212 0.09351 -0.0344124 Vertex 1476 -0.0503388 0.0553316 0.0326933 Vertex 1477 0.0313241 0.0576987 0.0157969 Vertex 1478 -0.0165277 0.111148 -0.00122605 Vertex 1479 -0.0417542 0.168703 0.0011657 Vertex 1480 0.0482319 0.154836 -0.0220632 Vertex 1481 -0.0856095 0.0611405 -0.02524 Vertex 1482 0.05291 0.148654 -0.0157282 Vertex 1483 -0.0779104 0.0618713 0.00522681 Vertex 1484 -0.0808007 0.0670465 0.00656899 Vertex 1485 -0.0252713 0.0739136 -0.0356298 Vertex 1486 0.0321161 0.082836 0.000841624 Vertex 1487 -0.0531589 0.165118 -0.0306956 Vertex 1488 -0.0856391 0.178106 0.00698294 Vertex 1489 -0.0416002 0.0535873 0.00469642 Vertex 1490 0.0304363 0.116774 -0.0201236 Vertex 1491 -0.0436027 0.178716 -0.00349018 Vertex 1492 -0.0621348 0.0576739 0.011389 Vertex 1493 -0.0803608 0.152021 0.0111745 Vertex 1494 -0.0214787 0.135054 -0.022556 Vertex 1495 -0.0206181 0.1458 -0.0242097 Vertex 1496 0.0344394 0.0840598 0.0258749 Vertex 1497 0.0350576 0.0825217 0.0287254 Vertex 1498 -0.048016 0.145837 -0.0309622 Vertex 1499 0.0836567 0.0956668 0.000758642 Vertex 1500 -0.0895339 0.058771 -0.0294258 Vertex 1501 0.038939 0.0680149 -0.039834 Vertex 1502 -0.0624944 0.127942 -0.0181566 Vertex 1503 -0.0459144 0.179823 -0.0211953 Vertex 1504 -0.0201067 0.0924086 -0.0327036 Vertex 1505 -0.0229996 0.0873873 -0.0360392 Vertex 1506 -0.0806114 0.0971133 0.00880835 Vertex 1507 -0.0840796 0.148631 -0.00722764 Vertex 1508 0.0420333 0.147283 -0.032171 Vertex 1509 -0.015687 0.186608 -0.0303948 Vertex 1510 0.00295509 0.0570902 0.0122831 Vertex 1511 -0.0639973 0.106172 0.01064 Vertex 1512 -0.0880621 0.160125 -0.00795492 Vertex 1513 0.075268 0.088007 0.0203374 Vertex 1514 -0.0301661 0.18116 -0.00678889 Vertex 1515 -0.07592 0.0571154 -0.00612834 Vertex 1516 0.0382401 0.093277 0.0127714 Vertex 1517 0.0247876 0.0641728 0.0178275 Vertex 1518 0.0703547 0.139877 -0.0115777 Vertex 1519 -0.00458436 0.0802995 0.000264171 Vertex 1520 -0.0272573 0.167375 -0.0368157 Vertex 1521 0.0209646 0.0571811 0.0170375 Vertex 1522 -0.0517464 0.143719 -0.0286089 Vertex 1523 -0.0726978 0.176625 -0.00892623 Vertex 1524 -0.0719924 0.145867 0.0134172 Vertex 1525 -0.0579435 0.179084 -0.00373961 Vertex 1526 -0.0936163 0.141941 -0.00146955 Vertex 1527 0.0243261 0.0765378 -0.0373175 Vertex 1528 -0.000719264 0.151869 -0.0217028 Vertex 1529 -0.0811799 0.140613 0.0191425 Vertex 1530 -0.0561806 0.166227 0.00830215 Vertex 1531 0.0642672 0.106324 -0.00612414 Vertex 1532 0.0414721 0.0838374 0.015703 Vertex 1533 -0.0198055 0.169478 -0.0115402 Vertex 1534 0.0403257 0.120505 0.00808913 Vertex 1535 0.0364518 0.124448 0.00551346 Vertex 1536 -0.0406964 0.173194 -0.0384226 Vertex 1537 -0.0679163 0.0675628 0.0270485 Vertex 1538 -0.0957095 0.155657 0.0125161 Vertex 1539 0.0732699 0.12887 -0.0099698 Vertex 1540 0.0181782 0.0618337 -0.0237572 Vertex 1541 0.0791957 0.0783909 0.00207266 Vertex 1542 -0.0306427 0.0535071 -0.0392382 Vertex 1543 -0.0700305 0.145574 -0.0194194 Vertex 1544 0.0347291 0.115363 0.00710013 Vertex 1545 0.0345237 0.107356 0.00938795 Vertex 1546 -0.0539596 0.11565 -0.0243949 Vertex 1547 -0.0323118 0.0711344 -0.0381893 Vertex 1548 0.0420265 0.0787536 -0.0345777 Vertex 1549 -0.0255955 0.164911 -0.0129246 Vertex 1550 -0.0393484 0.163349 -0.0382775 Vertex 1551 -0.0472035 0.160717 -0.0336663 Vertex 1552 -0.00356181 0.193139 -0.0295924 Vertex 1553 -0.0255911 0.145922 -0.00686292 Vertex 1554 -0.0972504 0.141292 -0.00297383 Vertex 1555 -0.0482134 0.0999565 0.00411858 Vertex 1556 0.00786372 0.159085 -0.0214512 Vertex 1557 -0.0268057 0.163304 -0.0251352 Vertex 1558 -0.094685 0.145381 0.0219202 Vertex 1559 0.0557231 0.122456 -0.0311658 Vertex 1560 -0.0510075 0.062722 -0.0381785 Vertex 1561 0.0582952 0.0536352 0.00412777 Vertex 1562 -0.0579293 0.17024 0.00460359 Vertex 1563 -0.0621999 0.171953 0.00490502 Vertex 1564 -0.0353721 0.177033 -0.00269621 Vertex 1565 0.0115542 0.059637 0.0096344 Vertex 1566 0.0660293 0.0842981 0.00268794 Vertex 1567 -0.0362088 0.154926 8.18574e-005 Vertex 1568 -0.0373931 0.174865 -0.0251434 Vertex 1569 0.0281611 0.0536043 -0.0116236 Vertex 1570 -0.078768 0.152826 0.0116219 Vertex 1571 -0.0325536 0.144736 -0.00226253 Vertex 1572 -0.0835089 0.139963 -0.0034919 Vertex 1573 -0.0781345 0.168773 0.0162992 Vertex 1574 -0.0883042 0.150268 -0.00457721 Vertex 1575 0.0298657 0.162756 -0.0206102 Vertex 1576 0.00803898 0.153109 -0.0160844 Vertex 1577 -0.0581859 0.133926 -0.00685929 Vertex 1578 -0.061234 0.131001 -0.00619587 Vertex 1579 0.0314694 0.060227 -0.0462933 Vertex 1580 0.0649926 0.0963409 0.00240935 Vertex 1581 0.0468582 0.11662 -0.0341748 Vertex 1582 0.0524171 0.126482 -0.0330342 Vertex 1583 -0.0383306 0.0907992 -0.0168254 Vertex 1584 -0.0270081 0.0541908 0.0231498 Vertex 1585 -0.0620318 0.0533651 0.0285772 Vertex 1586 -0.00658599 0.124378 -0.00111084 Vertex 1587 -0.00757894 0.132223 -0.00534195 Vertex 1588 -0.0343787 0.168595 -0.0408507 Vertex 1589 -0.0216592 0.084989 -0.0353554 Vertex 1590 -0.0404538 0.189607 -0.0224133 Vertex 1591 -0.0594124 0.15543 -0.0121919 Vertex 1592 0.0319478 0.0582034 0.0154188 Vertex 1593 0.0342953 0.059619 0.0173036 Vertex 1594 -0.019767 0.127347 -0.0181946 Vertex 1595 -0.0488045 0.181071 -0.0168986 Vertex 1596 0.00767489 0.108427 -0.00682558 Vertex 1597 -0.0159881 0.134311 -0.0196899 Vertex 1598 0.0663893 0.0636713 0.0246364 Vertex 1599 0.0295805 0.0551587 -0.00662085 Vertex 1600 -0.0663498 0.0575186 0.0104758 Vertex 1601 -0.0474714 0.159272 -0.0340662 Vertex 1602 0.0182733 0.12896 -0.00602326 Vertex 1603 -0.0743582 0.157193 -0.0186388 Vertex 1604 -0.0875382 0.0814326 -0.00478699 Vertex 1605 -7.97689e-005 0.15061 -0.017825 Vertex 1606 0.0501266 0.0738313 -0.0142526 Vertex 1607 -0.0598602 0.0702347 0.0408657 Vertex 1608 -0.0298984 0.141627 -0.00596561 Vertex 1609 -0.0279333 0.13638 -0.00830652 Vertex 1610 -0.0146689 0.0684854 0.0209429 Vertex 1611 0.0961985 0.136517 -0.0108262 Vertex 1612 -0.0631386 0.160627 -0.0149561 Vertex 1613 -0.0727003 0.152362 0.00251962 Vertex 1614 -0.0243014 0.167162 -0.0238304 Vertex 1615 0.0573092 0.150176 -0.0184374 Vertex 1616 0.0572772 0.147996 -0.0172188 Vertex 1617 -0.0825726 0.166155 0.00931209 Vertex 1618 0.0193695 0.138888 -0.0355515 Vertex 1619 -0.0329331 0.0636312 -0.0394078 Vertex 1620 0.0434605 0.0663521 -0.0397839 Vertex 1621 -0.0747264 0.148939 0.0111321 Vertex 1622 -0.0269423 0.102148 -0.00992061 Vertex 1623 -0.028304 0.0986803 -0.00603324 Vertex 1624 0.024618 0.0770877 -0.033635 Vertex 1625 -0.00775996 0.065752 -0.0081297 Vertex 1626 -0.011535 0.0618806 -0.0124789 Vertex 1627 -0.0367157 0.143238 -0.0306537 Vertex 1628 -0.0860269 0.161224 -0.0147148 Vertex 1629 -0.0832302 0.0676922 0.000544435 Vertex 1630 -0.0698793 0.162959 -0.0208043 Vertex 1631 -0.0249395 0.153368 -0.0261157 Vertex 1632 -0.0357406 0.18552 -0.0167851 Vertex 1633 0.0667095 0.0989372 0.00816668 Vertex 1634 -0.099256 0.152174 0.0030815 Vertex 1635 -0.0618049 0.0926053 0.0161045 Vertex 1636 0.0572522 0.0686143 -0.0102656 Vertex 1637 0.061325 0.113457 -0.0108104 Vertex 1638 0.0615571 0.107167 -0.0146982 Vertex 1639 0.061793 0.107143 -0.0104627 Vertex 1640 -0.0408966 0.183614 -0.0355404 Vertex 1641 0.0343924 0.0792112 0.0280073 Vertex 1642 0.0613533 0.0832904 0.00255275 Vertex 1643 0.0353269 0.118914 0.00666981 Vertex 1644 0.0353529 0.11902 0.006566 Vertex 1645 -0.0343692 0.186224 -0.0198781 Vertex 1646 0.0706862 0.0591408 0.0148434 Vertex 1647 0.058734 0.102713 -0.0148286 Vertex 1648 -0.0888813 0.145802 0.0213538 Vertex 1649 0.0563399 0.150141 -0.0201984 Vertex 1650 0.0667076 0.136971 -0.0178523 Vertex 1651 -0.051842 0.143188 0.00836711 Vertex 1652 -0.0557137 0.175163 0.00369261 Vertex 1653 -0.0550164 0.176741 0.00199385 Vertex 1654 -0.0731382 0.171275 0.00360708 Vertex 1655 0.064838 0.131233 -0.0202273 Vertex 1656 0.0753777 0.123189 -0.00955611 Vertex 1657 0.0161516 0.0657814 0.00294291 Vertex 1658 0.0157739 0.070229 -0.00288003 Vertex 1659 -0.0876599 0.064185 -0.0283892 Vertex 1660 -0.0339991 0.166896 -0.0418923 Vertex 1661 -0.0326521 0.165606 -0.0409328 Vertex 1662 -0.0840686 0.0586998 -0.0330056 Vertex 1663 0.0122682 0.0802064 -0.0128757 Vertex 1664 0.0426645 0.156599 -0.0177232 Vertex 1665 -0.0607686 0.0745955 0.0361453 Vertex 1666 -0.0293265 0.155913 -0.00106933 Vertex 1667 -0.0639056 0.0646197 -0.0341757 Vertex 1668 -0.0580408 0.146138 0.000981994 Vertex 1669 -0.0567545 0.145576 -0.00284529 Vertex 1670 -0.0606511 0.145064 -0.00536252 Vertex 1671 0.0169813 0.161435 -0.0212547 Vertex 1672 -0.0236551 0.0532515 0.0227452 Vertex 1673 -0.0878185 0.0890386 -0.00532148 Vertex 1674 -0.0862598 0.0962337 -0.00509368 Vertex 1675 -0.0120066 0.138661 -0.0207298 Vertex 1676 -0.0105597 0.143551 -0.0209115 Vertex 1677 -0.00898781 0.143747 -0.0210257 Vertex 1678 -0.0824422 0.0674297 -0.00996082 Vertex 1679 0.0472904 0.0705152 -0.0310059 Vertex 1680 -0.0089843 0.0698844 0.0155987 Vertex 1681 0.0172006 0.119896 -0.0254065 Vertex 1682 0.027115 0.134208 -0.00407487 Vertex 1683 -0.0339116 0.115555 -0.0167574 Vertex 1684 -0.0399071 0.106719 -0.0131598 Vertex 1685 -0.0418232 0.158876 0.00204299 Vertex 1686 0.0312287 0.127482 -0.00884057 Vertex 1687 0.0570173 0.109295 -0.0274433 Vertex 1688 -0.0460481 0.0556812 -0.00196983 Vertex 1689 -0.0668056 0.057303 0.0309268 Vertex 1690 -0.0644586 0.17449 -0.0225528 Vertex 1691 -0.069228 0.174798 -0.0204184 Vertex 1692 0.0514834 0.0766694 0.0180274 Vertex 1693 0.0194972 0.0714553 -0.0386869 Vertex 1694 -0.0654132 0.177111 -0.0173219 Vertex 1695 -0.0707972 0.122765 -0.00669792 Vertex 1696 -0.0472726 0.0563942 -0.0381489 Vertex 1697 0.0154508 0.161937 -0.0221545 Vertex 1698 -0.0449462 0.182508 -0.0144357 Vertex 1699 -0.0801296 0.161625 0.0127259 Vertex 1700 -0.0839213 0.164098 0.0118957 Vertex 1701 0.0772953 0.1132 -0.000226947 Vertex 1702 0.052845 0.152259 -0.0207889 Vertex 1703 -0.049145 0.105617 -0.0206973 Vertex 1704 -0.0984161 0.151027 -1.1584e-005 Vertex 1705 -0.0889075 0.181563 -0.000356979 Vertex 1706 0.0309166 0.0717197 -0.0406106 Vertex 1707 -0.0858338 0.161443 -0.0057384 Vertex 1708 -0.0523951 0.0887594 0.0205311 Vertex 1709 -0.0356035 0.180004 0.000774692 Vertex 1710 -0.0371508 0.179271 0.00184885 Vertex 1711 -0.0964405 0.17628 -0.00528996 Vertex 1712 -0.0966013 0.145522 0.00968126 Vertex 1713 -0.0138827 0.125807 -0.00776904 Vertex 1714 -0.0141091 0.122147 -0.00579852 Vertex 1715 -0.0664882 0.170394 0.00443598 Vertex 1716 -0.066229 0.159884 -0.0252764 Vertex 1717 -0.0678749 0.161222 -0.0240144 Vertex 1718 -0.017237 0.0824664 0.0132374 Vertex 1719 0.0458811 0.0835883 -0.0310865 Vertex 1720 0.058377 0.148361 -0.019967 Vertex 1721 0.0606193 0.145946 -0.0191191 Vertex 1722 0.0606116 0.144334 -0.0196607 Vertex 1723 0.0632354 0.141653 -0.018981 Vertex 1724 -0.0723043 0.13925 -0.0172613 Vertex 1725 0.0484719 0.0806912 -0.0057039 Vertex 1726 0.0440754 0.082538 -0.00634476 Vertex 1727 0.0467776 0.0853102 -0.00718154 Vertex 1728 -0.0819577 0.0669646 -0.0231772 Vertex 1729 0.0572981 0.0989663 -0.0101208 Vertex 1730 0.0457137 0.0666436 -0.0376333 Vertex 1731 -0.0804568 0.0704405 0.00982057 Vertex 1732 -0.0812017 0.161553 0.0116698 Vertex 1733 0.0346526 0.086749 0.0268112 Vertex 1734 0.00468944 0.142339 -0.0325768 Vertex 1735 -0.0209325 0.159657 -0.025308 Vertex 1736 -0.0630592 0.0741393 0.0399121 Vertex 1737 0.0243799 0.0823158 -0.0341532 Vertex 1738 -0.0209467 0.16476 -0.043707 Vertex 1739 -0.0156604 0.119535 -0.00549353 Vertex 1740 -0.0317701 0.117163 -0.0153728 Vertex 1741 0.0631617 0.106199 -0.0080955 Vertex 1742 0.090451 0.13479 -0.01324 Vertex 1743 0.0910245 0.133706 -0.00958132 Vertex 1744 0.0301001 0.157089 -0.0247259 Vertex 1745 0.0518602 0.150714 -0.0163965 Vertex 1746 -0.0437571 0.183999 -0.0380733 Vertex 1747 -0.0860615 0.0810842 0.00230224 Vertex 1748 -0.0822116 0.179269 0.00569155 Vertex 1749 -0.00608694 0.0690457 -0.00450845 Vertex 1750 -0.0878344 0.14773 0.019332 Vertex 1751 -0.0596611 0.0789063 0.0184726 Vertex 1752 -0.00764068 0.138726 -0.0233378 Vertex 1753 0.00143811 0.123644 -0.000559004 Vertex 1754 -0.0858155 0.165537 0.0126002 Vertex 1755 -0.0888124 0.180311 0.0038731 Vertex 1756 -0.00766111 0.118687 -0.0332316 Vertex 1757 0.0525283 0.0915086 -0.0106363 Vertex 1758 0.0461981 0.0887636 -0.00866556 Vertex 1759 -0.0552813 0.070208 -0.034212 Vertex 1760 0.0300533 0.108518 -0.00737636 Vertex 1761 -0.0243395 0.156601 -0.00335269 Vertex 1762 -0.0966332 0.178978 0.0010084 Vertex 1763 -0.0602919 0.163352 -0.0275561 Vertex 1764 -0.0815155 0.0896196 0.0100115 Vertex 1765 -0.0803033 0.109707 -0.00987776 Vertex 1766 -0.0552077 0.17306 0.00490531 Vertex 1767 -0.0714044 0.141463 -0.00121154 Vertex 1768 0.0600203 0.0538674 0.00898873 Vertex 1769 -0.0824919 0.0586545 -0.0210708 Vertex 1770 -0.079975 0.173007 0.0110728 Vertex 1771 -0.0657048 0.15127 0.00428561 Vertex 1772 -0.0558993 0.160759 -0.0110203 Vertex 1773 -0.0255802 0.0932704 0.00452312 Vertex 1774 -0.0243573 0.0993533 -0.000168585 Vertex 1775 -0.0276986 0.0955671 0.00134275 Vertex 1776 0.00193138 0.149053 -0.0155513 Vertex 1777 0.0650996 0.136443 -0.0193616 Vertex 1778 -0.0255938 0.115625 -0.0143664 Vertex 1779 -0.0193842 0.12587 -0.0157159 Vertex 1780 0.0927182 0.129775 -0.0115554 Vertex 1781 -0.0272244 0.0838018 -0.0321648 Vertex 1782 -0.0244521 0.0891956 -0.0322347 Vertex 1783 0.0109469 0.121859 -0.00461058 Vertex 1784 -0.0360511 0.0872494 0.0103181 Vertex 1785 -0.0878878 0.16043 -0.00566644 Vertex 1786 -0.0875959 0.150674 0.000124144 Vertex 1787 -0.0834979 0.150157 -0.00306904 Vertex 1788 0.0681629 0.0595928 0.0202669 Vertex 1789 0.00377063 0.150925 -0.0235991 Vertex 1790 -0.0178866 0.188704 -0.0272459 Vertex 1791 -0.0388738 0.152425 0.000728311 Vertex 1792 -0.101429 0.148281 -0.000199886 Vertex 1793 -0.0361508 0.144879 -0.0359733 Vertex 1794 -0.0380241 0.144425 -0.0323981 Vertex 1795 -0.0524864 0.156581 -0.000156984 Vertex 1796 -0.0239031 0.146649 -0.00823717 Vertex 1797 0.033222 0.0537597 -0.0144881 Vertex 1798 -0.0810995 0.0796838 0.0109734 Vertex 1799 -0.081379 0.0824373 0.0110699 Vertex 1800 0.0399442 0.0861703 -0.0352402 Vertex 1801 0.0534834 0.0986862 -0.0207805 Vertex 1802 0.0393388 0.114477 0.0142014 Vertex 1803 -0.091893 0.180599 0.0080553 Vertex 1804 -0.0477513 0.163154 -0.0329878 Vertex 1805 -0.0731592 0.11446 -0.017483 Vertex 1806 -0.0635079 0.0646914 0.0375471 Vertex 1807 0.0349547 0.0964893 0.0145006 Vertex 1808 0.0183754 0.063746 0.0193374 Vertex 1809 -0.099469 0.157746 0.00622787 Vertex 1810 -0.0225307 0.0812768 0.00959321 Vertex 1811 -0.0728857 0.170634 0.00700635 Vertex 1812 -0.088902 0.161931 -0.0118089 Vertex 1813 0.0332441 0.161085 -0.0203282 Vertex 1814 0.0337273 0.093528 0.0189315 Vertex 1815 0.0659632 0.0881752 0.00155498 Vertex 1816 -0.0301192 0.160648 -0.0404742 Vertex 1817 0.0634993 0.139407 -0.0166497 Vertex 1818 0.0651174 0.136768 -0.0166632 Vertex 1819 0.0420821 0.0780221 0.0195604 Vertex 1820 0.0432186 0.0791378 0.0190695 Vertex 1821 0.0430331 0.0791598 0.0187046 Vertex 1822 0.0437336 0.0796162 0.0193998 Vertex 1823 0.00780606 0.059764 0.0175301 Vertex 1824 -0.0671995 0.143453 0.00122602 Vertex 1825 -0.0679899 0.142881 -0.00356724 Vertex 1826 0.0288843 0.0840572 0.00202635 Vertex 1827 -0.062237 0.176848 -0.0238826 Vertex 1828 -0.0213595 0.0545461 0.0259295 Vertex 1829 -0.102349 0.149084 0.00359791 Vertex 1830 -0.0482586 0.175155 -0.0328719 Vertex 1831 -0.0361491 0.112283 -0.0151298 Vertex 1832 0.0840391 0.124556 -0.010664 Vertex 1833 -0.0678435 0.169519 0.00315454 Vertex 1834 0.0378963 0.099054 0.0244746 Vertex 1835 -0.0359768 0.0551775 0.000366477 Vertex 1836 -0.019694 0.159029 -0.0114607 Vertex 1837 -0.060846 0.14592 0.0040268 Vertex 1838 -0.0656885 0.143149 -0.00601704 Vertex 1839 -0.0716511 0.143151 0.00768781 Vertex 1840 -0.0809525 0.170021 -0.00818492 Vertex 1841 -0.0889929 0.17172 0.0129231 Vertex 1842 -0.0909824 0.173668 0.00918842 Vertex 1843 -0.03847 0.0583813 -0.0405987 Vertex 1844 -0.039361 0.0609165 -0.0400035 Vertex 1845 0.0762227 0.101809 -0.00989804 Vertex 1846 -0.0971631 0.145619 0.0205071 Vertex 1847 -0.0411647 0.0569202 0.0336541 Vertex 1848 -0.0431193 0.0650565 0.0325877 Vertex 1849 0.0405304 0.0909938 -0.0323925 Vertex 1850 -0.081259 0.0661007 -0.0389568 Vertex 1851 -0.0203154 0.156657 -0.0236599 Vertex 1852 -0.0200859 0.150099 -0.0231413 Vertex 1853 0.015641 0.0796788 -0.0285629 Vertex 1854 -0.0843337 0.0874573 -0.0149525 Vertex 1855 -0.025794 0.146928 -0.00298288 Vertex 1856 0.0370564 0.0549092 0.0272665 Vertex 1857 -0.080926 0.109382 -0.0049675 Vertex 1858 -0.0909391 0.163342 -0.00761733 Vertex 1859 -0.0899516 0.16237 -0.00576122 Vertex 1860 0.0555704 0.0651859 -0.0265086 Vertex 1861 0.0892102 0.134484 -0.00812001 Vertex 1862 -0.0955171 0.178538 0.00345085 Vertex 1863 -0.085451 0.0679775 -0.0303949 Vertex 1864 -0.0840044 0.0661336 -0.0319862 Vertex 1865 -0.0429003 0.0757963 -0.0294204 Vertex 1866 0.0275577 0.125608 -0.0252039 Vertex 1867 -0.056206 0.159032 -0.0279569 Vertex 1868 0.0274707 0.0660652 0.0114627 Vertex 1869 -0.0550648 0.0676216 -0.0352795 Vertex 1870 -0.0291299 0.135924 -0.0267989 Vertex 1871 -0.0556005 0.0756357 0.0271498 Vertex 1872 -0.0745783 0.163833 -0.00561268 Vertex 1873 -0.0449808 0.0591654 0.027175 Vertex 1874 -0.0716298 0.0550966 -0.00741943 Vertex 1875 -0.0656993 0.0538651 -0.00924454 Vertex 1876 -0.0645774 0.0537464 0.000613891 Vertex 1877 0.0673139 0.134542 -0.0144036 Vertex 1878 -0.027491 0.111248 -0.0155446 Vertex 1879 0.0233683 0.0610279 0.00758324 Vertex 1880 0.0183372 0.0615837 0.00557585 Vertex 1881 -0.0705136 0.166453 -0.0175916 Vertex 1882 -0.0684216 0.16844 -0.0192872 Vertex 1883 0.0635863 0.0894505 0.00250677 Vertex 1884 -0.0866167 0.0804764 -0.00846844 Vertex 1885 -0.0541253 0.142247 0.0084138 Vertex 1886 0.0353479 0.105587 0.0172244 Vertex 1887 -0.0794244 0.140136 -0.0121421 Vertex 1888 0.043067 0.0695174 -0.0385421 Vertex 1889 0.0419706 0.0926707 -0.00485744 Vertex 1890 0.0214932 0.152852 -0.0311354 Vertex 1891 0.0519989 0.0775121 -0.00272808 Vertex 1892 -0.0207595 0.0748847 -0.0359955 Vertex 1893 -0.0138291 0.0766579 0.0151102 Vertex 1894 0.0342094 0.0600677 0.0179844 Vertex 1895 0.0341704 0.0607498 0.015858 Vertex 1896 0.0347695 0.0594447 0.0187414 Vertex 1897 0.0346697 0.0595771 0.0190181 Vertex 1898 0.0342731 0.0603168 0.0177429 Vertex 1899 -0.0409845 0.138942 -0.0293339 Vertex 1900 -0.0871019 0.0584662 -0.0208215 Vertex 1901 -0.0548079 0.0871664 -0.0309858 Vertex 1902 -0.0271231 0.168196 -0.0194719 Vertex 1903 -0.023627 0.0534127 0.00993932 Vertex 1904 -0.045582 0.0646686 0.0237533 Vertex 1905 -0.0817028 0.0751153 0.0103769 Vertex 1906 0.0147741 0.0695268 -0.00731305 Vertex 1907 -0.00805453 0.0869395 -0.0311369 Vertex 1908 -0.0151063 0.0761919 -0.0296582 Vertex 1909 -0.0882597 0.140491 -0.00256689 Vertex 1910 0.0413617 0.159478 -0.020834 Vertex 1911 -0.0601752 0.0529106 -0.00982803 Vertex 1912 -0.0622446 0.0543652 -0.0152766 Vertex 1913 -0.0442317 0.176175 -0.0293868 Vertex 1914 -0.0210978 0.15178 -0.00540474 Vertex 1915 0.017918 0.057494 -0.0162508 Vertex 1916 -0.0485774 0.179872 -0.0360662 Vertex 1917 -0.0815169 0.165744 0.0134436 Vertex 1918 0.0163905 0.0802654 0.000712754 Vertex 1919 0.0766251 0.0668582 0.0175679 Vertex 1920 -0.0263072 0.0598077 -0.0286288 Vertex 1921 -0.0416625 0.133414 0.000231059 Vertex 1922 0.0244169 0.0598681 0.0218728 Vertex 1923 -0.0706517 0.0555274 0.00272135 Vertex 1924 0.0774037 0.0740892 0.0214193 Vertex 1925 0.0407778 0.154882 -0.0160833 Vertex 1926 -0.0334646 0.096732 -0.0153009 Vertex 1927 -0.0921236 0.179104 0.0124842 Vertex 1928 -0.087039 0.141986 0.018345 Vertex 1929 -0.0838235 0.140352 0.0202588 Vertex 1930 -0.0448003 0.105999 -0.0059001 Vertex 1931 -0.0500966 0.14643 -0.0295715 Vertex 1932 0.0090288 0.0609393 0.00838763 Vertex 1933 -0.0145407 0.137495 -0.0184295 Vertex 1934 -0.0147737 0.131167 -0.0158378 Vertex 1935 0.0314218 0.0576583 0.0152188 Vertex 1936 0.0309291 0.0581519 0.0145435 Vertex 1937 0.030684 0.0579507 0.0141167 Vertex 1938 0.0316561 0.057228 0.0145522 Vertex 1939 -0.00243318 0.130106 -0.0333495 Vertex 1940 -0.016115 0.116286 -0.0275766 Vertex 1941 -0.0234192 0.0926009 0.00519256 Vertex 1942 -0.0124365 0.184766 -0.0267393 Vertex 1943 -0.0267882 0.150431 -0.0422284 Vertex 1944 0.0594197 0.0780357 0.00221189 Vertex 1945 0.0668546 0.0548149 0.00913699 Vertex 1946 0.0663883 0.0551739 0.0055106 Vertex 1947 0.0372142 0.0866816 -0.0344625 Vertex 1948 -0.0873992 0.0848484 0.00176966 Vertex 1949 -0.0512974 0.153412 -0.0292798 Vertex 1950 -0.10454 0.144998 -0.0011406 Vertex 1951 -0.0997698 0.140819 -0.00596372 Vertex 1952 0.0162064 0.154786 -0.0118802 Vertex 1953 0.00502556 0.0571453 0.0249521 Vertex 1954 0.0339452 0.0617895 0.0176983 Vertex 1955 0.0555534 0.0980462 -0.0143328 Vertex 1956 -0.0515418 0.146188 0.00801326 Vertex 1957 -0.0619073 0.178776 -0.000827945 Vertex 1958 0.0190077 0.0588886 0.010297 Vertex 1959 -0.0275917 0.171677 -0.00340413 Vertex 1960 -0.0107511 0.0680641 0.00775485 Vertex 1961 0.0832913 0.12843 -0.0146395 Vertex 1962 0.0949465 0.136386 -0.00729224 Vertex 1963 0.0433652 0.141218 -0.0340883 Vertex 1964 0.0459459 0.139075 -0.0335542 Vertex 1965 -0.0122256 0.163528 -0.00730029 Vertex 1966 0.0263393 0.0870138 0.00867071 Vertex 1967 -0.0682749 0.0779849 0.0175386 Vertex 1968 -0.0441447 0.0569952 0.0346363 Vertex 1969 -0.0240422 0.108316 -0.0194812 Vertex 1970 0.0517109 0.0551195 -0.0124782 Vertex 1971 0.0524223 0.0554322 -0.0148641 Vertex 1972 0.0038567 0.055791 0.0113314 Vertex 1973 0.0383378 0.137526 -0.0346543 Vertex 1974 -0.0306268 0.180711 -0.00392305 Vertex 1975 -0.0793459 0.140653 0.00544339 Vertex 1976 -0.0871902 0.14348 0.0146524 Vertex 1977 -0.0878511 0.142502 0.00954388 Vertex 1978 0.00195327 0.0912218 -0.00397503 Vertex 1979 0.0378451 0.115176 0.0131738 Vertex 1980 0.071729 0.0792457 -0.000393393 Vertex 1981 -0.0560892 0.0534386 0.00676981 Vertex 1982 0.0589202 0.099563 -0.0110537 Vertex 1983 -0.075794 0.166865 -0.0138038 Vertex 1984 -0.108674 0.158173 0.0116687 Vertex 1985 -0.0554129 0.0895906 -0.0255665 Vertex 1986 -0.0826212 0.105352 -0.00206722 Vertex 1987 0.0460067 0.062457 -0.0317139 Vertex 1988 -0.0176357 0.0579452 -0.0187481 Vertex 1989 0.0383412 0.150478 -0.0063403 Vertex 1990 -0.0822349 0.150107 0.00964348 Vertex 1991 -0.0845193 0.0964981 0.00124099 Vertex 1992 0.0157063 0.0624076 0.00194099 Vertex 1993 0.0735298 0.0765106 -0.00167162 Vertex 1994 -0.0795691 0.0607738 -0.00502923 Vertex 1995 0.00771363 0.159058 -0.0199688 Vertex 1996 0.00708179 0.153345 -0.0234622 Vertex 1997 0.0507285 0.149616 -0.0239798 Vertex 1998 -0.0533067 0.0572847 -0.0230658 Vertex 1999 -0.0821522 0.0735465 0.00840073 Vertex 2000 -0.0449942 0.165695 -0.0359932 Vertex 2001 -0.0493258 0.163814 -0.0327768 Vertex 2002 -0.0877315 0.169135 -0.011672 Vertex 2003 -0.0911059 0.0599068 -0.0276394 Vertex 2004 -0.0906239 0.0590404 -0.0268863 Vertex 2005 0.0662522 0.105579 -0.00259532 Vertex 2006 -0.0235562 0.168153 -0.0227691 Vertex 2007 -0.0673559 0.153488 -0.00389221 Vertex 2008 -0.00378445 0.148109 -0.0185708 Vertex 2009 -0.0539778 0.0575164 -0.0305261 Vertex 2010 -0.0386906 0.0819956 -0.0282746 Vertex 2011 -0.0664844 0.142135 0.0118238 Vertex 2012 0.0748654 0.141217 -0.00699098 Vertex 2013 0.07855 0.138311 -0.00722151 Vertex 2014 -0.0905778 0.179846 0.000758846 Vertex 2015 -0.0356882 0.055966 -0.00724012 Vertex 2016 -0.0406655 0.0557037 -0.0133196 Vertex 2017 -0.0332367 0.0553529 -0.0131051 Vertex 2018 0.0198646 0.0750166 -0.0384912 Vertex 2019 0.0639892 0.0896966 0.0139105 Vertex 2020 -0.024334 0.157592 -0.0254575 Vertex 2021 -0.0633359 0.0969139 -0.0227816 Vertex 2022 -0.0278622 0.10238 -0.0107648 Vertex 2023 -0.0240327 0.111387 -0.0125662 Vertex 2024 0.0655951 0.0592643 -0.0171454 Vertex 2025 -0.0379939 0.173495 -0.0378554 Vertex 2026 -0.0310677 0.0726948 -0.0369808 Vertex 2027 0.0469365 0.102314 0.02112 Vertex 2028 0.0422205 0.0751323 -0.0331196 Vertex 2029 -0.0638015 0.0550111 0.0322269 Vertex 2030 0.0657976 0.0718506 -0.00864649 Vertex 2031 -0.0304027 0.0538634 -0.015311 Vertex 2032 -0.0294453 0.127736 -0.0131874 Vertex 2033 -0.0128566 0.131827 -0.0128899 Vertex 2034 -0.0415438 0.0994823 -0.0112419 Vertex 2035 0.0556065 0.0958586 -0.0102769 Vertex 2036 -0.0903632 0.150241 -0.000759695 Vertex 2037 -0.0795809 0.14026 -0.00527757 Vertex 2038 -0.0232317 0.175529 -0.0432954 Vertex 2039 -0.0380469 0.159522 -0.000139828 Vertex 2040 -0.0321938 0.154533 -0.0387622 Vertex 2041 -0.0492842 0.146114 0.00662762 Vertex 2042 -0.0304822 0.164977 -0.0410744 Vertex 2043 -0.0238353 0.105663 -0.00633735 Vertex 2044 -0.0737169 0.16814 -0.0122797 Vertex 2045 -0.072231 0.174272 -0.00179862 Vertex 2046 -0.0372573 0.177431 -0.0080966 Vertex 2047 0.0579104 0.115896 -0.0288685 Vertex 2048 -0.0415693 0.153713 0.00235162 Vertex 2049 -0.0612182 0.149805 0.00912766 Vertex 2050 -0.0988621 0.14568 -0.00360891 Vertex 2051 0.0188284 0.160766 -0.0213434 Vertex 2052 -0.0684664 0.176645 -0.0160781 Vertex 2053 -0.0655586 0.163948 -0.0244138 Vertex 2054 -0.038723 0.0742545 0.0265754 Vertex 2055 0.0429521 0.0793474 0.0186496 Vertex 2056 0.0427107 0.0787976 0.0184249 Vertex 2057 -0.0570543 0.176569 0.00247057 Vertex 2058 -0.0348847 0.167634 0.000111635 Vertex 2059 -0.0681224 0.0700545 -0.0239804 Vertex 2060 -0.0505664 0.139457 -0.0241541 Vertex 2061 -0.0621689 0.142372 0.0096505 Vertex 2062 0.0808687 0.0799807 0.00358311 Vertex 2063 -0.0945432 0.150605 -0.00270321 Vertex 2064 -0.0910914 0.149728 -0.0022014 Vertex 2065 0.0355836 0.122578 0.0060638 Vertex 2066 -0.0786437 0.0645801 -0.0163682 Vertex 2067 -0.0700438 0.172241 -0.000253163 Vertex 2068 -0.0569054 0.157334 -0.0139822 Vertex 2069 -0.030332 0.167734 -0.00245191 Vertex 2070 0.0367993 0.144026 -0.0344412 Vertex 2071 0.0271357 0.147387 -0.0349417 Vertex 2072 -0.0621373 0.0752766 0.0219191 Vertex 2073 -0.0848302 0.142555 0.0216202 Vertex 2074 0.0442127 0.0839694 0.0165807 Vertex 2075 -0.0707705 0.0613558 0.0116396 Vertex 2076 -0.0921112 0.142666 -0.00738849 Vertex 2077 -0.0816371 0.144215 -0.0120518 Vertex 2078 -0.00203126 0.130976 -0.00200499 Vertex 2079 -0.0685764 0.125324 -0.00869462 Vertex 2080 -0.00997078 0.138045 -0.0222538 Vertex 2081 0.00726131 0.0662342 0.012987 Vertex 2082 -0.0939725 0.170603 -0.00883338 Vertex 2083 -0.00836672 0.0695572 -0.00023653 Vertex 2084 -0.0300253 0.185872 -0.00381396 Vertex 2085 -0.0461301 0.172949 -0.0331185 Vertex 2086 -0.0442515 0.177068 -0.0343006 Vertex 2087 -0.0284066 0.172687 -0.0104354 Vertex 2088 0.0589426 0.0828823 0.00245011 Vertex 2089 -0.0629152 0.160815 0.00496322 Vertex 2090 -0.0427793 0.141182 -0.0303206 Vertex 2091 -0.0393091 0.111715 -0.0109053 Vertex 2092 -0.0341589 0.118517 -0.0128282 Vertex 2093 -0.0266019 0.124703 -0.0193285 Vertex 2094 0.0646578 0.0739934 0.000606845 Vertex 2095 -0.0149599 0.15244 -0.00700871 Vertex 2096 0.0720966 0.131671 -0.0205141 Vertex 2097 -0.0187285 0.0890197 0.00693518 Vertex 2098 -0.0322737 0.148283 -0.0321205 Vertex 2099 -0.0561145 0.144876 -0.00890592 Vertex 2100 -0.0408879 0.0946736 -0.00483086 Vertex 2101 -0.0538471 0.160943 -0.0034256 Vertex 2102 0.0177048 0.0655123 0.00851551 Vertex 2103 -0.0236157 0.147256 -0.00502697 Vertex 2104 0.034947 0.125173 -0.00659416 Vertex 2105 -0.0853426 0.0633341 -0.031102 Vertex 2106 0.0653259 0.0832151 0.0227665 Vertex 2107 -0.0859835 0.170477 -0.00860892 Vertex 2108 -0.081981 0.0993051 0.00659258 Vertex 2109 -0.0845849 0.151045 -0.00570845 Vertex 2110 -0.00327783 0.128337 -0.00176915 Vertex 2111 0.00237677 0.156032 -0.0203303 Vertex 2112 0.0571548 0.145717 -0.0160003 Vertex 2113 0.0616377 0.143809 -0.0170758 Vertex 2114 0.0628976 0.14177 -0.0167647 Vertex 2115 -0.040287 0.0613279 0.013521 Vertex 2116 0.0137968 0.160005 -0.0192899 Vertex 2117 -0.0743805 0.142163 0.0144534 Vertex 2118 -0.0176931 0.0679033 0.0202963 Vertex 2119 0.0371278 0.0747216 0.013147 Vertex 2120 0.0525515 0.062031 0.0241532 Vertex 2121 0.0549182 0.116079 -0.00382893 Vertex 2122 -0.0672795 0.0729227 -0.0249686 Vertex 2123 0.0243312 0.105788 -0.0194391 Vertex 2124 -0.061541 0.101461 -0.0227108 Vertex 2125 -0.0544298 0.0997661 -0.0207688 Vertex 2126 -0.0378274 0.0633677 -0.0392009 Vertex 2127 0.0387452 0.0578169 -0.0453318 Vertex 2128 -0.0770447 0.174547 0.00111681 Vertex 2129 -0.0188911 0.0575374 0.0257787 Vertex 2130 -0.0160927 0.0602484 0.025351 Vertex 2131 -0.0442127 0.0730317 0.0308779 Vertex 2132 -0.0253814 0.0568118 -0.0349491 Vertex 2133 -0.0723667 0.162689 -0.019468 Vertex 2134 0.0571134 0.068666 -0.0079654 Vertex 2135 -0.0732747 0.176029 -0.015365 Vertex 2136 -0.0509154 0.097826 -0.0182027 Vertex 2137 -0.0631328 0.162167 0.010593 Vertex 2138 -0.0296092 0.120187 -0.0179688 Vertex 2139 -0.0331649 0.118679 -0.0185518 Vertex 2140 -0.0319514 0.122284 -0.0201094 Vertex 2141 0.0727314 0.147957 -0.0087097 Vertex 2142 -0.0138821 0.0638205 0.0226247 Vertex 2143 -0.0494049 0.144382 0.00420948 Vertex 2144 -0.0283132 0.149035 -0.036427 Vertex 2145 -0.0280136 0.14964 -0.0349286 Vertex 2146 0.00948971 0.0578135 0.00181402 Vertex 2147 0.00694148 0.0567219 0.00202091 Vertex 2148 -0.038227 0.175381 -0.00145936 Vertex 2149 -0.0435665 0.146939 0.00354835 Vertex 2150 0.00334264 0.116726 -0.000376469 Vertex 2151 -0.0949945 0.148473 0.0199847 Vertex 2152 -0.0766354 0.0749107 -0.0203556 Vertex 2153 -0.0299287 0.160878 -0.0310393 Vertex 2154 -0.0646326 0.139485 -0.0220915 Vertex 2155 0.0683597 0.130623 -0.0178439 Vertex 2156 -0.0619901 0.0882741 -0.0340546 Vertex 2157 0.0483497 0.15344 -0.0172613 Vertex 2158 -0.066997 0.06231 -0.0302717 Vertex 2159 0.0597204 0.0545856 -0.0233261 Vertex 2160 0.0562503 0.076421 0.0225387 Vertex 2161 -0.0218887 0.0564604 0.00729027 Vertex 2162 -0.0252684 0.163353 -0.0202523 Vertex 2163 0.077155 0.0704635 0.00200588 Vertex 2164 -0.0299132 0.170366 -0.0404879 Vertex 2165 -0.0433961 0.0539652 -0.0288593 Vertex 2166 -0.085395 0.174895 0.0104659 Vertex 2167 0.0903858 0.140068 -0.0105753 Vertex 2168 0.0530034 0.0790614 -0.000440263 Vertex 2169 -0.028926 0.0535388 -0.0218174 Vertex 2170 0.018761 0.155702 -0.0253979 Vertex 2171 0.0196385 0.158037 -0.0240126 Vertex 2172 0.0201807 0.0674787 -0.0298208 Vertex 2173 -0.0346791 0.0740907 0.0212923 Vertex 2174 -0.00152059 0.0758047 -0.0105868 Vertex 2175 -0.0484243 0.135522 -0.0262972 Vertex 2176 -0.0544572 0.136749 -0.0211834 Vertex 2177 -0.013656 0.0901314 0.00835248 Vertex 2178 -0.0914165 0.151032 0.00106019 Vertex 2179 0.0353775 0.0634646 -0.0481744 Vertex 2180 -0.022457 0.166397 -0.00484499 Vertex 2181 -0.0133781 0.054028 0.0189731 Vertex 2182 -0.0530308 0.142157 -0.027661 Vertex 2183 -0.0618284 0.0578348 0.0356379 Vertex 2184 -0.0288685 0.148775 -0.038955 Vertex 2185 -0.065765 0.153716 -0.00269174 Vertex 2186 -0.0668447 0.153469 -0.00418083 Vertex 2187 0.0118995 0.0764479 -0.0135257 Vertex 2188 -0.0907908 0.163475 -0.00396169 Vertex 2189 -0.0911244 0.168453 -0.0132968 Vertex 2190 0.034541 0.05823 0.0135216 Vertex 2191 -0.0431575 0.102574 -0.00817468 Vertex 2192 0.029581 0.147794 -0.00363179 Vertex 2193 0.0746551 0.145644 -0.00894487 Vertex 2194 -0.0666049 0.167365 -0.0228538 Vertex 2195 -0.0979953 0.144301 0.00311481 Vertex 2196 0.0676487 0.0587465 -0.0153486 Vertex 2197 0.00809325 0.1086 -0.027827 Vertex 2198 -0.024098 0.164924 -0.0435694 Vertex 2199 -0.02638 0.160561 -0.0425081 Vertex 2200 -0.0096421 0.0969431 -0.0331869 Vertex 2201 -0.0178443 0.0882527 -0.0322363 Vertex 2202 -0.0910778 0.152936 0.0161288 Vertex 2203 -0.0850476 0.151358 0.013599 Vertex 2204 -0.093667 0.170001 0.000382109 Vertex 2205 -0.0589778 0.0540702 -0.00337839 Vertex 2206 -0.0618314 0.156692 -0.0206315 Vertex 2207 -0.0870693 0.167663 0.0126104 Vertex 2208 -0.0233435 0.100206 -0.0276118 Vertex 2209 -0.0662754 0.0603567 -0.0202656 Vertex 2210 -0.0134716 0.134945 -0.0167642 Vertex 2211 0.0474394 0.0796303 -0.00465647 Vertex 2212 -0.0444817 0.165051 0.00349334 Vertex 2213 -0.012879 0.0649494 0.00678163 Vertex 2214 0.0423404 0.0688411 0.0190735 Vertex 2215 -0.0489909 0.105882 0.00494845 Vertex 2216 -0.0655367 0.175773 -0.0207513 Vertex 2217 0.036195 0.0771381 0.00729742 Vertex 2218 -0.0569222 0.144437 -0.0266396 Vertex 2219 -0.0540151 0.0561861 0.0105647 Vertex 2220 -0.0781338 0.058658 -0.0370775 Vertex 2221 0.0818241 0.151149 -0.00705669 Vertex 2222 -0.0259058 0.170546 -0.00409827 Vertex 2223 -0.025652 0.0586946 -0.039763 Vertex 2224 0.0668803 0.0695471 -0.0100172 Vertex 2225 -0.0327308 0.184894 -0.00232866 Vertex 2226 -0.0848872 0.0974993 -0.0107742 Vertex 2227 0.0594254 0.104885 -0.00985137 Vertex 2228 0.0369043 0.0949609 0.0229084 Vertex 2229 0.032866 0.0562657 -0.0501424 Vertex 2230 -0.0600738 0.181274 -0.0100278 Vertex 2231 -0.052707 0.154467 0.00532241 Vertex 2232 -0.0495992 0.152014 0.00488696 Vertex 2233 0.0293591 0.0535772 0.00554129 Vertex 2234 -0.0782808 0.0695062 -0.0287812 Vertex 2235 -0.0875431 0.149214 -0.00219575 Vertex 2236 -0.080415 0.150876 0.0088775 Vertex 2237 0.0724593 0.0542595 -0.00672267 Vertex 2238 -0.0811771 0.0941695 0.00933428 Vertex 2239 0.0780542 0.11713 -0.0103976 Vertex 2240 0.076797 0.113168 -0.0132881 Vertex 2241 0.0486008 0.13862 -0.0326693 Vertex 2242 0.0525341 0.0658569 0.0244624 Vertex 2243 0.0478583 0.0874395 -0.0129419 Vertex 2244 0.0400962 0.153609 -0.0118941 Vertex 2245 -0.0693182 0.139864 -0.0177534 Vertex 2246 -0.0119151 0.174157 -0.0116315 Vertex 2247 -0.0149568 0.0589735 -0.000645551 Vertex 2248 -0.0193628 0.055026 -0.000769646 Vertex 2249 -0.0162925 0.05578 -0.00562405 Vertex 2250 -0.0407879 0.109868 -0.0164157 Vertex 2251 -0.0680172 0.179573 -0.00706986 Vertex 2252 -0.0225485 0.139575 -0.0200393 Vertex 2253 -0.0715641 0.121321 -0.0120293 Vertex 2254 -0.0666312 0.151928 -0.0171131 Vertex 2255 0.0222086 0.15888 -0.0189675 Vertex 2256 0.074487 0.0658543 -0.000993285 Vertex 2257 0.0175559 0.136359 -0.0352788 Vertex 2258 -0.0316616 0.150034 -0.0398098 Vertex 2259 0.0302452 0.0673124 -0.0335659 Vertex 2260 -0.0462769 0.145828 0.00525237 Vertex 2261 0.0396874 0.0953458 0.0307768 Vertex 2262 -0.087621 0.0587447 -0.0349258 Vertex 2263 -0.0858132 0.0604422 -0.0226322 Vertex 2264 0.0495844 0.130114 -0.0334984 Vertex 2265 0.0539645 0.124018 -0.0322321 Vertex 2266 0.0165276 0.132994 -0.00269916 Vertex 2267 0.0414371 0.105414 -0.0345112 Vertex 2268 0.0375859 0.0941048 -0.0346462 Vertex 2269 -0.0215169 0.174685 -0.0073863 Vertex 2270 -0.0260731 0.133125 -0.0234073 Vertex 2271 -0.0507421 0.146453 0.000775062 Vertex 2272 -0.0469834 0.0570064 0.0277724 Vertex 2273 -0.0667555 0.103577 -0.0224611 Vertex 2274 -0.079404 0.0682721 -0.0262676 Vertex 2275 -0.0572241 0.13368 -0.0191681 Vertex 2276 -0.0490228 0.159709 -0.000372335 Vertex 2277 0.000884725 0.149312 -0.0232325 Vertex 2278 0.0622827 0.0599282 0.0228669 Vertex 2279 -0.0224642 0.15362 -0.0257611 Vertex 2280 -0.0201773 0.150378 -0.024398 Vertex 2281 0.0567216 0.138073 -0.0273926 Vertex 2282 0.0562539 0.140547 -0.0264065 Vertex 2283 -0.0652481 0.150204 0.00930762 Vertex 2284 -0.0864606 0.15121 -0.00707881 Vertex 2285 -0.0735968 0.0560166 -0.00598025 Vertex 2286 0.0215363 0.12562 -0.0115193 Vertex 2287 0.020368 0.128078 -0.00825669 Vertex 2288 -0.0860115 0.170668 0.000876099 Vertex 2289 0.0377442 0.14709 -0.0335991 Vertex 2290 0.0262093 0.151213 -0.0331519 Vertex 2291 0.029646 0.151466 -0.0326568 Vertex 2292 0.0301412 0.0556768 -0.0494789 Vertex 2293 0.0418727 0.150688 -0.0301504 Vertex 2294 -0.0125824 0.109672 0.00111476 Vertex 2295 -0.0763566 0.148083 0.0130851 Vertex 2296 -0.0810844 0.148131 0.0152436 Vertex 2297 0.0571274 0.0547895 0.00652962 Vertex 2298 -0.0457296 0.173872 0.0015919 Vertex 2299 -0.106057 0.156957 0.00942568 Vertex 2300 -0.0614406 0.167381 0.00832638 Vertex 2301 -0.0585222 0.134731 -0.0116355 Vertex 2302 -0.0548584 0.137732 -0.00863884 Vertex 2303 0.012342 0.058169 0.0175312 Vertex 2304 0.0309822 0.0555037 0.0221838 Vertex 2305 -0.0921071 0.150351 0.000104297 Vertex 2306 0.0526224 0.0790484 0.00218939 Vertex 2307 -0.0687703 0.176337 0.000237864 Vertex 2308 -0.0235324 0.11392 -0.0174052 Vertex 2309 0.0120157 0.0746934 -0.0120256 Vertex 2310 -0.0586354 0.144896 0.0107061 Vertex 2311 -0.0387919 0.0630908 0.0145523 Vertex 2312 0.0490495 0.0552769 -0.00148107 Vertex 2313 0.0440897 0.0566333 0.000957919 Vertex 2314 0.018648 0.0588683 -0.0057464 Vertex 2315 -0.0848937 0.164886 0.0109269 Vertex 2316 0.0363648 0.0908254 0.0119439 Vertex 2317 -0.00791301 0.0723976 -0.0224102 Vertex 2318 0.0853731 0.132578 -0.0154253 Vertex 2319 -0.0940696 0.179908 0.00512936 Vertex 2320 -0.0508181 0.0873059 -0.0244503 Vertex 2321 -0.00174352 0.146149 -0.0236099 Vertex 2322 0.0373364 0.104859 0.00877596 Vertex 2323 -0.00549805 0.149805 -0.0193801 Vertex 2324 -0.0335764 0.0530681 -0.0208707 Vertex 2325 -0.0347142 0.176284 -0.0234156 Vertex 2326 0.0267936 0.123634 -0.0180916 Vertex 2327 -0.0775252 0.0691193 0.0119583 Vertex 2328 -0.0815357 0.0667664 -0.035908 Vertex 2329 -0.0750701 0.0679531 -0.0328122 Vertex 2330 -0.0373293 0.0969294 -0.0125669 Vertex 2331 0.0287562 0.0777539 -0.0401301 Vertex 2332 -0.0289591 0.0537576 0.0177614 Vertex 2333 -0.0474727 0.0638439 0.0332191 Vertex 2334 0.0841076 0.0874137 0.00860015 Vertex 2335 0.0270302 0.132515 -0.0328834 Vertex 2336 -0.0664132 0.0834617 0.0162627 Vertex 2337 -0.0965081 0.174174 -0.00745301 Vertex 2338 -0.0182045 0.157475 -0.00929737 Vertex 2339 0.0591239 0.108107 -0.0200329 Vertex 2340 -0.0880016 0.149256 -0.00751155 Vertex 2341 -0.049091 0.0611832 0.0168306 Vertex 2342 -0.041579 0.149024 0.00271377 Vertex 2343 -0.0603926 0.164981 0.0109117 Vertex 2344 -0.0220407 0.181837 -0.0213933 Vertex 2345 0.0692666 0.098705 0.0130441 Vertex 2346 0.083584 0.101262 0.00453765 Vertex 2347 -0.0567333 0.155538 -0.0244444 Vertex 2348 -0.0217957 0.11379 -0.0115177 Vertex 2349 0.0636811 0.122245 -0.0200177 Vertex 2350 -0.0357463 0.0864218 -0.026928 Vertex 2351 -0.0340158 0.0911446 -0.0237696 Vertex 2352 -0.0329607 0.0869795 -0.0280593 Vertex 2353 0.0644489 0.134761 -0.0161807 Vertex 2354 0.0323688 0.0625388 0.0225539 Vertex 2355 0.0663031 0.0733041 -0.000764408 Vertex 2356 -0.00346689 0.0935669 -0.0312595 Vertex 2357 0.0734726 0.0988053 -0.00828714 Vertex 2358 0.0378158 0.117678 -0.0316941 Vertex 2359 0.0419594 0.119588 -0.0339946 Vertex 2360 -0.04352 0.0969886 -0.00592567 Vertex 2361 -0.0476785 0.142344 -0.0279665 Vertex 2362 -0.0411474 0.0595648 -0.0397103 Vertex 2363 -0.0334377 0.100213 -0.0134636 Vertex 2364 0.0832638 0.129961 -0.0153998 Vertex 2365 -0.0418743 0.119102 -0.025084 Vertex 2366 -0.0326857 0.128974 -0.0254284 Vertex 2367 0.0390162 0.102825 -0.00220253 Vertex 2368 -0.00113152 0.153247 -0.0203062 Vertex 2369 -0.091603 0.170714 0.00237322 Vertex 2370 -0.0559325 0.161379 -0.0295847 Vertex 2371 0.0413058 0.0672884 -0.0398611 Vertex 2372 -0.0209702 0.0893892 -0.0340926 Vertex 2373 -0.0522864 0.180793 -0.00874546 Vertex 2374 0.0805441 0.127742 -0.0107836 Vertex 2375 0.0229177 0.156797 -0.0246962 Vertex 2376 0.0343396 0.0528357 0.00673084 Vertex 2377 -0.0844454 0.16582 0.0135264 Vertex 2378 -0.0452311 0.0574169 0.0283507 Vertex 2379 0.00314845 0.128229 -0.00102871 Vertex 2380 -0.0921071 0.142994 0.0231729 Vertex 2381 0.0628944 0.114535 -0.0176609 Vertex 2382 0.0643591 0.119339 -0.0184202 Vertex 2383 -0.0232648 0.172829 -0.0423071 Vertex 2384 0.0456742 0.0826557 0.0241533 Vertex 2385 0.0428445 0.0776217 0.0198848 Vertex 2386 0.0434995 0.0782851 0.0240829 Vertex 2387 0.0189678 0.0559866 -0.0129367 Vertex 2388 0.0324189 0.0877694 0.0222159 Vertex 2389 0.0592575 0.0760023 0.00140284 Vertex 2390 -0.00707821 0.083036 0.00412132 Vertex 2391 -0.0589757 0.0960004 0.0146682 Vertex 2392 -0.00394977 0.194679 -0.0307951 Vertex 2393 -0.0181508 0.105075 -0.0307228 Vertex 2394 -0.0126242 0.110608 -0.0324986 Vertex 2395 -0.0155316 0.129432 -0.0204986 Vertex 2396 -0.0131763 0.133166 -0.0214078 Vertex 2397 0.0156719 0.0599352 0.00394984 Vertex 2398 -0.0818592 0.0690033 -0.0140709 Vertex 2399 0.0222714 0.0640501 -0.0438371 Vertex 2400 -0.0300874 0.165464 -0.00245493 Vertex 2401 -0.0213544 0.0656872 0.0201665 Vertex 2402 0.00521391 0.0607981 0.0234453 Vertex 2403 0.0700657 0.0704236 -0.00570726 Vertex 2404 -0.0850332 0.0996257 -0.000674899 Vertex 2405 0.0255752 0.161039 -0.0206107 Vertex 2406 0.0101334 0.115294 -0.0302024 Vertex 2407 -0.0267431 0.130244 -0.0170491 Vertex 2408 -0.0304041 0.123854 -0.0145244 Vertex 2409 -0.0158972 0.0531608 0.017762 Vertex 2410 0.0328221 0.080238 0.00300978 Vertex 2411 0.0251957 0.159881 -0.0225861 Vertex 2412 -0.0971247 0.145647 0.0168348 Vertex 2413 0.0332485 0.101684 0.0190203 Vertex 2414 -0.0554744 0.155904 -0.00359801 Vertex 2415 0.0315042 0.114541 -0.0258866 Vertex 2416 -0.0766156 0.0603467 0.00422384 Vertex 2417 0.0187489 0.120738 -0.0175617 Vertex 2418 0.0341147 0.0647188 0.0171035 Vertex 2419 0.0641983 0.101483 -0.00487311 Vertex 2420 -0.0854629 0.0598792 -0.0303265 Vertex 2421 0.0454109 0.10013 0.0257956 Vertex 2422 -0.0464586 0.137466 -0.00112909 Vertex 2423 -0.042357 0.0936918 0.00430979 Vertex 2424 -0.0551299 0.17674 -0.0251977 Vertex 2425 -0.00950473 0.174376 -0.0112239 Vertex 2426 0.00307541 0.138612 -0.00319564 Vertex 2427 0.0356623 0.079243 0.0026983 Vertex 2428 -0.00746698 0.0674738 -0.0144811 Vertex 2429 0.0476112 0.105185 -0.0329956 Vertex 2430 -0.0997226 0.153303 0.00942642 Vertex 2431 0.00601963 0.0566324 0.0105803 Vertex 2432 -0.0264559 0.167298 -0.0392811 Vertex 2433 0.0226843 0.0647673 0.0109549 Vertex 2434 0.0442235 0.0735092 0.0170952 Vertex 2435 -0.0241916 0.0557957 0.0052072 Vertex 2436 0.0144433 0.0895359 -0.0146958 Vertex 2437 -0.040741 0.172205 0.00144721 Vertex 2438 -0.0111191 0.0708041 0.017513 Vertex 2439 -0.0520113 0.139307 -0.00531297 Vertex 2440 -0.0320166 0.196381 -0.0226478 Vertex 2441 -0.0692246 0.142251 0.0119567 Vertex 2442 0.0224412 0.0632523 0.00641102 Vertex 2443 0.0538084 0.0967954 -0.0145005 Vertex 2444 0.0572309 0.144817 -0.0219904 Vertex 2445 0.036681 0.15861 -0.0184349 Vertex 2446 3.11492e-005 0.138286 -0.0317573 Vertex 2447 0.0374956 0.0568466 -0.0443427 Vertex 2448 0.0303252 0.0761486 0.017816 Vertex 2449 -0.0753961 0.097759 0.011869 Vertex 2450 -0.0166608 0.110498 -0.0295984 Vertex 2451 -0.0157491 0.113257 -0.0297889 Vertex 2452 -0.0373329 0.174288 -0.0338179 Vertex 2453 -0.0308765 0.173169 -0.0355126 Vertex 2454 0.0346043 0.0689908 -0.0423418 Vertex 2455 0.0268225 0.0783069 0.0171812 Vertex 2456 -0.10501 0.14328 0.00190608 Vertex 2457 -0.102806 0.141792 0.000452071 Vertex 2458 -0.0200493 0.0712437 0.0171545 Vertex 2459 0.0322602 0.057878 -0.0501877 Vertex 2460 0.0340204 0.101431 0.02016 Vertex 2461 0.0693652 0.0909034 -0.000793979 Vertex 2462 -0.0831002 0.16126 -0.00783509 Vertex 2463 0.0306297 0.120804 -0.0169445 Vertex 2464 -0.074769 0.173522 0.000911793 Vertex 2465 -0.0273593 0.168242 -0.00412163 Vertex 2466 -0.0468089 0.0603692 0.0343034 Vertex 2467 0.0709599 0.0616935 0.0202645 Vertex 2468 0.082204 0.102426 -0.00434404 Vertex 2469 -0.0547041 0.0552263 -0.00119719 Vertex 2470 -0.0832637 0.106322 -0.00525266 Vertex 2471 -0.0676263 0.116918 0.00565398 Vertex 2472 -0.0825578 0.0869465 0.00916803 Vertex 2473 -0.0699769 0.0567261 -0.0137201 Vertex 2474 -0.0374486 0.141681 0.00207092 Vertex 2475 0.0483109 0.0771078 0.0080037 Vertex 2476 0.0252878 0.0848665 -0.00200663 Vertex 2477 0.0263285 0.0527065 -0.0128111 Vertex 2478 -0.0654899 0.144873 0.00434841 Vertex 2479 -0.0914825 0.172631 -0.00586871 Vertex 2480 0.050772 0.0887784 -0.0107848 Vertex 2481 -0.0897818 0.173559 -0.0060012 Vertex 2482 0.0466944 0.0598596 -0.0234731 Vertex 2483 -0.0760432 0.0802251 -0.0215346 Vertex 2484 -0.0561006 0.129622 0.000137715 Vertex 2485 0.00483016 0.15439 -0.0217637 Vertex 2486 0.00126551 0.0894454 -0.025485 Vertex 2487 -0.0586448 0.157065 -0.0254329 Vertex 2488 0.00884352 0.0614517 0.0255844 Vertex 2489 -0.0448676 0.124447 -0.0270767 Vertex 2490 -0.0460867 0.121606 -0.0263429 Vertex 2491 -0.022953 0.131574 -0.0202777 Vertex 2492 -0.0262399 0.125409 -0.0184183 Vertex 2493 0.0506546 0.14295 -0.0305031 Vertex 2494 0.0587019 0.128276 -0.0282334 Vertex 2495 0.0596316 0.124476 -0.0272144 Vertex 2496 -0.0643733 0.0733897 0.0369237 Vertex 2497 0.0125692 0.111032 -0.0194755 Vertex 2498 -0.0304259 0.0557408 -0.0243838 Vertex 2499 -0.0213595 0.124145 -0.0160017 Vertex 2500 0.000561332 0.114373 -0.0348437 Vertex 2501 0.0670244 0.127763 -0.0186747 Vertex 2502 0.0712058 0.14186 -0.0117834 Vertex 2503 0.0509978 0.0897097 -0.00923921 Vertex 2504 0.0200762 0.0596755 -0.0235611 Vertex 2505 -0.0732165 0.0645443 -0.0373278 Vertex 2506 -0.0755229 0.0606586 -0.0373443 Vertex 2507 0.0658975 0.0985451 -0.00421701 Vertex 2508 0.064793 0.0942181 -0.00208666 Vertex 2509 0.0648703 0.0946882 -0.00128423 Vertex 2510 0.0647252 0.0941757 -0.00244836 Vertex 2511 0.0645936 0.0937055 -0.00199787 Vertex 2512 0.0647912 0.09446 -0.00351954 Vertex 2513 0.0314597 0.123258 -0.0117627 Vertex 2514 -0.0761342 0.11382 -0.0140267 Vertex 2515 0.0644026 0.139308 -0.0179679 Vertex 2516 -0.0816377 0.0666808 -0.0187537 Vertex 2517 -0.0108622 0.0592728 0.0106158 Vertex 2518 0.0210809 0.0644753 -0.0437685 Vertex 2519 0.0203942 0.0637223 -0.0431545 Vertex 2520 -0.0123634 0.0889359 -0.0323485 Vertex 2521 -0.0861356 0.149146 -0.00172704 Vertex 2522 -0.0225175 0.148973 -0.0182188 Vertex 2523 -0.100244 0.149476 0.0142379 Vertex 2524 0.0360418 0.106183 -0.0338468 Vertex 2525 -0.0174818 0.132506 -0.0184443 Vertex 2526 0.013161 0.0652544 0.00231605 Vertex 2527 -0.0240384 0.160187 -0.0393835 Vertex 2528 0.00963166 0.103833 -0.0140002 Vertex 2529 -0.0651098 0.0805484 0.016211 Vertex 2530 0.0482041 0.0840299 -0.00821188 Vertex 2531 -0.0638922 0.170418 -0.0255055 Vertex 2532 -0.0440559 0.090759 -0.0153926 Vertex 2533 0.0457121 0.0839721 -0.0147184 Vertex 2534 -0.0531344 0.143788 -0.0178419 Vertex 2535 -0.0803952 0.165952 0.0146535 Vertex 2536 -0.0387159 0.185188 -0.014942 Vertex 2537 -0.0372304 0.18633 -0.0225915 Vertex 2538 -0.0143456 0.105634 0.00188677 Vertex 2539 -0.056563 0.0753304 -0.0361279 Vertex 2540 -0.0481736 0.0768906 0.0313354 Vertex 2541 0.0112354 0.0640359 0.0191954 Vertex 2542 -0.0658697 0.143757 -0.0169284 Vertex 2543 -0.0778348 0.140619 0.00280494 Vertex 2544 -0.075656 0.140778 0.00196221 Vertex 2545 -0.0802424 0.107231 -0.0135018 Vertex 2546 -0.0252595 0.0838807 0.0094952 Vertex 2547 -0.0274117 0.0794588 0.0110035 Vertex 2548 -0.0166962 0.183362 -0.0285983 Vertex 2549 -0.0573104 0.169658 -0.0283862 Vertex 2550 0.062854 0.107984 -0.00868648 Vertex 2551 0.0337594 0.0983964 0.0215807 Vertex 2552 -0.0100113 0.0637992 -0.00221923 Vertex 2553 -0.0286459 0.0621947 -0.0405111 Vertex 2554 -0.0395463 0.0557792 -0.0125963 Vertex 2555 -0.0866097 0.0882531 -0.010059 Vertex 2556 0.0396874 0.0641766 -0.0282961 Vertex 2557 0.0445988 0.0595995 -0.0219034 Vertex 2558 0.0301226 0.0736263 0.0181491 Vertex 2559 0.0289291 0.0686198 0.0144312 Vertex 2560 -0.065381 0.0787648 -0.0339132 Vertex 2561 0.0534009 0.0736259 -0.0220511 Vertex 2562 0.0695241 0.0534145 -0.00503462 Vertex 2563 0.0867922 0.139503 -0.00670142 Vertex 2564 -0.0214526 0.110375 -0.0232216 Vertex 2565 0.0434967 0.0730134 -0.0329011 Vertex 2566 0.080198 0.0891514 -0.00199631 Vertex 2567 0.0307387 0.123459 -0.0246404 Vertex 2568 -0.0375524 0.0619175 0.0162217 Vertex 2569 -0.0862059 0.0908638 -0.00999217 Vertex 2570 0.0741021 0.116262 -0.00149993 Vertex 2571 0.0705175 0.119443 -0.00385782 Vertex 2572 -0.0314883 0.0673354 -0.0382688 Vertex 2573 0.0420576 0.078336 0.0140049 Vertex 2574 0.0425649 0.0825769 0.0155739 Vertex 2575 0.0429273 0.0821849 0.0158554 Vertex 2576 0.0427392 0.0819808 0.0158353 Vertex 2577 0.042484 0.0817089 0.0158319 Vertex 2578 0.0423659 0.0815693 0.0158297 Vertex 2579 0.0424211 0.0816357 0.0158288 Vertex 2580 0.0422348 0.0814059 0.0158199 Vertex 2581 0.0427657 0.0820343 0.015865 Vertex 2582 0.0415363 0.0813468 0.0148162 Vertex 2583 0.030165 0.0653614 -0.038052 Vertex 2584 -0.0252036 0.117226 -0.0159813 Vertex 2585 -0.0261558 0.113362 -0.0159779 Vertex 2586 0.0832698 0.146195 -0.011916 Vertex 2587 0.0797432 0.125685 -0.0152861 Vertex 2588 0.0714846 0.0917745 0.0187702 Vertex 2589 -0.0415864 0.0602303 0.0348506 Vertex 2590 -0.025838 0.0891644 -0.0307005 Vertex 2591 0.00535226 0.0574857 0.0140269 Vertex 2592 -0.0220468 0.149626 -0.00477184 Vertex 2593 0.0231245 0.0561164 0.0214984 Vertex 2594 -0.0145942 0.165577 -0.00764482 Vertex 2595 -0.0369358 0.116476 -0.0189369 Vertex 2596 -0.0552696 0.155268 0.00529139 Vertex 2597 0.0063442 0.116145 -0.0335538 Vertex 2598 -0.0244814 0.111051 -0.017481 Vertex 2599 -0.0612962 0.178637 -0.0176395 Vertex 2600 -0.0464225 0.1665 0.00507856 Vertex 2601 -0.014867 0.0939399 -0.0327694 Vertex 2602 0.0282524 0.1036 -0.0305146 Vertex 2603 -0.0791139 0.0828668 0.0121787 Vertex 2604 -0.0385562 0.0689355 -0.0353061 Vertex 2605 -0.0564625 0.143264 0.00691305 Vertex 2606 -0.0416111 0.1622 0.00185672 Vertex 2607 -0.0704079 0.168963 -0.0183309 Vertex 2608 -0.02301 0.165671 -0.0238238 Vertex 2609 0.0297135 0.135063 -0.0339386 Vertex 2610 0.0314657 0.136988 -0.0344805 Vertex 2611 0.030158 0.141133 -0.0353966 Vertex 2612 -0.0260738 0.135941 -0.0244884 Vertex 2613 -0.0216488 0.138992 -0.0244546 Vertex 2614 0.0447269 0.150465 -0.00929059 Vertex 2615 0.0835498 0.143481 -0.00591632 Vertex 2616 0.0217263 0.162163 -0.0203821 Vertex 2617 0.0225184 0.0529396 -0.00985597 Vertex 2618 -0.0646568 0.0705319 -0.0315926 Vertex 2619 0.0495677 0.0545348 -0.0129904 Vertex 2620 -0.0735015 0.0800099 0.0147904 Vertex 2621 -0.100819 0.158769 0.011808 Vertex 2622 -0.0450543 0.0876715 0.0205668 Vertex 2623 -0.013671 0.0736993 0.01846 Vertex 2624 0.0345394 0.0644461 -0.0454246 Vertex 2625 0.0777897 0.144952 -0.0143656 Vertex 2626 -0.0220634 0.0719688 -0.0363893 Vertex 2627 0.0363034 0.11054 0.00648848 Vertex 2628 0.000178253 0.0798023 -0.0103691 Vertex 2629 0.00593596 0.0929045 -0.0146068 Vertex 2630 0.00606095 0.0933405 -0.017588 Vertex 2631 0.00281174 0.0861268 -0.0101435 Vertex 2632 -0.0538577 0.141543 -0.0133948 Vertex 2633 0.0340425 0.156594 -0.0249677 Vertex 2634 -0.0266175 0.144105 -0.00857877 Vertex 2635 0.0450763 0.147172 -0.0311998 Vertex 2636 0.0481663 0.14629 -0.0297124 Vertex 2637 -0.00989373 0.100363 0.00361152 Vertex 2638 -0.00791092 0.107936 0.00226406 Vertex 2639 -0.00404128 0.106394 0.00230449 Vertex 2640 -0.0634352 0.144259 -0.00568319 Vertex 2641 -0.0653367 0.144086 -0.014484 Vertex 2642 -0.0685588 0.143659 -0.0137817 Vertex 2643 -0.0686614 0.142685 -0.0097489 Vertex 2644 0.075655 0.0815536 0.022535 Vertex 2645 -0.0314841 0.144566 -0.00473054 Vertex 2646 -0.0463183 0.144217 -0.00296813 Vertex 2647 0.0370264 0.107482 0.0154142 Vertex 2648 0.0492736 0.0887255 -0.00831661 Vertex 2649 0.0478732 0.0916651 -0.00933106 Vertex 2650 0.0523734 0.0976109 -0.00997938 Vertex 2651 0.0368085 0.0763618 0.0103373 Vertex 2652 -0.0410553 0.0573804 0.0304184 Vertex 2653 -0.085438 0.140961 0.00539237 Vertex 2654 -0.0823587 0.140599 0.00497869 Vertex 2655 -0.0330444 0.182589 -0.000193787 Vertex 2656 -0.0238773 0.148818 -0.0257167 Vertex 2657 -0.0214473 0.153474 -0.0216124 Vertex 2658 -0.0174434 0.0609185 -0.0221756 Vertex 2659 0.0482429 0.0866232 -0.00743112 Vertex 2660 -0.0531792 0.15086 0.00657016 Vertex 2661 0.0685945 0.125909 -0.0189313 Vertex 2662 -0.0614839 0.0732208 0.0333897 Vertex 2663 -0.0570748 0.153252 -0.0272443 Vertex 2664 0.0637757 0.128856 -0.0206818 Vertex 2665 0.0340592 0.133522 -0.00354765 Vertex 2666 0.0375418 0.0550435 0.00427529 Vertex 2667 0.0377373 0.0558343 -0.0220961 Vertex 2668 -0.0518154 0.150292 -0.0281676 Vertex 2669 0.0261039 0.0594578 0.00710743 Vertex 2670 0.0310528 0.0574087 0.0109733 Vertex 2671 -0.0713366 0.176994 -0.00249586 Vertex 2672 0.0303824 0.0696475 -0.0478036 Vertex 2673 -0.0484893 0.171563 -0.0323856 Vertex 2674 0.0615865 0.139932 -0.0213529 Vertex 2675 -0.017817 0.131748 -0.0191473 Vertex 2676 -0.0687049 0.0573408 0.00877955 Vertex 2677 0.0474002 0.1008 0.0174509 Vertex 2678 -0.0658422 0.177736 0.00027456 Vertex 2679 -0.0531894 0.159525 -0.00510807 Vertex 2680 -0.0523977 0.0768382 0.0330126 Vertex 2681 0.0543173 0.0621268 -0.0295639 Vertex 2682 -0.00544245 0.0725783 -0.00193464 Vertex 2683 0.0785084 0.0832746 0.0203038 Vertex 2684 0.0367786 0.125071 -0.0315246 Vertex 2685 0.0358045 0.124542 -0.0306458 Vertex 2686 -0.0745823 0.0886167 -0.0263006 Vertex 2687 -0.0156435 0.0858943 0.010742 Vertex 2688 -0.0162851 0.171612 -0.00669664 Vertex 2689 -0.0855281 0.150471 0.0111885 Vertex 2690 0.0494207 0.145408 -0.00732715 Vertex 2691 -0.0637674 0.126988 -0.00173257 Vertex 2692 -0.0215591 0.164867 -0.0412534 Vertex 2693 -0.0207552 0.162515 -0.0417572 Vertex 2694 -0.0686944 0.179415 -0.00397052 Vertex 2695 0.0183952 0.0720373 -0.0359603 Vertex 2696 -0.0929991 0.15372 0.0145225 Vertex 2697 -0.0438627 0.157589 0.00234246 Vertex 2698 0.0522561 0.100744 -0.0274987 Vertex 2699 0.0506708 0.104311 -0.0309738 Vertex 2700 -0.0284667 0.151986 -0.0343543 Vertex 2701 -0.0291068 0.15302 -0.0315098 Vertex 2702 0.0100146 0.154523 -0.0184198 Vertex 2703 0.037209 0.0636165 -0.048958 Vertex 2704 -0.0337973 0.0532578 0.00597797 Vertex 2705 0.0658033 0.105262 -0.00848488 Vertex 2706 0.0553133 0.12653 -0.00431067 Vertex 2707 0.0470461 0.134141 -0.0023175 Vertex 2708 -0.0147933 0.12124 -0.026003 Vertex 2709 -0.0508578 0.102933 0.0077599 Vertex 2710 0.0185877 0.159863 -0.0226267 Vertex 2711 0.0125604 0.0721926 -0.0209545 Vertex 2712 -0.0200569 0.145919 -0.0233297 Vertex 2713 -0.0212168 0.0648261 0.0217224 Vertex 2714 -0.0193198 0.0637409 0.0234246 Vertex 2715 0.017457 0.0738475 0.0085875 Vertex 2716 0.0920019 0.134205 -0.0105554 Vertex 2717 -0.0721093 0.152166 -0.00628341 Vertex 2718 -0.0753286 0.059024 -0.0109065 Vertex 2719 -0.0877652 0.177851 0.00946272 Vertex 2720 -0.0740334 0.0944225 -0.0220916 Vertex 2721 -0.0903402 0.175395 0.0164172 Vertex 2722 -0.0208836 0.0807989 0.0106213 Vertex 2723 -0.024835 0.160376 -0.0252221 Vertex 2724 -0.0265992 0.159247 -0.0264046 Vertex 2725 0.0096174 0.0581865 0.0116562 Vertex 2726 -0.00205449 0.148656 -0.0187611 Vertex 2727 -0.0633234 0.0605117 0.0147235 Vertex 2728 -0.0798059 0.161136 0.0108852 Vertex 2729 -0.0118089 0.0939755 0.00562494 Vertex 2730 -0.0708865 0.105859 -0.021199 Vertex 2731 -0.0784081 0.0959775 -0.0194282 Vertex 2732 -0.00867614 0.0695311 0.0116532 Vertex 2733 -0.0107943 0.0728403 0.00600137 Vertex 2734 0.0352416 0.0656064 0.0160003 Vertex 2735 0.0389638 0.0711572 0.0157173 Vertex 2736 -0.037448 0.177459 -0.00248226 Vertex 2737 -0.0187113 0.169009 -0.00769985 Vertex 2738 -0.0790817 0.153166 0.0109917 Vertex 2739 -0.0776656 0.149951 0.00939631 Vertex 2740 -0.0667453 0.0719439 -0.0265605 Vertex 2741 -0.00910072 0.0750375 0.00331859 Vertex 2742 0.0407525 0.0897227 0.015038 Vertex 2743 0.0249188 0.0676639 -0.0457299 Vertex 2744 -0.0305527 0.0963968 -0.00628164 Vertex 2745 -0.0753702 0.0669122 -0.0364446 Vertex 2746 -0.0596586 0.144967 -0.0179272 Vertex 2747 -0.0943579 0.165661 -0.00315327 Vertex 2748 0.0669455 0.0664035 -0.0108363 Vertex 2749 -0.026704 0.15849 -0.0357155 Vertex 2750 -0.0591428 0.141414 -0.022338 Vertex 2751 -0.0726699 0.173371 -0.0137433 Vertex 2752 -0.066901 0.0539927 -0.00719804 Vertex 2753 0.011063 0.13614 -0.00234194 Vertex 2754 -0.0630906 0.061644 -0.0226415 Vertex 2755 -0.0196309 0.167595 -0.0113226 Vertex 2756 -0.0596907 0.161983 -0.0285452 Vertex 2757 -0.0337979 0.115722 -0.0144998 Vertex 2758 -0.0403513 0.177937 -0.00952054 Vertex 2759 0.0669476 0.0557132 0.00379269 Vertex 2760 -0.078842 0.172403 0.0150779 Vertex 2761 -0.021568 0.0992482 0.00175415 Vertex 2762 -0.0644653 0.0566855 0.0205364 Vertex 2763 0.0764628 0.124193 -0.0178032 Vertex 2764 -0.000365045 0.0897354 -0.0269298 Vertex 2765 0.029566 0.0577195 0.0233097 Vertex 2766 0.0324449 0.0893229 0.0111608 Vertex 2767 0.0427128 0.115099 -0.00142136 Vertex 2768 0.0469266 0.126221 -0.0016535 Vertex 2769 -0.0228954 0.132317 -0.0222882 Vertex 2770 0.00684881 0.138652 -0.0346106 Vertex 2771 0.00725221 0.132013 -0.0352837 Vertex 2772 -0.0682247 0.0736613 -0.0286778 Vertex 2773 0.0117588 0.0572808 0.0253598 Vertex 2774 0.0436979 0.0805605 0.0199124 Vertex 2775 0.0622403 0.0730549 0.0255105 Vertex 2776 0.066981 0.0608923 -0.0151553 Vertex 2777 -0.0982482 0.17376 -0.00789926 Vertex 2778 0.0148562 0.0727043 0.00241827 Vertex 2779 0.0358461 0.10347 0.0121293 Vertex 2780 0.0284416 0.161349 -0.0231494 Vertex 2781 -0.0318338 0.173882 -0.019369 Vertex 2782 -0.0328256 0.174399 -0.0164264 Vertex 2783 -0.00637847 0.0960685 -0.0328898 Vertex 2784 -0.00377251 0.0964005 -0.0324518 Vertex 2785 -0.0362803 0.172485 -0.0381974 Vertex 2786 -0.0141683 0.0716413 0.0197281 Vertex 2787 0.0425611 0.0945394 0.0141479 Vertex 2788 -0.0742231 0.170057 0.00893905 Vertex 2789 -0.0132041 0.11605 -0.0309447 Vertex 2790 -0.0382895 0.0964714 -0.00943133 Vertex 2791 -0.0323651 0.0979986 -0.0111434 Vertex 2792 -0.0857533 0.0741799 0.000781044 Vertex 2793 0.0329705 0.0739276 -0.0382269 Vertex 2794 -0.0827577 0.0583687 -0.0354095 Vertex 2795 -0.0702323 0.171068 -0.0224218 Vertex 2796 0.00426868 0.146967 -0.00844054 Vertex 2797 0.00925805 0.152161 -0.0116257 Vertex 2798 -0.0251443 0.080698 -0.0363548 Vertex 2799 -0.0946 0.177986 -0.00213989 Vertex 2800 0.0442662 0.0858471 -0.00816172 Vertex 2801 0.0456043 0.0830773 -0.0066277 Vertex 2802 -0.0305208 0.11985 -0.0163203 Vertex 2803 0.0651372 0.0931702 -0.000839861 Vertex 2804 -0.016084 0.134179 -0.0174386 Vertex 2805 0.0270857 0.15782 -0.0174475 Vertex 2806 0.0459875 0.0563797 0.00203385 Vertex 2807 -0.00762883 0.14421 -0.0211282 Vertex 2808 -0.0547909 0.0548537 -0.0200878 Vertex 2809 -0.0603906 0.1455 0.00543034 Vertex 2810 -0.0402719 0.168192 -0.0367229 Vertex 2811 -0.0837001 0.0914345 -0.0156708 Vertex 2812 -0.0815697 0.0849755 -0.0182051 Vertex 2813 -0.00288163 0.147784 -0.0223484 Vertex 2814 0.0413341 0.055617 -0.00748544 Vertex 2815 -0.0980757 0.138402 -0.00511456 Vertex 2816 -0.0118298 0.124373 -0.00462593 Vertex 2817 0.0521497 0.0943587 -0.014443 Vertex 2818 0.0765799 0.0916446 -0.00456374 Vertex 2819 -0.0126032 0.150334 -0.00919638 Vertex 2820 -0.0689783 0.169876 0.00500187 Vertex 2821 -0.0401377 0.19368 -0.0214911 Vertex 2822 -0.0836955 0.16835 -0.0115427 Vertex 2823 -0.0892173 0.141151 0.00203564 Vertex 2824 -0.0042633 0.0714463 -0.00694463 Vertex 2825 -0.00785775 0.0675099 -0.00260793 Vertex 2826 0.059617 0.133601 -0.0255928 Vertex 2827 -0.0752061 0.118703 -0.00810018 Vertex 2828 0.0386702 0.120269 0.0101999 Vertex 2829 -0.0142122 0.137422 -0.0200324 Vertex 2830 -0.0608866 0.160663 0.00935761 Vertex 2831 0.0183696 0.0733908 -0.0303632 Vertex 2832 -0.0289497 0.150178 -0.0293408 Vertex 2833 0.0564358 0.152005 -0.0194103 Vertex 2834 -0.00659559 0.188591 -0.0300415 Vertex 2835 0.0467357 0.15677 -0.0187909 Vertex 2836 -0.0585665 0.0548116 0.018024 Vertex 2837 -0.0603025 0.0543756 0.0193423 Vertex 2838 -0.0870514 0.151447 -0.00585317 Vertex 2839 -0.0966858 0.171178 -0.00257693 Vertex 2840 -0.0774324 0.104562 0.00810115 Vertex 2841 -0.047471 0.126529 0.0027853 Vertex 2842 -0.0418107 0.123024 0.000775962 Vertex 2843 -0.0381761 0.126157 -0.00121473 Vertex 2844 -0.0400901 0.123738 -0.000188891 Vertex 2845 -0.0225846 0.0536245 -0.000548653 Vertex 2846 -0.0909437 0.171605 0.00767331 Vertex 2847 -0.089168 0.170116 0.0106036 Vertex 2848 -0.0944763 0.167325 -0.00239308 Vertex 2849 -0.0945117 0.169372 -0.000694331 Vertex 2850 0.0387324 0.10067 -0.0346774 Vertex 2851 0.0440116 0.109275 -0.0342846 Vertex 2852 0.0330752 0.0931052 -0.00315462 Vertex 2853 -0.0826796 0.14928 -0.00648725 Vertex 2854 -0.0335849 0.172892 -0.0234833 Vertex 2855 -0.0818233 0.0659393 0.00194299 Vertex 2856 -0.0482229 0.069298 0.0326354 Vertex 2857 -0.0665223 0.158821 -0.0238649 Vertex 2858 -0.0300829 0.0665553 -0.0389785 Vertex 2859 -0.0407763 0.184265 -0.0229989 Vertex 2860 -0.0633887 0.071428 0.0314488 Vertex 2861 -0.0446754 0.0946281 -0.0134782 Vertex 2862 -0.0412105 0.0938987 -0.0133543 Vertex 2863 0.0415878 0.115848 0.00998306 Vertex 2864 0.0411267 0.111063 0.0097675 Vertex 2865 0.063347 0.10883 -0.013529 Vertex 2866 -0.096287 0.153619 0.000938705 Vertex 2867 0.0309541 0.155837 -0.0123987 Vertex 2868 0.0304424 0.153555 -0.00790335 Vertex 2869 0.0206512 0.089806 -0.00714152 Vertex 2870 -0.066323 0.0939707 -0.0294087 Vertex 2871 -0.0672873 0.0656171 0.0161706 Vertex 2872 0.0314863 0.0609255 0.0237496 Vertex 2873 -0.0200066 0.10432 -0.000304935 Vertex 2874 -0.0174924 0.106713 0.000167623 Vertex 2875 -0.0727663 0.0693121 -0.0301991 Vertex 2876 -0.0517151 0.158778 -0.0288063 Vertex 2877 -0.0289829 0.104849 -0.0124352 Vertex 2878 -0.0277435 0.10851 -0.0135036 Vertex 2879 -0.0675895 0.0671736 0.0200435 Vertex 2880 -0.0760872 0.108647 0.0062395 Vertex 2881 0.0918898 0.144674 -0.00533478 Vertex 2882 0.0947227 0.149402 -0.00530112 Vertex 2883 -0.0721231 0.143893 0.0144185 Vertex 2884 -0.0672068 0.0579797 0.026378 Vertex 2885 -0.0843551 0.0734138 0.00310651 Vertex 2886 -0.0363514 0.163926 -2.2383e-005 Vertex 2887 0.0654378 0.114419 -0.00741957 Vertex 2888 -0.0760603 0.060737 -0.0169306 Vertex 2889 -0.0800802 0.0629399 -0.0175566 Vertex 2890 -0.0696463 0.0697727 0.0156024 Vertex 2891 0.0183957 0.0738715 -0.0383419 Vertex 2892 -0.0806717 0.139666 -0.00942461 Vertex 2893 -0.0423538 0.0653825 0.0287458 Vertex 2894 -0.0430265 0.0687448 0.0310133 Vertex 2895 -0.0972456 0.152379 -0.000134505 Vertex 2896 -0.0404445 0.0528488 -0.0376773 Vertex 2897 0.00305003 0.14538 -0.0297664 Vertex 2898 0.00699093 0.14706 -0.0304794 Vertex 2899 0.0710194 0.105927 0.00794776 Vertex 2900 -0.0833963 0.139508 -0.0107747 Vertex 2901 -0.00979165 0.112092 -0.0333347 Vertex 2902 -0.0312407 0.0569704 -0.0255123 Vertex 2903 0.0708112 0.145843 -0.0121582 Vertex 2904 -0.088664 0.16877 0.0119374 Vertex 2905 -0.0878565 0.169284 0.0138555 Vertex 2906 0.0346891 0.0552851 0.0275622 Vertex 2907 -0.0396517 0.182638 -0.036037 Vertex 2908 0.0715573 0.0896915 0.0202398 Vertex 2909 -0.0257844 0.174769 -0.00293906 Vertex 2910 0.0721312 0.0570387 -0.0117154 Vertex 2911 0.0412165 0.0634337 -0.0429619 Vertex 2912 -0.018847 0.168179 -0.0103207 Vertex 2913 -0.0235344 0.150422 -0.0131864 Vertex 2914 -0.024436 0.155833 -0.0148087 Vertex 2915 -0.0398168 0.154408 0.00116144 Vertex 2916 0.0472369 0.0966165 0.0167454 Vertex 2917 -0.0586739 0.0751889 0.0257406 Vertex 2918 -0.0429239 0.0549922 0.00267769 Vertex 2919 0.0130471 0.065201 0.0135296 Vertex 2920 0.049724 0.0577594 0.0213341 Vertex 2921 0.0458784 0.0599592 0.0212905 Vertex 2922 -0.0243192 0.156939 -0.0184709 Vertex 2923 -0.00232419 0.120964 -0.0344042 Vertex 2924 0.0361372 0.0993089 0.0129615 Vertex 2925 -0.0585333 0.17802 -0.00137487 Vertex 2926 -0.0246689 0.0568619 0.00691637 Vertex 2927 -0.0168268 0.101657 0.00247566 Vertex 2928 0.0293483 0.128685 -0.0289507 Vertex 2929 0.0317339 0.128299 -0.0294683 Vertex 2930 0.015092 0.0636595 0.0166064 Vertex 2931 0.0369882 0.0981988 0.0235054 Vertex 2932 -0.067008 0.144404 0.00587659 Vertex 2933 -0.07194 0.178737 -0.00710162 Vertex 2934 -0.0624214 0.130117 -0.0130882 Vertex 2935 0.0725239 0.0705227 -0.000958996 Vertex 2936 -0.0463523 0.0830159 -0.0274473 Vertex 2937 0.0360086 0.12263 0.00499147 Vertex 2938 -0.0375011 0.119493 -0.00511464 Vertex 2939 -0.0877431 0.177338 -0.00583684 Vertex 2940 -0.0865454 0.176871 -0.00604106 Vertex 2941 -0.027412 0.155894 -0.0365975 Vertex 2942 -0.024835 0.0530939 -0.00793594 Vertex 2943 -0.0497435 0.0716025 -0.0362456 Vertex 2944 0.0249096 0.0618748 0.00726993 Vertex 2945 0.0238692 0.161384 -0.0227661 Vertex 2946 -0.00515176 0.0914445 0.00325781 Vertex 2947 -0.00613814 0.0885333 0.00369635 Vertex 2948 0.0617803 0.067163 -0.0137143 Vertex 2949 -0.0307551 0.128857 -0.0231509 Vertex 2950 -0.0605385 0.0671688 0.0385218 Vertex 2951 -0.0240682 0.149847 -0.0411175 Vertex 2952 0.00887371 0.0628881 0.01794 Vertex 2953 -0.0279598 0.168913 -0.0381526 Vertex 2954 0.0625245 0.118351 -0.0120721 Vertex 2955 -0.0100818 0.164504 -0.0109877 Vertex 2956 -0.0112161 0.175111 -0.0109523 Vertex 2957 -0.052158 0.168477 0.00560589 Vertex 2958 -0.0298497 0.18461 -0.0255603 Vertex 2959 0.032504 0.109221 -0.0303358 Vertex 2960 0.0226966 0.0725525 -0.0338778 Vertex 2961 0.0221287 0.0713796 -0.0320624 Vertex 2962 -0.0413006 0.0858221 -0.0254996 Vertex 2963 -0.0371796 0.0890308 -0.0230029 Vertex 2964 0.0341901 0.146046 -0.00327646 Vertex 2965 0.030783 0.150391 -0.00520804 Vertex 2966 0.0344648 0.150223 -0.00534613 Vertex 2967 0.0378676 0.146156 -0.00358215 Vertex 2968 -0.0579694 0.155174 0.00453254 Vertex 2969 0.0531022 0.147853 -0.0229457 Vertex 2970 -0.0383356 0.180111 0.0014377 Vertex 2971 -0.0504547 0.0984271 0.00904576 Vertex 2972 -0.075606 0.156813 -0.0153327 Vertex 2973 -0.0322491 0.083312 -0.02972 Vertex 2974 0.0287136 0.0648149 0.0223944 Vertex 2975 0.0328784 0.123445 -0.00961432 Vertex 2976 0.0299218 0.127315 -0.00934884 Vertex 2977 -0.0295559 0.166461 -0.0256014 Vertex 2978 -0.084907 0.0701994 0.00111591 Vertex 2979 -0.0437838 0.131244 -0.0279926 Vertex 2980 -0.0437473 0.127591 -0.0276052 Vertex 2981 -0.0329048 0.143816 -0.00296307 Vertex 2982 -0.0198004 0.116621 -0.0209045 Vertex 2983 0.0621488 0.135929 -0.0211878 Vertex 2984 -0.0521092 0.178449 -2.7304e-005 Vertex 2985 -0.0632706 0.0717818 0.0334376 Vertex 2986 0.0575345 0.135883 -0.0274245 Vertex 2987 0.0560812 0.0660579 -0.0235315 Vertex 2988 -0.0663953 0.170005 -0.0233997 Vertex 2989 0.0521927 0.0693637 -0.0256779 Vertex 2990 -0.0668512 0.0626683 0.0208062 Vertex 2991 -0.0283457 0.0952562 -0.0255846 Vertex 2992 -0.0129967 0.189919 -0.0298383 Vertex 2993 0.0010214 0.103716 -2.07974e-005 Vertex 2994 0.00227848 0.107294 -0.000545337 Vertex 2995 -0.0343414 0.149868 -0.000449702 Vertex 2996 0.00457325 0.113794 -0.00136295 Vertex 2997 0.0199167 0.0832964 -0.00433235 Vertex 2998 -0.0878608 0.171375 -0.00803501 Vertex 2999 0.0939725 0.129707 -0.00921615 Vertex 3000 -0.0122397 0.0743921 0.0160102 Vertex 3001 -0.0801838 0.141319 0.0167876 Vertex 3002 0.0289832 0.0577021 -0.0257967 Vertex 3003 0.025766 0.0600239 -0.0271541 Vertex 3004 0.0240428 0.0627742 -0.0285991 Vertex 3005 -0.0624528 0.0822853 -0.0357117 Vertex 3006 0.0377353 0.0627825 -0.0353603 Vertex 3007 -0.0753053 0.100072 0.010862 Vertex 3008 0.0550905 0.110066 -0.00623805 Vertex 3009 -0.0326899 0.0760617 0.0209448 Vertex 3010 -0.0233208 0.157507 -0.0208491 Vertex 3011 -0.0533359 0.145 -0.0048845 Vertex 3012 -0.0821259 0.158728 -0.0147902 Vertex 3013 0.00800437 0.0650301 0.0102473 Vertex 3014 -0.0860696 0.158658 -0.0066536 Vertex 3015 -0.0765977 0.161646 -0.0100801 Vertex 3016 -0.0391878 0.0979894 -0.0104816 Vertex 3017 -0.104292 0.145817 0.00519975 Vertex 3018 -0.071246 0.161376 -0.021384 Vertex 3019 -0.0334912 0.176481 -0.0167136 Vertex 3020 0.0546332 0.0537222 0.0141962 Vertex 3021 -0.046681 0.161373 0.0033312 Vertex 3022 -0.0499769 0.171661 0.00360118 Vertex 3023 -0.0701747 0.0727835 -0.0224888 Vertex 3024 -0.037746 0.174283 -0.0369039 Vertex 3025 -0.0517636 0.143083 0.0061395 Vertex 3026 0.0535115 0.13311 -0.0319823 Vertex 3027 0.0496971 0.0754424 0.0189527 Vertex 3028 0.00186235 0.0970736 -0.00232293 Vertex 3029 -0.0259414 0.149138 -0.00337121 Vertex 3030 0.0473472 0.130039 -0.00204575 Vertex 3031 0.00850961 0.155511 -0.0188565 Vertex 3032 -0.0915553 0.162818 -0.00487328 Vertex 3033 0.028033 0.16098 -0.0190005 Vertex 3034 -0.0332108 0.141367 -0.0297026 Vertex 3035 -0.0695942 0.075644 0.0162115 Vertex 3036 -0.0474342 0.177799 -0.00259924 Vertex 3037 0.0312147 0.159168 -0.0191429 Vertex 3038 -0.0253491 0.0979863 -0.0270179 Vertex 3039 -0.028004 0.0721161 -0.038468 Vertex 3040 -0.090425 0.177563 0.0153361 Vertex 3041 -0.0772926 0.162419 0.0111103 Vertex 3042 0.0193892 0.144959 -0.00339134 Vertex 3043 0.0285415 0.143758 -0.00296353 Vertex 3044 0.0674573 0.130134 -0.0180269 Vertex 3045 -0.0781639 0.163743 0.0130249 Vertex 3046 0.0543302 0.0989171 -0.0166363 Vertex 3047 0.0771783 0.0802918 -0.00164059 Vertex 3048 -0.0814271 0.080011 -0.0179595 Vertex 3049 -0.0290355 0.0876835 0.00841488 Vertex 3050 -0.0311196 0.0908987 0.00612014 Vertex 3051 -0.0514982 0.128848 0.00185257 Vertex 3052 -0.0883271 0.0592182 -0.0266428 Vertex 3053 0.0383825 0.0708626 -0.038031 Vertex 3054 -0.0462747 0.176639 -0.0253097 Vertex 3055 -0.0868029 0.0626772 -0.0294506 Vertex 3056 -0.048352 0.0918102 0.0188772 Vertex 3057 -0.0706812 0.114249 -0.0195978 Vertex 3058 -0.0747663 0.10957 -0.0183116 Vertex 3059 0.0353549 0.065975 0.0195421 Vertex 3060 0.0597434 0.140145 -0.0153113 Vertex 3061 -0.0316506 0.0695391 -0.0382788 Vertex 3062 -0.0334654 0.183769 -0.0161768 Vertex 3063 -0.00138112 0.109462 0.00139618 Vertex 3064 -0.00455184 0.101994 0.00245725 Vertex 3065 -0.000776633 0.0989164 0.000768074 Vertex 3066 -0.00427223 0.0964709 0.00277853 Vertex 3067 0.0658399 0.0567149 0.0175992 Vertex 3068 -0.0616246 0.145713 0.0110309 Vertex 3069 -0.0621723 0.143199 0.0116986 Vertex 3070 -0.0447201 0.0556496 -0.0264297 Vertex 3071 0.0437999 0.0846459 0.0161013 Vertex 3072 0.0448973 0.0869148 0.0161904 Vertex 3073 -0.0813673 0.0680499 -0.0300587 Vertex 3074 0.080913 0.0841865 0.017964 Vertex 3075 0.0310672 0.152884 -0.0314166 Vertex 3076 -0.0445183 0.096669 -0.00335554 Vertex 3077 0.0114105 0.0576988 0.0208085 Vertex 3078 -0.0250221 0.145308 -0.0257729 Vertex 3079 -0.067441 0.14373 0.0129958 Vertex 3080 0.0102395 0.134713 -0.0353042 Vertex 3081 0.0634046 0.0895685 0.00534565 Vertex 3082 0.0347786 0.110819 0.0104425 Vertex 3083 -0.0630357 0.110356 0.00951696 Vertex 3084 -0.0587466 0.107719 0.00955036 Vertex 3085 0.0616716 0.0804956 0.00288861 Vertex 3086 0.0635658 0.0814449 0.00327966 Vertex 3087 0.0703655 0.133903 -0.0108594 Vertex 3088 -0.0173507 0.0826453 -0.0318996 Vertex 3089 -0.0580099 0.167859 0.00731035 Vertex 3090 0.0199738 0.131244 -0.00540989 Vertex 3091 0.0155181 0.12799 -0.00462162 Vertex 3092 0.0813983 0.0956988 -0.00392138 Vertex 3093 0.0640755 0.111742 -0.00882468 Vertex 3094 -0.0276603 0.17 -0.0231054 Vertex 3095 -0.0836088 0.0837682 0.00923625 Vertex 3096 -0.0489474 0.175999 0.00136125 Vertex 3097 0.0382701 0.117837 -0.00260781 Vertex 3098 0.0393684 0.126109 -0.00267249 Vertex 3099 0.0737874 0.0681878 -0.00051857 Vertex 3100 -0.0602598 0.178382 -0.0202967 Vertex 3101 -0.036085 0.160403 -0.000411396 Vertex 3102 0.0153016 0.0644044 0.022951 Vertex 3103 0.0104797 0.0631355 0.0262533 Vertex 3104 -0.0918241 0.145736 -0.00665593 Vertex 3105 -0.0955006 0.148747 -0.00386996 Vertex 3106 -0.0373437 0.142092 -0.0306685 Vertex 3107 0.0629992 0.132374 -0.0148742 Vertex 3108 0.0619104 0.129871 -0.0234513 Vertex 3109 0.0184151 0.127965 -0.032124 Vertex 3110 -0.0421665 0.173582 -0.0356603 Vertex 3111 -0.0440174 0.151911 0.00308394 Vertex 3112 -0.0110522 0.120577 -0.00197606 Vertex 3113 0.0565617 0.107111 -0.00957788 Vertex 3114 -0.0702907 0.150129 -0.0137699 Vertex 3115 -0.0766511 0.14788 -0.00878506 Vertex 3116 -0.0497562 0.159514 -0.0298378 Vertex 3117 -0.0441517 0.0786735 0.0228319 Vertex 3118 -0.0540338 0.0813443 -0.0357192 Vertex 3119 0.0679741 0.0724636 -0.00720779 Vertex 3120 -0.0265941 0.100393 -0.023396 Vertex 3121 -0.0246491 0.102653 -0.0242155 Vertex 3122 0.0157231 0.058127 0.0241709 Vertex 3123 0.0700381 0.0672877 0.0246159 Vertex 3124 -0.0443505 0.168834 0.00206398 Vertex 3125 -0.036655 0.0562643 0.0102679 Vertex 3126 0.0229805 0.057622 0.0126931 Vertex 3127 -0.0474841 0.11608 -0.0247946 Vertex 3128 -0.0922145 0.171346 0.00373058 Vertex 3129 -0.0337957 0.0605555 0.0234103 Vertex 3130 0.00760644 0.0627973 0.00394541 Vertex 3131 0.00963691 0.0641075 0.0033215 Vertex 3132 0.0105607 0.125125 -0.0029843 Vertex 3133 0.0700775 0.066796 -0.00795006 Vertex 3134 0.0373608 0.0773166 0.0116826 Vertex 3135 -0.0490677 0.149717 -0.0301208 Vertex 3136 -0.00812574 0.115482 -0.0337078 Vertex 3137 -0.0954699 0.145554 0.0139362 Vertex 3138 -0.0937792 0.143574 0.00684399 Vertex 3139 -0.0369842 0.117128 -0.00994882 Vertex 3140 0.0411898 0.055379 0.00579878 Vertex 3141 0.0678518 0.105095 -0.00944681 Vertex 3142 -0.0560412 0.145332 0.00970707 Vertex 3143 -0.0543291 0.146223 0.00891973 Vertex 3144 -0.0596353 0.132738 -0.0149397 Vertex 3145 -0.0820073 0.160257 -0.0110327 Vertex 3146 -0.0949593 0.153392 0.0136977 Vertex 3147 -0.0859937 0.14947 -0.00303606 Vertex 3148 -0.0947614 0.138465 -0.00636394 Vertex 3149 -0.0024632 0.19275 -0.0307265 Vertex 3150 -0.0357156 0.0717471 -0.0296636 Vertex 3151 -0.068061 0.0746341 0.0201342 Vertex 3152 -0.0547646 0.174164 -0.0303713 Vertex 3153 0.0567874 0.11753 -0.0300407 Vertex 3154 -0.0516843 0.0648214 0.036503 Vertex 3155 -0.00385905 0.135522 -0.0306619 Vertex 3156 -0.00565556 0.137248 -0.0274618 Vertex 3157 -0.00808569 0.133934 -0.0269301 Vertex 3158 0.070158 0.140265 -0.0157269 Vertex 3159 -0.0270977 0.145478 -0.0275433 Vertex 3160 -0.0665426 0.172246 0.000742957 Vertex 3161 -0.0490884 0.179389 -0.00654374 Vertex 3162 -0.0298491 0.0527293 -0.0342521 Vertex 3163 -0.00140641 0.123205 -0.0341379 Vertex 3164 -0.0197627 0.0594726 0.0255673 Vertex 3165 0.0812056 0.125416 -0.0107221 Vertex 3166 0.0260528 0.152177 -0.00602763 Vertex 3167 -0.0245674 0.186117 -0.0205554 Vertex 3168 -0.0217862 0.119589 -0.0141678 Vertex 3169 -0.020185 0.122015 -0.0143891 Vertex 3170 0.0326537 0.0586977 0.0136322 Vertex 3171 -0.0638614 0.0627845 -0.0262251 Vertex 3172 -0.088783 0.163472 -0.00457272 Vertex 3173 -0.0252312 0.126073 -0.0195645 Vertex 3174 0.0252315 0.0996174 -0.00821763 Vertex 3175 -0.0827409 0.0625011 -0.039117 Vertex 3176 0.0715727 0.0772013 0.0240144 Vertex 3177 -0.0199631 0.0590069 0.00598928 Vertex 3178 -0.0657152 0.12579 -0.0153478 Vertex 3179 -0.0305778 0.165697 -0.0328874 Vertex 3180 -0.0241372 0.163443 -0.0440501 Vertex 3181 -0.00295482 0.142675 -0.0107888 Vertex 3182 0.0494168 0.153573 -0.0217815 Vertex 3183 -0.00892819 0.124883 -0.0312589 Vertex 3184 0.0081092 0.061085 0.00280175 Vertex 3185 0.00881888 0.0579954 0.00148132 Vertex 3186 0.0234749 0.137096 -0.00333776 Vertex 3187 0.0208217 0.137437 -0.00290322 Vertex 3188 -0.094647 0.143697 0.0215389 Vertex 3189 -0.0635733 0.0542349 0.0231622 Vertex 3190 -0.0953007 0.164836 -0.00974013 Vertex 3191 -0.0304837 0.174868 -0.00319652 Vertex 3192 0.0661941 0.114658 -0.0160554 Vertex 3193 -0.00389324 0.144249 -0.0156958 Vertex 3194 0.0227107 0.0933368 -0.00723971 Vertex 3195 0.028773 0.0972669 -0.00485835 Vertex 3196 -0.0786653 0.0674951 -0.017318 Vertex 3197 -0.0769471 0.144521 -0.0147003 Vertex 3198 -0.0726683 0.144549 -0.0178659 Vertex 3199 -0.0430689 0.141503 -0.0320955 Vertex 3200 0.0116486 0.0649157 0.0110108 Vertex 3201 -0.0101103 0.0957421 0.00408654 Vertex 3202 0.0653295 0.127101 -0.0141343 Vertex 3203 -0.0644546 0.0572571 -0.0180441 Vertex 3204 0.0515832 0.057236 -0.0256242 Vertex 3205 -0.0288395 0.169394 -0.0174105 Vertex 3206 -0.0274835 0.16704 -0.0410335 Vertex 3207 -0.0946694 0.153904 0.0030332 Vertex 3208 -0.0180383 0.0985391 -0.0318947 Vertex 3209 -0.0934556 0.144209 0.0102321 Vertex 3210 -0.0321275 0.101641 -0.0126644 Vertex 3211 -0.00572326 0.145067 -0.0175285 Vertex 3212 -0.0419075 0.178441 -0.0358006 Vertex 3213 -0.0878199 0.145902 0.0200432 Vertex 3214 -0.00129088 0.139039 -0.0052105 Vertex 3215 -0.00888697 0.0655748 0.012436 Vertex 3216 -0.0774253 0.0883551 -0.0216409 Vertex 3217 0.0240863 0.0568924 0.0024532 Vertex 3218 -0.0438508 0.100406 -0.0078625 Vertex 3219 -0.0344106 0.0686285 -0.0381698 Vertex 3220 -0.035599 0.112704 -0.0138147 Vertex 3221 -0.0346043 0.165993 -0.000763401 Vertex 3222 -0.0394696 0.16704 0.00050286 Vertex 3223 0.0414938 0.0816968 -0.00491983 Vertex 3224 -0.0829119 0.150244 0.0143871 Vertex 3225 -0.0136852 0.149334 -0.0101091 Vertex 3226 -0.044961 0.162175 -0.0346306 Vertex 3227 0.0398029 0.0591287 0.0175315 Vertex 3228 -0.0174747 0.155895 -0.010253 Vertex 3229 -0.0623629 0.0548246 0.00789889 Vertex 3230 0.0602082 0.146115 -0.0173448 Vertex 3231 -0.0351526 0.0938605 -0.00459031 Vertex 3232 0.0327056 0.077956 -0.0347033 Vertex 3233 0.0695538 0.129151 -0.0106874 Vertex 3234 -0.0861923 0.0834183 -0.0110575 Vertex 3235 -0.0869346 0.0831963 -0.0088837 Vertex 3236 0.0424299 0.122056 -0.00174372 Vertex 3237 -0.0935231 0.165781 -0.00717725 Vertex 3238 -0.00938625 0.0905269 -0.0320688 Vertex 3239 -0.0367601 0.0698973 -0.0333229 Vertex 3240 -0.0752613 0.11062 0.00607322 Vertex 3241 -0.0259553 0.13888 -0.0252505 Vertex 3242 -0.0564232 0.0753942 0.0359803 Vertex 3243 -0.0121848 0.0692411 0.0194334 Vertex 3244 0.0416807 0.0763509 0.0160229 Vertex 3245 0.0400794 0.156569 -0.017048 Vertex 3246 0.0394741 0.158578 -0.0188134 Vertex 3247 -0.0116875 0.0959641 0.00511232 Vertex 3248 -0.0389144 0.12772 -0.0276606 Vertex 3249 -0.037316 0.131494 -0.0282632 Vertex 3250 -0.00964066 0.127888 -0.00441649 Vertex 3251 0.0122665 0.0764325 -0.0115527 Vertex 3252 -0.0812795 0.175284 0.00763498 Vertex 3253 -0.0793677 0.173082 0.00848871 Vertex 3254 0.0686794 0.0626626 -0.0127644 Vertex 3255 -0.0830758 0.158878 -0.0125886 Vertex 3256 -0.0911917 0.171604 0.00541937 Vertex 3257 -0.0934781 0.172399 0.00224316 Vertex 3258 0.0410859 0.0983118 -0.00353453 Vertex 3259 0.0369725 0.0560181 0.0274912 Vertex 3260 0.0482695 0.156806 -0.0207622 Vertex 3261 0.039916 0.102859 0.0268999 Vertex 3262 0.0386053 0.104726 0.0237394 Vertex 3263 0.0656698 0.0856391 0.0214943 Vertex 3264 0.074956 0.119141 -0.0174393 Vertex 3265 0.012542 0.117326 -0.0289282 Vertex 3266 0.0303473 0.0554529 -0.0475595 Vertex 3267 0.029879 0.0558805 -0.0475884 Vertex 3268 -0.0517602 0.110709 0.00706106 Vertex 3269 -0.054137 0.108887 0.00808848 Vertex 3270 -0.0795608 0.0582467 -0.0240127 Vertex 3271 -0.0179229 0.116006 -0.00543718 Vertex 3272 -0.101016 0.150754 0.00981871 Vertex 3273 -0.0402417 0.192542 -0.018304 Vertex 3274 -0.0576682 0.11078 0.00873952 Vertex 3275 -0.102351 0.148392 0.0102709 Vertex 3276 0.0591975 0.12232 -0.00773718 Vertex 3277 0.0591614 0.124948 -0.007955 Vertex 3278 -0.0469874 0.158537 0.000510076 Vertex 3279 -0.0545189 0.169939 -0.0295585 Vertex 3280 -0.0506517 0.171424 -0.0317237 Vertex 3281 -0.0353479 0.0929116 -0.0168363 Vertex 3282 -0.043764 0.0763138 0.0298646 Vertex 3283 -0.0219063 0.0717068 0.0158705 Vertex 3284 -0.0914999 0.149773 -0.00132572 Vertex 3285 -0.0883099 0.140319 -0.00541799 Vertex 3286 -0.0595302 0.176225 0.00517474 Vertex 3287 0.0615372 0.0793683 0.0234783 Vertex 3288 0.0363614 0.05892 -0.0500402 Vertex 3289 -0.0835046 0.149797 -0.00686193 Vertex 3290 -0.0335368 0.0556975 -0.00407142 Vertex 3291 -0.0787502 0.113889 -0.00204475 Vertex 3292 -0.00153534 0.108352 -0.0341784 Vertex 3293 -0.00502941 0.105463 -0.0342118 Vertex 3294 -0.00611663 0.101905 -0.0337667 Vertex 3295 0.0864091 0.133047 -0.00890439 Vertex 3296 0.0552202 0.0789964 0.000936413 Vertex 3297 -0.00646227 0.120347 -0.000348204 Vertex 3298 -0.0558527 0.144236 -0.0144824 Vertex 3299 -0.0558694 0.144152 -0.0141777 Vertex 3300 -0.0559221 0.144218 -0.0145194 Vertex 3301 -0.0558392 0.143858 -0.0140855 Vertex 3302 -0.0915876 0.154198 0.0106392 Vertex 3303 -0.0628965 0.161879 0.00119832 Vertex 3304 0.0428278 0.0907093 -0.0306534 Vertex 3305 -0.000185174 0.111081 -0.0344269 Vertex 3306 -0.0922136 0.176869 0.0132397 Vertex 3307 -0.0174246 0.12235 -0.0105882 Vertex 3308 -0.0195951 0.118579 -0.0112382 Vertex 3309 -0.0309504 0.184123 -0.00301244 Vertex 3310 -0.0443371 0.0659162 0.0259102 Vertex 3311 -0.0415483 0.0768621 0.0270161 Vertex 3312 -0.0851623 0.0639125 -0.0212146 Vertex 3313 -0.0839517 0.0656762 -0.0205792 Vertex 3314 -0.034865 0.175746 -0.00767414 Vertex 3315 -0.0737609 0.148907 0.008245 Vertex 3316 -0.0670898 0.151247 0.0069114 Vertex 3317 0.0295226 0.158982 -0.0186769 Vertex 3318 -0.0197786 0.15214 -0.0249507 Vertex 3319 0.0154877 0.147528 -0.0338514 Vertex 3320 0.0203119 0.149697 -0.0334694 Vertex 3321 0.0221465 0.149254 -0.0337414 Vertex 3322 -0.0347778 0.17242 -0.00162558 Vertex 3323 -0.0375999 0.173163 -0.0274019 Vertex 3324 0.0442797 0.0529356 0.0147257 Vertex 3325 -0.0540469 0.0979146 0.0119871 Vertex 3326 0.0536073 0.0942756 -0.00984655 Vertex 3327 0.0547473 0.0958928 -0.00967652 Vertex 3328 -0.0860601 0.0889191 0.00190526 Vertex 3329 -0.0623843 0.141877 0.0101887 Vertex 3330 0.043674 0.0803468 -0.0053496 Vertex 3331 -0.0675926 0.0619389 -0.0255462 Vertex 3332 0.0588601 0.114317 -0.0266749 Vertex 3333 -0.0211942 0.158039 -0.00356175 Vertex 3334 -0.0561844 0.0690187 -0.0337219 Vertex 3335 -0.0838745 0.169226 0.0165723 Vertex 3336 -0.0519133 0.14546 -0.0287647 Vertex 3337 0.0760269 0.100297 0.013008 Vertex 3338 0.0483661 0.116927 -0.00153247 Vertex 3339 -0.0478548 0.140756 -0.00282552 Vertex 3340 -0.0407291 0.156768 -0.0377475 Vertex 3341 -0.0928735 0.168418 -0.0112433 Vertex 3342 -0.0411517 0.0647499 0.0208136 Vertex 3343 0.0712339 0.113469 0.00135379 Vertex 3344 0.0391738 0.074892 0.012297 Vertex 3345 -0.0457148 0.140029 -0.0274885 Vertex 3346 0.0833048 0.146845 -0.00916975 Vertex 3347 -0.0246288 0.0695337 0.0198474 Vertex 3348 -0.0850318 0.1796 0.00596173 Vertex 3349 -0.0701561 0.0961571 -0.0236055 Vertex 3350 0.0475305 0.0645643 -0.03467 Vertex 3351 0.0216907 0.150354 -0.00516426 Vertex 3352 -0.0192758 0.0668175 -0.0278391 Vertex 3353 -0.0574035 0.143484 -0.0219967 Vertex 3354 -0.0536946 0.142667 -0.0237042 Vertex 3355 -0.0757028 0.13984 -0.0127738 Vertex 3356 -0.0559688 0.114244 0.00753669 Vertex 3357 -0.0988725 0.175674 -0.00513144 Vertex 3358 -0.0349844 0.197106 -0.0221598 Vertex 3359 0.0335902 0.0611715 0.018254 Vertex 3360 0.0341011 0.0625682 0.0208018 Vertex 3361 -0.00555779 0.132084 -0.00402155 Vertex 3362 -0.0848326 0.0978999 -0.000224488 Vertex 3363 -0.0268799 0.0926103 -0.0287836 Vertex 3364 -0.0311439 0.175417 -0.00451522 Vertex 3365 0.0541108 0.0943022 -0.0107957 Vertex 3366 -0.0551041 0.101651 0.0106103 Vertex 3367 -0.0476256 0.093271 0.0159536 Vertex 3368 -0.0435262 0.0893851 0.018149 Vertex 3369 -0.07885 0.0788044 0.0125831 Vertex 3370 -0.0830255 0.0661437 -0.0330638 Vertex 3371 -0.0243619 0.118629 -0.0149147 Vertex 3372 -0.0265746 0.112412 -0.0140541 Vertex 3373 0.0436549 0.153539 -0.0155829 Vertex 3374 -0.0508915 0.12597 -0.026041 Vertex 3375 0.0791048 0.0844159 -0.00104502 Vertex 3376 0.0732147 0.0566897 -0.0035548 Vertex 3377 0.0345675 0.0879829 0.0104546 Vertex 3378 -0.0376156 0.109678 -0.0146507 Vertex 3379 0.0675302 0.116176 -0.00364285 Vertex 3380 -0.0650764 0.140703 -0.0227693 Vertex 3381 -0.0738845 0.140998 -0.0179996 Vertex 3382 0.0794663 0.11396 -0.00455858 Vertex 3383 -0.0385566 0.147099 0.00153643 Vertex 3384 0.00889991 0.155408 -0.0229397 Vertex 3385 0.0129215 0.0655449 0.00876106 Vertex 3386 0.0473332 0.0895138 -0.0157313 Vertex 3387 0.0107202 0.154448 -0.0239028 Vertex 3388 -0.0141619 0.0628879 -0.0200885 Vertex 3389 0.0348269 0.0905131 -0.034944 Vertex 3390 -0.0409003 0.141675 -0.0321246 Vertex 3391 -0.0662788 0.151283 0.00875867 Vertex 3392 0.0302117 0.0989096 -0.0339172 Vertex 3393 0.0878282 0.138032 -0.00719907 Vertex 3394 -0.053192 0.0782722 0.0252159 Vertex 3395 0.0385037 0.114031 0.00696441 Vertex 3396 -0.0638959 0.14276 -0.0230829 Vertex 3397 -0.0488228 0.118712 0.00456287 Vertex 3398 -0.0882931 0.059494 -0.0215851 Vertex 3399 0.089378 0.13319 -0.0134775 Vertex 3400 -0.0489947 0.0542592 0.027673 Vertex 3401 0.0533198 0.0754318 -0.00220015 Vertex 3402 0.0532422 0.0777795 -0.00104946 Vertex 3403 0.030429 0.0826194 0.00119753 Vertex 3404 0.0199252 0.0552693 -0.0109367 Vertex 3405 -0.0185688 0.0598777 0.00469531 Vertex 3406 -0.0303474 0.101013 -0.0157683 Vertex 3407 -0.0257016 0.16119 -0.00279664 Vertex 3408 -0.0878506 0.149495 0.0183382 Vertex 3409 -0.00041306 0.13287 -0.033519 Vertex 3410 0.00263273 0.0550339 0.023885 Vertex 3411 0.0437674 0.0631266 -0.0351487 Vertex 3412 0.0236992 0.054541 -0.0184368 Vertex 3413 -0.0424488 0.160233 -0.0358399 Vertex 3414 -0.0190102 0.0869179 0.00918053 Vertex 3415 -0.0243018 0.146292 -0.0111017 Vertex 3416 -0.0596671 0.171587 -0.0269735 Vertex 3417 -0.0631152 0.0542196 -0.012547 Vertex 3418 -0.0211825 0.162933 -0.0444583 Vertex 3419 -0.0217555 0.14919 -0.0203471 Vertex 3420 -0.0609941 0.0549066 0.00736653 Vertex 3421 -0.0422743 0.153883 -0.0361945 Vertex 3422 0.0339001 0.0634773 -0.0378183 Vertex 3423 0.0304469 0.0622671 -0.0424608 Vertex 3424 0.0282119 0.0636682 -0.0419016 Vertex 3425 -0.0595056 0.128806 -0.000676564 Vertex 3426 0.0489122 0.092222 0.0230878 Vertex 3427 -0.00625284 0.111473 0.00154723 Vertex 3428 0.0162863 0.156505 -0.0175263 Vertex 3429 0.0822282 0.0797158 0.0149914 Vertex 3430 -0.0675173 0.125238 -0.00282765 Vertex 3431 -0.0816235 0.162941 -0.0167431 Vertex 3432 0.0125717 0.112559 -0.024628 Vertex 3433 -0.0266494 0.14466 -0.00584373 Vertex 3434 -0.0169742 0.0923539 0.00541601 Vertex 3435 0.0416696 0.0739428 0.0145882 Vertex 3436 0.00266345 0.152286 -0.0225437 Vertex 3437 -0.0739083 0.0620377 0.010248 Vertex 3438 0.09668 0.13687 -0.00891594 Vertex 3439 -0.0933995 0.165149 -0.00328236 Vertex 3440 0.0446045 0.0839751 0.0187667 Vertex 3441 -0.0448592 0.109122 -0.00236699 Vertex 3442 -0.084809 0.145174 0.0193051 Vertex 3443 0.0136768 0.0639176 0.00193225 Vertex 3444 -0.0486223 0.168574 -0.0347262 Vertex 3445 0.0656495 0.121861 -0.0181059 Vertex 3446 -0.0891119 0.179 0.0123647 Vertex 3447 0.0468947 0.08377 -0.0118788 Vertex 3448 -0.0169163 0.127625 -0.0201339 Vertex 3449 -0.0366267 0.14242 0.000310573 Vertex 3450 -0.0278518 0.0539369 -0.0355575 Vertex 3451 -0.0572507 0.161853 -0.00894294 Vertex 3452 0.0159788 0.15766 -0.0192852 Vertex 3453 -0.0978064 0.149124 0.0186187 Vertex 3454 0.0326784 0.15976 -0.0223874 Vertex 3455 0.0427163 0.0849871 0.0299867 Vertex 3456 0.0820577 0.123952 -0.0121525 Vertex 3457 -0.0597831 0.120879 -0.0230702 Vertex 3458 -0.06663 0.178797 -0.00298865 Vertex 3459 0.0372085 0.150827 -0.0315744 Vertex 3460 0.0505493 0.148032 -0.0109585 Vertex 3461 -0.0867847 0.0900852 0.000598363 Vertex 3462 -0.0604966 0.1449 -0.00896439 Vertex 3463 -0.0288538 0.152602 -0.00166659 Vertex 3464 -0.0353881 0.0775275 -0.0295106 Vertex 3465 -0.0558646 0.0953156 -0.0213034 Vertex 3466 -0.0359555 0.116451 -0.0123416 Vertex 3467 -0.0379337 0.113136 -0.0111764 Vertex 3468 -0.0585625 0.0569397 0.0160815 Vertex 3469 0.0217214 0.0636857 0.0136493 Vertex 3470 -0.0052999 0.132372 -0.0309652 Vertex 3471 -0.00520523 0.12732 -0.0323985 Vertex 3472 0.0771506 0.146364 -0.00745715 Vertex 3473 0.0778385 0.149465 -0.0103078 Vertex 3474 -0.0462792 0.143788 0.00308248 Vertex 3475 0.0315075 0.0822626 -0.0343627 Vertex 3476 0.0262949 0.0788202 -0.0340236 Vertex 3477 -0.0883014 0.151166 -0.00654938 Vertex 3478 0.0150491 0.0658903 -0.0232972 Vertex 3479 0.062435 0.054924 -0.0224048 Vertex 3480 -0.0958193 0.166215 -0.0074895 Vertex 3481 -0.0128027 0.139223 -0.0194607 Vertex 3482 -0.0585721 0.0857613 0.0192463 Vertex 3483 0.0189908 0.135524 -0.00293984 Vertex 3484 0.0736269 0.110773 0.00401628 Vertex 3485 0.0424156 0.0562297 0.00377257 Vertex 3486 -0.068864 0.075406 0.0177391 Vertex 3487 -0.0843674 0.151233 0.000394463 Vertex 3488 0.0534386 0.0786755 0.00979294 Vertex 3489 0.0404389 0.158253 -0.0221525 Vertex 3490 -0.0178521 0.130901 -0.0173458 Vertex 3491 0.0249642 0.0763837 -0.0352709 Vertex 3492 -0.0547591 0.146352 0.00322754 Vertex 3493 -0.0838373 0.142396 0.0130043 Vertex 3494 0.00353458 0.0574202 0.0113485 Vertex 3495 -0.08246 0.101884 -0.0130656 Vertex 3496 0.0340145 0.0718168 -0.0382986 Vertex 3497 0.0345849 0.0622135 0.0153628 Vertex 3498 0.0193729 0.0915119 -0.0297843 Vertex 3499 -0.047602 0.144303 0.00589817 Vertex 3500 0.0346182 0.0580315 -0.0433851 Vertex 3501 0.0474908 0.0838607 -0.00731206 Vertex 3502 0.0347336 0.0593763 0.0185682 Vertex 3503 -0.0751374 0.161288 -0.0202687 Vertex 3504 0.0521301 0.109144 -0.00426796 Vertex 3505 -0.0758147 0.139542 -0.0148744 Vertex 3506 -0.0868162 0.169443 0.00904193 Vertex 3507 -0.0383944 0.141707 -0.00066645 Vertex 3508 0.0246615 0.103192 -0.010707 Vertex 3509 0.0791512 0.149428 -0.0110345 Vertex 3510 0.0134272 0.147873 -0.00553235 Vertex 3511 0.0111265 0.145428 -0.0049004 Vertex 3512 0.0361538 0.117436 0.00947632 Vertex 3513 -0.0577673 0.100294 -0.0218438 Vertex 3514 -0.0387496 0.146437 -0.0368545 Vertex 3515 0.0514014 0.074596 -0.0172216 Vertex 3516 -0.0555251 0.117356 0.00669846 Vertex 3517 0.0309683 0.0771052 0.0242527 Vertex 3518 0.0157145 0.0891688 -0.0248055 Vertex 3519 0.0535044 0.071552 0.0236 Vertex 3520 0.0512298 0.0718691 0.0226232 Vertex 3521 -0.072266 0.150643 -0.00771649 Vertex 3522 0.0494687 0.101827 -0.00597731 Vertex 3523 -0.0715379 0.0632803 -0.0361767 Vertex 3524 0.0689439 0.129775 -0.018915 Vertex 3525 0.053768 0.0711697 -0.0246193 Vertex 3526 0.0588983 0.130557 -0.0277694 Vertex 3527 0.0621244 0.130554 -0.0137929 Vertex 3528 -0.0241675 0.181834 -0.0273941 Vertex 3529 0.0183022 0.0632707 0.00409072 Vertex 3530 0.0354223 0.141854 -0.0350698 Vertex 3531 -0.0409749 0.150768 -0.0363909 Vertex 3532 -0.0865443 0.0826927 0.00202137 Vertex 3533 -0.0848842 0.0631247 -0.0351584 Vertex 3534 -0.0333691 0.0593162 0.0135218 Vertex 3535 0.0112309 0.0633408 0.0176592 Vertex 3536 0.0442612 0.0824704 0.0186881 Vertex 3537 -0.0671024 0.170045 0.00874304 Vertex 3538 -0.0348129 0.0911246 0.00631461 Vertex 3539 0.00106779 0.126657 -0.0346092 Vertex 3540 -0.0315889 0.0565041 0.0161847 Vertex 3541 0.0606976 0.107832 -0.0101142 Vertex 3542 -0.0868379 0.0588966 -0.0281672 Vertex 3543 -0.0907779 0.0577243 -0.0273745 Vertex 3544 0.0223929 0.0631318 0.0192173 Vertex 3545 0.0707708 0.108296 0.00537358 Vertex 3546 -0.0131576 0.0576702 0.0241553 Vertex 3547 0.000787034 0.0867109 -0.00460182 Vertex 3548 -0.0494593 0.167479 0.0054493 Vertex 3549 -0.0888717 0.0581947 -0.019682 Vertex 3550 -0.0786003 0.110424 -0.0131026 Vertex 3551 -0.0201291 0.173724 -0.00694788 Vertex 3552 -0.00981843 0.163934 -0.00909744 Vertex 3553 0.064374 0.097011 -0.00203945 Vertex 3554 -0.00854584 0.103367 0.00299776 Vertex 3555 -0.0803406 0.151355 0.00670394 Vertex 3556 0.0496777 0.156691 -0.0181686 Vertex 3557 -0.0188983 0.124043 -0.0191885 Vertex 3558 -0.020567 0.119734 -0.0191865 Vertex 3559 -0.102694 0.141768 -0.00327404 Vertex 3560 0.0636858 0.0870533 0.00181871 Vertex 3561 0.0343452 0.0650149 0.0218067 Vertex 3562 -0.0500542 0.132991 -0.0259043 Vertex 3563 0.0451901 0.0861754 0.0177103 Vertex 3564 0.0743812 0.0954322 0.0165926 Vertex 3565 -0.0904488 0.145223 0.0232794 Vertex 3566 -0.0855592 0.176765 0.008901 Vertex 3567 -0.083228 0.175422 0.00854583 Vertex 3568 -0.0660696 0.168497 0.0103936 Vertex 3569 -0.0238159 0.168186 -0.0241442 Vertex 3570 -0.0345927 0.179298 -0.0070338 Vertex 3571 -0.0719312 0.164181 -0.00259412 Vertex 3572 -0.027375 0.0615262 -0.0406992 Vertex 3573 -0.0371929 0.0933506 0.00162647 Vertex 3574 -0.0631187 0.0664957 -0.0343356 Vertex 3575 0.0412447 0.145162 -0.00384841 Vertex 3576 0.0506394 0.135162 -0.0324504 Vertex 3577 -0.052854 0.152285 0.00583664 Vertex 3578 -0.00884511 0.141311 -0.0174439 Vertex 3579 0.0296387 0.0672608 -0.0320303 Vertex 3580 -0.0622255 0.1129 0.00881079 Vertex 3581 0.0176408 0.118879 -0.0204477 Vertex 3582 0.0420164 0.0913773 0.0155159 Vertex 3583 0.0192402 0.0807564 -0.0317798 Vertex 3584 -0.00621958 0.189601 -0.0287193 Vertex 3585 0.0260479 0.128443 -0.00905988 Vertex 3586 0.0281848 0.126895 -0.0101689 Vertex 3587 0.0045694 0.0602595 0.0124229 Vertex 3588 -0.0295805 0.167855 -0.0406377 Vertex 3589 0.00527323 0.0607749 0.0138926 Vertex 3590 -0.0549894 0.145265 -0.00473423 Vertex 3591 -0.0426506 0.106318 -0.00854331 Vertex 3592 -0.0229084 0.0619217 -0.0359066 Vertex 3593 0.0813903 0.0770887 0.00895498 Vertex 3594 -0.00514595 0.0797644 -0.0257814 Vertex 3595 -0.0914096 0.174747 -0.00450977 Vertex 3596 0.0447692 0.0687872 -0.038445 Vertex 3597 -0.0822089 0.0676466 -0.0197689 Vertex 3598 0.00649531 0.0613959 0.0239779 Vertex 3599 0.0356106 0.0857738 0.028516 Vertex 3600 -0.00227977 0.194414 -0.0311362 Vertex 3601 -0.0167532 0.0549171 0.00902736 Vertex 3602 -0.0128612 0.086688 0.00825826 Vertex 3603 -0.0600066 0.140035 -0.0234847 Vertex 3604 0.0303803 0.117145 -0.0170765 Vertex 3605 -0.0566012 0.142621 0.00818795 Vertex 3606 0.0178991 0.0655875 -0.00082786 Vertex 3607 -0.0254229 0.0538337 0.00373336 Vertex 3608 -0.0837076 0.0916127 0.00756467 Vertex 3609 -0.0199488 0.06605 -0.0340245 Vertex 3610 -0.0476871 0.109736 0.00326045 Vertex 3611 -0.0737287 0.141831 -0.0107233 Vertex 3612 -0.0707606 0.142643 -0.00811335 Vertex 3613 0.0404116 0.063425 0.0186556 Vertex 3614 0.0422099 0.0814096 0.0131577 Vertex 3615 -0.0524512 0.175333 -0.0344473 Vertex 3616 0.0601227 0.134872 -0.0123963 Vertex 3617 0.0357429 0.116113 -0.0306347 Vertex 3618 0.00836947 0.122309 -0.00222912 Vertex 3619 -0.0289022 0.150059 -0.0338644 Vertex 3620 0.0202524 0.0780551 0.0114708 Vertex 3621 0.0223401 0.0776453 0.013764 Vertex 3622 -0.060486 0.173953 0.00576651 Vertex 3623 -0.0554878 0.165897 -0.0293738 Vertex 3624 0.07957 0.0741894 0.00710558 Vertex 3625 0.0927166 0.148984 -0.00433492 Vertex 3626 -0.0727246 0.173443 -0.000592414 Vertex 3627 -0.0788052 0.145801 -0.0127403 Vertex 3628 0.012048 0.118839 -0.00766043 Vertex 3629 0.00543144 0.0558775 0.0243469 Vertex 3630 0.00497195 0.0554177 0.0226005 Vertex 3631 -0.0773997 0.166488 -0.0160218 Vertex 3632 0.0339168 0.0630625 0.0183799 Vertex 3633 0.0432847 0.079561 0.0186427 Vertex 3634 0.0167982 0.0830615 -0.0296066 Vertex 3635 0.0134963 0.153455 -0.0278394 Vertex 3636 0.0165645 0.15334 -0.0292815 Vertex 3637 -0.0232015 0.0754352 0.0100286 Vertex 3638 0.0124074 0.153704 -0.0119941 Vertex 3639 0.0108234 0.150353 -0.00817307 Vertex 3640 0.0161898 0.150265 -0.00650108 Vertex 3641 0.0279194 0.156896 -0.0153749 Vertex 3642 0.0510234 0.116774 -0.033155 Vertex 3643 -0.0211008 0.123917 -0.0180276 Vertex 3644 -0.0403105 0.0813461 0.0214274 Vertex 3645 -0.0459235 0.0850678 0.0211416 Vertex 3646 -0.044177 0.172888 0.00138371 Vertex 3647 0.0341276 0.0810528 0.00173773 Vertex 3648 -0.0662998 0.0669778 0.0318546 Vertex 3649 -0.0656375 0.17489 0.0034905 Vertex 3650 -0.0303028 0.0549907 -0.00430413 Vertex 3651 -0.0575065 0.158853 -0.0160468 Vertex 3652 0.00651339 0.14375 -0.00474038 Vertex 3653 0.00410838 0.143433 -0.00541175 Vertex 3654 -0.067861 0.0685601 0.0162704 Vertex 3655 0.0360331 0.0922424 0.0239848 Vertex 3656 0.0657534 0.126154 -0.0127599 Vertex 3657 -0.0693022 0.122699 -0.0019928 Vertex 3658 -0.0296767 0.0528837 -0.0177744 Vertex 3659 -0.0765986 0.140861 -0.00621606 Vertex 3660 -0.0468528 0.103661 -0.0173894 Vertex 3661 -0.0547035 0.103371 -0.0217836 Vertex 3662 -0.0508884 0.110508 -0.0235985 Vertex 3663 -0.0665911 0.145469 0.0123104 Vertex 3664 -0.0833858 0.0589862 -0.0314211 Vertex 3665 -0.072236 0.119468 -0.0135932 Vertex 3666 -0.100544 0.142575 0.000174857 Vertex 3667 0.0675975 0.137772 -0.0164167 Vertex 3668 0.0674236 0.136431 -0.0170342 Vertex 3669 0.066708 0.136266 -0.0166638 Vertex 3670 0.0282559 0.0638261 -0.0456214 Vertex 3671 -0.0315066 0.0952562 -0.0206612 Vertex 3672 -0.0323815 0.0927235 -0.0232768 Vertex 3673 0.058779 0.0807713 0.0205686 Vertex 3674 0.0389243 0.126309 -0.0332782 Vertex 3675 0.0151939 0.0768412 -0.00762706 Vertex 3676 -0.0589008 0.0541301 -0.0166136 Vertex 3677 0.074664 0.131886 -0.00947831 Vertex 3678 0.0530284 0.11521 -0.032426 Vertex 3679 0.0466672 0.122447 -0.0343872 Vertex 3680 -0.0823376 0.0584989 -0.0236122 Vertex 3681 0.0837147 0.0884122 0.0111531 Vertex 3682 -0.021364 0.0573594 0.0258109 Vertex 3683 -0.0790235 0.141181 -0.013674 Vertex 3684 -0.0826607 0.140662 -0.0116973 Vertex 3685 -0.021234 0.108 -0.00423932 Vertex 3686 0.00858416 0.0631662 0.0247105 Vertex 3687 0.0442628 0.139097 -0.00291696 Vertex 3688 0.0424017 0.137794 -0.00217972 Vertex 3689 0.0228822 0.0623349 -0.0279713 Vertex 3690 0.0397794 0.160233 -0.0214341 Vertex 3691 -0.0147982 0.149039 -0.00882935 Vertex 3692 -0.101861 0.145713 -0.00182319 Vertex 3693 -0.0324925 0.173351 -0.0221318 Vertex 3694 -0.086183 0.143061 -0.0101884 Vertex 3695 -0.0847083 0.0637119 -0.0196992 Vertex 3696 -0.0731292 0.175261 -0.00605863 Vertex 3697 0.0161833 0.0667071 0.00202573 Vertex 3698 -0.0508276 0.140453 -0.0243361 Vertex 3699 -0.0427243 0.164121 -0.0374799 Vertex 3700 -0.0122609 0.103842 -0.0335788 Vertex 3701 -0.0122168 0.0963449 -0.0331915 Vertex 3702 -0.0607442 0.0987967 -0.0224007 Vertex 3703 -0.0324116 0.131547 -0.00484748 Vertex 3704 -0.0616773 0.07264 0.0415233 Vertex 3705 -0.0574037 0.144979 -0.0170698 Vertex 3706 0.0216029 0.0858757 -0.0329897 Vertex 3707 -0.0745539 0.166878 -0.0144391 Vertex 3708 0.0699802 0.101049 0.0115187 Vertex 3709 0.0231305 0.0612067 0.00389396 Vertex 3710 -0.010968 0.0838892 0.00606845 Vertex 3711 0.0398526 0.0824155 -0.0354217 Vertex 3712 0.00129264 0.140591 -0.0312911 Vertex 3713 0.0149423 0.0660514 0.00369341 Vertex 3714 -0.100469 0.144685 0.00276578 Vertex 3715 0.00730901 0.0579954 0.00419474 Vertex 3716 -0.0995896 0.147166 0.0155468 Vertex 3717 -0.0240065 0.13033 -0.0215726 Vertex 3718 -0.0494988 0.0556249 -0.0224587 Vertex 3719 0.0484409 0.0909501 0.0257184 Vertex 3720 0.0821616 0.143546 -0.014777 Vertex 3721 -0.103434 0.157779 0.013445 Vertex 3722 0.0620354 0.0849005 0.00256677 Vertex 3723 0.0396178 0.0831136 0.0133485 Vertex 3724 0.0168879 0.123003 -0.0101845 Vertex 3725 -0.0565148 0.0559107 0.0104885 Vertex 3726 0.0141633 0.0891016 -0.01879 Vertex 3727 -0.0793076 0.150067 0.0131678 Vertex 3728 -0.0262983 0.133752 -0.0156722 Vertex 3729 0.0340464 0.158068 -0.0178391 Vertex 3730 -0.0868363 0.17085 0.0155797 Vertex 3731 -0.0363234 0.147837 -0.0367872 Vertex 3732 -0.0920701 0.168695 -0.000701687 Vertex 3733 0.0516511 0.0756762 0.019928 Vertex 3734 -0.0486461 0.152861 0.00419223 Vertex 3735 0.0624433 0.110135 -0.0161485 Vertex 3736 0.0656654 0.128982 -0.014439 Vertex 3737 -0.0786832 0.147706 -0.0109879 Vertex 3738 -0.0751812 0.0662712 0.0118713 Vertex 3739 -0.010553 0.172609 -0.0109768 Vertex 3740 -0.0248976 0.0611165 -0.0272112 Vertex 3741 -0.0171366 0.16606 -0.00814523 Vertex 3742 -0.0868149 0.0585152 -0.0193219 Vertex 3743 0.0280716 0.124296 -0.0156998 Vertex 3744 0.023743 0.123945 -0.0175496 Vertex 3745 0.075186 0.0682656 0.0208944 Vertex 3746 0.0742413 0.0760979 0.0236791 Vertex 3747 -0.0447862 0.0953757 0.00323881 Vertex 3748 -0.0637648 0.142758 0.0118376 Vertex 3749 -0.0281358 0.128293 -0.0162949 Vertex 3750 0.0252616 0.130391 -0.0315016 Vertex 3751 -0.072633 0.149092 0.00568153 Vertex 3752 -0.0438129 0.0535102 -0.037301 Vertex 3753 -0.0393315 0.169144 0.000551395 Vertex 3754 0.0949729 0.135238 -0.0107413 Vertex 3755 0.0800631 0.131142 -0.0186243 Vertex 3756 0.047359 0.0742038 0.0182893 Vertex 3757 -0.0486778 0.0793856 -0.033728 Vertex 3758 -0.0447541 0.0753421 -0.0333751 Vertex 3759 -0.0418957 0.0722143 -0.0337015 Vertex 3760 0.0130907 0.124671 -0.0332149 Vertex 3761 -0.0209602 0.161433 -0.024989 Vertex 3762 -0.0382625 0.124928 -0.0264481 Vertex 3763 0.0673309 0.132624 -0.0184818 Vertex 3764 -0.0537487 0.093715 -0.0204407 Vertex 3765 0.036427 0.0623849 -0.0496893 Vertex 3766 -0.0649328 0.172181 0.00400307 Vertex 3767 -0.0874027 0.0578151 -0.0350082 Vertex 3768 -0.046752 0.0558902 -0.0236694 Vertex 3769 -0.0114548 0.0909852 -0.0324111 Vertex 3770 -0.0286931 0.183361 -0.0060701 Vertex 3771 0.0323029 0.0608952 -0.043172 Vertex 3772 0.0314794 0.0589238 -0.046136 Vertex 3773 -0.0199973 0.159113 -0.0244684 Vertex 3774 -0.00694836 0.12951 -0.00318379 Vertex 3775 -0.0348643 0.145867 -0.0362578 Vertex 3776 -0.0413844 0.0608927 0.0292248 Vertex 3777 -0.042356 0.0640051 0.0284266 Vertex 3778 -0.000940924 0.0792131 -0.00628822 Vertex 3779 -0.00083615 0.0776775 -0.010159 Vertex 3780 -0.0390956 0.13464 -0.0289031 Vertex 3781 -0.0158033 0.0978952 -0.0324004 Vertex 3782 0.022051 0.0721343 -0.0396037 Vertex 3783 0.0104346 0.105319 -0.02047 Vertex 3784 0.0566597 0.146714 -0.0220084 Vertex 3785 -0.0666241 0.143571 -0.00984216 Vertex 3786 -0.0911803 0.141897 0.00251764 Vertex 3787 -0.091481 0.142656 0.00441315 Vertex 3788 -0.0578953 0.15618 -0.0200636 Vertex 3789 -0.107656 0.157836 0.0133389 Vertex 3790 -0.0809001 0.0693626 -0.0283531 Vertex 3791 -0.0390723 0.072409 -0.0294936 Vertex 3792 0.0548396 0.152688 -0.0176469 Vertex 3793 0.00272714 0.148839 -0.0253826 Vertex 3794 -0.0229386 0.111634 -0.0188797 Vertex 3795 0.0426669 0.0783786 0.0191027 Vertex 3796 0.0427826 0.077613 0.0207588 Vertex 3797 0.0341861 0.153514 -0.00868328 Vertex 3798 -0.0606652 0.175235 0.00618944 Vertex 3799 0.0277433 0.066822 0.0122848 Vertex 3800 0.0276646 0.0667115 0.0120835 Vertex 3801 -0.0602066 0.0570203 0.0112025 Vertex 3802 -0.0183572 0.0694203 -0.0305066 Vertex 3803 -0.0411015 0.097857 -0.00838128 Vertex 3804 -0.0377177 0.0564278 -0.0413563 Vertex 3805 -0.0528844 0.143673 -0.0218908 Vertex 3806 -0.0532303 0.14267 -0.0230068 Vertex 3807 0.00959786 0.0654425 0.0237614 Vertex 3808 -0.0693957 0.0883485 0.0151524 Vertex 3809 -0.0369769 0.193679 -0.0184929 Vertex 3810 0.0552908 0.140033 -0.00829791 Vertex 3811 -0.0286109 0.148116 -0.0015924 Vertex 3812 0.0617476 0.0589419 -0.0229629 Vertex 3813 0.0442523 0.0778019 0.00387649 Vertex 3814 -0.0295655 0.162649 -0.0278274 Vertex 3815 -0.0350617 0.0703281 -0.0372381 Vertex 3816 -0.0848596 0.061144 -0.0245448 Vertex 3817 -0.0517602 0.137305 -0.00342551 Vertex 3818 0.0841039 0.134768 -0.0164558 Vertex 3819 0.0604029 0.0675098 -0.00951886 Vertex 3820 0.0146043 0.0623726 -0.0167963 Vertex 3821 0.0167928 0.0593747 -0.0170948 Vertex 3822 -0.0636781 0.12892 -0.00421762 Vertex 3823 -0.0196956 0.0891271 -0.0324672 Vertex 3824 0.0826399 0.149775 -0.0093442 Vertex 3825 -0.0207774 0.140483 -0.0214087 Vertex 3826 0.0541178 0.0992173 -0.00979851 Vertex 3827 0.0100335 0.0577189 0.0132528 Vertex 3828 0.0328006 0.0714719 0.025978 Vertex 3829 -0.0356997 0.0533829 -0.0185246 Vertex 3830 0.0521601 0.140601 -0.0304798 Vertex 3831 0.0740123 0.0568769 -0.00778197 Vertex 3832 0.0182755 0.0627391 0.0234242 Vertex 3833 0.0459836 0.0797474 -0.0119483 Vertex 3834 0.0487637 0.0786051 -0.0066044 Vertex 3835 -0.0470282 0.108846 -0.0214036 Vertex 3836 0.0677178 0.0561664 -0.0173433 Vertex 3837 -0.00448655 0.150567 -0.0220423 Vertex 3838 -0.0883619 0.140901 0.0210067 Vertex 3839 0.0225794 0.157231 -0.0175499 Vertex 3840 -0.0583959 0.0854775 -0.0349708 Vertex 3841 -0.0623683 0.0902491 -0.0322964 Vertex 3842 -0.0787753 0.142296 0.0116558 Vertex 3843 0.0620833 0.121481 -0.0119523 Vertex 3844 -0.022008 0.0901668 -0.0356054 Vertex 3845 -0.0284707 0.121909 -0.0186235 Vertex 3846 0.0461283 0.121265 -0.00140375 Vertex 3847 0.00687099 0.0588786 0.00257858 Vertex 3848 0.0163348 0.0598378 -0.0100478 Vertex 3849 -0.0403014 0.174324 -0.0335552 Vertex 3850 -0.0144581 0.128088 -0.0106371 Vertex 3851 -0.035748 0.147551 0.00111862 Vertex 3852 -0.0461041 0.0803405 -0.0290541 Vertex 3853 -0.0914164 0.163646 -0.00456655 Vertex 3854 0.00296905 0.107743 -0.0326127 Vertex 3855 -0.0100662 0.134423 -0.0235149 Vertex 3856 -0.0547273 0.163588 -0.0300515 Vertex 3857 0.00545623 0.0984405 -0.00666856 Vertex 3858 -0.0597924 0.114295 -0.0230523 Vertex 3859 -0.0671243 0.113056 -0.0214875 Vertex 3860 -0.0623206 0.11121 -0.0224768 Vertex 3861 0.0454291 0.0860754 0.0176607 Vertex 3862 0.0449228 0.0864962 0.0158968 Vertex 3863 0.0442497 0.0895377 -0.00763247 Vertex 3864 0.0233128 0.161674 -0.0203182 Vertex 3865 -0.0624931 0.145151 0.000583389 Vertex 3866 -0.0273841 0.149987 -0.03704 Vertex 3867 -0.0135699 0.165661 -0.0102471 Vertex 3868 0.0457446 0.0551843 -0.00578043 Vertex 3869 0.00255654 0.102499 -0.0309856 Vertex 3870 -0.0720999 0.0594579 -0.0186978 Vertex 3871 0.0440312 0.0877292 -0.0306409 Vertex 3872 0.0404814 0.0884906 -0.033222 Vertex 3873 -0.00301735 0.088132 -0.0284179 Vertex 3874 -0.0471862 0.0733912 -0.0359793 Vertex 3875 0.0424655 0.0822309 0.0141666 Vertex 3876 0.0415706 0.0814289 0.0147713 Vertex 3877 -0.0445569 0.0633394 0.0149409 Vertex 3878 0.00614724 0.0558794 0.0110667 Vertex 3879 -0.0728058 0.114217 0.00518315 Vertex 3880 0.0284421 0.0767675 -0.0420972 Vertex 3881 -0.037757 0.0873236 0.0116085 Vertex 3882 -0.021836 0.162919 -0.0125461 Vertex 3883 0.0556304 0.055112 0.011203 Vertex 3884 -0.0402992 0.059466 0.0321378 Vertex 3885 -0.0645833 0.0618316 0.0354123 Vertex 3886 -0.0632313 0.0813561 0.0169218 Vertex 3887 -0.00968919 0.0651673 -0.0155399 Vertex 3888 -0.0392213 0.178226 -0.0238398 Vertex 3889 0.000623343 0.154256 -0.0223433 Vertex 3890 0.0457807 0.155903 -0.0217366 Vertex 3891 0.0530958 0.109123 -0.0309283 Vertex 3892 -0.0418198 0.184601 -0.0363146 Vertex 3893 0.0308902 0.0804376 0.0193653 Vertex 3894 -0.0837105 0.0670386 -0.00546839 Vertex 3895 0.0736546 0.125177 -0.0202724 Vertex 3896 0.0704527 0.127147 -0.0200943 Vertex 3897 0.0495451 0.0909585 -0.00901499 Vertex 3898 -0.033357 0.194912 -0.0230279 Vertex 3899 0.0443038 0.156849 -0.022227 Vertex 3900 -0.0834297 0.0655708 -0.0238709 Vertex 3901 -0.0742056 0.116541 -0.0140757 Vertex 3902 -0.0392457 0.107319 -0.0119754 Vertex 3903 -0.0769112 0.149653 0.0116859 Vertex 3904 0.0130403 0.157622 -0.0233399 Vertex 3905 -0.036525 0.189748 -0.0217636 Vertex 3906 -0.0620836 0.139413 -0.0220192 Vertex 3907 -0.033088 0.0719117 0.021775 Vertex 3908 0.0703758 0.105355 -0.0114743 Vertex 3909 0.0321758 0.0568634 0.0108368 Vertex 3910 0.00721965 0.109107 -0.0291289 Vertex 3911 -0.0215446 0.148922 -0.00975563 Vertex 3912 0.0156787 0.155568 -0.0247026 Vertex 3913 -0.062478 0.0687806 0.0403652 Vertex 3914 -0.0539061 0.0575246 0.0364083 Vertex 3915 -0.0301413 0.172229 -0.0123384 Vertex 3916 0.0338581 0.12948 -0.0312219 Vertex 3917 -0.038959 0.0879812 -0.0230723 Vertex 3918 -0.0229235 0.0567197 0.00529355 Vertex 3919 -0.0180599 0.104538 0.000466447 Vertex 3920 -0.0225424 0.121959 -0.0174873 Vertex 3921 -0.0821774 0.0684458 -0.0121011 Vertex 3922 -0.0390665 0.11186 -0.0171688 Vertex 3923 -0.0726021 0.170173 -0.017022 Vertex 3924 0.0448673 0.131139 -0.00184247 Vertex 3925 0.0295737 0.0838527 -1.1539e-005 Vertex 3926 0.0469925 0.092478 0.0195796 Vertex 3927 -0.00325373 0.19418 -0.0299989 Vertex 3928 -0.0880551 0.165902 -0.0151795 Vertex 3929 -0.0797513 0.074502 0.0114697 Vertex 3930 -0.0339104 0.175989 -0.00265064 Vertex 3931 0.0428487 0.11925 -0.00174616 Vertex 3932 0.0410083 0.113312 -0.00146873 Vertex 3933 -0.0857139 0.0789726 -0.0113718 Vertex 3934 -0.0880468 0.178719 0.00546906 Vertex 3935 -0.0872838 0.179566 0.00466012 Vertex 3936 -0.012058 0.135808 -0.0167272 Vertex 3937 -0.0565146 0.136725 -0.015552 Vertex 3938 -0.0815126 0.0601631 -0.0390167 Vertex 3939 -0.000795268 0.113114 0.00087884 Vertex 3940 -0.0342464 0.146076 -0.0319015 Vertex 3941 -0.0258722 0.0726866 -0.0356401 Vertex 3942 0.0600178 0.147479 -0.0176453 Vertex 3943 -0.0226443 0.154428 -0.0117842 Vertex 3944 -0.0583881 0.181149 -0.0120183 Vertex 3945 -0.0657576 0.153642 -0.00409849 Vertex 3946 -0.0873761 0.140613 0.021957 Vertex 3947 0.0338722 0.0555357 0.0218611 Vertex 3948 -0.0639046 0.148966 0.00995595 Vertex 3949 -0.103174 0.156473 0.0129167 Vertex 3950 -0.0988533 0.153682 0.0115356 Vertex 3951 0.068424 0.0934825 0.0168348 Vertex 3952 0.0712657 0.0966555 0.0156163 Vertex 3953 -0.0537569 0.106792 -0.0225883 Vertex 3954 -0.0571176 0.109462 -0.0232927 Vertex 3955 -0.0572625 0.106239 -0.022411 Vertex 3956 -0.0547906 0.111759 -0.0237612 Vertex 3957 -0.059782 0.118479 -0.0230546 Vertex 3958 -0.0611223 0.123943 -0.0221288 Vertex 3959 0.0683754 0.0962141 -0.00329058 Vertex 3960 0.0674933 0.0906927 6.97476e-005 Vertex 3961 0.0785224 0.110568 -0.0108288 Vertex 3962 0.00390899 0.150908 -0.0169689 Vertex 3963 -0.0783216 0.164255 -0.0171706 Vertex 3964 0.0626835 0.0874122 0.00260494 Vertex 3965 0.0720584 0.145619 -0.00751047 Vertex 3966 0.0256996 0.0528079 -0.00695063 Vertex 3967 -0.0180538 0.0556539 -0.01335 Vertex 3968 -0.0694739 0.165269 -0.0193541 Vertex 3969 0.0586394 0.0765463 0.0234718 Vertex 3970 0.0257767 0.139906 -0.00302593 Vertex 3971 0.0238311 0.142006 -0.00295855 Vertex 3972 -0.0702362 0.102521 0.0114017 Vertex 3973 0.0571768 0.0776217 0.00120155 Vertex 3974 -0.0234146 0.0669925 -0.0381071 Vertex 3975 -0.0234831 0.174748 -0.0416108 Vertex 3976 -0.000311931 0.117527 -0.0347858 Vertex 3977 0.0436859 0.149797 -0.0296302 Vertex 3978 0.0255801 0.0915394 -0.0049567 Vertex 3979 0.0640729 0.0613373 0.0234552 Vertex 3980 -0.0793054 0.111722 -0.0105144 Vertex 3981 -0.00839066 0.126131 -0.00272237 Vertex 3982 -0.030504 0.153593 -0.0392958 Vertex 3983 -0.0425086 0.156203 -0.0362804 Vertex 3984 0.0317373 0.0742673 0.0260658 Vertex 3985 -0.0411332 0.0732108 0.0282656 Vertex 3986 -0.0272021 0.0768489 -0.0339767 Vertex 3987 -0.0899003 0.14398 0.0171313 Vertex 3988 -0.0025393 0.15112 -0.0218245 Vertex 3989 -0.0694145 0.173688 -0.000633787 Vertex 3990 0.0361938 0.0861464 0.0304666 Vertex 3991 0.0779137 0.0760029 -9.83356e-005 Vertex 3992 0.0850015 0.124634 -0.0122675 Vertex 3993 -0.0127754 0.0787795 0.0133102 Vertex 3994 -0.0210711 0.155306 -0.00548747 Vertex 3995 -0.0724677 0.0936994 -0.025849 Vertex 3996 0.00910357 0.0583059 0.0167575 Vertex 3997 -0.0204978 0.154886 -0.0116736 Vertex 3998 0.0100847 0.0660531 0.00622524 Vertex 3999 -0.0945161 0.151397 -0.00101485 Vertex 4000 -0.0860402 0.077645 -0.00936348 Vertex 4001 0.0282559 0.0704443 -0.0441066 Vertex 4002 -0.0333531 0.0579294 0.0167357 Vertex 4003 0.0246248 0.0851667 0.0132851 Vertex 4004 -0.0814336 0.140571 0.0179145 Vertex 4005 -0.087897 0.058918 -0.0364981 Vertex 4006 -0.0690173 0.140158 -0.0201528 Vertex 4007 -0.0767413 0.0848421 -0.021621 Vertex 4008 -0.0811968 0.0974682 -0.0169645 Vertex 4009 0.00461943 0.111123 -0.0018173 Vertex 4010 -0.0892332 0.166697 -0.00377475 Vertex 4011 0.0229572 0.0655143 0.0101197 Vertex 4012 0.00701232 0.064005 0.0115289 Vertex 4013 0.034288 0.15525 -0.0124454 Vertex 4014 -0.00277968 0.12214 -0.000293073 Vertex 4015 -0.00222535 0.118944 0.000406971 Vertex 4016 0.041152 0.129095 -0.00176962 Vertex 4017 0.0318725 0.0906434 0.0180197 Vertex 4018 0.0464485 0.0871915 0.0206728 Vertex 4019 0.0638065 0.141249 -0.0176692 Vertex 4020 -0.0711418 0.0590227 -0.0163646 Vertex 4021 -0.0603333 0.143534 -0.0205543 Vertex 4022 0.0397474 0.155518 -0.0246105 Vertex 4023 -0.0545313 0.175387 -0.0266684 Vertex 4024 0.0807077 0.0751461 0.0154524 Vertex 4025 -0.0881509 0.151463 0.0125872 Vertex 4026 -0.0219781 0.0963899 -0.0302351 Vertex 4027 0.0382635 0.0760227 0.013066 Vertex 4028 0.0226969 0.0568332 -0.0226102 Vertex 4029 -0.0438585 0.108701 -0.0185708 Vertex 4030 -0.0884026 0.15267 0.0151123 Vertex 4031 -0.0871466 0.152077 0.0144861 Vertex 4032 0.0506575 0.0917061 -0.0136073 Vertex 4033 0.0423632 0.0636279 -0.0290405 Vertex 4034 -0.0598028 0.153748 -0.0187292 Vertex 4035 -0.048077 0.0618581 0.0152588 Vertex 4036 -0.0458745 0.0651494 0.016813 Vertex 4037 0.0360283 0.103036 0.0212186 Vertex 4038 0.0649619 0.0539948 0.0128527 Vertex 4039 0.0588152 0.128468 -0.00792938 Vertex 4040 0.0341557 0.123484 -0.0297 Vertex 4041 -0.0224681 0.122549 -0.0158342 Vertex 4042 -0.0334166 0.142366 -0.00413806 Vertex 4043 -0.0456567 0.0863071 -0.0244487 Vertex 4044 0.0617679 0.0532113 0.0114363 Vertex 4045 0.0643743 0.053223 0.00673569 Vertex 4046 0.0715253 0.148768 -0.00944302 Vertex 4047 -0.0888547 0.139245 -0.00662422 Vertex 4048 -0.0520496 0.08353 0.0208471 Vertex 4049 -0.0278288 0.149158 -0.0346344 Vertex 4050 -0.0221469 0.16147 -0.0409402 Vertex 4051 -0.0211461 0.0541552 -0.0155205 Vertex 4052 -0.0293465 0.151041 -0.00198371 Vertex 4053 -0.0237625 0.0950472 -0.0298041 Vertex 4054 0.0815743 0.109069 -0.00234643 Vertex 4055 0.0733155 0.0900878 -0.00305693 Vertex 4056 0.0672522 0.103916 0.00453735 Vertex 4057 0.0317468 0.0805457 0.0224996 Vertex 4058 0.02506 0.0680731 -0.0423104 Vertex 4059 -0.089077 0.171521 0.00367823 Vertex 4060 0.0466071 0.097821 -0.00582288 Vertex 4061 0.0514154 0.0964049 -0.0237013 Vertex 4062 0.0492425 0.0957266 -0.0266945 Vertex 4063 0.0896239 0.140561 -0.00827291 Vertex 4064 0.0366349 0.0678451 0.0165052 Vertex 4065 -0.0876684 0.0571151 -0.036263 Vertex 4066 0.00614653 0.0935259 -0.0180772 Vertex 4067 -0.0835539 0.178711 0.00765773 Vertex 4068 -0.0179178 0.115209 -0.0254852 Vertex 4069 0.0485603 0.122953 -0.0338554 Vertex 4070 -0.0750285 0.142397 0.00874058 Vertex 4071 0.0446016 0.0849343 0.0184954 Vertex 4072 -0.0878634 0.084103 -0.00657872 Vertex 4073 -0.0726785 0.165915 -0.0164752 Vertex 4074 -0.0809544 0.0589017 -0.0383163 Vertex 4075 0.0566582 0.11366 -0.029002 Vertex 4076 -0.0207096 0.111324 -0.00683307 Vertex 4077 -0.0139352 0.118913 -0.0287021 Vertex 4078 0.0340515 0.0842514 0.00650904 Vertex 4079 0.0330183 0.0606924 0.017994 Vertex 4080 0.0276844 0.094007 -0.00469688 Vertex 4081 0.00575014 0.150519 -0.012633 Vertex 4082 0.0435005 0.0560418 -0.0189621 Vertex 4083 0.0486114 0.0752535 -0.0133136 Vertex 4084 0.0407652 0.0946843 0.0310023 Vertex 4085 -0.0222262 0.116892 -0.0180095 Vertex 4086 0.0166285 0.135276 -0.00273882 Vertex 4087 -0.0727505 0.12081 -0.00760181 Vertex 4088 -0.00317499 0.102529 0.00179913 Vertex 4089 0.044587 0.153569 -0.0241192 Vertex 4090 -0.0258882 0.0659489 -0.0404359 Vertex 4091 0.0297871 0.131666 -0.00591114 Vertex 4092 0.0371383 0.130656 -0.0337225 Vertex 4093 0.0483379 0.14311 -0.0315658 Vertex 4094 0.00615318 0.0599801 0.0212104 Vertex 4095 -0.0702638 0.173769 -0.0214619 Vertex 4096 -0.0452306 0.180242 -0.0112926 Vertex 4097 0.0355654 0.114509 0.00646224 Vertex 4098 -0.0826915 0.150654 0.00878678 Vertex 4099 0.0286836 0.0677999 0.0224659 Vertex 4100 -0.0222491 0.143306 -0.0244924 Vertex 4101 0.0259852 0.0686014 -0.0382635 Vertex 4102 -0.0774247 0.0807417 0.013266 Vertex 4103 -0.077853 0.0745169 0.0126232 Vertex 4104 -0.0128593 0.119214 -0.00254374 Vertex 4105 -0.037588 0.180198 -0.00700564 Vertex 4106 0.0148433 0.0862851 -0.0118459 Vertex 4107 0.0141619 0.0878813 -0.0136203 Vertex 4108 0.0363084 0.101539 0.0217598 Vertex 4109 0.0156771 0.0706438 -0.00510346 Vertex 4110 -0.0175123 0.0533501 0.0233794 Vertex 4111 -0.0561657 0.0573674 0.0120074 Vertex 4112 -0.0660734 0.151223 -0.0115081 Vertex 4113 0.0275453 0.0866838 -0.00190799 Vertex 4114 -6.63455e-005 0.135379 -0.00291245 Vertex 4115 0.0472167 0.149862 -0.0273197 Vertex 4116 -0.0443659 0.146042 0.00410829 Vertex 4117 0.0466481 0.0788183 -0.0175645 Vertex 4118 -0.0409529 0.0888741 0.0154042 Vertex 4119 -0.0403698 0.0862744 0.0194005 Vertex 4120 -0.0200913 0.110417 -0.0255195 Vertex 4121 -0.0728106 0.171505 -0.00918233 Vertex 4122 -0.0378968 0.0690009 0.0268244 Vertex 4123 0.0443718 0.085765 0.018905 Vertex 4124 0.043359 0.0866473 0.0179919 Vertex 4125 -0.0663282 0.179413 -0.0123493 Vertex 4126 0.0458997 0.143717 -0.0325762 Vertex 4127 -0.0794678 0.0667683 -0.0183295 Vertex 4128 -0.0288309 0.094695 0.00185494 Vertex 4129 -0.0434363 0.102808 -0.0140532 Vertex 4130 0.0369094 0.0647676 -0.0447678 Vertex 4131 -0.0419741 0.0550182 -0.0396646 Vertex 4132 -0.0802642 0.0664949 -0.0315781 Vertex 4133 -0.0792902 0.066742 -0.0322817 Vertex 4134 0.0345012 0.148016 -0.0342453 Vertex 4135 0.0382896 0.143748 -0.0341965 Vertex 4136 0.0566362 0.150475 -0.0177487 Vertex 4137 -0.00674158 0.0945474 0.00341427 Vertex 4138 -0.0606283 0.0789873 -0.0358058 Vertex 4139 -0.0783948 0.17567 -0.00229335 Vertex 4140 -0.0688644 0.178031 -0.00217316 Vertex 4141 0.028024 0.149757 -0.0335684 Vertex 4142 -0.0268602 0.0529917 0.0162567 Vertex 4143 0.0428141 0.133187 -0.00191854 Vertex 4144 0.0257038 0.0709595 -0.0406633 Vertex 4145 0.0255003 0.0569871 0.0216456 Vertex 4146 -0.0424375 0.172845 -0.0369638 Vertex 4147 -0.0286236 0.129546 -0.0228842 Vertex 4148 0.00285635 0.130418 -0.034609 Vertex 4149 0.0650455 0.0658843 -0.0116716 Vertex 4150 0.0206381 0.141875 -0.0356265 Vertex 4151 0.0242269 0.14242 -0.0355493 Vertex 4152 0.0277845 0.151163 -0.00553375 Vertex 4153 -0.00121613 0.144461 -0.0260122 Vertex 4154 -0.0149469 0.0952439 0.00455031 Vertex 4155 0.00659559 0.133349 -0.00185947 Vertex 4156 0.00301523 0.133317 -0.001894 Vertex 4157 0.0325959 0.0601625 -0.0482509 Vertex 4158 -0.0577667 0.151197 -0.0261284 Vertex 4159 -0.0877294 0.180575 -0.00268972 Vertex 4160 -0.0264219 0.152162 -0.0411474 Vertex 4161 -0.08308 0.0594108 -0.019533 Vertex 4162 -0.0655279 0.0758514 0.0212843 Vertex 4163 -0.0854672 0.0618839 -0.0369175 Vertex 4164 -0.0591897 0.0804559 0.0187371 Vertex 4165 0.0516932 0.0606135 -0.0300994 Vertex 4166 0.0411282 0.0826963 0.0140817 Vertex 4167 -0.0462649 0.16808 0.00302768 Vertex 4168 -0.102663 0.1459 0.0061936 Vertex 4169 -0.0445135 0.056806 0.0116628 Vertex 4170 -0.0947326 0.172902 -0.00711815 Vertex 4171 -0.0818429 0.0672126 -0.0249494 Vertex 4172 -0.0817339 0.0613143 -0.0182926 Vertex 4173 -0.0830315 0.181722 0.000524276 Vertex 4174 -0.0469798 0.123296 0.00316594 Vertex 4175 0.0139287 0.121818 -0.0306589 Vertex 4176 -0.0286812 0.174726 -0.0422091 Vertex 4177 0.018356 0.0907782 -0.00982664 Vertex 4178 0.0510922 0.0790855 -0.00099903 Vertex 4179 0.0576225 0.11899 -0.00586742 Vertex 4180 -0.0906223 0.170848 -0.0106609 Vertex 4181 -0.0217347 0.0727573 0.0119767 Vertex 4182 0.0662221 0.0953423 0.0116751 Vertex 4183 0.0270127 0.156789 -0.0252687 Vertex 4184 0.0287391 0.0769632 -0.0346285 Vertex 4185 -0.0155902 0.125962 -0.0212569 Vertex 4186 0.0611594 0.0549696 0.0185443 Vertex 4187 0.0553124 0.0799584 0.000805268 Vertex 4188 0.0378742 0.153085 -0.0290984 Vertex 4189 -0.0904792 0.172377 0.0108556 Vertex 4190 0.0258228 0.0667266 -0.0312309 Vertex 4191 0.0622369 0.106768 -0.0116045 Vertex 4192 0.0564251 0.127424 -0.0307861 Vertex 4193 -0.0346214 0.149678 -0.0372097 Vertex 4194 0.0329766 0.0606683 0.017383 Vertex 4195 0.0330385 0.0584953 0.0161918 Vertex 4196 0.0331708 0.0584265 0.0158352 Vertex 4197 -0.0600657 0.141122 -0.0220401 Vertex 4198 0.0404518 0.134077 -0.0342409 Vertex 4199 0.0327973 0.138852 -0.0349628 Vertex 4200 0.0926327 0.135033 -0.0121871 Vertex 4201 -0.0124647 0.107029 0.00198786 Vertex 4202 -0.0246068 0.163761 -0.0246644 Vertex 4203 -0.0701298 0.178027 -0.0111743 Vertex 4204 -0.070595 0.178529 -0.00924181 Vertex 4205 -0.0233155 0.14295 -0.0158084 Vertex 4206 -0.0284773 0.100998 -0.0184161 Vertex 4207 0.048848 0.127992 -0.033684 Vertex 4208 0.0463551 0.113394 -0.00164533 Vertex 4209 -0.0462482 0.146181 -0.0318207 Vertex 4210 -0.0581139 0.144725 -0.0126741 Vertex 4211 0.0670093 0.0544681 -0.0181408 Vertex 4212 0.00039508 0.104319 -0.0329893 Vertex 4213 -0.0762899 0.170108 0.0160983 Vertex 4214 0.0456927 0.0716833 -0.0355397 Vertex 4215 -0.0201825 0.157594 -0.00473011 Vertex 4216 -0.0516532 0.0532669 0.027451 Vertex 4217 0.0414988 0.096008 0.0140074 Vertex 4218 0.0510489 0.093147 -0.00938454 Vertex 4219 0.0508847 0.122012 -0.00219757 Vertex 4220 0.085354 0.127138 -0.0127846 Vertex 4221 0.0256004 0.0595784 0.00762224 Vertex 4222 0.0293409 0.11238 -0.0113035 Vertex 4223 0.0341786 0.120624 -0.00804674 Vertex 4224 -0.0725143 0.0688927 -0.02257 Vertex 4225 -0.083704 0.0696672 -0.0269865 Vertex 4226 0.0673498 0.0545048 -0.00152567 Vertex 4227 0.00999619 0.143857 -0.0336889 Vertex 4228 0.0152847 0.143096 -0.0350477 Vertex 4229 0.0124276 0.146651 -0.033177 Vertex 4230 0.0584398 0.125042 -0.02916 Vertex 4231 0.0582807 0.122774 -0.0287345 Vertex 4232 -0.0837514 0.0639251 -0.0337778 Vertex 4233 0.0622837 0.0856875 0.0178779 Vertex 4234 -0.0608374 0.130282 -0.0172395 Vertex 4235 -0.0297326 0.0873134 -0.0292054 Vertex 4236 0.0140597 0.131073 -0.002809 Vertex 4237 -0.0231275 0.180116 -0.0239553 Vertex 4238 -0.0416146 0.142817 -0.00130491 Vertex 4239 -0.0179261 0.0937304 -0.0323174 Vertex 4240 -0.0689032 0.178775 -0.0102704 Vertex 4241 0.0452479 0.0564241 -0.000475081 Vertex 4242 0.0282983 0.0538444 -0.0213864 Vertex 4243 -0.0924905 0.15057 -0.00376985 Vertex 4244 -0.077702 0.0593494 -0.0043608 Vertex 4245 -0.0782201 0.159897 -0.0194001 Vertex 4246 -0.0247145 0.105991 -0.0102588 Vertex 4247 -0.0286329 0.171759 -0.0211547 Vertex 4248 0.0656005 0.0548372 -0.000362925 Vertex 4249 -0.0183472 0.166666 -0.0109269 Vertex 4250 -0.0296315 0.185559 -0.00363646 Vertex 4251 -0.0311966 0.171054 -0.00204138 Vertex 4252 0.0393407 0.139858 -0.00212985 Vertex 4253 -0.0597209 0.112375 -0.0229051 Vertex 4254 -0.0748316 0.171008 -0.00832722 Vertex 4255 -0.0538382 0.0768381 0.0295198 Vertex 4256 0.0561906 0.0800487 0.0161739 Vertex 4257 -0.023012 0.0737376 0.010084 Vertex 4258 0.0758645 0.0921737 0.0180884 Vertex 4259 -0.0784447 0.0820059 -0.0207402 Vertex 4260 0.0359144 0.0650335 -0.029613 Vertex 4261 -0.0443618 0.0789588 0.0217626 Vertex 4262 0.0439483 0.133997 -0.0340949 Vertex 4263 -0.0624429 0.0997401 -0.0223313 Vertex 4264 -0.0946303 0.155233 0.00474192 Vertex 4265 0.0180757 0.0854907 -0.0302938 Vertex 4266 0.0358078 0.0848179 -0.00195619 Vertex 4267 0.0675051 0.111999 -0.000961935 Vertex 4268 -0.0403569 0.179461 -0.0339446 Vertex 4269 -0.0987144 0.174745 -0.000728242 Vertex 4270 -0.0262017 0.149858 -0.0270024 Vertex 4271 -0.0186274 0.119314 -0.0211098 Vertex 4272 0.0164868 0.0714684 -0.0281707 Vertex 4273 0.0399894 0.145761 -0.0332418 Vertex 4274 0.0794859 0.0790049 0.0197383 Vertex 4275 0.0791284 0.0775993 0.0202747 Vertex 4276 -0.0212129 0.103401 -0.0284634 Vertex 4277 0.0457694 0.101206 -0.0040899 Vertex 4278 -0.0377443 0.0928016 -0.0149726 Vertex 4279 -0.0354778 0.0952837 -0.0146937 Vertex 4280 0.0310983 0.0654847 -0.0467575 Vertex 4281 -0.05053 0.175285 -0.0351995 Vertex 4282 -0.0711992 0.0744565 0.0155488 Vertex 4283 0.0371574 0.122805 0.00465625 Vertex 4284 0.0318135 0.0698482 -0.045278 Vertex 4285 -0.0548838 0.144824 -0.020716 Vertex 4286 0.0228427 0.0535577 -0.00579776 Vertex 4287 0.0505908 0.120103 -0.0335778 Vertex 4288 0.050714 0.122643 -0.0334715 Vertex 4289 -0.0925719 0.173813 0.00444363 Vertex 4290 0.054069 0.121708 -0.0321502 Vertex 4291 -0.0463025 0.170248 0.00233082 Vertex 4292 -0.0430732 0.179947 -0.0225835 Vertex 4293 -0.0502668 0.0967062 0.0100185 Vertex 4294 0.0410592 0.117044 0.00892355 Vertex 4295 0.0369212 0.156309 -0.0165974 Vertex 4296 0.0558137 0.0586613 0.0227871 Vertex 4297 -0.0707398 0.17559 -0.00173093 Vertex 4298 -0.0159553 0.0999865 -0.0321238 Vertex 4299 0.000383569 0.0943504 -0.0284301 Vertex 4300 -0.0762922 0.141868 -0.016283 Vertex 4301 -0.0982858 0.155409 0.0127431 Vertex 4302 -0.0715526 0.0915902 0.0142964 Vertex 4303 -0.0538187 0.174384 0.00452507 Vertex 4304 -0.0219012 0.0826647 0.00891335 Vertex 4305 0.0770858 0.122933 -0.0133947 Vertex 4306 -0.0797188 0.153309 0.0116135 Vertex 4307 -0.0833675 0.0943272 -0.0154059 Vertex 4308 0.0075038 0.157102 -0.0226276 Vertex 4309 0.0421613 0.0539414 0.0149683 Vertex 4310 0.0689753 0.0689584 -0.00819606 Vertex 4311 -0.0180838 0.166441 -0.00898959 Vertex 4312 -0.0106222 0.0762017 0.00595401 Vertex 4313 -0.0868352 0.158679 -0.00689 Vertex 4314 0.0720879 0.139172 -0.00943125 Vertex 4315 0.0255825 0.0773014 -0.0402225 Vertex 4316 0.0660604 0.0639282 -0.0144157 Vertex 4317 -0.0285843 0.0538879 -0.000925421 Vertex 4318 -0.0522382 0.160283 -0.00308658 Vertex 4319 -0.0539317 0.0540445 0.0193064 Vertex 4320 -0.0552961 0.053394 0.0219329 Vertex 4321 -0.0247405 0.128308 -0.0191672 Vertex 4322 -0.0464336 0.141114 -0.0271338 Vertex 4323 -0.0651045 0.0789493 0.0171669 Vertex 4324 0.00105753 0.119806 -2.96913e-005 Vertex 4325 0.00469874 0.12293 -0.000783336 Vertex 4326 0.0331244 0.0757558 -0.0342432 Vertex 4327 0.0928847 0.131974 -0.01079 Vertex 4328 0.0325903 0.151365 -0.00631625 Vertex 4329 -0.10504 0.146499 0.00189773 Vertex 4330 -0.0466429 0.0602394 0.0137629 Vertex 4331 -0.00546168 0.0713673 -0.0171729 Vertex 4332 -0.00309182 0.0745914 -0.0168291 Vertex 4333 -0.0690147 0.142051 -0.0205684 Vertex 4334 -0.0677555 0.109524 -0.0214615 Vertex 4335 0.0303896 0.160053 -0.0229713 Vertex 4336 -0.0352972 0.0805462 0.0205061 Vertex 4337 -0.071047 0.0611739 -0.0321398 Vertex 4338 0.0205694 0.160728 -0.0194691 Vertex 4339 -0.0250109 0.103134 -0.00562596 Vertex 4340 0.0170799 0.0726615 -0.0368936 Vertex 4341 -0.0103584 0.0705657 0.00204884 Vertex 4342 -0.00280989 0.12731 -0.0333799 Vertex 4343 0.0612965 0.113159 -0.0199607 Vertex 4344 -0.0416855 0.175475 0.000778469 Vertex 4345 -0.0744569 0.142111 0.0133543 Vertex 4346 0.0124567 0.0648478 0.023196 Vertex 4347 -0.0853838 0.0949203 -0.010636 Vertex 4348 -0.0646471 0.144093 0.000280426 Vertex 4349 -0.0134874 0.123639 -0.0262846 Vertex 4350 -0.0604947 0.153467 0.00218543 Vertex 4351 0.0219185 0.0631435 -0.0447782 Vertex 4352 -0.0814153 0.063218 -0.00653741 Vertex 4353 0.0391429 0.133035 -0.0343018 Vertex 4354 0.0336942 0.114431 -0.0054079 Vertex 4355 0.0389159 0.122947 -0.00258644 Vertex 4356 0.00390402 0.155035 -0.0208932 Vertex 4357 0.0529217 0.10473 -0.028885 Vertex 4358 -0.0567292 0.0547573 -0.0190392 Vertex 4359 0.0789803 0.13068 -0.0101364 Vertex 4360 0.00513215 0.0567555 0.0222984 Vertex 4361 -0.0242249 0.0642746 -0.0398053 Vertex 4362 0.0110534 0.0644008 0.0166304 Vertex 4363 -0.0120056 0.102133 0.00294295 Vertex 4364 0.0301712 0.129895 -0.030436 Vertex 4365 0.060415 0.0539705 -0.0209551 Vertex 4366 -0.0887736 0.178326 -0.00268404 Vertex 4367 -0.0101362 0.139028 -0.016327 Vertex 4368 0.0887946 0.146604 -0.010846 Vertex 4369 0.0472377 0.0866418 0.0252027 Vertex 4370 -0.0795824 0.0668031 -0.0241121 Vertex 4371 0.00410802 0.0898906 -0.0194977 Vertex 4372 -0.0534327 0.151283 -0.0280332 Vertex 4373 0.0427592 0.0977398 0.0137886 Vertex 4374 -0.0692708 0.0694778 -0.0314936 Vertex 4375 0.0410823 0.0738363 0.0148716 Vertex 4376 -0.0627226 0.176966 0.00375812 Vertex 4377 -0.0868905 0.163733 -0.00499757 Vertex 4378 -0.0451342 0.112927 -0.0227097 Vertex 4379 -0.0163146 0.105524 -0.0319013 Vertex 4380 -0.0714265 0.118058 0.00288083 Vertex 4381 -0.0720343 0.116191 0.0038376 Vertex 4382 0.0289995 0.0621467 -0.0283263 Vertex 4383 0.0651329 0.0801393 0.00316558 Vertex 4384 -0.0614312 0.169277 -0.0270648 Vertex 4385 -0.0779403 0.109194 -0.0153884 Vertex 4386 0.0360755 0.106155 0.0143355 Vertex 4387 0.0214096 0.144618 -0.00340321 Vertex 4388 0.0775202 0.0888841 -0.00277662 Vertex 4389 0.0765822 0.0871285 -0.00218376 Vertex 4390 -0.0302697 0.157996 -0.0410687 Vertex 4391 -0.0586524 0.090919 0.0184904 Vertex 4392 -0.062868 0.0883805 0.0171069 Vertex 4393 0.0159994 0.0776417 0.00408524 Vertex 4394 -0.0267284 0.154405 -0.0361607 Vertex 4395 -0.0355337 0.185068 -0.0230513 Vertex 4396 0.0354901 0.0658944 -0.0428641 Vertex 4397 -0.0108429 0.144135 -0.0196491 Vertex 4398 0.00956812 0.158361 -0.022044 Vertex 4399 0.0389941 0.0724017 -0.0362867 Vertex 4400 0.0250582 0.062328 0.00683802 Vertex 4401 -0.0459431 0.0558715 0.0297851 Vertex 4402 0.0838375 0.0880755 0.00425098 Vertex 4403 0.0825138 0.0923839 -0.000646902 Vertex 4404 -0.0238837 0.135711 -0.0235532 Vertex 4405 -0.0448748 0.11112 -0.0212158 Vertex 4406 -0.0419905 0.128073 0.000831277 Vertex 4407 -0.0482002 0.154783 0.00414521 Vertex 4408 -0.032856 0.158504 -0.0408692 Vertex 4409 -0.0426859 0.135183 -0.0285433 Vertex 4410 -0.0932466 0.154121 0.0127997 Vertex 4411 -0.00878778 0.117324 7.62848e-005 Vertex 4412 0.0217153 0.139746 -0.00291661 Vertex 4413 0.0243146 0.135647 -0.00379201 Vertex 4414 -0.0839916 0.0703702 -0.00928916 Vertex 4415 -0.0599343 0.126543 0.00163422 Vertex 4416 0.0470593 0.142749 -0.00457675 Vertex 4417 0.0439722 0.143734 -0.00431656 Vertex 4418 0.0398955 0.150379 -0.00696639 Vertex 4419 -0.0274607 0.171532 -0.0376203 Vertex 4420 0.0189926 0.0670806 0.00883611 Vertex 4421 0.00857177 0.128933 -0.0016553 Vertex 4422 0.0744736 0.0832897 0.0220473 Vertex 4423 0.05758 0.0542544 -0.00909629 Vertex 4424 -0.0484118 0.0851791 -0.026214 Vertex 4425 -0.0468653 0.113352 0.00340463 Vertex 4426 -0.0419512 0.116501 -0.00158363 Vertex 4427 -0.0812315 0.105127 0.0021345 Vertex 4428 -0.0429425 0.174426 -0.034813 Vertex 4429 0.0644083 0.0902257 0.000894653 Vertex 4430 0.0398269 0.0787565 0.0150615 Vertex 4431 0.0418992 0.0821014 0.0149069 Vertex 4432 0.0398521 0.0787894 0.0150583 Vertex 4433 0.0269863 0.0656899 0.0110151 Vertex 4434 0.025731 0.0665175 0.0111792 Vertex 4435 0.0754094 0.0952912 -0.00647108 Vertex 4436 0.0125877 0.0624382 0.00241324 Vertex 4437 -0.0628761 0.101049 0.0123343 Vertex 4438 -0.0606553 0.104013 0.0112665 Vertex 4439 0.0283567 0.0863029 -0.0348734 Vertex 4440 0.0272231 0.0894303 -0.0347466 Vertex 4441 0.0599757 0.102966 -0.0138018 Vertex 4442 -0.0381526 0.13927 -0.00169495 Vertex 4443 -0.0296343 0.0970235 -0.0215844 Vertex 4444 0.0692736 0.0874333 0.000397282 Vertex 4445 -0.0662628 0.17388 -0.0218453 Vertex 4446 0.0566064 0.104294 -0.0221595 Vertex 4447 0.04671 0.135888 -0.0338328 Vertex 4448 0.0674117 0.0816096 0.0237008 Vertex 4449 -0.0821932 0.164119 0.0106215 Vertex 4450 -0.0815587 0.16381 0.0126248 Vertex 4451 0.0222673 0.0558866 0.019738 Vertex 4452 -0.0543952 0.171321 -0.0310678 Vertex 4453 0.0510731 0.134946 -0.00371846 Vertex 4454 0.048252 0.139753 -0.00387797 Vertex 4455 0.0223778 0.0848534 0.00590811 Vertex 4456 -0.0724755 0.0883422 -0.0296555 Vertex 4457 0.0479717 0.0821589 -0.00701346 Vertex 4458 0.0256121 0.127103 -0.0107731 Vertex 4459 -0.0217323 0.172281 -0.0110748 Vertex 4460 -0.0584003 0.104669 -0.0222337 Vertex 4461 -0.0637194 0.121633 0.0037502 Vertex 4462 -0.0619231 0.119911 0.0053837 Vertex 4463 0.0346537 0.096676 -0.0348492 Vertex 4464 0.0301733 0.0760285 -0.0400814 Vertex 4465 -0.07368 0.0779435 0.0147637 Vertex 4466 -0.00745127 0.141392 -0.0169452 Vertex 4467 0.0766664 0.146711 -0.0115003 Vertex 4468 0.0216636 0.0831108 0.00986634 Vertex 4469 -0.0193255 0.112307 -0.0253065 Vertex 4470 -0.00442566 0.141343 -0.0251775 Vertex 4471 0.0306685 0.0770524 0.0186868 Vertex 4472 0.0813022 0.0897602 0.0152236 Vertex 4473 0.0639138 0.0725295 -0.00568401 Vertex 4474 0.0623954 0.0721347 -0.00124504 Vertex 4475 0.0949809 0.13812 -0.00829438 Vertex 4476 -0.0481554 0.0667969 -0.0361481 Vertex 4477 -0.0833287 0.0683034 -0.0255404 Vertex 4478 -0.0474294 0.100199 -0.0151579 Vertex 4479 -0.0366102 0.0975441 -0.0123884 Vertex 4480 0.0769671 0.120877 -0.0110566 Vertex 4481 -0.0185588 0.174179 -0.00953464 Vertex 4482 0.0257661 0.10471 -0.0260491 Vertex 4483 0.024095 0.10267 -0.0253746 Vertex 4484 -0.0815099 0.170186 0.0162179 Vertex 4485 -0.024295 0.140395 -0.0146169 Vertex 4486 -0.104328 0.142274 -0.000691908 Vertex 4487 0.0439762 0.154889 -0.0178101 Vertex 4488 -0.0670773 0.0649672 -0.0342657 Vertex 4489 0.0540269 0.135298 -0.0309151 Vertex 4490 0.0709351 0.116735 -0.00133511 Vertex 4491 0.0701552 0.11414 0.000434747 Vertex 4492 0.0372196 0.10627 0.0168723 Vertex 4493 -0.093046 0.144503 -0.00645218 Vertex 4494 -0.0797856 0.15119 0.00808513 Vertex 4495 0.0398702 0.0751218 0.0118573 Vertex 4496 -0.057981 0.155285 -0.0201596 Vertex 4497 -0.0225094 0.161296 -0.0215138 Vertex 4498 0.0805766 0.111065 -0.00628986 Vertex 4499 0.0507526 0.0771538 -0.004533 Vertex 4500 0.0811354 0.0872094 -0.00023707 Vertex 4501 0.0572343 0.097527 -0.0112538 Vertex 4502 -0.0131852 0.0665606 0.0037006 Vertex 4503 -0.0807445 0.148826 -0.00400219 Vertex 4504 0.0406726 0.104772 0.0244606 Vertex 4505 0.0466072 0.104116 -0.00339766 Vertex 4506 -0.0706936 0.0815595 -0.0308976 Vertex 4507 0.0428972 0.0820732 0.0156792 Vertex 4508 -0.0838211 0.102541 -0.00435506 Vertex 4509 -0.0837931 0.101755 -0.00918114 Vertex 4510 0.0859186 0.128727 -0.0126401 Vertex 4511 0.0227843 0.126671 -0.0103185 Vertex 4512 -0.0862662 0.0604022 -0.0300427 Vertex 4513 0.0408247 0.115464 0.011932 Vertex 4514 -0.0363853 0.0678406 -0.0370586 Vertex 4515 -0.0476579 0.057101 -0.0254913 Vertex 4516 -0.082114 0.141455 0.0164362 Vertex 4517 -0.0438457 0.112318 -0.00173543 Vertex 4518 0.0688056 0.103793 0.00734441 Vertex 4519 -0.0986192 0.177881 -0.00210206 Vertex 4520 -0.0955976 0.179393 0.000403055 Vertex 4521 -0.0643759 0.0699662 0.0372605 Vertex 4522 0.0395512 0.0599923 -0.0425802 Vertex 4523 0.0384759 0.0577946 -0.0475287 Vertex 4524 -0.0856003 0.172558 -0.00704718 Vertex 4525 -0.0100881 0.161416 -0.00856637 Vertex 4526 0.0111577 0.139634 -0.00285173 Vertex 4527 0.0503802 0.152296 -0.0174797 Vertex 4528 0.0465548 0.145672 -0.0310579 Vertex 4529 0.0582602 0.111706 -0.0270033 Vertex 4530 0.0557163 0.107543 -0.0276012 Vertex 4531 -0.0201466 0.161027 -0.00604781 Vertex 4532 0.0281107 0.0881041 0.0134642 Vertex 4533 0.0376458 0.0904467 0.0126055 Vertex 4534 -0.0352787 0.182862 0.000151276 Vertex 4535 0.0365404 0.0740374 -0.0354785 Vertex 4536 0.0783458 0.0948968 -0.0056618 Vertex 4537 -0.0512563 0.146196 -0.00149939 Vertex 4538 -0.066672 0.146848 -0.0207219 Vertex 4539 -0.0515093 0.172645 0.00351336 Vertex 4540 -0.0871343 0.0761041 -0.0061134 Vertex 4541 0.0177682 0.0724754 -0.0358086 Vertex 4542 0.0104506 0.151901 -0.0275633 Vertex 4543 -0.0962014 0.142516 -0.00200691 Vertex 4544 -0.0373118 0.0949909 -0.00835396 Vertex 4545 -0.0202145 0.0737328 0.0112592 Vertex 4546 0.0357348 0.128658 -0.00436683 Vertex 4547 0.0180975 0.160144 -0.0205361 Vertex 4548 -0.081522 0.103207 -0.0143243 Vertex 4549 -0.0458648 0.0680653 0.0329362 Vertex 4550 0.00710162 0.119492 -0.00205942 Vertex 4551 -0.0950687 0.142861 0.000597906 Vertex 4552 0.0146571 0.071528 -0.000674202 Vertex 4553 0.034814 0.0539396 0.00428771 Vertex 4554 0.0395852 0.0668913 -0.0403441 Vertex 4555 0.0421033 0.109053 -0.00170854 Vertex 4556 0.0419514 0.106192 -0.00215144 Vertex 4557 -0.047499 0.0977584 0.00497281 Vertex 4558 -0.0143526 0.0669032 0.0198075 Vertex 4559 0.0827268 0.146323 -0.00690037 Vertex 4560 -0.0540474 0.134924 -0.00322216 Vertex 4561 -0.0798674 0.0742498 -0.0178653 Vertex 4562 -0.0229033 0.1492 -0.0105548 Vertex 4563 -0.0269345 0.0760381 0.0164893 Vertex 4564 -0.0291778 0.14355 -0.00624236 Vertex 4565 0.0477988 0.0562995 -0.016427 Vertex 4566 0.0585704 0.143343 -0.0213823 Vertex 4567 0.0245955 0.066252 -0.0419682 Vertex 4568 -0.0657701 0.0597445 0.012726 Vertex 4569 -0.0620921 0.173658 -0.0249986 Vertex 4570 -0.0429062 0.188454 -0.0206163 Vertex 4571 0.0494302 0.0656768 -0.0333641 Vertex 4572 -0.0768117 0.0671674 -0.0317437 Vertex 4573 0.0674327 0.136677 -0.0143312 Vertex 4574 -0.0287771 0.16709 -0.0248007 Vertex 4575 0.00409396 0.152937 -0.0185579 Vertex 4576 0.0898713 0.142385 -0.011476 Vertex 4577 -0.0407453 0.142141 0.00132856 Vertex 4578 -0.0691675 0.142359 -0.00263758 Vertex 4579 -0.0898357 0.0605185 -0.0288037 Vertex 4580 -0.034187 0.0589979 0.0157515 Vertex 4581 0.0316601 0.0572244 0.0154832 Vertex 4582 0.0305745 0.0579433 0.0140117 Vertex 4583 0.0349357 0.0566857 0.0219169 Vertex 4584 0.0365937 0.0556702 0.0245719 Vertex 4585 0.035886 0.0565792 0.0229494 Vertex 4586 -0.0228759 0.115233 -0.0132699 Vertex 4587 -0.0248358 0.109532 -0.0125289 Vertex 4588 -0.0542642 0.0689809 0.0359724 Vertex 4589 -0.0758673 0.0875716 -0.0229661 Vertex 4590 -0.0748479 0.0844627 -0.024801 Vertex 4591 -0.0523872 0.085 -0.0320411 Vertex 4592 -0.0589266 0.172777 0.0044745 Vertex 4593 0.0489019 0.0857518 -0.00919578 Vertex 4594 -0.0584606 0.0723871 0.0395619 Vertex 4595 0.094144 0.137012 -0.0116513 Vertex 4596 0.0182519 0.1333 -0.0346946 Vertex 4597 -0.0430386 0.1157 -0.0237023 Vertex 4598 -0.0483027 0.113395 -0.0239826 Vertex 4599 0.0336213 0.0909119 0.0124812 Vertex 4600 -0.0649539 0.117941 -0.0212723 Vertex 4601 0.0526991 0.138623 -0.0306826 Vertex 4602 -0.0100056 0.0712373 0.00805212 Vertex 4603 0.0600009 0.14111 -0.0214926 Vertex 4604 -0.0515772 0.162437 -0.031688 Vertex 4605 0.0602376 0.0694008 -0.00570174 Vertex 4606 0.0708938 0.0787401 0.0236234 Vertex 4607 0.034229 0.0536051 -0.0208108 Vertex 4608 -0.0281365 0.0870811 0.00880893 Vertex 4609 0.00775989 0.1273 -0.035029 Vertex 4610 0.00479848 0.121311 -0.0345712 Vertex 4611 -0.00113043 0.096048 -0.0307737 Vertex 4612 0.0641509 0.114783 -0.0168873 Vertex 4613 -0.0115727 0.0775459 0.0119251 Vertex 4614 -0.0323091 0.169663 -0.00103314 Vertex 4615 -0.0681522 0.069283 0.017658 Vertex 4616 -0.0781105 0.173622 -0.00519132 Vertex 4617 0.061362 0.0541294 -0.00282945 Vertex 4618 0.0314488 0.0602015 -0.0269454 Vertex 4619 0.0400442 0.0588937 -0.0230698 Vertex 4620 0.00126605 0.083025 -0.0113235 Vertex 4621 0.0576462 0.0729122 -0.00281457 Vertex 4622 -0.0517918 0.0533504 -0.0140543 Vertex 4623 -0.0433854 0.143701 0.00241651 Vertex 4624 0.0394626 0.108672 0.00797452 Vertex 4625 -0.0417097 0.145641 -0.0321945 Vertex 4626 0.0686416 0.10141 0.00929571 Vertex 4627 0.0726545 0.0708903 0.0241319 Vertex 4628 -0.0944174 0.171054 -0.00017243 Vertex 4629 -0.034918 0.142894 -0.00195674 Vertex 4630 -0.0352313 0.0548351 -0.0412893 Vertex 4631 -0.0609518 0.0532075 -0.00408874 Vertex 4632 0.0374488 0.0891954 -0.00305993 Vertex 4633 -0.0202672 0.0538167 0.0255818 Vertex 4634 -0.0997097 0.154265 0.00525605 Vertex 4635 0.0605015 0.0682079 -0.00673678 Vertex 4636 0.0254231 0.154555 -0.0288795 Vertex 4637 0.030251 0.0781829 -0.0339228 Vertex 4638 0.0612763 0.119477 -0.0243533 Vertex 4639 0.0606012 0.1159 -0.0238087 Vertex 4640 0.0626144 0.0834771 0.0211428 Vertex 4641 -0.0890511 0.162302 -0.00833959 Vertex 4642 -0.0481753 0.15509 -0.0310563 Vertex 4643 -0.0248348 0.141632 -0.0256423 Vertex 4644 -0.0340641 0.0536776 -0.0274635 Vertex 4645 0.0438364 0.137484 -0.0341304 Vertex 4646 0.01383 0.128042 -0.0343403 Vertex 4647 0.0665384 0.124217 -0.0097667 Vertex 4648 0.0687926 0.134254 -0.0186673 Vertex 4649 0.0163214 0.160914 -0.0203853 Vertex 4650 0.0277853 0.141838 -0.0354027 Vertex 4651 -0.0602226 0.142094 -0.0246302 Vertex 4652 -0.0173368 0.15153 -0.0062664 Vertex 4653 0.0381205 0.0700072 0.0163361 Vertex 4654 -0.085177 0.148348 -0.00776304 Vertex 4655 0.0495047 0.148584 -0.0270074 Vertex 4656 -0.0537371 0.102632 0.00948073 Vertex 4657 0.00942313 0.143798 -0.00429688 Vertex 4658 0.00870473 0.148558 -0.00793869 Vertex 4659 -0.0836911 0.169786 0.00554581 Vertex 4660 -0.0764408 0.156796 -0.0165591 Vertex 4661 -0.0740563 0.104116 0.0100179 Vertex 4662 0.0276255 0.0538035 -0.00630784 Vertex 4663 -0.0606931 0.153144 -0.0153718 Vertex 4664 -0.0525432 0.15682 0.00324043 Vertex 4665 -0.0922463 0.175305 0.00719945 Vertex 4666 -0.0399664 0.143641 0.00296715 Vertex 4667 -0.0292138 0.185152 -0.00667986 Vertex 4668 0.0581488 0.134183 -0.0273335 Vertex 4669 0.0379933 0.161632 -0.0199337 Vertex 4670 -0.0714267 0.148088 0.0116433 Vertex 4671 -0.0209535 0.164942 -0.00479477 Vertex 4672 -0.023041 0.174905 -0.0441562 Vertex 4673 0.0328896 0.0563838 -0.0468126 Vertex 4674 -0.0647162 0.177824 -0.0162627 Vertex 4675 -0.0222409 0.0788932 0.0101766 Vertex 4676 -0.0784092 0.104302 -0.0177377 Vertex 4677 -0.0739416 0.174431 -0.0172291 Vertex 4678 0.0366797 0.0795114 0.0292667 Vertex 4679 0.0152959 0.0604551 0.00213336 Vertex 4680 -0.0397837 0.13453 -0.000663165 Vertex 4681 0.0428571 0.0789731 -0.00133136 Vertex 4682 -0.0683079 0.163218 -0.0230938 Vertex 4683 -0.0684332 0.0857175 0.0156414 Vertex 4684 -0.0169788 0.0894523 0.00928612 Vertex 4685 0.0549618 0.124003 -0.00372264 Vertex 4686 -0.0224585 0.151276 -0.0252287 Vertex 4687 -0.0356901 0.0556751 -0.0024908 Vertex 4688 -0.0123097 0.133578 -0.0147829 Vertex 4689 -0.0251036 0.0810791 0.0102962 Vertex 4690 0.0583231 0.107565 -0.010089 Vertex 4691 0.0573446 0.103651 -0.00986667 Vertex 4692 -0.0481753 0.142856 -0.00381679 Vertex 4693 -0.0843266 0.0748043 0.00500451 Vertex 4694 0.0239492 0.076317 -0.0393206 Vertex 4695 -0.0795654 0.110639 -0.0014288 Vertex 4696 0.0300163 0.125367 -0.0111377 Vertex 4697 -0.0465076 0.178688 -0.0362895 Vertex 4698 0.0631398 0.126797 -0.0136842 Vertex 4699 -0.0505151 0.108246 -0.0222846 Vertex 4700 -0.0509014 0.0837842 -0.0316658 Vertex 4701 0.0287239 0.0734712 0.0163114 Vertex 4702 0.0452311 0.0888643 -0.0270422 Vertex 4703 -0.0673221 0.172462 -0.000383911 Vertex 4704 0.00677577 0.141724 -0.00395251 Vertex 4705 -0.0302103 0.171294 -0.0146433 Vertex 4706 0.0147874 0.140343 -0.0353936 Vertex 4707 0.032808 0.145752 -0.0348471 Vertex 4708 -0.0789374 0.0611124 -0.0398671 Vertex 4709 -0.00691096 0.190535 -0.0321648 Vertex 4710 -0.0153012 0.114795 -0.00217655 Vertex 4711 -0.0159747 0.117515 -0.00451957 Vertex 4712 0.00975902 0.0650732 0.00891933 Vertex 4713 -0.0678922 0.0819905 -0.0330926 Vertex 4714 -0.0512847 0.0713546 0.0337122 Vertex 4715 -0.0724872 0.175295 -0.0190109 Vertex 4716 -0.0591197 0.0724581 -0.034141 Vertex 4717 0.0776379 0.0913327 0.0176372 Vertex 4718 -0.0737503 0.119583 -0.0028749 Vertex 4719 -0.0113505 0.0804759 -0.030082 Vertex 4720 0.0226396 0.0591562 0.0085578 Vertex 4721 0.0511466 0.0729943 -0.0115897 Vertex 4722 -0.0667773 0.171563 -0.0242768 Vertex 4723 -0.058355 0.0596416 -0.0230385 Vertex 4724 -0.00619238 0.109062 0.00199639 Vertex 4725 -0.00954614 0.059697 0.0163111 Vertex 4726 0.0511082 0.145706 -0.0279338 Vertex 4727 -0.100755 0.145698 0.00542582 Vertex 4728 -0.0871638 0.0795882 -0.00385319 Vertex 4729 -0.0567427 0.0551206 0.0342191 Vertex 4730 -0.00315345 0.136505 -0.00481222 Vertex 4731 -0.00302464 0.134192 -0.00375093 Vertex 4732 0.0840826 0.0929215 0.00926219 Vertex 4733 0.0118973 0.148788 -0.03155 Vertex 4734 0.0435793 0.082857 -0.0335151 Vertex 4735 0.0477555 0.0813143 -0.0294334 Vertex 4736 -0.0712921 0.167259 0.0152209 Vertex 4737 -0.0945889 0.167977 -0.0042775 Vertex 4738 0.043611 0.143927 -0.0328683 Vertex 4739 0.00309502 0.120709 -0.000553328 Vertex 4740 -0.0622409 0.158761 -0.0247676 Vertex 4741 0.0487117 0.13688 -0.00330848 Vertex 4742 -0.00985075 0.0806667 0.00526378 Vertex 4743 0.0727314 0.140229 -0.0172948 Vertex 4744 -0.0955981 0.169502 -0.0043577 Vertex 4745 -0.0124342 0.139135 -0.018277 Vertex 4746 -0.0968841 0.144474 0.019764 Vertex 4747 -0.0203719 0.140223 -0.0229306 Vertex 4748 0.0154641 0.138821 -0.00261593 Vertex 4749 0.0808679 0.129768 -0.010508 Vertex 4750 -0.056952 0.108338 0.00900283 Vertex 4751 -0.0198281 0.15252 -0.0241674 Vertex 4752 0.0703426 0.109987 -0.0144613 Vertex 4753 0.0681191 0.113122 -0.0152051 Vertex 4754 -0.0399662 0.179543 -0.0356914 Vertex 4755 -0.0325629 0.079474 -0.0299082 Vertex 4756 0.0711101 0.0720125 -9.55731e-005 Vertex 4757 -0.0397906 0.148713 -0.0363653 Vertex 4758 0.0235387 0.155227 -0.0280078 Vertex 4759 0.0792213 0.144195 -0.0150866 Vertex 4760 -0.0988338 0.1449 0.00585204 Vertex 4761 0.0796789 0.124661 -0.0126142 Vertex 4762 -0.0479632 0.0685687 -0.035538 Vertex 4763 0.0252232 0.0976621 -0.0315863 Vertex 4764 -0.0345183 0.133718 -0.00285684 Vertex 4765 -0.0395915 0.0587214 0.0121966 Vertex 4766 -0.0816012 0.0881551 -0.0182871 Vertex 4767 -0.0678721 0.0599241 -0.0192683 Vertex 4768 -0.0825096 0.142583 -0.0123838 Vertex 4769 -0.055381 0.177757 -0.0232093 Vertex 4770 -0.0599692 0.101612 0.0116823 Vertex 4771 -0.0275474 0.175372 -0.00674838 Vertex 4772 -0.0196727 0.0701948 -0.0351467 Vertex 4773 -0.00338177 0.0758539 -0.00350132 Vertex 4774 0.0172666 0.14746 -0.0341306 Vertex 4775 -0.00666603 0.109659 -0.0340271 Vertex 4776 -0.0594841 0.16003 0.00713448 Vertex 4777 0.0722643 0.0653057 0.0221011 Vertex 4778 -0.0825669 0.1399 0.0185685 Vertex 4779 -0.0366241 0.122509 -0.0240824 Vertex 4780 0.0101463 0.114113 -0.00768371 Vertex 4781 -0.0977988 0.150079 -0.00190241 Vertex 4782 0.0349084 0.0933822 0.0143514 Vertex 4783 0.0446022 0.105214 0.0143114 Vertex 4784 0.0562448 0.0716117 0.0246817 Vertex 4785 0.00638794 0.0645737 0.0118278 Vertex 4786 -0.0350728 0.150941 -0.038028 Vertex 4787 0.0426678 0.0767812 0.0202283 Vertex 4788 0.0414562 0.148769 -0.00637521 Vertex 4789 0.0162852 0.117642 -0.0174841 Vertex 4790 0.0210093 0.122602 -0.0183964 Vertex 4791 -0.0643954 0.068843 0.0388817 Vertex 4792 -0.0783504 0.165639 0.00670246 Vertex 4793 -0.0514475 0.0759008 -0.0362656 Vertex 4794 -0.0151171 0.112443 -0.00121405 Vertex 4795 0.0132753 0.115628 -0.0129954 Vertex 4796 0.0122778 0.112066 -0.0145227 Vertex 4797 -0.0708948 0.142419 0.0139579 Vertex 4798 0.0369061 0.0750746 0.0129407 Vertex 4799 0.0369086 0.0746736 0.0128137 Vertex 4800 -0.0477538 0.0792625 0.0221689 Vertex 4801 0.0585881 0.0538648 0.0127242 Vertex 4802 -0.0647741 0.128762 -0.0108347 Vertex 4803 0.0670298 0.104571 0.00181038 Vertex 4804 0.0660748 0.115499 -0.00564476 Vertex 4805 -0.0522144 0.142713 -0.0200681 Vertex 4806 -0.0983649 0.147409 -0.00307867 Vertex 4807 -0.0679517 0.152328 0.00214767 Vertex 4808 -0.0131518 0.0720312 0.0187957 Vertex 4809 0.0724592 0.148783 -0.010451 Vertex 4810 -0.0235123 0.0894485 -0.034756 Vertex 4811 -0.0638704 0.0919192 0.0152976 Vertex 4812 -0.0304561 0.185835 -0.00510934 Vertex 4813 0.00462001 0.148729 -0.0272264 Vertex 4814 0.00488756 0.144041 -0.0314331 Vertex 4815 -0.0510926 0.143361 -0.00647905 Vertex 4816 -0.0153833 0.0787862 -0.030525 Vertex 4817 0.0201637 0.0994349 -0.0157776 Vertex 4818 -0.0103307 0.160945 -0.0111854 Vertex 4819 0.0163954 0.0611633 0.00337446 Vertex 4820 -0.0284137 0.0840779 -0.0306347 Vertex 4821 -0.0691021 0.119808 0.00273777 Vertex 4822 -0.0239568 0.153908 -0.0132064 Vertex 4823 -0.0654822 0.0854949 -0.0345883 Vertex 4824 -0.0395493 0.176591 -3.71989e-005 Vertex 4825 -0.0379582 0.177982 -0.00142588 Vertex 4826 -0.0449157 0.163638 0.00284955 Vertex 4827 -0.0996439 0.151529 0.00903665 Vertex 4828 -0.0743042 0.0877728 0.0145493 Vertex 4829 -0.0776713 0.086213 0.0130196 Vertex 4830 -0.0206757 0.0578125 0.0043227 Vertex 4831 0.0491414 0.0681694 0.0229784 Vertex 4832 -0.0334059 0.15281 -0.0392622 Vertex 4833 -0.0874585 0.141303 -0.00993957 Vertex 4834 -0.0191821 0.130209 -0.0180543 Vertex 4835 -0.0654729 0.070853 0.0227428 Vertex 4836 0.0309821 0.0563542 0.0242329 Vertex 4837 -0.0105799 0.0679465 -0.0213799 Vertex 4838 -0.0266928 0.16469 -0.0184154 Vertex 4839 0.0701213 0.0722494 -0.00101796 Vertex 4840 0.0703506 0.0720659 -0.00237206 Vertex 4841 0.0408494 0.1099 0.0170424 Vertex 4842 -0.0855564 0.150215 -0.00144337 Vertex 4843 -0.0811002 0.150453 -0.00284578 Vertex 4844 -0.0265982 0.165886 -0.0196675 Vertex 4845 -0.0788452 0.106748 0.00553182 Vertex 4846 -0.00127464 0.124752 -0.000770002 Vertex 4847 0.0159587 0.0682021 0.00442478 Vertex 4848 -0.0390776 0.0552444 0.000982596 Vertex 4849 0.0106846 0.0657995 0.0148385 Vertex 4850 0.00667236 0.0620476 0.0160086 Vertex 4851 -0.0427764 0.0866917 0.0202346 Vertex 4852 0.0871747 0.143256 -0.0133843 Vertex 4853 0.0789175 0.113399 -0.0103905 Vertex 4854 -0.0350537 0.159402 -0.0398942 Vertex 4855 0.0318358 0.13956 -0.00263594 Vertex 4856 0.0345218 0.136489 -0.00261005 Vertex 4857 0.00995832 0.0645833 0.0251218 Vertex 4858 -0.0651005 0.153847 -0.0038801 Vertex 4859 -0.0653568 0.153918 -0.00266992 Vertex 4860 0.0560822 0.0966842 -0.00950294 Vertex 4861 -0.0576483 0.154367 -0.00120564 Vertex 4862 -0.0478308 0.179747 -0.0321695 Vertex 4863 -0.071293 0.170856 -0.0190915 Vertex 4864 -0.0290778 0.12439 -0.0199953 Vertex 4865 0.022767 0.066063 -0.0439787 Vertex 4866 -0.0512108 0.0960364 0.0116616 Vertex 4867 0.0265196 0.14622 -0.00332429 Vertex 4868 0.0481845 0.0796817 -0.00765329 Vertex 4869 0.0259391 0.0622189 0.0213855 Vertex 4870 0.0400162 0.0779688 -0.0348437 Vertex 4871 -0.0528753 0.109099 -0.0229828 Vertex 4872 -0.087351 0.148958 -0.00278658 Vertex 4873 0.00271398 0.0568482 0.0230463 Vertex 4874 -0.0111133 0.0656785 0.0202303 Vertex 4875 0.0601755 0.122734 -0.0266979 Vertex 4876 -0.0569796 0.151197 0.00719786 Vertex 4877 -0.0854986 0.166845 0.0103753 Vertex 4878 -0.0304327 0.178772 -0.00520959 Vertex 4879 -0.0161455 0.120527 -0.0242832 Vertex 4880 -0.0457547 0.16837 -0.0364296 Vertex 4881 0.0599186 0.127919 -0.0268453 Vertex 4882 -0.0460508 0.0625293 0.0333776 Vertex 4883 0.00335543 0.154849 -0.0204644 Vertex 4884 0.0401719 0.0549378 -0.00985593 Vertex 4885 0.0393017 0.160756 -0.0195065 Vertex 4886 0.0367691 0.0844034 -0.00226663 Vertex 4887 -0.0914389 0.171331 -0.00886651 Vertex 4888 0.0271804 0.0700032 -0.0416946 Vertex 4889 -0.0697532 0.176069 -0.0188505 Vertex 4890 -0.0130475 0.129371 -0.0228998 Vertex 4891 -0.0692265 0.177137 -0.0141001 Vertex 4892 -0.0640553 0.0619611 -0.0303401 Vertex 4893 -0.0226954 0.174641 -0.0432469 Vertex 4894 -0.0225179 0.168039 -0.00557189 Vertex 4895 -0.0427935 0.0843693 -0.0263227 Vertex 4896 0.0522027 0.143236 -0.00794276 Vertex 4897 0.0512208 0.14216 -0.00645207 Vertex 4898 -0.0335724 0.178726 -0.0248024 Vertex 4899 -0.0604713 0.165984 -0.0267583 Vertex 4900 -0.0119297 0.0988141 -0.0334283 Vertex 4901 0.0653006 0.0957524 0.00577172 Vertex 4902 -0.074649 0.164263 0.00621391 Vertex 4903 0.0228899 0.0559226 -0.000341133 Vertex 4904 -0.0467974 0.157103 -0.0322102 Vertex 4905 -0.0235887 0.147247 -0.013647 Vertex 4906 0.0139462 0.144528 -0.00391176 Vertex 4907 -0.0535394 0.143959 -0.00994942 Vertex 4908 0.0602726 0.0844353 0.003237 Vertex 4909 -0.0356356 0.12913 -0.0271225 Vertex 4910 0.0411044 0.0758191 0.0169431 Vertex 4911 -0.043032 0.142027 -0.00173737 Vertex 4912 -0.0787779 0.0664928 -0.0376132 Vertex 4913 0.0135978 0.0675141 -0.0110951 Vertex 4914 -0.000994981 0.14849 -0.0220813 Vertex 4915 -0.0153595 0.136869 -0.0189014 Vertex 4916 -0.00959506 0.12219 -0.031444 Vertex 4917 -0.00692252 0.121671 -0.0327851 Vertex 4918 0.0558832 0.129454 -0.0310946 Vertex 4919 0.0548309 0.127839 -0.031567 Vertex 4920 -0.0286621 0.15764 -0.0289532 Vertex 4921 0.0623423 0.137125 -0.0212973 Vertex 4922 0.0399422 0.147568 -0.032484 Vertex 4923 0.0342121 0.154825 -0.0279966 Vertex 4924 -0.013616 0.150241 -0.00774322 Vertex 4925 0.0105859 0.0587634 0.0271447 Vertex 4926 0.0644865 0.0984903 -0.0034283 Vertex 4927 0.0218977 0.0734606 -0.0331928 Vertex 4928 0.045083 0.0952969 -0.00551581 Vertex 4929 0.0190192 0.15522 -0.0116369 Vertex 4930 0.0375707 0.0592171 -0.0416404 Vertex 4931 0.0199342 0.0842866 -0.0318502 Vertex 4932 -0.0932734 0.165579 -0.00259607 Vertex 4933 -0.0783851 0.159021 -0.0181833 Vertex 4934 0.0316016 0.122238 -0.0249766 Vertex 4935 0.0344978 0.0557015 -0.0479046 Vertex 4936 0.0610858 0.0691761 -0.00635874 Vertex 4937 -0.0211209 0.115265 -0.0194412 Vertex 4938 -0.0885631 0.143239 0.0121566 Vertex 4939 0.0729639 0.126787 -0.00962026 Vertex 4940 0.0738766 0.121953 -0.00726094 Vertex 4941 -0.0695324 0.170017 0.00304466 Vertex 4942 -0.0332218 0.174156 -0.0358508 Vertex 4943 0.073036 0.0693616 -0.00224752 Vertex 4944 -0.0523326 0.136252 -0.0237288 Vertex 4945 -0.0773797 0.151353 -0.00326958 Vertex 4946 -0.0710178 0.0583269 0.00846469 Vertex 4947 0.0318423 0.0563171 0.0171798 Vertex 4948 -0.0839636 0.151811 0.00425254 Vertex 4949 0.0639526 0.118705 -0.0118743 Vertex 4950 -0.0219685 0.0915257 -0.0328719 Vertex 4951 0.0311286 0.155704 -0.0272533 Vertex 4952 0.0429459 0.0944818 -0.032263 Vertex 4953 -0.075503 0.0588573 -0.0230547 Vertex 4954 -0.014038 0.0866519 0.00958074 Vertex 4955 -0.0512331 0.160378 -0.0317586 Vertex 4956 0.0528844 0.103032 -0.00824127 Vertex 4957 -0.0263129 0.0871816 0.00828577 Vertex 4958 0.024799 0.147316 -0.0347744 Vertex 4959 -0.0109037 0.118671 -0.0315012 Vertex 4960 -0.0301521 0.0994378 -0.010829 Face 1 136 5 2630 Face 2 17 4266 8 Face 3 119 104 1643 Face 4 4123 38 64 Face 5 31 277 35 Face 6 35 227 32 Face 7 227 35 30 Face 8 2185 223 3 Face 9 1821 25 323 Face 10 40 130 52 Face 11 1821 323 2056 Face 12 41 52 130 Face 13 105 45 49 Face 14 107 3 223 Face 15 69 130 40 Face 16 25 2055 120 Face 17 1820 1822 25 Face 18 56 71 44 Face 19 497 296 13 Face 20 72 18 16 Face 21 10 48 14 Face 22 18 72 4221 Face 23 11 9 10 Face 24 10 9 296 Face 25 13 11 10 Face 26 82 15 97 Face 27 14 48 13 Face 28 13 48 11 Face 29 248 75 100 Face 30 14 13 2187 Face 31 248 100 76 Face 32 37 33 151 Face 33 15 3800 97 Face 34 33 122 151 Face 35 297 122 33 Face 36 6 96 115 Face 37 71 96 6 Face 38 18 106 21 Face 39 24 497 14 Face 40 2187 9 11 Face 41 184 1644 104 Face 42 3301 3300 99 Face 43 29 3300 26 Face 44 2187 11 48 Face 45 91 140 385 Face 46 110 34 39 Face 47 39 34 1879 Face 48 1879 116 39 Face 49 1643 104 95 Face 50 95 104 132 Face 51 78 80 84 Face 52 31 32 277 Face 53 32 31 30 Face 54 30 1313 32 Face 55 1313 227 28 Face 56 3300 29 3298 Face 57 2055 74 120 Face 58 1121 1 121 Face 59 7 21 2669 Face 60 3 118 2185 Face 61 195 3440 46 Face 62 126 195 46 Face 63 46 43 126 Face 64 30 35 277 Face 65 35 28 31 Face 66 28 35 32 Face 67 227 30 28 Face 68 28 30 31 Face 69 61 97 36 Face 70 3440 126 43 Face 71 126 20 195 Face 72 126 3536 3861 Face 73 97 3800 36 Face 74 20 3440 43 Face 75 43 46 20 Face 76 26 105 99 Face 77 29 26 99 Face 78 932 1122 1 Face 79 45 29 99 Face 80 154 261 1 Face 81 1 1121 154 Face 82 19 64 46 Face 83 46 64 20 Face 84 1121 143 932 Face 85 932 154 1121 Face 86 105 3298 45 Face 87 3298 29 45 Face 88 4066 58 136 Face 89 3114 140 155 Face 90 4123 23 38 Face 91 140 91 2 Face 92 2 91 3114 Face 93 2 3114 155 Face 94 2 4 140 Face 95 140 4 155 Face 96 149 76 101 Face 97 4 2 988 Face 98 101 76 100 Face 99 91 4 988 Face 100 23 41 40 Face 101 40 52 23 Face 102 27 39 116 Face 103 17 8 12 Face 104 69 40 41 Face 105 41 135 69 Face 106 20 4071 19 Face 107 4071 64 19 Face 108 130 135 41 Face 109 1313 28 32 Face 110 136 92 5 Face 111 10 497 13 Face 112 10 14 497 Face 113 296 48 10 Face 114 42 95 2065 Face 115 3299 3300 3301 Face 116 64 52 4123 Face 117 64 23 52 Face 118 128 1066 22 Face 119 1820 141 1120 Face 120 1309 847 4373 Face 121 1820 25 1821 Face 122 17 128 4266 Face 123 17 12 128 Face 124 3034 1162 1086 Face 125 2509 102 131 Face 126 248 76 63 Face 127 57 2509 147 Face 128 34 124 1879 Face 129 34 116 124 Face 130 27 1879 124 Face 131 1786 2036 2178 Face 132 136 58 117 Face 133 74 4507 2575 Face 134 213 1631 4270 Face 135 37 50 33 Face 136 37 122 50 Face 137 142 224 4859 Face 138 2508 102 57 Face 139 2508 131 102 Face 140 475 37 151 Face 141 3 4858 118 Face 142 19 3440 20 Face 143 4858 60 107 Face 144 347 2150 4015 Face 145 4787 121 3796 Face 146 42 132 1644 Face 147 184 95 132 Face 148 2630 117 58 Face 149 2630 5 117 Face 150 1120 3795 143 Face 151 232 687 133 Face 152 78 2186 70 Face 153 79 2007 78 Face 154 2 155 988 Face 155 44 71 6 Face 156 2944 72 16 Face 157 1120 932 3795 Face 158 101 75 248 Face 159 296 2187 48 Face 160 119 1544 3512 Face 161 7 2669 72 Face 162 82 146 103 Face 163 262 82 1868 Face 164 262 146 82 Face 165 110 39 124 Face 166 74 3633 125 Face 167 74 125 120 Face 168 18 21 16 Face 169 4928 4277 3258 Face 170 50 297 33 Face 171 50 151 297 Face 172 56 44 96 Face 173 1868 97 61 Face 174 1868 82 97 Face 175 125 25 1822 Face 176 2055 125 3633 Face 177 969 4055 2461 Face 178 2186 80 85 Face 179 15 103 1868 Face 180 109 6 225 Face 181 109 44 6 Face 182 385 155 4 Face 183 377 1305 152 Face 184 27 116 34 Face 185 855 102 2509 Face 186 21 4221 16 Face 187 7 18 4221 Face 188 7 4221 21 Face 189 1644 132 104 Face 190 57 147 2508 Face 191 99 49 45 Face 192 7 106 18 Face 193 7 72 106 Face 194 277 1313 30 Face 195 70 84 79 Face 196 2007 70 85 Face 197 70 2007 84 Face 198 4071 20 126 Face 199 56 109 225 Face 200 56 115 109 Face 201 1868 61 15 Face 202 37 1657 122 Face 203 149 726 100 Face 204 85 70 2186 Face 205 87 120 125 Face 206 87 2774 120 Face 207 3299 3301 134 Face 208 71 56 225 Face 209 71 225 96 Face 210 44 115 96 Face 211 44 109 115 Face 212 61 3800 15 Face 213 61 3799 3800 Face 214 61 36 3799 Face 215 88 147 2511 Face 216 2099 3590 3462 Face 217 24 277 32 Face 218 117 92 136 Face 219 3669 1650 1818 Face 220 63 76 149 Face 221 42 184 132 Face 222 4886 12 8 Face 223 1643 1544 119 Face 224 1643 1644 1544 Face 225 151 122 1657 Face 226 74 87 141 Face 227 6 115 225 Face 228 116 110 124 Face 229 80 78 85 Face 230 749 50 122 Face 231 2803 2509 57 Face 232 131 147 2509 Face 233 154 141 2385 Face 234 128 150 4886 Face 235 12 150 4266 Face 236 150 8 4266 Face 237 3105 4781 2063 Face 238 4858 107 223 Face 239 176 115 56 Face 240 75 63 100 Face 241 4420 4011 4434 Face 242 932 1 261 Face 243 475 1657 37 Face 244 855 57 102 Face 245 4018 135 130 Face 246 4018 69 135 Face 247 3298 105 26 Face 248 297 151 1657 Face 249 1122 121 1 Face 250 184 104 119 Face 251 80 79 84 Face 252 80 2007 79 Face 253 1255 3469 2433 Face 254 2186 78 84 Face 255 120 323 25 Face 256 149 158 112 Face 257 3049 1773 3050 Face 258 2385 141 1822 Face 259 8 150 128 Face 260 93 88 47 Face 261 2497 3783 3432 Face 262 4120 4276 2564 Face 263 25 125 2055 Face 264 136 4371 148 Face 265 726 101 100 Face 266 63 75 101 Face 267 142 2185 118 Face 268 3287 3969 123 Face 269 749 151 50 Face 270 121 2385 1822 Face 271 78 70 79 Face 272 3925 2476 358 Face 273 191 4061 1801 Face 274 64 195 20 Face 275 4066 5 58 Face 276 4221 72 2669 Face 277 47 88 2512 Face 278 101 158 149 Face 279 21 2944 1301 Face 280 924 2921 2242 Face 281 184 119 95 Face 282 140 127 385 Face 283 144 483 96 Face 284 145 57 855 Face 285 207 3810 1004 Face 286 103 146 4433 Face 287 1194 1991 1085 Face 288 147 93 47 Face 289 114 1425 3223 Face 290 1187 3571 1872 Face 291 110 27 34 Face 292 385 4 91 Face 293 148 92 117 Face 294 2174 2824 4331 Face 295 107 2185 142 Face 296 2629 5 92 Face 297 16 27 2944 Face 298 3586 3743 359 Face 299 153 365 4455 Face 300 4066 117 5 Face 301 12 4886 150 Face 302 103 15 82 Face 303 958 94 1814 Face 304 224 180 60 Face 305 113 2534 173 Face 306 2597 3976 4610 Face 307 786 4112 127 Face 308 228 24 32 Face 309 113 99 105 Face 310 64 69 23 Face 311 64 130 69 Face 312 118 84 142 Face 313 119 183 95 Face 314 4726 4655 2969 Face 315 22 4113 3925 Face 316 790 3202 2954 Face 317 115 176 225 Face 318 2936 1135 669 Face 319 142 220 224 Face 320 1175 2477 660 Face 321 2778 4847 2715 Face 322 2304 188 1458 Face 323 575 2787 3582 Face 324 21 72 2944 Face 325 21 106 72 Face 326 3421 1443 4642 Face 327 988 3114 91 Face 328 2197 3432 3783 Face 329 1122 323 121 Face 330 2168 4178 2306 Face 331 342 950 54 Face 332 1880 2442 110 Face 333 2313 1599 2814 Face 334 4498 219 2468 Face 335 1293 1455 2526 Face 336 214 22 1066 Face 337 1519 2628 3547 Face 338 63 726 908 Face 339 113 173 134 Face 340 1425 8 128 Face 341 4907 2099 134 Face 342 100 63 149 Face 343 1361 1156 3828 Face 344 4434 4701 583 Face 345 92 2528 2629 Face 346 83 4429 1883 Face 347 3440 19 46 Face 348 1876 467 1981 Face 349 63 101 726 Face 350 297 876 3529 Face 351 1269 335 407 Face 352 385 2254 155 Face 353 124 39 27 Face 354 262 65 263 Face 355 749 122 297 Face 356 2218 3396 1105 Face 357 142 4859 107 Face 358 12 1425 128 Face 359 12 4266 1425 Face 360 8 1425 4886 Face 361 13 9 2187 Face 362 296 9 13 Face 363 2571 370 327 Face 364 74 2074 3536 Face 365 3042 864 3640 Face 366 38 23 69 Face 367 3713 90 138 Face 368 2065 184 42 Face 369 85 78 2007 Face 370 147 88 93 Face 371 608 3813 2306 Face 372 3134 644 541 Face 373 56 96 2972 Face 374 3097 1760 745 Face 375 4420 2715 4847 Face 376 4858 3945 118 Face 377 695 1906 2314 Face 378 4647 3379 2571 Face 379 1580 493 3553 Face 380 2534 113 1447 Face 381 4599 4782 1516 Face 382 3115 386 4503 Face 383 1845 4752 1186 Face 384 2887 2005 4803 Face 385 2972 4660 56 Face 386 2928 2567 1866 Face 387 191 3304 4062 Face 388 2448 146 2559 Face 389 98 525 977 Face 390 1477 4079 4583 Face 391 705 156 4620 Face 392 2486 148 4371 Face 393 2851 3642 3678 Face 394 1077 2123 4483 Face 395 2260 2660 2041 Face 396 1057 3101 817 Face 397 3297 4411 347 Face 398 1969 3120 4206 Face 399 330 1981 467 Face 400 293 994 313 Face 401 1853 2711 24 Face 402 2961 729 4190 Face 403 946 405 2343 Face 404 4776 222 3021 Face 405 1101 2373 1595 Face 406 1628 1812 1015 Face 407 4728 4540 942 Face 408 2539 2943 1759 Face 409 690 3139 4426 Face 410 4129 3660 2250 Face 411 2367 3932 745 Face 412 4555 432 3932 Face 413 3387 3912 3635 Face 414 1089 2867 3641 Face 415 3662 1546 4598 Face 416 187 2632 2534 Face 417 346 3397 4174 Face 418 823 2301 1577 Face 419 2746 2542 4021 Face 420 993 1670 2641 Face 421 3105 4806 4781 Face 422 2154 1306 1724 Face 423 1394 341 2523 Face 424 4948 3487 172 Face 425 4238 4911 1010 Face 426 3590 2099 3011 Face 427 1800 3711 604 Face 428 3401 3296 1453 Face 429 2929 4040 4934 Face 430 4447 2264 351 Face 431 1101 2599 4125 Face 432 1536 4880 3444 Face 433 976 1103 2449 Face 434 169 4462 2471 Face 435 4557 3747 3076 Face 436 838 1103 496 Face 437 2043 4076 2348 Face 438 2744 1132 638 Face 439 80 2717 2007 Face 440 80 60 180 Face 441 142 4807 2414 Face 442 2007 2717 1613 Face 443 2032 3703 850 Face 444 1300 2522 4205 Face 445 1979 3512 3082 Face 446 2027 844 1149 Face 447 2937 184 2065 Face 448 2937 111 184 Face 449 2290 1890 4636 Face 450 3760 2597 4609 Face 451 168 4322 3698 Face 452 168 1208 2182 Face 453 3858 3957 1546 Face 454 3178 4802 1502 Face 455 1430 4819 1880 Face 456 687 1458 188 Face 457 89 4506 2772 Face 458 3858 1546 3956 Face 459 1438 4606 4448 Face 460 298 152 882 Face 461 851 191 1801 Face 462 387 466 1013 Face 463 987 1548 4734 Face 464 2667 3002 4619 Face 465 1760 3174 745 Face 466 4817 754 2436 Face 467 3499 3474 737 Face 468 3946 3838 1929 Face 469 38 195 64 Face 470 38 3440 195 Face 471 1467 2677 2027 Face 472 4018 4124 3926 Face 473 2409 1672 710 Face 474 3434 1411 883 Face 475 4773 2824 2174 Face 476 3215 789 2517 Face 477 4168 643 3017 Face 478 1572 2543 1975 Face 479 2528 3857 1229 Face 480 1206 4458 4511 Face 481 3349 2870 3995 Face 482 1985 442 4591 Face 483 3335 3730 2535 Face 484 2822 836 2002 Face 485 3096 3036 2984 Face 486 1852 1495 2280 Face 487 3293 3700 2394 Face 488 4820 4235 2590 Face 489 1141 1892 513 Face 490 2165 2009 676 Face 491 586 1920 964 Face 492 3352 2658 947 Face 493 2515 1817 1650 Face 494 598 2614 1217 Face 495 4568 305 2676 Face 496 770 2917 1109 Face 497 2100 3076 3747 Face 498 2532 189 1071 Face 499 1875 1406 1911 Face 500 1096 4000 265 Face 501 1689 3648 1537 Face 502 2856 408 4714 Face 503 3428 1952 1232 Face 504 3850 1713 3250 Face 505 1588 1660 2000 Face 506 1042 3323 269 Face 507 963 214 2869 Face 508 153 358 2476 Face 509 3125 762 198 Face 510 2762 2990 1035 Face 511 4216 1585 321 Face 512 469 211 959 Face 513 1848 2894 2131 Face 514 1409 1037 2341 Face 515 3836 1269 2910 Face 516 3812 2681 1860 Face 517 926 2346 1083 Face 518 2683 4274 3429 Face 519 222 2276 809 Face 520 4318 1772 2679 Face 521 702 4835 611 Face 522 2871 2727 818 Face 523 158 3303 1396 Face 524 158 3451 3303 Face 525 84 3945 60 Face 526 84 118 3945 Face 527 1591 224 220 Face 528 1591 180 224 Face 529 2206 225 176 Face 530 2206 96 225 Face 531 1772 2068 2679 Face 532 342 2254 4034 Face 533 228 227 193 Face 534 228 32 227 Face 535 635 3498 4763 Face 536 1853 24 228 Face 537 4498 4054 219 Face 538 1128 1007 572 Face 539 3524 3896 2661 Face 540 619 4852 537 Face 541 3763 2983 1777 Face 542 2349 4343 4638 Face 543 68 2670 133 Face 544 379 1311 919 Face 545 3367 1246 4866 Face 546 700 4563 853 Face 547 1962 4475 652 Face 548 3754 4200 1611 Face 549 3667 1518 3158 Face 550 3233 1539 3087 Face 551 2362 1696 1560 Face 552 2798 1505 2626 Face 553 4855 2192 3043 Face 554 1261 3460 2614 Face 555 440 325 283 Face 556 1790 367 902 Face 557 1370 3530 1973 Face 558 2335 1618 696 Face 559 3405 2247 59 Face 560 2942 448 1459 Face 561 3788 2347 4496 Face 562 2206 176 2487 Face 563 1521 242 1958 Face 564 623 4094 1823 Face 565 244 3113 2650 Face 566 2954 3202 4698 Face 567 2035 4860 3327 Face 568 855 3553 4926 Face 569 2163 1541 3624 Face 570 2163 1040 3991 Face 571 727 2207 2904 Face 572 1396 2089 781 Face 573 518 1204 1454 Face 574 518 4519 1204 Face 575 3571 248 63 Face 576 158 101 248 Face 577 3015 483 144 Face 578 1872 908 858 Face 579 733 250 4841 Face 580 522 828 2421 Face 581 1255 734 3469 Face 582 90 2526 1455 Face 583 3422 685 2583 Face 584 3350 4165 1987 Face 585 1133 2984 238 Face 586 1803 1927 3040 Face 587 1346 2128 2464 Face 588 1330 808 468 Face 589 3677 255 2013 Face 590 3456 1832 3165 Face 591 2587 1161 3456 Face 592 537 234 256 Face 593 298 377 152 Face 594 4296 2920 460 Face 595 281 1579 1441 Face 596 398 3411 1271 Face 597 137 337 74 Face 598 3813 4681 259 Face 599 3799 2559 3800 Face 600 450 4057 2558 Face 601 564 4787 2386 Face 602 564 3059 261 Face 603 36 262 263 Face 604 36 3800 262 Face 605 273 263 65 Face 606 273 260 263 Face 607 3023 2152 2483 Face 608 1667 1696 667 Face 609 264 3270 1215 Face 610 1407 4352 1678 Face 611 455 632 3870 Face 612 775 3664 670 Face 613 4374 722 2329 Face 614 1403 4337 3523 Face 615 3588 1660 1588 Face 616 3531 1443 3421 Face 617 2153 473 203 Face 618 587 2527 390 Face 619 1041 356 1180 Face 620 1042 1224 1913 Face 621 1404 935 266 Face 622 1276 210 2875 Face 623 1580 272 493 Face 624 509 3488 4256 Face 625 3832 903 3102 Face 626 1361 3828 2974 Face 627 1974 1100 3770 Face 628 3333 938 282 Face 629 4022 1184 2293 Face 630 167 4885 4669 Face 631 1260 307 2076 Face 632 4551 3138 2195 Face 633 1663 277 24 Face 634 1663 1313 277 Face 635 1540 2504 3820 Face 636 3478 4272 2172 Face 637 1717 2053 1763 Face 638 1382 678 2751 Face 639 4278 1583 1070 Face 640 4443 2991 3671 Face 641 4554 2624 4396 Face 642 2911 490 628 Face 643 4818 1144 567 Face 644 2594 2180 1965 Face 645 4818 284 1144 Face 646 3205 2782 4705 Face 647 2912 4249 2755 Face 648 2912 1124 1110 Face 649 4459 2246 1533 Face 650 4459 1400 2246 Face 651 3391 2283 688 Face 652 2380 724 3946 Face 653 3161 4096 2373 Face 654 3161 2758 4096 Face 655 4237 2548 1942 Face 656 4898 842 366 Face 657 2677 4783 2027 Face 658 196 4624 2864 Face 659 1143 2413 573 Face 660 4057 3517 1496 Face 661 264 529 4953 Face 662 4767 3203 4020 Face 663 4035 2341 1357 Face 664 217 312 849 Face 665 4725 528 436 Face 666 592 994 293 Face 667 1549 294 3915 Face 668 3943 4562 2913 Face 669 3204 1971 2482 Face 670 4617 917 1970 Face 671 1906 3251 4913 Face 672 963 4106 3251 Face 673 2778 3697 4847 Face 674 4109 695 3606 Face 675 3176 3746 2644 Face 676 2278 4186 3067 Face 677 1119 2104 4223 Face 678 1090 2192 4855 Face 679 3859 3057 803 Face 680 4259 3048 2812 Face 681 3764 2136 1071 Face 682 2021 414 4263 Face 683 3392 1475 4763 Face 684 1468 729 2960 Face 685 1470 1469 4927 Face 686 2518 2399 4567 Face 687 236 3804 1137 Face 688 412 1356 2896 Face 689 819 2620 2336 Face 690 942 1999 1905 Face 691 3192 2382 3445 Face 692 53 1639 4191 Face 693 276 2457 3666 Face 694 276 3017 2456 Face 695 984 1274 1277 Face 696 253 2128 1165 Face 697 206 1046 3768 Face 698 2554 1688 1158 Face 699 2066 2888 291 Face 700 1326 462 1245 Face 701 986 485 1751 Face 702 3907 2401 2173 Face 703 2054 994 592 Face 704 1244 1173 312 Face 705 217 313 4122 Face 706 928 329 3540 Face 707 177 2471 4461 Face 708 1333 2108 1290 Face 709 1092 4365 295 Face 710 3836 2910 315 Face 711 2618 316 3334 Face 712 210 2740 316 Face 713 157 2928 1866 Face 714 2335 2609 317 Face 715 3600 846 288 Face 716 2344 4237 1942 Face 717 3191 648 3364 Face 718 2222 2688 890 Face 719 1627 1794 3940 Face 720 4322 168 2361 Face 721 2727 1035 818 Face 722 1357 2341 1037 Face 723 4910 1282 1112 Face 724 137 261 1353 Face 725 38 2774 3536 Face 726 2386 4787 3796 Face 727 3989 4297 2045 Face 728 813 4592 1036 Face 729 456 2344 318 Face 730 287 283 325 Face 731 3167 326 1129 Face 732 456 318 326 Face 733 1446 3233 3087 Face 734 4804 3379 4647 Face 735 433 328 2096 Face 736 433 3667 3158 Face 737 1386 2926 928 Face 738 3405 1033 3177 Face 739 755 4317 885 Face 740 2704 762 1489 Face 741 881 642 1139 Face 742 1568 67 331 Face 743 1068 1827 2424 Face 744 661 1882 1072 Face 745 465 333 4850 Face 746 2930 1452 2919 Face 747 938 567 1144 Face 748 3415 2913 4562 Face 749 3973 2389 1453 Face 750 970 245 504 Face 751 3902 2091 585 Face 752 1495 1852 2712 Face 753 2217 2651 1169 Face 754 2217 644 2651 Face 755 851 609 191 Face 756 3223 259 4681 Face 757 454 3227 510 Face 758 3909 68 1207 Face 759 4541 4340 2695 Face 760 353 4535 2793 Face 761 2621 1538 376 Face 762 1634 1792 1067 Face 763 701 2347 961 Face 764 4642 1443 693 Face 765 1016 343 1716 Face 766 796 3928 836 Face 767 779 3408 2296 Face 768 2202 2696 1395 Face 769 3329 3605 1267 Face 770 4537 3011 2646 Face 771 758 4692 2646 Face 772 1302 453 2439 Face 773 402 948 4613 Face 774 2994 4009 3063 Face 775 1893 3993 2687 Face 776 1117 2130 2142 Face 777 3347 349 835 Face 778 662 2623 1054 Face 779 2097 3414 1114 Face 780 3283 197 2458 Face 781 175 1581 2524 Face 782 3674 4092 4353 Face 783 1862 677 2319 Face 784 1433 3506 944 Face 785 523 4184 1624 Face 786 4326 192 353 Face 787 2376 379 3324 Face 788 474 2314 3404 Face 789 2996 2150 3939 Face 790 3090 1682 4413 Face 791 270 992 3849 Face 792 3615 3152 1916 Face 793 1294 2034 1684 Face 794 2360 2790 3803 Face 795 4455 358 153 Face 796 3377 541 4078 Face 797 1490 910 740 Face 798 4223 2104 2975 Face 799 4182 360 2345 Face 800 4182 4901 2019 Face 801 81 361 391 Face 802 362 3869 4611 Face 803 2784 362 4611 Face 804 2783 2200 3294 Face 805 861 699 2030 Face 806 2561 3515 1636 Face 807 1321 1076 941 Face 808 2675 1594 4834 Face 809 2455 3621 583 Face 810 4017 4532 4003 Face 811 2992 1509 2958 Face 812 288 846 4709 Face 813 4292 842 3888 Face 814 556 1698 457 Face 815 1185 4677 2135 Face 816 1185 4722 2795 Face 817 3913 708 1806 Face 818 2680 4255 369 Face 819 229 1656 4305 Face 820 1539 3233 4939 Face 821 1668 1837 2640 Face 822 3492 605 2809 Face 823 2811 4008 536 Face 824 2226 878 3495 Face 825 954 655 933 Face 826 374 4256 1692 Face 827 4653 510 2735 Face 828 2734 3497 510 Face 829 1250 1029 1666 Face 830 738 1022 566 Face 831 3224 779 2296 Face 832 4948 172 376 Face 833 4186 4038 3067 Face 834 599 413 917 Face 835 1515 782 2416 Face 836 1515 2718 2285 Face 837 354 4553 1171 Face 838 1599 2313 2666 Face 839 4173 1705 484 Face 840 712 2337 824 Face 841 2114 1817 4019 Face 842 3616 243 3527 Face 843 1217 1482 598 Face 844 3616 381 3060 Face 845 1521 1094 2303 Face 846 4451 2593 1094 Face 847 1943 2258 4832 Face 848 1272 743 4193 Face 849 1235 385 127 Face 850 1235 2254 385 Face 851 54 3737 3115 Face 852 54 3627 3737 Face 853 338 1389 3833 Face 854 338 4621 777 Face 855 2220 2506 264 Face 856 1216 833 3938 Face 857 3089 1530 2957 Face 858 2788 1274 984 Face 859 534 422 2383 Face 860 3179 2749 390 Face 861 3887 391 4837 Face 862 2248 2845 1459 Face 863 3712 2446 51 Face 864 2923 3976 1756 Face 865 1878 2878 3372 Face 866 4479 3016 393 Face 867 3739 394 2425 Face 868 285 1533 394 Face 869 2858 686 2553 Face 870 4820 2590 1781 Face 871 3061 1547 686 Face 872 3757 4700 442 Face 873 203 2977 3814 Face 874 4247 2006 3094 Face 875 2371 2911 628 Face 876 1679 1860 1142 Face 877 1679 2989 2987 Face 878 192 1249 399 Face 879 252 3579 2259 Face 880 2482 1970 2557 Face 881 1697 1027 3904 Face 882 1813 1340 3454 Face 883 4502 1033 3405 Face 884 3710 948 4312 Face 885 3884 2652 3776 Face 886 3914 4729 636 Face 887 3548 2957 1530 Face 888 2736 1157 4825 Face 889 1420 1322 1057 Face 890 2600 2343 405 Face 891 4638 982 2349 Face 892 3678 3642 4290 Face 893 2256 407 335 Face 894 1008 464 3376 Face 895 951 2054 592 Face 896 178 2680 2540 Face 897 857 2021 3702 Face 898 2320 442 1985 Face 899 166 4252 4856 Face 900 3846 2121 4219 Face 901 2215 1555 209 Face 902 4437 1103 838 Face 903 872 1542 4630 Face 904 3609 586 2132 Face 905 435 1175 660 Face 906 895 917 413 Face 907 1063 2720 3349 Face 908 3216 2731 2720 Face 909 3141 415 3908 Face 910 53 2865 891 Face 911 1933 4745 3481 Face 912 2033 728 416 Face 913 4124 1532 2742 Face 914 3563 126 3861 Face 915 38 2384 2774 Face 916 4018 3426 4369 Face 917 356 3892 4862 Face 918 420 423 419 Face 919 1913 4268 1640 Face 920 1913 1224 991 Face 921 1536 792 4880 Face 922 979 4942 424 Face 923 2953 422 1181 Face 924 602 2164 422 Face 925 3110 4428 992 Face 926 3110 1203 2085 Face 927 2164 533 422 Face 928 2785 979 4176 Face 929 522 4084 828 Face 930 1258 766 425 Face 931 1024 2209 529 Face 932 555 3070 4515 Face 933 1107 3291 3879 Face 934 1107 3980 3291 Face 935 1523 3696 2671 Face 936 600 2751 678 Face 937 1491 430 594 Face 938 1491 2970 4534 Face 939 4250 2084 640 Face 940 429 4667 4812 Face 941 4047 431 1439 Face 942 4543 3714 1554 Face 943 4956 3504 3522 Face 944 3276 4685 4179 Face 945 2501 2155 2661 Face 946 1650 3669 3668 Face 947 849 434 936 Face 948 1904 403 434 Face 949 1970 4565 2557 Face 950 1970 917 2619 Face 951 1903 756 710 Face 952 2161 2213 1176 Face 953 3587 1510 3589 Face 954 2303 623 3996 Face 955 3951 2345 360 Face 956 926 1701 438 Face 957 144 1612 3015 Face 958 3788 1324 3651 Face 959 203 2854 2977 Face 960 1568 331 881 Face 961 1902 2006 4247 Face 962 807 3419 1852 Face 963 669 3852 2936 Face 964 539 3239 750 Face 965 2329 2875 4374 Face 966 775 670 4232 Face 967 1026 444 853 Face 968 1026 4181 4257 Face 969 3814 2153 203 Face 970 2700 674 445 Face 971 4390 2527 587 Face 972 588 1006 732 Face 973 3740 1920 3352 Face 974 206 4515 1355 Face 975 206 2324 1046 Face 976 2169 937 448 Face 977 3397 449 2842 Face 978 845 3268 2215 Face 979 273 1517 260 Face 980 903 1922 4869 Face 981 3326 1757 3365 Face 982 1726 2211 1725 Face 983 1007 3625 572 Face 984 2013 255 649 Face 985 187 453 2632 Face 986 3958 1183 1502 Face 987 1895 3497 2734 Face 988 2670 68 3909 Face 989 4127 2889 2066 Face 990 3312 3398 1461 Face 991 1698 3273 457 Face 992 287 325 2536 Face 993 2440 776 3358 Face 994 2859 1503 1590 Face 995 3703 458 850 Face 996 3449 1377 906 Face 997 4564 2634 3433 Face 998 4042 4442 1608 Face 999 257 460 919 Face 1000 257 4038 4186 Face 1001 2159 3479 4211 Face 1002 174 2681 3479 Face 1003 2772 797 89 Face 1004 2772 2740 2122 Face 1005 3534 463 1386 Face 1006 936 434 996 Face 1007 841 1304 295 Face 1008 2237 3376 464 Face 1009 2952 465 437 Face 1010 3535 1808 2930 Face 1011 2948 2561 1636 Face 1012 1268 2989 3525 Face 1013 1911 4631 1875 Face 1014 4622 1052 735 Face 1015 848 2940 4159 Face 1016 254 4616 468 Face 1017 877 3914 1476 Face 1018 877 3154 469 Face 1019 2618 470 722 Face 1020 2618 1869 3574 Face 1021 4102 2620 819 Face 1022 3654 818 4615 Face 1023 3581 2497 3432 Face 1024 4789 3724 4795 Face 1025 2453 3975 424 Face 1026 269 203 473 Face 1027 68 2233 1207 Face 1028 695 2314 3217 Face 1029 749 475 151 Face 1030 749 629 475 Face 1031 4634 1634 1067 Face 1032 1426 3999 2895 Face 1033 4827 1067 1829 Face 1034 4410 3302 1538 Face 1035 1809 2621 376 Face 1036 1809 680 478 Face 1037 3314 479 648 Face 1038 4667 429 1514 Face 1039 1086 480 3034 Face 1040 582 645 2365 Face 1041 1339 1184 4022 Face 1042 1649 2969 1997 Face 1043 2223 3592 2132 Face 1044 4361 3974 3592 Face 1045 2848 4932 3732 Face 1046 2972 96 483 Face 1047 805 3934 380 Face 1048 1274 2788 3253 Face 1049 3009 2173 3347 Face 1050 3482 913 485 Face 1051 456 3062 325 Face 1052 902 367 1645 Face 1053 2536 487 287 Face 1054 486 488 3809 Face 1055 4395 2537 1645 Face 1056 2859 1590 751 Face 1057 2276 1685 809 Face 1058 2968 3391 2596 Face 1059 3771 3500 3006 Face 1060 1318 3266 957 Face 1061 258 491 1441 Face 1062 3771 3006 3422 Face 1063 1815 3560 1883 Face 1064 1566 4383 3086 Face 1065 1637 3093 4949 Face 1066 1639 1741 2550 Face 1067 3570 494 1514 Face 1068 4105 430 494 Face 1069 867 2650 3113 Face 1070 3223 4681 3330 Face 1071 3482 4392 913 Face 1072 311 2391 1635 Face 1073 161 497 24 Face 1074 161 2309 497 Face 1075 560 1189 4351 Face 1076 983 3053 2454 Face 1077 1717 4682 2053 Face 1078 837 1017 808 Face 1079 1489 500 755 Face 1080 330 2469 2918 Face 1081 213 2701 2153 Face 1082 1162 1627 3940 Face 1083 3181 2796 3193 Face 1084 2426 4526 4704 Face 1085 920 3322 1056 Face 1086 520 1959 4251 Face 1087 3099 1040 152 Face 1088 515 970 504 Face 1089 2627 2322 1545 Face 1090 111 289 3395 Face 1091 305 2075 2676 Face 1092 2890 4282 506 Face 1093 2077 1005 3683 Face 1094 4538 1105 3396 Face 1095 983 508 3053 Face 1096 340 4101 812 Face 1097 77 509 574 Face 1098 77 2088 509 Face 1099 924 3613 339 Face 1100 1387 2434 2214 Face 1101 4388 2566 1289 Face 1102 1845 3961 511 Face 1103 3948 2310 2049 Face 1104 3079 2011 3748 Face 1105 1193 1504 4950 Face 1106 204 2393 3208 Face 1107 1342 514 4456 Face 1108 3840 3118 3005 Face 1109 4756 515 1213 Face 1110 2030 699 4473 Face 1111 1354 516 322 Face 1112 1442 188 2304 Face 1113 1276 517 210 Face 1114 1245 462 4224 Face 1115 896 1862 663 Face 1116 896 677 1862 Face 1117 2334 3593 4402 Face 1118 3681 3074 3429 Face 1119 4614 520 4251 Face 1120 2180 1110 4894 Face 1121 308 521 4484 Face 1122 805 1803 3446 Face 1123 290 4504 250 Face 1124 3261 4084 522 Face 1125 139 4440 1475 Face 1126 139 524 1947 Face 1127 4702 524 3304 Face 1128 4702 387 1013 Face 1129 2541 3102 1808 Face 1130 4873 624 2402 Face 1131 3900 1404 3816 Face 1132 1145 517 526 Face 1133 3671 3281 873 Face 1134 4043 2320 527 Face 1135 3546 528 348 Face 1136 1828 1584 4633 Face 1137 4020 3870 4767 Face 1138 291 2888 3870 Face 1139 1436 948 3710 Face 1140 1114 3414 4684 Face 1141 1618 4228 4150 Face 1142 2770 2446 3712 Face 1143 2210 4688 3936 Face 1144 3168 4586 2348 Face 1145 1298 533 421 Face 1146 424 3975 2038 Face 1147 4419 534 2453 Face 1148 4419 422 534 Face 1149 3132 3091 4421 Face 1150 3628 4795 3724 Face 1151 1063 3216 2720 Face 1152 1256 797 2483 Face 1153 771 3755 2364 Face 1154 2096 328 1358 Face 1155 395 3941 482 Face 1156 395 1296 3941 Face 1157 3150 539 750 Face 1158 1296 2026 539 Face 1159 2884 1689 1537 Face 1160 2183 469 959 Face 1161 634 1532 4124 Face 1162 417 3875 1297 Face 1163 3071 634 757 Face 1164 554 543 542 Face 1165 544 543 554 Face 1166 544 546 543 Face 1167 553 544 554 Face 1168 553 542 544 Face 1169 542 545 554 Face 1170 542 553 545 Face 1171 551 546 550 Face 1172 552 543 546 Face 1173 552 547 544 Face 1174 552 546 547 Face 1175 549 548 546 Face 1176 549 547 548 Face 1177 544 549 546 Face 1178 544 547 549 Face 1179 548 550 546 Face 1180 548 551 550 Face 1181 547 551 548 Face 1182 547 546 551 Face 1183 542 552 544 Face 1184 542 543 552 Face 1185 931 553 554 Face 1186 931 545 553 Face 1187 1295 554 545 Face 1188 1295 931 554 Face 1189 4337 3331 529 Face 1190 667 676 2009 Face 1191 67 1503 331 Face 1192 67 1595 556 Face 1193 168 557 1208 Face 1194 3805 4285 3354 Face 1195 824 558 1367 Face 1196 380 1755 2014 Face 1197 246 3045 3041 Face 1198 2535 3730 559 Face 1199 4058 4865 4567 Face 1200 918 1189 560 Face 1201 2307 561 2678 Face 1202 3798 4303 3286 Face 1203 1186 2240 1845 Face 1204 2587 4761 1308 Face 1205 229 563 2374 Face 1206 229 1308 563 Face 1207 657 1361 2974 Face 1208 2354 3360 3561 Face 1209 3225 2819 3691 Face 1210 633 3997 565 Face 1211 1338 2095 1347 Face 1212 375 1914 4652 Face 1213 3228 2338 1338 Face 1214 565 1836 2338 Face 1215 2809 1837 3492 Face 1216 371 3842 4070 Face 1217 2477 569 660 Face 1218 3966 1171 2617 Face 1219 513 2201 3088 Face 1220 1504 1193 570 Face 1221 283 1020 2782 Face 1222 1337 648 2087 Face 1223 2882 572 3625 Face 1224 1045 537 4852 Face 1225 66 573 1886 Face 1226 2779 847 2924 Face 1227 4233 574 3673 Face 1228 360 4182 2019 Face 1229 1966 1228 358 Face 1230 4599 1516 2316 Face 1231 2883 1192 2117 Face 1232 1001 1750 955 Face 1233 4587 4246 2348 Face 1234 3231 1132 2744 Face 1235 2439 3339 1302 Face 1236 3051 1921 2422 Face 1237 242 1565 1958 Face 1238 580 1266 1932 Face 1239 242 2725 1565 Face 1240 3827 3878 2725 Face 1241 2549 3152 3615 Face 1242 1068 2424 4023 Face 1243 1464 582 4779 Face 1244 3717 4321 3173 Face 1245 2102 4420 138 Face 1246 2102 4011 4420 Face 1247 2412 1091 3987 Face 1248 2412 1147 3137 Face 1249 209 1930 2215 Face 1250 2360 3803 3218 Face 1251 3088 1141 513 Face 1252 3352 1920 586 Face 1253 2749 587 390 Face 1254 4394 2951 675 Face 1255 4390 4408 446 Face 1256 3340 3413 1474 Face 1257 1716 2370 2857 Face 1258 788 1601 4955 Face 1259 4904 1462 3983 Face 1260 4740 2857 590 Face 1261 1572 2037 2543 Face 1262 1724 1306 2245 Face 1263 1381 966 4874 Face 1264 2401 951 2713 Face 1265 1384 1491 594 Face 1266 3036 3096 593 Face 1267 3314 2046 479 Face 1268 2758 1384 594 Face 1269 1746 595 1916 Face 1270 4452 2549 3615 Face 1271 597 596 3279 Face 1272 423 420 2086 Face 1273 1746 1371 595 Face 1274 423 2086 1830 Face 1275 3729 4295 2445 Face 1276 3641 2867 1335 Face 1277 257 4044 4038 Face 1278 2312 1421 1561 Face 1279 2694 2933 2671 Face 1280 4203 4715 2135 Face 1281 723 1771 4861 Face 1282 181 1288 4098 Face 1283 2692 1520 3179 Face 1284 2692 1738 1073 Face 1285 1950 4486 4329 Face 1286 1115 2815 603 Face 1287 3232 604 3711 Face 1288 3475 139 604 Face 1289 2143 605 2271 Face 1290 2143 512 3025 Face 1291 2741 4742 4312 Face 1292 1519 3547 606 Face 1293 2791 607 577 Face 1294 2790 2360 2100 Face 1295 4178 608 2306 Face 1296 2211 3330 608 Face 1297 1606 4721 2134 Face 1298 387 4702 609 Face 1299 2633 1317 275 Face 1300 2375 1059 2170 Face 1301 4255 1871 369 Face 1302 986 471 1440 Face 1303 3387 1166 780 Face 1304 1222 2396 1675 Face 1305 4470 1752 1303 Face 1306 4470 3156 1752 Face 1307 4222 614 3508 Face 1308 86 2513 2463 Face 1309 290 3262 4504 Face 1310 4037 1427 3262 Face 1311 2259 1325 685 Face 1312 303 812 4101 Face 1313 3729 617 1335 Face 1314 897 3428 1232 Face 1315 2308 4085 4937 Face 1316 1236 2878 1878 Face 1317 1254 3720 4759 Face 1318 665 713 2221 Face 1319 792 620 241 Face 1320 421 602 1588 Face 1321 171 2900 2892 Face 1322 4047 1439 621 Face 1323 1951 1115 3559 Face 1324 307 1260 622 Face 1325 1094 3077 2303 Face 1326 383 2488 1953 Face 1327 3630 3410 694 Face 1328 3629 383 1953 Face 1329 274 1549 571 Face 1330 626 567 1836 Face 1331 274 626 3882 Face 1332 274 2955 626 Face 1333 4839 627 2355 Face 1334 2403 2224 3119 Face 1335 2459 3288 2229 Face 1336 4130 2371 2703 Face 1337 4819 629 1880 Face 1338 759 3131 4436 Face 1339 3491 1470 1624 Face 1340 3491 1527 630 Face 1341 2865 3735 891 Face 1342 972 1955 631 Face 1343 3816 2263 310 Face 1344 3680 267 3270 Face 1345 1022 3225 3691 Face 1346 1352 3997 633 Face 1347 545 4430 1295 Face 1348 545 4432 4430 Face 1349 3583 3706 1737 Face 1350 4265 3518 635 Face 1351 1409 4216 4319 Face 1352 714 852 636 Face 1353 4549 1848 2131 Face 1354 2466 1388 1968 Face 1355 1411 1941 883 Face 1356 2761 2043 1774 Face 1357 2297 2312 1561 Face 1358 1311 379 3140 Face 1359 1081 2970 593 Face 1360 2655 4250 640 Face 1361 108 4017 4003 Face 1362 2388 3655 641 Face 1363 2325 642 881 Face 1364 2325 3528 642 Face 1365 2412 3716 1147 Face 1366 2412 4746 3716 Face 1367 1826 644 3403 Face 1368 4078 541 644 Face 1369 3465 2136 3764 Face 1370 3662 4598 4378 Face 1371 285 646 2737 Face 1372 285 394 3739 Face 1373 890 1959 2222 Face 1374 2909 503 647 Face 1375 2269 1065 647 Face 1376 319 2087 4771 Face 1377 452 2563 2881 Face 1378 452 2615 649 Face 1379 235 713 3472 Face 1380 2013 649 650 Face 1381 2167 4063 652 Face 1382 4576 1265 651 Face 1383 2563 652 4063 Face 1384 649 1861 3393 Face 1385 234 4595 256 Face 1386 2167 652 4475 Face 1387 1268 2987 2989 Face 1388 2024 3812 654 Face 1389 373 2434 3756 Face 1390 373 2427 4495 Face 1391 2091 3139 690 Face 1392 336 2522 1300 Face 1393 1922 657 4869 Face 1394 659 3259 1354 Face 1395 4583 3947 4947 Face 1396 1856 2906 658 Face 1397 2765 659 2872 Face 1398 4836 658 2906 Face 1399 278 4242 3412 Face 1400 278 4607 4242 Face 1401 1362 3416 581 Face 1402 2053 2194 661 Face 1403 197 2118 2458 Face 1404 2401 966 1138 Face 1405 1812 3190 247 Face 1406 2747 4932 2848 Face 1407 663 664 4628 Face 1408 3237 810 4737 Face 1409 4467 3473 2625 Face 1410 682 235 3472 Face 1411 1266 666 1932 Face 1412 4712 3385 666 Face 1413 2158 4892 3171 Face 1414 2158 1403 4892 Face 1415 971 1682 3090 Face 1416 299 166 4856 Face 1417 2973 2010 2350 Face 1418 761 539 3150 Face 1419 3542 2420 267 Face 1420 2003 1659 4579 Face 1421 3272 671 3275 Face 1422 3272 1829 671 Face 1423 220 2679 2068 Face 1424 673 2697 3278 Face 1425 2414 1795 672 Face 1426 4861 4350 1795 Face 1427 2184 674 2144 Face 1428 884 675 2951 Face 1429 730 4160 3982 Face 1430 730 4394 675 Face 1431 1696 3752 667 Face 1432 304 412 2896 Face 1433 352 3306 4665 Face 1434 352 2721 3306 Face 1435 428 4254 468 Face 1436 1345 1523 4121 Face 1437 1984 778 478 Face 1438 2430 341 3950 Face 1439 477 2299 4634 Face 1440 477 1393 2299 Face 1441 760 4810 1505 Face 1442 538 396 1781 Face 1443 683 4467 2625 Face 1444 2193 2012 682 Face 1445 4743 960 1358 Face 1446 2903 1003 960 Face 1447 2012 1178 3677 Face 1448 2012 2141 3965 Face 1449 1002 3006 1271 Face 1450 252 2259 685 Face 1451 3039 686 1547 Face 1452 871 4090 686 Face 1453 1879 1430 116 Face 1454 16 4720 1430 Face 1455 2342 3734 2149 Face 1456 2697 4664 2596 Face 1457 4535 689 4399 Face 1458 2565 4214 689 Face 1459 3218 1930 209 Face 1460 585 2091 690 Face 1461 1069 3016 2330 Face 1462 2034 1294 691 Face 1463 2467 3123 1598 Face 1464 1919 4024 1924 Face 1465 342 2663 950 Face 1466 2347 701 1104 Face 1467 4094 4873 2402 Face 1468 4094 623 4360 Face 1469 3709 695 3217 Face 1470 876 3606 695 Face 1471 2071 4650 1323 Face 1472 3530 1370 4199 Face 1473 3386 2533 609 Face 1474 2443 3365 1757 Face 1475 363 2134 777 Face 1476 699 861 4635 Face 1477 363 4605 698 Face 1478 363 783 4605 Face 1479 3056 3367 411 Face 1480 835 4563 700 Face 1481 1402 2487 176 Face 1482 589 1104 701 Face 1483 471 2072 1440 Face 1484 4615 818 2879 Face 1485 1329 2709 2215 Face 1486 4866 1246 703 Face 1487 1052 2016 735 Face 1488 885 3650 2017 Face 1489 3594 2317 391 Face 1490 2486 4371 705 Face 1491 2604 3759 750 Face 1492 3334 1759 4762 Face 1493 1607 4594 3704 Face 1494 4714 408 707 Face 1495 1665 1736 1364 Face 1496 4521 1034 4791 Face 1497 1322 2606 2039 Face 1498 405 2137 709 Face 1499 1584 4142 1672 Face 1500 3129 217 1074 Face 1501 1081 1710 2970 Face 1502 4344 1233 711 Face 1503 2939 1367 4366 Face 1504 2822 2002 2107 Face 1505 650 713 235 Face 1506 650 4559 713 Face 1507 3400 714 636 Face 1508 403 292 1873 Face 1509 1769 715 3680 Face 1510 4161 716 3742 Face 1511 4172 716 4161 Face 1512 4172 3695 716 Face 1513 3780 717 480 Face 1514 1899 1152 717 Face 1515 3899 3890 1184 Face 1516 1220 382 3260 Face 1517 800 2722 4675 Face 1518 1718 530 719 Face 1519 1145 1245 4224 Face 1520 3312 1461 3695 Face 1521 287 4096 283 Face 1522 1698 556 721 Face 1523 2505 722 470 Face 1524 4708 3175 1850 Face 1525 1613 4807 142 Face 1526 3555 601 1344 Face 1527 199 724 3188 Face 1528 199 1928 3838 Face 1529 348 1680 1381 Face 1530 789 2732 1680 Face 1531 112 726 149 Face 1532 4659 2288 726 Face 1533 112 4659 726 Face 1534 1405 4449 1617 Face 1535 1587 728 2033 Face 1536 212 2796 3181 Face 1537 4260 3579 252 Face 1538 4260 1019 3579 Face 1539 2941 730 2040 Face 1540 2941 4394 730 Face 1541 446 2199 4390 Face 1542 3418 2693 731 Face 1543 2198 2042 3206 Face 1544 2198 1816 1414 Face 1545 4492 2647 4386 Face 1546 290 250 733 Face 1547 1266 3013 666 Face 1548 333 465 2081 Face 1549 1158 735 2016 Face 1550 2205 1911 735 Face 1551 4552 736 1658 Face 1552 153 2476 2997 Face 1553 2645 1039 1571 Face 1554 182 2995 1039 Face 1555 1264 998 2995 Face 1556 1264 3433 998 Face 1557 1355 739 2902 Face 1558 1356 1234 4644 Face 1559 3674 2684 4092 Face 1560 2602 1077 4483 Face 1561 4625 826 3135 Face 1562 4625 1627 826 Face 1563 320 742 693 Face 1564 3775 1273 1793 Face 1565 4757 3731 3514 Face 1566 4757 384 3731 Face 1567 148 2197 3783 Face 1568 148 4299 3869 Face 1569 214 3978 2869 Face 1570 214 2852 3978 Face 1571 618 4085 2308 Face 1572 1594 2675 3448 Face 1573 1585 747 321 Face 1574 2029 1689 747 Face 1575 2702 748 1424 Face 1576 1776 2796 4081 Face 1577 1880 3529 2442 Face 1578 1880 629 3529 Face 1579 3852 1865 3758 Face 1580 3852 669 1865 Face 1581 1418 751 3898 Face 1582 1418 1060 3905 Face 1583 1252 752 1496 Face 1584 1251 4471 752 Face 1585 537 753 3720 Face 1586 1358 960 753 Face 1587 1077 754 2123 Face 1588 228 193 3726 Face 1589 2435 2845 2248 Face 1590 2704 1489 755 Face 1591 3601 756 1903 Face 1592 436 2181 756 Face 1593 4124 757 634 Face 1594 130 64 757 Face 1595 173 4907 134 Face 1596 1302 4692 4815 Face 1597 4679 759 1992 Face 1598 880 3130 3847 Face 1599 1485 2798 482 Face 1600 3986 681 760 Face 1601 4755 761 3464 Face 1602 396 538 761 Face 1603 4169 762 3125 Face 1604 3420 1876 1981 Face 1605 290 763 3262 Face 1606 1886 573 2413 Face 1607 3399 1780 2318 Face 1608 4327 869 2999 Face 1609 4135 1963 1973 Face 1610 3977 4115 2635 Face 1611 108 2388 641 Face 1612 1252 1733 766 Face 1613 153 1918 365 Face 1614 153 736 1448 Face 1615 168 768 557 Face 1616 168 3698 768 Face 1617 196 769 505 Face 1618 2916 1401 769 Face 1619 1231 1283 1034 Face 1620 369 1871 770 Face 1621 3264 2763 562 Face 1622 3895 3755 771 Face 1623 791 3035 3654 Face 1624 4164 485 3886 Face 1625 1128 773 1007 Face 1626 3720 1254 3824 Face 1627 962 3190 1812 Face 1628 2839 4269 1454 Face 1629 1408 775 4232 Face 1630 3175 3938 833 Face 1631 1590 776 751 Face 1632 2821 3358 776 Face 1633 1389 4083 1606 Face 1634 1389 338 4083 Face 1635 3949 1393 2430 Face 1636 1538 2621 778 Face 1637 4025 2203 2689 Face 1638 815 2696 2202 Face 1639 1027 780 3904 Face 1640 1202 2375 2170 Face 1641 2137 2830 709 Face 1642 246 1396 781 Face 1643 2285 782 1515 Face 1644 378 3229 1923 Face 1645 2094 4474 363 Face 1646 515 4839 2355 Face 1647 1275 784 2323 Face 1648 1303 1752 2807 Face 1649 4945 3487 1613 Face 1650 180 226 3521 Face 1651 785 4503 386 Face 1652 4843 2717 3521 Face 1653 328 4743 1358 Face 1654 3158 1518 787 Face 1655 2001 4604 1487 Face 1656 1551 1601 788 Face 1657 348 789 1680 Face 1658 348 528 789 Face 1659 1446 3656 327 Face 1660 1446 3736 3656 Face 1661 1312 1967 4162 Face 1662 4323 772 1967 Face 1663 2785 2025 979 Face 1664 1450 620 792 Face 1665 2535 793 3335 Face 1666 946 2343 4736 Face 1667 974 794 3880 Face 1668 2018 630 1527 Face 1669 4144 3782 794 Face 1670 812 303 1693 Face 1671 1016 4245 343 Face 1672 3012 1812 1628 Face 1673 462 2122 2740 Face 1674 3023 2483 797 Face 1675 1605 2111 953 Face 1676 3962 1576 798 Face 1677 4181 4545 4257 Face 1678 1054 3000 1893 Face 1679 799 4545 350 Face 1680 799 2722 800 Face 1681 2281 4489 4601 Face 1682 2983 2664 3108 Face 1683 3996 802 2303 Face 1684 437 3589 2591 Face 1685 187 2176 453 Face 1686 2060 3345 2175 Face 1687 211 2950 959 Face 1688 816 1209 804 Face 1689 308 2166 914 Face 1690 308 1163 2166 Face 1691 294 806 3915 Face 1692 2922 2657 3010 Face 1693 294 2922 806 Face 1694 2913 4905 2522 Face 1695 939 1382 2751 Face 1696 1630 3018 2133 Face 1697 2606 809 1685 Face 1698 709 2830 3021 Face 1699 249 4641 962 Face 1700 249 925 1512 Face 1701 3240 3879 3291 Face 1702 314 3083 811 Face 1703 974 4144 794 Face 1704 974 4888 4144 Face 1705 2464 3626 1346 Face 1706 3568 389 2300 Face 1707 4941 814 1654 Face 1708 4703 1047 3989 Face 1709 1288 4025 2689 Face 1710 3302 4410 815 Face 1711 4588 816 804 Face 1712 1429 2856 4714 Face 1713 489 2039 2606 Face 1714 2995 3811 1567 Face 1715 2990 818 1035 Face 1716 2990 2879 818 Face 1717 1196 4828 4302 Face 1718 942 1905 1798 Face 1719 2472 1948 3095 Face 1720 3461 1673 820 Face 1721 865 2726 2368 Face 1722 416 3181 3193 Face 1723 1840 822 254 Face 1724 1840 2107 4524 Face 1725 2484 823 1577 Face 1726 3051 2422 823 Face 1727 4519 2799 3357 Face 1728 380 2014 824 Face 1729 4793 2943 2539 Face 1730 706 2604 825 Face 1731 1152 3390 3106 Face 1732 1498 3135 4209 Face 1733 2157 4527 1078 Face 1734 2157 598 4527 Face 1735 3455 828 927 Face 1736 4369 3426 3719 Face 1737 2181 4110 2409 Face 1738 528 3546 829 Face 1739 4280 830 281 Face 1740 498 2672 830 Face 1741 2694 4204 2933 Face 1742 2230 1101 4125 Face 1743 3760 2406 2597 Face 1744 157 73 832 Face 1745 2262 4005 4065 Face 1746 2262 3533 4005 Face 1747 4236 4421 3091 Face 1748 2753 2426 4155 Face 1749 3056 2622 3368 Face 1750 1708 4048 2622 Face 1751 3503 3963 2133 Face 1752 343 4245 836 Face 1753 3431 3963 3503 Face 1754 3431 1017 837 Face 1755 2391 838 496 Face 1756 4866 4293 3325 Face 1757 3816 839 715 Face 1758 2003 1500 3543 Face 1759 2436 840 4817 Face 1760 2436 963 4177 Face 1761 4365 841 295 Face 1762 315 3831 2237 Face 1763 4395 842 2537 Face 1764 2958 366 842 Face 1765 183 843 1535 Face 1766 3512 1979 2828 Face 1767 289 2864 3395 Face 1768 1534 843 2863 Face 1769 3516 3397 346 Face 1770 3516 3268 845 Face 1771 3584 3149 1552 Face 1772 2834 1088 846 Face 1773 505 2322 2627 Face 1774 505 769 847 Face 1775 4139 4173 1165 Face 1776 254 822 848 Face 1777 1173 849 312 Face 1778 292 403 1904 Face 1779 4426 2938 2842 Face 1780 4426 3139 2938 Face 1781 451 851 1801 Face 1782 3386 609 851 Face 1783 1847 852 1278 Face 1784 2589 2466 1968 Face 1785 1784 853 1155 Face 1786 999 703 1246 Face 1787 1922 4145 657 Face 1788 98 977 854 Face 1789 1741 2507 2419 Face 1790 2705 3959 2507 Face 1791 2227 856 306 Face 1792 244 3826 1729 Face 1793 189 3764 1071 Face 1794 189 997 857 Face 1795 925 3014 4313 Face 1796 2462 1399 1707 Face 1797 2641 2542 2746 Face 1798 591 1887 3355 Face 1799 3322 860 1056 Face 1800 1197 1100 3930 Face 1801 2224 861 2030 Face 1802 4149 4635 861 Face 1803 539 862 3239 Face 1804 539 2026 862 Face 1805 3089 2300 1530 Face 1806 1372 814 1833 Face 1807 1989 2967 3575 Face 1808 2867 1089 3166 Face 1809 2323 865 1275 Face 1810 3211 3193 2008 Face 1811 161 4913 2309 Face 1812 161 3820 866 Face 1813 55 1889 114 Face 1814 55 2800 3863 Face 1815 255 1861 649 Face 1816 869 1049 1743 Face 1817 3295 869 1743 Face 1818 1097 2999 869 Face 1819 162 1419 1057 Face 1820 3222 1479 870 Face 1821 3039 871 686 Face 1822 395 482 3974 Face 1823 236 872 4630 Face 1824 1412 871 4361 Face 1825 1926 873 3281 Face 1826 1136 1969 4206 Face 1827 3780 1899 717 Face 1828 4409 2175 1899 Face 1829 414 2273 2124 Face 1830 414 1111 2273 Face 1831 3709 876 695 Face 1832 4400 2944 2442 Face 1833 2466 877 1388 Face 1834 2856 1429 2333 Face 1835 4427 1333 1290 Face 1836 1199 372 4509 Face 1837 579 2397 1430 Face 1838 2146 759 879 Face 1839 579 1280 879 Face 1840 1932 666 880 Face 1841 440 881 1139 Face 1842 4247 3094 3693 Face 1843 519 3593 2334 Face 1844 519 298 882 Face 1845 2546 883 4957 Face 1846 3637 800 4675 Face 1847 4193 2184 1272 Face 1848 2258 1943 884 Face 1849 1052 2031 2017 Face 1850 3658 2942 885 Face 1851 4952 2268 231 Face 1852 3389 1475 2268 Face 1853 888 2802 2138 Face 1854 2252 1300 2407 Face 1855 3825 1285 4747 Face 1856 2252 2407 2491 Face 1857 371 889 3842 Face 1858 2117 1192 3001 Face 1859 4481 2956 2246 Face 1860 2269 647 890 Face 1861 1284 3192 3445 Face 1862 415 53 891 Face 1863 3843 892 2954 Face 1864 3276 4179 892 Face 1865 3551 893 4481 Face 1866 890 1460 893 Face 1867 344 894 1648 Face 1868 3453 2523 1846 Face 1869 435 895 413 Face 1870 2667 4619 4082 Face 1871 3732 2204 2849 Face 1872 1433 2846 3256 Face 1873 2255 897 1232 Face 1874 898 1028 2616 Face 1875 1210 2255 3839 Face 1876 2405 2411 898 Face 1877 808 3631 837 Face 1878 3707 4073 899 Face 1879 81 1908 361 Face 1880 81 1141 1908 Face 1881 3470 3155 3409 Face 1882 3183 4349 901 Face 1883 456 3167 3062 Face 1884 456 326 3167 Face 1885 1452 3544 1517 Face 1886 1452 2930 1808 Face 1887 3889 905 2277 Face 1888 953 2111 905 Face 1889 4356 905 2111 Face 1890 2485 1789 3436 Face 1891 1010 906 3507 Face 1892 1010 4042 906 Face 1893 73 907 832 Face 1894 3744 2286 4790 Face 1895 1433 2288 4659 Face 1896 202 4010 908 Face 1897 4095 1691 1379 Face 1898 332 4891 2052 Face 1899 359 910 2463 Face 1900 359 2326 910 Face 1901 506 3738 305 Face 1902 1731 2978 1484 Face 1903 1596 3857 2528 Face 1904 200 2994 912 Face 1905 772 2529 2336 Face 1906 772 4323 2529 Face 1907 2721 3040 1927 Face 1908 521 308 914 Face 1909 170 2340 4654 Face 1910 170 3104 915 Face 1911 2555 4072 820 Face 1912 1854 3048 916 Face 1913 2759 917 4617 Face 1914 1946 4045 917 Face 1915 4001 918 2743 Face 1916 983 2454 4284 Face 1917 4309 3324 1449 Face 1918 1207 2233 3324 Face 1919 2058 920 3753 Face 1920 2058 520 4614 Face 1921 162 921 1419 Face 1922 2400 2069 921 Face 1923 1226 2400 921 Face 1924 923 4671 922 Face 1925 1226 923 922 Face 1926 4531 1965 923 Face 1927 2160 3519 4784 Face 1928 1387 2214 924 Face 1929 3145 925 249 Face 1930 3145 1399 2462 Face 1931 3337 926 1174 Face 1932 1018 2346 926 Face 1933 3990 927 2261 Face 1934 1064 3455 927 Face 1935 3342 2568 1074 Face 1936 936 2311 2568 Face 1937 2082 929 4170 Face 1938 247 774 929 Face 1939 1015 3928 796 Face 1940 3341 4887 2189 Face 1941 4432 931 1295 Face 1942 4432 545 931 Face 1943 2056 932 261 Face 1944 2056 3795 932 Face 1945 1168 933 4375 Face 1946 2573 137 3244 Face 1947 443 3370 271 Face 1948 935 1343 1863 Face 1949 2105 935 1863 Face 1950 2105 670 3055 Face 1951 3342 936 2568 Face 1952 3342 849 936 Face 1953 2658 1988 947 Face 1954 2658 240 1988 Face 1955 1761 4215 3333 Face 1956 1338 2338 4215 Face 1957 2194 1882 661 Face 1958 499 899 4073 Face 1959 3533 940 4163 Face 1960 2328 1850 940 Face 1961 1424 2116 1444 Face 1962 1671 1027 1697 Face 1963 1948 943 3095 Face 1964 1948 1604 3532 Face 1965 1747 3532 1604 Face 1966 1747 1798 943 Face 1967 352 1841 559 Face 1968 352 4665 1842 Face 1969 2535 945 793 Face 1970 246 2830 945 Face 1971 945 946 1573 Face 1972 2137 405 946 Face 1973 2169 947 937 Face 1974 2498 1355 2902 Face 1975 2177 3602 2729 Face 1976 4954 3993 3602 Face 1977 2335 4596 2257 Face 1978 3750 3109 949 Face 1979 2077 3197 1005 Face 1980 170 990 3627 Face 1981 4261 3907 1130 Face 1982 3311 2054 951 Face 1983 3057 952 803 Face 1984 3980 1107 2514 Face 1985 2813 1528 4914 Face 1986 612 865 2368 Face 1987 1282 954 1112 Face 1988 1954 1895 2734 Face 1989 576 1648 3565 Face 1990 1192 2883 955 Face 1991 4003 956 108 Face 1992 365 4393 3620 Face 1993 1445 2229 3288 Face 1994 4673 1318 957 Face 1995 573 1807 1143 Face 1996 2924 847 1309 Face 1997 3885 1806 4791 Face 1998 3885 2183 959 Face 1999 4809 960 4046 Face 2000 683 753 960 Face 2001 144 961 439 Face 2002 2206 2487 961 Face 2003 2839 4744 664 Face 2004 2839 1454 3480 Face 2005 3675 963 3251 Face 2006 736 153 2997 Face 2007 1234 964 4644 Face 2008 3450 872 2132 Face 2009 3103 2488 383 Face 2010 3807 251 965 Face 2011 2713 966 2401 Face 2012 2714 2142 966 Face 2013 491 967 3670 Face 2014 3424 4567 2399 Face 2015 2910 3831 315 Face 2016 407 2256 968 Face 2017 2705 969 3959 Face 2018 53 415 3141 Face 2019 1566 970 4383 Face 2020 3959 969 2461 Face 2021 2665 4091 1686 Face 2022 2665 668 4091 Face 2023 306 1982 4441 Face 2024 306 856 1982 Face 2025 4792 1405 1617 Face 2026 1396 246 973 Face 2027 3496 1706 975 Face 2028 508 983 1706 Face 2029 1307 2331 4315 Face 2030 353 2793 4464 Face 2031 4811 976 913 Face 2032 496 1103 976 Face 2033 4925 977 3103 Face 2034 3122 854 977 Face 2035 1683 2139 1740 Face 2036 582 1464 2139 Face 2037 1536 3024 2025 Face 2038 270 2452 3024 Face 2039 2516 980 2889 Face 2040 3597 3313 980 Face 2041 651 981 4576 Face 2042 2881 2563 981 Face 2043 1559 4231 3153 Face 2044 4918 4668 3526 Face 2045 1434 983 1191 Face 2046 1434 1706 983 Face 2047 389 984 1277 Face 2048 389 1012 984 Face 2049 4638 2047 982 Face 2050 2699 886 2429 Face 2051 3394 986 1440 Face 2052 3311 951 3117 Face 2053 466 987 4735 Face 2054 2561 1268 3525 Face 2055 2254 988 155 Face 2056 54 3114 988 Face 2057 1787 1123 785 Face 2058 2284 3477 2838 Face 2059 4654 990 170 Face 2060 386 3115 990 Face 2061 992 991 3849 Face 2062 4754 2907 991 Face 2063 4754 992 3212 Face 2064 4754 991 992 Face 2065 3705 2746 3353 Face 2066 3705 4210 993 Face 2067 4122 994 3985 Face 2068 4122 313 994 Face 2069 175 2359 1581 Face 2070 2959 1146 3617 Face 2071 2115 3877 4169 Face 2072 2311 936 996 Face 2073 409 997 201 Face 2074 2021 857 997 Face 2075 3029 1855 1553 Face 2076 4052 1567 1855 Face 2077 1132 999 3538 Face 2078 233 703 999 Face 2079 388 4708 1850 Face 2080 2506 2220 1000 Face 2081 1524 1001 955 Face 2082 3948 2049 2283 Face 2083 4033 1987 3204 Face 2084 252 685 1002 Face 2085 4314 1003 2502 Face 2086 1178 2012 3965 Face 2087 3843 3276 892 Face 2088 243 3616 1004 Face 2089 3396 3380 1543 Face 2090 3603 3906 2154 Face 2091 2001 1804 4604 Face 2092 2000 1660 3699 Face 2093 2615 1007 773 Face 2094 2615 3625 1007 Face 2095 152 2256 3099 Face 2096 152 1305 1008 Face 2097 62 2501 1284 Face 2098 1655 2983 3763 Face 2099 4680 4442 578 Face 2100 4764 1608 4442 Face 2101 1780 1011 2318 Face 2102 764 1044 1011 Face 2103 1811 1012 3537 Face 2104 2788 984 1012 Face 2105 4735 1013 466 Face 2106 3871 4702 1013 Face 2107 2250 1684 4129 Face 2108 2595 2139 1683 Face 2109 247 1015 1812 Face 2110 2082 4887 3341 Face 2111 1603 1016 1402 Face 2112 3012 1628 4933 Face 2113 1840 1017 2107 Face 2114 468 808 1017 Face 2115 4717 1018 926 Face 2116 2644 4274 2683 Face 2117 278 3002 2667 Face 2118 2172 2961 4190 Face 2119 2087 1020 1337 Face 2120 571 1549 3915 Face 2121 2061 2809 2605 Face 2122 371 1839 1021 Face 2123 334 1022 738 Face 2124 4562 3943 3911 Face 2125 1358 1023 2096 Face 2126 537 256 1023 Face 2127 3171 3331 2158 Face 2128 555 426 1024 Face 2129 1735 4202 3761 Face 2130 4574 2854 3094 Face 2131 4563 1026 853 Face 2132 349 4181 1026 Face 2133 2710 1027 2051 Face 2134 2710 780 1027 Face 2135 2945 1028 898 Face 2136 2945 2171 1028 Face 2137 375 1029 1914 Face 2138 1057 1666 1029 Face 2139 2739 1570 3903 Face 2140 1032 2203 3224 Face 2141 601 1031 1344 Face 2142 2739 3903 1621 Face 2143 2738 1493 4306 Face 2144 4494 3555 2236 Face 2145 2733 1033 4502 Face 2146 2732 789 3215 Face 2147 540 1034 1283 Face 2148 3885 4791 1034 Face 2149 3468 1035 215 Face 2150 2837 2762 1035 Face 2151 2307 3649 561 Face 2152 1047 3160 1036 Face 2153 4319 1037 1409 Face 2154 2836 1035 3468 Face 2155 669 1038 3791 Face 2156 2010 4755 3464 Face 2157 3383 3851 1126 Face 2158 1238 1571 3851 Face 2159 1213 1040 2935 Face 2160 3047 3991 1040 Face 2161 1101 4769 3100 Face 2162 3054 356 1041 Face 2163 67 3054 1041 Face 2164 67 1568 1042 Face 2165 1044 1043 1098 Face 2166 4749 229 2374 Face 2167 3295 1097 869 Face 2168 1397 1043 1044 Face 2169 2167 1045 981 Face 2170 234 537 1045 Face 2171 4622 1046 3829 Face 2172 1912 2473 3203 Face 2173 2307 1047 3649 Face 2174 324 3989 1047 Face 2175 1438 3176 4606 Face 2176 1598 3123 1048 Face 2177 1742 3399 2318 Face 2178 1742 2716 1049 Face 2179 1664 3245 1925 Face 2180 382 1221 1050 Face 2181 3246 2445 4295 Face 2182 3246 1910 1051 Face 2183 3829 1052 4622 Face 2184 3658 2031 1052 Face 2185 350 1054 799 Face 2186 350 3283 2458 Face 2187 1053 1054 350 Face 2188 1053 662 1054 Face 2189 3983 3421 4904 Face 2190 1230 2941 2040 Face 2191 4291 2437 3646 Face 2192 404 4167 3124 Face 2193 375 1761 1029 Face 2194 3994 4215 1761 Face 2195 2048 1058 4407 Face 2196 489 2606 1685 Face 2197 3321 1890 2290 Face 2198 531 4542 3635 Face 2199 486 1060 1418 Face 2200 1632 902 1645 Face 2201 702 1061 4835 Face 2202 3151 791 1061 Face 2203 1438 1062 1048 Face 2204 2242 2921 2120 Face 2205 4456 3995 1342 Face 2206 4589 3216 1063 Face 2207 3990 1064 927 Face 2208 1496 3517 1641 Face 2209 4771 1065 319 Face 2210 4771 3191 1065 Face 2211 4886 1066 128 Face 2212 114 1889 4632 Face 2213 2430 1067 4827 Face 2214 477 4634 1067 Face 2215 3416 1068 581 Face 2216 1380 1690 4569 Face 2217 1071 1070 2532 Face 2218 4129 1684 2034 Face 2219 1069 2861 357 Face 2220 1069 2330 2862 Face 2221 357 1071 4478 Face 2222 357 2861 1071 Face 2223 368 4863 939 Face 2224 368 1185 2795 Face 2225 3588 3206 2042 Face 2226 2953 1181 1520 Face 2227 4142 2332 329 Face 2228 4142 1584 2332 Face 2229 4575 1075 3962 Face 2230 4575 4883 1075 Face 2231 798 1076 1995 Face 2232 798 1576 3031 Face 2233 3518 3498 635 Face 2234 3518 754 1077 Face 2235 1649 2833 1615 Face 2236 1649 1997 1702 Face 2237 1078 1079 1262 Face 2238 1702 481 3182 Face 2239 1079 1080 1262 Face 2240 3182 481 1480 Face 2241 404 2298 593 Face 2242 404 3646 2298 Face 2243 4592 1766 3622 Face 2244 3022 593 1082 Face 2245 4480 3382 2239 Face 2246 4940 2570 1701 Face 2247 3172 2188 1859 Face 2248 4010 202 1084 Face 2249 300 2226 3495 Face 2250 2555 820 1673 Face 2251 1495 3078 2656 Face 2252 1870 480 1086 Face 2253 1445 1087 4935 Face 2254 4930 3006 3500 Face 2255 3528 2548 642 Face 2256 1509 288 4709 Face 2257 3638 1952 748 Face 2258 502 864 4929 Face 2259 2707 3687 4143 Face 2260 4788 1989 3575 Face 2261 4938 3138 3787 Face 2262 1976 3987 1091 Face 2263 4165 3204 1987 Face 2264 2159 4365 1092 Face 2265 4211 1093 2159 Face 2266 315 841 1093 Face 2267 4925 2773 977 Face 2268 383 1279 2773 Face 2269 2978 1629 1484 Face 2270 164 4414 3894 Face 2271 164 1096 265 Face 2272 2978 1731 2885 Face 2273 1044 1097 1397 Face 2274 1044 764 1097 Face 2275 1161 3992 3456 Face 2276 4510 1044 1098 Face 2277 178 1099 1270 Face 2278 178 2540 1099 Face 2279 479 3364 648 Face 2280 4878 3770 1100 Face 2281 67 1101 1595 Face 2282 67 1041 1101 Face 2283 1891 4178 2168 Face 2284 4499 3834 1102 Face 2285 314 3972 1511 Face 2286 1290 1506 3007 Face 2287 1949 1104 589 Face 2288 1106 950 2663 Face 2289 4372 4158 2663 Face 2290 2668 1931 1105 Face 2291 1105 4158 4372 Face 2292 1105 4538 1106 Face 2293 4821 1471 4380 Face 2294 1695 2253 4087 Face 2295 281 4157 1579 Face 2296 3765 3288 2459 Face 2297 221 4835 1061 Face 2298 1537 2860 1109 Face 2299 2594 3741 2180 Face 2300 2955 274 3867 Face 2301 3495 4008 4307 Face 2302 4385 2514 3058 Face 2303 933 1112 954 Face 2304 3244 4910 1112 Face 2305 1386 2435 2926 Face 2306 198 3607 2435 Face 2307 1435 1114 4684 Face 2308 2637 1411 1125 Face 2309 622 1115 1951 Face 2310 622 3148 1115 Face 2311 3164 2130 1117 Face 2312 1828 4633 1116 Face 2313 2713 2714 966 Face 2314 592 293 1117 Face 2315 240 1118 1988 Face 2316 1319 59 2247 Face 2317 3932 3097 745 Face 2318 4016 299 3098 Face 2319 154 1120 141 Face 2320 154 932 1120 Face 2321 1822 1121 121 Face 2322 1822 143 1121 Face 2323 143 1122 932 Face 2324 143 3795 1122 Face 2325 989 1574 915 Face 2326 4872 2521 3147 Face 2327 2222 1124 2688 Face 2328 2465 2180 4894 Face 2329 1114 3434 2097 Face 2330 1114 3247 1125 Face 2331 1791 1126 3851 Face 2332 2915 1058 2048 Face 2333 489 1127 1567 Face 2334 1791 1039 1127 Face 2335 4368 1128 572 Face 2336 619 2586 1128 Face 2337 288 2392 3600 Face 2338 288 1509 2992 Face 2339 485 1130 3645 Face 2340 485 986 1130 Face 2341 160 1131 1848 Face 2342 160 2333 4882 Face 2343 3573 1132 3231 Face 2344 233 999 1132 Face 2345 163 1133 238 Face 2346 2678 4376 1957 Face 2347 1525 1134 2925 Face 2348 1349 2251 1134 Face 2349 2962 4043 527 Face 2350 2962 2010 1135 Face 2351 3406 1136 4206 Face 2352 1236 1878 1136 Face 2353 1368 2362 1560 Face 2354 3061 686 2858 Face 2355 1381 1138 966 Face 2356 662 1053 2118 Face 2357 325 3019 456 Face 2358 325 440 3019 Face 2359 450 4099 3984 Face 2360 1517 3544 1140 Face 2361 3802 1141 81 Face 2362 3802 3609 1141 Face 2363 4571 1142 1860 Face 2364 1620 1888 3596 Face 2365 4017 1814 94 Face 2366 4108 2460 2551 Face 2367 4525 1144 284 Face 2368 4525 938 1144 Face 2369 3900 1728 4171 Face 2370 3313 3597 1728 Face 2371 740 2415 1490 Face 2372 740 3617 2415 Face 2373 4168 1147 643 Face 2374 3714 4543 2195 Face 2375 589 1148 693 Face 2376 2876 3116 1148 Face 2377 843 4513 2863 Face 2378 2828 1979 1802 Face 2379 4100 2613 4643 Face 2380 3717 1286 2270 Face 2381 1150 2270 1286 Face 2382 3241 4643 1151 Face 2383 741 2090 874 Face 2384 1498 4209 3199 Face 2385 3577 2660 2260 Face 2386 688 2283 4876 Face 2387 251 1154 965 Face 2388 2952 437 1154 Face 2389 444 1155 853 Face 2390 3637 4675 2547 Face 2391 418 1156 564 Face 2392 418 828 3455 Face 2393 3770 1157 1974 Face 2394 429 2084 4250 Face 2395 2205 2469 330 Face 2396 2205 735 1158 Face 2397 3273 1159 2821 Face 2398 3809 488 1159 Face 2399 3850 3307 1713 Face 2400 532 364 1160 Face 2401 2364 1961 771 Face 2402 4510 4220 1961 Face 2403 213 2832 2701 Face 2404 213 4270 2832 Face 2405 1164 1163 1770 Face 2406 1299 2166 1163 Face 2407 1165 1164 253 Face 2408 1299 1163 3252 Face 2409 484 1165 4173 Face 2410 3567 3252 1748 Face 2411 2485 1996 1789 Face 2412 1995 1076 1321 Face 2413 341 1167 679 Face 2414 341 1394 1167 Face 2415 2573 1168 3614 Face 2416 2573 933 1168 Face 2417 4375 3344 1168 Face 2418 3435 373 4495 Face 2419 4027 1170 1378 Face 2420 2119 1169 4799 Face 2421 2233 2376 3324 Face 2422 4286 2617 1171 Face 2423 839 3542 267 Face 2424 839 3052 3542 Face 2425 3776 2893 637 Face 2426 292 3310 1173 Face 2427 438 1174 926 Face 2428 3484 1248 3545 Face 2429 413 1175 435 Face 2430 3868 4241 2814 Face 2431 2517 1176 2213 Face 2432 436 756 3601 Face 2433 515 4383 970 Face 2434 2094 363 2389 Face 2435 1518 4314 2502 Face 2436 684 1539 1178 Face 2437 3958 1179 3374 Face 2438 3958 1502 1179 Face 2439 3152 1180 1916 Face 2440 4023 1041 1180 Face 2441 473 1181 2453 Face 2442 473 1520 1181 Face 2443 3665 1182 2827 Face 2444 952 1805 3901 Face 2445 952 1183 803 Face 2446 2253 2079 1183 Face 2447 481 4089 1480 Face 2448 4115 3977 4089 Face 2449 4715 1185 2135 Face 2450 4095 1379 1185 Face 2451 230 1186 4753 Face 2452 3895 2763 3264 Face 2453 439 1612 144 Face 2454 1772 2101 3451 Face 2455 1617 1188 4792 Face 2456 3506 1433 1188 Face 2457 498 1189 918 Face 2458 3670 967 1189 Face 2459 279 3623 3856 Face 2460 1363 3280 1190 Face 2461 918 2672 498 Face 2462 918 4001 1191 Face 2463 1529 1192 3442 Face 2464 4004 3001 1192 Face 2465 2991 3363 280 Face 2466 204 4239 4026 Face 2467 3461 1194 1673 Face 2468 2238 1991 1194 Face 2469 2472 1195 3328 Face 2470 2238 3608 1764 Face 2471 208 1196 4302 Face 2472 208 1764 1196 Face 2473 3322 1197 860 Face 2474 503 2909 1197 Face 2475 1983 3707 899 Face 2476 1983 1330 2044 Face 2477 4845 4427 2840 Face 2478 2470 372 1199 Face 2479 427 4695 2880 Face 2480 427 1765 1857 Face 2481 610 4335 1744 Face 2482 2780 1575 1201 Face 2483 2411 2945 898 Face 2484 2411 2375 1202 Face 2485 3444 1203 1536 Face 2486 1190 2673 1203 Face 2487 1711 3357 2799 Face 2488 2777 774 1204 Face 2489 1624 1205 3476 Face 2490 2961 2172 2831 Face 2491 73 3744 907 Face 2492 1866 2567 2326 Face 2493 339 4309 1449 Face 2494 3227 454 1207 Face 2495 507 3603 2154 Face 2496 4651 2182 1208 Face 2497 707 1209 816 Face 2498 2680 369 3242 Face 2499 3317 3033 2805 Face 2500 1211 1201 1575 Face 2501 3037 3317 617 Face 2502 1813 1201 1211 Face 2503 3099 2935 1040 Face 2504 2403 3119 1212 Face 2505 504 1213 515 Face 2506 3047 1040 1993 Face 2507 1903 2161 3601 Face 2508 329 928 1214 Face 2509 267 1215 3270 Face 2510 1216 4074 2794 Face 2511 1662 1216 2794 Face 2512 1662 2262 3767 Face 2513 207 1217 3810 Face 2514 207 827 1217 Face 2515 915 1218 989 Face 2516 915 3104 1218 Face 2517 346 1219 169 Face 2518 3051 823 2484 Face 2519 1339 3899 1184 Face 2520 1221 382 1220 Face 2521 1339 1221 1220 Face 2522 3690 1051 1910 Face 2523 4349 4890 901 Face 2524 4185 2395 4890 Face 2525 393 3210 2363 Face 2526 2791 4960 1237 Face 2527 269 1224 1042 Face 2528 2452 270 3849 Face 2529 451 1225 851 Face 2530 2817 1757 4032 Face 2531 162 3407 921 Face 2532 3333 282 1465 Face 2533 1269 1227 335 Face 2534 4149 861 2748 Face 2535 2316 3377 2766 Face 2536 2316 541 3377 Face 2537 2629 1229 156 Face 2538 2629 2528 1229 Face 2539 268 1230 1055 Face 2540 268 1474 1230 Face 2541 1665 2496 1736 Face 2542 2662 2860 2985 Face 2543 3641 3839 1089 Face 2544 2805 1210 3839 Face 2545 860 1233 2437 Face 2546 2148 711 1233 Face 2547 412 1234 1356 Face 2548 3450 964 3162 Face 2549 4112 1235 127 Face 2550 4496 342 4034 Face 2551 3406 1236 1136 Face 2552 159 3210 1236 Face 2553 2022 1237 4960 Face 2554 2877 1236 1237 Face 2555 1239 3383 2342 Face 2556 3449 4629 1238 Face 2557 2149 1239 2342 Face 2558 2149 1451 4666 Face 2559 1357 1240 4035 Face 2560 2219 762 1240 Face 2561 859 1241 591 Face 2562 2245 1306 2542 Face 2563 2939 2481 1367 Face 2564 822 1840 4524 Face 2565 631 1647 972 Face 2566 4343 2349 2381 Face 2567 2540 3282 1099 Face 2568 2131 1173 1244 Face 2569 720 1245 1145 Face 2570 720 3196 1245 Face 2571 3881 1246 4118 Face 2572 3881 999 1246 Face 2573 2179 1247 2703 Face 2574 281 830 2624 Face 2575 4803 1248 4804 Face 2576 4056 3545 1248 Face 2577 523 4326 353 Face 2578 4637 604 3232 Face 2579 738 2103 1796 Face 2580 2592 1029 1250 Face 2581 1252 1251 752 Face 2582 108 956 1251 Face 2583 108 1252 2388 Face 2584 108 1251 1252 Face 2585 2353 1253 129 Face 2586 3527 4698 3202 Face 2587 3473 3509 2625 Face 2588 665 2221 1254 Face 2589 2102 1255 2433 Face 2590 90 3998 3385 Face 2591 2686 4589 1063 Face 2592 89 797 1256 Face 2593 2946 1257 4137 Face 2594 606 3028 1257 Face 2595 3261 2261 4084 Face 2596 615 1427 1834 Face 2597 1258 1259 766 Face 2598 1258 615 1259 Face 2599 621 1260 2076 Face 2600 621 1439 1260 Face 2601 4454 4416 3687 Face 2602 4896 3460 2690 Face 2603 3556 1262 1080 Face 2604 1263 3373 2157 Face 2605 382 2835 3260 Face 2606 1664 1925 4487 Face 2607 182 1264 2995 Face 2608 4564 3433 1264 Face 2609 572 1265 4368 Face 2610 572 2882 1265 Face 2611 333 4012 1328 Face 2612 333 2081 4785 Face 2613 1885 1267 3605 Face 2614 2310 3948 3068 Face 2615 2948 1268 2561 Face 2616 218 654 1268 Face 2617 218 4316 654 Face 2618 218 1227 4316 Face 2619 986 4800 1130 Face 2620 986 3394 1270 Face 2621 2127 4930 2447 Face 2622 4522 398 1271 Face 2623 2144 1272 2184 Face 2624 2098 743 1272 Face 2625 501 2098 1272 Face 2626 501 2832 2098 Face 2627 2760 1770 1163 Face 2628 2760 4213 1274 Face 2629 612 1275 865 Face 2630 1303 2807 3837 Face 2631 1404 1343 935 Face 2632 526 517 1276 Face 2633 1573 4213 1351 Face 2634 1573 946 4736 Face 2635 714 1278 852 Face 2636 1873 292 2652 Face 2637 623 3630 4360 Face 2638 3077 2773 1279 Face 2639 880 3715 579 Face 2640 880 2147 3715 Face 2641 355 3042 4906 Face 2642 4413 1682 3970 Face 2643 1353 1282 4910 Face 2644 4079 1477 1592 Face 2645 2860 1283 2985 Face 2646 2860 1537 3648 Face 2647 4753 1284 230 Face 2648 4753 3192 1284 Face 2649 2491 1285 2252 Face 2650 2491 1494 1285 Face 2651 3845 2093 888 Face 2652 4864 1463 2093 Face 2653 3892 1287 4862 Face 2654 419 1746 1287 Face 2655 376 1288 181 Face 2656 3302 815 1288 Face 2657 1980 1289 1993 Face 2658 504 245 1289 Face 2659 314 4661 3972 Face 2660 2880 4845 2840 Face 2661 2808 1291 4723 Face 2662 2808 309 4358 Face 2663 2703 1292 3765 Face 2664 628 490 1292 Face 2665 1992 3443 475 Face 2666 1992 759 4436 Face 2667 585 1294 3902 Face 2668 2191 691 1294 Face 2669 417 1295 4430 Face 2670 417 3876 1295 Face 2671 761 1296 539 Face 2672 761 538 1296 Face 2673 4166 1297 3875 Face 2674 1532 634 1297 Face 2675 424 4176 979 Face 2676 424 2038 4176 Face 2677 1488 3566 4067 Face 2678 1488 2719 3566 Face 2679 2032 3728 1609 Face 2680 2032 3749 3728 Face 2681 68 1301 3217 Face 2682 2669 21 1301 Face 2683 173 1302 4815 Face 2684 2632 453 1302 Face 2685 2813 1303 3837 Face 2686 2813 2321 1303 Face 2687 4226 1304 2562 Face 2688 1305 2759 4248 Face 2689 4226 1305 4248 Face 2690 464 1008 1305 Face 2691 2750 3906 3603 Face 2692 4197 2542 1306 Face 2693 353 4184 523 Face 2694 353 2331 1307 Face 2695 562 4305 4480 Face 2696 562 2763 4305 Face 2697 4782 1309 4217 Face 2698 1807 2924 1309 Face 2699 482 1310 3974 Face 2700 4772 1141 3609 Face 2701 3883 1311 639 Face 2702 257 919 3020 Face 2703 471 1312 2072 Face 2704 1751 2529 4323 Face 2705 193 1313 1663 Face 2706 193 227 1313 Face 2707 416 3936 4688 Face 2708 1315 4397 1314 Face 2709 416 3578 4367 Face 2710 1316 784 1315 Face 2711 416 4466 3578 Face 2712 416 3193 4466 Face 2713 4335 3454 1744 Face 2714 1201 1813 3454 Face 2715 3772 1318 4673 Face 2716 3772 1108 1318 Face 2717 240 1319 1118 Face 2718 1625 2428 1749 Face 2719 1431 4802 3178 Face 2720 2691 4415 3822 Face 2721 1166 1321 941 Face 2722 3384 4308 4398 Face 2723 2212 1322 1420 Face 2724 2212 4826 1322 Face 2725 4228 4774 4150 Face 2726 4733 3635 3319 Face 2727 226 1324 4663 Face 2728 1591 220 2068 Face 2729 616 4101 340 Face 2730 2583 685 1325 Face 2731 2066 3196 4127 Face 2732 265 916 2398 Face 2733 3921 1327 1407 Face 2734 3921 2398 1327 Face 2735 580 1328 1266 Face 2736 2725 3878 2431 Face 2737 3325 3366 4770 Face 2738 3325 2971 3366 Face 2739 4121 4254 1345 Face 2740 4121 2044 1330 Face 2741 4593 3447 2243 Face 2742 1725 1102 3834 Face 2743 1333 2404 2108 Face 2744 878 1674 2404 Face 2745 4508 1333 1199 Face 2746 4508 2404 1333 Face 2747 1744 4183 610 Face 2748 4951 3075 1334 Face 2749 1925 4295 2244 Face 2750 1925 3245 4295 Face 2751 2916 1336 1401 Face 2752 2677 1467 1336 Face 2753 283 1337 1020 Face 2754 2758 2046 3314 Face 2755 3994 1338 4215 Face 2756 3994 2095 1338 Face 2757 275 3489 401 Face 2758 3690 1910 3489 Face 2759 3690 1340 1051 Face 2760 275 1317 1340 Face 2761 1809 1341 680 Face 2762 3207 476 1341 Face 2763 201 2870 409 Face 2764 2156 514 1342 Face 2765 1276 2234 526 Face 2766 1276 2875 2234 Face 2767 723 1344 3751 Face 2768 4807 1613 1344 Face 2769 428 1345 4254 Face 2770 428 3626 2045 Face 2771 428 1346 3626 Face 2772 428 468 4616 Face 2773 3228 1347 633 Face 2774 3228 1338 1347 Face 2775 3507 4238 1010 Face 2776 345 2271 1348 Face 2777 1525 1349 1134 Face 2778 2373 1101 3944 Face 2779 4723 1998 2808 Face 2780 426 555 1350 Face 2781 308 1351 1163 Face 2782 308 4484 1351 Face 2783 1022 1352 3225 Face 2784 1022 334 3911 Face 2785 3360 3059 3561 Face 2786 3632 2418 1353 Face 2787 2354 1354 3360 Face 2788 2872 659 1354 Face 2789 3070 1355 4515 Face 2790 447 739 1355 Face 2791 447 1356 4644 Face 2792 2165 676 1356 Face 2793 215 1357 1037 Face 2794 2219 1240 1357 Face 2795 537 1358 753 Face 2796 537 1023 1358 Face 2797 1360 1359 2444 Face 2798 1360 2493 1359 Face 2799 406 2281 718 Face 2800 406 2986 2281 Face 2801 3561 1361 2354 Face 2802 564 1156 1361 Face 2803 1363 3279 3280 Face 2804 4899 4384 1362 Face 2805 279 1363 1190 Face 2806 4899 1362 1363 Face 2807 1209 1364 804 Face 2808 3242 1665 1364 Face 2809 1055 1365 268 Face 2810 1055 4786 1365 Face 2811 2479 1366 2082 Face 2812 2479 1242 1366 Face 2813 3595 1367 2481 Face 2814 712 824 1367 Face 2815 205 1368 825 Face 2816 205 2126 1368 Face 2817 205 1369 1619 Face 2818 205 4514 1369 Face 2819 3916 4092 2684 Face 2820 317 2610 1370 Face 2821 1830 4697 423 Face 2822 4452 595 4281 Face 2823 1715 1372 1833 Face 2824 3766 1036 3160 Face 2825 1374 1373 863 Face 2826 3766 1372 1715 Face 2827 1562 3089 1423 Face 2828 813 1373 1374 Face 2829 4148 3539 1939 Face 2830 2771 4646 4609 Face 2831 1851 1392 3010 Face 2832 1851 397 3773 Face 2833 1451 1377 2474 Face 2834 345 1348 4577 Face 2835 3723 1378 1170 Face 2836 1532 1297 4166 Face 2837 1380 1379 1690 Face 2838 4722 1185 1379 Face 2839 4384 3416 1362 Face 2840 2531 1379 1380 Face 2841 662 1610 2786 Face 2842 662 2118 1610 Face 2843 1198 1382 3923 Face 2844 2044 678 1382 Face 2845 286 3663 3069 Face 2846 1524 955 2883 Face 2847 238 3161 163 Face 2848 3036 593 1384 Face 2849 4454 4897 4416 Face 2850 410 1004 3810 Face 2851 198 1386 463 Face 2852 198 2435 1386 Face 2853 374 3733 3520 Face 2854 374 1692 3733 Face 2855 636 1476 3914 Face 2856 636 852 1388 Face 2857 609 1389 387 Face 2858 609 2533 1389 Face 2859 4665 1390 1842 Face 2860 896 663 3257 Face 2861 1376 1391 2162 Face 2862 1376 1025 1391 Face 2863 3761 3773 1735 Face 2864 1376 4497 1392 Face 2865 3721 1393 3949 Face 2866 3789 1984 1393 Face 2867 344 2151 894 Face 2868 344 1167 1394 Face 2869 344 1395 1167 Face 2870 1750 1001 3408 Face 2871 4902 1396 973 Face 2872 4902 158 1396 Face 2873 3295 1397 1097 Face 2874 4359 229 4749 Face 2875 307 4493 2076 Face 2876 1829 1067 1792 Face 2877 63 1872 3571 Face 2878 63 908 1872 Face 2879 319 1400 2087 Face 2880 2269 3551 1400 Face 2881 4124 1401 3926 Face 2882 4124 2742 3582 Face 2883 2876 1867 590 Face 2884 589 701 1867 Face 2885 470 4488 2505 Face 2886 1667 667 1403 Face 2887 4171 1404 3900 Face 2888 4477 1343 1404 Face 2889 973 1405 4792 Face 2890 3041 1699 2728 Face 2891 2718 1406 1874 Face 2892 2473 1912 1406 Face 2893 2473 2718 1327 Face 2894 2473 1406 2718 Face 2895 271 1408 443 Face 2896 2328 940 1408 Face 2897 403 1409 2341 Face 2898 3400 4216 1409 Face 2899 1411 2761 1941 Face 2900 3271 3308 1410 Face 2901 179 2294 2638 Face 2902 1478 2874 2538 Face 2903 236 3572 872 Face 2904 2553 686 3572 Face 2905 2290 2071 4958 Face 2906 4273 1963 4135 Face 2907 732 1414 588 Face 2908 2042 2198 1414 Face 2909 3659 3611 1767 Face 2910 591 1241 1416 Face 2911 1415 1416 1241 Face 2912 2643 1825 1416 Face 2913 3640 3510 3042 Face 2914 2796 212 3653 Face 2915 2440 1418 3898 Face 2916 488 486 1418 Face 2917 870 2886 3222 Face 2918 1420 1057 1419 Face 2919 870 1420 2886 Face 2920 3548 1530 2600 Face 2921 413 1421 1175 Face 2922 413 1561 1421 Face 2923 1423 1422 1562 Face 2924 1423 1766 1422 Face 2925 2957 1423 3089 Face 2926 404 593 3022 Face 2927 897 3452 3428 Face 2928 2051 1027 1671 Face 2929 1486 1425 22 Face 2930 259 3223 1425 Face 2931 3207 1426 2866 Face 2932 172 1786 2178 Face 2933 2228 1428 1814 Face 2934 2228 1834 2931 Face 2935 1427 2931 1834 Face 2936 4108 2551 2931 Face 2937 4588 1429 816 Face 2938 3154 2333 1429 Face 2939 1958 1430 4720 Face 2940 1958 1565 1430 Face 2941 2079 1431 1183 Face 2942 1432 4415 2691 Face 2943 1695 2079 2253 Face 2944 177 1219 1432 Face 2945 3732 2369 2204 Face 2946 202 2288 4059 Face 2947 4058 4001 2743 Face 2948 4888 974 1434 Face 2949 2637 3201 3066 Face 2950 2637 1125 3201 Face 2951 1437 1436 2947 Face 2952 2729 948 1436 Face 2953 3247 3201 1125 Face 2954 2729 1436 1437 Face 2955 2775 1438 2106 Face 2956 2775 1062 1438 Face 2957 622 1439 3148 Face 2958 622 1260 1439 Face 2959 611 1440 2072 Face 2960 1871 3394 1440 Face 2961 498 3670 1189 Face 2962 4280 281 1441 Face 2963 4145 2765 657 Face 2964 2593 188 1442 Face 2965 320 1443 3531 Face 2966 320 693 1443 Face 2967 1076 1444 941 Face 2968 3031 1576 2702 Face 2969 4523 1445 3288 Face 2970 2127 2447 1445 Face 2971 4573 1877 684 Face 2972 129 1253 1877 Face 2973 105 1447 113 Face 2974 105 49 1447 Face 2975 2778 4552 3697 Face 2976 1918 153 1448 Face 2977 460 1449 919 Face 2978 460 2920 1449 Face 2979 421 2785 1298 Face 2980 421 2810 1450 Face 2981 345 4623 737 Face 2982 345 4577 4623 Face 2983 273 1452 1517 Face 2984 3469 734 1452 Face 2985 363 1453 2389 Face 2986 363 777 4621 Face 2987 774 1454 1204 Face 2988 3190 3480 1454 Face 2989 666 3130 880 Face 2990 3998 90 1455 Face 2991 3757 1456 4700 Face 2992 706 825 3874 Face 2993 1789 1457 4813 Face 2994 1789 1996 1457 Face 2995 232 1458 687 Face 2996 1477 4583 4947 Face 2997 937 4051 448 Face 2998 3967 2249 4051 Face 2999 646 2688 2737 Face 3000 646 2425 1460 Face 3001 716 1461 3549 Face 3002 716 3695 1461 Face 3003 590 3116 2876 Face 3004 4955 1601 1462 Face 3005 2949 1463 4864 Face 3006 1150 1286 4147 Face 3007 1150 2949 2366 Face 3008 1150 4147 2949 Face 3009 1226 4531 923 Face 3010 1226 162 1465 Face 3011 4844 2162 1391 Face 3012 806 2922 1466 Face 3013 828 1467 2421 Face 3014 828 418 3719 Face 3015 1469 1468 2960 Face 3016 303 4101 1468 Face 3017 2695 1469 4541 Face 3018 303 1468 1469 Face 3019 630 1470 3491 Face 3020 4541 1469 1470 Face 3021 1472 2827 1182 Face 3022 1472 4380 4718 Face 3023 1107 1472 1182 Face 3024 1107 3879 1472 Face 3025 1839 1473 1021 Face 3026 568 3659 1767 Face 3027 588 4854 1006 Face 3028 1816 3180 4408 Face 3029 3706 1475 4440 Face 3030 3706 4763 1475 Face 3031 1388 1476 636 Face 3032 1388 877 1476 Face 3033 1938 4581 1458 Face 3034 1938 1935 4581 Face 3035 179 4794 2294 Face 3036 1739 3307 3271 Face 3037 1056 3753 920 Face 3038 2437 4291 3124 Face 3039 3260 3890 1220 Face 3040 1080 1079 1480 Face 3041 266 1481 1404 Face 3042 3052 839 1481 Face 3043 2112 1482 1217 Face 3044 4136 3792 1745 Face 3045 3738 3437 305 Face 3046 911 2855 1483 Face 3047 911 1484 2855 Face 3048 3738 506 2327 Face 3049 538 3941 1296 Face 3050 3986 760 1485 Face 3051 2217 2410 644 Face 3052 259 1425 3647 Face 3053 3623 1487 3856 Face 3054 1190 1203 1487 Face 3055 484 3348 1748 Face 3056 3934 805 1488 Face 3057 330 1489 1981 Face 3058 330 2918 1489 Face 3059 2123 1490 1146 Face 3060 614 4222 3604 Face 3061 593 1491 1384 Face 3062 593 2970 1491 Face 3063 215 4111 1357 Face 3064 1600 1923 3229 Face 3065 1990 2236 3555 Face 3066 1032 1030 1493 Face 3067 4747 1494 2613 Face 3068 4747 1285 1494 Face 3069 165 1495 2712 Face 3070 4100 3078 1495 Face 3071 3990 1497 1064 Face 3072 1733 1252 1496 Face 3073 1496 3599 1733 Face 3074 1496 1641 1497 Face 3075 741 1498 2090 Face 3076 3336 1105 1931 Face 3077 4500 4402 2062 Face 3078 511 3961 2468 Face 3079 4512 1500 3055 Face 3080 2420 1172 1500 Face 3081 830 4396 2624 Face 3082 830 4284 2454 Face 3083 3144 2934 1577 Face 3084 2275 1179 1502 Face 3085 556 1503 67 Face 3086 556 4570 1503 Face 3087 2372 1504 3823 Face 3088 3844 4950 1504 Face 3089 2372 3844 1504 Face 3090 1589 2626 1505 Face 3091 2238 1506 1332 Face 3092 2449 3007 1506 Face 3093 1787 2109 1123 Face 3094 386 990 1507 Face 3095 4273 1508 4738 Face 3096 4188 4022 2293 Face 3097 3528 1509 2548 Face 3098 366 2958 1509 Face 3099 802 1510 1972 Face 3100 802 3996 2591 Face 3101 3356 3274 3268 Face 3102 169 811 3580 Face 3103 4641 1512 1785 Face 3104 4641 249 1512 Face 3105 190 2908 3263 Face 3106 4422 2683 1513 Face 3107 4878 1514 3770 Face 3108 479 3570 1514 Face 3109 1095 1994 1483 Face 3110 4352 1407 1994 Face 3111 4217 1516 4782 Face 3112 2787 575 1516 Face 3113 450 1517 1140 Face 3114 450 2558 1517 Face 3115 684 1518 4573 Face 3116 684 4314 1518 Face 3117 4502 4341 2733 Face 3118 59 2825 2083 Face 3119 1073 1520 2692 Face 3120 2432 2953 1520 Face 3121 188 4451 687 Face 3122 188 2593 4451 Face 3123 3336 1522 1105 Face 3124 2182 4651 2218 Face 3125 600 1523 4203 Face 3126 600 678 1523 Face 3127 286 1524 3663 Face 3128 286 4670 1524 Face 3129 163 1525 1133 Face 3130 163 1349 1525 Face 3131 3285 4543 1554 Face 3132 1572 1975 1909 Face 3133 794 4315 3880 Face 3134 794 795 4694 Face 3135 2368 1528 612 Face 3136 953 905 3889 Face 3137 2073 1529 3442 Face 3138 2073 1929 1529 Face 3139 389 1530 2300 Face 3140 2343 2600 1530 Face 3141 2419 1531 1741 Face 3142 2005 2887 1531 Face 3143 3723 1532 4166 Face 3144 3723 2742 1532 Face 3145 2755 1533 285 Face 3146 274 571 1533 Face 3147 289 4294 2864 Face 3148 1535 843 1534 Face 3149 4283 1535 1534 Face 3150 2937 2065 1535 Face 3151 4146 1536 1203 Face 3152 270 3024 1536 Face 3153 221 1537 4835 Face 3154 221 2884 1537 Face 3155 4301 1538 3721 Face 3156 679 1167 1538 Face 3157 229 1539 4939 Face 3158 229 4359 1539 Face 3159 161 1540 3820 Face 3160 2711 4272 3478 Face 3161 2566 3375 1289 Face 3162 4500 2062 3375 Face 3163 412 1542 3162 Face 3164 412 4630 1542 Face 3165 3627 3197 2077 Face 3166 950 1106 4538 Face 3167 1545 1544 2627 Face 3168 3082 3512 1544 Face 3169 66 2779 573 Face 3170 3082 1544 1545 Face 3171 3374 2489 3457 Face 3172 2980 3248 2489 Face 3173 4514 3815 1369 Face 3174 862 2026 3815 Face 3175 2028 1548 987 Face 3176 2028 3232 4870 Face 3177 1836 3882 626 Face 3178 625 294 1549 Face 3179 1006 1550 732 Face 3180 1551 4604 1804 Face 3181 3413 1551 3226 Face 3182 3413 3340 1551 Face 3183 326 3927 1129 Face 3184 326 318 1552 Face 3185 1796 1553 2634 Face 3186 1796 2103 1553 Face 3187 2815 3666 603 Face 3188 431 3285 1554 Face 3189 2971 2709 4656 Face 3190 703 3747 4557 Face 3191 4356 2485 905 Face 3192 1995 1321 1556 Face 3193 1735 1557 4202 Face 3194 1631 213 2724 Face 3195 2380 3188 724 Face 3196 894 2151 1558 Face 3197 4290 1559 3678 Face 3198 4918 2494 4192 Face 3199 470 1667 4488 Face 3200 3574 1869 1560 Face 3201 599 1561 413 Face 3202 599 1768 1561 Face 3203 813 1562 1422 Face 3204 813 1374 1562 Face 3205 813 1563 1373 Face 3206 813 1036 1563 Face 3207 2148 2736 711 Face 3208 860 1197 3930 Face 3209 1932 1565 580 Face 3210 579 1430 1565 Face 3211 1815 1566 3560 Face 3212 1815 970 1566 Face 3213 1666 1567 3463 Face 3214 817 489 1567 Face 3215 203 1568 2854 Face 3216 3323 1042 1568 Face 3217 1599 1569 1797 Face 3218 3966 2617 2477 Face 3219 1030 4306 1493 Face 3220 3727 3903 1570 Face 3221 4629 2981 1238 Face 3222 4629 4042 2981 Face 3223 3285 1572 1909 Face 3224 171 2037 1572 Face 3225 4484 1573 1351 Face 3226 793 945 1573 Face 3227 3147 1574 4872 Face 3228 1123 2109 2838 Face 3229 2405 1575 2780 Face 3230 3033 1211 1575 Face 3231 748 4081 2797 Face 3232 748 2702 1576 Face 3233 1320 1578 2934 Face 3234 1320 3425 1578 Face 3235 1577 1578 2484 Face 3236 1577 2934 1578 Face 3237 3772 1579 1108 Face 3238 258 1441 1579 Face 3239 1883 1580 83 Face 3240 77 2019 3081 Face 3241 351 3679 2359 Face 3242 351 2264 4207 Face 3243 3642 4287 4290 Face 3244 1581 2359 3679 Face 3245 527 1583 3917 Face 3246 2532 1070 1583 Face 3247 313 1584 1828 Face 3248 3129 1074 1584 Face 3249 216 1585 4216 Face 3250 2029 747 1585 Face 3251 4015 3297 347 Face 3252 4730 728 3361 Face 3253 3250 1587 3850 Face 3254 3361 728 1587 Face 3255 2810 1588 2000 Face 3256 2810 421 1588 Face 3257 513 2372 3823 Face 3258 513 1892 1589 Face 3259 4570 1590 1503 Face 3260 2821 776 1590 Face 3261 226 1591 1324 Face 3262 226 180 1591 Face 3263 1894 4195 1593 Face 3264 4194 4079 1592 Face 3265 1938 4196 1592 Face 3266 2670 2190 3170 Face 3267 3643 1594 746 Face 3268 3643 2499 1594 Face 3269 721 1595 2373 Face 3270 721 556 1595 Face 3271 1783 3628 535 Face 3272 200 912 1596 Face 3273 2829 1597 4915 Face 3274 2829 2396 1597 Face 3275 1062 1598 1048 Face 3276 1062 3979 1598 Face 3277 354 1599 4553 Face 3278 4662 1569 1599 Face 3279 2727 4568 1492 Face 3280 2727 305 4568 Face 3281 268 3340 1474 Face 3282 3983 1462 1601 Face 3283 535 3091 3132 Face 3284 2287 971 3090 Face 3285 176 1603 1402 Face 3286 176 56 1603 Face 3287 916 3234 1854 Face 3288 4728 1747 1604 Face 3289 821 2726 2008 Face 3290 1776 1075 1605 Face 3291 387 3515 466 Face 3292 4117 1389 1606 Face 3293 2950 3913 1806 Face 3294 804 4594 1607 Face 3295 1609 1608 4764 Face 3296 2634 4564 1608 Face 3297 4485 1609 1300 Face 3298 459 1608 1609 Face 3299 1381 4558 1138 Face 3300 1381 2438 3243 Face 3301 653 4595 234 Face 3302 3438 868 1611 Face 3303 1187 1612 439 Face 3304 1187 3015 1612 Face 3305 4948 1613 3487 Face 3306 181 1344 1613 Face 3307 1025 1614 2608 Face 3308 4202 1557 1614 Face 3309 1616 4136 1482 Face 3310 1616 1720 1615 Face 3311 2112 1616 1482 Face 3312 3230 1721 3942 Face 3313 4877 2315 1754 Face 3314 727 1188 1617 Face 3315 3080 2257 4596 Face 3316 2770 1734 4706 Face 3317 1137 1619 2553 Face 3318 2126 205 1619 Face 3319 1730 1620 3596 Face 3320 398 4522 2911 Face 3321 3316 3391 2968 Face 3322 1031 2739 1621 Face 3323 577 1622 2022 Face 3324 1623 1774 4339 Face 3325 577 1623 1622 Face 3326 577 607 2744 Face 3327 302 1624 1470 Face 3328 302 1205 1624 Face 3329 1626 1625 2552 Face 3330 1626 391 3887 Face 3331 240 1626 1319 Face 3332 240 3388 1626 Face 3333 3034 1627 1162 Face 3334 717 1152 3106 Face 3335 796 1628 1015 Face 3336 4245 4933 1628 Face 3337 1095 3894 1678 Face 3338 2855 1484 1629 Face 3339 499 1630 2133 Face 3340 2194 2053 4682 Face 3341 397 2279 2020 Face 3342 397 441 3318 Face 3343 486 1632 1060 Face 3344 2536 325 3062 Face 3345 4056 1633 4518 Face 3346 272 4901 1633 Face 3347 476 1634 1341 Face 3348 476 1398 1634 Face 3349 496 1635 2391 Face 3350 4811 913 4392 Face 3351 2134 1636 1606 Face 3352 4635 4149 3819 Face 3353 4690 1637 3113 Face 3354 3541 2550 1637 Face 3355 306 4191 1639 Face 3356 306 1243 1638 Face 3357 3541 1639 2550 Face 3358 2227 306 1639 Face 3359 2907 1640 4268 Face 3360 419 1287 3892 Face 3361 3828 3984 2974 Face 3362 1064 1497 1641 Face 3363 3086 3560 1566 Face 3364 492 509 2088 Face 3365 42 1643 95 Face 3366 42 1644 1643 Face 3367 111 1644 184 Face 3368 111 1544 1644 Face 3369 1060 1645 2537 Face 3370 1060 1632 1645 Face 3371 298 1646 377 Face 3372 2467 1598 1788 Face 3373 1243 1647 631 Face 3374 1243 306 4441 Face 3375 3442 3213 2073 Face 3376 3442 1750 3213 Face 3377 1720 1649 1615 Face 3378 1720 2969 1649 Face 3379 1009 1650 3668 Face 3380 1009 1777 1650 Face 3381 512 1885 3025 Face 3382 1956 1153 3143 Face 3383 4376 2057 1957 Face 3384 3286 4303 1652 Face 3385 2057 1653 1133 Face 3386 1652 1082 1653 Face 3387 253 1654 2128 Face 3388 1811 2820 1654 Face 3389 2664 1655 3044 Face 3390 2664 2983 1655 Face 3391 4939 1656 229 Face 3392 4940 1701 1656 Face 3393 138 1657 3713 Face 3394 138 3697 1657 Face 3395 297 3606 876 Face 3396 3697 4552 1658 Face 3397 935 1659 266 Face 3398 935 2105 1659 Face 3399 2042 1661 3588 Face 3400 732 1550 1661 Face 3401 1660 1661 1550 Face 3402 1660 3588 1661 Face 3403 3664 1662 1215 Face 3404 3664 775 1662 Face 3405 2309 1663 2187 Face 3406 2309 4913 3251 Face 3407 382 1664 2835 Face 3408 382 1050 1664 Face 3409 369 1665 3242 Face 3410 369 770 2662 Face 3411 817 1666 1057 Face 3412 817 1567 1666 Face 3413 1560 1667 3574 Face 3414 1560 1696 1667 Face 3415 3590 1669 3462 Face 3416 2271 605 3492 Face 3417 1668 1669 194 Face 3418 1670 3462 1669 Face 3419 1668 1670 1669 Face 3420 1668 2640 1670 Face 3421 1424 4649 2116 Face 3422 3452 4547 4649 Face 3423 4110 1672 2409 Face 3424 4633 1584 1672 Face 3425 1085 1673 1194 Face 3426 1085 2569 1673 Face 3427 1085 2226 4347 Face 3428 1085 1991 1674 Face 3429 4397 3481 1314 Face 3430 1676 2080 1675 Face 3431 1677 4397 1315 Face 3432 1677 2080 1676 Face 3433 784 1677 1315 Face 3434 2807 1752 1677 Face 3435 265 4414 164 Face 3436 3921 1407 1678 Face 3437 192 2565 689 Face 3438 192 399 2565 Face 3439 725 1680 2732 Face 3440 2438 1381 1680 Face 3441 3265 1681 2197 Face 3442 832 907 1681 Face 3443 668 1682 4091 Face 3444 668 3970 1682 Face 3445 1831 1683 2757 Face 3446 1831 2595 1683 Face 3447 1831 3378 3922 Face 3448 3902 1294 1684 Face 3449 2697 1685 3278 Face 3450 1058 489 1685 Face 3451 359 4696 3586 Face 3452 359 2463 2513 Face 3453 2698 4530 4446 Face 3454 2699 3891 4530 Face 3455 3650 3290 704 Face 3456 500 1489 1835 Face 3457 540 1689 2029 Face 3458 540 3648 1689 Face 3459 909 1690 2216 Face 3460 3100 4769 1827 Face 3461 1694 2052 831 Face 3462 1694 2216 4889 Face 3463 2475 3488 2306 Face 3464 373 3756 3027 Face 3465 2018 2891 630 Face 3466 3782 812 1693 Face 3467 4674 1694 831 Face 3468 909 2216 1694 Face 3469 4821 3657 1471 Face 3470 177 3430 3657 Face 3471 3804 4131 1843 Face 3472 304 3752 4131 Face 3473 941 1697 1166 Face 3474 2116 1671 1697 Face 3475 287 1698 721 Face 3476 287 487 1698 Face 3477 559 1917 2535 Face 3478 1754 2315 1700 Face 3479 4449 1700 1617 Face 3480 1917 2377 1700 Face 3481 1083 1701 926 Face 3482 3382 1656 1701 Face 3483 1078 1702 1079 Face 3484 2833 1649 1702 Face 3485 2125 3661 3660 Face 3486 3956 1546 3662 Face 3487 476 1704 1398 Face 3488 2866 1426 2895 Face 3489 4366 4159 2939 Face 3490 2014 1755 1705 Face 3491 974 1706 1434 Face 3492 974 975 1706 Face 3493 858 1707 1399 Face 3494 3172 1859 1785 Face 3495 3056 1708 2622 Face 3496 311 4391 1708 Face 3497 4824 1709 4344 Face 3498 4825 3309 1709 Face 3499 1709 1710 4344 Face 3500 1709 3309 2655 Face 3501 2337 1711 824 Face 3502 2777 3357 1711 Face 3503 1147 1712 3137 Face 3504 1147 4727 1712 Face 3505 1739 1714 3307 Face 3506 3112 1586 2816 Face 3507 2816 1714 3112 Face 3508 1713 3307 1714 Face 3509 1373 1715 863 Face 3510 1373 1563 1715 Face 3511 1763 1716 1717 Face 3512 788 2370 2756 Face 3513 343 1717 1716 Face 3514 3503 2133 3018 Face 3515 799 1718 719 Face 3516 1893 530 1718 Face 3517 1800 4734 3711 Face 3518 3871 1013 1719 Face 3519 1721 1720 3942 Face 3520 2444 1359 3784 Face 3521 1722 1721 2113 Face 3522 4566 1360 2444 Face 3523 1723 1722 2113 Face 3524 718 1360 4566 Face 3525 2674 2515 1650 Face 3526 4603 1722 1723 Face 3527 3505 1724 3355 Face 3528 3505 4300 1724 Face 3529 2530 4457 1331 Face 3530 2530 3501 4457 Face 3531 3501 2801 4457 Face 3532 1758 3863 2800 Face 3533 2659 3501 2530 Face 3534 1758 2800 1727 Face 3535 1145 4370 720 Face 3536 1145 526 4370 Face 3537 856 1729 1982 Face 3538 856 244 1729 Face 3539 3350 2681 4165 Face 3540 398 1620 1730 Face 3541 4103 1731 2327 Face 3542 3929 1999 1731 Face 3543 1699 1732 2728 Face 3544 1917 1700 4450 Face 3545 425 1733 3599 Face 3546 425 766 1733 Face 3547 2897 3712 51 Face 3548 4227 4706 1734 Face 3549 397 1735 3773 Face 3550 397 2020 1735 Face 3551 708 1736 2496 Face 3552 708 3913 3704 Face 3553 3475 4439 139 Face 3554 3476 1205 1737 Face 3555 446 3418 731 Face 3556 2198 1073 1738 Face 3557 179 4710 4794 Face 3558 179 4104 4710 Face 3559 2408 2802 888 Face 3560 2757 1683 1740 Face 3561 53 1741 1639 Face 3562 2705 2507 1741 Face 3563 3818 1742 2318 Face 3564 256 4595 1742 Face 3565 3754 2716 4200 Face 3566 1861 3295 1743 Face 3567 2633 1744 1317 Face 3568 4923 3075 4951 Face 3569 1482 1745 598 Face 3570 1482 4136 1745 Face 3571 423 1746 419 Face 3572 423 1371 1746 Face 3573 942 1747 4728 Face 3574 942 1798 1747 Face 3575 1165 1748 1164 Face 3576 1165 484 1748 Face 3577 2552 2825 59 Face 3578 2552 1625 2825 Face 3579 344 1750 3408 Face 3580 344 1648 1750 Face 3581 471 1751 1312 Face 3582 471 986 1751 Face 3583 3855 1752 3157 Face 3584 2080 1677 1752 Face 3585 2078 1753 2379 Face 3586 2078 2110 4846 Face 3587 2377 1754 1700 Face 3588 2207 4877 1754 Face 3589 484 3935 3348 Face 3590 484 1705 1755 Face 3591 4120 2393 4276 Face 3592 4917 2923 1756 Face 3593 697 2503 2648 Face 3594 697 2480 2503 Face 3595 2648 2659 697 Face 3596 2649 3863 1758 Face 3597 316 1759 3334 Face 3598 316 2539 4716 Face 3599 4222 1760 4354 Face 3600 4222 3508 1760 Face 3601 1057 1761 162 Face 3602 1057 1029 1761 Face 3603 1803 2319 1927 Face 3604 380 2799 4520 Face 3605 4604 3856 1487 Face 3606 788 2756 1763 Face 3607 1195 1764 3608 Face 3608 1195 2472 1764 Face 3609 4385 3550 2514 Face 3610 2545 1857 1765 Face 3611 1082 4539 3022 Face 3612 1082 1652 4303 Face 3613 4578 1767 3611 Face 3614 1473 568 1767 Face 3615 257 4801 4044 Face 3616 257 3020 4801 Face 3617 632 1769 3680 Face 3618 632 455 1769 Face 3619 1274 1770 2760 Face 3620 1274 3253 1770 Face 3621 3751 1771 723 Face 3622 1031 1621 3315 Face 3623 439 1772 1187 Face 3624 3651 2068 1772 Face 3625 1774 1773 2761 Face 3626 4128 3050 1773 Face 3627 1775 1774 1623 Face 3628 1775 1773 1774 Face 3629 638 1775 1623 Face 3630 4128 1773 1775 Face 3631 821 1776 1605 Face 3632 821 2796 1776 Face 3633 2674 4921 406 Face 3634 2674 1650 1777 Face 3635 3168 3371 4586 Face 3636 4041 618 3371 Face 3637 364 1779 1160 Face 3638 4834 1594 1779 Face 3639 2999 1780 4327 Face 3640 764 1011 1780 Face 3641 1782 1781 2590 Face 3642 681 3986 1781 Face 3643 4810 4950 3844 Face 3644 681 1781 1782 Face 3645 2996 1783 2150 Face 3646 200 4780 1783 Face 3647 999 1784 3538 Face 3648 999 3881 1784 Face 3649 3014 1785 4313 Face 3650 1707 4377 1785 Face 3651 3487 1786 172 Face 3652 4842 3147 2521 Face 3653 386 1787 785 Face 3654 386 2853 1787 Face 3655 3067 1788 2278 Face 3656 1646 2467 1788 Face 3657 4153 3793 2897 Face 3658 2277 3436 1789 Face 3659 1129 1790 902 Face 3660 2392 288 2992 Face 3661 489 2915 1127 Face 3662 489 1058 2915 Face 3663 1398 1792 1634 Face 3664 3104 170 4493 Face 3665 1794 1793 1273 Face 3666 742 320 3514 Face 3667 4625 1794 1627 Face 3668 742 1793 1794 Face 3669 2968 1795 4350 Face 3670 673 672 1795 Face 3671 334 1796 3415 Face 3672 334 738 1796 Face 3673 1175 1797 1569 Face 3674 1175 1421 1797 Face 3675 4829 2603 4102 Face 3676 1799 943 1798 Face 3677 4829 1799 2603 Face 3678 4829 1196 1799 Face 3679 3872 1800 1947 Face 3680 3871 1719 1800 Face 3681 4446 1801 2698 Face 3682 631 3046 1801 Face 3683 1149 4841 250 Face 3684 4513 843 1802 Face 3685 380 1803 805 Face 3686 380 2319 1803 Face 3687 1550 3699 1660 Face 3688 3226 1551 1804 Face 3689 2730 3057 4334 Face 3690 4676 4385 3058 Face 3691 959 1806 3885 Face 3692 959 2950 1806 Face 3693 4782 1807 1309 Face 3694 958 1143 1807 Face 3695 903 1808 3102 Face 3696 3544 1452 1808 Face 3697 4264 1809 376 Face 3698 4264 1341 1809 Face 3699 2097 4304 2722 Face 3700 883 2546 4304 Face 3701 253 1811 1654 Face 3702 2788 1012 1811 Face 3703 249 1812 3012 Face 3704 249 962 1812 Face 3705 3037 1813 1211 Face 3706 167 4669 1813 Face 3707 1143 1814 1428 Face 3708 1143 958 1814 Face 3709 2803 4429 83 Face 3710 3960 4444 1815 Face 3711 588 1816 4408 Face 3712 588 1414 1816 Face 3713 381 1817 3060 Face 3714 1818 1650 1817 Face 3715 381 1818 1817 Face 3716 2353 129 1818 Face 3717 323 1819 121 Face 3718 323 120 1819 Face 3719 143 1820 1120 Face 3720 143 1822 1820 Face 3721 3633 1821 2055 Face 3722 141 1820 1821 Face 3723 87 1822 141 Face 3724 87 125 1822 Face 3725 437 1823 1154 Face 3726 437 2591 1823 Face 3727 1825 4578 3612 Face 3728 1473 1767 1824 Face 3729 4348 1825 1838 Face 3730 2478 1824 1825 Face 3731 358 1826 3403 Face 3732 358 1228 1826 Face 3733 1690 1827 4569 Face 3734 1690 909 1827 Face 3735 3682 1828 2129 Face 3736 3682 313 1828 Face 3737 3692 1829 1792 Face 3738 1950 4329 1829 Face 3739 597 1830 596 Face 3740 597 4697 1830 Face 3741 1014 3220 3467 Face 3742 1014 3378 3220 Face 3743 4220 3992 1161 Face 3744 1098 1043 1832 Face 3745 3537 2820 1811 Face 3746 863 1715 1833 Face 3747 3655 1834 2228 Face 3748 1259 615 1834 Face 3749 2918 1835 1489 Face 3750 4687 2015 3290 Face 3751 625 1836 565 Face 3752 625 3882 1836 Face 3753 2478 1837 1021 Face 3754 2478 1825 4348 Face 3755 2643 1838 1825 Face 3756 2640 3865 1838 Face 3757 2543 4070 1975 Face 3758 568 1473 1839 Face 3759 468 1840 254 Face 3760 468 1017 1840 Face 3761 4189 1841 352 Face 3762 2847 3506 2904 Face 3763 2846 1842 1390 Face 3764 2847 1841 4189 Face 3765 2126 1844 1368 Face 3766 1137 3804 1843 Face 3767 1843 1844 1137 Face 3768 2362 1368 1844 Face 3769 4536 1845 511 Face 3770 4055 969 4435 Face 3771 3188 4746 199 Face 3772 1558 3453 1846 Face 3773 637 3884 3776 Face 3774 637 1131 2589 Face 3775 637 1848 1131 Face 3776 637 2893 1848 Face 3777 139 1849 524 Face 3778 3389 2268 1849 Face 3779 722 4912 2328 Face 3780 2745 388 4912 Face 3781 2657 1851 3010 Face 3782 441 397 1851 Face 3783 4751 1852 2280 Face 3784 2657 807 1852 Face 3785 1205 3583 1737 Face 3786 4272 2711 1853 Face 3787 2555 1854 3234 Face 3788 300 3495 4307 Face 3789 3811 1855 1567 Face 3790 998 3433 1855 Face 3791 4584 1856 658 Face 3792 516 1354 3259 Face 3793 2470 1857 2545 Face 3794 4845 2880 4695 Face 3795 1859 4641 1785 Face 3796 810 3237 1858 Face 3797 810 3032 3853 Face 3798 810 1858 3032 Face 3799 2987 1860 1679 Face 3800 654 3812 1860 Face 3801 868 1861 2716 Face 3802 1962 3393 1861 Face 3803 518 1862 1762 Face 3804 518 663 1862 Face 3805 3073 1863 3790 Face 3806 3073 4132 1864 Face 3807 1863 1864 443 Face 3808 1863 3073 1864 Face 3809 3791 1865 669 Face 3810 3791 3759 1865 Face 3811 73 1866 2326 Face 3812 73 157 1866 Face 3813 1402 1867 2487 Face 3814 4740 590 1867 Face 3815 4433 1868 103 Face 3816 65 262 1868 Face 3817 1368 4476 825 Face 3818 1368 1560 4476 Face 3819 1150 1870 2612 Face 3820 1150 2366 1870 Face 3821 611 1871 1440 Face 3822 2917 770 1871 Face 3823 1399 1872 858 Face 3824 3015 1187 1872 Face 3825 4401 2378 1278 Face 3826 4401 2272 2378 Face 3827 2752 1874 1406 Face 3828 378 1923 1874 Face 3829 1876 1875 4631 Face 3830 378 1874 2752 Face 3831 378 1876 3420 Face 3832 378 2752 1876 Face 3833 1446 1877 1253 Face 3834 1446 3087 1877 Face 3835 618 2584 3371 Face 3836 618 2308 2584 Face 3837 16 1879 27 Face 3838 16 1430 1879 Face 3839 116 1880 110 Face 3840 116 1430 1880 Face 3841 2607 1881 1198 Face 3842 1882 3968 1881 Face 3843 2607 1882 1881 Face 3844 2607 1072 1882 Face 3845 4908 3964 3722 Face 3846 77 3081 3964 Face 3847 3933 1884 3234 Face 3848 4000 4540 1884 Face 3849 1651 1885 512 Face 3850 2310 1267 1885 Face 3851 290 1886 763 Face 3852 290 733 4492 Face 3853 2900 3684 2892 Face 3854 2900 3694 3684 Face 3855 689 1888 1501 Face 3856 689 3596 1888 Face 3857 3863 1889 55 Face 3858 867 4956 3522 Face 3859 1059 1890 3320 Face 3860 1059 2375 1890 Face 3861 338 3401 4621 Face 3862 338 3834 4499 Face 3863 2626 4772 1310 Face 3864 2626 1589 1892 Face 3865 799 1893 1718 Face 3866 799 1054 1893 Face 3867 1954 1894 1898 Face 3868 1954 322 3359 Face 3869 1896 1895 1897 Face 3870 3170 454 1895 Face 3871 1593 1896 3502 Face 3872 1593 1895 1896 Face 3873 1894 1897 1898 Face 3874 1894 1593 3502 Face 3875 1895 1898 1897 Face 3876 1895 1954 1898 Face 3877 3345 1899 2175 Face 3878 874 2090 1899 Face 3879 3398 3549 1461 Face 3880 715 1769 1900 Face 3881 3840 1901 3118 Face 3882 201 1985 1901 Face 3883 3205 1902 2781 Face 3884 4838 2162 4844 Face 3885 329 1903 710 Face 3886 329 1214 1903 Face 3887 849 1904 434 Face 3888 849 1173 3310 Face 3889 4103 3929 1731 Face 3890 4103 3369 3929 Face 3891 736 4109 1658 Face 3892 3675 3251 1906 Face 3893 900 1907 361 Face 3894 900 2201 2520 Face 3895 3088 4816 1141 Face 3896 900 361 4719 Face 3897 3786 2823 1977 Face 3898 1526 3285 1909 Face 3899 1221 1910 1050 Face 3900 1221 3489 1910 Face 3901 309 1911 3417 Face 3902 4622 735 1911 Face 3903 309 3676 4358 Face 3904 309 3417 3676 Face 3905 356 1913 1640 Face 3906 356 1042 1913 Face 3907 738 2592 2103 Face 3908 738 566 1914 Face 3909 3412 1915 4028 Face 3910 2387 3848 1915 Face 3911 1287 1916 4862 Face 3912 1287 1746 1916 Face 3913 1699 1917 4450 Face 3914 3045 246 1917 Face 3915 767 1918 1448 Face 3916 4393 365 1918 Face 3917 298 1919 1646 Face 3918 298 519 1919 Face 3919 739 1920 2902 Face 3920 739 964 1920 Face 3921 2841 1921 3051 Face 3922 4680 578 1921 Face 3923 3832 1922 903 Face 3924 3832 854 1922 Face 3925 2676 1923 1600 Face 3926 782 1874 1923 Face 3927 3746 1924 2644 Face 3928 3745 1919 1924 Face 3929 3373 1925 2244 Face 3930 3373 4487 1925 Face 3931 2330 4278 1070 Face 3932 159 873 1926 Face 3933 677 1927 2319 Face 3934 3306 2721 1927 Face 3935 3987 1928 199 Face 3936 4516 4004 4778 Face 3937 4778 1929 3838 Face 3938 4778 1529 1929 Face 3939 690 1930 3591 Face 3940 690 3441 1930 Face 3941 1498 1931 2668 Face 3942 1498 741 1931 Face 3943 579 1932 880 Face 3944 579 1565 1932 Face 3945 2525 2804 1597 Face 3946 364 532 1934 Face 3947 2210 1934 4688 Face 3948 4915 1597 2804 Face 3949 1592 1935 1938 Face 3950 1936 1477 4582 Face 3951 1592 1936 1937 Face 3952 1592 1477 1936 Face 3953 1935 4582 1477 Face 3954 1935 1592 1937 Face 3955 232 1938 1458 Face 3956 232 3170 1938 Face 3957 3183 3471 2923 Face 3958 3183 901 3471 Face 3959 392 4077 2708 Face 3960 392 4959 4077 Face 3961 1773 1941 2761 Face 3962 1773 3049 1941 Face 3963 3584 2834 3149 Face 3964 318 2344 1942 Face 3965 4160 1943 3982 Face 3966 675 884 1943 Face 3967 3973 1944 2389 Face 3968 492 2088 1944 Face 3969 1946 1945 4045 Face 3970 377 1646 1945 Face 3971 2759 1946 917 Face 3972 377 1945 1946 Face 3973 604 1947 1800 Face 3974 604 139 1947 Face 3975 3328 1948 2472 Face 3976 820 4072 1948 Face 3977 693 1949 589 Face 3978 2668 1105 4372 Face 3979 3692 1950 1829 Face 3980 307 622 1951 Face 3981 1950 1951 3559 Face 3982 1950 307 1951 Face 3983 1089 4929 864 Face 3984 1089 1232 4929 Face 3985 624 1953 3598 Face 3986 3410 3629 1953 Face 3987 2418 1954 2734 Face 3988 2418 3632 1954 Face 3989 2443 1955 3365 Face 3990 3046 631 1955 Face 3991 512 1956 1651 Face 3992 2041 1153 1956 Face 3993 1133 2925 2057 Face 3994 1133 1525 2925 Face 3995 3126 1958 4720 Face 3996 3126 1521 1958 Face 3997 647 1959 890 Face 3998 647 503 1959 Face 3999 2213 1960 2517 Face 4000 1033 2733 1960 Face 4001 1161 1961 4220 Face 4002 1161 771 1961 Face 4003 868 1962 1861 Face 4004 868 3438 1962 Face 4005 2635 4738 1508 Face 4006 2241 2264 4447 Face 4007 4262 4447 351 Face 4008 4738 2635 4126 Face 4009 282 1965 1465 Face 4010 282 3552 1965 Face 4011 4532 1966 4003 Face 4012 2766 1228 1966 Face 4013 3486 1967 3035 Face 4014 3486 3151 1967 Face 4015 852 1968 1388 Face 4016 852 1847 1968 Face 4017 4271 2982 746 Face 4018 4271 4068 2982 Face 4019 1971 1970 2482 Face 4020 1971 4423 1970 Face 4021 295 1971 1092 Face 4022 295 4423 1971 Face 4023 3587 3494 1510 Face 4024 1328 580 2431 Face 4025 351 4198 4262 Face 4026 351 995 4198 Face 4027 1564 1974 1157 Face 4028 3930 1100 1974 Face 4029 3842 1975 4070 Face 4030 584 2823 2653 Face 4031 3493 1977 2823 Face 4032 3493 889 1976 Face 4033 1976 1977 3493 Face 4034 1976 3787 1977 Face 4035 3857 1978 1229 Face 4036 3028 606 1978 Face 4037 2647 1979 3082 Face 4038 733 1802 1979 Face 4039 504 1980 1213 Face 4040 504 1289 1980 Face 4041 762 1981 1489 Face 4042 762 2219 1981 Face 4043 4501 1982 1729 Face 4044 972 1647 1982 Face 4045 808 1983 3631 Face 4046 808 1330 1983 Face 4047 680 1984 478 Face 4048 2299 1393 1984 Face 4049 997 1985 201 Face 4050 997 189 1985 Face 4051 1199 1986 2470 Face 4052 1199 1333 1986 Face 4053 1002 1987 4033 Face 4054 3411 3350 1987 Face 4055 3967 1988 1118 Face 4056 937 947 1988 Face 4057 237 1989 4418 Face 4058 237 2966 1989 Face 4059 2689 4098 1288 Face 4060 1032 2236 1990 Face 4061 1332 1991 2238 Face 4062 3362 1674 1991 Face 4063 629 1992 475 Face 4064 629 4679 1992 Face 4065 1213 1993 1040 Face 4066 1213 1980 1993 Face 4067 4244 1994 1407 Face 4068 4244 2416 1994 Face 4069 904 1995 1556 Face 4070 904 4575 1995 Face 4071 1166 3384 4398 Face 4072 1166 3387 3384 Face 4073 4115 4655 2636 Face 4074 481 1702 1997 Face 4075 1350 1998 426 Face 4076 3718 1046 1998 Face 4077 1096 2792 942 Face 4078 1096 164 2792 Face 4079 2001 2000 1804 Face 4080 241 620 2000 Face 4081 4880 2001 3444 Face 4082 241 2000 2001 Face 4083 930 2002 836 Face 4084 930 2998 2002 Face 4085 2004 2003 3543 Face 4086 266 1659 2003 Face 4087 266 2004 1481 Face 4088 266 2003 2004 Face 4089 493 2005 1531 Face 4090 493 272 2005 Face 4091 1391 2006 1902 Face 4092 2608 3569 2006 Face 4093 142 2007 1613 Face 4094 142 84 2007 Face 4095 865 2008 2726 Face 4096 865 2323 2008 Face 4097 3171 2009 2165 Face 4098 3171 4892 2009 Face 4099 669 2010 1038 Face 4100 669 1135 2010 Face 4101 2441 2011 1383 Face 4102 2061 3605 3329 Face 4103 235 2012 3677 Face 4104 235 682 2012 Face 4105 235 2013 650 Face 4106 235 3677 2013 Face 4107 558 2014 1705 Face 4108 558 824 2014 Face 4109 2554 2015 4687 Face 4110 704 3290 2015 Face 4111 2017 2016 1052 Face 4112 704 2015 2554 Face 4113 704 2017 3650 Face 4114 704 2016 2017 Face 4115 795 2018 4694 Face 4116 795 2891 2018 Face 4117 574 2019 77 Face 4118 574 360 2019 Face 4119 2724 2020 1631 Face 4120 2723 1735 2020 Face 4121 409 2021 997 Face 4122 409 414 2021 Face 4123 1223 2022 1622 Face 4124 2877 1237 2022 Face 4125 1223 4587 3372 Face 4126 1223 4246 4587 Face 4127 3254 2776 654 Face 4128 2196 461 2024 Face 4129 792 2025 1450 Face 4130 792 1536 2025 Face 4131 395 2026 1296 Face 4132 3039 1547 2026 Face 4133 250 2027 1149 Face 4134 2421 1467 2027 Face 4135 399 2028 987 Face 4136 399 1249 2028 Face 4137 216 2029 1585 Face 4138 2183 540 2029 Face 4139 627 2030 4473 Face 4140 3119 2224 2030 Face 4141 885 2031 3658 Face 4142 885 2017 2031 Face 4143 656 2032 850 Face 4144 656 887 2032 Face 4145 532 2033 1934 Face 4146 3850 1587 2033 Face 4147 1069 2034 3016 Face 4148 1069 357 2034 Face 4149 4501 2035 1955 Face 4150 4501 4860 2035 Face 4151 2235 2036 1786 Face 4152 989 1218 4243 Face 4153 2892 2037 171 Face 4154 591 3611 3659 Face 4155 2383 4893 534 Face 4156 533 1298 4672 Face 4157 817 2039 489 Face 4158 817 1322 2039 Face 4159 4832 3982 1943 Face 4160 1055 1230 2040 Face 4161 512 2041 1956 Face 4162 512 2143 3499 Face 4163 732 2042 1414 Face 4164 732 1661 2042 Face 4165 4246 2043 2348 Face 4166 1622 1623 4339 Face 4167 1198 2044 1382 Face 4168 3707 1983 2044 Face 4169 3696 2045 4297 Face 4170 1345 428 2045 Face 4171 594 2046 2758 Face 4172 4105 494 3570 Face 4173 985 4075 4529 Face 4174 3678 1559 3153 Face 4175 1126 2048 4407 Face 4176 1126 1791 2048 Face 4177 1153 2049 3143 Face 4178 4876 2283 2049 Face 4179 1792 2050 3692 Face 4180 1792 1398 2050 Face 4181 897 4547 3452 Face 4182 2616 1028 2051 Face 4183 4889 2052 1694 Face 4184 4889 332 2052 Face 4185 4899 2053 4384 Face 4186 279 1763 2053 Face 4187 3282 2054 3311 Face 4188 3985 994 2054 Face 4189 2056 2055 1821 Face 4190 2056 74 2055 Face 4191 137 2056 261 Face 4192 137 74 2056 Face 4193 1652 2057 3286 Face 4194 1652 1653 2057 Face 4195 921 3221 2886 Face 4196 921 2069 3221 Face 4197 2740 2059 462 Face 4198 517 1145 2059 Face 4199 187 2060 4944 Face 4200 187 4805 3698 Face 4201 2441 2061 2011 Face 4202 2441 1021 2061 Face 4203 3593 2062 4402 Face 4204 3624 1541 2062 Face 4205 3999 2063 2895 Face 4206 2036 989 2064 Face 4207 2063 4243 1218 Face 4208 2063 3284 2064 Face 4209 183 2065 95 Face 4210 183 1535 2065 Face 4211 1327 2066 291 Face 4212 1327 3196 2066 Face 4213 3626 2067 2045 Face 4214 814 1372 2067 Face 4215 1324 2068 3651 Face 4216 1324 1591 2068 Face 4217 2222 2465 4894 Face 4218 520 2058 2069 Face 4219 3530 4135 1973 Face 4220 1413 239 4134 Face 4221 1413 2071 4141 Face 4222 1413 4650 2071 Face 4223 3151 4162 1967 Face 4224 702 611 2072 Face 4225 576 2073 1648 Face 4226 576 1929 2073 Face 4227 2575 2074 74 Face 4228 2574 634 3071 Face 4229 3437 2075 305 Face 4230 2416 782 4946 Face 4231 170 2076 4493 Face 4232 4768 3684 3694 Face 4233 170 2077 3694 Face 4234 170 3627 2077 Face 4235 4114 2078 2379 Face 4236 3214 728 4730 Face 4237 3430 2079 1695 Face 4238 1432 1431 2079 Face 4239 3855 2080 1752 Face 4240 1222 1675 2080 Face 4241 734 2919 1452 Face 4242 3013 4785 2081 Face 4243 247 2082 3341 Face 4244 247 929 2082 Face 4245 2682 2083 1749 Face 4246 1519 2390 2741 Face 4247 4812 2084 429 Face 4248 2225 640 2084 Face 4249 3280 2673 1190 Face 4250 2086 420 3212 Face 4251 596 2086 2085 Face 4252 596 1830 2086 Face 4253 4459 2087 1400 Face 4254 571 3915 2087 Face 4255 1642 2088 4908 Face 4256 1642 1944 2088 Face 4257 2101 3303 3451 Face 4258 222 4776 2089 Face 4259 3199 2090 1498 Face 4260 1152 1899 2090 Face 4261 2757 3466 3220 Face 4262 2092 656 3466 Face 4263 887 2092 1740 Face 4264 887 656 2092 Face 4265 1286 2093 1463 Face 4266 3173 2492 2093 Face 4267 515 2094 4383 Face 4268 515 2355 2094 Face 4269 566 4652 1914 Face 4270 4924 2819 2095 Face 4271 3895 2096 1023 Face 4272 3896 3524 2096 Face 4273 883 2097 3434 Face 4274 883 4304 2097 Face 4275 3940 2098 1162 Face 4276 1273 743 2098 Face 4277 49 4210 3705 Face 4278 49 134 4210 Face 4279 3231 2100 3573 Face 4280 4544 2790 2100 Face 4281 222 4318 2276 Face 4282 222 2089 2101 Face 4283 90 2102 138 Face 4284 90 3385 2102 Face 4285 1250 3029 2592 Face 4286 4052 1855 3029 Face 4287 299 4546 1119 Face 4288 2665 1686 4546 Face 4289 4232 2105 1863 Face 4290 4232 670 2105 Face 4291 3263 2106 190 Face 4292 4640 3673 3287 Face 4293 1366 2998 4180 Face 4294 1366 1242 2998 Face 4295 1506 2108 1332 Face 4296 1506 1290 2108 Face 4297 2853 2109 1787 Face 4298 4654 2340 2284 Face 4299 3981 2110 3774 Face 4300 1586 4846 2110 Face 4301 1075 2111 1605 Face 4302 1075 4883 2111 Face 4303 827 2112 1217 Face 4304 2113 1721 3230 Face 4305 827 2113 2112 Face 4306 2114 4019 2113 Face 4307 827 2114 2113 Face 4308 3060 1817 2114 Face 4309 463 3125 198 Face 4310 2311 3877 2115 Face 4311 941 2116 1697 Face 4312 941 1444 2116 Face 4313 4345 2117 3001 Face 4314 2441 1383 4797 Face 4315 1138 2118 197 Face 4316 1138 4558 2118 Face 4317 1168 4027 1378 Face 4318 1168 3344 2119 Face 4319 2278 4296 460 Face 4320 1062 123 2120 Face 4321 3338 2121 3846 Face 4322 3504 3008 2121 Face 4323 797 2122 3023 Face 4324 797 2772 2122 Face 4325 4817 2123 754 Face 4326 614 1490 2123 Face 4327 301 2124 875 Face 4328 3465 857 3702 Face 4329 4460 3513 2124 Face 4330 4460 3661 3513 Face 4331 1137 2126 1619 Face 4332 1137 1844 2126 Face 4333 490 4523 1292 Face 4334 4522 4930 2127 Face 4335 4139 2128 1346 Face 4336 4139 1165 2128 Face 4337 1116 2129 1828 Face 4338 2130 3164 2129 Face 4339 1116 2130 2129 Face 4340 3546 348 2130 Face 4341 408 2131 1244 Face 4342 408 4549 2131 Face 4343 964 2132 586 Face 4344 964 3450 2132 Face 4345 3631 2133 3963 Face 4346 899 499 2133 Face 4347 698 2134 363 Face 4348 698 1636 2134 Face 4349 600 2135 4677 Face 4350 600 4203 2135 Face 4351 3660 2136 2125 Face 4352 3660 357 4478 Face 4353 945 2137 946 Face 4354 945 2830 2137 Face 4355 2139 2138 1740 Face 4356 3845 888 2138 Face 4357 978 2140 1464 Face 4358 978 2138 2140 Face 4359 2139 2140 2138 Face 4360 2139 1464 2140 Face 4361 2193 2141 2012 Face 4362 683 960 4809 Face 4363 348 2142 2130 Face 4364 348 1381 4874 Face 4365 3474 2143 2271 Face 4366 3474 3499 2143 Face 4367 2700 3866 674 Face 4368 3619 4049 2145 Face 4369 2144 2145 4049 Face 4370 3866 2700 2145 Face 4371 1280 2146 879 Face 4372 1280 2147 2146 Face 4373 3847 2147 880 Face 4374 3185 2146 2147 Face 4375 860 2148 1233 Face 4376 860 1564 2148 Face 4377 2260 4116 3577 Face 4378 737 4623 4116 Face 4379 834 4325 3618 Face 4380 2379 1753 4325 Face 4381 1394 2151 344 Face 4382 3453 1558 2151 Face 4383 1326 2152 3023 Face 4384 2398 916 4561 Face 4385 445 2153 2701 Face 4386 445 3179 2153 Face 4387 4006 2154 1724 Face 4388 3380 507 2154 Face 4389 433 2155 1009 Face 4390 433 2096 4648 Face 4391 201 3841 2870 Face 4392 201 1901 3841 Face 4393 1262 2157 1078 Face 4394 1262 1263 2157 Face 4395 4337 2158 3331 Face 4396 4337 1403 2158 Face 4397 174 2159 1092 Face 4398 174 3479 2159 Face 4399 3969 2160 123 Face 4400 374 3520 2160 Face 4401 1214 2161 1903 Face 4402 2926 3918 2161 Face 4403 1466 2162 806 Face 4404 1466 1392 4497 Face 4405 152 2163 882 Face 4406 152 1040 2163 Face 4407 421 2164 602 Face 4408 421 533 2164 Face 4409 447 2165 1356 Face 4410 3070 555 2165 Face 4411 2719 2166 1299 Face 4412 2719 914 2166 Face 4413 234 2167 653 Face 4414 234 1045 2167 Face 4415 492 4187 509 Face 4416 3973 1453 3296 Face 4417 206 2169 2324 Face 4418 206 1355 2498 Face 4419 780 3912 3387 Face 4420 2171 1202 2170 Face 4421 780 2171 3912 Face 4422 780 2710 2171 Face 4423 278 3689 3003 Face 4424 2504 1540 3689 Face 4425 1130 2173 3009 Face 4426 1130 3907 2173 Face 4427 2628 2174 4332 Face 4428 3778 4773 2174 Face 4429 1179 3562 186 Face 4430 4944 2060 2175 Face 4431 1179 2176 3562 Face 4432 1179 2275 2176 Face 4433 530 2177 1435 Face 4434 2687 3993 4954 Face 4435 1426 2178 2305 Face 4436 1426 3207 2178 Face 4437 281 2179 4157 Face 4438 281 1247 2179 Face 4439 922 2180 2465 Face 4440 922 4671 2180 Face 4441 528 2181 436 Face 4442 528 829 2181 Face 4443 2361 2182 1522 Face 4444 2361 168 2182 Face 4445 216 2183 2029 Face 4446 4729 3914 2183 Face 4447 884 2184 2258 Face 4448 884 674 2184 Face 4449 60 2185 107 Face 4450 60 223 2185 Face 4451 60 2186 84 Face 4452 60 80 2186 Face 4453 24 2187 1663 Face 4454 24 14 2187 Face 4455 1084 2188 4010 Face 4456 1084 3439 3853 Face 4457 4180 2189 4887 Face 4458 930 836 3928 Face 4459 454 2190 1207 Face 4460 454 3170 2190 Face 4461 3591 2191 1294 Face 4462 3591 1930 2191 Face 4463 3166 4152 2868 Face 4464 3166 4867 4152 Face 4465 683 2193 682 Face 4466 683 2141 2193 Face 4467 3968 2194 4682 Face 4468 3968 1882 2194 Face 4469 4760 2195 3209 Face 4470 4760 3714 2195 Face 4471 1269 2196 2776 Face 4472 1269 3836 2196 Face 4473 3869 3910 148 Face 4474 744 2406 3910 Face 4475 3180 2198 1738 Face 4476 3180 1816 2198 Face 4477 731 2199 446 Face 4478 2527 4390 2199 Face 4479 2601 3701 3769 Face 4480 4298 4379 4900 Face 4481 570 3823 1504 Face 4482 570 2520 2201 Face 4483 779 2202 1395 Face 4484 4030 815 2202 Face 4485 779 4030 2202 Face 4486 779 3224 2203 Face 4487 3257 2204 2369 Face 4488 3257 663 4628 Face 4489 467 2205 330 Face 4490 4631 1911 2205 Face 4491 144 2206 961 Face 4492 144 96 2206 Face 4493 559 2207 1754 Face 4494 559 2905 2207 Face 4495 4276 2208 2564 Face 4496 204 4026 2208 Face 4497 426 2754 1024 Face 4498 4723 1291 2754 Face 4499 1933 2210 4745 Face 4500 1933 2804 2210 Face 4501 1102 2211 608 Face 4502 1102 1725 2211 Face 4503 405 2212 2600 Face 4504 405 4826 2212 Face 4505 1033 2213 3177 Face 4506 1033 1960 2213 Face 4507 510 2214 2735 Face 4508 3613 924 2214 Face 4509 3610 2215 1930 Face 4510 3610 845 2215 Face 4511 1379 4445 1690 Face 4512 1379 1691 4445 Face 4513 2427 2217 1169 Face 4514 2427 2410 2217 Face 4515 1522 2218 1105 Face 4516 1522 2182 2218 Face 4517 1492 4111 215 Face 4518 3801 1981 3725 Face 4519 1215 2220 264 Face 4520 2794 4074 2220 Face 4521 4559 2221 713 Face 4522 2586 3720 3824 Face 4523 520 2222 1959 Face 4524 520 2465 2222 Face 4525 872 2223 2132 Face 4526 872 1412 2223 Face 4527 4310 2224 2403 Face 4528 2748 861 2224 Face 4529 4812 2225 2084 Face 4530 430 1491 2225 Face 4531 1674 2226 1085 Face 4532 1674 878 2226 Face 4533 4690 3541 1637 Face 4534 4691 856 2227 Face 4535 641 2228 1814 Face 4536 641 3655 2228 Face 4537 4935 2229 1445 Face 4538 957 2292 2229 Face 4539 1349 2230 4125 Face 4540 1349 163 2230 Face 4541 2596 2231 2697 Face 4542 3577 4116 2232 Face 4543 3734 2232 2149 Face 4544 2231 3577 2232 Face 4545 3217 2233 68 Face 4546 474 1171 2233 Face 4547 4225 3790 1863 Face 4548 4225 2274 3790 Face 4549 989 4872 1574 Face 4550 989 2036 2235 Face 4551 1493 2236 1032 Face 4552 1493 4494 2236 Face 4553 2562 2237 464 Face 4554 841 315 2237 Face 4555 208 2238 1764 Face 4556 2449 1506 2238 Face 4557 3961 4853 2468 Face 4558 562 4480 2239 Face 4559 562 2240 3264 Face 4560 562 2239 2240 Face 4561 4093 2241 1964 Face 4562 4726 1359 2493 Face 4563 123 2242 2120 Face 4564 123 2160 4784 Face 4565 1225 3386 851 Face 4566 1225 697 2243 Face 4567 237 2244 1335 Face 4568 237 4418 2244 Face 4569 859 2245 1241 Face 4570 859 1724 2245 Face 4571 394 2246 2425 Face 4572 394 1533 2246 Face 4573 2249 2247 1113 Face 4574 1118 1319 2247 Face 4575 2249 2248 1459 Face 4576 2249 1113 2248 Face 4577 1118 2249 3967 Face 4578 1118 2247 2249 Face 4579 582 2250 645 Face 4580 2595 1831 3922 Face 4581 831 2251 1349 Face 4582 4891 332 4203 Face 4583 336 3825 165 Face 4584 336 1300 2252 Face 4585 952 2253 1183 Face 4586 3665 4087 2253 Face 4587 54 2254 342 Face 4588 54 988 2254 Face 4589 3864 2255 2405 Face 4590 3864 4338 2255 Face 4591 1008 2256 152 Face 4592 1008 968 2256 Face 4593 4706 2257 2770 Face 4594 1618 2335 2257 Face 4595 4193 2258 2184 Face 4596 384 1365 4786 Face 4597 1468 2259 729 Face 4598 1468 1325 2259 Face 4599 737 2260 3499 Face 4600 737 4116 2260 Face 4601 1258 2261 615 Face 4602 1258 425 2261 Face 4603 775 2262 1662 Face 4604 775 3533 2262 Face 4605 715 2263 3816 Face 4606 715 1900 2263 Face 4607 3576 2264 2241 Face 4608 801 1582 2264 Face 4609 4919 2265 1582 Face 4610 4919 4192 2265 Face 4611 3483 2266 3090 Face 4612 2753 4421 2266 Face 4613 886 2850 2429 Face 4614 4463 1475 3392 Face 4615 4463 2268 1475 Face 4616 886 231 2268 Face 4617 319 2269 1400 Face 4618 319 1065 2269 Face 4619 2612 2270 1150 Face 4620 2612 2769 2270 Face 4621 194 2271 3492 Face 4622 4537 1348 2271 Face 4623 403 3400 1409 Face 4624 403 1873 2272 Face 4625 875 2273 2730 Face 4626 875 2124 2273 Face 4627 526 4171 4370 Face 4628 526 2234 2274 Face 4629 2301 3144 1577 Face 4630 3937 2176 2275 Face 4631 2679 2276 4318 Face 4632 3278 1685 2276 Face 4633 4914 2277 3793 Face 4634 4914 1528 2277 Face 4635 1062 2278 3979 Face 4636 1062 4296 2278 Face 4637 2280 3318 4751 Face 4638 1631 2020 2279 Face 4639 2656 2280 1495 Face 4640 1631 2279 4686 Face 4641 1360 2282 2493 Face 4642 1360 718 2282 Face 4643 2281 2282 718 Face 4644 2281 3830 2282 Face 4645 2295 4670 1621 Face 4646 1001 1524 4670 Face 4647 2109 2284 2838 Face 4648 2109 3289 2284 Face 4649 1874 2285 2718 Face 4650 1874 782 2285 Face 4651 535 2287 1602 Face 4652 3724 4790 2286 Face 4653 2286 2287 535 Face 4654 4511 3585 2287 Face 4655 908 2288 202 Face 4656 908 726 2288 Face 4657 239 2289 4134 Face 4658 3459 2293 4922 Face 4659 3075 2291 1334 Face 4660 3075 1413 2291 Face 4661 4141 2291 1413 Face 4662 2290 1334 2291 Face 4663 1108 2292 3267 Face 4664 2459 2229 2292 Face 4665 3977 2293 1184 Face 4666 1508 4922 2293 Face 4667 2538 2294 1478 Face 4668 4201 2638 2294 Face 4669 2296 2295 3727 Face 4670 1001 4670 2295 Face 4671 1001 2296 3408 Face 4672 1001 2295 2296 Face 4673 1768 2297 1561 Face 4674 4801 3020 3883 Face 4675 1081 2298 3646 Face 4676 1081 593 2298 Face 4677 680 2299 1984 Face 4678 680 4634 2299 Face 4679 863 2300 1374 Face 4680 3537 3568 2300 Face 4681 2302 2301 4560 Face 4682 3937 2275 2301 Face 4683 453 2302 2439 Face 4684 453 2176 3937 Face 4685 3827 2303 802 Face 4686 242 1521 2303 Face 4687 658 3947 4583 Face 4688 658 4836 2304 Face 4689 2036 2305 2178 Face 4690 2036 2064 3284 Face 4691 509 2306 3488 Face 4692 509 4187 2306 Face 4693 324 2307 3458 Face 4694 324 1047 2307 Face 4695 2598 2308 3794 Face 4696 2598 2585 2308 Face 4697 296 2309 2187 Face 4698 296 497 2309 Face 4699 1651 2310 1885 Face 4700 3142 2049 2310 Face 4701 463 2311 2115 Face 4702 463 3534 2311 Face 4703 639 2312 2297 Face 4704 2806 3868 2312 Face 4705 2806 4241 3868 Face 4706 3140 379 3485 Face 4707 866 2314 1906 Face 4708 3848 2387 2314 Face 4709 1617 2315 4877 Face 4710 1617 1700 2315 Face 4711 575 2316 1516 Face 4712 4533 541 2316 Face 4713 705 2317 3594 Face 4714 4331 2824 2428 Face 4715 3755 2318 2364 Face 4716 3755 3818 2318 Face 4717 4520 2319 380 Face 4718 1762 1862 2319 Face 4719 189 2320 1985 Face 4720 189 527 2320 Face 4721 4153 2321 3793 Face 4722 4153 1303 2321 Face 4723 847 2322 505 Face 4724 847 2779 2322 Face 4725 1316 2323 784 Face 4726 3211 2008 2323 Face 4727 448 2324 2169 Face 4728 3658 1052 3829 Face 4729 331 2325 881 Face 4730 4898 366 2325 Face 4731 1206 2326 359 Face 4732 3744 73 2326 Face 4733 1484 2327 1731 Face 4734 1484 911 2327 Face 4735 271 2328 1408 Face 4736 2329 722 2328 Face 4737 271 2329 2328 Face 4738 4132 934 4572 Face 4739 2363 4479 393 Face 4740 2363 1926 4479 Face 4741 4464 2331 353 Face 4742 3880 4315 2331 Face 4743 1074 2332 1584 Face 4744 3540 329 2332 Face 4745 877 2333 3154 Face 4746 877 2466 2333 Face 4747 219 2334 1499 Face 4748 4732 1018 3681 Face 4749 3750 2335 317 Face 4750 3750 4596 2335 Face 4751 976 3808 913 Face 4752 4302 4828 3808 Face 4753 929 2337 4170 Face 4754 2777 1711 2337 Face 4755 567 2338 1836 Face 4756 567 938 2338 Face 4757 631 2339 1243 Face 4758 631 1801 4446 Face 4759 915 2340 170 Face 4760 915 1574 3477 Face 4761 434 2341 4036 Face 4762 434 403 2341 Face 4763 1126 2342 3383 Face 4764 1126 4407 3111 Face 4765 389 2343 1530 Face 4766 389 1277 2343 Face 4767 1139 2344 456 Face 4768 1139 4237 2344 Face 4769 1174 3708 3337 Face 4770 1174 4626 3708 Face 4771 219 4732 2334 Face 4772 219 4054 2346 Face 4773 342 2347 1104 Face 4774 342 4496 2347 Face 4775 3308 2348 1410 Face 4776 3308 3168 2348 Face 4777 2664 2349 982 Face 4778 3445 2382 2349 Face 4779 2351 2963 1583 Face 4780 2352 2973 2350 Face 4781 280 3672 2991 Face 4782 2352 2350 2351 Face 4783 280 2352 2351 Face 4784 280 2973 2352 Face 4785 381 2353 1818 Face 4786 3107 1253 2353 Face 4787 657 2354 1361 Face 4788 2872 1354 2354 Face 4789 4473 2355 627 Face 4790 4474 2094 2355 Face 4791 2764 4299 148 Face 4792 361 1907 3873 Face 4793 1845 3908 4752 Face 4794 1845 4536 2357 Face 4795 995 2358 2684 Face 4796 2359 175 2358 Face 4797 995 2359 2358 Face 4798 995 351 2359 Face 4799 209 2360 3218 Face 4800 3076 2100 2360 Face 4801 3336 2361 1522 Face 4802 741 874 2361 Face 4803 1843 2362 1844 Face 4804 1843 4131 2362 Face 4805 159 2363 3210 Face 4806 159 1926 2363 Face 4807 1011 2364 2318 Face 4808 4510 1961 2364 Face 4809 3762 2365 2490 Face 4810 2366 1464 4779 Face 4811 3248 3762 2489 Face 4812 480 1870 2366 Face 4813 2852 2367 745 Face 4814 3258 4277 2367 Face 4815 953 2368 1605 Face 4816 953 3889 2368 Face 4817 4059 2369 202 Face 4818 4059 3128 2369 Face 4819 590 2370 3116 Face 4820 590 2857 2370 Face 4821 1888 4554 1501 Face 4822 1888 1620 2371 Face 4823 1589 2372 513 Face 4824 1589 1505 2372 Face 4825 163 2373 3944 Face 4826 163 3161 2373 Face 4827 1043 3165 1832 Face 4828 1043 4749 2374 Face 4829 4183 2375 610 Face 4830 4183 4758 2375 Face 4831 1171 2376 2233 Face 4832 1171 4553 2376 Face 4833 559 2377 1917 Face 4834 559 1754 2377 Face 4835 1873 2378 2272 Face 4836 1873 1278 2378 Face 4837 834 2379 4325 Face 4838 4421 2753 4155 Face 4839 3565 2380 576 Face 4840 894 1558 2380 Face 4841 1243 3735 1638 Face 4842 1243 4343 2381 Face 4843 2381 4612 891 Face 4844 2381 2349 2382 Face 4845 533 2383 422 Face 4846 533 4672 2383 Face 4847 418 4369 3719 Face 4848 2386 2774 2384 Face 4849 4787 2385 121 Face 4850 261 154 2385 Face 4851 418 2386 2384 Face 4852 418 564 2386 Face 4853 569 3412 4242 Face 4854 3404 2314 2387 Face 4855 766 2388 1252 Face 4856 766 1259 2388 Face 4857 1177 2389 1944 Face 4858 1177 2094 2389 Face 4859 606 2390 1519 Face 4860 2947 1436 2390 Face 4861 411 2391 311 Face 4862 411 838 2391 Face 4863 1129 2392 1790 Face 4864 1129 3927 2392 Face 4865 2394 4379 2450 Face 4866 2394 3700 4379 Face 4867 4959 2789 4077 Face 4868 1756 2500 3136 Face 4869 3448 2395 4185 Face 4870 3448 1597 2395 Face 4871 2395 2396 4890 Face 4872 2395 1597 2396 Face 4873 879 2397 579 Face 4874 4679 629 4819 Face 4875 1326 2398 4561 Face 4876 1326 1327 2398 Face 4877 4351 2519 560 Face 4878 967 491 2399 Face 4879 922 2400 1226 Face 4880 922 2069 2400 Face 4881 197 2401 1138 Face 4882 3347 2173 2401 Face 4883 3598 2402 624 Face 4884 965 1154 2402 Face 4885 335 2403 1212 Face 4886 335 1227 2403 Face 4887 3362 2404 1674 Face 4888 1332 2108 2404 Face 4889 1210 2405 2255 Face 4890 3033 1575 2405 Face 4891 3109 4175 3760 Face 4892 3265 2197 2406 Face 4893 2408 3749 2032 Face 4894 2408 888 3749 Face 4895 887 2408 2032 Face 4896 887 2802 2408 Face 4897 756 2409 710 Face 4898 756 2181 2409 Face 4899 3647 2410 2427 Face 4900 3925 358 3403 Face 4901 2780 2411 2405 Face 4902 610 2375 2411 Face 4903 199 2412 3987 Face 4904 199 4746 2412 Face 4905 2460 2413 2551 Face 4906 763 1886 2413 Face 4907 220 2414 672 Face 4908 220 142 2414 Face 4909 1146 2415 3617 Face 4910 1146 1490 2415 Face 4911 3437 2416 2075 Face 4912 1483 1994 2416 Face 4913 3581 4789 2497 Face 4914 907 3744 4790 Face 4915 1282 2418 4064 Face 4916 1282 1353 2418 Face 4917 493 4926 3553 Face 4918 493 1531 2419 Face 4919 4512 2420 1500 Face 4920 670 3664 2420 Face 4921 250 2421 2027 Face 4922 250 522 2421 Face 4923 578 2422 1921 Face 4924 3339 3817 2422 Face 4925 233 2423 703 Face 4926 3573 2100 2423 Face 4927 1041 4769 1101 Face 4928 1041 4023 2424 Face 4929 2956 2425 2246 Face 4930 893 1460 2425 Face 4931 212 2426 3653 Face 4932 4114 4155 2426 Face 4933 259 2427 373 Face 4934 259 3647 2427 Face 4935 4837 2428 3887 Face 4936 4837 4331 2428 Face 4937 985 2429 2267 Face 4938 985 1687 3891 Face 4939 477 2430 1393 Face 4940 477 1067 2430 Face 4941 1972 2431 3878 Face 4942 3494 1328 2431 Face 4943 1073 2432 1520 Face 4944 1073 2198 3206 Face 4945 65 2433 273 Face 4946 65 4434 4011 Face 4947 4375 3435 3344 Face 4948 2735 2214 2434 Face 4949 1113 3918 2248 Face 4950 4830 3177 3918 Face 4951 193 2436 3726 Face 4952 193 1663 4107 Face 4953 1056 2437 1479 Face 4954 1056 860 2437 Face 4955 3000 2438 1680 Face 4956 3000 1054 2623 Face 4957 4560 3817 2302 Face 4958 4560 2422 3817 Face 4959 488 2440 1159 Face 4960 488 1418 2440 Face 4961 4345 2441 4797 Face 4962 4345 1021 2441 Face 4963 876 2442 3529 Face 4964 876 4400 2442 Face 4965 451 2817 4032 Face 4966 3046 1955 2443 Face 4967 1721 2444 3784 Face 4968 1721 1722 2444 Face 4969 4885 2445 3246 Face 4970 4885 167 2445 Face 4971 3155 2446 185 Face 4972 3155 51 2446 Face 4973 3500 2447 4930 Face 4974 1087 1445 2447 Face 4975 3893 2448 4471 Face 4976 2455 583 4701 Face 4977 208 2449 2238 Face 4978 208 976 2449 Face 4979 4068 2451 4469 Face 4980 1940 2789 2451 Face 4981 2450 2451 2394 Face 4982 2450 4469 2451 Face 4983 269 2452 1224 Face 4984 2453 424 4942 Face 4985 269 2453 4942 Face 4986 269 473 2453 Face 4987 1501 2454 3053 Face 4988 1501 830 2454 Face 4989 3893 2455 2448 Face 4990 3893 956 2455 Face 4991 3559 4486 1950 Face 4992 603 3666 2457 Face 4993 2456 2457 276 Face 4994 4486 603 2457 Face 4995 1053 2458 2118 Face 4996 1053 350 2458 Face 4997 1108 2459 2292 Face 4998 4157 2179 2459 Face 4999 763 4037 3262 Face 5000 763 2413 2460 Face 5001 970 4444 245 Face 5002 970 1815 4444 Face 5003 925 2462 3014 Face 5004 925 3145 2462 Face 5005 1490 2463 910 Face 5006 1490 614 3604 Face 5007 1654 2464 2128 Face 5008 1654 814 2464 Face 5009 2069 2465 520 Face 5010 2069 922 2465 Face 5011 1131 2466 2589 Face 5012 4882 2333 2466 Face 5013 1919 2467 1646 Face 5014 1919 3123 4777 Face 5015 1499 2468 219 Face 5016 1499 3092 2468 Face 5017 1158 2469 2205 Face 5018 1158 1688 2469 Face 5019 1200 2470 1986 Face 5020 1200 1857 2470 Face 5021 3879 4381 1472 Face 5022 811 169 2471 Face 5023 1196 2472 3095 Face 5024 1196 1764 2472 Face 5025 291 2473 1327 Face 5026 4020 3203 2473 Face 5027 3449 2474 1377 Face 5028 1239 2149 4666 Face 5029 373 3813 259 Face 5030 373 3027 2475 Face 5031 214 4113 22 Face 5032 214 2997 4113 Face 5033 1569 2477 1175 Face 5034 1569 3966 2477 Face 5035 2932 2478 1021 Face 5036 2932 1824 2478 Face 5037 4170 2479 2082 Face 5038 3595 2481 2479 Face 5039 1225 2480 697 Face 5040 1225 451 4032 Face 5041 1242 2481 822 Face 5042 1242 2479 2481 Face 5043 4033 2482 2556 Face 5044 4033 3204 2482 Face 5045 536 4259 2812 Face 5046 3216 4589 4007 Face 5047 4415 3425 3822 Face 5048 1219 346 2484 Face 5049 1556 2485 904 Face 5050 4308 1996 2485 Face 5051 3594 2486 705 Face 5052 361 3873 2764 Face 5053 701 2487 1867 Face 5054 701 961 2487 Face 5055 3686 2488 3103 Face 5056 3598 1953 2488 Face 5057 1546 2490 3127 Face 5058 1546 3457 2490 Face 5059 2489 2490 3457 Face 5060 2489 3762 2490 Face 5061 888 2492 3749 Face 5062 888 2093 2492 Face 5063 4321 2492 3173 Face 5064 4321 2407 2492 Face 5065 3830 2493 2282 Face 5066 2241 4093 2493 Face 5067 3108 3526 2826 Face 5068 4875 2047 4231 Face 5069 982 2495 4881 Face 5070 982 2047 4875 Face 5071 2985 2496 2662 Face 5072 4521 4791 2496 Face 5073 4795 2497 4789 Face 5074 472 3783 2497 Face 5075 2169 2498 947 Face 5076 2169 206 2498 Face 5077 3168 4041 3371 Face 5078 1779 1594 2499 Face 5079 3292 3305 744 Face 5080 4775 2901 3305 Face 5081 3763 3044 1655 Face 5082 3763 2155 3044 Face 5083 787 2903 960 Face 5084 787 1518 2502 Face 5085 1757 2503 2480 Face 5086 1757 495 2503 Face 5087 278 2504 3689 Face 5088 278 3412 4028 Face 5089 2506 3523 4337 Face 5090 388 2745 2505 Face 5091 388 2506 1000 Face 5092 388 3523 2506 Face 5093 855 2507 145 Face 5094 855 4926 2507 Face 5095 47 2510 147 Face 5096 47 2512 2510 Face 5097 83 2509 2803 Face 5098 3553 855 2509 Face 5099 2508 2510 131 Face 5100 2508 147 2510 Face 5101 131 2511 147 Face 5102 131 2510 2511 Face 5103 2511 2512 88 Face 5104 2511 2510 2512 Face 5105 2975 2513 86 Face 5106 4696 359 2513 Face 5107 1182 2514 1107 Face 5108 3901 1805 2514 Face 5109 1723 2515 2674 Face 5110 4019 1817 2515 Face 5111 720 4127 3196 Face 5112 3597 980 2516 Face 5113 436 2517 4725 Face 5114 436 1176 2517 Face 5115 4865 2518 4567 Face 5116 560 2519 2518 Face 5117 2399 2519 4351 Face 5118 2399 2518 2519 Face 5119 3238 3769 2200 Face 5120 1907 900 2520 Face 5121 1786 2521 2235 Face 5122 1786 3487 2521 Face 5123 807 2522 3419 Face 5124 807 2913 2522 Face 5125 643 3275 3017 Face 5126 3716 1846 2523 Face 5127 2851 2524 1581 Face 5128 2850 4463 3392 Face 5129 364 3490 1779 Face 5130 364 1934 3490 Face 5131 475 3713 1657 Face 5132 475 3443 2526 Face 5133 4050 2527 2199 Face 5134 4050 390 2527 Face 5135 472 2528 3783 Face 5136 472 1596 2528 Face 5137 913 3886 485 Face 5138 913 2336 3886 Face 5139 697 4593 2243 Face 5140 697 2659 4593 Face 5141 661 2531 1380 Face 5142 661 2988 2531 Face 5143 527 2532 1583 Face 5144 527 189 2532 Face 5145 1331 3447 2530 Face 5146 3833 1389 2533 Face 5147 3805 2534 1447 Face 5148 4805 187 2534 Face 5149 246 2535 1917 Face 5150 246 945 2535 Face 5151 486 2536 1632 Face 5152 486 487 2536 Face 5153 751 2537 2859 Face 5154 3905 1060 2537 Face 5155 2927 2538 3919 Face 5156 2927 4363 2538 Face 5157 2560 2539 316 Face 5158 3005 3118 4138 Face 5159 408 2540 707 Face 5160 408 3282 2540 Face 5161 2952 3535 465 Face 5162 251 3807 2541 Face 5163 1241 2542 2642 Face 5164 1241 2245 2542 Face 5165 568 2544 3659 Face 5166 568 1839 2544 Face 5167 2543 2544 4070 Face 5168 2543 2037 2544 Face 5169 4548 2545 4676 Face 5170 372 2470 2545 Face 5171 2547 2546 4608 Face 5172 2547 4689 2546 Face 5173 1155 2547 4608 Face 5174 1155 444 2547 Face 5175 1088 2548 1509 Face 5176 1088 1942 2548 Face 5177 1362 2549 1363 Face 5178 1362 581 2549 Face 5179 1531 2550 1741 Face 5180 3093 1637 2550 Face 5181 1143 2551 2413 Face 5182 1143 1428 2551 Face 5183 1319 2552 59 Face 5184 1319 1626 2552 Face 5185 236 2553 3572 Face 5186 236 1137 2553 Face 5187 2016 2554 1158 Face 5188 2016 704 2554 Face 5189 2569 2555 1673 Face 5190 300 1854 2555 Face 5191 2557 2556 2482 Face 5192 400 1019 2556 Face 5193 4619 2557 4082 Face 5194 400 2556 2557 Face 5195 2559 2558 2448 Face 5196 260 1517 2558 Face 5197 260 2559 263 Face 5198 260 2558 2559 Face 5199 514 4506 89 Face 5200 3005 4138 2560 Face 5201 466 2561 987 Face 5202 466 3515 2561 Face 5203 841 2562 1304 Face 5204 841 2237 2562 Face 5205 649 2563 452 Face 5206 649 3393 2563 Face 5207 1969 2564 3121 Face 5208 2982 4068 4469 Face 5209 1679 2565 399 Face 5210 1679 4214 2565 Face 5211 3092 2566 2818 Face 5212 3092 4403 2566 Face 5213 910 4934 740 Face 5214 910 2326 2567 Face 5215 3534 2568 2311 Face 5216 928 4002 4580 Face 5217 4347 2569 1085 Face 5218 300 2555 2569 Face 5219 2571 2570 370 Face 5220 438 1701 2570 Face 5221 3484 3343 1248 Face 5222 3484 2570 3343 Face 5223 1369 2572 1619 Face 5224 1369 3219 2572 Face 5225 337 2573 3614 Face 5226 337 137 2573 Face 5227 417 2574 3875 Face 5228 417 4431 2574 Face 5229 2576 2575 4507 Face 5230 2574 3071 2575 Face 5231 2574 2576 4507 Face 5232 2577 2575 2576 Face 5233 2581 2577 2576 Face 5234 2578 2575 2577 Face 5235 2580 2578 2577 Face 5236 2579 2575 2578 Face 5237 2581 2579 2577 Face 5238 2581 2575 2579 Face 5239 2579 2580 2577 Face 5240 2579 2578 2580 Face 5241 2574 2581 2576 Face 5242 2574 2575 2581 Face 5243 634 4431 1297 Face 5244 634 2574 4431 Face 5245 616 2583 1325 Face 5246 616 3424 2583 Face 5247 2585 2584 2308 Face 5248 2585 1778 2584 Face 5249 1878 2585 2598 Face 5250 1878 1778 2585 Face 5251 3346 2586 3824 Face 5252 773 1128 2586 Face 5253 2763 2587 1308 Face 5254 771 1161 2587 Face 5255 2908 2588 360 Face 5256 3337 2345 3952 Face 5257 1847 2589 1968 Face 5258 3884 637 2589 Face 5259 4053 3363 2991 Face 5260 1193 1782 2590 Face 5261 1510 2591 3589 Face 5262 1510 802 2591 Face 5263 1914 2592 738 Face 5264 1914 1029 2592 Face 5265 4145 2593 1442 Face 5266 854 3122 2593 Face 5267 284 3552 282 Face 5268 2955 3867 2594 Face 5269 582 2595 2250 Face 5270 582 2139 2595 Face 5271 688 2596 3391 Face 5272 688 2231 2596 Face 5273 744 2597 2406 Face 5274 744 2500 2597 Face 5275 1136 2598 1969 Face 5276 1136 1878 2598 Face 5277 3100 2599 1101 Face 5278 909 1694 4674 Face 5279 1420 2600 2212 Face 5280 1420 870 2600 Face 5281 570 2601 2520 Face 5282 3208 2393 4298 Face 5283 2959 2602 1146 Face 5284 2959 2524 2602 Face 5285 1798 2603 1799 Face 5286 1798 1905 3369 Face 5287 205 3239 862 Face 5288 205 825 2604 Face 5289 605 2605 2809 Face 5290 3025 1885 2605 Face 5291 4826 2606 1322 Face 5292 709 809 2606 Face 5293 3923 2607 1198 Face 5294 939 1072 2607 Face 5295 1391 2608 2006 Face 5296 1391 1025 2608 Face 5297 696 2609 2335 Face 5298 4650 1413 2611 Face 5299 2609 2610 317 Face 5300 4199 1370 2610 Face 5301 2609 2611 2610 Face 5302 2609 696 2611 Face 5303 1151 4404 3241 Face 5304 1151 1494 4404 Face 5305 1151 2613 1494 Face 5306 1151 4643 2613 Face 5307 2244 2614 3373 Face 5308 2244 4418 2614 Face 5309 650 2615 773 Face 5310 650 649 2615 Face 5311 897 4338 4547 Face 5312 897 2255 4338 Face 5313 3404 2617 474 Face 5314 569 2477 2617 Face 5315 4374 2618 722 Face 5316 210 316 2618 Face 5317 895 2619 917 Face 5318 895 2557 4565 Face 5319 3035 4282 2890 Face 5320 772 2336 2620 Face 5321 478 2621 1809 Face 5322 478 778 2621 Face 5323 3009 3644 1130 Face 5324 4336 700 3644 Face 5325 2786 2623 662 Face 5326 2438 3000 2623 Face 5327 4130 2624 4554 Face 5328 1247 281 2624 Face 5329 4759 2625 3509 Face 5330 753 683 2625 Face 5331 482 2626 1310 Face 5332 482 2798 2626 Face 5333 111 4097 1544 Face 5334 111 3395 4097 Face 5335 2631 4620 156 Face 5336 2631 3547 4620 Face 5337 58 2629 2630 Face 5338 58 5 2629 Face 5339 156 2630 2629 Face 5340 4371 136 2630 Face 5341 1229 2631 156 Face 5342 1229 1978 2631 Face 5343 173 2632 1302 Face 5344 173 2534 2632 Face 5345 401 2633 275 Face 5346 401 239 4923 Face 5347 459 2634 1608 Face 5348 3415 1796 2634 Face 5349 765 2636 4655 Face 5350 4093 4126 4528 Face 5351 4528 2636 4093 Face 5352 2635 4115 2636 Face 5353 2638 3554 3064 Face 5354 2638 4201 3554 Face 5355 2639 2638 3064 Face 5356 3427 179 2638 Face 5357 3063 2639 2993 Face 5358 3063 4724 2639 Face 5359 3785 2640 1838 Face 5360 2641 1670 2640 Face 5361 2642 2641 2640 Face 5362 2642 2542 2641 Face 5363 3785 2642 2640 Face 5364 1415 1241 2642 Face 5365 1415 2643 1416 Face 5366 1415 1838 2643 Face 5367 190 4422 1513 Face 5368 190 3176 4422 Face 5369 182 2645 1608 Face 5370 182 1039 2645 Face 5371 4238 2646 4911 Face 5372 1348 4537 2646 Face 5373 733 2647 4492 Face 5374 733 1979 2647 Face 5375 3897 2648 2503 Face 5376 2649 1758 2648 Face 5377 495 3897 2503 Face 5378 2650 867 2649 Face 5379 4218 2650 2649 Face 5380 3327 4860 3826 Face 5381 3134 2651 644 Face 5382 1170 2119 4798 Face 5383 1278 2652 1847 Face 5384 1278 1873 2652 Face 5385 2654 2653 1909 Face 5386 2654 584 2653 Face 5387 1975 2654 1909 Face 5388 1975 3842 2654 Face 5389 1710 2655 640 Face 5390 1710 1709 2655 Face 5391 1631 2656 3078 Face 5392 1631 4686 2656 Face 5393 4751 2657 1852 Face 5394 441 1851 2657 Face 5395 391 2658 81 Face 5396 3388 240 2658 Face 5397 1758 2659 2648 Face 5398 1758 1727 2659 Face 5399 4876 2660 688 Face 5400 1153 2041 2660 Face 5401 1284 2661 230 Face 5402 1284 2501 2661 Face 5403 1665 2662 2496 Face 5404 1665 369 2662 Face 5405 1104 2663 342 Face 5406 1104 1949 2663 Face 5407 62 2664 2501 Face 5408 62 2349 2664 Face 5409 299 2665 4546 Face 5410 299 4856 2665 Face 5411 379 2666 3485 Face 5412 4553 1599 2666 Face 5413 435 2667 4082 Face 5414 4607 278 2667 Face 5415 693 2668 1949 Face 5416 693 742 3135 Face 5417 68 2669 1301 Face 5418 68 4221 2669 Face 5419 232 2670 3170 Face 5420 232 133 2670 Face 5421 4297 2671 3696 Face 5422 324 4140 2671 Face 5423 1191 2672 918 Face 5424 4284 830 2672 Face 5425 2085 2673 596 Face 5426 2085 1203 2673 Face 5427 4603 2674 406 Face 5428 4603 1723 2674 Face 5429 1597 2675 2525 Face 5430 1597 3448 2675 Face 5431 782 2676 4946 Face 5432 782 1923 2676 Face 5433 2916 2677 1336 Face 5434 196 4783 2677 Face 5435 1134 2678 1957 Face 5436 3458 2307 2678 Face 5437 672 2679 220 Face 5438 672 2276 2679 Face 5439 707 2680 1209 Face 5440 707 2540 2680 Face 5441 4571 2681 3350 Face 5442 4571 1860 2681 Face 5443 1519 4773 3778 Face 5444 1519 2083 2682 Face 5445 3074 2683 3429 Face 5446 3074 1513 2683 Face 5447 740 2685 3617 Face 5448 4040 2929 2685 Face 5449 2684 2685 3916 Face 5450 2684 2358 2685 Face 5451 89 4456 514 Face 5452 89 4590 2686 Face 5453 530 2687 2177 Face 5454 530 1893 2687 Face 5455 1460 2688 646 Face 5456 1460 890 2688 Face 5457 1032 2689 2203 Face 5458 1032 1990 2689 Face 5459 1261 2690 3460 Face 5460 4416 4897 2690 Face 5461 1431 2691 3822 Face 5462 1431 1432 2691 Face 5463 390 2692 3179 Face 5464 390 4050 2693 Face 5465 2692 2693 1738 Face 5466 2692 390 2693 Face 5467 3458 4140 324 Face 5468 3458 2251 2694 Face 5469 303 2695 1693 Face 5470 303 1469 2695 Face 5471 1167 3146 1538 Face 5472 1167 1395 3146 Face 5473 1058 2697 2231 Face 5474 1058 1685 2697 Face 5475 231 2698 4952 Face 5476 4357 4530 2698 Face 5477 4357 2699 4530 Face 5478 231 886 2699 Face 5479 2701 2700 445 Face 5480 3619 2145 2700 Face 5481 501 2701 2832 Face 5482 501 2700 2701 Face 5483 1444 2702 1424 Face 5484 1444 3031 2702 Face 5485 628 2703 2371 Face 5486 628 1292 2703 Face 5487 198 2704 3607 Face 5488 198 762 2704 Face 5489 53 2705 1741 Face 5490 53 3141 2705 Face 5491 410 2706 1004 Face 5492 410 2768 4219 Face 5493 410 2707 3924 Face 5494 410 1385 4453 Face 5495 613 4879 1940 Face 5496 4185 4890 4349 Face 5497 1555 2709 2971 Face 5498 1555 2215 2709 Face 5499 1028 2710 2051 Face 5500 1028 2171 2710 Face 5501 161 2711 3478 Face 5502 161 24 2711 Face 5503 3419 2712 1852 Face 5504 336 165 2712 Face 5505 592 2713 951 Face 5506 592 2714 2713 Face 5507 1117 2714 592 Face 5508 1117 2142 2714 Face 5509 3620 2715 583 Face 5510 3620 4393 2715 Face 5511 1743 2716 1861 Face 5512 1743 1049 2716 Face 5513 180 2717 80 Face 5514 180 3521 2717 Face 5515 1407 2718 1515 Face 5516 1407 1327 2718 Face 5517 805 2719 1488 Face 5518 805 3446 2719 Face 5519 414 2720 2731 Face 5520 414 3349 2720 Face 5521 521 2721 3730 Face 5522 521 3040 2721 Face 5523 719 2722 799 Face 5524 3414 2097 2722 Face 5525 2724 2723 2020 Face 5526 1557 1735 2723 Face 5527 2977 2724 3814 Face 5528 1557 2723 2724 Face 5529 580 2725 2431 Face 5530 580 1565 2725 Face 5531 1605 2726 821 Face 5532 1605 2368 2726 Face 5533 215 2727 1492 Face 5534 215 1035 2727 Face 5535 1405 2728 1732 Face 5536 1405 973 2728 Face 5537 3247 2729 3201 Face 5538 1435 2177 2729 Face 5539 1111 2730 2273 Face 5540 4676 3058 2730 Face 5541 1111 4008 4548 Face 5542 1111 414 2731 Face 5543 402 2732 4602 Face 5544 402 725 2732 Face 5545 4312 2733 2741 Face 5546 402 4602 2733 Face 5547 4064 2734 510 Face 5548 4064 2418 2734 Face 5549 655 2735 2434 Face 5550 655 954 2735 Face 5551 1564 2736 2148 Face 5552 1564 1157 2736 Face 5553 1124 2737 2688 Face 5554 1124 2912 2737 Face 5555 2739 2738 1570 Face 5556 4494 1493 2738 Face 5557 601 2739 1031 Face 5558 601 2738 2739 Face 5559 517 2740 210 Face 5560 517 2059 2740 Face 5561 4341 2741 2733 Face 5562 2083 1519 2741 Face 5563 4533 2742 541 Face 5564 575 3582 2742 Face 5565 560 2743 918 Face 5566 560 2518 4865 Face 5567 1623 2744 638 Face 5568 1623 577 2744 Face 5569 722 2745 4912 Face 5570 722 2505 2745 Face 5571 993 2746 3705 Face 5572 993 2641 2746 Face 5573 810 2747 4737 Face 5574 810 3853 3439 Face 5575 4310 2748 2224 Face 5576 1227 218 2748 Face 5577 445 2749 3179 Face 5578 445 587 2749 Face 5579 557 2750 1208 Face 5580 3353 2746 4021 Face 5581 368 2751 600 Face 5582 368 939 2751 Face 5583 1875 2752 1406 Face 5584 1875 1876 2752 Face 5585 4748 2753 4086 Face 5586 355 4906 4526 Face 5587 2209 2754 1291 Face 5588 2209 1024 2754 Face 5589 274 2755 4249 Face 5590 274 1533 2755 Face 5591 1716 2756 2370 Face 5592 1716 1763 2756 Face 5593 2092 2757 1740 Face 5594 2092 3466 2757 Face 5595 283 2758 1337 Face 5596 283 4096 2758 Face 5597 377 2759 1305 Face 5598 377 1946 2759 Face 5599 1351 2760 1163 Face 5600 1351 4213 2760 Face 5601 2873 2761 1411 Face 5602 2873 2043 2761 Face 5603 747 3189 321 Face 5604 2884 2990 2762 Face 5605 771 2763 3895 Face 5606 771 2587 2763 Face 5607 2486 2764 148 Face 5608 2486 3594 2764 Face 5609 1442 2765 4145 Face 5610 4836 2906 2765 Face 5611 94 2766 1966 Face 5612 94 958 4599 Face 5613 3846 3931 3338 Face 5614 4016 3098 3236 Face 5615 3030 2768 410 Face 5616 4016 3236 2768 Face 5617 1494 2769 4404 Face 5618 1494 2491 2769 Face 5619 3080 2770 2257 Face 5620 185 2446 2770 Face 5621 4148 2771 4609 Face 5622 3080 949 2771 Face 5623 316 2772 4506 Face 5624 316 2740 2772 Face 5625 1094 2773 3077 Face 5626 3122 977 2773 Face 5627 3796 2774 2386 Face 5628 1819 120 2774 Face 5629 123 2775 2106 Face 5630 123 1062 2775 Face 5631 2024 2776 2196 Face 5632 2024 654 2776 Face 5633 929 2777 2337 Face 5634 929 774 2777 Face 5635 767 2778 2715 Face 5636 767 1448 2778 Face 5637 1545 2779 66 Face 5638 1545 2322 2779 Face 5639 610 2780 4335 Face 5640 610 2411 2780 Face 5641 440 2781 881 Face 5642 2782 3205 2781 Face 5643 440 2782 2781 Face 5644 440 283 2782 Face 5645 1907 2783 2356 Face 5646 3238 2200 2783 Face 5647 2783 2784 2356 Face 5648 2783 3294 2784 Face 5649 1450 2785 421 Face 5650 1450 2025 2785 Face 5651 2438 4808 3243 Face 5652 2438 2623 4808 Face 5653 4217 2787 1516 Face 5654 769 1401 2787 Face 5655 253 2788 1811 Face 5656 253 3253 2788 Face 5657 2901 3136 3305 Face 5658 2394 2451 2789 Face 5659 393 2790 4544 Face 5660 393 3016 2790 Face 5661 393 2791 3210 Face 5662 393 607 2791 Face 5663 2885 2792 164 Face 5664 4693 942 2792 Face 5665 4399 2793 4535 Face 5666 3496 975 2793 Face 5667 1215 2794 2220 Face 5668 1215 1662 2794 Face 5669 1072 2988 661 Face 5670 4863 368 2795 Face 5671 2797 2796 4658 Face 5672 2797 4081 2796 Face 5673 3639 2797 4658 Face 5674 3638 748 2797 Face 5675 760 2798 1485 Face 5676 760 1505 2798 Face 5677 824 2799 380 Face 5678 824 1711 2799 Face 5679 1726 2800 55 Face 5680 2801 1727 2800 Face 5681 1726 2801 2800 Face 5682 1726 1725 2801 Face 5683 1740 2802 887 Face 5684 1740 2138 2802 Face 5685 145 2803 57 Face 5686 3960 1815 2803 Face 5687 1934 2804 3490 Face 5688 1934 2210 2804 Face 5689 3641 2805 3839 Face 5690 617 3317 2805 Face 5691 639 2806 2312 Face 5692 3140 3485 2806 Face 5693 784 2807 1677 Face 5694 784 1275 2807 Face 5695 1046 2808 1998 Face 5696 1046 309 2808 Face 5697 1021 2809 2061 Face 5698 1021 1837 2809 Face 5699 620 2810 2000 Face 5700 620 1450 2810 Face 5701 1854 2811 4766 Face 5702 1854 300 2811 Face 5703 1854 2812 3048 Face 5704 1854 4766 2812 Face 5705 3988 2813 3837 Face 5706 3988 1528 2813 Face 5707 1797 4884 1599 Face 5708 1797 1421 4884 Face 5709 3148 2815 1115 Face 5710 431 1554 2815 Face 5711 1713 2816 3250 Face 5712 1713 1714 2816 Face 5713 2443 2817 3046 Face 5714 2443 1757 2817 Face 5715 4388 2818 2566 Face 5716 4055 4435 2818 Face 5717 1347 2819 633 Face 5718 1347 2095 2819 Face 5719 1833 2820 863 Face 5720 4941 1654 2820 Face 5721 4570 2821 1590 Face 5722 457 3273 2821 Face 5723 1017 2822 2107 Face 5724 1017 3431 2822 Face 5725 1909 2823 1526 Face 5726 1909 2653 2823 Face 5727 1749 2824 2682 Face 5728 1749 2428 2824 Face 5729 1749 2825 1625 Face 5730 1749 2083 2825 Face 5731 406 2826 2986 Face 5732 406 3108 2826 Face 5733 1471 4718 4380 Face 5734 4087 3665 2827 Face 5735 843 2828 1802 Face 5736 843 183 2828 Face 5737 3481 2829 1933 Face 5738 1675 2396 2829 Face 5739 781 2830 246 Face 5740 4776 3021 2830 Face 5741 1205 2831 1853 Face 5742 1205 302 2831 Face 5743 1162 2832 3159 Face 5744 1162 2098 2832 Face 5745 3792 2833 1702 Face 5746 3792 1615 2833 Face 5747 1942 2834 3584 Face 5748 1942 1088 2834 Face 5749 4487 2835 1664 Face 5750 1263 1262 3556 Face 5751 321 4320 4216 Face 5752 2837 1035 2836 Face 5753 321 2837 4320 Face 5754 321 3189 2837 Face 5755 1574 2838 3477 Face 5756 1574 1123 2838 Face 5757 663 2839 664 Face 5758 663 4269 2839 Face 5759 1290 2840 4427 Face 5760 4661 314 2840 Face 5761 4174 2841 346 Face 5762 458 1921 4406 Face 5763 458 2843 850 Face 5764 458 4406 2843 Face 5765 2844 2843 4406 Face 5766 2844 850 2843 Face 5767 2842 2844 4406 Face 5768 2842 2938 2844 Face 5769 755 3607 2704 Face 5770 2942 1459 2845 Face 5771 944 2846 1433 Face 5772 944 1842 2846 Face 5773 944 2847 4189 Face 5774 944 3506 2847 Face 5775 2849 2848 3732 Face 5776 664 2747 2848 Face 5777 664 2849 4628 Face 5778 664 2848 2849 Face 5779 2267 2850 3392 Face 5780 2267 2429 2850 Face 5781 2267 2851 985 Face 5782 2267 2524 2851 Face 5783 1066 2852 214 Face 5784 3258 2367 2852 Face 5785 1507 2853 386 Face 5786 3289 2109 2853 Face 5787 881 2854 1568 Face 5788 881 2781 3693 Face 5789 1095 2855 1629 Face 5790 1095 1483 2855 Face 5791 160 2856 2333 Face 5792 4549 408 2856 Face 5793 1016 2857 1402 Face 5794 1016 1716 2857 Face 5795 1619 2858 2553 Face 5796 1619 2572 2858 Face 5797 842 2859 2537 Face 5798 842 4292 2859 Face 5799 770 2860 2662 Face 5800 770 1109 2860 Face 5801 2862 2861 1069 Face 5802 1070 1071 2861 Face 5803 1070 2862 2330 Face 5804 1070 2861 2862 Face 5805 844 2863 4513 Face 5806 2864 4294 2863 Face 5807 844 2864 2863 Face 5808 4783 196 2864 Face 5809 4191 2865 53 Face 5810 1638 3735 2865 Face 5811 476 2866 1704 Face 5812 476 3207 2866 Face 5813 3797 2868 4328 Face 5814 237 1335 4013 Face 5815 2867 2868 3797 Face 5816 2867 3166 2868 Face 5817 4177 2869 3194 Face 5818 4177 963 2869 Face 5819 1342 2870 3841 Face 5820 1342 3995 2870 Face 5821 305 2890 506 Face 5822 305 2727 2871 Face 5823 657 2872 2354 Face 5824 657 2765 2872 Face 5825 2874 3919 2538 Face 5826 3685 2043 2873 Face 5827 1410 2874 1478 Face 5828 3685 2873 2874 Face 5829 934 2875 4572 Face 5830 934 2234 2875 Face 5831 589 2876 1148 Face 5832 589 1867 2876 Face 5833 1223 2877 2022 Face 5834 2878 1236 2877 Face 5835 1223 2878 2877 Face 5836 1223 3372 2878 Face 5837 1061 2879 221 Face 5838 1061 791 2879 Face 5839 314 2880 2840 Face 5840 314 811 3240 Face 5841 651 2881 981 Face 5842 651 452 2881 Face 5843 651 2882 452 Face 5844 651 1265 2882 Face 5845 1383 2883 4797 Face 5846 1383 1524 2883 Face 5847 747 2884 3189 Face 5848 747 1689 2884 Face 5849 1999 2885 1731 Face 5850 4693 2792 2885 Face 5851 1419 2886 1420 Face 5852 1419 921 2886 Face 5853 3656 4804 4647 Face 5854 4949 3093 2887 Face 5855 2889 2888 2066 Face 5856 455 3870 2888 Face 5857 4172 2889 980 Face 5858 455 2888 2889 Face 5859 2871 2890 305 Face 5860 3654 3035 2890 Face 5861 1693 2891 3782 Face 5862 1693 2695 4340 Face 5863 591 2892 1887 Face 5864 591 2037 2892 Face 5865 1173 2893 292 Face 5866 2894 1848 2893 Face 5867 1173 2894 2893 Face 5868 1173 2131 2894 Face 5869 4781 2895 2063 Face 5870 1704 2866 2895 Face 5871 676 2896 1356 Face 5872 3752 304 2896 Face 5873 531 2898 4542 Face 5874 4227 1734 4814 Face 5875 4814 2898 4227 Face 5876 4813 1457 2898 Face 5877 1174 4518 4626 Face 5878 1174 438 2899 Face 5879 621 2900 171 Face 5880 621 4833 2900 Face 5881 2394 2901 4775 Face 5882 2394 2789 2901 Face 5883 3740 2902 1920 Face 5884 3740 2498 2902 Face 5885 2502 2903 787 Face 5886 2502 1003 2903 Face 5887 2905 2904 2207 Face 5888 1841 2847 2904 Face 5889 1841 2905 559 Face 5890 1841 2904 2905 Face 5891 659 2906 1856 Face 5892 659 2765 2906 Face 5893 419 2907 420 Face 5894 419 1640 2907 Face 5895 1513 2908 190 Face 5896 4258 2588 2908 Face 5897 1065 2909 647 Face 5898 1065 3191 2909 Face 5899 407 2910 1269 Face 5900 407 3831 2910 Face 5901 1620 2911 2371 Face 5902 1620 398 2911 Face 5903 285 2912 2755 Face 5904 285 2737 2912 Face 5905 2914 4822 807 Face 5906 294 3943 4822 Face 5907 294 2914 2922 Face 5908 294 4822 2914 Face 5909 1791 2915 2048 Face 5910 1791 1127 2915 Face 5911 196 2916 769 Face 5912 196 2677 2916 Face 5913 611 2917 1871 Face 5914 611 1109 2917 Face 5915 1688 2918 2469 Face 5916 4848 1835 2918 Face 5917 2081 4849 3200 Face 5918 2081 465 4849 Face 5919 2921 2920 2120 Face 5920 339 1449 2920 Face 5921 339 2921 924 Face 5922 339 2920 2921 Face 5923 807 2922 2914 Face 5924 807 2657 2922 Face 5925 3539 3163 4342 Face 5926 4610 3976 2923 Face 5927 573 2924 1807 Face 5928 573 2779 2924 Face 5929 1957 2925 1134 Face 5930 1957 2057 2925 Face 5931 1214 2926 2161 Face 5932 1214 928 2926 Face 5933 1411 2927 2873 Face 5934 1411 2637 2927 Face 5935 317 4364 3750 Face 5936 3916 2685 2929 Face 5937 2928 2929 2567 Face 5938 4364 3916 2929 Face 5939 4362 2930 2919 Face 5940 4362 3535 2930 Face 5941 1428 2931 2551 Face 5942 1428 2228 2931 Face 5943 1473 2932 1021 Face 5944 1473 1824 2932 Face 5945 1523 2933 4204 Face 5946 1523 2671 2933 Face 5947 1502 4234 2275 Face 5948 1502 1320 2934 Face 5949 1212 2935 3099 Face 5950 4839 515 4756 Face 5951 2320 4424 442 Face 5952 2320 4043 4424 Face 5953 4283 2937 1535 Face 5954 289 111 2937 Face 5955 850 2938 656 Face 5956 850 2844 2938 Face 5957 822 2940 848 Face 5958 822 2481 2940 Face 5959 2939 2940 2481 Face 5960 2939 4159 2940 Face 5961 587 2941 1230 Face 5962 587 445 2941 Face 5963 755 2942 2845 Face 5964 755 885 2942 Face 5965 4762 2943 3874 Face 5966 4762 1759 2943 Face 5967 110 2944 27 Face 5968 110 2442 2944 Face 5969 1202 2945 2411 Face 5970 1202 2171 2945 Face 5971 2947 2946 1437 Face 5972 606 1257 2946 Face 5973 606 2947 2390 Face 5974 606 2946 2947 Face 5975 4149 2948 3819 Face 5976 218 1268 2948 Face 5977 1464 2949 978 Face 5978 1464 2366 2949 Face 5979 804 2950 211 Face 5980 804 1607 2950 Face 5981 674 2951 4394 Face 5982 674 884 2951 Face 5983 251 2952 1154 Face 5984 251 2541 2952 Face 5985 602 2953 2432 Face 5986 602 422 2953 Face 5987 1637 2954 892 Face 5988 1637 4949 2954 Face 5989 284 2955 3552 Face 5990 284 626 2955 Face 5991 893 2956 4481 Face 5992 893 2425 2956 Face 5993 404 2957 3548 Face 5994 404 3022 2957 Face 5995 4395 2958 842 Face 5996 367 1790 2958 Face 5997 175 2959 2358 Face 5998 175 2524 2959 Face 5999 2961 2960 729 Face 6000 302 1470 4927 Face 6001 302 2961 2831 Face 6002 302 4927 2961 Face 6003 3917 2962 527 Face 6004 2350 2010 2962 Face 6005 2350 2963 2351 Face 6006 3917 1583 2963 Face 6007 4152 2965 2868 Face 6008 2192 1090 2964 Face 6009 2964 2965 2192 Face 6010 2966 3797 4328 Face 6011 2964 2966 2965 Face 6012 2964 1989 2966 Face 6013 2964 2967 1989 Face 6014 2964 1090 2967 Face 6015 4664 2968 2596 Face 6016 4664 1795 2968 Face 6017 1359 2969 3784 Face 6018 1359 4726 2969 Face 6019 640 2970 1710 Face 6020 640 4534 2970 Face 6021 4293 2971 3325 Face 6022 4293 4557 2971 Face 6023 3255 2972 483 Face 6024 3255 4660 2972 Face 6025 4820 2973 4235 Face 6026 4755 2010 2973 Face 6027 1140 4099 450 Face 6028 4869 657 2974 Face 6029 1686 2975 2104 Face 6030 1686 2513 2975 Face 6031 1686 4696 2513 Face 6032 1686 971 2976 Face 6033 1557 4574 1614 Face 6034 1557 2724 2977 Face 6035 164 2978 2885 Face 6036 164 3894 2978 Face 6037 2980 2979 3248 Face 6038 186 3562 2979 Face 6039 3374 2980 2489 Face 6040 186 2979 2980 Face 6041 1571 2981 2645 Face 6042 1571 1238 2981 Face 6043 3794 4937 2564 Face 6044 3794 2308 4937 Face 6045 406 2983 3108 Face 6046 406 4921 2983 Face 6047 1653 2984 1133 Face 6048 1653 3096 2984 Face 6049 1231 2985 1283 Face 6050 1231 2496 2985 Face 6051 4918 3026 4668 Face 6052 801 2264 3026 Face 6053 654 2987 1268 Face 6054 654 1860 2987 Face 6055 2795 2988 4863 Face 6056 2795 2531 2988 Face 6057 399 2989 1679 Face 6058 399 987 2989 Face 6059 221 2990 2884 Face 6060 221 2879 2990 Face 6061 3120 3038 4443 Face 6062 2208 4053 3038 Face 6063 1790 2992 2958 Face 6064 1790 2392 2992 Face 6065 4088 2993 2639 Face 6066 3065 3028 2993 Face 6067 2993 2994 3063 Face 6068 2993 912 2994 Face 6069 1127 2995 1567 Face 6070 1127 1039 2995 Face 6071 4009 2996 3063 Face 6072 200 1783 2996 Face 6073 963 2997 214 Face 6074 963 3675 2997 Face 6075 2107 2998 4524 Face 6076 2107 2002 2998 Face 6077 764 2999 1097 Face 6078 764 1780 2999 Face 6079 725 3000 1680 Face 6080 725 1893 3000 Face 6081 4516 3001 4004 Face 6082 4516 4345 3001 Face 6083 3003 3002 278 Face 6084 3003 4618 3002 Face 6085 3004 3003 3689 Face 6086 4382 4618 3003 Face 6087 1019 3004 2172 Face 6088 1019 400 4382 Face 6089 4823 3005 2560 Face 6090 4823 2156 3005 Face 6091 685 3006 1002 Face 6092 685 3422 3006 Face 6093 1103 3007 2449 Face 6094 1103 1511 3972 Face 6095 3113 4956 867 Face 6096 892 2121 3008 Face 6097 835 3009 3347 Face 6098 4336 3644 3009 Face 6099 1466 3010 1392 Face 6100 1466 2922 3010 Face 6101 758 3011 2099 Face 6102 758 2646 3011 Face 6103 1603 3012 4933 Face 6104 4660 3255 3012 Face 6105 3200 3013 2081 Face 6106 3200 3385 4712 Face 6107 1707 3014 2462 Face 6108 1707 1785 3014 Face 6109 1399 3015 1872 Face 6110 1399 3145 3015 Face 6111 691 3016 2034 Face 6112 3803 2790 3016 Face 6113 671 3017 3275 Face 6114 671 2456 3017 Face 6115 1717 3018 1630 Face 6116 1717 343 3018 Face 6117 1139 3019 440 Face 6118 1139 456 3019 Face 6119 1311 3020 919 Face 6120 1311 3883 3020 Face 6121 809 3021 222 Face 6122 809 709 3021 Face 6123 1423 3022 4539 Face 6124 1423 2957 3022 Face 6125 462 3023 2122 Face 6126 462 1326 3023 Face 6127 979 3024 2452 Face 6128 979 2025 3024 Face 6129 605 3025 2605 Face 6130 605 2143 3025 Face 6131 3576 3026 2264 Face 6132 2986 4668 3026 Face 6133 1692 3027 3733 Face 6134 1692 2475 3027 Face 6135 912 3028 1978 Face 6136 912 2993 3028 Face 6137 2103 3029 1553 Face 6138 2103 2592 3029 Face 6139 3924 3030 410 Face 6140 4016 2768 3030 Face 6141 1076 3031 1444 Face 6142 1076 798 3031 Face 6143 1859 3032 1858 Face 6144 1859 2188 3032 Face 6145 1210 3033 2405 Face 6146 1210 2805 3033 Face 6147 717 3034 480 Face 6148 717 3106 3034 Face 6149 772 3035 1967 Face 6150 772 4282 3035 Face 6151 238 3036 1384 Face 6152 238 2984 3036 Face 6153 3729 3037 617 Face 6154 167 1813 3037 Face 6155 2991 3038 4053 Face 6156 2991 4443 3038 Face 6157 395 3039 2026 Face 6158 395 871 3039 Face 6159 914 3040 521 Face 6160 3446 1803 3040 Face 6161 973 3041 2728 Face 6162 973 246 3041 Face 6163 3971 4387 4412 Face 6164 1281 3351 4387 Face 6165 4867 3043 2192 Face 6166 3970 4855 3043 Face 6167 2501 3044 2155 Face 6168 2501 2664 3044 Face 6169 1699 3045 1917 Face 6170 1699 3041 3045 Face 6171 451 3046 2817 Face 6172 451 1801 3046 Face 6173 1289 3047 1993 Face 6174 1289 3375 3047 Face 6175 2152 3048 2483 Face 6176 4561 916 3048 Face 6177 1155 3049 1784 Face 6178 1155 4608 3049 Face 6179 1784 3050 3538 Face 6180 1784 3049 3050 Face 6181 346 3051 2484 Face 6182 346 2841 3051 Face 6183 2004 3052 1481 Face 6184 2004 1172 3052 Face 6185 689 3053 508 Face 6186 689 1501 3053 Face 6187 1042 3054 67 Face 6188 1042 356 3054 Face 6189 1659 3055 1500 Face 6190 1659 2105 3055 Face 6191 311 3056 411 Face 6192 311 1708 3056 Face 6193 1805 3057 2730 Face 6194 1805 952 3057 Face 6195 1805 3058 2514 Face 6196 1805 2730 3058 Face 6197 1353 3059 3632 Face 6198 1353 261 3059 Face 6199 827 3060 2114 Face 6200 827 207 3060 Face 6201 2572 3061 2858 Face 6202 2572 3219 3061 Face 6203 1632 3062 902 Face 6204 1632 2536 3062 Face 6205 3939 3063 2996 Face 6206 3427 4724 3063 Face 6207 3066 3064 2637 Face 6208 3065 2993 4088 Face 6209 1257 3065 3064 Face 6210 1257 3028 3065 Face 6211 1257 3066 4137 Face 6212 1257 3064 3066 Face 6213 1646 3067 1945 Face 6214 1646 1788 3067 Face 6215 3069 3068 286 Face 6216 1267 2310 3068 Face 6217 1267 3069 3329 Face 6218 1267 3068 3069 Face 6219 447 3070 2165 Face 6220 447 1355 3070 Face 6221 3072 3071 757 Face 6222 2074 2575 3071 Face 6223 3861 3072 3563 Face 6224 3862 3071 3072 Face 6225 934 3073 2234 Face 6226 934 4132 3073 Face 6227 4472 3074 3681 Face 6228 4472 4717 3074 Face 6229 239 3075 4923 Face 6230 239 1413 3075 Face 6231 209 3076 2360 Face 6232 209 1555 3076 Face 6233 623 3077 1279 Face 6234 623 2303 3077 Face 6235 1086 4643 3241 Face 6236 4270 1631 3078 Face 6237 1383 3079 1524 Face 6238 1383 2011 3079 Face 6239 185 3080 2771 Face 6240 185 2770 3080 Face 6241 4901 3081 2019 Face 6242 1580 1883 3081 Face 6243 66 3082 1545 Face 6244 4386 2647 3082 Face 6245 1511 3083 314 Face 6246 4438 1329 3084 Face 6247 4750 3084 1329 Face 6248 3083 1511 3084 Face 6249 1944 3085 1177 Face 6250 1944 1642 3085 Face 6251 3085 3086 1177 Face 6252 3085 1642 3086 Face 6253 684 3087 1539 Face 6254 684 1877 3087 Face 6255 900 3088 2201 Face 6256 900 4719 3088 Face 6257 1374 3089 1562 Face 6258 1374 2300 3089 Face 6259 1602 3090 2266 Face 6260 1602 2287 3090 Face 6261 1602 3091 535 Face 6262 1602 4236 3091 Face 6263 511 3092 4536 Face 6264 511 2468 3092 Face 6265 1531 3093 2550 Face 6266 1531 2887 3093 Face 6267 3569 3094 2006 Face 6268 1614 4574 3094 Face 6269 1799 3095 943 Face 6270 1799 1196 3095 Face 6271 1082 3096 1653 Face 6272 1082 593 3096 Face 6273 4355 3097 3236 Face 6274 4354 1760 3097 Face 6275 1119 3098 299 Face 6276 4355 3236 3098 Face 6277 335 4943 2256 Face 6278 335 1212 4943 Face 6279 909 3100 1827 Face 6280 909 2599 3100 Face 6281 1322 3101 1057 Face 6282 1322 817 3101 Face 6283 4346 3102 2541 Face 6284 525 98 3102 Face 6285 525 3103 977 Face 6286 4857 3686 3103 Face 6287 4806 3104 2050 Face 6288 4806 3105 3104 Face 6289 1218 3105 2063 Face 6290 1218 3104 3105 Face 6291 1627 3106 826 Face 6292 1627 3034 3106 Face 6293 381 3107 2353 Face 6294 381 3616 3527 Face 6295 982 3108 2664 Face 6296 982 4881 3108 Face 6297 832 3109 157 Face 6298 832 4175 3109 Face 6299 270 3110 992 Face 6300 270 1536 4146 Face 6301 2342 3111 3734 Face 6302 2342 1126 3111 Face 6303 179 4411 4104 Face 6304 179 347 4411 Face 6305 892 3113 1637 Face 6306 892 3008 3113 Face 6307 3115 3114 54 Face 6308 127 140 3114 Face 6309 127 3115 786 Face 6310 127 3114 3115 Face 6311 1462 3116 4955 Face 6312 1462 4904 3116 Face 6313 4800 4261 1130 Face 6314 1270 1099 3117 Face 6315 1456 3118 4700 Face 6316 1456 4138 3118 Face 6317 627 3119 2030 Face 6318 627 1212 3119 Face 6319 2208 3121 2564 Face 6320 2208 3038 3120 Face 6321 3120 3121 2208 Face 6322 3120 1969 3121 Face 6323 1094 3122 2773 Face 6324 1094 2593 3122 Face 6325 3745 3123 1919 Face 6326 4627 1048 3123 Face 6327 1479 3124 870 Face 6328 1479 2437 3124 Face 6329 2115 3125 463 Face 6330 4765 4169 3125 Face 6331 687 3126 133 Face 6332 687 1521 3126 Face 6333 2365 3127 2490 Face 6334 2365 645 4597 Face 6335 3256 3128 4059 Face 6336 3257 2369 3128 Face 6337 313 3129 1584 Face 6338 313 217 3129 Face 6339 1455 3130 3998 Face 6340 3131 3184 3130 Face 6341 1455 3131 3130 Face 6342 1455 1293 3131 Face 6343 3618 3132 834 Face 6344 1783 535 3132 Face 6345 1227 3133 2403 Face 6346 1227 2748 3133 Face 6347 1170 3134 3723 Face 6348 1170 4798 3134 Face 6349 2668 3135 1498 Face 6350 2668 693 3135 Face 6351 2789 3136 2901 Face 6352 2789 1756 3136 Face 6353 3209 3137 1712 Face 6354 1091 2412 3137 Face 6355 1091 3138 4938 Face 6356 3209 2195 3138 Face 6357 656 3139 3466 Face 6358 656 2938 3139 Face 6359 639 3140 2806 Face 6360 639 1311 3140 Face 6361 969 3141 2357 Face 6362 969 2705 3141 Face 6363 1651 3142 2310 Face 6364 3143 2049 3142 Face 6365 1651 3143 3142 Face 6366 1651 1956 3143 Face 6367 2275 3144 2301 Face 6368 2275 4234 3144 Face 6369 483 3145 3255 Face 6370 483 3015 3145 Face 6371 2696 3146 1395 Face 6372 4410 1538 3146 Face 6373 1123 3147 4842 Face 6374 1123 1574 3147 Face 6375 431 3148 1439 Face 6376 431 2815 3148 Face 6377 846 3149 2834 Face 6378 846 3600 3149 Face 6379 1038 3150 3791 Face 6380 1038 761 3150 Face 6381 702 3151 1061 Face 6382 702 4162 3151 Face 6383 581 3152 2549 Face 6384 4023 1180 3152 Face 6385 2047 3153 4231 Face 6386 4075 985 3153 Face 6387 4588 3154 1429 Face 6388 211 469 3154 Face 6389 3156 3155 3470 Face 6390 3156 4470 3155 Face 6391 3157 3156 3470 Face 6392 3157 1752 3156 Face 6393 901 3157 3470 Face 6394 901 3855 3157 Face 6395 328 3158 4743 Face 6396 328 433 3158 Face 6397 1086 3159 3078 Face 6398 1086 1162 3159 Face 6399 1372 4703 2067 Face 6400 1372 3766 3160 Face 6401 1384 3161 238 Face 6402 1384 2758 3161 Face 6403 1234 3162 964 Face 6404 1234 412 3162 Face 6405 2923 3163 1375 Face 6406 2923 4342 3163 Face 6407 293 3164 1117 Face 6408 3682 2129 3164 Face 6409 2374 3165 1043 Face 6410 2374 563 3165 Face 6411 3351 3166 1089 Face 6412 3351 1281 3166 Face 6413 902 3167 1129 Face 6414 902 3062 3167 Face 6415 1779 3169 1160 Face 6416 1779 2499 3169 Face 6417 3168 3169 2499 Face 6418 3168 3308 3169 Face 6419 4196 3170 1895 Face 6420 4196 1938 3170 Face 6421 555 3171 2165 Face 6422 555 1024 3171 Face 6423 858 4377 1707 Face 6424 4010 2188 3172 Face 6425 1286 3173 2093 Face 6426 1286 3717 3173 Face 6427 840 3508 4817 Face 6428 840 3195 3174 Face 6429 940 3175 4163 Face 6430 940 1850 3175 Face 6431 1048 3176 1438 Face 6432 1048 692 3176 Face 6433 2161 3177 2213 Face 6434 2161 3918 3177 Face 6435 1183 3178 1502 Face 6436 1183 1431 3178 Face 6437 473 3179 1520 Face 6438 473 2153 3179 Face 6439 446 3180 3418 Face 6440 446 4408 3180 Face 6441 728 3181 416 Face 6442 728 212 3181 Face 6443 1079 3182 1480 Face 6444 1079 1702 3182 Face 6445 4917 3183 2923 Face 6446 392 4349 3183 Face 6447 759 3184 3131 Face 6448 3185 2147 3847 Face 6449 759 3185 3184 Face 6450 759 2146 3185 Face 6451 355 3187 3042 Face 6452 3483 3090 3187 Face 6453 4413 3187 3090 Face 6454 4412 3042 3187 Face 6455 1558 3188 2380 Face 6456 1558 1846 3188 Face 6457 2762 3189 2884 Face 6458 2762 2837 3189 Face 6459 774 3190 1454 Face 6460 774 247 3190 Face 6461 1197 3191 3364 Face 6462 1197 2909 3191 Face 6463 891 3192 415 Face 6464 891 4612 3192 Face 6465 821 3193 2796 Face 6466 821 2008 3193 Face 6467 3195 4080 2852 Face 6468 3195 840 3194 Face 6469 745 3195 2852 Face 6470 745 3174 3195 Face 6471 1326 3196 1327 Face 6472 1326 1245 3196 Face 6473 1543 3198 950 Face 6474 1543 4333 3198 Face 6475 3197 3198 3381 Face 6476 3197 950 3198 Face 6477 1152 3199 3390 Face 6478 1152 2090 3199 Face 6479 734 3200 2919 Face 6480 734 1255 3200 Face 6481 1437 3201 2729 Face 6482 4137 3066 3201 Face 6483 1253 3736 1446 Face 6484 1253 3107 3736 Face 6485 1291 3203 2209 Face 6486 1291 1912 3203 Face 6487 1092 3204 174 Face 6488 1092 1971 3204 Face 6489 806 3205 4705 Face 6490 4838 1902 3205 Face 6491 2432 3206 3588 Face 6492 2432 1073 3206 Face 6493 4264 3207 1341 Face 6494 4264 2178 3207 Face 6495 4239 3208 2601 Face 6496 4239 204 3208 Face 6497 1091 3209 3138 Face 6498 1091 3137 3209 Face 6499 1237 3210 2791 Face 6500 1237 1236 3210 Face 6501 1316 3211 2323 Face 6502 4466 3193 3211 Face 6503 2085 4428 3110 Face 6504 2085 2086 3212 Face 6505 1648 3213 1750 Face 6506 1648 2073 3213 Face 6507 212 3214 2426 Face 6508 212 728 3214 Face 6509 1960 3215 2517 Face 6510 4602 2732 3215 Face 6511 536 3216 4007 Face 6512 536 2731 3216 Face 6513 474 4903 2314 Face 6514 474 2233 4903 Face 6515 2191 3218 691 Face 6516 2191 1930 3218 Face 6517 3815 3219 1369 Face 6518 1547 3061 3219 Face 6519 1831 3220 3378 Face 6520 1831 2757 3220 Face 6521 2058 3221 2069 Face 6522 3222 2886 3221 Face 6523 2058 3222 3221 Face 6524 2058 3753 3222 Face 6525 55 3223 3330 Face 6526 55 114 3223 Face 6527 1030 3224 2296 Face 6528 1030 1032 3224 Face 6529 633 3225 1352 Face 6530 633 2819 3225 Face 6531 1550 3226 3699 Face 6532 1550 1006 3226 Face 6533 339 3227 4309 Face 6534 339 3613 3227 Face 6535 565 3228 633 Face 6536 565 2338 3228 Face 6537 3801 3420 1981 Face 6538 1492 1600 3229 Face 6539 2112 3230 1616 Face 6540 2112 2113 3230 Face 6541 607 3231 2744 Face 6542 607 2100 3231 Face 6543 1249 3232 2028 Face 6544 1249 523 3232 Face 6545 327 3233 1446 Face 6546 327 4939 3233 Face 6547 1604 3235 1884 Face 6548 4072 2555 3235 Face 6549 3234 3235 2555 Face 6550 3234 1884 3235 Face 6551 3931 3236 3097 Face 6552 3931 3846 3236 Face 6553 3480 4744 2839 Face 6554 962 1858 3237 Face 6555 1907 3238 2783 Face 6556 1907 2520 3238 Face 6557 2604 3239 205 Face 6558 2604 750 3239 Face 6559 2880 3240 427 Face 6560 2880 314 3240 Face 6561 1870 3241 2612 Face 6562 1870 1086 3241 Face 6563 1209 3242 1364 Face 6564 1209 2680 3242 Face 6565 1610 3243 2786 Face 6566 4558 1381 3243 Face 6567 933 3244 1112 Face 6568 933 2573 3244 Face 6569 1050 3245 1664 Face 6570 3246 4295 3245 Face 6571 1050 3246 3245 Face 6572 1050 1910 3246 Face 6573 1435 3247 1114 Face 6574 1435 2729 3247 Face 6575 3249 3248 2979 Face 6576 480 2366 4909 Face 6577 480 3249 3780 Face 6578 480 4909 3249 Face 6579 1586 3981 2816 Face 6580 1586 2110 3981 Face 6581 1663 3251 4107 Face 6582 1663 2309 3251 Face 6583 1164 3252 1163 Face 6584 1164 1748 3252 Face 6585 1164 3253 253 Face 6586 1164 1770 3253 Face 6587 1269 3254 1227 Face 6588 1269 2776 3254 Face 6589 249 3255 3145 Face 6590 249 3012 3255 Face 6591 1390 3256 2846 Face 6592 4289 3128 3256 Face 6593 4289 3257 3128 Face 6594 4289 896 3257 Face 6595 1066 3258 2852 Face 6596 1066 1889 3258 Face 6597 1856 3259 659 Face 6598 1856 4584 3259 Face 6599 1080 3260 3556 Face 6600 1080 1480 3260 Face 6601 3262 3261 4504 Face 6602 615 2261 3261 Face 6603 615 3262 1427 Face 6604 615 3261 3262 Face 6605 360 3263 2908 Face 6606 4640 2106 3263 Face 6607 1186 3264 2240 Face 6608 1186 230 3264 Face 6609 832 3265 4175 Face 6610 832 1681 3265 Face 6611 2292 3266 3267 Face 6612 2292 957 3266 Face 6613 1318 3267 3266 Face 6614 1318 1108 3267 Face 6615 1329 3269 4750 Face 6616 1329 2215 3268 Face 6617 3268 3269 1329 Face 6618 3268 3274 3269 Face 6619 4953 3270 264 Face 6620 632 3680 3270 Face 6621 1478 3271 1410 Face 6622 1478 4710 3271 Face 6623 341 3272 2523 Face 6624 341 2430 4827 Face 6625 487 3273 1698 Face 6626 3809 1159 3273 Face 6627 3580 3274 169 Face 6628 3083 3084 3274 Face 6629 2523 3275 643 Face 6630 2523 3272 3275 Face 6631 4039 3277 243 Face 6632 4039 2706 3277 Face 6633 3276 3277 4685 Face 6634 3276 3843 3277 Face 6635 672 3278 2276 Face 6636 672 673 3278 Face 6637 2549 3279 1363 Face 6638 2549 597 3279 Face 6639 596 3280 3279 Face 6640 596 2673 3280 Face 6641 1583 3281 2351 Face 6642 1583 4278 3281 Face 6643 1244 3282 408 Face 6644 3985 2054 3282 Face 6645 349 3283 4181 Face 6646 349 197 3283 Face 6647 3999 3284 2063 Face 6648 2305 2036 3284 Face 6649 4047 3285 431 Face 6650 171 1572 3285 Face 6651 4376 3286 2057 Face 6652 561 3798 3286 Face 6653 2106 3287 123 Face 6654 2106 4640 3287 Face 6655 1292 3288 3765 Face 6656 1292 4523 3288 Face 6657 1507 3289 2853 Face 6658 1507 2284 3289 Face 6659 1835 3290 500 Face 6660 1835 4687 3290 Face 6661 427 3291 1765 Face 6662 427 3240 3291 Face 6663 4212 3292 3854 Face 6664 3293 2394 4775 Face 6665 362 3293 3292 Face 6666 3294 3700 3293 Face 6667 362 3294 3293 Face 6668 362 2784 3294 Face 6669 255 3295 1861 Face 6670 4359 1397 3295 Face 6671 2168 3296 3402 Face 6672 4187 492 3296 Face 6673 1586 3297 4014 Face 6674 1586 3112 3297 Face 6675 134 3298 3299 Face 6676 134 49 3298 Face 6677 26 3299 3298 Face 6678 26 3300 3299 Face 6679 49 3300 3298 Face 6680 49 99 3300 Face 6681 113 3301 99 Face 6682 113 134 3301 Face 6683 376 3302 1288 Face 6684 376 1538 3302 Face 6685 2089 3303 2101 Face 6686 2089 1396 3303 Face 6687 1849 3304 524 Face 6688 4952 2698 3304 Face 6689 2500 3305 3136 Face 6690 2500 744 3305 Face 6691 677 3306 1927 Face 6692 677 4665 3306 Face 6693 1160 3307 532 Face 6694 1160 3271 3307 Face 6695 1160 3308 3271 Face 6696 1160 3169 3308 Face 6697 1157 3309 4825 Face 6698 4250 2655 3309 Face 6699 1904 3310 292 Face 6700 1904 849 3310 Face 6701 1099 3311 3117 Face 6702 1099 3282 3311 Face 6703 3313 3312 3695 Face 6704 310 3398 3312 Face 6705 310 3313 1728 Face 6706 310 3312 3313 Face 6707 1337 3314 648 Face 6708 1337 2758 3314 Face 6709 3316 3315 1621 Face 6710 1771 3751 3315 Face 6711 4350 3316 2968 Face 6712 1771 3315 3316 Face 6713 1211 3317 3037 Face 6714 1211 3033 3317 Face 6715 2279 3318 4686 Face 6716 2279 397 3318 Face 6717 3320 4774 1059 Face 6718 1323 4150 4774 Face 6719 3321 3320 1890 Face 6720 1323 4774 3320 Face 6721 4958 3321 2290 Face 6722 1323 3320 3321 Face 6723 4251 3322 4614 Face 6724 503 1197 3322 Face 6725 203 3323 1568 Face 6726 203 269 3323 Face 6727 919 3324 379 Face 6728 919 1449 3324 Face 6729 838 3325 4770 Face 6730 838 411 3325 Face 6731 4218 3326 2650 Face 6732 495 1757 3326 Face 6733 3326 3327 2650 Face 6734 3326 2035 3327 Face 6735 820 3328 3461 Face 6736 820 1948 3328 Face 6737 2011 3329 3748 Face 6738 2011 2061 3329 Face 6739 1726 3330 2211 Face 6740 1726 55 3330 Face 6741 1024 3331 3171 Face 6742 1024 529 3331 Face 6743 4529 3332 4343 Face 6744 4529 4075 3332 Face 6745 162 3333 1465 Face 6746 162 1761 3333 Face 6747 4476 3334 4762 Face 6748 1869 2618 3334 Face 6749 521 3335 793 Face 6750 521 3730 3335 Face 6751 741 3336 1931 Face 6752 741 2361 3336 Face 6753 4258 3564 2588 Face 6754 4258 926 3337 Face 6755 4208 3338 2767 Face 6756 3504 2121 3338 Face 6757 578 3339 2422 Face 6758 4911 2646 4692 Face 6759 1601 3340 3983 Face 6760 1601 1551 3340 Face 6761 1015 3341 2189 Face 6762 1015 247 3341 Face 6763 217 3342 1074 Face 6764 217 849 3342 Face 6765 2571 4490 2570 Face 6766 2571 3379 4490 Face 6767 4495 3344 3435 Face 6768 1169 2119 3344 Face 6769 4322 3345 2060 Face 6770 874 1899 3345 Face 6771 773 4559 650 Face 6772 773 2586 3346 Face 6773 197 3347 2401 Face 6774 197 349 3347 Face 6775 1488 3348 3935 Face 6776 1488 4067 3348 Face 6777 409 3349 414 Face 6778 409 2870 3349 Face 6779 398 3350 3411 Face 6780 398 1730 3350 Face 6781 864 3351 1089 Face 6782 864 3042 3351 Face 6783 81 3352 3802 Face 6784 81 2658 3352 Face 6785 557 3353 2750 Face 6786 3354 4285 3353 Face 6787 557 3354 3353 Face 6788 557 3806 3354 Face 6789 859 3355 1724 Face 6790 859 591 3355 Face 6791 3516 3356 3268 Face 6792 169 3274 3356 Face 6793 1204 3357 2777 Face 6794 1204 4519 3357 Face 6795 1159 3358 2821 Face 6796 1159 2440 3358 Face 6797 1894 4194 4195 Face 6798 1894 1954 3359 Face 6799 322 3360 1354 Face 6800 3632 3059 3360 Face 6801 2110 3361 3774 Face 6802 2110 2078 3361 Face 6803 1332 3362 1991 Face 6804 1332 2404 3362 Face 6805 2590 3363 1193 Face 6806 2590 280 3363 Face 6807 1100 3364 479 Face 6808 1100 1197 3364 Face 6809 2035 3365 1955 Face 6810 2035 3326 3365 Face 6811 4656 3366 2971 Face 6812 1329 4438 3366 Face 6813 3368 3367 3056 Face 6814 4118 1246 3367 Face 6815 4119 4851 3644 Face 6816 4118 3367 3368 Face 6817 2603 3369 4102 Face 6818 2603 1798 3369 Face 6819 1864 3370 443 Face 6820 1864 4132 3370 Face 6821 1778 3371 2584 Face 6822 1778 2023 3371 Face 6823 1778 3372 2023 Face 6824 1778 1878 3372 Face 6825 598 3373 2614 Face 6826 598 2157 3373 Face 6827 186 3374 1179 Face 6828 186 2980 3374 Face 6829 1541 3375 2062 Face 6830 3991 3047 3375 Face 6831 968 3376 2237 Face 6832 968 1008 3376 Face 6833 1228 3377 4078 Face 6834 1228 2766 3377 Face 6835 1684 3378 1014 Face 6836 1684 2250 3378 Face 6837 1248 4267 4804 Face 6838 1248 3343 4267 Face 6839 3381 4006 1724 Face 6840 3381 3198 4006 Face 6841 4300 3381 1724 Face 6842 4300 3197 3381 Face 6843 1083 3382 1701 Face 6844 4054 2239 3382 Face 6845 1238 3383 1239 Face 6846 1238 3851 3383 Face 6847 1996 3384 1457 Face 6848 1996 4308 3384 Face 6849 1255 3385 3200 Face 6850 1255 2102 3385 Face 6851 2243 3386 1225 Face 6852 2243 2533 3386 Face 6853 1457 3387 3635 Face 6854 1457 3384 3387 Face 6855 391 3388 2658 Face 6856 391 1626 3388 Face 6857 139 3389 1849 Face 6858 139 1475 3389 Face 6859 4209 3390 3199 Face 6860 826 3106 3390 Face 6861 1621 3391 3316 Face 6862 1621 4670 3391 Face 6863 2524 3392 2602 Face 6864 2524 2267 3392 Face 6865 652 3393 1962 Face 6866 652 2563 3393 Face 6867 4255 3394 1871 Face 6868 178 1270 3394 Face 6869 505 4624 196 Face 6870 505 2627 4624 Face 6871 4651 3396 2218 Face 6872 507 3380 3396 Face 6873 845 3397 3516 Face 6874 845 4425 3397 Face 6875 2263 3398 310 Face 6876 2263 1900 3398 Face 6877 1049 3399 1742 Face 6878 4327 1780 3399 Face 6879 2272 3400 403 Face 6880 2272 714 3400 Face 6881 4499 3401 338 Face 6882 3402 3296 3401 Face 6883 1891 3402 3401 Face 6884 1891 2168 3402 Face 6885 2410 3403 644 Face 6886 2410 1486 3403 Face 6887 569 3404 2387 Face 6888 569 2617 3404 Face 6889 4830 3405 3177 Face 6890 1113 2247 3405 Face 6891 159 3406 873 Face 6892 159 1236 3406 Face 6893 1226 3407 162 Face 6894 1226 921 3407 Face 6895 1395 3408 779 Face 6896 1395 344 3408 Face 6897 185 3409 3155 Face 6898 185 2771 3409 Face 6899 624 3410 1953 Face 6900 624 694 3410 Face 6901 1002 3411 1987 Face 6902 1002 1271 3411 Face 6903 2387 3412 569 Face 6904 2387 1915 3412 Face 6905 1006 3413 3226 Face 6906 1006 1474 3413 Face 6907 719 3414 2722 Face 6908 719 4684 3414 Face 6909 459 3415 2634 Face 6910 4205 2522 4905 Face 6911 1380 3416 4384 Face 6912 1380 1068 3416 Face 6913 1406 3417 1911 Face 6914 1406 1912 3417 Face 6915 1738 3418 3180 Face 6916 1738 2693 3418 Face 6917 336 3419 2522 Face 6918 336 2712 3419 Face 6919 3229 3420 1492 Face 6920 3229 378 3420 Face 6921 1365 3421 268 Face 6922 1365 3531 3421 Face 6923 3423 3422 2583 Face 6924 3423 3771 3422 Face 6925 3424 3423 2583 Face 6926 491 258 3423 Face 6927 491 3424 2399 Face 6928 491 3423 3424 Face 6929 2484 3425 4415 Face 6930 2484 1578 3425 Face 6931 3926 3426 4018 Face 6932 1336 1467 3426 Face 6933 347 3427 3063 Face 6934 347 179 3427 Face 6935 748 3428 1424 Face 6936 748 1952 3428 Face 6937 4024 3429 4274 Face 6938 519 2334 3429 Face 6939 1432 3430 177 Face 6940 1432 2079 3430 Face 6941 836 3431 343 Face 6942 836 2822 3431 Face 6943 1681 3432 2197 Face 6944 1681 3581 3432 Face 6945 1553 3433 2634 Face 6946 1553 1855 3433 Face 6947 1125 4154 1114 Face 6948 1125 1411 4154 Face 6949 2434 3435 655 Face 6950 2434 373 3435 Face 6951 905 3436 2277 Face 6952 905 2485 3436 Face 6953 1483 3437 911 Face 6954 1483 2416 3437 Face 6955 653 3438 1611 Face 6956 4475 1962 3438 Face 6957 2747 3439 4932 Face 6958 2747 810 3439 Face 6959 3536 3440 38 Face 6960 3536 126 3440 Face 6961 4517 3441 690 Face 6962 3610 1930 3441 Face 6963 955 3442 1192 Face 6964 955 1750 3442 Face 6965 4436 3443 1992 Face 6966 1293 2526 3443 Face 6967 1487 3444 2001 Face 6968 1487 1203 3444 Face 6969 62 3445 2349 Face 6970 62 1284 3445 Face 6971 914 3446 3040 Face 6972 914 2719 3446 Face 6973 2533 3447 1331 Face 6974 2533 2243 3447 Face 6975 3557 3448 613 Face 6976 3557 1594 3448 Face 6977 1239 3449 1238 Face 6978 1239 2474 3449 Face 6979 1542 3450 3162 Face 6980 1542 872 3450 Face 6981 1187 3451 158 Face 6982 1187 1772 3451 Face 6983 1424 3452 4649 Face 6984 1424 3428 3452 Face 6985 1394 3453 2151 Face 6986 1394 2523 3453 Face 6987 1317 3454 1340 Face 6988 1317 1744 3454 Face 6989 1156 3455 4678 Face 6990 1156 418 3455 Face 6991 4761 3456 3165 Face 6992 4761 2587 3456 Face 6993 3957 3457 1546 Face 6994 3958 3374 3457 Face 6995 1134 3458 2678 Face 6996 1134 2251 3458 Face 6997 239 3459 2289 Face 6998 239 4022 4188 Face 6999 1217 3460 3810 Face 7000 1217 2614 3460 Face 7001 1195 3461 3328 Face 7002 1195 1194 3461 Face 7003 993 3462 1670 Face 7004 993 4210 3462 Face 7005 1250 3463 3029 Face 7006 1250 1666 3463 Face 7007 1038 3464 761 Face 7008 1038 2010 3464 Face 7009 3513 3465 3702 Face 7010 2125 2136 3465 Face 7011 3467 3466 3139 Face 7012 3467 3220 3466 Face 7013 2091 3467 3139 Face 7014 2091 1014 3467 Face 7015 1037 3468 215 Face 7016 1037 4319 3468 Face 7017 273 3469 1452 Face 7018 273 2433 3469 Face 7019 1939 3470 3409 Face 7020 1939 901 3470 Face 7021 1939 3471 901 Face 7022 4342 2923 3471 Face 7023 665 3472 713 Face 7024 665 682 3472 Face 7025 665 3473 682 Face 7026 665 1254 3473 Face 7027 345 3474 2271 Face 7028 345 737 3474 Face 7029 4637 3475 604 Face 7030 4637 1624 3476 Face 7031 3475 3476 1737 Face 7032 3475 4637 3476 Face 7033 2340 3477 2284 Face 7034 2340 915 3477 Face 7035 1540 3478 2172 Face 7036 1540 161 3478 Face 7037 3812 3479 2681 Face 7038 461 4211 3479 Face 7039 962 3480 3190 Face 7040 962 3237 3480 Face 7041 1675 3481 1676 Face 7042 1675 2829 3481 Face 7043 1708 3482 485 Face 7044 1708 4391 3482 Face 7045 355 3483 3187 Face 7046 4748 4086 3483 Face 7047 438 3484 2899 Face 7048 438 2570 3484 Face 7049 2313 3485 2666 Face 7050 2313 2806 3485 Face 7051 791 3486 3035 Face 7052 791 3151 3486 Face 7053 4843 3487 4945 Face 7054 4842 2521 3487 Face 7055 1692 3488 2475 Face 7056 1692 4256 3488 Face 7057 1339 3489 1221 Face 7058 1339 401 3489 Face 7059 2525 3490 2804 Face 7060 4834 1779 3490 Face 7061 4184 3491 1624 Face 7062 1307 1527 3491 Face 7063 1668 3492 1837 Face 7064 1668 194 3492 Face 7065 584 3493 2823 Face 7066 584 889 3493 Face 7067 1972 3494 2431 Face 7068 1972 1510 3494 Face 7069 372 3495 4509 Face 7070 4548 4008 3495 Face 7071 4399 3496 2793 Face 7072 508 1706 3496 Face 7073 454 3497 1895 Face 7074 454 510 3497 Face 7075 1077 3498 3518 Face 7076 1077 4763 3498 Face 7077 2041 3499 2260 Face 7078 2041 512 3499 Face 7079 1087 3500 258 Face 7080 1087 2447 3500 Face 7081 1727 3501 2659 Face 7082 1727 2801 3501 Face 7083 1897 3502 1896 Face 7084 1897 1894 3502 Face 7085 343 3503 3018 Face 7086 343 3431 3503 Face 7087 4208 3504 3338 Face 7088 432 3522 3504 Face 7089 3683 3505 3355 Face 7090 3683 1005 3505 Face 7091 727 3506 1188 Face 7092 727 2904 3506 Face 7093 1377 3507 906 Face 7094 4577 1348 3507 Face 7095 3174 3508 840 Face 7096 3174 1760 3508 Face 7097 1254 3509 3473 Face 7098 1254 4759 3509 Face 7099 1417 3510 3639 Face 7100 4906 3042 3510 Face 7101 1417 3511 3510 Face 7102 4657 4526 3511 Face 7103 183 3512 2828 Face 7104 183 119 3512 Face 7105 2125 3513 3661 Face 7106 2125 3465 3513 Face 7107 1793 3514 3775 Face 7108 1793 742 3514 Face 7109 1606 3515 4117 Face 7110 1606 1636 3515 Face 7111 169 3516 346 Face 7112 169 3356 3516 Face 7113 450 3517 4057 Face 7114 450 3984 3517 Face 7115 228 3518 3634 Face 7116 228 3726 3518 Face 7117 3520 3519 2160 Face 7118 4831 2242 3519 Face 7119 4831 3520 1387 Face 7120 4831 3519 3520 Face 7121 786 3521 4112 Face 7122 4503 4843 3521 Face 7123 4928 4060 4277 Face 7124 4928 867 4060 Face 7125 2505 3523 388 Face 7126 2505 4488 3523 Face 7127 2155 3524 2661 Face 7128 2155 433 4648 Face 7129 987 3525 2989 Face 7130 987 2561 3525 Face 7131 4881 3526 3108 Face 7132 2494 4918 3526 Face 7133 3107 3527 3736 Face 7134 3107 381 3527 Face 7135 366 3528 2325 Face 7136 366 1509 3528 Face 7137 749 3529 629 Face 7138 749 297 3529 Face 7139 4707 3530 4199 Face 7140 4707 2070 3530 Face 7141 384 3531 1365 Face 7142 384 4757 3531 Face 7143 943 3532 1747 Face 7144 943 1948 3532 Face 7145 1408 3533 775 Face 7146 1408 940 3533 Face 7147 928 3534 1386 Face 7148 928 4580 3534 Face 7149 2541 3535 2952 Face 7150 2541 1808 3535 Face 7151 87 3536 2774 Face 7152 87 74 3536 Face 7153 863 3537 2300 Face 7154 863 2820 3537 Face 7155 638 3538 3050 Face 7156 638 1132 3538 Face 7157 1375 3539 4148 Face 7158 1375 3163 3539 Face 7159 1074 3540 2332 Face 7160 1074 4580 4002 Face 7161 2227 3541 4690 Face 7162 2227 1639 3541 Face 7163 1172 3542 3052 Face 7164 1172 2420 3542 Face 7165 1172 3543 1500 Face 7166 1172 2004 3543 Face 7167 903 3544 1808 Face 7168 903 4869 3544 Face 7169 2899 3545 4056 Face 7170 2899 3484 3545 Face 7171 1116 3546 2130 Face 7172 1116 829 3546 Face 7173 1978 3547 2631 Face 7174 1978 606 3547 Face 7175 870 3548 2600 Face 7176 870 3124 4167 Face 7177 1900 3549 3398 Face 7178 3742 716 3549 Face 7179 1765 3550 2545 Face 7180 3980 2514 3550 Face 7181 890 3551 2269 Face 7182 890 893 3551 Face 7183 2594 3552 2955 Face 7184 2594 1965 3552 Face 7185 83 3553 2509 Face 7186 83 1580 3553 Face 7187 2637 4363 2927 Face 7188 2637 3064 3554 Face 7189 181 3555 1344 Face 7190 181 4098 3555 Face 7191 2835 3556 3260 Face 7192 2835 1263 3556 Face 7193 746 3557 4271 Face 7194 746 1594 3557 Face 7195 746 3558 3643 Face 7196 746 2982 3558 Face 7197 603 3559 1115 Face 7198 603 4486 3559 Face 7199 3722 3560 3086 Face 7200 3722 3964 3560 Face 7201 564 3561 3059 Face 7202 564 1361 3561 Face 7203 2175 3562 4944 Face 7204 2175 2979 3562 Face 7205 757 3563 3072 Face 7206 4071 126 3563 Face 7207 3337 3564 4258 Face 7208 3337 3952 3564 Face 7209 894 3565 1648 Face 7210 894 2380 3565 Face 7211 1299 3566 2719 Face 7212 3567 4067 3566 Face 7213 1299 3567 3566 Face 7214 1299 3252 3567 Face 7215 1012 3568 3537 Face 7216 1012 389 3568 Face 7217 1614 3569 2608 Face 7218 1614 3094 3569 Face 7219 2046 3570 479 Face 7220 2046 594 3570 Face 7221 158 3571 1187 Face 7222 158 248 3571 Face 7223 4090 3572 686 Face 7224 1412 872 3572 Face 7225 233 3573 2423 Face 7226 233 1132 3573 Face 7227 470 3574 1667 Face 7228 470 2618 3574 Face 7229 1090 3575 2967 Face 7230 3687 4417 3575 Face 7231 4489 3576 4601 Face 7232 4489 3026 3576 Face 7233 688 3577 2231 Face 7234 688 2660 3577 Face 7235 1315 3578 1316 Face 7236 1315 1314 3578 Face 7237 729 3579 4190 Face 7238 729 2259 3579 Face 7239 3083 3580 811 Face 7240 3083 3274 3580 Face 7241 907 3581 1681 Face 7242 907 2417 3581 Face 7243 1401 3582 2787 Face 7244 1401 4124 3582 Face 7245 1853 3583 1205 Face 7246 3634 4931 3583 Face 7247 318 3584 1552 Face 7248 318 1942 3584 Face 7249 971 3585 2976 Face 7250 971 2287 3585 Face 7251 3585 3586 2976 Face 7252 4458 3743 3586 Face 7253 1328 3587 333 Face 7254 1328 3494 3587 Face 7255 602 3588 1588 Face 7256 602 2432 3588 Face 7257 333 3589 4850 Face 7258 333 3587 3589 Face 7259 4537 3590 3011 Face 7260 194 1669 3590 Face 7261 585 3591 1294 Face 7262 585 690 3591 Face 7263 1310 3592 3974 Face 7264 3609 2132 3592 Face 7265 882 3593 519 Face 7266 3624 2062 3593 Face 7267 361 3594 391 Face 7268 361 2764 3594 Face 7269 712 3595 2479 Face 7270 712 1367 3595 Face 7271 4214 3596 689 Face 7272 1142 1730 3596 Face 7273 720 3597 2516 Face 7274 720 1728 3597 Face 7275 3686 3598 2488 Face 7276 965 2402 3598 Face 7277 1497 3599 1496 Face 7278 1497 3990 3599 Face 7279 3927 3600 2392 Face 7280 1552 3149 3600 Face 7281 1176 3601 2161 Face 7282 1176 436 3601 Face 7283 948 3602 4613 Face 7284 948 2729 3602 Face 7285 1208 3603 507 Face 7286 1208 2750 3603 Face 7287 2463 3604 86 Face 7288 2463 1490 3604 Face 7289 2605 3605 2061 Face 7290 2605 1885 3605 Face 7291 1658 3606 3697 Face 7292 1658 4109 3606 Face 7293 2845 3607 755 Face 7294 2845 2435 3607 Face 7295 1194 3608 2238 Face 7296 1194 1195 3608 Face 7297 1310 3609 3592 Face 7298 1310 4772 3609 Face 7299 4425 3610 3441 Face 7300 4425 845 3610 Face 7301 1416 3611 591 Face 7302 3612 4578 3611 Face 7303 1416 3612 3611 Face 7304 1416 1825 3612 Face 7305 510 3613 2214 Face 7306 510 3227 3613 Face 7307 1378 3614 1168 Face 7308 1378 3875 3614 Face 7309 595 3615 1916 Face 7310 595 4452 3615 Face 7311 207 3616 3060 Face 7312 207 1004 3616 Face 7313 2358 3617 2685 Face 7314 2358 2959 3617 Face 7315 1783 3618 4550 Face 7316 1783 3132 3618 Face 7317 501 3619 2700 Face 7318 501 4049 3619 Face 7319 3621 3620 583 Face 7320 956 4468 3620 Face 7321 956 3621 2455 Face 7322 956 3620 3621 Face 7323 3649 3798 561 Face 7324 1036 4592 3622 Face 7325 1190 3623 279 Face 7326 1190 1487 3623 Face 7327 882 3624 3593 Face 7328 882 2163 3624 Face 7329 452 3625 2615 Face 7330 452 2882 3625 Face 7331 814 3626 2464 Face 7332 814 2067 3626 Face 7333 950 3627 54 Face 7334 950 3197 3627 Face 7335 4780 3628 1783 Face 7336 4780 4795 3628 Face 7337 3630 3629 3410 Face 7338 1279 383 3629 Face 7339 1279 3630 623 Face 7340 1279 3629 3630 Face 7341 899 3631 1983 Face 7342 899 2133 3631 Face 7343 322 3632 3360 Face 7344 322 1954 3632 Face 7345 141 3633 74 Face 7346 141 1821 3633 Face 7347 1853 3634 3583 Face 7348 1853 228 3634 Face 7349 3636 3635 3912 Face 7350 3636 3319 3635 Face 7351 1059 3636 2170 Face 7352 1059 3319 3636 Face 7353 444 3637 2547 Face 7354 4257 800 3637 Face 7355 502 3638 2797 Face 7356 502 1952 3638 Face 7357 502 3639 3510 Face 7358 502 2797 3639 Face 7359 502 3640 864 Face 7360 502 3510 3640 Face 7361 617 3641 1335 Face 7362 617 2805 3641 Face 7363 1581 3642 2851 Face 7364 1581 4287 3642 Face 7365 618 3920 4085 Face 7366 618 4041 3920 Face 7367 3645 3644 4851 Face 7368 3645 1130 3644 Face 7369 2622 3645 4851 Face 7370 2622 4048 3645 Face 7371 1233 3646 2437 Face 7372 1233 1081 3646 Face 7373 1486 3647 1425 Face 7374 1486 2410 3647 Face 7375 1283 3648 540 Face 7376 1283 2860 3648 Face 7377 1036 3649 1047 Face 7378 1036 3622 3649 Face 7379 4317 3650 885 Face 7380 500 3290 3650 Face 7381 439 3651 1772 Face 7382 439 3788 3651 Face 7383 4657 4704 4526 Face 7384 1417 2796 3652 Face 7385 4704 3653 2426 Face 7386 3652 2796 3653 Face 7387 2871 3654 2890 Face 7388 2871 818 3654 Face 7389 1259 3655 2388 Face 7390 1259 1834 3655 Face 7391 790 3656 3202 Face 7392 790 2887 3656 Face 7393 1695 3657 3430 Face 7394 1695 1471 3657 Face 7395 448 3658 2324 Face 7396 448 2942 3658 Face 7397 2037 3659 2544 Face 7398 2037 591 3659 Face 7399 4029 3660 1703 Face 7400 4029 2250 3660 Face 7401 1703 3661 3953 Face 7402 1703 3660 3661 Face 7403 3835 3662 4378 Face 7404 1703 3953 4699 Face 7405 3079 3663 1524 Face 7406 3079 3748 3663 Face 7407 267 3664 1215 Face 7408 267 2420 3664 Face 7409 952 3665 2253 Face 7410 952 3901 3665 Face 7411 1554 3666 2815 Face 7412 1554 3714 3666 Face 7413 129 3669 1818 Face 7414 4573 1518 3667 Face 7415 433 3668 3667 Face 7416 433 1009 3668 Face 7417 3667 3669 129 Face 7418 3667 3668 3669 Face 7419 1441 3670 4280 Face 7420 1441 491 3670 Face 7421 3672 3671 2991 Face 7422 3672 3281 3671 Face 7423 2351 3672 280 Face 7424 2351 3281 3672 Face 7425 374 3673 4256 Face 7426 374 2160 3673 Face 7427 995 3674 4198 Face 7428 995 2684 3674 Face 7429 736 3675 1906 Face 7430 736 2997 3675 Face 7431 1912 3676 3417 Face 7432 1912 1291 3676 Face 7433 1539 3677 1178 Face 7434 1539 4359 3677 Face 7435 985 3678 3153 Face 7436 985 2851 3678 Face 7437 1582 4207 2264 Face 7438 4287 1581 4069 Face 7439 839 3680 715 Face 7440 839 267 3680 Face 7441 2334 3681 3429 Face 7442 2334 4732 3681 Face 7443 293 3682 3164 Face 7444 293 313 3682 Face 7445 1887 3683 3355 Face 7446 1887 4768 3683 Face 7447 1887 3684 4768 Face 7448 1887 2892 3684 Face 7449 1410 3685 2874 Face 7450 4076 2043 3685 Face 7451 965 3686 4857 Face 7452 965 3598 3686 Face 7453 4252 3688 3575 Face 7454 4252 166 3688 Face 7455 3687 3688 4143 Face 7456 3687 3575 3688 Face 7457 2172 3689 1540 Face 7458 2172 3004 3689 Face 7459 275 3690 3489 Face 7460 275 1340 3690 Face 7461 566 4924 4652 Face 7462 566 1022 3691 Face 7463 307 3692 2050 Face 7464 307 1950 3692 Face 7465 2854 3693 3094 Face 7466 2854 881 3693 Face 7467 2076 4833 621 Face 7468 2076 170 3694 Face 7469 980 3695 4172 Face 7470 980 3313 3695 Face 7471 1345 3696 1523 Face 7472 1345 2045 3696 Face 7473 297 3697 3606 Face 7474 297 1657 3697 Face 7475 2060 3698 4322 Face 7476 2060 187 3698 Face 7477 1804 3699 3226 Face 7478 1804 2000 3699 Face 7479 2200 3700 3294 Face 7480 4900 4379 3700 Face 7481 4900 3701 3781 Face 7482 2200 3769 3701 Face 7483 4263 3702 2021 Face 7484 2124 3513 3702 Face 7485 1609 3703 2032 Face 7486 1609 4764 3703 Face 7487 1736 3704 1364 Face 7488 1736 708 3704 Face 7489 4285 3705 3353 Face 7490 1447 49 3705 Face 7491 4931 3706 3583 Face 7492 635 4763 3706 Face 7493 1198 3707 2044 Face 7494 1198 4073 3707 Face 7495 2345 3708 4182 Face 7496 2345 3337 3708 Face 7497 1301 3709 3217 Face 7498 4400 876 3709 Face 7499 2390 4742 2741 Face 7500 2390 1436 3710 Face 7501 1548 3711 4734 Face 7502 4870 3232 3711 Face 7503 1734 3712 2897 Face 7504 1734 2770 3712 Face 7505 2526 3713 475 Face 7506 2526 90 3713 Face 7507 4168 4727 1147 Face 7508 276 3666 4727 Face 7509 1280 3715 2147 Face 7510 1280 579 3715 Face 7511 643 3716 2523 Face 7512 643 1147 3716 Face 7513 2769 3717 2270 Face 7514 2769 2491 3717 Face 7515 1350 3718 1998 Face 7516 4515 206 3768 Face 7517 1467 3719 3426 Face 7518 1467 828 3719 Face 7519 619 3720 2586 Face 7520 619 537 3720 Face 7521 778 3721 1538 Face 7522 778 1984 3789 Face 7523 1642 3722 3086 Face 7524 1642 4908 3722 Face 7525 541 3723 3134 Face 7526 541 2742 3723 Face 7527 535 3724 2286 Face 7528 535 3628 3724 Face 7529 2219 3725 1981 Face 7530 4111 3801 3725 Face 7531 754 3726 2436 Face 7532 754 3518 3726 Face 7533 1030 3727 1570 Face 7534 1030 2296 3727 Face 7535 1300 3728 2407 Face 7536 1300 1609 3728 Face 7537 167 3729 2445 Face 7538 167 3037 3729 Face 7539 352 3730 2721 Face 7540 352 559 3730 Face 7541 743 3731 4193 Face 7542 3775 3514 3731 Face 7543 202 3732 1084 Face 7544 202 2369 3732 Face 7545 1387 3733 3027 Face 7546 1387 3520 3733 Face 7547 4407 3734 3111 Face 7548 2231 2232 3734 Face 7549 2381 3735 1243 Face 7550 2381 891 3735 Face 7551 3202 3736 3527 Face 7552 3202 3656 3736 Face 7553 990 3737 3627 Face 7554 990 3115 3737 Face 7555 911 3738 2327 Face 7556 911 3437 3738 Face 7557 646 3739 2425 Face 7558 646 285 3739 Face 7559 947 3740 3352 Face 7560 947 2498 3740 Face 7561 3867 3741 2594 Face 7562 1110 2180 3741 Face 7563 1900 3742 3549 Face 7564 1900 4161 3742 Face 7565 1206 3743 4458 Face 7566 1206 359 3743 Face 7567 1206 3744 2326 Face 7568 1206 4511 3744 Face 7569 692 3745 1924 Face 7570 692 1048 4627 Face 7571 692 3746 3176 Face 7572 692 1924 3746 Face 7573 2423 3747 703 Face 7574 2423 2100 3747 Face 7575 3069 3748 3329 Face 7576 3069 3663 3748 Face 7577 2407 3749 2492 Face 7578 2407 3728 3749 Face 7579 157 3750 2928 Face 7580 157 3109 3750 Face 7581 1031 3751 1344 Face 7582 1031 3315 3751 Face 7583 676 3752 2896 Face 7584 676 667 3752 Face 7585 1479 3753 1056 Face 7586 1479 3222 3753 Face 7587 868 3754 1611 Face 7588 868 2716 3754 Face 7589 1023 3755 3895 Face 7590 1023 3818 3755 Face 7591 1387 3756 2434 Face 7592 1387 3027 3756 Face 7593 3758 3757 3852 Face 7594 3758 3874 3757 Face 7595 706 3758 1865 Face 7596 706 3874 3758 Face 7597 706 3759 2604 Face 7598 706 1865 3759 Face 7599 949 4646 2771 Face 7600 949 3109 4646 Face 7601 1376 3761 1025 Face 7602 1376 3773 3761 Face 7603 2366 3762 4909 Face 7604 2366 4779 3762 Face 7605 1009 3763 1777 Face 7606 1009 2155 3763 Face 7607 857 3764 189 Face 7608 857 3465 3764 Face 7609 2179 3765 2459 Face 7610 2179 2703 3765 Face 7611 1563 3766 1715 Face 7612 1563 1036 3766 Face 7613 4065 3767 2262 Face 7614 1216 1662 3767 Face 7615 3718 3768 1046 Face 7616 3718 1350 3768 Face 7617 2520 3769 3238 Face 7618 2520 2601 3769 Face 7619 429 3770 1514 Face 7620 429 4250 3770 Face 7621 258 3771 3423 Face 7622 258 3500 3771 Face 7623 258 3772 4673 Face 7624 258 1579 3772 Face 7625 1392 3773 1376 Face 7626 1392 1851 3773 Face 7627 1587 3774 3361 Face 7628 1587 3250 3774 Face 7629 743 3775 3731 Face 7630 743 1273 3775 Face 7631 292 3776 2652 Face 7632 292 2893 3777 Face 7633 3776 3777 2893 Face 7634 3776 292 3777 Face 7635 2628 3778 3779 Face 7636 2628 1519 3778 Face 7637 2174 3779 3778 Face 7638 2174 2628 3779 Face 7639 2979 3780 3249 Face 7640 2979 2175 4409 Face 7641 2601 3781 3701 Face 7642 2601 3208 3781 Face 7643 795 3782 2891 Face 7644 795 794 3782 Face 7645 92 3783 2528 Face 7646 92 148 3783 Face 7647 1720 3784 2969 Face 7648 1720 1721 3784 Face 7649 1415 3785 1838 Face 7650 1415 2642 3785 Face 7651 3787 3786 1977 Face 7652 1526 2823 3786 Face 7653 4551 3787 3138 Face 7654 4551 3786 3787 Face 7655 961 3788 439 Face 7656 961 2347 3788 Face 7657 3721 3789 1393 Face 7658 3721 778 3789 Face 7659 2234 3790 2274 Face 7660 2234 3073 3790 Face 7661 750 3791 3150 Face 7662 750 3759 3791 Face 7663 1078 3792 1702 Face 7664 1078 4527 3792 Face 7665 1789 3793 2277 Face 7666 1789 4813 3793 Face 7667 1969 3794 2564 Face 7668 1969 2598 3794 Face 7669 323 3795 2056 Face 7670 323 1122 3795 Face 7671 1819 3796 121 Face 7672 1819 2774 3796 Face 7673 237 3797 2966 Face 7674 237 4013 3797 Face 7675 3622 3798 3649 Face 7676 3622 1766 3798 Face 7677 263 3799 36 Face 7678 263 2559 3799 Face 7679 146 3800 2559 Face 7680 146 262 3800 Face 7681 1492 3801 4111 Face 7682 1492 3420 3801 Face 7683 586 3802 3352 Face 7684 586 3609 3802 Face 7685 691 3803 3016 Face 7686 691 3218 3803 Face 7687 4630 3804 236 Face 7688 304 4131 3804 Face 7689 768 3806 557 Face 7690 4805 2534 3805 Face 7691 3805 3806 768 Face 7692 3805 3354 3806 Face 7693 4857 3807 965 Face 7694 4346 2541 3807 Face 7695 4683 3808 4828 Face 7696 4683 913 3808 Face 7697 487 3809 3273 Face 7698 487 486 3809 Face 7699 4896 3810 3460 Face 7700 1385 410 3810 Face 7701 998 3811 2995 Face 7702 998 1855 3811 Face 7703 461 3812 2024 Face 7704 461 3479 3812 Face 7705 2475 3813 373 Face 7706 2475 2306 3813 Face 7707 4920 3814 2724 Face 7708 4920 2153 3814 Face 7709 1547 3815 2026 Face 7710 1547 3219 3815 Face 7711 1481 3816 1404 Face 7712 1481 839 3816 Face 7713 2439 3817 3339 Face 7714 2439 2302 3817 Face 7715 256 3818 1023 Face 7716 256 1742 3818 Face 7717 1636 3819 2948 Face 7718 1636 698 3819 Face 7719 1915 3821 4028 Face 7720 1915 3848 3821 Face 7721 3820 3821 3848 Face 7722 3820 2504 3821 Face 7723 1320 3822 3425 Face 7724 4802 1431 3822 Face 7725 2201 3823 570 Face 7726 2201 513 3823 Face 7727 2221 3824 1254 Face 7728 2221 3346 3824 Face 7729 2252 3825 336 Face 7730 2252 1285 3825 Face 7731 2650 3826 244 Face 7732 2650 3327 3826 Face 7733 242 3827 2725 Face 7734 242 2303 3827 Face 7735 4678 3828 1156 Face 7736 4678 1641 3828 Face 7737 2324 3829 1046 Face 7738 2324 3658 3829 Face 7739 4601 3830 2281 Face 7740 2241 2493 3830 Face 7741 968 3831 407 Face 7742 968 2237 3831 Face 7743 98 3832 3102 Face 7744 98 854 3832 Face 7745 1331 3833 2533 Face 7746 3834 338 3833 Face 7747 1331 4868 3833 Face 7748 1331 4457 4868 Face 7749 1703 3835 4029 Face 7750 1703 4699 3835 Face 7751 461 3836 4211 Face 7752 461 2196 3836 Face 7753 1275 3837 2807 Face 7754 1275 612 3837 Face 7755 724 3838 3946 Face 7756 724 199 3838 Face 7757 1232 3839 2255 Face 7758 1232 1089 3839 Face 7759 2156 3840 3005 Face 7760 2156 1901 3840 Face 7761 2156 3841 1901 Face 7762 2156 1342 3841 Face 7763 584 3842 889 Face 7764 584 2654 3842 Face 7765 4698 3843 2954 Face 7766 243 3277 3843 Face 7767 1505 3844 2372 Face 7768 1505 4810 3844 Face 7769 978 3845 2138 Face 7770 4864 2093 3845 Face 7771 2768 3846 4219 Face 7772 2768 3236 3846 Face 7773 3184 3847 3130 Face 7774 3184 3185 3847 Face 7775 866 3848 2314 Face 7776 866 3820 3848 Face 7777 1224 3849 991 Face 7778 1224 2452 3849 Face 7779 532 3850 2033 Face 7780 532 3307 3850 Face 7781 1039 3851 1571 Face 7782 1039 1791 3851 Face 7783 442 3852 3757 Face 7784 442 2936 3852 Face 7785 2188 3853 3032 Face 7786 2188 1084 3853 Face 7787 744 3854 3292 Face 7788 744 3910 3854 Face 7789 1222 3855 901 Face 7790 1222 2080 3855 Face 7791 1763 3856 788 Face 7792 1763 279 3856 Face 7793 912 3857 1596 Face 7794 912 1978 3857 Face 7795 875 3860 301 Face 7796 4334 3057 3859 Face 7797 3858 3859 3957 Face 7798 3860 875 3859 Face 7799 3858 3860 3859 Face 7800 4253 301 3860 Face 7801 2074 3861 3536 Face 7802 3862 3072 3861 Face 7803 2074 3862 3861 Face 7804 2074 3071 3862 Face 7805 867 3863 2649 Face 7806 867 4928 3863 Face 7807 898 3864 2405 Face 7808 898 2616 3864 Face 7809 1837 3865 2640 Face 7810 1837 2478 3865 Face 7811 2144 3866 2145 Face 7812 2144 674 3866 Face 7813 4249 3867 274 Face 7814 4311 3741 3867 Face 7815 1421 3868 4884 Face 7816 1421 2312 3868 Face 7817 3854 3869 4212 Face 7818 3854 3910 3869 Face 7819 529 3870 632 Face 7820 529 4767 3870 Face 7821 3872 3871 1800 Face 7822 524 4702 3871 Face 7823 524 3872 1947 Face 7824 524 3871 3872 Face 7825 2356 3873 1907 Face 7826 4299 2764 3873 Face 7827 4793 3874 2943 Face 7828 4793 3757 3874 Face 7829 4507 3875 2574 Face 7830 337 3614 3875 Face 7831 1297 3876 417 Face 7832 1297 2582 3876 Face 7833 996 3877 2311 Face 7834 4035 4330 3877 Face 7835 802 3878 3827 Face 7836 802 1972 3878 Face 7837 811 3879 3240 Face 7838 811 2471 3879 Face 7839 4464 3880 2331 Face 7840 975 974 3880 Face 7841 853 3881 700 Face 7842 853 1784 3881 Face 7843 1549 3882 625 Face 7844 1549 274 3882 Face 7845 2297 3883 639 Face 7846 2297 1768 3883 Face 7847 1847 3884 2589 Face 7848 1847 2652 3884 Face 7849 540 3885 1034 Face 7850 540 2183 3885 Face 7851 2529 3886 2336 Face 7852 2529 4164 3886 Face 7853 1625 3887 2428 Face 7854 1625 1626 3887 Face 7855 331 3888 2325 Face 7856 331 4292 3888 Face 7857 1528 3889 2277 Face 7858 1528 2368 3889 Face 7859 1480 3890 3260 Face 7860 1480 4089 3890 Face 7861 2429 3891 2699 Face 7862 2429 985 3891 Face 7863 1640 3892 356 Face 7864 1640 419 3892 Face 7865 1251 3893 4471 Face 7866 1251 956 3893 Face 7867 1629 3894 1095 Face 7868 1629 2978 3894 Face 7869 230 3895 3264 Face 7870 3896 2096 3895 Face 7871 230 3896 3895 Face 7872 230 2661 3896 Face 7873 2649 3897 4218 Face 7874 2649 2648 3897 Face 7875 776 3898 751 Face 7876 776 2440 3898 Face 7877 1220 3899 1339 Face 7878 1220 3890 3899 Face 7879 310 3900 3816 Face 7880 310 1728 3900 Face 7881 1182 3901 2514 Face 7882 1182 3665 3901 Face 7883 1014 3902 1684 Face 7884 1014 2091 3902 Face 7885 2295 3903 3727 Face 7886 2295 1621 3903 Face 7887 1166 3904 780 Face 7888 1166 1697 3904 Face 7889 751 3905 2537 Face 7890 751 1418 3905 Face 7891 1306 3906 4197 Face 7892 1306 2154 3906 Face 7893 951 3907 3117 Face 7894 951 2401 3907 Face 7895 2357 3908 1845 Face 7896 2357 3141 3908 Face 7897 2190 3909 1207 Face 7898 2190 2670 3909 Face 7899 2197 3910 2406 Face 7900 2197 148 3910 Face 7901 1352 3911 3943 Face 7902 1352 1022 3911 Face 7903 2170 3912 2171 Face 7904 2170 3636 3912 Face 7905 1607 3913 2950 Face 7906 1607 3704 3913 Face 7907 469 3914 877 Face 7908 469 2183 3914 Face 7909 4705 3915 806 Face 7910 1020 2087 3915 Face 7911 317 3916 4364 Face 7912 317 4092 3916 Face 7913 2350 3917 2963 Face 7914 2350 2962 3917 Face 7915 2435 3918 2926 Face 7916 2435 2248 3918 Face 7917 2873 3919 2874 Face 7918 2873 2927 3919 Face 7919 3643 3920 2499 Face 7920 3643 3558 3920 Face 7921 265 3921 4414 Face 7922 265 2398 3921 Face 7923 2250 3922 3378 Face 7924 2250 2595 3922 Face 7925 939 3923 1382 Face 7926 939 2607 3923 Face 7927 4143 3924 2707 Face 7928 4016 3030 3924 Face 7929 1486 3925 3403 Face 7930 1486 22 3925 Face 7931 1336 3926 1401 Face 7932 1336 3426 3926 Face 7933 1552 3927 326 Face 7934 1552 3600 3927 Face 7935 2189 3928 1015 Face 7936 2189 930 3928 Face 7937 1905 3929 3369 Face 7938 1905 1999 3929 Face 7939 1564 3930 1974 Face 7940 1564 860 3930 Face 7941 2767 3931 3097 Face 7942 2767 3338 3931 Face 7943 2767 3932 4208 Face 7944 2767 3097 3932 Face 7945 916 3933 3234 Face 7946 916 265 3933 Face 7947 3935 3934 1488 Face 7948 1755 380 3934 Face 7949 1755 3935 484 Face 7950 1755 3934 3935 Face 7951 1314 4367 3578 Face 7952 4745 2210 3936 Face 7953 2302 3937 2301 Face 7954 2302 453 3937 Face 7955 4708 3938 3175 Face 7956 1000 2220 4074 Face 7957 347 3939 2150 Face 7958 347 3063 3939 Face 7959 1273 3940 1794 Face 7960 1273 2098 3940 Face 7961 1485 3941 538 Face 7962 1485 482 3941 Face 7963 1616 3942 1720 Face 7964 1616 3230 3942 Face 7965 625 3943 294 Face 7966 3997 1352 3943 Face 7967 2230 3944 1101 Face 7968 2230 163 3944 Face 7969 223 3945 4858 Face 7970 223 60 3945 Face 7971 576 3946 1929 Face 7972 576 2380 3946 Face 7973 2304 3947 658 Face 7974 2304 1458 3947 Face 7975 286 3948 2283 Face 7976 286 3068 3948 Face 7977 3950 3949 2430 Face 7978 4301 3721 3949 Face 7979 679 3950 341 Face 7980 4301 3949 3950 Face 7981 2588 3951 360 Face 7982 2588 3564 3951 Face 7983 3951 3952 2345 Face 7984 3951 3564 3952 Face 7985 3955 3953 3661 Face 7986 3954 4871 3953 Face 7987 4460 3955 3661 Face 7988 301 4253 3954 Face 7989 3954 3955 301 Face 7990 3954 3953 3955 Face 7991 3954 3956 4871 Face 7992 3954 3858 3956 Face 7993 803 4600 3859 Face 7994 803 3457 4600 Face 7995 803 3958 3457 Face 7996 803 1183 3958 Face 7997 145 3959 2461 Face 7998 145 2507 3959 Face 7999 145 3960 2803 Face 8000 145 2461 3960 Face 8001 2240 3961 1845 Face 8002 2240 4853 3961 Face 8003 1776 3962 1075 Face 8004 1776 4081 3962 Face 8005 837 3963 3431 Face 8006 837 3631 3963 Face 8007 1883 3964 3081 Face 8008 1883 3560 3964 Face 8009 4046 3965 2141 Face 8010 1003 4314 3965 Face 8011 4662 3966 1569 Face 8012 354 1171 3966 Face 8013 937 3967 4051 Face 8014 937 1988 3967 Face 8015 499 3968 1630 Face 8016 499 1881 3968 Face 8017 3673 3969 3287 Face 8018 3673 2160 3969 Face 8019 4867 3970 3043 Face 8020 1281 4387 3971 Face 8021 3970 3971 3186 Face 8022 3970 1281 3971 Face 8023 3007 3972 4661 Face 8024 3007 1103 3972 Face 8025 492 3973 3296 Face 8026 492 1944 3973 Face 8027 871 3974 4361 Face 8028 871 395 3974 Face 8029 534 3975 2453 Face 8030 534 4893 3975 Face 8031 2500 3976 2597 Face 8032 2500 1756 3976 Face 8033 1508 3977 2635 Face 8034 1508 2293 3977 Face 8035 4080 3978 2852 Face 8036 3194 2869 3978 Face 8037 1788 3979 2278 Face 8038 1788 1598 3979 Face 8039 1765 3980 3550 Face 8040 1765 3291 3980 Face 8041 3250 3981 3774 Face 8042 3250 2816 3981 Face 8043 2040 3982 4832 Face 8044 2040 730 3982 Face 8045 268 3983 3340 Face 8046 268 3421 3983 Face 8047 1641 3984 3828 Face 8048 1641 3517 3984 Face 8049 1244 3985 3282 Face 8050 1244 312 3985 Face 8051 538 3986 1485 Face 8052 538 1781 3986 Face 8053 889 3987 1976 Face 8054 889 1928 3987 Face 8055 612 3988 3837 Face 8056 612 1528 3988 Face 8057 2067 3989 2045 Face 8058 2067 4703 3989 Face 8059 425 3990 2261 Face 8060 425 3599 3990 Face 8061 1541 3991 3375 Face 8062 1541 2163 3991 Face 8063 1832 3992 1098 Face 8064 1832 3456 3992 Face 8065 725 3993 1893 Face 8066 4613 3602 3993 Face 8067 375 3994 1761 Face 8068 375 4652 3994 Face 8069 1063 3995 2686 Face 8070 1063 3349 3995 Face 8071 1823 3996 623 Face 8072 1823 2591 3996 Face 8073 625 3997 3943 Face 8074 625 565 3997 Face 8075 666 3998 3130 Face 8076 666 3385 3998 Face 8077 2305 3999 1426 Face 8078 2305 3284 3999 Face 8079 3933 4000 1884 Face 8080 3933 265 4000 Face 8081 1434 4001 4058 Face 8082 1434 1191 4001 Face 8083 3540 4002 928 Face 8084 3540 1074 4002 Face 8085 4468 4003 4455 Face 8086 4468 956 4003 Face 8087 1529 4004 1192 Face 8088 1529 4778 4004 Face 8089 4163 4005 3533 Face 8090 833 4065 4005 Face 8091 4333 4006 3198 Face 8092 3380 2154 4006 Face 8093 2483 4007 1256 Face 8094 4259 536 4007 Face 8095 2731 4008 1111 Face 8096 2731 536 4008 Face 8097 200 4009 2994 Face 8098 200 2996 4009 Face 8099 858 4010 4377 Face 8100 858 908 4010 Face 8101 2433 4011 2102 Face 8102 2433 65 4011 Face 8103 1266 4012 3013 Face 8104 1266 1328 4012 Face 8105 2867 4013 1335 Face 8106 2867 3797 4013 Face 8107 1753 4014 4324 Face 8108 4846 1586 4014 Face 8109 4014 4015 4324 Face 8110 4014 3297 4015 Face 8111 166 4016 3924 Face 8112 166 299 4016 Face 8113 641 4017 108 Face 8114 641 1814 4017 Face 8115 38 4018 2384 Face 8116 38 69 4018 Face 8117 1723 4019 2515 Face 8118 1723 2113 4019 Face 8119 291 4020 2473 Face 8120 291 3870 4020 Face 8121 4197 4021 2542 Face 8122 2750 3353 4021 Face 8123 401 4022 239 Face 8124 401 1339 4022 Face 8125 581 4023 3152 Face 8126 581 1068 4023 Face 8127 519 4024 1919 Face 8128 519 3429 4024 Face 8129 815 4025 1288 Face 8130 815 4030 4025 Face 8131 1193 4026 4239 Face 8132 4053 2208 4026 Face 8133 2119 4027 1168 Face 8134 2119 1170 4027 Face 8135 2504 4028 3821 Face 8136 2504 278 4028 Face 8137 4405 4029 3835 Face 8138 645 2250 4029 Face 8139 2203 4031 779 Face 8140 2203 4025 4031 Face 8141 4030 4031 4025 Face 8142 4030 779 4031 Face 8143 2480 4032 1757 Face 8144 2480 1225 4032 Face 8145 252 4033 2556 Face 8146 252 1002 4033 Face 8147 1235 4034 2254 Face 8148 4663 1324 4034 Face 8149 4036 4035 3877 Face 8150 4036 2341 4035 Face 8151 996 4036 3877 Face 8152 996 434 4036 Face 8153 2460 4037 763 Face 8154 2460 4108 4037 Face 8155 1945 4038 4045 Face 8156 1945 3067 4038 Face 8157 1004 4039 243 Face 8158 1004 2706 4039 Face 8159 740 4040 2685 Face 8160 740 4934 4040 Face 8161 2499 4041 3168 Face 8162 2499 3920 4041 Face 8163 2645 4042 1608 Face 8164 2645 2981 4042 Face 8165 4895 4043 2962 Face 8166 4895 2936 4043 Face 8167 599 4044 1768 Face 8168 4045 4038 4044 Face 8169 599 4045 4044 Face 8170 599 917 4045 Face 8171 1003 4046 960 Face 8172 1003 3965 4046 Face 8173 171 4047 621 Face 8174 171 3285 4047 Face 8175 485 4048 1708 Face 8176 485 3645 4048 Face 8177 1272 4049 501 Face 8178 1272 2144 4049 Face 8179 731 4050 2199 Face 8180 731 2693 4050 Face 8181 1459 4051 2249 Face 8182 1459 448 4051 Face 8183 3463 4052 3029 Face 8184 3463 1567 4052 Face 8185 1193 4053 4026 Face 8186 1193 3363 4053 Face 8187 1083 4054 3382 Face 8188 1083 2346 4054 Face 8189 4388 4055 2818 Face 8190 245 4444 4055 Face 8191 4803 4056 1248 Face 8192 272 1633 4056 Face 8193 752 4057 1496 Face 8194 752 2558 4057 Face 8195 340 4058 616 Face 8196 4888 1434 4058 Face 8197 1433 4059 2288 Face 8198 1433 3256 4059 Face 8199 3522 4060 867 Face 8200 3522 4277 4060 Face 8201 2698 4062 3304 Face 8202 2698 1801 4061 Face 8203 4061 4062 2698 Face 8204 4061 191 4062 Face 8205 981 4063 2167 Face 8206 981 2563 4063 Face 8207 4653 4064 510 Face 8208 4653 1282 4064 Face 8209 1216 4065 833 Face 8210 1216 3767 4065 Face 8211 148 4066 136 Face 8212 148 117 4066 Face 8213 1748 4067 3567 Face 8214 1748 3348 4067 Face 8215 1940 4068 613 Face 8216 1940 2451 4068 Face 8217 3679 4069 1581 Face 8218 4207 1582 4069 Face 8219 1839 4070 2544 Face 8220 1839 371 4070 Face 8221 757 4071 3563 Face 8222 757 64 4071 Face 8223 1604 4072 3235 Face 8224 1604 1948 4072 Face 8225 1881 4073 1198 Face 8226 1881 499 4073 Face 8227 3938 4074 1216 Face 8228 3938 1000 4074 Face 8229 2047 4075 3153 Face 8230 2047 3332 4075 Face 8231 1410 4076 3685 Face 8232 1410 2348 4076 Face 8233 1940 4077 2789 Face 8234 1940 4879 4077 Face 8235 1826 4078 644 Face 8236 1826 1228 4078 Face 8237 322 4079 3359 Face 8238 322 516 4079 Face 8239 3194 4080 3195 Face 8240 3194 3978 4080 Face 8241 1576 4081 748 Face 8242 1576 3962 4081 Face 8243 895 4082 2557 Face 8244 895 435 4082 Face 8245 4721 4083 338 Face 8246 4721 1606 4083 Face 8247 927 4084 2261 Face 8248 927 828 4084 Face 8249 3558 4085 3920 Face 8250 3558 4937 4085 Face 8251 2266 4086 2753 Face 8252 2266 3483 4086 Face 8253 1471 4087 4718 Face 8254 1471 1695 4087 Face 8255 3064 4088 2639 Face 8256 3064 3065 4088 Face 8257 1184 4089 3977 Face 8258 1184 3890 4089 Face 8259 1412 4090 871 Face 8260 1412 3572 4090 Face 8261 971 4091 1682 Face 8262 971 1686 4091 Face 8263 1370 4092 317 Face 8264 1370 1973 4092 Face 8265 765 4093 2636 Face 8266 765 2493 4093 Face 8267 1154 4094 2402 Face 8268 1154 1823 4094 Face 8269 4715 4095 1185 Face 8270 332 1691 4095 Face 8271 721 4096 287 Face 8272 721 2373 4096 Face 8273 2627 4097 3395 Face 8274 2627 1544 4097 Face 8275 1990 4098 2689 Face 8276 1990 3555 4098 Face 8277 2974 4099 1140 Face 8278 2974 3984 4099 Face 8279 165 4100 1495 Face 8280 4747 2613 4100 Face 8281 1325 4101 616 Face 8282 1325 1468 4101 Face 8283 4103 4102 3369 Face 8284 506 4465 4102 Face 8285 506 4103 2327 Face 8286 506 4102 4103 Face 8287 1714 4104 3112 Face 8288 1714 1739 4104 Face 8289 594 4105 3570 Face 8290 594 430 4105 Face 8291 2436 4106 963 Face 8292 4107 3251 4106 Face 8293 2436 4107 4106 Face 8294 2436 193 4107 Face 8295 1427 4108 2931 Face 8296 1427 4037 4108 Face 8297 1906 4109 736 Face 8298 1906 695 4109 Face 8299 829 4110 2181 Face 8300 4633 1672 4110 Face 8301 2219 4111 3725 Face 8302 2219 1357 4111 Face 8303 226 4112 3521 Face 8304 226 4663 4112 Face 8305 2476 4113 2997 Face 8306 2476 3925 4113 Face 8307 3214 4114 2426 Face 8308 3214 4730 4114 Face 8309 481 4115 4089 Face 8310 481 1997 4115 Face 8311 2149 4116 1451 Face 8312 2149 2232 4116 Face 8313 387 4117 3515 Face 8314 387 1389 4117 Face 8315 4119 4118 3368 Face 8316 700 3881 4118 Face 8317 700 4119 3644 Face 8318 700 4118 4119 Face 8319 2450 4120 4469 Face 8320 2450 2393 4120 Face 8321 678 4121 1523 Face 8322 678 2044 4121 Face 8323 312 4122 3985 Face 8324 312 217 4122 Face 8325 41 4123 52 Face 8326 41 23 4123 Face 8327 130 4124 4018 Face 8328 130 757 4124 Face 8329 831 4125 4674 Face 8330 831 1349 4125 Face 8331 1964 4126 4093 Face 8332 1964 1963 4126 Face 8333 2516 4127 720 Face 8334 2516 2889 4127 Face 8335 638 4128 1775 Face 8336 638 3050 4128 Face 8337 357 4129 2034 Face 8338 357 3660 4129 Face 8339 1247 4130 2703 Face 8340 1247 2624 4130 Face 8341 1696 4131 3752 Face 8342 1696 2362 4131 Face 8343 4133 4132 4572 Face 8344 4133 3370 4132 Face 8345 271 4133 2329 Face 8346 271 3370 4133 Face 8347 2070 4134 2289 Face 8348 2070 4707 4134 Face 8349 2070 4135 3530 Face 8350 2070 2289 4135 Face 8351 1615 4136 1616 Face 8352 1615 3792 4136 Face 8353 1437 4137 3201 Face 8354 1437 2946 4137 Face 8355 2539 4138 1456 Face 8356 2539 2560 4138 Face 8357 254 4139 4616 Face 8358 254 848 4139 Face 8359 2694 4140 3458 Face 8360 2694 2671 4140 Face 8361 2290 4141 2071 Face 8362 2290 2291 4141 Face 8363 710 4142 329 Face 8364 710 1672 4142 Face 8365 166 4143 3688 Face 8366 166 3924 4143 Face 8367 812 4144 340 Face 8368 812 3782 4144 Face 8369 854 4145 1922 Face 8370 854 2593 4145 Face 8371 3110 4146 1203 Face 8372 3110 270 4146 Face 8373 1463 4147 1286 Face 8374 1463 2949 4147 Face 8375 3409 4148 1939 Face 8376 3409 2771 4148 Face 8377 218 4149 2748 Face 8378 218 2948 4149 Face 8379 4151 4150 1323 Face 8380 696 1618 4150 Face 8381 4650 4151 1323 Face 8382 696 4150 4151 Face 8383 2192 4152 4867 Face 8384 2192 2965 4152 Face 8385 51 4153 2897 Face 8386 4470 1303 4153 Face 8387 3434 4154 1411 Face 8388 3434 1114 4154 Face 8389 2379 4156 4114 Face 8390 2379 834 4156 Face 8391 4155 4156 834 Face 8392 4155 4114 4156 Face 8393 1108 4157 2459 Face 8394 1108 1579 4157 Face 8395 1106 4158 1105 Face 8396 1106 2663 4158 Face 8397 1705 4159 558 Face 8398 1705 848 4159 Face 8399 675 4160 730 Face 8400 675 1943 4160 Face 8401 1769 4161 1900 Face 8402 1769 455 4161 Face 8403 2072 4162 702 Face 8404 2072 1312 4162 Face 8405 833 4163 3175 Face 8406 833 4005 4163 Face 8407 1751 4164 2529 Face 8408 1751 485 4164 Face 8409 174 4165 2681 Face 8410 174 3204 4165 Face 8411 1378 4166 3875 Face 8412 1378 3723 4166 Face 8413 3548 4167 404 Face 8414 3548 870 4167 Face 8415 276 4168 3017 Face 8416 276 4727 4168 Face 8417 4330 4169 3877 Face 8418 1240 762 4169 Face 8419 712 4170 2337 Face 8420 712 2479 4170 Face 8421 2274 4171 526 Face 8422 4477 1404 4171 Face 8423 455 4172 4161 Face 8424 455 2889 4172 Face 8425 848 4173 4139 Face 8426 848 1705 4173 Face 8427 2842 4174 3397 Face 8428 2842 2841 4174 Face 8429 2406 4175 3265 Face 8430 2406 3760 4175 Face 8431 1298 4176 4672 Face 8432 1298 2785 4176 Face 8433 840 4177 3194 Face 8434 840 2436 4177 Face 8435 1102 4178 1891 Face 8436 1102 608 4178 Face 8437 2121 4179 4685 Face 8438 2121 892 4179 Face 8439 930 4180 2998 Face 8440 930 2189 4180 Face 8441 350 4181 3283 Face 8442 350 4545 4181 Face 8443 1633 4182 3708 Face 8444 1633 4901 4182 Face 8445 1334 4183 1744 Face 8446 4636 4758 4183 Face 8447 1307 4184 353 Face 8448 1307 3491 4184 Face 8449 613 4185 4879 Face 8450 613 3448 4185 Face 8451 460 4186 2278 Face 8452 460 257 4186 Face 8453 2168 4187 3296 Face 8454 2168 2306 4187 Face 8455 3459 4188 2293 Face 8456 3459 239 4188 Face 8457 1842 4189 352 Face 8458 1842 944 4189 Face 8459 1019 4190 3579 Face 8460 1019 2172 4190 Face 8461 1638 4191 306 Face 8462 1638 2865 4191 Face 8463 1559 4192 4230 Face 8464 1559 2265 4192 Face 8465 384 4193 3731 Face 8466 384 4786 4193 Face 8467 3359 4194 1894 Face 8468 3359 4079 4194 Face 8469 1592 4195 4194 Face 8470 1592 4196 4195 Face 8471 1593 4196 1895 Face 8472 1593 4195 4196 Face 8473 2750 4197 3906 Face 8474 2750 4021 4197 Face 8475 4353 4198 3674 Face 8476 1973 1963 4198 Face 8477 2611 4199 2610 Face 8478 2611 4707 4199 Face 8479 1742 4200 2716 Face 8480 1742 4595 4200 Face 8481 2538 4201 2294 Face 8482 2538 4363 4201 Face 8483 1025 4202 1614 Face 8484 1025 3761 4202 Face 8485 4204 4203 1523 Face 8486 4240 831 4203 Face 8487 2251 4204 2694 Face 8488 4240 4203 4204 Face 8489 459 4205 4905 Face 8490 459 1609 4485 Face 8491 4443 4206 3120 Face 8492 873 3406 4206 Face 8493 3679 4207 4069 Face 8494 3679 351 4207 Face 8495 432 4208 3932 Face 8496 432 3504 4208 Face 8497 826 4209 3135 Face 8498 826 3390 4209 Face 8499 2099 4210 134 Face 8500 2099 3462 4210 Face 8501 315 4211 3836 Face 8502 315 1093 4211 Face 8503 362 4212 3869 Face 8504 362 3292 4212 Face 8505 4736 4213 1573 Face 8506 1277 1274 4213 Face 8507 1142 4214 1679 Face 8508 1142 3596 4214 Face 8509 938 4215 2338 Face 8510 938 3333 4215 Face 8511 636 4216 3400 Face 8512 636 4729 4216 Face 8513 4373 4217 1309 Face 8514 769 2787 4217 Face 8515 495 4218 3897 Face 8516 495 3326 4218 Face 8517 4685 4219 2121 Face 8518 2706 410 4219 Face 8519 1098 4220 4510 Face 8520 1098 3992 4220 Face 8521 133 4221 68 Face 8522 133 16 4221 Face 8523 4223 4222 4354 Face 8524 86 3604 4222 Face 8525 86 4223 2975 Face 8526 86 4222 4223 Face 8527 2059 4224 462 Face 8528 2059 1145 4224 Face 8529 1343 4225 1863 Face 8530 1343 4477 4225 Face 8531 464 4226 2562 Face 8532 464 1305 4226 Face 8533 531 4227 2898 Face 8534 4228 4706 4227 Face 8535 4229 4228 4227 Face 8536 4229 3319 4228 Face 8537 531 4229 4227 Face 8538 4733 3319 4229 Face 8539 2494 4230 4192 Face 8540 2494 2495 4230 Face 8541 4230 4231 1559 Face 8542 4230 2495 4231 Face 8543 443 4232 1863 Face 8544 443 1408 4232 Face 8545 360 4233 3263 Face 8546 360 574 4233 Face 8547 2934 4234 1502 Face 8548 2934 3144 4234 Face 8549 280 4235 2973 Face 8550 280 2590 4235 Face 8551 2266 4236 1602 Face 8552 2266 4421 4236 Face 8553 642 4237 1139 Face 8554 642 2548 4237 Face 8555 1348 4238 3507 Face 8556 1348 2646 4238 Face 8557 570 4239 2601 Face 8558 570 1193 4239 Face 8559 2251 4240 4204 Face 8560 2251 831 4240 Face 8561 2313 4241 2806 Face 8562 2313 2814 4241 Face 8563 660 4242 4607 Face 8564 660 569 4242 Face 8565 2064 4243 2063 Face 8566 2064 989 4243 Face 8567 1515 4244 1407 Face 8568 1515 2416 4244 Face 8569 796 4245 1628 Face 8570 796 836 4245 Face 8571 1622 4246 1223 Face 8572 1622 4339 4246 Face 8573 2781 4247 3693 Face 8574 2781 1902 4247 Face 8575 4617 4248 2759 Face 8576 1304 4226 4248 Face 8577 1110 4249 2912 Face 8578 4311 3867 4249 Face 8579 1157 4250 3309 Face 8580 1157 3770 4250 Face 8581 503 4251 1959 Face 8582 503 3322 4251 Face 8583 1090 4252 3575 Face 8584 1090 4856 4252 Face 8585 3858 4253 3860 Face 8586 3858 3954 4253 Face 8587 1330 4254 4121 Face 8588 1330 468 4254 Face 8589 178 4255 2680 Face 8590 178 3394 4255 Face 8591 574 4256 3673 Face 8592 574 509 4256 Face 8593 444 4257 3637 Face 8594 444 1026 4257 Face 8595 1513 4258 2908 Face 8596 4717 926 4258 Face 8597 2483 4259 4007 Face 8598 2483 3048 4259 Face 8599 2556 4260 252 Face 8600 2556 1019 4260 Face 8601 3117 4261 4800 Face 8602 3117 3907 4261 Face 8603 1963 4645 4198 Face 8604 1963 1964 4645 Face 8605 2124 4263 414 Face 8606 2124 3702 4263 Face 8607 172 4264 376 Face 8608 172 2178 4264 Face 8609 3634 4265 4931 Face 8610 3634 3518 4265 Face 8611 22 4266 128 Face 8612 22 1425 4266 Face 8613 3379 4267 4490 Face 8614 3379 4804 4267 Face 8615 991 4268 1913 Face 8616 991 2907 4268 Face 8617 518 4269 663 Face 8618 518 1454 4269 Face 8619 3159 4270 3078 Face 8620 3159 2832 4270 Face 8621 613 4271 3557 Face 8622 613 4068 4271 Face 8623 2831 4272 1853 Face 8624 2831 2172 4272 Face 8625 2289 4273 4135 Face 8626 4922 1508 4273 Face 8627 1924 4275 2644 Face 8628 1924 4024 4275 Face 8629 4274 4275 4024 Face 8630 4274 2644 4275 Face 8631 204 4276 2393 Face 8632 204 2208 4276 Face 8633 432 4505 3522 Face 8634 432 4555 4505 Face 8635 1926 4279 4479 Face 8636 1926 3281 4279 Face 8637 4278 4279 3281 Face 8638 4278 2330 4279 Face 8639 498 4280 3670 Face 8640 498 830 4280 Face 8641 1371 4281 595 Face 8642 4697 597 4281 Face 8643 4465 4282 772 Face 8644 4465 506 4282 Face 8645 289 4283 4294 Face 8646 289 2937 4283 Face 8647 1191 4284 2672 Face 8648 1191 983 4284 Face 8649 1447 4285 3805 Face 8650 1447 3705 4285 Face 8651 474 4286 1171 Face 8652 474 2617 4286 Face 8653 1582 4288 4069 Face 8654 1582 2265 4288 Face 8655 4287 4288 4290 Face 8656 4287 4069 4288 Face 8657 1390 4289 3256 Face 8658 1390 896 4289 Face 8659 2265 4290 4288 Face 8660 2265 1559 4290 Face 8661 404 4291 3646 Face 8662 404 3124 4291 Face 8663 1503 4292 331 Face 8664 1503 2859 4292 Face 8665 703 4293 4866 Face 8666 703 4557 4293 Face 8667 1534 4294 4283 Face 8668 1534 2863 4294 Face 8669 1335 4295 3729 Face 8670 1335 2244 4295 Face 8671 2120 4296 1062 Face 8672 2120 2920 4296 Face 8673 324 4297 3989 Face 8674 324 2671 4297 Face 8675 3781 4298 4900 Face 8676 3781 3208 4298 Face 8677 2356 4299 3873 Face 8678 4611 3869 4299 Face 8679 1005 4300 3505 Face 8680 1005 3197 4300 Face 8681 679 4301 3950 Face 8682 679 1538 4301 Face 8683 976 4302 3808 Face 8684 976 208 4302 Face 8685 1766 4303 3798 Face 8686 4539 1082 4303 Face 8687 1810 4304 2546 Face 8688 1810 2722 4304 Face 8689 1308 4305 2763 Face 8690 1308 229 4305 Face 8691 1570 4306 1030 Face 8692 1570 2738 4306 Face 8693 2811 4307 4008 Face 8694 2811 300 4307 Face 8695 1556 4308 2485 Face 8696 1556 4398 4308 Face 8697 1207 4309 3227 Face 8698 1207 3324 4309 Face 8699 3133 4310 2403 Face 8700 3133 2748 4310 Face 8701 1110 4311 4249 Face 8702 1110 3741 4311 Face 8703 402 4312 948 Face 8704 402 2733 4312 Face 8705 1512 4313 1785 Face 8706 1512 925 4313 Face 8707 1178 4314 684 Face 8708 1178 3965 4314 Face 8709 4694 4315 794 Face 8710 1527 1307 4315 Face 8711 3254 4316 1227 Face 8712 3254 654 4316 Face 8713 500 4317 755 Face 8714 500 3650 4317 Face 8715 2101 4318 222 Face 8716 2101 1772 4318 Face 8717 4320 4319 4216 Face 8718 2836 3468 4319 Face 8719 2836 4320 2837 Face 8720 2836 4319 4320 Face 8721 2491 4321 3717 Face 8722 2491 2407 4321 Face 8723 874 4322 2361 Face 8724 874 3345 4322 Face 8725 1312 4323 1967 Face 8726 1312 1751 4323 Face 8727 2150 4324 4015 Face 8728 2150 4739 4324 Face 8729 2150 4550 4739 Face 8730 2150 1783 4550 Face 8731 1249 4326 523 Face 8732 1249 192 4326 Face 8733 1049 4327 3399 Face 8734 1049 869 4327 Face 8735 2965 4328 2868 Face 8736 2965 2966 4328 Face 8737 671 4329 2456 Face 8738 671 1829 4329 Face 8739 1240 4330 4035 Face 8740 1240 4169 4330 Face 8741 4332 4331 2317 Face 8742 4332 2174 4331 Face 8743 705 4332 2317 Face 8744 705 2628 4332 Face 8745 3380 4333 1543 Face 8746 3380 4006 4333 Face 8747 875 4334 3859 Face 8748 875 2730 4334 Face 8749 1201 4335 2780 Face 8750 1201 3454 4335 Face 8751 835 4336 3009 Face 8752 835 700 4336 Face 8753 264 4337 529 Face 8754 264 2506 4337 Face 8755 2616 4338 3864 Face 8756 2616 2051 4338 Face 8757 2043 4339 1774 Face 8758 2043 4246 4339 Face 8759 2891 4340 630 Face 8760 2891 1693 4340 Face 8761 2083 4341 59 Face 8762 2083 2741 4341 Face 8763 1939 4342 3471 Face 8764 1939 3539 4342 Face 8765 2339 4343 1243 Face 8766 2339 4529 4343 Face 8767 1081 4344 1710 Face 8768 1081 1233 4344 Face 8769 371 4345 889 Face 8770 371 1021 4345 Face 8771 4857 4346 3807 Face 8772 525 3102 4346 Face 8773 300 4347 2226 Face 8774 300 2569 4347 Face 8775 3865 4348 1838 Face 8776 3865 2478 4348 Face 8777 2708 4349 392 Face 8778 2708 4185 4349 Face 8779 1771 4350 4861 Face 8780 1771 3316 4350 Face 8781 967 4351 1189 Face 8782 967 2399 4351 Face 8783 1095 4352 1994 Face 8784 1095 1678 4352 Face 8785 1973 4353 4092 Face 8786 1973 4198 4353 Face 8787 1119 4354 3097 Face 8788 1119 4223 4354 Face 8789 1119 4355 3098 Face 8790 1119 3097 4355 Face 8791 4883 4356 2111 Face 8792 904 2485 4356 Face 8793 231 4357 2698 Face 8794 231 2699 4357 Face 8795 1291 4358 3676 Face 8796 1291 2808 4358 Face 8797 255 4359 3295 Face 8798 255 3677 4359 Face 8799 694 4360 3630 Face 8800 4873 4094 4360 Face 8801 2223 4361 3592 Face 8802 2223 1412 4361 Face 8803 465 4362 4849 Face 8804 465 3535 4362 Face 8805 3554 4363 2637 Face 8806 3554 4201 4363 Face 8807 2928 4364 2929 Face 8808 2928 3750 4364 Face 8809 1093 4365 2159 Face 8810 1093 841 4365 Face 8811 558 4366 1367 Face 8812 558 4159 4366 Face 8813 3936 4367 4745 Face 8814 3936 416 4367 Face 8815 619 4368 4852 Face 8816 619 1128 4368 Face 8817 2384 4369 418 Face 8818 2384 4018 4369 Face 8819 1728 4370 4171 Face 8820 1728 720 4370 Face 8821 156 4371 2630 Face 8822 156 705 4371 Face 8823 1949 4372 2663 Face 8824 1949 2668 4372 Face 8825 769 4373 847 Face 8826 769 4217 4373 Face 8827 210 4374 2875 Face 8828 210 2618 4374 Face 8829 655 4375 933 Face 8830 655 3435 4375 Face 8831 561 4376 2678 Face 8832 561 3286 4376 Face 8833 3172 4377 4010 Face 8834 3172 1785 4377 Face 8835 645 4378 4597 Face 8836 645 4029 4405 Face 8837 2393 4379 4298 Face 8838 2393 2450 4379 Face 8839 4381 4380 1472 Face 8840 2471 4821 4380 Face 8841 2471 4381 3879 Face 8842 2471 4380 4381 Face 8843 3004 4382 3003 Face 8844 3004 1019 4382 Face 8845 1177 4383 2094 Face 8846 1177 3086 4383 Face 8847 661 4384 2053 Face 8848 661 1380 4384 Face 8849 2545 4385 4676 Face 8850 2545 3550 4385 Face 8851 66 4386 3082 Face 8852 66 1886 4386 Face 8853 3042 4387 3351 Face 8854 3042 4412 4387 Face 8855 245 4389 1289 Face 8856 245 4055 4389 Face 8857 4388 4389 4055 Face 8858 4388 1289 4389 Face 8859 1230 4390 587 Face 8860 1230 1474 4390 Face 8861 1635 4391 311 Face 8862 4392 3482 4391 Face 8863 1635 4392 4391 Face 8864 1635 4811 4392 Face 8865 767 4393 1918 Face 8866 767 2715 4393 Face 8867 445 4394 2941 Face 8868 445 674 4394 Face 8869 367 4395 1645 Face 8870 367 2958 4395 Face 8871 1501 4396 830 Face 8872 1501 4554 4396 Face 8873 1676 4397 1677 Face 8874 1676 3481 4397 Face 8875 1321 4398 1556 Face 8876 1321 1166 4398 Face 8877 508 4399 689 Face 8878 508 3496 4399 Face 8879 1301 4400 3709 Face 8880 1301 2944 4400 Face 8881 714 4401 1278 Face 8882 714 2272 4401 Face 8883 4403 4402 4500 Face 8884 1499 2334 4402 Face 8885 1499 4403 3092 Face 8886 1499 4402 4403 Face 8887 2612 4404 2769 Face 8888 2612 3241 4404 Face 8889 4378 4405 3835 Face 8890 4378 645 4405 Face 8891 2841 4406 1921 Face 8892 2841 2842 4406 Face 8893 2231 4407 1058 Face 8894 2231 3734 4407 Face 8895 1474 4408 4390 Face 8896 4854 588 4408 Face 8897 3780 4409 1899 Face 8898 3780 2979 4409 Face 8899 2696 4410 3146 Face 8900 2696 815 4410 Face 8901 3112 4411 3297 Face 8902 3112 4104 4411 Face 8903 3186 4412 3187 Face 8904 3186 3971 4412 Face 8905 3186 4413 3970 Face 8906 3186 3187 4413 Face 8907 1678 4414 3921 Face 8908 1678 3894 4414 Face 8909 1219 4415 1432 Face 8910 1219 2484 4415 Face 8911 1261 4416 2690 Face 8912 4417 3687 4416 Face 8913 1261 4417 4416 Face 8914 1261 3575 4417 Face 8915 1261 4788 3575 Face 8916 1261 2614 4788 Face 8917 1181 4419 2453 Face 8918 1181 422 4419 Face 8919 583 4420 4434 Face 8920 583 2715 4420 Face 8921 834 4421 4155 Face 8922 834 3132 4421 Face 8923 2644 4422 3176 Face 8924 2644 2683 4422 Face 8925 1304 4423 295 Face 8926 4617 1970 4423 Face 8927 2936 4424 4043 Face 8928 2936 442 4424 Face 8929 4517 4425 3441 Face 8930 449 3397 4425 Face 8931 449 4426 2842 Face 8932 449 690 4426 Face 8933 1986 4427 1200 Face 8934 1986 1333 4427 Face 8935 3212 4428 2085 Face 8936 3212 992 4428 Face 8937 1815 4429 2803 Face 8938 1815 1883 4429 Face 8939 2582 4430 3876 Face 8940 2582 417 4430 Face 8941 2582 4431 417 Face 8942 2582 1297 4431 Face 8943 3876 4432 1295 Face 8944 3876 4430 4432 Face 8945 65 4433 4434 Face 8946 65 1868 4433 Face 8947 146 4434 4433 Face 8948 146 4701 4434 Face 8949 2357 4435 969 Face 8950 2357 4536 4435 Face 8951 1293 4436 3131 Face 8952 1293 3443 4436 Face 8953 4770 4437 838 Face 8954 1511 1103 4437 Face 8955 1511 4438 3084 Face 8956 1511 4437 4438 Face 8957 1737 4439 3475 Face 8958 1737 3706 4439 Face 8959 4439 4440 139 Face 8960 4439 3706 4440 Face 8961 1647 4441 1982 Face 8962 1647 1243 4441 Face 8963 1010 4442 4042 Face 8964 1010 4911 4442 Face 8965 873 4443 3671 Face 8966 873 4206 4443 Face 8967 2461 4444 3960 Face 8968 2461 4055 4444 Face 8969 2216 4445 1691 Face 8970 2216 1690 4445 Face 8971 2339 4446 1687 Face 8972 2339 631 4446 Face 8973 1964 4447 4262 Face 8974 1964 2241 4447 Face 8975 2106 4448 190 Face 8976 2106 1438 4448 Face 8977 1732 4449 1405 Face 8978 4450 1700 4449 Face 8979 1732 4450 4449 Face 8980 1732 1699 4450 Face 8981 1521 4451 1094 Face 8982 1521 687 4451 Face 8983 597 4452 4281 Face 8984 597 2549 4452 Face 8985 4741 4453 1385 Face 8986 2707 410 4453 Face 8987 4741 4454 3687 Face 8988 4741 1385 4454 Face 8989 1966 4455 4003 Face 8990 1966 358 4455 Face 8991 2686 4456 89 Face 8992 2686 3995 4456 Face 8993 1725 4457 2801 Face 8994 1725 4868 4457 Face 8995 3585 4458 3586 Face 8996 3585 4511 4458 Face 8997 571 4459 1533 Face 8998 571 2087 4459 Face 8999 301 4460 2124 Face 9000 301 3955 4460 Face 9001 4462 4461 2471 Face 9002 1219 177 4461 Face 9003 1219 4462 169 Face 9004 1219 4461 4462 Face 9005 886 4463 2850 Face 9006 886 2268 4463 Face 9007 975 4464 2793 Face 9008 975 3880 4464 Face 9009 2620 4465 772 Face 9010 2620 4102 4465 Face 9011 1316 4466 3211 Face 9012 1316 3578 4466 Face 9013 682 4467 683 Face 9014 682 3473 4467 Face 9015 365 4468 4455 Face 9016 365 3620 4468 Face 9017 2564 4469 4120 Face 9018 2564 2982 4469 Face 9019 51 4470 4153 Face 9020 51 3155 4470 Face 9021 2558 4471 2448 Face 9022 2558 752 4471 Face 9023 1018 4472 3681 Face 9024 1018 4717 4472 Face 9025 783 4473 4605 Face 9026 783 2355 4473 Face 9027 783 4474 2355 Face 9028 783 363 4474 Face 9029 653 4475 3438 Face 9030 653 2167 4475 Face 9031 1869 4476 1560 Face 9032 1869 3334 4476 Face 9033 2274 4477 4171 Face 9034 2274 4225 4477 Face 9035 2136 4478 1071 Face 9036 2136 3660 4478 Face 9037 2330 4479 4279 Face 9038 2330 3016 4479 Face 9039 1656 4480 4305 Face 9040 1656 3382 4480 Face 9041 1400 4481 2246 Face 9042 1400 3551 4481 Face 9043 1146 4482 2123 Face 9044 1146 2602 4482 Face 9045 4482 4483 2123 Face 9046 4482 2602 4483 Face 9047 793 4484 521 Face 9048 793 1573 4484 Face 9049 4205 4485 1300 Face 9050 4205 459 4485 Face 9051 2456 4486 2457 Face 9052 2456 4329 4486 Face 9053 1263 4487 3373 Face 9054 1263 2835 4487 Face 9055 1403 4488 1667 Face 9056 1403 3523 4488 Face 9057 2986 4489 2281 Face 9058 2986 3026 4489 Face 9059 4491 4490 4267 Face 9060 4491 2570 4490 Face 9061 3343 4491 4267 Face 9062 3343 2570 4491 Face 9063 1886 4492 4386 Face 9064 1886 290 4492 Face 9065 2050 4493 307 Face 9066 2050 3104 4493 Face 9067 601 4494 2738 Face 9068 601 3555 4494 Face 9069 1169 4495 2427 Face 9070 1169 3344 4495 Face 9071 1324 4496 4034 Face 9072 1324 3788 4496 Face 9073 2162 4497 1376 Face 9074 2162 1466 4497 Face 9075 4853 4498 2468 Face 9076 2239 4054 4498 Face 9077 1891 4499 1102 Face 9078 1891 3401 4499 Face 9079 2566 4500 3375 Face 9080 2566 4403 4500 Face 9081 972 4501 1955 Face 9082 972 1982 4501 Face 9083 59 4502 3405 Face 9084 59 4341 4502 Face 9085 786 4503 3521 Face 9086 786 3115 4503 Face 9087 522 4504 3261 Face 9088 522 250 4504 Face 9089 4277 4505 2367 Face 9090 4277 3522 4505 Face 9091 2560 4713 4823 Face 9092 2560 316 4713 Face 9093 337 4507 74 Face 9094 337 3875 4507 Face 9095 4509 4508 1199 Face 9096 878 2404 4508 Face 9097 878 4509 3495 Face 9098 878 4508 4509 Face 9099 1011 4510 2364 Face 9100 1011 1044 4510 Face 9101 2286 4511 2287 Face 9102 2286 3744 4511 Face 9103 670 4512 3055 Face 9104 670 2420 4512 Face 9105 1149 4513 4841 Face 9106 1149 844 4513 Face 9107 862 4514 205 Face 9108 862 3815 4514 Face 9109 1350 4515 3768 Face 9110 1350 555 4515 Face 9111 889 4516 1928 Face 9112 889 4345 4516 Face 9113 449 4517 690 Face 9114 449 4425 4517 Face 9115 2899 4518 1174 Face 9116 2899 4056 4518 Face 9117 1762 4519 518 Face 9118 4520 2799 4519 Face 9119 1762 4520 4519 Face 9120 1762 2319 4520 Face 9121 1231 4521 2496 Face 9122 1231 1034 4521 Face 9123 490 4522 2127 Face 9124 490 2911 4522 Face 9125 2127 4523 490 Face 9126 2127 1445 4523 Face 9127 1242 4524 2998 Face 9128 1242 822 4524 Face 9129 282 4525 284 Face 9130 282 938 4525 Face 9131 2753 4526 2426 Face 9132 2753 4748 4526 Face 9133 1745 4527 598 Face 9134 1745 3792 4527 Face 9135 2635 4528 4126 Face 9136 2635 2636 4528 Face 9137 1687 4529 2339 Face 9138 1687 985 4529 Face 9139 1687 4530 3891 Face 9140 1687 4446 4530 Face 9141 1465 4531 1226 Face 9142 1465 1965 4531 Face 9143 94 4532 4017 Face 9144 94 1966 4532 Face 9145 575 4533 2316 Face 9146 575 2742 4533 Face 9147 2225 4534 640 Face 9148 2225 1491 4534 Face 9149 192 4535 353 Face 9150 192 689 4535 Face 9151 2818 4536 3092 Face 9152 2818 4435 4536 Face 9153 194 4537 2271 Face 9154 194 3590 4537 Face 9155 1543 4538 3396 Face 9156 1543 950 4538 Face 9157 1766 4539 4303 Face 9158 1766 1423 4539 Face 9159 1096 4540 4000 Face 9160 1096 942 4540 Face 9161 630 4541 1470 Face 9162 630 4340 4541 Face 9163 1457 4542 2898 Face 9164 1457 3635 4542 Face 9165 1526 4543 3285 Face 9166 4551 2195 4543 Face 9167 607 4544 2100 Face 9168 607 393 4544 Face 9169 800 4545 799 Face 9170 800 4257 4545 Face 9171 2104 4546 1686 Face 9172 2104 1119 4546 Face 9173 2051 4547 4338 Face 9174 2051 1671 4547 Face 9175 372 4548 3495 Face 9176 372 2545 4548 Face 9177 160 4549 2856 Face 9178 160 1848 4549 Face 9179 4325 4550 3618 Face 9180 4325 4739 4550 Face 9181 1526 4551 4543 Face 9182 1526 3786 4551 Face 9183 1448 4552 2778 Face 9184 1448 736 4552 Face 9185 379 4553 2666 Face 9186 379 2376 4553 Face 9187 2371 4554 1888 Face 9188 2371 4130 4554 Face 9189 2367 4555 3932 Face 9190 2367 4505 4556 Face 9191 4555 4556 4505 Face 9192 4555 2367 4556 Face 9193 1555 4557 3076 Face 9194 1555 2971 4557 Face 9195 1610 4558 3243 Face 9196 1610 2118 4558 Face 9197 3346 4559 773 Face 9198 3346 2221 4559 Face 9199 823 4560 2301 Face 9200 823 2422 4560 Face 9201 2152 4561 3048 Face 9202 2152 1326 4561 Face 9203 334 4562 3911 Face 9204 334 3415 4562 Face 9205 349 4563 835 Face 9206 349 1026 4563 Face 9207 182 4564 1264 Face 9208 182 1608 4564 Face 9209 2619 4565 1970 Face 9210 2619 895 4565 Face 9211 1722 4566 2444 Face 9212 1722 4603 4566 Face 9213 616 4567 3424 Face 9214 616 4058 4567 Face 9215 1600 4568 2676 Face 9216 1600 1492 4568 Face 9217 1068 4569 1827 Face 9218 1068 1380 4569 Face 9219 457 4570 556 Face 9220 457 2821 4570 Face 9221 1730 4571 3350 Face 9222 1730 1142 4571 Face 9223 2329 4572 2875 Face 9224 2329 4133 4572 Face 9225 129 4573 3667 Face 9226 129 1877 4573 Face 9227 2977 4574 1557 Face 9228 2977 2854 4574 Face 9229 798 4575 3962 Face 9230 798 1995 4575 Face 9231 1045 4576 981 Face 9232 1045 1265 4576 Face 9233 1377 4577 3507 Face 9234 1377 1451 4577 Face 9235 1824 4578 1825 Face 9236 1824 1767 4578 Face 9237 1500 4579 1659 Face 9238 1500 2003 4579 Face 9239 2568 4580 1074 Face 9240 2568 3534 4580 Face 9241 1477 4581 1935 Face 9242 1477 4947 4581 Face 9243 1937 4582 1935 Face 9244 1937 1936 4582 Face 9245 516 4583 4079 Face 9246 4584 658 4583 Face 9247 4585 4584 4583 Face 9248 4585 3259 4584 Face 9249 516 4585 4583 Face 9250 516 3259 4585 Face 9251 2023 4586 3371 Face 9252 2023 2348 4586 Face 9253 2023 4587 2348 Face 9254 2023 3372 4587 Face 9255 211 4588 804 Face 9256 211 3154 4588 Face 9257 4590 4589 2686 Face 9258 4590 4007 4589 Face 9259 1256 4590 89 Face 9260 1256 4007 4590 Face 9261 1901 4591 3118 Face 9262 1901 1985 4591 Face 9263 1422 4592 813 Face 9264 1422 1766 4592 Face 9265 2530 4593 2659 Face 9266 2530 3447 4593 Face 9267 1364 4594 804 Face 9268 1364 3704 4594 Face 9269 1611 4595 653 Face 9270 1611 4200 4595 Face 9271 949 4596 3750 Face 9272 949 3080 4596 Face 9273 3127 4597 4378 Face 9274 3127 2365 4597 Face 9275 3127 4598 1546 Face 9276 3127 4378 4598 Face 9277 2766 4599 2316 Face 9278 2766 94 4599 Face 9279 3957 4600 3457 Face 9280 3957 3859 4600 Face 9281 2241 4601 3576 Face 9282 2241 3830 4601 Face 9283 1960 4602 3215 Face 9284 1960 2733 4602 Face 9285 718 4603 406 Face 9286 718 4566 4603 Face 9287 788 4604 1551 Face 9288 788 3856 4604 Face 9289 4936 4605 4473 Face 9290 4936 698 4605 Face 9291 190 4606 3176 Face 9292 190 4448 4606 Face 9293 435 4607 2667 Face 9294 435 660 4607 Face 9295 1941 4957 883 Face 9296 1941 3049 4957 Face 9297 4610 4609 2597 Face 9298 1375 4148 4609 Face 9299 1375 4610 2923 Face 9300 1375 4609 4610 Face 9301 2356 4611 4299 Face 9302 2356 2784 4611 Face 9303 2382 4612 2381 Face 9304 2382 3192 4612 Face 9305 725 4613 3993 Face 9306 725 402 4613 Face 9307 920 4614 3322 Face 9308 920 2058 4614 Face 9309 791 4615 2879 Face 9310 791 3654 4615 Face 9311 1346 4616 4139 Face 9312 1346 428 4616 Face 9313 1304 4617 4423 Face 9314 1304 4248 4617 Face 9315 400 4618 4382 Face 9316 4619 3002 4618 Face 9317 400 4619 4618 Face 9318 400 2557 4619 Face 9319 2628 4620 3547 Face 9320 2628 705 4620 Face 9321 1453 4621 3401 Face 9322 1453 363 4621 Face 9323 309 4622 1911 Face 9324 309 1046 4622 Face 9325 1451 4623 4577 Face 9326 1451 4116 4623 Face 9327 3395 4624 2627 Face 9328 3395 2864 4624 Face 9329 742 4625 3135 Face 9330 742 1794 4625 Face 9331 1633 4626 4518 Face 9332 1633 3708 4626 Face 9333 3745 4627 3123 Face 9334 3745 692 4627 Face 9335 2204 4628 2849 Face 9336 2204 3257 4628 Face 9337 906 4629 3449 Face 9338 906 4042 4629 Face 9339 304 4630 412 Face 9340 304 3804 4630 Face 9341 467 4631 2205 Face 9342 467 1876 4631 Face 9343 1066 4632 1889 Face 9344 1066 114 4632 Face 9345 829 4633 4110 Face 9346 829 1116 4633 Face 9347 1341 4634 680 Face 9348 1341 1634 4634 Face 9349 698 4635 3819 Face 9350 698 4936 4635 Face 9351 1334 4636 4183 Face 9352 1334 2290 4636 Face 9353 523 4637 3232 Face 9354 523 1624 4637 Face 9355 3332 4639 4343 Face 9356 3332 2047 4638 Face 9357 4638 4639 3332 Face 9358 4638 4343 4639 Face 9359 4233 4640 3263 Face 9360 4233 3673 4640 Face 9361 1858 4641 1859 Face 9362 1858 962 4641 Face 9363 1148 4642 693 Face 9364 4904 3421 4642 Face 9365 3078 4643 1086 Face 9366 3078 4100 4643 Face 9367 739 4644 964 Face 9368 739 447 4644 Face 9369 4262 4645 1964 Face 9370 4262 4198 4645 Face 9371 3760 4646 3109 Face 9372 3760 4609 4646 Face 9373 327 4647 2571 Face 9374 327 3656 4647 Face 9375 3524 4648 2096 Face 9376 3524 2155 4648 Face 9377 1671 4649 4547 Face 9378 1671 2116 4649 Face 9379 696 4650 2611 Face 9380 696 4151 4650 Face 9381 507 4651 1208 Face 9382 507 3396 4651 Face 9383 2095 4652 4924 Face 9384 2095 3994 4652 Face 9385 954 4653 2735 Face 9386 954 1282 4653 Face 9387 1507 4654 2284 Face 9388 1507 990 4654 Face 9389 1997 4655 4115 Face 9390 1997 2969 4655 Face 9391 1329 4656 2709 Face 9392 1329 3366 4656 Face 9393 1417 4657 3511 Face 9394 1417 3652 4657 Face 9395 1417 4658 2796 Face 9396 1417 3639 4658 Face 9397 1188 4659 112 Face 9398 1188 1433 4659 Face 9399 1603 4660 3012 Face 9400 1603 56 4660 Face 9401 1290 4661 2840 Face 9402 1290 3007 4661 Face 9403 354 4662 1599 Face 9404 354 3966 4662 Face 9405 1235 4663 4034 Face 9406 1235 4112 4663 Face 9407 673 4664 2697 Face 9408 673 1795 4664 Face 9409 896 4665 677 Face 9410 896 1390 4665 Face 9411 2474 4666 1451 Face 9412 2474 1239 4666 Face 9413 494 4667 1514 Face 9414 494 430 4667 Face 9415 2826 4668 2986 Face 9416 2826 3526 4668 Face 9417 1340 4669 1051 Face 9418 1340 1813 4669 Face 9419 2283 4670 286 Face 9420 2283 3391 4670 Face 9421 1965 4671 923 Face 9422 1965 2180 4671 Face 9423 2038 4672 4176 Face 9424 4893 2383 4672 Face 9425 1087 4673 4935 Face 9426 1087 258 4673 Face 9427 2599 4674 4125 Face 9428 2599 909 4674 Face 9429 1810 4675 2722 Face 9430 4689 2547 4675 Face 9431 1111 4676 2730 Face 9432 1111 4548 4676 Face 9433 368 4677 1185 Face 9434 368 600 4677 Face 9435 1064 4678 3455 Face 9436 1064 1641 4678 Face 9437 879 4679 2397 Face 9438 879 759 4679 Face 9439 458 4680 1921 Face 9440 4764 4442 4680 Face 9441 608 4681 3813 Face 9442 608 3330 4681 Face 9443 1630 4682 1717 Face 9444 1630 3968 4682 Face 9445 2336 4683 819 Face 9446 2336 913 4683 Face 9447 530 4684 719 Face 9448 530 1435 4684 Face 9449 2706 4685 3277 Face 9450 2706 4219 4685 Face 9451 2280 4686 3318 Face 9452 2280 2656 4686 Face 9453 4848 4687 1835 Face 9454 1688 2554 4687 Face 9455 2033 4688 1934 Face 9456 2033 416 4688 Face 9457 1810 4689 4675 Face 9458 1810 2546 4689 Face 9459 244 4690 3113 Face 9460 244 856 4691 Face 9461 4690 4691 2227 Face 9462 4690 244 4691 Face 9463 3339 4692 1302 Face 9464 3339 578 4692 Face 9465 1999 4693 2885 Face 9466 1999 942 4693 Face 9467 1527 4694 2018 Face 9468 1527 4315 4694 Face 9469 1857 4695 427 Face 9470 1857 1200 4695 Face 9471 2976 4696 1686 Face 9472 2976 3586 4696 Face 9473 1371 4697 4281 Face 9474 1371 423 4697 Face 9475 243 4698 3527 Face 9476 243 3843 4698 Face 9477 4871 4699 3953 Face 9478 3662 3835 4699 Face 9479 4591 4700 3118 Face 9480 4591 442 4700 Face 9481 2448 4701 146 Face 9482 2448 2455 4701 Face 9483 191 4702 3304 Face 9484 191 609 4702 Face 9485 3160 4703 1372 Face 9486 3160 1047 4703 Face 9487 3652 4704 4657 Face 9488 3652 3653 4704 Face 9489 1020 4705 2782 Face 9490 1020 3915 4705 Face 9491 1618 4706 4228 Face 9492 1618 2257 4706 Face 9493 1413 4707 2611 Face 9494 1413 4134 4707 Face 9495 1000 4708 388 Face 9496 1000 3938 4708 Face 9497 1088 4709 846 Face 9498 1088 1509 4709 Face 9499 4711 4710 4104 Face 9500 4711 3271 4710 Face 9501 1739 4711 4104 Face 9502 1739 3271 4711 Face 9503 3013 4712 666 Face 9504 3013 3200 4712 Face 9505 4506 4713 316 Face 9506 4506 514 4713 Face 9507 816 4714 707 Face 9508 816 1429 4714 Face 9509 332 4715 4203 Face 9510 332 4095 4715 Face 9511 1759 4716 2539 Face 9512 1759 316 4716 Face 9513 1513 4717 4258 Face 9514 1513 3074 4717 Face 9515 2827 4718 4087 Face 9516 2827 1472 4718 Face 9517 1908 4719 361 Face 9518 4816 3088 4719 Face 9519 133 4720 16 Face 9520 133 3126 4720 Face 9521 777 4721 338 Face 9522 777 2134 4721 Face 9523 2531 4722 1379 Face 9524 2531 2795 4722 Face 9525 426 4723 2754 Face 9526 426 1998 4723 Face 9527 2638 4724 3427 Face 9528 2638 2639 4724 Face 9529 789 4725 2517 Face 9530 789 528 4725 Face 9531 765 4726 2493 Face 9532 765 4655 4726 Face 9533 3714 4727 3666 Face 9534 3714 4760 4727 Face 9535 1884 4728 1604 Face 9536 1884 4540 4728 Face 9537 216 4729 2183 Face 9538 216 4216 4729 Face 9539 2078 4731 3361 Face 9540 2078 4114 4731 Face 9541 4730 4731 4114 Face 9542 4730 3361 4731 Face 9543 2346 4732 219 Face 9544 2346 1018 4732 Face 9545 531 4733 4229 Face 9546 531 3635 4733 Face 9547 1719 4734 1800 Face 9548 4735 987 4734 Face 9549 1719 4735 4734 Face 9550 1719 1013 4735 Face 9551 1277 4736 2343 Face 9552 1277 4213 4736 Face 9553 664 4737 2747 Face 9554 664 4744 4737 Face 9555 1963 4738 4126 Face 9556 1963 4273 4738 Face 9557 1753 4739 4325 Face 9558 1753 4324 4739 Face 9559 1402 4740 1867 Face 9560 1402 2857 4740 Face 9561 2707 4741 3687 Face 9562 2707 4453 4741 Face 9563 3710 4742 2390 Face 9564 3710 4312 4742 Face 9565 787 4743 3158 Face 9566 787 960 4743 Face 9567 3237 4744 3480 Face 9568 3237 4737 4744 Face 9569 1314 4745 4367 Face 9570 1314 3481 4745 Face 9571 1846 4746 3188 Face 9572 1846 3716 4746 Face 9573 165 4747 4100 Face 9574 165 3825 4747 Face 9575 355 4748 3483 Face 9576 355 4526 4748 Face 9577 1397 4749 1043 Face 9578 1397 4359 4749 Face 9579 3274 4750 3269 Face 9580 3274 3084 4750 Face 9581 441 4751 3318 Face 9582 441 2657 4751 Face 9583 415 4752 3908 Face 9584 4753 1186 4752 Face 9585 415 4753 4752 Face 9586 415 3192 4753 Face 9587 420 4754 3212 Face 9588 420 2907 4754 Face 9589 396 4755 2973 Face 9590 396 761 4755 Face 9591 2935 4756 1213 Face 9592 2935 1212 4756 Face 9593 320 4757 3514 Face 9594 320 3531 4757 Face 9595 1890 4758 4636 Face 9596 1890 2375 4758 Face 9597 753 4759 3720 Face 9598 753 2625 4759 Face 9599 1712 4760 3209 Face 9600 1712 4727 4760 Face 9601 563 4761 3165 Face 9602 563 1308 4761 Face 9603 825 4762 3874 Face 9604 825 4476 4762 Face 9605 2602 4763 1077 Face 9606 2602 3392 4763 Face 9607 458 4764 4680 Face 9608 458 3703 4764 Face 9609 2115 4765 3125 Face 9610 2115 4169 4765 Face 9611 536 4766 2811 Face 9612 536 2812 4766 Face 9613 2209 4767 529 Face 9614 2209 3203 4767 Face 9615 2077 4768 3694 Face 9616 2077 3683 4768 Face 9617 2424 4769 1041 Face 9618 2424 1827 4769 Face 9619 4438 4770 3366 Face 9620 4438 4437 4770 Face 9621 648 4771 2087 Face 9622 648 3191 4771 Face 9623 1892 4772 2626 Face 9624 1892 1141 4772 Face 9625 2682 4773 1519 Face 9626 2682 2824 4773 Face 9627 3319 4774 4228 Face 9628 3319 1059 4774 Face 9629 3292 4775 3305 Face 9630 3292 3293 4775 Face 9631 781 4776 2830 Face 9632 781 2089 4776 Face 9633 2467 4777 3123 Face 9634 2467 1919 4777 Face 9635 1928 4778 3838 Face 9636 1928 4516 4778 Face 9637 2365 4779 582 Face 9638 2365 3762 4779 Face 9639 1596 4780 200 Face 9640 1596 472 4780 Face 9641 1704 4781 1398 Face 9642 1704 2895 4781 Face 9643 958 4782 4599 Face 9644 958 1807 4782 Face 9645 844 4783 2864 Face 9646 844 2027 4783 Face 9647 2242 4784 3519 Face 9648 2242 123 4784 Face 9649 4012 4785 3013 Face 9650 4012 333 4785 Face 9651 2258 4786 4832 Face 9652 2258 4193 4786 Face 9653 261 4787 564 Face 9654 261 2385 4787 Face 9655 4418 4788 2614 Face 9656 4418 1989 4788 Face 9657 2417 4789 3581 Face 9658 2417 3724 4789 Face 9659 2417 4790 3724 Face 9660 2417 907 4790 Face 9661 708 4791 1806 Face 9662 708 2496 4791 Face 9663 112 4792 1188 Face 9664 4902 973 4792 Face 9665 1456 4793 2539 Face 9666 1456 3757 4793 Face 9667 1478 4794 4710 Face 9668 1478 2294 4794 Face 9669 4796 4795 4780 Face 9670 4796 2497 4795 Face 9671 472 4796 4780 Face 9672 472 2497 4796 Face 9673 2117 4797 2883 Face 9674 2117 4345 4797 Face 9675 4799 4798 2119 Face 9676 2651 3134 4798 Face 9677 2651 4799 1169 Face 9678 2651 4798 4799 Face 9679 1270 4800 986 Face 9680 1270 3117 4800 Face 9681 1768 4801 3883 Face 9682 1768 4044 4801 Face 9683 1320 4802 3822 Face 9684 1320 1502 4802 Face 9685 272 4803 2005 Face 9686 272 4056 4803 Face 9687 2887 4804 3656 Face 9688 2887 4803 4804 Face 9689 768 4805 3805 Face 9690 768 3698 4805 Face 9691 1398 4806 2050 Face 9692 1398 4781 4806 Face 9693 723 4807 1344 Face 9694 723 2414 4807 Face 9695 2786 4808 2623 Face 9696 2786 3243 4808 Face 9697 2141 4809 4046 Face 9698 2141 683 4809 Face 9699 681 4810 760 Face 9700 681 1782 4810 Face 9701 496 4811 1635 Face 9702 496 976 4811 Face 9703 430 4812 4667 Face 9704 430 2225 4812 Face 9705 4814 4813 2898 Face 9706 2897 3793 4813 Face 9707 2897 4814 1734 Face 9708 2897 4813 4814 Face 9709 758 4815 4692 Face 9710 4907 173 4815 Face 9711 1908 4816 4719 Face 9712 1908 1141 4816 Face 9713 614 4817 3508 Face 9714 614 2123 4817 Face 9715 626 4818 567 Face 9716 626 284 4818 Face 9717 2397 4819 1430 Face 9718 2397 4679 4819 Face 9719 396 4820 1781 Face 9720 396 2973 4820 Face 9721 177 4821 2471 Face 9722 177 3657 4821 Face 9723 2913 4822 3943 Face 9724 2913 807 4822 Face 9725 514 4823 4713 Face 9726 514 2156 4823 Face 9727 711 4824 4344 Face 9728 4825 1709 4824 Face 9729 711 4825 4824 Face 9730 711 2736 4825 Face 9731 709 4826 405 Face 9732 709 2606 4826 Face 9733 3272 4827 1829 Face 9734 3272 341 4827 Face 9735 4829 4828 1196 Face 9736 819 4683 4828 Face 9737 819 4829 4102 Face 9738 819 4828 4829 Face 9739 1113 4830 3918 Face 9740 1113 3405 4830 Face 9741 924 4831 1387 Face 9742 924 2242 4831 Face 9743 1055 4832 4786 Face 9744 1055 2040 4832 Face 9745 3694 4833 2076 Face 9746 3694 2900 4833 Face 9747 2525 4834 3490 Face 9748 2525 2675 4834 Face 9749 1109 4835 1537 Face 9750 1109 611 4835 Face 9751 1442 4836 2765 Face 9752 1442 2304 4836 Face 9753 2317 4837 391 Face 9754 2317 4331 4837 Face 9755 806 4838 3205 Face 9756 806 2162 4838 Face 9757 1212 4839 4756 Face 9758 1212 627 4840 Face 9759 4839 4840 627 Face 9760 4839 1212 4840 Face 9761 1802 4841 4513 Face 9762 1802 733 4841 Face 9763 785 4842 3487 Face 9764 785 1123 4842 Face 9765 785 4843 4503 Face 9766 785 3487 4843 Face 9767 1902 4844 1391 Face 9768 1902 4838 4844 Face 9769 1200 4845 4695 Face 9770 1200 4427 4845 Face 9771 1753 4846 4014 Face 9772 1753 2078 4846 Face 9773 138 4847 3697 Face 9774 138 4420 4847 Face 9775 1688 4848 2918 Face 9776 1688 4687 4848 Face 9777 2919 4849 4362 Face 9778 2919 3200 4849 Face 9779 437 4850 3589 Face 9780 437 465 4850 Face 9781 3368 4851 4119 Face 9782 3368 2622 4851 Face 9783 1265 4852 4368 Face 9784 1265 1045 4852 Face 9785 2239 4853 2240 Face 9786 2239 4498 4853 Face 9787 1474 4854 4408 Face 9788 1474 1006 4854 Face 9789 668 4855 3970 Face 9790 668 1090 4855 Face 9791 668 4856 1090 Face 9792 668 2665 4856 Face 9793 525 4857 3103 Face 9794 525 4346 4857 Face 9795 224 4858 4859 Face 9796 224 60 4858 Face 9797 3 4859 4858 Face 9798 3 107 4859 Face 9799 1729 4860 4501 Face 9800 1729 3826 4860 Face 9801 2414 4861 1795 Face 9802 2414 723 4861 Face 9803 1180 4862 1916 Face 9804 1180 356 4862 Face 9805 1072 4863 2988 Face 9806 1072 939 4863 Face 9807 978 4864 3845 Face 9808 978 2949 4864 Face 9809 2743 4865 4058 Face 9810 2743 560 4865 Face 9811 411 4866 3325 Face 9812 411 3367 4866 Face 9813 1281 4867 3166 Face 9814 1281 3970 4867 Face 9815 3834 4868 1725 Face 9816 3834 3833 4868 Face 9817 1140 4869 2974 Face 9818 1140 3544 4869 Face 9819 1548 4870 3711 Face 9820 1548 2028 4870 Face 9821 3662 4871 3956 Face 9822 3662 4699 4871 Face 9823 2235 4872 989 Face 9824 2235 2521 4872 Face 9825 694 4873 4360 Face 9826 694 624 4873 Face 9827 2142 4874 966 Face 9828 2142 348 4874 Face 9829 2495 4875 4231 Face 9830 2495 982 4875 Face 9831 1153 4876 2049 Face 9832 1153 2660 4876 Face 9833 727 4877 2207 Face 9834 727 1617 4877 Face 9835 479 4878 1100 Face 9836 479 1514 4878 Face 9837 2708 4879 4185 Face 9838 2708 4077 4879 Face 9839 241 4880 792 Face 9840 241 2001 4880 Face 9841 2494 4881 2495 Face 9842 2494 3526 4881 Face 9843 1131 4882 2466 Face 9844 1131 160 4882 Face 9845 904 4883 4575 Face 9846 904 4356 4883 Face 9847 2814 4884 3868 Face 9848 2814 1599 4884 Face 9849 1051 4885 3246 Face 9850 1051 4669 4885 Face 9851 114 4886 1425 Face 9852 114 1066 4886 Face 9853 1366 4887 2082 Face 9854 1366 4180 4887 Face 9855 340 4888 4058 Face 9856 340 4144 4888 Face 9857 1691 4889 2216 Face 9858 1691 332 4889 Face 9859 1222 4890 2396 Face 9860 1222 901 4890 Face 9861 831 4891 4203 Face 9862 831 2052 4891 Face 9863 667 4892 1403 Face 9864 667 2009 4892 Face 9865 2038 4893 4672 Face 9866 2038 3975 4893 Face 9867 1124 4894 1110 Face 9868 1124 2222 4894 Face 9869 1135 4895 2962 Face 9870 1135 2936 4895 Face 9871 4897 4896 2690 Face 9872 1385 3810 4896 Face 9873 1385 4897 4454 Face 9874 1385 4896 4897 Face 9875 3888 4898 2325 Face 9876 3888 842 4898 Face 9877 279 4899 1363 Face 9878 279 2053 4899 Face 9879 2200 4900 3700 Face 9880 2200 3701 4900 Face 9881 1580 4901 272 Face 9882 1580 3081 4901 Face 9883 112 4902 4792 Face 9884 112 158 4902 Face 9885 3217 4903 2233 Face 9886 3217 2314 4903 Face 9887 1148 4904 4642 Face 9888 1148 3116 4904 Face 9889 3415 4905 2913 Face 9890 3415 459 4905 Face 9891 3511 4906 3510 Face 9892 3511 4526 4906 Face 9893 758 4907 4815 Face 9894 758 2099 4907 Face 9895 77 4908 2088 Face 9896 77 3964 4908 Face 9897 3248 4909 3762 Face 9898 3248 3249 4909 Face 9899 137 4910 3244 Face 9900 137 1353 4910 Face 9901 578 4911 4692 Face 9902 578 4442 4911 Face 9903 1850 4912 388 Face 9904 1850 2328 4912 Face 9905 866 4913 161 Face 9906 866 1906 4913 Face 9907 2321 4914 3793 Face 9908 2321 2813 4914 Face 9909 1933 4915 2804 Face 9910 1933 2829 4915 Face 9911 392 4916 4959 Face 9912 392 3183 4916 Face 9913 4916 4917 1756 Face 9914 4916 3183 4917 Face 9915 4919 4918 4192 Face 9916 801 3026 4918 Face 9917 801 4919 1582 Face 9918 801 4918 4919 Face 9919 213 4920 2724 Face 9920 213 2153 4920 Face 9921 1777 4921 2674 Face 9922 1777 2983 4921 Face 9923 2289 4922 4273 Face 9924 2289 3459 4922 Face 9925 2633 4923 4951 Face 9926 2633 401 4923 Face 9927 3691 4924 566 Face 9928 3691 2819 4924 Face 9929 383 4925 3103 Face 9930 383 2773 4925 Face 9931 2419 4926 493 Face 9932 2419 2507 4926 Face 9933 2960 4927 1469 Face 9934 2960 2961 4927 Face 9935 1889 4928 3258 Face 9936 1889 3863 4928 Face 9937 1952 4929 1232 Face 9938 1952 502 4929 Face 9939 1271 4930 4522 Face 9940 1271 3006 4930 Face 9941 635 4931 4265 Face 9942 635 3706 4931 Face 9943 1084 4932 3439 Face 9944 1084 3732 4932 Face 9945 1016 4933 4245 Face 9946 1016 1603 4933 Face 9947 2567 4934 910 Face 9948 2567 2929 4934 Face 9949 957 4935 4673 Face 9950 957 2229 4935 Face 9951 699 4936 4473 Face 9952 699 4635 4936 Face 9953 2982 4937 3558 Face 9954 2982 2564 4937 Face 9955 1976 4938 3787 Face 9956 1976 1091 4938 Face 9957 370 4939 327 Face 9958 370 1656 4939 Face 9959 370 4940 1656 Face 9960 370 2570 4940 Face 9961 1833 4941 2820 Face 9962 1833 814 4941 Face 9963 2452 4942 979 Face 9964 2452 269 4942 Face 9965 3099 4943 1212 Face 9966 3099 2256 4943 Face 9967 2176 4944 3562 Face 9968 2176 187 4944 Face 9969 2717 4945 1613 Face 9970 2717 4843 4945 Face 9971 2075 4946 2676 Face 9972 2075 2416 4946 Face 9973 1458 4947 3947 Face 9974 1458 4581 4947 Face 9975 181 4948 376 Face 9976 181 1613 4948 Face 9977 790 4949 2887 Face 9978 790 2954 4949 Face 9979 1782 4950 4810 Face 9980 1782 1193 4950 Face 9981 1744 4951 1334 Face 9982 1744 2633 4951 Face 9983 1849 4952 3304 Face 9984 1849 2268 4952 Face 9985 632 4953 529 Face 9986 632 3270 4953 Face 9987 2177 4954 3602 Face 9988 2177 2687 4954 Face 9989 2370 4955 3116 Face 9990 2370 788 4955 Face 9991 3008 4956 3113 Face 9992 3008 3504 4956 Face 9993 4608 4957 3049 Face 9994 4608 2546 4957 Face 9995 1323 4958 2071 Face 9996 1323 3321 4958 Face 9997 1756 4959 4916 Face 9998 1756 2789 4959 Face 9999 577 4960 2791 Face 10000 577 2022 4960 ================================================ FILE: models/dragon1K.m ================================================ Vertex 1 0.0426847 0.077947 0.0194524 Vertex 2 -0.0700004 0.150208 -0.0137753 Vertex 3 -0.0654391 0.153829 -0.00326653 Vertex 4 -0.0698508 0.150233 -0.0138021 Vertex 5 0.00614719 0.0937321 -0.0178742 Vertex 6 -0.0693374 0.156037 -0.0182349 Vertex 7 0.0257745 0.0597182 0.00744148 Vertex 8 0.0358972 0.0845348 -0.00191574 Vertex 9 0.011916 0.0762008 -0.0136377 Vertex 10 0.0119182 0.0762192 -0.0136841 Vertex 11 0.0119202 0.0762902 -0.0136208 Vertex 12 0.0357587 0.0846243 -0.00186089 Vertex 13 0.0119313 0.0762581 -0.0137207 Vertex 14 0.0119352 0.0763849 -0.0138214 Vertex 15 0.0275682 0.0663484 0.0116963 Vertex 16 0.0253856 0.0589582 0.0074633 Vertex 17 0.0358415 0.0846433 -0.00192396 Vertex 18 0.0256428 0.0598314 0.00751453 Vertex 19 0.044582 0.0843205 0.0187839 Vertex 20 0.0446653 0.0843993 0.0187539 Vertex 21 0.0256842 0.0598028 0.00743018 Vertex 22 0.0359447 0.0852205 -0.00152287 Vertex 23 0.0443358 0.0858837 0.0188476 Vertex 24 0.0108803 0.076515 -0.0141045 Vertex 25 0.0429743 0.079289 0.0187858 Vertex 26 -0.0558825 0.144131 -0.0144398 Vertex 27 0.0234132 0.0609752 0.00754347 Vertex 28 0.0122594 0.0812961 -0.0144974 Vertex 29 -0.0558627 0.144219 -0.0146213 Vertex 30 0.0122541 0.0812747 -0.0144419 Vertex 31 0.012233 0.0810645 -0.0144458 Vertex 32 0.0119964 0.0811458 -0.0144995 Vertex 33 0.0163617 0.0650257 0.0028451 Vertex 34 0.0231935 0.0610195 0.00748457 Vertex 35 0.0122318 0.0810871 -0.0145736 Vertex 36 0.0276219 0.0666358 0.0120598 Vertex 37 0.0161787 0.0652845 0.00295152 Vertex 38 0.0454897 0.0854233 0.0200736 Vertex 39 0.0232942 0.0611942 0.0075198 Vertex 40 0.0442687 0.0859376 0.0187689 Vertex 41 0.0442824 0.0858727 0.0188473 Vertex 42 0.0352826 0.119001 0.00641062 Vertex 43 0.0446106 0.0842065 0.0187412 Vertex 44 -0.0695441 0.156022 -0.0180847 Vertex 45 -0.0558532 0.14423 -0.0147975 Vertex 46 0.0446136 0.0843179 0.0188076 Vertex 47 0.0647362 0.093854 -0.00273571 Vertex 48 0.0119258 0.0763824 -0.0135826 Vertex 49 -0.0565903 0.14418 -0.0145865 Vertex 50 0.0163673 0.0649547 0.0027857 Vertex 51 -0.00437464 0.149382 -0.02158 Vertex 52 0.0443037 0.0858149 0.0188063 Vertex 53 0.0658652 0.104017 -0.00720835 Vertex 54 -0.0697664 0.151115 -0.0154794 Vertex 55 0.0442057 0.084754 -0.00907686 Vertex 56 -0.0698508 0.155923 -0.0180001 Vertex 57 0.0650439 0.0944827 -0.00157173 Vertex 58 0.0056597 0.0905095 -0.0127824 Vertex 59 -0.00820543 0.0746189 0.00448974 Vertex 60 -0.0657964 0.153842 -0.00400802 Vertex 61 0.0275605 0.0663264 0.0116952 Vertex 62 0.0667805 0.134478 -0.0189734 Vertex 63 -0.0773317 0.164989 -0.00475539 Vertex 64 0.0441778 0.0854486 0.0184493 Vertex 65 0.027179 0.0654494 0.0110168 Vertex 66 0.0348537 0.0975967 0.0135757 Vertex 67 -0.049076 0.179505 -0.0216301 Vertex 68 0.0238718 0.0557571 0.00459486 Vertex 69 0.0442439 0.0860462 0.0187318 Vertex 70 -0.0672045 0.153397 -0.00381031 Vertex 71 -0.0693083 0.156004 -0.0181685 Vertex 72 0.0257592 0.0598077 0.00765418 Vertex 73 0.0181869 0.122395 -0.0210975 Vertex 74 0.0433825 0.0800739 0.0181993 Vertex 75 -0.0762098 0.165182 -0.00178802 Vertex 76 -0.0760143 0.165122 -0.00164998 Vertex 77 0.0609677 0.0825985 0.00625 Vertex 78 -0.0669222 0.153394 -0.00425434 Vertex 79 -0.0674579 0.153455 -0.00387949 Vertex 80 -0.0671344 0.153451 -0.0043895 Vertex 81 -0.0153299 0.0725662 -0.0296598 Vertex 82 0.0274244 0.0662655 0.0115902 Vertex 83 0.064598 0.0947578 -0.0011528 Vertex 84 -0.0671209 0.153252 -0.00414989 Vertex 85 -0.0670754 0.153463 -0.00398597 Vertex 86 0.0303669 0.117849 -0.0112957 Vertex 87 0.043498 0.0795871 0.0188652 Vertex 88 0.0644772 0.0931869 -0.00193549 Vertex 89 -0.0783364 0.0900759 -0.0224203 Vertex 90 0.0169935 0.0665806 0.00734289 Vertex 91 -0.0699661 0.150255 -0.0137663 Vertex 92 0.00875395 0.10121 -0.0202371 Vertex 93 0.0645312 0.0932971 -0.00199045 Vertex 94 0.0311803 0.0902627 0.0101671 Vertex 95 0.035307 0.119354 0.00659528 Vertex 96 -0.0691586 0.156082 -0.017871 Vertex 97 0.0275513 0.0663778 0.0117479 Vertex 98 0.0315994 0.0587784 0.0221202 Vertex 99 -0.0558271 0.144117 -0.0147432 Vertex 100 -0.0762141 0.165113 -0.00160396 Vertex 101 -0.0762188 0.165279 -0.00175708 Vertex 102 0.0649297 0.0945813 -0.00173721 Vertex 103 0.0274257 0.0660569 0.0113521 Vertex 104 0.0352878 0.119016 0.00665232 Vertex 105 -0.0566062 0.146009 -0.0161785 Vertex 106 0.0257228 0.0598352 0.00744908 Vertex 107 -0.0656451 0.153888 -0.00377984 Vertex 108 0.0343299 0.0900589 0.0245302 Vertex 109 -0.069565 0.155994 -0.0181655 Vertex 110 0.0231131 0.0623926 0.00796008 Vertex 111 0.033821 0.113685 0.00416425 Vertex 112 -0.0802679 0.16546 0.00784167 Vertex 113 -0.0550989 0.143835 -0.0146987 Vertex 114 0.0363593 0.0912945 -0.00301161 Vertex 115 -0.069657 0.156045 -0.0182895 Vertex 116 0.0154087 0.0628354 0.00268985 Vertex 117 0.00612364 0.093589 -0.0179351 Vertex 118 -0.0659724 0.153415 -0.00246964 Vertex 119 0.0351419 0.118805 0.007042 Vertex 120 0.0428444 0.0795786 0.0188241 Vertex 121 0.0425138 0.077432 0.0199952 Vertex 122 0.016251 0.0647522 0.00273069 Vertex 123 0.0635712 0.0668207 0.027428 Vertex 124 0.0232358 0.0610505 0.00746139 Vertex 125 0.0431803 0.0796838 0.0187306 Vertex 126 0.0447166 0.0843932 0.0186416 Vertex 127 -0.0727133 0.14834 -0.0112227 Vertex 128 0.0358213 0.0846732 -0.00191888 Vertex 129 0.0666786 0.133857 -0.0147892 Vertex 130 0.0435601 0.0876886 0.0183317 Vertex 131 0.0646217 0.0939776 -0.00218335 Vertex 132 0.0352824 0.119194 0.00657663 Vertex 133 0.025148 0.0587998 0.00756686 Vertex 134 -0.0557595 0.14431 -0.0144439 Vertex 135 0.0442774 0.0861774 0.0187719 Vertex 136 0.00618193 0.0933352 -0.0179135 Vertex 137 0.0432167 0.0790472 0.0189669 Vertex 138 0.0158325 0.0677719 0.0036575 Vertex 139 0.0311304 0.0802692 -0.0354021 Vertex 140 -0.0699273 0.150187 -0.0136737 Vertex 141 0.0435223 0.0793642 0.0191667 Vertex 142 -0.0659187 0.154209 -0.00412103 Vertex 143 0.0411746 0.0778266 0.019688 Vertex 144 -0.059025 0.156905 -0.0209177 Vertex 145 0.0655713 0.0819597 0.00479666 Vertex 146 0.0273944 0.0665106 0.0117735 Vertex 147 0.0646998 0.0939083 -0.00198213 Vertex 148 0.0018213 0.100751 -0.0313258 Vertex 149 -0.07569 0.165311 -0.00123138 Vertex 150 0.0358229 0.084781 -0.00195952 Vertex 151 0.0163067 0.0650397 0.00286133 Vertex 152 0.0749755 0.0651107 0.00121577 Vertex 153 0.0137459 0.0785245 -0.00617058 Vertex 154 0.0429401 0.0783035 0.0193874 Vertex 155 -0.0699969 0.150312 -0.0137652 Vertex 156 0.00617349 0.0930135 -0.0178882 Vertex 157 0.0194412 0.129385 -0.0326285 Vertex 158 -0.0717622 0.164104 -0.000326263 Vertex 159 -0.0324476 0.099203 -0.0147245 Vertex 160 -0.0454377 0.0587781 0.0370134 Vertex 161 0.0103868 0.0679826 -0.0181143 Vertex 162 -0.0385147 0.168451 0.000541928 Vertex 163 -0.0708177 0.179909 -0.00473465 Vertex 164 -0.0847336 0.0660988 -0.00170299 Vertex 165 -0.0216159 0.136816 -0.0241447 Vertex 166 0.0421194 0.125987 -0.00110032 Vertex 167 0.0278143 0.160653 -0.018536 Vertex 168 -0.0536517 0.142376 -0.0250031 Vertex 169 -0.0544225 0.114978 0.00796353 Vertex 170 -0.0813534 0.142465 -0.0144296 Vertex 171 -0.0845388 0.138818 -0.00852711 Vertex 172 -0.0994996 0.156243 0.00507291 Vertex 173 -0.0530686 0.143395 -0.00895541 Vertex 174 0.0611595 0.0535446 -0.0249801 Vertex 175 0.0370073 0.116935 -0.0319087 Vertex 176 -0.076553 0.156879 -0.019603 Vertex 177 -0.0702354 0.124483 -0.0048582 Vertex 178 -0.0479959 0.0804544 0.0247983 Vertex 179 -0.0226237 0.0964518 0.00300877 Vertex 180 -0.0785629 0.149313 -0.00561722 Vertex 181 -0.0749894 0.15011 0.00881622 Vertex 182 -0.0319185 0.145652 -0.00125225 Vertex 183 0.0364097 0.123383 0.00737705 Vertex 184 0.0354051 0.119292 0.00652427 Vertex 185 0.011677 0.145555 -0.0362428 Vertex 186 -0.0382081 0.139824 -0.030028 Vertex 187 -0.0507137 0.139054 -0.0238205 Vertex 188 0.0243356 0.0560191 0.0187657 Vertex 189 -0.055838 0.0895987 -0.0234375 Vertex 190 0.079604 0.0913942 0.019654 Vertex 191 0.0439377 0.0895446 -0.0314658 Vertex 192 0.0449211 0.0718621 -0.0338783 Vertex 193 0.0129558 0.0850146 -0.0123994 Vertex 194 -0.053244 0.147078 0.000374961 Vertex 195 0.0446205 0.0844028 0.019139 Vertex 196 0.0479692 0.0968994 0.015679 Vertex 197 -0.018547 0.0645933 0.0207868 Vertex 198 -0.0241582 0.0533546 0.00505242 Vertex 199 -0.0934327 0.14365 0.0212099 Vertex 200 0.0140372 0.126294 -0.00616647 Vertex 201 -0.0636262 0.0886668 -0.0372807 Vertex 202 -0.0969306 0.175613 0.00320718 Vertex 203 -0.0358607 0.173542 -0.0263511 Vertex 204 -0.0221551 0.0954759 -0.0322654 Vertex 205 -0.0378728 0.064856 -0.0384175 Vertex 206 -0.0320225 0.0543998 -0.0247633 Vertex 207 0.0568064 0.145005 -0.0131547 Vertex 208 -0.0847486 0.0878039 0.0107292 Vertex 209 -0.045944 0.0991396 -0.00759843 Vertex 210 -0.067756 0.0697729 -0.0338768 Vertex 211 -0.0566095 0.0734758 0.0379291 Vertex 212 0.0040961 0.149303 -0.00623135 Vertex 213 -0.0287276 0.150407 -0.0303171 Vertex 214 0.0267468 0.0861129 -0.00336572 Vertex 215 -0.0586004 0.0547038 0.0109921 Vertex 216 -0.0674944 0.0537878 0.0332831 Vertex 217 -0.0417661 0.064223 0.0176682 Vertex 218 0.0624699 0.0640698 -0.0178876 Vertex 219 0.0865424 0.0885888 0.00881253 Vertex 220 -0.048249 0.157602 0.00261054 Vertex 221 -0.0688203 0.0687943 0.0200169 Vertex 222 -0.0523837 0.159873 0.000520146 Vertex 223 -0.0652588 0.153748 -0.00381984 Vertex 224 -0.0643863 0.154311 -0.003958 Vertex 225 -0.0691191 0.155952 -0.0183035 Vertex 226 -0.058135 0.154618 -0.0163518 Vertex 227 0.012074 0.0813837 -0.014722 Vertex 228 0.0154393 0.0917242 -0.0248719 Vertex 229 0.0789241 0.124373 -0.0106087 Vertex 230 0.0740512 0.127271 -0.0223449 Vertex 231 0.0567802 0.109216 -0.0292671 Vertex 232 0.0308661 0.0562398 0.0140038 Vertex 233 -0.04016 0.0900462 0.0100048 Vertex 234 0.0939098 0.149953 -0.00884179 Vertex 235 0.0755697 0.145097 -0.00610181 Vertex 236 -0.024037 0.0607682 -0.0408129 Vertex 237 0.0332658 0.152294 -0.00467124 Vertex 238 -0.0458484 0.177775 -0.00307329 Vertex 239 0.0384444 0.148173 -0.0357799 Vertex 240 -0.0118253 0.0585289 -0.00492733 Vertex 241 -0.0533189 0.162359 -0.0311789 Vertex 242 0.0100934 0.0589887 0.00534269 Vertex 243 0.0623051 0.11756 -0.00950182 Vertex 244 0.0643343 0.111124 -0.0109666 Vertex 245 0.0805827 0.090328 -0.004854 Vertex 246 -0.0733551 0.161793 0.0165761 Vertex 247 -0.099898 0.173481 -0.00901404 Vertex 248 -0.075993 0.165279 -0.00170154 Vertex 249 -0.0942965 0.162136 -0.00451331 Vertex 250 0.0464284 0.103127 0.0227388 Vertex 251 0.00924683 0.0665252 0.0216136 Vertex 252 0.0420544 0.06337 -0.0306221 Vertex 253 -0.0722905 0.170022 0.00443592 Vertex 254 -0.0809381 0.177647 -0.00175191 Vertex 255 0.0936874 0.133858 -0.00878446 Vertex 256 0.091579 0.130137 -0.0125941 Vertex 257 0.0617185 0.0557266 0.0128017 Vertex 258 0.0328223 0.0546378 -0.049039 Vertex 259 0.034898 0.0799025 0.00259474 Vertex 260 0.0291955 0.0697161 0.0163729 Vertex 261 0.0427806 0.0770015 0.0198323 Vertex 262 0.0273489 0.0664195 0.0117569 Vertex 263 0.0276216 0.0665642 0.0121712 Vertex 264 -0.065849 0.0622212 -0.0271475 Vertex 265 -0.0810252 0.0685964 -0.0158873 Vertex 266 -0.088346 0.0566164 -0.0247799 Vertex 267 -0.0825003 0.0576556 -0.0358679 Vertex 268 -0.035223 0.158631 -0.0401654 Vertex 269 -0.0320682 0.172715 -0.0340866 Vertex 270 -0.0396622 0.174061 -0.0374572 Vertex 271 -0.0870846 0.0639928 -0.036266 Vertex 272 0.0675013 0.102729 0.00550438 Vertex 273 0.0225887 0.0633421 0.0176351 Vertex 274 -0.0220003 0.1608 -0.0126876 Vertex 275 0.0500638 0.155907 -0.0216652 Vertex 276 -0.102674 0.146638 0.00606691 Vertex 277 0.0122626 0.0810003 -0.0143889 Vertex 278 0.0249746 0.0545305 -0.0241409 Vertex 279 -0.0586727 0.170465 -0.0282614 Vertex 280 -0.0418005 0.0869862 -0.0217555 Vertex 281 0.0355541 0.0632531 -0.0503587 Vertex 282 -0.00773972 0.162798 -0.00814775 Vertex 283 -0.0323547 0.177521 -0.00865744 Vertex 284 -0.0141732 0.166065 -0.00978416 Vertex 285 -0.0120693 0.171266 -0.00935746 Vertex 286 -0.069242 0.142186 0.0158646 Vertex 287 -0.0452721 0.181391 -0.012756 Vertex 288 -0.0060217 0.192819 -0.0309195 Vertex 289 0.0384994 0.120085 0.00574021 Vertex 290 0.0385754 0.10461 0.0255487 Vertex 291 -0.0730361 0.0585184 -0.0159704 Vertex 292 -0.0431154 0.0669724 0.0275478 Vertex 293 -0.0150836 0.0534687 0.0274685 Vertex 294 -0.0234232 0.15673 -0.0171254 Vertex 295 0.0535296 0.0547164 -0.0122812 Vertex 296 0.0112576 0.0764302 -0.0132845 Vertex 297 0.0167169 0.065944 0.000905449 Vertex 298 0.0753917 0.0648915 0.0223037 Vertex 299 0.0333914 0.133245 -0.00298706 Vertex 300 -0.08865 0.086616 -0.010114 Vertex 301 -0.0547857 0.100145 -0.0211789 Vertex 302 0.0176348 0.0772478 -0.0333903 Vertex 303 0.0248139 0.0688059 -0.0371254 Vertex 304 -0.0418959 0.052285 -0.0399166 Vertex 305 -0.0766024 0.0702364 0.0151039 Vertex 306 0.0611026 0.105422 -0.0140731 Vertex 307 -0.104657 0.142893 -0.0039265 Vertex 308 -0.0858174 0.176738 0.0153697 Vertex 309 -0.060409 0.0536814 -0.0145811 Vertex 310 -0.0783653 0.0688842 -0.0234126 Vertex 311 -0.0434322 0.0853281 0.0230432 Vertex 312 -0.0395074 0.070082 0.0267905 Vertex 313 -0.0300795 0.0533978 0.0209774 Vertex 314 -0.0743902 0.108928 0.00890992 Vertex 315 0.0707011 0.0533009 -0.00834904 Vertex 316 -0.0669878 0.0734885 -0.0295481 Vertex 317 0.0343601 0.132754 -0.033867 Vertex 318 -0.00408861 0.18919 -0.0287317 Vertex 319 -0.0241158 0.17536 -0.00614887 Vertex 320 -0.0421749 0.144712 -0.0340169 Vertex 321 -0.0593869 0.0543176 0.0149045 Vertex 322 0.0326964 0.0621658 0.0174544 Vertex 323 0.0425056 0.0778828 0.0198482 Vertex 324 -0.0654954 0.17542 0.00667666 Vertex 325 -0.0334488 0.177712 -0.0156059 Vertex 326 -0.00416268 0.192432 -0.0288008 Vertex 327 0.0677693 0.128202 -0.0108873 Vertex 328 0.0758526 0.149135 -0.0130239 Vertex 329 -0.0233307 0.0546215 0.00793462 Vertex 330 -0.0391858 0.0549833 0.00373724 Vertex 331 -0.0329941 0.175389 -0.024602 Vertex 332 -0.0726698 0.174691 -0.0203611 Vertex 333 0.00601661 0.0664443 0.00997178 Vertex 334 -0.0200533 0.150132 -0.0100239 Vertex 335 0.0713062 0.0747758 -0.000528598 Vertex 336 -0.023931 0.130863 -0.0192734 Vertex 337 0.0411171 0.0749232 0.016818 Vertex 338 0.0481553 0.0791353 -0.00419628 Vertex 339 0.0470012 0.0530785 0.0193218 Vertex 340 0.028132 0.0672231 -0.048624 Vertex 341 -0.103257 0.153148 0.0122142 Vertex 342 -0.0563721 0.154357 -0.0263118 Vertex 343 -0.0748725 0.161936 -0.0186973 Vertex 344 -0.0943128 0.145899 0.0238758 Vertex 345 -0.0429308 0.144412 0.0014772 Vertex 346 -0.0475007 0.138619 -0.00175567 Vertex 347 -0.0138866 0.0929959 0.00553812 Vertex 348 -0.00789513 0.0650087 0.0196652 Vertex 349 -0.0238413 0.0736411 0.0146673 Vertex 350 -0.0208906 0.0803487 0.012126 Vertex 351 0.0496653 0.121611 -0.0339889 Vertex 352 -0.092251 0.174354 0.0152339 Vertex 353 0.0265719 0.0792823 -0.0370835 Vertex 354 0.0219348 0.0535048 -0.0128763 Vertex 355 0.0117856 0.135489 -0.0020565 Vertex 356 -0.0464472 0.176749 -0.027201 Vertex 357 -0.0426488 0.0970166 -0.0109999 Vertex 358 0.0306178 0.0845578 0.00135343 Vertex 359 0.028867 0.120825 -0.0187229 Vertex 360 0.062304 0.08443 0.021324 Vertex 361 -0.00427816 0.0759494 -0.0238841 Vertex 362 -0.000541483 0.109826 -0.034662 Vertex 363 0.0597633 0.0670895 -0.00728524 Vertex 364 -0.0192855 0.126153 -0.0163139 Vertex 365 0.0199103 0.0811584 0.0113768 Vertex 366 -0.014052 0.185173 -0.0307044 Vertex 367 -0.0382126 0.185166 -0.0238273 Vertex 368 -0.0735208 0.171841 -0.0182164 Vertex 369 -0.0631388 0.0729037 0.0387861 Vertex 370 0.0770522 0.121985 -0.00824373 Vertex 371 -0.0719284 0.142494 0.0122221 Vertex 372 -0.0792659 0.10862 -0.0165161 Vertex 373 0.0427281 0.0735193 0.0157122 Vertex 374 0.0413267 0.0693511 0.0199724 Vertex 375 -0.0172808 0.153822 -0.00494297 Vertex 376 -0.0883844 0.153364 0.013546 Vertex 377 0.0670528 0.0537631 0.00637291 Vertex 378 -0.070886 0.0538556 0.000850248 Vertex 379 0.0363135 0.0539588 0.0058825 Vertex 380 -0.0927561 0.181208 0.00147937 Vertex 381 0.0660166 0.133742 -0.0160788 Vertex 382 0.049229 0.156254 -0.0175047 Vertex 383 0.0067152 0.0567098 0.0267035 Vertex 384 -0.0262906 0.14941 -0.0407265 Vertex 385 -0.0696193 0.150253 -0.013736 Vertex 386 -0.0844338 0.148524 -0.00536644 Vertex 387 0.0448541 0.0785038 -0.016474 Vertex 388 -0.07851 0.0628453 -0.0419598 Vertex 389 -0.0612295 0.165675 0.0105113 Vertex 390 -0.0219055 0.167019 -0.0417417 Vertex 391 -0.0196622 0.0549202 -0.018326 Vertex 392 -0.00603806 0.131224 -0.0322061 Vertex 393 -0.0319466 0.0961764 -0.0107761 Vertex 394 -0.0107647 0.173695 -0.0119902 Vertex 395 -0.0260845 0.0762342 -0.0369147 Vertex 396 -0.0344032 0.0717168 -0.0309867 Vertex 397 -0.022995 0.16207 -0.0251542 Vertex 398 0.0466415 0.0671277 -0.0369688 Vertex 399 0.0409771 0.0765522 -0.0347795 Vertex 400 0.0337886 0.0656809 -0.0316308 Vertex 401 0.0237007 0.160539 -0.0231436 Vertex 402 -0.00993119 0.0711184 0.00584154 Vertex 403 -0.0453267 0.0535451 0.0295096 Vertex 404 -0.0448573 0.172057 0.00306094 Vertex 405 -0.0426196 0.16423 0.00351818 Vertex 406 0.0610894 0.131797 -0.0272725 Vertex 407 0.07583 0.0583669 -0.00588114 Vertex 408 -0.0455547 0.0768558 0.0303777 Vertex 409 -0.0650809 0.0971321 -0.0239599 Vertex 410 0.0500153 0.139614 -0.00264704 Vertex 411 -0.0534771 0.0973068 0.013163 Vertex 412 -0.027361 0.0526746 -0.0355765 Vertex 413 0.0382651 0.0535064 -0.0156211 Vertex 414 -0.0703673 0.0991855 -0.0215085 Vertex 415 0.0672712 0.116399 -0.016903 Vertex 416 0.00124879 0.153063 -0.0191195 Vertex 417 0.0429958 0.0824741 0.0160638 Vertex 418 0.0482375 0.0874996 0.0295633 Vertex 419 -0.0414411 0.186472 -0.0373189 Vertex 420 -0.0398567 0.175908 -0.0336297 Vertex 421 -0.0411713 0.169665 -0.0376142 Vertex 422 -0.0271616 0.170677 -0.0391493 Vertex 423 -0.0459198 0.178298 -0.0372043 Vertex 424 -0.0223564 0.176718 -0.0458115 Vertex 425 0.0384957 0.0883812 0.0328012 Vertex 426 -0.0603715 0.0608304 -0.0240674 Vertex 427 -0.0839519 0.10555 -0.00294059 Vertex 428 -0.0739756 0.17286 -0.00532214 Vertex 429 -0.0286709 0.185862 -0.00468876 Vertex 430 -0.0309641 0.186262 -0.00453245 Vertex 431 -0.0967666 0.139449 -0.00500852 Vertex 432 0.0539881 0.116 -0.00275221 Vertex 433 0.0687457 0.135071 -0.0185391 Vertex 434 -0.0465184 0.0639582 0.0177131 Vertex 435 0.0445772 0.0542642 -0.0185071 Vertex 436 -0.0132795 0.0531857 0.0102547 Vertex 437 0.00474537 0.057694 0.0151092 Vertex 438 0.0736324 0.107577 0.00725329 Vertex 439 -0.0578263 0.161772 -0.0143444 Vertex 440 -0.0316716 0.173484 -0.0199685 Vertex 441 -0.0196691 0.161117 -0.0242362 Vertex 442 -0.0402124 0.074456 -0.0306041 Vertex 443 -0.0854306 0.0670249 -0.0312443 Vertex 444 -0.0255964 0.079295 0.010416 Vertex 445 -0.0271499 0.154103 -0.0344207 Vertex 446 -0.0228941 0.164068 -0.044932 Vertex 447 -0.0349712 0.0524742 -0.0261707 Vertex 448 -0.0307427 0.0540217 -0.0178628 Vertex 449 -0.0476001 0.109737 0.00269695 Vertex 450 0.0260833 0.0644659 0.0209188 Vertex 451 0.0470608 0.0854553 -0.00984386 Vertex 452 0.0900011 0.144272 -0.00418029 Vertex 453 -0.0593935 0.133753 -0.0158541 Vertex 454 0.0347449 0.0585102 0.0142453 Vertex 455 -0.0816465 0.0610191 -0.0177837 Vertex 456 -0.0343509 0.185277 -0.0154252 Vertex 457 -0.0409068 0.194069 -0.0224745 Vertex 458 -0.0330998 0.140743 -0.00325296 Vertex 459 -0.0245081 0.143438 -0.00974745 Vertex 460 0.0578996 0.054441 0.0200656 Face 1 136 5 156 Face 2 17 22 8 Face 3 119 104 42 Face 4 41 38 64 Face 5 31 277 35 Face 6 35 227 32 Face 7 227 35 30 Face 8 60 223 3 Face 9 141 25 323 Face 10 40 130 52 Face 11 141 323 137 Face 12 41 52 130 Face 13 105 45 49 Face 14 107 3 223 Face 15 69 130 40 Face 16 25 137 120 Face 17 143 87 25 Face 18 56 71 44 Face 19 161 296 13 Face 20 72 18 16 Face 21 10 48 14 Face 22 18 72 133 Face 23 11 9 10 Face 24 10 9 296 Face 25 13 11 10 Face 26 82 15 97 Face 27 14 48 13 Face 28 13 48 11 Face 29 248 75 100 Face 30 14 13 24 Face 31 248 100 76 Face 32 37 33 151 Face 33 15 146 97 Face 34 33 122 151 Face 35 297 122 33 Face 36 6 96 115 Face 37 71 96 6 Face 38 18 106 21 Face 39 24 161 14 Face 40 24 9 11 Face 41 184 111 104 Face 42 113 49 99 Face 43 29 49 26 Face 44 24 11 48 Face 45 91 140 385 Face 46 110 34 39 Face 47 39 34 16 Face 48 16 116 39 Face 49 42 104 95 Face 50 95 104 132 Face 51 78 80 84 Face 52 31 32 277 Face 53 32 31 30 Face 54 30 193 32 Face 55 193 227 28 Face 56 49 29 134 Face 57 137 74 120 Face 58 87 1 121 Face 59 7 21 68 Face 60 3 118 60 Face 61 195 87 46 Face 62 126 195 46 Face 63 46 43 126 Face 64 30 35 277 Face 65 35 28 31 Face 66 28 35 32 Face 67 227 30 28 Face 68 28 30 31 Face 69 61 97 36 Face 70 87 126 43 Face 71 126 20 195 Face 72 126 87 417 Face 73 97 146 36 Face 74 20 87 43 Face 75 43 46 20 Face 76 26 105 99 Face 77 29 26 99 Face 78 137 143 1 Face 79 45 29 99 Face 80 154 261 1 Face 81 1 87 154 Face 82 19 64 46 Face 83 46 64 20 Face 84 87 143 137 Face 85 137 154 87 Face 86 105 134 45 Face 87 134 29 45 Face 88 148 58 136 Face 89 127 140 155 Face 90 41 23 38 Face 91 140 91 2 Face 92 2 91 127 Face 93 2 127 155 Face 94 2 4 140 Face 95 140 4 155 Face 96 149 76 101 Face 97 4 2 54 Face 98 101 76 100 Face 99 91 4 54 Face 100 23 41 40 Face 101 40 52 23 Face 102 27 39 116 Face 103 17 8 12 Face 104 69 40 41 Face 105 41 135 69 Face 106 20 130 19 Face 107 130 64 19 Face 108 130 135 41 Face 109 193 28 32 Face 110 136 92 5 Face 111 10 161 13 Face 112 10 14 161 Face 113 296 48 10 Face 114 42 95 183 Face 115 26 49 113 Face 116 64 52 41 Face 117 64 23 52 Face 118 128 114 22 Face 119 143 141 154 Face 120 66 111 196 Face 121 143 25 141 Face 122 17 128 22 Face 123 17 12 128 Face 124 186 213 165 Face 125 83 102 131 Face 126 248 76 63 Face 127 57 83 147 Face 128 34 124 16 Face 129 34 116 124 Face 130 27 16 124 Face 131 180 386 172 Face 132 136 58 117 Face 133 74 337 417 Face 134 213 397 165 Face 135 37 50 33 Face 136 37 122 50 Face 137 142 224 3 Face 138 47 102 57 Face 139 47 131 102 Face 140 116 37 151 Face 141 3 224 118 Face 142 19 87 20 Face 143 224 60 107 Face 144 347 355 212 Face 145 261 121 323 Face 146 42 132 111 Face 147 184 95 132 Face 148 156 117 58 Face 149 156 5 117 Face 150 154 323 143 Face 151 232 16 133 Face 152 78 60 70 Face 153 79 142 78 Face 154 2 155 54 Face 155 44 71 6 Face 156 110 72 16 Face 157 154 137 323 Face 158 101 75 248 Face 159 296 24 48 Face 160 119 66 183 Face 161 7 68 72 Face 162 82 146 103 Face 163 262 82 65 Face 164 262 146 82 Face 165 110 39 124 Face 166 74 141 125 Face 167 74 125 120 Face 168 18 21 16 Face 169 55 432 114 Face 170 50 297 33 Face 171 50 151 297 Face 172 56 44 96 Face 173 65 97 61 Face 174 65 82 97 Face 175 125 25 87 Face 176 137 125 141 Face 177 53 245 145 Face 178 60 80 85 Face 179 15 103 65 Face 180 109 6 225 Face 181 109 44 6 Face 182 385 155 4 Face 183 377 315 152 Face 184 27 116 34 Face 185 53 102 83 Face 186 21 133 16 Face 187 7 18 133 Face 188 7 133 21 Face 189 111 132 104 Face 190 57 147 47 Face 191 99 49 45 Face 192 7 106 18 Face 193 7 72 106 Face 194 277 193 30 Face 195 70 84 79 Face 196 142 70 85 Face 197 70 142 84 Face 198 130 20 126 Face 199 56 109 225 Face 200 56 115 109 Face 201 65 61 15 Face 202 37 138 122 Face 203 149 112 100 Face 204 85 70 60 Face 205 87 120 125 Face 206 87 323 120 Face 207 26 113 134 Face 208 71 56 225 Face 209 71 225 96 Face 210 44 115 96 Face 211 44 109 115 Face 212 61 146 15 Face 213 61 263 146 Face 214 61 36 263 Face 215 88 147 131 Face 216 49 194 105 Face 217 24 277 32 Face 218 117 92 136 Face 219 129 62 381 Face 220 63 76 149 Face 221 42 184 132 Face 222 114 12 8 Face 223 42 66 119 Face 224 42 111 66 Face 225 151 122 138 Face 226 74 87 141 Face 227 6 115 225 Face 228 116 110 124 Face 229 80 78 85 Face 230 116 50 122 Face 231 145 83 57 Face 232 131 147 83 Face 233 154 141 261 Face 234 128 150 114 Face 235 12 150 22 Face 236 150 8 22 Face 237 170 172 386 Face 238 224 107 223 Face 239 176 115 56 Face 240 75 63 100 Face 241 90 65 146 Face 242 137 1 261 Face 243 116 138 37 Face 244 53 57 102 Face 245 38 135 130 Face 246 38 69 135 Face 247 134 105 26 Face 248 297 151 138 Face 249 143 121 1 Face 250 184 104 119 Face 251 80 79 84 Face 252 80 142 79 Face 253 90 273 65 Face 254 60 78 84 Face 255 120 323 25 Face 256 149 158 112 Face 257 444 179 233 Face 258 261 141 87 Face 259 8 150 128 Face 260 93 88 47 Face 261 73 92 157 Face 262 392 204 51 Face 263 25 125 137 Face 264 136 156 148 Face 265 112 101 100 Face 266 63 75 101 Face 267 142 60 118 Face 268 360 374 123 Face 269 116 151 50 Face 270 121 261 87 Face 271 78 70 79 Face 272 259 214 358 Face 273 191 231 306 Face 274 64 195 20 Face 275 148 5 58 Face 276 133 72 68 Face 277 47 88 131 Face 278 101 158 149 Face 279 21 110 68 Face 280 374 339 123 Face 281 184 119 95 Face 282 140 127 385 Face 283 144 249 96 Face 284 145 57 53 Face 285 207 410 243 Face 286 103 146 65 Face 287 208 427 300 Face 288 147 93 47 Face 289 114 259 55 Face 290 439 158 63 Face 291 110 27 34 Face 292 385 4 91 Face 293 148 92 117 Face 294 58 240 361 Face 295 107 60 142 Face 296 58 5 92 Face 297 16 27 110 Face 298 299 73 359 Face 299 153 365 94 Face 300 148 117 5 Face 301 12 114 150 Face 302 103 15 82 Face 303 66 94 108 Face 304 224 180 60 Face 305 113 168 173 Face 306 148 362 185 Face 307 180 226 127 Face 308 228 24 32 Face 309 113 99 105 Face 310 64 69 23 Face 311 64 130 69 Face 312 118 84 142 Face 313 119 183 95 Face 314 239 275 406 Face 315 22 214 259 Face 316 129 381 244 Face 317 115 176 225 Face 318 189 280 396 Face 319 142 220 224 Face 320 413 354 278 Face 321 153 138 365 Face 322 98 188 232 Face 323 94 196 130 Face 324 21 72 110 Face 325 21 106 72 Face 326 268 320 241 Face 327 54 127 91 Face 328 148 157 92 Face 329 143 323 121 Face 330 145 338 77 Face 331 342 170 54 Face 332 116 68 110 Face 333 257 354 413 Face 334 230 219 245 Face 335 242 333 116 Face 336 214 22 114 Face 337 59 58 200 Face 338 63 112 202 Face 339 113 173 134 Face 340 259 8 128 Face 341 173 49 134 Face 342 100 63 149 Face 343 98 418 425 Face 344 146 108 90 Face 345 92 73 58 Face 346 83 145 77 Face 347 87 19 46 Face 348 378 309 215 Face 349 63 101 112 Face 350 297 68 116 Face 351 218 335 407 Face 352 385 54 155 Face 353 124 39 27 Face 354 262 65 263 Face 355 116 122 297 Face 356 320 170 342 Face 357 142 3 107 Face 358 12 259 128 Face 359 12 22 259 Face 360 8 259 114 Face 361 13 9 24 Face 362 296 9 13 Face 363 438 370 327 Face 364 74 417 87 Face 365 355 237 212 Face 366 38 23 69 Face 367 116 90 138 Face 368 183 184 42 Face 369 85 78 142 Face 370 147 88 93 Face 371 338 373 77 Face 372 337 358 417 Face 373 56 96 249 Face 374 166 86 214 Face 375 90 365 138 Face 376 224 223 118 Face 377 68 153 161 Face 378 327 272 438 Face 379 77 244 83 Face 380 168 113 105 Face 381 94 66 196 Face 382 127 386 180 Face 383 245 415 230 Face 384 129 244 272 Face 385 249 176 56 Face 386 317 359 73 Face 387 191 139 231 Face 388 108 146 260 Face 389 98 251 383 Face 390 232 322 98 Face 391 361 156 58 Face 392 361 148 156 Face 393 139 351 231 Face 394 228 86 175 Face 395 182 220 286 Face 396 375 405 220 Face 397 212 179 347 Face 398 51 204 159 Face 399 330 215 309 Face 400 293 312 313 Face 401 302 161 24 Face 402 302 400 278 Face 403 246 405 389 Face 404 246 222 405 Face 405 67 163 287 Face 406 176 249 247 Face 407 300 164 208 Face 408 201 205 316 Face 409 209 336 449 Face 410 357 301 165 Face 411 114 166 214 Face 412 114 432 166 Face 413 51 401 185 Face 414 212 237 167 Face 415 301 186 165 Face 416 187 173 168 Face 417 346 169 458 Face 418 346 453 177 Face 419 105 171 168 Face 420 105 194 171 Face 421 170 307 172 Face 422 170 168 171 Face 423 344 341 199 Face 424 181 180 172 Face 425 345 346 458 Face 426 194 49 173 Face 427 191 399 139 Face 428 338 145 363 Face 429 317 175 359 Face 430 239 406 351 Face 431 67 332 163 Face 432 270 241 279 Face 433 311 314 208 Face 434 169 346 314 Face 435 411 233 209 Face 436 411 314 311 Face 437 393 179 364 Face 438 393 233 179 Face 439 80 180 142 Face 440 80 60 180 Face 441 142 181 220 Face 442 142 180 181 Face 443 336 459 449 Face 444 336 294 459 Face 445 290 183 66 Face 446 250 289 183 Face 447 289 184 183 Face 448 289 111 184 Face 449 239 185 401 Face 450 157 148 185 Face 451 168 186 187 Face 452 168 170 320 Face 453 414 187 186 Face 454 372 177 453 Face 455 16 242 116 Face 456 16 232 188 Face 457 89 201 316 Face 458 414 186 301 Face 459 123 190 360 Face 460 298 152 219 Face 461 451 191 306 Face 462 387 218 191 Face 463 218 399 191 Face 464 435 278 400 Face 465 86 193 214 Face 466 86 228 193 Face 467 286 345 182 Face 468 286 199 371 Face 469 38 195 64 Face 470 38 87 195 Face 471 418 196 250 Face 472 38 130 196 Face 473 436 293 313 Face 474 347 179 444 Face 475 59 240 58 Face 476 402 348 436 Face 477 276 199 341 Face 478 171 371 199 Face 479 73 200 58 Face 480 73 299 200 Face 481 409 201 89 Face 482 409 442 201 Face 483 308 352 246 Face 484 254 343 247 Face 485 404 238 324 Face 486 441 165 397 Face 487 362 204 392 Face 488 396 280 204 Face 489 81 236 204 Face 490 447 264 304 Face 491 81 447 412 Face 492 81 391 206 Face 493 275 381 62 Face 494 167 237 207 Face 495 215 305 378 Face 496 369 178 221 Face 497 393 209 233 Face 498 280 189 357 Face 499 378 291 309 Face 500 164 300 265 Face 501 216 369 221 Face 502 160 408 211 Face 503 416 212 167 Face 504 364 179 212 Face 505 421 446 241 Face 506 67 203 269 Face 507 153 214 193 Face 508 153 358 214 Face 509 217 215 198 Face 510 216 221 321 Face 511 403 216 321 Face 512 160 211 216 Face 513 160 292 408 Face 514 403 321 434 Face 515 174 218 407 Face 516 174 398 218 Face 517 190 219 370 Face 518 190 298 219 Face 519 222 220 405 Face 520 222 439 220 Face 521 305 221 178 Face 522 305 215 221 Face 523 158 222 112 Face 524 158 439 222 Face 525 84 223 60 Face 526 84 118 223 Face 527 226 224 220 Face 528 226 180 224 Face 529 144 225 176 Face 530 144 96 225 Face 531 439 226 220 Face 532 342 54 226 Face 533 228 227 193 Face 534 228 32 227 Face 535 302 228 175 Face 536 302 24 228 Face 537 230 370 219 Face 538 328 235 234 Face 539 433 230 415 Face 540 328 234 230 Face 541 62 406 275 Face 542 62 306 231 Face 543 68 232 133 Face 544 379 257 339 Face 545 311 233 411 Face 546 311 349 233 Face 547 255 234 452 Face 548 255 256 234 Face 549 129 235 328 Face 550 327 229 235 Face 551 205 304 210 Face 552 395 204 236 Face 553 299 237 355 Face 554 410 207 237 Face 555 440 325 283 Face 556 288 367 456 Face 557 317 239 351 Face 558 157 185 239 Face 559 198 240 59 Face 560 198 448 391 Face 561 144 342 226 Face 562 144 176 241 Face 563 188 242 16 Face 564 383 251 437 Face 565 244 243 55 Face 566 244 381 243 Face 567 306 244 55 Face 568 53 83 244 Face 569 152 245 219 Face 570 152 335 245 Face 571 112 246 352 Face 572 112 222 246 Face 573 202 247 249 Face 574 202 380 247 Face 575 158 248 63 Face 576 158 101 248 Face 577 63 249 144 Face 578 63 202 249 Face 579 290 250 183 Face 580 290 418 250 Face 581 90 333 273 Face 582 90 116 333 Face 583 258 252 303 Face 584 398 174 252 Face 585 163 324 238 Face 586 380 352 308 Face 587 428 254 253 Face 588 428 343 254 Face 589 229 255 235 Face 590 229 256 255 Face 591 230 256 229 Face 592 230 234 256 Face 593 298 377 152 Face 594 123 339 460 Face 595 281 258 340 Face 596 398 252 258 Face 597 137 337 74 Face 598 373 338 259 Face 599 263 260 146 Face 600 450 108 260 Face 601 98 261 418 Face 602 98 322 261 Face 603 36 262 263 Face 604 36 146 262 Face 605 273 263 65 Face 606 273 260 263 Face 607 316 265 89 Face 608 210 304 264 Face 609 264 266 267 Face 610 291 164 265 Face 611 455 266 291 Face 612 271 267 266 Face 613 210 388 271 Face 614 210 264 388 Face 615 390 446 421 Face 616 384 320 268 Face 617 445 269 203 Face 618 445 446 390 Face 619 67 356 279 Face 620 67 269 356 Face 621 310 443 266 Face 622 310 210 443 Face 623 77 272 244 Face 624 77 373 360 Face 625 98 273 251 Face 626 98 425 450 Face 627 162 283 429 Face 628 162 375 282 Face 629 401 275 239 Face 630 167 382 275 Face 631 171 307 170 Face 632 171 199 276 Face 633 296 277 24 Face 634 296 193 277 Face 635 161 278 354 Face 636 161 302 278 Face 637 343 279 241 Face 638 343 428 368 Face 639 159 280 357 Face 640 159 204 280 Face 641 192 281 340 Face 642 398 258 281 Face 643 274 282 334 Face 644 284 162 282 Face 645 274 284 282 Face 646 294 440 283 Face 647 285 284 274 Face 648 285 162 284 Face 649 283 394 274 Face 650 283 319 394 Face 651 181 286 220 Face 652 344 199 286 Face 653 238 287 163 Face 654 238 283 287 Face 655 331 366 318 Face 656 331 367 366 Face 657 196 289 250 Face 658 196 111 289 Face 659 108 290 66 Face 660 108 450 425 Face 661 264 291 266 Face 662 426 309 291 Face 663 217 434 215 Face 664 217 312 292 Face 665 348 293 436 Face 666 197 312 293 Face 667 274 294 283 Face 668 274 334 294 Face 669 174 295 252 Face 670 315 377 295 Face 671 153 296 161 Face 672 153 193 296 Face 673 153 297 138 Face 674 153 68 297 Face 675 123 298 190 Face 676 123 460 298 Face 677 166 299 86 Face 678 410 237 299 Face 679 414 372 187 Face 680 89 265 300 Face 681 189 301 357 Face 682 409 414 301 Face 683 139 302 175 Face 684 303 400 302 Face 685 353 303 302 Face 686 340 258 303 Face 687 236 304 205 Face 688 412 447 304 Face 689 208 305 311 Face 690 208 164 305 Face 691 415 306 62 Face 692 53 244 306 Face 693 276 307 431 Face 694 276 341 307 Face 695 389 308 246 Face 696 253 254 308 Face 697 206 309 426 Face 698 448 330 309 Face 699 265 455 291 Face 700 265 316 310 Face 701 178 311 305 Face 702 178 197 311 Face 703 408 312 197 Face 704 408 292 312 Face 705 217 313 312 Face 706 217 329 313 Face 707 177 314 346 Face 708 427 208 314 Face 709 174 315 295 Face 710 174 407 315 Face 711 210 316 205 Face 712 210 310 316 Face 713 157 317 73 Face 714 157 239 317 Face 715 326 318 288 Face 716 325 331 318 Face 717 162 319 283 Face 718 162 285 319 Face 719 186 320 213 Face 720 186 168 320 Face 721 215 321 221 Face 722 215 434 321 Face 723 137 322 337 Face 724 137 261 322 Face 725 38 323 87 Face 726 418 261 323 Face 727 253 324 428 Face 728 253 404 324 Face 729 456 325 318 Face 730 287 283 325 Face 731 456 326 288 Face 732 456 318 326 Face 733 129 327 235 Face 734 129 272 327 Face 735 433 328 230 Face 736 433 129 328 Face 737 198 329 217 Face 738 198 402 329 Face 739 198 330 448 Face 740 198 215 330 Face 741 440 331 325 Face 742 203 67 331 Face 743 279 332 67 Face 744 279 343 368 Face 745 251 333 437 Face 746 251 273 333 Face 747 375 334 282 Face 748 459 294 334 Face 749 145 335 363 Face 750 145 245 335 Face 751 165 336 209 Face 752 165 441 336 Face 753 259 337 373 Face 754 259 358 337 Face 755 451 387 191 Face 756 55 259 338 Face 757 454 339 374 Face 758 454 68 339 Face 759 353 340 303 Face 760 353 192 340 Face 761 172 341 376 Face 762 172 307 341 Face 763 241 342 144 Face 764 241 320 342 Face 765 176 343 241 Face 766 176 247 343 Face 767 376 344 286 Face 768 376 341 344 Face 769 371 345 286 Face 770 194 173 345 Face 771 173 346 345 Face 772 173 453 346 Face 773 402 347 348 Face 774 59 200 347 Face 775 350 348 347 Face 776 197 293 348 Face 777 197 349 311 Face 778 197 348 350 Face 779 444 350 347 Face 780 349 197 350 Face 781 175 351 139 Face 782 175 317 351 Face 783 202 352 380 Face 784 202 112 352 Face 785 139 353 302 Face 786 139 192 353 Face 787 68 379 339 Face 788 68 161 354 Face 789 200 355 347 Face 790 200 299 355 Face 791 270 420 269 Face 792 423 279 419 Face 793 209 357 165 Face 794 209 393 357 Face 795 94 358 153 Face 796 94 417 358 Face 797 86 359 175 Face 798 86 299 359 Face 799 272 360 438 Face 800 272 77 360 Face 801 81 361 391 Face 802 362 148 361 Face 803 81 362 361 Face 804 81 204 362 Face 805 218 363 335 Face 806 218 387 363 Face 807 51 416 167 Face 808 51 159 364 Face 809 108 365 90 Face 810 108 94 365 Face 811 288 366 367 Face 812 288 318 366 Face 813 67 367 331 Face 814 67 287 457 Face 815 332 368 163 Face 816 332 279 368 Face 817 211 369 216 Face 818 211 178 369 Face 819 229 370 230 Face 820 229 327 370 Face 821 194 371 171 Face 822 194 345 371 Face 823 300 372 89 Face 824 300 427 372 Face 825 322 373 337 Face 826 374 360 373 Face 827 322 374 373 Face 828 322 454 374 Face 829 182 375 220 Face 830 182 334 375 Face 831 181 376 286 Face 832 181 172 376 Face 833 460 377 298 Face 834 257 413 377 Face 835 164 378 305 Face 836 164 291 378 Face 837 354 379 68 Face 838 354 257 379 Face 839 254 380 308 Face 840 254 247 380 Face 841 382 381 275 Face 842 207 243 381 Face 843 207 382 167 Face 844 207 381 382 Face 845 188 383 242 Face 846 188 98 383 Face 847 445 384 268 Face 848 213 320 384 Face 849 226 385 127 Face 850 226 54 385 Face 851 54 386 127 Face 852 54 170 386 Face 853 338 387 451 Face 854 338 363 387 Face 855 267 388 264 Face 856 267 271 388 Face 857 253 389 404 Face 858 253 308 389 Face 859 269 422 424 Face 860 269 445 390 Face 861 240 391 361 Face 862 240 198 391 Face 863 185 392 51 Face 864 185 362 392 Face 865 159 393 364 Face 866 159 357 393 Face 867 285 394 319 Face 868 285 274 394 Face 869 205 395 236 Face 870 396 204 395 Face 871 205 396 395 Face 872 205 201 442 Face 873 203 397 213 Face 874 440 441 397 Face 875 192 398 281 Face 876 192 218 398 Face 877 192 399 218 Face 878 192 139 399 Face 879 252 400 303 Face 880 252 295 400 Face 881 167 401 51 Face 882 167 275 401 Face 883 59 402 198 Face 884 59 347 402 Face 885 160 403 292 Face 886 160 216 403 Face 887 162 404 389 Face 888 162 429 404 Face 889 162 405 375 Face 890 162 389 405 Face 891 231 406 62 Face 892 231 351 406 Face 893 152 407 335 Face 894 152 315 407 Face 895 178 408 197 Face 896 178 211 408 Face 897 189 409 301 Face 898 189 442 409 Face 899 166 410 299 Face 900 166 432 410 Face 901 449 411 209 Face 902 169 314 411 Face 903 236 412 304 Face 904 236 81 412 Face 905 435 413 278 Face 906 435 377 413 Face 907 89 414 409 Face 908 89 372 414 Face 909 53 415 245 Face 910 53 306 415 Face 911 364 416 51 Face 912 364 212 416 Face 913 130 417 94 Face 914 130 126 417 Face 915 38 418 323 Face 916 38 196 418 Face 917 356 419 279 Face 918 420 423 419 Face 919 356 420 419 Face 920 356 269 420 Face 921 270 421 241 Face 922 270 269 424 Face 923 390 422 269 Face 924 390 421 422 Face 925 270 423 420 Face 926 270 279 423 Face 927 421 424 422 Face 928 421 270 424 Face 929 290 425 418 Face 930 290 108 425 Face 931 264 426 291 Face 932 264 447 426 Face 933 177 427 314 Face 934 177 372 427 Face 935 163 428 324 Face 936 163 368 428 Face 937 238 430 283 Face 938 238 404 430 Face 939 429 430 404 Face 940 429 283 430 Face 941 171 431 307 Face 942 171 276 431 Face 943 243 432 55 Face 944 243 410 432 Face 945 62 433 415 Face 946 62 129 433 Face 947 292 434 217 Face 948 292 403 434 Face 949 295 435 400 Face 950 295 377 435 Face 951 329 436 313 Face 952 329 402 436 Face 953 242 437 333 Face 954 242 383 437 Face 955 190 438 360 Face 956 190 370 438 Face 957 144 439 63 Face 958 144 226 439 Face 959 203 440 397 Face 960 203 331 440 Face 961 294 441 440 Face 962 294 336 441 Face 963 396 442 189 Face 964 396 205 442 Face 965 271 443 210 Face 966 271 266 443 Face 967 349 444 233 Face 968 349 350 444 Face 969 213 445 203 Face 970 213 384 445 Face 971 268 446 445 Face 972 268 241 446 Face 973 206 447 81 Face 974 206 426 447 Face 975 206 448 309 Face 976 206 391 448 Face 977 169 449 458 Face 978 169 411 449 Face 979 273 450 260 Face 980 273 98 450 Face 981 55 451 306 Face 982 55 338 451 Face 983 235 452 234 Face 984 235 255 452 Face 985 187 453 173 Face 986 187 372 453 Face 987 232 454 322 Face 988 232 68 454 Face 989 310 455 265 Face 990 310 266 455 Face 991 287 456 457 Face 992 287 325 456 Face 993 367 457 456 Face 994 367 67 457 Face 995 459 458 449 Face 996 182 345 458 Face 997 182 459 334 Face 998 182 458 459 Face 999 257 460 339 Face 1000 257 377 460 ================================================ FILE: models/fandisk_10k.m ================================================ # |Computing arc-length boundary... # |Coarse Mesh L^2 Stretch Efficiency: 0.978106 # |Coarse Mesh L^i Stretch Efficiency: 0.831746 # |Optimizing coarse mesh... # |Coarse Mesh L^2 Stretch Efficiency: 0.999996 # |Coarse Mesh L^i Stretch Efficiency: 0.997217 # |Optimizing coarse-to-fine... # |(Timing on cpu=x86-L15-R0204 host=T-PEDROS) # | (_ctf: 28.38) # |Fine Mesh L^2 Stretch Efficiency: 0.947283 # |Fine Mesh L^i Stretch Efficiency: 0.286988 # |Intra-Rectangle Efficiency: 0.695684 # |Packing Efficiency: 0.475601 # Created on 2003/11/15 21:32:19 using: # C:\cygwin\home\Zoe\hh_src\bin\filtermesh.exe fandisk_c4.param.m # -removeinfo # (Timing on cpu=x86-L6-R0806 host=BUTTERCUP) # (_readmesh: 0.45) # (Filtermesh: 0.48) Vertex 1 1.00009e-006 15.435 -7.50641e-006 Vertex 2 2.6989 15.2005 -2.68026 Vertex 3 4.8279 15.6817 0 Vertex 4 2.42792 13.3987 -2.60171e-016 Vertex 5 4.72939 17.8486 0 Vertex 6 2.4279 13.1952 -2.32666 Vertex 7 0 15.2178 -2.58029 Vertex 8 4.8279 13.612 0 Vertex 9 3.36291 15.4688 -1.15891 Vertex 10 1.40376 12.7887 -2.255 Vertex 11 4.8279 14.4693 -0.884515 Vertex 12 4.72967 17.6364 -0.515759 Vertex 13 1.33003 15.7997 -0.764459 Vertex 14 2.80141 14.0977 -2.3986 Vertex 15 1.21061 14.156 0 Vertex 16 1.48195 12.8194 -3.3934e-014 Vertex 17 1.17006 15.7257 0 Vertex 18 0.1095 14.685 0 Vertex 19 0.962894 14.257 -2.40249 Vertex 20 3.18479 13.4853 -0.85611 Vertex 21 4.728 13.7105 -3.3934e-014 Vertex 22 2.4167 16.8869 -3.3934e-014 Vertex 23 2.75686 15.2784 -2.19299 Vertex 24 0.106062 15.221 -2.56136 Vertex 25 0.0894523 14.4784 -2.45454 Vertex 26 3.13211 14.2116 -1.20553 Vertex 27 3.10848 15.9237 -0.820067 Vertex 28 2.75104 17.0392 -0.621069 Vertex 29 4.7256 15.5698 -0.586026 Vertex 30 2.1779 12.622 -2.12698 Vertex 31 3.57702 14.9782 -1.56173 Vertex 32 2.6989 14.7966 -2.60904 Vertex 33 1.28544 13.781 -2.32227 Vertex 34 2.7029 13.3343 -2.35121 Vertex 35 2.27298 12.8188 -3.3934e-014 Vertex 36 4.8279 14.6961 0 Vertex 37 4.72976 14.3578 -0.37619 Vertex 38 2.82999 15.4325 -1.22654 Vertex 39 0.475907 15.4398 -1.12434 Vertex 40 3.76205 17.6837 0 Vertex 41 0.711558 14.6087 0 Vertex 42 4.15259 14.4326 -0.498937 Vertex 43 0.0964548 15.099 -2.66235 Vertex 44 2.60253 15.1041 -2.66325 Vertex 45 3.1864 14.8952 -2.62643 Vertex 46 3.73325 15.6945 -0.421432 Vertex 47 3.15442 15.1238 -1.33032 Vertex 48 4.74977 15.1799 -1.0117 Vertex 49 4.72802 15.744 -0.182128 Vertex 50 3.32464 14.2988 -1.85176 Vertex 51 2.6989 14.8952 -2.62643 Vertex 52 2.93122 15.356 -1.55959 Vertex 53 2.61139 15.2174 -2.58281 Vertex 54 1.30728 15.6929 -3.3934e-014 Vertex 55 1.703 16.1048 0 Vertex 56 4.04376 17.2871 -0.577365 Vertex 57 3.98035 17.7405 -0.436131 Vertex 58 1.3285 13.05 -3.3934e-014 Vertex 59 1.5785 12.622 -2.12698 Vertex 60 1.3285 12.9726 -2.1878 Vertex 61 1.34183 13.8831 -2.44796 Vertex 62 0.851675 14.4233 -2.54321 Vertex 63 4.30617 14.4546 -0.96834 Vertex 64 2.4279 13.3983 -0.10143 Vertex 65 3.31178 13.6288 -3.3934e-014 Vertex 66 2.15889 16.4661 -3.3934e-014 Vertex 67 0.466122 15.4788 -1.81899e-012 Vertex 68 5.21541e-008 14.7826 -0.0954076 Vertex 69 4.06026 13.6784 -0.399806 Vertex 70 3.81313 15.2008 -0.893356 Vertex 71 2.4279 12.8686 -2.1686 Vertex 72 4.8279 15.2649 -0.529773 Vertex 73 1.64587 15.8632 -0.838421 Vertex 74 0.618785 14.5342 -1.77338 Vertex 75 2.7029 14.1784 -2.50003 Vertex 76 3.18804 14.197 -2.42886 Vertex 77 4.72935 17.7514 0 Vertex 78 3.01433 17.3363 -0.49929 Vertex 79 1.56118 15.9821 -0.0936669 Vertex 80 2.4279 13.2134 -2.22054 Vertex 81 2.75937 13.3253 -1.85556 Vertex 82 3.3963 13.607 -0.80467 Vertex 83 3.8556 15.5294 -0.815025 Vertex 84 2.4279 13.0496 -0.100547 Vertex 85 4.8279 17.7415 -0.381192 Vertex 86 4.8279 14.9918 -0.0985593 Vertex 87 4.8279 15.6444 -0.162599 Vertex 88 3.0445 17.3614 -0.0715395 Vertex 89 3.77799 14.3233 -1.11903 Vertex 90 4.74747 14.3843 -0.773204 Vertex 91 4.15416 15.0536 -1.1344 Vertex 92 2.1779 12.7996 -0.0971304 Vertex 93 2.41598 13.5015 -3.3934e-014 Vertex 94 1.30944 13.8793 -3.3934e-014 Vertex 95 1.15997 14.2402 -0.108062 Vertex 96 0.711183 14.6085 -0.110857 Vertex 97 0.0657021 14.641 -1.13661 Vertex 98 2.98023e-008 14.5792 -2.47367 Vertex 99 0.82755 15.5757 -0.0937814 Vertex 100 1.6275 15.9135 -3.3934e-014 Vertex 101 4.48155 13.6068 -0.138112 Vertex 102 4.8279 14.4683 -0.296688 Vertex 103 4.8279 13.7034 -0.25849 Vertex 104 2.70517 14.0062 -2.37002 Vertex 105 0.0963893 15.2005 -2.68026 Vertex 106 3.72055 14.3947 -1.30775 Vertex 107 4.8279 17.7514 3.3934e-014 Vertex 108 1.3285 13.6846 -0.103826 Vertex 109 3.11194 15.6649 -0.83788 Vertex 110 1.4101 13.6888 -2.4137 Vertex 111 1.34744 12.7744 -2.15266 Vertex 112 3.20555 15.5257 -0.835885 Vertex 113 4.73292 17.8443 -0.395952 Vertex 114 1.23514 14.2997 0 Vertex 115 3.26329 14.3069 -1.21216 Vertex 116 3.274 14.8855 -2.0875 Vertex 117 3.32264 15.0464 -1.76898 Vertex 118 3.8889 15.1494 -1.1851 Vertex 119 0.0974048 15.4366 -0.0984598 Vertex 120 0 15.2667 -1.46527 Vertex 121 4.37527 15.6325 -0.230222 Vertex 122 3.79386 14.3116 -0.63843 Vertex 123 3.02119 13.5286 -1.24953 Vertex 124 2.8464 14.1225 -1.7107 Vertex 125 2.40563 16.8667 -0.571085 Vertex 126 4.8279 14.9949 -0.873678 Vertex 127 2.53376 13.3613 -1.22351 Vertex 128 3.36458 15.3521 -1.13674 Vertex 129 4.73129 15.2476 -0.628047 Vertex 130 3.7629 15.3152 -0.828564 Vertex 131 2.29315 12.7326 -2.24511 Vertex 132 0.0993613 15.3644 -1.47466 Vertex 133 1.6784 12.747 -1.16397 Vertex 134 0.745293 15.453 -1.18636 Vertex 135 2.82569 15.5979 -0.999213 Vertex 136 3.62319 13.5585 -2.60171e-016 Vertex 137 3.30779 14.2291 -1.65319 Vertex 138 3.08968 14.1819 -2.50066 Vertex 139 3.08679 14.7936 -2.60852 Vertex 140 2.70132 14.9129 -2.52645 Vertex 141 4.34229 17.7447 -0.496668 Vertex 142 0.108616 14.5674 -2.56863 Vertex 143 1.3285 13.0496 -0.0990275 Vertex 144 0.962894 14.4164 -1.09608 Vertex 145 4.72934 14.6961 0 Vertex 146 3.12871 17.4099 0 Vertex 147 1.40134 12.8732 -0.0976889 Vertex 148 1.46064 12.9293 -3.3934e-014 Vertex 149 2.40812 12.9525 -3.3934e-014 Vertex 150 2.35365 12.8718 -0.0976783 Vertex 151 2.52689 13.4157 -0.100692 Vertex 152 4.17514 15.7224 -0.262385 Vertex 153 5.84141e-007 15.3644 -1.47466 Vertex 154 3.02276 15.057 -1.70882 Vertex 155 0.543949 14.7684 0 Vertex 156 2.60251 15.2005 -2.68026 Vertex 157 2.84825 15.2209 -1.88842 Vertex 158 4.72659 15.3656 -0.549967 Vertex 159 4.8279 14.4517 -0.390453 Vertex 160 3.5796 16.5408 -0.651146 Vertex 161 5.21541e-008 14.7921 3.3934e-014 Vertex 162 4.8279 15.7803 0 Vertex 163 4.8279 15.944 -0.215429 Vertex 164 4.8279 15.5888 -0.478353 Vertex 165 4.72933 14.499 -3.3934e-014 Vertex 166 4.8279 14.3019 0 Vertex 167 4.72976 13.703 -0.260723 Vertex 168 3.74617 13.5625 -0.418348 Vertex 169 1.33769 14.1111 -3.3934e-014 Vertex 170 3.09142 14.0962 -2.4068 Vertex 171 4.03438 17.7588 -0.0624604 Vertex 172 0.426517 14.4761 -2.43941 Vertex 173 2.35388 12.6935 -2.13901 Vertex 174 0.0942346 15.3709 -1.42443 Vertex 175 3.02036 15.3872 -1.34948 Vertex 176 3.14626 15.3783 -1.38592 Vertex 177 3.09084 14.9095 -2.54549 Vertex 178 2.14674 16.5995 -0.0876714 Vertex 179 3.43368 17.4538 0 Vertex 180 2.41227 13.2945 -2.34417 Vertex 181 2.75934 13.4188 -1.87208 Vertex 182 2.54568 16.9919 -0.629406 Vertex 183 1.90328 16.3008 -0.658054 Vertex 184 1.5785 12.7996 -0.0971304 Vertex 185 0 15.4347 -0.0984361 Vertex 186 0.586286 15.4067 -6.79339e-015 Vertex 187 3.4848 15.5782 -0.538043 Vertex 188 2.86872 15.5058 -1.0664 Vertex 189 3.3963 14.3554 -0.936633 Vertex 190 4.73393 14.4346 -0.487822 Vertex 191 3.83659 14.39 -0.740582 Vertex 192 1.24447 15.6428 -0.960347 Vertex 193 1.06028 15.1056 -2.66352 Vertex 194 1.24229 14.0697 -2.48086 Vertex 195 1.82802 14.6573 -2.58447 Vertex 196 1.15997 14.0426 -2.36636 Vertex 197 2.70119 15.1171 -2.56522 Vertex 198 2.78505 14.9993 -2.03602 Vertex 199 2.88396 14.2318 -1.63788 Vertex 200 3.6957 17.6544 -0.512596 Vertex 201 -4.36436e-015 15.3309 -0.0978106 Vertex 202 2.4279 13.0978 -2.20731 Vertex 203 2.4279 13.3604 -1.01289 Vertex 204 0.426517 14.6798 -0.111398 Vertex 205 1.28544 13.9749 -0.106049 Vertex 206 3.93457 15.5475 -0.712278 Vertex 207 4.75152 15.0784 -0.99371 Vertex 208 2.80961 13.5632 -3.3934e-014 Vertex 209 2.52682 13.416 -2.60171e-016 Vertex 210 2.30105 12.9254 -3.3934e-014 Vertex 211 3.85179 15.2238 -0.763126 Vertex 212 0 15.1169 -2.56318 Vertex 213 4.8279 15.9831 -0.0814511 Vertex 214 2.1779 12.7378 -1.26066 Vertex 215 2.51973 13.2284 -2.2288 Vertex 216 0.503733 15.3873 -1.34923 Vertex 217 0.908582 15.5789 -0.917504 Vertex 218 1.58433 15.9807 -0.807706 Vertex 219 3.33447 15.0135 -1.9554 Vertex 220 4.65247 15.5871 -0.488069 Vertex 221 4.73334 15.6441 -0.164321 Vertex 222 4.8279 15.7443 -0.180209 Vertex 223 4.8279 17.542 -0.497191 Vertex 224 4.73068 13.6094 -0.244192 Vertex 225 4.34138 14.3484 -0.429544 Vertex 226 2.48854 16.9531 -0.0802978 Vertex 227 0.109503 14.793 0 Vertex 228 4.8279 17.7514 -0.0967413 Vertex 229 3.13244 13.4633 -1.0732 Vertex 230 2.66836 13.3428 -1.61007 Vertex 231 0.0895879 14.6847 -0.0949834 Vertex 232 5.21541e-008 14.6332 -1.23256 Vertex 233 4.8279 15.1972 -0.913848 Vertex 234 2.4279 13.2821 -0.10502 Vertex 235 1.3285 12.8517 -2.26611 Vertex 236 3.6274 13.5453 -0.607968 Vertex 237 4.15349 13.5907 -0.350194 Vertex 238 3.22306 13.5167 -0.100582 Vertex 239 1.6784 12.6055 -2.2227 Vertex 240 3.58499 16.8957 -0.646366 Vertex 241 3.6668 14.2842 -1.34047 Vertex 242 3.30371 15.4747 -1.12554 Vertex 243 2.60649 14.0828 -2.48317 Vertex 244 1.28545 13.7626 -2.42672 Vertex 245 1.32369 13.5914 -2.29033 Vertex 246 1.21071 13.9407 -2.45813 Vertex 247 0.885537 14.295 -2.52059 Vertex 248 3.18824 14.8071 -2.53197 Vertex 249 2.93392 14.2088 -1.76834 Vertex 250 2.7029 14.0828 -2.48317 Vertex 251 2.70517 14.0998 -2.38652 Vertex 252 2.70517 13.3514 -2.25456 Vertex 253 2.60707 13.9892 -2.46667 Vertex 254 2.7029 13.9892 -2.46667 Vertex 255 3.1864 14.1843 -2.50108 Vertex 256 3.29693 14.1856 -1.90011 Vertex 257 3.0897 14.0828 -2.48317 Vertex 258 2.6996 14.4707 -2.55158 Vertex 259 2.7964 14.8952 -2.62643 Vertex 260 3.47035 14.2731 -0.856676 Vertex 261 0.105421 15.3387 0 Vertex 262 4.32697 15.5598 -0.642467 Vertex 263 4.8279 14.5976 -0.0985593 Vertex 264 4.8279 13.9135 -0.0768457 Vertex 265 4.75221 14.4691 -0.886234 Vertex 266 4.30603 14.353 -0.950393 Vertex 267 0 15.095 -2.66165 Vertex 268 2.98023e-008 14.4781 -2.45659 Vertex 269 3.52626 17.593 -0.459178 Vertex 270 0.426517 14.6088 -1.44584 Vertex 271 3.63957 15.0919 -1.5112 Vertex 272 1.03589 14.3918 0 Vertex 273 0.962894 14.4576 -0.109712 Vertex 274 3.70923 13.6481 -0.571943 Vertex 275 1.25238 14.0272 -1.06649 Vertex 276 2.88504 15.3275 -1.81863 Vertex 277 4.8279 17.8436 -0.479237 Vertex 278 4.22776 15.3499 -0.632419 Vertex 279 4.8279 15.386 -0.098559 Vertex 280 4.8279 15.4864 -0.464109 Vertex 281 2.69974 17.0052 0 Vertex 282 3.76458 15.0108 -1.37697 Vertex 283 4.00684 15.142 -1.22663 Vertex 284 1.25212 15.7709 -0.09377 Vertex 285 4.19806 14.3641 -0.887756 Vertex 286 3.89989 14.3179 -1.14973 Vertex 287 3.96295 14.4266 -1.12714 Vertex 288 2.92551 17.2781 -0.578938 Vertex 289 3.5527 17.5011 -0.539627 Vertex 290 2.79869 14.912 -2.53132 Vertex 291 3.57017 17.6161 -0.0657807 Vertex 292 4.72934 16.963 0 Vertex 293 4.8279 16.963 3.3934e-014 Vertex 294 4.71318 17.8479 -0.0880591 Vertex 295 4.72651 15.2645 -0.532152 Vertex 296 3.15348 15.2043 -1.34575 Vertex 297 2.70517 13.2578 -2.23805 Vertex 298 5.21541e-008 14.6847 -0.094819 Vertex 299 2.72903 15.304 -2.00664 Vertex 300 2.40888 12.7576 -2.24951 Vertex 301 2.35377 12.8275 -1.07323 Vertex 302 0.620725 14.419 -2.54245 Vertex 303 0.1095 14.4619 -2.55002 Vertex 304 2.98023e-008 14.5674 -2.56863 Vertex 305 1.48184 12.7748 -1.06883 Vertex 306 2.75884 15.0822 -2.15005 Vertex 307 3.94087 16.2731 -3.3934e-014 Vertex 308 4.72934 16.3716 0 Vertex 309 4.8279 15.0903 0 Vertex 310 4.8279 14.7947 -0.0985591 Vertex 311 4.8279 14.6903 -0.819063 Vertex 312 4.8279 15.0787 -0.991959 Vertex 313 1.10151 14.2782 -1.08557 Vertex 314 2.79093 15.4688 -1.15892 Vertex 315 2.97407 15.5062 -0.946604 Vertex 316 4.08467 15.6253 -0.271343 Vertex 317 4.72842 17.5417 -0.499105 Vertex 318 4.31996 17.3863 -0.521492 Vertex 319 3.51616 14.3557 -1.52923 Vertex 320 4.72844 17.8421 -0.479488 Vertex 321 2.27379 12.6243 -2.22601 Vertex 322 4.72748 13.6116 -6.32432e-010 Vertex 323 4.42558 15.4641 -0.60385 Vertex 324 3.68057 15.4128 -0.89663 Vertex 325 1.02705 15.6253 -0.974745 Vertex 326 0.827502 15.5759 2.71406e-014 Vertex 327 0.438323 15.4234 -1.24662 Vertex 328 0.46614 15.4785 -0.0941778 Vertex 329 2.4279 13.2825 -3.3934e-014 Vertex 330 1.40201 12.6774 -2.23537 Vertex 331 0.618785 14.6078 -0.999201 Vertex 332 2.61113 13.2262 -2.33214 Vertex 333 4.8279 17.8497 -0.0958613 Vertex 334 0.799897 14.3644 -2.42059 Vertex 335 4.03257 17.1488 -0.556673 Vertex 336 3.16931 15.8966 -0.827587 Vertex 337 3.46492 16.5084 -0.714656 Vertex 338 3.40556 15.6622 -0.60461 Vertex 339 3.51188 15.2854 -0.995885 Vertex 340 3.434 15.1747 -1.04163 Vertex 341 3.4986 15.162 -1.11365 Vertex 342 4.25982 15.1806 -1.00785 Vertex 343 4.7452 15.1968 -0.91578 Vertex 344 4.8279 14.3582 -0.373957 Vertex 345 4.72976 14.4514 -0.392685 Vertex 346 4.8279 16.9692 -0.311392 Vertex 347 4.8279 14.4811 -0.788415 Vertex 348 1.01772 14.5366 0 Vertex 349 4.54336 15.7358 -0.194843 Vertex 350 2.97116 15.7746 -0.875969 Vertex 351 2.52782 13.3974 -0.710526 Vertex 352 2.9935 13.4434 -1.09382 Vertex 353 2.97172 13.4204 -1.31597 Vertex 354 2.88396 13.4834 -1.50591 Vertex 355 2.97145 14.1688 -1.44835 Vertex 356 3.02119 14.277 -1.3815 Vertex 357 3.05255 14.253 -1.51737 Vertex 358 3.54118 14.2857 -1.33247 Vertex 359 3.43186 14.2327 -1.63282 Vertex 360 3.18809 14.0957 -2.40974 Vertex 361 0.089964 15.2964 -2.06412 Vertex 362 2.61068 13.3246 -2.34948 Vertex 363 4.8279 13.834 -0.187292 Vertex 364 3.36402 14.9226 -1.87713 Vertex 365 3.44668 15.0492 -1.75291 Vertex 366 3.51474 15.0932 -1.50383 Vertex 367 3.17395 15.1 -1.46491 Vertex 368 2.98413 15.0801 -1.57811 Vertex 369 2.97577 15.2552 -1.62382 Vertex 370 2.93136 15.1585 -1.69057 Vertex 371 1.42633 13.7924 -3.3934e-014 Vertex 372 4.33733 17.8154 0 Vertex 373 1.48189 12.6412 -2.1302 Vertex 374 1.40136 12.811 -1.26791 Vertex 375 3.70923 14.3965 -0.703905 Vertex 376 3.67719 14.3728 -0.83837 Vertex 377 3.91037 14.3391 -1.02939 Vertex 378 4.02884 14.3317 -1.07105 Vertex 379 4.75205 14.3675 -0.868327 Vertex 380 3.6719 15.5235 -0.848359 Vertex 381 3.84302 15.5951 -0.442362 Vertex 382 4.45199 15.6396 -0.189965 Vertex 383 4.72294 15.6284 -0.253697 Vertex 384 4.36521 15.1687 -1.0755 Vertex 385 4.44701 15.0709 -1.03608 Vertex 386 3.19376 14.9222 -2.47351 Vertex 387 4.8279 15.179 -0.507114 Vertex 388 4.8279 15.4684 -0.56566 Vertex 389 3.27013 14.2742 -1.99138 Vertex 390 1.3237 13.5735 -2.39337 Vertex 391 1.43107 13.3729 -2.358 Vertex 392 2.31779 13.1778 -2.32361 Vertex 393 2.4279 13.0807 -2.30648 Vertex 394 3.94572 15.4379 -0.754599 Vertex 395 1.5732 15.976 -0.715433 Vertex 396 4.8279 14.3846 -0.771376 Vertex 397 4.43743 13.6971 -0.294122 Vertex 398 2.73908 14.057 -2.08214 Vertex 399 4.25602 15.2337 -0.706736 Vertex 400 4.32566 15.2545 -0.588949 Vertex 401 0 15.3279 0 Vertex 402 0.799897 14.533 -0.994082 Vertex 403 1.3285 13.4948 -2.27377 Vertex 404 2.9042 15.5627 -1.03451 Vertex 405 1.78261 16.1636 -0.775451 Vertex 406 1.86769 16.0929 -0.787921 Vertex 407 4.25629 17.7044 0 Vertex 408 2.41506 16.7492 0 Vertex 409 2.71644 17.1414 0 Vertex 410 3.46507 14.8767 -3.3934e-014 Vertex 411 2.31733 15.0764 -3.3934e-014 Vertex 412 3.67937 15.0541 -3.3934e-014 Vertex 413 2.01876 14.2001 -3.3934e-014 Vertex 414 2.93706 15.5891 -3.3934e-014 Vertex 415 2.41211 15.0211 -3.3934e-014 Vertex 416 4.7293 14.3019 -3.3934e-014 Vertex 417 4.8279 13.7105 0 Vertex 418 4.8279 15.6629 -0.0766924 Vertex 419 4.8279 15.5099 -0.180599 Vertex 420 2.69745 17.1186 -0.53258 Vertex 421 0.3285 14.6698 -0.668382 Vertex 422 0.426529 14.6802 0 Vertex 423 1.77066 16.1699 -0.0938335 Vertex 424 2.27307 12.7889 -0.874787 Vertex 425 2.75934 14.1672 -2.00404 Vertex 426 2.83278 14.1462 -2.12341 Vertex 427 3.15535 14.1649 -2.01747 Vertex 428 3.1864 14.0828 -2.48317 Vertex 429 2.7996 14.0828 -2.48317 Vertex 430 2.70123 15.2175 -2.5822 Vertex 431 2.27323 12.6407 -2.13012 Vertex 432 3.1864 14.7937 -2.60852 Vertex 433 0.993121 15.5297 -1.07229 Vertex 434 2.718 15.5026 -1.10772 Vertex 435 2.94417 15.4805 -1.09256 Vertex 436 3.15851 15.4321 -1.22723 Vertex 437 3.59669 15.5021 -0.96976 Vertex 438 3.21536 15.3047 -1.28709 Vertex 439 3.29141 15.2436 -1.19141 Vertex 440 3.59269 15.1963 -0.918734 Vertex 441 3.35872 15.1388 -1.24484 Vertex 442 3.69029 15.1236 -1.33128 Vertex 443 3.81291 15.1192 -1.35596 Vertex 444 3.94983 15.0345 -1.24268 Vertex 445 3.89914 14.4193 -1.16815 Vertex 446 3.56466 14.2648 -1.45092 Vertex 447 3.43874 14.2641 -1.45443 Vertex 448 3.38926 14.331 -1.07523 Vertex 449 3.25751 14.3314 -1.07332 Vertex 450 3.3253 14.2501 -0.9869 Vertex 451 3.19306 13.5701 -1.01428 Vertex 452 1.30929 13.8018 -1.47181 Vertex 453 0.0657107 14.5848 -1.71217 Vertex 454 4.8279 15.248 -0.625792 Vertex 455 4.8279 15.0977 -0.89629 Vertex 456 2.40812 12.9522 -0.0982879 Vertex 457 0.0938174 15.4368 -1.86446e-011 Vertex 458 3.18478 14.9941 -2.06558 Vertex 459 2.61129 13.243 -2.23509 Vertex 460 3.15056 16.0946 -0.787627 Vertex 461 1.69252 16.0191 -0.800935 Vertex 462 2.32999 13.283 -3.3934e-014 Vertex 463 1.9781 12.8 -3.3934e-014 Vertex 464 1.00009e-006 15.4149 -0.787352 Vertex 465 -4.36436e-015 15.3213 -0.684595 Vertex 466 5.21541e-008 14.7605 -0.763719 Vertex 467 5.21541e-008 14.685 -4.35332e-013 Vertex 468 0 15.2005 -2.68026 Vertex 469 0.665915 15.1093 -2.66417 Vertex 470 0.446869 14.5593 -2.5672 Vertex 471 4.8279 15.3001 -0.433602 Vertex 472 4.4937 15.5774 -0.543048 Vertex 473 4.8279 15.5702 -0.583604 Vertex 474 2.70133 15.013 -2.54403 Vertex 475 4.26954 14.4213 -0.562894 Vertex 476 4.8279 15.6259 -0.26785 Vertex 477 1.34748 12.9243 -0.884043 Vertex 478 2.1779 12.7819 -0.6796 Vertex 479 2.59743 14.8952 -2.62643 Vertex 480 2.6989 15.0987 -2.66232 Vertex 481 4.43743 14.4455 -0.426085 Vertex 482 4.8279 14.546 -0.407072 Vertex 483 4.8279 14.435 -0.485683 Vertex 484 4.8279 13.6098 -0.241995 Vertex 485 4.8279 16.7827 -0.0997973 Vertex 486 4.8279 16.8429 -0.37392 Vertex 487 4.8279 16.8165 -0.235386 Vertex 488 4.8279 16.0055 -0.146365 Vertex 489 3.32567 13.5018 -0.854611 Vertex 490 3.33006 13.5105 -0.713096 Vertex 491 2.98023e-008 14.7013 -1.5261 Vertex 492 2.98023e-008 14.4619 -2.55002 Vertex 493 2.08587 16.5129 -0.713871 Vertex 494 2.28015 16.596 -0.699214 Vertex 495 0.0964296 15.4114 -0.885797 Vertex 496 2.00141 14.9123 0 Vertex 497 1.61486 13.9862 -3.3934e-014 Vertex 498 1.94176 13.772 -3.3934e-014 Vertex 499 1.88314 12.8896 -3.3934e-014 Vertex 500 1.3285 13.685 -3.3934e-014 Vertex 501 0.88407 14.3959 -1.86747 Vertex 502 4.72556 15.4699 -0.568425 Vertex 503 1.3285 13.1554 -0.099892 Vertex 504 4.44176 17.8221 -0.483024 Vertex 505 4.54334 17.8336 -0.416007 Vertex 506 4.8279 17.8459 -0.383404 Vertex 507 3.22302 13.517 -2.60171e-016 Vertex 508 3.62322 13.5582 -0.100598 Vertex 509 4.39272 13.6047 -0.0939377 Vertex 510 1.03561 14.2581 -1.95973 Vertex 511 1.35173 15.8086 -0.859975 Vertex 512 2.40808 12.8794 -1.37345 Vertex 513 2.4279 13.1846 -1.60984 Vertex 514 2.42791 13.288 -1.719 Vertex 515 3.21513 14.8468 -2.30739 Vertex 516 3.37742 16.5552 -0.706406 Vertex 517 3.78231 16.9981 -0.628325 Vertex 518 3.35848 16.1155 -0.717322 Vertex 519 0.618785 14.4384 -2.43305 Vertex 520 1.10208 14.1011 -2.48641 Vertex 521 3.96957 14.3268 -0.55227 Vertex 522 0.95742 15.5226 -6.79339e-015 Vertex 523 1.83568 16.2379 1.61701e-025 Vertex 524 0.751171 14.7045 0 Vertex 525 1.84374 16.1092 -3.3934e-014 Vertex 526 1.96681 15.3586 -3.3934e-014 Vertex 527 1.48697 15.9253 2.424e-025 Vertex 528 4.41396 17.8253 -0.0602169 Vertex 529 2.85375 14.9784 -2.1545 Vertex 530 3.23251 14.9623 -2.24592 Vertex 531 3.10652 14.9381 -2.38304 Vertex 532 3.0889 14.8952 -2.62643 Vertex 533 4.8279 15.1803 -1.00987 Vertex 534 1.48179 12.8191 -0.0972781 Vertex 535 1.40139 12.6946 -2.1392 Vertex 536 1.5785 12.7702 -0.873503 Vertex 537 2.79744 17.2007 -0.0750397 Vertex 538 3.7943 13.5632 -0.506247 Vertex 539 3.83705 13.5708 -0.371184 Vertex 540 4.73429 13.611 -0.127247 Vertex 541 4.32199 13.7035 -3.3934e-014 Vertex 542 4.42615 13.606 -2.77556e-016 Vertex 543 1.52289 12.7303 -2.2447 Vertex 544 4.8279 17.4558 3.3934e-014 Vertex 545 4.8279 17.85 3.3934e-014 Vertex 546 4.52693 14.4645 -0.911919 Vertex 547 1.21042 14.0388 -1.82115 Vertex 548 1.34748 12.9545 -3.3934e-014 Vertex 549 4.8279 13.7529 -0.128726 Vertex 550 4.4127 17.7011 -0.504363 Vertex 551 4.73122 17.7476 -0.496166 Vertex 552 3.25571 17.4685 -0.54537 Vertex 553 3.84627 16.9356 -0.589261 Vertex 554 1.6784 12.7908 -0.48554 Vertex 555 2.7029 13.2408 -2.33471 Vertex 556 2.40806 12.7723 -2.1523 Vertex 557 3.9949 15.713 -0.316352 Vertex 558 2.078 12.6808 -1.74293 Vertex 559 2.82535 13.4579 -0.39933 Vertex 560 0.429066 14.4569 -2.54914 Vertex 561 1.48291 12.6243 -2.226 Vertex 562 1.5785 12.7172 -1.45383 Vertex 563 3.25296 15.5502 -0.697085 Vertex 564 1.3475 12.954 -0.0983021 Vertex 565 4.35865 17.5168 -0.536853 Vertex 566 4.35434 17.8127 -0.424648 Vertex 567 4.06381 17.7587 -0.494198 Vertex 568 2.31542 13.2773 -2.34114 Vertex 569 2.16039 12.6948 -2.23844 Vertex 570 2.27297 12.8184 -0.0972729 Vertex 571 0.776259 15.5208 -1.08348 Vertex 572 3.39376 17.5427 0 Vertex 573 4.8279 14.3678 -0.866607 Vertex 574 1.10773 14.2334 -2.50974 Vertex 575 2.71955 15.1504 -2.37106 Vertex 576 2.4279 12.9865 -1.28584 Vertex 577 0.884408 14.5162 0 Vertex 578 1.08634 15.6831 -0.0936316 Vertex 579 1.0783 15.6565 -0.848815 Vertex 580 4.8279 17.7427 -0.497019 Vertex 581 2.84955 15.4817 -1.08566 Vertex 582 2.63658 15.2491 -2.38818 Vertex 583 3.82581 16.641 0 Vertex 584 2.21119 16.6744 -3.3934e-014 Vertex 585 2.34536 16.817 -0.0831571 Vertex 586 2.20768 16.6595 -0.602817 Vertex 587 0 15.2943 -2.07907 Vertex 588 3.50898 15.5646 -0.615095 Vertex 589 3.39054 17.5411 -0.0674914 Vertex 590 1.03561 14.3818 -0.545933 Vertex 591 0.88407 14.506 -0.550651 Vertex 592 3.09305 17.277 0 Vertex 593 0.737312 15.5144 -0.993393 Vertex 594 3.18822 14.9087 -2.55026 Vertex 595 3.20157 14.223 -2.2818 Vertex 596 1.43428 13.0604 -3.3934e-014 Vertex 597 1.5785 12.8 -3.3934e-014 Vertex 598 0.0662514 14.6777 -0.463083 Vertex 599 3.61422 16.7595 -0.670396 Vertex 600 3.97721 17.3607 -0.564384 Vertex 601 3.05619 17.25 -0.5839 Vertex 602 3.21413 14.1349 -2.18736 Vertex 603 4.48217 17.4738 -0.509016 Vertex 604 1.21042 14.1364 -0.751616 Vertex 605 2.078 12.7867 -0.582587 Vertex 606 1.3285 12.9866 -1.28528 Vertex 607 1.3285 12.956 -2.28449 Vertex 608 1.3285 12.8686 -2.16852 Vertex 609 2.84775 15.5132 -1.09333 Vertex 610 2.1779 12.6055 -2.2227 Vertex 611 1.48859 15.7885 -0.869158 Vertex 612 4.8279 17.4597 -0.379714 Vertex 613 0.347584 15.2172 -2.58375 Vertex 614 4.43835 13.6035 -0.277464 Vertex 615 0.711183 14.4875 -1.87936 Vertex 616 0.426517 14.5435 -1.99895 Vertex 617 3.02924 15.6038 -0.906615 Vertex 618 3.01638 15.6791 -0.933092 Vertex 619 4.8279 13.6114 -0.121002 Vertex 620 3.88329 17.619 0 Vertex 621 1.25238 14.0673 -0.10675 Vertex 622 1.25253 14.0673 -3.3934e-014 Vertex 623 1.32369 13.7826 -0.10459 Vertex 624 2.4279 13.2513 -0.908958 Vertex 625 4.8279 16.5433 -0.32109 Vertex 626 1.5977 12.8912 -3.3934e-014 Vertex 627 4.39911 13.6038 -0.197304 Vertex 628 0.52359 14.6654 -0.111289 Vertex 629 0.426517 14.646 -1.00181 Vertex 630 3.90634 15.6146 -0.331865 Vertex 631 4.09961 15.6129 -0.341414 Vertex 632 4.21362 15.5651 -0.612377 Vertex 633 4.13326 15.55 -0.698344 Vertex 634 4.35836 15.7296 -0.221781 Vertex 635 2.27318 12.6995 -1.7455 Vertex 636 4.52474 15.3614 -0.568814 Vertex 637 4.8279 15.3667 -0.547717 Vertex 638 2.6989 14.997 -2.64437 Vertex 639 3.08016 15.3644 -1.47466 Vertex 640 3.08224 15.276 -1.45603 Vertex 641 3.031 15.1846 -1.51801 Vertex 642 3.2873 15.1504 -1.17934 Vertex 643 3.2319 15.1135 -1.38877 Vertex 644 3.41228 15.0706 -1.6319 Vertex 645 3.53726 15.0714 -1.62751 Vertex 646 3.48312 14.9571 -1.6815 Vertex 647 3.43033 14.3338 -1.65316 Vertex 648 0.884588 15.5865 -0.566131 Vertex 649 1.15997 14.1603 -1.51004 Vertex 650 0.0782145 15.2294 -2.51095 Vertex 651 4.24637 13.6893 -0.338378 Vertex 652 3.88071 13.6647 -0.477883 Vertex 653 2.52785 13.292 -1.82191 Vertex 654 2.6709 13.3267 -1.74134 Vertex 655 2.81309 13.3581 -1.66965 Vertex 656 3.106 14.124 -2.24928 Vertex 657 2.87506 14.1779 -1.94353 Vertex 658 2.81306 14.2 -1.81812 Vertex 659 2.78402 14.0902 -1.89398 Vertex 660 2.81306 13.4516 -1.68616 Vertex 661 3.88071 14.4131 -0.609846 Vertex 662 4.15259 14.3391 -0.482442 Vertex 663 3.5473 13.6288 -0.681182 Vertex 664 3.62699 14.2936 -0.740188 Vertex 665 2.27216 16.7276 -0.676007 Vertex 666 2.9808 15.3644 -1.47466 Vertex 667 3.98477 15.2162 -0.806295 Vertex 668 4.03214 15.1637 -1.10375 Vertex 669 4.2176 15.1598 -1.1258 Vertex 670 4.29807 15.0634 -1.07848 Vertex 671 4.16444 14.445 -1.02244 Vertex 672 4.52601 14.3629 -0.894186 Vertex 673 4.50675 14.3794 -0.800868 Vertex 674 4.54677 14.4316 -0.504957 Vertex 675 4.63183 14.4502 -0.39938 Vertex 676 4.53432 14.3547 -0.394025 Vertex 677 2.89124 15.0488 -1.75557 Vertex 678 1.70747 16.0942 -0.688228 Vertex 679 3.18032 17.4312 -0.484492 Vertex 680 2.078 12.7378 -1.26066 Vertex 681 1.6784 12.7172 -1.45383 Vertex 682 1.6784 12.622 -2.12698 Vertex 683 2.336 13.0614 -3.3934e-014 Vertex 684 2.16762 13.7249 -2.42006 Vertex 685 2.51946 13.211 -2.32945 Vertex 686 4.52517 15.6315 -0.235835 Vertex 687 2.4279 13.3849 -0.608296 Vertex 688 1.40135 12.8603 -0.585937 Vertex 689 0 15.1943 -2.06547 Vertex 690 2.98023e-008 14.6184 -2.18985 Vertex 691 5.21541e-008 14.5857 -1.70506 Vertex 692 0.0671235 14.5216 -2.18428 Vertex 693 0.585967 15.49 -0.673709 Vertex 694 2.4279 13.05 -3.3934e-014 Vertex 695 2.88626 15.4688 -1.15891 Vertex 696 3.10879 15.5291 -0.816824 Vertex 697 0.387655 15.4573 -0.495066 Vertex 698 4.66368 17.846 -0.062878 Vertex 699 1.34746 12.8814 -1.37366 Vertex 700 3.26758 15.4688 -1.15891 Vertex 701 3.21514 15.401 -1.3044 Vertex 702 2.72056 14.9478 -2.32814 Vertex 703 4.72934 17.2586 0 Vertex 704 3.91887 16.8331 0 Vertex 705 3.95133 17.7384 0 Vertex 706 0.0950345 15.3333 -1.76918 Vertex 707 2.4279 12.9832 -2.18793 Vertex 708 2.4279 12.8517 -2.26611 Vertex 709 2.4279 13.1116 -1.1987 Vertex 710 2.4279 13.1658 -0.10278 Vertex 711 2.4081 12.9342 -0.687696 Vertex 712 4.2294 15.4559 -0.650633 Vertex 713 4.03623 15.3383 -0.697731 Vertex 714 2.078 12.7996 -0.0971304 Vertex 715 2.1779 12.8 -3.3934e-014 Vertex 716 2.50612 15.1056 -2.66352 Vertex 717 2.59894 14.997 -2.64437 Vertex 718 0.3285 14.6242 -1.33538 Vertex 719 0.237054 14.4822 -2.43237 Vertex 720 0.3285 14.59 -1.66793 Vertex 721 2.81589 15.116 -1.9586 Vertex 722 0.648462 15.5203 -0.0937892 Vertex 723 2.78116 15.1932 -2.08386 Vertex 724 0.711183 14.5984 -0.554156 Vertex 725 0.52359 14.6552 -0.556315 Vertex 726 4.13113 15.2445 -0.645238 Vertex 727 3.56602 15.6794 -0.507042 Vertex 728 4.4184 15.1887 -0.962022 Vertex 729 0.711183 14.5668 -1.10751 Vertex 730 0.799897 14.4727 -1.65451 Vertex 731 3.84658 17.7095 -0.0636088 Vertex 732 3.79633 17.6889 -0.444189 Vertex 733 3.19288 15.6461 -0.763213 Vertex 734 0.319265 15.4086 -1.20263 Vertex 735 2.7964 14.7977 -2.60924 Vertex 736 4.26673 15.6336 -0.224002 Vertex 737 4.25842 15.6236 -0.280532 Vertex 738 4.57975 15.5813 -0.520498 Vertex 739 4.52517 15.5665 -0.604909 Vertex 740 0.194272 15.4271 -0.68973 Vertex 741 1.58414e-006 15.3735 -1.37664 Vertex 742 0.0741228 15.3839 -1.26899 Vertex 743 4.53883 15.2444 -0.646146 Vertex 744 5.21541e-008 14.6773 -0.474241 Vertex 745 3.8952 17.6207 -0.518533 Vertex 746 4.25175 17.7956 -0.4877 Vertex 747 4.27233 17.7124 -0.502359 Vertex 748 2.35381 12.7891 -1.46204 Vertex 749 1.48185 12.7472 -1.35934 Vertex 750 2.27309 12.7742 -1.06878 Vertex 751 2.1779 12.7632 -0.970382 Vertex 752 2.078 12.7632 -0.970382 Vertex 753 1.5785 12.747 -1.16397 Vertex 754 1.6784 12.7632 -0.970382 Vertex 755 1.6784 12.7996 -0.0971304 Vertex 756 1.48182 12.8062 -0.583472 Vertex 757 2.65875 15.4627 -1.16911 Vertex 758 0.608917 15.4667 -1.16237 Vertex 759 0.576486 15.4127 -1.27247 Vertex 760 4.59876 15.0759 -1.00779 Vertex 761 4.51721 15.1751 -1.03909 Vertex 762 4.72666 17.0423 -0.411115 Vertex 763 4.8279 15.8442 -0.197819 Vertex 764 4.8279 15.8788 0 Vertex 765 4.8279 16.2731 -0.0985586 Vertex 766 1.25238 13.8721 -2.33763 Vertex 767 2.17035 12.8976 -3.3934e-014 Vertex 768 2.35358 12.8721 -3.3934e-014 Vertex 769 1.41069 15.8708 -0.0937405 Vertex 770 1.40143 12.8735 -3.3934e-014 Vertex 771 2.3231 13.3927 -3.3934e-014 Vertex 772 1.28544 13.8965 -1.48191 Vertex 773 4.72934 16.0759 0 Vertex 774 4.63078 15.6817 -3.3934e-014 Vertex 775 3.61534 16.1857 0 Vertex 776 2.20836 15.6314 -3.3934e-014 Vertex 777 3.11652 15.8023 -3.3934e-014 Vertex 778 2.99681 15.3341 -3.3934e-014 Vertex 779 1.9106 16.1799 -3.3934e-014 Vertex 780 2.02501 16.4569 -3.3934e-014 Vertex 781 1.90328 16.3138 -0.0940265 Vertex 782 1.68945 12.7034 -2.23996 Vertex 783 1.4081 12.9445 -2.28246 Vertex 784 1.34756 12.7574 -2.24947 Vertex 785 1.28544 13.9495 -0.847878 Vertex 786 1.32369 13.7509 -0.940587 Vertex 787 0.280791 15.4505 -0.095072 Vertex 788 2.47025 15.3831 -1.36545 Vertex 789 2.18429 15.4067 -1.28832 Vertex 790 2.20488 15.5321 -1.06938 Vertex 791 2.62684 13.2786 -2.02958 Vertex 792 2.543 13.3203 -1.62319 Vertex 793 2.78515 13.382 -1.42687 Vertex 794 1.10151 14.319 -0.10866 Vertex 795 3.5183 15.3918 -1.00952 Vertex 796 1.9455 15.6628 -0.944939 Vertex 797 2.92286 15.7055 -0.915375 Vertex 798 4.8279 16.4607 -0.205309 Vertex 799 3.73322 15.6017 -0.405082 Vertex 800 2.078 12.622 -2.12698 Vertex 801 1.78757 15.9807 -0.807706 Vertex 802 2.71197 13.3684 -2.15811 Vertex 803 1.10151 14.1203 -2.37946 Vertex 804 2.81198 15.3044 -2.0034 Vertex 805 0.6188 14.6419 0 Vertex 806 0.799897 14.5665 -0.110538 Vertex 807 1.03561 14.311 -1.52611 Vertex 808 3.5473 14.3772 -0.813145 Vertex 809 3.52763 14.3531 -0.950249 Vertex 810 3.84312 14.3315 -1.07272 Vertex 811 3.83831 14.3102 -1.19337 Vertex 812 3.61323 14.376 -1.41372 Vertex 813 2.90837 15.0107 -1.9715 Vertex 814 3.13803 14.9665 -2.2223 Vertex 815 3.27637 14.9883 -2.09836 Vertex 816 3.30066 14.8981 -2.01595 Vertex 817 3.22897 14.2488 -2.13532 Vertex 818 2.6752 15.2781 -2.19555 Vertex 819 2.71984 15.2494 -2.38645 Vertex 820 2.30708 12.7896 -2.25515 Vertex 821 2.35483 12.6778 -2.23544 Vertex 822 2.1779 12.6808 -1.74293 Vertex 823 1.10151 14.186 -1.94982 Vertex 824 2.35371 12.8589 -0.585876 Vertex 825 2.40596 16.7316 -0.67531 Vertex 826 1.15997 14.2074 -0.971811 Vertex 827 2.97473 15.3474 -1.64195 Vertex 828 0.712934 14.3862 -2.53668 Vertex 829 0.578336 15.2005 -2.68026 Vertex 830 0.578336 15.1052 -2.66346 Vertex 831 0.656513 14.5067 -2.55792 Vertex 832 1.5785 12.6055 -2.2227 Vertex 833 4.12651 17.471 -0.544923 Vertex 834 4.19346 17.4116 -0.555405 Vertex 835 4.17046 17.2759 -0.537568 Vertex 836 0.52359 14.5439 -1.88668 Vertex 837 2.8769 17.2558 0 Vertex 838 4.12482 13.5938 -2.77556e-016 Vertex 839 1.30929 13.8545 -0.842103 Vertex 840 4.12483 13.5934 -0.100916 Vertex 841 4.68813 15.599 -0.420384 Vertex 842 0.331178 14.794 0 Vertex 843 0.219 14.685 0 Vertex 844 0.237229 14.6845 -0.11584 Vertex 845 0.52359 14.6236 -1.11183 Vertex 846 0.962894 14.3645 -1.64214 Vertex 847 0.962894 14.4376 -0.76763 Vertex 848 0.88407 14.4747 -1.10051 Vertex 849 4.8279 17.6419 -0.514801 Vertex 850 1.84414 16.2291 -0.763909 Vertex 851 1.97859 16.2479 -0.760591 Vertex 852 2.83956 15.3373 -1.73347 Vertex 853 2.73559 15.1656 -2.2745 Vertex 854 2.72057 15.0476 -2.34564 Vertex 855 3.85143 14.9152 -3.3934e-014 Vertex 856 3.87617 14.3032 -3.3934e-014 Vertex 857 3.71523 13.6677 -3.3934e-014 Vertex 858 3.50943 15.5044 -0.956798 Vertex 859 4.8279 15.4938 -0.364484 Vertex 860 4.72934 14.9918 0 Vertex 861 4.8279 14.9918 0 Vertex 862 4.8279 15.1791 -0.094154 Vertex 863 4.8279 15.2218 -0.415057 Vertex 864 1.25238 13.9641 -1.70382 Vertex 865 2.63955 17.0813 -0.0775816 Vertex 866 1.43107 13.6875 -3.3934e-014 Vertex 867 1.32376 13.7823 -3.3934e-014 Vertex 868 3.31339 14.4779 -3.3934e-014 Vertex 869 2.59669 14.2084 -3.3934e-014 Vertex 870 2.49705 14.5203 -3.3934e-014 Vertex 871 1.88335 14.4756 -3.3934e-014 Vertex 872 1.50051 13.938 -3.3934e-014 Vertex 873 1.37476 14.01 -3.3934e-014 Vertex 874 3.12203 15.8184 -0.855734 Vertex 875 3.03428 15.882 -0.832128 Vertex 876 2.82448 13.4633 -0.100537 Vertex 877 2.54791 16.9966 -0.551127 Vertex 878 2.72328 14.1337 -2.19405 Vertex 879 3.42853 17.5501 -0.530991 Vertex 880 3.29891 17.3857 -0.559977 Vertex 881 2.53909 16.8603 -0.652619 Vertex 882 1.40137 12.7537 -1.75295 Vertex 883 4.09163 14.4109 -0.621976 Vertex 884 3.67488 14.9965 -1.45791 Vertex 885 2.72329 13.2918 -2.04556 Vertex 886 3.76583 17.138 -0.603652 Vertex 887 3.90697 17.1477 -0.601943 Vertex 888 3.73339 16.7822 -0.613165 Vertex 889 0.0982647 15.4291 -0.492256 Vertex 890 1.10177 14.3191 0 Vertex 891 0.799896 14.5564 -0.552565 Vertex 892 4.8279 14.2033 0 Vertex 893 4.8279 14.3019 -0.0985592 Vertex 894 3.2152 17.4562 -0.0694204 Vertex 895 1.48188 12.6864 -1.8419 Vertex 896 1.5785 12.6672 -1.83911 Vertex 897 1.6784 12.6672 -1.83911 Vertex 898 3.59274 15.2961 -0.936278 Vertex 899 3.67632 15.2062 -0.862965 Vertex 900 3.65067 15.1827 -0.996054 Vertex 901 3.82043 15.1413 -1.23066 Vertex 902 3.94014 15.135 -1.2667 Vertex 903 3.88534 15.027 -1.28502 Vertex 904 3.83753 14.4116 -1.21188 Vertex 905 3.77886 14.302 -1.23977 Vertex 906 3.65446 14.3054 -1.22045 Vertex 907 3.15069 14.2808 -1.36006 Vertex 908 3.13211 14.3051 -1.22203 Vertex 909 3.97002 13.5784 -0.420125 Vertex 910 2.29281 15.6167 -0.982178 Vertex 911 1.99604 14.0363 -2.47498 Vertex 912 1.43251 13.4796 -2.37682 Vertex 913 1.3285 13.4771 -2.37637 Vertex 914 1.3285 13.3904 -2.25659 Vertex 915 1.17128 15.7219 -0.374934 Vertex 916 1.4127 15.855 -0.743442 Vertex 917 1.19081 15.7104 -0.912216 Vertex 918 3.47075 13.5247 -0.724421 Vertex 919 3.69484 15.1015 -1.45676 Vertex 920 3.57052 15.1038 -1.44354 Vertex 921 3.57323 15.1727 -1.05305 Vertex 922 3.35922 15.1629 -1.10854 Vertex 923 3.36528 15.2578 -1.11945 Vertex 924 3.28861 15.3277 -1.20921 Vertex 925 3.28764 15.4316 -1.22857 Vertex 926 3.38631 13.5322 -0.296186 Vertex 927 2.85333 17.2321 -0.515332 Vertex 928 1.10151 14.3091 -0.543175 Vertex 929 3.21186 15.8412 -0.781739 Vertex 930 4.22416 17.7974 -0.0615483 Vertex 931 1.5785 12.7908 -0.48554 Vertex 932 0 15.3203 -1.87796 Vertex 933 0 15.2203 -1.8657 Vertex 934 2.98023e-008 14.669 -1.81103 Vertex 935 5.21541e-008 14.523 -2.17556 Vertex 936 0.065704 14.6061 -1.52061 Vertex 937 0.262738 14.5524 -1.96921 Vertex 938 2.96935 15.564 -0.961855 Vertex 939 4.18694 17.5551 -0.530095 Vertex 940 3.35106 17.5168 -0.471059 Vertex 941 0.931118 14.5998 0 Vertex 942 1.40661 15.2983 0 Vertex 943 1.01215 15.329 0 Vertex 944 0.617657 15.2083 0 Vertex 945 0.108713 15.1136 0 Vertex 946 0.395613 15.3701 0 Vertex 947 1.33242 15.8197 1.14099e-025 Vertex 948 4.8279 16.2731 0 Vertex 949 1.21042 14.0876 -1.39425 Vertex 950 0.618785 14.6314 -0.55541 Vertex 951 1.69665 15.7909 -0.868024 Vertex 952 1.9729 15.7325 -0.898798 Vertex 953 1.67254 15.5995 -0.99776 Vertex 954 0.88407 14.4346 -1.53929 Vertex 955 2.99075 15.4502 -1.19153 Vertex 956 1.00111 15.6442 2.71406e-014 Vertex 957 0.803904 15.5555 -0.617726 Vertex 958 2.27302 12.8096 -0.486254 Vertex 959 4.16653 17.7817 -0.429783 Vertex 960 3.24528 15.4438 -1.2037 Vertex 961 0.648428 15.5206 2.71406e-014 Vertex 962 0.0833694 15.269 -2.25767 Vertex 963 4.72889 13.9076 -3.3934e-014 Vertex 964 4.8279 13.8091 0 Vertex 965 3.35809 14.2097 -1.7634 Vertex 966 3.23652 14.2041 -1.79484 Vertex 967 3.00905 14.2386 -1.59923 Vertex 968 2.92568 14.2472 -1.55036 Vertex 969 2.92568 14.1537 -1.53387 Vertex 970 2.97145 13.5139 -1.33288 Vertex 971 2.88419 13.3899 -1.48898 Vertex 972 1.27869 15.5029 -1.10728 Vertex 973 1.03561 14.3507 -1.09108 Vertex 974 2.92389 13.4781 -2.60171e-016 Vertex 975 2.52771 13.4101 -0.406157 Vertex 976 2.74159 13.3652 -1.51837 Vertex 977 2.52839 13.369 -1.12565 Vertex 978 2.72897 13.4318 -0.68254 Vertex 979 3.10702 13.4884 -0.621281 Vertex 980 1.30929 13.6871 -2.30646 Vertex 981 0.771114 15.2005 -2.68026 Vertex 982 1.0365 14.1726 -2.49901 Vertex 983 3.07478 14.1977 -1.284 Vertex 984 3.13211 13.5567 -1.09006 Vertex 985 4.63183 13.7018 -0.267417 Vertex 986 1.84308 16.2323 -0.665011 Vertex 987 1.3285 13.5788 -0.103036 Vertex 988 1.32369 13.6685 -1.77312 Vertex 989 1.3285 13.6374 -1.14077 Vertex 990 1.3285 13.1012 -1.19728 Vertex 991 1.30929 13.8797 -0.105327 Vertex 992 4.73745 17.4412 -0.481033 Vertex 993 2.73908 13.4022 -1.96667 Vertex 994 3.3253 13.5953 -0.871432 Vertex 995 3.58988 15.5731 -0.567217 Vertex 996 3.75718 15.5322 -0.799217 Vertex 997 3.76695 15.521 -0.862486 Vertex 998 3.85554 15.4301 -0.797544 Vertex 999 3.943 15.3314 -0.737074 Vertex 1000 4.03618 15.2384 -0.68014 Vertex 1001 4.07361 15.2228 -0.768813 Vertex 1002 4.10649 15.17 -1.06826 Vertex 1003 4.14576 15.1545 -1.1561 Vertex 1004 4.01622 15.0414 -1.20342 Vertex 1005 1.3285 13.0124 -0.989335 Vertex 1006 1.3285 13.1558 -3.3934e-014 Vertex 1007 3.25751 14.2378 -1.05682 Vertex 1008 2.72328 14.0402 -2.17755 Vertex 1009 2.4279 13.3125 -1.51766 Vertex 1010 1.60749 12.7124 -2.24154 Vertex 1011 1.45414 12.7609 -2.25008 Vertex 1012 3.10859 15.9807 -0.807706 Vertex 1013 1.60948 15.6506 -0.954229 Vertex 1014 1.49668 15.0923 -3.3934e-014 Vertex 1015 1.70209 15.976 -3.3934e-014 Vertex 1016 1.63317 16.0422 -7.60004e-026 Vertex 1017 1.7031 16.1046 -0.0937387 Vertex 1018 3.24933 16.7551 -0.671171 Vertex 1019 3.47673 16.7274 -0.676052 Vertex 1020 2.38836 16.0819 -0.789857 Vertex 1021 3.25018 16.0729 -0.791457 Vertex 1022 -4.36436e-015 15.2919 -1.17292 Vertex 1023 5.21541e-008 14.7429 -1.04993 Vertex 1024 5.21541e-008 14.6543 -0.948408 Vertex 1025 0.0657079 14.6704 -0.655488 Vertex 1026 0.3285 14.6508 -1.00214 Vertex 1027 4.8279 17.6419 -0.388938 Vertex 1028 1.32689 15.6876 -0.927204 Vertex 1029 1.29938 15.5811 -1.01556 Vertex 1030 4.8279 17.2424 -0.44436 Vertex 1031 0.104911 14.9895 -2.64305 Vertex 1032 0.331165 14.564 -2.56803 Vertex 1033 0.3285 14.4619 -2.55002 Vertex 1034 0.52359 14.4619 -2.43702 Vertex 1035 4.0441 13.5861 -0.299043 Vertex 1036 3.81916 15.7012 -0.383238 Vertex 1037 1.21042 14.156 -0.107423 Vertex 1038 2.76867 17.1697 -0.598058 Vertex 1039 0.52359 14.5831 -1.55513 Vertex 1040 1.00009e-006 15.43 -0.393752 Vertex 1041 0.426517 14.6764 -0.334168 Vertex 1042 1.00009e-006 15.3898 -1.18042 Vertex 1043 3.48363 16.785 0 Vertex 1044 2.56293 17.0183 0 Vertex 1045 0.3285 14.6812 -0.334278 Vertex 1046 3.43777 15.4805 -1.09225 Vertex 1047 3.32822 15.6529 -0.657663 Vertex 1048 3.40553 15.5694 -0.588257 Vertex 1049 3.35276 15.5462 -0.719929 Vertex 1050 3.36367 15.484 -1.07254 Vertex 1051 3.00476 15.4921 -1.02651 Vertex 1052 3.04021 15.5178 -0.880497 Vertex 1053 0.0978805 15.3547 -1.57272 Vertex 1054 0.496801 15.3644 -1.47466 Vertex 1055 0.711183 14.4058 -2.42756 Vertex 1056 4.63913 15.6432 -0.169471 Vertex 1057 4.63587 15.7396 -0.186708 Vertex 1058 4.7265 15.8438 -0.1998 Vertex 1059 4.8279 16.2437 -0.268259 Vertex 1060 1.10151 14.2387 -1.5184 Vertex 1061 1.20741 15.4628 -1.16892 Vertex 1062 0.922224 15.4058 -1.29089 Vertex 1063 0.605576 15.3791 -1.38239 Vertex 1064 0.266607 15.3915 -1.3344 Vertex 1065 0.220242 15.3932 -1.26004 Vertex 1066 0.0894205 15.3917 -1.17687 Vertex 1067 1.63259 15.7597 -0.883664 Vertex 1068 1.80335 15.8946 -0.828212 Vertex 1069 1.50847 15.9202 -0.820972 Vertex 1070 4.43906 15.6322 -0.232079 Vertex 1071 4.35896 15.6369 -0.205317 Vertex 1072 3.24891 14.1606 -2.04159 Vertex 1073 0.618784 14.5594 -1.5526 Vertex 1074 0.711183 14.5143 -1.65928 Vertex 1075 0.799897 14.4459 -1.87396 Vertex 1076 0.88407 14.3146 -2.4122 Vertex 1077 1.15997 14.1079 -1.93909 Vertex 1078 1.25256 13.8535 -2.44274 Vertex 1079 1.21042 13.9596 -2.35237 Vertex 1080 4.14311 17.7824 0 Vertex 1081 3.61055 17.5273 0 Vertex 1082 3.57568 17.6183 0 Vertex 1083 4.53711 17.7206 -0.500928 Vertex 1084 4.53828 17.5944 -0.523166 Vertex 1085 4.56733 17.5069 -0.504514 Vertex 1086 2.4279 13.2074 -1.41036 Vertex 1087 2.4279 13.0919 -1.39743 Vertex 1088 2.4279 13.0195 -0.89144 Vertex 1089 2.40809 12.8988 -1.17783 Vertex 1090 2.35379 12.8098 -1.26779 Vertex 1091 2.27313 12.7466 -1.35928 Vertex 1092 4.73596 15.2307 -0.723956 Vertex 1093 4.4992 15.1917 -0.944727 Vertex 1094 0 15.2657 -2.27983 Vertex 1095 0 15.1346 -2.46398 Vertex 1096 2.98023e-008 14.692 -2.48415 Vertex 1097 1.71865 16.1002 -0.786626 Vertex 1098 2.19404 15.9807 -0.807706 Vertex 1099 1.76026 16.046 -0.796202 Vertex 1100 0.974442 15.6245 -0.507571 Vertex 1101 4.34229 13.6 -0.297377 Vertex 1102 -4.36436e-015 15.3322 -0.293398 Vertex 1103 -4.36436e-015 15.2188 -0.105866 Vertex 1104 3.49829 13.5342 -0.584774 Vertex 1105 2.81709 14.9454 -2.34156 Vertex 1106 4.0957 14.4394 -1.05425 Vertex 1107 4.16462 14.3435 -1.00441 Vertex 1108 4.6249 15.4693 -0.575656 Vertex 1109 4.62529 15.3638 -0.557028 Vertex 1110 4.62526 15.2632 -0.539292 Vertex 1111 2.96045 15.6181 -0.981026 Vertex 1112 2.98159 15.4688 -1.15891 Vertex 1113 3.1357 15.5148 -0.897578 Vertex 1114 3.1309 15.4784 -1.10418 Vertex 1115 2.91058 15.4942 -1.01492 Vertex 1116 2.91841 15.5339 -1.01295 Vertex 1117 2.93115 17.175 0 Vertex 1118 1.6417 16.0342 -0.702763 Vertex 1119 1.65252 16.0392 -0.797383 Vertex 1120 1.68596 15.9807 -0.807706 Vertex 1121 0.88407 14.5161 -0.110156 Vertex 1122 1.3285 13.5229 -1.23477 Vertex 1123 1.3285 13.1422 -0.599151 Vertex 1124 1.3285 13.044 -0.396053 Vertex 1125 1.34748 12.941 -0.590104 Vertex 1126 4.23655 16.5687 0 Vertex 1127 4.43366 16.7659 0 Vertex 1128 4.06874 17.667 0 Vertex 1129 4.54087 17.7411 0 Vertex 1130 0.187445 15.442 -2.06409e-011 Vertex 1131 1.02807 14.305 -2.52236 Vertex 1132 1.03561 14.3917 -0.109212 Vertex 1133 1.03561 14.192 -2.39154 Vertex 1134 2.078 12.6055 -2.2227 Vertex 1135 0.618785 14.6415 -0.111108 Vertex 1136 4.8279 15.6073 -0.373101 Vertex 1137 1.17034 14.3858 0 Vertex 1138 1.15997 14.2303 -0.540185 Vertex 1139 1.25238 14.0478 -0.746906 Vertex 1140 3.56599 15.5866 -0.490691 Vertex 1141 3.67258 15.581 -0.522451 Vertex 1142 4.02609 15.5541 -0.674846 Vertex 1143 4.03863 15.5439 -0.733004 Vertex 1144 4.03858 15.4446 -0.715534 Vertex 1145 4.24637 14.4377 -0.47034 Vertex 1146 2.4279 12.9655 -1.48286 Vertex 1147 2.40807 12.8448 -1.66627 Vertex 1148 0.618784 14.5056 -1.99374 Vertex 1149 1.6784 12.8 -3.3934e-014 Vertex 1150 1.07746 15.5639 -1.03328 Vertex 1151 0.943813 15.5874 -1.00923 Vertex 1152 4.44872 17.8244 -0.421444 Vertex 1153 4.53712 17.8314 -0.481381 Vertex 1154 4.62631 17.0434 -0.417366 Vertex 1155 4.727 17.242 -0.446322 Vertex 1156 0.962894 14.308 -2.07733 Vertex 1157 4.8279 14.6355 -0.41446 Vertex 1158 4.8279 14.7513 -0.412027 Vertex 1159 4.8279 15.1513 -0.60875 Vertex 1160 4.8279 14.1711 -0.340966 Vertex 1161 4.8279 14.1878 -0.246231 Vertex 1162 4.8279 13.8399 -0.0858828 Vertex 1163 4.35038 14.373 -0.837252 Vertex 1164 4.45178 14.3602 -0.909605 Vertex 1165 4.45261 14.4618 -0.92733 Vertex 1166 4.52267 15.0737 -1.02015 Vertex 1167 4.59422 15.1774 -1.02633 Vertex 1168 0.350708 15.435 -0.874002 Vertex 1169 0.292974 15.4444 -0.493363 Vertex 1170 1.47165 15.7973 -3.3934e-014 Vertex 1171 0.774054 15.4578 -6.79339e-015 Vertex 1172 0.83423 15.2652 0 Vertex 1173 1.12861 15.3753 0 Vertex 1174 1.13546 15.6011 -6.79339e-015 Vertex 1175 2.20297 15.4656 -1.16428 Vertex 1176 2.63718 15.5299 -1.07216 Vertex 1177 4.8279 15.6099 -0.0843993 Vertex 1178 2.88787 13.4433 -0.894431 Vertex 1179 3.4006 14.9344 -1.81008 Vertex 1180 3.2312 14.8598 -2.2334 Vertex 1181 3.30778 16.0204 -0.737648 Vertex 1182 3.44025 16.0708 -0.653477 Vertex 1183 3.37437 16.3363 -0.74501 Vertex 1184 3.48618 16.3738 -0.677457 Vertex 1185 0.3285 14.4808 -2.44021 Vertex 1186 1.24668 15.7483 -0.789448 Vertex 1187 2.35384 12.7525 -1.75279 Vertex 1188 4.05078 14.3527 -0.952083 Vertex 1189 3.39192 14.3224 -1.71788 Vertex 1190 2.70213 15.8822 -0.832049 Vertex 1191 2.80374 15.9807 -0.807706 Vertex 1192 2.89707 16.0911 -0.78825 Vertex 1193 2.91984 16.5951 -0.699375 Vertex 1194 3.10946 16.7249 -0.676481 Vertex 1195 2.4053 16.8635 -0.652057 Vertex 1196 2.33748 16.7992 -0.58149 Vertex 1197 1.90328 16.3073 -0.470101 Vertex 1198 2.2095 16.6689 -0.344591 Vertex 1199 3.81304 13.5737 -0.10388 Vertex 1200 3.19367 14.8204 -2.4566 Vertex 1201 4.36059 14.4255 -0.539443 Vertex 1202 4.58719 14.3817 -0.787841 Vertex 1203 4.60092 14.3651 -0.882099 Vertex 1204 4.67683 14.4681 -0.891375 Vertex 1205 0 15.1657 -2.2649 Vertex 1206 0 15.2504 -2.38007 Vertex 1207 0.075019 15.2414 -2.43722 Vertex 1208 0.174338 15.2184 -2.577 Vertex 1209 2.47942 15.6457 -0.958057 Vertex 1210 4.8279 17.0615 -0.0985257 Vertex 1211 4.8279 16.8943 -0.286571 Vertex 1212 4.31749 13.6021 -0.0861552 Vertex 1213 3.11161 13.5001 -0.295287 Vertex 1214 3.36861 15.0257 -1.8862 Vertex 1215 3.24656 15.0208 -1.91401 Vertex 1216 4.53524 13.6063 -0.261942 Vertex 1217 4.8279 17.5543 -0.0979566 Vertex 1218 4.8279 17.5543 3.3934e-014 Vertex 1219 4.72934 17.3572 0 Vertex 1220 4.63096 17.8445 0 Vertex 1221 4.59117 17.8419 -0.0583671 Vertex 1222 4.72852 17.8479 -0.152001 Vertex 1223 2.1779 12.7908 -0.48554 Vertex 1224 2.68537 15.3856 -1.35555 Vertex 1225 2.60754 15.4284 -1.23544 Vertex 1226 2.95867 15.4167 -1.26166 Vertex 1227 2.92529 15.239 -1.71695 Vertex 1228 1.5906 15.4505 -1.19097 Vertex 1229 1.70768 15.5104 -1.09713 Vertex 1230 1.52483 15.6046 -0.993099 Vertex 1231 1.5489 15.7177 -0.907657 Vertex 1232 2.4279 13.1419 -0.80064 Vertex 1233 2.4279 13.2728 -0.507457 Vertex 1234 3.1789 14.1782 -1.94203 Vertex 1235 2.90245 14.1935 -1.85527 Vertex 1236 2.78402 14.1837 -1.91047 Vertex 1237 2.81306 14.1065 -1.80163 Vertex 1238 2.8464 13.4677 -1.59523 Vertex 1239 2.07799 16.08 -0.790206 Vertex 1240 2.50985 13.5147 -3.3934e-014 Vertex 1241 1.94478 13.4709 -3.3934e-014 Vertex 1242 2.31827 12.9865 -3.3934e-014 Vertex 1243 3.08816 17.3779 -0.561342 Vertex 1244 4.8279 14.0918 -0.239348 Vertex 1245 2.4279 13.3435 -1.21501 Vertex 1246 2.4279 13.2273 -1.21 Vertex 1247 2.4279 13.1282 -0.999699 Vertex 1248 2.4279 13.0045 -1.08876 Vertex 1249 2.40809 12.9152 -0.981941 Vertex 1250 2.35373 12.8486 -0.780959 Vertex 1251 2.27305 12.8007 -0.680599 Vertex 1252 2.1779 12.7702 -0.873503 Vertex 1253 2.078 12.7764 -0.776574 Vertex 1254 1.6784 12.7819 -0.6796 Vertex 1255 1.5785 12.7967 -0.291369 Vertex 1256 1.4818 12.8161 -0.291812 Vertex 1257 1.40135 12.8436 -0.878525 Vertex 1258 4.8279 16.1688 -0.0915076 Vertex 1259 3.87825 17.7116 -0.502509 Vertex 1260 4.8279 17.26 -0.344504 Vertex 1261 0.914614 15.608 -0.09346 Vertex 1262 2.07056 12.6895 -2.2375 Vertex 1263 1.30927 13.6691 -2.41023 Vertex 1264 4.62559 13.711 -3.3934e-014 Vertex 1265 3.80876 13.7769 -3.3934e-014 Vertex 1266 4.21179 13.9033 -3.3934e-014 Vertex 1267 4.3257 13.6027 -2.77556e-016 Vertex 1268 0.0760791 14.6838 -0.186024 Vertex 1269 2.078 12.7967 -0.291369 Vertex 1270 1.34745 12.8201 -1.86131 Vertex 1271 3.94485 16.3194 -0.441388 Vertex 1272 3.33039 16.4678 -0.72183 Vertex 1273 1.30929 13.8318 -1.15726 Vertex 1274 1.32369 13.7259 -1.25336 Vertex 1275 1.3285 13.6079 -1.45084 Vertex 1276 1.3285 13.4913 -1.54252 Vertex 1277 1.3285 13.0706 -1.49552 Vertex 1278 1.3285 12.9656 -1.48222 Vertex 1279 2.1779 12.7058 -1.55029 Vertex 1280 2.078 12.7058 -1.55029 Vertex 1281 4.3257 15.3545 -0.606567 Vertex 1282 0.219 14.4619 -2.55002 Vertex 1283 4.10001 16.3623 -0.396622 Vertex 1284 0.800255 14.5667 0 Vertex 1285 4.32647 15.6286 -0.252321 Vertex 1286 4.45076 15.7327 -0.206564 Vertex 1287 4.709 15.6132 -0.339859 Vertex 1288 4.52202 16.8428 -0.392541 Vertex 1289 4.42353 16.1373 -0.282178 Vertex 1290 4.62527 16.2423 -0.276181 Vertex 1291 4.52427 16.1407 -0.268469 Vertex 1292 4.72651 16.1434 -0.25263 Vertex 1293 4.62688 15.9427 -0.223222 Vertex 1294 4.54547 15.6417 -0.17801 Vertex 1295 4.6212 15.6303 -0.242786 Vertex 1296 2.55396 16.8816 0 Vertex 1297 1.43403 13.3675 -3.3934e-014 Vertex 1298 1.52286 12.9098 -3.3934e-014 Vertex 1299 0.838847 14.654 0 Vertex 1300 1.77358 14.9416 0 Vertex 1301 1.68295 14.505 0 Vertex 1302 1.02953 15.2379 0 Vertex 1303 1.12226 15.0162 0 Vertex 1304 1.24673 14.9441 0 Vertex 1305 1.29742 14.5286 0 Vertex 1306 0.963208 14.4578 0 Vertex 1307 1.99824 15.5534 -1.04467 Vertex 1308 2.31387 12.8701 -2.26935 Vertex 1309 2.23238 12.7129 -2.24163 Vertex 1310 1.97818 12.893 -3.3934e-014 Vertex 1311 2.078 12.8 -3.3934e-014 Vertex 1312 0 15.3437 -1.67649 Vertex 1313 0 15.2442 -1.66562 Vertex 1314 2.98023e-008 14.7198 -1.3358 Vertex 1315 5.21541e-008 14.6065 -1.51626 Vertex 1316 0.0657041 14.6248 -1.32871 Vertex 1317 0.262804 14.6631 -0.801709 Vertex 1318 0.426517 14.5852 -1.66738 Vertex 1319 0.3285 14.563 -1.88915 Vertex 1320 0.262798 14.5794 -1.75833 Vertex 1321 0.262804 14.6142 -1.4402 Vertex 1322 0.262804 14.6336 -1.22763 Vertex 1323 0.426517 14.6595 -0.779426 Vertex 1324 0.882168 15.0267 0 Vertex 1325 0.523606 14.6658 0 Vertex 1326 1.28567 13.9745 -3.3934e-014 Vertex 1327 1.16019 14.2402 0 Vertex 1328 2.85995 15.7917 -0.867652 Vertex 1329 2.88685 15.8845 -0.831309 Vertex 1330 3.07055 15.7459 -0.891132 Vertex 1331 2.7373 14.9651 -2.23 Vertex 1332 2.44779 15.469 -1.15847 Vertex 1333 2.41637 15.5462 -1.05279 Vertex 1334 2.96092 17.3103 -0.0726621 Vertex 1335 0.799897 14.5162 -1.21452 Vertex 1336 0.557522 15.4977 -0.0938585 Vertex 1337 0.65569 15.512 -0.570925 Vertex 1338 0.654015 15.4876 -1.03324 Vertex 1339 2.99346 14.9103 -2.54074 Vertex 1340 2.9914 14.8952 -2.62643 Vertex 1341 3.07666 16.8589 -0.652868 Vertex 1342 2.90779 17.1547 -0.600708 Vertex 1343 1.09258 15.6782 -0.506835 Vertex 1344 0.52359 14.6388 -0.889771 Vertex 1345 0.711183 14.5379 -1.43882 Vertex 1346 1.44536 12.9873 -3.3934e-014 Vertex 1347 1.48137 15.9129 -0.513535 Vertex 1348 1.36968 15.836 -0.490198 Vertex 1349 3.26073 17.37 0 Vertex 1350 2.4279 13.0568 -1.69437 Vertex 1351 2.4279 13.172 -1.70968 Vertex 1352 2.4279 13.2455 -2.02027 Vertex 1353 4.8279 17.1601 3.3934e-014 Vertex 1354 4.8279 17.2586 -0.0984536 Vertex 1355 4.8279 17.4421 -0.47958 Vertex 1356 4.8279 17.1583 -0.340981 Vertex 1357 1.49298 14.3468 -2.52972 Vertex 1358 1.29677 13.9787 -2.46483 Vertex 1359 2.92593 13.4054 -1.40148 Vertex 1360 2.83824 13.3981 -1.34793 Vertex 1361 2.53705 13.3406 -1.43753 Vertex 1362 2.77285 13.4129 -1.07537 Vertex 1363 3.06926 15.0718 -1.62508 Vertex 1364 3.03688 15.0951 -1.49287 Vertex 1365 2.88084 15.654 -0.951611 Vertex 1366 4.62494 15.5685 -0.593153 Vertex 1367 2.88736 15.1447 -1.78116 Vertex 1368 2.85126 15.0326 -1.84753 Vertex 1369 2.24277 12.9095 -3.3934e-014 Vertex 1370 4.42469 15.2582 -0.567718 Vertex 1371 3.82371 13.5749 -2.60171e-016 Vertex 1372 4.8279 13.9076 0 Vertex 1373 4.8279 14.0088 -0.0852482 Vertex 1374 0.3285 14.685 0 Vertex 1375 0.3285 14.6846 -0.111434 Vertex 1376 1.22111 15.549 -1.04966 Vertex 1377 1.03622 15.4855 -1.1324 Vertex 1378 4.8279 16.1595 -0.17004 Vertex 1379 4.8279 16.2603 -0.173904 Vertex 1380 4.48097 15.2084 -0.850403 Vertex 1381 4.34942 15.2381 -0.682082 Vertex 1382 1.16039 14.0236 -2.47273 Vertex 1383 1.28544 13.8592 -1.79785 Vertex 1384 0.963959 14.2375 -2.51045 Vertex 1385 0.801544 14.3447 -2.52936 Vertex 1386 0.618785 14.591 -1.22078 Vertex 1387 0.52359 14.5945 -1.44442 Vertex 1388 0.426517 14.6194 -1.33494 Vertex 1389 -4.36436e-015 15.3056 -0.977718 Vertex 1390 5.21541e-008 14.7553 -0.859153 Vertex 1391 5.21541e-008 14.6654 -0.758798 Vertex 1392 0.0657041 14.6605 -0.848046 Vertex 1393 0.3285 14.6339 -1.22437 Vertex 1394 0.262804 14.6499 -1.01478 Vertex 1395 0.26268 14.6771 -0.482412 Vertex 1396 4.24637 14.3441 -0.453845 Vertex 1397 3.00698 15.9807 -0.807706 Vertex 1398 3.21021 15.9807 -0.807706 Vertex 1399 4.8279 14.5296 -0.502376 Vertex 1400 4.8279 14.4182 -0.580914 Vertex 1401 2.4279 12.9284 -1.77737 Vertex 1402 2.4279 13.0296 -1.89213 Vertex 1403 2.4279 13.1446 -1.90906 Vertex 1404 2.4279 12.9662 -2.28629 Vertex 1405 0.88407 14.496 -0.770734 Vertex 1406 1.42451 13.1646 -2.32127 Vertex 1407 0.962894 14.3877 -1.42396 Vertex 1408 1.03561 14.3325 -1.30874 Vertex 1409 1.10151 14.2601 -1.30213 Vertex 1410 1.15997 14.1816 -1.29496 Vertex 1411 1.21042 14.1157 -1.07321 Vertex 1412 1.25238 13.9993 -1.38551 Vertex 1413 1.30929 13.7361 -1.9943 Vertex 1414 1.28544 13.9266 -1.16519 Vertex 1415 1.30929 13.7779 -1.6811 Vertex 1416 1.32369 13.6938 -1.56548 Vertex 1417 1.3285 13.5843 -1.65733 Vertex 1418 1.3285 13.4663 -1.74707 Vertex 1419 1.3285 13.0463 -1.69384 Vertex 1420 1.32369 13.6246 -2.0838 Vertex 1421 1.3285 13.5576 -1.86326 Vertex 1422 1.3285 13.4527 -1.8492 Vertex 1423 1.3285 13.2686 -2.33962 Vertex 1424 0.525907 14.4425 -2.54661 Vertex 1425 3.04335 17.3609 0 Vertex 1426 4.00459 14.4046 -0.657706 Vertex 1427 3.96957 14.4203 -0.568765 Vertex 1428 4.06026 14.3333 -0.515274 Vertex 1429 3.47326 14.2437 -1.57021 Vertex 1430 3.392 14.2528 -1.51869 Vertex 1431 3.20521 14.294 -1.28488 Vertex 1432 3.07478 14.2913 -1.3005 Vertex 1433 3.19306 14.2249 -1.12975 Vertex 1434 2.71197 14.0232 -2.27358 Vertex 1435 3.66146 17.6498 -0.065006 Vertex 1436 3.79386 13.6567 -0.522962 Vertex 1437 2.4279 13.1662 -3.3934e-014 Vertex 1438 1.47029 15.5024 -1.1079 Vertex 1439 0.88407 14.3659 -2.08573 Vertex 1440 0.799897 14.4158 -2.09298 Vertex 1441 2.4279 13.3953 -0.304235 Vertex 1442 1.27168 15.7578 -0.884619 Vertex 1443 1.40805 15.7361 -0.896682 Vertex 1444 1.38354 15.6224 -0.977276 Vertex 1445 4.53222 15.386 -3.3934e-014 Vertex 1446 4.72934 15.8788 0 Vertex 1447 4.8279 16.0759 0 Vertex 1448 2.76197 15.3159 -1.91397 Vertex 1449 3.24783 14.2616 -2.06299 Vertex 1450 3.22972 14.1478 -2.11431 Vertex 1451 3.1352 14.1514 -2.09415 Vertex 1452 2.85179 14.1621 -2.03295 Vertex 1453 2.73908 14.1505 -2.09863 Vertex 1454 2.75934 14.0737 -1.98755 Vertex 1455 2.94219 15.0264 -1.88232 Vertex 1456 3.21382 15.0076 -1.9892 Vertex 1457 3.30375 15.0011 -2.02617 Vertex 1458 3.33067 14.9105 -1.94582 Vertex 1459 3.35666 14.3107 -1.78415 Vertex 1460 3.32594 14.1977 -1.83108 Vertex 1461 3.2705 14.2168 -1.72312 Vertex 1462 3.09975 14.2671 -1.43759 Vertex 1463 2.97145 14.2623 -1.46484 Vertex 1464 3.02119 14.1835 -1.365 Vertex 1465 2.88396 14.1383 -1.62138 Vertex 1466 2.92395 13.4778 -0.100553 Vertex 1467 4.34138 13.6936 -0.314077 Vertex 1468 4.43743 14.3519 -0.40959 Vertex 1469 3.5473 14.2837 -0.79665 Vertex 1470 3.08486 14.2859 -2.51898 Vertex 1471 2.70309 14.5955 -2.57358 Vertex 1472 4.53432 13.6998 -0.278558 Vertex 1473 2.92568 13.4988 -1.4184 Vertex 1474 3.47035 13.6182 -0.741208 Vertex 1475 3.70966 13.5546 -0.555209 Vertex 1476 3.62699 13.6388 -0.624721 Vertex 1477 3.3963 14.2619 -0.920138 Vertex 1478 2.78402 13.4353 -1.77851 Vertex 1479 2.7391 13.3086 -1.95015 Vertex 1480 2.72328 13.3853 -2.06208 Vertex 1481 3.07509 13.4494 -1.15165 Vertex 1482 3.07478 13.5429 -1.16854 Vertex 1483 3.96957 13.6719 -0.436802 Vertex 1484 4.15259 13.6842 -0.366975 Vertex 1485 3.70923 14.3029 -0.68741 Vertex 1486 4.63183 14.3566 -0.382884 Vertex 1487 3.88071 14.3195 -0.593351 Vertex 1488 3.25786 13.4895 -0.924515 Vertex 1489 3.25751 13.5829 -0.941352 Vertex 1490 2.70439 15.4124 -1.27335 Vertex 1491 2.58162 15.4879 -1.12879 Vertex 1492 2.6097 15.7104 -0.912271 Vertex 1493 2.61536 15.6366 -0.965385 Vertex 1494 2.45327 15.5883 -1.00839 Vertex 1495 0.628507 15.2171 -2.58442 Vertex 1496 2.70855 15.0301 -2.4446 Vertex 1497 2.70809 15.1343 -2.46798 Vertex 1498 2.70821 15.2338 -2.48413 Vertex 1499 0.550347 15.4872 -0.530455 Vertex 1500 0.962894 14.4543 -0.329111 Vertex 1501 0.172578 14.6847 -0.0983474 Vertex 1502 4.72934 15.4846 0 Vertex 1503 3.74496 15.4844 -3.3934e-014 Vertex 1504 4.23656 15.1889 -3.3934e-014 Vertex 1505 4.03946 15.4846 -3.3934e-014 Vertex 1506 4.72934 15.6817 0 Vertex 1507 4.8279 15.5831 0 Vertex 1508 0.3285 14.5482 -1.99961 Vertex 1509 2.14674 16.594 -0.438308 Vertex 1510 1.68521 12.8857 -3.3934e-014 Vertex 1511 0.373724 15.4631 -7.81456e-012 Vertex 1512 0.480994 15.4504 -0.983442 Vertex 1513 0.260494 14.5078 -2.27466 Vertex 1514 0.172405 14.4792 -2.44994 Vertex 1515 3.43636 15.372 -1.07434 Vertex 1516 3.61539 17.6274 -0.453795 Vertex 1517 4.8279 14.2043 -0.089266 Vertex 1518 0.52359 14.4972 -2.21726 Vertex 1519 1.0977 14.4649 0 Vertex 1520 1.50161 14.0562 -2.47849 Vertex 1521 1.34038 14.1258 -2.49076 Vertex 1522 1.17901 14.1549 -2.49589 Vertex 1523 0.391467 15.3554 -1.56581 Vertex 1524 2.28528 15.3644 -1.47466 Vertex 1525 2.18641 15.3808 -1.37512 Vertex 1526 2.48472 15.4172 -1.26136 Vertex 1527 2.38687 15.7096 -0.912762 Vertex 1528 2.1621 15.6302 -0.970688 Vertex 1529 2.27902 15.5155 -1.09031 Vertex 1530 2.32013 15.4443 -1.20273 Vertex 1531 1.78888 15.4086 -1.28333 Vertex 1532 1.30554 15.4469 -1.19775 Vertex 1533 3.16196 15.7649 -0.810709 Vertex 1534 1.29103 14.2078 0 Vertex 1535 0.0757708 14.4935 -2.36367 Vertex 1536 0.64889 14.7414 0 Vertex 1537 1.42915 15.5621 -1.03517 Vertex 1538 0.768058 14.7115 -2.59403 Vertex 1539 0.942784 14.3683 -2.53351 Vertex 1540 1.59604 15.5307 -1.07115 Vertex 1541 4.72652 16.5429 -0.32307 Vertex 1542 4.8279 16.9428 -0.39153 Vertex 1543 0.739102 15.5442 -0.280777 Vertex 1544 2.52611 13.2469 -2.1232 Vertex 1545 1.28748 15.7828 -0.540671 Vertex 1546 0.711183 14.5883 -0.77564 Vertex 1547 5.21541e-008 14.8993 3.3934e-014 Vertex 1548 -4.36436e-015 15.0021 -0.105178 Vertex 1549 0.385558 15.1044 -2.66331 Vertex 1550 2.27688 16.7461 -0.0846313 Vertex 1551 4.53222 16.5687 0 Vertex 1552 4.8279 16.7659 3.3934e-014 Vertex 1553 4.8279 16.6673 -0.0985555 Vertex 1554 4.8279 16.5647 -0.209641 Vertex 1555 0.755475 14.4694 -2.55134 Vertex 1556 3.21877 15.2198 -1.26812 Vertex 1557 3.08363 14.3874 -2.53689 Vertex 1558 3.1864 14.6921 -2.59061 Vertex 1559 3.18807 14.6034 -2.49978 Vertex 1560 3.90637 15.7074 -0.348217 Vertex 1561 0.89175 15.4443 -1.20269 Vertex 1562 0.824886 15.4151 -1.26652 Vertex 1563 0.834288 15.4775 -1.14482 Vertex 1564 0.711183 14.441 -2.20866 Vertex 1565 3.64915 16.4924 -0.604522 Vertex 1566 0.375771 15.3794 -1.38117 Vertex 1567 3.64883 15.6872 -0.462719 Vertex 1568 1.48706 15.9251 -0.0937387 Vertex 1569 3.12142 17.4035 -0.281525 Vertex 1570 3.08712 15.1958 -1.43483 Vertex 1571 3.14746 15.2878 -1.36829 Vertex 1572 3.02568 15.3563 -1.55683 Vertex 1573 2.19276 15.7953 -0.865956 Vertex 1574 1.68144 15.71 -0.912515 Vertex 1575 1.6784 12.6808 -1.74293 Vertex 1576 2.4279 13.0364 -0.595083 Vertex 1577 4.01846 13.689 -3.3934e-014 Vertex 1578 1.21042 14.1462 -0.536992 Vertex 1579 4.3213 16.2353 -0.318254 Vertex 1580 4.41805 16.7437 -0.390006 Vertex 1581 2.40811 12.9432 -0.491325 Vertex 1582 2.35367 12.8689 -0.293013 Vertex 1583 2.273 12.8155 -0.291797 Vertex 1584 2.1779 12.7967 -0.291369 Vertex 1585 2.078 12.7941 -0.388466 Vertex 1586 1.6784 12.7967 -0.291369 Vertex 1587 1.5785 12.7819 -0.6796 Vertex 1588 1.48183 12.7896 -0.87483 Vertex 1589 2.078 12.6529 -1.93518 Vertex 1590 1.49433 15.9142 -0.72719 Vertex 1591 1.43075 15.8627 -0.838574 Vertex 1592 1.57068 15.8295 -0.851122 Vertex 1593 1.46647 15.6679 -0.941164 Vertex 1594 3.19328 14.1088 -2.33521 Vertex 1595 4.21983 16.2344 -0.341117 Vertex 1596 4.40226 15.5736 -0.564139 Vertex 1597 4.1813 15.6184 -0.310518 Vertex 1598 4.17516 15.6297 -0.246046 Vertex 1599 1.37711 13.7836 -2.43043 Vertex 1600 4.34138 14.4419 -0.446039 Vertex 1601 4.45294 14.4289 -0.520135 Vertex 1602 4.42821 14.3765 -0.817262 Vertex 1603 4.37851 14.3569 -0.928334 Vertex 1604 4.37903 14.4585 -0.946127 Vertex 1605 2.16805 15.4973 -1.11512 Vertex 1606 2.73504 15.4376 -1.21603 Vertex 1607 0.799897 14.5464 -0.773412 Vertex 1608 0.88407 14.4826 -0.990639 Vertex 1609 0.962894 14.4243 -0.98665 Vertex 1610 1.03561 14.3586 -0.982152 Vertex 1611 3.3042 17.5009 0 Vertex 1612 0.754438 15.5325 -0.769731 Vertex 1613 2.29206 15.7059 -0.915109 Vertex 1614 2.29488 15.792 -0.867531 Vertex 1615 2.29566 15.8834 -0.831678 Vertex 1616 2.60036 15.7883 -0.869259 Vertex 1617 2.83424 15.7272 -0.901925 Vertex 1618 2.71349 15.6739 -0.936811 Vertex 1619 2.70017 15.5799 -1.01675 Vertex 1620 0.196372 15.4377 -0.394045 Vertex 1621 2.58336 15.3644 -1.47466 Vertex 1622 2.86893 15.382 -1.36972 Vertex 1623 2.88384 15.347 -1.64573 Vertex 1624 2.54385 15.3558 -1.56198 Vertex 1625 0.89424 15.3644 -1.47466 Vertex 1626 1.06041 15.3463 -1.65194 Vertex 1627 1.27213 15.3557 -1.56298 Vertex 1628 2.68272 15.3644 -1.47466 Vertex 1629 2.56143 15.3927 -1.33054 Vertex 1630 1.28544 13.9608 -0.636079 Vertex 1631 4.22541 15.0588 -1.10478 Vertex 1632 3.4905 16.5839 0 Vertex 1633 2.27756 16.747 -3.3934e-014 Vertex 1634 3.33353 13.5222 -0.449463 Vertex 1635 3.58152 13.5445 -0.526916 Vertex 1636 3.6133 13.5546 -0.2896 Vertex 1637 3.07099 16.9373 0 Vertex 1638 2.28394 16.6098 0 Vertex 1639 4.43506 17.8279 0 Vertex 1640 4.8279 13.8905 -0.291481 Vertex 1641 1.5785 12.6808 -1.74293 Vertex 1642 1.48186 12.7251 -1.55264 Vertex 1643 1.40137 12.7903 -1.46218 Vertex 1644 4.53192 17.0573 -0.429174 Vertex 1645 2.52772 13.3851 -0.91293 Vertex 1646 4.6275 13.6099 -0.130594 Vertex 1647 2.76982 15.5462 -1.05287 Vertex 1648 3.21594 14.949 -2.32114 Vertex 1649 0.0920071 15.3093 -1.96595 Vertex 1650 0 15.3077 -1.97856 Vertex 1651 0 15.2076 -1.96563 Vertex 1652 2.98023e-008 14.6446 -2.00059 Vertex 1653 5.21541e-008 14.5624 -1.89354 Vertex 1654 0.0658891 14.5485 -1.99785 Vertex 1655 0.597038 15.0073 0 Vertex 1656 0.436898 14.7856 0 Vertex 1657 3.11733 13.4718 -0.932417 Vertex 1658 1.40238 13.9066 -3.3934e-014 Vertex 1659 3.47035 14.3666 -0.873171 Vertex 1660 3.60111 14.3632 -0.892572 Vertex 1661 3.71502 14.3146 -1.16834 Vertex 1662 3.72165 14.2933 -1.28884 Vertex 1663 3.77786 14.4034 -1.25853 Vertex 1664 3.82319 15.0191 -1.33013 Vertex 1665 3.87543 15.1274 -1.30984 Vertex 1666 3.75419 15.1327 -1.27941 Vertex 1667 3.73064 15.1921 -0.942806 Vertex 1668 3.76284 15.2153 -0.810988 Vertex 1669 3.67637 15.306 -0.880536 Vertex 1670 3.5973 15.4031 -0.951863 Vertex 1671 3.68063 15.5119 -0.914069 Vertex 1672 3.58911 15.5142 -0.901067 Vertex 1673 3.42985 15.5557 -0.66604 Vertex 1674 3.32819 15.56 -0.641313 Vertex 1675 1.09345 15.3804 -1.3766 Vertex 1676 1.19281 15.4092 -1.28158 Vertex 1677 2.34227 16.8108 -0.332512 Vertex 1678 2.48463 16.9468 -0.320911 Vertex 1679 2.99476 14.0967 -2.40396 Vertex 1680 2.80755 14.1139 -2.30626 Vertex 1681 3.90593 17.0092 -0.577933 Vertex 1682 4.08436 15.0478 -1.16731 Vertex 1683 3.73048 17.6716 -0.256937 Vertex 1684 2.78219 15.2918 -2.0976 Vertex 1685 4.67508 15.0775 -0.998979 Vertex 1686 3.21656 17.3426 -0.567563 Vertex 1687 4.63503 17.1535 -0.436083 Vertex 1688 4.22583 17.1991 -0.509744 Vertex 1689 1.07482 15.4447 -1.20186 Vertex 1690 0.260734 14.6824 -0.276979 Vertex 1691 3.20263 14.8336 -2.3818 Vertex 1692 4.372 15.0675 -1.05556 Vertex 1693 1.00009e-006 15.4036 -0.983978 Vertex 1694 2.60788 13.4279 -2.3677 Vertex 1695 2.51095 13.3111 -2.3471 Vertex 1696 1.99065 13.1376 -2.3165 Vertex 1697 2.06007 13.4218 -2.36662 Vertex 1698 1.41483 13.0469 -2.30053 Vertex 1699 3.62699 14.3872 -0.756683 Vertex 1700 3.75566 14.3817 -0.787693 Vertex 1701 4.1235 14.3587 -0.918271 Vertex 1702 4.09596 14.3379 -1.03623 Vertex 1703 4.23465 14.4501 -0.993781 Vertex 1704 3.02674 15.2653 -1.53908 Vertex 1705 2.97926 15.1721 -1.60293 Vertex 1706 2.93552 15.0646 -1.66578 Vertex 1707 2.98043 15.0419 -1.79452 Vertex 1708 3.28286 15.0338 -1.84064 Vertex 1709 3.40601 15.0377 -1.81863 Vertex 1710 3.44033 14.9459 -1.74483 Vertex 1711 2.81365 15.2103 -1.98183 Vertex 1712 2.78508 15.0992 -2.05355 Vertex 1713 2.81586 15.0161 -1.94106 Vertex 1714 2.87888 14.9947 -2.06226 Vertex 1715 3.15952 14.9804 -2.14334 Vertex 1716 3.25263 14.9754 -2.17168 Vertex 1717 3.25083 14.8727 -2.16004 Vertex 1718 2.63552 17.0755 -0.309996 Vertex 1719 3.45575 17.5667 -0.332566 Vertex 1720 3.51576 15.4916 -1.02915 Vertex 1721 3.91221 17.7263 -0.251798 Vertex 1722 1.34746 12.8591 -1.569 Vertex 1723 1.3285 12.9416 -1.67882 Vertex 1724 3.55713 16.3281 -0.626565 Vertex 1725 3.48483 15.6711 -0.554399 Vertex 1726 3.19306 14.3185 -1.14624 Vertex 1727 3.3247 14.3192 -1.14223 Vertex 1728 3.48856 14.2751 -1.39226 Vertex 1729 3.51756 14.2544 -1.50949 Vertex 1730 3.56335 14.3661 -1.47034 Vertex 1731 3.09371 15.1097 -1.41019 Vertex 1732 3.11961 15.0861 -1.54385 Vertex 1733 3.36575 15.0587 -1.69951 Vertex 1734 3.49046 15.0605 -1.68915 Vertex 1735 3.52883 14.9679 -1.62031 Vertex 1736 2.79353 17.1954 -0.299822 Vertex 1737 1.16281 15.7006 -0.817771 Vertex 1738 0.0815611 15.3783 -1.33713 Vertex 1739 0 15.2757 -1.36789 Vertex 1740 0 15.382 -1.27856 Vertex 1741 2.94153 13.4658 -0.63264 Vertex 1742 4.068 16.2369 -0.384378 Vertex 1743 3.99487 15.6202 -0.300005 Vertex 1744 4.08469 15.7179 -0.287669 Vertex 1745 4.8279 16.6432 -0.3387 Vertex 1746 2.8464 14.2161 -1.72719 Vertex 1747 2.9695 14.2238 -1.68303 Vertex 1748 3.20596 14.1912 -1.86782 Vertex 1749 3.27126 14.1732 -1.97019 Vertex 1750 3.29574 14.2866 -1.92096 Vertex 1751 3.79386 14.4051 -0.654925 Vertex 1752 3.91966 14.3977 -0.697219 Vertex 1753 3.97962 14.3462 -0.98914 Vertex 1754 3.96344 14.3251 -1.10892 Vertex 1755 4.02839 14.4333 -1.08922 Vertex 1756 4.63307 17.6205 -0.518577 Vertex 1757 4.63394 17.7358 -0.498237 Vertex 1758 4.6327 17.8381 -0.480202 Vertex 1759 4.63812 17.8402 -0.407332 Vertex 1760 3.47178 14.3449 -1.59022 Vertex 1761 1.10151 14.293 -0.868755 Vertex 1762 1.55466 15.9693 -0.501646 Vertex 1763 1.62949 16.0316 -0.488069 Vertex 1764 3.3253 14.3437 -1.00339 Vertex 1765 3.45693 14.3423 -1.01121 Vertex 1766 3.59652 14.2958 -1.27516 Vertex 1767 3.61444 14.2747 -1.39454 Vertex 1768 3.66566 14.3856 -1.3595 Vertex 1769 2.36623 15.4969 -1.11573 Vertex 1770 2.35387 15.5731 -1.02358 Vertex 1771 1.25238 13.9367 -1.91555 Vertex 1772 4.27991 17.8052 -0.244316 Vertex 1773 4.26644 15.7262 -0.240396 Vertex 1774 3.17225 15.4688 -1.15891 Vertex 1775 4.60164 14.4666 -0.899945 Vertex 1776 2.65408 15.264 -2.2915 Vertex 1777 2.73607 15.2643 -2.28932 Vertex 1778 1.3285 13.0331 -1.79285 Vertex 1779 1.3285 13.0602 -2.30286 Vertex 1780 3.81913 15.6084 -0.366889 Vertex 1781 3.92969 15.6014 -0.406774 Vertex 1782 4.11915 15.56 -0.641591 Vertex 1783 4.22945 15.5553 -0.66814 Vertex 1784 3.6488 15.5944 -0.446368 Vertex 1785 3.75705 15.5883 -0.48083 Vertex 1786 3.8449 15.5402 -0.753754 Vertex 1787 3.94577 15.537 -0.772045 Vertex 1788 4.09566 17.7708 -0.247743 Vertex 1789 1.25238 14.0576 -0.533627 Vertex 1790 2.84649 15.3164 -1.9098 Vertex 1791 0.0936072 15.3216 -1.86757 Vertex 1792 2.79886 15.327 -1.8229 Vertex 1793 1.14012 15.3365 -1.74125 Vertex 1794 2.40947 15.3465 -1.65014 Vertex 1795 2.92781 15.3378 -1.72928 Vertex 1796 3.21353 14.2359 -2.2084 Vertex 1797 2.62757 13.4296 -0.301968 Vertex 1798 1.13074 15.5182 -1.08681 Vertex 1799 3.19308 14.21 -2.35539 Vertex 1800 1.84007 16.2383 -0.374444 Vertex 1801 1.77562 16.1684 -0.466596 Vertex 1802 0.860044 15.5525 -1.04567 Vertex 1803 0.822748 15.545 -0.95468 Vertex 1804 3.21911 15.1374 -1.25319 Vertex 1805 2.95597 17.3049 -0.290337 Vertex 1806 4.29075 15.1646 -1.09887 Vertex 1807 4.18242 15.1756 -1.03628 Vertex 1808 4.1642 15.2286 -0.735597 Vertex 1809 4.22771 15.2499 -0.614812 Vertex 1810 4.32691 15.4604 -0.624953 Vertex 1811 4.13118 15.3445 -0.662837 Vertex 1812 4.66263 15.1958 -0.921591 Vertex 1813 3.04303 15.4421 -1.20707 Vertex 1814 2.4279 13.3742 -0.810839 Vertex 1815 2.93739 13.4284 -1.17857 Vertex 1816 4.52512 15.467 -0.587384 Vertex 1817 4.42563 15.5635 -0.621371 Vertex 1818 3.42298 13.5389 -0.10059 Vertex 1819 0.807539 15.3794 -1.38089 Vertex 1820 0.69173 15.402 -1.30173 Vertex 1821 0.52359 14.662 -0.33384 Vertex 1822 0.618785 14.6382 -0.333297 Vertex 1823 1.33251 15.8194 -0.0938387 Vertex 1824 4.14054 13.5919 -0.268865 Vertex 1825 3.99854 16.4052 -0.437149 Vertex 1826 4.09848 16.9642 -0.503222 Vertex 1827 1.34747 12.9094 -1.08008 Vertex 1828 1.3285 13.0316 -0.692873 Vertex 1829 1.3285 13.1251 -0.898337 Vertex 1830 1.3285 13.5401 -1.02938 Vertex 1831 1.3285 13.6598 -0.830102 Vertex 1832 1.40135 12.8554 -0.683508 Vertex 1833 1.34748 12.9362 -0.688288 Vertex 1834 1.3285 13.026 -0.791741 Vertex 1835 1.3285 13.1373 -0.698922 Vertex 1836 1.3285 13.56 -0.720919 Vertex 1837 1.67307 13.599 -3.3934e-014 Vertex 1838 1.3285 13.5792 -3.3934e-014 Vertex 1839 0.425312 14.8248 -2.61401 Vertex 1840 0.55264 14.5331 -2.56258 Vertex 1841 1.40134 12.8703 -0.293045 Vertex 1842 1.83578 16.2377 -0.0939496 Vertex 1843 0.426517 14.5114 -2.21943 Vertex 1844 1.7778 16.1632 -0.674686 Vertex 1845 1.70386 16.0949 -0.584621 Vertex 1846 1.56045 15.9698 -0.61938 Vertex 1847 1.63529 16.0328 -0.59969 Vertex 1848 1.63327 16.042 -0.0936947 Vertex 1849 1.7816 14.1376 -2.49285 Vertex 1850 1.42607 13.5834 -2.39512 Vertex 1851 3.43406 15.2742 -1.05913 Vertex 1852 0.651172 15.5186 -0.290784 Vertex 1853 1.00118 15.644 -0.0935443 Vertex 1854 2.41406 16.8827 -0.245039 Vertex 1855 4.7292 14.1047 -3.3934e-014 Vertex 1856 4.8279 14.0062 0 Vertex 1857 0.656809 15.4303 -1.23127 Vertex 1858 4.8279 15.4846 0 Vertex 1859 4.8279 15.4934 -0.0956645 Vertex 1860 2.98023e-008 14.4936 -2.36303 Vertex 1861 1.33483e-015 14.884 -2.62444 Vertex 1862 2.98023e-008 14.7983 -2.50092 Vertex 1863 0.192779 15.2005 -2.68026 Vertex 1864 0.192795 15.1018 -2.66285 Vertex 1865 0.10741 14.884 -2.62444 Vertex 1866 0.329023 14.6855 -2.58945 Vertex 1867 0.219012 14.5674 -2.56863 Vertex 1868 2.98023e-008 14.5917 -2.37901 Vertex 1869 0.10762 14.7785 -2.60584 Vertex 1870 2.98023e-008 14.6729 -2.58723 Vertex 1871 1.40138 12.7256 -1.9463 Vertex 1872 1.48188 12.6721 -1.93812 Vertex 1873 1.5785 12.6529 -1.93518 Vertex 1874 1.6784 12.6378 -2.03114 Vertex 1875 1.7783 12.6055 -2.2227 Vertex 1876 1.59517 12.9985 -2.29198 Vertex 1877 1.87388 12.6935 -2.2382 Vertex 1878 1.80024 15.5343 -1.0668 Vertex 1879 5.21541e-008 14.7753 -0.381835 Vertex 1880 6.6741e-016 14.9895 -2.64305 Vertex 1881 0.104195 15.2319 0 Vertex 1882 0.299237 15.357 0 Vertex 1883 0.32541 15.1525 0 Vertex 1884 0 15.2207 0 Vertex 1885 4.73678 17.3434 -0.463827 Vertex 1886 1.16191 15.6016 -0.995774 Vertex 1887 4.07542 15.1486 -1.18973 Vertex 1888 3.95947 15.1568 -1.14278 Vertex 1889 3.89806 15.2088 -0.847725 Vertex 1890 3.94295 15.2315 -0.719485 Vertex 1891 3.85184 15.3237 -0.780708 Vertex 1892 3.01012 13.5917 -3.3934e-014 Vertex 1893 2.72508 13.4486 -2.60171e-016 Vertex 1894 3.51182 15.1858 -0.978361 Vertex 1895 0.262586 14.5379 -2.07356 Vertex 1896 0.3285 14.5162 -2.22016 Vertex 1897 0.711183 14.6051 -0.332545 Vertex 1898 0.799897 14.5632 -0.33159 Vertex 1899 3.08487 13.8063 -3.3934e-014 Vertex 1900 3.42294 13.5393 -2.60171e-016 Vertex 1901 1.79866 15.6169 -0.981978 Vertex 1902 0.694047 15.4927 -1.12172 Vertex 1903 1.01462 15.6366 -0.650629 Vertex 1904 1.109 15.6661 -0.942426 Vertex 1905 0.923889 15.5968 -0.688262 Vertex 1906 0.994042 15.6162 -0.882224 Vertex 1907 2.54787 15.5603 -1.03708 Vertex 1908 3.62668 14.9879 -1.50677 Vertex 1909 2.65374 13.3109 -1.83774 Vertex 1910 2.78405 13.3418 -1.76199 Vertex 1911 2.49905 15.511 -1.09633 Vertex 1912 4.42473 15.3583 -0.585357 Vertex 1913 0.426517 14.6696 -0.556861 Vertex 1914 4.1332 15.4507 -0.680852 Vertex 1915 0.179535 15.4106 -0.976514 Vertex 1916 0.282146 15.4307 -0.791359 Vertex 1917 4.73292 17.8472 -0.22959 Vertex 1918 2.75613 15.1798 -2.17874 Vertex 1919 2.73732 15.065 -2.24752 Vertex 1920 3.25673 15.9274 -0.760615 Vertex 1921 3.26289 15.6511 -0.70704 Vertex 1922 3.7669 15.4218 -0.845021 Vertex 1923 0.618785 14.6213 -0.777395 Vertex 1924 2.75749 13.4216 -0.927246 Vertex 1925 1.39152 15.4092 -1.28171 Vertex 1926 1.88932 15.4507 -1.19066 Vertex 1927 4.8279 16.1438 -0.250649 Vertex 1928 4.8279 16.07 -0.086031 Vertex 1929 4.8279 16.062 -0.159573 Vertex 1930 1.7065 16.1037 -0.374169 Vertex 1931 1.88817 15.4964 -1.11647 Vertex 1932 2.61848 17.0533 -0.618586 Vertex 1933 0.452963 15.4642 -0.61381 Vertex 1934 4.63933 17.8439 -0.193321 Vertex 1935 0.187711 15.4417 -0.0961883 Vertex 1936 4.46382 17.8295 -0.23414 Vertex 1937 1.32369 13.7636 -0.731792 Vertex 1938 1.30929 13.8657 -0.631747 Vertex 1939 2.2747 16.7406 -0.338542 Vertex 1940 1.90328 16.2967 -0.751993 Vertex 1941 2.38428 15.401 -1.30462 Vertex 1942 1.17014 15.7255 -0.0937593 Vertex 1943 2.8056 14.9288 -2.43623 Vertex 1944 2.4279 13.3236 -1.41686 Vertex 1945 2.4279 13.2177 -1.31022 Vertex 1946 2.4279 13.0809 -1.49623 Vertex 1947 2.4279 12.9539 -1.58112 Vertex 1948 2.40808 12.8571 -1.56875 Vertex 1949 2.35383 12.7654 -1.65597 Vertex 1950 2.27315 12.7245 -1.55257 Vertex 1951 2.1779 12.6529 -1.93518 Vertex 1952 2.71772 17.1422 -0.0762844 Vertex 1953 2.55907 17.0121 -0.315365 Vertex 1954 2.14674 16.5884 -0.613563 Vertex 1955 2.70402 13.4354 -0.51443 Vertex 1956 4.07318 17.7624 -0.432789 Vertex 1957 4.15752 17.7784 -0.490721 Vertex 1958 4.176 17.687 -0.506845 Vertex 1959 4.35979 17.0708 -0.457989 Vertex 1960 4.30764 17.6252 -0.517741 Vertex 1961 4.44659 17.5595 -0.529321 Vertex 1962 4.8279 15.5019 -0.275462 Vertex 1963 0.618784 14.4736 -2.21365 Vertex 1964 2.4279 13.1567 -0.501928 Vertex 1965 2.4279 13.044 -0.397331 Vertex 1966 2.40811 12.9492 -0.294841 Vertex 1967 2.35369 12.8663 -0.390658 Vertex 1968 2.27301 12.8129 -0.389036 Vertex 1969 2.1779 12.7941 -0.388466 Vertex 1970 2.078 12.7908 -0.48554 Vertex 1971 1.6784 12.7867 -0.582587 Vertex 1972 1.5785 12.7867 -0.582587 Vertex 1973 1.48182 12.8014 -0.680632 Vertex 1974 1.40136 12.8288 -1.07334 Vertex 1975 1.34747 12.9008 -1.17801 Vertex 1976 1.3285 12.9959 -1.1867 Vertex 1977 1.3285 13.11 -1.09755 Vertex 1978 1.3285 13.5132 -1.33739 Vertex 1979 1.3285 13.6185 -1.34756 Vertex 1980 1.32369 13.716 -1.35748 Vertex 1981 1.30929 13.8226 -1.26218 Vertex 1982 1.28544 13.9174 -1.27084 Vertex 1983 1.25238 14.0187 -1.1729 Vertex 1984 1.21042 14.0977 -1.28731 Vertex 1985 1.15997 14.191 -1.18731 Vertex 1986 1.10151 14.2695 -1.19388 Vertex 1987 1.03561 14.342 -1.19995 Vertex 1988 0.962894 14.4077 -1.20544 Vertex 1989 0.88407 14.4563 -1.32005 Vertex 1990 0.799897 14.4961 -1.43468 Vertex 1991 3.26512 17.4752 -0.477556 Vertex 1992 3.3023 17.4999 -0.0684301 Vertex 1993 2.87435 17.2516 -0.294996 Vertex 1994 2.62248 15.2336 -2.48536 Vertex 1995 0.914558 15.6083 2.71406e-014 Vertex 1996 0.866346 15.4885 -6.79339e-015 Vertex 1997 0.529448 15.1888 0 Vertex 1998 0.706634 15.335 0 Vertex 1999 0.491438 15.3867 -6.79339e-015 Vertex 2000 0.557496 15.4979 2.71406e-014 Vertex 2001 0.738516 15.5463 -0.0937769 Vertex 2002 5.21541e-008 14.6838 -0.189658 Vertex 2003 2.61624 13.2611 -2.13017 Vertex 2004 3.02487 14.9558 -2.28287 Vertex 2005 2.75882 14.9823 -2.13252 Vertex 2006 4.52471 15.2612 -0.551143 Vertex 2007 2.40807 12.818 -1.86101 Vertex 2008 3.26639 15.9583 -3.3934e-014 Vertex 2009 2.86402 15.6812 -3.3934e-014 Vertex 2010 2.5944 15.7272 -3.3934e-014 Vertex 2011 2.87786 16.5671 0 Vertex 2012 2.81606 16.5115 -3.3934e-014 Vertex 2013 2.4793 16.2786 -3.3934e-014 Vertex 2014 1.90328 16.314 2.543e-025 Vertex 2015 1.96414 16.3852 -0.0924529 Vertex 2016 1.96414 16.3813 -0.369763 Vertex 2017 3.60567 17.622 -0.518298 Vertex 2018 2.75873 15.6333 -0.96811 Vertex 2019 1.21042 14.0095 -2.034 Vertex 2020 2.85129 15.1325 -1.86508 Vertex 2021 2.70854 14.9304 -2.4271 Vertex 2022 1.48227 15.9171 -0.386575 Vertex 2023 2.96572 13.4757 -0.472959 Vertex 2024 0.152869 15.3839 -1.31095 Vertex 2025 0.352547 15.4061 -1.2901 Vertex 2026 0.069942 14.6824 -0.275946 Vertex 2027 2.29566 15.9807 -0.807706 Vertex 2028 2.16731 16.1151 -0.78402 Vertex 2029 1.93514 16.1866 -0.771403 Vertex 2030 3.63934 17.5349 -0.533664 Vertex 2031 4.24727 13.5958 -0.321638 Vertex 2032 -4.36436e-015 15.3285 -0.489028 Vertex 2033 1.00009e-006 15.4237 -0.590594 Vertex 2034 0.52361 15.4436 -1.20413 Vertex 2035 0.0978253 15.4215 -0.689084 Vertex 2036 0.361407 15.4413 -0.786215 Vertex 2037 0.192176 15.4223 -0.788411 Vertex 2038 0.269455 15.4192 -0.967507 Vertex 2039 0.394534 15.4228 -1.15916 Vertex 2040 1.77056 16.17 7.9301e-026 Vertex 2041 4.52661 13.6086 -2.77556e-016 Vertex 2042 4.22072 13.5981 -0.0928618 Vertex 2043 4.42319 13.7069 -3.3934e-014 Vertex 2044 4.22525 13.5986 -2.77556e-016 Vertex 2045 2.52944 15.4482 -1.19527 Vertex 2046 0.483308 15.4771 -0.395536 Vertex 2047 0.554901 15.4596 -1.08057 Vertex 2048 0.612839 15.4826 -0.943338 Vertex 2049 0.696952 15.5079 -0.901882 Vertex 2050 0.522799 15.4771 -0.638072 Vertex 2051 2.71197 14.1168 -2.29008 Vertex 2052 0.79488 15.3644 -1.47466 Vertex 2053 0.880731 15.3556 -1.56324 Vertex 2054 0.0964393 15.3443 -1.67089 Vertex 2055 0.288661 15.3746 -1.40409 Vertex 2056 0.298081 15.3644 -1.47466 Vertex 2057 0.180379 15.3798 -1.37917 Vertex 2058 4.06072 13.5849 -0.383149 Vertex 2059 4.23907 16.885 -0.451134 Vertex 2060 4.62515 16.7416 -0.364242 Vertex 2061 4.52407 16.3404 -0.303711 Vertex 2062 4.42205 16.8573 -0.409377 Vertex 2063 4.31149 16.7559 -0.412097 Vertex 2064 4.40847 17.4354 -0.513565 Vertex 2065 4.06026 14.4268 -0.531769 Vertex 2066 4.53432 14.4482 -0.410521 Vertex 2067 4.67849 14.7728 -0.944947 Vertex 2068 4.75322 14.8753 -0.957819 Vertex 2069 3.39668 13.5136 -0.787865 Vertex 2070 2.71198 13.2749 -2.1416 Vertex 2071 0.0871604 15.2829 -2.16164 Vertex 2072 0.88407 14.5127 -0.330441 Vertex 2073 3.94878 13.5794 -0.334029 Vertex 2074 3.78471 13.5695 -0.253787 Vertex 2075 3.88115 13.5712 -0.461187 Vertex 2076 2.2732 12.6715 -1.93803 Vertex 2077 0.388562 15.4627 -0.29045 Vertex 2078 0.373734 15.4628 -0.0944964 Vertex 2079 2.70013 15.2914 -2.10054 Vertex 2080 3.54771 13.5353 -0.664412 Vertex 2081 3.02148 13.4351 -1.23264 Vertex 2082 2.4279 13.2636 -0.708532 Vertex 2083 2.4279 13.1525 -0.60166 Vertex 2084 2.4279 13.0316 -0.693911 Vertex 2085 2.4081 12.9286 -0.785825 Vertex 2086 2.35375 12.8423 -0.878437 Vertex 2087 2.27311 12.7657 -1.16568 Vertex 2088 2.1779 12.747 -1.16397 Vertex 2089 2.078 12.747 -1.16397 Vertex 2090 1.6784 12.7378 -1.26066 Vertex 2091 1.5785 12.7378 -1.26066 Vertex 2092 1.48185 12.7571 -1.26258 Vertex 2093 1.40136 12.801 -1.36509 Vertex 2094 1.34746 12.8707 -1.47137 Vertex 2095 1.3285 12.9539 -1.58056 Vertex 2096 1.3285 13.0815 -1.3962 Vertex 2097 1.3285 13.4792 -1.64484 Vertex 2098 1.3285 13.5713 -1.76034 Vertex 2099 1.32369 13.6816 -1.66935 Vertex 2100 1.30929 13.7903 -1.5765 Vertex 2101 1.28544 13.8848 -1.58732 Vertex 2102 1.25238 13.9884 -1.4917 Vertex 2103 1.21042 14.0648 -1.60789 Vertex 2104 1.15997 14.1357 -1.72476 Vertex 2105 1.10151 14.214 -1.73431 Vertex 2106 1.03561 14.2862 -1.74312 Vertex 2107 0.962894 14.3379 -1.85995 Vertex 2108 0.0788069 15.255 -2.3506 Vertex 2109 0.561259 15.4963 -0.281714 Vertex 2110 2.84357 15.4058 -1.29092 Vertex 2111 3.07692 15.4688 -1.15891 Vertex 2112 2.92011 15.4414 -1.20834 Vertex 2113 4.8279 15.2141 -0.817829 Vertex 2114 1.99088 15.8889 -0.829939 Vertex 2115 1.89667 15.8079 -0.860278 Vertex 2116 1.88063 15.7485 -0.889735 Vertex 2117 1.85367 15.6899 -0.925638 Vertex 2118 1.87573 15.5605 -1.03685 Vertex 2119 2.88291 15.2286 -1.80603 Vertex 2120 3.19341 13.4766 -0.997429 Vertex 2121 2.89608 14.9112 -2.53602 Vertex 2122 2.14996 16.4489 -0.725148 Vertex 2123 3.02476 16.7741 -0.667818 Vertex 2124 2.61834 16.6152 -0.695836 Vertex 2125 2.20847 16.6571 -0.68844 Vertex 2126 4.8279 13.998 -0.223759 Vertex 2127 2.99141 14.7976 -2.60921 Vertex 2128 2.8466 13.3742 -1.57829 Vertex 2129 4.74292 14.401 -0.678078 Vertex 2130 2.21068 16.6736 -0.0861492 Vertex 2131 4.8279 16.963 -0.0985401 Vertex 2132 4.8279 16.664 -0.218233 Vertex 2133 4.72655 16.8426 -0.375899 Vertex 2134 4.8279 16.743 -0.35631 Vertex 2135 1.88114 13.1729 -2.32275 Vertex 2136 2.31975 13.0806 -2.30646 Vertex 2137 3.42705 15.1507 -1.17764 Vertex 2138 3.2936 15.1264 -1.31531 Vertex 2139 3.58701 15.0818 -1.56815 Vertex 2140 3.04341 14.9705 -2.19919 Vertex 2141 3.06619 14.9853 -2.11566 Vertex 2142 3.09292 14.9998 -2.03351 Vertex 2143 3.12357 15.014 -1.95291 Vertex 2144 3.15825 15.028 -1.87338 Vertex 2145 3.19662 15.0417 -1.79589 Vertex 2146 3.23872 15.055 -1.72017 Vertex 2147 3.28425 15.0679 -1.64686 Vertex 2148 3.33347 15.0805 -1.57545 Vertex 2149 3.3859 15.0927 -1.50665 Vertex 2150 3.46192 15.0821 -1.56671 Vertex 2151 3.62902 15.1139 -1.38604 Vertex 2152 4.39568 15.2052 -0.868652 Vertex 2153 4.22846 15.1966 -0.916945 Vertex 2154 3.44175 15.1044 -1.44024 Vertex 2155 4.1467 15.1914 -0.946934 Vertex 2156 4.06653 15.1854 -0.980693 Vertex 2157 3.98816 15.1788 -1.01809 Vertex 2158 3.9114 15.1715 -1.05929 Vertex 2159 3.83689 15.1637 -1.10391 Vertex 2160 3.76463 15.1552 -1.15196 Vertex 2161 3.69466 15.1461 -1.20341 Vertex 2162 3.62715 15.1365 -1.25816 Vertex 2163 3.50069 15.1156 -1.37659 Vertex 2164 3.56244 15.1263 -1.31594 Vertex 2165 3.75267 15.1106 -1.40498 Vertex 2166 3.71238 15.0028 -1.4226 Vertex 2167 4.72976 14.1707 -0.343199 Vertex 2168 4.8279 13.984 -0.307976 Vertex 2169 4.63183 14.076 -0.333398 Vertex 2170 4.72976 13.9836 -0.310209 Vertex 2171 4.63275 13.6082 -0.250843 Vertex 2172 1.03561 14.3884 -0.32761 Vertex 2173 2.79554 17.1995 0 Vertex 2174 4.44598 17.7316 0 Vertex 2175 3.34155 17.5105 -0.537973 Vertex 2176 3.83254 17.2152 -0.590043 Vertex 2177 3.38243 17.4264 -0.55279 Vertex 2178 2.40115 15.4308 -1.23027 Vertex 2179 0.962894 14.4476 -0.548433 Vertex 2180 0.915647 15.6062 -0.280402 Vertex 2181 0.828603 15.5738 -0.281081 Vertex 2182 3.80912 16.8793 0 Vertex 2183 3.86194 16.5871 0 Vertex 2184 3.14464 16.9856 0 Vertex 2185 3.45258 16.6613 0 Vertex 2186 2.99886 16.8867 0 Vertex 2187 2.77516 17.0638 0 Vertex 2188 3.43374 15.4942 -1.01458 Vertex 2189 3.27795 15.5362 -0.776628 Vertex 2190 3.17981 15.5399 -0.755597 Vertex 2191 0.623412 15.3968 -1.31723 Vertex 2192 1.08684 15.6811 -0.280749 Vertex 2193 2.47582 16.9326 -0.561019 Vertex 2194 1.34749 12.9511 -0.294884 Vertex 2195 3.12045 14.9525 -2.30181 Vertex 2196 2.71378 17.1366 -0.304821 Vertex 2197 1.15997 14.0928 -2.04609 Vertex 2198 1.10151 14.1708 -2.05742 Vertex 2199 1.03561 14.2267 -2.17588 Vertex 2200 1.25204 15.7711 5.51004e-026 Vertex 2201 2.56311 17.0183 -0.0789183 Vertex 2202 1.08627 15.6833 2.71406e-014 Vertex 2203 0.280789 15.4508 -1.39983e-011 Vertex 2204 3.47985 17.5798 -0.0666094 Vertex 2205 1.55778 15.9751 -0.382701 Vertex 2206 1.77306 16.1701 -0.281339 Vertex 2207 1.70342 16.1041 -0.18748 Vertex 2208 1.63506 16.0394 -0.37463 Vertex 2209 1.56108 15.9823 -1.487e-025 Vertex 2210 0.292373 15.4493 -0.294974 Vertex 2211 4.5528 15.2276 -0.741176 Vertex 2212 4.7406 15.2138 -0.819867 Vertex 2213 4.63473 15.2464 -0.634835 Vertex 2214 3.51271 16.5931 -0.69973 Vertex 2215 3.62907 16.6226 -0.638204 Vertex 2216 3.74871 16.6515 -0.582806 Vertex 2217 3.83961 16.4859 -0.512793 Vertex 2218 3.72406 16.9203 -0.642028 Vertex 2219 3.79169 17.5911 0 Vertex 2220 4.02233 17.375 0 Vertex 2221 3.66821 17.6523 0 Vertex 2222 1.55061 15.8538 -3.3934e-014 Vertex 2223 1.44356 15.6602 -3.3934e-014 Vertex 2224 1.41061 15.871 1.764e-025 Vertex 2225 2.83331 14.9621 -2.24689 Vertex 2226 4.64737 17.5234 -0.500394 Vertex 2227 0.738475 15.5466 2.71406e-014 Vertex 2228 4.37269 15.2216 -0.775337 Vertex 2229 4.44378 15.2416 -0.661881 Vertex 2230 4.17982 14.4165 -0.590419 Vertex 2231 4.27349 14.3688 -0.860761 Vertex 2232 3.01002 14.126 -2.23762 Vertex 2233 3.04071 14.1549 -2.07387 Vertex 2234 3.06186 14.1692 -1.99309 Vertex 2235 3.08664 14.1832 -1.91347 Vertex 2236 3.11514 14.197 -1.83509 Vertex 2237 3.14731 14.2106 -1.7581 Vertex 2238 3.1831 14.224 -1.6824 Vertex 2239 3.22241 14.237 -1.60852 Vertex 2240 3.31114 14.262 -1.4665 Vertex 2241 3.36041 14.274 -1.39863 Vertex 2242 3.41296 14.2856 -1.3329 Vertex 2243 3.46847 14.2967 -1.26972 Vertex 2244 3.52682 14.3074 -1.2092 Vertex 2245 3.58794 14.3176 -1.15138 Vertex 2246 3.65187 14.3273 -1.09627 Vertex 2247 3.71834 14.3365 -1.04412 Vertex 2248 3.78707 14.3451 -0.995158 Vertex 2249 3.85803 14.3532 -0.949343 Vertex 2250 3.93118 14.3607 -0.906754 Vertex 2251 4.00634 14.3676 -0.867527 Vertex 2252 4.08312 14.3739 -0.831772 Vertex 2253 4.16199 14.3796 -0.799414 Vertex 2254 4.57359 14.3983 -0.693565 Vertex 2255 4.48811 14.3959 -0.707425 Vertex 2256 4.40514 14.3928 -0.724792 Vertex 2257 4.32284 14.3891 -0.745983 Vertex 2258 4.24161 14.3847 -0.770886 Vertex 2259 4.2347 14.3485 -0.975853 Vertex 2260 3.64067 17.6406 -0.259788 Vertex 2261 3.5517 17.6071 -0.262872 Vertex 2262 1.49109 15.4505 -1.19099 Vertex 2263 3.92406 13.5815 -0.100671 Vertex 2264 4.64016 14.4334 -0.494253 Vertex 2265 4.67635 14.3666 -0.873506 Vertex 2266 4.7384 14.4178 -0.582951 Vertex 2267 4.65809 14.4 -0.683895 Vertex 2268 4.66718 14.3833 -0.778704 Vertex 2269 3.74521 16.3346 -0.52859 Vertex 2270 1.33346 15.8178 -0.281576 Vertex 2271 2.86639 13.4493 -0.74492 Vertex 2272 3.05352 13.4578 -1.01171 Vertex 2273 1.10151 14.3157 -0.325955 Vertex 2274 3.0383 17.3555 -0.285843 Vertex 2275 3.31441 15.8646 -0.705212 Vertex 2276 3.39305 15.9365 -0.661519 Vertex 2277 0.416405 15.4454 -0.869929 Vertex 2278 2.4279 12.9 -1.97321 Vertex 2279 2.4279 12.9994 -2.08945 Vertex 2280 2.4279 13.1141 -2.10801 Vertex 2281 2.4279 13.2298 -2.12046 Vertex 2282 1.03561 14.3718 -0.764131 Vertex 2283 0.954271 15.4643 -1.16648 Vertex 2284 3.25574 13.4982 -0.782951 Vertex 2285 1.32214 15.4779 -1.14413 Vertex 2286 1.35262 15.5271 -1.07552 Vertex 2287 0.908409 15.499 -1.1127 Vertex 2288 1.96413 16.3727 -0.646937 Vertex 2289 1.2529 15.7691 -0.28136 Vertex 2290 2.81804 14.1301 -2.21445 Vertex 2291 2.62595 13.4323 -0.100499 Vertex 2292 2.92435 13.4748 -0.301233 Vertex 2293 2.5386 13.3066 -1.7257 Vertex 2294 2.35386 12.7245 -1.94613 Vertex 2295 2.77467 17.1765 -0.523811 Vertex 2296 3.2056 13.5057 -0.498724 Vertex 2297 4.44089 15.1722 -1.05544 Vertex 2298 4.8279 17.0625 -0.328766 Vertex 2299 2.67116 13.3732 -1.338 Vertex 2300 2.27142 16.73 -0.592067 Vertex 2301 3.20296 14.9356 -2.39711 Vertex 2302 2.87855 17.2567 -0.0738278 Vertex 2303 0.0927253 15.3996 -1.07053 Vertex 2304 3.20546 17.449 -0.277385 Vertex 2305 4.30845 15.5696 -0.586807 Vertex 2306 2.38926 15.6454 -0.958275 Vertex 2307 0.777068 15.5501 -0.519613 Vertex 2308 1.49089 15.3804 -1.37657 Vertex 2309 2.64137 15.3558 -1.56175 Vertex 2310 2.38464 15.3644 -1.47466 Vertex 2311 2.38511 15.3815 -1.3719 Vertex 2312 2.44564 15.3988 -1.31114 Vertex 2313 2.62183 17.0586 -0.541649 Vertex 2314 4.67182 15.179 -1.01719 Vertex 2315 2.93327 17.2854 -0.507148 Vertex 2316 1.41416 14.4559 -2.54896 Vertex 2317 1.08264 14.5542 -2.56629 Vertex 2318 0.867504 15.1055 -2.66351 Vertex 2319 4.37223 17.8186 -0.241356 Vertex 2320 4.31942 17.8128 -0.061045 Vertex 2321 0.711184 14.5484 -1.32846 Vertex 2322 0.618785 14.5708 -1.44207 Vertex 2323 0.52359 14.605 -1.33363 Vertex 2324 0.426517 14.6291 -1.22397 Vertex 2325 2.67908 16.9816 -0.631228 Vertex 2326 3.09668 17.3849 -0.491752 Vertex 2327 3.12926 17.41 -0.0704572 Vertex 2328 3.91465 16.4509 -0.476092 Vertex 2329 2.84633 17.225 -0.588311 Vertex 2330 2.41593 16.886 -0.081711 Vertex 2331 4.02442 13.5882 -2.60171e-016 Vertex 2332 4.58049 15.1941 -0.931268 Vertex 2333 3.01006 14.9406 -2.3691 Vertex 2334 3.09673 14.9238 -2.46409 Vertex 2335 0.989682 15.4335 -1.22455 Vertex 2336 4.33847 15.185 -0.983175 Vertex 2337 3.75364 17.6809 -0.0642692 Vertex 2338 3.82103 17.7002 -0.254306 Vertex 2339 3.888 17.716 -0.439966 Vertex 2340 1.28544 13.9689 -0.424134 Vertex 2341 2.34602 16.8179 -3.3934e-014 Vertex 2342 3.70544 17.6594 -0.448802 Vertex 2343 2.02486 16.4407 -0.726605 Vertex 2344 2.49252 16.0819 -0.789857 Vertex 2345 2.09565 16.3827 -0.736827 Vertex 2346 3.10199 16.4765 -0.720281 Vertex 2347 2.87206 16.496 -0.716846 Vertex 2348 2.54661 16.4808 -0.719536 Vertex 2349 2.39727 15.9807 -0.807706 Vertex 2350 2.19405 15.8844 -0.83136 Vertex 2351 2.09486 15.7996 -0.863981 Vertex 2352 2.07585 15.7233 -0.904243 Vertex 2353 2.04637 15.6471 -0.956973 Vertex 2354 2.12029 15.5455 -1.05367 Vertex 2355 3.20198 14.1219 -2.26098 Vertex 2356 4.62523 16.5419 -0.329014 Vertex 2357 4.52346 16.5401 -0.339001 Vertex 2358 4.42172 16.4377 -0.335445 Vertex 2359 4.31226 16.6486 -0.393007 Vertex 2360 4.20891 16.5486 -0.399265 Vertex 2361 4.8279 17.7463 -0.285877 Vertex 2362 4.72934 17.5543 0 Vertex 2363 4.8279 17.6529 3.3934e-014 Vertex 2364 4.8279 17.6529 -0.0974953 Vertex 2365 4.8279 17.849 -0.191716 Vertex 2366 3.97388 17.219 -0.589365 Vertex 2367 4.10023 17.2142 -0.546763 Vertex 2368 1.15997 14.2369 -0.324161 Vertex 2369 3.67391 13.555 -0.464651 Vertex 2370 3.39347 14.2213 -1.69723 Vertex 2371 2.22942 13.1729 -3.3934e-014 Vertex 2372 2.33554 13.1696 -3.3934e-014 Vertex 2373 4.00379 17.7498 -0.249685 Vertex 2374 3.94012 17.7354 -0.0629703 Vertex 2375 4.16212 17.687 0 Vertex 2376 4.04705 17.7618 0 Vertex 2377 4.12908 17.7794 -0.0619778 Vertex 2378 4.18772 17.7892 -0.246011 Vertex 2379 3.98522 17.6442 -0.514389 Vertex 2380 2.48903 16.9538 0 Vertex 2381 3.2418 16.291 -0.752998 Vertex 2382 3.09686 14.1101 -2.32786 Vertex 2383 4.10429 16.6994 -0.454773 Vertex 2384 3.9948 16.7063 -0.491541 Vertex 2385 3.96785 17.0803 -0.567092 Vertex 2386 3.34829 14.2411 -1.58501 Vertex 2387 2.89808 14.0972 -2.40123 Vertex 2388 3.11877 14.1377 -2.1715 Vertex 2389 1.77421 16.0413 -3.3934e-014 Vertex 2390 3.51336 13.6497 -3.3934e-014 Vertex 2391 4.26027 17.7985 -0.427128 Vertex 2392 4.32486 16.1337 -0.299621 Vertex 2393 4.8279 17.1425 -0.42675 Vertex 2394 1.59022 15.409 -1.2821 Vertex 2395 1.69022 15.4505 -1.19097 Vertex 2396 1.79536 15.4953 -1.11803 Vertex 2397 0.0984186 15.4357 -0.196916 Vertex 2398 1.04718 15.5602 -6.79339e-015 Vertex 2399 2.40806 12.7883 -2.05532 Vertex 2400 2.4279 12.8846 -2.07097 Vertex 2401 2.4279 13.0148 -1.99084 Vertex 2402 2.4279 13.1297 -2.00859 Vertex 2403 2.4279 13.2746 -1.81953 Vertex 2404 0.680654 15.4305 -6.79339e-015 Vertex 2405 3.58719 17.3183 0 Vertex 2406 3.42234 17.2435 0 Vertex 2407 3.01148 17.2273 0 Vertex 2408 2.95953 17.3096 0 Vertex 2409 1.15997 14.2205 -0.756085 Vertex 2410 3.44202 16.2887 -0.690744 Vertex 2411 2.90265 14.9271 -2.44545 Vertex 2412 2.99969 14.9255 -2.45473 Vertex 2413 2.8939 14.8952 -2.62643 Vertex 2414 1.22232 15.6455 -3.3934e-014 Vertex 2415 3.1864 14.2859 -2.51898 Vertex 2416 3.75594 17.3836 0 Vertex 2417 3.5217 17.4919 0 Vertex 2418 1.28544 13.8303 -2.00797 Vertex 2419 3.21579 17.4566 0 Vertex 2420 1.52769 15.7159 -3.3934e-014 Vertex 2421 1.39051 15.7437 -3.3934e-014 Vertex 2422 4.8279 16.0439 -0.233039 Vertex 2423 4.8279 14.4014 -0.676145 Vertex 2424 4.55286 17.8378 -0.21929 Vertex 2425 4.50576 17.8351 -0.0589868 Vertex 2426 3.78655 17.6842 -0.507335 Vertex 2427 3.81524 17.5954 -0.522999 Vertex 2428 3.903 17.2896 -0.576919 Vertex 2429 4.11681 17.3514 -0.566021 Vertex 2430 4.24373 17.3335 -0.529102 Vertex 2431 4.29864 17.2547 -0.502766 Vertex 2432 4.27439 17.4673 -0.545588 Vertex 2433 3.85627 17.7124 0 Vertex 2434 3.06864 15.5036 -0.961314 Vertex 2435 3.50625 15.9456 -0.589514 Vertex 2436 3.29625 17.4959 -0.205166 Vertex 2437 1.40318 12.8538 -2.26647 Vertex 2438 4.15139 15.9911 -0.316263 Vertex 2439 0.131118 15.3677 -1.44586 Vertex 2440 4.56669 15.2109 -0.836216 Vertex 2441 4.8279 15.231 -0.721811 Vertex 2442 3.48431 17.5818 0 Vertex 2443 3.22122 15.4771 -1.11175 Vertex 2444 1.21042 14.1234 -0.966067 Vertex 2445 1.25238 14.0418 -0.853484 Vertex 2446 1.28544 13.9351 -1.05948 Vertex 2447 1.30929 13.8477 -0.947211 Vertex 2448 1.32369 13.7434 -1.04491 Vertex 2449 1.3285 13.6456 -1.03727 Vertex 2450 1.3285 13.5475 -0.926612 Vertex 2451 1.3285 13.1316 -0.798653 Vertex 2452 1.3285 13.0196 -0.890563 Vertex 2453 1.34748 12.9306 -0.785944 Vertex 2454 1.40135 12.8499 -0.781039 Vertex 2455 1.48184 12.7825 -0.971856 Vertex 2456 1.5785 12.7632 -0.970382 Vertex 2457 1.6784 12.7702 -0.873503 Vertex 2458 3.42413 13.5241 -0.643235 Vertex 2459 1.41177 15.8693 -0.281371 Vertex 2460 2.48799 16.9521 -0.16056 Vertex 2461 2.56282 17.0175 -0.157799 Vertex 2462 2.6396 17.0808 -0.155125 Vertex 2463 2.63893 17.081 0 Vertex 2464 4.15447 17.0441 -0.501065 Vertex 2465 4.19136 16.7611 -0.441245 Vertex 2466 4.53269 17.8375 0 Vertex 2467 4.8279 14.9771 -0.974052 Vertex 2468 1.6784 12.7058 -1.55029 Vertex 2469 2.078 12.7172 -1.45383 Vertex 2470 1.43315 13.5792 -3.3934e-014 Vertex 2471 2.70196 14.3711 -2.53401 Vertex 2472 4.08818 17.5758 0 Vertex 2473 4.26504 17.2317 0 Vertex 2474 4.35387 17.4488 0 Vertex 2475 4.23999 17.8002 0 Vertex 2476 -4.36436e-015 14.8928 -0.101468 Vertex 2477 1.20401 15.7333 -0.581543 Vertex 2478 0.0695686 14.5077 -2.27474 Vertex 2479 4.23384 13.5968 -0.243545 Vertex 2480 2.09618 15.4583 -1.17678 Vertex 2481 2.72531 13.4471 -0.201028 Vertex 2482 5.21541e-008 14.7789 -0.190888 Vertex 2483 2.3991 15.6021 -0.995306 Vertex 2484 3.43813 17.5561 -0.464933 Vertex 2485 0.88407 14.4096 -1.75818 Vertex 2486 0.799897 14.4597 -1.76429 Vertex 2487 0.711183 14.4728 -1.98924 Vertex 2488 0.618785 14.5203 -1.88361 Vertex 2489 0.52359 14.5578 -1.77626 Vertex 2490 0.426517 14.5721 -1.77801 Vertex 2491 0.3285 14.6022 -1.55716 Vertex 2492 0.262803 14.5917 -1.65243 Vertex 2493 0.0657702 14.5612 -1.90303 Vertex 2494 1.73793 15.6627 -0.945053 Vertex 2495 2.81022 15.6801 -0.932404 Vertex 2496 2.63484 13.3857 -1.13945 Vertex 2497 2.79748 13.4048 -1.2146 Vertex 2498 4.72934 15.2875 0 Vertex 2499 4.8279 15.1889 0 Vertex 2500 4.8279 15.2875 -0.0985591 Vertex 2501 2.14674 16.5998 -3.3934e-014 Vertex 2502 0 15.2344 -2.48022 Vertex 2503 0.995597 15.2484 -2.39259 Vertex 2504 0.280776 15.2479 -2.39599 Vertex 2505 1.32899 15.2331 -2.48807 Vertex 2506 1.29168 15.3644 -1.47466 Vertex 2507 1.17428 15.3556 -1.56304 Vertex 2508 1.15679 15.3464 -1.65182 Vertex 2509 2.09005 15.3366 -1.73968 Vertex 2510 1.96777 15.3261 -1.8299 Vertex 2511 0.646275 15.3145 -1.92472 Vertex 2512 2.50552 15.3466 -1.64986 Vertex 2513 2.46909 15.3368 -1.73862 Vertex 2514 2.24861 15.3262 -1.82923 Vertex 2515 2.03493 15.315 -1.92084 Vertex 2516 2.01033 15.3032 -2.01308 Vertex 2517 2.0779 15.2906 -2.10619 Vertex 2518 0.692254 15.2769 -2.20342 Vertex 2519 2.3484 15.3557 -1.56224 Vertex 2520 1.8315 15.3464 -1.65101 Vertex 2521 2.18498 15.3367 -1.73949 Vertex 2522 2.06144 15.3262 -1.82971 Vertex 2523 2.21978 15.3151 -1.92034 Vertex 2524 2.19329 15.3032 -2.01258 Vertex 2525 1.07662 15.2903 -2.10822 Vertex 2526 0.543901 15.3023 -2.0193 Vertex 2527 1.75798 15.2633 -2.29609 Vertex 2528 1.6392 15.2486 -2.39184 Vertex 2529 1.78235 15.2773 -2.20105 Vertex 2530 1.21117 15.2631 -2.29691 Vertex 2531 1.62291 15.2905 -2.10716 Vertex 2532 1.41899 15.2772 -2.2017 Vertex 2533 0.484523 15.2626 -2.30027 Vertex 2534 0 15.1505 -2.36448 Vertex 2535 0 14.9585 -2.22868 Vertex 2536 0 14.9715 -2.13164 Vertex 2537 0 15.0513 -2.34898 Vertex 2538 0 15.0809 -2.15102 Vertex 2539 0 15.2803 -2.1795 Vertex 2540 3.3688 17.5281 -0.336961 Vertex 2541 4.8279 14.792 -0.836614 Vertex 2542 4.8279 14.4964 -0.692906 Vertex 2543 4.8279 14.5709 -0.902422 Vertex 2544 3.64239 16.9779 -0.631885 Vertex 2545 1.21042 14.1527 -0.322245 Vertex 2546 1.74737 15.5608 -1.03664 Vertex 2547 1.5785 12.7058 -1.55029 Vertex 2548 1.48187 12.7129 -1.64916 Vertex 2549 1.40137 12.7666 -1.65612 Vertex 2550 1.34745 12.8339 -1.76397 Vertex 2551 1.3285 12.9146 -1.87503 Vertex 2552 0.175195 15.3953 -1.1897 Vertex 2553 2.52777 13.4066 -0.507644 Vertex 2554 4.8279 14.1038 -0.0851429 Vertex 2555 2.14674 16.5977 -0.263005 Vertex 2556 4.63617 17.748 0 Vertex 2557 2.53356 13.3509 -1.33273 Vertex 2558 1.3285 13.1815 -2.22221 Vertex 2559 2.07192 13.7254 -2.42016 Vertex 2560 1.90996 13.5862 -2.39562 Vertex 2561 1.3285 13.3729 -2.358 Vertex 2562 0.909922 15.3803 -1.37722 Vertex 2563 1.00134 15.4085 -1.28355 Vertex 2564 2.87458 16.8306 -0.657857 Vertex 2565 2.53638 16.7319 -0.675254 Vertex 2566 2.33777 16.7964 -0.663879 Vertex 2567 0.962894 14.2918 -2.18585 Vertex 2568 0.88407 14.3496 -2.19468 Vertex 2569 0.799897 14.3995 -2.20231 Vertex 2570 3.3315 16.2491 -0.760382 Vertex 2571 2.4279 13.3926 -0.405614 Vertex 2572 2.4279 13.2789 -0.306273 Vertex 2573 3.10852 13.4801 -0.784587 Vertex 2574 2.69257 17.1124 -0.608171 Vertex 2575 2.20997 16.671 -0.258457 Vertex 2576 2.27554 16.743 -0.253907 Vertex 2577 2.34363 16.8136 -0.249377 Vertex 2578 2.41232 16.8796 -0.326656 Vertex 2579 2.4746 16.9286 -0.640565 Vertex 2580 4.44756 17.2097 -0.467484 Vertex 2581 4.57294 17.2721 -0.462537 Vertex 2582 4.3816 17.311 -0.496325 Vertex 2583 4.50238 17.3088 -0.477205 Vertex 2584 2.98023e-008 14.5086 -2.26936 Vertex 2585 4.34671 17.8102 -0.485128 Vertex 2586 0.423055 15.4354 -1.05024 Vertex 2587 3.35969 16.9369 -0.639111 Vertex 2588 3.1002 17.0841 -0.613148 Vertex 2589 2.88504 17.02 -0.62446 Vertex 2590 3.04385 17.1386 -0.60355 Vertex 2591 3.00614 17.3291 -0.569946 Vertex 2592 3.84329 17.074 -0.614928 Vertex 2593 3.51659 17.5873 -0.524431 Vertex 2594 2.71572 13.4224 -0.81425 Vertex 2595 3.02368 13.4904 -0.201087 Vertex 2596 3.34664 17.4132 0 Vertex 2597 2.48365 16.8165 0 Vertex 2598 5.21541e-008 14.6822 -0.284512 Vertex 2599 1.00137 15.6432 -0.187071 Vertex 2600 0.914974 15.6073 -0.186985 Vertex 2601 0.855815 15.5784 -0.488633 Vertex 2602 3.17109 17.4242 -0.553176 Vertex 2603 -4.36436e-015 14.878 -0.193509 Vertex 2604 5.21541e-008 14.7691 -0.572796 Vertex 2605 5.21541e-008 14.67 -0.663958 Vertex 2606 1.88919 15.9807 -0.807706 Vertex 2607 1.72311 15.8802 -0.832708 Vertex 2608 1.75171 15.8106 -0.859067 Vertex 2609 3.1232 13.5048 -2.60171e-016 Vertex 2610 3.53254 13.543 -0.441122 Vertex 2611 1.48181 12.8102 -0.486278 Vertex 2612 3.85591 16.8045 -0.562096 Vertex 2613 3.78865 16.8598 -0.601066 Vertex 2614 1.3285 13.6708 -0.622744 Vertex 2615 1.32369 13.7731 -0.522829 Vertex 2616 0.564674 15.4805 -0.770155 Vertex 2617 3.9707 17.7364 -0.498129 Vertex 2618 3.97568 17.6443 0 Vertex 2619 0 15.0104 -2.54141 Vertex 2620 4.53413 17.5549 0 Vertex 2621 4.35095 17.7193 0 Vertex 2622 1.5785 12.7985 -0.194255 Vertex 2623 1.6784 12.7941 -0.388466 Vertex 2624 2.4279 13.1628 -0.302387 Vertex 2625 2.4279 13.0485 -0.199488 Vertex 2626 2.40812 12.951 -0.19657 Vertex 2627 2.35366 12.8707 -0.195351 Vertex 2628 2.27299 12.8173 -0.19454 Vertex 2629 2.1779 12.7985 -0.194255 Vertex 2630 1.7783 12.7996 -0.0971304 Vertex 2631 2.078 12.7985 -0.194255 Vertex 2632 2.1419 13.2646 -3.3934e-014 Vertex 2633 1.66713 13.479 -3.3934e-014 Vertex 2634 1.8782 12.8 -3.3934e-014 Vertex 2635 3.03803 13.4661 -0.864518 Vertex 2636 2.52785 13.2778 -1.92246 Vertex 2637 2.6427 13.2961 -1.92965 Vertex 2638 1.63787 13.152 -3.3934e-014 Vertex 2639 1.7783 12.8 -3.3934e-014 Vertex 2640 1.78269 12.8859 -3.3934e-014 Vertex 2641 0.93605 15.4266 -1.23952 Vertex 2642 2.12056 15.2005 -2.68026 Vertex 2643 2.23827 15.2172 -2.58367 Vertex 2644 1.30929 13.8737 -0.421245 Vertex 2645 -4.36436e-015 15.3167 -0.782338 Vertex 2646 -4.36436e-015 15.2017 -1.06851 Vertex 2647 0 15.397 -1.08223 Vertex 2648 4.64909 14.4167 -0.589078 Vertex 2649 4.56012 14.4149 -0.59927 Vertex 2650 4.47016 14.4124 -0.613848 Vertex 2651 4.3826 14.4091 -0.632186 Vertex 2652 4.2959 14.4052 -0.654529 Vertex 2653 4.21039 14.4006 -0.680771 Vertex 2654 4.12651 14.3953 -0.710822 Vertex 2655 4.04348 14.3892 -0.744917 Vertex 2656 3.96263 14.3826 -0.78257 Vertex 2657 3.8835 14.3753 -0.823899 Vertex 2658 3.80646 14.3674 -0.868779 Vertex 2659 3.73176 14.3589 -0.917038 Vertex 2660 3.65939 14.3498 -0.968626 Vertex 2661 3.5894 14.3401 -1.02357 Vertex 2662 3.5221 14.3299 -1.08163 Vertex 2663 3.45773 14.3191 -1.14256 Vertex 2664 3.39631 14.3079 -1.20631 Vertex 2665 3.33787 14.2962 -1.27287 Vertex 2666 3.28256 14.2839 -1.34211 Vertex 2667 3.18224 14.2583 -1.48738 Vertex 2668 3.13733 14.245 -1.56324 Vertex 2669 3.09595 14.2312 -1.6411 Vertex 2670 3.05829 14.2172 -1.72084 Vertex 2671 3.02446 14.2029 -1.80193 Vertex 2672 2.9945 14.1883 -1.88454 Vertex 2673 2.96843 14.1735 -1.96844 Vertex 2674 2.92809 14.1433 -2.13953 Vertex 2675 3.02343 14.1405 -2.15556 Vertex 2676 2.94623 14.1585 -2.05348 Vertex 2677 2.91403 14.1281 -2.22601 Vertex 2678 2.90399 14.1127 -2.31339 Vertex 2679 3.00043 14.1114 -2.32059 Vertex 2680 2.993 14.0828 -2.48317 Vertex 2681 3.21543 13.5109 -0.374356 Vertex 2682 3.3231 13.527 -0.200941 Vertex 2683 3.50525 13.5461 -0.201158 Vertex 2684 2.82511 17.095 -0.611236 Vertex 2685 0.52359 14.6506 -0.667507 Vertex 2686 3.89006 14.093 -3.3934e-014 Vertex 2687 3.91734 13.6826 -3.3934e-014 Vertex 2688 3.57903 15.9482 -0.546989 Vertex 2689 3.5142 16.2438 -0.637246 Vertex 2690 3.08329 13.4918 -0.462077 Vertex 2691 2.83803 13.4549 -0.539669 Vertex 2692 1.25238 13.906 -2.12683 Vertex 2693 0.482705 15.0648 0 Vertex 2694 0.108137 14.8993 0 Vertex 2695 0.221127 15.007 0 Vertex 2696 0.212102 15.2447 0 Vertex 2697 0.202452 15.3476 0 Vertex 2698 3.69823 16.5728 -0.593476 Vertex 2699 3.7915 16.4104 -0.520554 Vertex 2700 3.87719 16.247 -0.455027 Vertex 2701 4.01555 15.6073 -0.373438 Vertex 2702 0.52359 14.5136 -2.10718 Vertex 2703 1.90328 16.3116 -0.282079 Vertex 2704 0.257798 15.2175 -2.58208 Vertex 2705 0.0673757 14.6804 -0.368261 Vertex 2706 0.262774 14.6732 -0.588562 Vertex 2707 4.32131 13.6008 -0.217192 Vertex 2708 2.99967 16.1259 -0.782115 Vertex 2709 0.711183 14.582 -0.886318 Vertex 2710 0.496317 15.4607 -0.862305 Vertex 2711 3.66807 16.8407 -0.656066 Vertex 2712 0.3285 14.658 -0.890936 Vertex 2713 2.0501 13.1031 -2.31043 Vertex 2714 1.77332 12.8521 -2.26618 Vertex 2715 1.8782 12.6055 -2.2227 Vertex 2716 1.56686 12.9021 -2.27499 Vertex 2717 1.77822 12.697 -2.23883 Vertex 2718 3.80133 16.7288 -0.57228 Vertex 2719 3.68011 16.7031 -0.625606 Vertex 2720 3.56238 16.6767 -0.684989 Vertex 2721 1.25238 14.064 -0.320226 Vertex 2722 0.700886 15.3786 -1.3845 Vertex 2723 0.401757 15.2331 -2.48841 Vertex 2724 0.632151 15.4989 -0.732678 Vertex 2725 0.713698 15.5243 -0.677305 Vertex 2726 0.834822 15.5616 -0.726707 Vertex 2727 0.959951 15.6068 -0.787226 Vertex 2728 1.38611 15.4878 -1.12892 Vertex 2729 2.60825 16.9219 -0.641757 Vertex 2730 4.23853 16.1085 -0.314357 Vertex 2731 4.42686 16.0352 -0.263649 Vertex 2732 1.97501 12.69 -2.23759 Vertex 2733 1.98606 15.4075 -1.28634 Vertex 2734 2.52739 13.4146 -0.203119 Vertex 2735 2.69881 15.7269 -0.902096 Vertex 2736 2.60051 15.8823 -0.832017 Vertex 2737 2.70215 15.8021 -0.862839 Vertex 2738 1.10151 14.3046 -0.651742 Vertex 2739 1.15997 14.2258 -0.648154 Vertex 2740 1.21042 14.1417 -0.644323 Vertex 2741 1.25238 14.0531 -0.640285 Vertex 2742 1.28544 13.9556 -0.742 Vertex 2743 1.30929 13.8605 -0.736946 Vertex 2744 1.32369 13.7576 -0.836213 Vertex 2745 1.3285 13.6531 -0.933713 Vertex 2746 1.3285 13.5542 -0.823789 Vertex 2747 1.3285 13.4729 -0.102248 Vertex 2748 1.3285 13.3675 -3.3934e-014 Vertex 2749 4.04266 16.7678 -0.486171 Vertex 2750 1.75543 13.2042 -2.32826 Vertex 2751 1.636 13.3444 -2.35298 Vertex 2752 1.42858 13.2687 -2.33963 Vertex 2753 3.3994 16.2026 -0.704086 Vertex 2754 2.8963 14.1793 -2.50019 Vertex 2755 2.8963 14.0828 -2.48317 Vertex 2756 3.53188 16.4577 -0.664297 Vertex 2757 3.41875 16.4227 -0.729779 Vertex 2758 3.64623 16.1751 -0.55012 Vertex 2759 3.60198 16.4108 -0.615665 Vertex 2760 5.21541e-008 15.0064 3.3934e-014 Vertex 2761 0.108108 15.0064 0 Vertex 2762 0.219001 14.7936 0 Vertex 2763 3.45168 17.4567 -0.547451 Vertex 2764 1.39443 15.8473 -0.635168 Vertex 2765 4.72653 16.7427 -0.358289 Vertex 2766 4.62512 16.8415 -0.381858 Vertex 2767 4.52226 16.7411 -0.374582 Vertex 2768 4.41918 16.6407 -0.371661 Vertex 2769 4.31481 16.5431 -0.373878 Vertex 2770 4.21385 16.4512 -0.380835 Vertex 2771 4.11176 16.4647 -0.41117 Vertex 2772 4.05526 16.6541 -0.462016 Vertex 2773 2.98526 17.2059 -0.591684 Vertex 2774 0.474202 15.4778 -0.285124 Vertex 2775 0.3285 14.6744 -0.557044 Vertex 2776 1.00009e-006 15.4337 -0.196874 Vertex 2777 -4.36436e-015 15.3323 -0.195583 Vertex 2778 -4.36436e-015 15.1106 -0.106955 Vertex 2779 1.48814 15.9237 -0.281293 Vertex 2780 1.96414 16.3844 -0.1849 Vertex 2781 4.8279 14.5777 -0.802563 Vertex 2782 4.00036 13.9957 -3.3934e-014 Vertex 2783 4.11962 13.6946 -3.3934e-014 Vertex 2784 1.21042 13.9937 -2.14025 Vertex 2785 1.15997 14.0769 -2.15297 Vertex 2786 2.54006 13.3308 -1.53019 Vertex 2787 2.42791 13.3006 -1.61838 Vertex 2788 2.90898 13.4363 -1.03376 Vertex 2789 0.291223 15.4407 -0.59236 Vertex 2790 4.72651 16.4431 -0.30546 Vertex 2791 4.8279 16.3435 -0.285869 Vertex 2792 0.566614 15.4947 -0.406965 Vertex 2793 0.658248 15.5175 -0.42001 Vertex 2794 1.1068 15.6812 -0.616345 Vertex 2795 0.751352 15.5454 -0.401317 Vertex 2796 0.827927 15.5749 -0.187571 Vertex 2797 0.916807 15.6022 -0.465219 Vertex 2798 0.993882 15.6364 -0.380816 Vertex 2799 2.24448 16.139 -3.3934e-014 Vertex 2800 1.97442 16.2523 -3.3934e-014 Vertex 2801 2.1779 12.7172 -1.45383 Vertex 2802 2.27314 12.7359 -1.45597 Vertex 2803 2.3538 12.7998 -1.36495 Vertex 2804 2.40808 12.8895 -1.27568 Vertex 2805 2.4279 12.9959 -1.18733 Vertex 2806 2.4279 13.1203 -1.09923 Vertex 2807 2.4279 13.2441 -1.00936 Vertex 2808 2.4279 13.3523 -1.11398 Vertex 2809 2.52776 13.3778 -1.01421 Vertex 2810 2.63315 13.4037 -0.899487 Vertex 2811 2.67107 13.4024 -1.00408 Vertex 2812 4.2725 16.9876 -0.461425 Vertex 2813 4.33997 16.0169 -0.275997 Vertex 2814 2.3485 16.6804 0 Vertex 2815 2.70213 15.9807 -0.807706 Vertex 2816 2.59265 16.08 -0.790198 Vertex 2817 3.09229 16.2476 -0.760652 Vertex 2818 3.19981 16.2017 -0.768749 Vertex 2819 3.29012 16.1612 -0.775875 Vertex 2820 4.08066 17.5704 -0.527408 Vertex 2821 4.07587 17.6654 -0.510645 Vertex 2822 3.12325 13.5044 -0.100576 Vertex 2823 3.9642 16.1581 -0.405805 Vertex 2824 1.56223 15.9808 -0.281087 Vertex 2825 2.76912 15.7009 -0.918317 Vertex 2826 0.262804 14.6569 -0.908266 Vertex 2827 0.0657041 14.6546 -0.944272 Vertex 2828 2.6319 13.4154 -0.700553 Vertex 2829 3.92977 13.5805 -0.220557 Vertex 2830 1.98115 15.2332 -2.48752 Vertex 2831 2.09846 15.2486 -2.3912 Vertex 2832 2.48162 15.2636 -2.29376 Vertex 2833 2.50349 15.2777 -2.19829 Vertex 2834 2.52785 15.291 -2.1037 Vertex 2835 2.55515 15.3035 -2.01017 Vertex 2836 2.49521 15.3153 -1.91886 Vertex 2837 2.52773 15.3264 -1.82783 Vertex 2838 2.56321 15.3368 -1.73805 Vertex 2839 2.69653 15.3467 -1.64876 Vertex 2840 2.73863 15.3558 -1.56138 Vertex 2841 2.88144 15.3644 -1.47466 Vertex 2842 2.77782 15.3831 -1.36532 Vertex 2843 4.04744 15.9743 -0.344696 Vertex 2844 1.88833 15.3805 -1.37634 Vertex 2845 1.78848 15.3644 -1.47466 Vertex 2846 1.95709 15.3557 -1.56253 Vertex 2847 2.12063 15.3465 -1.65064 Vertex 2848 1.90011 15.3366 -1.74001 Vertex 2849 1.49922 15.326 -1.83081 Vertex 2850 1.57212 15.3149 -1.92182 Vertex 2851 1.27714 15.303 -2.01462 Vertex 2852 0.44041 15.2892 -2.11666 Vertex 2853 0.335487 15.2751 -2.21586 Vertex 2854 0.312878 15.2616 -2.30695 Vertex 2855 0.537283 15.2483 -2.39358 Vertex 2856 0.583973 15.2331 -2.48867 Vertex 2857 0.236078 15.2338 -2.48431 Vertex 2858 0.289168 15.2005 -2.68026 Vertex 2859 3.47348 16.1583 -0.647454 Vertex 2860 3.1761 17.3245 0 Vertex 2861 2.62586 16.9442 0 Vertex 2862 3.7005 17.5603 0 Vertex 2863 2.72647 13.4428 -0.401609 Vertex 2864 4.10786 16.8453 -0.479433 Vertex 2865 4.20747 17.0083 -0.480677 Vertex 2866 3.28006 13.5089 -0.63093 Vertex 2867 2.34214 16.6646 -0.687117 Vertex 2868 2.08587 16.5223 -0.446279 Vertex 2869 2.08587 16.5165 -0.624694 Vertex 2870 2.14674 16.5849 -0.701167 Vertex 2871 3.81524 16.1726 -0.468058 Vertex 2872 3.73081 16.0227 -0.480471 Vertex 2873 3.43001 14.74 -1.72531 Vertex 2874 1.40134 12.8677 -0.3907 Vertex 2875 4.62705 13.6105 -2.77556e-016 Vertex 2876 2.82489 13.4604 -0.301367 Vertex 2877 1.48105 15.2171 -2.5841 Vertex 2878 1.42219 15.2332 -2.488 Vertex 2879 1.36338 15.2485 -2.39216 Vertex 2880 1.57573 15.2632 -2.29637 Vertex 2881 1.60068 15.2772 -2.20138 Vertex 2882 1.53187 15.2905 -2.10734 Vertex 2883 1.55213 15.303 -2.01406 Vertex 2884 1.29437 15.3148 -1.92238 Vertex 2885 1.21806 15.326 -1.83134 Vertex 2886 1.04512 15.3364 -1.7414 Vertex 2887 0.771239 15.3463 -1.65238 Vertex 2888 0.293611 15.3552 -1.56763 Vertex 2889 0.19604 15.4348 -0.492575 Vertex 2890 0.194976 15.4413 -0.196504 Vertex 2891 1.3948 15.4475 -1.19658 Vertex 2892 1.30847 15.7907 -0.665547 Vertex 2893 3.10557 17.0669 0 Vertex 2894 2.85214 17.1201 0 Vertex 2895 1.10151 14.138 -2.27224 Vertex 2896 3.26559 14.0364 -3.3934e-014 Vertex 2897 3.61426 13.6591 -3.3934e-014 Vertex 2898 3.72342 13.5671 -2.60171e-016 Vertex 2899 3.71252 13.5658 -0.102374 Vertex 2900 3.66818 13.5596 -0.281259 Vertex 2901 1.8782 12.7996 -0.0971304 Vertex 2902 1.7783 12.7985 -0.194255 Vertex 2903 4.8279 15.39 -0.287527 Vertex 2904 4.8279 15.3843 -0.448028 Vertex 2905 4.0515 17.4193 -0.554051 Vertex 2906 3.2829 17.4872 -0.34163 Vertex 2907 2.47167 16.7968 -0.663804 Vertex 2908 2.078 12.6672 -1.83911 Vertex 2909 1.6784 12.6529 -1.93518 Vertex 2910 2.078 12.7702 -0.873503 Vertex 2911 3.67239 16.3673 -0.570368 Vertex 2912 0.0983514 15.4319 -0.393817 Vertex 2913 4.16464 16.9261 -0.477488 Vertex 2914 3.37655 17.5328 -0.269698 Vertex 2915 3.47025 17.5748 -0.199705 Vertex 2916 3.72689 17.5663 -0.528119 Vertex 2917 4.13495 16.6289 -0.433352 Vertex 2918 2.29238 15.404 -1.2958 Vertex 2919 3.54197 17.1866 -0.595083 Vertex 2920 3.70238 17.0586 -0.617647 Vertex 2921 3.20363 15.7259 -0.768252 Vertex 2922 3.26526 15.7627 -0.724851 Vertex 2923 3.34133 15.7531 -0.665756 Vertex 2924 3.40974 15.8394 -0.633008 Vertex 2925 3.4939 15.8499 -0.580262 Vertex 2926 3.40558 15.7551 -0.620968 Vertex 2927 3.35705 15.8187 -0.666004 Vertex 2928 5.21541e-008 14.9663 -0.969608 Vertex 2929 0 15.2841 -1.27043 Vertex 2930 5.21541e-008 14.9523 -1.1638 Vertex 2931 2.98023e-008 14.7281 -1.24056 Vertex 2932 5.21541e-008 14.6409 -1.13789 Vertex 2933 2.9684 13.8912 -3.3934e-014 Vertex 2934 3.11057 13.6048 -3.3934e-014 Vertex 2935 2.44051 14.299 -3.3934e-014 Vertex 2936 2.70956 13.5477 -3.3934e-014 Vertex 2937 2.77855 15.4054 -1.29207 Vertex 2938 2.63841 13.3553 -1.45901 Vertex 2939 4.02723 13.5869 -0.198232 Vertex 2940 3.61338 14.7823 -1.48519 Vertex 2941 3.21765 13.5132 -0.291562 Vertex 2942 4.8279 17.7499 -0.190636 Vertex 2943 4.8279 15.0808 -0.0964747 Vertex 2944 2.47838 16.5457 -0.708084 Vertex 2945 2.21899 16.5254 -0.711669 Vertex 2946 1.04655 15.6465 -0.752418 Vertex 2947 3.90096 15.994 -0.400888 Vertex 2948 0.872468 15.5704 -0.823608 Vertex 2949 2.08587 16.5245 -0.357045 Vertex 2950 2.08587 16.5274 -0.178539 Vertex 2951 2.71697 17.1402 -0.228718 Vertex 2952 2.63837 17.079 -0.2326 Vertex 2953 2.56155 17.0155 -0.236621 Vertex 2954 2.48674 16.95 -0.240771 Vertex 2955 2.41523 16.8848 -0.163392 Vertex 2956 2.34464 16.8156 -0.166288 Vertex 2957 2.27625 16.7448 -0.16926 Vertex 2958 2.21033 16.6725 -0.172307 Vertex 2959 2.14674 16.5988 -0.175341 Vertex 2960 2.08588 16.5281 -0.0892726 Vertex 2961 2.08588 16.5283 -3.3934e-014 Vertex 2962 0 15.4096 -0.885684 Vertex 2963 0.0948766 15.4054 -0.984086 Vertex 2964 4.34591 17.1672 -0.477651 Vertex 2965 4.26415 17.1285 -0.488184 Vertex 2966 3.13599 17.2974 -0.575532 Vertex 2967 0 14.9841 -2.03497 Vertex 2968 0 14.9066 -1.64063 Vertex 2969 0 14.9177 -1.54544 Vertex 2970 0 14.9444 -1.25987 Vertex 2971 0 15.3544 -1.57562 Vertex 2972 2.4279 13.1964 -1.50991 Vertex 2973 2.4279 13.0692 -1.59535 Vertex 2974 2.4279 12.9415 -1.6793 Vertex 2975 2.40807 12.8318 -1.76369 Vertex 2976 2.35385 12.7388 -1.84951 Vertex 2977 2.27319 12.6859 -1.84182 Vertex 2978 2.1779 12.6672 -1.83911 Vertex 2979 2.078 12.6378 -2.03114 Vertex 2980 2.63351 13.378 -1.22421 Vertex 2981 2.88531 13.413 -1.26577 Vertex 2982 4.8279 17.6534 -0.192288 Vertex 2983 4.8279 17.8477 -0.287563 Vertex 2984 4.124 16.0873 -0.341006 Vertex 2985 4.52608 16.04 -0.250506 Vertex 2986 3.91268 16.8785 -0.552241 Vertex 2987 3.8701 16.6793 -0.534145 Vertex 2988 3.94118 16.6342 -0.498278 Vertex 2989 4.03529 16.4891 -0.439448 Vertex 2990 1.76493 15.7757 -0.875403 Vertex 2991 1.78551 15.7211 -0.905579 Vertex 2992 0.376928 15.4518 -0.60235 Vertex 2993 1.73528 15.752 -0.887767 Vertex 2994 2.4279 13.3339 -1.31597 Vertex 2995 2.4279 13.236 -1.10971 Vertex 2996 2.4279 13.1021 -1.2981 Vertex 2997 2.4279 12.9764 -1.38427 Vertex 2998 2.40808 12.8686 -1.47114 Vertex 2999 2.35382 12.7776 -1.55905 Vertex 3000 2.27317 12.7123 -1.64908 Vertex 3001 2.1779 12.6936 -1.64666 Vertex 3002 2.078 12.6936 -1.64666 Vertex 3003 2.52785 13.2628 -2.0229 Vertex 3004 2.5278 13.4024 -0.609102 Vertex 3005 2.4279 13.3799 -0.709588 Vertex 3006 2.4279 13.2685 -0.608011 Vertex 3007 2.4279 13.1354 -0.900114 Vertex 3008 2.4279 13.0124 -0.99013 Vertex 3009 2.40809 12.9074 -1.07992 Vertex 3010 2.35378 12.819 -1.17054 Vertex 3011 2.27312 12.7565 -1.26252 Vertex 3012 2.1779 12.7278 -1.35728 Vertex 3013 2.078 12.7278 -1.35728 Vertex 3014 2.77155 15.7372 -0.89608 Vertex 3015 0.799897 14.5401 -0.883773 Vertex 3016 0.88407 14.4897 -0.880712 Vertex 3017 0.962894 14.4314 -0.877165 Vertex 3018 1.03561 14.3656 -0.873167 Vertex 3019 1.10151 14.286 -0.97719 Vertex 3020 1.15997 14.1996 -1.07959 Vertex 3021 1.21042 14.1071 -1.18029 Vertex 3022 1.25238 14.0094 -1.27924 Vertex 3023 1.28544 13.9073 -1.37641 Vertex 3024 1.30929 13.8126 -1.36704 Vertex 3025 1.32369 13.7053 -1.46152 Vertex 3026 1.3285 13.5965 -1.55422 Vertex 3027 1.3285 13.5026 -1.43995 Vertex 3028 1.3285 13.0918 -1.29678 Vertex 3029 1.3285 12.9764 -1.38379 Vertex 3030 1.34747 12.8915 -1.27588 Vertex 3031 1.40136 12.8202 -1.17066 Vertex 3032 1.48184 12.7663 -1.16573 Vertex 3033 1.5785 12.7554 -1.0672 Vertex 3034 1.6784 12.7554 -1.0672 Vertex 3035 0.289172 15.1034 -2.66315 Vertex 3036 0.301086 14.8998 -2.62723 Vertex 3037 2.00224e-015 14.7785 -2.60584 Vertex 3038 3.52442 16.0478 -0.596498 Vertex 3039 3.58579 16.203 -0.588088 Vertex 3040 1.26055 15.7715 -0.380411 Vertex 3041 1.18778 15.7274 -0.494738 Vertex 3042 5.21541e-008 14.616 -1.42176 Vertex 3043 0.618785 14.6268 -0.666422 Vertex 3044 0.711183 14.5937 -0.664917 Vertex 3045 0.799897 14.5518 -0.663008 Vertex 3046 0.88407 14.5014 -0.660711 Vertex 3047 0.962894 14.443 -0.65805 Vertex 3048 1.03561 14.3772 -0.655051 Vertex 3049 1.10151 14.2992 -0.76027 Vertex 3050 1.15997 14.2143 -0.863973 Vertex 3051 1.21042 14.1303 -0.858866 Vertex 3052 1.25238 14.0349 -0.960013 Vertex 3053 1.28544 13.9427 -0.953707 Vertex 3054 1.30929 13.8401 -1.05227 Vertex 3055 1.32369 13.735 -1.14916 Vertex 3056 1.3285 13.6283 -1.2442 Vertex 3057 1.3285 13.5319 -1.13209 Vertex 3058 1.3285 13.1179 -0.997971 Vertex 3059 1.3285 13.0046 -1.08805 Vertex 3060 1.34747 12.9172 -0.982092 Vertex 3061 1.40135 12.8365 -0.975961 Vertex 3062 1.48183 12.7958 -0.777753 Vertex 3063 1.5785 12.7764 -0.776574 Vertex 3064 1.6784 12.7764 -0.776573 Vertex 3065 2.078 12.7819 -0.6796 Vertex 3066 3.56829 14.8749 -1.55403 Vertex 3067 3.51627 14.7619 -1.60071 Vertex 3068 3.39156 14.7285 -1.79014 Vertex 3069 3.35627 14.7168 -1.85655 Vertex 3070 3.32413 14.7048 -1.92452 Vertex 3071 3.29518 14.6926 -1.99402 Vertex 3072 3.27111 14.7825 -2.07801 Vertex 3073 3.24725 14.6674 -2.13665 Vertex 3074 3.22848 14.6547 -2.20903 Vertex 3075 3.2132 14.6418 -2.28176 Vertex 3076 3.20141 14.629 -2.35457 Vertex 3077 3.19306 14.6162 -2.4272 Vertex 3078 3.18805 14.5017 -2.48244 Vertex 3079 3.0853 14.6921 -2.59061 Vertex 3080 3.47043 14.6493 -1.64589 Vertex 3081 3.1864 14.5905 -2.57271 Vertex 3082 3.42893 14.6381 -1.70912 Vertex 3083 3.39061 14.6267 -1.77392 Vertex 3084 3.35572 14.5135 -1.82184 Vertex 3085 3.32378 14.5016 -1.8895 Vertex 3086 3.29471 14.5908 -1.97733 Vertex 3087 3.26914 14.5783 -2.04803 Vertex 3088 3.24716 14.4643 -2.10112 Vertex 3089 3.22841 14.4515 -2.17351 Vertex 3090 3.21314 14.4387 -2.24631 Vertex 3091 3.20129 14.5273 -2.33754 Vertex 3092 3.19299 14.5145 -2.41013 Vertex 3093 3.18814 14.7052 -2.51629 Vertex 3094 0.426517 14.5279 -2.10925 Vertex 3095 0.3285 14.6833 -0.222862 Vertex 3096 2.40652 14.8165 -2.61255 Vertex 3097 1.63862 15.1056 -2.66352 Vertex 3098 1.64569 14.6639 -2.58565 Vertex 3099 0.582418 14.8051 -2.61053 Vertex 3100 0.810842 14.8178 -2.61279 Vertex 3101 1.09846 14.7662 -2.60368 Vertex 3102 1.06028 15.2005 -2.68026 Vertex 3103 0.912615 15.2171 -2.58432 Vertex 3104 0.769848 15.2331 -2.48851 Vertex 3105 0.719846 15.2484 -2.39297 Vertex 3106 0.755498 15.263 -2.29769 Vertex 3107 0.964741 15.2771 -2.20249 Vertex 3108 0.803464 15.2903 -2.10886 Vertex 3109 0.727158 15.3028 -2.01613 Vertex 3110 1.01662 15.3147 -1.92294 Vertex 3111 0.749469 15.3258 -1.83246 Vertex 3112 0.481946 15.2005 -2.68026 Vertex 3113 0.534072 15.2171 -2.5844 Vertex 3114 0.475096 15.3359 -1.74594 Vertex 3115 0.491968 15.2331 -2.48867 Vertex 3116 0.447933 15.2482 -2.39413 Vertex 3117 0.573994 15.2628 -2.29886 Vertex 3118 0.511634 15.2765 -2.20644 Vertex 3119 0.530682 15.2897 -2.11268 Vertex 3120 0.361332 15.301 -2.02945 Vertex 3121 0.461147 15.3139 -1.93008 Vertex 3122 0.374591 15.3247 -1.84232 Vertex 3123 0 15.3323 -1.77727 Vertex 3124 1.134 15.6905 -0.720176 Vertex 3125 2.95681 13.4593 -0.795063 Vertex 3126 0.784502 15.5374 -0.861821 Vertex 3127 3.52982 16.8122 -0.661095 Vertex 3128 0.711183 14.4238 -2.31817 Vertex 3129 0.618785 14.4564 -2.32342 Vertex 3130 0.52359 14.48 -2.3272 Vertex 3131 0.3285 14.5326 -2.10995 Vertex 3132 0.262094 14.5229 -2.17609 Vertex 3133 0.0662172 14.5352 -2.09179 Vertex 3134 5.21541e-008 14.5367 -2.08166 Vertex 3135 4.8279 14.8756 -0.956144 Vertex 3136 4.8279 14.8935 -0.854515 Vertex 3137 4.8279 15.1161 -0.800543 Vertex 3138 3.18272 13.4936 -0.707981 Vertex 3139 3.02968 13.4739 -0.710649 Vertex 3140 3.02487 13.481 -0.546378 Vertex 3141 0.426517 14.4942 -2.32949 Vertex 3142 1.17038 15.7248 -0.187509 Vertex 3143 1.96413 16.3688 -0.739285 Vertex 3144 3.19805 17.4439 -0.346562 Vertex 3145 3.11424 17.3982 -0.351737 Vertex 3146 3.03141 17.3501 -0.357124 Vertex 3147 2.94945 17.2994 -0.362736 Vertex 3148 2.86829 17.246 -0.368564 Vertex 3149 2.78803 17.19 -0.374595 Vertex 3150 2.70895 17.1315 -0.380833 Vertex 3151 3.55873 17.6107 -0.197228 Vertex 3152 3.64811 17.6441 -0.194914 Vertex 3153 3.74601 17.6781 -0.128532 Vertex 3154 3.82929 17.7035 -0.190775 Vertex 3155 3.93017 17.7325 -0.125997 Vertex 3156 4.01278 17.7528 -0.187327 Vertex 3157 4.10502 17.7736 -0.18586 Vertex 3158 4.19745 17.7918 -0.184557 Vertex 3159 4.29002 17.8075 -0.18317 Vertex 3160 4.38227 17.8206 -0.180416 Vertex 3161 0 15.0339 -2.44692 Vertex 3162 2.98023e-008 14.9043 -2.52065 Vertex 3163 2.98023e-008 14.8175 -2.30608 Vertex 3164 2.98023e-008 14.605 -2.28442 Vertex 3165 0.426517 14.6785 -0.222789 Vertex 3166 0.523591 14.6641 -0.222571 Vertex 3167 0.618785 14.6403 -0.222209 Vertex 3168 2.8939 14.7984 -2.60935 Vertex 3169 1.32629 15.8095 -0.446065 Vertex 3170 1.39534 15.856 -0.383137 Vertex 3171 3.42609 16.6418 -0.691149 Vertex 3172 0.66684 15.5044 -0.811176 Vertex 3173 4.8279 16.3606 -0.189047 Vertex 3174 0.9936 15.3644 -1.47466 Vertex 3175 0.994088 15.3804 -1.37659 Vertex 3176 1.08337 15.4085 -1.28365 Vertex 3177 5.21541e-008 14.7725 -0.477316 Vertex 3178 5.21541e-008 14.6801 -0.379375 Vertex 3179 2.78249 15.4234 -1.24661 Vertex 3180 4.32575 16.8672 -0.428777 Vertex 3181 4.20993 16.6447 -0.415955 Vertex 3182 1.6784 12.6936 -1.64666 Vertex 3183 4.75277 14.9768 -0.975745 Vertex 3184 1.6784 12.7278 -1.35728 Vertex 3185 2.078 12.7554 -1.0672 Vertex 3186 3.37982 13.5234 -0.552411 Vertex 3187 3.4776 13.5408 -0.328307 Vertex 3188 2.89123 14.379 -2.53541 Vertex 3189 2.99299 14.1803 -2.50036 Vertex 3190 4.72679 17.1422 -0.42872 Vertex 3191 4.64539 17.2568 -0.453517 Vertex 3192 4.59193 17.3503 -0.474475 Vertex 3193 0.199304 15.3709 -1.42461 Vertex 3194 0.0657011 14.6332 -1.23275 Vertex 3195 0.262804 14.6243 -1.33395 Vertex 3196 2.75378 13.3926 -1.27349 Vertex 3197 1.22119 15.7384 -0.690899 Vertex 3198 1.5785 12.6378 -2.03114 Vertex 3199 1.48189 12.657 -2.03422 Vertex 3200 1.40138 12.7105 -2.04281 Vertex 3201 1.34744 12.7904 -2.05566 Vertex 3202 0.385668 15.3458 -1.65741 Vertex 3203 0.380086 15.3355 -1.74955 Vertex 3204 0.4683 15.3252 -1.83762 Vertex 3205 0.368687 15.3131 -1.9357 Vertex 3206 0.452466 15.3018 -2.02319 Vertex 3207 0.350925 15.2883 -2.12309 Vertex 3208 0.422706 15.276 -2.20999 Vertex 3209 0.397089 15.2623 -2.30274 Vertex 3210 0.361686 15.2481 -2.39489 Vertex 3211 0.315264 15.2333 -2.48735 Vertex 3212 0.440189 15.2171 -2.58427 Vertex 3213 0.587176 15.3556 -1.56388 Vertex 3214 0.385557 15.2005 -2.68026 Vertex 3215 0.481947 15.1049 -2.6634 Vertex 3216 0.578457 15.3462 -1.65351 Vertex 3217 0.665109 15.3363 -1.74259 Vertex 3218 0.655747 15.3258 -1.8332 Vertex 3219 0.738863 15.3146 -1.92382 Vertex 3220 1.09382 15.3029 -2.015 Vertex 3221 0.712422 15.2902 -2.10938 Vertex 3222 0.601667 15.2768 -2.20444 Vertex 3223 0.664525 15.263 -2.29809 Vertex 3224 0.628218 15.2483 -2.3932 Vertex 3225 0.676763 15.2331 -2.48859 Vertex 3226 0.508845 14.9347 -2.63338 Vertex 3227 0.723157 15.2171 -2.58439 Vertex 3228 0.674725 15.2005 -2.68026 Vertex 3229 0.761769 15.1078 -2.66392 Vertex 3230 0.59616 15.3644 -1.47466 Vertex 3231 0.426517 14.665 -0.668163 Vertex 3232 0.52359 14.6451 -0.778661 Vertex 3233 0.618785 14.615 -0.888324 Vertex 3234 0.711183 14.5748 -0.996945 Vertex 3235 0.799897 14.525 -1.10433 Vertex 3236 0.88407 14.4659 -1.21032 Vertex 3237 0.962894 14.3981 -1.31474 Vertex 3238 1.03561 14.3221 -1.41747 Vertex 3239 1.10151 14.2498 -1.41031 Vertex 3240 1.15997 14.1713 -1.40254 Vertex 3241 1.21042 14.0766 -1.50111 Vertex 3242 1.25238 13.9767 -1.59781 Vertex 3243 1.28544 13.8724 -1.69263 Vertex 3244 1.30929 13.7648 -1.78561 Vertex 3245 1.32369 13.6546 -1.87679 Vertex 3246 1.3285 13.5277 -2.06875 Vertex 3247 1.3285 13.4231 -2.05313 Vertex 3248 1.3285 13.0771 -2.20501 Vertex 3249 1.3285 13.0191 -1.89176 Vertex 3250 1.3285 12.9 -1.97298 Vertex 3251 4.45576 17.3668 -0.493952 Vertex 3252 0.0658047 14.6743 -0.559165 Vertex 3253 0.262274 14.6801 -0.377739 Vertex 3254 0.3285 14.6782 -0.445673 Vertex 3255 0.426517 14.6734 -0.445527 Vertex 3256 1.03561 14.2098 -2.28378 Vertex 3257 0.962894 14.2748 -2.29423 Vertex 3258 0.88407 14.3325 -2.30351 Vertex 3259 0.799897 14.3823 -2.31152 Vertex 3260 0.711183 14.4573 -2.09901 Vertex 3261 0.618784 14.49 -2.10376 Vertex 3262 0.52359 14.5292 -1.99699 Vertex 3263 1.30929 13.7042 -2.20253 Vertex 3264 1.28544 13.7982 -2.21763 Vertex 3265 1.25238 13.8894 -2.2323 Vertex 3266 1.21042 13.977 -2.24637 Vertex 3267 1.15997 14.0601 -2.25973 Vertex 3268 1.10151 14.1548 -2.16489 Vertex 3269 1.03561 14.2428 -2.06786 Vertex 3270 0.962894 14.3233 -1.9687 Vertex 3271 0.88407 14.3813 -1.97666 Vertex 3272 0.799897 14.4312 -1.98353 Vertex 3273 0.711184 14.5013 -1.76937 Vertex 3274 0.618785 14.5472 -1.66303 Vertex 3275 0.52359 14.5709 -1.66574 Vertex 3276 2.03608 16.3242 -3.3934e-014 Vertex 3277 1.96414 16.3855 -3.3934e-014 Vertex 3278 2.02501 16.4566 -0.0908666 Vertex 3279 3.97027 15.9625 -0.369116 Vertex 3280 4.02338 16.0574 -0.367293 Vertex 3281 3.28746 16.6057 -0.697513 Vertex 3282 3.19375 16.4251 -0.729357 Vertex 3283 3.28531 16.3797 -0.737353 Vertex 3284 0.3285 14.4989 -2.33025 Vertex 3285 0.52359 14.659 -0.44509 Vertex 3286 4.64099 17.8431 -0.261043 Vertex 3287 4.73358 17.846 -0.312106 Vertex 3288 3.52303 13.5493 -2.60171e-016 Vertex 3289 1.63361 16.0415 -0.187393 Vertex 3290 2.78181 15.7995 -0.864033 Vertex 3291 3.71898 16.4473 -0.561094 Vertex 3292 2.63141 17.0706 -0.387284 Vertex 3293 2.55566 17.0076 -0.394008 Vertex 3294 2.48188 16.9426 -0.400933 Vertex 3295 2.4102 16.8758 -0.408217 Vertex 3296 2.34077 16.8074 -0.41561 Vertex 3297 2.27368 16.7376 -0.423121 Vertex 3298 1.96414 16.3761 -0.554566 Vertex 3299 2.9241 13.4767 -0.201079 Vertex 3300 1.84077 16.2337 -0.561638 Vertex 3301 2.17941 15.7127 -0.910781 Vertex 3302 2.79703 17.1991 -0.224967 Vertex 3303 2.87815 17.2552 -0.221344 Vertex 3304 2.96009 17.3086 -0.217848 Vertex 3305 3.04279 17.3592 -0.214475 Vertex 3306 3.12632 17.4073 -0.211233 Vertex 3307 2.6142 13.4172 -0.602511 Vertex 3308 2.1779 12.7554 -1.0672 Vertex 3309 2.27308 12.7819 -0.971809 Vertex 3310 2.35376 12.8353 -0.975864 Vertex 3311 2.4081 12.9223 -0.883909 Vertex 3312 2.4279 13.0259 -0.792698 Vertex 3313 2.4279 13.1475 -0.70136 Vertex 3314 2.4279 13.2578 -0.808818 Vertex 3315 2.4279 13.3677 -0.911733 Vertex 3316 2.1779 12.7867 -0.582587 Vertex 3317 2.27303 12.8055 -0.583443 Vertex 3318 2.3537 12.863 -0.488281 Vertex 3319 2.40811 12.9466 -0.393095 Vertex 3320 2.4279 13.0466 -0.298418 Vertex 3321 2.4279 13.1647 -0.202589 Vertex 3322 2.4279 13.2809 -0.205652 Vertex 3323 2.4279 13.3972 -0.202838 Vertex 3324 0.426517 14.5974 -1.55665 Vertex 3325 0.3285 14.6136 -1.44631 Vertex 3326 0.262804 14.6033 -1.54637 Vertex 3327 0.065705 14.5958 -1.61644 Vertex 3328 4.09529 14.8456 -1.12608 Vertex 3329 0.618785 14.6352 -0.444367 Vertex 3330 0.711183 14.6021 -0.443363 Vertex 3331 0.799897 14.5602 -0.44209 Vertex 3332 0.88407 14.5098 -0.440559 Vertex 3333 0.198721 15.3644 -1.47466 Vertex 3334 2.98023e-008 14.6911 -1.62115 Vertex 3335 3.44654 13.5324 -0.502482 Vertex 3336 1.48157 15.9088 -0.630795 Vertex 3337 2.2092 12.8677 -2.26891 Vertex 3338 2.04835 13.0494 -2.30096 Vertex 3339 1.8782 12.622 -2.12698 Vertex 3340 1.9781 12.6055 -2.2227 Vertex 3341 1.9781 12.6378 -2.03114 Vertex 3342 1.9781 12.622 -2.12698 Vertex 3343 2.1779 12.6378 -2.03114 Vertex 3344 2.27322 12.6565 -2.03413 Vertex 3345 2.35387 12.7093 -2.04263 Vertex 3346 2.40806 12.8035 -1.95822 Vertex 3347 2.4279 12.9145 -1.87535 Vertex 3348 2.4279 13.0435 -1.7933 Vertex 3349 2.4279 13.1587 -1.80942 Vertex 3350 2.4279 13.2604 -1.91995 Vertex 3351 2.72514 13.4482 -0.100519 Vertex 3352 2.1149 13.636 -3.3934e-014 Vertex 3353 2.24278 13.8033 -3.3934e-014 Vertex 3354 2.59379 13.6277 -3.3934e-014 Vertex 3355 2.82442 13.4637 -2.60171e-016 Vertex 3356 1.34749 12.9485 -0.393152 Vertex 3357 2.88101 13.7765 -3.3934e-014 Vertex 3358 3.02349 13.4918 -2.60171e-016 Vertex 3359 4.44451 17.075 -0.444191 Vertex 3360 2.1779 12.7764 -0.776574 Vertex 3361 2.27306 12.7952 -0.777715 Vertex 3362 2.35372 12.8541 -0.683437 Vertex 3363 2.4081 12.9391 -0.589528 Vertex 3364 2.4279 13.0406 -0.496222 Vertex 3365 2.4279 13.1601 -0.402169 Vertex 3366 2.4279 13.2762 -0.406876 Vertex 3367 2.4279 13.3891 -0.506969 Vertex 3368 2.025 16.4446 -0.635819 Vertex 3369 0.711183 14.6072 -0.221707 Vertex 3370 1.6784 12.7985 -0.194255 Vertex 3371 1.28544 13.9717 -0.318122 Vertex 3372 3.76764 16.5261 -0.551831 Vertex 3373 0.426517 14.5582 -1.88853 Vertex 3374 2.62824 13.4269 -0.406597 Vertex 3375 0.962894 14.4514 -0.438785 Vertex 3376 1.03561 14.3855 -0.436785 Vertex 3377 1.5785 12.7278 -1.35728 Vertex 3378 1.48186 12.7365 -1.45603 Vertex 3379 1.10151 14.3128 -0.434578 Vertex 3380 1.40137 12.7788 -1.5592 Vertex 3381 1.3285 13.0485 -0.198049 Vertex 3382 1.3285 13.1524 -0.299653 Vertex 3383 1.15997 14.234 -0.432186 Vertex 3384 1.21042 14.1499 -0.429631 Vertex 3385 1.34746 12.8469 -1.66653 Vertex 3386 1.25238 14.0612 -0.426939 Vertex 3387 1.28544 13.9652 -0.530122 Vertex 3388 1.30929 13.8701 -0.526511 Vertex 3389 1.32369 13.7687 -0.627329 Vertex 3390 1.3285 13.6657 -0.726444 Vertex 3391 1.3285 13.3671 -0.101461 Vertex 3392 1.3285 13.5651 -0.618008 Vertex 3393 1.3285 12.9284 -1.77698 Vertex 3394 1.3285 13.0588 -1.59473 Vertex 3395 1.3285 13.2479 -0.603852 Vertex 3396 1.3285 13.243 -0.704406 Vertex 3397 1.3285 13.2372 -0.804919 Vertex 3398 1.3285 13.2307 -0.905386 Vertex 3399 1.3285 13.2235 -1.0058 Vertex 3400 1.3285 13.2155 -1.10616 Vertex 3401 1.3285 13.2067 -1.20661 Vertex 3402 1.3285 13.1971 -1.30693 Vertex 3403 1.3285 13.1868 -1.40717 Vertex 3404 1.3285 13.1757 -1.5073 Vertex 3405 1.3285 13.1513 -1.70717 Vertex 3406 1.3285 13.4382 -1.95122 Vertex 3407 1.3285 13.3537 -0.608562 Vertex 3408 1.3285 13.3486 -0.709901 Vertex 3409 1.3285 13.3429 -0.811197 Vertex 3410 1.3285 13.3363 -0.912448 Vertex 3411 1.3285 13.329 -1.01365 Vertex 3412 1.3285 13.3209 -1.11479 Vertex 3413 1.3285 13.3121 -1.21597 Vertex 3414 1.3285 13.3025 -1.31708 Vertex 3415 1.3285 13.2921 -1.41811 Vertex 3416 1.3285 13.2809 -1.51905 Vertex 3417 1.3285 13.1239 -1.90664 Vertex 3418 1.3285 13.138 -1.80695 Vertex 3419 1.3285 13.2137 -2.02186 Vertex 3420 1.3285 13.2563 -1.72048 Vertex 3421 1.3285 13.1639 -1.60728 Vertex 3422 1.3285 13.269 -1.61981 Vertex 3423 1.3285 13.2429 -1.82105 Vertex 3424 1.3285 13.2287 -1.92151 Vertex 3425 1.3285 13.543 -1.96606 Vertex 3426 1.32369 13.64 -1.98035 Vertex 3427 1.30929 13.7508 -1.89001 Vertex 3428 1.28544 13.8451 -1.90297 Vertex 3429 1.25238 13.9508 -1.80974 Vertex 3430 1.21042 14.0522 -1.71457 Vertex 3431 1.15997 14.1484 -1.61745 Vertex 3432 1.10151 14.2267 -1.6264 Vertex 3433 1.03561 14.299 -1.63466 Vertex 3434 0.962894 14.3765 -1.53309 Vertex 3435 0.88407 14.4459 -1.42971 Vertex 3436 0.799897 14.5066 -1.32464 Vertex 3437 0.711183 14.5265 -1.54909 Vertex 3438 0.618784 14.5813 -1.33146 Vertex 3439 0.52359 14.6147 -1.22276 Vertex 3440 0.426517 14.6379 -1.11292 Vertex 3441 0.3285 14.6427 -1.11329 Vertex 3442 0.262804 14.6421 -1.12123 Vertex 3443 1.98761 15.805 -0.861575 Vertex 3444 3.71843 14.8006 -1.38129 Vertex 3445 0.296506 15.4119 -1.12157 Vertex 3446 0.364519 15.4237 -1.08312 Vertex 3447 0.711183 14.558 -1.21802 Vertex 3448 0.618784 14.5998 -1.11002 Vertex 3449 0.52359 14.6316 -1.00083 Vertex 3450 0.426517 14.6531 -0.890644 Vertex 3451 0.3285 14.6643 -0.779682 Vertex 3452 0.262798 14.6685 -0.695115 Vertex 3453 3.92404 13.5819 -2.60171e-016 Vertex 3454 2.62622 13.4312 -0.201425 Vertex 3455 2.62587 13.4327 -2.60171e-016 Vertex 3456 3.02354 13.4915 -0.100566 Vertex 3457 0.799897 14.5652 -0.22107 Vertex 3458 0.88407 14.5148 -0.220305 Vertex 3459 0.962894 14.4564 -0.219418 Vertex 3460 1.3285 13.0406 -0.495023 Vertex 3461 1.3285 13.1464 -0.499345 Vertex 3462 1.3285 13.2556 -0.402646 Vertex 3463 1.3285 13.3614 -0.405786 Vertex 3464 1.3285 13.5694 -0.515061 Vertex 3465 1.3285 13.6752 -0.519008 Vertex 3466 1.32369 13.7767 -0.418299 Vertex 3467 3.77537 14.8093 -1.3322 Vertex 3468 3.83538 14.8176 -1.28512 Vertex 3469 3.3108 13.5223 -0.364223 Vertex 3470 3.89764 14.8254 -1.2408 Vertex 3471 5.21541e-008 14.5744 -1.79935 Vertex 3472 4.23479 14.8563 -1.06536 Vertex 3473 1.4818 12.818 -0.19455 Vertex 3474 1.83782 16.2391 -0.187228 Vertex 3475 4.48471 17.8328 -0.116518 Vertex 3476 4.55599 17.8387 -0.161254 Vertex 3477 3.12338 13.5033 -0.201075 Vertex 3478 3.32298 13.5281 -0.100587 Vertex 3479 3.82119 16.0364 -0.441466 Vertex 3480 3.62809 16.2859 -0.579353 Vertex 3481 3.69465 16.252 -0.538704 Vertex 3482 3.76247 16.1131 -0.481424 Vertex 3483 2.10441 15.4979 -1.11433 Vertex 3484 1.9905 15.4564 -1.18025 Vertex 3485 0.0973224 15.4168 -0.787458 Vertex 3486 2.97145 13.4514 -0.947623 Vertex 3487 3.40131 13.5308 -0.408277 Vertex 3488 3.66738 14.8937 -1.44734 Vertex 3489 0.3285 14.5769 -1.77859 Vertex 3490 0.283752 15.45 -0.192139 Vertex 3491 4.62526 16.3421 -0.293791 Vertex 3492 4.72651 16.2433 -0.27024 Vertex 3493 4.8279 16.4434 -0.303479 Vertex 3494 0.262784 14.5662 -1.86399 Vertex 3495 0 15.4322 -0.295314 Vertex 3496 4.44302 15.9217 -0.241073 Vertex 3497 4.54664 17.8353 -0.349548 Vertex 3498 4.45778 17.8279 -0.296357 Vertex 3499 4.35945 17.8148 -0.363779 Vertex 3500 4.2662 17.8009 -0.366314 Vertex 3501 4.17311 17.7844 -0.368676 Vertex 3502 4.08037 17.7654 -0.37126 Vertex 3503 3.99568 17.7469 -0.312006 Vertex 3504 3.90402 17.7231 -0.314728 Vertex 3505 -4.36436e-015 15.3253 -0.586823 Vertex 3506 -4.36436e-015 15.214 -0.874477 Vertex 3507 0 15.4196 -0.688986 Vertex 3508 2.85088 13.4207 -1.12279 Vertex 3509 5.21541e-008 14.6602 -0.853616 Vertex 3510 3.40497 13.5359 -0.200704 Vertex 3511 1.5785 12.7941 -0.388466 Vertex 3512 2.62808 13.4084 -0.812983 Vertex 3513 0.473044 15.4718 -0.50779 Vertex 3514 2.80334 13.4339 -0.847293 Vertex 3515 -4.36436e-015 15.2313 -0.389301 Vertex 3516 -4.36436e-015 15.3308 -0.391217 Vertex 3517 0.0657272 14.5733 -1.80773 Vertex 3518 0.0657041 14.6481 -1.04046 Vertex 3519 3.08442 14.5905 -2.57271 Vertex 3520 2.70049 14.6955 -2.59122 Vertex 3521 0.799897 14.4848 -1.54464 Vertex 3522 0.390144 15.4606 -0.394616 Vertex 3523 3.32294 13.5285 -2.60171e-016 Vertex 3524 0.430893 15.4526 -0.782606 Vertex 3525 1.89554 15.8917 -0.829077 Vertex 3526 3.21078 17.4528 -0.208127 Vertex 3527 2.72578 13.4453 -0.301414 Vertex 3528 1.7759 16.1653 -0.570639 Vertex 3529 1.70467 16.0993 -0.477062 Vertex 3530 3.52307 13.5489 -0.100593 Vertex 3531 2.5276 13.4127 -0.304647 Vertex 3532 4.02443 13.5878 -0.100756 Vertex 3533 3.80462 17.693 -0.381052 Vertex 3534 3.72234 17.6679 -0.321025 Vertex 3535 2.42895 16.4655 -0.722237 Vertex 3536 2.29061 16.096 -0.787374 Vertex 3537 2.03363 16.3123 -0.749247 Vertex 3538 3.02853 13.4855 -0.435059 Vertex 3539 3.02393 13.4885 -0.300946 Vertex 3540 2.82464 13.4622 -0.201059 Vertex 3541 2.52783 13.3916 -0.811908 Vertex 3542 0.648677 15.5195 -0.187617 Vertex 3543 0.557863 15.4969 -0.187855 Vertex 3544 0.466579 15.4778 -0.18862 Vertex 3545 0.374274 15.462 -0.189659 Vertex 3546 2.20842 16.6633 -0.516775 Vertex 3547 3.81788 16.6035 -0.542889 Vertex 3548 3.88944 16.5607 -0.505387 Vertex 3549 3.96379 16.5228 -0.470268 Vertex 3550 5.21541e-008 15.1136 3.3934e-014 Vertex 3551 2.60764 13.8021 -2.43368 Vertex 3552 0.88407 14.4225 -1.64878 Vertex 3553 4.0148 16.5951 -0.46503 Vertex 3554 3.1864 14.3874 -2.53689 Vertex 3555 0.962894 14.3516 -1.7511 Vertex 3556 1.03561 14.2725 -1.85147 Vertex 3557 1.10151 14.2004 -1.84212 Vertex 3558 1.15997 14.1222 -1.83198 Vertex 3559 1.21042 14.0245 -1.92763 Vertex 3560 1.25238 13.9217 -2.02125 Vertex 3561 1.28544 13.8146 -2.11286 Vertex 3562 1.30929 13.7205 -2.09847 Vertex 3563 1.32369 13.6084 -2.18712 Vertex 3564 1.3285 13.5117 -2.17133 Vertex 3565 1.3285 13.4071 -2.15493 Vertex 3566 1.3285 13.2859 -2.23941 Vertex 3567 1.9781 12.6529 -1.93518 Vertex 3568 1.8782 12.6378 -2.03114 Vertex 3569 1.7783 12.622 -2.12698 Vertex 3570 1.7783 12.7967 -0.291369 Vertex 3571 1.8782 12.7985 -0.194255 Vertex 3572 1.7783 12.7941 -0.388466 Vertex 3573 1.7783 12.7908 -0.48554 Vertex 3574 1.8782 12.7967 -0.291369 Vertex 3575 1.8782 12.7941 -0.388466 Vertex 3576 1.7783 12.7867 -0.582587 Vertex 3577 1.7783 12.7819 -0.6796 Vertex 3578 1.8782 12.7908 -0.48554 Vertex 3579 1.8782 12.7867 -0.582587 Vertex 3580 1.7783 12.7764 -0.776574 Vertex 3581 1.8782 12.7819 -0.6796 Vertex 3582 1.7783 12.7702 -0.873503 Vertex 3583 1.8782 12.7764 -0.776573 Vertex 3584 1.7783 12.7632 -0.970382 Vertex 3585 1.8782 12.7702 -0.873503 Vertex 3586 1.9781 12.6672 -1.83911 Vertex 3587 1.8782 12.6529 -1.93518 Vertex 3588 1.7783 12.6378 -2.03114 Vertex 3589 1.9781 12.6808 -1.74293 Vertex 3590 1.9781 12.7996 -0.0971304 Vertex 3591 1.8782 12.6672 -1.83911 Vertex 3592 1.9781 12.7985 -0.194255 Vertex 3593 1.9781 12.7967 -0.291369 Vertex 3594 1.9781 12.7941 -0.388466 Vertex 3595 1.9781 12.7908 -0.48554 Vertex 3596 1.9781 12.6936 -1.64666 Vertex 3597 1.9781 12.7867 -0.582587 Vertex 3598 1.9781 12.7819 -0.6796 Vertex 3599 1.7783 12.7554 -1.0672 Vertex 3600 1.7783 12.747 -1.16397 Vertex 3601 1.8782 12.7632 -0.970382 Vertex 3602 1.9781 12.7764 -0.776574 Vertex 3603 1.8782 12.7554 -1.0672 Vertex 3604 1.9781 12.7702 -0.873503 Vertex 3605 1.7783 12.7378 -1.26066 Vertex 3606 1.9781 12.7632 -0.970382 Vertex 3607 1.9781 12.747 -1.16397 Vertex 3608 1.8782 12.7278 -1.35728 Vertex 3609 1.9781 12.7378 -1.26066 Vertex 3610 1.9781 12.7554 -1.0672 Vertex 3611 1.9781 12.7172 -1.45383 Vertex 3612 1.8782 12.747 -1.16397 Vertex 3613 1.9781 12.7278 -1.35728 Vertex 3614 1.9781 12.7058 -1.55029 Vertex 3615 1.7783 12.6529 -1.93518 Vertex 3616 1.8782 12.6808 -1.74293 Vertex 3617 1.8782 12.7378 -1.26066 Vertex 3618 1.8782 12.6936 -1.64666 Vertex 3619 1.8782 12.7172 -1.45383 Vertex 3620 1.7783 12.6672 -1.83911 Vertex 3621 1.7783 12.7278 -1.35728 Vertex 3622 1.8782 12.7058 -1.55029 Vertex 3623 1.7783 12.6808 -1.74293 Vertex 3624 1.7783 12.7172 -1.45383 Vertex 3625 1.7783 12.6936 -1.64666 Vertex 3626 1.7783 12.7058 -1.55029 Vertex 3627 1.5785 12.6936 -1.64666 Vertex 3628 1.48187 12.7 -1.74558 Vertex 3629 1.40138 12.74 -1.84968 Vertex 3630 1.34745 12.8056 -1.95854 Vertex 3631 1.3285 12.9889 -2.08924 Vertex 3632 1.3285 12.8847 -2.07081 Vertex 3633 1.3285 13.109 -2.00621 Vertex 3634 1.3285 13.0044 -1.99056 Vertex 3635 1.3285 13.198 -2.1221 Vertex 3636 1.3285 13.0934 -2.10567 Vertex 3637 1.3285 13.1644 -2.32124 Vertex 3638 0.0657041 14.6657 -0.751783 Vertex 3639 5.21541e-008 14.7494 -0.954561 Vertex 3640 5.21541e-008 14.674 -0.569104 Vertex 3641 5.21541e-008 14.7651 -0.668265 Vertex 3642 5.21541e-008 14.9721 -0.87297 Vertex 3643 5.21541e-008 14.9769 -0.776675 Vertex 3644 5.21541e-008 14.9842 -0.584251 Vertex 3645 -4.36436e-015 15.2299 -0.486229 Vertex 3646 -4.36436e-015 15.2272 -0.58326 Vertex 3647 -4.36436e-015 15.2191 -0.777412 Vertex 3648 -4.36436e-015 15.2305 -0.293378 Vertex 3649 5.21541e-008 14.981 -0.68048 Vertex 3650 -4.36436e-015 14.9864 -0.199559 Vertex 3651 -4.36436e-015 14.9796 -0.295378 Vertex 3652 -4.36436e-015 14.985 -0.486533 Vertex 3653 -4.36436e-015 15.2236 -0.680333 Vertex 3654 0 15.4271 -0.49218 Vertex 3655 0.0981082 15.4256 -0.590681 Vertex 3656 4.26171 15.9098 -0.273856 Vertex 3657 2.60967 13.5314 -3.3934e-014 Vertex 3658 4.55491 17.1645 -0.445473 Vertex 3659 3.63969 13.5549 -0.372636 Vertex 3660 1.08721 15.6793 -0.37426 Vertex 3661 0.255399 14.6838 -0.185395 Vertex 3662 0.0657041 14.6157 -1.4247 Vertex 3663 3.62331 13.5571 -0.199893 Vertex 3664 1.78951 15.4505 -1.19096 Vertex 3665 0.0983962 15.4341 -0.295368 Vertex 3666 0.196667 15.4399 -0.295529 Vertex 3667 3.64895 15.8726 -0.495349 Vertex 3668 3.59486 16.0364 -0.553625 Vertex 3669 3.55156 16.1313 -0.595116 Vertex 3670 1.40134 12.8721 -0.195372 Vertex 3671 3.97141 16.9505 -0.542907 Vertex 3672 0.19542 15.4313 -0.591129 Vertex 3673 3.86333 16.3707 -0.482514 Vertex 3674 1.68961 15.3804 -1.37652 Vertex 3675 1.29216 15.4092 -1.28162 Vertex 3676 1.48181 12.8135 -0.389056 Vertex 3677 0.584805 15.4812 -0.847002 Vertex 3678 0.501026 15.4662 -0.7767 Vertex 3679 0.29387 15.4473 -0.394556 Vertex 3680 1.81211 15.8163 -0.856595 Vertex 3681 1.30929 13.8765 -0.315955 Vertex 3682 2.39727 15.8828 -0.831859 Vertex 3683 2.9649 16.4381 -0.727063 Vertex 3684 2.60051 15.9807 -0.807706 Vertex 3685 2.79477 15.8864 -0.830718 Vertex 3686 0.836912 15.5743 -0.392318 Vertex 3687 0.28791 15.4361 -0.691667 Vertex 3688 4.63273 17.844 -0.137337 Vertex 3689 4.02354 14.9406 -1.18143 Vertex 3690 0.402288 15.4377 -0.960092 Vertex 3691 0.188456 15.4166 -0.887198 Vertex 3692 3.66323 16.0292 -0.515476 Vertex 3693 3.03797 15.4794 -1.09844 Vertex 3694 2.98023e-008 14.7523 -1.91811 Vertex 3695 2.98023e-008 14.6316 -2.09525 Vertex 3696 4.8279 17.0426 -0.40914 Vertex 3697 2.62822 13.4234 -0.508248 Vertex 3698 1.80345 13.1368 -3.3934e-014 Vertex 3699 2.07802 12.8959 -3.3934e-014 Vertex 3700 1.03561 14.3904 -0.218417 Vertex 3701 2.49864 15.7889 -0.868977 Vertex 3702 3.62408 17.6322 -0.389289 Vertex 3703 2.93989 13.4748 -0.387864 Vertex 3704 3.22319 13.5155 -0.201032 Vertex 3705 2.61281 13.3434 -1.52748 Vertex 3706 3.21112 13.6172 -3.3934e-014 Vertex 3707 2.98023e-008 14.8153 -1.34446 Vertex 3708 5.21541e-008 14.6249 -1.32719 Vertex 3709 1.68956 15.4089 -1.28255 Vertex 3710 1.40134 12.8643 -0.488332 Vertex 3711 1.33286 15.8188 -0.187687 Vertex 3712 4.51978 17.4017 -0.491374 Vertex 3713 3.69325 13.5629 -0.212645 Vertex 3714 3.39141 13.8425 -3.3934e-014 Vertex 3715 3.41253 13.6396 -3.3934e-014 Vertex 3716 2.79472 13.6621 -3.3934e-014 Vertex 3717 2.9098 13.5778 -3.3934e-014 Vertex 3718 2.484 15.3644 -1.47466 Vertex 3719 2.50612 15.2005 -2.68026 Vertex 3720 2.51941 15.2173 -2.58313 Vertex 3721 2.53386 15.2335 -2.48603 Vertex 3722 2.55023 15.249 -2.38919 Vertex 3723 2.56896 15.2638 -2.29283 Vertex 3724 2.59046 15.2778 -2.19717 Vertex 3725 2.61508 15.2911 -2.10242 Vertex 3726 2.64315 15.3037 -2.00874 Vertex 3727 2.67485 15.3156 -1.91631 Vertex 3728 2.71018 15.3267 -1.8253 Vertex 3729 2.74898 15.3371 -1.73575 Vertex 3730 2.79092 15.3468 -1.64763 Vertex 3731 2.83538 15.3559 -1.56074 Vertex 3732 2.78208 15.3644 -1.47466 Vertex 3733 5.21541e-008 14.5499 -1.98765 Vertex 3734 2.82649 13.4286 -0.975627 Vertex 3735 3.47579 14.8537 -1.67399 Vertex 3736 4.03215 17.0201 -0.534133 Vertex 3737 0.179676 15.4052 -1.05776 Vertex 3738 4.12967 13.5928 -0.182421 Vertex 3739 2.98023e-008 14.7966 -1.53599 Vertex 3740 2.98023e-008 14.6803 -1.71613 Vertex 3741 3.81627 13.6755 -3.3934e-014 Vertex 3742 4.22079 13.6994 -3.3934e-014 Vertex 3743 0.375705 15.4479 -0.692076 Vertex 3744 2.72962 13.3988 -1.16384 Vertex 3745 4.35214 15.9149 -0.255632 Vertex 3746 3.95738 14.9338 -1.2201 Vertex 3747 1.00172 15.6419 -0.280434 Vertex 3748 0.128821 15.3862 -1.2676 Vertex 3749 5.21541e-008 14.5964 -1.6107 Vertex 3750 1.10151 14.3177 -0.217314 Vertex 3751 3.1012 13.4968 -0.375474 Vertex 3752 -4.36436e-015 15.3115 -0.880047 Vertex 3753 0.255191 14.4934 -2.3642 Vertex 3754 1.41108 15.8702 -0.187519 Vertex 3755 1.48745 15.9246 -0.187492 Vertex 3756 4.52439 13.7094 -3.3934e-014 Vertex 3757 1.08653 15.6823 -0.18725 Vertex 3758 0.738721 15.5455 -0.187566 Vertex 3759 4.65739 17.4324 -0.483641 Vertex 3760 3.81548 16.298 -0.490086 Vertex 3761 2.08705 15.3806 -1.37577 Vertex 3762 2.08071 15.4068 -1.28818 Vertex 3763 1.15997 14.2389 -0.216118 Vertex 3764 1.21042 14.1548 -0.21484 Vertex 3765 0.91549 15.6039 -0.384647 Vertex 3766 0.135777 14.6827 -0.262035 Vertex 3767 0.196608 14.6815 -0.320869 Vertex 3768 0.132021 14.6783 -0.444303 Vertex 3769 0.131562 14.675 -0.541835 Vertex 3770 0.131423 14.671 -0.640414 Vertex 3771 0.131405 14.6664 -0.739125 Vertex 3772 0.131405 14.6611 -0.837803 Vertex 3773 0.131404 14.6332 -1.2321 Vertex 3774 0.131405 14.6551 -0.936443 Vertex 3775 0.131405 14.6485 -1.03504 Vertex 3776 0.131405 14.6412 -1.13359 Vertex 3777 5.21541e-008 14.6479 -1.04317 Vertex 3778 0.277104 15.4154 -1.03904 Vertex 3779 0.344823 15.4252 -1.0202 Vertex 3780 2.49188 15.7121 -0.911151 Vertex 3781 3.72135 16.076 -0.494469 Vertex 3782 1.19232 15.3644 -1.47466 Vertex 3783 1.39153 15.3804 -1.37658 Vertex 3784 1.49087 15.4091 -1.28185 Vertex 3785 4.3037 14.9622 -1.0587 Vertex 3786 4.37727 14.9662 -1.03616 Vertex 3787 4.45444 14.8681 -0.998537 Vertex 3788 3.8928 16.0987 -0.422596 Vertex 3789 3.98219 15.8878 -0.351664 Vertex 3790 4.06156 15.8933 -0.325846 Vertex 3791 4.16404 15.9007 -0.296842 Vertex 3792 5.21541e-008 14.7358 -1.14527 Vertex 3793 1.99488 15.4976 -1.1147 Vertex 3794 3.4226 16.1546 0 Vertex 3795 3.98595 16.5364 -3.3934e-014 Vertex 3796 4.00838 16.454 0 Vertex 3797 4.72934 16.7659 0 Vertex 3798 4.8279 16.8644 3.3934e-014 Vertex 3799 4.8279 16.8839 -0.0994754 Vertex 3800 0 15.1803 -2.16523 Vertex 3801 0 15.1869 -1.26236 Vertex 3802 0 15.2556 -1.56549 Vertex 3803 1.17078 15.7236 -0.281208 Vertex 3804 2.09734 16.3953 -3.3934e-014 Vertex 3805 2.22063 16.5364 -3.3934e-014 Vertex 3806 4.8279 14.2813 -0.263249 Vertex 3807 1.3475 12.9529 -0.196599 Vertex 3808 4.07173 16.566 -0.441246 Vertex 3809 4.53432 14.074 -0.344539 Vertex 3810 4.63183 13.9824 -0.316903 Vertex 3811 4.72976 13.8901 -0.293713 Vertex 3812 4.8279 13.7969 -0.274985 Vertex 3813 4.8279 13.9064 -0.203803 Vertex 3814 4.09526 17.087 -0.52584 Vertex 3815 4.16101 17.1505 -0.518044 Vertex 3816 4.72659 16.9424 -0.393508 Vertex 3817 4.62533 16.9421 -0.399567 Vertex 3818 4.52308 16.9453 -0.410492 Vertex 3819 0.69552 15.3644 -1.47466 Vertex 3820 3.18805 14.2986 -2.4465 Vertex 3821 1.3285 13.0466 -0.29706 Vertex 3822 1.43417 13.2617 -3.3934e-014 Vertex 3823 1.3285 13.2617 -3.3934e-014 Vertex 3824 1.3285 13.1543 -0.199778 Vertex 3825 1.3285 13.2613 -0.100676 Vertex 3826 3.92423 16.7534 -0.52573 Vertex 3827 1.34749 12.9451 -0.491398 Vertex 3828 1.3285 13.0365 -0.593965 Vertex 3829 1.3285 13.1498 -0.399511 Vertex 3830 1.3285 13.3025 -2.13852 Vertex 3831 1.3285 13.3184 -2.0375 Vertex 3832 1.3285 13.3335 -1.93637 Vertex 3833 1.3285 13.3478 -1.83513 Vertex 3834 1.3285 13.3613 -1.73378 Vertex 3835 1.3285 13.3741 -1.63234 Vertex 3836 1.3285 13.3861 -1.53079 Vertex 3837 1.3285 13.3973 -1.42904 Vertex 3838 1.3285 13.4078 -1.32724 Vertex 3839 1.3285 13.4175 -1.22536 Vertex 3840 1.3285 13.4264 -1.12343 Vertex 3841 1.3285 13.4346 -1.02151 Vertex 3842 1.3285 13.4419 -0.919523 Vertex 3843 1.3285 13.4485 -0.817488 Vertex 3844 1.3285 13.4543 -0.715405 Vertex 3845 1.3285 13.2521 -0.503263 Vertex 3846 1.3285 13.4594 -0.613281 Vertex 3847 1.3285 13.3579 -0.507189 Vertex 3848 1.3285 13.4636 -0.511122 Vertex 3849 1.3285 13.2582 -0.302005 Vertex 3850 1.3285 13.4733 -3.3934e-014 Vertex 3851 1.19281 15.3804 -1.37659 Vertex 3852 0 15.2325 -1.76569 Vertex 3853 1.27225 15.7761 -0.464046 Vertex 3854 3.5351 17.5981 -0.393905 Vertex 3855 3.89301 14.9264 -1.26185 Vertex 3856 0.275604 15.425 -0.882204 Vertex 3857 3.83069 14.9185 -1.30655 Vertex 3858 0.397441 15.3644 -1.47466 Vertex 3859 0.489322 15.3555 -1.56459 Vertex 3860 3.96186 14.8327 -1.19944 Vertex 3861 -4.36436e-015 15.299 -1.07534 Vertex 3862 1.80667 15.7668 -0.879927 Vertex 3863 2.98023e-008 14.7108 -1.43098 Vertex 3864 3.61644 16.1088 -0.554451 Vertex 3865 3.67962 16.0903 -0.517815 Vertex 3866 2.98023e-008 14.657 -1.90585 Vertex 3867 4.43108 16.9599 -0.426018 Vertex 3868 4.35213 16.9713 -0.441915 Vertex 3869 1.3285 13.4671 -0.408933 Vertex 3870 1.3285 13.5729 -0.412085 Vertex 3871 1.3285 13.6787 -0.415242 Vertex 3872 1.32369 13.7795 -0.313746 Vertex 3873 1.25241 15.7702 -0.187559 Vertex 3874 3.31885 13.525 -0.287152 Vertex 3875 1.99081 15.9807 -0.807706 Vertex 3876 2.09244 15.8861 -0.830811 Vertex 3877 1.25238 14.0661 -0.213494 Vertex 3878 4.2024 17.0949 -0.497247 Vertex 3879 4.23043 17.0564 -0.483453 Vertex 3880 4.5427 17.3521 -0.47991 Vertex 3881 3.29999 17.4984 -0.136825 Vertex 3882 3.38723 17.5392 -0.134949 Vertex 3883 4.08829 16.617 -0.445105 Vertex 3884 0.440828 15.4581 -0.704781 Vertex 3885 4.16063 14.9525 -1.11364 Vertex 3886 1.88816 15.4081 -1.28462 Vertex 3887 1.54625 13.5806 -3.3934e-014 Vertex 3888 1.43376 13.4733 -3.3934e-014 Vertex 3889 1.56156 15.9816 -0.187358 Vertex 3890 1.77095 16.1693 -0.187539 Vertex 3891 1.70401 16.1032 -0.281228 Vertex 3892 1.6342 16.0406 -0.28109 Vertex 3893 4.13087 16.5519 -0.420966 Vertex 3894 3.44708 17.5616 -0.398843 Vertex 3895 3.3601 17.5227 -0.404108 Vertex 3896 3.2742 17.4814 -0.409698 Vertex 3897 3.1894 17.4378 -0.415614 Vertex 3898 3.1057 17.3919 -0.421832 Vertex 3899 3.02312 17.3435 -0.428291 Vertex 3900 2.94157 17.2927 -0.435027 Vertex 3901 2.86099 17.2394 -0.442025 Vertex 3902 2.78149 17.1835 -0.44927 Vertex 3903 2.70331 17.1253 -0.456743 Vertex 3904 2.62672 17.0649 -0.464433 Vertex 3905 2.55182 17.0023 -0.472537 Vertex 3906 2.47884 16.9378 -0.481016 Vertex 3907 2.40792 16.8715 -0.48973 Vertex 3908 2.33913 16.8035 -0.498602 Vertex 3909 2.27258 16.734 -0.507635 Vertex 3910 2.20899 16.6663 -0.430695 Vertex 3911 2.14674 16.5961 -0.350662 Vertex 3912 2.08587 16.5261 -0.267798 Vertex 3913 1.96414 16.3831 -0.277337 Vertex 3914 1.90328 16.313 -0.188055 Vertex 3915 1.83923 16.2393 -0.280828 Vertex 3916 1.77469 16.1699 -0.373821 Vertex 3917 3.81937 15.955 -0.427902 Vertex 3918 3.90604 15.8826 -0.379239 Vertex 3919 3.95231 16.0248 -0.386663 Vertex 3920 0.144308 14.6839 -0.181743 Vertex 3921 0.10799 14.6729 -2.58723 Vertex 3922 2.67284 13.427 -0.596359 Vertex 3923 3.66495 14.7917 -1.43183 Vertex 3924 3.6176 14.8847 -1.49854 Vertex 3925 3.56368 14.7724 -1.54158 Vertex 3926 4.07532 15.8076 -0.306401 Vertex 3927 0.549954 15.4793 -0.724229 Vertex 3928 3.77134 14.9102 -1.35344 Vertex 3929 2.14674 16.5914 -0.525943 Vertex 3930 2.08587 16.5196 -0.535496 Vertex 3931 1.96414 16.3789 -0.462173 Vertex 3932 2.025 16.4478 -0.545037 Vertex 3933 2.02501 16.4559 -0.181726 Vertex 3934 2.025 16.4546 -0.272576 Vertex 3935 2.025 16.4529 -0.363412 Vertex 3936 2.025 16.4506 -0.454234 Vertex 3937 1.90328 16.3097 -0.376096 Vertex 3938 1.84052 16.2364 -0.468051 Vertex 3939 2.39682 15.79 -0.868461 Vertex 3940 2.7996 14.1787 -2.50009 Vertex 3941 2.70269 14.2744 -2.51696 Vertex 3942 3.52076 14.8645 -1.61277 Vertex 3943 2.08656 15.3644 -1.47466 Vertex 3944 2.28576 15.381 -1.37396 Vertex 3945 4.25262 16.0045 -0.292667 Vertex 3946 4.28155 17.0633 -0.472759 Vertex 3947 3.56607 15.7722 -0.523376 Vertex 3948 3.48488 15.764 -0.570743 Vertex 3949 4.8279 15.1339 -0.704681 Vertex 3950 0.135234 14.5059 -2.28676 Vertex 3951 0.132614 14.5191 -2.20094 Vertex 3952 0.131807 14.5327 -2.10964 Vertex 3953 0.197004 14.5425 -2.04063 Vertex 3954 5.21541e-008 14.8711 -0.384295 Vertex 3955 5.21541e-008 14.7774 -0.286357 Vertex 3956 3.71652 14.9019 -1.40093 Vertex 3957 4.22367 13.5975 -0.165279 Vertex 3958 4.31338 13.6014 -0.153548 Vertex 3959 3.47551 17.5777 -0.133183 Vertex 3960 2.44617 15.3558 -1.56213 Vertex 3961 2.60128 15.3466 -1.64944 Vertex 3962 2.65665 15.3369 -1.73717 Vertex 3963 2.61958 15.3265 -1.82684 Vertex 3964 2.5857 15.3154 -1.91785 Vertex 3965 2.46574 15.3034 -2.01113 Vertex 3966 2.34952 15.2908 -2.10518 Vertex 3967 2.32562 15.2775 -2.19959 Vertex 3968 2.21273 15.2634 -2.29517 Vertex 3969 4.75254 14.5706 -0.904126 Vertex 3970 4.8279 14.6725 -0.920329 Vertex 3971 4.72855 13.8091 -3.3934e-014 Vertex 3972 0.143892 14.4931 -2.36611 Vertex 3973 4.52694 14.9723 -1.00145 Vertex 3974 4.60392 14.8729 -0.971264 Vertex 3975 2.71814 17.142 -0.152537 Vertex 3976 2.79813 17.2007 -0.150032 Vertex 3977 2.87931 17.2568 -0.147617 Vertex 3978 3.75346 16.2171 -0.503965 Vertex 3979 3.70738 16.1468 -0.513803 Vertex 3980 1.98769 15.3805 -1.37613 Vertex 3981 1.32943 15.8132 -0.381648 Vertex 3982 3.70524 13.5615 -0.332153 Vertex 3983 2.19 15.2487 -2.39101 Vertex 3984 2.25968 15.2333 -2.4871 Vertex 3985 1.85996 15.2172 -2.58394 Vertex 3986 1.54223 14.9157 -2.63005 Vertex 3987 1.54223 15.2005 -2.68026 Vertex 3988 4.72651 16.0436 -0.23502 Vertex 3989 4.62527 16.0425 -0.24096 Vertex 3990 4.53446 15.9312 -0.230318 Vertex 3991 2.70755 13.3905 -1.21789 Vertex 3992 0.289268 15.3454 -1.66098 Vertex 3993 0.195749 15.3549 -1.56999 Vertex 3994 4.24517 15.5934 -0.452293 Vertex 3995 1.90328 16.3043 -0.564089 Vertex 3996 1.99489 16.0774 -0.79065 Vertex 3997 3.73329 15.8797 -0.454073 Vertex 3998 3.65666 15.9551 -0.505837 Vertex 3999 3.57303 15.8606 -0.534959 Vertex 4000 3.9804 16.8257 -0.517685 Vertex 4001 4.03851 16.8961 -0.510157 Vertex 4002 3.1864 14.489 -2.5548 Vertex 4003 3.8192 15.7939 -0.399559 Vertex 4004 3.90642 15.7999 -0.364518 Vertex 4005 3.99476 15.8054 -0.332691 Vertex 4006 4.32305 15.5991 -0.419937 Vertex 4007 1.28544 13.9737 -0.212092 Vertex 4008 2.71043 16.0871 -0.788957 Vertex 4009 0.285076 15.3349 -1.75478 Vertex 4010 0.280908 15.3238 -1.84907 Vertex 4011 0.27635 15.3121 -1.94374 Vertex 4012 0.270578 15.2998 -2.03846 Vertex 4013 0.262376 15.287 -2.13259 Vertex 4014 0.502359 15.4696 -0.713177 Vertex 4015 2.90536 15.9807 -0.807706 Vertex 4016 2.70422 13.4165 -0.878985 Vertex 4017 2.96148 17.3102 -0.145284 Vertex 4018 4.64007 17.8418 -0.333648 Vertex 4019 4.5499 17.8367 -0.283181 Vertex 4020 4.45295 17.8262 -0.359124 Vertex 4021 4.36501 17.8167 -0.30265 Vertex 4022 4.2724 17.803 -0.305385 Vertex 4023 4.17994 17.7868 -0.307398 Vertex 4024 4.08769 17.7681 -0.309562 Vertex 4025 3.98797 17.7438 -0.37417 Vertex 4026 3.89601 17.7196 -0.377434 Vertex 4027 3.81285 17.6967 -0.317738 Vertex 4028 3.71395 17.6638 -0.385004 Vertex 4029 3.6326 17.6366 -0.32459 Vertex 4030 3.54371 17.6028 -0.32844 Vertex 4031 3.46364 17.5711 -0.266173 Vertex 4032 3.38274 17.5365 -0.202356 Vertex 4033 3.04461 17.361 -0.143036 Vertex 4034 3.29049 17.4921 -0.273435 Vertex 4035 3.21381 17.455 -0.1388 Vertex 4036 3.1287 17.4093 -0.140873 Vertex 4037 1.78897 15.3805 -1.37645 Vertex 4038 1.88784 15.3644 -1.47466 Vertex 4039 1.85924 15.3557 -1.5626 Vertex 4040 1.92789 15.3465 -1.65089 Vertex 4041 1.61512 15.3366 -1.74048 Vertex 4042 1.59294 15.3261 -1.83063 Vertex 4043 1.76139 15.3557 -1.56266 Vertex 4044 1.44596 15.3464 -1.65147 Vertex 4045 1.42512 15.3365 -1.74079 Vertex 4046 3.0246 13.4868 -0.374002 Vertex 4047 4.17413 15.8144 -0.278886 Vertex 4048 3.1933 14.7182 -2.4426 Vertex 4049 3.20187 14.7311 -2.3692 Vertex 4050 3.21391 14.7441 -2.29589 Vertex 4051 3.22947 14.757 -2.22274 Vertex 4052 3.24854 14.7698 -2.15004 Vertex 4053 3.26951 14.6801 -2.06485 Vertex 4054 3.29715 14.795 -2.00689 Vertex 4055 3.32651 14.8073 -1.93712 Vertex 4056 3.3591 14.8194 -1.86885 Vertex 4057 3.39487 14.8311 -1.80218 Vertex 4058 3.43378 14.8426 -1.7372 Vertex 4059 4.5849 17.4182 -0.487107 Vertex 4060 0.166682 15.2718 -2.23874 Vertex 4061 0.232746 15.2605 -2.31427 Vertex 4062 3.47161 14.7511 -1.66209 Vertex 4063 2.49889 15.8825 -0.83196 Vertex 4064 1.2718 14.7468 -2.60025 Vertex 4065 0.143051 15.2462 -2.40695 Vertex 4066 0.197104 14.5816 -1.73923 Vertex 4067 4.65869 17.3506 -0.469129 Vertex 4068 4.09132 14.9468 -1.14594 Vertex 4069 4.0278 14.8394 -1.16118 Vertex 4070 4.30683 14.8608 -1.03975 Vertex 4071 4.38019 14.8648 -1.01743 Vertex 4072 4.45185 14.9696 -1.01704 Vertex 4073 4.52914 14.8708 -0.983143 Vertex 4074 4.67754 14.9759 -0.980847 Vertex 4075 4.60225 14.9744 -0.989398 Vertex 4076 4.6786 14.8744 -0.962845 Vertex 4077 4.75306 14.7737 -0.939918 Vertex 4078 4.8279 14.7084 -0.63112 Vertex 4079 4.8279 14.774 -0.938237 Vertex 4080 4.16136 15.5879 -0.482988 Vertex 4081 4.07323 15.5825 -0.513764 Vertex 4082 3.98336 15.5768 -0.54633 Vertex 4083 3.89426 15.5705 -0.582132 Vertex 4084 3.80667 15.5635 -0.621592 Vertex 4085 3.72096 15.5559 -0.66456 Vertex 4086 3.63712 15.5477 -0.711014 Vertex 4087 0.34449 15.4291 -0.957822 Vertex 4088 1.75728 15.3149 -1.92144 Vertex 4089 1.73545 15.3031 -2.01369 Vertex 4090 1.80499 15.2905 -2.1068 Vertex 4091 1.96393 15.2773 -2.2007 Vertex 4092 3.56477 17.6136 -0.131528 Vertex 4093 3.65496 17.6471 -0.129981 Vertex 4094 3.73833 17.675 -0.192769 Vertex 4095 3.83779 17.7066 -0.127198 Vertex 4096 3.92083 17.7294 -0.188949 Vertex 4097 4.02303 17.7558 -0.124914 Vertex 4098 4.11625 17.7764 -0.123936 Vertex 4099 4.20973 17.7945 -0.123065 Vertex 4100 4.30333 17.81 -0.122081 Vertex 4101 4.39601 17.8228 -0.120214 Vertex 4102 4.72652 16.6428 -0.34068 Vertex 4103 4.6252 16.6418 -0.346627 Vertex 4104 4.52285 16.64 -0.356688 Vertex 4105 4.42059 16.5388 -0.353464 Vertex 4106 4.31742 16.4392 -0.355016 Vertex 4107 4.21868 16.3481 -0.361459 Vertex 4108 1.30929 13.8785 -0.210647 Vertex 4109 4.28387 15.2175 -0.79879 Vertex 4110 4.19662 15.2127 -0.826184 Vertex 4111 4.11043 15.2071 -0.857778 Vertex 4112 4.02594 15.2008 -0.89338 Vertex 4113 3.94347 15.1939 -0.932737 Vertex 4114 3.86262 15.1862 -0.976142 Vertex 4115 3.78414 15.1779 -1.02315 Vertex 4116 3.70804 15.169 -1.07376 Vertex 4117 3.63434 15.1594 -1.12795 Vertex 4118 3.56326 15.1493 -1.18562 Vertex 4119 3.49512 15.1385 -1.24647 Vertex 4120 3.43009 15.1273 -1.31035 Vertex 4121 3.36803 15.1154 -1.3774 Vertex 4122 3.30923 15.1031 -1.44734 Vertex 4123 3.25402 15.0904 -1.51978 Vertex 4124 0.131458 14.5591 -1.91859 Vertex 4125 1.4055 15.326 -1.83098 Vertex 4126 1.47954 15.3149 -1.922 Vertex 4127 1.46047 15.303 -2.01425 Vertex 4128 1.34977 15.2904 -2.10769 Vertex 4129 1.23729 15.2771 -2.20201 Vertex 4130 3.08391 14.489 -2.5548 Vertex 4131 4.47204 17.831 -0.174025 Vertex 4132 4.56357 17.8397 -0.110634 Vertex 4133 0.197106 14.5934 -1.63771 Vertex 4134 0.197106 14.6045 -1.53602 Vertex 4135 0.197106 14.6148 -1.43422 Vertex 4136 0.131405 14.6246 -1.33052 Vertex 4137 0.197106 14.6334 -1.23038 Vertex 4138 0.197106 14.6416 -1.12836 Vertex 4139 0.197106 14.6491 -1.02628 Vertex 4140 0.197106 14.6559 -0.924155 Vertex 4141 0.197106 14.662 -0.821985 Vertex 4142 0.197106 14.6673 -0.719774 Vertex 4143 0.197104 14.672 -0.617578 Vertex 4144 4.56259 15.607 -0.375167 Vertex 4145 4.39271 15.6055 -0.383486 Vertex 4146 4.45018 15.6132 -0.340008 Vertex 4147 1.02889 15.2631 -2.29718 Vertex 4148 1.08754 15.2485 -2.39248 Vertex 4149 1.04941 15.2331 -2.48829 Vertex 4150 1.29158 15.2171 -2.58417 Vertex 4151 4.23143 14.9577 -1.08455 Vertex 4152 1.3285 13.364 -0.30436 Vertex 4153 1.3285 13.4698 -0.30672 Vertex 4154 1.3285 13.5757 -0.309084 Vertex 4155 1.3285 13.6815 -0.311453 Vertex 4156 2.2506 15.3557 -1.56232 Vertex 4157 2.31327 15.3465 -1.65034 Vertex 4158 2.37458 15.3367 -1.739 Vertex 4159 2.4351 15.3263 -1.82847 Vertex 4160 2.31197 15.3151 -1.91999 Vertex 4161 2.37542 15.3033 -2.01178 Vertex 4162 2.43916 15.2908 -2.10458 Vertex 4163 4.16427 14.8512 -1.09415 Vertex 4164 3.55522 15.5389 -0.760884 Vertex 4165 3.47565 15.5296 -0.8139 Vertex 4166 3.39882 15.5198 -0.869718 Vertex 4167 3.32518 15.5095 -0.927787 Vertex 4168 2.14523 15.2774 -2.20026 Vertex 4169 2.03116 15.2633 -2.29562 Vertex 4170 3.25531 15.499 -0.987249 Vertex 4171 4.51364 15.5977 -0.427908 Vertex 4172 4.44582 15.591 -0.46548 Vertex 4173 0.197099 14.5692 -1.84045 Vertex 4174 0.192861 15.3449 -1.66558 Vertex 4175 0.190062 15.3342 -1.76148 Vertex 4176 0.187252 15.3228 -1.85767 Vertex 4177 0.184147 15.3108 -1.954 Vertex 4178 0.18017 15.2982 -2.05019 Vertex 4179 4.43743 14.2584 -0.393094 Vertex 4180 4.53432 14.2611 -0.37753 Vertex 4181 4.63183 14.2631 -0.366389 Vertex 4182 4.72976 14.2643 -0.359695 Vertex 4183 4.8279 14.2647 -0.357462 Vertex 4184 1.68912 15.3644 -1.47466 Vertex 4185 1.36998 15.3557 -1.56291 Vertex 4186 1.54235 15.3464 -1.65136 Vertex 4187 1.52012 15.3365 -1.74063 Vertex 4188 1.78037 15.3261 -1.83027 Vertex 4189 1.84985 15.315 -1.92125 Vertex 4190 1.91873 15.3031 -2.01329 Vertex 4191 1.98698 15.2906 -2.10641 Vertex 4192 2.05464 15.2773 -2.2005 Vertex 4193 2.12205 15.2634 -2.29542 Vertex 4194 2.00674 15.2486 -2.39136 Vertex 4195 4.60393 14.7714 -0.953355 Vertex 4196 0.978581 15.3556 -1.56317 Vertex 4197 0.964016 15.3463 -1.65206 Vertex 4198 0.855115 15.3364 -1.74174 Vertex 4199 0.936908 15.3259 -1.83188 Vertex 4200 0.831449 15.3147 -1.92339 Vertex 4201 0.910488 15.3029 -2.01538 Vertex 4202 0.985567 15.2903 -2.1084 Vertex 4203 1.05559 15.2771 -2.20233 Vertex 4204 1.30231 15.2632 -2.29677 Vertex 4205 2.40834 14.9157 -2.63005 Vertex 4206 1.63862 15.0107 -2.64678 Vertex 4207 2.31334 15.1056 -2.66352 Vertex 4208 1.34945 15.2005 -2.68026 Vertex 4209 1.57579 15.2172 -2.58406 Vertex 4210 4.36654 15.5858 -0.495337 Vertex 4211 4.28069 15.5809 -0.522702 Vertex 4212 4.19073 15.5761 -0.550234 Vertex 4213 4.09877 15.5709 -0.579628 Vertex 4214 4.007 15.5652 -0.612214 Vertex 4215 3.91671 15.5587 -0.648636 Vertex 4216 4.63272 15.8367 -0.204081 Vertex 4217 4.54006 15.8303 -0.211885 Vertex 4218 2.18592 15.3644 -1.47466 Vertex 4219 2.15277 15.3557 -1.5624 Vertex 4220 2.21697 15.3465 -1.6505 Vertex 4221 2.27984 15.3367 -1.73927 Vertex 4222 2.34199 15.3263 -1.82891 Vertex 4223 2.40386 15.3152 -1.91953 Vertex 4224 2.28452 15.3033 -2.01224 Vertex 4225 2.25928 15.2907 -2.10561 Vertex 4226 2.41504 15.2775 -2.19906 Vertex 4227 0.170829 15.2349 -2.47721 Vertex 4228 1.60856 15.2332 -2.48785 Vertex 4229 1.54727 15.2485 -2.39195 Vertex 4230 3.73111 15.959 -0.469109 Vertex 4231 4.75277 14.6722 -0.922023 Vertex 4232 2.37191 15.2488 -2.3904 Vertex 4233 2.16704 15.2333 -2.48727 Vertex 4234 3.71961 14.6993 -1.36232 Vertex 4235 3.77717 14.708 -1.31281 Vertex 4236 0.174601 15.2851 -2.14552 Vertex 4237 1.09296 15.3644 -1.47466 Vertex 4238 1.07643 15.3556 -1.5631 Vertex 4239 1.25318 15.3464 -1.6517 Vertex 4240 1.23512 15.3365 -1.74109 Vertex 4241 1.12435 15.3259 -1.83151 Vertex 4242 0.197116 14.6759 -0.51579 Vertex 4243 0.197066 14.6791 -0.415811 Vertex 4244 2.7029 13.8021 -2.43368 Vertex 4245 3.83716 14.7163 -1.26588 Vertex 4246 1.66686 15.2632 -2.29623 Vertex 4247 1.29217 15.3804 -1.37659 Vertex 4248 1.39104 15.3644 -1.47466 Vertex 4249 1.56569 15.3557 -1.56279 Vertex 4250 1.63873 15.3464 -1.65124 Vertex 4251 1.71012 15.3366 -1.74032 Vertex 4252 1.68665 15.3261 -1.83045 Vertex 4253 1.6647 15.3149 -1.92163 Vertex 4254 1.64379 15.3031 -2.01388 Vertex 4255 1.71396 15.2905 -2.10698 Vertex 4256 1.69152 15.2772 -2.20121 Vertex 4257 3.82817 15.5516 -0.688891 Vertex 4258 3.74151 15.5439 -0.732887 Vertex 4259 3.65675 15.5355 -0.78062 Vertex 4260 3.57442 15.5265 -0.8317 Vertex 4261 2.91359 14.943 -2.35527 Vertex 4262 2.92918 14.9591 -2.26444 Vertex 4263 3.16234 15.5013 -0.974575 Vertex 4264 3.2306 15.5121 -0.913078 Vertex 4265 3.30212 15.5227 -0.853256 Vertex 4266 3.37649 15.5328 -0.795744 Vertex 4267 3.45348 15.5425 -0.740886 Vertex 4268 3.53282 15.5516 -0.688963 Vertex 4269 3.61412 15.5602 -0.640195 Vertex 4270 3.69718 15.5682 -0.594704 Vertex 4271 3.78212 15.5757 -0.552472 Vertex 4272 3.86875 15.5825 -0.513632 Vertex 4273 1.9872 15.3644 -1.47466 Vertex 4274 2.05493 15.3557 -1.56246 Vertex 4275 2.02426 15.3465 -1.65077 Vertex 4276 1.99509 15.3366 -1.73985 Vertex 4277 2.15507 15.3262 -1.82949 Vertex 4278 2.12741 15.315 -1.92061 Vertex 4279 2.10186 15.3032 -2.01285 Vertex 4280 2.16869 15.2907 -2.10593 Vertex 4281 2.23561 15.2774 -2.19998 Vertex 4282 2.30306 15.2634 -2.29484 Vertex 4283 2.28122 15.2487 -2.39075 Vertex 4284 2.3519 15.2333 -2.48685 Vertex 4285 2.42627 15.2173 -2.58337 Vertex 4286 2.40973 15.2005 -2.68026 Vertex 4287 1.1092 15.3148 -1.92275 Vertex 4288 1.00215 15.3029 -2.01518 Vertex 4289 1.16767 15.2904 -2.10805 Vertex 4290 1.32369 13.7814 -0.209174 Vertex 4291 0.385197 15.4319 -1.00926 Vertex 4292 3.36252 13.5281 -0.357386 Vertex 4293 2.09242 15.9807 -0.807706 Vertex 4294 2.39281 15.2635 -2.29439 Vertex 4295 2.46175 15.2489 -2.3899 Vertex 4296 2.44344 15.2334 -2.48651 Vertex 4297 2.33246 15.2172 -2.58354 Vertex 4298 2.12051 14.6323 -2.58006 Vertex 4299 4.8279 14.5131 -0.59765 Vertex 4300 3.2022 15.0771 -1.59498 Vertex 4301 3.15426 15.0635 -1.6722 Vertex 4302 3.10992 15.0494 -1.75195 Vertex 4303 3.06955 15.035 -1.83354 Vertex 4304 3.03302 15.0203 -1.9173 Vertex 4305 3.89931 14.724 -1.22176 Vertex 4306 0.197077 14.5561 -1.94111 Vertex 4307 0.131548 14.5461 -2.015 Vertex 4308 0.196781 14.5286 -2.13776 Vertex 4309 4.31135 15.2012 -0.890937 Vertex 4310 4.52385 16.4403 -0.321347 Vertex 4311 4.42263 16.3377 -0.317674 Vertex 4312 4.31967 16.3367 -0.336483 Vertex 4313 0.482064 15.346 -1.65497 Vertex 4314 0.570104 15.3362 -1.74375 Vertex 4315 0.562023 15.3256 -1.83475 Vertex 4316 0.553693 15.3143 -1.9266 Vertex 4317 0.635501 15.3026 -2.01717 Vertex 4318 0.621442 15.29 -2.11047 Vertex 4319 0.783048 15.277 -2.20293 Vertex 4320 0.846609 15.2631 -2.29747 Vertex 4321 4.62027 17.8435 -0.103945 Vertex 4322 0.811717 15.2484 -2.39281 Vertex 4323 4.72909 14.0062 -3.3934e-014 Vertex 4324 4.59701 15.6181 -0.312096 Vertex 4325 4.49418 15.6219 -0.290188 Vertex 4326 0.13307 14.6808 -0.35003 Vertex 4327 0.195135 14.6831 -0.237317 Vertex 4328 1.73113 15.2486 -2.39173 Vertex 4329 1.84909 15.2633 -2.29594 Vertex 4330 3.66477 14.6901 -1.4141 Vertex 4331 3.61241 14.6806 -1.46834 Vertex 4332 3.56243 14.6705 -1.52516 Vertex 4333 3.51502 14.6601 -1.58444 Vertex 4334 2.40938 13.4102 -2.36459 Vertex 4335 2.60776 13.7086 -2.41719 Vertex 4336 2.16533 13.954 -2.46046 Vertex 4337 0.131425 14.5716 -1.82125 Vertex 4338 4.8279 17.4558 -0.0982214 Vertex 4339 0.685028 15.3556 -1.56351 Vertex 4340 0.674849 15.3463 -1.65275 Vertex 4341 0.760113 15.3364 -1.74203 Vertex 4342 0.843189 15.3259 -1.8321 Vertex 4343 0.924034 15.3147 -1.92314 Vertex 4344 0.818823 15.3028 -2.01565 Vertex 4345 4.26491 15.8181 -0.256952 Vertex 4346 4.35622 15.8216 -0.23841 Vertex 4347 3.95657 15.5888 -0.478035 Vertex 4348 4.04393 15.5947 -0.444905 Vertex 4349 0.196163 14.5147 -2.22987 Vertex 4350 0.194664 14.502 -2.31128 Vertex 4351 3.7333 15.7872 -0.437761 Vertex 4352 3.81891 15.8862 -0.415964 Vertex 4353 3.90045 15.9444 -0.392337 Vertex 4354 4.8279 14.3748 -0.280037 Vertex 4355 1.32814 15.2771 -2.20185 Vertex 4356 2.31414 14.1771 -2.4998 Vertex 4357 2.60743 13.8956 -2.45018 Vertex 4358 2.41775 13.6148 -2.40066 Vertex 4359 2.4175 13.7082 -2.41713 Vertex 4360 2.7029 13.8956 -2.45018 Vertex 4361 1.95002 14.497 -2.55622 Vertex 4362 3.00078 15.0053 -2.00215 Vertex 4363 2.97264 14.9901 -2.08863 Vertex 4364 4.64409 15.2295 -0.730415 Vertex 4365 1.48459 15.2632 -2.2965 Vertex 4366 1.50983 15.2772 -2.20154 Vertex 4367 1.44082 15.2904 -2.10752 Vertex 4368 3.64888 15.78 -0.479057 Vertex 4369 0.131413 14.5835 -1.72345 Vertex 4370 4.44795 15.8255 -0.223357 Vertex 4371 0.894516 15.2903 -2.10859 Vertex 4372 0.873892 15.277 -2.20267 Vertex 4373 1.59025 15.3804 -1.37655 Vertex 4374 1.58976 15.3644 -1.47466 Vertex 4375 1.66354 15.3557 -1.56272 Vertex 4376 1.73512 15.3464 -1.65112 Vertex 4377 1.80511 15.3366 -1.74017 Vertex 4378 1.87407 15.3261 -1.83009 Vertex 4379 1.94241 15.315 -1.92105 Vertex 4380 1.8271 15.3031 -2.01349 Vertex 4381 1.896 15.2906 -2.10661 Vertex 4382 1.15669 14.9158 -2.63005 Vertex 4383 0.191911 14.4927 -2.36901 Vertex 4384 1.36881 15.303 -2.01444 Vertex 4385 1.38696 15.3148 -1.92219 Vertex 4386 2.14384 15.2172 -2.58376 Vertex 4387 2.07417 15.2332 -2.48741 Vertex 4388 4.1283 15.6003 -0.412675 Vertex 4389 1.5485 13.9431 -2.45854 Vertex 4390 4.36613 13.6033 -0.148592 Vertex 4391 0.78288 15.3556 -1.56333 Vertex 4392 0.867628 15.3463 -1.65219 Vertex 4393 0.950116 15.3364 -1.74156 Vertex 4394 1.03063 15.3259 -1.83169 Vertex 4395 1.20179 15.3148 -1.92256 Vertex 4396 1.18548 15.3029 -2.01481 Vertex 4397 1.45532 15.2485 -2.39206 Vertex 4398 1.51538 15.2332 -2.48793 Vertex 4399 4.09644 14.7442 -1.1076 Vertex 4400 4.8279 17.3572 3.3934e-014 Vertex 4401 1.25872 15.2904 -2.10787 Vertex 4402 3.49484 15.5169 -0.885811 Vertex 4403 3.41853 15.5069 -0.942412 Vertex 4404 3.47066 14.5478 -1.62764 Vertex 4405 3.4292 14.5366 -1.69078 Vertex 4406 3.39088 14.5252 -1.75554 Vertex 4407 3.35548 14.615 -1.84021 Vertex 4408 3.32351 14.603 -1.90802 Vertex 4409 3.29498 14.4894 -1.95872 Vertex 4410 3.2694 14.4769 -2.02934 Vertex 4411 3.24696 14.5657 -2.11975 Vertex 4412 3.22825 14.5529 -2.19209 Vertex 4413 3.21303 14.5401 -2.26479 Vertex 4414 3.20135 14.4258 -2.31917 Vertex 4415 3.19301 14.413 -2.39197 Vertex 4416 3.18805 14.4002 -2.46452 Vertex 4417 3.098 15.4903 -1.03674 Vertex 4418 4.20839 15.6061 -0.380169 Vertex 4419 3.96337 14.7313 -1.18061 Vertex 4420 3.51529 14.5586 -1.56619 Vertex 4421 1.39346 15.2632 -2.29664 Vertex 4422 1.14644 15.2771 -2.20217 Vertex 4423 1.27144 15.2485 -2.39227 Vertex 4424 1.12003 15.2631 -2.29704 Vertex 4425 3.56264 14.569 -1.507 Vertex 4426 4.02914 14.738 -1.14253 Vertex 4427 4.42321 16.238 -0.299986 Vertex 4428 4.8279 17.5532 -0.384363 Vertex 4429 0.192286 14.6839 -0.178574 Vertex 4430 1.2358 15.2331 -2.48815 Vertex 4431 1.35639 14.9227 -2.63128 Vertex 4432 1.34945 15.1056 -2.66352 Vertex 4433 1.63862 15.2005 -2.68026 Vertex 4434 1.38632 15.2171 -2.58414 Vertex 4435 4.65339 15.2127 -0.826 Vertex 4436 0.937749 15.2631 -2.29732 Vertex 4437 4.28296 15.612 -0.346379 Vertex 4438 0.131407 14.5948 -1.6254 Vertex 4439 0.131405 14.6054 -1.5272 Vertex 4440 0.131405 14.6153 -1.4289 Vertex 4441 0.197106 14.6244 -1.33233 Vertex 4442 4.23503 14.5517 -1.01154 Vertex 4443 4.16528 14.7498 -1.0758 Vertex 4444 0.723288 14.9305 -2.63265 Vertex 4445 3.99268 14.3065 -3.3934e-014 Vertex 4446 4.3201 14.111 -3.3934e-014 Vertex 4447 4.13302 14.5021 -3.3934e-014 Vertex 4448 4.33481 14.5977 0 Vertex 4449 4.53125 14.2036 -3.3934e-014 Vertex 4450 4.62968 14.0063 -3.3934e-014 Vertex 4451 4.63019 14.1048 -3.3934e-014 Vertex 4452 4.43353 14.5976 -3.3934e-014 Vertex 4453 4.63061 14.3019 -3.3934e-014 Vertex 4454 4.8279 14.1047 0 Vertex 4455 2.40973 15.0107 -2.64678 Vertex 4456 2.21695 15.1056 -2.66352 Vertex 4457 2.31334 15.2005 -2.68026 Vertex 4458 3.34638 15.4967 -1.00041 Vertex 4459 2.81237 16.0899 -0.788448 Vertex 4460 2.50022 14.9123 -2.62944 Vertex 4461 1.92779 14.8208 -2.61331 Vertex 4462 1.87127 13.0683 -2.3043 Vertex 4463 4.72934 17.1601 0 Vertex 4464 4.8279 17.2586 3.3934e-014 Vertex 4465 4.8279 17.3572 -0.0983698 Vertex 4466 4.8279 17.3599 -0.362108 Vertex 4467 4.8279 17.3423 -0.46197 Vertex 4468 4.34138 14.1613 -0.396553 Vertex 4469 3.26508 14.2497 -1.53653 Vertex 4470 3.2307 14.2713 -1.41362 Vertex 4471 4.4625 15.225 -0.75612 Vertex 4472 3.61264 14.579 -1.45018 Vertex 4473 1.87316 15.2773 -2.20088 Vertex 4474 3.27361 17.2751 -0.579467 Vertex 4475 3.38903 17.2666 -0.580972 Vertex 4476 3.59463 17.2931 -0.576291 Vertex 4477 3.19025 15.4886 -1.04666 Vertex 4478 3.27989 15.4866 -1.0579 Vertex 4479 3.19305 14.3115 -2.37361 Vertex 4480 3.20146 14.3244 -2.30047 Vertex 4481 3.21333 14.3373 -2.22735 Vertex 4482 3.22868 14.3501 -2.15444 Vertex 4483 2.21993 14.2878 -2.51932 Vertex 4484 0.250289 15.2738 -2.22504 Vertex 4485 0.155983 15.2585 -2.32751 Vertex 4486 0.207756 15.2475 -2.39846 Vertex 4487 1.17949 15.2485 -2.39237 Vertex 4488 3.2475 14.3629 -2.08205 Vertex 4489 4.24637 14.157 -0.420854 Vertex 4490 4.43743 14.0713 -0.360104 Vertex 4491 4.34138 14.0677 -0.380058 Vertex 4492 3.66507 14.5886 -1.3959 Vertex 4493 4.15259 14.152 -0.449451 Vertex 4494 4.06026 14.1462 -0.482283 Vertex 4495 3.96957 14.1397 -0.519279 Vertex 4496 3.88071 14.1324 -0.56036 Vertex 4497 3.79386 14.1245 -0.605439 Vertex 4498 3.70923 14.1158 -0.654419 Vertex 4499 3.62699 14.1065 -0.707197 Vertex 4500 3.5473 14.0966 -0.763659 Vertex 4501 3.47035 14.086 -0.823685 Vertex 4502 3.3963 14.0748 -0.887147 Vertex 4503 3.3253 14.063 -0.953909 Vertex 4504 3.25751 14.0507 -1.02383 Vertex 4505 4.24637 14.0635 -0.404359 Vertex 4506 4.15259 14.0584 -0.432956 Vertex 4507 4.06026 14.0526 -0.465788 Vertex 4508 3.96957 14.0461 -0.502783 Vertex 4509 3.88071 14.0389 -0.543865 Vertex 4510 3.79386 14.0309 -0.588944 Vertex 4511 3.70923 14.0223 -0.637924 Vertex 4512 3.62699 14.013 -0.690702 Vertex 4513 3.5473 14.003 -0.747164 Vertex 4514 3.47035 13.9924 -0.80719 Vertex 4515 3.3963 13.9812 -0.870652 Vertex 4516 3.19306 14.0378 -1.09676 Vertex 4517 3.3253 13.9695 -0.937414 Vertex 4518 3.25751 13.9572 -1.00733 Vertex 4519 1.31178 15.326 -1.83116 Vertex 4520 3.26978 14.3756 -2.01033 Vertex 4521 3.29536 14.388 -1.93984 Vertex 4522 3.32419 14.4002 -1.87067 Vertex 4523 3.35619 14.4121 -1.80298 Vertex 4524 3.3914 14.4238 -1.73671 Vertex 4525 3.42973 14.4352 -1.67203 Vertex 4526 2.21695 15.2005 -2.68026 Vertex 4527 0.875409 14.6625 -2.5854 Vertex 4528 1.28222 14.6117 -2.57644 Vertex 4529 2.49889 15.9807 -0.807706 Vertex 4530 1.3285 13.2601 -0.201346 Vertex 4531 1.3285 13.366 -0.202917 Vertex 4532 1.3285 13.4718 -0.20449 Vertex 4533 1.3285 13.5776 -0.206066 Vertex 4534 1.3285 13.6834 -0.207645 Vertex 4535 2.32963 13.8933 -2.44977 Vertex 4536 0.130965 15.2369 -2.465 Vertex 4537 1.25306 15.0106 -2.64678 Vertex 4538 2.04928 15.2172 -2.58383 Vertex 4539 4.52778 14.5661 -0.92967 Vertex 4540 2.25843 16.3147 -0.748812 Vertex 4541 1.70175 15.2332 -2.48778 Vertex 4542 1.67052 15.2172 -2.58402 Vertex 4543 0.956214 15.2331 -2.48836 Vertex 4544 0.963916 15.0106 -2.64677 Vertex 4545 0.817877 15.2171 -2.58436 Vertex 4546 0.867504 15.2005 -2.68026 Vertex 4547 0.963893 15.1055 -2.66352 Vertex 4548 3.72005 14.5978 -1.34402 Vertex 4549 2.24629 13.8123 -2.43548 Vertex 4550 4.45352 14.5634 -0.945027 Vertex 4551 0.903652 15.2484 -2.39269 Vertex 4552 1.63287 13.5861 -2.39559 Vertex 4553 4.53432 13.9805 -0.328044 Vertex 4554 4.43743 13.9777 -0.343608 Vertex 4555 4.34138 13.9742 -0.363562 Vertex 4556 4.24637 13.9699 -0.387864 Vertex 4557 4.15259 13.9649 -0.416461 Vertex 4558 1.51626 14.7655 -2.60356 Vertex 4559 2.59885 14.5962 -2.5737 Vertex 4560 2.88398 14.4896 -2.55491 Vertex 4561 2.89382 14.6991 -2.59185 Vertex 4562 2.88675 14.5933 -2.57319 Vertex 4563 2.59683 14.6936 -2.59089 Vertex 4564 0.290563 15.0041 -2.64562 Vertex 4565 3.13211 14.0245 -1.17254 Vertex 4566 3.07478 14.0106 -1.25101 Vertex 4567 3.02119 13.9964 -1.33201 Vertex 4568 2.97145 13.9817 -1.41536 Vertex 4569 2.92568 13.9666 -1.50088 Vertex 4570 2.88396 13.9511 -1.58839 Vertex 4571 2.8464 13.9354 -1.67771 Vertex 4572 4.37969 14.5601 -0.963852 Vertex 4573 4.30671 14.5562 -0.986069 Vertex 4574 4.23543 14.6532 -1.0293 Vertex 4575 4.30762 14.7593 -1.02158 Vertex 4576 4.38081 14.7633 -0.999354 Vertex 4577 4.45487 14.7666 -0.980531 Vertex 4578 0.216288 14.7787 -2.60589 Vertex 4579 0.211936 14.8853 -2.62469 Vertex 4580 2.94865 14.9745 -2.17658 Vertex 4581 1.372 14.2761 -2.51726 Vertex 4582 1.29191 14.3737 -2.53448 Vertex 4583 1.44584 15.1056 -2.66352 Vertex 4584 1.44584 15.2005 -2.68026 Vertex 4585 4.34912 15.6184 -0.310228 Vertex 4586 4.06026 13.9591 -0.449292 Vertex 4587 3.96957 13.9526 -0.486288 Vertex 4588 3.88071 13.9453 -0.527369 Vertex 4589 3.79386 13.9374 -0.572448 Vertex 4590 3.70923 13.9287 -0.621429 Vertex 4591 3.62699 13.9194 -0.674206 Vertex 4592 3.5473 13.9095 -0.730668 Vertex 4593 3.19306 13.9443 -1.08026 Vertex 4594 3.47035 13.8989 -0.790695 Vertex 4595 3.3963 13.8877 -0.854156 Vertex 4596 3.3253 13.8759 -0.920918 Vertex 4597 3.25751 13.8636 -0.990838 Vertex 4598 3.13211 13.9309 -1.15604 Vertex 4599 3.19306 13.8507 -1.06377 Vertex 4600 1.70691 14.2953 -2.52064 Vertex 4601 3.47122 14.4463 -1.60893 Vertex 4602 2.81306 13.9194 -1.76864 Vertex 4603 2.78402 13.9031 -1.86098 Vertex 4604 2.75934 13.8866 -1.95455 Vertex 4605 2.73908 13.8699 -2.04915 Vertex 4606 2.72328 13.8531 -2.14456 Vertex 4607 2.71197 13.8362 -2.24059 Vertex 4608 2.70517 13.8191 -2.33703 Vertex 4609 2.7029 13.7086 -2.41719 Vertex 4610 1.74979 13.0968 -2.30931 Vertex 4611 2.32265 13.7079 -2.41706 Vertex 4612 2.86918 16.2499 -0.760246 Vertex 4613 1.65646 12.8622 -2.26794 Vertex 4614 4.67743 14.5697 -0.909228 Vertex 4615 4.60248 14.5682 -0.917738 Vertex 4616 1.82304 15.2486 -2.39161 Vertex 4617 3.77754 14.6065 -1.2946 Vertex 4618 3.83752 14.6147 -1.24771 Vertex 4619 2.81856 16.3896 -0.735603 Vertex 4620 2.13123 12.8663 -2.26868 Vertex 4621 2.02417 15.2005 -2.68026 Vertex 4622 1.88928 13.2903 -2.34344 Vertex 4623 2.21537 13.5631 -2.39154 Vertex 4624 2.30905 13.4033 -2.36337 Vertex 4625 2.32177 13.6255 -2.40253 Vertex 4626 1.94016 15.2633 -2.29579 Vertex 4627 1.81466 14.5864 -2.57198 Vertex 4628 2.36053 14.5164 -2.55963 Vertex 4629 2.28342 14.5456 -2.56479 Vertex 4630 4.7265 15.9437 -0.21741 Vertex 4631 1.87783 12.7872 -2.25473 Vertex 4632 4.62527 16.1424 -0.25857 Vertex 4633 3.47943 17.3029 -0.574577 Vertex 4634 1.1021 15.2171 -2.58425 Vertex 4635 1.15667 15.2005 -2.68026 Vertex 4636 1.15667 15.1056 -2.66352 Vertex 4637 1.06029 15.0106 -2.64678 Vertex 4638 0.96397 14.9158 -2.63005 Vertex 4639 3.77611 17.284 -0.577914 Vertex 4640 1.79491 15.2332 -2.4877 Vertex 4641 4.63183 13.8889 -0.300408 Vertex 4642 4.53432 13.8869 -0.311549 Vertex 4643 4.43743 13.8842 -0.327113 Vertex 4644 4.34138 13.8806 -0.347067 Vertex 4645 2.61039 16.305 -0.750532 Vertex 4646 3.56053 17.0433 -0.620341 Vertex 4647 4.52864 14.6677 -0.94742 Vertex 4648 2.50878 14.1779 -2.49994 Vertex 4649 2.41123 14.2734 -2.51679 Vertex 4650 4.24637 13.8764 -0.371368 Vertex 4651 4.15259 13.8713 -0.399966 Vertex 4652 4.06026 13.8655 -0.432797 Vertex 4653 3.96957 13.859 -0.469793 Vertex 4654 3.88071 13.8518 -0.510874 Vertex 4655 3.79386 13.8438 -0.555953 Vertex 4656 3.70923 13.8352 -0.604934 Vertex 4657 3.62699 13.8259 -0.657711 Vertex 4658 3.5473 13.8159 -0.714173 Vertex 4659 3.47035 13.8053 -0.774199 Vertex 4660 3.3963 13.7942 -0.837661 Vertex 4661 3.3253 13.7824 -0.904423 Vertex 4662 3.25751 13.7701 -0.974343 Vertex 4663 0.576925 14.9417 -2.63462 Vertex 4664 1.1426 15.2331 -2.48822 Vertex 4665 3.8995 14.6225 -1.20372 Vertex 4666 3.96342 14.6297 -1.16267 Vertex 4667 4.40279 15.6252 -0.271707 Vertex 4668 2.21695 14.8208 -2.61331 Vertex 4669 2.02397 14.6427 -2.5819 Vertex 4670 2.02417 14.9157 -2.63005 Vertex 4671 2.02417 14.8208 -2.61331 Vertex 4672 2.30051 14.6287 -2.57943 Vertex 4673 1.76431 13.4567 -2.37278 Vertex 4674 1.88595 13.715 -2.41832 Vertex 4675 1.83106 13.9987 -2.46834 Vertex 4676 1.61443 13.7052 -2.41659 Vertex 4677 1.71786 13.8379 -2.44 Vertex 4678 0.400817 14.9184 -2.63052 Vertex 4679 3.51572 14.4571 -1.54771 Vertex 4680 3.56298 14.4675 -1.48869 Vertex 4681 2.21198 12.9684 -2.28669 Vertex 4682 2.05601 13.2249 -2.33191 Vertex 4683 2.11014 13.1318 -2.31549 Vertex 4684 2.47349 16.2549 -0.75936 Vertex 4685 2.38152 16.1785 -0.772841 Vertex 4686 2.08058 13.8741 -2.44638 Vertex 4687 2.23447 13.9766 -2.46446 Vertex 4688 1.33012 15.3365 -1.74094 Vertex 4689 1.34957 15.3464 -1.65159 Vertex 4690 2.60782 13.615 -2.40069 Vertex 4691 3.07478 13.9171 -1.23452 Vertex 4692 3.13211 13.8374 -1.13955 Vertex 4693 3.02119 13.9028 -1.31551 Vertex 4694 2.97145 13.8881 -1.39886 Vertex 4695 3.07478 13.8235 -1.21802 Vertex 4696 3.02119 13.8093 -1.29902 Vertex 4697 2.92568 13.873 -1.48438 Vertex 4698 2.88396 13.8576 -1.5719 Vertex 4699 2.8464 13.8419 -1.66121 Vertex 4700 2.81306 13.8258 -1.75214 Vertex 4701 2.78402 13.8095 -1.84449 Vertex 4702 2.75934 13.793 -1.93806 Vertex 4703 2.97145 13.7946 -1.38237 Vertex 4704 2.92568 13.7795 -1.46789 Vertex 4705 2.88396 13.764 -1.5554 Vertex 4706 2.8464 13.7483 -1.64472 Vertex 4707 2.81306 13.7323 -1.73565 Vertex 4708 2.73908 13.7764 -2.03265 Vertex 4709 2.72328 13.7595 -2.12807 Vertex 4710 2.71197 13.7426 -2.2241 Vertex 4711 2.70517 13.7256 -2.32054 Vertex 4712 2.78402 13.716 -1.82799 Vertex 4713 2.7029 13.615 -2.40069 Vertex 4714 2.75934 13.6995 -1.92156 Vertex 4715 2.73908 13.6828 -2.01616 Vertex 4716 2.72328 13.666 -2.11157 Vertex 4717 2.71197 13.649 -2.2076 Vertex 4718 2.70517 13.632 -2.30404 Vertex 4719 2.7029 13.4279 -2.3677 Vertex 4720 1.67959 14.5818 -2.57116 Vertex 4721 1.57024 14.2288 -2.50892 Vertex 4722 1.63433 14.0971 -2.48571 Vertex 4723 2.05539 14.3552 -2.53121 Vertex 4724 2.12175 14.561 -2.5675 Vertex 4725 2.12056 15.0107 -2.64678 Vertex 4726 2.40973 15.1056 -2.66352 Vertex 4727 2.31334 14.9157 -2.63005 Vertex 4728 2.31334 15.0107 -2.64678 Vertex 4729 2.50537 15.0079 -2.64631 Vertex 4730 2.03554 14.4554 -2.54888 Vertex 4731 0.651222 15.0116 -2.64694 Vertex 4732 1.93463 14.5762 -2.57017 Vertex 4733 2.98377 14.5912 -2.57282 Vertex 4734 2.51282 13.5214 -2.38419 Vertex 4735 2.51273 13.615 -2.40068 Vertex 4736 2.23254 13.6435 -2.40571 Vertex 4737 4.72976 13.7965 -0.277218 Vertex 4738 4.63183 13.7953 -0.283912 Vertex 4739 4.53432 13.7934 -0.295054 Vertex 4740 4.43743 13.7906 -0.310618 Vertex 4741 4.34138 13.7871 -0.330572 Vertex 4742 4.24637 13.7828 -0.354873 Vertex 4743 4.15259 13.7778 -0.38347 Vertex 4744 4.09631 14.6426 -1.08976 Vertex 4745 4.16511 14.6482 -1.05796 Vertex 4746 4.23569 14.7548 -1.04711 Vertex 4747 4.30725 14.6578 -1.0038 Vertex 4748 4.38035 14.6617 -0.981575 Vertex 4749 4.45427 14.665 -0.962761 Vertex 4750 4.52935 14.7693 -0.965199 Vertex 4751 2.80814 16.9681 -0.6336 Vertex 4752 4.67803 14.6713 -0.927081 Vertex 4753 4.60327 14.6698 -0.935537 Vertex 4754 3.61294 14.4775 -1.43195 Vertex 4755 3.66537 14.4871 -1.3777 Vertex 4756 3.72031 14.4962 -1.32588 Vertex 4757 4.02877 14.5349 -1.10692 Vertex 4758 3.96322 14.5282 -1.14488 Vertex 4759 2.89548 14.2773 -2.51748 Vertex 4760 2.79762 14.3738 -2.53448 Vertex 4761 4.06026 13.772 -0.416302 Vertex 4762 3.96957 13.7655 -0.453298 Vertex 4763 3.88071 13.7582 -0.494379 Vertex 4764 3.79386 13.7503 -0.539458 Vertex 4765 3.70923 13.7416 -0.588438 Vertex 4766 3.62699 13.7323 -0.641216 Vertex 4767 3.5473 13.7224 -0.697678 Vertex 4768 2.49067 14.6908 -2.59038 Vertex 4769 2.44292 14.4734 -2.55205 Vertex 4770 2.59944 14.4831 -2.55375 Vertex 4771 2.6053 14.37 -2.53382 Vertex 4772 3.19306 13.7572 -1.04727 Vertex 4773 1.19684 15.2171 -2.58421 Vertex 4774 2.02417 15.1056 -2.66352 Vertex 4775 1.73501 15.2005 -2.68026 Vertex 4776 1.87316 14.3667 -2.53324 Vertex 4777 3.13211 13.7438 -1.12305 Vertex 4778 3.07478 13.73 -1.20153 Vertex 4779 3.02119 13.7157 -1.28252 Vertex 4780 2.97145 13.701 -1.36587 Vertex 4781 2.92568 13.6859 -1.45139 Vertex 4782 2.88396 13.6705 -1.53891 Vertex 4783 2.60786 13.5215 -2.3842 Vertex 4784 1.44551 14.9261 -2.63187 Vertex 4785 1.25307 14.9157 -2.63005 Vertex 4786 2.23079 16.2419 -0.761654 Vertex 4787 2.10628 16.1749 -0.77347 Vertex 4788 2.93193 16.1998 -0.769086 Vertex 4789 2.76533 16.3004 -0.751333 Vertex 4790 2.56774 16.1886 -0.771051 Vertex 4791 2.50303 16.4017 -0.73347 Vertex 4792 2.20584 14.1766 -2.49972 Vertex 4793 2.12414 14.0633 -2.47973 Vertex 4794 2.31394 14.2732 -2.51675 Vertex 4795 2.12059 14.191 -2.50227 Vertex 4796 1.48486 13.8107 -2.4352 Vertex 4797 1.95464 15.2172 -2.58389 Vertex 4798 1.92779 15.2005 -2.68026 Vertex 4799 2.11479 13.6064 -2.39917 Vertex 4800 3.47035 13.7118 -0.757704 Vertex 4801 3.3963 13.7006 -0.821166 Vertex 4802 3.3253 13.6888 -0.887928 Vertex 4803 3.25751 13.6765 -0.957847 Vertex 4804 3.19306 13.6636 -1.03078 Vertex 4805 1.51612 13.1445 -2.31773 Vertex 4806 0.386323 15.0071 -2.64616 Vertex 4807 1.78939 14.4936 -2.55562 Vertex 4808 1.62557 14.4274 -2.54394 Vertex 4809 2.1996 13.2613 -2.33832 Vertex 4810 0.911539 14.5191 -2.5601 Vertex 4811 3.67207 17.4501 -0.548608 Vertex 4812 3.76633 17.4847 -0.542516 Vertex 4813 3.99797 17.5523 -0.530597 Vertex 4814 3.90928 17.5321 -0.534152 Vertex 4815 2.31658 12.9662 -2.28629 Vertex 4816 3.19805 16.6628 -0.687444 Vertex 4817 3.42451 17.3097 -0.573365 Vertex 4818 3.41937 17.0257 -0.623458 Vertex 4819 3.48351 17.1014 -0.610103 Vertex 4820 3.04598 17.0153 -0.62529 Vertex 4821 3.14216 16.9566 -0.635628 Vertex 4822 3.34203 17.0697 -0.615695 Vertex 4823 3.18375 17.0381 -0.62127 Vertex 4824 2.8464 13.6547 -1.62822 Vertex 4825 1.10329 14.3879 -2.53697 Vertex 4826 2.41697 13.8015 -2.43358 Vertex 4827 2.32182 13.8007 -2.43344 Vertex 4828 4.16471 14.5466 -1.04023 Vertex 4829 4.09605 14.541 -1.07198 Vertex 4830 4.02913 14.6364 -1.12463 Vertex 4831 2.22108 12.7801 -2.25348 Vertex 4832 4.72926 14.2033 -3.3934e-014 Vertex 4833 2.34229 14.4512 -2.54813 Vertex 4834 1.52966 13.3622 -2.35611 Vertex 4835 1.53133 13.4742 -2.37587 Vertex 4836 2.70517 13.9127 -2.35353 Vertex 4837 2.71197 13.9297 -2.25709 Vertex 4838 2.72328 13.9466 -2.16106 Vertex 4839 2.73908 13.9635 -2.06564 Vertex 4840 2.75934 13.9801 -1.97105 Vertex 4841 2.78402 13.9966 -1.87748 Vertex 4842 2.81306 14.0129 -1.78513 Vertex 4843 2.8464 14.0289 -1.6942 Vertex 4844 2.88396 14.0447 -1.60489 Vertex 4845 2.92568 14.0601 -1.51737 Vertex 4846 2.97145 14.0752 -1.43185 Vertex 4847 3.02119 14.0899 -1.34851 Vertex 4848 3.07478 14.1042 -1.26751 Vertex 4849 3.13211 14.118 -1.18904 Vertex 4850 3.19306 14.1314 -1.11325 Vertex 4851 3.25751 14.1442 -1.04032 Vertex 4852 3.3253 14.1566 -0.970404 Vertex 4853 3.3963 14.1684 -0.903642 Vertex 4854 3.47035 14.1795 -0.840181 Vertex 4855 3.5473 14.1901 -0.780155 Vertex 4856 3.62699 14.2001 -0.723692 Vertex 4857 3.70923 14.2094 -0.670915 Vertex 4858 3.79386 14.218 -0.621934 Vertex 4859 3.88071 14.226 -0.576855 Vertex 4860 3.96957 14.2332 -0.535774 Vertex 4861 4.06026 14.2397 -0.498778 Vertex 4862 4.15259 14.2455 -0.465947 Vertex 4863 4.24637 14.2506 -0.43735 Vertex 4864 2.12809 12.9663 -2.28631 Vertex 4865 2.0495 12.9577 -2.2848 Vertex 4866 1.86701 12.9633 -2.28579 Vertex 4867 1.96853 13.0617 -2.30314 Vertex 4868 2.73814 16.9119 -0.643522 Vertex 4869 3.89928 14.5209 -1.18597 Vertex 4870 2.60566 14.274 -2.51689 Vertex 4871 2.79915 14.2754 -2.51714 Vertex 4872 2.41419 13.9875 -2.46638 Vertex 4873 2.22115 13.0725 -2.30504 Vertex 4874 0.196758 14.9983 -2.6446 Vertex 4875 0.863022 15.2331 -2.48844 Vertex 4876 1.00735 15.2171 -2.58428 Vertex 4877 2.51257 13.7085 -2.41717 Vertex 4878 2.99152 14.2807 -2.51807 Vertex 4879 2.9832 14.387 -2.53681 Vertex 4880 2.31566 13.5387 -2.38724 Vertex 4881 2.19531 13.4108 -2.36468 Vertex 4882 0.851972 15.0128 -2.64717 Vertex 4883 0.742555 15.0131 -2.64721 Vertex 4884 2.31108 14.7259 -2.59658 Vertex 4885 2.31727 13.9856 -2.46603 Vertex 4886 4.34138 14.2549 -0.413048 Vertex 4887 4.43743 14.1648 -0.376599 Vertex 4888 4.53432 14.1676 -0.361035 Vertex 4889 4.63183 14.1695 -0.349894 Vertex 4890 4.72976 14.0772 -0.326704 Vertex 4891 3.13211 13.6503 -1.10656 Vertex 4892 3.07478 13.6364 -1.18503 Vertex 4893 3.02119 13.6222 -1.26603 Vertex 4894 2.79207 14.4783 -2.55292 Vertex 4895 2.17812 13.6604 -2.4087 Vertex 4896 3.3894 16.7836 -0.666139 Vertex 4897 0.217731 14.6735 -2.58733 Vertex 4898 1.4476 14.8571 -2.61971 Vertex 4899 1.47057 12.8424 -2.26446 Vertex 4900 2.59039 16.7808 -0.666624 Vertex 4901 2.85504 16.8839 -0.648455 Vertex 4902 2.89697 16.7465 -0.672684 Vertex 4903 1.26246 14.8306 -2.61503 Vertex 4904 1.63862 14.8208 -2.61331 Vertex 4905 1.83139 14.7264 -2.59666 Vertex 4906 4.62525 16.442 -0.311402 Vertex 4907 4.5242 16.2405 -0.286087 Vertex 4908 2.51226 13.8019 -2.43366 Vertex 4909 2.5117 13.8954 -2.45013 Vertex 4910 2.41594 13.8946 -2.44999 Vertex 4911 2.82309 16.1733 -0.773759 Vertex 4912 1.54223 15.1056 -2.66352 Vertex 4913 1.34945 15.0106 -2.64678 Vertex 4914 1.44584 15.0107 -2.64678 Vertex 4915 2.78094 16.557 -0.706093 Vertex 4916 2.72355 16.455 -0.724087 Vertex 4917 2.64566 16.5203 -0.712558 Vertex 4918 3.05726 16.3833 -0.736716 Vertex 4919 1.18745 14.4795 -2.55312 Vertex 4920 2.23533 13.7141 -2.41817 Vertex 4921 2.81306 13.6387 -1.71915 Vertex 4922 2.78402 13.6224 -1.8115 Vertex 4923 2.75934 13.6059 -1.90507 Vertex 4924 2.73908 13.5893 -1.99966 Vertex 4925 2.72328 13.5724 -2.09507 Vertex 4926 2.71197 13.5555 -2.1911 Vertex 4927 2.70517 13.5385 -2.28755 Vertex 4928 2.7029 13.5215 -2.3842 Vertex 4929 1.54418 12.82 -2.26052 Vertex 4930 1.63333 12.7981 -2.25665 Vertex 4931 1.7282 12.9387 -2.28144 Vertex 4932 1.62541 13.1235 -2.31403 Vertex 4933 1.75944 13.3187 -2.34844 Vertex 4934 4.8279 14.0775 -0.324471 Vertex 4935 2.79927 14.5977 -2.57398 Vertex 4936 2.49408 14.7968 -2.60908 Vertex 4937 2.59694 14.7947 -2.6087 Vertex 4938 1.25306 15.2005 -2.68026 Vertex 4939 2.18978 14.4822 -2.55361 Vertex 4940 2.27339 14.4753 -2.55238 Vertex 4941 2.97145 13.6075 -1.34938 Vertex 4942 2.92568 13.5924 -1.4349 Vertex 4943 2.88396 13.577 -1.52241 Vertex 4944 1.92779 15.0107 -2.64678 Vertex 4945 1.8314 15.1056 -2.66352 Vertex 4946 1.91492 15.2486 -2.39149 Vertex 4947 1.88805 15.2332 -2.48761 Vertex 4948 1.76525 15.2172 -2.58398 Vertex 4949 1.8314 15.2005 -2.68026 Vertex 4950 1.13526 14.6587 -2.58473 Vertex 4951 1.38451 14.7701 -2.60436 Vertex 4952 1.55796 14.5353 -2.56297 Vertex 4953 1.48372 14.6705 -2.58681 Vertex 4954 1.92779 14.9157 -2.63005 Vertex 4955 1.5342 14.8377 -2.61628 Vertex 4956 1.8314 15.0107 -2.64678 Vertex 4957 1.63862 14.9157 -2.63005 Vertex 4958 1.54223 15.0107 -2.64678 Vertex 4959 1.92778 14.7262 -2.59662 Vertex 4960 2.12056 14.726 -2.59659 Vertex 4961 2.12056 15.1056 -2.66352 Vertex 4962 2.21695 15.0107 -2.64678 Vertex 4963 2.12056 14.9157 -2.63005 Vertex 4964 2.12056 14.8208 -2.61331 Vertex 4965 2.02417 14.726 -2.5966 Vertex 4966 2.25796 13.893 -2.44972 Vertex 4967 2.27997 16.4617 -0.722891 Vertex 4968 2.50939 13.4174 -2.36584 Vertex 4969 0.963893 15.2005 -2.68026 Vertex 4970 1.68216 13.9685 -2.46302 Vertex 4971 2.36522 16.3595 -0.740922 Vertex 4972 1.63065 13.2344 -2.33359 Vertex 4973 1.50066 13.0283 -2.29724 Vertex 4974 1.48563 12.9276 -2.27948 Vertex 4975 2.51072 13.9887 -2.46659 Vertex 4976 2.50934 14.0822 -2.48307 Vertex 4977 3.62346 17.1271 -0.605571 Vertex 4978 1.89872 13.4367 -2.36926 Vertex 4979 2.48301 14.6056 -2.57536 Vertex 4980 2.39896 14.374 -2.53452 Vertex 4981 0.705256 14.6168 -2.57733 Vertex 4982 3.21862 17.1374 -0.603747 Vertex 4983 3.33156 17.2118 -0.590642 Vertex 4984 3.18259 17.2192 -0.589329 Vertex 4985 2.09833 16.269 -0.756874 Vertex 4986 3.77765 14.5049 -1.2766 Vertex 4987 2.8464 13.5612 -1.61172 Vertex 4988 2.81306 13.5452 -1.70265 Vertex 4989 2.77691 16.7163 -0.678012 Vertex 4990 2.48509 16.1787 -0.772795 Vertex 4991 2.60109 16.4333 -0.72791 Vertex 4992 2.54038 16.2691 -0.756849 Vertex 4993 0.969952 14.7884 -2.6076 Vertex 4994 1.92857 14.6503 -2.58324 Vertex 4995 2.02822 14.5706 -2.56918 Vertex 4996 3.33726 16.695 -0.681759 Vertex 4997 3.23958 16.5157 -0.713381 Vertex 4998 3.14895 16.5699 -0.703817 Vertex 4999 1.52521 13.2575 -2.33765 Vertex 5000 1.63937 13.47 -2.37512 Vertex 5001 1.76106 13.5899 -2.39627 Vertex 5002 1.87093 13.857 -2.44336 Vertex 5003 1.46784 15.3557 -1.56285 Vertex 5004 4.72651 16.3432 -0.28785 Vertex 5005 1.97065 12.7841 -2.25418 Vertex 5006 2.05916 12.7801 -2.25348 Vertex 5007 2.14518 12.78 -2.25346 Vertex 5008 3.71292 17.3628 -0.564006 Vertex 5009 1.70911 12.8286 -2.26202 Vertex 5010 1.44751 13.9198 -2.45444 Vertex 5011 1.39922 14.0251 -2.473 Vertex 5012 2.32974 14.3797 -2.53553 Vertex 5013 2.88225 16.1541 -0.777131 Vertex 5014 2.72248 16.7841 -0.666055 Vertex 5015 1.04954 14.7073 -2.5933 Vertex 5016 1.07681 14.8305 -2.61501 Vertex 5017 1.16294 14.8316 -2.6152 Vertex 5018 2.41204 14.0812 -2.4829 Vertex 5019 0.807825 14.5711 -2.56927 Vertex 5020 0.701447 14.8447 -2.61753 Vertex 5021 0.836596 14.9221 -2.63117 Vertex 5022 2.21695 14.7259 -2.59658 Vertex 5023 2.47077 14.3739 -2.53451 Vertex 5024 2.21127 13.1613 -2.3207 Vertex 5025 0.600421 14.6612 -2.58516 Vertex 5026 0.660259 14.7551 -2.60172 Vertex 5027 0.48317 14.7124 -2.59419 Vertex 5028 0.317264 14.7916 -2.60816 Vertex 5029 1.44456 14.1704 -2.49862 Vertex 5030 1.27151 14.2203 -2.50742 Vertex 5031 1.19359 14.3072 -2.52275 Vertex 5032 3.14967 16.334 -0.745416 Vertex 5033 2.79735 14.6987 -2.59177 Vertex 5034 3.57405 17.4136 -0.55505 Vertex 5035 2.98671 14.6932 -2.59081 Vertex 5036 2.78402 13.5289 -1.795 Vertex 5037 1.58585 13.8239 -2.43752 Vertex 5038 1.51103 13.6992 -2.41554 Vertex 5039 1.52579 13.586 -2.39558 Vertex 5040 2.20512 16.3828 -0.736814 Vertex 5041 3.50091 16.9579 -0.635403 Vertex 5042 2.39164 14.4323 -2.54481 Vertex 5043 2.66917 16.8537 -0.653782 Vertex 5044 2.79022 16.8451 -0.65529 Vertex 5045 1.00995 14.458 -2.54933 Vertex 5046 0.980245 14.6112 -2.57635 Vertex 5047 3.69046 17.2083 -0.591261 Vertex 5048 3.84746 17.3613 -0.564269 Vertex 5049 3.80007 17.4224 -0.5535 Vertex 5050 2.21032 14.0782 -2.48236 Vertex 5051 2.31449 14.0799 -2.48266 Vertex 5052 2.35008 16.536 -0.709792 Vertex 5053 2.47253 16.6683 -0.686465 Vertex 5054 1.74166 13.709 -2.41726 Vertex 5055 2.213 16.2 -0.769045 Vertex 5056 2.37439 16.2484 -0.760517 Vertex 5057 4.8279 16.9804 -0.247911 Vertex 5058 4.8279 17.1601 -0.0984999 Vertex 5059 4.63078 16.8644 0 Vertex 5060 4.72934 17.4558 0 Vertex 5061 4.63078 17.2586 0 Vertex 5062 4.63078 17.1601 0 Vertex 5063 4.8279 17.0615 3.3934e-014 Vertex 5064 1.36722 14.8416 -2.61698 Vertex 5065 2.6903 16.212 -0.766921 Vertex 5066 2.67225 16.3688 -0.739281 Vertex 5067 2.55395 16.3603 -0.740777 Vertex 5068 2.75934 13.5124 -1.88857 Vertex 5069 2.91648 16.3285 -0.746384 Vertex 5070 2.99705 16.2927 -0.752705 Vertex 5071 3.01059 16.5338 -0.710177 Vertex 5072 3.05885 16.6298 -0.693265 Vertex 5073 2.96991 16.6923 -0.682232 Vertex 5074 2.20573 13.8907 -2.44931 Vertex 5075 2.17663 13.8297 -2.43855 Vertex 5076 1.78329 12.7817 -2.25376 Vertex 5077 3.83752 14.5132 -1.2298 Vertex 5078 2.41261 13.5228 -2.38444 Vertex 5079 1.95673 12.9557 -2.28444 Vertex 5080 2.60592 14.1783 -2.50002 Vertex 5081 2.41149 14.1775 -2.49987 Vertex 5082 2.4912 14.2744 -2.51696 Vertex 5083 0.578571 15.0097 -2.64661 Vertex 5084 1.9794 14.2272 -2.50864 Vertex 5085 1.70254 12.7776 -2.25303 Vertex 5086 1.54261 13.3677 -3.3934e-014 Vertex 5087 1.54158 13.2618 -3.3934e-014 Vertex 5088 1.43424 13.1558 -3.3934e-014 Vertex 5089 0.63813 14.9374 -2.63387 Vertex 5090 2.15544 16.33 -0.746121 Vertex 5091 2.15858 16.2327 -0.76327 Vertex 5092 2.94749 16.9077 -0.644264 Vertex 5093 2.93209 16.8142 -0.660747 Vertex 5094 2.0312 14.5078 -2.55813 Vertex 5095 2.11118 14.4955 -2.55595 Vertex 5096 2.21692 14.6317 -2.57996 Vertex 5097 2.20825 14.5591 -2.56717 Vertex 5098 2.04844 16.2092 -0.767419 Vertex 5099 2.59173 16.5634 -0.704963 Vertex 5100 3.84871 17.4611 -0.546678 Vertex 5101 4.07401 17.5085 -0.538316 Vertex 5102 3.83547 17.5141 -0.537324 Vertex 5103 4.01382 17.4825 -0.542912 Vertex 5104 2.12485 13.0598 -2.3028 Vertex 5105 4.8279 14.4004 0 Vertex 5106 2.39474 14.7132 -2.59433 Vertex 5107 2.63814 16.7035 -0.680264 Vertex 5108 2.68432 16.6188 -0.695196 Vertex 5109 3.34346 17.3171 -0.572066 Vertex 5110 0.495535 15.0104 -2.64674 Vertex 5111 3.44399 16.8713 -0.650678 Vertex 5112 3.30316 16.8465 -0.655042 Vertex 5113 1.87211 12.8753 -2.27027 Vertex 5114 2.38819 14.6242 -2.57864 Vertex 5115 2.24841 14.3896 -2.53727 Vertex 5116 2.16914 14.4017 -2.53941 Vertex 5117 2.14442 14.3126 -2.5237 Vertex 5118 2.73908 13.4957 -1.98317 Vertex 5119 2.28545 16.1875 -0.771248 Vertex 5120 2.27901 16.2487 -0.760463 Vertex 5121 1.25306 15.1056 -2.66352 Vertex 5122 1.15668 15.0106 -2.64678 Vertex 5123 3.16266 16.8191 -0.659884 Vertex 5124 3.21905 16.9114 -0.643601 Vertex 5125 3.27895 16.9903 -0.629698 Vertex 5126 1.06032 14.9158 -2.63005 Vertex 5127 3.45166 17.2263 -0.588079 Vertex 5128 3.40852 17.1494 -0.601641 Vertex 5129 2.97014 17.0854 -0.612929 Vertex 5130 2.06492 16.1375 -0.780059 Vertex 5131 3.10143 17.1859 -0.595201 Vertex 5132 3.91268 17.443 -0.549868 Vertex 5133 1.16335 14.7536 -2.60146 Vertex 5134 1.44676 14.8029 -2.61015 Vertex 5135 1.73501 15.1056 -2.66352 Vertex 5136 1.73501 15.0107 -2.64678 Vertex 5137 1.73501 14.9157 -2.63005 Vertex 5138 1.73501 14.8208 -2.61331 Vertex 5139 0.577217 14.8928 -2.626 Vertex 5140 3.46878 17.3774 -0.561436 Vertex 5141 3.40676 17.3551 -0.565363 Vertex 5142 2.9821 14.4894 -2.55487 Vertex 5143 1.96438 12.8639 -2.26825 Vertex 5144 0.530928 14.866 -2.62127 Vertex 5145 2.58697 16.6584 -0.688217 Vertex 5146 2.72328 13.4789 -2.07858 Vertex 5147 2.71197 13.462 -2.17461 Vertex 5148 2.70517 13.4449 -2.27105 Vertex 5149 4.8279 14.499 -0.098559 Vertex 5150 4.8279 14.499 0 Vertex 5151 4.72932 14.4004 -3.3934e-014 Vertex 5152 2.2004 16.2789 -0.755136 Vertex 5153 4.72934 17.6529 0 Vertex 5154 2.47143 16.3326 -0.74566 Vertex 5155 2.5209 16.3211 -0.747685 Vertex 5156 1.73542 14.7433 -2.59964 Vertex 5157 1.7367 14.6759 -2.58776 Vertex 5158 2.05031 12.8553 -2.26674 Vertex 5159 2.8455 16.658 -0.688289 Vertex 5160 1.98646 14.4219 -2.54297 Vertex 5161 1.92779 15.1056 -2.66352 Vertex 5162 2.02417 15.0107 -2.64678 Vertex 5163 1.8314 14.9157 -2.63005 Vertex 5164 1.8314 14.8208 -2.61331 Vertex 5165 1.63697 14.7452 -2.59998 Vertex 5166 2.53908 16.6096 -0.696814 Vertex 5167 0.624349 14.8718 -2.6223 Vertex 5168 2.01509 16.1533 -0.777272 Vertex 5169 3.13189 17.1371 -0.603802 Vertex 5170 1.73968 14.6199 -2.57788 Vertex 5171 4.72933 14.5976 -3.3934e-014 Vertex 5172 1.4904 15.3644 -1.47466 Vertex 5173 2.31334 14.8208 -2.61331 Vertex 5174 2.8395 16.7917 -0.664717 Vertex 5175 2.09573 14.4274 -2.54394 Vertex 5176 4.8279 16.5687 3.3934e-014 Vertex 5177 4.8279 16.4702 -0.0985587 Vertex 5178 2.41057 16.603 -0.697978 Vertex 5179 2.21695 14.9157 -2.63005 Vertex 5180 4.72934 16.5687 0 Vertex 5181 4.8279 16.4702 3.3934e-014 Vertex 5182 4.8279 16.5687 -0.0985575 Vertex 5183 2.98023e-008 14.7277 -2.10854 Vertex 5184 0 15.0948 -2.05189 Vertex 5185 0 15.1081 -1.95266 Vertex 5186 0 15.1333 -1.75384 Vertex 5187 5.21541e-008 14.8649 -0.576499 Vertex 5188 5.21541e-008 14.8609 -0.67259 Vertex 5189 5.21541e-008 14.8562 -0.768665 Vertex 5190 -4.36436e-015 15.2082 -0.971515 Vertex 5191 2.98023e-008 14.83 -2.20979 Vertex 5192 0 15.1696 -1.45541 Vertex 5193 0 15.1946 -1.16547 Vertex 5194 4.8279 14.6075 -0.614095 Vertex 5195 5.21541e-008 14.851 -0.864721 Vertex 5196 5.21541e-008 14.8451 -0.96075 Vertex 5197 5.21541e-008 14.8386 -1.05674 Vertex 5198 2.98023e-008 14.7642 -1.82272 Vertex 5199 4.63078 15.0904 0 Vertex 5200 2.98023e-008 14.7756 -1.72723 Vertex 5201 4.72934 15.0904 0 Vertex 5202 4.63078 16.0759 0 Vertex 5203 4.8279 16.3716 3.3934e-014 Vertex 5204 4.72934 16.2731 0 Vertex 5205 4.53222 16.0759 0 Vertex 5206 4.72934 15.9774 0 Vertex 5207 4.8279 15.389 -0.182386 Vertex 5208 4.8279 15.2747 -0.189218 Vertex 5209 4.8279 15.2875 0 Vertex 5210 4.43366 15.2875 -3.3934e-014 Vertex 5211 4.33507 14.7947 0 Vertex 5212 4.72934 15.1889 0 Vertex 5213 4.8279 15.0541 -0.591215 Vertex 5214 4.8279 14.8254 -0.653728 Vertex 5215 4.8279 15.0029 -0.454104 Vertex 5216 4.8279 15.0561 -0.280168 Vertex 5217 4.8279 14.8932 0 Vertex 5218 4.72934 14.7947 0 Vertex 5219 4.53222 15.8788 -3.3934e-014 Vertex 5220 4.72934 15.5831 0 Vertex 5221 4.72934 17.0615 0 Vertex 5222 4.72934 15.7803 0 Vertex 5223 4.72934 16.6673 0 Vertex 5224 4.63078 16.7659 0 Vertex 5225 4.72934 16.4702 0 Vertex 5226 4.72934 16.8644 0 Vertex 5227 4.72934 14.8932 0 Vertex 5228 4.63078 15.1889 0 Vertex 5229 4.63078 15.4846 0 Vertex 5230 4.72934 15.386 0 Vertex 5231 4.8279 15.9774 0 Vertex 5232 4.33499 14.6962 0 Vertex 5233 4.8279 14.5609 -0.303515 Vertex 5234 4.8279 14.6571 -0.303044 Vertex 5235 4.8279 14.891 -0.291157 Vertex 5236 4.8279 14.9918 -0.197576 Vertex 5237 4.8279 14.7947 0 Vertex 5238 4.8279 14.8932 -0.098559 Vertex 5239 4.62879 13.9079 -3.3934e-014 Vertex 5240 4.52579 13.9092 -3.3934e-014 Vertex 5241 4.42021 13.8084 -3.3934e-014 Vertex 5242 4.52234 13.8104 -3.3934e-014 Vertex 5243 4.8279 14.6234 -0.518572 Vertex 5244 2.16668 12.9931 -3.3934e-014 Vertex 5245 2.06643 13.1696 -3.3934e-014 Vertex 5246 4.72934 16.1745 0 Vertex 5247 4.63078 14.8932 0 Vertex 5248 4.63078 16.4702 0 Vertex 5249 4.63078 15.8788 0 Vertex 5250 4.63078 16.3716 0 Vertex 5251 4.63077 14.7947 0 Vertex 5252 4.8279 16.1745 0 Vertex 5253 4.63078 16.2731 0 Vertex 5254 4.8279 15.0356 -0.686629 Vertex 5255 2.05659 15.9062 -3.3934e-014 Vertex 5256 2.25137 16.0056 -3.3934e-014 Vertex 5257 4.8279 14.483 -0.19731 Vertex 5258 1.01363 15.0725 0 Vertex 5259 4.8279 16.6673 3.3934e-014 Vertex 5260 4.8279 15.1596 -0.193263 Vertex 5261 1.62615 13.0601 -3.3934e-014 Vertex 5262 4.8279 15.1458 -0.288876 Vertex 5263 4.63075 14.5976 -3.3934e-014 Vertex 5264 4.63073 14.499 -3.3934e-014 Vertex 5265 4.8279 15.386 0 Vertex 5266 4.8279 14.5808 -0.203504 Vertex 5267 4.8279 14.5976 0 Vertex 5268 2.98023e-008 14.8108 -2.40653 Vertex 5269 2.24259 12.993 -3.3934e-014 Vertex 5270 1.53661 13.0638 -3.3934e-014 Vertex 5271 -4.36436e-015 15.2263 -0.199046 Vertex 5272 4.33725 16.7755 0 Vertex 5273 3.88207 16.8809 0 Vertex 5274 3.57767 17.0151 0 Vertex 5275 3.68817 16.7147 0 Vertex 5276 3.45161 17.1584 0 Vertex 5277 3.47561 17.0721 0 Vertex 5278 4.63069 14.4004 -3.3934e-014 Vertex 5279 3.32792 16.3699 0 Vertex 5280 3.23064 15.3257 -3.3934e-014 Vertex 5281 2.16853 16.3337 -3.3934e-014 Vertex 5282 4.23656 15.2875 -3.3934e-014 Vertex 5283 2.35909 16.412 -3.3934e-014 Vertex 5284 2.90199 16.7015 0 Vertex 5285 3.45117 15.6823 0 Vertex 5286 2.42838 15.9309 -3.3934e-014 Vertex 5287 3.28941 15.8541 0 Vertex 5288 3.106 15.3712 -3.3934e-014 Vertex 5289 2.3664 16.1431 -3.3934e-014 Vertex 5290 3.59042 16.2641 0 Vertex 5291 3.09138 15.9953 -3.3934e-014 Vertex 5292 3.08443 16.516 0 Vertex 5293 3.21077 16.1012 -3.3934e-014 Vertex 5294 2.71019 16.531 -3.3934e-014 Vertex 5295 2.90388 15.9864 -3.3934e-014 Vertex 5296 3.12537 16.0376 -3.3934e-014 Vertex 5297 3.04694 15.9327 -3.3934e-014 Vertex 5298 3.14106 17.1954 0 Vertex 5299 3.29609 17.076 0 Vertex 5300 4.8279 14.4004 -0.0985591 Vertex 5301 2.4987 13.612 -3.3934e-014 Vertex 5302 4.8279 17.5547 -0.194284 Vertex 5303 3.94085 14.9047 -3.3934e-014 Vertex 5304 4.8279 17.5596 -0.286786 Vertex 5305 3.89436 14.5089 -3.3934e-014 Vertex 5306 4.3351 16.1745 -3.3934e-014 Vertex 5307 4.8279 14.0081 -0.155768 Vertex 5308 4.8279 14.1023 -0.165874 Vertex 5309 1.06964 14.8927 0 Vertex 5310 4.8279 14.1992 -0.167056 Vertex 5311 4.13803 15.1889 -3.3934e-014 Vertex 5312 4.8279 14.2954 -0.175555 Vertex 5313 3.78347 14.978 -3.3934e-014 Vertex 5314 1.8772 14.8156 0 Vertex 5315 0.672528 14.8398 0 Vertex 5316 1.64018 15.0012 0 Vertex 5317 0.783345 14.7949 0 Vertex 5318 1.46228 14.0479 -3.3934e-014 Vertex 5319 1.39226 15.158 -3.3934e-014 Vertex 5320 3.77102 16.0602 -3.3934e-014 Vertex 5321 4.43366 16.2731 0 Vertex 5322 -4.36436e-015 15.1024 -0.300363 Vertex 5323 4.43366 15.9774 -3.3934e-014 Vertex 5324 4.63078 16.963 0 Vertex 5325 4.53222 15.6817 -3.3934e-014 Vertex 5326 4.3351 17.0615 0 Vertex 5327 3.9038 13.8862 -3.3934e-014 Vertex 5328 3.90854 17.5286 0 Vertex 5329 4.13801 15.2875 -3.3934e-014 Vertex 5330 3.85651 17.3245 0 Vertex 5331 4.23655 15.4846 -3.3934e-014 Vertex 5332 4.43366 17.2586 0 Vertex 5333 3.81966 17.5014 0 Vertex 5334 4.43366 15.7803 -3.3934e-014 Vertex 5335 4.138 15.386 -3.3934e-014 Vertex 5336 4.03264 17.0197 0 Vertex 5337 4.23655 15.8788 -3.3934e-014 Vertex 5338 3.94803 17.2507 0 Vertex 5339 4.18558 17.3133 0 Vertex 5340 3.84235 15.4845 -3.3934e-014 Vertex 5341 4.18118 17.2174 0 Vertex 5342 4.3351 15.6817 -3.3934e-014 Vertex 5343 4.02657 17.2741 0 Vertex 5344 1.47213 14.5183 0 Vertex 5345 2.40302 14.6589 -3.3934e-014 Vertex 5346 3.79359 13.982 -3.3934e-014 Vertex 5347 2.08537 14.6291 0 Vertex 5348 3.78591 14.0857 -3.3934e-014 Vertex 5349 1.08713 15.4695 0 Vertex 5350 3.44313 14.381 -3.3934e-014 Vertex 5351 2.06114 14.4386 -3.3934e-014 Vertex 5352 1.53551 12.9802 -3.3934e-014 Vertex 5353 4.63078 15.5831 -3.3934e-014 Vertex 5354 3.05697 14.0072 -3.3934e-014 Vertex 5355 4.43366 15.386 -3.3934e-014 Vertex 5356 2.84244 14.4847 -3.3934e-014 Vertex 5357 4.63078 15.2875 0 Vertex 5358 4.8279 15.2757 -0.318863 Vertex 5359 2.98023e-008 14.6973 -2.39071 Vertex 5360 1.76695 13.3485 -3.3934e-014 Vertex 5361 2.98023e-008 14.7052 -2.29698 Vertex 5362 4.8279 16.9044 -0.190062 Vertex 5363 1.79551 13.0581 -3.3934e-014 Vertex 5364 2.61624 16.8109 0 Vertex 5365 2.22252 13.2756 -3.3934e-014 Vertex 5366 1.69427 12.9727 -3.3934e-014 Vertex 5367 4.8279 16.926 -0.242884 Vertex 5368 4.00076 14.4091 -3.3934e-014 Vertex 5369 1.54097 13.1559 -3.3934e-014 Vertex 5370 4.23201 14.4028 -3.3934e-014 Vertex 5371 2.67809 13.7392 -3.3934e-014 Vertex 5372 4.22641 14.3068 -3.3934e-014 Vertex 5373 3.29902 15.5085 0 Vertex 5374 2.49413 13.7087 -3.3934e-014 Vertex 5375 4.23609 16.6811 0 Vertex 5376 4.8279 17.0725 -0.18702 Vertex 5377 4.13917 16.8111 0 Vertex 5378 2.57847 13.9128 -3.3934e-014 Vertex 5379 4.43366 17.0615 0 Vertex 5380 2.69405 13.6455 -3.3934e-014 Vertex 5381 3.56681 15.0259 -3.3934e-014 Vertex 5382 3.30429 17.286 0 Vertex 5383 1.75377 15.7573 -3.3934e-014 Vertex 5384 3.37407 15.6747 -3.3934e-014 Vertex 5385 3.53494 15.4007 0 Vertex 5386 3.02891 15.129 -3.3934e-014 Vertex 5387 3.33741 15.4511 0 Vertex 5388 2.77296 14.5368 -3.3934e-014 Vertex 5389 2.10312 15.2277 0 Vertex 5390 3.26272 15.4451 0 Vertex 5391 2.54132 15.2108 -3.3934e-014 Vertex 5392 1.93979 15.2194 0 Vertex 5393 3.3008 15.4699 0 Vertex 5394 2.02292 14.9501 -3.3934e-014 Vertex 5395 2.04957 15.105 0 Vertex 5396 2.66491 14.8242 -3.3934e-014 Vertex 5397 2.11553 14.9744 -3.3934e-014 Vertex 5398 2.92983 15.2118 -3.3934e-014 Vertex 5399 1.81366 15.0327 0 Vertex 5400 2.2897 14.8523 -3.3934e-014 Vertex 5401 1.6881 15.3003 -3.3934e-014 Vertex 5402 2.8744 15.3848 -3.3934e-014 Vertex 5403 2.58717 14.8936 -3.3934e-014 Vertex 5404 2.22427 15.4712 -3.3934e-014 Vertex 5405 1.86487 15.1269 0 Vertex 5406 2.44024 14.881 -3.3934e-014 Vertex 5407 1.97728 15.6681 -3.3934e-014 Vertex 5408 4.53222 15.5831 -3.3934e-014 Vertex 5409 1.78122 15.1939 0 Vertex 5410 1.90367 15.7476 -3.3934e-014 Vertex 5411 2.76782 15.5441 -3.3934e-014 Vertex 5412 1.78965 15.3694 0 Vertex 5413 1.73497 15.6072 -3.3934e-014 Vertex 5414 2.83345 15.2957 -3.3934e-014 Vertex 5415 1.80197 15.5185 0 Vertex 5416 2.47831 15.1141 -3.3934e-014 Vertex 5417 3.94087 15.7803 -3.3934e-014 Vertex 5418 2.28844 15.2515 -3.3934e-014 Vertex 5419 4.8279 17.456 -0.195546 Vertex 5420 3.94406 16.0081 -3.3934e-014 Vertex 5421 2.5306 15.4537 -3.3934e-014 Vertex 5422 3.53584 16.518 0 Vertex 5423 2.43491 15.478 -3.3934e-014 Vertex 5424 3.42119 16.4359 0 Vertex 5425 2.31815 15.9328 -3.3934e-014 Vertex 5426 2.98023e-008 14.8062 -1.44026 Vertex 5427 2.59765 15.6059 -3.3934e-014 Vertex 5428 3.8022 16.1698 -3.3934e-014 Vertex 5429 3.82032 16.1161 -3.3934e-014 Vertex 5430 2.51906 15.5411 -3.3934e-014 Vertex 5431 3.70226 16.2127 -3.3934e-014 Vertex 5432 2.79513 15.4247 -3.3934e-014 Vertex 5433 4.8279 14.3967 -0.189903 Vertex 5434 3.50423 17.2821 0 Vertex 5435 4.8279 16.3716 -0.0985587 Vertex 5436 3.61122 17.2315 0 Vertex 5437 0.510115 15.2896 -6.79339e-015 Vertex 5438 0.565439 14.8773 0 Vertex 5439 0 14.8829 -1.83215 Vertex 5440 0.440569 15.1718 0 Vertex 5441 2.98023e-008 14.7864 -1.63165 Vertex 5442 3.55748 17.4046 0 Vertex 5443 4.8279 13.8662 -0.139167 Vertex 5444 3.69243 17.2646 0 Vertex 5445 3.69866 13.8711 -3.3934e-014 Vertex 5446 3.82193 17.0322 0 Vertex 5447 3.58701 13.9651 -3.3934e-014 Vertex 5448 4.63078 17.0615 0 Vertex 5449 3.49376 13.8528 -3.3934e-014 Vertex 5450 2.81579 14.2821 -3.3934e-014 Vertex 5451 3.27755 13.9335 -3.3934e-014 Vertex 5452 2.91671 14.1865 -3.3934e-014 Vertex 5453 3.927 14.7097 -3.3934e-014 Vertex 5454 3.1614 14.023 -3.3934e-014 Vertex 5455 3.2393 14.2492 -3.3934e-014 Vertex 5456 3.68185 14.7944 -3.3934e-014 Vertex 5457 3.03999 14.1079 -3.3934e-014 Vertex 5458 4.8279 17.2624 -0.264179 Vertex 5459 3.35831 14.153 -3.3934e-014 Vertex 5460 4.8279 17.1621 -0.192098 Vertex 5461 3.6491 14.504 -3.3934e-014 Vertex 5462 4.8279 17.2595 -0.18736 Vertex 5463 3.453 14.2707 -3.3934e-014 Vertex 5464 2.99269 14.3233 -3.3934e-014 Vertex 5465 3.81372 14.7394 -3.3934e-014 Vertex 5466 3.40769 14.6116 -3.3934e-014 Vertex 5467 2.92662 14.7147 -3.3934e-014 Vertex 5468 3.01853 14.2132 -3.3934e-014 Vertex 5469 4.2365 14.7948 0 Vertex 5470 2.89286 14.4546 -3.3934e-014 Vertex 5471 3.55868 15.5086 -3.3934e-014 Vertex 5472 4.33438 14.4994 -3.3934e-014 Vertex 5473 3.44369 15.592 0 Vertex 5474 4.43089 14.2043 -3.3934e-014 Vertex 5475 3.2993 15.7562 0 Vertex 5476 4.53034 14.1052 -3.3934e-014 Vertex 5477 3.55997 15.6018 0 Vertex 5478 4.62731 13.8095 -3.3934e-014 Vertex 5479 3.88831 17.0571 0 Vertex 5480 4.52866 14.0071 -3.3934e-014 Vertex 5481 3.63597 16.11 0 Vertex 5482 4.42336 14.0096 -3.3934e-014 Vertex 5483 3.76288 14.403 -3.3934e-014 Vertex 5484 3.74406 15.6817 -3.3934e-014 Vertex 5485 4.42815 14.1066 -3.3934e-014 Vertex 5486 3.46339 14.1637 -3.3934e-014 Vertex 5487 3.84827 15.8961 -3.3934e-014 Vertex 5488 3.9881 14.2041 -3.3934e-014 Vertex 5489 3.7439 15.7803 -3.3934e-014 Vertex 5490 3.88064 14.4083 -3.3934e-014 Vertex 5491 -4.36436e-015 15.1144 -0.398854 Vertex 5492 3.77352 14.5066 -3.3934e-014 Vertex 5493 -4.36436e-015 15.1182 -0.494223 Vertex 5494 3.52738 14.6208 -3.3934e-014 Vertex 5495 -4.36436e-015 15.1046 -0.876601 Vertex 5496 3.37769 15.8657 0 Vertex 5497 -4.36436e-015 15.1096 -0.780196 Vertex 5498 3.56033 15.7899 -3.3934e-014 Vertex 5499 -4.36436e-015 15.1142 -0.684328 Vertex 5500 4.2163 13.801 -3.3934e-014 Vertex 5501 2.48164 16.6825 0 Vertex 5502 2.54803 16.7478 0 Vertex 5503 4.01247 13.7905 -3.3934e-014 Vertex 5504 2.60655 16.6778 0 Vertex 5505 2.41695 16.6154 0 Vertex 5506 4.43336 14.4991 -3.3934e-014 Vertex 5507 3.19431 15.9553 -3.3934e-014 Vertex 5508 4.53209 14.499 -3.3934e-014 Vertex 5509 2.8994 16.2351 -3.3934e-014 Vertex 5510 3.93223 16.3769 -3.3934e-014 Vertex 5511 2.58658 16.2719 -3.3934e-014 Vertex 5512 2.54218 16.6143 0 Vertex 5513 2.83641 16.6465 0 Vertex 5514 2.64989 16.4706 -3.3934e-014 Vertex 5515 4.43302 14.4007 -3.3934e-014 Vertex 5516 2.66049 16.6056 0 Vertex 5517 4.63046 14.2034 -3.3934e-014 Vertex 5518 3.51674 16.7022 0 Vertex 5519 1.86965 15.2814 -3.3934e-014 Vertex 5520 3.00103 16.1001 -3.3934e-014 Vertex 5521 1.89151 15.5906 -3.3934e-014 Vertex 5522 2.84745 16.1799 -3.3934e-014 Vertex 5523 3.64089 16.3691 0 Vertex 5524 2.05784 15.752 -3.3934e-014 Vertex 5525 3.58039 16.402 0 Vertex 5526 2.20611 15.7843 -3.3934e-014 Vertex 5527 2.74796 16.066 -3.3934e-014 Vertex 5528 0 15.0855 -1.16587 Vertex 5529 1.89645 13.3135 -3.3934e-014 Vertex 5530 0 14.9362 -1.35545 Vertex 5531 2.32068 13.5887 -3.3934e-014 Vertex 5532 0 15.0695 -1.35849 Vertex 5533 2.31678 13.4991 -3.3934e-014 Vertex 5534 2.37099 15.9998 -3.3934e-014 Vertex 5535 2.04688 13.4682 -3.3934e-014 Vertex 5536 2.53925 16.0718 -3.3934e-014 Vertex 5537 -4.36436e-015 15.0989 -0.973039 Vertex 5538 2.90586 15.8651 -3.3934e-014 Vertex 5539 0 15.0925 -1.06947 Vertex 5540 2.15122 13.1742 -3.3934e-014 Vertex 5541 5.21541e-008 14.9597 -1.06707 Vertex 5542 2.69984 15.7374 -3.3934e-014 Vertex 5543 5.21541e-008 14.8314 -1.1527 Vertex 5544 1.88026 13.1826 -3.3934e-014 Vertex 5545 2.7033 15.608 -3.3934e-014 Vertex 5546 1.15237 15.2756 0 Vertex 5547 4.1038 14.0014 -3.3934e-014 Vertex 5548 2.59106 16.136 -3.3934e-014 Vertex 5549 4.10353 14.2057 -3.3934e-014 Vertex 5550 0.213531 15.1336 0 Vertex 5551 4.3145 13.9074 -3.3934e-014 Vertex 5552 4.53197 14.4005 -3.3934e-014 Vertex 5553 4.03863 14.8092 -3.3934e-014 Vertex 5554 4.31111 14.0098 -3.3934e-014 Vertex 5555 2.77932 13.7589 -3.3934e-014 Vertex 5556 4.32737 14.2065 -3.3934e-014 Vertex 5557 4.12558 14.4089 -3.3934e-014 Vertex 5558 2.58231 13.8122 -3.3934e-014 Vertex 5559 4.20305 14.1098 -3.3934e-014 Vertex 5560 4.11193 14.3062 -3.3934e-014 Vertex 5561 2.42441 13.9495 -3.3934e-014 Vertex 5562 4.2161 14.2136 -3.3934e-014 Vertex 5563 2.35387 13.9148 -3.3934e-014 Vertex 5564 4.33143 14.3035 -3.3934e-014 Vertex 5565 2.32668 13.6919 -3.3934e-014 Vertex 5566 4.43231 14.3024 -3.3934e-014 Vertex 5567 4.4336 14.6961 0 Vertex 5568 4.53172 14.302 -3.3934e-014 Vertex 5569 4.13793 14.7949 0 Vertex 5570 4.43366 14.9918 0 Vertex 5571 0.334941 14.9034 0 Vertex 5572 4.33343 14.4012 -3.3934e-014 Vertex 5573 4.23657 15.0904 0 Vertex 5574 0.330658 15.0281 0 Vertex 5575 4.23582 14.5981 0 Vertex 5576 4.13807 14.9918 0 Vertex 5577 0.45479 14.9032 0 Vertex 5578 4.03906 14.6976 -3.3934e-014 Vertex 5579 4.23631 14.6963 0 Vertex 5580 0.547142 15.1281 0 Vertex 5581 4.13748 14.6967 0 Vertex 5582 0.622804 15.1129 0 Vertex 5583 2.40759 13.6044 -3.3934e-014 Vertex 5584 0.706791 14.9534 0 Vertex 5585 4.8279 17.6476 -0.290003 Vertex 5586 4.8279 14.9557 -0.572358 Vertex 5587 4.8279 17.4577 -0.279347 Vertex 5588 4.8279 15.0159 -0.781223 Vertex 5589 1.9127 16.0414 -3.3934e-014 Vertex 5590 4.8279 14.9114 -0.756367 Vertex 5591 4.53216 14.5976 -3.3934e-014 Vertex 5592 4.8279 14.6776 -0.207987 Vertex 5593 4.63077 14.6961 0 Vertex 5594 4.8279 14.7286 -0.5361 Vertex 5595 0.826461 14.914 0 Vertex 5596 4.8279 14.8544 -0.551696 Vertex 5597 4.8279 14.8932 -0.197375 Vertex 5598 4.8279 14.9153 -0.398844 Vertex 5599 4.63078 17.4558 0 Vertex 5600 4.8279 14.9865 -0.279175 Vertex 5601 4.8279 14.6961 -0.0985592 Vertex 5602 2.6728 16.7392 0 Vertex 5603 4.8279 14.7823 -0.202251 Vertex 5604 2.8586 16.7799 0 Vertex 5605 4.8279 14.7709 -0.300888 Vertex 5606 3.14546 16.5586 0 Vertex 5607 4.8279 14.9903 -0.345892 Vertex 5608 3.9414 15.1888 -3.3934e-014 Vertex 5609 4.8279 15.1231 -0.389445 Vertex 5610 4.8279 15.088 -0.486725 Vertex 5611 4.63078 17.3572 0 Vertex 5612 3.22601 14.8514 -3.3934e-014 Vertex 5613 4.34783 17.3429 0 Vertex 5614 3.40001 15.0931 -3.3934e-014 Vertex 5615 4.34164 17.2435 0 Vertex 5616 3.41157 15.427 0 Vertex 5617 4.53222 17.1601 0 Vertex 5618 4.01372 17.4642 0 Vertex 5619 4.24647 16.873 0 Vertex 5620 3.92724 17.4397 0 Vertex 5621 4.17873 17.5955 0 Vertex 5622 -4.36436e-015 15.1174 -0.589069 Vertex 5623 4.26854 17.3293 0 Vertex 5624 4.35161 17.6266 0 Vertex 5625 4.10056 17.4862 0 Vertex 5626 1.80177 13.6072 -3.3934e-014 Vertex 5627 4.26966 17.6129 0 Vertex 5628 3.99809 17.5535 0 Vertex 5629 1.99148 13.5916 -3.3934e-014 Vertex 5630 4.18762 17.5058 0 Vertex 5631 1.91671 13.9326 -3.3934e-014 Vertex 5632 4.27007 17.5194 0 Vertex 5633 2.09512 14.7936 -3.3934e-014 Vertex 5634 2.80637 15.0026 -3.3934e-014 Vertex 5635 2.36019 14.5144 -3.3934e-014 Vertex 5636 2.03751 15.2939 -3.3934e-014 Vertex 5637 2.45045 14.7278 -3.3934e-014 Vertex 5638 2.71021 15.0705 -3.3934e-014 Vertex 5639 4.11437 13.7961 -3.3934e-014 Vertex 5640 5.21541e-008 14.8683 -0.480399 Vertex 5641 4.1091 13.8984 -3.3934e-014 Vertex 5642 2.28577 15.5753 -3.3934e-014 Vertex 5643 4.00643 13.8927 -3.3934e-014 Vertex 5644 2.32761 15.7983 -3.3934e-014 Vertex 5645 2.59361 16.0063 -3.3934e-014 Vertex 5646 4.8279 14.809 -0.738889 Vertex 5647 2.58971 15.8615 -3.3934e-014 Vertex 5648 4.8279 14.6932 -0.724874 Vertex 5649 2.49178 15.7328 -3.3934e-014 Vertex 5650 4.8279 14.5913 -0.708796 Vertex 5651 2.44957 15.6735 -3.3934e-014 Vertex 5652 2.55588 15.5677 -3.3934e-014 Vertex 5653 2.56484 15.0489 -3.3934e-014 Vertex 5654 2.65774 15.5489 -3.3934e-014 Vertex 5655 2.67889 15.4203 -3.3934e-014 Vertex 5656 0 15.0664 -2.25004 Vertex 5657 2.60129 15.4987 -3.3934e-014 Vertex 5658 3.55171 16.8219 0 Vertex 5659 2.7553 15.3599 -3.3934e-014 Vertex 5660 2.29503 15.4145 -3.3934e-014 Vertex 5661 1.65405 13.2609 -3.3934e-014 Vertex 5662 2.20857 15.3181 -3.3934e-014 Vertex 5663 0 14.9428 -2.32523 Vertex 5664 3.06116 15.8248 -3.3934e-014 Vertex 5665 1.6465 15.5436 -3.3934e-014 Vertex 5666 3.00203 15.9779 -3.3934e-014 Vertex 5667 1.55601 15.4837 -3.3934e-014 Vertex 5668 2.39254 15.1735 -3.3934e-014 Vertex 5669 1.69689 15.1101 0 Vertex 5670 2.98978 15.4627 -3.3934e-014 Vertex 5671 2.16324 15.1376 0 Vertex 5672 2.25728 14.9928 -3.3934e-014 Vertex 5673 3.23722 15.5733 -3.3934e-014 Vertex 5674 2.07944 15.0496 -3.3934e-014 Vertex 5675 1.81959 14.6046 0 Vertex 5676 2.35596 14.9421 -3.3934e-014 Vertex 5677 2.17885 14.7115 -3.3934e-014 Vertex 5678 2.13146 13.9983 -3.3934e-014 Vertex 5679 2.2365 14.788 -3.3934e-014 Vertex 5680 1.62502 14.2917 -3.3934e-014 Vertex 5681 1.9643 14.8399 -3.3934e-014 Vertex 5682 2.74285 14.9225 -3.3934e-014 Vertex 5683 1.9953 14.5574 0 Vertex 5684 2.69999 15.2606 -3.3934e-014 Vertex 5685 2.65104 14.9865 -3.3934e-014 Vertex 5686 1.4796 14.753 0 Vertex 5687 1.93742 15.0817 0 Vertex 5688 2.87258 15.1125 -3.3934e-014 Vertex 5689 1.74209 14.7933 0 Vertex 5690 3.14509 15.5594 -3.3934e-014 Vertex 5691 2.77527 15.1891 -3.3934e-014 Vertex 5692 1.93248 14.6758 -3.3934e-014 Vertex 5693 2.00196 15.0429 0 Vertex 5694 3.0886 15.2145 -3.3934e-014 Vertex 5695 1.87815 14.9201 0 Vertex 5696 2.40449 13.708 -3.3934e-014 Vertex 5697 1.89856 14.9921 0 Vertex 5698 3.13721 15.6422 0 Vertex 5699 1.9543 14.9124 0 Vertex 5700 3.06091 15.5513 -3.3934e-014 Vertex 5701 3.80773 17.1109 0 Vertex 5702 3.15 16.0107 -3.3934e-014 Vertex 5703 3.93925 17.3509 0 Vertex 5704 3.10527 15.8965 -3.3934e-014 Vertex 5705 3.87958 17.136 0 Vertex 5706 3.16392 16.0669 -3.3934e-014 Vertex 5707 3.79208 17.1983 0 Vertex 5708 2.9412 16.621 0 Vertex 5709 3.64399 17.4391 0 Vertex 5710 3.43022 16.5451 0 Vertex 5711 2.06108 15.5944 -3.3934e-014 Vertex 5712 3.50004 16.36 0 Vertex 5713 2.27585 15.7287 -3.3934e-014 Vertex 5714 3.5804 16.3518 0 Vertex 5715 2.69298 16.1323 -3.3934e-014 Vertex 5716 3.67117 17.352 0 Vertex 5717 3.47369 14.0589 -3.3934e-014 Vertex 5718 3.47202 17.3675 0 Vertex 5719 3.9106 13.784 -3.3934e-014 Vertex 5720 3.55221 17.1092 0 Vertex 5721 3.59618 13.8623 -3.3934e-014 Vertex 5722 3.38762 17.328 0 Vertex 5723 3.80121 13.8791 -3.3934e-014 Vertex 5724 3.5309 17.1961 0 Vertex 5725 1.97511 12.9883 -3.3934e-014 Vertex 5726 2.17708 16.2015 -3.3934e-014 Vertex 5727 1.88247 13.0631 -3.3934e-014 Vertex 5728 1.98096 16.1156 -3.3934e-014 Vertex 5729 2.11646 16.1296 -3.3934e-014 Vertex 5730 2.70193 14.4272 -3.3934e-014 Vertex 5731 2.74551 14.7357 -3.3934e-014 Vertex 5732 4.63078 15.7803 0 Vertex 5733 2.67375 14.6515 -3.3934e-014 Vertex 5734 3.71257 17.1682 0 Vertex 5735 2.81642 14.4035 -3.3934e-014 Vertex 5736 3.77425 17.2957 0 Vertex 5737 3.86889 17.2251 0 Vertex 5738 3.86134 16.2702 -3.3934e-014 Vertex 5739 3.9557 17.161 0 Vertex 5740 4.3351 16.2731 -3.3934e-014 Vertex 5741 4.23654 16.0759 -3.3934e-014 Vertex 5742 4.17767 17.1323 0 Vertex 5743 4.43366 16.3716 0 Vertex 5744 4.13799 16.1745 -3.3934e-014 Vertex 5745 4.03398 16.958 0 Vertex 5746 4.13018 16.4627 -3.3934e-014 Vertex 5747 3.86935 16.1757 -3.3934e-014 Vertex 5748 4.0881 16.7081 0 Vertex 5749 3.96112 17.0807 0 Vertex 5750 4.01631 16.7903 0 Vertex 5751 4.03943 15.8788 -3.3934e-014 Vertex 5752 3.8987 16.9873 0 Vertex 5753 4.03942 16.0759 -3.3934e-014 Vertex 5754 3.90756 16.9326 0 Vertex 5755 4.03903 15.9922 -3.3934e-014 Vertex 5756 3.97708 16.8979 0 Vertex 5757 2.04548 16.1905 -3.3934e-014 Vertex 5758 2.47948 16.5489 0 Vertex 5759 2.10732 16.2629 -3.3934e-014 Vertex 5760 2.59813 16.5436 0 Vertex 5761 4.53222 15.7803 -3.3934e-014 Vertex 5762 2.23773 16.2718 -3.3934e-014 Vertex 5763 2.53746 16.4799 -3.3934e-014 Vertex 5764 4.43366 15.6817 -3.3934e-014 Vertex 5765 2.36305 16.2778 -3.3934e-014 Vertex 5766 3.94116 15.2874 -3.3934e-014 Vertex 5767 2.756 16.4541 -3.3934e-014 Vertex 5768 2.42129 16.3468 -3.3934e-014 Vertex 5769 4.43366 15.4846 -3.3934e-014 Vertex 5770 3.8429 15.1885 -3.3934e-014 Vertex 5771 2.41856 16.482 -3.3934e-014 Vertex 5772 2.59129 16.4084 -3.3934e-014 Vertex 5773 4.23655 15.386 -3.3934e-014 Vertex 5774 4.03943 15.6817 -3.3934e-014 Vertex 5775 2.47853 16.4147 -3.3934e-014 Vertex 5776 4.13799 15.5831 -3.3934e-014 Vertex 5777 2.23853 13.0716 -3.3934e-014 Vertex 5778 4.03944 15.5831 -3.3934e-014 Vertex 5779 3.64205 15.2736 0 Vertex 5780 3.6508 15.5967 -3.3934e-014 Vertex 5781 3.30751 15.6666 0 Vertex 5782 3.35241 15.5081 0 Vertex 5783 1.97661 13.0795 -3.3934e-014 Vertex 5784 3.74438 15.583 -3.3934e-014 Vertex 5785 3.3039 15.5814 -3.3934e-014 Vertex 5786 3.64015 15.3842 -3.3934e-014 Vertex 5787 2.0757 12.993 -3.3934e-014 Vertex 5788 3.43213 15.5084 0 Vertex 5789 2.81075 16.8564 0 Vertex 5790 1.79835 13.7495 -3.3934e-014 Vertex 5791 2.74097 16.7987 0 Vertex 5792 3.36626 15.9642 0 Vertex 5793 2.15881 13.0798 -3.3934e-014 Vertex 5794 3.21065 15.7425 0 Vertex 5795 2.07359 13.0867 -3.3934e-014 Vertex 5796 3.23532 15.6567 0 Vertex 5797 2.70127 16.0047 -3.3934e-014 Vertex 5798 2.97674 15.6014 -3.3934e-014 Vertex 5799 2.79692 16.1228 -3.3934e-014 Vertex 5800 3.1268 15.7263 -3.3934e-014 Vertex 5801 2.74376 16.1913 -3.3934e-014 Vertex 5802 2.94922 15.6559 -3.3934e-014 Vertex 5803 1.5559 14.4046 0 Vertex 5804 0.410724 15.2724 0 Vertex 5805 1.80057 14.2512 -3.3934e-014 Vertex 5806 0.310673 15.2588 0 Vertex 5807 1.73162 14.0379 -3.3934e-014 Vertex 5808 1.01989 14.7783 0 Vertex 5809 1.77847 13.8874 -3.3934e-014 Vertex 5810 1.53096 13.8173 -3.3934e-014 Vertex 5811 4.10391 17.294 0 Vertex 5812 1.65355 13.8482 -3.3934e-014 Vertex 5813 3.17498 15.8511 -3.3934e-014 Vertex 5814 1.7178 13.1433 -3.3934e-014 Vertex 5815 1.54017 13.7039 -3.3934e-014 Vertex 5816 3.24412 16.0394 -3.3934e-014 Vertex 5817 1.78441 13.4782 -3.3934e-014 Vertex 5818 1.443 14.9783 0 Vertex 5819 0.918962 14.8507 0 Vertex 5820 2.02187 14.7316 -3.3934e-014 Vertex 5821 1.27728 14.7203 0 Vertex 5822 2.45522 15.2898 -3.3934e-014 Vertex 5823 1.1171 14.701 0 Vertex 5824 2.37074 15.3567 -3.3934e-014 Vertex 5825 1.14911 14.5343 0 Vertex 5826 2.62356 15.3416 -3.3934e-014 Vertex 5827 1.3819 14.432 0 Vertex 5828 0.993941 15.4306 -6.79339e-015 Vertex 5829 1.45556 14.3277 0 Vertex 5830 0.899389 15.3952 0 Vertex 5831 4.63078 16.5687 0 Vertex 5832 0.803584 15.3633 -6.79339e-015 Vertex 5833 3.48562 16.4831 0 Vertex 5834 0.733605 15.2358 0 Vertex 5835 3.00404 15.8704 -3.3934e-014 Vertex 5836 0.886871 15.1781 0 Vertex 5837 2.64394 16.0701 -3.3934e-014 Vertex 5838 2.90315 15.7303 -3.3934e-014 Vertex 5839 0.96907 14.9674 0 Vertex 5840 2.80644 15.8698 -3.3934e-014 Vertex 5841 1.04146 15.157 0 Vertex 5842 4.03971 15.0903 -3.3934e-014 Vertex 5843 1.18117 15.1518 -3.3934e-014 Vertex 5844 3.84331 15.0897 -3.3934e-014 Vertex 5845 1.50811 15.3353 -3.3934e-014 Vertex 5846 3.66154 15.1611 -3.3934e-014 Vertex 5847 1.3168 15.2347 0 Vertex 5848 1.58591 15.6314 -3.3934e-014 Vertex 5849 3.76375 14.8845 -3.3934e-014 Vertex 5850 1.49868 15.5736 -3.3934e-014 Vertex 5851 3.85434 14.9882 -3.3934e-014 Vertex 5852 1.31751 15.4675 -3.3934e-014 Vertex 5853 2.42347 16.2111 -3.3934e-014 Vertex 5854 4.8279 15.3209 -0.374598 Vertex 5855 2.3039 16.2085 -3.3934e-014 Vertex 5856 3.43422 16.0842 0 Vertex 5857 2.48008 16.1416 -3.3934e-014 Vertex 5858 3.33793 16.0875 0 Vertex 5859 2.53361 16.2075 -3.3934e-014 Vertex 5860 0 15.1577 -1.55452 Vertex 5861 1.91049 15.8976 -3.3934e-014 Vertex 5862 2.05238 16.052 -3.3934e-014 Vertex 5863 0 14.9277 -1.45066 Vertex 5864 1.98363 15.9733 -3.3934e-014 Vertex 5865 3.63478 17.1368 0 Vertex 5866 3.45782 15.7773 0 Vertex 5867 3.7311 17.0818 0 Vertex 5868 3.56411 15.8883 0 Vertex 5869 3.65292 17.0488 0 Vertex 5870 3.65345 15.6963 -3.3934e-014 Vertex 5871 4.53222 14.8932 0 Vertex 5872 1.41824 14.1536 0 Vertex 5873 4.63078 14.9918 0 Vertex 5874 1.569 14.1077 -3.3934e-014 Vertex 5875 4.53222 15.2875 0 Vertex 5876 1.67763 14.1706 -3.3934e-014 Vertex 5877 2.11118 13.7956 -3.3934e-014 Vertex 5878 4.53222 14.9918 0 Vertex 5879 1.85598 14.1061 -3.3934e-014 Vertex 5880 4.43365 14.8932 0 Vertex 5881 2.25115 14.1354 -3.3934e-014 Vertex 5882 2.90365 14.5461 -3.3934e-014 Vertex 5883 2.65164 14.0134 -3.3934e-014 Vertex 5884 2.2729 13.943 -3.3934e-014 Vertex 5885 3.18154 15.1435 -3.3934e-014 Vertex 5886 3.27921 14.6022 -3.3934e-014 Vertex 5887 2.72403 14.1412 -3.3934e-014 Vertex 5888 2.24051 14.3796 -3.3934e-014 Vertex 5889 3.11222 14.98 -3.3934e-014 Vertex 5890 2.93231 14.083 -3.3934e-014 Vertex 5891 2.47147 13.9666 -3.3934e-014 Vertex 5892 2.91369 14.9298 -3.3934e-014 Vertex 5893 2.73985 14.0301 -3.3934e-014 Vertex 5894 3.32052 14.9784 -3.3934e-014 Vertex 5895 2.62381 14.1138 -3.3934e-014 Vertex 5896 3.22203 14.9651 -3.3934e-014 Vertex 5897 0.876668 14.7454 0 Vertex 5898 1.20793 14.616 0 Vertex 5899 0.971985 14.6808 0 Vertex 5900 1.58321 14.883 0 Vertex 5901 1.06353 14.6113 0 Vertex 5902 1.36581 14.8565 0 Vertex 5903 2.14819 15.5278 -3.3934e-014 Vertex 5904 1.58609 14.6345 0 Vertex 5905 1.17356 14.8072 0 Vertex 5906 2.13797 15.38 -3.3934e-014 Vertex 5907 1.378 14.6255 0 Vertex 5908 4.53221 14.7947 0 Vertex 5909 3.94091 15.5831 -3.3934e-014 Vertex 5910 3.94088 15.8788 -3.3934e-014 Vertex 5911 4.43364 14.7947 0 Vertex 5912 4.03943 15.7803 -3.3934e-014 Vertex 5913 3.94103 15.386 -3.3934e-014 Vertex 5914 3.84231 15.5831 -3.3934e-014 Vertex 5915 3.84128 17.413 0 Vertex 5916 3.94095 15.4845 -3.3934e-014 Vertex 5917 3.73146 17.4713 0 Vertex 5918 3.74787 15.287 -3.3934e-014 Vertex 5919 4.53222 16.4702 0 Vertex 5920 3.76285 15.0727 -3.3934e-014 Vertex 5921 4.53222 16.3716 0 Vertex 5922 3.75341 15.1784 -3.3934e-014 Vertex 5923 4.53222 16.2731 0 Vertex 5924 3.8426 15.2872 -3.3934e-014 Vertex 5925 4.43366 16.1745 0 Vertex 5926 4.63078 16.1745 0 Vertex 5927 4.23655 15.6817 -3.3934e-014 Vertex 5928 4.3351 16.0759 -3.3934e-014 Vertex 5929 4.53222 16.1745 0 Vertex 5930 4.3351 15.7803 -3.3934e-014 Vertex 5931 4.53222 16.7659 0 Vertex 5932 4.43366 16.0759 0 Vertex 5933 3.84229 15.7803 -3.3934e-014 Vertex 5934 4.63078 15.9774 0 Vertex 5935 4.3351 15.9774 -3.3934e-014 Vertex 5936 3.84229 15.6817 -3.3934e-014 Vertex 5937 4.63078 16.6673 0 Vertex 5938 4.53222 15.9774 0 Vertex 5939 3.94088 15.6817 -3.3934e-014 Vertex 5940 4.53222 16.6673 0 Vertex 5941 4.43366 15.8788 -3.3934e-014 Vertex 5942 4.13799 15.8788 -3.3934e-014 Vertex 5943 4.43366 16.4702 0 Vertex 5944 0 15.1209 -1.85332 Vertex 5945 4.3351 15.8788 -3.3934e-014 Vertex 5946 4.3351 16.3716 0 Vertex 5947 4.53222 15.0904 0 Vertex 5948 4.13799 15.7803 -3.3934e-014 Vertex 5949 0 15.1455 -1.65422 Vertex 5950 4.03987 14.9918 -3.3934e-014 Vertex 5951 4.23655 15.9774 -3.3934e-014 Vertex 5952 4.33511 15.1889 -3.3934e-014 Vertex 5953 4.43366 16.6673 0 Vertex 5954 0 14.8948 -1.73633 Vertex 5955 4.43366 15.1889 0 Vertex 5956 4.33511 16.4702 0 Vertex 5957 4.13799 15.9774 -3.3934e-014 Vertex 5958 4.23655 16.2731 -3.3934e-014 Vertex 5959 0 15.049 -1.54996 Vertex 5960 4.43366 16.5687 0 Vertex 5961 4.23655 16.1745 -3.3934e-014 Vertex 5962 0 15.0356 -1.64706 Vertex 5963 3.06148 17.1471 0 Vertex 5964 4.3351 16.6673 0 Vertex 5965 4.63078 15.386 0 Vertex 5966 0 15.0221 -1.74474 Vertex 5967 4.3351 14.8933 0 Vertex 5968 4.53222 15.1889 0 Vertex 5969 4.33511 15.2875 -3.3934e-014 Vertex 5970 4.33511 15.0904 0 Vertex 5971 0 15.009 -1.8419 Vertex 5972 4.33511 15.386 -3.3934e-014 Vertex 5973 4.23657 14.9918 0 Vertex 5974 4.43366 15.0904 0 Vertex 5975 4.3351 15.4846 -3.3934e-014 Vertex 5976 3.31559 16.5677 0 Vertex 5977 4.33511 14.9918 0 Vertex 5978 4.13806 14.8933 0 Vertex 5979 4.53222 15.4846 -3.3934e-014 Vertex 5980 3.20759 16.6019 0 Vertex 5981 4.23656 14.8933 0 Vertex 5982 4.43366 15.5831 -3.3934e-014 Vertex 5983 4.23655 15.7803 -3.3934e-014 Vertex 5984 4.23654 16.3716 0 Vertex 5985 4.13798 16.0759 -3.3934e-014 Vertex 5986 4.3351 16.5687 0 Vertex 5987 4.13799 15.6817 -3.3934e-014 Vertex 5988 4.3351 15.5831 -3.3934e-014 Vertex 5989 4.13799 16.2731 -3.3934e-014 Vertex 5990 4.23655 16.4702 0 Vertex 5991 4.23655 15.5831 -3.3934e-014 Vertex 5992 4.03942 16.1745 -3.3934e-014 Vertex 5993 4.138 15.4846 -3.3934e-014 Vertex 5994 2.86539 13.8725 -3.3934e-014 Vertex 5995 4.13798 16.3716 0 Vertex 5996 4.03948 15.386 -3.3934e-014 Vertex 5997 3.94239 14.9916 -3.3934e-014 Vertex 5998 4.03943 16.2731 -3.3934e-014 Vertex 5999 4.03953 15.2874 -3.3934e-014 Vertex 6000 2.19548 15.9319 -3.3934e-014 Vertex 6001 3.94249 16.0932 -3.3934e-014 Vertex 6002 4.0396 15.1889 -3.3934e-014 Vertex 6003 2.37734 15.8661 -3.3934e-014 Vertex 6004 3.86197 16.0268 -3.3934e-014 Vertex 6005 3.94086 16.1745 -3.3934e-014 Vertex 6006 3.13815 16.2415 -3.3934e-014 Vertex 6007 3.9418 15.0902 -3.3934e-014 Vertex 6008 3.87136 16.1052 -3.3934e-014 Vertex 6009 3.02336 16.4659 0 Vertex 6010 4.13805 15.0904 -3.3934e-014 Vertex 6011 4.43366 16.8644 0 Vertex 6012 3.0449 15.6233 -3.3934e-014 Vertex 6013 4.04001 14.8934 0 Vertex 6014 0.933672 15.2982 0 Vertex 6015 4.10553 17.3968 0 Vertex 6016 3.90835 14.6103 -3.3934e-014 Vertex 6017 4.3351 16.8644 0 Vertex 6018 4.18867 17.4165 0 Vertex 6019 3.93574 14.8262 -3.3934e-014 Vertex 6020 4.53222 17.4558 0 Vertex 6021 4.27146 17.4342 0 Vertex 6022 3.6125 14.9202 -3.3934e-014 Vertex 6023 4.53222 16.8644 0 Vertex 6024 4.43366 17.3572 0 Vertex 6025 3.71449 14.9564 -3.3934e-014 Vertex 6026 4.53222 16.963 0 Vertex 6027 3.2522 14.7274 -3.3934e-014 Vertex 6028 4.53222 17.3572 0 Vertex 6029 4.43366 16.963 0 Vertex 6030 3.34906 14.8606 -3.3934e-014 Vertex 6031 4.53222 17.2586 0 Vertex 6032 3.83966 14.8505 -3.3934e-014 Vertex 6033 1.22847 14.4498 0 Vertex 6034 4.43366 17.1601 0 Vertex 6035 3.80025 14.9239 -3.3934e-014 Vertex 6036 1.3005 14.3575 0 Vertex 6037 4.53222 17.0615 0 Vertex 6038 3.36355 16.1461 0 Vertex 6039 1.36619 14.2565 0 Vertex 6040 4.03531 14.6043 -3.3934e-014 Vertex 6041 3.48619 15.2691 0 Vertex 6042 1.51701 14.2191 -3.3934e-014 Vertex 6043 3.53203 15.1209 -3.3934e-014 Vertex 6044 3.30474 15.2518 -3.3934e-014 Vertex 6045 3.37206 15.343 0 Vertex 6046 1.74541 14.3751 -3.3934e-014 Vertex 6047 3.50702 16.2475 0 Vertex 6048 3.3648 15.1845 0 Vertex 6049 4.01843 14.5065 -3.3934e-014 Vertex 6050 1.94874 14.3526 -3.3934e-014 Vertex 6051 3.54101 16.4287 0 Vertex 6052 3.6546 14.6181 -3.3934e-014 Vertex 6053 3.37976 16.3029 0 Vertex 6054 3.78515 14.6123 -3.3934e-014 Vertex 6055 4.8279 17.0727 -0.260327 Vertex 6056 3.74789 16.9988 0 Vertex 6057 3.28756 16.2515 0 Vertex 6058 1.68942 15.8367 -3.3934e-014 Vertex 6059 3.40002 17.0329 0 Vertex 6060 3.18114 16.4781 0 Vertex 6061 1.60966 15.7746 -3.3934e-014 Vertex 6062 3.5034 16.9804 0 Vertex 6063 3.24226 16.5174 0 Vertex 6064 1.82094 15.6753 -3.3934e-014 Vertex 6065 3.07193 14.8361 -3.3934e-014 Vertex 6066 2.65244 15.9418 -3.3934e-014 Vertex 6067 1.67101 15.6925 -3.3934e-014 Vertex 6068 2.99345 14.6176 -3.3934e-014 Vertex 6069 2.40764 14.0982 -3.3934e-014 Vertex 6070 2.52463 14.8183 -3.3934e-014 Vertex 6071 2.84175 14.6221 -3.3934e-014 Vertex 6072 1.83371 15.8257 -3.3934e-014 Vertex 6073 2.8956 13.6776 -3.3934e-014 Vertex 6074 2.59387 14.7468 -3.3934e-014 Vertex 6075 2.14618 14.2924 -3.3934e-014 Vertex 6076 2.49697 14.1555 -3.3934e-014 Vertex 6077 3.28914 13.8313 -3.3934e-014 Vertex 6078 1.84117 15.9701 -3.3934e-014 Vertex 6079 2.34093 14.2175 -3.3934e-014 Vertex 6080 2.99665 13.6919 -3.3934e-014 Vertex 6081 1.76666 15.9019 -3.3934e-014 Vertex 6082 2.15463 14.5201 -3.3934e-014 Vertex 6083 2.52743 14.6718 -3.3934e-014 Vertex 6084 3.07145 13.9071 -3.3934e-014 Vertex 6085 2.97101 14.4085 -3.3934e-014 Vertex 6086 2.47644 14.6292 -3.3934e-014 Vertex 6087 2.95226 13.9877 -3.3934e-014 Vertex 6088 3.35817 16.9033 0 Vertex 6089 2.71138 14.2505 -3.3934e-014 Vertex 6090 3.09783 13.7054 -3.3934e-014 Vertex 6091 3.17449 13.921 -3.3934e-014 Vertex 6092 3.20854 16.8183 0 Vertex 6093 2.82198 14.1637 -3.3934e-014 Vertex 6094 3.19913 13.7179 -3.3934e-014 Vertex 6095 2.18543 16.0685 -3.3934e-014 Vertex 6096 2.66976 13.8282 -3.3934e-014 Vertex 6097 1.98257 15.8244 -3.3934e-014 Vertex 6098 2.98288 13.7921 -3.3934e-014 Vertex 6099 2.82863 14.0526 -3.3934e-014 Vertex 6100 2.76278 13.8501 -3.3934e-014 Vertex 6101 2.90004 14.3019 -3.3934e-014 Vertex 6102 2.13121 15.8422 -3.3934e-014 Vertex 6103 2.84769 13.9629 -3.3934e-014 Vertex 6104 3.22411 14.3628 -3.3934e-014 Vertex 6105 2.12449 15.9906 -3.3934e-014 Vertex 6106 2.75688 13.9384 -3.3934e-014 Vertex 6107 3.19948 14.4593 -3.3934e-014 Vertex 6108 2.30866 16.0746 -3.3934e-014 Vertex 6109 3.03774 16.806 0 Vertex 6110 3.1676 14.5831 -3.3934e-014 Vertex 6111 2.42483 16.0673 -3.3934e-014 Vertex 6112 2.75816 16.9311 0 Vertex 6113 3.04269 14.5298 -3.3934e-014 Vertex 6114 2.48127 15.9963 -3.3934e-014 Vertex 6115 3.0297 17.0175 0 Vertex 6116 3.07301 14.4373 -3.3934e-014 Vertex 6117 2.53236 15.9303 -3.3934e-014 Vertex 6118 3.50087 14.7519 -3.3934e-014 Vertex 6119 2.83166 16.9881 0 Vertex 6120 2.98345 17.0963 0 Vertex 6121 3.37858 14.7366 -3.3934e-014 Vertex 6122 2.88224 16.912 0 Vertex 6123 2.90687 17.043 0 Vertex 6124 3.43005 14.997 -3.3934e-014 Vertex 6125 4.31825 13.8051 -3.3934e-014 Vertex 6126 2.95534 16.9657 0 Vertex 6127 3.22344 15.0563 -3.3934e-014 Vertex 6128 3.12516 16.4398 0 Vertex 6129 2.69783 16.395 -3.3934e-014 Vertex 6130 3.18696 13.8193 -3.3934e-014 Vertex 6131 3.06616 16.3904 -3.3934e-014 Vertex 6132 2.86567 16.4288 -3.3934e-014 Vertex 6133 3.17577 16.6807 0 Vertex 6134 2.58377 13.7207 -3.3934e-014 Vertex 6135 2.75169 16.3154 -3.3934e-014 Vertex 6136 3.2758 16.4407 0 Vertex 6137 2.48289 13.9006 -3.3934e-014 Vertex 6138 2.90622 16.3609 -3.3934e-014 Vertex 6139 3.43033 16.9425 0 Vertex 6140 3.16439 16.3588 0 Vertex 6141 3.34152 17.2026 0 Vertex 6142 3.52903 16.8946 0 Vertex 6143 3.05294 16.2674 -3.3934e-014 Vertex 6144 3.37335 17.1183 0 Vertex 6145 3.22205 17.2417 0 Vertex 6146 3.32537 16.9914 0 Vertex 6147 3.08977 16.0834 -3.3934e-014 Vertex 6148 3.26173 17.1594 0 Vertex 6149 3.28725 16.8634 0 Vertex 6150 3.14738 15.0714 -3.3934e-014 Vertex 6151 3.2447 15.5014 0 Vertex 6152 3.183 17.1141 0 Vertex 6153 3.45877 16.8571 0 Vertex 6154 3.16083 15.2734 -3.3934e-014 Vertex 6155 3.21979 17.0317 0 Vertex 6156 3.38941 16.8174 0 Vertex 6157 3.22778 15.1108 -3.3934e-014 Vertex 6158 3.00607 16.6731 0 Vertex 6159 3.25161 16.948 0 Vertex 6160 3.29642 15.0668 -3.3934e-014 Vertex 6161 3.27639 16.6519 0 Vertex 6162 3.17889 16.9028 0 Vertex 6163 2.9533 16.2884 -3.3934e-014 Vertex 6164 3.32088 16.7757 0 Vertex 6165 2.79088 16.7236 0 Vertex 6166 3.40439 16.224 0 Vertex 6167 3.10756 16.8555 0 Vertex 6168 2.72475 16.6655 0 Vertex 6169 3.23732 16.2139 0 Vertex 6170 3.24506 16.7266 0 Vertex 6171 2.7724 16.5896 0 Vertex 6172 3.21698 16.399 0 Vertex 6173 3.41629 16.7459 0 Vertex 6174 3.1995 16.285 0 Vertex 6175 3.38933 16.6228 0 Vertex 6176 3.60027 16.9301 0 Vertex 6177 2.98023e-008 14.8588 -2.02277 Vertex 6178 3.34961 16.7054 0 Vertex 6179 3.57819 16.7411 0 Vertex 6180 4.24078 16.7869 0 Vertex 6181 3.55278 16.6208 0 Vertex 6182 2.98023e-008 14.8709 -1.92782 Vertex 6183 2.80498 15.9919 -3.3934e-014 Vertex 6184 2.75683 15.9367 -3.3934e-014 Vertex 6185 0 14.9965 -1.93852 Vertex 6186 2.95535 15.9211 -3.3934e-014 Vertex 6187 1.94316 13.2229 -3.3934e-014 Vertex 6188 3.61298 16.6634 0 Vertex 6189 2.8546 15.9282 -3.3934e-014 Vertex 6190 3.02244 15.7242 -3.3934e-014 Vertex 6191 3.76942 16.5918 0 Vertex 6192 1.81783 13.2141 -3.3934e-014 Vertex 6193 2.95672 15.8032 -3.3934e-014 Vertex 6194 4.11681 16.5627 -3.3934e-014 Vertex 6195 2.04421 13.3557 -3.3934e-014 Vertex 6196 3.23384 15.1957 -3.3934e-014 Vertex 6197 3.90813 16.5094 0 Vertex 6198 2.05565 13.2563 -3.3934e-014 Vertex 6199 3.27522 15.1354 -3.3934e-014 Vertex 6200 3.84877 16.3839 -3.3934e-014 Vertex 6201 3.70698 13.769 -3.3934e-014 Vertex 6202 3.78484 16.2501 -3.3934e-014 Vertex 6203 4.54211 17.6482 0 Vertex 6204 3.60526 13.7603 -3.3934e-014 Vertex 6205 3.96803 17.0059 0 Vertex 6206 4.63196 17.6529 0 Vertex 6207 3.5036 13.7509 -3.3934e-014 Vertex 6208 4.63078 17.5543 0 Vertex 6209 3.30053 13.7297 -3.3934e-014 Vertex 6210 4.10265 17.1998 0 Vertex 6211 3.75769 16.3322 -3.3934e-014 Vertex 6212 3.40202 13.7407 -3.3934e-014 Vertex 6213 4.25908 17.0654 0 Vertex 6214 4.10068 17.1139 0 Vertex 6215 3.38065 13.9449 -3.3934e-014 Vertex 6216 4.3351 16.963 0 Vertex 6217 4.02978 17.1824 0 Vertex 6218 3.4838 13.9554 -3.3934e-014 Vertex 6219 4.25235 16.9777 0 Vertex 6220 3.97293 16.9495 0 Vertex 6221 2.94714 14.4816 -3.3934e-014 Vertex 6222 1.70973 15.452 0 Vertex 6223 1.73805 13.2434 -3.3934e-014 Vertex 6224 4.17344 17.048 0 Vertex 6225 1.61569 15.3902 -3.3934e-014 Vertex 6226 1.27079 15.3235 0 Vertex 6227 2.64323 16.1964 -3.3934e-014 Vertex 6228 4.03076 17.0979 0 Vertex 6229 1.54659 15.2233 0 Vertex 6230 2.69687 16.2563 -3.3934e-014 Vertex 6231 4.09705 17.0327 0 Vertex 6232 1.44167 15.2304 -3.3934e-014 Vertex 6233 4.41753 13.9101 -3.3934e-014 Vertex 6234 4.16034 16.8864 0 Vertex 6235 3.12924 14.6873 -3.3934e-014 Vertex 6236 -4.36436e-015 15.102 -0.200791 Vertex 6237 4.16956 16.9704 0 Vertex 6238 4.06827 16.8424 0 Vertex 6239 3.65335 15.9 0 Vertex 6240 4.09368 16.9634 0 Vertex 6241 3.16261 15.4836 0 Vertex 6242 3.73048 16.1361 -3.3934e-014 Vertex 6243 3.08934 16.1999 -3.3934e-014 Vertex 6244 4.8279 17.3619 -0.273357 Vertex 6245 3.67461 16.294 0 Vertex 6246 3.14693 14.1264 -3.3934e-014 Vertex 6247 4.8279 17.3573 -0.196259 Vertex 6248 2.4801 15.8665 -3.3934e-014 Vertex 6249 4.08649 16.8993 0 Vertex 6250 2.7962 16.2495 -3.3934e-014 Vertex 6251 2.70948 15.8753 -3.3934e-014 Vertex 6252 3.58341 16.4597 0 Vertex 6253 4.44253 17.6386 0 Vertex 6254 2.64747 15.6693 -3.3934e-014 Vertex 6255 2.4682 15.5673 -3.3934e-014 Vertex 6256 2.75938 15.8112 -3.3934e-014 Vertex 6257 2.9036 16.1061 -3.3934e-014 Vertex 6258 2.43436 15.7998 -3.3934e-014 Vertex 6259 2.648 15.7929 -3.3934e-014 Vertex 6260 3.59273 16.5513 0 Vertex 6261 2.50538 15.6137 -3.3934e-014 Vertex 6262 2.53656 15.7964 -3.3934e-014 Vertex 6263 2.26223 15.8611 -3.3934e-014 Vertex 6264 2.91028 15.6173 -3.3934e-014 Vertex 6265 2.5469 15.6663 -3.3934e-014 Vertex 6266 2.99807 16.2128 -3.3934e-014 Vertex 6267 2.85355 15.8052 -3.3934e-014 Vertex 6268 2.75536 15.6798 -3.3934e-014 Vertex 6269 1.269 15.5581 -3.3934e-014 Vertex 6270 1.46302 15.4267 0 Vertex 6271 2.80882 15.7501 -3.3934e-014 Vertex 6272 2.92573 15.5471 -3.3934e-014 Vertex 6273 1.3572 15.6074 -3.3934e-014 Vertex 6274 1.61889 12.9764 -3.3934e-014 Vertex 6275 2.83695 15.4965 -3.3934e-014 Vertex 6276 2.38912 15.7356 -3.3934e-014 Vertex 6277 3.27625 16.1473 0 Vertex 6278 3.13282 16.1239 -3.3934e-014 Vertex 6279 2.87637 15.5682 -3.3934e-014 Vertex 6280 2.34397 15.6702 -3.3934e-014 Vertex 6281 3.17926 16.1651 -3.3934e-014 Vertex 6282 2.81884 15.6128 -3.3934e-014 Vertex 6283 2.13881 15.6866 -3.3934e-014 Vertex 6284 2.35411 16.5467 0 Vertex 6285 2.22227 13.5696 -3.3934e-014 Vertex 6286 3.57773 14.0687 -3.3934e-014 Vertex 6287 3.83962 16.9672 0 Vertex 6288 2.92799 16.8342 0 Vertex 6289 3.65168 16.785 0 Vertex 6290 2.96917 16.7547 0 Vertex 6291 3.43516 14.4919 -3.3934e-014 Vertex 6292 3.6709 16.9648 0 Vertex 6293 3.79363 16.6926 0 Vertex 6294 3.33534 14.373 -3.3934e-014 Vertex 6295 3.36966 14.0482 -3.3934e-014 Vertex 6296 3.7635 16.7637 0 Vertex 6297 3.54237 14.4979 -3.3934e-014 Vertex 6298 3.77044 14.296 -3.3934e-014 Vertex 6299 3.9204 16.745 0 Vertex 6300 4.03129 16.9055 0 Vertex 6301 3.65647 14.3958 -3.3934e-014 Vertex 6302 3.69027 13.9739 -3.3934e-014 Vertex 6303 3.77817 14.1903 -3.3934e-014 Vertex 6304 3.98697 16.8477 0 Vertex 6305 3.66472 14.2882 -3.3934e-014 Vertex 6306 3.6818 14.0776 -3.3934e-014 Vertex 6307 4.02922 16.8664 0 Vertex 6308 2.29209 16.4742 -3.3934e-014 Vertex 6309 3.67325 14.1823 -3.3934e-014 Vertex 6310 1.88299 13.1283 -3.3934e-014 Vertex 6311 2.29854 16.3418 -3.3934e-014 Vertex 6312 3.56834 14.1734 -3.3934e-014 Vertex 6313 2.85427 16.049 -3.3934e-014 Vertex 6314 2.23004 16.4039 -3.3934e-014 Vertex 6315 3.67596 16.4516 0 Vertex 6316 3.99425 14.0995 -3.3934e-014 Vertex 6317 3.13965 16.7719 0 Vertex 6318 2.5344 16.3447 -3.3934e-014 Vertex 6319 4.20726 14.0063 -3.3934e-014 Vertex 6320 3.07224 16.7234 0 Vertex 6321 2.64137 16.3342 -3.3934e-014 Vertex 6322 2.95217 16.0428 -3.3934e-014 Vertex 6323 3.34663 14.2608 -3.3934e-014 Vertex 6324 3.11163 16.635 0 Vertex 6325 2.80786 16.3729 -3.3934e-014 Vertex 6326 2.95299 16.1628 -3.3934e-014 Vertex 6327 3.25292 14.1409 -3.3934e-014 Vertex 6328 3.04845 16.5876 0 Vertex 6329 2.85026 16.3061 -3.3934e-014 Vertex 6330 3.041 16.1492 -3.3934e-014 Vertex 6331 3.10031 14.3394 -3.3934e-014 Vertex 6332 2.98658 16.5357 0 Vertex 6333 3.00894 16.3403 -3.3934e-014 Vertex 6334 3.05077 16.0372 -3.3934e-014 Vertex 6335 3.13021 14.2343 -3.3934e-014 Vertex 6336 2.92516 16.4833 0 Vertex 6337 4.23466 14.5001 -3.3934e-014 Vertex 6338 3.70231 16.541 0 Vertex 6339 2.96397 16.4142 -3.3934e-014 Vertex 6340 3.72472 16.8292 0 Vertex 6341 1.31628 15.0624 -3.3934e-014 Vertex 6342 2.59678 14.5687 -3.3934e-014 Vertex 6343 3.85764 16.8274 0 Vertex 6344 2.41356 13.8098 -3.3934e-014 Vertex 6345 4.13622 14.5989 0 Vertex 6346 4.8279 17.1669 -0.269863 Vertex 6347 2.12127 13.5483 -3.3934e-014 Vertex 6348 3.61526 16.4197 0 Vertex 6349 3.71239 16.4014 0 Vertex 6350 0.95784 15.2151 0 Vertex 6351 3.62082 16.8567 0 Vertex 6352 3.72636 16.6449 0 Vertex 6353 3.6495 15.7937 0 Vertex 6354 3.84243 15.3859 -3.3934e-014 Vertex 6355 3.69767 16.8968 0 Vertex 6356 3.65504 16.5937 0 Vertex 6357 3.4599 15.9757 0 Vertex 6358 -4.36436e-015 14.9853 -0.390098 Vertex 6359 3.10511 16.3121 0 Vertex 6360 3.77377 16.9346 0 Vertex 6361 3.53497 16.0907 0 Vertex 6362 3.641 16.4955 0 Vertex 6363 1.70696 13.0536 -3.3934e-014 Vertex 6364 1.88307 15.4427 -3.3934e-014 Vertex 6365 4.8279 15.3914 -0.364252 Vertex 6366 0 15.0609 -1.4546 Vertex 6367 1.78994 12.9764 -3.3934e-014 Vertex 6368 3.81498 16.5401 0 Vertex 6369 1.97409 15.5211 -3.3934e-014 Vertex 6370 4.02293 16.3736 0 Vertex 6371 3.8787 16.4434 -3.3934e-014 Vertex 6372 5.21541e-008 14.8236 -1.24861 Vertex 6373 2.05845 15.4436 -3.3934e-014 Vertex 6374 4.35309 17.5351 0 Vertex 6375 3.85089 16.4837 0 Vertex 6376 2.90426 15.4731 -3.3934e-014 Vertex 6377 2.00174 15.1635 0 Vertex 6378 4.44163 17.5431 0 Vertex 6379 3.7453 16.495 0 Vertex 6380 1.96863 14.9699 0 Vertex 6381 0.980532 15.1629 0 Vertex 6382 2.4891 13.8143 -3.3934e-014 Vertex 6383 4.43636 17.4567 0 Vertex 6384 2.66451 13.9194 -3.3934e-014 Vertex 6385 3.75252 15.9106 -3.3934e-014 Vertex 6386 4.8279 14.9346 -0.664897 Vertex 6387 2.52828 14.0737 -3.3934e-014 Vertex 6388 3.79006 16.4458 0 Vertex 6389 0.608602 15.3103 0 Vertex 6390 2.55662 13.9992 -3.3934e-014 Vertex 6391 2.38973 13.9816 -3.3934e-014 Vertex 6392 3.89696 13.9892 -3.3934e-014 Vertex 6393 0 14.9275 -2.42165 Vertex 6394 2.82736 14.8377 -3.3934e-014 Vertex 6395 2.44588 14.0239 -3.3934e-014 Vertex 6396 4.26322 17.1484 0 Vertex 6397 3.36616 15.5863 -3.3934e-014 Vertex 6398 3.88312 14.1976 -3.3934e-014 Vertex 6399 2.98023e-008 14.7401 -2.01339 Vertex 6400 3.54997 14.3885 -3.3934e-014 Vertex 6401 2.07312 14.9139 -3.3934e-014 Vertex 6402 3.1877 16.0197 -3.3934e-014 Vertex 6403 0.218521 14.9011 0 Vertex 6404 2.05485 15.0099 -3.3934e-014 Vertex 6405 2.32697 14.7129 -3.3934e-014 Vertex 6406 0.77363 15.106 0 Vertex 6407 -4.36436e-015 14.8732 -0.288196 Vertex 6408 1.17885 15.512 -3.3934e-014 Vertex 6409 2.20644 14.9198 -3.3934e-014 Vertex 6410 0.944274 15.114 0 Vertex 6411 3.36174 16.5007 0 Vertex 6412 3.51755 16.1674 0 Vertex 6413 0 15.0778 -1.26222 Vertex 6414 2.89328 14.3957 -3.3934e-014 Vertex 6415 2.15368 14.8553 -3.3934e-014 Vertex 6416 3.55895 14.2798 -3.3934e-014 Vertex 6417 2.3723 14.7845 -3.3934e-014 Vertex 6418 0 15.1785 -1.3592 Vertex 6419 2.62664 15.1326 -3.3934e-014 Vertex 6420 1.54426 13.4738 -3.3934e-014 Vertex 6421 3.65213 15.497 -3.3934e-014 Vertex 6422 2.98401 15.5446 -3.3934e-014 Vertex 6423 2.68638 16.8719 0 Vertex 6424 2.50047 14.9582 -3.3934e-014 Vertex 6425 3.64581 16.0239 0 Vertex 6426 2.02671 14.871 -3.3934e-014 Vertex 6427 2.55324 14.3546 -3.3934e-014 Vertex 6428 1.65989 13.366 -3.3934e-014 Vertex 6429 3.4623 15.8771 0 Vertex 6430 2.21674 13.4868 -3.3934e-014 Vertex 6431 4.8279 16.9765 -0.182103 Vertex 6432 4.53219 14.6961 0 Vertex 6433 4.09846 14.1052 -3.3934e-014 Vertex 6434 3.55211 16 0 Vertex 6435 2.12571 13.3711 -3.3934e-014 Vertex 6436 3.30578 15.3963 0 Vertex 6437 3.92629 16.4464 -3.3934e-014 Vertex 6438 3.07893 15.4717 -3.3934e-014 Vertex 6439 1.40908 15.5187 0 Vertex 6440 2.21463 13.3861 -3.3934e-014 Vertex 6441 2.35814 15.5223 -3.3934e-014 Vertex 6442 3.92186 16.6504 0 Vertex 6443 3.18201 15.4032 0 Vertex 6444 1.22393 15.4195 -3.3934e-014 Vertex 6445 4.8279 13.9175 -0.142534 Vertex 6446 3.13742 15.9695 -3.3934e-014 Vertex 6447 3.86389 16.674 0 Vertex 6448 1.96716 13.1513 -3.3934e-014 Vertex 6449 2.05949 13.5329 -3.3934e-014 Vertex 6450 2.25653 14.623 -3.3934e-014 Vertex 6451 1.87945 12.9851 -3.3934e-014 Vertex 6452 3.91623 16.8839 0 Vertex 6453 1.36795 15.3734 0 Vertex 6454 4.8279 15.0478 -0.366942 Vertex 6455 2.72213 15.4816 -3.3934e-014 Vertex 6456 3.25103 16.3219 0 Vertex 6457 2.33615 14.0373 -3.3934e-014 Vertex 6458 3.8622 16.9168 0 Vertex 6459 3.85829 16.7213 0 Vertex 6460 2.33556 13.8067 -3.3934e-014 Vertex 6461 2.12034 13.4776 -3.3934e-014 Vertex 6462 4.3351 17.1601 0 Vertex 6463 2.98023e-008 14.8457 -2.11648 Vertex 6464 2.97382 15.033 -3.3934e-014 Vertex 6465 4.8279 15.0691 -0.195495 Vertex 6466 3.3777 15.7679 0 Vertex 6467 1.67354 13.725 -3.3934e-014 Vertex 6468 2.14328 15.0447 -3.3934e-014 Vertex 6469 2.41029 15.6142 -3.3934e-014 Vertex 6470 2.98023e-008 14.7157 -2.20303 Vertex 6471 3.74602 15.3857 -3.3934e-014 Vertex 6472 2.41925 13.8994 -3.3934e-014 Vertex 6473 3.56024 15.6945 0 Vertex 6474 3.33311 16.1899 0 Vertex 6475 2.22982 13.6676 -3.3934e-014 Face 1 1553 2132 485 Face 2 2498 5209 5265 Face 3 2101 3243 1415 Face 4 4468 4887 4490 Face 5 2914 1719 2540 Face 6 5950 5303 6013 Face 7 1985 3021 3020 Face 8 4332 4331 4425 Face 9 4087 3779 2038 Face 10 4952 4808 1357 Face 11 6082 6450 5347 Face 12 979 3139 3138 Face 13 1710 3735 4058 Face 14 981 3228 3227 Face 15 75 5080 4870 Face 16 558 3589 3586 Face 17 4748 4572 4747 Face 18 5234 5233 1157 Face 19 2922 929 2275 Face 20 3300 3938 1197 Face 21 5154 5056 4971 Face 22 3718 2310 788 Face 23 3125 3139 1741 Face 24 4759 4760 3188 Face 25 526 5392 5636 Face 26 5537 5539 2928 Face 27 3584 3034 3599 Face 28 5351 5683 871 Face 29 2793 2307 1337 Face 30 1174 5349 6408 Face 31 3015 2709 402 Face 32 5409 5401 5669 Face 33 2970 3707 6372 Face 34 4528 4953 2316 Face 35 4841 4842 4602 Face 36 2245 2246 2661 Face 37 838 1577 2331 Face 38 36 145 5171 Face 39 3711 2459 2270 Face 40 5407 5524 5410 Face 41 2513 2837 4159 Face 42 437 1670 795 Face 43 829 3113 1495 Face 44 153 741 174 Face 45 4981 5025 5026 Face 46 1335 3447 3436 Face 47 4504 4850 4851 Face 48 4571 4602 4842 Face 49 1113 696 112 Face 50 3939 1614 3682 Face 51 141 747 746 Face 52 1193 2347 4915 Face 53 4268 4086 4164 Face 54 5265 5209 279 Face 55 4799 1697 2560 Face 56 1089 3009 3010 Face 57 369 1705 370 Face 58 176 701 438 Face 59 4965 4994 4959 Face 60 2142 2143 1456 Face 61 5094 4995 4724 Face 62 3056 3055 1274 Face 63 2497 2981 1815 Face 64 253 243 250 Face 65 1248 3009 1089 Face 66 5629 5626 1241 Face 67 5267 36 5171 Face 68 3806 4183 4354 Face 69 812 446 1730 Face 70 1399 482 483 Face 71 4170 4263 4264 Face 72 436 176 175 Face 73 1903 1100 1343 Face 74 796 2353 1307 Face 75 6442 2183 3795 Face 76 4131 1936 3160 Face 77 944 6389 5437 Face 78 3662 4440 4136 Face 79 2654 2655 2252 Face 80 4863 4489 4862 Face 81 2619 1880 3162 Face 82 3228 981 3229 Face 83 3102 193 4547 Face 84 51 32 479 Face 85 5142 4130 4879 Face 86 735 51 259 Face 87 2823 3788 2700 Face 88 630 1781 1780 Face 89 1887 668 1003 Face 90 1735 1734 645 Face 91 1922 1891 130 Face 92 87 1177 419 Face 93 1553 1554 2132 Face 94 418 87 222 Face 95 447 1429 1729 Face 96 4054 816 4055 Face 97 638 51 717 Face 98 1918 723 306 Face 99 1226 175 1622 Face 100 1226 1813 175 Face 101 276 1792 852 Face 102 819 1498 582 Face 103 527 1170 2222 Face 104 17 1174 2414 Face 105 2501 3805 1638 Face 106 79 527 2209 Face 107 939 2820 1958 Face 108 3817 1288 3818 Face 109 4031 1719 2914 Face 110 3160 1936 2319 Face 111 1974 1975 3031 Face 112 2639 2634 2640 Face 113 606 3030 1975 Face 114 1877 2732 2715 Face 115 110 390 1263 Face 116 784 111 235 Face 117 245 1263 390 Face 118 1078 1358 61 Face 119 520 1522 1382 Face 120 1385 828 1555 Face 121 4550 4572 4748 Face 122 1399 483 1400 Face 123 209 151 2291 Face 124 4 329 64 Face 125 2897 2390 136 Face 126 6294 6291 868 Face 127 2961 66 2501 Face 128 410 6118 6022 Face 129 1336 2000 722 Face 130 5804 5440 5437 Face 131 2932 3792 2931 Face 132 161 2476 68 Face 133 1475 1436 538 Face 134 4501 4854 4500 Face 135 2148 2149 2150 Face 136 795 1670 898 Face 137 6 393 392 Face 138 513 2973 1350 Face 139 1159 5610 5213 Face 140 4309 2153 4109 Face 141 917 192 1904 Face 142 3143 2343 3537 Face 143 936 4440 3662 Face 144 3260 1440 2487 Face 145 254 250 104 Face 146 254 253 250 Face 147 966 1748 256 Face 148 2387 2755 2680 Face 149 5203 5204 948 Face 150 2475 1080 407 Face 151 289 2593 2017 Face 152 2345 3537 2343 Face 153 2501 178 2961 Face 154 2130 2958 178 Face 155 6 202 393 Face 156 6 685 215 Face 157 802 2070 297 Face 158 4606 4838 4605 Face 159 918 1474 663 Face 160 2128 655 1238 Face 161 4270 4085 4269 Face 162 1816 636 323 Face 163 1246 2996 1945 Face 164 234 329 710 Face 165 486 487 2134 Face 166 141 2585 504 Face 167 5610 6454 5215 Face 168 387 863 5609 Face 169 164 1136 859 Face 170 4080 4081 4348 Face 171 2501 2130 178 Face 172 22 2380 226 Face 173 2658 2248 2249 Face 174 2660 2661 2246 Face 175 286 377 810 Face 176 672 546 1203 Face 177 31 1908 3924 Face 178 31 2139 1908 Face 179 694 456 84 Face 180 2634 2630 2901 Face 181 4 93 771 Face 182 507 3706 2934 Face 183 3401 3413 3414 Face 184 498 5631 5809 Face 185 1327 95 1037 Face 186 1327 890 95 Face 187 1284 806 1121 Face 188 1325 422 628 Face 189 3774 3775 4139 Face 190 1024 1023 3777 Face 191 1869 1870 3037 Face 192 692 935 2584 Face 193 17 578 2202 Face 194 947 769 1823 Face 195 2961 3804 66 Face 196 2209 527 2222 Face 197 397 1101 1467 Face 198 838 2331 3532 Face 199 36 5601 310 Face 200 36 5267 5601 Face 201 5300 5312 5433 Face 202 1646 101 1216 Face 203 14 251 250 Face 204 249 1746 658 Face 205 212 468 267 Face 206 7 24 468 Face 207 3860 3470 3746 Face 208 286 811 445 Face 209 2365 2942 2983 Face 210 5 77 107 Face 211 867 108 500 Face 212 622 15 621 Face 213 1330 618 350 Face 214 874 929 1533 Face 215 2560 2559 4799 Face 216 391 913 912 Face 217 535 111 784 Face 218 1643 749 2093 Face 219 2190 112 696 Face 220 1140 1141 995 Face 221 2983 1917 2365 Face 222 849 12 551 Face 223 1327 114 890 Face 224 15 169 1534 Face 225 1433 1726 1007 Face 226 356 1462 907 Face 227 1717 3072 4052 Face 228 365 646 1710 Face 229 1457 219 1458 Face 230 1456 2143 1215 Face 231 2154 920 366 Face 232 4114 4113 2158 Face 233 1693 2963 2303 Face 234 1130 2203 787 Face 235 153 1739 741 Face 236 2969 5426 5863 Face 237 1070 121 1071 Face 238 4144 4171 4146 Face 239 1751 122 375 Face 240 42 1396 662 Face 241 4565 4566 4848 Face 242 984 1481 1482 Face 243 1433 908 1726 Face 244 4848 4566 4847 Face 245 3293 3294 1678 Face 246 1038 28 2574 Face 247 5243 1157 482 Face 248 4079 3135 2541 Face 249 203 1645 3315 Face 250 3705 976 2938 Face 251 1556 438 439 Face 252 1705 369 1704 Face 253 1000 667 1890 Face 254 454 2441 1092 Face 255 70 211 1889 Face 256 441 642 922 Face 257 321 131 821 Face 258 3340 2715 2732 Face 259 2053 1625 4196 Face 260 1053 153 132 Face 261 754 3034 3584 Face 262 3377 562 3184 Face 263 327 1566 2025 Face 264 1904 192 1886 Face 265 609 135 404 Face 266 1770 1529 910 Face 267 3355 974 208 Face 268 3355 876 974 Face 269 4470 2240 2666 Face 270 2670 2236 2237 Face 271 3554 1470 1557 Face 272 1679 2387 2680 Face 273 177 1340 1339 Face 274 4002 3554 4130 Face 275 51 290 259 Face 276 51 474 140 Face 277 12 1757 551 Face 278 1756 1084 1083 Face 279 302 1840 831 Face 280 303 492 142 Face 281 548 564 147 Face 282 2748 3391 3825 Face 283 1989 1335 3436 Face 284 510 2198 823 Face 285 292 5226 293 Face 286 1126 5746 5990 Face 287 2221 2862 2219 Face 288 2204 589 572 Face 289 754 3033 3034 Face 290 770 548 147 Face 291 500 866 867 Face 292 548 770 148 Face 293 463 1310 499 Face 294 768 150 149 Face 295 570 150 768 Face 296 1251 3361 3362 Face 297 64 151 4 Face 298 3005 351 3004 Face 299 1541 4906 2356 Face 300 49 1056 1057 Face 301 2971 153 1053 Face 302 2971 120 153 Face 303 1731 1732 1364 Face 304 1804 2138 643 Face 305 1325 155 422 Face 306 272 1137 1519 Face 307 2 156 53 Face 308 2 44 156 Face 309 23 723 1918 Face 310 1572 1704 369 Face 311 72 158 637 Face 312 72 129 295 Face 313 4182 1160 2167 Face 314 1145 42 475 Face 315 516 337 1272 Face 316 2699 2269 3291 Face 317 298 467 68 Face 318 422 155 1656 Face 319 3 162 1506 Face 320 418 222 162 Face 321 222 763 162 Face 322 2133 486 2134 Face 323 502 388 158 Face 324 841 1136 164 Face 325 5350 6297 6291 Face 326 416 5105 5151 Face 327 1856 4454 1855 Face 328 964 549 1162 Face 329 103 4737 3812 Face 330 103 619 484 Face 331 627 1101 614 Face 332 3186 2296 2866 Face 333 622 169 15 Face 334 622 873 169 Face 335 360 170 428 Face 336 1072 1749 1234 Face 337 2221 1435 1082 Face 338 1080 2475 930 Face 339 4438 4133 4134 Face 340 560 470 1424 Face 341 424 2086 1250 Face 342 321 821 173 Face 343 3193 2057 2055 Face 344 132 153 174 Face 345 52 666 1572 Face 346 3960 2310 3718 Face 347 276 1795 1227 Face 348 276 852 1795 Face 349 1457 1456 219 Face 350 532 1340 177 Face 351 3278 2950 3933 Face 352 3278 780 2960 Face 353 1082 1081 2221 Face 354 2380 22 1296 Face 355 6 180 685 Face 356 6 568 180 Face 357 655 660 1238 Face 358 885 1480 993 Face 359 2288 2343 3143 Face 360 2193 877 182 Face 361 3912 3933 2950 Face 362 3368 2343 2288 Face 363 2639 2630 2634 Face 364 770 147 534 Face 365 1884 1103 3550 Face 366 457 119 185 Face 367 2202 1174 17 Face 368 67 946 1999 Face 369 1047 1674 1921 Face 370 1036 630 1780 Face 371 109 618 1330 Face 372 733 2190 696 Face 373 115 1726 908 Face 374 1765 809 189 Face 375 483 190 1400 Face 376 483 345 190 Face 377 661 1752 1426 Face 378 1751 375 191 Face 379 1443 1028 1442 Face 380 1614 3939 1527 Face 381 44 716 156 Face 382 4671 4959 4461 Face 383 574 1522 520 Face 384 2316 4952 1357 Face 385 4600 4807 4776 Face 386 4721 1357 4808 Face 387 33 1078 244 Face 388 3429 864 3430 Face 389 638 474 51 Face 390 1498 819 575 Face 391 1455 677 1707 Face 392 702 1496 854 Face 393 1464 356 983 Face 394 124 658 1746 Face 395 269 2017 2593 Face 396 566 504 2585 Face 397 185 201 1 Face 398 1740 2929 1022 Face 399 80 202 6 Face 400 2994 1246 1945 Face 401 1944 2994 1945 Face 402 1944 2557 2994 Face 403 1387 1388 270 Face 404 1135 1325 628 Face 405 3055 1273 1274 Face 406 623 94 991 Face 407 1783 1782 632 Face 408 997 1671 380 Face 409 384 1692 670 Face 410 3135 4079 2068 Face 411 5631 5807 5809 Face 412 1240 209 3657 Face 413 4 209 93 Face 414 4 151 209 Face 415 149 210 768 Face 416 329 4 462 Face 417 439 922 642 Face 418 130 1891 211 Face 419 1312 1313 3802 Face 420 7 468 212 Face 421 948 5435 5203 Face 422 764 763 213 Face 423 2908 558 3586 Face 424 1091 1090 3011 Face 425 1009 2786 1361 Face 426 80 6 215 Face 427 759 216 327 Face 428 1490 2937 1224 Face 429 1151 325 1150 Face 430 1337 2307 957 Face 431 579 917 1904 Face 432 986 183 1940 Face 433 1215 219 1456 Face 434 644 645 1734 Face 435 29 220 473 Face 436 1817 262 2305 Face 437 87 221 222 Face 438 1136 841 1287 Face 439 49 222 221 Face 440 49 763 222 Face 441 3190 3696 762 Face 442 12 849 223 Face 443 397 614 1101 Face 444 167 103 224 Face 445 1145 1396 42 Face 446 3809 4490 4887 Face 447 537 1952 2173 Face 448 1736 3149 2196 Face 449 3550 945 1884 Face 450 161 18 227 Face 451 107 228 333 Face 452 1552 1553 485 Face 453 2120 229 451 Face 454 1815 2981 353 Face 455 655 230 654 Face 456 655 2128 976 Face 457 1374 844 1375 Face 458 18 467 231 Face 459 3662 1315 936 Face 460 3518 1024 3777 Face 461 533 312 207 Face 462 343 2212 2113 Face 463 3315 624 203 Face 464 64 329 234 Face 465 60 235 608 Face 466 403 245 913 Face 467 20 489 2284 Face 468 2272 229 2120 Face 469 168 538 539 Face 470 2369 1475 538 Face 471 2900 3663 1636 Face 472 2899 136 508 Face 473 3569 1875 3339 Face 474 373 330 561 Face 475 834 833 939 Face 476 56 2366 2428 Face 477 810 811 286 Face 478 1661 906 1662 Face 479 1671 1672 380 Face 480 701 176 436 Face 481 4686 911 4336 Face 482 4970 1849 4675 Face 483 61 244 1078 Face 484 61 1599 244 Face 485 3244 988 1415 Face 486 980 1263 245 Face 487 1079 246 766 Face 488 196 520 1382 Face 489 1133 982 803 Face 490 334 828 1385 Face 491 4002 3078 3554 Face 492 1716 116 1717 Face 493 1452 657 425 Face 494 2676 2233 2673 Face 495 75 250 243 Face 496 429 14 250 Face 497 659 1236 1237 Face 498 104 250 251 Face 499 34 252 297 Face 500 4360 4836 4608 Face 501 4736 4611 4625 Face 502 684 2559 5075 Face 503 4928 4713 4927 Face 504 3551 4357 4360 Face 505 76 2415 3820 Face 506 76 428 255 Face 507 50 256 1750 Face 508 319 1729 1429 Face 509 3189 2680 2754 Face 510 138 255 428 Face 511 3520 4559 4563 Face 512 4560 3188 4894 Face 513 2127 1340 532 Face 514 2127 3168 1340 Face 515 1485 664 1699 Face 516 4857 4498 4856 Face 517 1130 2697 2203 Face 518 401 1881 261 Face 519 324 1922 130 Face 520 1787 206 1143 Face 521 102 5233 5257 Face 522 482 1157 5233 Face 523 5150 5149 263 Face 524 4454 1856 1373 Face 525 3970 4231 4077 Face 526 573 379 265 Face 527 287 286 445 Face 528 1604 1165 1164 Face 529 43 267 468 Face 530 1865 1869 3037 Face 531 690 2584 935 Face 532 1096 3037 1870 Face 533 1683 3534 2260 Face 534 732 2426 2342 Face 535 836 2490 3373 Face 536 1039 1387 270 Face 537 920 271 366 Face 538 442 443 2165 Face 539 41 1284 1299 Face 540 41 806 1284 Face 541 3019 1610 313 Face 542 1132 1306 273 Face 543 4495 4496 4859 Face 544 1483 2075 652 Face 545 2739 604 2740 Face 546 3019 313 3020 Face 547 1790 276 157 Face 548 1790 1792 276 Face 549 2361 2983 2942 Face 550 1027 223 849 Face 551 636 1912 323 Face 552 1000 1890 999 Face 553 2943 862 309 Face 554 6465 5262 5260 Face 555 473 388 502 Face 556 164 859 280 Face 557 5869 5720 5274 Face 558 1349 146 2860 Face 559 443 282 2165 Face 560 3689 3860 3746 Face 561 1682 1887 1003 Face 562 1004 444 283 Face 563 1261 1853 2600 Face 564 1261 956 1853 Face 565 2231 285 2259 Face 566 2258 2653 2253 Face 567 1754 286 287 Face 568 1754 377 286 Face 569 4744 4830 4426 Face 570 1106 378 1755 Face 571 420 1038 2574 Face 572 2484 269 2593 Face 573 4818 4819 4646 Face 574 880 2175 2177 Face 575 140 290 51 Face 576 2005 198 529 Face 577 731 2337 40 Face 578 2338 1683 4094 Face 579 5221 292 5063 Face 580 6447 2183 6442 Face 581 5063 293 1210 Face 582 5063 292 293 Face 583 1639 2425 528 Face 584 545 107 333 Face 585 636 2006 1912 Face 586 158 72 295 Face 587 642 1556 439 Face 588 1731 1364 1570 Face 589 792 654 230 Face 590 215 685 459 Face 591 2827 1024 3518 Face 592 231 467 298 Face 593 1994 582 1498 Face 594 4875 3104 4322 Face 595 707 1404 202 Face 596 71 556 300 Face 597 1949 2999 3000 Face 598 1948 2998 2999 Face 599 1055 828 334 Face 600 1034 560 1424 Face 601 1185 1033 172 Face 602 25 492 303 Face 603 268 492 25 Face 604 268 98 492 Face 605 1974 305 2455 Face 606 1974 3031 305 Face 607 1706 370 1705 Face 608 198 2005 306 Face 609 5846 5922 5779 Face 610 5997 5303 5950 Face 611 5229 5220 5353 Face 612 1502 1507 5220 Face 613 36 5237 145 Face 614 36 310 5237 Face 615 5605 5234 1158 Face 616 5238 5237 310 Face 617 3136 2541 3135 Face 618 1158 5234 1157 Face 619 455 312 533 Face 620 455 126 2467 Face 621 973 313 1610 Face 622 3238 807 1060 Face 623 1051 1115 315 Face 624 3179 1490 1606 Face 625 1116 315 1115 Face 626 1116 938 315 Face 627 557 1743 1560 Face 628 349 1294 382 Face 629 1756 2226 1085 Face 630 12 223 317 Face 631 4107 4312 1595 Face 632 1084 1756 1085 Face 633 1459 1189 965 Face 634 4056 364 4057 Face 635 1152 504 566 Face 636 113 277 320 Face 637 431 321 173 Face 638 3342 2715 3340 Face 639 619 540 484 Face 640 8 21 322 Face 641 1143 394 1787 Face 642 262 1817 323 Face 643 997 324 1671 Face 644 997 1922 324 Face 645 217 325 1151 Face 646 217 1906 325 Face 647 961 2227 2001 Face 648 961 2404 2227 Face 649 39 327 2039 Face 650 1803 217 1151 Face 651 3687 2992 3743 Face 652 787 2203 2078 Face 653 1437 329 2372 Face 654 1437 710 329 Face 655 10 784 235 Face 656 543 561 330 Face 657 3234 729 3235 Face 658 3233 1344 331 Face 659 362 332 1695 Face 660 34 297 555 Face 661 1222 2365 1917 Face 662 294 545 333 Face 663 19 1076 247 Face 664 807 1407 3434 Face 665 56 2367 2366 Face 666 834 318 2430 Face 667 875 1330 350 Face 668 2818 2819 1021 Face 669 2215 2720 2719 Face 670 518 1021 2819 Face 671 2435 1182 3038 Face 672 1725 187 338 Face 673 1669 898 1670 Face 674 1669 899 898 Face 675 211 1668 130 Face 676 211 70 1668 Face 677 900 921 440 Face 678 4116 2161 4117 Face 679 118 1888 283 Face 680 2159 4114 2158 Face 681 533 343 233 Face 682 384 342 2336 Face 683 159 344 345 Face 684 159 102 344 Face 685 37 345 344 Face 686 676 1468 481 Face 687 4428 612 223 Face 688 2982 1217 5302 Face 689 573 347 396 Face 690 2543 311 2781 Face 691 5546 5841 5843 Face 692 524 41 1299 Face 693 1773 634 736 Face 694 1595 1579 2392 Face 695 1365 797 1111 Face 696 1209 3780 1492 Face 697 2809 1645 203 Face 698 3508 352 2788 Face 699 2272 352 229 Face 700 2272 2788 352 Face 701 2081 353 123 Face 702 2081 1815 353 Face 703 4568 4569 4845 Face 704 970 1359 1473 Face 705 4843 4844 4570 Face 706 124 1746 1465 Face 707 968 1463 355 Face 708 968 357 1463 Face 709 1747 967 199 Face 710 2670 2237 2669 Face 711 2239 4469 2667 Face 712 2386 359 1430 Face 713 256 1460 966 Face 714 256 50 1460 Face 715 76 360 428 Face 716 389 1749 1072 Face 717 4013 4012 3207 Face 718 2071 587 361 Face 719 4928 4783 4713 Face 720 34 555 362 Face 721 103 549 619 Face 722 103 3812 363 Face 723 1458 364 4056 Face 724 1458 219 364 Face 725 1709 365 1710 Face 726 1709 117 365 Face 727 1733 644 1734 Face 728 1733 2147 644 Face 729 2145 2146 117 Face 730 1363 1364 1732 Face 731 677 1706 1707 Face 732 677 370 1706 Face 733 2119 1227 1367 Face 734 2119 276 1227 Face 735 721 2020 1368 Face 736 721 157 2020 Face 737 1297 3888 2748 Face 738 5817 1241 5626 Face 739 2466 1639 1129 Face 740 2466 2425 1639 Face 741 59 373 561 Face 742 896 1575 1641 Face 743 3030 3031 1975 Face 744 2094 1643 2093 Face 745 189 1659 260 Face 746 189 809 1659 Face 747 2657 2658 2249 Face 748 1700 1699 376 Face 749 1753 377 1754 Face 750 2250 2657 2249 Face 751 2259 1107 1703 Face 752 2259 285 1107 Face 753 396 379 573 Face 754 1202 672 1203 Face 755 4083 4084 4271 Face 756 206 1787 1786 Face 757 2701 1781 630 Face 758 4348 4081 4347 Face 759 1598 736 737 Face 760 1598 1773 736 Face 761 1294 686 382 Face 762 221 87 383 Face 763 761 2297 728 Face 764 761 385 2297 Face 765 1166 385 761 Face 766 1166 4072 385 Face 767 594 386 1200 Face 768 594 177 386 Face 769 454 387 1159 Face 770 72 863 387 Face 771 280 388 473 Face 772 471 72 637 Face 773 1796 817 602 Face 774 4050 515 4051 Face 775 2561 913 391 Face 776 2561 914 913 Face 777 4933 4673 4978 Face 778 1406 1423 2752 Face 779 4815 2136 1404 Face 780 5104 4683 4873 Face 781 708 1404 707 Face 782 708 1308 1404 Face 783 1144 394 1143 Face 784 1144 713 394 Face 785 1590 395 1069 Face 786 3170 2022 1347 Face 787 2129 1400 2266 Face 788 90 379 396 Face 789 3810 4553 3809 Face 790 985 1216 1472 Face 791 4837 4838 4606 Face 792 1434 2051 1008 Face 793 2213 743 1110 Face 794 1380 2152 4471 Face 795 1110 2006 636 Face 796 1110 743 2006 Face 797 1 401 261 Face 798 1 201 401 Face 799 3237 3236 1989 Face 800 144 1609 1608 Face 801 60 3248 1779 Face 802 3403 3402 3415 Face 803 1116 404 938 Face 804 188 609 404 Face 805 218 1119 1120 Face 806 218 395 1119 Face 807 2607 1120 801 Face 808 73 218 1120 Face 809 5377 5750 5748 Face 810 2174 372 2621 Face 811 1043 5518 6179 Face 812 1296 22 2597 Face 813 146 1425 592 Face 814 146 88 1425 Face 815 6264 414 5802 Face 816 6283 776 5713 Face 817 5637 5345 6086 Face 818 415 6424 5653 Face 819 5288 6154 6443 Face 820 5288 5694 6154 Face 821 6460 5884 3353 Face 822 5730 6342 6427 Face 823 5682 5685 5403 Face 824 5885 6154 5694 Face 825 5882 5388 5356 Face 826 5882 6071 5388 Face 827 2896 5459 6327 Face 828 1855 4454 4832 Face 829 8 417 21 Face 830 619 549 417 Face 831 3 418 162 Face 832 1507 1859 1177 Face 833 1859 419 1177 Face 834 5208 5358 2903 Face 835 3148 3149 1736 Face 836 927 2329 2295 Face 837 1344 3450 3449 Face 838 1913 3254 2775 Face 839 1374 422 1656 Face 840 1374 204 422 Face 841 3529 3528 1845 Face 842 1017 2040 423 Face 843 3308 3309 751 Face 844 3012 1091 3011 Face 845 878 1453 398 Face 846 878 426 1453 Face 847 2290 426 878 Face 848 2678 2679 2677 Face 849 2679 2232 2677 Face 850 2382 1594 656 Face 851 257 428 170 Face 852 257 138 428 Face 853 75 429 250 Face 854 2754 2680 2755 Face 855 2 430 197 Face 856 2 53 430 Face 857 2801 1091 3012 Face 858 30 610 431 Face 859 532 432 139 Face 860 594 248 432 Face 861 2395 2396 3664 Face 862 2287 1802 433 Face 863 581 609 188 Face 864 1332 1769 1333 Face 865 38 695 2112 Face 866 38 314 695 Face 867 2443 1774 1114 Face 868 242 9 700 Face 869 1720 437 795 Face 870 1720 858 437 Face 871 924 438 701 Face 872 924 439 438 Face 873 339 1851 1515 Face 874 339 1894 1851 Face 875 1894 440 921 Face 876 1894 339 440 Face 877 2137 441 922 Face 878 4119 2163 4120 Face 879 2161 2162 4117 Face 880 1666 443 442 Face 881 283 902 118 Face 882 283 444 902 Face 883 3855 3746 3470 Face 884 903 902 444 Face 885 904 445 811 Face 886 3468 3855 3470 Face 887 1767 446 812 Face 888 1767 358 446 Face 889 1728 447 1729 Face 890 2242 2665 2241 Face 891 1727 448 449 Face 892 2663 2244 2662 Face 893 1764 449 448 Face 894 1764 450 449 Face 895 1477 450 1764 Face 896 4853 4502 4852 Face 897 4503 4504 4851 Face 898 994 1488 1489 Face 899 3054 1273 3055 Face 900 2446 1414 1273 Face 901 2478 692 2584 Face 902 1895 937 3953 Face 903 72 454 129 Face 904 72 387 454 Face 905 233 455 533 Face 906 2441 454 1159 Face 907 150 456 149 Face 908 1250 2086 2085 Face 909 1 457 185 Face 910 1 261 457 Face 911 2195 814 530 Face 912 2195 2004 814 Face 913 297 459 555 Face 914 297 2070 2003 Face 915 1012 460 1398 Face 916 2027 3536 1020 Face 917 406 1099 405 Face 918 406 801 1099 Face 919 5544 6192 3698 Face 920 2372 329 462 Face 921 1311 463 3590 Face 922 1311 1310 463 Face 923 2033 3507 465 Face 924 2033 2035 3507 Face 925 6407 3651 3954 Face 926 3516 1040 2032 Face 927 3641 466 2605 Face 928 3649 5497 3643 Face 929 161 467 18 Face 930 161 68 467 Face 931 105 468 24 Face 932 105 43 468 Face 933 5027 3099 5025 Face 934 3215 3112 830 Face 935 142 1867 303 Face 936 4578 1866 4897 Face 937 2904 471 637 Face 938 2904 6365 5854 Face 939 220 4171 4144 Face 940 220 29 738 Face 941 164 473 220 Face 942 164 280 473 Face 943 197 474 638 Face 944 575 854 1496 Face 945 2650 2651 2256 Face 946 1201 1145 475 Face 947 87 476 383 Face 948 87 419 476 Face 949 1833 2453 1832 Face 950 3059 1976 1827 Face 951 1251 3360 3361 Face 952 3573 1971 3576 Face 953 717 4460 4729 Face 954 717 51 479 Face 955 2 480 44 Face 956 2 197 480 Face 957 2066 481 674 Face 958 2066 676 481 Face 959 102 482 5233 Face 960 102 159 482 Face 961 159 483 482 Face 962 159 345 483 Face 963 224 484 540 Face 964 224 103 484 Face 965 4338 4465 5419 Face 966 4338 4400 4465 Face 967 223 1355 992 Face 968 223 612 1355 Face 969 1211 487 486 Face 970 1211 5367 5362 Face 971 163 488 213 Face 972 1745 2132 1554 Face 973 2069 489 82 Face 974 2069 2284 489 Face 975 2369 1635 1475 Face 976 3659 3187 2610 Face 977 5191 6463 2535 Face 978 3164 2584 690 Face 979 304 492 98 Face 980 304 142 492 Face 981 2125 2870 1954 Face 982 2125 494 2870 Face 983 825 2867 665 Face 984 5159 1193 4915 Face 985 3485 495 464 Face 986 2210 3522 3679 Face 987 5344 5904 5907 Face 988 1301 871 5675 Face 989 5318 5874 5872 Face 990 5318 872 497 Face 991 873 872 5318 Face 992 1837 5817 5626 Face 993 6428 2633 6420 Face 994 2640 2634 499 Face 995 3823 2748 3825 Face 996 3823 1297 2748 Face 997 3271 501 1075 Face 998 3271 3270 501 Face 999 1817 1816 323 Face 1000 29 473 502 Face 1001 3059 1977 1976 Face 1002 143 1006 503 Face 1003 1153 504 1152 Face 1004 1153 1083 504 Face 1005 1917 3286 1934 Face 1006 113 320 1759 Face 1007 277 506 85 Face 1008 277 113 506 Face 1009 3523 507 3478 Face 1010 3523 3706 507 Face 1011 238 3478 507 Face 1012 3187 1636 2683 Face 1013 2900 3713 3663 Face 1014 101 542 509 Face 1015 3270 510 2107 Face 1016 3269 2198 510 Face 1017 1591 511 916 Face 1018 1591 611 511 Face 1019 1146 2998 1948 Face 1020 1146 2997 2998 Face 1021 1351 513 1350 Face 1022 1351 514 513 Face 1023 2403 514 1351 Face 1024 2403 653 514 Face 1025 1200 1691 4049 Face 1026 1200 386 1691 Face 1027 3127 1019 4896 Face 1028 3127 599 1019 Face 1029 2214 2720 2215 Face 1030 2214 3171 2720 Face 1031 2756 1184 2757 Face 1032 2689 2859 2753 Face 1033 3262 1148 836 Face 1034 1034 1424 519 Face 1035 247 1384 19 Face 1036 247 1539 1384 Face 1037 4858 4859 4496 Face 1038 122 1751 1487 Face 1039 1996 522 1995 Face 1040 1996 5830 522 Face 1041 2040 523 423 Face 1042 2040 525 523 Face 1043 943 1173 5828 Face 1044 1536 805 524 Face 1045 1015 2389 55 Face 1046 6097 5524 6102 Face 1047 2223 5850 2420 Face 1048 6273 6439 5850 Face 1049 17 2200 284 Face 1050 17 2414 2200 Face 1051 1772 3159 2319 Face 1052 930 2475 2320 Face 1053 2333 2004 2195 Face 1054 1105 1331 2225 Face 1055 386 2301 1691 Face 1056 386 2334 2301 Face 1057 177 2334 386 Face 1058 177 1339 2334 Face 1059 594 532 177 Face 1060 45 432 532 Face 1061 48 533 207 Face 1062 48 343 533 Face 1063 1587 3062 3063 Face 1064 184 16 534 Face 1065 373 535 330 Face 1066 895 3628 3629 Face 1067 305 2456 2455 Face 1068 3378 562 3377 Face 1069 2302 537 837 Face 1070 1993 3148 1736 Face 1071 2058 909 69 Face 1072 2058 2073 909 Face 1073 2707 2479 1101 Face 1074 2707 3957 2479 Face 1075 322 540 619 Face 1076 2041 101 1646 Face 1077 3756 2043 2041 Face 1078 6433 5488 6316 Face 1079 2875 2041 1646 Face 1080 2875 1264 2041 Face 1081 1011 543 330 Face 1082 2750 4622 2135 Face 1083 1218 544 1217 Face 1084 1218 5060 544 Face 1085 5 545 294 Face 1086 5 107 545 Face 1087 2067 4195 3974 Face 1088 1204 2265 1775 Face 1089 2019 3559 1077 Face 1090 2019 3560 3559 Face 1091 58 548 1346 Face 1092 58 143 548 Face 1093 363 549 103 Face 1094 363 1162 549 Face 1095 1960 550 1961 Face 1096 141 504 550 Face 1097 1758 551 1757 Face 1098 320 277 551 Face 1099 2591 1243 601 Face 1100 2591 78 1243 Face 1101 335 2385 887 Face 1102 3736 4001 3671 Face 1103 2902 1586 3570 Face 1104 1587 3063 1254 Face 1105 332 555 459 Face 1106 332 362 555 Face 1107 1949 1948 2999 Face 1108 173 821 556 Face 1109 3791 3926 3790 Face 1110 152 316 1744 Face 1111 3012 2469 2801 Face 1112 3013 3611 2469 Face 1113 2863 559 3527 Face 1114 3004 2828 3307 Face 1115 303 1282 1514 Face 1116 303 1867 1282 Face 1117 239 832 1010 Face 1118 239 682 832 Face 1119 895 1641 3628 Face 1120 895 896 1641 Face 1121 187 1048 338 Face 1122 187 588 1048 Face 1123 143 564 548 Face 1124 1834 2453 1833 Face 1125 2432 565 318 Face 1126 2432 1960 565 Face 1127 2391 566 2585 Face 1128 4022 1772 4021 Face 1129 2426 1259 745 Face 1130 2426 732 1259 Face 1131 392 568 6 Face 1132 5024 4683 4809 Face 1133 4681 5104 4873 Face 1134 1309 610 569 Face 1135 92 570 35 Face 1136 1223 3316 958 Face 1137 1902 571 134 Face 1138 1902 1338 571 Face 1139 146 2419 894 Face 1140 146 1349 2419 Face 1141 11 573 265 Face 1142 11 347 573 Face 1143 62 1539 247 Face 1144 1538 3100 4527 Face 1145 1497 575 1496 Face 1146 1497 1498 575 Face 1147 2806 709 2995 Face 1148 1576 711 2084 Face 1149 1306 577 273 Face 1150 1306 348 577 Face 1151 1942 578 17 Face 1152 1343 2798 3660 Face 1153 3124 1903 2794 Face 1154 1737 917 579 Face 1155 277 580 551 Face 1156 277 85 580 Face 1157 314 581 695 Face 1158 314 609 581 Face 1159 4380 4090 4089 Face 1160 299 1684 2079 Face 1161 1632 6181 2185 Face 1162 6169 6281 6277 Face 1163 2341 1633 408 Face 1164 2341 585 1633 Face 1165 2330 585 2341 Face 1166 1854 2578 2577 Face 1167 3296 1939 1677 Face 1168 1196 2566 2300 Face 1169 2539 587 2071 Face 1170 2539 689 587 Face 1171 4267 4268 4164 Face 1172 1673 1048 588 Face 1173 3305 3306 1569 Face 1174 88 146 2327 Face 1175 3375 590 3376 Face 1176 1609 973 1610 Face 1177 3047 847 2282 Face 1178 3332 3331 591 Face 1179 2894 1117 2173 Face 1180 5276 5724 2406 Face 1181 2047 1338 758 Face 1182 3884 1933 2050 Face 1183 45 594 432 Face 1184 45 532 594 Face 1185 1799 595 1594 Face 1186 4479 4415 4414 Face 1187 1346 596 58 Face 1188 2638 5814 5661 Face 1189 16 597 1298 Face 1190 16 184 597 Face 1191 1690 3767 3253 Face 1192 2026 2598 2705 Face 1193 2711 599 3127 Face 1194 2711 888 599 Face 1195 2176 2428 2366 Face 1196 4639 5008 5048 Face 1197 5112 2587 5111 Face 1198 1342 288 2773 Face 1199 1594 2355 656 Face 1200 1594 595 2355 Face 1201 1579 4311 4427 Face 1202 2064 1961 603 Face 1203 275 2444 1411 Face 1204 275 3052 2444 Face 1205 751 752 3185 Face 1206 3316 1223 605 Face 1207 2096 3029 3028 Face 1208 2096 1278 3029 Face 1209 235 607 783 Face 1210 235 60 607 Face 1211 111 608 235 Face 1212 699 3029 1278 Face 1213 434 609 314 Face 1214 1647 135 609 Face 1215 321 610 1309 Face 1216 321 431 610 Face 1217 73 1592 1069 Face 1218 3876 2350 2351 Face 1219 2298 1356 6055 Face 1220 2298 2393 1356 Face 1221 2704 613 2858 Face 1222 3105 4322 3104 Face 1223 2171 1216 985 Face 1224 2171 1646 1216 Face 1225 1073 1074 3437 Face 1226 74 2488 615 Face 1227 3094 616 1508 Face 1228 3262 836 3373 Face 1229 109 617 618 Face 1230 109 696 617 Face 1231 1111 618 617 Face 1232 1111 797 618 Face 1233 8 619 417 Face 1234 8 322 619 Face 1235 5619 6234 5377 Face 1236 1128 705 2618 Face 1237 2446 3052 275 Face 1238 205 622 621 Face 1239 1326 622 205 Face 1240 1326 873 622 Face 1241 2745 786 2449 Face 1242 108 867 623 Face 1243 3314 624 3315 Face 1244 3314 3007 624 Face 1245 3493 625 798 Face 1246 3493 1541 625 Face 1247 5352 6274 5270 Face 1248 1298 597 626 Face 1249 101 627 614 Face 1250 101 509 627 Face 1251 204 628 422 Face 1252 3231 1323 3232 Face 1253 421 1323 3231 Face 1254 1393 718 1388 Face 1255 316 1743 1744 Face 1256 316 631 1743 Face 1257 1597 631 316 Face 1258 3994 4080 4388 Face 1259 4211 4080 3994 Face 1260 2305 262 632 Face 1261 262 1783 632 Face 1262 262 1810 1783 Face 1263 2061 4427 4311 Face 1264 349 382 1286 Face 1265 2076 2977 1951 Face 1266 2076 2976 2977 Face 1267 1109 636 1816 Face 1268 1109 1110 636 Face 1269 388 637 158 Face 1270 388 2904 637 Face 1271 480 638 717 Face 1272 480 197 638 Face 1273 176 639 175 Face 1274 176 640 639 Face 1275 438 1571 176 Face 1276 438 296 1571 Face 1277 296 1570 1571 Face 1278 296 1731 1570 Face 1279 47 1804 643 Face 1280 47 1556 1804 Face 1281 2147 2148 644 Face 1282 367 47 643 Face 1283 2150 644 2148 Face 1284 2150 645 644 Face 1285 2139 645 2150 Face 1286 2139 31 645 Face 1287 31 1735 645 Face 1288 3066 3942 1735 Face 1289 4333 3080 4062 Face 1290 319 1429 1760 Face 1291 2948 2727 1906 Face 1292 957 2307 648 Face 1293 313 1985 3020 Face 1294 1060 807 3432 Face 1295 2857 2504 3211 Face 1296 24 7 650 Face 1297 1484 651 237 Face 1298 4493 4862 4489 Face 1299 1436 652 538 Face 1300 4497 4858 4496 Face 1301 3003 2636 1352 Face 1302 3003 791 2636 Face 1303 459 2003 1544 Face 1304 459 297 2003 Face 1305 1910 655 654 Face 1306 1910 660 655 Face 1307 427 1451 1450 Face 1308 2234 2673 2233 Face 1309 2671 2672 2235 Face 1310 249 658 1235 Face 1311 425 1236 659 Face 1312 425 657 1236 Face 1313 4840 4841 4603 Face 1314 1454 425 659 Face 1315 1478 660 1910 Face 1316 4603 4841 4602 Face 1317 2065 1427 883 Face 1318 2065 1428 1427 Face 1319 4861 4862 4493 Face 1320 1428 2065 662 Face 1321 4498 4499 4856 Face 1322 274 236 1476 Face 1323 4854 4855 4500 Face 1324 260 1659 1469 Face 1325 182 2579 2193 Face 1326 182 2729 2579 Face 1327 175 666 1622 Face 1328 175 639 666 Face 1329 1808 1001 726 Face 1330 4110 2155 4111 Face 1331 2155 2156 4111 Face 1332 1807 669 1002 Face 1333 384 1806 342 Face 1334 384 670 1806 Face 1335 4745 4442 4828 Face 1336 91 669 1631 Face 1337 63 1703 4442 Face 1338 63 266 1703 Face 1339 266 1603 1163 Face 1340 266 63 1603 Face 1341 1202 673 672 Face 1342 2254 2649 2255 Face 1343 2266 2648 2267 Face 1344 190 675 2264 Face 1345 345 675 190 Face 1346 345 37 675 Face 1347 1486 676 2066 Face 1348 4181 4889 4180 Face 1349 1713 1368 813 Face 1350 1713 721 1368 Face 1351 395 1118 1119 Face 1352 1846 1847 1118 Face 1353 2326 679 2602 Face 1354 3145 2274 1569 Face 1355 3012 3013 2469 Face 1356 3308 751 3185 Face 1357 3608 3619 3613 Face 1358 3184 562 681 Face 1359 896 897 1575 Face 1360 59 832 682 Face 1361 5244 5269 5777 Face 1362 210 149 1242 Face 1363 4881 4623 4880 Face 1364 4881 1697 4623 Face 1365 332 685 1695 Face 1366 332 459 685 Face 1367 383 1295 1056 Face 1368 1287 841 4324 Face 1369 3367 687 2553 Face 1370 3367 1233 687 Face 1371 3710 688 2611 Face 1372 3710 1125 688 Face 1373 3800 689 2539 Face 1374 2535 6463 2536 Face 1375 934 3866 1653 Face 1376 6182 2967 6177 Face 1377 3749 691 3327 Face 1378 3749 3334 691 Face 1379 4124 4307 4306 Face 1380 2493 3733 1654 Face 1381 3172 2724 1612 Face 1382 2048 2710 3677 Face 1383 149 694 1242 Face 1384 149 456 694 Face 1385 435 695 581 Face 1386 1114 1774 2111 Face 1387 1052 696 1113 Face 1388 1052 617 696 Face 1389 3522 697 3679 Face 1390 1499 2050 1933 Face 1391 294 698 5 Face 1392 1934 2424 3476 Face 1393 1722 2094 2095 Face 1394 1722 1643 2094 Face 1395 436 960 701 Face 1396 436 2111 1774 Face 1397 9 925 700 Face 1398 9 128 925 Face 1399 2021 702 1943 Face 1400 2021 1496 702 Face 1401 1219 703 4400 Face 1402 1219 5611 5061 Face 1403 5752 6287 5754 Face 1404 5446 5867 6056 Face 1405 40 2433 731 Face 1406 40 620 2433 Face 1407 4379 2510 2515 Face 1408 1649 932 1791 Face 1409 2974 1350 2973 Face 1410 71 708 707 Face 1411 300 708 71 Face 1412 300 820 708 Face 1413 2805 709 2806 Face 1414 2997 1146 1087 Face 1415 84 710 1437 Face 1416 1576 2084 2083 Face 1417 1581 3363 3364 Face 1418 1581 824 3363 Face 1419 323 1810 262 Face 1420 323 1912 1810 Face 1421 1811 713 1144 Face 1422 1811 726 713 Face 1423 1223 1970 605 Face 1424 92 715 714 Face 1425 35 715 92 Face 1426 35 1369 715 Face 1427 5157 4905 195 Face 1428 5121 4208 4432 Face 1429 44 717 4729 Face 1430 44 480 717 Face 1431 270 718 3325 Face 1432 270 1388 718 Face 1433 4350 1513 4349 Face 1434 1514 1282 719 Face 1435 1319 937 1508 Face 1436 3489 2490 720 Face 1437 306 1712 198 Face 1438 306 723 1712 Face 1439 99 2001 2227 Face 1440 2601 648 2307 Face 1441 157 1711 1790 Face 1442 157 721 1711 Face 1443 3330 724 891 Face 1444 3329 3285 950 Face 1445 3285 725 950 Face 1446 3285 3255 725 Face 1447 400 1809 278 Face 1448 400 399 1809 Face 1449 3998 3668 3692 Face 1450 1567 1784 727 Face 1451 1093 2152 1380 Face 1452 1093 761 728 Face 1453 331 729 3234 Face 1454 2322 1073 3437 Face 1455 1074 730 3437 Face 1456 2487 1440 3272 Face 1457 2374 731 2433 Face 1458 4096 1721 3154 Face 1459 1721 3504 2338 Face 1460 57 2617 2339 Face 1461 109 733 696 Face 1462 1533 929 2921 Face 1463 2025 734 327 Face 1464 2303 3737 2552 Face 1465 4562 4561 4733 Face 1466 32 51 735 Face 1467 1071 736 634 Face 1468 1071 1285 736 Face 1469 1285 737 736 Face 1470 4145 4172 4006 Face 1471 472 738 1366 Face 1472 4172 4145 4171 Face 1473 29 1366 738 Face 1474 29 1108 1366 Face 1475 1915 2038 3778 Face 1476 495 3485 3691 Face 1477 2962 1693 1389 Face 1478 2962 2963 1693 Face 1479 1738 742 3748 Face 1480 1738 1740 742 Face 1481 4109 2228 2152 Face 1482 399 400 1381 Face 1483 2598 3178 2705 Face 1484 2598 1879 3178 Face 1485 5008 5049 5048 Face 1486 2916 200 2427 Face 1487 1957 746 747 Face 1488 1957 959 746 Face 1489 2821 1958 2820 Face 1490 2821 567 1958 Face 1491 3010 1090 1089 Face 1492 3010 3011 1090 Face 1493 305 3032 3033 Face 1494 305 3031 3032 Face 1495 424 3309 2086 Face 1496 424 751 3309 Face 1497 1252 751 424 Face 1498 1252 752 751 Face 1499 1253 2910 3360 Face 1500 3580 2457 3582 Face 1501 2456 3033 754 Face 1502 2456 305 3033 Face 1503 1254 3064 3577 Face 1504 1254 3063 3064 Face 1505 184 755 1149 Face 1506 2622 3370 755 Face 1507 3473 1256 2622 Face 1508 3473 1841 1256 Face 1509 314 1606 434 Face 1510 314 38 1606 Face 1511 2034 758 759 Face 1512 2034 2047 758 Face 1513 1857 759 758 Face 1514 2395 3664 1531 Face 1515 207 1685 48 Face 1516 3183 4076 4074 Face 1517 1167 761 1093 Face 1518 1167 1166 761 Face 1519 2790 1541 3493 Face 1520 2790 4906 1541 Face 1521 163 763 4630 Face 1522 163 213 763 Face 1523 162 764 5222 Face 1524 162 763 764 Face 1525 1258 765 948 Face 1526 1258 1379 765 Face 1527 33 766 1078 Face 1528 1383 864 3429 Face 1529 1369 767 715 Face 1530 1369 5269 5244 Face 1531 35 768 210 Face 1532 35 570 768 Face 1533 79 1568 527 Face 1534 2205 1762 2022 Face 1535 16 770 534 Face 1536 16 148 770 Face 1537 462 2371 2372 Face 1538 462 4 771 Face 1539 275 1414 2446 Face 1540 1412 949 2102 Face 1541 5246 773 5252 Face 1542 5932 5323 5205 Face 1543 307 5998 6370 Face 1544 5282 5311 1504 Face 1545 6349 6245 6211 Face 1546 5833 5710 5424 Face 1547 5418 5662 5671 Face 1548 5418 5660 5662 Face 1549 5813 777 5794 Face 1550 5704 5835 5664 Face 1551 5670 778 5288 Face 1552 5402 5414 778 Face 1553 525 779 523 Face 1554 6254 5545 6268 Face 1555 3277 780 3278 Face 1556 3277 3276 780 Face 1557 1800 2703 3937 Face 1558 1842 523 781 Face 1559 1010 782 239 Face 1560 2716 1876 4613 Face 1561 4974 1876 2716 Face 1562 2437 235 783 Face 1563 330 784 1011 Face 1564 330 535 784 Face 1565 2743 839 2744 Face 1566 2742 1139 785 Face 1567 2744 786 2745 Face 1568 2744 839 786 Face 1569 1620 2210 3679 Face 1570 1935 1130 787 Face 1571 3175 1675 3174 Face 1572 3175 3176 1675 Face 1573 1676 3675 3851 Face 1574 1676 1532 3675 Face 1575 2396 1931 1926 Face 1576 1878 1901 2118 Face 1577 2637 791 1479 Face 1578 2637 2636 791 Face 1579 2293 792 514 Face 1580 2293 654 792 Face 1581 230 976 3705 Face 1582 230 655 976 Face 1583 3050 1761 826 Face 1584 95 890 794 Face 1585 1515 795 339 Face 1586 1515 1046 795 Face 1587 1901 796 2118 Face 1588 1444 1443 1593 Face 1589 1616 1492 3780 Face 1590 350 618 797 Face 1591 1379 3173 765 Face 1592 1379 2791 3173 Face 1593 187 1140 995 Face 1594 187 1725 1140 Face 1595 30 800 1134 Face 1596 822 558 2908 Face 1597 4529 2349 2344 Face 1598 2350 3876 1098 Face 1599 252 802 297 Face 1600 4608 4836 4607 Face 1601 196 803 520 Face 1602 2197 823 2198 Face 1603 1684 804 723 Face 1604 1684 299 804 Face 1605 41 805 96 Face 1606 41 524 805 Face 1607 96 806 41 Face 1608 3330 891 3331 Face 1609 3433 807 3434 Face 1610 3433 3432 807 Face 1611 1699 808 376 Face 1612 1699 664 808 Face 1613 2658 2659 2248 Face 1614 376 808 1660 Face 1615 2247 2248 2659 Face 1616 89 811 810 Face 1617 905 811 89 Face 1618 905 904 811 Face 1619 3444 3923 3488 Face 1620 106 241 1768 Face 1621 2004 2140 814 Face 1622 529 198 1714 Face 1623 458 1715 2141 Face 1624 458 815 1715 Face 1625 1716 815 116 Face 1626 1716 1715 815 Face 1627 116 816 4054 Face 1628 116 815 816 Face 1629 4520 4488 4410 Face 1630 389 1072 1449 Face 1631 582 1776 819 Face 1632 2503 4436 4147 Face 1633 1777 819 1776 Face 1634 1777 853 819 Face 1635 131 820 300 Face 1636 4831 3337 820 Face 1637 300 821 131 Face 1638 300 556 821 Face 1639 3343 1951 2979 Face 1640 3343 2076 1951 Face 1641 1077 823 2197 Face 1642 3431 1060 3432 Face 1643 1967 3318 3319 Face 1644 1967 958 3318 Face 1645 2907 825 1195 Face 1646 1341 4821 5123 Face 1647 2444 826 1411 Face 1648 2444 3050 826 Face 1649 1572 827 52 Face 1650 1572 369 827 Face 1651 302 828 1055 Face 1652 302 831 828 Face 1653 3214 3112 3215 Face 1654 3214 3212 3112 Face 1655 469 830 829 Face 1656 5020 1538 5026 Face 1657 1538 4981 5026 Face 1658 1555 828 831 Face 1659 561 832 59 Face 1660 561 543 832 Face 1661 2905 833 2429 Face 1662 2905 5103 5101 Face 1663 2429 834 2430 Face 1664 2429 833 834 Face 1665 1283 4107 1595 Face 1666 2367 56 835 Face 1667 74 2489 2488 Face 1668 1073 1387 1039 Face 1669 2173 837 537 Face 1670 2173 1117 837 Face 1671 542 1267 509 Face 1672 542 541 1267 Face 1673 785 839 2742 Face 1674 2446 1273 3054 Face 1675 3958 3957 2707 Face 1676 1212 2044 2042 Face 1677 220 841 164 Face 1678 220 4144 841 Face 1679 1883 5440 5804 Face 1680 2762 1374 842 Face 1681 18 843 227 Face 1682 18 1501 843 Face 1683 1501 844 843 Face 1684 4327 3767 1690 Face 1685 2322 1387 1073 Face 1686 331 1344 3449 Face 1687 3435 3434 1407 Face 1688 501 3270 2107 Face 1689 3046 847 3047 Face 1690 3046 1405 847 Face 1691 402 1608 3015 Face 1692 1335 1989 3236 Face 1693 580 849 551 Face 1694 580 1027 849 Face 1695 405 850 406 Face 1696 405 1844 850 Face 1697 406 3996 2606 Face 1698 406 850 2029 Face 1699 4196 4197 2053 Face 1700 52 827 1623 Face 1701 575 853 854 Face 1702 575 819 853 Face 1703 1919 854 853 Face 1704 1919 1331 854 Face 1705 5490 5483 856 Face 1706 5578 5569 5553 Face 1707 5488 856 6398 Face 1708 4445 5490 856 Face 1709 2783 1577 838 Face 1710 6316 5488 2686 Face 1711 2188 858 1720 Face 1712 4166 4266 4165 Face 1713 1962 859 1136 Face 1714 1962 5207 2903 Face 1715 5576 5573 6010 Face 1716 5218 5217 5227 Face 1717 309 861 2943 Face 1718 309 860 861 Face 1719 5207 5208 2903 Face 1720 279 5209 2500 Face 1721 471 863 72 Face 1722 5358 5208 5262 Face 1723 2101 3242 3243 Face 1724 772 1412 2102 Face 1725 1678 1953 3293 Face 1726 226 2380 2201 Face 1727 371 5815 5810 Face 1728 371 867 866 Face 1729 94 867 371 Face 1730 94 623 867 Face 1731 6106 6103 5893 Face 1732 6091 5454 5354 Face 1733 5563 6391 5884 Face 1734 5883 6106 5893 Face 1735 413 6075 6050 Face 1736 5884 6391 6457 Face 1737 497 5874 5318 Face 1738 497 5807 5874 Face 1739 6467 5810 5815 Face 1740 5812 497 872 Face 1741 371 1658 94 Face 1742 371 5810 1658 Face 1743 336 874 27 Face 1744 336 929 874 Face 1745 4529 3682 2349 Face 1746 27 874 875 Face 1747 3299 3540 2292 Face 1748 1466 974 876 Face 1749 3150 3292 1718 Face 1750 420 2574 2313 Face 1751 251 2051 1434 Face 1752 251 1680 2051 Face 1753 552 2175 880 Face 1754 552 1991 2175 Face 1755 5124 2587 5112 Face 1756 1686 552 880 Face 1757 2325 2729 182 Face 1758 2589 4820 5092 Face 1759 1871 3629 3630 Face 1760 1871 895 3629 Face 1761 2651 2652 2257 Face 1762 475 42 2230 Face 1763 2166 884 919 Face 1764 3956 3444 3488 Face 1765 81 1479 181 Face 1766 81 1909 1479 Face 1767 240 2544 2218 Face 1768 5041 4818 4646 Face 1769 517 2592 1681 Face 1770 517 2920 2592 Face 1771 553 2613 2218 Face 1772 3673 3760 2699 Face 1773 3665 2912 3495 Face 1774 3666 2210 1620 Face 1775 272 890 1137 Face 1776 272 794 890 Face 1777 3046 3045 1405 Face 1778 591 3331 891 Face 1779 166 892 1517 Face 1780 166 416 892 Face 1781 2554 1517 892 Face 1782 5308 1161 5310 Face 1783 1992 894 2419 Face 1784 4034 2906 2304 Face 1785 1872 895 1871 Face 1786 1872 896 895 Face 1787 1873 896 1872 Face 1788 1873 897 896 Face 1789 1874 2909 3198 Face 1790 3568 3341 3567 Face 1791 339 898 440 Face 1792 339 795 898 Face 1793 440 899 900 Face 1794 440 898 899 Face 1795 70 1667 1668 Face 1796 4114 2159 4115 Face 1797 2159 2160 4115 Face 1798 118 902 901 Face 1799 1665 902 903 Face 1800 1665 901 902 Face 1801 3857 3855 3468 Face 1802 1664 1665 903 Face 1803 1663 904 905 Face 1804 3467 3857 3468 Face 1805 241 1662 906 Face 1806 241 106 1662 Face 1807 2243 2244 2663 Face 1808 358 1767 1766 Face 1809 2664 2665 2242 Face 1810 115 908 1431 Face 1811 356 1432 983 Face 1812 356 907 1432 Face 1813 538 2075 539 Face 1814 538 652 2075 Face 1815 1618 1493 1492 Face 1816 1619 1176 1493 Face 1817 4795 4723 5117 Face 1818 4793 4336 911 Face 1819 1850 912 390 Face 1820 4677 5002 5054 Face 1821 390 913 245 Face 1822 390 912 913 Face 1823 1275 3027 1978 Face 1824 403 913 914 Face 1825 3142 3803 2192 Face 1826 2289 3040 915 Face 1827 13 916 511 Face 1828 3040 2289 2270 Face 1829 1442 917 1737 Face 1830 1442 1028 917 Face 1831 2080 918 663 Face 1832 2080 2458 918 Face 1833 271 919 884 Face 1834 271 920 919 Face 1835 2164 2163 4119 Face 1836 2151 919 920 Face 1837 4118 4117 2162 Face 1838 341 1894 921 Face 1839 340 922 923 Face 1840 340 2137 922 Face 1841 439 923 922 Face 1842 439 924 923 Face 1843 128 924 925 Face 1844 128 923 924 Face 1845 701 925 924 Face 1846 701 960 925 Face 1847 238 2682 3478 Face 1848 2681 2296 1634 Face 1849 3146 3147 1805 Face 1850 78 2591 2315 Face 1851 3379 928 1138 Face 1852 3376 590 928 Face 1853 1181 1920 1398 Face 1854 1181 2275 1920 Face 1855 1788 2378 4023 Face 1856 2377 1080 930 Face 1857 184 2622 755 Face 1858 184 3473 2622 Face 1859 1650 932 1649 Face 1860 1650 933 932 Face 1861 1651 933 1650 Face 1862 2967 6182 6185 Face 1863 3740 934 3471 Face 1864 5200 5439 5198 Face 1865 3471 1653 3517 Face 1866 3471 934 1653 Face 1867 453 3327 691 Face 1868 4369 4133 4438 Face 1869 3494 937 1319 Face 1870 4173 4124 4306 Face 1871 617 938 1111 Face 1872 617 1052 938 Face 1873 141 1960 747 Face 1874 141 550 1960 Face 1875 679 1991 552 Face 1876 3144 2304 2906 Face 1877 348 941 577 Face 1878 5818 6341 1304 Face 1879 1302 5546 943 Face 1880 1302 5841 5546 Face 1881 6406 5834 5582 Face 1882 5836 6014 1172 Face 1883 2693 5440 1883 Face 1884 2693 5580 5440 Face 1885 2761 945 3550 Face 1886 2761 6403 2695 Face 1887 261 2697 1130 Face 1888 261 2696 2697 Face 1889 2224 947 2421 Face 1890 2224 769 947 Face 1891 1447 5252 773 Face 1892 1447 1258 5252 Face 1893 3241 949 3240 Face 1894 3241 2102 949 Face 1895 3234 3233 331 Face 1896 724 3329 950 Face 1897 1592 1067 1231 Face 1898 1592 73 1067 Face 1899 796 952 2353 Face 1900 2117 2991 2116 Face 1901 192 1029 1376 Face 1902 1444 1593 1230 Face 1903 2485 3552 730 Face 1904 2485 3555 3552 Face 1905 436 1813 2111 Face 1906 436 175 1813 Face 1907 1995 956 1261 Face 1908 1995 522 956 Face 1909 2948 2726 2727 Face 1910 217 1803 3126 Face 1911 1968 958 1967 Face 1912 1968 1223 958 Face 1913 57 1956 567 Face 1914 2373 1788 4024 Face 1915 1774 960 436 Face 1916 700 925 960 Face 1917 67 2000 1336 Face 1918 67 1999 2000 Face 1919 3105 3106 4322 Face 1920 2108 1094 962 Face 1921 5554 6319 1266 Face 1922 3971 964 963 Face 1923 417 964 3971 Face 1924 417 549 964 Face 1925 2370 965 1189 Face 1926 2370 137 965 Face 1927 1461 966 1460 Face 1928 2238 2669 2237 Face 1929 2668 2669 2238 Face 1930 357 968 967 Face 1931 199 968 969 Face 1932 199 967 968 Face 1933 355 969 968 Face 1934 4846 4568 4845 Face 1935 4567 4568 4846 Face 1936 123 353 970 Face 1937 353 1359 970 Face 1938 353 1360 1359 Face 1939 1376 972 1061 Face 1940 1376 1029 972 Face 1941 144 973 1609 Face 1942 1407 807 3238 Face 1943 3358 974 1466 Face 1944 3358 3717 974 Face 1945 2734 1797 3454 Face 1946 2734 1441 3531 Face 1947 793 976 971 Face 1948 793 2938 976 Face 1949 127 977 1245 Face 1950 3196 2981 2497 Face 1951 351 2828 3004 Face 1952 3734 1362 2788 Face 1953 3539 4046 3751 Face 1954 1955 978 2691 Face 1955 3243 3244 1415 Face 1956 33 244 980 Face 1957 4938 4635 4773 Face 1958 4938 4636 4635 Face 1959 520 982 574 Face 1960 520 803 982 Face 1961 26 983 1432 Face 1962 4849 4565 4848 Face 1963 4516 4565 4849 Face 1964 451 229 984 Face 1965 2167 4889 4181 Face 1966 167 2171 985 Face 1967 678 1844 405 Face 1968 1845 3528 1844 Face 1969 108 987 500 Face 1970 2745 2449 2450 Face 1971 3245 988 3244 Face 1972 3245 1421 988 Face 1973 1979 3056 1274 Face 1974 1979 1122 3056 Face 1975 3058 1977 3059 Face 1976 3399 3412 3400 Face 1977 205 991 1326 Face 1978 2742 839 2743 Face 1979 1154 3190 762 Face 1980 317 223 992 Face 1981 4604 4605 4839 Face 1982 181 1479 993 Face 1983 4502 4503 4852 Face 1984 82 489 994 Face 1985 4268 4269 4086 Face 1986 588 187 995 Face 1987 380 996 997 Face 1988 4086 4269 4085 Face 1989 83 997 996 Face 1990 83 998 997 Face 1991 394 998 83 Face 1992 394 999 998 Face 1993 713 999 394 Face 1994 713 1000 999 Face 1995 726 1000 713 Face 1996 726 1001 1000 Face 1997 4112 4111 2156 Face 1998 667 1000 1001 Face 1999 668 1002 1003 Face 2000 2157 4112 2156 Face 2001 669 1003 1002 Face 2002 669 91 1003 Face 2003 91 1682 1003 Face 2004 91 4068 1682 Face 2005 3828 1828 1125 Face 2006 3828 1123 1828 Face 2007 58 1006 143 Face 2008 58 596 1006 Face 2009 450 1007 449 Face 2010 4852 4503 4851 Face 2011 398 1008 878 Face 2012 4839 4605 4838 Face 2013 514 2787 513 Face 2014 514 792 2787 Face 2015 543 1010 832 Face 2016 543 1011 4929 Face 2017 10 1011 784 Face 2018 4899 4929 1011 Face 2019 27 1012 336 Face 2020 27 875 1397 Face 2021 2117 2494 2991 Face 2022 2117 1901 2494 Face 2023 6225 5845 6229 Face 2024 5665 5848 5667 Face 2025 100 1015 1016 Face 2026 5383 6064 5410 Face 2027 55 1016 1015 Face 2028 55 1017 1016 Face 2029 1763 3529 1845 Face 2030 79 2209 1848 Face 2031 4996 4896 1019 Face 2032 1194 1341 5123 Face 2033 516 3171 2214 Face 2034 3281 4996 3171 Face 2035 4997 2346 4998 Face 2036 2708 1397 1192 Face 2037 1398 1021 1181 Face 2038 1398 460 1021 Face 2039 5497 5495 3643 Face 2040 465 3507 2645 Face 2041 1390 3639 3509 Face 2042 3642 5537 2928 Face 2043 2605 1391 3638 Face 2044 2605 466 1391 Face 2045 3769 3770 4143 Face 2046 3252 3640 1025 Face 2047 421 3451 1323 Face 2048 4143 3770 4142 Face 2049 85 1027 580 Face 2050 2982 5302 5304 Face 2051 192 1028 1029 Face 2052 192 917 1028 Face 2053 1230 1537 1444 Face 2054 1230 1438 1537 Face 2055 3696 2393 2298 Face 2056 3696 3190 2393 Face 2057 43 1031 1880 Face 2058 4678 3226 1839 Face 2059 470 1032 1866 Face 2060 470 560 1032 Face 2061 560 1033 1032 Face 2062 560 172 1033 Face 2063 3094 2702 616 Face 2064 172 560 1034 Face 2065 2074 2829 1199 Face 2066 539 909 2073 Face 2067 46 1036 1780 Face 2068 2269 2699 3760 Face 2069 1139 2740 604 Face 2070 621 15 1037 Face 2071 288 2329 927 Face 2072 288 1342 2329 Face 2073 3275 1039 3324 Face 2074 3275 3274 1039 Face 2075 2776 3495 1102 Face 2076 2776 3665 3495 Face 2077 3165 1041 1821 Face 2078 3095 1045 1041 Face 2079 1740 1042 742 Face 2080 1740 1022 1042 Face 2081 1637 6167 6162 Face 2082 6109 6320 6317 Face 2083 2463 1044 281 Face 2084 2463 865 1044 Face 2085 3661 1690 3095 Face 2086 3661 4327 1690 Face 2087 9 1046 1515 Face 2088 9 1050 1046 Face 2089 2276 2275 1181 Face 2090 338 1048 1047 Face 2091 1674 1048 1673 Face 2092 1674 1047 1048 Face 2093 4265 4266 4166 Face 2094 2189 563 1049 Face 2095 242 1050 9 Face 2096 4170 4264 4167 Face 2097 4417 4263 4477 Face 2098 435 1115 1051 Face 2099 315 1052 2434 Face 2100 315 938 1052 Face 2101 4198 2887 4392 Face 2102 706 1312 2054 Face 2103 3858 1054 3859 Face 2104 3858 1566 1054 Face 2105 1148 3260 2487 Face 2106 519 302 1055 Face 2107 221 1056 49 Face 2108 221 383 1056 Face 2109 349 1057 1294 Face 2110 4310 2356 4906 Face 2111 49 1058 763 Face 2112 49 4216 1058 Face 2113 1927 1059 1378 Face 2114 1927 3492 1059 Face 2115 3239 1060 649 Face 2116 3239 3238 1060 Face 2117 1561 2641 1062 Face 2118 2287 433 2283 Face 2119 1562 1062 2562 Face 2120 1562 1561 1062 Face 2121 216 1063 1054 Face 2122 216 759 1063 Face 2123 2057 1064 2055 Face 2124 2057 2024 1064 Face 2125 3445 2552 3737 Face 2126 734 2025 1065 Face 2127 742 1066 3748 Face 2128 742 1042 1066 Face 2129 951 1067 73 Face 2130 3862 2116 2991 Face 2131 73 2607 951 Face 2132 73 1120 2607 Face 2133 218 1069 395 Face 2134 218 73 1069 Face 2135 686 1070 382 Face 2136 4324 841 4144 Face 2137 382 1071 1286 Face 2138 382 1070 1071 Face 2139 1450 1072 427 Face 2140 1450 1449 1072 Face 2141 3274 1073 1039 Face 2142 3274 1074 1073 Face 2143 3273 1074 3274 Face 2144 3273 2486 1074 Face 2145 730 2486 2485 Face 2146 730 1074 2486 Face 2147 1440 1439 3272 Face 2148 334 1385 1076 Face 2149 649 3431 2103 Face 2150 649 1060 3431 Face 2151 246 1078 766 Face 2152 246 1358 1078 Face 2153 2197 2019 1077 Face 2154 196 1382 1079 Face 2155 705 2376 171 Face 2156 705 1128 2376 Face 2157 2417 1081 1082 Face 2158 5869 6056 5867 Face 2159 572 2442 2204 Face 2160 572 2417 2442 Face 2161 550 1083 1084 Face 2162 550 504 1083 Face 2163 1961 1084 603 Face 2164 1961 550 1084 Face 2165 2062 3818 1288 Face 2166 603 1084 1085 Face 2167 2972 1086 1946 Face 2168 2972 1009 1086 Face 2169 2996 1087 1945 Face 2170 2996 2997 1087 Face 2171 576 2805 2804 Face 2172 576 709 2805 Face 2173 512 2804 2803 Face 2174 512 576 2804 Face 2175 748 2803 2802 Face 2176 748 512 2803 Face 2177 1950 2802 1279 Face 2178 1950 748 2802 Face 2179 2213 2211 743 Face 2180 129 454 1092 Face 2181 2332 1093 1380 Face 2182 2332 1167 1093 Face 2183 7 2502 650 Face 2184 7 1095 2502 Face 2185 212 1095 7 Face 2186 2619 3162 6393 Face 2187 98 1096 1870 Face 2188 5191 2535 3163 Face 2189 405 1097 678 Face 2190 405 1099 1097 Face 2191 4293 1098 3876 Face 2192 4293 1239 1098 Face 2193 1120 1099 801 Face 2194 461 1097 1099 Face 2195 648 1100 1903 Face 2196 648 2601 2797 Face 2197 237 2031 1824 Face 2198 237 651 2031 Face 2199 3515 3516 3645 Face 2200 201 185 2777 Face 2201 201 1103 1884 Face 2202 201 2777 1103 Face 2203 2866 2458 3186 Face 2204 490 918 2458 Face 2205 2333 4261 2004 Face 2206 290 140 1943 Face 2207 4828 4744 4745 Face 2208 671 1702 1106 Face 2209 378 1702 1188 Face 2210 378 1106 1702 Face 2211 502 1108 29 Face 2212 502 1109 1108 Face 2213 158 1109 502 Face 2214 158 295 1109 Face 2215 295 1110 1109 Face 2216 295 2213 1110 Face 2217 404 1111 938 Face 2218 404 1365 1111 Face 2219 695 1112 2112 Face 2220 695 435 1112 Face 2221 2434 4263 4417 Face 2222 2434 1052 1113 Face 2223 3693 1114 2111 Face 2224 3693 1051 4417 Face 2225 581 1115 435 Face 2226 581 188 1115 Face 2227 188 1116 1115 Face 2228 188 404 1116 Face 2229 6155 2184 6159 Face 2230 592 1425 2407 Face 2231 678 1118 1847 Face 2232 678 1097 1118 Face 2233 1097 1119 1118 Face 2234 1097 461 1119 Face 2235 461 1120 1119 Face 2236 461 1099 1120 Face 2237 2179 3332 591 Face 2238 273 577 1121 Face 2239 3410 3411 3398 Face 2240 1830 989 3057 Face 2241 3461 1123 3828 Face 2242 3829 3462 3845 Face 2243 3821 1124 2194 Face 2244 3821 3382 1124 Face 2245 3827 1125 3710 Face 2246 3827 3828 1125 Face 2247 5986 1126 5990 Face 2248 5986 5964 1126 Face 2249 6023 1127 5931 Face 2250 6031 5332 6034 Face 2251 6028 5332 6031 Face 2252 407 1080 2375 Face 2253 5060 5599 5611 Face 2254 77 1220 2556 Face 2255 457 1130 119 Face 2256 457 261 1130 Face 2257 2316 4919 4528 Face 2258 574 982 1131 Face 2259 3379 3376 928 Face 2260 794 272 1132 Face 2261 3270 3269 510 Face 2262 19 1384 1133 Face 2263 610 1134 569 Face 2264 610 30 1134 Face 2265 3330 3329 724 Face 2266 96 805 1135 Face 2267 476 1136 1287 Face 2268 476 1962 1136 Face 2269 114 1137 890 Face 2270 5872 6042 6039 Face 2271 3383 1138 1578 Face 2272 3383 3379 1138 Face 2273 2741 1139 2742 Face 2274 2741 2740 1139 Face 2275 799 1784 1567 Face 2276 799 1785 1784 Face 2277 381 1785 799 Face 2278 4272 4083 4271 Face 2279 206 1142 1143 Face 2280 4083 4272 4082 Face 2281 633 1143 1142 Face 2282 633 1144 1143 Face 2283 1914 1144 633 Face 2284 1914 1811 1144 Face 2285 1600 1145 1201 Face 2286 1600 225 1145 Face 2287 1401 2974 2975 Face 2288 1401 1350 2974 Face 2289 2007 2975 2976 Face 2290 2007 1401 2975 Face 2291 3261 1148 3262 Face 2292 3261 3260 1148 Face 2293 597 1149 626 Face 2294 597 184 1149 Face 2295 433 1150 1377 Face 2296 433 1151 1150 Face 2297 1802 1151 433 Face 2298 1802 1803 1151 Face 2299 2424 1936 4131 Face 2300 505 1153 1152 Face 2301 320 1758 1759 Face 2302 320 551 1758 Face 2303 1687 1154 1644 Face 2304 1687 3190 1154 Face 2305 1885 1155 3191 Face 2306 1885 1030 1155 Face 2307 2567 1156 1439 Face 2308 2567 2199 1156 Face 2309 4078 5594 5243 Face 2310 5596 1158 5594 Face 2311 5586 5215 5596 Face 2312 5213 5610 5215 Face 2313 3137 3949 5254 Face 2314 3137 2113 3949 Face 2315 4183 1160 4182 Face 2316 4183 3806 1160 Face 2317 363 5443 1162 Face 2318 363 1640 3813 Face 2319 264 1162 5443 Face 2320 264 1372 1162 Face 2321 1602 1163 1603 Face 2322 2256 2651 2257 Face 2323 672 1164 1165 Face 2324 672 673 1164 Face 2325 4647 4577 4750 Face 2326 546 672 1165 Face 2327 760 1166 1167 Face 2328 3974 4195 4750 Face 2329 48 2314 1812 Face 2330 48 1685 2314 Face 2331 3884 3743 1933 Face 2332 4291 3779 4087 Face 2333 1916 3687 2036 Face 2334 740 3672 3687 Face 2335 54 2421 947 Face 2336 6408 1173 6444 Face 2337 186 2404 961 Face 2338 186 1998 2404 Face 2339 5830 1172 6014 Face 2340 5830 5832 1172 Face 2341 5546 1173 943 Face 2342 6226 6444 1173 Face 2343 522 2398 956 Face 2344 5828 5349 2398 Face 2345 757 1491 1176 Face 2346 757 1225 1491 Face 2347 434 1176 1619 Face 2348 434 757 1176 Face 2349 418 1177 87 Face 2350 418 1507 1177 Face 2351 978 2271 2691 Face 2352 978 2594 2271 Face 2353 364 1179 4057 Face 2354 364 1214 1179 Face 2355 515 1180 4051 Face 2356 515 1648 1180 Face 2357 518 1181 1021 Face 2358 518 1182 1181 Face 2359 2276 1182 2435 Face 2360 2276 1181 1182 Face 2361 2757 1183 3283 Face 2362 2757 1184 1183 Face 2363 518 2753 2859 Face 2364 518 2819 2753 Face 2365 1895 1508 937 Face 2366 719 1033 1185 Face 2367 2892 3197 2477 Face 2368 13 1442 1186 Face 2369 2294 2976 2076 Face 2370 2294 2007 2976 Face 2371 285 1701 1107 Face 2372 2253 2654 2252 Face 2373 4058 4057 1179 Face 2374 647 2370 1189 Face 2375 1329 3685 1191 Face 2376 1329 1328 3685 Face 2377 4015 1191 4459 Face 2378 4015 1329 1191 Face 2379 2344 2816 4529 Face 2380 2347 1193 5071 Face 2381 4998 5072 4816 Face 2382 4998 5071 5072 Face 2383 5159 5073 1193 Face 2384 2123 1341 1194 Face 2385 2566 1195 825 Face 2386 2566 1196 1195 Face 2387 3295 3296 1677 Face 2388 125 1195 1196 Face 2389 3936 3935 2868 Face 2390 3995 3300 1197 Face 2391 3297 1939 3296 Face 2392 3930 3936 2868 Face 2393 3532 2263 2939 Face 2394 3532 2331 2263 Face 2395 3820 4415 4479 Face 2396 248 594 1200 Face 2397 2648 2649 2254 Face 2398 674 481 1601 Face 2399 2268 1202 1203 Face 2400 2267 2648 2254 Face 2401 379 2265 1204 Face 2402 379 90 2265 Face 2403 4231 2067 4077 Face 2404 265 379 1204 Face 2405 2534 1205 1206 Face 2406 5663 3163 2535 Face 2407 1094 1206 1205 Face 2408 1094 2108 1206 Face 2409 4227 4486 2857 Face 2410 650 2502 1207 Face 2411 24 1208 105 Face 2412 24 4227 1208 Face 2413 2306 1209 2483 Face 2414 2306 1527 1209 Face 2415 2131 1210 293 Face 2416 5367 346 5057 Face 2417 346 1211 1542 Face 2418 346 5367 1211 Face 2419 509 4390 627 Face 2420 509 1267 1212 Face 2421 3477 1213 2941 Face 2422 3299 3539 2595 Face 2423 219 1214 364 Face 2424 219 1215 1214 Face 2425 117 1708 2145 Face 2426 117 1709 1708 Face 2427 614 1216 101 Face 2428 614 1472 1216 Face 2429 2364 1217 2982 Face 2430 2364 1218 1217 Face 2431 2363 1218 2364 Face 2432 2363 2362 1218 Face 2433 2362 5060 1218 Face 2434 2362 5599 5060 Face 2435 5 1220 77 Face 2436 5 698 1220 Face 2437 698 1221 1220 Face 2438 3688 1934 3476 Face 2439 294 1222 3688 Face 2440 294 333 1222 Face 2441 1969 1223 1968 Face 2442 1969 1970 1223 Face 2443 1629 1224 1621 Face 2444 1629 1225 1224 Face 2445 1526 1225 1629 Face 2446 1526 2045 1225 Face 2447 3179 2937 1490 Face 2448 38 2112 2110 Face 2449 369 1227 827 Face 2450 369 370 1227 Face 2451 1061 1532 1676 Face 2452 1061 972 1532 Face 2453 1438 1540 1228 Face 2454 1438 1230 1540 Face 2455 953 1230 1013 Face 2456 953 1540 1230 Face 2457 1013 1231 1067 Face 2458 1013 1230 1231 Face 2459 1964 2083 1233 Face 2460 1964 1576 2083 Face 2461 2572 3366 2571 Face 2462 2572 3365 3366 Face 2463 2234 2235 2672 Face 2464 427 1072 1234 Face 2465 657 1235 1236 Face 2466 2673 2234 2672 Face 2467 658 1236 1235 Face 2468 658 1237 1236 Face 2469 124 1237 658 Face 2470 4843 4571 4842 Face 2471 4570 4571 4843 Face 2472 354 2128 1238 Face 2473 2029 3996 406 Face 2474 5091 5055 4787 Face 2475 3352 5877 498 Face 2476 93 209 1240 Face 2477 5777 5793 5244 Face 2478 5365 6435 2632 Face 2479 683 1242 694 Face 2480 683 5777 5269 Face 2481 552 2602 679 Face 2482 552 1686 2602 Face 2483 1161 1244 1160 Face 2484 1161 5308 1244 Face 2485 2808 1245 977 Face 2486 2808 2995 1245 Face 2487 2807 2995 2808 Face 2488 2807 2806 2995 Face 2489 3007 1247 624 Face 2490 3007 3008 1247 Face 2491 3008 1248 1247 Face 2492 3008 3009 1248 Face 2493 711 2085 2084 Face 2494 711 1250 2085 Face 2495 824 3362 3363 Face 2496 824 1251 3362 Face 2497 958 3317 3318 Face 2498 958 3316 3317 Face 2499 478 3360 1251 Face 2500 478 1253 3360 Face 2501 605 3065 3316 Face 2502 3576 1254 3577 Face 2503 1971 1254 3576 Face 2504 1971 1587 1254 Face 2505 931 3511 2611 Face 2506 931 2623 3511 Face 2507 756 2611 688 Face 2508 756 931 2611 Face 2509 1832 2454 1973 Face 2510 1832 2453 2454 Face 2511 1928 1258 1447 Face 2512 1928 1378 1258 Face 2513 567 2617 57 Face 2514 567 2821 2617 Face 2515 612 4466 1355 Face 2516 5302 4338 5419 Face 2517 99 1261 2600 Face 2518 99 326 1261 Face 2519 4864 5104 4681 Face 2520 569 1134 1262 Face 2521 244 1263 980 Face 2522 244 1599 1263 Face 2523 21 1264 2875 Face 2524 3971 963 5239 Face 2525 6207 5449 3714 Face 2526 5327 5643 6392 Face 2527 5503 5643 5327 Face 2528 5551 5554 1266 Face 2529 2044 1267 3742 Face 2530 2044 1212 1267 Face 2531 4429 4327 3661 Face 2532 231 298 1268 Face 2533 2631 1269 2629 Face 2534 3571 2902 3570 Face 2535 3201 3630 3632 Face 2536 3201 1871 3630 Face 2537 4005 3789 3790 Face 2538 4005 4004 3789 Face 2539 460 2818 1021 Face 2540 2817 4918 5032 Face 2541 452 3024 3023 Face 2542 452 3025 3024 Face 2543 1416 3025 452 Face 2544 1416 3026 3025 Face 2545 1417 3026 1416 Face 2546 1417 1276 3026 Face 2547 2097 1276 1417 Face 2548 3416 3403 3415 Face 2549 3421 3404 3422 Face 2550 3394 2095 1277 Face 2551 1723 2095 3394 Face 2552 1723 1722 2095 Face 2553 822 3001 558 Face 2554 822 3000 3001 Face 2555 558 3002 3589 Face 2556 558 3001 3002 Face 2557 278 1281 400 Face 2558 278 712 1281 Face 2559 1033 1282 1032 Face 2560 1033 719 1282 Face 2561 3736 1826 4001 Face 2562 2367 835 3815 Face 2563 577 1284 1121 Face 2564 577 941 1284 Face 2565 121 1285 1071 Face 2566 4146 4171 4145 Face 2567 634 1286 1071 Face 2568 2392 1579 4427 Face 2569 383 1287 1295 Face 2570 383 476 1287 Face 2571 1291 4907 1290 Face 2572 1291 4427 4907 Face 2573 2731 1289 1291 Face 2574 2731 2392 1289 Face 2575 4632 1290 1292 Face 2576 4632 1291 1290 Face 2577 2985 1291 4632 Face 2578 2985 2731 1291 Face 2579 3988 1292 2422 Face 2580 3988 4632 1292 Face 2581 4216 1293 1058 Face 2582 4216 3990 1293 Face 2583 1056 1294 1057 Face 2584 1056 1295 1294 Face 2585 4324 1295 1287 Face 2586 686 1294 1295 Face 2587 6115 1637 2184 Face 2588 281 1044 2861 Face 2589 3822 1297 3823 Face 2590 5087 2638 5661 Face 2591 1346 5352 5270 Face 2592 148 16 1298 Face 2593 941 1299 1284 Face 2594 1304 6341 1303 Face 2595 5898 5907 5821 Face 2596 1305 5344 5907 Face 2597 6033 5827 1305 Face 2598 1137 114 6036 Face 2599 6410 6381 5836 Face 2600 5258 5841 6381 Face 2601 5309 1303 5839 Face 2602 5309 1304 1303 Face 2603 5808 5905 5309 Face 2604 5823 5898 5821 Face 2605 348 5825 5901 Face 2606 1519 6033 5825 Face 2607 272 1306 1132 Face 2608 272 1519 1306 Face 2609 790 2354 1528 Face 2610 1931 1878 2118 Face 2611 820 1308 708 Face 2612 820 3337 1308 Face 2613 131 4831 820 Face 2614 131 321 1309 Face 2615 767 3699 1311 Face 2616 5244 5793 5787 Face 2617 715 1311 714 Face 2618 715 767 1311 Face 2619 3123 1312 706 Face 2620 3123 1313 1312 Face 2621 933 3852 932 Face 2622 2968 3739 2969 Face 2623 3739 5426 2969 Face 2624 491 3042 3863 Face 2625 3708 3042 1316 Face 2626 3708 3863 3042 Face 2627 3773 1316 4136 Face 2628 3194 3708 1316 Face 2629 4138 4139 3775 Face 2630 3451 421 3452 Face 2631 270 3324 1039 Face 2632 270 3325 3324 Face 2633 616 1319 1508 Face 2634 3373 2490 3489 Face 2635 720 1320 3489 Face 2636 2491 3326 2492 Face 2637 718 1321 3325 Face 2638 718 3195 1321 Face 2639 1393 1322 718 Face 2640 3441 1394 3442 Face 2641 3450 1323 3451 Face 2642 3450 1344 1323 Face 2643 155 5438 1656 Face 2644 5315 5595 5584 Face 2645 805 1325 1135 Face 2646 805 1536 1325 Face 2647 94 1326 991 Face 2648 94 1658 1326 Face 2649 15 1327 1037 Face 2650 15 1534 1327 Face 2651 350 1328 1329 Face 2652 350 797 1328 Face 2653 875 1329 1397 Face 2654 875 350 1329 Face 2655 874 1330 875 Face 2656 874 1533 1330 Face 2657 702 1331 1105 Face 2658 702 854 1331 Face 2659 2178 1332 1526 Face 2660 2178 1769 1332 Face 2661 1176 1907 1493 Face 2662 1176 1491 1907 Face 2663 88 1334 1425 Face 2664 2274 3146 1805 Face 2665 3235 1335 3236 Face 2666 3235 729 1335 Face 2667 1499 2793 1337 Face 2668 328 67 1336 Face 2669 693 1337 2725 Face 2670 693 1499 1337 Face 2671 2049 2048 3677 Face 2672 593 571 1338 Face 2673 2121 1339 2413 Face 2674 2411 4261 2333 Face 2675 259 2413 3168 Face 2676 259 2121 2413 Face 2677 4901 5092 5093 Face 2678 4901 2589 5092 Face 2679 4751 2589 4901 Face 2680 2684 2329 1342 Face 2681 915 1343 3660 Face 2682 2477 3197 2794 Face 2683 3232 1344 3233 Face 2684 3232 1323 1344 Face 2685 729 3447 1335 Face 2686 729 3448 3447 Face 2687 148 1346 548 Face 2688 148 5352 1346 Face 2689 395 1846 1118 Face 2690 395 1590 1846 Face 2691 2764 1348 1347 Face 2692 2764 1545 1348 Face 2693 5716 2405 5444 Face 2694 179 1611 2596 Face 2695 3348 1350 1401 Face 2696 3348 1351 1350 Face 2697 3349 1351 3348 Face 2698 3349 2403 1351 Face 2699 2281 1352 2402 Face 2700 2281 1544 1352 Face 2701 4464 1353 1354 Face 2702 4464 4463 1353 Face 2703 1210 5058 5063 Face 2704 6055 6346 5460 Face 2705 1030 4467 1260 Face 2706 1030 1885 4467 Face 2707 1260 1356 1030 Face 2708 5458 5460 6346 Face 2709 1358 1521 5011 Face 2710 4581 2316 1357 Face 2711 194 1358 246 Face 2712 194 1521 1358 Face 2713 971 1359 793 Face 2714 971 1473 1359 Face 2715 793 1360 3196 Face 2716 793 1359 1360 Face 2717 2299 2938 793 Face 2718 2557 1944 1361 Face 2719 2496 1362 2811 Face 2720 2496 3991 3744 Face 2721 2144 2145 1708 Face 2722 154 368 1363 Face 2723 368 1364 1363 Face 2724 368 641 1364 Face 2725 135 1365 404 Face 2726 1619 1493 1618 Face 2727 739 1366 1108 Face 2728 739 472 1366 Face 2729 370 1367 1227 Face 2730 370 677 1367 Face 2731 677 1368 1367 Face 2732 677 1455 1368 Face 2733 210 1369 35 Face 2734 210 5269 1369 Face 2735 400 1370 1381 Face 2736 400 1281 1370 Face 2737 2898 1371 857 Face 2738 2898 1199 1371 Face 2739 964 1372 963 Face 2740 964 1162 1372 Face 2741 264 1373 1856 Face 2742 264 6445 1373 Face 2743 843 1374 2762 Face 2744 843 844 1374 Face 2745 3165 3095 1041 Face 2746 204 1374 1375 Face 2747 1886 1376 1798 Face 2748 1886 192 1376 Face 2749 1061 1798 1376 Face 2750 2641 1561 2283 Face 2751 1929 1378 1928 Face 2752 1929 1927 1378 Face 2753 1378 1379 1258 Face 2754 1378 1059 1379 Face 2755 4364 2211 2213 Face 2756 2440 2332 1380 Face 2757 2229 1381 1370 Face 2758 743 2211 4471 Face 2759 246 1382 194 Face 2760 246 1079 1382 Face 2761 3428 1383 3429 Face 2762 3428 3427 1383 Face 2763 982 1384 1131 Face 2764 982 1133 1384 Face 2765 247 1385 62 Face 2766 247 1076 1385 Face 2767 331 3448 729 Face 2768 331 3449 3448 Face 2769 2323 1387 2322 Face 2770 2323 1388 1387 Face 2771 2324 1388 2323 Face 2772 2324 1393 1388 Face 2773 3861 1389 2647 Face 2774 5537 3642 5495 Face 2775 466 1390 1391 Face 2776 3643 5495 3642 Face 2777 3509 1391 1390 Face 2778 3509 1392 1391 Face 2779 3771 3772 4141 Face 2780 3638 1391 1392 Face 2781 1026 3441 3440 Face 2782 1026 1394 3441 Face 2783 1317 2826 2712 Face 2784 4141 3772 4140 Face 2785 421 2706 3452 Face 2786 2775 3254 1395 Face 2787 225 1396 1145 Face 2788 4886 4468 4863 Face 2789 1012 1397 2708 Face 2790 1012 27 1397 Face 2791 336 1398 1920 Face 2792 336 1012 1398 Face 2793 4299 1399 1400 Face 2794 5194 4078 5243 Face 2795 2423 1400 2129 Face 2796 2423 4299 1400 Face 2797 3347 1401 2007 Face 2798 3347 3348 1401 Face 2799 2401 1402 2278 Face 2800 2401 1403 1402 Face 2801 2280 2402 2279 Face 2802 2280 2281 2402 Face 2803 393 1404 2136 Face 2804 393 202 1404 Face 2805 848 1608 402 Face 2806 848 144 1608 Face 2807 1876 4932 4610 Face 2808 783 607 1698 Face 2809 144 1988 1987 Face 2810 144 848 1988 Face 2811 973 1987 1986 Face 2812 973 144 1987 Face 2813 313 1986 1985 Face 2814 313 973 1986 Face 2815 3240 1410 1409 Face 2816 3240 949 1410 Face 2817 1984 3021 1985 Face 2818 1984 3022 3021 Face 2819 275 1983 1414 Face 2820 275 1411 1983 Face 2821 3263 3562 3561 Face 2822 3263 3563 3562 Face 2823 772 3023 1412 Face 2824 772 452 3023 Face 2825 452 2100 1416 Face 2826 452 772 2100 Face 2827 2099 1416 2100 Face 2828 2099 1417 1416 Face 2829 1421 2098 988 Face 2830 1421 1418 2098 Face 2831 1422 1418 1421 Face 2832 3423 3405 3420 Face 2833 1778 1419 3418 Face 2834 1778 3393 1419 Face 2835 245 3563 3263 Face 2836 245 403 3563 Face 2837 3425 1421 3245 Face 2838 3425 1422 1421 Face 2839 3247 3406 3246 Face 2840 3419 3417 3424 Face 2841 3637 1423 1406 Face 2842 3637 2558 1423 Face 2843 302 1424 1840 Face 2844 302 519 1424 Face 2845 2408 1425 1334 Face 2846 2408 2407 1425 Face 2847 2653 2654 2253 Face 2848 883 1427 1426 Face 2849 661 1427 521 Face 2850 661 1426 1427 Face 2851 4860 4861 4494 Face 2852 521 1427 1428 Face 2853 359 1429 1430 Face 2854 359 1760 1429 Face 2855 447 1430 1429 Face 2856 2241 2666 2240 Face 2857 907 1431 1432 Face 2858 2666 2241 2665 Face 2859 908 1432 1431 Face 2860 908 26 1432 Face 2861 4849 4850 4516 Face 2862 26 908 1433 Face 2863 4836 4837 4607 Face 2864 104 251 1434 Face 2865 4030 4029 3702 Face 2866 291 1082 1435 Face 2867 274 1436 1475 Face 2868 4498 4857 4497 Face 2869 694 1437 683 Face 2870 694 84 1437 Face 2871 2728 1438 2262 Face 2872 2286 1537 1438 Face 2873 2568 1439 1440 Face 2874 2568 2567 1439 Face 2875 2569 1440 3260 Face 2876 2569 2568 1440 Face 2877 3323 1441 2734 Face 2878 3323 3322 1441 Face 2879 511 1442 13 Face 2880 511 1443 1442 Face 2881 611 1443 511 Face 2882 611 1593 1443 Face 2883 1028 1444 1029 Face 2884 1028 1443 1444 Face 2885 5979 1445 5229 Face 2886 5773 5282 5972 Face 2887 773 5206 1447 Face 2888 5934 5219 5249 Face 2889 5231 1447 5206 Face 2890 5231 213 1447 Face 2891 299 1448 804 Face 2892 2516 4379 2515 Face 2893 817 1449 1450 Face 2894 4051 1180 4052 Face 2895 602 1450 1451 Face 2896 602 817 1450 Face 2897 2232 2675 2674 Face 2898 2388 602 1451 Face 2899 426 1452 1453 Face 2900 2677 2232 2674 Face 2901 425 1453 1452 Face 2902 425 1454 1453 Face 2903 4839 4840 4604 Face 2904 398 1453 1454 Face 2905 2141 2142 458 Face 2906 813 1368 1455 Face 2907 458 1456 1457 Face 2908 458 2142 1456 Face 2909 815 1457 816 Face 2910 815 458 1457 Face 2911 816 1458 4055 Face 2912 816 1457 1458 Face 2913 50 1459 1460 Face 2914 4055 1458 4056 Face 2915 965 1460 1459 Face 2916 965 1461 1460 Face 2917 137 1461 965 Face 2918 2239 2668 2238 Face 2919 357 1462 1463 Face 2920 2668 2239 2667 Face 2921 356 1463 1462 Face 2922 356 1464 1463 Face 2923 4846 4847 4567 Face 2924 355 1463 1464 Face 2925 969 1465 199 Face 2926 4845 4569 4844 Face 2927 3456 1466 2595 Face 2928 3456 3358 1466 Face 2929 651 1467 2031 Face 2930 4489 4863 4468 Face 2931 4886 4887 4468 Face 2932 225 1600 1468 Face 2933 664 1469 808 Face 2934 4856 4499 4855 Face 2935 138 1470 2415 Face 2936 3189 4759 4878 Face 2937 4760 4894 3188 Face 2938 4672 5106 5114 Face 2939 397 1472 614 Face 2940 4490 3809 4553 Face 2941 354 1473 971 Face 2942 4570 4844 4569 Face 2943 82 1474 2069 Face 2944 4502 4853 4501 Face 2945 236 1475 1635 Face 2946 236 274 1475 Face 2947 663 1476 2080 Face 2948 4500 4855 4499 Face 2949 260 1477 189 Face 2950 4854 4501 4853 Face 2951 181 1478 81 Face 2952 4604 4840 4603 Face 2953 885 1479 791 Face 2954 885 993 1479 Face 2955 802 1480 2070 Face 2956 4607 4837 4606 Face 2957 229 1481 984 Face 2958 229 352 1481 Face 2959 123 1482 2081 Face 2960 4567 4847 4566 Face 2961 4494 4495 4860 Face 2962 69 909 1483 Face 2963 69 1484 2058 Face 2964 4494 4861 4493 Face 2965 122 1485 375 Face 2966 4858 4497 4857 Face 2967 37 1486 675 Face 2968 4182 2167 4181 Face 2969 521 1487 661 Face 2970 4860 4495 4859 Face 2971 489 1488 994 Face 2972 489 20 1488 Face 2973 451 1489 2120 Face 2974 4516 4850 4504 Face 2975 1225 1490 1224 Face 2976 1225 757 1490 Face 2977 2045 1491 1225 Face 2978 1332 1333 1911 Face 2979 2735 1492 1616 Face 2980 2735 1618 1492 Face 2981 1209 1493 1907 Face 2982 1209 1492 1493 Face 2983 1333 1494 1911 Face 2984 2483 1209 1494 Face 2985 4875 4545 3104 Face 2986 4948 4775 4542 Face 2987 474 1496 140 Face 2988 474 1497 1496 Face 2989 197 1497 474 Face 2990 197 430 1497 Face 2991 430 1498 1497 Face 2992 430 1994 1498 Face 2993 3522 2046 697 Face 2994 328 3543 3544 Face 2995 3459 1500 2172 Face 2996 3459 3458 1500 Face 2997 231 1501 18 Face 2998 231 1268 3920 Face 2999 5970 5955 5952 Face 3000 860 309 5201 Face 3001 6242 5320 5429 Face 3002 6242 6425 5320 Face 3003 5952 1504 5573 Face 3004 5969 5282 1504 Face 3005 5975 5773 5972 Face 3006 5941 5938 5323 Face 3007 5222 1506 162 Face 3008 5222 774 1506 Face 3009 3 1507 418 Face 3010 3 5220 1507 Face 3011 3131 1508 1895 Face 3012 3131 3094 1508 Face 3013 1198 3911 2555 Face 3014 1198 3910 3911 Face 3015 5261 2638 5369 Face 3016 626 1149 1510 Face 3017 67 1511 946 Face 3018 67 328 1511 Face 3019 2047 1512 2048 Face 3020 3690 1168 2277 Face 3021 3753 1513 4350 Face 3022 3753 3284 1513 Face 3023 4350 4383 3753 Face 3024 25 303 1514 Face 3025 128 1515 1851 Face 3026 128 9 1515 Face 3027 269 1516 2017 Face 3028 3854 4030 3702 Face 3029 893 5310 5312 Face 3030 893 166 1517 Face 3031 3130 1518 1843 Face 3032 3130 3129 1518 Face 3033 348 1519 5825 Face 3034 348 1306 1519 Face 3035 61 5010 1599 Face 3036 5011 5029 1520 Face 3037 1357 5029 4581 Face 3038 1357 4721 5029 Face 3039 194 5030 1521 Face 3040 194 1382 1522 Face 3041 2887 4391 4392 Face 3042 2888 2056 1523 Face 3043 2052 1625 2053 Face 3044 2052 1819 1625 Face 3045 2311 3944 2918 Face 3046 2311 2310 3944 Face 3047 2918 1941 2311 Face 3048 2918 1530 1941 Face 3049 3301 1613 1528 Face 3050 3301 1573 1613 Face 3051 910 1528 1613 Face 3052 910 790 1528 Face 3053 1605 1529 1175 Face 3054 790 910 1529 Face 3055 1175 1530 789 Face 3056 1175 1529 1530 Face 3057 789 3762 2480 Face 3058 789 3761 3762 Face 3059 1228 2262 1438 Face 3060 1228 2394 2262 Face 3061 109 1533 2921 Face 3062 109 1330 1533 Face 3063 114 1534 6039 Face 3064 114 1327 1534 Face 3065 25 1535 268 Face 3066 25 3972 1535 Face 3067 155 5315 5438 Face 3068 155 1325 1536 Face 3069 1029 1537 2286 Face 3070 1029 1444 1537 Face 3071 62 5019 4810 Face 3072 1555 4981 5019 Face 3073 4527 4810 5019 Face 3074 1131 1384 1539 Face 3075 1229 1540 953 Face 3076 1229 1228 1540 Face 3077 2765 4102 4103 Face 3078 2765 1745 4102 Face 3079 486 1542 1211 Face 3080 486 3816 1542 Face 3081 3542 1543 1852 Face 3082 3758 2796 1543 Face 3083 215 1544 2281 Face 3084 215 459 1544 Face 3085 2892 1545 2764 Face 3086 2892 2477 1545 Face 3087 3044 1546 1607 Face 3088 3044 3043 1546 Face 3089 161 1547 2476 Face 3090 161 2694 1547 Face 3091 2778 1548 2760 Face 3092 3648 1102 3515 Face 3093 43 1864 4874 Face 3094 43 105 1864 Face 3095 585 1550 1633 Face 3096 2956 2957 1550 Face 3097 5929 5932 5205 Face 3098 5226 5059 5224 Face 3099 293 3798 3799 Face 3100 293 5226 3798 Face 3101 5435 5177 5203 Face 3102 5435 798 5177 Face 3103 798 1554 5177 Face 3104 798 625 1554 Face 3105 62 1555 5019 Face 3106 62 1385 1555 Face 3107 296 1556 47 Face 3108 296 438 1556 Face 3109 4733 4130 5142 Face 3110 3519 4002 4130 Face 3111 432 1558 139 Face 3112 432 3093 1558 Face 3113 248 3093 432 Face 3114 248 4048 3093 Face 3115 1036 1560 630 Face 3116 2871 2700 3788 Face 3117 1563 1561 1562 Face 3118 2287 2283 1561 Face 3119 1820 1562 1819 Face 3120 1820 134 1562 Face 3121 134 1563 1562 Face 3122 134 571 1563 Face 3123 3128 1564 1963 Face 3124 3128 3259 1564 Face 3125 3039 2758 3864 Face 3126 2215 2216 2698 Face 3127 216 1566 327 Face 3128 216 1054 1566 Face 3129 2872 3998 3692 Face 3130 46 799 1567 Face 3131 2459 2022 3170 Face 3132 769 2224 1568 Face 3133 3144 1569 2304 Face 3134 3144 3145 1569 Face 3135 641 1570 1364 Face 3136 641 640 1570 Face 3137 640 1571 1570 Face 3138 640 176 1571 Face 3139 639 1572 666 Face 3140 639 1704 1572 Face 3141 2115 3443 952 Face 3142 2115 2114 3443 Face 3143 1067 1574 1013 Face 3144 1067 951 1574 Face 3145 3596 3589 3002 Face 3146 3182 1641 1575 Face 3147 1965 3364 3365 Face 3148 1965 1581 3364 Face 3149 2687 5719 1265 Face 3150 2687 2331 1577 Face 3151 3384 1578 1789 Face 3152 3384 3383 1578 Face 3153 4106 4312 4107 Face 3154 4106 2358 4312 Face 3155 3867 2062 3868 Face 3156 3867 3818 2062 Face 3157 1966 3319 3320 Face 3158 1966 1967 3319 Face 3159 2627 1582 2626 Face 3160 2627 1583 1582 Face 3161 2628 1583 2627 Face 3162 2628 1584 1583 Face 3163 2629 1584 2628 Face 3164 2629 1269 1584 Face 3165 1269 1585 1584 Face 3166 3570 2623 3572 Face 3167 554 2623 931 Face 3168 554 3572 2623 Face 3169 931 1972 554 Face 3170 931 756 1972 Face 3171 756 1973 1972 Face 3172 756 1832 1973 Face 3173 3339 3341 3568 Face 3174 800 3343 2979 Face 3175 916 1590 1591 Face 3176 2764 1347 3336 Face 3177 1069 1591 1590 Face 3178 1069 611 1591 Face 3179 611 1592 1231 Face 3180 611 1069 1592 Face 3181 1231 1593 611 Face 3182 1231 1230 1593 Face 3183 360 1594 2382 Face 3184 360 1799 1594 Face 3185 2730 1595 2392 Face 3186 2984 1742 1595 Face 3187 4172 4210 4006 Face 3188 472 739 1596 Face 3189 737 1597 1598 Face 3190 4006 4210 3994 Face 3191 316 1598 1597 Face 3192 316 152 1598 Face 3193 4796 1599 5010 Face 3194 110 1263 1599 Face 3195 481 1600 1601 Face 3196 481 1468 1600 Face 3197 1201 1601 1600 Face 3198 2650 2255 2649 Face 3199 673 1602 1164 Face 3200 2255 2650 2256 Face 3201 1164 1603 1604 Face 3202 1164 1602 1603 Face 3203 63 1604 1603 Face 3204 4573 4747 4572 Face 3205 790 1605 2354 Face 3206 790 1529 1605 Face 3207 757 1606 1490 Face 3208 757 434 1606 Face 3209 3045 1607 1405 Face 3210 3045 3044 1607 Face 3211 3016 1608 1609 Face 3212 3016 3015 1608 Face 3213 3017 1609 1610 Face 3214 3017 3016 1609 Face 3215 3018 1610 3019 Face 3216 3018 3017 1610 Face 3217 572 1611 179 Face 3218 572 589 1611 Face 3219 957 2725 1337 Face 3220 2726 2948 1612 Face 3221 1527 1613 1614 Face 3222 1527 2306 1613 Face 3223 1573 1614 1613 Face 3224 1573 1615 1614 Face 3225 3682 1615 2349 Face 3226 3682 1614 1615 Face 3227 3290 2737 1190 Face 3228 3290 3014 2737 Face 3229 797 1617 1328 Face 3230 797 1365 1617 Face 3231 2825 1618 2735 Face 3232 2825 2018 1618 Face 3233 2018 1619 1618 Face 3234 2018 1647 1619 Face 3235 3655 3672 740 Face 3236 2912 3665 1620 Face 3237 3732 1628 2842 Face 3238 3732 2840 1628 Face 3239 1224 2842 1628 Face 3240 1224 2937 2842 Face 3241 852 1623 1795 Face 3242 1793 2886 1626 Face 3243 2840 2309 1628 Face 3244 2840 2839 2309 Face 3245 2845 4184 3674 Face 3246 2845 4043 4184 Face 3247 4376 4250 4375 Face 3248 4376 4251 4250 Face 3249 4039 4043 2845 Face 3250 4039 2520 4043 Face 3251 1621 1628 2309 Face 3252 1621 1224 1628 Face 3253 788 1629 1621 Face 3254 788 1526 1629 Face 3255 3387 1630 1938 Face 3256 3387 1789 1630 Face 3257 670 1631 1806 Face 3258 4747 4573 4574 Face 3259 5708 6158 5284 Face 3260 6174 6006 6169 Face 3261 584 1633 1550 Face 3262 584 1638 1633 Face 3263 3487 1634 3335 Face 3264 3469 2681 1634 Face 3265 1104 3335 3186 Face 3266 1104 236 1635 Face 3267 2369 3659 2610 Face 3268 168 3982 3659 Face 3269 2861 6112 281 Face 3270 6423 5364 5791 Face 3271 5502 5501 5504 Face 3272 408 1633 2814 Face 3273 372 1639 528 Face 3274 372 2174 1639 Face 3275 1160 4934 2167 Face 3276 1160 1244 4934 Face 3277 3627 1641 3182 Face 3278 3627 3628 1641 Face 3279 3378 1642 562 Face 3280 3378 3380 1642 Face 3281 2549 3380 3385 Face 3282 2549 1642 3380 Face 3283 3658 1644 3359 Face 3284 3658 1687 1644 Face 3285 351 3512 2828 Face 3286 351 1814 3541 Face 3287 540 1646 224 Face 3288 540 322 1646 Face 3289 434 1647 609 Face 3290 434 1619 1647 Face 3291 530 1648 2195 Face 3292 530 1180 1648 Face 3293 4089 4088 4380 Face 3294 361 1650 1649 Face 3295 587 1650 361 Face 3296 587 1651 1650 Face 3297 689 1651 587 Face 3298 2536 6177 2967 Face 3299 6463 6177 2536 Face 3300 690 935 3695 Face 3301 3134 3733 1652 Face 3302 3134 1654 3733 Face 3303 3133 1654 3134 Face 3304 4308 1895 3953 Face 3305 5584 5438 5315 Face 3306 5584 5582 1655 Face 3307 5577 1656 5438 Face 3308 842 1374 1656 Face 3309 20 1657 1488 Face 3310 2573 3125 2635 Face 3311 873 1658 872 Face 3312 873 1326 1658 Face 3313 808 1659 1660 Face 3314 808 1469 1659 Face 3315 809 1660 1659 Face 3316 2660 2247 2659 Face 3317 89 1661 905 Face 3318 2247 2660 2246 Face 3319 905 1662 1663 Face 3320 905 1661 1662 Face 3321 106 1663 1662 Face 3322 3444 3928 3467 Face 3323 3928 3857 3467 Face 3324 282 443 1664 Face 3325 443 1665 1664 Face 3326 443 1666 1665 Face 3327 2160 2161 4116 Face 3328 901 1665 1666 Face 3329 4116 4115 2160 Face 3330 900 899 1667 Face 3331 899 1668 1667 Face 3332 899 1669 1668 Face 3333 130 1669 324 Face 3334 130 1668 1669 Face 3335 324 1670 1671 Face 3336 324 1669 1670 Face 3337 437 1671 1670 Face 3338 437 1672 1671 Face 3339 858 1672 437 Face 3340 4165 4267 4164 Face 3341 4266 4267 4165 Face 3342 1049 1674 1673 Face 3343 563 1674 1049 Face 3344 563 1921 1674 Face 3345 4247 3851 3675 Face 3346 4247 3782 3851 Face 3347 3176 1676 1675 Face 3348 3176 1689 1676 Face 3349 585 2956 1550 Face 3350 585 2955 2956 Face 3351 2330 2955 585 Face 3352 2460 2953 2954 Face 3353 170 1679 257 Face 3354 2382 2232 2679 Face 3355 14 1680 251 Face 3356 2387 1679 2678 Face 3357 3673 2328 1271 Face 3358 553 517 1681 Face 3359 3689 1682 4068 Face 3360 1004 1887 1682 Face 3361 4027 1683 2338 Face 3362 4027 3534 1683 Face 3363 23 1684 723 Face 3364 23 2079 1684 Face 3365 3974 4074 4076 Face 3366 760 2314 1685 Face 3367 4820 4821 1341 Face 3368 601 1243 2966 Face 3369 4067 3191 3192 Face 3370 4067 1885 3191 Face 3371 835 1688 3815 Face 3372 835 2431 1688 Face 3373 1061 1689 1798 Face 3374 1061 1676 1689 Face 3375 1045 1690 3253 Face 3376 1045 3095 1690 Face 3377 515 1691 2301 Face 3378 515 4050 1691 Face 3379 385 1692 2297 Face 3380 385 4072 3786 Face 3381 2647 1693 2303 Face 3382 2647 1389 1693 Face 3383 362 1694 34 Face 3384 362 4968 1694 Face 3385 180 1695 685 Face 3386 5078 4734 4968 Face 3387 4867 1696 2713 Face 3388 4931 1876 4610 Face 3389 4809 1697 4881 Face 3390 4809 4682 1697 Face 3391 1406 1698 1779 Face 3392 4933 4622 2750 Face 3393 375 1699 1700 Face 3394 375 1485 1699 Face 3395 2656 2657 2250 Face 3396 191 375 1700 Face 3397 2251 2252 2655 Face 3398 1188 1702 1701 Face 3399 1107 1702 671 Face 3400 1107 1701 1702 Face 3401 671 1703 1107 Face 3402 4828 4442 1703 Face 3403 640 1704 639 Face 3404 640 641 1704 Face 3405 641 1705 1704 Face 3406 641 368 1705 Face 3407 368 1706 1705 Face 3408 368 154 1706 Face 3409 154 1707 1706 Face 3410 2144 1215 2143 Face 3411 1215 1708 1214 Face 3412 1215 2144 1708 Face 3413 1214 1709 1179 Face 3414 1214 1708 1709 Face 3415 1179 1710 4058 Face 3416 1179 1709 1710 Face 3417 723 1711 1712 Face 3418 723 804 1711 Face 3419 721 1712 1711 Face 3420 721 1713 1712 Face 3421 198 1713 1714 Face 3422 198 1712 1713 Face 3423 813 1714 1713 Face 3424 2141 1715 2140 Face 3425 814 1715 1716 Face 3426 814 2140 1715 Face 3427 530 1716 1717 Face 3428 530 814 1716 Face 3429 1180 1717 4052 Face 3430 1180 530 1717 Face 3431 2461 2953 2460 Face 3432 2196 3150 1718 Face 3433 3854 1719 4030 Face 3434 3854 3894 1719 Face 3435 1046 1720 795 Face 3436 1046 2188 1720 Face 3437 2373 1721 4096 Face 3438 3503 3504 1721 Face 3439 2550 3385 3393 Face 3440 2550 2549 3385 Face 3441 2551 3393 1778 Face 3442 2551 2550 3393 Face 3443 2756 2759 1184 Face 3444 2756 1565 2759 Face 3445 2688 2435 3038 Face 3446 727 1140 1725 Face 3447 449 1726 1727 Face 3448 449 1007 1726 Face 3449 115 1727 1726 Face 3450 2664 2243 2663 Face 3451 358 1728 446 Face 3452 2243 2664 2242 Face 3453 446 1729 1730 Face 3454 446 1728 1729 Face 3455 319 1730 1729 Face 3456 4420 4332 4425 Face 3457 47 1731 296 Face 3458 47 367 1731 Face 3459 367 1732 1731 Face 3460 2147 1733 2146 Face 3461 117 1733 365 Face 3462 117 2146 1733 Face 3463 365 1734 646 Face 3464 365 1733 1734 Face 3465 646 1735 3942 Face 3466 646 1734 1735 Face 3467 3302 1736 2951 Face 3468 3302 1993 1736 Face 3469 3197 3124 2794 Face 3470 1186 1442 1737 Face 3471 2057 1738 2024 Face 3472 174 741 1738 Face 3473 120 1739 153 Face 3474 2970 2930 6413 Face 3475 741 1740 1738 Face 3476 741 2929 1740 Face 3477 3140 1741 3139 Face 3478 2296 2681 2690 Face 3479 1283 1742 1271 Face 3480 1283 1595 1742 Face 3481 630 1743 2701 Face 3482 630 1560 1743 Face 3483 557 1744 1743 Face 3484 4005 3790 3926 Face 3485 625 1745 1554 Face 3486 625 4102 1745 Face 3487 199 1746 1747 Face 3488 199 1465 1746 Face 3489 249 1747 1746 Face 3490 2671 2236 2670 Face 3491 2235 2236 2671 Face 3492 1234 1749 1748 Face 3493 256 1749 1750 Face 3494 256 1748 1749 Face 3495 389 1750 1749 Face 3496 4520 4410 4409 Face 3497 661 1751 1752 Face 3498 661 1487 1751 Face 3499 191 1752 1751 Face 3500 2656 2251 2655 Face 3501 1188 1753 378 Face 3502 2251 2656 2250 Face 3503 378 1754 1755 Face 3504 378 1753 1754 Face 3505 287 1755 1754 Face 3506 4666 4426 4830 Face 3507 12 1756 1757 Face 3508 12 317 1756 Face 3509 1083 1757 1756 Face 3510 1083 1153 1757 Face 3511 1153 1758 1757 Face 3512 1153 505 1758 Face 3513 505 1759 1758 Face 3514 2424 1934 3286 Face 3515 647 1760 359 Face 3516 2873 4062 3080 Face 3517 3049 1761 3050 Face 3518 3049 2282 1761 Face 3519 1347 1846 3336 Face 3520 1347 2022 1762 Face 3521 2205 1763 1762 Face 3522 2205 2208 1763 Face 3523 189 1764 1765 Face 3524 189 1477 1764 Face 3525 448 1765 1764 Face 3526 2662 2245 2661 Face 3527 906 1766 241 Face 3528 2245 2662 2244 Face 3529 241 1767 1768 Face 3530 241 1766 1767 Face 3531 812 1768 1767 Face 3532 3924 3488 3923 Face 3533 1529 1769 1530 Face 3534 1529 1770 1769 Face 3535 1333 2483 1494 Face 3536 1333 1769 1770 Face 3537 2692 3560 2019 Face 3538 2692 3561 3560 Face 3539 2378 1772 4022 Face 3540 3158 3159 1772 Face 3541 152 1773 1598 Face 3542 2984 1595 2730 Face 3543 700 1774 2443 Face 3544 700 960 1774 Face 3545 546 1775 1203 Face 3546 4647 4750 4753 Face 3547 4168 4193 4192 Face 3548 818 1777 1776 Face 3549 23 1777 818 Face 3550 23 1918 1777 Face 3551 3249 3417 3633 Face 3552 3249 2551 1778 Face 3553 607 1779 1698 Face 3554 607 60 1779 Face 3555 799 1780 381 Face 3556 799 46 1780 Face 3557 4272 4347 4082 Face 3558 381 1780 1781 Face 3559 1142 1782 633 Face 3560 4082 4347 4081 Face 3561 633 1783 712 Face 3562 633 1782 1783 Face 3563 1140 1784 1141 Face 3564 1140 727 1784 Face 3565 4270 4271 4084 Face 3566 1141 1784 1785 Face 3567 996 1786 83 Face 3568 4085 4270 4084 Face 3569 83 1787 394 Face 3570 83 1786 1787 Face 3571 3156 1788 2373 Face 3572 3157 2378 1788 Face 3573 3386 1789 3387 Face 3574 3386 3384 1789 Face 3575 804 1790 1711 Face 3576 804 1448 1790 Face 3577 706 1791 3123 Face 3578 2886 1793 4241 Face 3579 1448 1792 1790 Face 3580 2836 4159 2837 Face 3581 2838 2513 2512 Face 3582 2838 2837 2513 Face 3583 2839 3961 2309 Face 3584 2839 3962 3961 Face 3585 827 1795 1623 Face 3586 827 1227 1795 Face 3587 595 1796 2355 Face 3588 4049 1691 4050 Face 3589 3531 1797 2734 Face 3590 3697 1955 3374 Face 3591 1377 1798 1689 Face 3592 1377 1150 1798 Face 3593 76 1799 360 Face 3594 76 3820 4479 Face 3595 1801 3938 3300 Face 3596 3915 2703 1800 Face 3597 3916 1801 1930 Face 3598 3916 1800 1801 Face 3599 571 1802 1563 Face 3600 571 593 1802 Face 3601 593 1803 1802 Face 3602 2049 3126 1803 Face 3603 642 1804 1556 Face 3604 642 2138 1804 Face 3605 3303 1993 3302 Face 3606 3304 2274 1805 Face 3607 669 1806 1631 Face 3608 669 1807 1806 Face 3609 2153 2155 4110 Face 3610 342 1806 1807 Face 3611 399 1808 1809 Face 3612 4109 2153 4110 Face 3613 726 1809 1808 Face 3614 726 1811 1809 Face 3615 712 1810 1281 Face 3616 712 1783 1810 Face 3617 278 1811 1914 Face 3618 278 1809 1811 Face 3619 343 1812 4435 Face 3620 343 48 1812 Face 3621 955 1813 1226 Face 3622 955 1112 1813 Face 3623 3005 1814 351 Face 3624 3005 2082 1814 Face 3625 352 1815 1481 Face 3626 352 3508 1815 Face 3627 1108 1816 739 Face 3628 1108 1109 1816 Face 3629 739 1817 1596 Face 3630 739 1816 1817 Face 3631 3663 2683 1636 Face 3632 508 3288 3530 Face 3633 2722 1819 2052 Face 3634 2722 1820 1819 Face 3635 2191 1820 2722 Face 3636 2191 1857 1820 Face 3637 3166 1821 1822 Face 3638 3166 3165 1821 Face 3639 3167 1822 1897 Face 3640 3167 3166 1822 Face 3641 2289 3711 2270 Face 3642 284 2200 1823 Face 3643 2939 1824 3738 Face 3644 1035 237 1824 Face 3645 1271 1825 1283 Face 3646 1271 2328 1825 Face 3647 2383 2864 2465 Face 3648 2383 2749 2864 Face 3649 477 3060 1257 Face 3650 477 1005 3060 Face 3651 1005 2452 1829 Face 3652 1005 477 2452 Face 3653 2451 1829 2452 Face 3654 3397 3410 3398 Face 3655 3408 3409 3396 Face 3656 2746 2745 2450 Face 3657 3390 1831 1836 Face 3658 3390 1937 1831 Face 3659 688 1832 756 Face 3660 688 1833 1832 Face 3661 1125 1833 688 Face 3662 1125 1828 1833 Face 3663 1828 1834 1833 Face 3664 1828 1835 1834 Face 3665 1123 1835 1828 Face 3666 3395 3408 3396 Face 3667 3462 3847 3845 Face 3668 3392 3390 1836 Face 3669 866 5815 371 Face 3670 3888 5086 6420 Face 3671 500 1838 2470 Face 3672 500 987 1838 Face 3673 5028 1866 4578 Face 3674 3036 4678 1839 Face 3675 470 1840 1424 Face 3676 470 5027 5025 Face 3677 3670 1841 3473 Face 3678 3670 2194 1841 Face 3679 3916 3915 1800 Face 3680 423 523 1842 Face 3681 3141 1843 1896 Face 3682 3141 3130 1843 Face 3683 986 1844 3528 Face 3684 986 850 1844 Face 3685 678 1845 1844 Face 3686 678 1847 1845 Face 3687 1762 1846 1347 Face 3688 1762 1847 1846 Face 3689 1763 1847 1762 Face 3690 1763 1845 1847 Face 3691 1017 1848 1016 Face 3692 3529 1763 2208 Face 3693 1520 4722 4389 Face 3694 1520 5029 4721 Face 3695 110 1850 390 Face 3696 4796 5010 4389 Face 3697 923 1851 340 Face 3698 923 128 1851 Face 3699 2109 1852 2792 Face 3700 2109 3542 1852 Face 3701 578 1853 2202 Face 3702 3757 3747 2599 Face 3703 2954 2955 2460 Face 3704 1678 2578 1854 Face 3705 5480 5485 5482 Face 3706 4323 1856 1855 Face 3707 1372 1856 4323 Face 3708 1372 264 1856 Face 3709 134 1857 1902 Face 3710 134 1820 1857 Face 3711 1507 1858 1859 Face 3712 1507 1502 1858 Face 3713 279 1859 1858 Face 3714 5207 419 1859 Face 3715 268 1860 1868 Face 3716 268 1535 1860 Face 3717 1880 1861 3162 Face 3718 1880 1031 1861 Face 3719 1096 1862 3037 Face 3720 3163 5663 5268 Face 3721 105 1863 1864 Face 3722 105 1208 1863 Face 3723 1549 3035 2858 Face 3724 4806 3036 4564 Face 3725 1031 1865 1861 Face 3726 4874 4564 4579 Face 3727 1839 1866 5028 Face 3728 5027 470 1866 Face 3729 1032 4897 1866 Face 3730 1032 1282 1867 Face 3731 98 1868 5359 Face 3732 98 268 1868 Face 3733 3921 4578 4897 Face 3734 3921 1870 1869 Face 3735 304 1870 3921 Face 3736 304 98 1870 Face 3737 535 3200 111 Face 3738 535 3199 3200 Face 3739 373 3199 535 Face 3740 373 3198 3199 Face 3741 59 3198 373 Face 3742 59 1874 3198 Face 3743 682 1874 59 Face 3744 3569 3339 3568 Face 3745 239 1875 3569 Face 3746 239 782 1875 Face 3747 4973 1876 4974 Face 3748 4973 4932 1876 Face 3749 2717 1877 1875 Face 3750 4613 1876 4931 Face 3751 2396 1878 1931 Face 3752 1229 953 2546 Face 3753 2482 3955 2598 Face 3754 2482 6407 3955 Face 3755 267 1880 2619 Face 3756 267 43 1880 Face 3757 945 1881 1884 Face 3758 5574 2693 1883 Face 3759 5804 5806 1883 Face 3760 946 1511 1882 Face 3761 2696 1883 5806 Face 3762 5550 5574 1883 Face 3763 401 1884 1881 Face 3764 401 201 1884 Face 3765 992 1885 4067 Face 3766 992 1355 1885 Face 3767 1150 1886 1798 Face 3768 1150 325 1886 Face 3769 283 1887 1004 Face 3770 283 1888 1887 Face 3771 2157 2158 4113 Face 3772 668 1887 1888 Face 3773 667 1889 1890 Face 3774 4112 2157 4113 Face 3775 211 1890 1889 Face 3776 211 1891 1890 Face 3777 999 1891 998 Face 3778 999 1890 1891 Face 3779 5378 6390 5891 Face 3780 208 974 3717 Face 3781 3455 1893 3657 Face 3782 3455 2291 1893 Face 3783 340 1894 341 Face 3784 340 1851 1894 Face 3785 1513 3132 4349 Face 3786 1513 1896 3132 Face 3787 3284 1896 1513 Face 3788 3284 3141 1896 Face 3789 3369 1897 1898 Face 3790 3369 3167 1897 Face 3791 3457 1898 2072 Face 3792 3457 3369 1898 Face 3793 6090 6098 6080 Face 3794 2390 6207 6212 Face 3795 136 3288 508 Face 3796 136 2390 3288 Face 3797 953 1901 2546 Face 3798 953 2494 1901 Face 3799 758 1902 1857 Face 3800 758 1338 1902 Face 3801 2946 1903 3124 Face 3802 2946 1905 1903 Face 3803 325 1904 1886 Face 3804 325 1906 1904 Face 3805 648 1905 957 Face 3806 648 1903 1905 Face 3807 579 1906 2727 Face 3808 579 1904 1906 Face 3809 1494 1907 1911 Face 3810 1494 1209 1907 Face 3811 884 1908 271 Face 3812 3488 3924 1908 Face 3813 654 1909 81 Face 3814 654 2293 1909 Face 3815 81 1910 654 Face 3816 81 1478 1910 Face 3817 1491 1911 1907 Face 3818 1491 2045 1911 Face 3819 1281 1912 1370 Face 3820 1281 1810 1912 Face 3821 3255 1913 725 Face 3822 3255 3254 1913 Face 3823 712 1914 633 Face 3824 712 278 1914 Face 3825 2963 3737 2303 Face 3826 495 3691 1915 Face 3827 3691 2038 1915 Face 3828 740 3687 1916 Face 3829 3287 1917 2983 Face 3830 3287 3286 1917 Face 3831 853 1918 1919 Face 3832 853 1777 1918 Face 3833 306 1919 1918 Face 3834 306 2005 1919 Face 3835 929 1920 2275 Face 3836 929 336 1920 Face 3837 733 1921 563 Face 3838 2921 929 2922 Face 3839 998 1922 997 Face 3840 998 1891 1922 Face 3841 3043 1923 1546 Face 3842 3043 2685 1923 Face 3843 3512 2594 2828 Face 3844 2810 2809 2811 Face 3845 1531 3709 2395 Face 3846 1531 3674 3709 Face 3847 3484 1926 1931 Face 3848 3484 2733 1926 Face 3849 163 2422 488 Face 3850 163 3988 2422 Face 3851 213 1928 1447 Face 3852 213 488 1928 Face 3853 488 1929 1928 Face 3854 488 2422 1929 Face 3855 3891 1930 2208 Face 3856 3891 2206 1930 Face 3857 3793 1931 1307 Face 3858 3793 3484 1931 Face 3859 182 1932 2325 Face 3860 182 877 1932 Face 3861 2992 1933 3743 Face 3862 697 3513 1933 Face 3863 1222 1934 3688 Face 3864 1222 1917 1934 Face 3865 3665 3666 1620 Face 3866 119 1130 1935 Face 3867 3498 1936 4019 Face 3868 3498 2319 1936 Face 3869 3389 1937 3390 Face 3870 3389 1938 1937 Face 3871 3388 1938 3389 Face 3872 3388 3387 1938 Face 3873 1198 1939 3297 Face 3874 2958 2130 2957 Face 3875 850 1940 2029 Face 3876 850 986 1940 Face 3877 1526 2312 2178 Face 3878 1526 788 2312 Face 3879 284 1942 17 Face 3880 2289 3803 3142 Face 3881 1105 1943 702 Face 3882 4261 2411 1943 Face 3883 1009 1944 1086 Face 3884 1009 1361 1944 Face 3885 1086 1945 1087 Face 3886 1086 1944 1945 Face 3887 1087 1946 1086 Face 3888 1087 1146 1946 Face 3889 1146 1947 1946 Face 3890 1146 1948 1947 Face 3891 1147 1948 1949 Face 3892 1147 1947 1948 Face 3893 1187 1949 635 Face 3894 1187 1147 1949 Face 3895 635 3000 822 Face 3896 635 1949 3000 Face 3897 822 2978 635 Face 3898 822 2908 2978 Face 3899 2462 2951 2952 Face 3900 865 409 1952 Face 3901 2952 2953 2461 Face 3902 1718 3292 1953 Face 3903 3546 3929 1509 Face 3904 586 2125 1954 Face 3905 559 1955 2691 Face 3906 559 2863 1955 Face 3907 4023 4024 1788 Face 3908 959 1957 1956 Face 3909 567 1957 1958 Face 3910 567 1956 1957 Face 3911 747 1958 1957 Face 3912 747 1960 1958 Face 3913 2431 2964 1688 Face 3914 2582 2580 2964 Face 3915 939 1960 2432 Face 3916 939 1958 1960 Face 3917 565 1961 2064 Face 3918 565 1960 1961 Face 3919 419 1962 476 Face 3920 419 5207 1962 Face 3921 3129 1963 1518 Face 3922 3129 3128 1963 Face 3923 2624 3365 2572 Face 3924 2624 1965 3365 Face 3925 2625 3320 3321 Face 3926 2625 1966 3320 Face 3927 2626 1966 2625 Face 3928 2626 1582 1966 Face 3929 1582 1967 1966 Face 3930 1582 1968 1967 Face 3931 1583 1968 1582 Face 3932 1583 1969 1968 Face 3933 1584 1969 1583 Face 3934 1584 1585 1969 Face 3935 1585 1970 1969 Face 3936 3572 554 3573 Face 3937 554 1971 3573 Face 3938 554 1972 1971 Face 3939 1587 1972 1973 Face 3940 1587 1971 1972 Face 3941 3062 1973 2454 Face 3942 3062 1587 1973 Face 3943 3061 1974 2455 Face 3944 3061 1827 1974 Face 3945 1827 1975 1974 Face 3946 1827 1976 1975 Face 3947 606 1976 990 Face 3948 606 1975 1976 Face 3949 3401 3400 3413 Face 3950 990 1976 1977 Face 3951 3412 3413 3400 Face 3952 1122 1979 1978 Face 3953 1275 1979 1980 Face 3954 1275 1978 1979 Face 3955 1274 1980 1979 Face 3956 1274 1981 1980 Face 3957 1273 1981 1274 Face 3958 1273 1414 1981 Face 3959 1414 1982 1981 Face 3960 1414 1983 1982 Face 3961 1412 3022 1984 Face 3962 1412 3023 3022 Face 3963 949 1984 1410 Face 3964 949 1412 1984 Face 3965 1410 1985 1986 Face 3966 1410 1984 1985 Face 3967 1409 1986 1987 Face 3968 1409 1410 1986 Face 3969 1408 1987 1988 Face 3970 1408 1409 1987 Face 3971 1407 3237 1989 Face 3972 1407 3238 3237 Face 3973 3435 1989 3436 Face 3974 3435 1407 1989 Face 3975 730 3521 3437 Face 3976 730 3552 3521 Face 3977 2540 2906 4034 Face 3978 940 2175 1991 Face 3979 589 1992 1611 Face 3980 2914 2540 4034 Face 3981 1805 1993 3303 Face 3982 1805 3147 1993 Face 3983 53 1994 430 Face 3984 4948 4542 4541 Face 3985 326 1995 1261 Face 3986 326 1996 1995 Face 3987 1171 1996 326 Face 3988 1171 1998 5832 Face 3989 944 1997 5580 Face 3990 944 5437 1997 Face 3991 5834 6389 944 Face 3992 5834 5832 1998 Face 3993 186 5437 6389 Face 3994 186 2000 1999 Face 3995 961 2000 186 Face 3996 961 722 2000 Face 3997 3542 3758 1543 Face 3998 722 961 2001 Face 3999 298 2002 1268 Face 4000 298 2482 2002 Face 4001 791 2003 885 Face 4002 791 3003 2003 Face 4003 2225 4262 4261 Face 4004 4580 2140 4262 Face 4005 1331 2005 2225 Face 4006 1331 1919 2005 Face 4007 1370 2006 2229 Face 4008 1370 1912 2006 Face 4009 3346 2007 2294 Face 4010 3346 3347 2007 Face 4011 6132 6339 6336 Face 4012 5799 6313 6257 Face 4013 5527 6313 5799 Face 4014 5797 5645 6066 Face 4015 2799 6108 5289 Face 4016 6105 5255 6000 Face 4017 2814 5501 408 Face 4018 5758 5763 5760 Face 4019 5771 5763 5758 Face 4020 5765 2013 5768 Face 4021 5762 5855 5765 Face 4022 5726 2799 5855 Face 4023 523 2014 781 Face 4024 523 779 2014 Face 4025 781 2015 2780 Face 4026 781 2014 2015 Face 4027 3937 2016 3931 Face 4028 3937 2703 2016 Face 4029 200 2017 1516 Face 4030 200 2030 2017 Face 4031 135 2018 2495 Face 4032 135 1647 2018 Face 4033 2784 2019 2197 Face 4034 2784 2692 2019 Face 4035 1367 2020 2119 Face 4036 1367 1368 2020 Face 4037 140 2021 1943 Face 4038 140 1496 2021 Face 4039 2779 2022 2459 Face 4040 2779 2205 2022 Face 4041 2691 2023 559 Face 4042 1741 3140 2023 Face 4043 2552 3748 1066 Face 4044 1065 1064 2024 Face 4045 1064 2025 1566 Face 4046 1064 1065 2025 Face 4047 1268 3766 3920 Face 4048 1268 2002 2026 Face 4049 1098 2027 2350 Face 4050 1098 3536 2027 Face 4051 1239 2028 1098 Face 4052 3996 5168 5130 Face 4053 851 2029 1940 Face 4054 5168 3996 2029 Face 4055 4476 5008 5047 Face 4056 289 2017 2030 Face 4057 1101 2031 1467 Face 4058 1101 2479 2031 Face 4059 3505 2032 3654 Face 4060 3652 5640 6358 Face 4061 1040 3654 2032 Face 4062 1040 889 3654 Face 4063 327 2034 759 Face 4064 327 39 2034 Face 4065 3655 2035 2033 Face 4066 3655 740 2035 Face 4067 1168 2036 2277 Face 4068 1168 1916 2036 Face 4069 740 2037 2035 Face 4070 740 1916 2037 Face 4071 3856 2038 3691 Face 4072 3856 4087 2038 Face 4073 734 2039 327 Face 4074 3778 2038 3779 Face 4075 55 2040 1017 Face 4076 55 2389 2040 Face 4077 542 2041 2043 Face 4078 542 101 2041 Face 4079 840 2042 838 Face 4080 3738 2479 3957 Face 4081 541 6125 5500 Face 4082 541 542 2043 Face 4083 838 2044 2783 Face 4084 838 2042 2044 Face 4085 1332 2045 1526 Face 4086 1332 1911 2045 Face 4087 2792 2046 2109 Face 4088 1499 1933 3513 Face 4089 39 2047 2034 Face 4090 2586 1512 2047 Face 4091 1338 2048 593 Face 4092 1338 2047 2048 Face 4093 593 2049 1803 Face 4094 593 2048 2049 Face 4095 693 2050 1499 Face 4096 2724 3172 2616 Face 4097 878 2051 2290 Face 4098 878 1008 2051 Face 4099 3230 3819 4339 Face 4100 3230 1063 3819 Face 4101 4339 4391 2887 Face 4102 4339 3819 4391 Face 4103 1053 2054 2971 Face 4104 2888 1523 3202 Face 4105 1566 2055 1064 Face 4106 1566 2056 2055 Face 4107 3333 2056 2888 Face 4108 3193 2055 2056 Face 4109 174 2057 2439 Face 4110 174 1738 2057 Face 4111 237 2058 1484 Face 4112 237 1035 2058 Face 4113 1688 3878 3815 Face 4114 3946 2812 3879 Face 4115 3817 2766 1288 Face 4116 3817 3816 2766 Face 4117 2767 4104 2768 Face 4118 2767 2060 4104 Face 4119 1580 2062 1288 Face 4120 1580 2063 2062 Face 4121 3868 2812 3946 Face 4122 3868 2062 3180 Face 4123 2431 2582 2964 Face 4124 318 565 2064 Face 4125 42 2065 2230 Face 4126 42 662 2065 Face 4127 675 2066 2264 Face 4128 675 1486 2066 Face 4129 4614 4752 3969 Face 4130 4614 4753 4752 Face 4131 3183 2068 4076 Face 4132 3183 2467 2068 Face 4133 918 2069 1474 Face 4134 918 490 2069 Face 4135 885 2070 1480 Face 4136 885 2003 2070 Face 4137 4436 3107 4147 Face 4138 962 2539 2071 Face 4139 3458 2072 1500 Face 4140 3458 3457 2072 Face 4141 1035 2073 2058 Face 4142 2939 2263 2829 Face 4143 539 3982 168 Face 4144 539 2829 2074 Face 4145 909 2075 1483 Face 4146 909 539 2075 Face 4147 3344 2076 3343 Face 4148 3344 2294 2076 Face 4149 2078 3545 3490 Face 4150 2078 3544 3545 Face 4151 328 2078 1511 Face 4152 328 3544 2078 Face 4153 818 2079 23 Face 4154 4168 4192 2517 Face 4155 236 2080 1476 Face 4156 236 1104 2080 Face 4157 1481 2081 1482 Face 4158 1481 1815 2081 Face 4159 1233 3006 687 Face 4160 1233 2083 3006 Face 4161 3313 2083 2084 Face 4162 3313 3006 2083 Face 4163 3312 2084 2085 Face 4164 3312 3313 2084 Face 4165 3311 2085 2086 Face 4166 3311 3312 2085 Face 4167 3310 2086 3309 Face 4168 3310 3311 2086 Face 4169 750 2087 301 Face 4170 750 2088 2087 Face 4171 214 2088 680 Face 4172 214 2087 2088 Face 4173 3605 3600 2090 Face 4174 680 2088 2089 Face 4175 133 2090 3600 Face 4176 133 2091 2090 Face 4177 753 2091 133 Face 4178 753 2092 2091 Face 4179 749 2092 2093 Face 4180 749 2091 2092 Face 4181 374 2093 2092 Face 4182 374 699 2093 Face 4183 699 2094 2093 Face 4184 699 1278 2094 Face 4185 1278 2095 2094 Face 4186 1278 1277 2095 Face 4187 3404 3403 3416 Face 4188 1277 1278 2096 Face 4189 1418 2097 2098 Face 4190 3422 3404 3416 Face 4191 1417 2098 2097 Face 4192 1417 2099 2098 Face 4193 988 2099 1415 Face 4194 988 2098 2099 Face 4195 1415 2100 2101 Face 4196 1415 2099 2100 Face 4197 772 2101 2100 Face 4198 772 2102 2101 Face 4199 3242 2102 3241 Face 4200 3242 2101 2102 Face 4201 3430 2103 3431 Face 4202 3430 864 2103 Face 4203 1077 3558 3557 Face 4204 1077 3559 3558 Face 4205 823 3557 3556 Face 4206 823 1077 3557 Face 4207 510 3556 2107 Face 4208 510 823 3556 Face 4209 3555 2107 3556 Face 4210 3555 2485 2107 Face 4211 4486 2504 2857 Face 4212 1207 1206 2108 Face 4213 1336 3543 328 Face 4214 1336 3542 3543 Face 4215 1226 2110 2112 Face 4216 1226 1622 2110 Face 4217 1112 2111 1813 Face 4218 1112 3693 2111 Face 4219 955 2112 1112 Face 4220 955 1226 2112 Face 4221 233 2113 3137 Face 4222 233 343 2113 Face 4223 3525 2114 2115 Face 4224 3525 3875 2114 Face 4225 3862 2115 2116 Face 4226 3680 3525 2115 Face 4227 952 2116 2115 Face 4228 952 796 2116 Face 4229 796 2117 2116 Face 4230 796 1901 2117 Face 4231 1307 2118 796 Face 4232 1307 1931 2118 Face 4233 157 2119 2020 Face 4234 157 276 2119 Face 4235 1488 2120 1489 Face 4236 1488 1657 2120 Face 4237 290 2121 259 Face 4238 290 1943 2411 Face 4239 2945 2122 493 Face 4240 5099 2348 2944 Face 4241 5107 4989 5108 Face 4242 5107 5014 4989 Face 4243 5053 5166 2944 Face 4244 5053 2565 5145 Face 4245 665 2125 586 Face 4246 665 494 2125 Face 4247 1244 2126 2168 Face 4248 1244 5307 2126 Face 4249 139 2127 532 Face 4250 5035 4561 2127 Face 4251 971 2128 354 Face 4252 971 976 2128 Face 4253 2268 2267 1202 Face 4254 90 2423 2129 Face 4255 1550 2130 584 Face 4256 1550 2957 2130 Face 4257 3799 2131 293 Face 4258 3799 5362 2131 Face 4259 487 2132 2134 Face 4260 487 485 2132 Face 4261 3816 2133 2766 Face 4262 3816 486 2133 Face 4263 1745 2134 2132 Face 4264 1745 2765 2134 Face 4265 4683 4682 4809 Face 4266 1696 4462 2135 Face 4267 5024 4873 4683 Face 4268 392 393 2136 Face 4269 341 2137 340 Face 4270 4118 2164 4119 Face 4271 441 2138 642 Face 4272 4120 2163 2154 Face 4273 271 2139 366 Face 4274 271 1908 2139 Face 4275 4363 2140 4580 Face 4276 4363 2141 2140 Face 4277 4362 2141 4363 Face 4278 4362 2142 2141 Face 4279 4304 2142 4362 Face 4280 4304 2143 2142 Face 4281 4303 2143 4304 Face 4282 4303 2144 2143 Face 4283 4302 2144 4303 Face 4284 4302 2145 2144 Face 4285 4301 2145 4302 Face 4286 4301 2146 2145 Face 4287 4300 2146 4301 Face 4288 4300 2147 2146 Face 4289 4123 2147 4300 Face 4290 4123 2148 2147 Face 4291 4122 2148 4123 Face 4292 4122 2149 2148 Face 4293 4121 2149 4122 Face 4294 4121 4120 2154 Face 4295 366 2150 2149 Face 4296 366 2139 2150 Face 4297 2162 2164 4118 Face 4298 442 2165 2151 Face 4299 728 2152 1093 Face 4300 2336 2153 4309 Face 4301 342 2153 2336 Face 4302 342 2155 2153 Face 4303 2149 2154 366 Face 4304 2149 4121 2154 Face 4305 1807 2155 342 Face 4306 1807 2156 2155 Face 4307 1002 2156 1807 Face 4308 1002 2157 2156 Face 4309 668 2157 1002 Face 4310 668 2158 2157 Face 4311 1888 2158 668 Face 4312 1888 2159 2158 Face 4313 118 2159 1888 Face 4314 118 2160 2159 Face 4315 901 2160 118 Face 4316 901 2161 2160 Face 4317 1666 2161 901 Face 4318 1666 2162 2161 Face 4319 442 2162 1666 Face 4320 442 2164 2162 Face 4321 920 2163 2151 Face 4322 920 2154 2163 Face 4323 2151 2164 442 Face 4324 2151 2163 2164 Face 4325 919 2165 2166 Face 4326 919 2151 2165 Face 4327 282 2166 2165 Face 4328 3928 3444 3956 Face 4329 2170 4890 2168 Face 4330 2170 2169 4890 Face 4331 1640 2168 2126 Face 4332 1640 2170 2168 Face 4333 4641 3810 3811 Face 4334 4641 4553 3810 Face 4335 4737 3811 3812 Face 4336 4737 4641 3811 Face 4337 224 2171 167 Face 4338 224 1646 2171 Face 4339 3700 2172 2273 Face 4340 3700 3459 2172 Face 4341 409 2173 1952 Face 4342 409 2187 2173 Face 4343 6208 5599 2362 Face 4344 1129 1639 2174 Face 4345 879 2175 940 Face 4346 879 2763 2175 Face 4347 886 2176 887 Face 4348 886 4977 5047 Face 4349 2763 2177 2175 Face 4350 4476 5047 2919 Face 4351 1530 2178 1941 Face 4352 1530 1769 2178 Face 4353 3375 2179 590 Face 4354 3375 3332 2179 Face 4355 3747 2180 2599 Face 4356 1100 648 2797 Face 4357 99 2796 3758 Face 4358 99 2600 2796 Face 4359 6293 5275 6352 Face 4360 6287 5446 6056 Face 4361 583 2183 6447 Face 4362 6181 1632 5422 Face 4363 2893 2184 6155 Face 4364 2893 6115 2184 Face 4365 6173 2185 5518 Face 4366 6149 6162 6092 Face 4367 1637 2186 6167 Face 4368 6112 6423 5789 Face 4369 281 2187 409 Face 4370 281 6119 2187 Face 4371 1050 2188 1046 Face 4372 4167 4265 4166 Face 4373 4264 4265 4167 Face 4374 112 2190 2189 Face 4375 563 2190 733 Face 4376 563 2189 2190 Face 4377 759 2191 1063 Face 4378 759 1857 2191 Face 4379 578 3757 2599 Face 4380 578 1942 3757 Face 4381 125 2193 2579 Face 4382 2578 1678 3294 Face 4383 3807 2194 3670 Face 4384 3807 3821 2194 Face 4385 531 2195 1648 Face 4386 531 2333 2195 Face 4387 3975 2951 2462 Face 4388 3975 3302 2951 Face 4389 2785 2197 2198 Face 4390 2785 2784 2197 Face 4391 3268 2198 3269 Face 4392 3268 2785 2198 Face 4393 3256 2199 2567 Face 4394 3256 2895 2199 Face 4395 947 2200 54 Face 4396 947 1823 2200 Face 4397 865 2201 1044 Face 4398 2462 2952 2461 Face 4399 956 2202 1853 Face 4400 956 2398 2202 Face 4401 1511 2203 1882 Face 4402 1511 2078 2203 Face 4403 291 2204 2442 Face 4404 4030 1719 4031 Face 4405 2824 2205 2779 Face 4406 2824 2208 2205 Face 4407 3890 2206 3891 Face 4408 3890 3474 2206 Face 4409 1017 2207 1848 Face 4410 1017 3890 2207 Face 4411 3892 2208 2824 Face 4412 3892 3891 2208 Face 4413 1016 2209 100 Face 4414 1016 1848 2209 Face 4415 3490 2210 3666 Face 4416 3490 3545 2210 Face 4417 1380 2211 2440 Face 4418 1380 4471 2211 Face 4419 4364 2440 2211 Face 4420 1092 2441 2212 Face 4421 129 2213 295 Face 4422 129 4364 2213 Face 4423 337 2214 160 Face 4424 337 516 2214 Face 4425 160 2215 2698 Face 4426 160 2214 2215 Face 4427 2719 2216 2215 Face 4428 2719 2718 2216 Face 4429 3547 2217 3372 Face 4430 3548 2328 2217 Face 4431 517 2218 2544 Face 4432 517 553 2218 Face 4433 5618 2220 6015 Face 4434 620 40 2219 Face 4435 5328 5620 5618 Face 4436 5915 2416 5330 Face 4437 40 2221 2219 Face 4438 40 2337 2221 Face 4439 6067 5848 5665 Face 4440 100 2209 2222 Face 4441 2421 2223 2420 Face 4442 2421 54 2223 Face 4443 527 2224 1170 Face 4444 527 1568 2224 Face 4445 529 2225 2005 Face 4446 529 4262 2225 Face 4447 317 2226 1756 Face 4448 317 992 2226 Face 4449 326 2227 1171 Face 4450 326 99 2227 Face 4451 1381 2228 4109 Face 4452 1381 2229 2228 Face 4453 743 2229 2006 Face 4454 743 4471 2229 Face 4455 883 2230 2065 Face 4456 2653 2258 2652 Face 4457 1163 2231 266 Face 4458 2257 2652 2258 Face 4459 656 2232 2382 Face 4460 656 2675 2232 Face 4461 1451 2233 2388 Face 4462 1451 2234 2233 Face 4463 427 2234 1451 Face 4464 427 2235 2234 Face 4465 1234 2235 427 Face 4466 1234 2236 2235 Face 4467 1748 2236 1234 Face 4468 1748 2237 2236 Face 4469 966 2237 1748 Face 4470 966 2238 2237 Face 4471 1461 2238 966 Face 4472 1461 2239 2238 Face 4473 137 2239 1461 Face 4474 137 4469 2239 Face 4475 1430 2240 2386 Face 4476 1430 2241 2240 Face 4477 447 2241 1430 Face 4478 447 2242 2241 Face 4479 1728 2242 447 Face 4480 1728 2243 2242 Face 4481 358 2243 1728 Face 4482 358 2244 2243 Face 4483 1766 2244 358 Face 4484 1766 2245 2244 Face 4485 906 2245 1766 Face 4486 906 2246 2245 Face 4487 1661 2246 906 Face 4488 1661 2247 2246 Face 4489 89 2247 1661 Face 4490 89 2248 2247 Face 4491 810 2248 89 Face 4492 810 2249 2248 Face 4493 377 2249 810 Face 4494 377 2250 2249 Face 4495 1753 2250 377 Face 4496 1753 2251 2250 Face 4497 1188 2251 1753 Face 4498 1188 2252 2251 Face 4499 1701 2252 1188 Face 4500 1701 2253 2252 Face 4501 285 2253 1701 Face 4502 285 2258 2253 Face 4503 1202 2254 673 Face 4504 1202 2267 2254 Face 4505 673 2255 1602 Face 4506 673 2254 2255 Face 4507 1602 2256 1163 Face 4508 1602 2255 2256 Face 4509 1163 2257 2231 Face 4510 1163 2256 2257 Face 4511 2231 2258 285 Face 4512 2231 2257 2258 Face 4513 266 2259 1703 Face 4514 266 2231 2259 Face 4515 3152 2260 3151 Face 4516 3152 1683 2260 Face 4517 3151 2261 2915 Face 4518 3151 2260 2261 Face 4519 2891 2262 3784 Face 4520 2891 2728 2262 Face 4521 1199 2263 1371 Face 4522 1199 2829 2263 Face 4523 674 2264 2066 Face 4524 2648 2266 2264 Face 4525 1203 2265 2268 Face 4526 1203 1775 2265 Face 4527 190 2266 1400 Face 4528 190 2264 2266 Face 4529 2129 2267 2268 Face 4530 2129 2266 2267 Face 4531 90 2268 2265 Face 4532 90 2129 2268 Face 4533 3997 4230 3917 Face 4534 3997 3998 4230 Face 4535 3170 2270 2459 Face 4536 3170 3981 2270 Face 4537 1178 2271 3514 Face 4538 1178 3486 3125 Face 4539 1657 2272 2120 Face 4540 3486 2788 2272 Face 4541 3750 2273 2368 Face 4542 3750 3700 2273 Face 4543 3305 2274 3304 Face 4544 3305 1569 2274 Face 4545 2923 2275 2927 Face 4546 2923 2922 2275 Face 4547 2926 2924 3948 Face 4548 2926 2923 2927 Face 4549 4014 3884 2050 Face 4550 1512 3690 2277 Face 4551 2400 2278 2399 Face 4552 2400 2401 2278 Face 4553 707 2279 71 Face 4554 707 2280 2279 Face 4555 202 2280 707 Face 4556 202 80 2280 Face 4557 80 2281 2280 Face 4558 80 215 2281 Face 4559 3048 2282 3049 Face 4560 3048 3047 2282 Face 4561 1377 2283 433 Face 4562 1377 2335 2283 Face 4563 490 2284 2069 Face 4564 2866 979 3138 Face 4565 972 2285 1532 Face 4566 2286 1438 2728 Face 4567 972 2286 2285 Face 4568 972 1029 2286 Face 4569 1563 2287 1561 Face 4570 1563 1802 2287 Face 4571 183 2288 3143 Face 4572 3995 1197 3298 Face 4573 3873 2289 3142 Face 4574 3873 3711 2289 Face 4575 1680 2290 2051 Face 4576 1680 2387 2678 Face 4577 2481 3454 1797 Face 4578 876 3355 3351 Face 4579 559 2292 2876 Face 4580 559 2023 3703 Face 4581 653 2293 514 Face 4582 653 1909 2293 Face 4583 3345 2294 3344 Face 4584 3345 3346 2294 Face 4585 420 2295 1038 Face 4586 3150 2196 3149 Face 4587 979 2296 2690 Face 4588 979 2866 2296 Face 4589 384 2297 1692 Face 4590 384 2336 2297 Face 4591 346 2298 5057 Face 4592 346 3696 2298 Face 4593 127 2980 2496 Face 4594 2557 2938 2299 Face 4595 586 2300 665 Face 4596 3910 1198 3297 Face 4597 1648 2301 531 Face 4598 1648 515 2301 Face 4599 1334 2302 2408 Face 4600 3304 1805 3303 Face 4601 1066 2303 2552 Face 4602 1066 2647 2303 Face 4603 3306 2304 1569 Face 4604 3526 4034 2304 Face 4605 4210 4211 3994 Face 4606 1596 1817 2305 Face 4607 910 2306 1770 Face 4608 910 1613 2306 Face 4609 2795 2307 2793 Face 4610 2795 2601 2307 Face 4611 4037 3674 1531 Face 4612 4037 2845 3674 Face 4613 1624 2309 3961 Face 4614 1624 1621 2309 Face 4615 1524 2310 2519 Face 4616 1524 3944 2310 Face 4617 788 2311 2312 Face 4618 788 2310 2311 Face 4619 1941 2312 2311 Face 4620 1941 2178 2312 Face 4621 877 2313 1932 Face 4622 3293 1953 3292 Face 4623 1167 2314 760 Face 4624 1167 2332 2314 Face 4625 927 2315 288 Face 4626 3148 1993 3147 Face 4627 4582 2316 4581 Face 4628 4582 4919 2316 Face 4629 4825 4919 5031 Face 4630 4825 5045 2317 Face 4631 3100 4993 4527 Face 4632 3229 981 2318 Face 4633 4021 2319 3498 Face 4634 4021 1772 2319 Face 4635 528 2320 372 Face 4636 3160 2319 3159 Face 4637 1345 2321 3438 Face 4638 1345 1990 2321 Face 4639 1386 3438 2321 Face 4640 1386 3439 3438 Face 4641 845 3439 1386 Face 4642 845 3440 3439 Face 4643 629 3440 845 Face 4644 629 1026 3440 Face 4645 28 2325 1932 Face 4646 2684 2589 4751 Face 4647 78 2326 1243 Face 4648 3146 2274 3145 Face 4649 894 2327 146 Face 4650 3526 2304 3306 Face 4651 3826 2988 2987 Face 4652 3826 2384 2988 Face 4653 1038 2329 2684 Face 4654 1038 2295 2329 Face 4655 226 2330 22 Face 4656 2460 2955 2330 Face 4657 3453 2331 2687 Face 4658 3453 2263 2331 Face 4659 1812 2332 2440 Face 4660 1812 2314 2332 Face 4661 2412 2333 531 Face 4662 2412 2411 2333 Face 4663 531 2334 2412 Face 4664 531 2301 2334 Face 4665 1689 2335 1377 Face 4666 1689 3176 2335 Face 4667 728 2336 4309 Face 4668 728 2297 2336 Face 4669 3152 4094 1683 Face 4670 1435 2221 2337 Face 4671 3154 2338 4094 Face 4672 3154 1721 2338 Face 4673 732 2339 1259 Face 4674 4027 2338 3504 Face 4675 3371 2340 2644 Face 4676 3371 2721 2340 Face 4677 22 2341 2597 Face 4678 22 2330 2341 Face 4679 1516 2342 200 Face 4680 3702 4029 4028 Face 4681 493 2343 3368 Face 4682 493 2122 2343 Face 4683 1020 2344 2349 Face 4684 4917 4915 4916 Face 4685 2122 2345 2343 Face 4686 2944 2348 3535 Face 4687 5070 4918 2817 Face 4688 3683 2347 5071 Face 4689 5066 4916 4619 Face 4690 5066 4991 4916 Face 4691 4990 4992 4790 Face 4692 5154 3535 4791 Face 4693 2027 2349 1615 Face 4694 2027 1020 2349 Face 4695 1615 2350 2027 Face 4696 1615 1573 2350 Face 4697 1573 2351 2350 Face 4698 1573 3301 2351 Face 4699 952 2352 2353 Face 4700 952 3443 2352 Face 4701 1528 2353 2352 Face 4702 1528 2354 2353 Face 4703 1307 2354 3483 Face 4704 1307 2353 2354 Face 4705 602 2355 1796 Face 4706 602 2388 2355 Face 4707 2060 4103 4104 Face 4708 2060 2765 4103 Face 4709 4310 2357 2356 Face 4710 4310 2358 2357 Face 4711 4105 2358 4106 Face 4712 4105 2357 2358 Face 4713 2063 2359 3181 Face 4714 2063 1580 2359 Face 4715 3181 2360 2917 Face 4716 3181 2359 2360 Face 4717 85 2361 5585 Face 4718 85 506 2361 Face 4719 5153 2362 2363 Face 4720 5153 6206 2362 Face 4721 107 2363 228 Face 4722 107 5153 2363 Face 4723 2942 2364 2982 Face 4724 228 2363 2364 Face 4725 333 2365 1222 Face 4726 333 228 2365 Face 4727 887 2366 335 Face 4728 887 2176 2366 Face 4729 3736 3814 1826 Face 4730 335 2366 2367 Face 4731 3763 2368 2545 Face 4732 3763 3750 2368 Face 4733 168 2369 538 Face 4734 168 3659 2369 Face 4735 359 2370 647 Face 4736 359 2386 2370 Face 4737 5365 2371 462 Face 4738 5365 5540 2371 Face 4739 683 2372 5777 Face 4740 683 1437 2372 Face 4741 3503 2373 4024 Face 4742 3503 1721 2373 Face 4743 171 2374 705 Face 4744 3156 2373 4096 Face 4745 1128 2375 1080 Face 4746 1128 2472 5621 Face 4747 1080 2376 1128 Face 4748 1080 2377 2376 Face 4749 3156 3157 1788 Face 4750 171 2376 2377 Face 4751 3158 2378 3157 Face 4752 3158 1772 2378 Face 4753 4813 2379 2820 Face 4754 745 1259 2379 Face 4755 1044 2380 1296 Face 4756 1044 2201 2380 Face 4757 3282 5032 4918 Face 4758 3283 1183 2381 Face 4759 170 2382 2679 Face 4760 170 360 2382 Face 4761 2771 3893 2360 Face 4762 2771 2989 3808 Face 4763 3553 2384 2772 Face 4764 3553 2988 2384 Face 4765 3826 4000 2384 Face 4766 1681 2592 2385 Face 4767 137 2386 4469 Face 4768 137 2370 2386 Face 4769 14 2387 1680 Face 4770 14 2755 2387 Face 4771 656 2388 2675 Face 4772 656 2355 2388 Face 4773 6095 5256 6108 Face 4774 525 2040 2389 Face 4775 65 3715 6209 Face 4776 65 1900 3715 Face 4777 959 2391 746 Face 4778 4023 2378 4022 Face 4779 2813 2392 2731 Face 4780 2813 2730 2392 Face 4781 1030 2393 1155 Face 4782 1030 1356 2393 Face 4783 3784 2394 2308 Face 4784 3784 2262 2394 Face 4785 1228 2395 3709 Face 4786 1228 1229 2395 Face 4787 1229 2396 2395 Face 4788 1229 1878 2396 Face 4789 119 2397 2776 Face 4790 119 1935 2397 Face 4791 1174 2398 5349 Face 4792 1174 2202 2398 Face 4793 556 2399 173 Face 4794 556 2400 2399 Face 4795 71 2400 556 Face 4796 71 2279 2400 Face 4797 2279 2401 2400 Face 4798 2279 2402 2401 Face 4799 1403 2402 1352 Face 4800 1403 2401 2402 Face 4801 1352 3350 1403 Face 4802 1352 2636 3350 Face 4803 1171 2404 1998 Face 4804 1171 2227 2404 Face 4805 2596 5718 179 Face 4806 5434 2406 5724 Face 4807 5382 2406 5722 Face 4808 6152 2893 6155 Face 4809 1117 2407 837 Face 4810 5963 5298 2407 Face 4811 837 2408 2302 Face 4812 837 2407 2408 Face 4813 2739 2409 604 Face 4814 2739 2738 2409 Face 4815 1184 2410 1183 Face 4816 1184 1724 2410 Face 4817 2121 2411 2412 Face 4818 2121 290 2411 Face 4819 1339 2412 2334 Face 4820 1339 2121 2412 Face 4821 1340 2413 1339 Face 4822 1340 3168 2413 Face 4823 54 6269 6273 Face 4824 54 2200 2414 Face 4825 255 2415 76 Face 4826 255 138 2415 Face 4827 5917 2416 5915 Face 4828 5709 5716 2416 Face 4829 179 2417 572 Face 4830 5442 5709 2417 Face 4831 3264 3561 2692 Face 4832 3264 3263 3561 Face 4833 1611 2419 2596 Face 4834 1611 1992 2419 Face 4835 2222 2420 6061 Face 4836 2222 1170 2420 Face 4837 1170 2421 2420 Face 4838 1170 2224 2421 Face 4839 1927 2422 1292 Face 4840 1927 1929 2422 Face 4841 396 2423 90 Face 4842 396 2542 2423 Face 4843 4019 2424 3286 Face 4844 4019 1936 2424 Face 4845 1221 2425 2466 Face 4846 3476 2424 4131 Face 4847 200 2426 2427 Face 4848 200 2342 2426 Face 4849 745 2427 2426 Face 4850 5103 5132 4814 Face 4851 5132 5048 5100 Face 4852 600 56 2428 Face 4853 56 2429 835 Face 4854 56 2905 2429 Face 4855 835 2430 2431 Face 4856 835 2429 2430 Face 4857 318 2431 2430 Face 4858 318 2582 2431 Face 4859 834 2432 318 Face 4860 834 939 2432 Face 4861 705 2433 2618 Face 4862 705 2374 2433 Face 4863 1051 2434 4417 Face 4864 1051 315 2434 Face 4865 2925 2435 3999 Face 4866 2925 2924 2435 Face 4867 3881 2436 4035 Face 4868 3881 4032 2436 Face 4869 10 4899 1011 Face 4870 10 235 2437 Face 4871 4047 3791 3656 Face 4872 4047 3926 3791 Face 4873 3333 3193 2056 Face 4874 132 174 2439 Face 4875 4435 2440 4364 Face 4876 4435 1812 2440 Face 4877 2113 2441 3949 Face 4878 2113 2212 2441 Face 4879 1082 2442 2417 Face 4880 1082 291 2442 Face 4881 4170 4477 4263 Face 4882 242 700 2443 Face 4883 3051 2444 3052 Face 4884 3051 3050 2444 Face 4885 1139 2445 785 Face 4886 1139 604 2445 Face 4887 3053 2446 3054 Face 4888 3053 3052 2446 Face 4889 839 2447 786 Face 4890 839 785 2447 Face 4891 786 2448 2449 Face 4892 786 2447 2448 Face 4893 989 2449 2448 Face 4894 989 1830 2449 Face 4895 1830 2450 2449 Face 4896 3410 3397 3409 Face 4897 1835 2451 1834 Face 4898 3396 3409 3397 Face 4899 1834 2452 2453 Face 4900 1834 2451 2452 Face 4901 477 2453 2452 Face 4902 477 2454 2453 Face 4903 1257 2454 477 Face 4904 1257 3062 2454 Face 4905 1588 2455 536 Face 4906 1588 3061 2455 Face 4907 536 2456 2457 Face 4908 536 2455 2456 Face 4909 754 2457 2456 Face 4910 754 3582 2457 Face 4911 1104 2458 2080 Face 4912 1104 3186 2458 Face 4913 3754 2459 3711 Face 4914 3754 2779 2459 Face 4915 226 2460 2330 Face 4916 226 2461 2460 Face 4917 2201 2461 226 Face 4918 2201 2462 2461 Face 4919 865 2462 2201 Face 4920 865 3975 2462 Face 4921 409 2463 281 Face 4922 409 865 2463 Face 4923 1826 2464 2865 Face 4924 1826 3814 2464 Face 4925 2059 2465 2864 Face 4926 2059 2063 2465 Face 4927 1220 2466 2556 Face 4928 1220 1221 2466 Face 4929 312 2467 3183 Face 4930 312 455 2467 Face 4931 3611 3614 2469 Face 4932 681 2547 2468 Face 4933 1280 2469 3614 Face 4934 1280 2801 2469 Face 4935 866 2470 3887 Face 4936 866 500 2470 Face 4937 5082 4870 4648 Face 4938 258 4894 4760 Face 4939 2618 2472 1128 Face 4940 620 5328 5628 Face 4941 5613 5332 6024 Face 4942 5630 2472 5625 Face 4943 6374 2474 6383 Face 4944 6374 5632 2474 Face 4945 372 2475 2621 Face 4946 372 2320 2475 Face 4947 1548 2476 1547 Face 4948 3650 3651 6407 Face 4949 3041 2477 1343 Face 4950 3041 1545 2477 Face 4951 1535 2478 1860 Face 4952 1535 3972 3950 Face 4953 1824 2479 3738 Face 4954 1824 2031 2479 Face 4955 1175 2480 1605 Face 4956 1175 789 2480 Face 4957 876 3540 3299 Face 4958 876 3351 2481 Face 4959 68 2482 298 Face 4960 68 2603 2482 Face 4961 1770 2483 1333 Face 4962 1770 2306 2483 Face 4963 940 2484 879 Face 4964 2540 1719 3894 Face 4965 501 2485 2486 Face 4966 501 2107 2485 Face 4967 1075 2486 3273 Face 4968 1075 501 2486 Face 4969 615 2487 3272 Face 4970 615 2488 2487 Face 4971 1148 2488 836 Face 4972 1148 2487 2488 Face 4973 836 2489 2490 Face 4974 836 2488 2489 Face 4975 1318 2490 2489 Face 4976 1318 720 2490 Face 4977 720 2491 2492 Face 4978 720 1318 2491 Face 4979 4066 4133 4369 Face 4980 1320 720 2492 Face 4981 4369 4337 4066 Face 4982 453 3471 3517 Face 4983 1013 2494 953 Face 4984 1013 1574 2494 Face 4985 1365 2495 1617 Face 4986 1365 135 2495 Face 4987 2809 2496 2811 Face 4988 977 127 2496 Face 4989 3508 2497 1815 Face 4990 1362 2496 3744 Face 4991 5230 2498 5265 Face 4992 5965 1445 5875 Face 4993 309 2499 5201 Face 4994 309 862 2499 Face 4995 862 2500 2499 Face 4996 5260 5262 5208 Face 4997 584 2501 1638 Face 4998 584 2130 2501 Face 4999 1206 2502 2534 Face 5000 1206 1207 2502 Face 5001 4194 4946 4626 Face 5002 4194 2830 4946 Face 5003 4061 2504 4486 Face 5004 4061 2854 2504 Face 5005 4640 4541 4328 Face 5006 4640 4948 4541 Face 5007 3174 4237 4238 Face 5008 3174 1675 4237 Face 5009 1627 2507 3782 Face 5010 1627 4239 2507 Face 5011 1626 2508 1793 Face 5012 1626 4238 2508 Face 5013 4240 4688 4519 Face 5014 4240 4239 4688 Face 5015 2885 4519 2884 Face 5016 2885 4240 4519 Face 5017 4011 3205 3120 Face 5018 4011 4010 3205 Face 5019 1794 2512 2513 Face 5020 1794 3960 2512 Face 5021 2521 4221 2514 Face 5022 2521 4220 4221 Face 5023 4277 2514 2523 Face 5024 4277 2521 2514 Face 5025 2836 4223 4159 Face 5026 2836 3965 4223 Face 5027 4224 2524 2523 Face 5028 4224 4225 2524 Face 5029 4280 2517 4279 Face 5030 4280 4168 2517 Face 5031 4013 2853 4484 Face 5032 4013 3207 2853 Face 5033 3960 2519 2310 Face 5034 3960 1794 2519 Face 5035 4220 2847 4219 Face 5036 4220 2521 2847 Face 5037 2509 2521 4277 Face 5038 2509 2847 2521 Face 5039 2510 2522 2515 Face 5040 2510 4276 2522 Face 5041 4278 2523 2524 Face 5042 4278 4277 2523 Face 5043 2516 4279 2517 Face 5044 2516 2515 4279 Face 5045 4381 4090 4380 Face 5046 4381 4473 4090 Face 5047 4012 3120 3207 Face 5048 4012 4011 3120 Face 5049 4169 4626 4091 Face 5050 4169 4194 4626 Face 5051 4148 4487 4664 Face 5052 4148 4424 4487 Face 5053 4366 2881 2880 Face 5054 4366 2882 2881 Face 5055 4365 4421 2532 Face 5056 4365 4397 4421 Face 5057 4401 4128 4355 Face 5058 4401 2851 4128 Face 5059 3107 4203 4147 Face 5060 3107 4202 4203 Face 5061 4484 2854 4061 Face 5062 4484 2853 2854 Face 5063 1095 2534 2502 Face 5064 6393 5268 5663 Face 5065 2538 2535 2536 Face 5066 5656 5663 2535 Face 5067 5184 2536 2967 Face 5068 5184 2538 2536 Face 5069 2534 2537 5656 Face 5070 2534 1095 2537 Face 5071 3800 2538 5184 Face 5072 1205 2534 5656 Face 5073 1094 2539 962 Face 5074 1094 3800 2539 Face 5075 3895 2540 3894 Face 5076 3895 2906 2540 Face 5077 4078 5214 5594 Face 5078 311 4079 2541 Face 5079 347 2542 396 Face 5080 2781 5648 5650 Face 5081 11 2543 2781 Face 5082 11 3969 2543 Face 5083 2920 4646 4977 Face 5084 2920 517 2544 Face 5085 3764 2545 2721 Face 5086 3764 3763 2545 Face 5087 1878 2546 1901 Face 5088 1878 1229 2546 Face 5089 562 2547 681 Face 5090 562 1642 2547 Face 5091 1642 2548 2547 Face 5092 1642 2549 2548 Face 5093 882 2549 2550 Face 5094 882 2548 2549 Face 5095 1270 2550 2551 Face 5096 1270 882 2550 Face 5097 3250 2551 3249 Face 5098 3250 1270 2551 Face 5099 1065 2552 734 Face 5100 1065 3748 2552 Face 5101 975 3697 3374 Face 5102 975 3367 2553 Face 5103 1373 2554 4454 Face 5104 5307 1244 5308 Face 5105 2960 2950 3278 Face 5106 178 2958 2959 Face 5107 1129 2556 2466 Face 5108 6208 2362 6206 Face 5109 127 2557 2980 Face 5110 127 2994 2557 Face 5111 3419 3633 3417 Face 5112 914 2561 3566 Face 5113 5001 4674 2560 Face 5114 4552 4676 5054 Face 5115 5000 4673 2751 Face 5116 5000 5001 4673 Face 5117 1423 2561 2752 Face 5118 1423 3566 2561 Face 5119 1819 2562 1625 Face 5120 1819 1562 2562 Face 5121 1062 2563 3175 Face 5122 1062 2641 2563 Face 5123 4900 5014 5107 Face 5124 4868 4751 4901 Face 5125 825 2565 5053 Face 5126 825 2907 2565 Face 5127 665 2566 825 Face 5128 665 2300 2566 Face 5129 3257 2567 2568 Face 5130 3257 3256 2567 Face 5131 3258 2568 2569 Face 5132 3258 3257 2568 Face 5133 334 3259 3128 Face 5134 334 1076 3259 Face 5135 1183 2570 2381 Face 5136 1183 2410 2570 Face 5137 1441 2571 3531 Face 5138 1441 2572 2571 Face 5139 3322 2572 1441 Face 5140 3322 2624 2572 Face 5141 20 2573 2635 Face 5142 20 2284 2573 Face 5143 1932 2574 28 Face 5144 1932 2313 2574 Face 5145 1198 2575 1939 Face 5146 1198 2555 2575 Face 5147 1939 2576 1677 Face 5148 1939 2575 2576 Face 5149 1677 2577 2578 Face 5150 1677 2576 2577 Face 5151 3295 2578 3294 Face 5152 3295 1677 2578 Face 5153 1195 2579 881 Face 5154 1195 125 2579 Face 5155 2583 2580 2582 Face 5156 2583 2581 2580 Face 5157 1085 4059 3712 Face 5158 1085 3759 4059 Face 5159 2064 2582 318 Face 5160 2064 3251 2582 Face 5161 603 3251 2064 Face 5162 603 1085 3712 Face 5163 1860 2584 3164 Face 5164 1860 2478 2584 Face 5165 746 2585 141 Face 5166 746 2391 2585 Face 5167 39 2586 2047 Face 5168 39 2039 2586 Face 5169 4822 2587 5125 Face 5170 4822 5128 4818 Face 5171 5131 5169 2590 Face 5172 5131 4984 5169 Face 5173 1342 2589 2684 Face 5174 1342 5129 2589 Face 5175 2773 5129 1342 Face 5176 601 5131 2590 Face 5177 288 2591 2773 Face 5178 288 2315 2591 Face 5179 887 2592 886 Face 5180 887 2385 2592 Face 5181 879 2593 289 Face 5182 879 2484 2593 Face 5183 1924 4016 2810 Face 5184 3734 1178 3514 Face 5185 1213 2595 3539 Face 5186 1213 3477 2595 Face 5187 1349 2596 2419 Face 5188 1349 5382 5722 Face 5189 408 2597 2341 Face 5190 5502 5602 5364 Face 5191 2002 2598 2026 Face 5192 2002 2482 2598 Face 5193 1853 2599 2600 Face 5194 1853 578 2599 Face 5195 2180 2600 2599 Face 5196 2180 2796 2600 Face 5197 2181 3686 2795 Face 5198 2181 3765 3686 Face 5199 1243 2602 1686 Face 5200 1243 2326 2602 Face 5201 2476 2603 68 Face 5202 2476 3650 2603 Face 5203 1879 3177 3178 Face 5204 3955 6407 3954 Face 5205 744 3640 3252 Face 5206 744 2604 3640 Face 5207 801 2606 1068 Face 5208 801 406 2606 Face 5209 1068 2607 801 Face 5210 1068 2608 2607 Face 5211 3862 3680 2115 Face 5212 951 2607 2608 Face 5213 507 2609 238 Face 5214 507 2934 2609 Face 5215 1635 3335 1104 Face 5216 1635 2369 2610 Face 5217 3676 2611 3511 Face 5218 3676 3710 2611 Face 5219 553 2612 2613 Face 5220 553 2986 2612 Face 5221 888 2613 2612 Face 5222 888 2711 2613 Face 5223 3465 2614 3464 Face 5224 3465 2615 2614 Face 5225 3466 2615 3465 Face 5226 3466 2644 2615 Face 5227 2050 3927 4014 Face 5228 2050 693 3927 Face 5229 1259 2617 2379 Face 5230 1259 2339 2617 Face 5231 620 2618 2433 Face 5232 620 5628 2618 Face 5233 212 2619 3161 Face 5234 212 267 2619 Face 5235 2174 6253 6203 Face 5236 2174 2621 6253 Face 5237 407 2621 2475 Face 5238 5624 6253 2621 Face 5239 1255 2622 1256 Face 5240 1255 3370 2622 Face 5241 1586 2623 3570 Face 5242 1586 3511 2623 Face 5243 710 3321 234 Face 5244 710 2625 3321 Face 5245 84 2625 710 Face 5246 84 2626 2625 Face 5247 456 2626 84 Face 5248 456 2627 2626 Face 5249 150 2627 456 Face 5250 150 2628 2627 Face 5251 570 2628 150 Face 5252 570 2629 2628 Face 5253 92 2629 570 Face 5254 92 2631 2629 Face 5255 755 2630 2639 Face 5256 755 3370 2630 Face 5257 714 2631 92 Face 5258 2901 2902 3571 Face 5259 1241 6195 5535 Face 5260 6192 5544 6187 Face 5261 5363 5814 6363 Face 5262 3698 6192 5814 Face 5263 463 2634 2901 Face 5264 463 499 2634 Face 5265 1657 3486 2272 Face 5266 1657 20 2635 Face 5267 653 2636 1909 Face 5268 653 3350 2636 Face 5269 1909 2637 1479 Face 5270 1909 2636 2637 Face 5271 1510 5366 6274 Face 5272 2640 6367 5366 Face 5273 1149 2639 1510 Face 5274 1149 755 2639 Face 5275 1510 2640 5366 Face 5276 1510 2639 2640 Face 5277 2335 2641 2283 Face 5278 2335 2563 2641 Face 5279 4457 4526 2643 Face 5280 4457 4456 4526 Face 5281 4297 2643 3984 Face 5282 4297 4457 2643 Face 5283 3681 2644 3466 Face 5284 3681 3371 2644 Face 5285 1389 3752 2962 Face 5286 5190 5537 5495 Face 5287 3861 2646 5190 Face 5288 1022 5193 2646 Face 5289 1042 2647 1066 Face 5290 1042 3861 2647 Face 5291 674 2648 2264 Face 5292 674 2649 2648 Face 5293 1601 2649 674 Face 5294 1601 2650 2649 Face 5295 1201 2650 1601 Face 5296 1201 2651 2650 Face 5297 475 2651 1201 Face 5298 475 2652 2651 Face 5299 2230 2652 475 Face 5300 2230 2653 2652 Face 5301 883 2653 2230 Face 5302 883 2654 2653 Face 5303 1426 2654 883 Face 5304 1426 2655 2654 Face 5305 1752 2655 1426 Face 5306 1752 2656 2655 Face 5307 191 2656 1752 Face 5308 191 2657 2656 Face 5309 1700 2657 191 Face 5310 1700 2658 2657 Face 5311 376 2658 1700 Face 5312 376 2659 2658 Face 5313 1660 2659 376 Face 5314 1660 2660 2659 Face 5315 809 2660 1660 Face 5316 809 2661 2660 Face 5317 1765 2661 809 Face 5318 1765 2662 2661 Face 5319 448 2662 1765 Face 5320 448 2663 2662 Face 5321 1727 2663 448 Face 5322 1727 2664 2663 Face 5323 115 2664 1727 Face 5324 115 2665 2664 Face 5325 1431 2665 115 Face 5326 1431 2666 2665 Face 5327 907 2666 1431 Face 5328 907 4470 2666 Face 5329 1462 2667 907 Face 5330 1462 2668 2667 Face 5331 357 2668 1462 Face 5332 357 2669 2668 Face 5333 967 2669 357 Face 5334 967 2670 2669 Face 5335 1747 2670 967 Face 5336 1747 2671 2670 Face 5337 249 2671 1747 Face 5338 249 2672 2671 Face 5339 1235 2672 249 Face 5340 1235 2673 2672 Face 5341 657 2673 1235 Face 5342 657 2676 2673 Face 5343 1452 2676 657 Face 5344 1452 426 2674 Face 5345 2233 2675 2388 Face 5346 2233 2676 2675 Face 5347 2674 2676 1452 Face 5348 2674 2675 2676 Face 5349 426 2677 2674 Face 5350 426 2290 2677 Face 5351 2290 2678 2677 Face 5352 2290 1680 2678 Face 5353 1679 2679 2678 Face 5354 1679 170 2679 Face 5355 257 2680 3189 Face 5356 257 1679 2680 Face 5357 1213 2681 2941 Face 5358 3751 2690 2681 Face 5359 3469 2941 2681 Face 5360 926 3510 2682 Face 5361 3530 2683 3663 Face 5362 3478 2682 3510 Face 5363 28 2684 4751 Face 5364 28 1038 2684 Face 5365 725 2685 3043 Face 5366 725 1913 2685 Face 5367 2896 6295 5459 Face 5368 5346 5327 6392 Face 5369 857 3741 6201 Face 5370 857 1371 3741 Face 5371 3947 3999 4368 Face 5372 3947 2925 3999 Face 5373 1724 2689 2410 Face 5374 3039 3864 3669 Face 5375 2023 3538 3703 Face 5376 2023 3140 3538 Face 5377 1741 2691 2271 Face 5378 1741 2023 2691 Face 5379 3265 2692 2784 Face 5380 3265 3264 2692 Face 5381 5571 5577 5574 Face 5382 5571 1656 5577 Face 5383 227 2694 161 Face 5384 2762 6403 2694 Face 5385 945 2695 5550 Face 5386 945 2761 2695 Face 5387 1881 2696 261 Face 5388 1881 945 5550 Face 5389 5806 2697 2696 Face 5390 1882 2203 2697 Face 5391 2911 3291 2269 Face 5392 1565 160 2698 Face 5393 3372 2699 3291 Face 5394 3372 2217 2699 Face 5395 2217 3673 2699 Face 5396 2217 2328 3673 Face 5397 631 2701 1743 Face 5398 4388 4080 4348 Face 5399 1518 2702 3094 Face 5400 1518 1963 2702 Face 5401 781 3914 3474 Face 5402 781 2780 3914 Face 5403 1208 2704 1863 Face 5404 1208 4227 2857 Face 5405 598 2705 3178 Face 5406 4243 3253 3767 Face 5407 1395 2706 2775 Face 5408 4242 3769 4143 Face 5409 627 2707 1101 Face 5410 627 4390 2707 Face 5411 460 2817 2818 Face 5412 460 1012 2708 Face 5413 1546 2709 3015 Face 5414 1546 1923 2709 Face 5415 1512 2710 2048 Face 5416 1512 2277 2710 Face 5417 2218 2711 240 Face 5418 2218 2613 2711 Face 5419 1026 2712 2826 Face 5420 1026 629 2712 Face 5421 3338 5104 4864 Face 5422 3338 4867 2713 Face 5423 5113 4866 5079 Face 5424 1877 2717 5076 Face 5425 1875 2715 3339 Face 5426 1875 1877 2715 Face 5427 1010 4929 4930 Face 5428 1010 543 4929 Face 5429 782 2717 1875 Face 5430 782 1010 4930 Face 5431 2612 2718 888 Face 5432 3548 2217 3547 Face 5433 888 2719 599 Face 5434 888 2718 2719 Face 5435 599 2720 1019 Face 5436 599 2719 2720 Face 5437 3877 2721 3371 Face 5438 3877 3764 2721 Face 5439 1063 2722 3819 Face 5440 1063 2191 2722 Face 5441 3113 2856 1495 Face 5442 613 2704 3211 Face 5443 693 2724 3927 Face 5444 693 2725 2724 Face 5445 1612 2725 2726 Face 5446 1612 2724 2725 Face 5447 957 2726 2725 Face 5448 957 1905 2726 Face 5449 1905 2727 2726 Face 5450 1905 2946 2727 Face 5451 2285 2728 2891 Face 5452 2285 2286 2728 Face 5453 4900 5043 5014 Face 5454 881 2579 2729 Face 5455 3945 2730 2813 Face 5456 3945 2438 2730 Face 5457 3496 2731 2985 Face 5458 3496 3745 2731 Face 5459 5079 5143 5113 Face 5460 1262 3340 2732 Face 5461 3886 2733 2844 Face 5462 3886 1926 2733 Face 5463 151 2734 3454 Face 5464 151 64 2734 Face 5465 1617 3014 3290 Face 5466 1617 2825 3014 Face 5467 1190 2736 2815 Face 5468 1190 2737 2736 Face 5469 1616 2737 2735 Face 5470 1616 2736 2737 Face 5471 928 2738 2739 Face 5472 928 590 2738 Face 5473 1138 2739 2740 Face 5474 1138 928 2739 Face 5475 1578 2740 2741 Face 5476 1578 1138 2740 Face 5477 1789 2741 1630 Face 5478 1789 1578 2741 Face 5479 1630 2742 2743 Face 5480 1630 2741 2742 Face 5481 1938 2743 1937 Face 5482 1938 1630 2743 Face 5483 1937 2744 1831 Face 5484 1937 2743 2744 Face 5485 1831 2745 2746 Face 5486 1831 2744 2745 Face 5487 3407 3408 3395 Face 5488 1836 1831 2746 Face 5489 987 2747 1838 Face 5490 3846 3847 3848 Face 5491 1838 3850 2470 Face 5492 1838 2747 3850 Face 5493 2384 2749 2383 Face 5494 2384 4000 2749 Face 5495 4805 4932 4973 Face 5496 4805 4999 4972 Face 5497 1406 4999 4805 Face 5498 1406 2752 4999 Face 5499 391 2752 2561 Face 5500 4834 4999 2752 Face 5501 2410 2753 2570 Face 5502 2410 2689 2753 Face 5503 3940 2754 2755 Face 5504 3940 4871 2754 Face 5505 429 2755 14 Face 5506 429 3940 2755 Face 5507 160 2756 337 Face 5508 160 1565 2756 Face 5509 337 2757 1272 Face 5510 337 2756 2757 Face 5511 3481 2758 3480 Face 5512 3481 3979 2758 Face 5513 3039 3480 2758 Face 5514 1724 1184 2759 Face 5515 1547 2760 1548 Face 5516 1547 2761 2760 Face 5517 2694 2761 1547 Face 5518 2694 6403 2761 Face 5519 227 2762 2694 Face 5520 227 843 2762 Face 5521 289 2763 879 Face 5522 289 4811 5034 Face 5523 916 2764 3336 Face 5524 916 2892 2764 Face 5525 2133 2765 2060 Face 5526 2133 2134 2765 Face 5527 2060 2766 2133 Face 5528 2060 2767 2766 Face 5529 1288 2767 1580 Face 5530 1288 2766 2767 Face 5531 1580 2768 2359 Face 5532 1580 2767 2768 Face 5533 2359 2769 2360 Face 5534 2359 2768 2769 Face 5535 2360 2770 2771 Face 5536 2360 2769 2770 Face 5537 1283 2771 2770 Face 5538 1283 1825 2771 Face 5539 2383 2772 2384 Face 5540 3893 2771 3808 Face 5541 601 2773 2591 Face 5542 601 2590 2773 Face 5543 2046 2774 2109 Face 5544 2046 3522 2774 Face 5545 421 2775 2706 Face 5546 421 3231 2775 Face 5547 185 2776 2777 Face 5548 185 119 2776 Face 5549 1102 2777 2776 Face 5550 1102 3648 2777 Face 5551 1103 2778 3550 Face 5552 1103 2777 5271 Face 5553 3755 2779 3754 Face 5554 3755 2824 2779 Face 5555 3934 3933 3912 Face 5556 3913 3914 2780 Face 5557 347 2781 5650 Face 5558 347 11 2781 Face 5559 1266 5500 6125 Face 5560 6316 2686 2782 Face 5561 3742 2783 2044 Face 5562 3742 5639 2783 Face 5563 3266 2784 2785 Face 5564 3266 3265 2784 Face 5565 3267 2785 3268 Face 5566 3267 3266 2785 Face 5567 792 2786 2787 Face 5568 792 230 3705 Face 5569 1009 2787 2786 Face 5570 1009 2972 2787 Face 5571 1178 2788 3486 Face 5572 1178 3734 2788 Face 5573 1169 2789 2889 Face 5574 1169 2992 2789 Face 5575 1292 3492 1927 Face 5576 1292 1290 3492 Face 5577 1059 2791 1379 Face 5578 1059 5004 2791 Face 5579 1499 2792 2793 Face 5580 1499 3513 2792 Face 5581 1852 2793 2792 Face 5582 1852 2795 2793 Face 5583 1343 2794 1903 Face 5584 1343 2477 2794 Face 5585 1543 2795 1852 Face 5586 1543 2181 2795 Face 5587 2181 2796 2180 Face 5588 2181 1543 2796 Face 5589 2180 3765 2181 Face 5590 2180 2798 3765 Face 5591 1100 2798 1343 Face 5592 1100 2797 2798 Face 5593 525 5728 779 Face 5594 525 5589 5728 Face 5595 779 2800 2014 Face 5596 5757 5728 5729 Face 5597 1279 2801 1280 Face 5598 1279 2802 2801 Face 5599 1091 2802 2803 Face 5600 1091 2801 2802 Face 5601 1090 2803 2804 Face 5602 1090 1091 2803 Face 5603 1089 2804 2805 Face 5604 1089 1090 2804 Face 5605 1248 2805 2806 Face 5606 1248 1089 2805 Face 5607 1247 2806 2807 Face 5608 1247 1248 2806 Face 5609 624 2807 203 Face 5610 624 1247 2807 Face 5611 203 2808 2809 Face 5612 203 2807 2808 Face 5613 977 2809 2808 Face 5614 977 2496 2809 Face 5615 3541 3512 351 Face 5616 1645 2809 2810 Face 5617 1924 2811 1362 Face 5618 1924 2810 2811 Face 5619 3180 2812 3868 Face 5620 3180 2059 2812 Face 5621 4346 3745 3496 Face 5622 4346 4345 3745 Face 5623 1638 2814 1633 Face 5624 1638 3805 6284 Face 5625 1191 2815 4008 Face 5626 1191 3685 2815 Face 5627 4788 5070 2817 Face 5628 4459 1191 4008 Face 5629 2708 2817 460 Face 5630 2708 4788 2817 Face 5631 5032 2818 2817 Face 5632 2381 2570 2818 Face 5633 2570 2819 2818 Face 5634 2570 2753 2819 Face 5635 833 2820 939 Face 5636 833 2905 5101 Face 5637 2379 2821 2820 Face 5638 2379 2617 2821 Face 5639 3704 3477 2941 Face 5640 238 2609 2822 Face 5641 1271 2823 2700 Face 5642 1271 1742 2823 Face 5643 3889 2824 3755 Face 5644 3889 3892 2824 Face 5645 2495 2825 1617 Face 5646 2495 2018 2825 Face 5647 4139 4140 3774 Face 5648 1394 1026 2826 Face 5649 3772 3774 4140 Face 5650 1392 3509 2827 Face 5651 978 2828 2594 Face 5652 978 3922 2828 Face 5653 2073 2829 539 Face 5654 2073 1035 2829 Face 5655 3721 4296 4295 Face 5656 3721 3720 4296 Face 5657 3722 4295 2832 Face 5658 3722 3721 4295 Face 5659 3723 2832 2833 Face 5660 3723 3722 2832 Face 5661 3724 2833 2834 Face 5662 3724 3723 2833 Face 5663 3725 2834 2835 Face 5664 3725 3724 2834 Face 5665 3726 2835 3964 Face 5666 3726 3725 2835 Face 5667 3727 3964 3963 Face 5668 3727 3726 3964 Face 5669 3728 3963 3962 Face 5670 3728 3727 3963 Face 5671 3729 3962 2839 Face 5672 3729 3728 3962 Face 5673 3730 2839 2840 Face 5674 3730 3729 2839 Face 5675 3731 2840 3732 Face 5676 3731 3730 2840 Face 5677 666 2841 1622 Face 5678 666 52 2841 Face 5679 1622 2842 2110 Face 5680 1622 3732 2842 Face 5681 1742 3280 2823 Face 5682 1742 2984 3280 Face 5683 3980 2844 2733 Face 5684 3980 4273 2844 Face 5685 4273 4038 2844 Face 5686 4273 2846 4038 Face 5687 4274 2846 4273 Face 5688 4274 4275 2846 Face 5689 4040 4275 4276 Face 5690 4040 2846 4275 Face 5691 4276 2848 4040 Face 5692 4276 2510 2848 Face 5693 4378 4188 4377 Face 5694 4378 4189 4188 Face 5695 4385 4126 4127 Face 5696 4385 4125 4126 Face 5697 4396 2851 4401 Face 5698 4396 4395 2851 Face 5699 4318 3119 2526 Face 5700 4318 3222 3119 Face 5701 3118 3208 2852 Face 5702 3118 2533 3208 Face 5703 2533 3209 3208 Face 5704 2533 3116 3209 Face 5705 3210 3116 2723 Face 5706 3210 3209 3116 Face 5707 3115 2856 3113 Face 5708 3115 2855 2856 Face 5709 2704 2857 3211 Face 5710 2704 1208 2857 Face 5711 1863 2858 3035 Face 5712 1863 2704 2858 Face 5713 1182 2859 3038 Face 5714 1182 518 2859 Face 5715 592 2860 146 Face 5716 5298 6148 6145 Face 5717 1296 2861 1044 Face 5718 1296 5364 6423 Face 5719 1081 2862 2221 Face 5720 1081 2417 5709 Face 5721 1797 2863 3527 Face 5722 1797 3531 3374 Face 5723 1826 2864 4001 Face 5724 1826 2913 2864 Face 5725 2059 2913 2812 Face 5726 2059 2864 2913 Face 5727 490 2866 3138 Face 5728 490 2458 2866 Face 5729 494 2867 5178 Face 5730 494 665 2867 Face 5731 3911 3912 2555 Face 5732 1509 3929 2868 Face 5733 3929 3930 2868 Face 5734 1954 2870 2869 Face 5735 493 2870 2945 Face 5736 493 2869 2870 Face 5737 4003 4352 3918 Face 5738 4003 4351 4352 Face 5739 2269 3978 3481 Face 5740 2269 3760 3978 Face 5741 4525 4405 4404 Face 5742 4525 4524 4405 Face 5743 1841 2874 1256 Face 5744 1841 3356 2874 Face 5745 322 2875 1646 Face 5746 322 21 2875 Face 5747 2481 3540 876 Face 5748 2481 1797 3527 Face 5749 4876 4634 3102 Face 5750 4876 4149 4634 Face 5751 2505 2878 4434 Face 5752 2505 2879 2878 Face 5753 4229 4397 4365 Face 5754 4229 4398 4397 Face 5755 4246 2880 2881 Face 5756 4246 2528 2880 Face 5757 4256 2881 2531 Face 5758 4256 4246 2881 Face 5759 2531 2882 2883 Face 5760 2531 2881 2882 Face 5761 2851 4384 4128 Face 5762 2851 2884 4384 Face 5763 4395 2884 2851 Face 5764 4395 2885 2884 Face 5765 4199 4394 3110 Face 5766 4199 4393 4394 Face 5767 3217 4341 3111 Face 5768 3217 4340 4341 Face 5769 3992 3202 3203 Face 5770 3992 2888 3202 Face 5771 3993 2888 3992 Face 5772 3993 3333 2888 Face 5773 1620 2889 2912 Face 5774 1620 1169 2889 Face 5775 1935 2890 2397 Face 5776 1935 787 2890 Face 5777 1532 2891 1925 Face 5778 1532 2285 2891 Face 5779 13 2892 916 Face 5780 13 1186 2892 Face 5781 5963 2893 6152 Face 5782 1117 2894 6120 Face 5783 2187 2894 2173 Face 5784 6123 6120 2894 Face 5785 803 2895 3256 Face 5786 803 196 2895 Face 5787 6204 5449 6207 Face 5788 6218 6295 6215 Face 5789 857 2897 2898 Face 5790 857 6204 2897 Face 5791 136 2898 2897 Face 5792 136 2899 2898 Face 5793 1199 3713 2074 Face 5794 1199 2898 2899 Face 5795 2074 3982 539 Face 5796 2074 3713 3982 Face 5797 3590 2901 3571 Face 5798 3590 463 2901 Face 5799 2630 2902 2901 Face 5800 2630 3370 2902 Face 5801 859 6365 2904 Face 5802 859 1962 2903 Face 5803 280 2904 388 Face 5804 280 859 2904 Face 5805 600 2905 56 Face 5806 600 5103 2905 Face 5807 3896 2906 3895 Face 5808 3896 3144 2906 Face 5809 881 2907 1195 Face 5810 881 5043 4900 Face 5811 1589 2908 3567 Face 5812 1589 2978 2908 Face 5813 3586 3567 2908 Face 5814 897 1873 2909 Face 5815 3584 3582 754 Face 5816 752 1252 2910 Face 5817 1565 2911 2759 Face 5818 1565 3291 2911 Face 5819 889 2912 2889 Face 5820 889 1040 2912 Face 5821 2865 2913 1826 Face 5822 2865 2812 2913 Face 5823 3882 4032 3881 Face 5824 3882 2915 4032 Face 5825 3959 2915 3882 Face 5826 3959 3151 2915 Face 5827 2030 4811 289 Face 5828 2030 200 2916 Face 5829 2383 2917 3883 Face 5830 2383 3181 2917 Face 5831 789 2918 1525 Face 5832 789 1530 2918 Face 5833 4819 4977 4646 Face 5834 4633 4476 2919 Face 5835 886 2920 4977 Face 5836 886 2592 2920 Face 5837 733 2921 1921 Face 5838 733 109 2921 Face 5839 1921 2922 2923 Face 5840 1921 2921 2922 Face 5841 1047 2923 338 Face 5842 1047 1921 2923 Face 5843 2276 2924 2275 Face 5844 2276 2435 2924 Face 5845 1725 3948 3947 Face 5846 1725 2926 3948 Face 5847 338 2926 1725 Face 5848 338 2923 2926 Face 5849 2924 2927 2275 Face 5850 2924 2926 2927 Face 5851 3792 6372 2931 Face 5852 5196 3642 2928 Face 5853 1739 2929 741 Face 5854 5528 5541 5539 Face 5855 5541 2930 5543 Face 5856 5541 5528 2930 Face 5857 3707 2931 6372 Face 5858 1314 232 2931 Face 5859 232 2932 2931 Face 5860 232 3194 2932 Face 5861 1899 6098 6090 Face 5862 6084 6087 2933 Face 5863 3357 6080 6098 Face 5864 1892 2609 2934 Face 5865 5895 6387 6390 Face 5866 869 6427 2935 Face 5867 208 2936 3355 Face 5868 6382 6472 6344 Face 5869 2110 2937 3179 Face 5870 2110 2842 2937 Face 5871 1361 2938 2557 Face 5872 1361 3705 2938 Face 5873 1035 2939 2829 Face 5874 1035 1824 2939 Face 5875 4472 4331 4330 Face 5876 4472 4425 4331 Face 5877 3874 2941 3469 Face 5878 3874 3704 2941 Face 5879 228 2942 2365 Face 5880 228 2364 2942 Face 5881 86 2943 861 Face 5882 5216 5262 6465 Face 5883 4967 5052 3535 Face 5884 4967 2945 5052 Face 5885 494 2945 2870 Face 5886 494 5052 2945 Face 5887 579 2946 1737 Face 5888 579 2727 2946 Face 5889 4004 3918 3789 Face 5890 4004 4003 3918 Face 5891 217 2948 1906 Face 5892 217 3126 2948 Face 5893 2868 2949 1509 Face 5894 2868 3935 2949 Face 5895 2959 2950 2960 Face 5896 2555 3912 2950 Face 5897 2196 2951 1736 Face 5898 2196 2952 2951 Face 5899 1718 2952 2196 Face 5900 1718 2953 2952 Face 5901 1953 2953 1718 Face 5902 1953 2954 2953 Face 5903 1678 2954 1953 Face 5904 1678 1854 2954 Face 5905 1854 2955 2954 Face 5906 1854 2956 2955 Face 5907 2577 2956 1854 Face 5908 2577 2957 2956 Face 5909 2576 2957 2577 Face 5910 2576 2958 2957 Face 5911 2575 2958 2576 Face 5912 2575 2959 2958 Face 5913 2555 2959 2575 Face 5914 2555 2950 2959 Face 5915 178 2960 2961 Face 5916 178 2959 2960 Face 5917 780 2961 2960 Face 5918 780 3804 2961 Face 5919 464 2962 3752 Face 5920 464 495 2962 Face 5921 495 2963 2962 Face 5922 495 1915 2963 Face 5923 1959 2964 3359 Face 5924 1959 2965 2964 Face 5925 1688 2965 3878 Face 5926 1688 2964 2965 Face 5927 1686 2966 1243 Face 5928 1686 4984 2966 Face 5929 5185 2967 6185 Face 5930 5185 5184 2967 Face 5931 5186 5966 5962 Face 5932 5971 5185 6185 Face 5933 5959 2969 5863 Face 5934 5949 5186 5962 Face 5935 5192 6366 5532 Face 5936 5192 5860 6366 Face 5937 1312 2971 2054 Face 5938 1312 3802 2971 Face 5939 513 2972 2973 Face 5940 513 2787 2972 Face 5941 1946 2973 2972 Face 5942 1946 1947 2973 Face 5943 1947 2974 2973 Face 5944 1947 1147 2974 Face 5945 1147 2975 2974 Face 5946 1147 1187 2975 Face 5947 1187 2976 2975 Face 5948 1187 2977 2976 Face 5949 635 2977 1187 Face 5950 635 2978 2977 Face 5951 1951 2978 1589 Face 5952 1951 2977 2978 Face 5953 1589 2979 1951 Face 5954 1589 3567 3341 Face 5955 2299 2980 2557 Face 5956 3196 2497 3991 Face 5957 1360 2981 3196 Face 5958 1360 353 2981 Face 5959 2361 2982 5585 Face 5960 2361 2942 2982 Face 5961 506 2983 2361 Face 5962 506 3287 2983 Face 5963 2438 2984 2730 Face 5964 2438 2843 2984 Face 5965 4217 3990 4216 Face 5966 4217 3496 3990 Face 5967 1681 2986 553 Face 5968 1681 3671 2986 Face 5969 2612 2987 2718 Face 5970 2612 3826 2987 Face 5971 2328 3549 1825 Face 5972 2328 3548 3549 Face 5973 1825 2989 2771 Face 5974 1825 3549 2989 Face 5975 951 2993 1574 Face 5976 951 2608 2993 Face 5977 1574 2991 2494 Face 5978 1574 2993 2991 Face 5979 697 2992 1169 Face 5980 697 1933 2992 Face 5981 2990 2993 2608 Face 5982 2990 2991 2993 Face 5983 1245 2994 127 Face 5984 1245 1246 2994 Face 5985 1246 2995 709 Face 5986 1246 1245 2995 Face 5987 709 2996 1246 Face 5988 709 576 2996 Face 5989 576 2997 2996 Face 5990 576 512 2997 Face 5991 512 2998 2997 Face 5992 512 748 2998 Face 5993 748 2999 2998 Face 5994 748 1950 2999 Face 5995 1950 3000 2999 Face 5996 1950 3001 3000 Face 5997 1279 3001 1950 Face 5998 1279 3002 3001 Face 5999 1280 3002 1279 Face 6000 1280 3596 3002 Face 6001 1544 3003 1352 Face 6002 1544 2003 3003 Face 6003 2553 3004 3307 Face 6004 2553 687 3004 Face 6005 687 3005 3004 Face 6006 687 3006 3005 Face 6007 2082 3006 3313 Face 6008 2082 3005 3006 Face 6009 1232 3007 3314 Face 6010 1232 1088 3007 Face 6011 1088 3008 3007 Face 6012 1088 1249 3008 Face 6013 1249 3009 3008 Face 6014 1249 301 3009 Face 6015 301 3010 3009 Face 6016 301 2087 3010 Face 6017 2087 3011 3010 Face 6018 2087 214 3011 Face 6019 214 3012 3011 Face 6020 214 3013 3012 Face 6021 680 3013 214 Face 6022 3609 3608 3613 Face 6023 2735 3014 2825 Face 6024 2735 2737 3014 Face 6025 1607 3015 3016 Face 6026 1607 1546 3015 Face 6027 1405 3016 3017 Face 6028 1405 1607 3016 Face 6029 847 3017 3018 Face 6030 847 1405 3017 Face 6031 2282 3018 1761 Face 6032 2282 847 3018 Face 6033 1761 3019 826 Face 6034 1761 3018 3019 Face 6035 826 3020 1411 Face 6036 826 3019 3020 Face 6037 1411 3021 1983 Face 6038 1411 3020 3021 Face 6039 1983 3022 1982 Face 6040 1983 3021 3022 Face 6041 1982 3023 3024 Face 6042 1982 3022 3023 Face 6043 1981 3024 1980 Face 6044 1981 1982 3024 Face 6045 1980 3025 1275 Face 6046 1980 3024 3025 Face 6047 1275 3026 3027 Face 6048 1275 3025 3026 Face 6049 1276 3027 3026 Face 6050 3415 3402 3414 Face 6051 990 3028 606 Face 6052 3401 3414 3402 Face 6053 606 3029 3030 Face 6054 606 3028 3029 Face 6055 699 3030 3029 Face 6056 699 374 3030 Face 6057 374 3031 3030 Face 6058 374 3032 3031 Face 6059 2092 3032 374 Face 6060 2092 753 3032 Face 6061 753 3033 3032 Face 6062 753 3034 3033 Face 6063 133 3034 753 Face 6064 133 3599 3034 Face 6065 1864 4564 4874 Face 6066 1864 1863 3035 Face 6067 4579 5028 4578 Face 6068 4579 4564 3036 Face 6069 1861 3037 1862 Face 6070 1861 1865 3037 Face 6071 2689 3669 2859 Face 6072 2689 3039 3669 Face 6073 1724 3039 2689 Face 6074 1724 3480 3039 Face 6075 3981 3040 2270 Face 6076 3853 3041 3040 Face 6077 915 3041 1343 Face 6078 915 3040 3041 Face 6079 1315 3042 491 Face 6080 1315 3662 3042 Face 6081 950 3043 3044 Face 6082 950 725 3043 Face 6083 724 3044 3045 Face 6084 724 950 3044 Face 6085 891 3045 3046 Face 6086 891 724 3045 Face 6087 591 3046 3047 Face 6088 591 891 3046 Face 6089 2179 3047 3048 Face 6090 2179 591 3047 Face 6091 590 3048 2738 Face 6092 590 2179 3048 Face 6093 2738 3049 2409 Face 6094 2738 3048 3049 Face 6095 2409 3050 3051 Face 6096 2409 3049 3050 Face 6097 604 3051 2445 Face 6098 604 2409 3051 Face 6099 2445 3052 3053 Face 6100 2445 3051 3052 Face 6101 785 3053 2447 Face 6102 785 2445 3053 Face 6103 2447 3054 2448 Face 6104 2447 3053 3054 Face 6105 2448 3055 989 Face 6106 2448 3054 3055 Face 6107 989 3056 3057 Face 6108 989 3055 3056 Face 6109 1122 3057 3056 Face 6110 3412 3399 3411 Face 6111 1829 3058 1005 Face 6112 3398 3411 3399 Face 6113 1005 3059 3060 Face 6114 1005 3058 3059 Face 6115 1827 3060 3059 Face 6116 1827 3061 3060 Face 6117 1257 3061 1588 Face 6118 1257 3060 3061 Face 6119 1588 3062 1257 Face 6120 1588 3063 3062 Face 6121 536 3063 1588 Face 6122 536 3064 3063 Face 6123 2457 3064 536 Face 6124 2457 3580 3064 Face 6125 3580 3577 3064 Face 6126 1253 478 3065 Face 6127 31 3066 1735 Face 6128 31 3924 3066 Face 6129 4420 4333 4332 Face 6130 4420 4404 4333 Face 6131 4524 4406 4405 Face 6132 4524 4523 4406 Face 6133 4523 3084 4406 Face 6134 4523 4522 3084 Face 6135 4522 3085 3084 Face 6136 4522 4521 3085 Face 6137 4521 4409 3085 Face 6138 4521 4520 4409 Face 6139 116 3072 1717 Face 6140 116 4054 3072 Face 6141 4488 3088 4410 Face 6142 4488 4482 3088 Face 6143 4482 3089 3088 Face 6144 4482 4481 3089 Face 6145 4481 3090 3089 Face 6146 4481 4480 3090 Face 6147 4480 4414 3090 Face 6148 4480 4479 4414 Face 6149 1200 4048 248 Face 6150 1200 4049 4048 Face 6151 1559 3078 3081 Face 6152 1559 3092 3078 Face 6153 139 3079 2127 Face 6154 139 1558 3079 Face 6155 4601 4404 4420 Face 6156 4601 4525 4404 Face 6157 1558 3081 3079 Face 6158 1558 1559 3081 Face 6159 2873 3082 3068 Face 6160 2873 3080 3082 Face 6161 3068 3083 3069 Face 6162 3068 3082 3083 Face 6163 3069 4407 3070 Face 6164 3069 3083 4407 Face 6165 3070 4408 3071 Face 6166 3070 4407 4408 Face 6167 3071 3086 4053 Face 6168 3071 4408 3086 Face 6169 4053 3087 3073 Face 6170 4053 3086 3087 Face 6171 3073 4411 3074 Face 6172 3073 3087 4411 Face 6173 3074 4412 3075 Face 6174 3074 4411 4412 Face 6175 3075 4413 3076 Face 6176 3075 4412 4413 Face 6177 3076 3091 3077 Face 6178 3076 4413 3091 Face 6179 3077 3092 1559 Face 6180 3077 3091 3092 Face 6181 1559 3093 3077 Face 6182 1559 1558 3093 Face 6183 1843 3094 3131 Face 6184 1843 1518 3094 Face 6185 1375 3095 3165 Face 6186 1375 3661 3095 Face 6187 479 4460 717 Face 6188 4936 4768 5106 Face 6189 716 4726 3719 Face 6190 4725 4670 5162 Face 6191 4951 4953 4528 Face 6192 5134 4898 4955 Face 6193 5144 3099 1839 Face 6194 5167 5020 5026 Face 6195 4444 5020 5089 Face 6196 5021 4638 3100 Face 6197 4638 4993 3100 Face 6198 4382 5017 5016 Face 6199 4546 4969 4547 Face 6200 4546 3103 4969 Face 6201 3227 4545 981 Face 6202 3227 3104 4545 Face 6203 2856 3225 1495 Face 6204 2856 3224 3225 Face 6205 2855 3224 2856 Face 6206 2855 3117 3224 Face 6207 3117 3223 3224 Face 6208 3117 3222 3223 Face 6209 4372 3107 4436 Face 6210 4372 4371 3107 Face 6211 4202 4371 4201 Face 6212 4202 3107 4371 Face 6213 4317 3109 3221 Face 6214 4317 2511 3109 Face 6215 4343 3110 4288 Face 6216 4343 4199 3110 Face 6217 3204 4315 4316 Face 6218 3204 3114 4315 Face 6219 829 3112 3113 Face 6220 829 830 3112 Face 6221 3212 3113 3112 Face 6222 3212 3115 3113 Face 6223 4009 3203 3122 Face 6224 4009 3992 3203 Face 6225 2723 3115 3212 Face 6226 2723 3116 3115 Face 6227 2855 3116 2533 Face 6228 2855 3115 3116 Face 6229 2533 3117 2855 Face 6230 2533 3118 3117 Face 6231 3222 3118 3119 Face 6232 3222 3117 3118 Face 6233 2852 3119 3118 Face 6234 2852 3206 3119 Face 6235 2526 3206 3121 Face 6236 2526 3119 3206 Face 6237 4316 3121 3204 Face 6238 4316 2526 3121 Face 6239 4010 3122 3205 Face 6240 4010 4009 3122 Face 6241 932 3123 1791 Face 6242 932 3852 3123 Face 6243 1737 3124 1186 Face 6244 1737 2946 3124 Face 6245 2271 3125 1741 Face 6246 2271 1178 3125 Face 6247 1612 3126 3172 Face 6248 1612 2948 3126 Face 6249 5041 5111 2587 Face 6250 240 2711 3127 Face 6251 1055 3128 3129 Face 6252 1055 334 3128 Face 6253 519 3129 3130 Face 6254 519 1055 3129 Face 6255 1034 3130 3141 Face 6256 1034 519 3130 Face 6257 1896 3131 3132 Face 6258 1896 1843 3131 Face 6259 1895 3132 3131 Face 6260 1895 4308 3132 Face 6261 692 3133 935 Face 6262 4349 3132 4308 Face 6263 935 3134 3695 Face 6264 935 3133 3134 Face 6265 2467 3135 2068 Face 6266 2467 126 3135 Face 6267 126 3136 3135 Face 6268 5254 3949 5213 Face 6269 455 3137 5588 Face 6270 455 233 3137 Face 6271 2284 3138 2573 Face 6272 2284 490 3138 Face 6273 2573 3139 3125 Face 6274 2573 3138 3139 Face 6275 979 3140 3139 Face 6276 979 2690 3140 Face 6277 172 3141 3284 Face 6278 172 1034 3141 Face 6279 1942 3142 3757 Face 6280 1942 3873 3142 Face 6281 1940 3143 851 Face 6282 1940 183 3143 Face 6283 3897 3144 3896 Face 6284 3897 3145 3144 Face 6285 3898 3145 3897 Face 6286 3898 3146 3145 Face 6287 3899 3146 3898 Face 6288 3899 3147 3146 Face 6289 3900 3147 3899 Face 6290 3900 3148 3147 Face 6291 3901 3148 3900 Face 6292 3901 3149 3148 Face 6293 3902 3149 3901 Face 6294 3902 3150 3149 Face 6295 3903 3150 3902 Face 6296 3903 3292 3150 Face 6297 4092 3151 3959 Face 6298 4092 3152 3151 Face 6299 1435 4093 291 Face 6300 1435 3153 4093 Face 6301 2337 3153 1435 Face 6302 2337 4095 3153 Face 6303 731 4095 2337 Face 6304 731 3155 4095 Face 6305 2374 3155 731 Face 6306 2374 4097 3155 Face 6307 171 4097 2374 Face 6308 171 4098 4097 Face 6309 2377 4098 171 Face 6310 2377 4099 4098 Face 6311 930 4099 2377 Face 6312 930 4100 4099 Face 6313 2320 4100 930 Face 6314 2320 4101 4100 Face 6315 528 4101 2320 Face 6316 528 3475 4101 Face 6317 1095 3161 2537 Face 6318 1095 212 3161 Face 6319 1862 3162 1861 Face 6320 5268 6393 3162 Face 6321 1096 5359 5268 Face 6322 1096 98 5359 Face 6323 1868 5361 5359 Face 6324 1868 1860 3164 Face 6325 204 3165 3166 Face 6326 204 1375 3165 Face 6327 628 3166 3167 Face 6328 628 204 3166 Face 6329 1135 3167 3369 Face 6330 1135 628 3167 Face 6331 4561 3168 2127 Face 6332 735 259 3168 Face 6333 1545 3169 1348 Face 6334 3853 3040 3169 Face 6335 1348 3170 1347 Face 6336 1348 3169 3170 Face 6337 1019 3171 4996 Face 6338 1019 2720 3171 Face 6339 2049 3172 3126 Face 6340 2049 3677 3172 Face 6341 798 3173 3493 Face 6342 798 5435 3173 Face 6343 1625 3174 4196 Face 6344 1625 2562 3174 Face 6345 2562 3175 3174 Face 6346 2562 1062 3175 Face 6347 2563 3176 3175 Face 6348 2563 2335 3176 Face 6349 5187 5640 3652 Face 6350 2604 744 3177 Face 6351 744 3178 3177 Face 6352 744 598 3178 Face 6353 38 3179 1606 Face 6354 38 2110 3179 Face 6355 2063 3180 2062 Face 6356 2063 2059 3180 Face 6357 2465 3181 2383 Face 6358 2465 2063 3181 Face 6359 3614 3596 1280 Face 6360 2468 3627 3182 Face 6361 207 3183 4074 Face 6362 207 312 3183 Face 6363 2090 3184 3605 Face 6364 2090 3377 3184 Face 6365 3600 3599 133 Face 6366 2089 3308 3185 Face 6367 1634 3186 3335 Face 6368 1634 2296 3186 Face 6369 926 3187 3510 Face 6370 4292 1634 3487 Face 6371 4878 4879 1557 Face 6372 4878 4759 3188 Face 6373 138 3189 4878 Face 6374 138 257 3189 Face 6375 1155 3190 1687 Face 6376 1155 2393 3190 Face 6377 1687 3191 1155 Face 6378 1687 3658 3191 Face 6379 2581 3192 3191 Face 6380 2581 3880 3192 Face 6381 2439 3193 3333 Face 6382 2439 2057 3193 Face 6383 3776 3773 4137 Face 6384 97 2932 3194 Face 6385 1322 3195 718 Face 6386 4137 3773 4136 Face 6387 2299 3196 3991 Face 6388 2299 793 3196 Face 6389 1186 3197 2892 Face 6390 1186 3124 3197 Face 6391 1873 3198 2909 Face 6392 1873 3199 3198 Face 6393 1872 3199 1873 Face 6394 1872 3200 3199 Face 6395 1871 3200 1872 Face 6396 1871 3201 3200 Face 6397 111 3201 608 Face 6398 111 3200 3201 Face 6399 4340 3216 3213 Face 6400 4340 3217 3216 Face 6401 3114 3203 3202 Face 6402 3114 3204 3203 Face 6403 3122 3204 3121 Face 6404 3122 3203 3204 Face 6405 3121 3205 3122 Face 6406 3121 3206 3205 Face 6407 3120 3206 2852 Face 6408 3120 3205 3206 Face 6409 2852 3207 3120 Face 6410 2852 3208 3207 Face 6411 2853 3208 3209 Face 6412 2853 3207 3208 Face 6413 2854 3209 3210 Face 6414 2854 2853 3209 Face 6415 2504 3210 3211 Face 6416 2504 2854 3210 Face 6417 2723 3211 3210 Face 6418 2723 613 3211 Face 6419 613 3212 3214 Face 6420 613 2723 3212 Face 6421 3859 3213 3216 Face 6422 3859 1054 3213 Face 6423 2858 3214 1549 Face 6424 2858 613 3214 Face 6425 4806 4678 3036 Face 6426 1549 3214 3215 Face 6427 4313 3216 4314 Face 6428 4313 3859 3216 Face 6429 4314 3217 3218 Face 6430 4314 3216 3217 Face 6431 3111 3218 3217 Face 6432 3111 3219 3218 Face 6433 2511 3219 3109 Face 6434 2511 3218 3219 Face 6435 3109 4344 3108 Face 6436 3109 3219 4344 Face 6437 3108 3221 3109 Face 6438 3108 4319 3221 Face 6439 2518 3222 4318 Face 6440 2518 3223 3222 Face 6441 3106 3223 2518 Face 6442 3106 3105 3223 Face 6443 3105 3224 3223 Face 6444 3105 3225 3224 Face 6445 3104 3225 3105 Face 6446 3104 3227 3225 Face 6447 830 5083 5110 Face 6448 830 4731 5083 Face 6449 1495 3227 3228 Face 6450 1495 3225 3227 Face 6451 829 3228 469 Face 6452 829 1495 3228 Face 6453 4731 4444 5089 Face 6454 469 3228 3229 Face 6455 1054 3230 3213 Face 6456 1054 1063 3230 Face 6457 1913 3231 2685 Face 6458 1913 2775 3231 Face 6459 2685 3232 1923 Face 6460 2685 3231 3232 Face 6461 1923 3233 2709 Face 6462 1923 3232 3233 Face 6463 2709 3234 402 Face 6464 2709 3233 3234 Face 6465 402 3235 848 Face 6466 402 3234 3235 Face 6467 848 3236 1988 Face 6468 848 3235 3236 Face 6469 1988 3237 1408 Face 6470 1988 3236 3237 Face 6471 1408 3238 3239 Face 6472 1408 3237 3238 Face 6473 1409 3239 3240 Face 6474 1409 1408 3239 Face 6475 649 3240 3239 Face 6476 649 3241 3240 Face 6477 2103 3241 649 Face 6478 2103 3242 3241 Face 6479 864 3242 2103 Face 6480 864 3243 3242 Face 6481 1383 3243 864 Face 6482 1383 3244 3243 Face 6483 3427 3244 1383 Face 6484 3427 3245 3244 Face 6485 3426 3245 3427 Face 6486 3426 3425 3245 Face 6487 3564 3246 1420 Face 6488 3564 3247 3246 Face 6489 3565 3247 3564 Face 6490 3830 3635 3419 Face 6491 3635 3633 3419 Face 6492 2558 3637 3248 Face 6493 3634 3249 3633 Face 6494 3634 3250 3249 Face 6495 608 3632 3631 Face 6496 608 3201 3632 Face 6497 3712 3251 603 Face 6498 2583 2582 3251 Face 6499 3768 3769 4242 Face 6500 598 744 3252 Face 6501 1395 3253 4243 Face 6502 1395 3254 3253 Face 6503 1045 3254 3255 Face 6504 1045 3253 3254 Face 6505 1041 3255 3285 Face 6506 1041 1045 3255 Face 6507 1133 3256 3257 Face 6508 1133 803 3256 Face 6509 19 3257 3258 Face 6510 19 1133 3257 Face 6511 1076 3258 3259 Face 6512 1076 19 3258 Face 6513 2569 3259 3258 Face 6514 2569 1564 3259 Face 6515 1564 3260 3261 Face 6516 1564 2569 3260 Face 6517 1963 3261 2702 Face 6518 1963 1564 3261 Face 6519 2702 3262 616 Face 6520 2702 3261 3262 Face 6521 980 3263 3264 Face 6522 980 245 3263 Face 6523 33 3264 3265 Face 6524 33 980 3264 Face 6525 766 3265 3266 Face 6526 766 33 3265 Face 6527 1079 3266 3267 Face 6528 1079 766 3266 Face 6529 196 3267 2895 Face 6530 196 1079 3267 Face 6531 2895 3268 2199 Face 6532 2895 3267 3268 Face 6533 2199 3269 1156 Face 6534 2199 3268 3269 Face 6535 1156 3270 3271 Face 6536 1156 3269 3270 Face 6537 1439 3271 3272 Face 6538 1439 1156 3271 Face 6539 1075 3272 3271 Face 6540 1075 615 3272 Face 6541 615 3273 74 Face 6542 615 1075 3273 Face 6543 74 3274 3275 Face 6544 74 3273 3274 Face 6545 2489 3275 1318 Face 6546 2489 74 3275 Face 6547 2800 3276 2014 Face 6548 5726 5855 5762 Face 6549 2014 3277 2015 Face 6550 2014 3276 3277 Face 6551 2015 3278 3933 Face 6552 2015 3277 3278 Face 6553 2823 3919 3788 Face 6554 2823 3280 3919 Face 6555 2843 3280 2984 Face 6556 2843 3279 3280 Face 6557 516 3281 3171 Face 6558 516 4997 3281 Face 6559 1272 4997 516 Face 6560 3283 5032 3282 Face 6561 1272 3283 3282 Face 6562 1272 2757 3283 Face 6563 1185 3284 3753 Face 6564 1185 172 3284 Face 6565 1821 3285 3329 Face 6566 1821 1041 3285 Face 6567 4018 3286 3287 Face 6568 4018 4019 3286 Face 6569 113 3287 506 Face 6570 113 4018 3287 Face 6571 1900 3288 3715 Face 6572 1900 3530 3288 Face 6573 1848 3289 79 Face 6574 1848 2207 3289 Face 6575 1328 3290 3685 Face 6576 1328 1617 3290 Face 6577 2698 3291 1565 Face 6578 2698 3372 3291 Face 6579 3904 3292 3903 Face 6580 3904 3293 3292 Face 6581 3905 3293 3904 Face 6582 3905 3294 3293 Face 6583 3906 3294 3905 Face 6584 3906 3295 3294 Face 6585 3907 3295 3906 Face 6586 3907 3296 3295 Face 6587 3908 3296 3907 Face 6588 3908 3297 3296 Face 6589 3909 3297 3908 Face 6590 3909 3910 3297 Face 6591 2288 3298 3368 Face 6592 2288 3995 3298 Face 6593 1466 3299 2595 Face 6594 1466 876 3299 Face 6595 986 3300 183 Face 6596 986 3528 3300 Face 6597 2352 3301 1528 Face 6598 2352 2351 3301 Face 6599 3976 3302 3975 Face 6600 3976 3303 3302 Face 6601 3977 3303 3976 Face 6602 3977 3304 3303 Face 6603 4017 3304 3977 Face 6604 4017 3305 3304 Face 6605 4033 3305 4017 Face 6606 4033 3306 3305 Face 6607 4036 3306 4033 Face 6608 4036 3526 3306 Face 6609 1955 3922 978 Face 6610 1955 3697 3922 Face 6611 2088 3308 2089 Face 6612 2088 750 3308 Face 6613 750 3309 3308 Face 6614 750 3310 3309 Face 6615 301 3310 750 Face 6616 301 1249 3310 Face 6617 1249 3311 3310 Face 6618 1249 1088 3311 Face 6619 1088 3312 3311 Face 6620 1088 1232 3312 Face 6621 1232 3313 3312 Face 6622 1232 2082 3313 Face 6623 2082 3314 1814 Face 6624 2082 1232 3314 Face 6625 1814 3315 1645 Face 6626 1814 3314 3315 Face 6627 478 3316 3065 Face 6628 478 3317 3316 Face 6629 1251 3317 478 Face 6630 1251 824 3317 Face 6631 824 3318 3317 Face 6632 824 1581 3318 Face 6633 1581 3319 3318 Face 6634 1581 1965 3319 Face 6635 1965 3320 3319 Face 6636 1965 2624 3320 Face 6637 2624 3321 3320 Face 6638 2624 3322 3321 Face 6639 234 3322 3323 Face 6640 234 3321 3322 Face 6641 64 3323 2734 Face 6642 64 234 3323 Face 6643 1318 3324 2491 Face 6644 1318 3275 3324 Face 6645 2491 3325 3326 Face 6646 2491 3324 3325 Face 6647 1321 3326 3325 Face 6648 4135 4439 4134 Face 6649 4439 4438 4134 Face 6650 936 3749 3327 Face 6651 1106 4829 671 Face 6652 1106 4757 4829 Face 6653 1822 3329 3330 Face 6654 1822 1821 3329 Face 6655 1897 3330 3331 Face 6656 1897 1822 3330 Face 6657 1898 3331 3332 Face 6658 1898 1897 3331 Face 6659 2072 3332 3375 Face 6660 2072 1898 3332 Face 6661 132 3333 3993 Face 6662 132 2439 3333 Face 6663 491 3334 1315 Face 6664 5441 5954 5200 Face 6665 2610 3335 1635 Face 6666 2610 3487 3335 Face 6667 1590 3336 1846 Face 6668 1590 916 3336 Face 6669 5007 3337 4831 Face 6670 4620 4865 4864 Face 6671 5158 4865 4620 Face 6672 5158 5143 4865 Face 6673 3342 3339 2715 Face 6674 3342 3341 3339 Face 6675 1134 3340 1262 Face 6676 1134 800 3340 Face 6677 2979 3341 3342 Face 6678 2979 1589 3341 Face 6679 800 3342 3340 Face 6680 800 2979 3342 Face 6681 30 3343 800 Face 6682 30 3344 3343 Face 6683 431 3344 30 Face 6684 431 3345 3344 Face 6685 173 3345 431 Face 6686 173 2399 3345 Face 6687 2399 3346 3345 Face 6688 2399 2278 3346 Face 6689 2278 3347 3346 Face 6690 2278 1402 3347 Face 6691 1402 3348 3347 Face 6692 1402 3349 3348 Face 6693 1403 3349 1402 Face 6694 1403 3350 3349 Face 6695 2403 3350 653 Face 6696 2403 3349 3350 Face 6697 2291 3351 1893 Face 6698 2291 2481 3351 Face 6699 6440 6435 5365 Face 6700 6430 6285 6347 Face 6701 6285 6475 3352 Face 6702 5565 6460 3353 Face 6703 3657 3354 5301 Face 6704 2936 5380 3354 Face 6705 1893 3355 2936 Face 6706 1893 3351 3355 Face 6707 2194 3356 1841 Face 6708 2194 1124 3356 Face 6709 6073 3357 5555 Face 6710 6073 6080 3357 Face 6711 2609 3358 2822 Face 6712 2609 1892 3358 Face 6713 2580 3359 2964 Face 6714 2580 3658 3359 Face 6715 1252 3360 2910 Face 6716 1252 3361 3360 Face 6717 424 3361 1252 Face 6718 424 1250 3361 Face 6719 1250 3362 3361 Face 6720 1250 711 3362 Face 6721 711 3363 3362 Face 6722 711 1576 3363 Face 6723 1576 3364 3363 Face 6724 1576 1964 3364 Face 6725 1964 3365 3364 Face 6726 1964 3366 3365 Face 6727 1233 3366 1964 Face 6728 1233 3367 3366 Face 6729 2571 3367 975 Face 6730 2571 3366 3367 Face 6731 3932 3368 3298 Face 6732 2869 493 3368 Face 6733 96 3369 3457 Face 6734 96 1135 3369 Face 6735 1586 3370 1255 Face 6736 1586 2902 3370 Face 6737 4007 3371 3681 Face 6738 4007 3877 3371 Face 6739 2216 3372 2698 Face 6740 2216 3547 3372 Face 6741 616 3373 1319 Face 6742 616 3262 3373 Face 6743 2863 3374 1955 Face 6744 2863 1797 3374 Face 6745 1500 3375 3376 Face 6746 1500 2072 3375 Face 6747 2172 3376 3379 Face 6748 2172 1500 3376 Face 6749 2091 3377 2090 Face 6750 2091 749 3377 Face 6751 749 3378 3377 Face 6752 749 1643 3378 Face 6753 2273 3379 3383 Face 6754 2273 2172 3379 Face 6755 1643 3380 3378 Face 6756 1643 1722 3380 Face 6757 143 3381 564 Face 6758 143 503 3381 Face 6759 503 3824 3381 Face 6760 4530 3849 3824 Face 6761 2368 3383 3384 Face 6762 2368 2273 3383 Face 6763 2545 3384 3386 Face 6764 2545 2368 3384 Face 6765 1722 3385 3380 Face 6766 1722 1723 3385 Face 6767 2721 3386 2340 Face 6768 2721 2545 3386 Face 6769 2340 3387 3388 Face 6770 2340 3386 3387 Face 6771 2644 3388 2615 Face 6772 2644 2340 3388 Face 6773 2615 3389 2614 Face 6774 2615 3388 3389 Face 6775 2614 3390 3392 Face 6776 2614 3389 3390 Face 6777 2747 3391 3850 Face 6778 3463 3847 3462 Face 6779 3464 3392 3848 Face 6780 3464 2614 3392 Face 6781 1723 3393 3385 Face 6782 1723 1419 3393 Face 6783 1419 3405 3418 Face 6784 1419 1723 3394 Face 6785 1123 3395 3396 Face 6786 1123 3461 3395 Face 6787 1835 3396 3397 Face 6788 1835 1123 3396 Face 6789 2451 3397 3398 Face 6790 2451 1835 3397 Face 6791 1829 3398 3399 Face 6792 1829 2451 3398 Face 6793 3058 3399 3400 Face 6794 3058 1829 3399 Face 6795 1977 3400 3401 Face 6796 1977 3058 3400 Face 6797 990 3401 3402 Face 6798 990 1977 3401 Face 6799 3028 3402 3403 Face 6800 3028 990 3402 Face 6801 2096 3403 3404 Face 6802 2096 3028 3403 Face 6803 1277 3404 3421 Face 6804 1277 2096 3404 Face 6805 3394 3405 1419 Face 6806 3394 1277 3421 Face 6807 3423 3418 3405 Face 6808 1422 3425 3406 Face 6809 3844 3407 3846 Face 6810 3844 3408 3407 Face 6811 3843 3408 3844 Face 6812 3843 3409 3408 Face 6813 3842 3409 3843 Face 6814 3842 3410 3409 Face 6815 3841 3410 3842 Face 6816 3841 3411 3410 Face 6817 3840 3411 3841 Face 6818 3840 3412 3411 Face 6819 3839 3412 3840 Face 6820 3839 3413 3412 Face 6821 3838 3413 3839 Face 6822 3838 3414 3413 Face 6823 3837 3414 3838 Face 6824 3837 3415 3414 Face 6825 3836 3415 3837 Face 6826 3836 3416 3415 Face 6827 3835 3416 3836 Face 6828 3835 3422 3416 Face 6829 1778 3417 3249 Face 6830 1778 3418 3417 Face 6831 3424 3418 3423 Face 6832 3424 3417 3418 Face 6833 3831 3419 3424 Face 6834 3831 3830 3419 Face 6835 3834 3422 3835 Face 6836 3834 3833 3420 Face 6837 3405 3421 3420 Face 6838 3405 3394 3421 Face 6839 3420 3422 3834 Face 6840 3420 3421 3422 Face 6841 3833 3423 3420 Face 6842 3833 3832 3423 Face 6843 3832 3424 3423 Face 6844 3832 3831 3424 Face 6845 3246 3425 3426 Face 6846 3246 3406 3425 Face 6847 1420 3426 1413 Face 6848 1420 3246 3426 Face 6849 1413 3427 3428 Face 6850 1413 3426 3427 Face 6851 2418 3428 1771 Face 6852 2418 1413 3428 Face 6853 1771 3429 547 Face 6854 1771 3428 3429 Face 6855 547 3430 2104 Face 6856 547 3429 3430 Face 6857 2104 3431 3432 Face 6858 2104 3430 3431 Face 6859 2105 3432 3433 Face 6860 2105 2104 3432 Face 6861 2106 3433 846 Face 6862 2106 2105 3433 Face 6863 846 3434 954 Face 6864 846 3433 3434 Face 6865 954 3435 1990 Face 6866 954 3434 3435 Face 6867 1990 3436 2321 Face 6868 1990 3435 3436 Face 6869 1345 3437 3521 Face 6870 1345 2322 3437 Face 6871 2322 3438 2323 Face 6872 2322 1345 3438 Face 6873 2323 3439 2324 Face 6874 2323 3438 3439 Face 6875 2324 3440 3441 Face 6876 2324 3439 3440 Face 6877 1393 3441 3442 Face 6878 1393 2324 3441 Face 6879 4137 4138 3776 Face 6880 1322 1393 3442 Face 6881 2351 3443 3876 Face 6882 2351 2352 3443 Face 6883 4234 3444 3467 Face 6884 4234 4330 3444 Face 6885 734 3445 2039 Face 6886 734 2552 3445 Face 6887 2039 3446 2586 Face 6888 2039 3445 3446 Face 6889 2321 3447 1386 Face 6890 2321 3436 3447 Face 6891 1386 3448 845 Face 6892 1386 3447 3448 Face 6893 845 3449 629 Face 6894 845 3448 3449 Face 6895 629 3450 2712 Face 6896 629 3449 3450 Face 6897 2712 3451 1317 Face 6898 2712 3450 3451 Face 6899 4141 4142 3771 Face 6900 1317 3451 3452 Face 6901 1371 3453 3741 Face 6902 1371 2263 3453 Face 6903 2291 3454 2481 Face 6904 2291 151 3454 Face 6905 209 3455 3657 Face 6906 209 2291 3455 Face 6907 3477 3456 2595 Face 6908 2822 3358 3456 Face 6909 806 3457 3458 Face 6910 806 96 3457 Face 6911 1121 3458 3459 Face 6912 1121 806 3458 Face 6913 273 3459 3700 Face 6914 273 1121 3459 Face 6915 1124 3460 3356 Face 6916 1124 3829 3460 Face 6917 3382 3829 1124 Face 6918 3382 3462 3829 Face 6919 3849 3462 3382 Face 6920 3849 3463 3462 Face 6921 3869 3463 4152 Face 6922 3869 3464 3848 Face 6923 3870 3464 3869 Face 6924 3870 3465 3464 Face 6925 3871 3465 3870 Face 6926 3871 3466 3465 Face 6927 3872 3466 3871 Face 6928 3872 3681 3466 Face 6929 4235 3467 3468 Face 6930 4235 4234 3467 Face 6931 4245 3468 3470 Face 6932 4245 4235 3468 Face 6933 926 4292 3487 Face 6934 926 3874 4292 Face 6935 4305 3470 3860 Face 6936 4305 4245 3470 Face 6937 691 3471 453 Face 6938 691 3740 3471 Face 6939 4151 3472 4163 Face 6940 4151 3785 3472 Face 6941 534 3473 184 Face 6942 534 3670 3473 Face 6943 1842 3474 3890 Face 6944 1842 781 3474 Face 6945 2425 3475 528 Face 6946 2425 4132 3475 Face 6947 1221 4132 2425 Face 6948 1221 4321 4132 Face 6949 2822 3477 3704 Face 6950 2822 3456 3477 Face 6951 1818 3478 3510 Face 6952 1818 3523 3478 Face 6953 2871 3479 3482 Face 6954 2871 3788 3479 Face 6955 2759 3480 1724 Face 6956 2759 2911 3480 Face 6957 2911 3481 3480 Face 6958 2911 2269 3481 Face 6959 2872 3482 3479 Face 6960 3979 3481 3978 Face 6961 1605 3483 2354 Face 6962 1605 2480 3483 Face 6963 2480 3484 3793 Face 6964 2480 3762 3484 Face 6965 2035 3485 3507 Face 6966 2035 2037 3485 Face 6967 2635 3486 1657 Face 6968 2635 3125 3486 Face 6969 3187 3487 2610 Face 6970 3187 926 3487 Face 6971 884 3488 1908 Face 6972 884 3956 3488 Face 6973 1319 3489 3494 Face 6974 1319 3373 3489 Face 6975 787 3490 2890 Face 6976 787 2078 3490 Face 6977 1290 3491 3492 Face 6978 1290 4907 3491 Face 6979 5004 3492 3491 Face 6980 5004 1059 3492 Face 6981 2791 3493 3173 Face 6982 2791 2790 3493 Face 6983 1320 3494 3489 Face 6984 4066 4337 4173 Face 6985 1040 3495 2912 Face 6986 1040 3516 3495 Face 6987 4370 3496 4217 Face 6988 4370 4346 3496 Face 6989 505 3497 1759 Face 6990 505 4020 3497 Face 6991 1152 4020 505 Face 6992 1152 3499 4020 Face 6993 566 3499 1152 Face 6994 566 3500 3499 Face 6995 2391 3500 566 Face 6996 2391 3501 3500 Face 6997 959 3501 2391 Face 6998 959 3502 3501 Face 6999 1956 3502 959 Face 7000 1956 4025 3502 Face 7001 57 4025 1956 Face 7002 57 4026 4025 Face 7003 2339 4026 57 Face 7004 2339 3533 4026 Face 7005 465 3505 2033 Face 7006 5497 3649 5499 Face 7007 2645 3506 3647 Face 7008 3752 5190 3506 Face 7009 464 3507 3485 Face 7010 464 2645 3507 Face 7011 1362 3508 2788 Face 7012 1362 3744 3508 Face 7013 1024 3509 3639 Face 7014 1024 2827 3509 Face 7015 2683 3510 3187 Face 7016 2683 1818 3510 Face 7017 1255 3511 1586 Face 7018 1255 3676 3511 Face 7019 2810 3512 3541 Face 7020 2810 4016 3512 Face 7021 2046 3513 697 Face 7022 2046 2792 3513 Face 7023 2594 3514 2271 Face 7024 4016 1924 3514 Face 7025 1548 3650 2476 Face 7026 1548 6236 3650 Face 7027 1102 3516 3515 Face 7028 1102 3495 3516 Face 7029 2493 3517 1653 Face 7030 4124 4173 4337 Face 7031 97 3518 3777 Face 7032 3776 4138 3775 Face 7033 5035 4733 4561 Face 7034 3079 3081 3519 Face 7035 32 3520 4937 Face 7036 4562 4733 5142 Face 7037 1990 3521 954 Face 7038 1990 1345 3521 Face 7039 2077 3522 2210 Face 7040 2077 2774 3522 Face 7041 1900 3523 1818 Face 7042 1900 65 3523 Face 7043 2277 3524 2710 Face 7044 2277 2036 3524 Face 7045 1068 3525 3680 Face 7046 1068 2606 3525 Face 7047 894 4035 2327 Face 7048 894 3881 4035 Face 7049 2876 3527 559 Face 7050 3540 2481 3527 Face 7051 1801 3528 3529 Face 7052 1801 3300 3528 Face 7053 1930 3529 2208 Face 7054 1930 1801 3529 Face 7055 1818 3530 1900 Face 7056 1818 2683 3530 Face 7057 975 3531 2571 Face 7058 975 3374 3531 Face 7059 3738 3532 2939 Face 7060 840 838 3532 Face 7061 732 3533 2339 Face 7062 732 4028 3533 Face 7063 2342 4028 732 Face 7064 2342 3702 4028 Face 7065 4540 4971 5056 Face 7066 4540 4967 4971 Face 7067 2028 3536 1098 Face 7068 2028 5055 3536 Face 7069 5098 4985 4787 Face 7070 851 3143 3537 Face 7071 2690 3538 3140 Face 7072 2690 3751 3538 Face 7073 2292 3539 3299 Face 7074 3703 4046 3539 Face 7075 2876 3540 3527 Face 7076 2876 2292 3540 Face 7077 1645 3541 1814 Face 7078 1645 2810 3541 Face 7079 722 3542 1336 Face 7080 722 3758 3542 Face 7081 2109 3543 3542 Face 7082 2109 2774 3543 Face 7083 2774 3544 3543 Face 7084 2774 2077 3544 Face 7085 2077 3545 3544 Face 7086 2077 2210 3545 Face 7087 586 3546 2300 Face 7088 586 3929 3546 Face 7089 2718 3547 2216 Face 7090 2718 2987 3547 Face 7091 2987 3548 3547 Face 7092 2987 2988 3548 Face 7093 2988 3549 3548 Face 7094 2988 3553 3549 Face 7095 2760 3550 2778 Face 7096 2760 2761 3550 Face 7097 4783 4690 4713 Face 7098 1694 4968 4734 Face 7099 954 3552 846 Face 7100 954 3521 3552 Face 7101 2989 3553 3808 Face 7102 2989 3549 3553 Face 7103 2415 3554 4416 Face 7104 2415 1470 3554 Face 7105 846 3555 2106 Face 7106 846 3552 3555 Face 7107 2106 3556 3557 Face 7108 2106 3555 3556 Face 7109 2105 3557 3558 Face 7110 2105 2106 3557 Face 7111 2104 3558 547 Face 7112 2104 2105 3558 Face 7113 547 3559 1771 Face 7114 547 3558 3559 Face 7115 1771 3560 2418 Face 7116 1771 3559 3560 Face 7117 2418 3561 3562 Face 7118 2418 3560 3561 Face 7119 1413 3562 1420 Face 7120 1413 2418 3562 Face 7121 1420 3563 3564 Face 7122 1420 3562 3563 Face 7123 403 3564 3563 Face 7124 403 3565 3564 Face 7125 914 3565 403 Face 7126 914 3566 3830 Face 7127 2558 3566 1423 Face 7128 3635 3830 3566 Face 7129 3587 3567 3586 Face 7130 3587 3568 3567 Face 7131 3588 3568 3587 Face 7132 3588 3569 3568 Face 7133 682 3569 3588 Face 7134 682 239 3569 Face 7135 3574 3570 3572 Face 7136 3574 3571 3570 Face 7137 3592 3571 3574 Face 7138 3592 3590 3571 Face 7139 3575 3572 3573 Face 7140 3575 3574 3572 Face 7141 3578 3573 3576 Face 7142 3578 3575 3573 Face 7143 3593 3574 3575 Face 7144 3593 3592 3574 Face 7145 3594 3575 3578 Face 7146 3594 3593 3575 Face 7147 3579 3576 3577 Face 7148 3579 3578 3576 Face 7149 3581 3577 3580 Face 7150 3581 3579 3577 Face 7151 3595 3578 3579 Face 7152 3595 3594 3578 Face 7153 3597 3579 3581 Face 7154 3597 3595 3579 Face 7155 3583 3580 3582 Face 7156 3583 3581 3580 Face 7157 3598 3581 3583 Face 7158 3598 3597 3581 Face 7159 3585 3582 3584 Face 7160 3585 3583 3582 Face 7161 3602 3583 3585 Face 7162 3602 3598 3583 Face 7163 3601 3584 3599 Face 7164 3601 3585 3584 Face 7165 3604 3585 3601 Face 7166 3604 3602 3585 Face 7167 3591 3586 3589 Face 7168 3591 3587 3586 Face 7169 3615 3587 3591 Face 7170 3615 3588 3587 Face 7171 1874 3588 3615 Face 7172 1874 682 3588 Face 7173 3616 3589 3596 Face 7174 3616 3591 3589 Face 7175 714 3590 3592 Face 7176 714 1311 3590 Face 7177 3620 3591 3616 Face 7178 3620 3615 3591 Face 7179 2631 3592 3593 Face 7180 2631 714 3592 Face 7181 1269 3593 3594 Face 7182 1269 2631 3593 Face 7183 1585 3594 3595 Face 7184 1585 1269 3594 Face 7185 1970 3595 3597 Face 7186 1970 1585 3595 Face 7187 3618 3596 3614 Face 7188 3618 3616 3596 Face 7189 605 3597 3598 Face 7190 605 1970 3597 Face 7191 3065 3598 3602 Face 7192 3065 605 3598 Face 7193 3603 3599 3600 Face 7194 3603 3601 3599 Face 7195 3612 3600 3605 Face 7196 3612 3603 3600 Face 7197 3606 3601 3603 Face 7198 3606 3604 3601 Face 7199 1253 3602 3604 Face 7200 1253 3065 3602 Face 7201 3610 3603 3612 Face 7202 3610 3606 3603 Face 7203 2910 3604 3606 Face 7204 2910 1253 3604 Face 7205 3617 3605 3621 Face 7206 3617 3612 3605 Face 7207 752 3606 3610 Face 7208 752 2910 3606 Face 7209 2089 3607 3609 Face 7210 2089 3185 3607 Face 7211 3184 3621 3605 Face 7212 3184 681 3621 Face 7213 680 3609 3613 Face 7214 680 2089 3609 Face 7215 3185 3610 3607 Face 7216 3185 752 3610 Face 7217 681 3624 3621 Face 7218 681 2468 3624 Face 7219 3607 3612 3617 Face 7220 3607 3610 3612 Face 7221 3013 3613 3611 Face 7222 3013 680 3613 Face 7223 3622 3614 3611 Face 7224 3622 3618 3614 Face 7225 2909 3615 3620 Face 7226 2909 1874 3615 Face 7227 3623 3616 3618 Face 7228 3623 3620 3616 Face 7229 3609 3617 3608 Face 7230 3609 3607 3617 Face 7231 3625 3618 3622 Face 7232 3625 3623 3618 Face 7233 3611 3619 3622 Face 7234 3611 3613 3619 Face 7235 897 3620 3623 Face 7236 897 2909 3620 Face 7237 3608 3621 3624 Face 7238 3608 3617 3621 Face 7239 3626 3622 3619 Face 7240 3626 3625 3622 Face 7241 1575 3623 3625 Face 7242 1575 897 3623 Face 7243 3619 3624 3626 Face 7244 3619 3608 3624 Face 7245 3182 3625 3626 Face 7246 3182 1575 3625 Face 7247 2468 3626 3624 Face 7248 2468 3182 3626 Face 7249 2547 3627 2468 Face 7250 2547 2548 3627 Face 7251 2548 3628 3627 Face 7252 2548 882 3628 Face 7253 882 3629 3628 Face 7254 882 1270 3629 Face 7255 1270 3630 3629 Face 7256 1270 3250 3630 Face 7257 60 3631 3248 Face 7258 60 608 3631 Face 7259 3250 3632 3630 Face 7260 3250 3634 3632 Face 7261 3636 3633 3635 Face 7262 3636 3634 3633 Face 7263 3631 3634 3636 Face 7264 3631 3632 3634 Face 7265 2558 3635 3566 Face 7266 2558 3636 3635 Face 7267 3248 3636 2558 Face 7268 3248 3631 3636 Face 7269 1779 3637 1406 Face 7270 1779 3248 3637 Face 7271 3770 3771 4142 Face 7272 1025 2605 3638 Face 7273 5197 5196 2928 Face 7274 1023 1024 3639 Face 7275 2605 3640 3641 Face 7276 2605 1025 3640 Face 7277 2604 3641 3640 Face 7278 5187 3652 3644 Face 7279 5195 3642 5196 Face 7280 5195 3643 3642 Face 7281 5189 3643 5195 Face 7282 5189 3649 3643 Face 7283 5188 3649 5189 Face 7284 5188 5187 3644 Face 7285 2032 3645 3516 Face 7286 2032 3646 3645 Face 7287 3505 3646 2032 Face 7288 5499 3644 5622 Face 7289 465 3647 3653 Face 7290 465 2645 3647 Face 7291 2778 6236 1548 Face 7292 2778 1103 5271 Face 7293 3644 3649 5188 Face 7294 3644 5499 3649 Face 7295 5322 3650 6236 Face 7296 5322 3651 3650 Face 7297 5491 6358 5322 Face 7298 5491 3652 6358 Face 7299 5493 3652 5491 Face 7300 5493 3644 3652 Face 7301 3505 3653 3646 Face 7302 3505 465 3653 Face 7303 2033 3654 3655 Face 7304 2033 3505 3654 Face 7305 889 3655 3654 Face 7306 889 3672 3655 Face 7307 4345 3656 3745 Face 7308 4345 4047 3656 Face 7309 2936 3657 1893 Face 7310 2936 3354 3657 Face 7311 2581 3658 2580 Face 7312 2581 3191 3658 Face 7313 1636 3659 2900 Face 7314 1636 3187 3659 Face 7315 2192 3660 3747 Face 7316 2192 3803 3660 Face 7317 844 3661 1375 Face 7318 844 4429 3661 Face 7319 1316 3662 4136 Face 7320 1316 3042 3662 Face 7321 508 3663 3713 Face 7322 508 3530 3663 Face 7323 1926 3664 2396 Face 7324 1926 3886 3664 Face 7325 2397 3665 2776 Face 7326 2397 2890 3665 Face 7327 2890 3666 3665 Face 7328 2890 3490 3666 Face 7329 1567 4368 4351 Face 7330 1567 3947 4368 Face 7331 2688 3668 3998 Face 7332 2688 3038 3668 Face 7333 3038 3669 3668 Face 7334 3038 2859 3669 Face 7335 147 3670 534 Face 7336 147 3807 3670 Face 7337 2385 3671 1681 Face 7338 2385 3736 3671 Face 7339 2889 3672 889 Face 7340 2889 2789 3672 Face 7341 2700 3673 1271 Face 7342 2700 3760 3673 Face 7343 2308 4373 4374 Face 7344 2308 2394 4373 Face 7345 1925 3675 1532 Face 7346 1925 4247 3675 Face 7347 1256 3676 1255 Face 7348 1256 2874 3676 Face 7349 2616 3677 3678 Face 7350 2616 3172 3677 Face 7351 2710 3678 3677 Face 7352 2710 3524 3678 Face 7353 1169 3679 697 Face 7354 1169 1620 3679 Face 7355 2608 3680 2990 Face 7356 2608 1068 3680 Face 7357 4108 3681 3872 Face 7358 4108 4007 3681 Face 7359 2736 4063 3684 Face 7360 2736 3701 4063 Face 7361 4008 5065 4911 Face 7362 2816 4790 5065 Face 7363 2815 3684 2816 Face 7364 2815 2736 3684 Face 7365 1190 3685 3290 Face 7366 1190 2815 3685 Face 7367 2601 3686 2797 Face 7368 2601 2795 3686 Face 7369 2789 3687 3672 Face 7370 2789 2992 3687 Face 7371 698 4321 1221 Face 7372 698 294 3688 Face 7373 1004 3689 3746 Face 7374 1004 1682 3689 Face 7375 2586 3690 1512 Face 7376 2586 3446 4291 Face 7377 2037 3691 3485 Face 7378 2037 3856 3691 Face 7379 2758 3865 3864 Face 7380 2758 3979 3865 Face 7381 435 3693 1112 Face 7382 435 1051 3693 Face 7383 3695 6399 5183 Face 7384 3866 5198 3694 Face 7385 1652 3695 3134 Face 7386 1652 6399 3695 Face 7387 1542 3696 346 Face 7388 1542 762 3696 Face 7389 2553 3697 975 Face 7390 2553 3307 3697 Face 7391 499 6367 2640 Face 7392 5727 6310 3698 Face 7393 6310 5544 3698 Face 7394 1310 1311 3699 Face 7395 1132 3700 3750 Face 7396 1132 273 3700 Face 7397 1616 3701 2736 Face 7398 1616 3780 3701 Face 7399 1516 3702 2342 Face 7400 1516 3854 3702 Face 7401 2292 3703 3539 Face 7402 2292 559 3703 Face 7403 238 3704 2682 Face 7404 238 2822 3704 Face 7405 2786 3705 1361 Face 7406 2786 792 3705 Face 7407 65 3706 3523 Face 7408 65 6094 3706 Face 7409 3863 5426 3739 Face 7410 1314 2931 3707 Face 7411 232 3708 3194 Face 7412 232 1314 3708 Face 7413 2394 3709 4373 Face 7414 2394 1228 3709 Face 7415 2874 3710 3676 Face 7416 2874 3827 3710 Face 7417 1823 3711 3873 Face 7418 1823 3754 3711 Face 7419 2583 3880 2581 Face 7420 2583 3251 3880 Face 7421 2899 3713 1199 Face 7422 2899 508 3713 Face 7423 6091 6077 5451 Face 7424 6094 65 6209 Face 7425 2390 3715 3288 Face 7426 2390 6212 3715 Face 7427 208 5380 2936 Face 7428 208 3717 3716 Face 7429 1892 3717 3358 Face 7430 6073 3716 3717 Face 7431 1621 3718 788 Face 7432 1621 1624 3718 Face 7433 156 3719 3720 Face 7434 156 716 3719 Face 7435 53 3720 3721 Face 7436 53 156 3720 Face 7437 1994 3721 3722 Face 7438 1994 53 3721 Face 7439 582 3722 3723 Face 7440 582 1994 3722 Face 7441 1776 3723 3724 Face 7442 1776 582 3723 Face 7443 818 3724 3725 Face 7444 818 1776 3724 Face 7445 2079 3725 3726 Face 7446 2079 818 3725 Face 7447 299 3726 3727 Face 7448 299 2079 3726 Face 7449 1448 3727 3728 Face 7450 1448 299 3727 Face 7451 1792 3728 3729 Face 7452 1792 1448 3728 Face 7453 852 3729 3730 Face 7454 852 1792 3729 Face 7455 1623 3730 3731 Face 7456 1623 852 3730 Face 7457 52 3731 2841 Face 7458 52 1623 3731 Face 7459 2841 3732 1622 Face 7460 2841 3731 3732 Face 7461 1653 3733 2493 Face 7462 1653 3866 3733 Face 7463 1924 3734 3514 Face 7464 1924 1362 3734 Face 7465 646 3735 1710 Face 7466 646 3942 3735 Face 7467 335 3736 2385 Face 7468 335 3814 3736 Face 7469 1915 3737 2963 Face 7470 1915 3778 3737 Face 7471 840 3738 3957 Face 7472 840 3532 3738 Face 7473 491 5441 3334 Face 7474 491 3863 3739 Face 7475 3334 3740 691 Face 7476 3334 5441 5200 Face 7477 2687 3741 3453 Face 7478 2687 1265 3741 Face 7479 541 3742 1267 Face 7480 541 5500 3742 Face 7481 2036 3743 3524 Face 7482 2036 3687 3743 Face 7483 2497 3744 3991 Face 7484 2497 3508 3744 Face 7485 2813 3745 3656 Face 7486 2813 2731 3745 Face 7487 444 3746 3855 Face 7488 444 1004 3746 Face 7489 2798 3747 3660 Face 7490 2798 2180 3747 Face 7491 2024 3748 1065 Face 7492 2024 1738 3748 Face 7493 1315 3749 936 Face 7494 1315 3334 3749 Face 7495 794 3750 3763 Face 7496 794 1132 3750 Face 7497 1213 3751 2681 Face 7498 1213 3539 3751 Face 7499 2645 3752 3506 Face 7500 2645 464 3752 Face 7501 719 3753 4383 Face 7502 719 1185 3753 Face 7503 769 3754 1823 Face 7504 769 3755 3754 Face 7505 1568 3755 769 Face 7506 1568 3889 3755 Face 7507 1264 3756 2041 Face 7508 5239 5480 5240 Face 7509 2192 3757 3142 Face 7510 2192 3747 3757 Face 7511 2001 3758 722 Face 7512 2001 99 3758 Face 7513 2226 3759 1085 Face 7514 2226 992 3759 Face 7515 2871 3760 2700 Face 7516 2871 3978 3760 Face 7517 1525 3761 789 Face 7518 1525 4218 3761 Face 7519 2733 3762 3980 Face 7520 2733 3484 3762 Face 7521 95 3763 3764 Face 7522 95 794 3763 Face 7523 1037 3764 3877 Face 7524 1037 95 3764 Face 7525 2797 3765 2798 Face 7526 2797 3686 3765 Face 7527 2026 3766 1268 Face 7528 2026 4326 3766 Face 7529 2705 4326 2026 Face 7530 2705 3768 4326 Face 7531 598 3768 2705 Face 7532 598 3769 3768 Face 7533 3252 3769 598 Face 7534 3252 3770 3769 Face 7535 1025 3770 3252 Face 7536 1025 3771 3770 Face 7537 3638 3771 1025 Face 7538 3638 3772 3771 Face 7539 1392 3772 3638 Face 7540 1392 3774 3772 Face 7541 3194 3773 97 Face 7542 3194 1316 3773 Face 7543 2827 3774 1392 Face 7544 2827 3775 3774 Face 7545 3518 3775 2827 Face 7546 3518 3776 3775 Face 7547 97 3776 3518 Face 7548 97 3773 3776 Face 7549 2932 3777 3792 Face 7550 2932 97 3777 Face 7551 3445 3778 3446 Face 7552 3445 3737 3778 Face 7553 3446 3779 4291 Face 7554 3446 3778 3779 Face 7555 1527 3780 1209 Face 7556 1527 3939 3780 Face 7557 2872 3781 3482 Face 7558 2872 3692 3781 Face 7559 2506 3782 4247 Face 7560 2506 1627 3782 Face 7561 2308 3783 3784 Face 7562 2308 4248 3783 Face 7563 1925 3784 3783 Face 7564 1925 2891 3784 Face 7565 670 3785 4151 Face 7566 670 1692 3785 Face 7567 1692 3786 3785 Face 7568 1692 385 3786 Face 7569 4550 4749 4539 Face 7570 4550 4748 4749 Face 7571 2947 3788 3919 Face 7572 2947 3479 3788 Face 7573 3279 3789 3918 Face 7574 3279 2843 3789 Face 7575 2843 3790 3789 Face 7576 2843 2438 3790 Face 7577 2438 3791 3790 Face 7578 2438 3945 3791 Face 7579 1023 3792 3777 Face 7580 5543 6372 3792 Face 7581 3483 3793 1307 Face 7582 3483 2480 3793 Face 7583 5858 6277 5816 Face 7584 775 5431 5290 Face 7585 6202 6211 6245 Face 7586 307 6370 5510 Face 7587 5919 5743 5921 Face 7588 5990 5746 5995 Face 7589 5223 3797 5937 Face 7590 5223 1552 3797 Face 7591 1552 3798 3797 Face 7592 1552 485 3798 Face 7593 485 3799 3798 Face 7594 485 5362 3799 Face 7595 1205 3800 1094 Face 7596 1205 2538 3800 Face 7597 1739 3801 2929 Face 7598 1739 5192 6418 Face 7599 120 5192 1739 Face 7600 120 2971 3802 Face 7601 915 3803 2289 Face 7602 915 3660 3803 Face 7603 3276 3804 780 Face 7604 3276 5759 3804 Face 7605 66 3805 2501 Face 7606 66 5281 6314 Face 7607 1161 3806 5310 Face 7608 1161 1160 3806 Face 7609 564 3807 147 Face 7610 564 3381 3807 Face 7611 2772 3883 3553 Face 7612 2772 2383 3883 Face 7613 4180 4888 4179 Face 7614 4180 4889 4888 Face 7615 2169 3810 3809 Face 7616 2169 2170 3810 Face 7617 2170 3811 3810 Face 7618 2170 1640 3811 Face 7619 1640 3812 3811 Face 7620 1640 363 3812 Face 7621 2126 3813 1640 Face 7622 2126 5307 3813 Face 7623 2367 3814 335 Face 7624 2367 3815 3814 Face 7625 2464 3815 3878 Face 7626 2464 3814 3815 Face 7627 762 3816 3817 Face 7628 762 1542 3816 Face 7629 1154 3817 3818 Face 7630 1154 762 3817 Face 7631 1644 3818 3867 Face 7632 1644 1154 3818 Face 7633 2052 3819 2722 Face 7634 2052 4391 3819 Face 7635 3078 4416 3554 Face 7636 3078 3092 4416 Face 7637 3381 3821 3807 Face 7638 3381 3824 3821 Face 7639 5088 3822 1006 Face 7640 5270 5261 5369 Face 7641 1006 3823 503 Face 7642 1006 3822 3823 Face 7643 3382 3824 3849 Face 7644 3382 3821 3824 Face 7645 503 4530 3824 Face 7646 503 3823 3825 Face 7647 2986 3826 2612 Face 7648 2986 4000 3826 Face 7649 3356 3827 2874 Face 7650 3356 3460 3827 Face 7651 3460 3828 3827 Face 7652 3460 3461 3828 Face 7653 3461 3829 3845 Face 7654 3461 3460 3829 Face 7655 3565 3830 3831 Face 7656 3565 914 3830 Face 7657 3247 3831 3832 Face 7658 3247 3565 3831 Face 7659 3406 3832 3833 Face 7660 3406 3247 3832 Face 7661 1422 3833 3834 Face 7662 1422 3406 3833 Face 7663 1418 3834 3835 Face 7664 1418 1422 3834 Face 7665 2097 3835 3836 Face 7666 2097 1418 3835 Face 7667 1276 3836 3837 Face 7668 1276 2097 3836 Face 7669 3027 3837 3838 Face 7670 3027 1276 3837 Face 7671 1978 3838 3839 Face 7672 1978 3027 3838 Face 7673 1122 3839 3840 Face 7674 1122 1978 3839 Face 7675 3057 3840 3841 Face 7676 3057 1122 3840 Face 7677 1830 3841 3842 Face 7678 1830 3057 3841 Face 7679 2450 3842 3843 Face 7680 2450 1830 3842 Face 7681 2746 3843 3844 Face 7682 2746 2450 3843 Face 7683 1836 3844 3846 Face 7684 1836 2746 3844 Face 7685 3395 3845 3407 Face 7686 3395 3461 3845 Face 7687 3392 3846 3848 Face 7688 3392 1836 3846 Face 7689 3407 3847 3846 Face 7690 3407 3845 3847 Face 7691 3463 3848 3847 Face 7692 3463 3869 3848 Face 7693 4152 3849 4530 Face 7694 4152 3463 3849 Face 7695 2748 3850 3391 Face 7696 2748 3888 3850 Face 7697 1675 3851 4237 Face 7698 1675 1676 3851 Face 7699 5959 5949 5962 Face 7700 1313 3123 3852 Face 7701 1545 3853 3169 Face 7702 1545 3041 3853 Face 7703 269 3854 1516 Face 7704 269 3894 3854 Face 7705 903 3855 3857 Face 7706 903 444 3855 Face 7707 1916 3856 2037 Face 7708 1916 1168 3856 Face 7709 1664 3857 3928 Face 7710 1664 903 3857 Face 7711 2056 3858 1523 Face 7712 2056 1566 3858 Face 7713 1523 3859 4313 Face 7714 1523 3858 3859 Face 7715 4758 4666 4757 Face 7716 4758 4665 4666 Face 7717 1022 3861 1042 Face 7718 1022 2646 3861 Face 7719 2990 3862 2991 Face 7720 2990 3680 3862 Face 7721 1314 3863 3708 Face 7722 1314 5426 3863 Face 7723 3668 3864 3692 Face 7724 3668 3669 3864 Face 7725 3692 3865 3781 Face 7726 3692 3864 3865 Face 7727 1652 3866 3694 Face 7728 1652 3733 3866 Face 7729 3359 3867 1959 Face 7730 3359 1644 3867 Face 7731 1959 3868 3946 Face 7732 1959 3867 3868 Face 7733 4153 3869 4152 Face 7734 4153 3870 3869 Face 7735 4154 3870 4153 Face 7736 4154 3871 3870 Face 7737 4155 3871 4154 Face 7738 4155 3872 3871 Face 7739 4290 3872 4155 Face 7740 4290 4108 3872 Face 7741 284 3873 1942 Face 7742 284 1823 3873 Face 7743 2682 3874 926 Face 7744 2682 3704 3874 Face 7745 2606 3875 3525 Face 7746 2606 3996 3875 Face 7747 2114 3876 3443 Face 7748 2114 4293 3876 Face 7749 621 3877 4007 Face 7750 621 1037 3877 Face 7751 3879 3878 2965 Face 7752 3879 2464 3878 Face 7753 2865 3879 2812 Face 7754 2865 2464 3879 Face 7755 3712 3880 3251 Face 7756 3712 4059 3880 Face 7757 1992 3881 894 Face 7758 1992 3882 3881 Face 7759 589 3882 1992 Face 7760 589 3959 3882 Face 7761 3808 3883 3893 Face 7762 3808 3553 3883 Face 7763 3524 3884 3678 Face 7764 3524 3743 3884 Face 7765 91 3885 4068 Face 7766 91 1631 3885 Face 7767 1531 3886 4037 Face 7768 1531 3664 3886 Face 7769 1837 3887 2633 Face 7770 5815 866 3887 Face 7771 2470 3888 6420 Face 7772 2470 3850 3888 Face 7773 79 3889 1568 Face 7774 79 3289 3889 Face 7775 423 3890 1017 Face 7776 423 1842 3890 Face 7777 2207 3891 3892 Face 7778 2207 3890 3891 Face 7779 3289 3892 3889 Face 7780 3289 2207 3892 Face 7781 2917 3893 3883 Face 7782 2917 2360 3893 Face 7783 2484 3894 269 Face 7784 2484 3895 3894 Face 7785 940 3895 2484 Face 7786 940 3896 3895 Face 7787 1991 3896 940 Face 7788 1991 3897 3896 Face 7789 679 3897 1991 Face 7790 679 3898 3897 Face 7791 2326 3898 679 Face 7792 2326 3899 3898 Face 7793 78 3899 2326 Face 7794 78 3900 3899 Face 7795 2315 3900 78 Face 7796 2315 3901 3900 Face 7797 927 3901 2315 Face 7798 927 3902 3901 Face 7799 2295 3902 927 Face 7800 2295 3903 3902 Face 7801 420 3903 2295 Face 7802 420 3904 3903 Face 7803 2313 3904 420 Face 7804 2313 3905 3904 Face 7805 877 3905 2313 Face 7806 877 3906 3905 Face 7807 2193 3906 877 Face 7808 2193 3907 3906 Face 7809 125 3907 2193 Face 7810 125 3908 3907 Face 7811 1196 3908 125 Face 7812 1196 3909 3908 Face 7813 2300 3909 1196 Face 7814 2300 3546 3909 Face 7815 3546 3910 3909 Face 7816 3546 1509 3910 Face 7817 1509 3911 3910 Face 7818 1509 2949 3911 Face 7819 2949 3912 3911 Face 7820 2949 3934 3912 Face 7821 3935 3934 2949 Face 7822 2016 2703 3913 Face 7823 2703 3914 3913 Face 7824 2703 3915 3914 Face 7825 3474 3915 2206 Face 7826 3474 3914 3915 Face 7827 2206 3916 1930 Face 7828 2206 3915 3916 Face 7829 3479 3917 4230 Face 7830 3479 2947 3917 Face 7831 4353 3918 4352 Face 7832 4353 3279 3918 Face 7833 3279 3919 3280 Face 7834 3279 2947 3919 Face 7835 1501 4429 844 Face 7836 1501 231 3920 Face 7837 142 3921 4897 Face 7838 142 304 3921 Face 7839 3307 3922 3697 Face 7840 3307 2828 3922 Face 7841 4492 4330 4234 Face 7842 4492 4472 4330 Face 7843 2940 3924 3923 Face 7844 2940 3066 3924 Face 7845 3066 3925 3942 Face 7846 3066 2940 3925 Face 7847 1744 3926 4047 Face 7848 1744 557 3926 Face 7849 2616 3927 2724 Face 7850 2616 3678 3927 Face 7851 282 3928 3956 Face 7852 282 1664 3928 Face 7853 1954 3929 586 Face 7854 1954 3930 3929 Face 7855 2869 3930 1954 Face 7856 2869 3368 3932 Face 7857 3298 3931 3932 Face 7858 3298 1197 3931 Face 7859 3930 3932 3936 Face 7860 3930 2869 3932 Face 7861 2780 3933 3934 Face 7862 2780 2015 3933 Face 7863 3913 3934 3935 Face 7864 3913 2780 3934 Face 7865 2016 3935 3936 Face 7866 2016 3913 3935 Face 7867 3931 3936 3932 Face 7868 3931 2016 3936 Face 7869 1197 3937 3931 Face 7870 1197 3938 3937 Face 7871 1800 3938 1801 Face 7872 1800 3937 3938 Face 7873 3701 3939 4063 Face 7874 3701 3780 3939 Face 7875 75 3940 429 Face 7876 75 3941 3940 Face 7877 2471 3941 4771 Face 7878 4871 3940 3941 Face 7879 3067 3942 3925 Face 7880 3067 3735 3942 Face 7881 4218 3943 3761 Face 7882 4218 4219 3943 Face 7883 1525 3944 1524 Face 7884 1525 2918 3944 Face 7885 3656 3945 2813 Face 7886 3656 3791 3945 Face 7887 2965 3946 3879 Face 7888 2965 1959 3946 Face 7889 727 3947 1567 Face 7890 727 1725 3947 Face 7891 2925 3948 2924 Face 7892 2925 3947 3948 Face 7893 1159 3949 2441 Face 7894 1159 5213 3949 Face 7895 2478 3950 3951 Face 7896 2478 1535 3950 Face 7897 692 3951 3952 Face 7898 692 2478 3951 Face 7899 3133 3952 4307 Face 7900 3133 692 3952 Face 7901 1654 4307 4124 Face 7902 1654 3133 4307 Face 7903 3177 5640 5187 Face 7904 3177 1879 5640 Face 7905 1879 3955 3954 Face 7906 1879 2598 3955 Face 7907 2166 3956 884 Face 7908 2166 282 3956 Face 7909 2042 3957 3958 Face 7910 2042 840 3957 Face 7911 1212 4390 509 Face 7912 1212 2042 3958 Face 7913 2204 3959 589 Face 7914 2204 4092 3959 Face 7915 1624 3960 3718 Face 7916 1624 2512 3960 Face 7917 2512 3961 2838 Face 7918 2512 1624 3961 Face 7919 2838 3962 3963 Face 7920 2838 3961 3962 Face 7921 2837 3963 3964 Face 7922 2837 2838 3963 Face 7923 2836 3964 2835 Face 7924 2836 2837 3964 Face 7925 2835 3965 2836 Face 7926 2835 2834 3965 Face 7927 2834 4162 3965 Face 7928 2834 2833 4162 Face 7929 2833 4226 4162 Face 7930 2833 2832 4226 Face 7931 4294 4282 3967 Face 7932 4294 4232 4282 Face 7933 265 3969 11 Face 7934 265 4614 3969 Face 7935 2543 3970 311 Face 7936 2543 4231 3970 Face 7937 21 3971 5478 Face 7938 21 417 3971 Face 7939 1514 3972 25 Face 7940 1514 719 4383 Face 7941 1166 3973 4072 Face 7942 1166 760 3973 Face 7943 760 4075 3973 Face 7944 760 1685 4075 Face 7945 1952 3975 865 Face 7946 1952 3976 3975 Face 7947 537 3976 1952 Face 7948 537 3977 3976 Face 7949 2302 3977 537 Face 7950 2302 4017 3977 Face 7951 3482 3978 2871 Face 7952 3482 3979 3978 Face 7953 3781 3979 3482 Face 7954 3781 3865 3979 Face 7955 3761 3980 3762 Face 7956 3761 3943 3980 Face 7957 3169 3981 3170 Face 7958 3169 3040 3981 Face 7959 2900 3982 3713 Face 7960 2900 3659 3982 Face 7961 2831 3983 4233 Face 7962 2831 4193 3983 Face 7963 4387 4233 4386 Face 7964 4387 2831 4233 Face 7965 4797 3985 4947 Face 7966 4797 4798 3985 Face 7967 3097 4206 4958 Face 7968 4961 4725 5162 Face 7969 4798 4949 3985 Face 7970 4798 4945 4949 Face 7971 1058 4630 763 Face 7972 1058 1293 4630 Face 7973 1293 3989 3988 Face 7974 1293 2985 3989 Face 7975 2985 3990 3496 Face 7976 2985 1293 3990 Face 7977 2980 3991 2496 Face 7978 2980 2299 3991 Face 7979 4174 3992 4009 Face 7980 4174 3993 3992 Face 7981 1053 3993 4174 Face 7982 1053 132 3993 Face 7983 4418 3994 4388 Face 7984 4418 4006 3994 Face 7985 183 3995 2288 Face 7986 183 3300 3995 Face 7987 1239 3996 5130 Face 7988 1239 3875 3996 Face 7989 46 4351 4003 Face 7990 46 1567 4351 Face 7991 3667 3998 3997 Face 7992 3667 2688 3998 Face 7993 2688 3999 2435 Face 7994 2688 3667 3999 Face 7995 3671 4000 2986 Face 7996 3671 4001 4000 Face 7997 2749 4001 2864 Face 7998 2749 4000 4001 Face 7999 3081 4002 3519 Face 8000 3081 3078 4002 Face 8001 1036 4003 4004 Face 8002 1036 46 4003 Face 8003 1560 4004 4005 Face 8004 1560 1036 4004 Face 8005 557 4005 3926 Face 8006 557 1560 4005 Face 8007 4437 4006 4418 Face 8008 4437 4145 4006 Face 8009 205 4007 4108 Face 8010 205 621 4007 Face 8011 2816 4008 2815 Face 8012 2816 5065 4008 Face 8013 4175 4009 4010 Face 8014 4175 4174 4009 Face 8015 4176 4010 4011 Face 8016 4176 4175 4010 Face 8017 4177 4011 4012 Face 8018 4177 4176 4011 Face 8019 4178 4012 4013 Face 8020 4178 4177 4012 Face 8021 4236 4013 4484 Face 8022 4236 4178 4013 Face 8023 3678 4014 3927 Face 8024 3678 3884 4014 Face 8025 1397 4015 1192 Face 8026 1397 1329 4015 Face 8027 2594 4016 3514 Face 8028 2594 3512 4016 Face 8029 1334 4017 2302 Face 8030 1334 4033 4017 Face 8031 1759 4018 113 Face 8032 1759 3497 4018 Face 8033 3497 4019 4018 Face 8034 3497 3498 4019 Face 8035 3498 4020 4021 Face 8036 3498 3497 4020 Face 8037 3499 4021 4020 Face 8038 3499 4022 4021 Face 8039 3500 4022 3499 Face 8040 3500 4023 4022 Face 8041 3501 4023 3500 Face 8042 3501 4024 4023 Face 8043 3502 4024 3501 Face 8044 3502 3503 4024 Face 8045 3503 4025 3504 Face 8046 3503 3502 4025 Face 8047 3504 4026 4027 Face 8048 3504 4025 4026 Face 8049 3533 4027 4026 Face 8050 3533 3534 4027 Face 8051 3534 4028 4029 Face 8052 3534 3533 4028 Face 8053 2260 4029 2261 Face 8054 2260 3534 4029 Face 8055 2261 4030 4031 Face 8056 2261 4029 4030 Face 8057 2915 4031 4032 Face 8058 2915 2261 4031 Face 8059 2914 4032 4031 Face 8060 2914 2436 4032 Face 8061 88 4033 1334 Face 8062 88 4036 4033 Face 8063 2436 4034 3526 Face 8064 2436 2914 4034 Face 8065 3526 4035 2436 Face 8066 3526 4036 4035 Face 8067 2327 4036 88 Face 8068 2327 4035 4036 Face 8069 2844 4037 3886 Face 8070 2844 4038 4037 Face 8071 2845 4038 4039 Face 8072 2845 4037 4038 Face 8073 2846 4039 4038 Face 8074 2846 4040 4039 Face 8075 2520 4040 2848 Face 8076 2520 4039 4040 Face 8077 4377 4251 4376 Face 8078 4377 4188 4251 Face 8079 2849 4042 2850 Face 8080 2849 4187 4042 Face 8081 4249 4375 4250 Face 8082 4249 4374 4375 Face 8083 4239 4689 4688 Face 8084 4239 1627 4689 Face 8085 4187 4045 4044 Face 8086 4187 2849 4045 Face 8087 3538 4046 3703 Face 8088 3538 3751 4046 Face 8089 152 4047 4345 Face 8090 152 1744 4047 Face 8091 3077 4048 3076 Face 8092 3077 3093 4048 Face 8093 3076 4049 3075 Face 8094 3076 4048 4049 Face 8095 3075 4050 3074 Face 8096 3075 4049 4050 Face 8097 3074 4051 3073 Face 8098 3074 4050 4051 Face 8099 3073 4052 4053 Face 8100 3073 4051 4052 Face 8101 3072 4053 4052 Face 8102 3072 3071 4053 Face 8103 3071 4054 3070 Face 8104 3071 3072 4054 Face 8105 3070 4055 3069 Face 8106 3070 4054 4055 Face 8107 3069 4056 3068 Face 8108 3069 4055 4056 Face 8109 3068 4057 2873 Face 8110 3068 4056 4057 Face 8111 2873 4058 4062 Face 8112 2873 4057 4058 Face 8113 3192 4059 4067 Face 8114 3192 3880 4059 Face 8115 962 4060 4485 Face 8116 962 2071 4060 Face 8117 2108 4485 4065 Face 8118 2108 962 4485 Face 8119 3735 4062 4058 Face 8120 3735 3067 4062 Face 8121 3682 4063 3939 Face 8122 3682 4529 4063 Face 8123 4785 5017 4382 Face 8124 4537 4432 4913 Face 8125 1207 4065 4536 Face 8126 1207 2108 4065 Face 8127 1320 4066 4173 Face 8128 1320 2492 4066 Face 8129 3759 4067 4059 Face 8130 3759 992 4067 Face 8131 3328 4068 3885 Face 8132 3328 4069 4068 Face 8133 3689 4069 3860 Face 8134 3689 4068 4069 Face 8135 3785 4070 3472 Face 8136 3785 3786 4070 Face 8137 3786 4071 4070 Face 8138 3786 4072 4071 Face 8139 3787 4072 3973 Face 8140 3787 4071 4072 Face 8141 3973 4073 3787 Face 8142 3973 4075 4073 Face 8143 1685 4074 4075 Face 8144 1685 207 4074 Face 8145 3974 4075 4074 Face 8146 3974 4073 4075 Face 8147 2067 4076 4077 Face 8148 2067 3974 4076 Face 8149 2068 4077 4076 Face 8150 2068 4079 4077 Face 8151 311 5648 2781 Face 8152 311 5646 5648 Face 8153 3970 4079 311 Face 8154 3970 4077 4079 Face 8155 4212 4080 4211 Face 8156 4212 4081 4080 Face 8157 4213 4081 4212 Face 8158 4213 4082 4081 Face 8159 4214 4082 4213 Face 8160 4214 4083 4082 Face 8161 4215 4083 4214 Face 8162 4215 4084 4083 Face 8163 4257 4084 4215 Face 8164 4257 4085 4084 Face 8165 4258 4085 4257 Face 8166 4258 4086 4085 Face 8167 4259 4086 4258 Face 8168 4259 4164 4086 Face 8169 1168 4087 3856 Face 8170 1168 3690 4087 Face 8171 4253 4088 4089 Face 8172 4253 4252 4088 Face 8173 2883 4254 2531 Face 8174 2883 2850 4254 Face 8175 4255 4090 2529 Face 8176 4255 4089 4090 Face 8177 2529 4473 4329 Face 8178 2529 4090 4473 Face 8179 291 4092 2204 Face 8180 291 4093 4092 Face 8181 3152 4093 4094 Face 8182 3152 4092 4093 Face 8183 3153 4094 4093 Face 8184 3153 3154 4094 Face 8185 3154 4095 4096 Face 8186 3154 3153 4095 Face 8187 3155 4096 4095 Face 8188 3155 3156 4096 Face 8189 3156 4097 3157 Face 8190 3156 3155 4097 Face 8191 3157 4098 3158 Face 8192 3157 4097 4098 Face 8193 3158 4099 3159 Face 8194 3158 4098 4099 Face 8195 3159 4100 3160 Face 8196 3159 4099 4100 Face 8197 3160 4101 4131 Face 8198 3160 4100 4101 Face 8199 1541 4102 625 Face 8200 1541 2356 4102 Face 8201 2356 4103 4102 Face 8202 2356 2357 4103 Face 8203 2357 4104 4103 Face 8204 2357 4105 4104 Face 8205 2768 4105 2769 Face 8206 2768 4104 4105 Face 8207 2769 4106 2770 Face 8208 2769 4105 4106 Face 8209 2770 4107 1283 Face 8210 2770 4106 4107 Face 8211 991 4108 4290 Face 8212 991 205 4108 Face 8213 399 4109 4110 Face 8214 399 1381 4109 Face 8215 1808 4110 4111 Face 8216 1808 399 4110 Face 8217 1001 4111 4112 Face 8218 1001 1808 4111 Face 8219 667 4112 4113 Face 8220 667 1001 4112 Face 8221 1889 4113 4114 Face 8222 1889 667 4113 Face 8223 70 4114 4115 Face 8224 70 1889 4114 Face 8225 1667 4115 4116 Face 8226 1667 70 4115 Face 8227 900 4116 4117 Face 8228 900 1667 4116 Face 8229 921 4117 4118 Face 8230 921 900 4117 Face 8231 341 4118 4119 Face 8232 341 921 4118 Face 8233 2137 4119 4120 Face 8234 2137 341 4119 Face 8235 441 4120 4121 Face 8236 441 2137 4120 Face 8237 2138 4121 4122 Face 8238 2138 441 4121 Face 8239 643 4122 4123 Face 8240 643 2138 4122 Face 8241 367 4123 4300 Face 8242 367 643 4123 Face 8243 2493 4124 4337 Face 8244 2493 1654 4124 Face 8245 2849 4125 4045 Face 8246 2849 4126 4125 Face 8247 2850 4126 2849 Face 8248 2850 2883 4126 Face 8249 2883 4127 4126 Face 8250 2883 2882 4127 Face 8251 2882 4367 4127 Face 8252 2882 4366 4367 Face 8253 2532 4355 4128 Face 8254 2532 4421 4355 Face 8255 1557 4130 3554 Face 8256 1557 4879 4130 Face 8257 3475 4131 4101 Face 8258 3475 3476 4131 Face 8259 3476 4132 3688 Face 8260 3476 3475 4132 Face 8261 2492 4133 4066 Face 8262 2492 3326 4133 Face 8263 3326 4134 4133 Face 8264 3326 1321 4134 Face 8265 1321 4135 4134 Face 8266 1321 3195 4135 Face 8267 4441 4136 4440 Face 8268 4441 4137 4136 Face 8269 1322 4137 3195 Face 8270 1322 4138 4137 Face 8271 3442 4138 1322 Face 8272 3442 4139 4138 Face 8273 1394 4139 3442 Face 8274 1394 4140 4139 Face 8275 2826 4140 1394 Face 8276 2826 4141 4140 Face 8277 1317 4141 2826 Face 8278 1317 4142 4141 Face 8279 3452 4142 1317 Face 8280 3452 4143 4142 Face 8281 2706 4143 3452 Face 8282 2706 4242 4143 Face 8283 4325 4144 4146 Face 8284 4325 4324 4144 Face 8285 4585 4145 4437 Face 8286 4585 4146 4145 Face 8287 4667 4146 4585 Face 8288 4667 4325 4146 Face 8289 4424 4147 4203 Face 8290 4424 4148 4147 Face 8291 2503 4148 4149 Face 8292 2503 4147 4148 Face 8293 4664 4149 4148 Face 8294 4664 4634 4149 Face 8295 4434 4150 2505 Face 8296 4434 4208 4150 Face 8297 1631 4151 3885 Face 8298 1631 670 4151 Face 8299 4531 4152 4530 Face 8300 4531 4153 4152 Face 8301 4532 4153 4531 Face 8302 4532 4154 4153 Face 8303 4533 4154 4532 Face 8304 4533 4155 4154 Face 8305 4534 4155 4533 Face 8306 4534 4290 4155 Face 8307 2519 4156 1524 Face 8308 2519 4157 4156 Face 8309 1794 4157 2519 Face 8310 1794 4158 4157 Face 8311 2513 4158 1794 Face 8312 2513 4159 4158 Face 8313 2514 4222 4160 Face 8314 2514 4221 4222 Face 8315 2523 4160 4224 Face 8316 2523 2514 4160 Face 8317 3965 4161 4223 Face 8318 3965 4162 4161 Face 8319 3966 4162 4226 Face 8320 3966 4161 4162 Face 8321 3885 4163 3328 Face 8322 3885 4151 4163 Face 8323 4260 4164 4259 Face 8324 4260 4165 4164 Face 8325 4402 4165 4260 Face 8326 4402 4166 4165 Face 8327 4403 4166 4402 Face 8328 4403 4167 4166 Face 8329 4458 4167 4403 Face 8330 4458 4170 4167 Face 8331 3967 4281 4225 Face 8332 3967 4282 4281 Face 8333 3968 4193 4168 Face 8334 3968 3983 4193 Face 8335 4478 4170 4458 Face 8336 4478 4477 4170 Face 8337 738 4171 220 Face 8338 738 4172 4171 Face 8339 472 4172 738 Face 8340 472 4210 4172 Face 8341 3494 4173 4306 Face 8342 3494 1320 4173 Face 8343 2054 4174 4175 Face 8344 2054 1053 4174 Face 8345 706 4175 4176 Face 8346 706 2054 4175 Face 8347 1791 4176 4177 Face 8348 1791 706 4176 Face 8349 1649 4177 4178 Face 8350 1649 1791 4177 Face 8351 361 4178 4236 Face 8352 361 1649 4178 Face 8353 1468 4179 225 Face 8354 1468 4180 4179 Face 8355 676 4180 1468 Face 8356 676 4181 4180 Face 8357 1486 4181 676 Face 8358 1486 4182 4181 Face 8359 37 4182 1486 Face 8360 37 4183 4182 Face 8361 344 4183 37 Face 8362 344 4354 4183 Face 8363 5172 4374 4249 Face 8364 5172 2308 4374 Face 8365 1627 4185 4689 Face 8366 1627 2506 4185 Face 8367 4044 4186 4187 Face 8368 4044 5003 4186 Face 8369 4041 4187 4186 Face 8370 4041 4042 4187 Face 8371 4252 4188 4088 Face 8372 4252 4251 4188 Face 8373 4088 4189 4380 Face 8374 4088 4188 4189 Face 8375 2516 4190 4379 Face 8376 2516 4191 4190 Face 8377 2517 4191 2516 Face 8378 2517 4192 4191 Face 8379 4091 4192 4169 Face 8380 4091 4191 4192 Face 8381 4169 4193 2831 Face 8382 4169 4192 4193 Face 8383 2831 4194 4169 Face 8384 2831 4387 4194 Face 8385 4615 4753 4614 Face 8386 4615 4647 4753 Face 8387 4238 4196 3174 Face 8388 4238 1626 4196 Face 8389 1626 4197 4196 Face 8390 1626 2886 4197 Face 8391 4393 4198 4392 Face 8392 4393 4199 4198 Face 8393 3111 4342 4200 Face 8394 3111 4341 4342 Face 8395 3219 4200 4344 Face 8396 3219 3111 4200 Face 8397 4288 4201 4343 Face 8398 4288 4202 4201 Face 8399 2525 4202 4288 Face 8400 2525 4203 4202 Face 8401 4422 4203 2525 Face 8402 4422 4424 4203 Face 8403 2530 4204 4423 Face 8404 2530 4129 4204 Face 8405 3096 4460 4936 Face 8406 4671 4461 4670 Face 8407 4954 5162 4670 Face 8408 3986 4958 4206 Face 8409 4774 4961 5162 Face 8410 4774 2642 4961 Face 8411 4584 4208 4434 Face 8412 4584 4432 4208 Face 8413 2877 4209 3987 Face 8414 2877 4398 4209 Face 8415 1596 4210 472 Face 8416 1596 4211 4210 Face 8417 2305 4211 1596 Face 8418 2305 4212 4211 Face 8419 632 4212 2305 Face 8420 632 4213 4212 Face 8421 1782 4213 632 Face 8422 1782 4214 4213 Face 8423 1142 4214 1782 Face 8424 1142 4215 4214 Face 8425 206 4215 1142 Face 8426 206 4257 4215 Face 8427 1057 4216 49 Face 8428 1057 4217 4216 Face 8429 349 4217 1057 Face 8430 349 1286 4217 Face 8431 1524 4218 1525 Face 8432 1524 4156 4218 Face 8433 4156 4219 4218 Face 8434 4156 4220 4219 Face 8435 4157 4220 4156 Face 8436 4157 4221 4220 Face 8437 4158 4221 4157 Face 8438 4158 4222 4221 Face 8439 4159 4222 4158 Face 8440 4159 4223 4222 Face 8441 4160 4223 4161 Face 8442 4160 4222 4223 Face 8443 4161 4224 4160 Face 8444 4161 3966 4224 Face 8445 3966 4225 4224 Face 8446 3966 3967 4225 Face 8447 3967 4226 4294 Face 8448 3967 3966 4226 Face 8449 650 4227 24 Face 8450 650 1207 4536 Face 8451 4398 4228 4209 Face 8452 4398 4229 4228 Face 8453 2528 4229 2880 Face 8454 2528 4228 4229 Face 8455 2872 4230 3998 Face 8456 2872 3479 4230 Face 8457 3969 4231 2543 Face 8458 3969 4752 4231 Face 8459 4283 4232 4284 Face 8460 4283 4282 4232 Face 8461 3984 4233 3983 Face 8462 3984 2643 4233 Face 8463 4548 4234 4235 Face 8464 4548 4492 4234 Face 8465 4617 4235 4245 Face 8466 4617 4548 4235 Face 8467 2071 4236 4060 Face 8468 2071 361 4236 Face 8469 3782 4237 3851 Face 8470 3782 2507 4237 Face 8471 2507 4238 4237 Face 8472 2507 2508 4238 Face 8473 2508 4239 4240 Face 8474 2508 2507 4239 Face 8475 1793 4240 2885 Face 8476 1793 2508 4240 Face 8477 2885 4241 1793 Face 8478 2885 4395 4241 Face 8479 1395 4242 2706 Face 8480 1395 4243 4242 Face 8481 3768 4243 4326 Face 8482 3768 4242 4243 Face 8483 4360 4244 3551 Face 8484 4360 4608 4244 Face 8485 4618 4245 4305 Face 8486 4618 4617 4245 Face 8487 2527 4246 4256 Face 8488 2527 4328 4246 Face 8489 3783 4247 1925 Face 8490 3783 2506 4247 Face 8491 2506 4248 4185 Face 8492 2506 3783 4248 Face 8493 5003 4249 4186 Face 8494 5003 5172 4249 Face 8495 4186 4250 4041 Face 8496 4186 4249 4250 Face 8497 4041 4251 4252 Face 8498 4041 4250 4251 Face 8499 4042 4252 4253 Face 8500 4042 4041 4252 Face 8501 2850 4253 4254 Face 8502 2850 4042 4253 Face 8503 4089 4254 4253 Face 8504 4089 4255 4254 Face 8505 2531 4255 4256 Face 8506 2531 4254 4255 Face 8507 2529 4256 4255 Face 8508 2529 2527 4256 Face 8509 1786 4257 206 Face 8510 1786 4258 4257 Face 8511 996 4258 1786 Face 8512 996 4259 4258 Face 8513 380 4259 996 Face 8514 380 4260 4259 Face 8515 1672 4260 380 Face 8516 1672 4402 4260 Face 8517 1105 4261 1943 Face 8518 1105 2225 4261 Face 8519 2004 4262 2140 Face 8520 2004 4261 4262 Face 8521 1113 4263 2434 Face 8522 1113 4264 4263 Face 8523 112 4264 1113 Face 8524 112 4265 4264 Face 8525 2189 4265 112 Face 8526 2189 4266 4265 Face 8527 1049 4266 2189 Face 8528 1049 4267 4266 Face 8529 1673 4267 1049 Face 8530 1673 4268 4267 Face 8531 588 4268 1673 Face 8532 588 4269 4268 Face 8533 995 4269 588 Face 8534 995 4270 4269 Face 8535 1141 4270 995 Face 8536 1141 4271 4270 Face 8537 1785 4271 1141 Face 8538 1785 4272 4271 Face 8539 381 4272 1785 Face 8540 381 4347 4272 Face 8541 3943 4273 3980 Face 8542 3943 4274 4273 Face 8543 4219 4274 3943 Face 8544 4219 2847 4274 Face 8545 2847 4275 4274 Face 8546 2847 2509 4275 Face 8547 2509 4276 4275 Face 8548 2509 2522 4276 Face 8549 2522 4277 4278 Face 8550 2522 2509 4277 Face 8551 2515 4278 4279 Face 8552 2515 2522 4278 Face 8553 2524 4279 4278 Face 8554 2524 4280 4279 Face 8555 4225 4280 2524 Face 8556 4225 4281 4280 Face 8557 4168 4281 3968 Face 8558 4168 4280 4281 Face 8559 3968 4282 4283 Face 8560 3968 4281 4282 Face 8561 3983 4283 3984 Face 8562 3983 3968 4283 Face 8563 3984 4284 4297 Face 8564 3984 4283 4284 Face 8565 3720 4285 4296 Face 8566 3720 3719 4285 Face 8567 3719 4286 4285 Face 8568 3719 4726 4286 Face 8569 3110 4287 3220 Face 8570 3110 4394 4287 Face 8571 3220 4288 3110 Face 8572 3220 2525 4288 Face 8573 2525 4289 4422 Face 8574 2525 3220 4289 Face 8575 623 4290 4534 Face 8576 623 991 4290 Face 8577 3690 4291 4087 Face 8578 3690 2586 4291 Face 8579 3469 4292 3874 Face 8580 3469 1634 4292 Face 8581 3875 4293 2114 Face 8582 3875 1239 4293 Face 8583 2832 4294 4226 Face 8584 2832 4295 4294 Face 8585 4232 4295 4296 Face 8586 4232 4294 4295 Face 8587 4284 4296 4285 Face 8588 4284 4232 4296 Face 8589 4285 4297 4284 Face 8590 4285 4286 4297 Face 8591 4770 4979 4559 Face 8592 4771 4870 5082 Face 8593 2542 4299 2423 Face 8594 2542 347 5650 Face 8595 1732 4300 4301 Face 8596 1732 367 4300 Face 8597 1363 4301 4302 Face 8598 1363 1732 4301 Face 8599 154 4302 4303 Face 8600 154 1363 4302 Face 8601 1707 4303 4304 Face 8602 1707 154 4303 Face 8603 1455 4304 4362 Face 8604 1455 1707 4304 Face 8605 4869 4665 4758 Face 8606 4869 4618 4665 Face 8607 937 4306 3953 Face 8608 937 3494 4306 Face 8609 3953 4307 3952 Face 8610 3953 4306 4307 Face 8611 3952 4308 3953 Face 8612 3952 3951 4308 Face 8613 2152 4309 4109 Face 8614 2152 728 4309 Face 8615 2061 4310 4906 Face 8616 2061 4311 4310 Face 8617 2358 4311 4312 Face 8618 2358 4310 4311 Face 8619 1579 4312 4311 Face 8620 1579 1595 4312 Face 8621 3202 4313 3114 Face 8622 3202 1523 4313 Face 8623 3114 4314 4315 Face 8624 3114 4313 4314 Face 8625 3218 4315 4314 Face 8626 3218 2511 4315 Face 8627 2511 4316 4315 Face 8628 2511 4317 4316 Face 8629 2526 4317 4318 Face 8630 2526 4316 4317 Face 8631 3221 4318 4317 Face 8632 3221 2518 4318 Face 8633 2518 4319 3106 Face 8634 2518 3221 4319 Face 8635 3106 4320 4322 Face 8636 3106 4319 4320 Face 8637 3688 4321 698 Face 8638 3688 4132 4321 Face 8639 2503 4551 4436 Face 8640 2503 4543 4551 Face 8641 963 4450 5239 Face 8642 963 1372 4323 Face 8643 686 4324 4325 Face 8644 686 1295 4324 Face 8645 1070 4325 4667 Face 8646 1070 686 4325 Face 8647 3767 4326 4243 Face 8648 3767 3766 4326 Face 8649 3766 4327 3920 Face 8650 3766 3767 4327 Face 8651 2528 4328 4541 Face 8652 2528 4246 4328 Face 8653 2527 4329 4616 Face 8654 2527 2529 4329 Face 8655 3923 4330 2940 Face 8656 3923 3444 4330 Face 8657 2940 4331 3925 Face 8658 2940 4330 4331 Face 8659 3925 4332 3067 Face 8660 3925 4331 4332 Face 8661 3067 4333 4062 Face 8662 3067 4332 4333 Face 8663 180 4334 1695 Face 8664 180 568 4624 Face 8665 4358 4734 5078 Face 8666 3551 4244 4335 Face 8667 4885 4687 5051 Face 8668 4359 4625 4611 Face 8669 3517 4337 4369 Face 8670 3517 2493 4337 Face 8671 1217 4338 5302 Face 8672 1217 544 4338 Face 8673 3213 4339 4340 Face 8674 3213 3230 4339 Face 8675 2887 4340 4339 Face 8676 2887 4341 4340 Face 8677 4198 4341 2887 Face 8678 4198 4342 4341 Face 8679 4199 4342 4198 Face 8680 4199 4343 4342 Face 8681 4200 4343 4201 Face 8682 4200 4342 4343 Face 8683 4201 4344 4200 Face 8684 4201 4371 4344 Face 8685 1773 4345 4346 Face 8686 1773 152 4345 Face 8687 634 4346 4370 Face 8688 634 1773 4346 Face 8689 1781 4347 381 Face 8690 1781 4348 4347 Face 8691 2701 4348 1781 Face 8692 2701 4388 4348 Face 8693 3951 4349 4308 Face 8694 3951 3950 4349 Face 8695 3950 4350 4349 Face 8696 3950 3972 4350 Face 8697 3997 4351 4368 Face 8698 3997 4352 4351 Face 8699 3917 4352 3997 Face 8700 3917 4353 4352 Face 8701 2947 4353 3917 Face 8702 2947 3279 4353 Face 8703 102 4354 344 Face 8704 102 5257 5433 Face 8705 4129 4355 4204 Face 8706 4129 4401 4355 Face 8707 5080 4648 4870 Face 8708 4976 5018 5081 Face 8709 4975 4872 4976 Face 8710 253 254 4357 Face 8711 4877 4358 4359 Face 8712 4877 4335 4735 Face 8713 4357 4909 253 Face 8714 4357 3551 4908 Face 8715 254 4360 4357 Face 8716 254 4836 4360 Face 8717 911 5084 4795 Face 8718 911 1849 5084 Face 8719 813 4362 4363 Face 8720 813 1455 4362 Face 8721 1714 4363 4580 Face 8722 1714 813 4363 Face 8723 1092 4364 129 Face 8724 1092 4435 4364 Face 8725 2880 4365 4366 Face 8726 2880 4229 4365 Face 8727 2532 4366 4365 Face 8728 2532 4367 4366 Face 8729 4128 4367 2532 Face 8730 4128 4384 4367 Face 8731 3667 4368 3999 Face 8732 3667 3997 4368 Face 8733 453 4369 4438 Face 8734 453 3517 4369 Face 8735 1286 4370 4217 Face 8736 1286 634 4370 Face 8737 3108 4371 4372 Face 8738 3108 4344 4371 Face 8739 4319 4372 4320 Face 8740 4319 3108 4372 Face 8741 3674 4373 3709 Face 8742 3674 4184 4373 Face 8743 4184 4374 4373 Face 8744 4184 4375 4374 Face 8745 4043 4375 4184 Face 8746 4043 4376 4375 Face 8747 2520 4376 4043 Face 8748 2520 4377 4376 Face 8749 2848 4377 2520 Face 8750 2848 4378 4377 Face 8751 2510 4378 2848 Face 8752 2510 4379 4378 Face 8753 4189 4379 4190 Face 8754 4189 4378 4379 Face 8755 4190 4380 4189 Face 8756 4190 4381 4380 Face 8757 4191 4381 4190 Face 8758 4191 4091 4381 Face 8759 4882 4638 5021 Face 8760 4544 4637 4638 Face 8761 3972 4383 4350 Face 8762 3972 1514 4383 Face 8763 4127 4384 4385 Face 8764 4127 4367 4384 Face 8765 2884 4385 4384 Face 8766 2884 4519 4385 Face 8767 2643 4386 4233 Face 8768 2643 4526 4386 Face 8769 2830 4387 4538 Face 8770 2830 4194 4387 Face 8771 631 4388 2701 Face 8772 631 4418 4388 Face 8773 5039 4676 4552 Face 8774 5039 5038 4676 Face 8775 3958 4390 1212 Face 8776 3958 2707 4390 Face 8777 2053 4391 2052 Face 8778 2053 4392 4391 Face 8779 4197 4392 2053 Face 8780 4197 4393 4392 Face 8781 2886 4393 4197 Face 8782 2886 4394 4393 Face 8783 4241 4394 2886 Face 8784 4241 4287 4394 Face 8785 4287 4395 4396 Face 8786 4287 4241 4395 Face 8787 3220 4396 4289 Face 8788 3220 4287 4396 Face 8789 2879 4397 2878 Face 8790 2879 4421 4397 Face 8791 2878 4398 2877 Face 8792 2878 4397 4398 Face 8793 3328 4399 4426 Face 8794 3328 4163 4399 Face 8795 544 4400 4338 Face 8796 544 1219 4400 Face 8797 4289 4401 4129 Face 8798 4289 4396 4401 Face 8799 858 4402 1672 Face 8800 858 4403 4402 Face 8801 2188 4403 858 Face 8802 2188 4458 4403 Face 8803 3080 4404 4405 Face 8804 3080 4333 4404 Face 8805 3082 4405 4406 Face 8806 3082 3080 4405 Face 8807 3083 4406 3084 Face 8808 3083 3082 4406 Face 8809 3084 4407 3083 Face 8810 3084 3085 4407 Face 8811 3085 4408 4407 Face 8812 3085 4409 4408 Face 8813 3086 4409 4410 Face 8814 3086 4408 4409 Face 8815 3087 4410 3088 Face 8816 3087 3086 4410 Face 8817 3088 4411 3087 Face 8818 3088 3089 4411 Face 8819 3089 4412 4411 Face 8820 3089 3090 4412 Face 8821 3090 4413 4412 Face 8822 3090 4414 4413 Face 8823 3091 4414 4415 Face 8824 3091 4413 4414 Face 8825 3092 4415 4416 Face 8826 3092 3091 4415 Face 8827 3820 4416 4415 Face 8828 3820 2415 4416 Face 8829 1114 4417 4477 Face 8830 1114 3693 4417 Face 8831 1597 4418 631 Face 8832 1597 4437 4418 Face 8833 3860 4419 4305 Face 8834 3860 4069 4419 Face 8835 4679 4420 4425 Face 8836 4679 4601 4420 Face 8837 4204 4421 2879 Face 8838 4204 4355 4421 Face 8839 4129 4422 4289 Face 8840 4129 2530 4422 Face 8841 2879 4423 4204 Face 8842 2879 2505 4423 Face 8843 2530 4424 4422 Face 8844 2530 4487 4424 Face 8845 4680 4425 4472 Face 8846 4680 4679 4425 Face 8847 4069 4426 4419 Face 8848 4069 3328 4426 Face 8849 1289 4427 1291 Face 8850 1289 2392 4427 Face 8851 1027 4428 223 Face 8852 1027 85 5585 Face 8853 3920 4429 1501 Face 8854 3920 4327 4429 Face 8855 2505 4430 4423 Face 8856 2505 4150 4430 Face 8857 4903 4431 5064 Face 8858 4903 4785 4431 Face 8859 3097 4912 4433 Face 8860 3097 4958 4912 Face 8861 3987 4433 4912 Face 8862 3987 4209 4433 Face 8863 2877 4434 2878 Face 8864 2877 4584 4434 Face 8865 2212 4435 1092 Face 8866 2212 343 4435 Face 8867 4320 4436 4551 Face 8868 4320 4372 4436 Face 8869 737 4437 1597 Face 8870 737 4585 4437 Face 8871 3327 4438 4439 Face 8872 3327 453 4438 Face 8873 936 4439 4440 Face 8874 936 3327 4439 Face 8875 4135 4440 4439 Face 8876 4135 4441 4440 Face 8877 3195 4441 4135 Face 8878 3195 4137 4441 Face 8879 3472 4746 4443 Face 8880 3472 4070 4746 Face 8881 4163 4443 4399 Face 8882 4163 3472 4443 Face 8883 3229 4883 469 Face 8884 3229 4882 4883 Face 8885 5560 4445 5549 Face 8886 5560 5368 4445 Face 8887 5476 5485 5480 Face 8888 5476 5474 5485 Face 8889 5515 5572 5566 Face 8890 5506 4448 5472 Face 8891 5232 4448 4452 Face 8892 5232 5211 5469 Face 8893 5517 4449 4451 Face 8894 5517 5568 4449 Face 8895 4323 4450 963 Face 8896 4323 4451 4450 Face 8897 1855 4451 4323 Face 8898 1855 5517 4451 Face 8899 5552 5568 4453 Face 8900 5591 5567 4452 Face 8901 4832 5517 1855 Face 8902 416 5278 4453 Face 8903 892 4454 2554 Face 8904 892 4832 4454 Face 8905 716 4455 4726 Face 8906 4729 4460 4455 Face 8907 4207 4456 4457 Face 8908 4207 4962 4456 Face 8909 4286 4457 4297 Face 8910 4286 4207 4457 Face 8911 1050 4458 2188 Face 8912 1050 4478 4458 Face 8913 1192 4788 2708 Face 8914 1192 4015 4459 Face 8915 4205 4460 3096 Face 8916 4205 4455 4460 Face 8917 4954 4461 5164 Face 8918 4954 4670 4461 Face 8919 2714 4866 5113 Face 8920 4931 4610 4866 Face 8921 703 4463 4464 Face 8922 5061 5617 5062 Face 8923 4400 4464 4465 Face 8924 4400 703 4464 Face 8925 1354 4465 4464 Face 8926 5462 6247 4465 Face 8927 6247 5419 4465 Face 8928 1260 4467 4466 Face 8929 1355 4467 1885 Face 8930 1355 4466 4467 Face 8931 4491 4468 4490 Face 8932 4491 4489 4468 Face 8933 2240 4469 2386 Face 8934 2240 4470 4469 Face 8935 2667 4470 907 Face 8936 2667 4469 4470 Face 8937 2228 4471 2152 Face 8938 2228 2229 4471 Face 8939 4754 4472 4492 Face 8940 4754 4680 4472 Face 8941 4091 4473 4381 Face 8942 4091 4626 4473 Face 8943 880 4474 1686 Face 8944 880 5109 4474 Face 8945 5141 5109 880 Face 8946 4633 2919 5127 Face 8947 5140 5034 4633 Face 8948 2763 289 5034 Face 8949 2443 4477 4478 Face 8950 2443 1114 4477 Face 8951 242 4478 1050 Face 8952 242 2443 4478 Face 8953 1799 4479 4480 Face 8954 1799 76 4479 Face 8955 595 4480 4481 Face 8956 595 1799 4480 Face 8957 1796 4481 4482 Face 8958 1796 595 4481 Face 8959 817 4482 4488 Face 8960 817 1796 4482 Face 8961 5116 5117 4723 Face 8962 5023 4771 5082 Face 8963 4060 4484 4061 Face 8964 4060 4236 4484 Face 8965 4061 4485 4060 Face 8966 4061 4486 4485 Face 8967 4065 4486 4227 Face 8968 4065 4485 4486 Face 8969 4423 4487 2530 Face 8970 4423 4430 4487 Face 8971 1449 4488 4520 Face 8972 1449 817 4488 Face 8973 4505 4489 4491 Face 8974 4505 4493 4489 Face 8975 4554 4490 4553 Face 8976 4554 4491 4490 Face 8977 4555 4491 4554 Face 8978 4555 4505 4491 Face 8979 4755 4492 4548 Face 8980 4755 4754 4492 Face 8981 4506 4493 4505 Face 8982 4506 4494 4493 Face 8983 4507 4494 4506 Face 8984 4507 4495 4494 Face 8985 4508 4495 4507 Face 8986 4508 4496 4495 Face 8987 4509 4496 4508 Face 8988 4509 4497 4496 Face 8989 4510 4497 4509 Face 8990 4510 4498 4497 Face 8991 4511 4498 4510 Face 8992 4511 4499 4498 Face 8993 4512 4499 4511 Face 8994 4512 4500 4499 Face 8995 4513 4500 4512 Face 8996 4513 4501 4500 Face 8997 4514 4501 4513 Face 8998 4514 4502 4501 Face 8999 4515 4502 4514 Face 9000 4515 4503 4502 Face 9001 4517 4503 4515 Face 9002 4517 4504 4503 Face 9003 4518 4504 4517 Face 9004 4518 4516 4504 Face 9005 4556 4505 4555 Face 9006 4556 4506 4505 Face 9007 4557 4506 4556 Face 9008 4557 4507 4506 Face 9009 4586 4507 4557 Face 9010 4586 4508 4507 Face 9011 4587 4508 4586 Face 9012 4587 4509 4508 Face 9013 4588 4509 4587 Face 9014 4588 4510 4509 Face 9015 4589 4510 4588 Face 9016 4589 4511 4510 Face 9017 4590 4511 4589 Face 9018 4590 4512 4511 Face 9019 4591 4512 4590 Face 9020 4591 4513 4512 Face 9021 4592 4513 4591 Face 9022 4592 4514 4513 Face 9023 4594 4514 4592 Face 9024 4594 4515 4514 Face 9025 4595 4515 4594 Face 9026 4595 4517 4515 Face 9027 4593 4516 4518 Face 9028 4593 4565 4516 Face 9029 4596 4517 4595 Face 9030 4596 4518 4517 Face 9031 4597 4518 4596 Face 9032 4597 4593 4518 Face 9033 4125 4519 4688 Face 9034 4125 4385 4519 Face 9035 389 4520 4521 Face 9036 389 1449 4520 Face 9037 1750 4521 4522 Face 9038 1750 389 4521 Face 9039 50 4522 4523 Face 9040 50 1750 4522 Face 9041 1459 4523 4524 Face 9042 1459 50 4523 Face 9043 1189 4524 4525 Face 9044 1189 1459 4524 Face 9045 647 4525 4601 Face 9046 647 1189 4525 Face 9047 2642 4526 4961 Face 9048 2642 4386 4526 Face 9049 5046 4527 5015 Face 9050 5046 4810 4527 Face 9051 4993 5015 4527 Face 9052 5133 4064 4950 Face 9053 3684 4529 2816 Face 9054 3684 4063 4529 Face 9055 3825 4530 503 Face 9056 3825 4531 4530 Face 9057 3391 4531 3825 Face 9058 3391 4532 4531 Face 9059 2747 4532 3391 Face 9060 2747 4533 4532 Face 9061 987 4533 2747 Face 9062 987 4534 4533 Face 9063 108 4534 987 Face 9064 108 623 4534 Face 9065 4909 4910 4975 Face 9066 4826 4827 4535 Face 9067 4227 4536 4065 Face 9068 4227 650 4536 Face 9069 193 4637 4544 Face 9070 5121 4432 4537 Face 9071 4386 4538 4387 Face 9072 4386 2642 4538 Face 9073 546 4539 1775 Face 9074 546 4550 4539 Face 9075 5090 5152 5091 Face 9076 5040 4967 4540 Face 9077 4228 4541 4542 Face 9078 4228 2528 4541 Face 9079 4209 4542 4433 Face 9080 4209 4228 4542 Face 9081 4149 4543 2503 Face 9082 4149 4876 4543 Face 9083 2318 4882 3229 Face 9084 4547 193 4544 Face 9085 3103 4545 4875 Face 9086 3103 4546 4545 Face 9087 981 4546 2318 Face 9088 981 4545 4546 Face 9089 2318 4547 4544 Face 9090 2318 4546 4547 Face 9091 4756 4548 4617 Face 9092 4756 4755 4548 Face 9093 5074 5075 4686 Face 9094 4966 4535 4827 Face 9095 1165 4550 546 Face 9096 1165 4572 4550 Face 9097 4322 4551 4875 Face 9098 4322 4320 4551 Face 9099 4835 4552 5000 Face 9100 4835 5039 4552 Face 9101 4642 4553 4641 Face 9102 4642 4554 4553 Face 9103 4643 4554 4642 Face 9104 4643 4555 4554 Face 9105 4644 4555 4643 Face 9106 4644 4556 4555 Face 9107 4650 4556 4644 Face 9108 4650 4557 4556 Face 9109 4651 4557 4650 Face 9110 4651 4586 4557 Face 9111 3098 4558 5165 Face 9112 4952 2316 4953 Face 9113 1471 4559 3520 Face 9114 1471 4770 4559 Face 9115 4935 4560 4894 Face 9116 4935 4562 4560 Face 9117 735 4561 5033 Face 9118 735 3168 4561 Face 9119 32 5033 3520 Face 9120 32 735 5033 Face 9121 479 4936 4460 Face 9122 479 32 4937 Face 9123 3035 4564 1864 Face 9124 3035 4806 4564 Face 9125 4598 4565 4593 Face 9126 4598 4566 4565 Face 9127 4691 4566 4598 Face 9128 4691 4567 4566 Face 9129 4693 4567 4691 Face 9130 4693 4568 4567 Face 9131 4694 4568 4693 Face 9132 4694 4569 4568 Face 9133 4697 4569 4694 Face 9134 4697 4570 4569 Face 9135 4698 4570 4697 Face 9136 4698 4571 4570 Face 9137 4699 4571 4698 Face 9138 4699 4602 4571 Face 9139 1604 4572 1165 Face 9140 1604 4573 4572 Face 9141 63 4573 1604 Face 9142 63 4442 4573 Face 9143 4442 4574 4573 Face 9144 4442 4745 4574 Face 9145 4070 4575 4746 Face 9146 4070 4071 4575 Face 9147 4071 4576 4575 Face 9148 4071 3787 4576 Face 9149 3787 4577 4576 Face 9150 3787 4073 4577 Face 9151 1869 4578 3921 Face 9152 1869 4579 4578 Face 9153 1865 4579 1869 Face 9154 1865 4874 4579 Face 9155 529 4580 4262 Face 9156 529 1714 4580 Face 9157 1522 5030 194 Face 9158 1522 5031 5030 Face 9159 574 5031 1522 Face 9160 574 4825 5031 Face 9161 4432 4583 4913 Face 9162 4432 4584 4583 Face 9163 3987 4584 2877 Face 9164 3987 4583 4584 Face 9165 1285 4585 737 Face 9166 1285 4667 4585 Face 9167 4652 4586 4651 Face 9168 4652 4587 4586 Face 9169 4653 4587 4652 Face 9170 4653 4588 4587 Face 9171 4654 4588 4653 Face 9172 4654 4589 4588 Face 9173 4655 4589 4654 Face 9174 4655 4590 4589 Face 9175 4656 4590 4655 Face 9176 4656 4591 4590 Face 9177 4657 4591 4656 Face 9178 4657 4592 4591 Face 9179 4658 4592 4657 Face 9180 4658 4594 4592 Face 9181 4599 4593 4597 Face 9182 4599 4598 4593 Face 9183 4659 4594 4658 Face 9184 4659 4595 4594 Face 9185 4660 4595 4659 Face 9186 4660 4596 4595 Face 9187 4661 4596 4660 Face 9188 4661 4597 4596 Face 9189 4662 4597 4661 Face 9190 4662 4599 4597 Face 9191 4692 4598 4599 Face 9192 4692 4691 4598 Face 9193 4772 4599 4662 Face 9194 4772 4692 4599 Face 9195 1849 4600 4776 Face 9196 4722 1520 4721 Face 9197 1760 4601 4679 Face 9198 1760 647 4601 Face 9199 4700 4602 4699 Face 9200 4700 4603 4602 Face 9201 4701 4603 4700 Face 9202 4701 4604 4603 Face 9203 4702 4604 4701 Face 9204 4702 4605 4604 Face 9205 4708 4605 4702 Face 9206 4708 4606 4605 Face 9207 4709 4606 4708 Face 9208 4709 4607 4606 Face 9209 4710 4607 4709 Face 9210 4710 4608 4607 Face 9211 4711 4608 4710 Face 9212 4711 4244 4608 Face 9213 4244 4609 4335 Face 9214 4244 4711 4609 Face 9215 2135 4610 2750 Face 9216 2135 4462 4610 Face 9217 4549 4827 4920 Face 9218 4549 4966 4827 Face 9219 4459 5013 1192 Face 9220 4459 4008 4911 Face 9221 5085 5009 5076 Face 9222 5085 782 4930 Face 9223 1204 4614 265 Face 9224 1204 4615 4614 Face 9225 1775 4615 1204 Face 9226 1775 4539 4615 Face 9227 4328 4616 4640 Face 9228 4328 2527 4616 Face 9229 4986 4617 4618 Face 9230 4986 4756 4617 Face 9231 5077 4618 4869 Face 9232 5077 4986 4618 Face 9233 3683 4619 2347 Face 9234 3683 5069 4619 Face 9235 569 5007 4831 Face 9236 569 1262 5007 Face 9237 2642 4621 4538 Face 9238 2642 4774 4621 Face 9239 1697 4978 2560 Face 9240 1697 4682 4622 Face 9241 4799 4623 1697 Face 9242 684 4549 4920 Face 9243 5078 4624 4880 Face 9244 4334 180 4624 Face 9245 4358 4625 4359 Face 9246 4358 5078 4880 Face 9247 4329 4626 4946 Face 9248 4329 4473 4626 Face 9249 4808 4807 4600 Face 9250 195 4994 4627 Face 9251 4298 4724 4995 Face 9252 4672 5114 4628 Face 9253 4628 4629 4672 Face 9254 4940 5115 4939 Face 9255 3988 4630 1293 Face 9256 3988 163 4630 Face 9257 1877 4631 5005 Face 9258 1877 5076 4631 Face 9259 3989 4632 3988 Face 9260 3989 2985 4632 Face 9261 2177 5141 880 Face 9262 2177 5140 5141 Face 9263 4773 4634 4664 Face 9264 4773 4635 4634 Face 9265 3102 4635 193 Face 9266 3102 4634 4635 Face 9267 193 4636 4637 Face 9268 193 4635 4636 Face 9269 4537 5122 5121 Face 9270 4537 4382 5122 Face 9271 5126 4638 4637 Face 9272 5126 5016 4638 Face 9273 2176 4639 2428 Face 9274 2176 886 5047 Face 9275 2830 4947 4946 Face 9276 2830 4797 4947 Face 9277 4738 4641 4737 Face 9278 4738 4642 4641 Face 9279 4739 4642 4738 Face 9280 4739 4643 4642 Face 9281 4740 4643 4739 Face 9282 4740 4644 4643 Face 9283 4741 4644 4740 Face 9284 4741 4650 4644 Face 9285 2344 4790 2816 Face 9286 2344 4990 4790 Face 9287 2544 4646 2920 Face 9288 2544 5041 4646 Face 9289 4539 4647 4615 Face 9290 4539 4749 4647 Face 9291 4356 5081 5018 Face 9292 4356 4794 5081 Face 9293 4794 4649 5081 Face 9294 4794 4980 4649 Face 9295 4742 4650 4741 Face 9296 4742 4651 4650 Face 9297 4743 4651 4742 Face 9298 4743 4652 4651 Face 9299 4761 4652 4743 Face 9300 4761 4653 4652 Face 9301 4762 4653 4761 Face 9302 4762 4654 4653 Face 9303 4763 4654 4762 Face 9304 4763 4655 4654 Face 9305 4764 4655 4763 Face 9306 4764 4656 4655 Face 9307 4765 4656 4764 Face 9308 4765 4657 4656 Face 9309 4766 4657 4765 Face 9310 4766 4658 4657 Face 9311 4767 4658 4766 Face 9312 4767 4659 4658 Face 9313 4800 4659 4767 Face 9314 4800 4660 4659 Face 9315 4801 4660 4800 Face 9316 4801 4661 4660 Face 9317 4802 4661 4801 Face 9318 4802 4662 4661 Face 9319 4803 4662 4802 Face 9320 4803 4772 4662 Face 9321 5144 5139 3099 Face 9322 5083 4731 5089 Face 9323 4430 4664 4487 Face 9324 4430 4773 4664 Face 9325 4305 4665 4618 Face 9326 4305 4419 4665 Face 9327 4419 4666 4665 Face 9328 4419 4426 4666 Face 9329 121 4667 1285 Face 9330 121 1070 4667 Face 9331 3096 5173 4205 Face 9332 3096 4884 5173 Face 9333 4298 4669 4960 Face 9334 4298 4995 4669 Face 9335 4963 4670 4725 Face 9336 4963 4671 4670 Face 9337 4964 4671 4963 Face 9338 4960 4669 4965 Face 9339 4298 5096 5097 Face 9340 4298 4960 5022 Face 9341 2560 4673 5001 Face 9342 2560 4978 4673 Face 9343 2559 4674 5002 Face 9344 2559 2560 4674 Face 9345 911 4675 1849 Face 9346 911 4686 5002 Face 9347 4389 5037 4796 Face 9348 4677 5054 4676 Face 9349 4970 4677 5037 Face 9350 4970 4675 4677 Face 9351 3215 5110 4806 Face 9352 3215 830 5110 Face 9353 319 4679 4680 Face 9354 319 1760 4679 Face 9355 1730 4680 4754 Face 9356 1730 319 4680 Face 9357 4815 4681 4873 Face 9358 1308 3337 4681 Face 9359 2135 4682 1696 Face 9360 2135 4622 4682 Face 9361 1696 4683 2713 Face 9362 1696 4682 4683 Face 9363 1020 4990 2344 Face 9364 1020 4685 4990 Face 9365 3536 4685 1020 Face 9366 3536 5119 4685 Face 9367 2559 4686 5075 Face 9368 2559 5002 4686 Face 9369 4336 5074 4686 Face 9370 5050 5051 4687 Face 9371 4045 4688 4689 Face 9372 4045 4125 4688 Face 9373 4044 4689 4185 Face 9374 4044 4045 4689 Face 9375 4335 4690 4735 Face 9376 4335 4609 4690 Face 9377 4695 4691 4692 Face 9378 4695 4693 4691 Face 9379 4777 4692 4772 Face 9380 4777 4695 4692 Face 9381 4696 4693 4695 Face 9382 4696 4694 4693 Face 9383 4703 4694 4696 Face 9384 4703 4697 4694 Face 9385 4778 4695 4777 Face 9386 4778 4696 4695 Face 9387 4779 4696 4778 Face 9388 4779 4703 4696 Face 9389 4704 4697 4703 Face 9390 4704 4698 4697 Face 9391 4705 4698 4704 Face 9392 4705 4699 4698 Face 9393 4706 4699 4705 Face 9394 4706 4700 4699 Face 9395 4707 4700 4706 Face 9396 4707 4701 4700 Face 9397 4712 4701 4707 Face 9398 4712 4702 4701 Face 9399 4714 4702 4712 Face 9400 4714 4708 4702 Face 9401 4780 4703 4779 Face 9402 4780 4704 4703 Face 9403 4781 4704 4780 Face 9404 4781 4705 4704 Face 9405 4782 4705 4781 Face 9406 4782 4706 4705 Face 9407 4824 4706 4782 Face 9408 4824 4707 4706 Face 9409 4921 4707 4824 Face 9410 4921 4712 4707 Face 9411 4715 4708 4714 Face 9412 4715 4709 4708 Face 9413 4716 4709 4715 Face 9414 4716 4710 4709 Face 9415 4717 4710 4716 Face 9416 4717 4711 4710 Face 9417 4718 4711 4717 Face 9418 4718 4609 4711 Face 9419 4922 4712 4921 Face 9420 4922 4714 4712 Face 9421 4609 4713 4690 Face 9422 4609 4718 4713 Face 9423 4923 4714 4922 Face 9424 4923 4715 4714 Face 9425 4924 4715 4923 Face 9426 4924 4716 4715 Face 9427 4925 4716 4924 Face 9428 4925 4717 4716 Face 9429 4926 4717 4925 Face 9430 4926 4718 4717 Face 9431 4927 4718 4926 Face 9432 4927 4713 4718 Face 9433 34 4719 252 Face 9434 34 1694 4719 Face 9435 195 5170 5157 Face 9436 195 4627 5170 Face 9437 4600 4721 4808 Face 9438 4600 4722 4721 Face 9439 1849 4722 4600 Face 9440 1849 4970 4722 Face 9441 4776 5084 1849 Face 9442 5175 5116 4723 Face 9443 5097 4724 4298 Face 9444 4939 5095 4724 Face 9445 4728 4962 4207 Face 9446 4728 5179 4962 Face 9447 4207 4726 4728 Face 9448 4207 4286 4726 Face 9449 4205 4727 4728 Face 9450 4205 5173 4727 Face 9451 4455 4728 4726 Face 9452 4455 4205 4728 Face 9453 716 4729 4455 Face 9454 716 44 4729 Face 9455 4776 5160 4723 Face 9456 5094 4724 5095 Face 9457 469 4731 830 Face 9458 469 4883 4731 Face 9459 4627 4732 4361 Face 9460 4627 4994 4732 Face 9461 3519 4733 5035 Face 9462 3519 4130 4733 Face 9463 4690 4734 4735 Face 9464 4690 4783 4734 Face 9465 4358 4735 4734 Face 9466 4358 4877 4735 Face 9467 4623 4736 4625 Face 9468 4623 4895 4736 Face 9469 167 4737 103 Face 9470 167 4738 4737 Face 9471 985 4738 167 Face 9472 985 4739 4738 Face 9473 1472 4739 985 Face 9474 1472 4740 4739 Face 9475 397 4740 1472 Face 9476 397 4741 4740 Face 9477 1467 4741 397 Face 9478 1467 4742 4741 Face 9479 651 4742 1467 Face 9480 651 4743 4742 Face 9481 1484 4743 651 Face 9482 1484 4761 4743 Face 9483 4399 4744 4426 Face 9484 4399 4745 4744 Face 9485 4443 4745 4399 Face 9486 4443 4574 4745 Face 9487 4574 4746 4747 Face 9488 4574 4443 4746 Face 9489 4575 4747 4746 Face 9490 4575 4748 4747 Face 9491 4576 4748 4575 Face 9492 4576 4749 4748 Face 9493 4577 4749 4576 Face 9494 4577 4647 4749 Face 9495 4073 4750 4577 Face 9496 4073 3974 4750 Face 9497 2325 4751 4868 Face 9498 2325 28 4751 Face 9499 2067 4752 4195 Face 9500 2067 4231 4752 Face 9501 4195 4753 4750 Face 9502 4195 4752 4753 Face 9503 812 4754 4755 Face 9504 812 1730 4754 Face 9505 1768 4755 4756 Face 9506 1768 812 4755 Face 9507 106 4756 4986 Face 9508 106 1768 4756 Face 9509 1755 4757 1106 Face 9510 1755 4758 4757 Face 9511 287 4758 1755 Face 9512 287 4869 4758 Face 9513 2754 4759 3189 Face 9514 2754 4871 4759 Face 9515 4871 4760 4759 Face 9516 2471 258 4760 Face 9517 69 4761 1484 Face 9518 69 4762 4761 Face 9519 1483 4762 69 Face 9520 1483 4763 4762 Face 9521 652 4763 1483 Face 9522 652 4764 4763 Face 9523 1436 4764 652 Face 9524 1436 4765 4764 Face 9525 274 4765 1436 Face 9526 274 4766 4765 Face 9527 1476 4766 274 Face 9528 1476 4767 4766 Face 9529 663 4767 1476 Face 9530 663 4800 4767 Face 9531 4559 4768 4563 Face 9532 4559 4979 4768 Face 9533 4980 5023 4649 Face 9534 4628 5114 4979 Face 9535 258 4770 1471 Face 9536 4771 5023 4770 Face 9537 258 4771 4770 Face 9538 258 2471 4771 Face 9539 4804 4772 4803 Face 9540 4804 4777 4772 Face 9541 4150 4773 4430 Face 9542 4150 4938 4773 Face 9543 4945 5161 4956 Face 9544 4945 4798 5161 Face 9545 4433 4775 3097 Face 9546 4433 4542 4775 Face 9547 4361 4776 4807 Face 9548 4361 5160 4776 Face 9549 4891 4777 4804 Face 9550 4891 4778 4777 Face 9551 4892 4778 4891 Face 9552 4892 4779 4778 Face 9553 4893 4779 4892 Face 9554 4893 4780 4779 Face 9555 4941 4780 4893 Face 9556 4941 4781 4780 Face 9557 4942 4781 4941 Face 9558 4942 4782 4781 Face 9559 4943 4782 4942 Face 9560 4943 4824 4782 Face 9561 1694 4783 4928 Face 9562 1694 4734 4783 Face 9563 4431 4784 4898 Face 9564 4431 4914 4784 Face 9565 4537 4785 4382 Face 9566 4537 4913 4785 Face 9567 4540 5152 5090 Face 9568 4540 5056 5120 Face 9569 2028 4787 5055 Face 9570 2028 1239 4787 Face 9571 5013 4788 1192 Face 9572 4612 4619 5069 Face 9573 4619 4789 5066 Face 9574 4619 4612 4789 Face 9575 4645 4790 4992 Face 9576 4645 5065 4790 Face 9577 2348 4791 3535 Face 9578 5067 4645 5155 Face 9579 4356 4792 4794 Face 9580 4356 5050 4792 Face 9581 4795 4793 911 Face 9582 4792 5050 4793 Face 9583 4483 4794 4792 Face 9584 5115 5012 4794 Face 9585 4792 4795 4483 Face 9586 4792 4793 4795 Face 9587 110 5038 1850 Face 9588 110 1599 4796 Face 9589 4538 4797 2830 Face 9590 4538 4621 4797 Face 9591 4621 4798 4797 Face 9592 4621 5161 4798 Face 9593 4895 4799 2559 Face 9594 4895 4623 4799 Face 9595 1474 4800 663 Face 9596 1474 4801 4800 Face 9597 82 4801 1474 Face 9598 82 4802 4801 Face 9599 994 4802 82 Face 9600 994 4803 4802 Face 9601 1489 4803 994 Face 9602 1489 4804 4803 Face 9603 451 4804 1489 Face 9604 451 4891 4804 Face 9605 1698 4805 4973 Face 9606 1698 1406 4805 Face 9607 1549 4806 3035 Face 9608 1549 3215 4806 Face 9609 4627 4807 4720 Face 9610 4627 4361 4807 Face 9611 4720 4808 4952 Face 9612 4720 4807 4808 Face 9613 568 4809 4624 Face 9614 568 392 4809 Face 9615 1539 5045 1131 Face 9616 1539 62 4810 Face 9617 2916 4811 2030 Face 9618 2916 4812 4811 Face 9619 5102 4812 2916 Face 9620 4814 5132 5100 Face 9621 745 4813 4814 Face 9622 745 2379 4813 Face 9623 2427 5102 2916 Face 9624 2427 745 4814 Face 9625 1308 4815 1404 Face 9626 1308 4681 4815 Face 9627 1194 4816 5072 Face 9628 1194 1018 4816 Face 9629 4633 4817 5140 Face 9630 4633 5127 4817 Face 9631 2587 4818 5041 Face 9632 2587 4822 4818 Face 9633 5128 4819 4818 Face 9634 4475 4817 5127 Face 9635 5129 4820 2589 Face 9636 2590 2588 4820 Face 9637 2588 4821 4820 Face 9638 5125 2587 5124 Face 9639 4983 4822 4982 Face 9640 4983 5128 4822 Face 9641 2588 4823 4821 Face 9642 4982 4822 5125 Face 9643 4987 4824 4943 Face 9644 4987 4921 4824 Face 9645 1131 4825 574 Face 9646 1131 5045 4825 Face 9647 4908 4909 4357 Face 9648 4359 4611 4826 Face 9649 4611 4827 4826 Face 9650 4611 4920 4827 Face 9651 671 4828 1703 Face 9652 671 4829 4828 Face 9653 4744 4829 4830 Face 9654 4744 4828 4829 Face 9655 4757 4830 4829 Face 9656 4757 4666 4830 Face 9657 1309 4831 131 Face 9658 1309 569 4831 Face 9659 416 4832 892 Face 9660 416 4453 4832 Face 9661 4940 5012 5115 Face 9662 4628 4769 5042 Face 9663 391 4834 2752 Face 9664 391 4835 4834 Face 9665 912 4835 391 Face 9666 912 5039 4835 Face 9667 104 4836 254 Face 9668 104 4837 4836 Face 9669 1434 4837 104 Face 9670 1434 4838 4837 Face 9671 1008 4838 1434 Face 9672 1008 4839 4838 Face 9673 398 4839 1008 Face 9674 398 4840 4839 Face 9675 1454 4840 398 Face 9676 1454 4841 4840 Face 9677 659 4841 1454 Face 9678 659 4842 4841 Face 9679 1237 4842 659 Face 9680 1237 4843 4842 Face 9681 124 4843 1237 Face 9682 124 4844 4843 Face 9683 1465 4844 124 Face 9684 1465 4845 4844 Face 9685 969 4845 1465 Face 9686 969 4846 4845 Face 9687 355 4846 969 Face 9688 355 4847 4846 Face 9689 1464 4847 355 Face 9690 1464 4848 4847 Face 9691 983 4848 1464 Face 9692 983 4849 4848 Face 9693 26 4849 983 Face 9694 26 4850 4849 Face 9695 1433 4850 26 Face 9696 1433 4851 4850 Face 9697 1007 4851 1433 Face 9698 1007 4852 4851 Face 9699 450 4852 1007 Face 9700 450 4853 4852 Face 9701 1477 4853 450 Face 9702 1477 4854 4853 Face 9703 260 4854 1477 Face 9704 260 4855 4854 Face 9705 1469 4855 260 Face 9706 1469 4856 4855 Face 9707 664 4856 1469 Face 9708 664 4857 4856 Face 9709 1485 4857 664 Face 9710 1485 4858 4857 Face 9711 122 4858 1485 Face 9712 122 4859 4858 Face 9713 1487 4859 122 Face 9714 1487 4860 4859 Face 9715 521 4860 1487 Face 9716 521 4861 4860 Face 9717 1428 4861 521 Face 9718 1428 4862 4861 Face 9719 662 4862 1428 Face 9720 662 4863 4862 Face 9721 1396 4863 662 Face 9722 1396 4886 4863 Face 9723 3337 4864 4681 Face 9724 3337 4620 4864 Face 9725 5079 4865 5143 Face 9726 3338 4864 4865 Face 9727 4462 4866 4610 Face 9728 4867 5079 4866 Face 9729 4462 4867 4866 Face 9730 4462 1696 4867 Face 9731 2729 5043 881 Face 9732 2729 2325 5043 Face 9733 445 4869 287 Face 9734 445 5077 4869 Face 9735 3941 4870 4771 Face 9736 3941 75 4870 Face 9737 2471 4871 3941 Face 9738 2471 4760 4871 Face 9739 4910 4872 4975 Face 9740 4885 5051 5018 Face 9741 2136 4873 5024 Face 9742 2136 4815 4873 Face 9743 1031 4874 1865 Face 9744 1031 43 4874 Face 9745 4543 4875 4551 Face 9746 4543 3103 4875 Face 9747 3103 4876 4969 Face 9748 3103 4543 4876 Face 9749 3551 4877 4908 Face 9750 3551 4335 4877 Face 9751 1470 4878 1557 Face 9752 1470 138 4878 Face 9753 3188 4879 4878 Face 9754 3188 4560 4879 Face 9755 4625 4880 4623 Face 9756 4625 4358 4880 Face 9757 4624 4881 4880 Face 9758 4624 4809 4881 Face 9759 4544 4882 2318 Face 9760 4544 4638 4882 Face 9761 5021 4883 4882 Face 9762 4444 4731 4883 Face 9763 4672 4884 5106 Face 9764 5096 4298 5022 Face 9765 4535 4885 4872 Face 9766 4535 4966 4885 Face 9767 225 4886 1396 Face 9768 225 4179 4886 Face 9769 4179 4887 4886 Face 9770 4179 4888 4887 Face 9771 3809 4888 2169 Face 9772 3809 4887 4888 Face 9773 2169 4889 4890 Face 9774 2169 4888 4889 Face 9775 2167 4890 4889 Face 9776 2167 4934 4890 Face 9777 984 4891 451 Face 9778 984 4892 4891 Face 9779 1482 4892 984 Face 9780 1482 4893 4892 Face 9781 123 4893 1482 Face 9782 123 4941 4893 Face 9783 1471 4894 258 Face 9784 1471 4935 4894 Face 9785 684 4895 2559 Face 9786 684 4920 4895 Face 9787 1018 4896 4996 Face 9788 5123 5124 5112 Face 9789 1867 4897 1032 Face 9790 1867 142 4897 Face 9791 3986 4898 4784 Face 9792 3986 4955 4898 Face 9793 2437 4899 10 Face 9794 4974 2716 4899 Face 9795 2907 4900 2565 Face 9796 2907 881 4900 Face 9797 2564 4901 5093 Face 9798 5044 4868 4901 Face 9799 5093 4902 2564 Face 9800 5093 5073 4902 Face 9801 4064 4903 5064 Face 9802 4064 5133 4903 Face 9803 4558 4904 5165 Face 9804 4558 5134 4955 Face 9805 4461 4905 5164 Face 9806 4461 4959 4905 Face 9807 3491 4906 5004 Face 9808 3491 2061 4906 Face 9809 2061 4907 4427 Face 9810 2061 3491 4907 Face 9811 4359 4908 4877 Face 9812 4359 4826 4908 Face 9813 4826 4909 4908 Face 9814 4826 4910 4909 Face 9815 4535 4910 4826 Face 9816 4535 4872 4910 Face 9817 4612 4911 4789 Face 9818 5013 4459 4911 Face 9819 4914 4912 4958 Face 9820 4583 3987 4912 Face 9821 4431 4913 4914 Face 9822 4431 4785 4913 Face 9823 4583 4914 4913 Face 9824 4583 4912 4914 Face 9825 5108 4915 4917 Face 9826 5108 4989 4915 Face 9827 2347 4916 4915 Face 9828 2347 4619 4916 Face 9829 4991 4917 4916 Face 9830 2348 5099 4917 Face 9831 2346 4918 3683 Face 9832 2346 3282 4918 Face 9833 2317 4919 4825 Face 9834 2317 4950 4919 Face 9835 4736 4920 4611 Face 9836 4736 4895 4920 Face 9837 4988 4921 4987 Face 9838 4988 4922 4921 Face 9839 5036 4922 4988 Face 9840 5036 4923 4922 Face 9841 5068 4923 5036 Face 9842 5068 4924 4923 Face 9843 5118 4924 5068 Face 9844 5118 4925 4924 Face 9845 5146 4925 5118 Face 9846 5146 4926 4925 Face 9847 5147 4926 5146 Face 9848 5147 4927 4926 Face 9849 5148 4927 5147 Face 9850 5148 4928 4927 Face 9851 4719 4928 5148 Face 9852 4719 1694 4928 Face 9853 2716 4929 4899 Face 9854 2716 4613 4929 Face 9855 4613 4930 4929 Face 9856 5009 5085 4930 Face 9857 2714 4931 4866 Face 9858 2714 5009 4931 Face 9859 4972 4932 4805 Face 9860 2750 4610 4932 Face 9861 2751 4933 4972 Face 9862 2751 4673 4933 Face 9863 2168 4934 1244 Face 9864 2168 4890 4934 Face 9865 3520 4935 1471 Face 9866 3520 5033 4935 Face 9867 4563 4937 3520 Face 9868 4563 4768 4936 Face 9869 4936 4937 4563 Face 9870 4936 479 4937 Face 9871 4208 4938 4150 Face 9872 4208 5121 4938 Face 9873 5097 4939 4724 Face 9874 5097 4940 4939 Face 9875 4628 4940 4629 Face 9876 4628 4833 4940 Face 9877 970 4941 123 Face 9878 970 4942 4941 Face 9879 1473 4942 970 Face 9880 1473 4943 4942 Face 9881 354 4943 1473 Face 9882 354 4987 4943 Face 9883 4956 4944 5163 Face 9884 4956 5161 4944 Face 9885 3097 5135 4206 Face 9886 3097 4775 5135 Face 9887 4616 4946 4947 Face 9888 4616 4329 4946 Face 9889 4640 4947 3985 Face 9890 4640 4616 4947 Face 9891 3985 4948 4640 Face 9892 3985 4949 4948 Face 9893 4775 4949 5135 Face 9894 4775 4948 4949 Face 9895 4528 4950 4064 Face 9896 4528 4919 4950 Face 9897 4064 4951 4528 Face 9898 4064 5064 4951 Face 9899 3098 4952 4953 Face 9900 3098 4720 4952 Face 9901 4558 4953 4951 Face 9902 4558 3098 4953 Face 9903 5137 5163 5138 Face 9904 5137 4956 5163 Face 9905 4904 4955 4957 Face 9906 4904 4558 4955 Face 9907 4206 5136 4957 Face 9908 4206 5135 5136 Face 9909 3986 4957 4955 Face 9910 3986 4206 4957 Face 9911 4784 4958 3986 Face 9912 4784 4914 4958 Face 9913 195 4959 4994 Face 9914 195 4905 4959 Face 9915 4964 4960 4965 Face 9916 4668 5022 4960 Face 9917 4456 4961 4526 Face 9918 4456 4725 4961 Face 9919 4725 4962 4963 Face 9920 4725 4456 4962 Face 9921 5179 4963 4962 Face 9922 5179 4964 4963 Face 9923 4668 4964 5179 Face 9924 4668 4960 4964 Face 9925 4671 4965 4959 Face 9926 4671 4964 4965 Face 9927 4687 5074 4336 Face 9928 4687 4885 4966 Face 9929 2122 4967 5040 Face 9930 2122 2945 4967 Face 9931 1695 4968 362 Face 9932 1695 4334 4968 Face 9933 3102 4969 4876 Face 9934 3102 4547 4969 Face 9935 4389 4970 5037 Face 9936 4389 4722 4970 Face 9937 3535 4971 4967 Face 9938 3535 5154 4971 Face 9939 2750 4972 4933 Face 9940 2750 4932 4972 Face 9941 783 4973 4974 Face 9942 783 1698 4973 Face 9943 2437 4974 4899 Face 9944 2437 783 4974 Face 9945 253 4975 243 Face 9946 253 4909 4975 Face 9947 243 5080 75 Face 9948 243 4975 4976 Face 9949 2919 4977 4819 Face 9950 2919 5047 4977 Face 9951 4622 4978 1697 Face 9952 4622 4933 4978 Face 9953 4769 4979 4770 Face 9954 4769 4628 4979 Face 9955 5012 4980 4794 Face 9956 5042 5023 4980 Face 9957 831 4981 1555 Face 9958 831 5025 4981 Face 9959 5169 4982 4823 Face 9960 5169 4984 4982 Face 9961 4984 4983 4982 Face 9962 4474 5109 4983 Face 9963 4474 4984 1686 Face 9964 4474 4983 4984 Face 9965 3537 4985 5098 Face 9966 3537 2345 4985 Face 9967 1663 4986 5077 Face 9968 1663 106 4986 Face 9969 1238 4987 354 Face 9970 1238 4988 4987 Face 9971 660 4988 1238 Face 9972 660 5036 4988 Face 9973 4902 4989 5174 Face 9974 5159 4915 4989 Face 9975 4684 4990 4685 Face 9976 4684 4992 4990 Face 9977 2348 4991 4791 Face 9978 2348 4917 4991 Face 9979 4791 5155 5154 Face 9980 4791 5067 5155 Face 9981 5016 4993 4638 Face 9982 5016 5015 4993 Face 9983 4669 4994 4965 Face 9984 4669 4732 4994 Face 9985 4732 4995 4361 Face 9986 4732 4669 4995 Face 9987 4816 4996 3281 Face 9988 4816 1018 4996 Face 9989 3282 4997 1272 Face 9990 3282 2346 4997 Face 9991 3281 4998 4816 Face 9992 3281 4997 4998 Face 9993 2751 4999 4834 Face 9994 2751 4972 4999 Face 9995 4834 5000 2751 Face 9996 4834 4835 5000 Face 9997 4552 5001 5000 Face 9998 4552 5054 5001 Face 9999 4675 5002 4677 Face 10000 4675 911 5002 Face 10001 4185 5003 4044 Face 10002 4185 4248 5003 Face 10003 2790 5004 4906 Face 10004 2790 2791 5004 Face 10005 2732 5005 5006 Face 10006 2732 1877 5005 Face 10007 1262 5006 5007 Face 10008 1262 2732 5006 Face 10009 4620 5007 5006 Face 10010 4620 3337 5007 Face 10011 4811 5008 5034 Face 10012 4811 5049 5008 Face 10013 4613 5009 4930 Face 10014 4613 4931 5009 Face 10015 1520 5010 5011 Face 10016 1520 4389 5010 Face 10017 61 5011 5010 Face 10018 61 1358 5011 Face 10019 4833 5012 4940 Face 10020 5042 4980 5012 Face 10021 4612 5013 4911 Face 10022 4612 4788 5013 Face 10023 2564 5044 4901 Face 10024 5174 4989 5014 Face 10025 4950 5015 3101 Face 10026 4950 2317 5015 Face 10027 3101 5016 5017 Face 10028 3101 5015 5016 Face 10029 4903 5017 4785 Face 10030 4903 5133 5017 Face 10031 4872 5018 4976 Face 10032 4872 4885 5018 Face 10033 1538 5019 4981 Face 10034 1538 4527 5019 Face 10035 3100 5020 4444 Face 10036 3100 1538 5020 Face 10037 4444 5021 3100 Face 10038 4444 4883 5021 Face 10039 4884 5022 4668 Face 10040 4884 4672 5022 Face 10041 4769 5023 5042 Face 10042 4769 4770 5023 Face 10043 392 5024 4809 Face 10044 392 2136 5024 Face 10045 1840 5025 831 Face 10046 1840 470 5025 Face 10047 3099 5026 5025 Face 10048 3099 5167 5026 Face 10049 1839 5027 1866 Face 10050 1839 3099 5027 Face 10051 3036 5028 4579 Face 10052 3036 1839 5028 Face 10053 1521 5029 5011 Face 10054 1521 4581 5029 Face 10055 4581 5030 4582 Face 10056 4581 1521 5030 Face 10057 4582 5031 4919 Face 10058 4582 5030 5031 Face 10059 2381 5032 3283 Face 10060 2381 2818 5032 Face 10061 4562 5033 4561 Face 10062 4562 4935 5033 Face 10063 4476 5034 5008 Face 10064 4476 4633 5034 Face 10065 3079 5035 2127 Face 10066 3079 3519 5035 Face 10067 1478 5036 660 Face 10068 1478 5068 5036 Face 10069 4676 5037 4677 Face 10070 4676 5038 5037 Face 10071 4796 5038 110 Face 10072 4796 5037 5038 Face 10073 1850 5039 912 Face 10074 1850 5038 5039 Face 10075 5090 5040 4540 Face 10076 2345 2122 5040 Face 10077 240 5041 2544 Face 10078 240 5111 5041 Face 10079 4833 5042 5012 Face 10080 4833 4628 5042 Face 10081 4868 5043 2325 Face 10082 4868 5044 5043 Face 10083 5014 5044 5174 Face 10084 5014 5043 5044 Face 10085 4810 5045 1539 Face 10086 4810 5046 5045 Face 10087 2317 5046 5015 Face 10088 2317 5045 5046 Face 10089 4639 5047 5008 Face 10090 4639 2176 5047 Face 10091 2428 5048 600 Face 10092 2428 4639 5048 Face 10093 4812 5049 4811 Face 10094 5100 5048 5049 Face 10095 4336 5050 4687 Face 10096 4336 4793 5050 Face 10097 4356 5051 5050 Face 10098 4356 5018 5051 Face 10099 2944 5178 5053 Face 10100 2944 3535 5052 Face 10101 2867 5053 5178 Face 10102 2867 825 5053 Face 10103 4674 5054 5002 Face 10104 4674 5001 5054 Face 10105 4786 5055 5091 Face 10106 5119 3536 5055 Face 10107 4685 5056 4684 Face 10108 4685 5119 5056 Face 10109 1210 5376 5058 Face 10110 1210 6431 5376 Face 10111 5460 5058 5376 Face 10112 1354 1353 5058 Face 10113 292 5059 5226 Face 10114 292 5324 5059 Face 10115 1219 5060 5611 Face 10116 1219 544 5060 Face 10117 703 5061 5062 Face 10118 703 1219 5061 Face 10119 5221 5324 292 Face 10120 4463 703 5062 Face 10121 1353 5063 5058 Face 10122 1353 5221 5063 Face 10123 4898 5064 4431 Face 10124 4898 5134 5064 Face 10125 4789 5065 4645 Face 10126 4789 4911 5065 Face 10127 4645 5066 4789 Face 10128 4645 5067 5066 Face 10129 4991 5067 4791 Face 10130 4991 5066 5067 Face 10131 181 5068 1478 Face 10132 181 5118 5068 Face 10133 4788 5069 5070 Face 10134 4788 4612 5069 Face 10135 3683 5070 5069 Face 10136 3683 4918 5070 Face 10137 2346 5071 4998 Face 10138 2346 3683 5071 Face 10139 1193 5072 5071 Face 10140 1193 5073 5072 Face 10141 1194 5073 2123 Face 10142 1194 5072 5073 Face 10143 4966 5074 4687 Face 10144 4966 4549 5074 Face 10145 4549 5075 5074 Face 10146 4549 684 5075 Face 10147 2714 5076 5009 Face 10148 2714 4631 5076 Face 10149 904 5077 445 Face 10150 904 1663 5077 Face 10151 4334 5078 4968 Face 10152 4334 4624 5078 Face 10153 3338 5079 4867 Face 10154 3338 4865 5079 Face 10155 4976 5080 243 Face 10156 4976 4648 5080 Face 10157 4648 5081 5082 Face 10158 4648 4976 5081 Face 10159 4649 5082 5081 Face 10160 4649 5023 5082 Face 10161 3226 5083 4663 Face 10162 3226 5110 5083 Face 10163 4723 5084 4776 Face 10164 4723 4795 5084 Face 10165 2717 5085 5076 Face 10166 2717 782 5085 Face 10167 1297 5086 3888 Face 10168 1297 5087 5086 Face 10169 3822 5087 1297 Face 10170 3822 5088 5369 Face 10171 596 5088 1006 Face 10172 5270 5369 5088 Face 10173 5167 5089 5020 Face 10174 4663 5083 5089 Face 10175 2345 5090 4985 Face 10176 2345 5040 5090 Face 10177 4985 5091 4787 Face 10178 4985 5090 5091 Face 10179 1341 5092 4820 Face 10180 1341 5093 5092 Face 10181 2123 5093 1341 Face 10182 2123 5073 5093 Face 10183 4361 5094 4730 Face 10184 4361 4995 5094 Face 10185 4730 5175 4723 Face 10186 4730 5094 5095 Face 10187 4672 5096 5022 Face 10188 4672 4629 5096 Face 10189 4629 5097 5096 Face 10190 4629 4940 5097 Face 10191 851 5168 2029 Face 10192 851 3537 5098 Face 10193 5145 5166 5053 Face 10194 2124 4917 5099 Face 10195 4812 5100 5049 Face 10196 4812 5102 5100 Face 10197 2820 5101 4813 Face 10198 2820 833 5101 Face 10199 4814 5102 2427 Face 10200 4814 5100 5102 Face 10201 4813 5103 4814 Face 10202 4813 5101 5103 Face 10203 2713 5104 3338 Face 10204 2713 4683 5104 Face 10205 166 5105 416 Face 10206 166 5300 5105 Face 10207 3096 5106 4884 Face 10208 3096 4936 5106 Face 10209 2565 5107 5145 Face 10210 2565 4900 5107 Face 10211 2124 5108 4917 Face 10212 2124 5107 5108 Face 10213 4475 5109 4817 Face 10214 4475 4983 5109 Face 10215 4678 5110 3226 Face 10216 4678 4806 5110 Face 10217 3127 5111 240 Face 10218 3127 4896 5111 Face 10219 4896 5112 5111 Face 10220 4896 1018 5112 Face 10221 4631 5113 5143 Face 10222 4631 2714 5113 Face 10223 4768 5114 5106 Face 10224 4768 4979 5114 Face 10225 4483 5115 4794 Face 10226 4483 5116 5115 Face 10227 4939 5116 5175 Face 10228 4939 5115 5116 Face 10229 4483 5117 5116 Face 10230 4483 4795 5117 Face 10231 993 5118 181 Face 10232 993 5146 5118 Face 10233 4786 5119 5055 Face 10234 5120 5056 5119 Face 10235 4786 5120 5119 Face 10236 4786 4540 5120 Face 10237 4636 5121 5122 Face 10238 4636 4938 5121 Face 10239 4637 5122 5126 Face 10240 4637 4636 5122 Face 10241 1018 5123 5112 Face 10242 1018 1194 5123 Face 10243 4821 5124 5123 Face 10244 4821 4823 5124 Face 10245 4823 5125 5124 Face 10246 4823 4982 5125 Face 10247 4382 5126 5122 Face 10248 4382 5016 5126 Face 10249 4819 5127 2919 Face 10250 4819 5128 5127 Face 10251 4475 5128 4983 Face 10252 4475 5127 5128 Face 10253 2590 5129 2773 Face 10254 2590 4820 5129 Face 10255 4787 5130 5098 Face 10256 4787 1239 5130 Face 10257 2966 5131 601 Face 10258 2966 4984 5131 Face 10259 600 5132 5103 Face 10260 600 5048 5132 Face 10261 3101 5133 4950 Face 10262 3101 5017 5133 Face 10263 4951 5134 4558 Face 10264 4951 5064 5134 Face 10265 4945 5135 4949 Face 10266 4945 5136 5135 Face 10267 4956 5136 4945 Face 10268 4956 5137 5136 Face 10269 4957 5137 4904 Face 10270 4957 5136 5137 Face 10271 4904 5138 5165 Face 10272 4904 5137 5138 Face 10273 4663 5139 3226 Face 10274 4663 5089 5139 Face 10275 2763 5140 2177 Face 10276 2763 5034 5140 Face 10277 4817 5141 5140 Face 10278 4817 5109 5141 Face 10279 4560 5142 4879 Face 10280 4560 4562 5142 Face 10281 5005 5143 5158 Face 10282 5005 4631 5143 Face 10283 3226 5144 1839 Face 10284 3226 5139 5144 Face 10285 2124 5145 5107 Face 10286 2124 5166 5145 Face 10287 1480 5146 993 Face 10288 1480 5147 5146 Face 10289 802 5147 1480 Face 10290 802 5148 5147 Face 10291 252 5148 802 Face 10292 252 4719 5148 Face 10293 5300 5149 5105 Face 10294 5300 5433 5257 Face 10295 5105 5150 5151 Face 10296 5105 5149 5150 Face 10297 165 5151 5150 Face 10298 5278 416 5151 Face 10299 4786 5152 4540 Face 10300 4786 5091 5152 Face 10301 77 5153 107 Face 10302 77 2556 5153 Face 10303 4684 5154 5155 Face 10304 4684 5056 5154 Face 10305 4992 5155 4645 Face 10306 4992 4684 5155 Face 10307 4905 5156 5164 Face 10308 4905 5157 5156 Face 10309 3098 5157 5170 Face 10310 3098 5156 5157 Face 10311 5006 5158 4620 Face 10312 5006 5005 5158 Face 10313 4902 5159 4989 Face 10314 4902 5073 5159 Face 10315 4730 5160 4361 Face 10316 4730 4723 5160 Face 10317 4774 5161 4621 Face 10318 4774 4944 5161 Face 10319 4944 5162 4954 Face 10320 4944 4774 5162 Face 10321 4954 5163 4944 Face 10322 4954 5164 5163 Face 10323 5138 5164 5156 Face 10324 5138 5163 5164 Face 10325 5156 5165 5138 Face 10326 5156 3098 5165 Face 10327 5099 5166 2124 Face 10328 5099 2944 5166 Face 10329 5139 5167 3099 Face 10330 5139 5089 5167 Face 10331 5098 5168 851 Face 10332 5098 5130 5168 Face 10333 2588 5169 4823 Face 10334 2588 2590 5169 Face 10335 4720 5170 4627 Face 10336 4720 3098 5170 Face 10337 5508 5591 4452 Face 10338 165 5267 5171 Face 10339 4248 5172 5003 Face 10340 4248 2308 5172 Face 10341 4668 5173 4884 Face 10342 4668 4727 5173 Face 10343 2564 5174 5044 Face 10344 2564 4902 5174 Face 10345 5095 5175 4730 Face 10346 5095 4939 5175 Face 10347 1552 5259 1553 Face 10348 1552 5223 5259 Face 10349 1553 5182 1554 Face 10350 1553 5176 5182 Face 10351 5052 5178 2944 Face 10352 5052 494 5178 Face 10353 4727 5179 4728 Face 10354 4727 4668 5179 Face 10355 5923 5921 5321 Face 10356 308 5181 5225 Face 10357 5176 5181 5182 Face 10358 5176 5225 5181 Face 10359 5177 5182 5181 Face 10360 5177 1554 5182 Face 10361 690 5183 6470 Face 10362 690 3695 5183 Face 10363 689 5184 5185 Face 10364 689 3800 5184 Face 10365 1651 5185 5944 Face 10366 1651 689 5185 Face 10367 933 5186 3852 Face 10368 933 1651 5944 Face 10369 2604 5187 5188 Face 10370 2604 3177 5187 Face 10371 3641 5188 5189 Face 10372 3641 2604 5188 Face 10373 466 5189 5195 Face 10374 466 3641 5189 Face 10375 1389 5190 3752 Face 10376 1389 3861 5190 Face 10377 3164 5361 1868 Face 10378 3164 690 6470 Face 10379 3802 5192 120 Face 10380 3802 5860 5192 Face 10381 2929 5193 1022 Face 10382 2929 3801 5193 Face 10383 4299 5194 5243 Face 10384 4299 2542 5650 Face 10385 1390 5195 5196 Face 10386 1390 466 5195 Face 10387 3639 5196 5197 Face 10388 3639 1390 5196 Face 10389 1023 5543 3792 Face 10390 1023 3639 5197 Face 10391 934 5198 3866 Face 10392 934 5200 5198 Face 10393 5911 5211 5567 Face 10394 860 5201 5873 Face 10395 3740 5200 934 Face 10396 3740 3334 5200 Face 10397 2498 5212 5209 Face 10398 5228 5199 5212 Face 10399 773 5934 5206 Face 10400 773 5246 5202 Face 10401 5181 5203 5177 Face 10402 5181 308 5203 Face 10403 308 5204 5203 Face 10404 5929 5205 5926 Face 10405 5934 5938 5219 Face 10406 5202 5926 5205 Face 10407 5249 5206 5934 Face 10408 1446 5231 5206 Face 10409 279 5207 1859 Face 10410 279 2500 5207 Face 10411 2500 5208 5207 Face 10412 2500 862 5208 Face 10413 2499 5209 5212 Face 10414 2499 2500 5209 Face 10415 1445 5210 5875 Face 10416 5972 5282 5969 Face 10417 5880 5211 5911 Face 10418 5970 5952 5573 Face 10419 5201 5212 5199 Face 10420 5201 2499 5212 Face 10421 5586 5213 5215 Face 10422 5586 5254 5213 Face 10423 5646 5214 4078 Face 10424 5646 5590 5214 Face 10425 5607 5215 6454 Face 10426 5598 5596 5215 Face 10427 5600 5216 5236 Face 10428 5600 5607 5216 Face 10429 861 5217 86 Face 10430 861 5227 5217 Face 10431 145 5593 5263 Face 10432 145 5237 5218 Face 10433 5979 5769 5355 Face 10434 774 5732 5325 Face 10435 1506 5220 3 Face 10436 1506 5353 5220 Face 10437 4463 5221 1353 Face 10438 4463 5448 5221 Face 10439 1446 5222 764 Face 10440 5732 774 5222 Face 10441 5180 5223 5831 Face 10442 5180 5259 5223 Face 10443 1551 5937 5940 Face 10444 5919 5248 5831 Face 10445 5180 5225 5176 Face 10446 5180 5831 5248 Face 10447 3797 5226 5224 Face 10448 3797 3798 5226 Face 10449 860 5227 861 Face 10450 860 5873 5247 Face 10451 2498 5228 5212 Face 10452 2498 5357 5228 Face 10453 5230 5357 2498 Face 10454 1502 5220 5229 Face 10455 1502 5230 1858 Face 10456 1502 5965 5230 Face 10457 764 5231 1446 Face 10458 764 213 5231 Face 10459 6432 5567 5591 Face 10460 5908 5911 5567 Face 10461 5266 5233 5234 Face 10462 5266 5257 5233 Face 10463 5592 5234 5605 Face 10464 5592 5266 5234 Face 10465 5597 5600 5236 Face 10466 5597 5603 5235 Face 10467 2943 6465 5260 Face 10468 2943 86 6465 Face 10469 5217 5237 5238 Face 10470 5217 5218 5237 Face 10471 86 5597 5236 Face 10472 86 5217 5238 Face 10473 1264 5478 5242 Face 10474 1264 21 5478 Face 10475 5242 5240 6233 Face 10476 5242 5478 5240 Face 10477 2043 6125 541 Face 10478 2043 5242 5241 Face 10479 3756 5242 2043 Face 10480 3756 1264 5242 Face 10481 1399 5243 482 Face 10482 1399 4299 5243 Face 10483 767 5244 3699 Face 10484 767 1369 5244 Face 10485 3699 5787 5725 Face 10486 3699 5244 5787 Face 10487 5204 5246 948 Face 10488 5926 5202 5246 Face 10489 5227 5247 5251 Face 10490 5227 860 5247 Face 10491 5225 5248 5250 Face 10492 5225 5180 5248 Face 10493 1446 5732 5222 Face 10494 1446 5206 5249 Face 10495 308 5250 5253 Face 10496 308 5225 5250 Face 10497 5218 5593 145 Face 10498 5218 5227 5251 Face 10499 948 5252 1258 Face 10500 948 5246 5252 Face 10501 5204 5926 5246 Face 10502 5204 308 5253 Face 10503 126 5588 3136 Face 10504 126 455 5588 Face 10505 1015 6081 6078 Face 10506 1015 100 6081 Face 10507 2389 5589 525 Face 10508 2389 1015 6078 Face 10509 5149 5257 5266 Face 10510 5149 5300 5257 Face 10511 5317 5595 5315 Face 10512 5317 5819 5595 Face 10513 5176 5259 5180 Face 10514 5176 1553 5259 Face 10515 862 5260 5208 Face 10516 862 2943 5260 Face 10517 626 6274 5352 Face 10518 626 1510 6274 Face 10519 863 5262 5609 Face 10520 863 5358 5262 Face 10521 5171 5263 5264 Face 10522 5171 145 5263 Face 10523 165 5264 5151 Face 10524 165 5171 5264 Face 10525 1858 5265 279 Face 10526 1858 5230 5265 Face 10527 263 5266 5592 Face 10528 263 5149 5266 Face 10529 5150 5267 165 Face 10530 5150 263 5267 Face 10531 1862 5268 3162 Face 10532 1862 1096 5268 Face 10533 1242 5269 210 Face 10534 1242 683 5269 Face 10535 596 5270 5088 Face 10536 596 1346 5270 Face 10537 3648 5271 2777 Face 10538 3648 5322 6236 Face 10539 5964 5272 5375 Face 10540 6017 5619 6180 Face 10541 6293 6296 5275 Face 10542 704 6452 5273 Face 10543 5277 5274 5720 Face 10544 2182 6458 6360 Face 10545 6289 5275 6296 Face 10546 6176 5274 6062 Face 10547 6149 6159 6162 Face 10548 6088 6139 6146 Face 10549 5658 6153 1043 Face 10550 5658 6142 6153 Face 10551 5264 5278 5151 Face 10552 5264 5591 5508 Face 10553 1632 5710 5833 Face 10554 5606 5292 6060 Face 10555 6025 6022 5849 Face 10556 6043 6048 5614 Face 10557 3804 5281 66 Face 10558 3804 5759 5281 Face 10559 5918 5924 6354 Face 10560 5770 5608 5766 Face 10561 6308 5771 6284 Face 10562 6314 5281 6311 Face 10563 6290 5284 6158 Face 10564 5791 5364 5602 Face 10565 6239 6353 5489 Face 10566 5475 5384 6466 Face 10567 5425 5534 5256 Face 10568 6258 6248 6003 Face 10569 6357 5792 6429 Face 10570 5856 6038 5858 Face 10571 5700 5690 5698 Face 10572 5700 5670 6438 Face 10573 6114 6111 5534 Face 10574 5853 5765 5855 Face 10575 6277 6474 6169 Face 10576 3794 6412 6047 Face 10577 6066 6184 5797 Face 10578 6271 6267 6256 Face 10579 2011 5708 5513 Face 10580 2011 2012 6336 Face 10581 5704 6446 5297 Face 10582 5816 6277 5293 Face 10583 5511 6318 2013 Face 10584 2012 6171 5294 Face 10585 6193 5538 6267 Face 10586 5666 6322 5295 Face 10587 6243 6330 6278 Face 10588 6163 6329 5509 Face 10589 5291 5297 6446 Face 10590 5666 5295 6186 Face 10591 592 5298 6145 Face 10592 592 2407 5298 Face 10593 6148 5299 6144 Face 10594 6148 6152 5299 Face 10595 893 5300 166 Face 10596 893 5312 5300 Face 10597 5583 5531 93 Face 10598 1240 3657 5301 Face 10599 5587 5302 5419 Face 10600 5587 5304 5302 Face 10601 855 5303 5997 Face 10602 5305 5368 6049 Face 10603 4428 5304 612 Face 10604 4428 1027 5304 Face 10605 5849 5456 5465 Face 10606 5849 6022 5456 Face 10607 5942 5951 5957 Face 10608 5337 5945 5935 Face 10609 1373 5307 2554 Face 10610 1373 6445 5307 Face 10611 2554 5308 5310 Face 10612 2554 5307 5308 Face 10613 5897 5819 5317 Face 10614 5897 5808 5819 Face 10615 1517 5310 893 Face 10616 1517 2554 5310 Face 10617 5608 6002 5999 Face 10618 5313 6035 5851 Face 10619 3806 5312 5310 Face 10620 3806 4354 5312 Face 10621 5920 5313 5851 Face 10622 6025 6035 5313 Face 10623 5695 5314 5681 Face 10624 5695 1300 5314 Face 10625 1536 5315 155 Face 10626 1536 5317 5315 Face 10627 5686 5902 5821 Face 10628 1300 5399 5316 Face 10629 524 5317 1536 Face 10630 524 5897 5317 Face 10631 169 5318 5872 Face 10632 169 873 5318 Face 10633 1014 6341 5818 Face 10634 6232 5847 5319 Face 10635 5471 5780 5477 Face 10636 5912 5942 5751 Face 10637 5743 5321 5921 Face 10638 5743 5740 5321 Face 10639 3515 5322 3648 Face 10640 3515 5491 5322 Face 10641 5306 5928 5925 Face 10642 5306 5741 5928 Face 10643 5448 5324 5221 Face 10644 6026 6011 6023 Face 10645 5761 5325 5732 Face 10646 5941 5323 5945 Face 10647 6011 6017 5272 Face 10648 6037 5062 5617 Face 10649 1577 5719 2687 Face 10650 1577 5503 5719 Face 10651 2219 5328 620 Face 10652 2219 2862 5333 Face 10653 5282 5329 5311 Face 10654 5282 5773 5329 Face 10655 5752 5446 6287 Face 10656 5703 5915 5330 Face 10657 5991 5331 5988 Face 10658 6354 5924 5913 Face 10659 5625 6018 5630 Face 10660 6396 5326 6462 Face 10661 5328 5333 5620 Face 10662 5328 2219 5333 Face 10663 5975 5988 5331 Face 10664 5325 5761 5764 Face 10665 5773 5335 5329 Face 10666 5331 5993 5335 Face 10667 2220 5811 6015 Face 10668 5620 5915 5703 Face 10669 5774 5948 5912 Face 10670 5987 5983 5948 Face 10671 5749 5739 5705 Face 10672 5343 2220 5703 Face 10673 2473 5339 5341 Face 10674 2473 5623 5339 Face 10675 1505 5916 5913 Face 10676 5987 5948 5774 Face 10677 6228 6217 5739 Face 10678 5742 6396 5341 Face 10679 1505 5776 5778 Face 10680 1505 5996 5993 Face 10681 6217 5343 5338 Face 10682 5811 2220 5343 Face 10683 6039 6036 114 Face 10684 1301 5904 5344 Face 10685 5679 5677 6405 Face 10686 6426 496 5681 Face 10687 6201 6204 857 Face 10688 1265 5719 5723 Face 10689 5314 5675 5692 Face 10690 5904 1301 5675 Face 10691 6392 5348 5346 Face 10692 2686 5488 6398 Face 10693 1173 5349 5828 Face 10694 1173 6408 5349 Face 10695 5486 5459 6295 Face 10696 5486 5463 5459 Face 10697 5635 5888 2935 Face 10698 6082 5683 5351 Face 10699 1298 5352 148 Face 10700 1298 626 5352 Face 10701 774 5353 1506 Face 10702 774 5325 5408 Face 10703 6104 5455 6294 Face 10704 6414 5735 6101 Face 10705 1445 5355 5210 Face 10706 1445 5979 5355 Face 10707 869 6089 6427 Face 10708 5887 6093 6089 Face 10709 5229 5965 1502 Face 10710 5229 1445 5965 Face 10711 471 5854 863 Face 10712 471 2904 5854 Face 10713 3163 5359 5361 Face 10714 3163 5268 5359 Face 10715 5817 5360 5529 Face 10716 2633 6428 5360 Face 10717 6470 5361 3164 Face 10718 6470 3163 5361 Face 10719 487 5362 485 Face 10720 487 1211 5362 Face 10721 3698 5363 5727 Face 10722 3698 5814 5363 Face 10723 2597 5364 1296 Face 10724 2597 5502 5364 Face 10725 771 5365 462 Face 10726 771 6440 5365 Face 10727 6363 5366 6367 Face 10728 6363 5261 5366 Face 10729 2131 6431 1210 Face 10730 2131 5362 6431 Face 10731 5557 5368 5560 Face 10732 5557 6049 5368 Face 10733 5087 5369 2638 Face 10734 5087 3822 5369 Face 10735 5564 5372 5556 Face 10736 5564 5572 5370 Face 10737 3716 5380 208 Face 10738 6096 6384 5378 Face 10739 5370 5372 5564 Face 10740 5370 5557 5372 Face 10741 5788 5385 5471 Face 10742 5788 6397 5782 Face 10743 3354 5374 5301 Face 10744 3354 6134 5374 Face 10745 1126 5375 6194 Face 10746 1126 5964 5375 Face 10747 5057 5376 6431 Face 10748 5057 2298 6055 Face 10749 6180 5377 5375 Face 10750 6180 5619 5377 Face 10751 5380 6134 3354 Face 10752 5371 6096 5558 Face 10753 1127 6011 5272 Face 10754 1127 6023 6011 Face 10755 5371 5380 3716 Face 10756 5371 6134 5380 Face 10757 5280 6044 6045 Face 10758 6196 6157 6199 Face 10759 2860 5382 1349 Face 10760 2860 592 6145 Face 10761 6058 5383 6072 Face 10762 6058 2222 6061 Face 10763 5690 5673 5698 Face 10764 5690 6151 5673 Face 10765 5782 5616 5788 Face 10766 6436 5280 6045 Face 10767 5892 6394 5467 Face 10768 6127 6160 6157 Face 10769 5373 5782 5785 Face 10770 5390 5280 6436 Face 10771 6070 5637 6074 Face 10772 6405 5345 5637 Face 10773 5695 5399 1300 Face 10774 496 5394 6380 Face 10775 5373 5393 5782 Face 10776 5373 5673 6151 Face 10777 411 5418 5671 Face 10778 411 5668 5418 Face 10779 5697 5399 5695 Face 10780 6377 5636 5392 Face 10781 6151 5393 5373 Face 10782 5390 6436 5393 Face 10783 6401 5394 496 Face 10784 6404 6380 5394 Face 10785 5671 5395 6468 Face 10786 6377 5687 5395 Face 10787 5896 5889 5612 Face 10788 5386 5398 5688 Face 10789 6409 5679 5400 Face 10790 5672 5671 6468 Face 10791 5694 5398 5386 Face 10792 778 5414 5398 Face 10793 5687 5399 5697 Face 10794 5409 5669 5399 Face 10795 5406 6417 5637 Face 10796 5406 5676 5400 Face 10797 5413 5665 6222 Face 10798 5413 6067 5665 Face 10799 5670 5402 778 Face 10800 6279 6282 5411 Face 10801 6070 5403 6424 Face 10802 6070 5396 5403 Face 10803 776 5903 5642 Face 10804 5711 6369 6373 Face 10805 5687 5405 5399 Face 10806 5392 5519 5405 Face 10807 415 5406 6424 Face 10808 415 5676 5406 Face 10809 5519 6364 5412 Face 10810 6369 5711 5407 Face 10811 5353 5979 5229 Face 10812 5353 774 5408 Face 10813 5405 5409 5399 Face 10814 5405 5519 5409 Face 10815 6097 5410 5524 Face 10816 6081 6058 6072 Face 10817 5660 6441 5404 Face 10818 6275 6279 5411 Face 10819 5409 5412 5401 Face 10820 5409 5519 5412 Face 10821 5521 5413 5415 Face 10822 5407 5410 6064 Face 10823 5391 5684 5826 Face 10824 5416 415 5653 Face 10825 6222 5415 5413 Face 10826 5412 6364 5415 Face 10827 5391 5416 6419 Face 10828 5391 5668 5416 Face 10829 5918 5786 5779 Face 10830 1503 5914 5784 Face 10831 5822 5418 5668 Face 10832 5822 5824 5418 Face 10833 6244 5419 6247 Face 10834 6244 5587 5419 Face 10835 6385 5487 6004 Face 10836 5933 5417 5910 Face 10837 5826 5421 5822 Face 10838 5655 5657 5421 Face 10839 5523 6348 5525 Face 10840 6315 6362 6348 Face 10841 5430 5423 5421 Face 10842 5651 6276 6280 Face 10843 5290 6047 6412 Face 10844 5525 6252 6051 Face 10845 5644 5526 5713 Face 10846 6263 6003 5425 Face 10847 3707 5426 1314 Face 10848 3707 5863 5426 Face 10849 5411 6455 6275 Face 10850 5545 6254 5427 Face 10851 5747 5428 5429 Face 10852 6202 6245 5431 Face 10853 6001 6004 5420 Face 10854 6008 5747 5429 Face 10855 5657 5430 5421 Face 10856 6255 5423 5430 Face 10857 5428 6242 5429 Face 10858 5428 6202 5431 Face 10859 5427 5652 5654 Face 10860 6261 5430 5652 Face 10861 4354 5433 5312 Face 10862 4354 102 5433 Face 10863 2596 5722 5718 Face 10864 2596 1349 5722 Face 10865 765 5435 948 Face 10866 765 3173 5435 Face 10867 2405 5436 5444 Face 10868 2405 5434 5436 Face 10869 1999 5437 186 Face 10870 1999 946 5437 Face 10871 1655 5438 5584 Face 10872 1655 5577 5438 Face 10873 5954 5439 5200 Face 10874 5954 5971 5439 Face 10875 1997 5440 5580 Face 10876 1997 5437 5440 Face 10877 3739 5441 491 Face 10878 3739 2968 5441 Face 10879 179 5442 2417 Face 10880 179 5718 5442 Face 10881 3813 5443 363 Face 10882 3813 5307 6445 Face 10883 5707 5734 5701 Face 10884 5736 5716 5444 Face 10885 5723 5445 1265 Face 10886 6302 5447 5445 Face 10887 5701 5446 5479 Face 10888 5701 5867 5446 Face 10889 6286 5447 6302 Face 10890 6286 6312 5717 Face 10891 5062 5448 4463 Face 10892 5062 6037 5448 Face 10893 2896 6215 6295 Face 10894 5451 3714 6215 Face 10895 6099 6093 5887 Face 10896 6335 6331 5468 Face 10897 2896 5451 6215 Face 10898 5454 6091 5451 Face 10899 5890 5452 6093 Face 10900 5354 5454 5457 Face 10901 5303 6019 6013 Face 10902 6032 5849 5465 Face 10903 2896 5454 5451 Face 10904 2896 6246 5454 Face 10905 5452 5457 5468 Face 10906 5452 5890 5457 Face 10907 5494 6118 5466 Face 10908 6052 5465 5456 Face 10909 6246 5457 5454 Face 10910 6246 5468 5457 Face 10911 1260 5458 6346 Face 10912 1260 6244 5458 Face 10913 6323 5459 5463 Face 10914 6323 6327 5459 Face 10915 5462 5460 5458 Face 10916 5462 5058 5460 Face 10917 5463 6400 5350 Face 10918 6052 6118 5494 Face 10919 1354 5462 4465 Face 10920 1354 5058 5462 Face 10921 6416 5463 5486 Face 10922 6416 6400 5463 Face 10923 868 6104 6294 Face 10924 5882 5356 5470 Face 10925 6016 5465 6054 Face 10926 6019 6032 5465 Face 10927 6121 5466 6118 Face 10928 5886 868 5466 Face 10929 6221 5882 5470 Face 10930 6107 6110 6113 Face 10931 5450 6101 5735 Face 10932 5450 5452 6101 Face 10933 5569 5978 5553 Face 10934 5569 5579 5469 Face 10935 5464 6414 6101 Face 10936 5464 6085 6414 Face 10937 6421 5786 1503 Face 10938 6421 5780 5471 Face 10939 4447 6337 6345 Face 10940 4447 5370 6337 Face 10941 5477 5473 5471 Face 10942 5285 5384 5473 Face 10943 4449 5474 5476 Face 10944 5566 5572 5564 Face 10945 5287 5475 6466 Face 10946 5287 5813 5794 Face 10947 4451 5476 4450 Face 10948 4451 4449 5476 Face 10949 6466 5496 5287 Face 10950 5285 5473 5477 Face 10951 5239 5478 3971 Face 10952 5239 5240 5478 Face 10953 5336 6205 5745 Face 10954 5749 5705 5479 Face 10955 4450 5480 5239 Face 10956 4450 5476 5480 Face 10957 775 5481 5431 Face 10958 6412 3794 5856 Face 10959 5240 5482 6233 Face 10960 5240 5480 5482 Face 10961 5492 5483 5490 Face 10962 5492 5461 5483 Face 10963 6385 5489 5487 Face 10964 6385 6239 5489 Face 10965 5549 5562 5560 Face 10966 4446 5482 5485 Face 10967 6303 6298 6309 Face 10968 856 5483 6298 Face 10969 5910 5487 5933 Face 10970 5420 6004 5487 Face 10971 4445 5488 5549 Face 10972 4445 856 5488 Face 10973 5780 5870 5477 Face 10974 5933 5487 5489 Face 10975 5368 5490 4445 Face 10976 5368 5305 5490 Face 10977 3645 5491 3515 Face 10978 3645 5493 5491 Face 10979 5305 5492 5490 Face 10980 6054 5465 6052 Face 10981 3646 5493 3645 Face 10982 5622 3644 5493 Face 10983 6297 5494 6291 Face 10984 6297 6052 5494 Face 10985 3506 5495 5497 Face 10986 3506 5190 5495 Face 10987 5866 5496 6466 Face 10988 5866 5498 6429 Face 10989 3647 5497 5499 Face 10990 3647 3506 5497 Face 10991 5489 5870 5484 Face 10992 5489 6353 5870 Face 10993 3653 5499 5622 Face 10994 3653 3647 5499 Face 10995 5643 5639 5641 Face 10996 5643 5503 5639 Face 10997 5516 5760 5294 Face 10998 5516 5504 5512 Face 10999 408 5502 2597 Face 11000 408 5501 5502 Face 11001 2783 5503 1577 Face 11002 2783 5639 5503 Face 11003 6168 5504 5516 Face 11004 5602 5502 5504 Face 11005 2814 5505 5501 Face 11006 2814 1638 5505 Face 11007 4452 5506 5508 Face 11008 4452 4448 5506 Face 11009 2008 5507 5287 Face 11010 6402 5702 5507 Face 11011 5552 5508 5506 Face 11012 5278 5264 5508 Face 11013 6334 6322 5666 Face 11014 5296 5706 6147 Face 11015 6437 5510 3796 Face 11016 6437 6197 6371 Face 11017 6329 6250 5509 Face 11018 2012 5294 5767 Face 11019 5501 5512 5504 Face 11020 5501 5505 5512 Face 11021 5284 5513 5708 Face 11022 5602 5504 6168 Face 11023 5294 5514 5767 Face 11024 5294 5760 5514 Face 11025 5506 5515 5552 Face 11026 5506 5472 5515 Face 11027 6171 5516 5294 Face 11028 6171 6168 5516 Face 11029 4453 5517 4832 Face 11030 4453 5568 5517 Face 11031 6362 6260 6252 Face 11032 6362 6356 6260 Face 11033 526 5519 5392 Face 11034 526 6364 5519 Face 11035 6147 5520 6334 Face 11036 5509 5522 6326 Face 11037 5407 5521 6369 Face 11038 5407 6064 5521 Face 11039 5511 6321 6318 Face 11040 5799 6257 5522 Face 11041 6388 6349 6211 Face 11042 6388 6379 6349 Face 11043 5711 5524 5407 Face 11044 5711 6283 5524 Face 11045 5290 5714 6047 Face 11046 6245 5523 5714 Face 11047 6102 5526 6263 Face 11048 6102 5524 5526 Face 11049 5548 5837 5715 Face 11050 5853 5289 5857 Face 11051 3801 5528 5193 Face 11052 6418 5192 5532 Face 11053 1241 5529 6195 Face 11054 1241 5817 5529 Face 11055 2970 5530 3707 Face 11056 2970 5532 5530 Face 11057 5565 5531 5583 Face 11058 5565 6475 5531 Face 11059 6413 5532 2970 Face 11060 6413 6418 5532 Face 11061 93 5533 771 Face 11062 93 5531 5533 Face 11063 5286 5534 5425 Face 11064 5286 6114 5534 Face 11065 6347 6461 6430 Face 11066 6449 1241 5535 Face 11067 5837 5536 5645 Face 11068 5837 5548 5536 Face 11069 2646 5537 5190 Face 11070 2646 5539 5537 Face 11071 5295 6189 6186 Face 11072 6313 5527 6183 Face 11073 5193 5539 2646 Face 11074 5193 5528 5539 Face 11075 2632 5540 5365 Face 11076 2632 5245 5540 Face 11077 2928 5541 5197 Face 11078 2928 5539 5541 Face 11079 6282 6268 5545 Face 11080 6271 6256 5542 Face 11081 5197 5543 1023 Face 11082 5197 5541 5543 Face 11083 5795 6448 5783 Face 11084 5245 6187 6448 Face 11085 5411 5654 6455 Face 11086 5411 6282 5545 Face 11087 5847 5546 5843 Face 11088 6226 1173 5546 Face 11089 5641 5547 2782 Face 11090 1266 6319 5547 Face 11091 2013 5859 5511 Face 11092 5853 5857 5859 Face 11093 5559 6433 5547 Face 11094 5559 5562 5549 Face 11095 2696 5550 1883 Face 11096 2696 1881 5550 Face 11097 5241 6125 2043 Face 11098 6233 5554 5551 Face 11099 5278 5552 4453 Face 11100 5278 5508 5552 Face 11101 5453 6019 5465 Face 11102 5453 5578 5553 Face 11103 5482 5554 6233 Face 11104 5482 4446 5554 Face 11105 3716 5555 5371 Face 11106 3716 6073 5555 Face 11107 5485 5556 4446 Face 11108 5485 5474 5556 Face 11109 4447 5557 5370 Face 11110 4447 6049 5557 Face 11111 5378 5558 6096 Face 11112 6382 5374 6134 Face 11113 4446 5559 5554 Face 11114 4446 5562 5559 Face 11115 5372 5560 5562 Face 11116 5372 5557 5560 Face 11117 5891 5561 6137 Face 11118 6395 6457 6391 Face 11119 5556 5562 4446 Face 11120 5556 5372 5562 Face 11121 6344 6460 5696 Face 11122 6344 6472 5563 Face 11123 5474 5564 5556 Face 11124 5474 5566 5564 Face 11125 5696 5565 5583 Face 11126 5696 6460 5565 Face 11127 4449 5566 5474 Face 11128 4449 5568 5566 Face 11129 5232 5567 5211 Face 11130 5232 4452 5567 Face 11131 5515 5568 5552 Face 11132 5515 5566 5568 Face 11133 5581 5569 5578 Face 11134 5581 5579 5569 Face 11135 5878 5880 5871 Face 11136 5878 5947 5570 Face 11137 6403 5571 2695 Face 11138 842 1656 5571 Face 11139 5472 5572 5515 Face 11140 5472 5575 6337 Face 11141 5967 5981 5469 Face 11142 5967 5977 5981 Face 11143 2695 5574 5550 Face 11144 2695 5571 5574 Face 11145 4448 5575 5472 Face 11146 4448 5579 5575 Face 11147 5469 5978 5569 Face 11148 5469 5981 5978 Face 11149 2693 5577 1655 Face 11150 2693 5574 5577 Face 11151 4447 6040 6049 Face 11152 4447 6345 6040 Face 11153 5232 5579 4448 Face 11154 5232 5469 5579 Face 11155 1655 5580 2693 Face 11156 1655 5582 5580 Face 11157 6345 5581 6040 Face 11158 5575 5579 5581 Face 11159 944 5582 5834 Face 11160 944 5580 5582 Face 11161 1240 5583 93 Face 11162 1240 5301 5583 Face 11163 1324 5584 5595 Face 11164 6406 5582 5584 Face 11165 5304 5585 2982 Face 11166 5304 1027 5585 Face 11167 3136 5590 5646 Face 11168 3136 5588 5590 Face 11169 612 5587 4466 Face 11170 612 5304 5587 Face 11171 5254 5588 3137 Face 11172 5254 6386 5588 Face 11173 5864 6078 5861 Face 11174 5864 5862 5589 Face 11175 6386 5590 5588 Face 11176 6386 5214 5590 Face 11177 5263 5591 5264 Face 11178 5263 5593 5591 Face 11179 310 5603 5597 Face 11180 310 5601 5603 Face 11181 5251 5593 5218 Face 11182 6432 5591 5593 Face 11183 1157 5594 1158 Face 11184 1157 5243 5594 Face 11185 5839 5595 5819 Face 11186 5839 1324 5595 Face 11187 5214 5596 5594 Face 11188 5214 6386 5596 Face 11189 5238 5597 86 Face 11190 5238 310 5597 Face 11191 1158 5598 5605 Face 11192 1158 5596 5598 Face 11193 2620 5599 6208 Face 11194 6378 6374 6383 Face 11195 5235 5600 5597 Face 11196 5235 5607 5600 Face 11197 263 5601 5267 Face 11198 263 5592 5601 Face 11199 6165 5602 6168 Face 11200 6165 5791 5602 Face 11201 5592 5603 5601 Face 11202 5592 5605 5603 Face 11203 6290 5604 5284 Face 11204 5789 6423 5791 Face 11205 5235 5605 5598 Face 11206 5235 5603 5605 Face 11207 6063 5606 6060 Face 11208 6320 6290 6158 Face 11209 5598 5607 5235 Face 11210 5598 5215 5607 Face 11211 5846 5920 5922 Face 11212 6025 5313 5920 Face 11213 5216 6454 5262 Face 11214 5216 5607 6454 Face 11215 387 5610 1159 Face 11216 387 5609 5610 Face 11217 6024 6028 6383 Face 11218 6024 5332 6028 Face 11219 6121 5886 5466 Face 11220 5894 5896 5612 Face 11221 5632 6021 2474 Face 11222 2375 1128 5621 Face 11223 6124 5614 5894 Face 11224 6124 6043 5614 Face 11225 5332 5615 6034 Face 11226 5332 5613 5615 Face 11227 6048 6045 6044 Face 11228 5385 5788 5616 Face 11229 5326 6034 6462 Face 11230 5326 5379 6034 Face 11231 5628 5618 5625 Face 11232 5628 5328 5618 Face 11233 6219 5619 6216 Face 11234 6219 6237 5619 Face 11235 2220 5620 5703 Face 11236 2220 5618 5620 Face 11237 6021 5630 6018 Face 11238 6021 5632 5630 Face 11239 3646 5622 5493 Face 11240 3646 3653 5622 Face 11241 5615 5623 2473 Face 11242 5615 5613 5623 Face 11243 407 5624 2621 Face 11244 407 5627 5624 Face 11245 6015 5625 5618 Face 11246 6015 6018 5625 Face 11247 498 5626 5629 Face 11248 6467 1837 5626 Face 11249 2375 5627 407 Face 11250 2375 5621 5627 Face 11251 2472 5628 5625 Face 11252 2472 2618 5628 Face 11253 6347 6449 6461 Face 11254 3352 498 5629 Face 11255 5621 5630 5632 Face 11256 5621 2472 5630 Face 11257 6475 5877 3352 Face 11258 3353 5884 5877 Face 11259 5627 5632 6374 Face 11260 5627 5621 5632 Face 11261 6450 5677 5347 Face 11262 6450 6405 5677 Face 11263 5396 5682 5403 Face 11264 5731 5467 6394 Face 11265 870 5635 2935 Face 11266 6086 5345 5635 Face 11267 5906 5636 5389 Face 11268 5903 5711 6373 Face 11269 6083 5637 6086 Face 11270 6083 6074 5637 Face 11271 5691 5638 5688 Face 11272 5691 6419 5638 Face 11273 5500 5639 3742 Face 11274 5500 5641 5639 Face 11275 3954 5640 1879 Face 11276 3954 6358 5640 Face 11277 1266 5641 5500 Face 11278 1266 5547 5641 Face 11279 6441 5642 5404 Face 11280 6441 6469 5642 Face 11281 2782 5643 5641 Face 11282 2782 6392 5643 Face 11283 6276 5644 5713 Face 11284 6258 6003 5644 Face 11285 5286 6117 6114 Face 11286 5286 6248 6117 Face 11287 2541 5646 311 Face 11288 2541 3136 5646 Face 11289 6259 5647 6262 Face 11290 6066 6117 5647 Face 11291 4078 5648 5646 Face 11292 4078 5194 5648 Face 11293 6265 5649 5651 Face 11294 6262 6248 6258 Face 11295 5194 5650 5648 Face 11296 5194 4299 5650 Face 11297 6261 6255 5430 Face 11298 6261 6265 5651 Face 11299 5657 5652 5430 Face 11300 5657 5654 5652 Face 11301 5684 6419 5691 Face 11302 5684 5391 6419 Face 11303 5545 5654 5411 Face 11304 5545 5427 5654 Face 11305 5659 5826 5684 Face 11306 5659 5432 5655 Face 11307 2538 5656 2535 Face 11308 2538 1205 5656 Face 11309 6455 5657 5655 Face 11310 6455 5654 5657 Face 11311 6179 5658 1043 Face 11312 6179 6289 5658 Face 11313 5402 5659 5414 Face 11314 5402 5432 5659 Face 11315 5824 5660 5418 Face 11316 5824 5423 5660 Face 11317 6428 5661 5360 Face 11318 5086 5087 5661 Face 11319 5404 5662 5660 Face 11320 5903 6373 5906 Face 11321 2537 5663 5656 Face 11322 2537 6393 5663 Face 11323 6422 5798 414 Face 11324 777 5704 5664 Face 11325 6225 5665 5667 Face 11326 6225 6222 5665 Face 11327 5291 5666 5297 Face 11328 5291 6334 5666 Face 11329 5845 5667 6270 Face 11330 5845 6225 5667 Face 11331 415 5668 411 Face 11332 415 5416 5668 Face 11333 5316 5669 1014 Face 11334 5316 5399 5669 Face 11335 6272 5670 6422 Face 11336 6376 5402 5670 Face 11337 5389 5671 5662 Face 11338 5389 5395 5671 Face 11339 411 5676 415 Face 11340 411 5671 5672 Face 11341 5785 5673 5373 Face 11342 5785 5796 5673 Face 11343 5397 6404 5394 Face 11344 5397 6409 6468 Face 11345 5347 5683 6082 Face 11346 5347 5692 5683 Face 11347 5672 5676 411 Face 11348 5672 5400 5676 Face 11349 5633 5677 5679 Face 11350 5820 5347 5677 Face 11351 413 5678 5881 Face 11352 413 5631 5678 Face 11353 6415 5679 6409 Face 11354 6415 5633 5679 Face 11355 6050 5805 413 Face 11356 871 1301 6046 Face 11357 5820 5692 5347 Face 11358 5633 6426 5681 Face 11359 6394 5682 5396 Face 11360 5634 5638 5682 Face 11361 5675 5683 5692 Face 11362 5675 871 5683 Face 11363 5414 5684 5691 Face 11364 5414 5659 5684 Face 11365 5638 5685 5682 Face 11366 5638 5653 5685 Face 11367 5900 5686 5904 Face 11368 5900 5902 5686 Face 11369 5392 5687 6377 Face 11370 5392 5405 5687 Face 11371 5634 5688 5638 Face 11372 5634 5892 6464 Face 11373 5314 5689 5675 Face 11374 5314 1300 5689 Face 11375 5288 6438 5670 Face 11376 5288 6443 6438 Face 11377 5398 5691 5688 Face 11378 5398 5414 5691 Face 11379 5681 5692 5820 Face 11380 5681 5314 5692 Face 11381 5395 5693 5674 Face 11382 5395 5687 5693 Face 11383 778 5694 5288 Face 11384 778 5398 5694 Face 11385 5699 5695 5681 Face 11386 5699 5697 5695 Face 11387 5301 5696 5583 Face 11388 5301 5374 5696 Face 11389 6380 5697 5699 Face 11390 5693 5687 5697 Face 11391 5796 5698 5673 Face 11392 5794 5800 5698 Face 11393 496 5699 5681 Face 11394 496 6380 5699 Face 11395 6012 5700 5698 Face 11396 6012 5798 5700 Face 11397 5705 5701 5479 Face 11398 5705 5707 5701 Face 11399 5296 5702 5706 Face 11400 5296 5291 5702 Face 11401 5338 5703 5330 Face 11402 5338 5343 5703 Face 11403 5813 5704 777 Face 11404 5507 6446 5704 Face 11405 5737 5705 5739 Face 11406 5737 5707 5705 Face 11407 5816 6402 5507 Face 11408 5816 5293 6402 Face 11409 2416 5736 5330 Face 11410 2416 5716 5736 Face 11411 6336 6332 2011 Face 11412 5292 6328 6332 Face 11413 5917 5709 2416 Face 11414 5917 1081 5709 Face 11415 6172 6060 6128 Face 11416 5279 5424 6411 Face 11417 776 5711 5903 Face 11418 776 6283 5711 Face 11419 6051 5712 5714 Face 11420 5424 5279 6053 Face 11421 5642 6280 776 Face 11422 5642 6469 6280 Face 11423 5525 5714 5523 Face 11424 5525 6051 5714 Face 11425 5511 6227 6230 Face 11426 5511 5859 6227 Face 11427 5442 5716 5709 Face 11428 5442 2405 5716 Face 11429 5447 5717 6218 Face 11430 5447 6286 5717 Face 11431 2405 5718 5434 Face 11432 2405 5442 5718 Face 11433 5327 5719 5503 Face 11434 5327 5723 5719 Face 11435 5276 5720 5724 Face 11436 5276 5277 5720 Face 11437 5445 5721 6201 Face 11438 5445 5447 5721 Face 11439 5434 5722 2406 Face 11440 5434 5718 5722 Face 11441 5346 5723 5327 Face 11442 6302 5445 5723 Face 11443 5865 5724 5720 Face 11444 5436 5434 5724 Face 11445 1310 5725 499 Face 11446 1310 3699 5725 Face 11447 5759 5726 5762 Face 11448 5759 5757 5726 Face 11449 499 6451 6367 Face 11450 499 5725 6451 Face 11451 6095 5862 6105 Face 11452 6095 5729 5862 Face 11453 5726 5729 2799 Face 11454 5726 5757 5729 Face 11455 5735 5730 5450 Face 11456 5735 5388 5730 Face 11457 5396 5731 6394 Face 11458 6074 5733 5731 Face 11459 5249 5732 1446 Face 11460 5249 5761 5732 Face 11461 5388 6342 5730 Face 11462 5388 6071 5733 Face 11463 5444 5734 5707 Face 11464 5444 5436 5734 Face 11465 5356 5735 5470 Face 11466 5356 5388 5735 Face 11467 5707 5736 5444 Face 11468 5707 5737 5736 Face 11469 5330 5737 5338 Face 11470 5330 5736 5737 Face 11471 5747 6202 5428 Face 11472 307 5510 5738 Face 11473 5338 5739 6217 Face 11474 5338 5737 5739 Face 11475 5744 5989 5992 Face 11476 5306 5321 5740 Face 11477 5420 5755 5753 Face 11478 5751 5942 5957 Face 11479 5749 6228 5739 Face 11480 6234 5619 6237 Face 11481 6370 5995 5746 Face 11482 6370 5998 5995 Face 11483 5961 5985 5741 Face 11484 5961 5958 5744 Face 11485 5377 6238 5750 Face 11486 5377 6234 6238 Face 11487 6194 5746 1126 Face 11488 6194 3796 5746 Face 11489 6005 5747 6008 Face 11490 307 5738 5747 Face 11491 5375 5748 6194 Face 11492 5375 5377 5748 Face 11493 5336 5749 6205 Face 11494 5336 6228 5749 Face 11495 704 6304 6452 Face 11496 6299 6442 5750 Face 11497 5420 5910 5755 Face 11498 5420 5487 5910 Face 11499 5479 6205 5749 Face 11500 5479 5446 5752 Face 11501 5985 5753 5755 Face 11502 5744 5992 5753 Face 11503 6220 5754 5756 Face 11504 6220 5752 5754 Face 11505 5957 5755 5751 Face 11506 5957 5985 5755 Face 11507 6304 5756 6452 Face 11508 6304 6307 5756 Face 11509 779 5757 2800 Face 11510 779 5728 5757 Face 11511 5505 5758 5512 Face 11512 5505 1638 6284 Face 11513 2800 5759 3276 Face 11514 2800 5757 5759 Face 11515 5512 5760 5516 Face 11516 5512 5758 5760 Face 11517 5219 5761 5249 Face 11518 5219 5334 5761 Face 11519 5281 5762 6311 Face 11520 5281 5759 5762 Face 11521 6318 5768 2013 Face 11522 5514 5760 5763 Face 11523 5334 5764 5761 Face 11524 5334 5342 5764 Face 11525 6311 5765 5768 Face 11526 6311 5762 5765 Face 11527 5999 5766 5608 Face 11528 5999 5996 5766 Face 11529 6230 6321 5511 Face 11530 6325 6132 5767 Face 11531 5763 5775 5772 Face 11532 5763 5771 5775 Face 11533 5982 5769 5408 Face 11534 5982 5988 5975 Face 11535 5918 5770 5924 Face 11536 5918 5779 5922 Face 11537 5283 5771 6308 Face 11538 5283 5775 5771 Face 11539 5514 5772 6129 Face 11540 5514 5763 5772 Face 11541 5331 5773 5975 Face 11542 5331 5335 5773 Face 11543 5340 5914 1503 Face 11544 5916 1505 5778 Face 11545 5768 5775 5283 Face 11546 5768 6318 5775 Face 11547 5991 5993 5331 Face 11548 5987 5778 5776 Face 11549 2371 5777 2372 Face 11550 2371 5793 5777 Face 11551 5774 5778 5987 Face 11552 5909 5916 5778 Face 11553 5385 5779 5786 Face 11554 5385 6045 6041 Face 11555 5484 5780 5784 Face 11556 5484 5870 5780 Face 11557 5475 5781 5384 Face 11558 5794 5698 5796 Face 11559 5387 5782 5393 Face 11560 5387 5616 5782 Face 11561 5725 5783 5727 Face 11562 5725 5787 5783 Face 11563 5936 5784 5914 Face 11564 5936 5484 5784 Face 11565 6397 5785 5782 Face 11566 6397 5781 5785 Face 11567 5471 5786 6421 Face 11568 5471 5385 5786 Face 11569 5795 5787 5793 Face 11570 5795 5783 5787 Face 11571 5473 5788 5471 Face 11572 5473 6397 5788 Face 11573 6288 5789 5604 Face 11574 6122 6112 5789 Face 11575 498 5790 5626 Face 11576 498 5809 5790 Face 11577 5604 5791 6165 Face 11578 5604 5789 5791 Face 11579 5287 5792 2008 Face 11580 5287 5496 5792 Face 11581 5540 5793 2371 Face 11582 5540 5795 5793 Face 11583 5475 5794 5796 Face 11584 5475 5287 5794 Face 11585 5245 5795 5540 Face 11586 5245 6448 5795 Face 11587 5781 5796 5785 Face 11588 5781 5475 5796 Face 11589 5527 5797 6183 Face 11590 5527 5715 5837 Face 11591 6190 5802 6012 Face 11592 5838 2009 5802 Face 11593 5715 5799 5801 Face 11594 5715 5527 5799 Face 11595 777 5800 5794 Face 11596 777 5664 5800 Face 11597 5522 5801 5799 Face 11598 6135 6321 6230 Face 11599 5798 5802 414 Face 11600 5798 6012 5802 Face 11601 1301 5803 6046 Face 11602 1301 5344 5803 Face 11603 946 5804 5437 Face 11604 946 1882 5804 Face 11605 5680 6046 5803 Face 11606 5874 5807 5876 Face 11607 1882 5806 5804 Face 11608 1882 2697 5806 Face 11609 5879 5807 5631 Face 11610 5879 5876 5807 Face 11611 5899 5808 5897 Face 11612 941 348 5901 Face 11613 497 5809 5807 Face 11614 497 5812 5809 Face 11615 872 5810 5812 Face 11616 872 1658 5810 Face 11617 6210 5811 5343 Face 11618 5341 5339 5811 Face 11619 6467 5812 5810 Face 11620 5790 5809 5812 Face 11621 5507 5813 5287 Face 11622 5507 5704 5813 Face 11623 5360 6223 6192 Face 11624 5360 5661 6223 Face 11625 1837 5815 3887 Face 11626 1837 6467 5815 Face 11627 2008 5816 5507 Face 11628 2008 5792 5816 Face 11629 2633 5817 1837 Face 11630 2633 5360 5817 Face 11631 5316 5818 5900 Face 11632 5316 1014 5818 Face 11633 5309 5819 5808 Face 11634 5309 5839 5819 Face 11635 5633 5820 5677 Face 11636 5633 5681 5820 Face 11637 1304 5905 5902 Face 11638 1304 5309 5905 Face 11639 5391 5822 5668 Face 11640 5391 5826 5822 Face 11641 5808 5823 5905 Face 11642 5808 5899 5823 Face 11643 5421 5824 5822 Face 11644 5421 5423 5824 Face 11645 1305 5825 6033 Face 11646 5898 5901 5825 Face 11647 5655 5826 5659 Face 11648 5655 5421 5826 Face 11649 5344 5827 5803 Face 11650 5344 1305 5827 Face 11651 522 5828 2398 Face 11652 522 5830 5828 Face 11653 5803 5829 5680 Face 11654 5803 5827 5829 Face 11655 943 5830 6014 Face 11656 943 5828 5830 Face 11657 5937 5831 5223 Face 11658 5937 1551 5831 Face 11659 1996 5832 5830 Face 11660 1996 1171 5832 Face 11661 5422 5833 6051 Face 11662 5422 1632 5833 Face 11663 1172 5834 5836 Face 11664 1172 5832 5834 Face 11665 5297 5835 5704 Face 11666 5297 5666 6186 Face 11667 6406 5836 5834 Face 11668 1324 6410 5836 Face 11669 5797 5837 5645 Face 11670 5797 5527 5837 Face 11671 6190 5838 5802 Face 11672 6190 6193 5838 Face 11673 5258 5839 1303 Face 11674 5258 1324 5839 Face 11675 5538 5840 6267 Face 11676 6183 5797 6184 Face 11677 1303 5841 5258 Face 11678 1303 5843 5841 Face 11679 5311 5842 6010 Face 11680 6002 5608 6007 Face 11681 6341 5843 1303 Face 11682 6341 5847 5843 Face 11683 5608 5844 6007 Face 11684 5608 5770 5844 Face 11685 1014 6232 5319 Face 11686 1014 6229 6232 Face 11687 412 6043 5381 Face 11688 412 5920 5846 Face 11689 942 5847 6232 Face 11690 6226 5546 5847 Face 11691 2420 5848 6061 Face 11692 2420 5850 5848 Face 11693 6035 5849 6032 Face 11694 6035 6025 5849 Face 11695 5667 5850 6439 Face 11696 5667 5848 5850 Face 11697 5997 5851 855 Face 11698 6007 5844 5851 Face 11699 2223 6273 5850 Face 11700 2223 54 6273 Face 11701 2013 5853 5859 Face 11702 2013 5765 5853 Face 11703 5358 5854 2903 Face 11704 5358 863 5854 Face 11705 5289 5855 2799 Face 11706 5289 5853 5855 Face 11707 6357 5856 5792 Face 11708 6361 6412 5856 Face 11709 5536 5857 6111 Face 11710 5536 5548 5857 Face 11711 5792 5858 5816 Face 11712 5792 5856 5858 Face 11713 5548 5859 5857 Face 11714 5548 6227 5859 Face 11715 1313 5860 3802 Face 11716 1313 5949 5860 Face 11717 6097 5861 6072 Face 11718 5255 5864 5861 Face 11719 5728 5862 5729 Face 11720 5728 5589 5862 Face 11721 5530 5863 3707 Face 11722 6366 5959 5863 Face 11723 6105 5864 5255 Face 11724 6105 5862 5864 Face 11725 5436 5865 5734 Face 11726 5436 5724 5865 Face 11727 5477 6473 5285 Face 11728 5477 5870 6473 Face 11729 5734 5867 5701 Face 11730 5734 5865 5867 Face 11731 5496 6429 5792 Face 11732 5496 5866 6429 Face 11733 5865 5869 5867 Face 11734 5865 5720 5869 Face 11735 5498 5870 6353 Face 11736 5498 6473 5870 Face 11737 5247 5871 5908 Face 11738 5247 5873 5871 Face 11739 1534 5872 6039 Face 11740 1534 169 5872 Face 11741 5199 5873 5201 Face 11742 5878 5871 5873 Face 11743 6042 5874 5876 Face 11744 6042 5872 5874 Face 11745 5228 5947 5199 Face 11746 5968 5357 5875 Face 11747 5805 5876 5879 Face 11748 5805 5680 5876 Face 11749 5631 5877 5678 Face 11750 5631 498 5877 Face 11751 5199 5878 5873 Face 11752 5199 5947 5878 Face 11753 413 5879 5631 Face 11754 413 5805 5879 Face 11755 5570 5880 5878 Face 11756 5570 5967 5880 Face 11757 5351 5888 6082 Face 11758 6075 413 5881 Face 11759 6113 5882 6221 Face 11760 6068 6071 5882 Face 11761 6100 6384 6096 Face 11762 6100 6106 6384 Face 11763 5678 5884 5881 Face 11764 5678 5877 5884 Face 11765 5386 5885 5694 Face 11766 5386 5889 6150 Face 11767 6027 5886 6121 Face 11768 6235 6068 6110 Face 11769 869 5887 6089 Face 11770 5895 5883 5893 Face 11771 5881 6079 6075 Face 11772 5881 5884 6457 Face 11773 6464 5889 5386 Face 11774 6464 5892 5889 Face 11775 6103 6099 5893 Face 11776 5354 5457 5890 Face 11777 6076 6387 5895 Face 11778 6076 6069 6387 Face 11779 6065 5892 5467 Face 11780 6065 5889 5892 Face 11781 5887 5893 6099 Face 11782 5887 5895 5893 Face 11783 6121 6030 6027 Face 11784 410 6124 6030 Face 11785 869 5895 5887 Face 11786 869 6076 5895 Face 11787 6150 5896 6127 Face 11788 6150 5889 5896 Face 11789 1299 5897 524 Face 11790 1299 5899 5897 Face 11791 1305 5898 5825 Face 11792 1305 5907 5898 Face 11793 941 5899 1299 Face 11794 941 5901 5899 Face 11795 1300 5900 5689 Face 11796 1300 5316 5900 Face 11797 5823 5901 5898 Face 11798 5823 5899 5901 Face 11799 5818 5902 5900 Face 11800 5818 1304 5902 Face 11801 5404 5903 5906 Face 11802 5404 5642 5903 Face 11803 5689 5904 5675 Face 11804 5689 5900 5904 Face 11805 5821 5905 5823 Face 11806 5821 5902 5905 Face 11807 5662 5906 5389 Face 11808 5662 5404 5906 Face 11809 5686 5907 5904 Face 11810 5686 5821 5907 Face 11811 5251 6432 5593 Face 11812 5251 5247 5908 Face 11813 5774 5909 5778 Face 11814 5774 5939 5909 Face 11815 5751 5910 5417 Face 11816 5751 5755 5910 Face 11817 5871 5911 5908 Face 11818 5871 5880 5911 Face 11819 5417 5912 5751 Face 11820 5936 5914 5939 Face 11821 5996 5913 5766 Face 11822 5996 1505 5913 Face 11823 5909 5914 5340 Face 11824 5909 5939 5914 Face 11825 5333 5915 5620 Face 11826 5333 5917 5915 Face 11827 5340 5916 5909 Face 11828 6354 5913 5916 Face 11829 2862 5917 5333 Face 11830 2862 1081 5917 Face 11831 6471 5918 6354 Face 11832 6471 5786 5918 Face 11833 1551 5919 5831 Face 11834 5943 5743 5919 Face 11835 5844 5920 5851 Face 11836 5844 5922 5920 Face 11837 5248 5921 5250 Face 11838 5248 5919 5921 Face 11839 5770 5922 5844 Face 11840 5770 5918 5922 Face 11841 5250 5923 5253 Face 11842 5250 5921 5923 Face 11843 5766 5924 5770 Face 11844 5766 5913 5924 Face 11845 5321 5925 5923 Face 11846 5321 5306 5925 Face 11847 5253 5926 5204 Face 11848 5253 5929 5926 Face 11849 5991 5927 5776 Face 11850 5342 5930 5927 Face 11851 5951 5928 5741 Face 11852 5935 5932 5928 Face 11853 5923 5929 5253 Face 11854 5923 5925 5929 Face 11855 5334 5930 5342 Face 11856 5334 5941 5930 Face 11857 5059 5931 5224 Face 11858 5059 6023 5931 Face 11859 5925 5932 5929 Face 11860 5925 5928 5932 Face 11861 5484 5933 5489 Face 11862 5484 5936 5933 Face 11863 5202 5934 773 Face 11864 5202 5938 5934 Face 11865 5323 5935 5945 Face 11866 5323 5932 5935 Face 11867 5417 5936 5939 Face 11868 5417 5933 5936 Face 11869 5224 5937 3797 Face 11870 5224 5940 5937 Face 11871 5205 5938 5202 Face 11872 5205 5323 5938 Face 11873 5912 5939 5774 Face 11874 5912 5417 5939 Face 11875 5931 5940 5224 Face 11876 5931 1127 5953 Face 11877 5219 5941 5334 Face 11878 5219 5938 5941 Face 11879 5948 5942 5912 Face 11880 5337 5951 5942 Face 11881 1551 5943 5919 Face 11882 1551 5960 5943 Face 11883 5186 5944 5966 Face 11884 5186 933 5944 Face 11885 5983 5945 5337 Face 11886 5930 5941 5945 Face 11887 5743 5946 5740 Face 11888 5743 5943 5946 Face 11889 5974 5947 5968 Face 11890 5974 5570 5947 Face 11891 5337 5948 5983 Face 11892 5337 5942 5948 Face 11893 3852 5949 1313 Face 11894 3852 5186 5949 Face 11895 1504 6010 5573 Face 11896 1504 5311 6010 Face 11897 5935 5951 5337 Face 11898 5935 5928 5951 Face 11899 5210 5952 5955 Face 11900 5969 1504 5952 Face 11901 5940 5960 1551 Face 11902 5940 5931 5953 Face 11903 2968 5954 5441 Face 11904 5966 5971 5954 Face 11905 5875 5955 5968 Face 11906 5875 5210 5955 Face 11907 5943 5956 5946 Face 11908 5943 5960 5956 Face 11909 5741 5957 5951 Face 11910 5741 5985 5957 Face 11911 5740 5958 5961 Face 11912 5740 5946 5958 Face 11913 5860 5959 6366 Face 11914 5860 5949 5959 Face 11915 5953 5960 5940 Face 11916 5986 5956 5960 Face 11917 5306 5961 5741 Face 11918 5306 5740 5961 Face 11919 2969 5962 2968 Face 11920 2969 5959 5962 Face 11921 1117 5963 2407 Face 11922 1117 6120 5963 Face 11923 1127 5964 5953 Face 11924 1127 5272 5964 Face 11925 5357 5965 5875 Face 11926 5357 5230 5965 Face 11927 2968 5966 5954 Face 11928 2968 5962 5966 Face 11929 5211 5967 5469 Face 11930 5211 5880 5967 Face 11931 5228 5968 5947 Face 11932 5228 5357 5968 Face 11933 5210 5969 5952 Face 11934 5210 5355 5969 Face 11935 5570 5977 5967 Face 11936 5570 5974 5977 Face 11937 5944 5971 5966 Face 11938 5944 5185 5971 Face 11939 5355 5972 5969 Face 11940 5355 5769 5972 Face 11941 5573 5973 5970 Face 11942 5573 5576 5973 Face 11943 5955 5974 5968 Face 11944 5955 5970 5974 Face 11945 5769 5975 5972 Face 11946 5769 5982 5975 Face 11947 6175 5976 5710 Face 11948 6175 6178 6161 Face 11949 5970 5977 5974 Face 11950 5970 5973 5977 Face 11951 5576 5978 5973 Face 11952 6013 5553 5978 Face 11953 5408 5979 5353 Face 11954 5408 5769 5979 Face 11955 6328 6158 5708 Face 11956 5606 6063 5980 Face 11957 5973 5981 5977 Face 11958 5973 5978 5981 Face 11959 5325 5982 5408 Face 11960 5325 5764 5982 Face 11961 5930 5983 5927 Face 11962 5930 5945 5983 Face 11963 5946 5984 5958 Face 11964 5946 5956 5984 Face 11965 5744 5985 5961 Face 11966 5744 5753 5985 Face 11967 5953 5986 5960 Face 11968 5953 5964 5986 Face 11969 5927 5987 5776 Face 11970 5927 5983 5987 Face 11971 5764 5988 5982 Face 11972 5764 5342 5988 Face 11973 5958 5989 5744 Face 11974 5958 5984 5989 Face 11975 5956 5990 5984 Face 11976 5956 5986 5990 Face 11977 5342 5991 5988 Face 11978 5342 5927 5991 Face 11979 307 6005 5998 Face 11980 307 5747 6005 Face 11981 5776 5993 5991 Face 11982 5776 1505 5993 Face 11983 6098 5994 3357 Face 11984 2933 6103 5994 Face 11985 5984 5995 5989 Face 11986 5984 5990 5995 Face 11987 5335 5996 5999 Face 11988 5335 5993 5996 Face 11989 5842 5997 5950 Face 11990 6007 5851 5997 Face 11991 5989 5998 5992 Face 11992 5989 5995 5998 Face 11993 5329 5999 6002 Face 11994 5329 5335 5999 Face 11995 5425 6000 6263 Face 11996 5425 5256 6000 Face 11997 5753 6001 5420 Face 11998 5753 5992 6001 Face 11999 5311 6002 5842 Face 12000 5311 5329 6002 Face 12001 5286 6003 6248 Face 12002 5286 5425 6003 Face 12003 5429 6004 6008 Face 12004 5429 5320 6004 Face 12005 5992 6005 6001 Face 12006 5992 5998 6005 Face 12007 6281 6243 6278 Face 12008 6281 6169 6006 Face 12009 5842 6007 5997 Face 12010 5842 6002 6007 Face 12011 6001 6008 6004 Face 12012 6001 6005 6008 Face 12013 6128 6009 6131 Face 12014 5292 6332 6009 Face 12015 5950 6010 5842 Face 12016 5950 5576 6010 Face 12017 6037 6029 6026 Face 12018 5379 6216 6029 Face 12019 5800 6012 5698 Face 12020 5800 6190 6012 Face 12021 5576 6013 5978 Face 12022 5576 5950 6013 Face 12023 1302 6014 6350 Face 12024 1302 943 6014 Face 12025 5339 6015 5811 Face 12026 5339 6018 6015 Face 12027 5453 6016 6040 Face 12028 5453 5465 6016 Face 12029 6216 6017 6029 Face 12030 6216 5619 6017 Face 12031 5623 6018 5339 Face 12032 5623 6021 6018 Face 12033 5553 6019 5453 Face 12034 5553 6013 6019 Face 12035 5599 6020 6028 Face 12036 5599 2620 6020 Face 12037 5613 6021 5623 Face 12038 5613 2474 6021 Face 12039 5381 6022 412 Face 12040 5381 410 6022 Face 12041 5324 6023 5059 Face 12042 5324 6026 6023 Face 12043 2474 6024 6383 Face 12044 2474 5613 6024 Face 12045 412 6025 5920 Face 12046 412 6022 6025 Face 12047 5448 6026 5324 Face 12048 5448 6037 6026 Face 12049 5612 6027 6030 Face 12050 5612 5889 6065 Face 12051 5611 6028 6031 Face 12052 5611 5599 6028 Face 12053 6011 6029 6017 Face 12054 6011 6026 6029 Face 12055 5894 6030 6124 Face 12056 5894 5612 6030 Face 12057 5061 6031 5617 Face 12058 5061 5611 6031 Face 12059 5303 6032 6019 Face 12060 5303 855 6032 Face 12061 1137 6033 1519 Face 12062 1137 6036 6033 Face 12063 5617 6034 5379 Face 12064 5617 6031 6034 Face 12065 855 6035 6032 Face 12066 855 5851 6035 Face 12067 5827 6036 5829 Face 12068 5827 6033 6036 Face 12069 5379 6037 5617 Face 12070 5379 6029 6037 Face 12071 3794 6038 5856 Face 12072 3794 6166 6038 Face 12073 5829 6039 6042 Face 12074 5829 6036 6039 Face 12075 5578 6040 5581 Face 12076 5578 5453 6040 Face 12077 5779 6041 6043 Face 12078 5779 5385 6041 Face 12079 5680 6042 5876 Face 12080 5680 5829 6042 Face 12081 5846 6043 412 Face 12082 5846 5779 6043 Face 12083 5614 6160 5894 Face 12084 5614 6048 6199 Face 12085 5616 6045 5385 Face 12086 5616 6436 6045 Face 12087 5805 6046 5680 Face 12088 5805 6050 6046 Face 12089 5712 6047 5714 Face 12090 6166 3794 6047 Face 12091 6041 6048 6043 Face 12092 6041 6045 6048 Face 12093 6016 6049 6040 Face 12094 6016 5305 6049 Face 12095 871 6050 5351 Face 12096 871 6046 6050 Face 12097 5424 6051 5833 Face 12098 5424 5712 6051 Face 12099 5492 6052 5461 Face 12100 5492 6054 6052 Face 12101 5712 6053 6047 Face 12102 5712 5424 6053 Face 12103 5305 6054 5492 Face 12104 5305 6016 6054 Face 12105 5376 6055 5460 Face 12106 5376 5057 6055 Face 12107 5274 6292 5869 Face 12108 5274 6176 6292 Face 12109 5279 6057 6053 Face 12110 6456 6174 6057 Face 12111 100 6058 6081 Face 12112 100 2222 6058 Face 12113 6144 6059 5277 Face 12114 6144 5299 6059 Face 12115 6136 6060 6172 Face 12116 6136 6063 6060 Face 12117 6067 6061 5848 Face 12118 5383 6058 6061 Face 12119 5277 6062 5274 Face 12120 5277 6059 6062 Face 12121 5976 6063 6411 Face 12122 5976 5980 6063 Face 12123 5413 6064 6067 Face 12124 5413 5521 6064 Face 12125 6027 6235 6110 Face 12126 6027 5612 6235 Face 12127 6251 6066 5647 Face 12128 6251 6184 6066 Face 12129 5383 6067 6064 Face 12130 5383 6061 6067 Face 12131 5467 6068 6235 Face 12132 5467 6071 6068 Face 12133 6079 6069 6076 Face 12134 6079 5881 6069 Face 12135 5406 6070 6424 Face 12136 5406 5637 6070 Face 12137 5731 6071 5467 Face 12138 5731 5733 6071 Face 12139 5410 6072 5383 Face 12140 5410 6097 6072 Face 12141 1892 6073 3717 Face 12142 1892 6080 6073 Face 12143 5396 6074 5731 Face 12144 5396 6070 6074 Face 12145 5351 6075 5888 Face 12146 5351 6050 6075 Face 12147 2935 6076 869 Face 12148 2935 6079 6076 Face 12149 6212 6209 3715 Face 12150 3714 5451 6077 Face 12151 5589 6078 5864 Face 12152 5589 2389 6078 Face 12153 5888 6079 2935 Face 12154 5888 6075 6079 Face 12155 2934 6080 1892 Face 12156 2934 6090 6080 Face 12157 5861 6081 6072 Face 12158 5861 6078 6081 Face 12159 5635 6082 5888 Face 12160 5635 6450 6082 Face 12161 5733 6342 5388 Face 12162 5733 6074 6083 Face 12163 1899 6084 2933 Face 12164 6094 6209 6130 Face 12165 6116 6085 5464 Face 12166 6116 6113 6221 Face 12167 870 6086 5635 Face 12168 870 6342 6086 Face 12169 5354 6087 6084 Face 12170 5354 5890 6087 Face 12171 1043 6173 5518 Face 12172 1043 6153 6156 Face 12173 5730 6089 5450 Face 12174 5730 6427 6089 Face 12175 3706 6090 2934 Face 12176 3706 6094 6090 Face 12177 6084 6091 5354 Face 12178 6084 1899 6130 Face 12179 6170 6317 6133 Face 12180 6164 6149 6092 Face 12181 5450 6093 5452 Face 12182 5450 6089 6093 Face 12183 1899 6094 6130 Face 12184 1899 6090 6094 Face 12185 2799 6095 6108 Face 12186 2799 5729 6095 Face 12187 5555 6096 5371 Face 12188 5555 6100 6096 Face 12189 5255 6097 6102 Face 12190 5255 5861 6097 Face 12191 2933 6098 1899 Face 12192 2933 5994 6098 Face 12193 5890 6099 6087 Face 12194 5890 6093 6099 Face 12195 3357 6100 5555 Face 12196 3357 5994 6100 Face 12197 5468 6101 5452 Face 12198 5468 5464 6101 Face 12199 6000 6102 6263 Face 12200 6000 5255 6102 Face 12201 6087 6103 2933 Face 12202 6087 6099 6103 Face 12203 5464 6331 6116 Face 12204 5464 5468 6331 Face 12205 5256 6105 6000 Face 12206 5256 6095 6105 Face 12207 5994 6106 6100 Face 12208 5994 6103 6106 Face 12209 868 6107 6104 Face 12210 868 5886 6107 Face 12211 5534 6108 5256 Face 12212 5534 6111 6108 Face 12213 2186 6109 6167 Face 12214 6288 5604 6290 Face 12215 5886 6110 6107 Face 12216 5886 6027 6110 Face 12217 5289 6111 5857 Face 12218 5289 6108 6111 Face 12219 6119 6112 6122 Face 12220 6119 281 6112 Face 12221 6068 6113 6110 Face 12222 6068 5882 6113 Face 12223 5536 6114 5645 Face 12224 5536 6111 6114 Face 12225 2187 6123 2894 Face 12226 2187 6119 6123 Face 12227 6107 6116 6331 Face 12228 6107 6113 6116 Face 12229 5645 6117 6066 Face 12230 5645 6114 6117 Face 12231 5456 6118 6052 Face 12232 5456 6022 6118 Face 12233 6126 6119 6122 Face 12234 6126 6123 6119 Face 12235 2893 6120 6115 Face 12236 2893 5963 6120 Face 12237 410 6121 6118 Face 12238 410 6030 6121 Face 12239 2186 6288 6109 Face 12240 2186 6126 6122 Face 12241 6115 6123 6126 Face 12242 6115 6120 6123 Face 12243 5381 6124 410 Face 12244 5381 6043 6124 Face 12245 5551 6125 6233 Face 12246 5551 1266 6125 Face 12247 1637 6126 2186 Face 12248 1637 6115 6126 Face 12249 5894 6127 5896 Face 12250 5894 6160 6127 Face 12251 5292 6128 6060 Face 12252 5292 6009 6128 Face 12253 5767 6129 6325 Face 12254 5767 5514 6129 Face 12255 6091 6130 6077 Face 12256 6091 6084 6130 Face 12257 6243 6143 6266 Face 12258 6006 6359 6143 Face 12259 2012 6132 6336 Face 12260 2012 5767 6132 Face 12261 5976 6161 5980 Face 12262 5976 6175 6161 Face 12263 5558 6134 5371 Face 12264 5558 6382 6134 Face 12265 6250 6135 6230 Face 12266 6250 6329 6135 Face 12267 5710 6411 5424 Face 12268 5710 5976 6411 Face 12269 5378 6382 5558 Face 12270 5378 5891 6137 Face 12271 6132 6138 6339 Face 12272 6132 6325 6138 Face 12273 6062 6139 6142 Face 12274 6062 6059 6139 Face 12275 6128 6140 6172 Face 12276 6128 6131 6140 Face 12277 2406 6141 5276 Face 12278 2406 5382 6141 Face 12279 6351 6142 5658 Face 12280 6176 6062 6142 Face 12281 6333 6143 6359 Face 12282 6333 6138 6163 Face 12283 5276 6144 5277 Face 12284 5276 6141 6144 Face 12285 5382 6145 6141 Face 12286 5382 2860 6145 Face 12287 6059 6146 6139 Face 12288 6059 5299 6146 Face 12289 5509 6266 6163 Face 12290 5509 6326 6266 Face 12291 6141 6148 6144 Face 12292 6141 6145 6148 Face 12293 6156 6149 6164 Face 12294 6088 6159 6149 Face 12295 6157 6150 6127 Face 12296 5885 5386 6150 Face 12297 6241 6151 5690 Face 12298 5390 5393 6151 Face 12299 5298 6152 6148 Face 12300 5298 5963 6152 Face 12301 6139 6153 6142 Face 12302 6139 6088 6153 Face 12303 6196 6154 5885 Face 12304 5280 6443 6154 Face 12305 5299 6155 6146 Face 12306 5299 6152 6155 Face 12307 6088 6156 6153 Face 12308 6088 6149 6156 Face 12309 5885 6157 6196 Face 12310 5885 6150 6157 Face 12311 5980 6324 5606 Face 12312 5980 6133 6324 Face 12313 6146 6159 6088 Face 12314 6146 6155 6159 Face 12315 6199 6160 5614 Face 12316 6199 6157 6160 Face 12317 6133 6161 6170 Face 12318 6133 5980 6161 Face 12319 2184 6162 6159 Face 12320 2184 1637 6162 Face 12321 6143 6163 6266 Face 12322 6143 6333 6163 Face 12323 6178 6170 6161 Face 12324 6178 6173 6164 Face 12325 5284 6165 5513 Face 12326 5284 5604 6165 Face 12327 6053 6166 6047 Face 12328 6053 6057 6166 Face 12329 6092 6317 6170 Face 12330 6092 6162 6167 Face 12331 5513 6168 6171 Face 12332 5513 6165 6168 Face 12333 6057 6169 6474 Face 12334 6057 6174 6169 Face 12335 6164 6170 6178 Face 12336 6164 6092 6170 Face 12337 2011 6171 2012 Face 12338 2011 5513 6171 Face 12339 5279 6456 6057 Face 12340 5279 6136 6172 Face 12341 6156 6173 1043 Face 12342 6156 6164 6173 Face 12343 6140 6174 6456 Face 12344 6359 6006 6174 Face 12345 1632 6175 5710 Face 12346 1632 2185 6175 Face 12347 6289 6351 5658 Face 12348 6340 6355 6351 Face 12349 3694 6399 1652 Face 12350 3694 6182 6177 Face 12351 2185 6178 6175 Face 12352 2185 6173 6178 Face 12353 5275 6188 6352 Face 12354 5275 6289 6179 Face 12355 5272 6180 5375 Face 12356 5272 6017 6180 Face 12357 5518 6181 6188 Face 12358 5518 2185 6181 Face 12359 5198 6182 3694 Face 12360 5198 5439 6182 Face 12361 6189 6183 6184 Face 12362 6189 5295 6183 Face 12363 5840 6184 6251 Face 12364 5840 6189 6184 Face 12365 5439 6185 6182 Face 12366 5439 5971 6185 Face 12367 5835 6186 5538 Face 12368 5835 5297 6186 Face 12369 6198 6187 5245 Face 12370 2632 6435 6195 Face 12371 6179 6188 5275 Face 12372 6179 5518 6188 Face 12373 5538 6189 5840 Face 12374 5538 6186 6189 Face 12375 5664 6190 5800 Face 12376 5664 6193 6190 Face 12377 583 6191 2183 Face 12378 6352 6356 6338 Face 12379 5529 6192 6187 Face 12380 5529 5360 6192 Face 12381 5835 6193 5664 Face 12382 5835 5538 6193 Face 12383 3795 6194 5748 Face 12384 3795 3796 6194 Face 12385 6187 6195 5529 Face 12386 6187 6198 6195 Face 12387 5280 6196 6044 Face 12388 5280 6154 6196 Face 12389 2183 6197 3795 Face 12390 2183 6368 6197 Face 12391 2632 6198 5245 Face 12392 2632 6195 6198 Face 12393 6044 6199 6048 Face 12394 6044 6196 6199 Face 12395 5510 6200 5738 Face 12396 6371 6388 6200 Face 12397 1265 6201 3741 Face 12398 1265 5445 6201 Face 12399 5738 6202 5747 Face 12400 5738 6211 6202 Face 12401 1129 6203 6206 Face 12402 1129 2174 6203 Face 12403 5721 6204 6201 Face 12404 5721 5449 6204 Face 12405 5752 6205 5479 Face 12406 5752 6220 6205 Face 12407 2556 6206 5153 Face 12408 2556 1129 6206 Face 12409 2897 6207 2390 Face 12410 2897 6204 6207 Face 12411 6203 6208 6206 Face 12412 6203 2620 6208 Face 12413 6077 6209 6212 Face 12414 6077 6130 6209 Face 12415 5341 6210 5742 Face 12416 5341 5811 6210 Face 12417 6200 6211 5738 Face 12418 6200 6388 6211 Face 12419 3714 6212 6207 Face 12420 3714 6077 6212 Face 12421 2473 6396 6462 Face 12422 2473 5341 6396 Face 12423 6231 6228 5336 Face 12424 5742 6210 6214 Face 12425 5449 6215 3714 Face 12426 5449 6218 6215 Face 12427 5326 6216 5379 Face 12428 5326 6219 6216 Face 12429 6210 6217 6214 Face 12430 6210 5343 6217 Face 12431 5721 6218 5449 Face 12432 5721 5447 6218 Face 12433 6213 6219 5326 Face 12434 6213 6224 6219 Face 12435 6300 6220 5756 Face 12436 5745 6205 6220 Face 12437 6085 6221 5470 Face 12438 6085 6116 6221 Face 12439 5412 6222 5401 Face 12440 5412 5415 6222 Face 12441 5814 6223 5661 Face 12442 5814 6192 6223 Face 12443 5742 6224 6213 Face 12444 5742 6214 6224 Face 12445 5401 6225 6229 Face 12446 5401 6222 6225 Face 12447 942 6226 5847 Face 12448 6453 6444 6226 Face 12449 5715 6227 5548 Face 12450 5715 5801 6227 Face 12451 6214 6228 6231 Face 12452 6214 6217 6228 Face 12453 5669 6229 1014 Face 12454 5669 5401 6229 Face 12455 5801 6230 6227 Face 12456 5801 6250 6230 Face 12457 6224 6237 6219 Face 12458 6224 6214 6231 Face 12459 5845 6232 6229 Face 12460 5845 942 6232 Face 12461 5241 6233 6125 Face 12462 5241 5242 6233 Face 12463 6240 6234 6237 Face 12464 6240 5745 6249 Face 12465 6065 6235 5612 Face 12466 6065 5467 6235 Face 12467 5271 6236 2778 Face 12468 5271 3648 6236 Face 12469 6231 6237 6224 Face 12470 6231 6240 6237 Face 12471 5745 6300 6249 Face 12472 5745 6220 6300 Face 12473 6425 6239 6385 Face 12474 6361 5856 6357 Face 12475 5336 6240 6231 Face 12476 5336 5745 6240 Face 12477 5390 6443 5280 Face 12478 5390 6151 6241 Face 12479 5431 6242 5428 Face 12480 5431 5481 6242 Face 12481 6006 6243 6281 Face 12482 6006 6143 6243 Face 12483 4466 6244 1260 Face 12484 4466 5587 6244 Face 12485 5290 6245 5714 Face 12486 5290 5431 6245 Face 12487 6327 6246 2896 Face 12488 6335 5468 6246 Face 12489 5458 6247 5462 Face 12490 5458 6244 6247 Face 12491 5647 6248 6262 Face 12492 5647 6117 6248 Face 12493 6234 6249 6238 Face 12494 6234 6240 6249 Face 12495 5522 6250 5801 Face 12496 5522 5509 6250 Face 12497 6259 6251 5647 Face 12498 6259 6256 6251 Face 12499 5422 6252 6260 Face 12500 5422 6051 6252 Face 12501 2620 6378 6020 Face 12502 2620 6203 6253 Face 12503 2010 6254 5542 Face 12504 2010 5649 6265 Face 12505 5651 6469 6261 Face 12506 5651 6280 6469 Face 12507 5840 6256 6267 Face 12508 5840 6251 6256 Face 12509 5520 6322 6334 Face 12510 6326 5522 6257 Face 12511 5649 6276 5651 Face 12512 5649 6262 6258 Face 12513 5542 6259 2010 Face 12514 5542 6256 6259 Face 12515 6181 6260 6356 Face 12516 6181 5422 6260 Face 12517 5427 6261 5652 Face 12518 5427 6265 6261 Face 12519 2010 6262 5649 Face 12520 2010 6259 6262 Face 12521 5644 6263 5526 Face 12522 5644 6003 6263 Face 12523 2009 6264 5802 Face 12524 2009 6268 6282 Face 12525 6254 6265 5427 Face 12526 6254 2010 6265 Face 12527 6330 6266 6326 Face 12528 6330 6243 6266 Face 12529 5838 6267 6271 Face 12530 5838 6193 6267 Face 12531 5542 6268 6271 Face 12532 5542 6254 6268 Face 12533 2414 6269 54 Face 12534 2414 1174 6269 Face 12535 942 6453 6226 Face 12536 942 5845 6270 Face 12537 2009 6271 6268 Face 12538 2009 5838 6271 Face 12539 414 6272 6422 Face 12540 414 6264 6279 Face 12541 5852 6273 6269 Face 12542 5852 6439 6273 Face 12543 5261 6274 5366 Face 12544 5261 5270 6274 Face 12545 5402 6275 5432 Face 12546 5402 6376 6275 Face 12547 6258 6276 5649 Face 12548 6258 5644 6276 Face 12549 6038 6277 5858 Face 12550 6038 6474 6277 Face 12551 5706 6278 6147 Face 12552 5706 5293 6278 Face 12553 6376 6279 6275 Face 12554 6272 414 6279 Face 12555 5713 6280 6276 Face 12556 5713 776 6280 Face 12557 5293 6281 6278 Face 12558 5293 6277 6281 Face 12559 6264 6282 6279 Face 12560 6264 2009 6282 Face 12561 5526 6283 5713 Face 12562 5526 5524 6283 Face 12563 5758 6284 5771 Face 12564 5758 5505 6284 Face 12565 5531 6285 5533 Face 12566 5531 6475 6285 Face 12567 6306 6286 6302 Face 12568 6306 6303 6309 Face 12569 5273 6458 2182 Face 12570 5273 5754 6458 Face 12571 6122 6288 2186 Face 12572 6122 5789 6288 Face 12573 6340 6289 6296 Face 12574 6340 6351 6289 Face 12575 6109 6290 6320 Face 12576 6109 6288 6290 Face 12577 5466 6291 5494 Face 12578 5466 868 6291 Face 12579 6360 6355 2182 Face 12580 6056 5869 6292 Face 12581 6447 6293 583 Face 12582 6447 6459 6293 Face 12583 5350 6323 5463 Face 12584 5350 6291 6294 Face 12585 5717 6295 6218 Face 12586 5717 5486 6295 Face 12587 6459 6296 6293 Face 12588 6343 2182 6296 Face 12589 6400 6297 5350 Face 12590 5461 6052 6297 Face 12591 5486 6312 6416 Face 12592 5486 5717 6312 Face 12593 704 6299 5750 Face 12594 704 6343 6299 Face 12595 6307 6300 5756 Face 12596 6307 6249 6300 Face 12597 5483 6301 6305 Face 12598 5483 5461 6301 Face 12599 5346 6302 5723 Face 12600 5346 6306 6302 Face 12601 856 6303 6398 Face 12602 856 6298 6303 Face 12603 5750 6304 704 Face 12604 5750 6307 6304 Face 12605 6298 6305 6309 Face 12606 6298 5483 6305 Face 12607 5348 6306 5346 Face 12608 5348 6303 6306 Face 12609 6238 6307 5750 Face 12610 6238 6249 6307 Face 12611 3805 6308 6284 Face 12612 3805 66 6314 Face 12613 6286 6309 6312 Face 12614 6286 6306 6309 Face 12615 5783 6310 5727 Face 12616 5783 6448 6310 Face 12617 5283 6311 5768 Face 12618 5283 6314 6311 Face 12619 6305 6312 6309 Face 12620 6305 6416 6312 Face 12621 5295 6313 6183 Face 12622 5295 6322 6313 Face 12623 6308 6314 5283 Face 12624 6308 3805 6314 Face 12625 5523 6315 6348 Face 12626 5523 6245 6349 Face 12627 5547 6316 2782 Face 12628 5547 6433 6316 Face 12629 6167 6317 6092 Face 12630 6167 6109 6317 Face 12631 5772 6318 6321 Face 12632 5772 5775 6318 Face 12633 5559 6319 5554 Face 12634 5559 5547 6319 Face 12635 6133 6320 6324 Face 12636 6133 6317 6320 Face 12637 6129 6321 6135 Face 12638 6129 5772 6321 Face 12639 6257 6322 5520 Face 12640 6257 6313 6322 Face 12641 6294 6323 5350 Face 12642 6294 5455 6323 Face 12643 6158 6324 6320 Face 12644 6158 6328 6324 Face 12645 6135 6325 6129 Face 12646 6135 6329 6325 Face 12647 5520 6326 6257 Face 12648 5520 6330 6326 Face 12649 5455 6327 6323 Face 12650 5455 6246 6327 Face 12651 5606 6328 5292 Face 12652 5606 6324 6328 Face 12653 6138 6329 6163 Face 12654 6138 6325 6329 Face 12655 6147 6330 5520 Face 12656 6147 6278 6330 Face 12657 6104 6331 6335 Face 12658 6104 6107 6331 Face 12659 5708 6332 6328 Face 12660 5708 2011 6332 Face 12661 6131 6333 6359 Face 12662 6339 6138 6333 Face 12663 5296 6334 5291 Face 12664 5296 6147 6334 Face 12665 5455 6335 6246 Face 12666 5455 6104 6335 Face 12667 6009 6336 6339 Face 12668 6009 6332 6336 Face 12669 5572 6337 5370 Face 12670 5572 5472 6337 Face 12671 6379 6338 6315 Face 12672 6191 6352 6338 Face 12673 6131 6339 6333 Face 12674 6131 6009 6339 Face 12675 2182 6340 6296 Face 12676 2182 6355 6340 Face 12677 5319 6341 1014 Face 12678 5319 5847 6341 Face 12679 6083 6342 5733 Face 12680 6083 6086 6342 Face 12681 5273 6343 704 Face 12682 5273 2182 6343 Face 12683 5374 6344 5696 Face 12684 5374 6382 6344 Face 12685 5575 6345 6337 Face 12686 5575 5581 6345 Face 12687 1356 6346 6055 Face 12688 1356 1260 6346 Face 12689 3352 6347 6285 Face 12690 3352 6449 6347 Face 12691 6252 6348 6362 Face 12692 6252 5525 6348 Face 12693 6315 6349 6379 Face 12694 6315 5523 6349 Face 12695 5836 6350 6014 Face 12696 5836 6381 6350 Face 12697 6176 6351 6355 Face 12698 6176 6142 6351 Face 12699 583 6352 6191 Face 12700 583 6293 6352 Face 12701 5868 6353 6239 Face 12702 5868 5498 6353 Face 12703 5340 6354 5916 Face 12704 5340 6471 6354 Face 12705 6292 6355 6360 Face 12706 6292 6176 6355 Face 12707 6188 6356 6352 Face 12708 6188 6181 6356 Face 12709 6434 6357 5868 Face 12710 6434 6361 6357 Face 12711 3651 6358 3954 Face 12712 3651 5322 6358 Face 12713 6140 6359 6174 Face 12714 6140 6131 6359 Face 12715 6056 6360 6287 Face 12716 6056 6292 6360 Face 12717 6425 6361 6434 Face 12718 5481 775 6361 Face 12719 6338 6362 6315 Face 12720 6338 6356 6362 Face 12721 2638 6363 5814 Face 12722 2638 5261 6363 Face 12723 5521 6364 6369 Face 12724 5521 5415 6364 Face 12725 2903 6365 859 Face 12726 2903 5854 6365 Face 12727 5530 6366 5863 Face 12728 5530 5532 6366 Face 12729 5363 6367 6451 Face 12730 5363 6363 6367 Face 12731 6191 6368 2183 Face 12732 6191 6338 6379 Face 12733 526 6369 6364 Face 12734 526 6373 6369 Face 12735 3796 6370 5746 Face 12736 3796 5510 6370 Face 12737 5510 6371 6200 Face 12738 5510 6437 6371 Face 12739 2930 6372 5543 Face 12740 2930 2970 6372 Face 12741 5636 6373 526 Face 12742 5636 5906 6373 Face 12743 5624 6374 6378 Face 12744 5624 5627 6374 Face 12745 6197 6375 6371 Face 12746 6197 6368 6375 Face 12747 6272 6376 5670 Face 12748 6272 6279 6376 Face 12749 5389 6377 5395 Face 12750 5389 5636 6377 Face 12751 6253 6378 2620 Face 12752 6253 5624 6378 Face 12753 6368 6379 6388 Face 12754 6368 6191 6379 Face 12755 5693 6380 6404 Face 12756 5693 5697 6380 Face 12757 1302 6381 5841 Face 12758 1302 6350 6381 Face 12759 6137 6382 5378 Face 12760 6137 6472 6382 Face 12761 6020 6383 6028 Face 12762 6020 6378 6383 Face 12763 5883 6384 6106 Face 12764 5883 5378 6384 Face 12765 5320 6385 6004 Face 12766 5320 6425 6385 Face 12767 5586 6386 5254 Face 12768 5586 5596 6386 Face 12769 6395 6387 6069 Face 12770 6395 6390 6387 Face 12771 6375 6388 6371 Face 12772 6375 6368 6388 Face 12773 1998 6389 5834 Face 12774 1998 186 6389 Face 12775 5883 6390 5378 Face 12776 5883 5895 6390 Face 12777 5561 6391 5563 Face 12778 5561 6395 6391 Face 12779 2686 6392 2782 Face 12780 2686 5348 6392 Face 12781 3161 6393 2537 Face 12782 3161 2619 6393 Face 12783 5634 6394 5892 Face 12784 5634 5682 6394 Face 12785 5891 6395 5561 Face 12786 5891 6390 6395 Face 12787 6213 6396 5742 Face 12788 6213 5326 6396 Face 12789 5384 6397 5473 Face 12790 5384 5781 6397 Face 12791 5348 6398 6303 Face 12792 5348 2686 6398 Face 12793 6177 6399 3694 Face 12794 6177 6463 6399 Face 12795 5461 6400 6301 Face 12796 5461 6297 6400 Face 12797 6415 6401 5633 Face 12798 5397 5394 6401 Face 12799 5706 6402 5293 Face 12800 5706 5702 6402 Face 12801 842 6403 2762 Face 12802 842 5571 6403 Face 12803 5674 6404 5397 Face 12804 5674 5693 6404 Face 12805 6417 6405 5637 Face 12806 6417 5679 6405 Face 12807 1324 6406 5584 Face 12808 1324 5836 6406 Face 12809 2603 6407 2482 Face 12810 2603 3650 6407 Face 12811 6269 6408 5852 Face 12812 6269 1174 6408 Face 12813 5672 6409 5400 Face 12814 5672 6468 6409 Face 12815 5258 6410 1324 Face 12816 5258 6381 6410 Face 12817 6136 6411 6063 Face 12818 6136 5279 6411 Face 12819 775 6412 6361 Face 12820 775 5290 6412 Face 12821 5528 6413 2930 Face 12822 5528 3801 6413 Face 12823 5470 6414 6085 Face 12824 5470 5735 6414 Face 12825 5397 6415 6409 Face 12826 5397 6401 6415 Face 12827 6301 6416 6305 Face 12828 6301 6400 6416 Face 12829 5400 6417 5406 Face 12830 5400 5679 6417 Face 12831 3801 6418 6413 Face 12832 3801 1739 6418 Face 12833 5653 6419 5416 Face 12834 5653 5638 6419 Face 12835 3887 6420 2633 Face 12836 3887 2470 6420 Face 12837 5784 6421 1503 Face 12838 5784 5780 6421 Face 12839 5700 6422 5670 Face 12840 5700 5798 6422 Face 12841 2861 6423 6112 Face 12842 2861 1296 6423 Face 12843 5685 6424 5403 Face 12844 5685 5653 6424 Face 12845 5481 6425 6242 Face 12846 5481 6361 6425 Face 12847 6401 6426 5633 Face 12848 6401 496 6426 Face 12849 870 6427 6342 Face 12850 870 2935 6427 Face 12851 5086 6428 6420 Face 12852 5086 5661 6428 Face 12853 5868 6429 5498 Face 12854 5868 6357 6429 Face 12855 5533 6430 771 Face 12856 5533 6285 6430 Face 12857 5367 6431 5362 Face 12858 5367 5057 6431 Face 12859 5908 6432 5251 Face 12860 5908 5567 6432 Face 12861 5549 6433 5559 Face 12862 5549 5488 6433 Face 12863 6239 6434 5868 Face 12864 6239 6425 6434 Face 12865 6461 6435 6440 Face 12866 5535 6195 6435 Face 12867 5387 6436 5616 Face 12868 5387 5393 6436 Face 12869 3795 6437 3796 Face 12870 3795 6197 6437 Face 12871 5690 6438 6241 Face 12872 5690 5700 6438 Face 12873 6453 6439 5852 Face 12874 6270 5667 6439 Face 12875 6430 6440 771 Face 12876 6430 6461 6440 Face 12877 5423 6441 5660 Face 12878 5423 6255 6441 Face 12879 5748 6442 3795 Face 12880 5748 5750 6442 Face 12881 6241 6443 5390 Face 12882 6241 6438 6443 Face 12883 5852 6444 6453 Face 12884 5852 6408 6444 Face 12885 5443 6445 264 Face 12886 5443 3813 6445 Face 12887 5702 6446 5507 Face 12888 5702 5291 6446 Face 12889 6299 6447 6442 Face 12890 6299 6459 6447 Face 12891 5544 6448 6187 Face 12892 5544 6310 6448 Face 12893 5629 6449 3352 Face 12894 5629 1241 6449 Face 12895 5345 6450 5635 Face 12896 5345 6405 6450 Face 12897 5727 6451 5725 Face 12898 5727 5363 6451 Face 12899 5754 6452 5756 Face 12900 5754 5273 6452 Face 12901 6270 6453 942 Face 12902 6270 6439 6453 Face 12903 5609 6454 5610 Face 12904 5609 5262 6454 Face 12905 5432 6455 5655 Face 12906 5432 6275 6455 Face 12907 6172 6456 5279 Face 12908 6172 6140 6456 Face 12909 6069 6457 6395 Face 12910 6069 5881 6457 Face 12911 6287 6458 5754 Face 12912 6287 6360 6458 Face 12913 6343 6459 6299 Face 12914 6343 6296 6459 Face 12915 5563 6460 6344 Face 12916 5563 5884 6460 Face 12917 5535 6461 6449 Face 12918 5535 6435 6461 Face 12919 5615 6462 6034 Face 12920 5615 2473 6462 Face 12921 5183 6463 5191 Face 12922 5183 6399 6463 Face 12923 5688 6464 5386 Face 12924 5688 5634 6464 Face 12925 5236 6465 86 Face 12926 5236 5216 6465 Face 12927 5285 6466 5384 Face 12928 5285 5866 6466 Face 12929 5790 6467 5626 Face 12930 5790 5812 6467 Face 12931 5674 6468 5395 Face 12932 5674 5397 6468 Face 12933 6255 6469 6441 Face 12934 6255 6261 6469 Face 12935 5191 6470 5183 Face 12936 5191 3163 6470 Face 12937 1503 6471 5340 Face 12938 1503 5786 6471 Face 12939 5561 6472 6137 Face 12940 5561 5563 6472 Face 12941 5866 6473 5498 Face 12942 5866 5285 6473 Face 12943 6166 6474 6038 Face 12944 6166 6057 6474 Face 12945 3353 6475 5565 Face 12946 3353 5877 6475 ================================================ FILE: models/fandisk_1k.m ================================================ # ||Computing arc-length boundary... # ||Coarse Mesh L^2 Stretch Efficiency: 0.978106 # ||Coarse Mesh L^i Stretch Efficiency: 0.831746 # ||Optimizing coarse mesh... # ||Coarse Mesh L^2 Stretch Efficiency: 0.999996 # ||Coarse Mesh L^i Stretch Efficiency: 0.997217 # ||Optimizing coarse-to-fine... # ||(Timing on cpu=x86-L15-R0204 host=T-PEDROS) # || (_ctf: 28.38) # ||Fine Mesh L^2 Stretch Efficiency: 0.947283 # ||Fine Mesh L^i Stretch Efficiency: 0.286988 # ||Intra-Rectangle Efficiency: 0.695684 # ||Packing Efficiency: 0.475601 # |Created on 2003/11/15 21:32:19 using: # | C:\cygwin\home\Zoe\hh_src\bin\filtermesh.exe fandisk_c4.param.m # | -removeinfo # |(Timing on cpu=x86-L6-R0806 host=BUTTERCUP) # | (_readmesh: 0.45) # | (Filtermesh: 0.48) # Created on 2003/11/16 00:08:29 using: # C:\cygwin\home\Zoe\hh_src\bin\filtermesh.exe fandisk_10k.m -qemc -nfaces # 1000 -reduce -renumber # (Timing on cpu=x86-L6-R0806 host=BUTTERCUP) # (_readmesh: 0.27) # Sred: (19419 ) 0:1e+030 av=4.11968e+026 sd=2.02933e+028 # (__initpq: 0.38) # Reduced 5973 times, deleted 17919 edges, 11946 faces # (_reduce: 9.32) # (_renumber: 0.00) # (Filtermesh: 9.58) Vertex 1 1.00009e-006 15.435 -7.50641e-006 Vertex 2 2.6989 15.2005 -2.68026 Vertex 3 4.8279 15.3879 4.24175e-015 Vertex 4 2.42792 13.3987 -2.60171e-016 Vertex 5 4.56981 17.8381 0 Vertex 6 2.4279 13.1952 -2.32666 Vertex 7 0 15.2827 -2.14145 Vertex 8 4.8279 13.612 0 Vertex 9 3.36291 15.4688 -1.15891 Vertex 10 1.76296 12.8582 -2.26725 Vertex 11 4.8279 14.8311 -0.94831 Vertex 12 4.65767 17.6219 -0.518315 Vertex 13 1.19925 15.7352 -0.431031 Vertex 14 3.11549 14.1974 -1.83314 Vertex 15 1.23157 14.1117 -1.6967e-014 Vertex 16 1.48195 12.8194 -3.3934e-014 Vertex 17 1.043 15.6654 2.03554e-014 Vertex 18 0.246375 14.685 0 Vertex 19 0.962894 14.2763 -2.28059 Vertex 20 3.06532 13.4793 -0.66492 Vertex 21 4.4083 14.0734 -3.04793e-014 Vertex 22 2.45286 16.9203 -1.6967e-014 Vertex 23 2.79075 15.2948 -2.07435 Vertex 24 1.00825 15.2567 -2.33516 Vertex 25 0.219095 14.5109 -2.24763 Vertex 26 3.16259 13.7154 -1.07898 Vertex 27 3.08313 15.9522 -0.813887 Vertex 28 2.88726 16.7497 -0.672114 Vertex 29 4.65033 15.5686 -0.592528 Vertex 30 2.1779 12.6577 -1.89907 Vertex 31 3.54748 14.8687 -1.57953 Vertex 32 1.3723 14.554 -2.56627 Vertex 33 1.28544 13.8848 -1.53726 Vertex 34 2.7029 13.5536 -2.38987 Vertex 35 2.27298 12.8188 -3.3934e-014 Vertex 36 4.6808 13.9348 -0.30505 Vertex 37 2.86002 15.4289 -1.23598 Vertex 38 0.468401 15.448 -0.99236 Vertex 39 3.6454 17.6432 0 Vertex 40 0.755906 14.5877 0 Vertex 41 4.08375 14.4281 -0.524602 Vertex 42 3.1864 14.8952 -2.62643 Vertex 43 3.65709 16.295 -0.565927 Vertex 44 3.12406 15.1168 -1.37025 Vertex 45 4.6914 15.1791 -1.01673 Vertex 46 4.66207 16.7933 -0.371721 Vertex 47 3.37027 14.7624 -1.83926 Vertex 48 2.6989 14.8952 -2.62643 Vertex 49 1.31342 15.334 -1.75385 Vertex 50 1.33777 15.0173 -1.67492e-014 Vertex 51 1.66808 16.0735 -3.80002e-026 Vertex 52 3.99209 17.2352 -0.586509 Vertex 53 3.86614 17.7119 -0.260764 Vertex 54 1.3285 13.05 -3.3934e-014 Vertex 55 1.5785 12.6707 -1.80282 Vertex 56 1.3285 13.348 -0.16424 Vertex 57 4.26675 14.8551 -1.05348 Vertex 58 2.4279 13.3914 -0.405581 Vertex 59 0.534542 15.494 -8.95925e-013 Vertex 60 3.98722e-009 15.2116 -0.868653 Vertex 61 4.10642 13.8845 -0.419216 Vertex 62 4.03199 15.1849 -0.98351 Vertex 63 2.4279 12.9235 -1.78915 Vertex 64 4.8279 15.2649 -0.529773 Vertex 65 2.17085 15.8801 -0.832819 Vertex 66 0.618785 14.5236 -1.85603 Vertex 67 3.19283 14.4903 -2.42199 Vertex 68 3.05396 17.3636 -0.304684 Vertex 69 1.57914 15.9915 -0.423411 Vertex 70 2.4279 13.239 -2.05775 Vertex 71 2.7924 13.3458 -1.73921 Vertex 72 3.3963 13.8643 -0.850032 Vertex 73 3.83382 15.5271 -0.82801 Vertex 74 2.4279 13.0233 -0.749192 Vertex 75 4.8279 16.1461 -0.135251 Vertex 76 4.8279 14.5818 -0.291872 Vertex 77 4.8279 15.6444 -0.162599 Vertex 78 4.13829 14.3824 -0.783669 Vertex 79 4.12391 14.9186 -1.12532 Vertex 80 2.1779 12.7952 -0.327767 Vertex 81 1.29755 13.9269 -3.3934e-014 Vertex 82 1.13074 14.2738 -0.386023 Vertex 83 0.711183 14.6044 -0.318668 Vertex 84 0.25459 14.6278 -1.28453 Vertex 85 0.952842 15.6176 -0.424606 Vertex 86 4.53392 13.607 -0.135116 Vertex 87 4.8279 14.0834 -0.325502 Vertex 88 2.70517 13.6788 -2.31229 Vertex 89 0.715766 15.2005 -2.68026 Vertex 90 3.65697 14.8654 -1.45442 Vertex 91 4.8279 17.3318 3.3934e-014 Vertex 92 1.3285 13.6203 -1.11659 Vertex 93 3.16329 15.7127 -0.801885 Vertex 94 1.34745 12.8343 -1.73924 Vertex 95 3.43123 15.52 -0.868481 Vertex 96 4.66556 17.8433 -0.253128 Vertex 97 3.26022 14.6525 -2.0911 Vertex 98 3.11928 14.9974 -2.04668 Vertex 99 0.0981646 15.431 -0.393804 Vertex 100 4.235 15.5905 -0.468514 Vertex 101 3.83729 13.9034 -0.543208 Vertex 102 3.04799 13.7733 -1.25092 Vertex 103 2.8464 13.6811 -1.63286 Vertex 104 2.37702 16.8444 -0.319205 Vertex 105 2.6622 13.3758 -1.28888 Vertex 106 3.40007 15.314 -1.09741 Vertex 107 3.8093 15.3727 -0.812959 Vertex 108 0.199944 15.3722 -1.42135 Vertex 109 1.90161 12.7531 -1.09138 Vertex 110 0.812951 15.4329 -1.22791 Vertex 111 2.78034 15.5805 -1.01701 Vertex 112 3.82378 13.5737 -2.60171e-016 Vertex 113 2.70793 14.926 -2.45203 Vertex 114 4.40646 17.6739 -0.509152 Vertex 115 1.3285 13.0039 -0.931253 Vertex 116 0.962894 14.4103 -1.16438 Vertex 117 3.19435 17.4443 0 Vertex 118 1.40134 12.8673 -0.366257 Vertex 119 2.40812 12.9525 -3.3934e-014 Vertex 120 2.35369 12.8624 -0.445499 Vertex 121 2.66454 13.4312 -0.398007 Vertex 122 4.13511 16.6618 -0.439433 Vertex 123 5.84141e-007 15.3644 -1.47466 Vertex 124 2.89789 15.1902 -1.76947 Vertex 125 4.67558 15.4171 -0.562769 Vertex 126 4.8279 14.4517 -0.390453 Vertex 127 1.95578e-008 15.1437 1.27253e-014 Vertex 128 4.8279 16.8008 -0.366491 Vertex 129 4.8279 15.612 -0.346789 Vertex 130 4.8279 13.9446 0 Vertex 131 3.92773 13.5787 -0.22482 Vertex 132 0.426517 14.5084 -2.23305 Vertex 133 2.35386 12.7165 -1.99432 Vertex 134 2.67733 15.3853 -1.35712 Vertex 135 3.1807 15.3897 -1.34516 Vertex 136 2.16644 16.6167 -0.324911 Vertex 137 2.30407 13.2655 -2.33905 Vertex 138 2.74921 13.5567 -1.94515 Vertex 139 2.63732 17.0675 -0.616084 Vertex 140 1.87142 16.2723 -0.387658 Vertex 141 1.5785 12.7952 -0.327767 Vertex 142 6.87562e-007 15.428 -0.424496 Vertex 143 3.44517 15.5738 -0.56315 Vertex 144 2.94643 15.5519 -0.986955 Vertex 145 3.37931 14.3524 -0.954146 Vertex 146 1.78206 15.5742 -1.02458 Vertex 147 1.18519 14.0521 -2.02304 Vertex 148 2.70773 15.0778 -2.48097 Vertex 149 2.7939 15.0035 -2.01267 Vertex 150 2.87561 14.2278 -1.66066 Vertex 151 3.62842 17.6295 -0.51698 Vertex 152 2.4279 13.1773 -1.02208 Vertex 153 2.4279 13.358 -1.0255 Vertex 154 0.426517 14.673 -0.417655 Vertex 155 1.28544 13.9612 -0.569768 Vertex 156 4.69567 14.8253 -0.953911 Vertex 157 2.81223 13.4605 -2.60171e-016 Vertex 158 3.89737 15.2276 -0.741305 Vertex 159 2.1779 12.7257 -1.36316 Vertex 160 2.56989 13.249 -2.1542 Vertex 161 0.584547 15.3814 -1.37315 Vertex 162 0.771821 15.5428 -0.654081 Vertex 163 1.63496 16.0252 -0.799855 Vertex 164 3.31911 15.0073 -1.99079 Vertex 165 4.66282 15.6433 -0.169031 Vertex 166 4.60848 13.6075 -0.25473 Vertex 167 4.38941 13.9139 -0.342632 Vertex 168 2.53125 16.9878 -0.275502 Vertex 169 3.10377 13.4564 -1.11242 Vertex 170 2.60645 13.3231 -1.68016 Vertex 171 0.222986 14.6781 -0.416478 Vertex 172 5.21541e-008 14.6343 -1.20883 Vertex 173 4.8279 15.2226 -0.76982 Vertex 174 1.3285 12.8517 -2.26611 Vertex 175 3.68969 13.5521 -0.569348 Vertex 176 4.20038 13.5933 -0.335916 Vertex 177 3.10959 13.5002 -0.223271 Vertex 178 1.86571 12.6055 -2.2227 Vertex 179 3.73654 14.2954 -1.27721 Vertex 180 1.26901 13.8081 -2.43473 Vertex 181 1.32369 13.6654 -1.75955 Vertex 182 1.21071 13.9407 -2.45813 Vertex 183 0.885537 14.295 -2.52059 Vertex 184 2.7029 14.0828 -2.48317 Vertex 185 2.70857 14.1083 -2.3383 Vertex 186 3.1864 14.6032 -2.57494 Vertex 187 3.33476 14.2007 -1.8145 Vertex 188 2.94465 14.0828 -2.48317 Vertex 189 2.94265 14.8952 -2.62643 Vertex 190 3.50883 13.8355 -0.748568 Vertex 191 0.226303 15.352 -8.49174e-016 Vertex 192 4.35192 15.5605 -0.638337 Vertex 193 4.8279 14.0784 -0.149536 Vertex 194 4.34227 14.3549 -0.939363 Vertex 195 1.11759e-008 14.8048 -2.61049 Vertex 196 4.79631e-008 14.5577 -1.90782 Vertex 197 3.6102 17.6292 -0.226172 Vertex 198 0.426517 14.5891 -1.62578 Vertex 199 3.68166 15.099 -1.47104 Vertex 200 1.06883 14.3554 0 Vertex 201 0.962894 14.4474 -0.493538 Vertex 202 3.66811 13.8437 -0.633642 Vertex 203 1.25238 14.018 -1.15275 Vertex 204 2.86577 15.3219 -1.86422 Vertex 205 4.8279 17.8436 -0.479237 Vertex 206 4.22858 15.4029 -0.641526 Vertex 207 3.81664 14.8565 -1.30816 Vertex 208 4.04113 15.1453 -1.20818 Vertex 209 3.91627 14.3196 -1.14023 Vertex 210 3.98799 14.9353 -1.20195 Vertex 211 2.88666 17.2505 -0.583813 Vertex 212 4.67589 15.2638 -0.535722 Vertex 213 3.18377 15.2542 -1.31731 Vertex 214 2.70517 13.2578 -2.23805 Vertex 215 5.21541e-008 14.6719 -0.569081 Vertex 216 2.40888 12.7576 -2.24951 Vertex 217 2.35378 12.8229 -1.12186 Vertex 218 0.620725 14.419 -2.54245 Vertex 219 0.246375 14.4619 -2.55002 Vertex 220 1.48184 12.7783 -1.02031 Vertex 221 2.7703 15.1386 -2.11655 Vertex 222 4.8279 14.5576 -0.799614 Vertex 223 1.10151 14.277 -1.07867 Vertex 224 2.79093 15.4688 -1.15892 Vertex 225 2.9436 15.5 -0.98192 Vertex 226 4.03977 15.6228 -0.285674 Vertex 227 4.30076 16.9533 -0.449911 Vertex 228 4.585 17.8334 -0.481024 Vertex 229 2.27379 12.6243 -2.22601 Vertex 230 4.48265 13.6061 -1.58108e-010 Vertex 231 4.37573 15.4093 -0.605182 Vertex 232 3.63674 15.3545 -0.916327 Vertex 233 0.985432 15.6063 -0.991987 Vertex 234 0.782989 15.5613 2.71406e-014 Vertex 235 0.37395 15.4111 -1.27944 Vertex 236 0.559758 15.4964 -0.266792 Vertex 237 2.4279 13.2243 -3.3934e-014 Vertex 238 1.40201 12.6774 -2.23537 Vertex 239 0.618785 14.611 -0.943735 Vertex 240 2.56529 13.2186 -2.33079 Vertex 241 4.8279 17.8481 -0.239636 Vertex 242 0.799897 14.4024 -2.17481 Vertex 243 3.87712 16.4777 -0.497175 Vertex 244 3.18976 15.9387 -0.817647 Vertex 245 3.48414 16.5394 -0.709192 Vertex 246 3.47052 16.216 -0.660643 Vertex 247 3.51509 15.3386 -1.0027 Vertex 248 3.41606 15.1716 -1.05927 Vertex 249 4.65642 14.4503 -0.398818 Vertex 250 2.86836 15.7839 -0.871484 Vertex 251 2.78046 13.4209 -0.970419 Vertex 252 2.9966 13.4277 -1.2743 Vertex 253 2.93814 13.7269 -1.43708 Vertex 254 2.99632 14.2696 -1.42317 Vertex 255 3.41266 14.227 -1.66502 Vertex 256 3.19937 14.1153 -2.29832 Vertex 257 3.39748 15.0346 -1.83598 Vertex 258 2.97301 15.0761 -1.60064 Vertex 259 3.00319 15.2193 -1.57096 Vertex 260 1.48188 12.6696 -1.95004 Vertex 261 1.40136 12.8056 -1.31646 Vertex 262 3.81613 14.4069 -0.64463 Vertex 263 4.0624 14.3348 -1.05364 Vertex 264 4.65756 14.3661 -0.876508 Vertex 265 4.45199 15.6396 -0.189965 Vertex 266 4.3469 15.1675 -1.08217 Vertex 267 4.41289 14.9075 -1.0164 Vertex 268 3.19329 14.9188 -2.49278 Vertex 269 4.8279 15.4176 -0.556688 Vertex 270 1.3261 13.5253 -2.38487 Vertex 271 2.4279 13.0234 -2.29638 Vertex 272 3.94436 15.3846 -0.745836 Vertex 273 4.8279 14.4098 -0.628529 Vertex 274 4.44994 15.2588 -0.564738 Vertex 275 0.799897 14.533 -0.994082 Vertex 276 2.87598 15.538 -1.06392 Vertex 277 1.82816 16.2132 -0.766701 Vertex 278 2.67846 17.11 0 Vertex 279 4.8279 15.569 -0.109339 Vertex 280 2.65945 17.0922 -0.38007 Vertex 281 0.256643 14.66 -0.848884 Vertex 282 0.475067 14.673 0 Vertex 283 1.73928 16.1335 -0.398373 Vertex 284 2.27307 12.7884 -0.862566 Vertex 285 2.77894 14.1795 -1.93417 Vertex 286 3.1864 14.0828 -2.48317 Vertex 287 2.70763 15.2295 -2.50874 Vertex 288 2.2732 12.6725 -1.92588 Vertex 289 1.3568 15.5238 -1.0811 Vertex 290 2.718 15.5026 -1.10772 Vertex 291 3.20189 15.438 -1.21546 Vertex 292 3.63866 15.507 -0.941914 Vertex 293 3.29001 15.2857 -1.20031 Vertex 294 3.65614 15.2035 -0.877855 Vertex 295 3.86035 15.1252 -1.32211 Vertex 296 3.58955 14.2698 -1.42273 Vertex 297 3.22529 14.3249 -1.10978 Vertex 298 3.2914 13.7674 -0.937836 Vertex 299 1.30929 13.7412 -1.9352 Vertex 300 0.25921 14.5885 -1.67481 Vertex 301 4.8279 15.0865 -0.81965 Vertex 302 2.40811 12.9423 -0.460561 Vertex 303 0.140631 15.4394 -1.96427e-011 Vertex 304 1.82201 12.8 -3.3934e-014 Vertex 305 6.35557e-007 15.3953 -1.08826 Vertex 306 5.21541e-008 14.685 -4.35332e-013 Vertex 307 0 15.2005 -2.68026 Vertex 308 4.8279 15.5702 -0.583604 Vertex 309 1.34749 12.9445 -0.448465 Vertex 310 2.1779 12.7766 -0.76442 Vertex 311 2.6989 15.0478 -2.65335 Vertex 312 4.36565 14.4426 -0.442137 Vertex 313 4.8279 13.6098 -0.241995 Vertex 314 3.36118 13.5077 -0.821238 Vertex 315 2.98023e-008 14.4619 -2.55002 Vertex 316 2.14336 16.5805 -0.701952 Vertex 317 0.145762 15.405 -1.01529 Vertex 318 1.32613 13.7337 -3.3934e-014 Vertex 319 0.88407 14.3882 -1.92201 Vertex 320 3.34796 13.531 -2.60171e-016 Vertex 321 1.03561 14.2402 -2.07438 Vertex 322 1.3117 15.7832 -0.872297 Vertex 323 2.40807 12.8335 -1.73292 Vertex 324 2.42791 13.3015 -1.60572 Vertex 325 3.22163 14.5537 -2.22491 Vertex 326 3.7477 16.9481 -0.637128 Vertex 327 0.618785 14.4646 -2.26847 Vertex 328 1.13124 14.0623 -2.47957 Vertex 329 3.96957 13.9292 -0.482164 Vertex 330 1.80312 16.2039 1.20501e-025 Vertex 331 1.46732 15.9124 1.11625e-025 Vertex 332 4.39709 17.8214 -0.187295 Vertex 333 3.22423 14.9557 -2.28353 Vertex 334 4.8279 15.1803 -1.00987 Vertex 335 1.48181 12.8085 -0.492299 Vertex 336 1.40138 12.7331 -1.88568 Vertex 337 1.5785 12.7691 -0.873428 Vertex 338 2.85152 17.2345 -0.286842 Vertex 339 4.8279 17.85 3.3934e-014 Vertex 340 4.52632 14.8072 -0.972469 Vertex 341 1.34748 12.9545 -3.3934e-014 Vertex 342 3.36358 17.5198 -0.536331 Vertex 343 1.89225 12.7817 -0.667429 Vertex 344 2.7029 13.2408 -2.33471 Vertex 345 1.89069 12.6661 -1.83895 Vertex 346 0.477486 14.4497 -2.54787 Vertex 347 1.48291 12.6243 -2.226 Vertex 348 1.5785 12.7324 -1.30894 Vertex 349 3.27229 15.5525 -0.683827 Vertex 350 4.38156 17.5258 -0.535271 Vertex 351 3.92483 17.7227 -0.500543 Vertex 352 2.273 12.814 -0.328248 Vertex 353 0.797598 15.5296 -1.07414 Vertex 354 3.43903 17.5623 0 Vertex 355 4.8279 14.3678 -0.866607 Vertex 356 0.923808 14.487 0 Vertex 357 4.8279 17.7427 -0.497019 Vertex 358 2.26149 16.7284 -3.3934e-014 Vertex 359 3.40916 17.5467 -0.242345 Vertex 360 1.03561 14.3844 -0.423094 Vertex 361 0.88407 14.493 -0.811942 Vertex 362 0.65837 15.4958 -0.924036 Vertex 363 1.5785 12.8 -3.3934e-014 Vertex 364 4.45111 16.9538 -0.422 Vertex 365 1.21042 14.1215 -0.979396 Vertex 366 1.3285 13.1514 -2.31894 Vertex 367 2.1779 12.6055 -2.2227 Vertex 368 1.71946 15.7968 -0.865815 Vertex 369 4.39032 13.6018 -0.287421 Vertex 370 0.711183 14.5056 -1.72801 Vertex 371 3.04347 15.7125 -0.912112 Vertex 372 4.8279 13.6114 -0.121002 Vertex 373 1.25238 14.0606 -0.386872 Vertex 374 1.31649 13.8144 -0.588547 Vertex 375 0.571188 14.6483 -0.36829 Vertex 376 0.426517 14.6388 -1.08506 Vertex 377 3.86273 15.6115 -0.349377 Vertex 378 4.08595 15.5469 -0.715674 Vertex 379 4.52493 15.4142 -0.578099 Vertex 380 3.05292 15.3603 -1.51575 Vertex 381 3.08468 15.2359 -1.44543 Vertex 382 3.25321 15.1439 -1.21626 Vertex 383 3.5263 15.0686 -1.64349 Vertex 384 3.45669 14.7883 -1.69217 Vertex 385 1.15997 14.1666 -1.44279 Vertex 386 4.24637 13.9232 -0.379616 Vertex 387 2.79854 13.5867 -1.75759 Vertex 388 2.37246 16.829 -0.658127 Vertex 389 2.09374 15.3644 -1.47466 Vertex 390 4.18168 15.1572 -1.14095 Vertex 391 4.48889 14.3615 -0.901896 Vertex 392 4.53432 13.9132 -0.316188 Vertex 393 2.87125 15.0407 -1.80155 Vertex 394 3.20297 17.4473 -0.268566 Vertex 395 1.83918 12.7221 -1.40551 Vertex 396 0.464329 15.4672 -0.59689 Vertex 397 2.4279 13.05 -3.3934e-014 Vertex 398 3.065 15.4688 -1.15891 Vertex 399 3.10879 15.5291 -0.816824 Vertex 400 3.97543 17.7436 0 Vertex 401 2.4279 12.8517 -2.26611 Vertex 402 4.0848 15.3945 -0.689238 Vertex 403 1.86103 12.7972 -0.242805 Vertex 404 2.1779 12.8 -3.3934e-014 Vertex 405 2.81477 15.1632 -1.97022 Vertex 406 4.15568 15.2457 -0.63875 Vertex 407 0.711183 14.5607 -1.17653 Vertex 408 0.799897 14.4841 -1.53762 Vertex 409 0.314398 15.4188 -1.04986 Vertex 410 4.244 15.6325 -0.230353 Vertex 411 0.254471 15.4407 -0.449587 Vertex 412 4.27567 17.7986 -0.487169 Vertex 413 2.35382 12.7782 -1.54682 Vertex 414 1.48186 12.7326 -1.48007 Vertex 415 2.54408 15.4698 -1.15885 Vertex 416 0.566263 15.4551 -1.18325 Vertex 417 0.617028 15.406 -1.29097 Vertex 418 4.51721 15.1751 -1.03909 Vertex 419 1.25238 13.9222 -2.00783 Vertex 420 2.35358 12.8721 -3.3934e-014 Vertex 421 1.37341 15.8405 -0.371367 Vertex 422 1.40143 12.8735 -3.3934e-014 Vertex 423 1.99838 16.4256 -1.6967e-014 Vertex 424 1.34756 12.7574 -2.24947 Vertex 425 2.3822 15.4186 -1.26026 Vertex 426 1.61985 15.6817 -0.93249 Vertex 427 2.59054 15.7161 -0.908807 Vertex 428 3.6285 15.5923 -0.458208 Vertex 429 2.08846 15.9807 -0.807706 Vertex 430 2.71763 13.564 -2.14309 Vertex 431 1.10151 14.1518 -2.17817 Vertex 432 0.6188 14.6419 0 Vertex 433 0.799897 14.5587 -0.43513 Vertex 434 1.03561 14.3228 -1.40382 Vertex 435 3.58715 14.3822 -0.784914 Vertex 436 3.2645 14.9818 -2.13502 Vertex 437 3.29823 14.7288 -1.99245 Vertex 438 2.35483 12.6778 -2.23544 Vertex 439 1.15997 14.2126 -0.877396 Vertex 440 2.95127 15.3426 -1.68562 Vertex 441 0.757239 14.3654 -2.53302 Vertex 442 1.5785 12.6055 -2.2227 Vertex 443 4.15514 17.3815 -0.560713 Vertex 444 0.52359 14.5141 -2.0932 Vertex 445 2.93917 17.2955 0 Vertex 446 0.52359 14.6012 -1.36122 Vertex 447 0.962894 14.3558 -1.71016 Vertex 448 0.88407 14.4526 -1.34736 Vertex 449 4.8279 17.6419 -0.514801 Vertex 450 2.73645 15.1153 -2.26101 Vertex 451 3.12203 15.8184 -0.855734 Vertex 452 3.03428 15.882 -0.832128 Vertex 453 2.73118 14.1421 -2.14634 Vertex 454 2.72837 13.296 -2.02186 Vertex 455 3.10345 14.2982 -1.26127 Vertex 456 3.94826 13.5764 -0.431412 Vertex 457 2.36357 15.6311 -0.970172 Vertex 458 1.1499 15.6882 -0.927321 Vertex 459 3.50923 13.53 -0.694417 Vertex 460 3.28764 15.4316 -1.22857 Vertex 461 3.44915 13.5375 -0.295471 Vertex 462 4.16291 17.7828 -0.278933 Vertex 463 1.29223 15.7954 8.45997e-026 Vertex 464 1.21042 14.0716 -1.54109 Vertex 465 2.89566 13.3937 -1.46756 Vertex 466 1.03561 14.3601 -0.954891 Vertex 467 1.00023 14.205 -2.50473 Vertex 468 1.3285 13.4072 -3.3934e-014 Vertex 469 3.30083 16.1831 -0.772024 Vertex 470 1.21042 14.1509 -0.349063 Vertex 471 3.47676 15.486 -1.0607 Vertex 472 3.32152 15.8964 -0.705653 Vertex 473 0.711183 14.432 -2.26335 Vertex 474 1.11649 15.467 -1.16347 Vertex 475 1.46961 15.8915 -0.829773 Vertex 476 3.25529 14.1637 -2.02407 Vertex 477 0.618785 14.5659 -1.48345 Vertex 478 0.88407 14.3278 -2.33065 Vertex 479 4.19155 17.7913 0 Vertex 480 2.40809 12.9075 -1.0676 Vertex 481 2.27314 12.7394 -1.41965 Vertex 482 4.19966 14.346 -0.990131 Vertex 483 2.96045 15.6181 -0.981026 Vertex 484 0.88407 14.5124 -0.316662 Vertex 485 2.26155 15.455 -1.18351 Vertex 486 2.49786 15.5551 -1.04369 Vertex 487 3.12962 17.4011 -0.557259 Vertex 488 1.40135 12.8404 -0.915025 Vertex 489 1.30927 13.6691 -2.41023 Vertex 490 1.16019 14.2402 0 Vertex 491 2.7373 14.9651 -2.23 Vertex 492 0.52359 14.6415 -0.834192 Vertex 493 2.78305 15.6506 -0.954551 Vertex 494 3.49541 14.2491 -1.53985 Vertex 495 3.22564 13.483 -0.960972 Vertex 496 0.327257 15.457 -1.09064e-011 Vertex 497 2.32263 15.5062 -1.10302 Vertex 498 1.66063 15.4085 -1.28359 Vertex 499 0.711183 14.5865 -0.803298 Vertex 500 2.73607 15.2643 -2.28932 Vertex 501 1.34747 12.907 -1.10455 Vertex 502 1.10151 14.2169 -1.70731 Face 1 385 365 439 Face 2 433 499 275 Face 3 230 21 112 Face 4 292 232 247 Face 5 123 305 108 Face 6 130 3 21 Face 7 193 87 76 Face 8 90 296 31 Face 9 291 135 134 Face 10 32 48 189 Face 11 208 62 390 Face 12 279 77 128 Face 13 311 48 32 Face 14 488 501 261 Face 15 115 94 501 Face 16 32 270 489 Face 17 424 94 174 Face 18 181 489 270 Face 19 4 237 58 Face 20 6 271 137 Face 21 473 242 370 Face 22 34 184 88 Face 23 34 32 184 Face 24 6 152 271 Face 25 6 240 160 Face 26 430 454 214 Face 27 465 71 103 Face 28 114 412 228 Face 29 391 340 264 Face 30 31 383 90 Face 31 397 302 74 Face 32 490 82 470 Face 33 490 200 82 Face 34 40 433 484 Face 35 230 112 131 Face 36 3 130 76 Face 37 14 185 184 Face 38 14 150 285 Face 39 60 307 195 Face 40 7 24 307 Face 41 5 21 91 Face 42 336 94 424 Face 43 349 95 399 Face 44 449 12 114 Face 45 490 50 200 Face 46 26 297 298 Face 47 303 496 411 Face 48 123 60 305 Face 49 41 386 61 Face 50 26 169 102 Face 51 26 455 297 Face 52 211 28 139 Face 53 406 62 158 Face 54 98 382 248 Face 55 229 10 438 Face 56 49 123 108 Face 57 486 497 457 Face 58 48 98 189 Face 59 48 148 113 Face 60 219 315 32 Face 61 341 309 118 Face 62 422 341 118 Face 63 341 422 50 Face 64 420 120 119 Face 65 352 120 420 Face 66 58 121 4 Face 67 7 123 49 Face 68 7 60 123 Face 69 44 98 258 Face 70 2 89 24 Face 71 2 32 89 Face 72 64 125 269 Face 73 64 62 212 Face 74 312 41 78 Face 75 215 306 60 Face 76 279 128 3 Face 77 87 372 313 Face 78 256 14 286 Face 79 229 438 133 Face 80 49 389 380 Face 81 204 440 124 Face 82 204 49 440 Face 83 6 137 240 Face 84 71 387 103 Face 85 454 430 138 Face 86 422 118 335 Face 87 303 99 142 Face 88 472 349 93 Face 89 93 349 399 Face 90 14 297 455 Face 91 273 249 78 Face 92 311 148 48 Face 93 103 285 150 Face 94 332 228 412 Face 95 142 60 1 Face 96 70 152 6 Face 97 324 153 152 Face 98 324 105 153 Face 99 446 376 198 Face 100 73 292 95 Face 101 266 267 57 Face 102 4 157 50 Face 103 4 121 157 Face 104 119 50 420 Face 105 237 4 50 Face 106 293 248 382 Face 107 7 307 60 Face 108 3 128 75 Face 109 70 6 160 Face 110 417 161 235 Face 111 29 100 308 Face 112 77 165 128 Face 113 46 128 165 Face 114 12 449 128 Face 115 36 87 166 Face 116 312 386 41 Face 117 338 280 278 Face 118 127 18 50 Face 119 91 75 241 Face 120 495 169 26 Face 121 251 105 252 Face 122 71 465 170 Face 123 18 306 171 Face 124 334 11 156 Face 125 58 237 152 Face 126 56 174 115 Face 127 92 181 270 Face 128 20 169 495 Face 129 260 238 347 Face 130 299 489 181 Face 131 147 182 419 Face 132 321 467 431 Face 133 188 14 184 Face 134 88 184 185 Face 135 34 88 214 Face 136 67 286 186 Face 137 47 187 437 Face 138 32 186 286 Face 139 303 191 496 Face 140 127 50 191 Face 141 73 95 378 Face 142 355 264 156 Face 143 210 209 207 Face 144 32 195 307 Face 145 62 199 98 Face 146 62 295 199 Face 147 360 356 201 Face 148 329 456 101 Face 149 439 365 470 Face 150 75 128 449 Face 151 406 158 272 Face 152 308 269 125 Face 153 295 207 199 Face 154 79 208 390 Face 155 79 263 210 Face 156 280 211 139 Face 157 359 197 151 Face 158 113 98 48 Face 159 339 91 241 Face 160 379 274 231 Face 161 125 64 212 Face 162 382 213 293 Face 163 44 258 381 Face 164 281 172 84 Face 165 171 306 215 Face 166 63 323 216 Face 167 473 441 242 Face 168 25 219 132 Face 169 25 315 219 Face 170 196 315 25 Face 171 196 60 315 Face 172 488 261 220 Face 173 258 124 259 Face 174 301 11 334 Face 175 301 76 11 Face 176 46 165 265 Face 177 12 128 46 Face 178 96 205 228 Face 179 288 229 133 Face 180 372 86 313 Face 181 8 21 230 Face 182 378 272 73 Face 183 73 232 292 Face 184 73 107 232 Face 185 162 85 233 Face 186 59 234 162 Face 187 59 50 234 Face 188 38 235 409 Face 189 411 496 396 Face 190 10 424 174 Face 191 10 347 238 Face 192 34 214 344 Face 193 96 339 241 Face 194 19 478 183 Face 195 434 116 447 Face 196 452 371 250 Face 197 158 294 107 Face 198 158 62 294 Face 199 334 62 173 Face 200 126 87 249 Face 201 126 76 87 Face 202 36 249 87 Face 203 392 167 312 Face 204 355 222 273 Face 205 493 427 483 Face 206 20 251 169 Face 207 103 150 253 Face 208 150 254 253 Face 209 150 14 254 Face 210 67 256 286 Face 211 34 344 137 Face 212 87 193 372 Face 213 393 258 98 Face 214 393 124 258 Face 215 405 124 393 Face 216 55 260 347 Face 217 94 261 501 Face 218 273 264 355 Face 219 78 391 264 Face 220 165 100 265 Face 221 165 77 100 Face 222 418 266 62 Face 223 418 267 266 Face 224 340 267 418 Face 225 76 269 308 Face 226 76 64 269 Face 227 366 270 32 Face 228 366 56 270 Face 229 10 366 32 Face 230 401 271 152 Face 231 401 10 271 Face 232 402 272 378 Face 233 78 264 273 Face 234 36 166 392 Face 235 212 274 379 Face 236 212 62 274 Face 237 1 127 191 Face 238 1 60 127 Face 239 65 163 429 Face 240 117 445 50 Face 241 117 68 445 Face 242 8 130 21 Face 243 372 193 130 Face 244 18 282 50 Face 245 18 154 282 Face 246 188 286 14 Face 247 188 32 286 Face 248 32 188 184 Face 249 2 287 148 Face 250 2 24 287 Face 251 30 367 288 Face 252 189 186 32 Face 253 268 67 186 Face 254 474 353 289 Face 255 225 276 144 Face 256 415 497 486 Face 257 37 224 398 Face 258 95 9 398 Face 259 471 292 247 Face 260 471 95 292 Face 261 293 213 135 Face 262 247 248 106 Face 263 248 294 62 Face 264 248 247 294 Face 265 62 98 248 Face 266 208 295 62 Face 267 208 210 295 Face 268 207 295 210 Face 269 145 297 14 Face 270 145 298 297 Face 271 72 298 145 Face 272 64 173 62 Face 273 64 76 173 Face 274 173 301 334 Face 275 120 302 119 Face 276 1 303 142 Face 277 1 191 303 Face 278 214 160 344 Face 279 214 454 160 Face 280 27 28 244 Face 281 142 305 60 Face 282 142 317 305 Face 283 127 306 18 Face 284 127 60 306 Face 285 89 307 24 Face 286 89 32 307 Face 287 129 308 100 Face 288 129 76 308 Face 289 77 129 100 Face 290 77 279 129 Face 291 2 311 32 Face 292 2 148 311 Face 293 249 312 78 Face 294 249 392 312 Face 295 126 273 76 Face 296 126 249 273 Face 297 166 313 86 Face 298 166 87 313 Face 299 131 461 175 Face 300 195 315 60 Face 301 195 32 315 Face 302 192 379 231 Face 303 29 308 125 Face 304 115 468 56 Face 305 205 241 75 Face 306 205 96 241 Face 307 177 461 320 Face 308 475 322 421 Face 309 475 368 322 Face 310 70 324 152 Face 311 70 170 324 Face 312 444 346 327 Face 313 183 467 19 Face 314 183 32 467 Face 315 17 463 13 Face 316 17 50 463 Face 317 462 479 332 Face 318 268 189 98 Face 319 42 186 189 Face 320 45 334 156 Face 321 45 62 334 Face 322 141 16 335 Face 323 260 336 238 Face 324 260 414 336 Face 325 230 86 372 Face 326 5 339 96 Face 327 5 91 339 Face 328 54 341 50 Face 329 54 115 341 Face 330 228 205 114 Face 331 211 487 28 Face 332 211 68 487 Face 333 240 344 160 Face 334 240 137 344 Face 335 133 438 323 Face 336 122 226 243 Face 337 178 442 10 Face 338 178 345 442 Face 339 260 55 414 Face 340 115 309 341 Face 341 462 332 412 Face 342 80 352 35 Face 343 80 310 352 Face 344 11 355 156 Face 345 11 222 355 Face 346 13 85 17 Face 347 13 458 85 Face 348 205 357 114 Face 349 205 75 357 Face 350 224 225 398 Face 351 224 276 225 Face 352 104 388 136 Face 353 484 433 361 Face 354 38 362 416 Face 355 42 268 186 Face 356 42 189 268 Face 357 16 363 50 Face 358 16 141 363 Face 359 28 114 52 Face 360 227 350 364 Face 361 310 80 343 Face 362 174 366 10 Face 363 174 56 366 Face 364 94 115 174 Face 365 290 276 224 Face 366 229 367 10 Face 367 229 288 367 Face 368 65 368 475 Face 369 93 144 371 Face 370 93 399 144 Face 371 483 371 144 Face 372 483 427 371 Face 373 8 372 130 Face 374 8 230 372 Face 375 155 15 373 Face 376 81 15 155 Face 377 81 50 15 Face 378 92 318 374 Face 379 154 375 282 Face 380 154 376 492 Face 381 281 376 154 Face 382 46 265 364 Face 383 125 212 379 Face 384 135 380 134 Face 385 135 381 380 Face 386 213 44 381 Face 387 44 382 98 Face 388 44 213 382 Face 389 31 494 384 Face 390 223 385 439 Face 391 223 434 502 Face 392 61 386 176 Face 393 160 170 70 Face 394 138 285 387 Face 395 139 388 168 Face 396 139 28 388 Face 397 134 380 389 Face 398 79 390 57 Face 399 36 392 249 Face 400 149 393 98 Face 401 149 405 393 Face 402 68 394 487 Face 403 55 442 345 Face 404 362 38 396 Face 405 119 397 50 Face 406 119 302 397 Face 407 95 398 225 Face 408 225 399 95 Face 409 225 144 399 Face 410 9 460 398 Face 411 9 106 460 Face 412 39 400 53 Face 413 39 21 400 Face 414 63 401 152 Face 415 216 401 63 Face 416 216 10 401 Face 417 74 152 237 Face 418 80 404 403 Face 419 35 404 80 Face 420 35 50 404 Face 421 198 376 84 Face 422 85 162 234 Face 423 124 405 204 Face 424 274 406 206 Face 425 274 62 406 Face 426 43 428 246 Face 427 310 159 284 Face 428 310 109 159 Face 429 141 403 304 Face 430 224 37 290 Face 431 110 417 416 Face 432 45 418 62 Face 433 45 340 418 Face 434 33 419 180 Face 435 35 420 50 Face 436 35 352 420 Face 437 16 422 335 Face 438 16 50 422 Face 439 238 424 10 Face 440 238 336 424 Face 441 161 134 389 Face 442 161 110 134 Face 443 110 498 134 Face 444 110 474 498 Face 445 170 160 454 Face 446 106 471 247 Face 447 250 371 427 Face 448 143 428 95 Face 449 143 246 428 Face 450 30 345 178 Face 451 88 430 214 Face 452 147 431 328 Face 453 40 432 83 Face 454 40 50 432 Face 455 83 433 40 Face 456 321 434 447 Face 457 321 502 434 Face 458 179 209 78 Face 459 179 207 209 Face 460 97 436 437 Face 461 500 287 24 Face 462 500 450 287 Face 463 216 438 10 Face 464 216 323 438 Face 465 385 223 502 Face 466 380 440 49 Face 467 380 259 440 Face 468 218 441 473 Face 469 218 32 441 Face 470 347 442 55 Face 471 347 10 442 Face 472 243 52 122 Face 473 278 445 338 Face 474 278 50 445 Face 475 448 447 116 Face 476 275 361 433 Face 477 357 449 114 Face 478 357 75 449 Face 479 148 287 450 Face 480 450 491 148 Face 481 81 318 50 Face 482 81 374 318 Face 483 244 451 27 Face 484 244 93 451 Face 485 27 451 452 Face 486 177 157 121 Face 487 71 454 138 Face 488 71 170 454 Face 489 359 394 117 Face 490 247 232 294 Face 491 254 455 102 Face 492 254 14 455 Face 493 175 456 131 Face 494 175 101 456 Face 495 111 486 493 Face 496 92 270 56 Face 497 13 421 322 Face 498 322 458 13 Face 499 322 426 458 Face 500 293 106 248 Face 501 106 293 460 Face 502 135 460 293 Face 503 135 291 460 Face 504 177 20 461 Face 505 68 211 338 Face 506 472 93 244 Face 507 394 359 342 Face 508 331 463 50 Face 509 331 421 463 Face 510 319 448 408 Face 511 319 447 448 Face 512 291 37 398 Face 513 291 134 37 Face 514 53 462 351 Face 515 398 460 291 Face 516 255 187 47 Face 517 255 14 187 Face 518 102 252 253 Face 519 252 465 253 Face 520 252 105 465 Face 521 105 170 465 Face 522 33 180 299 Face 523 328 467 32 Face 524 328 431 467 Face 525 26 102 455 Face 526 92 56 318 Face 527 155 374 81 Face 528 72 314 298 Face 529 272 107 73 Face 530 402 406 272 Face 531 54 468 115 Face 532 54 50 468 Face 533 138 430 453 Face 534 244 469 472 Face 535 244 28 469 Face 536 146 458 426 Face 537 346 219 32 Face 538 346 132 219 Face 539 132 346 444 Face 540 43 243 377 Face 541 373 470 365 Face 542 373 15 470 Face 543 9 471 106 Face 544 9 95 471 Face 545 246 143 472 Face 546 349 143 95 Face 547 349 472 143 Face 548 66 473 370 Face 549 327 218 473 Face 550 108 317 235 Face 551 409 235 317 Face 552 163 475 69 Face 553 163 65 475 Face 554 265 410 364 Face 555 265 100 410 Face 556 242 441 478 Face 557 182 180 419 Face 558 182 32 180 Face 559 350 12 364 Face 560 350 114 12 Face 561 364 12 46 Face 562 323 480 413 Face 563 323 74 480 Face 564 277 163 283 Face 565 277 28 163 Face 566 20 459 461 Face 567 276 483 144 Face 568 276 493 483 Face 569 283 163 69 Face 570 28 429 163 Face 571 201 484 361 Face 572 201 356 484 Face 573 82 200 360 Face 574 19 467 321 Face 575 367 178 10 Face 576 367 30 178 Face 577 83 432 375 Face 578 327 66 444 Face 579 327 473 66 Face 580 363 304 50 Face 581 363 141 304 Face 582 353 233 289 Face 583 353 162 233 Face 584 96 228 332 Face 585 301 173 76 Face 586 340 391 267 Face 587 156 340 45 Face 588 409 411 38 Face 589 290 486 111 Face 590 290 415 486 Face 591 121 251 20 Face 592 246 472 469 Face 593 384 255 47 Face 594 164 257 47 Face 595 164 98 257 Face 596 369 166 86 Face 597 369 392 166 Face 598 425 37 134 Face 599 425 415 37 Face 600 259 124 440 Face 601 103 387 285 Face 602 253 465 103 Face 603 50 157 21 Face 604 342 487 394 Face 605 342 28 487 Face 606 352 284 120 Face 607 352 310 284 Face 608 180 489 299 Face 609 180 32 489 Face 610 30 159 345 Face 611 30 481 159 Face 612 206 231 274 Face 613 356 40 484 Face 614 356 50 40 Face 615 227 364 410 Face 616 200 356 360 Face 617 200 50 356 Face 618 404 304 403 Face 619 404 50 304 Face 620 132 300 25 Face 621 432 282 375 Face 622 432 50 282 Face 623 15 490 470 Face 624 15 50 490 Face 625 452 65 27 Face 626 452 250 65 Face 627 451 371 452 Face 628 451 93 371 Face 629 113 491 98 Face 630 113 148 491 Face 631 425 497 415 Face 632 68 338 445 Face 633 396 236 162 Face 634 105 324 170 Face 635 111 493 276 Face 636 154 18 171 Face 637 182 328 32 Face 638 182 147 328 Face 639 183 441 32 Face 640 183 478 441 Face 641 167 386 312 Face 642 448 361 275 Face 643 448 116 361 Face 644 466 434 223 Face 645 466 116 434 Face 646 464 365 385 Face 647 464 203 365 Face 648 218 346 32 Face 649 218 327 346 Face 650 262 41 329 Face 651 262 78 41 Face 652 329 41 61 Face 653 255 494 14 Face 654 255 384 494 Face 655 88 185 430 Face 656 202 101 175 Face 657 397 237 50 Face 658 397 74 237 Face 659 478 319 242 Face 660 478 19 319 Face 661 368 426 322 Face 662 325 97 476 Face 663 256 476 14 Face 664 256 325 476 Face 665 285 453 14 Face 666 285 138 453 Face 667 436 164 437 Face 668 436 98 164 Face 669 437 164 47 Face 670 253 254 102 Face 671 386 167 176 Face 672 202 190 435 Face 673 167 392 369 Face 674 72 190 314 Face 675 190 202 459 Face 676 190 72 145 Face 677 138 387 71 Face 678 61 456 329 Face 679 101 202 262 Face 680 329 101 262 Face 681 314 495 298 Face 682 314 20 495 Face 683 26 298 495 Face 684 457 493 486 Face 685 457 427 493 Face 686 59 496 191 Face 687 59 236 496 Face 688 76 130 193 Face 689 457 426 427 Face 690 457 146 426 Face 691 289 497 485 Face 692 146 457 497 Face 693 425 498 474 Face 694 425 134 498 Face 695 104 136 358 Face 696 417 110 161 Face 697 110 353 474 Face 698 421 331 69 Face 699 259 381 258 Face 700 381 135 213 Face 701 343 403 141 Face 702 141 337 343 Face 703 141 335 337 Face 704 421 69 475 Face 705 226 410 100 Face 706 226 122 410 Face 707 391 194 267 Face 708 391 78 194 Face 709 57 267 194 Face 710 146 497 289 Face 711 415 290 37 Face 712 201 116 466 Face 713 201 361 116 Face 714 354 117 21 Face 715 354 359 117 Face 716 121 153 251 Face 717 290 111 276 Face 718 435 145 78 Face 719 435 190 145 Face 720 90 207 179 Face 721 107 294 232 Face 722 210 208 79 Face 723 325 67 268 Face 724 137 32 34 Face 725 262 435 78 Face 726 262 202 435 Face 727 482 263 79 Face 728 482 78 263 Face 729 79 57 482 Face 730 381 259 380 Face 731 47 257 384 Face 732 221 23 405 Face 733 405 149 221 Face 734 333 436 97 Face 735 333 98 436 Face 736 325 333 97 Face 737 78 14 296 Face 738 296 494 31 Face 739 296 14 494 Face 740 257 383 384 Face 741 257 98 383 Face 742 384 383 31 Face 743 108 305 317 Face 744 377 226 100 Face 745 377 243 226 Face 746 187 476 437 Face 747 187 14 476 Face 748 97 437 476 Face 749 263 209 210 Face 750 263 78 209 Face 751 14 78 145 Face 752 179 296 90 Face 753 179 78 296 Face 754 122 227 410 Face 755 340 156 264 Face 756 23 500 24 Face 757 23 221 500 Face 758 428 377 100 Face 759 428 43 377 Face 760 95 100 378 Face 761 378 192 206 Face 762 378 100 192 Face 763 95 428 100 Face 764 23 204 405 Face 765 23 49 204 Face 766 67 325 256 Face 767 362 162 353 Face 768 390 266 57 Face 769 390 62 266 Face 770 206 192 231 Face 771 206 406 402 Face 772 125 379 29 Face 773 29 192 100 Face 774 29 379 192 Face 775 131 112 461 Face 776 13 463 421 Face 777 309 501 488 Face 778 309 115 501 Face 779 118 488 335 Face 780 118 309 488 Face 781 318 468 50 Face 782 318 56 468 Face 783 283 330 140 Face 784 140 277 283 Face 785 283 69 51 Face 786 76 279 3 Face 787 289 233 146 Face 788 272 158 107 Face 789 416 353 110 Face 790 416 362 353 Face 791 233 458 146 Face 792 233 85 458 Face 793 206 402 378 Face 794 450 500 221 Face 795 221 149 450 Face 796 375 239 499 Face 797 375 492 239 Face 798 99 303 411 Face 799 288 481 30 Face 800 288 413 481 Face 801 351 412 114 Face 802 351 462 412 Face 803 279 76 129 Face 804 403 343 80 Face 805 234 17 85 Face 806 234 50 17 Face 807 50 59 191 Face 808 236 59 162 Face 809 491 149 98 Face 810 491 450 149 Face 811 330 423 140 Face 812 330 50 423 Face 813 140 423 136 Face 814 369 176 167 Face 815 369 86 176 Face 816 235 416 417 Face 817 235 38 416 Face 818 99 317 142 Face 819 99 411 317 Face 820 411 409 317 Face 821 51 330 283 Face 822 51 50 330 Face 823 131 86 230 Face 824 453 185 14 Face 825 453 430 185 Face 826 161 108 235 Face 827 176 456 61 Face 828 176 131 456 Face 829 459 314 190 Face 830 459 20 314 Face 831 24 7 49 Face 832 236 396 496 Face 833 24 49 23 Face 834 175 459 202 Face 835 175 461 459 Face 836 169 252 102 Face 837 169 251 252 Face 838 480 302 120 Face 839 480 74 302 Face 840 217 120 284 Face 841 217 480 120 Face 842 395 159 109 Face 843 109 348 395 Face 844 431 502 321 Face 845 431 147 502 Face 846 427 426 368 Face 847 388 316 136 Face 848 388 28 316 Face 849 137 271 10 Face 850 199 383 98 Face 851 199 90 383 Face 852 207 90 199 Face 853 485 497 425 Face 854 104 168 388 Face 855 280 168 278 Face 856 197 359 354 Face 857 51 331 50 Face 858 51 69 331 Face 859 194 482 57 Face 860 194 78 482 Face 861 140 136 316 Face 862 121 20 177 Face 863 280 338 211 Face 864 333 268 98 Face 865 333 325 268 Face 866 168 280 139 Face 867 394 68 117 Face 868 168 104 22 Face 869 197 39 53 Face 870 22 358 50 Face 871 22 104 358 Face 872 197 53 151 Face 873 479 400 21 Face 874 479 462 400 Face 875 53 400 462 Face 876 278 22 50 Face 877 278 168 22 Face 878 96 332 5 Face 879 151 351 114 Face 880 151 53 351 Face 881 52 443 122 Face 882 52 114 443 Face 883 122 443 227 Face 884 443 350 227 Face 885 443 114 350 Face 886 39 354 21 Face 887 39 197 354 Face 888 373 203 155 Face 889 373 365 203 Face 890 109 343 337 Face 891 5 479 21 Face 892 5 332 479 Face 893 131 176 86 Face 894 485 474 289 Face 895 485 425 474 Face 896 242 408 370 Face 897 242 319 408 Face 898 300 198 84 Face 899 358 423 50 Face 900 358 136 423 Face 901 222 11 76 Face 902 222 76 273 Face 903 348 55 395 Face 904 348 414 55 Face 905 245 469 28 Face 906 245 246 469 Face 907 52 326 28 Face 908 52 243 326 Face 909 342 151 28 Face 910 342 359 151 Face 911 320 157 177 Face 912 320 21 157 Face 913 375 154 492 Face 914 243 43 326 Face 915 326 245 28 Face 916 326 43 245 Face 917 396 162 362 Face 918 82 439 470 Face 919 43 246 245 Face 920 281 154 171 Face 921 217 413 480 Face 922 217 481 413 Face 923 105 251 153 Face 924 50 21 117 Face 925 109 310 343 Face 926 28 151 114 Face 927 413 133 323 Face 928 413 288 133 Face 929 74 63 152 Face 930 74 323 63 Face 931 395 345 159 Face 932 58 153 121 Face 933 58 152 153 Face 934 284 481 217 Face 935 284 159 481 Face 936 360 466 223 Face 937 360 201 466 Face 938 374 299 181 Face 939 374 33 299 Face 940 414 220 261 Face 941 414 348 220 Face 942 348 337 220 Face 943 348 109 337 Face 944 196 172 60 Face 945 196 300 172 Face 946 83 499 433 Face 947 83 375 499 Face 948 82 223 439 Face 949 82 360 223 Face 950 155 33 374 Face 951 155 203 33 Face 952 374 181 92 Face 953 220 335 488 Face 954 220 337 335 Face 955 277 316 28 Face 956 277 140 316 Face 957 395 55 345 Face 958 108 389 49 Face 959 108 161 389 Face 960 499 407 275 Face 961 499 239 407 Face 962 275 408 448 Face 963 275 407 408 Face 964 419 203 464 Face 965 419 33 203 Face 966 19 447 319 Face 967 19 321 447 Face 968 66 477 446 Face 969 66 370 477 Face 970 444 446 198 Face 971 444 66 446 Face 972 320 112 21 Face 973 320 461 112 Face 974 132 198 300 Face 975 132 444 198 Face 976 261 336 414 Face 977 261 94 336 Face 978 147 419 464 Face 979 147 385 502 Face 980 147 464 385 Face 981 407 370 408 Face 982 407 477 370 Face 983 84 376 281 Face 984 477 239 446 Face 985 477 407 239 Face 986 446 492 376 Face 987 446 239 492 Face 988 172 215 60 Face 989 172 281 215 Face 990 25 300 196 Face 991 171 215 281 Face 992 84 172 300 Face 993 250 368 65 Face 994 250 427 368 Face 995 38 411 396 Face 996 27 429 28 Face 997 27 65 429 Face 998 137 10 32 Face 999 91 3 75 Face 1000 91 21 3 ================================================ FILE: models/gameguy.m ================================================ # ||Created using: # || Filtermesh gameguy.poly.m.gz -rmcomp 0 -ge # ||(Timing on cpu=sgi host=squiggle) # || (_readmesh: 3.47) # ||Removed 0 mesh components # ||Removed 1 isolated vertices # || (_rmcomponents: 0.30) # ||Genus: c=8 b=3 v=11044 f=11608 e=22639 genus=0 sharpe=2895 cuspv=0 # || (Filtermesh: 4.17) # |Created using: # | Filtermesh gameguy.orig.poly.m -genus -fixvertices -fixfaces -genus # | -rmcomp 0 -genus -assign_normals -removekey sharp -renormalizenor -triang # | -genus -nice # |(Timing on cpu=sgi host=squiggle) # | (_readmesh: 2.57) # |Genus: c=8 b=3 v=11044 f=11608 e=22639 genus=0 sharpe=2895 cuspv=0 # |Fixed 0 vertices # |Fixed 0 faces # |Genus: c=8 b=3 v=11044 f=11608 e=22639 genus=0 sharpe=2895 cuspv=0 # |Removed 0 mesh components # | (_rmcomponents: 0.27) # |Genus: c=8 b=3 v=11044 f=11608 e=22639 genus=0 sharpe=2895 cuspv=0 # |Renormalized 1417 normals # |Found 10368 faces to triangulate # |Sfverts: (10368 ) 4:4 av=4 sd=0 # |Genus: c=8 b=3 v=21412 f=42712 e=64111 genus=0 sharpe=2895 cuspv=0 # | (Filtermesh: 20.95) # Created on 2003/11/20 18:00:06 using: # C:\cygwin\home\Zoe\hh_src\bin\filtermesh.exe gameguy.orig.m -renumber # (Timing on cpu=x86-L6-R0806 host=BUTTERCUP) # (_readmesh: 1.72) # (_renumber: 0.10) # (Filtermesh: 1.82) Vertex 1 -14.2166 -3.8585 -2.81153 Vertex 2 -14.2093 -3.88703 -3.73767 Vertex 3 -13.9084 -3.91663 -4.65365 Vertex 4 -13.8998 -3.85809 -3.18274 Vertex 5 -13.8939 -3.86429 -3.88233 Vertex 6 -13.8829 -3.91081 -1.81014 Vertex 7 -13.778 -3.86076 -2.16002 Vertex 8 -13.574 -3.92145 -4.38341 Vertex 9 -13.5736 -2.10811 -3.96817 {normal=(-0.912263 0.248185 -0.325853)} Vertex 10 -13.5719 -3.94771 -5.17191 Vertex 11 -13.3528 -11.4309 -2.78944 Vertex 12 -13.3284 -2.1332 -3.24909 {normal=(-0.945569 0.240993 0.218683)} Vertex 13 -13.2755 -3.92045 -4.90121 Vertex 14 -13.2647 -2.13805 -2.53271 {normal=(-0.906263 0.296109 0.301673)} Vertex 15 -13.2365 -11.1051 -1.65732 Vertex 16 -13.2273 -3.91312 -1.28873 Vertex 17 -13.2132 -3.96835 -1.02144 Vertex 18 -13.1866 -12.2705 -2.19852 {normal=(-0.998857 -0.0307789 -0.0365805)} Vertex 19 -13.1823 -15.4512 -0.749206 Vertex 20 -13.1636 -14.9335 -0.873964 {normal=(-0.999264 0.00809945 -0.0374997)} Vertex 21 -13.1601 -11.3579 -2.28557 Vertex 22 -13.1247 -0.384085 -3.65645 {normal=(-0.939556 0.162336 -0.301467)} Vertex 23 -13.1091 -14.0454 -1.09586 {normal=(-0.998725 0.0197564 0.046462)} Vertex 24 -13.0964 -11.6413 -3.40508 Vertex 25 -13.0885 -12.4209 -2.7996 {normal=(-0.987732 -0.053346 -0.146765)} Vertex 26 -13.0882 1.50948 -3.18203 {normal=(-0.992285 0.0452006 0.115441)} Vertex 27 -13.0808 -2.15287 -5.042 {normal=(-0.864751 0.174658 -0.47085)} Vertex 28 -13.0708 0.653736 -3.52864 {normal=(-0.97878 0.044816 -0.199953)} Vertex 29 -13.0692 -12.1111 -1.60546 {normal=(-0.981432 0.0482212 0.18565)} Vertex 30 -13.0607 -15.4069 -0.42389 Vertex 31 -13.0574 -0.446797 -3.10432 {normal=(-0.939033 0.120829 0.321896)} Vertex 32 -13.0529 -11.5229 -2.84846 Vertex 33 -13.0434 2.38388 -3.19151 {normal=(-0.97932 0.147355 0.138635)} Vertex 34 -13.0428 -15.5527 -1.06836 Vertex 35 -13.0341 -11.1979 -1.72699 Vertex 36 -13.0305 -14.9534 -0.544583 {normal=(-0.940874 0.127365 0.313901)} Vertex 37 -13.0209 -2.1583 -1.83543 {normal=(-0.763018 0.303339 0.570779)} Vertex 38 -13.0205 -13.9035 -0.549554 {normal=(-0.974233 0.0762851 0.212251)} Vertex 39 -13.0201 -2.18379 -4.40473 {normal=(-0.898259 0.214022 -0.383829)} Vertex 40 -13.0145 -15.0787 -1.15939 {normal=(-0.852333 -0.140573 -0.503753)} Vertex 41 -13.0045 -12.4813 -3.31957 {normal=(-0.945242 -0.0438228 -0.323415)} Vertex 42 -12.9762 -15.0122 0.408439 Vertex 43 -12.9736 -15.3536 -0.105384 Vertex 44 -12.9673 0.674524 -3.07725 {normal=(-0.960407 -0.000926065 0.278599)} Vertex 45 -12.9654 -14.464 0.248668 {normal=(-0.97766 0.0826488 0.193262)} Vertex 46 -12.9612 1.48173 -3.83178 {normal=(-0.916337 0.0294108 -0.399327)} Vertex 47 -12.9552 -14.1652 -1.71735 {normal=(-0.982178 -0.130144 -0.135604)} Vertex 48 -12.9539 -14.8624 -0.299966 {normal=(-0.966111 0.0596627 0.251136)} Vertex 49 -12.9518 1.49059 -3.34286 {normal=(-0.974587 0.0274459 -0.222323)} Vertex 50 -12.9517 -11.6649 -3.32659 Vertex 51 -12.9428 -15.6583 -2.00614 Vertex 52 -12.9371 -15.0637 -2.12628 {normal=(-0.999647 -0.0194243 -0.0181452)} Vertex 53 -12.9266 2.4349 -3.41759 {normal=(-0.96906 0.1399 -0.203351)} Vertex 54 -12.9147 -11.9981 -1.21193 {normal=(-0.933059 0.126419 0.336778)} Vertex 55 -12.8946 -14.234 -2.34105 {normal=(-0.996373 -0.0708938 -0.0470625)} Vertex 56 -12.8794 -11.7767 -3.84397 Vertex 57 -12.8793 0.641095 -3.82312 {normal=(-0.89214 0.0390998 -0.450063)} Vertex 58 -12.8792 -11.0924 -1.35474 Vertex 59 -12.8694 -14.0649 -2.86136 {normal=(-0.969081 -0.120022 -0.215586)} Vertex 60 -12.8619 2.37791 -4.01278 {normal=(-0.9152 0.0439518 -0.400597)} Vertex 61 -12.8502 -14.8982 0.710457 Vertex 62 -12.848 -13.6203 0.034911 {normal=(-0.887783 0.245387 0.389392)} Vertex 63 -12.8456 -15.1558 0.143662 Vertex 64 -12.8339 -15.6389 -2.30819 Vertex 65 -12.8322 -10.8359 -0.694152 Vertex 66 -12.8208 -14.6864 0.001691 {normal=(-0.997193 -0.0710841 -0.0235099)} Vertex 67 -12.8155 -15.1038 -2.37665 {normal=(-0.930663 -0.154132 -0.331829)} Vertex 68 -12.8096 -15.6314 -1.69251 Vertex 69 -12.7903 -15.1108 -1.78169 {normal=(-0.966567 0.0579047 0.249792)} Vertex 70 -12.7843 -15.6495 -1.3861 Vertex 71 -12.7758 -12.5228 -3.68024 {normal=(-0.782759 -0.034339 -0.621377)} Vertex 72 -12.7722 -15.0902 -1.47382 {normal=(-0.965396 -0.089983 -0.244774)} Vertex 73 -12.7665 1.4201 -2.55286 {normal=(-0.830509 0.117769 0.544412)} Vertex 74 -12.7598 -0.360883 -4.5732 {normal=(-0.907428 0.172936 -0.382972)} Vertex 75 -12.743 3.41511 -2.91249 {normal=(-0.887269 0.15706 0.433688)} Vertex 76 -12.7383 3.40037 -3.41662 {normal=(-0.974394 0.218943 -0.0511968)} Vertex 77 -12.7351 -11.7667 -3.66032 Vertex 78 -12.732 -15.2943 -2.73725 {normal=(-0.936674 -0.189075 -0.294775)} Vertex 79 -12.728 -15.8175 -0.648377 {normal=(-0.604827 -0.778764 0.166467)} Vertex 80 -12.7269 3.4279 -3.60051 {normal=(-0.982848 0.183745 -0.0157191)} Vertex 81 -12.7222 -15.7062 -0.337668 {normal=(-0.567032 -0.724355 0.392153)} Vertex 82 -12.7204 -14.1419 0.552464 {normal=(-0.754161 0.298961 0.584691)} Vertex 83 -12.7175 -3.98985 -5.39489 Vertex 84 -12.7032 -14.0047 -3.47366 {normal=(-0.812348 -0.156388 -0.561813)} Vertex 85 -12.693 -4.02814 -5.90212 Vertex 86 -12.6896 -15.8729 -0.95515 {normal=(-0.555862 -0.82096 -0.130546)} Vertex 87 -12.6833 -0.435565 -4.03055 {normal=(-0.905307 0.141002 -0.400672)} Vertex 88 -12.6686 3.39306 -4.04017 {normal=(-0.975091 0.0890337 -0.203151)} Vertex 89 -12.6531 0.637841 -2.41103 {normal=(-0.877814 -0.0261349 0.478289)} Vertex 90 -12.6528 -11.8301 -0.768943 {normal=(-0.887132 0.188902 0.421086)} Vertex 91 -12.631 0.596058 -4.38827 {normal=(-0.839626 0.126888 -0.528136)} Vertex 92 -12.6238 -10.9717 -0.925443 Vertex 93 -12.6103 3.35823 -4.47984 {normal=(-0.817676 -0.0968961 -0.567465)} Vertex 94 -12.6092 -11.8677 -4.13247 Vertex 95 -12.5946 -14.797 1.02564 Vertex 96 -12.5914 -15.6773 -3.36636 Vertex 97 -12.5877 1.31546 -4.21875 {normal=(-0.736267 0.0668445 -0.673381)} Vertex 98 -12.574 8.30105 -2.36556 {normal=(-0.994098 -0.105263 -0.0262371)} Vertex 99 -12.5724 4.9783 -4.37186 {normal=(-0.96247 0.249503 -0.106768)} Vertex 100 -12.5716 -15.7805 -3.04087 Vertex 101 -12.5491 8.81888 -2.66419 {normal=(-0.83832 0.224825 0.496663)} Vertex 102 -12.5459 8.52124 -2.56425 {normal=(-0.984038 -0.0296634 -0.175466)} Vertex 103 -12.5336 -15.0717 -3.41853 {normal=(-0.840499 -0.100519 -0.532408)} Vertex 104 -12.5281 -15.2503 0.848337 Vertex 105 -12.5121 -13.8528 -3.65664 {normal=(-0.628093 -0.14487 -0.764534)} Vertex 106 -12.511 8.68854 -1.86261 {normal=(-0.962322 -0.0298913 0.270264)} Vertex 107 -12.5104 -15.2222 -3.06807 {normal=(-0.978544 -0.114621 -0.171215)} Vertex 108 -12.5034 8.27288 -2.05473 {normal=(-0.953729 -0.153158 0.258734)} Vertex 109 -12.5021 -15.376 0.565035 {normal=(-0.594803 -0.782631 0.183573)} Vertex 110 -12.4873 -0.552108 -2.16414 {normal=(-0.843327 0.135086 0.520146)} Vertex 111 -12.4862 -15.7972 -2.75547 Vertex 112 -12.4817 -10.7163 -0.250181 Vertex 113 -12.4715 9.46644 -2.32582 {normal=(-0.989358 0.145488 0.00185556)} Vertex 114 -12.4552 1.13583 -2.03142 {normal=(-0.791411 0.162503 0.589289)} Vertex 115 -12.4545 -15.9789 -1.82921 {normal=(-0.578526 -0.808992 0.104117)} Vertex 116 -12.4533 -15.8923 -1.53692 {normal=(-0.554702 -0.810578 0.187803)} Vertex 117 -12.4457 9.25042 -1.68808 {normal=(-0.965341 0.0412295 0.257713)} Vertex 118 -12.4446 -12.305 0.017973 {normal=(-0.731052 0.225264 0.644065)} Vertex 119 -12.4407 2.34491 -4.33406 {normal=(-0.709303 -0.0475312 -0.703299)} Vertex 120 -12.4386 -14.0457 0.833116 Vertex 121 -12.4359 -12.5867 -4.00745 {normal=(-0.502511 0.0185568 -0.864372)} Vertex 122 -12.435 -15.4485 0.270509 Vertex 123 -12.4212 -11.8389 -3.89164 Vertex 124 -12.4111 -16.0125 -2.13623 {normal=(-0.491325 -0.857691 -0.151545)} Vertex 125 -12.4087 9.56463 -2.91148 {normal=(-0.965832 0.120641 -0.229378)} Vertex 126 -12.3658 2.19166 -2.47457 {normal=(-0.786167 0.169971 0.594181)} Vertex 127 -12.356 5.14346 -3.60313 {normal=(-0.951023 0.306534 0.0399079)} Vertex 128 -12.3508 3.658 -1.41856 {normal=(-0.983311 0.126256 0.130991)} Vertex 129 -12.3479 5.15924 -3.41971 {normal=(-0.961768 0.266794 -0.0618386)} Vertex 130 -12.3431 5.24845 -2.7205 {normal=(-0.905409 0.125839 0.405461)} Vertex 131 -12.3421 -15.6477 -3.59771 Vertex 132 -12.3411 7.22459 -2.39375 {normal=(-0.945553 -0.310295 -0.0982146)} Vertex 133 -12.3389 0.601157 -1.74481 {normal=(-0.771773 0.0201621 0.635579)} Vertex 134 -12.3385 2.36776 -1.45757 {normal=(-0.981191 -0.0956074 0.167701)} Vertex 135 -12.3344 10.1008 -2.14571 {normal=(-0.972188 0.233564 0.0172994)} Vertex 136 -12.3315 4.73032 -5.05921 {normal=(-0.818446 0.0878502 -0.567828)} Vertex 137 -12.3267 -15.6914 0.039615 Vertex 138 -12.3198 -15.9654 -1.21536 Vertex 139 -12.3121 10.0612 -2.96147 {normal=(-0.931746 0.251888 -0.261536)} Vertex 140 -12.3116 3.42665 -2.64554 {normal=(-0.794263 0.0763564 0.602757)} Vertex 141 -12.3093 -2.22293 -5.61416 {normal=(-0.53368 0.122763 -0.836729)} Vertex 142 -12.309 -12.9969 0.425631 Vertex 143 -12.2969 9.97666 -1.40516 {normal=(-0.946177 0.132429 0.295316)} Vertex 144 -12.2954 7.50564 -2.93177 {normal=(-0.861461 -0.285332 -0.420085)} Vertex 145 -12.2898 -15.0625 -3.6052 {normal=(-0.568541 -0.11602 -0.814433)} Vertex 146 -12.2888 2.29246 -2.27515 {normal=(-0.966497 0.0568226 0.250311)} Vertex 147 -12.2859 7.15385 -1.93038 {normal=(-0.90234 -0.311 0.298431)} Vertex 148 -12.2517 -16.0741 -2.88932 {normal=(-0.63811 -0.757415 0.138343)} Vertex 149 -12.2341 3.46057 -2.41887 {normal=(-0.986335 0.106049 0.126087)} Vertex 150 -12.2239 -13.964 -4.07233 {normal=(-0.238866 -0.171927 -0.955711)} Vertex 151 -12.2233 7.90069 -3.3034 {normal=(-0.795618 -0.228928 -0.560879)} Vertex 152 -12.2232 -15.0992 1.11797 Vertex 153 -12.2169 -11.9245 -4.30735 Vertex 154 -12.2144 -2.23155 -1.06716 {normal=(-0.222819 0.272827 0.935904)} Vertex 155 -12.2016 -16.0535 -3.25553 {normal=(-0.560739 -0.763621 -0.320086)} Vertex 156 -12.1824 -13.8478 0.709292 Vertex 157 -12.1767 6.47339 -2.5183 {normal=(-0.985936 -0.0397193 0.162337)} Vertex 158 -12.173 6.75602 -2.46361 {normal=(-0.954772 -0.288359 -0.072518)} Vertex 159 -12.1561 1.04236 -1.77804 {normal=(-0.877582 0.164343 0.450378)} Vertex 160 -12.145 -10.7893 -0.283205 Vertex 161 -12.136 -0.406476 -5.22722 {normal=(-0.568586 0.215216 -0.793973)} Vertex 162 -12.1333 -4.02416 -0.835584 Vertex 163 -12.1252 -11.0006 -0.057117 Vertex 164 -12.109 2.46215 -0.613683 {normal=(-0.749732 -0.146782 0.645258)} Vertex 165 -12.1068 7.62323 -1.35667 {normal=(-0.79326 -0.230534 0.563554)} Vertex 166 -12.0986 11.0863 -1.9961 {normal=(-0.89374 0.443077 0.0700872)} Vertex 167 -12.0792 -10.6409 0.044497 Vertex 168 -12.0786 -16.2229 -0.559301 {normal=(-0.483041 -0.862128 0.152993)} Vertex 169 -12.0674 8.85264 -3.90827 {normal=(-0.738326 -0.0995884 -0.667051)} Vertex 170 -12.0635 -4.06951 -0.517512 Vertex 171 -12.0562 0.430306 -5.04898 {normal=(-0.617502 0.214939 -0.756632)} Vertex 172 -12.0522 -16.0288 -2.51998 Vertex 173 -12.0449 10.6861 -1.0921 {normal=(-0.856472 0.328315 0.398327)} Vertex 174 -12.0439 -16.1654 -0.305275 {normal=(-0.438664 -0.765177 0.471252)} Vertex 175 -12.0428 5.18181 -2.54117 {normal=(-0.778578 0.0490559 0.625628)} Vertex 176 -12.0298 6.6407 -1.97261 {normal=(-0.784787 -0.488333 0.381628)} Vertex 177 -12.0157 -0.540127 -1.58394 {normal=(-0.378463 0.0259973 0.925251)} Vertex 178 -12.0125 6.05295 -4.52471 {normal=(-0.845374 0.509979 -0.158945)} Vertex 179 -12.0053 8.53473 -0.901799 {normal=(-0.742825 -0.170965 0.647289)} Vertex 180 -11.9965 0.971716 -1.33469 {normal=(-0.788446 -0.175023 0.589678)} Vertex 181 -11.9953 -16.291 -0.805464 {normal=(-0.397277 -0.894761 -0.203898)} Vertex 182 -11.9905 -16.0764 -3.4622 Vertex 183 -11.9769 5.16 -2.30496 {normal=(-0.962769 0.202221 0.179395)} Vertex 184 -11.976 5.87936 -5.00302 {normal=(-0.73344 0.432979 -0.524019)} Vertex 185 -11.9646 3.70072 -0.412197 {normal=(-0.734795 0.0712405 0.674538)} Vertex 186 -11.9635 -16.2711 -1.70445 {normal=(-0.484065 -0.869049 0.102149)} Vertex 187 -11.9567 9.13365 -0.662654 {normal=(-0.733637 -0.101501 0.671918)} Vertex 188 -11.9467 -11.8588 -3.94525 Vertex 189 -11.9451 5.14042 -1.31956 {normal=(-0.939663 0.279273 0.197587)} Vertex 190 -11.9415 -12.5996 -4.08569 {normal=(-0.0343968 0.064742 -0.997309)} Vertex 191 -11.9116 -15.7159 0.699502 {normal=(-0.585126 -0.803983 0.106017)} Vertex 192 -11.9053 -16.2528 -1.44791 {normal=(-0.417145 -0.821399 0.388965)} Vertex 193 -11.9028 -16.3015 -1.95603 {normal=(-0.351633 -0.903089 -0.246547)} Vertex 194 -11.8969 6.26146 -3.57864 {normal=(-0.91954 0.332823 -0.208988)} Vertex 195 -11.8919 -11.2679 0.185742 Vertex 196 -11.8909 6.24238 -3.74949 {normal=(-0.882918 0.461191 -0.0880884)} Vertex 197 -11.8894 1.15972 -4.94565 {normal=(-0.63192 0.158303 -0.758695)} Vertex 198 -11.8848 -15.6597 0.943686 Vertex 199 -11.8829 -15.0816 -3.78264 {normal=(0.0207577 -0.197839 -0.980015)} Vertex 200 -11.8707 -15.562 -3.72178 {normal=(0.145932 -0.213196 -0.966049)} Vertex 201 -11.8616 6.92034 -3.1044 {normal=(-0.880302 -0.0358768 -0.473055)} Vertex 202 -11.8588 11.3491 -2.94042 {normal=(-0.814542 0.514382 -0.268203)} Vertex 203 -11.8518 7.09864 -1.27433 {normal=(-0.705554 -0.374444 0.601652)} Vertex 204 -11.8439 -16.3714 -2.67096 {normal=(-0.526826 -0.799496 0.28855)} Vertex 205 -11.8152 9.97106 -4.12256 {normal=(-0.685073 0.17634 -0.706809)} Vertex 206 -11.8123 3.39867 -5.12748 {normal=(-0.564294 -0.225306 -0.794235)} Vertex 207 -11.8069 -15.7694 0.450244 Vertex 208 -11.8023 -16.3919 -2.95023 {normal=(-0.407845 -0.896454 -0.173302)} Vertex 209 -11.7965 -15.974 -0.047374 Vertex 210 -11.7839 -14.8969 -1.00311 {normal=(0.996325 -0.0204889 -0.0831659)} Vertex 211 -11.7785 4.53781 -5.59161 {normal=(-0.50915 -0.0363563 -0.859909)} Vertex 212 -11.7553 -15.335 -0.623129 Vertex 213 -11.751 -4.05887 -5.78443 Vertex 214 -11.7428 1.36648 -0.736056 {normal=(-0.570119 -0.349072 0.743715)} Vertex 215 -11.7391 2.52511 -4.92307 {normal=(-0.60914 -0.0767428 -0.789341)} Vertex 216 -11.7198 -14.2587 -1.35265 {normal=(0.97462 -0.220648 -0.0378171)} Vertex 217 -11.6926 -16.2389 -1.09365 Vertex 218 -11.6845 6.24356 -2.07001 {normal=(-0.836091 -0.195423 0.512603)} Vertex 219 -11.6766 -16.1171 -2.33609 Vertex 220 -11.6763 9.97247 -0.338218 {normal=(-0.659415 0.0679491 0.748702)} Vertex 221 -11.6674 -14.9406 -2.24356 Vertex 222 -11.6642 -2.2815 -6.03182 {normal=(-0.212097 0.0675834 -0.974909)} Vertex 223 -11.6509 -11.9104 -4.22488 Vertex 224 -11.6503 -14.7353 -1.54377 {normal=(0.982599 0.0589869 0.176122)} Vertex 225 -11.6363 -15.3961 1.10208 Vertex 226 -11.6338 -15.1566 -2.25184 Vertex 227 -11.6231 -14.7672 -2.15108 {normal=(0.986388 -0.00583592 0.164328)} Vertex 228 -11.6227 -14.9452 -2.38692 {normal=(0.959404 0.106116 0.26131)} Vertex 229 -11.6205 -15.9941 -3.47278 {normal=(0.32855 -0.404176 -0.853637)} Vertex 230 -11.6146 -16.3906 -3.14493 Vertex 231 -11.6131 -10.6159 0.158918 Vertex 232 -11.6121 -14.1644 0.578828 Vertex 233 -11.6052 6.11762 -1.23264 {normal=(-0.903903 0.337878 0.262294)} Vertex 234 -11.6002 -14.8653 -2.2431 Vertex 235 -11.5966 -4.12637 -6.20579 Vertex 236 -11.5957 -14.9972 -2.07351 {normal=(-0.807236 0.136784 0.574161)} Vertex 237 -11.594 -14.993 -2.41156 {normal=(-0.808412 0.149838 -0.569227)} Vertex 238 -11.5932 6.20771 -1.89763 {normal=(-0.971034 0.0763112 0.226428)} Vertex 239 -11.5855 -15.2001 -2.12791 Vertex 240 -11.5819 -15.4065 -0.351269 Vertex 241 -11.5799 -15.1968 -2.37561 {normal=(-0.823722 -0.415635 -0.385655)} Vertex 242 -11.5795 -16.0353 -1.18026 Vertex 243 -11.5792 -16.1325 -2.24427 Vertex 244 -11.5678 0.328381 -5.44424 {normal=(-0.516006 0.168755 -0.839797)} Vertex 245 -11.5675 4.97147 -0.359619 {normal=(-0.683989 0.222467 0.694743)} Vertex 246 -11.5491 -13.7826 -1.61184 {normal=(0.959477 -0.275482 -0.059279)} Vertex 247 -11.5463 -13.6625 0.543902 Vertex 248 -11.5453 -15.5176 -1.37737 Vertex 249 -11.5452 -14.2384 -1.86785 {normal=(0.976555 -0.121628 0.177617)} Vertex 250 -11.5379 -14.7618 0.85201 Vertex 251 -11.5342 -14.9009 -2.42464 {normal=(-0.651104 0.477389 -0.590053)} Vertex 252 -11.5337 -14.9112 -2.05298 {normal=(-0.638649 0.435305 0.634537)} Vertex 253 -11.5315 -14.7997 -2.24012 Vertex 254 -11.5178 -14.8373 -2.0536 Vertex 255 -11.5171 6.43823 -4.8814 {normal=(-0.701165 0.564725 -0.435263)} Vertex 256 -11.5138 -14.829 -2.42467 Vertex 257 -11.5095 -15.2379 -2.06001 Vertex 258 -11.5092 -15.5923 -1.95637 Vertex 259 -11.5063 -15.2357 -2.4386 {normal=(-0.627894 -0.332242 -0.703821)} Vertex 260 -11.5005 -14.1902 -2.49444 {normal=(0.935556 -0.122167 0.331375)} Vertex 261 -11.4971 5.6358 -5.49496 {normal=(-0.458255 0.301218 -0.836224)} Vertex 262 -11.497 -15.0316 -2.51499 {normal=(-0.578045 0.0117327 -0.815921)} Vertex 263 -11.4969 -15.0457 -1.97368 {normal=(-0.561158 -0.0254515 0.827317)} Vertex 264 -11.4853 1.17198 -5.19011 {normal=(-0.549642 0.15642 -0.820626)} Vertex 265 -11.4794 7.85952 -0.759694 {normal=(-0.697304 -0.235457 0.676998)} Vertex 266 -11.4649 6.71814 -1.14636 {normal=(-0.76616 -0.286249 0.575378)} Vertex 267 -11.4642 7.32507 -3.69177 {normal=(-0.788294 -0.0465156 -0.613538)} Vertex 268 -11.4556 -14.2987 -0.62301 {normal=(0.912555 -0.279458 -0.298574)} Vertex 269 -11.44 6.54124 -1.12531 {normal=(-0.884711 0.075596 0.45997)} Vertex 270 -11.4339 7.00977 -3.97974 {normal=(-0.832157 0.475647 -0.285087)} Vertex 271 -11.429 7.14219 -3.84169 {normal=(-0.86907 0.285579 -0.403934)} Vertex 272 -11.4286 -14.5305 -0.43956 {normal=(0.923936 -0.176167 -0.339569)} Vertex 273 -11.4259 -12.8786 0.852354 {normal=(-0.591117 0.233314 0.772105)} Vertex 274 -11.4175 -15.6445 -2.21244 Vertex 275 -11.4129 0.104779 -1.15676 {normal=(-0.108936 -0.475932 0.872709)} Vertex 276 -11.3967 -15.6828 0.069326 Vertex 277 -11.3953 -15.0347 -2.9148 {normal=(0.977489 0.102418 0.184459)} Vertex 278 -11.3899 -15.6268 -1.23258 Vertex 279 -11.3874 -15.6146 -1.94062 Vertex 280 -11.3657 -14.8991 0.445296 Vertex 281 -11.3629 -12.9147 -2.2641 {normal=(0.948792 -0.312255 0.0478671)} Vertex 282 -11.3623 -14.9145 -2.55677 Vertex 283 -11.3615 -15.413 -2.47544 {normal=(-0.50142 -0.727532 -0.468268)} Vertex 284 -11.3555 0.396001 -5.58136 {normal=(-0.537246 0.188483 -0.822095)} Vertex 285 -11.3534 -14.8825 -2.50652 Vertex 286 -11.3532 -14.8954 -1.97322 Vertex 287 -11.345 -14.9334 -1.92578 Vertex 288 -11.3441 -14.9346 -3.43658 Vertex 289 -11.3437 -11.8273 -3.81615 Vertex 290 -11.3437 -14.9225 -0.467114 Vertex 291 -11.3385 -14.9955 0.883968 Vertex 292 -11.3345 12.042 -1.93847 {normal=(-0.698311 0.700951 0.145012)} Vertex 293 -11.3324 8.64157 -0.444411 {normal=(-0.683574 -0.155468 0.713131)} Vertex 294 -11.3252 -15.3504 -0.077584 Vertex 295 -11.3244 11.6914 -0.936978 {normal=(-0.657108 0.598894 0.457749)} Vertex 296 -11.3231 -15.6883 -2.31779 Vertex 297 -11.3229 -16.1298 -3.25517 {normal=(0.395037 -0.322148 -0.860329)} Vertex 298 -11.3201 -13.6075 -0.037681 Vertex 299 -11.3195 -14.692 -0.473394 Vertex 300 -11.3165 -14.081 -3.89894 Vertex 301 -11.3132 -15.5891 -0.24729 Vertex 302 -11.3032 -14.9824 -0.336742 Vertex 303 -11.302 -13.7591 0.972896 Vertex 304 -11.3019 -14.99 -0.593574 Vertex 305 -11.2993 -13.1626 1.29423 Vertex 306 -11.294 -11.8727 -4.1656 Vertex 307 -11.2904 -15.1544 -0.173487 {normal=(0.917848 -0.0916883 -0.386197)} Vertex 308 -11.2867 -16.5628 -2.39795 {normal=(-0.391254 -0.84808 0.357325)} Vertex 309 -11.2828 -15.349 -1.98084 Vertex 310 -11.2824 -15.3415 -2.52305 {normal=(-0.271006 -0.394644 -0.877959)} Vertex 311 -11.2749 -13.9913 0.167229 Vertex 312 -11.2661 -0.564555 -5.63842 {normal=(-0.353336 0.09127 -0.931033)} Vertex 313 -11.2599 1.18203 -5.31531 {normal=(-0.479211 0.164195 -0.862205)} Vertex 314 -11.2554 -14.7618 -0.29562 {normal=(-0.716479 0.428875 0.550204)} Vertex 315 -11.2536 -14.7722 -0.6464 {normal=(-0.710569 0.396775 -0.581087)} Vertex 316 -11.2486 -15.03 -0.27166 Vertex 317 -11.2466 -15.0413 -0.655389 Vertex 318 -11.2452 5.79061 -0.426924 {normal=(-0.671586 0.257201 0.694853)} Vertex 319 -11.2424 -15.7842 -1.01411 Vertex 320 -11.2348 -15.0822 -2.62578 Vertex 321 -11.2324 -15.1001 -1.87066 Vertex 322 -11.2317 -16.2788 -2.11918 Vertex 323 -11.2264 -14.1507 -3.46387 {normal=(0.982426 -0.170001 -0.0770684)} Vertex 324 -11.2234 -15.3993 -3.30074 Vertex 325 -11.2208 -14.6527 -0.474016 Vertex 326 -11.2192 -14.1644 -2.85257 {normal=(0.951345 -0.155957 0.265745)} Vertex 327 -11.2182 -15.6405 -2.71987 Vertex 328 -11.2168 -15.596 -2.78502 Vertex 329 -11.2127 12.1837 -2.51991 {normal=(-0.630213 0.75904 -0.163372)} Vertex 330 -11.2082 -16.5797 -2.66788 {normal=(-0.189198 -0.977106 -0.0973038)} Vertex 331 -11.208 -15.538 -0.652813 Vertex 332 -11.2044 11.4128 -3.86788 {normal=(-0.55446 0.52875 -0.642649)} Vertex 333 -11.1955 -13.2825 -1.11614 {normal=(0.86453 -0.335378 -0.374312)} Vertex 334 -11.1942 -14.2264 0.051637 Vertex 335 -11.1854 -14.5798 -0.475874 Vertex 336 -11.1843 -15.7151 -3.18251 Vertex 337 -11.1807 -15.3073 0.866062 Vertex 338 -11.1789 -14.8236 -0.192706 {normal=(-0.570885 0.205129 0.794992)} Vertex 339 -11.1761 -14.8398 -0.745 {normal=(-0.562961 0.160429 -0.810763)} Vertex 340 -11.1748 -15.7971 -2.20037 Vertex 341 -11.17 -14.7094 -0.280875 Vertex 342 -11.168 -14.7207 -0.663212 {normal=(-0.556303 0.529331 -0.640574)} Vertex 343 -11.1586 -14.6281 -0.279951 Vertex 344 -11.158 -11.73 -3.47793 Vertex 345 -11.1566 -14.6396 -0.668533 Vertex 346 -11.1565 -15.0708 0.460273 {normal=(0.819003 0.572136 -0.0435255)} Vertex 347 -11.1552 -12.5531 -2.33756 {normal=(0.930828 -0.365292 -0.010973)} Vertex 348 -11.152 -15.261 -0.456826 {normal=(-0.705685 -0.708317 0.0171648)} Vertex 349 -11.1448 6.62236 -5.13339 {normal=(-0.548327 0.504969 -0.666591)} Vertex 350 -11.1427 -13.8584 -0.467892 Vertex 351 -11.1306 -15.7872 -2.14632 Vertex 352 -11.1183 -12.5874 -3.86544 Vertex 353 -11.1167 -15.6203 -1.35304 Vertex 354 -11.1132 -15.6962 -2.13671 Vertex 355 -11.107 -15.5363 -2.63813 Vertex 356 -11.0867 -12.6562 0.903111 {normal=(-0.373155 0.426736 0.823803)} Vertex 357 -11.0824 -15.1123 -1.33438 Vertex 358 -11.0818 -14.8644 -1.35063 Vertex 359 -11.0813 -0.426052 -5.7302 {normal=(-0.463686 -0.133158 -0.875936)} Vertex 360 -11.0811 -11.8187 -3.95914 Vertex 361 -11.0768 3.52213 -5.5801 {normal=(-0.299054 -0.213041 -0.930151)} Vertex 362 -11.0737 -14.9358 -2.00814 {normal=(0.0827074 0.960507 0.265681)} Vertex 363 -11.0701 -14.9261 -2.47691 {normal=(0.0687977 0.979932 -0.187083)} Vertex 364 -11.0634 -11.6735 -3.27665 Vertex 365 -11.0628 -16.6754 -1.59999 {normal=(-0.345405 -0.934679 0.0840932)} Vertex 366 -11.0626 -14.1711 1.09935 Vertex 367 -11.0584 -12.6486 -1.53876 {normal=(0.917257 -0.324561 -0.230867)} Vertex 368 -11.057 -16.5528 -2.89091 Vertex 369 -11.0541 2.74427 -5.47023 {normal=(-0.417355 -0.0722163 -0.90587)} Vertex 370 -11.054 4.38983 -5.81123 {normal=(-0.215729 -0.0837911 -0.972852)} Vertex 371 -11.0536 -15.8961 -2.12827 Vertex 372 -11.0521 -15.1926 -1.46406 Vertex 373 -11.05 -15.2046 -0.17414 Vertex 374 -11.0471 -15.2213 -0.741196 Vertex 375 -11.0463 -15.5077 -1.76154 Vertex 376 -11.0438 2.44672 -0.137604 {normal=(-0.153191 -0.201993 0.967332)} Vertex 377 -11.0417 -15.6353 -2.57005 {normal=(0.530943 0.792368 0.300421)} Vertex 378 -11.0342 -14.9531 -1.52806 {normal=(-0.819656 0.295157 -0.490964)} Vertex 379 -11.0333 -15.657 -3.03296 Vertex 380 -11.0285 -16.6503 -1.32995 {normal=(-0.382167 -0.787969 0.482756)} Vertex 381 -11.0283 7.33807 -4.52109 {normal=(-0.715051 0.4599 -0.526492)} Vertex 382 -11.0177 10.9967 -0.088386 {normal=(-0.514259 0.323364 0.794338)} Vertex 383 -11.0171 -15.17 -1.21031 Vertex 384 -11.0162 -11.3374 0.051851 Vertex 385 -11.015 -16.7028 -1.86513 {normal=(-0.315202 -0.885503 -0.341368)} Vertex 386 -11.0141 -14.8927 -2.24054 {normal=(0.0335306 0.998993 0.0297974)} Vertex 387 -11.0111 -14.7373 -0.148298 Vertex 388 -11.0099 -15.7912 -2.09578 Vertex 389 -11.0097 8.43216 -4.33767 {normal=(-0.672763 -0.0867454 -0.734756)} Vertex 390 -11.0094 -14.72 -0.199952 Vertex 391 -11.0079 -14.7563 -0.79252 Vertex 392 -11.0066 -14.7359 -0.741896 Vertex 393 -11.002 7.49626 -4.43586 {normal=(-0.802738 0.199492 -0.561974)} Vertex 394 -11.0019 3.62603 0.05797 {normal=(-0.180554 -0.0573081 0.981894)} Vertex 395 -11.0012 -15.2484 -1.53167 Vertex 396 -10.9997 -15.6564 -2.50629 Vertex 397 -10.9983 -13.9289 -0.199665 Vertex 398 -10.9884 -15.7216 -2.52619 Vertex 399 -10.9882 -14.8158 -1.36632 Vertex 400 -10.9869 -15.427 -2.54073 {normal=(-0.262595 -0.468487 -0.843542)} Vertex 401 -10.9865 -14.9222 -1.18149 {normal=(-0.671685 0.374095 0.639447)} Vertex 402 -10.983 -15.538 0.097654 Vertex 403 -10.9819 -15.438 -1.96812 Vertex 404 -10.9799 -12.4648 -2.93526 {normal=(0.97731 -0.103909 0.184577)} Vertex 405 -10.9758 -11.5893 -2.975 Vertex 406 -10.9737 -14.9251 -2.52603 Vertex 407 -10.9726 -16.5373 0.688335 {normal=(-0.629973 -0.776616 0.00112666)} Vertex 408 -10.9712 -14.946 -1.95459 Vertex 409 -10.9702 -14.0223 0.047072 Vertex 410 -10.9657 -16.3151 -1.9689 Vertex 411 -10.9657 -15.0234 -1.63395 {normal=(-0.683208 0.0787642 -0.725964)} Vertex 412 -10.9613 -16.536 0.95254 Vertex 413 -10.9596 -14.7406 -1.37632 Vertex 414 -10.9573 -14.8917 -1.55793 {normal=(-0.683066 0.438242 -0.584265)} Vertex 415 -10.9565 -15.6155 -2.37041 {normal=(-0.299732 -0.950764 -0.0787971)} Vertex 416 -10.9539 -14.8092 -1.56813 Vertex 417 -10.9492 -15.3097 0.459072 {normal=(0.781023 0.619189 -0.0812893)} Vertex 418 -10.949 -15.2146 -1.15255 Vertex 419 -10.9349 -15.8461 -0.527289 Vertex 420 -10.9324 -12.4849 -3.50545 {normal=(0.949235 0.0558398 -0.309572)} Vertex 421 -10.9309 -10.8519 -0.438323 Vertex 422 -10.9303 -15.1218 -2.66084 Vertex 423 -10.9201 -15.1404 -1.84063 Vertex 424 -10.92 -14.9482 -0.066932 Vertex 425 -10.916 -14.9716 -0.861211 Vertex 426 -10.9148 1.60911 -0.336224 {normal=(-0.0999056 -0.34091 0.934772)} Vertex 427 -10.9125 -10.7331 -0.184582 Vertex 428 -10.9075 -15.6035 -2.39309 {normal=(-0.359286 -0.909459 -0.20928)} Vertex 429 -10.9053 -14.858 -1.18018 Vertex 430 -10.9022 -15.0368 0.246844 Vertex 431 -10.9013 -12.47 -3.27844 {normal=(0.999923 0.0116358 -0.00424683)} Vertex 432 -10.901 9.45982 -0.000788 {normal=(-0.667006 0.0725027 0.741516)} Vertex 433 -10.901 -14.7751 -1.18422 Vertex 434 -10.897 -16.5672 0.427453 Vertex 435 -10.8951 -15.0804 0.388548 Vertex 436 -10.8905 -14.9748 -1.08829 {normal=(-0.465532 0.179983 0.866537)} Vertex 437 -10.8878 -15.6608 1.04154 Vertex 438 -10.8832 0.752879 -0.844994 {normal=(0.0177161 -0.584541 0.811171)} Vertex 439 -10.8809 -15.5007 -2.05257 Vertex 440 -10.8806 -16.3333 1.20423 Vertex 441 -10.8805 -15.6845 -2.41068 {normal=(-0.495315 0.865984 -0.0688107)} Vertex 442 -10.8791 -4.13804 -0.986501 Vertex 443 -10.8728 -14.8769 -2.24192 {normal=(0.146105 0.987794 0.0540006)} Vertex 444 -10.8706 -15.7268 -1.67847 {normal=(0.630827 0.774921 -0.0394313)} Vertex 445 -10.8702 -15.9098 -0.091778 Vertex 446 -10.8681 -15.135 0.138505 Vertex 447 -10.864 -15.1282 0.466755 Vertex 448 -10.8603 -11.0918 -0.213886 Vertex 449 -10.8545 6.71498 -0.409505 {normal=(-0.737132 -0.20431 0.644123)} Vertex 450 -10.8532 -15.492 -1.34794 {normal=(-0.690101 -0.707548 0.15211)} Vertex 451 -10.8501 6.5401 -0.418145 {normal=(-0.690501 0.0768489 0.719237)} Vertex 452 -10.8481 -15.5361 0.615558 {normal=(0.855697 0.502818 0.122298)} Vertex 453 -10.8456 -11.2438 -1.77865 Vertex 454 -10.8426 -16.3463 -1.08643 Vertex 455 -10.8394 -13.6742 1.35711 Vertex 456 -10.8379 -15.6465 -2.03831 Vertex 457 -10.8361 -12.9673 1.26495 Vertex 458 -10.8361 -12.1674 -1.66008 {normal=(0.961959 -0.241082 -0.12851)} Vertex 459 -10.8357 -16.6305 -2.13986 Vertex 460 -10.8344 -11.4471 -2.47008 Vertex 461 -10.8332 -15.7729 -2.92082 Vertex 462 -10.8327 -15.8253 -1.24594 Vertex 463 -10.8293 -16.7344 -1.57647 Vertex 464 -10.8277 -2.35746 -1.27515 {normal=(0.41555 0.208832 0.885272)} Vertex 465 -10.8236 -15.2098 0.093167 Vertex 466 -10.8187 -15.4068 0.331408 {normal=(-0.877963 -0.478627 0.0098814)} Vertex 467 -10.8179 -4.18087 -0.639688 Vertex 468 -10.817 -15.5095 -0.44835 {normal=(-0.440418 -0.897696 0.0132109)} Vertex 469 -10.8156 -15.6309 -2.37675 Vertex 470 -10.8149 0.381758 -5.94557 {normal=(-0.265855 0.217487 -0.93916)} Vertex 471 -10.814 -14.1873 0.185369 Vertex 472 -10.8136 -14.9301 -1.70804 Vertex 473 -10.8131 5.51172 -5.70524 {normal=(-0.16873 0.212803 -0.962416)} Vertex 474 -10.8119 -14.8261 0.212714 Vertex 475 -10.8072 -14.9043 -1.65857 Vertex 476 -10.8029 -16.7017 -1.23085 Vertex 477 -10.7977 -16.273 -3.03447 {normal=(0.384879 -0.198236 -0.901427)} Vertex 478 -10.7968 -15.4446 -1.64196 Vertex 479 -10.7955 -16.0007 -0.923008 Vertex 480 -10.7955 -15.9079 -2.07957 Vertex 481 -10.7941 -16.451 -2.14016 Vertex 482 -10.7904 -14.8768 0.405624 {normal=(-0.617148 0.696345 0.366377)} Vertex 483 -10.7897 -15.3667 -0.157165 Vertex 484 -10.7895 -0.209263 -6.05512 {normal=(-0.286636 -0.0835695 -0.954388)} Vertex 485 -10.787 -19.6814 -3.33927 Vertex 486 -10.7868 -15.3841 -0.746702 Vertex 487 -10.7833 -15.7841 0.509618 Vertex 488 -10.7815 -15.5478 -2.02272 Vertex 489 -10.7792 -11.7079 -3.53787 Vertex 490 -10.7772 -15.8206 -0.511851 Vertex 491 -10.7722 -15.7787 -1.66207 Vertex 492 -10.7715 -16.1306 -1.94264 Vertex 493 -10.7666 -16.7698 -1.91735 Vertex 494 -10.7664 -16.7971 -0.414976 Vertex 495 -10.7629 -11.0447 -1.08783 Vertex 496 -10.7599 -15.7087 0.213064 Vertex 497 -10.7535 -14.9514 0.064113 {normal=(-0.499025 0.462884 -0.732607)} Vertex 498 -10.7525 -16.3803 -1.04931 Vertex 499 -10.7498 -14.4184 0.589041 Vertex 500 -10.7495 -16.7526 -0.146369 Vertex 501 -10.7467 -14.9368 0.52599 {normal=(-0.568594 0.487586 0.662541)} Vertex 502 -10.7437 -19.8397 -2.59471 Vertex 503 -10.7429 -15.9078 -1.22531 Vertex 504 -10.7426 -15.6939 -0.506093 Vertex 505 -10.7413 -16.3522 0.15375 Vertex 506 -10.7382 -16.0004 0.970921 Vertex 507 -10.7362 -15.3288 0.615248 Vertex 508 -10.7335 -14.8566 -1.12313 Vertex 509 -10.7327 -15.8539 -2.86529 Vertex 510 -10.7269 -15.9091 -0.072221 Vertex 511 -10.7259 -14.8734 -1.07157 Vertex 512 -10.7249 -16.6535 -2.46258 Vertex 513 -10.7244 -11.7558 -0.984979 {normal=(0.997857 -0.0525639 -0.038963)} Vertex 514 -10.7226 -12.1474 -0.269684 Vertex 515 -10.7196 -15.3947 -1.08171 Vertex 516 -10.7191 -15.7961 0.527957 Vertex 517 -10.7157 -15.7347 -2.83193 Vertex 518 -10.7148 -15.5037 -2.68454 {normal=(-0.23555 -0.455227 -0.858653)} Vertex 519 -10.7127 1.21392 -5.59313 {normal=(-0.237238 0.184731 -0.953726)} Vertex 520 -10.71 -15.1684 -1.78481 Vertex 521 -10.7098 -14.8587 -0.222102 {normal=(0.266738 0.962117 0.0564005)} Vertex 522 -10.7079 -15.6787 -1.64124 Vertex 523 -10.7073 -14.8731 -0.709271 {normal=(0.267285 0.957294 -0.11021)} Vertex 524 -10.7066 -14.8155 0.221239 Vertex 525 -10.7014 -16.8112 -0.679954 Vertex 526 -10.699 -12.519 0.999461 Vertex 527 -10.6982 -15.9909 -2.06029 Vertex 528 -10.6956 -14.8473 0.42543 Vertex 529 -10.6939 -16.4894 -2.14899 Vertex 530 -10.6925 7.13321 0.082106 {normal=(-0.633104 -0.356989 0.686832)} Vertex 531 -10.6886 -15.0544 -0.011704 {normal=(-0.404373 0.161185 -0.900279)} Vertex 532 -10.6845 -16.3902 0.084887 Vertex 533 -10.6792 -10.8455 -0.544866 Vertex 534 -10.678 -4.1563 -5.78225 Vertex 535 -10.678 7.94452 0.527652 {normal=(-0.653918 -0.234478 0.719313)} Vertex 536 -10.6765 -15.4494 0.063173 Vertex 537 -10.6651 -12.9828 -0.666245 {normal=(0.757554 -0.150716 -0.635136)} Vertex 538 -10.6614 -14.7733 0.416879 Vertex 539 -10.6589 4.60609 0.086972 {normal=(-0.145829 0.0466376 0.98821)} Vertex 540 -10.6554 -14.9287 0.053196 {normal=(-0.308436 0.535946 -0.785894)} Vertex 541 -10.6516 -14.7563 0.214658 Vertex 542 -10.6505 -15.6214 -2.71031 Vertex 543 -10.6474 -15.8692 0.973914 Vertex 544 -10.6463 9.76304 -4.7473 {normal=(-0.645107 0.164263 -0.746227)} Vertex 545 -10.6461 -15.5561 -0.464796 Vertex 546 -10.6423 -15.7912 -1.20308 Vertex 547 -10.6405 -19.7502 -2.96992 Vertex 548 -10.6371 -15.0617 -0.026158 Vertex 549 -10.6354 -14.861 -0.169522 Vertex 550 -10.6334 -0.765666 -2.08109 {normal=(0.454276 -0.0748109 0.887714)} Vertex 551 -10.6328 -15.0873 -0.892955 Vertex 552 -10.6324 -14.8784 -0.760937 Vertex 553 -10.629 -16.4459 1.13878 Vertex 554 -10.6224 -15.5636 -0.447075 {normal=(-0.387812 -0.921731 -0.00360869)} Vertex 555 -10.6205 -14.8559 0.038575 Vertex 556 -10.6188 -15.7534 -0.069459 Vertex 557 -10.6134 -14.5472 1.21956 Vertex 558 -10.6133 2.79154 -5.59136 {normal=(-0.192014 -0.0314113 -0.980889)} Vertex 559 -10.6122 -16.127 0.148446 Vertex 560 -10.61 -14.8464 -0.465764 {normal=(0.140256 0.989707 -0.0284243)} Vertex 561 -10.6048 -15.9776 -0.907205 Vertex 562 -10.6019 -15.0985 -1.00007 Vertex 563 -10.6017 -15.5486 -2.6712 Vertex 564 -10.597 6.45553 -5.50768 {normal=(-0.192739 0.379445 -0.904916)} Vertex 565 -10.5967 -15.7235 -1.4972 {normal=(0.0424418 0.99663 0.0702025)} Vertex 566 -10.5902 -16.5051 -0.965312 Vertex 567 -10.5853 -16.7737 1.02883 Vertex 568 -10.5767 -16.837 0.685875 Vertex 569 -10.5727 -15.7302 0.422932 {normal=(-0.688004 -0.721243 0.0803674)} Vertex 570 -10.567 -14.892 0.582293 Vertex 571 -10.566 -16.6071 -2.74803 Vertex 572 -10.5619 -15.592 -0.454099 Vertex 573 -10.56 -1.0925 -5.79057 {normal=(0.241449 0.0112347 -0.970349)} Vertex 574 -10.5577 -15.7618 -1.45611 Vertex 575 -10.5561 1.24434 -0.551981 {normal=(0.127782 -0.491734 0.861318)} Vertex 576 -10.5547 -14.8855 0.52964 Vertex 577 -10.554 -16.2804 -2.90411 Vertex 578 -10.5529 -15.8316 -2.03726 Vertex 579 -10.5516 -15.8172 -0.905828 Vertex 580 -10.5501 -15.1011 0.704146 Vertex 581 -10.55 -15.2231 -2.67935 Vertex 582 -10.5492 -13.4731 1.26807 {normal=(0.0742598 0.191989 0.978584)} Vertex 583 -10.548 -15.7557 -1.47685 Vertex 584 -10.548 -15.9902 0.146957 Vertex 585 -10.5439 -15.3174 -1.84967 Vertex 586 -10.5411 -16.2934 -2.09395 Vertex 587 -10.54 -15.5169 -0.087701 Vertex 588 -10.5383 -15.452 -0.100028 Vertex 589 -10.5372 -15.5489 0.692284 Vertex 590 -10.5331 -15.6176 -1.86309 Vertex 591 -10.5329 -2.38423 -5.89145 {normal=(0.271651 0.0217085 -0.962151)} Vertex 592 -10.5312 -11.4201 -2.49583 Vertex 593 -10.5305 -14.6859 0.651277 Vertex 594 -10.5271 -14.8386 -0.465588 {normal=(0.192863 0.981073 -0.0173147)} Vertex 595 -10.5195 9.12227 0.911131 {normal=(-0.665664 0.130153 0.734814)} Vertex 596 -10.5183 3.54133 -5.62425 {normal=(-0.105146 -0.14251 -0.984193)} Vertex 597 -10.5182 -15.6378 -1.68701 Vertex 598 -10.5039 -0.840393 -5.82585 {normal=(0.129675 -0.394275 -0.909798)} Vertex 599 -10.5037 -15.4386 -1.85885 Vertex 600 -10.5016 -15.4526 -0.783953 Vertex 601 -10.4992 -15.0291 -0.044895 Vertex 602 -10.4976 -15.0008 0.002019 Vertex 603 -10.4946 -15.0218 -1.6631 {normal=(0.174764 0.956257 -0.234586)} Vertex 604 -10.4924 -11.0253 -1.15006 Vertex 605 -10.4923 -16.8496 0.389597 Vertex 606 -10.4884 -15.7835 -1.38983 Vertex 607 -10.4859 -16.3042 0.1161 Vertex 608 -10.4807 -15.7519 -1.12062 Vertex 609 -10.4787 -16.2539 -1.08276 Vertex 610 -10.4773 -16.5984 0.148561 Vertex 611 -10.4752 -15.6743 0.118331 Vertex 612 -10.4743 5.49132 0.03785 {normal=(-0.213158 0.0819238 0.973577)} Vertex 613 -10.4739 12.3414 -3.34505 {normal=(-0.379122 0.779829 -0.49813)} Vertex 614 -10.4665 -15.2701 -0.069142 Vertex 615 -10.462 12.7106 -2.03032 {normal=(-0.392216 0.917647 0.0639596)} Vertex 616 -10.46 -15.5197 -0.811788 Vertex 617 -10.4596 -15.5196 -0.094213 Vertex 618 -10.4525 -16.3158 -2.33928 {normal=(0.795815 -0.534729 0.284152)} Vertex 619 -10.4419 -15.642 -1.79093 Vertex 620 -10.4405 -16.2802 1.13673 Vertex 621 -10.44 -15.7404 -1.84434 Vertex 622 -10.4379 -15.586 -1.10456 Vertex 623 -10.4378 7.29163 -5.12198 {normal=(-0.348707 0.37417 -0.859302)} Vertex 624 -10.4344 -0.524662 -6.01673 {normal=(0.133478 -0.33389 -0.933114)} Vertex 625 -10.4337 -14.2675 1.51813 Vertex 626 -10.4325 -13.6979 -0.190373 Vertex 627 -10.4287 -4.22971 -5.97208 Vertex 628 -10.4283 -14.9789 -1.18179 {normal=(0.209569 0.977702 0.013386)} Vertex 629 -10.4271 -15.0278 -1.72507 Vertex 630 -10.4232 -15.2761 -1.85305 Vertex 631 -10.4228 -17.6652 -1.96881 Vertex 632 -10.4136 -15.7521 -1.11693 Vertex 633 -10.4136 -15.4701 -0.797937 Vertex 634 -10.4134 -15.7945 0.46378 Vertex 635 -10.4119 -15.6659 -1.1103 Vertex 636 -10.4049 -15.7899 0.465994 {normal=(-0.241552 0.93281 -0.267427)} Vertex 637 -10.4049 -17.4539 -2.61459 Vertex 638 -10.4033 -16.0661 -2.82281 Vertex 639 -10.3985 -15.0905 -2.0049 Vertex 640 -10.3981 -12.782 1.20435 Vertex 641 -10.3977 -15.0368 -2.4732 Vertex 642 -10.396 -16.4804 -1.56853 {normal=(0.483703 -0.875232 0.000109364)} Vertex 643 -10.3943 -15.7329 -1.81436 Vertex 644 -10.39 7.47559 -5.08956 {normal=(-0.486227 0.106107 -0.867366)} Vertex 645 -10.3828 -14.2139 0.30043 Vertex 646 -10.3711 -15.0746 -2.24184 {normal=(0.337819 0.936216 0.0968443)} Vertex 647 -10.3704 -16.3094 -2.08445 Vertex 648 -10.368 -14.961 -1.43453 {normal=(0.0656146 0.993335 -0.0947671)} Vertex 649 -10.3604 -16.61 -0.056382 Vertex 650 -10.3498 -15.7605 0.838861 Vertex 651 -10.3471 -16.2631 -2.56731 Vertex 652 -10.3466 -14.9758 -1.14076 Vertex 653 -10.3409 -16.3972 -0.983203 Vertex 654 -10.3406 -15.7759 0.466045 Vertex 655 -10.3349 4.23102 -5.82585 {normal=(-0.0307861 -0.105974 -0.993892)} Vertex 656 -10.3252 -16.4802 -1.82208 Vertex 657 -10.3211 8.35868 -5.18312 {normal=(-0.576228 -0.073174 -0.814006)} Vertex 658 -10.3195 -16.6556 -0.4016 {normal=(0.527028 -0.838228 0.140056)} Vertex 659 -10.3182 -15.2769 0.801145 Vertex 660 -10.3129 -16.5418 -1.29802 Vertex 661 -10.3126 -16.4159 0.14436 Vertex 662 -10.3119 -15.7251 0.800386 Vertex 663 -10.3082 12.4185 -0.866307 {normal=(-0.347701 0.824493 0.446447)} Vertex 664 -10.3073 -15.1012 0.570992 {normal=(0.526156 0.849323 -0.0425522)} Vertex 665 -10.3052 -15.1998 -0.996663 Vertex 666 -10.3017 -16.1019 0.063706 Vertex 667 -10.2971 6.33747 0.050988 {normal=(-0.332193 -0.0663457 0.940875)} Vertex 668 -10.2905 -17.5936 -2.30108 Vertex 669 -10.2866 -14.9481 -1.44648 Vertex 670 -10.2811 -15.5724 -2.70249 Vertex 671 -10.2795 -13.9457 -0.018693 Vertex 672 -10.2792 -15.7233 0.819898 Vertex 673 -10.2772 -15.9533 0.138717 Vertex 674 -10.2733 -0.053182 -1.91368 {normal=(0.598715 -0.480383 0.640916)} Vertex 675 -10.2701 -21.311 -3.44826 Vertex 676 -10.2685 6.5225 0.103263 {normal=(-0.378412 -0.298762 0.876097)} Vertex 677 -10.2676 -15.4349 -2.6733 Vertex 678 -10.2658 -15.611 -1.98963 Vertex 679 -10.2575 -21.32 -2.89933 Vertex 680 -10.256 -15.2048 0.096699 {normal=(0.541278 0.815431 -0.205161)} Vertex 681 -10.2557 0.277446 -5.88806 {normal=(0.298352 0.17647 -0.938)} Vertex 682 -10.2511 -16.6647 -0.743094 Vertex 683 -10.2494 -16.6207 0.69106 {normal=(0.602677 -0.773006 0.198098)} Vertex 684 -10.2429 -15.1136 0.633678 Vertex 685 -10.2414 -16.5666 0.948636 Vertex 686 -10.2356 -15.1002 0.797242 Vertex 687 -10.232 -15.882 0.137164 Vertex 688 -10.227 -15.4613 -0.042742 Vertex 689 -10.2212 -16.1784 -0.939108 Vertex 690 -10.2185 -15.266 0.014522 Vertex 691 -10.2165 -15.1736 0.533762 Vertex 692 -10.2162 9.76619 -5.44123 {normal=(-0.596692 0.157231 -0.786916)} Vertex 693 -10.2152 1.33698 -5.60939 {normal=(0.129104 0.0709436 -0.98909)} Vertex 694 -10.2094 -15.9057 0.14528 Vertex 695 -10.2058 -13.3561 1.23215 Vertex 696 -10.2043 -14.0961 1.46342 {normal=(0.0500185 0.281336 0.958305)} Vertex 697 -10.1922 -16.017 -1.01276 Vertex 698 -10.1908 2.33905 -0.264528 {normal=(0.225667 -0.240555 0.944038)} Vertex 699 -10.1903 -15.2376 1.29131 Vertex 700 -10.1867 -14.535 0.336458 Vertex 701 -10.1822 -15.161 0.345594 {normal=(0.422048 0.89403 -0.150285)} Vertex 702 -10.1807 -15.2394 0.057896 Vertex 703 -10.1782 -15.545 0.046677 Vertex 704 -10.1756 -16.6364 0.438455 Vertex 705 -10.1721 -15.626 -2.22149 {normal=(0.905656 -0.374125 0.199543)} Vertex 706 -10.1711 -15.2668 -0.865934 Vertex 707 -10.1489 -0.004846 -2.15999 {normal=(0.708377 -0.204946 0.675426)} Vertex 708 -10.146 -21.2852 -3.17337 Vertex 709 -10.1421 -19.9816 -0.674959 {normal=(-0.880156 -0.196577 0.432068)} Vertex 710 -10.1388 1.32248 -0.667843 {normal=(0.430404 -0.493903 0.755522)} Vertex 711 -10.138 -16.0187 -1.93088 Vertex 712 -10.1335 10.3171 0.35981 {normal=(-0.485 0.318486 0.814458)} Vertex 713 -10.132 -15.5939 -2.45618 Vertex 714 -10.1302 -15.4011 0.024308 Vertex 715 -10.1168 -15.4365 0.946823 Vertex 716 -10.1163 -15.3133 0.355448 Vertex 717 -10.1011 -15.1757 0.356879 {normal=(0.480047 0.866139 -0.139134)} Vertex 718 -10.0979 2.70569 -5.68303 {normal=(0.0171046 -0.0195918 -0.999662)} Vertex 719 -10.0974 -0.474518 -5.85231 {normal=(0.651328 -0.259794 -0.712937)} Vertex 720 -10.0877 -15.9294 -1.01747 Vertex 721 -10.077 -15.5485 -0.868527 Vertex 722 -10.0713 -15.6141 -1.9045 Vertex 723 -10.0703 -12.9986 0.337294 Vertex 724 -10.0656 -16.3722 -0.406254 {normal=(0.855944 -0.500299 0.130615)} Vertex 725 -10.0628 -13.9021 0.410332 Vertex 726 -10.062 -15.034 -0.18731 Vertex 727 -10.0605 -15.9198 -1.90888 Vertex 728 -10.0548 -15.2401 -1.93361 Vertex 729 -10.0542 -15.3998 -0.865201 Vertex 730 -10.0513 -16.3232 -0.148261 Vertex 731 -10.0497 -15.1603 -2.54581 Vertex 732 -10.0377 -14.9516 1.60192 Vertex 733 -10.0372 -15.0344 -0.64981 Vertex 734 -10.036 -15.6257 -1.02428 Vertex 735 -10.0315 -15.0685 -0.417614 {normal=(0.591011 0.806093 0.0303427)} Vertex 736 -10.0298 -16.3056 -1.46581 {normal=(0.627658 -0.778215 -0.0206705)} Vertex 737 -10.0297 0.740176 -1.21487 {normal=(0.641258 -0.617424 0.455605)} Vertex 738 -10.0284 -0.933655 -2.35618 {normal=(0.662809 0.0490969 0.747177)} Vertex 739 -10.026 5.30314 -5.82455 {normal=(0.0673661 0.142937 -0.987437)} Vertex 740 -10.0195 -15.2187 -2.24603 Vertex 741 -10.0194 -16.2767 -1.22267 Vertex 742 -10.0175 -15.866 0.997665 Vertex 743 -10.015 -15.6201 0.760091 Vertex 744 -10.01 -16.3625 -0.663164 Vertex 745 -10.0076 -13.4063 -0.144325 Vertex 746 -10.0026 11.1862 -4.56491 {normal=(-0.520634 0.55206 -0.651283)} Vertex 747 -9.99053 -16.2791 -1.70685 Vertex 748 -9.98007 -14.7642 0.578683 Vertex 749 -9.97415 3.50325 -5.6892 {normal=(0.0296027 -0.109298 -0.993568)} Vertex 750 -9.97122 -14.8082 0.37878 {normal=(-0.56431 0.649292 -0.509877)} Vertex 751 -9.96899 -15.5808 0.90871 Vertex 752 -9.96338 -4.2212 -5.44755 Vertex 753 -9.94118 -0.772566 -5.41739 {normal=(0.734116 -0.236309 -0.636579)} Vertex 754 -9.93864 -14.0007 1.39393 Vertex 755 -9.92759 -16.1117 0.112918 Vertex 756 -9.91631 -13.2561 0.680038 Vertex 757 -9.89984 -15.7575 0.961197 Vertex 758 -9.89669 3.36702 -0.11203 {normal=(0.260442 -0.14493 0.95455)} Vertex 759 -9.88896 -15.5752 0.09549 Vertex 760 -9.88576 -15.6557 -0.141455 Vertex 761 -9.88332 -2.44321 -2.029 {normal=(0.700089 0.142851 0.699621)} Vertex 762 -9.88307 -2.44324 -5.57819 {normal=(0.622611 0.014429 -0.782399)} Vertex 763 -9.88043 -14.9543 0.203369 {normal=(-0.454624 0.47344 -0.754435)} Vertex 764 -9.8715 0.167996 -5.67131 {normal=(0.738623 0.010097 -0.674043)} Vertex 765 -9.87019 11.8408 -0.00659 {normal=(-0.242992 0.599231 0.762809)} Vertex 766 -9.8662 -15.7829 0.054908 Vertex 767 -9.86292 -15.6942 -0.382872 {normal=(0.968496 -0.228383 0.0992811)} Vertex 768 -9.85591 -13.5405 -0.037375 Vertex 769 -9.84828 -15.4341 1.23197 Vertex 770 -9.84366 -13.5396 0.834674 Vertex 771 -9.84129 -15.4283 -1.69507 Vertex 772 -9.84089 -4.23232 -1.97828 Vertex 773 -9.83412 -14.6562 1.63673 Vertex 774 -9.83246 -15.6575 -0.623767 Vertex 775 -9.8301 -15.4674 -1.46372 Vertex 776 -9.82831 4.14704 -5.78171 {normal=(0.0638109 -0.127118 -0.989833)} Vertex 777 -9.82793 -15.3148 -0.080776 Vertex 778 -9.82779 -15.8746 0.416379 Vertex 779 -9.82697 -17.6931 -0.000768 {normal=(-0.886088 0.122042 0.447162)} Vertex 780 -9.82394 -0.959323 -5.26112 {normal=(0.738026 0.0145501 -0.674615)} Vertex 781 -9.8233 1.24077 -5.45815 {normal=(0.61358 -0.0394517 -0.788646)} Vertex 782 -9.82269 -15.4349 -1.23279 Vertex 783 -9.80722 -14.2928 0.470013 Vertex 784 -9.80458 -16.0672 -1.45693 Vertex 785 -9.79645 -16.0396 -1.14011 Vertex 786 -9.7942 -15.3524 -0.39644 Vertex 787 -9.7936 -15.9753 0.100159 Vertex 788 -9.78416 4.38373 -0.036203 {normal=(0.24192 -0.0854412 0.966527)} Vertex 789 -9.77716 -16.0328 -1.77378 Vertex 790 -9.77394 -15.3139 -0.713082 Vertex 791 -9.76182 5.40737 0.003398 {normal=(0.176597 -0.0573567 0.982611)} Vertex 792 -9.7604 -21.461 -1.2275 Vertex 793 -9.75612 -15.4313 0.683442 Vertex 794 -9.75577 -19.7527 -6.08434 Vertex 795 -9.74596 -4.28925 -5.4962 Vertex 796 -9.73866 2.44708 -5.66819 {normal=(0.382813 -0.129496 -0.914705)} Vertex 797 -9.73715 12.8281 -2.73469 {normal=(-0.238095 0.926131 -0.292561)} Vertex 798 -9.73661 -16.0595 0.850463 Vertex 799 -9.73154 0.01042 -5.26248 {normal=(0.882801 -0.0776922 -0.463277)} Vertex 800 -9.73154 -14.0222 0.985885 Vertex 801 -9.72934 -16.1599 0.625094 {normal=(0.757255 -0.613485 0.224055)} Vertex 802 -9.72184 1.3262 -2.23653 {normal=(0.919343 -0.374696 0.120046)} Vertex 803 -9.71841 -15.5205 0.468435 {normal=(0.794558 0.605243 -0.0485663)} Vertex 804 -9.70212 -15.5374 0.234933 Vertex 805 -9.68869 -16.1883 0.384223 Vertex 806 -9.67989 -15.8386 -0.1016 Vertex 807 -9.67962 -15.2565 -0.05794 {normal=(-0.372879 0.343106 -0.862113)} Vertex 808 -9.67313 -15.6468 0.928454 Vertex 809 -9.66799 7.74706 0.924819 {normal=(-0.187264 -0.443854 0.876314)} Vertex 810 -9.65546 1.26999 -2.45644 {normal=(0.711896 -0.214527 0.668717)} Vertex 811 -9.64369 -16.0826 0.155483 Vertex 812 -9.63894 7.02585 0.456604 {normal=(-0.0441308 -0.547013 0.83596)} Vertex 813 -9.63827 2.09717 -0.490344 {normal=(0.565849 -0.347977 0.747481)} Vertex 814 -9.63054 -0.150637 -2.6132 {normal=(0.727683 -0.150915 0.669105)} Vertex 815 -9.61605 6.44918 0.13333 {normal=(0.137717 -0.466713 0.873621)} Vertex 816 -9.61545 1.08211 -5.16186 {normal=(0.867829 -0.111896 -0.4841)} Vertex 817 -9.59717 6.00617 -5.57221 {normal=(0.170976 0.243262 -0.954773)} Vertex 818 -9.5879 -0.053116 -5.00576 {normal=(0.890856 -0.0199154 -0.45385)} Vertex 819 -9.58468 8.99371 1.34566 {normal=(-0.290185 -0.0419521 0.956051)} Vertex 820 -9.58199 -15.7702 0.867382 Vertex 821 -9.58125 6.28773 0.06475 {normal=(0.250481 -0.232061 0.939897)} Vertex 822 -9.57185 -4.29444 -1.54782 Vertex 823 -9.5696 -14.5516 0.682242 Vertex 824 -9.55726 -15.9385 0.526657 Vertex 825 -9.54713 -15.8851 0.56992 Vertex 826 -9.54451 -14.5447 1.49722 Vertex 827 -9.54165 -14.6553 0.45666 Vertex 828 -9.5341 -15.2045 1.24693 {normal=(0.47011 -0.467224 0.748798)} Vertex 829 -9.52467 -1.09417 -2.9647 {normal=(0.828883 0.0793682 0.553763)} Vertex 830 -9.50647 -15.9251 0.255295 Vertex 831 -9.46959 -15.51 -1.22994 Vertex 832 -9.46207 -14.8063 0.280058 Vertex 833 -9.45522 -15.9969 -0.23507 Vertex 834 -9.44853 3.47707 -5.55829 {normal=(0.368421 -0.159727 -0.915835)} Vertex 835 -9.44826 -15.3865 -1.76839 Vertex 836 -9.44726 4.77119 -5.7723 {normal=(0.300863 0.0365478 -0.952967)} Vertex 837 -9.44532 11.2386 -5.18265 {normal=(-0.459384 0.547022 -0.699809)} Vertex 838 -9.44467 -16.0094 0.412612 {normal=(0.198283 -0.673139 0.712438)} Vertex 839 -9.44001 -16.2222 0.175871 Vertex 840 -9.42007 -15.3946 0.986371 {normal=(0.514313 -0.568324 0.642253)} Vertex 841 -9.41079 -16.206 -0.042953 {normal=(-0.437698 -0.805916 -0.398649)} Vertex 842 -9.40524 -4.27188 -2.68702 Vertex 843 -9.36658 -15.6872 -0.257401 {normal=(-0.26658 0.198211 -0.943211)} Vertex 844 -9.36295 12.0082 -3.99928 {normal=(-0.37952 0.760209 -0.527302)} Vertex 845 -9.36026 -16.2195 0.208991 Vertex 846 -9.34365 -4.27747 -4.70197 Vertex 847 -9.33784 -15.4982 -1.50529 Vertex 848 -9.33232 -14.5438 1.13985 Vertex 849 -9.32171 4.06305 -5.73758 {normal=(0.355402 -0.125697 -0.926223)} Vertex 850 -9.32017 0.94983 -4.4582 {normal=(0.933013 -0.154233 -0.325114)} Vertex 851 -9.31843 -16.0043 -0.265824 Vertex 852 -9.31831 2.13904 -5.14951 {normal=(0.771785 -0.258861 -0.580809)} Vertex 853 -9.30952 -19.7285 -6.43079 Vertex 854 -9.30795 -15.1184 0.014277 Vertex 855 -9.30604 1.628 -1.35177 {normal=(0.883305 -0.441581 0.157409)} Vertex 856 -9.29982 -0.208133 -4.24676 {normal=(0.969871 -0.0202809 -0.242775)} Vertex 857 -9.29334 -0.93602 -4.59519 {normal=(0.929326 0.0857393 -0.359168)} Vertex 858 -9.28865 10.0415 1.28198 {normal=(-0.29863 0.374524 0.877811)} Vertex 859 -9.28703 -17.6027 -5.58686 Vertex 860 -9.27918 -15.6482 0.662059 {normal=(0.514415 -0.568742 0.641802)} Vertex 861 -9.27479 3.10244 -0.442654 {normal=(0.662635 -0.222995 0.714974)} Vertex 862 -9.27318 -21.3452 -5.73709 Vertex 863 -9.25302 -2.50044 -2.70947 {normal=(0.851469 0.0858792 0.517325)} Vertex 864 -9.25048 -0.176438 -3.27873 {normal=(0.967111 -0.148887 0.206228)} Vertex 865 -9.24875 -2.50084 -4.82542 {normal=(0.901209 0.0133499 -0.43318)} Vertex 866 -9.24557 2.61353 -2.19345 {normal=(0.919171 -0.383696 0.0888896)} Vertex 867 -9.24255 -0.993387 -3.47699 {normal=(0.982179 0.0699884 0.174433)} Vertex 868 -9.24253 -14.9671 1.16286 Vertex 869 -9.23886 -14.7596 0.84387 Vertex 870 -9.22194 -16.2233 -0.121848 {normal=(-0.0798424 -0.846543 -0.526299)} Vertex 871 -9.20513 2.55755 -2.41703 {normal=(0.64026 -0.352765 0.682367)} Vertex 872 -9.20505 0.8743 -3.91664 {normal=(0.959092 -0.173456 -0.223732)} Vertex 873 -9.19965 -16.2701 0.016926 {normal=(0.0317213 -0.992031 -0.121937)} Vertex 874 -9.19829 6.73228 -5.36579 {normal=(0.17347 0.156073 -0.972394)} Vertex 875 -9.19167 -15.8061 0.452515 {normal=(0.478215 -0.513568 0.712431)} Vertex 876 -9.18908 -19.7174 -6.98808 Vertex 877 -9.16963 -16.2903 0.101243 Vertex 878 -9.16476 -4.33881 -4.65661 Vertex 879 -9.15542 -15.9807 -0.317903 Vertex 880 -9.14724 -45.027 3.87047 Vertex 881 -9.14485 -15.2381 0.870755 Vertex 882 -9.1409 1.04284 -2.6797 {normal=(0.694072 -0.200473 0.691429)} Vertex 883 -9.13092 -15.4145 -0.164885 Vertex 884 -9.12588 -44.3663 3.86857 Vertex 885 -9.12383 -4.29743 -3.38804 Vertex 886 -9.12111 -14.9301 0.658219 Vertex 887 -9.10999 6.90209 -5.35687 {normal=(0.109839 -0.0667698 -0.991704)} Vertex 888 -9.09858 -4.33885 -2.40005 Vertex 889 -9.07901 7.93967 -5.49622 {normal=(-0.0829 -0.211654 -0.973823)} Vertex 890 -9.0753 11.1982 0.508086 {normal=(-0.168588 0.56024 0.810993)} Vertex 891 -9.07107 -15.833 -0.318259 Vertex 892 -9.05243 -15.6891 -0.281141 Vertex 893 -9.03366 -45.027 1.92883 Vertex 894 -9.02326 -44.3842 1.9165 {normal=(-0.977223 0.0862423 -0.193903)} Vertex 895 -9.01907 5.47591 -5.51982 {normal=(0.467179 0.0947489 -0.879071)} Vertex 896 -9.00267 5.85447 -0.203232 {normal=(0.574295 -0.0629755 0.816222)} Vertex 897 -8.99822 -16.1599 -0.172204 {normal=(0.418308 -0.660946 -0.623032)} Vertex 898 -8.99399 4.18484 -0.408676 {normal=(0.685609 -0.178309 0.705794)} Vertex 899 -8.98669 5.18228 -0.208585 {normal=(0.594376 -0.100539 0.797878)} Vertex 900 -8.97982 -15.2233 0.317066 Vertex 901 -8.96696 -15.4864 0.456328 Vertex 902 -8.96265 -16.1634 0.09069 Vertex 903 -8.95974 -16.1879 -0.032894 {normal=(0.580253 -0.785748 -0.214257)} Vertex 904 -8.94586 -15.6253 0.355535 {normal=(0.700615 -0.290117 0.651898)} Vertex 905 -8.94565 -15.4831 0.513085 {normal=(-0.861469 0.246963 0.443712)} Vertex 906 -8.94353 -22.1882 -3.16712 Vertex 907 -8.94161 -43.3202 3.79385 Vertex 908 -8.93978 -19.9924 0.945029 {normal=(-0.626647 -0.303988 0.717569)} Vertex 909 -8.92681 -2.49958 -3.49388 {normal=(0.99274 0.0430153 0.112329)} Vertex 910 -8.92533 -45.271 3.84484 Vertex 911 -8.92126 -4.35677 -3.23025 Vertex 912 -8.90431 -17.6212 -5.81033 Vertex 913 -8.89958 12.3419 -0.439584 {normal=(-0.0221869 0.790893 0.611552)} Vertex 914 -8.89332 2.68893 -1.38139 {normal=(0.954542 -0.289887 0.0693906)} Vertex 915 -8.88844 0.992296 -3.15284 {normal=(0.96454 -0.237943 0.114214)} Vertex 916 -8.88696 2.02234 -4.19029 {normal=(0.899924 -0.344286 -0.267589)} Vertex 917 -8.87638 -15.9571 -0.162388 {normal=(0.764526 -0.209123 -0.609727)} Vertex 918 -8.87107 -43.3143 1.918 {normal=(-0.91621 0.352374 -0.190765)} Vertex 919 -8.86626 -15.4825 0.067004 Vertex 920 -8.86187 2.11765 -3.80763 {normal=(0.906723 -0.357603 -0.223549)} Vertex 921 -8.85424 -21.3421 -5.99528 Vertex 922 -8.84542 9.6329 -6.00456 {normal=(-0.129533 0.0347002 -0.990968)} Vertex 923 -8.84097 -17.4761 -6.22582 Vertex 924 -8.83348 -15.762 -0.109212 {normal=(0.829315 0.178483 -0.52951)} Vertex 925 -8.83057 12.0761 -4.63657 {normal=(-0.280459 0.773887 -0.56784)} Vertex 926 -8.82183 -45.271 2.0883 Vertex 927 -8.81493 -15.9751 -0.026694 {normal=(0.925371 -0.303637 -0.226923)} Vertex 928 -8.79583 -15.785 0.144167 Vertex 929 -8.79141 -15.9987 0.057748 Vertex 930 -8.79092 2.40505 -2.65504 {normal=(0.594598 -0.365052 0.716373)} Vertex 931 -8.7899 11.1911 -5.36334 {normal=(-0.129588 0.476111 -0.869785)} Vertex 932 -8.78664 12.8215 -1.445 {normal=(-0.0360193 0.948956 0.313346)} Vertex 933 -8.7794 -15.7098 0.102446 Vertex 934 -8.77833 -45.027 1.1626 Vertex 935 -8.7668 -44.436 1.17209 Vertex 936 -8.76669 -21.352 -6.45892 Vertex 937 -8.71394 7.75887 0.933331 {normal=(0.235766 -0.501065 0.832675)} Vertex 938 -8.69749 13.0495 -2.47229 {normal=(-0.0351491 0.998213 -0.04832)} Vertex 939 -8.69484 -22.1384 -3.2422 Vertex 940 -8.68706 3.31266 -5.17191 {normal=(0.735817 -0.27114 -0.62053)} Vertex 941 -8.67558 6.23456 -0.448852 {normal=(0.67366 -0.15371 0.72288)} Vertex 942 -8.67112 12.6136 -3.55732 {normal=(-0.160401 0.882252 -0.44261)} Vertex 943 -8.66928 6.86513 -0.165417 {normal=(0.461409 -0.642369 0.611935)} Vertex 944 -8.66265 -21.4709 0.144578 Vertex 945 -8.65723 2.23391 -3.04478 {normal=(0.904937 -0.409626 0.115307)} Vertex 946 -8.65485 4.19353 -1.71193 {normal=(0.887746 -0.3784 0.262145)} Vertex 947 -8.64004 -23.7411 -3.16115 Vertex 948 -8.63254 6.77266 -0.327621 {normal=(0.567455 -0.480457 0.668697)} Vertex 949 -8.62763 7.16986 0.288609 {normal=(0.372556 -0.657327 0.655075)} Vertex 950 -8.62559 -17.8018 1.65954 {normal=(-0.648967 -0.0147364 0.760674)} Vertex 951 -8.6147 -43.3518 1.2424 Vertex 952 -8.60523 4.22854 -1.30917 {normal=(0.970249 -0.191691 0.147889)} Vertex 953 -8.59473 -27.9859 -3.52662 Vertex 954 -8.57845 5.19998 -0.725376 {normal=(0.889503 -0.11187 0.443024)} Vertex 955 -8.56571 -44.9304 1.31904 Vertex 956 -8.56386 -24.1367 -3.27614 Vertex 957 -8.56337 -45.271 1.31489 Vertex 958 -8.52179 10.9701 1.11311 Vertex 959 -8.50861 -26.9064 -2.8585 Vertex 960 -8.50654 4.58203 -5.16603 {normal=(0.703215 -0.114498 -0.701697)} Vertex 961 -8.50521 6.42801 -5.05533 {normal=(0.636415 0.0701957 -0.768147)} Vertex 962 -8.50151 -42.6843 3.20377 Vertex 963 -8.48754 -44.4112 0.423698 Vertex 964 -8.48493 11.0335 1.2752 {normal=(-0.934556 0.0976895 0.342144)} Vertex 965 -8.4849 -45.027 0.418482 Vertex 966 -8.48024 -44.9365 1.28196 Vertex 967 -8.47776 5.2242 -1.14207 {normal=(0.834691 -0.259016 0.486005)} Vertex 968 -8.47363 -27.9028 -3.61108 Vertex 969 -8.46957 8.95833 1.41415 {normal=(0.205825 -0.197479 0.958456)} Vertex 970 -8.46614 6.60781 -5.04073 {normal=(0.709269 -0.199807 -0.676029)} Vertex 971 -8.46009 -44.4595 1.29137 Vertex 972 -8.45587 -42.643 2.10917 Vertex 973 -8.44611 -28.4977 -3.44355 {normal=(-0.919173 -0.210212 0.333064)} Vertex 974 -8.43062 10.9166 0.966035 Vertex 975 -8.41631 -12.9309 -0.638932 Vertex 976 -8.41438 4.17157 -1.96465 {normal=(0.529423 -0.451713 0.718099)} Vertex 977 -8.41045 12.1842 0.211048 Vertex 978 -8.40726 -15.374 -4.54654 Vertex 979 -8.40378 -12.9112 -1.18576 Vertex 980 -8.39982 -44.3648 5.10133 {normal=(-0.706935 0.10166 0.699934)} Vertex 981 -8.39821 -27.353 -2.74804 {normal=(-0.905325 -0.146421 0.398681)} Vertex 982 -8.39419 9.92694 1.40347 {normal=(0.127118 0.23884 0.962703)} Vertex 983 -8.38225 -45.0271 5.06772 Vertex 984 -8.38146 -23.7552 -3.22256 Vertex 985 -8.37739 11.1107 1.46784 Vertex 986 -8.37072 -26.8347 -2.97015 Vertex 987 -8.36886 12.2991 0.334827 {normal=(-0.916393 0.357164 0.180717)} Vertex 988 -8.34849 6.61465 -0.694472 {normal=(0.652581 -0.385182 0.652513)} Vertex 989 -8.34231 -43.3374 4.82455 Vertex 990 -8.33907 -43.3015 0.493351 Vertex 991 -8.32824 -24.0221 -3.22699 Vertex 992 -8.32492 12.0691 0.109669 Vertex 993 -8.32261 3.3509 -4.13582 {normal=(0.864007 -0.361923 -0.350006)} Vertex 994 -8.31915 -22.1684 -5.511 Vertex 995 -8.31444 -43.4288 1.3497 Vertex 996 -8.30544 -13.0015 -0.922785 Vertex 997 -8.29881 9.31748 1.24736 Vertex 998 -8.29388 -25.4908 -3.29862 Vertex 999 -8.28326 -30.1194 -4.21108 Vertex 1000 -8.25639 12.4301 0.487534 Vertex 1001 -8.25428 7.52254 -5.24379 {normal=(0.472443 -0.355649 -0.806419)} Vertex 1002 -8.25409 -44.9304 0.436705 Vertex 1003 -8.25396 11.1308 1.51011 {normal=(-0.254694 0.334955 0.907158)} Vertex 1004 -8.25248 9.31063 1.41515 {normal=(-0.894756 -0.216397 0.39062)} Vertex 1005 -8.25174 -45.271 0.432554 Vertex 1006 -8.23746 -45.271 4.91516 Vertex 1007 -8.22614 -44.3719 -0.295623 {normal=(-0.927687 0.0153091 -0.373045)} Vertex 1008 -8.22038 10.9114 0.935422 Vertex 1009 -8.21893 9.34764 1.09348 Vertex 1010 -8.21509 -43.291 -0.061943 {normal=(-0.933192 0.225077 -0.280166)} Vertex 1011 -8.21442 -25.8795 -3.19961 Vertex 1012 -8.20447 -22.125 -4.99594 Vertex 1013 -8.1959 12.8479 -0.730817 Vertex 1014 -8.19173 -45.0271 -0.278554 Vertex 1015 -8.18958 -42.5911 1.42024 Vertex 1016 -8.18682 -44.9365 0.537845 Vertex 1017 -8.18082 -44.4346 0.542982 Vertex 1018 -8.18049 6.64974 -4.28675 {normal=(0.751381 -0.0953868 -0.652938)} Vertex 1019 -8.1486 -30.0369 -4.30088 Vertex 1020 -8.14521 12.991 -0.647036 {normal=(-0.878344 0.477819 0.0141603)} Vertex 1021 -8.13685 10.9443 0.814305 {normal=(0.0928051 0.577115 0.811372)} Vertex 1022 -8.13507 9.31474 1.61373 Vertex 1023 -8.13296 12.4502 0.529803 {normal=(-0.275344 0.681511 0.678033)} Vertex 1024 -8.12424 -19.7211 -8.09466 Vertex 1025 -8.12124 12.6992 -0.784484 Vertex 1026 -8.11792 12.0286 0.105356 Vertex 1027 -8.1136 -30.5863 -4.13192 {normal=(-0.954319 -0.273822 0.119566)} Vertex 1028 -8.10949 3.36266 -3.69303 {normal=(0.839265 -0.434384 -0.327024)} Vertex 1029 -8.10894 -26.5016 -2.12342 Vertex 1030 -8.1075 -15.4977 -4.72907 Vertex 1031 -8.09503 -15.3683 -5.06338 Vertex 1032 -8.08957 -23.7329 -5.22963 Vertex 1033 -8.04387 -24.1321 -5.13846 Vertex 1034 -8.04338 -10.8848 -0.228495 Vertex 1035 -8.04053 -42.6782 3.77032 {normal=(-0.31278 0.899028 0.306459)} Vertex 1036 -8.03881 -43.3786 0.600656 Vertex 1037 -8.03752 -26.9019 -2.00118 {normal=(-0.786456 -0.0436317 0.616103)} Vertex 1038 -8.0333 -25.5016 -3.25155 Vertex 1039 -8.02324 13.1514 -0.536025 Vertex 1040 -8.01519 9.39067 1.05896 Vertex 1041 -8.01164 9.33482 1.656 {normal=(-0.424956 -0.0280583 0.904779)} Vertex 1042 -8.0053 -13.0103 1.00777 {normal=(-0.883661 0.149241 0.443701)} Vertex 1043 -7.99733 -30.181 -3.65386 {normal=(-0.994947 -0.0609584 0.0797787)} Vertex 1044 -7.98766 5.2484 -1.55877 {normal=(0.539786 -0.383009 0.749623)} Vertex 1045 -7.98007 -25.7685 -3.25598 Vertex 1046 -7.96631 6.90082 -0.876599 {normal=(0.729097 -0.410546 0.547604)} Vertex 1047 -7.96207 -26.4116 -2.25786 Vertex 1048 -7.95283 -42.8053 1.46782 Vertex 1049 -7.95196 -45.271 -0.286458 Vertex 1050 -7.93532 7.94025 0.840468 Vertex 1051 -7.9205 12.6393 -0.761338 Vertex 1052 -7.9124 -42.4073 0.693917 Vertex 1053 -7.90837 -22.1205 -5.57303 Vertex 1054 -7.90535 -27.4298 -3.22534 Vertex 1055 -7.89981 13.1714 -0.493756 {normal=(-0.312185 0.8602 0.403233)} Vertex 1056 -7.89086 -22.0812 -5.30726 Vertex 1057 -7.8867 5.53516 -4.62686 {normal=(0.749981 0.0809532 -0.656487)} Vertex 1058 -7.88002 11.9198 -0.116802 {normal=(0.139609 0.696507 0.703837)} Vertex 1059 -7.87406 -42.3419 0.440428 Vertex 1060 -7.87386 8.04017 0.707204 Vertex 1061 -7.87356 7.87492 0.990975 {normal=(-0.832596 -0.457516 0.312191)} Vertex 1062 -7.86606 -31.5471 -4.78395 Vertex 1063 -7.86286 -10.9122 1.09587 {normal=(-0.913163 0.148111 0.379731)} Vertex 1064 -7.85131 -23.7495 -5.11313 Vertex 1065 -7.83119 -15.6207 1.95268 {normal=(-0.6263 0.115757 0.77094)} Vertex 1066 -7.8166 -25.4854 -5.04524 Vertex 1067 -7.81562 3.79219 -2.41983 {normal=(0.605307 -0.474848 0.638845)} Vertex 1068 -7.80632 -24.0174 -5.09468 Vertex 1069 -7.79831 13.3084 -2.11062 Vertex 1070 -7.78966 -21.3532 -7.36365 Vertex 1071 -7.76148 4.96266 -4.32859 {normal=(0.82433 -0.197654 -0.530484)} Vertex 1072 -7.75892 12.9316 -2.48278 {normal=(0.233327 0.972271 -0.0157122)} Vertex 1073 -7.74719 12.7431 -3.50605 {normal=(0.201251 0.908516 -0.366193)} Vertex 1074 -7.74378 13.1363 -2.09439 Vertex 1075 -7.74006 7.81806 1.17155 Vertex 1076 -7.73222 -25.8734 -5.07774 Vertex 1077 -7.73073 13.471 -2.08544 {normal=(-0.811906 0.536692 -0.229718)} Vertex 1078 -7.71974 -17.4998 -7.56352 {normal=(-0.50639 0.429792 -0.747562)} Vertex 1079 -7.70332 -31.4477 -4.87229 Vertex 1080 -7.68501 3.53338 -2.93775 {normal=(0.850759 -0.524655 0.0307544)} Vertex 1081 -7.68071 8.12335 0.68454 Vertex 1082 -7.67565 -42.6215 0.741497 Vertex 1083 -7.67358 -31.9761 -4.70322 {normal=(-0.927404 -0.336405 -0.163564)} Vertex 1084 -7.65852 -27.3814 -3.28275 Vertex 1085 -7.65184 -30.1758 -5.53014 {normal=(-0.91722 0.005296 -0.398346)} Vertex 1086 -7.63661 -22.3253 -0.783916 Vertex 1087 -7.63149 10.8124 -5.64342 {normal=(0.313832 0.351815 -0.881893)} Vertex 1088 -7.62621 9.35865 -5.83151 {normal=(0.410341 -0.130632 -0.902527)} Vertex 1089 -7.62261 12.036 -4.81852 {normal=(0.246229 0.718998 -0.649933)} Vertex 1090 -7.61663 7.83815 1.21381 {normal=(-0.690115 -0.36492 0.62496)} Vertex 1091 -7.59849 -43.2583 -1.67611 {normal=(-0.938845 0.112684 -0.32538)} Vertex 1092 -7.59116 13.6518 -2.03551 Vertex 1093 -7.56545 12.5855 -0.899039 {normal=(0.19972 0.882056 0.426718)} Vertex 1094 -7.56263 -42.3769 2.50256 {normal=(-0.186003 0.979781 0.0737061)} Vertex 1095 -7.55794 -25.4963 -4.9928 Vertex 1096 -7.55463 13.063 -2.03102 Vertex 1097 -7.51897 -44.3451 5.6843 {normal=(-0.133086 0.125328 0.983149)} Vertex 1098 -7.51413 -44.4004 -1.75187 {normal=(-0.913644 -0.0325008 -0.405214)} Vertex 1099 -7.51296 -25.7642 -4.97435 Vertex 1100 -7.50323 6.99802 0.025754 Vertex 1101 -7.48562 -22.2817 -0.988529 Vertex 1102 -7.48314 -45.0271 -1.79581 Vertex 1103 -7.4719 -27.4234 -4.97097 Vertex 1104 -7.46773 13.6718 -1.99324 {normal=(-0.315797 0.948825 0.00210441)} Vertex 1105 -7.45504 7.13056 -0.084245 Vertex 1106 -7.43949 -9.01958 0.66656 {normal=(-0.935838 0.292622 0.196418)} Vertex 1107 -7.43434 -45.0273 5.69717 Vertex 1108 -7.43035 6.90536 0.156759 {normal=(-0.742386 -0.65404 0.145241)} Vertex 1109 -7.42978 -23.8644 -0.953655 Vertex 1110 -7.4291 -41.7705 -0.706719 Vertex 1111 -7.42907 -42.3373 -1.50223 {normal=(-0.950154 0.22633 -0.214436)} Vertex 1112 -7.40119 -45.271 5.47066 Vertex 1113 -7.3915 -9.11913 -0.899686 {normal=(-0.955283 0.26622 -0.128693)} Vertex 1114 -7.38405 7.43221 2.55887 {normal=(-0.923628 0.0421934 0.38096)} Vertex 1115 -7.37731 -43.3377 5.39664 Vertex 1116 -7.37725 -24.2586 -0.997458 Vertex 1117 -7.35804 5.8667 -3.90135 {normal=(0.767072 -0.0893887 -0.635303)} Vertex 1118 -7.34724 -32.0742 -3.54329 {normal=(-0.960758 -0.27245 0.0521051)} Vertex 1119 -7.34298 6.36847 2.67728 {normal=(-0.971087 -0.131536 0.199219)} Vertex 1120 -7.31846 -42.3313 1.79142 Vertex 1121 -7.31193 5.15508 -3.58199 {normal=(0.799706 -0.288373 -0.526604)} Vertex 1122 -7.30844 -43.2583 -2.57767 {normal=(-0.944383 -0.0159308 -0.328462)} Vertex 1123 -7.3006 -45.271 -1.68567 Vertex 1124 -7.28524 6.82002 0.316999 Vertex 1125 -7.27506 -32.6227 -5.37381 Vertex 1126 -7.27034 -23.8838 -1.16521 Vertex 1127 -7.26954 7.23251 -0.093519 Vertex 1128 -7.26897 -41.4482 -1.31473 Vertex 1129 -7.2683 -22.1541 -6.51797 Vertex 1130 -7.2653 -10.881 -2.97793 {normal=(-0.84335 0.225973 -0.487541)} Vertex 1131 -7.26168 7.2993 -1.87648 {normal=(0.907658 -0.187279 0.37561)} Vertex 1132 -7.24208 -27.3771 -4.86325 Vertex 1133 -7.23499 13.0197 -3.61834 Vertex 1134 -7.23428 -24.152 -1.19479 Vertex 1135 -7.22757 -42.6339 1.749 Vertex 1136 -7.21797 -26.2768 -1.33962 Vertex 1137 -7.21482 5.19364 -2.01751 {normal=(0.718152 -0.33818 0.608187)} Vertex 1138 -7.20901 12.8624 -3.52573 Vertex 1139 -7.1969 -25.6007 -1.14547 Vertex 1140 -7.19111 -42.3079 -2.54227 {normal=(-0.967524 0.0961672 -0.233773)} Vertex 1141 -7.18781 -26.6616 -1.23954 {normal=(-0.576686 0.0345573 0.816235)} Vertex 1142 -7.16729 -30.31 -1.77421 {normal=(-0.747232 -0.054759 0.662303)} Vertex 1143 -7.16181 6.84011 0.359268 {normal=(-0.737947 -0.624582 0.255601)} Vertex 1144 -7.14481 -45.027 -2.51383 Vertex 1145 -7.14457 -32.0689 -5.459 {normal=(-0.885459 -0.347232 -0.308857)} Vertex 1146 -7.14446 -25.9948 -1.18934 Vertex 1147 -7.14424 5.34338 2.54972 {normal=(-0.941584 -0.302747 0.147525)} Vertex 1148 -7.14349 13.1701 -3.65718 {normal=(-0.70115 0.468376 -0.5376)} Vertex 1149 -7.14173 -44.4004 -2.53413 {normal=(-0.913882 -0.0761191 -0.39878)} Vertex 1150 -7.13799 -40.9886 -2.19132 Vertex 1151 -7.12399 -23.7202 -6.15428 Vertex 1152 -7.12247 6.24603 -1.71512 {normal=(0.796847 -0.0985602 0.596088)} Vertex 1153 -7.12112 -22.1146 -6.30932 Vertex 1154 -7.12023 7.79835 -0.347202 {normal=(0.678303 -0.705721 0.204604)} Vertex 1155 -7.10766 -26.197 -1.51474 Vertex 1156 -7.09948 -41.8982 0.751682 {normal=(-0.420569 0.813032 0.402618)} Vertex 1157 -7.09673 -32.4618 -5.42216 Vertex 1158 -7.07023 -40.6563 -2.82789 Vertex 1159 -7.06988 -35.0264 -4.23679 {normal=(-0.936815 -0.210089 -0.279716)} Vertex 1160 -7.06977 -8.98465 -2.44379 {normal=(-0.882137 0.22445 -0.414074)} Vertex 1161 -7.06705 -12.9289 -4.08971 Vertex 1162 -7.05698 -33.0271 -5.28221 {normal=(-0.765756 -0.385259 -0.514968)} Vertex 1163 -7.05507 -11.0373 2.1656 {normal=(-0.683367 0.0613141 0.727496)} Vertex 1164 -7.05203 -35.0229 -3.24765 {normal=(-0.968197 -0.171817 0.181859)} Vertex 1165 -7.05183 -24.1134 -6.12901 Vertex 1166 -7.05155 -42.1343 1.06901 Vertex 1167 -7.03702 -25.6199 -1.35668 Vertex 1168 -7.03667 -15.3518 -6.24693 {normal=(-0.484002 0.540804 -0.687948)} Vertex 1169 -7.03628 12.7974 -3.4184 Vertex 1170 -7.0145 9.58546 2.02911 {normal=(-0.557975 0.273926 0.783344)} Vertex 1171 -7.00097 -25.8881 -1.38626 Vertex 1172 -6.99251 -32.2059 -1.86392 {normal=(-0.771776 -0.192497 0.606058)} Vertex 1173 -6.99152 -45.271 -2.34218 Vertex 1174 -6.98442 -13.1871 2.36055 {normal=(-0.591761 0.0598183 0.803891)} Vertex 1175 -6.98115 -33.4003 -3.24674 {normal=(-0.927549 -0.370879 0.045838)} Vertex 1176 -6.97899 13.3381 -3.674 Vertex 1177 -6.96941 -23.7437 -5.93948 Vertex 1178 -6.96067 -42.437 1.02659 Vertex 1179 -6.93828 -24.0127 -5.91091 Vertex 1180 -6.93763 -27.5339 -1.35908 Vertex 1181 -6.93323 -30.1706 -6.35018 {normal=(-0.610768 0.133997 -0.780389)} Vertex 1182 -6.93024 -42.6753 4.42051 {normal=(0.0344191 0.890175 0.454318)} Vertex 1183 -6.91636 -41.3607 -0.163031 {normal=(-0.494316 0.784725 0.373976)} Vertex 1184 -6.90083 11.1018 1.47198 {normal=(-0.265034 0.372704 0.889297)} Vertex 1185 -6.89534 -25.4655 -5.9854 Vertex 1186 -6.89199 5.38138 0.224029 {normal=(-0.961165 -0.201152 -0.188946)} Vertex 1187 -6.88131 -25.8629 -5.92282 Vertex 1188 -6.88025 -41.3396 -3.59481 Vertex 1189 -6.87902 8.8035 0.386456 {normal=(0.612997 -0.424843 0.66614)} Vertex 1190 -6.87612 8.19083 0.022637 {normal=(0.685665 -0.589626 0.426856)} Vertex 1191 -6.86986 -42.1568 -3.79467 Vertex 1192 -6.86823 6.30921 -1.50033 Vertex 1193 -6.86256 -9.08388 2.00808 {normal=(-0.769489 0.204915 0.604894)} Vertex 1194 -6.86083 6.49176 -1.51502 Vertex 1195 -6.86055 2.03823 1.06127 {normal=(-0.998836 -0.00295098 -0.0481411)} Vertex 1196 -6.85651 4.69352 2.11507 {normal=(-0.807068 -0.588159 0.0520616)} Vertex 1197 -6.85556 13.3582 -3.63173 {normal=(-0.206436 0.840046 -0.501705)} Vertex 1198 -6.84599 8.19581 -1.28649 {normal=(0.844056 -0.532767 0.0610591)} Vertex 1199 -6.83329 5.06838 -2.92306 {normal=(0.936343 -0.347301 -0.0514215)} Vertex 1200 -6.82914 -32.0635 -6.53945 {normal=(-0.652332 -0.280331 -0.704186)} Vertex 1201 -6.82564 -43.2598 -3.86012 Vertex 1202 -6.79683 13.4976 -0.269359 {normal=(-0.360006 0.801827 0.476937)} Vertex 1203 -6.78568 -27.4902 -1.56294 Vertex 1204 -6.78562 12.5256 0.974956 {normal=(-0.20847 0.591895 0.778589)} Vertex 1205 -6.77517 1.21205 0.781024 {normal=(-0.957164 -0.286304 -0.0432181)} Vertex 1206 -6.76735 -40.8037 -2.8256 Vertex 1207 -6.76727 8.31049 -3.18002 {normal=(0.956279 -0.291717 0.0207614)} Vertex 1208 -6.76718 -25.4909 -5.75389 Vertex 1209 -6.76576 -40.8285 -0.850633 {normal=(-0.573984 0.720469 0.389187)} Vertex 1210 -6.76116 6.17462 -1.44923 {normal=(-0.636593 -0.760962 -0.125241)} Vertex 1211 -6.7566 7.33689 3.72476 {normal=(-0.652182 0.274141 0.706757)} Vertex 1212 -6.73605 -25.7599 -5.72532 Vertex 1213 -6.73365 -40.1227 -3.27867 Vertex 1214 -6.7323 14.1705 -1.95675 {normal=(-0.467677 0.882404 -0.0513851)} Vertex 1215 -6.70624 7.92342 -4.01511 {normal=(0.859014 -0.295312 -0.418194)} Vertex 1216 -6.7047 3.24627 1.66763 {normal=(-0.996253 0.0264008 0.0823625)} Vertex 1217 -6.70196 -27.4125 -5.75822 Vertex 1218 -6.70125 7.57214 -3.60192 {normal=(0.905455 -0.0653332 -0.419383)} Vertex 1219 -6.69879 6.6225 -1.46944 Vertex 1220 -6.69555 8.75321 -4.53803 {normal=(0.804928 -0.362576 -0.469711)} Vertex 1221 -6.68899 -33.3956 -4.92897 {normal=(-0.806768 -0.493232 -0.325343)} Vertex 1222 -6.68515 3.24156 1.85189 {normal=(-0.991824 0.0794344 0.0998809)} Vertex 1223 -6.68438 7.35665 -3.20158 {normal=(0.996192 -0.0668249 -0.0560079)} Vertex 1224 -6.68011 6.14707 4.02962 {normal=(-0.71321 -0.0117527 0.700852)} Vertex 1225 -6.67727 3.24332 1.76913 {normal=(-0.993889 0.0883456 0.0661861)} Vertex 1226 -6.67587 -33.516 -1.98357 {normal=(-0.742836 -0.367342 0.559692)} Vertex 1227 -6.67093 -20.0105 2.1196 Vertex 1228 -6.66898 -37.8187 -3.32421 {normal=(-0.992624 -0.0763612 0.0941677)} Vertex 1229 -6.66719 -38.6947 -3.32432 {normal=(-0.99811 0.0205264 0.0579207)} Vertex 1230 -6.65892 4.70734 -0.130068 {normal=(-0.897976 -0.400142 -0.183099)} Vertex 1231 -6.65775 5.93729 -3.16594 {normal=(0.977416 -0.136262 -0.161525)} Vertex 1232 -6.65377 4.53229 1.77602 Vertex 1233 -6.62939 -35.0181 -1.91999 {normal=(-0.756901 -0.135311 0.639369)} Vertex 1234 -6.61981 -6.3647 -0.69964 {normal=(-0.952562 0.266635 0.146738)} Vertex 1235 -6.61716 -34.2156 -3.28398 Vertex 1236 -6.61467 4.52287 2.14453 Vertex 1237 -6.5989 4.52639 1.97901 Vertex 1238 -6.59868 -40.6476 -3.96669 Vertex 1239 -6.58357 -42.1677 -3.62182 Vertex 1240 -6.58061 -44.3777 -3.75025 Vertex 1241 -6.58042 6.04556 -1.37229 Vertex 1242 -6.57996 -41.3874 -3.45416 Vertex 1243 -6.57928 -45.027 -3.75244 Vertex 1244 -6.56011 -43.3325 5.06993 Vertex 1245 -6.55897 -6.28919 -0.115199 {normal=(-0.956504 0.286716 -0.0537959)} Vertex 1246 -6.55853 0.821168 -0.329246 Vertex 1247 -6.54939 -27.3727 -5.55402 Vertex 1248 -6.54444 -37.8216 -4.19285 {normal=(-0.931912 -0.0809279 -0.353539)} Vertex 1249 -6.54267 9.7923 0.586904 {normal=(0.588143 -0.212262 0.780405)} Vertex 1250 -6.54265 -38.6976 -4.19296 {normal=(-0.925879 -0.0071328 -0.377753)} Vertex 1251 -6.54181 -40.339 -1.48537 Vertex 1252 -6.54138 -43.2346 -3.68517 Vertex 1253 -6.53305 11.5787 -4.8895 Vertex 1254 -6.52297 11.6676 -5.05488 Vertex 1255 -6.51848 -6.62575 -2.30468 {normal=(-0.872739 0.259862 -0.413278)} Vertex 1256 -6.51729 5.23794 3.99098 {normal=(-0.686205 -0.338386 0.643908)} Vertex 1257 -6.51104 8.60197 -0.420323 {normal=(0.845885 -0.502275 0.179437)} Vertex 1258 -6.5054 4.52261 -0.020655 Vertex 1259 -6.50462 -6.34977 -0.408374 {normal=(-0.957689 0.287763 0.00488362)} Vertex 1260 -6.50445 -21.488 1.17528 Vertex 1261 -6.47728 2.16204 3.06955 {normal=(-0.762058 -0.114756 0.637258)} Vertex 1262 -6.47605 1.95106 -2.12188 Vertex 1263 -6.46829 -45.271 5.06899 Vertex 1264 -6.45699 6.06565 -1.33002 {normal=(-0.66523 -0.73128 -0.15066)} Vertex 1265 -6.45459 2.29483 -0.139645 {normal=(-0.88389 0.0189441 -0.467311)} Vertex 1266 -6.44519 9.04369 -3.91063 {normal=(0.914963 -0.362578 -0.177146)} Vertex 1267 -6.44475 -41.0984 -4.3525 Vertex 1268 -6.43659 10.1028 -4.7254 {normal=(0.752845 -0.111734 -0.648645)} Vertex 1269 -6.43317 3.48004 -0.254737 {normal=(-0.990537 0.0452662 -0.12957)} Vertex 1270 -6.43077 -40.27 -3.27638 Vertex 1271 -6.42047 -45.271 -3.57574 Vertex 1272 -6.42015 1.93037 -2.3071 {normal=(-0.926702 0.0803646 -0.367104)} Vertex 1273 -6.41935 -33.3096 -5.85585 Vertex 1274 -6.41786 1.27036 2.91128 {normal=(-0.681342 -0.414243 0.60347)} Vertex 1275 -6.416 1.90913 -2.20403 {normal=(-0.921437 0.103305 -0.374542)} Vertex 1276 -6.41526 -44.3557 5.28254 {normal=(0.465596 0.116879 0.877245)} Vertex 1277 -6.40608 0.818348 -0.855766 Vertex 1278 -6.40123 11.7606 -5.15473 {normal=(-0.589478 0.239699 -0.771401)} Vertex 1279 -6.39423 11.0366 0.195314 {normal=(0.45397 0.49958 0.737788)} Vertex 1280 -6.39154 -39.8123 -2.07588 Vertex 1281 -6.38792 5.38028 -1.47809 {normal=(-0.926902 -0.153031 -0.342686)} Vertex 1282 -6.38108 11.5532 -4.74029 Vertex 1283 -6.38007 -34.2126 -4.37666 Vertex 1284 -6.37656 1.01116 -2.3548 Vertex 1285 -6.37597 -45.0271 5.24633 Vertex 1286 -6.37416 -19.9011 2.09065 Vertex 1287 -6.36776 2.3148 -0.723716 {normal=(-0.971395 -0.108034 0.211473)} Vertex 1288 -6.34904 11.5146 -4.02476 {normal=(0.622783 0.574638 -0.530973)} Vertex 1289 -6.34225 -0.83396 -0.685627 Vertex 1290 -6.34225 0.584039 -0.685606 Vertex 1291 -6.34091 9.06014 -0.168211 {normal=(0.837727 -0.413833 0.35631)} Vertex 1292 -6.33968 -42.1528 -4.60068 Vertex 1293 -6.33793 3.20008 -1.83464 Vertex 1294 -6.33015 -42.3167 3.00224 {normal=(0.0737594 0.980348 0.182967)} Vertex 1295 -6.32992 1.38414 -0.288502 {normal=(-0.809369 0.139151 -0.570578)} Vertex 1296 -6.32948 -3.66996 -0.752633 Vertex 1297 -6.32948 -2.25196 -0.752612 Vertex 1298 -6.32924 4.56952 3.6647 {normal=(-0.565955 -0.695447 0.442773)} Vertex 1299 -6.32025 -37.8146 -2.12507 {normal=(-0.789689 -0.067175 0.609819)} Vertex 1300 -6.31846 -38.6906 -2.12518 {normal=(-0.793575 0.0255973 0.607934)} Vertex 1301 -6.31783 10.5068 0.489034 {normal=(0.558598 0.178768 0.809945)} Vertex 1302 -6.31461 6.74698 -3.23127 Vertex 1303 -6.31436 11.8814 -0.574578 {normal=(0.463006 0.682486 0.565543)} Vertex 1304 -6.30445 -40.5515 -1.59844 Vertex 1305 -6.2984 -40.6954 -3.82604 Vertex 1306 -6.29518 -44.949 -3.59249 Vertex 1307 -6.29485 -44.3273 -3.58288 Vertex 1308 -6.29324 12.1047 -3.23163 {normal=(0.568205 0.744421 -0.350684)} Vertex 1309 -6.29287 6.57805 -3.30816 Vertex 1310 -6.29198 9.71615 2.58683 {normal=(-0.480513 0.445314 0.755515)} Vertex 1311 -6.28068 -33.0951 -5.82118 Vertex 1312 -6.27652 -43.2598 -4.71564 Vertex 1313 -6.27322 12.3165 -1.57702 {normal=(0.498043 0.836218 0.22955)} Vertex 1314 -6.27143 12.3355 -2.50084 {normal=(0.525379 0.846258 -0.0884511)} Vertex 1315 -6.27037 3.29993 3.29292 {normal=(-0.744444 -0.0797229 0.662908)} Vertex 1316 -6.25653 -44.9899 -3.48905 Vertex 1317 -6.24917 1.40467 -0.873569 {normal=(-0.932118 -0.120208 0.341622)} Vertex 1318 -6.24251 10.9961 -4.45964 {normal=(0.705948 0.281502 -0.649919)} Vertex 1319 -6.23709 3.16811 -1.96624 {normal=(-0.859142 0.207187 -0.467919)} Vertex 1320 -6.22696 2.35364 -0.387596 {normal=(-0.976299 -0.130554 -0.172613)} Vertex 1321 -6.22563 4.70799 -1.70401 {normal=(-0.885562 -0.303257 -0.351873)} Vertex 1322 -6.21448 -33.6837 -5.73291 {normal=(-0.490234 -0.322749 -0.809632)} Vertex 1323 -6.20521 11.8687 -5.23514 Vertex 1324 -6.20458 4.44575 3.35634 Vertex 1325 -6.20403 -21.3785 1.13725 Vertex 1326 -6.16935 6.86988 -3.13298 Vertex 1327 -6.16635 -22.2915 -0.400585 Vertex 1328 -6.16136 6.45487 -3.33383 {normal=(-0.546802 -0.71134 -0.441592)} Vertex 1329 -6.15929 -41.1163 -4.17897 Vertex 1330 -6.15861 0.529734 -2.4611 Vertex 1331 -6.15638 9.10637 -1.68459 {normal=(0.854447 -0.518295 -0.0359219)} Vertex 1332 -6.15419 -40.0247 -2.18896 Vertex 1333 -6.15343 9.3637 -2.66082 {normal=(0.869112 -0.489118 -0.0735427)} Vertex 1334 -6.15328 -17.8217 2.94429 Vertex 1335 -6.14736 3.19252 -2.22149 {normal=(-0.887692 0.189116 -0.419808)} Vertex 1336 -6.14374 11.3101 1.60497 {normal=(-0.337963 0.433611 0.835322)} Vertex 1337 -6.14 10.0157 -5.2945 Vertex 1338 -6.12274 4.42306 -1.73434 Vertex 1339 -6.11941 0.620633 2.1421 Vertex 1340 -6.11191 -34.2907 -2.09497 Vertex 1341 -6.10893 10.0212 -5.48149 Vertex 1342 -6.10871 -6.13414 1.51869 {normal=(-0.843076 0.263572 0.468777)} Vertex 1343 -6.10574 1.44355 -0.537757 {normal=(-0.989948 -0.0158311 -0.140545)} Vertex 1344 -6.10108 -35.0221 -5.50011 {normal=(-0.60737 -0.171734 -0.775635)} Vertex 1345 -6.09971 -20.0135 2.21433 Vertex 1346 -6.0965 4.43579 3.46793 Vertex 1347 -6.08178 11.8888 -5.19287 {normal=(-0.0229929 0.49268 -0.869907)} Vertex 1348 -6.06534 7.54771 -4.33965 Vertex 1349 -6.05492 9.76061 -0.015878 {normal=(0.831817 -0.352839 0.428467)} Vertex 1350 -6.05421 -42.1707 -4.42714 Vertex 1351 -6.03363 4.40313 -1.80879 Vertex 1352 -6.03228 -44.3732 -4.67526 Vertex 1353 -6.03095 -45.027 -4.67746 Vertex 1354 -6.0303 7.4215 -4.47569 Vertex 1355 -6.02786 9.41271 -1.21125 {normal=(0.879862 -0.473871 0.0359049)} Vertex 1356 -6.02166 -19.8563 -8.95316 Vertex 1357 -6.0091 14.7242 -1.76119 Vertex 1358 -6.00741 8.69988 -5.05631 Vertex 1359 -6.0014 -2.25196 -0.657592 Vertex 1360 -6.0014 -0.83396 -0.657572 Vertex 1361 -6.0014 0.584038 -0.657551 Vertex 1362 -6.00009 10.0383 -5.13285 Vertex 1363 -5.9986 4.43593 3.59473 Vertex 1364 -5.99433 9.95947 -4.05303 {normal=(0.886887 -0.295861 -0.354822)} Vertex 1365 -5.99226 -43.2346 -4.54069 Vertex 1366 -5.99163 -42.5324 2.28711 Vertex 1367 -5.98667 14.9066 -1.79195 Vertex 1368 -5.98105 0.889254 -0.691035 {normal=(-0.992059 0.0756262 0.100501)} Vertex 1369 -5.97792 4.42493 -2.01676 Vertex 1370 -5.97771 -42.2253 2.36976 Vertex 1371 -5.96962 10.0443 -5.59945 {normal=(-0.517864 -0.0600949 -0.85335)} Vertex 1372 -5.96928 8.63516 -5.2306 Vertex 1373 -5.95515 6.33772 -3.33691 Vertex 1374 -5.95223 -34.2095 -4.85423 Vertex 1375 -5.9302 -3.66997 -0.365996 Vertex 1376 -5.92977 -21.4898 1.2608 Vertex 1377 -5.92869 -3.66996 -0.952019 Vertex 1378 -5.92834 -3.66995 -2.37695 Vertex 1379 -5.92834 -2.25195 -2.37693 Vertex 1380 -5.92773 7.64602 -4.20732 Vertex 1381 -5.92537 13.6395 -3.90961 {normal=(-0.354523 0.705078 -0.614149)} Vertex 1382 -5.92145 -22.3298 -0.028688 Vertex 1383 -5.90908 -21.477 -8.04778 Vertex 1384 -5.88764 7.33415 -4.55093 {normal=(-0.500625 -0.546845 -0.671071)} Vertex 1385 -5.88332 9.87669 -2.86252 {normal=(0.882619 -0.452323 -0.128015)} Vertex 1386 -5.87664 -22.2386 -0.668153 Vertex 1387 -5.87522 -0.833996 1.29024 Vertex 1388 -5.87522 0.584002 1.29026 Vertex 1389 -5.87513 -0.833947 -2.4805 Vertex 1390 -5.87513 0.584052 -2.48048 Vertex 1391 -5.87158 8.7628 -4.90198 Vertex 1392 -5.86792 -45.2711 -4.58649 Vertex 1393 -5.86702 -33.3909 -5.90739 {normal=(-0.521965 -0.640996 -0.56274)} Vertex 1394 -5.86217 -3.67 1.32148 Vertex 1395 -5.86217 -2.252 1.3215 Vertex 1396 -5.86059 -30.3209 -1.12206 {normal=(-0.221825 -0.0329473 0.97453)} Vertex 1397 -5.83172 6.3578 -3.29464 {normal=(-0.44329 -0.741179 -0.50413)} Vertex 1398 -5.8279 -42.6859 3.88862 {normal=(0.382021 0.804807 0.454253)} Vertex 1399 -5.82766 9.77829 -1.08318 {normal=(0.90076 -0.426293 0.0830971)} Vertex 1400 -5.82403 8.59933 -5.3379 {normal=(-0.491743 -0.326557 -0.807186)} Vertex 1401 -5.81218 -23.8675 -0.244348 Vertex 1402 -5.80873 10.2514 -0.090255 {normal=(0.886853 -0.117221 0.446935)} Vertex 1403 -5.78984 -23.8943 -0.507997 Vertex 1404 -5.78495 -24.2627 -0.299833 Vertex 1405 -5.78207 -32.217 -1.19807 {normal=(-0.247273 -0.105514 0.963184)} Vertex 1406 -5.77408 -37.8179 -5.31527 {normal=(-0.636501 -0.0646306 -0.768563)} Vertex 1407 -5.77229 -38.6939 -5.31538 {normal=(-0.656008 -0.00638433 -0.754727)} Vertex 1408 -5.77072 -24.1632 -0.545718 Vertex 1409 -5.75572 -45.271 4.57053 Vertex 1410 -5.75526 10.0795 -5.69875 Vertex 1411 -5.75195 10.6058 -3.85106 {normal=(0.920884 -0.0238566 -0.389106)} Vertex 1412 -5.74685 -44.949 -4.51751 Vertex 1413 -5.74652 -44.3227 -4.50789 Vertex 1414 -5.74572 15.0931 -1.76401 Vertex 1415 -5.73663 -26.6598 -0.434434 {normal=(-0.307296 0.0567199 0.949922)} Vertex 1416 -5.7354 -30.2473 -6.81719 {normal=(-0.10685 0.195397 -0.974886)} Vertex 1417 -5.7189 -26.275 -0.507952 Vertex 1418 -5.7043 -22.197 -6.8207 Vertex 1419 -5.70398 -44.99 -4.4998 Vertex 1420 -5.70241 10.0802 -1.16296 {normal=(0.946307 -0.313182 0.080127)} Vertex 1421 -5.69107 -3.7011 -0.608438 Vertex 1422 -5.68972 -25.6028 -0.487784 Vertex 1423 -5.68476 10.7311 -0.303523 {normal=(0.889011 0.160856 0.428702)} Vertex 1424 -5.67705 -23.8201 -6.41017 Vertex 1425 -5.6698 7.25433 -4.60571 Vertex 1426 -5.66964 -17.6304 -8.38756 Vertex 1427 -5.66652 -25.6295 -0.751366 Vertex 1428 -5.66641 -24.09 -6.37565 Vertex 1429 -5.66252 -25.998 -0.543273 Vertex 1430 -5.66176 10.2129 -2.69847 {normal=(0.946056 -0.305455 -0.108055)} Vertex 1431 -5.65774 -26.1975 -0.708506 Vertex 1432 -5.65755 -22.2346 -7.07236 Vertex 1433 -5.65666 -43.3196 4.47069 Vertex 1434 -5.65041 11.0944 -3.51062 {normal=(0.906677 0.237532 -0.348592)} Vertex 1435 -5.64741 -25.8985 -0.789087 Vertex 1436 -5.64026 -32.1419 -7.01627 {normal=(-0.148877 -0.21558 -0.96507)} Vertex 1437 -5.63194 -23.794 -6.67481 Vertex 1438 -5.63183 10.0996 -5.65648 {normal=(0.0733021 0.078643 -0.994204)} Vertex 1439 -5.62406 11.3731 -0.888613 {normal=(0.877444 0.346987 0.331198)} Vertex 1440 -5.62208 -13.4371 -5.64686 {normal=(-0.505 0.413124 -0.757829)} Vertex 1441 -5.61914 -24.1909 -6.61883 Vertex 1442 -5.61836 14.0195 0.14405 Vertex 1443 -5.61713 -42.3382 1.599 Vertex 1444 -5.60838 -25.5613 -6.18742 Vertex 1445 -5.60801 11.5428 -2.90787 {normal=(0.893036 0.370557 -0.255293)} Vertex 1446 -5.60349 8.57324 -5.4261 Vertex 1447 -5.60321 -42.0311 1.68165 Vertex 1448 -5.60027 -3.66995 -2.28193 Vertex 1449 -5.60027 -2.25195 -2.28191 Vertex 1450 -5.60027 -0.83395 -2.28189 Vertex 1451 -5.60027 0.584049 -2.28187 Vertex 1452 -5.59774 -25.8311 -6.15289 Vertex 1453 -5.59368 -15.6399 3.11395 {normal=(-0.129983 -0.014591 0.991409)} Vertex 1454 -5.5928 11.7038 -1.65043 {normal=(0.88201 0.454631 0.123971)} Vertex 1455 -5.59144 11.7182 -2.3525 {normal=(0.88886 0.453066 -0.0682547)} Vertex 1456 -5.58622 -41.8602 1.37018 {normal=(0.067965 0.828942 0.55519)} Vertex 1457 -5.57724 -45.027 4.68656 Vertex 1458 -5.57212 -40.4605 -5.47911 Vertex 1459 -5.56625 13.8445 -0.001265 Vertex 1460 -5.56611 -25.5356 -6.4468 Vertex 1461 -5.56186 5.38039 -3.25141 {normal=(-0.841365 -0.239766 -0.484372)} Vertex 1462 -5.56004 -44.3629 4.66877 {normal=(0.744197 0.0810641 0.663023)} Vertex 1463 -5.55324 -27.5357 -0.758933 Vertex 1464 -5.55268 -25.932 -6.39647 Vertex 1465 -5.55256 -22.2926 -0.319962 Vertex 1466 -5.55213 -3.67 1.18242 Vertex 1467 -5.55213 -2.252 1.18245 Vertex 1468 -5.55213 -0.833995 1.18246 Vertex 1469 -5.55213 0.584003 1.18249 Vertex 1470 -5.54637 7.27442 -4.56344 {normal=(-0.179281 -0.583562 -0.792031)} Vertex 1471 -5.54354 12.6985 1.06746 {normal=(-0.291077 0.583065 0.758492)} Vertex 1472 -5.53439 -27.4373 -5.9474 Vertex 1473 -5.53364 -27.4993 -1.0136 Vertex 1474 -5.52922 10.4657 -1.63571 {normal=(0.982114 -0.182892 0.0447415)} Vertex 1475 -5.5227 15.1033 -1.68382 Vertex 1476 -5.52261 -33.5257 -1.39886 {normal=(-0.231628 -0.305091 0.923725)} Vertex 1477 -5.50332 10.4921 -2.23541 {normal=(0.983496 -0.177279 -0.0361601)} Vertex 1478 -5.49323 -42.8654 2.55611 Vertex 1479 -5.49183 -27.4749 -6.19907 Vertex 1480 -5.48377 -42.6296 3.44 {normal=(0.530582 0.786827 0.315255)} Vertex 1481 -5.48006 8.59332 -5.38383 {normal=(0.0258946 -0.278492 -0.960089)} Vertex 1482 -5.4709 14.2604 0.28676 Vertex 1483 -5.4584 -41.3445 -5.64498 Vertex 1484 -5.44949 -43.2908 -5.88366 {normal=(-0.601404 -0.0309282 -0.798346)} Vertex 1485 -5.44897 -9.08938 3.26283 Vertex 1486 -5.39875 -9.56262 -4.59858 {normal=(-0.607815 0.218732 -0.763359)} Vertex 1487 -5.39807 -33.4598 -6.32609 {normal=(-0.15949 -0.655676 -0.738005)} Vertex 1488 -5.3977 11.4409 1.92598 {normal=(-0.368211 0.4784 0.797217)} Vertex 1489 -5.34342 -40.4779 -5.2375 Vertex 1490 -5.34099 -34.2971 -1.71518 Vertex 1491 -5.32684 -33.5901 -6.19562 Vertex 1492 -5.32534 14.7589 -1.74606 Vertex 1493 -5.31601 -42.6252 2.67321 Vertex 1494 -5.30159 -41.3699 0.564513 {normal=(-0.0404718 0.828331 0.558776)} Vertex 1495 -5.27109 -42.045 -5.7485 {normal=(-0.555708 0.0531386 -0.829678)} Vertex 1496 -5.27059 -45.271 3.60876 Vertex 1497 -5.26009 -34.2542 -5.12619 Vertex 1498 -5.25716 14.3528 0.296421 Vertex 1499 -5.25684 -7.49152 -4.12092 {normal=(-0.565728 0.245698 -0.787137)} Vertex 1500 -5.24866 -33.3726 -6.10603 Vertex 1501 -5.23547 -44.3783 -5.79089 {normal=(-0.603513 -0.0688046 -0.794379)} Vertex 1502 -5.23414 -45.027 -5.79309 Vertex 1503 -5.2297 -41.3618 -5.40337 Vertex 1504 -5.2152 12.9418 1.30627 Vertex 1505 -5.20691 3.27182 -3.51849 {normal=(-0.73283 0.180563 -0.656016)} Vertex 1506 -5.20261 2.03074 -3.85679 {normal=(-0.621437 0.0413723 -0.782371)} Vertex 1507 -5.19304 -33.9544 -6.04996 {normal=(-0.298407 -0.282916 -0.911544)} Vertex 1508 -5.18213 -15.4691 -6.98895 Vertex 1509 -5.18126 9.74168 2.96163 {normal=(-0.323321 0.474925 0.81848)} Vertex 1510 -5.17381 -11.3275 3.17279 {normal=(-0.256637 -0.0785189 0.963313)} Vertex 1511 -5.17206 12.7691 1.16771 Vertex 1512 -5.16693 -9.67127 -4.76261 {normal=(-0.635178 0.212444 -0.742575)} Vertex 1513 -5.16278 4.70925 -3.60492 {normal=(-0.693481 -0.431135 -0.577241)} Vertex 1514 -5.15434 7.39397 4.47908 {normal=(-0.317988 0.359678 0.87722)} Vertex 1515 -5.14865 1.51228 3.34183 {normal=(-0.290066 -0.315543 0.90349)} Vertex 1516 -5.14812 2.39902 3.53297 {normal=(-0.200896 -0.216941 0.955289)} Vertex 1517 -5.13382 -44.2869 2.7425 Vertex 1518 -5.13011 6.17703 4.85359 {normal=(-0.323825 0.0675048 0.943706)} Vertex 1519 -5.11843 -42.8077 1.82997 Vertex 1520 -5.11209 -44.9388 2.74304 Vertex 1521 -5.10928 -43.3669 2.73583 Vertex 1522 -5.10154 -45.2712 -5.67839 Vertex 1523 -5.08428 3.27382 -3.63027 {normal=(-0.729157 0.178379 -0.660689)} Vertex 1524 -5.07721 -44.3565 3.6494 {normal=(0.922146 0.0289147 0.385761)} Vertex 1525 -5.06929 14.0353 0.16341 Vertex 1526 -5.06679 -43.2985 3.65831 Vertex 1527 -5.06304 13.1813 1.4141 Vertex 1528 -5.06023 4.48478 -3.39564 Vertex 1529 -5.05968 1.12404 -3.91608 {normal=(-0.565329 -0.149123 -0.811274)} Vertex 1530 -5.05284 -40.8669 -0.040656 {normal=(-0.0342295 0.76759 0.640027)} Vertex 1531 -5.04323 -6.28307 2.68218 {normal=(-0.526422 0.211056 0.823611)} Vertex 1532 -5.04299 -45.0271 3.62325 Vertex 1533 -5.03416 -44.9304 2.82993 Vertex 1534 -5.03182 -45.271 2.82578 Vertex 1535 -5.02319 -13.1969 3.10061 {normal=(-0.113127 -0.0380971 0.99285)} Vertex 1536 -5.02191 5.24898 4.81932 {normal=(-0.309668 -0.270786 0.911472)} Vertex 1537 -5.01211 0.729243 3.07933 Vertex 1538 -4.99817 3.2824 -3.74281 {normal=(-0.674935 0.121065 -0.727878)} Vertex 1539 -4.98869 -9.67015 -5.00347 {normal=(-0.672671 0.183522 -0.716821)} Vertex 1540 -4.98695 13.9792 -4.02141 {normal=(-0.53026 0.467919 -0.707019)} Vertex 1541 -4.98507 3.41862 3.87127 {normal=(-0.221378 -0.248522 0.942989)} Vertex 1542 -4.98179 -7.53615 -4.24421 {normal=(-0.583435 0.263903 -0.768088)} Vertex 1543 -4.96212 -42.5194 1.60902 {normal=(0.831553 0.481169 0.277481)} Vertex 1544 -4.95323 -11.7906 -5.48958 {normal=(-0.56878 0.237885 -0.787337)} Vertex 1545 -4.94121 -42.5676 1.94707 Vertex 1546 -4.92916 -45.271 0.012773 Vertex 1547 -4.90062 12.2646 -5.24404 {normal=(-0.160071 0.407244 -0.899183)} Vertex 1548 -4.8932 0.896571 3.29041 Vertex 1549 -4.89038 4.48092 -3.52633 Vertex 1550 -4.88339 -35.0158 -0.892796 {normal=(-0.103064 -0.0993503 0.989701)} Vertex 1551 -4.86735 14.194 -4.08115 Vertex 1552 -4.86296 13.2774 1.37785 Vertex 1553 -4.85666 -43.3244 2.00333 Vertex 1554 -4.8524 1.59846 3.38413 Vertex 1555 -4.85155 2.48294 3.57381 Vertex 1556 -4.85129 4.58553 4.42604 {normal=(-0.252385 -0.654805 0.712413)} Vertex 1557 -4.84001 -44.2711 2.01426 Vertex 1558 -4.83678 3.46058 3.89169 Vertex 1559 -4.83434 -43.2387 2.8515 Vertex 1560 -4.8256 -3.67003 2.97433 Vertex 1561 -4.8256 -2.25203 2.97435 Vertex 1562 -4.82477 -44.2895 2.85553 Vertex 1563 -4.82231 -45.271 1.26514 Vertex 1564 -4.82201 4.43822 4.20956 Vertex 1565 -4.81891 -0.834026 2.97957 Vertex 1566 -4.81891 0.583972 2.97959 Vertex 1567 -4.81614 -44.9388 2.01289 Vertex 1568 -4.8129 -45.027 2.85613 Vertex 1569 -4.80725 11.7225 2.32642 Vertex 1570 -4.8025 -7.52484 -4.49775 {normal=(-0.649237 0.271932 -0.710313)} Vertex 1571 -4.79302 0.586182 -3.85386 Vertex 1572 -4.78895 4.49637 -3.69587 Vertex 1573 -4.77974 -44.4204 0.112964 {normal=(0.977231 -0.0920955 0.191149)} Vertex 1574 -4.77786 11.5497 2.19269 Vertex 1575 -4.7777 0.890581 3.55255 Vertex 1576 -4.77709 -37.8124 -1.1712 {normal=(-0.129176 -0.0555222 0.990066)} Vertex 1577 -4.7753 -38.6884 -1.17131 {normal=(-0.145463 0.0332023 0.988806)} Vertex 1578 -4.76989 -45.027 0.088799 Vertex 1579 -4.76249 -3.67002 2.46685 Vertex 1580 -4.75184 -6.32716 2.79893 Vertex 1581 -4.74967 3.41923 4.05976 {normal=(-0.727061 -0.0774096 0.682195)} Vertex 1582 -4.73212 -43.2792 1.476 {normal=(0.996897 0.0787102 0.000562743)} Vertex 1583 -4.73094 -40.3117 -0.582392 Vertex 1584 -4.72778 -44.9304 1.97401 Vertex 1585 -4.72543 -45.271 1.96986 Vertex 1586 -4.70385 -44.3783 1.44491 {normal=(0.993215 -0.000345332 -0.116295)} Vertex 1587 -4.70377 5.38122 -4.37494 {normal=(-0.63234 -0.325056 -0.703196)} Vertex 1588 -4.68918 13.0009 1.20876 Vertex 1589 -4.68699 -40.5613 -0.806952 Vertex 1590 -4.68298 -39.838 -1.11674 Vertex 1591 -4.67837 1.50848 3.71893 {normal=(-0.773506 -0.158611 0.613621)} Vertex 1592 -4.67733 2.40024 3.90997 {normal=(-0.771404 -0.099737 0.628481)} Vertex 1593 -4.66635 -26.8989 -0.309795 {normal=(0.153826 0.0149265 0.987985)} Vertex 1594 -4.66416 -35.0191 -6.12998 {normal=(-0.0437962 -0.12716 -0.990915)} Vertex 1595 -4.6581 -45.0271 1.4287 Vertex 1596 -4.65329 -41.4931 0.595577 {normal=(0.590252 0.513555 0.622787)} Vertex 1597 -4.64987 -26.399 -0.576924 Vertex 1598 -4.63903 -40.0876 -1.3413 Vertex 1599 -4.63256 11.9667 2.40584 Vertex 1600 -4.62103 14.3687 -3.97251 Vertex 1601 -4.62089 -45.271 -0.75666 Vertex 1602 -4.6084 -26.5058 -0.367619 Vertex 1603 -4.60536 -2.25202 2.72245 Vertex 1604 -4.60536 -0.834022 2.72247 Vertex 1605 -4.60536 0.583976 2.72249 Vertex 1606 -4.58554 -37.8152 -5.88243 {normal=(0.00777884 -0.0608838 -0.998115)} Vertex 1607 -4.58375 -38.6912 -5.88253 {normal=(0.0305187 0.0131984 -0.999447)} Vertex 1608 -4.58172 -43.1962 2.11899 Vertex 1609 -4.57663 -6.32902 3.04433 Vertex 1610 -4.54862 -33.7304 -6.32419 Vertex 1611 -4.5456 -40.072 -5.91457 Vertex 1612 -4.53481 -33.5226 -6.19712 Vertex 1613 -4.53096 -44.2737 2.12728 Vertex 1614 -4.51694 -45.027 2.12598 Vertex 1615 -4.50814 -40.1085 -5.58813 Vertex 1616 -4.50055 14.3583 -3.76364 {normal=(0.62001 0.784045 -0.0293387)} Vertex 1617 -4.47985 -43.2609 0.242264 {normal=(0.947994 -0.116773 0.296094)} Vertex 1618 -4.46877 12.058 2.31527 Vertex 1619 -4.467 -45.0273 -6.14099 Vertex 1620 -4.44992 -44.4206 -0.710606 {normal=(0.866145 -0.127529 0.483248)} Vertex 1621 -4.44434 -45.027 -0.723774 Vertex 1622 -4.4437 -45.2711 -5.97899 Vertex 1623 -4.44197 -40.9603 -5.99738 Vertex 1624 -4.44005 -41.2177 0.152154 {normal=(0.629049 0.442727 0.638975)} Vertex 1625 -4.43405 -3.68358 2.52432 Vertex 1626 -4.43305 -34.0951 -6.17119 {normal=(0.0483542 -0.231803 -0.97156)} Vertex 1627 -4.41288 -3.66993 -3.30975 Vertex 1628 -4.40451 -40.9968 -5.67094 Vertex 1629 -4.40082 -42.2893 0.277072 {normal=(0.913343 0.0347563 0.405705)} Vertex 1630 -4.38725 -0.833926 -3.77448 Vertex 1631 -4.38725 0.584073 -3.77446 Vertex 1632 -4.37255 -44.3802 -6.14642 Vertex 1633 -4.35581 -3.66993 -3.79357 Vertex 1634 -4.35581 -2.25193 -3.79355 Vertex 1635 -4.34243 -3.67003 2.86751 Vertex 1636 -4.33972 14.0406 -3.75157 Vertex 1637 -4.33952 -40.6304 -0.889129 Vertex 1638 -4.33316 -41.9992 -6.18445 Vertex 1639 -4.30907 11.8225 2.11012 Vertex 1640 -4.29247 -34.2941 -1.83348 Vertex 1641 -4.28453 -43.2549 -6.22179 Vertex 1642 -4.24468 -34.3057 -4.9717 Vertex 1643 -4.18597 -2.25193 -3.50615 Vertex 1644 -4.18597 -0.833929 -3.50613 Vertex 1645 -4.18597 0.584069 -3.50611 Vertex 1646 -4.12434 10.3749 -5.79659 {normal=(-0.106802 0.120784 -0.986917)} Vertex 1647 -4.10725 -3.71535 -3.40232 Vertex 1648 -4.10425 -40.5012 -0.68469 Vertex 1649 -4.10167 -40.0803 -1.4952 Vertex 1650 -4.09808 -43.3268 -0.650871 {normal=(0.867199 -0.169033 0.468395)} Vertex 1651 -4.06881 -27.5118 -5.72395 Vertex 1652 -4.02625 -27.5494 -5.97562 Vertex 1653 -3.99554 -30.3357 -6.55192 {normal=(0.429595 0.185367 -0.883791)} Vertex 1654 -3.96711 12.9869 -4.95245 {normal=(-0.225965 0.353935 -0.907563)} Vertex 1655 -3.96221 -42.0763 -0.571919 {normal=(0.882049 0.0116378 0.471014)} Vertex 1656 -3.96043 -37.8157 -1.41258 {normal=(0.497577 -0.0439861 0.866304)} Vertex 1657 -3.95864 -38.6917 -1.41269 {normal=(0.517444 0.0381519 0.854866)} Vertex 1658 -3.95429 -25.9126 -5.9099 Vertex 1659 -3.93498 -25.6428 -5.94127 Vertex 1660 -3.93069 -35.0198 -1.15539 {normal=(0.479427 -0.0766423 0.874229)} Vertex 1661 -3.91627 -26.0134 -6.15422 Vertex 1662 -3.90599 -33.5211 -1.25683 {normal=(0.304019 -0.343974 0.8884)} Vertex 1663 -3.90467 -3.66993 -3.61716 Vertex 1664 -3.88568 -25.6172 -6.19991 Vertex 1665 -3.87485 -27.3481 -0.748987 {normal=(0.452165 -0.047622 0.890662)} Vertex 1666 -3.8664 -39.9511 -1.29076 Vertex 1667 -3.86232 -32.2322 -6.74542 {normal=(0.424648 -0.148288 -0.893132)} Vertex 1668 -3.85659 -26.8085 -0.961159 Vertex 1669 -3.84974 -41.0249 -1.62188 Vertex 1670 -3.84438 9.77242 3.41274 Vertex 1671 -3.84228 9.94833 3.54526 Vertex 1672 -3.83364 13.0827 -4.93915 Vertex 1673 -3.83353 -33.539 -6.08826 {normal=(0.357653 -0.621057 -0.697404)} Vertex 1674 -3.83012 -24.1785 -6.11155 Vertex 1675 -3.8273 -32.2118 -1.24345 {normal=(0.321282 -0.0662715 0.944662)} Vertex 1676 -3.82627 -26.904 -0.758538 Vertex 1677 -3.81164 4.70619 -4.6926 {normal=(-0.468109 -0.429581 -0.772227)} Vertex 1678 -3.8108 -23.9087 -6.14291 Vertex 1679 -3.79003 -22.2879 -0.503097 Vertex 1680 -3.78988 -24.2794 -6.35547 Vertex 1681 -3.77203 -30.3158 -1.16317 {normal=(0.315367 -0.0458355 0.947862)} Vertex 1682 -3.76544 -13.7685 -6.78005 Vertex 1683 -3.75965 -23.8831 -6.40122 Vertex 1684 -3.72002 -23.8888 -0.712648 Vertex 1685 -3.71962 -45.0361 -2.35503 Vertex 1686 -3.71774 -40.0178 -5.11773 Vertex 1687 -3.70822 -24.1585 -0.747953 Vertex 1688 -3.70323 10.189 3.55257 Vertex 1689 -3.68882 4.7136 -4.75333 {normal=(-0.354503 -0.405132 -0.842731)} Vertex 1690 -3.67462 -22.311 -0.27351 Vertex 1691 -3.67398 -22.299 -6.45561 Vertex 1692 -3.67097 5.38223 -4.87526 {normal=(-0.372927 -0.223207 -0.900613)} Vertex 1693 -3.6505 8.03122 -5.81563 {normal=(-0.208433 -0.158141 -0.965167)} Vertex 1694 -3.6441 -25.6244 -0.939852 Vertex 1695 -3.63231 -25.8941 -0.975157 Vertex 1696 -3.62736 -22.3367 -6.70651 Vertex 1697 -3.61705 2.41446 -4.51005 Vertex 1698 -3.61548 3.46973 -4.56373 Vertex 1699 -3.61447 -40.8957 -1.41745 Vertex 1700 -3.6139 4.525 -4.61741 Vertex 1701 -3.60737 -23.8486 -0.474778 Vertex 1702 -3.60217 -40.4421 -2.18242 Vertex 1703 -3.59631 2.28685 4.8478 {normal=(-0.397747 -0.0529736 0.915965)} Vertex 1704 -3.59248 -21.6048 -7.39691 Vertex 1705 -3.59208 -33.5417 -5.98628 Vertex 1706 -3.57885 13.295 -4.76504 Vertex 1707 -3.57421 -40.9441 -5.20574 Vertex 1708 -3.56937 -44.3406 -2.3818 Vertex 1709 -3.56584 -34.2877 -2.43025 Vertex 1710 -3.5623 -27.495 -1.18471 Vertex 1711 -3.54276 -24.2452 -0.55738 Vertex 1712 -3.54125 -41.3936 -2.08358 Vertex 1713 -3.53528 10.2807 3.43794 Vertex 1714 -3.53395 19.9427 -0.846049 {normal=(-0.992636 0.0849501 -0.0863603)} Vertex 1715 -3.53257 19.9792 -0.681118 {normal=(-0.997572 0.0665736 -0.0204496)} Vertex 1716 -3.53173 19.9732 -0.529949 {normal=(-0.996668 0.0758053 0.0301127)} Vertex 1717 -3.53144 19.9245 -0.392541 {normal=(-0.987675 0.0665358 0.141672)} Vertex 1718 -3.52384 -25.9814 -0.749304 Vertex 1719 -3.52254 19.8646 -0.993864 {normal=(-0.987282 0.0532896 -0.149779)} Vertex 1720 -3.52162 1.25598 4.70198 {normal=(-0.404929 -0.281611 0.869901)} Vertex 1721 -3.50711 19.8414 -0.28179 {normal=(-0.957873 -0.0291975 0.285704)} Vertex 1722 -3.50641 19.8286 -0.459689 {normal=(-0.906751 -0.403103 -0.123738)} Vertex 1723 -3.50171 20.0627 -0.504071 {normal=(-0.757133 0.624662 0.191173)} Vertex 1724 -3.50083 20.0782 -0.680108 {normal=(-0.757356 0.648001 -0.0806646)} Vertex 1725 -3.50044 19.8507 -0.567278 {normal=(-0.899758 -0.432995 -0.0543168)} Vertex 1726 -3.49891 -34.0953 -5.99427 {normal=(0.373671 -0.229814 -0.898641)} Vertex 1727 -3.49834 19.7451 -1.12457 {normal=(-0.983655 -0.0192092 -0.179038)} Vertex 1728 -3.49668 -33.7243 -6.11202 Vertex 1729 -3.4966 19.8468 -0.68719 {normal=(-0.900532 -0.432085 0.0484179)} Vertex 1730 -3.49492 19.817 -0.819425 {normal=(-0.900894 -0.418348 0.115647)} Vertex 1731 -3.49356 19.7715 -0.370696 {normal=(-0.91541 -0.389251 -0.102511)} Vertex 1732 -3.49287 -45.271 -2.27047 Vertex 1733 -3.48872 19.9889 -0.336631 {normal=(-0.71298 0.549093 0.436069)} Vertex 1734 -3.4861 20.0354 -0.86474 {normal=(-0.695365 0.652343 -0.301524)} Vertex 1735 -3.48585 19.7593 -0.933209 {normal=(-0.902755 -0.398045 0.163077)} Vertex 1736 -3.48418 -25.5847 -0.732716 Vertex 1737 -3.48275 -44.7921 -2.35031 Vertex 1738 -3.47549 -37.8152 -5.27795 {normal=(0.605878 -0.0765463 -0.791866)} Vertex 1739 -3.4737 -38.6912 -5.27822 {normal=(0.667697 -0.0104117 -0.744361)} Vertex 1740 -3.47123 19.9464 -1.03603 {normal=(-0.682987 0.583848 -0.438919)} Vertex 1741 -3.4695 -6.42517 3.66297 {normal=(-0.138658 0.0758706 0.98743)} Vertex 1742 -3.46941 19.6737 -1.02854 {normal=(-0.919439 -0.332899 0.209311)} Vertex 1743 -3.46918 1.49115 -4.4775 Vertex 1744 -3.46772 19.59 -1.21309 {normal=(-0.97883 -0.0987657 -0.17927)} Vertex 1745 -3.46189 19.6792 -0.300301 {normal=(-0.921972 -0.377453 -0.0865866)} Vertex 1746 -3.45873 19.7236 -0.197696 {normal=(-0.928564 -0.142528 0.342718)} Vertex 1747 -3.4583 19.8838 -0.206647 {normal=(-0.698725 0.363645 0.616073)} Vertex 1748 -3.45685 -12.2219 -6.38517 Vertex 1749 -3.4566 -27.5189 -0.950573 Vertex 1750 -3.45625 19.8111 -1.19399 {normal=(-0.733706 0.393646 -0.553822)} Vertex 1751 -3.45601 3.40753 4.78684 {normal=(-0.293892 0.0412806 0.954947)} Vertex 1752 -3.45335 10.0753 2.95122 Vertex 1753 -3.44734 19.5442 -1.09907 {normal=(-0.942771 -0.245474 0.225665)} Vertex 1754 -3.44686 19.7339 -0.431751 {normal=(-0.635705 -0.653927 -0.410194)} Vertex 1755 -3.44417 -21.5941 -7.10822 Vertex 1756 -3.43405 19.77 -0.584154 {normal=(-0.597975 -0.800799 -0.0338753)} Vertex 1757 -3.43376 19.762 -0.68321 {normal=(-0.626967 -0.769266 0.123054)} Vertex 1758 -3.43317 19.7583 -0.498676 {normal=(-0.574059 -0.781365 -0.244796)} Vertex 1759 -3.43252 19.6357 -1.2974 {normal=(-0.771437 0.144874 -0.619594)} Vertex 1760 -3.43229 19.7344 -0.795844 {normal=(-0.659197 -0.710847 0.245269)} Vertex 1761 -3.43067 19.3994 -1.25943 {normal=(-0.976682 -0.141877 -0.161129)} Vertex 1762 -3.42505 -39.9594 -5.26247 Vertex 1763 -3.42503 19.6876 -0.886943 {normal=(-0.686544 -0.627676 0.366988)} Vertex 1764 -3.42428 19.5706 -0.268911 {normal=(-0.930918 -0.332046 -0.152109)} Vertex 1765 -3.42355 19.6544 -0.368205 {normal=(-0.674169 -0.509963 -0.534261)} Vertex 1766 -3.41963 19.3706 -1.14479 {normal=(-0.961973 -0.185942 0.200086)} Vertex 1767 -3.41702 19.5928 -0.157033 {normal=(-0.92555 -0.212314 0.313497)} Vertex 1768 -3.41337 -34.3175 -4.1362 Vertex 1769 -3.41196 19.6215 -0.956503 {normal=(-0.726723 -0.479374 0.492011)} Vertex 1770 -3.41043 19.7473 -0.114119 {normal=(-0.71638 0.129634 0.685562)} Vertex 1771 -3.41036 20.1192 -0.489645 {normal=(-0.634631 0.721838 0.276034)} Vertex 1772 -3.40917 0.827907 -4.44123 Vertex 1773 -3.40233 20.1812 -0.468777 {normal=(-0.993599 0.0990535 0.0543108)} Vertex 1774 -3.40174 -41.9441 -2.39168 Vertex 1775 -3.40139 20.1436 -0.684159 {normal=(-0.49812 0.845768 -0.191189)} Vertex 1776 -3.40004 19.4204 -1.34626 {normal=(-0.800471 -0.0350459 -0.598346)} Vertex 1777 -3.39963 3.4923 -4.51652 Vertex 1778 -3.39909 19.5103 -1.01404 {normal=(-0.776142 -0.302714 0.553144)} Vertex 1779 -3.39569 19.1802 -1.25948 {normal=(-0.982058 -0.152694 -0.110663)} Vertex 1780 -3.39269 -43.2833 -2.35691 Vertex 1781 -3.38825 -19.9735 -8.16416 Vertex 1782 -3.38642 19.354 -1.05955 {normal=(-0.833157 -0.19277 0.518353)} Vertex 1783 -3.38636 19.1789 -1.15149 {normal=(-0.965634 -0.149771 0.212414)} Vertex 1784 -3.38301 20.5772 0.01634 {normal=(-0.994288 0.0881931 0.0601073)} Vertex 1785 -3.38231 3.46415 -4.7463 Vertex 1786 -3.38198 19.449 -0.159801 {normal=(-0.930702 -0.279784 0.235617)} Vertex 1787 -3.38072 19.4455 -0.276528 {normal=(-0.927628 -0.27981 -0.247413)} Vertex 1788 -3.3793 20.1695 -0.505619 {normal=(-0.938877 0.307413 -0.154941)} Vertex 1789 -3.37826 20.0217 -0.291958 {normal=(-0.554793 0.6231 0.551318)} Vertex 1790 -3.37617 19.5784 -0.362015 {normal=(-0.66679 -0.347089 -0.659486)} Vertex 1791 -3.37575 19.3079 -0.838801 {normal=(-0.999846 -0.0174366 0.00177258)} Vertex 1792 -3.37404 13.2127 -4.47829 {normal=(0.532135 0.841598 0.0924428)} Vertex 1793 -3.3707 19.6031 -0.069744 {normal=(-0.728112 -0.0790573 0.680884)} Vertex 1794 -3.36974 20.6943 -0.262411 {normal=(-0.986919 0.160216 0.0179343)} Vertex 1795 -3.36948 -7.48904 -5.39941 {normal=(-0.330109 0.283453 -0.900379)} Vertex 1796 -3.36882 19.1776 -1.34473 {normal=(-0.834859 -0.145389 -0.530917)} Vertex 1797 -3.36829 19.2524 -0.858272 {normal=(-0.976426 -0.193505 0.0956439)} Vertex 1798 -3.3669 -40.3129 -1.97798 Vertex 1799 -3.36621 19.184 -0.896428 {normal=(-0.973625 -0.18743 0.130093)} Vertex 1800 -3.36593 20.3819 0.265248 {normal=(-0.993571 -0.00433062 0.113128)} Vertex 1801 -3.36424 4.69447 4.91997 {normal=(-0.0754536 -0.536852 0.840296)} Vertex 1802 -3.36297 19.4072 -0.77675 {normal=(-0.988783 0.147469 0.0236708)} Vertex 1803 -3.36276 18.9325 -1.21324 {normal=(-0.985397 -0.167869 -0.0285024)} Vertex 1804 -3.36247 20.2371 -0.514588 {normal=(-0.65451 0.732591 -0.186889)} Vertex 1805 -3.36127 19.3175 -0.89228 {normal=(-0.911642 0.157955 -0.379419)} Vertex 1806 -3.36124 19.1818 -1.07244 {normal=(-0.859337 -0.136359 0.492896)} Vertex 1807 -3.36062 13.1817 -4.29178 Vertex 1808 -3.35924 -37.8189 -1.99606 {normal=(0.821033 -0.0527624 0.568437)} Vertex 1809 -3.35745 -38.6949 -1.99616 {normal=(0.850261 0.0157169 0.526126)} Vertex 1810 -3.35671 10.0236 3.24507 Vertex 1811 -3.35512 20.7659 -0.57664 {normal=(-0.98223 0.187625 -0.00459975)} Vertex 1812 -3.35501 19.1837 -0.923355 {normal=(-0.884989 -0.0369824 -0.46414)} Vertex 1813 -3.35486 19.3589 -0.73084 {normal=(-0.855986 -0.255897 0.449227)} Vertex 1814 -3.3531 0.63495 4.33226 Vertex 1815 -3.35137 20.0952 -0.875498 {normal=(-0.349969 0.848064 -0.397881)} Vertex 1816 -3.34826 19.4675 -0.724485 {normal=(-0.984161 0.142428 0.105549)} Vertex 1817 -3.34802 20.4945 -0.568 {normal=(-0.973034 -0.230492 -0.00883252)} Vertex 1818 -3.34778 20.4735 -0.320456 {normal=(-0.94927 -0.310136 -0.0519901)} Vertex 1819 -3.34754 18.9691 -1.11917 {normal=(-0.954618 -0.119977 0.2726)} Vertex 1820 -3.3474 19.3034 -0.75031 {normal=(-0.69045 -0.454704 0.562604)} Vertex 1821 -3.34714 19.8988 -0.145266 {normal=(-0.5015 0.457412 0.734351)} Vertex 1822 -3.34708 19.4244 -0.834293 {normal=(-0.919787 0.275994 -0.278961)} Vertex 1823 -3.34608 19.6949 -0.775307 {normal=(-0.612029 -0.732986 0.296904)} Vertex 1824 -3.34418 19.1598 0.524635 {normal=(-0.998928 -0.0077284 -0.0456449)} Vertex 1825 -3.34404 19.7249 -0.669176 {normal=(-0.562394 -0.81075 0.162471)} Vertex 1826 -3.34387 19.3142 -0.1896 {normal=(-0.933666 -0.3292 0.14105)} Vertex 1827 -3.34313 19.8717 -1.23681 {normal=(-0.324442 0.630687 -0.704962)} Vertex 1828 -3.34174 19.6814 -1.352 {normal=(-0.292282 0.314504 -0.903138)} Vertex 1829 -3.34076 20.4686 -0.848672 {normal=(-0.985127 -0.169004 -0.0310152)} Vertex 1830 -3.34006 19.6494 -0.855067 {normal=(-0.693294 -0.600019 0.39915)} Vertex 1831 -3.34003 20.4054 -0.106043 {normal=(-0.922055 -0.359743 -0.142825)} Vertex 1832 -3.33952 20.673 0.089084 {normal=(-0.648137 0.658283 0.382859)} Vertex 1833 -3.33944 20.2253 -0.55143 {normal=(-0.503002 0.797439 -0.333288)} Vertex 1834 -3.33915 20.792 -0.926346 {normal=(-0.978715 0.182322 -0.0942142)} Vertex 1835 -3.33912 19.4511 -0.073519 {normal=(-0.715281 -0.251228 0.652117)} Vertex 1836 -3.33906 19.0298 -0.902933 {normal=(-0.757622 -0.518586 0.396329)} Vertex 1837 -3.33883 18.9074 -1.29281 {normal=(-0.853173 -0.243691 -0.461205)} Vertex 1838 -3.33861 19.426 -0.677616 {normal=(-0.87539 -0.177763 0.449548)} Vertex 1839 -3.33803 19.3354 -0.305583 {normal=(-0.922645 -0.235294 -0.305554)} Vertex 1840 -3.33765 20.0603 -0.292809 {normal=(-0.667766 0.53437 0.518206)} Vertex 1841 -3.3358 19.3792 0.541624 {normal=(-0.99932 0.0364207 0.00570827)} Vertex 1842 -3.33556 19.5091 -0.782048 {normal=(-0.953523 0.23882 -0.183734)} Vertex 1843 -3.3355 18.998 0.562747 {normal=(-0.992845 -0.114292 -0.0345723)} Vertex 1844 -3.33314 19.185 -0.854631 {normal=(-0.574957 -0.480361 0.662328)} Vertex 1845 -3.33302 19.4688 -0.364806 {normal=(-0.698821 -0.18489 -0.690988)} Vertex 1846 -3.33259 19.7311 -0.580576 {normal=(-0.557081 -0.830076 0.0252025)} Vertex 1847 -3.33195 20.0045 -1.05971 {normal=(-0.29298 0.795869 -0.529863)} Vertex 1848 -3.33105 19.1166 -0.892787 {normal=(-0.3462 -0.227589 0.910137)} Vertex 1849 -3.33103 19.3496 -1.0037 {normal=(-0.874757 -0.119286 0.469651)} Vertex 1850 -3.33037 7.39789 4.98044 {normal=(-0.0995418 0.340179 0.935077)} Vertex 1851 -3.33005 19.538 -0.676623 {normal=(-0.97611 0.125504 0.177367)} Vertex 1852 -3.32832 19.0231 -0.92752 {normal=(-0.903868 -0.368527 -0.217278)} Vertex 1853 -3.32775 19.4336 -1.40529 {normal=(-0.264081 0.0767597 -0.961441)} Vertex 1854 -3.3267 19.5716 -0.735543 {normal=(-0.979211 0.189253 -0.0730033)} Vertex 1855 -3.32598 19.5884 -0.908457 {normal=(-0.779913 -0.406131 0.476228)} Vertex 1856 -3.32496 18.7289 -1.14703 {normal=(-0.977085 -0.209932 0.0351336)} Vertex 1857 -3.32357 18.9938 -1.0527 {normal=(-0.857503 -0.0854242 0.507338)} Vertex 1858 -3.32297 19.4885 -0.958001 {normal=(-0.834322 -0.203072 0.512512)} Vertex 1859 -3.32271 20.279 0.053825 {normal=(-0.919863 -0.318918 -0.228348)} Vertex 1860 -3.32264 19.3375 -0.947944 {normal=(-0.982833 0.0912405 -0.160359)} Vertex 1861 -3.3224 19.6096 0.561051 {normal=(-0.997414 0.0435909 0.0571428)} Vertex 1862 -3.32032 19.189 -1.02231 {normal=(-0.910729 -0.119098 0.39546)} Vertex 1863 -3.32008 -35.0194 -5.7129 {normal=(0.519016 -0.160102 -0.839637)} Vertex 1864 -3.31995 20.4445 0.386052 {normal=(-0.682521 0.484748 0.546977)} Vertex 1865 -3.31907 19.6195 -0.689574 {normal=(-0.983239 0.177323 0.0424102)} Vertex 1866 -3.3185 20.1085 0.484315 {normal=(-0.990291 -0.0165515 0.138022)} Vertex 1867 -3.31824 19.1896 -0.972614 {normal=(-0.960627 -0.0678471 -0.26943)} Vertex 1868 -3.31734 19.51 -0.62784 {normal=(-0.897047 -0.0438864 0.439751)} Vertex 1869 -3.31699 19.7504 -0.049569 {normal=(-0.472796 0.263566 0.840831)} Vertex 1870 -3.31649 20.8115 -0.223744 {normal=(-0.606589 0.761702 0.227728)} Vertex 1871 -3.31571 4.52821 4.72588 Vertex 1872 -3.31542 19.6863 -0.449782 {normal=(-0.52819 -0.654507 -0.540958)} Vertex 1873 -3.31291 20.1997 -0.406052 {normal=(-0.514252 0.726416 0.455921)} Vertex 1874 -3.3129 19.1524 0.705567 {normal=(-0.821715 0.0563601 0.567104)} Vertex 1875 -3.31172 19.7136 -0.509505 {normal=(-0.582015 -0.796591 -0.163405)} Vertex 1876 -3.31117 19.6079 -0.634217 {normal=(-0.958764 0.113873 0.260395)} Vertex 1877 -3.31047 -45.271 -5.4912 Vertex 1878 -3.31011 20.3775 -1.12855 {normal=(-0.986586 -0.126983 -0.102582)} Vertex 1879 -3.30975 18.8939 0.655959 {normal=(-0.987213 -0.150554 0.0523885)} Vertex 1880 -3.30904 -45.0363 -3.47801 Vertex 1881 -3.30747 19.6573 -0.759032 {normal=(-0.954562 -0.269033 0.128188)} Vertex 1882 -3.30729 19.6107 -0.8046 {normal=(-0.989379 -0.13392 0.0565127)} Vertex 1883 -3.30647 18.7891 -1.06206 {normal=(-0.942396 -0.0945195 0.320869)} Vertex 1884 -3.30642 19.3036 -0.108023 {normal=(-0.69721 -0.381042 0.607212)} Vertex 1885 -3.30575 19.1711 -1.40725 {normal=(-0.295686 -0.109625 -0.948974)} Vertex 1886 -3.30563 19.4598 -0.898085 {normal=(-0.990377 0.123133 -0.0631752)} Vertex 1887 -3.30403 17.7149 0.266997 {normal=(-0.896527 -0.280128 -0.343172)} Vertex 1888 -3.30399 19.8511 0.582915 {normal=(-0.991342 0.0295807 0.127929)} Vertex 1889 -3.30381 19.0042 0.752311 {normal=(-0.838543 0.158158 0.521375)} Vertex 1890 -3.30368 19.6885 -0.656154 {normal=(-0.926331 -0.344262 0.152953)} Vertex 1891 -3.30288 18.8933 -0.894838 {normal=(-0.991976 -0.0515476 0.115436)} Vertex 1892 -3.30268 19.1884 -0.246428 {normal=(-0.933549 -0.358379 0.00718182)} Vertex 1893 -3.30051 19.5509 -0.850304 {normal=(-0.999903 -0.0101118 -0.0095438)} Vertex 1894 -3.29958 18.6893 -1.22236 {normal=(-0.830502 -0.374517 -0.412315)} Vertex 1895 -3.29622 17.7784 0.390975 {normal=(-0.982857 -0.0866781 0.162723)} Vertex 1896 -3.2962 19.2402 -0.356078 {normal=(-0.908307 -0.22073 -0.355326)} Vertex 1897 -3.29581 20.0943 0.159149 {normal=(-0.944419 -0.209431 -0.253399)} Vertex 1898 -3.29565 20.9068 -0.567151 {normal=(-0.599833 0.790372 0.124552)} Vertex 1899 -3.29538 19.358 0.730354 {normal=(-0.762307 -0.00679753 0.647179)} Vertex 1900 -3.29496 18.8487 -1.02179 {normal=(-0.863538 -0.0264199 0.503591)} Vertex 1901 -3.29305 -28.3492 -1.17067 {normal=(0.471589 -0.0736988 0.878733)} Vertex 1902 -3.29278 19.5869 -0.580943 {normal=(-0.892938 0.0172774 0.449848)} Vertex 1903 -3.29243 19.0163 -0.9721 {normal=(-0.943519 -0.178239 -0.27929)} Vertex 1904 -3.29215 -9.32543 3.74982 {normal=(-0.043362 -0.0554727 0.997518)} Vertex 1905 -3.29163 19.6771 -0.597264 {normal=(-0.922296 -0.319576 0.21735)} Vertex 1906 -3.29141 19.3723 -0.390593 {normal=(-0.734383 -0.0403898 -0.677533)} Vertex 1907 -3.29085 19.0065 -1.01382 {normal=(-0.930237 -0.110477 0.349934)} Vertex 1908 -3.29058 -9.97451 -6.16875 {normal=(-0.248293 0.164952 -0.954537)} Vertex 1909 -3.28659 19.2894 -0.733335 {normal=(-0.334136 -0.638492 0.693311)} Vertex 1910 -3.28534 19.6015 -0.007041 {normal=(-0.489027 0.00735675 0.872238)} Vertex 1911 -3.28301 20.7208 -1.26632 {normal=(-0.963939 0.125512 -0.234668)} Vertex 1912 -3.28227 18.5694 -1.06084 {normal=(-0.979474 -0.198014 0.0376939)} Vertex 1913 -3.28199 19.3934 -0.621834 {normal=(-0.639855 -0.459789 0.615776)} Vertex 1914 -3.28152 -40.8857 -5.35049 Vertex 1915 -3.27945 20.2049 -0.651923 {normal=(-0.289167 0.904059 -0.314737)} Vertex 1916 -3.27872 18.7942 -0.825307 {normal=(-0.980487 -0.0122725 0.196201)} Vertex 1917 -3.27859 19.8951 0.213979 {normal=(-0.959947 -0.0871654 -0.266279)} Vertex 1918 -3.27743 17.924 0.466778 {normal=(-0.992139 0.00665749 0.124962)} Vertex 1919 -3.27702 20.959 -0.941135 {normal=(-0.676757 0.734943 0.0431068)} Vertex 1920 -3.27602 18.737 0.749067 {normal=(-0.986503 -0.13495 0.0927429)} Vertex 1921 -3.27573 18.8938 -1.35787 {normal=(-0.329079 -0.269036 -0.905167)} Vertex 1922 -3.27528 -27.7529 -1.31757 Vertex 1923 -3.27405 20.3417 -0.560044 {normal=(-0.64559 -0.759059 0.0839287)} Vertex 1924 -3.27332 19.4848 -0.570497 {normal=(-0.740459 -0.263975 0.618092)} Vertex 1925 -3.2727 19.6163 -0.436342 {normal=(-0.608236 -0.374949 -0.699615)} Vertex 1926 -3.27259 19.1606 -0.173256 {normal=(-0.711121 -0.483079 0.510824)} Vertex 1927 -3.27233 19.1711 -0.837656 {normal=(-0.256974 -0.556214 0.79031)} Vertex 1928 -3.27175 20.2887 -0.800189 {normal=(-0.696788 -0.696139 0.172852)} Vertex 1929 -3.27163 19.5872 0.758989 {normal=(-0.733782 -0.00733129 0.679345)} Vertex 1930 -3.27103 19.6813 0.218313 {normal=(-0.941463 -0.0223088 -0.336379)} Vertex 1931 -3.27049 18.8595 -0.944758 {normal=(-0.96294 -0.200686 -0.1802)} Vertex 1932 -3.26852 19.5575 -0.540063 {normal=(-0.800047 -0.123673 0.587052)} Vertex 1933 -3.26813 18.9132 0.870588 {normal=(-0.732271 0.360244 0.57793)} Vertex 1934 -3.26718 19.4405 0.222538 {normal=(-0.915517 -0.00838818 -0.402192)} Vertex 1935 -3.26702 19.1725 0.226651 {normal=(-0.898647 -0.0347634 -0.437294)} Vertex 1936 -3.26634 18.8642 -0.988546 {normal=(-0.944258 -0.0533093 0.324861)} Vertex 1937 -3.26608 20.3483 -0.347785 {normal=(-0.58433 -0.809537 -0.0566422)} Vertex 1938 -3.26492 19.6565 -0.536926 {normal=(-0.905033 -0.37227 0.205744)} Vertex 1939 -3.2634 18.9747 0.248166 {normal=(-0.906954 -0.116445 -0.404815)} Vertex 1940 -3.26315 18.6391 -0.98018 {normal=(-0.966564 -0.0534938 0.250783)} Vertex 1941 -3.26264 18.4369 -0.997359 {normal=(-0.986043 -0.150952 -0.070237)} Vertex 1942 -3.26057 18.148 -0.76292 {normal=(-0.984672 -0.055863 -0.16523)} Vertex 1943 -3.26029 18.0805 -0.543494 {normal=(-0.996269 -0.048256 0.0715443)} Vertex 1944 -3.25985 20.1018 -0.226386 {normal=(-0.622544 0.580378 0.524976)} Vertex 1945 -3.25914 17.9817 0.180115 {normal=(-0.875259 0.0267218 -0.482916)} Vertex 1946 -3.25808 18.3157 -0.896969 {normal=(-0.982367 -0.140312 -0.123565)} Vertex 1947 -3.25803 18.0291 -0.702485 {normal=(-0.953064 -0.272284 -0.1324)} Vertex 1948 -3.25776 20.1259 0.66716 {normal=(-0.677261 0.344446 0.650134)} Vertex 1949 -3.25743 18.1049 0.606018 {normal=(-0.992582 0.00410755 0.121506)} Vertex 1950 -3.25733 -44.3833 -2.26356 Vertex 1951 -3.25732 -3.67004 3.46626 Vertex 1952 -3.2563 18.8468 0.287083 {normal=(-0.937123 -0.162411 -0.308907)} Vertex 1953 -3.25607 20.2211 -1.40764 {normal=(-0.976019 -0.0896867 -0.198352)} Vertex 1954 -3.256 -45.027 -2.26575 Vertex 1955 -3.25578 19.092 -0.303671 {normal=(-0.886994 -0.439544 -0.141572)} Vertex 1956 -3.25524 18.6909 -0.749573 {normal=(-0.97104 0.00573921 0.238848)} Vertex 1957 -3.25498 20.1885 -1.04436 {normal=(-0.737754 -0.636647 0.224499)} Vertex 1958 -3.2546 18.2329 -0.732831 {normal=(-0.998207 0.0438651 -0.040733)} Vertex 1959 -3.25452 19.0126 -0.883095 {normal=(-0.413698 0.0538465 0.90882)} Vertex 1960 -3.25432 18.1654 -0.513402 {normal=(-0.985181 0.085452 0.148714)} Vertex 1961 -3.25322 -34.289 -3.32258 Vertex 1962 -3.25278 18.3215 -0.844462 {normal=(-0.999588 -0.00969707 -0.0269972)} Vertex 1963 -3.25243 18.7192 -0.890591 {normal=(-0.988207 -0.150252 -0.0295298)} Vertex 1964 -3.25221 -27.8381 -1.14416 Vertex 1965 -3.25217 19.4519 -0.01768 {normal=(-0.519131 -0.208907 0.828771)} Vertex 1966 -3.2521 19.3208 -0.677197 {normal=(-0.446558 -0.67885 0.582879)} Vertex 1967 -3.25136 19.289 -0.439375 {normal=(-0.770243 0.0366267 -0.636698)} Vertex 1968 -3.25132 18.7033 -0.94206 {normal=(-0.978549 -0.0575373 0.197817)} Vertex 1969 -3.25106 18.5234 -1.13337 {normal=(-0.796331 -0.430959 -0.424419)} Vertex 1970 -3.25101 19.8722 -1.26568 {normal=(0.183716 0.607058 -0.773129)} Vertex 1971 -3.25073 19.1611 -0.407207 {normal=(-0.880416 -0.273269 -0.387546)} Vertex 1972 -3.25061 17.6113 0.31685 {normal=(-0.659247 -0.748961 -0.0667141)} Vertex 1973 -3.24785 20.3084 -0.163413 {normal=(-0.524182 -0.793402 -0.30943)} Vertex 1974 -3.2475 19.067 -0.231317 {normal=(-0.706986 -0.614641 0.349839)} Vertex 1975 -3.24729 18.9352 -0.847878 {normal=(-0.596029 0.368507 0.713409)} Vertex 1976 -3.24696 18.027 -0.46577 {normal=(-0.959427 -0.193124 0.205432)} Vertex 1977 -3.24692 18.7059 0.331665 {normal=(-0.963056 -0.145074 -0.226883)} Vertex 1978 -3.24686 19.0948 -0.870731 {normal=(-0.253943 -0.2811 0.925471)} Vertex 1979 -3.24669 18.3338 -0.761522 {normal=(-0.994795 0.0802029 0.0628556)} Vertex 1980 -3.24656 -21.4863 0.859684 {normal=(0.336975 -0.677849 0.653428)} Vertex 1981 -3.24609 18.0934 0.211268 {normal=(-0.936764 0.107244 -0.333124)} Vertex 1982 -3.24469 17.9756 -0.624762 {normal=(-0.885684 -0.463422 -0.0283626)} Vertex 1983 -3.24321 18.5113 -0.918858 {normal=(-0.987964 0.0127638 0.154155)} Vertex 1984 -3.24165 19.8402 0.791473 {normal=(-0.667571 0.117139 0.735274)} Vertex 1985 -3.24146 18.46 -0.787334 {normal=(-0.998077 0.0470109 0.0404085)} Vertex 1986 -3.2411 17.6776 0.455791 {normal=(-0.688777 -0.575187 0.4413)} Vertex 1987 -3.24078 18.6121 -0.823511 {normal=(-0.995182 -0.0935663 0.0292885)} Vertex 1988 -3.23893 18.2522 0.72887 {normal=(-0.991185 -0.00468414 0.132402)} Vertex 1989 -3.23886 19.5187 -0.424636 {normal=(-0.686919 -0.177694 -0.704675)} Vertex 1990 -3.23792 18.517 -0.866352 {normal=(-0.998149 0.013861 0.0592173)} Vertex 1991 -3.23756 18.2067 0.261209 {normal=(-0.96775 0.133415 -0.213683)} Vertex 1992 -3.23752 18.4455 -0.722854 {normal=(-0.995334 0.0413265 0.0871968)} Vertex 1993 -3.23657 19.6928 -1.34058 {normal=(0.297805 0.307766 -0.903655)} Vertex 1994 -3.2365 19.6273 -0.492515 {normal=(-0.924326 -0.38099 -0.0216394)} Vertex 1995 -3.23592 12.9219 -5.0927 Vertex 1996 -3.23554 18.5382 -0.743518 {normal=(-0.998089 -0.0321058 0.0528031)} Vertex 1997 -3.23526 18.5521 0.381914 {normal=(-0.984546 -0.088209 -0.151292)} Vertex 1998 -3.23431 18.5274 0.842066 {normal=(-0.984929 -0.0997582 0.141292)} Vertex 1999 -3.23413 18.3686 -0.582123 {normal=(-0.978538 0.151492 0.139688)} Vertex 2000 -3.23318 -20.0215 1.78738 {normal=(0.392397 -0.394878 0.83072)} Vertex 2001 -3.23244 18.5834 -0.667633 {normal=(-0.958699 0.0612747 0.277744)} Vertex 2002 -3.23233 18.3163 0.316394 {normal=(-0.97988 0.112179 -0.16508)} Vertex 2003 -3.23115 19.4294 -1.38958 {normal=(0.37578 0.103865 -0.92087)} Vertex 2004 -3.23082 18.1486 -0.399648 {normal=(-0.92697 0.0974786 0.362248)} Vertex 2005 -3.2304 18.4222 0.376823 {normal=(-0.992124 0.0295003 -0.121734)} Vertex 2006 -3.23032 18.6704 -1.28805 {normal=(-0.311845 -0.430206 -0.847157)} Vertex 2007 -3.2301 20.2183 -0.046999 {normal=(-0.500949 -0.587783 -0.635264)} Vertex 2008 -3.22858 20.1523 -0.853471 {normal=(-0.283042 0.866354 -0.411483)} Vertex 2009 -3.22837 18.4427 -0.629277 {normal=(-0.981416 0.126147 0.144603)} Vertex 2010 -3.22673 20.0038 -1.07902 {normal=(-0.0347421 0.757924 -0.651417)} Vertex 2011 -3.22661 17.9887 -0.775618 {normal=(-0.843284 -0.382073 -0.37801)} Vertex 2012 -3.2257 19.3037 -0.060853 {normal=(-0.564332 -0.344163 0.750387)} Vertex 2013 -3.22517 18.8626 -0.765079 {normal=(-0.691016 0.431803 0.579692)} Vertex 2014 -3.22462 18.3757 -1.03901 {normal=(-0.783511 -0.400263 -0.475289)} Vertex 2015 -3.22407 -41.3635 -1.97742 Vertex 2016 -3.22373 20.0411 -1.29254 {normal=(-0.803031 -0.531789 0.268966)} Vertex 2017 -3.22348 18.5006 -0.627533 {normal=(-0.963942 0.117159 0.238933)} Vertex 2018 -3.22338 17.8191 0.617218 {normal=(-0.727369 -0.424328 0.539334)} Vertex 2019 -3.22269 6.2201 5.13146 {normal=(-0.0423583 0.0509262 0.997804)} Vertex 2020 -3.22244 -19.9758 -7.85713 Vertex 2021 -3.22195 18.3658 0.835335 {normal=(-0.984082 -0.061239 0.166832)} Vertex 2022 -3.22156 18.7472 0.985109 {normal=(-0.733411 0.193771 0.651584)} Vertex 2023 -3.22092 18.1171 -0.85148 {normal=(-0.854749 -0.263137 -0.447396)} Vertex 2024 -3.22026 18.2461 -0.939277 {normal=(-0.835775 -0.34574 -0.426549)} Vertex 2025 -3.21729 -41.1654 -3.02543 Vertex 2026 -3.21461 19.1638 -1.3917 {normal=(0.387169 -0.0452872 -0.920896)} Vertex 2027 -3.21291 19.9002 -0.072314 {normal=(-0.458015 0.344923 0.819299)} Vertex 2028 -3.21285 20.078 0.001454 {normal=(-0.483853 -0.313118 -0.817217)} Vertex 2029 -3.21064 18.3519 -0.468369 {normal=(-0.932901 0.188248 0.307016)} Vertex 2030 -3.20956 20.6929 0.112191 {normal=(-0.264212 0.836938 0.479298)} Vertex 2031 -3.20906 17.7053 0.200731 {normal=(-0.428672 -0.397804 -0.811167)} Vertex 2032 -3.20811 19.216 -0.497212 {normal=(-0.812735 0.0175659 -0.582368)} Vertex 2033 -3.20806 -0.834043 3.86842 Vertex 2034 -3.20806 0.583956 3.86844 Vertex 2035 -3.20736 18.0362 -0.352014 {normal=(-0.897572 -0.146639 0.415767)} Vertex 2036 -3.20731 19.5357 -0.473559 {normal=(-0.959572 -0.281372 -0.00712268)} Vertex 2037 -3.20723 17.934 -0.452032 {normal=(-0.817284 -0.54989 0.172246)} Vertex 2038 -3.20594 19.1567 -0.136562 {normal=(-0.602868 -0.448551 0.659812)} Vertex 2039 -3.20401 19.4249 -0.444627 {normal=(-0.807623 -0.042156 -0.588191)} Vertex 2040 -3.20399 20.0291 -0.111514 {normal=(-0.589153 0.398617 0.702854)} Vertex 2041 -3.20382 17.9361 -0.626065 {normal=(-0.715139 -0.698841 0.0140593)} Vertex 2042 -3.20358 18.7692 -0.68319 {normal=(-0.752638 0.335308 0.566661)} Vertex 2043 -3.20317 19.025 -0.361331 {normal=(-0.847703 -0.483035 -0.219263)} Vertex 2044 -3.20227 -44.3414 -3.45309 Vertex 2045 -3.20162 19.0982 -0.458968 {normal=(-0.854824 -0.328179 -0.401963)} Vertex 2046 -3.19832 17.9181 -0.685209 {normal=(-0.863372 -0.503434 0.0338039)} Vertex 2047 -3.19798 19.4625 -0.504596 {normal=(-0.925708 -0.304932 0.223788)} Vertex 2048 -3.19797 -35.0239 -1.79187 {normal=(0.761394 -0.108263 0.639186)} Vertex 2049 -3.19744 18.0359 0.80113 {normal=(-0.751674 -0.37405 0.543205)} Vertex 2050 -3.19365 19.9083 0.03575 {normal=(-0.487457 -0.1816 -0.854054)} Vertex 2051 -3.19313 18.998 -0.291927 {normal=(-0.822982 -0.560385 0.0931135)} Vertex 2052 -3.19121 19.7353 0.007712 {normal=(-0.343367 0.24038 0.907919)} Vertex 2053 -3.18801 20.8248 -0.204453 {normal=(-0.261675 0.913477 0.311586)} Vertex 2054 -3.18787 19.0612 -0.199863 {normal=(-0.651072 -0.531056 0.542297)} Vertex 2055 -3.18714 18.4237 -0.448687 {normal=(-0.928424 0.178393 0.325892)} Vertex 2056 -3.18696 18.896 -1.34692 {normal=(0.377499 -0.1644 -0.9113)} Vertex 2057 -3.18671 20.5523 -1.59655 {normal=(-0.92597 0.0648222 -0.371992)} Vertex 2058 -3.18535 2.45959 -4.41563 Vertex 2059 -3.18476 20.4668 0.416238 {normal=(-0.309677 0.678868 0.665762)} Vertex 2060 -3.18438 -45.0273 -5.58524 Vertex 2061 -3.18394 18.5499 -0.529639 {normal=(-0.919821 0.303546 0.248575)} Vertex 2062 -3.18252 18.6549 -0.602216 {normal=(-0.810274 0.290745 0.508844)} Vertex 2063 -3.18204 18.5206 -0.488304 {normal=(-0.921396 0.262981 0.286131)} Vertex 2064 -3.17839 19.3697 -0.55714 {normal=(-0.82535 -0.488556 0.283036)} Vertex 2065 -3.1782 20.2835 -0.476055 {normal=(-0.497483 0.86744 -0.00763835)} Vertex 2066 -3.17651 -17.7867 -7.41635 Vertex 2067 -3.17597 18.5818 -0.551032 {normal=(-0.880016 0.330802 0.340795)} Vertex 2068 -3.17509 19.9639 -1.64774 {normal=(-0.954175 -0.0874617 -0.286182)} Vertex 2069 -3.17316 19.1503 0.769449 {normal=(-0.429929 0.109907 0.896148)} Vertex 2070 -3.17251 19.7092 0.055891 {normal=(-0.436873 -0.0973273 -0.894242)} Vertex 2071 -3.1722 18.2046 0.957628 {normal=(-0.748061 -0.393202 0.5346)} Vertex 2072 -3.1715 19.8073 -1.48368 {normal=(-0.849609 -0.414066 0.32667)} Vertex 2073 -3.17036 17.9411 -0.343169 {normal=(-0.788164 -0.475254 0.391065)} Vertex 2074 -3.16961 20.9171 -0.53953 {normal=(-0.202468 0.96336 0.175908)} Vertex 2075 -3.16951 18.5009 -1.19777 {normal=(-0.262717 -0.524117 -0.810112)} Vertex 2076 -3.16834 18.993 0.816863 {normal=(-0.372952 0.503745 0.779197)} Vertex 2077 -3.16818 19.335 -0.49632 {normal=(-0.871342 -0.032729 -0.489584)} Vertex 2078 -3.16668 19.5649 0.044491 {normal=(-0.350753 0.0295714 0.936001)} Vertex 2079 -3.16636 17.8945 -0.453336 {normal=(-0.546685 -0.836681 0.0331746)} Vertex 2080 -3.16616 17.9344 0.125657 {normal=(-0.417263 -0.171829 -0.892394)} Vertex 2081 -3.16602 5.30195 5.10544 {normal=(-0.0291798 -0.143479 0.989223)} Vertex 2082 -3.16509 -40.188 -3.96481 Vertex 2083 -3.16443 17.9025 -0.795744 {normal=(-0.478958 -0.629012 -0.612326)} Vertex 2084 -3.16439 20.0504 -1.02667 {normal=(-0.313368 0.724844 -0.613515)} Vertex 2085 -3.16409 18.5059 1.09587 {normal=(-0.686688 0.0535065 0.72498)} Vertex 2086 -3.16163 19.1532 -0.564104 {normal=(-0.840914 -0.0739357 -0.536095)} Vertex 2087 -3.16062 18.1659 -0.277815 {normal=(-0.799685 0.118247 0.58866)} Vertex 2088 -3.15976 18.571 0.142244 {normal=(-0.647652 -0.0281294 -0.761417)} Vertex 2089 -3.15934 19.4677 0.073503 {normal=(-0.391187 -0.0621155 -0.918213)} Vertex 2090 -3.15831 18.4531 0.133459 {normal=(-0.682439 0.14956 -0.715478)} Vertex 2091 -3.15765 13.124 -4.85645 Vertex 2092 -3.15719 18.7013 0.122821 {normal=(-0.544486 -0.107705 -0.831826)} Vertex 2093 -3.15689 18.9372 -0.267693 {normal=(-0.934821 -0.302736 0.185634)} Vertex 2094 -3.15481 18.8353 0.108866 {normal=(-0.46315 -0.0962827 -0.881034)} Vertex 2095 -3.15464 18.1562 0.074372 {normal=(-0.531713 0.00554679 -0.846906)} Vertex 2096 -3.15438 20.9696 -0.893036 {normal=(-0.198534 0.963915 0.177345)} Vertex 2097 -3.15413 19.1837 0.08859 {normal=(-0.371631 -0.0543273 -0.92679)} Vertex 2098 -3.15385 -6.42699 3.65097 Vertex 2099 -3.15284 18.3476 0.096469 {normal=(-0.621993 0.216592 -0.752471)} Vertex 2100 -3.15262 18.9729 0.100377 {normal=(-0.395417 -0.0749884 -0.915435)} Vertex 2101 -3.15162 18.2487 0.076774 {normal=(-0.585787 0.135431 -0.799069)} Vertex 2102 -3.15071 2.4033 -4.8752 Vertex 2103 -3.14764 18.3251 1.08671 {normal=(-0.665931 -0.295054 0.685186)} Vertex 2104 -3.14592 19.3769 0.788728 {normal=(-0.398943 -0.041664 0.916029)} Vertex 2105 -3.14439 18.7992 -0.330651 {normal=(-0.981974 -0.127354 -0.139673)} Vertex 2106 -3.14438 17.8223 -0.689909 {normal=(-0.627656 -0.770709 -0.109802)} Vertex 2107 -3.14415 18.679 -1.2805 {normal=(0.386507 -0.272584 -0.881085)} Vertex 2108 -3.14368 18.7249 -0.307003 {normal=(-0.992943 -0.114463 -0.0310219)} Vertex 2109 -3.14362 18.87 -0.361994 {normal=(-0.962156 -0.168379 -0.214251)} Vertex 2110 -3.14229 18.05 -0.902461 {normal=(-0.324868 -0.515915 -0.792649)} Vertex 2111 -3.142 18.9441 -0.422569 {normal=(-0.877917 -0.359466 -0.316301)} Vertex 2112 -3.1419 21.1066 -1.38976 {normal=(-0.705474 0.708358 0.0231479)} Vertex 2113 -3.14027 20.2692 -0.363819 {normal=(-0.800463 0.485364 0.351684)} Vertex 2114 -3.13989 18.0515 -0.235074 {normal=(-0.761698 -0.0675304 0.644403)} Vertex 2115 -3.13955 -3.67004 3.90811 Vertex 2116 -3.13955 -2.25204 3.90813 Vertex 2117 -3.13953 19.0215 -0.512374 {normal=(-0.82533 -0.374326 -0.422741)} Vertex 2118 -3.13932 19.3888 0.038026 {normal=(-0.476365 -0.141396 0.867804)} Vertex 2119 -3.13713 18.3431 -1.10343 {normal=(-0.274688 -0.538948 -0.796293)} Vertex 2120 -3.13713 18.2378 -0.258133 {normal=(-0.877184 0.0934793 0.470966)} Vertex 2121 -3.13682 18.4361 -0.32092 {normal=(-0.921458 0.119564 0.36962)} Vertex 2122 -3.13502 20.2618 -0.583401 {normal=(-0.75711 0.620846 -0.20331)} Vertex 2123 -3.13501 20.7112 0.131225 {normal=(-0.559063 0.721982 0.407665)} Vertex 2124 -3.13436 19.2965 -0.613106 {normal=(-0.776951 -0.614518 0.136801)} Vertex 2125 -3.13321 20.3074 -0.552774 {normal=(-0.886174 -0.462618 0.0260864)} Vertex 2126 -3.13319 18.1969 -1.00502 {normal=(-0.30841 -0.544643 -0.779902)} Vertex 2127 -3.13215 19.8485 -1.19474 {normal=(0.366581 0.476907 -0.79886)} Vertex 2128 -3.13213 20.2523 -0.780897 {normal=(-0.707113 -0.68214 0.186214)} Vertex 2129 -3.13172 18.5329 -0.360538 {normal=(-0.942913 0.180623 0.279803)} Vertex 2130 -3.13146 18.9049 0.930968 {normal=(-0.345582 0.571818 0.744041)} Vertex 2131 -3.12966 21.0254 -1.58801 {normal=(-0.913613 0.240984 -0.327471)} Vertex 2132 -3.12791 19.2566 -0.573691 {normal=(-0.901829 -0.0661189 -0.427004)} Vertex 2133 -3.12721 -33.5402 -5.6836 Vertex 2134 -3.12541 19.0865 -0.592485 {normal=(-0.810965 -0.283351 -0.511907)} Vertex 2135 -3.12505 19.1965 -0.79037 {normal=(-0.433416 -0.640635 0.633828)} Vertex 2136 -3.12466 20.3187 -0.344397 {normal=(-0.807603 -0.58589 0.0671613)} Vertex 2137 -3.12401 18.9868 -0.147434 {normal=(-0.849165 -0.297844 0.436129)} Vertex 2138 -3.12241 18.8407 -0.209509 {normal=(-0.934467 -0.129556 0.331642)} Vertex 2139 -3.12214 18.584 -0.315212 {normal=(-0.985332 0.0185497 0.169636)} Vertex 2140 -3.12112 19.2284 0.004268 {normal=(-0.652654 -0.241595 0.718105)} Vertex 2141 -3.11872 19.6142 0.812128 {normal=(-0.362221 -0.0591218 0.930215)} Vertex 2142 -3.11774 20.2068 -0.798657 {normal=(-0.908066 0.366338 -0.203009)} Vertex 2143 -3.11763 20.1539 -1.01373 {normal=(-0.612236 -0.729962 0.303846)} Vertex 2144 -3.11703 19.6697 -1.26314 {normal=(0.472731 0.244495 -0.846609)} Vertex 2145 -3.11672 18.6252 -0.416603 {normal=(-0.957608 0.252633 0.138433)} Vertex 2146 -3.11646 17.5608 0.317309 {normal=(-0.552852 -0.832253 0.0413576)} Vertex 2147 -3.1162 13.1539 -4.59755 Vertex 2148 -3.11588 20.7278 0.146185 {normal=(-0.907741 0.351084 0.229665)} Vertex 2149 -3.11564 -44.7921 -3.4216 Vertex 2150 -3.11535 20.84 -0.18779 {normal=(-0.581105 0.770759 0.261243)} Vertex 2151 -3.11359 20.1466 0.707685 {normal=(-0.367503 0.504297 0.781426)} Vertex 2152 -3.1134 18.6554 -0.462611 {normal=(-0.933904 0.345545 0.0917735)} Vertex 2153 -3.11325 17.8763 -0.352182 {normal=(-0.55896 -0.802062 0.210382)} Vertex 2154 -3.11282 -44.4287 -5.5505 Vertex 2155 -3.11209 19.0839 -0.05678 {normal=(-0.77937 -0.297389 0.551492)} Vertex 2156 -3.11047 20.2173 -0.176757 {normal=(-0.885003 0.304023 0.352618)} Vertex 2157 -3.11023 19.4077 -1.29914 {normal=(0.506608 0.0872202 -0.857754)} Vertex 2158 -3.11 21.4149 -0.208897 {normal=(-0.998183 0.0580655 0.0161188)} Vertex 2159 -3.10835 17.9522 -0.236016 {normal=(-0.730794 -0.414396 0.542417)} Vertex 2160 -3.10714 18.6763 -0.371279 {normal=(-0.979581 0.0247706 -0.199518)} Vertex 2161 -3.10651 20.4864 0.438927 {normal=(-0.558203 0.56742 0.605346)} Vertex 2162 -3.10647 20.2862 -0.155766 {normal=(-0.696873 -0.6828 -0.219435)} Vertex 2163 -3.10619 19.0521 -0.842463 {normal=(-0.416094 0.100274 0.903776)} Vertex 2164 -3.10371 18.9852 -0.803877 {normal=(-0.498806 0.555884 0.664971)} Vertex 2165 -3.10355 17.6325 0.486175 {normal=(-0.416551 -0.756567 0.504075)} Vertex 2166 -3.10299 20.9083 -0.347762 {normal=(-0.632158 0.751471 0.188859)} Vertex 2167 -3.10291 1.53595 -4.34686 Vertex 2168 -3.10209 21.3375 -0.113226 {normal=(-0.996926 0.0152936 0.0768457)} Vertex 2169 -3.10022 18.7385 -0.396281 {normal=(-0.948989 0.0263699 -0.314206)} Vertex 2170 -3.10017 17.6022 0.205911 {normal=(-0.438285 -0.504702 -0.743762)} Vertex 2171 -3.09923 19.1249 -0.825664 {normal=(-0.469052 -0.421199 0.776262)} Vertex 2172 -3.09889 20.9321 -0.521924 {normal=(-0.550912 0.828351 0.101639)} Vertex 2173 -3.09853 20.8571 -0.173755 {normal=(-0.925514 0.362999 0.10796)} Vertex 2174 -3.09828 19.487 -1.61777 {normal=(-0.877025 -0.346648 0.332659)} Vertex 2175 -3.09712 18.7217 -0.184613 {normal=(-0.913636 -0.104333 0.392918)} Vertex 2176 -3.09539 19.1559 -1.29808 {normal=(0.516383 -0.0325578 -0.855739)} Vertex 2177 -3.09507 21.4832 -0.392774 {normal=(-0.992077 0.104919 -0.0690985)} Vertex 2178 -3.09498 18.689 -0.493349 {normal=(-0.931404 0.336884 0.137824)} Vertex 2179 -3.09352 -21.6238 -7.0905 Vertex 2180 -3.09316 20.8161 0.22009 {normal=(-0.987422 0.0883989 0.131083)} Vertex 2181 -3.0918 18.9242 -0.709901 {normal=(-0.706635 0.573483 0.414469)} Vertex 2182 -3.09159 21.0947 -0.295767 {normal=(-0.999372 -0.0335316 -0.0114894)} Vertex 2183 -3.09158 19.8624 0.839648 {normal=(-0.434702 0.117468 0.89288)} Vertex 2184 -3.09056 19.2278 -0.734232 {normal=(-0.721936 -0.604303 0.337084)} Vertex 2185 -3.09043 19.1536 0.814444 {normal=(-0.59463 0.120831 0.794868)} Vertex 2186 -3.0897 20.0123 -1.25126 {normal=(-0.555112 -0.679488 0.479736)} Vertex 2187 -3.08931 20.9741 -0.086473 {normal=(-0.998825 0.0442556 0.0197607)} Vertex 2188 -3.08885 -41.932 -2.26927 Vertex 2189 -3.08879 21.067 -0.258426 {normal=(-0.999568 -0.0228552 0.0184807)} Vertex 2190 -3.08812 18.9949 0.861272 {normal=(-0.5728 0.424089 0.701462)} Vertex 2191 -3.08811 20.1998 -0.037223 {normal=(-0.569053 -0.525958 -0.632097)} Vertex 2192 -3.0877 21.1912 0.074053 {normal=(-0.995324 0.0376317 0.0889563)} Vertex 2193 -3.08757 20.9285 -0.342364 {normal=(-0.957699 0.278536 0.0723248)} Vertex 2194 -3.08743 20.1078 -1.00783 {normal=(-0.958956 0.107683 -0.262311)} Vertex 2195 -3.08732 20.9256 -0.334188 {normal=(-0.948919 0.294246 0.113895)} Vertex 2196 -3.08689 19.8993 -1.17151 {normal=(-0.466443 0.431337 -0.772256)} Vertex 2197 -3.08674 -11.2865 3.18666 {normal=(-0.000517219 -0.225314 0.974286)} Vertex 2198 -3.08617 18.5127 -1.19242 {normal=(0.442501 -0.352423 -0.824615)} Vertex 2199 -3.08583 18.8468 -0.624364 {normal=(-0.854933 0.341977 0.390052)} Vertex 2200 -3.08579 18.7528 -0.547267 {normal=(-0.905046 0.285836 0.314944)} Vertex 2201 -3.08547 12.6564 -5.16987 {normal=(-0.035075 0.296059 -0.954525)} Vertex 2202 -3.08536 20.9846 -0.863001 {normal=(-0.557032 0.823151 0.110172)} Vertex 2203 -3.08522 20.5033 0.454121 {normal=(-0.858156 0.289756 0.423804)} Vertex 2204 -3.0842 18.7851 -0.430336 {normal=(-0.955541 -0.0193029 -0.294227)} Vertex 2205 -3.08393 17.7788 0.662587 {normal=(-0.42869 -0.610973 0.665535)} Vertex 2206 -3.08391 17.7858 -0.657132 {normal=(-0.255435 -0.95986 -0.115854)} Vertex 2207 -3.08354 18.7364 1.03979 {normal=(-0.360829 0.36066 0.860074)} Vertex 2208 -3.08347 20.952 -0.514334 {normal=(-0.944564 0.328172 0.0101081)} Vertex 2209 -3.08346 17.8689 -0.470985 {normal=(-0.476117 -0.877895 0.0511178)} Vertex 2210 -3.08322 19.1899 -0.676738 {normal=(-0.945427 -0.219782 -0.240551)} Vertex 2211 -3.08229 -45.2711 -3.39345 Vertex 2212 -3.0822 21.1357 -0.471285 {normal=(-0.997834 0.00742348 -0.0653599)} Vertex 2213 -3.081 18.5802 -0.193003 {normal=(-0.918411 -0.0720799 0.389007)} Vertex 2214 -3.08033 -43.2994 -2.23312 Vertex 2215 -3.07796 17.8509 -0.530128 {normal=(-0.636296 -0.719347 0.278689)} Vertex 2216 -3.07499 21.0171 -1.0373 {normal=(-0.426605 0.880765 0.205574)} Vertex 2217 -3.07251 18.9141 -1.25996 {normal=(0.536755 -0.125886 -0.834294)} Vertex 2218 -3.07242 18.4207 -0.178118 {normal=(-0.894631 0.0424774 0.444782)} Vertex 2219 -3.07229 18.8492 -0.487384 {normal=(-0.97313 -0.107432 -0.203656)} Vertex 2220 -3.07138 18.243 -0.139958 {normal=(-0.868029 0.00481133 0.496491)} Vertex 2221 -3.06995 21.0038 -0.851028 {normal=(-0.935949 0.35211 0.00421097)} Vertex 2222 -3.06961 20.0594 0.01123 {normal=(-0.493942 -0.282751 -0.822237)} Vertex 2223 -3.06827 17.8443 -0.745797 {normal=(0.144969 -0.743056 -0.653339)} Vertex 2224 -3.06719 19.6061 -1.84885 {normal=(-0.925054 -0.134632 -0.355174)} Vertex 2225 -3.06685 20.9759 0.35294 {normal=(-0.984847 0.0489466 0.166377)} Vertex 2226 -3.06623 20.1677 -0.058187 {normal=(-0.986293 -0.00368756 0.164963)} Vertex 2227 -3.06468 19.1622 0.84055 {normal=(-0.826989 0.102604 0.552776)} Vertex 2228 -3.06448 18.9309 -0.567425 {normal=(-0.97815 -0.108319 -0.177452)} Vertex 2229 -3.06376 -0.833912 -4.30515 Vertex 2230 -3.06376 0.584086 -4.30513 Vertex 2231 -3.06315 19.0097 0.885542 {normal=(-0.834426 0.218574 0.505924)} Vertex 2232 -3.06121 -41.0922 -4.23682 Vertex 2233 -3.06059 21.1898 -0.784979 {normal=(-0.995231 0.054062 -0.0811963)} Vertex 2234 -3.05986 -41.9279 -5.5235 Vertex 2235 -3.05965 17.8762 -0.259146 {normal=(-0.663229 -0.686342 0.298432)} Vertex 2236 -3.05958 21.0361 -1.02313 {normal=(-0.924995 0.379833 0.0105037)} Vertex 2237 -3.05931 19.3858 0.83067 {normal=(-0.591375 0.00726687 0.806364)} Vertex 2238 -3.05761 17.9996 0.846544 {normal=(-0.419016 -0.56271 0.712589)} Vertex 2239 -3.0573 21.5425 -0.664855 {normal=(-0.982485 0.147002 -0.114511)} Vertex 2240 -3.05645 21.0457 -1.0415 {normal=(-0.932203 0.335128 -0.136701)} Vertex 2241 -3.05629 -15.6303 2.61602 {normal=(0.36475 -0.126155 0.922519)} Vertex 2242 -3.0556 19.8879 0.012211 {normal=(-0.826834 0.118368 0.54985)} Vertex 2243 -3.05553 18.1252 -0.101187 {normal=(-0.840723 -0.111603 0.529839)} Vertex 2244 -3.05459 18.3524 -1.09866 {normal=(0.464075 -0.43059 -0.774098)} Vertex 2245 -3.0526 21.7261 -0.005925 {normal=(-0.972605 0.213821 0.091219)} Vertex 2246 -3.05243 20.264 -1.91928 {normal=(-0.887213 0.0356302 -0.459983)} Vertex 2247 -3.0524 18.9096 0.971156 {normal=(-0.618584 0.393414 0.680131)} Vertex 2248 -3.05217 20.5803 0.5174 {normal=(-0.948538 0.0945837 0.302209)} Vertex 2249 -3.04996 -3.66991 -4.3096 Vertex 2250 -3.04996 -2.25192 -4.30958 Vertex 2251 -3.04941 18.1979 -0.999199 {normal=(0.435873 -0.482342 -0.759843)} Vertex 2252 -3.04918 19.8906 0.048231 {normal=(-0.660989 -0.165258 -0.731972)} Vertex 2253 -3.04862 21.6112 0.133394 {normal=(-0.977904 0.140223 0.155055)} Vertex 2254 -3.04788 19.1213 -0.7232 {normal=(-0.901454 -0.397586 -0.171188)} Vertex 2255 -3.04768 18.998 -0.642656 {normal=(-0.930346 -0.0393187 -0.364568)} Vertex 2256 -3.0471 20.0274 -0.009733 {normal=(-0.948403 0.0413234 0.314364)} Vertex 2257 -3.04555 17.491 0.22268 {normal=(-0.775909 -0.465587 -0.425668)} Vertex 2258 -3.04546 18.8461 1.51862 {normal=(-0.996453 0.00122159 -0.0841462)} Vertex 2259 -3.04526 18.7078 1.69045 {normal=(-0.998603 -0.0325592 0.041616)} Vertex 2260 -3.04428 17.6561 0.178052 {normal=(-0.379021 -0.246175 -0.892043)} Vertex 2261 -3.04423 17.5233 0.321667 {normal=(-0.74378 -0.639204 0.19547)} Vertex 2262 -3.04409 19.965 -1.21092 {normal=(-0.973849 -0.199834 -0.108097)} Vertex 2263 -3.04279 18.8948 1.54046 {normal=(-0.983616 0.173022 0.0506325)} Vertex 2264 -3.04192 21.2211 -0.986897 {normal=(-0.98758 0.0966355 -0.123883)} Vertex 2265 -3.04164 19.7939 -1.4271 {normal=(-0.562261 -0.499497 0.659064)} Vertex 2266 -3.04105 18.7151 -1.1997 {normal=(0.576563 -0.199503 -0.792322)} Vertex 2267 -3.04006 -17.8602 -7.10841 Vertex 2268 -3.03847 19.1167 0.909688 {normal=(-0.93674 0.0915807 0.337832)} Vertex 2269 -3.038 17.9734 -0.149976 {normal=(-0.770343 -0.274482 0.575527)} Vertex 2270 -3.03605 17.8417 -0.379054 {normal=(-0.46755 -0.882795 0.0454973)} Vertex 2271 -3.03557 19.3847 0.85618 {normal=(-0.852951 0.0600315 0.518528)} Vertex 2272 -3.03547 17.9849 -0.85095 {normal=(0.305584 -0.555457 -0.77336)} Vertex 2273 -3.0352 17.8887 0.110841 {normal=(-0.522322 -0.247794 -0.815952)} Vertex 2274 -3.03429 18.8631 -0.032859 {normal=(-0.922405 -0.134647 0.361994)} Vertex 2275 -3.03385 21.4336 0.329014 {normal=(-0.979741 0.109432 0.167727)} Vertex 2276 -3.03307 19.702 0.057723 {normal=(-0.737022 0.0700696 0.672227)} Vertex 2277 -3.03226 17.4655 0.224608 {normal=(-0.949309 -0.220669 -0.22387)} Vertex 2278 -3.03212 18.1733 1.00267 {normal=(-0.397705 -0.600066 0.694083)} Vertex 2279 -3.0312 21.8327 -0.212922 {normal=(-0.962625 0.27082 -0.00300404)} Vertex 2280 -3.03101 19.6235 0.851017 {normal=(-0.579544 -0.0144631 0.814812)} Vertex 2281 -3.03096 18.9274 0.991155 {normal=(-0.882685 0.145019 0.447032)} Vertex 2282 -3.03091 18.6264 1.62458 {normal=(-0.976724 -0.186874 -0.105304)} Vertex 2283 -3.03086 19.0421 -0.79213 {normal=(-0.796965 0.225852 0.560213)} Vertex 2284 -3.03079 18.7775 1.47372 {normal=(-0.975842 -0.120729 -0.182089)} Vertex 2285 -3.03046 18.8005 1.74942 {normal=(-0.967016 0.175649 0.184465)} Vertex 2286 -3.02986 20.1658 0.735316 {normal=(-0.544973 0.492093 0.678859)} Vertex 2287 -3.0293 21.1144 -1.31737 {normal=(-0.305927 0.915616 0.260877)} Vertex 2288 -3.02835 19.624 -1.23287 {normal=(-0.327549 0.00927971 -0.944789)} Vertex 2289 -3.02807 17.5017 0.210685 {normal=(-0.662183 -0.133468 -0.73736)} Vertex 2290 -3.02684 19.6933 0.073783 {normal=(-0.749563 -0.121635 -0.650661)} Vertex 2291 -3.02671 -10.0006 3.60659 {normal=(0.159874 -0.222855 0.961653)} Vertex 2292 -3.02623 17.4988 0.329922 {normal=(-0.943263 -0.282163 0.175038)} Vertex 2293 -3.02618 21.2296 -1.07704 {normal=(-0.961289 0.0848596 -0.26215)} Vertex 2294 -3.02554 17.5984 0.507645 {normal=(-0.65653 -0.613869 0.43833)} Vertex 2295 -3.02461 18.4877 1.14334 {normal=(-0.399557 0.118918 0.908962)} Vertex 2296 -3.02425 19.1102 -0.773111 {normal=(-0.878824 -0.3707 0.300415)} Vertex 2297 -3.02404 18.9869 -0.692567 {normal=(-0.912019 0.390812 -0.124449)} Vertex 2298 -3.02241 17.4754 0.204259 {normal=(-0.860934 -0.097583 -0.499269)} Vertex 2299 -3.02196 19.7412 -1.29007 {normal=(-0.915433 -0.0789236 -0.394656)} Vertex 2300 -3.02111 17.8818 -0.192219 {normal=(-0.822572 -0.492483 0.284317)} Vertex 2301 -3.02108 18.5796 1.89687 {normal=(-0.990447 -0.0438908 0.130724)} Vertex 2302 -3.02086 19.3628 -1.26237 {normal=(0.158444 0.0331856 -0.98681)} Vertex 2303 -3.0201 18.9725 1.56106 {normal=(-0.952765 0.2725 0.134096)} Vertex 2304 -3.01929 -43.2789 -5.5188 Vertex 2305 -3.01793 21.5752 -0.917749 {normal=(-0.967382 0.195484 -0.161114)} Vertex 2306 -3.01759 17.8144 -0.497353 {normal=(-0.511171 -0.823569 0.245842)} Vertex 2307 -3.01607 17.0405 0.543803 {normal=(-0.989483 -0.0184156 0.143473)} Vertex 2308 -3.01588 17.2795 0.261742 {normal=(-0.987024 -0.0696849 -0.144665)} Vertex 2309 -3.01575 12.9848 -4.37449 Vertex 2310 -3.01565 17.3379 0.403967 {normal=(-0.994656 -0.0108678 0.102674)} Vertex 2311 -3.01503 -41.9203 -3.44988 Vertex 2312 -3.01473 19.4933 0.084852 {normal=(-0.744733 -0.0119975 0.667254)} Vertex 2313 -3.01466 18.0857 -0.905655 {normal=(0.475149 -0.434892 -0.76492)} Vertex 2314 -3.01409 19.3158 0.933712 {normal=(-0.953874 0.0796573 0.289446)} Vertex 2315 -3.01286 16.9895 0.350843 {normal=(-0.984644 -0.109157 -0.136235)} Vertex 2316 -3.01229 19.4609 0.094523 {normal=(-0.546795 -0.077313 -0.833689)} Vertex 2317 -3.01179 19.0173 1.02186 {normal=(-0.96965 0.0426522 0.24075)} Vertex 2318 -3.00904 -3.67196 3.38582 Vertex 2319 -3.00851 19.6151 0.875653 {normal=(-0.863342 0.0476128 0.502368)} Vertex 2320 -3.00829 21.193 0.580934 {normal=(-0.976206 0.0615695 0.20792)} Vertex 2321 -3.00781 18.5842 0.123053 {normal=(-0.646622 0.00539685 -0.762792)} Vertex 2322 -3.00747 18.3 1.13096 {normal=(-0.471461 -0.408091 0.781784)} Vertex 2323 -3.00738 20.7174 0.628767 {normal=(-0.957087 0.0277131 0.288473)} Vertex 2324 -3.00737 18.4725 1.78906 {normal=(-0.971715 -0.235532 -0.0171774)} Vertex 2325 -3.00682 18.7231 0.122532 {normal=(-0.660318 -0.0882447 -0.745783)} Vertex 2326 -3.00655 20.1836 0.750053 {normal=(-0.818648 0.266135 0.508908)} Vertex 2327 -3.00575 18.7399 1.07631 {normal=(-0.623151 0.219242 0.750743)} Vertex 2328 -3.00573 17.5752 0.5202 {normal=(-0.923425 -0.259907 0.282372)} Vertex 2329 -3.0057 18.4586 0.105242 {normal=(-0.654886 0.133569 -0.743831)} Vertex 2330 -3.00553 19.8668 0.87548 {normal=(-0.642124 0.0575987 0.764434)} Vertex 2331 -3.00552 19.1933 0.110452 {normal=(-0.499802 -0.0505758 -0.864662)} Vertex 2332 -3.00528 18.8593 0.121307 {normal=(-0.706545 0.0413578 -0.706459)} Vertex 2333 -3.00506 1.47742 -4.84007 Vertex 2334 -3.00356 17.7473 0.692657 {normal=(-0.636262 -0.501514 0.58622)} Vertex 2335 -3.00318 18.9928 0.11938 {normal=(-0.560248 -0.0204019 -0.828074)} Vertex 2336 -3.0031 18.1124 0.056089 {normal=(-0.534867 -0.0433403 -0.843824)} Vertex 2337 -3.00247 19.0344 1.29032 {normal=(-0.99554 0.0495593 -0.0802707)} Vertex 2338 -3.00228 17.3486 0.191148 {normal=(-0.92625 -0.102875 -0.362599)} Vertex 2339 -3.00104 18.5588 -1.11732 {normal=(0.619083 -0.277967 -0.734487)} Vertex 2340 -3.00073 17.4969 0.154635 {normal=(-0.913218 -0.011601 -0.407306)} Vertex 2341 -3.00058 19.2617 0.093597 {normal=(-0.936475 -0.102862 0.335312)} Vertex 2342 -3.00055 19.16 -1.69615 {normal=(-0.886751 -0.340823 0.31227)} Vertex 2343 -3.00049 -34.093 -5.66988 {normal=(0.619205 -0.206048 -0.757714)} Vertex 2344 -3.00049 18.3462 0.069096 {normal=(-0.654231 0.125025 -0.745889)} Vertex 2345 -3.00037 19.6402 -1.2806 {normal=(-0.913355 -0.211424 -0.347968)} Vertex 2346 -2.99979 19.0831 1.31216 {normal=(-0.981554 0.188269 0.0332677)} Vertex 2347 -2.99963 18.2308 0.052713 {normal=(-0.545719 0.0153992 -0.837827)} Vertex 2348 -2.99791 18.7249 1.37258 {normal=(-0.974431 -0.142274 -0.173906)} Vertex 2349 -2.9967 17.5966 0.164886 {normal=(-0.772211 -0.0828943 -0.629935)} Vertex 2350 -2.99623 19.8111 -1.35861 {normal=(-0.944805 -0.317177 0.0821137)} Vertex 2351 -2.99488 19.1793 1.06327 {normal=(-0.988722 0.0547162 0.139408)} Vertex 2352 -2.99451 -2.25204 3.6113 Vertex 2353 -2.99451 -0.834039 3.61132 Vertex 2354 -2.99451 0.583959 3.61134 Vertex 2355 -2.99399 17.8235 -0.304463 {normal=(-0.666248 -0.743997 0.0508094)} Vertex 2356 -2.99361 19.1663 -1.25406 {normal=(0.207245 -0.094113 -0.973752)} Vertex 2357 -2.99268 19.078 0.087345 {normal=(-0.978496 -0.122295 0.166099)} Vertex 2358 -2.99259 20.871 -1.91213 {normal=(-0.868721 0.0945436 -0.486194)} Vertex 2359 -2.99104 18.9422 0.066092 {normal=(-0.984167 -0.0574494 0.167677)} Vertex 2360 -2.99044 -17.7994 2.44164 {normal=(0.426038 -0.20385 0.88144)} Vertex 2361 -2.98949 18.9824 1.20956 {normal=(-0.999187 -0.0237894 -0.032541)} Vertex 2362 -2.98818 18.7575 1.09467 {normal=(-0.921475 0.0155926 0.388126)} Vertex 2363 -2.98773 19.5267 0.965002 {normal=(-0.960594 0.0818127 0.265643)} Vertex 2364 -2.9868 18.7299 0.020054 {normal=(-0.979205 -0.183438 0.086655)} Vertex 2365 -2.9865 18.9046 1.80149 {normal=(-0.924375 0.288664 0.249406)} Vertex 2366 -2.98542 -33.7225 -5.77918 Vertex 2367 -2.98469 18.7115 2.00828 {normal=(-0.948222 0.189636 0.25478)} Vertex 2368 -2.9844 21.931 -0.487595 {normal=(-0.945002 0.312062 -0.0979235)} Vertex 2369 -2.98362 19.9973 0.893347 {normal=(-0.683589 0.238788 0.6897)} Vertex 2370 -2.98351 19.8535 0.898968 {normal=(-0.867208 0.046785 0.495744)} Vertex 2371 -2.98329 19.1091 1.54664 {normal=(-0.957037 0.256695 0.13486)} Vertex 2372 -2.98276 18.8383 1.13909 {normal=(-0.993854 -0.0604472 0.0927359)} Vertex 2373 -2.98227 17.7247 0.707429 {normal=(-0.891278 -0.248247 0.379469)} Vertex 2374 -2.98175 -9.33591 3.68109 Vertex 2375 -2.98155 18.5873 0.011305 {normal=(-0.992179 -0.0359113 0.119548)} Vertex 2376 -2.9815 17.4301 0.593601 {normal=(-0.977457 -0.0154033 0.210571)} Vertex 2377 -2.97987 16.6937 0.494729 {normal=(-0.970602 -0.240677 -0.00259678)} Vertex 2378 -2.97836 16.8163 0.670118 {normal=(-0.960258 -0.134328 0.244666)} Vertex 2379 -2.97707 18.4478 0.001382 {normal=(-0.993668 0.00526825 0.112235)} Vertex 2380 -2.97699 18.4035 -1.02469 {normal=(0.654109 -0.352427 -0.669281)} Vertex 2381 -2.97696 21.5814 -1.15145 {normal=(-0.93966 0.204989 -0.273894)} Vertex 2382 -2.97664 17.97 0.876703 {normal=(-0.61197 -0.463377 0.640916)} Vertex 2383 -2.97656 18.4839 1.51494 {normal=(-0.951818 -0.261006 -0.16099)} Vertex 2384 -2.97448 18.4791 2.14688 {normal=(-0.980386 -0.0113015 0.196765)} Vertex 2385 -2.97361 0.793936 -4.64973 Vertex 2386 -2.97344 19.4988 -1.54124 {normal=(-0.647756 -0.350576 0.676395)} Vertex 2387 -2.97334 18.3113 -0.009712 {normal=(-0.991232 0.00095477 0.132129)} Vertex 2388 -2.97191 18.3628 2.02422 {normal=(-0.968121 -0.240642 0.0695249)} Vertex 2389 -2.97176 18.9381 -1.21424 {normal=(0.291769 -0.201957 -0.934925)} Vertex 2390 -2.97161 17.2347 0.13361 {normal=(-0.932947 -0.0965597 -0.346823)} Vertex 2391 -2.96892 18.2493 -0.921801 {normal=(0.675224 -0.363378 -0.641895)} Vertex 2392 -2.96866 19.3584 1.11906 {normal=(-0.981007 0.107824 0.161244)} Vertex 2393 -2.96856 -13.0955 2.71639 {normal=(0.147579 -0.138585 0.979293)} Vertex 2394 -2.96836 17.8035 -0.418505 {normal=(-0.540556 -0.839001 0.0622552)} Vertex 2395 -2.9678 19.9808 0.913021 {normal=(-0.858192 0.105642 0.502341)} Vertex 2396 -2.96719 19.2192 1.31294 {normal=(-0.976317 0.198685 0.0856171)} Vertex 2397 -2.96713 -43.2615 -3.42964 Vertex 2398 -2.96707 17.53 0.075737 {normal=(-0.91344 0.0221885 -0.406368)} Vertex 2399 -2.96636 20.2669 0.805459 {normal=(-0.918068 0.115916 0.379098)} Vertex 2400 -2.96542 21.1309 -1.27932 {normal=(-0.654421 0.753922 0.0577526)} Vertex 2401 -2.96526 20.0148 0.904617 {normal=(-0.832967 0.246859 0.495203)} Vertex 2402 -2.96136 19.9968 0.91781 {normal=(-0.88809 0.189301 0.418881)} Vertex 2403 -2.95985 18.0827 0.010697 {normal=(-0.997915 -0.0452868 -0.0459909)} Vertex 2404 -2.95955 16.9297 0.215619 {normal=(-0.942023 -0.157054 -0.296524)} Vertex 2405 -2.95938 19.7494 1.00356 {normal=(-0.962372 0.0800486 0.259678)} Vertex 2406 -2.95899 18.0793 0.972486 {normal=(-0.603243 -0.475901 0.640013)} Vertex 2407 -2.9576 21.2489 -1.24759 {normal=(-0.924237 0.0442659 -0.379245)} Vertex 2408 -2.95715 17.7721 -0.554103 {normal=(-0.182855 -0.977823 -0.102106)} Vertex 2409 -2.95642 17.1629 0.727849 {normal=(-0.960796 0.0104959 0.277058)} Vertex 2410 -2.95614 18.2141 0.004432 {normal=(-0.999887 0.00415531 0.0144502)} Vertex 2411 -2.95455 17.9472 0.891605 {normal=(-0.865596 -0.243692 0.437444)} Vertex 2412 -2.9543 19.2482 -1.95203 {normal=(-0.88862 -0.229976 -0.396818)} Vertex 2413 -2.95359 17.7758 0.085283 {normal=(-0.779778 -0.243564 -0.576734)} Vertex 2414 -2.95137 18.5798 1.26137 {normal=(-0.983638 -0.169101 -0.0621316)} Vertex 2415 -2.95105 18.3322 1.65031 {normal=(-0.933743 -0.337272 -0.119878)} Vertex 2416 -2.95036 18.1485 1.03412 {normal=(-0.591643 -0.501864 0.630945)} Vertex 2417 -2.95027 21.1561 -1.27562 {normal=(-0.912253 0.304748 -0.27372)} Vertex 2418 -2.94834 20.9252 0.827575 {normal=(-0.961237 -0.00983918 0.275548)} Vertex 2419 -2.94818 18.4857 1.17674 {normal=(-0.633603 0.148149 0.759341)} Vertex 2420 -2.94759 1.01701 -4.2787 Vertex 2421 -2.9466 17.585 0.780746 {normal=(-0.964516 -0.0652426 0.255838)} Vertex 2422 -2.94572 18.7428 -1.15232 {normal=(0.355283 -0.305777 -0.883331)} Vertex 2423 -2.94384 17.7423 -0.237242 {normal=(-0.878969 -0.476677 -0.0138914)} Vertex 2424 -2.94257 17.8689 -0.087485 {normal=(-0.926117 -0.337834 0.167854)} Vertex 2425 -2.94146 19.8897 1.0296 {normal=(-0.962372 0.086202 0.257699)} Vertex 2426 -2.94044 -3.66992 -3.99761 Vertex 2427 -2.94044 -2.25192 -3.99758 Vertex 2428 -2.94044 -0.833917 -3.99756 Vertex 2429 -2.94044 0.584082 -3.99754 Vertex 2430 -2.93852 17.8141 -0.625776 {normal=(0.173852 -0.786922 -0.592056)} Vertex 2431 -2.93788 19.3909 -1.27298 {normal=(-0.545956 -0.102216 -0.831555)} Vertex 2432 -2.9365 18.0563 0.987455 {normal=(-0.848975 -0.208049 0.485754)} Vertex 2433 -2.93516 18.0614 0.991254 {normal=(-0.846034 -0.230742 0.480609)} Vertex 2434 -2.93479 18.5 1.19609 {normal=(-0.953493 -0.0835388 0.289607)} Vertex 2435 -2.9346 17.7769 -0.348415 {normal=(-0.716231 -0.676919 -0.169688)} Vertex 2436 -2.93396 19.9478 1.04313 {normal=(-0.95695 0.129524 0.25975)} Vertex 2437 -2.93313 19.5544 1.18924 {normal=(-0.975056 0.113794 0.190568)} Vertex 2438 -2.93273 18.1372 -0.826546 {normal=(0.670823 -0.283934 -0.685111)} Vertex 2439 -2.93158 19.2938 1.58703 {normal=(-0.959806 0.222383 0.171223)} Vertex 2440 -2.93111 19.0523 1.83428 {normal=(-0.911313 0.30085 0.281066)} Vertex 2441 -2.93055 19.5285 -1.46277 {normal=(-0.937678 -0.271877 0.216432)} Vertex 2442 -2.92894 17.3663 -2.05436 {normal=(-0.999033 -0.0052218 0.0436525)} Vertex 2443 -2.92852 20.0102 1.02479 {normal=(-0.943382 0.19733 0.266629)} Vertex 2444 -2.9284 21.8883 0.481434 {normal=(-0.936062 0.273594 0.22121)} Vertex 2445 -2.92775 21.7013 0.678409 {normal=(-0.947 0.21567 0.238072)} Vertex 2446 -2.9269 18.13 1.05199 {normal=(-0.854109 -0.279921 0.438341)} Vertex 2447 -2.92603 18.2775 1.16111 {normal=(-0.655586 -0.40306 0.638553)} Vertex 2448 -2.92584 17.4648 -0.014704 {normal=(-0.890236 0.00467677 -0.455476)} Vertex 2449 -2.92546 18.2165 1.91355 {normal=(-0.921571 -0.38809 -0.00967074)} Vertex 2450 -2.92514 20.0768 0.974591 {normal=(-0.927895 0.181413 0.32573)} Vertex 2451 -2.92454 18.2971 2.33005 {normal=(-0.968873 -0.194084 0.153674)} Vertex 2452 -2.92386 19.4025 1.38373 {normal=(-0.976864 0.179732 0.115899)} Vertex 2453 -2.92227 18.3892 1.36952 {normal=(-0.950736 -0.285591 -0.120579)} Vertex 2454 -2.92058 18.6233 2.2847 {normal=(-0.932686 0.205394 0.296497)} Vertex 2455 -2.92002 16.5905 0.32074 {normal=(-0.94727 -0.265198 -0.179861)} Vertex 2456 -2.91941 22.0283 0.313151 {normal=(-0.920324 0.350136 0.174379)} Vertex 2457 -2.91747 21.4673 0.904073 {normal=(-0.952971 0.14109 0.268216)} Vertex 2458 -2.91551 18.5805 -1.0683 {normal=(0.379128 -0.399242 -0.834786)} Vertex 2459 -2.91544 16.9581 0.846905 {normal=(-0.930937 -0.058181 0.360515)} Vertex 2460 -2.91353 17.8028 0.965402 {normal=(-0.951648 -0.0890401 0.294003)} Vertex 2461 -2.9128 -45.2821 -4.66994 Vertex 2462 -2.91038 17.7618 -0.470535 {normal=(-0.505846 -0.857973 -0.0894541)} Vertex 2463 -2.9099 19.4071 -1.32071 {normal=(-0.908439 -0.266485 -0.322063)} Vertex 2464 -2.90978 18.3474 1.23268 {normal=(-0.748021 -0.217581 0.626996)} Vertex 2465 -2.9093 20.4156 0.901536 {normal=(-0.942332 0.0483168 0.331174)} Vertex 2466 -2.90928 19.195 -1.25964 {normal=(-0.460578 -0.17764 -0.869662)} Vertex 2467 -2.90896 19.4276 -1.4533 {normal=(-0.942632 -0.305048 0.135613)} Vertex 2468 -2.90819 21.9942 -0.810047 {normal=(-0.910785 0.365708 -0.191648)} Vertex 2469 -2.90583 17.1618 -0.012849 {normal=(-0.913311 -0.0884293 -0.397546)} Vertex 2470 -2.90548 18.4062 2.44049 {normal=(-0.959693 0.0475518 0.276997)} Vertex 2471 -2.90459 19.7242 1.24308 {normal=(-0.974475 0.101927 0.200023)} Vertex 2472 -2.90392 17.7836 -0.005511 {normal=(-0.93083 -0.261279 -0.255515)} Vertex 2473 -2.90332 18.2578 1.17717 {normal=(-0.86534 -0.27057 0.421876)} Vertex 2474 -2.90225 16.5181 0.613766 {normal=(-0.94826 -0.292165 0.124266)} Vertex 2475 -2.90159 18.3581 1.24882 {normal=(-0.943527 -0.24025 0.228115)} Vertex 2476 -2.90046 17.9219 -0.696945 {normal=(0.269037 -0.520439 -0.810408)} Vertex 2477 -2.90031 17.3284 0.912612 {normal=(-0.953809 -0.0368327 0.298147)} Vertex 2478 -2.90029 16.6652 0.782911 {normal=(-0.933176 -0.194364 0.302334)} Vertex 2479 -2.9001 -41.1353 -2.91926 Vertex 2480 -2.89821 18.8684 2.1233 {normal=(-0.90167 0.305539 0.306001)} Vertex 2481 -2.89799 -6.42017 3.83833 {normal=(-0.419315 0.0143741 0.907727)} Vertex 2482 -2.89721 18.4231 -0.9742 {normal=(0.386974 -0.470944 -0.792756)} Vertex 2483 -2.89575 21.5996 -1.39378 {normal=(-0.88046 0.204195 -0.427895)} Vertex 2484 -2.89333 17.9221 1.06795 {normal=(-0.935298 -0.0716528 0.346531)} Vertex 2485 -2.89082 18.2708 -0.870027 {normal=(0.403821 -0.493585 -0.770262)} Vertex 2486 -2.89061 19.4407 1.63507 {normal=(-0.965344 0.173631 0.194841)} Vertex 2487 -2.89057 22.1841 0.068272 {normal=(-0.909103 0.402736 0.106472)} Vertex 2488 -2.89054 18.325 1.24413 {normal=(-0.884774 -0.27766 0.374273)} Vertex 2489 -2.89039 18.2933 1.38409 {normal=(-0.935349 -0.333185 -0.11879)} Vertex 2490 -2.89028 21.3495 -1.91302 {normal=(-0.70824 0.70563 -0.0219523)} Vertex 2491 -2.89022 -44.384 -3.33485 Vertex 2492 -2.88961 18.1596 2.20613 {normal=(-0.912299 -0.405235 0.0591189)} Vertex 2493 -2.8889 -45.027 -3.33704 Vertex 2494 -2.88858 18.3317 1.25285 {normal=(-0.934177 -0.318727 0.160395)} Vertex 2495 -2.88765 19.5745 1.4449 {normal=(-0.978309 0.152142 0.140585)} Vertex 2496 -2.88702 20.0621 1.5606 {normal=(-0.981303 -0.111431 0.156934)} Vertex 2497 -2.88589 17.9429 1.08838 {normal=(-0.936118 -0.0905374 0.339831)} Vertex 2498 -2.88472 18.9678 -1.20977 {normal=(-0.367714 -0.284354 -0.885398)} Vertex 2499 -2.88305 19.8678 1.28057 {normal=(-0.972016 0.125843 0.198365)} Vertex 2500 -2.88249 20.088 1.53948 {normal=(-0.886862 0.338913 -0.314028)} Vertex 2501 -2.88123 18.1521 -0.791601 {normal=(0.43745 -0.425068 -0.792436)} Vertex 2502 -2.88117 17.7365 -0.391005 {normal=(-0.678184 -0.661294 -0.320555)} Vertex 2503 -2.88081 16.7969 0.046449 {normal=(-0.926913 -0.16274 -0.338153)} Vertex 2504 -2.88017 19.8559 -2.23448 {normal=(-0.851198 -0.0386996 -0.523415)} Vertex 2505 -2.87832 18.8263 -1.71885 {normal=(-0.895109 -0.21412 0.391066)} Vertex 2506 -2.87829 20.0154 1.5357 {normal=(-0.74561 -0.656489 -0.114403)} Vertex 2507 -2.87813 19.1844 -1.60966 {normal=(-0.715268 -0.325285 0.618531)} Vertex 2508 -2.878 18.1417 -1.82615 {normal=(-0.987165 0.103804 0.121365)} Vertex 2509 -2.87739 17.5742 -0.201547 {normal=(-0.962358 -0.267485 -0.0481551)} Vertex 2510 -2.87722 18.0062 -0.73466 {normal=(0.468601 -0.28576 -0.835915)} Vertex 2511 -2.87599 -37.7788 -3.30363 {normal=(0.969367 -0.0857847 0.230151)} Vertex 2512 -2.87586 18.1776 1.57035 {normal=(-0.927655 -0.358042 -0.106127)} Vertex 2513 -2.87506 21.2038 1.11383 {normal=(-0.948937 0.0421199 0.312641)} Vertex 2514 -2.87478 -20.013 -7.81698 Vertex 2515 -2.87442 18.0105 1.15317 {normal=(-0.9505 -0.136415 0.279178)} Vertex 2516 -2.87352 17.113 -1.92053 {normal=(-0.962868 -0.127245 0.238106)} Vertex 2517 -2.8724 -40.1296 -4.10955 Vertex 2518 -2.87095 20.0575 1.50145 {normal=(-0.582226 0.0568593 -0.811037)} Vertex 2519 -2.86938 -38.6938 -3.30424 {normal=(0.982211 0.0011058 0.187776)} Vertex 2520 -2.86927 20.0209 1.23397 {normal=(-0.961292 0.184197 0.204913)} Vertex 2521 -2.86723 -40.2267 -3.27711 {normal=(0.986871 0.00538587 0.161423)} Vertex 2522 -2.86428 19.2436 1.84779 {normal=(-0.90547 0.270252 0.327242)} Vertex 2523 -2.86337 17.4277 -2.34323 {normal=(-0.942395 0.103918 -0.317951)} Vertex 2524 -2.86326 20.1835 1.10327 {normal=(-0.953193 0.141364 0.267282)} Vertex 2525 -2.86286 16.8475 -2.39809 {normal=(-0.9775 -0.103241 -0.183943)} Vertex 2526 -2.86189 16.3745 0.443334 {normal=(-0.943248 -0.3285 -0.0487003)} Vertex 2527 -2.86055 18.2209 1.34557 {normal=(-0.962512 -0.268654 -0.0373729)} Vertex 2528 -2.8604 19.5499 1.69076 {normal=(-0.966415 0.142438 0.213902)} Vertex 2529 -2.86028 18.2153 2.58777 {normal=(-0.956265 -0.165167 0.241408)} Vertex 2530 -2.85943 17.7252 -0.4997 {normal=(-0.611029 -0.705401 -0.35924)} Vertex 2531 -2.85893 18.1249 1.26233 {normal=(-0.962508 -0.139506 0.23263)} Vertex 2532 -2.85853 19.7352 1.49645 {normal=(-0.977564 0.131119 0.16485)} Vertex 2533 -2.85839 17.6108 -0.329164 {normal=(-0.840276 -0.326946 -0.432485)} Vertex 2534 -2.85816 18.7621 -1.13834 {normal=(-0.304844 -0.406637 -0.86123)} Vertex 2535 -2.85617 16.8157 0.950768 {normal=(-0.919343 -0.108866 0.378097)} Vertex 2536 -2.85456 19.2061 -1.33843 {normal=(-0.898373 -0.244475 -0.364908)} Vertex 2537 -2.8543 18.1951 1.32647 {normal=(-0.976911 -0.177491 0.118921)} Vertex 2538 -2.85402 20.6302 1.06894 {normal=(-0.958503 -0.0137587 0.284749)} Vertex 2539 -2.85357 17.5368 1.09809 {normal=(-0.944845 -0.0721489 0.319473)} Vertex 2540 -2.85116 17.1266 1.02812 {normal=(-0.926044 -0.0632244 0.372083)} Vertex 2541 -2.85007 21.2915 -2.09364 {normal=(-0.839624 0.29365 -0.456947)} Vertex 2542 -2.84615 19.3647 1.8227 {normal=(-0.926263 0.166541 0.338085)} Vertex 2543 -2.84573 16.4894 0.13968 {normal=(-0.928947 -0.259775 -0.263769)} Vertex 2544 -2.84572 16.5907 0.887409 {normal=(-0.945001 -0.150937 0.290158)} Vertex 2545 -2.84273 -37.7533 -4.46973 {normal=(0.939161 -0.113403 -0.324216)} Vertex 2546 -2.84189 22.3555 -0.2532 {normal=(-0.886149 0.462894 -0.0216668)} Vertex 2547 -2.84145 17.379 -0.163082 {normal=(-0.937798 -0.0855902 -0.336467)} Vertex 2548 -2.8412 18.0922 2.44638 {normal=(-0.90489 -0.413832 0.0995844)} Vertex 2549 -2.83813 18.5358 2.57866 {normal=(-0.910238 0.201461 0.361773)} Vertex 2550 -2.83644 18.8904 -1.95729 {normal=(-0.934629 -0.163368 -0.315879)} Vertex 2551 -2.83612 -38.6683 -4.47035 {normal=(0.951183 -0.0189996 -0.308041)} Vertex 2552 -2.83605 19.9967 1.53417 {normal=(-0.552364 -0.726215 -0.409275)} Vertex 2553 -2.83555 -22.2492 -1.89586 Vertex 2554 -2.8351 18.0404 1.81488 {normal=(-0.90412 -0.427168 -0.00972473)} Vertex 2555 -2.83367 -3.67281 3.59712 Vertex 2556 -2.83279 16.3645 0.747485 {normal=(-0.950253 -0.272831 0.150275)} Vertex 2557 -2.83262 17.7005 -0.41545 {normal=(-0.700296 -0.624891 -0.345104)} Vertex 2558 -2.83027 17.7617 -0.562423 {normal=(-0.369088 -0.722736 -0.584318)} Vertex 2559 -2.82958 18.5777 -1.04536 {normal=(-0.292117 -0.493415 -0.819273)} Vertex 2560 -2.82946 19.1998 -1.49042 {normal=(-0.942451 -0.31693 0.106501)} Vertex 2561 -2.82835 20.5607 -2.24634 {normal=(-0.830464 0.0899866 -0.549756)} Vertex 2562 -2.82763 20.2066 1.76968 {normal=(-0.958324 0.000380571 0.285685)} Vertex 2563 -2.82758 20.0451 1.49478 {normal=(-0.918813 0.103283 -0.38094)} Vertex 2564 -2.82572 18.0211 -0.699714 {normal=(-0.0682851 -0.280213 -0.957506)} Vertex 2565 -2.82483 17.9002 -1.69966 {normal=(-0.923296 -0.01104 0.383931)} Vertex 2566 -2.82276 17.0762 -0.171864 {normal=(-0.890306 -0.122055 -0.4387)} Vertex 2567 -2.82243 17.6671 1.21768 {normal=(-0.931135 -0.0696648 0.357958)} Vertex 2568 -2.8223 16.4909 0.936403 {normal=(-0.957023 -0.158837 0.242647)} Vertex 2569 -2.82097 17.6322 -0.376616 {normal=(-0.746793 -0.314399 -0.586049)} Vertex 2570 -2.82014 20.246 1.73753 {normal=(-0.959645 0.260349 0.106301)} Vertex 2571 -2.81982 19.6799 1.78915 {normal=(-0.965566 0.1196 0.231039)} Vertex 2572 -2.81956 20.1569 1.7472 {normal=(-0.658196 -0.530137 0.534539)} Vertex 2573 -2.81817 18.312 2.70753 {normal=(-0.924799 0.0583651 0.375954)} Vertex 2574 -2.81786 -29.8672 -1.54866 {normal=(0.548578 -0.109425 0.828908)} Vertex 2575 -2.81752 18.0258 1.52695 {normal=(-0.951951 -0.305148 -0.0259667)} Vertex 2576 -2.81655 19.8848 1.61865 {normal=(-0.977816 0.0949139 0.186728)} Vertex 2577 -2.81561 20.272 1.71641 {normal=(-0.96058 0.254079 0.112827)} Vertex 2578 -2.8154 19.4481 1.88047 {normal=(-0.929778 0.0620527 0.362854)} Vertex 2579 -2.81522 18.4111 -0.947201 {normal=(-0.282038 -0.537815 -0.794487)} Vertex 2580 -2.8151 18.2623 -0.843877 {normal=(-0.241403 -0.546881 -0.801652)} Vertex 2581 -2.81168 16.7454 1.0508 {normal=(-0.933246 -0.084269 0.349213)} Vertex 2582 -2.81064 19.0486 2.17587 {normal=(-0.858755 0.361255 0.363367)} Vertex 2583 -2.8102 18.7955 2.43765 {normal=(-0.86465 0.351928 0.358507)} Vertex 2584 -2.80953 20.3103 1.68519 {normal=(-0.837131 0.50788 -0.203149)} Vertex 2585 -2.80863 18.1453 -0.765874 {normal=(-0.242734 -0.496293 -0.833531)} Vertex 2586 -2.80662 20.3718 1.26508 {normal=(-0.970318 0.0675136 0.232216)} Vertex 2587 -2.80614 20.1499 1.41599 {normal=(-0.972504 0.173363 0.155505)} Vertex 2588 -2.80613 18.2836 -2.08769 {normal=(-0.952655 0.111639 -0.282818)} Vertex 2589 -2.80462 16.5428 -2.25228 {normal=(-0.964748 -0.263132 -0.00486515)} Vertex 2590 -2.8045 18.9527 -1.30293 {normal=(-0.859918 -0.278134 -0.427998)} Vertex 2591 -2.80279 17.7194 1.27138 {normal=(-0.934283 -0.0985945 0.342629)} Vertex 2592 -2.80256 22.0221 -1.18027 {normal=(-0.852208 0.412889 -0.321347)} Vertex 2593 -2.8013 16.1979 0.572681 {normal=(-0.937507 -0.346513 0.0317715)} Vertex 2594 -2.80105 17.9575 1.4797 {normal=(-0.968284 -0.235911 0.0822929)} Vertex 2595 -2.80068 17.9937 2.06872 {normal=(-0.877719 -0.477505 0.0399874)} Vertex 2596 -2.80053 20.9108 1.30767 {normal=(-0.9495 0.00430876 0.313737)} Vertex 2597 -2.79752 20.2832 1.64445 {normal=(-0.357689 0.631398 -0.688038)} Vertex 2598 -2.79621 16.9796 1.12726 {normal=(-0.912414 -0.0715146 0.402972)} Vertex 2599 -2.79522 16.7116 -0.133838 {normal=(-0.880774 -0.175043 -0.439996)} Vertex 2600 -2.79475 -29.3108 -1.68521 Vertex 2601 -2.79435 21.3514 -1.81252 {normal=(-0.393453 0.873331 0.287206)} Vertex 2602 -2.79335 16.2394 0.266842 {normal=(-0.922235 -0.344625 -0.175259)} Vertex 2603 -2.79293 17.7899 1.33769 {normal=(-0.951476 -0.165849 0.259206)} Vertex 2604 -2.79286 17.8788 1.41661 {normal=(-0.962843 -0.200023 0.181452)} Vertex 2605 -2.79063 18.5446 -1.67106 {normal=(-0.875934 0.0379224 0.480938)} Vertex 2606 -2.79033 17.3652 -0.333941 {normal=(-0.87166 -0.171819 -0.459007)} Vertex 2607 -2.78982 17.3216 1.21375 {normal=(-0.918148 -0.0924711 0.385296)} Vertex 2608 -2.78629 16.9452 -1.73777 {normal=(-0.926899 -0.164469 0.337355)} Vertex 2609 -2.78385 16.6711 1.11341 {normal=(-0.941612 -0.0591069 0.33147)} Vertex 2610 -2.78154 -29.3563 -1.49686 Vertex 2611 -2.78117 17.838 -0.642591 {normal=(-0.386745 -0.551807 -0.738875)} Vertex 2612 -2.78025 18.0143 2.63432 {normal=(-0.902763 -0.408805 0.13378)} Vertex 2613 -2.78019 17.6656 -0.467027 {normal=(-0.743377 -0.518615 -0.422409)} Vertex 2614 -2.77913 18.1172 2.79736 {normal=(-0.932122 -0.169575 0.319988)} Vertex 2615 -2.77863 20.1321 1.7505 {normal=(-0.790255 -0.38744 0.47475)} Vertex 2616 -2.77251 17.8993 1.72788 {normal=(-0.919381 -0.390978 0.0432977)} Vertex 2617 -2.77076 16.2328 0.895883 {normal=(-0.942762 -0.286822 0.170099)} Vertex 2618 -2.77069 16.3678 1.06798 {normal=(-0.952456 -0.186293 0.241088)} Vertex 2619 -2.7692 16.5771 1.13944 {normal=(-0.949226 -0.0553898 0.309681)} Vertex 2620 -2.76887 19.8307 1.93024 {normal=(-0.959762 0.108017 0.259209)} Vertex 2621 -2.76852 -41.0338 -4.38157 Vertex 2622 -2.76499 19.5354 1.99348 {normal=(-0.933003 0.00126047 0.359867)} Vertex 2623 -2.7638 -33.5113 -2.17558 {normal=(0.739044 -0.41981 0.526852)} Vertex 2624 -2.76201 18.7263 -1.23555 {normal=(-0.827606 -0.34124 -0.445671)} Vertex 2625 -2.76173 20.0234 1.81152 {normal=(-0.96675 0.0713544 0.245567)} Vertex 2626 -2.76095 17.9427 2.28338 {normal=(-0.868539 -0.492919 0.0516861)} Vertex 2627 -2.7557 18.8507 -1.63235 {normal=(-0.775 -0.220473 0.592256)} Vertex 2628 -2.75522 20.6419 1.46001 {normal=(-0.960059 0.0419098 0.276641)} Vertex 2629 -2.75503 16.3906 -0.048453 {normal=(-0.875199 -0.287703 -0.388913)} Vertex 2630 -2.75492 16.8656 1.20748 {normal=(-0.919056 -0.0409259 0.391996)} Vertex 2631 -2.75324 20.2775 1.63233 {normal=(-0.738054 0.54762 -0.394194)} Vertex 2632 -2.75291 17.5367 -0.432151 {normal=(-0.827038 -0.218176 -0.518081)} Vertex 2633 -2.74779 17.4599 1.34982 {normal=(-0.909832 -0.104592 0.401581)} Vertex 2634 -2.74698 17.9424 -0.72466 {normal=(-0.539715 -0.358562 -0.76167)} Vertex 2635 -2.74672 20.3887 2.02243 {normal=(-0.963876 0.0581478 0.259928)} Vertex 2636 -2.74452 21.4696 -1.69711 {normal=(-0.828158 0.205449 -0.521484)} Vertex 2637 -2.74389 17.6869 -0.55574 {normal=(-0.725965 -0.461794 -0.509628)} Vertex 2638 -2.7422 21.3616 -1.75252 {normal=(-0.633129 0.771813 0.0587491)} Vertex 2639 -2.73938 19.4489 -2.37729 {normal=(-0.803562 -0.171284 -0.570043)} Vertex 2640 -2.73914 20.3971 1.57085 {normal=(-0.969266 0.139965 0.202322)} Vertex 2641 -2.73873 17.7384 -1.52057 {normal=(-0.905633 -0.0280883 0.423132)} Vertex 2642 -2.73831 16.0607 0.70878 {normal=(-0.922838 -0.376107 0.0831507)} Vertex 2643 -2.73768 17.7934 1.65255 {normal=(-0.928677 -0.351998 0.116862)} Vertex 2644 -2.7375 16.4656 1.22508 {normal=(-0.946045 -0.080635 0.313843)} Vertex 2645 -2.73749 18.3149 -1.5528 {normal=(-0.770588 0.179009 0.611678)} Vertex 2646 -2.737 18.4241 2.8482 {normal=(-0.87568 0.162849 0.454603)} Vertex 2647 -2.73573 20.4414 1.99199 {normal=(-0.956787 0.265563 0.118471)} Vertex 2648 -2.73485 -45.0392 -4.65225 Vertex 2649 -2.73381 21.3802 -1.73304 {normal=(-0.852512 0.400152 -0.336305)} Vertex 2650 -2.73343 17.0099 -0.310019 {normal=(-0.818206 -0.159334 -0.552405)} Vertex 2651 -2.73302 20.3457 2.03922 {normal=(-0.770013 -0.404591 0.493341)} Vertex 2652 -2.73185 16.0387 0.396913 {normal=(-0.908132 -0.408973 -0.0896471)} Vertex 2653 -2.7311 18.8928 -1.49371 {normal=(-0.955088 -0.29572 0.0189048)} Vertex 2654 -2.72776 18.0749 -0.808631 {normal=(-0.718874 -0.341795 -0.605306)} Vertex 2655 -2.72728 16.7844 1.26877 {normal=(-0.923794 -0.0199863 0.382368)} Vertex 2656 -2.72709 18.5269 -1.1363 {normal=(-0.802956 -0.379289 -0.459784)} Vertex 2657 -2.72574 20.4905 1.96259 {normal=(-0.956725 0.265552 0.118994)} Vertex 2658 -2.72554 17.8414 1.94836 {normal=(-0.888043 -0.454563 0.0689373)} Vertex 2659 -2.72548 19.6774 2.09807 {normal=(-0.934034 0.0205819 0.35659)} Vertex 2660 -2.72298 17.1571 1.31238 {normal=(-0.904135 -0.0887842 0.417919)} Vertex 2661 -2.7228 16.2743 1.16199 {normal=(-0.923636 -0.268911 0.273101)} Vertex 2662 -2.72247 18.6858 2.74457 {normal=(-0.854438 0.313688 0.414168)} Vertex 2663 -2.72199 19.252 2.16602 {normal=(-0.842835 0.333451 0.42242)} Vertex 2664 -2.72116 16.3378 -2.06287 {normal=(-0.928647 -0.341773 0.14424)} Vertex 2665 -2.72019 21.7218 1.31112 {normal=(-0.899688 0.256461 0.353255)} Vertex 2666 -2.71711 17.5414 1.43631 {normal=(-0.916118 -0.145358 0.37363)} Vertex 2667 -2.71703 17.3208 -0.427868 {normal=(-0.847392 -0.164484 -0.504848)} Vertex 2668 -2.71676 20.5359 1.93423 {normal=(-0.863196 0.490636 -0.119033)} Vertex 2669 -2.71663 16.135 0.999102 {normal=(-0.914479 -0.342371 0.215663)} Vertex 2670 -2.71602 18.2127 -0.909629 {normal=(-0.749629 -0.39102 -0.534003)} Vertex 2671 -2.71592 17.8876 2.45887 {normal=(-0.874836 -0.481455 0.0535125)} Vertex 2672 -2.71565 17.7008 1.58106 {normal=(-0.929244 -0.312528 0.197059)} Vertex 2673 -2.71524 21.9483 1.11448 {normal=(-0.885507 0.335515 0.321413)} Vertex 2674 -2.71371 17.9147 2.77667 {normal=(-0.905536 -0.392132 0.161978)} Vertex 2675 -2.7127 22.4781 -0.66379 {normal=(-0.829672 0.52831 -0.18037)} Vertex 2676 -2.71255 18.1963 2.948 {normal=(-0.884516 0.0199094 0.466084)} Vertex 2677 -2.71176 18.3557 -1.02766 {normal=(-0.779123 -0.392583 -0.488719)} Vertex 2678 -2.7064 17.6217 1.51339 {normal=(-0.928128 -0.239564 0.284933)} Vertex 2679 -2.70381 21.4671 1.48556 {normal=(-0.911539 0.156089 0.380437)} Vertex 2680 -2.70199 16.6943 1.32983 {normal=(-0.926893 -0.00498785 0.375293)} Vertex 2681 -2.70181 22.1443 0.920609 {normal=(-0.868893 0.397813 0.294568)} Vertex 2682 -2.70171 16.3772 1.30143 {normal=(-0.92988 -0.155436 0.33341)} Vertex 2683 -2.70163 -17.8091 -7.05958 Vertex 2684 -2.69968 -44.4185 -4.63377 Vertex 2685 -2.69688 16.113 0.08429 {normal=(-0.867726 -0.385668 -0.313546)} Vertex 2686 -2.6959 -9.30989 3.83926 {normal=(-0.273709 -0.187444 0.943371)} Vertex 2687 -2.69464 20.3124 2.04236 {normal=(-0.802048 -0.362813 0.474433)} Vertex 2688 -2.69402 -41.8967 -3.35468 Vertex 2689 -2.69395 17.9969 2.95227 {normal=(-0.899996 -0.216148 0.378532)} Vertex 2690 -2.69294 19.3791 2.12925 {normal=(-0.889874 0.121073 0.439848)} Vertex 2691 -2.69243 18.1647 -1.42782 {normal=(-0.797459 0.235075 0.555698)} Vertex 2692 -2.68995 20.558 1.91187 {normal=(-0.456417 0.735244 -0.501098)} Vertex 2693 -2.68719 16.6421 -0.284089 {normal=(-0.782456 -0.210206 -0.586153)} Vertex 2694 -2.68467 17.788 2.13377 {normal=(-0.886814 -0.45865 0.0565717)} Vertex 2695 -2.68373 15.9593 0.812778 {normal=(-0.901375 -0.413681 0.128032)} Vertex 2696 -2.6799 16.2104 1.21842 {normal=(-0.931598 -0.269773 0.243614)} Vertex 2697 -2.67989 22.3098 0.729512 {normal=(-0.844825 0.471719 0.252492)} Vertex 2698 -2.67979 17.7331 -0.687887 {normal=(-0.792072 -0.314384 -0.523244)} Vertex 2699 -2.67979 16.5852 -2.85734 {normal=(-0.895339 -0.129339 -0.426191)} Vertex 2700 -2.67897 16.5953 1.39063 {normal=(-0.927577 -0.0044448 0.373606)} Vertex 2701 -2.67835 -27.5289 -4.51545 Vertex 2702 -2.67834 20.0194 2.14604 {normal=(-0.941418 0.0851845 0.326305)} Vertex 2703 -2.67681 17.2972 -2.78714 {normal=(-0.862165 0.120828 -0.492008)} Vertex 2704 -2.67641 20.2037 2.07797 {normal=(-0.950064 0.0169516 0.311594)} Vertex 2705 -2.6762 17.0274 1.39103 {normal=(-0.913365 -0.0460826 0.404526)} Vertex 2706 -2.67372 21.1773 -2.35437 {normal=(-0.779546 0.157599 -0.606194)} Vertex 2707 -2.67248 16.071 1.05714 {normal=(-0.919219 -0.338015 0.201946)} Vertex 2708 -2.67058 17.5206 -0.577197 {normal=(-0.886935 -0.192882 -0.419693)} Vertex 2709 -2.66961 17.8125 2.59321 {normal=(-0.895771 -0.441984 0.0473655)} Vertex 2710 -2.6694 17.3002 1.46435 {normal=(-0.902179 -0.111677 0.416655)} Vertex 2711 -2.66725 16.863 -1.50606 {normal=(-0.507178 -0.281912 0.81443)} Vertex 2712 -2.66683 18.5749 -1.58911 {normal=(-0.828352 -0.0345488 0.559142)} Vertex 2713 -2.66611 21.1841 1.63782 {normal=(-0.925362 0.0964541 0.36661)} Vertex 2714 -2.66419 17.7027 1.84503 {normal=(-0.897894 -0.424106 0.117983)} Vertex 2715 -2.66242 15.8873 0.529894 {normal=(-0.886424 -0.462411 -0.0207113)} Vertex 2716 -2.66224 16.3121 1.3685 {normal=(-0.944301 -0.1461 0.294874)} Vertex 2717 -2.65729 18.6355 -1.44394 {normal=(-0.960796 -0.272044 -0.0535077)} Vertex 2718 -2.65477 -43.2775 -3.30585 Vertex 2719 -2.65432 18.9624 2.5848 {normal=(-0.783827 0.474136 0.401012)} Vertex 2720 -2.65205 19.4514 2.23165 {normal=(-0.896315 -0.0458187 0.441044)} Vertex 2721 -2.65199 21.9563 -1.53875 {normal=(-0.763977 0.402856 -0.50403)} Vertex 2722 -2.6516 16.5118 1.45579 {normal=(-0.925996 -0.0323727 0.376144)} Vertex 2723 -2.65053 -15.6171 -6.12914 Vertex 2724 -2.64988 17.7392 2.28414 {normal=(-0.89902 -0.435204 0.0485887)} Vertex 2725 -2.64893 16.9325 1.4497 {normal=(-0.920306 -0.0171806 0.390821)} Vertex 2726 -2.64698 22.5005 0.431061 {normal=(-0.824109 0.5275 0.206368)} Vertex 2727 -2.64531 20.5566 1.89549 {normal=(-0.741416 0.609974 -0.279704)} Vertex 2728 -2.64189 16.1152 1.30624 {normal=(-0.970192 -0.195014 0.143868)} Vertex 2729 -2.64158 17.7933 2.87342 {normal=(-0.919013 -0.347022 0.187057)} Vertex 2730 -2.64119 20.921 1.75729 {normal=(-0.941262 0.08795 0.326023)} Vertex 2731 -2.63989 15.8937 0.884676 {normal=(-0.897273 -0.42155 0.131137)} Vertex 2732 -2.63962 19.8563 2.27449 {normal=(-0.915345 0.0530263 0.399165)} Vertex 2733 -2.63794 16.3134 -0.200914 {normal=(-0.756088 -0.335879 -0.561709)} Vertex 2734 -2.63693 20.0946 -2.59064 {normal=(-0.789906 0.0211228 -0.612864)} Vertex 2735 -2.63692 16.9631 -0.427312 {normal=(-0.84272 -0.192665 -0.502696)} Vertex 2736 -2.6367 -22.2785 -1.38675 Vertex 2737 -2.63356 17.8308 -0.813758 {normal=(-0.821794 -0.247239 -0.513349)} Vertex 2738 -2.63269 16.2221 1.44832 {normal=(-0.975096 -0.0766501 0.208117)} Vertex 2739 -2.63158 19.5635 2.31502 {normal=(-0.88954 -0.0828553 0.449281)} Vertex 2740 -2.63052 -11.4725 3.13479 {normal=(0.278586 -0.199132 0.93954)} Vertex 2741 -2.63007 19.043 -2.34768 {normal=(-0.827497 -0.0956509 -0.553263)} Vertex 2742 -2.6299 15.8869 0.220182 {normal=(-0.8526 -0.472402 -0.223406)} Vertex 2743 -2.62906 20.6776 1.84396 {normal=(-0.958074 0.157067 0.239635)} Vertex 2744 -2.62886 17.4089 1.58317 {normal=(-0.911901 -0.161462 0.377316)} Vertex 2745 -2.62728 17.5909 1.75567 {normal=(-0.908997 -0.372188 0.187619)} Vertex 2746 -2.62724 15.9766 1.15445 {normal=(-0.949197 -0.291749 0.11793)} Vertex 2747 -2.62699 20.6434 2.39926 {normal=(-0.94503 0.143677 0.293727)} Vertex 2748 -2.62587 19.1405 2.43426 {normal=(-0.771753 0.437938 0.461094)} Vertex 2749 -2.62266 16.8424 1.50757 {normal=(-0.921674 -0.00692991 0.387902)} Vertex 2750 -2.62216 17.6562 -1.28886 {normal=(-0.477377 -0.17858 0.860361)} Vertex 2751 -2.62201 17.7174 2.68639 {normal=(-0.928674 -0.368479 0.0422756)} Vertex 2752 -2.61995 16.4437 1.5253 {normal=(-0.93939 -0.0228056 0.342092)} Vertex 2753 -2.61868 20.5817 2.41176 {normal=(-0.855737 -0.285734 0.431358)} Vertex 2754 -2.61814 16.1898 -2.69491 {normal=(-0.893888 -0.347871 -0.282755)} Vertex 2755 -2.6172 18.2882 3.0933 {normal=(-0.825109 0.109061 0.554347)} Vertex 2756 -2.61677 18.5516 3.00978 {normal=(-0.81948 0.230246 0.524822)} Vertex 2757 -2.6165 12.4786 -1.75525 {normal=(-0.999724 0.0215 0.00943003)} Vertex 2758 -2.61636 17.2627 -0.626796 {normal=(-0.917199 -0.153261 -0.367773)} Vertex 2759 -2.61576 17.675 2.40404 {normal=(-0.917469 -0.396249 0.0351828)} Vertex 2760 -2.61546 17.1745 1.55251 {normal=(-0.91781 -0.070353 0.390736)} Vertex 2761 -2.61482 17.5058 1.68027 {normal=(-0.919384 -0.272861 0.283337)} Vertex 2762 -2.61288 12.4583 -1.76683 Vertex 2763 -2.61269 16.1074 1.54091 {normal=(-0.977798 -0.0870327 0.19062)} Vertex 2764 -2.61248 16.2325 -1.82985 Vertex 2765 -2.61234 17.628 1.99755 {normal=(-0.907026 -0.415103 0.0706631)} Vertex 2766 -2.61151 18.3572 -1.47995 {normal=(-0.862795 0.11515 0.492266)} Vertex 2767 -2.61035 18.0591 3.12002 {normal=(-0.838692 -0.0738655 0.539573)} Vertex 2768 -2.60921 18.3257 -2.48429 {normal=(-0.853745 0.135422 -0.502773)} Vertex 2769 -2.60902 20.7228 2.37224 {normal=(-0.928267 0.296157 0.224969)} Vertex 2770 -2.60873 17.9802 -0.933352 {normal=(-0.836713 -0.270408 -0.476226)} Vertex 2771 -2.60804 18.4278 -1.34112 {normal=(-0.955114 -0.267125 -0.128068)} Vertex 2772 -2.60793 15.9885 1.42547 {normal=(-0.973633 -0.203282 0.103518)} Vertex 2773 -2.60477 17.8542 3.05248 {normal=(-0.87074 -0.252057 0.422231)} Vertex 2774 -2.60368 15.7795 0.641156 {normal=(-0.862182 -0.505705 0.0300771)} Vertex 2775 -2.60305 22.7165 0.025255 {normal=(-0.780332 0.621072 0.0731492)} Vertex 2776 -2.59732 16.757 1.56464 {normal=(-0.924745 0.00589197 0.380542)} Vertex 2777 -2.59653 16.3548 1.59802 {normal=(-0.955634 0.0177794 0.29402)} Vertex 2778 -2.59359 18.1221 -1.06729 {normal=(-0.885981 -0.319529 -0.336064)} Vertex 2779 -2.59263 20.7922 2.34741 {normal=(-0.92598 0.306051 0.22112)} Vertex 2780 -2.59235 17.5464 -0.773231 {normal=(-0.904214 -0.145533 -0.401518)} Vertex 2781 -2.58839 15.8065 0.992934 {normal=(-0.907708 -0.411734 0.0808843)} Vertex 2782 -2.58681 18.2567 -1.21556 {normal=(-0.94632 -0.236278 -0.220571)} Vertex 2783 -2.58607 17.0827 1.61429 {normal=(-0.929949 -0.0377955 0.365742)} Vertex 2784 -2.58408 20.5375 2.40973 {normal=(-0.800906 -0.39437 0.45058)} Vertex 2785 -2.58408 16.0237 -0.060493 {normal=(-0.740981 -0.451448 -0.497134)} Vertex 2786 -2.58296 18.8343 2.89304 {normal=(-0.793001 0.418797 0.442445)} Vertex 2787 -2.58278 17.5992 2.74792 {normal=(-0.963144 -0.266049 0.0396394)} Vertex 2788 -2.5823 17.5956 2.49348 {normal=(-0.941922 -0.335768 0.00651182)} Vertex 2789 -2.58214 17.569 2.11011 {normal=(-0.922785 -0.382946 0.0426585)} Vertex 2790 -2.58116 16.2451 1.67393 {normal=(-0.95549 0.015722 0.294605)} Vertex 2791 -2.58082 17.6472 2.93921 {normal=(-0.937982 -0.26706 0.221062)} Vertex 2792 -2.57982 12.2693 -1.38885 {normal=(-0.966866 -0.0860102 0.24036)} Vertex 2793 -2.57974 15.8519 1.29102 {normal=(-0.949375 -0.308191 0.060871)} Vertex 2794 -2.57784 20.8517 2.32476 {normal=(-0.851081 0.52066 0.0676334)} Vertex 2795 -2.57693 -41.8906 -4.63483 Vertex 2796 -2.57655 12.249 -1.40043 Vertex 2797 -2.57472 16.678 1.62506 {normal=(-0.931011 0.0172984 0.364581)} Vertex 2798 -2.57339 18.0825 -1.19612 {normal=(-0.941176 -0.205472 0.26827)} Vertex 2799 -2.57212 12.6898 -1.6739 {normal=(-0.979091 0.178577 0.0974232)} Vertex 2800 -2.57008 15.9819 1.66138 {normal=(-0.962738 -0.135552 0.234012)} Vertex 2801 -2.5687 17.3068 1.69191 {normal=(-0.931213 -0.126043 0.341987)} Vertex 2802 -2.56846 17.5042 1.88749 {normal=(-0.926949 -0.355002 0.121405)} Vertex 2803 -2.5661 19.2863 2.4123 {normal=(-0.787456 0.267685 0.55521)} Vertex 2804 -2.56535 18.2129 -1.35952 {normal=(-0.902731 0.251042 0.349363)} Vertex 2805 -2.5606 20.4257 2.41799 {normal=(-0.918936 -0.0869448 0.384705)} Vertex 2806 -2.56024 19.7143 2.46331 {normal=(-0.869747 -0.0276869 0.49272)} Vertex 2807 -2.55959 16.9957 1.67326 {normal=(-0.937196 -0.0280236 0.347675)} Vertex 2808 -2.55948 15.8423 1.56129 {normal=(-0.962974 -0.238557 0.125586)} Vertex 2809 -2.55856 15.7154 0.730696 {normal=(-0.845677 -0.531345 0.0500258)} Vertex 2810 -2.55698 17.5027 2.55192 {normal=(-0.968892 -0.244404 -0.0389207)} Vertex 2811 -2.55636 12.7847 -2.26327 {normal=(-0.974997 0.118131 -0.18822)} Vertex 2812 -2.55599 16.5884 -0.404305 {normal=(-0.821113 -0.241953 -0.516944)} Vertex 2813 -2.55488 16.6052 1.68884 {normal=(-0.938243 0.0267328 0.344944)} Vertex 2814 -2.55304 17.4167 1.80357 {normal=(-0.941377 -0.246711 0.230094)} Vertex 2815 -2.55274 12.7644 -2.27484 Vertex 2816 -2.55218 17.5022 2.20915 {normal=(-0.936254 -0.349909 0.0314951)} Vertex 2817 -2.5519 17.4578 2.7778 {normal=(-0.980504 -0.187927 0.0574125)} Vertex 2818 -2.55014 15.7125 0.359228 {normal=(-0.828459 -0.542675 -0.138419)} Vertex 2819 -2.54825 20.246 2.43654 {normal=(-0.918917 0.0089991 0.394348)} Vertex 2820 -2.54823 20.8817 2.30371 {normal=(-0.499954 0.829021 -0.250542)} Vertex 2821 -2.54513 16.1221 1.77984 {normal=(-0.945274 -0.0275537 0.325112)} Vertex 2822 -2.5434 19.4069 2.40731 {normal=(-0.818503 -0.0533592 0.572019)} Vertex 2823 -2.54333 15.9162 -2.49587 {normal=(-0.876401 -0.465353 -0.123965)} Vertex 2824 -2.54318 16.9639 -0.656394 {normal=(-0.916734 -0.209968 -0.33987)} Vertex 2825 -2.54139 -33.5573 -4.80197 {normal=(0.739668 -0.556421 -0.378534)} Vertex 2826 -2.53978 17.3966 2.57937 {normal=(-0.983797 -0.16471 -0.0708137)} Vertex 2827 -2.5392 17.4407 1.9765 {normal=(-0.944925 -0.320136 0.0680416)} Vertex 2828 -2.53662 17.235 1.76255 {normal=(-0.949598 -0.0886739 0.300667)} Vertex 2829 -2.53595 16.9135 1.7294 {normal=(-0.942632 -0.0241676 0.332959)} Vertex 2830 -2.53533 -43.2861 -4.6068 Vertex 2831 -2.53499 16.5131 1.75532 {normal=(-0.941449 0.0398656 0.334791)} Vertex 2832 -2.53365 12.4805 -1.3075 {normal=(-0.941931 0.0857737 0.324666)} Vertex 2833 -2.53203 19.4851 2.46193 {normal=(-0.766579 -0.220441 0.603128)} Vertex 2834 -2.53177 16.6195 -1.59291 Vertex 2835 -2.53143 17.4765 2.97405 {normal=(-0.936131 -0.215886 0.277583)} Vertex 2836 -2.53056 17.3188 2.78524 {normal=(-0.986575 -0.136669 0.0893985)} Vertex 2837 -2.52887 17.6853 3.10756 {normal=(-0.83354 -0.255937 0.489599)} Vertex 2838 -2.5281 15.6976 1.13755 {normal=(-0.89968 -0.435547 0.0295763)} Vertex 2839 -2.5267 17.2785 2.5925 {normal=(-0.989764 -0.114877 -0.0846739)} Vertex 2840 -2.52613 17.6398 -0.949556 {normal=(-0.895742 -0.123915 -0.426957)} Vertex 2841 -2.52577 -30.3561 -5.11725 {normal=(0.772716 0.11571 -0.624117)} Vertex 2842 -2.52525 15.7087 1.44572 {normal=(-0.937179 -0.347659 0.0287969)} Vertex 2843 -2.52318 17.2779 -0.898622 {normal=(-0.924198 -0.116403 -0.363743)} Vertex 2844 -2.52245 17.4276 2.29467 {normal=(-0.951182 -0.308596 0.00457196)} Vertex 2845 -2.52104 17.3544 1.88329 {normal=(-0.962517 -0.210977 0.170441)} Vertex 2846 -2.52063 15.7903 0.085578 {normal=(-0.707812 -0.568507 -0.419288)} Vertex 2847 -2.51875 17.182 2.77026 {normal=(-0.986081 -0.120005 0.115077)} Vertex 2848 -2.51773 17.1483 2.59134 {normal=(-0.989436 -0.10079 -0.104203)} Vertex 2849 -2.51561 16.8307 1.78394 {normal=(-0.942388 -0.0157878 0.33415)} Vertex 2850 -2.51493 16.4017 1.82452 {normal=(-0.938582 0.0442801 0.342203)} Vertex 2851 -2.51226 17.3703 2.05971 {normal=(-0.959049 -0.278757 0.0501887)} Vertex 2852 -2.51169 17.1543 1.82689 {normal=(-0.962822 -0.0616744 0.263004)} Vertex 2853 -2.51158 17.9003 3.22359 {normal=(-0.781224 -0.180555 0.597569)} Vertex 2854 -2.51088 12.9959 -2.18192 {normal=(-0.958827 0.260777 -0.112459)} Vertex 2855 -2.50948 17.0267 2.60169 {normal=(-0.987476 -0.126872 -0.0937794)} Vertex 2856 -2.50739 20.0721 2.52272 {normal=(-0.898359 0.0273441 0.438411)} Vertex 2857 -2.50617 18.1271 3.26325 {normal=(-0.756988 0.0133185 0.653293)} Vertex 2858 -2.505 15.8455 1.80972 {normal=(-0.946989 -0.160218 0.278464)} Vertex 2859 -2.5038 20.8824 2.28425 {normal=(-0.691781 0.714191 -0.106635)} Vertex 2860 -2.50342 17.3578 2.35121 {normal=(-0.971977 -0.226875 -0.0615555)} Vertex 2861 -2.503 22.5517 -1.1635 {normal=(-0.755194 0.556696 -0.34608)} Vertex 2862 -2.50285 20.8542 -2.62892 {normal=(-0.748985 0.139 -0.647842)} Vertex 2863 -2.50269 15.6349 0.851211 {normal=(-0.839341 -0.543064 0.0242591)} Vertex 2864 -2.49855 16.7473 1.83687 {normal=(-0.940269 0.00792461 0.340339)} Vertex 2865 -2.4976 17.0121 2.74047 {normal=(-0.980757 -0.149295 0.125805)} Vertex 2866 -2.49644 15.6766 1.7137 {normal=(-0.955513 -0.237959 0.174273)} Vertex 2867 -2.49608 17.323 2.98348 {normal=(-0.918548 -0.193787 0.344553)} Vertex 2868 -2.49601 17.2791 1.95571 {normal=(-0.977076 -0.165221 0.134255)} Vertex 2869 -2.49521 16.2579 -0.317702 {normal=(-0.815917 -0.311492 -0.487085)} Vertex 2870 -2.49508 17.2929 2.37876 {normal=(-0.981719 -0.153261 -0.112868)} Vertex 2871 -2.49389 17.0646 1.88492 {normal=(-0.967743 -0.0647529 0.243476)} Vertex 2872 -2.49309 18.3928 3.23327 {normal=(-0.749383 0.164611 0.641348)} Vertex 2873 -2.48853 15.9856 1.91575 {normal=(-0.937426 -0.0775666 0.339436)} Vertex 2874 -2.48826 17.4991 -1.35206 Vertex 2875 -2.48767 17.2928 2.13712 {normal=(-0.972322 -0.228784 0.0474063)} Vertex 2876 -2.48592 16.263 1.91669 {normal=(-0.936903 0.0278373 0.348479)} Vertex 2877 -2.4849 21.699 -2.29608 {normal=(-0.670662 0.738972 -0.0642826)} Vertex 2878 -2.48451 17.2021 2.40527 {normal=(-0.981528 -0.134016 -0.136541)} Vertex 2879 -2.48409 -25.9314 -4.5961 Vertex 2880 -2.48331 13.0918 -1.52276 {normal=(-0.986575 0.144929 0.0752683)} Vertex 2881 -2.48299 15.5955 0.484235 {normal=(-0.806323 -0.588394 -0.0602895)} Vertex 2882 -2.48023 16.6466 1.89546 {normal=(-0.940725 0.0302268 0.33782)} Vertex 2883 -2.47963 18.6968 3.14426 {normal=(-0.753689 0.287401 0.591061)} Vertex 2884 -2.47795 17.191 2.02083 {normal=(-0.983554 -0.128407 0.127013)} Vertex 2885 -2.477 19.6306 -2.75249 {normal=(-0.736847 -0.128481 -0.663739)} Vertex 2886 -2.4769 17.8008 -1.10617 {normal=(-0.887305 -0.177951 -0.425468)} Vertex 2887 -2.4759 20.9915 2.23531 {normal=(-0.918701 0.250961 0.304971)} Vertex 2888 -2.47514 17.2571 2.20544 {normal=(-0.984347 -0.176243 -2.57521e-05)} Vertex 2889 -2.47477 17.1866 2.96751 {normal=(-0.903017 -0.188848 0.385871)} Vertex 2890 -2.47423 16.8292 2.56088 {normal=(-0.989355 -0.121393 -0.0802511)} Vertex 2891 -2.47308 16.9698 1.93242 {normal=(-0.960395 -0.0904615 0.263548)} Vertex 2892 -2.47171 17.0855 2.43074 {normal=(-0.977292 -0.124221 -0.171666)} Vertex 2893 -2.47123 17.2127 2.23305 {normal=(-0.99072 -0.130381 -0.0384067)} Vertex 2894 -2.46886 19.6056 2.57903 {normal=(-0.716674 -0.235416 0.656474)} Vertex 2895 -2.46869 17.15 2.083 {normal=(-0.987061 -0.132121 0.0908563)} Vertex 2896 -2.4681 12.1569 -1.16407 {normal=(-0.92424 -0.135705 0.356882)} Vertex 2897 -2.4676 20.7164 2.76485 {normal=(-0.869315 0.204901 0.449785)} Vertex 2898 -2.46742 15.5809 1.31468 {normal=(-0.881863 -0.47099 -0.0220476)} Vertex 2899 -2.4671 16.809 2.69587 {normal=(-0.979898 -0.167437 0.108461)} Vertex 2900 -2.46658 20.6412 2.77232 {normal=(-0.881283 -0.206549 0.425061)} Vertex 2901 -2.46625 17.4901 3.11752 {normal=(-0.763125 -0.253946 0.594265)} Vertex 2902 -2.46513 12.1366 -1.17564 Vertex 2903 -2.46453 21.2092 2.1569 {normal=(-0.901335 0.196724 0.38587)} Vertex 2904 -2.46405 15.547 1.61857 {normal=(-0.928574 -0.371023 0.00960955)} Vertex 2905 -2.46249 -27.5559 -4.65414 Vertex 2906 -2.46155 16.9707 2.45441 {normal=(-0.974648 -0.0999387 -0.200186)} Vertex 2907 -2.46062 16.5286 1.95973 {normal=(-0.943082 0.0345448 0.330761)} Vertex 2908 -2.46059 17.1328 2.23541 {normal=(-0.987045 -0.15833 -0.0259771)} Vertex 2909 -2.45824 19.2511 2.55918 {normal=(-0.732269 0.430824 0.52742)} Vertex 2910 -2.45647 21.7966 -1.88546 {normal=(-0.712306 0.375763 -0.592809)} Vertex 2911 -2.45634 -32.2006 -2.28971 {normal=(0.803197 -0.132349 0.580826)} Vertex 2912 -2.45537 15.7644 -2.26022 Vertex 2913 -2.45494 17.0705 2.08291 {normal=(-0.98271 -0.14438 0.115913)} Vertex 2914 -2.45363 17.0113 2.93344 {normal=(-0.895651 -0.194157 0.400141)} Vertex 2915 -2.45295 19.124 2.72613 {normal=(-0.737654 0.543042 0.401213)} Vertex 2916 -2.45126 -25.6615 -4.60973 Vertex 2917 -2.45082 22.8572 -0.487035 {normal=(-0.689944 0.713776 -0.120422)} Vertex 2918 -2.45075 21.4503 2.0594 {normal=(-0.874623 0.229086 0.427264)} Vertex 2919 -2.45053 19.3447 2.5227 {normal=(-0.715866 0.224235 0.661252)} Vertex 2920 -2.44972 16.6241 -0.665994 {normal=(-0.920631 -0.223513 -0.320125)} Vertex 2921 -2.44954 19.3096 2.12694 {normal=(-0.997417 -8.52791e-06 0.0718274)} Vertex 2922 -2.44924 16.87 1.9694 {normal=(-0.961767 -0.0629394 0.266538)} Vertex 2923 -2.44856 15.9717 -0.167505 {normal=(-0.823177 -0.379448 -0.422373)} Vertex 2924 -2.44836 19.3096 1.90957 {normal=(-0.996426 -1.0779e-05 -0.0844764)} Vertex 2925 -2.44831 16.394 2.00706 {normal=(-0.944746 0.0298683 0.326439)} Vertex 2926 -2.44783 16.0969 2.03181 {normal=(-0.93108 -0.0217423 0.364168)} Vertex 2927 -2.44701 20.5256 2.70008 {normal=(-0.895527 -0.163614 0.413838)} Vertex 2928 -2.4468 17.0122 -0.997265 {normal=(-0.914623 -0.176698 -0.363652)} Vertex 2929 -2.44411 16.7588 2.43201 {normal=(-0.984318 -0.0537619 -0.168012)} Vertex 2930 -2.44386 15.6132 0.2373 {normal=(-0.669895 -0.656606 -0.346568)} Vertex 2931 -2.44277 17.0234 2.27174 {normal=(-0.987784 -0.141519 -0.0652348)} Vertex 2932 -2.44127 20.8154 2.74016 {normal=(-0.8315 0.342714 0.437213)} Vertex 2933 -2.44102 12.8825 -1.15636 {normal=(-0.947921 0.048974 0.314718)} Vertex 2934 -2.43905 19.4018 2.52046 {normal=(-0.706123 -0.00152699 0.708088)} Vertex 2935 -2.43822 20.59 2.76255 {normal=(-0.845371 -0.387047 0.368162)} Vertex 2936 -2.43802 19.9041 2.67653 {normal=(-0.851477 -0.0487395 0.522123)} Vertex 2937 -2.43727 16.8988 2.33728 {normal=(-0.988345 -0.0862791 -0.12542)} Vertex 2938 -2.43703 13.5027 -1.37436 {normal=(-0.995604 0.08889 0.0295243)} Vertex 2939 -2.43542 15.5382 1.0027 {normal=(-0.827024 -0.562061 -0.0108679)} Vertex 2940 -2.4351 16.5502 2.44011 {normal=(-0.995309 -0.08672 -0.042894)} Vertex 2941 -2.43458 21.7149 1.94278 {normal=(-0.843876 0.288947 0.452088)} Vertex 2942 -2.43379 19.1035 2.13082 {normal=(-0.986041 -0.148836 0.0746362)} Vertex 2943 -2.43379 19.5157 2.13081 {normal=(-0.986046 0.148817 0.0746168)} Vertex 2944 -2.43357 15.5359 0.595206 {normal=(-0.795242 -0.606279 -0.00410099)} Vertex 2945 -2.43282 21.6292 -2.48196 {normal=(-0.719347 0.423363 -0.55073)} Vertex 2946 -2.43265 16.7969 2.88128 {normal=(-0.896828 -0.213515 0.387441)} Vertex 2947 -2.43253 16.5678 2.62457 {normal=(-0.980951 -0.166188 0.100585)} Vertex 2948 -2.432 19.0956 1.9136 {normal=(-0.984615 -0.154521 -0.0815825)} Vertex 2949 -2.432 19.5237 1.91359 {normal=(-0.984614 0.154536 -0.0815772)} Vertex 2950 -2.4309 -11.3423 3.0219 Vertex 2951 -2.43089 16.962 2.11436 {normal=(-0.987468 -0.131019 0.0879837)} Vertex 2952 -2.43048 16.7552 2.01844 {normal=(-0.972973 -0.0125768 0.230576)} Vertex 2953 -2.42812 17.3692 -1.13206 {normal=(-0.89466 -0.083133 -0.438944)} Vertex 2954 -2.42751 20.3482 2.69387 {normal=(-0.898248 -0.0659742 0.434509)} Vertex 2955 -2.42691 17.7134 3.25298 {normal=(-0.69376 -0.28733 0.660408)} Vertex 2956 -2.42683 19.4423 2.53882 {normal=(-0.640276 -0.212539 0.738156)} Vertex 2957 -2.42637 12.6895 -1.66557 Vertex 2958 -2.42633 14.7589 -1.74606 Vertex 2959 -2.42618 12.1175 -0.013846 Vertex 2960 -2.42616 14.0353 0.16341 Vertex 2961 -2.42613 17.8762 -1.25594 Vertex 2962 -2.42593 11.8018 0.889532 Vertex 2963 -2.42592 13.0009 1.20876 Vertex 2964 -2.42576 13.2844 -3.40238 Vertex 2965 -2.4257 14.0406 -3.75157 Vertex 2966 -2.42568 11.5285 1.66807 Vertex 2967 -2.42568 11.8225 2.11012 Vertex 2968 -2.42234 15.8273 2.0426 {normal=(-0.926836 -0.131748 0.351593)} Vertex 2969 -2.42194 12.3681 -1.08271 {normal=(-0.902121 0.0411498 0.429516)} Vertex 2970 -2.4215 17.3248 3.11051 {normal=(-0.664852 -0.255544 0.701904)} Vertex 2971 -2.4196 18.9814 3.02407 {normal=(-0.746517 0.485181 0.455316)} Vertex 2972 -2.41925 16.2132 2.1118 {normal=(-0.972894 -0.0130131 0.230883)} Vertex 2973 -2.41714 20.9017 2.7179 {normal=(-0.825557 0.357571 0.436576)} Vertex 2974 -2.41678 16.6257 2.07954 {normal=(-0.983165 0.00107383 0.182715)} Vertex 2975 -2.41671 19.3097 2.34183 {normal=(-0.974031 3.02813e-05 0.226417)} Vertex 2976 -2.41645 16.8393 2.16571 {normal=(-0.99736 -0.0705452 0.0172429)} Vertex 2977 -2.41644 21.9564 1.80206 {normal=(-0.816952 0.36721 0.444686)} Vertex 2978 -2.4154 13.398 -2.03078 {normal=(-0.960104 0.239774 -0.143903)} Vertex 2979 -2.41446 15.4838 1.87269 {normal=(-0.944329 -0.227496 0.237672)} Vertex 2980 -2.41319 19.3096 1.69506 {normal=(-0.986826 -1.13487e-05 -0.161785)} Vertex 2981 -2.41282 19.3352 2.56621 {normal=(-0.722335 0.293425 0.626206)} Vertex 2982 -2.41248 15.4049 1.76572 {normal=(-0.927738 -0.372853 0.0168279)} Vertex 2983 -2.41181 15.6667 1.98798 {normal=(-0.931009 -0.176404 0.319538)} Vertex 2984 -2.4116 16.7024 2.23696 {normal=(-0.997763 -0.0429951 -0.0511969)} Vertex 2985 -2.41024 16.2728 2.36158 {normal=(-0.991996 -0.118575 0.0434057)} Vertex 2986 -2.40879 16.497 2.255 {normal=(-0.998874 -0.0220765 -0.0419813)} Vertex 2987 -2.40835 13.9226 -1.22871 {normal=(-0.998599 0.048869 -0.0202839)} Vertex 2988 -2.40802 16.2231 2.21983 {normal=(-0.995825 -0.0668095 0.0621964)} Vertex 2989 -2.40766 15.4565 1.52431 {normal=(-0.861533 -0.500409 -0.0857485)} Vertex 2990 -2.40704 16.4854 2.12529 {normal=(-0.987632 0.00862924 0.15655)} Vertex 2991 -2.40562 14.439 -1.07529 {normal=(-0.996743 0.0339748 -0.0731429)} Vertex 2992 -2.40561 21.6929 -2.1762 {normal=(-0.485596 0.818505 0.306996)} Vertex 2993 -2.40391 17.9407 3.35805 {normal=(-0.672248 -0.135644 0.727793)} Vertex 2994 -2.40195 19.1166 2.34546 {normal=(-0.96337 -0.139474 0.229054)} Vertex 2995 -2.40195 19.5027 2.34545 {normal=(-0.963372 0.139505 0.229024)} Vertex 2996 -2.40109 16.55 2.80839 {normal=(-0.895752 -0.24273 0.37244)} Vertex 2997 -2.39663 19.0929 1.69913 {normal=(-0.974903 -0.155976 -0.158856)} Vertex 2998 -2.39663 19.5263 1.69912 {normal=(-0.974907 0.15594 -0.158867)} Vertex 2999 -2.39653 15.7488 -0.0069 {normal=(-0.820826 -0.472649 -0.320698)} Vertex 3000 -2.39631 22.1747 1.63722 {normal=(-0.794141 0.44087 0.418299)} Vertex 3001 -2.39532 14.8428 -0.547725 {normal=(-0.983295 -0.0387231 0.177853)} Vertex 3002 -2.39522 20.9752 2.69806 {normal=(-0.736799 0.567164 0.368038)} Vertex 3003 -2.39463 17.1894 3.08652 {normal=(-0.592772 -0.261467 0.761745)} Vertex 3004 -2.39406 15.0521 -0.914126 {normal=(-0.99288 0.0715898 -0.0952036)} Vertex 3005 -2.39388 16.2886 2.52657 {normal=(-0.973485 -0.186733 0.132128)} Vertex 3006 -2.3934 13.2935 -1.00796 {normal=(-0.958294 -0.0161893 0.285326)} Vertex 3007 -2.39288 12.0844 -0.979927 {normal=(-0.954289 -0.0954347 0.28324)} Vertex 3008 -2.39148 15.9239 2.14826 {normal=(-0.942719 -0.114789 0.313217)} Vertex 3009 -2.39036 -33.5131 -4.9756 Vertex 3010 -2.39025 16.3144 -0.622332 {normal=(-0.940369 -0.195106 -0.278639)} Vertex 3011 -2.39019 12.0641 -0.991501 Vertex 3012 -2.38938 7.39991 4.99909 Vertex 3013 -2.38907 16.4629 -3.28168 {normal=(-0.762844 -0.159546 -0.62659)} Vertex 3014 -2.38693 18.9025 2.14235 {normal=(-0.952197 -0.294005 0.08296)} Vertex 3015 -2.38692 19.7168 2.14233 {normal=(-0.952201 0.294 0.0829253)} Vertex 3016 -2.3865 11.132 -5.6933 {normal=(-0.0423271 0.227806 -0.972786)} Vertex 3017 -2.38552 -32.2529 -5.28061 {normal=(0.819317 -0.134023 -0.557456)} Vertex 3018 -2.3836 14.2297 -0.708894 {normal=(-0.974188 -0.0773913 0.212056)} Vertex 3019 -2.38355 17.2575 -3.2152 {normal=(-0.765187 0.135325 -0.629426)} Vertex 3020 -2.38333 18.8868 1.92557 {normal=(-0.949471 -0.305257 -0.0729572)} Vertex 3021 -2.38333 19.7324 1.92555 {normal=(-0.949479 0.30523 -0.072975)} Vertex 3022 -2.38268 19.3997 2.57875 {normal=(-0.588591 0.164157 0.791589)} Vertex 3023 -2.38142 18.2008 3.38196 {normal=(-0.625112 0.0740662 0.777013)} Vertex 3024 -2.38131 19.3922 2.58178 {normal=(-0.609975 0.210148 0.764047)} Vertex 3025 -2.37983 16.2147 -1.99832 {normal=(0.594369 -0.384521 0.706307)} Vertex 3026 -2.37958 15.4877 0.373321 {normal=(-0.687484 -0.678973 -0.257608)} Vertex 3027 -2.37773 15.9721 2.22351 {normal=(-0.97178 -0.155452 0.17742)} Vertex 3028 -2.37364 15.462 0.729283 {normal=(-0.789673 -0.613527 0.000812972)} Vertex 3029 -2.37281 -31.3416 -2.10853 {normal=(0.700858 -0.159383 0.695266)} Vertex 3030 -2.37127 17.014 3.04722 {normal=(-0.554704 -0.255655 0.791798)} Vertex 3031 -2.37053 15.4358 1.19234 {normal=(-0.816438 -0.5752 -0.0507295)} Vertex 3032 -2.37004 19.4215 2.57898 {normal=(-0.607712 -0.0703815 0.791033)} Vertex 3033 -2.36949 13.7133 -0.862307 {normal=(-0.965249 -0.0634931 0.253503)} Vertex 3034 -2.36885 22.3794 1.45092 {normal=(-0.769623 0.508542 0.38609)} Vertex 3035 -2.36811 15.294 -0.36364 {normal=(-0.988894 -0.026805 0.146188)} Vertex 3036 -2.36797 13.0508 -2.68051 {normal=(-0.879552 0.23463 -0.41393)} Vertex 3037 -2.36744 16.0201 2.34359 {normal=(-0.969878 -0.193897 0.147449)} Vertex 3038 -2.36646 20.2103 2.79921 {normal=(-0.889105 -0.0401708 0.455938)} Vertex 3039 -2.3655 19.5301 2.62167 {normal=(-0.572121 -0.340901 0.745965)} Vertex 3040 -2.36479 13.0305 -2.69208 Vertex 3041 -2.36455 19.3914 2.59108 {normal=(-0.646858 0.34956 0.677778)} Vertex 3042 -2.36415 21.6966 -2.1019 {normal=(-0.631039 0.774785 0.0386949)} Vertex 3043 -2.36378 19.4121 2.58402 {normal=(-0.595087 0.0767192 0.799991)} Vertex 3044 -2.36249 21.0142 2.67548 {normal=(-0.394473 0.908885 0.135346)} Vertex 3045 -2.36241 19.4046 2.58704 {normal=(-0.584264 0.209662 0.784014)} Vertex 3046 -2.36222 16.0345 -0.525407 {normal=(-0.969162 -0.145 -0.199247)} Vertex 3047 -2.36166 15.4926 -0.744391 {normal=(-0.993104 0.072752 -0.0919288)} Vertex 3048 -2.36053 21.7101 -2.07318 {normal=(-0.723409 0.558443 -0.405982)} Vertex 3049 -2.36038 16.7494 -1.06916 {normal=(-0.916375 -0.183098 -0.355994)} Vertex 3050 -2.35894 16.2705 2.7148 {normal=(-0.892415 -0.262719 0.366843)} Vertex 3051 -2.35804 18.9282 2.35626 {normal=(-0.931634 -0.275588 0.236873)} Vertex 3052 -2.35804 19.6911 2.35624 {normal=(-0.931646 0.275583 0.236831)} Vertex 3053 -2.35756 19.3933 2.5966 {normal=(-0.795513 0.321543 0.513584)} Vertex 3054 -2.35674 12.0519 -0.836433 {normal=(-0.949362 -0.0835949 0.302859)} Vertex 3055 -2.35655 15.333 1.68986 {normal=(-0.842013 -0.514769 -0.161326)} Vertex 3056 -2.35635 17.4984 3.2082 {normal=(-0.568809 -0.329386 0.753632)} Vertex 3057 -2.35542 19.4065 2.59256 {normal=(-0.785179 0.161673 0.597792)} Vertex 3058 -2.35476 15.7606 -0.566094 {normal=(-0.99775 0.00726066 -0.0666568)} Vertex 3059 -2.35474 -30.8039 -2.24334 Vertex 3060 -2.35429 12.0315 -0.848005 Vertex 3061 -2.3542 13.8089 -1.88238 {normal=(-0.959595 0.19765 -0.20028)} Vertex 3062 -2.35391 19.7684 2.75862 {normal=(-0.677477 -0.300114 0.671533)} Vertex 3063 -2.35334 19.3997 2.60385 {normal=(-0.890939 0.274618 0.36168)} Vertex 3064 -2.35143 16.7983 2.99258 {normal=(-0.552087 -0.26753 0.789701)} Vertex 3065 -2.35066 19.3097 2.54893 {normal=(-0.926813 2.86242e-05 0.375524)} Vertex 3066 -2.34856 19.1688 -2.73188 {normal=(-0.750661 -0.0693445 -0.657038)} Vertex 3067 -2.34834 19.3666 2.63376 {normal=(-0.846309 0.282501 0.451613)} Vertex 3068 -2.34735 18.8816 1.71125 {normal=(-0.939446 -0.308049 -0.150158)} Vertex 3069 -2.34735 19.7377 1.71123 {normal=(-0.939434 0.308086 -0.150156)} Vertex 3070 -2.34716 15.5833 -0.156639 {normal=(-0.985332 -0.167974 0.0300994)} Vertex 3071 -2.34571 12.2956 -0.898571 {normal=(-0.935917 0.0870472 0.341296)} Vertex 3072 -2.34433 18.5497 3.33846 {normal=(-0.650254 0.198441 0.733343)} Vertex 3073 -2.34184 19.3236 2.67149 {normal=(-0.827131 0.363805 0.428369)} Vertex 3074 -2.33919 -35.0338 -3.30494 {normal=(0.943779 -0.162573 0.28784)} Vertex 3075 -2.33784 17.5367 -1.3271 {normal=(-0.878569 -0.116575 -0.463171)} Vertex 3076 -2.33747 20.3223 -2.91731 {normal=(-0.709723 0.0708181 -0.700912)} Vertex 3077 -2.33726 19.1343 2.55223 {normal=(-0.917124 -0.126768 0.377908)} Vertex 3078 -2.33726 19.485 2.55222 {normal=(-0.917123 0.126796 0.377899)} Vertex 3079 -2.33724 19.3852 2.65199 {normal=(-0.892372 0.262695 0.366965)} Vertex 3080 -2.33679 15.5892 0.164112 {normal=(-0.791991 -0.561385 -0.239994)} Vertex 3081 -2.33474 15.9937 2.47786 {normal=(-0.950656 -0.234803 0.202782)} Vertex 3082 -2.33416 15.4141 0.493643 {normal=(-0.741842 -0.65944 -0.121698)} Vertex 3083 -2.33406 22.5705 1.24316 {normal=(-0.731354 0.593297 0.336334)} Vertex 3084 -2.33396 15.9939 -3.08556 {normal=(-0.732021 -0.418413 -0.537657)} Vertex 3085 -2.33377 7.56557 5.12066 Vertex 3086 -2.33247 17.1237 -1.27432 {normal=(-0.859181 -0.121134 -0.497126)} Vertex 3087 -2.33131 19.2218 2.82139 {normal=(-0.775685 0.508975 0.373172)} Vertex 3088 -2.32818 12.7701 -0.931575 {normal=(-0.905612 0.00610877 0.424063)} Vertex 3089 -2.32559 18.8597 3.25166 {normal=(-0.685606 0.339665 0.643872)} Vertex 3090 -2.32526 -30.3048 -2.1879 {normal=(0.779013 -0.0659338 0.623531)} Vertex 3091 -2.32193 15.1855 1.90996 {normal=(-0.875086 -0.481901 0.0446856)} Vertex 3092 -2.32021 13.262 -2.59915 {normal=(-0.868408 0.343606 -0.357495)} Vertex 3093 -2.31896 21.0188 2.65016 {normal=(-0.527427 0.816049 0.236399)} Vertex 3094 -2.3174 18.3778 -2.88612 {normal=(-0.769343 0.158071 -0.618971)} Vertex 3095 -2.31673 17.267 -1.71016 {normal=(0.742924 -0.243053 0.62369)} Vertex 3096 -2.31639 17.733 3.36637 {normal=(-0.57618 -0.315807 0.753845)} Vertex 3097 -2.31596 -30.8593 -2.03129 Vertex 3098 -2.31481 16.5473 2.92496 {normal=(-0.567558 -0.294273 0.768948)} Vertex 3099 -2.31428 15.2638 2.03824 {normal=(-0.887831 -0.324026 0.326746)} Vertex 3100 -2.314 -34.0872 -4.97328 {normal=(0.801999 -0.169747 -0.572698)} Vertex 3101 -2.31245 19.3388 2.73603 {normal=(-0.858071 0.303288 0.414404)} Vertex 3102 -2.31073 19.4876 2.64537 {normal=(-0.639772 -0.214846 0.737925)} Vertex 3103 -2.3101 18.7115 2.16124 {normal=(-0.896724 -0.431924 0.0965793)} Vertex 3104 -2.3101 19.9078 2.16121 {normal=(-0.896706 0.431965 0.0965632)} Vertex 3105 -2.30978 20.0342 2.90092 {normal=(-0.834598 -0.13704 0.533542)} Vertex 3106 -2.30933 15.3276 1.42013 {normal=(-0.809923 -0.577679 -0.101548)} Vertex 3107 -2.30863 -23.877 -1.74521 Vertex 3108 -2.30848 19.3809 2.72552 {normal=(-0.876881 0.251127 0.409896)} Vertex 3109 -2.30814 12.2631 -0.755078 {normal=(-0.931976 0.0889871 0.351428)} Vertex 3110 -2.30787 19.086 3.09316 {normal=(-0.696271 0.529947 0.48411)} Vertex 3111 -2.30682 17.3241 3.16631 {normal=(-0.429894 -0.327855 0.84125)} Vertex 3112 -2.30532 14.2287 -1.73672 {normal=(-0.952753 0.159788 -0.258322)} Vertex 3113 -2.30463 16.0309 2.66512 {normal=(-0.873015 -0.2785 0.400353)} Vertex 3114 -2.30457 19.4781 2.65015 {normal=(-0.763763 0.0123568 0.645378)} Vertex 3115 -2.30355 18.6885 1.94519 {normal=(-0.891884 -0.448427 -0.0587978)} Vertex 3116 -2.30354 19.9308 1.94516 {normal=(-0.891881 0.448427 -0.0588316)} Vertex 3117 -2.30271 15.3737 0.886465 {normal=(-0.780077 -0.625324 -0.0212063)} Vertex 3118 -2.30262 -24.1483 -1.76796 Vertex 3119 -2.30095 19.4693 2.65741 {normal=(-0.839905 0.233703 0.489839)} Vertex 3120 -2.3006 16.4828 -1.1148 {normal=(-0.936926 -0.125229 -0.326324)} Vertex 3121 -2.30041 22.7821 0.875445 {normal=(-0.697415 0.659425 0.280662)} Vertex 3122 -2.30041 14.7304 -0.322939 {normal=(-0.932302 -0.114594 0.343046)} Vertex 3123 -2.29985 19.461 2.66714 {normal=(-0.855869 0.349067 0.381629)} Vertex 3124 -2.29739 18.9633 2.56203 {normal=(-0.888275 -0.250453 0.38502)} Vertex 3125 -2.29739 19.656 2.56201 {normal=(-0.888305 0.250426 0.384969)} Vertex 3126 -2.29416 15.6057 2.2721 {normal=(-0.898709 -0.219595 0.379605)} Vertex 3127 -2.29206 15.4456 2.19616 {normal=(-0.880771 -0.243052 0.406409)} Vertex 3128 -2.28939 19.2559 2.87058 {normal=(-0.734812 0.536716 0.414712)} Vertex 3129 -2.28939 -33.5132 -3.54935 {normal=(0.869741 -0.489497 0.0627903)} Vertex 3130 -2.28828 15.4563 0.308415 {normal=(-0.804896 -0.554517 -0.211311)} Vertex 3131 -2.28778 15.172 -0.149886 {normal=(-0.950374 -0.12812 0.283504)} Vertex 3132 -2.28675 19.4542 2.7067 {normal=(-0.8581 0.366742 0.359396)} Vertex 3133 -2.28617 15.4422 0.035051 {normal=(-0.958721 -0.25274 0.130293)} Vertex 3134 -2.28607 18.7493 2.37396 {normal=(-0.879645 -0.404828 0.249676)} Vertex 3135 -2.28606 19.87 2.37393 {normal=(-0.879637 0.404887 0.24961)} Vertex 3136 -2.28465 12.0021 -0.670662 {normal=(-0.90227 -0.128988 0.411425)} Vertex 3137 -2.28249 11.9817 -0.682235 Vertex 3138 -2.28176 17.9757 3.45587 {normal=(-0.505529 -0.0899261 0.85811)} Vertex 3139 -2.28128 15.6539 2.34734 {normal=(-0.909908 -0.262444 0.321232)} Vertex 3140 -2.27861 15.6648 -2.85336 {normal=(-0.704307 -0.584893 -0.402309)} Vertex 3141 -2.27839 14.7452 -1.58331 {normal=(-0.941943 0.132453 -0.308543)} Vertex 3142 -2.27833 13.1811 -0.783177 {normal=(-0.910864 -0.0619154 0.408036)} Vertex 3143 -2.27832 17.1904 3.12731 {normal=(-0.322767 -0.312357 0.893451)} Vertex 3144 -2.27673 20.5244 3.12088 {normal=(-0.837665 -0.184813 0.513966)} Vertex 3145 -2.27621 14.1173 -0.484108 {normal=(-0.920726 -0.137348 0.36524)} Vertex 3146 -2.27592 -26.0217 -4.7316 Vertex 3147 -2.27571 16.2122 -1.1342 {normal=(-0.954651 -0.0623939 -0.291116)} Vertex 3148 -2.27559 21.1295 2.60413 {normal=(-0.799824 0.376323 0.467613)} Vertex 3149 -2.27358 15.3341 0.633656 {normal=(-0.761581 -0.647456 -0.0281971)} Vertex 3150 -2.27341 -24.1989 -4.68357 Vertex 3151 -2.2702 20.4037 3.0332 {normal=(-0.901413 -0.165612 0.400034)} Vertex 3152 -2.27015 -25.6136 -1.89087 Vertex 3153 -2.26854 20.6076 3.1192 {normal=(-0.758582 0.219464 0.613505)} Vertex 3154 -2.26789 23.0141 0.347768 {normal=(-0.626769 0.766071 0.142464)} Vertex 3155 -2.26657 18.6807 1.73112 {normal=(-0.88131 -0.45259 -0.135846)} Vertex 3156 -2.26656 19.9385 1.73109 {normal=(-0.881327 0.452538 -0.135913)} Vertex 3157 -2.26589 17.6154 -1.49608 {normal=(-0.864398 -0.206938 -0.45825)} Vertex 3158 -2.26585 19.3432 2.81356 {normal=(-0.756279 0.361722 0.54516)} Vertex 3159 -2.26414 -25.8848 -1.91362 Vertex 3160 -2.26162 19.4488 2.7761 {normal=(-0.847398 0.311844 0.429731)} Vertex 3161 -2.2614 16.2607 2.84436 {normal=(-0.594614 -0.303086 0.744697)} Vertex 3162 -2.25874 17.7304 -1.59039 Vertex 3163 -2.25808 19.3885 2.8094 {normal=(-0.804635 0.188603 0.56302)} Vertex 3164 -2.25735 15.2036 1.6368 {normal=(-0.800231 -0.57139 -0.182056)} Vertex 3165 -2.25706 20.4698 3.10082 {normal=(-0.837994 -0.335917 0.430031)} Vertex 3166 -2.25674 15.3499 0.426008 {normal=(-0.830684 -0.547818 -0.0992991)} Vertex 3167 -2.25611 22.4791 -1.63011 {normal=(-0.668078 0.515919 -0.536189)} Vertex 3168 -2.25512 15.683 2.47845 {normal=(-0.880758 -0.329315 0.340319)} Vertex 3169 -2.25506 13.6009 -0.637521 {normal=(-0.914188 -0.116096 0.388307)} Vertex 3170 -2.25506 19.665 2.76901 {normal=(-0.518091 -0.422875 0.743477)} Vertex 3171 -2.25303 19.3097 2.74314 {normal=(-0.856893 3.48615e-05 0.515494)} Vertex 3172 -2.25165 15.9739 -1.19331 {normal=(-0.954474 0.000216207 -0.298295)} Vertex 3173 -2.25053 17.0201 3.08181 {normal=(-0.26406 -0.276475 0.924031)} Vertex 3174 -2.24935 21.4833 -2.73383 {normal=(-0.666811 0.277059 -0.69181)} Vertex 3175 -2.24919 12.6976 -0.747435 {normal=(-0.937022 0.0489101 0.34583)} Vertex 3176 -2.24778 19.1484 3.10031 {normal=(-0.611961 0.606494 0.507611)} Vertex 3177 -2.2436 17.504 3.2882 {normal=(-0.487544 -0.406426 0.772734)} Vertex 3178 -2.24329 15.3582 -1.42214 {normal=(-0.936672 0.141674 -0.320272)} Vertex 3179 -2.24245 -25.6286 -4.77163 Vertex 3180 -2.24132 19.1564 2.74603 {normal=(-0.848418 -0.110905 0.517578)} Vertex 3181 -2.24132 19.4629 2.74602 {normal=(-0.848411 0.110935 0.517583)} Vertex 3182 -2.24058 -23.929 -4.6972 Vertex 3183 -2.24051 19.2803 2.91 {normal=(-0.581231 0.639593 0.503082)} Vertex 3184 -2.23816 15.8314 2.65936 {normal=(-0.822207 -0.31966 0.470948)} Vertex 3185 -2.23773 -33.7206 -5.04736 Vertex 3186 -2.23651 16.9032 -1.37634 {normal=(-0.839482 -0.114528 -0.531182)} Vertex 3187 -2.23644 15.3215 0.192417 {normal=(-0.958265 -0.272293 0.0870899)} Vertex 3188 -2.23475 12.2132 -0.589307 {normal=(-0.884299 0.0402034 0.465187)} Vertex 3189 -2.23251 15.2732 1.07871 {normal=(-0.77233 -0.632095 -0.0629514)} Vertex 3190 -2.23249 20.7193 3.09577 {normal=(-0.696498 0.355851 0.623105)} Vertex 3191 -2.23239 21.3462 2.5374 {normal=(-0.791027 0.329273 0.515612)} Vertex 3192 -2.23235 19.8915 2.94114 {normal=(-0.628119 -0.423363 0.652864)} Vertex 3193 -2.23204 18.8009 2.5781 {normal=(-0.84104 -0.367846 0.396663)} Vertex 3194 -2.23204 19.8185 2.57807 {normal=(-0.841035 0.367935 0.396591)} Vertex 3195 -2.22866 -27.4857 -2.0479 Vertex 3196 -2.2239 19.4421 2.83946 {normal=(-0.788811 0.166579 0.591632)} Vertex 3197 -2.22345 16.8133 3.0298 {normal=(-0.248079 -0.263496 0.932216)} Vertex 3198 -2.22299 15.4756 -2.58509 Vertex 3199 -2.22199 14.6579 -0.1388 {normal=(-0.939114 -0.123078 0.320806)} Vertex 3200 -2.2208 15.7678 -1.29214 {normal=(-0.941622 0.0891326 -0.32466)} Vertex 3201 -2.2205 15.0835 0.025329 {normal=(-0.955366 -0.154047 0.252081)} Vertex 3202 -2.22008 -22.2766 -1.94615 Vertex 3203 -2.21682 20.2707 3.10395 {normal=(-0.827058 -0.135745 0.54548)} Vertex 3204 -2.21616 15.0636 1.84234 {normal=(-0.772793 -0.617957 -0.144638)} Vertex 3205 -2.21479 19.3456 2.86844 {normal=(-0.65438 0.370261 0.659313)} Vertex 3206 -2.2147 13.664 -2.44802 {normal=(-0.863902 0.33082 -0.379778)} Vertex 3207 -2.21147 16.0618 2.80064 {normal=(-0.608813 -0.285694 0.740085)} Vertex 3208 -2.20855 17.2983 -1.48755 {normal=(-0.810203 -0.139666 -0.569267)} Vertex 3209 -2.20838 12.6651 -0.60394 {normal=(-0.931401 0.0481408 0.360797)} Vertex 3210 -2.20647 19.007 2.7546 {normal=(-0.823187 -0.219139 0.523777)} Vertex 3211 -2.20647 19.6124 2.75458 {normal=(-0.823187 0.219124 0.523783)} Vertex 3212 -2.20598 18.254 3.48179 {normal=(-0.443543 0.0706443 0.893465)} Vertex 3213 -2.2052 18.5352 2.18703 {normal=(-0.820956 -0.55925 0.115196)} Vertex 3214 -2.2052 20.084 2.18699 {normal=(-0.820927 0.559292 0.115204)} Vertex 3215 -2.20497 15.2214 0.315462 {normal=(-0.933432 -0.342809 0.10577)} Vertex 3216 -2.20264 19.6084 2.77633 {normal=(-0.617682 -0.260282 0.742106)} Vertex 3217 -2.20104 19.3914 2.87476 {normal=(-0.722882 0.116093 0.681149)} Vertex 3218 -2.19977 15.2515 0.564334 {normal=(-0.808667 -0.587566 0.0286947)} Vertex 3219 -2.19928 20.8189 3.07408 {normal=(-0.69332 0.362658 0.622725)} Vertex 3220 -2.19774 15.2479 0.793363 {normal=(-0.753113 -0.657679 -0.016702)} Vertex 3221 -2.19728 17.7443 3.44772 {normal=(-0.400229 -0.312052 0.86165)} Vertex 3222 -2.19667 19.5987 2.7806 {normal=(-0.757994 -0.00127717 0.652261)} Vertex 3223 -2.195 13.1086 -0.599037 {normal=(-0.93818 -0.0294421 0.344894)} Vertex 3224 -2.195 19.5772 2.79264 {normal=(-0.839778 0.347619 0.417053)} Vertex 3225 -2.19461 18.5054 1.97197 {normal=(-0.81321 -0.580629 -0.0394829)} Vertex 3226 -2.1946 20.1139 1.97193 {normal=(-0.81321 0.580634 -0.0394266)} Vertex 3227 -2.19412 19.5883 2.78604 {normal=(-0.824724 0.211349 0.524559)} Vertex 3228 -2.19214 17.3234 3.22211 {normal=(-0.398886 -0.414876 0.817782)} Vertex 3229 -2.19158 14.0449 -0.299968 {normal=(-0.93324 -0.135029 0.332912)} Vertex 3230 -2.19132 18.9711 3.31763 {normal=(-0.577662 0.426236 0.696154)} Vertex 3231 -2.19127 19.5586 2.81904 {normal=(-0.83221 0.391154 0.39297)} Vertex 3232 -2.19027 22.9227 -1.10581 {normal=(-0.594121 0.743951 -0.305872)} Vertex 3233 -2.18948 18.4809 3.47171 {normal=(-0.492035 0.125873 0.861428)} Vertex 3234 -2.1878 18.5841 2.39812 {normal=(-0.808614 -0.524186 0.267155)} Vertex 3235 -2.18779 20.0352 2.39808 {normal=(-0.808587 0.524286 0.267042)} Vertex 3236 -2.18579 19.3479 2.89498 {normal=(-0.417204 0.388426 0.821624)} Vertex 3237 -2.18468 19.2951 2.93966 {normal=(-0.471343 0.68183 0.559415)} Vertex 3238 -2.18293 19.5323 2.86524 {normal=(-0.817863 0.312264 0.483312)} Vertex 3239 -2.18224 21.5831 2.44988 {normal=(-0.752165 0.373961 0.542588)} Vertex 3240 -2.18206 19.1996 3.09872 {normal=(-0.466731 0.711438 0.525374)} Vertex 3241 -2.17885 19.3501 2.89318 {normal=(0.775095 0.281492 0.565676)} Vertex 3242 -2.1768 11.935 -0.482614 {normal=(-0.860512 -0.159723 0.483744)} Vertex 3243 -2.17651 15.0284 0.162007 {normal=(-0.940869 -0.213418 0.263093)} Vertex 3244 -2.17593 19.3504 2.35203 {normal=(0.635332 0.307776 0.708256)} Vertex 3245 -2.17556 19.351 2.71219 {normal=(0.983799 0.179199 0.00517859)} Vertex 3246 -2.17551 20.1046 3.13649 {normal=(-0.737033 -0.246202 0.629418)} Vertex 3247 -2.17503 11.9146 -0.494187 Vertex 3248 -2.1737 16.5597 2.97428 {normal=(-0.292781 -0.263369 0.919193)} Vertex 3249 -2.17358 19.4339 2.89678 {normal=(-0.714178 0.0714443 0.696308)} Vertex 3250 -2.17207 7.80563 5.07598 Vertex 3251 -2.17154 14.6254 0.004696 {normal=(-0.925834 -0.143074 0.349801)} Vertex 3252 -2.17091 18.759 3.40889 {normal=(-0.595249 0.246299 0.764863)} Vertex 3253 -2.16977 19.3925 2.90644 {normal=(-0.298743 -0.180399 0.937128)} Vertex 3254 -2.16919 13.5284 -0.453381 {normal=(-0.935172 -0.0980561 0.34035)} Vertex 3255 -2.1689 20.9064 3.05414 {normal=(-0.610022 0.524014 0.594376)} Vertex 3256 -2.16715 19.7935 -3.07764 {normal=(-0.663593 -0.0780433 -0.744012)} Vertex 3257 -2.16664 15.1605 1.30602 {normal=(-0.765932 -0.63278 -0.11374)} Vertex 3258 -2.16503 15.9504 2.7938 {normal=(-0.635292 -0.241572 0.733517)} Vertex 3259 -2.16428 19.3919 2.90443 {normal=(0.663677 -0.546407 0.510854)} Vertex 3260 -2.16396 15.9525 -2.29455 {normal=(0.458136 -0.404826 0.791346)} Vertex 3261 -2.16332 19.5038 2.90373 {normal=(-0.751961 0.115953 0.64893)} Vertex 3262 -2.16316 19.3892 2.36297 {normal=(0.6137 -0.428505 0.663141)} Vertex 3263 -2.16207 19.3908 2.72327 {normal=(0.894602 -0.446816 0.00659227)} Vertex 3264 -2.16201 17.1913 3.1681 {normal=(-0.314081 -0.383214 0.86862)} Vertex 3265 -2.15681 16.6679 -1.47148 {normal=(-0.842524 -0.0532155 -0.536024)} Vertex 3266 -2.15628 18.4954 1.75824 {normal=(-0.801917 -0.586004 -0.116314)} Vertex 3267 -2.15627 20.1239 1.7582 {normal=(-0.801942 0.585956 -0.116381)} Vertex 3268 -2.15623 17.0575 3.11865 {normal=(-0.26826 -0.307554 0.912933)} Vertex 3269 -2.1545 -32.3061 -3.02674 Vertex 3270 -2.1527 19.304 2.95305 {normal=(-0.268005 0.798246 0.539423)} Vertex 3271 -2.15024 -32.8637 -2.9009 {normal=(0.863126 -0.205624 0.46123)} Vertex 3272 -2.14978 13.076 -0.455543 {normal=(-0.930454 -0.0302035 0.365161)} Vertex 3273 -2.14935 18.865 2.76864 {normal=(-0.781854 -0.321892 0.533937)} Vertex 3274 -2.14935 19.7544 2.76862 {normal=(-0.781824 0.321942 0.533951)} Vertex 3275 -2.14654 15.0562 2.20287 {normal=(-0.792558 -0.433139 0.429236)} Vertex 3276 -2.14597 19.4287 2.92424 {normal=(-0.356252 -0.30123 0.884503)} Vertex 3277 -2.14458 19.3071 2.95019 {normal=(0.242084 0.927012 0.286433)} Vertex 3278 -2.14281 18.6509 2.60004 {normal=(-0.776521 -0.476284 0.412515)} Vertex 3279 -2.14281 19.9684 2.60001 {normal=(-0.776475 0.476385 0.412486)} Vertex 3280 -2.14224 15.1281 0.460017 {normal=(-0.865834 -0.467241 0.178933)} Vertex 3281 -2.14215 19.3094 2.40781 {normal=(0.369225 0.872675 0.319549)} Vertex 3282 -2.14119 19.4219 2.37983 {normal=(0.485573 -0.691028 0.535443)} Vertex 3283 -2.14106 19.3088 2.76844 {normal=(0.629775 0.776728 0.0087761)} Vertex 3284 -2.14105 19.4264 2.92183 {normal=(0.470614 -0.754046 0.458188)} Vertex 3285 -2.14009 14.0123 -0.156473 {normal=(-0.920098 -0.143672 0.364387)} Vertex 3286 -2.13947 -11.2875 3.18019 {normal=(-0.19916 -0.390296 0.898891)} Vertex 3287 -2.13946 19.4241 2.74036 {normal=(0.742477 -0.669831 0.00735437)} Vertex 3288 -2.13852 -24.2354 -1.57445 Vertex 3289 -2.13531 19.0389 3.30479 {normal=(-0.476496 0.55715 0.6801)} Vertex 3290 -2.13501 14.0749 -2.29962 {normal=(-0.856337 0.295243 -0.423697)} Vertex 3291 -2.13415 19.7821 2.91988 {normal=(-0.441789 -0.536674 0.718891)} Vertex 3292 -2.13274 20.9554 3.02718 {normal=(-0.295697 0.857443 0.421135)} Vertex 3293 -2.13242 19.4732 2.93451 {normal=(-0.664171 -0.00451598 0.747567)} Vertex 3294 -2.13197 12.6153 -0.438169 {normal=(-0.882389 0.00754846 0.47046)} Vertex 3295 -2.12798 17.5067 3.35752 {normal=(-0.347448 -0.426367 0.835159)} Vertex 3296 -2.12734 17.4561 -1.65197 {normal=(-0.773475 -0.227073 -0.591755)} Vertex 3297 -2.12621 19.3097 2.9197 {normal=(-0.765959 3.95072e-05 0.64289)} Vertex 3298 -2.12571 12.1461 -0.401259 {normal=(-0.843991 0.00745827 0.536305)} Vertex 3299 -2.12553 16.855 3.06795 {normal=(-0.22267 -0.275586 0.935131)} Vertex 3300 -2.12515 21.8402 2.34155 {normal=(-0.706676 0.424767 0.565845)} Vertex 3301 -2.12499 -35.0093 -4.66006 {normal=(0.929559 -0.166825 -0.32877)} Vertex 3302 -2.12433 -33.3832 -4.43682 Vertex 3303 -2.12255 23.1317 -0.279779 {normal=(-0.496978 0.865474 -0.062992)} Vertex 3304 -2.12116 -22.2883 -1.48167 Vertex 3305 -2.12004 13.4958 -0.309886 {normal=(-0.924278 -0.104202 0.367222)} Vertex 3306 -2.11838 15.1482 0.980799 {normal=(-0.734749 -0.675467 -0.0623629)} Vertex 3307 -2.11798 15.1609 0.723394 {normal=(-0.771519 -0.634034 0.0525252)} Vertex 3308 -2.11765 15.252 2.37663 {normal=(-0.771664 -0.367191 0.519331)} Vertex 3309 -2.11673 -33.1107 -3.69455 Vertex 3310 -2.11648 19.1823 2.9221 {normal=(-0.758904 -0.0922973 0.644629)} Vertex 3311 -2.11648 19.437 2.92209 {normal=(-0.758896 0.0923621 0.644629)} Vertex 3312 -2.11437 19.4564 2.9484 {normal=(-0.344227 -0.413062 0.843142)} Vertex 3313 -2.1107 19.2398 3.08839 {normal=(-0.353691 0.778209 0.518935)} Vertex 3314 -2.11003 19.4487 2.4026 {normal=(0.38263 -0.795176 0.470414)} Vertex 3315 -2.10978 18.0238 3.53373 {normal=(-0.327395 -0.0615137 0.942883)} Vertex 3316 -2.10917 19.4534 2.94538 {normal=(0.356567 -0.840245 0.40847)} Vertex 3317 -2.10887 -25.5735 -1.68668 Vertex 3318 -2.10772 19.4509 2.76344 {normal=(0.623105 -0.782097 0.00805207)} Vertex 3319 -2.10747 15.0418 1.50788 {normal=(-0.756322 -0.628564 -0.181339)} Vertex 3320 -2.10416 19.9748 3.1266 {normal=(-0.51491 -0.547006 0.66004)} Vertex 3321 -2.10206 15.4463 2.54847 {normal=(-0.764541 -0.422366 0.486913)} Vertex 3322 -2.10151 17.0957 -1.98176 {normal=(0.545987 -0.296944 0.783405)} Vertex 3323 -2.10127 16.2594 2.91527 {normal=(-0.356683 -0.261777 0.8968)} Vertex 3324 -2.09955 14.9641 0.320706 {normal=(-0.887393 -0.31342 0.338085)} Vertex 3325 -2.09891 16.4177 -1.55974 {normal=(-0.842389 -0.00926592 -0.538791)} Vertex 3326 -2.09634 15.6392 2.71839 {normal=(-0.731345 -0.392776 0.55755)} Vertex 3327 -2.09151 14.8963 2.04352 {normal=(-0.772243 -0.624568 0.116427)} Vertex 3328 -2.09079 20.966 2.99322 {normal=(-0.353026 0.814969 0.459563)} Vertex 3329 -2.08816 21.1173 -2.98346 {normal=(-0.644244 0.196165 -0.739236)} Vertex 3330 -2.08772 17.5969 -1.76757 Vertex 3331 -2.08752 19.058 2.92922 {normal=(-0.737912 -0.182439 0.64977)} Vertex 3332 -2.08751 19.5613 2.9292 {normal=(-0.737897 0.182443 0.649786)} Vertex 3333 -2.08711 17.0856 -1.58755 {normal=(-0.758902 -0.113195 -0.641291)} Vertex 3334 -2.08709 -23.8256 -1.61062 Vertex 3335 -2.08542 14.5756 0.170467 {normal=(-0.877954 -0.183045 0.44237)} Vertex 3336 -2.08424 16.5654 2.99983 {normal=(-0.174321 -0.23103 0.957203)} Vertex 3337 -2.08344 16.8201 3.06475 {normal=(-0.123168 -0.288709 0.949461)} Vertex 3338 -2.08273 19.7221 2.91099 {normal=(-0.587626 -0.296222 0.752959)} Vertex 3339 -2.0825 19.1269 3.25832 {normal=(-0.386044 0.67294 0.630969)} Vertex 3340 -2.08028 7.90822 4.89768 Vertex 3341 -2.07999 -24.2927 -4.83908 Vertex 3342 -2.07818 -33.679 -3.59156 {normal=(0.959938 -0.19281 0.20333)} Vertex 3343 -2.07806 19.7113 2.91446 {normal=(-0.74122 0.0123401 0.671149)} Vertex 3344 -2.07746 17.3227 3.27791 {normal=(-0.29674 -0.467785 0.83254)} Vertex 3345 -2.07704 19.6632 2.94151 {normal=(-0.800486 0.36753 0.473438)} Vertex 3346 -2.07697 19.6253 2.97265 {normal=(-0.778659 0.278508 0.562249)} Vertex 3347 -2.07673 19.6881 2.9235 {normal=(-0.807036 0.305269 0.505475)} Vertex 3348 -2.07624 22.0806 2.21092 {normal=(-0.667613 0.47994 0.569166)} Vertex 3349 -2.07607 19.7 2.91863 {normal=(-0.789282 0.170525 0.589877)} Vertex 3350 -2.07482 18.378 2.21909 {normal=(-0.726751 -0.672818 0.138382)} Vertex 3351 -2.07481 20.2412 2.21904 {normal=(-0.726812 0.672755 0.138363)} Vertex 3352 -2.07136 18.7339 2.78782 {normal=(-0.725418 -0.416717 0.547829)} Vertex 3353 -2.07136 19.8854 2.78779 {normal=(-0.725363 0.416824 0.54782)} Vertex 3354 -2.0705 19.2608 3.08064 {normal=(-0.187008 0.872052 0.452275)} Vertex 3355 -2.06883 14.4947 -2.15396 {normal=(-0.844703 0.248851 -0.473868)} Vertex 3356 -2.06795 13.0262 -0.289771 {normal=(-0.88033 -0.0621694 0.47027)} Vertex 3357 -2.06673 19.5849 2.99489 {normal=(-0.698118 0.0547693 0.713885)} Vertex 3358 -2.06573 -32.4382 -2.82081 Vertex 3359 -2.06564 18.4369 2.42815 {normal=(-0.720314 -0.630638 0.288867)} Vertex 3360 -2.06564 20.1824 2.42811 {normal=(-0.72034 0.63066 0.288753)} Vertex 3361 -2.06536 13.2767 -3.00697 {normal=(-0.724356 0.329669 -0.605497)} Vertex 3362 -2.06281 13.2564 -3.01855 Vertex 3363 -2.06184 19.2661 2.53032 {normal=(0.223463 0.948821 0.223167)} Vertex 3364 -2.06175 -27.4876 -3.33859 Vertex 3365 -2.06164 18.8891 3.44123 {normal=(-0.511215 0.372355 0.774604)} Vertex 3366 -2.06146 19.2627 3.07545 {normal=(0.200363 0.958719 0.201773)} Vertex 3367 -2.06027 18.7047 3.50347 {normal=(-0.500576 0.169316 0.848974)} Vertex 3368 -2.05921 18.3422 2.00527 {normal=(-0.715478 -0.698465 -0.0154425)} Vertex 3369 -2.0592 20.2771 2.00522 {normal=(-0.715514 0.69843 -0.0153411)} Vertex 3370 -2.05857 19.2645 2.89201 {normal=(0.443864 0.896057 0.00821238)} Vertex 3371 -2.05527 16.0862 2.88443 {normal=(-0.403042 -0.244249 0.881986)} Vertex 3372 -2.05489 14.917 1.68431 {normal=(-0.722082 -0.66871 -0.177271)} Vertex 3373 -2.05332 -33.9647 -4.37041 {normal=(0.979053 -0.179485 -0.0961304)} Vertex 3374 -2.05185 13.9625 0.009298 {normal=(-0.87145 -0.167901 0.460851)} Vertex 3375 -2.04864 15.0418 0.626083 {normal=(-0.802751 -0.565569 0.189005)} Vertex 3376 -2.04856 20.4067 3.38556 {normal=(-0.697055 -0.174699 0.695409)} Vertex 3377 -2.04854 16.817 3.06417 {normal=(0.078273 -0.320005 0.944177)} Vertex 3378 -2.04828 15.7991 2.84817 {normal=(-0.671678 -0.230945 0.703927)} Vertex 3379 -2.04645 16.5643 3.00162 {normal=(0.0510952 -0.188637 0.980717)} Vertex 3380 -2.04632 19.5421 3.00823 {normal=(-0.600318 -0.100767 0.793388)} Vertex 3381 -2.04631 -22.3315 -4.77785 Vertex 3382 -2.0457 17.1922 3.20889 {normal=(-0.264826 -0.428167 0.864026)} Vertex 3383 -2.04308 11.868 -0.286415 {normal=(-0.823356 -0.178807 0.538621)} Vertex 3384 -2.04252 16.2022 -1.6426 {normal=(-0.831582 0.0129575 -0.555251)} Vertex 3385 -2.04173 11.8477 -0.297987 Vertex 3386 -2.04003 18.94 2.9409 {normal=(-0.70348 -0.268044 0.658231)} Vertex 3387 -2.04003 19.6793 2.94088 {normal=(-0.703469 0.268009 0.658258)} Vertex 3388 -2.03911 17.0592 3.15193 {normal=(-0.243481 -0.347076 0.905679)} Vertex 3389 -2.03846 15.035 1.19596 {normal=(-0.709786 -0.693618 -0.122879)} Vertex 3390 -2.03662 20.4937 3.38503 {normal=(-0.584463 0.22233 0.780367)} Vertex 3391 -2.03571 16.0401 2.88179 {normal=(-0.506217 -0.130379 0.852494)} Vertex 3392 -2.03551 22.3044 2.058 {normal=(-0.63245 0.549023 0.546426)} Vertex 3393 -2.03429 20.3507 3.36013 {normal=(-0.705996 -0.372028 0.602632)} Vertex 3394 -2.03406 13.446 -0.144115 {normal=(-0.874519 -0.130368 0.467141)} Vertex 3395 -2.03342 19.5189 3.01298 {normal=(-0.306664 -0.4784 0.822855)} Vertex 3396 -2.0319 18.5172 2.62731 {normal=(-0.69629 -0.573046 0.432203)} Vertex 3397 -2.03189 20.1021 2.62727 {normal=(-0.696269 0.573076 0.432196)} Vertex 3398 -2.02943 19.5105 2.46567 {normal=(0.353724 -0.85844 0.37143)} Vertex 3399 -2.02895 -25.9603 -1.81046 Vertex 3400 -2.02813 21.0915 2.95041 {normal=(-0.655593 0.433331 0.618403)} Vertex 3401 -2.02803 19.5153 3.00914 {normal=(0.333878 -0.858124 0.390063)} Vertex 3402 -2.0267 19.5125 2.82671 {normal=(0.596868 -0.802299 0.00805324)} Vertex 3403 -2.02669 15.0607 0.898606 {normal=(-0.730154 -0.683276 0.00296433)} Vertex 3404 -2.02606 15.0112 -2.00055 {normal=(-0.833523 0.202328 -0.514103)} Vertex 3405 -2.02388 17.7922 3.51682 {normal=(-0.225355 -0.276921 0.934093)} Vertex 3406 -2.02068 12.5482 -0.250121 {normal=(-0.842241 -0.0166561 0.538845)} Vertex 3407 -2.01918 18.3301 1.79195 {normal=(-0.703302 -0.704905 -0.0920611)} Vertex 3408 -2.01917 20.2892 1.7919 {normal=(-0.703305 0.704902 -0.0920601)} Vertex 3409 -2.01796 13.4879 -2.92562 {normal=(-0.721126 0.390022 -0.572591)} Vertex 3410 -2.01508 18.4905 3.54399 {normal=(-0.283035 0.0715119 0.95644)} Vertex 3411 -2.01094 19.1837 3.22366 {normal=(-0.296493 0.750378 0.590784)} Vertex 3412 -2.0078 20.2563 3.34013 {normal=(-0.663848 -0.302311 0.684043)} Vertex 3413 -2.00743 -32.2028 -3.85415 {normal=(0.983832 -0.176856 -0.0282187)} Vertex 3414 -2.00594 7.82099 4.60024 Vertex 3415 -2.003 18.8963 3.47092 {normal=(-0.36129 0.45751 0.812499)} Vertex 3416 -2.00279 16.2603 2.95321 {normal=(-0.224192 -0.208331 0.952017)} Vertex 3417 -2.00278 19.8815 3.07429 {normal=(-0.329923 -0.662043 0.672942)} Vertex 3418 -2.00046 18.9796 3.42278 {normal=(-0.36152 0.503965 0.784425)} Vertex 3419 -2.00039 17.0244 3.14796 {normal=(-0.0815956 -0.372993 0.924239)} Vertex 3420 -1.99973 -23.8937 -4.80727 Vertex 3421 -1.99846 20.612 3.35853 {normal=(-0.519334 0.345032 0.781822)} Vertex 3422 -1.99488 -27.4976 -1.93941 Vertex 3423 -1.99467 18.8178 3.52002 {normal=(-0.581748 0.24302 0.776215)} Vertex 3424 -1.99368 18.8262 3.51748 {normal=(-0.519266 0.358808 0.775642)} Vertex 3425 -1.99365 18.6968 3.5354 {normal=(-0.283251 0.0882908 0.954973)} Vertex 3426 -1.99189 19.2678 -3.10991 {normal=(-0.675388 -0.0304208 -0.736835)} Vertex 3427 -1.99118 12.0792 -0.205059 {normal=(-0.810677 -0.0173479 0.585237)} Vertex 3428 -1.9909 22.5201 1.87003 {normal=(-0.593892 0.624796 0.506875)} Vertex 3429 -1.9907 16.4807 -3.6711 {normal=(-0.637644 -0.171066 -0.751097)} Vertex 3430 -1.9887 14.8906 0.501426 {normal=(-0.837614 -0.396861 0.375371)} Vertex 3431 -1.98542 15.6243 -1.83938 {normal=(-0.831843 0.180034 -0.525)} Vertex 3432 -1.98533 18.8134 3.52791 {normal=(-0.394982 0.194302 0.897907)} Vertex 3433 -1.98434 18.8218 3.52537 {normal=(-0.336368 0.321131 0.885286)} Vertex 3434 -1.98357 17.3087 -3.62741 {normal=(-0.672538 0.140122 -0.726677)} Vertex 3435 -1.98245 16.0213 -1.72006 {normal=(-0.827182 0.0976999 -0.553376)} Vertex 3436 -1.98194 18.8013 3.53177 {normal=(-0.277081 0.132887 0.951613)} Vertex 3437 -1.97985 18.2866 3.56273 {normal=(-0.265343 0.0569578 0.96247)} Vertex 3438 -1.97798 18.8349 3.52164 {normal=(-0.274259 0.411358 0.869233)} Vertex 3439 -1.97709 16.8698 -1.69237 {normal=(-0.739866 -0.0396797 -0.671584)} Vertex 3440 -1.9752 18.8311 2.95684 {normal=(-0.656483 -0.346971 0.669807)} Vertex 3441 -1.9752 19.7883 2.95681 {normal=(-0.656465 0.347039 0.66979)} Vertex 3442 -1.97442 18.617 2.81165 {normal=(-0.655232 -0.501372 0.565064)} Vertex 3443 -1.97442 20.0023 2.81162 {normal=(-0.655191 0.501447 0.565044)} Vertex 3444 -1.97334 19.3097 3.07424 {normal=(-0.656209 4.55267e-05 0.754579)} Vertex 3445 -1.97223 17.0215 3.14584 {normal=(0.0933301 -0.427069 0.899389)} Vertex 3446 -1.97202 22.2602 -2.0636 {normal=(-0.624274 0.483665 -0.613474)} Vertex 3447 -1.97078 19.2131 3.20281 {normal=(-0.126958 0.867832 0.480364)} Vertex 3448 -1.96909 20.1235 3.32556 {normal=(-0.549947 -0.413302 0.725768)} Vertex 3449 -1.9669 20.7222 3.33205 {normal=(-0.522662 0.338765 0.782344)} Vertex 3450 -1.96609 16.1024 2.92862 {normal=(-0.276926 -0.195312 0.940832)} Vertex 3451 -1.96599 16.2635 2.95818 {normal=(-0.0499346 -0.0887205 0.994804)} Vertex 3452 -1.96583 19.2113 3.07609 {normal=(-0.650744 -0.0714611 0.755927)} Vertex 3453 -1.96582 19.4081 3.07609 {normal=(-0.650742 0.071553 0.75592)} Vertex 3454 -1.96402 -33.2993 -3.565 Vertex 3455 -1.96376 19.2187 2.64949 {normal=(0.212371 0.95409 0.211214)} Vertex 3456 -1.96284 14.9174 1.38324 {normal=(-0.685792 -0.701803 -0.192772)} Vertex 3457 -1.96232 14.5085 0.358514 {normal=(-0.836227 -0.214018 0.504896)} Vertex 3458 -1.96203 19.2151 3.19577 {normal=(0.220388 0.955717 0.195025)} Vertex 3459 -1.96019 -25.887 -3.31673 Vertex 3460 -1.95997 16.089 2.92806 {normal=(-0.41835 -0.00852956 0.908246)} Vertex 3461 -1.95968 19.2169 3.01133 {normal=(0.411275 0.911482 0.00729506)} Vertex 3462 -1.95962 16.5644 2.98442 {normal=(0.206404 -0.151817 0.966617)} Vertex 3463 -1.95918 17.2729 -1.77223 {normal=(-0.704221 -0.180475 -0.68666)} Vertex 3464 -1.95789 15.9261 2.93779 {normal=(-0.643268 -0.0570825 0.76351)} Vertex 3465 -1.95333 -33.605 -4.43582 Vertex 3466 -1.95209 15.9554 -3.42424 {normal=(-0.573671 -0.454648 -0.68132)} Vertex 3467 -1.95098 19.8285 3.04934 {normal=(-0.514865 -0.354525 0.780529)} Vertex 3468 -1.95053 14.7724 1.89858 {normal=(-0.679377 -0.726538 -0.102905)} Vertex 3469 -1.95051 16.8134 3.04239 {normal=(0.208263 -0.332471 0.919831)} Vertex 3470 -1.94992 12.9591 -0.101725 {normal=(-0.839879 -0.0787724 0.537027)} Vertex 3471 -1.94925 20.531 -3.23084 {normal=(-0.615755 0.109914 -0.780234)} Vertex 3472 -1.94875 19.816 3.05174 {normal=(-0.684456 0.0385173 0.728036)} Vertex 3473 -1.9483 17.1362 3.1968 {normal=(0.392457 -0.559974 0.729662)} Vertex 3474 -1.94826 17.5591 3.43109 {normal=(-0.179198 -0.401735 0.898052)} Vertex 3475 -1.94677 19.8044 3.05521 {normal=(-0.712517 0.145765 0.686347)} Vertex 3476 -1.94507 19.7937 3.05973 {normal=(-0.728048 0.266969 0.631406)} Vertex 3477 -1.94477 21.3321 2.89878 {normal=(-0.662292 0.395801 0.636169)} Vertex 3478 -1.94405 19.7681 3.0741 {normal=(-0.728378 0.350775 0.588576)} Vertex 3479 -1.94374 19.7277 3.09832 {normal=(-0.71048 0.252208 0.65697)} Vertex 3480 -1.94345 19.1153 3.08159 {normal=(-0.63448 -0.141216 0.75993)} Vertex 3481 -1.94345 19.504 3.08158 {normal=(-0.634491 0.141266 0.759911)} Vertex 3482 -1.94295 -25.6153 -3.31302 Vertex 3483 -1.94242 22.7277 1.64701 {normal=(-0.5413 0.716276 0.440389)} Vertex 3484 -1.94197 20.8244 3.30558 {normal=(-0.456891 0.477759 0.750332)} Vertex 3485 -1.94183 19.0621 3.3888 {normal=(-0.298076 0.61593 0.729233)} Vertex 3486 -1.94158 17.3809 3.34799 {normal=(-0.160983 -0.471685 0.866947)} Vertex 3487 -1.93925 14.9497 0.801957 {normal=(-0.740855 -0.657161 0.138829)} Vertex 3488 -1.93415 19.6852 3.11293 {normal=(-0.634915 0.00148957 0.772581)} Vertex 3489 -1.9307 18.4396 -3.29316 {normal=(-0.688632 0.171489 -0.704541)} Vertex 3490 -1.92977 16.1077 2.93519 {normal=(-0.558702 -0.085505 0.824949)} Vertex 3491 -1.92812 14.9509 1.08997 {normal=(-0.679428 -0.729846 -0.0755189)} Vertex 3492 -1.92697 15.5838 -3.13535 {normal=(-0.533641 -0.634198 -0.559482)} Vertex 3493 -1.92617 13.8954 0.197345 {normal=(-0.830071 -0.183454 0.526619)} Vertex 3494 -1.92577 22.155 -2.53895 {normal=(-0.634019 0.771393 -0.0545203)} Vertex 3495 -1.92473 3.46099 4.90409 {normal=(0.1258 0.109169 0.986031)} Vertex 3496 -1.92351 17.1335 3.1939 {normal=(-0.0146254 -0.477864 0.878312)} Vertex 3497 -1.92263 18.3111 2.46332 {normal=(-0.617031 -0.721482 0.314222)} Vertex 3498 -1.92262 20.3082 2.46327 {normal=(-0.617054 0.721483 0.314175)} Vertex 3499 -1.92216 18.2438 2.25662 {normal=(-0.616551 -0.769715 0.165538)} Vertex 3500 -1.92215 20.3755 2.25657 {normal=(-0.61657 0.769712 0.165482)} Vertex 3501 -1.92145 -12.9329 2.61846 {normal=(0.278036 -0.277311 0.919671)} Vertex 3502 -1.91665 22.8178 -1.66263 {normal=(-0.510383 0.688122 -0.515749)} Vertex 3503 -1.91536 15.3659 -2.80445 Vertex 3504 -1.91528 19.6404 3.11792 {normal=(-0.542303 -0.177956 0.821121)} Vertex 3505 -1.91333 14.8609 2.36657 {normal=(-0.732067 -0.43737 0.522288)} Vertex 3506 -1.91224 13.89 -2.77448 {normal=(-0.721519 0.380314 -0.578594)} Vertex 3507 -1.91122 13.3789 0.043932 {normal=(-0.833897 -0.14452 0.532663)} Vertex 3508 -1.91007 20.8837 3.2716 {normal=(-0.198638 0.799092 0.567446)} Vertex 3509 -1.90901 17.2512 3.27146 {normal=(-0.118474 -0.508318 0.852981)} Vertex 3510 -1.9081 20.0208 3.28393 {normal=(-0.356258 -0.671358 0.649891)} Vertex 3511 -1.90678 19.0241 3.09061 {normal=(-0.607808 -0.207544 0.766482)} Vertex 3512 -1.90678 19.5952 3.0906 {normal=(-0.60784 0.207534 0.76646)} Vertex 3513 -1.9042 17.1638 3.21703 {normal=(0.00594015 -0.584008 0.811726)} Vertex 3514 -1.90311 19.616 3.11799 {normal=(-0.291862 -0.525313 0.799289)} Vertex 3515 -1.90204 18.403 2.65924 {normal=(-0.602432 -0.655587 0.455281)} Vertex 3516 -1.90203 20.2163 2.65919 {normal=(-0.602419 0.655608 0.455269)} Vertex 3517 -1.90067 18.2027 2.04425 {normal=(-0.601074 -0.799092 0.0127772)} Vertex 3518 -1.90066 20.4166 2.04419 {normal=(-0.600991 0.799154 0.0127928)} Vertex 3519 -1.90049 22.9589 1.24197 {normal=(-0.504451 0.785164 0.35923)} Vertex 3520 -1.89939 19.6072 2.56906 {normal=(0.311797 -0.884572 0.346864)} Vertex 3521 -1.89923 16.0004 2.98583 {normal=(-0.556305 0.145363 0.818165)} Vertex 3522 -1.89918 16.2739 2.95175 {normal=(0.124454 0.0619686 0.990288)} Vertex 3523 -1.89762 19.6119 3.11311 {normal=(0.260795 -0.89215 0.368856)} Vertex 3524 -1.89638 19.609 2.93014 {normal=(0.526874 -0.849902 0.00835964)} Vertex 3525 -1.89462 18.7339 2.97665 {normal=(-0.598082 -0.417372 0.684177)} Vertex 3526 -1.89462 19.8854 2.97662 {normal=(-0.598054 0.417467 0.684144)} Vertex 3527 -1.88929 14.7954 1.54263 {normal=(-0.644405 -0.736684 -0.205033)} Vertex 3528 -1.88797 18.0853 3.59162 {normal=(-0.215674 -0.0460703 0.975378)} Vertex 3529 -1.88696 15.0857 2.52937 {normal=(-0.691375 -0.403965 0.59901)} Vertex 3530 -1.88573 12.4812 -0.053921 {normal=(-0.810005 -0.0343349 0.585417)} Vertex 3531 -1.88538 19.1269 3.34546 {normal=(-0.250332 0.702454 0.666253)} Vertex 3532 -1.88491 11.8013 -0.082061 {normal=(-0.645932 -0.269107 0.71439)} Vertex 3533 -1.88476 14.7017 2.24035 {normal=(-0.750893 -0.612545 0.246877)} Vertex 3534 -1.88416 15.833 -2.48162 {normal=(0.42478 -0.405705 0.809299)} Vertex 3535 -1.88402 11.7809 -0.093635 Vertex 3536 -1.87916 15.4545 2.84222 {normal=(-0.689591 -0.441045 0.574407)} Vertex 3537 -1.87867 19.4128 2.37497 {normal=(-0.142031 -0.176732 0.973957)} Vertex 3538 -1.87791 22.0385 -2.75298 {normal=(-0.644053 0.510457 -0.569762)} Vertex 3539 -1.87678 16.6511 -1.80202 {normal=(-0.722252 0.0150028 -0.691467)} Vertex 3540 -1.87557 15.2836 2.68792 {normal=(-0.685664 -0.459515 0.564544)} Vertex 3541 -1.87229 16.022 2.99229 {normal=(-0.351971 0.265852 0.897463)} Vertex 3542 -1.87183 17.0211 3.12566 {normal=(0.19945 -0.47719 0.855868)} Vertex 3543 -1.87121 20.9002 3.2301 {normal=(-0.220536 0.769832 0.598934)} Vertex 3544 -1.86984 19.3585 2.37892 {normal=(-0.177104 0.545095 0.819454)} Vertex 3545 -1.86513 23.2137 0.654922 {normal=(-0.434595 0.878385 0.198915)} Vertex 3546 -1.86436 23.135 -1.0072 {normal=(-0.381509 0.89118 -0.245458)} Vertex 3547 -1.86307 22.1388 -2.40843 {normal=(-0.512459 0.805322 0.298065)} Vertex 3548 -1.86124 15.6079 2.96373 {normal=(-0.698547 -0.312226 0.643854)} Vertex 3549 -1.86092 18.5172 2.83956 {normal=(-0.573035 -0.573667 0.585267)} Vertex 3550 -1.86091 20.1021 2.83952 {normal=(-0.573071 0.573685 0.585214)} Vertex 3551 -1.86057 21.5826 2.80926 {normal=(-0.616541 0.460962 0.638272)} Vertex 3552 -1.85867 18.1889 1.83141 {normal=(-0.587857 -0.806454 -0.0636874)} Vertex 3553 -1.85866 20.4304 1.83135 {normal=(-0.587706 0.806567 -0.0636452)} Vertex 3554 -1.85754 2.26245 5.09119 {normal=(0.132721 0.0368036 0.99047)} Vertex 3555 -1.85671 18.94 3.10292 {normal=(-0.571407 -0.268704 0.77543)} Vertex 3556 -1.8567 19.6793 3.10291 {normal=(-0.571429 0.268686 0.77542)} Vertex 3557 -1.85537 17.4652 -1.9304 Vertex 3558 -1.85498 14.8153 0.690851 {normal=(-0.792841 -0.479843 0.375705)} Vertex 3559 -1.85406 -24.2144 -3.29388 Vertex 3560 -1.85353 19.1609 3.31957 {normal=(-0.133879 0.834239 0.534903)} Vertex 3561 -1.84836 17.1682 3.21515 {normal=(0.104015 -0.589941 0.800719)} Vertex 3562 -1.84791 19.1673 2.76533 {normal=(0.166588 0.967064 0.192445)} Vertex 3563 -1.84628 19.1641 3.31113 {normal=(0.102007 0.971753 0.212816)} Vertex 3564 -1.8444 19.1663 3.12638 {normal=(0.271653 0.962362 0.00801342)} Vertex 3565 -1.8443 -6.48107 4.07782 {normal=(0.028763 -0.0367933 0.998909)} Vertex 3566 -1.84341 17.2558 3.28036 {normal=(-0.0862599 -0.517285 0.851455)} Vertex 3567 -1.83799 17.1982 3.23715 {normal=(0.0763119 -0.612431 0.786832)} Vertex 3568 -1.83337 16.9852 -2.16686 {normal=(0.456492 -0.319557 0.83036)} Vertex 3569 -1.83265 12.0125 -0.000706 {normal=(-0.636156 -0.131314 0.760304)} Vertex 3570 -1.83128 22.1358 -2.32746 {normal=(-0.610953 0.791439 0.0190101)} Vertex 3571 -1.83064 18.8397 3.5407 {normal=(-0.115555 0.1961 0.973751)} Vertex 3572 -1.83041 22.1458 -2.29606 {normal=(-0.653878 0.628347 -0.421454)} Vertex 3573 -1.8301 19.459 2.39687 {normal=(-0.186256 -0.478668 0.858012)} Vertex 3574 -1.82919 18.8278 3.54333 {normal=(-0.104811 0.167649 0.980259)} Vertex 3575 -1.82874 -23.8152 -3.28843 Vertex 3576 -1.82666 18.8527 3.53811 {normal=(-0.149427 0.296676 0.943215)} Vertex 3577 -1.82496 14.8303 1.26287 {normal=(-0.636335 -0.753346 -0.165975)} Vertex 3578 -1.82482 19.9482 3.21522 {normal=(-0.236724 -0.757912 0.607891)} Vertex 3579 -1.82374 16.5655 2.94824 {normal=(0.220309 -0.134554 0.966105)} Vertex 3580 -1.82231 18.817 3.546 {normal=(-0.0930574 0.0996471 0.990662)} Vertex 3581 -1.82221 14.3009 -2.62608 {normal=(-0.718671 0.348941 -0.601458)} Vertex 3582 -1.82181 15.7439 3.05243 {normal=(-0.715331 -0.167916 0.678311)} Vertex 3583 -1.81961 16.0576 2.98864 {normal=(-0.11339 0.330687 0.936904)} Vertex 3584 -1.81635 14.852 0.987641 {normal=(-0.674159 -0.737515 0.0397701)} Vertex 3585 -1.81317 -22.3595 -4.88473 Vertex 3586 -1.81255 14.4415 0.554714 {normal=(-0.801391 -0.241302 0.547308)} Vertex 3587 -1.81147 -27.5065 -3.39832 Vertex 3588 -1.80859 21.034 3.18265 {normal=(-0.485428 0.417205 0.76831)} Vertex 3589 -1.80834 12.8922 0.094476 {normal=(-0.808164 -0.0881092 0.582329)} Vertex 3590 -1.80703 17.2714 3.29425 {normal=(-0.048038 -0.548524 0.834754)} Vertex 3591 -1.80674 18.8945 3.52829 {normal=(-0.194983 0.351237 0.915759)} Vertex 3592 -1.80516 18.7172 3.55861 {normal=(-0.0944605 0.0795578 0.992345)} Vertex 3593 -1.80237 16.2916 2.93389 {normal=(0.134914 0.0971107 0.986087)} Vertex 3594 -1.80078 14.608 2.15071 {normal=(-0.654226 -0.756135 -0.0157246)} Vertex 3595 -1.80028 18.6509 2.99985 {normal=(-0.529615 -0.477603 0.701002)} Vertex 3596 -1.80027 19.9684 2.99981 {normal=(-0.529679 0.477631 0.700934)} Vertex 3597 -1.79818 19.3097 3.20297 {normal=(-0.530295 5.22638e-05 0.847813)} Vertex 3598 -1.79616 17.8767 3.57367 {normal=(-0.15692 -0.240133 0.957973)} Vertex 3599 -1.79447 18.865 3.11823 {normal=(-0.526222 -0.323143 0.786555)} Vertex 3600 -1.79446 19.7544 3.1182 {normal=(-0.526227 0.323242 0.786511)} Vertex 3601 -1.79306 19.2427 3.20423 {normal=(-0.526555 -0.0488837 0.848734)} Vertex 3602 -1.79306 19.3766 3.20422 {normal=(-0.526553 0.0489327 0.848733)} Vertex 3603 -1.79189 15.8258 3.09935 {normal=(-0.676094 0.0634438 0.734079)} Vertex 3604 -1.79172 19.9419 -3.38087 {normal=(-0.585182 -0.0258354 -0.81049)} Vertex 3605 -1.78935 16.8093 2.99942 {normal=(0.214045 -0.337193 0.91678)} Vertex 3606 -1.78892 4.66595 4.768 Vertex 3607 -1.78883 14.6635 1.75923 {normal=(-0.598108 -0.783471 -0.168641)} Vertex 3608 -1.78675 17.2673 3.28907 {normal=(0.0943818 -0.634718 0.766958)} Vertex 3609 -1.78243 19.9051 3.18142 {normal=(-0.425803 -0.426545 0.797967)} Vertex 3610 -1.78228 19.8036 3.22073 {normal=(-0.610752 0.280404 0.74051)} Vertex 3611 -1.78221 17.0972 -1.91025 {normal=(-0.678165 -0.096086 -0.728601)} Vertex 3612 -1.78208 20.2879 3.56635 {normal=(-0.586756 -0.194237 0.786123)} Vertex 3613 -1.78112 16.4455 -1.91395 {normal=(-0.708776 0.0480365 -0.703796)} Vertex 3614 -1.78093 19.8916 3.18251 {normal=(-0.577526 0.0374507 0.815513)} Vertex 3615 -1.78091 17.1485 3.18192 {normal=(0.17322 -0.609705 0.77347)} Vertex 3616 -1.77944 19.8798 3.18503 {normal=(-0.595201 0.163851 0.786694)} Vertex 3617 -1.77891 19.8443 3.20087 {normal=(-0.608025 0.391243 0.690822)} Vertex 3618 -1.77826 19.7611 3.22985 {normal=(-0.570894 0.0018629 0.821021)} Vertex 3619 -1.77796 19.8697 3.18897 {normal=(-0.602855 0.306149 0.736776)} Vertex 3620 -1.77784 19.1774 3.20797 {normal=(-0.515444 -0.0965431 0.851467)} Vertex 3621 -1.77784 19.442 3.20796 {normal=(-0.515461 0.0966087 0.85145)} Vertex 3622 -1.77771 18.5286 3.58116 {normal=(-0.111096 0.0970412 0.989061)} Vertex 3623 -1.77551 21.8428 2.68186 {normal=(-0.575518 0.503563 0.644363)} Vertex 3624 -1.77519 13.8285 0.393545 {normal=(-0.796225 -0.19262 0.573519)} Vertex 3625 -1.77184 20.3748 3.56234 {normal=(-0.460063 0.207416 0.86332)} Vertex 3626 -1.77147 15.8534 3.10449 {normal=(-0.494718 0.378791 0.782158)} Vertex 3627 -1.77105 19.309 2.46677 {normal=(-0.180235 0.734419 0.654328)} Vertex 3628 -1.77087 18.965 3.51124 {normal=(-0.21969 0.41109 0.884727)} Vertex 3629 -1.77002 -13.8469 -5.28026 Vertex 3630 -1.7699 20.2327 3.54048 {normal=(-0.603503 -0.483237 0.634245)} Vertex 3631 -1.76685 19.7169 3.22822 {normal=(-0.504878 -0.205182 0.83845)} Vertex 3632 -1.76445 13.312 0.240132 {normal=(-0.801961 -0.151837 0.577758)} Vertex 3633 -1.76226 18.2099 2.50275 {normal=(-0.501196 -0.794585 0.342691)} Vertex 3634 -1.76225 20.4094 2.50269 {normal=(-0.501182 0.794595 0.342688)} Vertex 3635 -1.76018 8.04807 -6.14647 {normal=(-0.100278 -0.0589065 -0.993214)} Vertex 3636 -1.75865 19.6923 3.22444 {normal=(-0.308376 -0.554613 0.772858)} Vertex 3637 -1.75643 18.3111 2.69504 {normal=(-0.497133 -0.722023 0.481187)} Vertex 3638 -1.75642 20.3082 2.69499 {normal=(-0.497168 0.722042 0.481123)} Vertex 3639 -1.75575 19.6829 2.67416 {normal=(0.179256 -0.930047 0.320749)} Vertex 3640 -1.75391 2.2504 5.03539 {normal=(-0.0595237 0.065632 0.996067)} Vertex 3641 -1.75365 19.6873 3.21849 {normal=(0.146023 -0.928214 0.342193)} Vertex 3642 -1.75287 19.1153 3.21411 {normal=(-0.497192 -0.141918 0.855955)} Vertex 3643 -1.75287 19.504 3.2141 {normal=(-0.497187 0.141934 0.855956)} Vertex 3644 -1.75269 19.6842 3.03506 {normal=(0.391282 -0.920231 0.00859286)} Vertex 3645 -1.75099 18.1358 2.29871 {normal=(-0.492998 -0.84768 0.195939)} Vertex 3646 -1.75098 20.4835 2.29865 {normal=(-0.492981 0.847712 0.195841)} Vertex 3647 -1.75076 16.566 2.93199 {normal=(-0.0617775 -0.105576 0.99249)} Vertex 3648 -1.7489 16.3024 2.92708 {normal=(-0.122348 0.0806769 0.989203)} Vertex 3649 -1.74848 14.7207 -2.48043 {normal=(-0.711288 0.296687 -0.637218)} Vertex 3650 -1.74547 3.45723 4.84657 {normal=(-0.0509089 0.144134 0.988248)} Vertex 3651 -1.7412 16.107 2.97485 {normal=(-0.113707 0.374847 0.920087)} Vertex 3652 -1.74068 16.5659 2.93569 {normal=(-0.556512 -0.0418079 0.829787)} Vertex 3653 -1.73938 20.167 3.50775 {normal=(-0.555487 -0.545237 0.627815)} Vertex 3654 -1.73917 20.4934 3.52846 {normal=(-0.411422 0.320912 0.853081)} Vertex 3655 -1.73878 16.3064 2.9313 {normal=(-0.54247 0.00732603 0.840043)} Vertex 3656 -1.73365 18.4369 2.87085 {normal=(-0.480892 -0.631774 0.607951)} Vertex 3657 -1.73365 20.1824 2.87081 {normal=(-0.481046 0.631783 0.60782)} Vertex 3658 -1.73154 14.5826 2.38827 {normal=(-0.705259 -0.585279 0.400073)} Vertex 3659 -1.73123 -22.2784 -3.26744 Vertex 3660 -1.731 19.0325 3.48129 {normal=(-0.211962 0.55598 0.803715)} Vertex 3661 -1.73026 1.18158 -5.50375 {normal=(-0.180007 -0.291226 -0.939566)} Vertex 3662 -1.72853 17.2588 3.27161 {normal=(-0.133684 -0.606841 0.7835)} Vertex 3663 -1.72811 12.4145 0.150431 {normal=(-0.637668 -0.138114 0.757829)} Vertex 3664 -1.72291 18.3448 3.60811 {normal=(-0.147362 0.119382 0.981852)} Vertex 3665 -1.7229 18.0905 2.08795 {normal=(-0.472702 -0.880104 0.0443834)} Vertex 3666 -1.72289 20.5287 2.08789 {normal=(-0.472645 0.880142 0.044245)} Vertex 3667 -1.7222 21.2852 3.12926 {normal=(-0.486962 0.396876 0.778047)} Vertex 3668 -1.7216 18.8009 3.13614 {normal=(-0.473278 -0.369746 0.79956)} Vertex 3669 -1.72159 19.8185 3.13612 {normal=(-0.473222 0.369847 0.799546)} Vertex 3670 -1.72101 17.2293 3.25187 {normal=(-0.100589 -0.701692 0.705344)} Vertex 3671 -1.72092 15.9154 3.09509 {normal=(-0.362511 0.512924 0.778135)} Vertex 3672 -1.72002 20.6115 3.4918 {normal=(-0.435268 0.30037 0.848716)} Vertex 3673 -1.71948 21.7892 -3.05052 {normal=(-0.58144 0.351509 -0.733737)} Vertex 3674 -1.71879 19.0581 3.22249 {normal=(-0.472291 -0.183716 0.862084)} Vertex 3675 -1.71879 19.5613 3.22248 {normal=(-0.47232 0.183741 0.862063)} Vertex 3676 -1.71808 14.6988 1.4173 {normal=(-0.585914 -0.784527 -0.203033)} Vertex 3677 -1.71441 20.7291 3.45238 {normal=(-0.369528 0.433514 0.821897)} Vertex 3678 -1.71396 -25.9697 -3.37733 Vertex 3679 -1.7096 14.7115 2.50578 {normal=(-0.68522 -0.416017 0.597832)} Vertex 3680 -1.70444 17.6611 3.50888 {normal=(-0.138117 -0.3619 0.921928)} Vertex 3681 -1.70392 16.8057 2.97947 {normal=(-0.0639027 -0.274665 0.959414)} Vertex 3682 -1.70363 16.5558 2.97955 {normal=(-0.775534 -0.019288 0.631011)} Vertex 3683 -1.70136 14.7382 0.88898 {normal=(-0.699098 -0.623816 0.349449)} Vertex 3684 -1.70046 15.2372 -2.32701 {normal=(-0.704728 0.236638 -0.66885)} Vertex 3685 -1.6996 22.0945 2.53771 {normal=(-0.541525 0.541637 0.642946)} Vertex 3686 -1.6992 17.0231 3.08743 {normal=(0.194503 -0.462319 0.865118)} Vertex 3687 -1.69761 16.1354 2.96954 {normal=(-0.284274 0.309339 0.907468)} Vertex 3688 -1.69448 20.7991 3.40872 {normal=(-0.108738 0.759156 0.641762)} Vertex 3689 -1.69448 18.5842 3.02585 {normal=(-0.452923 -0.526022 0.719835)} Vertex 3690 -1.69448 20.0352 3.02582 {normal=(-0.453026 0.526003 0.719784)} Vertex 3691 -1.69422 16.8026 2.98256 {normal=(-0.576135 -0.060112 0.815141)} Vertex 3692 -1.6939 0.598831 -5.11583 Vertex 3693 -1.69272 19.5291 2.47629 {normal=(-0.234129 -0.532573 0.813357)} Vertex 3694 -1.69268 14.9517 2.66028 {normal=(-0.679981 -0.399126 0.615081)} Vertex 3695 -1.69178 16.253 -2.02816 {normal=(-0.705763 0.121156 -0.698011)} Vertex 3696 -1.69085 16.2828 2.97602 {normal=(-0.722252 -0.0452452 0.690148)} Vertex 3697 -1.69053 20.091 3.46814 {normal=(-0.457189 -0.668303 0.586813)} Vertex 3698 -1.68988 14.739 1.16265 {normal=(-0.617994 -0.781245 -0.0879758)} Vertex 3699 -1.68984 -12.6992 2.5306 Vertex 3700 -1.68971 17.4916 3.43627 {normal=(-0.100819 -0.448591 0.888032)} Vertex 3701 -1.68885 16.1426 2.97269 {normal=(-0.569363 0.102521 0.815669)} Vertex 3702 -1.68829 -10.0787 -6.05037 {normal=(0.05927 0.0514572 -0.996915)} Vertex 3703 -1.6874 16.764 2.99708 {normal=(-0.80571 0.0468134 0.590457)} Vertex 3704 -1.68713 19.097 3.43845 {normal=(-0.198118 0.6509 0.732856)} Vertex 3705 -1.68623 17.3276 3.3224 {normal=(-0.230142 -0.516513 0.824772)} Vertex 3706 -1.68444 2.14296 -5.6208 {normal=(-0.186606 -0.0451965 -0.981395)} Vertex 3707 -1.68404 -25.5711 -3.3471 Vertex 3708 -1.6805 23.3306 -0.050574 {normal=(-0.304668 0.952173 -0.023315)} Vertex 3709 -1.67868 18.0753 1.87566 {normal=(-0.458241 -0.88826 -0.0317683)} Vertex 3710 -1.67867 20.5439 1.8756 {normal=(-0.458141 0.888309 -0.0318539)} Vertex 3711 -1.67804 14.504 2.32628 {normal=(-0.589139 -0.796186 0.137852)} Vertex 3712 -1.67774 17.1955 3.21117 {normal=(-0.0437578 -0.81741 0.574391)} Vertex 3713 -1.67642 19.007 3.23291 {normal=(-0.441424 -0.220946 0.869671)} Vertex 3714 -1.67642 19.6124 3.23289 {normal=(-0.441411 0.221016 0.86966)} Vertex 3715 -1.67418 -11.7335 -6.09934 Vertex 3716 -1.67113 15.1583 2.83113 {normal=(-0.67785 -0.456507 0.576299)} Vertex 3717 -1.66948 14.5215 2.03304 {normal=(-0.544428 -0.830694 -0.116385)} Vertex 3718 -1.66737 15.8502 -2.16584 {normal=(-0.707558 0.196167 -0.678882)} Vertex 3719 -1.66279 19.1315 3.41236 {normal=(-0.135249 0.803925 0.579148)} Vertex 3720 -1.66024 20.8214 3.36082 {normal=(-0.161599 0.715247 0.679932)} Vertex 3721 -1.6598 -0.834047 4.44957 Vertex 3722 -1.6598 0.583952 4.44959 Vertex 3723 -1.6592 19.1388 2.85758 {normal=(0.0114856 0.980829 0.194533)} Vertex 3724 -1.65877 2.26427 5.11082 {normal=(-0.319817 0.0223206 0.947216)} Vertex 3725 -1.65798 19.1358 3.40302 {normal=(-0.00441173 0.974768 0.223179)} Vertex 3726 -1.65679 19.1382 3.2181 {normal=(0.0816776 0.996629 0.00772588)} Vertex 3727 -1.6542 -0.833917 -4.65355 Vertex 3728 -1.6542 0.584082 -4.65353 Vertex 3729 -1.64632 12.8254 0.298828 {normal=(-0.639728 -0.169001 0.749791)} Vertex 3730 -1.64495 15.3313 3.01833 {normal=(-0.67066 -0.461369 0.580822)} Vertex 3731 -1.64415 20.0294 3.41312 {normal=(-0.333925 -0.806543 0.487834)} Vertex 3732 -1.64308 15.655 3.22924 {normal=(-0.713547 -0.277925 0.643124)} Vertex 3733 -1.64076 18.1657 3.63946 {normal=(-0.174217 0.0249097 0.984392)} Vertex 3734 -1.64024 16.0117 3.07113 {normal=(-0.337954 0.536862 0.773024)} Vertex 3735 -1.63996 15.7489 3.26876 {normal=(-0.734116 0.0101728 0.678948)} Vertex 3736 -1.63989 18.7493 3.15623 {normal=(-0.413909 -0.407286 0.814124)} Vertex 3737 -1.63988 19.87 3.1562 {normal=(-0.41384 0.407262 0.814171)} Vertex 3738 -1.63963 16.5357 3.06359 {normal=(-0.734526 -0.0546799 0.676374)} Vertex 3739 -1.63944 14.3748 0.759066 {normal=(-0.650099 -0.339165 0.679955)} Vertex 3740 -1.63566 17.1391 3.13747 {normal=(0.172899 -0.614795 0.769502)} Vertex 3741 -1.6356 15.4969 3.15103 {normal=(-0.683183 -0.382255 0.622207)} Vertex 3742 -1.63425 16.7594 3.08052 {normal=(-0.767022 0.0478639 0.639833)} Vertex 3743 -1.63362 22.9724 -1.63633 {normal=(-0.313978 0.831513 -0.458262)} Vertex 3744 -1.63341 -3.66992 -4.65662 Vertex 3745 -1.63341 -2.25192 -4.6566 Vertex 3746 -1.63283 22.3375 2.37682 {normal=(-0.465103 0.621446 0.630463)} Vertex 3747 -1.63182 17.4842 3.43883 {normal=(-0.161712 -0.415171 0.895255)} Vertex 3748 -1.62996 22.5426 -2.15751 {normal=(-0.491652 0.620321 -0.611131)} Vertex 3749 -1.62867 21.5434 3.03602 {normal=(-0.440609 0.481157 0.75786)} Vertex 3750 -1.62682 18.9633 3.2451 {normal=(-0.405264 -0.252823 0.878545)} Vertex 3751 -1.62682 19.656 3.24508 {normal=(-0.405174 0.252886 0.878569)} Vertex 3752 -1.62657 1.21441 5.00383 {normal=(-0.0851943 -0.286625 0.954247)} Vertex 3753 -1.62625 15.7786 3.26957 {normal=(-0.623694 0.46034 0.631738)} Vertex 3754 -1.62552 19.2696 2.56202 {normal=(-0.139201 0.836092 0.530634)} Vertex 3755 -1.6208 13.5146 -3.28495 {normal=(-0.564862 0.385092 -0.729818)} Vertex 3756 -1.61911 13.4943 -3.29652 Vertex 3757 -1.61697 20.9569 3.30085 {normal=(-0.381037 0.405539 0.830872)} Vertex 3758 -1.61555 19.35 -3.43355 {normal=(-0.595933 0.0101737 -0.80297)} Vertex 3759 -1.61436 0.612496 4.76566 Vertex 3760 -1.61328 -3.67005 4.45599 Vertex 3761 -1.61328 -2.25205 4.45601 Vertex 3762 -1.61088 17.4757 3.44003 {normal=(-0.245632 -0.47507 0.84497)} Vertex 3763 -1.60838 17.0215 3.06951 {normal=(-0.0968532 -0.350231 0.931643)} Vertex 3764 -1.60611 4.67001 4.70145 Vertex 3765 -1.60512 16.2316 3.06124 {normal=(-0.677328 -0.0772922 0.73161)} Vertex 3766 -1.60504 19.3097 3.30271 {normal=(-0.391251 2.83215e-05 0.920284)} Vertex 3767 -1.60482 14.5695 1.62546 {normal=(-0.53089 -0.825781 -0.19037)} Vertex 3768 -1.60245 19.2758 3.30334 {normal=(-0.389348 -0.0250772 0.920749)} Vertex 3769 -1.60245 19.3436 3.30334 {normal=(-0.389374 0.0251271 0.920737)} Vertex 3770 -1.60231 13.7617 0.597897 {normal=(-0.633323 -0.229695 0.739015)} Vertex 3771 -1.60101 19.7713 3.33912 {normal=(-0.458323 -0.208488 0.863987)} Vertex 3772 -1.60052 -7.48821 -5.80326 {normal=(-0.0772543 0.243104 -0.966919)} Vertex 3773 -1.60034 16.5047 -3.96301 {normal=(-0.514088 -0.194909 -0.835299)} Vertex 3774 -1.60025 19.9823 3.34269 {normal=(-0.268962 -0.840588 0.470182)} Vertex 3775 -1.60003 19.7476 3.33233 {normal=(-0.347062 -0.542757 0.764828)} Vertex 3776 -1.5994 17.0164 3.07191 {normal=(-0.604979 -0.0668119 0.793434)} Vertex 3777 -1.59919 -24.2339 -3.32883 Vertex 3778 -1.59907 19.8126 3.34564 {normal=(-0.490635 0.0278839 0.870919)} Vertex 3779 -1.59873 17.1574 3.14952 {normal=(-0.0664141 -0.841728 0.535802)} Vertex 3780 -1.59866 18.2438 2.73383 {normal=(-0.383142 -0.770635 0.509239)} Vertex 3781 -1.59865 20.3755 2.73377 {normal=(-0.383122 0.770705 0.509148)} Vertex 3782 -1.59851 19.7378 2.78096 {normal=(0.0242539 -0.957039 0.288942)} Vertex 3783 -1.59832 -9.59247 3.72333 {normal=(0.171671 -0.193933 0.965877)} Vertex 3784 -1.59831 17.4596 3.42851 {normal=(-0.342867 -0.499804 0.795386)} Vertex 3785 -1.59702 13.2452 0.444484 {normal=(-0.634529 -0.208183 0.744334)} Vertex 3786 -1.59689 16.0648 3.05938 {normal=(-0.423969 0.420222 0.802287)} Vertex 3787 -1.59612 19.7415 3.32526 {normal=(-0.0511054 -0.940367 0.336301)} Vertex 3788 -1.59593 5.38226 -5.60642 {normal=(-0.188714 -0.139996 -0.972002)} Vertex 3789 -1.59575 18.3781 2.90475 {normal=(-0.381179 -0.67429 0.632483)} Vertex 3790 -1.59574 20.2413 2.90471 {normal=(-0.381112 0.674425 0.632381)} Vertex 3791 -1.59561 19.7382 3.14147 {normal=(0.166293 -0.986031 0.00950011)} Vertex 3792 -1.59499 16.9288 -2.06602 {normal=(-0.654417 -0.0285009 -0.755597)} Vertex 3793 -1.59474 19.2427 3.30524 {normal=(-0.383669 -0.0494556 0.922145)} Vertex 3794 -1.59474 19.3766 3.30524 {normal=(-0.383622 0.0495209 0.922161)} Vertex 3795 -1.59294 16.9768 3.08609 {normal=(-0.751172 0.094712 0.653277)} Vertex 3796 -1.59281 -13.1294 -4.98923 Vertex 3797 -1.5926 19.8527 3.33987 {normal=(-0.481712 0.330216 0.811733)} Vertex 3798 -1.59089 6.31946 4.9391 Vertex 3799 -1.59088 16.0747 3.05984 {normal=(-0.573176 0.119398 0.810687)} Vertex 3800 -1.59014 17.3568 -3.94348 {normal=(-0.565801 0.132369 -0.813847)} Vertex 3801 -1.59004 17.2794 3.37943 {normal=(-0.596343 -0.418415 0.685057)} Vertex 3802 -1.58849 18.1358 2.54547 {normal=(-0.375731 -0.848107 0.373552)} Vertex 3803 -1.58848 20.4835 2.5454 {normal=(-0.375716 0.848115 0.373548)} Vertex 3804 -1.58427 21.35 -3.30994 {normal=(-0.560048 0.243158 -0.791972)} Vertex 3805 -1.5821 19.2113 3.30835 {normal=(-0.374272 -0.0727679 0.924459)} Vertex 3806 -1.5821 19.4081 3.30834 {normal=(-0.374308 0.0728984 0.924435)} Vertex 3807 -1.58161 19.8918 3.32182 {normal=(-0.460228 0.445658 0.767841)} Vertex 3808 -1.58119 17.3499 -2.12512 Vertex 3809 -1.57985 18.5353 3.05404 {normal=(-0.369937 -0.561449 0.740218)} Vertex 3810 -1.57985 20.0841 3.054 {normal=(-0.369811 0.561472 0.740263)} Vertex 3811 -1.57909 -3.66992 -4.33347 Vertex 3812 -1.57909 -2.25192 -4.33345 Vertex 3813 -1.57909 -0.833921 -4.33343 Vertex 3814 -1.57909 0.584077 -4.33341 Vertex 3815 -1.57894 15.932 -3.67969 {normal=(-0.461576 -0.471669 -0.751316)} Vertex 3816 -1.57809 13.7258 -3.20359 {normal=(-0.565733 0.396467 -0.723022)} Vertex 3817 -1.57805 15.8488 3.24238 {normal=(-0.474885 0.650933 0.59226)} Vertex 3818 -1.57707 19.9519 3.30724 {normal=(-0.406697 -0.532079 0.742624)} Vertex 3819 -1.57685 -13.1939 2.41279 {normal=(0.322109 -0.0832098 0.943039)} Vertex 3820 -1.57543 19.9163 3.31122 {normal=(-0.465412 0.371451 0.803378)} Vertex 3821 -1.57518 3.47644 4.9251 {normal=(-0.268049 0.158617 0.950258)} Vertex 3822 -1.57478 17.2506 3.36193 {normal=(-0.455627 -0.729627 0.509949)} Vertex 3823 -1.5746 19.9381 3.30676 {normal=(-0.489024 -0.024615 0.871923)} Vertex 3824 -1.57415 -3.67004 4.13388 Vertex 3825 -1.57415 -2.25204 4.1339 Vertex 3826 -1.57415 -0.834042 4.13392 Vertex 3827 -1.57415 0.583956 4.13394 Vertex 3828 -1.57405 19.9263 3.30809 {normal=(-0.482202 0.189215 0.855382)} Vertex 3829 -1.57184 -23.8351 -3.30151 Vertex 3830 -1.57121 18.9282 3.25878 {normal=(-0.364609 -0.278446 0.888554)} Vertex 3831 -1.5712 19.6911 3.25876 {normal=(-0.364569 0.27854 0.888541)} Vertex 3832 -1.56954 22.3245 -2.84237 {normal=(-0.554237 0.602668 -0.574119)} Vertex 3833 -1.56795 22.5665 2.17793 {normal=(-0.417984 0.682741 0.599295)} Vertex 3834 -1.56713 15.5269 -3.37354 {normal=(-0.452233 -0.634834 -0.626475)} Vertex 3835 -1.56551 18.0566 2.34431 {normal=(-0.359013 -0.904857 0.228787)} Vertex 3836 -1.5655 20.5627 2.34424 {normal=(-0.359049 0.904858 0.228728)} Vertex 3837 -1.56489 15.2895 -3.04454 Vertex 3838 -1.56484 19.1823 3.31259 {normal=(-0.361522 -0.0941857 0.927594)} Vertex 3839 -1.56484 19.437 3.31258 {normal=(-0.361479 0.0942125 0.927608)} Vertex 3840 -1.56467 21.2055 3.22883 {normal=(-0.364226 0.38374 0.848577)} Vertex 3841 -1.56392 22.4278 -2.67225 {normal=(-0.551487 0.831262 -0.069751)} Vertex 3842 -1.56178 14.6107 1.32698 {normal=(-0.552811 -0.817049 -0.163803)} Vertex 3843 -1.56111 5.41059 4.93892 {normal=(0.0443522 -0.0386323 0.998269)} Vertex 3844 -1.56079 17.1318 3.11535 {normal=(-0.104397 -0.486857 0.867221)} Vertex 3845 -1.55956 3.34044 -5.5179 {normal=(-0.192213 0.0555936 -0.979777)} Vertex 3846 -1.55902 17.359 3.43395 {normal=(-0.665583 -0.167164 0.727362)} Vertex 3847 -1.55698 17.1356 3.1188 {normal=(-0.313362 -0.677364 0.66557)} Vertex 3848 -1.55559 14.6435 1.08259 {normal=(-0.563621 -0.810356 0.160173)} Vertex 3849 -1.55349 17.9829 3.63558 {normal=(-0.168098 -0.174976 0.970117)} Vertex 3850 -1.55216 17.1256 3.1174 {normal=(-0.586613 -0.200474 0.784663)} Vertex 3851 -1.55135 18.7115 3.178 {normal=(-0.34951 -0.43475 0.829961)} Vertex 3852 -1.55134 19.9078 3.17797 {normal=(-0.349487 0.43472 0.829987)} Vertex 3853 -1.54836 18.4883 -3.62108 {normal=(-0.59791 0.181214 -0.78081)} Vertex 3854 -1.54782 14.4335 2.26505 {normal=(-0.458559 -0.888109 0.0314133)} Vertex 3855 -1.54479 15.7472 -2.71817 {normal=(0.470489 -0.401896 0.78557)} Vertex 3856 -1.54408 17.2111 3.31463 {normal=(-0.332573 -0.865318 0.374994)} Vertex 3857 -1.54368 14.478 2.5058 {normal=(-0.583711 -0.716093 0.382743)} Vertex 3858 -1.5434 19.1564 3.31786 {normal=(-0.345761 -0.113313 0.931456)} Vertex 3859 -1.5434 19.4629 3.31785 {normal=(-0.345761 0.113283 0.931459)} Vertex 3860 -1.54226 -6.47624 4.00547 Vertex 3861 -1.53984 20.1741 3.70902 {normal=(-0.553627 -0.260415 0.791)} Vertex 3862 -1.53474 14.85 2.76936 {normal=(-0.719151 -0.382873 0.579853)} Vertex 3863 -1.53367 20.2589 3.70935 {normal=(-0.450909 0.141723 0.881247)} Vertex 3864 -1.53238 18.887 3.56704 {normal=(-0.0310827 0.0796973 0.996334)} Vertex 3865 -1.53172 14.6079 2.62049 {normal=(-0.683547 -0.457342 0.568859)} Vertex 3866 -1.53159 18.8741 3.56735 {normal=(-0.0205017 0.045776 0.998741)} Vertex 3867 -1.53028 18.0084 2.13531 {normal=(-0.333551 -0.939453 0.0785621)} Vertex 3868 -1.53027 20.6109 2.13524 {normal=(-0.333665 0.939429 0.0783682)} Vertex 3869 -1.52974 20.1226 3.67867 {normal=(-0.56867 -0.584139 0.579134)} Vertex 3870 -1.52801 21.8087 2.90295 {normal=(-0.414499 0.529998 0.739792)} Vertex 3871 -1.52427 18.8635 3.56764 {normal=(-0.0181211 0.0635744 0.997813)} Vertex 3872 -1.52174 19.5614 2.56725 {normal=(-0.324804 -0.56205 0.760659)} Vertex 3873 -1.52021 11.7368 0.081587 {normal=(-0.343364 -0.371875 0.862444)} Vertex 3874 -1.51982 11.7165 0.070014 Vertex 3875 -1.51829 19.1344 3.32404 {normal=(-0.327096 -0.129533 0.936071)} Vertex 3876 -1.51829 19.485 3.32403 {normal=(-0.327184 0.129614 0.936029)} Vertex 3877 -1.51743 16.7884 3.19162 {normal=(-0.67955 0.0299232 0.733018)} Vertex 3878 -1.51631 18.9226 3.56327 {normal=(-0.0460855 0.127973 0.990706)} Vertex 3879 -1.51231 16.5184 3.18214 {normal=(-0.645136 -0.0908093 0.758652)} Vertex 3880 -1.51122 20.3771 3.67967 {normal=(-0.439505 0.258436 0.860259)} Vertex 3881 -1.51094 18.9025 3.27359 {normal=(-0.320487 -0.29727 0.899399)} Vertex 3882 -1.51094 19.7168 3.27357 {normal=(-0.320534 0.297309 0.899369)} Vertex 3883 -1.51062 22.4025 -2.53831 {normal=(-0.447354 0.8442 0.295298)} Vertex 3884 -1.51043 18.8554 3.5679 {normal=(0.0101093 0.0956662 0.995362)} Vertex 3885 -1.50682 16.8999 -2.39442 {normal=(0.490812 -0.326431 0.807803)} Vertex 3886 -1.50495 22.7814 1.94106 {normal=(-0.380097 0.770022 0.512438)} Vertex 3887 -1.50465 20.6201 3.61062 {normal=(-0.44558 0.373111 0.813785)} Vertex 3888 -1.5025 20.0707 3.63454 {normal=(-0.539491 -0.697263 0.471989)} Vertex 3889 -1.50155 20.4975 3.64675 {normal=(-0.498538 0.232515 0.835103)} Vertex 3890 -1.49933 4.98294 4.96264 {normal=(0.0316835 -0.32091 0.94658)} Vertex 3891 -1.49792 17.1608 3.23754 {normal=(-0.326024 -0.881709 0.341025)} Vertex 3892 -1.4959 6.47029 5.06669 Vertex 3893 -1.49536 15.9595 3.18719 {normal=(-0.392753 0.658904 0.641553)} Vertex 3894 -1.49479 18.766 3.5731 {normal=(-0.0227233 0.0912832 0.995566)} Vertex 3895 -1.4908 14.4422 1.88735 {normal=(-0.479608 -0.865009 -0.14743)} Vertex 3896 -1.49013 19.1166 3.33096 {normal=(-0.306294 -0.142743 0.941174)} Vertex 3897 -1.49013 19.5028 3.33095 {normal=(-0.306308 0.142843 0.941154)} Vertex 3898 -1.48988 20.6943 3.56852 {normal=(-0.149564 0.727116 0.670025)} Vertex 3899 -1.48874 15.0706 2.9781 {normal=(-0.724729 -0.404769 0.557611)} Vertex 3900 -1.48656 21.4657 3.13016 {normal=(-0.297252 0.460368 0.836482)} Vertex 3901 -1.48596 22.4012 -2.42155 {normal=(-0.532545 0.739626 -0.411521)} Vertex 3902 -1.48463 22.3936 -2.45474 {normal=(-0.509068 0.860336 0.0259282)} Vertex 3903 -1.48441 14.1278 -3.05245 {normal=(-0.574685 0.386805 -0.721193)} Vertex 3904 -1.48366 17.9921 1.92361 {normal=(-0.317818 -0.948147 0.00290094)} Vertex 3905 -1.48365 20.6271 1.92354 {normal=(-0.317976 0.948095 0.00264081)} Vertex 3906 -1.48338 17.0069 3.19346 {normal=(-0.686458 0.0772461 0.723055)} Vertex 3907 -1.48338 18.981 3.55602 {normal=(-0.077707 0.249217 0.965325)} Vertex 3908 -1.48174 17.4894 3.52547 {normal=(-0.652963 -0.00689797 0.757358)} Vertex 3909 -1.47736 18.5954 3.58323 {normal=(-0.0573101 0.136461 0.988986)} Vertex 3910 -1.47558 22.0368 2.76383 {normal=(-0.406438 0.563089 0.71954)} Vertex 3911 -1.47433 -22.2983 -3.28052 Vertex 3912 -1.47387 11.948 0.162942 {normal=(-0.342163 -0.266972 0.900917)} Vertex 3913 -1.47272 17.1308 3.19784 {normal=(-0.51392 -0.683037 0.518986)} Vertex 3914 -1.47228 20.7208 -3.53124 {normal=(-0.561021 0.135391 -0.816654)} Vertex 3915 -1.46848 17.1211 3.19554 {normal=(-0.680571 -0.194867 0.706293)} Vertex 3916 -1.46804 16.1969 3.16502 {normal=(-0.591415 -0.122091 0.797071)} Vertex 3917 -1.4611 17.7963 3.59646 {normal=(-0.182805 -0.286426 0.940501)} Vertex 3918 -1.45994 -12.5875 2.70649 {normal=(-0.127587 -0.518529 0.845488)} Vertex 3919 -1.45963 19.1036 3.33846 {normal=(-0.2837 -0.152323 0.946738)} Vertex 3920 -1.45962 19.5158 3.33845 {normal=(-0.283644 0.152488 0.946728)} Vertex 3921 -1.4592 18.5054 3.0837 {normal=(-0.282424 -0.583086 0.76174)} Vertex 3922 -1.4592 20.1139 3.08366 {normal=(-0.282277 0.583125 0.761765)} Vertex 3923 -1.45816 18.6885 3.20091 {normal=(-0.281688 -0.451433 0.846676)} Vertex 3924 -1.45816 19.9308 3.20088 {normal=(-0.281713 0.451461 0.846653)} Vertex 3925 -1.45812 20.0184 3.57665 {normal=(-0.514241 -0.772281 0.373012)} Vertex 3926 -1.45789 -21.4916 -0.735368 Vertex 3927 -1.45724 20.72 3.52045 {normal=(-0.17938 0.715955 0.674708)} Vertex 3928 -1.45353 4.73062 -5.62246 {normal=(-0.184828 -0.387079 -0.903332)} Vertex 3929 -1.45198 16.0202 3.15881 {normal=(-0.41549 0.494002 0.763761)} Vertex 3930 -1.45061 18.3422 2.94043 {normal=(-0.276185 -0.700267 0.658292)} Vertex 3931 -1.4506 20.2771 2.94039 {normal=(-0.276003 0.700344 0.658286)} Vertex 3932 -1.45001 19.0382 3.53581 {normal=(-0.119422 0.463597 0.877961)} Vertex 3933 -1.44793 16.0308 3.15725 {normal=(-0.519384 0.109592 0.847484)} Vertex 3934 -1.44751 18.8869 3.28919 {normal=(-0.274147 -0.308661 0.910808)} Vertex 3935 -1.44751 19.7325 3.28916 {normal=(-0.274182 0.308779 0.910758)} Vertex 3936 -1.44722 23.031 1.53065 {normal=(-0.357613 0.834585 0.419023)} Vertex 3937 -1.44662 14.4936 1.53985 {normal=(-0.473589 -0.861733 -0.182016)} Vertex 3938 -1.44461 16.7321 -2.19873 {normal=(-0.627157 0.0217092 -0.77859)} Vertex 3939 -1.44345 15.7698 3.49405 {normal=(-0.713271 0.0296408 0.700261)} Vertex 3940 -1.44051 19.7402 2.85416 {normal=(-0.223024 -0.9357 0.273362)} Vertex 3941 -1.44023 19.7499 3.40663 {normal=(-0.362739 -0.559331 0.745365)} Vertex 3942 -1.4384 19.7403 3.21442 {normal=(-0.150111 -0.988621 0.00976508)} Vertex 3943 -1.43831 19.7435 3.39858 {normal=(-0.267499 -0.909749 0.317493)} Vertex 3944 -1.43778 19.7714 3.41598 {normal=(-0.385875 -0.273259 0.881153)} Vertex 3945 -1.43663 15.7978 3.48753 {normal=(-0.613353 0.553843 0.563078)} Vertex 3946 -1.43514 18.4285 3.61794 {normal=(-0.121357 0.219245 0.968093)} Vertex 3947 -1.43468 4.53792 -5.415 Vertex 3948 -1.43279 4.6941 4.77574 Vertex 3949 -1.4326 18.2027 2.77465 {normal=(-0.263065 -0.800337 0.538756)} Vertex 3950 -1.43259 20.4166 2.77459 {normal=(-0.263072 0.800353 0.538728)} Vertex 3951 -1.43095 19.8082 3.42663 {normal=(-0.37173 -0.0227576 0.928062)} Vertex 3952 -1.43031 22.6438 -2.16719 {normal=(-0.32591 0.757002 -0.566331)} Vertex 3953 -1.42752 19.0956 3.34635 {normal=(-0.259984 -0.158349 0.952541)} Vertex 3954 -1.42751 19.5237 3.34634 {normal=(-0.259888 0.158289 0.952577)} Vertex 3955 -1.42716 23.2997 -4.89584 {normal=(-0.998688 -0.0416964 -0.0297429)} Vertex 3956 -1.42649 19.9789 3.51097 {normal=(-0.479134 -0.836279 0.266587)} Vertex 3957 -1.42578 20.8576 3.4476 {normal=(-0.402335 0.443384 0.80096)} Vertex 3958 -1.42364 22.0236 -3.16275 {normal=(-0.463502 0.454689 -0.760542)} Vertex 3959 -1.42251 17.26 3.56062 {normal=(-0.698651 -0.371681 0.611343)} Vertex 3960 -1.4217 15.6591 3.46823 {normal=(-0.664296 -0.312164 0.679164)} Vertex 3961 -1.42106 14.5312 1.27168 {normal=(-0.348223 -0.899547 -0.263734)} Vertex 3962 -1.42084 19.8442 3.4244 {normal=(-0.294909 0.309082 0.904155)} Vertex 3963 -1.41618 19.0943 3.50263 {normal=(-0.140646 0.589707 0.795276)} Vertex 3964 -1.41247 14.3995 2.45526 {normal=(-0.441994 -0.891531 0.0990664)} Vertex 3965 -1.40967 17.2322 3.54534 {normal=(-0.541383 -0.725458 0.424989)} Vertex 3966 -1.40837 17.6929 3.57602 {normal=(-0.25337 -0.275694 0.927252)} Vertex 3967 -1.40761 19.9522 3.4375 {normal=(-0.44029 -0.857132 0.267337)} Vertex 3968 -1.40745 19.8793 3.40929 {normal=(-0.250487 0.441016 0.861836)} Vertex 3969 -1.40561 18.0905 2.59043 {normal=(-0.243434 -0.880855 0.405998)} Vertex 3970 -1.40559 20.5288 2.59036 {normal=(-0.243548 0.880842 0.405958)} Vertex 3971 -1.40386 22.4184 -2.86419 {normal=(-0.384757 0.701133 -0.600312)} Vertex 3972 -1.40202 19.2713 2.63387 {normal=(-0.177664 0.820765 0.542937)} Vertex 3973 -1.4012 23.397 -5.10793 {normal=(-0.91942 0.175591 -0.351903)} Vertex 3974 -1.40092 17.3376 3.59945 {normal=(-0.722668 -0.0825687 0.686246)} Vertex 3975 -1.40071 23.2012 -4.6514 {normal=(-0.976576 -0.168239 0.134143)} Vertex 3976 -1.39984 14.5387 -2.90405 {normal=(-0.582537 0.359984 -0.728741)} Vertex 3977 -1.39934 22.5175 -2.69597 {normal=(-0.397221 0.913839 -0.0843449)} Vertex 3978 -1.39927 19.9013 3.40042 {normal=(-0.266684 0.397087 0.878181)} Vertex 3979 -1.39867 19.3097 3.371 {normal=(-0.238728 3.75024e-05 0.971087)} Vertex 3980 -1.39856 19.1249 3.48117 {normal=(-0.128617 0.757789 0.639697)} Vertex 3981 -1.39764 19.1331 2.92622 {normal=(-0.0745271 0.976506 0.202194)} Vertex 3982 -1.39734 19.9327 3.39969 {normal=(-0.49542 -0.606711 0.62166)} Vertex 3983 -1.39714 19.1302 3.47145 {normal=(-0.081501 0.963316 0.255694)} Vertex 3984 -1.39684 19.1329 3.28646 {normal=(-0.0394864 0.999189 0.00787664)} Vertex 3985 -1.3963 19.91 3.39779 {normal=(-0.34581 0.188519 0.919172)} Vertex 3986 -1.39579 22.2894 2.59895 {normal=(-0.239305 0.803371 0.545278)} Vertex 3987 -1.39566 19.9205 3.39755 {normal=(-0.441549 -0.103694 0.891225)} Vertex 3988 -1.39549 21.1069 3.34995 {normal=(-0.366085 0.4171 0.831871)} Vertex 3989 -1.39527 17.6727 3.57427 {normal=(-0.457692 -0.0528099 0.887541)} Vertex 3990 -1.39475 23.3154 0.946713 {normal=(-0.322308 0.914401 0.244926)} Vertex 3991 -1.3946 19.093 3.35445 {normal=(-0.235676 -0.160143 0.958546)} Vertex 3992 -1.39459 19.5264 3.35443 {normal=(-0.235693 0.160347 0.958508)} Vertex 3993 -1.39371 15.2697 3.2467 {normal=(-0.710473 -0.385924 0.588465)} Vertex 3994 -1.3928 -21.4147 -1.03516 Vertex 3995 -1.39137 -30.307 -3.72014 {normal=(0.996775 0.00466779 -0.080109)} Vertex 3996 -1.391 15.8579 3.43053 {normal=(-0.446433 0.779674 0.439097)} Vertex 3997 -1.38582 17.6223 3.59296 {normal=(-0.627004 0.150044 0.76443)} Vertex 3998 -1.38321 12.35 0.31408 {normal=(-0.350786 -0.262235 0.89899)} Vertex 3999 -1.38265 21.7377 3.00482 {normal=(-0.254848 0.517936 0.816575)} Vertex 4000 -1.38248 18.8816 3.30517 {normal=(-0.22676 -0.312568 0.922432)} Vertex 4001 -1.38248 19.7377 3.30515 {normal=(-0.226795 0.312539 0.922433)} Vertex 4002 -1.37991 17.1954 3.49231 {normal=(-0.393195 -0.870905 0.294826)} Vertex 4003 -1.37203 14.7141 2.91863 {normal=(-0.799184 -0.351144 0.487856)} Vertex 4004 -1.37137 15.4659 3.41008 {normal=(-0.674511 -0.357109 0.646148)} Vertex 4005 -1.3703 18.0084 2.3923 {normal=(-0.217948 -0.939737 0.263424)} Vertex 4006 -1.37029 20.6109 2.39223 {normal=(-0.217993 0.939746 0.263357)} Vertex 4007 -1.36814 18.2652 3.67724 {normal=(-0.179854 0.153552 0.971635)} Vertex 4008 -1.36803 14.3536 2.12409 {normal=(-0.413798 -0.909885 -0.0296636)} Vertex 4009 -1.36465 23.607 -4.60149 {normal=(-0.963801 0.250347 0.0917298)} Vertex 4010 -1.36262 18.6808 3.2244 {normal=(-0.212336 -0.456999 0.863751)} Vertex 4011 -1.36262 19.9386 3.22436 {normal=(-0.212315 0.457139 0.863682)} Vertex 4012 -1.36168 19.0956 3.36254 {normal=(-0.211267 -0.158338 0.964518)} Vertex 4013 -1.36167 19.5237 3.36253 {normal=(-0.211389 0.158272 0.964502)} Vertex 4014 -1.35535 -11.6515 3.06806 {normal=(0.24549 -0.310622 0.918286)} Vertex 4015 -1.35533 14.4973 2.77853 {normal=(-0.737792 -0.511752 0.440196)} Vertex 4016 -1.35454 19.5229 2.62421 {normal=(-0.415163 -0.498721 0.760866)} Vertex 4017 -1.35275 23.6603 -4.89928 {normal=(-0.873731 0.440125 -0.207086)} Vertex 4018 -1.3507 20.0758 -3.66219 {normal=(-0.558739 0.00284415 -0.829339)} Vertex 4019 -1.34909 6.71821 5.02003 Vertex 4020 -1.34893 23.0478 -5.10143 {normal=(-0.87065 -0.422793 -0.251427)} Vertex 4021 -1.34826 22.4838 -2.56583 {normal=(-0.336368 0.897635 0.284794)} Vertex 4022 -1.34688 14.3876 1.80127 {normal=(-0.391493 -0.903554 -0.174137)} Vertex 4023 -1.34662 23.3096 -0.874511 {normal=(-0.216496 0.955166 -0.201958)} Vertex 4024 -1.34493 17.465 3.66181 {normal=(-0.697927 0.0634173 0.713356)} Vertex 4025 -1.33889 12.5013 -1.62561 {normal=(0.0570678 -0.871279 -0.487459)} Vertex 4026 -1.33551 18.4954 3.11411 {normal=(-0.192706 -0.590314 0.783833)} Vertex 4027 -1.3355 20.1239 3.11406 {normal=(-0.192666 0.590379 0.783793)} Vertex 4028 -1.33323 17.1496 3.40153 {normal=(-0.34809 -0.890789 0.292111)} Vertex 4029 -1.33299 16.777 3.35632 {normal=(-0.596899 -0.000446828 0.802317)} Vertex 4030 -1.33133 16.5071 -2.3084 {normal=(-0.603779 0.103161 -0.790448)} Vertex 4031 -1.32958 14.9586 -2.7584 {normal=(-0.584246 0.308997 -0.750452)} Vertex 4032 -1.32957 19.1036 3.37043 {normal=(-0.187491 -0.152303 0.970387)} Vertex 4033 -1.32957 19.5158 3.37042 {normal=(-0.187572 0.152465 0.970346)} Vertex 4034 -1.3292 23.5204 -4.33204 {normal=(-0.958857 0.112228 0.260764)} Vertex 4035 -1.32859 21.9691 2.86957 {normal=(-0.236672 0.5649 0.79049)} Vertex 4036 -1.32755 17.9583 2.18515 {normal=(-0.187277 -0.975606 0.114541)} Vertex 4037 -1.32753 20.661 2.18508 {normal=(-0.187246 0.975625 0.114432)} Vertex 4038 -1.32718 22.4764 -2.44965 {normal=(-0.383826 0.839619 -0.384341)} Vertex 4039 -1.32513 14.9207 3.12934 {normal=(-0.816639 -0.300498 0.492749)} Vertex 4040 -1.3242 22.4701 -2.48373 {normal=(-0.375938 0.92637 0.0225533)} Vertex 4041 -1.3234 22.9482 -4.87701 {normal=(-0.833198 -0.551585 -0.0391854)} Vertex 4042 -1.32318 21.3686 3.23779 {normal=(-0.267923 0.471741 0.840046)} Vertex 4043 -1.32211 20.146 3.82607 {normal=(-0.430586 0.00660025 0.902526)} Vertex 4044 -1.32185 23.1016 -4.37459 {normal=(-0.912471 -0.277998 0.300189)} Vertex 4045 -1.32184 20.0651 3.81358 {normal=(-0.515668 -0.379998 0.767911)} Vertex 4046 -1.3217 16.5039 3.3352 {normal=(-0.568174 -0.128574 0.812802)} Vertex 4047 -1.31785 23.16 -5.26138 {normal=(-0.807876 -0.191725 -0.557296)} Vertex 4048 -1.31745 18.8869 3.32116 {normal=(-0.179386 -0.308664 0.934102)} Vertex 4049 -1.31745 19.7325 3.32114 {normal=(-0.179342 0.308782 0.934072)} Vertex 4050 -1.31529 14.4359 1.50241 {normal=(-0.293907 -0.927428 -0.231292)} Vertex 4051 -1.31462 20.263 3.81217 {normal=(-0.435772 0.135988 0.889725)} Vertex 4052 -1.31381 20.0205 3.77469 {normal=(-0.534271 -0.648143 0.542646)} Vertex 4053 -1.31348 16.9978 3.35072 {normal=(-0.604594 0.0659126 0.793802)} Vertex 4054 -1.31267 20.4974 3.78028 {normal=(-0.47888 0.268958 0.835665)} Vertex 4055 -1.31147 20.3802 3.7969 {normal=(-0.507485 0.122445 0.852916)} Vertex 4056 -1.31131 12.761 0.462476 {normal=(-0.360376 -0.266606 0.893896)} Vertex 4057 -1.30944 12.361 -1.36256 {normal=(0.0958943 -0.892554 -0.440627)} Vertex 4058 -1.30834 17.122 3.35409 {normal=(-0.473507 -0.72224 0.504143)} Vertex 4059 -1.30655 15.9503 3.32305 {normal=(-0.364233 0.797486 0.480989)} Vertex 4060 -1.30526 17.1128 3.34998 {normal=(-0.610001 -0.234275 0.756977)} Vertex 4061 -1.30271 14.3103 0.922714 {normal=(-0.37739 -0.368273 0.849678)} Vertex 4062 -1.30181 18.3301 2.97702 {normal=(-0.16836 -0.709023 0.684793)} Vertex 4063 -1.3018 20.2892 2.97697 {normal=(-0.168338 0.709037 0.684783)} Vertex 4064 -1.29923 -9.53645 3.60708 Vertex 4065 -1.29906 19.1166 3.37793 {normal=(-0.164963 -0.142759 0.975914)} Vertex 4066 -1.29906 19.5028 3.37792 {normal=(-0.164937 0.142815 0.97591)} Vertex 4067 -1.29716 19.9673 3.72052 {normal=(-0.534197 -0.710915 0.457421)} Vertex 4068 -1.29625 20.5694 3.75098 {normal=(-0.201043 0.65705 0.726544)} Vertex 4069 -1.29585 18.1106 3.70253 {normal=(-0.188852 -0.0534408 0.98055)} Vertex 4070 -1.28717 15.475 -2.60498 {normal=(-0.583641 0.245086 -0.774142)} Vertex 4071 -1.28179 6.82776 4.84247 Vertex 4072 -1.28175 19.6903 2.89376 {normal=(-0.400496 -0.872153 0.280985)} Vertex 4073 -1.28104 19.6903 3.25392 {normal=(-0.374753 -0.927083 0.00883971)} Vertex 4074 -1.28021 19.6932 3.43845 {normal=(-0.410273 -0.862674 0.295752)} Vertex 4075 -1.2796 16.1787 3.28736 {normal=(-0.527865 -0.167411 0.832666)} Vertex 4076 -1.27926 19.699 3.44736 {normal=(-0.387065 -0.601277 0.699033)} Vertex 4077 -1.2784 17.9414 1.97407 {normal=(-0.170267 -0.984618 0.0392019)} Vertex 4078 -1.27839 20.6779 1.974 {normal=(-0.170213 0.984636 0.0389917)} Vertex 4079 -1.27716 19.7173 3.45882 {normal=(-0.345535 -0.386604 0.855069)} Vertex 4080 -1.27437 16.0881 -2.44382 {normal=(-0.592361 0.192621 -0.782308)} Vertex 4081 -1.2739 19.7481 3.47283 {normal=(-0.275187 -0.144821 0.95042)} Vertex 4082 -1.27187 19.9058 3.65108 {normal=(-0.551484 -0.75792 0.348457)} Vertex 4083 -1.2709 19.1344 3.38485 {normal=(-0.144294 -0.129625 0.981008)} Vertex 4084 -1.2709 19.485 3.38484 {normal=(-0.14417 0.129672 0.98102)} Vertex 4085 -1.26961 14.318 2.00957 {normal=(-0.324201 -0.93839 -0.119655)} Vertex 4086 -1.26709 18.6885 3.24788 {normal=(-0.142987 -0.451424 0.880779)} Vertex 4087 -1.26708 19.9308 3.24785 {normal=(-0.14294 0.451477 0.880759)} Vertex 4088 -1.26699 19.778 3.47432 {normal=(-0.121599 0.215895 0.968815)} Vertex 4089 -1.26687 17.251 -2.35172 Vertex 4090 -1.26685 13.6972 0.761545 {normal=(-0.364204 -0.26157 0.893832)} Vertex 4091 -1.26625 -21.6502 -5.13275 Vertex 4092 -1.26421 13.1808 0.608134 {normal=(-0.363021 -0.268852 0.892152)} Vertex 4093 -1.26289 16.0013 3.26785 {normal=(-0.41042 0.60548 0.681872)} Vertex 4094 -1.26235 18.1889 2.81651 {normal=(-0.139886 -0.810351 0.569002)} Vertex 4095 -1.26234 20.4304 2.81645 {normal=(-0.139903 0.810301 0.569069)} Vertex 4096 -1.26221 20.5961 3.70901 {normal=(-0.144614 0.709495 0.689712)} Vertex 4097 -1.26 16.0111 3.26491 {normal=(-0.504205 0.121298 0.855023)} Vertex 4098 -1.25965 17.5963 3.71472 {normal=(-0.651177 0.228803 0.723615)} Vertex 4099 -1.25916 23.8393 -4.4419 {normal=(-0.83945 0.529627 0.121733)} Vertex 4100 -1.25779 14.338 2.65833 {normal=(-0.577273 -0.79425 0.189533)} Vertex 4101 -1.25643 19.807 3.4633 {normal=(-0.0336229 0.381742 0.923657)} Vertex 4102 -1.25512 19.8693 3.57747 {normal=(-0.555982 -0.811458 0.180055)} Vertex 4103 -1.25402 18.9025 3.33675 {normal=(-0.13295 -0.297249 0.945498)} Vertex 4104 -1.25402 19.7168 3.33673 {normal=(-0.132984 0.297306 0.945476)} Vertex 4105 -1.25198 14.5685 1.10039 {normal=(-0.332623 -0.901625 0.276467)} Vertex 4106 -1.24949 19.8247 3.45656 {normal=(-0.038768 0.376526 0.925595)} Vertex 4107 -1.24823 -6.50608 4.13236 {normal=(-0.189539 -0.0742442 0.979062)} Vertex 4108 -1.24733 23.8561 -4.77555 {normal=(-0.735569 0.654641 -0.174309)} Vertex 4109 -1.24718 12.2607 -1.14015 {normal=(0.0852375 -0.904024 -0.418898)} Vertex 4110 -1.2469 19.8578 3.49966 {normal=(-0.547673 -0.826139 0.132471)} Vertex 4111 -1.24638 23.4006 -4.09093 {normal=(-0.897714 -0.0557278 0.437039)} Vertex 4112 -1.24619 19.8311 3.45412 {normal=(-0.158305 0.173176 0.972085)} Vertex 4113 -1.24579 19.1564 3.39103 {normal=(-0.125609 -0.113373 0.985581)} Vertex 4114 -1.24579 19.4629 3.39102 {normal=(-0.125598 0.113318 0.985588)} Vertex 4115 -1.24467 -13.46 2.32892 {normal=(0.471303 -0.0828566 0.878071)} Vertex 4116 -1.2441 19.8387 3.45486 {normal=(-0.358196 -0.187077 0.914712)} Vertex 4117 -1.24323 19.8476 3.45879 {normal=(-0.543184 -0.640054 0.543398)} Vertex 4118 -1.24126 22.8612 -4.58811 {normal=(-0.771531 -0.628061 0.101383)} Vertex 4119 -1.23778 14.3578 1.77479 {normal=(-0.242593 -0.948156 -0.205303)} Vertex 4120 -1.23753 17.2349 3.75608 {normal=(-0.700585 -0.34596 0.624093)} Vertex 4121 -1.23598 6.77915 4.54701 Vertex 4122 -1.23554 19.4513 2.65104 {normal=(-0.400053 -0.385358 0.831539)} Vertex 4123 -1.23501 20.7361 3.62288 {normal=(-0.366529 0.486041 0.79336)} Vertex 4124 -1.2305 14.3035 2.33568 {normal=(-0.404307 -0.914057 0.0321931)} Vertex 4125 -1.22687 17.2084 3.74123 {normal=(-0.525027 -0.74607 0.409544)} Vertex 4126 -1.22543 17.3114 3.78082 {normal=(-0.718485 -0.0537438 0.693463)} Vertex 4127 -1.22434 19.1823 3.3963 {normal=(-0.109723 -0.0941296 0.989495)} Vertex 4128 -1.22434 19.437 3.39629 {normal=(-0.109746 0.094148 0.989491)} Vertex 4129 -1.22333 15.796 3.69142 {normal=(-0.629402 0.0731913 0.773625)} Vertex 4130 -1.22253 23.7643 -4.15932 {normal=(-0.843456 0.393938 0.365232)} Vertex 4131 -1.21953 19.4152 -3.70281 {normal=(-0.566494 0.0281775 -0.823584)} Vertex 4132 -1.21879 15.8234 3.68091 {normal=(-0.531047 0.613412 0.584564)} Vertex 4133 -1.21825 17.9648 3.6938 {normal=(-0.219961 -0.161993 0.961964)} Vertex 4134 -1.2181 18.0754 2.63652 {normal=(-0.107981 -0.891858 0.439238)} Vertex 4135 -1.21809 20.544 2.63646 {normal=(-0.107984 0.891866 0.439221)} Vertex 4136 -1.21798 16.5351 -4.15741 {normal=(-0.405716 -0.225364 -0.88578)} Vertex 4137 -1.21508 21.4985 -3.49464 {normal=(-0.423548 0.293808 -0.856904)} Vertex 4138 -1.21464 20.9895 3.49261 {normal=(-0.342428 0.462685 0.81772)} Vertex 4139 -1.21463 15.1169 3.41067 {normal=(-0.775008 -0.238924 0.585046)} Vertex 4140 -1.21454 15.9239 -3.85193 {normal=(-0.32865 -0.485452 -0.810139)} Vertex 4141 -1.21182 18.5054 3.14452 {normal=(-0.102963 -0.583077 0.805866)} Vertex 4142 -1.21181 20.1139 3.14447 {normal=(-0.103079 0.583124 0.805817)} Vertex 4143 -1.20888 21.6426 3.1111 {normal=(-0.200147 0.514162 0.834013)} Vertex 4144 -1.20777 12.7302 -2.01553 {normal=(0.0852033 -0.86893 -0.487547)} Vertex 4145 -1.20762 23.477 -5.33031 {normal=(-0.668976 0.367516 -0.646068)} Vertex 4146 -1.20709 19.2113 3.40054 {normal=(-0.0969781 -0.0726743 0.99263)} Vertex 4147 -1.20709 19.4081 3.40053 {normal=(-0.0969482 0.0728357 0.992621)} Vertex 4148 -1.20589 18.8022 3.57277 {normal=(-0.0110151 0.205429 0.97861)} Vertex 4149 -1.20479 19.3205 2.65031 {normal=(-0.309662 0.461443 0.831372)} Vertex 4150 -1.20454 14.5442 3.10809 {normal=(-0.800737 -0.403961 0.442308)} Vertex 4151 -1.20326 17.4017 -4.16339 {normal=(-0.499413 0.113547 -0.858891)} Vertex 4152 -1.20247 18.9753 3.54262 {normal=(0.17679 -0.156816 0.971676)} Vertex 4153 -1.20062 18.6514 3.59139 {normal=(-0.0747722 0.20937 0.974973)} Vertex 4154 -1.19907 15.4944 -3.56792 {normal=(-0.328857 -0.621181 -0.711328)} Vertex 4155 -1.19831 15.6789 3.67411 {normal=(-0.60656 -0.267743 0.748598)} Vertex 4156 -1.1977 18.9645 3.53953 {normal=(0.178317 -0.100079 0.97887)} Vertex 4157 -1.19545 19.0015 3.54576 {normal=(0.169094 -0.147033 0.974571)} Vertex 4158 -1.19445 19.2427 3.40364 {normal=(-0.0876206 -0.0495053 0.994923)} Vertex 4159 -1.19445 19.3766 3.40364 {normal=(-0.0876784 0.0496012 0.994913)} Vertex 4160 -1.19424 22.0632 -3.23088 {normal=(-0.349511 0.524686 -0.776239)} Vertex 4161 -1.19376 18.9283 3.35157 {normal=(-0.0889742 -0.278378 0.956342)} Vertex 4162 -1.19376 19.6911 3.35155 {normal=(-0.0889755 0.278527 0.956298)} Vertex 4163 -1.19058 17.4379 3.81548 {normal=(-0.691397 0.097164 0.715911)} Vertex 4164 -1.18984 17.1714 3.67379 {normal=(-0.342131 -0.908244 0.240912)} Vertex 4165 -1.18935 18.9546 3.53833 {normal=(0.118072 0.0932076 0.988621)} Vertex 4166 -1.18675 19.2758 3.40554 {normal=(-0.0819706 -0.0250289 0.99632)} Vertex 4167 -1.18675 19.3436 3.40554 {normal=(-0.0819558 0.0250797 0.99632)} Vertex 4168 -1.18415 19.3097 3.40617 {normal=(-0.0800072 4.81054e-06 0.996794)} Vertex 4169 -1.18236 22.4308 -2.9496 {normal=(-0.322028 0.673275 -0.665582)} Vertex 4170 -1.18111 20.8314 -3.71129 {normal=(-0.5342 0.175867 -0.826862)} Vertex 4171 -1.18044 14.3797 2.9799 {normal=(-0.731044 -0.581002 0.357787)} Vertex 4172 -1.18029 14.7087 3.28486 {normal=(-0.829717 -0.319782 0.457503)} Vertex 4173 -1.17743 18.9457 3.53903 {normal=(0.0547253 0.233794 0.970745)} Vertex 4174 -1.17691 18.5019 3.63473 {normal=(-0.156525 0.302358 0.940255)} Vertex 4175 -1.17664 19.043 3.54893 {normal=(0.116542 0.00392152 0.993178)} Vertex 4176 -1.1741 23.6721 -5.18989 {normal=(-0.609632 0.591379 -0.527844)} Vertex 4177 -1.17395 15.8801 3.6063 {normal=(-0.381943 0.841601 0.381873)} Vertex 4178 -1.1739 18.7115 3.27079 {normal=(-0.075125 -0.434711 0.897431)} Vertex 4179 -1.1739 19.9078 3.27076 {normal=(-0.075199 0.434744 0.897409)} Vertex 4180 -1.17304 17.882 3.69195 {normal=(-0.321131 -0.106115 0.941071)} Vertex 4181 -1.17166 14.3021 1.98857 {normal=(-0.204669 -0.963172 -0.174383)} Vertex 4182 -1.17159 15.2465 -3.30537 Vertex 4183 -1.17039 18.5238 -3.86987 {normal=(-0.55257 0.175757 -0.814724)} Vertex 4184 -1.17016 17.9922 2.4415 {normal=(-0.073497 -0.951432 0.298959)} Vertex 4185 -1.17014 20.6271 2.44144 {normal=(-0.0734721 0.951464 0.29886)} Vertex 4186 -1.16647 22.2805 2.66827 {normal=(-0.218957 0.63812 0.738147)} Vertex 4187 -1.16579 19.3678 2.65738 {normal=(-0.443594 -0.120407 0.888103)} Vertex 4188 -1.16097 21.877 -3.38221 {normal=(-0.361511 0.393988 -0.845034)} Vertex 4189 -1.16023 19.0845 3.53999 {normal=(0.0130521 0.313018 0.949657)} Vertex 4190 -1.16021 17.8624 3.69696 {normal=(-0.500601 0.117915 0.85761)} Vertex 4191 -1.15664 21.9466 2.92126 {normal=(-0.181744 0.560304 0.808102)} Vertex 4192 -1.15389 22.9823 -4.14796 {normal=(-0.75959 -0.433576 0.484804)} Vertex 4193 -1.153 18.3422 3.0136 {normal=(-0.0605175 -0.700271 0.711307)} Vertex 4194 -1.15299 20.2771 3.01355 {normal=(-0.0606665 0.700335 0.711231)} Vertex 4195 -1.15089 17.8123 3.71904 {normal=(-0.607077 0.269184 0.747661)} Vertex 4196 -1.14994 -21.4987 -1.24995 Vertex 4197 -1.14948 22.8024 -4.35597 {normal=(-0.699044 -0.6663 0.259581)} Vertex 4198 -1.14624 19.1259 3.51896 {normal=(-0.0565866 0.507807 0.85961)} Vertex 4199 -1.14585 15.695 -3.00421 {normal=(0.420933 -0.40716 0.810578)} Vertex 4200 -1.14521 -12.6054 2.63504 {normal=(0.288423 -0.328524 0.89938)} Vertex 4201 -1.14458 22.5651 2.41699 {normal=(-0.283109 0.684251 0.672049)} Vertex 4202 -1.14375 15.4721 3.62896 {normal=(-0.637498 -0.310849 0.70496)} Vertex 4203 -1.14314 14.4718 1.29458 {normal=(-0.0793893 -0.924785 -0.372117)} Vertex 4204 -1.14254 19.622 2.91353 {normal=(-0.517022 -0.805889 0.288499)} Vertex 4205 -1.14254 19.622 3.27363 {normal=(-0.516815 -0.856055 0.00845428)} Vertex 4206 -1.14205 19.1578 2.94925 {normal=(-0.168591 0.95808 0.231647)} Vertex 4207 -1.14205 19.1578 3.30935 {normal=(-0.156342 0.987668 0.00827573)} Vertex 4208 -1.14135 19.155 3.49416 {normal=(-0.147061 0.946002 0.288884)} Vertex 4209 -1.14118 19.6246 3.45831 {normal=(-0.509468 -0.805913 0.301574)} Vertex 4210 -1.13995 19.1494 3.50368 {normal=(-0.0994153 0.709407 0.697753)} Vertex 4211 -1.13854 21.252 3.35891 {normal=(-0.244755 0.503906 0.828356)} Vertex 4212 -1.13846 19.6299 3.46758 {normal=(-0.409316 -0.597232 0.689764)} Vertex 4213 -1.13814 18.9633 3.36524 {normal=(-0.0483562 -0.252894 0.966285)} Vertex 4214 -1.13814 19.656 3.36522 {normal=(-0.0483962 0.252895 0.966283)} Vertex 4215 -1.13806 18.9222 3.54242 {normal=(0.0532442 0.275874 0.959718)} Vertex 4216 -1.13746 23.6311 -3.92781 {normal=(-0.790495 0.244801 0.561418)} Vertex 4217 -1.13478 18.3538 3.70276 {normal=(-0.189237 0.260926 0.946629)} Vertex 4218 -1.13453 19.6456 3.47951 {normal=(-0.318548 -0.436043 0.841662)} Vertex 4219 -1.13387 23.2906 -5.44041 {normal=(-0.617118 0.017236 -0.786682)} Vertex 4220 -1.13223 20.0379 3.90175 {normal=(-0.364394 -0.13812 0.920945)} Vertex 4221 -1.13058 20.7976 -4.14715 {normal=(-0.994547 0.0732181 0.0742589)} Vertex 4222 -1.13054 19.9612 3.87784 {normal=(-0.463418 -0.498833 0.7324)} Vertex 4223 -1.1302 20.1531 3.90348 {normal=(-0.365287 -0.00203814 0.930893)} Vertex 4224 -1.13003 14.2599 2.23184 {normal=(-0.30777 -0.948754 -0.0717173)} Vertex 4225 -1.12997 22.8513 -5.21825 {normal=(-0.542815 -0.732309 -0.411188)} Vertex 4226 -1.12938 19.6716 3.4941 {normal=(-0.180939 -0.208209 0.961202)} Vertex 4227 -1.129 20.2688 3.9048 {normal=(-0.433438 -0.00225471 0.90118)} Vertex 4228 -1.12863 20.3849 3.90569 {normal=(-0.417188 0.14909 0.896508)} Vertex 4229 -1.12673 17.6031 3.82859 {normal=(-0.640288 0.25927 0.723056)} Vertex 4230 -1.12642 17.1241 3.55376 {normal=(-0.292465 -0.926739 0.235836)} Vertex 4231 -1.12511 19.9231 3.83174 {normal=(-0.497146 -0.701163 0.511092)} Vertex 4232 -1.12472 20.1199 -4.35024 {normal=(-0.988213 -0.147739 0.0401019)} Vertex 4233 -1.12469 23.4539 0.20058 {normal=(-0.209479 0.977751 -0.0110667)} Vertex 4234 -1.12185 16.8397 -2.66445 {normal=(0.433106 -0.380907 0.816902)} Vertex 4235 -1.12151 19.697 3.49626 {normal=(0.0453795 0.157966 0.986401)} Vertex 4236 -1.1197 17.9414 2.23625 {normal=(-0.0372386 -0.987759 0.151475)} Vertex 4237 -1.11968 20.6779 2.23617 {normal=(-0.0372084 0.987779 0.151356)} Vertex 4238 -1.11907 23.1282 -1.58431 {normal=(-0.200724 0.894672 -0.399089)} Vertex 4239 -1.11559 19.8711 3.7697 {normal=(-0.485898 -0.7144 0.503523)} Vertex 4240 -1.1118 20.4584 3.88761 {normal=(-0.186963 0.555631 0.810135)} Vertex 4241 -1.11093 19.7218 3.48598 {normal=(0.165055 0.331521 0.928898)} Vertex 4242 -1.11068 23.9965 -4.41706 {normal=(-0.502892 0.858758 0.0981604)} Vertex 4243 -1.10771 14.8731 3.51022 {normal=(-0.810653 -0.208687 0.547076)} Vertex 4244 -1.10554 16.7751 3.49899 {normal=(-0.471099 -0.0101417 0.882022)} Vertex 4245 -1.10388 19.7367 3.47956 {normal=(0.169835 0.335945 0.926443)} Vertex 4246 -1.10317 20.1507 -3.8384 {normal=(-0.633975 0.00365941 -0.773345)} Vertex 4247 -1.1027 22.9494 -5.3596 {normal=(-0.520639 -0.517867 -0.678785)} Vertex 4248 -1.102 19.8052 3.69171 {normal=(-0.499612 -0.759647 0.416321)} Vertex 4249 -1.10151 20.8012 -4.35621 {normal=(-0.917872 0.226482 -0.325908)} Vertex 4250 -1.10035 19.7416 3.47701 {normal=(0.0309395 0.108514 0.993613)} Vertex 4251 -1.0974 19.7472 3.47815 {normal=(-0.253784 -0.313958 0.91489)} Vertex 4252 -1.09727 22.7614 -5.00888 {normal=(-0.50088 -0.842631 -0.197717)} Vertex 4253 -1.09501 19.7535 3.48297 {normal=(-0.502444 -0.702947 0.503404)} Vertex 4254 -1.09485 19.7683 3.61088 {normal=(-0.530757 -0.819843 0.214834)} Vertex 4255 -1.09483 16.9803 3.48885 {normal=(-0.467866 0.0561816 0.882012)} Vertex 4256 -1.09416 19.7605 3.52722 {normal=(-0.54901 -0.826177 0.126565)} Vertex 4257 -1.09356 16.5113 3.47571 {normal=(-0.470951 -0.139196 0.871108)} Vertex 4258 -1.0934 17.0961 3.49125 {normal=(-0.390424 -0.772653 0.500576)} Vertex 4259 -1.09306 20.1312 -4.58962 {normal=(-0.925663 -0.0799799 -0.369799)} Vertex 4260 -1.09245 23.2677 -3.89421 {normal=(-0.758054 -0.253372 0.600963)} Vertex 4261 -1.0921 18.2027 2.85836 {normal=(-0.0167135 -0.800341 0.599313)} Vertex 4262 -1.09209 20.4166 2.8583 {normal=(-0.0167082 0.800347 0.599304)} Vertex 4263 -1.09117 18.5353 3.17418 {normal=(-0.0154389 -0.56144 0.827374)} Vertex 4264 -1.09116 20.0841 3.17413 {normal=(-0.015581 0.561487 0.827339)} Vertex 4265 -1.09098 22.8003 2.16742 {normal=(-0.27117 0.774691 0.571244)} Vertex 4266 -1.09078 17.0873 3.48627 {normal=(-0.486107 -0.265212 0.832684)} Vertex 4267 -1.08881 15.966 3.4676 {normal=(-0.347481 0.8595 0.374855)} Vertex 4268 -1.08854 19.007 3.37743 {normal=(-0.0121307 -0.220969 0.975205)} Vertex 4269 -1.08853 19.6124 3.37742 {normal=(-0.0121227 0.221007 0.975197)} Vertex 4270 -1.08578 23.8215 -5.09601 {normal=(-0.512815 0.713573 -0.47732)} Vertex 4271 -1.08536 18.7493 3.29256 {normal=(-0.0107571 -0.407256 0.913251)} Vertex 4272 -1.08536 19.87 3.29253 {normal=(-0.010849 0.407273 0.913242)} Vertex 4273 -1.08496 23.9844 -4.73675 {normal=(-0.430389 0.883168 -0.186496)} Vertex 4274 -1.08477 18.2158 3.74192 {normal=(-0.173636 0.0822986 0.981365)} Vertex 4275 -1.0838 14.2489 2.87425 {normal=(-0.572668 -0.801978 0.169948)} Vertex 4276 -1.08123 12.1513 -0.910214 {normal=(0.0258079 -0.909563 -0.414763)} Vertex 4277 -1.08118 -11.5593 2.94872 Vertex 4278 -1.08071 23.9328 -4.13322 {normal=(-0.50424 0.764625 0.401362)} Vertex 4279 -1.07942 14.2363 2.55803 {normal=(-0.438295 -0.898778 0.00983097)} Vertex 4280 -1.07852 20.4892 3.85057 {normal=(-0.10845 0.660109 0.7433)} Vertex 4281 -1.07594 -13.1685 2.17756 Vertex 4282 -1.07571 20.8629 -3.77099 {normal=(-0.786809 0.209592 -0.580519)} Vertex 4283 -1.07365 15.3573 3.62561 {normal=(-0.667491 -0.47208 0.575844)} Vertex 4284 -1.0706 14.3893 1.52017 {normal=(-0.0969243 -0.95015 -0.296345)} Vertex 4285 -1.06796 17.9243 2.0258 {normal=(-0.0187842 -0.996899 0.0764118)} Vertex 4286 -1.06795 20.6949 2.02573 {normal=(-0.0187324 0.996917 0.076193)} Vertex 4287 -1.06184 15.328 3.61275 {normal=(-0.610171 -0.262975 0.747352)} Vertex 4288 -1.06107 15.2065 3.61844 {normal=(-0.653298 -0.0751777 0.753359)} Vertex 4289 -1.0589 16.1889 3.41903 {normal=(-0.47765 -0.177714 0.860388)} Vertex 4290 -1.05887 20.8516 -3.91628 {normal=(-0.993266 0.0489085 0.105027)} Vertex 4291 -1.05631 20.1562 -4.08011 {normal=(-0.979849 -0.14906 0.132953)} Vertex 4292 -1.05163 20.6174 3.77163 {normal=(-0.297298 0.494496 0.816754)} Vertex 4293 -1.04912 20.1665 -3.9095 {normal=(-0.916758 -0.0614616 -0.394687)} Vertex 4294 -1.04901 23.4883 -3.77377 {normal=(-0.691756 0.0469009 0.720607)} Vertex 4295 -1.04617 19.0581 3.38785 {normal=(0.0187883 -0.183683 0.982806)} Vertex 4296 -1.04617 19.5613 3.38783 {normal=(0.0188169 0.183698 0.982803)} Vertex 4297 -1.04507 16.0136 3.39636 {normal=(-0.439685 0.669708 0.598472)} Vertex 4298 -1.0428 23.0726 1.74578 {normal=(-0.269826 0.842659 0.465962)} Vertex 4299 -1.04273 16.023 3.39258 {normal=(-0.516904 0.14122 0.844314)} Vertex 4300 -1.0423 13.7644 -3.51443 {normal=(-0.441819 0.408294 -0.798806)} Vertex 4301 -1.04169 13.744 -3.526 Vertex 4302 -1.04124 17.0622 -2.49695 Vertex 4303 -1.03512 17.2042 3.96579 {normal=(-0.655725 -0.357365 0.665068)} Vertex 4304 -1.03391 17.8072 3.82015 {normal=(-0.608243 0.301686 0.734184)} Vertex 4305 -1.03255 17.2806 3.97808 {normal=(-0.711294 -0.0361459 0.701964)} Vertex 4306 -1.03236 14.3211 1.77717 {normal=(-0.138021 -0.959682 -0.244869)} Vertex 4307 -1.03115 20.8429 3.6508 {normal=(-0.304723 0.488511 0.817619)} Vertex 4308 -1.0306 18.0905 2.68262 {normal=(0.027441 -0.880853 0.472593)} Vertex 4309 -1.03058 20.5288 2.68256 {normal=(0.0275597 0.880841 0.47261)} Vertex 4310 -1.02688 18.088 3.7522 {normal=(-0.199644 -0.00910161 0.979826)} Vertex 4311 -1.02639 17.1791 3.94962 {normal=(-0.47607 -0.769539 0.425637)} Vertex 4312 -1.02288 19.5352 2.91346 {normal=(-0.578331 -0.754346 0.310636)} Vertex 4313 -1.02288 19.5352 3.27356 {normal=(-0.606225 -0.795253 0.00798108)} Vertex 4314 -1.0212 19.5377 3.45818 {normal=(-0.577854 -0.762516 0.290954)} Vertex 4315 -1.01993 -13.4847 2.14227 {normal=(0.749591 -0.135404 0.647904)} Vertex 4316 -1.01869 17.4082 3.98648 {normal=(-0.692318 0.121375 0.711311)} Vertex 4317 -1.01783 19.5426 3.46731 {normal=(-0.43041 -0.578626 0.692776)} Vertex 4318 -1.01209 19.1153 3.39622 {normal=(0.0436859 -0.141905 0.988916)} Vertex 4319 -1.01209 19.504 3.39621 {normal=(0.043635 0.141941 0.988913)} Vertex 4320 -1.0099 13.9755 -3.43307 {normal=(-0.440828 0.381884 -0.812303)} Vertex 4321 -1.00989 19.5563 3.47807 {normal=(-0.299271 -0.418845 0.857325)} Vertex 4322 -1.00887 14.3917 3.27809 {normal=(-0.715985 -0.542464 0.43943)} Vertex 4323 -1.00786 18.3781 3.04928 {normal=(0.0444873 -0.674295 0.737121)} Vertex 4324 -1.00785 20.2413 3.04923 {normal=(0.0444653 0.674414 0.737014)} Vertex 4325 -1.00671 21.5235 3.2218 {normal=(-0.187016 0.523676 0.831137)} Vertex 4326 -1.0062 14.5139 3.42066 {normal=(-0.765745 -0.463907 0.44545)} Vertex 4327 -1.0046 22.6795 -4.73149 {normal=(-0.445689 -0.892531 -0.0689213)} Vertex 4328 -1.00365 18.8009 3.31264 {normal=(0.0485751 -0.369757 0.927858)} Vertex 4329 -1.00364 19.8185 3.31262 {normal=(0.0485787 0.369849 0.927821)} Vertex 4330 -1.00004 23.3818 1.15206 {normal=(-0.260567 0.919287 0.294984)} Vertex 4331 -0.998805 -9.53699 3.74189 {normal=(-0.176587 -0.242163 0.954031)} Vertex 4332 -0.997866 22.7864 -2.17998 {normal=(-0.251109 0.828618 -0.500336)} Vertex 4333 -0.997381 14.2623 2.02183 {normal=(-0.19496 -0.959843 -0.201722)} Vertex 4334 -0.997373 19.5787 3.49046 {normal=(-0.114033 -0.196288 0.973893)} Vertex 4335 -0.995076 23.7931 -3.88523 {normal=(-0.431336 0.622756 0.652782)} Vertex 4336 -0.994924 -12.9984 2.40676 Vertex 4337 -0.992853 18.0139 3.76184 {normal=(-0.313684 0.0830781 0.945886)} Vertex 4338 -0.989805 -19.9874 -0.37697 Vertex 4339 -0.987792 22.6542 -2.74836 {normal=(-0.368483 0.92925 -0.026738)} Vertex 4340 -0.987128 19.1774 3.40236 {normal=(0.0618804 -0.0965603 0.993402)} Vertex 4341 -0.987125 19.442 3.40235 {normal=(0.0618904 0.0966529 0.993392)} Vertex 4342 -0.985686 14.9699 3.68112 {normal=(-0.676807 -0.0683749 0.732978)} Vertex 4343 -0.984394 19.6012 3.49021 {normal=(0.174399 0.16327 0.971045)} Vertex 4344 -0.982692 17.9934 3.77084 {normal=(-0.458656 0.309731 0.832887)} Vertex 4345 -0.98185 14.2785 3.1689 {normal=(-0.637421 -0.676264 0.369272)} Vertex 4346 -0.981284 19.4564 -3.87598 {normal=(-0.636613 0.00947285 -0.771125)} Vertex 4347 -0.981275 17.5621 3.97371 {normal=(-0.638169 0.281101 0.716744)} Vertex 4348 -0.980573 21.5628 -3.53756 {normal=(-0.550794 0.358112 -0.753911)} Vertex 4349 -0.979581 15.8275 3.86088 {normal=(-0.542265 0.147269 0.8272)} Vertex 4350 -0.976537 18.5842 3.20235 {normal=(0.06756 -0.526008 0.847792)} Vertex 4351 -0.976529 20.0352 3.20232 {normal=(0.0676412 0.52603 0.847772)} Vertex 4352 -0.973853 17.1392 3.85909 {normal=(-0.290108 -0.934636 0.205655)} Vertex 4353 -0.973851 14.645 3.59662 {normal=(-0.771196 -0.334559 0.541597)} Vertex 4354 -0.973467 21.558 -3.76905 {normal=(-0.975086 0.174895 0.136452)} Vertex 4355 -0.972917 15.7142 3.84687 {normal=(-0.543175 -0.180364 0.820018)} Vertex 4356 -0.972742 15.8556 3.84971 {normal=(-0.453433 0.650565 0.609232)} Vertex 4357 -0.971899 19.2427 3.4061 {normal=(0.0730146 -0.0488626 0.996133)} Vertex 4358 -0.971898 19.3766 3.4061 {normal=(0.0729961 0.0489165 0.996132)} Vertex 4359 -0.971654 20.8624 -4.54346 {normal=(-0.644185 0.386237 -0.660187)} Vertex 4360 -0.970954 19.6236 3.47732 {normal=(0.307748 0.324768 0.894325)} Vertex 4361 -0.970016 18.0084 2.49071 {normal=(0.0709653 -0.939738 0.334451)} Vertex 4362 -0.970003 20.6109 2.49064 {normal=(0.0710382 0.939748 0.334406)} Vertex 4363 -0.96862 17.9685 3.7937 {normal=(-0.527348 0.449961 0.720722)} Vertex 4364 -0.96678 19.3097 3.40736 {normal=(0.07675 8.64544e-06 0.99705)} Vertex 4365 -0.965931 19.8623 3.90179 {normal=(-0.391829 -0.628111 0.67227)} Vertex 4366 -0.964046 19.9346 3.93639 {normal=(-0.30864 -0.271188 0.911701)} Vertex 4367 -0.963622 19.8305 3.84983 {normal=(-0.401846 -0.776507 0.485343)} Vertex 4368 -0.96242 19.6372 3.46941 {normal=(0.313804 0.321414 0.893432)} Vertex 4369 -0.961312 20.19 -4.79822 {normal=(-0.655598 0.0392005 -0.754092)} Vertex 4370 -0.960084 14.2131 2.25414 {normal=(-0.24392 -0.953459 -0.177255)} Vertex 4371 -0.958788 19.6418 3.46648 {normal=(0.135217 0.0816475 0.987446)} Vertex 4372 -0.957967 20.0474 3.95362 {normal=(-0.299446 -0.118598 0.946714)} Vertex 4373 -0.957809 19.7819 3.78207 {normal=(-0.375757 -0.759147 0.531509)} Vertex 4374 -0.955891 19.5248 -4.37833 {normal=(-0.979491 -0.195116 0.0502775)} Vertex 4375 -0.955538 19.6461 3.46742 {normal=(-0.226514 -0.363355 0.903695)} Vertex 4376 -0.955067 17.9078 3.84226 {normal=(-0.577033 0.379554 0.723167)} Vertex 4377 -0.95413 20.1634 3.97044 {normal=(-0.351666 -0.10894 0.929765)} Vertex 4378 -0.953293 11.6543 0.192958 Vertex 4379 -0.953293 11.6747 0.20453 {normal=(-0.206839 -0.404667 0.890765)} Vertex 4380 -0.952852 23.1127 -5.52019 {normal=(-0.42475 -0.301095 -0.853774)} Vertex 4381 -0.952752 15.5157 3.80768 {normal=(-0.564991 -0.274761 0.778005)} Vertex 4382 -0.95267 19.6503 3.47224 {normal=(-0.499096 -0.687646 0.5273)} Vertex 4383 -0.952535 20.2826 3.98684 {normal=(-0.322529 0.0402376 0.945704)} Vertex 4384 -0.952371 -13.4461 -3.2809 Vertex 4385 -0.950309 22.6211 -2.61506 {normal=(-0.271908 0.932889 0.236186)} Vertex 4386 -0.950101 21.102 3.50996 {normal=(-0.239161 0.531623 0.812514)} Vertex 4387 -0.949385 19.6603 3.52017 {normal=(-0.550823 -0.801909 0.23138)} Vertex 4388 -0.948489 19.7166 3.69852 {normal=(-0.391183 -0.788243 0.475025)} Vertex 4389 -0.948483 21.5699 -3.90335 {normal=(-0.855015 0.403986 -0.325184)} Vertex 4390 -0.948216 18.5651 3.65845 {normal=(-0.269817 0.345345 0.898853)} Vertex 4391 -0.947478 18.6965 3.60565 {normal=(-0.21625 0.325593 0.920448)} Vertex 4392 -0.945681 19.6761 3.61122 {normal=(-0.471178 -0.82514 0.311665)} Vertex 4393 -0.942642 23.9251 -5.04869 {normal=(-0.31132 0.856295 -0.412115)} Vertex 4394 -0.941746 14.3776 -3.28193 {normal=(-0.4545 0.370137 -0.810203)} Vertex 4395 -0.940664 18.4314 3.71602 {normal=(-0.269287 0.290465 0.918213)} Vertex 4396 -0.938449 18.8258 3.55761 {normal=(-0.128201 0.341709 0.931021)} Vertex 4397 -0.936545 20.3613 3.9784 {normal=(-0.107027 0.441892 0.890661)} Vertex 4398 -0.936424 -12.7659 2.51495 Vertex 4399 -0.935837 22.6128 -2.49546 {normal=(-0.315314 0.887745 -0.33539)} Vertex 4400 -0.934067 17.4389 -4.31825 {normal=(-0.487934 0.0836057 -0.868868)} Vertex 4401 -0.93299 22.6073 -2.53077 {normal=(-0.312071 0.949964 0.0134179)} Vertex 4402 -0.930777 18.865 3.33056 {normal=(0.101553 -0.323151 0.940883)} Vertex 4403 -0.930773 19.7544 3.33053 {normal=(0.101584 0.323237 0.94085)} Vertex 4404 -0.92928 17.2854 4.08205 {normal=(-0.589449 -0.101184 0.801443)} Vertex 4405 -0.926925 15.9152 3.7697 {normal=(-0.34146 0.857334 0.385207)} Vertex 4406 -0.926039 18.2438 2.89918 {normal=(0.10336 -0.770642 0.62883)} Vertex 4407 -0.926029 20.3755 2.89913 {normal=(0.103381 0.770694 0.628763)} Vertex 4408 -0.925917 17.4136 4.07733 {normal=(-0.685521 0.151005 0.712221)} Vertex 4409 -0.924916 18.5525 -4.03593 {normal=(-0.58314 0.155938 -0.797265)} Vertex 4410 -0.923131 19.5597 -4.60358 {normal=(-0.920479 -0.143295 -0.363574)} Vertex 4411 -0.920308 17.7425 3.93976 {normal=(-0.60179 0.325245 0.729427)} Vertex 4412 -0.920253 18.2985 3.75376 {normal=(-0.230457 0.146155 0.962044)} Vertex 4413 -0.919928 11.8859 0.285886 {normal=(-0.20876 -0.317919 0.92485)} Vertex 4414 -0.914602 14.1519 2.79114 {normal=(-0.441677 -0.896388 0.0375636)} Vertex 4415 -0.911847 17.9583 2.28734 {normal=(0.112821 -0.975607 0.188315)} Vertex 4416 -0.911833 20.661 2.28727 {normal=(0.11285 0.975625 0.188205)} Vertex 4417 -0.908335 19.4435 2.91038 {normal=(-0.618412 -0.704508 0.348188)} Vertex 4418 -0.908335 19.4435 3.27048 {normal=(-0.643859 -0.765106 0.00760023)} Vertex 4419 -0.907557 22.6232 -4.50509 {normal=(-0.355396 -0.933205 0.0531176)} Vertex 4420 -0.907109 17.4102 4.09573 {normal=(-0.551107 0.123373 0.825264)} Vertex 4421 -0.906353 23.647 -3.72296 {normal=(-0.308365 0.427112 0.849992)} Vertex 4422 -0.906238 19.4454 3.45509 {normal=(-0.612461 -0.739004 0.280649)} Vertex 4423 -0.906162 20.3993 3.94512 {normal=(-0.0147657 0.568318 0.822677)} Vertex 4424 -0.904181 16.7837 -2.56079 {normal=(-0.471915 0.0681848 -0.879004)} Vertex 4425 -0.902047 19.4493 3.46421 {normal=(-0.455816 -0.567837 0.685415)} Vertex 4426 -0.901436 -12.4844 2.49631 Vertex 4427 -0.900802 19.4737 -3.95306 {normal=(-0.899948 -0.0856174 -0.427509)} Vertex 4428 -0.900037 21.5826 -3.62903 {normal=(-0.97783 0.209346 -0.00472746)} Vertex 4429 -0.899847 15.405 3.80731 {normal=(-0.483808 -0.486583 0.727438)} Vertex 4430 -0.899411 14.1819 3.07855 {normal=(-0.503702 -0.833636 0.226572)} Vertex 4431 -0.898065 16.5687 -4.29868 {normal=(-0.324393 -0.264603 -0.90816)} Vertex 4432 -0.897828 17.5376 4.05795 {normal=(-0.640905 0.302223 0.705622)} Vertex 4433 -0.896805 22.8432 -3.97151 {normal=(-0.794704 -0.418756 0.439419)} Vertex 4434 -0.892442 19.2129 2.92664 {normal=(-0.240391 0.931673 0.272392)} Vertex 4435 -0.892442 19.2129 3.28674 {normal=(-0.260766 0.96537 0.00786141)} Vertex 4436 -0.892338 19.4965 -4.12051 {normal=(-0.97984 -0.181756 0.0829335)} Vertex 4437 -0.892102 12.9034 -2.28661 {normal=(0.0925801 -0.856366 -0.508003)} Vertex 4438 -0.891147 19.4597 3.47431 {normal=(-0.310746 -0.40097 0.861777)} Vertex 4439 -0.890607 19.2102 3.47115 {normal=(-0.221865 0.93159 0.287951)} Vertex 4440 -0.890209 17.905 3.8949 {normal=(-0.638172 0.36921 0.675589)} Vertex 4441 -0.888333 21.8398 3.04437 {normal=(-0.180472 0.54252 0.820428)} Vertex 4442 -0.886984 18.1661 3.77166 {normal=(-0.238476 0.0768224 0.968105)} Vertex 4443 -0.886938 19.2049 3.47988 {normal=(-0.115569 0.688492 0.715976)} Vertex 4444 -0.886827 14.7413 3.73469 {normal=(-0.656786 -0.165875 0.735607)} Vertex 4445 -0.884369 14.7885 -3.13354 {normal=(-0.469984 0.346609 -0.811774)} Vertex 4446 -0.882921 17.96 3.86165 {normal=(-0.616247 0.512755 0.597765)} Vertex 4447 -0.882313 22.6888 -2.84609 {normal=(-0.343155 0.854992 -0.388887)} Vertex 4448 -0.878233 17.8369 3.93381 {normal=(-0.634944 0.278483 0.72062)} Vertex 4449 -0.877506 17.0845 3.69421 {normal=(-0.252503 -0.947562 0.19588)} Vertex 4450 -0.877295 19.192 3.48745 {normal=(-0.0233133 0.439165 0.898104)} Vertex 4451 -0.876392 17.5294 4.08131 {normal=(-0.529113 0.273763 0.803177)} Vertex 4452 -0.876386 22.6668 -4.16744 {normal=(-0.505625 -0.833344 0.223343)} Vertex 4453 -0.875765 -21.5005 -3.24821 Vertex 4454 -0.875654 20.5013 3.89383 {normal=(-0.170622 0.443407 0.879931)} Vertex 4455 -0.873762 14.1491 2.49111 {normal=(-0.350656 -0.930756 -0.103605)} Vertex 4456 -0.873541 19.4765 3.48542 {normal=(-0.102249 -0.169425 0.980225)} Vertex 4457 -0.870743 18.6509 3.22836 {normal=(0.144234 -0.4776 0.866657)} Vertex 4458 -0.870736 19.9684 3.22833 {normal=(0.144322 0.477637 0.866622)} Vertex 4459 -0.869961 18.4369 3.08318 {normal=(0.144212 -0.631767 0.761626)} Vertex 4460 -0.869952 20.1824 3.08313 {normal=(0.144378 0.631786 0.761578)} Vertex 4461 -0.868538 18.94 3.34585 {normal=(0.146787 -0.268651 0.951987)} Vertex 4462 -0.868534 19.6793 3.34584 {normal=(0.146771 0.268671 0.951984)} Vertex 4463 -0.867803 18.0886 3.78571 {normal=(-0.310538 0.197864 0.92974)} Vertex 4464 -0.867391 23.1217 -3.7419 {normal=(-0.713088 -0.189149 0.675076)} Vertex 4465 -0.866932 18.0258 4.04017 {normal=(-0.996906 0.0501499 0.0605324)} Vertex 4466 -0.865548 18.6902 -4.54415 {normal=(-0.993952 -0.0801618 0.0750624)} Vertex 4467 -0.864426 15.1894 3.75266 {normal=(-0.502689 0.0569143 0.862592)} Vertex 4468 -0.863465 18.935 3.51255 {normal=(-0.13255 0.424519 0.895664)} Vertex 4469 -0.862715 18.0658 3.7959 {normal=(-0.438509 0.396413 0.806577)} Vertex 4470 -0.861906 21.9578 -3.41673 {normal=(-0.414481 0.440757 -0.796203)} Vertex 4471 -0.86168 19.1715 3.49385 {normal=(0.111568 0.134622 0.984596)} Vertex 4472 -0.861276 21.9714 -3.55436 {normal=(-0.884424 0.404449 0.232842)} Vertex 4473 -0.860535 17.944 3.97675 {normal=(-0.998684 -0.0400956 -0.0319783)} Vertex 4474 -0.85884 -20.0577 -5.38738 {normal=(0.868265 -0.0874454 -0.488333)} Vertex 4475 -0.858285 15.3468 3.77413 {normal=(-0.410708 -0.586222 0.698329)} Vertex 4476 -0.857668 17.9034 3.92718 {normal=(-0.875797 0.236351 0.420853)} Vertex 4477 -0.857522 17.9414 2.07754 {normal=(0.132682 -0.984617 0.113684)} Vertex 4478 -0.857507 20.6779 2.07747 {normal=(0.132735 0.984635 0.113469)} Vertex 4479 -0.857447 17.9032 3.93908 {normal=(-0.996452 -0.061532 0.0574291)} Vertex 4480 -0.857033 19.4937 3.48398 {normal=(0.229982 0.190554 0.954357)} Vertex 4481 -0.855053 17.8453 3.95586 {normal=(-0.744041 0.176296 0.644455)} Vertex 4482 -0.854972 12.2879 0.437024 {normal=(-0.217598 -0.310188 0.925438)} Vertex 4483 -0.85369 17.6161 -4.84768 {normal=(-0.989876 -0.0581705 0.129469)} Vertex 4484 -0.852613 15.2878 3.75587 {normal=(-0.491034 -0.00241332 0.871137)} Vertex 4485 -0.851178 18.0397 3.81936 {normal=(-0.563625 0.52829 0.635009)} Vertex 4486 -0.850634 19.1513 3.48996 {normal=(0.28173 -0.257383 0.924328)} Vertex 4487 -0.850161 17.7012 4.01621 {normal=(-0.618966 0.34001 0.708008)} Vertex 4488 -0.850039 17.9696 4.07183 {normal=(-0.938211 -0.175483 0.298271)} Vertex 4489 -0.84771 18.1358 2.72758 {normal=(0.159701 -0.848104 0.505188)} Vertex 4490 -0.847697 20.4835 2.72752 {normal=(0.1597 0.848113 0.505174)} Vertex 4491 -0.846475 15.3175 3.76127 {normal=(-0.464557 -0.30232 0.83234)} Vertex 4492 -0.846421 23.5397 -5.56298 {normal=(-0.463459 0.480163 -0.744748)} Vertex 4493 -0.845981 21.9821 -3.61898 {normal=(-0.737901 0.630786 -0.240025)} Vertex 4494 -0.845023 20.6672 3.82453 {normal=(-0.212513 0.45788 0.863241)} Vertex 4495 -0.844159 19.1311 3.47576 {normal=(0.330647 -0.369876 0.868254)} Vertex 4496 -0.843601 18.1077 4.00712 {normal=(-0.925949 0.318871 -0.202336)} Vertex 4497 -0.843352 17.8981 4.01384 {normal=(-0.943608 -0.254661 0.211548)} Vertex 4498 -0.843211 22.5249 -3.00634 Vertex 4499 -0.8426 17.8527 3.97137 {normal=(-0.891501 -0.00121278 0.453017)} Vertex 4500 -0.842275 18.0983 4.10842 {normal=(-0.931873 0.203382 0.300414)} Vertex 4501 -0.84213 16.0065 3.62084 {normal=(-0.330844 0.871208 0.362682)} Vertex 4502 -0.841621 19.5112 3.47 {normal=(0.381075 0.346996 0.856957)} Vertex 4503 -0.840872 17.8591 3.98035 {normal=(-0.943007 -0.205478 0.261756)} Vertex 4504 -0.84061 23.5293 0.52043 {normal=(-0.196767 0.979223 0.0490493)} Vertex 4505 -0.840061 18.0312 3.94688 {normal=(-0.920566 0.235778 -0.311396)} Vertex 4506 -0.839972 23.3388 -3.63353 {normal=(-0.282997 -0.123381 0.951152)} Vertex 4507 -0.839312 22.2115 -3.25307 Vertex 4508 -0.838495 15.2083 -2.98788 {normal=(-0.478845 0.301666 -0.824442)} Vertex 4509 -0.838353 17.6796 -5.07831 {normal=(-0.950132 0.0825181 -0.300733)} Vertex 4510 -0.83823 18.7425 -4.76648 {normal=(-0.941414 0.0297634 -0.335936)} Vertex 4511 -0.837669 17.9941 3.91019 {normal=(-0.957466 0.242127 -0.156952)} Vertex 4512 -0.83694 19.1177 3.46486 {normal=(0.337167 -0.375046 0.863515)} Vertex 4513 -0.836423 17.9963 3.89708 {normal=(-0.889518 0.412436 0.196608)} Vertex 4514 -0.836402 12.0577 -0.700179 {normal=(0.0028529 -0.909813 -0.415008)} Vertex 4515 -0.835847 17.0162 -5.27256 {normal=(-0.959269 0.0565069 -0.276786)} Vertex 4516 -0.835082 16.7827 3.61961 {normal=(-0.394708 -0.00228305 0.918804)} Vertex 4517 -0.834912 16.9218 -5.04656 {normal=(-0.976473 -0.11179 0.1844)} Vertex 4518 -0.833735 17.176 4.11351 {normal=(-0.484269 -0.421909 0.76647)} Vertex 4519 -0.831882 19.5219 3.46133 {normal=(0.386041 0.342675 0.856473)} Vertex 4520 -0.83071 16.7525 -5.34922 {normal=(-0.966431 0.00518351 -0.256875)} Vertex 4521 -0.830435 17.7915 3.99121 {normal=(-0.720564 0.154773 0.675894)} Vertex 4522 -0.829643 16.3379 -2.6733 {normal=(-0.478092 0.185536 -0.85849)} Vertex 4523 -0.828977 19.111 3.45726 {normal=(0.306455 -0.258744 0.916044)} Vertex 4524 -0.828724 23.6424 -5.47334 {normal=(-0.404858 0.644469 -0.648652)} Vertex 4525 -0.828093 17.8056 3.99796 {normal=(-0.807206 0.00190723 0.590267)} Vertex 4526 -0.827914 16.5403 3.60367 {normal=(-0.406684 -0.115411 0.90625)} Vertex 4527 -0.827901 17.053 3.60932 {normal=(-0.347303 -0.796702 0.494618)} Vertex 4528 -0.827815 19.5257 3.45797 {normal=(0.194167 0.132597 0.971966)} Vertex 4529 -0.82743 16.9546 3.60786 {normal=(-0.395682 0.0529337 0.916861)} Vertex 4530 -0.827351 18.0363 4.14044 {normal=(-0.888812 -0.0211247 0.457785)} Vertex 4531 -0.826855 17.1518 4.09573 {normal=(-0.374704 -0.795902 0.475539)} Vertex 4532 -0.826748 17.2486 4.12981 {normal=(-0.462881 -0.138484 0.875536)} Vertex 4533 -0.825864 17.9142 4.1003 {normal=(-0.896505 -0.2683 0.352554)} Vertex 4534 -0.825647 18.024 3.87183 {normal=(-0.82745 0.488909 0.276215)} Vertex 4535 -0.825084 21.6184 -4.03195 {normal=(-0.546334 0.569602 -0.614063)} Vertex 4536 -0.825037 17.0447 3.60442 {normal=(-0.424396 -0.277636 0.861862)} Vertex 4537 -0.824439 19.101 3.45543 {normal=(0.161986 0.129549 0.978252)} Vertex 4538 -0.823982 19.5292 3.45835 {normal=(-0.218157 -0.288043 0.932437)} Vertex 4539 -0.823472 17.6835 4.04949 {normal=(-0.552796 0.316111 0.771032)} Vertex 4540 -0.823325 19.0879 3.45936 {normal=(0.0536096 0.342017 0.938163)} Vertex 4541 -0.820754 17.8082 4.00942 {normal=(-0.832291 -0.080062 0.548526)} Vertex 4542 -0.820382 19.5324 3.4625 {normal=(-0.480081 -0.57473 0.662727)} Vertex 4543 -0.81991 18.1744 4.06893 {normal=(-0.888525 0.453039 0.0726544)} Vertex 4544 -0.818464 19.0242 3.35816 {normal=(0.183141 -0.207529 0.960932)} Vertex 4545 -0.818462 19.5952 3.35815 {normal=(0.183162 0.207548 0.960924)} Vertex 4546 -0.81833 17.8515 4.04762 {normal=(-0.894333 -0.3341 0.297567)} Vertex 4547 -0.817788 15.7248 -2.83447 {normal=(-0.479163 0.244179 -0.843077)} Vertex 4548 -0.816907 15.9419 -3.97719 {normal=(-0.192548 -0.502068 -0.843121)} Vertex 4549 -0.816626 17.8162 4.01733 {normal=(-0.875429 -0.221811 0.429447)} Vertex 4550 -0.81422 14.9991 3.79755 {normal=(-0.502141 0.0331746 0.864149)} Vertex 4551 -0.813052 14.4327 3.66987 {normal=(-0.695634 -0.494659 0.520966)} Vertex 4552 -0.811949 18.5744 -4.11926 {normal=(-0.868547 0.0578906 -0.492215)} Vertex 4553 -0.811083 19.5522 3.5053 {normal=(-0.482694 -0.723361 0.493715)} Vertex 4554 -0.809211 16.6074 -5.14078 {normal=(-0.954016 -0.219326 0.204329)} Vertex 4555 -0.808475 21.3945 3.3491 {normal=(-0.203465 0.540461 0.816397)} Vertex 4556 -0.807561 12.6988 0.585421 {normal=(-0.227654 -0.304799 0.924809)} Vertex 4557 -0.805926 16.2275 3.56004 {normal=(-0.436811 -0.147178 0.887432)} Vertex 4558 -0.805893 17.3696 4.14462 {normal=(-0.408571 0.0640923 0.910473)} Vertex 4559 -0.805705 17.975 4.16889 {normal=(-0.868014 -0.129802 0.479274)} Vertex 4560 -0.805351 14.2482 1.04566 {normal=(-0.238027 -0.390654 0.889231)} Vertex 4561 -0.80534 18.0772 3.83447 {normal=(-0.790039 0.485551 0.37427)} Vertex 4562 -0.803581 19.8021 3.92179 {normal=(-0.253997 -0.751193 0.609258)} Vertex 4563 -0.802854 14.3362 3.53674 {normal=(-0.674136 -0.616408 0.406918)} Vertex 4564 -0.80149 19.7777 3.86656 {normal=(-0.224416 -0.860594 0.457182)} Vertex 4565 -0.801117 17.769 4.02946 {normal=(-0.704888 0.13215 0.6969)} Vertex 4566 -0.800678 18.131 3.80075 {normal=(-0.496157 0.191451 0.846862)} Vertex 4567 -0.798905 19.3468 2.90429 {normal=(-0.68514 -0.611784 0.395352)} Vertex 4568 -0.798905 19.3468 3.26439 {normal=(-0.729753 -0.683677 0.00683606)} Vertex 4569 -0.798789 19.8635 3.96322 {normal=(-0.249483 -0.396716 0.883388)} Vertex 4570 -0.798531 16.0569 3.54436 {normal=(-0.431648 0.684655 0.587305)} Vertex 4571 -0.798147 22.0524 -3.38713 {normal=(-0.448429 0.526008 -0.722653)} Vertex 4572 -0.798125 18.1071 3.81153 {normal=(-0.694688 0.392744 0.602627)} Vertex 4573 -0.79748 19.7258 3.78608 {normal=(-0.199547 -0.807471 0.555131)} Vertex 4574 -0.797061 18.3683 3.78154 {normal=(-0.408445 0.144928 0.901204)} Vertex 4575 -0.796987 23.4393 -5.63853 {normal=(-0.44609 0.18985 -0.87462)} Vertex 4576 -0.796302 19.3479 3.44905 {normal=(-0.70077 -0.663797 0.261333)} Vertex 4577 -0.796132 16.0664 3.54027 {normal=(-0.494449 0.157803 0.854762)} Vertex 4578 -0.796085 19.5886 3.58678 {normal=(-0.334108 -0.793072 0.509322)} Vertex 4579 -0.794408 17.8595 4.12558 {normal=(-0.804154 -0.411869 0.428602)} Vertex 4580 -0.794057 19.6012 -4.79626 {normal=(-0.63675 -0.0495384 -0.769477)} Vertex 4581 -0.79216 18.6203 -4.28866 {normal=(-0.994231 -0.0836604 0.0671285)} Vertex 4582 -0.79213 17.7699 4.04131 {normal=(-0.64597 0.0941235 0.757538)} Vertex 4583 -0.79155 19.6465 3.68037 {normal=(-0.222671 -0.802422 0.553657)} Vertex 4584 -0.791094 19.3501 3.45826 {normal=(-0.537156 -0.509817 0.671975)} Vertex 4585 -0.789582 14.514 1.21606 {normal=(-0.156069 -0.954182 0.255304)} Vertex 4586 -0.789355 19.0623 3.46438 {normal=(-0.152375 0.502031 0.851321)} Vertex 4587 -0.787116 19.9621 3.99086 {normal=(-0.255896 -0.21646 0.942158)} Vertex 4588 -0.787033 16.4849 -5.48485 {normal=(-0.957309 -0.0464737 -0.285306)} Vertex 4589 -0.786984 21.9814 -3.45977 {normal=(-0.876123 0.476344 -0.0741929)} Vertex 4590 -0.786565 18.1615 4.18147 {normal=(-0.814722 0.331545 0.475716)} Vertex 4591 -0.785596 18.1344 3.81547 {normal=(-0.801343 0.348919 0.485906)} Vertex 4592 -0.785469 17.8043 4.0781 {normal=(-0.718321 -0.540338 0.438236)} Vertex 4593 -0.785021 14.2566 3.42863 {normal=(-0.620041 -0.677235 0.396108)} Vertex 4594 -0.78471 17.7744 4.05001 {normal=(-0.651533 -0.186744 0.735276)} Vertex 4595 -0.783415 22.2008 2.82662 {normal=(-0.184259 0.592007 0.784587)} Vertex 4596 -0.782565 17.4685 -4.40807 {normal=(-0.877538 -0.076742 -0.473326)} Vertex 4597 -0.782283 -17.856 -4.60472 {normal=(0.878249 0.145416 -0.455558)} Vertex 4598 -0.781929 18.16 3.92423 {normal=(-0.813695 0.388559 -0.432346)} Vertex 4599 -0.78179 19.1153 3.36718 {normal=(0.209815 -0.141248 0.967485)} Vertex 4600 -0.781789 19.504 3.36717 {normal=(0.209814 0.141285 0.96748)} Vertex 4601 -0.781535 18.132 3.8937 {normal=(-0.876561 0.402689 -0.263595)} Vertex 4602 -0.781374 18.1311 3.83348 {normal=(-0.880445 0.44396 0.166483)} Vertex 4603 -0.780044 18.2155 3.97267 {normal=(-0.829456 0.462305 -0.313492)} Vertex 4604 -0.778864 18.1315 3.88108 {normal=(-0.893373 0.446321 -0.0517826)} Vertex 4605 -0.778809 18.1312 3.86101 {normal=(-0.890721 0.452749 0.0404216)} Vertex 4606 -0.778288 19.3558 3.46824 {normal=(-0.358522 -0.350774 0.865113)} Vertex 4607 -0.777336 17.9144 4.19376 {normal=(-0.808787 -0.287114 0.513253)} Vertex 4608 -0.777325 24.0858 -4.43327 {normal=(-0.141413 0.987793 0.0653254)} Vertex 4609 -0.777287 20.065 4.01618 {normal=(-0.278498 -0.181217 0.943186)} Vertex 4610 -0.776394 18.7339 3.25155 {normal=(0.212681 -0.417379 0.883494)} Vertex 4611 -0.776389 19.8854 3.25152 {normal=(0.21269 0.417476 0.883446)} Vertex 4612 -0.7761 18.2337 3.80326 {normal=(-0.407145 0.078439 0.909989)} Vertex 4613 -0.77529 18.0981 4.21967 {normal=(-0.802167 0.133428 0.582001)} Vertex 4614 -0.775265 18.4818 3.76523 {normal=(-0.459956 0.257329 0.849837)} Vertex 4615 -0.774803 18.0566 2.5387 {normal=(0.212015 -0.904857 0.369167)} Vertex 4616 -0.77479 20.5627 2.53863 {normal=(0.212079 0.904858 0.369126)} Vertex 4617 -0.774491 23.7353 -5.4033 {normal=(-0.342152 0.710007 -0.615485)} Vertex 4618 -0.77403 13.6351 0.884489 {normal=(-0.233107 -0.2676 0.934907)} Vertex 4619 -0.774019 13.1186 0.731077 {normal=(-0.233057 -0.289784 0.928283)} Vertex 4620 -0.771035 17.1111 3.99207 {normal=(-0.237186 -0.948833 0.208468)} Vertex 4621 -0.769356 -11.5418 3.0213 Vertex 4622 -0.769305 20.1724 4.03917 {normal=(-0.205887 -0.0202184 0.978367)} Vertex 4623 -0.768988 18.2312 4.1323 {normal=(-0.781667 0.551393 0.291483)} Vertex 4624 -0.768262 18.3111 2.93797 {normal=(0.217365 -0.722024 0.656836)} Vertex 4625 -0.768252 20.3082 2.93792 {normal=(0.217416 0.722039 0.656802)} Vertex 4626 -0.766695 -17.7746 0.381241 {normal=(0.840732 -0.164061 0.515997)} Vertex 4627 -0.765365 22.7632 -5.31193 {normal=(-0.187529 -0.861312 -0.472202)} Vertex 4628 -0.764492 14.5208 3.77918 {normal=(-0.601271 -0.306308 0.738003)} Vertex 4629 -0.764469 17.8306 4.13953 {normal=(-0.450123 -0.692141 0.564207)} Vertex 4630 -0.762632 17.5277 4.13305 {normal=(-0.378173 0.237829 0.894663)} Vertex 4631 -0.762128 18.613 3.72161 {normal=(-0.489732 0.323339 0.8097)} Vertex 4632 -0.761774 19.2549 2.91181 {normal=(-0.633764 0.671901 0.383265)} Vertex 4633 -0.761774 19.2549 3.27191 {normal=(-0.681243 0.732005 0.00870806)} Vertex 4634 -0.761554 14.1017 3.00703 {normal=(-0.416569 -0.897667 0.143749)} Vertex 4635 -0.761286 15.4971 -3.70517 {normal=(-0.17269 -0.594228 -0.785539)} Vertex 4636 -0.760253 18.2645 4.02198 {normal=(-0.814198 0.577336 -0.0613621)} Vertex 4637 -0.759552 14.1938 3.34554 {normal=(-0.544972 -0.767821 0.336832)} Vertex 4638 -0.759418 19.2113 3.37267 {normal=(0.226092 -0.0714575 0.971482)} Vertex 4639 -0.759417 19.4081 3.37267 {normal=(0.226088 0.0715402 0.971476)} Vertex 4640 -0.759395 15.562 3.94887 {normal=(-0.454553 -0.230745 0.860313)} Vertex 4641 -0.75926 19.2531 3.45624 {normal=(-0.598716 0.726776 0.336654)} Vertex 4642 -0.758546 16.3321 -5.30589 {normal=(-0.931449 -0.335288 0.141368)} Vertex 4643 -0.757957 15.7468 3.97779 {normal=(-0.453694 -0.0940203 0.886184)} Vertex 4644 -0.757883 19.365 3.47897 {normal=(-0.070165 -0.125523 0.989606)} Vertex 4645 -0.757865 20.9187 3.69092 {normal=(-0.183927 0.521294 0.833321)} Vertex 4646 -0.757853 18.0339 4.2534 {normal=(-0.800415 0.0248737 0.59893)} Vertex 4647 -0.757353 24.0278 -4.15956 {normal=(-0.111908 0.921017 0.373101)} Vertex 4648 -0.756553 17.6663 4.09154 {normal=(-0.413095 0.264698 0.871371)} Vertex 4649 -0.755772 17.5275 -4.58455 {normal=(-0.959772 -0.14811 0.23854)} Vertex 4650 -0.75423 19.2496 3.46481 {normal=(-0.324926 0.515553 0.792861)} Vertex 4651 -0.754027 17.7884 4.09338 {normal=(-0.317469 -0.68379 0.656996)} Vertex 4652 -0.753428 15.8534 3.98593 {normal=(-0.438957 0.213301 0.872823)} Vertex 4653 -0.75283 24.057 -4.7259 {normal=(-0.13062 0.974124 -0.184448)} Vertex 4654 -0.751898 19.3097 3.37452 {normal=(0.231552 7.89764e-06 0.972823)} Vertex 4655 -0.751421 20.2453 4.03418 {normal=(0.0420867 0.361486 0.931427)} Vertex 4656 -0.750052 19.2839 2.90477 {normal=(-0.88015 -0.0853086 0.466967)} Vertex 4657 -0.750052 19.2839 3.26486 {normal=(-0.990432 -0.137793 0.00756323)} Vertex 4658 -0.749325 18.7423 3.66899 {normal=(-0.507318 0.356775 0.784436)} Vertex 4659 -0.749156 17.8759 4.20569 {normal=(-0.577877 -0.58263 0.57149)} Vertex 4660 -0.747309 19.2838 3.44943 {normal=(-0.942763 -0.122024 0.310337)} Vertex 4661 -0.746344 22.8544 -5.44599 {normal=(-0.206929 -0.6776 -0.705718)} Vertex 4662 -0.745807 15.8817 3.97329 {normal=(-0.364512 0.673202 0.643374)} Vertex 4663 -0.745636 18.2125 3.82554 {normal=(-0.59558 0.184321 0.781864)} Vertex 4664 -0.745135 14.8028 3.83488 {normal=(-0.508804 -0.0462669 0.859638)} Vertex 4665 -0.742693 18.5172 3.11446 {normal=(0.23636 -0.57366 0.78425)} Vertex 4666 -0.742684 20.1021 3.11442 {normal=(0.236402 0.573683 0.78422)} Vertex 4667 -0.741823 19.2835 3.45846 {normal=(-0.610164 -0.0558339 0.790305)} Vertex 4668 -0.741709 18.1952 3.84364 {normal=(-0.852003 0.504137 0.1412)} Vertex 4669 -0.741659 22.6517 -3.7285 {normal=(-0.866219 -0.498518 0.0338323)} Vertex 4670 -0.7398 -15.6092 0.833923 {normal=(0.850293 -0.167974 0.498786)} Vertex 4671 -0.739428 19.3746 3.47756 {normal=(0.317186 0.179574 0.931207)} Vertex 4672 -0.738505 15.4331 3.91009 {normal=(-0.36079 -0.487944 0.794822)} Vertex 4673 -0.738416 14.0705 2.73272 {normal=(-0.382079 -0.923487 -0.0344621)} Vertex 4674 -0.73815 22.6763 -5.10651 {normal=(-0.160088 -0.938649 -0.305466)} Vertex 4675 -0.737582 19.2447 3.47007 {normal=(-0.140224 0.253036 0.957241)} Vertex 4676 -0.736857 18.8698 3.60737 {normal=(-0.511669 0.438079 0.739108)} Vertex 4677 -0.736124 18.2089 3.83739 {normal=(-0.780243 0.388887 0.489886)} Vertex 4678 -0.736048 17.8275 4.14214 {normal=(0.0604008 -0.854461 0.515993)} Vertex 4679 -0.735474 14.4325 1.39568 {normal=(-0.018711 -0.920984 -0.389151)} Vertex 4680 -0.734557 22.9295 -3.50799 {normal=(-0.884874 0.171085 0.433276)} Vertex 4681 -0.734254 17.9692 4.28263 {normal=(-0.760235 -0.155897 0.630666)} Vertex 4682 -0.733469 14.2773 1.80841 {normal=(-0.101543 -0.945918 -0.308103)} Vertex 4683 -0.731203 15.2342 -3.48261 Vertex 4684 -0.729335 14.2074 2.02125 {normal=(-0.163584 -0.94894 -0.26973)} Vertex 4685 -0.727707 18.222 3.86625 {normal=(-0.815508 0.567158 -0.115234)} Vertex 4686 -0.727636 -21.5569 -3.54963 Vertex 4687 -0.7271 19.2841 3.46682 {normal=(-0.320253 -0.0839935 0.943601)} Vertex 4688 -0.725809 22.0242 -3.71826 {normal=(-0.419316 0.771166 -0.479038)} Vertex 4689 -0.724005 17.804 4.09347 {normal=(0.147035 -0.414449 0.898116)} Vertex 4690 -0.723637 20.2837 4.0012 {normal=(0.155906 0.478528 0.864121)} Vertex 4691 -0.723224 22.076 -3.43017 {normal=(-0.897106 0.257432 -0.359067)} Vertex 4692 -0.722925 19.3846 3.46401 {normal=(0.409985 0.273865 0.870006)} Vertex 4693 -0.722558 18.3072 4.07217 {normal=(-0.728306 0.66728 0.155912)} Vertex 4694 -0.721165 17.8595 4.20467 {normal=(-0.169037 -0.837447 0.519721)} Vertex 4695 -0.720807 22.5158 2.58719 {normal=(-0.191462 0.656365 0.729745)} Vertex 4696 -0.720643 18.2564 3.91252 {normal=(-0.721828 0.501696 -0.476723)} Vertex 4697 -0.716457 14.3536 1.59313 {normal=(-0.0493234 -0.93729 -0.345044)} Vertex 4698 -0.716119 21.6851 3.18107 {normal=(-0.197801 0.534737 0.821542)} Vertex 4699 -0.716045 18.3014 3.95507 {normal=(-0.710689 0.580805 -0.396973)} Vertex 4700 -0.715893 17.8332 4.14796 {normal=(0.334272 -0.871557 0.358678)} Vertex 4701 -0.712261 19.3908 3.45532 {normal=(0.401146 0.300039 0.865482)} Vertex 4702 -0.710206 18.7772 -4.95567 {normal=(-0.658051 0.150835 -0.737711)} Vertex 4703 -0.709783 15.6737 -3.19752 {normal=(0.272072 -0.419312 0.866114)} Vertex 4704 -0.70976 17.7179 -5.27645 {normal=(-0.666576 0.212471 -0.714515)} Vertex 4705 -0.709315 19.2386 3.47202 {normal=(0.163613 -0.0907859 0.982338)} Vertex 4706 -0.709195 18.2508 3.88334 {normal=(-0.795205 0.581791 -0.170786)} Vertex 4707 -0.709115 18.0084 2.33718 {normal=(0.259105 -0.939453 0.22426)} Vertex 4708 -0.709101 20.6109 2.33711 {normal=(0.259295 0.939429 0.224141)} Vertex 4709 -0.708088 17.9245 4.29186 {normal=(-0.559664 -0.510031 0.65318)} Vertex 4710 -0.707931 22.0867 -3.49479 Vertex 4711 -0.70792 18.2113 4.25313 {normal=(-0.680458 0.43026 0.593173)} Vertex 4712 -0.707444 -15.6751 -3.66791 {normal=(0.90075 0.114685 -0.418923)} Vertex 4713 -0.707435 19.3933 3.45149 {normal=(0.272239 0.191673 0.942946)} Vertex 4714 -0.706967 17.0765 -5.46646 {normal=(-0.667329 0.191662 -0.719679)} Vertex 4715 -0.706854 18.2577 3.89558 {normal=(-0.753221 0.582109 -0.30628)} Vertex 4716 -0.704817 16.2133 -5.67947 {normal=(-0.944114 -0.0683953 -0.322446)} Vertex 4717 -0.704699 15.941 3.88917 {normal=(-0.276783 0.864931 0.418672)} Vertex 4718 -0.704639 14.1368 3.27122 {normal=(-0.44128 -0.862794 0.246696)} Vertex 4719 -0.704165 16.7933 -4.78845 {normal=(-0.820436 -0.274452 0.501559)} Vertex 4720 -0.704153 18.3283 3.98378 {normal=(-0.712032 0.673318 -0.199132)} Vertex 4721 -0.703141 19.2857 3.4745 {normal=(0.0852147 -0.0455627 0.99532)} Vertex 4722 -0.703049 17.819 4.09803 {normal=(0.315028 -0.536283 0.783044)} Vertex 4723 -0.703003 -21.5335 -2.96162 Vertex 4724 -0.702729 19.3963 3.45096 {normal=(-0.126725 -0.175392 0.976309)} Vertex 4725 -0.701831 16.853 -5.52568 {normal=(-0.670032 0.197182 -0.715665)} Vertex 4726 -0.700788 17.6955 4.10674 {normal=(-0.344363 0.271556 0.898705)} Vertex 4727 -0.700508 22.7845 2.3261 {normal=(-0.196055 0.757206 0.623058)} Vertex 4728 -0.699552 18.2762 4.19376 {normal=(-0.642894 0.634461 0.429122)} Vertex 4729 -0.698849 14.144 2.23167 {normal=(-0.217626 -0.948362 -0.230756)} Vertex 4730 -0.698144 19.3998 3.45375 {normal=(-0.378293 -0.418709 0.825577)} Vertex 4731 -0.697025 16.8156 -2.84991 {normal=(0.291111 -0.322771 0.900596)} Vertex 4732 -0.695837 18.1439 4.29676 {normal=(-0.676358 0.256916 0.690315)} Vertex 4733 -0.695812 18.8311 3.27136 {normal=(0.271104 -0.346931 0.897854)} Vertex 4734 -0.695808 19.7883 3.27134 {normal=(0.271089 0.347052 0.897812)} Vertex 4735 -0.695287 15.3604 3.86145 {normal=(-0.275373 -0.594403 0.755549)} Vertex 4736 -0.694201 17.8565 4.19603 {normal=(0.23215 -0.9201 0.315472)} Vertex 4737 -0.693944 22.6911 -3.19247 {normal=(-0.900862 0.42997 0.0597831)} Vertex 4738 -0.693811 20.3756 3.96236 {normal=(0.0367206 0.351258 0.935558)} Vertex 4739 -0.692914 23.8832 -3.90476 {normal=(-0.0391762 0.768435 0.638728)} Vertex 4740 -0.691634 17.8478 4.13655 {normal=(0.512445 -0.809892 0.285439)} Vertex 4741 -0.688451 22.4076 -3.41895 {normal=(-0.909224 -0.0239115 -0.415619)} Vertex 4742 -0.687271 19.0189 3.53854 {normal=(-0.543169 0.531278 0.650163)} Vertex 4743 -0.687232 23.0836 1.88735 {normal=(-0.19248 0.843452 0.501537)} Vertex 4744 -0.683722 23.8184 -5.35287 {normal=(-0.222725 0.808774 -0.544314)} Vertex 4745 -0.682919 16.0958 -5.54189 {normal=(-0.918916 -0.386672 0.0779615)} Vertex 4746 -0.682843 15.2795 3.82912 {normal=(-0.337931 -0.00187187 0.941169)} Vertex 4747 -0.680982 23.4129 1.27096 {normal=(-0.173524 0.926279 0.334511)} Vertex 4748 -0.680421 23.3413 -5.70001 {normal=(-0.303161 -0.0790734 -0.949653)} Vertex 4749 -0.680046 20.9412 -4.66502 {normal=(-0.31467 0.476529 -0.820916)} Vertex 4750 -0.679354 17.8999 4.28107 {normal=(-0.192681 -0.817577 0.542624)} Vertex 4751 -0.679254 19.4363 3.48262 {normal=(-0.383356 -0.533613 0.753853)} Vertex 4752 -0.67905 19.2376 3.45865 {normal=(0.482987 -0.254568 0.837806)} Vertex 4753 -0.677767 18.0754 4.33555 {normal=(-0.672296 0.165379 0.721574)} Vertex 4754 -0.676732 15.3092 3.83446 {normal=(-0.302872 -0.331495 0.893521)} Vertex 4755 -0.676528 19.2829 3.46481 {normal=(0.489916 -0.019968 0.871541)} Vertex 4756 -0.673942 18.2099 2.7703 {normal=(0.285175 -0.794583 0.536015)} Vertex 4757 -0.67393 20.4094 2.77024 {normal=(0.285168 0.794598 0.535998)} Vertex 4758 -0.673071 18.3639 4.02737 {normal=(-0.640998 0.767088 0.0263978)} Vertex 4759 -0.67158 20.2654 -4.93332 {normal=(-0.294742 0.123671 -0.94754)} Vertex 4760 -0.671512 16.5929 -5.63521 {normal=(-0.656873 0.236906 -0.715817)} Vertex 4761 -0.671368 17.7571 4.09753 {normal=(-0.223961 0.204215 0.952963)} Vertex 4762 -0.670731 18.3387 4.11866 {normal=(-0.577087 0.754025 0.313716)} Vertex 4763 -0.668949 15.1856 3.84497 {normal=(-0.343865 0.123208 0.930901)} Vertex 4764 -0.668265 17.8671 4.17977 {normal=(0.427215 -0.894344 0.1328)} Vertex 4765 -0.66628 17.0539 3.80255 {normal=(-0.219436 -0.957134 0.189056)} Vertex 4766 -0.664703 22.5937 -4.82972 {normal=(-0.118897 -0.980213 -0.158259)} Vertex 4767 -0.663775 18.3867 3.858 {normal=(-0.538476 0.132583 0.832145)} Vertex 4768 -0.663406 19.223 3.44137 {normal=(0.550353 -0.26968 0.79018)} Vertex 4769 -0.661943 20.5208 3.91767 {normal=(0.000124253 0.3708 0.928713)} Vertex 4770 -0.661407 19.2959 3.4542 {normal=(0.569648 -0.0102708 0.821825)} Vertex 4771 -0.657173 14.6006 3.86466 {normal=(-0.486965 -0.180676 0.85453)} Vertex 4772 -0.65371 18.0057 4.36949 {normal=(-0.640539 -0.0511014 0.766224)} Vertex 4773 -0.653306 23.9826 -5.02644 {normal=(-0.101379 0.935364 -0.338845)} Vertex 4774 -0.65272 19.1923 3.42534 {normal=(0.502667 -0.358737 0.786533)} Vertex 4775 -0.652617 19.2839 3.44398 {normal=(0.322031 -0.161029 0.932934)} Vertex 4776 -0.652262 17.9921 2.128 {normal=(0.280244 -0.948147 0.149937)} Vertex 4777 -0.652248 20.6271 2.12793 {normal=(0.280506 0.948095 0.149777)} Vertex 4778 -0.652237 19.2369 3.43402 {normal=(0.381605 -0.245457 0.891139)} Vertex 4779 -0.651659 18.3202 3.88689 {normal=(-0.813304 0.580401 0.0408727)} Vertex 4780 -0.651553 -12.3686 2.50251 Vertex 4781 -0.651513 19.3235 3.45113 {normal=(0.493803 0.114057 0.862061)} Vertex 4782 -0.650342 17.889 4.2627 {normal=(0.139381 -0.93457 0.32734)} Vertex 4783 -0.649951 17.8443 4.08603 {normal=(0.296385 -0.304363 0.905273)} Vertex 4784 -0.649538 19.1163 3.4713 {normal=(-0.531236 0.593604 0.604502)} Vertex 4785 -0.646758 23.0343 -5.5855 {normal=(-0.177184 -0.459969 -0.870077)} Vertex 4786 -0.646308 19.3254 3.44706 {normal=(0.37364 -0.0191988 0.927375)} Vertex 4787 -0.646101 19.3191 3.44555 {normal=(0.305826 -0.109782 0.945737)} Vertex 4788 -0.64606 19.506 3.53756 {normal=(-0.317103 -0.638386 0.701363)} Vertex 4789 -0.644561 17.791 4.09104 {normal=(-0.10079 0.179712 0.978542)} Vertex 4790 -0.644388 18.3804 4.05337 {normal=(-0.501217 0.845297 0.185078)} Vertex 4791 -0.643577 19.2003 3.41851 {normal=(0.378427 -0.257396 0.889123)} Vertex 4792 -0.643483 19.7806 3.93783 {normal=(-0.0482738 -0.856163 0.514446)} Vertex 4793 -0.643162 19.1876 3.41549 {normal=(0.302129 -0.138408 0.943166)} Vertex 4794 -0.642881 19.3272 3.44641 {normal=(-0.0698392 -0.193373 0.978637)} Vertex 4795 -0.642673 19.3209 3.4449 {normal=(-0.123056 -0.13558 0.983095)} Vertex 4796 -0.641939 19.1627 3.42071 {normal=(-0.349931 0.508495 0.786754)} Vertex 4797 -0.640817 14.0764 2.45759 {normal=(-0.256857 -0.946472 -0.195486)} Vertex 4798 -0.640598 16.6057 -4.38681 {normal=(-0.258987 -0.328757 -0.908209)} Vertex 4799 -0.640505 18.3409 3.88351 {normal=(-0.792201 0.422849 0.440019)} Vertex 4800 -0.63888 18.3585 3.87741 {normal=(-0.633947 0.192986 0.748911)} Vertex 4801 -0.638711 19.7647 3.88193 {normal=(-0.104517 -0.875069 0.472579)} Vertex 4802 -0.638581 18.505 3.8504 {normal=(-0.56537 0.21512 0.796291)} Vertex 4803 -0.638537 17.8731 4.12455 {normal=(0.454699 -0.83472 0.31063)} Vertex 4804 -0.637802 19.3307 3.44852 {normal=(-0.375627 -0.281956 0.882839)} Vertex 4805 -0.637649 19.1779 3.41515 {normal=(-0.217431 0.24815 0.944005)} Vertex 4806 -0.637334 16.4176 -4.90037 {normal=(-0.696713 -0.397983 0.596825)} Vertex 4807 -0.637048 23.4465 -0.70775 {normal=(-0.109078 0.97762 -0.179892)} Vertex 4808 -0.636773 19.1998 3.41733 {normal=(-0.156851 -0.285796 0.945367)} Vertex 4809 -0.63646 19.8248 3.98227 {normal=(-0.129097 -0.518434 0.845317)} Vertex 4810 -0.636358 19.1872 3.4143 {normal=(-0.187023 -0.036742 0.981668)} Vertex 4811 -0.635882 14.2782 3.71387 {normal=(-0.536625 -0.664969 0.51947)} Vertex 4812 -0.635801 23.6624 -3.72647 {normal=(0.0188436 0.502147 0.864577)} Vertex 4813 -0.635047 15.0273 3.88203 {normal=(-0.368312 0.112923 0.922819)} Vertex 4814 -0.634914 17.2509 -2.68712 Vertex 4815 -0.634609 19.7028 3.78174 {normal=(-0.252733 -0.802725 0.540147)} Vertex 4816 -0.633871 22.7252 -2.90825 Vertex 4817 -0.633383 17.1505 4.19925 {normal=(-0.352851 -0.430874 0.830568)} Vertex 4818 -0.631177 19.5948 3.63727 {normal=(-0.268245 -0.743019 0.613162)} Vertex 4819 -0.630982 18.94 3.28729 {normal=(0.318092 -0.268031 0.909383)} Vertex 4820 -0.630978 19.6793 3.28728 {normal=(0.318083 0.268026 0.909387)} Vertex 4821 -0.630102 16.0316 3.73357 {normal=(-0.262501 0.878735 0.398644)} Vertex 4822 -0.629191 18.617 3.14236 {normal=(0.318541 -0.501375 0.804459)} Vertex 4823 -0.629183 20.0023 3.14233 {normal=(0.318534 0.501435 0.804425)} Vertex 4824 -0.628261 17.1265 4.17956 {normal=(-0.291328 -0.813392 0.503508)} Vertex 4825 -0.628005 17.9578 4.37472 {normal=(-0.444411 -0.532485 0.720388)} Vertex 4826 -0.62742 18.3541 3.90386 {normal=(-0.802131 0.596556 0.0265785)} Vertex 4827 -0.626912 15.9765 -5.84563 {normal=(-0.937085 -0.0898359 -0.337345)} Vertex 4828 -0.626833 17.219 4.21763 {normal=(-0.356955 -0.153994 0.921341)} Vertex 4829 -0.626795 19.1813 3.42145 {normal=(-0.727004 0.327776 0.603347)} Vertex 4830 -0.625503 19.1906 3.42061 {normal=(-0.693279 0.0228809 0.720306)} Vertex 4831 -0.624788 19.3064 3.45034 {normal=(-0.367014 -0.148117 0.918347)} Vertex 4832 -0.622651 18.403 2.97376 {normal=(0.322675 -0.655584 0.682708)} Vertex 4833 -0.622642 20.2163 2.97372 {normal=(0.32266 0.655606 0.682694)} Vertex 4834 -0.621687 18.3752 3.93267 {normal=(-0.472969 0.734744 -0.486263)} Vertex 4835 -0.621052 17.8916 4.23674 {normal=(0.334414 -0.936322 0.107093)} Vertex 4836 -0.620279 14.0856 3.20569 {normal=(-0.394054 -0.894906 0.209438)} Vertex 4837 -0.619156 14.0291 2.95338 {normal=(-0.39632 -0.912523 0.101155)} Vertex 4838 -0.61913 19.2547 3.44111 {normal=(-0.298322 -0.241259 0.923471)} Vertex 4839 -0.618648 18.6457 3.8242 {normal=(-0.593815 0.26814 0.758607)} Vertex 4840 -0.618433 17.8895 4.15477 {normal=(0.42397 -0.899847 0.102594)} Vertex 4841 -0.617646 19.8971 4.01522 {normal=(-0.139819 -0.336868 0.931113)} Vertex 4842 -0.616291 22.5774 -4.52112 {normal=(-0.0633901 -0.996824 0.0482075)} Vertex 4843 -0.616013 16.2963 -5.79505 {normal=(-0.631031 0.251558 -0.733838)} Vertex 4844 -0.615389 14.3507 3.79727 {normal=(-0.469598 -0.491208 0.733616)} Vertex 4845 -0.614277 14.1724 3.53392 {normal=(-0.505029 -0.782951 0.363227)} Vertex 4846 -0.614181 21.2559 3.493 {normal=(-0.182532 0.541728 0.820495)} Vertex 4847 -0.613625 18.3714 3.91585 {normal=(-0.727045 0.67334 -0.134234)} Vertex 4848 -0.612579 17.0213 3.70516 {normal=(-0.325457 -0.813722 0.481596)} Vertex 4849 -0.611601 18.3094 4.25331 {normal=(-0.649975 0.621156 0.437833)} Vertex 4850 -0.611298 15.8927 -5.74753 {normal=(-0.91312 -0.40318 0.0604796)} Vertex 4851 -0.609938 17.0132 3.6999 {normal=(-0.414795 -0.306616 0.856698)} Vertex 4852 -0.609794 18.4021 3.96138 {normal=(-0.402951 0.850757 -0.337406)} Vertex 4853 -0.608607 17.3322 4.23469 {normal=(-0.355273 0.0274151 0.93436)} Vertex 4854 -0.608283 19.3426 3.4673 {normal=(-0.437025 -0.281989 0.854103)} Vertex 4855 -0.608185 16.9339 3.70182 {normal=(-0.378702 0.0224448 0.925246)} Vertex 4856 -0.607325 16.7836 3.71093 {normal=(-0.354715 -0.0103419 0.934917)} Vertex 4857 -0.606341 18.2477 4.32339 {normal=(-0.687184 0.40279 0.604597)} Vertex 4858 -0.606159 18.7887 3.78142 {normal=(-0.739197 0.261556 0.620626)} Vertex 4859 -0.606146 17.8369 4.08603 {normal=(-0.115889 0.11024 0.987126)} Vertex 4860 -0.605989 14.2084 3.61558 {normal=(-0.510182 -0.760042 0.402554)} Vertex 4861 -0.60477 18.3591 4.16146 {normal=(-0.594852 0.738404 0.317663)} Vertex 4862 -0.603548 19.1755 3.47496 {normal=(-0.8008 0.41484 0.432003)} Vertex 4863 -0.602238 16.5553 3.69832 {normal=(-0.356461 -0.0899532 0.92997)} Vertex 4864 -0.601112 18.9341 3.72206 {normal=(-0.760643 0.354939 0.543544)} Vertex 4865 -0.600653 17.9317 4.35124 {normal=(-0.107346 -0.871138 0.479162)} Vertex 4866 -0.600008 17.4955 4.20664 {normal=(-0.343504 0.224651 0.911886)} Vertex 4867 -0.598472 19.9736 4.04203 {normal=(-0.147646 -0.250268 0.956852)} Vertex 4868 -0.594658 19.2569 3.45516 {normal=(-0.67968 -0.0129717 0.733394)} Vertex 4869 -0.592925 16.2489 3.66401 {normal=(-0.385552 -0.107834 0.916363)} Vertex 4870 -0.592912 22.6275 -4.18071 {normal=(-0.0986023 -0.995065 -0.0111266)} Vertex 4871 -0.59167 16.0815 3.65353 {normal=(-0.350412 0.698569 0.623869)} Vertex 4872 -0.590803 14.8527 3.91407 {normal=(-0.411289 0.046896 0.910298)} Vertex 4873 -0.589588 14.1348 3.46388 {normal=(-0.448779 -0.843383 0.295468)} Vertex 4874 -0.589424 18.3943 4.0878 {normal=(-0.572518 0.788555 0.224508)} Vertex 4875 -0.589403 16.091 3.64908 {normal=(-0.423629 0.187452 0.886228)} Vertex 4876 -0.589325 18.1358 2.58429 {normal=(0.345956 -0.847681 0.402184)} Vertex 4877 -0.589312 20.4835 2.58423 {normal=(0.345986 0.847715 0.402085)} Vertex 4878 -0.588992 18.1739 4.3717 {normal=(-0.668119 0.24057 0.70409)} Vertex 4879 -0.587388 18.4102 3.91106 {normal=(-0.787343 0.440265 0.431576)} Vertex 4880 -0.586052 16.1345 -5.09833 {normal=(-0.668375 -0.588142 0.455372)} Vertex 4881 -0.586015 23.3653 -3.6247 {normal=(-0.125746 0.377561 0.917407)} Vertex 4882 -0.584644 20.7836 3.79112 {normal=(-0.016315 0.454805 0.890442)} Vertex 4883 -0.5835 19.058 3.29896 {normal=(0.352521 -0.182449 0.917846)} Vertex 4884 -0.583497 19.5613 3.29895 {normal=(0.352513 0.182449 0.917849)} Vertex 4885 -0.583255 19.0845 3.62641 {normal=(-0.76513 0.455306 0.455271)} Vertex 4886 -0.581381 17.0871 4.07273 {normal=(-0.216662 -0.951966 0.216377)} Vertex 4887 -0.581112 18.4186 3.98738 {normal=(-0.73863 0.671462 0.0597056)} Vertex 4888 -0.580194 18.4348 3.90783 {normal=(-0.669447 0.222573 0.708733)} Vertex 4889 -0.578941 20.0544 4.06268 {normal=(-0.0629823 -0.0597008 0.996227)} Vertex 4890 -0.572572 17.9197 4.32185 {normal=(0.143741 -0.958179 0.247452)} Vertex 4891 -0.572538 21.6796 -4.10097 {normal=(-0.244638 0.64851 -0.720824)} Vertex 4892 -0.570019 18.4915 3.90093 {normal=(-0.664707 0.199874 0.719872)} Vertex 4893 -0.569543 17.91 4.20688 {normal=(0.381237 -0.924477 -0.000675219)} Vertex 4894 -0.5683 19.3926 3.50056 {normal=(-0.496689 -0.37904 0.780787)} Vertex 4895 -0.567987 17.634 4.17127 {normal=(-0.323765 0.293751 0.899381)} Vertex 4896 -0.567866 18.4327 3.92293 {normal=(-0.912507 0.343101 0.222739)} Vertex 4897 -0.565447 18.0993 4.41534 {normal=(-0.642703 0.172395 0.746467)} Vertex 4898 -0.563684 15.6108 4.05253 {normal=(-0.350002 -0.211618 0.912533)} Vertex 4899 -0.563589 16.0357 -5.92805 {normal=(-0.60012 0.235585 -0.764432)} Vertex 4900 -0.562152 14.11 3.41968 {normal=(-0.390614 -0.888381 0.241245)} Vertex 4901 -0.560956 13.9435 -3.65347 Vertex 4902 -0.560956 13.9639 -3.64189 {normal=(-0.308927 0.421735 -0.852469)} Vertex 4903 -0.558908 22.5299 -3.85635 {normal=(-0.265213 -0.898184 -0.35061)} Vertex 4904 -0.557691 18.4894 3.91602 {normal=(-0.877171 0.237298 0.417445)} Vertex 4905 -0.556431 20.1106 4.05494 {normal=(0.260827 0.327123 0.908273)} Vertex 4906 -0.555239 14.0047 2.69901 {normal=(-0.285382 -0.951111 -0.118087)} Vertex 4907 -0.554534 19.1823 3.30608 {normal=(0.373517 -0.0923094 0.923019)} Vertex 4908 -0.554533 19.437 3.30608 {normal=(0.373517 0.0923488 0.923015)} Vertex 4909 -0.55383 22.0598 2.98093 {normal=(-0.168847 0.563498 0.808678)} Vertex 4910 -0.553433 15.7767 4.06686 {normal=(-0.359422 -0.0219161 0.932918)} Vertex 4911 -0.553319 15.7744 -5.98334 {normal=(-0.833907 -0.26084 -0.486376)} Vertex 4912 -0.551136 19.8014 3.96631 {normal=(0.399502 -0.736115 0.546381)} Vertex 4913 -0.550316 15.9439 -5.38234 {normal=(-0.647996 -0.678343 0.346341)} Vertex 4914 -0.549363 18.3344 4.33192 {normal=(-0.821415 0.453554 0.345784)} Vertex 4915 -0.548254 23.0984 -3.4152 {normal=(-0.395658 0.626488 0.671541)} Vertex 4916 -0.54714 19.6521 -4.90585 {normal=(-0.247635 0.0234722 -0.968569)} Vertex 4917 -0.546688 18.637 3.88344 {normal=(-0.804317 0.172368 0.56865)} Vertex 4918 -0.546601 18.3833 4.24653 {normal=(-0.775657 0.577828 0.253911)} Vertex 4919 -0.545544 15.4769 4.00558 {normal=(-0.257667 -0.502989 0.824991)} Vertex 4920 -0.544868 15.8737 4.06657 {normal=(-0.341614 0.271611 0.899737)} Vertex 4921 -0.544799 19.3097 3.30847 {normal=(0.380575 2.09704e-05 0.92475)} Vertex 4922 -0.544508 14.4258 3.8658 {normal=(-0.404195 -0.376673 0.833513)} Vertex 4923 -0.543993 19.3211 3.50115 {normal=(-0.721538 -0.0327525 0.6916)} Vertex 4924 -0.543886 19.2054 3.55099 {normal=(-0.810915 0.360918 0.460604)} Vertex 4925 -0.543764 17.9218 4.28655 {normal=(0.301521 -0.951921 0.0541351)} Vertex 4926 -0.543683 15.7227 -5.9228 {normal=(-0.814683 -0.571366 -0.0991565)} Vertex 4927 -0.543105 23.5687 -5.68444 {normal=(-0.224689 0.501101 -0.835711)} Vertex 4928 -0.542812 19.7935 3.91536 {normal=(0.0960101 -0.76964 0.631218)} Vertex 4929 -0.542702 18.2706 4.39458 {normal=(-0.866742 0.214021 0.450503)} Vertex 4930 -0.540437 14.1751 -3.56054 {normal=(-0.296826 0.368145 -0.881115)} Vertex 4931 -0.539813 23.5705 0.627992 {normal=(-0.114015 0.990584 0.0757952)} Vertex 4932 -0.539159 18.425 4.16108 {normal=(-0.770829 0.609742 0.184494)} Vertex 4933 -0.539057 23.6469 -5.6087 {normal=(-0.207417 0.69629 -0.687138)} Vertex 4934 -0.537987 15.9017 4.05165 {normal=(-0.279047 0.69763 0.659883)} Vertex 4935 -0.536215 14.6618 3.94111 {normal=(-0.442458 -0.102322 0.890933)} Vertex 4936 -0.535705 18.024 4.45433 {normal=(-0.656121 -0.0225279 0.754319)} Vertex 4937 -0.532251 18.7339 3.16619 {normal=(0.388722 -0.416712 0.821733)} Vertex 4938 -0.532245 19.8854 3.16616 {normal=(0.388688 0.416834 0.821688)} Vertex 4939 -0.530941 20.1425 4.0188 {normal=(0.268135 0.378534 0.885898)} Vertex 4940 -0.527039 18.4597 4.07556 {normal=(-0.851621 0.483656 0.202037)} Vertex 4941 -0.526617 18.1919 4.43451 {normal=(-0.854069 0.0624531 0.516397)} Vertex 4942 -0.526539 19.8644 4.00722 {normal=(0.462551 -0.526315 0.71347)} Vertex 4943 -0.523452 16.9796 -2.70916 {normal=(-0.27419 0.0607591 -0.959754)} Vertex 4944 -0.522518 22.8617 -3.09795 {normal=(-0.395089 0.784579 0.477849)} Vertex 4945 -0.521678 19.5179 3.61635 {normal=(-0.550144 -0.557121 0.622059)} Vertex 4946 -0.520797 21.5687 3.30643 {normal=(-0.183978 0.540352 0.821079)} Vertex 4947 -0.518179 17.9299 4.23698 {normal=(0.362992 -0.931399 -0.0270583)} Vertex 4948 -0.517003 18.2801 4.46667 {normal=(-0.927465 0.101327 0.35992)} Vertex 4949 -0.516745 15.7844 -5.63376 {normal=(-0.615239 -0.713604 0.335036)} Vertex 4950 -0.516686 18.5516 4.0133 {normal=(-0.935338 0.222461 0.275052)} Vertex 4951 -0.516495 17.7365 4.15197 {normal=(-0.303027 0.353087 0.885158)} Vertex 4952 -0.516493 18.0905 2.38453 {normal=(0.398242 -0.880104 0.258497)} Vertex 4953 -0.51648 20.5287 2.38447 {normal=(0.398253 0.880143 0.258346)} Vertex 4954 -0.515983 14.0248 3.15309 {normal=(-0.409116 -0.889245 0.204614)} Vertex 4955 -0.514279 22.2848 -3.54805 {normal=(-0.338574 -0.463749 -0.818721)} Vertex 4956 -0.514244 15.8109 -6.0342 {normal=(-0.518196 0.0440165 -0.854129)} Vertex 4957 -0.513798 19.8641 3.96686 {normal=(0.531863 -0.547045 0.646424)} Vertex 4958 -0.513574 18.3111 2.80972 {normal=(0.401001 -0.721483 0.5645)} Vertex 4959 -0.513564 20.3082 2.80967 {normal=(0.400992 0.721499 0.564487)} Vertex 4960 -0.51284 18.3513 4.42956 {normal=(-0.894652 0.336585 0.293783)} Vertex 4961 -0.512079 22.0771 -3.71268 {normal=(-0.19515 0.855103 -0.480329)} Vertex 4962 -0.510047 18.1257 4.46165 {normal=(-0.82999 0.00508224 0.557755)} Vertex 4963 -0.50891 17.9758 4.45428 {normal=(-0.479957 -0.633926 0.606448)} Vertex 4964 -0.508711 18.1979 4.4852 {normal=(-0.921371 -0.050651 0.385369)} Vertex 4965 -0.5081 18.701 3.97431 {normal=(-0.927137 0.131855 0.350757)} Vertex 4966 -0.507273 15.9574 3.96473 {normal=(-0.209913 0.873798 0.43865)} Vertex 4967 -0.506102 20.2402 3.97723 {normal=(0.0829471 0.278774 0.956768)} Vertex 4968 -0.504543 14.0733 3.35714 {normal=(-0.377926 -0.897502 0.227293)} Vertex 4969 -0.504314 19.6321 3.77478 {normal=(-0.458333 -0.641016 0.615654)} Vertex 4970 -0.5035 17.9344 4.09998 {normal=(0.161865 -0.648451 0.743849)} Vertex 4971 -0.500415 19.9328 4.03709 {normal=(0.474523 -0.433739 0.765962)} Vertex 4972 -0.499971 18.8516 3.9225 {normal=(-0.895585 0.192582 0.401049)} Vertex 4973 -0.499398 14.5771 -3.4094 {normal=(-0.30732 0.355443 -0.882732)} Vertex 4974 -0.499013 15.3752 3.92602 {normal=(-0.185092 -0.610263 0.770272)} Vertex 4975 -0.498957 11.6121 0.261136 Vertex 4976 -0.498957 11.6324 0.272709 {normal=(-0.119881 -0.41937 0.899865)} Vertex 4977 -0.49867 22.1338 -3.50016 Vertex 4978 -0.497717 17.7884 4.13487 {normal=(-0.288995 0.367657 0.883918)} Vertex 4979 -0.496222 18.4114 4.37388 {normal=(-0.853098 0.465983 0.2347)} Vertex 4980 -0.496038 18.13 4.50164 {normal=(-0.90729 -0.137155 0.397509)} Vertex 4981 -0.492791 18.5172 3.00568 {normal=(0.41657 -0.573033 0.705764)} Vertex 4982 -0.492782 20.1021 3.00564 {normal=(0.416529 0.573061 0.705765)} Vertex 4983 -0.492739 17.0323 3.87878 {normal=(-0.211992 -0.958517 0.190539)} Vertex 4984 -0.492298 19.0034 3.85787 {normal=(-0.866772 0.293882 0.402915)} Vertex 4985 -0.485335 15.6559 -5.85259 {normal=(-0.540611 -0.825254 0.163389)} Vertex 4986 -0.48506 17.9546 4.41519 {normal=(-0.0704165 -0.951602 0.299156)} Vertex 4987 -0.484836 15.2799 3.87841 {normal=(-0.211976 0.0185844 0.977098)} Vertex 4988 -0.484645 18.8145 -5.05631 {normal=(-0.257583 0.218381 -0.941255)} Vertex 4989 -0.484097 17.7527 -5.38471 {normal=(-0.267189 0.278466 -0.922533)} Vertex 4990 -0.4834 17.9508 4.13019 {normal=(0.23765 -0.936706 0.257108)} Vertex 4991 -0.483115 19.9424 4.00136 {normal=(0.638853 -0.419796 0.6447)} Vertex 4992 -0.481913 20.4038 3.93023 {normal=(0.0517002 0.317313 0.94691)} Vertex 4993 -0.481896 17.1209 -5.57253 {normal=(-0.26462 0.243935 -0.932991)} Vertex 4994 -0.480467 11.8436 0.354064 {normal=(-0.119684 -0.341721 0.932149)} Vertex 4995 -0.479093 16.7425 -4.67317 Vertex 4996 -0.478777 15.3096 3.88363 {normal=(-0.198363 -0.365179 0.909558)} Vertex 4997 -0.478752 23.8626 -5.33489 {normal=(-0.0771127 0.873906 -0.47994)} Vertex 4998 -0.478045 18.4691 4.31817 {normal=(-0.85235 0.483754 0.1987)} Vertex 4999 -0.478044 16.9191 -5.61978 {normal=(-0.259611 0.267564 -0.927907)} Vertex 5000 -0.477608 19.7229 3.87786 {normal=(-0.233729 -0.557073 0.796894)} Vertex 5001 -0.477463 18.0476 4.50316 {normal=(-0.813925 -0.0741264 0.576221)} Vertex 5002 -0.474782 19.1507 3.77372 {normal=(-0.854337 0.373426 0.361471)} Vertex 5003 -0.474633 15.1949 3.89539 {normal=(-0.223397 0.199734 0.954044)} Vertex 5004 -0.472762 20.0065 4.05591 {normal=(0.565094 -0.104152 0.818426)} Vertex 5005 -0.472217 13.9641 2.91762 {normal=(-0.319848 -0.947352 0.0148546)} Vertex 5006 -0.471405 -13.4333 -1.26545 Vertex 5007 -0.47008 14.988 -3.261 {normal=(-0.319541 0.335969 -0.886013)} Vertex 5008 -0.466604 23.3031 -5.73047 {normal=(-0.0848509 -0.186561 -0.978772)} Vertex 5009 -0.463317 17.8433 4.12455 {normal=(-0.302908 0.316756 0.89884)} Vertex 5010 -0.463053 19.4159 3.61761 {normal=(-0.81118 -0.172513 0.558772)} Vertex 5011 -0.462049 18.305 4.58757 {normal=(-0.907006 0.102516 0.408448)} Vertex 5012 -0.461916 21.1642 3.58271 {normal=(-0.097061 0.509334 0.855078)} Vertex 5013 -0.461712 16.5374 -2.80076 {normal=(-0.299014 0.197836 -0.933516)} Vertex 5014 -0.46089 17.9486 4.3735 {normal=(0.132213 -0.987787 0.0824405)} Vertex 5015 -0.460314 16.6619 -5.71419 {normal=(-0.245776 0.35312 -0.902718)} Vertex 5016 -0.459697 17.927 4.09998 {normal=(-0.279301 -0.230639 0.932093)} Vertex 5017 -0.459061 14.4857 3.93301 {normal=(-0.404661 -0.333962 0.851304)} Vertex 5018 -0.458307 18.5244 4.26243 {normal=(-0.896075 0.384813 0.221289)} Vertex 5019 -0.457639 18.2149 4.59382 {normal=(-0.894117 -0.050469 0.444981)} Vertex 5020 -0.457239 18.0753 2.17594 {normal=(0.420738 -0.888258 0.184329)} Vertex 5021 -0.457226 20.5439 2.17588 {normal=(0.420687 0.888308 0.184207)} Vertex 5022 -0.454991 16.7335 -4.49453 Vertex 5023 -0.45426 18.865 3.18536 {normal=(0.445163 -0.321877 0.835599)} Vertex 5024 -0.454255 19.7544 3.18534 {normal=(0.44514 0.321965 0.835577)} Vertex 5025 -0.45357 18.3849 4.56082 {normal=(-0.885549 0.330635 0.326319)} Vertex 5026 -0.452728 16.0411 3.80579 {normal=(-0.195035 0.886601 0.419404)} Vertex 5027 -0.452483 15.4078 -3.11535 {normal=(-0.323852 0.299821 -0.897344)} Vertex 5028 -0.450767 20.0287 4.01886 {normal=(0.450962 0.0041454 0.892534)} Vertex 5029 -0.450629 14.1629 2.03861 {normal=(-0.103828 -0.940582 -0.323305)} Vertex 5030 -0.449693 15.9243 -2.96193 {normal=(-0.316595 0.254436 -0.9138)} Vertex 5031 -0.448167 15.0546 3.93457 {normal=(-0.263511 0.198138 0.944089)} Vertex 5032 -0.447439 17.0008 3.77877 {normal=(-0.310254 -0.828116 0.466868)} Vertex 5033 -0.447422 19.2935 3.67007 {normal=(-0.8788 0.241746 0.411424)} Vertex 5034 -0.446737 18.1255 4.59616 {normal=(-0.881 -0.135279 0.453364)} Vertex 5035 -0.446563 18.6284 4.20866 {normal=(-0.932548 0.204937 0.297247)} Vertex 5036 -0.445481 16.9928 3.77271 {normal=(-0.393908 -0.357674 0.846703)} Vertex 5037 -0.44372 14.2373 1.8417 {normal=(-0.0840203 -0.932063 -0.352419)} Vertex 5038 -0.443487 12.2456 0.505202 {normal=(-0.125364 -0.332814 0.934622)} Vertex 5039 -0.442811 18.7811 4.15684 {normal=(-0.926089 0.18442 0.329162)} Vertex 5040 -0.442339 14.1817 3.72862 {normal=(-0.333681 -0.772055 0.540914)} Vertex 5041 -0.441558 19.7902 3.92558 {normal=(-0.0857646 -0.437873 0.894937)} Vertex 5042 -0.439514 14.231 3.78899 {normal=(-0.302372 -0.648124 0.698932)} Vertex 5043 -0.437091 16.9184 3.77076 {normal=(-0.352153 -0.0408335 0.935051)} Vertex 5044 -0.436402 17.9577 4.32922 {normal=(0.231296 -0.971356 -0.0544903)} Vertex 5045 -0.434728 19.8805 3.96359 {normal=(0.132072 -0.327707 0.935503)} Vertex 5046 -0.432442 15.6526 -6.02943 Vertex 5047 -0.432206 18.4547 4.51358 {normal=(-0.858855 0.440102 0.262064)} Vertex 5048 -0.432034 17.9708 4.16028 {normal=(0.16419 -0.960408 0.225072)} Vertex 5049 -0.430928 14.0949 2.23152 {normal=(-0.123968 -0.949402 -0.288562)} Vertex 5050 -0.430761 18.9309 4.09222 {normal=(-0.904527 0.256633 0.340545)} Vertex 5051 -0.430438 20.6969 3.81057 {normal=(0.0156273 0.400946 0.915968)} Vertex 5052 -0.430382 -19.9594 -2.99256 Vertex 5053 -0.429341 18.037 4.59459 {normal=(-0.816455 -0.320924 0.480009)} Vertex 5054 -0.428707 16.3494 -5.85576 {normal=(-0.216616 0.377705 -0.900231)} Vertex 5055 -0.426549 14.2059 1.11384 {normal=(-0.144534 -0.396548 0.906565)} Vertex 5056 -0.425836 14.474 1.28091 {normal=(-0.127769 -0.956869 0.260915)} Vertex 5057 -0.425481 14.1037 3.58896 {normal=(-0.340759 -0.868541 0.359888)} Vertex 5058 -0.42457 23.7132 -5.5602 {normal=(-0.093776 0.75566 -0.648216)} Vertex 5059 -0.424486 16.0875 3.72389 {normal=(-0.271798 0.71288 0.646473)} Vertex 5060 -0.423829 14.891 3.97227 {normal=(-0.313113 0.140336 0.93929)} Vertex 5061 -0.422548 16.0969 3.71901 {normal=(-0.352529 0.217298 0.910222)} Vertex 5062 -0.422269 16.7778 3.77294 {normal=(-0.314488 -0.0428809 0.948292)} Vertex 5063 -0.419899 16.253 3.73093 {normal=(-0.332038 -0.0779289 0.940041)} Vertex 5064 -0.419123 17.2965 4.2953 {normal=(-0.263504 -0.0531076 0.963195)} Vertex 5065 -0.418807 14.0312 3.34634 {normal=(-0.398167 -0.881264 0.25463)} Vertex 5066 -0.418148 18.2438 2.62637 {normal=(0.46952 -0.769718 0.432533)} Vertex 5067 -0.418137 20.3755 2.62632 {normal=(0.469492 0.769768 0.432474)} Vertex 5068 -0.417897 23.5195 -5.73171 {normal=(-0.0482478 0.327929 -0.943469)} Vertex 5069 -0.417656 12.6566 0.653598 {normal=(-0.132149 -0.323613 0.936916)} Vertex 5070 -0.416537 16.556 3.75966 {normal=(-0.307876 -0.0763987 0.948354)} Vertex 5071 -0.41561 14.1304 3.65719 {normal=(-0.310944 -0.841147 0.442477)} Vertex 5072 -0.413876 17.4319 4.28708 {normal=(-0.310173 0.136463 0.940835)} Vertex 5073 -0.413547 16.3433 -4.79865 {normal=(-0.157893 -0.479992 0.862947)} Vertex 5074 -0.413018 17.9826 4.561 {normal=(-0.537069 -0.754221 0.377767)} Vertex 5075 -0.412977 17.9693 4.27515 {normal=(0.228003 -0.971488 -0.0649997)} Vertex 5076 -0.410842 18.5244 4.46634 {normal=(-0.867836 0.435168 0.239771)} Vertex 5077 -0.410427 14.3181 1.64081 {normal=(-0.0717502 -0.924284 -0.374901)} Vertex 5078 -0.410414 19.0778 4.01479 {normal=(-0.876725 0.319291 0.359732)} Vertex 5079 -0.407372 17.1807 4.27805 {normal=(-0.239325 -0.216848 0.946415)} Vertex 5080 -0.407137 14.2784 3.83831 {normal=(-0.27428 -0.568372 0.775709)} Vertex 5081 -0.406598 19.5137 3.76522 {normal=(-0.765545 -0.290966 0.573829)} Vertex 5082 -0.404251 14.397 1.45388 {normal=(-0.0597872 -0.916057 -0.396566)} Vertex 5083 -0.40297 13.0764 0.799254 {normal=(-0.135992 -0.300657 0.943987)} Vertex 5084 -0.402798 13.5928 0.952667 {normal=(-0.135412 -0.269607 0.953402)} Vertex 5085 -0.401615 14.7044 4.00851 {normal=(-0.334914 -0.0181827 0.942073)} Vertex 5086 -0.400032 19.973 3.98043 {normal=(0.17468 -0.227897 0.957888)} Vertex 5087 -0.399906 17.1109 4.25906 {normal=(-0.249404 -0.466432 0.848669)} Vertex 5088 -0.398947 16.0735 -5.97134 {normal=(-0.175349 0.35493 -0.918301)} Vertex 5089 -0.398659 14.029 2.4433 {normal=(-0.138584 -0.957869 -0.251559)} Vertex 5090 -0.398047 14.079 3.54476 {normal=(-0.361417 -0.893265 0.26731)} Vertex 5091 -0.397766 17.9624 4.49538 {normal=(-0.219893 -0.962497 0.15889)} Vertex 5092 -0.397138 19.007 3.1994 {normal=(0.486492 -0.21913 0.845758)} Vertex 5093 -0.397134 19.6124 3.19939 {normal=(0.486508 0.219127 0.84575)} Vertex 5094 -0.396724 17.0869 4.23832 {normal=(-0.2516 -0.818426 0.516601)} Vertex 5095 -0.396179 21.5986 3.31504 {normal=(-0.132393 0.545242 0.827758)} Vertex 5096 -0.39175 13.9544 3.11342 {normal=(-0.355025 -0.923685 0.144096)} Vertex 5097 -0.39163 17.5868 4.25339 {normal=(-0.367048 0.250433 0.895857)} Vertex 5098 -0.391091 23.4245 1.35452 {normal=(-0.0912035 0.932517 0.349419)} Vertex 5099 -0.390032 13.0669 -2.47061 {normal=(0.0807865 -0.804368 -0.588613)} Vertex 5100 -0.389615 19.2271 3.92217 {normal=(-0.863068 0.357146 0.357155)} Vertex 5101 -0.389477 18.5941 4.4191 {normal=(-0.891024 0.367156 0.26697)} Vertex 5102 -0.388764 17.8375 4.15456 {normal=(-0.38731 0.314154 0.866775)} Vertex 5103 -0.387431 22.0867 2.98813 {normal=(-0.111597 0.577101 0.809012)} Vertex 5104 -0.386051 15.9861 -4.05547 {normal=(-0.0810625 -0.522275 -0.848916)} Vertex 5105 -0.385143 17.9211 4.12999 {normal=(-0.469125 -0.186958 0.863115)} Vertex 5106 -0.382357 17.9765 4.17396 {normal=(-0.285548 -0.89118 0.352507)} Vertex 5107 -0.382086 23.0841 1.99238 {normal=(-0.130808 0.845032 0.518469)} Vertex 5108 -0.38188 18.6509 3.03295 {normal=(0.496782 -0.476306 0.725493)} Vertex 5109 -0.381872 19.9684 3.03291 {normal=(0.496712 0.476384 0.72549)} Vertex 5110 -0.381689 22.4766 2.69633 {normal=(-0.134166 0.625688 0.768449)} Vertex 5111 -0.380016 17.9569 4.42882 {normal=(-0.0813 -0.99653 -0.0178435)} Vertex 5112 -0.379505 17.6996 4.22024 {normal=(-0.375446 0.344262 0.860537)} Vertex 5113 -0.378953 22.7681 2.43965 {normal=(-0.148499 0.736347 0.660107)} Vertex 5114 -0.377837 18.3453 4.75726 {normal=(-0.774988 0.128126 0.618851)} Vertex 5115 -0.377501 17.7703 4.18764 {normal=(-0.37477 0.371671 0.849357)} Vertex 5116 -0.375531 18.7008 4.36335 {normal=(-0.895275 0.269071 0.355083)} Vertex 5117 -0.374854 16.0573 -5.01324 {normal=(-0.125208 -0.743805 0.656565)} Vertex 5118 -0.373404 18.2429 4.76035 {normal=(-0.76905 -0.0444159 0.637643)} Vertex 5119 -0.373025 23.2854 -1.50657 {normal=(-0.0776998 0.940368 -0.331167)} Vertex 5120 -0.371554 18.4354 4.72569 {normal=(-0.759954 0.386623 0.522487)} Vertex 5121 -0.371029 15.8342 -6.06092 {normal=(-0.120174 0.198559 -0.972693)} Vertex 5122 -0.370553 18.4369 2.84487 {normal=(0.504317 -0.630582 0.589942)} Vertex 5123 -0.370544 20.1824 2.84483 {normal=(0.504314 0.630624 0.589899)} Vertex 5124 -0.369004 18.8445 4.2991 {normal=(-0.859676 0.285448 0.423647)} Vertex 5125 -0.368365 19.3787 3.81435 {normal=(-0.883367 0.17422 0.435098)} Vertex 5126 -0.366267 -15.6179 -1.5736 Vertex 5127 -0.364985 15.6862 -6.07089 Vertex 5128 -0.364914 17.0505 4.13331 {normal=(-0.224785 -0.949233 0.220063)} Vertex 5129 -0.363667 18.1413 4.75803 {normal=(-0.761955 -0.12189 0.636056)} Vertex 5130 -0.363299 17.975 4.28883 {normal=(-0.159363 -0.986264 -0.0434351)} Vertex 5131 -0.363012 15.8846 -5.31692 {normal=(-0.12089 -0.862835 0.490817)} Vertex 5132 -0.362292 19.1564 3.20797 {normal=(0.511721 -0.110909 0.851963)} Vertex 5133 -0.362291 19.4629 3.20796 {normal=(0.511732 0.11093 0.851953)} Vertex 5134 -0.359767 17.9661 4.36134 {normal=(-0.114872 -0.988539 -0.0979558)} Vertex 5135 -0.359343 14.3244 3.88978 {normal=(-0.259476 -0.545042 0.797247)} Vertex 5136 -0.359051 14.5304 3.99889 {normal=(-0.287216 -0.275522 0.917385)} Vertex 5137 -0.358233 17.9559 4.17665 {normal=(-0.688691 -0.564132 0.455477)} Vertex 5138 -0.355521 19.5894 3.8538 {normal=(-0.562124 -0.250589 0.788176)} Vertex 5139 -0.354842 -17.7762 -2.31877 Vertex 5140 -0.354552 18.5132 4.66564 {normal=(-0.744945 0.504963 0.435969)} Vertex 5141 -0.354087 18.9876 4.22274 {normal=(-0.816622 0.364319 0.447661)} Vertex 5142 -0.353825 13.9652 2.67394 {normal=(-0.149219 -0.970379 -0.189996)} Vertex 5143 -0.353528 15.6095 -5.9818 Vertex 5144 -0.35346 17.9279 4.16278 {normal=(-0.727242 -0.278592 0.6273)} Vertex 5145 -0.352101 15.7421 -5.58711 {normal=(-0.106512 -0.879936 0.462999)} Vertex 5146 -0.351679 21.1196 3.61823 {normal=(-0.0468258 0.478883 0.876629)} Vertex 5147 -0.351638 23.582 0.676545 {normal=(-0.0373008 0.994829 0.0944654)} Vertex 5148 -0.35058 19.3097 3.21084 {normal=(0.520207 3.69401e-05 0.85404)} Vertex 5149 -0.349781 20.1739 3.99692 {normal=(-0.0638795 0.115028 0.991306)} Vertex 5150 -0.349371 15.6466 4.13339 {normal=(-0.259171 -0.203763 0.944093)} Vertex 5151 -0.348628 18.0404 4.75027 {normal=(-0.705777 -0.353475 0.61395)} Vertex 5152 -0.347656 11.988 -0.569456 {normal=(-0.0130915 -0.903453 -0.428487)} Vertex 5153 -0.342142 20.3444 3.95272 {normal=(-0.153679 0.295822 0.9428)} Vertex 5154 -0.342121 15.6298 -5.82381 {normal=(-0.0774511 -0.950867 0.299754)} Vertex 5155 -0.340328 17.9782 4.69487 {normal=(-0.654747 -0.629099 0.418975)} Vertex 5156 -0.339659 -13.4311 -1.57917 Vertex 5157 -0.338771 17.9548 4.59181 {normal=(-0.525722 -0.84094 0.128203)} Vertex 5158 -0.338723 18.2027 2.42823 {normal=(0.526638 -0.799092 0.290008)} Vertex 5159 -0.338711 20.4166 2.42817 {normal=(0.526534 0.799188 0.289932)} Vertex 5160 -0.338378 15.7973 4.13902 {normal=(-0.280049 0.0229543 0.959711)} Vertex 5161 -0.33755 18.591 4.60559 {normal=(-0.75603 0.498589 0.424061)} Vertex 5162 -0.336796 15.5071 4.07752 {normal=(-0.184851 -0.51721 0.835658)} Vertex 5163 -0.333865 20.5782 3.86313 {normal=(-0.178884 0.379048 0.907922)} Vertex 5164 -0.332622 22.9704 -2.19588 {normal=(-0.117279 0.891508 -0.43756)} Vertex 5165 -0.330781 19.13 4.13428 {normal=(-0.788013 0.409415 0.459798)} Vertex 5166 -0.33044 15.8865 4.13357 {normal=(-0.26805 0.30628 0.913423)} Vertex 5167 -0.329946 17.9445 4.48783 {normal=(-0.457744 -0.888813 -0.0219446)} Vertex 5168 -0.329264 22.8378 -2.8294 {normal=(-0.146391 0.985231 0.0888191)} Vertex 5169 -0.327627 14.0482 3.53314 {normal=(-0.273096 -0.893323 0.356922)} Vertex 5170 -0.325558 15.9144 4.11704 {normal=(-0.21317 0.710955 0.670151)} Vertex 5171 -0.321242 13.9695 3.30389 {normal=(-0.34314 -0.904637 0.252759)} Vertex 5172 -0.320547 18.6688 4.54554 {normal=(-0.767074 0.464723 0.442301)} Vertex 5173 -0.31947 17.9528 4.29169 {normal=(-0.559314 -0.826659 0.0616659)} Vertex 5174 -0.31677 22.8144 -2.68599 {normal=(-0.131433 0.977008 0.167873)} Vertex 5175 -0.313858 17.9472 4.38291 {normal=(-0.489197 -0.868744 -0.0772721)} Vertex 5176 -0.312966 19.2816 4.02798 {normal=(-0.776547 0.424091 0.465963)} Vertex 5177 -0.311945 22.8104 -2.55897 {normal=(-0.152585 0.944043 -0.292404)} Vertex 5178 -0.310998 22.8053 -2.59584 {normal=(-0.148154 0.988959 -0.0032231)} Vertex 5179 -0.309822 19.643 3.88336 {normal=(-0.514567 -0.206372 0.832245)} Vertex 5180 -0.307932 17.8136 4.20609 {normal=(-0.624947 0.172173 0.761445)} Vertex 5181 -0.30642 15.9675 4.02834 {normal=(-0.156582 0.880636 0.447171)} Vertex 5182 -0.306205 19.9678 3.98603 {normal=(-0.0693113 -0.211501 0.974917)} Vertex 5183 -0.304477 17.0018 3.94404 {normal=(-0.22741 -0.955062 0.19011)} Vertex 5184 -0.303883 13.9239 2.89099 {normal=(-0.178701 -0.979733 -0.0904962)} Vertex 5185 -0.303589 18.7688 4.47737 {normal=(-0.750054 0.424017 0.50757)} Vertex 5186 -0.300656 15.3789 3.9714 {normal=(-0.141798 -0.620099 0.771603)} Vertex 5187 -0.300641 19.4423 3.90384 {normal=(-0.764379 0.230476 0.602167)} Vertex 5188 -0.298168 19.7263 3.9123 {normal=(-0.168475 -0.220807 0.960656)} Vertex 5189 -0.296136 14.3691 3.94341 {normal=(-0.164618 -0.509644 0.844491)} Vertex 5190 -0.295346 17.9322 4.29438 {normal=(-0.742736 -0.652325 0.151046)} Vertex 5191 -0.294104 22.8372 -2.92034 {normal=(-0.160629 0.910003 -0.382222)} Vertex 5192 -0.292648 18.8009 3.05488 {normal=(0.561262 -0.367879 0.741384)} Vertex 5193 -0.292643 19.8185 3.05485 {normal=(0.56127 0.367949 0.741343)} Vertex 5194 -0.2913 14.1545 3.75204 {normal=(-0.0833915 -0.785016 0.613837)} Vertex 5195 -0.289375 15.2704 3.91069 {normal=(-0.129985 0.0479271 0.990357)} Vertex 5196 -0.286676 18.8912 4.40108 {normal=(-0.698334 0.438213 0.565949)} Vertex 5197 -0.285771 17.9063 4.49378 {normal=(-0.770959 -0.635113 -0.0474643)} Vertex 5198 -0.285549 17.9089 4.59877 {normal=(-0.737538 -0.6668 0.106841)} Vertex 5199 -0.284849 15.3 3.9158 {normal=(-0.140678 -0.384403 0.912384)} Vertex 5200 -0.283912 17.7366 4.24935 {normal=(-0.649595 0.228829 0.725027)} Vertex 5201 -0.283106 15.1923 3.93154 {normal=(-0.14024 0.289858 0.946739)} Vertex 5202 -0.277277 19.3096 2.35648 {normal=(-0.949363 -4.70957e-06 0.314181)} Vertex 5203 -0.277254 18.1889 2.22019 {normal=(0.550379 -0.806451 0.216148)} Vertex 5204 -0.277241 20.4304 2.22013 {normal=(0.550222 0.806567 0.216115)} Vertex 5205 -0.27709 21.022 3.67883 {normal=(-0.0742779 0.445068 0.892411)} Vertex 5206 -0.276249 17.8204 4.23887 {normal=(-0.83168 -0.0090512 0.555181)} Vertex 5207 -0.276085 23.5288 -0.430094 {normal=(-0.0586661 0.984845 -0.163214)} Vertex 5208 -0.275007 17.9139 4.38759 {normal=(-0.768389 -0.637046 -0.0612411)} Vertex 5209 -0.274339 17.9216 4.70257 {normal=(-0.586431 -0.681027 0.438521)} Vertex 5210 -0.273651 16.9735 3.84597 {normal=(-0.306771 -0.834633 0.45747)} Vertex 5211 -0.27303 16.0461 3.86748 {normal=(-0.147226 0.893069 0.425149)} Vertex 5212 -0.27244 16.9655 3.8391 {normal=(-0.364475 -0.40674 0.837688)} Vertex 5213 -0.270153 14.2029 3.8091 {normal=(-0.053286 -0.713298 0.698832)} Vertex 5214 -0.269945 19.0216 4.31407 {normal=(-0.652022 0.47677 0.58954)} Vertex 5215 -0.269086 -20.0511 -2.71263 Vertex 5216 -0.266803 17.8924 4.2996 {normal=(-0.854508 -0.464116 0.233266)} Vertex 5217 -0.266146 21.5721 3.35719 {normal=(-0.0501105 0.545935 0.836328)} Vertex 5218 -0.266141 17.3954 4.33281 {normal=(-0.257468 0.00123924 0.966286)} Vertex 5219 -0.266045 15.0656 3.97835 {normal=(-0.191605 0.278594 0.941102)} Vertex 5220 -0.265489 18.378 2.6639 {normal=(0.579759 -0.672789 0.459604)} Vertex 5221 -0.265478 20.2413 2.66385 {normal=(0.5798 0.672773 0.459575)} Vertex 5222 -0.263658 16.8973 3.83218 {normal=(-0.320676 -0.113208 0.940399)} Vertex 5223 -0.262028 17.8645 4.28572 {normal=(-0.885646 -0.275368 0.373904)} Vertex 5224 -0.260716 19.5263 2.3524 {normal=(-0.937449 0.155949 0.311237)} Vertex 5225 -0.260715 19.0929 2.35241 {normal=(-0.937441 -0.155968 0.311252)} Vertex 5226 -0.260694 14.0093 3.48904 {normal=(-0.22477 -0.899283 0.375192)} Vertex 5227 -0.2604 17.6465 4.30234 {normal=(-0.661336 0.188165 0.726105)} Vertex 5228 -0.259108 24.1069 -4.49053 {normal=(-0.015451 0.998967 0.0427447)} Vertex 5229 -0.257942 14.1038 3.68155 {normal=(-0.0662956 -0.846839 0.527702)} Vertex 5230 -0.256735 -19.9197 -3.28034 Vertex 5231 -0.255671 16.09 3.78441 {normal=(-0.218366 0.72416 0.654148)} Vertex 5232 -0.255256 14.9151 4.0169 {normal=(-0.213031 0.177868 0.960719)} Vertex 5233 -0.255121 22.7834 -5.38247 {normal=(-0.0174006 -0.877585 -0.479105)} Vertex 5234 -0.254476 17.5327 4.33016 {normal=(-0.453173 0.0365042 0.890675)} Vertex 5235 -0.25434 16.0993 3.77913 {normal=(-0.299177 0.236959 0.924307)} Vertex 5236 -0.253763 15.535 -3.78528 {normal=(-0.0457311 -0.563976 -0.824524)} Vertex 5237 -0.253399 19.16 4.21632 {normal=(-0.627534 0.504223 0.593263)} Vertex 5238 -0.252451 24.0495 -4.23832 {normal=(0.00767036 0.934295 0.356417)} Vertex 5239 -0.2518 18.3727 4.85374 {normal=(-0.401422 0.189649 0.896043)} Vertex 5240 -0.250943 24.0738 -4.74302 {normal=(-0.0203695 0.98063 -0.194809)} Vertex 5241 -0.250737 14.741 4.04721 {normal=(-0.157763 0.00856454 0.98744)} Vertex 5242 -0.250038 16.2541 3.7878 {normal=(-0.289556 -0.0568164 0.955473)} Vertex 5243 -0.248832 13.9049 3.09444 {normal=(-0.223946 -0.973121 0.0536957)} Vertex 5244 -0.248781 22.8749 -5.52053 {normal=(-0.0367949 -0.697929 -0.715221)} Vertex 5245 -0.248464 18.2629 4.85866 {normal=(-0.407315 -0.00282459 0.913283)} Vertex 5246 -0.248401 18.5842 2.8749 {normal=(0.592586 -0.524154 0.611641)} Vertex 5247 -0.248395 20.0352 2.87486 {normal=(0.592604 0.524246 0.611545)} Vertex 5248 -0.247909 18.4674 4.81895 {normal=(-0.393142 0.475972 0.786696)} Vertex 5249 -0.24749 17.8424 4.44667 {normal=(-0.91732 -0.393966 -0.0575712)} Vertex 5250 -0.247304 16.7688 3.82521 {normal=(-0.282426 -0.0827348 0.955715)} Vertex 5251 -0.247066 20.5742 3.8995 {normal=(-0.214319 0.378112 0.90061)} Vertex 5252 -0.246113 17.7886 4.29781 {normal=(-0.908202 0.0314646 0.417349)} Vertex 5253 -0.24605 22.6931 -5.1699 {normal=(-0.00679315 -0.93893 -0.344042)} Vertex 5254 -0.244833 19.3143 4.09115 {normal=(-0.612466 0.524147 0.591739)} Vertex 5255 -0.244248 19.4843 3.93855 {normal=(-0.548286 0.305992 0.778301)} Vertex 5256 -0.243734 15.2525 -3.57626 Vertex 5257 -0.243218 17.8661 4.37536 {normal=(-0.91878 -0.393716 -0.0288408)} Vertex 5258 -0.242765 16.5544 3.81041 {normal=(-0.271614 -0.0697324 0.959877)} Vertex 5259 -0.242632 20.3426 3.98513 {normal=(-0.205286 0.274349 0.939463)} Vertex 5260 -0.241599 18.153 4.85547 {normal=(-0.414831 -0.0887692 0.905558)} Vertex 5261 -0.2381 17.8247 4.51626 {normal=(-0.864116 -0.494193 0.0952687)} Vertex 5262 -0.237438 17.2624 4.32645 {normal=(-0.180947 -0.134365 0.974271)} Vertex 5263 -0.236794 18.5471 4.75427 {normal=(-0.38787 0.614279 0.687181)} Vertex 5264 -0.236595 15.6833 -3.29809 {normal=(0.0991071 -0.423181 0.900608)} Vertex 5265 -0.232918 17.8011 4.39853 {normal=(-0.979555 -0.198086 0.0351166)} Vertex 5266 -0.232341 16.8277 -2.95079 {normal=(0.106361 -0.326627 0.93915)} Vertex 5267 -0.231893 17.8328 4.34466 {normal=(-0.983015 -0.118531 0.140115)} Vertex 5268 -0.231785 14.5695 4.03046 {normal=(-0.0620956 -0.235217 0.969957)} Vertex 5269 -0.231432 17.7355 4.32891 {normal=(-0.91386 -0.0551559 0.402265)} Vertex 5270 -0.231202 18.043 4.84419 {normal=(-0.394456 -0.351705 0.848945)} Vertex 5271 -0.230971 23.9014 -3.98638 {normal=(0.0351712 0.778789 0.6263)} Vertex 5272 -0.227295 18.9633 3.07094 {normal=(0.608507 -0.250449 0.752991)} Vertex 5273 -0.227291 19.656 3.07092 {normal=(0.608552 0.250426 0.752962)} Vertex 5274 -0.226682 21.0376 -4.72091 {normal=(-0.0971816 0.516999 -0.850451)} Vertex 5275 -0.225677 18.6268 4.68959 {normal=(-0.397326 0.612548 0.683314)} Vertex 5276 -0.224847 20.1765 4.02142 {normal=(-0.174711 0.0527838 0.983204)} Vertex 5277 -0.22386 20.3572 -4.9949 {normal=(-0.0768208 0.156634 -0.984665)} Vertex 5278 -0.221568 22.604 -4.88282 {normal=(0.0031393 -0.984471 -0.175518)} Vertex 5279 -0.220061 17.7669 4.4263 {normal=(-0.933008 -0.324045 0.156496)} Vertex 5280 -0.217768 23.9941 -5.02929 {normal=(-0.0161301 0.947811 -0.318425)} Vertex 5281 -0.215585 23.0553 -5.63636 {normal=(-0.0303346 -0.45524 -0.889852)} Vertex 5282 -0.21505 17.8128 4.58411 {normal=(-0.665791 -0.660752 0.346596)} Vertex 5283 -0.214562 18.7065 4.62492 {normal=(-0.409721 0.59422 0.692121)} Vertex 5284 -0.212275 -15.5639 -1.88101 Vertex 5285 -0.211934 23.69 -3.79719 {normal=(0.0484605 0.542721 0.838514)} Vertex 5286 -0.211637 17.2982 -2.76926 Vertex 5287 -0.21144 19.7377 2.34028 {normal=(-0.901981 0.308077 0.30252)} Vertex 5288 -0.211435 18.8816 2.34031 {normal=(-0.901987 -0.308049 0.302532)} Vertex 5289 -0.211415 19.7262 3.92006 {normal=(-0.196443 -0.0731389 0.977784)} Vertex 5290 -0.21129 22.8124 -2.9588 Vertex 5291 -0.211039 23.6941 -5.59144 {normal=(-0.0146003 0.727624 -0.685821)} Vertex 5292 -0.210194 23.5602 -5.69608 {normal=(0.0125703 0.400841 -0.916061)} Vertex 5293 -0.208981 19.3096 2.56285 {normal=(-0.922021 -5.10925e-06 0.387139)} Vertex 5294 -0.208779 14.235 3.83776 {normal=(0.0577063 -0.688345 0.723085)} Vertex 5295 -0.20543 22.5908 -4.56631 {normal=(0.0212782 -0.998056 0.0585833)} Vertex 5296 -0.204344 13.9245 3.28341 {normal=(-0.219093 -0.944063 0.24646)} Vertex 5297 -0.201551 17.9267 4.76913 {normal=(-0.337061 -0.661905 0.669531)} Vertex 5298 -0.200713 18.8044 4.55065 {normal=(-0.415238 0.564528 0.713362)} Vertex 5299 -0.200598 -13.3633 -1.00287 Vertex 5300 -0.198399 14.4006 3.96665 {normal=(0.0384904 -0.483616 0.874434)} Vertex 5301 -0.197638 22.6537 -4.22038 {normal=(0.0293054 -0.998568 -0.044751)} Vertex 5302 -0.196986 17.6545 4.38876 {normal=(-0.783305 -0.240632 0.573174)} Vertex 5303 -0.195338 23.4152 -3.67074 {normal=(0.0238149 0.519933 0.853875)} Vertex 5304 -0.192624 19.5237 2.55882 {normal=(-0.910213 0.154543 0.384225)} Vertex 5305 -0.192621 19.0956 2.55883 {normal=(-0.910215 -0.154519 0.38423)} Vertex 5306 -0.191632 14.0847 3.64455 {normal=(0.0151626 -0.846828 0.53165)} Vertex 5307 -0.190847 21.7535 -4.1104 {normal=(-0.0793972 0.683575 -0.725549)} Vertex 5308 -0.190234 -17.6897 -2.59716 Vertex 5309 -0.18987 21.0829 3.64715 {normal=(0.0629707 0.489036 0.869988)} Vertex 5310 -0.189266 17.7238 4.47951 {normal=(-0.769239 -0.516669 0.375932)} Vertex 5311 -0.187426 19.1343 3.08074 {normal=(0.637364 -0.126759 0.760065)} Vertex 5312 -0.187425 19.485 3.08073 {normal=(0.637367 0.126792 0.760057)} Vertex 5313 -0.186303 22.5642 -3.89153 {normal=(0.0181227 -0.895454 -0.444785)} Vertex 5314 -0.184135 18.9206 4.46679 {normal=(-0.40932 0.556182 0.723269)} Vertex 5315 -0.182751 23.1584 -3.45014 {normal=(-0.0184957 0.719687 0.694052)} Vertex 5316 -0.18238 19.7123 -4.93236 {normal=(-0.0429436 0.0287825 -0.998663)} Vertex 5317 -0.182192 -17.8652 -2.04799 Vertex 5318 -0.180183 18.3422 2.4672 {normal=(0.641085 -0.698469 0.318043)} Vertex 5319 -0.180172 20.2771 2.46715 {normal=(0.641095 0.698442 0.318081)} Vertex 5320 -0.178783 21.4665 3.42663 {normal=(0.0975487 0.512363 0.853211)} Vertex 5321 -0.175634 19.9779 4.00873 {normal=(-0.131626 -0.205898 0.969681)} Vertex 5322 -0.174483 17.0948 -2.75351 {normal=(-0.0788864 0.0475359 -0.99575)} Vertex 5323 -0.174173 22.9195 -3.1354 {normal=(-0.0386822 0.823913 0.565394)} Vertex 5324 -0.174099 -15.6627 -1.30384 Vertex 5325 -0.174026 19.3097 3.08403 {normal=(0.647053 3.69197e-05 0.762445)} Vertex 5326 -0.17384 22.0545 3.02744 {normal=(-0.0310716 0.575516 0.8172)} Vertex 5327 -0.171426 22.3225 -3.57976 {normal=(0.00590506 -0.620076 -0.784519)} Vertex 5328 -0.170906 19.0474 4.37324 {normal=(-0.407218 0.56159 0.720271)} Vertex 5329 -0.170693 22.134 -3.70982 {normal=(-0.094054 0.82282 -0.560465)} Vertex 5330 -0.170421 13.9828 3.45791 {normal=(-0.104211 -0.901186 0.420718)} Vertex 5331 -0.168367 17.1338 4.31108 {normal=(-0.133591 -0.253947 0.957948)} Vertex 5332 -0.167353 20.648 3.87423 {normal=(-0.0184236 0.43669 0.899423)} Vertex 5333 -0.166223 22.1791 -3.5192 Vertex 5334 -0.162038 19.5175 3.9699 {normal=(-0.344367 0.388039 0.85489)} Vertex 5335 -0.161548 18.8546 -5.06843 {normal=(-0.0390511 0.226701 -0.973181)} Vertex 5336 -0.161365 17.7839 -5.4031 {normal=(-0.0395628 0.290672 -0.956004)} Vertex 5337 -0.161262 14.1288 2.07389 {normal=(-0.0363973 -0.940721 -0.337222)} Vertex 5338 -0.161031 19.185 4.26999 {normal=(-0.407237 0.579321 0.706077)} Vertex 5339 -0.160632 17.1493 -5.59079 {normal=(-0.0368165 0.246452 -0.968455)} Vertex 5340 -0.159697 16.7695 -4.7007 Vertex 5341 -0.159584 23.8678 -5.34936 {normal=(-0.0126455 0.878429 -0.477706)} Vertex 5342 -0.159347 16.9508 -5.63151 {normal=(-0.0322293 0.268354 -0.962781)} Vertex 5343 -0.159007 14.201 1.87705 {normal=(-0.0386818 -0.934025 -0.355106)} Vertex 5344 -0.158681 14.0928 -3.67892 Vertex 5345 -0.158681 14.1131 -3.66734 {normal=(-0.107669 0.422999 -0.899711)} Vertex 5346 -0.158075 19.3417 4.13555 {normal=(-0.407998 0.606242 0.682648)} Vertex 5347 -0.15632 14.0659 2.25372 {normal=(-0.0378415 -0.950856 -0.307313)} Vertex 5348 -0.155535 23.3246 -5.72994 {normal=(0.00553141 -0.1199 -0.992771)} Vertex 5349 -0.1544 11.5898 0.274548 Vertex 5350 -0.1544 11.6101 0.286121 {normal=(-0.0319113 -0.428486 0.902985)} Vertex 5351 -0.153808 15.6826 -6.06314 Vertex 5352 -0.153438 16.6918 -5.72178 {normal=(-0.0298101 0.366191 -0.930062)} Vertex 5353 -0.153421 14.4485 1.29495 {normal=(-0.0564371 -0.959313 0.276648)} Vertex 5354 -0.152643 17.8041 4.63032 {normal=(-0.339338 -0.740875 0.579615)} Vertex 5355 -0.151332 14.3243 -3.58599 {normal=(-0.100791 0.359487 -0.927691)} Vertex 5356 -0.150836 15.6232 -5.99561 Vertex 5357 -0.150128 18.7493 2.89906 {normal=(0.663589 -0.404876 0.629067)} Vertex 5358 -0.150121 19.87 2.89903 {normal=(0.663629 0.404899 0.629009)} Vertex 5359 -0.149881 16.6866 -2.82621 {normal=(-0.0894327 0.207404 -0.974159)} Vertex 5360 -0.149549 14.2826 1.66321 {normal=(-0.0428113 -0.925181 -0.377105)} Vertex 5361 -0.149323 14.1836 1.12725 {normal=(-0.0396716 -0.39632 0.917255)} Vertex 5362 -0.14729 14.0071 2.44827 {normal=(-0.0390943 -0.962124 -0.269794)} Vertex 5363 -0.14719 11.8213 0.367476 {normal=(-0.0308608 -0.353895 0.934776)} Vertex 5364 -0.146804 14.3651 1.46917 {normal=(-0.0412251 -0.912595 -0.406781)} Vertex 5365 -0.144657 20.348 4.00229 {normal=(-0.0756165 0.272232 0.959256)} Vertex 5366 -0.144205 17.368 4.35447 {normal=(-0.124477 -0.115507 0.985476)} Vertex 5367 -0.143953 19.7324 2.54685 {normal=(-0.875093 0.30523 0.375563)} Vertex 5368 -0.143949 18.8868 2.54687 {normal=(-0.875073 -0.30526 0.375584)} Vertex 5369 -0.142902 16.3723 -5.8616 {normal=(-0.0251507 0.389208 -0.920806)} Vertex 5370 -0.139425 17.4915 4.37142 {normal=(-0.272224 -0.237058 0.932576)} Vertex 5371 -0.137849 16.3845 -4.83563 {normal=(0.0868112 -0.457124 0.885156)} Vertex 5372 -0.137377 16.0735 -2.98738 {normal=(-0.0999602 0.264984 -0.959058)} Vertex 5373 -0.136633 14.7263 -3.43485 {normal=(-0.103982 0.348142 -0.931657)} Vertex 5374 -0.135105 18.5352 2.69595 {normal=(0.673943 -0.559234 0.482761)} Vertex 5375 -0.135096 20.084 2.6959 {normal=(0.673981 0.55923 0.482713)} Vertex 5376 -0.134823 17.6007 4.42515 {normal=(-0.435518 -0.478822 0.762269)} Vertex 5377 -0.134562 13.5705 0.966079 {normal=(-0.0346418 -0.270283 0.962158)} Vertex 5378 -0.134174 13.9521 2.65753 {normal=(-0.0406401 -0.974413 -0.221061)} Vertex 5379 -0.133302 17.0572 4.29293 {normal=(-0.0926979 -0.472111 0.876652)} Vertex 5380 -0.132982 16.0899 -5.9755 {normal=(-0.018468 0.358008 -0.933536)} Vertex 5381 -0.132772 12.2233 0.518614 {normal=(-0.0322732 -0.344255 0.938321)} Vertex 5382 -0.132241 17.0328 4.27201 {normal=(-0.118964 -0.834114 0.538611)} Vertex 5383 -0.131225 15.5571 -3.14079 {normal=(-0.105693 0.302552 -0.947255)} Vertex 5384 -0.130659 19.9385 2.32042 {normal=(-0.843891 0.45253 0.288209)} Vertex 5385 -0.130653 18.6807 2.32045 {normal=(-0.843837 -0.452596 0.288263)} Vertex 5386 -0.1304 17.6954 4.51566 {normal=(-0.431026 -0.661011 0.614233)} Vertex 5387 -0.130364 23.4167 1.40274 {normal=(-0.0233399 0.934893 0.354163)} Vertex 5388 -0.130308 17.2634 4.34226 {normal=(-0.0723896 -0.140729 0.987398)} Vertex 5389 -0.129931 15.1373 -3.28645 {normal=(-0.107384 0.333845 -0.936491)} Vertex 5390 -0.127806 13.0541 0.812668 {normal=(-0.0351356 -0.306412 0.95125)} Vertex 5391 -0.127362 23.074 2.06086 {normal=(-0.0483608 0.847236 0.529011)} Vertex 5392 -0.12723 22.4474 2.7444 {normal=(-0.0401581 0.603802 0.796122)} Vertex 5393 -0.126317 22.751 2.50808 {normal=(-0.0579576 0.717947 0.693681)} Vertex 5394 -0.126311 12.6342 0.667011 {normal=(-0.0340897 -0.332787 0.942386)} Vertex 5395 -0.124951 16.1006 -5.05061 {normal=(0.103725 -0.734752 0.670358)} Vertex 5396 -0.123677 15.8444 -6.06348 {normal=(-0.00524936 0.180267 -0.983604)} Vertex 5397 -0.121785 20.1831 4.03133 {normal=(-0.049721 0.0548558 0.997256)} Vertex 5398 -0.121638 17.0012 4.17381 {normal=(-0.115221 -0.962646 0.245024)} Vertex 5399 -0.121004 15.9179 -5.34565 {normal=(0.0880293 -0.858247 0.505631)} Vertex 5400 -0.117367 15.7658 -5.6076 {normal=(0.0645465 -0.876907 0.476306)} Vertex 5401 -0.116737 18.3301 2.25964 {normal=(0.665822 -0.704901 0.244532)} Vertex 5402 -0.116727 20.2892 2.25959 {normal=(0.665817 0.704906 0.244532)} Vertex 5403 -0.116457 15.6695 4.19146 {normal=(-0.10812 -0.206729 0.972406)} Vertex 5404 -0.114198 14.2209 3.80199 {normal=(0.0722451 -0.717707 0.692587)} Vertex 5405 -0.114154 13.9085 2.87349 {normal=(-0.0535663 -0.98656 -0.154371)} Vertex 5406 -0.11404 15.6444 -5.83645 {normal=(0.0423991 -0.954379 0.295572)} Vertex 5407 -0.113747 16.1175 -4.15826 {normal=(-0.0295369 -0.55 -0.834642)} Vertex 5408 -0.113747 16.7534 -4.51734 Vertex 5409 -0.112793 15.8086 4.19426 {normal=(-0.120141 0.0353088 0.992129)} Vertex 5410 -0.112265 15.5238 4.12591 {normal=(-0.0759854 -0.524359 0.8481)} Vertex 5411 -0.110757 14.1041 3.65393 {normal=(0.0447703 -0.816176 0.576067)} Vertex 5412 -0.110146 15.892 4.18693 {normal=(-0.115425 0.315368 0.941924)} Vertex 5413 -0.109242 19.3096 2.75599 {normal=(-0.850422 -3.70305e-06 0.526101)} Vertex 5414 -0.108519 15.9198 4.16946 {normal=(-0.0910709 0.712865 0.695363)} Vertex 5415 -0.10214 15.9713 4.08003 {normal=(-0.0653891 0.885746 0.459541)} Vertex 5416 -0.101492 16.9625 3.99833 {normal=(-0.118262 -0.970053 0.212161)} Vertex 5417 -0.100218 15.3714 3.9976 {normal=(-0.060791 -0.620394 0.781931)} Vertex 5418 -0.098088 20.0237 4.02734 {normal=(-0.00690231 -0.135982 0.990687)} Vertex 5419 -0.096459 15.251 3.92598 {normal=(-0.0421655 0.0915905 0.994904)} Vertex 5420 -0.094994 19.7465 3.94706 {normal=(-0.170802 -0.042798 0.984375)} Vertex 5421 -0.094949 15.2805 3.93096 {normal=(-0.054973 -0.383452 0.921923)} Vertex 5422 -0.094368 15.1776 3.95345 {normal=(-0.0484866 0.375948 0.925371)} Vertex 5423 -0.093492 19.5157 2.75212 {normal=(-0.839055 0.148816 0.523298)} Vertex 5424 -0.093489 19.1035 2.75213 {normal=(-0.83904 -0.148836 0.523316)} Vertex 5425 -0.091217 16.9392 3.90675 {normal=(-0.153638 -0.869367 0.469676)} Vertex 5426 -0.09101 16.0466 3.91863 {normal=(-0.0616062 0.899538 0.432477)} Vertex 5427 -0.090813 16.9314 3.89908 {normal=(-0.183356 -0.458089 0.86979)} Vertex 5428 -0.088682 15.0603 4.01337 {normal=(-0.0774229 0.332405 0.939954)} Vertex 5429 -0.08791 23.5403 -0.381542 {normal=(-0.0108442 0.988311 -0.152063)} Vertex 5430 -0.08791 23.5752 0.71464 {normal=(0.0043337 0.994656 0.103153)} Vertex 5431 -0.087885 16.8705 3.88608 {normal=(-0.153687 -0.16772 0.973781)} Vertex 5432 -0.087231 13.8762 3.09614 {normal=(-0.0799765 -0.996797 0.000118898)} Vertex 5433 -0.085224 16.0889 3.8351 {normal=(-0.0941245 0.74653 0.65866)} Vertex 5434 -0.085085 14.925 4.04796 {normal=(-0.0793571 0.166559 0.982833)} Vertex 5435 -0.084779 16.0982 3.82943 {normal=(-0.138474 0.259047 0.955887)} Vertex 5436 -0.083933 18.3872 4.87702 {normal=(-0.0803824 0.227123 0.970543)} Vertex 5437 -0.08358 14.7717 4.05721 {normal=(-0.0364391 -0.0252737 0.999016)} Vertex 5438 -0.083346 16.252 3.83459 {normal=(-0.134784 -0.0461743 0.989799)} Vertex 5439 -0.082822 18.2748 4.88873 {normal=(-0.0881072 0.0384756 0.995368)} Vertex 5440 -0.082636 18.4812 4.84061 {normal=(-0.0787697 0.502065 0.861235)} Vertex 5441 -0.082436 16.7566 3.86775 {normal=(-0.132607 -0.111867 0.984836)} Vertex 5442 -0.080921 16.5504 3.85059 {normal=(-0.126778 -0.0684123 0.989569)} Vertex 5443 -0.080532 18.1606 4.8885 {normal=(-0.0970605 -0.0600985 0.993462)} Vertex 5444 -0.078931 18.5565 4.77948 {normal=(-0.0797365 0.632633 0.770336)} Vertex 5445 -0.078149 18.9282 2.91674 {normal=(0.715618 -0.275591 0.641826)} Vertex 5446 -0.078146 19.6911 2.91673 {normal=(0.715637 0.275585 0.641807)} Vertex 5447 -0.077262 14.603 4.02773 {normal=(0.022571 -0.243036 0.969755)} Vertex 5448 -0.077068 18.0448 4.87633 {normal=(-0.096261 -0.3338 0.937716)} Vertex 5449 -0.07581 -13.0023 0.423076 Vertex 5450 -0.075226 18.6319 4.71835 {normal=(-0.083347 0.63262 0.769964)} Vertex 5451 -0.071521 18.7072 4.65723 {normal=(-0.090252 0.616971 0.781794)} Vertex 5452 -0.068115 13.8962 3.2849 {normal=(-0.0786603 -0.96191 0.261804)} Vertex 5453 -0.067184 17.9241 4.79846 {normal=(-0.0871774 -0.656775 0.749031)} Vertex 5454 -0.066905 18.8075 4.58318 {normal=(-0.103759 0.588881 0.801532)} Vertex 5455 -0.066132 14.4188 3.95951 {normal=(0.0571394 -0.487104 0.871473)} Vertex 5456 -0.064168 19.9308 2.52723 {normal=(-0.817498 0.448423 0.361404)} Vertex 5457 -0.064161 18.6885 2.52726 {normal=(-0.817489 -0.448424 0.361425)} Vertex 5458 -0.06329 21.0583 3.6331 {normal=(0.0830507 0.502331 0.860678)} Vertex 5459 -0.061378 18.9327 4.49621 {normal=(-0.120661 0.583078 0.803406)} Vertex 5460 -0.056969 19.0652 4.40025 {normal=(-0.135103 0.593939 0.793085)} Vertex 5461 -0.056807 13.9685 3.43977 {normal=(-0.0270627 -0.886116 0.462673)} Vertex 5462 -0.055784 20.6489 3.87302 {normal=(0.018559 0.45281 0.891414)} Vertex 5463 -0.054012 19.5418 3.99787 {normal=(-0.191721 0.420109 0.88699)} Vertex 5464 -0.053677 19.2049 4.29528 {normal=(-0.144572 0.619835 0.7713)} Vertex 5465 -0.052692 19.3638 4.16116 {normal=(-0.153904 0.654541 0.740196)} Vertex 5466 -0.050881 17.7985 4.65489 {normal=(-0.0976218 -0.741448 0.663871)} Vertex 5467 -0.04822 20.3607 4.0042 {normal=(-0.00892763 0.283178 0.959026)} Vertex 5468 -0.048069 17.3499 4.35206 {normal=(-0.00605682 -0.169625 0.98549)} Vertex 5469 -0.046626 19.7168 2.74059 {normal=(-0.805218 0.294009 0.514959)} Vertex 5470 -0.046622 18.9025 2.74061 {normal=(-0.805195 -0.294012 0.514993)} Vertex 5471 -0.046475 17.4633 4.37717 {normal=(-0.065863 -0.323046 0.944089)} Vertex 5472 -0.044941 17.574 4.43807 {normal=(-0.126591 -0.564686 0.815539)} Vertex 5473 -0.044777 18.5054 2.50049 {normal=(0.738828 -0.580627 0.34206)} Vertex 5474 -0.044768 20.1139 2.50045 {normal=(0.738827 0.580607 0.342097)} Vertex 5475 -0.044695 21.4291 3.40616 {normal=(0.121667 0.510058 0.851492)} Vertex 5476 -0.044695 21.9459 3.09546 {normal=(0.0164096 0.554023 0.83234)} Vertex 5477 -0.043467 17.6818 4.53476 {normal=(-0.124629 -0.694138 0.708971)} Vertex 5478 -0.040595 20.1937 4.02663 {normal=(0.0197306 0.0581923 0.99811)} Vertex 5479 -0.034242 19.1166 2.92754 {normal=(0.747354 -0.139469 0.649623)} Vertex 5480 -0.034239 19.5027 2.92753 {normal=(0.747366 0.139499 0.649603)} Vertex 5481 -0.032577 17.1284 4.32783 {normal=(-0.0228198 -0.827099 0.561593)} Vertex 5482 -0.032577 17.2503 4.33577 {normal=(0.0204888 -0.105763 0.99418)} Vertex 5483 -0.030207 18.7115 2.72173 {normal=(0.74971 -0.431936 0.501364)} Vertex 5484 -0.0302 19.9078 2.7217 {normal=(0.749719 0.431974 0.501318)} Vertex 5485 -0.024522 19.7975 3.96782 {normal=(-0.000724807 -0.0950745 0.99547)} Vertex 5486 -0.024522 20.0332 4.01934 {normal=(0.05268 -0.121442 0.9912)} Vertex 5487 -0.020366 20.1239 2.2933 {normal=(-0.76449 0.585962 0.268707)} Vertex 5488 -0.020357 18.4954 2.29334 {normal=(-0.764442 -0.586001 0.268758)} Vertex 5489 -0.019484 19.3097 2.93116 {normal=(0.758021 3.63537e-05 0.65223)} Vertex 5490 0 -13.2231 -2.00432 Vertex 5491 0 -13.0514 -4.14164 Vertex 5492 0 -12.7555 0.184287 Vertex 5493 0 -11.8938 2.15542 Vertex 5494 0 -11.7856 -5.46618 Vertex 5495 0 -11.3829 2.9253 Vertex 5496 0 -10.3873 -5.9477 {normal=(-5.70278e-09 -0.0508035 -0.998709)} Vertex 5497 0 -9.73968 3.77928 {normal=(4.24299e-09 -0.273082 0.961991)} Vertex 5498 0 -7.49681 -5.86605 {normal=(6.02588e-10 0.209797 -0.977745)} Vertex 5499 0 -6.55576 4.09214 {normal=(4.75136e-09 -0.0498565 0.998756)} Vertex 5500 0 -3.67003 4.33465 Vertex 5501 0 -3.67003 4.0128 Vertex 5502 0 -3.66993 -4.4091 Vertex 5503 0 -3.66992 -4.73393 Vertex 5504 0 -2.25203 4.33467 Vertex 5505 0 -2.25203 4.01283 Vertex 5506 0 -2.25193 -4.40908 Vertex 5507 0 -2.25192 -4.73391 Vertex 5508 0 -0.834032 4.3285 Vertex 5509 0 -0.834028 4.01285 Vertex 5510 0 -0.833925 -4.40906 Vertex 5511 0 -0.833921 -4.72918 Vertex 5512 0 0.583966 4.32852 Vertex 5513 0 0.583971 4.01287 Vertex 5514 0 0.584074 -4.40904 Vertex 5515 0 0.584078 -4.72916 Vertex 5516 0 0.703731 -5.05308 Vertex 5517 0 0.721301 4.74723 Vertex 5518 0 1.39494 -5.30325 {normal=(-2.39753e-09 -0.293384 -0.955995)} Vertex 5519 0 1.41114 5.06045 {normal=(-1.19664e-09 -0.257517 0.966274)} Vertex 5520 0 2.31433 5.22469 {normal=(3.63158e-09 0.0152907 0.999883)} Vertex 5521 0 2.37276 -5.47608 {normal=(0 -0.0526228 -0.998614)} Vertex 5522 0 3.45529 -5.50295 {normal=(-1.18677e-09 0.0331238 -0.999451)} Vertex 5523 0 3.55283 5.01156 {normal=(1.18774e-09 0.155526 0.987832)} Vertex 5524 0 4.53781 -5.52982 Vertex 5525 0 4.72949 -5.74467 {normal=(-2.6814e-09 -0.379263 -0.925289)} Vertex 5526 0 4.79133 4.79843 Vertex 5527 0 4.98491 4.9385 {normal=(3.10229e-10 -0.28161 0.959529)} Vertex 5528 0 5.38226 -5.69874 {normal=(-2.38113e-09 -0.0786925 -0.996899)} Vertex 5529 0 5.58705 4.93805 {normal=(2.96473e-10 0.0112021 0.999937)} Vertex 5530 0 6.32359 4.93752 Vertex 5531 0 6.47282 5.06542 Vertex 5532 0 6.73449 5.01656 Vertex 5533 0 6.78313 4.54561 Vertex 5534 0 6.83189 4.84103 Vertex 5535 0 7.82099 4.60024 Vertex 5536 0 8.04785 -6.21318 {normal=(-1.20953e-09 -0.0239698 -0.999713)} Vertex 5537 0 10.0236 3.24507 Vertex 5538 0 10.0753 2.95122 Vertex 5539 0 11.1452 -5.72641 {normal=(7.45338e-10 0.241907 -0.970299)} Vertex 5540 0 11.5285 1.6681 Vertex 5541 0 11.8018 0.889561 {normal=(-7.66382e-10 0.943784 0.330564)} Vertex 5542 0 11.8225 2.11012 Vertex 5543 0 12.1175 -0.013817 {normal=(6.7671e-10 0.94448 0.32857)} Vertex 5544 0 12.6615 -5.16946 {normal=(1.45029e-09 0.309452 -0.950915)} Vertex 5545 0 12.6895 -1.66554 {normal=(1.74302e-09 0.945494 0.325641)} Vertex 5546 0 12.8945 -4.37406 Vertex 5547 0 12.9177 -5.09135 Vertex 5548 0 13.1562 -4.85618 Vertex 5549 0 13.1698 -4.59738 Vertex 5550 0 13.2844 -3.40235 Vertex 5551 0 14.0406 -3.75157 Vertex 5552 0 22.1597 -3.69346 {normal=(0 0.53701 -0.843576)} Vertex 5553 0 22.199 -3.51378 {normal=(0.00267716 -0.42919 -0.90321)} Vertex 5554 0.019484 19.3097 2.93116 {normal=(-0.758021 3.63513e-05 0.65223)} Vertex 5555 0.020357 18.4954 2.29334 {normal=(0.764442 -0.586001 0.268758)} Vertex 5556 0.020366 20.1239 2.2933 {normal=(0.76449 0.585962 0.268707)} Vertex 5557 0.024522 19.7975 3.96782 {normal=(0.107975 -0.0963041 0.989478)} Vertex 5558 0.024522 20.0332 4.01934 {normal=(-0.05268 -0.121442 0.9912)} Vertex 5559 0.0302 19.9078 2.7217 {normal=(-0.749719 0.431974 0.501318)} Vertex 5560 0.030207 18.7115 2.72173 {normal=(-0.74971 -0.431936 0.501364)} Vertex 5561 0.032012 11.9635 -0.538888 {normal=(0.000134243 -0.902395 -0.43091)} Vertex 5562 0.032577 17.1284 4.32783 {normal=(0.0228198 -0.827099 0.561593)} Vertex 5563 0.032577 17.2503 4.33577 {normal=(-0.0204888 -0.105763 0.99418)} Vertex 5564 0.034239 19.5027 2.92753 {normal=(-0.747366 0.139499 0.649603)} Vertex 5565 0.034242 19.1166 2.92754 {normal=(-0.747354 -0.139469 0.649623)} Vertex 5566 0.040595 20.1937 4.02663 {normal=(-0.0197306 0.0581923 0.99811)} Vertex 5567 0.043013 13.1548 -2.50719 {normal=(-3.4547e-05 -0.789676 -0.613524)} Vertex 5568 0.043467 17.6818 4.53476 {normal=(0.124629 -0.694138 0.708971)} Vertex 5569 0.044695 21.4291 3.40616 {normal=(-0.121667 0.510058 0.851492)} Vertex 5570 0.044695 21.9459 3.09546 {normal=(-0.0323312 0.554082 0.831834)} Vertex 5571 0.044768 20.1139 2.50045 {normal=(-0.738827 0.580607 0.342097)} Vertex 5572 0.044777 18.5054 2.50049 {normal=(-0.738828 -0.580627 0.34206)} Vertex 5573 0.044941 17.574 4.43807 {normal=(0.126591 -0.564686 0.815539)} Vertex 5574 0.046475 17.4633 4.37717 {normal=(0.065863 -0.323046 0.944089)} Vertex 5575 0.046622 18.9025 2.74061 {normal=(0.805195 -0.294012 0.514993)} Vertex 5576 0.046626 19.7168 2.74059 {normal=(0.805218 0.294009 0.514959)} Vertex 5577 0.048069 17.3499 4.35206 {normal=(0.00605682 -0.169625 0.98549)} Vertex 5578 0.04822 20.3607 4.0042 {normal=(0.00892762 0.283178 0.959026)} Vertex 5579 0.050881 17.7985 4.65489 {normal=(0.0976217 -0.741448 0.663871)} Vertex 5580 0.052692 19.3638 4.16116 {normal=(0.153904 0.65454 0.740196)} Vertex 5581 0.053677 19.2049 4.29528 {normal=(0.144572 0.619835 0.7713)} Vertex 5582 0.054012 19.5418 3.99787 {normal=(0.136248 0.42432 0.895203)} Vertex 5583 0.055784 20.6489 3.87302 {normal=(-0.018559 0.45281 0.891414)} Vertex 5584 0.056807 13.9685 3.43977 {normal=(0.0270627 -0.886116 0.462673)} Vertex 5585 0.056969 19.0652 4.40025 {normal=(0.135103 0.593939 0.793085)} Vertex 5586 0.061378 18.9327 4.49621 {normal=(0.120661 0.583078 0.803406)} Vertex 5587 0.06329 21.0583 3.6331 {normal=(-0.0830507 0.502331 0.860678)} Vertex 5588 0.064161 18.6885 2.52726 {normal=(0.817489 -0.448424 0.361425)} Vertex 5589 0.064168 19.9308 2.52723 {normal=(0.817498 0.448423 0.361404)} Vertex 5590 0.066132 14.4188 3.95951 {normal=(-0.0571322 -0.487106 0.871472)} Vertex 5591 0.066905 18.8075 4.58318 {normal=(0.103759 0.588881 0.801532)} Vertex 5592 0.067184 17.9241 4.79846 {normal=(0.0871774 -0.656775 0.749031)} Vertex 5593 0.068115 13.8962 3.2849 {normal=(0.0792629 -0.96224 0.260406)} Vertex 5594 0.071521 18.7072 4.65723 {normal=(0.090252 0.616971 0.781794)} Vertex 5595 0.075226 18.6319 4.71835 {normal=(0.083347 0.63262 0.769964)} Vertex 5596 0.07581 -13.0023 0.423076 Vertex 5597 0.077068 18.0448 4.87633 {normal=(0.0962611 -0.3338 0.937716)} Vertex 5598 0.077262 14.603 4.02773 {normal=(-0.022571 -0.243036 0.969755)} Vertex 5599 0.077585 13.8762 3.09614 {normal=(0.0771895 -0.997011 -0.00331834)} Vertex 5600 0.078146 19.6911 2.91673 {normal=(-0.715637 0.275585 0.641807)} Vertex 5601 0.078149 18.9282 2.91674 {normal=(-0.715618 -0.275591 0.641826)} Vertex 5602 0.078931 18.5565 4.77948 {normal=(0.0797365 0.632633 0.770336)} Vertex 5603 0.080532 18.1606 4.8885 {normal=(0.0970605 -0.0600985 0.993462)} Vertex 5604 0.080921 16.5504 3.85059 {normal=(0.126778 -0.0684123 0.989569)} Vertex 5605 0.082436 16.7566 3.86775 {normal=(0.132607 -0.111867 0.984836)} Vertex 5606 0.082636 18.4812 4.84061 {normal=(0.0787697 0.502065 0.861235)} Vertex 5607 0.082822 18.2748 4.88873 {normal=(0.0881072 0.0384756 0.995368)} Vertex 5608 0.083346 16.252 3.83459 {normal=(0.134784 -0.0461743 0.989799)} Vertex 5609 0.08358 14.7717 4.05721 {normal=(0.0364391 -0.0252737 0.999016)} Vertex 5610 0.083933 18.3872 4.87702 {normal=(0.0803824 0.227123 0.970543)} Vertex 5611 0.084779 16.0982 3.82943 {normal=(0.138474 0.259047 0.955887)} Vertex 5612 0.085085 14.925 4.04796 {normal=(0.0793571 0.166559 0.982833)} Vertex 5613 0.085219 13.9085 2.87349 {normal=(0.0486389 -0.986235 -0.158036)} Vertex 5614 0.085224 16.0889 3.8351 {normal=(0.0941245 0.74653 0.65866)} Vertex 5615 0.087885 16.8705 3.88608 {normal=(0.153687 -0.16772 0.973781)} Vertex 5616 0.08791 23.5403 -0.381542 {normal=(0.00707539 0.987702 -0.156185)} Vertex 5617 0.08791 23.5752 0.71464 {normal=(-0.0043337 0.994656 0.103153)} Vertex 5618 0.088682 15.0603 4.01337 {normal=(0.0774228 0.332405 0.939954)} Vertex 5619 0.090813 16.9314 3.89908 {normal=(0.183356 -0.458089 0.86979)} Vertex 5620 0.09101 16.0466 3.91863 {normal=(0.0616062 0.899538 0.432477)} Vertex 5621 0.091217 16.9392 3.90675 {normal=(0.153638 -0.869367 0.469676)} Vertex 5622 0.093489 19.1035 2.75213 {normal=(0.83904 -0.148836 0.523316)} Vertex 5623 0.093492 19.5157 2.75212 {normal=(0.839055 0.148816 0.523298)} Vertex 5624 0.094368 15.1776 3.95345 {normal=(0.0484866 0.375948 0.925371)} Vertex 5625 0.094949 15.2805 3.93096 {normal=(0.054973 -0.383452 0.921923)} Vertex 5626 0.094994 19.7465 3.94706 {normal=(0.194506 -0.0406771 0.980058)} Vertex 5627 0.095465 13.9521 2.65753 {normal=(0.0372438 -0.974147 -0.222822)} Vertex 5628 0.096459 15.251 3.92598 {normal=(0.0421655 0.0915905 0.994904)} Vertex 5629 0.098088 20.0237 4.02734 {normal=(0.00690231 -0.135982 0.990687)} Vertex 5630 0.100218 15.3714 3.9976 {normal=(0.060791 -0.620394 0.781931)} Vertex 5631 0.101492 16.9625 3.99833 {normal=(0.118262 -0.970053 0.212161)} Vertex 5632 0.10214 15.9713 4.08003 {normal=(0.0653891 0.885746 0.459541)} Vertex 5633 0.107801 14.3651 1.46917 {normal=(0.041468 -0.912285 -0.407451)} Vertex 5634 0.108326 14.0071 2.44827 {normal=(0.0374507 -0.961952 -0.270639)} Vertex 5635 0.108519 15.9198 4.16946 {normal=(0.0910709 0.712865 0.695363)} Vertex 5636 0.109242 19.3096 2.75599 {normal=(0.850422 -3.70305e-06 0.526101)} Vertex 5637 0.110146 15.892 4.18693 {normal=(0.115425 0.315368 0.941924)} Vertex 5638 0.110757 14.1041 3.65393 {normal=(-0.0447626 -0.816085 0.576196)} Vertex 5639 0.111972 14.2826 1.66321 {normal=(0.0425923 -0.924996 -0.377583)} Vertex 5640 0.112265 15.5238 4.12591 {normal=(0.0759854 -0.524359 0.8481)} Vertex 5641 0.11278 14.4485 1.29495 {normal=(0.0569402 -0.959228 0.276839)} Vertex 5642 0.112793 15.8086 4.19426 {normal=(0.120141 0.0353088 0.992129)} Vertex 5643 0.113747 16.1175 -4.15826 {normal=(0.0295369 -0.55 -0.834642)} Vertex 5644 0.113747 16.7534 -4.51734 Vertex 5645 0.11404 15.6444 -5.83645 {normal=(-0.0423991 -0.954379 0.295572)} Vertex 5646 0.114198 14.2209 3.80199 {normal=(-0.0722371 -0.717702 0.692593)} Vertex 5647 0.116457 15.6695 4.19146 {normal=(0.10812 -0.206729 0.972406)} Vertex 5648 0.116727 20.2892 2.25959 {normal=(-0.665817 0.704906 0.244532)} Vertex 5649 0.116737 18.3301 2.25964 {normal=(-0.665822 -0.704901 0.244532)} Vertex 5650 0.117367 15.7658 -5.6076 {normal=(-0.0645465 -0.876907 0.476306)} Vertex 5651 0.119054 14.0659 2.25372 {normal=(0.0373171 -0.950867 -0.307343)} Vertex 5652 0.121004 15.9179 -5.34565 {normal=(-0.0880293 -0.858247 0.505631)} Vertex 5653 0.121278 14.1836 1.12725 {normal=(0.0406249 -0.394581 0.917963)} Vertex 5654 0.121638 17.0012 4.17381 {normal=(0.115221 -0.962646 0.245024)} Vertex 5655 0.121785 20.1831 4.03133 {normal=(0.049721 0.0548558 0.997256)} Vertex 5656 0.123677 15.8444 -6.06348 {normal=(0.00524936 0.180267 -0.983604)} Vertex 5657 0.124951 16.1006 -5.05061 {normal=(-0.103725 -0.734752 0.670358)} Vertex 5658 0.12529 14.201 1.87705 {normal=(0.0388974 -0.933919 -0.355362)} Vertex 5659 0.126317 22.751 2.50808 {normal=(0.0579576 0.717947 0.69368)} Vertex 5660 0.12723 22.4474 2.7444 {normal=(0.0466818 0.603723 0.795826)} Vertex 5661 0.127362 23.074 2.06086 {normal=(0.0483608 0.847236 0.52901)} Vertex 5662 0.127651 14.1288 2.07389 {normal=(0.0366825 -0.940798 -0.336977)} Vertex 5663 0.130308 17.2634 4.34226 {normal=(0.0723896 -0.140729 0.987398)} Vertex 5664 0.130364 23.4167 1.40274 {normal=(0.0233399 0.934893 0.354163)} Vertex 5665 0.1304 17.6954 4.51566 {normal=(0.431026 -0.661011 0.614233)} Vertex 5666 0.130653 18.6807 2.32045 {normal=(0.843837 -0.452596 0.288263)} Vertex 5667 0.130659 19.9385 2.32042 {normal=(0.843891 0.45253 0.288209)} Vertex 5668 0.132241 17.0328 4.27201 {normal=(0.118964 -0.834114 0.538611)} Vertex 5669 0.132982 16.0899 -5.9755 {normal=(0.018468 0.358008 -0.933536)} Vertex 5670 0.133295 13.5705 0.966079 {normal=(0.0347322 -0.268788 0.962573)} Vertex 5671 0.133302 17.0572 4.29293 {normal=(0.092698 -0.472111 0.876652)} Vertex 5672 0.134823 17.6007 4.42515 {normal=(0.435518 -0.478822 0.762269)} Vertex 5673 0.135096 20.084 2.6959 {normal=(-0.673981 0.55923 0.482713)} Vertex 5674 0.135105 18.5352 2.69595 {normal=(-0.673943 -0.559234 0.482761)} Vertex 5675 0.137849 16.3845 -4.83563 {normal=(-0.0868112 -0.457124 0.885156)} Vertex 5676 0.139425 17.4915 4.37142 {normal=(0.272224 -0.237058 0.932576)} Vertex 5677 0.142902 16.3723 -5.8616 {normal=(0.0251507 0.389208 -0.920806)} Vertex 5678 0.143949 18.8868 2.54687 {normal=(0.875073 -0.30526 0.375584)} Vertex 5679 0.143953 19.7324 2.54685 {normal=(0.875093 0.30523 0.375563)} Vertex 5680 0.144205 17.368 4.35447 {normal=(0.124477 -0.115507 0.985476)} Vertex 5681 0.144657 20.348 4.00229 {normal=(0.0756165 0.272232 0.959256)} Vertex 5682 0.148166 13.0541 0.812668 {normal=(0.0348447 -0.305021 0.951708)} Vertex 5683 0.150121 19.87 2.89903 {normal=(-0.663629 0.404899 0.62901)} Vertex 5684 0.150128 18.7493 2.89906 {normal=(-0.663589 -0.404876 0.629067)} Vertex 5685 0.150836 15.6232 -5.99561 Vertex 5686 0.152643 17.8041 4.63032 {normal=(0.339338 -0.740875 0.579615)} Vertex 5687 0.153438 16.6918 -5.72178 {normal=(0.0298101 0.366191 -0.930062)} Vertex 5688 0.153808 15.6826 -6.06314 Vertex 5689 0.155535 23.3246 -5.72994 {normal=(-0.00553141 -0.1199 -0.992771)} Vertex 5690 0.158075 19.3417 4.13555 {normal=(0.407998 0.606242 0.682648)} Vertex 5691 0.159347 16.9508 -5.63151 {normal=(0.0322293 0.268354 -0.962781)} Vertex 5692 0.159584 23.8678 -5.34936 {normal=(0.0126455 0.878429 -0.477706)} Vertex 5693 0.159697 16.7695 -4.7007 Vertex 5694 0.160632 17.1493 -5.59079 {normal=(0.0368165 0.246452 -0.968455)} Vertex 5695 0.161031 19.185 4.26999 {normal=(0.407237 0.579321 0.706077)} Vertex 5696 0.161365 17.7839 -5.4031 {normal=(0.0395628 0.290672 -0.956004)} Vertex 5697 0.161548 18.8546 -5.06843 {normal=(0.0390511 0.226701 -0.973181)} Vertex 5698 0.162038 19.5175 3.9699 {normal=(0.344366 0.388039 0.85489)} Vertex 5699 0.165889 12.6342 0.667011 {normal=(0.0341583 -0.331846 0.942715)} Vertex 5700 0.166223 22.1791 -3.5192 Vertex 5701 0.167353 20.648 3.87423 {normal=(0.0184236 0.43669 0.899423)} Vertex 5702 0.168367 17.1338 4.31108 {normal=(0.133591 -0.253947 0.957948)} Vertex 5703 0.169032 16.6866 -2.82621 {normal=(0.0851494 0.21181 -0.973594)} Vertex 5704 0.170421 13.9828 3.45791 {normal=(0.104211 -0.901186 0.420718)} Vertex 5705 0.170693 22.134 -3.70982 {normal=(0.094054 0.82282 -0.560465)} Vertex 5706 0.170906 19.0474 4.37324 {normal=(0.407218 0.56159 0.720271)} Vertex 5707 0.171426 22.3225 -3.57976 {normal=(-0.0068336 -0.613513 -0.789655)} Vertex 5708 0.17384 22.0545 3.02744 {normal=(0.0258077 0.576183 0.816913)} Vertex 5709 0.174026 19.3097 3.08403 {normal=(-0.647053 3.69173e-05 0.762445)} Vertex 5710 0.174099 -15.6627 -1.30384 Vertex 5711 0.174173 22.9195 -3.1354 {normal=(0.0386822 0.823913 0.565394)} Vertex 5712 0.175634 19.9779 4.00873 {normal=(0.131626 -0.205898 0.969681)} Vertex 5713 0.176147 17.0948 -2.75351 {normal=(0.0749239 0.0510346 -0.995883)} Vertex 5714 0.178783 21.4665 3.42663 {normal=(-0.0975487 0.512363 0.853211)} Vertex 5715 0.178855 12.2233 0.518614 {normal=(0.0323859 -0.344232 0.938326)} Vertex 5716 0.180172 20.2771 2.46715 {normal=(-0.641095 0.698442 0.318081)} Vertex 5717 0.180183 18.3422 2.4672 {normal=(-0.641085 -0.698469 0.318043)} Vertex 5718 0.182192 -17.8652 -2.04799 Vertex 5719 0.18238 19.7123 -4.93236 {normal=(0.0429436 0.0287825 -0.998663)} Vertex 5720 0.182751 23.1584 -3.45014 {normal=(0.0184957 0.719687 0.694052)} Vertex 5721 0.184135 18.9206 4.46679 {normal=(0.40932 0.556182 0.723269)} Vertex 5722 0.184496 16.0735 -2.98738 {normal=(0.0954533 0.268578 -0.958517)} Vertex 5723 0.186303 22.5642 -3.89153 {normal=(-0.0181227 -0.895454 -0.444785)} Vertex 5724 0.187064 11.8213 0.367476 {normal=(0.0306895 -0.354306 0.934626)} Vertex 5725 0.187425 19.485 3.08073 {normal=(-0.637367 0.126792 0.760057)} Vertex 5726 0.187426 19.1343 3.08074 {normal=(-0.637364 -0.126759 0.760065)} Vertex 5727 0.189266 17.7238 4.47951 {normal=(0.769239 -0.516669 0.375932)} Vertex 5728 0.18987 21.0829 3.64715 {normal=(-0.0629707 0.489036 0.869988)} Vertex 5729 0.190234 -17.6897 -2.59716 Vertex 5730 0.190847 21.7535 -4.1104 {normal=(0.0793972 0.683575 -0.725549)} Vertex 5731 0.191168 11.5898 0.274548 Vertex 5732 0.191168 11.6101 0.286121 {normal=(0.0316037 -0.428676 0.902905)} Vertex 5733 0.191632 14.0847 3.64455 {normal=(-0.0153913 -0.845998 0.532964)} Vertex 5734 0.192621 19.0956 2.55883 {normal=(0.910215 -0.154519 0.38423)} Vertex 5735 0.192624 19.5237 2.55882 {normal=(0.910213 0.154543 0.384225)} Vertex 5736 0.195338 23.4152 -3.67074 {normal=(-0.0238149 0.519933 0.853875)} Vertex 5737 0.195413 15.5571 -3.14079 {normal=(0.101719 0.305257 -0.946822)} Vertex 5738 0.196986 17.6545 4.38876 {normal=(0.783303 -0.240634 0.573178)} Vertex 5739 0.197638 22.6537 -4.22038 {normal=(-0.0293054 -0.998568 -0.044751)} Vertex 5740 0.198399 14.4006 3.96665 {normal=(-0.0384837 -0.483625 0.874429)} Vertex 5741 0.200598 -13.3633 -1.00287 Vertex 5742 0.200713 18.8044 4.55065 {normal=(0.415238 0.564528 0.713362)} Vertex 5743 0.201551 17.9267 4.76913 {normal=(0.337061 -0.661905 0.669531)} Vertex 5744 0.204344 13.9245 3.28341 {normal=(0.217695 -0.945053 0.243895)} Vertex 5745 0.20543 22.5908 -4.56631 {normal=(-0.0212782 -0.998056 0.0585833)} Vertex 5746 0.208779 14.235 3.83775 {normal=(-0.0577142 -0.688345 0.723084)} Vertex 5747 0.208981 19.3096 2.56285 {normal=(0.922021 -5.11644e-06 0.387139)} Vertex 5748 0.210194 23.5602 -5.69608 {normal=(-0.0125703 0.400841 -0.916061)} Vertex 5749 0.210528 15.1373 -3.28645 {normal=(0.106393 0.336041 -0.935819)} Vertex 5750 0.211039 23.6941 -5.59144 {normal=(0.0146003 0.727624 -0.685821)} Vertex 5751 0.21129 22.8124 -2.9588 Vertex 5752 0.211415 19.7262 3.92006 {normal=(0.196443 -0.0731389 0.977784)} Vertex 5753 0.211435 18.8816 2.34031 {normal=(0.901987 -0.308049 0.302532)} Vertex 5754 0.21144 19.7377 2.34028 {normal=(0.901981 0.308077 0.30252)} Vertex 5755 0.211637 17.2982 -2.76926 Vertex 5756 0.211934 23.69 -3.79719 {normal=(-0.0484605 0.542721 0.838514)} Vertex 5757 0.212275 -15.5639 -1.88101 Vertex 5758 0.214562 18.7065 4.62492 {normal=(0.409721 0.59422 0.692121)} Vertex 5759 0.21505 17.8128 4.58411 {normal=(0.665791 -0.660752 0.346596)} Vertex 5760 0.215585 23.0553 -5.63636 {normal=(0.0303346 -0.45524 -0.889852)} Vertex 5761 0.217768 23.9941 -5.02929 {normal=(0.0161301 0.947811 -0.318425)} Vertex 5762 0.220061 17.7669 4.4263 {normal=(0.933009 -0.324042 0.156495)} Vertex 5763 0.221568 22.604 -4.88282 {normal=(-0.0031393 -0.984471 -0.175518)} Vertex 5764 0.22386 20.3572 -4.9949 {normal=(0.0768208 0.156634 -0.984665)} Vertex 5765 0.224847 20.1765 4.02142 {normal=(0.174711 0.0527838 0.983204)} Vertex 5766 0.225677 18.6268 4.68959 {normal=(0.397326 0.612548 0.683314)} Vertex 5767 0.226132 14.7263 -3.43485 {normal=(0.104532 0.348695 -0.931389)} Vertex 5768 0.226682 21.0376 -4.72091 {normal=(0.0971817 0.516999 -0.850451)} Vertex 5769 0.227291 19.656 3.07092 {normal=(-0.608552 0.250426 0.752962)} Vertex 5770 0.227295 18.9633 3.07094 {normal=(-0.608507 -0.250449 0.752991)} Vertex 5771 0.230971 23.9014 -3.98638 {normal=(-0.0351712 0.778789 0.6263)} Vertex 5772 0.231202 18.043 4.84419 {normal=(0.394456 -0.351705 0.848945)} Vertex 5773 0.231432 17.7355 4.32891 {normal=(0.913855 -0.055152 0.402278)} Vertex 5774 0.231785 14.5695 4.03046 {normal=(0.0620956 -0.235217 0.969957)} Vertex 5775 0.231893 17.8328 4.34466 {normal=(0.983015 -0.118531 0.140117)} Vertex 5776 0.232341 16.8277 -2.95079 {normal=(-0.105557 -0.32587 0.939503)} Vertex 5777 0.232918 17.8011 4.39853 {normal=(0.979556 -0.198081 0.0351186)} Vertex 5778 0.236595 15.6833 -3.29809 {normal=(-0.0991071 -0.423181 0.900608)} Vertex 5779 0.236794 18.5471 4.75427 {normal=(0.38787 0.614279 0.687181)} Vertex 5780 0.237438 17.2624 4.32645 {normal=(0.180947 -0.134365 0.974271)} Vertex 5781 0.237774 14.3243 -3.58599 {normal=(0.100533 0.358824 -0.927976)} Vertex 5782 0.2381 17.8247 4.51626 {normal=(0.864117 -0.494192 0.0952667)} Vertex 5783 0.241599 18.153 4.85547 {normal=(0.414831 -0.0887691 0.905558)} Vertex 5784 0.242632 20.3426 3.98513 {normal=(0.205286 0.274349 0.939463)} Vertex 5785 0.242765 16.5544 3.81041 {normal=(0.271614 -0.0697324 0.959877)} Vertex 5786 0.243218 17.8661 4.37536 {normal=(0.918778 -0.393721 -0.0288376)} Vertex 5787 0.243594 14.0928 -3.67892 Vertex 5788 0.243594 14.1131 -3.66734 {normal=(0.107333 0.422629 -0.899925)} Vertex 5789 0.243734 15.2525 -3.57626 Vertex 5790 0.244248 19.4843 3.93855 {normal=(0.548286 0.305992 0.778301)} Vertex 5791 0.244833 19.3143 4.09115 {normal=(0.612466 0.524147 0.591739)} Vertex 5792 0.245617 13.9049 3.09444 {normal=(0.218287 -0.974726 0.0475407)} Vertex 5793 0.24605 22.6931 -5.1699 {normal=(0.00679315 -0.93893 -0.344042)} Vertex 5794 0.246113 17.7886 4.29781 {normal=(0.908202 0.0314646 0.417349)} Vertex 5795 0.247066 20.5742 3.8995 {normal=(0.214319 0.378112 0.90061)} Vertex 5796 0.247304 16.7688 3.82521 {normal=(0.282426 -0.0827348 0.955715)} Vertex 5797 0.247489 17.8424 4.44667 {normal=(0.91732 -0.393966 -0.0575692)} Vertex 5798 0.247909 18.4674 4.81895 {normal=(0.393142 0.475972 0.786696)} Vertex 5799 0.248395 20.0352 2.87486 {normal=(-0.592604 0.524246 0.611545)} Vertex 5800 0.248401 18.5842 2.8749 {normal=(-0.592586 -0.524154 0.611641)} Vertex 5801 0.248464 18.2629 4.85866 {normal=(0.407315 -0.00282458 0.913283)} Vertex 5802 0.248781 22.8749 -5.52053 {normal=(0.0367949 -0.697929 -0.715221)} Vertex 5803 0.250038 16.2541 3.7878 {normal=(0.289556 -0.0568164 0.955473)} Vertex 5804 0.250737 14.741 4.04721 {normal=(0.157763 0.00856453 0.98744)} Vertex 5805 0.250943 24.0738 -4.74302 {normal=(0.0203695 0.98063 -0.194809)} Vertex 5806 0.2518 18.3727 4.85374 {normal=(0.401422 0.189649 0.896043)} Vertex 5807 0.252451 24.0495 -4.23832 {normal=(-0.00767036 0.934295 0.356417)} Vertex 5808 0.253399 19.16 4.21632 {normal=(0.627534 0.504223 0.593263)} Vertex 5809 0.253763 15.535 -3.78528 {normal=(0.0457311 -0.563976 -0.824524)} Vertex 5810 0.25434 16.0993 3.77913 {normal=(0.299177 0.236959 0.924307)} Vertex 5811 0.254476 17.5327 4.33016 {normal=(0.453173 0.0365042 0.890675)} Vertex 5812 0.255121 22.7834 -5.38247 {normal=(0.0174006 -0.877585 -0.479105)} Vertex 5813 0.255256 14.9151 4.0169 {normal=(0.213031 0.177868 0.960719)} Vertex 5814 0.255671 16.09 3.78441 {normal=(0.218366 0.72416 0.654148)} Vertex 5815 0.256735 -19.9197 -3.28034 Vertex 5816 0.257942 14.1038 3.68155 {normal=(0.0662992 -0.846819 0.527733)} Vertex 5817 0.259108 24.1069 -4.49053 {normal=(0.015451 0.998967 0.0427447)} Vertex 5818 0.2604 17.6465 4.30234 {normal=(0.661333 0.188154 0.726111)} Vertex 5819 0.260694 14.0093 3.48904 {normal=(0.22477 -0.899283 0.375192)} Vertex 5820 0.260715 19.0929 2.35241 {normal=(0.937441 -0.155968 0.311252)} Vertex 5821 0.260716 19.5263 2.3524 {normal=(0.937449 0.155949 0.311237)} Vertex 5822 0.262028 17.8645 4.28572 {normal=(0.885646 -0.275368 0.373904)} Vertex 5823 0.263658 16.8973 3.83218 {normal=(0.320676 -0.113208 0.940399)} Vertex 5824 0.265478 20.2413 2.66385 {normal=(-0.5798 0.672773 0.459575)} Vertex 5825 0.265489 18.378 2.6639 {normal=(-0.579759 -0.672789 0.459604)} Vertex 5826 0.266045 15.0656 3.97835 {normal=(0.191605 0.278594 0.941102)} Vertex 5827 0.266141 17.3954 4.33281 {normal=(0.257468 0.00123924 0.966286)} Vertex 5828 0.266146 21.5721 3.35719 {normal=(0.0501105 0.545935 0.836328)} Vertex 5829 0.266803 17.8924 4.2996 {normal=(0.854507 -0.464119 0.233263)} Vertex 5830 0.269086 -20.0511 -2.71263 Vertex 5831 0.269945 19.0216 4.31407 {normal=(0.652022 0.47677 0.58954)} Vertex 5832 0.270153 14.2029 3.8091 {normal=(0.0532324 -0.713348 0.698785)} Vertex 5833 0.27244 16.9655 3.8391 {normal=(0.364475 -0.40674 0.837688)} Vertex 5834 0.27303 16.0461 3.86748 {normal=(0.147226 0.893069 0.425149)} Vertex 5835 0.273651 16.9735 3.84597 {normal=(0.306771 -0.834633 0.45747)} Vertex 5836 0.274339 17.9216 4.70257 {normal=(0.586431 -0.681027 0.438521)} Vertex 5837 0.275008 17.9139 4.38759 {normal=(0.768387 -0.637049 -0.0612405)} Vertex 5838 0.276085 23.5288 -0.430094 {normal=(0.0558039 0.984233 -0.167841)} Vertex 5839 0.276249 17.8204 4.23887 {normal=(0.83168 -0.00905122 0.555181)} Vertex 5840 0.27709 21.022 3.67883 {normal=(0.074278 0.445068 0.892411)} Vertex 5841 0.277241 20.4304 2.22013 {normal=(-0.550222 0.806567 0.216115)} Vertex 5842 0.277254 18.1889 2.22019 {normal=(-0.550379 -0.806451 0.216148)} Vertex 5843 0.277277 19.3096 2.35648 {normal=(0.949363 -4.71912e-06 0.314181)} Vertex 5844 0.283106 15.1923 3.93154 {normal=(0.14024 0.289858 0.946739)} Vertex 5845 0.283912 17.7366 4.24936 {normal=(0.649597 0.228838 0.725022)} Vertex 5846 0.284849 15.3 3.9158 {normal=(0.140678 -0.384403 0.912384)} Vertex 5847 0.285549 17.9089 4.59877 {normal=(0.737538 -0.666801 0.10684)} Vertex 5848 0.285771 17.9063 4.49378 {normal=(0.770959 -0.635114 -0.0474642)} Vertex 5849 0.286676 18.8912 4.40108 {normal=(0.698334 0.438213 0.565949)} Vertex 5850 0.289375 15.2704 3.91069 {normal=(0.129985 0.0479271 0.990357)} Vertex 5851 0.2913 14.1545 3.75204 {normal=(0.0828002 -0.785027 0.613903)} Vertex 5852 0.292643 19.8185 3.05485 {normal=(-0.56127 0.367949 0.741343)} Vertex 5853 0.292648 18.8009 3.05488 {normal=(-0.561262 -0.367879 0.741384)} Vertex 5854 0.294104 22.8372 -2.92034 {normal=(0.160629 0.910003 -0.382222)} Vertex 5855 0.294238 13.9239 2.89099 {normal=(0.170092 -0.980499 -0.0984419)} Vertex 5856 0.295346 17.9322 4.29438 {normal=(0.742737 -0.652325 0.151044)} Vertex 5857 0.296136 14.3691 3.94341 {normal=(0.164603 -0.509652 0.844489)} Vertex 5858 0.298168 19.7263 3.9123 {normal=(0.168475 -0.220807 0.960656)} Vertex 5859 0.300641 19.4423 3.90384 {normal=(0.764379 0.230476 0.602167)} Vertex 5860 0.300656 15.3789 3.9714 {normal=(0.141798 -0.620099 0.771603)} Vertex 5861 0.303589 18.7688 4.47737 {normal=(0.750054 0.424017 0.507571)} Vertex 5862 0.304477 17.0018 3.94404 {normal=(0.22741 -0.955062 0.19011)} Vertex 5863 0.306205 19.9678 3.98603 {normal=(0.0693113 -0.211501 0.974917)} Vertex 5864 0.30642 15.9675 4.02834 {normal=(0.156582 0.880636 0.447171)} Vertex 5865 0.307932 17.8136 4.20609 {normal=(0.624946 0.172199 0.76144)} Vertex 5866 0.309822 19.643 3.88336 {normal=(0.514567 -0.206372 0.832245)} Vertex 5867 0.310998 22.8053 -2.59584 {normal=(0.148154 0.988959 -0.00322314)} Vertex 5868 0.311945 22.8104 -2.55897 {normal=(0.152585 0.944043 -0.292404)} Vertex 5869 0.312966 19.2816 4.02798 {normal=(0.776547 0.424091 0.465963)} Vertex 5870 0.313858 17.9472 4.38291 {normal=(0.4892 -0.868742 -0.0772721)} Vertex 5871 0.31677 22.8144 -2.68599 {normal=(0.131433 0.977008 0.167873)} Vertex 5872 0.31947 17.9528 4.29169 {normal=(0.559315 -0.826658 0.0616654)} Vertex 5873 0.320547 18.6688 4.54554 {normal=(0.767074 0.464723 0.442301)} Vertex 5874 0.321242 13.9695 3.30389 {normal=(0.342418 -0.905157 0.251876)} Vertex 5875 0.325558 15.9144 4.11704 {normal=(0.21317 0.710955 0.670151)} Vertex 5876 0.327627 14.0482 3.53314 {normal=(0.273096 -0.893323 0.356922)} Vertex 5877 0.329264 22.8378 -2.8294 {normal=(0.146391 0.985231 0.0888191)} Vertex 5878 0.329946 17.9445 4.48783 {normal=(0.457745 -0.888813 -0.021944)} Vertex 5879 0.33044 15.8865 4.13357 {normal=(0.26805 0.30628 0.913423)} Vertex 5880 0.330781 19.13 4.13428 {normal=(0.788013 0.409415 0.459798)} Vertex 5881 0.332622 22.9704 -2.19588 {normal=(0.117279 0.891508 -0.43756)} Vertex 5882 0.333865 20.5782 3.86313 {normal=(0.178865 0.379054 0.907924)} Vertex 5883 0.335094 13.9652 2.67394 {normal=(0.1414 -0.969999 -0.197757)} Vertex 5884 0.336796 15.5071 4.07752 {normal=(0.184851 -0.51721 0.835658)} Vertex 5885 0.33755 18.591 4.60559 {normal=(0.75603 0.498589 0.424061)} Vertex 5886 0.338378 15.7973 4.13902 {normal=(0.280049 0.0229543 0.959711)} Vertex 5887 0.338711 20.4166 2.42817 {normal=(-0.526534 0.799188 0.289932)} Vertex 5888 0.338723 18.2027 2.42823 {normal=(-0.526638 -0.799092 0.290008)} Vertex 5889 0.338771 17.9548 4.59181 {normal=(0.525722 -0.84094 0.128203)} Vertex 5890 0.339659 -13.4311 -1.57917 Vertex 5891 0.340328 17.9782 4.69487 {normal=(0.654747 -0.629099 0.418975)} Vertex 5892 0.342121 15.6298 -5.82381 {normal=(0.0774511 -0.950867 0.299754)} Vertex 5893 0.342142 20.3444 3.95272 {normal=(0.153664 0.295816 0.942804)} Vertex 5894 0.348628 18.0404 4.75027 {normal=(0.705777 -0.353475 0.61395)} Vertex 5895 0.349371 15.6466 4.13339 {normal=(0.259171 -0.203763 0.944093)} Vertex 5896 0.349781 20.1739 3.99692 {normal=(0.0638757 0.115023 0.991307)} Vertex 5897 0.35058 19.3097 3.21084 {normal=(-0.520207 3.69306e-05 0.85404)} Vertex 5898 0.351638 23.582 0.676545 {normal=(0.0373005 0.994829 0.0944651)} Vertex 5899 0.351679 21.1196 3.61823 {normal=(0.0468258 0.478883 0.876629)} Vertex 5900 0.352101 15.7421 -5.58711 {normal=(0.106512 -0.879936 0.462999)} Vertex 5901 0.35346 17.9279 4.16278 {normal=(0.678854 -0.307925 0.666588)} Vertex 5902 0.353528 15.6095 -5.9818 Vertex 5903 0.354087 18.9876 4.22274 {normal=(0.816622 0.364319 0.447661)} Vertex 5904 0.354552 18.5132 4.66564 {normal=(0.744945 0.504963 0.435969)} Vertex 5905 0.354842 -17.7762 -2.31877 Vertex 5906 0.355521 19.5894 3.8538 {normal=(0.562124 -0.250589 0.788176)} Vertex 5907 0.358233 17.9559 4.17665 {normal=(0.641393 -0.554773 0.529944)} Vertex 5908 0.359051 14.5304 3.99889 {normal=(0.287216 -0.275522 0.917385)} Vertex 5909 0.359343 14.3244 3.88978 {normal=(0.25946 -0.545042 0.797251)} Vertex 5910 0.359767 17.9661 4.36134 {normal=(0.114872 -0.988539 -0.0979558)} Vertex 5911 0.362291 19.4629 3.20796 {normal=(-0.511732 0.11093 0.851953)} Vertex 5912 0.362292 19.1564 3.20797 {normal=(-0.511721 -0.110909 0.851963)} Vertex 5913 0.363012 15.8846 -5.31692 {normal=(0.12089 -0.862835 0.490817)} Vertex 5914 0.363299 17.975 4.28883 {normal=(0.159363 -0.986264 -0.0434352)} Vertex 5915 0.363667 18.1413 4.75803 {normal=(0.761955 -0.12189 0.636056)} Vertex 5916 0.363696 14.397 1.45388 {normal=(0.0599621 -0.915408 -0.398037)} Vertex 5917 0.364914 17.0505 4.13331 {normal=(0.224785 -0.949234 0.220062)} Vertex 5918 0.364985 15.6862 -6.07089 Vertex 5919 0.366267 -15.6179 -1.5736 Vertex 5920 0.368187 14.029 2.4433 {normal=(0.132446 -0.957227 -0.257245)} Vertex 5921 0.368365 19.3787 3.81435 {normal=(0.883367 0.17422 0.435097)} Vertex 5922 0.369004 18.8445 4.2991 {normal=(0.859676 0.285448 0.423647)} Vertex 5923 0.370544 20.1824 2.84483 {normal=(-0.504314 0.630624 0.589899)} Vertex 5924 0.370553 18.4369 2.84487 {normal=(-0.504317 -0.630581 0.589942)} Vertex 5925 0.371029 15.8342 -6.06092 {normal=(0.120174 0.198559 -0.972693)} Vertex 5926 0.371554 18.4354 4.72569 {normal=(0.759954 0.386623 0.522487)} Vertex 5927 0.373025 23.2854 -1.50657 {normal=(0.0776998 0.940368 -0.331167)} Vertex 5928 0.373404 18.2429 4.76035 {normal=(0.76905 -0.0444159 0.637643)} Vertex 5929 0.374361 14.3181 1.64081 {normal=(0.0710704 -0.923885 -0.376012)} Vertex 5930 0.374854 16.0573 -5.01324 {normal=(0.125208 -0.743805 0.656565)} Vertex 5931 0.375531 18.7008 4.36335 {normal=(0.895275 0.269071 0.355083)} Vertex 5932 0.377173 14.474 1.28091 {normal=(0.131564 -0.956271 0.261223)} Vertex 5933 0.377501 17.7703 4.18764 {normal=(0.374788 0.371674 0.849348)} Vertex 5934 0.377837 18.3453 4.75726 {normal=(0.774988 0.128126 0.618851)} Vertex 5935 0.378953 22.7681 2.43965 {normal=(0.148499 0.736346 0.660108)} Vertex 5936 0.379505 17.6996 4.22024 {normal=(0.375467 0.344241 0.860536)} Vertex 5937 0.380016 17.9569 4.42882 {normal=(0.0813 -0.99653 -0.0178435)} Vertex 5938 0.381689 22.4766 2.69633 {normal=(0.134166 0.625688 0.768449)} Vertex 5939 0.381872 19.9684 3.03291 {normal=(-0.496712 0.476384 0.72549)} Vertex 5940 0.38188 18.6509 3.03295 {normal=(-0.496782 -0.476306 0.725493)} Vertex 5941 0.382086 23.0841 1.99238 {normal=(0.130808 0.845032 0.518469)} Vertex 5942 0.382357 17.9765 4.17396 {normal=(0.279259 -0.862528 0.421972)} Vertex 5943 0.385143 17.9211 4.12999 {normal=(0.450634 -0.403983 0.79607)} Vertex 5944 0.386051 15.9861 -4.05547 {normal=(0.0810625 -0.522275 -0.848916)} Vertex 5945 0.387431 22.0867 2.98813 {normal=(0.111597 0.577101 0.809012)} Vertex 5946 0.388764 17.8375 4.15456 {normal=(0.387313 0.31416 0.866771)} Vertex 5947 0.389477 18.5941 4.4191 {normal=(0.891024 0.367156 0.26697)} Vertex 5948 0.389615 19.2271 3.92217 {normal=(0.863068 0.357146 0.357155)} Vertex 5949 0.389919 14.2059 1.11384 {normal=(0.148271 -0.38968 0.908936)} Vertex 5950 0.391091 23.4245 1.35452 {normal=(0.0912033 0.932517 0.349419)} Vertex 5951 0.39163 17.5868 4.25339 {normal=(0.367048 0.250433 0.895857)} Vertex 5952 0.39175 13.9544 3.11342 {normal=(0.351924 -0.925326 0.141143)} Vertex 5953 0.395192 14.0949 2.23152 {normal=(0.120128 -0.949335 -0.290399)} Vertex 5954 0.396179 21.5986 3.31504 {normal=(0.132393 0.545242 0.827758)} Vertex 5955 0.396724 17.0869 4.23832 {normal=(0.2516 -0.818426 0.516601)} Vertex 5956 0.397134 19.6124 3.19939 {normal=(-0.486508 0.219127 0.84575)} Vertex 5957 0.397138 19.007 3.1994 {normal=(-0.486492 -0.21913 0.845758)} Vertex 5958 0.397766 17.9624 4.49538 {normal=(0.219893 -0.962497 0.15889)} Vertex 5959 0.398047 14.079 3.54476 {normal=(0.361418 -0.893265 0.267311)} Vertex 5960 0.398947 16.0735 -5.97134 {normal=(0.175349 0.35493 -0.918301)} Vertex 5961 0.399906 17.1109 4.25906 {normal=(0.249404 -0.466432 0.848669)} Vertex 5962 0.400032 19.973 3.98043 {normal=(-0.17468 -0.227897 0.957888)} Vertex 5963 0.401615 14.7044 4.00851 {normal=(0.334914 -0.0181827 0.942073)} Vertex 5964 0.401937 13.5928 0.952667 {normal=(0.136342 -0.262288 0.955309)} Vertex 5965 0.406598 19.5137 3.76522 {normal=(0.765545 -0.290966 0.573829)} Vertex 5966 0.407137 14.2784 3.83831 {normal=(0.27428 -0.568372 0.775709)} Vertex 5967 0.407372 17.1807 4.27805 {normal=(0.239325 -0.216848 0.946415)} Vertex 5968 0.409168 14.2373 1.8417 {normal=(0.0828051 -0.931967 -0.352961)} Vertex 5969 0.410414 19.0778 4.01479 {normal=(0.876725 0.319291 0.359732)} Vertex 5970 0.410842 18.5244 4.46634 {normal=(0.867836 0.435168 0.239771)} Vertex 5971 0.412977 17.9693 4.27515 {normal=(-0.228002 -0.971489 -0.0650003)} Vertex 5972 0.413018 17.9826 4.561 {normal=(0.537069 -0.754221 0.377767)} Vertex 5973 0.413163 11.988 -0.569456 {normal=(0.0128825 -0.905071 -0.425066)} Vertex 5974 0.413547 16.3433 -4.79865 {normal=(0.157893 -0.479992 0.862947)} Vertex 5975 0.413876 17.4319 4.28708 {normal=(0.310173 0.136463 0.940835)} Vertex 5976 0.41561 14.1304 3.65719 {normal=(0.310944 -0.841147 0.442477)} Vertex 5977 0.416112 14.1629 2.03861 {normal=(0.101888 -0.940813 -0.323248)} Vertex 5978 0.416537 16.556 3.75966 {normal=(0.307876 -0.0763988 0.948354)} Vertex 5979 0.417897 23.5195 -5.73171 {normal=(0.0482478 0.327929 -0.943469)} Vertex 5980 0.418137 20.3755 2.62632 {normal=(-0.469492 0.769768 0.432474)} Vertex 5981 0.418148 18.2438 2.62637 {normal=(-0.46952 -0.769718 0.432533)} Vertex 5982 0.418807 14.0312 3.34634 {normal=(0.398167 -0.881264 0.254629)} Vertex 5983 0.419123 17.2965 4.2953 {normal=(0.263504 -0.0531076 0.963195)} Vertex 5984 0.419899 16.253 3.73093 {normal=(0.332038 -0.0779289 0.940041)} Vertex 5985 0.422269 16.7778 3.77294 {normal=(0.314483 -0.0428879 0.948294)} Vertex 5986 0.422548 16.0969 3.71901 {normal=(0.352529 0.217298 0.910222)} Vertex 5987 0.423829 14.891 3.97227 {normal=(0.313113 0.140336 0.93929)} Vertex 5988 0.424486 16.0875 3.72389 {normal=(0.271798 0.71288 0.646474)} Vertex 5989 0.42457 23.7132 -5.5602 {normal=(0.093776 0.75566 -0.648216)} Vertex 5990 0.424944 13.0764 0.799254 {normal=(0.133893 -0.294785 0.946137)} Vertex 5991 0.425481 14.1037 3.58896 {normal=(0.34076 -0.868541 0.359888)} Vertex 5992 0.428707 16.3494 -5.85576 {normal=(0.216616 0.377705 -0.900231)} Vertex 5993 0.429341 18.037 4.59459 {normal=(0.816455 -0.320924 0.480009)} Vertex 5994 0.430382 -19.9594 -2.99256 Vertex 5995 0.430438 20.6969 3.81057 {normal=(-0.0156285 0.400952 0.915966)} Vertex 5996 0.430761 18.9309 4.09222 {normal=(0.904527 0.256633 0.340545)} Vertex 5997 0.432035 17.9708 4.16028 {normal=(-0.164191 -0.960408 0.225071)} Vertex 5998 0.432206 18.4547 4.51358 {normal=(0.858855 0.440102 0.262064)} Vertex 5999 0.432442 15.6526 -6.02943 Vertex 6000 0.434728 19.8805 3.96359 {normal=(-0.132072 -0.327707 0.935503)} Vertex 6001 0.436402 17.9577 4.32922 {normal=(-0.231296 -0.971356 -0.0544903)} Vertex 6002 0.437091 16.9184 3.77076 {normal=(0.35214 -0.0408284 0.935056)} Vertex 6003 0.439514 14.231 3.78899 {normal=(0.302372 -0.648124 0.698932)} Vertex 6004 0.441558 19.7902 3.92558 {normal=(0.0857646 -0.437873 0.894937)} Vertex 6005 0.442339 14.1817 3.72862 {normal=(0.333681 -0.772055 0.540915)} Vertex 6006 0.442811 18.7811 4.15684 {normal=(0.926089 0.18442 0.329162)} Vertex 6007 0.445481 16.9928 3.77271 {normal=(0.393903 -0.357658 0.846712)} Vertex 6008 0.446563 18.6284 4.20866 {normal=(0.932548 0.204937 0.297247)} Vertex 6009 0.446737 18.1255 4.59616 {normal=(0.881 -0.135279 0.453364)} Vertex 6010 0.447422 19.2935 3.67007 {normal=(0.8788 0.241746 0.411424)} Vertex 6011 0.447439 17.0008 3.77877 {normal=(0.310254 -0.828116 0.466868)} Vertex 6012 0.448167 15.0546 3.93457 {normal=(0.263511 0.198138 0.944089)} Vertex 6013 0.450767 20.0287 4.01886 {normal=(-0.450962 0.00414543 0.892534)} Vertex 6014 0.452728 16.0411 3.80579 {normal=(0.195035 0.886601 0.419404)} Vertex 6015 0.45357 18.3849 4.56082 {normal=(0.885549 0.330635 0.326319)} Vertex 6016 0.454255 19.7544 3.18534 {normal=(-0.44514 0.321965 0.835577)} Vertex 6017 0.45426 18.865 3.18536 {normal=(-0.445163 -0.321877 0.835599)} Vertex 6018 0.454991 16.7335 -4.49453 Vertex 6019 0.457226 20.5439 2.17588 {normal=(-0.420687 0.888308 0.184207)} Vertex 6020 0.457239 18.0753 2.17594 {normal=(-0.420738 -0.888258 0.184329)} Vertex 6021 0.457639 18.2149 4.59382 {normal=(0.894117 -0.050469 0.444981)} Vertex 6022 0.458307 18.5244 4.26243 {normal=(0.896075 0.384813 0.221289)} Vertex 6023 0.458943 12.6566 0.653598 {normal=(0.129878 -0.320088 0.938443)} Vertex 6024 0.459061 14.4857 3.93301 {normal=(0.404661 -0.333962 0.851304)} Vertex 6025 0.459697 17.927 4.09998 {normal=(0.285359 -0.429643 0.856725)} Vertex 6026 0.460314 16.6619 -5.71419 {normal=(0.245776 0.35312 -0.902718)} Vertex 6027 0.46089 17.9486 4.3735 {normal=(-0.132213 -0.987787 0.0824403)} Vertex 6028 0.461916 21.1642 3.58271 {normal=(0.0970609 0.509335 0.855077)} Vertex 6029 0.462049 18.305 4.58757 {normal=(0.907007 0.102516 0.408448)} Vertex 6030 0.463053 19.4159 3.61761 {normal=(0.81118 -0.172513 0.558772)} Vertex 6031 0.463317 17.8433 4.12455 {normal=(0.302908 0.316756 0.89884)} Vertex 6032 0.466604 23.3031 -5.73047 {normal=(0.0848539 -0.186561 -0.978772)} Vertex 6033 0.471405 -13.4333 -1.26545 Vertex 6034 0.472217 13.9641 2.91762 {normal=(0.314978 -0.949062 0.0083541)} Vertex 6035 0.472762 20.0065 4.05591 {normal=(-0.565094 -0.104152 0.818426)} Vertex 6036 0.474633 15.1949 3.89539 {normal=(0.223397 0.199734 0.954044)} Vertex 6037 0.474782 19.1507 3.77372 {normal=(0.854337 0.373426 0.361471)} Vertex 6038 0.475942 13.0669 -2.47061 {normal=(-0.0814931 -0.805294 -0.587249)} Vertex 6039 0.477463 18.0476 4.50316 {normal=(0.813925 -0.0741264 0.576221)} Vertex 6040 0.477608 19.7229 3.87786 {normal=(0.233729 -0.557074 0.796894)} Vertex 6041 0.478044 16.9191 -5.61978 {normal=(0.259612 0.267564 -0.927907)} Vertex 6042 0.478045 18.4691 4.31817 {normal=(0.85235 0.483754 0.1987)} Vertex 6043 0.478752 23.8626 -5.33489 {normal=(0.0771127 0.873906 -0.47994)} Vertex 6044 0.478777 15.3096 3.88363 {normal=(0.198363 -0.365179 0.909558)} Vertex 6045 0.479093 16.7425 -4.67317 Vertex 6046 0.481896 17.1209 -5.57253 {normal=(0.26462 0.243935 -0.932991)} Vertex 6047 0.481913 20.4038 3.93024 {normal=(-0.0517023 0.317307 0.946913)} Vertex 6048 0.483115 19.9424 4.00136 {normal=(-0.638853 -0.419796 0.6447)} Vertex 6049 0.4834 17.9508 4.13019 {normal=(-0.237647 -0.936706 0.25711)} Vertex 6050 0.484097 17.7527 -5.38471 {normal=(0.267189 0.278466 -0.922533)} Vertex 6051 0.484645 18.8145 -5.05631 {normal=(0.257583 0.218381 -0.941255)} Vertex 6052 0.484836 15.2799 3.87841 {normal=(0.211976 0.0185844 0.977098)} Vertex 6053 0.48506 17.9546 4.41519 {normal=(0.0704164 -0.951603 0.299156)} Vertex 6054 0.485335 15.6559 -5.85259 {normal=(0.540611 -0.825254 0.163389)} Vertex 6055 0.491392 12.2456 0.505202 {normal=(0.123315 -0.332888 0.934869)} Vertex 6056 0.492298 19.0034 3.85787 {normal=(0.866772 0.293882 0.402915)} Vertex 6057 0.492739 17.0323 3.87878 {normal=(0.211992 -0.958517 0.19054)} Vertex 6058 0.492782 20.1021 3.00564 {normal=(-0.416529 0.573061 0.705765)} Vertex 6059 0.492791 18.5172 3.00568 {normal=(-0.41657 -0.573033 0.705764)} Vertex 6060 0.496038 18.13 4.50164 {normal=(0.90729 -0.137155 0.397509)} Vertex 6061 0.496222 18.4114 4.37388 {normal=(0.853098 0.465983 0.2347)} Vertex 6062 0.497717 17.7884 4.13487 {normal=(0.288995 0.367657 0.883918)} Vertex 6063 0.49867 22.1338 -3.50016 Vertex 6064 0.499013 15.3752 3.92602 {normal=(0.185092 -0.610263 0.770272)} Vertex 6065 0.499971 18.8516 3.9225 {normal=(0.895585 0.192582 0.401049)} Vertex 6066 0.500415 19.9328 4.03709 {normal=(-0.474523 -0.433739 0.765962)} Vertex 6067 0.503502 17.9344 4.09998 {normal=(-0.155279 -0.663065 0.732279)} Vertex 6068 0.504314 19.6321 3.77478 {normal=(0.458333 -0.641016 0.615654)} Vertex 6069 0.504543 14.0733 3.35714 {normal=(0.377926 -0.897502 0.227293)} Vertex 6070 0.504907 16.5374 -2.80076 {normal=(0.276588 0.213448 -0.936984)} Vertex 6071 0.506102 20.2402 3.97723 {normal=(-0.0829456 0.278762 0.956772)} Vertex 6072 0.507273 15.9574 3.96473 {normal=(0.209913 0.873798 0.43865)} Vertex 6073 0.5081 18.701 3.97431 {normal=(0.927137 0.131855 0.350757)} Vertex 6074 0.508711 18.1979 4.4852 {normal=(0.921371 -0.050651 0.385369)} Vertex 6075 0.50891 17.9758 4.45428 {normal=(0.479957 -0.633926 0.606448)} Vertex 6076 0.510047 18.1257 4.46165 {normal=(0.82999 0.00508225 0.557755)} Vertex 6077 0.512079 22.0771 -3.71268 {normal=(0.19515 0.855103 -0.480329)} Vertex 6078 0.51284 18.3513 4.42956 {normal=(0.894652 0.336585 0.293783)} Vertex 6079 0.513564 20.3082 2.80967 {normal=(-0.400992 0.721499 0.564487)} Vertex 6080 0.513574 18.3111 2.80972 {normal=(-0.401001 -0.721483 0.5645)} Vertex 6081 0.513798 19.8641 3.96686 {normal=(-0.531863 -0.547045 0.646424)} Vertex 6082 0.514244 15.8109 -6.0342 {normal=(0.518196 0.0440165 -0.854129)} Vertex 6083 0.514279 22.2848 -3.54805 {normal=(0.391639 -0.434521 -0.811055)} Vertex 6084 0.515983 14.0248 3.15309 {normal=(0.409116 -0.889245 0.204614)} Vertex 6085 0.51648 20.5287 2.38447 {normal=(-0.398253 0.880143 0.258346)} Vertex 6086 0.516493 18.0905 2.38453 {normal=(-0.398242 -0.880104 0.258497)} Vertex 6087 0.516495 17.7365 4.15197 {normal=(0.303027 0.353087 0.885158)} Vertex 6088 0.516686 18.5516 4.0133 {normal=(0.935338 0.222461 0.275052)} Vertex 6089 0.516745 15.7844 -5.63376 {normal=(0.615239 -0.713604 0.335036)} Vertex 6090 0.517003 18.2801 4.46667 {normal=(0.927465 0.101327 0.35992)} Vertex 6091 0.518179 17.9299 4.23698 {normal=(-0.362993 -0.931399 -0.0270586)} Vertex 6092 0.519204 15.9243 -2.96193 {normal=(0.293793 0.264136 -0.91865)} Vertex 6093 0.520797 21.5687 3.30643 {normal=(0.183978 0.540353 0.821079)} Vertex 6094 0.521678 19.5179 3.61635 {normal=(0.550144 -0.557121 0.622059)} Vertex 6095 0.522294 11.8436 0.354064 {normal=(0.117261 -0.343542 0.931788)} Vertex 6096 0.522518 22.8617 -3.09795 {normal=(0.395089 0.784579 0.477849)} Vertex 6097 0.526539 19.8644 4.00722 {normal=(-0.462551 -0.526315 0.71347)} Vertex 6098 0.526617 18.1919 4.43451 {normal=(0.854069 0.0624531 0.516397)} Vertex 6099 0.527039 18.4597 4.07556 {normal=(0.851621 0.483656 0.202037)} Vertex 6100 0.530941 20.1425 4.0188 {normal=(-0.268135 0.378534 0.885898)} Vertex 6101 0.531922 15.4078 -3.11535 {normal=(0.305455 0.304646 -0.902158)} Vertex 6102 0.532245 19.8854 3.16616 {normal=(-0.388688 0.416834 0.821688)} Vertex 6103 0.532251 18.7339 3.16619 {normal=(-0.388722 -0.416712 0.821733)} Vertex 6104 0.535705 18.024 4.45433 {normal=(0.656121 -0.0225279 0.754319)} Vertex 6105 0.536215 14.6618 3.94111 {normal=(0.442458 -0.102322 0.890933)} Vertex 6106 0.537745 11.6121 0.261136 Vertex 6107 0.537745 11.6324 0.272709 {normal=(0.117216 -0.420321 0.899773)} Vertex 6108 0.537987 15.9017 4.05165 {normal=(0.279047 0.69763 0.659883)} Vertex 6109 0.539057 23.6469 -5.6087 {normal=(0.207417 0.69629 -0.687138)} Vertex 6110 0.539159 18.425 4.16108 {normal=(0.770829 0.609742 0.184494)} Vertex 6111 0.539813 23.5705 0.627994 {normal=(0.114015 0.990583 0.0757961)} Vertex 6112 0.542702 18.2706 4.39458 {normal=(0.866742 0.214021 0.450503)} Vertex 6113 0.542812 19.7935 3.91536 {normal=(-0.0960102 -0.769641 0.631217)} Vertex 6114 0.543105 23.5687 -5.68444 {normal=(0.224689 0.501101 -0.835711)} Vertex 6115 0.543683 15.7227 -5.9228 {normal=(0.814683 -0.571366 -0.0991565)} Vertex 6116 0.543764 17.9218 4.28655 {normal=(-0.301521 -0.951922 0.0541352)} Vertex 6117 0.543886 19.2054 3.55099 {normal=(0.810915 0.360918 0.460604)} Vertex 6118 0.543993 19.3211 3.50115 {normal=(0.721538 -0.0327525 0.6916)} Vertex 6119 0.544324 16.9796 -2.70916 {normal=(0.254495 0.0770141 -0.964003)} Vertex 6120 0.544508 14.4258 3.8658 {normal=(0.404195 -0.376673 0.833513)} Vertex 6121 0.544799 19.3097 3.30847 {normal=(-0.380575 2.09638e-05 0.92475)} Vertex 6122 0.544868 15.8737 4.06657 {normal=(0.341614 0.271611 0.899737)} Vertex 6123 0.545544 15.4769 4.00558 {normal=(0.257667 -0.502989 0.824991)} Vertex 6124 0.546601 18.3833 4.24653 {normal=(0.775657 0.577828 0.253911)} Vertex 6125 0.546688 18.637 3.88344 {normal=(0.804317 0.172368 0.56865)} Vertex 6126 0.54714 19.6521 -4.90585 {normal=(0.247635 0.0234722 -0.968569)} Vertex 6127 0.548254 23.0984 -3.4152 {normal=(0.309097 0.610617 0.729113)} Vertex 6128 0.548682 14.0047 2.69901 {normal=(0.27779 -0.951784 -0.130156)} Vertex 6129 0.549363 18.3344 4.33192 {normal=(0.821415 0.453554 0.345784)} Vertex 6130 0.550316 15.9439 -5.38234 {normal=(0.647996 -0.678343 0.346341)} Vertex 6131 0.551136 19.8014 3.96631 {normal=(-0.399502 -0.736115 0.546381)} Vertex 6132 0.553319 15.7744 -5.98334 {normal=(0.833907 -0.26084 -0.486376)} Vertex 6133 0.553433 15.7767 4.06686 {normal=(0.359423 -0.0219161 0.932917)} Vertex 6134 0.55383 22.0598 2.98093 {normal=(0.168847 0.563498 0.808678)} Vertex 6135 0.554533 19.437 3.30608 {normal=(-0.373517 0.0923489 0.923015)} Vertex 6136 0.554534 19.1823 3.30608 {normal=(-0.373517 -0.0923094 0.923019)} Vertex 6137 0.556431 20.1106 4.05494 {normal=(-0.260827 0.327123 0.908273)} Vertex 6138 0.556959 14.988 -3.261 {normal=(0.309214 0.337662 -0.889028)} Vertex 6139 0.557691 18.4894 3.91602 {normal=(0.870838 0.288353 0.398113)} Vertex 6140 0.558908 22.5299 -3.85635 {normal=(0.265213 -0.898184 -0.35061)} Vertex 6141 0.562152 14.11 3.41968 {normal=(0.390616 -0.88838 0.241247)} Vertex 6142 0.563589 16.0357 -5.92805 {normal=(0.60012 0.235585 -0.764432)} Vertex 6143 0.563684 15.6108 4.05253 {normal=(0.350002 -0.211618 0.912533)} Vertex 6144 0.565447 18.0993 4.41534 {normal=(0.642703 0.172395 0.746467)} Vertex 6145 0.567866 18.4327 3.92293 {normal=(0.894292 0.363542 -0.26092)} Vertex 6146 0.567987 17.634 4.17127 {normal=(0.323765 0.293751 0.899381)} Vertex 6147 0.5683 19.3926 3.50056 {normal=(0.496689 -0.37904 0.780787)} Vertex 6148 0.569543 17.91 4.20688 {normal=(-0.381238 -0.924477 -0.000675011)} Vertex 6149 0.570019 18.4915 3.90093 {normal=(0.665594 0.195761 0.720182)} Vertex 6150 0.572538 21.6796 -4.10097 {normal=(0.244638 0.64851 -0.720824)} Vertex 6151 0.572572 17.9197 4.32185 {normal=(-0.143741 -0.958178 0.247453)} Vertex 6152 0.578941 20.0544 4.06268 {normal=(0.0629823 -0.0597008 0.996227)} Vertex 6153 0.580194 18.4348 3.90783 {normal=(0.698207 0.236804 0.675596)} Vertex 6154 0.581112 18.4186 3.98738 {normal=(0.731869 0.663231 0.156498)} Vertex 6155 0.581379 17.0871 4.07273 {normal=(0.216662 -0.951966 0.216376)} Vertex 6156 0.583255 19.0845 3.62641 {normal=(0.76513 0.455306 0.455271)} Vertex 6157 0.583497 19.5613 3.29895 {normal=(-0.352513 0.182449 0.917849)} Vertex 6158 0.5835 19.058 3.29896 {normal=(-0.352521 -0.182449 0.917846)} Vertex 6159 0.584644 20.7836 3.79112 {normal=(0.0163184 0.454809 0.89044)} Vertex 6160 0.586015 23.3653 -3.6247 {normal=(0.0798947 0.429247 0.899646)} Vertex 6161 0.586052 16.1345 -5.09833 {normal=(0.668375 -0.588142 0.455372)} Vertex 6162 0.587388 18.4102 3.91106 {normal=(0.787343 0.440265 0.431576)} Vertex 6163 0.588921 14.5771 -3.4094 {normal=(0.302974 0.35353 -0.884999)} Vertex 6164 0.588992 18.1739 4.3717 {normal=(0.668119 0.24057 0.70409)} Vertex 6165 0.589312 20.4835 2.58423 {normal=(-0.345986 0.847715 0.402085)} Vertex 6166 0.589325 18.1358 2.58429 {normal=(-0.345956 -0.847681 0.402184)} Vertex 6167 0.589403 16.091 3.64908 {normal=(0.423629 0.187452 0.886228)} Vertex 6168 0.589424 18.3943 4.0878 {normal=(0.572518 0.788555 0.224508)} Vertex 6169 0.589586 14.1348 3.46388 {normal=(0.448779 -0.843384 0.295468)} Vertex 6170 0.590803 14.8527 3.91407 {normal=(0.411289 0.046896 0.910298)} Vertex 6171 0.59167 16.0815 3.65353 {normal=(0.350412 0.698569 0.623869)} Vertex 6172 0.592912 22.6275 -4.18071 {normal=(0.0986023 -0.995065 -0.0111266)} Vertex 6173 0.592925 16.2489 3.66401 {normal=(0.385552 -0.107834 0.916363)} Vertex 6174 0.594658 19.2569 3.45516 {normal=(0.67968 -0.0129717 0.733394)} Vertex 6175 0.598472 19.9736 4.04203 {normal=(0.147646 -0.250268 0.956852)} Vertex 6176 0.600008 17.4955 4.20664 {normal=(0.343504 0.224651 0.911886)} Vertex 6177 0.600652 17.9317 4.35124 {normal=(0.107344 -0.871139 0.47916)} Vertex 6178 0.601112 18.9341 3.72206 {normal=(0.760643 0.354939 0.543544)} Vertex 6179 0.602238 16.5553 3.69832 {normal=(0.356461 -0.0899532 0.92997)} Vertex 6180 0.603548 19.1755 3.47496 {normal=(0.8008 0.41484 0.432003)} Vertex 6181 0.60477 18.3591 4.16146 {normal=(0.594852 0.738405 0.317663)} Vertex 6182 0.605989 14.2084 3.61558 {normal=(0.510182 -0.760042 0.402554)} Vertex 6183 0.606146 17.8369 4.08603 {normal=(0.110938 0.116334 0.986995)} Vertex 6184 0.606159 18.7887 3.78142 {normal=(0.739197 0.261556 0.620626)} Vertex 6185 0.606341 18.2477 4.32339 {normal=(0.687184 0.40279 0.604597)} Vertex 6186 0.607325 16.7836 3.71093 {normal=(0.354715 -0.0103568 0.934917)} Vertex 6187 0.608185 16.9339 3.70183 {normal=(0.378697 0.0224584 0.925248)} Vertex 6188 0.608283 19.3426 3.4673 {normal=(0.437025 -0.281989 0.854103)} Vertex 6189 0.608607 17.3322 4.23469 {normal=(0.355273 0.0274151 0.93436)} Vertex 6190 0.609794 18.4021 3.96138 {normal=(0.698935 0.715101 -0.0109955)} Vertex 6191 0.609938 17.0132 3.6999 {normal=(0.414795 -0.306589 0.856708)} Vertex 6192 0.611298 15.8927 -5.74753 {normal=(0.91312 -0.40318 0.0604796)} Vertex 6193 0.611601 18.3094 4.25331 {normal=(0.649975 0.621156 0.437833)} Vertex 6194 0.612579 17.0213 3.70516 {normal=(0.325457 -0.813722 0.481596)} Vertex 6195 0.613625 18.3714 3.91585 {normal=(0.757406 0.564166 -0.328713)} Vertex 6196 0.614181 21.2559 3.493 {normal=(0.182532 0.541728 0.820495)} Vertex 6197 0.614277 14.1724 3.53392 {normal=(0.505029 -0.782952 0.363224)} Vertex 6198 0.615389 14.3507 3.79727 {normal=(0.469598 -0.491208 0.733616)} Vertex 6199 0.616013 16.2963 -5.79505 {normal=(0.631031 0.251558 -0.733838)} Vertex 6200 0.616291 22.5774 -4.52112 {normal=(0.0633901 -0.996824 0.0482075)} Vertex 6201 0.617646 19.8971 4.01522 {normal=(0.139819 -0.336868 0.931113)} Vertex 6202 0.618433 17.8895 4.15477 {normal=(-0.423971 -0.899847 0.102589)} Vertex 6203 0.618648 18.6457 3.8242 {normal=(0.593815 0.26814 0.758607)} Vertex 6204 0.61913 19.2547 3.44111 {normal=(0.298322 -0.241259 0.923471)} Vertex 6205 0.619156 14.0291 2.95338 {normal=(0.395411 -0.913262 0.0979944)} Vertex 6206 0.620279 14.0856 3.20569 {normal=(0.394054 -0.894906 0.209438)} Vertex 6207 0.621052 17.8916 4.23674 {normal=(-0.334414 -0.936322 0.107093)} Vertex 6208 0.621146 14.0764 2.45759 {normal=(0.245987 -0.946858 -0.207245)} Vertex 6209 0.621687 18.3752 3.93267 {normal=(0.64616 0.576106 -0.500579)} Vertex 6210 0.622642 20.2163 2.97372 {normal=(-0.32266 0.655606 0.682694)} Vertex 6211 0.622651 18.403 2.97376 {normal=(-0.322675 -0.655584 0.682708)} Vertex 6212 0.624788 19.3064 3.45034 {normal=(0.367015 -0.148117 0.918347)} Vertex 6213 0.625503 19.1906 3.42061 {normal=(0.693277 0.0228867 0.720307)} Vertex 6214 0.626795 19.1813 3.42145 {normal=(0.726996 0.327781 0.603354)} Vertex 6215 0.626833 17.219 4.21763 {normal=(0.356955 -0.153994 0.921341)} Vertex 6216 0.626878 14.1751 -3.56054 {normal=(0.295068 0.365648 -0.882744)} Vertex 6217 0.626912 15.9765 -5.84563 {normal=(0.937085 -0.0898359 -0.337345)} Vertex 6218 0.62742 18.3541 3.90386 {normal=(0.802131 0.596556 0.0265786)} Vertex 6219 0.628005 17.9578 4.37472 {normal=(0.444411 -0.532485 0.720388)} Vertex 6220 0.628261 17.1265 4.17956 {normal=(0.291328 -0.813393 0.503508)} Vertex 6221 0.629183 20.0023 3.14233 {normal=(-0.318534 0.501435 0.804425)} Vertex 6222 0.629191 18.617 3.14236 {normal=(-0.318541 -0.501375 0.804459)} Vertex 6223 0.630102 16.0316 3.73357 {normal=(0.262501 0.878735 0.398644)} Vertex 6224 0.630978 19.6793 3.28728 {normal=(-0.318083 0.268026 0.909387)} Vertex 6225 0.630982 18.94 3.28729 {normal=(-0.318092 -0.268031 0.909383)} Vertex 6226 0.631177 19.5948 3.63727 {normal=(0.268245 -0.743019 0.613162)} Vertex 6227 0.633383 17.1505 4.19925 {normal=(0.352851 -0.430874 0.830568)} Vertex 6228 0.633871 22.7252 -2.90825 Vertex 6229 0.634609 19.7028 3.78174 {normal=(0.252733 -0.802725 0.540147)} Vertex 6230 0.635047 15.0273 3.88203 {normal=(0.368312 0.112923 0.922819)} Vertex 6231 0.635801 23.6624 -3.72647 {normal=(-0.0188436 0.502147 0.864577)} Vertex 6232 0.635882 14.2782 3.71387 {normal=(0.536625 -0.664969 0.51947)} Vertex 6233 0.636358 19.1872 3.4143 {normal=(0.184381 -0.0474756 0.981708)} Vertex 6234 0.63646 19.8248 3.98227 {normal=(0.129097 -0.518434 0.845317)} Vertex 6235 0.636773 19.1998 3.41733 {normal=(0.156851 -0.285796 0.945367)} Vertex 6236 0.637048 23.4465 -0.70775 {normal=(0.109069 0.977547 -0.180294)} Vertex 6237 0.637334 16.4176 -4.90037 {normal=(0.696713 -0.397983 0.596825)} Vertex 6238 0.63765 19.1779 3.41515 {normal=(0.21937 0.245847 0.944159)} Vertex 6239 0.637802 19.3307 3.44852 {normal=(0.375627 -0.281956 0.882839)} Vertex 6240 0.638537 17.8731 4.12455 {normal=(-0.454701 -0.83472 0.310627)} Vertex 6241 0.638581 18.505 3.8504 {normal=(0.560078 0.208114 0.801873)} Vertex 6242 0.638711 19.7647 3.88193 {normal=(0.104517 -0.875069 0.472579)} Vertex 6243 0.63888 18.3585 3.87741 {normal=(0.636482 0.210358 0.742051)} Vertex 6244 0.640505 18.3409 3.88351 {normal=(0.7922 0.422849 0.44002)} Vertex 6245 0.640598 16.6057 -4.38681 {normal=(0.258987 -0.328757 -0.908209)} Vertex 6246 0.641939 19.1627 3.42071 {normal=(0.349934 0.508493 0.786754)} Vertex 6247 0.642673 19.3209 3.4449 {normal=(0.123057 -0.135581 0.983095)} Vertex 6248 0.642881 19.3272 3.44641 {normal=(0.0698393 -0.193373 0.978637)} Vertex 6249 0.643162 19.1876 3.41549 {normal=(-0.316744 -0.183395 0.930612)} Vertex 6250 0.643483 19.7806 3.93783 {normal=(0.0482738 -0.856163 0.514446)} Vertex 6251 0.643577 19.2003 3.41851 {normal=(-0.378427 -0.257396 0.889123)} Vertex 6252 0.644388 18.3804 4.05337 {normal=(0.501217 0.845297 0.185078)} Vertex 6253 0.644561 17.791 4.09104 {normal=(0.0984731 0.221722 0.970125)} Vertex 6254 0.64587 13.9435 -3.65347 Vertex 6255 0.64587 13.9639 -3.64189 {normal=(0.308029 0.420677 -0.853316)} Vertex 6256 0.64606 19.506 3.53756 {normal=(0.317103 -0.638386 0.701363)} Vertex 6257 0.646101 19.3191 3.44555 {normal=(-0.305805 -0.109776 0.945745)} Vertex 6258 0.646308 19.3254 3.44706 {normal=(-0.373615 -0.0192116 0.927385)} Vertex 6259 0.646758 23.0343 -5.5855 {normal=(0.17719 -0.459964 -0.870079)} Vertex 6260 0.649223 17.2509 -2.68712 Vertex 6261 0.649538 19.1163 3.4713 {normal=(0.531236 0.593604 0.604502)} Vertex 6262 0.649951 17.8443 4.08603 {normal=(-0.300069 -0.394852 0.868361)} Vertex 6263 0.650342 17.889 4.2627 {normal=(-0.139381 -0.93457 0.32734)} Vertex 6264 0.651514 19.3235 3.45113 {normal=(-0.493777 0.114059 0.862076)} Vertex 6265 0.651553 -12.3686 2.50251 Vertex 6266 0.651659 18.3202 3.88689 {normal=(0.813304 0.580401 0.0408728)} Vertex 6267 0.652237 19.2369 3.43402 {normal=(-0.381605 -0.245457 0.891139)} Vertex 6268 0.652248 20.6271 2.12793 {normal=(-0.280506 0.948095 0.149777)} Vertex 6269 0.652262 17.9921 2.128 {normal=(-0.280244 -0.948147 0.149937)} Vertex 6270 0.652616 19.2839 3.44398 {normal=(-0.322012 -0.161026 0.932941)} Vertex 6271 0.65272 19.1923 3.42534 {normal=(-0.502667 -0.358737 0.786533)} Vertex 6272 0.653306 23.9826 -5.02644 {normal=(0.101379 0.935364 -0.338845)} Vertex 6273 0.65371 18.0057 4.36949 {normal=(0.640539 -0.0511014 0.766224)} Vertex 6274 0.657173 14.6006 3.86466 {normal=(0.486965 -0.180676 0.85453)} Vertex 6275 0.661407 19.2959 3.4542 {normal=(-0.569636 -0.0102645 0.821833)} Vertex 6276 0.661943 20.5208 3.91767 {normal=(-0.00011146 0.370802 0.928712)} Vertex 6277 0.663406 19.223 3.44137 {normal=(-0.550353 -0.26968 0.79018)} Vertex 6278 0.663775 18.3867 3.858 {normal=(0.534763 0.140116 0.833304)} Vertex 6279 0.664703 22.5937 -4.82972 {normal=(0.118897 -0.980213 -0.158259)} Vertex 6280 0.66628 17.0539 3.80255 {normal=(0.219436 -0.957134 0.189057)} Vertex 6281 0.668265 17.8671 4.17977 {normal=(-0.427217 -0.894343 0.132799)} Vertex 6282 0.668949 15.1856 3.84497 {normal=(0.343865 0.123208 0.930901)} Vertex 6283 0.670731 18.3387 4.11866 {normal=(0.577087 0.754025 0.313716)} Vertex 6284 0.671368 17.7571 4.09753 {normal=(0.125377 0.225069 0.966242)} Vertex 6285 0.671512 16.5929 -5.63521 {normal=(0.656873 0.236906 -0.715817)} Vertex 6286 0.67158 20.2654 -4.93332 {normal=(0.294742 0.123671 -0.94754)} Vertex 6287 0.672623 14.144 2.23167 {normal=(0.206935 -0.949468 -0.235985)} Vertex 6288 0.673071 18.3639 4.02737 {normal=(0.640998 0.767088 0.0263978)} Vertex 6289 0.67393 20.4094 2.77024 {normal=(-0.285168 0.794598 0.535998)} Vertex 6290 0.673942 18.2099 2.7703 {normal=(-0.285175 -0.794583 0.536015)} Vertex 6291 0.676528 19.2829 3.46481 {normal=(-0.489912 -0.0199696 0.871543)} Vertex 6292 0.676732 15.3092 3.83446 {normal=(0.302872 -0.331495 0.893521)} Vertex 6293 0.677767 18.0754 4.33555 {normal=(0.672295 0.165379 0.721574)} Vertex 6294 0.67905 19.2376 3.45865 {normal=(-0.482987 -0.254568 0.837806)} Vertex 6295 0.679254 19.4363 3.48262 {normal=(0.383356 -0.533613 0.753853)} Vertex 6296 0.679354 17.8999 4.28107 {normal=(0.192681 -0.817578 0.542624)} Vertex 6297 0.680046 20.9412 -4.66502 {normal=(0.31467 0.476529 -0.820916)} Vertex 6298 0.680421 23.3413 -5.70001 {normal=(0.303166 -0.0790789 -0.949651)} Vertex 6299 0.680982 23.4129 1.27096 {normal=(0.173524 0.926278 0.334511)} Vertex 6300 0.682843 15.2795 3.82912 {normal=(0.337931 -0.00187186 0.941169)} Vertex 6301 0.682919 16.0958 -5.54189 {normal=(0.918916 -0.386672 0.0779615)} Vertex 6302 0.683491 14.3536 1.59313 {normal=(0.0480728 -0.936703 -0.346808)} Vertex 6303 0.683722 23.8184 -5.35287 {normal=(0.222725 0.808774 -0.544314)} Vertex 6304 0.687232 23.0836 1.88735 {normal=(0.19248 0.843452 0.501537)} Vertex 6305 0.687271 19.0189 3.53854 {normal=(0.543169 0.531278 0.650163)} Vertex 6306 0.688451 22.4076 -3.41895 {normal=(0.893893 -0.131471 -0.428569)} Vertex 6307 0.690304 14.4325 1.39568 {normal=(0.0185052 -0.920394 -0.390555)} Vertex 6308 0.691634 17.8478 4.13655 {normal=(-0.512451 -0.809889 0.285437)} Vertex 6309 0.692914 23.8832 -3.90476 {normal=(0.0391762 0.768435 0.638728)} Vertex 6310 0.69381 20.3756 3.96236 {normal=(-0.0367082 0.35125 0.935562)} Vertex 6311 0.693944 22.6911 -3.19247 {normal=(0.900862 0.42997 0.0597831)} Vertex 6312 0.694201 17.8565 4.19603 {normal=(-0.232151 -0.920099 0.315473)} Vertex 6313 0.695287 15.3604 3.86145 {normal=(0.275373 -0.594403 0.755549)} Vertex 6314 0.695808 19.7883 3.27134 {normal=(-0.271089 0.347052 0.897812)} Vertex 6315 0.695812 18.8311 3.27136 {normal=(-0.271104 -0.346931 0.897854)} Vertex 6316 0.695837 18.1439 4.29676 {normal=(0.676358 0.256916 0.690315)} Vertex 6317 0.697025 16.8156 -2.84991 {normal=(-0.290148 -0.319633 0.902025)} Vertex 6318 0.698144 19.3998 3.45375 {normal=(0.378293 -0.418709 0.825577)} Vertex 6319 0.699552 18.2762 4.19376 {normal=(0.642894 0.634461 0.429122)} Vertex 6320 0.700508 22.7845 2.3261 {normal=(0.196055 0.757206 0.623058)} Vertex 6321 0.700788 17.6955 4.10674 {normal=(0.328315 0.210924 0.920717)} Vertex 6322 0.701831 16.853 -5.52568 {normal=(0.670032 0.197182 -0.715665)} Vertex 6323 0.702729 19.3963 3.45096 {normal=(0.126725 -0.175392 0.976309)} Vertex 6324 0.703003 -21.5335 -2.96162 Vertex 6325 0.703049 17.819 4.09803 {normal=(-0.276718 -0.586478 0.76123)} Vertex 6326 0.703108 14.2074 2.02125 {normal=(0.156057 -0.949787 -0.271202)} Vertex 6327 0.703141 19.2857 3.4745 {normal=(-0.0852147 -0.0455627 0.99532)} Vertex 6328 0.704153 18.3283 3.98378 {normal=(0.712032 0.673318 -0.199132)} Vertex 6329 0.704165 16.7933 -4.78845 {normal=(0.820436 -0.274452 0.501559)} Vertex 6330 0.704639 14.1368 3.27122 {normal=(0.44128 -0.862794 0.246697)} Vertex 6331 0.704699 15.941 3.88917 {normal=(0.276783 0.864931 0.418672)} Vertex 6332 0.704817 16.2133 -5.67947 {normal=(0.944114 -0.0683953 -0.322446)} Vertex 6333 0.706731 14.2773 1.80841 {normal=(0.0978151 -0.945814 -0.309625)} Vertex 6334 0.706854 18.2577 3.89558 {normal=(0.753221 0.582109 -0.30628)} Vertex 6335 0.706967 17.0765 -5.46646 {normal=(0.667329 0.191662 -0.719679)} Vertex 6336 0.707435 19.3933 3.45149 {normal=(-0.272232 0.191665 0.94295)} Vertex 6337 0.707444 -15.6751 -3.66791 {normal=(-0.90075 0.114685 -0.418924)} Vertex 6338 0.70792 18.2113 4.25313 {normal=(0.680458 0.43026 0.593173)} Vertex 6339 0.707931 22.0867 -3.49479 Vertex 6340 0.708088 17.9245 4.29186 {normal=(0.559663 -0.510032 0.65318)} Vertex 6341 0.709101 20.6109 2.33711 {normal=(-0.259295 0.939429 0.224141)} Vertex 6342 0.709115 18.0084 2.33718 {normal=(-0.259105 -0.939453 0.22426)} Vertex 6343 0.709195 18.2508 3.88334 {normal=(0.795205 0.581791 -0.170786)} Vertex 6344 0.709315 19.2386 3.47202 {normal=(-0.163613 -0.0907859 0.982338)} Vertex 6345 0.70976 17.7179 -5.27645 {normal=(0.666576 0.212471 -0.714515)} Vertex 6346 0.709783 15.6737 -3.19752 {normal=(-0.272072 -0.419312 0.866114)} Vertex 6347 0.710206 18.7772 -4.95567 {normal=(0.658051 0.150835 -0.737711)} Vertex 6348 0.712261 19.3908 3.45532 {normal=(-0.401143 0.300035 0.865484)} Vertex 6349 0.715892 17.8332 4.14796 {normal=(-0.334277 -0.871557 0.358675)} Vertex 6350 0.716045 18.3014 3.95507 {normal=(0.710689 0.580805 -0.396973)} Vertex 6351 0.716119 21.6851 3.18107 {normal=(0.197801 0.534737 0.821542)} Vertex 6352 0.720643 18.2564 3.91252 {normal=(0.721828 0.501696 -0.476723)} Vertex 6353 0.720807 22.5158 2.58719 {normal=(0.191462 0.656364 0.729745)} Vertex 6354 0.721165 17.8595 4.20467 {normal=(0.169037 -0.837446 0.519721)} Vertex 6355 0.722558 18.3072 4.07217 {normal=(0.728305 0.66728 0.155912)} Vertex 6356 0.722925 19.3846 3.46401 {normal=(-0.409986 0.273865 0.870005)} Vertex 6357 0.723224 22.076 -3.43017 Vertex 6358 0.723637 20.2837 4.0012 {normal=(-0.155905 0.478528 0.864121)} Vertex 6359 0.724005 17.804 4.09347 {normal=(-0.131209 -0.441646 0.887543)} Vertex 6360 0.725809 22.0242 -3.71826 {normal=(0.419316 0.771166 -0.479037)} Vertex 6361 0.7271 19.2841 3.46682 {normal=(0.320253 -0.0839935 0.943601)} Vertex 6362 0.727169 14.514 1.21606 {normal=(0.163887 -0.952391 0.257085)} Vertex 6363 0.727636 -21.5569 -3.54963 Vertex 6364 0.727707 18.222 3.86625 {normal=(0.815508 0.567158 -0.115234)} Vertex 6365 0.731203 15.2342 -3.48261 Vertex 6366 0.734254 17.9692 4.28263 {normal=(0.760235 -0.155897 0.630666)} Vertex 6367 0.734557 22.9295 -3.50799 {normal=(0.873033 0.122497 0.472026)} Vertex 6368 0.736048 17.8275 4.14214 {normal=(-0.0603985 -0.854461 0.515993)} Vertex 6369 0.736124 18.2089 3.83739 {normal=(0.780243 0.388887 0.489886)} Vertex 6370 0.73623 14.0705 2.73272 {normal=(0.376999 -0.925171 -0.0439325)} Vertex 6371 0.736857 18.8698 3.60737 {normal=(0.511669 0.438079 0.739108)} Vertex 6372 0.737582 19.2447 3.47007 {normal=(0.140224 0.253036 0.957241)} Vertex 6373 0.73815 22.6763 -5.10651 {normal=(0.160088 -0.938649 -0.305466)} Vertex 6374 0.738505 15.4331 3.91009 {normal=(0.36079 -0.487944 0.794822)} Vertex 6375 0.739428 19.3746 3.47756 {normal=(-0.317186 0.179574 0.931207)} Vertex 6376 0.7398 -15.6092 0.833923 {normal=(-0.850293 -0.167974 0.498786)} Vertex 6377 0.741659 22.6517 -3.7285 {normal=(0.866219 -0.498518 0.0338323)} Vertex 6378 0.741709 18.1952 3.84364 {normal=(0.852003 0.504137 0.1412)} Vertex 6379 0.741823 19.2835 3.45846 {normal=(0.610164 -0.0558339 0.790305)} Vertex 6380 0.742684 20.1021 3.11442 {normal=(-0.236402 0.573683 0.78422)} Vertex 6381 0.742693 18.5172 3.11446 {normal=(-0.23636 -0.57366 0.78425)} Vertex 6382 0.745135 14.8028 3.83488 {normal=(0.508809 -0.0462648 0.859635)} Vertex 6383 0.745636 18.2125 3.82554 {normal=(0.59558 0.184321 0.781864)} Vertex 6384 0.745807 15.8817 3.97329 {normal=(0.364512 0.673202 0.643374)} Vertex 6385 0.746344 22.8544 -5.44599 {normal=(0.206933 -0.677595 -0.705722)} Vertex 6386 0.747309 19.2838 3.44943 {normal=(0.942763 -0.122024 0.310337)} Vertex 6387 0.749156 17.8759 4.20569 {normal=(0.577877 -0.58263 0.57149)} Vertex 6388 0.749325 18.7423 3.66899 {normal=(0.507318 0.356775 0.784436)} Vertex 6389 0.750052 19.2839 2.90477 {normal=(0.88015 -0.0853086 0.466967)} Vertex 6390 0.750052 19.2839 3.26486 {normal=(0.990432 -0.137793 0.00756323)} Vertex 6391 0.751421 20.2453 4.03418 {normal=(-0.0420867 0.361486 0.931427)} Vertex 6392 0.751898 19.3097 3.37452 {normal=(-0.231552 7.89585e-06 0.972823)} Vertex 6393 0.752447 14.2482 1.04566 {normal=(0.246736 -0.377293 0.892621)} Vertex 6394 0.75283 24.057 -4.7259 {normal=(0.13062 0.974124 -0.184448)} Vertex 6395 0.753428 15.8534 3.98593 {normal=(0.438957 0.213301 0.872823)} Vertex 6396 0.754027 17.7884 4.09338 {normal=(0.420773 -0.465436 0.778665)} Vertex 6397 0.75423 19.2496 3.46481 {normal=(0.324926 0.515553 0.792861)} Vertex 6398 0.755772 17.5275 -4.58455 {normal=(0.959772 -0.14811 0.23854)} Vertex 6399 0.756553 17.6663 4.09154 {normal=(0.413095 0.264698 0.871371)} Vertex 6400 0.757353 24.0278 -4.15956 {normal=(0.111908 0.921017 0.373101)} Vertex 6401 0.757853 18.0339 4.2534 {normal=(0.800415 0.0248737 0.59893)} Vertex 6402 0.757865 20.9187 3.69092 {normal=(0.183927 0.521294 0.833321)} Vertex 6403 0.757883 19.365 3.47897 {normal=(0.070165 -0.125523 0.989606)} Vertex 6404 0.757957 15.7468 3.97779 {normal=(0.453694 -0.0940203 0.886184)} Vertex 6405 0.758546 16.3321 -5.30589 {normal=(0.931449 -0.335288 0.141368)} Vertex 6406 0.75926 19.2531 3.45624 {normal=(0.598716 0.726776 0.336654)} Vertex 6407 0.759395 15.562 3.94887 {normal=(0.454553 -0.230745 0.860313)} Vertex 6408 0.759417 19.4081 3.37267 {normal=(-0.226088 0.0715402 0.971476)} Vertex 6409 0.759418 19.2113 3.37267 {normal=(-0.226092 -0.0714575 0.971482)} Vertex 6410 0.759552 14.1938 3.34554 {normal=(0.544972 -0.767822 0.336832)} Vertex 6411 0.760253 18.2645 4.02198 {normal=(0.814198 0.577336 -0.0613621)} Vertex 6412 0.761286 15.4971 -3.70517 {normal=(0.17269 -0.594228 -0.785539)} Vertex 6413 0.761554 14.1017 3.00703 {normal=(0.416197 -0.897986 0.142833)} Vertex 6414 0.761774 19.2549 2.91181 {normal=(0.633764 0.671901 0.383265)} Vertex 6415 0.761774 19.2549 3.27191 {normal=(0.681243 0.732005 0.00870806)} Vertex 6416 0.762128 18.613 3.72161 {normal=(0.489732 0.323339 0.8097)} Vertex 6417 0.762632 17.5277 4.13305 {normal=(0.378173 0.237829 0.894663)} Vertex 6418 0.764469 17.8306 4.13953 {normal=(0.450123 -0.692141 0.564207)} Vertex 6419 0.764492 14.5208 3.77918 {normal=(0.601271 -0.306307 0.738004)} Vertex 6420 0.765365 22.7632 -5.31193 {normal=(0.187529 -0.861312 -0.472202)} Vertex 6421 0.766695 -17.7746 0.381241 {normal=(-0.840732 -0.164061 0.515997)} Vertex 6422 0.768252 20.3082 2.93792 {normal=(-0.217416 0.722039 0.656802)} Vertex 6423 0.768262 18.3111 2.93797 {normal=(-0.217365 -0.722024 0.656836)} Vertex 6424 0.768988 18.2312 4.1323 {normal=(0.781667 0.551393 0.291483)} Vertex 6425 0.769305 20.1724 4.03917 {normal=(0.205887 -0.0202184 0.978367)} Vertex 6426 0.769356 -11.5418 3.0213 Vertex 6427 0.769639 13.6351 0.884489 {normal=(0.235809 -0.250606 0.938931)} Vertex 6428 0.771035 17.1111 3.99207 {normal=(0.237186 -0.948833 0.208468)} Vertex 6429 0.774491 23.7353 -5.4033 {normal=(0.342152 0.710007 -0.615485)} Vertex 6430 0.77479 20.5627 2.53863 {normal=(-0.212079 0.904858 0.369126)} Vertex 6431 0.774803 18.0566 2.5387 {normal=(-0.212015 -0.904857 0.369167)} Vertex 6432 0.775265 18.4818 3.76523 {normal=(0.459956 0.257329 0.849837)} Vertex 6433 0.77529 18.0981 4.21967 {normal=(0.802167 0.133428 0.582001)} Vertex 6434 0.7761 18.2337 3.80326 {normal=(0.407145 0.078439 0.909989)} Vertex 6435 0.776389 19.8854 3.25152 {normal=(-0.21269 0.417476 0.883446)} Vertex 6436 0.776394 18.7339 3.25155 {normal=(-0.212681 -0.417379 0.883494)} Vertex 6437 0.777287 20.065 4.01618 {normal=(0.278498 -0.181217 0.943186)} Vertex 6438 0.777325 24.0858 -4.43327 {normal=(0.141413 0.987793 0.0653254)} Vertex 6439 0.777336 17.9144 4.19376 {normal=(0.808787 -0.287114 0.513253)} Vertex 6440 0.778288 19.3558 3.46824 {normal=(0.358522 -0.350774 0.865113)} Vertex 6441 0.778809 18.1312 3.86101 {normal=(0.890721 0.452749 0.0404216)} Vertex 6442 0.778864 18.1315 3.88108 {normal=(0.893373 0.446321 -0.0517825)} Vertex 6443 0.780044 18.2155 3.97267 {normal=(0.829456 0.462305 -0.313492)} Vertex 6444 0.781374 18.1311 3.83348 {normal=(0.880445 0.44396 0.166483)} Vertex 6445 0.781535 18.132 3.8937 {normal=(0.876561 0.402689 -0.263595)} Vertex 6446 0.781789 19.504 3.36717 {normal=(-0.209814 0.141285 0.96748)} Vertex 6447 0.78179 19.1153 3.36718 {normal=(-0.209815 -0.141248 0.967485)} Vertex 6448 0.781929 18.16 3.92423 {normal=(0.813695 0.388559 -0.432346)} Vertex 6449 0.782283 -17.856 -4.60472 {normal=(-0.878249 0.145416 -0.455558)} Vertex 6450 0.782565 17.4685 -4.40807 {normal=(0.877538 -0.076742 -0.473326)} Vertex 6451 0.783415 22.2008 2.82662 {normal=(0.184259 0.592007 0.784587)} Vertex 6452 0.78471 17.7744 4.05001 {normal=(0.712325 -0.139487 0.687849)} Vertex 6453 0.785021 14.2566 3.42863 {normal=(0.62004 -0.677236 0.396108)} Vertex 6454 0.785469 17.8043 4.0781 {normal=(0.777032 -0.438584 0.451515)} Vertex 6455 0.785596 18.1344 3.81547 {normal=(0.801343 0.348919 0.485906)} Vertex 6456 0.786565 18.1615 4.18147 {normal=(0.814722 0.331545 0.475716)} Vertex 6457 0.786984 21.9814 -3.45977 {normal=(0.876123 0.476344 -0.0741929)} Vertex 6458 0.787033 16.4849 -5.48485 {normal=(0.957309 -0.0464737 -0.285306)} Vertex 6459 0.787116 19.9621 3.99086 {normal=(0.255896 -0.21646 0.942158)} Vertex 6460 0.789355 19.0623 3.46438 {normal=(0.152375 0.502031 0.851321)} Vertex 6461 0.791094 19.3501 3.45826 {normal=(0.537156 -0.509817 0.671975)} Vertex 6462 0.79155 19.6465 3.68037 {normal=(0.222671 -0.802422 0.553657)} Vertex 6463 0.79213 17.7699 4.04131 {normal=(0.64597 0.0941235 0.757538)} Vertex 6464 0.79216 18.6203 -4.28866 {normal=(0.994231 -0.0836604 0.0671285)} Vertex 6465 0.794057 19.6012 -4.79626 {normal=(0.63675 -0.0495384 -0.769477)} Vertex 6466 0.794408 17.8595 4.12558 {normal=(0.804156 -0.411869 0.428599)} Vertex 6467 0.796085 19.5886 3.58678 {normal=(0.334108 -0.793072 0.509322)} Vertex 6468 0.796132 16.0664 3.54027 {normal=(0.494449 0.157803 0.854762)} Vertex 6469 0.796302 19.3479 3.44905 {normal=(0.70077 -0.663797 0.261333)} Vertex 6470 0.796987 23.4393 -5.63853 {normal=(0.44609 0.189841 -0.874622)} Vertex 6471 0.797061 18.3683 3.78154 {normal=(0.408445 0.144928 0.901204)} Vertex 6472 0.79748 19.7258 3.78608 {normal=(0.199547 -0.807471 0.555132)} Vertex 6473 0.798125 18.1071 3.81153 {normal=(0.694688 0.392744 0.602627)} Vertex 6474 0.798147 22.0524 -3.38713 Vertex 6475 0.798531 16.0569 3.54436 {normal=(0.431648 0.684655 0.587305)} Vertex 6476 0.798789 19.8635 3.96322 {normal=(0.249483 -0.396716 0.883388)} Vertex 6477 0.798905 19.3468 2.90429 {normal=(0.68514 -0.611784 0.395352)} Vertex 6478 0.798905 19.3468 3.26439 {normal=(0.729753 -0.683677 0.00683606)} Vertex 6479 0.800678 18.131 3.80075 {normal=(0.496157 0.191451 0.846862)} Vertex 6480 0.801117 17.769 4.02946 {normal=(0.704888 0.13215 0.6969)} Vertex 6481 0.80149 19.7777 3.86656 {normal=(0.224416 -0.860594 0.457182)} Vertex 6482 0.802854 14.3362 3.53674 {normal=(0.674136 -0.616408 0.406918)} Vertex 6483 0.803581 19.8021 3.92179 {normal=(0.253997 -0.751193 0.609258)} Vertex 6484 0.805236 13.1186 0.731077 {normal=(0.229517 -0.276685 0.933149)} Vertex 6485 0.80534 18.0772 3.83447 {normal=(0.790039 0.485551 0.37427)} Vertex 6486 0.805705 17.975 4.16889 {normal=(0.868014 -0.129802 0.479274)} Vertex 6487 0.805893 17.3696 4.14462 {normal=(0.408571 0.0640923 0.910474)} Vertex 6488 0.805926 16.2275 3.56004 {normal=(0.436811 -0.147178 0.887432)} Vertex 6489 0.808475 21.3945 3.3491 {normal=(0.203465 0.540461 0.816397)} Vertex 6490 0.809211 16.6074 -5.14078 {normal=(0.954016 -0.219326 0.204329)} Vertex 6491 0.811083 19.5522 3.5053 {normal=(0.482694 -0.723362 0.493715)} Vertex 6492 0.811949 18.5744 -4.11926 {normal=(0.868547 0.0578906 -0.492215)} Vertex 6493 0.813052 14.4327 3.66987 {normal=(0.695634 -0.494659 0.520966)} Vertex 6494 0.81422 14.9991 3.79755 {normal=(0.50215 0.0331714 0.864144)} Vertex 6495 0.816626 17.8162 4.01733 {normal=(0.875428 -0.221807 0.42945)} Vertex 6496 0.816907 15.9419 -3.97719 {normal=(0.192548 -0.502068 -0.843121)} Vertex 6497 0.818329 17.8515 4.04762 {normal=(0.894333 -0.334099 0.297569)} Vertex 6498 0.818462 19.5952 3.35815 {normal=(-0.183162 0.207548 0.960924)} Vertex 6499 0.818464 19.0242 3.35816 {normal=(-0.183141 -0.207529 0.960932)} Vertex 6500 0.81991 18.1744 4.06893 {normal=(0.888525 0.453039 0.0726543)} Vertex 6501 0.820382 19.5324 3.4625 {normal=(0.480081 -0.57473 0.662727)} Vertex 6502 0.820754 17.8082 4.00942 {normal=(0.832291 -0.080062 0.548526)} Vertex 6503 0.823325 19.0879 3.45936 {normal=(-0.0536094 0.342017 0.938163)} Vertex 6504 0.823472 17.6835 4.04949 {normal=(0.552796 0.316111 0.771032)} Vertex 6505 0.823982 19.5292 3.45835 {normal=(0.218157 -0.288043 0.932437)} Vertex 6506 0.824439 19.101 3.45543 {normal=(-0.159281 0.139781 0.977288)} Vertex 6507 0.825037 17.0447 3.60442 {normal=(0.4244 -0.277624 0.861864)} Vertex 6508 0.825084 21.6184 -4.03195 {normal=(0.546334 0.569602 -0.614063)} Vertex 6509 0.825647 18.024 3.87183 {normal=(0.82745 0.488909 0.276215)} Vertex 6510 0.825864 17.9142 4.1003 {normal=(0.896505 -0.268303 0.352552)} Vertex 6511 0.826748 17.2486 4.12981 {normal=(0.462881 -0.138484 0.875536)} Vertex 6512 0.826855 17.1518 4.09573 {normal=(0.374703 -0.795902 0.475539)} Vertex 6513 0.827351 18.0363 4.14044 {normal=(0.888812 -0.0211247 0.457785)} Vertex 6514 0.82743 16.9546 3.60786 {normal=(0.395689 0.052941 0.916857)} Vertex 6515 0.827815 19.5257 3.45797 {normal=(-0.194167 0.132597 0.971966)} Vertex 6516 0.827901 17.053 3.60932 {normal=(0.347303 -0.796702 0.494618)} Vertex 6517 0.827914 16.5403 3.60367 {normal=(0.406684 -0.115411 0.90625)} Vertex 6518 0.828093 17.8056 3.99796 {normal=(0.807206 0.00190722 0.590267)} Vertex 6519 0.828724 23.6424 -5.47334 {normal=(0.404858 0.644469 -0.648653)} Vertex 6520 0.828977 19.111 3.45726 {normal=(-0.305448 -0.251167 0.918486)} Vertex 6521 0.830435 17.7915 3.99121 {normal=(0.720564 0.154773 0.675894)} Vertex 6522 0.83071 16.7525 -5.34922 {normal=(0.966431 0.0051835 -0.256875)} Vertex 6523 0.831882 19.5219 3.46133 {normal=(-0.386041 0.342675 0.856473)} Vertex 6524 0.833735 17.176 4.11351 {normal=(0.484269 -0.421909 0.76647)} Vertex 6525 0.834912 16.9218 -5.04656 {normal=(0.976473 -0.11179 0.1844)} Vertex 6526 0.835082 16.7827 3.61961 {normal=(0.394712 -0.00229014 0.918802)} Vertex 6527 0.835847 17.0162 -5.27256 {normal=(0.959269 0.0565069 -0.276787)} Vertex 6528 0.836423 17.9963 3.89708 {normal=(0.889518 0.412436 0.196608)} Vertex 6529 0.83694 19.1177 3.46486 {normal=(-0.337167 -0.375046 0.863515)} Vertex 6530 0.837669 17.9941 3.91019 {normal=(0.957465 0.242127 -0.156956)} Vertex 6531 0.83823 18.7425 -4.76648 {normal=(0.941414 0.0297634 -0.335936)} Vertex 6532 0.838353 17.6796 -5.07831 {normal=(0.950132 0.0825182 -0.300733)} Vertex 6533 0.839312 22.2115 -3.25307 Vertex 6534 0.839972 23.3388 -3.63353 {normal=(0.481756 0.0976654 0.870846)} Vertex 6535 0.840061 18.0312 3.94688 {normal=(0.920565 0.235779 -0.311398)} Vertex 6536 0.84061 23.5293 0.52043 {normal=(0.196767 0.979223 0.0490492)} Vertex 6537 0.840872 17.8591 3.98035 {normal=(0.943006 -0.20548 0.261759)} Vertex 6538 0.841621 19.5112 3.47 {normal=(-0.381075 0.346997 0.856957)} Vertex 6539 0.84213 16.0065 3.62084 {normal=(0.330844 0.871208 0.362682)} Vertex 6540 0.842275 18.0983 4.10842 {normal=(0.931873 0.203382 0.300414)} Vertex 6541 0.8426 17.8527 3.97137 {normal=(0.891501 -0.00121282 0.453017)} Vertex 6542 0.843211 22.5249 -3.00634 Vertex 6543 0.843352 17.8981 4.01384 {normal=(0.943605 -0.254666 0.211553)} Vertex 6544 0.843601 18.1077 4.00712 {normal=(0.925949 0.318872 -0.202336)} Vertex 6545 0.844159 19.1311 3.47576 {normal=(-0.330647 -0.369876 0.868254)} Vertex 6546 0.845023 20.6672 3.82453 {normal=(0.212513 0.45788 0.863241)} Vertex 6547 0.845981 21.9821 -3.61898 {normal=(0.737901 0.630786 -0.240025)} Vertex 6548 0.846421 23.5397 -5.56298 {normal=(0.463459 0.480163 -0.744748)} Vertex 6549 0.846475 15.3175 3.76127 {normal=(0.464557 -0.30232 0.83234)} Vertex 6550 0.847697 20.4835 2.72752 {normal=(-0.1597 0.848113 0.505174)} Vertex 6551 0.84771 18.1358 2.72758 {normal=(-0.159701 -0.848104 0.505188)} Vertex 6552 0.850039 17.9696 4.07183 {normal=(0.93821 -0.175485 0.298275)} Vertex 6553 0.850161 17.7012 4.01621 {normal=(0.618966 0.34001 0.708008)} Vertex 6554 0.850634 19.1513 3.48996 {normal=(-0.28173 -0.257383 0.924328)} Vertex 6555 0.851178 18.0397 3.81936 {normal=(0.563625 0.52829 0.635009)} Vertex 6556 0.852613 15.2878 3.75587 {normal=(0.491034 -0.00241332 0.871137)} Vertex 6557 0.85369 17.6161 -4.84768 {normal=(0.989876 -0.0581705 0.129469)} Vertex 6558 0.855053 17.8453 3.95586 {normal=(0.744041 0.176296 0.644455)} Vertex 6559 0.857033 19.4937 3.48398 {normal=(-0.229982 0.190554 0.954357)} Vertex 6560 0.857447 17.9032 3.93908 {normal=(0.996452 -0.0615348 0.0574266)} Vertex 6561 0.857507 20.6779 2.07747 {normal=(-0.132735 0.984635 0.113469)} Vertex 6562 0.857522 17.9414 2.07754 {normal=(-0.132682 -0.984617 0.113684)} Vertex 6563 0.857668 17.9034 3.92718 {normal=(0.875797 0.236351 0.420853)} Vertex 6564 0.858285 15.3468 3.77413 {normal=(0.410708 -0.586222 0.698329)} Vertex 6565 0.85884 -20.0577 -5.38738 {normal=(-0.868265 -0.0874453 -0.488333)} Vertex 6566 0.859508 12.6988 0.585421 {normal=(0.221223 -0.298276 0.928489)} Vertex 6567 0.860536 17.944 3.97675 {normal=(0.998684 -0.0400975 -0.0319799)} Vertex 6568 0.861276 21.9714 -3.55436 {normal=(0.884424 0.404449 0.232842)} Vertex 6569 0.86168 19.1715 3.49385 {normal=(-0.111568 0.134622 0.984596)} Vertex 6570 0.861906 21.9578 -3.41673 {normal=(0.414481 0.440757 -0.796203)} Vertex 6571 0.862715 18.0658 3.7959 {normal=(0.438509 0.396413 0.806577)} Vertex 6572 0.863465 18.935 3.51255 {normal=(0.13255 0.424519 0.895664)} Vertex 6573 0.864426 15.1894 3.75266 {normal=(0.502694 0.0569061 0.862589)} Vertex 6574 0.865548 18.6902 -4.54415 {normal=(0.993952 -0.0801618 0.0750624)} Vertex 6575 0.866932 18.0258 4.04017 {normal=(0.996905 0.0501515 0.0605345)} Vertex 6576 0.867205 14.1491 2.49111 {normal=(0.340328 -0.933432 -0.113495)} Vertex 6577 0.867391 23.1217 -3.7419 {normal=(0.806584 -0.255389 0.533103)} Vertex 6578 0.867803 18.0886 3.78571 {normal=(0.310522 0.197852 0.929748)} Vertex 6579 0.868534 19.6793 3.34584 {normal=(-0.146771 0.268671 0.951984)} Vertex 6580 0.868538 18.94 3.34585 {normal=(-0.146787 -0.268651 0.951987)} Vertex 6581 0.869952 20.1824 3.08313 {normal=(-0.144378 0.631786 0.761578)} Vertex 6582 0.869961 18.4369 3.08318 {normal=(-0.144212 -0.631767 0.761626)} Vertex 6583 0.870736 19.9684 3.22833 {normal=(-0.144322 0.477637 0.866622)} Vertex 6584 0.870743 18.6509 3.22836 {normal=(-0.144234 -0.4776 0.866657)} Vertex 6585 0.873541 19.4765 3.48542 {normal=(0.102249 -0.169425 0.980225)} Vertex 6586 0.875654 20.5013 3.89383 {normal=(0.170621 0.443407 0.879931)} Vertex 6587 0.875765 -21.5005 -3.24821 Vertex 6588 0.876386 22.6668 -4.16744 {normal=(0.505625 -0.833344 0.223343)} Vertex 6589 0.876392 17.5294 4.08131 {normal=(0.529113 0.273763 0.803177)} Vertex 6590 0.877295 19.192 3.48745 {normal=(0.0233133 0.439165 0.898104)} Vertex 6591 0.877506 17.0845 3.69421 {normal=(0.252503 -0.947562 0.19588)} Vertex 6592 0.878233 17.8369 3.93381 {normal=(0.634944 0.278483 0.72062)} Vertex 6593 0.882313 22.6888 -2.84609 {normal=(0.343155 0.854992 -0.388887)} Vertex 6594 0.882921 17.96 3.86165 {normal=(0.616247 0.512754 0.597765)} Vertex 6595 0.886827 14.7413 3.73469 {normal=(0.656789 -0.165867 0.735606)} Vertex 6596 0.886938 19.2049 3.47988 {normal=(0.115569 0.688492 0.715976)} Vertex 6597 0.886984 18.1661 3.77166 {normal=(0.238461 0.0768257 0.968109)} Vertex 6598 0.888333 21.8398 3.04437 {normal=(0.180472 0.54252 0.820428)} Vertex 6599 0.890209 17.905 3.8949 {normal=(0.638172 0.36921 0.675589)} Vertex 6600 0.890607 19.2102 3.47115 {normal=(0.221865 0.93159 0.287951)} Vertex 6601 0.891147 19.4597 3.47431 {normal=(0.310746 -0.40097 0.861777)} Vertex 6602 0.892338 19.4965 -4.12051 {normal=(0.97984 -0.181756 0.0829335)} Vertex 6603 0.892442 19.2129 2.92664 {normal=(0.240391 0.931673 0.272392)} Vertex 6604 0.892442 19.2129 3.28674 {normal=(0.260766 0.96537 0.00786141)} Vertex 6605 0.896805 22.8432 -3.97151 {normal=(0.794704 -0.418756 0.439419)} Vertex 6606 0.897828 17.5376 4.05795 {normal=(0.640905 0.302223 0.705622)} Vertex 6607 0.898065 16.5687 -4.29868 {normal=(0.324393 -0.264603 -0.90816)} Vertex 6608 0.899411 14.1819 3.07855 {normal=(0.503702 -0.833636 0.226572)} Vertex 6609 0.899847 15.405 3.80731 {normal=(0.483808 -0.486583 0.727438)} Vertex 6610 0.900037 21.5826 -3.62903 {normal=(0.97783 0.209346 -0.00472747)} Vertex 6611 0.900802 19.4737 -3.95306 {normal=(0.899948 -0.0856174 -0.427509)} Vertex 6612 0.901436 -12.4844 2.49631 Vertex 6613 0.902047 19.4493 3.46421 {normal=(0.455816 -0.567837 0.685415)} Vertex 6614 0.906162 20.3993 3.94512 {normal=(0.0147656 0.568318 0.822677)} Vertex 6615 0.906238 19.4454 3.45509 {normal=(0.612461 -0.739004 0.280649)} Vertex 6616 0.906353 23.647 -3.72296 {normal=(0.308365 0.427112 0.849992)} Vertex 6617 0.907109 17.4102 4.09573 {normal=(0.551107 0.123373 0.825264)} Vertex 6618 0.907557 22.6232 -4.50509 {normal=(0.355396 -0.933205 0.0531176)} Vertex 6619 0.908335 19.4435 2.91038 {normal=(0.618412 -0.704508 0.348188)} Vertex 6620 0.908335 19.4435 3.27048 {normal=(0.643859 -0.765106 0.00760023)} Vertex 6621 0.911833 20.661 2.28727 {normal=(-0.11285 0.975625 0.188205)} Vertex 6622 0.911847 17.9583 2.28734 {normal=(-0.112821 -0.975607 0.188315)} Vertex 6623 0.914204 12.2879 0.437024 {normal=(0.210973 -0.310921 0.926725)} Vertex 6624 0.914602 14.1519 2.79114 {normal=(0.439737 -0.897469 0.0343693)} Vertex 6625 0.915141 12.0577 -0.700179 {normal=(-0.0028821 -0.909888 -0.414844)} Vertex 6626 0.920253 18.2985 3.75376 {normal=(0.230454 0.146164 0.962043)} Vertex 6627 0.920308 17.7425 3.93976 {normal=(0.60179 0.325245 0.729427)} Vertex 6628 0.923131 19.5597 -4.60358 {normal=(0.920479 -0.143295 -0.363574)} Vertex 6629 0.924916 18.5525 -4.03593 {normal=(0.58314 0.155938 -0.797265)} Vertex 6630 0.925917 17.4136 4.07733 {normal=(0.685526 0.150999 0.712217)} Vertex 6631 0.925922 16.3379 -2.6733 {normal=(0.436758 0.210172 -0.874683)} Vertex 6632 0.926029 20.3755 2.89913 {normal=(-0.103381 0.770694 0.628763)} Vertex 6633 0.926039 18.2438 2.89918 {normal=(-0.10336 -0.770642 0.62883)} Vertex 6634 0.926925 15.9152 3.7697 {normal=(0.34146 0.857334 0.385207)} Vertex 6635 0.92928 17.2854 4.08205 {normal=(0.589458 -0.101184 0.801437)} Vertex 6636 0.930773 19.7544 3.33053 {normal=(-0.101584 0.323238 0.94085)} Vertex 6637 0.930777 18.865 3.33056 {normal=(-0.101553 -0.323151 0.940883)} Vertex 6638 0.93299 22.6073 -2.53077 {normal=(0.312071 0.949964 0.0134179)} Vertex 6639 0.933409 15.7248 -2.83447 {normal=(0.440629 0.253658 -0.861106)} Vertex 6640 0.934067 17.4389 -4.31825 {normal=(0.487934 0.0836058 -0.868868)} Vertex 6641 0.935837 22.6128 -2.49546 {normal=(0.315314 0.887745 -0.33539)} Vertex 6642 0.936424 -12.7659 2.51495 Vertex 6643 0.936545 20.3613 3.9784 {normal=(0.107027 0.441891 0.890661)} Vertex 6644 0.938449 18.8258 3.55761 {normal=(0.128201 0.341709 0.931021)} Vertex 6645 0.940664 18.4314 3.71602 {normal=(0.269287 0.290465 0.918213)} Vertex 6646 0.942642 23.9251 -5.04869 {normal=(0.31132 0.856295 -0.412115)} Vertex 6647 0.945681 19.6761 3.61122 {normal=(0.471179 -0.82514 0.311665)} Vertex 6648 0.947478 18.6965 3.60565 {normal=(0.21625 0.325593 0.920448)} Vertex 6649 0.948216 18.5651 3.65845 {normal=(0.269817 0.345344 0.898853)} Vertex 6650 0.948483 21.5699 -3.90335 {normal=(0.855015 0.403986 -0.325184)} Vertex 6651 0.948489 19.7166 3.69852 {normal=(0.391183 -0.788243 0.475025)} Vertex 6652 0.949385 19.6603 3.52017 {normal=(0.550823 -0.801909 0.23138)} Vertex 6653 0.950101 21.102 3.50996 {normal=(0.239161 0.531623 0.812514)} Vertex 6654 0.950309 22.6211 -2.61506 {normal=(0.271908 0.932889 0.236186)} Vertex 6655 0.951343 14.2131 2.25414 {normal=(0.23118 -0.955561 -0.18292)} Vertex 6656 0.951543 15.2083 -2.98788 {normal=(0.447926 0.30027 -0.84214)} Vertex 6657 0.952371 -13.4461 -3.2809 Vertex 6658 0.952535 20.2826 3.98684 {normal=(0.322529 0.0402376 0.945704)} Vertex 6659 0.95267 19.6503 3.47224 {normal=(0.499096 -0.687646 0.5273)} Vertex 6660 0.952752 15.5157 3.80768 {normal=(0.564992 -0.274761 0.778004)} Vertex 6661 0.952852 23.1127 -5.52018 {normal=(0.42475 -0.301095 -0.853774)} Vertex 6662 0.95413 20.1634 3.97044 {normal=(0.351666 -0.10894 0.929765)} Vertex 6663 0.955067 17.9078 3.84226 {normal=(0.577033 0.379554 0.723167)} Vertex 6664 0.955538 19.6461 3.46742 {normal=(0.226514 -0.363355 0.903695)} Vertex 6665 0.955891 19.5248 -4.37833 {normal=(0.979491 -0.195116 0.0502775)} Vertex 6666 0.957809 19.7819 3.78207 {normal=(0.375757 -0.759147 0.531509)} Vertex 6667 0.957967 20.0474 3.95362 {normal=(0.299446 -0.118598 0.946714)} Vertex 6668 0.958788 19.6418 3.46648 {normal=(-0.135217 0.0816474 0.987446)} Vertex 6669 0.961312 20.19 -4.79822 {normal=(0.655598 0.0392005 -0.754092)} Vertex 6670 0.96242 19.6372 3.46941 {normal=(-0.313804 0.321414 0.893432)} Vertex 6671 0.963622 19.8305 3.84983 {normal=(0.401846 -0.776506 0.485343)} Vertex 6672 0.964046 19.9346 3.93639 {normal=(0.30864 -0.271188 0.911701)} Vertex 6673 0.965931 19.8623 3.90179 {normal=(0.391829 -0.628111 0.67227)} Vertex 6674 0.96678 19.3097 3.40736 {normal=(-0.07675 8.64157e-06 0.99705)} Vertex 6675 0.96862 17.9685 3.7937 {normal=(0.527348 0.449961 0.720722)} Vertex 6676 0.970003 20.6109 2.49064 {normal=(-0.0710382 0.939748 0.334406)} Vertex 6677 0.970016 18.0084 2.49071 {normal=(-0.0709653 -0.939738 0.334451)} Vertex 6678 0.970954 19.6236 3.47732 {normal=(-0.307748 0.324768 0.894325)} Vertex 6679 0.971654 20.8624 -4.54346 {normal=(0.644185 0.386237 -0.660187)} Vertex 6680 0.971898 19.3766 3.4061 {normal=(-0.0729961 0.0489165 0.996132)} Vertex 6681 0.971899 19.2427 3.4061 {normal=(-0.0730146 -0.0488626 0.996133)} Vertex 6682 0.972742 15.8556 3.84971 {normal=(0.453433 0.650565 0.609232)} Vertex 6683 0.972917 15.7142 3.84687 {normal=(0.543175 -0.180364 0.820018)} Vertex 6684 0.973467 21.558 -3.76905 {normal=(0.975086 0.174894 0.136452)} Vertex 6685 0.973641 11.8859 0.285886 {normal=(0.202188 -0.321667 0.925014)} Vertex 6686 0.973851 14.645 3.59662 {normal=(0.771196 -0.334555 0.5416)} Vertex 6687 0.973853 17.1392 3.85909 {normal=(0.290108 -0.934636 0.205655)} Vertex 6688 0.976529 20.0352 3.20232 {normal=(-0.0676412 0.52603 0.847772)} Vertex 6689 0.976537 18.5842 3.20235 {normal=(-0.06756 -0.526008 0.847792)} Vertex 6690 0.977179 16.7837 -2.56079 {normal=(0.431685 0.100637 -0.896393)} Vertex 6691 0.978268 12.9034 -2.28661 {normal=(-0.0557437 -0.830099 -0.554822)} Vertex 6692 0.979581 15.8275 3.86088 {normal=(0.542265 0.147269 0.8272)} Vertex 6693 0.980573 21.5628 -3.53756 {normal=(0.550794 0.358112 -0.753911)} Vertex 6694 0.981275 17.5621 3.97371 {normal=(0.638169 0.281101 0.716744)} Vertex 6695 0.981284 19.4564 -3.87598 {normal=(0.636613 0.00947284 -0.771125)} Vertex 6696 0.98185 14.2785 3.1689 {normal=(0.637421 -0.676264 0.369272)} Vertex 6697 0.982692 17.9934 3.77084 {normal=(0.458656 0.309731 0.832887)} Vertex 6698 0.984394 19.6012 3.49021 {normal=(-0.174399 0.16327 0.971045)} Vertex 6699 0.985686 14.9699 3.68111 {normal=(0.676812 -0.0683784 0.732974)} Vertex 6700 0.987125 19.442 3.40235 {normal=(-0.0618904 0.0966529 0.993392)} Vertex 6701 0.987128 19.1774 3.40236 {normal=(-0.0618804 -0.0965603 0.993402)} Vertex 6702 0.987792 22.6542 -2.74836 {normal=(0.368483 0.92925 -0.026738)} Vertex 6703 0.988638 14.2623 2.02183 {normal=(0.185597 -0.961001 -0.205013)} Vertex 6704 0.989805 -19.9874 -0.37697 Vertex 6705 0.991334 14.7885 -3.13354 {normal=(0.449806 0.338526 -0.826483)} Vertex 6706 0.992853 18.0139 3.76184 {normal=(0.313668 0.0830524 0.945894)} Vertex 6707 0.994924 -12.9984 2.40676 Vertex 6708 0.995076 23.7931 -3.88523 {normal=(0.431336 0.622756 0.652782)} Vertex 6709 0.997373 19.5787 3.49046 {normal=(0.114033 -0.196288 0.973893)} Vertex 6710 0.997866 22.7864 -2.17998 {normal=(0.251109 0.828618 -0.500336)} Vertex 6711 0.998805 -9.53699 3.74189 {normal=(0.176587 -0.242163 0.954031)} Vertex 6712 1.00004 23.3818 1.15206 {normal=(0.260568 0.919287 0.294984)} Vertex 6713 1.00364 19.8185 3.31262 {normal=(-0.0485787 0.369849 0.927821)} Vertex 6714 1.00365 18.8009 3.31264 {normal=(-0.0485751 -0.369757 0.927858)} Vertex 6715 1.00437 11.6543 0.192958 Vertex 6716 1.00437 11.6747 0.20453 {normal=(0.200104 -0.406806 0.891329)} Vertex 6717 1.0046 22.6795 -4.73149 {normal=(0.445689 -0.892531 -0.0689213)} Vertex 6718 1.0062 14.5139 3.42066 {normal=(0.765745 -0.463907 0.44545)} Vertex 6719 1.00671 21.5235 3.2218 {normal=(0.187016 0.523676 0.831137)} Vertex 6720 1.00785 20.2413 3.04923 {normal=(-0.0444653 0.674414 0.737014)} Vertex 6721 1.00786 18.3781 3.04928 {normal=(-0.0444873 -0.674295 0.737121)} Vertex 6722 1.00887 14.3917 3.27809 {normal=(0.715985 -0.542464 0.43943)} Vertex 6723 1.00989 19.5563 3.47807 {normal=(0.299271 -0.418845 0.857325)} Vertex 6724 1.01209 19.504 3.39621 {normal=(-0.043635 0.141941 0.988913)} Vertex 6725 1.01209 19.1153 3.39622 {normal=(-0.0436859 -0.141905 0.988916)} Vertex 6726 1.01783 19.5426 3.46731 {normal=(0.43041 -0.578626 0.692776)} Vertex 6727 1.01798 14.3211 1.77717 {normal=(0.134684 -0.958691 -0.250545)} Vertex 6728 1.01869 17.4082 3.98648 {normal=(0.692323 0.12136 0.711309)} Vertex 6729 1.01993 -13.4847 2.14227 {normal=(-0.749591 -0.135404 0.647904)} Vertex 6730 1.0212 19.5377 3.45818 {normal=(0.577854 -0.762516 0.290954)} Vertex 6731 1.02288 19.5352 2.91346 {normal=(0.578328 -0.754348 0.310637)} Vertex 6732 1.02288 19.5352 3.27356 {normal=(0.606225 -0.795253 0.00798108)} Vertex 6733 1.02639 17.1791 3.94962 {normal=(0.47607 -0.769539 0.425637)} Vertex 6734 1.02688 18.088 3.75221 {normal=(0.199632 -0.00910921 0.979829)} Vertex 6735 1.03058 20.5288 2.68256 {normal=(-0.0275597 0.880841 0.47261)} Vertex 6736 1.0306 18.0905 2.68262 {normal=(-0.0274411 -0.880853 0.472593)} Vertex 6737 1.03115 20.8429 3.6508 {normal=(0.304723 0.488511 0.817619)} Vertex 6738 1.03255 17.2806 3.97807 {normal=(0.711304 -0.0361224 0.701955)} Vertex 6739 1.03391 17.8072 3.82015 {normal=(0.608243 0.301686 0.734184)} Vertex 6740 1.03512 17.2042 3.96579 {normal=(0.655734 -0.357341 0.665072)} Vertex 6741 1.03677 14.3776 -3.28193 {normal=(0.444213 0.359461 -0.820648)} Vertex 6742 1.03936 14.3893 1.52017 {normal=(0.0976119 -0.947693 -0.30389)} Vertex 6743 1.04273 16.023 3.39258 {normal=(0.516908 0.141226 0.844311)} Vertex 6744 1.0428 23.0726 1.74578 {normal=(0.269826 0.842659 0.465962)} Vertex 6745 1.04507 16.0136 3.39636 {normal=(0.439685 0.669708 0.598472)} Vertex 6746 1.04617 19.5613 3.38783 {normal=(-0.0188169 0.183698 0.982803)} Vertex 6747 1.04617 19.0581 3.38785 {normal=(-0.0187883 -0.183683 0.982806)} Vertex 6748 1.04901 23.4883 -3.77377 {normal=(0.691756 0.0469009 0.720607)} Vertex 6749 1.04912 20.1665 -3.9095 {normal=(0.916758 -0.0614616 -0.394687)} Vertex 6750 1.05163 20.6174 3.77163 {normal=(0.297298 0.494496 0.816754)} Vertex 6751 1.05631 20.1562 -4.08011 {normal=(0.979849 -0.14906 0.132953)} Vertex 6752 1.05887 20.8516 -3.91628 {normal=(0.993266 0.0489085 0.105027)} Vertex 6753 1.0589 16.1889 3.41903 {normal=(0.477658 -0.177711 0.860385)} Vertex 6754 1.06107 15.2065 3.61844 {normal=(0.65246 -0.0911479 0.752322)} Vertex 6755 1.06184 15.328 3.61275 {normal=(-0.0739409 -0.174529 0.981872)} Vertex 6756 1.06795 20.6949 2.02573 {normal=(0.0187324 0.996917 0.076193)} Vertex 6757 1.06796 17.9243 2.0258 {normal=(0.0187842 -0.996899 0.0764118)} Vertex 6758 1.07365 15.3573 3.62561 {normal=(0.53336 -0.348338 0.770836)} Vertex 6759 1.07571 20.8629 -3.77099 {normal=(0.786809 0.209592 -0.580519)} Vertex 6760 1.07594 -13.1685 2.17756 Vertex 6761 1.07852 20.4892 3.85057 {normal=(0.10845 0.660109 0.7433)} Vertex 6762 1.07942 14.2363 2.55803 {normal=(0.435293 -0.900254 0.00796472)} Vertex 6763 1.08071 23.9328 -4.13322 {normal=(0.50424 0.764625 0.401362)} Vertex 6764 1.08118 -11.5593 2.94872 Vertex 6765 1.0838 14.2489 2.87425 {normal=(0.572668 -0.801978 0.169948)} Vertex 6766 1.08477 18.2158 3.74192 {normal=(0.173642 0.0823137 0.981363)} Vertex 6767 1.08496 23.9844 -4.73675 {normal=(0.430389 0.883168 -0.186496)} Vertex 6768 1.08536 19.87 3.29253 {normal=(0.010849 0.407273 0.913242)} Vertex 6769 1.08536 18.7493 3.29256 {normal=(0.0107571 -0.407256 0.913251)} Vertex 6770 1.08578 23.8215 -5.09601 {normal=(0.512815 0.713573 -0.47732)} Vertex 6771 1.08762 14.4718 1.29458 {normal=(0.0813779 -0.921031 -0.380893)} Vertex 6772 1.08853 19.6124 3.37742 {normal=(0.0121227 0.221007 0.975197)} Vertex 6773 1.08854 19.007 3.37743 {normal=(0.0121307 -0.220969 0.975205)} Vertex 6774 1.08881 15.966 3.4676 {normal=(0.347481 0.8595 0.374855)} Vertex 6775 1.09078 17.0873 3.48627 {normal=(0.486107 -0.265212 0.832684)} Vertex 6776 1.09098 22.8003 2.16742 {normal=(0.27117 0.774691 0.571244)} Vertex 6777 1.09116 20.0841 3.17413 {normal=(0.015581 0.561487 0.827339)} Vertex 6778 1.09117 18.5353 3.17418 {normal=(0.0154388 -0.56144 0.827374)} Vertex 6779 1.09209 20.4166 2.8583 {normal=(0.0167082 0.800347 0.599304)} Vertex 6780 1.0921 18.2027 2.85836 {normal=(0.0167134 -0.800341 0.599313)} Vertex 6781 1.09245 23.2677 -3.89421 {normal=(0.758054 -0.253372 0.600963)} Vertex 6782 1.09306 20.1312 -4.58962 {normal=(0.925663 -0.0799799 -0.369799)} Vertex 6783 1.0934 17.0961 3.49125 {normal=(0.390424 -0.772653 0.500576)} Vertex 6784 1.09356 16.5113 3.47571 {normal=(0.470954 -0.139199 0.871106)} Vertex 6785 1.09416 19.7605 3.52722 {normal=(0.54901 -0.826177 0.126565)} Vertex 6786 1.09483 16.9803 3.48885 {normal=(0.467866 0.0561816 0.882012)} Vertex 6787 1.09485 19.7683 3.61088 {normal=(0.530757 -0.819843 0.214834)} Vertex 6788 1.09501 19.7535 3.48297 {normal=(0.502444 -0.702947 0.503404)} Vertex 6789 1.09727 22.7614 -5.00888 {normal=(0.50088 -0.842631 -0.197717)} Vertex 6790 1.0974 19.7472 3.47815 {normal=(0.253784 -0.313958 0.91489)} Vertex 6791 1.09768 13.9755 -3.43307 {normal=(0.437482 0.375734 -0.816966)} Vertex 6792 1.10035 19.7416 3.47701 {normal=(-0.0309394 0.108514 0.993613)} Vertex 6793 1.10151 20.8012 -4.35621 {normal=(0.917872 0.226482 -0.325908)} Vertex 6794 1.102 19.8052 3.69171 {normal=(0.499612 -0.759647 0.416321)} Vertex 6795 1.1027 22.9494 -5.3596 {normal=(0.520636 -0.517864 -0.678789)} Vertex 6796 1.10317 20.1507 -3.8384 {normal=(0.633975 0.0036594 -0.773345)} Vertex 6797 1.10388 19.7367 3.47956 {normal=(-0.169835 0.335945 0.926443)} Vertex 6798 1.10554 16.7751 3.49899 {normal=(0.471099 -0.0101417 0.882022)} Vertex 6799 1.10596 17.0622 -2.49695 Vertex 6800 1.10771 14.8731 3.51022 {normal=(0.81065 -0.208685 0.547081)} Vertex 6801 1.11068 23.9965 -4.41706 {normal=(0.502892 0.858758 0.0981604)} Vertex 6802 1.11093 19.7218 3.48598 {normal=(-0.165055 0.331521 0.928898)} Vertex 6803 1.1118 20.4584 3.88761 {normal=(0.186963 0.555631 0.810135)} Vertex 6804 1.11559 19.8711 3.7697 {normal=(0.485898 -0.7144 0.503523)} Vertex 6805 1.11907 23.1282 -1.58431 {normal=(0.200724 0.894672 -0.399089)} Vertex 6806 1.11968 20.6779 2.23617 {normal=(0.0372084 0.987779 0.151356)} Vertex 6807 1.1197 17.9414 2.23625 {normal=(0.0372386 -0.987759 0.151475)} Vertex 6808 1.12151 19.697 3.49626 {normal=(-0.0453795 0.157966 0.986401)} Vertex 6809 1.12185 16.8397 -2.66445 {normal=(-0.435592 -0.357141 0.826262)} Vertex 6810 1.12469 23.4539 0.20058 {normal=(0.209479 0.97775 -0.0110666)} Vertex 6811 1.12472 20.1199 -4.35024 {normal=(0.988213 -0.147739 0.0401019)} Vertex 6812 1.12511 19.9231 3.83174 {normal=(0.497146 -0.701163 0.511092)} Vertex 6813 1.12642 17.1241 3.55376 {normal=(0.292465 -0.926739 0.235836)} Vertex 6814 1.12673 17.6031 3.82859 {normal=(0.640288 0.25927 0.723056)} Vertex 6815 1.12755 13.744 -3.526 Vertex 6816 1.12821 13.7644 -3.51443 {normal=(0.440956 0.406502 -0.800196)} Vertex 6817 1.12863 20.3849 3.90569 {normal=(0.417188 0.14909 0.896508)} Vertex 6818 1.129 20.2688 3.9048 {normal=(0.433438 -0.0022547 0.90118)} Vertex 6819 1.12938 19.6716 3.4941 {normal=(0.180939 -0.208209 0.961202)} Vertex 6820 1.12997 22.8513 -5.21825 {normal=(0.542815 -0.732309 -0.411188)} Vertex 6821 1.13003 14.2599 2.23184 {normal=(0.302241 -0.950388 -0.073573)} Vertex 6822 1.1302 20.1531 3.90348 {normal=(0.365287 -0.00203814 0.930893)} Vertex 6823 1.13054 19.9612 3.87784 {normal=(0.463418 -0.498833 0.7324)} Vertex 6824 1.13058 20.7976 -4.14715 {normal=(0.994547 0.073218 0.0742589)} Vertex 6825 1.13223 20.0379 3.90175 {normal=(0.364394 -0.13812 0.920945)} Vertex 6826 1.13387 23.2906 -5.44041 {normal=(0.617113 0.0172314 -0.786686)} Vertex 6827 1.13453 19.6456 3.47951 {normal=(0.318548 -0.436043 0.841662)} Vertex 6828 1.13478 18.3538 3.70276 {normal=(0.189237 0.260926 0.946629)} Vertex 6829 1.13746 23.6311 -3.92781 {normal=(0.790495 0.244801 0.561418)} Vertex 6830 1.13806 18.9222 3.54242 {normal=(-0.064648 0.273571 0.959677)} Vertex 6831 1.13814 19.656 3.36522 {normal=(0.0483962 0.252895 0.966283)} Vertex 6832 1.13814 18.9633 3.36524 {normal=(0.0483562 -0.252894 0.966285)} Vertex 6833 1.13846 19.6299 3.46758 {normal=(0.409316 -0.597232 0.689764)} Vertex 6834 1.13854 21.252 3.35891 {normal=(0.244755 0.503906 0.828356)} Vertex 6835 1.13995 19.1494 3.50368 {normal=(0.0994153 0.709406 0.697753)} Vertex 6836 1.14118 19.6246 3.45831 {normal=(0.509468 -0.805913 0.301574)} Vertex 6837 1.14135 19.155 3.49416 {normal=(0.147061 0.946002 0.288884)} Vertex 6838 1.14205 19.1578 2.94925 {normal=(0.168591 0.95808 0.231647)} Vertex 6839 1.14205 19.1578 3.30935 {normal=(0.156342 0.987668 0.00827573)} Vertex 6840 1.14254 19.622 2.91353 {normal=(0.517018 -0.805891 0.288502)} Vertex 6841 1.14254 19.622 3.27363 {normal=(0.516815 -0.856055 0.00845428)} Vertex 6842 1.14375 15.4721 3.62896 {normal=(0.617626 -0.290856 0.730712)} Vertex 6843 1.14458 22.5651 2.41699 {normal=(0.283109 0.684251 0.672049)} Vertex 6844 1.14521 -12.6054 2.63504 {normal=(-0.288423 -0.328523 0.89938)} Vertex 6845 1.14585 15.695 -3.00421 {normal=(-0.420933 -0.40716 0.810578)} Vertex 6846 1.14624 19.1259 3.51896 {normal=(0.0565866 0.507807 0.85961)} Vertex 6847 1.14948 22.8024 -4.35597 {normal=(0.699044 -0.6663 0.259581)} Vertex 6848 1.14994 -21.4987 -1.24995 Vertex 6849 1.15089 17.8123 3.71904 {normal=(0.607077 0.269184 0.747661)} Vertex 6850 1.15299 20.2771 3.01355 {normal=(0.0606665 0.700335 0.711231)} Vertex 6851 1.153 18.3422 3.0136 {normal=(0.0605175 -0.700271 0.711307)} Vertex 6852 1.15389 22.9823 -4.14796 {normal=(0.75959 -0.433576 0.484804)} Vertex 6853 1.15664 21.9466 2.92126 {normal=(0.181744 0.560304 0.808102)} Vertex 6854 1.16021 17.8624 3.69696 {normal=(0.500601 0.117915 0.85761)} Vertex 6855 1.16023 19.0845 3.53999 {normal=(-0.0130521 0.313018 0.949657)} Vertex 6856 1.16097 21.877 -3.38221 {normal=(0.361512 0.393988 -0.845034)} Vertex 6857 1.16121 12.1513 -0.910214 {normal=(-0.0232956 -0.911426 -0.410804)} Vertex 6858 1.16579 19.3678 2.65738 {normal=(0.44359 -0.120406 0.888105)} Vertex 6859 1.1658 14.5685 1.10039 {normal=(0.347917 -0.898437 0.26789)} Vertex 6860 1.16647 22.2805 2.66827 {normal=(0.218957 0.63812 0.738147)} Vertex 6861 1.17014 20.6271 2.44144 {normal=(0.073472 0.951464 0.29886)} Vertex 6862 1.17016 17.9922 2.4415 {normal=(0.073497 -0.951432 0.298959)} Vertex 6863 1.17039 18.5238 -3.86987 {normal=(0.55257 0.175757 -0.814724)} Vertex 6864 1.17073 14.3021 1.98857 {normal=(0.202393 -0.962727 -0.179429)} Vertex 6865 1.17159 15.2465 -3.30537 Vertex 6866 1.17304 17.882 3.69195 {normal=(0.321128 -0.106127 0.941071)} Vertex 6867 1.1739 19.9078 3.27076 {normal=(0.075199 0.434744 0.897409)} Vertex 6868 1.1739 18.7115 3.27079 {normal=(0.075125 -0.434711 0.897431)} Vertex 6869 1.17395 15.8801 3.6063 {normal=(0.381943 0.841601 0.381873)} Vertex 6870 1.1741 23.6721 -5.18989 {normal=(0.609632 0.591379 -0.527845)} Vertex 6871 1.17664 19.043 3.54893 {normal=(-0.116542 0.00392153 0.993178)} Vertex 6872 1.17691 18.5019 3.63473 {normal=(0.156525 0.302358 0.940255)} Vertex 6873 1.17743 18.9457 3.53903 {normal=(-0.0677767 0.236825 0.969185)} Vertex 6874 1.18029 14.7087 3.28486 {normal=(0.829717 -0.319782 0.457503)} Vertex 6875 1.18044 14.3797 2.9799 {normal=(0.731044 -0.581002 0.357787)} Vertex 6876 1.18111 20.8314 -3.71129 {normal=(0.5342 0.175867 -0.826862)} Vertex 6877 1.18236 22.4308 -2.9496 {normal=(0.322028 0.673275 -0.665582)} Vertex 6878 1.18415 19.3097 3.40617 {normal=(0.0800072 4.81084e-06 0.996794)} Vertex 6879 1.18675 19.2758 3.40554 {normal=(0.0819705 -0.0250288 0.99632)} Vertex 6880 1.18675 19.3436 3.40554 {normal=(0.0819558 0.0250797 0.99632)} Vertex 6881 1.18935 18.9546 3.53833 {normal=(-0.118072 0.0932075 0.988621)} Vertex 6882 1.18984 17.1714 3.67379 {normal=(0.342131 -0.908244 0.240912)} Vertex 6883 1.19058 17.4379 3.81548 {normal=(0.691396 0.0971552 0.715914)} Vertex 6884 1.19376 19.6911 3.35155 {normal=(0.0889755 0.278527 0.956298)} Vertex 6885 1.19376 18.9283 3.35157 {normal=(0.0889742 -0.278378 0.956342)} Vertex 6886 1.19424 22.0632 -3.23088 {normal=(0.349511 0.524686 -0.776239)} Vertex 6887 1.19445 19.3766 3.40364 {normal=(0.0876784 0.0496013 0.994913)} Vertex 6888 1.19445 19.2427 3.40364 {normal=(0.0876206 -0.0495053 0.994923)} Vertex 6889 1.19545 19.0015 3.54576 {normal=(-0.169094 -0.147033 0.974571)} Vertex 6890 1.1977 18.9645 3.53953 {normal=(-0.178317 -0.100079 0.97887)} Vertex 6891 1.19831 15.6789 3.67411 {normal=(0.60656 -0.267743 0.748598)} Vertex 6892 1.19907 15.4944 -3.56792 {normal=(0.328857 -0.621181 -0.711328)} Vertex 6893 1.20062 18.6514 3.59139 {normal=(0.0747722 0.20937 0.974973)} Vertex 6894 1.20247 18.9753 3.54262 {normal=(-0.17679 -0.156816 0.971676)} Vertex 6895 1.20326 17.4017 -4.16339 {normal=(0.499413 0.113547 -0.858891)} Vertex 6896 1.20454 14.5442 3.10809 {normal=(0.800737 -0.403961 0.442308)} Vertex 6897 1.20479 19.3205 2.65031 {normal=(0.275077 0.455179 0.846844)} Vertex 6898 1.20589 18.8022 3.57277 {normal=(-0.00307514 0.194657 0.980867)} Vertex 6899 1.20709 19.4081 3.40053 {normal=(0.0969482 0.0728357 0.992621)} Vertex 6900 1.20709 19.2113 3.40054 {normal=(0.0969781 -0.0726743 0.99263)} Vertex 6901 1.20762 23.477 -5.33031 {normal=(0.668976 0.367516 -0.646068)} Vertex 6902 1.20888 21.6426 3.1111 {normal=(0.200147 0.514162 0.834013)} Vertex 6903 1.21181 20.1139 3.14447 {normal=(0.103079 0.583124 0.805817)} Vertex 6904 1.21182 18.5054 3.14452 {normal=(0.102963 -0.583077 0.805866)} Vertex 6905 1.21454 15.9239 -3.85193 {normal=(0.32865 -0.485452 -0.810139)} Vertex 6906 1.21463 15.1169 3.41067 {normal=(0.78842 -0.25186 0.561213)} Vertex 6907 1.21464 20.9895 3.49261 {normal=(0.342438 0.46268 0.817719)} Vertex 6908 1.21508 21.4985 -3.49464 {normal=(0.423548 0.293808 -0.856904)} Vertex 6909 1.21798 16.5351 -4.15741 {normal=(0.405716 -0.225364 -0.88578)} Vertex 6910 1.21809 20.544 2.63646 {normal=(0.107984 0.891866 0.439221)} Vertex 6911 1.2181 18.0754 2.63652 {normal=(0.107981 -0.891858 0.439238)} Vertex 6912 1.21825 17.9648 3.6938 {normal=(0.219965 -0.162003 0.961962)} Vertex 6913 1.21879 15.8234 3.68091 {normal=(0.531047 0.613412 0.584564)} Vertex 6914 1.21953 19.4152 -3.70281 {normal=(0.566494 0.0281775 -0.823584)} Vertex 6915 1.22253 23.7643 -4.15932 {normal=(0.843456 0.393938 0.365232)} Vertex 6916 1.22306 14.3103 0.922714 {normal=(0.394018 -0.342271 0.852995)} Vertex 6917 1.22333 15.796 3.69142 {normal=(0.629402 0.0731913 0.773625)} Vertex 6918 1.22434 19.437 3.39629 {normal=(0.109746 0.094148 0.989491)} Vertex 6919 1.22434 19.1823 3.3963 {normal=(0.109723 -0.0941296 0.989495)} Vertex 6920 1.22543 17.3114 3.78082 {normal=(0.718478 -0.0537307 0.693471)} Vertex 6921 1.22687 17.2084 3.74123 {normal=(0.525015 -0.746083 0.409535)} Vertex 6922 1.22756 14.3578 1.77479 {normal=(0.24659 -0.943935 -0.219499)} Vertex 6923 1.2305 14.3035 2.33568 {normal=(0.402505 -0.914876 0.031498)} Vertex 6924 1.23501 20.7361 3.62288 {normal=(0.366532 0.486046 0.793356)} Vertex 6925 1.23554 19.4513 2.65104 {normal=(0.400043 -0.385363 0.831541)} Vertex 6926 1.23598 6.77915 4.54701 Vertex 6927 1.23753 17.2349 3.75608 {normal=(0.700579 -0.345961 0.6241)} Vertex 6928 1.24126 22.8612 -4.58811 {normal=(0.771531 -0.628061 0.101383)} Vertex 6929 1.24323 19.8476 3.45879 {normal=(0.543184 -0.640054 0.543398)} Vertex 6930 1.2441 19.8387 3.45486 {normal=(0.358196 -0.187077 0.914712)} Vertex 6931 1.24467 -13.46 2.32892 {normal=(-0.471303 -0.0828566 0.878071)} Vertex 6932 1.24579 19.4629 3.39102 {normal=(0.125598 0.113318 0.985588)} Vertex 6933 1.24579 19.1564 3.39103 {normal=(0.125609 -0.113373 0.985581)} Vertex 6934 1.24619 19.8311 3.45412 {normal=(0.158305 0.173176 0.972085)} Vertex 6935 1.24638 23.4006 -4.09093 {normal=(0.897714 -0.0557278 0.437039)} Vertex 6936 1.2469 19.8578 3.49966 {normal=(0.547673 -0.826139 0.132471)} Vertex 6937 1.24733 23.8561 -4.77555 {normal=(0.735569 0.654641 -0.174309)} Vertex 6938 1.24823 -6.50608 4.13236 {normal=(0.189539 -0.0742441 0.979062)} Vertex 6939 1.24949 19.8247 3.45656 {normal=(0.0387681 0.376526 0.925595)} Vertex 6940 1.25131 13.6972 0.761545 {normal=(0.374676 -0.224811 0.899488)} Vertex 6941 1.25402 19.7168 3.33673 {normal=(0.132984 0.297306 0.945476)} Vertex 6942 1.25402 18.9025 3.33675 {normal=(0.13295 -0.297249 0.945498)} Vertex 6943 1.25512 19.8693 3.57747 {normal=(0.555982 -0.811458 0.180055)} Vertex 6944 1.25643 19.807 3.4633 {normal=(0.033623 0.381742 0.923657)} Vertex 6945 1.25779 14.338 2.65833 {normal=(0.577273 -0.79425 0.189533)} Vertex 6946 1.25916 23.8393 -4.4419 {normal=(0.83945 0.529627 0.121733)} Vertex 6947 1.25965 17.5963 3.71472 {normal=(0.651177 0.228803 0.723615)} Vertex 6948 1.26 16.0111 3.26491 {normal=(0.504204 0.12131 0.855022)} Vertex 6949 1.26221 20.5961 3.70901 {normal=(0.144613 0.709498 0.68971)} Vertex 6950 1.26234 20.4304 2.81645 {normal=(0.139903 0.810301 0.569069)} Vertex 6951 1.26235 18.1889 2.81651 {normal=(0.139886 -0.810351 0.569002)} Vertex 6952 1.26289 16.0013 3.26785 {normal=(0.41042 0.60548 0.681872)} Vertex 6953 1.26625 -21.6502 -5.13275 Vertex 6954 1.26699 19.778 3.47432 {normal=(0.121599 0.215895 0.968815)} Vertex 6955 1.26708 19.9308 3.24785 {normal=(0.14294 0.451477 0.880759)} Vertex 6956 1.26709 18.6885 3.24788 {normal=(0.142987 -0.451424 0.880779)} Vertex 6957 1.26836 14.318 2.00957 {normal=(0.328196 -0.936007 -0.127196)} Vertex 6958 1.2709 19.485 3.38484 {normal=(0.14417 0.129672 0.98102)} Vertex 6959 1.2709 19.1344 3.38485 {normal=(0.144294 -0.129625 0.981008)} Vertex 6960 1.27187 19.9058 3.65108 {normal=(0.551484 -0.75792 0.348457)} Vertex 6961 1.2739 19.7481 3.47283 {normal=(0.275187 -0.144821 0.95042)} Vertex 6962 1.27716 19.7173 3.45882 {normal=(0.345535 -0.386604 0.855069)} Vertex 6963 1.27839 20.6779 1.974 {normal=(0.170213 0.984636 0.0389917)} Vertex 6964 1.2784 17.9414 1.97407 {normal=(0.170267 -0.984618 0.0392019)} Vertex 6965 1.27926 19.699 3.44736 {normal=(0.387065 -0.601277 0.699033)} Vertex 6966 1.2796 16.1787 3.28735 {normal=(0.527865 -0.167403 0.832667)} Vertex 6967 1.28021 19.6932 3.43845 {normal=(0.410273 -0.862674 0.295752)} Vertex 6968 1.28104 19.6903 3.25392 {normal=(0.374753 -0.927083 0.00883971)} Vertex 6969 1.28155 14.4359 1.50241 {normal=(0.30342 -0.917537 -0.257025)} Vertex 6970 1.28175 19.6903 2.89376 {normal=(0.400499 -0.87215 0.280989)} Vertex 6971 1.28179 6.82776 4.84247 Vertex 6972 1.29298 12.7302 -2.01553 {normal=(-0.0449627 -0.858151 -0.511425)} Vertex 6973 1.29585 18.1106 3.70253 {normal=(0.188861 -0.053436 0.980549)} Vertex 6974 1.29625 20.5694 3.75098 {normal=(0.201042 0.65705 0.726544)} Vertex 6975 1.29716 19.9673 3.72052 {normal=(0.534197 -0.710915 0.457421)} Vertex 6976 1.29906 19.5028 3.37792 {normal=(0.164937 0.142815 0.97591)} Vertex 6977 1.29906 19.1166 3.37793 {normal=(0.164963 -0.142759 0.975914)} Vertex 6978 1.29923 -9.53645 3.60708 Vertex 6979 1.3018 20.2892 2.97697 {normal=(0.168338 0.709037 0.684783)} Vertex 6980 1.30181 18.3301 2.97702 {normal=(0.16836 -0.709023 0.684793)} Vertex 6981 1.30343 13.1808 0.608134 {normal=(0.364682 -0.237516 0.900329)} Vertex 6982 1.30526 17.1128 3.34998 {normal=(0.610001 -0.234275 0.756977)} Vertex 6983 1.30655 15.9503 3.32305 {normal=(0.364233 0.797486 0.480989)} Vertex 6984 1.30834 17.122 3.35409 {normal=(0.473507 -0.72224 0.504143)} Vertex 6985 1.31147 20.3802 3.7969 {normal=(0.507485 0.122445 0.852916)} Vertex 6986 1.31267 20.4974 3.78028 {normal=(0.47888 0.268958 0.835665)} Vertex 6987 1.31348 16.9978 3.35072 {normal=(0.604594 0.0659126 0.793802)} Vertex 6988 1.31381 20.0205 3.77469 {normal=(0.534271 -0.648143 0.542646)} Vertex 6989 1.31462 20.263 3.81217 {normal=(0.435772 0.135988 0.889725)} Vertex 6990 1.31745 19.7325 3.32114 {normal=(0.179342 0.308782 0.934072)} Vertex 6991 1.31745 18.8869 3.32116 {normal=(0.179386 -0.308664 0.934102)} Vertex 6992 1.31785 23.16 -5.26138 {normal=(0.807874 -0.191726 -0.557298)} Vertex 6993 1.3217 16.5039 3.3352 {normal=(0.568173 -0.12858 0.812801)} Vertex 6994 1.32184 20.0651 3.81358 {normal=(0.515668 -0.379998 0.767911)} Vertex 6995 1.32185 23.1016 -4.37459 {normal=(0.912471 -0.277998 0.300189)} Vertex 6996 1.32211 20.146 3.82607 {normal=(0.430586 0.00660024 0.902526)} Vertex 6997 1.32318 21.3686 3.23779 {normal=(0.267923 0.471741 0.840046)} Vertex 6998 1.3234 22.9482 -4.87701 {normal=(0.833198 -0.551585 -0.0391854)} Vertex 6999 1.3242 22.4701 -2.48373 {normal=(0.375938 0.92637 0.0225533)} Vertex 7000 1.32513 14.9207 3.12934 {normal=(0.816639 -0.300498 0.492749)} Vertex 7001 1.32718 22.4764 -2.44965 {normal=(0.383826 0.839619 -0.384341)} Vertex 7002 1.32753 20.661 2.18508 {normal=(0.187246 0.975625 0.114432)} Vertex 7003 1.32755 17.9583 2.18515 {normal=(0.187277 -0.975606 0.114541)} Vertex 7004 1.32839 12.2607 -1.14015 {normal=(-0.0469074 -0.913477 -0.404178)} Vertex 7005 1.32859 21.9691 2.86957 {normal=(0.236672 0.5649 0.79049)} Vertex 7006 1.3292 23.5204 -4.33204 {normal=(0.958857 0.112228 0.260764)} Vertex 7007 1.32957 19.5158 3.37042 {normal=(0.187572 0.152465 0.970346)} Vertex 7008 1.32957 19.1036 3.37043 {normal=(0.187491 -0.152303 0.970387)} Vertex 7009 1.33299 16.777 3.35632 {normal=(0.596899 -0.00044684 0.802317)} Vertex 7010 1.33323 17.1496 3.40153 {normal=(0.34809 -0.890789 0.292111)} Vertex 7011 1.33548 14.3876 1.80127 {normal=(0.399214 -0.895218 -0.198022)} Vertex 7012 1.3355 20.1239 3.11406 {normal=(0.192666 0.590379 0.783793)} Vertex 7013 1.33551 18.4954 3.11411 {normal=(0.192706 -0.590314 0.783833)} Vertex 7014 1.3378 17.251 -2.35172 Vertex 7015 1.34493 17.465 3.66181 {normal=(0.697927 0.0634173 0.713356)} Vertex 7016 1.34662 23.3096 -0.874511 {normal=(0.216495 0.955166 -0.201958)} Vertex 7017 1.34826 22.4838 -2.56583 {normal=(0.336368 0.897635 0.284794)} Vertex 7018 1.34893 23.0478 -5.10143 {normal=(0.87065 -0.422793 -0.251427)} Vertex 7019 1.34909 6.71821 5.02003 Vertex 7020 1.3507 20.0758 -3.66219 {normal=(0.558739 0.00284415 -0.829339)} Vertex 7021 1.35275 23.6603 -4.89928 {normal=(0.873731 0.440125 -0.207086)} Vertex 7022 1.35455 19.5229 2.62421 {normal=(0.40196 -0.401093 0.823136)} Vertex 7023 1.35533 14.4973 2.77853 {normal=(0.737792 -0.511752 0.440196)} Vertex 7024 1.35535 -11.6515 3.06806 {normal=(-0.24549 -0.310622 0.918286)} Vertex 7025 1.35634 14.5312 1.27168 {normal=(0.359612 -0.882852 -0.30208)} Vertex 7026 1.36167 19.5237 3.36253 {normal=(0.211389 0.158272 0.964502)} Vertex 7027 1.36168 19.0956 3.36254 {normal=(0.211267 -0.158338 0.964518)} Vertex 7028 1.36262 19.9386 3.22436 {normal=(0.212315 0.457139 0.863682)} Vertex 7029 1.36262 18.6808 3.2244 {normal=(0.212336 -0.456999 0.863751)} Vertex 7030 1.36465 23.607 -4.60149 {normal=(0.963801 0.250347 0.0917298)} Vertex 7031 1.36784 14.3536 2.12409 {normal=(0.416096 -0.908588 -0.0365029)} Vertex 7032 1.36814 18.2652 3.67724 {normal=(0.179854 0.153552 0.971635)} Vertex 7033 1.37029 20.6109 2.39223 {normal=(0.217993 0.939746 0.263357)} Vertex 7034 1.3703 18.0084 2.3923 {normal=(0.217948 -0.939737 0.263424)} Vertex 7035 1.37137 15.4659 3.41008 {normal=(0.672545 -0.350497 0.651794)} Vertex 7036 1.37203 14.7141 2.91863 {normal=(0.799184 -0.351144 0.487856)} Vertex 7037 1.37991 17.1954 3.49231 {normal=(0.393195 -0.870905 0.294826)} Vertex 7038 1.38248 19.7377 3.30515 {normal=(0.226795 0.312539 0.922433)} Vertex 7039 1.38248 18.8816 3.30517 {normal=(0.22676 -0.312568 0.922432)} Vertex 7040 1.38265 21.7377 3.00482 {normal=(0.254848 0.517936 0.816575)} Vertex 7041 1.3832 12.761 0.462476 {normal=(0.35526 -0.250374 0.900613)} Vertex 7042 1.38582 17.6223 3.59296 {normal=(0.627004 0.150044 0.76443)} Vertex 7043 1.391 15.8579 3.43053 {normal=(0.446433 0.779674 0.439097)} Vertex 7044 1.39137 -30.307 -3.72014 {normal=(-0.996775 0.00466779 -0.080109)} Vertex 7045 1.39194 12.361 -1.36256 {normal=(-0.0542199 -0.894947 -0.442865)} Vertex 7046 1.3928 -21.4147 -1.03516 Vertex 7047 1.39371 15.2697 3.2467 {normal=(0.715927 -0.388363 0.580191)} Vertex 7048 1.39459 19.5264 3.35443 {normal=(0.235693 0.160347 0.958508)} Vertex 7049 1.3946 19.093 3.35445 {normal=(0.235676 -0.160143 0.958546)} Vertex 7050 1.39475 23.3154 0.946713 {normal=(0.322308 0.914401 0.244926)} Vertex 7051 1.39527 17.6727 3.57427 {normal=(0.457692 -0.0528099 0.887541)} Vertex 7052 1.39549 21.1069 3.34995 {normal=(0.366087 0.417093 0.831874)} Vertex 7053 1.39566 19.9205 3.39755 {normal=(0.441549 -0.103694 0.891225)} Vertex 7054 1.39579 22.2894 2.59895 {normal=(0.239305 0.803371 0.545278)} Vertex 7055 1.3963 19.91 3.39779 {normal=(0.34581 0.188519 0.919172)} Vertex 7056 1.39684 19.1329 3.28646 {normal=(0.0394864 0.999189 0.00787664)} Vertex 7057 1.39714 19.1302 3.47145 {normal=(0.081501 0.963316 0.255694)} Vertex 7058 1.39734 19.9327 3.39969 {normal=(0.49542 -0.606711 0.62166)} Vertex 7059 1.39764 19.1331 2.92622 {normal=(0.0745271 0.976506 0.202194)} Vertex 7060 1.39856 19.1249 3.48117 {normal=(0.128617 0.757789 0.639697)} Vertex 7061 1.39867 19.3097 3.371 {normal=(0.238728 3.75067e-05 0.971087)} Vertex 7062 1.39927 19.9013 3.40042 {normal=(0.266684 0.397087 0.878181)} Vertex 7063 1.39934 22.5175 -2.69597 {normal=(0.397221 0.913839 -0.0843449)} Vertex 7064 1.40071 23.2012 -4.6514 {normal=(0.976576 -0.168239 0.134143)} Vertex 7065 1.40092 17.3376 3.59945 {normal=(0.722666 -0.0825488 0.68625)} Vertex 7066 1.4012 23.397 -5.10793 {normal=(0.91942 0.175591 -0.351903)} Vertex 7067 1.40202 19.2713 2.63387 {normal=(0.195165 0.599773 0.776005)} Vertex 7068 1.40386 22.4184 -2.86419 {normal=(0.384757 0.701133 -0.600312)} Vertex 7069 1.40559 20.5288 2.59036 {normal=(0.243548 0.880842 0.405958)} Vertex 7070 1.40561 18.0905 2.59043 {normal=(0.243434 -0.880855 0.405997)} Vertex 7071 1.40745 19.8793 3.40929 {normal=(0.250487 0.441016 0.861836)} Vertex 7072 1.40761 19.9522 3.4375 {normal=(0.44029 -0.857132 0.267337)} Vertex 7073 1.40837 17.6929 3.57602 {normal=(0.25337 -0.275694 0.927252)} Vertex 7074 1.40967 17.2322 3.54534 {normal=(0.541364 -0.725484 0.424967)} Vertex 7075 1.41006 14.4936 1.53985 {normal=(0.485716 -0.844222 -0.226646)} Vertex 7076 1.41247 14.3995 2.45526 {normal=(0.441986 -0.891541 0.0990095)} Vertex 7077 1.41618 19.0943 3.50263 {normal=(0.140646 0.589707 0.795277)} Vertex 7078 1.42084 19.8442 3.4244 {normal=(0.294909 0.309082 0.904155)} Vertex 7079 1.4217 15.6591 3.46823 {normal=(0.664296 -0.312164 0.679164)} Vertex 7080 1.42251 17.26 3.56063 {normal=(0.69865 -0.371691 0.611338)} Vertex 7081 1.4227 12.5013 -1.62561 {normal=(-0.0475215 -0.869491 -0.491657)} Vertex 7082 1.42364 22.0236 -3.16275 {normal=(0.463502 0.454689 -0.760542)} Vertex 7083 1.42578 20.8576 3.44759 {normal=(0.402334 0.443386 0.80096)} Vertex 7084 1.42649 19.9789 3.51097 {normal=(0.479134 -0.836279 0.266587)} Vertex 7085 1.42716 23.2997 -4.89584 {normal=(0.998688 -0.0416964 -0.0297429)} Vertex 7086 1.42751 19.5237 3.34634 {normal=(0.259888 0.158289 0.952577)} Vertex 7087 1.42752 19.0956 3.34635 {normal=(0.259984 -0.158349 0.952541)} Vertex 7088 1.43031 22.6438 -2.16719 {normal=(0.32591 0.757002 -0.566331)} Vertex 7089 1.43095 19.8082 3.42663 {normal=(0.37173 -0.0227576 0.928062)} Vertex 7090 1.43259 20.4166 2.77459 {normal=(0.263072 0.800353 0.538728)} Vertex 7091 1.4326 18.2027 2.77465 {normal=(0.263065 -0.800337 0.538756)} Vertex 7092 1.43279 4.6941 4.77574 Vertex 7093 1.43468 4.53792 -5.415 Vertex 7094 1.43514 18.4285 3.61794 {normal=(0.121357 0.219245 0.968093)} Vertex 7095 1.43663 15.7978 3.48753 {normal=(0.613353 0.553843 0.563078)} Vertex 7096 1.43778 19.7714 3.41598 {normal=(0.385875 -0.273259 0.881153)} Vertex 7097 1.43794 16.0881 -2.44382 {normal=(0.55634 0.213613 -0.803029)} Vertex 7098 1.43831 19.7435 3.39858 {normal=(0.267499 -0.909749 0.317493)} Vertex 7099 1.4384 19.7403 3.21442 {normal=(0.150111 -0.988621 0.00976507)} Vertex 7100 1.44023 19.7499 3.40663 {normal=(0.362739 -0.559331 0.745365)} Vertex 7101 1.44051 19.7402 2.85416 {normal=(0.223028 -0.935698 0.273363)} Vertex 7102 1.44345 15.7698 3.49405 {normal=(0.713271 0.0296408 0.700261)} Vertex 7103 1.44722 23.031 1.53065 {normal=(0.357613 0.834585 0.419023)} Vertex 7104 1.44751 19.7325 3.28916 {normal=(0.274182 0.308779 0.910758)} Vertex 7105 1.44751 18.8869 3.28919 {normal=(0.274147 -0.308661 0.910808)} Vertex 7106 1.44793 16.0308 3.15725 {normal=(0.519379 0.109599 0.847487)} Vertex 7107 1.45001 19.0382 3.53581 {normal=(0.119422 0.463597 0.877961)} Vertex 7108 1.4506 20.2771 2.94039 {normal=(0.276003 0.700344 0.658286)} Vertex 7109 1.45061 18.3422 2.94043 {normal=(0.276185 -0.700267 0.658292)} Vertex 7110 1.45198 16.0202 3.15881 {normal=(0.41549 0.494002 0.763761)} Vertex 7111 1.45353 4.73062 -5.62246 {normal=(0.184828 -0.387079 -0.903332)} Vertex 7112 1.45718 15.475 -2.60498 {normal=(0.55382 0.243994 -0.796085)} Vertex 7113 1.45724 20.72 3.52045 {normal=(0.179373 0.715963 0.674702)} Vertex 7114 1.45789 -21.4916 -0.735368 Vertex 7115 1.45805 14.6435 1.08259 {normal=(0.588013 -0.802156 0.10386)} Vertex 7116 1.45812 20.0184 3.57665 {normal=(0.514241 -0.772281 0.373012)} Vertex 7117 1.45816 19.9308 3.20088 {normal=(0.281713 0.451461 0.846653)} Vertex 7118 1.45816 18.6885 3.20091 {normal=(0.281688 -0.451433 0.846676)} Vertex 7119 1.4592 20.1139 3.08366 {normal=(0.282277 0.583125 0.761765)} Vertex 7120 1.4592 18.5054 3.0837 {normal=(0.282424 -0.583086 0.76174)} Vertex 7121 1.45962 19.5158 3.33845 {normal=(0.283644 0.152488 0.946728)} Vertex 7122 1.45963 19.1036 3.33846 {normal=(0.2837 -0.152323 0.946738)} Vertex 7123 1.45994 -12.5875 2.70649 {normal=(0.127587 -0.518528 0.845488)} Vertex 7124 1.4611 17.7963 3.59646 {normal=(0.182805 -0.286426 0.940501)} Vertex 7125 1.46361 12.35 0.31408 {normal=(0.342323 -0.262498 0.902169)} Vertex 7126 1.46804 16.1969 3.16502 {normal=(0.591408 -0.122089 0.797077)} Vertex 7127 1.46848 17.1211 3.19554 {normal=(0.680571 -0.194867 0.706293)} Vertex 7128 1.47228 20.7208 -3.53124 {normal=(0.561021 0.135391 -0.816654)} Vertex 7129 1.47272 17.1308 3.19784 {normal=(0.51392 -0.683037 0.518986)} Vertex 7130 1.47433 -22.2983 -3.28052 Vertex 7131 1.47558 22.0368 2.76383 {normal=(0.406438 0.563089 0.71954)} Vertex 7132 1.47736 18.5954 3.58323 {normal=(0.0573101 0.136461 0.988986)} Vertex 7133 1.47947 16.5071 -2.3084 {normal=(0.564487 0.137982 -0.813828)} Vertex 7134 1.48093 14.4422 1.88735 {normal=(0.486608 -0.856173 -0.173724)} Vertex 7135 1.48174 17.4894 3.52547 {normal=(0.652963 -0.00689798 0.757358)} Vertex 7136 1.48338 17.0069 3.19346 {normal=(0.686458 0.0772461 0.723055)} Vertex 7137 1.48338 18.981 3.55602 {normal=(0.077707 0.249217 0.965325)} Vertex 7138 1.48365 20.6271 1.92354 {normal=(0.317976 0.948095 0.00264081)} Vertex 7139 1.48366 17.9921 1.92361 {normal=(0.317818 -0.948147 0.00290094)} Vertex 7140 1.48374 14.9586 -2.7584 {normal=(0.56149 0.293948 -0.773514)} Vertex 7141 1.48463 22.3936 -2.45474 {normal=(0.509068 0.860336 0.0259282)} Vertex 7142 1.48596 22.4012 -2.42155 {normal=(0.532545 0.739626 -0.411521)} Vertex 7143 1.48656 21.4657 3.13016 {normal=(0.297252 0.460368 0.836482)} Vertex 7144 1.48874 15.0706 2.9781 {normal=(0.724729 -0.404769 0.557611)} Vertex 7145 1.48988 20.6943 3.56852 {normal=(0.149564 0.727116 0.670025)} Vertex 7146 1.49013 19.5028 3.33095 {normal=(0.306308 0.142843 0.941154)} Vertex 7147 1.49013 19.1166 3.33096 {normal=(0.306294 -0.142743 0.941174)} Vertex 7148 1.49448 14.6107 1.32698 {normal=(0.568244 -0.790522 -0.228415)} Vertex 7149 1.49479 18.766 3.5731 {normal=(0.0362563 0.0775369 0.99633)} Vertex 7150 1.49536 15.9595 3.18719 {normal=(0.392753 0.658904 0.641553)} Vertex 7151 1.4959 6.47029 5.06669 Vertex 7152 1.49792 17.1608 3.23754 {normal=(0.326024 -0.881709 0.341025)} Vertex 7153 1.49933 4.98294 4.96264 {normal=(-0.0316835 -0.32091 0.94658)} Vertex 7154 1.50155 20.4975 3.64675 {normal=(0.498538 0.232515 0.835103)} Vertex 7155 1.5025 20.0707 3.63454 {normal=(0.539491 -0.697263 0.471989)} Vertex 7156 1.50465 20.6201 3.61062 {normal=(0.44558 0.373111 0.813785)} Vertex 7157 1.50495 22.7814 1.94106 {normal=(0.380097 0.770022 0.512438)} Vertex 7158 1.50682 16.8999 -2.39442 {normal=(-0.503124 -0.285768 0.8156)} Vertex 7159 1.51043 18.8554 3.5679 {normal=(0.00706919 0.104189 0.994532)} Vertex 7160 1.51062 22.4025 -2.53831 {normal=(0.447354 0.8442 0.295298)} Vertex 7161 1.51094 19.7168 3.27357 {normal=(0.320534 0.297309 0.899369)} Vertex 7162 1.51094 18.9025 3.27359 {normal=(0.320487 -0.29727 0.899399)} Vertex 7163 1.51122 20.3771 3.67967 {normal=(0.439505 0.258436 0.860259)} Vertex 7164 1.51231 16.5184 3.18214 {normal=(0.645133 -0.0908119 0.758654)} Vertex 7165 1.51631 18.9226 3.56327 {normal=(0.0460855 0.127973 0.990706)} Vertex 7166 1.51743 16.7884 3.19162 {normal=(0.67955 0.0299232 0.733018)} Vertex 7167 1.51829 19.485 3.32403 {normal=(0.327184 0.129614 0.936029)} Vertex 7168 1.51829 19.1344 3.32404 {normal=(0.327096 -0.129533 0.936071)} Vertex 7169 1.52174 19.5614 2.56725 {normal=(0.317565 -0.589921 0.742392)} Vertex 7170 1.52427 18.8635 3.56764 {normal=(0.0181211 0.0635744 0.997813)} Vertex 7171 1.52801 21.8087 2.90295 {normal=(0.414499 0.529998 0.739792)} Vertex 7172 1.52974 20.1226 3.67867 {normal=(0.56867 -0.584139 0.579134)} Vertex 7173 1.53027 20.6109 2.13524 {normal=(0.333665 0.939429 0.0783682)} Vertex 7174 1.53028 18.0084 2.13531 {normal=(0.333551 -0.939453 0.0785621)} Vertex 7175 1.53159 18.8741 3.56735 {normal=(0.0205017 0.045776 0.998741)} Vertex 7176 1.53172 14.6079 2.62049 {normal=(0.683547 -0.457342 0.568859)} Vertex 7177 1.53238 18.887 3.56704 {normal=(0.0310827 0.0796973 0.996334)} Vertex 7178 1.53367 20.2589 3.70935 {normal=(0.450909 0.141723 0.881247)} Vertex 7179 1.53419 14.5387 -2.90405 {normal=(0.566958 0.336106 -0.752058)} Vertex 7180 1.53474 14.85 2.76936 {normal=(0.719151 -0.382873 0.579853)} Vertex 7181 1.53776 14.3748 0.759066 {normal=(0.680276 -0.287216 0.674338)} Vertex 7182 1.53984 20.1741 3.70902 {normal=(0.553627 -0.260415 0.791)} Vertex 7183 1.54226 -6.47624 4.00547 Vertex 7184 1.5434 19.4629 3.31785 {normal=(0.345761 0.113283 0.931459)} Vertex 7185 1.5434 19.1564 3.31786 {normal=(0.345761 -0.113313 0.931456)} Vertex 7186 1.54368 14.478 2.5058 {normal=(0.583711 -0.716093 0.382743)} Vertex 7187 1.54408 17.2111 3.31463 {normal=(0.332573 -0.865318 0.374994)} Vertex 7188 1.54479 15.7472 -2.71817 {normal=(-0.470489 -0.401896 0.78557)} Vertex 7189 1.54782 14.4335 2.26505 {normal=(0.459816 -0.887632 0.0260631)} Vertex 7190 1.54836 18.4883 -3.62108 {normal=(0.59791 0.181214 -0.78081)} Vertex 7191 1.54992 11.948 0.162942 {normal=(0.3326 -0.273167 0.902639)} Vertex 7192 1.55134 19.9078 3.17797 {normal=(0.349487 0.43472 0.829987)} Vertex 7193 1.55135 18.7115 3.178 {normal=(0.34951 -0.43475 0.829961)} Vertex 7194 1.55216 17.1256 3.1174 {normal=(0.586613 -0.200474 0.784663)} Vertex 7195 1.55349 17.9829 3.63558 {normal=(0.168098 -0.174976 0.970117)} Vertex 7196 1.55698 17.1356 3.1188 {normal=(0.313362 -0.677364 0.66557)} Vertex 7197 1.55902 17.359 3.43395 {normal=(0.665588 -0.167148 0.727361)} Vertex 7198 1.55956 3.34044 -5.5179 {normal=(0.192213 0.0555936 -0.979777)} Vertex 7199 1.56079 17.1318 3.11535 {normal=(0.104397 -0.486857 0.867221)} Vertex 7200 1.56111 5.41059 4.93892 {normal=(-0.0443522 -0.0386323 0.998269)} Vertex 7201 1.56392 22.4278 -2.67225 {normal=(0.551488 0.831262 -0.069751)} Vertex 7202 1.56467 21.2055 3.22883 {normal=(0.364225 0.383738 0.848578)} Vertex 7203 1.56484 19.1823 3.31259 {normal=(0.361522 -0.0941857 0.927594)} Vertex 7204 1.56484 19.437 3.31258 {normal=(0.361479 0.0942125 0.927608)} Vertex 7205 1.56489 15.2895 -3.04454 Vertex 7206 1.5655 20.5627 2.34424 {normal=(0.359049 0.904858 0.228728)} Vertex 7207 1.56551 18.0566 2.34431 {normal=(0.359013 -0.904857 0.228787)} Vertex 7208 1.56713 15.5269 -3.37354 {normal=(0.452233 -0.634834 -0.626476)} Vertex 7209 1.56735 13.7617 0.597897 {normal=(0.658927 -0.152787 0.736526)} Vertex 7210 1.56795 22.5665 2.17793 {normal=(0.417984 0.682741 0.599295)} Vertex 7211 1.56954 22.3245 -2.84237 {normal=(0.554237 0.602668 -0.574119)} Vertex 7212 1.56978 14.5695 1.62546 {normal=(0.539631 -0.80719 -0.239256)} Vertex 7213 1.5712 19.6911 3.25876 {normal=(0.364569 0.27854 0.888541)} Vertex 7214 1.57121 18.9282 3.25878 {normal=(0.364609 -0.278446 0.888554)} Vertex 7215 1.57184 -23.8351 -3.30151 Vertex 7216 1.57405 19.9263 3.30809 {normal=(0.482209 0.189271 0.855366)} Vertex 7217 1.57415 -3.67004 4.13388 Vertex 7218 1.57415 -2.25204 4.1339 Vertex 7219 1.57415 -0.834042 4.13392 Vertex 7220 1.57415 0.583956 4.13394 Vertex 7221 1.5746 19.9381 3.30676 {normal=(0.489029 -0.0246123 0.87192)} Vertex 7222 1.57478 17.2506 3.36193 {normal=(0.455621 -0.729639 0.509938)} Vertex 7223 1.57518 3.47644 4.9251 {normal=(0.268049 0.158617 0.950258)} Vertex 7224 1.57543 19.9163 3.31122 {normal=(0.465412 0.371451 0.803378)} Vertex 7225 1.57685 -13.1939 2.41279 {normal=(-0.322109 -0.0832098 0.943039)} Vertex 7226 1.57707 19.9519 3.30724 {normal=(0.40668 -0.532115 0.742607)} Vertex 7227 1.57805 15.8488 3.24238 {normal=(0.474885 0.650933 0.59226)} Vertex 7228 1.57894 15.932 -3.67969 {normal=(0.461576 -0.471669 -0.751316)} Vertex 7229 1.57909 -3.66992 -4.33347 Vertex 7230 1.57909 -2.25192 -4.33345 Vertex 7231 1.57909 -0.833921 -4.33343 Vertex 7232 1.57909 0.584077 -4.33341 Vertex 7233 1.57946 14.7382 0.88898 {normal=(0.728827 -0.605524 0.319611)} Vertex 7234 1.57985 20.0841 3.054 {normal=(0.369811 0.561472 0.740263)} Vertex 7235 1.57985 18.5353 3.05404 {normal=(0.369937 -0.561448 0.740218)} Vertex 7236 1.58161 19.8918 3.32182 {normal=(0.460228 0.445658 0.767841)} Vertex 7237 1.5821 19.4081 3.30834 {normal=(0.374308 0.0728984 0.924435)} Vertex 7238 1.5821 19.2113 3.30835 {normal=(0.374272 -0.0727679 0.924459)} Vertex 7239 1.58427 21.35 -3.30994 {normal=(0.560048 0.243158 -0.791972)} Vertex 7240 1.58848 20.4835 2.5454 {normal=(0.375716 0.848115 0.373548)} Vertex 7241 1.58849 18.1358 2.54547 {normal=(0.375731 -0.848107 0.373552)} Vertex 7242 1.58939 14.1278 -3.05245 {normal=(0.565298 0.362405 -0.741013)} Vertex 7243 1.59004 17.2794 3.37943 {normal=(0.596344 -0.418425 0.685051)} Vertex 7244 1.59014 17.3568 -3.94348 {normal=(0.565801 0.132369 -0.813847)} Vertex 7245 1.59082 16.7321 -2.19873 {normal=(0.592375 0.0670339 -0.802869)} Vertex 7246 1.59088 16.0747 3.05984 {normal=(0.573176 0.119399 0.810687)} Vertex 7247 1.59089 6.31946 4.9391 Vertex 7248 1.5926 19.8527 3.33987 {normal=(0.481712 0.330216 0.811733)} Vertex 7249 1.59278 14.739 1.16265 {normal=(0.634008 -0.757432 -0.155983)} Vertex 7250 1.59281 -13.1294 -4.98923 Vertex 7251 1.59294 16.9768 3.08609 {normal=(0.751172 0.0947121 0.653277)} Vertex 7252 1.5937 11.7165 0.070014 Vertex 7253 1.5941 11.7368 0.081587 {normal=(0.333342 -0.375795 0.864674)} Vertex 7254 1.59474 19.2427 3.30524 {normal=(0.383669 -0.0494556 0.922145)} Vertex 7255 1.59474 19.3766 3.30524 {normal=(0.383622 0.0495209 0.922161)} Vertex 7256 1.59561 19.7382 3.14147 {normal=(-0.166293 -0.986031 0.00950011)} Vertex 7257 1.59574 20.2413 2.90471 {normal=(0.381112 0.674425 0.632381)} Vertex 7258 1.59575 18.3781 2.90475 {normal=(0.381179 -0.67429 0.632483)} Vertex 7259 1.59593 5.38226 -5.60642 {normal=(0.188714 -0.139996 -0.972002)} Vertex 7260 1.59612 19.7415 3.32526 {normal=(0.0511054 -0.940367 0.336301)} Vertex 7261 1.59689 16.0648 3.05938 {normal=(0.423968 0.420222 0.802287)} Vertex 7262 1.59831 17.4596 3.42851 {normal=(0.342867 -0.499804 0.795386)} Vertex 7263 1.59832 -9.59247 3.72333 {normal=(-0.171671 -0.193933 0.965877)} Vertex 7264 1.59851 19.7378 2.78096 {normal=(-0.0242539 -0.957039 0.288942)} Vertex 7265 1.59865 20.3755 2.73377 {normal=(0.383122 0.770705 0.509148)} Vertex 7266 1.59866 18.2438 2.73383 {normal=(0.383142 -0.770635 0.509239)} Vertex 7267 1.59873 17.1574 3.14952 {normal=(0.0664141 -0.841728 0.535802)} Vertex 7268 1.59907 19.8126 3.34564 {normal=(0.490635 0.0278839 0.870919)} Vertex 7269 1.59919 -24.2339 -3.32883 Vertex 7270 1.5994 17.0164 3.07191 {normal=(0.604979 -0.0668118 0.793434)} Vertex 7271 1.60003 19.7476 3.33233 {normal=(0.347062 -0.542757 0.764828)} Vertex 7272 1.60025 19.9823 3.34269 {normal=(0.268962 -0.840588 0.470182)} Vertex 7273 1.60034 16.5047 -3.96301 {normal=(0.514088 -0.194909 -0.835299)} Vertex 7274 1.60052 -7.48821 -5.80326 {normal=(0.0772543 0.243104 -0.966919)} Vertex 7275 1.60101 19.7713 3.33912 {normal=(0.458323 -0.208488 0.863987)} Vertex 7276 1.60245 19.2758 3.30334 {normal=(0.389348 -0.0250772 0.920749)} Vertex 7277 1.60245 19.3436 3.30334 {normal=(0.389374 0.0251271 0.920737)} Vertex 7278 1.60504 19.3097 3.30271 {normal=(0.391251 2.83388e-05 0.920284)} Vertex 7279 1.60512 16.2316 3.06124 {normal=(0.677328 -0.0772923 0.73161)} Vertex 7280 1.60611 4.67001 4.70145 Vertex 7281 1.60838 17.0215 3.06951 {normal=(0.0968531 -0.350231 0.931643)} Vertex 7282 1.61088 17.4757 3.44003 {normal=(0.245632 -0.47507 0.84497)} Vertex 7283 1.61328 -3.67005 4.45599 Vertex 7284 1.61328 -2.25205 4.45601 Vertex 7285 1.61436 0.612496 4.76566 Vertex 7286 1.61555 19.35 -3.43355 {normal=(0.595933 0.0101737 -0.80297)} Vertex 7287 1.61697 20.9569 3.30085 {normal=(0.381029 0.405539 0.830876)} Vertex 7288 1.62552 19.2696 2.56202 {normal=(0.247483 0.69135 0.678813)} Vertex 7289 1.62625 15.7786 3.26957 {normal=(0.623694 0.46034 0.631738)} Vertex 7290 1.62657 1.21441 5.00383 {normal=(0.0851943 -0.286625 0.954247)} Vertex 7291 1.62682 19.656 3.24508 {normal=(0.405174 0.252886 0.878569)} Vertex 7292 1.62682 18.9633 3.2451 {normal=(0.405264 -0.252823 0.878545)} Vertex 7293 1.62867 21.5434 3.03602 {normal=(0.440609 0.481157 0.75786)} Vertex 7294 1.62996 22.5426 -2.15751 {normal=(0.491652 0.620321 -0.611131)} Vertex 7295 1.63002 13.2452 0.444484 {normal=(0.651013 -0.131639 0.747565)} Vertex 7296 1.63182 17.4842 3.43883 {normal=(0.161712 -0.415171 0.895255)} Vertex 7297 1.63283 22.3375 2.37682 {normal=(0.465103 0.621446 0.630463)} Vertex 7298 1.63341 -3.66992 -4.65662 Vertex 7299 1.63341 -2.25192 -4.6566 Vertex 7300 1.63362 22.9724 -1.63633 {normal=(0.313978 0.831513 -0.458262)} Vertex 7301 1.63425 16.7594 3.08052 {normal=(0.767022 0.0478639 0.639833)} Vertex 7302 1.6356 15.4969 3.15103 {normal=(0.683183 -0.382255 0.622207)} Vertex 7303 1.63566 17.1391 3.13747 {normal=(-0.172899 -0.614795 0.769502)} Vertex 7304 1.63963 16.5357 3.06359 {normal=(0.734526 -0.0546799 0.676374)} Vertex 7305 1.63988 19.87 3.1562 {normal=(0.41384 0.407262 0.814171)} Vertex 7306 1.63989 18.7493 3.15623 {normal=(0.413909 -0.407286 0.814124)} Vertex 7307 1.63996 15.7489 3.26876 {normal=(0.734116 0.0101728 0.678948)} Vertex 7308 1.64024 16.0117 3.07113 {normal=(0.337954 0.536862 0.773024)} Vertex 7309 1.64076 18.1657 3.63946 {normal=(0.174217 0.0249097 0.984392)} Vertex 7310 1.64308 15.655 3.22924 {normal=(0.713547 -0.277925 0.643124)} Vertex 7311 1.64415 20.0294 3.41312 {normal=(0.333925 -0.806543 0.487834)} Vertex 7312 1.64495 15.3313 3.01833 {normal=(0.67066 -0.461369 0.580822)} Vertex 7313 1.6536 14.6988 1.4173 {normal=(0.594024 -0.757283 -0.271399)} Vertex 7314 1.6542 -0.833917 -4.65355 Vertex 7315 1.6542 0.584082 -4.65353 Vertex 7316 1.65679 19.1382 3.2181 {normal=(-0.0816776 0.996629 0.00772588)} Vertex 7317 1.65798 19.1358 3.40302 {normal=(0.00441174 0.974768 0.223179)} Vertex 7318 1.65877 2.26427 5.11082 {normal=(0.319817 0.0223206 0.947216)} Vertex 7319 1.6592 19.1388 2.85758 {normal=(-0.0114856 0.980829 0.194533)} Vertex 7320 1.6598 -0.834047 4.44957 Vertex 7321 1.6598 0.583952 4.44959 Vertex 7322 1.66024 20.8214 3.36082 {normal=(0.161588 0.715252 0.67993)} Vertex 7323 1.66279 19.1315 3.41236 {normal=(0.135249 0.803925 0.579148)} Vertex 7324 1.6639 14.5215 2.03304 {normal=(0.548534 -0.82408 -0.141433)} Vertex 7325 1.66606 13.7258 -3.20359 {normal=(0.562623 0.384454 -0.731881)} Vertex 7326 1.67102 17.3499 -2.12512 Vertex 7327 1.67113 15.1583 2.83113 {normal=(0.67785 -0.456507 0.576299)} Vertex 7328 1.67418 -11.7335 -6.09934 Vertex 7329 1.67642 19.6124 3.23289 {normal=(0.441411 0.221016 0.86966)} Vertex 7330 1.67642 19.007 3.23291 {normal=(0.441424 -0.220946 0.869671)} Vertex 7331 1.67774 17.1955 3.21117 {normal=(0.0437578 -0.81741 0.574392)} Vertex 7332 1.67804 14.504 2.32628 {normal=(0.589964 -0.796381 0.133117)} Vertex 7333 1.67867 20.5439 1.8756 {normal=(0.458141 0.888309 -0.0318539)} Vertex 7334 1.67868 18.0753 1.87566 {normal=(0.458241 -0.88826 -0.0317683)} Vertex 7335 1.6805 23.3306 -0.050574 {normal=(0.304668 0.952173 -0.023315)} Vertex 7336 1.68404 -25.5711 -3.3471 Vertex 7337 1.68444 2.14296 -5.6208 {normal=(0.186606 -0.0451965 -0.981395)} Vertex 7338 1.68623 17.3276 3.3224 {normal=(0.230142 -0.516513 0.824772)} Vertex 7339 1.68713 19.097 3.43845 {normal=(0.198118 0.6509 0.732856)} Vertex 7340 1.6874 16.764 2.99708 {normal=(0.80571 0.0468134 0.590457)} Vertex 7341 1.68829 -10.0787 -6.05037 {normal=(-0.05927 0.0514572 -0.996915)} Vertex 7342 1.68885 16.1426 2.97269 {normal=(0.569362 0.102521 0.815669)} Vertex 7343 1.68971 17.4916 3.43627 {normal=(0.100819 -0.448591 0.888032)} Vertex 7344 1.68984 -12.6992 2.5306 Vertex 7345 1.69053 20.091 3.46814 {normal=(0.457189 -0.668303 0.586813)} Vertex 7346 1.69085 16.2828 2.97602 {normal=(0.722252 -0.0452452 0.690148)} Vertex 7347 1.69268 14.9517 2.66028 {normal=(0.679984 -0.399127 0.615077)} Vertex 7348 1.69272 19.5291 2.47629 {normal=(0.223536 -0.582737 0.781312)} Vertex 7349 1.6939 0.598831 -5.11583 Vertex 7350 1.69422 16.8026 2.98256 {normal=(0.576135 -0.0601119 0.815141)} Vertex 7351 1.69448 20.0352 3.02582 {normal=(0.453026 0.526003 0.719784)} Vertex 7352 1.69448 18.5842 3.02585 {normal=(0.452923 -0.526022 0.719835)} Vertex 7353 1.69448 20.7991 3.40872 {normal=(0.108738 0.759156 0.641762)} Vertex 7354 1.69482 14.4415 0.554714 {normal=(0.823065 -0.179943 0.538688)} Vertex 7355 1.69647 14.852 0.987641 {normal=(0.68772 -0.725873 -0.0122643)} Vertex 7356 1.69761 16.1354 2.96954 {normal=(0.284274 0.309339 0.907468)} Vertex 7357 1.6992 17.0231 3.08743 {normal=(-0.194503 -0.462319 0.865118)} Vertex 7358 1.6996 22.0945 2.53771 {normal=(0.541525 0.541637 0.642946)} Vertex 7359 1.70363 16.5558 2.97955 {normal=(0.775534 -0.019288 0.631011)} Vertex 7360 1.70392 16.8057 2.97947 {normal=(0.0639027 -0.274665 0.959414)} Vertex 7361 1.70444 17.6611 3.50888 {normal=(0.138117 -0.3619 0.921928)} Vertex 7362 1.70515 13.4943 -3.29652 Vertex 7363 1.70687 13.5146 -3.28495 {normal=(0.56478 0.382643 -0.731169)} Vertex 7364 1.7096 14.7115 2.50578 {normal=(0.685517 -0.416244 0.597334)} Vertex 7365 1.71396 -25.9697 -3.37733 Vertex 7366 1.71441 20.7291 3.45238 {normal=(0.369528 0.433514 0.821897)} Vertex 7367 1.71808 13.8285 0.393545 {normal=(0.819932 -0.0934787 0.564778)} Vertex 7368 1.71879 19.5613 3.22248 {normal=(0.47232 0.183741 0.862063)} Vertex 7369 1.71879 19.0581 3.22249 {normal=(0.472291 -0.183716 0.862084)} Vertex 7370 1.71938 14.8153 0.690851 {normal=(0.811772 -0.45922 0.360754)} Vertex 7371 1.71948 21.7892 -3.05052 {normal=(0.58144 0.351509 -0.733737)} Vertex 7372 1.72002 20.6115 3.4918 {normal=(0.435268 0.30037 0.848717)} Vertex 7373 1.72092 15.9154 3.09509 {normal=(0.362511 0.512924 0.778135)} Vertex 7374 1.72101 17.2293 3.25187 {normal=(0.100589 -0.701692 0.705344)} Vertex 7375 1.72159 19.8185 3.13612 {normal=(0.473222 0.369847 0.799546)} Vertex 7376 1.7216 18.8009 3.13614 {normal=(0.473278 -0.369746 0.79956)} Vertex 7377 1.7222 21.2852 3.12926 {normal=(0.486962 0.396876 0.778047)} Vertex 7378 1.72289 20.5287 2.08789 {normal=(0.472645 0.880142 0.044245)} Vertex 7379 1.7229 18.0905 2.08795 {normal=(0.472702 -0.880104 0.0443834)} Vertex 7380 1.72291 18.3448 3.60811 {normal=(0.147362 0.119382 0.981852)} Vertex 7381 1.72436 12.8254 0.298828 {normal=(0.645449 -0.122964 0.75384)} Vertex 7382 1.72853 17.2588 3.27161 {normal=(0.133684 -0.606841 0.7835)} Vertex 7383 1.73026 1.18158 -5.50375 {normal=(0.180007 -0.291226 -0.939566)} Vertex 7384 1.731 19.0325 3.48129 {normal=(0.211962 0.55598 0.803715)} Vertex 7385 1.73123 -22.2784 -3.26744 Vertex 7386 1.73154 14.5826 2.38827 {normal=(0.706211 -0.585986 0.39735)} Vertex 7387 1.73349 14.8303 1.26287 {normal=(0.642237 -0.72798 -0.239951)} Vertex 7388 1.73365 20.1824 2.87081 {normal=(0.481046 0.631783 0.60782)} Vertex 7389 1.73365 18.4369 2.87085 {normal=(0.480892 -0.631774 0.607951)} Vertex 7390 1.73726 16.9288 -2.06602 {normal=(0.627902 0.0291705 -0.777746)} Vertex 7391 1.73878 16.3064 2.9313 {normal=(0.54247 0.00732602 0.840043)} Vertex 7392 1.73917 20.4934 3.52846 {normal=(0.411422 0.320912 0.853081)} Vertex 7393 1.73938 20.167 3.50775 {normal=(0.555487 -0.545237 0.627815)} Vertex 7394 1.74068 16.5659 2.93569 {normal=(0.556512 -0.0418079 0.829787)} Vertex 7395 1.7412 16.107 2.97485 {normal=(0.113707 0.374847 0.920087)} Vertex 7396 1.74547 3.45723 4.84657 {normal=(0.0509089 0.144134 0.988248)} Vertex 7397 1.7489 16.3024 2.92708 {normal=(0.122348 0.0806769 0.989203)} Vertex 7398 1.75076 16.566 2.93199 {normal=(0.0617775 -0.105576 0.99249)} Vertex 7399 1.75098 20.4835 2.29865 {normal=(0.492981 0.847712 0.195841)} Vertex 7400 1.75099 18.1358 2.29871 {normal=(0.492998 -0.84768 0.19594)} Vertex 7401 1.75269 19.6842 3.03506 {normal=(-0.391282 -0.920231 0.00859286)} Vertex 7402 1.75287 19.504 3.2141 {normal=(0.497187 0.141934 0.855956)} Vertex 7403 1.75287 19.1153 3.21411 {normal=(0.497192 -0.141918 0.855955)} Vertex 7404 1.75365 19.6873 3.21849 {normal=(-0.146023 -0.928214 0.342193)} Vertex 7405 1.75391 2.2504 5.03539 {normal=(0.0595237 0.065632 0.996067)} Vertex 7406 1.75575 19.6829 2.67416 {normal=(-0.179256 -0.930047 0.320749)} Vertex 7407 1.75642 20.3082 2.69499 {normal=(0.497168 0.722042 0.481123)} Vertex 7408 1.75643 18.3111 2.69504 {normal=(0.497133 -0.722023 0.481187)} Vertex 7409 1.75865 19.6923 3.22444 {normal=(0.308376 -0.554613 0.772858)} Vertex 7410 1.76018 8.04807 -6.14647 {normal=(0.100278 -0.0589065 -0.993214)} Vertex 7411 1.7607 14.6635 1.75923 {normal=(0.602607 -0.767163 -0.219833)} Vertex 7412 1.76225 20.4094 2.50269 {normal=(0.501182 0.794595 0.342688)} Vertex 7413 1.76226 18.2099 2.50275 {normal=(0.501196 -0.794585 0.342691)} Vertex 7414 1.76685 19.7169 3.22822 {normal=(0.504878 -0.205182 0.83845)} Vertex 7415 1.7699 20.2327 3.54048 {normal=(0.603503 -0.483237 0.634245)} Vertex 7416 1.77002 -13.8469 -5.28026 Vertex 7417 1.77087 18.965 3.51124 {normal=(0.21969 0.41109 0.884727)} Vertex 7418 1.77105 19.309 2.46677 {normal=(0.272323 0.697627 0.66269)} Vertex 7419 1.77147 15.8534 3.10449 {normal=(0.494718 0.378791 0.782158)} Vertex 7420 1.77184 20.3748 3.56234 {normal=(0.460063 0.207416 0.86332)} Vertex 7421 1.77551 21.8428 2.68186 {normal=(0.575518 0.503563 0.644363)} Vertex 7422 1.77771 18.5286 3.58116 {normal=(0.111096 0.0970412 0.989061)} Vertex 7423 1.77784 19.1774 3.20797 {normal=(0.515444 -0.0965431 0.851467)} Vertex 7424 1.77784 19.442 3.20796 {normal=(0.515461 0.0966087 0.85145)} Vertex 7425 1.77796 19.8697 3.18897 {normal=(0.602854 0.30615 0.736776)} Vertex 7426 1.77826 19.7611 3.22985 {normal=(0.570894 0.00186291 0.821021)} Vertex 7427 1.77891 19.8443 3.20087 {normal=(0.608025 0.391243 0.690822)} Vertex 7428 1.77944 19.8798 3.18503 {normal=(0.595227 0.163973 0.786649)} Vertex 7429 1.78091 17.1485 3.18192 {normal=(-0.17322 -0.609705 0.77347)} Vertex 7430 1.78092 19.8916 3.18251 {normal=(0.577502 0.037448 0.81553)} Vertex 7431 1.78158 13.312 0.240132 {normal=(0.818989 -0.0404895 0.572379)} Vertex 7432 1.78208 20.2879 3.56635 {normal=(0.586756 -0.194237 0.786123)} Vertex 7433 1.78228 19.8036 3.22073 {normal=(0.610752 0.280404 0.74051)} Vertex 7434 1.78243 19.9051 3.18142 {normal=(0.425771 -0.426626 0.797941)} Vertex 7435 1.78675 17.2673 3.28907 {normal=(-0.0943818 -0.634718 0.766958)} Vertex 7436 1.78892 4.66595 4.768 Vertex 7437 1.78935 16.8093 2.99942 {normal=(-0.214045 -0.337193 0.91678)} Vertex 7438 1.79172 19.9419 -3.38087 {normal=(0.585182 -0.0258353 -0.810491)} Vertex 7439 1.79189 15.8258 3.09935 {normal=(0.676094 0.0634437 0.734079)} Vertex 7440 1.79306 19.3766 3.20422 {normal=(0.526553 0.0489327 0.848733)} Vertex 7441 1.79306 19.2427 3.20423 {normal=(0.526555 -0.0488837 0.848734)} Vertex 7442 1.79446 19.7544 3.1182 {normal=(0.526227 0.323242 0.786511)} Vertex 7443 1.79447 18.865 3.11823 {normal=(0.526222 -0.323143 0.786555)} Vertex 7444 1.79616 17.8767 3.57367 {normal=(0.15692 -0.240133 0.957973)} Vertex 7445 1.79816 14.608 2.15071 {normal=(0.656861 -0.753006 -0.038929)} Vertex 7446 1.79818 19.3097 3.20297 {normal=(0.530295 5.22932e-05 0.847813)} Vertex 7447 1.80027 19.9684 2.99981 {normal=(0.529679 0.477631 0.700934)} Vertex 7448 1.80028 18.6509 2.99985 {normal=(0.529615 -0.477603 0.701002)} Vertex 7449 1.80237 16.2916 2.93389 {normal=(-0.134914 0.0971107 0.986087)} Vertex 7450 1.80516 18.7172 3.55861 {normal=(0.0944605 0.0795578 0.992345)} Vertex 7451 1.80586 14.9497 0.801957 {normal=(0.747123 -0.655663 0.109147)} Vertex 7452 1.80674 18.8945 3.52829 {normal=(0.194983 0.351237 0.915759)} Vertex 7453 1.80703 17.2714 3.29425 {normal=(0.0480381 -0.548524 0.834754)} Vertex 7454 1.80859 21.034 3.18265 {normal=(0.485428 0.417205 0.76831)} Vertex 7455 1.81147 -27.5065 -3.39832 Vertex 7456 1.81317 -22.3595 -4.88473 Vertex 7457 1.81355 14.9509 1.08997 {normal=(0.683417 -0.717231 -0.136088)} Vertex 7458 1.81875 12.4145 0.150431 {normal=(0.63644 -0.130899 0.760138)} Vertex 7459 1.81961 16.0576 2.98864 {normal=(0.11339 0.330687 0.936904)} Vertex 7460 1.82181 15.7439 3.05243 {normal=(0.715331 -0.167916 0.678311)} Vertex 7461 1.82231 18.817 3.546 {normal=(0.0930574 0.099647 0.990662)} Vertex 7462 1.82374 16.5655 2.94824 {normal=(-0.220309 -0.134554 0.966105)} Vertex 7463 1.82482 19.9482 3.21522 {normal=(0.236724 -0.757912 0.607891)} Vertex 7464 1.82666 18.8527 3.53811 {normal=(0.149427 0.296676 0.943215)} Vertex 7465 1.82874 -23.8152 -3.28843 Vertex 7466 1.82919 18.8278 3.54333 {normal=(0.104811 0.167649 0.980259)} Vertex 7467 1.8301 19.459 2.39687 {normal=(0.206359 -0.426225 0.880766)} Vertex 7468 1.83041 22.1458 -2.29606 {normal=(0.653878 0.628347 -0.421454)} Vertex 7469 1.83064 18.8397 3.5407 {normal=(0.115555 0.1961 0.973751)} Vertex 7470 1.83128 22.1358 -2.32746 {normal=(0.610953 0.791439 0.0190101)} Vertex 7471 1.83337 16.9852 -2.16686 {normal=(-0.48336 -0.280275 0.829342)} Vertex 7472 1.83369 14.7954 1.54263 {normal=(0.644963 -0.712098 -0.277378)} Vertex 7473 1.83799 17.1982 3.23715 {normal=(-0.0763119 -0.612431 0.786832)} Vertex 7474 1.83944 14.5085 0.358514 {normal=(0.839358 -0.163699 0.518344)} Vertex 7475 1.84341 17.2558 3.28036 {normal=(0.0945897 -0.51483 0.852058)} Vertex 7476 1.8443 -6.48107 4.07782 {normal=(-0.028763 -0.0367933 0.998909)} Vertex 7477 1.8444 19.1663 3.12638 {normal=(-0.271653 0.962362 0.00801342)} Vertex 7478 1.84628 19.1641 3.31113 {normal=(-0.102007 0.971753 0.212816)} Vertex 7479 1.84791 19.1673 2.76533 {normal=(-0.166588 0.967064 0.192445)} Vertex 7480 1.84836 17.1682 3.21515 {normal=(-0.104015 -0.589941 0.800719)} Vertex 7481 1.84972 14.8906 0.501427 {normal=(0.839222 -0.385451 0.383581)} Vertex 7482 1.85353 19.1609 3.31957 {normal=(0.133879 0.834239 0.534903)} Vertex 7483 1.85406 -24.2144 -3.29388 Vertex 7484 1.8567 19.6793 3.10291 {normal=(0.571429 0.268686 0.77542)} Vertex 7485 1.85671 18.94 3.10292 {normal=(0.571407 -0.268705 0.77543)} Vertex 7486 1.85747 13.8954 0.197345 {normal=(0.839443 -0.0922359 0.535563)} Vertex 7487 1.85754 2.26245 5.09119 {normal=(-0.132721 0.0368036 0.99047)} Vertex 7488 1.85866 20.4304 1.83135 {normal=(0.587706 0.806567 -0.0636452)} Vertex 7489 1.85867 18.1889 1.83141 {normal=(0.587857 -0.806454 -0.0636874)} Vertex 7490 1.86057 21.5826 2.80926 {normal=(0.616541 0.460962 0.638272)} Vertex 7491 1.86091 20.1021 2.83952 {normal=(0.573071 0.573685 0.585214)} Vertex 7492 1.86092 18.5172 2.83956 {normal=(0.573035 -0.573667 0.585267)} Vertex 7493 1.86124 15.6079 2.96373 {normal=(0.698547 -0.312226 0.643854)} Vertex 7494 1.86307 22.1388 -2.40843 {normal=(0.512459 0.805322 0.298065)} Vertex 7495 1.86372 15.8502 -2.16584 {normal=(0.698911 0.201159 -0.686338)} Vertex 7496 1.86436 23.135 -1.0072 {normal=(0.381509 0.89118 -0.245458)} Vertex 7497 1.86513 23.2137 0.654922 {normal=(0.434595 0.878385 0.198915)} Vertex 7498 1.86984 19.3585 2.37892 {normal=(0.23908 0.440831 0.865164)} Vertex 7499 1.87121 20.9002 3.2301 {normal=(0.220536 0.769832 0.598934)} Vertex 7500 1.87183 17.0211 3.12566 {normal=(-0.199451 -0.47719 0.855867)} Vertex 7501 1.87229 16.022 2.99229 {normal=(0.351971 0.265852 0.897463)} Vertex 7502 1.87557 15.2836 2.68792 {normal=(0.685681 -0.459523 0.564517)} Vertex 7503 1.87791 22.0385 -2.75298 {normal=(0.644053 0.510457 -0.569762)} Vertex 7504 1.87867 19.4128 2.37497 {normal=(0.165884 -0.237275 0.957174)} Vertex 7505 1.87916 15.4545 2.84222 {normal=(0.689591 -0.441045 0.574407)} Vertex 7506 1.87917 16.253 -2.02816 {normal=(0.691377 0.14157 -0.708488)} Vertex 7507 1.87996 12.8922 0.094476 {normal=(0.814068 -0.0154126 0.580564)} Vertex 7508 1.88286 14.9174 1.38324 {normal=(0.682571 -0.677015 -0.275223)} Vertex 7509 1.88373 14.7017 2.24035 {normal=(0.755793 -0.613454 0.229021)} Vertex 7510 1.88416 15.833 -2.48162 {normal=(-0.42478 -0.405705 0.809299)} Vertex 7511 1.88538 19.1269 3.34546 {normal=(0.250332 0.702454 0.666253)} Vertex 7512 1.88696 15.0857 2.52937 {normal=(0.692297 -0.404384 0.59766)} Vertex 7513 1.88728 15.2372 -2.32701 {normal=(0.702564 0.217723 -0.677495)} Vertex 7514 1.88797 18.0853 3.59162 {normal=(0.215674 -0.0460703 0.975378)} Vertex 7515 1.89462 19.8854 2.97662 {normal=(0.598054 0.417467 0.684144)} Vertex 7516 1.89462 18.7339 2.97665 {normal=(0.598082 -0.417372 0.684177)} Vertex 7517 1.89638 19.609 2.93014 {normal=(-0.526874 -0.849903 0.00835965)} Vertex 7518 1.89737 15.0607 0.898606 {normal=(0.729603 -0.682996 -0.0345872)} Vertex 7519 1.89762 19.6119 3.11311 {normal=(-0.260795 -0.89215 0.368856)} Vertex 7520 1.89918 16.2739 2.95175 {normal=(-0.124454 0.0619686 0.990288)} Vertex 7521 1.89923 16.0004 2.98583 {normal=(0.556305 0.145363 0.818165)} Vertex 7522 1.89939 19.6072 2.56906 {normal=(-0.311797 -0.884572 0.346864)} Vertex 7523 1.90049 22.9589 1.24197 {normal=(0.504451 0.785164 0.35923)} Vertex 7524 1.90066 20.4166 2.04419 {normal=(0.600991 0.799154 0.0127928)} Vertex 7525 1.90067 18.2027 2.04425 {normal=(0.601074 -0.799092 0.0127772)} Vertex 7526 1.90203 20.2163 2.65919 {normal=(0.602419 0.655608 0.455269)} Vertex 7527 1.90204 18.403 2.65924 {normal=(0.602432 -0.655587 0.455281)} Vertex 7528 1.90311 19.616 3.11799 {normal=(0.291862 -0.525313 0.799289)} Vertex 7529 1.9042 17.1638 3.21703 {normal=(-0.00594013 -0.584008 0.811726)} Vertex 7530 1.90678 19.5952 3.0906 {normal=(0.60784 0.207534 0.76646)} Vertex 7531 1.90678 19.0241 3.09061 {normal=(0.607808 -0.207544 0.766483)} Vertex 7532 1.9081 20.0208 3.28393 {normal=(0.356258 -0.671358 0.649891)} Vertex 7533 1.90901 17.2512 3.27146 {normal=(0.139318 -0.510287 0.848645)} Vertex 7534 1.91007 20.8837 3.2716 {normal=(0.198638 0.799092 0.567446)} Vertex 7535 1.9108 14.7207 -2.48043 {normal=(0.713168 0.267047 -0.648134)} Vertex 7536 1.91121 15.0418 0.626083 {normal=(0.798815 -0.573136 0.182782)} Vertex 7537 1.91303 13.3789 0.043932 {normal=(0.843259 -0.0277208 0.536792)} Vertex 7538 1.91332 14.8609 2.36657 {normal=(0.736306 -0.439206 0.514734)} Vertex 7539 1.91528 19.6404 3.11792 {normal=(0.542303 -0.177956 0.821121)} Vertex 7540 1.91536 15.3659 -2.80445 Vertex 7541 1.91665 22.8178 -1.66263 {normal=(0.510383 0.688122 -0.515749)} Vertex 7542 1.91778 17.0972 -1.91025 {normal=(0.665392 -0.0277993 -0.745976)} Vertex 7543 1.91961 12.0125 -0.000706 {normal=(0.632395 -0.138632 0.76214)} Vertex 7544 1.92145 -12.9329 2.61846 {normal=(-0.278036 -0.277311 0.919671)} Vertex 7545 1.92215 20.3755 2.25657 {normal=(0.61657 0.769712 0.165482)} Vertex 7546 1.92216 18.2438 2.25662 {normal=(0.616551 -0.769715 0.165538)} Vertex 7547 1.92262 20.3082 2.46327 {normal=(0.617054 0.721483 0.314175)} Vertex 7548 1.92263 18.3111 2.46332 {normal=(0.617031 -0.721482 0.314222)} Vertex 7549 1.92351 17.1335 3.1939 {normal=(0.0146254 -0.477864 0.878312)} Vertex 7550 1.92473 3.46099 4.90409 {normal=(-0.1258 0.109169 0.986031)} Vertex 7551 1.92577 22.155 -2.53895 {normal=(0.634019 0.771393 -0.0545203)} Vertex 7552 1.92697 15.5838 -3.13535 {normal=(0.53364 -0.634198 -0.559482)} Vertex 7553 1.92977 16.1077 2.93519 {normal=(0.558702 -0.085505 0.824949)} Vertex 7554 1.9307 18.4396 -3.29316 {normal=(0.688632 0.171489 -0.704541)} Vertex 7555 1.93101 14.7724 1.89858 {normal=(0.680831 -0.715957 -0.154513)} Vertex 7556 1.93242 15.035 1.19596 {normal=(0.705565 -0.681199 -0.195311)} Vertex 7557 1.93415 19.6852 3.11293 {normal=(0.634915 0.00148959 0.772581)} Vertex 7558 1.94158 17.3809 3.34799 {normal=(0.160983 -0.471685 0.866947)} Vertex 7559 1.94183 19.0621 3.3888 {normal=(0.298076 0.61593 0.729233)} Vertex 7560 1.94197 20.8244 3.30558 {normal=(0.456891 0.477759 0.750332)} Vertex 7561 1.94242 22.7277 1.64701 {normal=(0.5413 0.716276 0.44039)} Vertex 7562 1.94295 -25.6153 -3.31302 Vertex 7563 1.94345 19.504 3.08158 {normal=(0.634491 0.141266 0.759911)} Vertex 7564 1.94345 19.1153 3.08159 {normal=(0.63448 -0.141216 0.75993)} Vertex 7565 1.94374 19.7277 3.09832 {normal=(0.71048 0.252208 0.65697)} Vertex 7566 1.94405 19.7681 3.0741 {normal=(0.728378 0.350775 0.588576)} Vertex 7567 1.94477 21.3321 2.89878 {normal=(0.662292 0.395801 0.636169)} Vertex 7568 1.94507 19.7937 3.05973 {normal=(0.728048 0.266969 0.631406)} Vertex 7569 1.94607 17.4652 -1.9304 Vertex 7570 1.94677 19.8044 3.05521 {normal=(0.712523 0.145826 0.686328)} Vertex 7571 1.94826 17.5591 3.43109 {normal=(0.179198 -0.401735 0.898052)} Vertex 7572 1.9483 17.1362 3.1968 {normal=(0.0636405 -0.461804 0.884696)} Vertex 7573 1.94875 19.816 3.05174 {normal=(0.684454 0.0385292 0.728037)} Vertex 7574 1.94925 20.531 -3.23084 {normal=(0.615755 0.109914 -0.780234)} Vertex 7575 1.95051 16.8134 3.04239 {normal=(-0.208263 -0.332471 0.919831)} Vertex 7576 1.95098 19.8285 3.04934 {normal=(0.514832 -0.354578 0.780527)} Vertex 7577 1.95209 15.9554 -3.42424 {normal=(0.573671 -0.454648 -0.68132)} Vertex 7578 1.95333 -33.605 -4.43582 Vertex 7579 1.95789 15.9261 2.93779 {normal=(0.643268 -0.0570825 0.76351)} Vertex 7580 1.95962 16.5644 2.98442 {normal=(-0.206404 -0.151817 0.966617)} Vertex 7581 1.95968 19.2169 3.01133 {normal=(-0.411275 0.911482 0.00729506)} Vertex 7582 1.95997 16.089 2.92806 {normal=(0.41835 -0.00852956 0.908246)} Vertex 7583 1.96019 -25.887 -3.31673 Vertex 7584 1.96203 19.2151 3.19577 {normal=(-0.220388 0.955717 0.195025)} Vertex 7585 1.96255 14.3009 -2.62608 {normal=(0.720903 0.312517 -0.618572)} Vertex 7586 1.96376 19.2187 2.64949 {normal=(-0.212371 0.95409 0.211214)} Vertex 7587 1.96402 -33.2993 -3.565 Vertex 7588 1.9656 14.9641 0.320706 {normal=(0.874382 -0.313191 0.370631)} Vertex 7589 1.96578 16.4455 -1.91395 {normal=(0.699099 0.0755896 -0.711018)} Vertex 7590 1.96582 19.4081 3.07609 {normal=(0.650742 0.071553 0.75592)} Vertex 7591 1.96583 19.2113 3.07609 {normal=(0.650744 -0.0714611 0.755927)} Vertex 7592 1.96599 16.2635 2.95818 {normal=(0.0499346 -0.0887205 0.994804)} Vertex 7593 1.96609 16.1024 2.92862 {normal=(0.276926 -0.195312 0.940832)} Vertex 7594 1.96629 14.5756 0.170467 {normal=(0.86619 -0.144351 0.478411)} Vertex 7595 1.9669 20.7222 3.33205 {normal=(0.522662 0.338765 0.782344)} Vertex 7596 1.96909 20.1235 3.32556 {normal=(0.549947 -0.413302 0.725768)} Vertex 7597 1.9692 11.7809 -0.093635 Vertex 7598 1.9701 11.8013 -0.082061 {normal=(0.641504 -0.273565 0.716683)} Vertex 7599 1.97078 19.2131 3.20281 {normal=(0.12695 0.867834 0.480362)} Vertex 7600 1.97202 22.2602 -2.0636 {normal=(0.624274 0.483665 -0.613474)} Vertex 7601 1.97223 17.0215 3.14584 {normal=(-0.0933301 -0.427069 0.899389)} Vertex 7602 1.97334 19.3097 3.07424 {normal=(0.656209 4.55386e-05 0.754579)} Vertex 7603 1.97442 20.0023 2.81162 {normal=(0.655191 0.501447 0.565044)} Vertex 7604 1.97442 18.617 2.81165 {normal=(0.655232 -0.501372 0.565064)} Vertex 7605 1.9752 19.7883 2.95681 {normal=(0.656465 0.347039 0.66979)} Vertex 7606 1.9752 18.8311 2.95684 {normal=(0.656483 -0.346971 0.669807)} Vertex 7607 1.97622 12.4812 -0.053921 {normal=(0.811597 -0.0180672 0.583939)} Vertex 7608 1.97798 18.8349 3.52164 {normal=(0.274259 0.411358 0.869233)} Vertex 7609 1.97985 18.2866 3.56273 {normal=(0.265343 0.0569578 0.96247)} Vertex 7610 1.98031 13.9625 0.009298 {normal=(0.867726 -0.0881997 0.489154)} Vertex 7611 1.98194 18.8013 3.53177 {normal=(0.277081 0.132887 0.951613)} Vertex 7612 1.98357 17.3087 -3.62741 {normal=(0.672538 0.140122 -0.726677)} Vertex 7613 1.98385 15.1609 0.723394 {normal=(0.764275 -0.643704 0.0390895)} Vertex 7614 1.98434 18.8218 3.52537 {normal=(0.336368 0.321131 0.885286)} Vertex 7615 1.98533 18.8134 3.52791 {normal=(0.394982 0.194302 0.897907)} Vertex 7616 1.9907 16.4807 -3.6711 {normal=(0.637644 -0.171066 -0.751097)} Vertex 7617 1.9909 22.5201 1.87003 {normal=(0.593892 0.624796 0.506875)} Vertex 7618 1.99189 19.2678 -3.10991 {normal=(0.675388 -0.0304208 -0.736835)} Vertex 7619 1.99365 18.6968 3.5354 {normal=(0.283251 0.0882908 0.954973)} Vertex 7620 1.99368 18.8262 3.51748 {normal=(0.510978 0.354229 0.783213)} Vertex 7621 1.99419 15.1482 0.980799 {normal=(0.727599 -0.677296 -0.108948)} Vertex 7622 1.99467 18.8178 3.52002 {normal=(0.539559 0.215479 0.813907)} Vertex 7623 1.99488 -27.4976 -1.93941 Vertex 7624 1.99846 20.612 3.35853 {normal=(0.519334 0.345032 0.781822)} Vertex 7625 1.99973 -23.8937 -4.80727 Vertex 7626 2.00039 17.0244 3.14796 {normal=(0.0741218 -0.363228 0.928747)} Vertex 7627 2.00046 18.9796 3.42278 {normal=(0.36152 0.503965 0.784425)} Vertex 7628 2.00278 19.8815 3.07429 {normal=(0.329923 -0.662043 0.672942)} Vertex 7629 2.00279 16.2603 2.95321 {normal=(0.224192 -0.208331 0.952017)} Vertex 7630 2.003 18.8963 3.47092 {normal=(0.36129 0.45751 0.812499)} Vertex 7631 2.00594 7.82099 4.60024 Vertex 7632 2.00743 -32.2028 -3.85415 {normal=(-0.983832 -0.176856 -0.0282187)} Vertex 7633 2.0078 20.2563 3.34013 {normal=(0.663848 -0.302311 0.684043)} Vertex 7634 2.00832 15.1281 0.460017 {normal=(0.851331 -0.485878 0.197883)} Vertex 7635 2.01094 19.1837 3.22366 {normal=(0.296489 0.750378 0.590786)} Vertex 7636 2.01193 14.917 1.68431 {normal=(0.716239 -0.650612 -0.252401)} Vertex 7637 2.01404 12.9591 -0.101724 {normal=(0.842608 0.00839751 0.538462)} Vertex 7638 2.01508 18.4905 3.54399 {normal=(0.283035 0.0715119 0.95644)} Vertex 7639 2.01917 20.2892 1.7919 {normal=(0.703305 0.704902 -0.0920601)} Vertex 7640 2.01918 18.3301 1.79195 {normal=(0.703302 -0.704905 -0.0920611)} Vertex 7641 2.02047 13.89 -2.77448 {normal=(0.72183 0.345571 -0.599618)} Vertex 7642 2.02388 17.7922 3.51682 {normal=(0.225355 -0.276921 0.934093)} Vertex 7643 2.0261 13.446 -0.144115 {normal=(0.874555 -0.0160252 0.484661)} Vertex 7644 2.0267 19.5125 2.82671 {normal=(-0.596868 -0.802299 0.00805323)} Vertex 7645 2.02803 19.5153 3.00914 {normal=(-0.333878 -0.858124 0.390063)} Vertex 7646 2.02813 21.0915 2.95041 {normal=(0.655593 0.433331 0.618403)} Vertex 7647 2.02895 -25.9603 -1.81046 Vertex 7648 2.02943 19.5105 2.46567 {normal=(-0.353724 -0.85844 0.37143)} Vertex 7649 2.03189 20.1021 2.62727 {normal=(0.696269 0.573076 0.432196)} Vertex 7650 2.0319 18.5172 2.62731 {normal=(0.69629 -0.573046 0.432203)} Vertex 7651 2.03342 19.5189 3.01298 {normal=(0.306663 -0.4784 0.822855)} Vertex 7652 2.03429 20.3507 3.36013 {normal=(0.705996 -0.372028 0.602632)} Vertex 7653 2.03551 22.3044 2.058 {normal=(0.63245 0.549023 0.546426)} Vertex 7654 2.03571 16.0401 2.88179 {normal=(0.506217 -0.130379 0.852494)} Vertex 7655 2.03662 20.4937 3.38503 {normal=(0.584463 0.22233 0.780367)} Vertex 7656 2.03911 17.0592 3.15193 {normal=(0.20528 -0.340967 0.917388)} Vertex 7657 2.04003 19.6793 2.94088 {normal=(0.703469 0.268009 0.658258)} Vertex 7658 2.04003 18.94 2.9409 {normal=(0.70348 -0.268044 0.658231)} Vertex 7659 2.04093 15.0418 1.50788 {normal=(0.744799 -0.609591 -0.27143)} Vertex 7660 2.0457 17.1922 3.20889 {normal=(0.231971 -0.445563 0.864675)} Vertex 7661 2.04631 -22.3315 -4.77785 Vertex 7662 2.04632 19.5421 3.00823 {normal=(0.600318 -0.100767 0.793388)} Vertex 7663 2.04645 16.5643 3.00162 {normal=(-0.0510952 -0.188637 0.980717)} Vertex 7664 2.04828 15.7991 2.84817 {normal=(0.671678 -0.230945 0.703927)} Vertex 7665 2.04854 16.817 3.06417 {normal=(-0.0782731 -0.320005 0.944177)} Vertex 7666 2.04856 20.4067 3.38556 {normal=(0.697055 -0.174699 0.695409)} Vertex 7667 2.0522 16.6511 -1.80202 {normal=(0.719268 0.0564428 -0.692436)} Vertex 7668 2.053 15.0284 0.162007 {normal=(0.919334 -0.226777 0.321555)} Vertex 7669 2.05332 -33.9647 -4.37041 {normal=(-0.979053 -0.179485 -0.0961304)} Vertex 7670 2.05527 16.0862 2.88443 {normal=(0.403042 -0.244249 0.881986)} Vertex 7671 2.05857 19.2645 2.89201 {normal=(-0.443864 0.896057 0.00821238)} Vertex 7672 2.0592 20.2771 2.00522 {normal=(0.715514 0.69843 -0.0153411)} Vertex 7673 2.05921 18.3422 2.00527 {normal=(0.715478 -0.698465 -0.0154425)} Vertex 7674 2.06027 18.7047 3.50347 {normal=(0.498944 0.159258 0.851875)} Vertex 7675 2.06146 19.2627 3.07545 {normal=(-0.200363 0.958719 0.201773)} Vertex 7676 2.06164 18.8891 3.44123 {normal=(0.511845 0.382234 0.769358)} Vertex 7677 2.06175 -27.4876 -3.33859 Vertex 7678 2.06184 19.2661 2.53032 {normal=(-0.223463 0.948821 0.223167)} Vertex 7679 2.06203 14.6254 0.004696 {normal=(0.905016 -0.115799 0.409312)} Vertex 7680 2.06564 20.1824 2.42811 {normal=(0.72034 0.63066 0.288753)} Vertex 7681 2.06564 18.4369 2.42815 {normal=(0.720314 -0.630638 0.288867)} Vertex 7682 2.06573 -32.4382 -2.82081 Vertex 7683 2.06673 19.5849 2.99489 {normal=(0.698118 0.0547692 0.713885)} Vertex 7684 2.0674 15.2479 0.793363 {normal=(0.741428 -0.670005 -0.0371085)} Vertex 7685 2.06818 15.2515 0.564334 {normal=(0.794208 -0.606356 0.0395657)} Vertex 7686 2.0705 19.2608 3.08064 {normal=(0.18699 0.87206 0.452267)} Vertex 7687 2.07136 19.8854 2.78779 {normal=(0.725363 0.416824 0.54782)} Vertex 7688 2.07136 18.7339 2.78782 {normal=(0.725418 -0.416716 0.547829)} Vertex 7689 2.07213 15.1605 1.30602 {normal=(0.754745 -0.625156 -0.198844)} Vertex 7690 2.07252 14.0123 -0.156473 {normal=(0.90807 -0.0747012 0.412103)} Vertex 7691 2.07481 20.2412 2.21904 {normal=(0.726812 0.672755 0.138363)} Vertex 7692 2.07482 18.378 2.21909 {normal=(0.726751 -0.672818 0.138382)} Vertex 7693 2.07607 19.7 2.91863 {normal=(0.789282 0.170525 0.589877)} Vertex 7694 2.07624 22.0806 2.21092 {normal=(0.667613 0.47994 0.569166)} Vertex 7695 2.07673 19.6881 2.9235 {normal=(0.807035 0.305269 0.505475)} Vertex 7696 2.07697 19.6253 2.97265 {normal=(0.778659 0.278507 0.562249)} Vertex 7697 2.07704 19.6632 2.94151 {normal=(0.800486 0.36753 0.473438)} Vertex 7698 2.07746 17.3227 3.27791 {normal=(0.29674 -0.467785 0.83254)} Vertex 7699 2.07796 12.0792 -0.205059 {normal=(0.811969 -0.0233326 0.583234)} Vertex 7700 2.07806 19.7113 2.91446 {normal=(0.74122 0.01234 0.671149)} Vertex 7701 2.07818 -33.679 -3.59156 {normal=(-0.959938 -0.19281 0.20333)} Vertex 7702 2.07953 17.2729 -1.77223 {normal=(0.709583 -0.0581521 -0.702218)} Vertex 7703 2.07999 -24.2927 -4.83908 Vertex 7704 2.08026 15.2214 0.315462 {normal=(0.913736 -0.37689 0.151791)} Vertex 7705 2.08028 7.90822 4.89768 Vertex 7706 2.08069 14.8963 2.04352 {normal=(0.778147 -0.623924 0.0721536)} Vertex 7707 2.0825 19.1269 3.25832 {normal=(0.386046 0.672936 0.630971)} Vertex 7708 2.08273 19.7221 2.91099 {normal=(0.587626 -0.296222 0.752959)} Vertex 7709 2.08344 16.8201 3.06475 {normal=(0.123168 -0.288709 0.949461)} Vertex 7710 2.08424 16.5654 2.99983 {normal=(0.174321 -0.23103 0.957203)} Vertex 7711 2.08709 -23.8256 -1.61062 Vertex 7712 2.08718 17.5969 -1.76757 Vertex 7713 2.08751 19.5613 2.9292 {normal=(0.737897 0.182443 0.649786)} Vertex 7714 2.08752 19.058 2.92922 {normal=(0.737912 -0.182439 0.64977)} Vertex 7715 2.08816 21.1173 -2.98346 {normal=(0.644244 0.196165 -0.739236)} Vertex 7716 2.09079 20.966 2.99322 {normal=(0.353026 0.814969 0.459563)} Vertex 7717 2.09634 15.6392 2.71839 {normal=(0.731345 -0.392776 0.55755)} Vertex 7718 2.10127 16.2594 2.91527 {normal=(0.356683 -0.261777 0.8968)} Vertex 7719 2.10151 17.0957 -1.98176 {normal=(-0.571848 -0.271661 0.774074)} Vertex 7720 2.10206 15.4463 2.54847 {normal=(0.764582 -0.422407 0.486813)} Vertex 7721 2.10416 19.9748 3.1266 {normal=(0.51491 -0.547006 0.66004)} Vertex 7722 2.105 13.4879 -2.92562 {normal=(0.721189 0.373436 -0.583465)} Vertex 7723 2.10772 19.4509 2.76344 {normal=(-0.623105 -0.782097 0.00805207)} Vertex 7724 2.10887 -25.5735 -1.68668 Vertex 7725 2.10917 19.4534 2.94538 {normal=(-0.356567 -0.840245 0.40847)} Vertex 7726 2.10978 18.0238 3.53373 {normal=(0.327395 -0.0615137 0.942883)} Vertex 7727 2.10985 13.4958 -0.309886 {normal=(0.917401 0.00441733 0.397939)} Vertex 7728 2.11003 19.4487 2.4026 {normal=(-0.38263 -0.795176 0.470415)} Vertex 7729 2.11009 15.0835 0.025329 {normal=(0.926263 -0.178889 0.331716)} Vertex 7730 2.11071 19.2398 3.08839 {normal=(0.353687 0.778214 0.51893)} Vertex 7731 2.11084 12.5482 -0.250121 {normal=(0.843338 0.00709514 0.537336)} Vertex 7732 2.11437 19.4564 2.9484 {normal=(0.344227 -0.413062 0.843142)} Vertex 7733 2.11648 19.437 2.92209 {normal=(0.758896 0.0923621 0.644629)} Vertex 7734 2.11648 19.1823 2.9221 {normal=(0.758904 -0.0922973 0.644629)} Vertex 7735 2.11673 -33.1107 -3.69455 Vertex 7736 2.117 15.2732 1.07871 {normal=(0.759947 -0.638602 -0.12111)} Vertex 7737 2.11758 15.252 2.37663 {normal=(0.776414 -0.369272 0.510705)} Vertex 7738 2.12116 -22.2883 -1.48167 Vertex 7739 2.12255 23.1317 -0.279779 {normal=(0.496978 0.865474 -0.062992)} Vertex 7740 2.12433 -33.3832 -4.43682 Vertex 7741 2.12469 14.6579 -0.1388 {normal=(0.910317 -0.106945 0.399858)} Vertex 7742 2.12471 15.3215 0.192417 {normal=(0.934643 -0.319287 0.156518)} Vertex 7743 2.12471 13.0262 -0.289771 {normal=(0.878075 0.0354101 0.477212)} Vertex 7744 2.12499 -35.0093 -4.66006 {normal=(-0.929559 -0.166825 -0.32877)} Vertex 7745 2.12515 21.8402 2.34155 {normal=(0.706676 0.424767 0.565845)} Vertex 7746 2.12553 16.855 3.06795 {normal=(0.22267 -0.275586 0.935131)} Vertex 7747 2.12621 19.3097 2.9197 {normal=(0.765959 3.95251e-05 0.64289)} Vertex 7748 2.12677 11.8477 -0.297987 Vertex 7749 2.12798 17.5067 3.35752 {normal=(0.347448 -0.426367 0.835159)} Vertex 7750 2.12812 11.868 -0.286415 {normal=(0.823726 -0.181502 0.537152)} Vertex 7751 2.13146 14.0449 -0.299968 {normal=(0.914355 -0.0784905 0.397234)} Vertex 7752 2.13242 19.4732 2.93451 {normal=(0.664171 -0.00451598 0.747567)} Vertex 7753 2.13274 20.9554 3.02718 {normal=(0.295697 0.857443 0.421135)} Vertex 7754 2.13329 15.3499 0.426008 {normal=(0.814237 -0.577008 -0.0638765)} Vertex 7755 2.13415 19.7821 2.91988 {normal=(0.441789 -0.536674 0.718891)} Vertex 7756 2.13531 19.0389 3.30479 {normal=(0.476496 0.55715 0.6801)} Vertex 7757 2.1368 16.8698 -1.69237 {normal=(0.744686 0.0156652 -0.667231)} Vertex 7758 2.13852 -24.2354 -1.57445 Vertex 7759 2.13946 19.4241 2.74036 {normal=(-0.742477 -0.669831 0.00735437)} Vertex 7760 2.13947 -11.2875 3.18019 {normal=(0.19916 -0.390296 0.898891)} Vertex 7761 2.14105 19.4264 2.92183 {normal=(-0.470614 -0.754046 0.458188)} Vertex 7762 2.14106 19.3088 2.76844 {normal=(-0.629775 0.776728 0.0087761)} Vertex 7763 2.14119 19.4219 2.37983 {normal=(-0.485573 -0.691028 0.535443)} Vertex 7764 2.14215 19.3094 2.40781 {normal=(-0.369225 0.872675 0.319549)} Vertex 7765 2.14281 19.9684 2.60001 {normal=(0.776475 0.476385 0.412486)} Vertex 7766 2.14281 18.6509 2.60004 {normal=(0.776521 -0.476284 0.412515)} Vertex 7767 2.14288 15.0562 2.20287 {normal=(0.802804 -0.437534 0.405055)} Vertex 7768 2.14458 19.3071 2.95019 {normal=(-0.242084 0.927012 0.286433)} Vertex 7769 2.14496 15.3341 0.633656 {normal=(0.744435 -0.667194 -0.0258453)} Vertex 7770 2.14597 19.4287 2.92424 {normal=(0.356252 -0.30123 0.884503)} Vertex 7771 2.148 13.2564 -3.01855 Vertex 7772 2.14935 19.7544 2.76862 {normal=(0.781824 0.321942 0.533952)} Vertex 7773 2.14935 18.865 2.76864 {normal=(0.781854 -0.321892 0.533937)} Vertex 7774 2.15024 -32.8637 -2.9009 {normal=(-0.863126 -0.205624 0.46123)} Vertex 7775 2.15055 13.2767 -3.00697 {normal=(0.724952 0.326739 -0.606371)} Vertex 7776 2.1527 19.304 2.95305 {normal=(0.26799 0.798257 0.539413)} Vertex 7777 2.1545 -32.3061 -3.02674 Vertex 7778 2.15623 17.0575 3.11865 {normal=(0.26826 -0.307554 0.912933)} Vertex 7779 2.15627 20.1239 1.7582 {normal=(0.801942 0.585956 -0.116381)} Vertex 7780 2.15628 18.4954 1.75824 {normal=(0.801917 -0.586004 -0.116314)} Vertex 7781 2.16114 13.5284 -0.453381 {normal=(0.92343 -0.00240812 0.38376)} Vertex 7782 2.16201 17.1913 3.1681 {normal=(0.314081 -0.383214 0.86862)} Vertex 7783 2.16207 19.3908 2.72327 {normal=(-0.894602 -0.446816 0.00659227)} Vertex 7784 2.16316 19.3892 2.36297 {normal=(-0.6137 -0.428505 0.663141)} Vertex 7785 2.16332 19.5038 2.90373 {normal=(0.751961 0.115953 0.64893)} Vertex 7786 2.16396 15.9525 -2.29455 {normal=(-0.458136 -0.404826 0.791346)} Vertex 7787 2.16428 19.3919 2.90443 {normal=(-0.663677 -0.546407 0.510854)} Vertex 7788 2.16503 15.9504 2.7938 {normal=(0.635292 -0.241572 0.733517)} Vertex 7789 2.16715 19.7935 -3.07764 {normal=(0.663593 -0.0780433 -0.744012)} Vertex 7790 2.1689 20.9064 3.05414 {normal=(0.610022 0.524014 0.594376)} Vertex 7791 2.16977 19.3925 2.90644 {normal=(0.298743 -0.180399 0.937128)} Vertex 7792 2.17091 18.759 3.40889 {normal=(0.595506 0.24601 0.764756)} Vertex 7793 2.17186 16.0213 -1.72006 {normal=(0.848701 0.0898847 -0.521178)} Vertex 7794 2.17207 7.80563 5.07598 Vertex 7795 2.17358 19.4339 2.89678 {normal=(0.714178 0.0714443 0.696308)} Vertex 7796 2.1737 16.5597 2.97428 {normal=(0.292781 -0.263369 0.919193)} Vertex 7797 2.17551 20.1046 3.13649 {normal=(0.737033 -0.246202 0.629418)} Vertex 7798 2.17556 19.351 2.71219 {normal=(-0.983799 0.179199 0.00517859)} Vertex 7799 2.17593 19.3504 2.35203 {normal=(-0.635332 0.307776 0.708256)} Vertex 7800 2.17593 15.6243 -1.83938 {normal=(0.857683 0.158371 -0.489182)} Vertex 7801 2.17681 15.4563 0.308415 {normal=(0.789699 -0.593529 -0.155238)} Vertex 7802 2.17885 19.3501 2.89318 {normal=(-0.775095 0.281492 0.565676)} Vertex 7803 2.17962 15.3737 0.886465 {normal=(0.764478 -0.642658 -0.0506326)} Vertex 7804 2.18206 19.1996 3.09872 {normal=(0.466739 0.711432 0.525376)} Vertex 7805 2.18224 21.5831 2.44988 {normal=(0.752165 0.373961 0.542588)} Vertex 7806 2.18293 19.5323 2.86524 {normal=(0.817863 0.312264 0.483312)} Vertex 7807 2.18468 19.2951 2.93966 {normal=(0.471347 0.681831 0.559409)} Vertex 7808 2.18579 19.3479 2.89498 {normal=(0.417204 0.388426 0.821624)} Vertex 7809 2.18779 20.0352 2.39808 {normal=(0.808587 0.524286 0.267042)} Vertex 7810 2.1878 18.5841 2.39812 {normal=(0.808614 -0.524186 0.267156)} Vertex 7811 2.18832 15.0636 1.84234 {normal=(0.76281 -0.608602 -0.21846)} Vertex 7812 2.18948 18.4809 3.47171 {normal=(0.512189 0.111509 0.851603)} Vertex 7813 2.19027 22.9227 -1.10581 {normal=(0.594121 0.743951 -0.305872)} Vertex 7814 2.19127 19.5586 2.81904 {normal=(0.83221 0.391154 0.39297)} Vertex 7815 2.19132 18.9711 3.31763 {normal=(0.577662 0.426236 0.696154)} Vertex 7816 2.19214 17.3234 3.22211 {normal=(0.398886 -0.414876 0.817782)} Vertex 7817 2.19412 19.5883 2.78604 {normal=(0.824724 0.211349 0.524558)} Vertex 7818 2.1946 20.1139 1.97193 {normal=(0.81321 0.580634 -0.0394266)} Vertex 7819 2.19461 18.5054 1.97197 {normal=(0.81321 -0.580629 -0.0394829)} Vertex 7820 2.195 19.5772 2.79264 {normal=(0.839778 0.347619 0.417053)} Vertex 7821 2.19533 15.0112 -2.00055 {normal=(0.861127 0.162687 -0.481657)} Vertex 7822 2.19631 15.4422 0.035051 {normal=(0.924807 -0.308823 0.222172)} Vertex 7823 2.19667 19.5987 2.7806 {normal=(0.757994 -0.00127731 0.65226)} Vertex 7824 2.19728 17.7443 3.44772 {normal=(0.400229 -0.312052 0.86165)} Vertex 7825 2.19928 20.8189 3.07408 {normal=(0.69332 0.362658 0.622725)} Vertex 7826 2.20053 15.172 -0.149886 {normal=(0.908856 -0.165418 0.382907)} Vertex 7827 2.20104 19.3914 2.87476 {normal=(0.722882 0.116093 0.681149)} Vertex 7828 2.20167 13.076 -0.455543 {normal=(0.92304 0.0722734 0.377855)} Vertex 7829 2.20264 19.6084 2.77633 {normal=(0.617682 -0.260282 0.742106)} Vertex 7830 2.2052 20.084 2.18699 {normal=(0.820927 0.559292 0.115204)} Vertex 7831 2.2052 18.5352 2.18703 {normal=(0.820956 -0.55925 0.115196)} Vertex 7832 2.20598 18.254 3.48179 {normal=(0.455451 0.0786629 0.886779)} Vertex 7833 2.20647 19.6124 2.75458 {normal=(0.823187 0.219124 0.523783)} Vertex 7834 2.20647 19.007 2.7546 {normal=(0.823187 -0.219139 0.523777)} Vertex 7835 2.20662 15.2036 1.6368 {normal=(0.782091 -0.560593 -0.272156)} Vertex 7836 2.21147 16.0618 2.80064 {normal=(0.608813 -0.285694 0.740085)} Vertex 7837 2.2122 12.1461 -0.401259 {normal=(0.845739 0.00187825 0.533593)} Vertex 7838 2.21221 15.4141 0.493643 {normal=(0.721632 -0.684887 -0.100884)} Vertex 7839 2.21279 14.4947 -2.15396 {normal=(0.869533 0.209099 -0.447426)} Vertex 7840 2.21479 19.3456 2.86844 {normal=(0.65438 0.370261 0.659313)} Vertex 7841 2.21682 20.2707 3.10395 {normal=(0.827058 -0.135745 0.54548)} Vertex 7842 2.22008 -22.2766 -1.94615 Vertex 7843 2.22096 12.6153 -0.438169 {normal=(0.882174 0.0394876 0.469265)} Vertex 7844 2.22299 15.4756 -2.58509 Vertex 7845 2.22345 16.8133 3.0298 {normal=(0.248079 -0.263496 0.932216)} Vertex 7846 2.2239 19.4421 2.83946 {normal=(0.788811 0.166579 0.591632)} Vertex 7847 2.22479 14.7304 -0.322939 {normal=(0.89055 -0.114554 0.440224)} Vertex 7848 2.22611 17.4561 -1.65197 {normal=(0.764789 -0.0742756 -0.639985)} Vertex 7849 2.22615 17.0856 -1.58755 {normal=(0.772745 -0.0450082 -0.633119)} Vertex 7850 2.22866 -27.4857 -2.0479 Vertex 7851 2.22951 16.2022 -1.6426 {normal=(0.854725 0.012046 -0.518942)} Vertex 7852 2.22983 14.1173 -0.484108 {normal=(0.889622 -0.10072 0.445452)} Vertex 7853 2.23109 15.3276 1.42013 {normal=(0.792164 -0.577988 -0.195975)} Vertex 7854 2.23204 19.8185 2.57807 {normal=(0.841035 0.367935 0.396591)} Vertex 7855 2.23204 18.8009 2.5781 {normal=(0.84104 -0.367846 0.396663)} Vertex 7856 2.23235 19.8915 2.94114 {normal=(0.628119 -0.423363 0.652864)} Vertex 7857 2.23239 21.3462 2.5374 {normal=(0.791027 0.329273 0.515612)} Vertex 7858 2.23249 20.7193 3.09577 {normal=(0.696498 0.355851 0.623105)} Vertex 7859 2.23773 -33.7206 -5.04736 Vertex 7860 2.23816 15.8314 2.65936 {normal=(0.822207 -0.31966 0.470948)} Vertex 7861 2.24051 19.2803 2.91 {normal=(0.581235 0.639591 0.50308)} Vertex 7862 2.24058 -23.929 -4.6972 Vertex 7863 2.24132 19.4629 2.74602 {normal=(0.848411 0.110935 0.517583)} Vertex 7864 2.24132 19.1564 2.74603 {normal=(0.848418 -0.110905 0.517578)} Vertex 7865 2.24245 -25.6286 -4.77163 Vertex 7866 2.2436 17.504 3.2882 {normal=(0.487544 -0.406426 0.772734)} Vertex 7867 2.24474 13.1086 -0.599037 {normal=(0.927905 0.0658286 0.366958)} Vertex 7868 2.24534 15.5892 0.164112 {normal=(0.774484 -0.61037 -0.166202)} Vertex 7869 2.24778 19.1484 3.10031 {normal=(0.611961 0.606494 0.507611)} Vertex 7870 2.24935 21.4833 -2.73383 {normal=(0.666811 0.277059 -0.69181)} Vertex 7871 2.25053 17.0201 3.08181 {normal=(0.26406 -0.276475 0.924031)} Vertex 7872 2.2514 15.462 0.729283 {normal=(0.769556 -0.638556 -0.00539536)} Vertex 7873 2.25209 13.6009 -0.637521 {normal=(0.893914 -0.0442155 0.446053)} Vertex 7874 2.25303 19.3097 2.74314 {normal=(0.856893 3.4877e-05 0.515494)} Vertex 7875 2.25506 19.665 2.76901 {normal=(0.518091 -0.422875 0.743477)} Vertex 7876 2.25512 15.683 2.47845 {normal=(0.880781 -0.32936 0.340216)} Vertex 7877 2.25611 22.4791 -1.63011 {normal=(0.668078 0.515919 -0.536189)} Vertex 7878 2.25706 20.4698 3.10082 {normal=(0.837994 -0.335917 0.430031)} Vertex 7879 2.25808 19.3885 2.8094 {normal=(0.804635 0.188603 0.56302)} Vertex 7880 2.25981 11.9146 -0.494187 Vertex 7881 2.2614 16.2607 2.84436 {normal=(0.594614 -0.303086 0.744697)} Vertex 7882 2.26158 11.935 -0.482614 {normal=(0.861039 -0.162244 0.481964)} Vertex 7883 2.26162 19.4488 2.7761 {normal=(0.847398 0.311844 0.429731)} Vertex 7884 2.26193 14.0749 -2.29962 {normal=(0.874099 0.257058 -0.412156)} Vertex 7885 2.26414 -25.8848 -1.91362 Vertex 7886 2.26585 19.3432 2.81356 {normal=(0.756279 0.361722 0.54516)} Vertex 7887 2.26656 19.9385 1.73109 {normal=(0.881327 0.452538 -0.135913)} Vertex 7888 2.26657 18.6807 1.73112 {normal=(0.88131 -0.45259 -0.135846)} Vertex 7889 2.26717 15.4877 0.373321 {normal=(0.668377 -0.710083 -0.221485)} Vertex 7890 2.26789 23.0141 0.347768 {normal=(0.626769 0.766071 0.142464)} Vertex 7891 2.26854 20.6076 3.1192 {normal=(0.758582 0.219464 0.613505)} Vertex 7892 2.26908 15.4358 1.19234 {normal=(0.798535 -0.589234 -0.123065)} Vertex 7893 2.27015 -25.6136 -1.89087 Vertex 7894 2.2702 20.4037 3.0332 {normal=(0.901413 -0.165612 0.400034)} Vertex 7895 2.27341 -24.1989 -4.68357 Vertex 7896 2.27559 21.1295 2.60413 {normal=(0.799824 0.376323 0.467613)} Vertex 7897 2.27592 -26.0217 -4.7316 Vertex 7898 2.27673 20.5244 3.12088 {normal=(0.837665 -0.184813 0.513966)} Vertex 7899 2.2778 16.4177 -1.55974 {normal=(0.867465 0.00699543 -0.497449)} Vertex 7900 2.27832 17.1904 3.12731 {normal=(0.322767 -0.312357 0.893451)} Vertex 7901 2.27861 15.6648 -2.85336 {normal=(0.704307 -0.584893 -0.402309)} Vertex 7902 2.28124 15.6539 2.34734 {normal=(0.911807 -0.264369 0.314193)} Vertex 7903 2.28176 17.9757 3.45587 {normal=(0.505529 -0.0899261 0.85811)} Vertex 7904 2.28606 19.87 2.37393 {normal=(0.879637 0.404887 0.24961)} Vertex 7905 2.28607 18.7493 2.37396 {normal=(0.879645 -0.404828 0.249676)} Vertex 7906 2.28675 19.4542 2.7067 {normal=(0.8581 0.366742 0.359396)} Vertex 7907 2.28841 15.4456 2.19616 {normal=(0.892143 -0.249718 0.37646)} Vertex 7908 2.28939 -33.5132 -3.54935 {normal=(-0.869741 -0.489497 0.0627902)} Vertex 7909 2.28939 19.2559 2.87058 {normal=(0.734812 0.536716 0.414712)} Vertex 7910 2.29109 15.5833 -0.156639 {normal=(0.957593 -0.239189 0.160635)} Vertex 7911 2.29315 15.6057 2.2721 {normal=(0.905874 -0.225814 0.35833)} Vertex 7912 2.29621 12.6651 -0.60394 {normal=(0.928563 0.0861079 0.361049)} Vertex 7913 2.29739 19.656 2.56201 {normal=(0.888305 0.250426 0.384969)} Vertex 7914 2.29739 18.9633 2.56203 {normal=(0.888275 -0.250453 0.38502)} Vertex 7915 2.29985 19.461 2.66714 {normal=(0.855869 0.349067 0.381629)} Vertex 7916 2.30041 22.7821 0.875445 {normal=(0.697415 0.659425 0.280662)} Vertex 7917 2.3005 15.1855 1.90996 {normal=(0.87488 -0.483757 -0.0237492)} Vertex 7918 2.30095 19.4693 2.65741 {normal=(0.837589 0.214113 0.502593)} Vertex 7919 2.3023 15.2638 2.03824 {normal=(0.901695 -0.330444 0.278841)} Vertex 7920 2.30262 -24.1483 -1.76796 Vertex 7921 2.30354 19.9308 1.94516 {normal=(0.891881 0.448427 -0.0588315)} Vertex 7922 2.30355 18.6885 1.94519 {normal=(0.891884 -0.448427 -0.0587978)} Vertex 7923 2.30457 19.4781 2.65015 {normal=(0.753527 -0.0141448 0.657265)} Vertex 7924 2.30463 16.0309 2.66512 {normal=(0.873015 -0.2785 0.400353)} Vertex 7925 2.30682 17.3241 3.16631 {normal=(0.429894 -0.327855 0.84125)} Vertex 7926 2.30787 19.086 3.09316 {normal=(0.696271 0.529947 0.48411)} Vertex 7927 2.30848 19.3809 2.72552 {normal=(0.876881 0.251127 0.409896)} Vertex 7928 2.30863 -23.877 -1.74521 Vertex 7929 2.30978 20.0342 2.90092 {normal=(0.834598 -0.13704 0.533542)} Vertex 7930 2.3101 19.9078 2.16121 {normal=(0.896706 0.431965 0.0965632)} Vertex 7931 2.3101 18.7115 2.16124 {normal=(0.896724 -0.431924 0.0965792)} Vertex 7932 2.31073 19.4876 2.64537 {normal=(0.639772 -0.214846 0.737925)} Vertex 7933 2.31245 19.3388 2.73603 {normal=(0.858071 0.303288 0.414404)} Vertex 7934 2.31344 15.333 1.68986 {normal=(0.819629 -0.513546 -0.253928)} Vertex 7935 2.314 -34.0872 -4.97328 {normal=(-0.801999 -0.169747 -0.572698)} Vertex 7936 2.31481 16.5473 2.92496 {normal=(0.567558 -0.294274 0.768948)} Vertex 7937 2.31596 -30.8593 -2.03129 Vertex 7938 2.31639 17.733 3.36637 {normal=(0.57618 -0.315807 0.753845)} Vertex 7939 2.31661 15.5359 0.595206 {normal=(0.771099 -0.636657 0.00857263)} Vertex 7940 2.31673 17.267 -1.71016 {normal=(-0.711306 -0.225581 0.665701)} Vertex 7941 2.3174 18.3778 -2.88612 {normal=(0.769343 0.158071 -0.618971)} Vertex 7942 2.31829 15.294 -0.36364 {normal=(0.954114 -0.0861008 0.286799)} Vertex 7943 2.31857 13.664 -2.44802 {normal=(0.873635 0.296714 -0.385647)} Vertex 7944 2.31896 21.0188 2.65016 {normal=(0.527427 0.816049 0.236399)} Vertex 7945 2.32049 17.7304 -1.59039 Vertex 7946 2.32066 16.6679 -1.47148 {normal=(0.869108 -0.0185185 -0.494275)} Vertex 7947 2.32092 12.2132 -0.589307 {normal=(0.886194 0.035315 0.461967)} Vertex 7948 2.32317 17.2983 -1.48755 {normal=(0.829235 -0.0572671 -0.555958)} Vertex 7949 2.32472 15.5382 1.0027 {normal=(0.807182 -0.587793 -0.0543783)} Vertex 7950 2.32526 -30.3048 -2.1879 {normal=(-0.779013 -0.0659338 0.623531)} Vertex 7951 2.32559 18.8597 3.25166 {normal=(0.685606 0.339665 0.643872)} Vertex 7952 2.32563 13.1811 -0.783177 {normal=(0.89699 0.018532 0.441662)} Vertex 7953 2.33131 19.2218 2.82139 {normal=(0.775685 0.508975 0.373172)} Vertex 7954 2.33377 7.56557 5.12066 Vertex 7955 2.33396 15.9939 -3.08556 {normal=(0.732021 -0.418413 -0.537657)} Vertex 7956 2.33406 22.5705 1.24316 {normal=(0.731354 0.593297 0.336334)} Vertex 7957 2.33474 15.9937 2.47786 {normal=(0.95066 -0.234821 0.202741)} Vertex 7958 2.33525 15.7488 -0.0069 {normal=(0.813155 -0.53762 -0.223032)} Vertex 7959 2.33646 12.6976 -0.747435 {normal=(0.932755 0.0857211 0.350171)} Vertex 7960 2.33724 19.3852 2.65199 {normal=(0.892372 0.262695 0.366965)} Vertex 7961 2.33726 19.485 2.55222 {normal=(0.917123 0.126796 0.377899)} Vertex 7962 2.33726 19.1343 2.55223 {normal=(0.917124 -0.126768 0.377908)} Vertex 7963 2.33747 20.3223 -2.91731 {normal=(0.709723 0.0708181 -0.700912)} Vertex 7964 2.33919 -35.0338 -3.30494 {normal=(-0.943779 -0.162573 0.28784)} Vertex 7965 2.34184 19.3236 2.67149 {normal=(0.827131 0.363805 0.428369)} Vertex 7966 2.34338 17.6154 -1.49608 {normal=(0.86218 -0.0812571 -0.500044)} Vertex 7967 2.34433 18.5497 3.33846 {normal=(0.656496 0.177594 0.733126)} Vertex 7968 2.34643 15.4565 1.52431 {normal=(0.840271 -0.508905 -0.186978)} Vertex 7969 2.34735 19.7377 1.71123 {normal=(0.939434 0.308086 -0.150156)} Vertex 7970 2.34735 18.8816 1.71125 {normal=(0.939446 -0.308049 -0.150158)} Vertex 7971 2.34834 19.3666 2.63376 {normal=(0.846309 0.282501 0.451613)} Vertex 7972 2.34856 19.1688 -2.73188 {normal=(0.750661 -0.0693445 -0.657038)} Vertex 7973 2.3491 15.6132 0.2373 {normal=(0.655248 -0.695586 -0.294636)} Vertex 7974 2.35066 19.3097 2.54893 {normal=(0.926813 2.86218e-05 0.375524)} Vertex 7975 2.35143 16.7983 2.99258 {normal=(0.552087 -0.26753 0.789701)} Vertex 7976 2.35334 19.3997 2.60385 {normal=(0.890939 0.274618 0.36168)} Vertex 7977 2.35391 19.7684 2.75862 {normal=(0.677477 -0.300114 0.671533)} Vertex 7978 2.35474 -30.8039 -2.24334 Vertex 7979 2.35498 14.8428 -0.547725 {normal=(0.947291 -0.0649519 0.31372)} Vertex 7980 2.35542 19.4065 2.59256 {normal=(0.783835 0.215916 0.582223)} Vertex 7981 2.35635 17.4984 3.2082 {normal=(0.568809 -0.329386 0.753632)} Vertex 7982 2.35756 19.3933 2.5966 {normal=(0.795513 0.321543 0.513584)} Vertex 7983 2.35804 19.6911 2.35624 {normal=(0.931646 0.275583 0.236831)} Vertex 7984 2.35804 18.9282 2.35626 {normal=(0.931634 -0.275588 0.236873)} Vertex 7985 2.35894 16.2705 2.7148 {normal=(0.892415 -0.262719 0.366843)} Vertex 7986 2.36053 21.7101 -2.07318 {normal=(0.723409 0.558443 -0.405982)} Vertex 7987 2.36119 14.2297 -0.708894 {normal=(0.943711 -0.069229 0.323445)} Vertex 7988 2.36241 19.4046 2.58704 {normal=(0.550008 0.271426 0.789822)} Vertex 7989 2.36249 21.0142 2.67548 {normal=(0.394473 0.908885 0.135346)} Vertex 7990 2.36378 19.4121 2.58402 {normal=(0.59018 0.118267 0.798561)} Vertex 7991 2.36412 15.7678 -1.29214 {normal=(0.976666 0.043107 -0.210393)} Vertex 7992 2.36415 21.6966 -2.1019 {normal=(0.631039 0.774785 0.0386949)} Vertex 7993 2.36455 19.3914 2.59108 {normal=(0.646858 0.34956 0.677778)} Vertex 7994 2.3655 19.5301 2.62167 {normal=(0.572121 -0.340901 0.745965)} Vertex 7995 2.36646 20.2103 2.79921 {normal=(0.889105 -0.0401707 0.455938)} Vertex 7996 2.36698 11.9817 -0.682235 Vertex 7997 2.36744 16.0201 2.34359 {normal=(0.969991 -0.194226 0.146266)} Vertex 7998 2.36885 22.3794 1.45092 {normal=(0.769623 0.508542 0.38609)} Vertex 7999 2.36913 12.0021 -0.670662 {normal=(0.902772 -0.131518 0.409519)} Vertex 8000 2.37004 19.4215 2.57898 {normal=(0.607712 -0.0703815 0.791032)} Vertex 8001 2.37127 17.014 3.04722 {normal=(0.554704 -0.255655 0.791798)} Vertex 8002 2.37281 -31.3416 -2.10853 {normal=(-0.700858 -0.159383 0.695266)} Vertex 8003 2.37332 15.5955 0.484235 {normal=(0.780374 -0.624628 -0.0292503)} Vertex 8004 2.37727 15.9721 2.22351 {normal=(0.97297 -0.158026 0.168395)} Vertex 8005 2.378 15.7606 -0.566094 {normal=(0.99348 -0.0644677 0.0940285)} Vertex 8006 2.37844 13.7133 -0.862307 {normal=(0.941761 -0.0208018 0.33564)} Vertex 8007 2.3789 15.4049 1.76572 {normal=(0.921359 -0.38171 -0.073457)} Vertex 8008 2.37983 16.2147 -1.99832 {normal=(-0.590466 -0.381996 0.710936)} Vertex 8009 2.37996 15.3582 -1.42214 {normal=(0.973519 0.0919999 -0.209276)} Vertex 8010 2.38011 16.9032 -1.37634 {normal=(0.869074 -0.0638865 -0.490539)} Vertex 8011 2.38131 19.3922 2.58178 {normal=(0.609975 0.210148 0.764047)} Vertex 8012 2.38142 18.2008 3.38196 {normal=(0.606175 0.125984 0.785289)} Vertex 8013 2.38268 19.3997 2.57875 {normal=(0.588591 0.164158 0.791589)} Vertex 8014 2.38333 19.7324 1.92555 {normal=(0.949479 0.30523 -0.072975)} Vertex 8015 2.38333 18.8868 1.92557 {normal=(0.949471 -0.305257 -0.0729572)} Vertex 8016 2.38355 17.2575 -3.2152 {normal=(0.765187 0.135325 -0.629426)} Vertex 8017 2.38386 15.5809 1.31468 {normal=(0.861967 -0.494325 -0.112498)} Vertex 8018 2.38552 -32.2529 -5.28061 {normal=(-0.819317 -0.134023 -0.557456)} Vertex 8019 2.3865 11.132 -5.6933 {normal=(0.0352919 0.224886 -0.973746)} Vertex 8020 2.38692 19.7168 2.14233 {normal=(0.952201 0.294 0.0829253)} Vertex 8021 2.38693 18.9025 2.14235 {normal=(0.952197 -0.294005 0.08296)} Vertex 8022 2.38907 16.4629 -3.28168 {normal=(0.762844 -0.159546 -0.62659)} Vertex 8023 2.38917 15.9239 2.14826 {normal=(0.94928 -0.123093 0.289337)} Vertex 8024 2.38938 7.39991 4.99909 Vertex 8025 2.39036 -33.5131 -4.9756 Vertex 8026 2.39158 15.4838 1.87269 {normal=(0.956327 -0.241072 0.165295)} Vertex 8027 2.39191 15.6349 0.851211 {normal=(0.816811 -0.576888 0.00453481)} Vertex 8028 2.39223 15.9739 -1.19331 {normal=(0.982748 -0.0425311 -0.179992)} Vertex 8029 2.39261 14.7452 -1.58331 {normal=(0.973818 0.0832568 -0.211535)} Vertex 8030 2.39331 15.4926 -0.744391 {normal=(0.997339 0.0030692 0.0728445)} Vertex 8031 2.39388 16.2886 2.52657 {normal=(0.973485 -0.186733 0.132128)} Vertex 8032 2.39403 12.2631 -0.755078 {normal=(0.933463 0.0844324 0.348595)} Vertex 8033 2.39463 17.1894 3.08652 {normal=(0.592772 -0.261467 0.761745)} Vertex 8034 2.39522 20.9752 2.69806 {normal=(0.736799 0.567164 0.368038)} Vertex 8035 2.39631 22.1747 1.63722 {normal=(0.794141 0.44087 0.418299)} Vertex 8036 2.39663 19.5263 1.69912 {normal=(0.974907 0.15594 -0.158867)} Vertex 8037 2.39663 19.0929 1.69913 {normal=(0.974903 -0.155976 -0.158856)} Vertex 8038 2.39878 16.0345 -0.525407 {normal=(0.978031 -0.202133 -0.0509631)} Vertex 8039 2.39945 15.6667 1.98798 {normal=(0.944591 -0.19027 0.267478)} Vertex 8040 2.40109 16.55 2.80839 {normal=(0.895752 -0.24273 0.37244)} Vertex 8041 2.40195 19.5027 2.34545 {normal=(0.963372 0.139505 0.229024)} Vertex 8042 2.40195 19.1166 2.34546 {normal=(0.96337 -0.139474 0.229054)} Vertex 8043 2.40391 17.9407 3.35805 {normal=(0.672248 -0.135644 0.727793)} Vertex 8044 2.40524 14.2287 -1.73672 {normal=(0.975298 0.127031 -0.180711)} Vertex 8045 2.40561 21.6929 -2.1762 {normal=(0.485596 0.818505 0.306996)} Vertex 8046 2.4061 13.262 -2.59915 {normal=(0.871867 0.327292 -0.364318)} Vertex 8047 2.40704 16.4854 2.12529 {normal=(0.988276 0.00676456 0.152525)} Vertex 8048 2.40802 16.2231 2.21983 {normal=(0.995993 -0.0685183 0.0574667)} Vertex 8049 2.40879 16.497 2.255 {normal=(0.998833 -0.0223692 -0.0427951)} Vertex 8050 2.41024 16.2728 2.36158 {normal=(0.991988 -0.118735 0.0431416)} Vertex 8051 2.4116 16.7024 2.23696 {normal=(0.997763 -0.0429951 -0.0511969)} Vertex 8052 2.41282 19.3352 2.56621 {normal=(0.722335 0.293424 0.626206)} Vertex 8053 2.41319 19.3096 1.69506 {normal=(0.986826 -1.13463e-05 -0.161785)} Vertex 8054 2.41395 12.7701 -0.931575 {normal=(0.900609 0.0420817 0.432588)} Vertex 8055 2.41467 16.2122 -1.1342 {normal=(0.980603 -0.0851172 -0.176558)} Vertex 8056 2.41507 15.8273 2.0426 {normal=(0.939101 -0.145694 0.311227)} Vertex 8057 2.41644 21.9564 1.80206 {normal=(0.816952 0.36721 0.444686)} Vertex 8058 2.41645 16.8393 2.16571 {normal=(0.99736 -0.0705452 0.0172429)} Vertex 8059 2.41671 19.3097 2.34183 {normal=(0.974031 3.02837e-05 0.226417)} Vertex 8060 2.41678 16.6257 2.07954 {normal=(0.983615 -0.000434814 0.180279)} Vertex 8061 2.41691 15.547 1.61857 {normal=(0.916658 -0.388686 -0.093069)} Vertex 8062 2.41714 20.9017 2.7179 {normal=(0.825557 0.357571 0.436576)} Vertex 8063 2.41832 16.2132 2.1118 {normal=(0.97643 -0.019137 0.214984)} Vertex 8064 2.4196 18.9814 3.02407 {normal=(0.746517 0.485181 0.455316)} Vertex 8065 2.42123 17.5367 -1.3271 {normal=(0.896289 -0.0222058 -0.442914)} Vertex 8066 2.4215 17.3248 3.11051 {normal=(0.664852 -0.255544 0.701904)} Vertex 8067 2.42548 15.9717 -0.167505 {normal=(0.835973 -0.449367 -0.314989)} Vertex 8068 2.42568 11.5285 1.66807 Vertex 8069 2.42568 11.8225 2.11012 Vertex 8070 2.4257 14.0406 -3.75157 Vertex 8071 2.42576 13.2844 -3.40238 Vertex 8072 2.42592 13.0009 1.20876 Vertex 8073 2.42593 11.8018 0.889532 Vertex 8074 2.42616 14.0353 0.16341 Vertex 8075 2.42618 12.1175 -0.013846 Vertex 8076 2.42633 14.7589 -1.74606 Vertex 8077 2.42637 12.6895 -1.66557 Vertex 8078 2.42644 15.0521 -0.914126 {normal=(0.997841 0.0189939 0.0628717)} Vertex 8079 2.42683 19.4423 2.53882 {normal=(0.640276 -0.212539 0.738156)} Vertex 8080 2.42691 17.7134 3.25298 {normal=(0.69376 -0.28733 0.660408)} Vertex 8081 2.42751 20.3482 2.69387 {normal=(0.898248 -0.0659742 0.434509)} Vertex 8082 2.43048 16.7552 2.01844 {normal=(0.973402 -0.0138631 0.228684)} Vertex 8083 2.43089 16.962 2.11436 {normal=(0.987468 -0.131019 0.0879837)} Vertex 8084 2.4309 -11.3423 3.0219 Vertex 8085 2.43145 12.2956 -0.898571 {normal=(0.937332 0.0832409 0.338348)} Vertex 8086 2.432 19.5237 1.91359 {normal=(0.984614 0.154536 -0.0815772)} Vertex 8087 2.432 19.0956 1.9136 {normal=(0.984615 -0.154521 -0.0815825)} Vertex 8088 2.43253 16.5678 2.62457 {normal=(0.980951 -0.166188 0.100585)} Vertex 8089 2.43265 16.7969 2.88128 {normal=(0.896828 -0.213515 0.387441)} Vertex 8090 2.43282 21.6292 -2.48196 {normal=(0.719347 0.423363 -0.55073)} Vertex 8091 2.43379 19.5157 2.13081 {normal=(0.986046 0.148817 0.0746168)} Vertex 8092 2.43379 19.1035 2.13082 {normal=(0.986041 -0.148835 0.0746362)} Vertex 8093 2.4341 15.6976 1.13755 {normal=(0.880701 -0.472354 -0.0353134)} Vertex 8094 2.43458 21.7149 1.94278 {normal=(0.843876 0.288947 0.452088)} Vertex 8095 2.4351 16.5502 2.44011 {normal=(0.995309 -0.08672 -0.042894)} Vertex 8096 2.43583 14.439 -1.07529 {normal=(0.998204 0.00466879 0.0597216)} Vertex 8097 2.43727 16.8988 2.33728 {normal=(0.988345 -0.0862791 -0.12542)} Vertex 8098 2.43738 16.4828 -1.1148 {normal=(0.966202 -0.12357 -0.22624)} Vertex 8099 2.43802 19.9041 2.67653 {normal=(0.851477 -0.0487395 0.522122)} Vertex 8100 2.43822 20.59 2.76255 {normal=(0.845371 -0.387047 0.368162)} Vertex 8101 2.43854 12.0315 -0.848005 Vertex 8102 2.43905 19.4018 2.52046 {normal=(0.706123 -0.001527 0.708088)} Vertex 8103 2.44098 12.0519 -0.836433 {normal=(0.949658 -0.0862711 0.301176)} Vertex 8104 2.44127 20.8154 2.74016 {normal=(0.8315 0.342714 0.437213)} Vertex 8105 2.44203 13.2935 -1.00796 {normal=(0.941159 0.0431402 0.335198)} Vertex 8106 2.44277 17.0234 2.27174 {normal=(0.987784 -0.141519 -0.0652348)} Vertex 8107 2.44363 16.0969 2.03181 {normal=(0.942251 -0.0341902 0.333159)} Vertex 8108 2.44411 16.7588 2.43201 {normal=(0.984318 -0.0537619 -0.168012)} Vertex 8109 2.44691 16.394 2.00706 {normal=(0.950643 0.021901 0.309513)} Vertex 8110 2.44701 20.5256 2.70008 {normal=(0.895527 -0.163614 0.413838)} Vertex 8111 2.44836 19.3096 1.90957 {normal=(0.996426 -1.07766e-05 -0.0844764)} Vertex 8112 2.44896 13.0305 -2.69208 Vertex 8113 2.44924 16.87 1.9694 {normal=(0.962089 -0.0640171 0.265115)} Vertex 8114 2.4494 13.9226 -1.22871 {normal=(0.995485 0.0499654 0.0807068)} Vertex 8115 2.44954 19.3096 2.12694 {normal=(0.997417 -8.5291e-06 0.0718274)} Vertex 8116 2.45053 19.3447 2.5227 {normal=(0.715866 0.224235 0.661253)} Vertex 8117 2.45075 21.4503 2.0594 {normal=(0.874623 0.229086 0.427264)} Vertex 8118 2.45082 22.8572 -0.487035 {normal=(0.689944 0.713776 -0.120422)} Vertex 8119 2.45126 -25.6615 -4.60973 Vertex 8120 2.45147 13.8089 -1.88238 {normal=(0.972342 0.177899 -0.151338)} Vertex 8121 2.45184 15.7154 0.730696 {normal=(0.820232 -0.569928 0.0490162)} Vertex 8122 2.45213 13.0508 -2.68051 {normal=(0.88016 0.23146 -0.414421)} Vertex 8123 2.45256 17.1237 -1.27432 {normal=(0.888209 -0.0566482 -0.455934)} Vertex 8124 2.45295 19.124 2.72613 {normal=(0.737654 0.543042 0.401213)} Vertex 8125 2.45335 15.7903 0.085578 {normal=(0.702611 -0.619316 -0.350408)} Vertex 8126 2.45363 17.0113 2.93344 {normal=(0.895651 -0.194157 0.400141)} Vertex 8127 2.45494 17.0705 2.08291 {normal=(0.98271 -0.14438 0.115913)} Vertex 8128 2.45512 15.7125 0.359228 {normal=(0.80442 -0.587501 -0.0880463)} Vertex 8129 2.45537 15.7644 -2.26022 Vertex 8130 2.45624 16.3144 -0.622332 {normal=(0.9629 -0.226941 -0.146021)} Vertex 8131 2.45634 -32.2006 -2.28971 {normal=(-0.803197 -0.132349 0.580826)} Vertex 8132 2.45647 21.7966 -1.88546 {normal=(0.712306 0.375763 -0.592809)} Vertex 8133 2.45824 19.2511 2.55918 {normal=(0.732269 0.430824 0.52742)} Vertex 8134 2.45965 16.5286 1.95973 {normal=(0.948315 0.0260367 0.316262)} Vertex 8135 2.46059 17.1328 2.23541 {normal=(0.987045 -0.15833 -0.0259771)} Vertex 8136 2.46155 16.9707 2.45441 {normal=(0.974648 -0.0999387 -0.200186)} Vertex 8137 2.46249 -27.5559 -4.65414 Vertex 8138 2.4625 15.7087 1.44572 {normal=(0.922732 -0.378317 -0.0737689)} Vertex 8139 2.46262 15.6766 1.7137 {normal=(0.961209 -0.262359 0.0851177)} Vertex 8140 2.46453 21.2092 2.1569 {normal=(0.901335 0.196724 0.38587)} Vertex 8141 2.46625 17.4901 3.11752 {normal=(0.763125 -0.253947 0.594265)} Vertex 8142 2.46658 20.6412 2.77232 {normal=(0.881283 -0.206549 0.425061)} Vertex 8143 2.4671 16.809 2.69587 {normal=(0.979898 -0.167437 0.108461)} Vertex 8144 2.46745 17.8762 -1.25594 Vertex 8145 2.4676 20.7164 2.76485 {normal=(0.869315 0.204901 0.449785)} Vertex 8146 2.46869 17.15 2.083 {normal=(0.987061 -0.132121 0.0908563)} Vertex 8147 2.46886 19.6056 2.57903 {normal=(0.716674 -0.235416 0.656474)} Vertex 8148 2.47123 17.2127 2.23305 {normal=(0.99072 -0.130381 -0.0384067)} Vertex 8149 2.47171 17.0855 2.43074 {normal=(0.977292 -0.124221 -0.171666)} Vertex 8150 2.47308 16.9698 1.93242 {normal=(0.960571 -0.0913544 0.2626)} Vertex 8151 2.47423 16.8292 2.56088 {normal=(0.989355 -0.121393 -0.0802511)} Vertex 8152 2.47431 12.0641 -0.991499 Vertex 8153 2.47477 17.1866 2.96751 {normal=(0.903017 -0.188848 0.385871)} Vertex 8154 2.47514 17.2571 2.20544 {normal=(0.984347 -0.176243 -2.57568e-05)} Vertex 8155 2.4759 20.9915 2.23531 {normal=(0.918701 0.250961 0.304971)} Vertex 8156 2.47698 12.0844 -0.979927 {normal=(0.954625 -0.0976694 0.28134)} Vertex 8157 2.477 19.6306 -2.75249 {normal=(0.736847 -0.128481 -0.663739)} Vertex 8158 2.47721 15.9856 1.91575 {normal=(0.951788 -0.0970005 0.291017)} Vertex 8159 2.47795 17.191 2.02083 {normal=(0.983554 -0.128407 0.127013)} Vertex 8160 2.47937 16.6466 1.89546 {normal=(0.94578 0.0210203 0.324126)} Vertex 8161 2.47963 18.6968 3.14426 {normal=(0.753689 0.287401 0.591061)} Vertex 8162 2.4799 16.263 1.91669 {normal=(0.949243 0.0116938 0.314327)} Vertex 8163 2.48354 15.8455 1.80972 {normal=(0.960189 -0.184881 0.209419)} Vertex 8164 2.48409 -25.9314 -4.5961 Vertex 8165 2.48451 17.2021 2.40527 {normal=(0.981528 -0.134016 -0.136541)} Vertex 8166 2.4849 21.699 -2.29608 {normal=(0.670662 0.738972 -0.0642826)} Vertex 8167 2.48531 16.7494 -1.06916 {normal=(0.949414 -0.160217 -0.270081)} Vertex 8168 2.48767 17.2928 2.13712 {normal=(0.972322 -0.228784 0.0474063)} Vertex 8169 2.4926 15.8065 0.992934 {normal=(0.888485 -0.457087 0.0408139)} Vertex 8170 2.49309 18.3928 3.23327 {normal=(0.733952 0.161974 0.659605)} Vertex 8171 2.49389 17.0646 1.88492 {normal=(0.967835 -0.065521 0.242904)} Vertex 8172 2.49508 17.2929 2.37876 {normal=(0.981719 -0.153261 -0.112868)} Vertex 8173 2.49601 17.2791 1.95571 {normal=(0.977079 -0.165207 0.134254)} Vertex 8174 2.49608 17.323 2.98348 {normal=(0.918548 -0.193787 0.344553)} Vertex 8175 2.4976 17.0121 2.74047 {normal=(0.980757 -0.149295 0.125805)} Vertex 8176 2.49782 16.7473 1.83687 {normal=(0.944884 -0.00156175 0.327401)} Vertex 8177 2.49941 13.5027 -1.37436 {normal=(0.989584 0.109724 0.0931878)} Vertex 8178 2.50242 15.7795 0.641156 {normal=(0.834655 -0.54889 0.0455101)} Vertex 8179 2.50285 20.8542 -2.62892 {normal=(0.748985 0.139 -0.647842)} Vertex 8180 2.503 22.5517 -1.1635 {normal=(0.755194 0.556696 -0.34608)} Vertex 8181 2.50342 17.3578 2.35121 {normal=(0.971977 -0.226875 -0.0615555)} Vertex 8182 2.5038 20.8824 2.28425 {normal=(0.691781 0.714191 -0.106635)} Vertex 8183 2.50617 18.1271 3.26325 {normal=(0.756988 0.0133184 0.653293)} Vertex 8184 2.50656 15.8519 1.29102 {normal=(0.935685 -0.351919 -0.0254448)} Vertex 8185 2.50687 13.398 -2.03078 {normal=(0.966258 0.223569 -0.127914)} Vertex 8186 2.50733 12.3681 -1.08271 {normal=(0.903856 0.0391135 0.426045)} Vertex 8187 2.50739 20.0721 2.52272 {normal=(0.898359 0.0273441 0.438411)} Vertex 8188 2.50798 16.4017 1.82452 {normal=(0.95145 0.0246513 0.306816)} Vertex 8189 2.50948 17.0267 2.60169 {normal=(0.987476 -0.126872 -0.0937794)} Vertex 8190 2.51158 17.9003 3.22359 {normal=(0.781224 -0.180555 0.597569)} Vertex 8191 2.51169 17.1543 1.82689 {normal=(0.962848 -0.0622955 0.262762)} Vertex 8192 2.51207 16.2579 -0.317702 {normal=(0.847029 -0.366425 -0.385064)} Vertex 8193 2.51226 17.3703 2.05971 {normal=(0.959054 -0.278742 0.0501762)} Vertex 8194 2.515 16.8307 1.78394 {normal=(0.946326 -0.0257665 0.322186)} Vertex 8195 2.51541 15.8423 1.56129 {normal=(0.961385 -0.273755 0.0282392)} Vertex 8196 2.51773 17.1483 2.59134 {normal=(0.989436 -0.10079 -0.104203)} Vertex 8197 2.5186 17.3692 -1.13206 {normal=(0.918055 -0.0076161 -0.39638)} Vertex 8198 2.51875 17.182 2.77026 {normal=(0.986081 -0.120005 0.115077)} Vertex 8199 2.52104 17.3544 1.88329 {normal=(0.962517 -0.210963 0.170455)} Vertex 8200 2.52245 17.4276 2.29467 {normal=(0.951182 -0.308596 0.00457195)} Vertex 8201 2.52384 17.8008 -1.10617 {normal=(0.909513 -0.0875271 -0.406356)} Vertex 8202 2.52454 12.8825 -1.15636 {normal=(0.941051 0.0800286 0.328663)} Vertex 8203 2.52577 -30.3561 -5.11725 {normal=(-0.772716 0.11571 -0.624117)} Vertex 8204 2.5267 17.2785 2.5925 {normal=(0.989764 -0.114877 -0.0846739)} Vertex 8205 2.52765 16.6241 -0.665994 {normal=(0.950746 -0.230063 -0.207732)} Vertex 8206 2.52786 16.5131 1.75532 {normal=(0.953679 0.0172794 0.300331)} Vertex 8207 2.52885 16.1221 1.77984 {normal=(0.961367 -0.053263 0.270068)} Vertex 8208 2.52887 17.6853 3.10756 {normal=(0.83354 -0.255937 0.489599)} Vertex 8209 2.53056 17.3188 2.78524 {normal=(0.986575 -0.136669 0.0893985)} Vertex 8210 2.53143 17.4765 2.97405 {normal=(0.936131 -0.215886 0.277583)} Vertex 8211 2.53177 16.6195 -1.59291 Vertex 8212 2.53203 19.4851 2.46193 {normal=(0.766579 -0.220441 0.603128)} Vertex 8213 2.53533 -43.2861 -4.6068 Vertex 8214 2.53549 16.9135 1.7294 {normal=(0.945921 -0.0344643 0.322561)} Vertex 8215 2.53662 17.235 1.76255 {normal=(0.949567 -0.0890892 0.300642)} Vertex 8216 2.53919 17.4407 1.9765 {normal=(0.944926 -0.320131 0.0680462)} Vertex 8217 2.53978 17.3966 2.57937 {normal=(0.983797 -0.16471 -0.0708137)} Vertex 8218 2.54068 15.9819 1.66138 {normal=(0.973247 -0.16942 0.155199)} Vertex 8219 2.54139 -33.5573 -4.80197 {normal=(-0.739668 -0.55642 -0.378534)} Vertex 8220 2.54333 15.9162 -2.49587 {normal=(0.876401 -0.465353 -0.123965)} Vertex 8221 2.5434 19.4069 2.40731 {normal=(0.818503 -0.0533592 0.572019)} Vertex 8222 2.54658 15.8937 0.884676 {normal=(0.87556 -0.470377 0.110185)} Vertex 8223 2.54751 16.6052 1.68884 {normal=(0.95005 0.00183902 0.312093)} Vertex 8224 2.54823 20.8817 2.30371 {normal=(0.499954 0.829021 -0.250542)} Vertex 8225 2.54825 20.246 2.43654 {normal=(0.918917 0.00899909 0.394348)} Vertex 8226 2.54894 12.1366 -1.17564 Vertex 8227 2.55027 15.9766 1.15445 {normal=(0.937205 -0.344396 0.0551207)} Vertex 8228 2.55107 16.0237 -0.060493 {normal=(0.752068 -0.509698 -0.417854)} Vertex 8229 2.5519 12.1569 -1.16407 {normal=(0.924884 -0.137491 0.354522)} Vertex 8230 2.5519 17.4578 2.7778 {normal=(0.980504 -0.187927 0.0574125)} Vertex 8231 2.55194 17.0122 -0.997265 {normal=(0.947568 -0.135762 -0.289282)} Vertex 8232 2.55218 17.5022 2.20915 {normal=(0.936255 -0.349907 0.0314856)} Vertex 8233 2.55304 17.4167 1.80357 {normal=(0.941374 -0.24671 0.230107)} Vertex 8234 2.55588 15.9885 1.42547 {normal=(0.968468 -0.24899 0.00863908)} Vertex 8235 2.55698 17.5027 2.55192 {normal=(0.968892 -0.244404 -0.0389207)} Vertex 8236 2.5582 15.8869 0.220182 {normal=(0.836474 -0.526047 -0.153579)} Vertex 8237 2.55928 16.9957 1.67326 {normal=(0.940029 -0.0380811 0.338961)} Vertex 8238 2.56024 19.7143 2.46331 {normal=(0.869747 -0.0276869 0.49272)} Vertex 8239 2.5606 20.4257 2.41799 {normal=(0.918936 -0.0869448 0.384705)} Vertex 8240 2.56176 16.2451 1.67393 {normal=(0.971755 -0.0153248 0.235495)} Vertex 8241 2.56478 13.0918 -1.52276 {normal=(0.982665 0.157478 0.0978244)} Vertex 8242 2.5661 19.2863 2.4123 {normal=(0.787456 0.267685 0.55521)} Vertex 8243 2.56694 16.678 1.62506 {normal=(0.942709 -0.00985339 0.33347)} Vertex 8244 2.56846 17.5042 1.88749 {normal=(0.926943 -0.355013 0.121422)} Vertex 8245 2.5687 17.3068 1.69191 {normal=(0.931183 -0.126204 0.342009)} Vertex 8246 2.57146 17.4991 -1.35206 Vertex 8247 2.57204 15.8873 0.529894 {normal=(0.859246 -0.51142 0.0120582)} Vertex 8248 2.57294 18.2129 -1.35952 {normal=(0.902773 0.271781 0.333371)} Vertex 8249 2.57595 16.3548 1.59802 {normal=(0.971585 -0.0185421 0.235965)} Vertex 8250 2.57693 -41.8906 -4.63483 Vertex 8251 2.57773 16.1074 1.54091 {normal=(0.985928 -0.12852 0.106905)} Vertex 8252 2.57784 20.8517 2.32476 {normal=(0.851081 0.52066 0.0676334)} Vertex 8253 2.58082 17.6472 2.93921 {normal=(0.937982 -0.26706 0.221062)} Vertex 8254 2.58214 17.569 2.11011 {normal=(0.922783 -0.382953 0.0426497)} Vertex 8255 2.5823 17.5956 2.49348 {normal=(0.941922 -0.335768 0.00651182)} Vertex 8256 2.5827 17.6398 -0.949556 {normal=(0.919096 -0.0461911 -0.391318)} Vertex 8257 2.58278 17.5992 2.74792 {normal=(0.963144 -0.266049 0.0396394)} Vertex 8258 2.58296 18.8343 2.89304 {normal=(0.793001 0.418797 0.442445)} Vertex 8259 2.58408 20.5375 2.40973 {normal=(0.800906 -0.39437 0.45058)} Vertex 8260 2.58473 16.1152 1.30624 {normal=(0.966219 -0.249984 0.0626892)} Vertex 8261 2.58594 17.0827 1.61429 {normal=(0.932239 -0.0468897 0.358792)} Vertex 8262 2.58971 16.757 1.56464 {normal=(0.93567 -0.0226982 0.352145)} Vertex 8263 2.58982 18.0825 -1.19612 {normal=(0.986434 0.161393 0.0300164)} Vertex 8264 2.59181 18.2567 -1.21556 {normal=(0.95565 -0.196332 -0.219513)} Vertex 8265 2.59263 20.7922 2.34741 {normal=(0.92598 0.306051 0.22112)} Vertex 8266 2.59426 15.9593 0.812778 {normal=(0.876803 -0.465239 0.121527)} Vertex 8267 2.59467 16.2221 1.44832 {normal=(0.983709 -0.12602 0.1282)} Vertex 8268 2.59579 12.9959 -2.18192 {normal=(0.961414 0.250775 -0.113118)} Vertex 8269 2.59637 16.071 1.05714 {normal=(0.905336 -0.393693 0.159286)} Vertex 8270 2.59736 16.5884 -0.404305 {normal=(0.861902 -0.270985 -0.428594)} Vertex 8271 2.59833 16.4437 1.5253 {normal=(0.955136 -0.0647461 0.289005)} Vertex 8272 2.60305 22.7165 0.025255 {normal=(0.780332 0.621072 0.0731492)} Vertex 8273 2.60382 17.2779 -0.898622 {normal=(0.952058 -0.061283 -0.299716)} Vertex 8274 2.60477 17.8542 3.05248 {normal=(0.87074 -0.252057 0.422231)} Vertex 8275 2.60592 18.1221 -1.06729 {normal=(0.936265 -0.208076 -0.28304)} Vertex 8276 2.60816 18.4278 -1.34112 {normal=(0.958877 -0.253507 -0.127631)} Vertex 8277 2.60902 20.7228 2.37224 {normal=(0.928267 0.296157 0.224969)} Vertex 8278 2.60921 18.3257 -2.48429 {normal=(0.853745 0.135422 -0.502773)} Vertex 8279 2.61035 18.0591 3.12002 {normal=(0.838692 -0.0738655 0.539573)} Vertex 8280 2.61234 17.628 1.99755 {normal=(0.90702 -0.415115 0.0706669)} Vertex 8281 2.61248 16.2325 -1.82985 Vertex 8282 2.61259 18.3572 -1.47995 {normal=(0.865903 0.122337 0.485022)} Vertex 8283 2.61482 17.5058 1.68027 {normal=(0.919384 -0.272861 0.283337)} Vertex 8284 2.61532 16.9639 -0.656394 {normal=(0.949362 -0.193084 -0.247852)} Vertex 8285 2.61545 17.1745 1.55251 {normal=(0.919284 -0.077711 0.385847)} Vertex 8286 2.61576 17.675 2.40404 {normal=(0.917469 -0.396249 0.0351828)} Vertex 8287 2.61581 16.8424 1.50757 {normal=(0.931293 -0.0359073 0.362497)} Vertex 8288 2.61677 18.5516 3.00978 {normal=(0.81948 0.230246 0.524822)} Vertex 8289 2.6172 18.2882 3.0933 {normal=(0.825109 0.109061 0.554347)} Vertex 8290 2.61814 16.1898 -2.69491 {normal=(0.893888 -0.347871 -0.282755)} Vertex 8291 2.61848 12.4805 -1.3075 {normal=(0.942999 0.0850187 0.321752)} Vertex 8292 2.61868 20.5817 2.41176 {normal=(0.855737 -0.285734 0.431358)} Vertex 8293 2.62192 16.2104 1.21842 {normal=(0.926725 -0.329275 0.180994)} Vertex 8294 2.62201 17.7174 2.68639 {normal=(0.928674 -0.368479 0.0422756)} Vertex 8295 2.62236 16.3121 1.3685 {normal=(0.952713 -0.202542 0.226526)} Vertex 8296 2.62587 19.1405 2.43426 {normal=(0.780354 0.422357 0.461152)} Vertex 8297 2.62699 20.6434 2.39926 {normal=(0.94503 0.143677 0.293727)} Vertex 8298 2.62728 17.5909 1.75567 {normal=(0.908997 -0.372188 0.187619)} Vertex 8299 2.62886 17.4089 1.58317 {normal=(0.911899 -0.161472 0.377315)} Vertex 8300 2.6289 16.5118 1.45579 {normal=(0.941843 -0.0779282 0.326892)} Vertex 8301 2.62906 20.6776 1.84396 {normal=(0.958074 0.157067 0.239635)} Vertex 8302 2.63007 19.043 -2.34768 {normal=(0.827497 -0.0956509 -0.553263)} Vertex 8303 2.63052 -11.4725 3.13479 {normal=(-0.278586 -0.199132 0.93954)} Vertex 8304 2.63084 17.9802 -0.933352 {normal=(0.86293 -0.199229 -0.464392)} Vertex 8305 2.63158 19.5635 2.31502 {normal=(0.88954 -0.0828553 0.449281)} Vertex 8306 2.63607 12.7644 -2.27484 Vertex 8307 2.6367 -22.2785 -1.38675 Vertex 8308 2.63693 20.0946 -2.59064 {normal=(0.789906 0.0211228 -0.612864)} Vertex 8309 2.63962 19.8563 2.27449 {normal=(0.915345 0.0530264 0.399165)} Vertex 8310 2.63966 12.7847 -2.26327 {normal=(0.975197 0.115303 -0.188934)} Vertex 8311 2.64076 16.3134 -0.200914 {normal=(0.78532 -0.386387 -0.483713)} Vertex 8312 2.64119 20.921 1.75729 {normal=(0.941262 0.08795 0.326023)} Vertex 8313 2.64158 17.7933 2.87342 {normal=(0.919013 -0.347022 0.187057)} Vertex 8314 2.64308 16.135 0.999102 {normal=(0.897414 -0.399944 0.18626)} Vertex 8315 2.64315 16.9325 1.4497 {normal=(0.928522 -0.0453971 0.368491)} Vertex 8316 2.64531 20.5566 1.89549 {normal=(0.741416 0.609974 -0.279704)} Vertex 8317 2.64604 17.5464 -0.773231 {normal=(0.931902 -0.0850858 -0.352588)} Vertex 8318 2.64698 22.5005 0.431061 {normal=(0.824109 0.5275 0.206368)} Vertex 8319 2.64988 17.7392 2.28414 {normal=(0.89902 -0.435204 0.0485887)} Vertex 8320 2.65053 -15.6171 -6.12914 Vertex 8321 2.65199 21.9563 -1.53875 {normal=(0.763977 0.402856 -0.50403)} Vertex 8322 2.65205 19.4514 2.23165 {normal=(0.896315 -0.0458187 0.441044)} Vertex 8323 2.65413 16.113 0.08429 {normal=(0.866369 -0.44311 -0.230345)} Vertex 8324 2.65432 18.9624 2.5848 {normal=(0.790944 0.466863 0.395532)} Vertex 8325 2.65477 -43.2775 -3.30585 Vertex 8326 2.65651 16.0607 0.70878 {normal=(0.897694 -0.430952 0.0917947)} Vertex 8327 2.65655 16.5953 1.39063 {normal=(0.943183 -0.0517655 0.328217)} Vertex 8328 2.6567 12.6898 -1.6739 {normal=(0.979649 0.175737 0.09698)} Vertex 8329 2.65729 18.6355 -1.44394 {normal=(0.961099 -0.271066 -0.0530293)} Vertex 8330 2.65897 16.0387 0.396913 {normal=(0.885506 -0.463093 -0.0377301)} Vertex 8331 2.65989 12.249 -1.40043 Vertex 8332 2.66081 16.3772 1.30143 {normal=(0.937406 -0.213756 0.274916)} Vertex 8333 2.66312 12.2693 -1.38885 {normal=(0.967209 -0.0877282 0.238352)} Vertex 8334 2.66419 17.7027 1.84503 {normal=(0.897894 -0.424106 0.117983)} Vertex 8335 2.66603 17.8308 -0.813758 {normal=(0.850943 -0.179795 -0.493528)} Vertex 8336 2.66605 16.2743 1.16199 {normal=(0.917231 -0.329668 0.223619)} Vertex 8337 2.66611 21.1841 1.63782 {normal=(0.925362 0.0964541 0.36661)} Vertex 8338 2.66683 18.5749 -1.58911 {normal=(0.828699 -0.033677 0.558681)} Vertex 8339 2.66725 16.863 -1.50606 {normal=(0.506737 -0.286864 0.812974)} Vertex 8340 2.6694 17.3002 1.46435 {normal=(0.902739 -0.116654 0.414071)} Vertex 8341 2.66961 17.8125 2.59321 {normal=(0.895771 -0.441984 0.0473655)} Vertex 8342 2.67173 17.0274 1.39103 {normal=(0.919528 -0.0722857 0.38632)} Vertex 8343 2.67372 21.1773 -2.35437 {normal=(0.779545 0.157599 -0.606194)} Vertex 8344 2.67489 17.2627 -0.626796 {normal=(0.948077 -0.117983 -0.295346)} Vertex 8345 2.67641 20.2037 2.07797 {normal=(0.950064 0.0169516 0.311594)} Vertex 8346 2.67681 17.2972 -2.78714 {normal=(0.862165 0.120828 -0.492008)} Vertex 8347 2.67834 20.0194 2.14604 {normal=(0.941418 0.0851845 0.326305)} Vertex 8348 2.67835 -27.5289 -4.51545 Vertex 8349 2.67979 16.5852 -2.85734 {normal=(0.895339 -0.129339 -0.426191)} Vertex 8350 2.67989 22.3098 0.729512 {normal=(0.844825 0.471719 0.252492)} Vertex 8351 2.68127 16.6943 1.32983 {normal=(0.940877 -0.0529827 0.334579)} Vertex 8352 2.68236 17.6562 -1.28886 {normal=(0.537093 -0.226403 0.812572)} Vertex 8353 2.68341 16.9631 -0.427312 {normal=(0.883093 -0.193513 -0.427433)} Vertex 8354 2.68467 17.788 2.13377 {normal=(0.886814 -0.45865 0.0565717)} Vertex 8355 2.68995 20.558 1.91187 {normal=(0.456417 0.735244 -0.501098)} Vertex 8356 2.69243 18.1647 -1.42782 {normal=(0.813267 0.257363 0.521882)} Vertex 8357 2.69294 19.3791 2.12925 {normal=(0.889874 0.121073 0.439848)} Vertex 8358 2.69395 17.9969 2.95227 {normal=(0.899996 -0.216148 0.378532)} Vertex 8359 2.69402 -41.8967 -3.35468 Vertex 8360 2.69464 20.3124 2.04236 {normal=(0.802048 -0.362813 0.474433)} Vertex 8361 2.6959 -9.30989 3.83926 {normal=(0.273709 -0.187444 0.943371)} Vertex 8362 2.69596 12.4583 -1.76683 Vertex 8363 2.69698 16.4656 1.22508 {normal=(0.954326 -0.140204 0.263827)} Vertex 8364 2.69955 12.4786 -1.75525 {normal=(0.999781 0.0192997 0.00804362)} Vertex 8365 2.69968 -44.4185 -4.63377 Vertex 8366 2.70163 -17.8091 -7.05958 Vertex 8367 2.70176 16.2328 0.895883 {normal=(0.925111 -0.346671 0.154881)} Vertex 8368 2.70181 22.1443 0.920609 {normal=(0.868893 0.397813 0.294568)} Vertex 8369 2.70381 21.4671 1.48556 {normal=(0.911539 0.156089 0.380437)} Vertex 8370 2.7064 17.6217 1.51339 {normal=(0.928128 -0.239564 0.284933)} Vertex 8371 2.70827 16.7844 1.26877 {normal=(0.935653 -0.0680942 0.346289)} Vertex 8372 2.71223 18.3557 -1.02766 {normal=(0.787255 -0.376507 -0.488336)} Vertex 8373 2.71255 18.1963 2.948 {normal=(0.884516 0.0199094 0.466084)} Vertex 8374 2.71268 17.5206 -0.577197 {normal=(0.917979 -0.148144 -0.367925)} Vertex 8375 2.7127 22.4781 -0.66379 {normal=(0.829672 0.52831 -0.18037)} Vertex 8376 2.71316 16.6421 -0.284089 {normal=(0.822647 -0.240198 -0.515322)} Vertex 8377 2.71371 17.9147 2.77667 {normal=(0.905536 -0.392132 0.161978)} Vertex 8378 2.7142 17.7331 -0.687887 {normal=(0.825847 -0.263282 -0.498658)} Vertex 8379 2.71524 21.9483 1.11448 {normal=(0.885507 0.335515 0.321413)} Vertex 8380 2.71565 17.7008 1.58106 {normal=(0.929244 -0.312528 0.197059)} Vertex 8381 2.71586 16.3678 1.06798 {normal=(0.946721 -0.248474 0.204891)} Vertex 8382 2.71592 17.8876 2.45887 {normal=(0.874836 -0.481455 0.0535125)} Vertex 8383 2.71676 20.5359 1.93423 {normal=(0.863196 0.490636 -0.119033)} Vertex 8384 2.71711 17.5414 1.43631 {normal=(0.916118 -0.145358 0.37363)} Vertex 8385 2.72009 18.2127 -0.909629 {normal=(0.765927 -0.359509 -0.533019)} Vertex 8386 2.72019 21.7218 1.31112 {normal=(0.899688 0.256461 0.353255)} Vertex 8387 2.72041 17.1571 1.31238 {normal=(0.907614 -0.111013 0.404863)} Vertex 8388 2.72116 16.3378 -2.06287 {normal=(0.928647 -0.341773 0.14424)} Vertex 8389 2.72199 19.252 2.16602 {normal=(0.842835 0.333451 0.42242)} Vertex 8390 2.72247 18.6858 2.74457 {normal=(0.854438 0.313688 0.414168)} Vertex 8391 2.72548 19.6774 2.09807 {normal=(0.934034 0.0205819 0.35659)} Vertex 8392 2.72554 17.8414 1.94836 {normal=(0.888043 -0.454563 0.0689373)} Vertex 8393 2.72574 20.4905 1.96259 {normal=(0.956725 0.265552 0.118994)} Vertex 8394 2.72709 18.5269 -1.1363 {normal=(0.8048 -0.37551 -0.459662)} Vertex 8395 2.7309 16.5771 1.13944 {normal=(0.955982 -0.11555 0.269717)} Vertex 8396 2.7311 18.8928 -1.49371 {normal=(0.955088 -0.29572 0.0189048)} Vertex 8397 2.73251 16.1979 0.572681 {normal=(0.91342 -0.402743 0.0588333)} Vertex 8398 2.73302 20.3457 2.03922 {normal=(0.770013 -0.404591 0.493341)} Vertex 8399 2.73381 21.3802 -1.73304 {normal=(0.852512 0.400152 -0.336305)} Vertex 8400 2.73485 -45.0392 -4.65225 Vertex 8401 2.73573 20.4414 1.99199 {normal=(0.956787 0.265563 0.118471)} Vertex 8402 2.737 18.4241 2.8482 {normal=(0.87568 0.162849 0.454603)} Vertex 8403 2.73749 18.3149 -1.5528 {normal=(0.773164 0.178827 0.608472)} Vertex 8404 2.73754 16.8656 1.20748 {normal=(0.928185 -0.0886341 0.36141)} Vertex 8405 2.73768 17.7934 1.65255 {normal=(0.928677 -0.351998 0.116862)} Vertex 8406 2.7379 18.0749 -0.808631 {normal=(0.741638 -0.297148 -0.601396)} Vertex 8407 2.73873 17.7384 -1.52057 {normal=(0.928564 -0.00897362 0.371065)} Vertex 8408 2.73914 20.3971 1.57085 {normal=(0.969266 0.139965 0.202322)} Vertex 8409 2.73938 19.4489 -2.37729 {normal=(0.803562 -0.171284 -0.570043)} Vertex 8410 2.7422 21.3616 -1.75252 {normal=(0.633129 0.771813 0.0587491)} Vertex 8411 2.74307 16.3906 -0.048453 {normal=(0.891199 -0.337225 -0.303388)} Vertex 8412 2.74323 16.2394 0.266842 {normal=(0.909999 -0.400254 -0.10816)} Vertex 8413 2.74452 21.4696 -1.69711 {normal=(0.828158 0.205449 -0.521484)} Vertex 8414 2.74672 20.3887 2.02243 {normal=(0.963876 0.0581478 0.259928)} Vertex 8415 2.74779 17.4599 1.34982 {normal=(0.909924 -0.106783 0.400795)} Vertex 8416 2.75031 16.6711 1.11341 {normal=(0.948265 -0.117176 0.295065)} Vertex 8417 2.75324 20.2775 1.63233 {normal=(0.738054 0.54762 -0.394194)} Vertex 8418 2.75522 20.6419 1.46001 {normal=(0.960059 0.0419098 0.276641)} Vertex 8419 2.7557 18.8507 -1.63235 {normal=(0.775 -0.220473 0.592256)} Vertex 8420 2.75593 17.3208 -0.427868 {normal=(0.883053 -0.143979 -0.446641)} Vertex 8421 2.76095 17.9427 2.28338 {normal=(0.868539 -0.492919 0.0516861)} Vertex 8422 2.76173 20.0234 1.81152 {normal=(0.966748 0.0713645 0.245573)} Vertex 8423 2.76201 18.7263 -1.23555 {normal=(0.827641 -0.341175 -0.445656)} Vertex 8424 2.7638 -33.5113 -2.17558 {normal=(-0.739044 -0.41981 0.526852)} Vertex 8425 2.76467 17.9424 -0.72466 {normal=(0.562235 -0.318231 -0.763296)} Vertex 8426 2.76499 19.5354 1.99348 {normal=(0.933003 0.00126045 0.359867)} Vertex 8427 2.76643 17.0099 -0.310019 {normal=(0.856782 -0.164244 -0.488823)} Vertex 8428 2.76852 -41.0338 -4.38157 Vertex 8429 2.76887 19.8307 1.93024 {normal=(0.95976 0.108017 0.259218)} Vertex 8430 2.77175 16.4909 0.936403 {normal=(0.949665 -0.219933 0.223083)} Vertex 8431 2.77248 16.3645 0.747485 {normal=(0.929871 -0.334594 0.152927)} Vertex 8432 2.77251 17.8993 1.72788 {normal=(0.919381 -0.390978 0.0432977)} Vertex 8433 2.77396 17.6869 -0.55574 {normal=(0.760942 -0.430743 -0.485208)} Vertex 8434 2.77863 20.1321 1.7505 {normal=(0.790259 -0.387431 0.474751)} Vertex 8435 2.77913 18.1172 2.79736 {normal=(0.932122 -0.169575 0.319988)} Vertex 8436 2.78025 18.0143 2.63432 {normal=(0.902763 -0.408805 0.13378)} Vertex 8437 2.78039 16.7454 1.0508 {normal=(0.936733 -0.140897 0.320435)} Vertex 8438 2.78154 -29.3563 -1.49686 Vertex 8439 2.7819 16.9796 1.12726 {normal=(0.917944 -0.116275 0.379287)} Vertex 8440 2.78392 17.5367 -0.432151 {normal=(0.859321 -0.185698 -0.476533)} Vertex 8441 2.78629 16.9452 -1.73777 {normal=(0.936167 -0.165506 0.310161)} Vertex 8442 2.7892 17.3216 1.21375 {normal=(0.919794 -0.107821 0.377298)} Vertex 8443 2.79063 18.5446 -1.67106 {normal=(0.68653 0.00736448 0.727064)} Vertex 8444 2.79286 17.8788 1.41661 {normal=(0.962843 -0.200023 0.181452)} Vertex 8445 2.79293 17.7899 1.33769 {normal=(0.951476 -0.165849 0.259206)} Vertex 8446 2.79435 21.3514 -1.81252 {normal=(0.393453 0.873331 0.287206)} Vertex 8447 2.79475 -29.3108 -1.68521 Vertex 8448 2.79752 20.2832 1.64445 {normal=(0.357689 0.631397 -0.688038)} Vertex 8449 2.80053 20.9108 1.30767 {normal=(0.9495 0.00430876 0.313737)} Vertex 8450 2.80068 17.9937 2.06872 {normal=(0.877719 -0.477505 0.0399874)} Vertex 8451 2.8008 16.5907 0.887409 {normal=(0.938445 -0.20568 0.277519)} Vertex 8452 2.80105 17.9575 1.4797 {normal=(0.968284 -0.235911 0.0822929)} Vertex 8453 2.80256 22.0221 -1.18027 {normal=(0.852208 0.412889 -0.321347)} Vertex 8454 2.80279 17.7194 1.27138 {normal=(0.934283 -0.0985945 0.342629)} Vertex 8455 2.80371 17.838 -0.642591 {normal=(0.407331 -0.534098 -0.740824)} Vertex 8456 2.8045 18.9527 -1.30293 {normal=(0.859918 -0.278134 -0.427998)} Vertex 8457 2.80462 16.5428 -2.25228 {normal=(0.964748 -0.263132 -0.00486516)} Vertex 8458 2.80545 16.7116 -0.133838 {normal=(0.909022 -0.205482 -0.362568)} Vertex 8459 2.80613 18.2836 -2.08769 {normal=(0.942152 0.0886688 -0.323244)} Vertex 8460 2.80614 20.1499 1.41599 {normal=(0.972505 0.173354 0.155506)} Vertex 8461 2.80652 17.6656 -0.467027 {normal=(0.778199 -0.491117 -0.39142)} Vertex 8462 2.80662 20.3718 1.26508 {normal=(0.970318 0.0675136 0.232216)} Vertex 8463 2.80953 20.3103 1.68519 {normal=(0.837131 0.50788 -0.203149)} Vertex 8464 2.8102 18.7955 2.43765 {normal=(0.86175 0.372434 0.3445)} Vertex 8465 2.81054 16.3745 0.443334 {normal=(0.923827 -0.382765 -0.00593386)} Vertex 8466 2.81064 19.0486 2.17587 {normal=(0.85442 0.358403 0.376184)} Vertex 8467 2.81309 18.1453 -0.765874 {normal=(0.255291 -0.485535 -0.836112)} Vertex 8468 2.81522 18.4111 -0.947201 {normal=(0.285066 -0.535297 -0.795106)} Vertex 8469 2.8154 19.4481 1.88047 {normal=(0.929778 0.0620527 0.362854)} Vertex 8470 2.81561 20.272 1.71641 {normal=(0.96058 0.254079 0.112827)} Vertex 8471 2.81621 18.2623 -0.843877 {normal=(0.250371 -0.540392 -0.8033)} Vertex 8472 2.81656 19.8848 1.61865 {normal=(0.976285 0.0873579 0.198083)} Vertex 8473 2.81752 18.0258 1.52695 {normal=(0.951951 -0.305148 -0.0259667)} Vertex 8474 2.81786 -29.8672 -1.54866 {normal=(-0.548578 -0.109425 0.828908)} Vertex 8475 2.81817 18.312 2.70753 {normal=(0.924799 0.0583651 0.375954)} Vertex 8476 2.81956 20.1569 1.7472 {normal=(0.658196 -0.530137 0.534539)} Vertex 8477 2.81982 19.6799 1.78915 {normal=(0.965565 0.119591 0.231045)} Vertex 8478 2.81989 17.3652 -0.333941 {normal=(0.900577 -0.15654 -0.405533)} Vertex 8479 2.82014 20.246 1.73753 {normal=(0.959645 0.260349 0.106301)} Vertex 8480 2.82091 16.4894 0.13968 {normal=(0.93199 -0.308409 -0.190469)} Vertex 8481 2.82243 17.6671 1.21768 {normal=(0.931149 -0.0700301 0.357852)} Vertex 8482 2.82483 17.9002 -1.69966 {normal=(0.923296 -0.01104 0.383931)} Vertex 8483 2.8265 16.8157 0.950768 {normal=(0.918255 -0.163875 0.360489)} Vertex 8484 2.82758 20.0451 1.49478 {normal=(0.907627 0.16182 -0.387333)} Vertex 8485 2.82763 20.2066 1.76968 {normal=(0.958324 0.000380571 0.285685)} Vertex 8486 2.82835 20.5607 -2.24634 {normal=(0.830464 0.0899866 -0.549756)} Vertex 8487 2.82946 19.1998 -1.49042 {normal=(0.942451 -0.31693 0.106501)} Vertex 8488 2.82958 18.5777 -1.04536 {normal=(0.29239 -0.493189 -0.819313)} Vertex 8489 2.83367 -3.67281 3.59712 Vertex 8490 2.8351 18.0404 1.81488 {normal=(0.90412 -0.427168 -0.00972474)} Vertex 8491 2.8354 18.0211 -0.699714 {normal=(0.0744061 -0.276933 -0.958004)} Vertex 8492 2.83555 -22.2492 -1.89586 Vertex 8493 2.83605 19.9967 1.53417 {normal=(0.953 -0.283661 0.106434)} Vertex 8494 2.83612 -38.6683 -4.47035 {normal=(-0.951183 -0.0189996 -0.308041)} Vertex 8495 2.83644 18.8904 -1.95729 {normal=(0.922246 -0.125518 -0.36566)} Vertex 8496 2.83813 18.5358 2.57866 {normal=(0.910238 0.201461 0.361773)} Vertex 8497 2.8412 18.0922 2.44638 {normal=(0.90489 -0.413832 0.0995844)} Vertex 8498 2.84135 17.1266 1.02812 {normal=(0.929428 -0.101281 0.354833)} Vertex 8499 2.84189 22.3555 -0.2532 {normal=(0.886149 0.462894 -0.0216668)} Vertex 8500 2.84241 17.0762 -0.171864 {normal=(0.918327 -0.129027 -0.374203)} Vertex 8501 2.84273 -37.7533 -4.46973 {normal=(-0.939161 -0.113403 -0.324216)} Vertex 8502 2.84371 17.6322 -0.376616 {normal=(0.776695 -0.287932 -0.560215)} Vertex 8503 2.84615 19.3647 1.8227 {normal=(0.926263 0.166541 0.338085)} Vertex 8504 2.85007 21.2915 -2.09364 {normal=(0.839624 0.29365 -0.456947)} Vertex 8505 2.85357 17.5368 1.09809 {normal=(0.945227 -0.0793016 0.316635)} Vertex 8506 2.85377 17.7617 -0.562423 {normal=(0.389385 -0.715705 -0.579781)} Vertex 8507 2.85378 17.7005 -0.41545 {normal=(0.731552 -0.600866 -0.322167)} Vertex 8508 2.85402 20.6302 1.06894 {normal=(0.958503 -0.0137587 0.284749)} Vertex 8509 2.8543 18.1951 1.32647 {normal=(0.976911 -0.177491 0.118921)} Vertex 8510 2.85456 19.2061 -1.33843 {normal=(0.898373 -0.244475 -0.364908)} Vertex 8511 2.85461 16.5181 0.613766 {normal=(0.927389 -0.346024 0.142184)} Vertex 8512 2.85816 18.7621 -1.13834 {normal=(0.304844 -0.406637 -0.86123)} Vertex 8513 2.85853 19.7352 1.49645 {normal=(0.976771 0.137493 0.164359)} Vertex 8514 2.85893 18.1249 1.26233 {normal=(0.962508 -0.139506 0.23263)} Vertex 8515 2.85914 17.379 -0.163082 {normal=(0.955979 -0.0772456 -0.283084)} Vertex 8516 2.85997 16.6652 0.782911 {normal=(0.921185 -0.2465 0.301091)} Vertex 8517 2.86028 18.2153 2.58777 {normal=(0.956265 -0.165167 0.241408)} Vertex 8518 2.8604 19.5499 1.69076 {normal=(0.966416 0.142431 0.213901)} Vertex 8519 2.86055 18.2209 1.34557 {normal=(0.962512 -0.268654 -0.0373729)} Vertex 8520 2.86286 16.8475 -2.39809 {normal=(0.9775 -0.103241 -0.183943)} Vertex 8521 2.86326 20.1835 1.10327 {normal=(0.953193 0.141364 0.267282)} Vertex 8522 2.86337 17.4277 -2.34323 {normal=(0.942395 0.103918 -0.317951)} Vertex 8523 2.86428 19.2436 1.84779 {normal=(0.90547 0.270252 0.327242)} Vertex 8524 2.86723 -40.2267 -3.27711 {normal=(-0.986871 0.00538587 0.161423)} Vertex 8525 2.86927 20.0209 1.23397 {normal=(0.961295 0.184175 0.204919)} Vertex 8526 2.86938 -38.6938 -3.30424 {normal=(-0.982211 0.0011058 0.187776)} Vertex 8527 2.87095 20.0575 1.50145 {normal=(0.582226 0.0568593 -0.811036)} Vertex 8528 2.8724 -40.1296 -4.10955 Vertex 8529 2.87352 17.113 -1.92053 {normal=(0.962868 -0.127245 0.238106)} Vertex 8530 2.87442 18.0105 1.15317 {normal=(0.9505 -0.136415 0.279178)} Vertex 8531 2.87478 -20.013 -7.81698 Vertex 8532 2.87506 21.2038 1.11383 {normal=(0.948937 0.0421199 0.312641)} Vertex 8533 2.87586 18.1776 1.57035 {normal=(0.927655 -0.358042 -0.106127)} Vertex 8534 2.87599 -37.7788 -3.30363 {normal=(-0.969367 -0.0857847 0.230151)} Vertex 8535 2.87683 16.7969 0.046449 {normal=(0.942721 -0.195063 -0.270607)} Vertex 8536 2.878 18.1417 -1.82615 {normal=(0.989593 0.0408142 0.137988)} Vertex 8537 2.87813 19.1844 -1.60966 {normal=(0.715268 -0.325285 0.618531)} Vertex 8538 2.87829 20.0154 1.5357 {normal=(0.74561 -0.656489 -0.114403)} Vertex 8539 2.87832 18.8263 -1.71885 {normal=(0.908075 -0.172176 0.38178)} Vertex 8540 2.87891 17.6108 -0.329164 {normal=(0.867323 -0.298311 -0.398448)} Vertex 8541 2.88017 19.8559 -2.23448 {normal=(0.851198 -0.0386996 -0.523415)} Vertex 8542 2.8819 17.7252 -0.4997 {normal=(0.640011 -0.686474 -0.345164)} Vertex 8543 2.88249 20.088 1.53948 {normal=(0.886862 0.338913 -0.314028)} Vertex 8544 2.88304 19.8678 1.28057 {normal=(0.972945 0.124485 0.194634)} Vertex 8545 2.88456 18.1521 -0.791601 {normal=(-0.436512 -0.437684 -0.78606)} Vertex 8546 2.88472 18.9678 -1.20977 {normal=(0.367714 -0.284354 -0.885398)} Vertex 8547 2.88589 17.9429 1.08838 {normal=(0.936118 -0.0905374 0.339831)} Vertex 8548 2.88702 20.0621 1.5606 {normal=(0.981303 -0.111431 0.156934)} Vertex 8549 2.8871 18.0062 -0.73466 {normal=(-0.466728 -0.301699 -0.83135)} Vertex 8550 2.88765 19.5745 1.4449 {normal=(0.978308 0.152148 0.140585)} Vertex 8551 2.88822 16.5905 0.32074 {normal=(0.941084 -0.312759 -0.128616)} Vertex 8552 2.88858 18.3317 1.25285 {normal=(0.934177 -0.318727 0.160395)} Vertex 8553 2.8889 -45.027 -3.33704 Vertex 8554 2.88961 18.1596 2.20613 {normal=(0.912299 -0.405235 0.0591189)} Vertex 8555 2.89022 -44.384 -3.33485 Vertex 8556 2.89028 21.3495 -1.91302 {normal=(0.70824 0.70563 -0.0219523)} Vertex 8557 2.89039 18.2933 1.38409 {normal=(0.935349 -0.333185 -0.11879)} Vertex 8558 2.89054 18.325 1.24413 {normal=(0.884774 -0.27766 0.374273)} Vertex 8559 2.89057 22.1841 0.068272 {normal=(0.909103 0.402736 0.106472)} Vertex 8560 2.89061 19.4407 1.63507 {normal=(0.965344 0.173631 0.194841)} Vertex 8561 2.89135 18.2708 -0.870027 {normal=(-0.40297 -0.497999 -0.767862)} Vertex 8562 2.89257 16.9581 0.846903 {normal=(0.930381 -0.107272 0.350547)} Vertex 8563 2.89288 17.5742 -0.201547 {normal=(0.97031 -0.241706 -0.00879154)} Vertex 8564 2.89333 17.9221 1.06795 {normal=(0.935298 -0.0716528 0.346531)} Vertex 8565 2.89575 21.5996 -1.39378 {normal=(0.88046 0.204195 -0.427895)} Vertex 8566 2.89621 17.3284 0.912612 {normal=(0.955675 -0.0632003 0.287559)} Vertex 8567 2.89721 18.4231 -0.9742 {normal=(-0.386879 -0.471521 -0.79246)} Vertex 8568 2.89799 -6.42017 3.83833 {normal=(0.419315 0.0143741 0.907727)} Vertex 8569 2.89821 18.8684 2.1233 {normal=(0.891212 0.322554 0.318905)} Vertex 8570 2.89853 17.7365 -0.391005 {normal=(0.707258 -0.64064 -0.298942)} Vertex 8571 2.9001 -41.1353 -2.91926 Vertex 8572 2.90159 18.3581 1.24882 {normal=(0.943527 -0.240249 0.228115)} Vertex 8573 2.90332 18.2578 1.17717 {normal=(0.86534 -0.27057 0.421876)} Vertex 8574 2.90459 19.7242 1.24308 {normal=(0.974472 0.101944 0.20003)} Vertex 8575 2.90548 18.4062 2.44049 {normal=(0.959693 0.0475518 0.276997)} Vertex 8576 2.90788 17.7836 -0.005511 {normal=(0.955897 -0.104151 -0.274617)} Vertex 8577 2.90819 21.9942 -0.810047 {normal=(0.910785 0.365708 -0.191648)} Vertex 8578 2.90896 19.4276 -1.4533 {normal=(0.942632 -0.305048 0.135613)} Vertex 8579 2.90928 19.195 -1.25964 {normal=(0.460578 -0.17764 -0.869662)} Vertex 8580 2.9093 20.4156 0.901536 {normal=(0.942332 0.0483167 0.331174)} Vertex 8581 2.90978 18.3474 1.23268 {normal=(0.748021 -0.217581 0.626996)} Vertex 8582 2.9099 19.4071 -1.32071 {normal=(0.908439 -0.266485 -0.322063)} Vertex 8583 2.9128 -45.2821 -4.66994 Vertex 8584 2.91353 17.8028 0.965402 {normal=(0.951582 -0.0906863 0.293713)} Vertex 8585 2.91364 17.1618 -0.012849 {normal=(0.933437 -0.0994752 -0.344675)} Vertex 8586 2.91452 17.9219 -0.696945 {normal=(-0.269096 -0.532214 -0.802705)} Vertex 8587 2.91551 18.5805 -1.0683 {normal=(-0.379128 -0.399242 -0.834786)} Vertex 8588 2.91747 21.4673 0.904073 {normal=(0.952971 0.14109 0.268216)} Vertex 8589 2.91941 22.0283 0.313151 {normal=(0.920324 0.350136 0.174379)} Vertex 8590 2.92058 18.6233 2.2847 {normal=(0.932686 0.205394 0.296497)} Vertex 8591 2.92227 18.3892 1.36952 {normal=(0.950736 -0.285591 -0.120579)} Vertex 8592 2.92386 19.4025 1.38373 {normal=(0.976864 0.179732 0.115899)} Vertex 8593 2.92454 18.2971 2.33005 {normal=(0.968873 -0.194084 0.153674)} Vertex 8594 2.92514 20.0768 0.974591 {normal=(0.927895 0.181413 0.32573)} Vertex 8595 2.92546 18.2165 1.91355 {normal=(0.921571 -0.38809 -0.00967075)} Vertex 8596 2.92603 18.2775 1.16111 {normal=(0.655586 -0.40306 0.638553)} Vertex 8597 2.9269 18.13 1.05199 {normal=(0.854109 -0.279921 0.438341)} Vertex 8598 2.92775 21.7013 0.678409 {normal=(0.947 0.21567 0.238072)} Vertex 8599 2.9284 21.8883 0.481434 {normal=(0.936062 0.273594 0.22121)} Vertex 8600 2.92846 17.7618 -0.470535 {normal=(0.532018 -0.84357 -0.0731147)} Vertex 8601 2.92852 20.0102 1.02479 {normal=(0.943383 0.197322 0.266632)} Vertex 8602 2.92894 17.3663 -2.05436 {normal=(0.999033 -0.0052218 0.0436525)} Vertex 8603 2.93055 19.5285 -1.46277 {normal=(0.937678 -0.271877 0.216432)} Vertex 8604 2.93111 19.0523 1.83428 {normal=(0.911313 0.30085 0.281066)} Vertex 8605 2.93158 19.2938 1.58703 {normal=(0.959806 0.222383 0.171223)} Vertex 8606 2.93313 19.5544 1.18924 {normal=(0.975056 0.113794 0.190568)} Vertex 8607 2.93396 19.9478 1.04313 {normal=(0.956947 0.129519 0.259765)} Vertex 8608 2.93403 17.4648 -0.014704 {normal=(0.908708 0.00919911 -0.417332)} Vertex 8609 2.93479 18.5 1.19609 {normal=(0.953493 -0.0835388 0.289607)} Vertex 8610 2.93516 18.0614 0.991254 {normal=(0.846034 -0.230742 0.480609)} Vertex 8611 2.93611 18.1372 -0.826546 {normal=(-0.669391 -0.304088 -0.677825)} Vertex 8612 2.9365 18.0563 0.987455 {normal=(0.848975 -0.208049 0.485754)} Vertex 8613 2.93788 19.3909 -1.27298 {normal=(0.545956 -0.102216 -0.831555)} Vertex 8614 2.94044 -3.66992 -3.99761 Vertex 8615 2.94044 -2.25192 -3.99758 Vertex 8616 2.94044 -0.833917 -3.99756 Vertex 8617 2.94044 0.584082 -3.99754 Vertex 8618 2.94146 19.8897 1.0296 {normal=(0.962368 0.0862134 0.257711)} Vertex 8619 2.94253 17.1629 0.727849 {normal=(0.961829 -0.0283964 0.272175)} Vertex 8620 2.94554 17.8689 -0.087485 {normal=(0.91757 -0.270461 0.291405)} Vertex 8621 2.94572 18.7428 -1.15232 {normal=(-0.355283 -0.305778 -0.883331)} Vertex 8622 2.94649 17.585 0.780746 {normal=(0.964663 -0.0784037 0.251552)} Vertex 8623 2.94655 16.6937 0.494729 {normal=(0.957223 -0.28828 0.0248843)} Vertex 8624 2.94745 17.7769 -0.348415 {normal=(0.741863 -0.653663 -0.149548)} Vertex 8625 2.94759 1.01701 -4.2787 Vertex 8626 2.94818 18.4857 1.17674 {normal=(0.633603 0.148149 0.759341)} Vertex 8627 2.94819 16.8163 0.670118 {normal=(0.950072 -0.183041 0.252704)} Vertex 8628 2.94834 20.9252 0.827575 {normal=(0.961237 -0.00983918 0.275548)} Vertex 8629 2.94843 16.9297 0.215621 {normal=(0.950043 -0.188842 -0.24851)} Vertex 8630 2.95027 21.1561 -1.27562 {normal=(0.912253 0.304748 -0.27372)} Vertex 8631 2.95036 18.1485 1.03412 {normal=(0.591643 -0.501864 0.630945)} Vertex 8632 2.95105 18.3322 1.65031 {normal=(0.933743 -0.337272 -0.119878)} Vertex 8633 2.95137 18.5798 1.26137 {normal=(0.983638 -0.169101 -0.0621316)} Vertex 8634 2.9543 19.2482 -1.95203 {normal=(0.88862 -0.229976 -0.396818)} Vertex 8635 2.95443 17.7423 -0.237242 {normal=(0.895304 -0.44539 0.00768848)} Vertex 8636 2.95455 17.9472 0.891605 {normal=(0.865575 -0.24375 0.437454)} Vertex 8637 2.95552 17.7758 0.085283 {normal=(0.752667 -0.102111 -0.650435)} Vertex 8638 2.95614 18.2141 0.004432 {normal=(0.999887 0.00415533 0.0144502)} Vertex 8639 2.95728 17.8141 -0.625776 {normal=(-0.177023 -0.788884 -0.588493)} Vertex 8640 2.9576 21.2489 -1.24759 {normal=(0.924237 0.0442659 -0.379245)} Vertex 8641 2.95899 18.0793 0.972486 {normal=(0.603243 -0.475901 0.640013)} Vertex 8642 2.95938 19.7494 1.00356 {normal=(0.962372 0.0800486 0.259678)} Vertex 8643 2.95985 18.0827 0.010697 {normal=(0.981727 -0.145255 0.122938)} Vertex 8644 2.96136 19.9968 0.91781 {normal=(0.88809 0.189301 0.418881)} Vertex 8645 2.96526 20.0148 0.904617 {normal=(0.832967 0.246859 0.495203)} Vertex 8646 2.96542 21.1309 -1.27932 {normal=(0.654421 0.753922 0.0577526)} Vertex 8647 2.96636 20.2669 0.805459 {normal=(0.918068 0.115916 0.379098)} Vertex 8648 2.96713 -43.2615 -3.42964 Vertex 8649 2.96719 19.2192 1.31294 {normal=(0.976317 0.198685 0.0856171)} Vertex 8650 2.9678 19.9808 0.913021 {normal=(0.85819 0.105642 0.502344)} Vertex 8651 2.96856 -13.0955 2.71639 {normal=(-0.147579 -0.138585 0.979293)} Vertex 8652 2.96866 19.3584 1.11906 {normal=(0.981007 0.107824 0.161244)} Vertex 8653 2.96944 18.2493 -0.921801 {normal=(-0.673673 -0.371738 -0.63873)} Vertex 8654 2.97116 17.53 0.075737 {normal=(0.924255 0.0257453 -0.380906)} Vertex 8655 2.97176 18.9381 -1.21424 {normal=(-0.291769 -0.201957 -0.934925)} Vertex 8656 2.97182 17.2347 0.13361 {normal=(0.945559 -0.111659 -0.305698)} Vertex 8657 2.97191 18.3628 2.02422 {normal=(0.968121 -0.240642 0.0695249)} Vertex 8658 2.97334 18.3113 -0.009712 {normal=(0.991232 0.000954772 0.132129)} Vertex 8659 2.97344 19.4988 -1.54124 {normal=(0.647756 -0.350576 0.676395)} Vertex 8660 2.97361 0.793936 -4.64973 Vertex 8661 2.97448 18.4791 2.14688 {normal=(0.980386 -0.0113015 0.196765)} Vertex 8662 2.97591 17.7721 -0.554103 {normal=(0.193868 -0.976738 -0.0916451)} Vertex 8663 2.97656 18.4839 1.51494 {normal=(0.951818 -0.261006 -0.16099)} Vertex 8664 2.97664 17.97 0.876703 {normal=(0.61197 -0.463377 0.640916)} Vertex 8665 2.97668 17.4301 0.593601 {normal=(0.977129 -0.0408137 0.208693)} Vertex 8666 2.97696 21.5814 -1.15145 {normal=(0.93966 0.204989 -0.273894)} Vertex 8667 2.97699 18.4035 -1.02469 {normal=(-0.653804 -0.353607 -0.668956)} Vertex 8668 2.97707 18.4478 0.001382 {normal=(0.993668 0.00526824 0.112235)} Vertex 8669 2.98115 17.8035 -0.418505 {normal=(0.563465 -0.822527 0.0771773)} Vertex 8670 2.98155 18.5873 0.011305 {normal=(0.992179 -0.0359113 0.119548)} Vertex 8671 2.98175 -9.33591 3.68109 Vertex 8672 2.98227 17.7247 0.707429 {normal=(0.890298 -0.253292 0.378434)} Vertex 8673 2.98276 18.8383 1.13909 {normal=(0.993854 -0.0604472 0.0927359)} Vertex 8674 2.98329 19.1091 1.54664 {normal=(0.957037 0.256695 0.13486)} Vertex 8675 2.98351 19.8535 0.898968 {normal=(0.867208 0.0467843 0.495744)} Vertex 8676 2.98362 19.9973 0.893347 {normal=(0.683587 0.238789 0.689702)} Vertex 8677 2.9844 21.931 -0.487595 {normal=(0.945002 0.312062 -0.0979235)} Vertex 8678 2.98469 18.7115 2.00828 {normal=(0.948222 0.189636 0.25478)} Vertex 8679 2.98542 -33.7225 -5.77918 Vertex 8680 2.9865 18.9046 1.80149 {normal=(0.924375 0.288664 0.249406)} Vertex 8681 2.9868 18.7299 0.020054 {normal=(0.979205 -0.183438 0.086655)} Vertex 8682 2.98773 19.5267 0.965002 {normal=(0.960594 0.0818127 0.265643)} Vertex 8683 2.98818 18.7575 1.09467 {normal=(0.921475 0.0155926 0.388126)} Vertex 8684 2.98949 18.9824 1.20956 {normal=(0.999187 -0.0237894 -0.032541)} Vertex 8685 2.99044 -17.7994 2.44164 {normal=(-0.426038 -0.20385 0.88144)} Vertex 8686 2.99104 18.9422 0.066092 {normal=(0.984167 -0.0574494 0.167677)} Vertex 8687 2.99259 20.871 -1.91213 {normal=(0.868721 0.0945437 -0.486194)} Vertex 8688 2.99268 19.078 0.087345 {normal=(0.978496 -0.122295 0.166099)} Vertex 8689 2.99361 19.1663 -1.25406 {normal=(-0.207245 -0.094113 -0.973752)} Vertex 8690 2.99451 -2.25204 3.6113 Vertex 8691 2.99451 -0.834039 3.61132 Vertex 8692 2.99451 0.583959 3.61134 Vertex 8693 2.99488 19.1793 1.06327 {normal=(0.988722 0.0547162 0.139408)} Vertex 8694 2.99623 19.8111 -1.35861 {normal=(0.944805 -0.317177 0.0821137)} Vertex 8695 2.99782 16.9895 0.350843 {normal=(0.984036 -0.143882 -0.104746)} Vertex 8696 2.99791 18.7249 1.37258 {normal=(0.974431 -0.142274 -0.173906)} Vertex 8697 2.99812 17.5966 0.164886 {normal=(0.781834 -0.0816822 -0.618112)} Vertex 8698 2.99821 17.0405 0.543803 {normal=(0.985946 -0.0578368 0.156731)} Vertex 8699 2.99963 18.2308 0.052713 {normal=(0.545719 0.0153992 -0.837827)} Vertex 8700 2.99979 19.0831 1.31216 {normal=(0.981554 0.188269 0.0332677)} Vertex 8701 3.00037 19.6402 -1.2806 {normal=(0.913355 -0.211424 -0.347968)} Vertex 8702 3.00049 18.3462 0.069096 {normal=(0.654231 0.125025 -0.745889)} Vertex 8703 3.00049 -34.093 -5.66988 {normal=(-0.619205 -0.206048 -0.757714)} Vertex 8704 3.00055 19.16 -1.69615 {normal=(0.886751 -0.340823 0.31227)} Vertex 8705 3.00058 19.2617 0.093597 {normal=(0.936475 -0.102862 0.335312)} Vertex 8706 3.00104 18.5588 -1.11732 {normal=(-0.619083 -0.277967 -0.734487)} Vertex 8707 3.00157 17.3486 0.191148 {normal=(0.934807 -0.11559 -0.335819)} Vertex 8708 3.00225 17.4969 0.154635 {normal=(0.922368 -0.0151031 -0.386018)} Vertex 8709 3.00225 17.8235 -0.304463 {normal=(0.687196 -0.723341 0.0673714)} Vertex 8710 3.00247 19.0344 1.29032 {normal=(0.99554 0.0495593 -0.0802707)} Vertex 8711 3.0031 18.1124 0.056089 {normal=(0.551482 -0.103372 -0.827757)} Vertex 8712 3.00318 18.9928 0.11938 {normal=(0.560248 -0.0204019 -0.828074)} Vertex 8713 3.00356 17.7473 0.692657 {normal=(0.634798 -0.503498 0.586106)} Vertex 8714 3.00429 17.5752 0.5202 {normal=(0.91962 -0.273499 0.281951)} Vertex 8715 3.00506 1.47742 -4.84007 Vertex 8716 3.00528 18.8593 0.121307 {normal=(0.706545 0.0413578 -0.706459)} Vertex 8717 3.00552 19.1933 0.110452 {normal=(0.499802 -0.0505758 -0.864662)} Vertex 8718 3.00553 19.8668 0.875481 {normal=(0.642123 0.0575972 0.764435)} Vertex 8719 3.0057 18.4586 0.105242 {normal=(0.654886 0.133569 -0.743831)} Vertex 8720 3.00575 18.7399 1.07631 {normal=(0.623151 0.219242 0.750743)} Vertex 8721 3.00655 20.1836 0.750053 {normal=(0.818648 0.266135 0.508908)} Vertex 8722 3.00682 18.7231 0.122532 {normal=(0.660318 -0.0882447 -0.745783)} Vertex 8723 3.00737 18.4725 1.78906 {normal=(0.971715 -0.235532 -0.0171774)} Vertex 8724 3.00738 20.7174 0.628767 {normal=(0.957087 0.0277131 0.288473)} Vertex 8725 3.00747 18.3 1.13096 {normal=(0.471461 -0.408091 0.781784)} Vertex 8726 3.00781 18.5842 0.123053 {normal=(0.646622 0.00539685 -0.762792)} Vertex 8727 3.00829 21.193 0.580934 {normal=(0.976206 0.0615696 0.20792)} Vertex 8728 3.00851 19.6151 0.875653 {normal=(0.863346 0.0476136 0.502362)} Vertex 8729 3.00904 -3.67196 3.38582 Vertex 8730 3.0095 17.3379 0.403967 {normal=(0.99259 -0.0359897 0.116061)} Vertex 8731 3.01179 19.0173 1.02186 {normal=(0.96965 0.0426522 0.24075)} Vertex 8732 3.0118 17.2795 0.261742 {normal=(0.987621 -0.0953966 -0.124514)} Vertex 8733 3.01229 19.4609 0.094523 {normal=(0.546795 -0.0773131 -0.833689)} Vertex 8734 3.01409 19.3158 0.933712 {normal=(0.953874 0.0796573 0.289446)} Vertex 8735 3.01473 19.4933 0.084852 {normal=(0.744733 -0.0119975 0.667254)} Vertex 8736 3.01503 -41.9203 -3.44988 Vertex 8737 3.01575 12.9848 -4.37449 Vertex 8738 3.01793 21.5752 -0.917749 {normal=(0.967382 0.195484 -0.161114)} Vertex 8739 3.01922 18.0857 -0.905655 {normal=(-0.474647 -0.448258 -0.757479)} Vertex 8740 3.01929 -43.2789 -5.5188 Vertex 8741 3.0201 18.9725 1.56106 {normal=(0.952765 0.2725 0.134096)} Vertex 8742 3.02086 19.3628 -1.26237 {normal=(-0.158444 0.0331856 -0.98681)} Vertex 8743 3.02108 18.5796 1.89687 {normal=(0.990447 -0.0438908 0.130724)} Vertex 8744 3.02196 19.7412 -1.29007 {normal=(0.915433 -0.0789236 -0.394656)} Vertex 8745 3.02245 17.4754 0.204259 {normal=(0.870313 -0.105238 -0.481124)} Vertex 8746 3.02404 18.9869 -0.692567 {normal=(0.912019 0.390812 -0.124449)} Vertex 8747 3.02415 17.4988 0.329922 {normal=(0.93752 -0.294842 0.184727)} Vertex 8748 3.02425 19.1102 -0.773111 {normal=(0.868451 -0.400408 0.292345)} Vertex 8749 3.02427 17.8818 -0.192219 {normal=(0.833691 -0.465693 0.296797)} Vertex 8750 3.02461 17.5984 0.507645 {normal=(0.651504 -0.619384 0.43807)} Vertex 8751 3.02461 18.4877 1.14334 {normal=(0.399557 0.118918 0.908962)} Vertex 8752 3.02618 21.2296 -1.07704 {normal=(0.961289 0.0848596 -0.26215)} Vertex 8753 3.02671 -10.0006 3.60659 {normal=(-0.159859 -0.222857 0.961655)} Vertex 8754 3.02684 19.6933 0.073783 {normal=(0.749563 -0.121635 -0.650661)} Vertex 8755 3.02812 17.5017 0.210685 {normal=(0.671421 -0.136839 -0.728333)} Vertex 8756 3.02835 19.624 -1.23287 {normal=(0.327549 0.0092797 -0.944789)} Vertex 8757 3.0293 21.1144 -1.31737 {normal=(0.305927 0.915616 0.260877)} Vertex 8758 3.02986 20.1658 0.735316 {normal=(0.544973 0.492093 0.678859)} Vertex 8759 3.03046 18.8005 1.74942 {normal=(0.967016 0.175649 0.184465)} Vertex 8760 3.0305 17.8144 -0.497353 {normal=(0.533764 -0.804419 0.260782)} Vertex 8761 3.03079 18.7775 1.47372 {normal=(0.975842 -0.120729 -0.182089)} Vertex 8762 3.03086 19.0421 -0.79213 {normal=(0.796964 0.225852 0.560213)} Vertex 8763 3.03091 18.6264 1.62458 {normal=(0.976724 -0.186874 -0.105304)} Vertex 8764 3.03096 18.9274 0.991155 {normal=(0.882685 0.145019 0.447032)} Vertex 8765 3.03101 19.6235 0.851015 {normal=(0.579547 -0.0144639 0.81481)} Vertex 8766 3.0312 21.8327 -0.212922 {normal=(0.962625 0.27082 -0.00300404)} Vertex 8767 3.03172 17.4655 0.224608 {normal=(0.951564 -0.231876 -0.201889)} Vertex 8768 3.03212 18.1733 1.00267 {normal=(0.397705 -0.600066 0.694083)} Vertex 8769 3.03307 19.702 0.057723 {normal=(0.737022 0.0700696 0.672227)} Vertex 8770 3.03385 21.4336 0.329014 {normal=(0.979741 0.109432 0.167727)} Vertex 8771 3.03429 18.8631 -0.032859 {normal=(0.922405 -0.134647 0.361994)} Vertex 8772 3.0352 17.8887 0.110841 {normal=(0.453162 -0.220002 -0.863854)} Vertex 8773 3.03557 19.3847 0.85618 {normal=(0.852954 0.060033 0.518523)} Vertex 8774 3.03845 17.9734 -0.149976 {normal=(0.772705 -0.263511 0.577486)} Vertex 8775 3.03847 19.1167 0.909688 {normal=(0.93674 0.0915807 0.337832)} Vertex 8776 3.04006 -17.8602 -7.10841 Vertex 8777 3.04105 18.7151 -1.1997 {normal=(-0.576563 -0.199503 -0.792322)} Vertex 8778 3.04164 19.7939 -1.4271 {normal=(0.562261 -0.499497 0.659064)} Vertex 8779 3.04192 21.2211 -0.986897 {normal=(0.98758 0.0966355 -0.123883)} Vertex 8780 3.04259 17.5233 0.321667 {normal=(0.737533 -0.644778 0.200765)} Vertex 8781 3.04279 18.8948 1.54046 {normal=(0.983616 0.173022 0.0506325)} Vertex 8782 3.04396 17.9849 -0.85095 {normal=(-0.305845 -0.564831 -0.766436)} Vertex 8783 3.04409 19.965 -1.21092 {normal=(0.973849 -0.199834 -0.108097)} Vertex 8784 3.04421 17.8417 -0.379054 {normal=(0.485675 -0.872329 0.0562359)} Vertex 8785 3.04517 17.6561 0.178052 {normal=(0.38264 -0.245844 -0.890588)} Vertex 8786 3.04523 17.491 0.22268 {normal=(0.776898 -0.471861 -0.416866)} Vertex 8787 3.04526 18.7078 1.69045 {normal=(0.998603 -0.0325592 0.041616)} Vertex 8788 3.04546 18.8461 1.51862 {normal=(0.996453 0.00122158 -0.0841462)} Vertex 8789 3.0471 20.0274 -0.009733 {normal=(0.948403 0.0413234 0.314364)} Vertex 8790 3.04768 18.998 -0.642656 {normal=(0.930346 -0.0393211 -0.364569)} Vertex 8791 3.04788 19.1213 -0.7232 {normal=(0.843378 -0.497537 -0.202905)} Vertex 8792 3.04862 21.6112 0.133394 {normal=(0.977904 0.140223 0.155055)} Vertex 8793 3.04918 19.8906 0.048231 {normal=(0.660989 -0.165258 -0.731972)} Vertex 8794 3.04996 -3.66991 -4.3096 Vertex 8795 3.04996 -2.25192 -4.30958 Vertex 8796 3.0504 18.1979 -0.999199 {normal=(-0.436758 -0.486527 -0.75666)} Vertex 8797 3.05217 20.5803 0.5174 {normal=(0.948538 0.0945837 0.302209)} Vertex 8798 3.0524 18.9096 0.971156 {normal=(0.618584 0.393414 0.680131)} Vertex 8799 3.05243 20.264 -1.91928 {normal=(0.887213 0.0356302 -0.459983)} Vertex 8800 3.0526 21.7261 -0.005925 {normal=(0.972605 0.213821 0.0912189)} Vertex 8801 3.05459 18.3524 -1.09866 {normal=(-0.464381 -0.431296 -0.773521)} Vertex 8802 3.05553 18.1252 -0.101187 {normal=(0.841081 -0.109231 0.529766)} Vertex 8803 3.0556 19.8879 0.012211 {normal=(0.826834 0.118368 0.54985)} Vertex 8804 3.05629 -15.6303 2.61602 {normal=(-0.36475 -0.126155 0.922519)} Vertex 8805 3.05645 21.0457 -1.0415 {normal=(0.932203 0.335128 -0.1367)} Vertex 8806 3.0573 21.5425 -0.664855 {normal=(0.982485 0.147002 -0.114511)} Vertex 8807 3.05761 17.9996 0.846544 {normal=(0.419016 -0.56271 0.712589)} Vertex 8808 3.05931 19.3858 0.83067 {normal=(0.591376 0.00726901 0.806363)} Vertex 8809 3.05958 21.0361 -1.02313 {normal=(0.924996 0.379833 0.0105037)} Vertex 8810 3.05986 -41.9279 -5.5235 Vertex 8811 3.06059 21.1898 -0.784979 {normal=(0.995231 0.054062 -0.0811963)} Vertex 8812 3.06121 -41.0922 -4.23682 Vertex 8813 3.06315 19.0097 0.885542 {normal=(0.834426 0.218574 0.505924)} Vertex 8814 3.06345 17.8762 -0.259146 {normal=(0.677916 -0.66632 0.310561)} Vertex 8815 3.06376 -0.833912 -4.30515 Vertex 8816 3.06376 0.584086 -4.30513 Vertex 8817 3.06448 18.9309 -0.567425 {normal=(0.97815 -0.10832 -0.177452)} Vertex 8818 3.06468 19.1622 0.84055 {normal=(0.826989 0.102604 0.552776)} Vertex 8819 3.06623 20.1677 -0.058187 {normal=(0.986292 -0.00365989 0.164967)} Vertex 8820 3.06685 20.9759 0.35294 {normal=(0.984847 0.0489466 0.166377)} Vertex 8821 3.06719 19.6061 -1.84885 {normal=(0.925054 -0.134632 -0.355174)} Vertex 8822 3.06961 20.0594 0.01123 {normal=(0.493942 -0.282751 -0.822237)} Vertex 8823 3.06995 21.0038 -0.851028 {normal=(0.935949 0.35211 0.00421097)} Vertex 8824 3.07138 18.243 -0.139958 {normal=(0.867884 0.00526688 0.496739)} Vertex 8825 3.07229 18.8492 -0.487384 {normal=(0.97313 -0.107432 -0.203656)} Vertex 8826 3.07242 18.4207 -0.178118 {normal=(0.893837 0.0482513 0.445788)} Vertex 8827 3.07251 18.9141 -1.25996 {normal=(-0.536755 -0.125886 -0.834294)} Vertex 8828 3.07499 21.0171 -1.0373 {normal=(0.42661 0.880763 0.205572)} Vertex 8829 3.08033 -43.2994 -2.23312 Vertex 8830 3.081 18.5802 -0.193003 {normal=(0.91707 -0.0576677 0.394534)} Vertex 8831 3.0822 21.1357 -0.471285 {normal=(0.997834 0.00742348 -0.0653599)} Vertex 8832 3.08229 -45.2711 -3.39345 Vertex 8833 3.08295 17.8443 -0.745797 {normal=(-0.140983 -0.747027 -0.649673)} Vertex 8834 3.08322 19.1899 -0.676738 {normal=(0.934837 -0.26468 -0.236695)} Vertex 8835 3.08347 20.952 -0.514334 {normal=(0.944564 0.328172 0.0101081)} Vertex 8836 3.08354 18.7364 1.03979 {normal=(0.360829 0.36066 0.860074)} Vertex 8837 3.08393 17.7788 0.662587 {normal=(0.428129 -0.611402 0.665502)} Vertex 8838 3.0842 18.7851 -0.430336 {normal=(0.955541 -0.0193029 -0.294227)} Vertex 8839 3.08522 20.5033 0.454121 {normal=(0.858156 0.289756 0.423804)} Vertex 8840 3.08536 20.9846 -0.863001 {normal=(0.557033 0.82315 0.110172)} Vertex 8841 3.08547 12.6564 -5.16987 {normal=(0.0367793 0.303792 -0.952028)} Vertex 8842 3.08579 18.7528 -0.547267 {normal=(0.905043 0.285835 0.314953)} Vertex 8843 3.08583 18.8468 -0.624364 {normal=(0.854929 0.341982 0.390057)} Vertex 8844 3.08617 18.5127 -1.19242 {normal=(-0.442501 -0.352423 -0.824615)} Vertex 8845 3.08674 -11.2865 3.18666 {normal=(0.000815849 -0.225463 0.974251)} Vertex 8846 3.08689 19.8993 -1.17151 {normal=(0.466443 0.431338 -0.772256)} Vertex 8847 3.08732 20.9256 -0.334188 {normal=(0.948919 0.294246 0.113895)} Vertex 8848 3.08743 20.1078 -1.00783 {normal=(0.958956 0.107683 -0.262311)} Vertex 8849 3.08757 20.9285 -0.342364 {normal=(0.957699 0.278535 0.0723248)} Vertex 8850 3.0877 17.8509 -0.530128 {normal=(0.661154 -0.690486 0.293437)} Vertex 8851 3.0877 21.1912 0.074053 {normal=(0.995324 0.0376316 0.0889563)} Vertex 8852 3.08811 20.1998 -0.037223 {normal=(0.569058 -0.52594 -0.632108)} Vertex 8853 3.08812 18.9949 0.861272 {normal=(0.5728 0.424089 0.701462)} Vertex 8854 3.08879 21.067 -0.258426 {normal=(0.999568 -0.0228552 0.0184807)} Vertex 8855 3.08885 -41.932 -2.26927 Vertex 8856 3.08931 20.9741 -0.086473 {normal=(0.998825 0.0442556 0.0197607)} Vertex 8857 3.0897 20.0123 -1.25126 {normal=(0.555112 -0.679488 0.479736)} Vertex 8858 3.09043 19.1536 0.814444 {normal=(0.59463 0.120831 0.794868)} Vertex 8859 3.09056 19.2278 -0.734232 {normal=(0.745772 -0.566962 0.349826)} Vertex 8860 3.09093 17.8689 -0.470985 {normal=(0.495106 -0.866661 0.0613833)} Vertex 8861 3.09158 19.8624 0.839648 {normal=(0.434702 0.117467 0.892881)} Vertex 8862 3.09159 21.0947 -0.295767 {normal=(0.999372 -0.0335316 -0.0114895)} Vertex 8863 3.0918 18.9242 -0.709901 {normal=(0.706632 0.573488 0.414467)} Vertex 8864 3.09316 20.8161 0.22009 {normal=(0.987422 0.0883989 0.131083)} Vertex 8865 3.09352 -21.6238 -7.0905 Vertex 8866 3.09498 18.689 -0.493349 {normal=(0.931404 0.336884 0.137824)} Vertex 8867 3.09507 21.4832 -0.392774 {normal=(0.992077 0.104919 -0.0690985)} Vertex 8868 3.09539 19.1559 -1.29808 {normal=(-0.516383 -0.0325578 -0.855739)} Vertex 8869 3.09712 18.7217 -0.184613 {normal=(0.913636 -0.104333 0.392918)} Vertex 8870 3.09828 19.487 -1.61777 {normal=(0.877025 -0.346648 0.332659)} Vertex 8871 3.09853 20.8571 -0.173755 {normal=(0.925514 0.362999 0.10796)} Vertex 8872 3.09889 20.9321 -0.521924 {normal=(0.550912 0.828351 0.101639)} Vertex 8873 3.09923 19.1249 -0.825664 {normal=(0.506847 -0.373622 0.776861)} Vertex 8874 3.10017 17.6022 0.205911 {normal=(0.438834 -0.506491 -0.742221)} Vertex 8875 3.10019 17.7858 -0.657132 {normal=(0.275576 -0.955479 -0.105441)} Vertex 8876 3.10022 18.7385 -0.396281 {normal=(0.948989 0.0263689 -0.314204)} Vertex 8877 3.10209 21.3375 -0.113225 {normal=(0.996926 0.0152938 0.0768458)} Vertex 8878 3.10291 1.53595 -4.34686 Vertex 8879 3.10299 20.9083 -0.347762 {normal=(0.632158 0.751471 0.188859)} Vertex 8880 3.10355 17.6325 0.486175 {normal=(0.414345 -0.75783 0.503995)} Vertex 8881 3.10371 18.9852 -0.803877 {normal=(0.498806 0.555884 0.664971)} Vertex 8882 3.10619 19.0521 -0.842463 {normal=(0.416094 0.100274 0.903776)} Vertex 8883 3.10646 20.2862 -0.155766 {normal=(0.696908 -0.68277 -0.219418)} Vertex 8884 3.10651 20.4864 0.438927 {normal=(0.558203 0.56742 0.605346)} Vertex 8885 3.10714 18.6763 -0.371277 {normal=(0.97958 0.0247823 -0.19952)} Vertex 8886 3.10922 17.9522 -0.236016 {normal=(0.735367 -0.40018 0.546892)} Vertex 8887 3.11 21.4149 -0.208897 {normal=(0.998183 0.0580655 0.0161186)} Vertex 8888 3.11023 19.4077 -1.29914 {normal=(-0.506608 0.0872202 -0.857754)} Vertex 8889 3.11047 20.2173 -0.176757 {normal=(0.884986 0.304063 0.352627)} Vertex 8890 3.11209 19.0839 -0.05678 {normal=(0.77937 -0.297388 0.551491)} Vertex 8891 3.11282 -44.4287 -5.5505 Vertex 8892 3.1134 18.6554 -0.462611 {normal=(0.933904 0.345545 0.0917733)} Vertex 8893 3.11359 20.1466 0.707685 {normal=(0.367503 0.504297 0.781426)} Vertex 8894 3.11535 20.84 -0.18779 {normal=(0.581105 0.770759 0.261243)} Vertex 8895 3.11564 -44.7921 -3.4216 Vertex 8896 3.11588 20.7278 0.146185 {normal=(0.907741 0.351084 0.229665)} Vertex 8897 3.1162 13.1539 -4.59755 Vertex 8898 3.11646 17.5608 0.317309 {normal=(0.549481 -0.834418 0.0426248)} Vertex 8899 3.11672 18.6252 -0.416603 {normal=(0.957601 0.252661 0.138426)} Vertex 8900 3.11703 19.6697 -1.26314 {normal=(-0.472731 0.244495 -0.846609)} Vertex 8901 3.11758 17.8763 -0.352182 {normal=(0.573416 -0.789244 0.219745)} Vertex 8902 3.11763 20.1539 -1.01373 {normal=(0.612236 -0.729962 0.303846)} Vertex 8903 3.11774 20.2068 -0.798657 {normal=(0.908066 0.366338 -0.203009)} Vertex 8904 3.11872 19.6142 0.812128 {normal=(0.362218 -0.0591224 0.930217)} Vertex 8905 3.12112 19.2284 0.004268 {normal=(0.652655 -0.241595 0.718104)} Vertex 8906 3.12214 18.584 -0.315212 {normal=(0.986484 -0.0348564 0.160109)} Vertex 8907 3.12241 18.8407 -0.209509 {normal=(0.934467 -0.129556 0.331642)} Vertex 8908 3.12401 18.9868 -0.147434 {normal=(0.849165 -0.297844 0.436129)} Vertex 8909 3.12466 20.3187 -0.344397 {normal=(0.807609 -0.58588 0.0671785)} Vertex 8910 3.12505 19.1965 -0.79037 {normal=(0.503819 -0.548027 0.667707)} Vertex 8911 3.12541 19.0865 -0.592487 {normal=(0.810965 -0.283349 -0.511908)} Vertex 8912 3.12721 -33.5402 -5.6836 Vertex 8913 3.12791 19.2566 -0.573691 {normal=(0.901829 -0.0661188 -0.427004)} Vertex 8914 3.12966 21.0254 -1.58801 {normal=(0.913613 0.240984 -0.327471)} Vertex 8915 3.13146 18.9049 0.930968 {normal=(0.345582 0.571818 0.744041)} Vertex 8916 3.13173 18.5329 -0.360538 {normal=(0.94806 0.159686 0.275104)} Vertex 8917 3.13213 20.2523 -0.780897 {normal=(0.707113 -0.68214 0.186214)} Vertex 8918 3.13215 19.8485 -1.19474 {normal=(-0.366581 0.476907 -0.79886)} Vertex 8919 3.13321 20.3074 -0.552774 {normal=(0.886174 -0.462618 0.0260863)} Vertex 8920 3.13356 18.1969 -1.00503 {normal=(0.30848 -0.543465 -0.780696)} Vertex 8921 3.13436 19.2965 -0.613106 {normal=(0.776951 -0.614518 0.136801)} Vertex 8922 3.13501 20.7112 0.131225 {normal=(0.559063 0.721982 0.407665)} Vertex 8923 3.13502 20.2618 -0.583401 {normal=(0.75711 0.620846 -0.20331)} Vertex 8924 3.13682 18.4361 -0.32092 {normal=(0.923446 0.113507 0.366558)} Vertex 8925 3.13713 18.2378 -0.258133 {normal=(0.877228 0.0936959 0.470843)} Vertex 8926 3.13713 18.3431 -1.10343 {normal=(0.274605 -0.538857 -0.796382)} Vertex 8927 3.13932 19.3888 0.038026 {normal=(0.476366 -0.141397 0.867803)} Vertex 8928 3.13953 19.0215 -0.512374 {normal=(0.825331 -0.374327 -0.42274)} Vertex 8929 3.13955 -3.67004 3.90811 Vertex 8930 3.13955 -2.25204 3.90813 Vertex 8931 3.13989 18.0515 -0.235074 {normal=(0.762144 -0.0634916 0.644287)} Vertex 8932 3.14027 20.2692 -0.363819 {normal=(0.800452 0.485376 0.351691)} Vertex 8933 3.1419 21.1066 -1.38976 {normal=(0.705474 0.708358 0.0231482)} Vertex 8934 3.142 18.9441 -0.422569 {normal=(0.877917 -0.359466 -0.316301)} Vertex 8935 3.14362 18.87 -0.361994 {normal=(0.962156 -0.168379 -0.214251)} Vertex 8936 3.14368 18.7249 -0.307003 {normal=(0.992943 -0.114465 -0.0310238)} Vertex 8937 3.14415 18.679 -1.2805 {normal=(-0.386507 -0.272584 -0.881085)} Vertex 8938 3.14439 18.7992 -0.330651 {normal=(0.981974 -0.127356 -0.139673)} Vertex 8939 3.14579 18.05 -0.902461 {normal=(0.330282 -0.509778 -0.794381)} Vertex 8940 3.14592 19.3769 0.788728 {normal=(0.398941 -0.0416635 0.91603)} Vertex 8941 3.14764 18.3251 1.08671 {normal=(0.665931 -0.295054 0.685186)} Vertex 8942 3.15071 2.4033 -4.8752 Vertex 8943 3.15162 18.2487 0.076774 {normal=(0.585791 0.13542 -0.799069)} Vertex 8944 3.15262 18.9729 0.100377 {normal=(0.395417 -0.0749884 -0.915436)} Vertex 8945 3.15284 18.3476 0.096469 {normal=(0.621993 0.216592 -0.752471)} Vertex 8946 3.15385 -6.42699 3.65097 Vertex 8947 3.15413 19.1837 0.08859 {normal=(0.371631 -0.0543273 -0.92679)} Vertex 8948 3.15438 20.9696 -0.893038 {normal=(0.198534 0.963916 0.177345)} Vertex 8949 3.15464 18.1562 0.074372 {normal=(0.531722 0.00553589 -0.846901)} Vertex 8950 3.15481 18.8353 0.108866 {normal=(0.46315 -0.0962827 -0.881034)} Vertex 8951 3.1567 17.8223 -0.689909 {normal=(0.65411 -0.748828 -0.106753)} Vertex 8952 3.15689 18.9372 -0.267693 {normal=(0.934821 -0.302736 0.185634)} Vertex 8953 3.15719 18.7013 0.122821 {normal=(0.544486 -0.107705 -0.831826)} Vertex 8954 3.15765 13.124 -4.85645 Vertex 8955 3.15831 18.4531 0.133459 {normal=(0.682439 0.14956 -0.715478)} Vertex 8956 3.15934 19.4677 0.073503 {normal=(0.391187 -0.0621155 -0.918213)} Vertex 8957 3.15976 18.571 0.142244 {normal=(0.647652 -0.0281294 -0.761417)} Vertex 8958 3.16062 18.1659 -0.277815 {normal=(0.800067 0.118212 0.588148)} Vertex 8959 3.16163 19.1532 -0.564104 {normal=(0.840915 -0.073934 -0.536093)} Vertex 8960 3.16409 18.5059 1.09587 {normal=(0.686688 0.0535065 0.72498)} Vertex 8961 3.16439 20.0504 -1.02667 {normal=(0.313368 0.724844 -0.613515)} Vertex 8962 3.16509 -40.188 -3.96481 Vertex 8963 3.16602 5.30195 5.10544 {normal=(0.0291798 -0.143479 0.989223)} Vertex 8964 3.16616 17.9344 0.125657 {normal=(0.417269 -0.171824 -0.892392)} Vertex 8965 3.16668 19.5649 0.044491 {normal=(0.350753 0.0295714 0.936001)} Vertex 8966 3.16818 19.335 -0.49632 {normal=(0.871342 -0.032729 -0.489584)} Vertex 8967 3.16834 18.993 0.816863 {normal=(0.372952 0.503745 0.779197)} Vertex 8968 3.16951 18.5009 -1.19777 {normal=(0.262717 -0.524117 -0.810112)} Vertex 8969 3.16961 20.9171 -0.53953 {normal=(0.202466 0.963361 0.175908)} Vertex 8970 3.17048 17.8945 -0.453336 {normal=(0.562057 -0.826134 0.0399285)} Vertex 8971 3.1715 19.8073 -1.48368 {normal=(0.849609 -0.414066 0.32667)} Vertex 8972 3.17175 17.9411 -0.343169 {normal=(0.794783 -0.45943 0.396539)} Vertex 8973 3.1722 18.2046 0.957628 {normal=(0.748061 -0.393202 0.5346)} Vertex 8974 3.17251 19.7092 0.055891 {normal=(0.436873 -0.0973273 -0.894242)} Vertex 8975 3.17306 17.9025 -0.795744 {normal=(0.495992 -0.614078 -0.613922)} Vertex 8976 3.17316 19.1503 0.769449 {normal=(0.429929 0.109907 0.896148)} Vertex 8977 3.17509 19.9639 -1.64774 {normal=(0.954175 -0.0874617 -0.286182)} Vertex 8978 3.17597 18.5818 -0.551032 {normal=(0.880017 0.330802 0.340793)} Vertex 8979 3.17651 -17.7867 -7.41635 Vertex 8980 3.1782 20.2835 -0.476055 {normal=(0.497483 0.86744 -0.00763834)} Vertex 8981 3.17839 19.3697 -0.55714 {normal=(0.82535 -0.488556 0.283036)} Vertex 8982 3.18204 18.5206 -0.488304 {normal=(0.921401 0.262977 0.286117)} Vertex 8983 3.18252 18.6549 -0.602216 {normal=(0.810274 0.290734 0.508851)} Vertex 8984 3.18394 18.5499 -0.529639 {normal=(0.919821 0.303547 0.248573)} Vertex 8985 3.18438 -45.0273 -5.58524 Vertex 8986 3.18476 20.4668 0.416238 {normal=(0.309677 0.678868 0.665762)} Vertex 8987 3.18535 2.45959 -4.41563 Vertex 8988 3.18671 20.5523 -1.59655 {normal=(0.92597 0.0648222 -0.371992)} Vertex 8989 3.18696 18.896 -1.34692 {normal=(-0.377499 -0.1644 -0.9113)} Vertex 8990 3.18714 18.4237 -0.448687 {normal=(0.928429 0.178377 0.325885)} Vertex 8991 3.18787 19.0612 -0.199863 {normal=(0.651072 -0.531056 0.542297)} Vertex 8992 3.18801 20.8248 -0.204453 {normal=(0.261673 0.913477 0.311587)} Vertex 8993 3.19121 19.7353 0.007712 {normal=(0.343367 0.24038 0.907919)} Vertex 8994 3.19313 18.998 -0.291927 {normal=(0.822982 -0.560385 0.0931134)} Vertex 8995 3.19365 19.9083 0.03575 {normal=(0.487457 -0.1816 -0.854054)} Vertex 8996 3.19744 18.0359 0.80113 {normal=(0.751674 -0.37405 0.543205)} Vertex 8997 3.19797 -35.0239 -1.79187 {normal=(-0.761394 -0.108263 0.639186)} Vertex 8998 3.19798 19.4625 -0.504596 {normal=(0.925708 -0.304931 0.223789)} Vertex 8999 3.20162 19.0982 -0.458968 {normal=(0.854825 -0.328178 -0.401962)} Vertex 9000 3.20227 -44.3414 -3.45309 Vertex 9001 3.20317 19.025 -0.361331 {normal=(0.847704 -0.483035 -0.219263)} Vertex 9002 3.20359 18.7692 -0.683192 {normal=(0.752647 0.335299 0.566654)} Vertex 9003 3.20389 17.9181 -0.685209 {normal=(0.885825 -0.46167 0.0466419)} Vertex 9004 3.20399 20.0291 -0.111514 {normal=(0.589153 0.398617 0.702854)} Vertex 9005 3.20401 19.4249 -0.444627 {normal=(0.807624 -0.042153 -0.588189)} Vertex 9006 3.20594 19.1567 -0.136562 {normal=(0.602868 -0.44855 0.659812)} Vertex 9007 3.20731 19.5357 -0.473559 {normal=(0.959572 -0.281373 -0.00711826)} Vertex 9008 3.20738 18.0362 -0.352014 {normal=(0.89991 -0.136123 0.414285)} Vertex 9009 3.20785 17.9361 -0.626065 {normal=(0.735077 -0.677553 0.0241569)} Vertex 9010 3.20806 -0.834043 3.86842 Vertex 9011 3.20806 0.583956 3.86844 Vertex 9012 3.20811 19.216 -0.497212 {normal=(0.812735 0.0175659 -0.582368)} Vertex 9013 3.20906 17.7053 0.200731 {normal=(0.428924 -0.397706 -0.811082)} Vertex 9014 3.20936 17.934 -0.452032 {normal=(0.827675 -0.532014 0.178651)} Vertex 9015 3.20956 20.6929 0.112191 {normal=(0.264212 0.836938 0.479298)} Vertex 9016 3.21064 18.3519 -0.468369 {normal=(0.932901 0.188248 0.307016)} Vertex 9017 3.21285 20.078 0.001454 {normal=(0.483853 -0.313118 -0.817217)} Vertex 9018 3.21291 19.9002 -0.072314 {normal=(0.458016 0.344923 0.819298)} Vertex 9019 3.21461 19.1638 -1.3917 {normal=(-0.387169 -0.0452872 -0.920896)} Vertex 9020 3.21729 -41.1654 -3.02543 Vertex 9021 3.22026 18.2461 -0.939277 {normal=(0.837172 -0.342091 -0.426752)} Vertex 9022 3.22145 18.1171 -0.85148 {normal=(0.862517 -0.233374 -0.449001)} Vertex 9023 3.22156 18.7472 0.985109 {normal=(0.733411 0.193771 0.651584)} Vertex 9024 3.22195 18.3658 0.835335 {normal=(0.984082 -0.061239 0.166832)} Vertex 9025 3.22244 -19.9758 -7.85713 Vertex 9026 3.22269 6.2201 5.13146 {normal=(0.0423583 0.0509262 0.997804)} Vertex 9027 3.22338 17.8191 0.617218 {normal=(0.727369 -0.424328 0.539334)} Vertex 9028 3.22348 18.5006 -0.627535 {normal=(0.963943 0.117158 0.238929)} Vertex 9029 3.22373 20.0411 -1.29254 {normal=(0.803031 -0.531789 0.268966)} Vertex 9030 3.22407 -41.3635 -1.97742 Vertex 9031 3.22462 18.3757 -1.03901 {normal=(0.783701 -0.399972 -0.475221)} Vertex 9032 3.22517 18.8626 -0.765079 {normal=(0.691018 0.431812 0.579683)} Vertex 9033 3.2257 19.3037 -0.060854 {normal=(0.564332 -0.344163 0.750387)} Vertex 9034 3.22673 20.0038 -1.07902 {normal=(0.0347402 0.757925 -0.651416)} Vertex 9035 3.22837 18.4427 -0.629277 {normal=(0.981416 0.126149 0.144603)} Vertex 9036 3.22858 20.1523 -0.853471 {normal=(0.283042 0.866354 -0.411483)} Vertex 9037 3.22975 17.9887 -0.775618 {normal=(0.85752 -0.35494 -0.372394)} Vertex 9038 3.2301 20.2183 -0.046999 {normal=(0.500948 -0.587783 -0.635265)} Vertex 9039 3.23032 18.6704 -1.28805 {normal=(0.311845 -0.430206 -0.847157)} Vertex 9040 3.2304 18.4222 0.376823 {normal=(0.992124 0.0295002 -0.121734)} Vertex 9041 3.23082 18.1486 -0.399648 {normal=(0.932977 0.0808951 0.350728)} Vertex 9042 3.23115 19.4294 -1.38958 {normal=(-0.37578 0.103865 -0.92087)} Vertex 9043 3.23233 18.3163 0.316394 {normal=(0.97988 0.112179 -0.16508)} Vertex 9044 3.23244 18.5834 -0.667633 {normal=(0.9587 0.0612635 0.277743)} Vertex 9045 3.23318 -20.0215 1.78738 {normal=(-0.392397 -0.394878 0.83072)} Vertex 9046 3.23413 18.3686 -0.582123 {normal=(0.978538 0.151492 0.139688)} Vertex 9047 3.23431 18.5274 0.842066 {normal=(0.984929 -0.0997582 0.141292)} Vertex 9048 3.23526 18.5521 0.381914 {normal=(0.984546 -0.088209 -0.151292)} Vertex 9049 3.23554 18.5382 -0.743518 {normal=(0.998089 -0.032106 0.0528036)} Vertex 9050 3.23592 12.9219 -5.0927 Vertex 9051 3.2365 19.6273 -0.492515 {normal=(0.924326 -0.380991 -0.0216384)} Vertex 9052 3.23657 19.6928 -1.34058 {normal=(-0.297807 0.307765 -0.903655)} Vertex 9053 3.23752 18.4455 -0.722854 {normal=(0.995334 0.041327 0.0871971)} Vertex 9054 3.23756 18.2067 0.261209 {normal=(0.967751 0.1334 -0.213686)} Vertex 9055 3.23792 18.517 -0.866352 {normal=(0.998149 0.013861 0.0592173)} Vertex 9056 3.23886 19.5187 -0.424634 {normal=(0.686917 -0.177694 -0.704677)} Vertex 9057 3.23893 18.2522 0.72887 {normal=(0.991185 -0.00468415 0.132402)} Vertex 9058 3.24078 18.6121 -0.823511 {normal=(0.995182 -0.0935663 0.0292885)} Vertex 9059 3.2411 17.6776 0.455791 {normal=(0.688777 -0.575187 0.4413)} Vertex 9060 3.24146 18.46 -0.787334 {normal=(0.998077 0.0470109 0.0404085)} Vertex 9061 3.24165 19.8402 0.791473 {normal=(0.667571 0.117139 0.735274)} Vertex 9062 3.24321 18.5113 -0.918858 {normal=(0.987964 0.0127638 0.154155)} Vertex 9063 3.24608 18.0934 0.211268 {normal=(0.936764 0.107241 -0.333124)} Vertex 9064 3.24656 -21.4863 0.859684 {normal=(-0.336975 -0.677849 0.653428)} Vertex 9065 3.24669 18.3338 -0.761522 {normal=(0.999148 0.0327068 0.0251568)} Vertex 9066 3.24672 17.9756 -0.624762 {normal=(0.89559 -0.444301 -0.0226989)} Vertex 9067 3.24686 19.0948 -0.870731 {normal=(0.253943 -0.2811 0.925471)} Vertex 9068 3.24692 18.7059 0.331665 {normal=(0.963056 -0.145074 -0.226883)} Vertex 9069 3.24715 18.027 -0.46577 {normal=(0.966416 -0.0938912 0.239218)} Vertex 9070 3.24729 18.9352 -0.847878 {normal=(0.596029 0.368507 0.713409)} Vertex 9071 3.2475 19.067 -0.231317 {normal=(0.706986 -0.614641 0.349839)} Vertex 9072 3.24785 20.3084 -0.163413 {normal=(0.52418 -0.793403 -0.309431)} Vertex 9073 3.25061 17.6113 0.31685 {normal=(0.659247 -0.748961 -0.0667141)} Vertex 9074 3.25073 19.1611 -0.407207 {normal=(0.880416 -0.273269 -0.387546)} Vertex 9075 3.25101 19.8722 -1.26568 {normal=(-0.183718 0.607059 -0.773128)} Vertex 9076 3.25106 18.5234 -1.13337 {normal=(0.796331 -0.430959 -0.424419)} Vertex 9077 3.25132 18.7033 -0.94206 {normal=(0.978549 -0.0575373 0.197817)} Vertex 9078 3.25136 19.289 -0.439375 {normal=(0.770243 0.0366268 -0.636698)} Vertex 9079 3.2521 19.3208 -0.677197 {normal=(0.446558 -0.67885 0.582879)} Vertex 9080 3.25217 19.4519 -0.01768 {normal=(0.51913 -0.208908 0.828771)} Vertex 9081 3.25221 -27.8381 -1.14416 Vertex 9082 3.25243 18.7192 -0.890591 {normal=(0.988207 -0.150252 -0.0295298)} Vertex 9083 3.25278 18.3215 -0.844462 {normal=(0.999059 -0.0356643 -0.0246669)} Vertex 9084 3.25322 -34.289 -3.32258 Vertex 9085 3.25432 18.1654 -0.513402 {normal=(0.98648 0.0690641 0.14862)} Vertex 9086 3.25452 19.0126 -0.883095 {normal=(0.413698 0.0538465 0.90882)} Vertex 9087 3.2546 18.2329 -0.732831 {normal=(0.998 0.0443508 -0.0450527)} Vertex 9088 3.25498 20.1885 -1.04436 {normal=(0.737754 -0.636647 0.224499)} Vertex 9089 3.25524 18.6909 -0.749573 {normal=(0.971043 0.00572776 0.238836)} Vertex 9090 3.25578 19.092 -0.303671 {normal=(0.886994 -0.439544 -0.141572)} Vertex 9091 3.256 -45.027 -2.26575 Vertex 9092 3.25607 20.2211 -1.40764 {normal=(0.976019 -0.0896867 -0.198352)} Vertex 9093 3.2563 18.8468 0.287083 {normal=(0.937123 -0.162411 -0.308907)} Vertex 9094 3.25732 -3.67004 3.46626 Vertex 9095 3.25733 -44.3833 -2.26356 Vertex 9096 3.25743 18.1049 0.606018 {normal=(0.992583 0.00410407 0.121501)} Vertex 9097 3.25776 20.1259 0.66716 {normal=(0.677261 0.344446 0.650134)} Vertex 9098 3.25808 18.3157 -0.896969 {normal=(0.982397 -0.139552 -0.124183)} Vertex 9099 3.25914 17.9817 0.180115 {normal=(0.875266 0.0267443 -0.482901)} Vertex 9100 3.25914 18.0291 -0.702485 {normal=(0.958395 -0.255499 -0.127278)} Vertex 9101 3.25985 20.1018 -0.226386 {normal=(0.622541 0.58038 0.524979)} Vertex 9102 3.2603 18.0805 -0.543494 {normal=(0.994419 -0.0456276 0.0951291)} Vertex 9103 3.26057 18.148 -0.76292 {normal=(0.966019 0.0510745 -0.253373)} Vertex 9104 3.26264 18.4369 -0.997359 {normal=(0.986043 -0.150952 -0.070237)} Vertex 9105 3.26315 18.6391 -0.98018 {normal=(0.966564 -0.0534938 0.250783)} Vertex 9106 3.2634 18.9747 0.248166 {normal=(0.906954 -0.116445 -0.404815)} Vertex 9107 3.26492 19.6565 -0.536927 {normal=(0.905034 -0.372266 0.205747)} Vertex 9108 3.26608 20.3483 -0.347785 {normal=(0.584329 -0.809538 -0.0566413)} Vertex 9109 3.26634 18.8642 -0.988546 {normal=(0.944258 -0.0533093 0.324861)} Vertex 9110 3.26702 19.1725 0.226651 {normal=(0.898647 -0.0347634 -0.437294)} Vertex 9111 3.26718 19.4405 0.222538 {normal=(0.915517 -0.00838819 -0.402192)} Vertex 9112 3.26813 18.9132 0.870588 {normal=(0.732271 0.360244 0.57793)} Vertex 9113 3.26852 19.5575 -0.540063 {normal=(0.800048 -0.123671 0.587051)} Vertex 9114 3.27049 18.8595 -0.944758 {normal=(0.96294 -0.200686 -0.1802)} Vertex 9115 3.27103 19.6813 0.218313 {normal=(0.941463 -0.0223088 -0.336379)} Vertex 9116 3.27163 19.5872 0.758989 {normal=(0.733782 -0.00733129 0.679345)} Vertex 9117 3.27175 20.2887 -0.800189 {normal=(0.696788 -0.696139 0.172852)} Vertex 9118 3.27233 19.1711 -0.837656 {normal=(0.256974 -0.556214 0.79031)} Vertex 9119 3.27259 19.1606 -0.173256 {normal=(0.71112 -0.483079 0.510825)} Vertex 9120 3.2727 19.6163 -0.436342 {normal=(0.608236 -0.374953 -0.699614)} Vertex 9121 3.27332 19.4848 -0.570497 {normal=(0.740459 -0.263975 0.618092)} Vertex 9122 3.27405 20.3417 -0.560044 {normal=(0.64559 -0.759059 0.0839287)} Vertex 9123 3.27528 -27.7529 -1.31757 Vertex 9124 3.27573 18.8938 -1.35787 {normal=(0.329079 -0.269036 -0.905167)} Vertex 9125 3.27602 18.737 0.749067 {normal=(0.986503 -0.13495 0.0927429)} Vertex 9126 3.27702 20.959 -0.941135 {normal=(0.676758 0.734943 0.0431032)} Vertex 9127 3.27743 17.924 0.466778 {normal=(0.99214 0.00666237 0.124958)} Vertex 9128 3.27859 19.8951 0.213979 {normal=(0.959947 -0.0871654 -0.266279)} Vertex 9129 3.27872 18.7942 -0.825307 {normal=(0.980489 -0.0122723 0.196189)} Vertex 9130 3.27945 20.2049 -0.651923 {normal=(0.289168 0.904059 -0.314737)} Vertex 9131 3.28152 -40.8857 -5.35049 Vertex 9132 3.28199 19.3934 -0.621834 {normal=(0.639855 -0.459789 0.615776)} Vertex 9133 3.28227 18.5694 -1.06084 {normal=(0.979474 -0.198014 0.037694)} Vertex 9134 3.28301 20.7208 -1.26632 {normal=(0.963939 0.125512 -0.234668)} Vertex 9135 3.28534 19.6015 -0.007041 {normal=(0.489027 0.00735673 0.872238)} Vertex 9136 3.28659 19.2894 -0.733335 {normal=(0.334136 -0.638492 0.693311)} Vertex 9137 3.29058 -9.97451 -6.16875 {normal=(0.248293 0.164952 -0.954537)} Vertex 9138 3.29085 19.0065 -1.01382 {normal=(0.930237 -0.110477 0.349934)} Vertex 9139 3.29141 19.3723 -0.390593 {normal=(0.734374 -0.0403916 -0.677542)} Vertex 9140 3.29163 19.6771 -0.597263 {normal=(0.922295 -0.319578 0.217352)} Vertex 9141 3.29215 -9.32543 3.74982 {normal=(0.0776773 -0.0919342 0.992731)} Vertex 9142 3.29243 19.0163 -0.9721 {normal=(0.943519 -0.178239 -0.27929)} Vertex 9143 3.29278 19.5869 -0.580943 {normal=(0.892937 0.0172776 0.44985)} Vertex 9144 3.29305 -28.3492 -1.17067 {normal=(-0.471589 -0.0736988 0.878733)} Vertex 9145 3.29496 18.8487 -1.02179 {normal=(0.863538 -0.0264199 0.503591)} Vertex 9146 3.29538 19.358 0.730354 {normal=(0.762307 -0.00679753 0.647179)} Vertex 9147 3.29566 20.9068 -0.567151 {normal=(0.599848 0.790361 0.124549)} Vertex 9148 3.29581 20.0943 0.159149 {normal=(0.944419 -0.209431 -0.253399)} Vertex 9149 3.2962 19.2402 -0.356078 {normal=(0.908307 -0.22073 -0.355326)} Vertex 9150 3.29622 17.7784 0.390975 {normal=(0.982857 -0.0866708 0.162725)} Vertex 9151 3.29958 18.6893 -1.22236 {normal=(0.830502 -0.374517 -0.412315)} Vertex 9152 3.30051 19.5509 -0.850304 {normal=(0.999903 -0.0101118 -0.00954382)} Vertex 9153 3.30268 19.1884 -0.246428 {normal=(0.933549 -0.358379 0.00718181)} Vertex 9154 3.30288 18.8933 -0.894838 {normal=(0.991976 -0.0515477 0.115436)} Vertex 9155 3.30368 19.6885 -0.656154 {normal=(0.926332 -0.344261 0.152952)} Vertex 9156 3.30381 19.0042 0.752311 {normal=(0.838543 0.158158 0.521375)} Vertex 9157 3.30399 19.8511 0.582915 {normal=(0.991342 0.0295807 0.127929)} Vertex 9158 3.30403 17.7149 0.266997 {normal=(0.896527 -0.280128 -0.343172)} Vertex 9159 3.30563 19.4598 -0.898085 {normal=(0.990377 0.123133 -0.0631752)} Vertex 9160 3.30575 19.1711 -1.40725 {normal=(0.295678 -0.109627 -0.948977)} Vertex 9161 3.30642 19.3036 -0.108023 {normal=(0.697208 -0.381042 0.607213)} Vertex 9162 3.30647 18.7891 -1.06206 {normal=(0.942396 -0.0945195 0.320869)} Vertex 9163 3.30729 19.6107 -0.8046 {normal=(0.989379 -0.13392 0.0565127)} Vertex 9164 3.30747 19.6573 -0.759032 {normal=(0.954562 -0.269033 0.128188)} Vertex 9165 3.30904 -45.0363 -3.47801 Vertex 9166 3.30975 18.8939 0.655959 {normal=(0.987213 -0.150554 0.0523885)} Vertex 9167 3.31011 20.3775 -1.12855 {normal=(0.986586 -0.126983 -0.102582)} Vertex 9168 3.31047 -45.271 -5.4912 Vertex 9169 3.31117 19.6079 -0.634217 {normal=(0.958764 0.113872 0.260395)} Vertex 9170 3.31172 19.7136 -0.509505 {normal=(0.582015 -0.796591 -0.163405)} Vertex 9171 3.3129 19.1524 0.705567 {normal=(0.821715 0.0563601 0.567104)} Vertex 9172 3.31291 20.1997 -0.406052 {normal=(0.514237 0.726424 0.455925)} Vertex 9173 3.31542 19.6863 -0.449782 {normal=(0.52819 -0.654508 -0.540957)} Vertex 9174 3.31571 4.52821 4.72588 Vertex 9175 3.31649 20.8115 -0.223744 {normal=(0.606592 0.761698 0.227732)} Vertex 9176 3.31699 19.7504 -0.049569 {normal=(0.472796 0.263566 0.840831)} Vertex 9177 3.31734 19.51 -0.62784 {normal=(0.897047 -0.0438864 0.439751)} Vertex 9178 3.31824 19.1896 -0.972614 {normal=(0.960627 -0.0678471 -0.26943)} Vertex 9179 3.3185 20.1085 0.484315 {normal=(0.990291 -0.0165515 0.138022)} Vertex 9180 3.31907 19.6195 -0.689574 {normal=(0.983239 0.177323 0.0424099)} Vertex 9181 3.31995 20.4445 0.386052 {normal=(0.682521 0.484748 0.546977)} Vertex 9182 3.32008 -35.0194 -5.7129 {normal=(-0.519016 -0.160102 -0.839637)} Vertex 9183 3.32032 19.189 -1.02231 {normal=(0.910729 -0.119098 0.39546)} Vertex 9184 3.3224 19.6096 0.561051 {normal=(0.997414 0.0435909 0.0571428)} Vertex 9185 3.32264 19.3375 -0.947944 {normal=(0.982833 0.0912405 -0.160359)} Vertex 9186 3.32271 20.279 0.053825 {normal=(0.919863 -0.318918 -0.228348)} Vertex 9187 3.32297 19.4885 -0.958001 {normal=(0.834322 -0.203072 0.512512)} Vertex 9188 3.32357 18.9938 -1.0527 {normal=(0.857503 -0.0854242 0.507338)} Vertex 9189 3.32496 18.7289 -1.14703 {normal=(0.977085 -0.209932 0.0351336)} Vertex 9190 3.32598 19.5884 -0.908457 {normal=(0.779913 -0.406131 0.476228)} Vertex 9191 3.3267 19.5716 -0.735543 {normal=(0.979211 0.189253 -0.0730033)} Vertex 9192 3.32775 19.4336 -1.40529 {normal=(0.264067 0.076761 -0.961445)} Vertex 9193 3.32832 19.0231 -0.92752 {normal=(0.903879 -0.368522 -0.217242)} Vertex 9194 3.33005 19.538 -0.676623 {normal=(0.976109 0.125504 0.177367)} Vertex 9195 3.33037 7.39789 4.98044 {normal=(0.0995418 0.340179 0.935077)} Vertex 9196 3.33103 19.3496 -1.0037 {normal=(0.874757 -0.119286 0.469651)} Vertex 9197 3.33105 19.1166 -0.892787 {normal=(0.346231 -0.227583 0.910126)} Vertex 9198 3.33195 20.0045 -1.05971 {normal=(0.292974 0.795873 -0.529861)} Vertex 9199 3.33259 19.7311 -0.580576 {normal=(0.557081 -0.830076 0.0252027)} Vertex 9200 3.33302 19.4688 -0.364806 {normal=(0.698805 -0.184882 -0.691007)} Vertex 9201 3.33314 19.185 -0.854631 {normal=(0.574997 -0.480364 0.662291)} Vertex 9202 3.3355 18.998 0.562747 {normal=(0.992845 -0.114292 -0.0345723)} Vertex 9203 3.33556 19.5091 -0.782048 {normal=(0.953517 0.23884 -0.183742)} Vertex 9204 3.3358 19.3792 0.541624 {normal=(0.99932 0.0364207 0.00570827)} Vertex 9205 3.33765 20.0603 -0.292809 {normal=(0.667762 0.53437 0.518211)} Vertex 9206 3.33803 19.3354 -0.305583 {normal=(0.922639 -0.23531 -0.305558)} Vertex 9207 3.33861 19.426 -0.677616 {normal=(0.875378 -0.177764 0.44957)} Vertex 9208 3.33883 18.9074 -1.29281 {normal=(0.853173 -0.243691 -0.461205)} Vertex 9209 3.33906 19.0298 -0.902933 {normal=(0.757618 -0.518553 0.396381)} Vertex 9210 3.33912 19.4511 -0.073519 {normal=(0.71528 -0.251229 0.652118)} Vertex 9211 3.33915 20.792 -0.926346 {normal=(0.978716 0.182315 -0.0942187)} Vertex 9212 3.33944 20.2253 -0.55143 {normal=(0.502995 0.797437 -0.333302)} Vertex 9213 3.33952 20.673 0.089084 {normal=(0.648137 0.658283 0.382859)} Vertex 9214 3.34003 20.4054 -0.106043 {normal=(0.922055 -0.359743 -0.142825)} Vertex 9215 3.34006 19.6494 -0.855067 {normal=(0.693294 -0.600019 0.39915)} Vertex 9216 3.34076 20.4686 -0.848672 {normal=(0.985127 -0.169004 -0.0310152)} Vertex 9217 3.34174 19.6814 -1.352 {normal=(0.292277 0.314502 -0.90314)} Vertex 9218 3.34314 19.8717 -1.23681 {normal=(0.324448 0.630682 -0.704963)} Vertex 9219 3.34387 19.3142 -0.1896 {normal=(0.933661 -0.329211 0.14106)} Vertex 9220 3.34404 19.7249 -0.669176 {normal=(0.562394 -0.81075 0.162471)} Vertex 9221 3.34418 19.1598 0.524635 {normal=(0.998928 -0.0077284 -0.0456449)} Vertex 9222 3.34608 19.6949 -0.775307 {normal=(0.612029 -0.732986 0.296904)} Vertex 9223 3.34708 19.4244 -0.834293 {normal=(0.919773 0.276011 -0.278989)} Vertex 9224 3.34714 19.8988 -0.145266 {normal=(0.5015 0.457412 0.734351)} Vertex 9225 3.3474 19.3034 -0.75031 {normal=(0.69045 -0.454704 0.562604)} Vertex 9226 3.34754 18.9691 -1.11917 {normal=(0.954618 -0.119977 0.272599)} Vertex 9227 3.34778 20.4735 -0.320456 {normal=(0.94927 -0.310136 -0.0519901)} Vertex 9228 3.34802 20.4945 -0.568 {normal=(0.973034 -0.230492 -0.00883252)} Vertex 9229 3.34826 19.4675 -0.724485 {normal=(0.984157 0.142448 0.105565)} Vertex 9230 3.35137 20.0952 -0.875498 {normal=(0.349966 0.848066 -0.397879)} Vertex 9231 3.3531 0.63495 4.33226 Vertex 9232 3.35486 19.3589 -0.73084 {normal=(0.855963 -0.255923 0.449255)} Vertex 9233 3.35501 19.1837 -0.923355 {normal=(0.885016 -0.0369946 -0.464088)} Vertex 9234 3.35512 20.7659 -0.576641 {normal=(0.982233 0.187609 -0.0046024)} Vertex 9235 3.35671 10.0236 3.24507 Vertex 9236 3.35745 -38.6949 -1.99616 {normal=(-0.850261 0.0157169 0.526126)} Vertex 9237 3.35924 -37.8189 -1.99606 {normal=(-0.821033 -0.0527624 0.568437)} Vertex 9238 3.36062 13.1817 -4.29178 Vertex 9239 3.36124 19.1818 -1.07244 {normal=(0.859337 -0.136359 0.492896)} Vertex 9240 3.36127 19.3175 -0.89228 {normal=(0.91164 0.157946 -0.379427)} Vertex 9241 3.36247 20.2371 -0.514588 {normal=(0.654487 0.732603 -0.186922)} Vertex 9242 3.36276 18.9325 -1.21324 {normal=(0.985397 -0.167869 -0.0285024)} Vertex 9243 3.36298 19.4072 -0.77675 {normal=(0.988784 0.147465 0.0236826)} Vertex 9244 3.36424 4.69447 4.91997 {normal=(0.0754536 -0.536852 0.840296)} Vertex 9245 3.36593 20.3819 0.265248 {normal=(0.993571 -0.00433062 0.113128)} Vertex 9246 3.3662 19.184 -0.896428 {normal=(0.973623 -0.18744 0.130094)} Vertex 9247 3.3669 -40.3129 -1.97798 Vertex 9248 3.36829 19.2524 -0.858272 {normal=(0.976422 -0.193525 0.0956492)} Vertex 9249 3.36882 19.1776 -1.34473 {normal=(0.834858 -0.145398 -0.530916)} Vertex 9250 3.36948 -7.48904 -5.39941 {normal=(0.330109 0.283453 -0.900379)} Vertex 9251 3.36974 20.6943 -0.262411 {normal=(0.98692 0.160207 0.0179357)} Vertex 9252 3.3707 19.6031 -0.069744 {normal=(0.728112 -0.0790573 0.680884)} Vertex 9253 3.37404 13.2127 -4.47829 {normal=(-0.532135 0.841598 0.0924428)} Vertex 9254 3.37575 19.3079 -0.838801 {normal=(0.999846 -0.0174493 0.00175235)} Vertex 9255 3.37617 19.5784 -0.362015 {normal=(0.666785 -0.347079 -0.659496)} Vertex 9256 3.37826 20.0217 -0.291958 {normal=(0.554793 0.6231 0.551318)} Vertex 9257 3.3793 20.1695 -0.505619 {normal=(0.938879 0.307382 -0.154995)} Vertex 9258 3.38073 19.4455 -0.276528 {normal=(0.927628 -0.279813 -0.247409)} Vertex 9259 3.38198 19.449 -0.159801 {normal=(0.930697 -0.279784 0.235634)} Vertex 9260 3.38231 3.46415 -4.7463 Vertex 9261 3.38301 20.5772 0.01634 {normal=(0.994288 0.0881931 0.0601073)} Vertex 9262 3.38636 19.1789 -1.15149 {normal=(0.965634 -0.149771 0.212414)} Vertex 9263 3.38642 19.354 -1.05955 {normal=(0.833157 -0.19277 0.518353)} Vertex 9264 3.38825 -19.9735 -8.16416 Vertex 9265 3.39269 -43.2833 -2.35691 Vertex 9266 3.39569 19.1802 -1.25948 {normal=(0.982059 -0.152699 -0.11065)} Vertex 9267 3.39909 19.5103 -1.01404 {normal=(0.776142 -0.302714 0.553144)} Vertex 9268 3.39963 3.4923 -4.51652 Vertex 9269 3.40005 19.4204 -1.34626 {normal=(0.800478 -0.0350477 -0.598337)} Vertex 9270 3.40139 20.1436 -0.684157 {normal=(0.498122 0.845767 -0.191188)} Vertex 9271 3.40174 -41.9441 -2.39168 Vertex 9272 3.40234 20.1812 -0.468777 {normal=(0.993605 0.0990242 0.054261)} Vertex 9273 3.40917 0.827907 -4.44123 Vertex 9274 3.41036 20.1192 -0.489645 {normal=(0.63463 0.721837 0.276035)} Vertex 9275 3.41043 19.7473 -0.114119 {normal=(0.71638 0.129634 0.685562)} Vertex 9276 3.41196 19.6215 -0.956503 {normal=(0.726723 -0.479373 0.492011)} Vertex 9277 3.41337 -34.3175 -4.1362 Vertex 9278 3.41702 19.5928 -0.157033 {normal=(0.925549 -0.212306 0.313504)} Vertex 9279 3.41963 19.3706 -1.14479 {normal=(0.961973 -0.185942 0.200086)} Vertex 9280 3.42355 19.6544 -0.368205 {normal=(0.674169 -0.509963 -0.53426)} Vertex 9281 3.42428 19.5706 -0.268911 {normal=(0.930924 -0.332029 -0.152108)} Vertex 9282 3.42503 19.6876 -0.886943 {normal=(0.686544 -0.627676 0.366988)} Vertex 9283 3.42505 -39.9594 -5.26247 Vertex 9284 3.43067 19.3994 -1.25943 {normal=(0.976686 -0.141881 -0.161102)} Vertex 9285 3.43229 19.7344 -0.795844 {normal=(0.659196 -0.710847 0.245269)} Vertex 9286 3.43252 19.6357 -1.2974 {normal=(0.77144 0.144877 -0.619589)} Vertex 9287 3.43317 19.7583 -0.498676 {normal=(0.574059 -0.781365 -0.244796)} Vertex 9288 3.43376 19.762 -0.68321 {normal=(0.626967 -0.769266 0.123054)} Vertex 9289 3.43405 19.77 -0.584154 {normal=(0.597975 -0.800799 -0.0338753)} Vertex 9290 3.44417 -21.5941 -7.10822 Vertex 9291 3.44686 19.7339 -0.431751 {normal=(0.635705 -0.653926 -0.410194)} Vertex 9292 3.44734 19.5442 -1.09907 {normal=(0.942771 -0.245474 0.225665)} Vertex 9293 3.45335 10.0753 2.95122 Vertex 9294 3.45601 3.40753 4.78684 {normal=(0.293892 0.0412806 0.954947)} Vertex 9295 3.45625 19.8111 -1.19399 {normal=(0.733713 0.393632 -0.553822)} Vertex 9296 3.4566 -27.5189 -0.950573 Vertex 9297 3.45685 -12.2219 -6.38517 Vertex 9298 3.4583 19.8838 -0.206647 {normal=(0.698725 0.363645 0.616073)} Vertex 9299 3.45873 19.7236 -0.197696 {normal=(0.928564 -0.142528 0.342718)} Vertex 9300 3.46189 19.6792 -0.300301 {normal=(0.921972 -0.377453 -0.0865866)} Vertex 9301 3.46772 19.59 -1.21309 {normal=(0.978832 -0.0987632 -0.179256)} Vertex 9302 3.46918 1.49115 -4.4775 Vertex 9303 3.46941 19.6737 -1.02854 {normal=(0.919439 -0.332899 0.209311)} Vertex 9304 3.4695 -6.42517 3.66297 {normal=(0.138658 0.0758706 0.98743)} Vertex 9305 3.47124 19.9464 -1.03603 {normal=(0.683006 0.583835 -0.438908)} Vertex 9306 3.4737 -38.6912 -5.27822 {normal=(-0.667697 -0.0104117 -0.744361)} Vertex 9307 3.47549 -37.8152 -5.27795 {normal=(-0.605878 -0.0765463 -0.791866)} Vertex 9308 3.48275 -44.7921 -2.35031 Vertex 9309 3.48418 -25.5847 -0.732716 Vertex 9310 3.48585 19.7593 -0.933209 {normal=(0.902755 -0.398045 0.163077)} Vertex 9311 3.4861 20.0354 -0.86474 {normal=(0.695366 0.652345 -0.301515)} Vertex 9312 3.48872 19.9889 -0.336631 {normal=(0.71298 0.549093 0.436069)} Vertex 9313 3.49287 -45.271 -2.27047 Vertex 9314 3.49356 19.7715 -0.370696 {normal=(0.91541 -0.389251 -0.102511)} Vertex 9315 3.49492 19.817 -0.819425 {normal=(0.900894 -0.418348 0.115647)} Vertex 9316 3.4966 19.8468 -0.68719 {normal=(0.900532 -0.432085 0.0484179)} Vertex 9317 3.49668 -33.7243 -6.11202 Vertex 9318 3.49834 19.7451 -1.12457 {normal=(0.983655 -0.0192219 -0.179035)} Vertex 9319 3.49891 -34.0953 -5.99427 {normal=(-0.373671 -0.229814 -0.898641)} Vertex 9320 3.50044 19.8507 -0.567278 {normal=(0.899758 -0.432995 -0.0543168)} Vertex 9321 3.50083 20.0782 -0.680108 {normal=(0.757355 0.648002 -0.0806652)} Vertex 9322 3.50171 20.0627 -0.504071 {normal=(0.757133 0.624662 0.191173)} Vertex 9323 3.50641 19.8286 -0.459689 {normal=(0.906751 -0.403103 -0.123738)} Vertex 9324 3.50711 19.8414 -0.28179 {normal=(0.957873 -0.0291975 0.285704)} Vertex 9325 3.52162 1.25598 4.70198 {normal=(0.404929 -0.281612 0.869901)} Vertex 9326 3.52254 19.8646 -0.993864 {normal=(0.987285 0.0532697 -0.149766)} Vertex 9327 3.52384 -25.9814 -0.749304 Vertex 9328 3.53144 19.9245 -0.392541 {normal=(0.987675 0.0665358 0.141672)} Vertex 9329 3.53173 19.9732 -0.529949 {normal=(0.996668 0.0758053 0.0301127)} Vertex 9330 3.53257 19.9792 -0.681118 {normal=(0.997572 0.0665736 -0.0204496)} Vertex 9331 3.53395 19.9427 -0.846049 {normal=(0.992637 0.0849423 -0.0863481)} Vertex 9332 3.53528 10.2807 3.43794 Vertex 9333 3.54125 -41.3936 -2.08358 Vertex 9334 3.54276 -24.2452 -0.55738 Vertex 9335 3.5623 -27.495 -1.18471 Vertex 9336 3.56584 -34.2877 -2.43025 Vertex 9337 3.56937 -44.3406 -2.3818 Vertex 9338 3.57421 -40.9441 -5.20574 Vertex 9339 3.57885 13.295 -4.76504 Vertex 9340 3.59208 -33.5417 -5.98628 Vertex 9341 3.59248 -21.6048 -7.39691 Vertex 9342 3.59631 2.28685 4.8478 {normal=(0.397747 -0.0529736 0.915965)} Vertex 9343 3.60217 -40.4421 -2.18242 Vertex 9344 3.60737 -23.8486 -0.474778 Vertex 9345 3.6139 4.525 -4.61741 Vertex 9346 3.61447 -40.8957 -1.41745 Vertex 9347 3.61548 3.46973 -4.56373 Vertex 9348 3.61705 2.41446 -4.51005 Vertex 9349 3.62736 -22.3367 -6.70651 Vertex 9350 3.63231 -25.8941 -0.975157 Vertex 9351 3.6441 -25.6244 -0.939852 Vertex 9352 3.6505 8.03122 -5.81563 {normal=(0.221029 -0.164311 -0.961326)} Vertex 9353 3.67097 5.38223 -4.87526 {normal=(0.346697 -0.218094 -0.91227)} Vertex 9354 3.67398 -22.299 -6.45561 Vertex 9355 3.67462 -22.311 -0.27351 Vertex 9356 3.68882 4.7136 -4.75333 {normal=(0.354503 -0.405132 -0.842731)} Vertex 9357 3.70323 10.189 3.55257 Vertex 9358 3.70822 -24.1585 -0.747953 Vertex 9359 3.71774 -40.0178 -5.11773 Vertex 9360 3.71962 -45.0361 -2.35503 Vertex 9361 3.72002 -23.8888 -0.712648 Vertex 9362 3.75965 -23.8831 -6.40122 Vertex 9363 3.76544 -13.7685 -6.78005 Vertex 9364 3.77203 -30.3158 -1.16317 {normal=(-0.315367 -0.0458355 0.947862)} Vertex 9365 3.78988 -24.2794 -6.35547 Vertex 9366 3.79003 -22.2879 -0.503097 Vertex 9367 3.8108 -23.9087 -6.14291 Vertex 9368 3.81164 4.70619 -4.6926 {normal=(0.468109 -0.429581 -0.772227)} Vertex 9369 3.82627 -26.904 -0.758538 Vertex 9370 3.8273 -32.2118 -1.24345 {normal=(-0.321282 -0.0662716 0.944662)} Vertex 9371 3.83012 -24.1785 -6.11155 Vertex 9372 3.83353 -33.539 -6.08826 {normal=(-0.357653 -0.621057 -0.697404)} Vertex 9373 3.83364 13.0827 -4.93915 Vertex 9374 3.84228 9.94833 3.54526 Vertex 9375 3.84438 9.77242 3.41274 Vertex 9376 3.84974 -41.0249 -1.62188 Vertex 9377 3.85659 -26.8085 -0.961159 Vertex 9378 3.86232 -32.2322 -6.74542 {normal=(-0.424648 -0.148288 -0.893132)} Vertex 9379 3.8664 -39.9511 -1.29076 Vertex 9380 3.87485 -27.3481 -0.748987 {normal=(-0.452165 -0.047622 0.890662)} Vertex 9381 3.88568 -25.6172 -6.19991 Vertex 9382 3.90467 -3.66993 -3.61716 Vertex 9383 3.90599 -33.5211 -1.25683 {normal=(-0.304019 -0.343974 0.8884)} Vertex 9384 3.91627 -26.0134 -6.15422 Vertex 9385 3.93069 -35.0198 -1.15539 {normal=(-0.479427 -0.0766423 0.874229)} Vertex 9386 3.93498 -25.6428 -5.94127 Vertex 9387 3.95429 -25.9126 -5.9099 Vertex 9388 3.95864 -38.6917 -1.41269 {normal=(-0.517444 0.038152 0.854866)} Vertex 9389 3.96043 -37.8157 -1.41258 {normal=(-0.497577 -0.0439861 0.866304)} Vertex 9390 3.96221 -42.0763 -0.571919 {normal=(-0.882049 0.0116378 0.471014)} Vertex 9391 3.96711 12.9869 -4.95245 {normal=(0.235228 0.395193 -0.88797)} Vertex 9392 3.99554 -30.3357 -6.55192 {normal=(-0.429595 0.185367 -0.883791)} Vertex 9393 4.02625 -27.5494 -5.97562 Vertex 9394 4.06881 -27.5118 -5.72395 Vertex 9395 4.09808 -43.3268 -0.650871 {normal=(-0.867199 -0.169033 0.468395)} Vertex 9396 4.10167 -40.0803 -1.4952 Vertex 9397 4.10425 -40.5012 -0.68469 Vertex 9398 4.10725 -3.71535 -3.40232 Vertex 9399 4.12434 10.3749 -5.79659 {normal=(0.105365 0.115991 -0.987646)} Vertex 9400 4.18597 -2.25193 -3.50615 Vertex 9401 4.18597 -0.833929 -3.50613 Vertex 9402 4.18597 0.584069 -3.50611 Vertex 9403 4.24468 -34.3057 -4.9717 Vertex 9404 4.28453 -43.2549 -6.22179 Vertex 9405 4.29247 -34.2941 -1.83348 Vertex 9406 4.30907 11.8225 2.11012 Vertex 9407 4.33316 -41.9992 -6.18445 Vertex 9408 4.33952 -40.6304 -0.889129 Vertex 9409 4.33972 14.0406 -3.75157 Vertex 9410 4.34243 -3.67003 2.86751 Vertex 9411 4.35581 -3.66993 -3.79357 Vertex 9412 4.35581 -2.25193 -3.79355 Vertex 9413 4.37255 -44.3802 -6.14642 Vertex 9414 4.38725 -0.833926 -3.77448 Vertex 9415 4.38725 0.584073 -3.77446 Vertex 9416 4.40082 -42.2893 0.277072 {normal=(-0.913343 0.0347563 0.405705)} Vertex 9417 4.40451 -40.9968 -5.67094 Vertex 9418 4.41288 -3.66993 -3.30975 Vertex 9419 4.43305 -34.0951 -6.17119 {normal=(-0.0483542 -0.231803 -0.97156)} Vertex 9420 4.43405 -3.68358 2.52432 Vertex 9421 4.44005 -41.2177 0.152154 {normal=(-0.629049 0.442727 0.638975)} Vertex 9422 4.44197 -40.9603 -5.99738 Vertex 9423 4.4437 -45.2711 -5.97899 Vertex 9424 4.44434 -45.027 -0.723774 Vertex 9425 4.44992 -44.4206 -0.710606 {normal=(-0.866145 -0.127529 0.483248)} Vertex 9426 4.467 -45.0273 -6.14099 Vertex 9427 4.46877 12.058 2.31527 Vertex 9428 4.47985 -43.2609 0.242264 {normal=(-0.947994 -0.116773 0.296094)} Vertex 9429 4.50055 14.3583 -3.76364 {normal=(-0.62001 0.784045 -0.0293388)} Vertex 9430 4.50814 -40.1085 -5.58813 Vertex 9431 4.51694 -45.027 2.12598 Vertex 9432 4.53096 -44.2737 2.12728 Vertex 9433 4.53481 -33.5226 -6.19712 Vertex 9434 4.5456 -40.072 -5.91457 Vertex 9435 4.54862 -33.7304 -6.32419 Vertex 9436 4.57663 -6.32902 3.04433 Vertex 9437 4.58172 -43.1962 2.11899 Vertex 9438 4.58375 -38.6912 -5.88253 {normal=(-0.0305187 0.0131984 -0.999447)} Vertex 9439 4.58554 -37.8152 -5.88243 {normal=(-0.00777884 -0.0608838 -0.998115)} Vertex 9440 4.60536 -2.25202 2.72245 Vertex 9441 4.60536 -0.834022 2.72247 Vertex 9442 4.60536 0.583976 2.72249 Vertex 9443 4.6084 -26.5058 -0.367619 Vertex 9444 4.62089 -45.271 -0.75666 Vertex 9445 4.62103 14.3687 -3.97251 Vertex 9446 4.63256 11.9667 2.40584 Vertex 9447 4.63903 -40.0876 -1.3413 Vertex 9448 4.64987 -26.399 -0.576924 Vertex 9449 4.65329 -41.4931 0.595577 {normal=(-0.590252 0.513555 0.622787)} Vertex 9450 4.6581 -45.0271 1.4287 Vertex 9451 4.66416 -35.0191 -6.12998 {normal=(0.0437962 -0.12716 -0.990915)} Vertex 9452 4.66635 -26.8989 -0.309795 {normal=(-0.153826 0.0149265 0.987985)} Vertex 9453 4.67733 2.40024 3.90997 {normal=(0.771404 -0.099737 0.628481)} Vertex 9454 4.67837 1.50848 3.71893 {normal=(0.773506 -0.158611 0.613621)} Vertex 9455 4.68298 -39.838 -1.11674 Vertex 9456 4.68699 -40.5613 -0.806952 Vertex 9457 4.68918 13.0009 1.20876 Vertex 9458 4.70377 5.38122 -4.37494 {normal=(0.605678 -0.319914 -0.728566)} Vertex 9459 4.70385 -44.3783 1.44491 {normal=(-0.993215 -0.000345329 -0.116295)} Vertex 9460 4.72543 -45.271 1.96986 Vertex 9461 4.72778 -44.9304 1.97401 Vertex 9462 4.73094 -40.3117 -0.582392 Vertex 9463 4.73212 -43.2792 1.476 {normal=(-0.996897 0.0787102 0.000562738)} Vertex 9464 4.74967 3.41923 4.05976 {normal=(0.727061 -0.0774096 0.682195)} Vertex 9465 4.75184 -6.32716 2.79893 Vertex 9466 4.76249 -3.67002 2.46685 Vertex 9467 4.76989 -45.027 0.088799 Vertex 9468 4.7753 -38.6884 -1.17131 {normal=(0.145463 0.0332023 0.988806)} Vertex 9469 4.77709 -37.8124 -1.1712 {normal=(0.129176 -0.0555222 0.990066)} Vertex 9470 4.7777 0.890581 3.55255 Vertex 9471 4.77786 11.5497 2.19269 Vertex 9472 4.77974 -44.4204 0.112964 {normal=(-0.977231 -0.0920954 0.191149)} Vertex 9473 4.78895 4.49637 -3.69587 Vertex 9474 4.79302 0.586182 -3.85386 Vertex 9475 4.8025 -7.52484 -4.49775 {normal=(0.649237 0.271932 -0.710313)} Vertex 9476 4.80725 11.7225 2.32642 Vertex 9477 4.8129 -45.027 2.85613 Vertex 9478 4.81614 -44.9388 2.01289 Vertex 9479 4.81891 -0.834026 2.97957 Vertex 9480 4.81891 0.583972 2.97959 Vertex 9481 4.82201 4.43822 4.20956 Vertex 9482 4.82231 -45.271 1.26514 Vertex 9483 4.82477 -44.2895 2.85553 Vertex 9484 4.8256 -3.67003 2.97433 Vertex 9485 4.8256 -2.25203 2.97435 Vertex 9486 4.83434 -43.2387 2.8515 Vertex 9487 4.83678 3.46058 3.89169 Vertex 9488 4.84001 -44.2711 2.01426 Vertex 9489 4.85129 4.58553 4.42604 {normal=(0.252385 -0.654805 0.712413)} Vertex 9490 4.85155 2.48294 3.57381 Vertex 9491 4.8524 1.59846 3.38413 Vertex 9492 4.85666 -43.3244 2.00333 Vertex 9493 4.86296 13.2774 1.37785 Vertex 9494 4.86735 14.194 -4.08115 Vertex 9495 4.88339 -35.0158 -0.892796 {normal=(0.103064 -0.0993502 0.989701)} Vertex 9496 4.89038 4.48092 -3.52633 Vertex 9497 4.8932 0.896571 3.29041 Vertex 9498 4.90062 12.2646 -5.24404 {normal=(0.165844 0.411122 -0.896367)} Vertex 9499 4.92916 -45.271 0.012773 Vertex 9500 4.94121 -42.5676 1.94707 Vertex 9501 4.95323 -11.7906 -5.48958 {normal=(0.56878 0.237885 -0.787337)} Vertex 9502 4.96212 -42.5194 1.60902 {normal=(-0.831553 0.481169 0.277481)} Vertex 9503 4.98179 -7.53615 -4.24421 {normal=(0.583435 0.263903 -0.768088)} Vertex 9504 4.98507 3.41862 3.87127 {normal=(0.221378 -0.248522 0.942989)} Vertex 9505 4.98695 13.9792 -4.02141 {normal=(0.53026 0.467919 -0.707019)} Vertex 9506 4.98869 -9.67015 -5.00347 {normal=(0.672671 0.183522 -0.716821)} Vertex 9507 4.99817 3.2824 -3.74281 {normal=(0.674935 0.121065 -0.727878)} Vertex 9508 5.01211 0.729243 3.07933 Vertex 9509 5.02191 5.24898 4.81932 {normal=(0.309668 -0.270786 0.911472)} Vertex 9510 5.02319 -13.1969 3.10061 Vertex 9511 5.03182 -45.271 2.82578 Vertex 9512 5.03416 -44.9304 2.82993 Vertex 9513 5.04299 -45.0271 3.62325 Vertex 9514 5.04323 -6.28307 2.68218 {normal=(0.526422 0.211056 0.823611)} Vertex 9515 5.05284 -40.8669 -0.040656 {normal=(0.0342295 0.76759 0.640027)} Vertex 9516 5.05968 1.12404 -3.91608 {normal=(0.565329 -0.149123 -0.811274)} Vertex 9517 5.06023 4.48478 -3.39564 Vertex 9518 5.06304 13.1813 1.4141 Vertex 9519 5.06679 -43.2985 3.65831 Vertex 9520 5.06929 14.0353 0.16341 Vertex 9521 5.07721 -44.3565 3.6494 {normal=(-0.922145 0.0289147 0.385761)} Vertex 9522 5.08428 3.27382 -3.63027 {normal=(0.729157 0.178379 -0.660689)} Vertex 9523 5.10154 -45.2712 -5.67839 Vertex 9524 5.10928 -43.3669 2.73583 Vertex 9525 5.11209 -44.9388 2.74304 Vertex 9526 5.11843 -42.8077 1.82997 Vertex 9527 5.13011 6.17703 4.85359 {normal=(0.323825 0.0675048 0.943706)} Vertex 9528 5.13382 -44.2869 2.7425 Vertex 9529 5.14812 2.39902 3.53297 {normal=(0.200896 -0.216941 0.955289)} Vertex 9530 5.14865 1.51228 3.34183 {normal=(0.290066 -0.315543 0.90349)} Vertex 9531 5.15434 7.39397 4.47908 {normal=(0.317988 0.359678 0.87722)} Vertex 9532 5.16278 4.70925 -3.60492 {normal=(0.693481 -0.431135 -0.577241)} Vertex 9533 5.16693 -9.67127 -4.76261 {normal=(0.635177 0.212444 -0.742575)} Vertex 9534 5.17206 12.7691 1.16771 Vertex 9535 5.17381 -11.3275 3.17279 Vertex 9536 5.18126 9.74168 2.96163 {normal=(0.323321 0.474925 0.81848)} Vertex 9537 5.18213 -15.4691 -6.98895 Vertex 9538 5.19304 -33.9544 -6.04996 {normal=(0.298407 -0.282916 -0.911544)} Vertex 9539 5.20261 2.03074 -3.85679 {normal=(0.621437 0.0413723 -0.782371)} Vertex 9540 5.20691 3.27182 -3.51849 {normal=(0.73283 0.180563 -0.656016)} Vertex 9541 5.2152 12.9418 1.30627 Vertex 9542 5.2297 -41.3618 -5.40337 Vertex 9543 5.23414 -45.027 -5.79309 Vertex 9544 5.23547 -44.3783 -5.79089 {normal=(0.603513 -0.0688046 -0.794379)} Vertex 9545 5.24866 -33.3726 -6.10603 Vertex 9546 5.25684 -7.49152 -4.12092 {normal=(0.565728 0.245698 -0.787137)} Vertex 9547 5.25716 14.3528 0.296421 Vertex 9548 5.26009 -34.2542 -5.12619 Vertex 9549 5.27059 -45.271 3.60876 Vertex 9550 5.27109 -42.045 -5.7485 {normal=(0.555708 0.0531386 -0.829678)} Vertex 9551 5.30159 -41.3699 0.564513 {normal=(0.0404718 0.828331 0.558776)} Vertex 9552 5.31601 -42.6252 2.67321 Vertex 9553 5.32534 14.7589 -1.74606 Vertex 9554 5.32684 -33.5901 -6.19562 Vertex 9555 5.34099 -34.2971 -1.71518 Vertex 9556 5.34342 -40.4779 -5.2375 Vertex 9557 5.3977 11.4409 1.92598 {normal=(0.368211 0.4784 0.797217)} Vertex 9558 5.39807 -33.4598 -6.32609 {normal=(0.15949 -0.655676 -0.738005)} Vertex 9559 5.39875 -9.56262 -4.59858 {normal=(0.607815 0.218732 -0.763359)} Vertex 9560 5.44897 -9.08938 3.26283 Vertex 9561 5.44949 -43.2908 -5.88366 {normal=(0.601404 -0.0309282 -0.798346)} Vertex 9562 5.4584 -41.3445 -5.64498 Vertex 9563 5.4709 14.2604 0.28676 Vertex 9564 5.48006 8.59332 -5.38383 {normal=(-0.0167107 -0.281545 -0.959402)} Vertex 9565 5.48377 -42.6296 3.44 {normal=(-0.530582 0.786827 0.315255)} Vertex 9566 5.49183 -27.4749 -6.19907 Vertex 9567 5.49323 -42.8654 2.55611 Vertex 9568 5.50332 10.4921 -2.23541 {normal=(-0.982627 -0.17927 -0.0480332)} Vertex 9569 5.52261 -33.5257 -1.39886 {normal=(0.231628 -0.305091 0.923725)} Vertex 9570 5.5227 15.1033 -1.68382 Vertex 9571 5.52922 10.4657 -1.63571 {normal=(-0.985992 -0.157168 0.055834)} Vertex 9572 5.53364 -27.4993 -1.0136 Vertex 9573 5.53439 -27.4373 -5.9474 Vertex 9574 5.54354 12.6985 1.06746 {normal=(0.291077 0.583065 0.758492)} Vertex 9575 5.54637 7.27442 -4.56344 {normal=(0.264511 -0.601793 -0.753577)} Vertex 9576 5.55213 -3.67 1.18242 Vertex 9577 5.55213 -2.252 1.18245 Vertex 9578 5.55213 -0.833995 1.18246 Vertex 9579 5.55213 0.584003 1.18249 Vertex 9580 5.55256 -22.2926 -0.319962 Vertex 9581 5.55268 -25.932 -6.39647 Vertex 9582 5.55324 -27.5357 -0.758933 Vertex 9583 5.56004 -44.3629 4.66877 {normal=(-0.744197 0.0810641 0.663023)} Vertex 9584 5.56186 5.38039 -3.25141 {normal=(0.841365 -0.239766 -0.484372)} Vertex 9585 5.56611 -25.5356 -6.4468 Vertex 9586 5.56625 13.8445 -0.001265 Vertex 9587 5.57212 -40.4605 -5.47911 Vertex 9588 5.57724 -45.027 4.68656 Vertex 9589 5.58622 -41.8602 1.37018 {normal=(-0.067965 0.828942 0.55519)} Vertex 9590 5.59144 11.7182 -2.3525 {normal=(-0.88886 0.453066 -0.0682547)} Vertex 9591 5.5928 11.7038 -1.65043 {normal=(-0.88201 0.454631 0.123971)} Vertex 9592 5.59368 -15.6399 3.11395 Vertex 9593 5.59774 -25.8311 -6.15289 Vertex 9594 5.60027 -3.66995 -2.28193 Vertex 9595 5.60027 -2.25195 -2.28191 Vertex 9596 5.60027 -0.83395 -2.28189 Vertex 9597 5.60027 0.584049 -2.28187 Vertex 9598 5.60321 -42.0311 1.68165 Vertex 9599 5.60349 8.57324 -5.4261 Vertex 9600 5.60801 11.5428 -2.90787 {normal=(-0.893036 0.370557 -0.255293)} Vertex 9601 5.60838 -25.5613 -6.18742 Vertex 9602 5.61713 -42.3382 1.599 Vertex 9603 5.61836 14.0195 0.14405 Vertex 9604 5.61914 -24.1909 -6.61883 Vertex 9605 5.62208 -13.4371 -5.64686 {normal=(0.505 0.413124 -0.757829)} Vertex 9606 5.62406 11.3731 -0.888613 {normal=(-0.877444 0.346987 0.331198)} Vertex 9607 5.63183 10.0996 -5.65648 {normal=(-0.0733021 0.078643 -0.994204)} Vertex 9608 5.63194 -23.794 -6.67481 Vertex 9609 5.64026 -32.1419 -7.01627 {normal=(0.148877 -0.21558 -0.96507)} Vertex 9610 5.64741 -25.8985 -0.789087 Vertex 9611 5.65041 11.0944 -3.51062 {normal=(-0.906677 0.237532 -0.348592)} Vertex 9612 5.65666 -43.3196 4.47069 Vertex 9613 5.65755 -22.2346 -7.07236 Vertex 9614 5.65774 -26.1975 -0.708506 Vertex 9615 5.66176 10.2129 -2.69847 {normal=(-0.940301 -0.325273 -0.100154)} Vertex 9616 5.66252 -25.998 -0.543273 Vertex 9617 5.66641 -24.09 -6.37565 Vertex 9618 5.66652 -25.6295 -0.751366 Vertex 9619 5.66964 -17.6304 -8.38756 Vertex 9620 5.6698 7.25433 -4.60571 Vertex 9621 5.67705 -23.8201 -6.41017 Vertex 9622 5.68476 10.7311 -0.303523 {normal=(-0.889011 0.160856 0.428702)} Vertex 9623 5.68972 -25.6028 -0.487784 Vertex 9624 5.69107 -3.7011 -0.608438 Vertex 9625 5.70241 10.0802 -1.16296 {normal=(-0.94727 -0.309438 0.083228)} Vertex 9626 5.70398 -44.99 -4.4998 Vertex 9627 5.7043 -22.197 -6.8207 Vertex 9628 5.7189 -26.275 -0.507952 Vertex 9629 5.7354 -30.2473 -6.81719 {normal=(0.10685 0.195397 -0.974886)} Vertex 9630 5.73663 -26.6598 -0.434434 {normal=(0.307296 0.05672 0.949922)} Vertex 9631 5.74572 15.0931 -1.76401 Vertex 9632 5.74652 -44.3227 -4.50789 Vertex 9633 5.74685 -44.949 -4.51751 Vertex 9634 5.75195 10.6058 -3.85106 {normal=(-0.920884 -0.0238566 -0.389106)} Vertex 9635 5.75526 10.0795 -5.69875 Vertex 9636 5.75572 -45.271 4.57053 Vertex 9637 5.77072 -24.1632 -0.545718 Vertex 9638 5.77229 -38.6939 -5.31538 {normal=(0.656008 -0.00638433 -0.754727)} Vertex 9639 5.77408 -37.8179 -5.31527 {normal=(0.636501 -0.0646306 -0.768563)} Vertex 9640 5.78207 -32.217 -1.19807 {normal=(0.247273 -0.105514 0.963184)} Vertex 9641 5.78495 -24.2627 -0.299833 Vertex 9642 5.78984 -23.8943 -0.507997 Vertex 9643 5.80873 10.2514 -0.090255 {normal=(-0.886853 -0.117221 0.446935)} Vertex 9644 5.81218 -23.8675 -0.244348 Vertex 9645 5.82403 8.59933 -5.3379 {normal=(0.491743 -0.326557 -0.807186)} Vertex 9646 5.82766 9.77829 -1.08318 {normal=(-0.900438 -0.426364 0.0861668)} Vertex 9647 5.8279 -42.6859 3.88862 {normal=(-0.382021 0.804807 0.454253)} Vertex 9648 5.83172 6.3578 -3.29464 {normal=(0.44329 -0.74118 -0.50413)} Vertex 9649 5.86059 -30.3209 -1.12206 {normal=(0.221825 -0.0329473 0.97453)} Vertex 9650 5.86217 -3.67 1.32148 Vertex 9651 5.86217 -2.252 1.3215 Vertex 9652 5.86702 -33.3909 -5.90739 {normal=(0.521965 -0.640996 -0.56274)} Vertex 9653 5.86792 -45.2711 -4.58649 Vertex 9654 5.87158 8.7628 -4.90198 Vertex 9655 5.87513 -0.833947 -2.4805 Vertex 9656 5.87513 0.584052 -2.48048 Vertex 9657 5.87522 -0.833996 1.29024 Vertex 9658 5.87522 0.584002 1.29026 Vertex 9659 5.87664 -22.2386 -0.668153 Vertex 9660 5.88332 9.87669 -2.86252 {normal=(-0.886862 -0.453056 -0.0906416)} Vertex 9661 5.88764 7.33415 -4.55093 {normal=(0.500625 -0.546845 -0.671071)} Vertex 9662 5.90908 -21.477 -8.04778 Vertex 9663 5.92145 -22.3298 -0.028688 Vertex 9664 5.92537 13.6395 -3.90961 {normal=(0.354523 0.705078 -0.614149)} Vertex 9665 5.92773 7.64602 -4.20732 Vertex 9666 5.92834 -3.66995 -2.37695 Vertex 9667 5.92834 -2.25195 -2.37693 Vertex 9668 5.92869 -3.66996 -0.952019 Vertex 9669 5.92977 -21.4898 1.2608 Vertex 9670 5.9302 -3.66997 -0.365996 Vertex 9671 5.95223 -34.2095 -4.85423 Vertex 9672 5.95515 6.33772 -3.33691 Vertex 9673 5.96928 8.63516 -5.2306 Vertex 9674 5.96962 10.0443 -5.59945 {normal=(0.517864 -0.0600949 -0.85335)} Vertex 9675 5.97771 -42.2253 2.36976 Vertex 9676 5.97792 4.42493 -2.01676 Vertex 9677 5.98105 0.889254 -0.691035 {normal=(0.992059 0.0756262 0.100501)} Vertex 9678 5.98667 14.9066 -1.79195 Vertex 9679 5.99163 -42.5324 2.28711 Vertex 9680 5.99226 -43.2346 -4.54069 Vertex 9681 5.99433 9.95947 -4.05303 {normal=(-0.886887 -0.295861 -0.354822)} Vertex 9682 5.9986 4.43593 3.59473 Vertex 9683 6.00009 10.0383 -5.13285 Vertex 9684 6.0014 -2.25196 -0.657592 Vertex 9685 6.0014 -0.83396 -0.657572 Vertex 9686 6.0014 0.584038 -0.657551 Vertex 9687 6.00741 8.69988 -5.05631 Vertex 9688 6.0091 14.7242 -1.76119 Vertex 9689 6.02166 -19.8563 -8.95316 Vertex 9690 6.02786 9.41271 -1.21125 {normal=(-0.880377 -0.472979 0.0350361)} Vertex 9691 6.0303 7.4215 -4.47569 Vertex 9692 6.03095 -45.027 -4.67746 Vertex 9693 6.03228 -44.3732 -4.67526 Vertex 9694 6.03363 4.40313 -1.80879 Vertex 9695 6.05421 -42.1707 -4.42714 Vertex 9696 6.05492 9.76061 -0.015878 {normal=(-0.831817 -0.352839 0.428467)} Vertex 9697 6.06534 7.54771 -4.33965 Vertex 9698 6.08178 11.8888 -5.19287 {normal=(0.0229928 0.49268 -0.869907)} Vertex 9699 6.0965 4.43579 3.46793 Vertex 9700 6.09971 -20.0135 2.21433 Vertex 9701 6.10108 -35.0221 -5.50011 {normal=(0.60737 -0.171734 -0.775635)} Vertex 9702 6.10574 1.44355 -0.537757 {normal=(0.989948 -0.0158311 -0.140545)} Vertex 9703 6.10871 -6.13414 1.51869 {normal=(0.843076 0.263572 0.468777)} Vertex 9704 6.10893 10.0212 -5.48149 Vertex 9705 6.11191 -34.2907 -2.09497 Vertex 9706 6.11941 0.620633 2.1421 Vertex 9707 6.12274 4.42306 -1.73434 Vertex 9708 6.14 10.0157 -5.2945 Vertex 9709 6.14374 11.3101 1.60497 {normal=(0.337963 0.433611 0.835322)} Vertex 9710 6.14736 3.19252 -2.22149 {normal=(0.887692 0.189116 -0.419808)} Vertex 9711 6.15328 -17.8217 2.94429 Vertex 9712 6.15343 9.3637 -2.66082 {normal=(-0.869161 -0.489921 -0.067347)} Vertex 9713 6.15419 -40.0247 -2.18896 Vertex 9714 6.15638 9.10637 -1.68459 {normal=(-0.856184 -0.515404 -0.0361647)} Vertex 9715 6.15861 0.529734 -2.4611 Vertex 9716 6.15929 -41.1163 -4.17897 Vertex 9717 6.16136 6.45487 -3.33383 {normal=(0.546802 -0.71134 -0.441592)} Vertex 9718 6.16635 -22.2915 -0.400585 Vertex 9719 6.16935 6.86988 -3.13298 Vertex 9720 6.20403 -21.3785 1.13725 Vertex 9721 6.20458 4.44575 3.35634 Vertex 9722 6.20521 11.8687 -5.23514 Vertex 9723 6.21448 -33.6837 -5.73291 {normal=(0.490234 -0.322749 -0.809632)} Vertex 9724 6.22563 4.70799 -1.70401 {normal=(0.885562 -0.303257 -0.351873)} Vertex 9725 6.22696 2.35364 -0.387596 {normal=(0.976299 -0.130554 -0.172613)} Vertex 9726 6.23709 3.16811 -1.96624 {normal=(0.859142 0.207187 -0.467919)} Vertex 9727 6.24251 10.9961 -4.45964 {normal=(-0.705948 0.281502 -0.649919)} Vertex 9728 6.24917 1.40467 -0.873569 {normal=(0.932118 -0.120208 0.341622)} Vertex 9729 6.25653 -44.9899 -3.48905 Vertex 9730 6.27037 3.29993 3.29292 {normal=(0.744444 -0.0797229 0.662908)} Vertex 9731 6.27143 12.3355 -2.50084 {normal=(-0.525379 0.846258 -0.0884511)} Vertex 9732 6.27322 12.3165 -1.57702 {normal=(-0.498043 0.836218 0.22955)} Vertex 9733 6.27652 -43.2598 -4.71564 Vertex 9734 6.28068 -33.0951 -5.82118 Vertex 9735 6.29198 9.71615 2.58683 {normal=(0.480513 0.445314 0.755515)} Vertex 9736 6.29287 6.57805 -3.30816 Vertex 9737 6.29324 12.1047 -3.23163 {normal=(-0.568205 0.744421 -0.350684)} Vertex 9738 6.29485 -44.3273 -3.58288 Vertex 9739 6.29518 -44.949 -3.59249 Vertex 9740 6.2984 -40.6954 -3.82604 Vertex 9741 6.30445 -40.5515 -1.59844 Vertex 9742 6.31436 11.8814 -0.574578 {normal=(-0.463006 0.682486 0.565543)} Vertex 9743 6.31461 6.74698 -3.23127 Vertex 9744 6.31783 10.5068 0.489034 {normal=(-0.558598 0.178768 0.809945)} Vertex 9745 6.31846 -38.6906 -2.12518 {normal=(0.793575 0.0255973 0.607934)} Vertex 9746 6.32025 -37.8146 -2.12507 {normal=(0.789689 -0.067175 0.609819)} Vertex 9747 6.32924 4.56952 3.6647 {normal=(0.565955 -0.695447 0.442773)} Vertex 9748 6.32948 -3.66996 -0.752633 Vertex 9749 6.32948 -2.25196 -0.752612 Vertex 9750 6.32992 1.38414 -0.288502 {normal=(0.809369 0.139151 -0.570578)} Vertex 9751 6.33015 -42.3167 3.00224 {normal=(-0.0737594 0.980348 0.182967)} Vertex 9752 6.33793 3.20008 -1.83464 Vertex 9753 6.33968 -42.1528 -4.60068 Vertex 9754 6.34091 9.06014 -0.168211 {normal=(-0.837727 -0.413833 0.35631)} Vertex 9755 6.34225 -0.83396 -0.685627 Vertex 9756 6.34225 0.584039 -0.685606 Vertex 9757 6.34904 11.5146 -4.02476 {normal=(-0.622783 0.574638 -0.530973)} Vertex 9758 6.36776 2.3148 -0.723716 {normal=(0.971395 -0.108034 0.211472)} Vertex 9759 6.37416 -19.9011 2.09065 Vertex 9760 6.37597 -45.0271 5.24633 Vertex 9761 6.37656 1.01116 -2.3548 Vertex 9762 6.38007 -34.2126 -4.37666 Vertex 9763 6.38108 11.5532 -4.74029 Vertex 9764 6.38792 5.38028 -1.47809 {normal=(0.926902 -0.153031 -0.342686)} Vertex 9765 6.39154 -39.8123 -2.07588 Vertex 9766 6.39423 11.0366 0.195314 {normal=(-0.45397 0.49958 0.737788)} Vertex 9767 6.40123 11.7606 -5.15473 {normal=(0.589478 0.239698 -0.771401)} Vertex 9768 6.40608 0.818348 -0.855766 Vertex 9769 6.41526 -44.3557 5.28254 {normal=(-0.465596 0.116879 0.877245)} Vertex 9770 6.416 1.90913 -2.20403 {normal=(0.921437 0.103305 -0.374542)} Vertex 9771 6.41786 1.27036 2.91128 {normal=(0.681342 -0.414243 0.60347)} Vertex 9772 6.41935 -33.3096 -5.85585 Vertex 9773 6.42015 1.93037 -2.3071 {normal=(0.926702 0.0803646 -0.367104)} Vertex 9774 6.42047 -45.271 -3.57574 Vertex 9775 6.43077 -40.27 -3.27638 Vertex 9776 6.43317 3.48004 -0.254737 {normal=(0.990537 0.0452662 -0.12957)} Vertex 9777 6.43659 10.1028 -4.7254 {normal=(-0.752845 -0.111734 -0.648645)} Vertex 9778 6.44475 -41.0984 -4.3525 Vertex 9779 6.44519 9.04369 -3.91063 {normal=(-0.914963 -0.362578 -0.177146)} Vertex 9780 6.45459 2.29483 -0.139645 {normal=(0.88389 0.0189441 -0.467311)} Vertex 9781 6.45699 6.06565 -1.33002 {normal=(0.66523 -0.73128 -0.15066)} Vertex 9782 6.46829 -45.271 5.06899 Vertex 9783 6.47605 1.95106 -2.12188 Vertex 9784 6.47728 2.16204 3.06955 {normal=(0.762058 -0.114756 0.637258)} Vertex 9785 6.50445 -21.488 1.17528 Vertex 9786 6.50462 -6.34977 -0.408374 {normal=(0.957689 0.287763 0.00488369)} Vertex 9787 6.5054 4.52261 -0.020655 Vertex 9788 6.51104 8.60197 -0.420323 {normal=(-0.845885 -0.502275 0.179437)} Vertex 9789 6.51729 5.23794 3.99098 {normal=(0.686205 -0.338386 0.643908)} Vertex 9790 6.51848 -6.62575 -2.30468 {normal=(0.872739 0.259862 -0.413278)} Vertex 9791 6.52297 11.6676 -5.05488 Vertex 9792 6.53305 11.5787 -4.8895 Vertex 9793 6.54138 -43.2346 -3.68517 Vertex 9794 6.54181 -40.339 -1.48537 Vertex 9795 6.54265 -38.6976 -4.19296 {normal=(0.925879 -0.00713279 -0.377753)} Vertex 9796 6.54267 9.7923 0.586904 {normal=(-0.588143 -0.212262 0.780405)} Vertex 9797 6.54444 -37.8216 -4.19285 {normal=(0.931912 -0.0809279 -0.353539)} Vertex 9798 6.54939 -27.3727 -5.55402 Vertex 9799 6.55853 0.821168 -0.329246 Vertex 9800 6.55897 -6.28919 -0.115199 {normal=(0.956504 0.286716 -0.0537958)} Vertex 9801 6.56011 -43.3325 5.06993 Vertex 9802 6.57928 -45.027 -3.75244 Vertex 9803 6.57996 -41.3874 -3.45416 Vertex 9804 6.58042 6.04556 -1.37229 Vertex 9805 6.58061 -44.3777 -3.75025 Vertex 9806 6.58357 -42.1677 -3.62182 Vertex 9807 6.59868 -40.6476 -3.96669 Vertex 9808 6.5989 4.52639 1.97901 Vertex 9809 6.61467 4.52287 2.14453 Vertex 9810 6.61716 -34.2156 -3.28398 Vertex 9811 6.61981 -6.3647 -0.69964 {normal=(0.952562 0.266635 0.146738)} Vertex 9812 6.62939 -35.0181 -1.91999 {normal=(0.756901 -0.13531 0.639369)} Vertex 9813 6.65377 4.53229 1.77602 Vertex 9814 6.65775 5.93729 -3.16594 {normal=(-0.977416 -0.136262 -0.161525)} Vertex 9815 6.65892 4.70734 -0.130068 {normal=(0.897976 -0.400142 -0.183099)} Vertex 9816 6.66719 -38.6947 -3.32432 {normal=(0.99811 0.0205264 0.0579206)} Vertex 9817 6.66898 -37.8187 -3.32421 {normal=(0.992624 -0.0763612 0.0941677)} Vertex 9818 6.67093 -20.0105 2.1196 Vertex 9819 6.67587 -33.516 -1.98357 {normal=(0.742836 -0.367342 0.559692)} Vertex 9820 6.67727 3.24332 1.76913 {normal=(0.993889 0.0883456 0.0661861)} Vertex 9821 6.68011 6.14707 4.02962 {normal=(0.71321 -0.0117527 0.700852)} Vertex 9822 6.68438 7.35665 -3.20158 {normal=(-0.996192 -0.0668249 -0.0560079)} Vertex 9823 6.68515 3.24156 1.85189 {normal=(0.991824 0.0794344 0.0998809)} Vertex 9824 6.68899 -33.3956 -4.92897 {normal=(0.806768 -0.493232 -0.325343)} Vertex 9825 6.69555 8.75321 -4.53803 {normal=(-0.804928 -0.362576 -0.469711)} Vertex 9826 6.69879 6.6225 -1.46944 Vertex 9827 6.70125 7.57214 -3.60192 {normal=(-0.905455 -0.0653332 -0.419383)} Vertex 9828 6.70196 -27.4125 -5.75822 Vertex 9829 6.7047 3.24627 1.66763 {normal=(0.996253 0.0264008 0.0823625)} Vertex 9830 6.70624 7.92342 -4.01511 {normal=(-0.859014 -0.295312 -0.418194)} Vertex 9831 6.7323 14.1705 -1.95675 {normal=(0.467677 0.882404 -0.0513851)} Vertex 9832 6.73365 -40.1227 -3.27867 Vertex 9833 6.73605 -25.7599 -5.72532 Vertex 9834 6.7566 7.33689 3.72476 {normal=(0.652182 0.274141 0.706757)} Vertex 9835 6.76116 6.17462 -1.44923 {normal=(0.636593 -0.760962 -0.125241)} Vertex 9836 6.76576 -40.8285 -0.850633 {normal=(0.573984 0.720469 0.389187)} Vertex 9837 6.76718 -25.4909 -5.75389 Vertex 9838 6.76727 8.31049 -3.18002 {normal=(-0.956279 -0.291717 0.0207614)} Vertex 9839 6.76735 -40.8037 -2.8256 Vertex 9840 6.77517 1.21205 0.781024 {normal=(0.957164 -0.286304 -0.0432181)} Vertex 9841 6.78562 12.5256 0.974956 {normal=(0.20847 0.591895 0.778589)} Vertex 9842 6.78568 -27.4902 -1.56294 Vertex 9843 6.79683 13.4976 -0.269359 {normal=(0.360006 0.801827 0.476937)} Vertex 9844 6.82564 -43.2598 -3.86012 Vertex 9845 6.82914 -32.0635 -6.53945 {normal=(0.652332 -0.280331 -0.704186)} Vertex 9846 6.83329 5.06838 -2.92306 {normal=(-0.936343 -0.347301 -0.0514215)} Vertex 9847 6.84599 8.19581 -1.28649 {normal=(-0.844056 -0.532767 0.0610591)} Vertex 9848 6.85556 13.3582 -3.63173 {normal=(0.206436 0.840046 -0.501705)} Vertex 9849 6.85651 4.69352 2.11507 {normal=(0.807068 -0.588159 0.0520616)} Vertex 9850 6.86055 2.03823 1.06127 {normal=(0.998836 -0.00295098 -0.0481411)} Vertex 9851 6.86083 6.49176 -1.51502 Vertex 9852 6.86256 -9.08388 2.00808 {normal=(0.769489 0.204915 0.604894)} Vertex 9853 6.86823 6.30921 -1.50033 Vertex 9854 6.86986 -42.1568 -3.79467 Vertex 9855 6.87612 8.19083 0.022637 {normal=(-0.685665 -0.589626 0.426856)} Vertex 9856 6.87902 8.8035 0.386456 {normal=(-0.612997 -0.424843 0.66614)} Vertex 9857 6.88025 -41.3396 -3.59481 Vertex 9858 6.88131 -25.8629 -5.92282 Vertex 9859 6.89199 5.38138 0.224029 {normal=(0.961165 -0.201152 -0.188946)} Vertex 9860 6.89534 -25.4655 -5.9854 Vertex 9861 6.90083 11.1018 1.47198 {normal=(0.265034 0.372704 0.889297)} Vertex 9862 6.91636 -41.3607 -0.163031 {normal=(0.494316 0.784725 0.373976)} Vertex 9863 6.93024 -42.6753 4.42051 {normal=(-0.0344191 0.890175 0.454318)} Vertex 9864 6.93323 -30.1706 -6.35018 {normal=(0.610768 0.133997 -0.780389)} Vertex 9865 6.93763 -27.5339 -1.35908 Vertex 9866 6.93828 -24.0127 -5.91091 Vertex 9867 6.96067 -42.437 1.02659 Vertex 9868 6.96941 -23.7437 -5.93948 Vertex 9869 6.97899 13.3381 -3.674 Vertex 9870 6.98115 -33.4003 -3.24674 {normal=(0.927549 -0.370879 0.045838)} Vertex 9871 6.98442 -13.1871 2.36055 {normal=(0.591761 0.0598183 0.803891)} Vertex 9872 6.99152 -45.271 -2.34218 Vertex 9873 6.99251 -32.2059 -1.86392 {normal=(0.771776 -0.192497 0.606058)} Vertex 9874 7.00097 -25.8881 -1.38626 Vertex 9875 7.0145 9.58546 2.02911 {normal=(0.557975 0.273926 0.783344)} Vertex 9876 7.03628 12.7974 -3.4184 Vertex 9877 7.03667 -15.3518 -6.24693 {normal=(0.484002 0.540804 -0.687948)} Vertex 9878 7.03702 -25.6199 -1.35668 Vertex 9879 7.05155 -42.1343 1.06901 Vertex 9880 7.05183 -24.1134 -6.12901 Vertex 9881 7.05203 -35.0229 -3.24765 {normal=(0.968197 -0.171817 0.181859)} Vertex 9882 7.05507 -11.0373 2.1656 {normal=(0.683367 0.0613141 0.727496)} Vertex 9883 7.05698 -33.0271 -5.28221 {normal=(0.765756 -0.385259 -0.514968)} Vertex 9884 7.06705 -12.9289 -4.08971 Vertex 9885 7.06977 -8.98465 -2.44379 {normal=(0.882137 0.22445 -0.414074)} Vertex 9886 7.06988 -35.0264 -4.23679 {normal=(0.936815 -0.210089 -0.279716)} Vertex 9887 7.07023 -40.6563 -2.82789 Vertex 9888 7.09673 -32.4618 -5.42216 Vertex 9889 7.09948 -41.8982 0.751682 {normal=(0.420569 0.813032 0.402618)} Vertex 9890 7.10766 -26.197 -1.51474 Vertex 9891 7.12023 7.79835 -0.347202 {normal=(-0.678303 -0.705721 0.204604)} Vertex 9892 7.12112 -22.1146 -6.30932 Vertex 9893 7.12247 6.24603 -1.71512 {normal=(-0.796847 -0.0985602 0.596088)} Vertex 9894 7.12399 -23.7202 -6.15428 Vertex 9895 7.13799 -40.9886 -2.19132 Vertex 9896 7.14173 -44.4004 -2.53413 {normal=(0.913882 -0.0761191 -0.39878)} Vertex 9897 7.14349 13.1701 -3.65718 {normal=(0.70115 0.468376 -0.5376)} Vertex 9898 7.14424 5.34338 2.54972 {normal=(0.941584 -0.302747 0.147525)} Vertex 9899 7.14446 -25.9948 -1.18934 Vertex 9900 7.14457 -32.0689 -5.459 {normal=(0.885459 -0.347232 -0.308857)} Vertex 9901 7.14481 -45.027 -2.51383 Vertex 9902 7.16181 6.84011 0.359268 {normal=(0.737947 -0.624582 0.255601)} Vertex 9903 7.16729 -30.31 -1.77421 {normal=(0.747232 -0.054759 0.662303)} Vertex 9904 7.18781 -26.6616 -1.23954 {normal=(0.576686 0.0345573 0.816235)} Vertex 9905 7.19111 -42.3079 -2.54227 {normal=(0.967524 0.0961672 -0.233773)} Vertex 9906 7.1969 -25.6007 -1.14547 Vertex 9907 7.20901 12.8624 -3.52573 Vertex 9908 7.21482 5.19364 -2.01751 {normal=(-0.718152 -0.33818 0.608187)} Vertex 9909 7.21797 -26.2768 -1.33962 Vertex 9910 7.22757 -42.6339 1.749 Vertex 9911 7.23428 -24.152 -1.19479 Vertex 9912 7.23499 13.0197 -3.61834 Vertex 9913 7.24208 -27.3771 -4.86325 Vertex 9914 7.26168 7.2993 -1.87648 {normal=(-0.907658 -0.187279 0.37561)} Vertex 9915 7.2653 -10.881 -2.97793 {normal=(0.84335 0.225973 -0.487541)} Vertex 9916 7.2683 -22.1541 -6.51797 Vertex 9917 7.26897 -41.4482 -1.31473 Vertex 9918 7.26954 7.23251 -0.093519 Vertex 9919 7.27034 -23.8838 -1.16521 Vertex 9920 7.27506 -32.6227 -5.37381 Vertex 9921 7.28524 6.82002 0.316999 Vertex 9922 7.3006 -45.271 -1.68567 Vertex 9923 7.30844 -43.2583 -2.57767 {normal=(0.944383 -0.0159308 -0.328462)} Vertex 9924 7.31193 5.15508 -3.58199 {normal=(-0.799706 -0.288373 -0.526604)} Vertex 9925 7.31846 -42.3313 1.79142 Vertex 9926 7.34298 6.36847 2.67728 {normal=(0.971087 -0.131536 0.199219)} Vertex 9927 7.34724 -32.0742 -3.54329 {normal=(0.960758 -0.27245 0.0521051)} Vertex 9928 7.35804 5.8667 -3.90135 {normal=(-0.767072 -0.0893887 -0.635303)} Vertex 9929 7.37725 -24.2586 -0.997458 Vertex 9930 7.37731 -43.3377 5.39664 Vertex 9931 7.38405 7.43221 2.55887 {normal=(0.923628 0.0421934 0.38096)} Vertex 9932 7.3915 -9.11913 -0.899686 {normal=(0.955283 0.26622 -0.128693)} Vertex 9933 7.40119 -45.271 5.47066 Vertex 9934 7.42907 -42.3373 -1.50223 {normal=(0.950154 0.22633 -0.214436)} Vertex 9935 7.4291 -41.7705 -0.706719 Vertex 9936 7.42978 -23.8644 -0.953655 Vertex 9937 7.43035 6.90536 0.156759 {normal=(0.742386 -0.65404 0.145241)} Vertex 9938 7.43434 -45.0273 5.69717 Vertex 9939 7.43949 -9.01958 0.66656 {normal=(0.935838 0.292622 0.196418)} Vertex 9940 7.45504 7.13056 -0.084245 Vertex 9941 7.46773 13.6718 -1.99324 {normal=(0.315797 0.948825 0.00210444)} Vertex 9942 7.4719 -27.4234 -4.97097 Vertex 9943 7.48314 -45.0271 -1.79581 Vertex 9944 7.48562 -22.2817 -0.988529 Vertex 9945 7.50323 6.99802 0.025754 Vertex 9946 7.51296 -25.7642 -4.97435 Vertex 9947 7.51413 -44.4004 -1.75187 {normal=(0.913644 -0.0325008 -0.405214)} Vertex 9948 7.51897 -44.3451 5.6843 {normal=(0.133085 0.125328 0.983149)} Vertex 9949 7.55463 13.063 -2.03102 Vertex 9950 7.55794 -25.4963 -4.9928 Vertex 9951 7.56263 -42.3769 2.50256 {normal=(0.186003 0.979781 0.0737061)} Vertex 9952 7.56545 12.5855 -0.899039 {normal=(-0.19972 0.882056 0.426718)} Vertex 9953 7.59116 13.6518 -2.03551 Vertex 9954 7.59849 -43.2583 -1.67611 {normal=(0.938845 0.112684 -0.32538)} Vertex 9955 7.61663 7.83815 1.21381 {normal=(0.690115 -0.36492 0.62496)} Vertex 9956 7.62261 12.036 -4.81852 {normal=(-0.246229 0.718998 -0.649933)} Vertex 9957 7.62621 9.35865 -5.83151 {normal=(-0.410341 -0.130632 -0.902527)} Vertex 9958 7.63149 10.8124 -5.64342 {normal=(-0.313832 0.351815 -0.881893)} Vertex 9959 7.63661 -22.3253 -0.783916 Vertex 9960 7.65184 -30.1758 -5.53014 {normal=(0.91722 0.005296 -0.398346)} Vertex 9961 7.65852 -27.3814 -3.28275 Vertex 9962 7.67358 -31.9761 -4.70322 {normal=(0.927404 -0.336405 -0.163564)} Vertex 9963 7.67565 -42.6215 0.741497 Vertex 9964 7.68071 8.12335 0.68454 Vertex 9965 7.68501 3.53338 -2.93775 {normal=(-0.850759 -0.524655 0.0307544)} Vertex 9966 7.70332 -31.4477 -4.87229 Vertex 9967 7.71974 -17.4998 -7.56352 {normal=(0.50639 0.429792 -0.747562)} Vertex 9968 7.73073 13.471 -2.08544 {normal=(0.811906 0.536692 -0.229718)} Vertex 9969 7.73222 -25.8734 -5.07774 Vertex 9970 7.74006 7.81806 1.17155 Vertex 9971 7.74378 13.1363 -2.09439 Vertex 9972 7.74719 12.7431 -3.50605 {normal=(-0.201251 0.908516 -0.366193)} Vertex 9973 7.75892 12.9316 -2.48278 {normal=(-0.233327 0.972271 -0.0157122)} Vertex 9974 7.76148 4.96266 -4.32859 {normal=(-0.82433 -0.197654 -0.530484)} Vertex 9975 7.78966 -21.3532 -7.36365 Vertex 9976 7.79831 13.3084 -2.11062 Vertex 9977 7.80632 -24.0174 -5.09468 Vertex 9978 7.81562 3.79219 -2.41983 {normal=(-0.605307 -0.474848 0.638845)} Vertex 9979 7.8166 -25.4854 -5.04524 Vertex 9980 7.83119 -15.6207 1.95268 {normal=(0.6263 0.115757 0.77094)} Vertex 9981 7.85131 -23.7495 -5.11313 Vertex 9982 7.86286 -10.9122 1.09587 {normal=(0.913163 0.148111 0.379731)} Vertex 9983 7.86606 -31.5471 -4.78395 Vertex 9984 7.87356 7.87492 0.990975 {normal=(0.832596 -0.457516 0.312191)} Vertex 9985 7.87386 8.04017 0.707204 Vertex 9986 7.87406 -42.3419 0.440428 Vertex 9987 7.88002 11.9198 -0.116802 {normal=(-0.139609 0.696508 0.703837)} Vertex 9988 7.8867 5.53516 -4.62686 {normal=(-0.749981 0.0809532 -0.656487)} Vertex 9989 7.89086 -22.0812 -5.30726 Vertex 9990 7.89981 13.1714 -0.493756 {normal=(0.312185 0.8602 0.403233)} Vertex 9991 7.90535 -27.4298 -3.22534 Vertex 9992 7.90837 -22.1205 -5.57303 Vertex 9993 7.9124 -42.4073 0.693917 Vertex 9994 7.9205 12.6393 -0.761338 Vertex 9995 7.93532 7.94025 0.840468 Vertex 9996 7.95196 -45.271 -0.286458 Vertex 9997 7.95283 -42.8053 1.46782 Vertex 9998 7.96207 -26.4116 -2.25786 Vertex 9999 7.96631 6.90082 -0.876599 {normal=(-0.729097 -0.410546 0.547604)} Vertex 10000 7.98007 -25.7685 -3.25598 Vertex 10001 7.98766 5.2484 -1.55877 {normal=(-0.539786 -0.383009 0.749623)} Vertex 10002 7.99733 -30.181 -3.65386 {normal=(0.994947 -0.0609584 0.0797786)} Vertex 10003 8.0053 -13.0103 1.00777 {normal=(0.883661 0.149241 0.443701)} Vertex 10004 8.01164 9.33482 1.656 {normal=(0.424956 -0.0280583 0.904779)} Vertex 10005 8.01519 9.39067 1.05896 Vertex 10006 8.02324 13.1514 -0.536025 Vertex 10007 8.0333 -25.5016 -3.25155 Vertex 10008 8.03752 -26.9019 -2.00118 {normal=(0.786456 -0.0436317 0.616103)} Vertex 10009 8.03881 -43.3786 0.600656 Vertex 10010 8.04053 -42.6782 3.77032 {normal=(0.31278 0.899028 0.306459)} Vertex 10011 8.04338 -10.8848 -0.228495 Vertex 10012 8.04387 -24.1321 -5.13846 Vertex 10013 8.08957 -23.7329 -5.22963 Vertex 10014 8.09503 -15.3683 -5.06338 Vertex 10015 8.1075 -15.4977 -4.72907 Vertex 10016 8.10894 -26.5016 -2.12342 Vertex 10017 8.10949 3.36266 -3.69303 {normal=(-0.839265 -0.434384 -0.327024)} Vertex 10018 8.1136 -30.5863 -4.13192 {normal=(0.954319 -0.273822 0.119566)} Vertex 10019 8.11792 12.0286 0.105356 Vertex 10020 8.12124 12.6992 -0.784484 Vertex 10021 8.12424 -19.7211 -8.09466 Vertex 10022 8.13296 12.4502 0.529803 {normal=(0.275344 0.681511 0.678033)} Vertex 10023 8.13507 9.31474 1.61373 Vertex 10024 8.13685 10.9443 0.814305 {normal=(-0.0928051 0.577115 0.811372)} Vertex 10025 8.14521 12.991 -0.647036 {normal=(0.878344 0.477819 0.0141603)} Vertex 10026 8.1486 -30.0369 -4.30088 Vertex 10027 8.18049 6.64974 -4.28675 {normal=(-0.751381 -0.0953868 -0.652938)} Vertex 10028 8.18082 -44.4346 0.542982 Vertex 10029 8.18682 -44.9365 0.537845 Vertex 10030 8.18958 -42.5911 1.42024 Vertex 10031 8.19173 -45.0271 -0.278554 Vertex 10032 8.1959 12.8479 -0.730817 Vertex 10033 8.20447 -22.125 -4.99594 Vertex 10034 8.21442 -25.8795 -3.19961 Vertex 10035 8.21509 -43.291 -0.061943 {normal=(0.933192 0.225077 -0.280166)} Vertex 10036 8.21893 9.34764 1.09348 Vertex 10037 8.22038 10.9114 0.935422 Vertex 10038 8.22614 -44.3719 -0.295623 {normal=(0.927687 0.0153091 -0.373045)} Vertex 10039 8.23746 -45.271 4.91516 Vertex 10040 8.25174 -45.271 0.432554 Vertex 10041 8.25248 9.31063 1.41515 {normal=(0.894756 -0.216397 0.39062)} Vertex 10042 8.25396 11.1308 1.51011 {normal=(0.254694 0.334955 0.907158)} Vertex 10043 8.25409 -44.9304 0.436705 Vertex 10044 8.25428 7.52254 -5.24379 {normal=(-0.472443 -0.355649 -0.806419)} Vertex 10045 8.25639 12.4301 0.487534 Vertex 10046 8.28326 -30.1194 -4.21108 Vertex 10047 8.29388 -25.4908 -3.29862 Vertex 10048 8.29881 9.31748 1.24736 Vertex 10049 8.30544 -13.0015 -0.922785 Vertex 10050 8.31444 -43.4288 1.3497 Vertex 10051 8.31915 -22.1684 -5.511 Vertex 10052 8.32261 3.3509 -4.13582 {normal=(-0.864007 -0.361923 -0.350005)} Vertex 10053 8.32492 12.0691 0.109669 Vertex 10054 8.32824 -24.0221 -3.22699 Vertex 10055 8.33907 -43.3015 0.493351 Vertex 10056 8.34231 -43.3374 4.82455 Vertex 10057 8.34849 6.61465 -0.694472 {normal=(-0.652581 -0.385182 0.652513)} Vertex 10058 8.36886 12.2991 0.334827 {normal=(0.916393 0.357164 0.180717)} Vertex 10059 8.37072 -26.8347 -2.97015 Vertex 10060 8.37739 11.1107 1.46784 Vertex 10061 8.38146 -23.7552 -3.22256 Vertex 10062 8.38225 -45.0271 5.06772 Vertex 10063 8.39419 9.92694 1.40347 {normal=(-0.127118 0.23884 0.962703)} Vertex 10064 8.39821 -27.353 -2.74804 {normal=(0.905325 -0.146421 0.398681)} Vertex 10065 8.39982 -44.3648 5.10133 {normal=(0.706935 0.10166 0.699934)} Vertex 10066 8.40378 -12.9112 -1.18576 Vertex 10067 8.40726 -15.374 -4.54654 Vertex 10068 8.41045 12.1842 0.211048 Vertex 10069 8.41438 4.17157 -1.96465 {normal=(-0.529423 -0.451713 0.7181)} Vertex 10070 8.41631 -12.9309 -0.638932 Vertex 10071 8.43062 10.9166 0.966035 Vertex 10072 8.44611 -28.4977 -3.44355 {normal=(0.919173 -0.210212 0.333064)} Vertex 10073 8.45587 -42.643 2.10917 Vertex 10074 8.46009 -44.4595 1.29137 Vertex 10075 8.46614 6.60781 -5.04073 {normal=(-0.709269 -0.199807 -0.676029)} Vertex 10076 8.46957 8.95833 1.41415 {normal=(-0.205825 -0.197479 0.958456)} Vertex 10077 8.47363 -27.9028 -3.61108 Vertex 10078 8.47776 5.2242 -1.14207 {normal=(-0.834691 -0.259016 0.486005)} Vertex 10079 8.48024 -44.9365 1.28196 Vertex 10080 8.4849 -45.027 0.418482 Vertex 10081 8.48493 11.0335 1.2752 {normal=(0.934556 0.0976895 0.342144)} Vertex 10082 8.48754 -44.4112 0.423698 Vertex 10083 8.50151 -42.6843 3.20377 Vertex 10084 8.50521 6.42801 -5.05533 {normal=(-0.636415 0.0701957 -0.768147)} Vertex 10085 8.50654 4.58203 -5.16603 {normal=(-0.703215 -0.114498 -0.701697)} Vertex 10086 8.50861 -26.9064 -2.8585 Vertex 10087 8.52179 10.9701 1.11311 Vertex 10088 8.56337 -45.271 1.31489 Vertex 10089 8.56386 -24.1367 -3.27614 Vertex 10090 8.56571 -44.9304 1.31904 Vertex 10091 8.57845 5.19998 -0.725376 {normal=(-0.889503 -0.11187 0.443024)} Vertex 10092 8.59473 -27.9859 -3.52662 Vertex 10093 8.60523 4.22854 -1.30917 {normal=(-0.970249 -0.191691 0.147889)} Vertex 10094 8.6147 -43.3518 1.2424 Vertex 10095 8.62559 -17.8018 1.65954 {normal=(0.648967 -0.0147364 0.760674)} Vertex 10096 8.62763 7.16986 0.288609 {normal=(-0.372556 -0.657327 0.655075)} Vertex 10097 8.63254 6.77266 -0.327621 {normal=(-0.567455 -0.480457 0.668697)} Vertex 10098 8.64004 -23.7411 -3.16115 Vertex 10099 8.65485 4.19353 -1.71193 {normal=(-0.887746 -0.3784 0.262145)} Vertex 10100 8.65723 2.23391 -3.04478 {normal=(-0.904937 -0.409626 0.115307)} Vertex 10101 8.66265 -21.4709 0.144578 Vertex 10102 8.66928 6.86513 -0.165417 {normal=(-0.461409 -0.642369 0.611935)} Vertex 10103 8.67112 12.6136 -3.55732 {normal=(0.160401 0.882252 -0.442609)} Vertex 10104 8.67558 6.23456 -0.448852 {normal=(-0.67366 -0.15371 0.72288)} Vertex 10105 8.68706 3.31266 -5.17191 {normal=(-0.735817 -0.27114 -0.62053)} Vertex 10106 8.69484 -22.1384 -3.2422 Vertex 10107 8.69749 13.0495 -2.47229 {normal=(0.0351491 0.998213 -0.04832)} Vertex 10108 8.71394 7.75887 0.933331 {normal=(-0.235766 -0.501065 0.832675)} Vertex 10109 8.76669 -21.352 -6.45892 Vertex 10110 8.7668 -44.436 1.17209 Vertex 10111 8.77833 -45.027 1.1626 Vertex 10112 8.7794 -15.7098 0.102446 Vertex 10113 8.78664 12.8215 -1.445 {normal=(0.0360193 0.948956 0.313346)} Vertex 10114 8.7899 11.1911 -5.36334 {normal=(0.129588 0.476111 -0.869785)} Vertex 10115 8.79092 2.40505 -2.65504 {normal=(-0.594598 -0.365052 0.716373)} Vertex 10116 8.79141 -15.9987 0.057748 Vertex 10117 8.79583 -15.785 0.144167 Vertex 10118 8.81493 -15.9751 -0.026694 {normal=(-0.925371 -0.303637 -0.226923)} Vertex 10119 8.82183 -45.271 2.0883 Vertex 10120 8.83057 12.0761 -4.63657 {normal=(0.280459 0.773887 -0.56784)} Vertex 10121 8.83348 -15.762 -0.109212 {normal=(-0.829315 0.178483 -0.52951)} Vertex 10122 8.84097 -17.4761 -6.22582 Vertex 10123 8.84542 9.6329 -6.00456 {normal=(0.129533 0.0347002 -0.990968)} Vertex 10124 8.85424 -21.3421 -5.99528 Vertex 10125 8.86187 2.11765 -3.80763 {normal=(-0.906723 -0.357603 -0.223549)} Vertex 10126 8.86626 -15.4825 0.067004 Vertex 10127 8.87107 -43.3143 1.918 {normal=(0.91621 0.352374 -0.190765)} Vertex 10128 8.87638 -15.9571 -0.162388 {normal=(-0.764526 -0.209123 -0.609727)} Vertex 10129 8.88696 2.02234 -4.19029 {normal=(-0.899924 -0.344286 -0.267589)} Vertex 10130 8.88844 0.992296 -3.15284 {normal=(-0.96454 -0.237943 0.114214)} Vertex 10131 8.89332 2.68893 -1.38139 {normal=(-0.954542 -0.289887 0.0693906)} Vertex 10132 8.89958 12.3419 -0.439584 {normal=(0.0221869 0.790893 0.611552)} Vertex 10133 8.90431 -17.6212 -5.81033 Vertex 10134 8.92126 -4.35677 -3.23025 Vertex 10135 8.92533 -45.271 3.84484 Vertex 10136 8.92681 -2.49958 -3.49388 {normal=(-0.99274 0.0430153 0.112329)} Vertex 10137 8.93978 -19.9924 0.945029 {normal=(0.626647 -0.303988 0.717569)} Vertex 10138 8.94161 -43.3202 3.79385 Vertex 10139 8.94353 -22.1882 -3.16712 Vertex 10140 8.94565 -15.4831 0.513085 {normal=(0.861469 0.246963 0.443712)} Vertex 10141 8.94586 -15.6253 0.355535 {normal=(-0.697634 -0.308789 0.646495)} Vertex 10142 8.95974 -16.1879 -0.032894 {normal=(-0.580253 -0.785748 -0.214257)} Vertex 10143 8.96265 -16.1634 0.09069 Vertex 10144 8.96696 -15.4864 0.456328 Vertex 10145 8.97982 -15.2233 0.317066 Vertex 10146 8.98669 5.18228 -0.208585 {normal=(-0.594376 -0.100539 0.797878)} Vertex 10147 8.99399 4.18484 -0.408676 {normal=(-0.685609 -0.178309 0.705794)} Vertex 10148 8.99822 -16.1599 -0.172204 {normal=(-0.418308 -0.660946 -0.623032)} Vertex 10149 9.00267 5.85447 -0.203232 {normal=(-0.574295 -0.0629756 0.816222)} Vertex 10150 9.01907 5.47591 -5.51982 {normal=(-0.467179 0.0947489 -0.879071)} Vertex 10151 9.02326 -44.3842 1.9165 {normal=(0.977223 0.0862423 -0.193903)} Vertex 10152 9.03366 -45.027 1.92883 Vertex 10153 9.05243 -15.6891 -0.281141 Vertex 10154 9.07107 -15.833 -0.318259 Vertex 10155 9.0753 11.1982 0.508086 {normal=(0.168588 0.56024 0.810993)} Vertex 10156 9.07901 7.93967 -5.49622 {normal=(0.0829001 -0.211654 -0.973823)} Vertex 10157 9.09858 -4.33885 -2.40005 Vertex 10158 9.10999 6.90209 -5.35687 {normal=(-0.109839 -0.0667698 -0.991704)} Vertex 10159 9.12111 -14.9301 0.658219 Vertex 10160 9.12383 -4.29743 -3.38804 Vertex 10161 9.12588 -44.3663 3.86857 Vertex 10162 9.13092 -15.4145 -0.164885 Vertex 10163 9.1409 1.04284 -2.6797 {normal=(-0.694072 -0.200473 0.691429)} Vertex 10164 9.14485 -15.2381 0.870755 Vertex 10165 9.14724 -45.027 3.87047 Vertex 10166 9.15542 -15.9807 -0.317903 Vertex 10167 9.16476 -4.33881 -4.65661 Vertex 10168 9.16963 -16.2903 0.101243 Vertex 10169 9.18908 -19.7174 -6.98808 Vertex 10170 9.19167 -15.8061 0.452515 {normal=(-0.482999 -0.511776 0.710491)} Vertex 10171 9.19829 6.73228 -5.36579 {normal=(-0.17347 0.156073 -0.972394)} Vertex 10172 9.19965 -16.2701 0.016926 {normal=(-0.0317213 -0.992031 -0.121937)} Vertex 10173 9.20505 0.8743 -3.91664 {normal=(-0.959092 -0.173456 -0.223731)} Vertex 10174 9.20513 2.55755 -2.41703 {normal=(-0.64026 -0.352765 0.682366)} Vertex 10175 9.22194 -16.2233 -0.121848 {normal=(0.0798424 -0.846543 -0.526299)} Vertex 10176 9.23886 -14.7596 0.84387 Vertex 10177 9.24253 -14.9671 1.16286 Vertex 10178 9.24255 -0.993387 -3.47699 {normal=(-0.982179 0.0699884 0.174433)} Vertex 10179 9.24557 2.61353 -2.19345 {normal=(-0.919171 -0.383696 0.0888897)} Vertex 10180 9.24875 -2.50084 -4.82542 {normal=(-0.901209 0.0133499 -0.43318)} Vertex 10181 9.25048 -0.176438 -3.27873 {normal=(-0.967111 -0.148887 0.206228)} Vertex 10182 9.25302 -2.50044 -2.70947 {normal=(-0.851469 0.0858792 0.517325)} Vertex 10183 9.27318 -21.3452 -5.73709 Vertex 10184 9.27479 3.10244 -0.442654 {normal=(-0.662635 -0.222995 0.714974)} Vertex 10185 9.27918 -15.6482 0.662059 {normal=(-0.514415 -0.568742 0.641802)} Vertex 10186 9.28703 -17.6027 -5.58686 Vertex 10187 9.28865 10.0415 1.28198 {normal=(0.29863 0.374524 0.877811)} Vertex 10188 9.29334 -0.93602 -4.59519 {normal=(-0.929326 0.0857393 -0.359168)} Vertex 10189 9.29982 -0.208133 -4.24676 {normal=(-0.969871 -0.0202809 -0.242775)} Vertex 10190 9.30604 1.628 -1.35177 {normal=(-0.883305 -0.441581 0.157409)} Vertex 10191 9.30795 -15.1184 0.014277 Vertex 10192 9.30952 -19.7285 -6.43079 Vertex 10193 9.31831 2.13904 -5.14951 {normal=(-0.771785 -0.258861 -0.580809)} Vertex 10194 9.31843 -16.0043 -0.265824 Vertex 10195 9.32017 0.94983 -4.4582 {normal=(-0.933013 -0.154233 -0.325114)} Vertex 10196 9.32171 4.06305 -5.73758 {normal=(-0.355402 -0.125697 -0.926223)} Vertex 10197 9.33232 -14.5438 1.13985 Vertex 10198 9.33784 -15.4982 -1.50529 Vertex 10199 9.34365 -4.27747 -4.70197 Vertex 10200 9.36026 -16.2195 0.208991 Vertex 10201 9.36295 12.0082 -3.99928 {normal=(0.37952 0.760209 -0.527302)} Vertex 10202 9.36658 -15.6872 -0.257401 {normal=(0.26658 0.198211 -0.943211)} Vertex 10203 9.40524 -4.27188 -2.68702 Vertex 10204 9.41079 -16.206 -0.042953 {normal=(0.437698 -0.805916 -0.398649)} Vertex 10205 9.42007 -15.3946 0.986371 {normal=(-0.514313 -0.568324 0.642253)} Vertex 10206 9.44001 -16.2222 0.175871 Vertex 10207 9.44467 -16.0094 0.412612 {normal=(-0.206552 -0.670828 0.712268)} Vertex 10208 9.44532 11.2386 -5.18265 {normal=(0.459384 0.547022 -0.699809)} Vertex 10209 9.44726 4.77119 -5.7723 {normal=(-0.300863 0.0365478 -0.952967)} Vertex 10210 9.44826 -15.3865 -1.76839 Vertex 10211 9.44853 3.47707 -5.55829 {normal=(-0.368421 -0.159727 -0.915835)} Vertex 10212 9.45522 -15.9969 -0.23507 Vertex 10213 9.46207 -14.8063 0.280058 Vertex 10214 9.46959 -15.51 -1.22994 Vertex 10215 9.50647 -15.9251 0.255295 Vertex 10216 9.52467 -1.09417 -2.9647 {normal=(-0.828883 0.0793682 0.553763)} Vertex 10217 9.5341 -15.2045 1.24693 {normal=(-0.47011 -0.467224 0.748798)} Vertex 10218 9.54165 -14.6553 0.45666 Vertex 10219 9.54451 -14.5447 1.49722 Vertex 10220 9.54713 -15.8851 0.56992 Vertex 10221 9.55726 -15.9385 0.526657 Vertex 10222 9.5696 -14.5516 0.682242 Vertex 10223 9.57185 -4.29444 -1.54782 Vertex 10224 9.58125 6.28773 0.06475 {normal=(-0.250481 -0.232061 0.939897)} Vertex 10225 9.58199 -15.7702 0.867382 Vertex 10226 9.58468 8.99371 1.34566 {normal=(0.290185 -0.0419521 0.956051)} Vertex 10227 9.5879 -0.053116 -5.00576 {normal=(-0.890856 -0.0199154 -0.45385)} Vertex 10228 9.59717 6.00617 -5.57221 {normal=(-0.170976 0.243262 -0.954773)} Vertex 10229 9.61545 1.08211 -5.16186 {normal=(-0.867829 -0.111896 -0.4841)} Vertex 10230 9.61605 6.44918 0.13333 {normal=(-0.137717 -0.466713 0.873621)} Vertex 10231 9.63054 -0.150637 -2.6132 {normal=(-0.727683 -0.150915 0.669105)} Vertex 10232 9.63827 2.09717 -0.490344 {normal=(-0.565849 -0.347977 0.747481)} Vertex 10233 9.63894 7.02585 0.456604 {normal=(0.0441308 -0.547013 0.83596)} Vertex 10234 9.64369 -16.0826 0.155483 Vertex 10235 9.65546 1.26999 -2.45644 {normal=(-0.711896 -0.214527 0.668717)} Vertex 10236 9.66799 7.74706 0.924819 {normal=(0.187264 -0.443854 0.876314)} Vertex 10237 9.67313 -15.6468 0.928454 Vertex 10238 9.67962 -15.2565 -0.05794 {normal=(0.372879 0.343106 -0.862113)} Vertex 10239 9.67989 -15.8386 -0.1016 Vertex 10240 9.68869 -16.1883 0.384223 Vertex 10241 9.70212 -15.5374 0.234933 Vertex 10242 9.71841 -15.5205 0.468435 {normal=(-0.794558 0.605243 -0.0485663)} Vertex 10243 9.72184 1.3262 -2.23653 {normal=(-0.919343 -0.374696 0.120046)} Vertex 10244 9.72934 -16.1599 0.625094 {normal=(-0.757255 -0.613485 0.224055)} Vertex 10245 9.73154 -14.0222 0.985885 Vertex 10246 9.73154 0.01042 -5.26248 {normal=(-0.882801 -0.0776922 -0.463277)} Vertex 10247 9.73661 -16.0595 0.850463 Vertex 10248 9.73715 12.8281 -2.73469 {normal=(0.238096 0.926131 -0.292561)} Vertex 10249 9.73866 2.44708 -5.66819 {normal=(-0.382813 -0.129496 -0.914705)} Vertex 10250 9.74596 -4.28925 -5.4962 Vertex 10251 9.75577 -19.7527 -6.08434 Vertex 10252 9.75612 -15.4313 0.683442 Vertex 10253 9.7604 -21.461 -1.2275 Vertex 10254 9.76182 5.40737 0.003398 {normal=(-0.176597 -0.0573567 0.982611)} Vertex 10255 9.77394 -15.3139 -0.713082 Vertex 10256 9.77716 -16.0328 -1.77378 Vertex 10257 9.78416 4.38373 -0.036203 {normal=(-0.24192 -0.0854412 0.966527)} Vertex 10258 9.7936 -15.9753 0.100159 Vertex 10259 9.7942 -15.3524 -0.39644 Vertex 10260 9.79645 -16.0396 -1.14011 Vertex 10261 9.80458 -16.0672 -1.45693 Vertex 10262 9.80722 -14.2928 0.470013 Vertex 10263 9.82269 -15.4349 -1.23279 Vertex 10264 9.8233 1.24077 -5.45815 {normal=(-0.61358 -0.0394517 -0.788646)} Vertex 10265 9.82394 -0.959323 -5.26112 {normal=(-0.738026 0.0145501 -0.674615)} Vertex 10266 9.82697 -17.6931 -0.000768 {normal=(0.886088 0.122042 0.447162)} Vertex 10267 9.82779 -15.8746 0.416379 Vertex 10268 9.82793 -15.3148 -0.080776 Vertex 10269 9.82831 4.14704 -5.78171 {normal=(-0.0638109 -0.127118 -0.989833)} Vertex 10270 9.8301 -15.4674 -1.46372 Vertex 10271 9.83246 -15.6575 -0.623767 Vertex 10272 9.83412 -14.6562 1.63673 Vertex 10273 9.84089 -4.23232 -1.97828 Vertex 10274 9.84129 -15.4283 -1.69507 Vertex 10275 9.84366 -13.5396 0.834674 Vertex 10276 9.84828 -15.4341 1.23197 Vertex 10277 9.85591 -13.5405 -0.037375 Vertex 10278 9.86292 -15.6942 -0.382872 {normal=(-0.968496 -0.228383 0.0992811)} Vertex 10279 9.8662 -15.7829 0.054908 Vertex 10280 9.87019 11.8408 -0.00659 {normal=(0.242992 0.599231 0.762809)} Vertex 10281 9.8715 0.167996 -5.67131 {normal=(-0.738623 0.010097 -0.674043)} Vertex 10282 9.88043 -14.9543 0.203369 {normal=(0.454624 0.47344 -0.754435)} Vertex 10283 9.88307 -2.44324 -5.57819 {normal=(-0.622611 0.014429 -0.782399)} Vertex 10284 9.88332 -2.44321 -2.029 {normal=(-0.700089 0.142851 0.699621)} Vertex 10285 9.88576 -15.6557 -0.141455 Vertex 10286 9.88896 -15.5752 0.09549 Vertex 10287 9.89669 3.36702 -0.11203 {normal=(-0.260442 -0.14493 0.95455)} Vertex 10288 9.89984 -15.7575 0.961197 Vertex 10289 9.91631 -13.2561 0.680038 Vertex 10290 9.92759 -16.1117 0.112918 Vertex 10291 9.93864 -14.0007 1.39393 Vertex 10292 9.94118 -0.772566 -5.41739 {normal=(-0.734116 -0.236309 -0.636579)} Vertex 10293 9.96338 -4.2212 -5.44755 Vertex 10294 9.96899 -15.5808 0.90871 Vertex 10295 9.97122 -14.8082 0.37878 {normal=(0.56431 0.649292 -0.509877)} Vertex 10296 9.97415 3.50325 -5.6892 {normal=(-0.0296027 -0.109298 -0.993568)} Vertex 10297 9.98007 -14.7642 0.578683 Vertex 10298 9.99053 -16.2791 -1.70685 Vertex 10299 10.0026 11.1862 -4.56491 {normal=(0.520634 0.55206 -0.651283)} Vertex 10300 10.0076 -13.4063 -0.144325 Vertex 10301 10.01 -16.3625 -0.663164 Vertex 10302 10.015 -15.6201 0.760091 Vertex 10303 10.0175 -15.866 0.997665 Vertex 10304 10.0194 -16.2767 -1.22267 Vertex 10305 10.0195 -15.2187 -2.24603 Vertex 10306 10.026 5.30314 -5.82455 {normal=(-0.0673661 0.142937 -0.987437)} Vertex 10307 10.0284 -0.933655 -2.35618 {normal=(-0.662809 0.0490969 0.747177)} Vertex 10308 10.0297 0.740176 -1.21487 {normal=(-0.641258 -0.617424 0.455605)} Vertex 10309 10.0298 -16.3056 -1.46581 {normal=(-0.627658 -0.778215 -0.0206705)} Vertex 10310 10.0315 -15.0685 -0.417614 {normal=(-0.591011 0.806093 0.0303428)} Vertex 10311 10.036 -15.6257 -1.02428 Vertex 10312 10.0372 -15.0344 -0.64981 Vertex 10313 10.0377 -14.9516 1.60192 Vertex 10314 10.0497 -15.1603 -2.54581 Vertex 10315 10.0513 -16.3232 -0.148261 Vertex 10316 10.0542 -15.3998 -0.865201 Vertex 10317 10.0548 -15.2401 -1.93361 Vertex 10318 10.0605 -15.9198 -1.90888 Vertex 10319 10.062 -15.034 -0.18731 Vertex 10320 10.0628 -13.9021 0.410332 Vertex 10321 10.0656 -16.3722 -0.406254 {normal=(-0.855944 -0.500299 0.130615)} Vertex 10322 10.0703 -12.9986 0.337294 Vertex 10323 10.0713 -15.6141 -1.9045 Vertex 10324 10.077 -15.5485 -0.868527 Vertex 10325 10.0877 -15.9294 -1.01747 Vertex 10326 10.0974 -0.474518 -5.85231 {normal=(-0.651328 -0.259794 -0.712937)} Vertex 10327 10.0979 2.70569 -5.68303 {normal=(-0.0171046 -0.0195918 -0.999662)} Vertex 10328 10.1011 -15.1757 0.356879 {normal=(-0.480047 0.866139 -0.139134)} Vertex 10329 10.1163 -15.3133 0.355448 Vertex 10330 10.1168 -15.4365 0.946823 Vertex 10331 10.1302 -15.4011 0.024308 Vertex 10332 10.132 -15.5939 -2.45618 Vertex 10333 10.1335 10.3171 0.35981 {normal=(0.485 0.318486 0.814458)} Vertex 10334 10.138 -16.0187 -1.93088 Vertex 10335 10.1388 1.32248 -0.667843 {normal=(-0.430404 -0.493903 0.755522)} Vertex 10336 10.1421 -19.9816 -0.674959 {normal=(0.880156 -0.196577 0.432068)} Vertex 10337 10.146 -21.2852 -3.17337 Vertex 10338 10.1489 -0.004846 -2.15999 {normal=(-0.708377 -0.204946 0.675426)} Vertex 10339 10.1711 -15.2668 -0.865934 Vertex 10340 10.1721 -15.626 -2.22149 {normal=(-0.905656 -0.374125 0.199543)} Vertex 10341 10.1756 -16.6364 0.438455 Vertex 10342 10.1782 -15.545 0.046677 Vertex 10343 10.1807 -15.2394 0.057896 Vertex 10344 10.1822 -15.161 0.345594 {normal=(-0.421163 0.894788 -0.148247)} Vertex 10345 10.1867 -14.535 0.336458 Vertex 10346 10.1903 -15.2376 1.29131 Vertex 10347 10.1908 2.33905 -0.264528 {normal=(-0.225667 -0.240555 0.944038)} Vertex 10348 10.1922 -16.017 -1.01276 Vertex 10349 10.2043 -14.0961 1.46342 {normal=(-0.0500185 0.281336 0.958305)} Vertex 10350 10.2058 -13.3561 1.23215 Vertex 10351 10.2094 -15.9057 0.14528 Vertex 10352 10.2152 1.33698 -5.60939 {normal=(-0.129104 0.0709436 -0.98909)} Vertex 10353 10.2162 9.76619 -5.44123 {normal=(0.596692 0.157231 -0.786916)} Vertex 10354 10.2165 -15.1736 0.533762 Vertex 10355 10.2185 -15.266 0.014522 Vertex 10356 10.2212 -16.1784 -0.939108 Vertex 10357 10.227 -15.4613 -0.042742 Vertex 10358 10.232 -15.882 0.137164 Vertex 10359 10.2356 -15.1002 0.797242 Vertex 10360 10.2414 -16.5666 0.948636 Vertex 10361 10.2429 -15.1136 0.633678 Vertex 10362 10.2494 -16.6207 0.69106 {normal=(-0.602677 -0.773006 0.198098)} Vertex 10363 10.2511 -16.6647 -0.743094 Vertex 10364 10.2557 0.277446 -5.88806 {normal=(-0.298352 0.17647 -0.938)} Vertex 10365 10.256 -15.2048 0.096699 {normal=(-0.538933 0.818721 -0.198109)} Vertex 10366 10.2575 -21.32 -2.89933 Vertex 10367 10.2658 -15.611 -1.98963 Vertex 10368 10.2676 -15.4349 -2.6733 Vertex 10369 10.2685 6.5225 0.103263 {normal=(0.378412 -0.298762 0.876097)} Vertex 10370 10.2701 -21.311 -3.44826 Vertex 10371 10.2733 -0.053182 -1.91368 {normal=(-0.598715 -0.480383 0.640916)} Vertex 10372 10.2772 -15.9533 0.138717 Vertex 10373 10.2792 -15.7233 0.819898 Vertex 10374 10.2795 -13.9457 -0.018693 Vertex 10375 10.2811 -15.5724 -2.70249 Vertex 10376 10.2866 -14.9481 -1.44648 Vertex 10377 10.2905 -17.5936 -2.30108 Vertex 10378 10.2971 6.33747 0.050988 {normal=(0.332193 -0.0663457 0.940875)} Vertex 10379 10.3017 -16.1019 0.063706 Vertex 10380 10.3052 -15.1998 -0.996663 Vertex 10381 10.3073 -15.1012 0.570992 {normal=(-0.526111 0.849344 -0.0426811)} Vertex 10382 10.3082 12.4185 -0.866307 {normal=(0.347701 0.824493 0.446447)} Vertex 10383 10.3119 -15.7251 0.800386 Vertex 10384 10.3126 -16.4159 0.14436 Vertex 10385 10.3129 -16.5418 -1.29802 Vertex 10386 10.3182 -15.2769 0.801145 Vertex 10387 10.3195 -16.6556 -0.4016 {normal=(-0.527028 -0.838228 0.140056)} Vertex 10388 10.3211 8.35868 -5.18312 {normal=(0.576228 -0.073174 -0.814006)} Vertex 10389 10.3252 -16.4802 -1.82208 Vertex 10390 10.3349 4.23102 -5.82585 {normal=(0.0307861 -0.105974 -0.993892)} Vertex 10391 10.3406 -15.7759 0.466045 Vertex 10392 10.3409 -16.3972 -0.983203 Vertex 10393 10.3466 -14.9758 -1.14076 Vertex 10394 10.3471 -16.2631 -2.56731 Vertex 10395 10.3498 -15.7605 0.838861 Vertex 10396 10.3604 -16.61 -0.056382 Vertex 10397 10.368 -14.961 -1.43453 {normal=(-0.0649105 0.99373 -0.0910301)} Vertex 10398 10.3704 -16.3094 -2.08445 Vertex 10399 10.3711 -15.0746 -2.24184 {normal=(-0.337819 0.936216 0.0968443)} Vertex 10400 10.3828 -14.2139 0.30043 Vertex 10401 10.39 7.47559 -5.08956 {normal=(0.486227 0.106107 -0.867366)} Vertex 10402 10.3943 -15.7329 -1.81436 Vertex 10403 10.396 -16.4804 -1.56853 {normal=(-0.483703 -0.875232 0.000109375)} Vertex 10404 10.3977 -15.0368 -2.4732 Vertex 10405 10.3981 -12.782 1.20435 Vertex 10406 10.3985 -15.0905 -2.0049 Vertex 10407 10.4033 -16.0661 -2.82281 Vertex 10408 10.4049 -17.4539 -2.61459 Vertex 10409 10.4049 -15.7899 0.465994 {normal=(0.241552 0.93281 -0.267427)} Vertex 10410 10.4119 -15.6659 -1.1103 Vertex 10411 10.4134 -15.7945 0.46378 Vertex 10412 10.4136 -15.4701 -0.797937 Vertex 10413 10.4136 -15.7521 -1.11693 Vertex 10414 10.4228 -17.6652 -1.96881 Vertex 10415 10.4232 -15.2761 -1.85305 Vertex 10416 10.4271 -15.0278 -1.72507 Vertex 10417 10.4283 -14.9789 -1.18179 {normal=(-0.210563 0.97747 0.0146675)} Vertex 10418 10.4287 -4.22971 -5.97208 Vertex 10419 10.4325 -13.6979 -0.190373 Vertex 10420 10.4337 -14.2675 1.51813 Vertex 10421 10.4344 -0.524662 -6.01673 {normal=(-0.133478 -0.33389 -0.933114)} Vertex 10422 10.4378 7.29163 -5.12198 {normal=(0.348707 0.37417 -0.859302)} Vertex 10423 10.4379 -15.586 -1.10456 Vertex 10424 10.44 -15.7404 -1.84434 Vertex 10425 10.4405 -16.2802 1.13673 Vertex 10426 10.4419 -15.642 -1.79093 Vertex 10427 10.4525 -16.3158 -2.33928 {normal=(-0.795815 -0.534729 0.284152)} Vertex 10428 10.4596 -15.5196 -0.094213 Vertex 10429 10.46 -15.5197 -0.811788 Vertex 10430 10.462 12.7106 -2.03032 {normal=(0.392217 0.917647 0.0639596)} Vertex 10431 10.4665 -15.2701 -0.069142 Vertex 10432 10.4739 12.3414 -3.34505 {normal=(0.379122 0.779829 -0.49813)} Vertex 10433 10.4743 5.49132 0.03785 {normal=(0.213158 0.0819238 0.973577)} Vertex 10434 10.4752 -15.6743 0.118331 Vertex 10435 10.4773 -16.5984 0.148561 Vertex 10436 10.4787 -16.2539 -1.08276 Vertex 10437 10.4807 -15.7519 -1.12062 Vertex 10438 10.4859 -16.3042 0.1161 Vertex 10439 10.4884 -15.7835 -1.38983 Vertex 10440 10.4923 -16.8496 0.389597 Vertex 10441 10.4924 -11.0253 -1.15006 Vertex 10442 10.4946 -15.0218 -1.6631 {normal=(-0.172872 0.959641 -0.221821)} Vertex 10443 10.4976 -15.0008 0.002019 Vertex 10444 10.4992 -15.0291 -0.044895 Vertex 10445 10.5016 -15.4526 -0.783953 Vertex 10446 10.5037 -15.4386 -1.85885 Vertex 10447 10.5039 -0.840393 -5.82585 {normal=(-0.129675 -0.394275 -0.909798)} Vertex 10448 10.5182 -15.6378 -1.68701 Vertex 10449 10.5183 3.54133 -5.62425 {normal=(0.105146 -0.14251 -0.984193)} Vertex 10450 10.5195 9.12227 0.911131 {normal=(0.665664 0.130153 0.734814)} Vertex 10451 10.5271 -14.8386 -0.465588 {normal=(-0.192863 0.981073 -0.0173146)} Vertex 10452 10.5305 -14.6859 0.651277 Vertex 10453 10.5312 -11.4201 -2.49583 Vertex 10454 10.5329 -2.38423 -5.89145 {normal=(-0.271651 0.0217085 -0.962151)} Vertex 10455 10.5331 -15.6176 -1.86309 Vertex 10456 10.5372 -15.5489 0.692284 Vertex 10457 10.5383 -15.452 -0.100028 Vertex 10458 10.54 -15.5169 -0.087701 Vertex 10459 10.5411 -16.2934 -2.09395 Vertex 10460 10.5439 -15.3174 -1.84967 Vertex 10461 10.548 -15.9902 0.146957 Vertex 10462 10.548 -15.7557 -1.47685 Vertex 10463 10.5492 -13.4731 1.26807 {normal=(-0.0742598 0.191989 0.978584)} Vertex 10464 10.55 -15.2231 -2.67935 Vertex 10465 10.5501 -15.1011 0.704146 Vertex 10466 10.5516 -15.8172 -0.905828 Vertex 10467 10.5529 -15.8316 -2.03726 Vertex 10468 10.554 -16.2804 -2.90411 Vertex 10469 10.5547 -14.8855 0.52964 Vertex 10470 10.5561 1.24434 -0.551981 {normal=(-0.127782 -0.491734 0.861318)} Vertex 10471 10.5577 -15.7618 -1.45611 Vertex 10472 10.56 -1.0925 -5.79057 {normal=(-0.241449 0.0112347 -0.970349)} Vertex 10473 10.5619 -15.592 -0.454099 Vertex 10474 10.566 -16.6071 -2.74803 Vertex 10475 10.567 -14.892 0.582293 Vertex 10476 10.5727 -15.7302 0.422932 {normal=(0.688004 -0.721243 0.0803675)} Vertex 10477 10.5767 -16.837 0.685875 Vertex 10478 10.5853 -16.7737 1.02883 Vertex 10479 10.5902 -16.5051 -0.965312 Vertex 10480 10.5967 -15.7235 -1.4972 {normal=(-0.0424419 0.99663 0.0702025)} Vertex 10481 10.597 6.45553 -5.50768 {normal=(0.192739 0.379445 -0.904916)} Vertex 10482 10.6017 -15.5486 -2.6712 Vertex 10483 10.6019 -15.0985 -1.00007 Vertex 10484 10.6048 -15.9776 -0.907205 Vertex 10485 10.61 -14.8464 -0.465764 {normal=(-0.139495 0.989874 -0.0262834)} Vertex 10486 10.6122 -16.127 0.148446 Vertex 10487 10.6133 2.79154 -5.59136 {normal=(0.192014 -0.0314113 -0.980889)} Vertex 10488 10.6134 -14.5472 1.21956 Vertex 10489 10.6188 -15.7534 -0.069459 Vertex 10490 10.6205 -14.8559 0.038575 Vertex 10491 10.6224 -15.5636 -0.447075 {normal=(0.387812 -0.921731 -0.00360869)} Vertex 10492 10.629 -16.4459 1.13878 Vertex 10493 10.6324 -14.8784 -0.760937 Vertex 10494 10.6328 -15.0873 -0.892955 Vertex 10495 10.6334 -0.765666 -2.08109 {normal=(-0.454276 -0.074811 0.887714)} Vertex 10496 10.6354 -14.861 -0.169522 Vertex 10497 10.6371 -15.0617 -0.026158 Vertex 10498 10.6405 -19.7502 -2.96992 Vertex 10499 10.6423 -15.7912 -1.20308 Vertex 10500 10.6461 -15.5561 -0.464796 Vertex 10501 10.6463 9.76304 -4.7473 {normal=(0.645107 0.164263 -0.746227)} Vertex 10502 10.6474 -15.8692 0.973914 Vertex 10503 10.6505 -15.6214 -2.71031 Vertex 10504 10.6516 -14.7563 0.214658 Vertex 10505 10.6554 -14.9287 0.053196 {normal=(0.308436 0.535946 -0.785894)} Vertex 10506 10.6589 4.60609 0.086972 {normal=(0.145829 0.0466376 0.98821)} Vertex 10507 10.6614 -14.7733 0.416879 Vertex 10508 10.6651 -12.9828 -0.666245 {normal=(-0.757554 -0.150716 -0.635136)} Vertex 10509 10.6765 -15.4494 0.063173 Vertex 10510 10.678 7.94452 0.527652 {normal=(0.653918 -0.234478 0.719313)} Vertex 10511 10.678 -4.1563 -5.78225 Vertex 10512 10.6792 -10.8455 -0.544866 Vertex 10513 10.6845 -16.3902 0.084887 Vertex 10514 10.6886 -15.0544 -0.011704 {normal=(0.404373 0.161185 -0.900279)} Vertex 10515 10.6925 7.13321 0.082106 {normal=(0.633104 -0.356989 0.686832)} Vertex 10516 10.6939 -16.4894 -2.14899 Vertex 10517 10.6956 -14.8473 0.42543 Vertex 10518 10.6982 -15.9909 -2.06029 Vertex 10519 10.699 -12.519 0.999461 Vertex 10520 10.7014 -16.8112 -0.679954 Vertex 10521 10.7066 -14.8155 0.221239 Vertex 10522 10.7073 -14.8731 -0.709271 {normal=(-0.265179 0.958743 -0.102431)} Vertex 10523 10.7079 -15.6787 -1.64124 Vertex 10524 10.7098 -14.8587 -0.222102 {normal=(-0.266615 0.962164 0.0561865)} Vertex 10525 10.71 -15.1684 -1.78481 Vertex 10526 10.7127 1.21392 -5.59313 {normal=(0.237238 0.184731 -0.953726)} Vertex 10527 10.7148 -15.5037 -2.68454 {normal=(0.23555 -0.455227 -0.858653)} Vertex 10528 10.7157 -15.7347 -2.83193 Vertex 10529 10.7191 -15.7961 0.527957 Vertex 10530 10.7196 -15.3947 -1.08171 Vertex 10531 10.7226 -12.1474 -0.269684 Vertex 10532 10.7244 -11.7558 -0.984979 {normal=(-0.997857 -0.0525639 -0.0389629)} Vertex 10533 10.7249 -16.6535 -2.46258 Vertex 10534 10.7259 -14.8734 -1.07157 Vertex 10535 10.7269 -15.9091 -0.072221 Vertex 10536 10.7327 -15.8539 -2.86529 Vertex 10537 10.7335 -14.8566 -1.12313 Vertex 10538 10.7362 -15.3288 0.615248 Vertex 10539 10.7382 -16.0004 0.970921 Vertex 10540 10.7413 -16.3522 0.15375 Vertex 10541 10.7426 -15.6939 -0.506093 Vertex 10542 10.7429 -15.9078 -1.22531 Vertex 10543 10.7437 -19.8397 -2.59471 Vertex 10544 10.7467 -14.9368 0.52599 {normal=(0.568594 0.487586 0.662541)} Vertex 10545 10.7495 -16.7526 -0.146369 Vertex 10546 10.7498 -14.4184 0.589041 Vertex 10547 10.7525 -16.3803 -1.04931 Vertex 10548 10.7535 -14.9514 0.064113 {normal=(0.499025 0.462884 -0.732607)} Vertex 10549 10.7599 -15.7087 0.213064 Vertex 10550 10.7629 -11.0447 -1.08783 Vertex 10551 10.7664 -16.7971 -0.414976 Vertex 10552 10.7666 -16.7698 -1.91735 Vertex 10553 10.7715 -16.1306 -1.94264 Vertex 10554 10.7722 -15.7787 -1.66207 Vertex 10555 10.7772 -15.8206 -0.511851 Vertex 10556 10.7792 -11.7079 -3.53787 Vertex 10557 10.7815 -15.5478 -2.02272 Vertex 10558 10.7833 -15.7841 0.509618 Vertex 10559 10.7868 -15.3841 -0.746702 Vertex 10560 10.787 -19.6814 -3.33927 Vertex 10561 10.7895 -0.209263 -6.05512 {normal=(0.286636 -0.0835695 -0.954388)} Vertex 10562 10.7897 -15.3667 -0.157165 Vertex 10563 10.7904 -14.8768 0.405624 {normal=(0.617148 0.696345 0.366377)} Vertex 10564 10.7941 -16.451 -2.14016 Vertex 10565 10.7955 -15.9079 -2.07957 Vertex 10566 10.7955 -16.0007 -0.923008 Vertex 10567 10.7968 -15.4446 -1.64196 Vertex 10568 10.7977 -16.273 -3.03447 {normal=(-0.384879 -0.198236 -0.901427)} Vertex 10569 10.8029 -16.7017 -1.23085 Vertex 10570 10.8072 -14.9043 -1.65857 Vertex 10571 10.8119 -14.8261 0.212714 Vertex 10572 10.8131 5.51172 -5.70524 {normal=(0.16873 0.212803 -0.962416)} Vertex 10573 10.8136 -14.9301 -1.70804 Vertex 10574 10.814 -14.1873 0.185369 Vertex 10575 10.8149 0.381758 -5.94557 {normal=(0.265855 0.217487 -0.93916)} Vertex 10576 10.8156 -15.6309 -2.37675 Vertex 10577 10.817 -15.5095 -0.44835 {normal=(0.440419 -0.897695 0.0132109)} Vertex 10578 10.8179 -4.18087 -0.639688 Vertex 10579 10.8187 -15.4068 0.331408 {normal=(0.877963 -0.478627 0.00988142)} Vertex 10580 10.8236 -15.2098 0.093167 Vertex 10581 10.8277 -2.35746 -1.27515 {normal=(-0.41555 0.208832 0.885272)} Vertex 10582 10.8293 -16.7344 -1.57647 Vertex 10583 10.8327 -15.8253 -1.24594 Vertex 10584 10.8332 -15.7729 -2.92082 Vertex 10585 10.8344 -11.4471 -2.47008 Vertex 10586 10.8357 -16.6305 -2.13986 Vertex 10587 10.8361 -12.1674 -1.66008 {normal=(-0.961959 -0.241082 -0.12851)} Vertex 10588 10.8361 -12.9673 1.26495 Vertex 10589 10.8379 -15.6465 -2.03831 Vertex 10590 10.8394 -13.6742 1.35711 Vertex 10591 10.8426 -16.3463 -1.08643 Vertex 10592 10.8456 -11.2438 -1.77865 Vertex 10593 10.8481 -15.5361 0.615558 {normal=(-0.855697 0.502818 0.122298)} Vertex 10594 10.8501 6.5401 -0.418145 {normal=(0.690501 0.0768489 0.719237)} Vertex 10595 10.8532 -15.492 -1.34794 {normal=(0.690101 -0.707548 0.15211)} Vertex 10596 10.8545 6.71498 -0.409505 {normal=(0.737132 -0.20431 0.644123)} Vertex 10597 10.8603 -11.0918 -0.213886 Vertex 10598 10.864 -15.1282 0.466755 Vertex 10599 10.8681 -15.135 0.138505 Vertex 10600 10.8702 -15.9098 -0.091778 Vertex 10601 10.8706 -15.7268 -1.67847 {normal=(-0.630827 0.774921 -0.0394313)} Vertex 10602 10.8728 -14.8769 -2.24192 {normal=(-0.146105 0.987794 0.0540006)} Vertex 10603 10.8791 -4.13804 -0.986501 Vertex 10604 10.8805 -15.6845 -2.41068 {normal=(0.495315 0.865984 -0.0688107)} Vertex 10605 10.8806 -16.3333 1.20423 Vertex 10606 10.8809 -15.5007 -2.05257 Vertex 10607 10.8832 0.752879 -0.844994 {normal=(-0.0177161 -0.584541 0.811171)} Vertex 10608 10.8878 -15.6608 1.04154 Vertex 10609 10.8905 -14.9748 -1.08829 {normal=(0.465532 0.179983 0.866537)} Vertex 10610 10.8951 -15.0804 0.388548 Vertex 10611 10.897 -16.5672 0.427453 Vertex 10612 10.901 -14.7751 -1.18422 Vertex 10613 10.901 9.45982 -0.000788 {normal=(0.667006 0.0725027 0.741516)} Vertex 10614 10.9013 -12.47 -3.27844 {normal=(-0.999923 0.0116359 -0.00424685)} Vertex 10615 10.9022 -15.0368 0.246844 Vertex 10616 10.9053 -14.858 -1.18018 Vertex 10617 10.9075 -15.6035 -2.39309 {normal=(0.359286 -0.909459 -0.20928)} Vertex 10618 10.9125 -10.7331 -0.184582 Vertex 10619 10.9148 1.60911 -0.336224 {normal=(0.0999056 -0.34091 0.934772)} Vertex 10620 10.916 -14.9716 -0.861211 Vertex 10621 10.92 -14.9482 -0.066932 Vertex 10622 10.9201 -15.1404 -1.84063 Vertex 10623 10.9303 -15.1218 -2.66084 Vertex 10624 10.9309 -10.8519 -0.438323 Vertex 10625 10.9324 -12.4849 -3.50545 {normal=(-0.949235 0.0558398 -0.309572)} Vertex 10626 10.9349 -15.8461 -0.527289 Vertex 10627 10.949 -15.2146 -1.15255 Vertex 10628 10.9492 -15.3097 0.459072 {normal=(-0.781023 0.619189 -0.0812893)} Vertex 10629 10.9539 -14.8092 -1.56813 Vertex 10630 10.9565 -15.6155 -2.37041 {normal=(0.299732 -0.950764 -0.0787971)} Vertex 10631 10.9573 -14.8917 -1.55793 {normal=(0.683066 0.438242 -0.584265)} Vertex 10632 10.9596 -14.7406 -1.37632 Vertex 10633 10.9613 -16.536 0.95254 Vertex 10634 10.9657 -15.0234 -1.63395 {normal=(0.683208 0.0787642 -0.725964)} Vertex 10635 10.9657 -16.3151 -1.9689 Vertex 10636 10.9702 -14.0223 0.047072 Vertex 10637 10.9712 -14.946 -1.95459 Vertex 10638 10.9726 -16.5373 0.688335 {normal=(0.629973 -0.776616 0.00112665)} Vertex 10639 10.9737 -14.9251 -2.52603 Vertex 10640 10.9758 -11.5893 -2.975 Vertex 10641 10.9799 -12.4648 -2.93526 {normal=(-0.97731 -0.103909 0.184577)} Vertex 10642 10.9819 -15.438 -1.96812 Vertex 10643 10.983 -15.538 0.097654 Vertex 10644 10.9865 -14.9222 -1.18149 {normal=(0.671685 0.374095 0.639447)} Vertex 10645 10.9869 -15.427 -2.54073 {normal=(0.262595 -0.468487 -0.843542)} Vertex 10646 10.9882 -14.8158 -1.36632 Vertex 10647 10.9884 -15.7216 -2.52619 Vertex 10648 10.9983 -13.9289 -0.199665 Vertex 10649 10.9997 -15.6564 -2.50629 Vertex 10650 11.0012 -15.2484 -1.53167 Vertex 10651 11.0019 3.62603 0.05797 {normal=(0.180554 -0.0573081 0.981894)} Vertex 10652 11.002 7.49626 -4.43586 {normal=(0.802738 0.199492 -0.561974)} Vertex 10653 11.0066 -14.7359 -0.741896 Vertex 10654 11.0079 -14.7563 -0.79252 Vertex 10655 11.0094 -14.72 -0.199952 Vertex 10656 11.0097 8.43216 -4.33767 {normal=(0.672763 -0.0867454 -0.734756)} Vertex 10657 11.0099 -15.7912 -2.09578 Vertex 10658 11.0111 -14.7373 -0.148298 Vertex 10659 11.0141 -14.8927 -2.24054 {normal=(-0.0319558 0.998943 0.0330298)} Vertex 10660 11.015 -16.7028 -1.86513 {normal=(0.315202 -0.885503 -0.341368)} Vertex 10661 11.0162 -11.3374 0.051851 Vertex 10662 11.0171 -15.17 -1.21031 Vertex 10663 11.0177 10.9967 -0.088386 {normal=(0.514259 0.323364 0.794338)} Vertex 10664 11.0283 7.33807 -4.52109 {normal=(0.715051 0.4599 -0.526492)} Vertex 10665 11.0285 -16.6503 -1.32995 {normal=(0.382167 -0.787969 0.482756)} Vertex 10666 11.0333 -15.657 -3.03296 Vertex 10667 11.0342 -14.9531 -1.52806 {normal=(0.819656 0.295157 -0.490964)} Vertex 10668 11.0417 -15.6353 -2.57005 {normal=(-0.530943 0.792368 0.300421)} Vertex 10669 11.0438 2.44672 -0.137604 {normal=(0.153191 -0.201993 0.967332)} Vertex 10670 11.0463 -15.5077 -1.76154 Vertex 10671 11.0471 -15.2213 -0.741196 Vertex 10672 11.05 -15.2046 -0.17414 Vertex 10673 11.0521 -15.1926 -1.46406 Vertex 10674 11.0536 -15.8961 -2.12827 Vertex 10675 11.054 4.38983 -5.81123 {normal=(0.215729 -0.0837911 -0.972852)} Vertex 10676 11.0541 2.74427 -5.47023 {normal=(0.417355 -0.0722163 -0.90587)} Vertex 10677 11.057 -16.5528 -2.89091 Vertex 10678 11.0584 -12.6486 -1.53876 {normal=(-0.917257 -0.324561 -0.230867)} Vertex 10679 11.0626 -14.1711 1.09935 Vertex 10680 11.0628 -16.6754 -1.59999 {normal=(0.345405 -0.934679 0.0840932)} Vertex 10681 11.0634 -11.6735 -3.27665 Vertex 10682 11.0701 -14.9261 -2.47691 {normal=(-0.0673688 0.981526 -0.179077)} Vertex 10683 11.0737 -14.9358 -2.00814 {normal=(-0.0767225 0.963078 0.258058)} Vertex 10684 11.0768 3.52213 -5.5801 {normal=(0.299055 -0.213041 -0.93015)} Vertex 10685 11.0811 -11.8187 -3.95914 Vertex 10686 11.0813 -0.426052 -5.7302 {normal=(0.463686 -0.133158 -0.875936)} Vertex 10687 11.0818 -14.8644 -1.35063 Vertex 10688 11.0824 -15.1123 -1.33438 Vertex 10689 11.0867 -12.6562 0.903111 {normal=(0.373155 0.426736 0.823803)} Vertex 10690 11.107 -15.5363 -2.63813 Vertex 10691 11.1132 -15.6962 -2.13671 Vertex 10692 11.1167 -15.6203 -1.35304 Vertex 10693 11.1183 -12.5874 -3.86544 Vertex 10694 11.1306 -15.7872 -2.14632 Vertex 10695 11.1427 -13.8584 -0.467892 Vertex 10696 11.1448 6.62236 -5.13339 {normal=(0.548327 0.504969 -0.666591)} Vertex 10697 11.152 -15.261 -0.456826 {normal=(0.705685 -0.708317 0.0171648)} Vertex 10698 11.1552 -12.5531 -2.33756 {normal=(-0.930828 -0.365292 -0.010973)} Vertex 10699 11.1565 -15.0708 0.460273 {normal=(-0.819003 0.572136 -0.0435255)} Vertex 10700 11.1566 -14.6396 -0.668533 Vertex 10701 11.158 -11.73 -3.47793 Vertex 10702 11.1586 -14.6281 -0.279951 Vertex 10703 11.168 -14.7207 -0.663212 {normal=(0.556303 0.529331 -0.640574)} Vertex 10704 11.17 -14.7094 -0.280875 Vertex 10705 11.1748 -15.7971 -2.20037 Vertex 10706 11.1761 -14.8398 -0.745 {normal=(0.562961 0.160429 -0.810763)} Vertex 10707 11.1789 -14.8236 -0.192706 {normal=(0.570885 0.205129 0.794992)} Vertex 10708 11.1807 -15.3073 0.866062 Vertex 10709 11.1843 -15.7151 -3.18251 Vertex 10710 11.1854 -14.5798 -0.475874 Vertex 10711 11.1942 -14.2264 0.051637 Vertex 10712 11.1955 -13.2825 -1.11614 {normal=(-0.86453 -0.335378 -0.374312)} Vertex 10713 11.2044 11.4128 -3.86788 {normal=(0.55446 0.52875 -0.642649)} Vertex 10714 11.208 -15.538 -0.652813 Vertex 10715 11.2082 -16.5797 -2.66788 {normal=(0.189198 -0.977106 -0.0973038)} Vertex 10716 11.2127 12.1837 -2.51991 {normal=(0.630213 0.75904 -0.163372)} Vertex 10717 11.2168 -15.596 -2.78502 Vertex 10718 11.2182 -15.6405 -2.71987 Vertex 10719 11.2192 -14.1644 -2.85257 {normal=(-0.951345 -0.155957 0.265745)} Vertex 10720 11.2208 -14.6527 -0.474016 Vertex 10721 11.2234 -15.3993 -3.30074 Vertex 10722 11.2264 -14.1507 -3.46387 {normal=(-0.982426 -0.170001 -0.0770684)} Vertex 10723 11.2317 -16.2788 -2.11918 Vertex 10724 11.2324 -15.1001 -1.87066 Vertex 10725 11.2348 -15.0822 -2.62578 Vertex 10726 11.2424 -15.7842 -1.01411 Vertex 10727 11.2452 5.79061 -0.426924 {normal=(0.671586 0.257201 0.694853)} Vertex 10728 11.2466 -15.0413 -0.655389 Vertex 10729 11.2486 -15.03 -0.27166 Vertex 10730 11.2536 -14.7722 -0.6464 {normal=(0.710569 0.396775 -0.581087)} Vertex 10731 11.2554 -14.7618 -0.29562 {normal=(0.716479 0.428875 0.550203)} Vertex 10732 11.2599 1.18203 -5.31531 {normal=(0.479211 0.164195 -0.862205)} Vertex 10733 11.2661 -0.564555 -5.63842 {normal=(0.353336 0.09127 -0.931033)} Vertex 10734 11.2749 -13.9913 0.167229 Vertex 10735 11.2824 -15.3415 -2.52305 {normal=(0.271006 -0.394644 -0.877959)} Vertex 10736 11.2828 -15.349 -1.98084 Vertex 10737 11.2867 -16.5628 -2.39795 {normal=(0.391254 -0.84808 0.357325)} Vertex 10738 11.2904 -15.1544 -0.173487 {normal=(-0.917848 -0.0916883 -0.386197)} Vertex 10739 11.294 -11.8727 -4.1656 Vertex 10740 11.2993 -13.1626 1.29423 Vertex 10741 11.3019 -14.99 -0.593574 Vertex 10742 11.302 -13.7591 0.972896 Vertex 10743 11.3032 -14.9824 -0.336742 Vertex 10744 11.3132 -15.5891 -0.24729 Vertex 10745 11.3165 -14.081 -3.89894 Vertex 10746 11.3195 -14.692 -0.473394 Vertex 10747 11.3201 -13.6075 -0.037681 Vertex 10748 11.3229 -16.1298 -3.25517 {normal=(-0.395037 -0.322148 -0.860329)} Vertex 10749 11.3231 -15.6883 -2.31779 Vertex 10750 11.3244 11.6914 -0.936978 {normal=(0.657108 0.598894 0.457749)} Vertex 10751 11.3252 -15.3504 -0.077584 Vertex 10752 11.3324 8.64157 -0.444411 {normal=(0.683574 -0.155468 0.713131)} Vertex 10753 11.3345 12.042 -1.93847 {normal=(0.698311 0.700951 0.145012)} Vertex 10754 11.3385 -14.9955 0.883968 Vertex 10755 11.3437 -14.9225 -0.467114 Vertex 10756 11.3437 -11.8273 -3.81615 Vertex 10757 11.3441 -14.9346 -3.43658 Vertex 10758 11.345 -14.9334 -1.92578 Vertex 10759 11.3532 -14.8954 -1.97322 Vertex 10760 11.3534 -14.8825 -2.50652 Vertex 10761 11.3555 0.396001 -5.58136 {normal=(0.537246 0.188483 -0.822095)} Vertex 10762 11.3615 -15.413 -2.47544 {normal=(0.50142 -0.727532 -0.468268)} Vertex 10763 11.3623 -14.9145 -2.55677 Vertex 10764 11.3629 -12.9147 -2.2641 {normal=(-0.948792 -0.312255 0.0478671)} Vertex 10765 11.3657 -14.8991 0.445296 Vertex 10766 11.3874 -15.6146 -1.94062 Vertex 10767 11.3899 -15.6268 -1.23258 Vertex 10768 11.3953 -15.0347 -2.9148 {normal=(-0.977489 0.102418 0.184459)} Vertex 10769 11.3967 -15.6828 0.069326 Vertex 10770 11.4129 0.104779 -1.15676 {normal=(0.108936 -0.475932 0.872709)} Vertex 10771 11.4175 -15.6445 -2.21244 Vertex 10772 11.4259 -12.8786 0.852354 {normal=(0.591117 0.233314 0.772105)} Vertex 10773 11.4286 -14.5305 -0.43956 {normal=(-0.923936 -0.176167 -0.339569)} Vertex 10774 11.429 7.14219 -3.84169 {normal=(0.86907 0.285579 -0.403934)} Vertex 10775 11.4339 7.00977 -3.97974 {normal=(0.832157 0.475647 -0.285087)} Vertex 10776 11.44 6.54124 -1.12531 {normal=(0.884711 0.0755959 0.45997)} Vertex 10777 11.4556 -14.2987 -0.62301 {normal=(-0.912555 -0.279458 -0.298574)} Vertex 10778 11.4642 7.32507 -3.69177 {normal=(0.788294 -0.0465156 -0.613538)} Vertex 10779 11.4649 6.71814 -1.14636 {normal=(0.76616 -0.286249 0.575378)} Vertex 10780 11.4794 7.85952 -0.759694 {normal=(0.697304 -0.235457 0.676998)} Vertex 10781 11.4853 1.17198 -5.19011 {normal=(0.549642 0.15642 -0.820626)} Vertex 10782 11.4969 -15.0457 -1.97368 {normal=(0.561158 -0.0254515 0.827317)} Vertex 10783 11.497 -15.0316 -2.51499 {normal=(0.578045 0.0117327 -0.815921)} Vertex 10784 11.4971 5.6358 -5.49496 {normal=(0.458255 0.301218 -0.836224)} Vertex 10785 11.5005 -14.1902 -2.49444 {normal=(-0.935556 -0.122167 0.331375)} Vertex 10786 11.5063 -15.2357 -2.4386 {normal=(0.627894 -0.332242 -0.703821)} Vertex 10787 11.5092 -15.5923 -1.95637 Vertex 10788 11.5095 -15.2379 -2.06001 Vertex 10789 11.5138 -14.829 -2.42467 Vertex 10790 11.5171 6.43823 -4.8814 {normal=(0.701165 0.564725 -0.435263)} Vertex 10791 11.5178 -14.8373 -2.0536 Vertex 10792 11.5315 -14.7997 -2.24012 Vertex 10793 11.5337 -14.9112 -2.05298 {normal=(0.638649 0.435305 0.634537)} Vertex 10794 11.5342 -14.9009 -2.42464 {normal=(0.651104 0.477389 -0.590053)} Vertex 10795 11.5379 -14.7618 0.85201 Vertex 10796 11.5452 -14.2384 -1.86785 {normal=(-0.976555 -0.121628 0.177617)} Vertex 10797 11.5453 -15.5176 -1.37737 Vertex 10798 11.5463 -13.6625 0.543902 Vertex 10799 11.5491 -13.7826 -1.61184 {normal=(-0.959477 -0.275481 -0.059279)} Vertex 10800 11.5675 4.97147 -0.359619 {normal=(0.683989 0.222467 0.694743)} Vertex 10801 11.5678 0.328381 -5.44424 {normal=(0.516006 0.168755 -0.839797)} Vertex 10802 11.5792 -16.1325 -2.24427 Vertex 10803 11.5795 -16.0353 -1.18026 Vertex 10804 11.5799 -15.1968 -2.37561 {normal=(0.823722 -0.415635 -0.385655)} Vertex 10805 11.5819 -15.4065 -0.351269 Vertex 10806 11.5855 -15.2001 -2.12791 Vertex 10807 11.5932 6.20771 -1.89763 {normal=(0.971034 0.0763112 0.226428)} Vertex 10808 11.594 -14.993 -2.41156 {normal=(0.808412 0.149838 -0.569227)} Vertex 10809 11.5957 -14.9972 -2.07351 {normal=(0.807236 0.136784 0.574161)} Vertex 10810 11.5966 -4.12637 -6.20579 Vertex 10811 11.6002 -14.8653 -2.2431 Vertex 10812 11.6052 6.11762 -1.23264 {normal=(0.903903 0.337878 0.262294)} Vertex 10813 11.6121 -14.1644 0.578828 Vertex 10814 11.6131 -10.6159 0.158918 Vertex 10815 11.6146 -16.3906 -3.14493 Vertex 10816 11.6205 -15.9941 -3.47278 {normal=(-0.32855 -0.404176 -0.853637)} Vertex 10817 11.6227 -14.9452 -2.38692 {normal=(-0.959404 0.106116 0.26131)} Vertex 10818 11.6231 -14.7672 -2.15108 {normal=(-0.986388 -0.00583593 0.164328)} Vertex 10819 11.6338 -15.1566 -2.25184 Vertex 10820 11.6363 -15.3961 1.10208 Vertex 10821 11.6503 -14.7353 -1.54377 {normal=(-0.982599 0.0589869 0.176122)} Vertex 10822 11.6509 -11.9104 -4.22488 Vertex 10823 11.6642 -2.2815 -6.03182 {normal=(0.212097 0.0675834 -0.974909)} Vertex 10824 11.6674 -14.9406 -2.24356 Vertex 10825 11.6763 9.97247 -0.338218 {normal=(0.659415 0.0679491 0.748702)} Vertex 10826 11.6766 -16.1171 -2.33609 Vertex 10827 11.6845 6.24356 -2.07001 {normal=(0.836091 -0.195423 0.512603)} Vertex 10828 11.6926 -16.2389 -1.09365 Vertex 10829 11.7198 -14.2587 -1.35265 {normal=(-0.97462 -0.220648 -0.0378171)} Vertex 10830 11.7391 2.52511 -4.92307 {normal=(0.60914 -0.0767428 -0.789341)} Vertex 10831 11.7428 1.36648 -0.736056 {normal=(0.570119 -0.349072 0.743716)} Vertex 10832 11.751 -4.05887 -5.78443 Vertex 10833 11.7553 -15.335 -0.623129 Vertex 10834 11.7785 4.53781 -5.59161 {normal=(0.50915 -0.0363563 -0.859909)} Vertex 10835 11.7839 -14.8969 -1.00311 {normal=(-0.996325 -0.0204889 -0.0831658)} Vertex 10836 11.7965 -15.974 -0.047374 Vertex 10837 11.8023 -16.3919 -2.95023 {normal=(0.407845 -0.896454 -0.173302)} Vertex 10838 11.8069 -15.7694 0.450244 Vertex 10839 11.8123 3.39867 -5.12748 {normal=(0.564294 -0.225306 -0.794235)} Vertex 10840 11.8152 9.97106 -4.12256 {normal=(0.685073 0.17634 -0.706809)} Vertex 10841 11.8439 -16.3714 -2.67096 {normal=(0.526826 -0.799496 0.28855)} Vertex 10842 11.8518 7.09864 -1.27433 {normal=(0.705554 -0.374444 0.601652)} Vertex 10843 11.8588 11.3491 -2.94042 {normal=(0.814542 0.514382 -0.268203)} Vertex 10844 11.8616 6.92034 -3.1044 {normal=(0.880302 -0.0358768 -0.473055)} Vertex 10845 11.8707 -15.562 -3.72178 {normal=(-0.145932 -0.213196 -0.966049)} Vertex 10846 11.8829 -15.0816 -3.78264 {normal=(-0.0207577 -0.197839 -0.980015)} Vertex 10847 11.8848 -15.6597 0.943686 Vertex 10848 11.8894 1.15972 -4.94565 {normal=(0.63192 0.158303 -0.758695)} Vertex 10849 11.8909 6.24238 -3.74949 {normal=(0.882918 0.461191 -0.0880885)} Vertex 10850 11.8919 -11.2679 0.185742 Vertex 10851 11.8969 6.26146 -3.57864 {normal=(0.91954 0.332823 -0.208988)} Vertex 10852 11.9028 -16.3015 -1.95603 {normal=(0.351633 -0.903089 -0.246547)} Vertex 10853 11.9053 -16.2528 -1.44791 {normal=(0.417145 -0.821399 0.388965)} Vertex 10854 11.9116 -15.7159 0.699502 {normal=(0.585126 -0.803983 0.106017)} Vertex 10855 11.9415 -12.5996 -4.08569 {normal=(0.0343967 0.064742 -0.997309)} Vertex 10856 11.9451 5.14042 -1.31956 {normal=(0.939663 0.279273 0.197587)} Vertex 10857 11.9467 -11.8588 -3.94525 Vertex 10858 11.9567 9.13365 -0.662654 {normal=(0.733637 -0.101501 0.671918)} Vertex 10859 11.9635 -16.2711 -1.70445 {normal=(0.484064 -0.86905 0.102149)} Vertex 10860 11.9646 3.70072 -0.412197 {normal=(0.734795 0.0712405 0.674538)} Vertex 10861 11.976 5.87936 -5.00302 {normal=(0.733439 0.432979 -0.524019)} Vertex 10862 11.9769 5.16 -2.30496 {normal=(0.962769 0.202221 0.179395)} Vertex 10863 11.9905 -16.0764 -3.4622 Vertex 10864 11.9953 -16.291 -0.805464 {normal=(0.397277 -0.894761 -0.203898)} Vertex 10865 11.9965 0.971716 -1.33469 {normal=(0.788446 -0.175023 0.589678)} Vertex 10866 12.0053 8.53473 -0.901799 {normal=(0.742825 -0.170965 0.647289)} Vertex 10867 12.0125 6.05295 -4.52471 {normal=(0.845374 0.509979 -0.158945)} Vertex 10868 12.0157 -0.540127 -1.58394 {normal=(0.378463 0.0259973 0.925251)} Vertex 10869 12.0298 6.6407 -1.97261 {normal=(0.784787 -0.488333 0.381628)} Vertex 10870 12.0428 5.18181 -2.54117 {normal=(0.778578 0.0490559 0.625628)} Vertex 10871 12.0439 -16.1654 -0.305275 {normal=(0.438664 -0.765177 0.471252)} Vertex 10872 12.0449 10.6861 -1.0921 {normal=(0.856472 0.328315 0.398327)} Vertex 10873 12.0522 -16.0288 -2.51998 Vertex 10874 12.0562 0.430306 -5.04898 {normal=(0.617502 0.214939 -0.756632)} Vertex 10875 12.0635 -4.06951 -0.517512 Vertex 10876 12.0674 8.85264 -3.90827 {normal=(0.738326 -0.0995883 -0.667051)} Vertex 10877 12.0786 -16.2229 -0.559301 {normal=(0.483041 -0.862128 0.152993)} Vertex 10878 12.0792 -10.6409 0.044497 Vertex 10879 12.0986 11.0863 -1.9961 {normal=(0.89374 0.443077 0.0700872)} Vertex 10880 12.1068 7.62323 -1.35667 {normal=(0.79326 -0.230534 0.563554)} Vertex 10881 12.109 2.46215 -0.613683 {normal=(0.749732 -0.146782 0.645258)} Vertex 10882 12.1252 -11.0006 -0.057117 Vertex 10883 12.1333 -4.02416 -0.835584 Vertex 10884 12.136 -0.406476 -5.22722 {normal=(0.568586 0.215216 -0.793973)} Vertex 10885 12.145 -10.7893 -0.283205 Vertex 10886 12.1561 1.04236 -1.77804 {normal=(0.877582 0.164343 0.450378)} Vertex 10887 12.173 6.75602 -2.46361 {normal=(0.954772 -0.288359 -0.072518)} Vertex 10888 12.1767 6.47339 -2.5183 {normal=(0.985936 -0.0397193 0.162337)} Vertex 10889 12.1824 -13.8478 0.709292 Vertex 10890 12.2016 -16.0535 -3.25553 {normal=(0.560739 -0.763621 -0.320086)} Vertex 10891 12.2144 -2.23155 -1.06716 {normal=(0.222819 0.272827 0.935904)} Vertex 10892 12.2169 -11.9245 -4.30735 Vertex 10893 12.2232 -15.0992 1.11797 Vertex 10894 12.2233 7.90069 -3.3034 {normal=(0.795618 -0.228928 -0.560879)} Vertex 10895 12.2239 -13.964 -4.07233 {normal=(0.238866 -0.171927 -0.955711)} Vertex 10896 12.2341 3.46057 -2.41887 {normal=(0.986335 0.106049 0.126087)} Vertex 10897 12.2517 -16.0741 -2.88932 {normal=(0.63811 -0.757415 0.138343)} Vertex 10898 12.2859 7.15385 -1.93038 {normal=(0.90234 -0.311 0.298431)} Vertex 10899 12.2888 2.29246 -2.27515 {normal=(0.966497 0.0568226 0.250311)} Vertex 10900 12.2898 -15.0625 -3.6052 {normal=(0.56854 -0.11602 -0.814433)} Vertex 10901 12.2954 7.50564 -2.93177 {normal=(0.861461 -0.285332 -0.420085)} Vertex 10902 12.2969 9.97666 -1.40516 {normal=(0.946177 0.132429 0.295316)} Vertex 10903 12.309 -12.9969 0.425631 Vertex 10904 12.3093 -2.22293 -5.61416 {normal=(0.53368 0.122763 -0.836729)} Vertex 10905 12.3116 3.42665 -2.64554 {normal=(0.794263 0.0763564 0.602757)} Vertex 10906 12.3121 10.0612 -2.96147 {normal=(0.931746 0.251888 -0.261536)} Vertex 10907 12.3198 -15.9654 -1.21536 Vertex 10908 12.3267 -15.6914 0.039615 Vertex 10909 12.3315 4.73032 -5.05921 {normal=(0.818445 0.0878502 -0.567829)} Vertex 10910 12.3344 10.1008 -2.14571 {normal=(0.972188 0.233564 0.0172994)} Vertex 10911 12.3385 2.36776 -1.45757 {normal=(0.981191 -0.0956074 0.167701)} Vertex 10912 12.3389 0.601157 -1.74481 {normal=(0.771773 0.0201621 0.635579)} Vertex 10913 12.3411 7.22459 -2.39375 {normal=(0.945553 -0.310295 -0.0982145)} Vertex 10914 12.3421 -15.6477 -3.59771 Vertex 10915 12.3431 5.24845 -2.7205 {normal=(0.905409 0.125839 0.405461)} Vertex 10916 12.3479 5.15924 -3.41971 {normal=(0.961768 0.266794 -0.0618387)} Vertex 10917 12.3508 3.658 -1.41856 {normal=(0.983311 0.126256 0.130991)} Vertex 10918 12.356 5.14346 -3.60313 {normal=(0.951023 0.306534 0.0399079)} Vertex 10919 12.3658 2.19166 -2.47457 {normal=(0.786167 0.169971 0.594181)} Vertex 10920 12.4087 9.56463 -2.91148 {normal=(0.965138 0.119012 -0.233118)} Vertex 10921 12.4111 -16.0125 -2.13623 {normal=(0.491325 -0.857691 -0.151545)} Vertex 10922 12.4212 -11.8389 -3.89164 Vertex 10923 12.435 -15.4485 0.270509 Vertex 10924 12.4359 -12.5867 -4.00745 {normal=(0.502511 0.0185568 -0.864372)} Vertex 10925 12.4386 -14.0457 0.833116 Vertex 10926 12.4407 2.34491 -4.33406 {normal=(0.709303 -0.0475313 -0.703299)} Vertex 10927 12.4446 -12.305 0.017973 {normal=(0.731052 0.225264 0.644064)} Vertex 10928 12.4457 9.25042 -1.68808 {normal=(0.964635 0.0367469 0.261017)} Vertex 10929 12.4533 -15.8923 -1.53692 {normal=(0.554702 -0.810578 0.187803)} Vertex 10930 12.4545 -15.9789 -1.82921 {normal=(0.578526 -0.808992 0.104117)} Vertex 10931 12.4552 1.13583 -2.03142 {normal=(0.791411 0.162503 0.589289)} Vertex 10932 12.4715 9.46644 -2.32582 {normal=(0.989727 0.142963 -0.00141034)} Vertex 10933 12.4817 -10.7163 -0.250181 Vertex 10934 12.4862 -15.7972 -2.75547 Vertex 10935 12.4873 -0.552108 -2.16414 {normal=(0.843327 0.135086 0.520146)} Vertex 10936 12.5021 -15.376 0.565035 {normal=(0.594802 -0.782631 0.183572)} Vertex 10937 12.5034 8.27288 -2.05473 {normal=(0.9665 -0.113734 0.23009)} Vertex 10938 12.5104 -15.2222 -3.06807 Vertex 10939 12.511 8.68854 -1.86261 {normal=(0.958066 -0.0494983 0.28224)} Vertex 10940 12.5121 -13.8528 -3.65664 {normal=(0.628093 -0.14487 -0.764534)} Vertex 10941 12.5281 -15.2503 0.848337 Vertex 10942 12.5336 -15.0717 -3.41853 Vertex 10943 12.5459 8.52124 -2.56425 {normal=(0.999457 0.0209141 -0.0254609)} Vertex 10944 12.5491 8.81888 -2.66419 {normal=(0.995523 0.0915658 -0.0234294)} Vertex 10945 12.5716 -15.7805 -3.04087 Vertex 10946 12.5724 4.9783 -4.37186 {normal=(0.96247 0.249503 -0.106768)} Vertex 10947 12.574 8.30105 -2.36556 {normal=(0.996102 -0.0867499 -0.0159763)} Vertex 10948 12.5877 1.31546 -4.21875 {normal=(0.736267 0.0668445 -0.673381)} Vertex 10949 12.5914 -15.6773 -3.36636 Vertex 10950 12.5946 -14.797 1.02564 Vertex 10951 12.6092 -11.8677 -4.13247 Vertex 10952 12.6103 3.35823 -4.47984 {normal=(0.817676 -0.0968961 -0.567465)} Vertex 10953 12.6238 -10.9717 -0.925443 Vertex 10954 12.631 0.596058 -4.38827 {normal=(0.839626 0.126888 -0.528136)} Vertex 10955 12.6528 -11.8301 -0.768943 {normal=(0.887132 0.188902 0.421086)} Vertex 10956 12.6531 0.637841 -2.41103 {normal=(0.877814 -0.0261349 0.478289)} Vertex 10957 12.6686 3.39306 -4.04017 {normal=(0.975091 0.0890337 -0.203151)} Vertex 10958 12.6833 -0.435565 -4.03055 {normal=(0.905307 0.141002 -0.400672)} Vertex 10959 12.6896 -15.8729 -0.95515 {normal=(0.555862 -0.82096 -0.130546)} Vertex 10960 12.693 -4.02814 -5.90212 Vertex 10961 12.7032 -14.0047 -3.47366 {normal=(0.813606 -0.149786 -0.561791)} Vertex 10962 12.7175 -3.98985 -5.39489 Vertex 10963 12.7204 -14.1419 0.552464 {normal=(0.754161 0.298961 0.584691)} Vertex 10964 12.7222 -15.7062 -0.337668 {normal=(0.567033 -0.724355 0.392153)} Vertex 10965 12.7269 3.4279 -3.60051 {normal=(0.982848 0.183745 -0.0157191)} Vertex 10966 12.728 -15.8175 -0.648377 {normal=(0.604827 -0.778764 0.166467)} Vertex 10967 12.732 -15.2943 -2.73725 Vertex 10968 12.7351 -11.7667 -3.66032 Vertex 10969 12.7383 3.40037 -3.41662 {normal=(0.974394 0.218943 -0.0511968)} Vertex 10970 12.743 3.41511 -2.91249 {normal=(0.887269 0.15706 0.433688)} Vertex 10971 12.7598 -0.360883 -4.5732 {normal=(0.907428 0.172936 -0.382972)} Vertex 10972 12.7665 1.4201 -2.55286 {normal=(0.830509 0.117769 0.544412)} Vertex 10973 12.7722 -15.0902 -1.47382 Vertex 10974 12.7758 -12.5228 -3.68024 {normal=(0.782759 -0.034339 -0.621377)} Vertex 10975 12.7843 -15.6495 -1.3861 Vertex 10976 12.7903 -15.1108 -1.78169 Vertex 10977 12.8096 -15.6314 -1.69251 Vertex 10978 12.8155 -15.1038 -2.37665 Vertex 10979 12.8208 -14.6864 0.001691 {normal=(0.867472 -0.44029 0.231598)} Vertex 10980 12.8322 -10.8359 -0.694152 Vertex 10981 12.8339 -15.6389 -2.30819 Vertex 10982 12.8456 -15.1558 0.143662 Vertex 10983 12.848 -13.6203 0.034911 {normal=(0.901364 0.219423 0.373359)} Vertex 10984 12.8502 -14.8982 0.710457 Vertex 10985 12.8619 2.37791 -4.01278 {normal=(0.9152 0.0439518 -0.400597)} Vertex 10986 12.8694 -14.0649 -2.86136 {normal=(0.964048 -0.127789 -0.232982)} Vertex 10987 12.8792 -11.0924 -1.35474 Vertex 10988 12.8793 0.641095 -3.82312 {normal=(0.89214 0.0390998 -0.450063)} Vertex 10989 12.8794 -11.7767 -3.84397 Vertex 10990 12.8946 -14.234 -2.34105 {normal=(0.990646 -0.0981605 -0.0947932)} Vertex 10991 12.9147 -11.9981 -1.21193 {normal=(0.933059 0.126419 0.336778)} Vertex 10992 12.9266 2.4349 -3.41759 {normal=(0.96906 0.1399 -0.203351)} Vertex 10993 12.9371 -15.0637 -2.12628 Vertex 10994 12.9428 -15.6583 -2.00614 Vertex 10995 12.9517 -11.6649 -3.32659 Vertex 10996 12.9518 1.49059 -3.34286 {normal=(0.974587 0.0274459 -0.222323)} Vertex 10997 12.9539 -14.8624 -0.299966 {normal=(0.959116 0.0445072 0.279493)} Vertex 10998 12.9552 -14.1652 -1.71735 {normal=(0.989796 -0.102575 -0.0989075)} Vertex 10999 12.9612 1.48173 -3.83178 {normal=(0.916337 0.0294108 -0.399327)} Vertex 11000 12.9654 -14.464 0.248668 {normal=(0.973569 0.0651387 0.218908)} Vertex 11001 12.9673 0.674524 -3.07725 {normal=(0.960407 -0.000926073 0.278599)} Vertex 11002 12.9736 -15.3536 -0.105384 Vertex 11003 12.9762 -15.0122 0.408439 Vertex 11004 13.0045 -12.4813 -3.31957 {normal=(0.945242 -0.0438228 -0.323415)} Vertex 11005 13.0145 -15.0787 -1.15939 {normal=(0.820766 0.135609 -0.554935)} Vertex 11006 13.0201 -2.18379 -4.40473 {normal=(0.898259 0.214022 -0.383829)} Vertex 11007 13.0205 -13.9035 -0.549554 {normal=(0.970935 0.100791 0.217085)} Vertex 11008 13.0209 -2.1583 -1.83543 {normal=(0.763018 0.303339 0.570779)} Vertex 11009 13.0305 -14.9534 -0.544583 {normal=(0.943429 -0.00847763 0.331467)} Vertex 11010 13.0341 -11.1979 -1.72699 Vertex 11011 13.0428 -15.5527 -1.06836 Vertex 11012 13.0434 2.38388 -3.19151 {normal=(0.97932 0.147355 0.138634)} Vertex 11013 13.0529 -11.5229 -2.84846 Vertex 11014 13.0574 -0.446797 -3.10432 {normal=(0.939033 0.120829 0.321896)} Vertex 11015 13.0607 -15.4069 -0.42389 Vertex 11016 13.0692 -12.1111 -1.60546 {normal=(0.981432 0.0482212 0.18565)} Vertex 11017 13.0708 0.653736 -3.52864 {normal=(0.97878 0.044816 -0.199953)} Vertex 11018 13.0808 -2.15287 -5.042 {normal=(0.864751 0.174658 -0.47085)} Vertex 11019 13.0882 1.50948 -3.18203 {normal=(0.992285 0.0452006 0.115441)} Vertex 11020 13.0885 -12.4209 -2.7996 {normal=(0.987732 -0.053346 -0.146765)} Vertex 11021 13.0964 -11.6413 -3.40508 Vertex 11022 13.1091 -14.0454 -1.09586 {normal=(0.999737 -0.0148134 0.0175367)} Vertex 11023 13.1247 -0.384085 -3.65645 {normal=(0.939556 0.162336 -0.301467)} Vertex 11024 13.1601 -11.3579 -2.28557 Vertex 11025 13.1636 -14.9335 -0.873964 Vertex 11026 13.1823 -15.4512 -0.749206 Vertex 11027 13.1866 -12.2705 -2.19852 {normal=(0.998857 -0.0307789 -0.0365805)} Vertex 11028 13.2132 -3.96835 -1.02144 Vertex 11029 13.2273 -3.91312 -1.28873 Vertex 11030 13.2365 -11.1051 -1.65732 Vertex 11031 13.2647 -2.13805 -2.53271 {normal=(0.906263 0.296109 0.301673)} Vertex 11032 13.2755 -3.92045 -4.90121 Vertex 11033 13.3284 -2.1332 -3.24909 {normal=(0.945569 0.240993 0.218683)} Vertex 11034 13.3528 -11.4309 -2.78944 Vertex 11035 13.5719 -3.94771 -5.17191 Vertex 11036 13.5736 -2.10811 -3.96817 {normal=(0.912263 0.248185 -0.325853)} Vertex 11037 13.574 -3.92145 -4.38341 Vertex 11038 13.778 -3.86076 -2.16002 Vertex 11039 13.8829 -3.91081 -1.81014 Vertex 11040 13.8939 -3.86429 -3.88233 Vertex 11041 13.8998 -3.85809 -3.18274 Vertex 11042 13.9084 -3.91663 -4.65365 Vertex 11043 14.2093 -3.88703 -3.73767 Vertex 11044 14.2166 -3.8585 -2.81153 Vertex 11045 -1.19839 20.6779 2.10525 {normal=(-0.103350 0.986239 0.095243)} Vertex 11046 -1.40496 20.6442 2.05447 {normal=(-0.252275 0.961946 0.058608)} Vertex 11047 -1.60387 20.5777 2.00557 {normal=(-0.395607 0.913994 0.023350)} Vertex 11048 -1.79022 20.4799 1.95976 {normal=(-0.529871 0.843543 -0.009615)} Vertex 11049 -1.95942 20.3533 1.91816 {normal=(-0.651879 0.752263 -0.039563)} Vertex 11050 -2.10731 20.201 1.88181 {normal=(-0.758493 0.642480 -0.065802)} Vertex 11051 -2.23024 20.0268 1.8516 {normal=(-0.847090 0.516889 -0.087638)} Vertex 11052 -2.3252 19.8349 1.82826 {normal=(-0.915530 0.378570 -0.104469)} Vertex 11053 -2.38983 19.63 1.81237 {normal=(-0.962108 0.230948 -0.115894)} Vertex 11054 -2.42254 19.4173 1.80433 {normal=(-0.985693 0.077613 -0.121676)} Vertex 11055 -2.42254 19.2019 1.80434 {normal=(-0.985693 -0.077630 -0.121675)} Vertex 11056 -2.38983 18.9892 1.81239 {normal=(-0.962109 -0.230951 -0.115888)} Vertex 11057 -2.3252 18.7844 1.82828 {normal=(-0.915528 -0.378581 -0.104440)} Vertex 11058 -2.23025 18.5925 1.85163 {normal=(-0.847080 -0.516912 -0.087610)} Vertex 11059 -2.10732 18.4183 1.88186 {normal=(-0.758477 -0.642501 -0.065825)} Vertex 11060 -1.95943 18.266 1.91822 {normal=(-0.651928 -0.752229 -0.039603)} Vertex 11061 -1.79023 18.1394 1.95982 {normal=(-0.529969 -0.843477 -0.009574)} Vertex 11062 -1.60388 18.0416 2.00563 {normal=(-0.395578 -0.913991 0.023520)} Vertex 11063 -1.40497 17.975 2.05453 {normal=(-0.252228 -0.961956 0.058801)} Vertex 11064 -1.1984 17.9413 2.10532 {normal=(-0.103392 -0.986220 0.095407)} Vertex 11065 -0.989257 17.9413 2.15673 {normal=(0.047370 -0.986220 0.132471)} Vertex 11066 -0.782686 17.975 2.20752 {normal=(0.196213 -0.961956 0.169049)} Vertex 11067 -0.583777 18.0416 2.25641 {normal=(0.339582 -0.913990 0.204256)} Vertex 11068 -0.397427 18.1394 2.30222 {normal=(0.473999 -0.843476 0.237246)} Vertex 11069 -0.228224 18.266 2.34382 {normal=(0.595981 -0.752228 0.267183)} Vertex 11070 -0.080335 18.4183 2.38017 {normal=(0.702544 -0.642499 0.293348)} Vertex 11071 0.0425985 18.5925 2.41038 {normal=(0.791149 -0.516912 0.315127)} Vertex 11072 0.137549 18.7844 2.43372 {normal=(0.859596 -0.378582 0.331951)} Vertex 11073 0.20218 18.9892 2.44961 {normal=(0.906179 -0.230949 0.343399)} Vertex 11074 0.234899 19.2019 2.45764 {normal=(0.929760 -0.077624 0.349200)} Vertex 11075 0.234899 19.4173 2.45764 {normal=(0.929761 0.077621 0.349196)} Vertex 11076 0.202183 19.63 2.44959 {normal=(0.906184 0.230950 0.343386)} Vertex 11077 0.137555 19.8349 2.4337 {normal=(0.859616 0.378565 0.331924)} Vertex 11078 0.0426062 20.0268 2.41035 {normal=(0.791176 0.516881 0.315104)} Vertex 11079 -0.0803252 20.201 2.38012 {normal=(0.702557 0.642479 0.293354)} Vertex 11080 -0.228213 20.3533 2.34376 {normal=(0.595917 0.752276 0.267165)} Vertex 11081 -0.397415 20.4799 2.30216 {normal=(0.473924 0.843552 0.237150)} Vertex 11082 -0.583764 20.5777 2.25635 {normal=(0.339685 0.913994 0.204118)} Vertex 11083 -0.782672 20.6442 2.20745 {normal=(0.196347 0.961946 0.168898)} Vertex 11084 -0.989243 20.6779 2.15666 {normal=(0.047411 0.986239 0.132306)} Vertex 11085 -1.24691 20.6442 2.31373 {normal=(-0.128980 0.963654 0.207001)} Vertex 11086 -1.4484 20.6114 2.2642 {normal=(-0.274488 0.939914 0.171221)} Vertex 11087 -1.64241 20.5464 2.2165 {normal=(-0.414585 0.893035 0.136796)} Vertex 11088 -1.82417 20.4511 2.17182 {normal=(-0.545797 0.824180 0.104590)} Vertex 11089 -1.98921 20.3276 2.13126 {normal=(-0.664972 0.735013 0.075324)} Vertex 11090 -2.13345 20.1791 2.09579 {normal=(-0.769116 0.627778 0.049700)} Vertex 11091 -2.25336 20.0091 2.06632 {normal=(-0.855681 0.505080 0.028377)} Vertex 11092 -2.34597 19.8219 2.04356 {normal=(-0.922567 0.369906 0.011920)} Vertex 11093 -2.40901 19.6222 2.02807 {normal=(-0.968085 0.225646 0.000747)} Vertex 11094 -2.44092 19.4146 2.02023 {normal=(-0.991126 0.075833 -0.004902)} Vertex 11095 -2.44092 19.2046 2.02023 {normal=(-0.991125 -0.075844 -0.004899)} Vertex 11096 -2.40901 18.9971 2.02808 {normal=(-0.968081 -0.225655 0.000764)} Vertex 11097 -2.34598 18.7973 2.04359 {normal=(-0.922569 -0.369903 0.011946)} Vertex 11098 -2.25337 18.6102 2.06636 {normal=(-0.855694 -0.505057 0.028374)} Vertex 11099 -2.13346 18.4402 2.09584 {normal=(-0.769099 -0.627791 0.049663)} Vertex 11100 -1.98922 18.2917 2.13131 {normal=(-0.664963 -0.735023 0.075314)} Vertex 11101 -1.82418 18.1682 2.17188 {normal=(-0.545831 -0.824148 0.104659)} Vertex 11102 -1.64242 18.0728 2.21657 {normal=(-0.414566 -0.893023 0.136918)} Vertex 11103 -1.44841 18.0079 2.26427 {normal=(-0.274447 -0.939913 0.171329)} Vertex 11104 -1.24693 17.9751 2.3138 {normal=(-0.128990 -0.963633 0.207100)} Vertex 11105 -1.04293 17.9751 2.36395 {normal=(0.018263 -0.963634 0.243300)} Vertex 11106 -0.841445 18.0079 2.41348 {normal=(0.163727 -0.939914 0.279048)} Vertex 11107 -0.647434 18.0728 2.46117 {normal=(0.303829 -0.893024 0.313527)} Vertex 11108 -0.465672 18.1682 2.50586 {normal=(0.435089 -0.824149 0.345805)} Vertex 11109 -0.300636 18.2917 2.54642 {normal=(0.554250 -0.735017 0.375047)} Vertex 11110 -0.156389 18.4402 2.58188 {normal=(0.658404 -0.627780 0.400617)} Vertex 11111 -0.036482 18.6101 2.61136 {normal=(0.744992 -0.505055 0.421903)} Vertex 11112 0.0561313 18.7973 2.63412 {normal=(0.811867 -0.369908 0.438341)} Vertex 11113 0.11917 18.9971 2.64961 {normal=(0.857381 -0.225657 0.449531)} Vertex 11114 0.151083 19.2046 2.65745 {normal=(0.880424 -0.075841 0.455196)} Vertex 11115 0.151085 19.4146 2.65744 {normal=(0.880428 0.075838 0.455191)} Vertex 11116 0.119174 19.6222 2.6496 {normal=(0.857395 0.225650 0.449511)} Vertex 11117 0.0561367 19.822 2.63409 {normal=(0.811882 0.369909 0.438311)} Vertex 11118 -0.036474 20.0091 2.61132 {normal=(0.745006 0.505059 0.421883)} Vertex 11119 -0.156378 20.1791 2.58184 {normal=(0.658426 0.627763 0.400617)} Vertex 11120 -0.300624 20.3276 2.54637 {normal=(0.554230 0.735043 0.375015)} Vertex 11121 -0.46566 20.4511 2.5058 {normal=(0.435066 0.824203 0.345709)} Vertex 11122 -0.647421 20.5464 2.46111 {normal=(0.303903 0.893036 0.313424)} Vertex 11123 -0.841432 20.6114 2.41341 {normal=(0.163816 0.939915 0.278969)} Vertex 11124 -1.04291 20.6442 2.36388 {normal=(0.018302 0.963654 0.243207)} Vertex 11125 -1.29103 20.5777 2.51512 {normal=(-0.160749 0.915980 0.351849)} Vertex 11126 -1.48247 20.5465 2.46806 {normal=(-0.299076 0.893390 0.317898)} Vertex 11127 -1.6668 20.4848 2.42274 {normal=(-0.432232 0.848820 0.285201)} Vertex 11128 -1.8395 20.3941 2.3803 {normal=(-0.556947 0.783376 0.254546)} Vertex 11129 -1.9963 20.2768 2.34175 {normal=(-0.670194 0.698653 0.226693)} Vertex 11130 -2.13336 20.1357 2.30805 {normal=(-0.769167 0.596748 0.202341)} Vertex 11131 -2.24729 19.9743 2.28005 {normal=(-0.851464 0.480107 0.182105)} Vertex 11132 -2.33528 19.7964 2.25843 {normal=(-0.915048 0.351609 0.166482)} Vertex 11133 -2.39517 19.6066 2.24371 {normal=(-0.958316 0.214476 0.155849)} Vertex 11134 -2.4255 19.4094 2.23626 {normal=(-0.980217 0.072086 0.150471)} Vertex 11135 -2.4255 19.2099 2.23626 {normal=(-0.980215 -0.072072 0.150484)} Vertex 11136 -2.39518 19.0127 2.24372 {normal=(-0.958310 -0.214476 0.155881)} Vertex 11137 -2.33529 18.8229 2.25845 {normal=(-0.915050 -0.351586 0.166522)} Vertex 11138 -2.24729 18.645 2.28009 {normal=(-0.851485 -0.480047 0.182152)} Vertex 11139 -2.13336 18.4835 2.3081 {normal=(-0.769159 -0.596723 0.202400)} Vertex 11140 -1.99631 18.3424 2.34179 {normal=(-0.670162 -0.698663 0.226752)} Vertex 11141 -1.83951 18.2252 2.38035 {normal=(-0.556944 -0.783365 0.254597)} Vertex 11142 -1.66681 18.1345 2.42281 {normal=(-0.432234 -0.848807 0.285242)} Vertex 11143 -1.48248 18.0728 2.46813 {normal=(-0.299031 -0.893389 0.317940)} Vertex 11144 -1.29104 18.0416 2.51519 {normal=(-0.160715 -0.915971 0.351905)} Vertex 11145 -1.09722 18.0416 2.56284 {normal=(-0.020768 -0.915970 0.386310)} Vertex 11146 -0.905782 18.0728 2.6099 {normal=(0.117531 -0.893388 0.420350)} Vertex 11147 -0.721445 18.1345 2.65522 {normal=(0.250712 -0.848806 0.453138)} Vertex 11148 -0.548747 18.2252 2.69767 {normal=(0.375413 -0.783366 0.483808)} Vertex 11149 -0.391941 18.3424 2.73622 {normal=(0.488649 -0.698643 0.511645)} Vertex 11150 -0.254887 18.4836 2.7699 {normal=(0.587651 -0.596690 0.535987)} Vertex 11151 -0.14096 18.6451 2.79791 {normal=(0.669957 -0.480050 0.556208)} Vertex 11152 -0.0529655 18.8229 2.81953 {normal=(0.733528 -0.351604 0.571812)} Vertex 11153 0.00693 19.0127 2.83425 {normal=(0.776802 -0.214477 0.582439)} Vertex 11154 0.0372512 19.2099 2.84171 {normal=(0.798709 -0.072068 0.587818)} Vertex 11155 0.0372528 19.4094 2.8417 {normal=(0.798716 0.072087 0.587808)} Vertex 11156 0.00693325 19.6066 2.83424 {normal=(0.776819 0.214477 0.582417)} Vertex 11157 -0.0529603 19.7964 2.81951 {normal=(0.733551 0.351617 0.571773)} Vertex 11158 -0.140953 19.9743 2.79787 {normal=(0.669983 0.480087 0.556146)} Vertex 11159 -0.254878 20.1357 2.76986 {normal=(0.587675 0.596718 0.535933)} Vertex 11160 -0.391931 20.2768 2.73617 {normal=(0.488650 0.698666 0.511609)} Vertex 11161 -0.548736 20.3941 2.69761 {normal=(0.375409 0.783395 0.483761)} Vertex 11162 -0.721432 20.4848 2.65516 {normal=(0.250733 0.848821 0.453096)} Vertex 11163 -0.905768 20.5465 2.60984 {normal=(0.117594 0.893390 0.420329)} Vertex 11164 -1.0972 20.5777 2.56277 {normal=(-0.020715 0.915980 0.386274)} Vertex 11165 -1.32965 20.4799 2.70446 {normal=(-0.188627 0.845841 0.488244)} Vertex 11166 -1.50633 20.4511 2.66103 {normal=(-0.316364 0.825004 0.456845)} Vertex 11167 -1.67645 20.3941 2.61921 {normal=(-0.439297 0.783864 0.426627)} Vertex 11168 -1.83583 20.3105 2.58003 {normal=(-0.554456 0.723432 0.398314)} Vertex 11169 -1.98055 20.2022 2.54446 {normal=(-0.659020 0.645207 0.372598)} Vertex 11170 -2.10703 20.072 2.51337 {normal=(-0.750418 0.551102 0.350119)} Vertex 11171 -2.21217 19.923 2.48752 {normal=(-0.826434 0.443373 0.331432)} Vertex 11172 -2.29338 19.7589 2.46756 {normal=(-0.885156 0.324708 0.317000)} Vertex 11173 -2.34866 19.5837 2.45398 {normal=(-0.925112 0.198077 0.307181)} Vertex 11174 -2.37665 19.4018 2.44711 {normal=(-0.945335 0.066590 0.302216)} Vertex 11175 -2.37665 19.2176 2.44711 {normal=(-0.945334 -0.066546 0.302226)} Vertex 11176 -2.34866 19.0356 2.45399 {normal=(-0.925101 -0.198071 0.307214)} Vertex 11177 -2.29339 18.8604 2.46759 {normal=(-0.885149 -0.324679 0.317058)} Vertex 11178 -2.21218 18.6963 2.48756 {normal=(-0.826455 -0.443286 0.331502)} Vertex 11179 -2.10704 18.5473 2.5134 {normal=(-0.750435 -0.551039 0.350185)} Vertex 11180 -1.98055 18.417 2.5445 {normal=(-0.659017 -0.645188 0.372643)} Vertex 11181 -1.83584 18.3088 2.58009 {normal=(-0.554448 -0.723419 0.398345)} Vertex 11182 -1.67646 18.2251 2.61927 {normal=(-0.439301 -0.783838 0.426667)} Vertex 11183 -1.50634 18.1682 2.6611 {normal=(-0.316343 -0.824984 0.456886)} Vertex 11184 -1.32967 18.1394 2.70453 {normal=(-0.188592 -0.845850 0.488248)} Vertex 11185 -1.15079 18.1394 2.7485 {normal=(-0.059285 -0.845851 0.520037)} Vertex 11186 -0.974112 18.1682 2.79193 {normal=(0.068447 -0.824985 0.551481)} Vertex 11187 -0.803988 18.2252 2.83376 {normal=(0.191400 -0.783838 0.581717)} Vertex 11188 -0.644607 18.3088 2.87294 {normal=(0.306554 -0.723418 0.610015)} Vertex 11189 -0.499892 18.417 2.90851 {normal=(0.411141 -0.645170 0.635728)} Vertex 11190 -0.373406 18.5473 2.9396 {normal=(0.502564 -0.551019 0.658210)} Vertex 11191 -0.268264 18.6963 2.96545 {normal=(0.578555 -0.443304 0.676896)} Vertex 11192 -0.187055 18.8604 2.9854 {normal=(0.637244 -0.324699 0.691317)} Vertex 11193 -0.131778 19.0356 2.99899 {normal=(0.677211 -0.198067 0.701126)} Vertex 11194 -0.103795 19.2176 3.00587 {normal=(0.697448 -0.066539 0.706091)} Vertex 11195 -0.103794 19.4018 3.00586 {normal=(0.697452 0.066591 0.706084)} Vertex 11196 -0.131775 19.5837 2.99898 {normal=(0.677230 0.198075 0.701107)} Vertex 11197 -0.18705 19.7589 2.98538 {normal=(0.637272 0.324715 0.691280)} Vertex 11198 -0.268258 19.923 2.96541 {normal=(0.578554 0.443370 0.676847)} Vertex 11199 -0.373398 20.072 2.93956 {normal=(0.502540 0.551079 0.658175)} Vertex 11200 -0.499883 20.2022 2.90846 {normal=(0.411124 0.645198 0.635711)} Vertex 11201 -0.644597 20.3105 2.87289 {normal=(0.306559 0.723435 0.609995)} Vertex 11202 -0.803977 20.3941 2.8337 {normal=(0.191416 0.783861 0.581684)} Vertex 11203 -0.974099 20.4511 2.79188 {normal=(0.068483 0.824999 0.551463)} Vertex 11204 -1.15078 20.4799 2.74844 {normal=(-0.059259 0.845839 0.520051)} Vertex 11205 -1.36183 20.3533 2.8771 {normal=(-0.211829 0.755009 0.612716)} Vertex 11206 -1.51939 20.3276 2.83836 {normal=(-0.325827 0.736457 0.584636)} Vertex 11207 -1.67111 20.2768 2.80107 {normal=(-0.435612 0.699739 0.557618)} Vertex 11208 -1.81325 20.2023 2.76613 {normal=(-0.538426 0.645779 0.532357)} Vertex 11209 -1.94231 20.1057 2.7344 {normal=(-0.631737 0.575954 0.509431)} Vertex 11210 -2.05512 19.9895 2.70667 {normal=(-0.713324 0.491933 0.489386)} Vertex 11211 -2.14889 19.8567 2.68362 {normal=(-0.781174 0.395771 0.472712)} Vertex 11212 -2.22131 19.7103 2.66582 {normal=(-0.833588 0.289857 0.459823)} Vertex 11213 -2.27061 19.5541 2.65371 {normal=(-0.869257 0.176820 0.451059)} Vertex 11214 -2.29557 19.3918 2.64758 {normal=(-0.887310 0.059449 0.446625)} Vertex 11215 -2.29557 19.2275 2.64758 {normal=(-0.887312 -0.059402 0.446626)} Vertex 11216 -2.27061 19.0653 2.65372 {normal=(-0.869251 -0.176816 0.451071)} Vertex 11217 -2.22131 18.909 2.66584 {normal=(-0.833589 -0.289833 0.459849)} Vertex 11218 -2.14889 18.7627 2.68365 {normal=(-0.781208 -0.395685 0.472736)} Vertex 11219 -2.05512 18.6297 2.70671 {normal=(-0.713365 -0.491855 0.489403)} Vertex 11220 -1.94232 18.5136 2.73444 {normal=(-0.631747 -0.575918 0.509454)} Vertex 11221 -1.81326 18.417 2.76617 {normal=(-0.538373 -0.645763 0.532421)} Vertex 11222 -1.67112 18.3425 2.80112 {normal=(-0.435586 -0.699681 0.557715)} Vertex 11223 -1.51941 18.2917 2.83842 {normal=(-0.325893 -0.736382 0.584692)} Vertex 11224 -1.36184 18.266 2.87715 {normal=(-0.211874 -0.754995 0.612711)} Vertex 11225 -1.20231 18.266 2.91637 {normal=(-0.096369 -0.754997 0.641104)} Vertex 11226 -1.04475 18.2917 2.95511 {normal=(0.017654 -0.736387 0.669143)} Vertex 11227 -0.89303 18.3425 2.9924 {normal=(0.127356 -0.699682 0.696103)} Vertex 11228 -0.750892 18.417 3.02734 {normal=(0.230153 -0.645759 0.721355)} Vertex 11229 -0.621831 18.5136 3.05906 {normal=(0.323537 -0.575913 0.744295)} Vertex 11230 -0.509028 18.6298 3.0868 {normal=(0.405154 -0.491857 0.764362)} Vertex 11231 -0.41526 18.7627 3.10984 {normal=(0.472982 -0.395694 0.781052)} Vertex 11232 -0.342835 18.909 3.12765 {normal=(0.525356 -0.289834 0.793933)} Vertex 11233 -0.293538 19.0653 3.13976 {normal=(0.561021 -0.176812 0.802694)} Vertex 11234 -0.268581 19.2275 3.1459 {normal=(0.579086 -0.059399 0.807128)} Vertex 11235 -0.26858 19.3918 3.14589 {normal=(0.579090 0.059449 0.807124)} Vertex 11236 -0.293535 19.5541 3.13975 {normal=(0.561040 0.176819 0.802680)} Vertex 11237 -0.342831 19.7103 3.12762 {normal=(0.525367 0.289867 0.793908)} Vertex 11238 -0.415254 19.8567 3.10982 {normal=(0.472952 0.395783 0.781025)} Vertex 11239 -0.509021 19.9895 3.08676 {normal=(0.405116 0.491929 0.764342)} Vertex 11240 -0.621823 20.1057 3.05903 {normal=(0.323531 0.575946 0.744276)} Vertex 11241 -0.750882 20.2022 3.0273 {normal=(0.230214 0.645779 0.721323)} Vertex 11242 -0.893021 20.2768 2.99235 {normal=(0.127410 0.699733 0.696039)} Vertex 11243 -1.04474 20.3276 2.95505 {normal=(0.017618 0.736447 0.669078)} Vertex 11244 -1.20231 20.3533 2.91632 {normal=(-0.096404 0.755005 0.641097)} Vertex 11245 -1.38678 20.201 3.02877 {normal=(-0.229821 0.645721 0.722157)} Vertex 11246 -1.52135 20.1791 2.99569 {normal=(-0.327301 0.629842 0.698174)} Vertex 11247 -1.65093 20.1357 2.96383 {normal=(-0.421249 0.598421 0.675062)} Vertex 11248 -1.77233 20.072 2.93399 {normal=(-0.509206 0.552276 0.653438)} Vertex 11249 -1.88256 19.9895 2.90689 {normal=(-0.588999 0.492557 0.633834)} Vertex 11250 -1.9789 19.8904 2.88321 {normal=(-0.658768 0.420694 0.616699)} Vertex 11251 -2.05899 19.7768 2.86352 {normal=(-0.716780 0.338454 0.602455)} Vertex 11252 -2.12084 19.6518 2.84832 {normal=(-0.761594 0.247880 0.591444)} Vertex 11253 -2.16295 19.5184 2.83797 {normal=(-0.792098 0.151216 0.583945)} Vertex 11254 -2.18426 19.3798 2.83274 {normal=(-0.807540 0.050843 0.580149)} Vertex 11255 -2.18426 19.2395 2.83274 {normal=(-0.807544 -0.050782 0.580148)} Vertex 11256 -2.16295 19.1009 2.83799 {normal=(-0.792105 -0.151195 0.583938)} Vertex 11257 -2.12084 18.9675 2.84834 {normal=(-0.761608 -0.247878 0.591429)} Vertex 11258 -2.05898 18.8425 2.86355 {normal=(-0.716809 -0.338406 0.602451)} Vertex 11259 -1.9789 18.729 2.88324 {normal=(-0.658804 -0.420608 0.616719)} Vertex 11260 -1.88256 18.6297 2.90693 {normal=(-0.588991 -0.492503 0.633878)} Vertex 11261 -1.77233 18.5473 2.93403 {normal=(-0.509116 -0.552266 0.653514)} Vertex 11262 -1.65093 18.4836 2.96387 {normal=(-0.421233 -0.598384 0.675122)} Vertex 11263 -1.52135 18.4403 2.99573 {normal=(-0.327431 -0.629773 0.698183)} Vertex 11264 -1.38678 18.4183 3.02882 {normal=(-0.229919 -0.645673 0.722165)} Vertex 11265 -1.25054 18.4183 3.06231 {normal=(-0.131137 -0.645671 0.746450)} Vertex 11266 -1.11596 18.4403 3.0954 {normal=(-0.033608 -0.629771 0.770417)} Vertex 11267 -0.986382 18.4836 3.12725 {normal=(0.060205 -0.598377 0.793478)} Vertex 11268 -0.864983 18.5473 3.15709 {normal=(0.148091 -0.552259 0.815081)} Vertex 11269 -0.754755 18.6297 3.18418 {normal=(0.227954 -0.492503 0.834715)} Vertex 11270 -0.658412 18.729 3.20786 {normal=(0.297762 -0.420599 0.851885)} Vertex 11271 -0.578326 18.8425 3.22755 {normal=(0.355770 -0.338388 0.866142)} Vertex 11272 -0.51647 18.9675 3.24275 {normal=(0.400567 -0.247872 0.877146)} Vertex 11273 -0.474366 19.1009 3.2531 {normal=(0.431063 -0.151199 0.884646)} Vertex 11274 -0.453051 19.2395 3.25834 {normal=(0.446505 -0.050790 0.888443)} Vertex 11275 -0.453051 19.3798 3.25834 {normal=(0.446508 0.050834 0.888440)} Vertex 11276 -0.474364 19.5184 3.2531 {normal=(0.431067 0.151214 0.884642)} Vertex 11277 -0.516466 19.6518 3.24274 {normal=(0.400561 0.247892 0.877141)} Vertex 11278 -0.578321 19.7768 3.22753 {normal=(0.355750 0.338469 0.866116)} Vertex 11279 -0.658406 19.8904 3.20784 {normal=(0.297750 0.420699 0.851843)} Vertex 11280 -0.754748 19.9896 3.18415 {normal=(0.227987 0.492558 0.834678)} Vertex 11281 -0.864975 20.072 3.15705 {normal=(0.148186 0.552284 0.815048)} Vertex 11282 -0.986373 20.1357 3.1272 {normal=(0.060226 0.598429 0.793426)} Vertex 11283 -1.11595 20.1791 3.09535 {normal=(-0.033715 0.629840 0.770350)} Vertex 11284 -1.25052 20.201 3.06226 {normal=(-0.131187 0.645719 0.746406)} Vertex 11285 -1.40387 20.0268 3.15574 {normal=(-0.242243 0.520526 0.813973)} Vertex 11286 -1.51214 20.0091 3.12913 {normal=(-0.320822 0.507694 0.794667)} Vertex 11287 -1.61639 19.9743 3.1035 {normal=(-0.396541 0.482364 0.776051)} Vertex 11288 -1.71405 19.923 3.07949 {normal=(-0.467442 0.445186 0.758609)} Vertex 11289 -1.80274 19.8567 3.05769 {normal=(-0.531796 0.397047 0.742784)} Vertex 11290 -1.88024 19.7768 3.03864 {normal=(-0.588044 0.339109 0.728966)} Vertex 11291 -1.94468 19.6855 3.0228 {normal=(-0.634801 0.272817 0.717482)} Vertex 11292 -1.99444 19.5849 3.01057 {normal=(-0.670924 0.199813 0.708604)} Vertex 11293 -2.02832 19.4776 3.00224 {normal=(-0.695507 0.121906 0.702561)} Vertex 11294 -2.04546 19.3661 2.99803 {normal=(-0.707951 0.041000 0.699504)} Vertex 11295 -2.04546 19.2533 2.99803 {normal=(-0.707954 -0.040918 0.699506)} Vertex 11296 -2.02832 19.1417 3.00225 {normal=(-0.695510 -0.121853 0.702564)} Vertex 11297 -1.99444 19.0344 3.01058 {normal=(-0.670920 -0.199811 0.708603)} Vertex 11298 -1.94468 18.9338 3.02282 {normal=(-0.634795 -0.272816 0.717488)} Vertex 11299 -1.88025 18.8425 3.03866 {normal=(-0.588049 -0.339047 0.728992)} Vertex 11300 -1.80274 18.7627 3.05772 {normal=(-0.531799 -0.396966 0.742823)} Vertex 11301 -1.71406 18.6963 3.07952 {normal=(-0.467431 -0.445164 0.758630)} Vertex 11302 -1.61639 18.6451 3.10353 {normal=(-0.396570 -0.482377 0.776034)} Vertex 11303 -1.51214 18.6102 3.12916 {normal=(-0.320890 -0.507680 0.794649)} Vertex 11304 -1.40387 18.5925 3.15578 {normal=(-0.242289 -0.520458 0.814000)} Vertex 11305 -1.29426 18.5925 3.18273 {normal=(-0.162748 -0.520453 0.833557)} Vertex 11306 -1.18599 18.6102 3.20934 {normal=(-0.084128 -0.507663 0.852862)} Vertex 11307 -1.08174 18.6451 3.23497 {normal=(-0.008440 -0.482354 0.871462)} Vertex 11308 -0.984073 18.6963 3.25898 {normal=(0.062403 -0.445155 0.888890)} Vertex 11309 -0.895391 18.7627 3.28078 {normal=(0.126761 -0.396972 0.904723)} Vertex 11310 -0.81788 18.8425 3.29983 {normal=(0.183031 -0.339028 0.918554)} Vertex 11311 -0.753449 18.9338 3.31567 {normal=(0.229781 -0.272785 0.930039)} Vertex 11312 -0.703684 19.0344 3.3279 {normal=(0.265892 -0.199814 0.938911)} Vertex 11313 -0.669811 19.1417 3.33622 {normal=(0.290486 -0.121866 0.944958)} Vertex 11314 -0.652662 19.2533 3.34044 {normal=(0.302934 -0.040935 0.948019)} Vertex 11315 -0.652662 19.3661 3.34044 {normal=(0.302933 0.040979 0.948016)} Vertex 11316 -0.669809 19.4776 3.33622 {normal=(0.290483 0.121906 0.944955)} Vertex 11317 -0.703681 19.5849 3.32789 {normal=(0.265893 0.199827 0.938910)} Vertex 11318 -0.753446 19.6855 3.31565 {normal=(0.229776 0.272824 0.930027)} Vertex 11319 -0.817876 19.7768 3.29981 {normal=(0.183033 0.339109 0.918523)} Vertex 11320 -0.895385 19.8567 3.28075 {normal=(0.126794 0.397050 0.904685)} Vertex 11321 -0.984066 19.923 3.25895 {normal=(0.062423 0.445197 0.888864)} Vertex 11322 -1.08174 19.9743 3.23493 {normal=(-0.008497 0.482384 0.871440)} Vertex 11323 -1.18599 20.0091 3.2093 {normal=(-0.084200 0.507708 0.852831)} Vertex 11324 -1.29425 20.0268 3.18268 {normal=(-0.162750 0.520530 0.833513)} Vertex 11325 -1.41269 19.8349 3.25489 {normal=(-0.248751 0.382479 0.885881)} Vertex 11326 -1.49199 19.822 3.23539 {normal=(-0.306479 0.373067 0.871692)} Vertex 11327 -1.56834 19.7964 3.21663 {normal=(-0.362108 0.354458 0.858017)} Vertex 11328 -1.63987 19.7589 3.19904 {normal=(-0.414201 0.327134 0.845207)} Vertex 11329 -1.70482 19.7103 3.18307 {normal=(-0.461509 0.291748 0.833572)} Vertex 11330 -1.76159 19.6518 3.16912 {normal=(-0.502847 0.249171 0.823413)} Vertex 11331 -1.80879 19.5849 3.15752 {normal=(-0.537194 0.200474 0.814975)} Vertex 11332 -1.84523 19.5113 3.14856 {normal=(-0.563745 0.146836 0.808444)} Vertex 11333 -1.87004 19.4327 3.14246 {normal=(-0.581812 0.089590 0.804003)} Vertex 11334 -1.8826 19.351 3.13938 {normal=(-0.590950 0.030146 0.801761)} Vertex 11335 -1.8826 19.2684 3.13938 {normal=(-0.590951 -0.030062 0.801763)} Vertex 11336 -1.87005 19.1867 3.14247 {normal=(-0.581806 -0.089526 0.804015)} Vertex 11337 -1.84523 19.108 3.14857 {normal=(-0.563731 -0.146805 0.808459)} Vertex 11338 -1.80879 19.0344 3.15753 {normal=(-0.537175 -0.200470 0.814988)} Vertex 11339 -1.7616 18.9675 3.16914 {normal=(-0.502836 -0.249127 0.823435)} Vertex 11340 -1.70483 18.909 3.18309 {normal=(-0.461547 -0.291665 0.833583)} Vertex 11341 -1.63988 18.8604 3.19906 {normal=(-0.414265 -0.327075 0.845196)} Vertex 11342 -1.56835 18.8229 3.21665 {normal=(-0.362129 -0.354438 0.858010)} Vertex 11343 -1.49199 18.7973 3.23542 {normal=(-0.306458 -0.373029 0.871711)} Vertex 11344 -1.41269 18.7845 3.25492 {normal=(-0.248733 -0.382415 0.885917)} Vertex 11345 -1.33241 18.7845 3.27465 {normal=(-0.190367 -0.382414 0.900266)} Vertex 11346 -1.25311 18.7974 3.29415 {normal=(-0.132612 -0.373012 0.914453)} Vertex 11347 -1.17676 18.8229 3.31292 {normal=(-0.076952 -0.354398 0.928131)} Vertex 11348 -1.10523 18.8605 3.3305 {normal=(-0.024878 -0.327071 0.940934)} Vertex 11349 -1.04028 18.909 3.34647 {normal=(0.022410 -0.291693 0.952558)} Vertex 11350 -0.983506 18.9675 3.36042 {normal=(0.063749 -0.249114 0.962720)} Vertex 11351 -0.936315 19.0344 3.37202 {normal=(0.098101 -0.200442 0.971160)} Vertex 11352 -0.899868 19.108 3.38098 {normal=(0.124631 -0.146811 0.977684)} Vertex 11353 -0.875059 19.1867 3.38708 {normal=(0.142701 -0.089532 0.982126)} Vertex 11354 -0.862499 19.2684 3.39016 {normal=(0.151852 -0.030076 0.984372)} Vertex 11355 -0.862498 19.351 3.39016 {normal=(0.151847 0.030118 0.984370)} Vertex 11356 -0.875057 19.4327 3.38707 {normal=(0.142697 0.089599 0.982120)} Vertex 11357 -0.899867 19.5113 3.38097 {normal=(0.124625 0.146857 0.977677)} Vertex 11358 -0.936314 19.5849 3.37201 {normal=(0.098096 0.200465 0.971156)} Vertex 11359 -0.983502 19.6519 3.3604 {normal=(0.063762 0.249153 0.962709)} Vertex 11360 -1.04027 19.7103 3.34645 {normal=(0.022411 0.291747 0.952538)} Vertex 11361 -1.10522 19.7589 3.33048 {normal=(-0.024911 0.327136 0.940911)} Vertex 11362 -1.17676 19.7964 3.31289 {normal=(-0.077002 0.354463 0.928106)} Vertex 11363 -1.25311 19.822 3.29412 {normal=(-0.132616 0.373077 0.914429)} Vertex 11364 -1.33241 19.8349 3.27463 {normal=(-0.190348 0.382484 0.900236)} Vertex 11365 -1.41302 19.6301 3.32377 {normal=(-0.249140 0.234989 0.936069)} Vertex 11366 -1.4614 19.6222 3.31188 {normal=(-0.284562 0.229216 0.927358)} Vertex 11367 -1.50797 19.6066 3.30043 {normal=(-0.318764 0.217795 0.918948)} Vertex 11368 -1.55161 19.5837 3.28971 {normal=(-0.350809 0.200971 0.911073)} Vertex 11369 -1.59123 19.5541 3.27996 {normal=(-0.379883 0.179200 0.903929)} Vertex 11370 -1.62586 19.5184 3.27145 {normal=(-0.405243 0.153063 0.897698)} Vertex 11371 -1.65465 19.4776 3.26437 {normal=(-0.426324 0.123196 0.892516)} Vertex 11372 -1.67689 19.4327 3.25891 {normal=(-0.442644 0.090241 0.888500)} Vertex 11373 -1.69202 19.3847 3.25519 {normal=(-0.453753 0.055047 0.885770)} Vertex 11374 -1.69968 19.3349 3.25331 {normal=(-0.459368 0.018535 0.884392)} Vertex 11375 -1.69968 19.2845 3.25331 {normal=(-0.459362 -0.018470 0.884395)} Vertex 11376 -1.69202 19.2346 3.25519 {normal=(-0.453754 -0.054990 0.885774)} Vertex 11377 -1.67689 19.1867 3.25892 {normal=(-0.442644 -0.090171 0.888507)} Vertex 11378 -1.65465 19.1418 3.26438 {normal=(-0.426319 -0.123147 0.892523)} Vertex 11379 -1.62586 19.101 3.27146 {normal=(-0.405249 -0.153040 0.897701)} Vertex 11380 -1.59123 19.0653 3.27998 {normal=(-0.379886 -0.179154 0.903936)} Vertex 11381 -1.55161 19.0356 3.28972 {normal=(-0.350816 -0.200886 0.911086)} Vertex 11382 -1.50798 19.0127 3.30045 {normal=(-0.318772 -0.217696 0.918966)} Vertex 11383 -1.4614 18.9972 3.3119 {normal=(-0.284580 -0.229151 0.927372)} Vertex 11384 -1.41303 18.9893 3.32379 {normal=(-0.249142 -0.234930 0.936082)} Vertex 11385 -1.36405 18.9893 3.33583 {normal=(-0.213272 -0.234928 0.944899)} Vertex 11386 -1.31568 18.9972 3.34772 {normal=(-0.177774 -0.229138 0.953626)} Vertex 11387 -1.2691 19.0128 3.35917 {normal=(-0.143595 -0.217672 0.962035)} Vertex 11388 -1.22547 19.0357 3.3699 {normal=(-0.111647 -0.200914 0.969887)} Vertex 11389 -1.18584 19.0653 3.37964 {normal=(-0.082597 -0.179215 0.977020)} Vertex 11390 -1.15121 19.1009 3.38815 {normal=(-0.057169 -0.153039 0.983272)} Vertex 11391 -1.12242 19.1418 3.39523 {normal=(-0.036057 -0.123098 0.988462)} Vertex 11392 -1.10019 19.1867 3.40069 {normal=(-0.019758 -0.090161 0.992468)} Vertex 11393 -1.08506 19.2347 3.40441 {normal=(-0.008674 -0.054989 0.995194)} Vertex 11394 -1.07739 19.2845 3.40629 {normal=(-0.003053 -0.018470 0.996574)} Vertex 11395 -1.07739 19.3349 3.40629 {normal=(-0.003054 0.018502 0.996574)} Vertex 11396 -1.08506 19.3847 3.40441 {normal=(-0.008687 0.055063 0.995189)} Vertex 11397 -1.10019 19.4327 3.40068 {normal=(-0.019775 0.090258 0.992460)} Vertex 11398 -1.12242 19.4776 3.39522 {normal=(-0.036061 0.123156 0.988457)} Vertex 11399 -1.15121 19.5184 3.38814 {normal=(-0.057162 0.153043 0.983270)} Vertex 11400 -1.18584 19.5541 3.37963 {normal=(-0.082572 0.179223 0.977022)} Vertex 11401 -1.22546 19.5837 3.36988 {normal=(-0.111620 0.200977 0.969878)} Vertex 11402 -1.2691 19.6066 3.35916 {normal=(-0.143617 0.217778 0.962008)} Vertex 11403 -1.31568 19.6222 3.3477 {normal=(-0.177822 0.229206 0.953599)} Vertex 11404 -1.36405 19.6301 3.33581 {normal=(-0.213305 0.234985 0.944879)} Vertex 11405 -0.684054 23.1287 -3.57245 {normal=(-0.529841 0.246496 0.674325)} Vertex 11406 -0.692466 22.619 -3.98325 {normal=(-0.433915 -0.806278 -0.026140)} Vertex 11407 -0.687493 22.2477 -3.42871 {normal=(-0.645240 -0.033558 -0.655153)} Vertex 11408 -0.0415558 22.2558 -3.54813 {normal=(-0.000060 -0.513842 -0.849274)} Vertex 11409 0.677199 23.183 -3.54535 {normal=(0.435945 0.315007 0.742908)} Vertex 11410 0.692466 22.619 -3.98325 {normal=(0.433915 -0.806278 -0.026140)} Vertex 11411 0.640048 22.1792 -3.44902 {normal=(0.531359 -0.024334 -0.778089)} Vertex 11412 -0.76623 22.4588 -3.21771 {normal=(-0.860653 0.289735 -0.285812)} Vertex 11413 -0.385463 22.8297 -3.0251 {normal=(-0.262399 0.814599 0.447735)} Vertex 11414 -0.33765 22.2301 -3.53679 {normal=(-0.081346 -0.449520 -0.867440)} Vertex 11415 0 22.4433 -3.73565 {normal=(-0.000232 -0.756124 -0.615936)} Vertex 11416 -0.38394 22.5938 -4.03724 {normal=(-0.079097 -0.946818 -0.212818)} Vertex 11417 -0.625824 22.4685 -3.63796 {normal=(-0.594808 -0.471091 -0.387779)} Vertex 11418 -0.624818 22.8952 -3.3034 {normal=(-0.644121 0.503030 0.410612)} Vertex 11419 -0.378089 23.2593 -3.54019 {normal=(-0.129021 0.560917 0.784219)} Vertex 11420 0 23.0389 -3.29277 {normal=(0.000000 0.771800 0.629723)} Vertex 11421 -0.810103 22.8865 -3.73747 {normal=(-0.814721 -0.233835 0.395401)} Vertex 11422 0.76623 22.4588 -3.21771 {normal=(0.848407 0.250708 -0.305288)} Vertex 11423 0.385463 22.8297 -3.0251 {normal=(0.262399 0.814599 0.447735)} Vertex 11424 0.38394 22.5938 -4.03724 {normal=(0.079097 -0.946818 -0.212818)} Vertex 11425 0.337649 22.23 -3.53679 {normal=(0.169024 -0.356794 -0.870222)} Vertex 11426 0.625824 22.4685 -3.63796 {normal=(0.604241 -0.490673 -0.389100)} Vertex 11427 0.378089 23.2593 -3.54019 {normal=(0.095918 0.569871 0.794172)} Vertex 11428 0.624818 22.8952 -3.3034 {normal=(0.619520 0.486916 0.434693)} Vertex 11429 0.810103 22.8865 -3.73747 {normal=(0.835135 -0.262542 0.369595)} Vertex 11430 -0.673386 22.7007 -3.05125 {normal=(-0.673936 0.624440 0.131758)} Vertex 11431 0 22.866 -3.0471 {normal=(0.000000 0.837556 0.543500)} Vertex 11432 0.673386 22.7007 -3.05125 {normal=(0.673936 0.624440 0.131758)} Vertex 11433 0 22.6089 -4.05595 {normal=(0.000000 -0.947011 -0.244768)} Vertex 11434 -3.72529e-009 23.2868 -3.56044 {normal=(0.000000 0.619810 0.773963)} Vertex 11435 0.714653 22.67 -3.46198 {normal=(0.883502 -0.019381 0.034268)} Vertex 11436 0.356924 23.0095 -3.27467 {normal=(0.190341 0.734699 0.616602)} Vertex 11437 0.357729 22.4254 -3.71892 {normal=(0.157974 -0.710418 -0.599026)} Vertex 11438 -0.714653 22.67 -3.46198 {normal=(-0.890295 0.019656 0.027818)} Vertex 11439 -0.356924 23.0095 -3.27467 {normal=(-0.211981 0.738667 0.602209)} Vertex 11440 -0.357729 22.4254 -3.71892 {normal=(-0.144940 -0.719366 -0.599659)} Vertex 11441 -2.66578 20.6117 2.16856 {normal=(-0.941940 0.283331 0.170889)} Vertex 11442 -2.76691 20.4022 1.8246 {normal=(-0.904408 0.379537 -0.022590)} Vertex 11443 -2.63319 20.7068 2.11864 {normal=(-0.667662 0.643890 -0.200760)} Vertex 11444 -2.49571 20.8802 2.52203 {normal=(-0.834854 0.437862 0.273342)} Vertex 11445 -2.85132 20.167 1.6385 {normal=(-0.947097 0.185477 0.015509)} Vertex 11446 -2.84012 20.1847 1.59264 {normal=(-0.665977 0.383763 -0.504063)} Vertex 11447 -0.69513 19.9744 4.01607 {normal=(-0.205465 -0.246203 0.943327)} Vertex 11448 -0.863314 20.1709 4.00316 {normal=(-0.289645 -0.067534 0.949255)} Vertex 11449 -0.664025 20.1457 4.04774 {normal=(0.008511 0.152172 0.953574)} Vertex 11450 -0.537647 19.9918 4.04943 {normal=(0.207247 -0.211965 0.884367)} Vertex 11451 -2.32255 20.8138 2.90698 {normal=(-0.761719 0.354698 0.529905)} Vertex 11452 -2.26484 20.9628 2.86371 {normal=(-0.509248 0.714376 0.379724)} Vertex 11453 -2.06926 20.818 3.19146 {normal=(-0.570724 0.425799 0.687444)} Vertex 11454 -1.85614 20.6098 3.42771 {normal=(-0.472172 0.326270 0.816491)} Vertex 11455 -1.81523 20.8091 3.35957 {normal=(-0.283449 0.617380 0.695359)} Vertex 11456 -1.61016 20.6145 3.55039 {normal=(-0.437229 0.334877 0.829875)} Vertex 11457 -1.40971 20.3794 3.73387 {normal=(-0.470325 0.187346 0.859501)} Vertex 11458 -1.40086 20.5953 3.6776 {normal=(-0.318767 0.506559 0.761505)} Vertex 11459 -1.22044 20.3828 3.84692 {normal=(-0.459248 0.134560 0.871567)} Vertex 11460 -1.04282 20.1582 3.93308 {normal=(-0.362459 -0.057958 0.927138)} Vertex 11461 -1.03238 20.3718 3.93964 {normal=(-0.258427 0.296713 0.885752)} Vertex 11462 -2.78256 20.3207 1.88041 {normal=(-0.959658 0.146110 0.192596)} Vertex 11463 -2.85313 20.1103 1.6533 {normal=(-0.835858 -0.324419 0.215689)} Vertex 11464 -2.53622 20.7245 2.56913 {normal=(-0.893528 0.246862 0.351424)} Vertex 11465 -2.68135 20.4899 2.21817 {normal=(-0.883664 -0.122125 0.369588)} Vertex 11466 -2.13403 20.6081 3.23963 {normal=(-0.639719 0.285669 0.699700)} Vertex 11467 -2.36986 20.6224 2.94431 {normal=(-0.836711 0.008251 0.500579)} Vertex 11468 -1.63898 20.376 3.61996 {normal=(-0.440475 0.232122 0.864477)} Vertex 11469 -1.90978 20.3908 3.47482 {normal=(-0.582084 0.015203 0.781305)} Vertex 11470 -1.22479 20.15 3.86087 {normal=(-0.399010 0.000608 0.911022)} Vertex 11471 -1.42936 20.161 3.76451 {normal=(-0.487698 -0.123022 0.835671)} Vertex 11472 -0.876979 19.9519 3.96102 {normal=(-0.278366 -0.250740 0.920990)} Vertex 11473 -1.04819 19.949 3.90444 {normal=(-0.382070 -0.384063 0.809329)} Vertex 11474 -0.582945 19.8469 3.99275 {normal=(0.148284 -0.529433 0.759070)} Vertex 11475 -0.720578 19.8178 3.95128 {normal=(-0.170213 -0.630626 0.713102)} Vertex 11476 -2.7215 20.4188 1.77103 {normal=(-0.573394 0.631059 -0.465759)} Vertex 11477 -2.75646 20.2368 1.89482 {normal=(-0.755128 -0.421245 0.494266)} Vertex 11478 -2.52689 20.5876 2.58909 {normal=(-0.845824 -0.318425 0.418790)} Vertex 11479 -2.15416 20.4379 3.24185 {normal=(-0.769678 -0.266864 0.560510)} Vertex 11480 -1.65539 20.2043 3.62363 {normal=(-0.578139 -0.380507 0.697625)} Vertex 11481 -1.22283 19.9925 3.82446 {normal=(-0.502626 -0.557034 0.638512)} Vertex 11482 -0.883656 19.8181 3.88499 {normal=(-0.318022 -0.754101 0.556013)} Vertex 11483 -0.594036 19.7851 3.92536 {normal=(0.085680 -0.809247 0.541156)} Vertex 11484 -0.502725 20.0721 4.03713 {normal=(0.386254 0.151413 0.876283)} Vertex 11485 -0.829441 20.3224 3.98973 {normal=(0.019050 0.462556 0.877221)} Vertex 11486 -1.1872 20.5283 3.79954 {normal=(-0.160268 0.645571 0.742423)} Vertex 11487 -1.57546 20.7587 3.46463 {normal=(-0.149820 0.729369 0.666607)} Vertex 11488 -2.0012 20.9263 3.13053 {normal=(-0.266974 0.810334 0.511769)} Vertex 11489 -2.43337 20.9493 2.4784 {normal=(-0.528409 0.817037 0.003642)} Vertex 11490 2.63319 20.7068 2.11864 {normal=(0.667662 0.643890 -0.200760)} Vertex 11491 2.76691 20.4022 1.82461 {normal=(0.904408 0.379537 -0.022590)} Vertex 11492 2.66578 20.6117 2.16856 {normal=(0.941940 0.283331 0.170888)} Vertex 11493 2.49571 20.8802 2.52203 {normal=(0.834854 0.437862 0.273342)} Vertex 11494 2.84012 20.1847 1.59264 {normal=(0.665977 0.383762 -0.504063)} Vertex 11495 2.85132 20.167 1.6385 {normal=(0.947097 0.185477 0.015509)} Vertex 11496 0.664024 20.1457 4.04774 {normal=(-0.008511 0.152172 0.953573)} Vertex 11497 0.863314 20.1709 4.00316 {normal=(0.289645 -0.067534 0.949255)} Vertex 11498 0.69513 19.9745 4.01607 {normal=(0.205465 -0.246203 0.943327)} Vertex 11499 0.537647 19.9918 4.04943 {normal=(-0.207247 -0.211965 0.884367)} Vertex 11500 2.26484 20.9628 2.86371 {normal=(0.509248 0.714377 0.379724)} Vertex 11501 2.32255 20.8138 2.90698 {normal=(0.761719 0.354698 0.529905)} Vertex 11502 2.06926 20.818 3.19146 {normal=(0.570724 0.425799 0.687444)} Vertex 11503 1.81523 20.8091 3.35957 {normal=(0.283449 0.617380 0.695359)} Vertex 11504 1.85614 20.6098 3.42771 {normal=(0.472172 0.326270 0.816491)} Vertex 11505 1.61016 20.6145 3.55039 {normal=(0.437229 0.334877 0.829876)} Vertex 11506 1.40086 20.5953 3.6776 {normal=(0.318767 0.506559 0.761505)} Vertex 11507 1.40971 20.3794 3.73387 {normal=(0.470325 0.187346 0.859501)} Vertex 11508 1.22044 20.3828 3.84692 {normal=(0.459248 0.134560 0.871567)} Vertex 11509 1.03238 20.3718 3.93963 {normal=(0.258427 0.296712 0.885752)} Vertex 11510 1.04282 20.1582 3.93308 {normal=(0.362459 -0.057958 0.927138)} Vertex 11511 2.78256 20.3207 1.88041 {normal=(0.959658 0.146110 0.192596)} Vertex 11512 2.85313 20.1103 1.6533 {normal=(0.835858 -0.324419 0.215689)} Vertex 11513 2.68135 20.4899 2.21817 {normal=(0.883664 -0.122125 0.369588)} Vertex 11514 2.53622 20.7245 2.56913 {normal=(0.893528 0.246862 0.351424)} Vertex 11515 2.36986 20.6224 2.94431 {normal=(0.836711 0.008251 0.500579)} Vertex 11516 2.13403 20.6082 3.23963 {normal=(0.639719 0.285669 0.699700)} Vertex 11517 1.90978 20.3908 3.47482 {normal=(0.582084 0.015203 0.781305)} Vertex 11518 1.63898 20.376 3.61996 {normal=(0.440475 0.232122 0.864477)} Vertex 11519 1.42936 20.161 3.7645 {normal=(0.487697 -0.123022 0.835671)} Vertex 11520 1.22479 20.15 3.86087 {normal=(0.399010 0.000608 0.911022)} Vertex 11521 1.04819 19.949 3.90444 {normal=(0.382070 -0.384063 0.809329)} Vertex 11522 0.87698 19.9519 3.96102 {normal=(0.278366 -0.250740 0.920990)} Vertex 11523 0.720578 19.8178 3.95128 {normal=(0.170213 -0.630626 0.713102)} Vertex 11524 0.582945 19.8469 3.99275 {normal=(-0.148284 -0.529433 0.759070)} Vertex 11525 2.7215 20.4188 1.77104 {normal=(0.573394 0.631059 -0.465759)} Vertex 11526 2.75646 20.2368 1.89482 {normal=(0.755129 -0.421243 0.494266)} Vertex 11527 2.52689 20.5876 2.58909 {normal=(0.845824 -0.318425 0.418790)} Vertex 11528 2.15416 20.4379 3.24185 {normal=(0.769678 -0.266864 0.560510)} Vertex 11529 1.65539 20.2043 3.62363 {normal=(0.578139 -0.380507 0.697626)} Vertex 11530 1.22283 19.9925 3.82446 {normal=(0.502626 -0.557034 0.638512)} Vertex 11531 0.883656 19.8181 3.88499 {normal=(0.318022 -0.754101 0.556013)} Vertex 11532 0.594036 19.785 3.92536 {normal=(-0.085680 -0.809247 0.541156)} Vertex 11533 0.505967 19.9009 4.00313 {normal=(-0.526947 -0.481724 0.692639)} Vertex 11534 0.502725 20.0721 4.03713 {normal=(-0.386254 0.151413 0.876283)} Vertex 11535 0.829441 20.3224 3.98973 {normal=(-0.019050 0.462556 0.877222)} Vertex 11536 1.1872 20.5283 3.79954 {normal=(0.160267 0.645572 0.742422)} Vertex 11537 1.57546 20.7587 3.46463 {normal=(0.149816 0.729372 0.666605)} Vertex 11538 2.0012 20.9263 3.13052 {normal=(0.266974 0.810334 0.511769)} Vertex 11539 2.43337 20.9493 2.4784 {normal=(0.528409 0.817037 0.003642)} Vertex 11540 -0.869125 20.0595 3.98277 {normal=(-0.296376 -0.156304 0.940456)} Vertex 11541 -1.22132 20.2663 3.85434 {normal=(-0.435495 0.063535 0.893678)} Vertex 11542 -1.61799 20.4949 3.58667 {normal=(-0.446183 0.278058 0.849290)} Vertex 11543 -2.09928 20.7181 3.21511 {normal=(-0.607953 0.350576 0.702499)} Vertex 11544 -2.51501 20.808 2.54443 {normal=(-0.877826 0.325623 0.329969)} Vertex 11545 -2.7743 20.3625 1.85213 {normal=(-0.958434 0.261386 0.114148)} Vertex 11546 -2.75344 20.4218 1.79394 {normal=(-0.628608 0.591289 -0.377829)} Vertex 11547 -2.87969 20.0558 1.53431 {normal=(-0.799000 -0.093037 -0.270633)} Vertex 11548 -2.78173 20.2745 1.89463 {normal=(-0.837602 -0.219050 0.393373)} Vertex 11549 -2.54496 20.6457 2.58705 {normal=(-0.887841 -0.035926 0.399983)} Vertex 11550 -2.15761 20.5081 3.25267 {normal=(-0.719441 0.020571 0.650812)} Vertex 11551 -1.65686 20.2739 3.63677 {normal=(-0.512839 -0.026378 0.830423)} Vertex 11552 -1.22668 20.0526 3.85481 {normal=(-0.443516 -0.252588 0.830945)} Vertex 11553 -0.883087 19.8656 3.9308 {normal=(-0.300987 -0.511802 0.769154)} Vertex 11554 -0.560768 19.917 4.02539 {normal=(0.162402 -0.386797 0.841849)} Vertex 11555 -0.852451 20.2654 4.00965 {normal=(-0.148339 0.205849 0.936540)} Vertex 11556 -1.21234 20.4775 3.83114 {normal=(-0.321018 0.407682 0.817213)} Vertex 11557 -1.60085 20.7106 3.51006 {normal=(-0.268353 0.573224 0.736867)} Vertex 11558 -2.03842 20.8925 3.16462 {normal=(-0.390312 0.664577 0.583322)} Vertex 11559 -2.47094 20.9307 2.5005 {normal=(-0.620577 0.706432 0.080119)} Vertex 11560 0.869125 20.0595 3.98277 {normal=(0.296376 -0.156304 0.940456)} Vertex 11561 1.22132 20.2663 3.85434 {normal=(0.435495 0.063535 0.893678)} Vertex 11562 1.61799 20.4949 3.58667 {normal=(0.446183 0.278058 0.849290)} Vertex 11563 2.09928 20.7181 3.21511 {normal=(0.607953 0.350576 0.702499)} Vertex 11564 2.51501 20.808 2.54443 {normal=(0.877826 0.325623 0.329970)} Vertex 11565 2.7743 20.3625 1.85213 {normal=(0.958434 0.261386 0.114148)} Vertex 11566 2.75344 20.4219 1.79394 {normal=(0.628608 0.591289 -0.377829)} Vertex 11567 2.87969 20.0557 1.53431 {normal=(0.799000 -0.093037 -0.270633)} Vertex 11568 2.78173 20.2745 1.89463 {normal=(0.837602 -0.219050 0.393373)} Vertex 11569 2.54496 20.6457 2.58705 {normal=(0.887841 -0.035926 0.399983)} Vertex 11570 2.15761 20.5081 3.25267 {normal=(0.719441 0.020571 0.650812)} Vertex 11571 1.65686 20.2739 3.63676 {normal=(0.512839 -0.026378 0.830423)} Vertex 11572 1.22668 20.0526 3.85481 {normal=(0.443516 -0.252588 0.830945)} Vertex 11573 0.883087 19.8656 3.9308 {normal=(0.300987 -0.511802 0.769154)} Vertex 11574 0.560768 19.917 4.02539 {normal=(-0.162402 -0.386797 0.841849)} Vertex 11575 0.852451 20.2654 4.00965 {normal=(0.148339 0.205849 0.936540)} Vertex 11576 1.21234 20.4775 3.83114 {normal=(0.321018 0.407682 0.817213)} Vertex 11577 1.60085 20.7106 3.51006 {normal=(0.268353 0.573224 0.736867)} Vertex 11578 2.03842 20.8925 3.16462 {normal=(0.390312 0.664577 0.583322)} Vertex 11579 2.47094 20.9307 2.5005 {normal=(0.620577 0.706432 0.080119)} Vertex 11580 2.59682 20.7197 2.09883 {normal=(0.597392 0.722107 -0.284495)} Vertex 11581 2.22624 20.9886 2.83651 {normal=(0.392656 0.849337 0.313111)} Vertex 11582 1.784 20.8511 3.31781 {normal=(0.172375 0.760833 0.622018)} Vertex 11583 1.37639 20.645 3.63724 {normal=(0.168648 0.702407 0.690245)} Vertex 11584 1.00826 20.427 3.91543 {normal=(0.104301 0.556487 0.816693)} Vertex 11585 0.640608 20.1955 4.02728 {normal=(-0.181738 0.386418 0.897430)} Vertex 11586 0.476765 19.9776 4.02831 {normal=(-0.532358 -0.238385 0.780406)} Vertex 11587 0.533571 19.8309 3.96394 {normal=(-0.372482 -0.644779 0.634373)} Vertex 11588 0.721816 19.7813 3.90203 {normal=(0.157801 -0.835755 0.513366)} Vertex 11589 1.0463 19.8943 3.8653 {normal=(0.438560 -0.651153 0.600276)} Vertex 11590 1.42631 20.0956 3.74399 {normal=(0.543059 -0.468174 0.670173)} Vertex 11591 1.90871 20.3195 3.46313 {normal=(0.648327 -0.306050 0.679602)} Vertex 11592 2.35965 20.5564 2.93914 {normal=(0.850578 -0.278582 0.434305)} Vertex 11593 2.6576 20.4443 2.22577 {normal=(0.807176 -0.361877 0.462428)} Vertex 11594 2.82813 20.0753 1.64189 {normal=(0.786766 -0.464429 0.250330)} Vertex 11595 2.81232 20.1658 1.56825 {normal=(0.646399 0.349424 -0.570150)} Vertex 11596 0.710003 19.8869 3.98789 {normal=(0.193574 -0.367119 0.900494)} Vertex 11597 1.04611 20.0433 3.92381 {normal=(0.334442 -0.132486 0.927563)} Vertex 11598 1.42041 20.2612 3.75681 {normal=(0.439193 0.135687 0.883439)} Vertex 11599 1.88652 20.4935 3.45859 {normal=(0.493820 0.273923 0.819648)} Vertex 11600 2.35248 20.7147 2.92999 {normal=(0.788974 0.280733 0.530902)} Vertex 11601 2.67962 20.5491 2.19648 {normal=(0.948490 0.190886 0.224274)} Vertex 11602 1.04107 20.2749 3.94194 {normal=(0.381205 0.019533 0.918289)} Vertex 11603 1.40759 20.4988 3.70864 {normal=(0.482621 0.249257 0.834367)} Vertex 11604 1.83582 20.7218 3.39545 {normal=(0.446087 0.387602 0.800822)} Vertex 11605 2.29514 20.9006 2.88604 {normal=(0.716425 0.452852 0.505429)} Vertex 11606 0.681001 20.0664 4.04001 {normal=(0.173753 -0.127851 0.968658)} Vertex 11607 2.65324 20.6676 2.14225 {normal=(0.899246 0.395725 0.072179)} Vertex 11608 -2.59682 20.7197 2.09883 {normal=(-0.597392 0.722107 -0.284495)} Vertex 11609 -2.22624 20.9886 2.83651 {normal=(-0.392656 0.849337 0.313111)} Vertex 11610 -1.784 20.8511 3.31781 {normal=(-0.172378 0.760832 0.622018)} Vertex 11611 -1.37639 20.645 3.63724 {normal=(-0.168650 0.702404 0.690247)} Vertex 11612 -1.00826 20.427 3.91543 {normal=(-0.104301 0.556488 0.816693)} Vertex 11613 -0.640607 20.1955 4.02728 {normal=(0.181739 0.386418 0.897430)} Vertex 11614 -0.721816 19.7813 3.90203 {normal=(-0.157801 -0.835755 0.513366)} Vertex 11615 -1.0463 19.8943 3.8653 {normal=(-0.438560 -0.651154 0.600276)} Vertex 11616 -1.42631 20.0956 3.74399 {normal=(-0.543059 -0.468174 0.670173)} Vertex 11617 -1.90871 20.3195 3.46313 {normal=(-0.648327 -0.306050 0.679602)} Vertex 11618 -2.35965 20.5564 2.93914 {normal=(-0.850578 -0.278582 0.434305)} Vertex 11619 -2.6576 20.4443 2.22577 {normal=(-0.807176 -0.361877 0.462428)} Vertex 11620 -2.82813 20.0753 1.64189 {normal=(-0.686606 -0.575070 0.121403)} Vertex 11621 -2.81232 20.1658 1.56825 {normal=(-0.649195 0.334790 -0.568552)} Vertex 11622 -0.710003 19.8869 3.98789 {normal=(-0.193574 -0.367119 0.900494)} Vertex 11623 -1.04611 20.0433 3.92381 {normal=(-0.334442 -0.132486 0.927563)} Vertex 11624 -1.42041 20.2612 3.75681 {normal=(-0.439193 0.135687 0.883439)} Vertex 11625 -1.88652 20.4935 3.45859 {normal=(-0.493820 0.273923 0.819647)} Vertex 11626 -2.35248 20.7147 2.92999 {normal=(-0.788974 0.280733 0.530902)} Vertex 11627 -2.67962 20.5491 2.19648 {normal=(-0.948490 0.190886 0.224274)} Vertex 11628 -1.04107 20.2749 3.94194 {normal=(-0.381205 0.019533 0.918289)} Vertex 11629 -1.40758 20.4988 3.70864 {normal=(-0.482621 0.249257 0.834367)} Vertex 11630 -1.83582 20.7218 3.39545 {normal=(-0.446087 0.387602 0.800822)} Vertex 11631 -2.29514 20.9006 2.88605 {normal=(-0.716425 0.452852 0.505429)} Vertex 11632 -0.681001 20.0664 4.04001 {normal=(-0.173753 -0.127851 0.968658)} Vertex 11633 -2.65324 20.6676 2.14225 {normal=(-0.899246 0.395725 0.072179)} Vertex 11634 -1.52424 17.0576 3.14812 {normal=(-0.676203 -0.055846 0.716822)} Vertex 11635 1.52424 17.0576 3.14812 {normal=(0.676203 -0.055846 0.716822)} Vertex 11636 -0.178699 16.9162 3.86411 {normal=(-0.255549 -0.286439 0.905415)} Vertex 11637 0 16.8135 3.87691 {normal=(0.000000 -0.139794 0.979308)} Vertex 11638 -0.163356 16.6575 3.83849 {normal=(-0.203356 -0.083187 0.972499)} Vertex 11639 -0.34258 16.8406 3.80027 {normal=(-0.317436 -0.069914 0.944864)} Vertex 11640 0 16.4012 3.84259 {normal=(0.000000 -0.057293 0.989684)} Vertex 11641 -0.168126 16.1759 3.80774 {normal=(-0.215498 0.098254 0.956367)} Vertex 11642 -0.33231 16.4044 3.7722 {normal=(-0.300271 -0.070219 0.950936)} Vertex 11643 -0.525174 16.9646 3.7363 {normal=(-0.384890 -0.170670 0.890925)} Vertex 11644 -0.512092 16.6682 3.73546 {normal=(-0.333385 -0.054894 0.940383)} Vertex 11645 -0.719505 16.8637 3.66006 {normal=(-0.380952 0.015688 0.923957)} Vertex 11646 -0.506194 16.1725 3.69076 {normal=(-0.373437 0.054747 0.913213)} Vertex 11647 -0.707251 16.393 3.63151 {normal=(-0.396377 -0.115094 0.910004)} Vertex 11648 -0.959519 17.0167 3.54685 {normal=(-0.443513 -0.108433 0.873355)} Vertex 11649 -0.965524 16.6523 3.54949 {normal=(-0.435860 -0.066758 0.894546)} Vertex 11650 -1.21171 16.8826 3.42372 {normal=(-0.535114 0.027876 0.840038)} Vertex 11651 -0.925922 16.1264 3.47798 {normal=(-0.481454 -0.006467 0.861724)} Vertex 11652 -1.18844 16.3457 3.37933 {normal=(-0.511160 -0.153224 0.844241)} Vertex 11653 -1.39265 17.0597 3.27242 {normal=(-0.645406 -0.071496 0.745032)} Vertex 11654 -1.42111 16.6469 3.26632 {normal=(-0.622440 -0.047477 0.776697)} Vertex 11655 -1.557 16.8829 3.13792 {normal=(-0.721051 0.062436 0.687296)} Vertex 11656 -1.36389 16.1044 3.21864 {normal=(-0.535717 -0.014653 0.833061)} Vertex 11657 -1.55628 16.3706 3.118 {normal=(-0.662101 -0.086218 0.740927)} Vertex 11658 -1.64393 16.1829 3.01745 {normal=(-0.635530 0.024845 0.762029)} Vertex 11659 -1.71848 16.4277 2.95564 {normal=(-0.649192 -0.024754 0.747747)} Vertex 11660 -1.66623 16.6537 3.03018 {normal=(-0.770698 0.005177 0.634419)} Vertex 11661 -1.64349 16.8899 3.03441 {normal=(-0.684499 0.003650 0.713077)} Vertex 11662 -1.51259 17.1283 3.15739 {normal=(-0.523616 -0.438935 0.668878)} Vertex 11663 -1.58018 17.0738 3.09354 {normal=(-0.348211 -0.276093 0.844240)} Vertex 11664 -0.359753 16.9831 3.80914 {normal=(-0.343852 -0.606791 0.652182)} Vertex 11665 0 16.9353 3.90292 {normal=(0.000000 -0.663728 0.669733)} Vertex 11666 -0.718864 17.0331 3.6547 {normal=(-0.377988 -0.548669 0.673693)} Vertex 11667 -1.19945 17.1045 3.4204 {normal=(-0.490010 -0.498595 0.648595)} Vertex 11668 -1.72239 16.6851 2.95743 {normal=(-0.314582 -0.120540 0.899208)} Vertex 11669 -1.71853 16.2217 2.95015 {normal=(-0.379614 0.124966 0.888096)} Vertex 11670 -1.52192 16.0476 3.10882 {normal=(-0.483005 0.285803 0.806055)} Vertex 11671 -1.15267 16.0123 3.33042 {normal=(-0.467804 0.384427 0.744920)} Vertex 11672 -0.693934 16.0739 3.59681 {normal=(-0.425034 0.432120 0.738041)} Vertex 11673 -0.339261 16.0934 3.75161 {normal=(-0.285468 0.472824 0.783787)} Vertex 11674 0 16.0935 3.83227 {normal=(0.000000 0.502788 0.807274)} Vertex 11675 0.163356 16.6576 3.83849 {normal=(0.203356 -0.083187 0.972499)} Vertex 11676 0.178699 16.9162 3.86411 {normal=(0.255549 -0.286439 0.905414)} Vertex 11677 0.34258 16.8406 3.80027 {normal=(0.317431 -0.069915 0.944866)} Vertex 11678 0.168126 16.1759 3.80774 {normal=(0.215498 0.098254 0.956367)} Vertex 11679 0.33231 16.4044 3.7722 {normal=(0.300271 -0.070219 0.950936)} Vertex 11680 0.512092 16.6682 3.73546 {normal=(0.333384 -0.054899 0.940384)} Vertex 11681 0.525174 16.9646 3.7363 {normal=(0.384884 -0.170654 0.890931)} Vertex 11682 0.719506 16.8637 3.66006 {normal=(0.380953 0.015688 0.923956)} Vertex 11683 0.506194 16.1724 3.69076 {normal=(0.373437 0.054747 0.913214)} Vertex 11684 0.707251 16.393 3.63151 {normal=(0.396377 -0.115094 0.910004)} Vertex 11685 0.965524 16.6523 3.54949 {normal=(0.435862 -0.066760 0.894545)} Vertex 11686 0.959519 17.0167 3.54685 {normal=(0.443516 -0.108428 0.873354)} Vertex 11687 1.21171 16.8826 3.42372 {normal=(0.535114 0.027876 0.840038)} Vertex 11688 0.925922 16.1264 3.47798 {normal=(0.481456 -0.006465 0.861722)} Vertex 11689 1.18844 16.3457 3.37932 {normal=(0.511163 -0.153223 0.844240)} Vertex 11690 1.42111 16.6469 3.26632 {normal=(0.622439 -0.047479 0.776698)} Vertex 11691 1.39265 17.0597 3.27242 {normal=(0.645406 -0.071496 0.745032)} Vertex 11692 1.557 16.8829 3.13792 {normal=(0.721051 0.062436 0.687296)} Vertex 11693 1.36389 16.1044 3.21863 {normal=(0.535714 -0.014646 0.833063)} Vertex 11694 1.55627 16.3706 3.118 {normal=(0.662099 -0.086218 0.740929)} Vertex 11695 1.71848 16.4277 2.95564 {normal=(0.649192 -0.024754 0.747747)} Vertex 11696 1.64393 16.1829 3.01745 {normal=(0.635530 0.024846 0.762029)} Vertex 11697 1.66623 16.6537 3.03018 {normal=(0.770698 0.005177 0.634419)} Vertex 11698 1.64349 16.8899 3.03441 {normal=(0.684499 0.003650 0.713077)} Vertex 11699 1.58018 17.0738 3.09354 {normal=(0.348211 -0.276093 0.844240)} Vertex 11700 1.51259 17.1283 3.15739 {normal=(0.523616 -0.438936 0.668878)} Vertex 11701 0.359753 16.9831 3.80914 {normal=(0.343851 -0.606787 0.652184)} Vertex 11702 0.718864 17.0331 3.6547 {normal=(0.377989 -0.548659 0.673697)} Vertex 11703 1.19945 17.1045 3.4204 {normal=(0.490010 -0.498595 0.648595)} Vertex 11704 1.72239 16.6851 2.95743 {normal=(0.314582 -0.120540 0.899208)} Vertex 11705 1.71854 16.2217 2.95015 {normal=(0.379614 0.124966 0.888096)} Vertex 11706 1.52192 16.0476 3.10882 {normal=(0.483003 0.285805 0.806055)} Vertex 11707 1.15267 16.0123 3.33043 {normal=(0.467804 0.384431 0.744919)} Vertex 11708 0.693934 16.0739 3.59681 {normal=(0.425035 0.432120 0.738041)} Vertex 11709 0.339261 16.0934 3.75161 {normal=(0.285468 0.472824 0.783788)} Vertex 11710 -0.332219 16.6642 3.79205 {normal=(-0.294101 -0.067937 0.953059)} Vertex 11711 0 16.6535 3.85917 {normal=(0.000000 -0.090140 0.987202)} Vertex 11712 -0.71814 16.6655 3.65813 {normal=(-0.378142 -0.054497 0.922485)} Vertex 11713 -1.21345 16.6418 3.41656 {normal=(-0.526781 -0.069590 0.842062)} Vertex 11714 -1.5759 16.6505 3.12947 {normal=(-0.706559 -0.016926 0.701969)} Vertex 11715 -0.354667 16.9435 3.80369 {normal=(-0.357803 -0.229614 0.889960)} Vertex 11716 -0.717647 16.9866 3.6535 {normal=(-0.403394 -0.127218 0.890167)} Vertex 11717 -1.20109 17.0445 3.41895 {normal=(-0.542142 -0.094348 0.816369)} Vertex 11718 -1.70648 16.6721 2.97372 {normal=(-0.678473 -0.018599 0.716599)} Vertex 11719 -1.52799 16.1335 3.11084 {normal=(-0.590326 0.007402 0.796713)} Vertex 11720 -1.16031 16.1004 3.34097 {normal=(-0.506656 -0.020652 0.848098)} Vertex 11721 -0.696097 16.1584 3.60335 {normal=(-0.435110 0.022561 0.886196)} Vertex 11722 -0.336706 16.1758 3.75422 {normal=(-0.318325 0.079878 0.932511)} Vertex 11723 0 16.1751 3.83201 {normal=(0.000000 0.106436 0.972843)} Vertex 11724 0.332219 16.6642 3.79205 {normal=(0.294100 -0.067938 0.953060)} Vertex 11725 0.71814 16.6655 3.65813 {normal=(0.378143 -0.054503 0.922485)} Vertex 11726 1.21345 16.6418 3.41655 {normal=(0.526781 -0.069592 0.842062)} Vertex 11727 1.5759 16.6505 3.12947 {normal=(0.706558 -0.016926 0.701970)} Vertex 11728 0 16.901 3.89258 {normal=(0.000000 -0.312905 0.921785)} Vertex 11729 0.354667 16.9435 3.80369 {normal=(0.357799 -0.229609 0.889964)} Vertex 11730 0.717647 16.9866 3.6535 {normal=(0.403395 -0.127203 0.890169)} Vertex 11731 1.20109 17.0445 3.41896 {normal=(0.542142 -0.094348 0.816369)} Vertex 11732 1.70648 16.6721 2.97372 {normal=(0.678473 -0.018599 0.716599)} Vertex 11733 1.52799 16.1335 3.11084 {normal=(0.590323 0.007404 0.796715)} Vertex 11734 1.16031 16.1004 3.34097 {normal=(0.506659 -0.020644 0.848096)} Vertex 11735 0.696097 16.1584 3.60335 {normal=(0.435110 0.022561 0.886196)} Vertex 11736 0.336706 16.1758 3.75422 {normal=(0.318325 0.079878 0.932511)} Vertex 11737 0.170004 16.0941 3.80702 {normal=(0.187535 0.491674 0.798250)} Vertex 11738 0.507027 16.0892 3.68638 {normal=(0.349592 0.454050 0.766698)} Vertex 11739 0.920616 16.04 3.46839 {normal=(0.470672 0.413348 0.721213)} Vertex 11740 1.3557 16.0159 3.2122 {normal=(0.462373 0.332598 0.787036)} Vertex 11741 1.64356 16.1044 3.01536 {normal=(0.462695 0.237870 0.834028)} Vertex 11742 1.74478 16.4352 2.93151 {normal=(0.320777 -0.014845 0.912881)} Vertex 11743 1.65148 16.9116 3.02586 {normal=(0.335467 -0.187955 0.874908)} Vertex 11744 1.3887 17.1217 3.27436 {normal=(0.569500 -0.458605 0.621600)} Vertex 11745 0.95928 17.0703 3.54782 {normal=(0.412059 -0.528048 0.672436)} Vertex 11746 0.528859 17.007 3.73914 {normal=(0.361102 -0.576521 0.662971)} Vertex 11747 0.18203 16.9524 3.87273 {normal=(0.252060 -0.642207 0.658656)} Vertex 11748 1.65981 16.4015 3.0201 {normal=(0.727410 -0.049126 0.682286)} Vertex 11749 1.39541 16.3495 3.24243 {normal=(0.583145 -0.127221 0.800300)} Vertex 11750 1.41182 16.8925 3.27303 {normal=(0.641875 0.043159 0.763048)} Vertex 11751 0.946575 16.367 3.51461 {normal=(0.448027 -0.144875 0.881293)} Vertex 11752 0.965721 16.8732 3.55383 {normal=(0.432341 0.024173 0.899923)} Vertex 11753 0.5079 16.4033 3.71323 {normal=(0.345482 -0.088029 0.933682)} Vertex 11754 0.518718 16.8534 3.73911 {normal=(0.350009 -0.017904 0.935879)} Vertex 11755 0.164267 16.4027 3.82085 {normal=(0.205683 -0.060284 0.973679)} Vertex 11756 0.170321 16.8233 3.85281 {normal=(0.222349 -0.118882 0.963683)} Vertex 11757 -0.170004 16.0941 3.80702 {normal=(-0.187535 0.491674 0.798251)} Vertex 11758 -0.507027 16.0892 3.68638 {normal=(-0.349592 0.454050 0.766698)} Vertex 11759 -0.920616 16.04 3.46839 {normal=(-0.470672 0.413346 0.721213)} Vertex 11760 -1.3557 16.0159 3.2122 {normal=(-0.462375 0.332593 0.787035)} Vertex 11761 -1.64356 16.1044 3.01536 {normal=(-0.462696 0.237870 0.834028)} Vertex 11762 -1.74478 16.4352 2.93151 {normal=(-0.320777 -0.014845 0.912881)} Vertex 11763 -1.65148 16.9115 3.02586 {normal=(-0.335467 -0.187955 0.874908)} Vertex 11764 -1.3887 17.1217 3.27436 {normal=(-0.569500 -0.458605 0.621600)} Vertex 11765 -0.959279 17.0703 3.54782 {normal=(-0.412057 -0.528051 0.672435)} Vertex 11766 -0.528859 17.007 3.73914 {normal=(-0.361104 -0.576532 0.662966)} Vertex 11767 -0.18203 16.9524 3.87273 {normal=(-0.252060 -0.642207 0.658656)} Vertex 11768 -1.65981 16.4015 3.0201 {normal=(-0.727410 -0.049126 0.682286)} Vertex 11769 -1.39541 16.3495 3.24243 {normal=(-0.583148 -0.127221 0.800298)} Vertex 11770 -1.41182 16.8925 3.27303 {normal=(-0.641875 0.043159 0.763048)} Vertex 11771 -0.946575 16.367 3.51461 {normal=(-0.448024 -0.144875 0.881294)} Vertex 11772 -0.965721 16.8732 3.55383 {normal=(-0.432339 0.024173 0.899925)} Vertex 11773 -0.5079 16.4033 3.71323 {normal=(-0.345482 -0.088029 0.933682)} Vertex 11774 -0.518718 16.8534 3.73911 {normal=(-0.350015 -0.017903 0.935876)} Vertex 11775 -0.164267 16.4027 3.82085 {normal=(-0.205683 -0.060284 0.973679)} Vertex 11776 -0.170321 16.8233 3.8528 {normal=(-0.222349 -0.118882 0.963683)} Vertex 11777 -1.41995 21.6287 -3.30933 {normal=(-0.481637 0.320616 -0.806912)} Vertex 11778 -2.82788 18.6362 -1.85872 {normal=(-0.914582 -0.056982 0.068327)} Vertex 11779 -3.22343 20.9112 -1.29261 {normal=(-0.890435 0.314294 -0.158301)} Vertex 11780 -1.24334 22.5052 -2.81453 {normal=(-0.368122 0.804374 -0.344244)} Vertex 11781 0 21.9438 -3.91011 {normal=(0.000000 0.753197 -0.643007)} Vertex 11782 -3.14399 20.8725 -0.319884 {normal=(-0.419352 0.849767 0.234399)} Vertex 11783 -3.04858 19.9683 0.82904 {normal=(-0.531979 0.229538 0.782110)} Vertex 11784 -2.96697 18.3531 1.16702 {normal=(-0.568656 -0.227454 0.739074)} Vertex 11785 -3.00634 18.0555 0.924601 {normal=(-0.507984 -0.525514 0.671900)} Vertex 11786 1.41995 21.6287 -3.30933 {normal=(0.481637 0.320616 -0.806912)} Vertex 11787 2.84972 18.5355 -1.8975 {normal=(0.940516 -0.042053 -0.042284)} Vertex 11788 3.22343 20.9112 -1.29261 {normal=(0.890436 0.314292 -0.158302)} Vertex 11789 1.24334 22.5052 -2.81453 {normal=(0.368122 0.804374 -0.344244)} Vertex 11790 -7.45058e-009 15.7605 -3.92037 {normal=(0.000000 -0.543126 -0.836720)} Vertex 11791 3.14399 20.8726 -0.319884 {normal=(0.419351 0.849767 0.234399)} Vertex 11792 3.04858 19.9683 0.82904 {normal=(0.531979 0.229538 0.782111)} Vertex 11793 2.96697 18.3531 1.16702 {normal=(0.568656 -0.227454 0.739074)} Vertex 11794 3.00634 18.0555 0.924601 {normal=(0.507984 -0.525514 0.671900)} Vertex 11795 0.325448 15.6429 -6.01943 {normal=(-0.000858 -0.756102 -0.654440)} Vertex 11796 3.0974 17.7131 0.173884 {normal=(0.425890 -0.342511 -0.826936)} Vertex 11797 0.429443 23.6557 -5.6112 {normal=(0.135121 0.670169 -0.714222)} Vertex 11798 -0.325448 15.6429 -6.01943 {normal=(0.000858 -0.756102 -0.654440)} Vertex 11799 -3.09718 17.7131 0.173884 {normal=(-0.442075 -0.349119 -0.815731)} Vertex 11800 -0.429443 23.6557 -5.6112 {normal=(-0.135121 0.670169 -0.714222)} Vertex 11801 -1.36918 17.0851 -2.38393 {normal=(0.440444 -0.389753 0.806746)} Vertex 11802 -1.08488 16.4292 -2.49658 {normal=(-0.536537 0.137376 -0.827563)} Vertex 11803 -0.775947 17.0191 -2.6135 {normal=(-0.385450 0.020704 -0.913852)} Vertex 11804 0.000415999 17.1965 -2.76138 {normal=(-0.001798 -0.002181 -0.995509)} Vertex 11805 -0.443979 17.0481 -2.81427 {normal=(0.201528 -0.356401 0.905892)} Vertex 11806 -0.327382 16.8246 -2.77241 {normal=(-0.185381 0.128384 -0.965795)} Vertex 11807 -1.74359 15.4415 -3.08947 {normal=(-0.486268 -0.680630 -0.541306)} Vertex 11808 -1.35678 15.4946 -3.01807 {normal=(0.419096 -0.468712 0.773536)} Vertex 11809 -0.965787 15.368 -3.51527 {normal=(-0.257120 -0.643921 -0.712525)} Vertex 11810 -1.38992 15.7193 -3.61827 {normal=(-0.392829 -0.553284 -0.724815)} Vertex 11811 -0.480329 15.4609 -3.38862 {normal=(0.175946 -0.480833 0.852254)} Vertex 11812 0 15.3938 -3.68077 {normal=(0.000000 -0.586784 -0.807778)} Vertex 11813 -0.554502 15.74 -3.88078 {normal=(-0.123008 -0.545637 -0.825525)} Vertex 11814 -1.78052 16.2182 -3.68451 {normal=(-0.546745 -0.323073 -0.754758)} Vertex 11815 -1.03687 16.2424 -4.0713 {normal=(-0.312827 -0.369372 -0.861800)} Vertex 11816 -1.40293 16.9496 -4.05682 {normal=(-0.496255 -0.043589 -0.848454)} Vertex 11817 -0.398847 16.3607 -4.27377 {normal=(-0.217703 -0.460516 -0.834064)} Vertex 11818 -0.813824 17.0205 -4.35295 {normal=(-0.487213 -0.146624 -0.789641)} Vertex 11819 -1.89158 19.5883 -3.25049 {normal=(-0.630024 -0.031031 -0.773577)} Vertex 11820 -1.38846 18.9443 -3.65683 {normal=(-0.578227 0.098831 -0.805522)} Vertex 11821 -1.16367 19.7745 -3.76985 {normal=(-0.598955 0.011038 -0.799348)} Vertex 11822 -1.64099 20.3174 -3.45128 {normal=(-0.580174 0.055578 -0.809179)} Vertex 11823 -0.904738 19.0142 -3.99606 {normal=(-0.747062 0.034421 -0.622028)} Vertex 11824 -0.974643 19.8232 -4.0158 {normal=(-0.944099 -0.119474 -0.151577)} Vertex 11825 -1.10228 20.5029 -3.80754 {normal=(-0.717936 0.081914 -0.643853)} Vertex 11826 -2.21943 20.7062 -2.94013 {normal=(-0.679677 0.128974 -0.717056)} Vertex 11827 -1.36318 21.1002 -3.51178 {normal=(-0.519704 0.212056 -0.823098)} Vertex 11828 -1.91032 21.4349 -3.01944 {normal=(-0.613136 0.266973 -0.739189)} Vertex 11829 -1.0038 21.215 -3.71347 {normal=(-0.827175 0.206490 -0.308533)} Vertex 11830 -1.05463 21.724 -3.45778 {normal=(-0.437584 0.371666 -0.813013)} Vertex 11831 -2.55149 21.3953 -2.41595 {normal=(-0.751332 0.287918 -0.576420)} Vertex 11832 -1.64764 22.0439 -2.95216 {normal=(-0.560808 0.479831 -0.659540)} Vertex 11833 -2.18035 21.8804 -2.51749 {normal=(-0.667020 0.611046 -0.309824)} Vertex 11834 -1.48416 22.4221 -2.7687 {normal=(-0.471925 0.762226 -0.332132)} Vertex 11835 -1.30103 22.234 -3.05186 {normal=(-0.379950 0.588446 -0.700669)} Vertex 11836 -0.689327 23.5994 -5.58237 {normal=(-0.325106 0.580506 -0.729062)} Vertex 11837 -0.609602 23.4672 -5.68867 {normal=(-0.255547 0.234952 -0.900863)} Vertex 11838 -0.312557 23.4268 -5.72205 {normal=(-0.028749 0.105577 -0.957768)} Vertex 11839 0 23.6271 -5.64376 {normal=(0.000000 0.564232 -0.800941)} Vertex 11840 -0.318486 23.7844 -5.45897 {normal=(-0.049534 0.808905 -0.572921)} Vertex 11841 -0.60546 23.7284 -5.48127 {normal=(-0.216518 0.742683 -0.623788)} Vertex 11842 -3.26972 17.9444 0.312284 {normal=(-0.946755 0.013486 -0.132089)} Vertex 11843 -3.27299 17.6955 0.357653 {normal=(-0.806852 -0.422739 0.048534)} Vertex 11844 -3.2346 17.8341 0.193375 {normal=(-0.654430 -0.205760 -0.632412)} Vertex 11845 -2.37247 17.5932 -1.47714 {normal=(0.779739 -0.249869 0.571450)} Vertex 11846 -2.69679 16.5946 -1.78414 {normal=(-0.810205 -0.290654 0.398472)} Vertex 11847 -2.49486 16.2078 -1.92033 {normal=(0.573394 -0.413144 0.680184)} Vertex 11848 -2.37508 15.7052 -2.54864 {normal=(-0.786404 -0.552597 -0.203825)} Vertex 11849 -2.67181 16.2467 -2.37648 {normal=(-0.915921 -0.354532 -0.066836)} Vertex 11850 -2.86749 16.9674 -2.15632 {normal=(-0.976037 -0.124710 0.023238)} Vertex 11851 -2.50524 16.3079 -2.97987 {normal=(-0.821023 -0.263792 -0.468298)} Vertex 11852 -2.77071 17.0394 -2.59645 {normal=(-0.919350 -0.001958 -0.355023)} Vertex 11853 -2.9174 19.0312 -1.83108 {normal=(-0.901277 -0.237072 -0.002340)} Vertex 11854 -2.72046 18.6357 -2.21924 {normal=(-0.892132 -0.002989 -0.413683)} Vertex 11855 -2.54875 19.3228 -2.55234 {normal=(-0.779642 -0.116190 -0.611021)} Vertex 11856 -2.91026 19.5398 -2.10316 {normal=(-0.867109 -0.143648 -0.461363)} Vertex 11857 -3.12802 19.7161 -1.64951 {normal=(-0.901466 -0.245702 0.004493)} Vertex 11858 -2.84947 20.1938 -2.24768 {normal=(-0.839695 0.027010 -0.536505)} Vertex 11859 -3.16757 20.2503 -1.6428 {normal=(-0.935844 -0.019174 -0.329127)} Vertex 11860 -3.26122 20.2071 -1.21827 {normal=(-0.875847 -0.346276 0.048133)} Vertex 11861 -3.14799 20.7924 -1.59075 {normal=(-0.918061 0.131465 -0.355081)} Vertex 11862 -3.31826 20.5897 -1.04247 {normal=(-0.978592 0.002962 -0.115620)} Vertex 11863 -3.30865 20.3984 -0.694226 {normal=(-0.825135 -0.463674 0.054233)} Vertex 11864 -3.31673 20.8559 -0.752818 {normal=(-0.809384 0.473816 0.017211)} Vertex 11865 -3.35517 20.607 -0.431877 {normal=(-0.972863 -0.048197 -0.011872)} Vertex 11866 -3.30044 20.3839 -0.234424 {normal=(-0.744959 -0.568205 -0.140222)} Vertex 11867 -3.35219 20.689 -0.0951828 {normal=(-0.808983 0.417099 0.172157)} Vertex 11868 -3.35292 20.4109 0.0573425 {normal=(-0.957444 -0.148700 -0.049484)} Vertex 11869 -1.96949 17.2858 -1.96165 {normal=(0.491199 -0.331535 0.802045)} Vertex 11870 -2.04662 15.6567 -2.54143 {normal=(0.400093 -0.470635 0.782212)} Vertex 11871 -2.12291 15.7995 -3.12463 {normal=(-0.635910 -0.523038 -0.545192)} Vertex 11872 -2.18672 16.8774 -3.44885 {normal=(-0.709553 -0.013791 -0.683447)} Vertex 11873 -2.14714 18.8135 -3.00527 {normal=(-0.721006 0.057449 -0.679346)} Vertex 11874 -2.40464 19.9603 -2.83452 {normal=(-0.725017 -0.028646 -0.680382)} Vertex 11875 -2.74938 20.8658 -2.28544 {normal=(-0.806929 0.120282 -0.572497)} Vertex 11876 -3.00298 21.1932 -1.74611 {normal=(-0.791738 0.487155 -0.195806)} Vertex 11877 -3.29922 19.9873 0.36009 {normal=(-0.971500 -0.070892 -0.063432)} Vertex 11878 -3.26537 20.1674 0.0418573 {normal=(-0.712271 -0.357313 -0.483557)} Vertex 11879 -3.31554 20.2652 0.450694 {normal=(-0.835911 0.202078 0.362065)} Vertex 11880 -3.2991 19.5276 0.385881 {normal=(-0.963428 0.012329 -0.168930)} Vertex 11881 -3.22895 19.7985 0.130983 {normal=(-0.706435 -0.097100 -0.587739)} Vertex 11882 -3.28492 19.722 0.673607 {normal=(-0.847527 0.045745 0.399923)} Vertex 11883 -3.30253 19.0763 0.39055 {normal=(-0.949344 -0.068307 -0.230582)} Vertex 11884 -3.21192 19.3161 0.15282 {normal=(-0.644245 -0.039899 -0.671122)} Vertex 11885 -3.32206 19.2623 0.625545 {normal=(-0.895568 0.019564 0.293587)} Vertex 11886 -3.19748 18.1763 0.155906 {normal=(-0.755504 0.095409 -0.548195)} Vertex 11887 -3.24156 18.22 0.478123 {normal=(-0.982849 0.061254 -0.031214)} Vertex 11888 -3.23892 17.971 0.622786 {normal=(-0.865941 -0.196903 0.332252)} Vertex 11889 -3.19347 18.3848 0.230786 {normal=(-0.819109 0.126958 -0.438691)} Vertex 11890 -3.23048 18.4669 0.609034 {normal=(-0.986420 -0.054926 0.008775)} Vertex 11891 -3.19518 18.2869 0.902136 {normal=(-0.847315 -0.188545 0.379755)} Vertex 11892 -3.27225 18.7959 0.505943 {normal=(-0.968474 -0.148247 -0.097665)} Vertex 11893 -3.20678 18.9074 0.186123 {normal=(-0.675661 -0.112532 -0.627548)} Vertex 11894 -3.3043 18.9523 0.710401 {normal=(-0.887718 0.063389 0.279280)} Vertex 11895 -3.19978 18.6326 0.244661 {normal=(-0.784935 -0.092279 -0.492854)} Vertex 11896 -3.22399 18.6294 0.918028 {normal=(-0.847883 0.003142 0.402650)} Vertex 11897 -2.65668 17.9104 -1.35834 {normal=(-0.780411 -0.044266 0.526865)} Vertex 11898 -2.6517 18.2624 -1.45502 {normal=(-0.833393 0.195069 0.502251)} Vertex 11899 -2.80774 18.2253 -1.68742 {normal=(-0.889246 0.077424 0.399478)} Vertex 11900 -2.77287 18.6991 -1.65284 {normal=(-0.843599 -0.107805 0.505850)} Vertex 11901 -2.9876 19.3326 -1.6162 {normal=(-0.781700 -0.340833 0.484964)} Vertex 11902 -3.13164 19.9137 -1.36364 {normal=(-0.692503 -0.531210 0.433609)} Vertex 11903 -3.19412 20.2208 -0.909794 {normal=(-0.688473 -0.686222 0.221853)} Vertex 11904 -3.1995 20.329 -0.45125 {normal=(-0.730924 -0.654276 0.030134)} Vertex 11905 -3.16813 20.2532 -0.10085 {normal=(-0.572764 -0.647486 -0.449057)} Vertex 11906 -3.13132 19.9841 0.0241662 {normal=(-0.531560 -0.235682 -0.806370)} Vertex 11907 -3.08102 18.7797 0.118882 {normal=(-0.593625 -0.062719 -0.791276)} Vertex 11908 -3.0829 18.5167 0.126 {normal=(-0.657900 0.065099 -0.745879)} Vertex 11909 -3.07614 18.2933 0.073763 {normal=(-0.601933 0.123112 -0.783814)} Vertex 11910 -3.08978 18.0229 0.0917398 {normal=(-0.501541 -0.114354 -0.849769)} Vertex 11911 -3.16908 17.6199 0.2602 {normal=(-0.519764 -0.620930 -0.395071)} Vertex 11912 -3.05452 17.5627 0.204332 {normal=(-0.563850 -0.337483 -0.699708)} Vertex 11913 -3.07244 17.5788 0.408199 {normal=(-0.592428 -0.710473 0.294808)} Vertex 11914 -3.16299 17.727 0.555443 {normal=(-0.565347 -0.591764 0.537561)} Vertex 11915 -3.03044 17.8739 0.769623 {normal=(-0.523984 -0.534644 0.651315)} Vertex 11916 -3.11484 18.1033 0.901993 {normal=(-0.579114 -0.482507 0.621119)} Vertex 11917 -2.979 18.2248 1.08221 {normal=(-0.529099 -0.478270 0.686341)} Vertex 11918 -3.08595 18.4047 1.11422 {normal=(-0.555909 -0.132680 0.775228)} Vertex 11919 -3.01552 18.6124 1.10905 {normal=(-0.504285 0.211742 0.819780)} Vertex 11920 -3.17617 18.8254 0.956614 {normal=(-0.543023 0.371623 0.708407)} Vertex 11921 -3.11008 18.9506 0.895065 {normal=(-0.477480 0.473267 0.726208)} Vertex 11922 -3.23955 19.075 0.761047 {normal=(-0.615785 0.207043 0.690956)} Vertex 11923 -3.1172 19.2666 0.800823 {normal=(-0.503719 0.049085 0.853352)} Vertex 11924 -3.20791 19.4841 0.77255 {normal=(-0.564313 -0.028729 0.793192)} Vertex 11925 -3.06171 19.7417 0.844568 {normal=(-0.504648 0.025370 0.850585)} Vertex 11926 -3.17615 19.9938 0.751491 {normal=(-0.536759 0.270837 0.764929)} Vertex 11927 -3.10868 20.3164 0.574542 {normal=(-0.445089 0.560670 0.682848)} Vertex 11928 -3.26345 20.5693 0.250891 {normal=(-0.476137 0.664709 0.518724)} Vertex 11929 -3.16198 20.7672 -0.0372068 {normal=(-0.416514 0.810789 0.364948)} Vertex 11930 -3.24244 20.865 -0.38372 {normal=(-0.417641 0.857228 0.209944)} Vertex 11931 -3.12706 20.9508 -0.704373 {normal=(-0.377236 0.894694 0.141266)} Vertex 11932 -3.15065 21.0374 -1.13533 {normal=(-0.471673 0.830708 0.126119)} Vertex 11933 -2.88282 21.2396 -1.54043 {normal=(-0.496733 0.828671 0.166146)} Vertex 11934 -2.64378 21.5232 -2.04946 {normal=(-0.564488 0.784110 0.126992)} Vertex 11935 -2.11603 21.916 -2.2535 {normal=(-0.560012 0.797513 0.165692)} Vertex 11936 -1.71585 22.281 -2.53948 {normal=(-0.536330 0.813044 0.117273)} Vertex 11937 -1.41693 22.4375 -2.51065 {normal=(-0.417182 0.882135 0.157143)} Vertex 11938 -1.17143 22.5692 -2.65631 {normal=(-0.343495 0.918403 0.102474)} Vertex 11939 -0.627767 22.712 -2.60691 {normal=(-0.215891 0.962205 0.103563)} Vertex 11940 -0.623368 22.7545 -2.83605 {normal=(-0.254665 0.919869 -0.177257)} Vertex 11941 0 22.8261 -2.7577 {normal=(0.000000 0.981120 0.128346)} Vertex 11942 0 16.2555 -3.12444 {normal=(0.000201 -0.374715 0.919967)} Vertex 11943 -0.918627 16.256 -2.92902 {normal=(0.354306 -0.382538 0.848548)} Vertex 11944 -1.69229 16.3663 -2.44027 {normal=(0.460643 -0.363397 0.808258)} Vertex 11945 -2.24051 16.6325 -1.9962 {normal=(0.585354 -0.332336 0.726187)} Vertex 11946 -2.57736 17.1595 -1.43497 {normal=(-0.265392 -0.289717 0.876606)} Vertex 11947 -2.80584 17.4242 -1.71963 {normal=(-0.929674 -0.082711 0.345631)} Vertex 11948 -2.86911 17.8048 -2.07786 {normal=(-0.970312 0.078535 -0.108938)} Vertex 11949 -2.49674 17.8146 -2.84319 {normal=(-0.812610 0.137411 -0.560794)} Vertex 11950 -1.76319 17.8983 -3.62128 {normal=(-0.631220 0.156298 -0.756469)} Vertex 11951 -1.05816 17.9792 -4.09686 {normal=(-0.530764 0.132212 -0.834937)} Vertex 11952 -0.785612 18.0477 -4.35013 {normal=(-0.925022 -0.062655 -0.164968)} Vertex 11953 -0.792565 22.0169 -3.42345 {normal=(-0.659035 0.425135 -0.488029)} Vertex 11954 -0.998167 22.051 -3.31332 {normal=(-0.377201 0.497961 -0.776140)} Vertex 11955 -0.885439 22.5924 -2.92757 {normal=(-0.301042 0.698678 -0.626159)} Vertex 11956 0 22.8248 -2.93957 {normal=(0.000000 0.862449 -0.480127)} Vertex 11957 0 22.6222 -4.39334 {normal=(0.000000 -0.998312 0.006916)} Vertex 11958 -0.426998 22.5915 -4.69999 {normal=(-0.039467 -0.989891 -0.056747)} Vertex 11959 -0.748286 22.6237 -4.34359 {normal=(-0.255753 -0.939610 0.078385)} Vertex 11960 -1.01914 22.8237 -4.16072 {normal=(-0.689741 -0.587994 0.351787)} Vertex 11961 -1.20364 23.188 -4.12692 {normal=(-0.831957 -0.255168 0.455749)} Vertex 11962 -0.962206 23.3041 -3.76085 {normal=(-0.611474 -0.129750 0.736950)} Vertex 11963 -0.742035 23.5034 -3.67692 {normal=(-0.174566 0.295860 0.895782)} Vertex 11964 -0.442905 23.7843 -3.8537 {normal=(0.015825 0.648023 0.742030)} Vertex 11965 0 23.5526 -3.73396 {normal=(0.000000 0.531327 0.846194)} Vertex 11966 0 22.6486 -5.02636 {normal=(0.000000 -0.961700 -0.259780)} Vertex 11967 -0.501171 22.729 -5.2427 {normal=(-0.092953 -0.904119 -0.400204)} Vertex 11968 -0.876181 22.6777 -4.91915 {normal=(-0.306388 -0.913506 -0.182591)} Vertex 11969 -1.32181 23.028 -4.62278 {normal=(-0.873444 -0.406471 0.124132)} Vertex 11970 -1.38043 23.4071 -4.62019 {normal=(-0.974481 0.038160 0.114223)} Vertex 11971 -1.23389 23.5791 -4.12752 {normal=(-0.872630 0.173810 0.406113)} Vertex 11972 -0.881513 23.9092 -4.02069 {normal=(-0.271665 0.769208 0.516493)} Vertex 11973 -0.511559 24.0675 -4.33042 {normal=(-0.065275 0.960518 0.209397)} Vertex 11974 0 23.9754 -4.11235 {normal=(0.000000 0.856542 0.491358)} Vertex 11975 0 22.8291 -5.4515 {normal=(0.000000 -0.787757 -0.597163)} Vertex 11976 -0.464367 22.9547 -5.5471 {normal=(-0.112811 -0.572685 -0.795217)} Vertex 11977 -0.936095 22.8546 -5.33394 {normal=(-0.364478 -0.697272 -0.566973)} Vertex 11978 -1.37379 23.2261 -5.09165 {normal=(-0.899158 -0.120156 -0.297592)} Vertex 11979 -1.28392 23.5516 -5.13185 {normal=(-0.767940 0.393653 -0.433225)} Vertex 11980 -1.30597 23.7407 -4.67955 {normal=(-0.853138 0.468685 -0.041983)} Vertex 11981 -0.931449 24.0309 -4.57825 {normal=(-0.301328 0.925961 -0.051865)} Vertex 11982 -0.468712 24.0269 -4.88116 {normal=(-0.067125 0.959482 -0.259132)} Vertex 11983 0 24.0904 -4.61678 {normal=(0.000000 0.989798 -0.076032)} Vertex 11984 0 23.1899 -5.68315 {normal=(0.000000 -0.287570 -0.941311)} Vertex 11985 -0.686659 23.1979 -5.63404 {normal=(-0.247486 -0.256675 -0.913069)} Vertex 11986 -0.996225 23.4366 -5.49306 {normal=(-0.548911 0.263691 -0.763029)} Vertex 11987 -0.965774 23.7178 -5.29064 {normal=(-0.467364 0.664857 -0.567325)} Vertex 11988 -0.689605 23.8972 -5.19072 {normal=(-0.178134 0.868585 -0.443804)} Vertex 11989 0 23.931 -5.18933 {normal=(0.000000 0.913120 -0.398066)} Vertex 11990 -1.02197 23.6399 -3.82744 {normal=(-0.555488 0.335392 0.696200)} Vertex 11991 -1.16827 23.8832 -4.28788 {normal=(-0.672509 0.636737 0.246622)} Vertex 11992 -1.09018 23.8968 -4.91425 {normal=(-0.497523 0.776919 -0.312560)} Vertex 11993 -1.12682 23.1282 -5.39539 {normal=(-0.592596 -0.248363 -0.719134)} Vertex 11994 -1.22489 22.9022 -5.05139 {normal=(-0.686886 -0.637329 -0.224879)} Vertex 11995 -1.07572 22.7416 -4.54517 {normal=(-0.567915 -0.780024 0.086290)} Vertex 11996 -0.880441 21.7733 -3.60305 {normal=(-0.928366 0.316258 0.072593)} Vertex 11997 -0.784603 22.029 -3.52457 {normal=(-0.770189 0.525486 -0.134853)} Vertex 11998 -0.76233 21.2754 -4.33535 {normal=(-0.437457 0.520220 -0.703997)} Vertex 11999 -0.450542 20.6504 -4.82854 {normal=(-0.195854 0.318458 -0.900893)} Vertex 12000 0 21.3955 -4.41566 {normal=(0.000000 0.600287 -0.788000)} Vertex 12001 -0.361539 21.9111 -3.90847 {normal=(-0.153310 0.752502 -0.621792)} Vertex 12002 -0.743522 19.9272 -4.85841 {normal=(-0.458681 0.034201 -0.859920)} Vertex 12003 -0.343928 19.2584 -4.99074 {normal=(-0.146803 0.124334 -0.970417)} Vertex 12004 0 20.0347 -4.96363 {normal=(0.000000 0.092708 -0.991664)} Vertex 12005 -0.597177 18.2656 -5.16829 {normal=(-0.462350 0.215038 -0.829004)} Vertex 12006 -0.321998 17.4517 -5.48778 {normal=(-0.152047 0.264881 -0.944996)} Vertex 12007 0 18.3193 -5.23576 {normal=(0.000000 0.258687 -0.964593)} Vertex 12008 0 16.4355 -4.3378 {normal=(0.000000 -0.520826 -0.852657)} Vertex 12009 -0.301882 16.7497 -4.59644 {normal=(0.048312 -0.995245 -0.082960)} Vertex 12010 -0.240131 15.6267 -5.90942 {normal=(-0.051109 -0.968411 0.188811)} Vertex 12011 0 15.6529 -6.02938 {normal=(0.000000 -0.751317 -0.659924)} Vertex 12012 -0.253375 15.7619 -6.06461 {normal=(-0.081989 0.082224 -0.982985)} Vertex 12013 -0.466247 15.731 -6.02946 {normal=(-0.539966 -0.224474 -0.707144)} Vertex 12014 -0.453747 15.6602 -5.94666 {normal=(-0.541162 -0.747227 -0.103168)} Vertex 12015 -0.787135 17.2147 -4.81681 {normal=(-0.936639 -0.148131 0.263492)} Vertex 12016 -0.848955 18.1821 -4.80915 {normal=(-0.968843 -0.006513 -0.108034)} Vertex 12017 -0.876484 19.083 -4.33291 {normal=(-0.986879 -0.135174 0.068850)} Vertex 12018 -1.0242 19.8339 -4.48044 {normal=(-0.953462 -0.141532 -0.160748)} Vertex 12019 -1.09262 20.4813 -4.12345 {normal=(-0.988969 -0.043668 0.088085)} Vertex 12020 -1.03851 21.1817 -4.04394 {normal=(-0.935630 0.219645 -0.110095)} Vertex 12021 -0.611122 22.0805 -3.60647 {normal=(-0.340392 0.847160 -0.342869)} Vertex 12022 -0.836339 21.7987 -3.81814 {normal=(-0.639642 0.593885 -0.414577)} Vertex 12023 -1.03188 20.4962 -4.57188 {normal=(-0.785829 0.142985 -0.527496)} Vertex 12024 -0.816406 19.1702 -4.7805 {normal=(-0.789173 -0.003059 -0.551674)} Vertex 12025 -0.772732 17.3726 -5.27345 {normal=(-0.810826 0.135789 -0.502928)} Vertex 12026 0 16.577 -4.76817 {normal=(0.000000 -0.386103 0.915828)} Vertex 12027 -0.2628 16.2214 -4.92453 {normal=(-0.023141 -0.603918 0.768756)} Vertex 12028 -0.558535 16.5742 -4.79016 {normal=(-0.564460 -0.389132 0.666587)} Vertex 12029 -0.697786 16.3729 -5.11134 {normal=(-0.812638 -0.385185 0.349474)} Vertex 12030 -0.82767 16.8245 -5.20228 {normal=(-0.964047 -0.067356 -0.036233)} Vertex 12031 -0.747772 16.6708 -5.49874 {normal=(-0.812661 0.098199 -0.493416)} Vertex 12032 -0.592184 16.9924 -5.54611 {normal=(-0.465398 0.225086 -0.824060)} Vertex 12033 -0.312786 16.8059 -5.67181 {normal=(-0.141857 0.313807 -0.930867)} Vertex 12034 0 17.05 -5.61115 {normal=(0.000000 0.257403 -0.965618)} Vertex 12035 0 16.0093 -5.19813 {normal=(0.000000 -0.796499 0.587995)} Vertex 12036 -0.238371 15.8276 -5.46432 {normal=(-0.018707 -0.869481 0.483938)} Vertex 12037 -0.468558 16.0051 -5.20271 {normal=(-0.390617 -0.718281 0.487274)} Vertex 12038 -0.59032 15.9292 -5.57638 {normal=(-0.773818 -0.545450 0.204955)} Vertex 12039 -0.733329 16.2815 -5.50303 {normal=(-0.937947 -0.209207 -0.097106)} Vertex 12040 -0.627833 16.1304 -5.81205 {normal=(-0.778087 0.082228 -0.539515)} Vertex 12041 -0.544136 16.4751 -5.75005 {normal=(-0.437574 0.304822 -0.813151)} Vertex 12042 -0.275885 16.2213 -5.91605 {normal=(-0.108896 0.369963 -0.918218)} Vertex 12043 0 16.532 -5.79169 {normal=(0.000000 0.377699 -0.925434)} Vertex 12044 0 15.7051 -5.72203 {normal=(0.000000 -0.915643 0.385939)} Vertex 12045 -0.424075 15.7031 -5.72432 {normal=(-0.334953 -0.842415 0.315295)} Vertex 12046 -0.583803 15.8416 -5.87483 {normal=(-0.874699 -0.331305 -0.215599)} Vertex 12047 -0.461952 15.9386 -5.99863 {normal=(-0.353460 0.208273 -0.877389)} Vertex 12048 0 15.9671 -6.01949 {normal=(0.000000 0.269138 -0.958570)} Vertex 12049 1.40937 17.0851 -2.38393 {normal=(-0.461952 -0.332419 0.820939)} Vertex 12050 0.447557 17.0481 -2.81427 {normal=(-0.198565 -0.350398 0.909446)} Vertex 12051 0.965787 15.368 -3.51527 {normal=(0.257120 -0.643921 -0.712525)} Vertex 12052 1.35678 15.4945 -3.01807 {normal=(-0.419096 -0.468712 0.773536)} Vertex 12053 1.74359 15.4415 -3.08947 {normal=(0.486268 -0.680630 -0.541306)} Vertex 12054 1.38992 15.7193 -3.61827 {normal=(0.392829 -0.553284 -0.724815)} Vertex 12055 0.480329 15.4609 -3.38862 {normal=(-0.175946 -0.480833 0.852254)} Vertex 12056 0.554502 15.74 -3.88078 {normal=(0.123008 -0.545637 -0.825525)} Vertex 12057 1.03687 16.2424 -4.0713 {normal=(0.312827 -0.369372 -0.861800)} Vertex 12058 1.78052 16.2182 -3.68451 {normal=(0.546745 -0.323073 -0.754758)} Vertex 12059 1.40293 16.9496 -4.05682 {normal=(0.496255 -0.043589 -0.848454)} Vertex 12060 0.398847 16.3607 -4.27377 {normal=(0.217703 -0.460517 -0.834063)} Vertex 12061 0.813824 17.0204 -4.35295 {normal=(0.487213 -0.146624 -0.789641)} Vertex 12062 1.16367 19.7745 -3.76985 {normal=(0.598955 0.011038 -0.799348)} Vertex 12063 1.38846 18.9443 -3.65683 {normal=(0.578227 0.098831 -0.805522)} Vertex 12064 1.89158 19.5883 -3.25049 {normal=(0.630024 -0.031031 -0.773577)} Vertex 12065 1.64099 20.3174 -3.45128 {normal=(0.580174 0.055578 -0.809179)} Vertex 12066 0.974643 19.8232 -4.01579 {normal=(0.944099 -0.119474 -0.151577)} Vertex 12067 0.904738 19.0142 -3.99606 {normal=(0.747062 0.034421 -0.622029)} Vertex 12068 1.10228 20.5029 -3.80754 {normal=(0.717936 0.081914 -0.643853)} Vertex 12069 1.36319 21.1002 -3.51178 {normal=(0.519704 0.212056 -0.823098)} Vertex 12070 2.21943 20.7062 -2.94013 {normal=(0.679677 0.128974 -0.717056)} Vertex 12071 1.91032 21.4349 -3.01944 {normal=(0.613136 0.266973 -0.739189)} Vertex 12072 1.0038 21.215 -3.71346 {normal=(0.827175 0.206490 -0.308533)} Vertex 12073 1.05463 21.724 -3.45778 {normal=(0.437584 0.371666 -0.813013)} Vertex 12074 1.64764 22.0439 -2.95216 {normal=(0.560808 0.479831 -0.659540)} Vertex 12075 2.55149 21.3953 -2.41595 {normal=(0.751332 0.287918 -0.576420)} Vertex 12076 2.18035 21.8804 -2.51749 {normal=(0.667020 0.611046 -0.309824)} Vertex 12077 1.48417 22.4221 -2.76869 {normal=(0.471926 0.762226 -0.332132)} Vertex 12078 1.30103 22.234 -3.05186 {normal=(0.379950 0.588446 -0.700669)} Vertex 12079 0.318486 23.7844 -5.45897 {normal=(0.049534 0.808905 -0.572921)} Vertex 12080 0.312557 23.4268 -5.72205 {normal=(0.028750 0.105577 -0.957768)} Vertex 12081 0.609603 23.4672 -5.68867 {normal=(0.255548 0.234948 -0.900863)} Vertex 12082 0.689327 23.5994 -5.58237 {normal=(0.325106 0.580506 -0.729062)} Vertex 12083 0.60546 23.7284 -5.48127 {normal=(0.216518 0.742683 -0.623788)} Vertex 12084 3.27299 17.6955 0.357653 {normal=(0.806852 -0.422737 0.048535)} Vertex 12085 3.26972 17.9444 0.312284 {normal=(0.946757 0.013494 -0.132086)} Vertex 12086 3.2346 17.8341 0.193375 {normal=(0.654497 -0.205728 -0.632387)} Vertex 12087 2.41903 17.5932 -1.47714 {normal=(-0.748497 -0.235252 0.617821)} Vertex 12088 2.24429 17.5997 -1.6265 {normal=(0.791765 -0.074950 -0.598167)} Vertex 12089 2.37507 15.7052 -2.54864 {normal=(0.786404 -0.552597 -0.203825)} Vertex 12090 2.49486 16.2078 -1.92033 {normal=(-0.565244 -0.407695 0.692998)} Vertex 12091 2.69679 16.5946 -1.78414 {normal=(0.812412 -0.292152 0.391309)} Vertex 12092 2.67181 16.2467 -2.37648 {normal=(0.915921 -0.354532 -0.066836)} Vertex 12093 2.50524 16.3079 -2.97987 {normal=(0.821023 -0.263792 -0.468298)} Vertex 12094 2.86748 16.9674 -2.15631 {normal=(0.976037 -0.124710 0.023238)} Vertex 12095 2.77071 17.0394 -2.59645 {normal=(0.919350 -0.001958 -0.355023)} Vertex 12096 2.54875 19.3228 -2.55234 {normal=(0.779642 -0.116190 -0.611021)} Vertex 12097 2.72046 18.6357 -2.21924 {normal=(0.886410 0.000730 -0.436235)} Vertex 12098 2.9174 19.0312 -1.83108 {normal=(0.901423 -0.217123 -0.017107)} Vertex 12099 2.91026 19.5398 -2.10316 {normal=(0.867108 -0.143648 -0.461363)} Vertex 12100 2.84947 20.1938 -2.24768 {normal=(0.839695 0.027010 -0.536505)} Vertex 12101 3.12802 19.7161 -1.64951 {normal=(0.901466 -0.245702 0.004493)} Vertex 12102 3.16757 20.2503 -1.6428 {normal=(0.935844 -0.019174 -0.329127)} Vertex 12103 3.14799 20.7924 -1.59075 {normal=(0.918061 0.131465 -0.355081)} Vertex 12104 3.26122 20.2071 -1.21827 {normal=(0.875847 -0.346276 0.048133)} Vertex 12105 3.31826 20.5897 -1.04247 {normal=(0.978592 0.002960 -0.115621)} Vertex 12106 3.31674 20.8559 -0.752818 {normal=(0.809389 0.473807 0.017208)} Vertex 12107 3.30864 20.3984 -0.694226 {normal=(0.825135 -0.463673 0.054233)} Vertex 12108 3.35517 20.607 -0.431877 {normal=(0.972864 -0.048203 -0.011872)} Vertex 12109 3.35219 20.689 -0.0951827 {normal=(0.808984 0.417095 0.172158)} Vertex 12110 3.30044 20.3839 -0.234424 {normal=(0.744959 -0.568205 -0.140222)} Vertex 12111 3.35292 20.4109 0.0573425 {normal=(0.957444 -0.148700 -0.049484)} Vertex 12112 1.99203 17.2857 -1.96165 {normal=(-0.526728 -0.288528 0.798061)} Vertex 12113 2.04662 15.6567 -2.54143 {normal=(-0.400093 -0.470635 0.782212)} Vertex 12114 2.12291 15.7995 -3.12463 {normal=(0.635910 -0.523038 -0.545192)} Vertex 12115 2.18672 16.8774 -3.44885 {normal=(0.709553 -0.013791 -0.683447)} Vertex 12116 2.14714 18.8135 -3.00527 {normal=(0.721006 0.057449 -0.679346)} Vertex 12117 2.40464 19.9603 -2.83452 {normal=(0.725017 -0.028646 -0.680382)} Vertex 12118 2.74938 20.8658 -2.28544 {normal=(0.806929 0.120282 -0.572496)} Vertex 12119 3.00298 21.1933 -1.74611 {normal=(0.791738 0.487155 -0.195806)} Vertex 12120 3.26537 20.1674 0.0418573 {normal=(0.712271 -0.357313 -0.483557)} Vertex 12121 3.29922 19.9873 0.360089 {normal=(0.971500 -0.070892 -0.063432)} Vertex 12122 3.31554 20.2652 0.450694 {normal=(0.835911 0.202078 0.362065)} Vertex 12123 3.22895 19.7985 0.130983 {normal=(0.706435 -0.097100 -0.587739)} Vertex 12124 3.2991 19.5276 0.385881 {normal=(0.963428 0.012329 -0.168930)} Vertex 12125 3.28492 19.722 0.673607 {normal=(0.847527 0.045745 0.399923)} Vertex 12126 3.21192 19.3161 0.152821 {normal=(0.644246 -0.039899 -0.671122)} Vertex 12127 3.30253 19.0763 0.39055 {normal=(0.949344 -0.068307 -0.230582)} Vertex 12128 3.32206 19.2624 0.625545 {normal=(0.895567 0.019564 0.293587)} Vertex 12129 3.24156 18.22 0.478123 {normal=(0.982850 0.061250 -0.031216)} Vertex 12130 3.19747 18.1763 0.155906 {normal=(0.755507 0.095399 -0.548195)} Vertex 12131 3.23892 17.971 0.622786 {normal=(0.865941 -0.196903 0.332249)} Vertex 12132 3.23048 18.4669 0.609034 {normal=(0.986420 -0.054926 0.008775)} Vertex 12133 3.19347 18.3848 0.230786 {normal=(0.819109 0.126958 -0.438691)} Vertex 12134 3.19518 18.2869 0.902136 {normal=(0.847315 -0.188545 0.379755)} Vertex 12135 3.20678 18.9074 0.186123 {normal=(0.675661 -0.112532 -0.627548)} Vertex 12136 3.27225 18.7959 0.505944 {normal=(0.968474 -0.148247 -0.097665)} Vertex 12137 3.3043 18.9523 0.710401 {normal=(0.887718 0.063389 0.279280)} Vertex 12138 3.19978 18.6326 0.244661 {normal=(0.784935 -0.092279 -0.492854)} Vertex 12139 3.22399 18.6294 0.918028 {normal=(0.847883 0.003142 0.402650)} Vertex 12140 2.67583 17.9104 -1.35834 {normal=(0.816339 0.045845 0.433884)} Vertex 12141 2.65386 18.2624 -1.45502 {normal=(0.838777 0.207577 0.487187)} Vertex 12142 2.80774 18.2253 -1.68742 {normal=(0.843146 0.053991 0.464364)} Vertex 12143 2.77287 18.6991 -1.65284 {normal=(0.799576 -0.104740 0.564945)} Vertex 12144 2.9876 19.3326 -1.6162 {normal=(0.781700 -0.340833 0.484964)} Vertex 12145 3.13164 19.9137 -1.36364 {normal=(0.692503 -0.531210 0.433609)} Vertex 12146 3.19412 20.2208 -0.909794 {normal=(0.688473 -0.686222 0.221853)} Vertex 12147 3.1995 20.329 -0.45125 {normal=(0.730926 -0.654274 0.030138)} Vertex 12148 3.16813 20.2532 -0.10085 {normal=(0.572773 -0.647474 -0.449055)} Vertex 12149 3.13132 19.9841 0.0241662 {normal=(0.531560 -0.235682 -0.806370)} Vertex 12150 3.09275 19.5828 0.074425 {normal=(0.531105 -0.089598 -0.824201)} Vertex 12151 3.07886 19.0857 0.1047 {normal=(0.456775 -0.050073 -0.883740)} Vertex 12152 3.08103 18.7798 0.118882 {normal=(0.593625 -0.062719 -0.791275)} Vertex 12153 3.0829 18.5167 0.126 {normal=(0.657900 0.065099 -0.745879)} Vertex 12154 3.07614 18.2933 0.073763 {normal=(0.601933 0.123109 -0.783814)} Vertex 12155 3.08978 18.0229 0.0917397 {normal=(0.488409 -0.122416 -0.857726)} Vertex 12156 3.16908 17.6199 0.2602 {normal=(0.519121 -0.621894 -0.394348)} Vertex 12157 3.05467 17.5627 0.204332 {normal=(0.567448 -0.340259 -0.694502)} Vertex 12158 3.0718 17.5788 0.408199 {normal=(0.588216 -0.714103 0.296364)} Vertex 12159 3.16299 17.727 0.555443 {normal=(0.564655 -0.592187 0.537533)} Vertex 12160 3.03043 17.8739 0.769623 {normal=(0.523478 -0.535247 0.651278)} Vertex 12161 3.11484 18.1033 0.901993 {normal=(0.579114 -0.482507 0.621119)} Vertex 12162 2.979 18.2248 1.08221 {normal=(0.529099 -0.478270 0.686341)} Vertex 12163 3.08595 18.4047 1.11422 {normal=(0.555909 -0.132680 0.775228)} Vertex 12164 3.01552 18.6124 1.10905 {normal=(0.504285 0.211742 0.819780)} Vertex 12165 3.17617 18.8254 0.956614 {normal=(0.543023 0.371623 0.708407)} Vertex 12166 3.11008 18.9506 0.895065 {normal=(0.477480 0.473266 0.726208)} Vertex 12167 3.23955 19.075 0.761047 {normal=(0.615785 0.207043 0.690956)} Vertex 12168 3.1172 19.2667 0.800823 {normal=(0.503719 0.049086 0.853352)} Vertex 12169 3.20791 19.4841 0.77255 {normal=(0.564312 -0.028729 0.793193)} Vertex 12170 3.06171 19.7417 0.844568 {normal=(0.504647 0.025369 0.850586)} Vertex 12171 3.17614 19.9938 0.751491 {normal=(0.536759 0.270837 0.764929)} Vertex 12172 3.10868 20.3164 0.574542 {normal=(0.445089 0.560669 0.682848)} Vertex 12173 3.26345 20.5693 0.250891 {normal=(0.476137 0.664709 0.518724)} Vertex 12174 3.16198 20.7672 -0.0372068 {normal=(0.416513 0.810789 0.364948)} Vertex 12175 3.24244 20.8651 -0.38372 {normal=(0.417645 0.857224 0.209944)} Vertex 12176 3.12706 20.9509 -0.704373 {normal=(0.377236 0.894695 0.141266)} Vertex 12177 3.15065 21.0374 -1.13533 {normal=(0.471673 0.830708 0.126118)} Vertex 12178 2.88282 21.2396 -1.54043 {normal=(0.496733 0.828671 0.166146)} Vertex 12179 2.64378 21.5232 -2.04946 {normal=(0.564488 0.784109 0.126992)} Vertex 12180 2.11603 21.916 -2.2535 {normal=(0.560012 0.797513 0.165692)} Vertex 12181 1.71585 22.281 -2.53948 {normal=(0.536330 0.813044 0.117273)} Vertex 12182 1.41693 22.4375 -2.51065 {normal=(0.417182 0.882135 0.157143)} Vertex 12183 1.17143 22.5691 -2.65631 {normal=(0.343495 0.918403 0.102474)} Vertex 12184 0.623368 22.7545 -2.83605 {normal=(0.254665 0.919869 -0.177257)} Vertex 12185 0.627767 22.712 -2.60691 {normal=(0.215892 0.962205 0.103563)} Vertex 12186 0.918627 16.256 -2.92902 {normal=(-0.354686 -0.375812 0.851245)} Vertex 12187 1.69229 16.3663 -2.44027 {normal=(-0.470438 -0.343411 0.809953)} Vertex 12188 2.24051 16.6325 -1.9962 {normal=(-0.582939 -0.321016 0.735514)} Vertex 12189 2.61321 17.1595 -1.43497 {normal=(0.267744 -0.309069 0.859601)} Vertex 12190 2.80584 17.4242 -1.71963 {normal=(0.937724 -0.078191 0.325816)} Vertex 12191 2.86911 17.8048 -2.07786 {normal=(0.968293 0.057045 -0.114889)} Vertex 12192 2.49674 17.8145 -2.84319 {normal=(0.812610 0.137412 -0.560794)} Vertex 12193 1.76319 17.8983 -3.62128 {normal=(0.631220 0.156299 -0.756469)} Vertex 12194 1.05816 17.9792 -4.09686 {normal=(0.530764 0.132212 -0.834937)} Vertex 12195 0.785612 18.0477 -4.35013 {normal=(0.925022 -0.062655 -0.164968)} Vertex 12196 0.792565 22.0169 -3.42345 {normal=(0.594684 0.546207 -0.438603)} Vertex 12197 0.998167 22.051 -3.31332 {normal=(0.351336 0.513662 -0.777166)} Vertex 12198 0.885439 22.5924 -2.92757 {normal=(0.301042 0.698678 -0.626159)} Vertex 12199 0.426998 22.5915 -4.69999 {normal=(0.039467 -0.989891 -0.056747)} Vertex 12200 0.748286 22.6237 -4.34359 {normal=(0.255753 -0.939610 0.078385)} Vertex 12201 1.20364 23.1881 -4.12692 {normal=(0.831957 -0.255168 0.455749)} Vertex 12202 1.01914 22.8237 -4.16072 {normal=(0.689741 -0.587994 0.351787)} Vertex 12203 0.962206 23.3041 -3.76085 {normal=(0.684537 -0.091049 0.681380)} Vertex 12204 0.442905 23.7843 -3.8537 {normal=(-0.015825 0.648023 0.742030)} Vertex 12205 0.742035 23.5034 -3.67691 {normal=(0.212793 0.364043 0.871265)} Vertex 12206 0.501171 22.729 -5.2427 {normal=(0.092953 -0.904119 -0.400204)} Vertex 12207 0.876181 22.6777 -4.91915 {normal=(0.306388 -0.913506 -0.182591)} Vertex 12208 1.38043 23.4071 -4.62019 {normal=(0.974480 0.038160 0.114223)} Vertex 12209 1.32181 23.028 -4.62278 {normal=(0.873444 -0.406471 0.124132)} Vertex 12210 1.23389 23.5791 -4.12752 {normal=(0.872631 0.173810 0.406113)} Vertex 12211 0.511559 24.0675 -4.33042 {normal=(0.065275 0.960518 0.209397)} Vertex 12212 0.881513 23.9092 -4.02069 {normal=(0.271665 0.769208 0.516493)} Vertex 12213 0.464367 22.9547 -5.5471 {normal=(0.112813 -0.572682 -0.795218)} Vertex 12214 0.936095 22.8546 -5.33394 {normal=(0.364478 -0.697270 -0.566975)} Vertex 12215 1.28392 23.5516 -5.13185 {normal=(0.767940 0.393653 -0.433225)} Vertex 12216 1.37378 23.2261 -5.09165 {normal=(0.899158 -0.120156 -0.297593)} Vertex 12217 1.30597 23.7407 -4.67955 {normal=(0.853138 0.468685 -0.041983)} Vertex 12218 0.468712 24.0269 -4.88116 {normal=(0.067125 0.959482 -0.259132)} Vertex 12219 0.931449 24.0309 -4.57825 {normal=(0.301329 0.925961 -0.051865)} Vertex 12220 0.686659 23.1979 -5.63404 {normal=(0.247490 -0.256675 -0.913069)} Vertex 12221 0.996225 23.4366 -5.49306 {normal=(0.548910 0.263688 -0.763031)} Vertex 12222 0.965774 23.7178 -5.29064 {normal=(0.467364 0.664857 -0.567326)} Vertex 12223 0.689605 23.8972 -5.19072 {normal=(0.178134 0.868585 -0.443804)} Vertex 12224 1.02197 23.6399 -3.82744 {normal=(0.555488 0.335392 0.696200)} Vertex 12225 1.16827 23.8832 -4.28787 {normal=(0.672510 0.636737 0.246622)} Vertex 12226 1.09018 23.8968 -4.91425 {normal=(0.497523 0.776919 -0.312560)} Vertex 12227 1.12682 23.1282 -5.39539 {normal=(0.592593 -0.248363 -0.719137)} Vertex 12228 1.22489 22.9022 -5.05139 {normal=(0.686886 -0.637330 -0.224879)} Vertex 12229 1.07572 22.7416 -4.54517 {normal=(0.567915 -0.780024 0.086290)} Vertex 12230 0.880441 21.7733 -3.60305 {normal=(0.928366 0.316258 0.072593)} Vertex 12231 0.784603 22.0291 -3.52458 {normal=(0.686657 0.658868 -0.074988)} Vertex 12232 0.450542 20.6503 -4.82854 {normal=(0.195854 0.318458 -0.900893)} Vertex 12233 0.76233 21.2754 -4.33535 {normal=(0.437457 0.520220 -0.703997)} Vertex 12234 0.361539 21.9111 -3.90847 {normal=(0.153310 0.752502 -0.621792)} Vertex 12235 0.343928 19.2584 -4.99074 {normal=(0.146803 0.124334 -0.970417)} Vertex 12236 0.743522 19.9272 -4.85841 {normal=(0.458681 0.034201 -0.859919)} Vertex 12237 0.321997 17.4517 -5.48778 {normal=(0.152047 0.264881 -0.944996)} Vertex 12238 0.597177 18.2656 -5.16828 {normal=(0.462350 0.215038 -0.829003)} Vertex 12239 0.301882 16.7497 -4.59643 {normal=(-0.048312 -0.995245 -0.082960)} Vertex 12240 0.466247 15.731 -6.02947 {normal=(0.539966 -0.224474 -0.707144)} Vertex 12241 0.253375 15.7619 -6.06461 {normal=(0.081989 0.082224 -0.982985)} Vertex 12242 0.240131 15.6267 -5.90942 {normal=(0.051109 -0.968411 0.188811)} Vertex 12243 0.453747 15.6602 -5.94666 {normal=(0.541162 -0.747227 -0.103168)} Vertex 12244 0.848955 18.1821 -4.80915 {normal=(0.968843 -0.006513 -0.108034)} Vertex 12245 0.787135 17.2147 -4.81681 {normal=(0.936639 -0.148131 0.263492)} Vertex 12246 0.876484 19.083 -4.33291 {normal=(0.986879 -0.135174 0.068850)} Vertex 12247 1.0242 19.8339 -4.48044 {normal=(0.953462 -0.141532 -0.160748)} Vertex 12248 1.09262 20.4813 -4.12345 {normal=(0.988969 -0.043668 0.088085)} Vertex 12249 1.03851 21.1817 -4.04394 {normal=(0.935630 0.219645 -0.110095)} Vertex 12250 0.611122 22.0805 -3.60647 {normal=(0.310315 0.866636 -0.333501)} Vertex 12251 0.836339 21.7987 -3.81814 {normal=(0.639642 0.593885 -0.414577)} Vertex 12252 1.03188 20.4962 -4.57188 {normal=(0.785829 0.142985 -0.527496)} Vertex 12253 0.816406 19.1702 -4.7805 {normal=(0.789173 -0.003059 -0.551675)} Vertex 12254 0.772732 17.3725 -5.27345 {normal=(0.810827 0.135790 -0.502928)} Vertex 12255 0.2628 16.2214 -4.92453 {normal=(0.023141 -0.603918 0.768756)} Vertex 12256 0.558535 16.5742 -4.79016 {normal=(0.564460 -0.389132 0.666587)} Vertex 12257 0.697786 16.3729 -5.11134 {normal=(0.812638 -0.385185 0.349474)} Vertex 12258 0.82767 16.8245 -5.20228 {normal=(0.964047 -0.067356 -0.036233)} Vertex 12259 0.747772 16.6708 -5.49874 {normal=(0.812661 0.098199 -0.493416)} Vertex 12260 0.592184 16.9924 -5.54611 {normal=(0.465398 0.225086 -0.824060)} Vertex 12261 0.312786 16.8059 -5.67181 {normal=(0.141857 0.313807 -0.930867)} Vertex 12262 0.238371 15.8276 -5.46432 {normal=(0.018707 -0.869481 0.483938)} Vertex 12263 0.468558 16.0051 -5.20271 {normal=(0.390617 -0.718281 0.487274)} Vertex 12264 0.59032 15.9292 -5.57638 {normal=(0.773818 -0.545450 0.204955)} Vertex 12265 0.733329 16.2815 -5.50303 {normal=(0.937947 -0.209207 -0.097106)} Vertex 12266 0.627833 16.1305 -5.81205 {normal=(0.778087 0.082228 -0.539515)} Vertex 12267 0.544137 16.4751 -5.75005 {normal=(0.437574 0.304822 -0.813151)} Vertex 12268 0.275885 16.2213 -5.91605 {normal=(0.108896 0.369963 -0.918218)} Vertex 12269 0.424075 15.703 -5.72432 {normal=(0.334953 -0.842415 0.315295)} Vertex 12270 0.583803 15.8416 -5.87483 {normal=(0.874699 -0.331305 -0.215599)} Vertex 12271 0.461952 15.9386 -5.99863 {normal=(0.353460 0.208273 -0.877389)} Vertex 12272 -0.679747 16.6597 -2.686 {normal=(-0.380803 0.128079 -0.907691)} Vertex 12273 -1.75628 15.7495 -3.4032 {normal=(-0.505280 -0.548837 -0.654648)} Vertex 12274 -0.997951 15.7143 -3.77555 {normal=(-0.255686 -0.550732 -0.787532)} Vertex 12275 -1.77162 18.8864 -3.36442 {normal=(-0.639466 0.083114 -0.756289)} Vertex 12276 -1.07403 18.987 -3.87115 {normal=(-0.584704 0.092336 -0.801675)} Vertex 12277 -2.0614 20.1472 -3.15166 {normal=(-0.643563 0.019213 -0.758912)} Vertex 12278 -1.27682 20.4447 -3.68578 {normal=(-0.571984 0.079440 -0.811550)} Vertex 12279 -2.37852 21.158 -2.67515 {normal=(-0.709897 0.192456 -0.671270)} Vertex 12280 -1.37458 21.9382 -3.20659 {normal=(-0.438991 0.431218 -0.778888)} Vertex 12281 -2.44351 15.9412 -2.78242 {normal=(-0.801654 -0.454133 -0.336672)} Vertex 12282 -2.47631 18.7288 -2.61249 {normal=(-0.800311 0.032124 -0.583011)} Vertex 12283 -2.68337 19.7575 -2.48872 {normal=(-0.795378 -0.079335 -0.592515)} Vertex 12284 -3.01502 20.562 -1.91857 {normal=(-0.878092 0.071246 -0.466981)} Vertex 12285 -1.69419 17.1751 -2.1542 {normal=(0.450113 -0.357566 0.816887)} Vertex 12286 -2.19117 17.4225 -1.76247 {normal=(0.648523 -0.283630 0.693965)} Vertex 12287 -2.74837 18.0295 -1.55021 {normal=(-0.849244 0.093739 0.493610)} Vertex 12288 -3.03008 19.3753 -1.7787 {normal=(-0.894363 -0.263020 -0.026766)} Vertex 12289 -3.2066 20.0084 -1.4579 {normal=(-0.895709 -0.280751 0.027775)} Vertex 12290 -3.2944 20.3308 -0.955443 {normal=(-0.851564 -0.407193 0.065938)} Vertex 12291 -3.30898 20.4145 -0.449071 {normal=(-0.788056 -0.527306 -0.008384)} Vertex 12292 -3.28517 20.3028 -0.0656575 {normal=(-0.716762 -0.514961 -0.328967)} Vertex 12293 -3.24523 19.9939 0.102583 {normal=(-0.718919 -0.197829 -0.547737)} Vertex 12294 -3.21751 19.5747 0.142561 {normal=(-0.671260 -0.047535 -0.637756)} Vertex 12295 -3.20929 19.076 0.165946 {normal=(-0.643162 -0.070131 -0.671084)} Vertex 12296 -3.2038 18.7723 0.212609 {normal=(-0.726954 -0.127868 -0.562163)} Vertex 12297 -3.19593 18.4996 0.25861 {normal=(-0.826690 0.015680 -0.437480)} Vertex 12298 -3.19359 18.2798 0.187711 {normal=(-0.788853 0.149404 -0.482576)} Vertex 12299 -3.20651 18.0414 0.147853 {normal=(-0.690250 -0.008079 -0.638835)} Vertex 12300 -3.25953 17.7998 0.482691 {normal=(-0.847786 -0.269884 0.317080)} Vertex 12301 -3.2165 18.1494 0.773412 {normal=(-0.870875 -0.191957 0.332928)} Vertex 12302 -3.192 18.431 0.964995 {normal=(-0.830408 -0.100636 0.429573)} Vertex 12303 -3.26887 18.8228 0.815181 {normal=(-0.859850 0.067128 0.343661)} Vertex 12304 -3.3241 19.0786 0.636315 {normal=(-0.913008 0.023124 0.252065)} Vertex 12305 -3.3063 19.4835 0.648005 {normal=(-0.873206 0.016471 0.347344)} Vertex 12306 -3.28047 19.9814 0.631466 {normal=(-0.831616 0.118654 0.412840)} Vertex 12307 -3.3521 20.5191 0.189181 {normal=(-0.829629 0.306723 0.275768)} Vertex 12308 -3.33425 20.7946 -0.407486 {normal=(-0.793893 0.474979 0.091404)} Vertex 12309 -2.66452 21.4923 -2.19618 {normal=(-0.734468 0.540404 -0.273478)} Vertex 12310 -1.73429 22.2365 -2.70164 {normal=(-0.595949 0.678945 -0.317038)} Vertex 12311 -7.45058e-009 22.8375 -2.87487 {normal=(0.000000 0.947617 -0.146701)} Vertex 12312 -0.939607 15.4623 -3.24743 {normal=(0.325079 -0.474320 0.811893)} Vertex 12313 -1.7273 15.5589 -2.76219 {normal=(0.420570 -0.470618 0.771365)} Vertex 12314 -2.30554 15.8518 -2.28454 {normal=(0.457436 -0.457385 0.754141)} Vertex 12315 -2.7964 16.7347 -1.99336 {normal=(-0.945791 -0.224155 0.178709)} Vertex 12316 -2.53231 16.9007 -3.03534 {normal=(-0.821384 -0.008183 -0.543554)} Vertex 12317 -1.79119 16.9127 -3.80125 {normal=(-0.597518 -0.023371 -0.781730)} Vertex 12318 -1.06334 16.9861 -4.23443 {normal=(-0.429364 -0.073204 -0.880425)} Vertex 12319 -3.72529e-009 23.7957 -3.89179 {normal=(0.000000 0.660755 0.732407)} Vertex 12320 0 22.7383 -5.27619 {normal=(0.000000 -0.908257 -0.411573)} Vertex 12321 0 23.4424 -5.71301 {normal=(0.000000 0.140471 -0.954416)} Vertex 12322 0 23.7809 -5.4704 {normal=(0.000000 0.803026 -0.581764)} Vertex 12323 -1.13133 23.4469 -3.92168 {normal=(-0.784505 -0.004349 0.580007)} Vertex 12324 -0.807536 23.7464 -3.80985 {normal=(-0.190008 0.580113 0.751520)} Vertex 12325 -1.29388 23.6828 -4.38369 {normal=(-0.901391 0.321535 0.209865)} Vertex 12326 -0.931517 24.0107 -4.28578 {normal=(-0.315113 0.883048 0.234487)} Vertex 12327 -1.21499 23.7525 -4.99018 {normal=(-0.682937 0.599929 -0.346640)} Vertex 12328 -0.858434 23.9873 -4.88445 {normal=(-0.243427 0.912238 -0.280476)} Vertex 12329 -1.26514 23.3312 -5.28501 {normal=(-0.753348 0.092155 -0.585487)} Vertex 12330 -0.862163 22.9877 -5.47782 {normal=(-0.332375 -0.489133 -0.777089)} Vertex 12331 -1.37505 23.1242 -4.88142 {normal=(-0.919778 -0.296078 -0.046553)} Vertex 12332 -0.932689 22.7631 -5.16139 {normal=(-0.347828 -0.843725 -0.346643)} Vertex 12333 -1.21662 22.9369 -4.36666 {normal=(-0.785659 -0.501484 0.286489)} Vertex 12334 -0.798288 22.6185 -4.64686 {normal=(-0.245843 -0.950693 -0.031464)} Vertex 12335 -0.882375 21.7712 -3.51077 {normal=(-0.704807 0.371140 -0.407259)} Vertex 12336 -1.06 20.5093 -3.91922 {normal=(-0.919170 0.011995 -0.184307)} Vertex 12337 -0.849312 19.0412 -4.12037 {normal=(-0.935642 -0.073286 -0.192416)} Vertex 12338 -0.680399 17.1329 -4.61356 {normal=(-0.810135 -0.225852 0.242948)} Vertex 12339 3.72529e-009 17.4666 -5.49694 {normal=(0.000000 0.268562 -0.962230)} Vertex 12340 0 19.2835 -5.00039 {normal=(0.000000 0.127742 -0.985922)} Vertex 12341 -0.907302 21.7703 -3.71144 {normal=(-0.863106 0.403529 -0.048979)} Vertex 12342 -0.658877 21.8498 -3.89096 {normal=(-0.351360 0.711095 -0.573564)} Vertex 12343 -1.11247 20.4625 -4.36081 {normal=(-0.956574 0.017995 -0.145337)} Vertex 12344 -0.821148 20.5648 -4.735 {normal=(-0.477299 0.256409 -0.795684)} Vertex 12345 -0.8957 19.1293 -4.57313 {normal=(-0.958834 -0.097202 -0.143543)} Vertex 12346 -0.634012 19.2113 -4.92852 {normal=(-0.450005 0.085787 -0.854253)} Vertex 12347 -0.840701 17.3084 -5.06128 {normal=(-0.968938 -0.007734 -0.065913)} Vertex 12348 -0.59568 17.417 -5.42504 {normal=(-0.466429 0.231633 -0.822430)} Vertex 12349 -0.502947 16.2382 -4.95265 {normal=(-0.412047 -0.552480 0.642927)} Vertex 12350 -0.796375 16.5442 -5.32019 {normal=(-0.952301 -0.148976 -0.049121)} Vertex 12351 -0.577925 16.7567 -5.62371 {normal=(-0.458073 0.263693 -0.815527)} Vertex 12352 0 15.8419 -5.47663 {normal=(0.000000 -0.867577 0.490968)} Vertex 12353 -0.445543 15.8387 -5.48003 {normal=(-0.372659 -0.783679 0.408798)} Vertex 12354 -0.656487 16.0446 -5.70363 {normal=(-0.928309 -0.237021 -0.130337)} Vertex 12355 -0.501814 16.1887 -5.88755 {normal=(-0.405779 0.304945 -0.829201)} Vertex 12356 -1.13894 22.5456 -2.54885 {normal=(-0.324071 0.926714 0.139238)} Vertex 12357 0 22.8098 -2.64091 {normal=(0.000000 0.982983 0.082325)} Vertex 12358 -1.6724 22.2677 -2.43224 {normal=(-0.519958 0.825324 0.159575)} Vertex 12359 -2.57658 21.5256 -1.96079 {normal=(-0.535804 0.809609 0.172911)} Vertex 12360 -3.15896 20.5893 0.274645 {normal=(-0.422789 0.701302 0.539518)} Vertex 12361 -3.08874 19.5001 0.820636 {normal=(-0.483021 -0.026996 0.866855)} Vertex 12362 -3.13001 19.073 0.815507 {normal=(-0.492578 0.289643 0.792919)} Vertex 12363 -3.06829 18.8227 1.00456 {normal=(-0.487036 0.386283 0.758747)} Vertex 12364 -3.05415 17.6892 0.587266 {normal=(-0.534508 -0.620731 0.548540)} Vertex 12365 -3.0766 17.5443 0.266892 {normal=(-0.627707 -0.610436 -0.233151)} Vertex 12366 1.75628 15.7495 -3.4032 {normal=(0.505280 -0.548837 -0.654648)} Vertex 12367 0.997951 15.7143 -3.77555 {normal=(0.255686 -0.550732 -0.787532)} Vertex 12368 1.77162 18.8864 -3.36442 {normal=(0.639466 0.083114 -0.756289)} Vertex 12369 1.07403 18.987 -3.87115 {normal=(0.584704 0.092336 -0.801675)} Vertex 12370 2.0614 20.1472 -3.15166 {normal=(0.643563 0.019213 -0.758912)} Vertex 12371 1.27682 20.4447 -3.68578 {normal=(0.571984 0.079440 -0.811550)} Vertex 12372 2.37852 21.158 -2.67515 {normal=(0.709896 0.192456 -0.671270)} Vertex 12373 1.37458 21.9382 -3.20659 {normal=(0.438991 0.431218 -0.778888)} Vertex 12374 2.44351 15.9412 -2.78242 {normal=(0.801654 -0.454132 -0.336672)} Vertex 12375 2.47631 18.7288 -2.61249 {normal=(0.800311 0.032124 -0.583011)} Vertex 12376 2.68337 19.7575 -2.48872 {normal=(0.795378 -0.079335 -0.592515)} Vertex 12377 3.01502 20.562 -1.91857 {normal=(0.878092 0.071246 -0.466981)} Vertex 12378 0 17.063 -2.86002 {normal=(0.000580 -0.344776 0.932721)} Vertex 12379 1.73932 17.1751 -2.1542 {normal=(-0.489122 -0.299031 0.819113)} Vertex 12380 2.20648 17.4225 -1.76247 {normal=(-0.641132 -0.258853 0.715612)} Vertex 12381 2.74837 18.0295 -1.55021 {normal=(0.859573 0.104044 0.471337)} Vertex 12382 3.03008 19.3753 -1.7787 {normal=(0.894363 -0.263020 -0.026766)} Vertex 12383 3.2066 20.0084 -1.4579 {normal=(0.895709 -0.280751 0.027775)} Vertex 12384 3.2944 20.3308 -0.955443 {normal=(0.851564 -0.407193 0.065938)} Vertex 12385 3.30898 20.4145 -0.449071 {normal=(0.788056 -0.527306 -0.008384)} Vertex 12386 3.28517 20.3028 -0.0656575 {normal=(0.716761 -0.514962 -0.328967)} Vertex 12387 3.24523 19.9939 0.102583 {normal=(0.718919 -0.197829 -0.547737)} Vertex 12388 3.21751 19.5747 0.142561 {normal=(0.671260 -0.047535 -0.637756)} Vertex 12389 3.20929 19.076 0.165946 {normal=(0.643162 -0.070131 -0.671084)} Vertex 12390 3.2038 18.7723 0.212609 {normal=(0.726954 -0.127868 -0.562163)} Vertex 12391 3.19593 18.4996 0.25861 {normal=(0.826690 0.015680 -0.437480)} Vertex 12392 3.19359 18.2798 0.187711 {normal=(0.788854 0.149398 -0.482576)} Vertex 12393 3.20651 18.0414 0.147853 {normal=(0.690255 -0.008076 -0.638829)} Vertex 12394 3.25953 17.7998 0.482691 {normal=(0.847786 -0.269881 0.317079)} Vertex 12395 3.2165 18.1494 0.773412 {normal=(0.870876 -0.191958 0.332927)} Vertex 12396 3.192 18.431 0.964995 {normal=(0.830408 -0.100636 0.429572)} Vertex 12397 3.26887 18.8228 0.815181 {normal=(0.859850 0.067128 0.343661)} Vertex 12398 3.3241 19.0786 0.636315 {normal=(0.913008 0.023124 0.252065)} Vertex 12399 3.3063 19.4835 0.648004 {normal=(0.873206 0.016471 0.347344)} Vertex 12400 3.28048 19.9814 0.631466 {normal=(0.831616 0.118654 0.412840)} Vertex 12401 3.3521 20.5191 0.189181 {normal=(0.829629 0.306723 0.275768)} Vertex 12402 3.33425 20.7946 -0.407487 {normal=(0.793898 0.474969 0.091404)} Vertex 12403 2.66452 21.4923 -2.19618 {normal=(0.734468 0.540404 -0.273478)} Vertex 12404 1.73429 22.2365 -2.70164 {normal=(0.595949 0.678945 -0.317038)} Vertex 12405 0 15.4679 -3.43718 {normal=(0.000000 -0.482970 0.867827)} Vertex 12406 0.939606 15.4623 -3.24743 {normal=(-0.325079 -0.474320 0.811893)} Vertex 12407 1.7273 15.5589 -2.76219 {normal=(-0.420570 -0.470618 0.771365)} Vertex 12408 2.30554 15.8518 -2.28454 {normal=(-0.456460 -0.456754 0.755298)} Vertex 12409 2.7964 16.7347 -1.99336 {normal=(0.948108 -0.224414 0.171910)} Vertex 12410 2.53231 16.9007 -3.03534 {normal=(0.821384 -0.008183 -0.543554)} Vertex 12411 1.79119 16.9127 -3.80125 {normal=(0.597518 -0.023371 -0.781730)} Vertex 12412 1.06334 16.9861 -4.23443 {normal=(0.429364 -0.073204 -0.880425)} Vertex 12413 0 16.7615 -4.60902 {normal=(0.000000 -0.995894 -0.084492)} Vertex 12414 0 16.0518 -4.10686 {normal=(0.000000 -0.536137 -0.841779)} Vertex 12415 0 22.5974 -4.72457 {normal=(0.000000 -0.991264 -0.058467)} Vertex 12416 0 24.0782 -4.36442 {normal=(0.000000 0.966631 0.199581)} Vertex 12417 0 22.9651 -5.57845 {normal=(0.000000 -0.576585 -0.802536)} Vertex 12418 -3.72529e-009 24.034 -4.88616 {normal=(0.000000 0.964221 -0.256617)} Vertex 12419 1.13133 23.4469 -3.92168 {normal=(0.784505 -0.004349 0.580007)} Vertex 12420 0.807536 23.7464 -3.80985 {normal=(0.190008 0.580112 0.751520)} Vertex 12421 1.29388 23.6827 -4.38369 {normal=(0.901391 0.321535 0.209865)} Vertex 12422 0.931517 24.0107 -4.28578 {normal=(0.315113 0.883048 0.234487)} Vertex 12423 1.21499 23.7525 -4.99018 {normal=(0.682937 0.599929 -0.346640)} Vertex 12424 0.858434 23.9873 -4.88445 {normal=(0.243427 0.912238 -0.280476)} Vertex 12425 1.26514 23.3312 -5.28501 {normal=(0.753346 0.092153 -0.585489)} Vertex 12426 0.862163 22.9877 -5.47782 {normal=(0.332377 -0.489130 -0.777091)} Vertex 12427 1.37505 23.1242 -4.88142 {normal=(0.919778 -0.296078 -0.046553)} Vertex 12428 0.932689 22.7631 -5.16139 {normal=(0.347828 -0.843725 -0.346643)} Vertex 12429 1.21662 22.9369 -4.36666 {normal=(0.785659 -0.501484 0.286489)} Vertex 12430 0.798288 22.6185 -4.64685 {normal=(0.245843 -0.950693 -0.031464)} Vertex 12431 0.882375 21.7712 -3.51077 {normal=(0.704807 0.371140 -0.407259)} Vertex 12432 1.06 20.5093 -3.91922 {normal=(0.919170 0.011995 -0.184307)} Vertex 12433 0.849312 19.0412 -4.12037 {normal=(0.935641 -0.073286 -0.192416)} Vertex 12434 0.680399 17.1329 -4.61356 {normal=(0.810135 -0.225852 0.242948)} Vertex 12435 0 20.6974 -4.85791 {normal=(0.000000 0.336816 -0.917558)} Vertex 12436 0.907302 21.7704 -3.71143 {normal=(0.863106 0.403529 -0.048979)} Vertex 12437 0.658877 21.8498 -3.89096 {normal=(0.351359 0.711095 -0.573563)} Vertex 12438 1.11247 20.4625 -4.36081 {normal=(0.956574 0.017995 -0.145337)} Vertex 12439 0.821148 20.5648 -4.735 {normal=(0.477299 0.256409 -0.795684)} Vertex 12440 0.8957 19.1293 -4.57313 {normal=(0.958834 -0.097202 -0.143543)} Vertex 12441 0.634012 19.2113 -4.92852 {normal=(0.450005 0.085787 -0.854253)} Vertex 12442 0.840701 17.3084 -5.06128 {normal=(0.968938 -0.007734 -0.065913)} Vertex 12443 0.59568 17.417 -5.42504 {normal=(0.466429 0.231633 -0.822430)} Vertex 12444 0 16.8213 -5.67664 {normal=(0.000000 0.317272 -0.946422)} Vertex 12445 0 16.2425 -4.94312 {normal=(0.000000 -0.595938 0.777757)} Vertex 12446 0.502947 16.2382 -4.95265 {normal=(0.412047 -0.552481 0.642927)} Vertex 12447 0.796375 16.5442 -5.32019 {normal=(0.952301 -0.148976 -0.049121)} Vertex 12448 0.577925 16.7567 -5.62371 {normal=(0.458073 0.263693 -0.815527)} Vertex 12449 0 16.2311 -5.91855 {normal=(0.000000 0.373608 -0.927171)} Vertex 12450 0.445543 15.8387 -5.48003 {normal=(0.372659 -0.783679 0.408798)} Vertex 12451 0.656487 16.0446 -5.70363 {normal=(0.928309 -0.237021 -0.130337)} Vertex 12452 0.501814 16.1887 -5.88755 {normal=(0.405779 0.304945 -0.829201)} Vertex 12453 0 15.7635 -6.06331 {normal=(0.000000 0.098073 -0.991730)} Vertex 12454 0 15.6338 -5.91603 {normal=(0.000000 -0.972878 0.210055)} Vertex 12455 1.13894 22.5456 -2.54885 {normal=(0.324071 0.926715 0.139238)} Vertex 12456 1.6724 22.2677 -2.43224 {normal=(0.519958 0.825324 0.159575)} Vertex 12457 2.57658 21.5256 -1.96079 {normal=(0.535804 0.809609 0.172912)} Vertex 12458 3.15896 20.5893 0.274645 {normal=(0.422789 0.701302 0.539518)} Vertex 12459 3.08874 19.5001 0.820635 {normal=(0.483020 -0.026995 0.866855)} Vertex 12460 3.13001 19.073 0.815507 {normal=(0.492578 0.289643 0.792919)} Vertex 12461 3.06829 18.8227 1.00456 {normal=(0.487036 0.386284 0.758747)} Vertex 12462 3.05391 17.6892 0.587266 {normal=(0.532194 -0.623029 0.548418)} Vertex 12463 3.07611 17.5443 0.266892 {normal=(0.625687 -0.614387 -0.228924)} Vertex 12464 0.256659 15.9605 -6.01781 {normal=(0.079810 0.272941 -0.952034)} Vertex 12465 0.564516 15.8994 -5.9478 {normal=(0.722327 -0.017769 -0.610570)} Vertex 12466 0.539265 15.7639 -5.78917 {normal=(0.720913 -0.628351 0.114937)} Vertex 12467 0.231407 15.6955 -5.71374 {normal=(0.019254 -0.915522 0.383658)} Vertex 12468 0.29634 16.5188 -5.78833 {normal=(0.129338 0.371556 -0.913454)} Vertex 12469 0.694844 16.3969 -5.64864 {normal=(0.797332 0.093399 -0.514352)} Vertex 12470 0.644458 16.1266 -5.33211 {normal=(0.791684 -0.497111 0.255261)} Vertex 12471 0.245955 15.9901 -5.1816 {normal=(0.013586 -0.799910 0.580843)} Vertex 12472 0.31998 17.035 -5.60365 {normal=(0.148319 0.256576 -0.948034)} Vertex 12473 0.768839 16.9246 -5.40348 {normal=(0.815765 0.112634 -0.492252)} Vertex 12474 0.746405 16.685 -4.96904 {normal=(0.861910 -0.250888 0.371778)} Vertex 12475 0.297546 16.5599 -4.75204 {normal=(0.146043 -0.414075 0.849905)} Vertex 12476 0.774137 18.2293 -5.01923 {normal=(0.804043 0.118897 -0.522224)} Vertex 12477 0.94289 19.8705 -4.69692 {normal=(0.784622 -0.058403 -0.564236)} Vertex 12478 0.961683 21.213 -4.20874 {normal=(0.740852 0.396577 -0.481336)} Vertex 12479 0.336916 22.131 -3.61047 {normal=(0.156559 0.897750 -0.378861)} Vertex 12480 1.01574 21.1975 -3.86538 {normal=(0.985182 0.126592 0.077753)} Vertex 12481 1.00731 19.8243 -4.2323 {normal=(0.981848 -0.168418 0.076566)} Vertex 12482 0.816792 18.1135 -4.56626 {normal=(0.984458 -0.092526 0.127550)} Vertex 12483 0.322914 18.3014 -5.22814 {normal=(0.150846 0.253555 -0.948243)} Vertex 12484 0.40624 19.9967 -4.94161 {normal=(0.165535 0.083140 -0.974859)} Vertex 12485 0.417528 21.353 -4.39933 {normal=(0.183972 0.581403 -0.779435)} Vertex 12486 1.16663 22.8126 -4.80137 {normal=(0.637824 -0.728702 -0.051110)} Vertex 12487 1.22486 23.0021 -5.23516 {normal=(0.685494 -0.466173 -0.474675)} Vertex 12488 0.891032 23.296 -5.57478 {normal=(0.447780 -0.043275 -0.866183)} Vertex 12489 0.871659 23.8251 -5.22522 {normal=(0.347253 0.772162 -0.512308)} Vertex 12490 1.17553 23.9191 -4.59281 {normal=(0.627075 0.731548 -0.035228)} Vertex 12491 1.10894 23.7803 -4.02639 {normal=(0.642382 0.506530 0.495198)} Vertex 12492 0.377353 23.9268 -5.185 {normal=(0.051817 0.908877 -0.403729)} Vertex 12493 1.01422 23.5828 -5.38913 {normal=(0.536731 0.520882 -0.641828)} Vertex 12494 0.371121 23.1793 -5.67057 {normal=(0.071712 -0.305416 -0.932868)} Vertex 12495 0.510051 24.0809 -4.59818 {normal=(0.076963 0.985379 -0.067797)} Vertex 12496 1.38644 23.491 -4.87613 {normal=(0.938910 0.206092 -0.124251)} Vertex 12497 0.503903 22.819 -5.41523 {normal=(0.112164 -0.778605 -0.593062)} Vertex 12498 0.483422 23.9655 -4.07226 {normal=(0.027061 0.850634 0.498636)} Vertex 12499 1.32454 23.306 -4.36224 {normal=(0.936404 -0.097434 0.283034)} Vertex 12500 0.467618 22.6418 -4.99724 {normal=(0.070660 -0.960566 -0.245821)} Vertex 12501 0.407272 23.5332 -3.70478 {normal=(-0.002806 0.498512 0.864153)} Vertex 12502 1.00263 23.0537 -3.9389 {normal=(0.779733 -0.340273 0.514572)} Vertex 12503 0.403068 22.6124 -4.37213 {normal=(0.027852 -0.997128 0.012728)} Vertex 12504 0.505395 22.7659 -2.90837 {normal=(0.199323 0.807289 -0.516791)} Vertex 12505 1.01478 22.3076 -3.10997 {normal=(0.312303 0.599110 -0.733605)} Vertex 12506 0.863374 18.0086 -4.22038 {normal=(0.704290 0.055173 -0.657918)} Vertex 12507 1.37804 17.9426 -3.89946 {normal=(0.553923 0.150722 -0.817068)} Vertex 12508 2.15381 17.8459 -3.25547 {normal=(0.723925 0.151252 -0.669904)} Vertex 12509 2.73888 17.8335 -2.42559 {normal=(0.900114 0.112209 -0.408994)} Vertex 12510 2.87632 17.6303 -1.87517 {normal=(0.968697 -0.025673 0.200919)} Vertex 12511 2.71866 17.3007 -1.51331 {normal=(0.727140 -0.171937 0.576693)} Vertex 12512 2.44995 16.9001 -1.66336 {normal=(-0.713552 -0.263118 0.639024)} Vertex 12513 1.99575 16.4666 -2.2312 {normal=(-0.484531 -0.340617 0.801015)} Vertex 12514 1.32983 16.2955 -2.69531 {normal=(-0.457534 -0.362991 0.809502)} Vertex 12515 0.468936 16.2501 -3.07408 {normal=(-0.191721 -0.371999 0.902063)} Vertex 12516 0.646034 22.7319 -2.7197 {normal=(0.229554 0.956095 0.116535)} Vertex 12517 1.45554 22.4579 -2.61809 {normal=(0.433108 0.871734 0.106499)} Vertex 12518 2.16984 21.9214 -2.35492 {normal=(0.575684 0.783548 0.121565)} Vertex 12519 2.96396 21.2305 -1.60817 {normal=(0.528273 0.800734 0.137320)} Vertex 12520 3.22417 20.9381 -0.735214 {normal=(0.419401 0.863145 0.130226)} Vertex 12521 3.26339 20.7505 -0.0567305 {normal=(0.445154 0.792599 0.350369)} Vertex 12522 3.21902 20.2959 0.544284 {normal=(0.509241 0.503090 0.661075)} Vertex 12523 3.1809 19.726 0.80056 {normal=(0.549568 0.042038 0.809429)} Vertex 12524 3.23184 19.2594 0.748525 {normal=(0.603223 0.029452 0.756615)} Vertex 12525 3.21794 18.9538 0.842683 {normal=(0.572337 0.398491 0.655636)} Vertex 12526 3.12345 18.6193 1.06603 {normal=(0.545121 0.181714 0.786400)} Vertex 12527 3.08986 18.2507 1.04449 {normal=(0.570790 -0.424103 0.673913)} Vertex 12528 3.14059 17.9083 0.73187 {normal=(0.581547 -0.493122 0.615158)} Vertex 12529 3.17793 17.6206 0.394031 {normal=(0.577962 -0.729099 0.230301)} Vertex 12530 3.07725 18.187 0.064987 {normal=(0.553679 0.013246 -0.827888)} Vertex 12531 3.07933 18.4014 0.101066 {normal=(0.653387 0.156186 -0.739417)} Vertex 12532 3.0829 18.6449 0.127663 {normal=(0.624770 -0.054671 -0.775454)} Vertex 12533 3.07897 18.9151 0.112482 {normal=(0.531340 -0.037579 -0.832751)} Vertex 12534 3.08282 19.3264 0.091767 {normal=(0.452354 -0.061083 -0.885839)} Vertex 12535 3.11054 19.8004 0.0534137 {normal=(0.583721 -0.141455 -0.782732)} Vertex 12536 3.15017 20.1389 -0.0178845 {normal=(0.511950 -0.427398 -0.726707)} Vertex 12537 3.18626 20.3154 -0.25284 {normal=(0.653257 -0.717898 -0.129578)} Vertex 12538 3.20279 20.2975 -0.673476 {normal=(0.733916 -0.649989 0.117270)} Vertex 12539 3.17151 20.0989 -1.15047 {normal=(0.677033 -0.644472 0.319262)} Vertex 12540 3.07121 19.6467 -1.51745 {normal=(0.734163 -0.402697 0.498697)} Vertex 12541 2.87818 19.0054 -1.66425 {normal=(0.821273 -0.264689 0.476209)} Vertex 12542 2.70188 18.4479 -1.57323 {normal=(0.788574 0.068713 0.594810)} Vertex 12543 3.24813 18.6306 0.576178 {normal=(0.979759 -0.116998 -0.036035)} Vertex 12544 3.29124 18.9284 0.438489 {normal=(0.956034 -0.135926 -0.173976)} Vertex 12545 3.2309 18.3391 0.564355 {normal=(0.986818 0.018939 0.003105)} Vertex 12546 3.25463 18.0822 0.386318 {normal=(0.972309 0.062852 -0.075088)} Vertex 12547 3.30354 19.288 0.378862 {normal=(0.953103 -0.003615 -0.219856)} Vertex 12548 3.294 19.7593 0.394064 {normal=(0.972541 -0.009076 -0.104397)} Vertex 12549 3.32574 20.2159 0.240634 {normal=(0.962036 -0.137308 -0.057649)} Vertex 12550 2.91151 21.0913 -1.98704 {normal=(0.850376 0.196694 -0.469202)} Vertex 12551 2.5764 20.458 -2.5958 {normal=(0.769769 0.080232 -0.627843)} Vertex 12552 2.24615 19.4652 -2.91798 {normal=(0.706622 -0.076572 -0.700406)} Vertex 12553 2.16646 16.2232 -3.36564 {normal=(0.676545 -0.300918 -0.649166)} Vertex 12554 2.08598 15.5225 -2.84456 {normal=(0.613499 -0.649320 -0.425614)} Vertex 12555 2.08472 17.4478 -1.78054 {normal=(0.713801 -0.057535 -0.696049)} Vertex 12556 3.36014 20.5376 -0.168142 {normal=(0.963133 -0.105370 -0.029193)} Vertex 12557 3.34576 20.6302 -0.729915 {normal=(0.979777 -0.007393 -0.034667)} Vertex 12558 3.25898 20.4679 -1.34977 {normal=(0.963129 -0.006584 -0.226898)} Vertex 12559 3.04372 19.9225 -1.91259 {normal=(0.904410 -0.056291 -0.406188)} Vertex 12560 2.79005 19.1576 -2.15857 {normal=(0.860481 -0.155607 -0.471446)} Vertex 12561 2.74135 16.5413 -2.55066 {normal=(0.932869 -0.210896 -0.224439)} Vertex 12562 2.58309 16.0627 -2.1622 {normal=(0.885886 -0.422795 0.078191)} Vertex 12563 0.345559 23.5856 -5.67592 {normal=(0.068742 0.489374 -0.845266)} Vertex 12564 2.06989 21.7351 -2.75482 {normal=(0.652913 0.390597 -0.636510)} Vertex 12565 1.11312 21.1889 -3.62862 {normal=(0.573838 0.259345 -0.754549)} Vertex 12566 1.77349 20.9298 -3.26387 {normal=(0.595267 0.171157 -0.782024)} Vertex 12567 1.00859 19.8118 -3.89424 {normal=(0.771824 -0.033487 -0.591667)} Vertex 12568 1.49437 19.6957 -3.54486 {normal=(0.576587 0.003840 -0.816596)} Vertex 12569 0.685405 16.2756 -4.17954 {normal=(0.214248 -0.404426 -0.877102)} Vertex 12570 1.40295 16.2239 -3.91301 {normal=(0.427507 -0.344348 -0.820633)} Vertex 12571 0.497497 15.3797 -3.63733 {normal=(0.113172 -0.606000 -0.783311)} Vertex 12572 1.37567 15.3893 -3.32284 {normal=(0.393260 -0.671484 -0.620285)} Vertex 12573 0.395333 17.1559 -2.72976 {normal=(0.168098 0.014759 -0.979998)} Vertex 12574 -0.256659 15.9605 -6.01781 {normal=(-0.079810 0.272941 -0.952034)} Vertex 12575 -0.564516 15.8994 -5.9478 {normal=(-0.722327 -0.017769 -0.610571)} Vertex 12576 -0.539265 15.7639 -5.78917 {normal=(-0.720913 -0.628351 0.114937)} Vertex 12577 -0.231407 15.6955 -5.71374 {normal=(-0.019254 -0.915522 0.383658)} Vertex 12578 -0.29634 16.5188 -5.78833 {normal=(-0.129338 0.371556 -0.913454)} Vertex 12579 -0.694844 16.3969 -5.64864 {normal=(-0.797332 0.093399 -0.514352)} Vertex 12580 -0.644458 16.1266 -5.33211 {normal=(-0.791684 -0.497111 0.255261)} Vertex 12581 -0.245955 15.9901 -5.1816 {normal=(-0.013586 -0.799910 0.580843)} Vertex 12582 -0.31998 17.035 -5.60365 {normal=(-0.148319 0.256576 -0.948034)} Vertex 12583 -0.768839 16.9245 -5.40348 {normal=(-0.815765 0.112634 -0.492251)} Vertex 12584 -0.746405 16.685 -4.96904 {normal=(-0.861910 -0.250888 0.371778)} Vertex 12585 -0.297547 16.5599 -4.75204 {normal=(-0.146043 -0.414075 0.849905)} Vertex 12586 -0.774137 18.2293 -5.01923 {normal=(-0.804043 0.118897 -0.522224)} Vertex 12587 -0.94289 19.8705 -4.69692 {normal=(-0.784622 -0.058403 -0.564236)} Vertex 12588 -0.961683 21.213 -4.20874 {normal=(-0.740852 0.396577 -0.481336)} Vertex 12589 -0.336916 22.131 -3.61047 {normal=(-0.156559 0.897750 -0.378861)} Vertex 12590 -1.01574 21.1975 -3.86538 {normal=(-0.985182 0.126592 0.077753)} Vertex 12591 -1.00731 19.8244 -4.2323 {normal=(-0.981848 -0.168418 0.076566)} Vertex 12592 -0.816792 18.1135 -4.56626 {normal=(-0.984458 -0.092526 0.127550)} Vertex 12593 -0.322914 18.3014 -5.22814 {normal=(-0.150846 0.253555 -0.948243)} Vertex 12594 -0.40624 19.9967 -4.94161 {normal=(-0.165535 0.083140 -0.974859)} Vertex 12595 -0.417528 21.353 -4.39933 {normal=(-0.183972 0.581403 -0.779435)} Vertex 12596 -1.16663 22.8126 -4.80137 {normal=(-0.637824 -0.728702 -0.051110)} Vertex 12597 -1.22486 23.0021 -5.23516 {normal=(-0.685495 -0.466174 -0.474674)} Vertex 12598 -0.891032 23.296 -5.57478 {normal=(-0.447780 -0.043271 -0.866182)} Vertex 12599 -0.871659 23.8251 -5.22522 {normal=(-0.347253 0.772162 -0.512308)} Vertex 12600 -1.17553 23.9191 -4.59281 {normal=(-0.627075 0.731548 -0.035228)} Vertex 12601 -1.10894 23.7803 -4.02639 {normal=(-0.642382 0.506530 0.495198)} Vertex 12602 -0.377353 23.9268 -5.185 {normal=(-0.051817 0.908878 -0.403729)} Vertex 12603 -1.01422 23.5828 -5.38913 {normal=(-0.536731 0.520882 -0.641828)} Vertex 12604 -0.371121 23.1793 -5.67057 {normal=(-0.071710 -0.305418 -0.932868)} Vertex 12605 -0.510051 24.0809 -4.59818 {normal=(-0.076963 0.985379 -0.067797)} Vertex 12606 -1.38644 23.491 -4.87614 {normal=(-0.938910 0.206092 -0.124251)} Vertex 12607 -0.503903 22.819 -5.41523 {normal=(-0.112163 -0.778607 -0.593062)} Vertex 12608 -0.483422 23.9655 -4.07226 {normal=(-0.027061 0.850634 0.498637)} Vertex 12609 -1.32454 23.306 -4.36224 {normal=(-0.936405 -0.097434 0.283034)} Vertex 12610 -0.467618 22.6418 -4.99724 {normal=(-0.070660 -0.960566 -0.245821)} Vertex 12611 -0.407272 23.5332 -3.70477 {normal=(-0.008657 0.485590 0.868593)} Vertex 12612 -1.00263 23.0537 -3.9389 {normal=(-0.756359 -0.323713 0.550066)} Vertex 12613 -0.403068 22.6124 -4.37213 {normal=(-0.027852 -0.997128 0.012728)} Vertex 12614 -0.505395 22.7659 -2.90837 {normal=(-0.199323 0.807289 -0.516791)} Vertex 12615 -1.01478 22.3076 -3.10997 {normal=(-0.327273 0.590575 -0.733650)} Vertex 12616 -0.863374 18.0086 -4.22038 {normal=(-0.704290 0.055173 -0.657919)} Vertex 12617 -1.37804 17.9426 -3.89946 {normal=(-0.553923 0.150722 -0.817068)} Vertex 12618 -2.15381 17.8459 -3.25547 {normal=(-0.723925 0.151252 -0.669904)} Vertex 12619 -2.73888 17.8335 -2.42559 {normal=(-0.902740 0.117952 -0.398887)} Vertex 12620 -2.87632 17.6303 -1.87517 {normal=(-0.968090 -0.009926 0.196764)} Vertex 12621 -2.70361 17.3007 -1.51331 {normal=(-0.704272 -0.163262 0.608819)} Vertex 12622 -2.42915 16.9001 -1.66336 {normal=(0.737392 -0.276580 0.602926)} Vertex 12623 -1.99575 16.4666 -2.2312 {normal=(0.471349 -0.356758 0.803602)} Vertex 12624 -1.32983 16.2955 -2.69531 {normal=(0.453835 -0.379099 0.805213)} Vertex 12625 -0.468936 16.2501 -3.07408 {normal=(0.192163 -0.372973 0.901617)} Vertex 12626 -0.646034 22.7319 -2.7197 {normal=(-0.229554 0.956095 0.116535)} Vertex 12627 -1.45554 22.4579 -2.61809 {normal=(-0.433107 0.871734 0.106499)} Vertex 12628 -2.16984 21.9214 -2.35492 {normal=(-0.575684 0.783548 0.121565)} Vertex 12629 -2.96396 21.2305 -1.60817 {normal=(-0.528273 0.800734 0.137320)} Vertex 12630 -3.22417 20.9381 -0.735213 {normal=(-0.419398 0.863148 0.130228)} Vertex 12631 -3.26339 20.7505 -0.0567305 {normal=(-0.445153 0.792600 0.350368)} Vertex 12632 -3.21902 20.2959 0.544284 {normal=(-0.509241 0.503090 0.661075)} Vertex 12633 -3.1809 19.726 0.80056 {normal=(-0.549569 0.042038 0.809428)} Vertex 12634 -3.23184 19.2594 0.748524 {normal=(-0.603224 0.029451 0.756615)} Vertex 12635 -3.21794 18.9538 0.842683 {normal=(-0.572337 0.398491 0.655636)} Vertex 12636 -3.12345 18.6193 1.06603 {normal=(-0.545121 0.181714 0.786400)} Vertex 12637 -3.08986 18.2507 1.04449 {normal=(-0.570790 -0.424103 0.673913)} Vertex 12638 -3.14059 17.9083 0.73187 {normal=(-0.581687 -0.493015 0.615166)} Vertex 12639 -3.17793 17.6206 0.394031 {normal=(-0.579357 -0.728242 0.230005)} Vertex 12640 -3.07725 18.187 0.064987 {normal=(-0.549522 0.028259 -0.831906)} Vertex 12641 -3.07933 18.4014 0.101066 {normal=(-0.653387 0.156186 -0.739417)} Vertex 12642 -3.0829 18.6449 0.127662 {normal=(-0.624769 -0.054671 -0.775455)} Vertex 12643 -3.11054 19.8004 0.0534137 {normal=(-0.583721 -0.141455 -0.782732)} Vertex 12644 -3.15017 20.1389 -0.0178845 {normal=(-0.511949 -0.427402 -0.726704)} Vertex 12645 -3.18626 20.3154 -0.25284 {normal=(-0.653247 -0.717907 -0.129586)} Vertex 12646 -3.20279 20.2975 -0.673476 {normal=(-0.733916 -0.649989 0.117270)} Vertex 12647 -3.17151 20.0989 -1.15047 {normal=(-0.677033 -0.644471 0.319262)} Vertex 12648 -3.07122 19.6467 -1.51745 {normal=(-0.734163 -0.402697 0.498697)} Vertex 12649 -2.87818 19.0054 -1.66425 {normal=(-0.818032 -0.275175 0.478531)} Vertex 12650 -2.70162 18.4479 -1.57323 {normal=(-0.834417 0.074383 0.536006)} Vertex 12651 -3.24813 18.6306 0.576178 {normal=(-0.979759 -0.116998 -0.036035)} Vertex 12652 -3.29124 18.9284 0.438489 {normal=(-0.956034 -0.135926 -0.173976)} Vertex 12653 -3.2309 18.3391 0.564355 {normal=(-0.986818 0.018939 0.003105)} Vertex 12654 -3.25463 18.0822 0.386318 {normal=(-0.972309 0.062856 -0.075085)} Vertex 12655 -3.30355 19.288 0.378862 {normal=(-0.953103 -0.003615 -0.219856)} Vertex 12656 -3.294 19.7593 0.394064 {normal=(-0.972541 -0.009076 -0.104397)} Vertex 12657 -3.32574 20.2159 0.240634 {normal=(-0.962036 -0.137308 -0.057649)} Vertex 12658 -2.91151 21.0913 -1.98704 {normal=(-0.850376 0.196694 -0.469202)} Vertex 12659 -2.5764 20.458 -2.5958 {normal=(-0.769769 0.080232 -0.627843)} Vertex 12660 -2.24615 19.4652 -2.91798 {normal=(-0.706622 -0.076572 -0.700406)} Vertex 12661 -2.16646 16.2232 -3.36564 {normal=(-0.676545 -0.300918 -0.649166)} Vertex 12662 -2.08598 15.5225 -2.84456 {normal=(-0.613499 -0.649320 -0.425614)} Vertex 12663 -3.36014 20.5376 -0.168142 {normal=(-0.963133 -0.105367 -0.029193)} Vertex 12664 -3.34576 20.6302 -0.729914 {normal=(-0.979777 -0.007387 -0.034665)} Vertex 12665 -3.25898 20.4679 -1.34977 {normal=(-0.963129 -0.006584 -0.226898)} Vertex 12666 -3.04372 19.9225 -1.91259 {normal=(-0.904410 -0.056291 -0.406188)} Vertex 12667 -2.79005 19.1576 -2.15857 {normal=(-0.863577 -0.165070 -0.459001)} Vertex 12668 -2.74135 16.5413 -2.55066 {normal=(-0.932869 -0.210896 -0.224439)} Vertex 12669 -2.58309 16.0627 -2.1622 {normal=(-0.885886 -0.422795 0.078191)} Vertex 12670 -0.345559 23.5856 -5.67592 {normal=(-0.068742 0.489374 -0.845266)} Vertex 12671 -2.06989 21.7351 -2.75482 {normal=(-0.652913 0.390597 -0.636510)} Vertex 12672 -1.11312 21.1889 -3.62862 {normal=(-0.573838 0.259345 -0.754549)} Vertex 12673 -1.77349 20.9298 -3.26387 {normal=(-0.595267 0.171157 -0.782024)} Vertex 12674 -1.00859 19.8118 -3.89424 {normal=(-0.771824 -0.033487 -0.591667)} Vertex 12675 -1.49437 19.6957 -3.54486 {normal=(-0.576587 0.003840 -0.816596)} Vertex 12676 -0.685405 16.2756 -4.17954 {normal=(-0.214248 -0.404426 -0.877102)} Vertex 12677 -1.40295 16.2239 -3.91301 {normal=(-0.427507 -0.344348 -0.820634)} Vertex 12678 -0.497496 15.3797 -3.63733 {normal=(-0.113172 -0.606000 -0.783311)} Vertex 12679 -1.37567 15.3893 -3.32284 {normal=(-0.393260 -0.671484 -0.620284)} Vertex 12680 -0.386122 17.1559 -2.72976 {normal=(-0.179550 0.005386 -0.977369)} Vertex 12681 -1.18034 16.7713 -2.39122 {normal=(-0.554207 0.044729 -0.826432)} Vertex 12682 -3.1738 18.9761 -0.33588 {normal=(-0.870856 -0.426405 -0.064204)} Vertex 12683 -3.25253 18.6432 -0.932922 {normal=(-0.980321 -0.062130 0.143306)} Vertex 12684 -3.24722 18.2049 -0.797923 {normal=(-0.959304 -0.071208 -0.170089)} Vertex 12685 -3.23801 18.2501 -0.883047 {normal=(-0.918120 -0.189722 -0.256127)} Vertex 12686 -3.21427 18.4283 -0.552352 {normal=(-0.953169 0.192358 0.209971)} Vertex 12687 -3.07245 18.925 -0.636087 {normal=(-0.867516 0.191956 0.065625)} Vertex 12688 -3.28325 18.966 -0.888333 {normal=(-0.726393 0.000570 0.380097)} Vertex 12689 -3.36269 19.2344 -0.892584 {normal=(-0.936671 -0.064991 -0.154456)} Vertex 12690 -3.28214 19.6709 -0.497182 {normal=(-0.734891 -0.551090 -0.130065)} Vertex 12691 -3.30689 19.3748 -0.676872 {normal=(-0.704447 -0.393075 0.524357)} Vertex 12692 -3.23486 18.0943 -0.432709 {normal=(-0.942288 -0.039208 0.283040)} Vertex 12693 -3.11578 18.4934 -0.293697 {normal=(-0.936084 0.090304 0.315960)} Vertex 12694 -3.23329 17.9824 -0.682232 {normal=(-0.849293 -0.454155 -0.131178)} Vertex 12695 -3.08668 19.1839 -0.731135 {normal=(-0.750558 -0.465576 0.139793)} Vertex 12696 -3.38262 20.1644 -0.557713 {normal=(-0.643658 0.668114 -0.100846)} Vertex 12697 -3.26907 20.0756 -0.953837 {normal=(-0.309840 0.808783 -0.488185)} Vertex 12698 -3.08489 18.1326 -0.953084 {normal=(0.069436 -0.494448 -0.774328)} Vertex 12699 -3.03684 17.8344 -0.479243 {normal=(-0.541035 -0.814953 0.159476)} Vertex 12700 -2.90908 17.7774 -0.553209 {normal=(-0.220984 -0.836363 -0.341983)} Vertex 12701 -2.83759 17.9729 -0.713995 {normal=(0.032409 -0.361243 -0.841375)} Vertex 12702 -2.86764 16.5662 0.805122 {normal=(-0.945865 -0.199076 0.239851)} Vertex 12703 -2.38862 15.8346 -0.214113 {normal=(-0.899624 -0.291268 -0.228055)} Vertex 12704 -2.84643 19.8832 1.47261 {normal=(-0.961552 0.113790 0.042251)} Vertex 12705 -2.84651 20.0209 1.35633 {normal=(-0.956156 0.146672 0.044461)} Vertex 12706 -1.37796 22.4374 2.41 {normal=(-0.346288 0.656640 0.659989)} Vertex 12707 -0.609935 22.3132 2.77277 {normal=(-0.169684 0.609389 0.772865)} Vertex 12708 -0.459398 20.1463 4.00295 {normal=(0.184541 0.194120 0.931626)} Vertex 12709 -0.268425 21.295 3.52022 {normal=(-0.018416 0.495562 0.864645)} Vertex 12710 -0.0546338 22.2238 2.90293 {normal=(-0.002035 0.584266 0.810372)} Vertex 12711 -2.18903 15.5088 2.43772 {normal=(-0.831718 -0.345329 0.416949)} Vertex 12712 -2.21856 15.1005 2.04865 {normal=(-0.831930 -0.465908 0.229274)} Vertex 12713 -1.42213 14.4803 2.64079 {normal=(-0.645581 -0.619859 0.395333)} Vertex 12714 -1.07843 14.2372 2.40417 {normal=(-0.375257 -0.923086 -0.033325)} Vertex 12715 -2.39912 16.0831 2.17585 {normal=(-0.970805 -0.087516 0.195929)} Vertex 12716 -1.53709 14.5813 0.957757 {normal=(-0.561360 -0.668741 0.366511)} Vertex 12717 -2.45224 16.6891 2.58036 {normal=(-0.986378 -0.135435 0.021475)} Vertex 12718 -2.47387 17.119 2.01792 {normal=(-0.980267 -0.117415 0.144315)} Vertex 12719 -0.228967 19.6136 3.9352 {normal=(-0.314393 0.100021 0.892908)} Vertex 12720 -0.540229 18.7446 3.89042 {normal=(-0.841559 0.189590 0.485271)} Vertex 12721 -0.686536 19.1659 3.42555 {normal=(0.051032 -0.046436 0.946221)} Vertex 12722 -0.540861 19.7283 3.86248 {normal=(-0.175142 -0.710700 0.629086)} Vertex 12723 -0.487855 18.0211 4.50159 {normal=(-0.691615 -0.262876 0.604249)} Vertex 12724 -0.280427 17.9971 4.76462 {normal=(-0.523010 -0.499046 0.637850)} Vertex 12725 -0.432674 17.9398 4.12598 {normal=(-0.218027 -0.489307 0.722891)} Vertex 12726 -0.450323 17.9581 4.1411 {normal=(0.069539 -0.859186 0.394634)} Vertex 12727 -0.181427 17.5699 4.37887 {normal=(-0.486055 -0.230002 0.789674)} Vertex 12728 -2.2803 18.3713 3.41848 {normal=(-0.552736 0.117256 0.816312)} Vertex 12729 -0.356665 14.0965 3.61521 {normal=(-0.247774 -0.862462 0.421747)} Vertex 12730 -2.34564 19.4231 2.60526 {normal=(-0.701109 0.170439 0.667909)} Vertex 12731 -2.12899 20.3369 3.22626 {normal=(-0.758724 -0.286500 0.565547)} Vertex 12732 -2.61362 19.3809 2.29513 {normal=(-0.848037 0.072395 0.502030)} Vertex 12733 -2.72526 18.9867 2.40814 {normal=(-0.819746 0.406314 0.395995)} Vertex 12734 -2.98453 19.1738 1.25862 {normal=(-0.983605 0.136084 0.049965)} Vertex 12735 -2.95882 17.8293 0.025782 {normal=(-0.789762 -0.272618 -0.370087)} Vertex 12736 -2.83298 17.3486 -0.217609 {normal=(-0.915531 -0.161737 -0.320582)} Vertex 12737 -3.14277 20.2929 -0.489157 {normal=(-0.737092 0.109945 -0.029425)} Vertex 12738 -0.265431 17.7895 4.26792 {normal=(-0.819672 0.034858 0.534060)} Vertex 12739 -0.66944 17.8127 4.09214 {normal=(0.061346 -0.165195 0.911707)} Vertex 12740 -0.545632 18.4798 3.99806 {normal=(-0.850690 0.403719 0.238560)} Vertex 12741 -0.8588 17.9713 3.88136 {normal=(-0.742847 0.445827 0.436544)} Vertex 12742 -0.748893 17.781 4.07976 {normal=(-0.477821 -0.301664 0.695868)} Vertex 12743 -0.613142 18.4545 3.87929 {normal=(-0.609500 0.192538 0.764260)} Vertex 12744 -0.80235 18.1858 3.8003 {normal=(-0.434339 0.132758 0.876705)} Vertex 12745 -1.01665 17.933 3.77594 {normal=(-0.515909 0.314290 0.783596)} Vertex 12746 -1.46843 17.565 3.53318 {normal=(-0.495823 -0.096183 0.813575)} Vertex 12747 -1.55143 17.6586 3.53005 {normal=(-0.184001 -0.334798 0.921234)} Vertex 12748 -1.88927 16.1542 2.97271 {normal=(-0.097710 0.142447 0.954865)} Vertex 12749 -2.12916 16.7634 3.04058 {normal=(-0.192060 -0.264705 0.943503)} Vertex 12750 -1.99855 17.1318 3.19506 {normal=(-0.177094 -0.414138 0.886731)} Vertex 12751 -1.86833 17.0898 3.16714 {normal=(0.142504 -0.525976 0.832361)} Vertex 12752 -0.906221 17.2285 4.07279 {normal=(-0.548081 -0.254735 0.777129)} Vertex 12753 -1.12032 15.2809 3.5677 {normal=(-0.668994 -0.221981 0.697679)} Vertex 12754 -1.28086 15.3312 3.4241 {normal=(-0.699373 -0.323202 0.631155)} Vertex 12755 -1.25404 18.859 3.55683 {normal=(0.018558 0.201595 0.976160)} Vertex 12756 -2.07162 18.7948 3.46777 {normal=(-0.531577 0.286694 0.791021)} Vertex 12757 -3.00936 18.8469 0.069268 {normal=(-0.818359 -0.059746 -0.230643)} Vertex 12758 -3.11891 18.1072 -0.230249 {normal=(-0.802227 -0.032572 0.569889)} Vertex 12759 -2.8975 19.3277 -1.52365 {normal=(-0.812027 -0.324460 0.384260)} Vertex 12760 -3.0911 19.7604 -1.21556 {normal=(0.011330 0.290505 -0.840629)} Vertex 12761 -2.52634 17.9448 -1.09069 {normal=(-0.873717 -0.292144 -0.250040)} Vertex 12762 -3.28557 19.9624 -0.155263 {normal=(-0.525865 0.456013 0.701955)} Vertex 12763 3.1738 18.9761 -0.33588 {normal=(0.870856 -0.426405 -0.064204)} Vertex 12764 3.25253 18.6432 -0.932922 {normal=(0.980321 -0.062130 0.143306)} Vertex 12765 3.24388 18.2513 -0.797574 {normal=(0.964681 -0.047995 -0.123391)} Vertex 12766 3.23814 18.2501 -0.883047 {normal=(0.920286 -0.187670 -0.256151)} Vertex 12767 3.21427 18.4283 -0.552352 {normal=(0.953169 0.192359 0.209970)} Vertex 12768 3.07245 18.925 -0.636087 {normal=(0.867514 0.191957 0.065626)} Vertex 12769 3.28325 18.966 -0.888333 {normal=(0.726395 0.000571 0.380106)} Vertex 12770 3.36269 19.2344 -0.892584 {normal=(0.936675 -0.065003 -0.154443)} Vertex 12771 3.28214 19.6709 -0.497182 {normal=(0.734891 -0.551089 -0.130063)} Vertex 12772 3.30689 19.3748 -0.676872 {normal=(0.704439 -0.393081 0.524370)} Vertex 12773 3.2382 18.1077 -0.452139 {normal=(0.953446 -0.007948 0.252191)} Vertex 12774 3.10549 18.4925 -0.263145 {normal=(0.920603 0.065944 0.370496)} Vertex 12775 3.23586 17.9824 -0.682233 {normal=(0.861645 -0.433073 -0.124554)} Vertex 12776 3.09951 19.1848 -0.756751 {normal=(0.672819 -0.438323 0.389425)} Vertex 12777 3.38262 20.1644 -0.557713 {normal=(0.643656 0.668106 -0.100862)} Vertex 12778 3.26907 20.0756 -0.953837 {normal=(0.309838 0.808784 -0.488185)} Vertex 12779 3.08724 18.1326 -0.953086 {normal=(-0.068161 -0.497007 -0.772304)} Vertex 12780 3.04757 17.8344 -0.479243 {normal=(0.563372 -0.796023 0.173195)} Vertex 12781 2.92885 17.7774 -0.553209 {normal=(0.234562 -0.831224 -0.333258)} Vertex 12782 2.85042 17.9729 -0.713995 {normal=(-0.024796 -0.357269 -0.838839)} Vertex 12783 2.82178 16.5662 0.805122 {normal=(0.934171 -0.254534 0.235969)} Vertex 12784 2.36265 15.8346 -0.214113 {normal=(0.896188 -0.357077 -0.107087)} Vertex 12785 2.84651 20.0209 1.35633 {normal=(0.953593 0.160958 0.041931)} Vertex 12786 -0.0909987 23.4905 -0.556784 {normal=(-0.017380 0.982081 -0.168866)} Vertex 12787 1.49012e-008 23.366 -1.10716 {normal=(-0.000002 0.958976 -0.255630)} Vertex 12788 1.37796 22.4374 2.41 {normal=(0.346288 0.656640 0.659989)} Vertex 12789 0.609935 22.3132 2.77277 {normal=(0.169683 0.609389 0.772865)} Vertex 12790 0.459398 20.1463 4.00295 {normal=(-0.184542 0.194116 0.931628)} Vertex 12791 0.268425 21.295 3.52022 {normal=(0.018416 0.495562 0.864645)} Vertex 12792 2.189 15.5088 2.43772 {normal=(0.833396 -0.346352 0.412982)} Vertex 12793 2.20659 15.1005 2.04865 {normal=(0.839382 -0.468915 0.183075)} Vertex 12794 1.42213 14.4803 2.64079 {normal=(0.645581 -0.619859 0.395333)} Vertex 12795 1.07679 14.2372 2.40417 {normal=(0.370092 -0.924738 -0.036901)} Vertex 12796 2.3982 16.0831 2.17585 {normal=(0.973668 -0.092194 0.182546)} Vertex 12797 1.43527 14.5813 0.957757 {normal=(0.586258 -0.648333 0.341425)} Vertex 12798 2.45224 16.6891 2.58036 {normal=(0.986378 -0.135434 0.021475)} Vertex 12799 2.47387 17.119 2.01792 {normal=(0.980290 -0.117607 0.144172)} Vertex 12800 -0.029879 19.6569 3.97765 {normal=(-0.056750 0.176639 0.940509)} Vertex 12801 0.228967 19.6136 3.9352 {normal=(0.314393 0.100021 0.892908)} Vertex 12802 0.540229 18.7446 3.89042 {normal=(0.841559 0.189590 0.485271)} Vertex 12803 0.733234 19.1467 3.43562 {normal=(-0.149273 -0.085564 0.952024)} Vertex 12804 0.540861 19.7283 3.86248 {normal=(0.175142 -0.710700 0.629086)} Vertex 12805 0.487855 18.0211 4.50159 {normal=(0.691615 -0.262876 0.604249)} Vertex 12806 0.280427 17.9971 4.76462 {normal=(0.523010 -0.499046 0.637850)} Vertex 12807 0.399388 17.9487 4.15334 {normal=(0.361057 -0.597073 0.587696)} Vertex 12808 0.450323 17.9581 4.1411 {normal=(-0.069464 -0.855677 0.409108)} Vertex 12809 0.181428 17.5699 4.37887 {normal=(0.486055 -0.230002 0.789675)} Vertex 12810 2.30822 18.4193 3.38131 {normal=(0.589522 0.132435 0.782778)} Vertex 12811 0.356665 14.0965 3.61521 {normal=(0.247775 -0.862458 0.421755)} Vertex 12812 2.33118 19.4415 2.62103 {normal=(0.741283 0.133538 0.635161)} Vertex 12813 2.12899 20.3369 3.22626 {normal=(0.758724 -0.286500 0.565547)} Vertex 12814 2.61362 19.3809 2.29513 {normal=(0.848037 0.072395 0.502030)} Vertex 12815 2.74726 19.005 2.32956 {normal=(0.829233 0.392544 0.387943)} Vertex 12816 2.98453 19.1738 1.25862 {normal=(0.983604 0.136084 0.049965)} Vertex 12817 2.97543 17.8901 0.0616755 {normal=(0.678302 -0.132409 -0.654166)} Vertex 12818 2.85358 17.3486 -0.217609 {normal=(0.936298 -0.151130 -0.267903)} Vertex 12819 3.14277 20.2929 -0.489157 {normal=(0.737094 0.109947 -0.029421)} Vertex 12820 0.265432 17.7895 4.26792 {normal=(0.819671 0.034865 0.534062)} Vertex 12821 0.650927 17.8228 4.09028 {normal=(-0.091844 -0.160819 0.896678)} Vertex 12822 0.592571 18.4213 3.94936 {normal=(0.736950 0.560698 0.010759)} Vertex 12823 0.545632 18.4798 3.99806 {normal=(0.847416 0.414425 0.257925)} Vertex 12824 0.8588 17.9713 3.88136 {normal=(0.742847 0.445827 0.436544)} Vertex 12825 0.756248 17.7656 4.08206 {normal=(0.559611 -0.208146 0.709687)} Vertex 12826 0.627814 18.4354 3.87169 {normal=(0.599229 0.188587 0.774352)} Vertex 12827 0.80235 18.1858 3.8003 {normal=(0.434336 0.132759 0.876706)} Vertex 12828 1.01665 17.933 3.77594 {normal=(0.515909 0.314290 0.783596)} Vertex 12829 1.46843 17.565 3.53318 {normal=(0.495823 -0.096183 0.813575)} Vertex 12830 1.55143 17.6586 3.53005 {normal=(0.184001 -0.334798 0.921234)} Vertex 12831 1.88927 16.1542 2.97271 {normal=(0.097710 0.142447 0.954865)} Vertex 12832 2.12916 16.7635 3.04058 {normal=(0.192060 -0.264705 0.943503)} Vertex 12833 2.00838 17.103 3.17639 {normal=(0.143753 -0.402891 0.898876)} Vertex 12834 1.86833 17.0898 3.16714 {normal=(-0.142504 -0.525976 0.832361)} Vertex 12835 0.906221 17.2285 4.07279 {normal=(0.548086 -0.254730 0.777129)} Vertex 12836 -1.86265e-009 17.1311 4.31946 {normal=(0.000000 -0.540523 0.759771)} Vertex 12837 1.16246 15.3755 3.57077 {normal=(0.618998 -0.270210 0.726416)} Vertex 12838 1.2602 15.2648 3.42147 {normal=(0.707338 -0.270467 0.636380)} Vertex 12839 1.25795 18.8814 3.55553 {normal=(-0.032108 0.202311 0.976065)} Vertex 12840 2.05488 18.7769 3.48746 {normal=(0.536247 0.243744 0.803438)} Vertex 12841 3.00936 18.8469 0.069268 {normal=(0.818359 -0.059746 -0.230643)} Vertex 12842 3.11902 18.1072 -0.23025 {normal=(0.803036 -0.028774 0.570191)} Vertex 12843 2.8975 19.3277 -1.52365 {normal=(0.812027 -0.324460 0.384260)} Vertex 12844 3.0911 19.7604 -1.21556 {normal=(-0.011330 0.290505 -0.840629)} Vertex 12845 2.5818 17.7884 -1.24104 {normal=(0.541175 -0.286128 0.421076)} Vertex 12846 2.55701 17.9448 -1.09069 {normal=(0.897420 -0.228891 -0.234321)} Vertex 12847 3.28557 19.9625 -0.155263 {normal=(0.525865 0.456013 0.701955)} Vertex 12848 2.97751 17.7929 -0.195246 {normal=(0.868002 -0.354075 0.218295)} Vertex 12849 2.80966 17.4584 -0.380781 {normal=(0.877568 -0.196132 -0.431789)} Vertex 12850 1.73329 19.4383 2.44374 {normal=(0.253321 -0.155941 0.881560)} Vertex 12851 1.65524 19.365 2.50798 {normal=(0.290211 0.357179 0.757451)} Vertex 12852 1.39672 19.3461 2.6176 {normal=(0.279921 0.336302 0.781200)} Vertex 12853 1.24017 19.4156 2.64574 {normal=(0.380167 -0.112921 0.847407)} Vertex 12854 0.207621 14.1239 3.69728 {normal=(0.014844 -0.805562 0.583920)} Vertex 12855 0.175972 14.1907 3.77569 {normal=(-0.030370 -0.733870 0.672665)} Vertex 12856 2.97991 17.1256 0.222806 {normal=(0.953611 -0.139993 -0.248693)} Vertex 12857 2.91627 18.336 1.45973 {normal=(0.941390 -0.309456 -0.126621)} Vertex 12858 2.47192 19.3043 2.5151 {normal=(0.739482 0.304042 0.592522)} Vertex 12859 2.33398 19.3641 2.67069 {normal=(0.860673 0.290032 0.414211)} Vertex 12860 2.09718 18.9697 3.37161 {normal=(0.481881 0.467396 0.732509)} Vertex 12861 0.69699 17.6309 4.12565 {normal=(0.360837 0.251801 0.896533)} Vertex 12862 0.660697 19.2749 3.44925 {normal=(-0.440791 -0.109179 0.879364)} Vertex 12863 0.586341 19.3407 3.47984 {normal=(0.505567 -0.210475 0.811209)} Vertex 12864 0.621061 19.129 3.50895 {normal=(0.671530 0.475160 0.536818)} Vertex 12865 -2.97009 17.7929 -0.195246 {normal=(-0.858561 -0.377782 0.199449)} Vertex 12866 -2.77966 17.4584 -0.380781 {normal=(-0.846592 -0.220356 -0.478605)} Vertex 12867 -1.68109 19.3502 2.46774 {normal=(-0.202258 0.391056 0.819778)} Vertex 12868 -1.65157 19.4303 2.47461 {normal=(-0.218020 -0.181633 0.869174)} Vertex 12869 -1.44345 19.4835 2.57951 {normal=(-0.320940 -0.282975 0.791563)} Vertex 12870 -1.24016 19.4156 2.64574 {normal=(-0.392118 -0.135761 0.827970)} Vertex 12871 -0.232538 14.1413 3.72415 {normal=(-0.039551 -0.790332 0.604109)} Vertex 12872 -0.175972 14.1907 3.77569 {normal=(0.030359 -0.733881 0.672643)} Vertex 12873 -0.901045 12.1746 -0.951365 {normal=(0.018159 -0.898527 -0.436429)} Vertex 12874 -0.310343 12.1102 -0.825853 {normal=(0.014248 -0.895549 -0.442980)} Vertex 12875 0.287656 12.1746 -0.951365 {normal=(0.010943 -0.899416 -0.434543)} Vertex 12876 0.635662 12.3186 -1.25963 {normal=(-0.016839 -0.897782 -0.436327)} Vertex 12877 0.692183 12.5235 -1.65733 {normal=(-0.022409 -0.873467 -0.483352)} Vertex 12878 0.352075 12.8004 -2.09959 {normal=(-0.031283 -0.841206 -0.535239)} Vertex 12879 -0.302492 12.9475 -2.2685 {normal=(0.014082 -0.817654 -0.569211)} Vertex 12880 -0.957199 12.8004 -2.09959 {normal=(0.078909 -0.850236 -0.517905)} Vertex 12881 -2.98658 17.1256 0.222805 {normal=(-0.946466 -0.116411 -0.285545)} Vertex 12882 -2.91627 18.336 1.45973 {normal=(-0.941390 -0.309456 -0.126621)} Vertex 12883 -2.47192 19.3043 2.5151 {normal=(-0.739481 0.304042 0.592522)} Vertex 12884 -2.33398 19.3641 2.67069 {normal=(-0.860673 0.290032 0.414211)} Vertex 12885 -2.09718 18.9697 3.37161 {normal=(-0.481723 0.464927 0.733821)} Vertex 12886 -0.69699 17.6309 4.12565 {normal=(-0.364849 0.266959 0.891030)} Vertex 12887 -0.660697 19.2749 3.44925 {normal=(0.440800 -0.109181 0.879360)} Vertex 12888 -0.586341 19.3407 3.47984 {normal=(-0.505567 -0.210475 0.811209)} Vertex 12889 -0.621061 19.129 3.50895 {normal=(-0.671530 0.475160 0.536818)} Vertex 12890 -3.28085 19.3776 -0.0650188 {normal=(-0.623989 -0.296335 0.709622)} Vertex 12891 -3.16621 19.1932 -0.0624817 {normal=(-0.649806 -0.332924 0.669949)} Vertex 12892 -3.22848 19.1114 -0.185249 {normal=(-0.668012 -0.519332 0.515693)} Vertex 12893 -3.30639 19.2417 -0.179327 {normal=(-0.818887 -0.387925 0.316567)} Vertex 12894 -3.34587 19.6756 -0.0601182 {normal=(-0.601579 0.080375 0.769879)} Vertex 12895 -3.21088 19.5018 0.014449 {normal=(-0.458819 -0.078344 0.876204)} Vertex 12896 -3.3772 19.524 -0.115024 {normal=(-0.824911 -0.205596 0.470529)} Vertex 12897 -3.26706 19.8212 -0.0648592 {normal=(-0.443919 0.326570 0.825600)} Vertex 12898 -3.45864 19.799 -0.200063 {normal=(-0.825385 0.080388 0.482514)} Vertex 12899 -3.4181 19.9483 -0.245126 {normal=(-0.617000 0.498312 0.584453)} Vertex 12900 -3.2249 19.0455 -0.297062 {normal=(-0.816166 -0.524401 0.020529)} Vertex 12901 -3.16548 18.9958 -0.226729 {normal=(-0.814510 -0.423005 0.314293)} Vertex 12902 -3.17158 19.0222 -0.438811 {normal=(-0.851444 -0.386252 -0.340067)} Vertex 12903 -3.20552 19.1571 -0.481873 {normal=(-0.847222 -0.164454 -0.476993)} Vertex 12904 -3.27635 19.1704 -0.328346 {normal=(-0.902316 -0.322980 -0.219316)} Vertex 12905 -3.36115 19.386 -0.232878 {normal=(-0.928660 -0.281022 -0.044075)} Vertex 12906 -3.29425 19.3092 -0.372907 {normal=(-0.833894 -0.114947 -0.493778)} Vertex 12907 -3.37855 19.5158 -0.318065 {normal=(-0.806039 -0.285959 -0.437499)} Vertex 12908 -3.44048 19.6416 -0.230985 {normal=(-0.926751 -0.266085 0.104380)} Vertex 12909 -3.45647 19.7097 -0.367738 {normal=(-0.786814 -0.482648 -0.283388)} Vertex 12910 -3.50963 19.8415 -0.376179 {normal=(-0.941927 -0.188754 0.050282)} Vertex 12911 -3.5134 19.9873 -0.440798 {normal=(-0.863614 0.329024 0.199757)} Vertex 12912 -3.46852 19.8019 -0.527449 {normal=(-0.744636 -0.604566 -0.114182)} Vertex 12913 -3.51533 19.9125 -0.616384 {normal=(-0.948632 -0.180675 0.000941)} Vertex 12914 -3.51336 20.0089 -0.768004 {normal=(-0.860732 0.362967 -0.122250)} Vertex 12915 -3.46439 19.79 -0.746417 {normal=(-0.771897 -0.582636 0.133097)} Vertex 12916 -3.50932 19.8459 -0.898137 {normal=(-0.945892 -0.169538 0.010646)} Vertex 12917 -3.48709 19.8418 -1.08711 {normal=(-0.846907 0.252894 -0.330389)} Vertex 12918 -3.44806 19.6855 -0.951299 {normal=(-0.808865 -0.459499 0.307847)} Vertex 12919 -3.4707 19.6383 -1.11632 {normal=(-0.956174 -0.174087 0.019167)} Vertex 12920 -3.43274 19.5114 -1.27904 {normal=(-0.881855 -0.032704 -0.389585)} Vertex 12921 -3.41312 19.4448 -1.07936 {normal=(-0.878511 -0.231725 0.374312)} Vertex 12922 -3.40809 19.2823 -1.2038 {normal=(-0.971587 -0.157571 0.035177)} Vertex 12923 -3.36653 19.0494 -1.27757 {normal=(-0.913872 -0.177411 -0.282822)} Vertex 12924 -3.35468 19.0809 -1.09895 {normal=(-0.909273 -0.122883 0.371312)} Vertex 12925 -3.33543 18.8549 -1.13538 {normal=(-0.964874 -0.148074 0.150025)} Vertex 12926 -3.28947 18.6278 -1.1409 {normal=(-0.895848 -0.303355 -0.190977)} Vertex 12927 -3.27898 18.7451 -1.00152 {normal=(-0.937762 -0.057993 0.318265)} Vertex 12928 -3.26282 18.5392 -0.989309 {normal=(-0.980011 -0.097424 0.093099)} Vertex 12929 -3.2414 18.3436 -0.968154 {normal=(-0.896924 -0.259317 -0.273910)} Vertex 12930 -3.248 18.4164 -0.88166 {normal=(-0.992017 -0.030846 0.015703)} Vertex 12931 -3.24461 18.3902 -0.779043 {normal=(-0.996949 0.039711 0.040866)} Vertex 12932 -3.23892 18.5318 -0.805179 {normal=(-0.997374 -0.016200 0.045429)} Vertex 12933 -3.24095 18.3445 -0.676438 {normal=(-0.988239 0.100427 0.076603)} Vertex 12934 -3.23224 18.5169 -0.690385 {normal=(-0.979016 0.046914 0.164169)} Vertex 12935 -3.20294 18.5187 -0.58437 {normal=(-0.936299 0.219414 0.243226)} Vertex 12936 -3.14902 18.5878 -0.474289 {normal=(-0.933182 0.291176 0.191228)} Vertex 12937 -3.13481 18.6696 -0.548466 {normal=(-0.881685 0.311067 0.325602)} Vertex 12938 -3.0982 18.717 -0.445644 {normal=(-0.942459 0.172374 -0.094709)} Vertex 12939 -3.0771 18.8449 -0.55661 {normal=(-0.927815 0.103015 0.080972)} Vertex 12940 -3.21844 18.6746 -0.675653 {normal=(-0.873163 0.173267 0.398024)} Vertex 12941 -3.15159 18.8507 -0.695634 {normal=(-0.751306 0.420643 0.487718)} Vertex 12942 -3.25679 18.7041 -0.822245 {normal=(-0.983729 -0.062588 0.108702)} Vertex 12943 -3.26351 18.8713 -0.833275 {normal=(-0.814877 0.184122 0.401184)} Vertex 12944 -3.26014 18.7866 -0.941489 {normal=(-0.968489 -0.115446 0.078237)} Vertex 12945 -3.29853 18.948 -0.934804 {normal=(-0.950576 -0.199750 -0.140333)} Vertex 12946 -3.34715 19.1052 -0.912559 {normal=(-0.880026 -0.277881 -0.038749)} Vertex 12947 -3.30546 19.1003 -0.995211 {normal=(-0.936278 -0.118915 0.049169)} Vertex 12948 -3.33929 19.2571 -0.934048 {normal=(-0.935023 0.036092 -0.318337)} Vertex 12949 -3.36177 19.3643 -0.835531 {normal=(-0.955015 0.140995 -0.158234)} Vertex 12950 -3.32057 19.4088 -0.951933 {normal=(-0.920572 -0.026996 0.189657)} Vertex 12951 -3.3222 19.486 -0.841183 {normal=(-0.965898 0.156959 -0.133853)} Vertex 12952 -3.33514 19.5215 -0.729675 {normal=(-0.973251 0.174001 0.006545)} Vertex 12953 -3.31846 19.5998 -0.854607 {normal=(-0.865622 -0.287545 0.230587)} Vertex 12954 -3.31513 19.6148 -0.747187 {normal=(-0.976598 -0.009094 0.038527)} Vertex 12955 -3.30639 19.6483 -0.644302 {normal=(-0.947658 -0.093161 0.168277)} Vertex 12956 -3.32532 19.6914 -0.714917 {normal=(-0.763829 -0.539258 0.185129)} Vertex 12957 -3.31283 19.5607 -0.629906 {normal=(-0.931215 0.053192 0.331840)} Vertex 12958 -3.30022 19.6946 -0.556068 {normal=(-0.741606 -0.579628 0.071223)} Vertex 12959 -3.26568 19.607 -0.537612 {normal=(-0.880586 -0.214914 0.305251)} Vertex 12960 -3.23678 19.5101 -0.522179 {normal=(-0.856447 -0.243488 0.355452)} Vertex 12961 -3.23884 19.5745 -0.456763 {normal=(-0.794763 -0.303751 -0.358263)} Vertex 12962 -3.30281 19.4536 -0.624447 {normal=(-0.788188 -0.236353 0.530792)} Vertex 12963 -3.18714 19.398 -0.500671 {normal=(-0.857506 -0.217093 -0.142738)} Vertex 12964 -3.21171 19.3451 -0.617319 {normal=(-0.672179 -0.560428 0.404623)} Vertex 12965 -3.35118 19.4149 -0.727423 {normal=(-0.926080 -0.035941 0.256999)} Vertex 12966 -3.36158 19.3056 -0.794556 {normal=(-0.880677 -0.230386 0.277312)} Vertex 12967 -3.38586 19.6916 -0.82829 {normal=(-0.662766 -0.667882 0.327078)} Vertex 12968 -3.365 19.5522 -0.95925 {normal=(-0.779275 -0.347823 0.508474)} Vertex 12969 -3.34975 19.2686 -1.0395 {normal=(-0.869495 -0.141878 0.469090)} Vertex 12970 -3.29393 18.9283 -1.01921 {normal=(-0.898884 -0.068908 0.421431)} Vertex 12971 -3.18467 18.1005 -0.316138 {normal=(-0.846481 0.000389 0.502769)} Vertex 12972 -3.23248 18.2586 -0.490885 {normal=(-0.955898 0.130668 0.239417)} Vertex 12973 -3.17388 18.2948 -0.363251 {normal=(-0.884548 0.144592 0.423133)} Vertex 12974 -3.15943 18.4783 -0.404612 {normal=(-0.928548 0.185390 0.315361)} Vertex 12975 -3.10444 18.3344 -0.224282 {normal=(-0.890326 0.065083 0.445465)} Vertex 12976 -3.11943 18.6046 -0.365908 {normal=(-0.966358 0.119144 0.097089)} Vertex 12977 -3.11099 18.6527 -0.249958 {normal=(-0.952581 -0.068082 0.230135)} Vertex 12978 -3.12386 18.7347 -0.351304 {normal=(-0.975872 -0.047669 -0.171105)} Vertex 12979 -3.07684 17.9647 -0.203321 {normal=(-0.771352 -0.312223 0.511666)} Vertex 12980 -3.1129 17.9114 -0.297628 {normal=(-0.685287 -0.594514 0.360574)} Vertex 12981 -3.20798 17.9846 -0.403246 {normal=(-0.865612 -0.341227 0.296127)} Vertex 12982 -3.25249 18.028 -0.584128 {normal=(-0.948611 -0.244271 0.029053)} Vertex 12983 -3.20553 17.9351 -0.539049 {normal=(-0.741198 -0.637208 0.047779)} Vertex 12984 -3.25745 18.1567 -0.638162 {normal=(-0.991082 0.006300 0.003574)} Vertex 12985 -3.24153 18.0707 -0.773126 {normal=(-0.908942 -0.243339 -0.280759)} Vertex 12986 -3.38611 19.747 -0.629279 {normal=(-0.586104 -0.802723 0.069213)} Vertex 12987 -3.10901 19.2427 -0.649442 {normal=(-0.836536 -0.376180 -0.048418)} Vertex 12988 -3.18858 19.2586 -0.733783 {normal=(-0.484012 -0.640570 0.561776)} Vertex 12989 -3.29287 19.0634 -0.887387 {normal=(-0.442866 -0.243357 0.785189)} Vertex 12990 -3.18587 19.1468 -0.831105 {normal=(-0.353346 -0.474787 0.781468)} Vertex 12991 -3.06513 19.0823 -0.808342 {normal=(-0.640234 -0.116443 0.635167)} Vertex 12992 -3.17793 18.9963 -0.844328 {normal=(-0.481157 0.269628 0.797744)} Vertex 12993 -3.0626 18.9846 -0.749619 {normal=(-0.728606 0.436508 0.378801)} Vertex 12994 -3.34967 19.1845 -0.875529 {normal=(-0.717802 -0.272221 0.449550)} Vertex 12995 -3.30987 19.2372 -0.793983 {normal=(-0.464129 -0.532443 0.677138)} Vertex 12996 -3.37679 19.723 -0.472429 {normal=(-0.579992 -0.721597 -0.339838)} Vertex 12997 -3.34696 19.6339 -0.404086 {normal=(-0.619346 -0.471627 -0.608580)} Vertex 12998 -3.26682 19.4462 -0.406165 {normal=(-0.731936 -0.111282 -0.665347)} Vertex 12999 -3.18889 19.2741 -0.501649 {normal=(-0.839037 -0.011164 -0.533913)} Vertex 13000 -3.10454 19.1377 -0.639132 {normal=(-0.874690 -0.243664 -0.364935)} Vertex 13001 -3.09427 19.0092 -0.578735 {normal=(-0.886198 -0.201329 -0.369167)} Vertex 13002 -3.11053 18.8621 -0.425571 {normal=(-0.942186 -0.163645 -0.257109)} Vertex 13003 -3.03596 19.0541 -0.707883 {normal=(-0.905661 -0.104198 -0.089947)} Vertex 13004 -3.14183 18.8618 -0.292462 {normal=(-0.953355 -0.182006 0.040838)} Vertex 13005 -3.37639 20.0927 -0.395008 {normal=(-0.699017 0.546680 0.297654)} Vertex 13006 -3.45357 20.1009 -0.589496 {normal=(-0.661810 0.710067 0.048838)} Vertex 13007 -3.3152 20.149 -0.766263 {normal=(-0.355074 0.866061 -0.328822)} Vertex 13008 -3.41016 20.0204 -0.958995 {normal=(-0.505325 0.720031 -0.417047)} Vertex 13009 -3.28821 19.938 -1.16031 {normal=(-0.117112 0.697885 -0.664843)} Vertex 13010 -3.39341 19.75 -1.27005 {normal=(-0.530467 0.370928 -0.695379)} Vertex 13011 -3.2843 19.5593 -1.37186 {normal=(0.029306 0.200724 -0.922276)} Vertex 13012 -3.35059 19.3007 -1.37588 {normal=(-0.548774 -0.053325 -0.759920)} Vertex 13013 -3.24576 19.0312 -1.37594 {normal=(0.034976 -0.147087 -0.921584)} Vertex 13014 -3.28611 18.7902 -1.29027 {normal=(-0.581150 -0.329363 -0.656461)} Vertex 13015 -3.15754 18.5907 -1.23969 {normal=(0.063611 -0.394832 -0.840742)} Vertex 13016 -3.19558 18.4358 -1.1184 {normal=(-0.529312 -0.473572 -0.626528)} Vertex 13017 -3.09358 18.2726 -1.05158 {normal=(0.079213 -0.499131 -0.777534)} Vertex 13018 -3.17917 18.1525 -0.924559 {normal=(-0.580950 -0.417359 -0.611624)} Vertex 13019 -3.10262 17.9454 -0.823738 {normal=(-0.088318 -0.610860 -0.707919)} Vertex 13020 -3.18343 17.9079 -0.73662 {normal=(-0.703318 -0.571307 -0.266584)} Vertex 13021 -3.08096 17.8183 -0.59363 {normal=(-0.507639 -0.818371 0.074719)} Vertex 13022 -3.14089 17.8935 -0.578097 {normal=(-0.672731 -0.699879 0.094418)} Vertex 13023 -3.01196 17.8041 -0.645702 {normal=(-0.029867 -0.866915 -0.365839)} Vertex 13024 -2.96337 17.788 -0.485124 {normal=(-0.435107 -0.874591 0.029134)} Vertex 13025 -2.87923 18.0791 -0.76313 {normal=(0.377147 -0.318744 -0.817742)} Vertex 13026 -2.99143 18.1675 -0.9133 {normal=(0.564267 -0.391136 -0.712942)} Vertex 13027 -2.95695 17.9997 -0.797053 {normal=(0.379593 -0.449137 -0.796151)} Vertex 13028 -2.84895 18.2076 -0.817845 {normal=(0.089283 -0.490457 -0.799470)} Vertex 13029 -2.77727 18.0459 -0.74972 {normal=(-0.392402 -0.369216 -0.789503)} Vertex 13030 -2.93349 18.3367 -0.94768 {normal=(0.530032 -0.420084 -0.718549)} Vertex 13031 -2.76452 18.3104 -0.932092 {normal=(-0.513048 -0.467075 -0.654715)} Vertex 13032 -2.86438 18.4981 -1.00877 {normal=(0.047987 -0.475354 -0.810326)} Vertex 13033 -3.0297 18.4568 -1.10827 {normal=(0.544942 -0.353352 -0.750620)} Vertex 13034 -3.11117 18.8011 -1.27177 {normal=(0.469331 -0.190593 -0.854750)} Vertex 13035 -2.97583 18.6493 -1.13441 {normal=(0.482514 -0.295622 -0.811231)} Vertex 13036 -2.91509 18.8527 -1.17867 {normal=(-0.006376 -0.299681 -0.891221)} Vertex 13037 -2.79421 18.6483 -1.13889 {normal=(-0.556881 -0.405145 -0.646490)} Vertex 13038 -3.03332 19.0436 -1.25659 {normal=(0.388038 -0.113628 -0.899678)} Vertex 13039 -2.86327 19.0804 -1.27769 {normal=(-0.646646 -0.246151 -0.636992)} Vertex 13040 -2.96541 19.2787 -1.26226 {normal=(-0.160211 -0.085196 -0.915445)} Vertex 13041 -3.16284 19.2892 -1.34462 {normal=(0.446485 0.028310 -0.888815)} Vertex 13042 -3.18419 19.7708 -1.26603 {normal=(0.330208 0.409056 -0.830563)} Vertex 13043 -3.06912 19.5161 -1.26438 {normal=(0.202559 0.093545 -0.908991)} Vertex 13044 -2.96913 19.5156 -1.27679 {normal=(-0.673825 -0.142711 -0.611594)} Vertex 13045 -3.09978 17.8703 -0.413889 {normal=(-0.512328 -0.849858 0.085043)} Vertex 13046 -3.00465 17.8309 -0.248268 {normal=(-0.757755 -0.599875 0.154917)} Vertex 13047 -2.98325 17.8114 -0.362609 {normal=(-0.597646 -0.785678 -0.002782)} Vertex 13048 -2.87378 17.6891 -0.3613 {normal=(-0.745371 -0.494889 -0.377194)} Vertex 13049 -2.8709 17.731 -0.444173 {normal=(-0.623839 -0.712390 -0.278588)} Vertex 13050 -3.15254 19.9505 -1.11799 {normal=(-0.111993 0.597753 -0.709012)} Vertex 13051 -2.86261 17.8339 -0.631934 {normal=(-0.078236 -0.645476 -0.681414)} Vertex 13052 -2.80345 17.7099 -0.521223 {normal=(-0.612365 -0.602136 -0.468899)} Vertex 13053 -2.79667 17.6338 -0.422811 {normal=(-0.754376 -0.419020 -0.467911)} Vertex 13054 -3.37089 20.2033 -0.510103 {normal=(-0.772497 0.484124 -0.155202)} Vertex 13055 -3.32819 20.1357 -0.348506 {normal=(-0.699540 0.485054 0.388353)} Vertex 13056 -2.89687 18.1917 1.73727 {normal=(-0.921772 -0.377643 -0.061350)} Vertex 13057 -2.92788 18.259 2.11849 {normal=(-0.942716 -0.307013 0.068162)} Vertex 13058 -2.82311 18.0471 2.25115 {normal=(-0.890862 -0.447373 0.062594)} Vertex 13059 -2.78346 17.9437 1.88996 {normal=(-0.897316 -0.437553 0.035624)} Vertex 13060 -2.78219 17.919 1.59677 {normal=(-0.942073 -0.321009 0.054121)} Vertex 13061 -2.67168 17.74 1.98118 {normal=(-0.894944 -0.438105 0.078539)} Vertex 13062 -2.6862 17.697 1.70858 {normal=(-0.916203 -0.365205 0.154881)} Vertex 13063 -2.75196 17.7478 1.46219 {normal=(-0.942923 -0.229491 0.230663)} Vertex 13064 -2.5909 17.5044 1.78175 {normal=(-0.924177 -0.311691 0.205614)} Vertex 13065 -2.6668 17.5195 1.55329 {normal=(-0.918883 -0.204811 0.329804)} Vertex 13066 -2.77253 17.597 1.3188 {normal=(-0.922842 -0.104552 0.368949)} Vertex 13067 -2.6206 17.2976 1.57299 {normal=(-0.915776 -0.117384 0.381673)} Vertex 13068 -2.7325 17.3097 1.33508 {normal=(-0.908574 -0.099381 0.405363)} Vertex 13069 -2.84872 17.3284 1.06314 {normal=(-0.935712 -0.066169 0.343750)} Vertex 13070 -2.73758 17.0074 1.25954 {normal=(-0.912242 -0.061827 0.404353)} Vertex 13071 -2.85474 16.97 0.988263 {normal=(-0.922185 -0.075446 0.378417)} Vertex 13072 -2.96657 16.9944 0.697169 {normal=(-0.960369 -0.050107 0.256428)} Vertex 13073 -2.85347 16.7043 0.917972 {normal=(-0.932691 -0.134609 0.329951)} Vertex 13074 -2.94019 16.6733 0.640381 {normal=(-0.953074 -0.215383 0.167167)} Vertex 13075 -2.96808 16.8009 0.345483 {normal=(-0.961135 -0.193022 -0.153804)} Vertex 13076 -2.84956 16.3638 0.594316 {normal=(-0.944817 -0.310002 0.064403)} Vertex 13077 -2.85525 16.4235 0.292649 {normal=(-0.935425 -0.299525 -0.166897)} Vertex 13078 -2.8192 16.5971 0.000959499 {normal=(-0.902958 -0.221315 -0.357708)} Vertex 13079 -2.713 16.0695 0.242057 {normal=(-0.887673 -0.402917 -0.200465)} Vertex 13080 -2.66848 16.2102 -0.0563925 {normal=(-0.809999 -0.365175 -0.440325)} Vertex 13081 -2.59408 16.4504 -0.301753 {normal=(-0.793893 -0.274882 -0.537973)} Vertex 13082 -2.48745 15.8836 -0.03733 {normal=(-0.773199 -0.468013 -0.414873)} Vertex 13083 -2.42406 16.1446 -0.408236 {normal=(-0.887156 -0.257762 -0.346836)} Vertex 13084 -2.37524 16.5427 -0.868071 {normal=(-0.928575 -0.181736 -0.320270)} Vertex 13085 -2.31108 15.9953 -0.854753 {normal=(-0.969009 -0.049979 -0.213829)} Vertex 13086 -2.20801 16.4451 -1.32006 {normal=(-0.894122 -0.062526 -0.423064)} Vertex 13087 -2.35792 15.5326 -0.457691 {normal=(-0.991270 -0.028692 0.004425)} Vertex 13088 -2.30495 15.4177 -1.0932 {normal=(-0.966070 0.093787 -0.208016)} Vertex 13089 -2.12435 15.9913 -1.46203 {normal=(-0.888715 0.050002 -0.432896)} Vertex 13090 -2.11438 16.8816 -1.53193 {normal=(-0.795194 -0.080155 -0.595020)} Vertex 13091 -1.94983 16.4291 -1.72958 {normal=(-0.776250 0.016683 -0.622326)} Vertex 13092 -1.80777 16.8867 -1.86767 {normal=(-0.698675 -0.037316 -0.711812)} Vertex 13093 -1.83175 15.9372 -1.93836 {normal=(-0.768086 0.148764 -0.613817)} Vertex 13094 -1.56221 16.4844 -2.11231 {normal=(-0.661369 0.073516 -0.742711)} Vertex 13095 -1.79449 17.2963 -1.9345 {normal=(-0.672539 -0.149499 -0.722531)} Vertex 13096 -1.33693 16.9935 -2.27836 {normal=(-0.603366 -0.016384 -0.794214)} Vertex 13097 -2.68718 21.7055 -1.62878 {normal=(-0.796225 0.297066 -0.511554)} Vertex 13098 -2.15486 21.9782 -2.07958 {normal=(-0.678467 0.511554 -0.508430)} Vertex 13099 -1.94369 22.5249 -1.87846 {normal=(-0.573597 0.577007 -0.569136)} Vertex 13100 -2.55342 22.2523 -1.37816 {normal=(-0.759864 0.472090 -0.426912)} Vertex 13101 -2.92641 21.7932 -1.01488 {normal=(-0.917509 0.294767 -0.237001)} Vertex 13102 -2.4642 22.7024 -0.855034 {normal=(-0.717233 0.635683 -0.238186)} Vertex 13103 -2.86179 22.1897 -0.553658 {normal=(-0.892902 0.417244 -0.122902)} Vertex 13104 -3.04199 21.6973 -0.439536 {normal=(-0.970547 0.208701 -0.071134)} Vertex 13105 -2.74562 22.4391 0.067847 {normal=(-0.849923 0.503550 0.091081)} Vertex 13106 -2.97344 21.9428 0.040644 {normal=(-0.941164 0.309378 0.092266)} Vertex 13107 -3.07833 21.5224 -0.0486635 {normal=(-0.986404 0.106851 0.084810)} Vertex 13108 -2.80738 22.0927 0.611176 {normal=(-0.892526 0.373315 0.235662)} Vertex 13109 -2.98465 21.6586 0.405563 {normal=(-0.960177 0.184730 0.195516)} Vertex 13110 -3.04917 21.1984 0.334235 {normal=(-0.984030 0.064395 0.157745)} Vertex 13111 -2.82016 21.7097 1.00202 {normal=(-0.921292 0.237184 0.295239)} Vertex 13112 -2.93729 21.1973 0.856603 {normal=(-0.959838 0.058735 0.266081)} Vertex 13113 -2.92976 20.6721 0.856705 {normal=(-0.954790 0.013108 0.294986)} Vertex 13114 -2.76138 21.1915 1.38622 {normal=(-0.933835 0.074743 0.343356)} Vertex 13115 -2.8041 20.6387 1.27543 {normal=(-0.959595 0.024993 0.276836)} Vertex 13116 -2.83632 20.1815 1.25458 {normal=(-0.964327 0.141609 0.214979)} Vertex 13117 -2.69115 20.6594 1.65803 {normal=(-0.957165 0.106723 0.261155)} Vertex 13118 -2.78153 20.2174 1.52849 {normal=(-0.899659 0.241058 -0.104327)} Vertex 13119 -1.46835 22.516 -2.29897 {normal=(-0.433483 0.739142 -0.493331)} Vertex 13120 -1.29522 22.8827 -1.89195 {normal=(-0.272930 0.827951 -0.481005)} Vertex 13121 -1.90122 22.962 -1.35299 {normal=(-0.449998 0.788692 -0.381335)} Vertex 13122 -0.644567 22.795 -2.35757 {normal=(-0.209072 0.887978 -0.391423)} Vertex 13123 0 23.1279 -1.85122 {normal=(0.000000 0.915938 -0.384364)} Vertex 13124 -0.868941 23.2924 -1.16829 {normal=(-0.150999 0.941957 -0.278027)} Vertex 13125 -1.75351 23.2267 -0.553016 {normal=(-0.349913 0.915998 -0.133431)} Vertex 13126 -2.36108 22.9299 -0.0984477 {normal=(-0.648506 0.741598 0.008050)} Vertex 13127 -0.719608 23.4896 -0.104209 {normal=(-0.143498 0.979860 -0.076281)} Vertex 13128 -1.51627 23.3284 0.43791 {normal=(-0.317762 0.930678 0.102365)} Vertex 13129 -2.08348 22.9922 0.780026 {normal=(-0.565807 0.772261 0.245318)} Vertex 13130 -2.49033 22.5407 0.819795 {normal=(-0.774426 0.562985 0.268964)} Vertex 13131 -1.2212 23.2002 1.3438 {normal=(-0.302579 0.877733 0.356224)} Vertex 13132 -1.69877 22.8748 1.59017 {normal=(-0.445865 0.776512 0.432770)} Vertex 13133 -2.15906 22.5494 1.55278 {normal=(-0.659042 0.610728 0.417422)} Vertex 13134 -2.54555 22.1617 1.28081 {normal=(-0.829541 0.420685 0.355093)} Vertex 13135 -1.32712 22.6783 2.17585 {normal=(-0.338090 0.727926 0.588757)} Vertex 13136 -1.8068 22.4321 2.1207 {normal=(-0.527357 0.619501 0.570765)} Vertex 13137 -2.23112 22.129 1.92705 {normal=(-0.727789 0.459261 0.494644)} Vertex 13138 -2.56875 21.715 1.63538 {normal=(-0.868014 0.267177 0.407616)} Vertex 13139 -1.55095 22.1895 2.56933 {normal=(-0.413093 0.632386 0.634557)} Vertex 13140 -1.91913 21.9645 2.44301 {normal=(-0.622833 0.487477 0.605580)} Vertex 13141 -2.29818 21.6471 2.1984 {normal=(-0.794335 0.329190 0.496946)} Vertex 13142 -2.55564 21.1911 1.90285 {normal=(-0.910646 0.152554 0.376442)} Vertex 13143 -1.69819 21.6944 2.85752 {normal=(-0.511792 0.493920 0.695072)} Vertex 13144 -2.05499 21.461 2.67383 {normal=(-0.705506 0.389999 0.583160)} Vertex 13145 -2.3621 21.1691 2.38344 {normal=(-0.852722 0.288320 0.418516)} Vertex 13146 -2.56352 20.777 2.06475 {normal=(-0.827493 0.433048 0.039567)} Vertex 13147 -1.87592 21.1857 3.04028 {normal=(-0.572569 0.410803 0.700232)} Vertex 13148 -2.17837 21.0514 2.79948 {normal=(-0.583968 0.610168 0.445494)} Vertex 13149 -1.73925 20.9281 3.2686 {normal=(-0.312150 0.576956 0.719512)} Vertex 13150 -1.60053 21.3749 3.13107 {normal=(-0.397262 0.430535 0.805242)} Vertex 13151 -1.50073 21.0317 3.33181 {normal=(-0.378421 0.412441 0.828070)} Vertex 13152 -1.42871 21.8881 2.88529 {normal=(-0.328114 0.543981 0.766599)} Vertex 13153 -1.35032 21.5536 3.12097 {normal=(-0.255042 0.491052 0.831779)} Vertex 13154 -1.26187 22.1214 2.76451 {normal=(-0.219169 0.641674 0.720504)} Vertex 13155 -1.34506 20.7274 3.57499 {normal=(-0.273214 0.588719 0.739685)} Vertex 13156 -1.26796 21.1793 3.35982 {normal=(-0.305298 0.463858 0.829498)} Vertex 13157 -1.13311 20.7965 3.63448 {normal=(-0.327744 0.482933 0.811363)} Vertex 13158 -1.06514 21.7381 3.07463 {normal=(-0.187345 0.535165 0.823420)} Vertex 13159 -0.975957 21.318 3.35994 {normal=(-0.218599 0.524917 0.822101)} Vertex 13160 -0.953818 22.3906 2.62477 {normal=(-0.219447 0.642686 0.731132)} Vertex 13161 -0.735424 21.9464 3.00825 {normal=(-0.182845 0.558190 0.808809)} Vertex 13162 -0.977992 20.5018 3.86529 {normal=(-0.147784 0.541582 0.815665)} Vertex 13163 -0.896035 20.8827 3.66905 {normal=(-0.235081 0.499827 0.831674)} Vertex 13164 -0.769108 20.5162 3.8996 {normal=(-0.086573 0.405836 0.901861)} Vertex 13165 -0.664893 21.4761 3.3324 {normal=(-0.191944 0.539320 0.819878)} Vertex 13166 -0.604652 21.0306 3.63944 {normal=(-0.119959 0.506790 0.849834)} Vertex 13167 -0.464559 21.8285 3.14763 {normal=(-0.149204 0.556548 0.816632)} Vertex 13168 -0.613623 20.2605 3.9899 {normal=(0.135927 0.371774 0.910586)} Vertex 13169 -0.539734 20.6013 3.8624 {normal=(0.012784 0.385966 0.920508)} Vertex 13170 -0.419985 20.2906 3.96427 {normal=(-0.020728 0.251734 0.959446)} Vertex 13171 -0.36898 21.3636 3.46829 {normal=(-0.081598 0.519849 0.848948)} Vertex 13172 -0.348268 20.8542 3.74269 {normal=(-0.071090 0.425986 0.898233)} Vertex 13173 -0.267547 22.2663 2.86408 {normal=(-0.079248 0.595527 0.797696)} Vertex 13174 -0.165866 21.7598 3.22668 {normal=(0.008194 0.546959 0.834770)} Vertex 13175 -0.264117 20.074 4.00327 {normal=(-0.109882 -0.062397 0.979777)} Vertex 13176 -0.291426 20.4599 3.92512 {normal=(-0.188042 0.331833 0.922699)} Vertex 13177 -0.18348 20.2625 4.01004 {normal=(-0.126334 0.163555 0.969795)} Vertex 13178 -0.220345 20.8318 3.77493 {normal=(-0.061012 0.437226 0.890608)} Vertex 13179 -0.0712475 20.1084 4.02616 {normal=(0.003947 -0.036094 0.994313)} Vertex 13180 -0.104003 20.5014 3.93844 {normal=(-0.021102 0.361228 0.927280)} Vertex 13181 0 20.2772 4.01542 {normal=(0.000000 0.170685 0.978568)} Vertex 13182 -0.119159 21.2592 3.52826 {normal=(0.091309 0.503447 0.858842)} Vertex 13183 0 20.8536 3.75306 {normal=(0.000000 0.477571 0.876046)} Vertex 13184 0 21.6875 3.25081 {normal=(-0.003980 0.532055 0.841789)} Vertex 13185 0 22.5992 2.62624 {normal=(0.001631 0.660855 0.744827)} Vertex 13186 -0.545489 22.6362 2.51232 {normal=(-0.167545 0.693901 0.695340)} Vertex 13187 -0.25368 22.9193 2.25024 {normal=(-0.096406 0.786640 0.600317)} Vertex 13188 0 23.2453 1.7318 {normal=(0.000000 0.891064 0.441587)} Vertex 13189 -0.535348 23.2513 1.6263 {normal=(-0.147004 0.886820 0.425984)} Vertex 13190 -0.240251 23.4996 1.03711 {normal=(-0.036878 0.964224 0.225300)} Vertex 13191 0 23.5578 0.166549 {normal=(-0.000942 0.991331 -0.025485)} Vertex 13192 -0.313861 23.5554 0.123225 {normal=(-0.055207 0.989642 -0.036254)} Vertex 13193 -0.88038 22.9352 2.03166 {normal=(-0.232383 0.804502 0.540450)} Vertex 13194 -0.765361 23.4736 0.89286 {normal=(-0.186218 0.953843 0.188585)} Vertex 13195 -2.17292 15.65 2.60117 {normal=(-0.799713 -0.366029 0.463933)} Vertex 13196 -1.97125 15.6252 2.84313 {normal=(-0.697790 -0.344248 0.619934)} Vertex 13197 -1.7677 15.3069 2.8449 {normal=(-0.680941 -0.454609 0.574018)} Vertex 13198 -1.99556 15.2669 2.5356 {normal=(-0.728311 -0.413259 0.542449)} Vertex 13199 -1.51141 15.391 3.20654 {normal=(-0.684707 -0.396664 0.609410)} Vertex 13200 -1.35555 15.0945 3.1912 {normal=(-0.756712 -0.332529 0.555968)} Vertex 13201 -1.59682 15.0077 2.80972 {normal=(-0.700428 -0.410819 0.582211)} Vertex 13202 -2.21763 15.2544 2.20347 {normal=(-0.833206 -0.341852 0.420430)} Vertex 13203 -1.80064 14.9025 2.5155 {normal=(-0.697161 -0.414119 0.583553)} Vertex 13204 -2.00903 14.8788 2.21333 {normal=(-0.761940 -0.526906 0.328707)} Vertex 13205 -1.44845 14.6673 2.77175 {normal=(-0.734919 -0.425778 0.519191)} Vertex 13206 -1.62913 14.595 2.50508 {normal=(-0.664434 -0.543683 0.487377)} Vertex 13207 -2.07827 14.9123 1.86719 {normal=(-0.736624 -0.659443 -0.077097)} Vertex 13208 -1.77378 14.5991 2.2764 {normal=(-0.674879 -0.687536 0.192269)} Vertex 13209 -1.80241 14.6413 1.96039 {normal=(-0.619035 -0.774209 -0.100914)} Vertex 13210 -1.5455 14.4538 2.3881 {normal=(-0.518351 -0.822980 0.162769)} Vertex 13211 -1.75025 14.6818 1.58615 {normal=(-0.589829 -0.782616 -0.191769)} Vertex 13212 -1.51903 14.4377 2.07738 {normal=(-0.474098 -0.873424 -0.065516)} Vertex 13213 -1.47228 14.4732 1.71348 {normal=(-0.468895 -0.864019 -0.173488)} Vertex 13214 -1.24504 14.3193 2.50183 {normal=(-0.465467 -0.874654 0.082656)} Vertex 13215 -1.24954 14.3088 2.1753 {normal=(-0.362519 -0.927772 -0.047211)} Vertex 13216 -1.43619 14.5178 1.41023 {normal=(-0.417133 -0.876439 -0.210211)} Vertex 13217 -1.25648 14.3414 1.89355 {normal=(-0.290739 -0.938318 -0.168370)} Vertex 13218 -1.16401 14.376 1.64364 {normal=(-0.192861 -0.946354 -0.244452)} Vertex 13219 -1.06479 14.2593 2.12409 {normal=(-0.237830 -0.956307 -0.156269)} Vertex 13220 -0.916418 14.4118 1.45089 {normal=(-0.061087 -0.933302 -0.350664)} Vertex 13221 -0.873136 14.267 1.90717 {normal=(-0.149527 -0.953596 -0.256106)} Vertex 13222 -0.576018 14.2966 1.72101 {normal=(-0.076659 -0.934889 -0.345117)} Vertex 13223 -0.793378 14.1457 2.35863 {normal=(-0.267265 -0.944762 -0.176776)} Vertex 13224 -0.577435 14.1523 2.13076 {normal=(-0.152251 -0.946822 -0.278088)} Vertex 13225 -0.277758 14.3407 1.55677 {normal=(-0.053893 -0.919529 -0.388838)} Vertex 13226 -0.303654 14.1825 1.95781 {normal=(-0.065732 -0.936848 -0.342013)} Vertex 13227 -0.0178235 14.2418 1.77013 {normal=(-0.000001 -0.929530 -0.366289)} Vertex 13228 -0.283299 14.0492 2.3442 {normal=(-0.084872 -0.955063 -0.279307)} Vertex 13229 -0.0177193 14.0974 2.16381 {normal=(-0.000060 -0.945810 -0.322214)} Vertex 13230 -2.34805 16.1459 2.59609 {normal=(-0.922393 -0.240689 0.275526)} Vertex 13231 -2.22982 15.9686 2.72973 {normal=(-0.734832 -0.281356 0.586226)} Vertex 13232 -2.30964 15.8377 2.41181 {normal=(-0.927800 -0.255115 0.252946)} Vertex 13233 -2.39086 16.122 2.28713 {normal=(-0.982370 -0.133683 0.107618)} Vertex 13234 -2.33616 15.7889 2.2478 {normal=(-0.930779 -0.188070 0.297869)} Vertex 13235 -2.43754 15.9584 2.03461 {normal=(-0.934515 -0.086461 0.342103)} Vertex 13236 -2.35509 15.6363 2.12471 {normal=(-0.909331 -0.192700 0.364286)} Vertex 13237 -2.45693 15.6682 1.84602 {normal=(-0.944460 -0.200519 0.252487)} Vertex 13238 -2.36579 15.3345 1.89665 {normal=(-0.908746 -0.351569 0.156483)} Vertex 13239 -2.41019 15.4354 1.64961 {normal=(-0.889965 -0.439763 -0.055159)} Vertex 13240 -2.288 15.1964 1.76974 {normal=(-0.822531 -0.546504 -0.110834)} Vertex 13241 -2.2102 15.1834 1.46771 {normal=(-0.783102 -0.602603 -0.144671)} Vertex 13242 -2.00362 14.9179 1.52952 {normal=(-0.702150 -0.683940 -0.189104)} Vertex 13243 -1.9386 14.9334 1.23301 {normal=(-0.677835 -0.719653 -0.139286)} Vertex 13244 -1.69868 14.7197 1.29245 {normal=(-0.598264 -0.784042 -0.155197)} Vertex 13245 -1.69079 14.7432 1.03047 {normal=(-0.638718 -0.738233 0.115354)} Vertex 13246 -1.34294 14.5538 1.18731 {normal=(-0.330964 -0.884078 -0.049803)} Vertex 13247 -1.03741 14.4102 1.07121 {normal=(-0.276027 -0.653683 0.567670)} Vertex 13248 -0.588786 14.4544 1.33663 {normal=(-0.090584 -0.937023 -0.067375)} Vertex 13249 -0.288782 14.328 1.20424 {normal=(-0.092103 -0.677262 0.590346)} Vertex 13250 -0.019911 14.4068 1.38206 {normal=(0.000186 -0.935855 -0.065186)} Vertex 13251 -2.71987 17.9073 2.61577 {normal=(-0.894727 -0.431094 0.099159)} Vertex 13252 -2.6635 17.8898 2.91371 {normal=(-0.898821 -0.301840 0.287450)} Vertex 13253 -2.6068 17.6893 2.81173 {normal=(-0.937203 -0.312153 0.122509)} Vertex 13254 -2.62242 17.7001 2.54428 {normal=(-0.920959 -0.385620 0.032834)} Vertex 13255 -2.52684 17.5748 3.03459 {normal=(-0.867694 -0.248207 0.395627)} Vertex 13256 -2.52749 17.394 2.88014 {normal=(-0.955439 -0.183567 0.192237)} Vertex 13257 -2.55786 17.4891 2.66425 {normal=(-0.974084 -0.215772 -0.003171)} Vertex 13258 -2.44674 17.256 3.03701 {normal=(-0.769797 -0.224912 0.548518)} Vertex 13259 -2.48619 17.098 2.85292 {normal=(-0.941377 -0.163076 0.256723)} Vertex 13260 -2.52344 17.2319 2.68483 {normal=(-0.987964 -0.118085 0.003900)} Vertex 13261 -2.40225 16.9051 2.96363 {normal=(-0.724818 -0.232714 0.592270)} Vertex 13262 -2.43334 16.6809 2.75253 {normal=(-0.938357 -0.197468 0.242232)} Vertex 13263 -2.4871 16.9193 2.64973 {normal=(-0.984372 -0.141249 0.015059)} Vertex 13264 -2.33406 16.4071 2.82313 {normal=(-0.737585 -0.275702 0.563232)} Vertex 13265 -2.41794 16.4199 2.48821 {normal=(-0.985435 -0.139554 0.058306)} Vertex 13266 -2.4249 16.6271 2.34102 {normal=(-0.994066 -0.051388 -0.076021)} Vertex 13267 -2.41078 16.3547 2.17798 {normal=(-0.988806 -0.023317 0.101912)} Vertex 13268 -2.58754 15.98 1.54726 {normal=(-0.969286 -0.166106 0.163434)} Vertex 13269 -2.52718 15.9838 1.79167 {normal=(-0.948107 -0.100223 0.294256)} Vertex 13270 -2.5113 15.6937 1.58482 {normal=(-0.946060 -0.298799 0.084566)} Vertex 13271 -2.52513 15.7098 1.29724 {normal=(-0.917024 -0.390597 0.024299)} Vertex 13272 -2.38874 15.4502 1.36286 {normal=(-0.842439 -0.531070 -0.065018)} Vertex 13273 -2.33529 15.4052 1.04005 {normal=(-0.798967 -0.598670 -0.036439)} Vertex 13274 -2.139 15.1542 1.14037 {normal=(-0.745699 -0.658490 -0.090483)} Vertex 13275 -2.1152 15.1544 0.849041 {normal=(-0.747384 -0.662614 -0.005894)} Vertex 13276 -1.9276 14.9533 0.944543 {normal=(-0.706149 -0.701949 0.026511)} Vertex 13277 -1.95789 14.9244 0.655079 {normal=(-0.793515 -0.524858 0.269727)} Vertex 13278 -1.75208 14.5924 0.723403 {normal=(-0.735857 -0.421032 0.488104)} Vertex 13279 -2.034 14.7347 0.337778 {normal=(-0.859797 -0.276836 0.415181)} Vertex 13280 -2.15582 15.0855 0.314548 {normal=(-0.906882 -0.334222 0.221470)} Vertex 13281 -2.12716 15.1456 0.593457 {normal=(-0.812193 -0.563602 0.112289)} Vertex 13282 -2.26606 15.3374 0.52941 {normal=(-0.785694 -0.610570 -0.055125)} Vertex 13283 -2.28692 15.3544 0.760692 {normal=(-0.771111 -0.635997 -0.016323)} Vertex 13284 -2.46711 15.5871 0.726599 {normal=(-0.817483 -0.573554 0.017749)} Vertex 13285 -2.51365 15.6693 0.996099 {normal=(-0.868438 -0.488102 0.030963)} Vertex 13286 -2.632 15.9369 1.0223 {normal=(-0.918349 -0.365762 0.132974)} Vertex 13287 -2.6142 15.9831 1.29429 {normal=(-0.960599 -0.249559 0.106547)} Vertex 13288 -2.65418 16.215 1.33537 {normal=(-0.955297 -0.171884 0.222618)} Vertex 13289 -2.60577 16.2323 1.56529 {normal=(-0.966004 -0.032545 0.246841)} Vertex 13290 -2.53179 16.258 1.79875 {normal=(-0.944062 0.015071 0.327600)} Vertex 13291 -2.57659 16.4792 1.64187 {normal=(-0.943679 0.015393 0.328962)} Vertex 13292 -2.49769 16.5225 1.85876 {normal=(-0.940959 0.037229 0.336394)} Vertex 13293 -2.43319 16.5084 2.04291 {normal=(-0.964656 0.018529 0.249116)} Vertex 13294 -2.46462 16.7548 1.93004 {normal=(-0.953934 -0.009341 0.293818)} Vertex 13295 -2.41883 16.7306 2.12516 {normal=(-0.987815 -0.031261 0.094834)} Vertex 13296 -2.43184 16.9309 2.22227 {normal=(-0.990239 -0.107341 -0.021357)} Vertex 13297 -2.45429 16.8644 2.44614 {normal=(-0.984167 -0.090343 -0.143467)} Vertex 13298 -2.49012 17.0578 2.51955 {normal=(-0.982213 -0.112955 -0.142459)} Vertex 13299 -2.45033 16.2418 2.01684 {normal=(-0.946406 0.005738 0.317492)} Vertex 13300 -2.81521 18.1098 2.61646 {normal=(-0.924010 -0.289345 0.198690)} Vertex 13301 -2.70286 17.8394 2.29004 {normal=(-0.882302 -0.467057 0.052590)} Vertex 13302 -2.59999 17.6213 2.25186 {normal=(-0.918882 -0.391077 0.039481)} Vertex 13303 -2.57553 17.5355 1.99291 {normal=(-0.925421 -0.368297 0.075692)} Vertex 13304 -2.51713 17.3611 1.9688 {normal=(-0.960892 -0.243773 0.105732)} Vertex 13305 -2.54485 17.3282 1.78533 {normal=(-0.946176 -0.168101 0.260797)} Vertex 13306 -2.54849 17.1169 1.71925 {normal=(-0.944891 -0.054042 0.319272)} Vertex 13307 -2.63166 17.0543 1.50188 {normal=(-0.920357 -0.042853 0.387956)} Vertex 13308 -2.67522 16.8134 1.38897 {normal=(-0.923167 -0.012271 0.384096)} Vertex 13309 -2.76943 16.7666 1.16012 {normal=(-0.929427 -0.051072 0.363762)} Vertex 13310 -2.80527 16.5824 1.01917 {normal=(-0.948215 -0.106068 0.293489)} Vertex 13311 -2.54129 17.4709 2.42282 {normal=(-0.958493 -0.278911 -0.022348)} Vertex 13312 -2.51864 17.3982 2.17516 {normal=(-0.954702 -0.291512 0.033416)} Vertex 13313 -2.47736 17.2227 2.1116 {normal=(-0.981821 -0.166389 0.066312)} Vertex 13314 -2.49488 17.1722 1.92209 {normal=(-0.972799 -0.105014 0.191937)} Vertex 13315 -2.50463 16.9446 1.83267 {normal=(-0.953290 -0.048792 0.293533)} Vertex 13316 -2.57888 16.8772 1.61872 {normal=(-0.931562 -0.013307 0.362269)} Vertex 13317 -2.62565 16.6355 1.50903 {normal=(-0.927332 -0.003407 0.373718)} Vertex 13318 -2.72192 16.5831 1.27125 {normal=(-0.937435 -0.036364 0.343106)} Vertex 13319 -2.73318 16.3712 1.18912 {normal=(-0.938004 -0.172819 0.290361)} Vertex 13320 -2.79914 16.364 0.911938 {normal=(-0.950624 -0.226196 0.201027)} Vertex 13321 -2.72736 16.0969 0.854136 {normal=(-0.920363 -0.354745 0.149236)} Vertex 13322 -2.73347 16.0462 0.552067 {normal=(-0.913725 -0.398501 0.001141)} Vertex 13323 -2.57481 15.7437 0.503628 {normal=(-0.845847 -0.524796 -0.047336)} Vertex 13324 -2.53613 15.7507 0.225572 {normal=(-0.764692 -0.560048 -0.281920)} Vertex 13325 -2.36213 15.5366 0.270787 {normal=(-0.738567 -0.612870 -0.263870)} Vertex 13326 -2.34166 15.5909 0.008906 {normal=(-0.889217 -0.363687 -0.100075)} Vertex 13327 -2.25772 15.2548 0.0257278 {normal=(-0.955682 -0.201800 0.188242)} Vertex 13328 -2.3379 15.0098 -0.346048 {normal=(-0.963716 -0.077061 0.237648)} Vertex 13329 -2.19764 14.8488 0.013308 {normal=(-0.940296 -0.158404 0.296445)} Vertex 13330 -2.24661 15.3373 0.310575 {normal=(-0.881819 -0.429359 -0.029438)} Vertex 13331 -2.40757 15.5083 0.486601 {normal=(-0.757723 -0.633271 -0.110924)} Vertex 13332 -2.62146 15.837 0.767326 {normal=(-0.876627 -0.468070 0.084818)} Vertex 13333 -2.69795 16.1727 1.10916 {normal=(-0.922233 -0.304767 0.233581)} Vertex 13334 -2.65887 16.4112 1.41276 {normal=(-0.934892 -0.089179 0.336630)} Vertex 13335 -2.53594 16.7153 1.73368 {normal=(-0.937978 0.009042 0.346003)} Vertex 13336 -2.45204 16.9681 2.02477 {normal=(-0.973085 -0.107200 0.183496)} Vertex 13337 -2.46386 17.1415 2.15859 {normal=(-0.986884 -0.141303 0.035596)} Vertex 13338 -2.4649 17.111 2.33579 {normal=(-0.983412 -0.139522 -0.099855)} Vertex 13339 -2.51152 17.2925 2.48898 {normal=(-0.984202 -0.141716 -0.101224)} Vertex 13340 -2.48622 17.2801 2.29212 {normal=(-0.982191 -0.171690 -0.053214)} Vertex 13341 -0.130615 19.633 3.95872 {normal=(-0.225833 0.173053 0.926010)} Vertex 13342 0 19.4528 4.07951 {normal=(-0.013868 0.538378 0.815646)} Vertex 13343 -0.106369 19.2738 4.2155 {normal=(-0.278428 0.614985 0.725055)} Vertex 13344 -0.202298 19.4144 4.03379 {normal=(-0.478279 0.456105 0.726894)} Vertex 13345 0 19.1351 4.34776 {normal=(0.000000 0.606887 0.782192)} Vertex 13346 -0.118347 18.9915 4.43412 {normal=(-0.268075 0.573697 0.760008)} Vertex 13347 -0.21382 19.1035 4.29341 {normal=(-0.523503 0.530476 0.652288)} Vertex 13348 0 18.8701 4.53969 {normal=(0.000000 0.585980 0.802469)} Vertex 13349 -0.138425 18.7564 4.60399 {normal=(-0.254743 0.591150 0.747202)} Vertex 13350 -0.243778 18.8463 4.47397 {normal=(-0.568236 0.495735 0.627537)} Vertex 13351 -0.302558 19.5397 3.89489 {normal=(-0.597339 0.019877 0.750222)} Vertex 13352 -0.285495 19.2215 4.11743 {normal=(-0.701140 0.465469 0.527691)} Vertex 13353 -0.342897 19.3324 3.91708 {normal=(-0.821840 0.296483 0.465096)} Vertex 13354 -0.319928 18.9362 4.30925 {normal=(-0.756663 0.391187 0.506699)} Vertex 13355 -0.381511 19.0316 4.11601 {normal=(-0.846472 0.337415 0.401934)} Vertex 13356 -0.347286 18.6831 4.45134 {normal=(-0.825857 0.381242 0.392981)} Vertex 13357 -0.408477 18.7387 4.25699 {normal=(-0.903397 0.235969 0.351285)} Vertex 13358 -0.42136 19.4004 3.71681 {normal=(-0.834723 -0.011878 0.494781)} Vertex 13359 -0.441777 19.1147 3.89214 {normal=(-0.865225 0.335936 0.370318)} Vertex 13360 -0.512336 19.1835 3.6553 {normal=(-0.827295 0.357849 0.422193)} Vertex 13361 -0.470411 18.8162 4.03647 {normal=(-0.913334 0.191373 0.355378)} Vertex 13362 -0.549885 18.8944 3.82096 {normal=(-0.815549 0.275740 0.492033)} Vertex 13363 -0.487149 18.541 4.13999 {normal=(-0.903895 0.323967 0.248906)} Vertex 13364 -0.532291 18.5947 3.94677 {normal=(-0.885991 0.190995 0.402976)} Vertex 13365 -0.571521 19.2397 3.49556 {normal=(-0.753233 0.182508 0.579400)} Vertex 13366 -0.652124 18.9768 3.62359 {normal=(-0.645153 0.444901 0.597022)} Vertex 13367 -0.747407 19.0331 3.49669 {normal=(-0.339832 0.512858 0.750412)} Vertex 13368 -0.630455 19.1589 3.4471 {normal=(-0.602243 0.461179 0.606652)} Vertex 13369 -0.684065 18.6974 3.74905 {normal=(-0.582516 0.302453 0.743342)} Vertex 13370 -0.843027 18.7836 3.6099 {normal=(-0.340860 0.365539 0.843753)} Vertex 13371 -0.593484 18.5698 3.86474 {normal=(-0.657052 0.213876 0.710855)} Vertex 13372 -0.71867 18.4354 3.81379 {normal=(-0.493062 0.187490 0.844869)} Vertex 13373 -0.856568 18.5228 3.71533 {normal=(-0.372198 0.304119 0.869151)} Vertex 13374 0 19.9153 3.99358 {normal=(0.026813 -0.108566 0.991837)} Vertex 13375 -0.0983095 19.8864 3.98774 {normal=(-0.077514 -0.119938 0.985053)} Vertex 13376 -0.303955 19.8483 3.9497 {normal=(-0.064887 -0.183336 0.967811)} Vertex 13377 -0.493944 19.7927 3.92141 {normal=(0.077095 -0.577908 0.742368)} Vertex 13378 -0.371069 19.76 3.92121 {normal=(-0.159184 -0.298190 0.905835)} Vertex 13379 -0.43601 19.6145 3.81791 {normal=(-0.504933 -0.434911 0.693638)} Vertex 13380 -0.524256 19.4119 3.55892 {normal=(-0.644888 -0.285357 0.663305)} Vertex 13381 -0.572944 19.6119 3.70254 {normal=(-0.382364 -0.685970 0.597755)} Vertex 13382 -0.619016 19.2255 3.43355 {normal=(-0.457033 -0.129286 0.830634)} Vertex 13383 -0.637193 19.2705 3.44236 {normal=(0.009575 -0.198965 0.916473)} Vertex 13384 -0.628386 19.3251 3.45276 {normal=(-0.325680 -0.211910 0.909596)} Vertex 13385 -0.625474 19.4194 3.49701 {normal=(-0.408543 -0.458257 0.772527)} Vertex 13386 -0.652985 19.2131 3.42981 {normal=(0.453263 -0.282818 0.839244)} Vertex 13387 -0.759312 19.1857 3.46643 {normal=(0.411429 -0.287877 0.855142)} Vertex 13388 -0.692008 19.2612 3.46749 {normal=(0.305433 -0.102721 0.921751)} Vertex 13389 -0.700072 19.3345 3.46515 {normal=(0.446684 0.105800 0.873645)} Vertex 13390 -0.65291 19.3056 3.44871 {normal=(0.422827 -0.041756 0.890639)} Vertex 13391 -1.03647 18.8713 3.54634 {normal=(-0.054630 0.311883 0.941253)} Vertex 13392 -0.982042 19.0045 3.5013 {normal=(0.002301 0.338429 0.929987)} Vertex 13393 -0.154157 18.5906 4.73542 {normal=(-0.237070 0.623020 0.727699)} Vertex 13394 0 18.5189 4.81005 {normal=(0.000000 0.567349 0.815786)} Vertex 13395 -0.16657 18.4271 4.84758 {normal=(-0.238429 0.348702 0.878629)} Vertex 13396 -0.302702 18.4908 4.74114 {normal=(-0.571478 0.495459 0.608083)} Vertex 13397 -0.383788 18.5208 4.56279 {normal=(-0.806917 0.469706 0.340466)} Vertex 13398 -0.416252 18.3676 4.65784 {normal=(-0.831874 0.236975 0.469026)} Vertex 13399 -0.473709 18.4006 4.46946 {normal=(-0.873038 0.393326 0.279216)} Vertex 13400 -0.515007 18.4222 4.27492 {normal=(-0.812984 0.534327 0.217951)} Vertex 13401 -0.530477 18.3091 4.40568 {normal=(-0.877568 0.276372 0.362498)} Vertex 13402 -0.578084 18.3465 4.24831 {normal=(-0.710475 0.597736 0.338798)} Vertex 13403 -0.627328 18.3681 4.10532 {normal=(-0.561419 0.781570 0.260241)} Vertex 13404 -0.656354 18.2612 4.2559 {normal=(-0.665128 0.522167 0.516181)} Vertex 13405 -0.715457 18.2883 4.12922 {normal=(-0.682489 0.651790 0.297558)} Vertex 13406 -0.715009 18.316 4.02633 {normal=(-0.723884 0.671255 -0.019546)} Vertex 13407 -0.804435 18.1664 4.12278 {normal=(-0.854197 0.384840 0.285067)} Vertex 13408 -0.800952 18.1905 4.01767 {normal=(-0.864532 0.452888 -0.126134)} Vertex 13409 -0.706098 18.2978 3.84105 {normal=(-0.543787 0.147082 0.818227)} Vertex 13410 -0.8451 18.2666 3.77756 {normal=(-0.321131 0.111586 0.935335)} Vertex 13411 -0.810299 18.0793 3.91875 {normal=(-0.892072 0.317288 -0.291072)} Vertex 13412 -0.749665 18.2333 3.94112 {normal=(-0.768917 0.483341 -0.404883)} Vertex 13413 -0.852782 18.0272 3.99273 {normal=(-0.960526 0.141176 -0.121294)} Vertex 13414 -0.916301 18.0168 3.79495 {normal=(-0.497034 0.421099 0.748799)} Vertex 13415 -0.841272 18.0252 3.84683 {normal=(-0.699340 0.503876 0.470815)} Vertex 13416 -0.924204 17.9353 3.84813 {normal=(-0.589700 0.427870 0.679311)} Vertex 13417 -0.847953 17.8198 3.96971 {normal=(-0.726689 0.152865 0.657809)} Vertex 13418 -0.810524 17.7882 4.01954 {normal=(-0.747589 0.037030 0.648308)} Vertex 13419 -0.826296 17.7363 4.02159 {normal=(-0.649303 0.235761 0.712959)} Vertex 13420 -0.774593 17.8207 4.10915 {normal=(-0.572517 -0.582034 0.522010)} Vertex 13421 -0.801284 17.8116 4.04827 {normal=(-0.784904 -0.320748 0.475132)} Vertex 13422 -0.834396 17.9083 4.0584 {normal=(-0.918164 -0.258136 0.289985)} Vertex 13423 -0.800828 17.9158 4.14713 {normal=(-0.844365 -0.274271 0.443421)} Vertex 13424 -0.79155 18.0358 4.1956 {normal=(-0.839852 0.001844 0.529498)} Vertex 13425 -0.705896 18.021 4.31027 {normal=(-0.718371 -0.004186 0.679348)} Vertex 13426 -0.742208 17.921 4.24348 {normal=(-0.676641 -0.383918 0.592147)} Vertex 13427 -0.632011 18.1231 4.35484 {normal=(-0.664869 0.208815 0.715612)} Vertex 13428 -0.522166 18.0742 4.45862 {normal=(-0.735685 0.020206 0.658691)} Vertex 13429 -0.581583 17.9908 4.4132 {normal=(-0.555257 -0.310010 0.711845)} Vertex 13430 -0.510353 18.1614 4.47075 {normal=(-0.878180 -0.030068 0.464257)} Vertex 13431 -0.462395 18.085 4.54889 {normal=(-0.854668 -0.166871 0.476776)} Vertex 13432 -0.410362 18.1812 4.67709 {normal=(-0.826530 -0.088013 0.543011)} Vertex 13433 -0.296274 18.0944 4.80199 {normal=(-0.569255 -0.228960 0.751127)} Vertex 13434 -0.382829 18.0096 4.65018 {normal=(-0.678512 -0.514430 0.472675)} Vertex 13435 -0.163354 18.2128 4.87284 {normal=(-0.251828 -0.028304 0.951918)} Vertex 13436 0 18.1027 4.88241 {normal=(0.000000 -0.196949 0.965589)} Vertex 13437 -0.144251 17.9846 4.82203 {normal=(-0.228739 -0.501046 0.801306)} Vertex 13438 0 17.8613 4.72668 {normal=(0.000000 -0.699111 0.706451)} Vertex 13439 -0.0943477 17.7449 4.58391 {normal=(-0.248154 -0.709368 0.641672)} Vertex 13440 -0.210896 17.8663 4.67153 {normal=(-0.482155 -0.686140 0.508566)} Vertex 13441 -0.264228 17.8706 4.51387 {normal=(-0.822483 -0.547518 0.024269)} Vertex 13442 -0.23888 17.8356 4.3913 {normal=(-0.949668 -0.276075 0.022205)} Vertex 13443 -0.270094 17.9011 4.33923 {normal=(-0.821103 -0.536801 0.073558)} Vertex 13444 -0.301146 17.928 4.43803 {normal=(-0.621572 -0.757429 -0.051981)} Vertex 13445 0 17.6279 4.48641 {normal=(0.000000 -0.629412 0.762255)} Vertex 13446 -0.091416 17.5324 4.40295 {normal=(-0.225049 -0.400903 0.863618)} Vertex 13447 -0.162869 17.6686 4.45227 {normal=(-0.604772 -0.474284 0.581402)} Vertex 13448 -0.254071 17.8266 4.29177 {normal=(-0.902136 -0.092871 0.371637)} Vertex 13449 -0.232631 17.773 4.36289 {normal=(-0.933656 -0.136456 0.252807)} Vertex 13450 -0.339527 17.7895 4.19941 {normal=(-0.509156 0.271707 0.800651)} Vertex 13451 -0.243183 17.6933 4.31734 {normal=(-0.752024 0.030302 0.606643)} Vertex 13452 -0.321503 17.6164 4.27653 {normal=(-0.464251 0.204841 0.843294)} Vertex 13453 -0.442805 17.7487 4.17368 {normal=(-0.335559 0.359169 0.869743)} Vertex 13454 -0.552935 17.8149 4.10912 {normal=(-0.202146 0.243591 0.937106)} Vertex 13455 -0.614159 17.7058 4.13188 {normal=(-0.298779 0.280652 0.909052)} Vertex 13456 -0.69849 17.7851 4.09385 {normal=(-0.123796 -0.178578 0.871654)} Vertex 13457 0 17.4066 4.36461 {normal=(0.000000 -0.246335 0.964790)} Vertex 13458 -0.0887898 17.3079 4.34614 {normal=(-0.045609 -0.132906 0.988136)} Vertex 13459 -0.201062 17.4469 4.34721 {normal=(-0.276836 -0.078705 0.943753)} Vertex 13460 0 17.1894 4.3318 {normal=(0.000000 -0.466431 0.777887)} Vertex 13461 -0.142173 17.197 4.32691 {normal=(-0.102437 -0.339035 0.870302)} Vertex 13462 -0.334145 17.3465 4.31041 {normal=(-0.253023 -0.012443 0.961147)} Vertex 13463 -0.493375 17.5371 4.22959 {normal=(-0.336123 0.226324 0.911990)} Vertex 13464 -0.277237 17.1207 4.28528 {normal=(-0.178754 -0.352334 0.907421)} Vertex 13465 -0.515484 17.2571 4.25642 {normal=(-0.303764 -0.099134 0.941328)} Vertex 13466 -0.253879 17.0429 4.20436 {normal=(-0.177643 -0.891105 0.380075)} Vertex 13467 0 16.9818 4.08607 {normal=(0.000000 -0.966349 0.228593)} Vertex 13468 -0.192709 16.9692 3.92377 {normal=(-0.201520 -0.907279 0.332354)} Vertex 13469 -0.435878 17.0429 4.00721 {normal=(-0.220212 -0.953695 0.204272)} Vertex 13470 -0.176234 16.0679 3.8514 {normal=(-0.130331 0.815824 0.542608)} Vertex 13471 0 16.0089 3.99933 {normal=(0.000000 0.892642 0.446009)} Vertex 13472 -0.210659 15.9433 4.09872 {normal=(-0.131553 0.797551 0.568056)} Vertex 13473 -0.384863 16.003 3.91658 {normal=(-0.177189 0.883526 0.432593)} Vertex 13474 -0.222939 15.8461 4.16344 {normal=(-0.195916 0.169978 0.951797)} Vertex 13475 0 15.739 4.19286 {normal=(0.000000 -0.085710 0.982267)} Vertex 13476 -0.228722 15.5868 4.13207 {normal=(-0.157032 -0.363015 0.900064)} Vertex 13477 -0.451216 15.7079 4.09795 {normal=(-0.312161 -0.103586 0.937314)} Vertex 13478 -0.694285 17.4312 4.17975 {normal=(-0.371380 0.138497 0.912845)} Vertex 13479 -0.804762 17.6017 4.08885 {normal=(-0.468294 0.273100 0.835061)} Vertex 13480 -0.758545 17.7265 4.0724 {normal=(-0.513740 0.110908 0.815723)} Vertex 13481 -0.730175 17.1985 4.16505 {normal=(-0.414239 -0.286315 0.848479)} Vertex 13482 -0.867257 17.3285 4.11305 {normal=(-0.503002 -0.013051 0.853179)} Vertex 13483 -0.701883 17.1191 4.08502 {normal=(-0.279970 -0.877523 0.350973)} Vertex 13484 -0.554759 17.0271 3.79132 {normal=(-0.266785 -0.889372 0.332015)} Vertex 13485 -0.822168 17.0972 3.83698 {normal=(-0.249808 -0.947041 0.199765)} Vertex 13486 -0.524746 16.0604 3.7292 {normal=(-0.269937 0.794196 0.522098)} Vertex 13487 -0.623941 15.9205 3.96971 {normal=(-0.282564 0.777390 0.540145)} Vertex 13488 -0.775964 15.9736 3.75332 {normal=(-0.302897 0.868052 0.391301)} Vertex 13489 -0.652421 15.8126 4.02429 {normal=(-0.398422 0.092244 0.897915)} Vertex 13490 -0.651782 15.5207 3.97927 {normal=(-0.355753 -0.358324 0.848165)} Vertex 13491 -0.860755 15.6347 3.8953 {normal=(-0.504103 -0.194973 0.836130)} Vertex 13492 -0.912393 17.6359 3.99691 {normal=(-0.624958 0.312145 0.714950)} Vertex 13493 -0.901811 17.4727 4.07808 {normal=(-0.601662 0.212591 0.761571)} Vertex 13494 -0.976609 17.347 4.03099 {normal=(-0.669645 0.033763 0.731735)} Vertex 13495 -1.10424 17.1745 3.80593 {normal=(-0.408334 -0.839622 0.320437)} Vertex 13496 -0.981307 17.0894 3.58714 {normal=(-0.320674 -0.860914 0.356728)} Vertex 13497 -1.25735 17.1601 3.53035 {normal=(-0.343970 -0.899169 0.265921)} Vertex 13498 -0.943635 16.0107 3.50729 {normal=(-0.387415 0.771268 0.480829)} Vertex 13499 -1.0731 15.8686 3.72666 {normal=(-0.426971 0.740728 0.490219)} Vertex 13500 -1.24008 15.9136 3.45687 {normal=(-0.385023 0.819565 0.419203)} Vertex 13501 -1.09353 15.7541 3.76832 {normal=(-0.580350 -0.056912 0.792360)} Vertex 13502 -1.0175 15.4375 3.71739 {normal=(-0.588447 -0.386068 0.696562)} Vertex 13503 -1.28378 15.569 3.54535 {normal=(-0.645716 -0.311966 0.694718)} Vertex 13504 -1.27305 17.7424 3.64581 {normal=(-0.548093 0.121083 0.814310)} Vertex 13505 -1.1428 17.7047 3.77063 {normal=(-0.626696 0.264736 0.732129)} Vertex 13506 -1.36803 17.5433 3.62374 {normal=(-0.657268 0.108842 0.739690)} Vertex 13507 -1.29046 17.388 3.71439 {normal=(-0.707619 0.006067 0.702244)} Vertex 13508 -1.49312 17.309 3.49336 {normal=(-0.670811 -0.259957 0.677502)} Vertex 13509 -1.58132 17.4089 3.42758 {normal=(-0.472889 -0.297595 0.776220)} Vertex 13510 -1.47711 17.2223 3.42855 {normal=(-0.430695 -0.797827 0.401190)} Vertex 13511 -1.40305 17.1408 3.29775 {normal=(-0.415385 -0.794444 0.414066)} Vertex 13512 -1.57962 17.1812 3.22822 {normal=(-0.192192 -0.851541 0.456553)} Vertex 13513 -1.37919 15.9828 3.23423 {normal=(-0.395724 0.638968 0.642044)} Vertex 13514 -1.50798 15.8208 3.3575 {normal=(-0.539591 0.611198 0.556543)} Vertex 13515 -1.60864 15.9338 3.14895 {normal=(-0.392026 0.589906 0.696243)} Vertex 13516 -1.53705 15.7082 3.36507 {normal=(-0.706308 -0.137569 0.675374)} Vertex 13517 -1.74043 15.6259 3.09911 {normal=(-0.702652 -0.285080 0.646874)} Vertex 13518 -1.06831 18.6037 3.62256 {normal=(-0.179341 0.295667 0.933632)} Vertex 13519 -1.34467 18.7038 3.58012 {normal=(-0.041455 0.160636 0.984534)} Vertex 13520 -1.02012 18.3249 3.72861 {normal=(-0.215654 0.194961 0.952063)} Vertex 13521 -1.27874 18.3874 3.65817 {normal=(-0.161743 0.234020 0.956653)} Vertex 13522 -1.65817 18.7889 3.5614 {normal=(-0.050033 0.091539 0.993484)} Vertex 13523 -1.60328 18.4743 3.59761 {normal=(-0.109281 0.143032 0.981998)} Vertex 13524 -1.8979 18.6083 3.55479 {normal=(-0.192961 0.084100 0.973205)} Vertex 13525 -1.46456 18.1311 3.6637 {normal=(-0.177755 -0.012489 0.976673)} Vertex 13526 -1.80787 18.2206 3.60048 {normal=(-0.200649 0.038795 0.976023)} Vertex 13527 -2.0976 18.378 3.51506 {normal=(-0.370989 0.081247 0.918451)} Vertex 13528 -2.19125 18.6236 3.43063 {normal=(-0.559529 0.184982 0.802152)} Vertex 13529 -2.00763 18.7551 3.52266 {normal=(-0.410664 0.158378 0.882944)} Vertex 13530 -2.24474 18.1136 3.46334 {normal=(-0.475395 -0.001682 0.867868)} Vertex 13531 -1.95445 17.9445 3.55396 {normal=(-0.231336 -0.156159 0.952582)} Vertex 13532 -0.94363 18.0891 3.76785 {normal=(-0.265585 0.087166 0.955889)} Vertex 13533 -1.15644 18.0948 3.72261 {normal=(-0.195523 -0.035559 0.975926)} Vertex 13534 -1.31519 17.834 3.63956 {normal=(-0.244317 -0.207557 0.942697)} Vertex 13535 -1.6288 17.8293 3.57865 {normal=(-0.161485 -0.265859 0.947630)} Vertex 13536 -1.821 17.5232 3.43106 {normal=(-0.144779 -0.420978 0.893740)} Vertex 13537 -2.07435 17.6506 3.43829 {normal=(-0.288058 -0.354269 0.882239)} Vertex 13538 -2.29983 17.8484 3.407 {normal=(-0.538547 -0.213357 0.800349)} Vertex 13539 -2.1603 17.4142 3.28643 {normal=(-0.382654 -0.428864 0.814554)} Vertex 13540 -2.33581 17.6122 3.27894 {normal=(-0.581573 -0.334737 0.735155)} Vertex 13541 -1.58804 17.141 3.13029 {normal=(-0.077819 -0.655186 0.709524)} Vertex 13542 -1.7469 17.083 3.13312 {normal=(0.185018 -0.541002 0.815989)} Vertex 13543 -1.757 17.1854 3.21503 {normal=(0.033222 -0.679687 0.713481)} Vertex 13544 -1.70021 16.9149 3.03396 {normal=(0.061948 -0.356102 0.918239)} Vertex 13545 -1.88081 16.6882 2.99362 {normal=(0.212255 -0.239009 0.942333)} Vertex 13546 -1.96078 16.9183 3.09451 {normal=(0.144829 -0.389184 0.904816)} Vertex 13547 -1.78144 16.4314 2.9353 {normal=(0.042774 -0.015586 0.983471)} Vertex 13548 -1.81559 16.1825 2.96228 {normal=(0.008068 0.216153 0.958341)} Vertex 13549 -1.96781 16.4165 2.97399 {normal=(0.083005 -0.091801 0.983106)} Vertex 13550 -1.66899 16.0797 3.01872 {normal=(-0.289976 0.410318 0.850716)} Vertex 13551 -1.79607 15.9621 3.04513 {normal=(-0.330647 0.372064 0.848665)} Vertex 13552 -1.70074 17.3685 3.36296 {normal=(-0.135539 -0.539529 0.810517)} Vertex 13553 -1.75988 17.263 3.28006 {normal=(-0.048283 -0.592626 0.790516)} Vertex 13554 -2.10076 17.125 3.16189 {normal=(-0.272662 -0.366503 0.887815)} Vertex 13555 -2.06212 16.9397 3.10815 {normal=(-0.167729 -0.321091 0.928627)} Vertex 13556 -2.18894 16.9365 3.07455 {normal=(-0.250767 -0.280778 0.926078)} Vertex 13557 -2.26585 16.6796 2.9804 {normal=(-0.415126 -0.272167 0.852515)} Vertex 13558 -2.0905 16.4112 2.96065 {normal=(-0.261994 -0.241127 0.931303)} Vertex 13559 -2.15735 16.167 2.86118 {normal=(-0.490788 -0.273702 0.815892)} Vertex 13560 -2.23482 17.2573 3.17096 {normal=(-0.366407 -0.359576 0.855276)} Vertex 13561 -1.99344 17.2867 3.27656 {normal=(-0.210256 -0.468989 0.854123)} Vertex 13562 0 15.4476 4.06176 {normal=(0.000000 -0.572376 0.815015)} Vertex 13563 -0.195168 15.3327 3.95394 {normal=(-0.099560 -0.502087 0.846960)} Vertex 13564 -0.420502 15.4345 3.99513 {normal=(-0.192352 -0.562640 0.800631)} Vertex 13565 -0.587452 15.3386 3.87639 {normal=(-0.240425 -0.475335 0.832225)} Vertex 13566 -0.797981 15.3863 3.83824 {normal=(-0.382670 -0.538788 0.744034)} Vertex 13567 -0.960063 15.3374 3.69344 {normal=(-0.538232 -0.405899 0.713466)} Vertex 13568 -0.190827 15.2228 3.93042 {normal=(-0.090219 0.201331 0.964343)} Vertex 13569 0 15.1189 3.98341 {normal=(0.000000 0.354176 0.932662)} Vertex 13570 -0.173767 14.9915 4.01414 {normal=(-0.140354 0.238856 0.956152)} Vertex 13571 -0.367988 15.1269 3.93496 {normal=(-0.204688 0.241581 0.946494)} Vertex 13572 0 14.8484 4.05258 {normal=(0.000000 0.070643 0.990925)} Vertex 13573 -0.160841 14.6713 4.04065 {normal=(-0.058432 -0.123741 0.981542)} Vertex 13574 -0.332859 14.8129 4.01122 {normal=(-0.254705 0.077146 0.957381)} Vertex 13575 0 14.5109 3.99362 {normal=(0.000002 -0.365070 0.920614)} Vertex 13576 -0.146877 14.3188 3.89148 {normal=(0.056395 -0.594193 0.790395)} Vertex 13577 -0.271343 14.4674 3.98485 {normal=(-0.118860 -0.376000 0.901567)} Vertex 13578 -0.577815 15.235 3.86197 {normal=(-0.279292 0.084914 0.950803)} Vertex 13579 -0.524462 14.9564 3.92573 {normal=(-0.339056 0.124573 0.929124)} Vertex 13580 -0.745661 15.1003 3.8193 {normal=(-0.429252 0.081555 0.895115)} Vertex 13581 -0.438985 14.5956 3.97038 {normal=(-0.367312 -0.182497 0.900424)} Vertex 13582 -0.632331 14.7295 3.88868 {normal=(-0.462379 -0.070592 0.878850)} Vertex 13583 -0.283603 14.2828 3.87001 {normal=(-0.104918 -0.614082 0.765914)} Vertex 13584 -0.442512 14.3786 3.88173 {normal=(-0.335653 -0.456012 0.814443)} Vertex 13585 -0.959987 15.2529 3.68493 {normal=(-0.564298 -0.070913 0.808610)} Vertex 13586 -0.857967 14.8783 3.76206 {normal=(-0.586134 -0.061836 0.798093)} Vertex 13587 -1.09227 15.0416 3.55511 {normal=(-0.728942 -0.147791 0.654615)} Vertex 13588 -0.645391 14.4745 3.82673 {normal=(-0.490507 -0.338716 0.789915)} Vertex 13589 -0.859555 14.5849 3.69509 {normal=(-0.681222 -0.325350 0.634043)} Vertex 13590 -0.352026 14.2167 3.79711 {normal=(-0.178332 -0.678703 0.696827)} Vertex 13591 -0.533281 14.2604 3.75719 {normal=(-0.410569 -0.644089 0.623233)} Vertex 13592 -1.06701 14.6852 3.45309 {normal=(-0.794328 -0.331734 0.497907)} Vertex 13593 -1.2705 14.7219 3.11023 {normal=(-0.811569 -0.343846 0.470104)} Vertex 13594 -0.714444 14.3139 3.63402 {normal=(-0.604144 -0.634019 0.462477)} Vertex 13595 -0.900736 14.3746 3.41603 {normal=(-0.693977 -0.575004 0.421977)} Vertex 13596 -0.351798 14.1426 3.70485 {normal=(-0.198578 -0.811264 0.531232)} Vertex 13597 -0.515339 14.1537 3.59891 {normal=(-0.416728 -0.813170 0.392036)} Vertex 13598 -1.09392 14.3985 3.13374 {normal=(-0.721297 -0.550923 0.402199)} Vertex 13599 -1.21934 14.366 2.82275 {normal=(-0.654694 -0.672246 0.289366)} Vertex 13600 -0.687109 14.1894 3.44299 {normal=(-0.529705 -0.767848 0.347909)} Vertex 13601 -0.836363 14.1978 3.21605 {normal=(-0.531844 -0.785129 0.294843)} Vertex 13602 -0.493817 14.1069 3.50432 {normal=(-0.385392 -0.873393 0.290978)} Vertex 13603 -0.914842 14.1711 2.93774 {normal=(-0.483654 -0.857417 0.144458)} Vertex 13604 -0.90155 14.152 2.64325 {normal=(-0.403177 -0.912352 -0.022668)} Vertex 13605 -0.597903 14.1014 3.31343 {normal=(-0.400969 -0.885896 0.231168)} Vertex 13606 -0.629243 14.0603 3.0798 {normal=(-0.404015 -0.898585 0.164739)} Vertex 13607 -0.412256 14.0579 3.44534 {normal=(-0.352652 -0.891338 0.276539)} Vertex 13608 -0.596257 14.0171 2.82568 {normal=(-0.345907 -0.933618 -0.009135)} Vertex 13609 -0.487135 14.0188 2.56846 {normal=(-0.207511 -0.956458 -0.188782)} Vertex 13610 -0.411945 13.995 3.22919 {normal=(-0.376362 -0.899708 0.214025)} Vertex 13611 -0.354171 13.9368 3.00412 {normal=(-0.269380 -0.955973 0.030538)} Vertex 13612 -0.259474 14.0615 3.58707 {normal=(-0.137250 -0.871568 0.447866)} Vertex 13613 -0.239175 13.9715 3.38356 {normal=(-0.222804 -0.912292 0.323782)} Vertex 13614 -0.226509 13.9374 2.77399 {normal=(-0.105532 -0.977771 -0.163981)} Vertex 13615 -0.0194183 13.9796 2.5529 {normal=(-0.001260 -0.968159 -0.246079)} Vertex 13616 -0.15213 13.9004 3.18972 {normal=(-0.150419 -0.968973 0.140520)} Vertex 13617 -0.00964525 13.8924 2.98482 {normal=(-0.001929 -0.991651 -0.078902)} Vertex 13618 -0.132404 14.035 3.54904 {normal=(-0.017835 -0.862576 0.497777)} Vertex 13619 0 13.9324 3.36233 {normal=(0.000151 -0.924096 0.361889)} Vertex 13620 -1.60881 19.0042 3.52109 {normal=(-0.157195 0.419971 0.882932)} Vertex 13621 -1.34294 18.987 3.5535 {normal=(0.040461 0.058520 0.980945)} Vertex 13622 -1.67052 18.8892 3.54918 {normal=(-0.105395 0.213896 0.961504)} Vertex 13623 -1.89527 18.9339 3.48331 {normal=(-0.284371 0.430950 0.849353)} Vertex 13624 -2.04002 19.0519 3.34367 {normal=(-0.380534 0.587496 0.706182)} Vertex 13625 -2.00907 18.8616 3.48782 {normal=(-0.416508 0.400008 0.807994)} Vertex 13626 -2.18736 18.8697 3.35485 {normal=(-0.592433 0.346139 0.719873)} Vertex 13627 -2.22057 19.0611 3.20397 {normal=(-0.590598 0.529957 0.591994)} Vertex 13628 -2.23994 19.2211 2.9949 {normal=(-0.598684 0.623560 0.487695)} Vertex 13629 -2.37793 19.1033 2.91619 {normal=(-0.739032 0.516786 0.428453)} Vertex 13630 -2.31875 19.285 2.77487 {normal=(-0.798925 0.428196 0.407664)} Vertex 13631 -2.29852 19.4173 2.71508 {normal=(-0.868688 0.298102 0.391497)} Vertex 13632 -2.28621 19.3629 2.77113 {normal=(-0.823967 0.276185 0.483120)} Vertex 13633 -2.39031 19.3191 2.60766 {normal=(-0.782011 0.342639 0.508402)} Vertex 13634 -2.34912 19.3862 2.62155 {normal=(-0.856283 0.285339 0.423461)} Vertex 13635 -2.0054 19.6558 3.0447 {normal=(-0.705543 0.146744 0.676421)} Vertex 13636 -2.13205 19.5949 2.89961 {normal=(-0.807305 0.337364 0.477992)} Vertex 13637 -2.01072 19.7283 2.99971 {normal=(-0.765987 0.322636 0.549724)} Vertex 13638 -1.86224 19.7859 3.1485 {normal=(-0.664409 0.318657 0.669219)} Vertex 13639 -1.84863 19.7009 3.17223 {normal=(-0.563248 -0.094946 0.813293)} Vertex 13640 -1.68805 19.8075 3.28402 {normal=(-0.538498 0.160092 0.811046)} Vertex 13641 -1.5172 19.7909 3.38184 {normal=(-0.426641 -0.119155 0.886030)} Vertex 13642 -1.34817 19.7946 3.44955 {normal=(-0.265856 0.089350 0.937863)} Vertex 13643 -1.50062 19.867 3.37385 {normal=(-0.371834 0.381493 0.836391)} Vertex 13644 -1.32816 19.8531 3.43239 {normal=(-0.147390 0.399093 0.897317)} Vertex 13645 -1.18897 19.7509 3.47996 {normal=(0.013803 0.271781 0.951943)} Vertex 13646 -1.05816 19.6371 3.49276 {normal=(-0.018798 -0.020815 0.973135)} Vertex 13647 -1.03705 19.6798 3.47807 {normal=(0.239110 0.328412 0.910774)} Vertex 13648 -0.9135 19.5574 3.48038 {normal=(0.273301 0.256397 0.919171)} Vertex 13649 -0.777172 19.4521 3.46267 {normal=(0.394562 0.315894 0.862229)} Vertex 13650 -0.806971 19.4275 3.48148 {normal=(0.093688 0.018795 0.963849)} Vertex 13651 -0.718072 19.7428 3.82908 {normal=(-0.195303 -0.836465 0.506260)} Vertex 13652 -0.716218 19.584 3.6105 {normal=(-0.285532 -0.744225 0.594376)} Vertex 13653 -0.873832 19.7177 3.73676 {normal=(-0.297289 -0.789321 0.528830)} Vertex 13654 -0.752216 19.4802 3.47604 {normal=(-0.431106 -0.562603 0.683968)} Vertex 13655 -0.875558 19.6193 3.55587 {normal=(-0.459701 -0.785870 0.386521)} Vertex 13656 -1.04053 19.8516 3.80833 {normal=(-0.440162 -0.737804 0.507867)} Vertex 13657 -1.02276 19.7416 3.65308 {normal=(-0.473182 -0.798218 0.354461)} Vertex 13658 -1.19666 19.8874 3.70825 {normal=(-0.517798 -0.735721 0.431431)} Vertex 13659 -1.02281 19.7062 3.50065 {normal=(-0.525343 -0.754670 0.347162)} Vertex 13660 -1.17276 19.814 3.55381 {normal=(-0.545856 -0.820904 0.163481)} Vertex 13661 -1.4108 20.0453 3.7021 {normal=(-0.544157 -0.660115 0.512797)} Vertex 13662 -1.3529 19.9431 3.57904 {normal=(-0.525210 -0.794484 0.292028)} Vertex 13663 -1.59763 20.0868 3.54677 {normal=(-0.516602 -0.670771 0.514907)} Vertex 13664 -1.32377 19.8976 3.44891 {normal=(-0.506642 -0.732509 0.391216)} Vertex 13665 -1.51962 19.9857 3.42607 {normal=(-0.380578 -0.835135 0.372985)} Vertex 13666 -1.88784 20.2517 3.43712 {normal=(-0.632208 -0.425703 0.637184)} Vertex 13667 -1.80297 20.0662 3.37269 {normal=(-0.424330 -0.639876 0.612576)} Vertex 13668 -2.0923 20.1888 3.22653 {normal=(-0.694472 -0.274390 0.646177)} Vertex 13669 -1.69614 19.9469 3.26164 {normal=(-0.334547 -0.639281 0.654666)} Vertex 13670 -1.95996 19.9563 3.17501 {normal=(-0.359454 -0.659580 0.647691)} Vertex 13671 -2.32025 20.3082 2.90756 {normal=(-0.878956 -0.101875 0.458990)} Vertex 13672 -2.20545 20.0013 3.02629 {normal=(-0.678665 -0.338403 0.618966)} Vertex 13673 -2.40541 20.0552 2.72484 {normal=(-0.868385 -0.049652 0.487503)} Vertex 13674 -2.04266 19.8036 2.98863 {normal=(-0.468551 -0.462366 0.731330)} Vertex 13675 -2.24387 19.7768 2.84716 {normal=(-0.566369 -0.420757 0.696691)} Vertex 13676 -2.5934 20.0485 2.34495 {normal=(-0.918510 0.043639 0.389557)} Vertex 13677 -2.45526 19.7481 2.61937 {normal=(-0.778844 -0.152989 0.585712)} Vertex 13678 -2.63923 19.7029 2.28772 {normal=(-0.902166 -0.009234 0.424439)} Vertex 13679 -2.28348 19.5728 2.70309 {normal=(-0.586917 -0.309726 0.742368)} Vertex 13680 -2.4483 19.5158 2.55036 {normal=(-0.673913 -0.252324 0.685931)} Vertex 13681 -2.76979 19.6809 1.95274 {normal=(-0.948091 0.062365 0.301676)} Vertex 13682 -2.58977 19.4767 2.35398 {normal=(-0.842734 -0.100619 0.516368)} Vertex 13683 -2.73134 19.4535 2.05871 {normal=(-0.912243 0.034642 0.400903)} Vertex 13684 -2.40465 19.4163 2.55425 {normal=(-0.635675 -0.030073 0.757217)} Vertex 13685 -2.49977 19.3599 2.46569 {normal=(-0.756987 0.109258 0.624142)} Vertex 13686 -2.85314 19.4509 1.75725 {normal=(-0.946950 0.136166 0.277420)} Vertex 13687 -2.78134 19.3099 1.99144 {normal=(-0.891110 0.222829 0.381899)} Vertex 13688 -2.54784 19.1195 2.57609 {normal=(-0.756376 0.471485 0.447685)} Vertex 13689 -2.68115 19.1819 2.29711 {normal=(-0.815200 0.350082 0.450523)} Vertex 13690 -2.4023 19.3659 2.56544 {normal=(-0.673758 0.269342 0.682321)} Vertex 13691 -2.90661 18.9685 1.98373 {normal=(-0.899028 0.314077 0.299960)} Vertex 13692 -2.92757 19.1747 1.70394 {normal=(-0.933406 0.262545 0.228598)} Vertex 13693 -2.45194 18.8431 3.07826 {normal=(-0.744703 0.382761 0.533174)} Vertex 13694 -2.69249 18.8195 2.66501 {normal=(-0.823979 0.389637 0.404033)} Vertex 13695 -2.508 18.0068 3.24123 {normal=(-0.762288 -0.094186 0.629557)} Vertex 13696 -2.49947 18.2522 3.24294 {normal=(-0.739148 0.090264 0.656500)} Vertex 13697 -2.51803 17.7883 3.15915 {normal=(-0.794816 -0.243970 0.542452)} Vertex 13698 -2.69899 18.0924 2.95441 {normal=(-0.888831 -0.109920 0.426044)} Vertex 13699 -2.48345 18.5477 3.18144 {normal=(-0.743201 0.220175 0.622643)} Vertex 13700 -2.72123 18.3051 2.89926 {normal=(-0.877526 0.087546 0.462747)} Vertex 13701 -2.72859 18.5493 2.7953 {normal=(-0.864959 0.227061 0.438841)} Vertex 13702 -2.87712 18.3076 2.51646 {normal=(-0.952407 -0.063334 0.262008)} Vertex 13703 -2.90967 18.5111 2.36268 {normal=(-0.945751 0.110776 0.283008)} Vertex 13704 -2.90342 18.7497 2.21348 {normal=(-0.911807 0.263124 0.303946)} Vertex 13705 -2.99371 18.4735 1.96426 {normal=(-0.977667 -0.132842 0.094959)} Vertex 13706 -3.02037 18.6999 1.83626 {normal=(-0.976072 0.072209 0.152896)} Vertex 13707 -3.01996 18.8931 1.66311 {normal=(-0.956943 0.227459 0.154650)} Vertex 13708 -2.99147 18.4788 1.64472 {normal=(-0.958500 -0.255171 -0.100837)} Vertex 13709 -3.03811 18.7395 1.57684 {normal=(-0.986906 -0.084735 -0.082481)} Vertex 13710 -2.35312 20.4973 2.89916 {normal=(-0.870076 -0.263047 0.403016)} Vertex 13711 -2.49584 20.3864 2.56212 {normal=(-0.907907 -0.076883 0.406850)} Vertex 13712 -2.72134 20.0193 1.99144 {normal=(-0.954499 0.070377 0.285669)} Vertex 13713 -2.62893 20.3698 2.23701 {normal=(-0.867989 -0.206794 0.405328)} Vertex 13714 -2.83882 19.7125 1.64875 {normal=(-0.971840 0.122018 0.199130)} Vertex 13715 -2.79824 20.0093 1.67871 {normal=(-0.821796 -0.236847 0.124443)} Vertex 13716 -2.90843 19.4279 1.51268 {normal=(-0.970081 0.181972 0.155637)} Vertex 13717 -2.88346 19.7254 1.36625 {normal=(-0.975591 0.127758 0.175956)} Vertex 13718 -2.99259 19.096 1.4332 {normal=(-0.966918 0.229037 0.096960)} Vertex 13719 -2.94821 19.3836 1.25124 {normal=(-0.977311 0.150009 0.138332)} Vertex 13720 -3.02263 18.9646 1.41539 {normal=(-0.989291 0.103018 -0.020129)} Vertex 13721 -3.00517 18.8798 1.33654 {normal=(-0.986250 -0.059308 -0.117202)} Vertex 13722 -2.99473 19.0043 1.10845 {normal=(-0.987853 0.003283 0.110088)} Vertex 13723 -2.96203 18.5445 1.3796 {normal=(-0.965156 -0.214493 -0.129402)} Vertex 13724 -2.96427 18.6689 1.17281 {normal=(-0.963115 -0.074374 0.177084)} Vertex 13725 -2.93761 17.6385 0.0352012 {normal=(-0.878571 -0.119494 -0.423523)} Vertex 13726 -3.00744 17.7293 0.134765 {normal=(-0.613333 -0.205107 -0.728666)} Vertex 13727 -3.01198 17.5177 0.183616 {normal=(-0.802136 -0.081387 -0.568467)} Vertex 13728 -2.98542 17.4025 0.138783 {normal=(-0.921464 -0.047212 -0.380774)} Vertex 13729 -2.89133 17.6514 -0.114406 {normal=(-0.939276 -0.238047 -0.118071)} Vertex 13730 -2.87397 17.2705 -0.0906247 {normal=(-0.907913 -0.072849 -0.407047)} Vertex 13731 -2.56133 17.8129 -0.950709 {normal=(-0.860389 -0.204878 -0.460500)} Vertex 13732 -2.51744 17.4583 -0.938367 {normal=(-0.904703 -0.117246 -0.407790)} Vertex 13733 -2.32675 17.332 -1.30526 {normal=(-0.860653 -0.115127 -0.492127)} Vertex 13734 -2.37669 17.7073 -1.29632 {normal=(-0.878786 -0.225538 -0.277323)} Vertex 13735 -2.18492 17.5997 -1.6265 {normal=(-0.810674 -0.239890 -0.525770)} Vertex 13736 -2.86108 18.1794 1.45674 {normal=(-0.944367 -0.316257 -0.072064)} Vertex 13737 -2.90071 18.3431 1.31382 {normal=(-0.940947 -0.294438 0.037285)} Vertex 13738 -2.82679 18.0391 1.37128 {normal=(-0.967637 -0.188233 0.153824)} Vertex 13739 -2.87349 18.2682 1.29226 {normal=(-0.939593 -0.260633 0.154054)} Vertex 13740 -2.89089 18.1308 1.16116 {normal=(-0.908114 -0.206603 0.343006)} Vertex 13741 -2.83901 17.8657 1.21265 {normal=(-0.943094 -0.122849 0.305211)} Vertex 13742 -2.87072 17.7322 1.08728 {normal=(-0.940732 -0.075627 0.329491)} Vertex 13743 -2.91272 17.9957 1.03376 {normal=(-0.891606 -0.150245 0.413181)} Vertex 13744 -2.94924 17.7649 0.836295 {normal=(-0.918260 -0.161555 0.341689)} Vertex 13745 -2.94621 17.3766 0.753702 {normal=(-0.964145 -0.026746 0.260404)} Vertex 13746 -3.00728 17.4605 0.461922 {normal=(-0.959700 -0.142085 0.192664)} Vertex 13747 -3.01511 17.1618 0.390089 {normal=(-0.988952 -0.052031 -0.008688)} Vertex 13748 -3.01821 17.3923 0.220439 {normal=(-0.930879 -0.122703 -0.307601)} Vertex 13749 -2.92945 17.0308 0.0957072 {normal=(-0.928798 -0.126196 -0.344761)} Vertex 13750 -2.75965 16.86 -0.224952 {normal=(-0.842936 -0.166660 -0.504313)} Vertex 13751 -2.71943 17.1647 -0.374785 {normal=(-0.844994 -0.172076 -0.504739)} Vertex 13752 -2.54645 16.7849 -0.538501 {normal=(-0.875300 -0.217025 -0.419909)} Vertex 13753 -2.53238 17.1292 -0.794769 {normal=(-0.918188 -0.164083 -0.358760)} Vertex 13754 -2.34404 16.9471 -1.17927 {normal=(-0.882415 -0.148865 -0.436989)} Vertex 13755 -2.09555 17.2782 -1.62483 {normal=(-0.761700 -0.165102 -0.622243)} Vertex 13756 -2.84655 21.3137 -1.48834 {normal=(-0.879290 0.238654 -0.377688)} Vertex 13757 -2.96412 21.4149 -1.21746 {normal=(-0.926412 0.134577 -0.335796)} Vertex 13758 -3.04444 21.3821 -0.83862 {normal=(-0.983169 0.123296 -0.120176)} Vertex 13759 -3.04603 21.1331 -1.03214 {normal=(-0.951517 0.224114 -0.128058)} Vertex 13760 -3.07405 21.0703 -0.655406 {normal=(-0.968395 0.185442 -0.033059)} Vertex 13761 -3.09471 21.2821 -0.342181 {normal=(-0.996867 0.034219 -0.032457)} Vertex 13762 -3.09197 21.1425 -0.096018 {normal=(-0.997661 0.018581 0.051011)} Vertex 13763 -3.08882 21.004 -0.307686 {normal=(-0.976390 0.129099 0.048303)} Vertex 13764 -3.09922 20.8438 0.0265118 {normal=(-0.954876 0.211684 0.122117)} Vertex 13765 -3.05489 20.7724 0.429799 {normal=(-0.969474 0.064911 0.222035)} Vertex 13766 -3.02758 20.3835 0.631758 {normal=(-0.885853 0.191598 0.403505)} Vertex 13767 -2.91602 20.2357 0.946214 {normal=(-0.935372 0.121752 0.325821)} Vertex 13768 -2.9037 19.9617 1.14562 {normal=(-0.958410 0.159223 0.232414)} Vertex 13769 -2.94507 20.0247 0.955452 {normal=(-0.898084 0.203726 0.376611)} Vertex 13770 -2.93464 19.7294 1.11637 {normal=(-0.968569 0.095493 0.226992)} Vertex 13771 -2.95114 19.9538 0.97589 {normal=(-0.916401 0.127667 0.359668)} Vertex 13772 -2.98478 19.6862 0.935796 {normal=(-0.913379 0.064065 0.380858)} Vertex 13773 -2.99134 19.3451 1.02026 {normal=(-0.971049 0.081003 0.213935)} Vertex 13774 -3.0382 19.2449 0.885032 {normal=(-0.892639 0.083468 0.424645)} Vertex 13775 -3.03609 19.0178 0.952061 {normal=(-0.905875 0.124456 0.382885)} Vertex 13776 -1.86771 15.8741 3.01885 {normal=(-0.647750 -0.004048 0.748516)} Vertex 13777 -2.05173 15.9289 2.86539 {normal=(-0.614114 -0.164995 0.763362)} Vertex 13778 -2.00426 16.0794 2.90573 {normal=(-0.401134 -0.144617 0.895890)} Vertex 13779 -0.500789 17.9404 4.18358 {normal=(0.286517 -0.938248 0.113612)} Vertex 13780 -0.47783 17.9447 4.28197 {normal=(0.280953 -0.956541 -0.023103)} Vertex 13781 -0.397667 17.9729 4.22456 {normal=(-0.013180 -0.952335 0.117286)} Vertex 13782 0 14.1625 3.72796 {normal=(0.000004 -0.766917 0.634361)} Vertex 13783 -0.970601 19.3068 2.78107 {normal=(-0.566792 0.231907 0.642427)} Vertex 13784 -1.16033 19.2406 2.79002 {normal=(-0.224077 0.792990 0.469587)} Vertex 13785 -1.5211 19.2032 2.74492 {normal=(-0.094977 0.903548 0.367574)} Vertex 13786 -1.80206 19.2411 2.6109 {normal=(0.014881 0.872916 0.397155)} Vertex 13787 -1.96122 19.3108 2.44596 {normal=(0.058837 0.775252 0.504125)} Vertex 13788 -2.0219 19.3777 2.36722 {normal=(0.232474 0.061909 0.791202)} Vertex 13789 -1.99 19.4356 2.38857 {normal=(0.134979 -0.535401 0.709457)} Vertex 13790 -1.86291 19.5264 2.47697 {normal=(0.061284 -0.688563 0.597416)} Vertex 13791 -1.64218 19.6278 2.62467 {normal=(-0.088856 -0.745427 0.545927)} Vertex 13792 -1.39964 19.6287 2.73484 {normal=(-0.340872 -0.717156 0.518968)} Vertex 13793 -1.18887 19.5329 2.77556 {normal=(-0.477642 -0.611079 0.547885)} Vertex 13794 -1.02714 19.4023 2.78077 {normal=(-0.536800 -0.455514 0.615795)} Vertex 13795 -1.01975 19.0564 3.50725 {normal=(0.253424 -0.262193 0.919504)} Vertex 13796 -1.0123 19.1126 3.51818 {normal=(0.130723 0.048545 0.962940)} Vertex 13797 -2.24322 19.5128 2.74638 {normal=(-0.846489 0.363645 0.387762)} Vertex 13798 -2.20794 19.4818 2.84613 {normal=(-0.801508 0.226660 0.538401)} Vertex 13799 -1.26964 19.1454 3.11782 {normal=(-0.109737 0.980361 0.112498)} Vertex 13800 -0.827108 19.2339 3.09927 {normal=(-0.454041 0.825237 0.168057)} Vertex 13801 -0.774478 19.3153 3.08458 {normal=(-0.821369 -0.379641 0.219180)} Vertex 13802 -0.965608 19.4893 3.09197 {normal=(-0.611707 -0.754803 0.168601)} Vertex 13803 -1.21197 19.6562 3.08371 {normal=(-0.452272 -0.865295 0.146694)} Vertex 13804 -1.51826 19.7391 2.99775 {normal=(-0.045647 -0.966848 0.145392)} Vertex 13805 -1.82605 19.6458 2.8021 {normal=(0.352302 -0.896188 0.171141)} Vertex 13806 -2.06847 19.4806 2.6146 {normal=(0.489082 -0.809503 0.214487)} Vertex 13807 -2.15147 19.4065 2.55161 {normal=(0.684088 -0.559045 0.303133)} Vertex 13808 -2.15867 19.3299 2.56012 {normal=(0.654533 0.534095 0.260440)} Vertex 13809 -2.01096 19.2416 2.77079 {normal=(0.322743 0.927612 0.112472)} Vertex 13810 -1.75207 19.1526 2.99185 {normal=(0.132851 0.976721 0.100679)} Vertex 13811 -1.20374 19.6957 3.47632 {normal=(-0.280052 -0.293919 0.902088)} Vertex 13812 -0.942988 19.5178 3.48206 {normal=(-0.206575 -0.296382 0.918305)} Vertex 13813 -0.741603 19.3227 3.47213 {normal=(-0.165931 -0.151463 0.948410)} Vertex 13814 -0.796468 19.2117 3.48085 {normal=(0.027911 0.184009 0.955570)} Vertex 13815 -1.29316 19.0857 3.52435 {normal=(-0.075901 0.468532 0.870626)} Vertex 13816 -1.81134 19.0796 3.4135 {normal=(-0.239622 0.631316 0.733014)} Vertex 13817 -2.09655 19.1875 3.16727 {normal=(-0.375740 0.728241 0.566516)} Vertex 13818 -2.22646 19.3161 2.88292 {normal=(-0.615808 0.513352 0.566742)} Vertex 13819 -2.21415 19.414 2.8551 {normal=(-0.757627 0.135680 0.633027)} Vertex 13820 -2.1022 19.526 2.96034 {normal=(-0.678642 0.016360 0.725942)} Vertex 13821 -1.67848 19.8805 3.25572 {normal=(-0.534130 0.378625 0.749704)} Vertex 13822 -0.644491 19.3232 3.44598 {normal=(0.121643 -0.114483 0.958711)} Vertex 13823 -0.670389 19.3635 3.44991 {normal=(-0.237621 -0.267357 0.915841)} Vertex 13824 -0.679379 19.3582 3.45125 {normal=(0.385207 0.146643 0.899466)} Vertex 13825 -2.35998 19.399 2.59182 {normal=(-0.702954 0.260610 0.643292)} Vertex 13826 -2.32739 19.4341 2.63024 {normal=(-0.842973 0.254765 0.457735)} Vertex 13827 -2.37255 19.4022 2.5829 {normal=(-0.594479 0.165172 0.784910)} Vertex 13828 -2.33728 19.4498 2.61463 {normal=(-0.651583 -0.049038 0.743582)} Vertex 13829 -0.888143 19.5895 3.46513 {normal=(-0.355962 -0.478444 0.756540)} Vertex 13830 -0.76549 19.4611 3.45469 {normal=(0.030381 -0.034791 0.955914)} Vertex 13831 -0.895226 19.5816 3.4638 {normal=(0.257307 0.219583 0.927329)} Vertex 13832 -1.16993 19.7968 3.46869 {normal=(-0.414402 -0.461009 0.719101)} Vertex 13833 -1.02802 19.6942 3.47227 {normal=(-0.078535 -0.121788 0.949911)} Vertex 13834 -1.17498 19.7835 3.46681 {normal=(0.000925 0.248540 0.954434)} Vertex 13835 -1.48617 19.9358 3.35281 {normal=(-0.458173 -0.316775 0.781858)} Vertex 13836 -1.32056 19.8751 3.42608 {normal=(-0.325965 0.017731 0.924298)} Vertex 13837 -1.48626 19.9135 3.35438 {normal=(-0.390027 0.286568 0.864028)} Vertex 13838 -1.86577 19.8603 3.11625 {normal=(-0.550662 -0.176275 0.780511)} Vertex 13839 -1.67725 19.909 3.2456 {normal=(-0.535988 0.091475 0.832378)} Vertex 13840 -1.86231 19.8369 3.12224 {normal=(-0.659655 0.220684 0.710306)} Vertex 13841 -2.14003 19.6601 2.84559 {normal=(-0.676130 -0.136360 0.704619)} Vertex 13842 -2.01241 19.7579 2.98501 {normal=(-0.731869 0.091787 0.668852)} Vertex 13843 -2.13548 19.6384 2.8552 {normal=(-0.815205 0.258691 0.509241)} Vertex 13844 -2.24908 19.5336 2.71855 {normal=(-0.796597 0.114033 0.578009)} Vertex 13845 -2.85322 20.0287 1.51653 {normal=(-0.699753 -0.305640 -0.428914)} Vertex 13846 -0.505967 19.9009 4.00313 {normal=(0.526947 -0.481724 0.692639)} Vertex 13847 -0.442161 19.9562 3.99106 {normal=(0.349142 -0.242814 0.857656)} Vertex 13848 -0.310131 17.9102 4.23119 {normal=(-0.789022 -0.395552 0.422487)} Vertex 13849 -0.338852 17.9543 4.23417 {normal=(-0.569072 -0.733574 0.255174)} Vertex 13850 -0.330696 17.8708 4.18443 {normal=(-0.663248 -0.075607 0.701760)} Vertex 13851 -0.42423 17.8822 4.12727 {normal=(-0.359661 0.053328 0.890206)} Vertex 13852 -0.554824 17.8857 4.093 {normal=(0.015765 -0.268303 0.892085)} Vertex 13853 -0.596933 17.9055 4.27696 {normal=(0.229764 -0.945248 0.184005)} Vertex 13854 -0.529794 17.9387 4.36545 {normal=(0.024548 -0.942176 0.277053)} Vertex 13855 -0.409269 17.9573 4.37322 {normal=(0.041834 -0.986053 -0.021962)} Vertex 13856 -0.719749 17.8209 4.1204 {normal=(0.214184 -0.669187 0.638958)} Vertex 13857 -0.692498 17.8512 4.16508 {normal=(0.376520 -0.873973 0.273097)} Vertex 13858 -0.670793 17.8461 4.11129 {normal=(0.394639 -0.621315 0.571096)} Vertex 13859 -0.560967 17.9119 4.12737 {normal=(0.319546 -0.829931 0.353545)} Vertex 13860 -0.619323 17.8895 4.19454 {normal=(0.391709 -0.913747 0.085453)} Vertex 13861 -0.686265 17.8762 4.23612 {normal=(0.002453 -0.877424 0.426289)} Vertex 13862 -0.339098 17.9603 4.33119 {normal=(-0.330687 -0.917552 -0.039249)} Vertex 13863 -0.361625 17.9547 4.50096 {normal=(-0.321165 -0.922195 0.061826)} Vertex 13864 -0.804936 18.0708 3.87775 {normal=(-0.875266 0.450104 0.115365)} Vertex 13865 -0.792609 18.1124 3.82374 {normal=(-0.791629 0.417794 0.407322)} Vertex 13866 -0.7574 18.1699 3.85109 {normal=(-0.859669 0.492001 0.058218)} Vertex 13867 -0.274584 18.6483 4.61641 {normal=(-0.582538 0.542520 0.560449)} Vertex 13868 0 18.6695 4.68779 {normal=(0.000000 0.624795 0.775879)} Vertex 13869 -0.434168 18.528 4.36651 {normal=(-0.876821 0.417723 0.231682)} Vertex 13870 -0.559183 18.4244 4.07796 {normal=(-0.733400 0.638354 0.167686)} Vertex 13871 -0.627091 18.3913 4.00737 {normal=(-0.570949 0.783651 -0.016556)} Vertex 13872 -0.66292 18.3517 3.95823 {normal=(-0.574660 0.709906 -0.354944)} Vertex 13873 -0.665702 18.3152 3.91416 {normal=(-0.668766 0.622972 -0.350875)} Vertex 13874 -0.692499 18.2663 3.86286 {normal=(-0.809438 0.474068 0.277994)} Vertex 13875 -0.678995 18.2868 3.88508 {normal=(-0.806537 0.581477 -0.054642)} Vertex 13876 -0.312876 18.306 4.8075 {normal=(-0.588194 0.067634 0.766455)} Vertex 13877 0 18.331 4.88287 {normal=(0.000000 0.132799 0.982956)} Vertex 13878 -0.48635 18.2495 4.53331 {normal=(-0.912490 0.025681 0.399680)} Vertex 13879 -0.566163 18.221 4.38104 {normal=(-0.769028 0.229959 0.568897)} Vertex 13880 -0.741403 18.1537 4.23776 {normal=(-0.743426 0.288037 0.585301)} Vertex 13881 -0.846649 18.0325 4.09022 {normal=(-0.938951 0.014231 0.279251)} Vertex 13882 -0.850551 17.9011 3.9775 {normal=(-0.970438 -0.140442 0.124689)} Vertex 13883 -0.94688 17.8236 3.884 {normal=(-0.605502 0.321242 0.726849)} Vertex 13884 -0.861382 17.8766 3.93733 {normal=(-0.787378 0.195161 0.548478)} Vertex 13885 -1.07932 17.5028 3.90107 {normal=(-0.665543 0.189728 0.716756)} Vertex 13886 -1.13266 17.2578 3.87019 {normal=(-0.696522 -0.198304 0.671147)} Vertex 13887 -0.215619 17.782 4.50154 {normal=(-0.808039 -0.498915 0.243573)} Vertex 13888 -0.309747 17.9409 4.64701 {normal=(-0.626109 -0.704466 0.273135)} Vertex 13889 -0.451189 17.9688 4.48146 {normal=(-0.326834 -0.825561 0.360565)} Vertex 13890 -0.654025 17.9285 4.32472 {normal=(-0.326026 -0.682808 0.598838)} Vertex 13891 -0.74271 17.8484 4.17301 {normal=(-0.284159 -0.741670 0.542853)} Vertex 13892 -0.599075 18.3921 3.91342 {normal=(-0.807257 0.513315 0.136665)} Vertex 13893 -0.744112 18.193 3.88842 {normal=(-0.829590 0.503227 -0.198111)} Vertex 13894 -0.847302 17.9492 3.91838 {normal=(-0.929808 0.207346 0.129485)} Vertex 13895 -0.830213 17.834 3.99462 {normal=(-0.885557 -0.127141 0.423186)} Vertex 13896 -1.76849 17.3707 3.35673 {normal=(-0.116816 -0.472341 0.871931)} Vertex 13897 -0.767009 18.1717 3.81979 {normal=(-0.668331 0.278395 0.651130)} Vertex 13898 -0.83233 18.0981 3.79847 {normal=(-0.484973 0.294618 0.796452)} Vertex 13899 -1.0772 17.9379 3.7304 {normal=(-0.398518 0.101152 0.894363)} Vertex 13900 -1.51158 17.5814 3.50729 {normal=(-0.279601 -0.304686 0.888755)} Vertex 13901 -1.87573 17.2068 3.24711 {normal=(0.066025 -0.552448 0.806899)} Vertex 13902 -1.87852 17.1659 3.21581 {normal=(0.042910 -0.566061 0.819397)} Vertex 13903 -1.96111 17.0789 3.17112 {normal=(0.097392 -0.459475 0.857901)} Vertex 13904 -0.611742 18.3861 3.89495 {normal=(-0.720735 0.319668 0.582310)} Vertex 13905 -0.568943 18.4621 3.91193 {normal=(-0.780958 0.250712 0.517197)} Vertex 13906 -1.91532 16.0548 2.96034 {normal=(-0.471332 0.079295 0.862206)} Vertex 13907 -1.96616 16.1835 2.9438 {normal=(-0.277439 -0.144467 0.928151)} Vertex 13908 -2.06567 16.6917 3.03259 {normal=(-0.042030 -0.257095 0.957889)} Vertex 13909 -1.65359 17.2545 3.31621 {normal=(-0.321561 -0.614144 0.670963)} Vertex 13910 -0.930525 17.1778 4.03116 {normal=(-0.497692 -0.586179 0.583178)} Vertex 13911 -0.514569 17.1187 4.21905 {normal=(-0.286296 -0.632281 0.674837)} Vertex 13912 -0.434713 15.8941 4.09221 {normal=(-0.275470 0.496619 0.785798)} Vertex 13913 0 15.9059 4.17819 {normal=(0.000000 0.514116 0.818643)} Vertex 13914 -0.86289 15.8545 3.91745 {normal=(-0.449792 0.421084 0.738157)} Vertex 13915 -1.33055 15.7967 3.58848 {normal=(-0.621768 0.317522 0.655382)} Vertex 13916 -1.70739 15.8017 3.18554 {normal=(-0.632156 0.228187 0.706731)} Vertex 13917 -1.32414 17.2339 3.65082 {normal=(-0.616412 -0.547292 0.517492)} Vertex 13918 0 17.045 4.28247 {normal=(0.000000 -0.653113 0.707631)} Vertex 13919 -2.38773 17.4094 3.15064 {normal=(-0.606670 -0.291683 0.722763)} Vertex 13920 -2.32369 17.1035 3.08572 {normal=(-0.433576 -0.276488 0.842756)} Vertex 13921 -0.384459 15.29 3.89713 {normal=(-0.170251 -0.170768 0.947349)} Vertex 13922 0 15.2657 3.92847 {normal=(0.000000 -0.145931 0.958413)} Vertex 13923 -0.764666 15.2985 3.79518 {normal=(-0.399099 -0.159525 0.884542)} Vertex 13924 -0.639968 19.1937 3.41641 {normal=(0.084171 -0.179586 0.939831)} Vertex 13925 -0.74045 19.1521 3.44074 {normal=(0.362105 -0.282734 0.877314)} Vertex 13926 -0.631576 19.1842 3.41788 {normal=(-0.456184 0.140516 0.812331)} Vertex 13927 -0.731838 19.1324 3.43766 {normal=(-0.087942 0.307053 0.911793)} Vertex 13928 -1.35037 18.9048 3.55323 {normal=(0.041196 0.121561 0.988135)} Vertex 13929 -1.90469 18.8149 3.53725 {normal=(-0.217483 0.148621 0.955110)} Vertex 13930 -1.67892 18.8513 3.55476 {normal=(-0.064747 0.118275 0.987641)} Vertex 13931 -1.98951 18.8198 3.52269 {normal=(-0.458091 0.279315 0.833763)} Vertex 13932 -1.9049 18.8373 3.53146 {normal=(-0.218902 0.306316 0.917871)} Vertex 13933 -1.01012 19.0328 3.49764 {normal=(0.191207 -0.034017 0.965447)} Vertex 13934 -1.36603 18.9252 3.55413 {normal=(0.075881 -0.032855 0.986405)} Vertex 13935 -2.57979 18.1686 -1.20962 {normal=(-0.919052 -0.127559 0.015249)} Vertex 13936 -2.63592 18.4988 -1.46353 {normal=(-0.901764 -0.114642 0.217458)} Vertex 13937 -2.7986 19.0319 -1.55654 {normal=(-0.846952 -0.289602 0.334048)} Vertex 13938 -2.98547 19.6581 -1.44743 {normal=(-0.773125 -0.359782 0.408501)} Vertex 13939 -3.08471 20.0597 -1.12094 {normal=(-0.775038 -0.375400 0.103293)} Vertex 13940 -3.12952 20.2571 -0.678932 {normal=(-0.814616 -0.039393 -0.048505)} Vertex 13941 -3.12047 20.2729 -0.260185 {normal=(-0.797486 -0.119826 0.138007)} Vertex 13942 -3.06776 20.1136 -0.0234783 {normal=(-0.749423 -0.192768 -0.243752)} Vertex 13943 -3.04117 19.7935 0.047987 {normal=(-0.743602 -0.024614 -0.040139)} Vertex 13944 -3.09275 19.5828 0.074425 {normal=(-0.531105 -0.089598 -0.824201)} Vertex 13945 -3.00828 19.3523 0.095856 {normal=(-0.681951 -0.060687 -0.173946)} Vertex 13946 -3.07886 19.0857 0.1047 {normal=(-0.456775 -0.050073 -0.883740)} Vertex 13947 -2.99804 18.9681 0.098531 {normal=(-0.807364 -0.039697 -0.300189)} Vertex 13948 -2.99574 18.6561 0.069236 {normal=(-0.819581 -0.075549 -0.325593)} Vertex 13949 -2.98915 18.391 0.041502 {normal=(-0.823504 0.066204 -0.311339)} Vertex 13950 -2.97968 18.16 0.0309827 {normal=(-0.769597 -0.017268 -0.428298)} Vertex 13951 -3.01178 21.0875 -1.15843 {normal=(-0.731370 0.568641 -0.036774)} Vertex 13952 -3.07247 21.0104 -0.943615 {normal=(-0.711145 0.608965 0.082615)} Vertex 13953 -3.09323 20.9302 -0.431596 {normal=(-0.771333 0.546633 0.093233)} Vertex 13954 -3.10105 20.8828 -0.260874 {normal=(-0.771924 0.544869 0.167989)} Vertex 13955 -2.99632 20.0904 0.820833 {normal=(-0.720044 0.310969 0.593167)} Vertex 13956 -2.98512 19.9246 0.895204 {normal=(-0.762778 0.112203 0.613055)} Vertex 13957 -2.92358 18.4228 1.21358 {normal=(-0.819661 -0.098305 0.476015)} Vertex 13958 -2.90742 18.3019 1.20377 {normal=(-0.788430 -0.292218 0.515424)} Vertex 13959 -2.94285 18.1048 1.01246 {normal=(-0.723757 -0.372107 0.547477)} Vertex 13960 -2.95667 18.0132 0.932062 {normal=(-0.732446 -0.347755 0.551032)} Vertex 13961 -3.03707 17.4946 0.274719 {normal=(-0.853065 -0.401906 -0.069758)} Vertex 13962 0 22.8078 -2.5774 {normal=(0.000000 0.966501 -0.147814)} Vertex 13963 -1.13005 22.5417 -2.4899 {normal=(-0.346787 0.900925 -0.170940)} Vertex 13964 -1.65807 22.2691 -2.37495 {normal=(-0.576611 0.754937 -0.197009)} Vertex 13965 -2.55017 21.5371 -1.91516 {normal=(-0.710022 0.626298 -0.161211)} Vertex 13966 -3.11066 20.6072 0.292614 {normal=(-0.720791 0.482561 0.416620)} Vertex 13967 -3.0336 19.5023 0.85338 {normal=(-0.721803 0.025112 0.660518)} Vertex 13968 -3.07659 19.0801 0.850452 {normal=(-0.707211 0.216525 0.638757)} Vertex 13969 -3.01932 18.8336 1.03332 {normal=(-0.761474 0.193317 0.566508)} Vertex 13970 -3.00428 17.6614 0.606983 {normal=(-0.776874 -0.405884 0.421598)} Vertex 13971 -2.68922 17.4102 -0.516003 {normal=(-0.869641 -0.182201 -0.452599)} Vertex 13972 -2.86749 17.5731 -0.275474 {normal=(-0.888316 -0.310732 -0.238385)} Vertex 13973 -2.99899 18.0126 -0.0819878 {normal=(-0.883775 -0.192301 0.306807)} Vertex 13974 -3.06016 18.7889 -0.101732 {normal=(-0.937428 -0.137993 0.293302)} Vertex 13975 -3.06536 18.969 -0.0427452 {normal=(-0.883777 -0.196832 0.379323)} Vertex 13976 -3.02801 18.509 -0.0896085 {normal=(-0.949722 -0.015061 0.266393)} Vertex 13977 -3.0141 18.2234 -0.0616063 {normal=(-0.924968 -0.025420 0.293227)} Vertex 13978 -2.67165 17.6217 -0.648514 {normal=(-0.827296 -0.278648 -0.463521)} Vertex 13979 -3.06343 19.2392 0.055809 {normal=(-0.760998 -0.152037 0.521830)} Vertex 13980 -2.87572 19.3102 -1.40071 {normal=(-0.922974 -0.283235 -0.111214)} Vertex 13981 -2.73873 18.8018 -1.36903 {normal=(-0.900852 -0.296785 -0.227068)} Vertex 13982 -2.96546 19.5844 -1.37169 {normal=(-0.927274 -0.216818 -0.097645)} Vertex 13983 -3.03729 19.8541 -1.25778 {normal=(-0.825132 -0.041149 -0.298224)} Vertex 13984 -3.14954 20.1293 -0.921657 {normal=(-0.615858 0.516305 -0.372580)} Vertex 13985 -2.65843 18.3918 -1.18016 {normal=(-0.870878 -0.318819 -0.324286)} Vertex 13986 -2.66153 18.0975 -0.929726 {normal=(-0.797799 -0.330688 -0.487900)} Vertex 13987 -2.71037 17.8361 -0.717224 {normal=(-0.635082 -0.367998 -0.634284)} Vertex 13988 -3.23303 20.2439 -0.565702 {normal=(-0.511690 0.797446 -0.214743)} Vertex 13989 -3.24846 20.2474 -0.440129 {normal=(-0.616677 0.702953 0.153269)} Vertex 13990 -3.16014 20.129 -0.143211 {normal=(-0.770748 0.319833 0.436353)} Vertex 13991 -3.1299 19.9611 -0.0453375 {normal=(-0.705601 0.225808 0.596592)} Vertex 13992 -3.10142 19.6239 0.0486945 {normal=(-0.543969 0.082006 0.795850)} Vertex 13993 3.22848 19.1114 -0.18525 {normal=(0.668012 -0.519332 0.515693)} Vertex 13994 3.16621 19.1932 -0.062482 {normal=(0.649806 -0.332924 0.669948)} Vertex 13995 3.28085 19.3776 -0.065019 {normal=(0.623987 -0.296336 0.709622)} Vertex 13996 3.30639 19.2417 -0.179327 {normal=(0.818884 -0.387928 0.316570)} Vertex 13997 3.21088 19.5018 0.014449 {normal=(0.458819 -0.078344 0.876203)} Vertex 13998 3.34587 19.6756 -0.0601183 {normal=(0.601579 0.080375 0.769879)} Vertex 13999 3.3772 19.524 -0.115024 {normal=(0.824910 -0.205594 0.470535)} Vertex 14000 3.45864 19.799 -0.200063 {normal=(0.825386 0.080388 0.482514)} Vertex 14001 3.26706 19.8212 -0.0648592 {normal=(0.443920 0.326570 0.825600)} Vertex 14002 3.41811 19.9483 -0.245126 {normal=(0.617000 0.498313 0.584453)} Vertex 14003 3.22489 19.0455 -0.297062 {normal=(0.816167 -0.524401 0.020529)} Vertex 14004 3.16547 18.9958 -0.226729 {normal=(0.814510 -0.423005 0.314293)} Vertex 14005 3.27635 19.1704 -0.328346 {normal=(0.902317 -0.322981 -0.219316)} Vertex 14006 3.20552 19.1571 -0.481873 {normal=(0.847223 -0.164454 -0.476992)} Vertex 14007 3.17158 19.0222 -0.43881 {normal=(0.851444 -0.386251 -0.340066)} Vertex 14008 3.36115 19.386 -0.232878 {normal=(0.928656 -0.281029 -0.044068)} Vertex 14009 3.29425 19.3092 -0.372907 {normal=(0.833891 -0.114951 -0.493781)} Vertex 14010 3.37855 19.5158 -0.318065 {normal=(0.806036 -0.285951 -0.437505)} Vertex 14011 3.44048 19.6416 -0.230985 {normal=(0.926752 -0.266079 0.104382)} Vertex 14012 3.45647 19.7098 -0.367738 {normal=(0.786814 -0.482648 -0.283388)} Vertex 14013 3.50963 19.8415 -0.376179 {normal=(0.941927 -0.188754 0.050282)} Vertex 14014 3.46852 19.8019 -0.527449 {normal=(0.744636 -0.604566 -0.114182)} Vertex 14015 3.5134 19.9873 -0.440798 {normal=(0.863614 0.329024 0.199757)} Vertex 14016 3.51533 19.9125 -0.616384 {normal=(0.948633 -0.180675 0.000941)} Vertex 14017 3.46439 19.7901 -0.746417 {normal=(0.771897 -0.582636 0.133097)} Vertex 14018 3.51336 20.0089 -0.768004 {normal=(0.860732 0.362966 -0.122244)} Vertex 14019 3.50932 19.8459 -0.898137 {normal=(0.945893 -0.169545 0.010652)} Vertex 14020 3.44806 19.6855 -0.951299 {normal=(0.808865 -0.459498 0.307847)} Vertex 14021 3.48709 19.8418 -1.08711 {normal=(0.846915 0.252879 -0.330383)} Vertex 14022 3.4707 19.6382 -1.11632 {normal=(0.956174 -0.174090 0.019171)} Vertex 14023 3.41312 19.4448 -1.07936 {normal=(0.878511 -0.231725 0.374312)} Vertex 14024 3.43274 19.5114 -1.27904 {normal=(0.881859 -0.032704 -0.389571)} Vertex 14025 3.40809 19.2823 -1.2038 {normal=(0.971588 -0.157573 0.035187)} Vertex 14026 3.35468 19.0809 -1.09895 {normal=(0.909273 -0.122883 0.371312)} Vertex 14027 3.36652 19.0494 -1.27757 {normal=(0.913872 -0.177414 -0.282818)} Vertex 14028 3.33543 18.8549 -1.13538 {normal=(0.964874 -0.148074 0.150025)} Vertex 14029 3.27898 18.7451 -1.00152 {normal=(0.937762 -0.057993 0.318265)} Vertex 14030 3.28947 18.6278 -1.1409 {normal=(0.895848 -0.303356 -0.190977)} Vertex 14031 3.26282 18.5392 -0.989309 {normal=(0.980011 -0.097424 0.093099)} Vertex 14032 3.2414 18.3436 -0.968154 {normal=(0.897328 -0.258142 -0.274098)} Vertex 14033 3.248 18.4164 -0.88166 {normal=(0.991892 -0.037148 0.016131)} Vertex 14034 3.24461 18.3902 -0.779043 {normal=(0.997905 0.021345 0.032024)} Vertex 14035 3.23892 18.5318 -0.805179 {normal=(0.997374 -0.016200 0.045429)} Vertex 14036 3.23224 18.5169 -0.690385 {normal=(0.979016 0.046911 0.164168)} Vertex 14037 3.24095 18.3445 -0.676438 {normal=(0.989276 0.088675 0.066099)} Vertex 14038 3.20294 18.5188 -0.584371 {normal=(0.936299 0.219414 0.243225)} Vertex 14039 3.13481 18.6696 -0.548466 {normal=(0.881685 0.311064 0.325605)} Vertex 14040 3.14902 18.5878 -0.474289 {normal=(0.933182 0.291183 0.191222)} Vertex 14041 3.0982 18.717 -0.445644 {normal=(0.942459 0.172374 -0.094708)} Vertex 14042 3.21845 18.6746 -0.675654 {normal=(0.873166 0.173256 0.398021)} Vertex 14043 3.0771 18.8449 -0.55661 {normal=(0.927813 0.103016 0.080975)} Vertex 14044 3.1516 18.8507 -0.695634 {normal=(0.751307 0.420645 0.487715)} Vertex 14045 3.25679 18.7041 -0.822245 {normal=(0.983730 -0.062591 0.108696)} Vertex 14046 3.26014 18.7866 -0.941489 {normal=(0.968488 -0.115446 0.078237)} Vertex 14047 3.26351 18.8713 -0.833275 {normal=(0.814878 0.184125 0.401179)} Vertex 14048 3.29853 18.948 -0.934804 {normal=(0.950578 -0.199749 -0.140324)} Vertex 14049 3.30546 19.1003 -0.995211 {normal=(0.936278 -0.118915 0.049169)} Vertex 14050 3.34715 19.1052 -0.912559 {normal=(0.880034 -0.277877 -0.038714)} Vertex 14051 3.33929 19.2571 -0.934048 {normal=(0.935029 0.036086 -0.318326)} Vertex 14052 3.32057 19.4089 -0.951932 {normal=(0.920572 -0.026996 0.189657)} Vertex 14053 3.36177 19.3643 -0.835531 {normal=(0.955011 0.140993 -0.158245)} Vertex 14054 3.3222 19.486 -0.841182 {normal=(0.965892 0.156968 -0.133863)} Vertex 14055 3.31846 19.5998 -0.854607 {normal=(0.865622 -0.287545 0.230587)} Vertex 14056 3.33514 19.5216 -0.729675 {normal=(0.973248 0.174011 0.006547)} Vertex 14057 3.31513 19.6148 -0.747187 {normal=(0.976598 -0.009094 0.038527)} Vertex 14058 3.30639 19.6483 -0.644302 {normal=(0.947657 -0.093161 0.168277)} Vertex 14059 3.32532 19.6914 -0.714917 {normal=(0.763829 -0.539257 0.185129)} Vertex 14060 3.30022 19.6946 -0.556068 {normal=(0.741606 -0.579628 0.071224)} Vertex 14061 3.31283 19.5607 -0.629906 {normal=(0.931214 0.053192 0.331841)} Vertex 14062 3.26568 19.6071 -0.537612 {normal=(0.880586 -0.214913 0.305252)} Vertex 14063 3.23678 19.5101 -0.522179 {normal=(0.856447 -0.243488 0.355453)} Vertex 14064 3.23884 19.5745 -0.456762 {normal=(0.794763 -0.303753 -0.358262)} Vertex 14065 3.18714 19.398 -0.500671 {normal=(0.857506 -0.217092 -0.142737)} Vertex 14066 3.30281 19.4536 -0.624447 {normal=(0.788185 -0.236354 0.530797)} Vertex 14067 3.21171 19.3451 -0.617319 {normal=(0.672179 -0.560428 0.404623)} Vertex 14068 3.35118 19.4149 -0.727423 {normal=(0.926071 -0.035944 0.257018)} Vertex 14069 3.36157 19.3056 -0.794556 {normal=(0.880670 -0.230400 0.277315)} Vertex 14070 3.365 19.5522 -0.95925 {normal=(0.779275 -0.347822 0.508474)} Vertex 14071 3.38586 19.6916 -0.82829 {normal=(0.662766 -0.667882 0.327078)} Vertex 14072 3.34975 19.2686 -1.0395 {normal=(0.869495 -0.141878 0.469090)} Vertex 14073 3.29393 18.9283 -1.01921 {normal=(0.898884 -0.068908 0.421431)} Vertex 14074 3.23248 18.2586 -0.490885 {normal=(0.957724 0.122425 0.236513)} Vertex 14075 3.18468 18.1005 -0.316138 {normal=(0.848774 -0.000127 0.499362)} Vertex 14076 3.17388 18.2948 -0.363251 {normal=(0.884656 0.144633 0.422973)} Vertex 14077 3.10444 18.3344 -0.224282 {normal=(0.890599 0.065180 0.444982)} Vertex 14078 3.15943 18.4783 -0.404612 {normal=(0.930334 0.178637 0.313416)} Vertex 14079 3.11943 18.6046 -0.365907 {normal=(0.967931 0.100568 0.093530)} Vertex 14080 3.11099 18.6527 -0.249958 {normal=(0.952533 -0.077831 0.229134)} Vertex 14081 3.12386 18.7347 -0.351303 {normal=(0.975871 -0.047667 -0.171105)} Vertex 14082 3.1155 17.9114 -0.297628 {normal=(0.695370 -0.578794 0.368434)} Vertex 14083 3.07796 17.9647 -0.203321 {normal=(0.775977 -0.298219 0.516365)} Vertex 14084 3.20891 17.9846 -0.403246 {normal=(0.872196 -0.305365 0.307173)} Vertex 14085 3.25333 18.028 -0.584128 {normal=(0.953705 -0.209830 0.046093)} Vertex 14086 3.2086 17.935 -0.539049 {normal=(0.755100 -0.620001 0.055009)} Vertex 14087 3.25745 18.1567 -0.638162 {normal=(0.986230 0.029715 -0.013669)} Vertex 14088 3.24273 18.0707 -0.773126 {normal=(0.911113 -0.198185 -0.300511)} Vertex 14089 3.38611 19.747 -0.629279 {normal=(0.586104 -0.802723 0.069213)} Vertex 14090 3.18857 19.2586 -0.733783 {normal=(0.507571 -0.608083 0.573431)} Vertex 14091 3.10901 19.2427 -0.649442 {normal=(0.839847 -0.378070 -0.044268)} Vertex 14092 3.06513 19.0823 -0.808342 {normal=(0.647089 -0.111976 0.633299)} Vertex 14093 3.18587 19.1468 -0.831105 {normal=(0.380396 -0.439741 0.790087)} Vertex 14094 3.29287 19.0634 -0.887387 {normal=(0.442873 -0.243347 0.785199)} Vertex 14095 3.17793 18.9963 -0.844328 {normal=(0.481157 0.269628 0.797744)} Vertex 14096 3.0626 18.9846 -0.749619 {normal=(0.728605 0.436509 0.378801)} Vertex 14097 3.34967 19.1845 -0.87553 {normal=(0.717818 -0.272228 0.449540)} Vertex 14098 3.30986 19.2372 -0.793983 {normal=(0.464139 -0.532444 0.677129)} Vertex 14099 3.37679 19.723 -0.472429 {normal=(0.579992 -0.721597 -0.339838)} Vertex 14100 3.34696 19.6339 -0.404086 {normal=(0.619345 -0.471626 -0.608582)} Vertex 14101 3.26683 19.4462 -0.406165 {normal=(0.731930 -0.111280 -0.665354)} Vertex 14102 3.18889 19.2742 -0.501649 {normal=(0.839037 -0.011164 -0.533913)} Vertex 14103 3.10453 19.1377 -0.639132 {normal=(0.857524 -0.279875 -0.371900)} Vertex 14104 3.11053 18.8621 -0.425571 {normal=(0.942186 -0.163645 -0.257109)} Vertex 14105 3.09427 19.0092 -0.578736 {normal=(0.886198 -0.201329 -0.369167)} Vertex 14106 3.03596 19.0541 -0.707883 {normal=(0.888548 -0.136614 -0.099895)} Vertex 14107 3.14183 18.8618 -0.292462 {normal=(0.953354 -0.182007 0.040838)} Vertex 14108 3.37639 20.0927 -0.395008 {normal=(0.699016 0.546672 0.297642)} Vertex 14109 3.45357 20.1009 -0.589495 {normal=(0.661810 0.710067 0.048839)} Vertex 14110 3.3152 20.149 -0.766262 {normal=(0.355074 0.866061 -0.328822)} Vertex 14111 3.41017 20.0204 -0.958995 {normal=(0.505328 0.720030 -0.417041)} Vertex 14112 3.28821 19.938 -1.16031 {normal=(0.117111 0.697885 -0.664842)} Vertex 14113 3.39341 19.75 -1.27005 {normal=(0.530469 0.370923 -0.695379)} Vertex 14114 3.2843 19.5593 -1.37186 {normal=(-0.029311 0.200723 -0.922278)} Vertex 14115 3.35059 19.3007 -1.37588 {normal=(0.548770 -0.053328 -0.759919)} Vertex 14116 3.24576 19.0312 -1.37594 {normal=(-0.034978 -0.147088 -0.921585)} Vertex 14117 3.28612 18.7902 -1.29027 {normal=(0.581150 -0.329362 -0.656461)} Vertex 14118 3.15754 18.5908 -1.23969 {normal=(-0.063611 -0.394832 -0.840742)} Vertex 14119 3.19558 18.4358 -1.11839 {normal=(0.529338 -0.473476 -0.626533)} Vertex 14120 3.09392 18.2726 -1.05158 {normal=(-0.079514 -0.500036 -0.776815)} Vertex 14121 3.18026 18.1525 -0.924562 {normal=(0.584613 -0.407177 -0.612708)} Vertex 14122 3.11144 17.9454 -0.823738 {normal=(0.094862 -0.608929 -0.706103)} Vertex 14123 3.19085 17.9079 -0.73662 {normal=(0.723362 -0.544879 -0.261607)} Vertex 14124 3.09377 17.8183 -0.59363 {normal=(0.531151 -0.799803 0.085506)} Vertex 14125 3.14759 17.8935 -0.578097 {normal=(0.694291 -0.674092 0.106405)} Vertex 14126 3.02908 17.8041 -0.645702 {normal=(0.037859 -0.867032 -0.358813)} Vertex 14127 2.979 17.788 -0.485124 {normal=(0.455779 -0.861813 0.043300)} Vertex 14128 2.99379 18.1675 -0.9133 {normal=(-0.563617 -0.402653 -0.707673)} Vertex 14129 2.88579 18.0792 -0.76313 {normal=(-0.374556 -0.330101 -0.813310)} Vertex 14130 2.9662 17.9997 -0.797053 {normal=(-0.379079 -0.461751 -0.789492)} Vertex 14131 2.8513 18.2076 -0.817845 {normal=(-0.083455 -0.490403 -0.798334)} Vertex 14132 2.78777 18.0459 -0.74972 {normal=(0.408393 -0.344462 -0.789702)} Vertex 14133 2.76594 18.3104 -0.932092 {normal=(0.522155 -0.452926 -0.654940)} Vertex 14134 2.93375 18.3367 -0.94768 {normal=(-0.529332 -0.423716 -0.717002)} Vertex 14135 2.86438 18.4981 -1.00877 {normal=(-0.047138 -0.474812 -0.810416)} Vertex 14136 3.0297 18.4568 -1.10827 {normal=(-0.544942 -0.353823 -0.750395)} Vertex 14137 3.11117 18.8011 -1.27177 {normal=(-0.469331 -0.190593 -0.854750)} Vertex 14138 2.97583 18.6493 -1.13441 {normal=(-0.482514 -0.295622 -0.811231)} Vertex 14139 2.91509 18.8527 -1.17867 {normal=(0.006376 -0.299682 -0.891221)} Vertex 14140 2.79421 18.6483 -1.13889 {normal=(0.557419 -0.404128 -0.646465)} Vertex 14141 2.86327 19.0804 -1.27769 {normal=(0.646646 -0.246151 -0.636992)} Vertex 14142 3.03332 19.0436 -1.25659 {normal=(-0.388038 -0.113628 -0.899678)} Vertex 14143 2.96541 19.2787 -1.26226 {normal=(0.160211 -0.085196 -0.915445)} Vertex 14144 3.16285 19.2892 -1.34462 {normal=(-0.446485 0.028310 -0.888815)} Vertex 14145 3.18419 19.7708 -1.26603 {normal=(-0.330209 0.409057 -0.830563)} Vertex 14146 3.06912 19.5161 -1.26438 {normal=(-0.202559 0.093545 -0.908991)} Vertex 14147 2.96913 19.5155 -1.27679 {normal=(0.673825 -0.142711 -0.611594)} Vertex 14148 3.1058 17.8703 -0.413889 {normal=(0.529064 -0.838592 0.094323)} Vertex 14149 2.99376 17.8114 -0.362609 {normal=(0.619550 -0.767965 0.012809)} Vertex 14150 3.0111 17.8309 -0.248268 {normal=(0.773527 -0.575186 0.170604)} Vertex 14151 2.89067 17.731 -0.444173 {normal=(0.652710 -0.692888 -0.259847)} Vertex 14152 2.89215 17.6891 -0.3613 {normal=(0.773285 -0.470137 -0.351788)} Vertex 14153 3.15254 19.9505 -1.11799 {normal=(0.111993 0.597754 -0.709012)} Vertex 14154 2.88232 17.8339 -0.631934 {normal=(0.087649 -0.642725 -0.677951)} Vertex 14155 2.82904 17.7099 -0.521222 {normal=(0.642134 -0.581010 -0.450393)} Vertex 14156 2.82198 17.6338 -0.422811 {normal=(0.786442 -0.391403 -0.437584)} Vertex 14157 3.37089 20.2033 -0.510103 {normal=(0.772492 0.484112 -0.155239)} Vertex 14158 3.32819 20.1357 -0.348506 {normal=(0.699536 0.485050 0.388344)} Vertex 14159 2.82311 18.0471 2.25115 {normal=(0.890862 -0.447373 0.062594)} Vertex 14160 2.92788 18.259 2.11849 {normal=(0.942716 -0.307013 0.068162)} Vertex 14161 2.89687 18.1917 1.73727 {normal=(0.921772 -0.377643 -0.061350)} Vertex 14162 2.78346 17.9437 1.88996 {normal=(0.897316 -0.437553 0.035624)} Vertex 14163 2.67169 17.74 1.98118 {normal=(0.894943 -0.438109 0.078540)} Vertex 14164 2.78219 17.919 1.59677 {normal=(0.942073 -0.321009 0.054121)} Vertex 14165 2.6862 17.6969 1.70858 {normal=(0.916203 -0.365205 0.154881)} Vertex 14166 2.5909 17.5044 1.78175 {normal=(0.924175 -0.311693 0.205621)} Vertex 14167 2.75196 17.7478 1.46219 {normal=(0.942923 -0.229491 0.230663)} Vertex 14168 2.6668 17.5194 1.55328 {normal=(0.918882 -0.204814 0.329804)} Vertex 14169 2.6206 17.2976 1.57298 {normal=(0.916276 -0.120510 0.379811)} Vertex 14170 2.77253 17.597 1.3188 {normal=(0.922868 -0.105191 0.368726)} Vertex 14171 2.7317 17.3097 1.33507 {normal=(0.910018 -0.110568 0.399257)} Vertex 14172 2.7279 17.0074 1.25954 {normal=(0.918318 -0.097052 0.382970)} Vertex 14173 2.84508 17.3284 1.06314 {normal=(0.937531 -0.087901 0.334081)} Vertex 14174 2.83558 16.97 0.988263 {normal=(0.924002 -0.122176 0.361289)} Vertex 14175 2.81692 16.7043 0.917972 {normal=(0.928654 -0.189238 0.314883)} Vertex 14176 2.94537 16.9944 0.697168 {normal=(0.957057 -0.094137 0.258039)} Vertex 14177 2.90233 16.6733 0.640381 {normal=(0.938967 -0.265961 0.180216)} Vertex 14178 2.79253 16.3638 0.594316 {normal=(0.923627 -0.366532 0.087003)} Vertex 14179 2.94526 16.8008 0.345483 {normal=(0.958097 -0.233441 -0.114247)} Vertex 14180 2.81573 16.4235 0.292649 {normal=(0.926725 -0.351047 -0.108295)} Vertex 14181 2.65363 16.0695 0.242057 {normal=(0.874587 -0.458126 -0.132454)} Vertex 14182 2.81156 16.5971 0.000959501 {normal=(0.918733 -0.261545 -0.281758)} Vertex 14183 2.64726 16.2102 -0.0563925 {normal=(0.823739 -0.419105 -0.358825)} Vertex 14184 2.44129 15.8836 -0.03733 {normal=(0.775952 -0.529000 -0.326571)} Vertex 14185 2.61584 16.4504 -0.301753 {normal=(0.829224 -0.315999 -0.453173)} Vertex 14186 2.44814 16.1446 -0.408237 {normal=(0.905983 -0.311216 -0.224259)} Vertex 14187 2.39592 15.9953 -0.854753 {normal=(0.983715 -0.098562 -0.078371)} Vertex 14188 2.47664 16.5427 -0.868071 {normal=(0.957316 -0.185198 -0.212519)} Vertex 14189 2.36263 16.4452 -1.32006 {normal=(0.920844 -0.055053 -0.348631)} Vertex 14190 2.39096 15.4177 -1.0932 {normal=(0.986341 0.039293 -0.070988)} Vertex 14191 2.34517 15.5326 -0.457691 {normal=(0.975631 -0.096672 0.153577)} Vertex 14192 2.28943 15.9913 -1.46203 {normal=(0.915710 0.025627 -0.357626)} Vertex 14193 2.13132 16.4291 -1.72958 {normal=(0.785139 0.037768 -0.604961)} Vertex 14194 2.26593 16.8816 -1.53194 {normal=(0.813903 -0.027937 -0.571291)} Vertex 14195 1.96101 16.8867 -1.86767 {normal=(0.689312 0.018370 -0.720847)} Vertex 14196 2.02267 15.9372 -1.93836 {normal=(0.774168 0.147746 -0.601296)} Vertex 14197 1.72881 16.4844 -2.11231 {normal=(0.636835 0.105544 -0.759051)} Vertex 14198 1.44296 16.9935 -2.27836 {normal=(0.568156 0.035781 -0.819046)} Vertex 14199 1.9036 17.2963 -1.9345 {normal=(0.664269 -0.046012 -0.744601)} Vertex 14200 1.20513 16.4292 -2.49658 {normal=(0.497317 0.165601 -0.846983)} Vertex 14201 0.819171 17.0191 -2.6135 {normal=(0.355619 0.047158 -0.926369)} Vertex 14202 0.348603 16.8246 -2.77241 {normal=(0.172789 0.138327 -0.967616)} Vertex 14203 1.94369 22.5249 -1.87846 {normal=(0.573597 0.577007 -0.569136)} Vertex 14204 2.15486 21.9782 -2.07958 {normal=(0.678467 0.511554 -0.508430)} Vertex 14205 2.68718 21.7055 -1.62878 {normal=(0.796225 0.297066 -0.511555)} Vertex 14206 2.55342 22.2523 -1.37816 {normal=(0.759864 0.472090 -0.426912)} Vertex 14207 2.4642 22.7024 -0.855034 {normal=(0.717233 0.635683 -0.238186)} Vertex 14208 2.92641 21.7932 -1.01488 {normal=(0.917509 0.294767 -0.237001)} Vertex 14209 2.86179 22.1897 -0.553658 {normal=(0.892902 0.417243 -0.122902)} Vertex 14210 2.74562 22.4391 0.067847 {normal=(0.849923 0.503550 0.091081)} Vertex 14211 3.04199 21.6973 -0.439536 {normal=(0.970547 0.208701 -0.071134)} Vertex 14212 2.97344 21.9428 0.040644 {normal=(0.941164 0.309378 0.092266)} Vertex 14213 2.80738 22.0927 0.611176 {normal=(0.892526 0.373316 0.235662)} Vertex 14214 3.07833 21.5224 -0.0486632 {normal=(0.986405 0.106851 0.084810)} Vertex 14215 2.98465 21.6586 0.405563 {normal=(0.960177 0.184730 0.195516)} Vertex 14216 2.82016 21.7097 1.00202 {normal=(0.921291 0.237184 0.295239)} Vertex 14217 3.04917 21.1984 0.334235 {normal=(0.984030 0.064395 0.157745)} Vertex 14218 2.93729 21.1973 0.856603 {normal=(0.959838 0.058735 0.266081)} Vertex 14219 2.76138 21.1915 1.38622 {normal=(0.933834 0.074743 0.343356)} Vertex 14220 2.92976 20.6721 0.856704 {normal=(0.954790 0.013108 0.294986)} Vertex 14221 2.8041 20.6387 1.27543 {normal=(0.959595 0.024993 0.276836)} Vertex 14222 2.69115 20.6594 1.65803 {normal=(0.957165 0.106723 0.261155)} Vertex 14223 2.83632 20.1815 1.25458 {normal=(0.964328 0.141602 0.214981)} Vertex 14224 2.78153 20.2174 1.52849 {normal=(0.896863 0.255690 -0.105925)} Vertex 14225 1.29522 22.8827 -1.89195 {normal=(0.272930 0.827951 -0.481004)} Vertex 14226 1.46835 22.516 -2.29897 {normal=(0.433483 0.739142 -0.493331)} Vertex 14227 1.90123 22.962 -1.35299 {normal=(0.449998 0.788692 -0.381335)} Vertex 14228 0.644567 22.795 -2.35757 {normal=(0.209072 0.887979 -0.391422)} Vertex 14229 0.868941 23.2924 -1.16829 {normal=(0.150997 0.941938 -0.278127)} Vertex 14230 1.75351 23.2267 -0.553016 {normal=(0.349913 0.915998 -0.133431)} Vertex 14231 2.36108 22.9299 -0.0984478 {normal=(0.648506 0.741598 0.008050)} Vertex 14232 0.719608 23.4896 -0.104208 {normal=(0.142780 0.979688 -0.077538)} Vertex 14233 1.51627 23.3284 0.43791 {normal=(0.317762 0.930677 0.102365)} Vertex 14234 2.08348 22.9922 0.780026 {normal=(0.565807 0.772261 0.245318)} Vertex 14235 2.49033 22.5407 0.819794 {normal=(0.774426 0.562985 0.268964)} Vertex 14236 1.2212 23.2002 1.3438 {normal=(0.302579 0.877733 0.356224)} Vertex 14237 1.69877 22.8748 1.59017 {normal=(0.445865 0.776512 0.432770)} Vertex 14238 2.15906 22.5494 1.55278 {normal=(0.659042 0.610728 0.417422)} Vertex 14239 2.54555 22.1617 1.28081 {normal=(0.829541 0.420685 0.355092)} Vertex 14240 1.32712 22.6783 2.17585 {normal=(0.338090 0.727926 0.588757)} Vertex 14241 1.8068 22.4321 2.1207 {normal=(0.527357 0.619501 0.570765)} Vertex 14242 2.23113 22.129 1.92705 {normal=(0.727789 0.459261 0.494644)} Vertex 14243 2.56875 21.715 1.63538 {normal=(0.868014 0.267177 0.407616)} Vertex 14244 1.55095 22.1896 2.56933 {normal=(0.413093 0.632386 0.634557)} Vertex 14245 1.91913 21.9645 2.44301 {normal=(0.622833 0.487477 0.605580)} Vertex 14246 2.29818 21.6471 2.1984 {normal=(0.794335 0.329190 0.496946)} Vertex 14247 2.55564 21.1911 1.90285 {normal=(0.910645 0.152554 0.376442)} Vertex 14248 1.69819 21.6944 2.85752 {normal=(0.511792 0.493920 0.695072)} Vertex 14249 2.05499 21.461 2.67383 {normal=(0.705506 0.389999 0.583160)} Vertex 14250 2.3621 21.1691 2.38344 {normal=(0.852722 0.288320 0.418517)} Vertex 14251 2.56352 20.777 2.06475 {normal=(0.827493 0.433048 0.039567)} Vertex 14252 1.87592 21.1857 3.04028 {normal=(0.572569 0.410803 0.700232)} Vertex 14253 2.17837 21.0514 2.79948 {normal=(0.583967 0.610168 0.445495)} Vertex 14254 1.60052 21.375 3.13107 {normal=(0.397262 0.430535 0.805242)} Vertex 14255 1.73925 20.9281 3.2686 {normal=(0.312145 0.576957 0.719513)} Vertex 14256 1.50073 21.0317 3.3318 {normal=(0.378419 0.412439 0.828072)} Vertex 14257 1.42871 21.8881 2.88529 {normal=(0.328114 0.543981 0.766599)} Vertex 14258 1.35032 21.5536 3.12097 {normal=(0.255042 0.491052 0.831779)} Vertex 14259 1.26187 22.1214 2.76451 {normal=(0.219169 0.641674 0.720504)} Vertex 14260 1.26796 21.1793 3.35982 {normal=(0.305301 0.463855 0.829499)} Vertex 14261 1.34506 20.7274 3.57498 {normal=(0.273213 0.588723 0.739682)} Vertex 14262 1.13311 20.7965 3.63448 {normal=(0.327748 0.482933 0.811362)} Vertex 14263 1.06514 21.7381 3.07463 {normal=(0.187345 0.535165 0.823420)} Vertex 14264 0.975957 21.318 3.35994 {normal=(0.218599 0.524917 0.822101)} Vertex 14265 0.953818 22.3906 2.62477 {normal=(0.219447 0.642686 0.731132)} Vertex 14266 0.735424 21.9464 3.00825 {normal=(0.182845 0.558190 0.808809)} Vertex 14267 0.896035 20.8827 3.66905 {normal=(0.235081 0.499827 0.831674)} Vertex 14268 0.977992 20.5018 3.86529 {normal=(0.147784 0.541582 0.815665)} Vertex 14269 0.769107 20.5162 3.8996 {normal=(0.086579 0.405835 0.901862)} Vertex 14270 0.664893 21.4761 3.3324 {normal=(0.191944 0.539320 0.819878)} Vertex 14271 0.604652 21.0306 3.63944 {normal=(0.119960 0.506792 0.849833)} Vertex 14272 0.464559 21.8284 3.14763 {normal=(0.149204 0.556548 0.816632)} Vertex 14273 0.539735 20.6013 3.8624 {normal=(-0.012781 0.385967 0.920508)} Vertex 14274 0.613622 20.2605 3.9899 {normal=(-0.135923 0.371768 0.910588)} Vertex 14275 0.419984 20.2906 3.96428 {normal=(0.020723 0.251727 0.959449)} Vertex 14276 0.36898 21.3636 3.46829 {normal=(0.081598 0.519849 0.848948)} Vertex 14277 0.348268 20.8542 3.74269 {normal=(0.071085 0.425989 0.898233)} Vertex 14278 0.267547 22.2663 2.86407 {normal=(0.079563 0.595674 0.797550)} Vertex 14279 0.165866 21.7597 3.22668 {normal=(-0.013490 0.547141 0.834572)} Vertex 14280 0.291426 20.4599 3.92512 {normal=(0.188034 0.331833 0.922700)} Vertex 14281 0.264117 20.074 4.00327 {normal=(0.109881 -0.062398 0.979777)} Vertex 14282 0.18348 20.2626 4.01004 {normal=(0.126334 0.163555 0.969795)} Vertex 14283 0.220345 20.8318 3.77493 {normal=(0.061012 0.437227 0.890608)} Vertex 14284 0.104004 20.5014 3.93844 {normal=(0.021102 0.361227 0.927280)} Vertex 14285 0.0712475 20.1084 4.02616 {normal=(-0.003947 -0.036094 0.994313)} Vertex 14286 0.11916 21.2592 3.52826 {normal=(-0.091309 0.503447 0.858842)} Vertex 14287 0.545489 22.6363 2.51232 {normal=(0.167545 0.693901 0.695340)} Vertex 14288 0.25368 22.9193 2.25024 {normal=(0.096406 0.786640 0.600317)} Vertex 14289 0.535348 23.2513 1.6263 {normal=(0.147004 0.886820 0.425984)} Vertex 14290 0.240251 23.4996 1.03711 {normal=(0.036878 0.964224 0.225300)} Vertex 14291 0.313861 23.5554 0.123226 {normal=(0.053549 0.989337 -0.038441)} Vertex 14292 0.88038 22.9352 2.03166 {normal=(0.232383 0.804502 0.540450)} Vertex 14293 0.765361 23.4736 0.892861 {normal=(0.186219 0.953843 0.188585)} Vertex 14294 1.7677 15.3069 2.8449 {normal=(0.680946 -0.454611 0.574011)} Vertex 14295 1.97126 15.6252 2.84313 {normal=(0.697790 -0.344248 0.619934)} Vertex 14296 2.17292 15.65 2.60117 {normal=(0.799729 -0.366051 0.463882)} Vertex 14297 1.99554 15.2669 2.5356 {normal=(0.729743 -0.413897 0.539924)} Vertex 14298 1.35555 15.0945 3.1912 {normal=(0.761429 -0.336373 0.547941)} Vertex 14299 1.51141 15.3909 3.20653 {normal=(0.685579 -0.395621 0.608754)} Vertex 14300 1.59682 15.0077 2.80972 {normal=(0.700428 -0.410819 0.582210)} Vertex 14301 1.80064 14.9025 2.5155 {normal=(0.698526 -0.414740 0.581201)} Vertex 14302 2.21279 15.2544 2.20347 {normal=(0.843264 -0.346742 0.392765)} Vertex 14303 2.00516 14.8788 2.21333 {normal=(0.768263 -0.528530 0.305241)} Vertex 14304 1.44846 14.6673 2.77175 {normal=(0.734919 -0.425778 0.519191)} Vertex 14305 1.62913 14.595 2.50508 {normal=(0.664747 -0.543916 0.486572)} Vertex 14306 1.77287 14.5991 2.2764 {normal=(0.677207 -0.687207 0.180140)} Vertex 14307 2.05299 14.9123 1.86719 {normal=(0.734507 -0.649774 -0.138305)} Vertex 14308 1.78844 14.6413 1.96039 {normal=(0.622208 -0.765051 -0.138677)} Vertex 14309 1.5455 14.4538 2.3881 {normal=(0.518869 -0.822912 0.160233)} Vertex 14310 1.51512 14.4377 2.07738 {normal=(0.477763 -0.869118 -0.081399)} Vertex 14311 1.70444 14.6818 1.58615 {normal=(0.595306 -0.760933 -0.251967)} Vertex 14312 1.44906 14.4732 1.71348 {normal=(0.477792 -0.850701 -0.209412)} Vertex 14313 1.24504 14.3193 2.50183 {normal=(0.464264 -0.875230 0.082001)} Vertex 14314 1.24918 14.3088 2.17529 {normal=(0.362260 -0.927465 -0.051443)} Vertex 14315 1.25053 14.3414 1.89355 {normal=(0.294098 -0.934472 -0.181037)} Vertex 14316 1.38561 14.5178 1.41023 {normal=(0.429248 -0.858783 -0.253541)} Vertex 14317 1.14161 14.376 1.64364 {normal=(0.195576 -0.941964 -0.257740)} Vertex 14318 1.06019 14.2593 2.12409 {normal=(0.230353 -0.957419 -0.160234)} Vertex 14319 0.854114 14.267 1.90716 {normal=(0.143538 -0.953823 -0.259096)} Vertex 14320 0.875194 14.4118 1.45089 {normal=(0.061392 -0.931455 -0.355536)} Vertex 14321 0.543438 14.2966 1.72101 {normal=(0.074941 -0.934592 -0.346352)} Vertex 14322 0.778079 14.1457 2.35863 {normal=(0.256108 -0.946330 -0.184911)} Vertex 14323 0.546759 14.1523 2.13076 {normal=(0.146252 -0.947351 -0.280208)} Vertex 14324 0.269555 14.1825 1.95781 {normal=(0.065068 -0.936874 -0.342137)} Vertex 14325 0.239458 14.3407 1.55677 {normal=(0.053773 -0.919143 -0.389771)} Vertex 14326 0.24769 14.0492 2.3442 {normal=(0.081835 -0.954845 -0.281407)} Vertex 14327 2.22982 15.9686 2.72973 {normal=(0.734832 -0.281356 0.586226)} Vertex 14328 2.34805 16.1459 2.59609 {normal=(0.922394 -0.240693 0.275516)} Vertex 14329 2.30964 15.8377 2.41181 {normal=(0.928310 -0.255694 0.250854)} Vertex 14330 2.39074 16.122 2.28713 {normal=(0.982736 -0.134876 0.103817)} Vertex 14331 2.33521 15.7889 2.2478 {normal=(0.934983 -0.192825 0.282564)} Vertex 14332 2.43127 15.9584 2.03461 {normal=(0.945605 -0.099994 0.306185)} Vertex 14333 2.34902 15.6363 2.12471 {normal=(0.920427 -0.202874 0.328374)} Vertex 14334 2.4343 15.6681 1.84602 {normal=(0.955579 -0.219646 0.181827)} Vertex 14335 2.34332 15.3345 1.89665 {normal=(0.913565 -0.359246 0.086732)} Vertex 14336 2.36392 15.4354 1.64962 {normal=(0.874479 -0.448212 -0.151858)} Vertex 14337 2.25222 15.1964 1.76974 {normal=(0.809853 -0.541624 -0.192073)} Vertex 14338 2.13769 15.1834 1.46771 {normal=(0.768450 -0.593332 -0.234601)} Vertex 14339 1.94235 14.9179 1.52952 {normal=(0.697143 -0.662329 -0.269108)} Vertex 14340 1.84058 14.9334 1.23301 {normal=(0.678447 -0.700856 -0.211643)} Vertex 14341 1.61859 14.7197 1.29245 {normal=(0.609628 -0.758304 -0.223937)} Vertex 14342 1.58169 14.7432 1.03047 {normal=(0.659642 -0.722746 0.063806)} Vertex 14343 1.26695 14.5538 1.18731 {normal=(0.344230 -0.876119 -0.077806)} Vertex 14344 0.967119 14.4102 1.07121 {normal=(0.288140 -0.642598 0.567648)} Vertex 14345 0.539586 14.4544 1.33663 {normal=(0.093480 -0.936116 -0.067571)} Vertex 14346 0.250288 14.328 1.20424 {normal=(0.094350 -0.674940 0.591240)} Vertex 14347 2.6068 17.6893 2.81173 {normal=(0.937203 -0.312153 0.122509)} Vertex 14348 2.6635 17.8898 2.91371 {normal=(0.898821 -0.301840 0.287449)} Vertex 14349 2.71987 17.9073 2.61577 {normal=(0.894727 -0.431094 0.099159)} Vertex 14350 2.62242 17.7001 2.54428 {normal=(0.920959 -0.385620 0.032834)} Vertex 14351 2.52749 17.394 2.88014 {normal=(0.955439 -0.183567 0.192237)} Vertex 14352 2.52684 17.5748 3.03458 {normal=(0.867694 -0.248208 0.395627)} Vertex 14353 2.55786 17.4891 2.66425 {normal=(0.974084 -0.215772 -0.003171)} Vertex 14354 2.48619 17.098 2.85292 {normal=(0.941376 -0.163076 0.256723)} Vertex 14355 2.44674 17.2559 3.037 {normal=(0.769797 -0.224911 0.548518)} Vertex 14356 2.52343 17.2319 2.68483 {normal=(0.987964 -0.118085 0.003900)} Vertex 14357 2.43334 16.6809 2.75253 {normal=(0.938357 -0.197468 0.242232)} Vertex 14358 2.40225 16.9051 2.96363 {normal=(0.724817 -0.232714 0.592270)} Vertex 14359 2.4871 16.9193 2.64973 {normal=(0.984372 -0.141249 0.015059)} Vertex 14360 2.33406 16.4071 2.82313 {normal=(0.737585 -0.275702 0.563232)} Vertex 14361 2.41794 16.4198 2.48821 {normal=(0.985433 -0.139594 0.058240)} Vertex 14362 2.4249 16.6271 2.34102 {normal=(0.994056 -0.051462 -0.076224)} Vertex 14363 2.41054 16.3547 2.17798 {normal=(0.989883 -0.025815 0.095545)} Vertex 14364 2.50757 15.9838 1.79167 {normal=(0.961648 -0.126141 0.231426)} Vertex 14365 2.54743 15.98 1.54726 {normal=(0.972257 -0.205171 0.074746)} Vertex 14366 2.46436 15.6937 1.58482 {normal=(0.940496 -0.325779 -0.013370)} Vertex 14367 2.44675 15.7098 1.29724 {normal=(0.900271 -0.424229 -0.061756)} Vertex 14368 2.30761 15.4502 1.36286 {normal=(0.823234 -0.542613 -0.154629)} Vertex 14369 2.2226 15.4052 1.04005 {normal=(0.782535 -0.614572 -0.087296)} Vertex 14370 2.02893 15.1542 1.14037 {normal=(0.736964 -0.655563 -0.156053)} Vertex 14371 1.9857 15.1544 0.849041 {normal=(0.740726 -0.668500 -0.035389)} Vertex 14372 1.80331 14.9533 0.944543 {normal=(0.711966 -0.695441 -0.018448)} Vertex 14373 1.82154 14.9244 0.655079 {normal=(0.799233 -0.518368 0.259066)} Vertex 14374 1.63285 14.5924 0.723403 {normal=(0.760985 -0.382976 0.473348)} Vertex 14375 2.02679 15.0855 0.314548 {normal=(0.889696 -0.350684 0.260465)} Vertex 14376 1.90526 14.7347 0.337779 {normal=(0.854788 -0.251673 0.437742)} Vertex 14377 1.99289 15.1456 0.593457 {normal=(0.802157 -0.577268 0.114830)} Vertex 14378 2.13966 15.3374 0.52941 {normal=(0.768628 -0.633861 -0.037760)} Vertex 14379 2.16084 15.3544 0.760692 {normal=(0.754974 -0.654603 -0.029745)} Vertex 14380 2.35294 15.5871 0.726599 {normal=(0.794425 -0.605507 0.014182)} Vertex 14381 2.41083 15.6693 0.996099 {normal=(0.848295 -0.523531 -0.011086)} Vertex 14382 2.54645 15.9369 1.0223 {normal=(0.901646 -0.416388 0.091351)} Vertex 14383 2.54936 15.9831 1.2943 {normal=(0.951894 -0.298822 0.025251)} Vertex 14384 2.60592 16.215 1.33537 {normal=(0.957341 -0.226955 0.149602)} Vertex 14385 2.57753 16.2323 1.56529 {normal=(0.978244 -0.072102 0.176641)} Vertex 14386 2.56241 16.4792 1.64187 {normal=(0.957613 -0.016042 0.284349)} Vertex 14387 2.51962 16.258 1.79875 {normal=(0.958454 -0.008061 0.281677)} Vertex 14388 2.49372 16.5225 1.85876 {normal=(0.949806 0.022247 0.311884)} Vertex 14389 2.46423 16.7548 1.93004 {normal=(0.956539 -0.014605 0.286332)} Vertex 14390 2.4326 16.5084 2.04291 {normal=(0.967712 0.013567 0.239645)} Vertex 14391 2.41883 16.7306 2.12516 {normal=(0.988035 -0.031960 0.093752)} Vertex 14392 2.43185 16.9309 2.22227 {normal=(0.990239 -0.107341 -0.021357)} Vertex 14393 2.45429 16.8644 2.44615 {normal=(0.984167 -0.090343 -0.143467)} Vertex 14394 2.49012 17.0578 2.51955 {normal=(0.982213 -0.112955 -0.142459)} Vertex 14395 2.44719 16.2418 2.01684 {normal=(0.954642 -0.004933 0.292996)} Vertex 14396 2.81522 18.1098 2.61646 {normal=(0.924010 -0.289345 0.198690)} Vertex 14397 2.70286 17.8394 2.29004 {normal=(0.882302 -0.467057 0.052590)} Vertex 14398 2.59999 17.6213 2.25186 {normal=(0.918882 -0.391078 0.039477)} Vertex 14399 2.57553 17.5355 1.99291 {normal=(0.925418 -0.368303 0.075696)} Vertex 14400 2.51713 17.3611 1.9688 {normal=(0.960894 -0.243761 0.105733)} Vertex 14401 2.54485 17.3282 1.78533 {normal=(0.946160 -0.168242 0.260803)} Vertex 14402 2.54838 17.1169 1.71925 {normal=(0.946171 -0.059089 0.315289)} Vertex 14403 2.62907 17.0543 1.50188 {normal=(0.924893 -0.060571 0.374862)} Vertex 14404 2.66213 16.8134 1.38897 {normal=(0.934086 -0.050595 0.352964)} Vertex 14405 2.74413 16.7666 1.16012 {normal=(0.937209 -0.103700 0.330800)} Vertex 14406 2.76344 16.5825 1.01917 {normal=(0.948089 -0.164585 0.266346)} Vertex 14407 2.54129 17.4709 2.42282 {normal=(0.958493 -0.278911 -0.022348)} Vertex 14408 2.51864 17.3982 2.17516 {normal=(0.954703 -0.291507 0.033410)} Vertex 14409 2.47736 17.2227 2.1116 {normal=(0.981821 -0.166389 0.066312)} Vertex 14410 2.49488 17.1723 1.92209 {normal=(0.972829 -0.105358 0.191733)} Vertex 14411 2.50436 16.9447 1.83267 {normal=(0.955163 -0.054277 0.287563)} Vertex 14412 2.57507 16.8772 1.61872 {normal=(0.938228 -0.032788 0.344041)} Vertex 14413 2.61053 16.6355 1.50903 {normal=(0.940851 -0.040561 0.335181)} Vertex 14414 2.69142 16.5831 1.27125 {normal=(0.948592 -0.090126 0.299085)} Vertex 14415 2.68493 16.3712 1.18912 {normal=(0.938921 -0.233025 0.241813)} Vertex 14416 2.74046 16.364 0.911938 {normal=(0.937842 -0.287418 0.183946)} Vertex 14417 2.6489 16.097 0.854136 {normal=(0.899256 -0.410702 0.138616)} Vertex 14418 2.65501 16.0462 0.552067 {normal=(0.888967 -0.452052 0.031239)} Vertex 14419 2.47573 15.7437 0.503628 {normal=(0.819674 -0.568110 -0.014932)} Vertex 14420 2.45394 15.7507 0.225572 {normal=(0.749688 -0.607112 -0.221667)} Vertex 14421 2.2596 15.5366 0.270787 {normal=(0.721952 -0.652392 -0.209390)} Vertex 14422 2.267 15.5909 0.008906 {normal=(0.867510 -0.424000 -0.001607)} Vertex 14423 2.15791 15.2548 0.0257277 {normal=(0.923642 -0.243104 0.273328)} Vertex 14424 2.27465 15.0098 -0.346048 {normal=(0.925203 -0.107756 0.355913)} Vertex 14425 2.08745 14.8488 0.013308 {normal=(0.915232 -0.157103 0.365610)} Vertex 14426 2.12877 15.3373 0.310575 {normal=(0.863079 -0.466679 0.022299)} Vertex 14427 2.29233 15.5083 0.486601 {normal=(0.735371 -0.664064 -0.085762)} Vertex 14428 2.52377 15.837 0.767326 {normal=(0.851812 -0.513609 0.081560)} Vertex 14429 2.63186 16.1727 1.10916 {normal=(0.911677 -0.363145 0.187540)} Vertex 14430 2.6276 16.4112 1.41276 {normal=(0.946775 -0.139743 0.279335)} Vertex 14431 2.53182 16.7153 1.73368 {normal=(0.945992 -0.008836 0.323788)} Vertex 14432 2.45204 16.9681 2.02477 {normal=(0.973210 -0.107693 0.182903)} Vertex 14433 2.46386 17.1415 2.15859 {normal=(0.986884 -0.141303 0.035596)} Vertex 14434 2.4649 17.111 2.33579 {normal=(0.983412 -0.139521 -0.099855)} Vertex 14435 2.51152 17.2925 2.48898 {normal=(0.984202 -0.141716 -0.101224)} Vertex 14436 2.48622 17.2801 2.29212 {normal=(0.982191 -0.171690 -0.053214)} Vertex 14437 0.106369 19.2738 4.2155 {normal=(0.278428 0.614985 0.725055)} Vertex 14438 0.130615 19.633 3.95872 {normal=(0.217891 0.174636 0.926984)} Vertex 14439 0.202298 19.4144 4.03379 {normal=(0.478279 0.456105 0.726894)} Vertex 14440 0.118347 18.9915 4.43412 {normal=(0.268075 0.573697 0.760008)} Vertex 14441 0.21382 19.1035 4.29341 {normal=(0.523503 0.530476 0.652288)} Vertex 14442 0.138425 18.7564 4.60399 {normal=(0.254743 0.591150 0.747202)} Vertex 14443 0.243778 18.8462 4.47397 {normal=(0.568236 0.495735 0.627538)} Vertex 14444 0.285495 19.2215 4.11743 {normal=(0.701140 0.465469 0.527691)} Vertex 14445 0.302558 19.5398 3.89489 {normal=(0.597339 0.019877 0.750222)} Vertex 14446 0.342897 19.3324 3.91708 {normal=(0.821840 0.296483 0.465095)} Vertex 14447 0.319928 18.9362 4.30925 {normal=(0.756664 0.391188 0.506699)} Vertex 14448 0.381511 19.0316 4.11601 {normal=(0.846472 0.337415 0.401934)} Vertex 14449 0.347286 18.6831 4.45134 {normal=(0.825857 0.381242 0.392981)} Vertex 14450 0.408477 18.7387 4.25699 {normal=(0.903397 0.235969 0.351285)} Vertex 14451 0.441777 19.1147 3.89214 {normal=(0.865225 0.335936 0.370318)} Vertex 14452 0.42136 19.4005 3.71681 {normal=(0.834723 -0.011878 0.494781)} Vertex 14453 0.512336 19.1835 3.6553 {normal=(0.827295 0.357849 0.422193)} Vertex 14454 0.470411 18.8162 4.03647 {normal=(0.913334 0.191372 0.355378)} Vertex 14455 0.549885 18.8945 3.82096 {normal=(0.815549 0.275740 0.492033)} Vertex 14456 0.487149 18.541 4.13999 {normal=(0.903895 0.323967 0.248906)} Vertex 14457 0.532291 18.5947 3.94677 {normal=(0.884407 0.203759 0.398143)} Vertex 14458 0.747407 19.0331 3.49669 {normal=(0.339832 0.512858 0.750412)} Vertex 14459 0.652124 18.9768 3.62359 {normal=(0.645153 0.444901 0.597022)} Vertex 14460 0.571521 19.2397 3.49557 {normal=(0.753233 0.182508 0.579400)} Vertex 14461 0.630455 19.159 3.4471 {normal=(0.602242 0.461179 0.606653)} Vertex 14462 0.684065 18.6974 3.74905 {normal=(0.582516 0.302452 0.743342)} Vertex 14463 0.843027 18.7836 3.60991 {normal=(0.340859 0.365539 0.843753)} Vertex 14464 0.71867 18.4354 3.81379 {normal=(0.490810 0.187622 0.846554)} Vertex 14465 0.593484 18.5698 3.86474 {normal=(0.655951 0.211096 0.712328)} Vertex 14466 0.856568 18.5228 3.71533 {normal=(0.372198 0.304119 0.869151)} Vertex 14467 0.0983095 19.8864 3.98774 {normal=(0.110252 -0.119715 0.982476)} Vertex 14468 0.303955 19.8483 3.94971 {normal=(0.064887 -0.183336 0.967811)} Vertex 14469 0.371069 19.76 3.92121 {normal=(0.159184 -0.298190 0.905835)} Vertex 14470 0.493944 19.7927 3.92141 {normal=(-0.077095 -0.577908 0.742368)} Vertex 14471 0.43601 19.6145 3.81791 {normal=(0.504933 -0.434911 0.693638)} Vertex 14472 0.524256 19.4119 3.55892 {normal=(0.644888 -0.285357 0.663305)} Vertex 14473 0.572944 19.6119 3.70253 {normal=(0.382364 -0.685970 0.597755)} Vertex 14474 0.628386 19.3251 3.45276 {normal=(0.325681 -0.211911 0.909596)} Vertex 14475 0.637193 19.2705 3.44236 {normal=(-0.009570 -0.198965 0.916475)} Vertex 14476 0.619016 19.2255 3.43355 {normal=(0.457033 -0.129285 0.830635)} Vertex 14477 0.625474 19.4194 3.49701 {normal=(0.408543 -0.458257 0.772527)} Vertex 14478 0.700072 19.3345 3.46515 {normal=(-0.446680 0.105801 0.873647)} Vertex 14479 0.692008 19.2612 3.4675 {normal=(-0.305432 -0.102722 0.921752)} Vertex 14480 0.759312 19.1857 3.46643 {normal=(-0.411429 -0.287877 0.855142)} Vertex 14481 0.652985 19.2131 3.42981 {normal=(-0.453263 -0.282818 0.839244)} Vertex 14482 0.65291 19.3056 3.44871 {normal=(-0.422808 -0.041752 0.890649)} Vertex 14483 0.982043 19.0045 3.5013 {normal=(-0.008415 0.338611 0.929587)} Vertex 14484 1.03647 18.8713 3.54634 {normal=(0.048257 0.308614 0.941807)} Vertex 14485 0.16657 18.4271 4.84758 {normal=(0.238429 0.348702 0.878629)} Vertex 14486 0.154157 18.5906 4.73542 {normal=(0.237070 0.623020 0.727699)} Vertex 14487 0.302702 18.4908 4.74114 {normal=(0.571478 0.495459 0.608083)} Vertex 14488 0.416252 18.3676 4.65784 {normal=(0.831874 0.236975 0.469026)} Vertex 14489 0.383788 18.5208 4.56279 {normal=(0.806916 0.469705 0.340466)} Vertex 14490 0.47371 18.4006 4.46946 {normal=(0.873039 0.393326 0.279217)} Vertex 14491 0.530477 18.3091 4.40568 {normal=(0.877568 0.276372 0.362498)} Vertex 14492 0.515007 18.4222 4.27491 {normal=(0.812983 0.534327 0.217951)} Vertex 14493 0.578084 18.3465 4.24831 {normal=(0.710475 0.597736 0.338798)} Vertex 14494 0.656353 18.2612 4.2559 {normal=(0.665128 0.522167 0.516181)} Vertex 14495 0.627328 18.3681 4.10532 {normal=(0.561419 0.781570 0.260241)} Vertex 14496 0.715457 18.2883 4.12922 {normal=(0.682488 0.651790 0.297558)} Vertex 14497 0.804434 18.1663 4.12278 {normal=(0.854197 0.384840 0.285067)} Vertex 14498 0.715009 18.316 4.02632 {normal=(0.723883 0.671255 -0.019546)} Vertex 14499 0.800952 18.1905 4.01767 {normal=(0.864532 0.452888 -0.126134)} Vertex 14500 0.706098 18.2978 3.84105 {normal=(0.543492 0.153308 0.816802)} Vertex 14501 0.845099 18.2667 3.77755 {normal=(0.321126 0.111589 0.935336)} Vertex 14502 0.749665 18.2333 3.94112 {normal=(0.768917 0.483341 -0.404884)} Vertex 14503 0.810299 18.0793 3.91875 {normal=(0.892071 0.317289 -0.291074)} Vertex 14504 0.852782 18.0272 3.99273 {normal=(0.960526 0.141176 -0.121295)} Vertex 14505 0.841272 18.0252 3.84683 {normal=(0.699340 0.503876 0.470815)} Vertex 14506 0.916301 18.0168 3.79495 {normal=(0.497034 0.421099 0.748799)} Vertex 14507 0.924204 17.9353 3.84813 {normal=(0.589700 0.427870 0.679311)} Vertex 14508 0.810524 17.7882 4.01954 {normal=(0.747589 0.037030 0.648308)} Vertex 14509 0.847953 17.8198 3.96971 {normal=(0.726689 0.152865 0.657809)} Vertex 14510 0.826296 17.7363 4.02159 {normal=(0.649303 0.235761 0.712958)} Vertex 14511 0.834396 17.9083 4.0584 {normal=(0.918163 -0.258138 0.289987)} Vertex 14512 0.801283 17.8116 4.04826 {normal=(0.814780 -0.283494 0.466596)} Vertex 14513 0.774593 17.8207 4.10915 {normal=(0.613021 -0.502007 0.555746)} Vertex 14514 0.800828 17.9158 4.14713 {normal=(0.844365 -0.274272 0.443420)} Vertex 14515 0.705896 18.021 4.31027 {normal=(0.718371 -0.004186 0.679349)} Vertex 14516 0.79155 18.0358 4.1956 {normal=(0.839852 0.001844 0.529498)} Vertex 14517 0.742208 17.921 4.24348 {normal=(0.676641 -0.383918 0.592147)} Vertex 14518 0.522165 18.0742 4.45862 {normal=(0.735685 0.020206 0.658690)} Vertex 14519 0.632011 18.1231 4.35484 {normal=(0.664869 0.208815 0.715612)} Vertex 14520 0.581582 17.9908 4.41321 {normal=(0.555257 -0.310010 0.711845)} Vertex 14521 0.510353 18.1614 4.47075 {normal=(0.878180 -0.030068 0.464258)} Vertex 14522 0.462395 18.085 4.54889 {normal=(0.854668 -0.166871 0.476776)} Vertex 14523 0.296274 18.0944 4.80199 {normal=(0.569255 -0.228960 0.751127)} Vertex 14524 0.410362 18.1812 4.67709 {normal=(0.826530 -0.088013 0.543011)} Vertex 14525 0.382829 18.0096 4.65018 {normal=(0.678512 -0.514430 0.472675)} Vertex 14526 0.163354 18.2128 4.87284 {normal=(0.251828 -0.028304 0.951918)} Vertex 14527 0.144251 17.9846 4.82203 {normal=(0.228739 -0.501046 0.801306)} Vertex 14528 0.0943477 17.7449 4.58391 {normal=(0.248154 -0.709368 0.641672)} Vertex 14529 0.210896 17.8663 4.67153 {normal=(0.482155 -0.686140 0.508566)} Vertex 14530 0.270094 17.9011 4.33923 {normal=(0.821102 -0.536803 0.073557)} Vertex 14531 0.23888 17.8356 4.3913 {normal=(0.949667 -0.276075 0.022207)} Vertex 14532 0.264227 17.8706 4.51387 {normal=(0.822484 -0.547518 0.024268)} Vertex 14533 0.301146 17.928 4.43803 {normal=(0.621573 -0.757429 -0.051980)} Vertex 14534 0.091416 17.5324 4.40295 {normal=(0.225049 -0.400903 0.863618)} Vertex 14535 0.162869 17.6686 4.45227 {normal=(0.604771 -0.474284 0.581403)} Vertex 14536 0.254071 17.8266 4.29177 {normal=(0.902136 -0.092871 0.371638)} Vertex 14537 0.232631 17.773 4.36289 {normal=(0.933656 -0.136453 0.252810)} Vertex 14538 0.321503 17.6164 4.27653 {normal=(0.464255 0.204833 0.843295)} Vertex 14539 0.243183 17.6933 4.31734 {normal=(0.752022 0.030302 0.606647)} Vertex 14540 0.339527 17.7895 4.19941 {normal=(0.509161 0.271718 0.800645)} Vertex 14541 0.442805 17.7487 4.17368 {normal=(0.335569 0.359165 0.869740)} Vertex 14542 0.61416 17.7058 4.13188 {normal=(0.270121 0.270708 0.917875)} Vertex 14543 0.552935 17.8149 4.10912 {normal=(0.200329 0.255617 0.934969)} Vertex 14544 0.69849 17.7851 4.09385 {normal=(0.128354 -0.115073 0.900644)} Vertex 14545 0.0887898 17.3079 4.34614 {normal=(0.045609 -0.132906 0.988136)} Vertex 14546 0.201062 17.4469 4.34721 {normal=(0.276836 -0.078705 0.943753)} Vertex 14547 0.142173 17.197 4.32691 {normal=(0.102437 -0.339035 0.870302)} Vertex 14548 0.334144 17.3465 4.31041 {normal=(0.253023 -0.012443 0.961147)} Vertex 14549 0.493375 17.5371 4.22959 {normal=(0.336123 0.226324 0.911990)} Vertex 14550 0.277237 17.1207 4.28528 {normal=(0.178754 -0.352334 0.907421)} Vertex 14551 0.515484 17.2571 4.25642 {normal=(0.303764 -0.099134 0.941328)} Vertex 14552 0.192709 16.9692 3.92377 {normal=(0.201520 -0.907279 0.332354)} Vertex 14553 0.253879 17.0429 4.20436 {normal=(0.177642 -0.891105 0.380075)} Vertex 14554 0.435877 17.0429 4.00722 {normal=(0.220212 -0.953695 0.204272)} Vertex 14555 0.210659 15.9433 4.09872 {normal=(0.131553 0.797550 0.568056)} Vertex 14556 0.176234 16.0679 3.85141 {normal=(0.130331 0.815824 0.542608)} Vertex 14557 0.384863 16.003 3.91659 {normal=(0.177189 0.883526 0.432593)} Vertex 14558 0.228722 15.5868 4.13207 {normal=(0.157032 -0.363015 0.900064)} Vertex 14559 0.222939 15.8461 4.16344 {normal=(0.195916 0.169978 0.951797)} Vertex 14560 0.451216 15.7078 4.09795 {normal=(0.312161 -0.103586 0.937313)} Vertex 14561 0.804762 17.6017 4.08885 {normal=(0.468294 0.273100 0.835061)} Vertex 14562 0.694285 17.4312 4.17975 {normal=(0.371380 0.138497 0.912846)} Vertex 14563 0.758545 17.7265 4.0724 {normal=(0.524926 0.107565 0.809369)} Vertex 14564 0.730175 17.1985 4.16505 {normal=(0.414239 -0.286315 0.848479)} Vertex 14565 0.867258 17.3284 4.11305 {normal=(0.503004 -0.013051 0.853178)} Vertex 14566 0.554759 17.0271 3.79132 {normal=(0.266785 -0.889372 0.332015)} Vertex 14567 0.701882 17.1191 4.08502 {normal=(0.279970 -0.877523 0.350973)} Vertex 14568 0.822169 17.0972 3.83698 {normal=(0.249808 -0.947041 0.199765)} Vertex 14569 0.623941 15.9205 3.96971 {normal=(0.282564 0.777390 0.540145)} Vertex 14570 0.524746 16.0604 3.7292 {normal=(0.269937 0.794196 0.522098)} Vertex 14571 0.775964 15.9736 3.75332 {normal=(0.302897 0.868052 0.391301)} Vertex 14572 0.651782 15.5207 3.97927 {normal=(0.355753 -0.358324 0.848165)} Vertex 14573 0.652421 15.8127 4.02429 {normal=(0.398422 0.092244 0.897915)} Vertex 14574 0.860755 15.6347 3.8953 {normal=(0.504103 -0.194973 0.836130)} Vertex 14575 0.912393 17.6358 3.99691 {normal=(0.624958 0.312145 0.714950)} Vertex 14576 0.901812 17.4727 4.07808 {normal=(0.601663 0.212590 0.761570)} Vertex 14577 0.976609 17.347 4.03098 {normal=(0.669653 0.033763 0.731730)} Vertex 14578 0.981307 17.0894 3.58713 {normal=(0.320674 -0.860914 0.356728)} Vertex 14579 1.10424 17.1745 3.80593 {normal=(0.408331 -0.839626 0.320435)} Vertex 14580 1.25735 17.1601 3.53035 {normal=(0.343970 -0.899169 0.265921)} Vertex 14581 1.0731 15.8686 3.72666 {normal=(0.426971 0.740728 0.490219)} Vertex 14582 0.943635 16.0107 3.50729 {normal=(0.387414 0.771268 0.480829)} Vertex 14583 1.24008 15.9136 3.45687 {normal=(0.385023 0.819565 0.419204)} Vertex 14584 1.0175 15.4375 3.71739 {normal=(0.549946 -0.350134 0.751747)} Vertex 14585 1.09353 15.7542 3.76832 {normal=(0.580350 -0.056912 0.792360)} Vertex 14586 1.28378 15.569 3.54534 {normal=(0.640257 -0.305315 0.702567)} Vertex 14587 1.1428 17.7047 3.77063 {normal=(0.626696 0.264736 0.732129)} Vertex 14588 1.27305 17.7424 3.64581 {normal=(0.548093 0.121083 0.814310)} Vertex 14589 1.36803 17.5433 3.62374 {normal=(0.657268 0.108842 0.739690)} Vertex 14590 1.49312 17.309 3.49337 {normal=(0.670812 -0.259953 0.677500)} Vertex 14591 1.29046 17.388 3.71439 {normal=(0.707617 0.006073 0.702248)} Vertex 14592 1.58133 17.4089 3.42758 {normal=(0.472890 -0.297591 0.776219)} Vertex 14593 1.40305 17.1408 3.29775 {normal=(0.415385 -0.794444 0.414066)} Vertex 14594 1.47711 17.2223 3.42855 {normal=(0.430688 -0.797837 0.401181)} Vertex 14595 1.57962 17.1812 3.22821 {normal=(0.192192 -0.851541 0.456553)} Vertex 14596 1.50798 15.8208 3.3575 {normal=(0.539591 0.611198 0.556543)} Vertex 14597 1.37919 15.9828 3.23422 {normal=(0.395724 0.638968 0.642044)} Vertex 14598 1.60864 15.9338 3.14895 {normal=(0.392026 0.589906 0.696243)} Vertex 14599 1.53705 15.7082 3.36507 {normal=(0.706308 -0.137569 0.675374)} Vertex 14600 1.74043 15.6259 3.09911 {normal=(0.702652 -0.285080 0.646874)} Vertex 14601 1.06831 18.6037 3.62256 {normal=(0.179341 0.295666 0.933632)} Vertex 14602 1.34467 18.7037 3.58012 {normal=(0.041316 0.154506 0.985289)} Vertex 14603 1.02012 18.3249 3.72862 {normal=(0.215655 0.194967 0.952062)} Vertex 14604 1.27874 18.3873 3.65817 {normal=(0.161743 0.234020 0.956653)} Vertex 14605 1.60328 18.4743 3.59761 {normal=(0.109281 0.143032 0.981998)} Vertex 14606 1.65817 18.7889 3.5614 {normal=(0.057711 0.090233 0.993467)} Vertex 14607 1.8979 18.6083 3.55479 {normal=(0.192961 0.084100 0.973205)} Vertex 14608 1.46456 18.1311 3.6637 {normal=(0.177758 -0.012488 0.976673)} Vertex 14609 1.80787 18.2206 3.60048 {normal=(0.200649 0.038795 0.976023)} Vertex 14610 2.19125 18.6236 3.43063 {normal=(0.565784 0.173593 0.800340)} Vertex 14611 2.0976 18.378 3.51505 {normal=(0.379004 0.079660 0.914323)} Vertex 14612 2.00763 18.7551 3.52267 {normal=(0.399709 0.148979 0.893092)} Vertex 14613 2.24474 18.1136 3.46334 {normal=(0.473637 0.013302 0.868265)} Vertex 14614 1.95445 17.9445 3.55396 {normal=(0.231336 -0.156160 0.952582)} Vertex 14615 0.94363 18.0891 3.76786 {normal=(0.265571 0.087155 0.955895)} Vertex 14616 1.15644 18.0948 3.72262 {normal=(0.195525 -0.035559 0.975926)} Vertex 14617 1.31519 17.834 3.63956 {normal=(0.244317 -0.207563 0.942697)} Vertex 14618 1.6288 17.8293 3.57865 {normal=(0.161485 -0.265859 0.947630)} Vertex 14619 1.821 17.5232 3.43106 {normal=(0.144779 -0.420978 0.893740)} Vertex 14620 2.07435 17.6506 3.43829 {normal=(0.288058 -0.354269 0.882239)} Vertex 14621 2.1603 17.4142 3.28644 {normal=(0.382654 -0.428864 0.814554)} Vertex 14622 2.29983 17.8484 3.407 {normal=(0.538547 -0.213357 0.800349)} Vertex 14623 2.33581 17.6122 3.27894 {normal=(0.581573 -0.334737 0.735155)} Vertex 14624 1.7469 17.083 3.13312 {normal=(-0.185018 -0.541002 0.815989)} Vertex 14625 1.58804 17.141 3.13029 {normal=(0.077819 -0.655186 0.709524)} Vertex 14626 1.757 17.1854 3.21503 {normal=(-0.033222 -0.679687 0.713481)} Vertex 14627 1.88081 16.6882 2.99362 {normal=(-0.212255 -0.239009 0.942333)} Vertex 14628 1.70021 16.9149 3.03396 {normal=(-0.061948 -0.356102 0.918239)} Vertex 14629 1.96078 16.9182 3.09451 {normal=(-0.144829 -0.389184 0.904816)} Vertex 14630 1.81559 16.1825 2.96228 {normal=(-0.008068 0.216153 0.958341)} Vertex 14631 1.78144 16.4314 2.9353 {normal=(-0.042774 -0.015586 0.983471)} Vertex 14632 1.96781 16.4165 2.97399 {normal=(-0.083005 -0.091801 0.983106)} Vertex 14633 1.66898 16.0797 3.01872 {normal=(0.289976 0.410318 0.850717)} Vertex 14634 1.79607 15.9621 3.04513 {normal=(0.330647 0.372063 0.848665)} Vertex 14635 1.70074 17.3685 3.36297 {normal=(0.135539 -0.539529 0.810517)} Vertex 14636 1.75988 17.263 3.28006 {normal=(0.048283 -0.592626 0.790515)} Vertex 14637 2.06212 16.9397 3.10815 {normal=(0.156310 -0.317123 0.932682)} Vertex 14638 2.10076 17.125 3.16189 {normal=(0.254898 -0.369325 0.890904)} Vertex 14639 2.18894 16.9365 3.07455 {normal=(0.250767 -0.280778 0.926078)} Vertex 14640 2.15735 16.167 2.86118 {normal=(0.490788 -0.273702 0.815892)} Vertex 14641 2.0905 16.4112 2.96065 {normal=(0.261994 -0.241127 0.931303)} Vertex 14642 2.26585 16.6797 2.9804 {normal=(0.415126 -0.272167 0.852515)} Vertex 14643 1.99344 17.2867 3.27656 {normal=(0.207253 -0.473830 0.853202)} Vertex 14644 2.23482 17.2573 3.17096 {normal=(0.366407 -0.359576 0.855276)} Vertex 14645 0.195168 15.3327 3.95394 {normal=(0.099560 -0.502087 0.846960)} Vertex 14646 0.420502 15.4345 3.99513 {normal=(0.192352 -0.562640 0.800631)} Vertex 14647 0.587452 15.3386 3.87639 {normal=(0.240425 -0.475335 0.832225)} Vertex 14648 0.797981 15.3863 3.83824 {normal=(0.382670 -0.538788 0.744034)} Vertex 14649 0.960063 15.3374 3.69344 {normal=(0.333671 -0.352852 0.820844)} Vertex 14650 0.173767 14.9915 4.01414 {normal=(0.140354 0.238856 0.956152)} Vertex 14651 0.190827 15.2228 3.93042 {normal=(0.090219 0.201331 0.964343)} Vertex 14652 0.367988 15.1269 3.93496 {normal=(0.204688 0.241581 0.946494)} Vertex 14653 0.160841 14.6713 4.04065 {normal=(0.058432 -0.123741 0.981542)} Vertex 14654 0.332859 14.8129 4.01122 {normal=(0.254705 0.077146 0.957380)} Vertex 14655 0.146877 14.3188 3.89148 {normal=(-0.056392 -0.594194 0.790395)} Vertex 14656 0.271343 14.4674 3.98485 {normal=(0.118858 -0.376004 0.901565)} Vertex 14657 0.524462 14.9564 3.92573 {normal=(0.339056 0.124573 0.929124)} Vertex 14658 0.577815 15.235 3.86197 {normal=(0.279292 0.084914 0.950803)} Vertex 14659 0.74566 15.1003 3.8193 {normal=(0.429255 0.081552 0.895113)} Vertex 14660 0.438985 14.5956 3.97038 {normal=(0.367312 -0.182497 0.900424)} Vertex 14661 0.632331 14.7295 3.88868 {normal=(0.462380 -0.070592 0.878849)} Vertex 14662 0.283603 14.2829 3.87001 {normal=(0.104895 -0.614097 0.765902)} Vertex 14663 0.442512 14.3786 3.88173 {normal=(0.335649 -0.456012 0.814444)} Vertex 14664 0.857967 14.8783 3.76206 {normal=(0.586140 -0.061835 0.798090)} Vertex 14665 0.959987 15.2529 3.68493 {normal=(0.393062 -0.052796 0.866980)} Vertex 14666 1.09227 15.0416 3.55511 {normal=(0.732085 -0.155018 0.648398)} Vertex 14667 0.64539 14.4745 3.82673 {normal=(0.490507 -0.338716 0.789916)} Vertex 14668 0.859555 14.5849 3.69509 {normal=(0.681222 -0.325347 0.634044)} Vertex 14669 0.352026 14.2167 3.79711 {normal=(0.178171 -0.678718 0.696832)} Vertex 14670 0.533281 14.2604 3.75719 {normal=(0.410569 -0.644089 0.623233)} Vertex 14671 1.06701 14.6852 3.45309 {normal=(0.794327 -0.331732 0.497909)} Vertex 14672 1.2705 14.7219 3.11023 {normal=(0.811569 -0.343846 0.470104)} Vertex 14673 0.714444 14.3139 3.63401 {normal=(0.604144 -0.634019 0.462477)} Vertex 14674 0.900736 14.3746 3.41603 {normal=(0.693976 -0.575004 0.421977)} Vertex 14675 0.351798 14.1426 3.70485 {normal=(0.198431 -0.811262 0.531257)} Vertex 14676 0.515339 14.1537 3.59891 {normal=(0.416729 -0.813170 0.392036)} Vertex 14677 1.09392 14.3985 3.13374 {normal=(0.721297 -0.550923 0.402199)} Vertex 14678 1.21934 14.366 2.82275 {normal=(0.654694 -0.672246 0.289366)} Vertex 14679 0.687109 14.1894 3.44299 {normal=(0.529705 -0.767849 0.347908)} Vertex 14680 0.836363 14.1977 3.21605 {normal=(0.531844 -0.785129 0.294843)} Vertex 14681 0.493816 14.1069 3.50432 {normal=(0.385393 -0.873393 0.290978)} Vertex 14682 0.914842 14.1711 2.93774 {normal=(0.483076 -0.857767 0.143431)} Vertex 14683 0.899364 14.1519 2.64325 {normal=(0.398089 -0.914081 -0.028773)} Vertex 14684 0.597903 14.1014 3.31343 {normal=(0.400969 -0.885895 0.231169)} Vertex 14685 0.629243 14.0603 3.0798 {normal=(0.403695 -0.898850 0.163720)} Vertex 14686 0.412256 14.0579 3.44534 {normal=(0.352652 -0.891338 0.276539)} Vertex 14687 0.594071 14.0171 2.82568 {normal=(0.341294 -0.934820 -0.016935)} Vertex 14688 0.468277 14.0188 2.56846 {normal=(0.199406 -0.956467 -0.198101)} Vertex 14689 0.411946 13.995 3.22919 {normal=(0.375406 -0.900248 0.213066)} Vertex 14690 0.350956 13.9368 3.00412 {normal=(0.263820 -0.957403 0.024649)} Vertex 14691 0.259474 14.0615 3.58707 {normal=(0.137193 -0.871356 0.448203)} Vertex 14692 0.239175 13.9715 3.38356 {normal=(0.222273 -0.912670 0.322920)} Vertex 14693 0.202504 13.9374 2.77399 {normal=(0.099344 -0.977720 -0.169264)} Vertex 14694 0.148915 13.9004 3.18972 {normal=(0.148109 -0.969757 0.137131)} Vertex 14695 0.132404 14.035 3.54904 {normal=(0.017780 -0.862346 0.498138)} Vertex 14696 1.67052 18.8892 3.54918 {normal=(0.105395 0.213896 0.961504)} Vertex 14697 1.34294 18.987 3.55349 {normal=(-0.040461 0.058520 0.980945)} Vertex 14698 1.60881 19.0042 3.52109 {normal=(0.157195 0.419971 0.882932)} Vertex 14699 1.89527 18.9339 3.48331 {normal=(0.284371 0.430951 0.849353)} Vertex 14700 2.18736 18.8697 3.35485 {normal=(0.592655 0.348536 0.718535)} Vertex 14701 2.00907 18.8616 3.48782 {normal=(0.414593 0.401333 0.808576)} Vertex 14702 2.04002 19.0519 3.34367 {normal=(0.380534 0.587495 0.706182)} Vertex 14703 2.22057 19.0611 3.20397 {normal=(0.590598 0.529957 0.591994)} Vertex 14704 2.37793 19.1033 2.91619 {normal=(0.739032 0.516786 0.428453)} Vertex 14705 2.23993 19.2211 2.9949 {normal=(0.598687 0.623558 0.487695)} Vertex 14706 2.31875 19.285 2.77487 {normal=(0.798925 0.428196 0.407664)} Vertex 14707 2.39031 19.3191 2.60766 {normal=(0.782011 0.342638 0.508402)} Vertex 14708 2.28621 19.3629 2.77113 {normal=(0.823967 0.276185 0.483120)} Vertex 14709 2.29852 19.4173 2.71508 {normal=(0.868688 0.298102 0.391497)} Vertex 14710 2.34912 19.3862 2.62155 {normal=(0.856283 0.285339 0.423461)} Vertex 14711 2.01072 19.7283 2.99971 {normal=(0.765987 0.322636 0.549724)} Vertex 14712 2.13205 19.5949 2.89961 {normal=(0.807305 0.337364 0.477992)} Vertex 14713 2.0054 19.6558 3.0447 {normal=(0.705543 0.146743 0.676421)} Vertex 14714 1.86224 19.7859 3.14851 {normal=(0.664409 0.318657 0.669219)} Vertex 14715 1.68805 19.8075 3.28402 {normal=(0.538498 0.160092 0.811046)} Vertex 14716 1.84863 19.7009 3.17223 {normal=(0.563248 -0.094946 0.813293)} Vertex 14717 1.5172 19.7909 3.38184 {normal=(0.426641 -0.119155 0.886030)} Vertex 14718 1.32816 19.8531 3.43239 {normal=(0.147391 0.399093 0.897317)} Vertex 14719 1.50062 19.867 3.37385 {normal=(0.371834 0.381493 0.836391)} Vertex 14720 1.34817 19.7946 3.44954 {normal=(0.265856 0.089350 0.937863)} Vertex 14721 1.18896 19.7509 3.47996 {normal=(-0.013803 0.271781 0.951943)} Vertex 14722 1.03705 19.6798 3.47807 {normal=(-0.239110 0.328412 0.910774)} Vertex 14723 1.05816 19.6371 3.49276 {normal=(0.018798 -0.020815 0.973135)} Vertex 14724 0.9135 19.5574 3.48038 {normal=(-0.273301 0.256397 0.919171)} Vertex 14725 0.806971 19.4275 3.48148 {normal=(-0.093688 0.018795 0.963849)} Vertex 14726 0.777172 19.4521 3.46267 {normal=(-0.394561 0.315893 0.862230)} Vertex 14727 0.716218 19.584 3.6105 {normal=(0.285532 -0.744225 0.594376)} Vertex 14728 0.718072 19.7428 3.82908 {normal=(0.195303 -0.836465 0.506260)} Vertex 14729 0.873832 19.7177 3.73676 {normal=(0.297290 -0.789321 0.528831)} Vertex 14730 0.752216 19.4802 3.47604 {normal=(0.431106 -0.562604 0.683968)} Vertex 14731 0.875558 19.6193 3.55587 {normal=(0.459701 -0.785871 0.386521)} Vertex 14732 1.02275 19.7416 3.65308 {normal=(0.473183 -0.798218 0.354461)} Vertex 14733 1.04053 19.8517 3.80833 {normal=(0.440162 -0.737804 0.507867)} Vertex 14734 1.19666 19.8874 3.70825 {normal=(0.517798 -0.735721 0.431430)} Vertex 14735 1.02281 19.7062 3.50065 {normal=(0.525343 -0.754670 0.347162)} Vertex 14736 1.17276 19.814 3.55381 {normal=(0.545856 -0.820904 0.163481)} Vertex 14737 1.3529 19.9431 3.57904 {normal=(0.525210 -0.794484 0.292028)} Vertex 14738 1.4108 20.0453 3.7021 {normal=(0.544157 -0.660115 0.512797)} Vertex 14739 1.59763 20.0868 3.54677 {normal=(0.516602 -0.670771 0.514907)} Vertex 14740 1.32377 19.8976 3.44891 {normal=(0.506642 -0.732509 0.391216)} Vertex 14741 1.51962 19.9857 3.42607 {normal=(0.380578 -0.835135 0.372985)} Vertex 14742 1.80297 20.0662 3.37269 {normal=(0.424330 -0.639876 0.612576)} Vertex 14743 1.88784 20.2517 3.43712 {normal=(0.632208 -0.425703 0.637184)} Vertex 14744 2.0923 20.1888 3.22653 {normal=(0.694471 -0.274390 0.646177)} Vertex 14745 1.69614 19.9469 3.26164 {normal=(0.334534 -0.639310 0.654655)} Vertex 14746 1.95996 19.9563 3.17501 {normal=(0.359454 -0.659580 0.647691)} Vertex 14747 2.20545 20.0013 3.02629 {normal=(0.678665 -0.338403 0.618966)} Vertex 14748 2.32025 20.3082 2.90756 {normal=(0.878956 -0.101875 0.458990)} Vertex 14749 2.40541 20.0552 2.72484 {normal=(0.868385 -0.049652 0.487503)} Vertex 14750 2.04266 19.8036 2.98863 {normal=(0.468543 -0.462379 0.731330)} Vertex 14751 2.24387 19.7768 2.84716 {normal=(0.566369 -0.420757 0.696691)} Vertex 14752 2.45526 19.7481 2.61937 {normal=(0.778844 -0.152989 0.585712)} Vertex 14753 2.5934 20.0485 2.34495 {normal=(0.918510 0.043639 0.389557)} Vertex 14754 2.63923 19.7029 2.28772 {normal=(0.902166 -0.009233 0.424439)} Vertex 14755 2.28348 19.5728 2.7031 {normal=(0.586917 -0.309726 0.742368)} Vertex 14756 2.4483 19.5158 2.55036 {normal=(0.673913 -0.252324 0.685931)} Vertex 14757 2.58977 19.4767 2.35398 {normal=(0.842734 -0.100619 0.516368)} Vertex 14758 2.76979 19.6809 1.95273 {normal=(0.948090 0.062363 0.301680)} Vertex 14759 2.73134 19.4535 2.05871 {normal=(0.912243 0.034642 0.400903)} Vertex 14760 2.40465 19.4163 2.55425 {normal=(0.635675 -0.030072 0.757216)} Vertex 14761 2.49977 19.3599 2.46569 {normal=(0.756987 0.109258 0.624142)} Vertex 14762 2.85314 19.4509 1.75725 {normal=(0.946950 0.136164 0.277420)} Vertex 14763 2.78134 19.3099 1.99144 {normal=(0.891110 0.222829 0.381899)} Vertex 14764 2.68115 19.1819 2.29711 {normal=(0.816266 0.345474 0.453741)} Vertex 14765 2.54784 19.1195 2.57609 {normal=(0.760305 0.465771 0.446329)} Vertex 14766 2.4023 19.3659 2.56544 {normal=(0.673759 0.269342 0.682321)} Vertex 14767 2.92757 19.1747 1.70394 {normal=(0.933407 0.262545 0.228598)} Vertex 14768 2.90662 18.9685 1.98373 {normal=(0.895330 0.317618 0.306390)} Vertex 14769 2.45194 18.843 3.07826 {normal=(0.744703 0.382761 0.533174)} Vertex 14770 2.69249 18.8195 2.66501 {normal=(0.825033 0.392945 0.399161)} Vertex 14771 2.508 18.0068 3.24123 {normal=(0.762288 -0.094187 0.629557)} Vertex 14772 2.49947 18.2522 3.24294 {normal=(0.730556 0.102584 0.663134)} Vertex 14773 2.51803 17.7883 3.15915 {normal=(0.794816 -0.243970 0.542452)} Vertex 14774 2.69899 18.0924 2.95441 {normal=(0.888831 -0.109920 0.426044)} Vertex 14775 2.72123 18.3051 2.89926 {normal=(0.877526 0.087546 0.462747)} Vertex 14776 2.48346 18.5477 3.18144 {normal=(0.740904 0.214304 0.627154)} Vertex 14777 2.72859 18.5493 2.7953 {normal=(0.864959 0.227061 0.438841)} Vertex 14778 2.87712 18.3077 2.51646 {normal=(0.952407 -0.063334 0.262008)} Vertex 14779 2.90967 18.5111 2.36268 {normal=(0.945751 0.110776 0.283008)} Vertex 14780 2.90342 18.7497 2.21348 {normal=(0.908467 0.272505 0.303670)} Vertex 14781 2.99371 18.4735 1.96426 {normal=(0.977667 -0.132842 0.094959)} Vertex 14782 3.02037 18.6999 1.83625 {normal=(0.976072 0.072209 0.152896)} Vertex 14783 3.01996 18.8931 1.66311 {normal=(0.956943 0.227459 0.154650)} Vertex 14784 2.99147 18.4787 1.64472 {normal=(0.958500 -0.255171 -0.100837)} Vertex 14785 3.03811 18.7395 1.57684 {normal=(0.986905 -0.084735 -0.082481)} Vertex 14786 2.35312 20.4973 2.89916 {normal=(0.870076 -0.263048 0.403016)} Vertex 14787 2.49584 20.3864 2.56212 {normal=(0.907907 -0.076883 0.406850)} Vertex 14788 2.72134 20.0193 1.99144 {normal=(0.954497 0.070379 0.285672)} Vertex 14789 2.62893 20.3698 2.23701 {normal=(0.867988 -0.206794 0.405328)} Vertex 14790 2.83883 19.7125 1.64875 {normal=(0.971259 0.121718 0.201847)} Vertex 14791 2.79824 20.0093 1.67871 {normal=(0.921573 -0.128092 0.256210)} Vertex 14792 2.90842 19.4279 1.51268 {normal=(0.970080 0.181974 0.155637)} Vertex 14793 2.88345 19.7254 1.36625 {normal=(0.975624 0.129018 0.174902)} Vertex 14794 2.99259 19.096 1.4332 {normal=(0.966918 0.229037 0.096960)} Vertex 14795 2.94821 19.3836 1.25124 {normal=(0.977311 0.150009 0.138332)} Vertex 14796 3.02263 18.9646 1.41539 {normal=(0.989291 0.103018 -0.020129)} Vertex 14797 3.00517 18.8798 1.33654 {normal=(0.986250 -0.059308 -0.117202)} Vertex 14798 2.96203 18.5445 1.3796 {normal=(0.965156 -0.214493 -0.129402)} Vertex 14799 2.99473 19.0043 1.10845 {normal=(0.987853 0.003283 0.110088)} Vertex 14800 2.96427 18.6689 1.1728 {normal=(0.963115 -0.074374 0.177084)} Vertex 14801 3.01274 17.5177 0.183616 {normal=(0.811484 -0.084716 -0.553397)} Vertex 14802 3.0085 17.7293 0.134765 {normal=(0.592576 -0.162410 -0.755747)} Vertex 14803 2.94215 17.6385 0.0352012 {normal=(0.885382 -0.042829 -0.430822)} Vertex 14804 2.9867 17.4026 0.138783 {normal=(0.931747 -0.054152 -0.352110)} Vertex 14805 2.90136 17.6514 -0.114406 {normal=(0.949939 -0.173391 -0.068772)} Vertex 14806 2.88731 17.2705 -0.0906247 {normal=(0.929113 -0.074137 -0.354824)} Vertex 14807 2.42889 17.332 -1.30526 {normal=(0.882947 -0.035934 -0.462797)} Vertex 14808 2.58779 17.4583 -0.938367 {normal=(0.930278 -0.050044 -0.360000)} Vertex 14809 2.60085 17.8129 -0.950709 {normal=(0.885621 -0.128186 -0.438899)} Vertex 14810 2.43898 17.7073 -1.29632 {normal=(0.887239 -0.152930 -0.283202)} Vertex 14811 2.86108 18.1794 1.45674 {normal=(0.944367 -0.316257 -0.072064)} Vertex 14812 2.90071 18.3431 1.31382 {normal=(0.940947 -0.294438 0.037285)} Vertex 14813 2.87349 18.2682 1.29226 {normal=(0.939593 -0.260633 0.154054)} Vertex 14814 2.82679 18.0391 1.37128 {normal=(0.967636 -0.188233 0.153824)} Vertex 14815 2.89089 18.1308 1.16116 {normal=(0.908114 -0.206603 0.343006)} Vertex 14816 2.83901 17.8657 1.21265 {normal=(0.943094 -0.122849 0.305211)} Vertex 14817 2.91272 17.9957 1.03376 {normal=(0.891606 -0.150245 0.413181)} Vertex 14818 2.87071 17.7322 1.08728 {normal=(0.940814 -0.077918 0.328683)} Vertex 14819 2.94921 17.7649 0.836295 {normal=(0.918030 -0.166533 0.340288)} Vertex 14820 2.94048 17.3766 0.753702 {normal=(0.964824 -0.052704 0.254995)} Vertex 14821 3.00366 17.4605 0.461922 {normal=(0.956715 -0.161286 0.197858)} Vertex 14822 3.00433 17.1618 0.390089 {normal=(0.987548 -0.083276 0.010883)} Vertex 14823 3.01688 17.3923 0.220439 {normal=(0.936076 -0.137025 -0.285837)} Vertex 14824 2.92768 17.0308 0.0957077 {normal=(0.942940 -0.148760 -0.292372)} Vertex 14825 2.78186 16.8599 -0.224952 {normal=(0.876695 -0.184738 -0.435229)} Vertex 14826 2.75641 17.1647 -0.374785 {normal=(0.880876 -0.164569 -0.442107)} Vertex 14827 2.60593 16.7849 -0.538501 {normal=(0.911276 -0.221911 -0.327903)} Vertex 14828 2.61149 17.1292 -0.794769 {normal=(0.949266 -0.127028 -0.283049)} Vertex 14829 2.46748 16.9471 -1.17927 {normal=(0.913566 -0.104128 -0.376459)} Vertex 14830 2.21374 17.2782 -1.62483 {normal=(0.769088 -0.058676 -0.632820)} Vertex 14831 2.84655 21.3137 -1.48834 {normal=(0.879290 0.238654 -0.377689)} Vertex 14832 2.96412 21.4149 -1.21746 {normal=(0.926412 0.134577 -0.335796)} Vertex 14833 3.04603 21.1331 -1.03214 {normal=(0.951517 0.224114 -0.128057)} Vertex 14834 3.04444 21.3821 -0.83862 {normal=(0.983169 0.123296 -0.120176)} Vertex 14835 3.07405 21.0703 -0.655407 {normal=(0.968395 0.185442 -0.033059)} Vertex 14836 3.09471 21.2821 -0.342181 {normal=(0.996867 0.034219 -0.032457)} Vertex 14837 3.08882 21.004 -0.307686 {normal=(0.976390 0.129099 0.048303)} Vertex 14838 3.09197 21.1425 -0.0960177 {normal=(0.997661 0.018581 0.051011)} Vertex 14839 3.09922 20.8438 0.0265117 {normal=(0.954876 0.211684 0.122117)} Vertex 14840 3.05489 20.7724 0.429799 {normal=(0.969474 0.064911 0.222035)} Vertex 14841 3.02758 20.3835 0.631758 {normal=(0.885852 0.191598 0.403505)} Vertex 14842 2.91602 20.2357 0.946214 {normal=(0.935372 0.121752 0.325821)} Vertex 14843 2.94507 20.0247 0.955452 {normal=(0.898084 0.203724 0.376611)} Vertex 14844 2.9037 19.9617 1.14562 {normal=(0.958643 0.158875 0.231487)} Vertex 14845 2.95114 19.9538 0.97589 {normal=(0.916399 0.127669 0.359675)} Vertex 14846 2.93464 19.7294 1.11637 {normal=(0.968567 0.095500 0.226997)} Vertex 14847 2.98478 19.6862 0.935796 {normal=(0.913380 0.064065 0.380857)} Vertex 14848 2.99134 19.345 1.02026 {normal=(0.971049 0.081003 0.213935)} Vertex 14849 3.0382 19.2449 0.885032 {normal=(0.892639 0.083469 0.424644)} Vertex 14850 3.03609 19.0178 0.952061 {normal=(0.905875 0.124456 0.382884)} Vertex 14851 1.8677 15.8741 3.01885 {normal=(0.647749 -0.004048 0.748516)} Vertex 14852 2.05173 15.9289 2.86539 {normal=(0.614114 -0.164995 0.763362)} Vertex 14853 2.00426 16.0794 2.90573 {normal=(0.401134 -0.144617 0.895890)} Vertex 14854 0.47783 17.9447 4.28198 {normal=(-0.280953 -0.956541 -0.023104)} Vertex 14855 0.500789 17.9404 4.18358 {normal=(-0.286517 -0.938248 0.113612)} Vertex 14856 0.397667 17.9729 4.22456 {normal=(0.011607 -0.945172 0.134652)} Vertex 14857 1.18888 19.5329 2.77556 {normal=(0.474337 -0.586674 0.563454)} Vertex 14858 1.39964 19.6287 2.73485 {normal=(0.335763 -0.699715 0.529970)} Vertex 14859 1.64218 19.6278 2.62467 {normal=(0.084398 -0.764936 0.533349)} Vertex 14860 1.86291 19.5264 2.47697 {normal=(-0.058906 -0.687993 0.595093)} Vertex 14861 1.99 19.4356 2.38857 {normal=(-0.123990 -0.537426 0.710950)} Vertex 14862 2.0219 19.3777 2.36722 {normal=(-0.211017 0.020707 0.798434)} Vertex 14863 1.96122 19.3107 2.44596 {normal=(-0.020321 0.739989 0.517642)} Vertex 14864 1.80206 19.2411 2.6109 {normal=(0.035212 0.827533 0.436291)} Vertex 14865 1.5211 19.2032 2.74492 {normal=(0.126422 0.812114 0.462886)} Vertex 14866 1.16033 19.2406 2.79002 {normal=(0.219806 0.736176 0.531722)} Vertex 14867 0.970601 19.3068 2.78107 {normal=(0.558145 0.230341 0.646295)} Vertex 14868 1.02714 19.4024 2.78077 {normal=(0.536796 -0.455515 0.615797)} Vertex 14869 1.01975 19.0564 3.50725 {normal=(-0.253424 -0.262193 0.919504)} Vertex 14870 1.0123 19.1126 3.51818 {normal=(-0.130723 0.048545 0.962940)} Vertex 14871 2.24322 19.5128 2.74638 {normal=(0.846489 0.363645 0.387762)} Vertex 14872 2.20794 19.4818 2.84613 {normal=(0.801508 0.226660 0.538401)} Vertex 14873 1.26964 19.1454 3.11782 {normal=(0.109737 0.980361 0.112498)} Vertex 14874 0.827108 19.2339 3.09928 {normal=(0.454041 0.825237 0.168057)} Vertex 14875 0.774478 19.3153 3.08458 {normal=(0.821369 -0.379641 0.219180)} Vertex 14876 0.965608 19.4893 3.09197 {normal=(0.611706 -0.754804 0.168602)} Vertex 14877 1.21197 19.6562 3.08371 {normal=(0.452271 -0.865295 0.146696)} Vertex 14878 1.51826 19.7391 2.99775 {normal=(0.045648 -0.966847 0.145393)} Vertex 14879 1.82605 19.6458 2.80211 {normal=(-0.352302 -0.896188 0.171141)} Vertex 14880 2.06847 19.4806 2.61461 {normal=(-0.489082 -0.809503 0.214488)} Vertex 14881 2.15147 19.4065 2.55161 {normal=(-0.684088 -0.559045 0.303133)} Vertex 14882 2.15867 19.3299 2.56012 {normal=(-0.654533 0.534095 0.260440)} Vertex 14883 2.01096 19.2416 2.77079 {normal=(-0.322743 0.927613 0.112472)} Vertex 14884 1.75207 19.1527 2.99185 {normal=(-0.132851 0.976721 0.100679)} Vertex 14885 1.20374 19.6957 3.47632 {normal=(0.280052 -0.293919 0.902088)} Vertex 14886 0.942988 19.5178 3.48207 {normal=(0.206575 -0.296382 0.918305)} Vertex 14887 0.741603 19.3226 3.47213 {normal=(0.165931 -0.151463 0.948410)} Vertex 14888 0.796468 19.2117 3.48085 {normal=(-0.027911 0.184009 0.955570)} Vertex 14889 1.29316 19.0857 3.52435 {normal=(0.075901 0.468532 0.870626)} Vertex 14890 1.81133 19.0796 3.4135 {normal=(0.239622 0.631316 0.733014)} Vertex 14891 2.09655 19.1875 3.16727 {normal=(0.375740 0.728240 0.566516)} Vertex 14892 2.22646 19.3161 2.88292 {normal=(0.615810 0.513351 0.566741)} Vertex 14893 2.21415 19.414 2.8551 {normal=(0.757626 0.135680 0.633027)} Vertex 14894 2.1022 19.526 2.96034 {normal=(0.678642 0.016360 0.725943)} Vertex 14895 1.67848 19.8805 3.25572 {normal=(0.534130 0.378625 0.749704)} Vertex 14896 0.670389 19.3635 3.44991 {normal=(0.237621 -0.267357 0.915841)} Vertex 14897 0.644491 19.3232 3.44598 {normal=(-0.121631 -0.114485 0.958715)} Vertex 14898 0.67938 19.3582 3.45125 {normal=(-0.385192 0.146637 0.899474)} Vertex 14899 2.32739 19.4341 2.63024 {normal=(0.842058 0.263429 0.457031)} Vertex 14900 2.35998 19.3989 2.59182 {normal=(0.694053 0.289611 0.640852)} Vertex 14901 2.37255 19.4021 2.5829 {normal=(0.584688 0.191000 0.786005)} Vertex 14902 2.33728 19.4498 2.61463 {normal=(0.647798 -0.045276 0.746196)} Vertex 14903 0.888143 19.5895 3.46513 {normal=(0.355962 -0.478444 0.756540)} Vertex 14904 0.76549 19.4611 3.45469 {normal=(-0.030379 -0.034793 0.955916)} Vertex 14905 0.895226 19.5816 3.4638 {normal=(-0.257307 0.219583 0.927329)} Vertex 14906 1.16993 19.7967 3.46869 {normal=(0.414402 -0.461009 0.719101)} Vertex 14907 1.02802 19.6942 3.47227 {normal=(0.078535 -0.121788 0.949911)} Vertex 14908 1.17498 19.7835 3.46681 {normal=(-0.000925 0.248540 0.954434)} Vertex 14909 1.48617 19.9358 3.35281 {normal=(0.458169 -0.316783 0.781853)} Vertex 14910 1.32056 19.8751 3.42608 {normal=(0.325965 0.017731 0.924298)} Vertex 14911 1.48626 19.9135 3.35438 {normal=(0.390029 0.286582 0.864024)} Vertex 14912 1.86577 19.8603 3.11625 {normal=(0.550640 -0.176307 0.780509)} Vertex 14913 1.67725 19.909 3.2456 {normal=(0.535992 0.091520 0.832366)} Vertex 14914 1.86231 19.8369 3.12224 {normal=(0.659663 0.220730 0.710290)} Vertex 14915 2.14003 19.6601 2.84559 {normal=(0.676130 -0.136360 0.704619)} Vertex 14916 2.01241 19.7579 2.98501 {normal=(0.731870 0.091805 0.668848)} Vertex 14917 2.13548 19.6384 2.8552 {normal=(0.815205 0.258690 0.509241)} Vertex 14918 2.24908 19.5336 2.71855 {normal=(0.793458 0.102510 0.584169)} Vertex 14919 2.85322 20.0287 1.51652 {normal=(0.797116 -0.180368 -0.301584)} Vertex 14920 0.442161 19.9562 3.99106 {normal=(-0.349142 -0.242814 0.857656)} Vertex 14921 0.310131 17.9102 4.23119 {normal=(0.765100 -0.400546 0.450925)} Vertex 14922 0.338851 17.9544 4.23417 {normal=(0.555676 -0.724071 0.291156)} Vertex 14923 0.330696 17.8708 4.18443 {normal=(0.646528 -0.137190 0.694820)} Vertex 14924 0.42423 17.8822 4.12727 {normal=(0.356553 -0.050678 0.854602)} Vertex 14925 0.554824 17.8857 4.09301 {normal=(-0.014763 -0.342806 0.861090)} Vertex 14926 0.409269 17.9573 4.37322 {normal=(-0.041834 -0.986053 -0.021962)} Vertex 14927 0.529794 17.9387 4.36545 {normal=(-0.024548 -0.942177 0.277052)} Vertex 14928 0.596933 17.9055 4.27696 {normal=(-0.229764 -0.945248 0.184005)} Vertex 14929 0.692498 17.8511 4.16508 {normal=(-0.376524 -0.873972 0.273096)} Vertex 14930 0.719748 17.8209 4.1204 {normal=(-0.200651 -0.688536 0.630860)} Vertex 14931 0.670793 17.8461 4.11129 {normal=(-0.385985 -0.656485 0.556414)} Vertex 14932 0.560968 17.9119 4.12737 {normal=(-0.317899 -0.833585 0.350651)} Vertex 14933 0.619323 17.8895 4.19454 {normal=(-0.391710 -0.913747 0.085451)} Vertex 14934 0.686265 17.8762 4.23612 {normal=(-0.002454 -0.877423 0.426289)} Vertex 14935 0.339099 17.9603 4.33119 {normal=(0.330688 -0.917551 -0.039249)} Vertex 14936 0.361625 17.9547 4.50096 {normal=(0.321165 -0.922195 0.061826)} Vertex 14937 0.792609 18.1124 3.82374 {normal=(0.791629 0.417794 0.407322)} Vertex 14938 0.804936 18.0708 3.87775 {normal=(0.875266 0.450104 0.115366)} Vertex 14939 0.7574 18.1699 3.85109 {normal=(0.859669 0.492001 0.058218)} Vertex 14940 0.274584 18.6483 4.61641 {normal=(0.582538 0.542520 0.560449)} Vertex 14941 0.434168 18.528 4.36651 {normal=(0.876821 0.417723 0.231683)} Vertex 14942 0.559183 18.4244 4.07796 {normal=(0.731709 0.636296 0.191884)} Vertex 14943 0.627091 18.3913 4.00738 {normal=(0.643255 0.747679 0.089245)} Vertex 14944 0.66292 18.3517 3.95823 {normal=(0.691954 0.636333 -0.276920)} Vertex 14945 0.665702 18.3152 3.91416 {normal=(0.719654 0.556019 -0.403074)} Vertex 14946 0.692499 18.2663 3.86286 {normal=(0.809438 0.474068 0.277995)} Vertex 14947 0.678995 18.2868 3.88509 {normal=(0.806537 0.581476 -0.054642)} Vertex 14948 0.312876 18.306 4.8075 {normal=(0.588194 0.067634 0.766455)} Vertex 14949 0.486351 18.2495 4.53331 {normal=(0.912490 0.025681 0.399679)} Vertex 14950 0.566163 18.221 4.38104 {normal=(0.769028 0.229959 0.568897)} Vertex 14951 0.741403 18.1537 4.23776 {normal=(0.743426 0.288037 0.585301)} Vertex 14952 0.846649 18.0325 4.09021 {normal=(0.938950 0.014231 0.279252)} Vertex 14953 0.850552 17.9011 3.97751 {normal=(0.970437 -0.140445 0.124690)} Vertex 14954 0.94688 17.8236 3.884 {normal=(0.605502 0.321242 0.726849)} Vertex 14955 0.861382 17.8766 3.93733 {normal=(0.787378 0.195161 0.548478)} Vertex 14956 1.07932 17.5028 3.90106 {normal=(0.665544 0.189722 0.716756)} Vertex 14957 1.13266 17.2578 3.87019 {normal=(0.696524 -0.198289 0.671149)} Vertex 14958 0.215619 17.782 4.50154 {normal=(0.808039 -0.498914 0.243572)} Vertex 14959 0.309747 17.9409 4.64701 {normal=(0.626109 -0.704467 0.273135)} Vertex 14960 0.451189 17.9688 4.48146 {normal=(0.326834 -0.825562 0.360565)} Vertex 14961 0.654025 17.9285 4.32472 {normal=(0.326025 -0.682809 0.598838)} Vertex 14962 0.74271 17.8484 4.17301 {normal=(0.284160 -0.741669 0.542853)} Vertex 14963 0.744112 18.193 3.88842 {normal=(0.829590 0.503227 -0.198111)} Vertex 14964 0.599075 18.3921 3.91342 {normal=(0.810293 0.491132 -0.032870)} Vertex 14965 0.847302 17.9492 3.91838 {normal=(0.929808 0.207345 0.129483)} Vertex 14966 0.830213 17.834 3.99462 {normal=(0.885557 -0.127140 0.423188)} Vertex 14967 1.76849 17.3707 3.35673 {normal=(0.124110 -0.472220 0.870997)} Vertex 14968 0.767008 18.1717 3.81979 {normal=(0.668331 0.278394 0.651129)} Vertex 14969 0.83233 18.0981 3.79847 {normal=(0.484969 0.294615 0.796453)} Vertex 14970 1.51158 17.5814 3.50729 {normal=(0.279602 -0.304686 0.888754)} Vertex 14971 1.0772 17.9379 3.7304 {normal=(0.398513 0.101143 0.894365)} Vertex 14972 1.87573 17.2068 3.24711 {normal=(0.050082 -0.527292 0.845809)} Vertex 14973 1.87852 17.1659 3.21581 {normal=(-0.042910 -0.566061 0.819397)} Vertex 14974 1.96111 17.0789 3.17112 {normal=(0.014764 -0.432491 0.897786)} Vertex 14975 0.611742 18.3861 3.89495 {normal=(0.728558 0.327569 0.572311)} Vertex 14976 0.568942 18.4621 3.91193 {normal=(0.782233 0.271115 0.383243)} Vertex 14977 1.91532 16.0548 2.96034 {normal=(0.471332 0.079295 0.862206)} Vertex 14978 1.96616 16.1835 2.9438 {normal=(0.277439 -0.144467 0.928151)} Vertex 14979 2.06567 16.6917 3.03259 {normal=(0.042030 -0.257095 0.957889)} Vertex 14980 1.65359 17.2545 3.31621 {normal=(0.321559 -0.614149 0.670958)} Vertex 14981 0.514569 17.1187 4.21905 {normal=(0.286296 -0.632281 0.674837)} Vertex 14982 0.930525 17.1778 4.03116 {normal=(0.497694 -0.586173 0.583179)} Vertex 14983 0.434713 15.8941 4.09221 {normal=(0.275470 0.496619 0.785799)} Vertex 14984 0.86289 15.8546 3.91745 {normal=(0.449792 0.421084 0.738157)} Vertex 14985 1.33055 15.7967 3.58848 {normal=(0.621768 0.317522 0.655382)} Vertex 14986 1.70739 15.8017 3.18554 {normal=(0.632156 0.228187 0.706731)} Vertex 14987 1.32415 17.2339 3.65082 {normal=(0.616402 -0.547305 0.517485)} Vertex 14988 2.38773 17.4094 3.15064 {normal=(0.606670 -0.291683 0.722763)} Vertex 14989 2.32369 17.1035 3.08572 {normal=(0.433576 -0.276489 0.842756)} Vertex 14990 0.384459 15.29 3.89713 {normal=(0.170251 -0.170768 0.947349)} Vertex 14991 0.764666 15.2985 3.79518 {normal=(0.399099 -0.159525 0.884542)} Vertex 14992 0.74045 19.1521 3.44074 {normal=(-0.365506 -0.292086 0.874786)} Vertex 14993 0.639968 19.1937 3.41641 {normal=(-0.088485 -0.193516 0.936702)} Vertex 14994 0.631577 19.1842 3.41788 {normal=(0.456006 0.137260 0.812382)} Vertex 14995 0.731838 19.1324 3.43766 {normal=(0.089103 0.309034 0.911591)} Vertex 14996 1.90469 18.8149 3.53725 {normal=(0.217483 0.148621 0.955110)} Vertex 14997 1.35037 18.9048 3.55323 {normal=(-0.040165 0.124449 0.987538)} Vertex 14998 1.67892 18.8513 3.55475 {normal=(0.064747 0.118275 0.987641)} Vertex 14999 1.9895 18.8198 3.52269 {normal=(0.445472 0.271285 0.845078)} Vertex 15000 1.90491 18.8373 3.53145 {normal=(0.218902 0.306316 0.917871)} Vertex 15001 1.01012 19.0328 3.49764 {normal=(-0.190279 -0.029564 0.965816)} Vertex 15002 1.36603 18.9252 3.55413 {normal=(-0.075881 -0.032855 0.986405)} Vertex 15003 2.59012 18.1686 -1.20962 {normal=(0.945280 0.007192 -0.034791)} Vertex 15004 2.63622 18.4988 -1.46353 {normal=(0.903645 -0.108978 0.215761)} Vertex 15005 2.7986 19.0319 -1.55654 {normal=(0.846952 -0.289602 0.334048)} Vertex 15006 2.98547 19.6581 -1.44743 {normal=(0.773125 -0.359782 0.408501)} Vertex 15007 3.08471 20.0597 -1.12094 {normal=(0.775038 -0.375400 0.103294)} Vertex 15008 3.12952 20.2571 -0.678932 {normal=(0.814616 -0.039393 -0.048505)} Vertex 15009 3.12046 20.2729 -0.260185 {normal=(0.797489 -0.119803 0.138020)} Vertex 15010 3.06776 20.1136 -0.0234783 {normal=(0.749424 -0.192757 -0.243753)} Vertex 15011 3.04117 19.7934 0.047987 {normal=(0.743602 -0.024614 -0.040139)} Vertex 15012 3.00828 19.3523 0.095856 {normal=(0.681951 -0.060687 -0.173946)} Vertex 15013 2.99805 18.9681 0.098531 {normal=(0.807364 -0.039697 -0.300189)} Vertex 15014 2.99575 18.6561 0.069236 {normal=(0.819581 -0.075549 -0.325593)} Vertex 15015 2.98915 18.391 0.041502 {normal=(0.823504 0.066204 -0.311339)} Vertex 15016 2.97968 18.16 0.0309827 {normal=(0.769704 -0.057268 -0.382049)} Vertex 15017 3.01178 21.0874 -1.15844 {normal=(0.731372 0.568640 -0.036774)} Vertex 15018 3.07247 21.0104 -0.943615 {normal=(0.711147 0.608964 0.082615)} Vertex 15019 3.09323 20.9302 -0.431596 {normal=(0.771333 0.546632 0.093233)} Vertex 15020 3.10105 20.8827 -0.260874 {normal=(0.771924 0.544869 0.167989)} Vertex 15021 2.99632 20.0904 0.820833 {normal=(0.720044 0.310969 0.593168)} Vertex 15022 2.98512 19.9246 0.895204 {normal=(0.762777 0.112203 0.613056)} Vertex 15023 2.92359 18.4228 1.21358 {normal=(0.819661 -0.098305 0.476015)} Vertex 15024 2.90742 18.3019 1.20377 {normal=(0.788430 -0.292218 0.515424)} Vertex 15025 2.94285 18.1048 1.01246 {normal=(0.723757 -0.372107 0.547477)} Vertex 15026 2.95667 18.0132 0.932062 {normal=(0.732441 -0.347769 0.551034)} Vertex 15027 3.03592 17.4946 0.274719 {normal=(0.850879 -0.410839 -0.058316)} Vertex 15028 1.13005 22.5417 -2.4899 {normal=(0.346787 0.900925 -0.170940)} Vertex 15029 1.65807 22.2691 -2.37495 {normal=(0.576611 0.754937 -0.197009)} Vertex 15030 2.55017 21.5371 -1.91516 {normal=(0.710022 0.626298 -0.161211)} Vertex 15031 3.11066 20.6072 0.292614 {normal=(0.720791 0.482561 0.416620)} Vertex 15032 3.0336 19.5023 0.853379 {normal=(0.721806 0.025113 0.660514)} Vertex 15033 3.07659 19.0801 0.850452 {normal=(0.707211 0.216524 0.638758)} Vertex 15034 3.01932 18.8336 1.03332 {normal=(0.761474 0.193317 0.566508)} Vertex 15035 3.00368 17.6614 0.606983 {normal=(0.774055 -0.412418 0.421140)} Vertex 15036 2.88653 17.5731 -0.275474 {normal=(0.908378 -0.285487 -0.201271)} Vertex 15037 2.73185 17.4102 -0.516003 {normal=(0.902107 -0.148951 -0.396611)} Vertex 15038 2.99984 18.0126 -0.0819877 {normal=(0.878271 -0.197114 0.380399)} Vertex 15039 3.06016 18.7888 -0.101732 {normal=(0.937428 -0.137993 0.293302)} Vertex 15040 3.06536 18.969 -0.0427452 {normal=(0.883777 -0.196832 0.379323)} Vertex 15041 3.02801 18.509 -0.0896085 {normal=(0.949188 -0.010015 0.268026)} Vertex 15042 3.0141 18.2234 -0.0616063 {normal=(0.925021 -0.024714 0.293271)} Vertex 15043 2.71172 17.6217 -0.648514 {normal=(0.859167 -0.231814 -0.426095)} Vertex 15044 3.06343 19.2392 0.055809 {normal=(0.760998 -0.152037 0.521829)} Vertex 15045 2.73873 18.8018 -1.36903 {normal=(0.900936 -0.296524 -0.226945)} Vertex 15046 2.87572 19.3102 -1.40071 {normal=(0.922974 -0.283234 -0.111214)} Vertex 15047 2.96546 19.5844 -1.37169 {normal=(0.927274 -0.216818 -0.097645)} Vertex 15048 3.03729 19.8541 -1.25778 {normal=(0.825133 -0.041149 -0.298224)} Vertex 15049 3.14953 20.1293 -0.921657 {normal=(0.615858 0.516305 -0.372579)} Vertex 15050 2.65982 18.3918 -1.18016 {normal=(0.876646 -0.300464 -0.323785)} Vertex 15051 2.67369 18.0975 -0.929725 {normal=(0.826690 -0.265990 -0.470462)} Vertex 15052 2.73715 17.8361 -0.717224 {normal=(0.661589 -0.323851 -0.624076)} Vertex 15053 3.23303 20.2439 -0.565702 {normal=(0.511689 0.797445 -0.214747)} Vertex 15054 3.24846 20.2474 -0.440129 {normal=(0.616665 0.702961 0.153264)} Vertex 15055 3.16014 20.129 -0.143211 {normal=(0.770743 0.319850 0.436357)} Vertex 15056 3.1299 19.9611 -0.0453375 {normal=(0.705602 0.225808 0.596591)} Vertex 15057 3.10142 19.6239 0.0486945 {normal=(0.543969 0.082006 0.795850)} Vertex 15058 1.51867 19.7456 3.3657 {normal=(0.257101 -0.738051 0.540997)} Vertex 15059 1.82826 19.6519 3.16851 {normal=(0.048355 -0.725073 0.570799)} Vertex 15060 1.20978 19.6617 3.45292 {normal=(0.429031 -0.716774 0.496531)} Vertex 15061 0.961829 19.4938 3.4612 {normal=(0.519135 -0.661996 0.487448)} Vertex 15062 0.769132 19.3163 3.4538 {normal=(0.697713 -0.337868 0.508488)} Vertex 15063 0.822759 19.2294 3.46802 {normal=(0.315269 0.715603 0.533360)} Vertex 15064 1.26925 19.1399 3.48761 {normal=(0.114149 0.844128 0.470507)} Vertex 15065 1.75514 19.1481 3.36152 {normal=(0.042883 0.896171 0.387511)} Vertex 15066 2.01619 19.2379 3.13867 {normal=(-0.026703 0.913583 0.332357)} Vertex 15067 2.16548 19.3273 2.92285 {normal=(-0.082996 0.598797 0.553286)} Vertex 15068 2.15527 19.4099 2.91424 {normal=(-0.119824 -0.445521 0.697668)} Vertex 15069 2.07125 19.486 2.97898 {normal=(-0.009889 -0.647458 0.616132)} Vertex 15070 -1.82826 19.6519 3.16851 {normal=(-0.048355 -0.725073 0.570799)} Vertex 15071 -1.51867 19.7456 3.3657 {normal=(-0.257101 -0.738051 0.540997)} Vertex 15072 -2.07125 19.486 2.97898 {normal=(0.009889 -0.647458 0.616132)} Vertex 15073 -2.15527 19.4099 2.91423 {normal=(0.119824 -0.445521 0.697668)} Vertex 15074 -2.16548 19.3273 2.92285 {normal=(0.082992 0.598794 0.553289)} Vertex 15075 -2.01619 19.2379 3.13867 {normal=(0.026696 0.913580 0.332359)} Vertex 15076 -1.75515 19.1481 3.36152 {normal=(-0.042883 0.896171 0.387511)} Vertex 15077 -1.26925 19.1399 3.48761 {normal=(-0.114149 0.844128 0.470507)} Vertex 15078 -0.822759 19.2294 3.46802 {normal=(-0.315269 0.715603 0.533360)} Vertex 15079 -0.769132 19.3163 3.4538 {normal=(-0.697713 -0.337868 0.508488)} Vertex 15080 -0.961829 19.4938 3.4612 {normal=(-0.519135 -0.661996 0.487449)} Vertex 15081 -1.20978 19.6617 3.45292 {normal=(-0.429030 -0.716774 0.496531)} Vertex 15082 1.67452 19.7128 3.18007 {normal=(-0.163123 -0.943711 0.174147)} Vertex 15083 1.68163 19.732 3.28103 {normal=(0.404660 -0.377760 0.810031)} Vertex 15084 1.35861 19.7344 3.4322 {normal=(0.370303 -0.455118 0.795155)} Vertex 15085 1.35949 19.7168 3.32634 {normal=(0.300659 -0.922032 0.157962)} Vertex 15086 1.07518 19.5936 3.47312 {normal=(0.364386 -0.507686 0.770382)} Vertex 15087 1.08195 19.5799 3.36592 {normal=(0.552590 -0.804934 0.152241)} Vertex 15088 0.840644 19.4037 3.46626 {normal=(0.415560 -0.457349 0.771070)} Vertex 15089 0.852445 19.3959 3.35975 {normal=(0.671711 -0.712896 0.139105)} Vertex 15090 0.740184 19.2655 3.46504 {normal=(0.348892 0.157190 0.871002)} Vertex 15091 0.754599 19.2689 3.36061 {normal=(0.803288 0.299741 0.165816)} Vertex 15092 1.01261 19.1681 3.49749 {normal=(0.073721 0.586218 0.792861)} Vertex 15093 1.01661 19.184 3.39035 {normal=(0.196508 0.957658 0.148243)} Vertex 15094 1.54116 19.1119 3.45865 {normal=(0.150657 0.700580 0.686744)} Vertex 15095 1.52719 19.1343 3.34476 {normal=(0.010930 0.983476 0.123619)} Vertex 15096 1.93016 19.1712 3.27288 {normal=(0.201912 0.788726 0.568076)} Vertex 15097 1.9031 19.1906 3.16115 {normal=(-0.251331 0.950328 0.105787)} Vertex 15098 2.12965 19.2749 3.01543 {normal=(0.320004 0.782591 0.517505)} Vertex 15099 2.10142 19.2858 2.92152 {normal=(-0.379021 0.889629 0.126299)} Vertex 15100 2.19285 19.3694 2.88615 {normal=(0.523302 0.173595 0.774804)} Vertex 15101 2.17019 19.3709 2.80827 {normal=(-0.829293 -0.133133 0.272075)} Vertex 15102 2.14159 19.448 2.92598 {normal=(0.519707 -0.161841 0.792880)} Vertex 15103 2.12435 19.4387 2.84275 {normal=(-0.548191 -0.761555 0.220516)} Vertex 15104 1.97453 19.5793 3.06428 {normal=(0.435287 -0.320609 0.809163)} Vertex 15105 1.96218 19.5622 2.96977 {normal=(-0.429604 -0.850619 0.193833)} Vertex 15106 -1.67452 19.7128 3.18007 {normal=(0.163123 -0.943711 0.174147)} Vertex 15107 -1.68163 19.732 3.28103 {normal=(-0.404660 -0.377760 0.810031)} Vertex 15108 -1.97453 19.5793 3.06428 {normal=(-0.435287 -0.320609 0.809163)} Vertex 15109 -1.96218 19.5622 2.96977 {normal=(0.429604 -0.850619 0.193833)} Vertex 15110 -2.14158 19.448 2.92598 {normal=(-0.519707 -0.161841 0.792880)} Vertex 15111 -2.12435 19.4387 2.84275 {normal=(0.548191 -0.761555 0.220516)} Vertex 15112 -2.19285 19.3694 2.88615 {normal=(-0.523302 0.173595 0.774804)} Vertex 15113 -2.17019 19.3709 2.80827 {normal=(0.829293 -0.133133 0.272075)} Vertex 15114 -2.12964 19.2749 3.01543 {normal=(-0.320012 0.782584 0.517512)} Vertex 15115 -2.10142 19.2858 2.92152 {normal=(0.379021 0.889629 0.126299)} Vertex 15116 -1.93016 19.1712 3.27287 {normal=(-0.201916 0.788726 0.568076)} Vertex 15117 -1.9031 19.1906 3.16115 {normal=(0.251331 0.950329 0.105787)} Vertex 15118 -1.54116 19.1119 3.45865 {normal=(-0.150658 0.700580 0.686744)} Vertex 15119 -1.52719 19.1343 3.34476 {normal=(-0.010930 0.983475 0.123619)} Vertex 15120 -1.01261 19.1681 3.49749 {normal=(-0.073721 0.586218 0.792861)} Vertex 15121 -1.01661 19.184 3.39035 {normal=(-0.196508 0.957658 0.148243)} Vertex 15122 -0.740184 19.2655 3.46504 {normal=(-0.348892 0.157190 0.871002)} Vertex 15123 -0.754599 19.2689 3.36061 {normal=(-0.803289 0.299741 0.165816)} Vertex 15124 -0.840644 19.4037 3.46625 {normal=(-0.415560 -0.457349 0.771070)} Vertex 15125 -0.852445 19.3959 3.35975 {normal=(-0.671711 -0.712896 0.139105)} Vertex 15126 -1.07518 19.5936 3.47312 {normal=(-0.364386 -0.507686 0.770382)} Vertex 15127 -1.08195 19.5799 3.36592 {normal=(-0.552590 -0.804934 0.152241)} Vertex 15128 -1.35861 19.7344 3.4322 {normal=(-0.370304 -0.455118 0.795155)} Vertex 15129 -1.35949 19.7168 3.32634 {normal=(-0.300659 -0.922032 0.157962)} Vertex 15130 -1.48234 15.6626 -2.38541 {normal=(-0.647072 0.217628 -0.726045)} Vertex 15131 -2.13329 15.1847 -1.71134 {normal=(-0.885995 0.164122 -0.416979)} Vertex 15132 -1.88596 14.866 -2.24049 {normal=(-0.773561 0.246126 -0.573510)} Vertex 15133 -2.39465 14.6409 -0.811509 {normal=(-0.986776 -0.002637 0.055391)} Vertex 15134 -2.34942 14.3339 -1.40601 {normal=(-0.972510 0.093771 -0.165073)} Vertex 15135 -2.24755 14.3876 -0.311454 {normal=(-0.931345 -0.127512 0.340501)} Vertex 15136 -2.32109 13.9153 -0.673208 {normal=(-0.943588 -0.098582 0.304776)} Vertex 15137 -2.11223 14.294 0.006997 {normal=(-0.898834 -0.159423 0.404352)} Vertex 15138 -2.15523 13.7703 -0.304927 {normal=(-0.928197 -0.120240 0.351218)} Vertex 15139 -1.86906 14.1685 0.376029 {normal=(-0.815979 -0.207849 0.538085)} Vertex 15140 -1.98082 13.6707 0.026615 {normal=(-0.852484 -0.156561 0.496818)} Vertex 15141 -1.45283 14.036 0.760306 {normal=(-0.506254 -0.299676 0.790620)} Vertex 15142 -1.68474 13.5368 0.419015 {normal=(-0.716510 -0.195584 0.658656)} Vertex 15143 -0.602182 13.9205 0.999164 {normal=(-0.187770 -0.331102 0.921026)} Vertex 15144 -1.01978 13.4079 0.746311 {normal=(-0.298347 -0.271951 0.912293)} Vertex 15145 -0.007328 13.8771 1.04666 {normal=(0.000261 -0.332493 0.939987)} Vertex 15146 -0.267034 13.3235 0.882667 {normal=(-0.085295 -0.286740 0.952699)} Vertex 15147 0.578485 13.9205 0.999164 {normal=(0.191790 -0.319967 0.923949)} Vertex 15148 0.277086 13.3235 0.882667 {normal=(0.084953 -0.282721 0.953932)} Vertex 15149 1.39487 14.036 0.760305 {normal=(0.526974 -0.251771 0.790837)} Vertex 15150 1.0324 13.4079 0.746311 {normal=(0.301171 -0.247405 0.917974)} Vertex 15151 1.77745 14.1685 0.376029 {normal=(0.830450 -0.132339 0.539343)} Vertex 15152 1.67426 13.5368 0.419015 {normal=(0.737215 -0.104599 0.655312)} Vertex 15153 2.02029 14.294 0.006997 {normal=(0.886751 -0.105763 0.447245)} Vertex 15154 1.94423 13.6707 0.026615 {normal=(0.856246 -0.056045 0.511542)} Vertex 15155 2.17769 14.3876 -0.311454 {normal=(0.901211 -0.100177 0.420692)} Vertex 15156 2.11874 13.7703 -0.304927 {normal=(0.915814 -0.037796 0.397759)} Vertex 15157 2.39461 14.6409 -0.811509 {normal=(0.971762 -0.027630 0.189940)} Vertex 15158 2.30539 13.9153 -0.673208 {normal=(0.917252 -0.058742 0.387647)} Vertex 15159 2.28596 15.1847 -1.71134 {normal=(0.916537 0.124079 -0.347912)} Vertex 15160 2.42077 14.3339 -1.40601 {normal=(0.985701 0.066230 -0.062954)} Vertex 15161 1.66153 15.6626 -2.38541 {normal=(0.627909 0.219122 -0.740737)} Vertex 15162 2.05155 14.8659 -2.24049 {normal=(0.786598 0.214139 -0.563678)} Vertex 15163 0.72086 16.1311 -2.81762 {normal=(0.361942 0.235353 -0.897856)} Vertex 15164 1.20647 15.3417 -2.79643 {normal=(0.500966 0.272968 -0.818211)} Vertex 15165 0.0165675 16.3801 -2.9068 {normal=(-0.002198 0.238194 -0.966332)} Vertex 15166 0.357759 15.7407 -3.05136 {normal=(0.199105 0.285654 -0.931537)} Vertex 15167 -0.639709 16.1311 -2.81762 {normal=(-0.393216 0.220497 -0.887221)} Vertex 15168 -0.292695 15.7407 -3.05136 {normal=(-0.211525 0.280448 -0.929364)} Vertex 15169 -1.06826 15.3417 -2.79643 {normal=(-0.531474 0.274982 -0.798028)} Vertex 15170 -1.57503 14.6297 -2.69224 {normal=(-0.649185 0.328652 -0.679467)} Vertex 15171 -2.21584 14.1518 -2.01817 {normal=(-0.903347 0.225383 -0.339042)} Vertex 15172 -2.02104 13.9825 -2.53705 {normal=(-0.790107 0.338829 -0.495882)} Vertex 15173 -2.40207 13.608 -1.11833 {normal=(-0.979437 0.014519 0.137017)} Vertex 15174 -2.42248 13.4503 -1.70257 {normal=(-0.975469 0.167811 -0.059848)} Vertex 15175 -2.2244 13.3547 -0.618279 {normal=(-0.924601 -0.076377 0.370397)} Vertex 15176 -2.36023 13.0318 -0.969768 {normal=(-0.930673 -0.005755 0.358036)} Vertex 15177 -2.09296 13.261 -0.299829 {normal=(-0.902395 -0.081736 0.417449)} Vertex 15178 -2.20059 12.8868 -0.601489 {normal=(-0.934264 0.009351 0.354171)} Vertex 15179 -1.85848 13.1355 0.0692037 {normal=(-0.820975 -0.115810 0.557444)} Vertex 15180 -2.04263 12.7872 -0.269946 {normal=(-0.861210 -0.037512 0.504151)} Vertex 15181 -1.45472 13.0031 0.45348 {normal=(-0.499413 -0.228161 0.820043)} Vertex 15182 -1.76712 12.6533 0.122454 {normal=(-0.723891 -0.107390 0.668841)} Vertex 15183 -0.600551 12.8876 0.692338 {normal=(-0.182213 -0.304713 0.933499)} Vertex 15184 -1.08926 12.5244 0.44975 {normal=(-0.289104 -0.285957 0.910783)} Vertex 15185 0.0149845 12.8442 0.73984 {normal=(-0.000056 -0.319017 0.947015)} Vertex 15186 -0.280056 12.4399 0.586106 {normal=(-0.080969 -0.333367 0.938061)} Vertex 15187 0.637158 12.8876 0.692338 {normal=(0.178628 -0.297458 0.936554)} Vertex 15188 0.32377 12.4399 0.586106 {normal=(0.079934 -0.332263 0.938588)} Vertex 15189 1.51025 13.0031 0.45348 {normal=(0.504101 -0.185623 0.825587)} Vertex 15190 1.15513 12.5244 0.44975 {normal=(0.282445 -0.280517 0.914499)} Vertex 15191 1.89715 13.1355 0.069204 {normal=(0.829731 -0.018806 0.557049)} Vertex 15192 1.84982 12.6533 0.122453 {normal=(0.726888 -0.071836 0.669620)} Vertex 15193 2.11558 13.261 -0.299829 {normal=(0.898268 0.024019 0.434417)} Vertex 15194 2.11764 12.7872 -0.269946 {normal=(0.861549 0.022598 0.505569)} Vertex 15195 2.2459 13.3547 -0.618279 {normal=(0.910560 0.009434 0.409608)} Vertex 15196 2.26977 12.8868 -0.601489 {normal=(0.928066 0.077483 0.364008)} Vertex 15197 2.44232 13.608 -1.11833 {normal=(0.966997 0.045507 0.211183)} Vertex 15198 2.42654 13.0318 -0.969768 {normal=(0.919952 0.045946 0.384528)} Vertex 15199 2.33286 14.1518 -2.01817 {normal=(0.922818 0.192772 -0.297908)} Vertex 15200 2.50563 13.4503 -1.70257 {normal=(0.977712 0.167168 -0.022060)} Vertex 15201 1.72282 14.6297 -2.69224 {normal=(0.640630 0.302404 -0.698070)} Vertex 15202 2.14088 13.9824 -2.53705 {normal=(0.797617 0.302965 -0.503998)} Vertex 15203 0.757939 15.0982 -3.12444 {normal=(0.378100 0.320276 -0.864952)} Vertex 15204 1.28792 14.4581 -3.09299 {normal=(0.506569 0.349124 -0.785051)} Vertex 15205 0.0361962 15.3472 -3.21362 {normal=(-0.001241 0.319424 -0.941597)} Vertex 15206 0.395635 14.8572 -3.34792 {normal=(0.205778 0.343982 -0.910309)} Vertex 15207 -0.661357 15.0982 -3.12444 {normal=(-0.398055 0.321016 -0.854893)} Vertex 15208 -0.309011 14.8572 -3.34792 {normal=(-0.209557 0.343350 -0.909223)} Vertex 15209 -1.17759 14.4581 -3.09299 {normal=(-0.520427 0.365884 -0.767978)} Vertex 15210 -1.74818 13.8079 -2.98904 {normal=(-0.645766 0.388402 -0.648850)} Vertex 15211 -2.3653 13.33 -2.31497 {normal=(-0.912810 0.293744 -0.248409)} Vertex 15212 -2.19287 13.2694 -2.80306 {normal=(-0.798361 0.324482 -0.487378)} Vertex 15213 -2.50752 12.7861 -1.41513 {normal=(-0.963879 0.114563 0.203019)} Vertex 15214 -2.56396 12.7373 -1.96859 {normal=(-0.978160 0.144746 -0.048456)} Vertex 15215 -2.33626 12.5329 -0.915073 {normal=(-0.920168 0.045804 0.385176)} Vertex 15216 -2.50088 12.3187 -1.23578 {normal=(-0.933789 -0.023698 0.337856)} Vertex 15217 -2.22081 12.4392 -0.596624 {normal=(-0.907516 0.046220 0.411968)} Vertex 15218 -2.35087 12.1737 -0.867502 {normal=(-0.942886 -0.000749 0.319706)} Vertex 15219 -2.00583 12.3137 -0.22759 {normal=(-0.826729 -0.015220 0.561451)} Vertex 15220 -2.20548 12.0741 -0.53596 {normal=(-0.872768 -0.060262 0.474165)} Vertex 15221 -1.60446 12.1813 0.156687 {normal=(-0.491693 -0.199659 0.829510)} Vertex 15222 -1.93795 11.9403 -0.14356 {normal=(-0.729030 -0.149144 0.649638)} Vertex 15223 -0.674713 12.0657 0.395544 {normal=(-0.167852 -0.325660 0.929265)} Vertex 15224 -1.21683 11.8113 0.183736 {normal=(-0.275281 -0.340358 0.894744)} Vertex 15225 0.0214893 12.0223 0.443045 {normal=(-0.000015 -0.349172 0.936512)} Vertex 15226 -0.320253 11.7268 0.320092 {normal=(-0.075584 -0.385868 0.917444)} Vertex 15227 0.725383 12.0658 0.395544 {normal=(0.163434 -0.327255 0.929599)} Vertex 15228 0.359568 11.7269 0.320092 {normal=(0.074193 -0.386711 0.917273)} Vertex 15229 1.68797 12.1812 0.156687 {normal=(0.485940 -0.201299 0.831771)} Vertex 15230 1.28051 11.8113 0.183736 {normal=(0.267058 -0.344359 0.895914)} Vertex 15231 2.09431 12.3137 -0.22759 {normal=(0.828161 -0.008107 0.559525)} Vertex 15232 2.02395 11.9403 -0.14356 {normal=(0.727399 -0.154258 0.649802)} Vertex 15233 2.30803 12.4392 -0.596624 {normal=(0.907598 0.061336 0.410219)} Vertex 15234 2.29096 12.0741 -0.53596 {normal=(0.873936 -0.064142 0.471761)} Vertex 15235 2.4223 12.5329 -0.915073 {normal=(0.918638 0.062539 0.386788)} Vertex 15236 2.43586 12.1737 -0.867502 {normal=(0.943770 -0.004067 0.317365)} Vertex 15237 2.59113 12.7861 -1.41513 {normal=(0.961591 0.124566 0.211305)} Vertex 15238 2.58521 12.3187 -1.23578 {normal=(0.934737 -0.025272 0.335168)} Vertex 15239 2.45683 13.33 -2.31497 {normal=(0.918294 0.274588 -0.247749)} Vertex 15240 2.64792 12.7373 -1.96859 {normal=(0.979010 0.140279 -0.049257)} Vertex 15241 1.84523 13.8079 -2.98903 {normal=(0.642735 0.366467 -0.663994)} Vertex 15242 2.27845 13.2694 -2.80306 {normal=(0.799542 0.314732 -0.492144)} Vertex 15243 0.837562 14.2763 -3.42123 {normal=(0.369934 0.363593 -0.851339)} Vertex 15244 1.39971 13.7451 -3.35901 {normal=(0.501460 0.387333 -0.770053)} Vertex 15245 0.0439853 14.5253 -3.51042 {normal=(0.000073 0.353787 -0.929678)} Vertex 15246 0.438529 14.1441 -3.61394 {normal=(0.202741 0.391944 -0.890990)} Vertex 15247 -0.74787 14.2763 -3.42123 {normal=(-0.374868 0.368902 -0.846588)} Vertex 15248 -0.352852 14.1441 -3.61394 {normal=(-0.203553 0.393091 -0.890247)} Vertex 15249 -1.31277 13.7451 -3.35901 {normal=(-0.503311 0.392934 -0.765987)} Vertex 15250 -1.84202 13.3855 -3.15175 {normal=(-0.639762 0.341989 -0.680230)} Vertex 15251 -2.46046 12.9076 -2.47767 {normal=(-0.920063 0.120946 -0.339832)} Vertex 15252 -1.63187 12.9801 -2.50319 {normal=(0.081961 -0.857235 -0.508034)} Vertex 15253 -2.59644 12.3638 -1.57784 {normal=(-0.978435 -0.107962 0.080020)} Vertex 15254 -1.92807 12.6136 -1.9207 {normal=(0.075476 -0.865727 -0.494597)} Vertex 15255 -2.42908 12.1105 -1.07778 {normal=(-0.932535 -0.195656 0.288243)} Vertex 15256 -1.9225 12.312 -1.39106 {normal=(0.085354 -0.880268 -0.465736)} Vertex 15257 -2.31954 12.0168 -0.759334 {normal=(-0.920176 -0.188498 0.325768)} Vertex 15258 -1.82527 12.1793 -1.08555 {normal=(0.100504 -0.911197 -0.397538)} Vertex 15259 -2.10916 11.8913 -0.390301 {normal=(-0.837627 -0.244603 0.480287)} Vertex 15260 -1.69648 12.0771 -0.806697 {normal=(0.061325 -0.914196 -0.399428)} Vertex 15261 -1.70224 11.7589 -0.00602375 {normal=(-0.491488 -0.378735 0.761557)} Vertex 15262 -1.46085 11.9594 -0.500504 {normal=(0.025309 -0.916515 -0.398445)} Vertex 15263 -0.726125 11.6434 0.232833 {normal=(-0.162716 -0.450004 0.875942)} Vertex 15264 -0.914293 11.8541 -0.251666 {normal=(-0.006020 -0.909803 -0.414759)} Vertex 15265 0.018384 11.5999 0.280335 {normal=(-0.000123 -0.461795 0.885614)} Vertex 15266 -0.24225 11.7883 -0.143165 {normal=(-0.014697 -0.905430 -0.424077)} Vertex 15267 0.771057 11.6434 0.232833 {normal=(0.158125 -0.450976 0.876417)} Vertex 15268 0.293522 11.7883 -0.143165 {normal=(0.014579 -0.905982 -0.422908)} Vertex 15269 1.78177 11.7589 -0.00602375 {normal=(0.484354 -0.381691 0.764205)} Vertex 15270 0.981593 11.8541 -0.251666 {normal=(0.005858 -0.910285 -0.413738)} Vertex 15271 2.19407 11.8913 -0.390301 {normal=(0.838082 -0.245738 0.479159)} Vertex 15272 1.54308 11.9594 -0.500504 {normal=(-0.024617 -0.917009 -0.397395)} Vertex 15273 2.40391 12.0168 -0.759334 {normal=(0.920625 -0.189375 0.324488)} Vertex 15274 1.7791 12.0771 -0.806696 {normal=(-0.051017 -0.917052 -0.394712)} Vertex 15275 2.51303 12.1105 -1.07778 {normal=(0.933065 -0.196075 0.286784)} Vertex 15276 1.9083 12.1793 -1.08555 {normal=(-0.080383 -0.914168 -0.394430)} Vertex 15277 2.67963 12.3638 -1.57784 {normal=(0.978699 -0.108248 0.079224)} Vertex 15278 2.00587 12.312 -1.39106 {normal=(-0.072532 -0.880424 -0.467340)} Vertex 15279 2.5442 12.9076 -2.47767 {normal=(0.920569 0.119449 -0.339456)} Vertex 15280 2.01193 12.6135 -1.9207 {normal=(-0.063073 -0.862565 -0.501644)} Vertex 15281 1.92764 13.3855 -3.15175 {normal=(0.640169 0.340326 -0.680647)} Vertex 15282 1.71705 12.9801 -2.50319 {normal=(-0.062753 -0.847944 -0.525747)} Vertex 15283 0.886875 13.8539 -3.58395 {normal=(0.380862 0.429739 -0.815614)} Vertex 15284 1.07173 13.3021 -2.89493 {normal=(-0.090934 -0.814655 -0.571832)} Vertex 15285 0.0424565 14.1029 -3.67313 {normal=(-0.000084 0.456930 -0.880881)} Vertex 15286 0.352105 13.5645 -3.07755 {normal=(-0.084073 -0.786188 -0.609053)} Vertex 15287 -0.801476 13.854 -3.58395 {normal=(-0.381547 0.430589 -0.814860)} Vertex 15288 -0.266664 13.5645 -3.07755 {normal=(0.083903 -0.785925 -0.609428)} Vertex 15289 -0.985734 13.3022 -2.89493 {normal=(0.099991 -0.820978 -0.560479)} Vertex 15290 -2.9327 17.7384 -0.304821 {normal=(-0.775431 -0.556135 -0.141314)} Vertex 15291 -3.1269 18.7716 -0.257944 {normal=(-0.955755 -0.118927 0.138466)} Vertex 15292 -3.18458 19.3432 -0.00905975 {normal=(-0.553120 -0.234015 0.791267)} Vertex 15293 -3.24006 19.663 -0.00110175 {normal=(-0.413986 0.135219 0.889247)} Vertex 15294 -3.34285 19.3795 -0.132736 {normal=(-0.819215 -0.310313 0.408999)} Vertex 15295 -3.26964 19.127 -0.238668 {normal=(-0.809662 -0.473911 0.181568)} Vertex 15296 -3.41422 19.6667 -0.134648 {normal=(-0.824651 -0.076066 0.505665)} Vertex 15297 -3.49639 19.9096 -0.304402 {normal=(-0.839313 0.237519 0.369880)} Vertex 15298 -3.2516 19.2266 -0.424968 {normal=(-0.842925 -0.109952 -0.490485)} Vertex 15299 -3.15705 19.0898 -0.531983 {normal=(-0.833008 -0.264948 -0.468177)} Vertex 15300 -3.33579 19.4055 -0.334377 {normal=(-0.820869 -0.185096 -0.480372)} Vertex 15301 -3.42147 19.6207 -0.324858 {normal=(-0.798462 -0.391638 -0.358111)} Vertex 15302 -3.47 19.7731 -0.440203 {normal=(-0.757981 -0.556912 -0.220310)} Vertex 15303 -3.51671 20.0233 -0.598812 {normal=(-0.877182 0.353760 0.030043)} Vertex 15304 -3.46621 19.8074 -0.630458 {normal=(-0.756308 -0.608786 0.020820)} Vertex 15305 -3.50345 19.9473 -0.935171 {normal=(-0.839567 0.343608 -0.244146)} Vertex 15306 -3.45952 19.7496 -0.858855 {normal=(-0.787347 -0.538729 0.222745)} Vertex 15307 -3.46371 19.6955 -1.20726 {normal=(-0.866907 0.105136 -0.382931)} Vertex 15308 -3.43195 19.5874 -1.02454 {normal=(-0.841269 -0.340115 0.370033)} Vertex 15309 -3.3988 19.2944 -1.30247 {normal=(-0.898517 -0.118751 -0.350264)} Vertex 15310 -3.38841 19.2713 -1.10707 {normal=(-0.905025 -0.166211 0.355937)} Vertex 15311 -3.33153 18.8145 -1.21886 {normal=(-0.911539 -0.249002 -0.216722)} Vertex 15312 -3.31814 18.9002 -1.06393 {normal=(-0.904514 -0.081585 0.401100)} Vertex 15313 -3.25515 18.4763 -1.05764 {normal=(-0.886340 -0.295047 -0.233063)} Vertex 15314 -3.24359 18.5899 -0.874828 {normal=(-0.992375 -0.054298 0.053283)} Vertex 15315 -3.19094 18.4615 -0.48375 {normal=(-0.925635 0.233292 0.291903)} Vertex 15316 -3.2036 18.5802 -0.612104 {normal=(-0.903233 0.199995 0.341579)} Vertex 15317 -3.10937 18.6739 -0.411694 {normal=(-0.955020 0.162330 -0.070879)} Vertex 15318 -3.08431 18.769 -0.489584 {normal=(-0.941280 0.123996 -0.011279)} Vertex 15319 -3.24068 18.7792 -0.755787 {normal=(-0.848795 0.190144 0.395350)} Vertex 15320 -3.28003 18.9366 -0.979806 {normal=(-0.945239 -0.135678 0.053826)} Vertex 15321 -3.32306 19.2664 -0.986642 {normal=(-0.932236 -0.053748 0.108831)} Vertex 15322 -3.34847 19.4521 -0.779394 {normal=(-0.961564 0.201178 -0.083369)} Vertex 15323 -3.31377 19.5219 -0.903712 {normal=(-0.901129 -0.124045 0.229005)} Vertex 15324 -3.32175 19.5842 -0.683989 {normal=(-0.974331 0.151488 0.101792)} Vertex 15325 -3.32523 19.6531 -0.798501 {normal=(-0.812316 -0.433989 0.220189)} Vertex 15326 -3.31799 19.7054 -0.625793 {normal=(-0.742025 -0.576166 0.139494)} Vertex 15327 -3.28799 19.5348 -0.579836 {normal=(-0.832623 -0.103564 0.523686)} Vertex 15328 -3.21204 19.4855 -0.461854 {normal=(-0.844956 -0.201539 -0.269050)} Vertex 15329 -3.31024 19.3181 -0.72292 {normal=(-0.581782 -0.506986 0.572005)} Vertex 15330 -3.15221 19.3144 -0.560064 {normal=(-0.843868 -0.300480 -0.124188)} Vertex 15331 -3.1643 17.9115 -0.40018 {normal=(-0.677773 -0.665972 0.201717)} Vertex 15332 -3.29585 19.1419 -0.863951 {normal=(-0.358018 -0.386316 0.822061)} Vertex 15333 -3.0741 19.1382 -0.778086 {normal=(-0.670686 -0.457530 0.384829)} Vertex 15334 -3.29311 19.7795 -1.29877 {normal=(-0.033801 0.465004 -0.821221)} Vertex 15335 -3.26981 19.2995 -1.39846 {normal=(0.050795 0.006428 -0.938045)} Vertex 15336 -3.20929 18.7848 -1.31834 {normal=(0.030771 -0.284056 -0.886177)} Vertex 15337 -3.11185 18.4273 -1.14807 {normal=(0.092293 -0.461519 -0.801279)} Vertex 15338 -3.11525 17.8387 -0.722145 {normal=(-0.304270 -0.775659 -0.372830)} Vertex 15339 -2.91843 18.2023 -0.852494 {normal=(0.546830 -0.391491 -0.722426)} Vertex 15340 -2.94769 18.4915 -1.04613 {normal=(0.509824 -0.375145 -0.757828)} Vertex 15341 -3.00776 18.8275 -1.20656 {normal=(0.440093 -0.208281 -0.861218)} Vertex 15342 -2.82735 18.8522 -1.22165 {normal=(-0.590020 -0.327591 -0.655074)} Vertex 15343 -3.05502 19.2732 -1.27841 {normal=(0.347170 -0.001566 -0.918514)} Vertex 15344 -2.96395 18.346 1.84429 {normal=(-0.948788 -0.300384 -0.019300)} Vertex 15345 -2.82525 18.0358 1.66001 {normal=(-0.925777 -0.370334 -0.024630)} Vertex 15346 -2.74296 17.8915 2.10856 {normal=(-0.880279 -0.470909 0.054296)} Vertex 15347 -2.87891 18.191 2.39258 {normal=(-0.935582 -0.294579 0.138446)} Vertex 15348 -2.76181 17.8326 1.53248 {normal=(-0.947262 -0.275115 0.144416)} Vertex 15349 -2.61807 17.6064 1.87143 {normal=(-0.910217 -0.391600 0.124418)} Vertex 15350 -2.75481 17.6681 1.38969 {normal=(-0.932501 -0.162341 0.315099)} Vertex 15351 -2.59136 17.4095 1.68973 {normal=(-0.925969 -0.201769 0.308183)} Vertex 15352 -2.8034 17.4963 1.21984 {normal=(-0.925990 -0.084719 0.366077)} Vertex 15353 -2.67101 17.1648 1.43007 {normal=(-0.909372 -0.079224 0.407459)} Vertex 15354 -2.90583 17.144 0.878872 {normal=(-0.942897 -0.036936 0.326951)} Vertex 15355 -2.80474 16.8516 1.08408 {normal=(-0.921015 -0.076394 0.380569)} Vertex 15356 -2.99679 16.885 0.514873 {normal=(-0.976247 -0.125644 0.062327)} Vertex 15357 -2.90153 16.7016 0.180622 {normal=(-0.936288 -0.211192 -0.269577)} Vertex 15358 -2.7971 16.2126 0.419942 {normal=(-0.927781 -0.357153 -0.070459)} Vertex 15359 -2.71884 16.5144 -0.166824 {normal=(-0.823629 -0.252208 -0.494193)} Vertex 15360 -2.60787 15.9535 0.0823893 {normal=(-0.792280 -0.469506 -0.363344)} Vertex 15361 -2.47279 16.4462 -0.502583 {normal=(-0.874508 -0.243016 -0.400698)} Vertex 15362 -2.26358 16.7008 -1.25794 {normal=(-0.883827 -0.119018 -0.437381)} Vertex 15363 -2.1672 16.2015 -1.38246 {normal=(-0.895774 -0.014622 -0.420863)} Vertex 15364 -2.10799 15.6929 -1.56843 {normal=(-0.884330 0.127135 -0.430827)} Vertex 15365 -2.37979 15.1704 -0.64247 {normal=(-0.989543 0.019703 0.034227)} Vertex 15366 -1.9514 17.0814 -1.7406 {normal=(-0.720289 -0.107359 -0.682034)} Vertex 15367 -1.67437 16.6894 -1.99518 {normal=(-0.678150 0.014062 -0.732362)} Vertex 15368 -1.49121 16.1746 -2.23656 {normal=(-0.652365 0.153276 -0.737412)} Vertex 15369 -2.83182 21.7899 -1.31606 {normal=(-0.859076 0.306232 -0.381792)} Vertex 15370 -2.21651 22.6928 -1.39051 {normal=(-0.631944 0.626172 -0.425973)} Vertex 15371 -2.99195 21.7607 -0.720062 {normal=(-0.951414 0.255064 -0.141299)} Vertex 15372 -2.65212 22.6018 -0.344693 {normal=(-0.796524 0.581513 -0.062327)} Vertex 15373 -3.07222 21.6142 -0.205129 {normal=(-0.981373 0.161906 0.008809)} Vertex 15374 -2.78421 22.2557 0.385499 {normal=(-0.874590 0.438023 0.184928)} Vertex 15375 -3.06806 21.3934 0.105809 {normal=(-0.987474 0.075645 0.122146)} Vertex 15376 -2.8183 21.9206 0.798733 {normal=(-0.909366 0.305648 0.268816)} Vertex 15377 -3.00771 20.9529 0.597554 {normal=(-0.969844 0.032098 0.234580)} Vertex 15378 -2.80413 21.465 1.20365 {normal=(-0.928284 0.148940 0.328637)} Vertex 15379 -2.8583 20.4003 1.08471 {normal=(-0.956087 0.060859 0.278855)} Vertex 15380 -2.71576 20.9144 1.5407 {normal=(-0.944046 0.057656 0.320753)} Vertex 15381 -2.69169 20.4772 1.73566 {normal=(-0.851703 0.363657 -0.057985)} Vertex 15382 -1.49092 23.1363 -1.27559 {normal=(-0.278177 0.893133 -0.326192)} Vertex 15383 -1.98402 23.1725 0.168084 {normal=(-0.465753 0.865526 0.063768)} Vertex 15384 -1.09002 23.4201 0.704946 {normal=(-0.247280 0.947666 0.144473)} Vertex 15385 -2.11934 22.7598 1.2519 {normal=(-0.618630 0.688541 0.354154)} Vertex 15386 -1.27149 22.9213 1.84623 {normal=(-0.319677 0.805489 0.492167)} Vertex 15387 -2.19789 22.3446 1.75404 {normal=(-0.697526 0.530808 0.464422)} Vertex 15388 -2.2631 21.898 2.07433 {normal=(-0.758779 0.390216 0.507946)} Vertex 15389 -1.61967 21.9457 2.72159 {normal=(-0.484495 0.534572 0.686660)} Vertex 15390 -2.33248 21.3972 2.30089 {normal=(-0.829787 0.282261 0.467833)} Vertex 15391 -1.78905 21.4358 2.96833 {normal=(-0.551601 0.433699 0.702587)} Vertex 15392 -2.39356 21.0056 2.44346 {normal=(-0.734433 0.539381 0.225587)} Vertex 15393 -1.94968 20.9979 3.08909 {normal=(-0.428646 0.608834 0.611302)} Vertex 15394 -1.54006 20.839 3.40743 {normal=(-0.281088 0.570031 0.746618)} Vertex 15395 -1.44248 21.2867 3.23668 {normal=(-0.323872 0.433237 0.839244)} Vertex 15396 -1.26919 21.824 2.97669 {normal=(-0.218353 0.539325 0.812295)} Vertex 15397 -1.15684 20.6097 3.73852 {normal=(-0.229223 0.587535 0.760782)} Vertex 15398 -1.08361 21.0466 3.50307 {normal=(-0.282767 0.496681 0.819052)} Vertex 15399 -0.854909 21.6107 3.19909 {normal=(-0.192189 0.535349 0.822376)} Vertex 15400 -0.799816 20.39 3.95063 {normal=(0.001810 0.460378 0.875572)} Vertex 15401 -0.712369 20.7226 3.80606 {normal=(-0.103158 0.451195 0.878929)} Vertex 15402 -0.498268 21.3969 3.42429 {normal=(-0.148991 0.534164 0.831103)} Vertex 15403 -0.376696 20.0359 3.99556 {normal=(0.123113 -0.080056 0.954161)} Vertex 15404 -0.397089 20.5058 3.88916 {normal=(-0.066309 0.348282 0.928400)} Vertex 15405 0.0752675 22.0984 2.99069 {normal=(0.014142 0.572003 0.819228)} Vertex 15406 -0.155088 20.0903 4.0222 {normal=(-0.090740 -0.058560 0.985207)} Vertex 15407 -0.200427 20.4782 3.94029 {normal=(-0.128411 0.340346 0.924688)} Vertex 15408 -0.537195 22.9301 2.16137 {normal=(-0.166961 0.795509 0.575793)} Vertex 15409 -0.490881 23.4975 0.982504 {normal=(-0.104011 0.961052 0.213548)} Vertex 15410 -2.13695 15.805 2.75493 {normal=(-0.715131 -0.296238 0.616485)} Vertex 15411 -2.24629 15.4893 2.29806 {normal=(-0.865263 -0.273071 0.406644)} Vertex 15412 -1.78158 15.1198 2.67718 {normal=(-0.683717 -0.429778 0.588733)} Vertex 15413 -1.75524 15.4726 2.99383 {normal=(-0.685495 -0.399224 0.605322)} Vertex 15414 -1.43016 14.8889 2.94886 {normal=(-0.764926 -0.359821 0.529517)} Vertex 15415 -1.80981 14.7142 2.37524 {normal=(-0.718360 -0.512803 0.441768)} Vertex 15416 -1.92088 14.7871 1.72119 {normal=(-0.660993 -0.728851 -0.163462)} Vertex 15417 -1.67403 14.5168 2.19377 {normal=(-0.561588 -0.817781 0.009289)} Vertex 15418 -1.58282 14.5931 1.4774 {normal=(-0.535801 -0.822272 -0.184805)} Vertex 15419 -1.36883 14.3753 1.95557 {normal=(-0.402275 -0.904209 -0.117721)} Vertex 15420 -1.23752 14.4571 1.39721 {normal=(-0.204611 -0.925478 -0.290872)} Vertex 15421 -1.1098 14.3108 1.89059 {normal=(-0.195061 -0.957713 -0.206569)} Vertex 15422 -0.566652 14.3753 1.52087 {normal=(-0.049893 -0.924654 -0.376415)} Vertex 15423 -0.589288 14.2212 1.92749 {normal=(-0.113244 -0.941876 -0.313389)} Vertex 15424 -0.542313 14.0861 2.34102 {normal=(-0.184259 -0.950526 -0.241591)} Vertex 15425 -0.016832 14.1649 1.97547 {normal=(0.000125 -0.937366 -0.346167)} Vertex 15426 -0.0190575 14.0365 2.351 {normal=(-0.000542 -0.956450 -0.288772)} Vertex 15427 -2.28411 16.156 2.75623 {normal=(-0.742214 -0.282500 0.562994)} Vertex 15428 -2.37657 16.1438 2.4274 {normal=(-0.971504 -0.183502 0.131441)} Vertex 15429 -2.45692 15.8313 1.93901 {normal=(-0.935565 -0.136484 0.322258)} Vertex 15430 -2.44686 15.5281 1.74267 {normal=(-0.939039 -0.302333 0.109596)} Vertex 15431 -2.33272 15.3302 1.56778 {normal=(-0.828425 -0.541062 -0.132670)} Vertex 15432 -2.06885 15.0387 1.34827 {normal=(-0.729458 -0.664191 -0.152682)} Vertex 15433 -1.81483 14.8431 1.12578 {normal=(-0.651979 -0.750488 -0.072425)} Vertex 15434 -0.61183 14.3605 1.16412 {normal=(-0.166600 -0.674563 0.578004)} Vertex 15435 -0.0171715 14.316 1.2111 {normal=(0.000364 -0.677360 0.597176)} Vertex 15436 -2.74176 18.0108 2.79015 {normal=(-0.910104 -0.296665 0.248570)} Vertex 15437 -2.66279 17.7786 2.43507 {normal=(-0.896774 -0.438723 0.046162)} Vertex 15438 -2.58602 17.6037 2.61993 {normal=(-0.950658 -0.303675 0.012377)} Vertex 15439 -2.58901 17.745 2.99317 {normal=(-0.890319 -0.280519 0.329987)} Vertex 15440 -2.53724 17.3629 2.68373 {normal=(-0.985160 -0.151046 -0.002169)} Vertex 15441 -2.47881 17.4036 3.04639 {normal=(-0.820664 -0.229791 0.479576)} Vertex 15442 -2.51089 17.0923 2.67594 {normal=(-0.985937 -0.124240 0.010725)} Vertex 15443 -2.42357 17.1003 3.00867 {normal=(-0.736536 -0.225032 0.584889)} Vertex 15444 -2.37499 16.6731 2.9018 {normal=(-0.728056 -0.254512 0.579633)} Vertex 15445 -2.41105 16.5776 2.1742 {normal=(-0.991859 -0.013842 0.061522)} Vertex 15446 -2.57726 16.1141 1.66402 {normal=(-0.960325 -0.058604 0.261087)} Vertex 15447 -2.5681 15.8479 1.43088 {normal=(-0.955790 -0.274422 0.079693)} Vertex 15448 -2.45037 15.5631 1.16182 {normal=(-0.856251 -0.510949 -0.013517)} Vertex 15449 -2.21284 15.2607 0.934834 {normal=(-0.760067 -0.647641 -0.040806)} Vertex 15450 -2.03314 15.0533 0.76251 {normal=(-0.761320 -0.635010 0.095831)} Vertex 15451 -1.90464 14.664 0.526376 {normal=(-0.817018 -0.333006 0.450820)} Vertex 15452 -2.20093 15.2377 0.441455 {normal=(-0.859654 -0.486359 0.053525)} Vertex 15453 -2.13326 14.7984 0.164469 {normal=(-0.908012 -0.213239 0.348337)} Vertex 15454 -2.35374 15.4365 0.612947 {normal=(-0.772085 -0.631675 -0.038296)} Vertex 15455 -2.57238 15.7626 0.864879 {normal=(-0.872500 -0.476923 0.071577)} Vertex 15456 -2.65538 16.0933 1.18406 {normal=(-0.942551 -0.273638 0.176840)} Vertex 15457 -2.62785 16.3332 1.48504 {normal=(-0.953605 -0.056944 0.284776)} Vertex 15458 -2.47744 16.3968 1.927 {normal=(-0.940828 0.034133 0.336970)} Vertex 15459 -2.51716 16.628 1.79412 {normal=(-0.940171 0.026187 0.339473)} Vertex 15460 -2.43177 16.8566 2.06698 {normal=(-0.979892 -0.069270 0.150585)} Vertex 15461 -2.45333 16.9946 2.37354 {normal=(-0.982017 -0.112989 -0.140627)} Vertex 15462 -2.54644 17.4706 2.08887 {normal=(-0.940753 -0.332937 0.048096)} Vertex 15463 -2.51634 17.2557 1.85711 {normal=(-0.963003 -0.131637 0.217092)} Vertex 15464 -2.60431 16.9633 1.5612 {normal=(-0.927281 -0.022482 0.373035)} Vertex 15465 -2.74558 16.6817 1.21286 {normal=(-0.935381 -0.034868 0.349703)} Vertex 15466 -2.49717 17.3338 2.24711 {normal=(-0.969957 -0.235124 -0.002401)} Vertex 15467 -2.5559 16.7948 1.67576 {normal=(-0.935194 -0.004191 0.353058)} Vertex 15468 -2.69245 16.4875 1.34323 {normal=(-0.932374 -0.068222 0.349251)} Vertex 15469 -2.74522 16.2525 1.03124 {normal=(-0.933333 -0.271099 0.224988)} Vertex 15470 -2.67203 15.9217 0.673152 {normal=(-0.893205 -0.439476 0.055137)} Vertex 15471 -2.46414 15.6022 0.363521 {normal=(-0.748040 -0.616662 -0.200721)} Vertex 15472 -2.28692 15.4523 0.174999 {normal=(-0.878468 -0.410234 -0.058481)} Vertex 15473 -2.25767 14.9109 -0.146574 {normal=(-0.944289 -0.129960 0.299859)} Vertex 15474 -2.47785 17.2101 2.31312 {normal=(-0.985253 -0.143997 -0.078448)} Vertex 15475 -0.204334 19.2502 4.17825 {normal=(-0.513809 0.553483 0.643432)} Vertex 15476 0 19.2844 4.22822 {normal=(0.000000 0.637188 0.755748)} Vertex 15477 -0.227916 18.9702 4.38879 {normal=(-0.541723 0.508189 0.649757)} Vertex 15478 0 18.999 4.44823 {normal=(0.000000 0.588508 0.798245)} Vertex 15479 -0.259853 18.7371 4.54962 {normal=(-0.585522 0.511872 0.588839)} Vertex 15480 0 18.7574 4.6202 {normal=(0.000000 0.602926 0.791663)} Vertex 15481 -0.357781 19.481 3.8343 {normal=(-0.743854 -0.034215 0.599817)} Vertex 15482 -0.360944 19.1791 4.02481 {normal=(-0.826088 0.377486 0.410662)} Vertex 15483 -0.399166 18.886 4.19272 {normal=(-0.876729 0.272705 0.385254)} Vertex 15484 -0.41747 18.6119 4.31339 {normal=(-0.903731 0.306494 0.285147)} Vertex 15485 -0.499588 19.309 3.58495 {normal=(-0.805608 0.099350 0.530600)} Vertex 15486 -0.537862 19.0432 3.74501 {normal=(-0.811720 0.369388 0.440800)} Vertex 15487 -0.806511 18.9124 3.55402 {normal=(-0.328897 0.433896 0.803989)} Vertex 15488 -0.851787 18.6542 3.66368 {normal=(-0.370779 0.337763 0.853359)} Vertex 15489 -0.858311 18.395 3.75414 {normal=(-0.342036 0.209719 0.907824)} Vertex 15490 -0.4683 19.8693 3.96435 {normal=(0.304256 -0.433105 0.780391)} Vertex 15491 -0.591804 19.5028 3.57294 {normal=(-0.408045 -0.579391 0.679343)} Vertex 15492 -0.674838 19.3605 3.44898 {normal=(0.112329 -0.049073 0.956317)} Vertex 15493 -1.36073 18.9142 3.55321 {normal=(0.064442 0.025620 0.991011)} Vertex 15494 -0.312275 18.4052 4.78891 {normal=(-0.582376 0.295092 0.706019)} Vertex 15495 0 18.4342 4.85882 {normal=(0.000000 0.364594 0.915889)} Vertex 15496 -0.486365 18.3303 4.51116 {normal=(-0.903668 0.217766 0.347118)} Vertex 15497 -0.577502 18.2905 4.3258 {normal=(-0.756329 0.422880 0.459679)} Vertex 15498 -0.740756 18.22 4.19016 {normal=(-0.729935 0.486915 0.447374)} Vertex 15499 -0.843179 18.1016 4.05616 {normal=(-0.935813 0.256360 0.057816)} Vertex 15500 -0.771342 17.8701 4.16614 {normal=(-0.660235 -0.493439 0.519388)} Vertex 15501 -0.681014 17.9643 4.32968 {normal=(-0.601212 -0.312379 0.692614)} Vertex 15502 0 17.9845 4.83739 {normal=(0.000000 -0.495287 0.843374)} Vertex 15503 -0.17184 17.759 4.5524 {normal=(-0.551349 -0.644827 0.479094)} Vertex 15504 0 17.7402 4.59482 {normal=(0.000000 -0.717793 0.686421)} Vertex 15505 -0.369798 17.9454 4.16084 {normal=(-0.542652 -0.480215 0.574600)} Vertex 15506 -0.463904 17.6642 4.19922 {normal=(-0.342322 0.310383 0.885233)} Vertex 15507 -0.194523 17.3223 4.339 {normal=(-0.158820 -0.097340 0.978358)} Vertex 15508 -0.510404 17.389 4.25593 {normal=(-0.318114 0.083855 0.937569)} Vertex 15509 -0.448849 15.5604 4.06726 {normal=(-0.262923 -0.358895 0.879319)} Vertex 15510 0 15.5967 4.15868 {normal=(0.000000 -0.365544 0.910253)} Vertex 15511 -0.838007 17.4592 4.11368 {normal=(-0.466741 0.174764 0.858394)} Vertex 15512 -0.837625 15.4789 3.86849 {normal=(-0.466036 -0.370008 0.790144)} Vertex 15513 -1.23047 17.5256 3.75515 {normal=(-0.670197 0.162164 0.718984)} Vertex 15514 -1.32251 18.5443 3.60682 {normal=(-0.102491 0.216859 0.968077)} Vertex 15515 -1.22089 18.2364 3.70611 {normal=(-0.182895 0.110834 0.970045)} Vertex 15516 -1.90737 18.8257 3.53433 {normal=(-0.237929 0.219795 0.934301)} Vertex 15517 -1.87389 18.4126 3.574 {normal=(-0.201709 0.086223 0.972456)} Vertex 15518 -1.71959 18.0277 3.61008 {normal=(-0.178727 -0.109067 0.971965)} Vertex 15519 -2.31109 18.9746 3.17163 {normal=(-0.676514 0.445257 0.569863)} Vertex 15520 -2.60046 18.6921 2.94791 {normal=(-0.805152 0.312533 0.493124)} Vertex 15521 -2.15317 17.884 3.48854 {normal=(-0.364627 -0.185103 0.899184)} Vertex 15522 -2.02382 17.4424 3.35363 {normal=(-0.246092 -0.441893 0.858175)} Vertex 15523 -2.4147 17.8218 3.30025 {normal=(-0.680853 -0.229834 0.684904)} Vertex 15524 -0.348324 14.9816 3.97552 {normal=(-0.245315 0.198734 0.946300)} Vertex 15525 0 14.9927 4.03066 {normal=(0.000000 0.249482 0.961393)} Vertex 15526 -0.310797 14.6363 4.02127 {normal=(-0.210497 -0.130089 0.954214)} Vertex 15527 0 14.3199 3.88075 {normal=(0.000004 -0.602405 0.782031)} Vertex 15528 -0.696301 14.9205 3.85713 {normal=(-0.447636 0.036682 0.889226)} Vertex 15529 -0.549239 14.5435 3.90114 {normal=(-0.434570 -0.248408 0.857570)} Vertex 15530 -0.988519 14.8073 3.63066 {normal=(-0.728860 -0.194374 0.639315)} Vertex 15531 -0.707204 14.3956 3.74005 {normal=(-0.575782 -0.489286 0.628014)} Vertex 15532 -1.09997 14.5396 3.27292 {normal=(-0.778046 -0.432528 0.446173)} Vertex 15533 -0.702035 14.2434 3.52872 {normal=(-0.577347 -0.709159 0.392202)} Vertex 15534 -1.03638 14.2723 3.0254 {normal=(-0.611209 -0.723220 0.280895)} Vertex 15535 -0.653983 14.1439 3.37508 {normal=(-0.456411 -0.840595 0.280060)} Vertex 15536 -0.758432 14.0883 2.87107 {normal=(-0.409161 -0.907516 0.062001)} Vertex 15537 -0.514903 14.0537 3.26556 {normal=(-0.394816 -0.890729 0.223994)} Vertex 15538 -0.421291 13.9645 2.79539 {normal=(-0.233287 -0.962144 -0.095931)} Vertex 15539 -0.291542 13.9383 3.19879 {normal=(-0.285301 -0.936376 0.174253)} Vertex 15540 -2.39608 19.2301 2.69455 {normal=(-0.768185 0.461662 0.432544)} Vertex 15541 -2.13623 19.6496 2.84993 {normal=(-0.778305 0.098234 0.609462)} Vertex 15542 -1.86397 19.8479 3.11862 {normal=(-0.642425 0.096396 0.754148)} Vertex 15543 -1.48515 19.9237 3.35255 {normal=(-0.439646 0.062356 0.884426)} Vertex 15544 -1.17201 19.7896 3.46603 {normal=(-0.184836 -0.054836 0.948825)} Vertex 15545 -0.891531 19.5857 3.46255 {normal=(-0.028822 -0.109288 0.948886)} Vertex 15546 -0.8801 19.779 3.82114 {normal=(-0.300391 -0.800930 0.507291)} Vertex 15547 -0.870451 19.6569 3.64422 {normal=(-0.354785 -0.802219 0.462417)} Vertex 15548 -1.21292 19.9455 3.77416 {normal=(-0.512878 -0.693655 0.503671)} Vertex 15549 -1.18096 19.8372 3.63278 {normal=(-0.534459 -0.787217 0.289917)} Vertex 15550 -1.63538 20.1483 3.59036 {normal=(-0.566788 -0.577469 0.578296)} Vertex 15551 -1.55482 20.0294 3.49222 {normal=(-0.446122 -0.770851 0.428561)} Vertex 15552 -2.03922 20.0559 3.21815 {normal=(-0.539537 -0.469467 0.666279)} Vertex 15553 -2.4624 20.2192 2.61309 {normal=(-0.901157 -0.017450 0.430802)} Vertex 15554 -2.33352 19.8996 2.8193 {normal=(-0.747918 -0.227314 0.595015)} Vertex 15555 -2.70308 19.846 2.11221 {normal=(-0.937640 0.066702 0.335317)} Vertex 15556 -2.54818 19.5921 2.45482 {normal=(-0.810635 -0.141600 0.550401)} Vertex 15557 -2.81515 19.5533 1.83846 {normal=(-0.948691 0.081338 0.291916)} Vertex 15558 -2.88316 19.3357 1.72315 {normal=(-0.939221 0.208202 0.257848)} Vertex 15559 -2.98025 19.0096 1.68587 {normal=(-0.936373 0.279677 0.199857)} Vertex 15560 -2.61157 18.1677 3.10614 {normal=(-0.826326 0.017106 0.553324)} Vertex 15561 -2.8247 18.4195 2.64372 {normal=(-0.917603 0.117557 0.367332)} Vertex 15562 -2.97521 18.5984 2.08418 {normal=(-0.962935 0.084959 0.219692)} Vertex 15563 -3.04099 18.8123 1.62474 {normal=(-0.986422 0.079333 0.048142)} Vertex 15564 -3.00904 18.6532 1.49646 {normal=(-0.969704 -0.177721 -0.155572)} Vertex 15565 -2.50748 20.5197 2.57259 {normal=(-0.865185 -0.257994 0.404321)} Vertex 15566 -2.72785 20.1679 1.92059 {normal=(-0.877279 -0.165487 0.376586)} Vertex 15567 -2.91231 19.5639 1.31524 {normal=(-0.976176 0.136899 0.161769)} Vertex 15568 -2.98888 19.1386 1.17055 {normal=(-0.991114 0.047078 0.046960)} Vertex 15569 -2.98518 17.9882 0.0225355 {normal=(-0.745305 -0.168564 -0.384478)} Vertex 15570 -2.94259 17.3478 0.0454485 {normal=(-0.912484 -0.039531 -0.401553)} Vertex 15571 -2.62837 17.1276 -0.534593 {normal=(-0.881011 -0.180095 -0.428797)} Vertex 15572 -2.43264 17.1958 -1.07557 {normal=(-0.898165 -0.124342 -0.415866)} Vertex 15573 -2.23491 17.4766 -1.49067 {normal=(-0.831661 -0.172563 -0.520611)} Vertex 15574 -3.04291 19.8956 -1.31197 {normal=(-0.759007 -0.423999 0.278204)} Vertex 15575 -1.51086 19.8294 3.38414 {normal=(-0.409746 0.161106 0.878717)} Vertex 15576 -1.19794 19.7237 3.48438 {normal=(-0.133086 0.005208 0.966709)} Vertex 15577 -0.928085 19.5375 3.48752 {normal=(0.047025 -0.002972 0.969880)} Vertex 15578 -0.719245 19.327 3.47396 {normal=(0.205538 -0.002870 0.946918)} Vertex 15579 -0.77517 19.1998 3.47862 {normal=(0.259975 -0.117029 0.932267)} Vertex 15580 -1.31757 19.0367 3.54519 {normal=(-0.016884 0.257438 0.946530)} Vertex 15581 -1.86104 19.0098 3.45103 {normal=(-0.272812 0.521741 0.800525)} Vertex 15582 -2.16191 19.1285 3.19054 {normal=(-0.485308 0.637006 0.586013)} Vertex 15583 -2.27705 19.3046 2.83254 {normal=(-0.732598 0.460330 0.469340)} Vertex 15584 -2.26302 19.4151 2.78762 {normal=(-0.829431 0.229538 0.498570)} Vertex 15585 -2.12249 19.5616 2.93413 {normal=(-0.761650 0.190374 0.602094)} Vertex 15586 -1.85961 19.7444 3.16546 {normal=(-0.631760 0.133991 0.747770)} Vertex 15587 -0.901719 19.5735 3.46951 {normal=(0.347167 0.333963 0.875297)} Vertex 15588 -0.88338 19.5988 3.49005 {normal=(-0.503173 -0.696911 0.478780)} Vertex 15589 -0.655871 19.3773 3.46305 {normal=(-0.393575 -0.379067 0.829093)} Vertex 15590 -0.641545 19.3076 3.44619 {normal=(0.034447 -0.138627 0.945028)} Vertex 15591 -0.687026 19.3487 3.45616 {normal=(0.468646 0.169423 0.854843)} Vertex 15592 -1.18018 19.7726 3.47135 {normal=(0.065625 0.356434 0.926148)} Vertex 15593 -1.16982 19.8048 3.49216 {normal=(-0.535578 -0.748829 0.326459)} Vertex 15594 -1.49094 19.8972 3.36069 {normal=(-0.360703 0.413803 0.827809)} Vertex 15595 -1.49557 19.9548 3.37178 {normal=(-0.402842 -0.709127 0.525451)} Vertex 15596 -1.8615 19.8189 3.13092 {normal=(-0.666826 0.328784 0.661895)} Vertex 15597 -1.89025 19.8908 3.13007 {normal=(-0.376829 -0.550256 0.714832)} Vertex 15598 -2.13501 19.6218 2.86917 {normal=(-0.819878 0.352893 0.447234)} Vertex 15599 -2.16864 19.6944 2.84405 {normal=(-0.541297 -0.379013 0.739358)} Vertex 15600 -2.31929 19.425 2.65742 {normal=(-0.874320 0.313281 0.367418)} Vertex 15601 -2.37082 19.3716 2.59691 {normal=(-0.752754 0.311757 0.567295)} Vertex 15602 -2.41339 19.3846 2.55092 {normal=(-0.655139 0.149253 0.731244)} Vertex 15603 -2.36827 19.4704 2.59621 {normal=(-0.614970 -0.209667 0.753270)} Vertex 15604 -0.393111 17.967 4.31363 {normal=(0.046266 -0.979412 -0.065220)} Vertex 15605 -0.250986 17.864 4.32633 {normal=(-0.910487 -0.312933 0.179611)} Vertex 15606 -0.431825 17.8099 4.1504 {normal=(-0.338496 0.342560 0.874722)} Vertex 15607 -0.654217 17.8694 4.14891 {normal=(0.454582 -0.859701 0.207866)} Vertex 15608 -0.563135 17.9133 4.24179 {normal=(0.345041 -0.936030 0.033374)} Vertex 15609 -0.30092 17.9365 4.33914 {normal=(-0.639909 -0.746193 0.018550)} Vertex 15610 -0.288643 18.5695 4.67877 {normal=(-0.571543 0.557595 0.557631)} Vertex 15611 -0.454329 18.4649 4.41799 {normal=(-0.858035 0.456252 0.233809)} Vertex 15612 -0.569988 18.3904 4.16422 {normal=(-0.678464 0.678632 0.245144)} Vertex 15613 -0.677687 18.3475 4.06789 {normal=(-0.611902 0.758422 0.170276)} Vertex 15614 -0.740124 18.2774 3.98338 {normal=(-0.766594 0.573441 -0.242740)} Vertex 15615 -1.86265e-009 18.2177 4.88862 {normal=(0.000000 -0.010811 0.994415)} Vertex 15616 -0.306783 18.2 4.80813 {normal=(-0.588288 -0.064475 0.773135)} Vertex 15617 -0.477281 18.1671 4.5442 {normal=(-0.900944 -0.093389 0.420306)} Vertex 15618 -0.547776 18.1477 4.4208 {normal=(-0.748720 0.120125 0.631177)} Vertex 15619 -0.726687 18.0878 4.27635 {normal=(-0.737809 0.145149 0.648205)} Vertex 15620 -0.82724 17.9738 4.12037 {normal=(-0.897886 -0.148677 0.396971)} Vertex 15621 -0.869784 17.768 3.97025 {normal=(-0.644066 0.274628 0.708487)} Vertex 15622 -0.955927 17.4804 4.02387 {normal=(-0.664228 0.213926 0.711475)} Vertex 15623 -0.234642 17.8088 4.44694 {normal=(-0.923500 -0.352573 0.057328)} Vertex 15624 -0.310009 17.9286 4.54305 {normal=(-0.622991 -0.757917 0.041409)} Vertex 15625 -0.430933 17.9556 4.42822 {normal=(-0.059849 -0.974604 0.130661)} Vertex 15626 -0.62573 17.9101 4.30421 {normal=(-0.004226 -0.895366 0.399145)} Vertex 15627 -0.716827 17.8442 4.1727 {normal=(0.114446 -0.870891 0.427466)} Vertex 15628 -0.606555 18.3918 3.94932 {normal=(-0.585399 0.732576 -0.224549)} Vertex 15629 -0.74774 18.2015 3.90651 {normal=(-0.791326 0.468763 -0.369736)} Vertex 15630 -0.748644 18.1839 3.87292 {normal=(-0.848702 0.512005 -0.074345)} Vertex 15631 -0.848928 17.9681 3.94322 {normal=(-0.968292 0.094069 -0.110724)} Vertex 15632 -0.829795 17.8562 4.01479 {normal=(-0.914094 -0.254012 0.300080)} Vertex 15633 -0.836625 17.8279 3.98365 {normal=(-0.818760 0.024232 0.559066)} Vertex 15634 -0.793318 17.7222 4.05295 {normal=(-0.579187 0.201771 0.774210)} Vertex 15635 -0.626743 18.3563 3.89633 {normal=(-0.798745 0.510018 0.234762)} Vertex 15636 -0.761201 18.1674 3.83249 {normal=(-0.828508 0.421476 0.320869)} Vertex 15637 -0.82934 18.0725 3.81532 {normal=(-0.621715 0.450750 0.604621)} Vertex 15638 -1.07502 17.8474 3.7696 {normal=(-0.573238 0.267085 0.765656)} Vertex 15639 -1.10276 17.9872 3.72495 {normal=(-0.263605 -0.048533 0.957187)} Vertex 15640 0 16.9508 3.95254 {normal=(0.000000 -0.919710 0.340919)} Vertex 15641 -0.379576 17.0021 3.86189 {normal=(-0.264107 -0.894082 0.326247)} Vertex 15642 -0.746066 17.0532 3.70281 {normal=(-0.286175 -0.878780 0.340288)} Vertex 15643 -1.21535 17.1229 3.45016 {normal=(-0.376121 -0.828105 0.383167)} Vertex 15644 -1.62601 17.0789 3.10244 {normal=(0.041538 -0.478550 0.858371)} Vertex 15645 -1.53159 17.1462 3.17593 {normal=(-0.304930 -0.770959 0.515346)} Vertex 15646 -1.76694 16.6866 2.96478 {normal=(0.077168 -0.212997 0.958697)} Vertex 15647 -1.74752 16.2091 2.95134 {normal=(-0.096354 0.215493 0.950711)} Vertex 15648 -1.54612 16.014 3.11913 {normal=(-0.392542 0.527498 0.745156)} Vertex 15649 -1.17583 15.9828 3.36372 {normal=(-0.390455 0.733043 0.534047)} Vertex 15650 -0.715608 16.0441 3.63808 {normal=(-0.343851 0.783292 0.493125)} Vertex 15651 -0.351479 16.0662 3.79539 {normal=(-0.208106 0.804178 0.536294)} Vertex 15652 -1.86265e-009 16.0677 3.87686 {normal=(0.000000 0.823034 0.545568)} Vertex 15653 -0.44178 15.8335 4.10151 {normal=(-0.312284 0.144732 0.926447)} Vertex 15654 -0.419309 15.9353 4.04044 {normal=(-0.214678 0.790755 0.553964)} Vertex 15655 -0.865971 15.7855 3.91787 {normal=(-0.494523 0.021546 0.851556)} Vertex 15656 -0.837543 15.8984 3.87047 {normal=(-0.359047 0.761508 0.514121)} Vertex 15657 -1.3217 15.7259 3.58195 {normal=(-0.653382 -0.119269 0.725412)} Vertex 15658 -1.30509 15.8398 3.55132 {normal=(-0.493194 0.697133 0.492153)} Vertex 15659 -1.72418 15.7434 3.16245 {normal=(-0.709772 -0.093056 0.683615)} Vertex 15660 -1.67417 15.8491 3.17788 {normal=(-0.488952 0.500747 0.696073)} Vertex 15661 -1.9632 16.0139 2.93337 {normal=(-0.531035 -0.012657 0.835604)} Vertex 15662 -2.03136 16.1771 2.92038 {normal=(-0.315211 -0.227417 0.917909)} Vertex 15663 -2.00128 16.6898 3.02315 {normal=(0.136009 -0.248233 0.952835)} Vertex 15664 -1.83399 17.2252 3.25938 {normal=(0.032149 -0.594920 0.800067)} Vertex 15665 -1.64095 17.3062 3.35185 {normal=(-0.406438 -0.427233 0.755173)} Vertex 15666 -1.6294 17.2216 3.2849 {normal=(-0.233137 -0.778512 0.541170)} Vertex 15667 -1.3216 17.286 3.67424 {normal=(-0.710097 -0.213488 0.653786)} Vertex 15668 -1.30157 17.2019 3.61317 {normal=(-0.450434 -0.812669 0.342568)} Vertex 15669 -0.899533 17.1453 3.97413 {normal=(-0.344517 -0.862228 0.328825)} Vertex 15670 -0.516874 17.1653 4.2385 {normal=(-0.299634 -0.317037 0.886748)} Vertex 15671 -0.49282 17.0877 4.15598 {normal=(-0.246094 -0.883254 0.364137)} Vertex 15672 -2.27473 17.4125 3.2212 {normal=(-0.471283 -0.369636 0.796349)} Vertex 15673 -2.21177 17.1148 3.12397 {normal=(-0.292292 -0.319900 0.899759)} Vertex 15674 -1.86265e-009 15.2143 3.93971 {normal=(0.000000 0.233769 0.960137)} Vertex 15675 -0.382987 15.2344 3.90401 {normal=(-0.176399 0.139026 0.967059)} Vertex 15676 -0.390824 15.3409 3.92421 {normal=(-0.166483 -0.494986 0.840954)} Vertex 15677 -0.767208 15.2356 3.79566 {normal=(-0.418880 0.043959 0.901450)} Vertex 15678 -0.769195 15.3335 3.80783 {normal=(-0.363378 -0.453610 0.794935)} Vertex 15679 -0.749306 19.166 3.45183 {normal=(0.430209 -0.343335 0.827121)} Vertex 15680 -0.637929 19.2229 3.42774 {normal=(0.076215 -0.257477 0.912275)} Vertex 15681 -0.612626 19.2011 3.44304 {normal=(-0.725191 0.188131 0.622263)} Vertex 15682 -0.726039 19.1073 3.45394 {normal=(-0.244983 0.486537 0.795185)} Vertex 15683 -1.36165 18.9466 3.55467 {normal=(0.067179 -0.024045 0.983322)} Vertex 15684 -1.90077 18.7581 3.54294 {normal=(-0.186962 0.100096 0.972398)} Vertex 15685 -1.9036 18.8696 3.51474 {normal=(-0.244990 0.379195 0.885177)} Vertex 15686 -3.00049 19.1315 0.102693 {normal=(-0.743755 -0.074034 -0.297831)} Vertex 15687 -2.99303 18.5195 0.0602455 {normal=(-0.821839 0.027081 -0.318710)} Vertex 15688 -1.1728 22.6299 -2.32307 {normal=(-0.319040 0.828246 -0.446600)} Vertex 15689 -1.72959 22.3375 -2.23468 {normal=(-0.575587 0.617990 -0.514395)} Vertex 15690 -2.57383 21.5891 -1.8472 {normal=(-0.779096 0.384952 -0.464145)} Vertex 15691 -2.99763 21.1701 -1.16044 {normal=(-0.932495 0.192250 -0.262954)} Vertex 15692 -3.05801 21.1127 -0.911509 {normal=(-0.960939 0.220660 -0.047591)} Vertex 15693 -3.08621 21.0277 -0.405937 {normal=(-0.974867 0.145150 0.001396)} Vertex 15694 -3.09099 20.9559 -0.213211 {normal=(-0.968207 0.169661 0.065024)} Vertex 15695 -3.08661 20.6569 0.334449 {normal=(-0.925464 0.205956 0.271690)} Vertex 15696 -2.96583 20.1355 0.85868 {normal=(-0.874395 0.202581 0.427235)} Vertex 15697 -2.96304 19.8684 0.961287 {normal=(-0.912536 0.079669 0.378865)} Vertex 15698 -3.01148 19.4606 0.907637 {normal=(-0.907690 0.067279 0.393996)} Vertex 15699 -3.00342 18.8851 1.06169 {normal=(-0.941916 0.035704 0.292161)} Vertex 15700 -2.92751 18.4568 1.26895 {normal=(-0.957848 -0.194620 0.083753)} Vertex 15701 -2.87677 18.2257 1.25253 {normal=(-0.922383 -0.216307 0.286925)} Vertex 15702 -2.90559 18.0362 1.0712 {normal=(-0.896690 -0.184404 0.384490)} Vertex 15703 -2.92448 17.9321 0.978103 {normal=(-0.900379 -0.153108 0.390933)} Vertex 15704 -2.97902 17.5788 0.650494 {normal=(-0.939169 -0.147200 0.282063)} Vertex 15705 -3.02251 17.3954 0.30506 {normal=(-0.968563 -0.145846 -0.022706)} Vertex 15706 -2.9824 18.2756 0.0291322 {normal=(-0.797767 0.036384 -0.359284)} Vertex 15707 -3.07551 18.1449 -0.162313 {normal=(-0.839070 -0.071949 0.518206)} Vertex 15708 -2.60796 17.6875 -0.806108 {normal=(-0.853455 -0.207768 -0.466267)} Vertex 15709 -2.73689 17.6024 -0.508029 {normal=(-0.795829 -0.347867 -0.467453)} Vertex 15710 -3.15748 19.0721 -0.13516 {normal=(-0.720619 -0.393710 0.547432)} Vertex 15711 -2.9029 19.2998 -1.29794 {normal=(-0.703336 -0.197704 -0.597047)} Vertex 15712 -3.03439 19.7262 -1.24376 {normal=(-0.655695 0.037567 -0.614917)} Vertex 15713 -3.11373 20.1802 -0.900279 {normal=(-0.796593 -0.234520 0.006185)} Vertex 15714 -2.70273 18.7385 -1.53978 {normal=(-0.879809 -0.205696 0.279199)} Vertex 15715 -2.59293 18.3137 -1.34904 {normal=(-0.916740 -0.034303 0.123248)} Vertex 15716 -2.77091 18.4678 -1.03913 {normal=(-0.539059 -0.450776 -0.640566)} Vertex 15717 -2.76688 18.1738 -0.832003 {normal=(-0.488160 -0.443997 -0.693623)} Vertex 15718 -3.09282 20.2178 -0.106983 {normal=(-0.784306 -0.227106 -0.083488)} Vertex 15719 -3.29494 20.0532 -0.230667 {normal=(-0.608564 0.534116 0.574338)} Vertex 15720 -3.05537 19.9663 0.0154847 {normal=(-0.732542 -0.072079 -0.172499)} Vertex 15721 -3.02173 19.5874 0.0777203 {normal=(-0.694528 -0.035219 -0.036217)} Vertex 15722 2.94576 17.7384 -0.304821 {normal=(0.797921 -0.530176 -0.118234)} Vertex 15723 3.1269 18.7716 -0.257944 {normal=(0.955755 -0.118927 0.138466)} Vertex 15724 3.18458 19.3432 -0.00906 {normal=(0.553121 -0.234016 0.791266)} Vertex 15725 3.24006 19.663 -0.00110175 {normal=(0.413986 0.135219 0.889247)} Vertex 15726 3.34285 19.3795 -0.132736 {normal=(0.819211 -0.310317 0.409006)} Vertex 15727 3.26964 19.127 -0.238668 {normal=(0.809662 -0.473911 0.181568)} Vertex 15728 3.41422 19.6667 -0.134648 {normal=(0.824651 -0.076064 0.505667)} Vertex 15729 3.49639 19.9096 -0.304402 {normal=(0.839313 0.237519 0.369880)} Vertex 15730 3.2516 19.2266 -0.424968 {normal=(0.842925 -0.109952 -0.490485)} Vertex 15731 3.15705 19.0898 -0.531983 {normal=(0.833009 -0.264947 -0.468176)} Vertex 15732 3.3358 19.4055 -0.334377 {normal=(0.820861 -0.185099 -0.480379)} Vertex 15733 3.42147 19.6207 -0.324858 {normal=(0.798463 -0.391631 -0.358113)} Vertex 15734 3.47 19.7731 -0.440203 {normal=(0.757981 -0.556911 -0.220310)} Vertex 15735 3.51671 20.0233 -0.598812 {normal=(0.877182 0.353761 0.030043)} Vertex 15736 3.46621 19.8074 -0.630458 {normal=(0.756308 -0.608786 0.020820)} Vertex 15737 3.50346 19.9473 -0.935171 {normal=(0.839574 0.343598 -0.244134)} Vertex 15738 3.45952 19.7496 -0.858855 {normal=(0.787347 -0.538729 0.222745)} Vertex 15739 3.46371 19.6955 -1.20726 {normal=(0.866910 0.105131 -0.382926)} Vertex 15740 3.43195 19.5874 -1.02454 {normal=(0.841269 -0.340115 0.370033)} Vertex 15741 3.39881 19.2944 -1.30247 {normal=(0.898520 -0.118756 -0.350251)} Vertex 15742 3.38841 19.2713 -1.10707 {normal=(0.905025 -0.166211 0.355937)} Vertex 15743 3.33153 18.8145 -1.21886 {normal=(0.911539 -0.249002 -0.216722)} Vertex 15744 3.31814 18.9002 -1.06393 {normal=(0.904514 -0.081585 0.401099)} Vertex 15745 3.25515 18.4764 -1.05764 {normal=(0.886387 -0.294974 -0.233046)} Vertex 15746 3.24359 18.5899 -0.874828 {normal=(0.992375 -0.054298 0.053283)} Vertex 15747 3.19094 18.4615 -0.48375 {normal=(0.925638 0.233287 0.291898)} Vertex 15748 3.2036 18.5802 -0.612104 {normal=(0.903233 0.199989 0.341579)} Vertex 15749 3.10937 18.6739 -0.411693 {normal=(0.955018 0.162339 -0.070881)} Vertex 15750 3.08431 18.769 -0.489584 {normal=(0.941280 0.123996 -0.011277)} Vertex 15751 3.24068 18.7792 -0.755788 {normal=(0.848799 0.190142 0.395341)} Vertex 15752 3.28003 18.9366 -0.979806 {normal=(0.945238 -0.135678 0.053826)} Vertex 15753 3.32306 19.2664 -0.986642 {normal=(0.932237 -0.053748 0.108831)} Vertex 15754 3.34847 19.452 -0.779394 {normal=(0.961558 0.201191 -0.083371)} Vertex 15755 3.31377 19.5219 -0.903712 {normal=(0.901129 -0.124045 0.229005)} Vertex 15756 3.32175 19.5842 -0.683989 {normal=(0.974331 0.151488 0.101792)} Vertex 15757 3.32523 19.6531 -0.798501 {normal=(0.812316 -0.433989 0.220189)} Vertex 15758 3.31799 19.7054 -0.625792 {normal=(0.742025 -0.576166 0.139494)} Vertex 15759 3.28799 19.5348 -0.579836 {normal=(0.832623 -0.103564 0.523686)} Vertex 15760 3.21204 19.4855 -0.461854 {normal=(0.844955 -0.201538 -0.269049)} Vertex 15761 3.31024 19.3181 -0.72292 {normal=(0.581777 -0.506992 0.572012)} Vertex 15762 3.15221 19.3144 -0.560064 {normal=(0.843868 -0.300480 -0.124188)} Vertex 15763 3.16729 17.9115 -0.40018 {normal=(0.689483 -0.651706 0.208716)} Vertex 15764 3.29585 19.1419 -0.863951 {normal=(0.358036 -0.386315 0.822049)} Vertex 15765 3.06364 19.1366 -0.749678 {normal=(0.788378 -0.384062 0.157402)} Vertex 15766 3.29311 19.7795 -1.29877 {normal=(0.033800 0.465002 -0.821222)} Vertex 15767 3.26981 19.2995 -1.39845 {normal=(-0.050801 0.006428 -0.938047)} Vertex 15768 3.20929 18.7848 -1.31834 {normal=(-0.030771 -0.284056 -0.886177)} Vertex 15769 3.11185 18.4273 -1.14807 {normal=(-0.092390 -0.461673 -0.801157)} Vertex 15770 3.12823 17.8387 -0.722146 {normal=(0.321174 -0.766353 -0.368947)} Vertex 15771 2.92036 18.2023 -0.852494 {normal=(-0.545636 -0.402877 -0.717619)} Vertex 15772 2.94769 18.4915 -1.04613 {normal=(-0.509723 -0.375584 -0.757672)} Vertex 15773 3.00776 18.8275 -1.20656 {normal=(-0.440093 -0.208281 -0.861218)} Vertex 15774 2.82735 18.8522 -1.22165 {normal=(0.590029 -0.327575 -0.655071)} Vertex 15775 3.05502 19.2732 -1.27841 {normal=(-0.347170 -0.001566 -0.918514)} Vertex 15776 2.96395 18.346 1.84429 {normal=(0.948788 -0.300384 -0.019300)} Vertex 15777 2.82525 18.0358 1.66001 {normal=(0.925777 -0.370334 -0.024630)} Vertex 15778 2.74296 17.8915 2.10856 {normal=(0.880279 -0.470909 0.054296)} Vertex 15779 2.87891 18.191 2.39258 {normal=(0.935582 -0.294580 0.138446)} Vertex 15780 2.76181 17.8326 1.53248 {normal=(0.947262 -0.275115 0.144416)} Vertex 15781 2.61807 17.6064 1.87144 {normal=(0.910214 -0.391605 0.124423)} Vertex 15782 2.75481 17.6681 1.38969 {normal=(0.932501 -0.162341 0.315100)} Vertex 15783 2.59135 17.4095 1.68973 {normal=(0.925960 -0.201812 0.308192)} Vertex 15784 2.80325 17.4963 1.21984 {normal=(0.926524 -0.090984 0.363145)} Vertex 15785 2.66925 17.1648 1.43007 {normal=(0.912291 -0.094416 0.397775)} Vertex 15786 2.89317 17.144 0.878871 {normal=(0.944328 -0.075037 0.316279)} Vertex 15787 2.78158 16.8516 1.08408 {normal=(0.925279 -0.127420 0.355405)} Vertex 15788 2.97269 16.885 0.514873 {normal=(0.969319 -0.168260 0.082393)} Vertex 15789 2.8836 16.7016 0.180623 {normal=(0.941460 -0.251268 -0.209550)} Vertex 15790 2.73631 16.2126 0.419943 {normal=(0.908188 -0.412214 -0.023248)} Vertex 15791 2.72561 16.5144 -0.166824 {normal=(0.852047 -0.292323 -0.416248)} Vertex 15792 2.55419 15.9535 0.0823893 {normal=(0.789380 -0.524543 -0.288046)} Vertex 15793 2.52333 16.4462 -0.502583 {normal=(0.905644 -0.273603 -0.291853)} Vertex 15794 2.40587 16.7008 -1.25794 {normal=(0.913450 -0.091548 -0.370284)} Vertex 15795 2.32855 16.2015 -1.38246 {normal=(0.921385 -0.027152 -0.343235)} Vertex 15796 2.27297 15.6929 -1.56843 {normal=(0.914142 0.095841 -0.357507)} Vertex 15797 2.37325 15.1704 -0.64247 {normal=(0.974146 -0.032247 0.184059)} Vertex 15798 2.09007 17.0814 -1.7406 {normal=(0.723101 -0.028824 -0.687136)} Vertex 15799 1.83651 16.6894 -1.99518 {normal=(0.659661 0.057059 -0.746017)} Vertex 15800 1.66508 16.1746 -2.23656 {normal=(0.627779 0.173581 -0.752921)} Vertex 15801 0.738083 16.6597 -2.686 {normal=(0.349882 0.150318 -0.918016)} Vertex 15802 2.83182 21.7899 -1.31606 {normal=(0.859076 0.306232 -0.381792)} Vertex 15803 2.21651 22.6928 -1.39051 {normal=(0.631944 0.626172 -0.425973)} Vertex 15804 2.99195 21.7607 -0.720061 {normal=(0.951414 0.255064 -0.141299)} Vertex 15805 2.65212 22.6018 -0.344693 {normal=(0.796524 0.581513 -0.062327)} Vertex 15806 3.07222 21.6142 -0.205129 {normal=(0.981373 0.161906 0.008809)} Vertex 15807 2.78421 22.2557 0.385499 {normal=(0.874590 0.438023 0.184928)} Vertex 15808 3.06806 21.3934 0.105809 {normal=(0.987474 0.075645 0.122146)} Vertex 15809 2.8183 21.9205 0.798733 {normal=(0.909366 0.305648 0.268816)} Vertex 15810 3.00771 20.9529 0.597554 {normal=(0.969844 0.032098 0.234580)} Vertex 15811 2.80413 21.465 1.20365 {normal=(0.928284 0.148940 0.328637)} Vertex 15812 2.8583 20.4003 1.08471 {normal=(0.956087 0.060859 0.278855)} Vertex 15813 2.71576 20.9144 1.5407 {normal=(0.944046 0.057656 0.320753)} Vertex 15814 2.69169 20.4772 1.73566 {normal=(0.851703 0.363657 -0.057985)} Vertex 15815 1.49092 23.1363 -1.27559 {normal=(0.278176 0.893133 -0.326192)} Vertex 15816 0.228283 23.514 -0.475232 {normal=(0.040276 0.984448 -0.164096)} Vertex 15817 1.98402 23.1725 0.168084 {normal=(0.465752 0.865526 0.063768)} Vertex 15818 1.09002 23.4201 0.704946 {normal=(0.247280 0.947665 0.144473)} Vertex 15819 2.11934 22.7598 1.2519 {normal=(0.618630 0.688541 0.354154)} Vertex 15820 1.27149 22.9213 1.84623 {normal=(0.319677 0.805489 0.492167)} Vertex 15821 2.19789 22.3446 1.75404 {normal=(0.697526 0.530808 0.464422)} Vertex 15822 2.2631 21.898 2.07433 {normal=(0.758779 0.390216 0.507946)} Vertex 15823 1.61967 21.9457 2.72159 {normal=(0.484495 0.534572 0.686660)} Vertex 15824 2.33248 21.3972 2.3009 {normal=(0.829787 0.282261 0.467833)} Vertex 15825 1.78905 21.4358 2.96833 {normal=(0.551601 0.433699 0.702587)} Vertex 15826 2.39356 21.0056 2.44346 {normal=(0.734433 0.539381 0.225587)} Vertex 15827 1.94968 20.9979 3.0891 {normal=(0.428646 0.608834 0.611302)} Vertex 15828 1.54006 20.839 3.40743 {normal=(0.281081 0.570035 0.746617)} Vertex 15829 1.44247 21.2867 3.23668 {normal=(0.323872 0.433235 0.839245)} Vertex 15830 1.26919 21.824 2.97669 {normal=(0.218353 0.539325 0.812295)} Vertex 15831 1.15684 20.6097 3.73852 {normal=(0.229223 0.587537 0.760780)} Vertex 15832 1.08361 21.0466 3.50307 {normal=(0.282769 0.496680 0.819052)} Vertex 15833 0.854909 21.6107 3.19908 {normal=(0.192189 0.535348 0.822376)} Vertex 15834 0.799816 20.39 3.95063 {normal=(-0.001807 0.460376 0.875573)} Vertex 15835 0.712369 20.7226 3.80606 {normal=(0.103162 0.451196 0.878929)} Vertex 15836 0.498268 21.3969 3.42429 {normal=(0.148991 0.534165 0.831102)} Vertex 15837 0.376696 20.0359 3.99556 {normal=(-0.123114 -0.080057 0.954162)} Vertex 15838 0.39709 20.5058 3.88916 {normal=(0.066300 0.348282 0.928402)} Vertex 15839 0.155088 20.0903 4.0222 {normal=(0.090740 -0.058560 0.985207)} Vertex 15840 0.200427 20.4782 3.94029 {normal=(0.128411 0.340346 0.924688)} Vertex 15841 -9.31323e-010 20.1134 4.02298 {normal=(0.000000 -0.031625 0.994655)} Vertex 15842 9.31323e-010 20.5048 3.93861 {normal=(0.000000 0.367994 0.925220)} Vertex 15843 -9.31323e-010 21.2437 3.51963 {normal=(0.000000 0.506194 0.856085)} Vertex 15844 0 22.9125 2.28447 {normal=(0.000000 0.782591 0.611346)} Vertex 15845 0.537195 22.9301 2.16137 {normal=(0.166961 0.795509 0.575793)} Vertex 15846 0 23.4959 1.05869 {normal=(0.000000 0.964775 0.228658)} Vertex 15847 0.490881 23.4975 0.982505 {normal=(0.104011 0.961052 0.213548)} Vertex 15848 2.13695 15.805 2.75493 {normal=(0.715131 -0.296238 0.616485)} Vertex 15849 2.2451 15.4893 2.29806 {normal=(0.871560 -0.277293 0.389922)} Vertex 15850 1.78158 15.1198 2.67718 {normal=(0.683953 -0.429885 0.588388)} Vertex 15851 1.75524 15.4726 2.99383 {normal=(0.685495 -0.399224 0.605322)} Vertex 15852 1.43016 14.8888 2.94886 {normal=(0.764926 -0.359821 0.529517)} Vertex 15853 1.80955 14.7142 2.37524 {normal=(0.720957 -0.513723 0.434610)} Vertex 15854 1.88433 14.7871 1.72119 {normal=(0.661160 -0.711457 -0.226031)} Vertex 15855 1.67198 14.5168 2.19377 {normal=(0.563794 -0.815275 -0.005295)} Vertex 15856 1.53198 14.5931 1.4774 {normal=(0.546904 -0.799804 -0.241429)} Vertex 15857 1.36315 14.3753 1.95557 {normal=(0.407529 -0.898996 -0.133861)} Vertex 15858 1.19122 14.4571 1.39721 {normal=(0.210505 -0.917278 -0.310972)} Vertex 15859 1.10123 14.3108 1.89059 {normal=(0.192316 -0.956589 -0.213621)} Vertex 15860 0.527963 14.3753 1.52087 {normal=(0.049403 -0.924098 -0.377853)} Vertex 15861 0.55878 14.2212 1.92749 {normal=(0.109641 -0.942095 -0.314259)} Vertex 15862 0.514287 14.0861 2.34102 {normal=(0.176374 -0.950722 -0.247718)} Vertex 15863 -0.019145 14.3239 1.56619 {normal=(0.000006 -0.918764 -0.392230)} Vertex 15864 2.28411 16.156 2.75623 {normal=(0.742214 -0.282500 0.562994)} Vertex 15865 2.37657 16.1438 2.4274 {normal=(0.971531 -0.183629 0.131069)} Vertex 15866 2.44382 15.8313 1.93901 {normal=(0.948917 -0.154461 0.269785)} Vertex 15867 2.4125 15.5281 1.74267 {normal=(0.938888 -0.318457 0.020972)} Vertex 15868 2.27439 15.3302 1.56778 {normal=(0.808539 -0.540258 -0.227259)} Vertex 15869 1.98208 15.0387 1.34827 {normal=(0.721920 -0.648240 -0.235202)} Vertex 15870 1.70907 14.8431 1.12578 {normal=(0.661846 -0.732129 -0.136072)} Vertex 15871 0.561677 14.3605 1.16412 {normal=(0.172615 -0.668909 0.579966)} Vertex 15872 2.74176 18.0108 2.79015 {normal=(0.910104 -0.296665 0.248570)} Vertex 15873 2.66279 17.7786 2.43507 {normal=(0.896774 -0.438723 0.046162)} Vertex 15874 2.58602 17.6037 2.61993 {normal=(0.950658 -0.303675 0.012377)} Vertex 15875 2.58901 17.745 2.99317 {normal=(0.890319 -0.280519 0.329987)} Vertex 15876 2.53724 17.3629 2.68373 {normal=(0.985160 -0.151046 -0.002169)} Vertex 15877 2.47881 17.4036 3.04639 {normal=(0.820664 -0.229791 0.479576)} Vertex 15878 2.51089 17.0923 2.67594 {normal=(0.985937 -0.124240 0.010725)} Vertex 15879 2.42357 17.1003 3.00867 {normal=(0.736536 -0.225032 0.584889)} Vertex 15880 2.37499 16.6731 2.9018 {normal=(0.728056 -0.254512 0.579633)} Vertex 15881 2.41105 16.5776 2.1742 {normal=(0.992122 -0.014759 0.059703)} Vertex 15882 2.55225 16.1141 1.66402 {normal=(0.973074 -0.091632 0.191917)} Vertex 15883 2.51009 15.8478 1.43087 {normal=(0.947067 -0.313245 -0.015584)} Vertex 15884 2.35294 15.5631 1.16182 {normal=(0.837096 -0.535926 -0.081314)} Vertex 15885 2.08955 15.2607 0.934834 {normal=(0.748363 -0.657140 -0.079450)} Vertex 15886 1.89957 15.0533 0.76251 {normal=(0.759954 -0.638875 0.074108)} Vertex 15887 1.77584 14.664 0.526376 {normal=(0.828354 -0.297078 0.450342)} Vertex 15888 2.07251 15.2377 0.441455 {normal=(0.843378 -0.511533 0.081341)} Vertex 15889 2.01173 14.7984 0.164469 {normal=(0.891230 -0.200030 0.394977)} Vertex 15890 2.2313 15.4365 0.612947 {normal=(0.751680 -0.656824 -0.030888)} Vertex 15891 2.47073 15.7626 0.864879 {normal=(0.850272 -0.518570 0.051137)} Vertex 15892 2.58832 16.0933 1.18406 {normal=(0.933871 -0.329337 0.114522)} Vertex 15893 2.59783 16.3332 1.48504 {normal=(0.965786 -0.102963 0.219924)} Vertex 15894 2.47361 16.3968 1.927 {normal=(0.949913 0.021071 0.311729)} Vertex 15895 2.51314 16.628 1.79412 {normal=(0.948598 0.009644 0.315988)} Vertex 15896 2.43177 16.8566 2.06698 {normal=(0.980080 -0.069861 0.149756)} Vertex 15897 2.45333 16.9946 2.37354 {normal=(0.982017 -0.112989 -0.140627)} Vertex 15898 2.54644 17.4706 2.08887 {normal=(0.940754 -0.332933 0.048089)} Vertex 15899 2.51634 17.2557 1.85711 {normal=(0.963003 -0.131889 0.217028)} Vertex 15900 2.60104 16.9633 1.56121 {normal=(0.933021 -0.041569 0.357185)} Vertex 15901 2.71769 16.6817 1.21286 {normal=(0.945194 -0.088451 0.311413)} Vertex 15902 2.49717 17.3338 2.24711 {normal=(0.969957 -0.235124 -0.002401)} Vertex 15903 2.55179 16.7948 1.67576 {normal=(0.942657 -0.023196 0.332590)} Vertex 15904 2.66081 16.4875 1.34323 {normal=(0.944189 -0.120913 0.298463)} Vertex 15905 2.68169 16.2525 1.03124 {normal=(0.921619 -0.331189 0.192413)} Vertex 15906 2.58131 15.9217 0.673152 {normal=(0.867100 -0.489125 0.067722)} Vertex 15907 2.36118 15.6022 0.363521 {normal=(0.727105 -0.654450 -0.158354)} Vertex 15908 2.18579 15.4523 0.174999 {normal=(0.855908 -0.458002 0.014313)} Vertex 15909 2.16503 14.9109 -0.146574 {normal=(0.908996 -0.141452 0.388676)} Vertex 15910 2.47785 17.2101 2.31312 {normal=(0.985253 -0.143997 -0.078448)} Vertex 15911 0.0372515 19.7208 3.97014 {normal=(0.109501 0.048066 0.965052)} Vertex 15912 0.204334 19.2502 4.17825 {normal=(0.513809 0.553483 0.643432)} Vertex 15913 0.227915 18.9702 4.3888 {normal=(0.541723 0.508189 0.649757)} Vertex 15914 0.259853 18.7371 4.54962 {normal=(0.585522 0.511872 0.588839)} Vertex 15915 0.357781 19.481 3.8343 {normal=(0.743854 -0.034215 0.599817)} Vertex 15916 0.360944 19.1791 4.02481 {normal=(0.826088 0.377486 0.410662)} Vertex 15917 0.399166 18.886 4.19273 {normal=(0.876728 0.272705 0.385254)} Vertex 15918 0.41747 18.6119 4.31339 {normal=(0.903731 0.306494 0.285147)} Vertex 15919 0.499588 19.309 3.58495 {normal=(0.805608 0.099350 0.530600)} Vertex 15920 0.537862 19.0432 3.74502 {normal=(0.811720 0.369388 0.440800)} Vertex 15921 0.80651 18.9124 3.55402 {normal=(0.328897 0.433896 0.803989)} Vertex 15922 0.851787 18.6542 3.66368 {normal=(0.370779 0.337763 0.853359)} Vertex 15923 0.858311 18.395 3.75414 {normal=(0.342036 0.209721 0.907824)} Vertex 15924 0.4683 19.8693 3.96435 {normal=(-0.304256 -0.433105 0.780391)} Vertex 15925 0.591804 19.5028 3.57294 {normal=(0.408045 -0.579391 0.679343)} Vertex 15926 0.674838 19.3605 3.44898 {normal=(-0.112321 -0.049078 0.956320)} Vertex 15927 1.36073 18.9142 3.55321 {normal=(-0.064442 0.025620 0.991011)} Vertex 15928 0.312275 18.4052 4.78891 {normal=(0.582376 0.295092 0.706019)} Vertex 15929 0.486365 18.3303 4.51116 {normal=(0.903668 0.217766 0.347117)} Vertex 15930 0.577502 18.2905 4.3258 {normal=(0.756329 0.422880 0.459679)} Vertex 15931 0.740756 18.2201 4.19017 {normal=(0.729935 0.486915 0.447374)} Vertex 15932 0.843179 18.1016 4.05616 {normal=(0.935813 0.256361 0.057817)} Vertex 15933 0.771342 17.8701 4.16614 {normal=(0.660236 -0.493438 0.519387)} Vertex 15934 0.681014 17.9643 4.32968 {normal=(0.601212 -0.312379 0.692615)} Vertex 15935 0.17184 17.759 4.5524 {normal=(0.551349 -0.644827 0.479094)} Vertex 15936 0.425451 17.9276 4.12318 {normal=(0.314892 -0.451154 0.762915)} Vertex 15937 0 17.5187 4.40762 {normal=(0.000000 -0.443866 0.879814)} Vertex 15938 0.463904 17.6642 4.19922 {normal=(0.342327 0.310378 0.885233)} Vertex 15939 0.194523 17.3223 4.339 {normal=(0.158820 -0.097340 0.978358)} Vertex 15940 0 17.3001 4.34391 {normal=(0.000000 -0.137694 0.989835)} Vertex 15941 0.510404 17.389 4.25593 {normal=(0.318114 0.083855 0.937569)} Vertex 15942 0.448849 15.5604 4.06726 {normal=(0.262923 -0.358895 0.879319)} Vertex 15943 0.838006 17.4592 4.11368 {normal=(0.466741 0.174764 0.858395)} Vertex 15944 0.837625 15.479 3.86849 {normal=(0.466036 -0.370008 0.790144)} Vertex 15945 1.23047 17.5256 3.75515 {normal=(0.670197 0.162161 0.718985)} Vertex 15946 1.32251 18.5443 3.60682 {normal=(0.102491 0.216859 0.968077)} Vertex 15947 1.22089 18.2363 3.70611 {normal=(0.182898 0.110839 0.970044)} Vertex 15948 1.90737 18.8257 3.53433 {normal=(0.237929 0.219795 0.934301)} Vertex 15949 1.87389 18.4126 3.574 {normal=(0.201709 0.086223 0.972456)} Vertex 15950 1.71959 18.0276 3.61008 {normal=(0.178727 -0.109067 0.971965)} Vertex 15951 2.31109 18.9746 3.17163 {normal=(0.676514 0.445257 0.569863)} Vertex 15952 2.60046 18.6921 2.94791 {normal=(0.805152 0.312533 0.493124)} Vertex 15953 2.15317 17.884 3.48853 {normal=(0.364627 -0.185103 0.899184)} Vertex 15954 2.02382 17.4424 3.35363 {normal=(0.246092 -0.441893 0.858175)} Vertex 15955 2.4147 17.8218 3.30025 {normal=(0.680853 -0.229834 0.684904)} Vertex 15956 0.348324 14.9816 3.97552 {normal=(0.245315 0.198734 0.946300)} Vertex 15957 0.310797 14.6363 4.02127 {normal=(0.210497 -0.130089 0.954214)} Vertex 15958 0 14.6874 4.04247 {normal=(0.000000 -0.134155 0.984385)} Vertex 15959 0.696301 14.9205 3.85713 {normal=(0.447640 0.036681 0.889224)} Vertex 15960 0.549239 14.5435 3.90114 {normal=(0.434570 -0.248408 0.857570)} Vertex 15961 0.988518 14.8073 3.63066 {normal=(0.728862 -0.194371 0.639315)} Vertex 15962 0.707204 14.3956 3.74005 {normal=(0.575782 -0.489286 0.628014)} Vertex 15963 1.09998 14.5396 3.27292 {normal=(0.778046 -0.432528 0.446173)} Vertex 15964 0.702035 14.2434 3.52872 {normal=(0.577347 -0.709160 0.392201)} Vertex 15965 1.03638 14.2723 3.0254 {normal=(0.611209 -0.723220 0.280895)} Vertex 15966 0.653982 14.1438 3.37508 {normal=(0.456412 -0.840595 0.280061)} Vertex 15967 0.757885 14.0883 2.87107 {normal=(0.407086 -0.908472 0.057816)} Vertex 15968 0.514903 14.0537 3.26556 {normal=(0.394816 -0.890729 0.223993)} Vertex 15969 0.412558 13.9645 2.79539 {normal=(0.226065 -0.962836 -0.104500)} Vertex 15970 0.290738 13.9383 3.19879 {normal=(0.282581 -0.937566 0.171114)} Vertex 15971 -0.016911 13.9303 2.76551 {normal=(-0.002081 -0.980339 -0.189073)} Vertex 15972 -0.0024115 13.8862 3.19052 {normal=(-0.000546 -0.979490 0.129753)} Vertex 15973 -1.86265e-009 14.0363 3.54685 {normal=(0.000002 -0.851123 0.519402)} Vertex 15974 2.39609 19.2301 2.69455 {normal=(0.768185 0.461662 0.432544)} Vertex 15975 2.13623 19.6496 2.84993 {normal=(0.778305 0.098234 0.609461)} Vertex 15976 1.86397 19.8479 3.11862 {normal=(0.642426 0.096444 0.754136)} Vertex 15977 1.48515 19.9237 3.35255 {normal=(0.439649 0.062371 0.884421)} Vertex 15978 1.17201 19.7896 3.46603 {normal=(0.184836 -0.054836 0.948825)} Vertex 15979 0.891531 19.5857 3.46255 {normal=(0.028822 -0.109288 0.948886)} Vertex 15980 0.8801 19.779 3.82113 {normal=(0.300391 -0.800929 0.507291)} Vertex 15981 0.870451 19.6569 3.64422 {normal=(0.354785 -0.802219 0.462417)} Vertex 15982 1.21292 19.9455 3.77416 {normal=(0.512878 -0.693655 0.503671)} Vertex 15983 1.18096 19.8372 3.63279 {normal=(0.534459 -0.787217 0.289917)} Vertex 15984 1.63538 20.1483 3.59036 {normal=(0.566788 -0.577469 0.578296)} Vertex 15985 1.55482 20.0294 3.49222 {normal=(0.446122 -0.770851 0.428561)} Vertex 15986 2.03922 20.0559 3.21815 {normal=(0.539537 -0.469467 0.666279)} Vertex 15987 2.4624 20.2192 2.61309 {normal=(0.901157 -0.017450 0.430802)} Vertex 15988 2.33351 19.8995 2.8193 {normal=(0.747918 -0.227314 0.595015)} Vertex 15989 2.70308 19.846 2.11221 {normal=(0.937639 0.066702 0.335319)} Vertex 15990 2.54818 19.5921 2.45482 {normal=(0.810635 -0.141600 0.550401)} Vertex 15991 2.81515 19.5533 1.83847 {normal=(0.948691 0.081334 0.291917)} Vertex 15992 2.88315 19.3357 1.72315 {normal=(0.939221 0.208202 0.257848)} Vertex 15993 2.98025 19.0096 1.68587 {normal=(0.936373 0.279677 0.199857)} Vertex 15994 2.61157 18.1677 3.10614 {normal=(0.826326 0.017106 0.553324)} Vertex 15995 2.82469 18.4195 2.64372 {normal=(0.917603 0.117557 0.367332)} Vertex 15996 2.97521 18.5984 2.08418 {normal=(0.962935 0.084959 0.219692)} Vertex 15997 3.04099 18.8123 1.62474 {normal=(0.986422 0.079333 0.048142)} Vertex 15998 3.00904 18.6532 1.49646 {normal=(0.969704 -0.177721 -0.155572)} Vertex 15999 2.50748 20.5197 2.57259 {normal=(0.865185 -0.257994 0.404321)} Vertex 16000 2.72785 20.1679 1.92059 {normal=(0.877280 -0.165482 0.376588)} Vertex 16001 2.91231 19.5639 1.31524 {normal=(0.976175 0.136904 0.161770)} Vertex 16002 2.98888 19.1386 1.17055 {normal=(0.991114 0.047078 0.046960)} Vertex 16003 2.95409 17.9619 -0.0065525 {normal=(0.851669 -0.155810 -0.172008)} Vertex 16004 2.94766 17.3478 0.0454485 {normal=(0.927990 -0.044047 -0.362153)} Vertex 16005 2.68239 17.1276 -0.534593 {normal=(0.915896 -0.162140 -0.354318)} Vertex 16006 2.53173 17.1957 -1.07557 {normal=(0.926472 -0.065327 -0.360328)} Vertex 16007 2.32847 17.4766 -1.49067 {normal=(0.838123 -0.058751 -0.534725)} Vertex 16008 3.04292 19.8956 -1.31197 {normal=(0.759007 -0.423999 0.278204)} Vertex 16009 0.00520375 16.8907 -2.78986 {normal=(-0.002061 0.129446 -0.984846)} Vertex 16010 1.51086 19.8294 3.38414 {normal=(0.409746 0.161106 0.878717)} Vertex 16011 1.19794 19.7237 3.48438 {normal=(0.133086 0.005208 0.966709)} Vertex 16012 0.928085 19.5375 3.48752 {normal=(-0.047025 -0.002972 0.969880)} Vertex 16013 0.719245 19.327 3.47396 {normal=(-0.205537 -0.002870 0.946919)} Vertex 16014 0.77517 19.1998 3.47862 {normal=(-0.259975 -0.117029 0.932267)} Vertex 16015 1.31756 19.0367 3.54519 {normal=(0.016884 0.257438 0.946530)} Vertex 16016 1.86104 19.0098 3.45103 {normal=(0.272812 0.521741 0.800525)} Vertex 16017 2.16191 19.1285 3.19054 {normal=(0.485310 0.637003 0.586015)} Vertex 16018 2.27705 19.3046 2.83254 {normal=(0.732599 0.460329 0.469339)} Vertex 16019 2.26302 19.4151 2.78762 {normal=(0.829431 0.229538 0.498570)} Vertex 16020 2.12249 19.5616 2.93413 {normal=(0.761650 0.190373 0.602094)} Vertex 16021 1.85961 19.7444 3.16546 {normal=(0.631760 0.133991 0.747771)} Vertex 16022 0.901719 19.5735 3.46952 {normal=(-0.347167 0.333964 0.875297)} Vertex 16023 0.88338 19.5988 3.49005 {normal=(0.503173 -0.696912 0.478780)} Vertex 16024 0.655871 19.3773 3.46305 {normal=(0.393575 -0.379067 0.829093)} Vertex 16025 0.641545 19.3076 3.44619 {normal=(-0.034436 -0.138625 0.945032)} Vertex 16026 0.687027 19.3487 3.45616 {normal=(-0.468635 0.169424 0.854850)} Vertex 16027 1.18018 19.7726 3.47135 {normal=(-0.065625 0.356434 0.926148)} Vertex 16028 1.16982 19.8049 3.49216 {normal=(0.535578 -0.748829 0.326459)} Vertex 16029 1.49094 19.8972 3.36069 {normal=(0.360703 0.413803 0.827809)} Vertex 16030 1.49557 19.9548 3.37178 {normal=(0.402838 -0.709136 0.525446)} Vertex 16031 1.8615 19.8189 3.13092 {normal=(0.666826 0.328784 0.661895)} Vertex 16032 1.89025 19.8908 3.13007 {normal=(0.376813 -0.550290 0.714825)} Vertex 16033 2.13501 19.6218 2.86917 {normal=(0.819877 0.352893 0.447234)} Vertex 16034 2.16864 19.6944 2.84405 {normal=(0.541297 -0.379013 0.739358)} Vertex 16035 2.31929 19.425 2.65742 {normal=(0.874320 0.313280 0.367418)} Vertex 16036 2.37082 19.3716 2.59691 {normal=(0.752754 0.311757 0.567295)} Vertex 16037 2.41339 19.3846 2.55092 {normal=(0.655139 0.149254 0.731244)} Vertex 16038 2.36827 19.4704 2.59621 {normal=(0.614970 -0.209667 0.753270)} Vertex 16039 0.393111 17.967 4.31363 {normal=(-0.046266 -0.979412 -0.065220)} Vertex 16040 0.250986 17.864 4.32633 {normal=(0.910486 -0.312935 0.179612)} Vertex 16041 0.431825 17.8099 4.1504 {normal=(0.338501 0.342562 0.874719)} Vertex 16042 0.654217 17.8694 4.14891 {normal=(-0.454585 -0.859700 0.207863)} Vertex 16043 0.563135 17.9133 4.24179 {normal=(-0.345042 -0.936030 0.033374)} Vertex 16044 0.30092 17.9365 4.33914 {normal=(0.639910 -0.746194 0.018549)} Vertex 16045 0 18.5942 4.74891 {normal=(0.000000 0.632626 0.770150)} Vertex 16046 0.288643 18.5695 4.67877 {normal=(0.571543 0.557595 0.557631)} Vertex 16047 0.454329 18.4649 4.41799 {normal=(0.858035 0.456252 0.233809)} Vertex 16048 0.569988 18.3904 4.16422 {normal=(0.678464 0.678632 0.245144)} Vertex 16049 0.677687 18.3475 4.06789 {normal=(0.611902 0.758422 0.170276)} Vertex 16050 0.740124 18.2774 3.98338 {normal=(0.766594 0.573441 -0.242740)} Vertex 16051 0.306783 18.2 4.80813 {normal=(0.588288 -0.064475 0.773135)} Vertex 16052 0.477281 18.1671 4.5442 {normal=(0.900944 -0.093388 0.420306)} Vertex 16053 0.547776 18.1477 4.4208 {normal=(0.748720 0.120125 0.631177)} Vertex 16054 0.726687 18.0878 4.27634 {normal=(0.737809 0.145149 0.648205)} Vertex 16055 0.82724 17.9738 4.12037 {normal=(0.897885 -0.148679 0.396972)} Vertex 16056 0.869784 17.768 3.97025 {normal=(0.644066 0.274628 0.708487)} Vertex 16057 0.955927 17.4804 4.02387 {normal=(0.664231 0.213921 0.711473)} Vertex 16058 0.234642 17.8088 4.44694 {normal=(0.923501 -0.352570 0.057328)} Vertex 16059 0.310009 17.9286 4.54305 {normal=(0.622991 -0.757917 0.041409)} Vertex 16060 0.430933 17.9556 4.42822 {normal=(0.059849 -0.974604 0.130661)} Vertex 16061 0.62573 17.9101 4.30421 {normal=(0.004226 -0.895366 0.399144)} Vertex 16062 0.716826 17.8442 4.1727 {normal=(-0.114447 -0.870891 0.427465)} Vertex 16063 0.590217 18.4172 3.92187 {normal=(0.792174 0.448042 -0.173025)} Vertex 16064 0.74774 18.2015 3.90651 {normal=(0.791326 0.468763 -0.369736)} Vertex 16065 0.748644 18.1839 3.87292 {normal=(0.848702 0.512005 -0.074345)} Vertex 16066 0.848928 17.9681 3.94323 {normal=(0.968292 0.094068 -0.110727)} Vertex 16067 0.829795 17.8562 4.01479 {normal=(0.914093 -0.254013 0.300083)} Vertex 16068 0.836625 17.8279 3.98365 {normal=(0.818760 0.024232 0.559066)} Vertex 16069 0.793318 17.7222 4.05295 {normal=(0.579187 0.201771 0.774210)} Vertex 16070 0.626743 18.3563 3.89633 {normal=(0.798744 0.510018 0.234762)} Vertex 16071 0.761201 18.1674 3.83249 {normal=(0.828508 0.421476 0.320869)} Vertex 16072 0.82934 18.0724 3.81532 {normal=(0.621715 0.450749 0.604621)} Vertex 16073 1.07502 17.8474 3.7696 {normal=(0.573238 0.267085 0.765656)} Vertex 16074 1.10276 17.9872 3.72495 {normal=(0.263598 -0.048547 0.957189)} Vertex 16075 0.379576 17.0021 3.86189 {normal=(0.264107 -0.894082 0.326247)} Vertex 16076 0.746067 17.0532 3.70281 {normal=(0.286175 -0.878780 0.340288)} Vertex 16077 1.21535 17.1229 3.45016 {normal=(0.376121 -0.828105 0.383167)} Vertex 16078 1.62601 17.0789 3.10244 {normal=(-0.041538 -0.478550 0.858371)} Vertex 16079 1.53159 17.1462 3.17593 {normal=(0.304930 -0.770959 0.515346)} Vertex 16080 1.76694 16.6866 2.96478 {normal=(-0.077168 -0.212997 0.958697)} Vertex 16081 1.74752 16.2091 2.95134 {normal=(0.096354 0.215493 0.950711)} Vertex 16082 1.54612 16.014 3.11913 {normal=(0.392541 0.527498 0.745156)} Vertex 16083 1.17583 15.9828 3.36371 {normal=(0.390455 0.733043 0.534047)} Vertex 16084 0.715608 16.0441 3.63808 {normal=(0.343851 0.783292 0.493125)} Vertex 16085 0.351479 16.0662 3.79539 {normal=(0.208106 0.804178 0.536294)} Vertex 16086 0 15.9455 4.12474 {normal=(0.000000 0.799305 0.577452)} Vertex 16087 0 15.8503 4.1906 {normal=(0.000000 0.175338 0.967026)} Vertex 16088 0.44178 15.8335 4.10151 {normal=(0.312284 0.144732 0.926447)} Vertex 16089 0.419309 15.9353 4.04044 {normal=(0.214678 0.790755 0.553964)} Vertex 16090 0.865971 15.7855 3.91787 {normal=(0.494523 0.021546 0.851556)} Vertex 16091 0.837543 15.8984 3.87047 {normal=(0.359047 0.761508 0.514121)} Vertex 16092 1.3217 15.726 3.58195 {normal=(0.653382 -0.119269 0.725412)} Vertex 16093 1.30509 15.8398 3.55132 {normal=(0.493194 0.697133 0.492153)} Vertex 16094 1.72418 15.7434 3.16245 {normal=(0.709772 -0.093056 0.683615)} Vertex 16095 1.67417 15.8491 3.17788 {normal=(0.488952 0.500747 0.696073)} Vertex 16096 1.9632 16.0139 2.93337 {normal=(0.531035 -0.012657 0.835604)} Vertex 16097 2.03135 16.1771 2.92038 {normal=(0.315211 -0.227417 0.917909)} Vertex 16098 2.00128 16.6898 3.02315 {normal=(-0.136009 -0.248232 0.952835)} Vertex 16099 1.9366 17.2089 3.23938 {normal=(0.132380 -0.483121 0.862518)} Vertex 16100 1.83399 17.2252 3.25938 {normal=(-0.032149 -0.594920 0.800068)} Vertex 16101 1.64095 17.3062 3.35185 {normal=(0.406440 -0.427232 0.755171)} Vertex 16102 1.6294 17.2216 3.2849 {normal=(0.233135 -0.778515 0.541167)} Vertex 16103 1.3216 17.286 3.67424 {normal=(0.710093 -0.213483 0.653790)} Vertex 16104 1.30157 17.2019 3.61317 {normal=(0.450426 -0.812679 0.342560)} Vertex 16105 0.899533 17.1453 3.97413 {normal=(0.344517 -0.862227 0.328825)} Vertex 16106 0.516873 17.1653 4.2385 {normal=(0.299634 -0.317037 0.886748)} Vertex 16107 0.492819 17.0877 4.15598 {normal=(0.246094 -0.883255 0.364137)} Vertex 16108 0 17.0955 4.302 {normal=(0.000000 -0.363029 0.917300)} Vertex 16109 -3.72529e-009 17.017 4.22291 {normal=(0.000000 -0.898380 0.391818)} Vertex 16110 2.27473 17.4125 3.22121 {normal=(0.471283 -0.369636 0.796350)} Vertex 16111 2.21177 17.1148 3.12397 {normal=(0.292292 -0.319900 0.899759)} Vertex 16112 0 15.326 3.96428 {normal=(0.000000 -0.501923 0.851927)} Vertex 16113 0.382987 15.2344 3.90401 {normal=(0.176399 0.139026 0.967059)} Vertex 16114 0.390824 15.3409 3.92421 {normal=(0.166483 -0.494986 0.840954)} Vertex 16115 0.767208 15.2356 3.79566 {normal=(0.418881 0.043957 0.901449)} Vertex 16116 0.769195 15.3335 3.80783 {normal=(0.363378 -0.453610 0.794935)} Vertex 16117 0.749306 19.166 3.45183 {normal=(-0.430209 -0.343335 0.827121)} Vertex 16118 0.637929 19.2229 3.42774 {normal=(-0.076215 -0.257477 0.912275)} Vertex 16119 0.612626 19.2011 3.44305 {normal=(0.725188 0.188134 0.622265)} Vertex 16120 0.726039 19.1073 3.45394 {normal=(0.244984 0.486536 0.795185)} Vertex 16121 1.36165 18.9466 3.55467 {normal=(-0.067179 -0.024045 0.983322)} Vertex 16122 1.90076 18.7581 3.54294 {normal=(0.186962 0.100096 0.972398)} Vertex 16123 1.90359 18.8696 3.51474 {normal=(0.244990 0.379195 0.885177)} Vertex 16124 3.00049 19.1315 0.102693 {normal=(0.743755 -0.074034 -0.297831)} Vertex 16125 2.99303 18.5195 0.0602455 {normal=(0.821839 0.027081 -0.318710)} Vertex 16126 1.1728 22.6299 -2.32307 {normal=(0.319040 0.828246 -0.446600)} Vertex 16127 -7.45058e-009 22.8904 -2.37742 {normal=(0.000000 0.917775 -0.364982)} Vertex 16128 1.72959 22.3375 -2.23468 {normal=(0.575587 0.617990 -0.514395)} Vertex 16129 2.57383 21.5891 -1.8472 {normal=(0.779096 0.384952 -0.464145)} Vertex 16130 2.99763 21.1701 -1.16044 {normal=(0.932496 0.192250 -0.262954)} Vertex 16131 3.05801 21.1127 -0.911508 {normal=(0.960939 0.220660 -0.047591)} Vertex 16132 3.08621 21.0277 -0.405937 {normal=(0.974867 0.145150 0.001396)} Vertex 16133 3.09099 20.9559 -0.213211 {normal=(0.968207 0.169661 0.065024)} Vertex 16134 3.08661 20.6569 0.334449 {normal=(0.925464 0.205956 0.271690)} Vertex 16135 2.96583 20.1355 0.85868 {normal=(0.874395 0.202581 0.427235)} Vertex 16136 2.96304 19.8683 0.961287 {normal=(0.912535 0.079672 0.378869)} Vertex 16137 3.01148 19.4606 0.907637 {normal=(0.907692 0.067279 0.393993)} Vertex 16138 3.00342 18.8851 1.06169 {normal=(0.941916 0.035704 0.292161)} Vertex 16139 2.92751 18.4568 1.26895 {normal=(0.957849 -0.194620 0.083753)} Vertex 16140 2.87677 18.2257 1.25253 {normal=(0.922383 -0.216307 0.286925)} Vertex 16141 2.90559 18.0362 1.0712 {normal=(0.896690 -0.184404 0.384490)} Vertex 16142 2.92448 17.9321 0.978103 {normal=(0.900358 -0.153535 0.390863)} Vertex 16143 2.97743 17.5788 0.650494 {normal=(0.937927 -0.161502 0.280158)} Vertex 16144 3.01929 17.3954 0.30506 {normal=(0.967324 -0.164526 -0.006404)} Vertex 16145 2.9824 18.2756 0.0291322 {normal=(0.797767 0.036384 -0.359284)} Vertex 16146 3.07562 18.1449 -0.162313 {normal=(0.839725 -0.068445 0.518709)} Vertex 16147 2.65224 17.6875 -0.806108 {normal=(0.881947 -0.143588 -0.434023)} Vertex 16148 2.76927 17.6024 -0.508029 {normal=(0.829110 -0.313926 -0.430272)} Vertex 16149 3.15748 19.0721 -0.13516 {normal=(0.720619 -0.393709 0.547432)} Vertex 16150 2.9029 19.2998 -1.29794 {normal=(0.703336 -0.197704 -0.597047)} Vertex 16151 3.03439 19.7262 -1.24376 {normal=(0.655695 0.037568 -0.614917)} Vertex 16152 3.11373 20.1802 -0.900279 {normal=(0.796593 -0.234520 0.006185)} Vertex 16153 2.70273 18.7385 -1.53978 {normal=(0.879972 -0.205234 0.279203)} Vertex 16154 2.59637 18.3137 -1.34904 {normal=(0.920801 -0.013930 0.117812)} Vertex 16155 2.77103 18.4678 -1.03913 {normal=(0.542378 -0.445126 -0.640604)} Vertex 16156 2.77182 18.1738 -0.832003 {normal=(0.503307 -0.420646 -0.693457)} Vertex 16157 3.09282 20.2178 -0.106983 {normal=(0.784311 -0.227077 -0.083483)} Vertex 16158 3.29494 20.0532 -0.230667 {normal=(0.608562 0.534117 0.574340)} Vertex 16159 3.05537 19.9663 0.0154847 {normal=(0.732542 -0.072079 -0.172499)} Vertex 16160 3.02173 19.5874 0.0777202 {normal=(0.694528 -0.035219 -0.036217)} Vertex 16161 1.51976 19.76 3.37352 {normal=(0.388500 -0.395959 0.813833)} Vertex 16162 1.51711 19.7409 3.26993 {normal=(0.075606 -0.956192 0.168265)} Vertex 16163 1.82508 19.6481 3.0742 {normal=(-0.331244 -0.897624 0.182000)} Vertex 16164 1.83597 19.6664 3.17214 {normal=(0.411855 -0.365766 0.807930)} Vertex 16165 1.20735 19.673 3.46332 {normal=(0.365116 -0.505289 0.771382)} Vertex 16166 1.21124 19.6575 3.35608 {normal=(0.452827 -0.862931 0.153655)} Vertex 16167 0.955229 19.502 3.47097 {normal=(0.374061 -0.491569 0.774323)} Vertex 16168 0.964663 19.4904 3.36433 {normal=(0.610100 -0.765470 0.146796)} Vertex 16169 0.759576 19.3184 3.46294 {normal=(0.456524 -0.250105 0.817749)} Vertex 16170 0.773142 19.3156 3.35693 {normal=(0.840930 -0.401823 0.146517)} Vertex 16171 0.814011 19.2228 3.47555 {normal=(0.151008 0.474062 0.841045)} Vertex 16172 0.826021 19.2328 3.37151 {normal=(0.440647 0.838935 0.160294)} Vertex 16173 1.27523 19.1236 3.50161 {normal=(0.106316 0.641177 0.748084)} Vertex 16174 1.26935 19.144 3.39035 {normal=(0.106098 0.974044 0.140183)} Vertex 16175 1.77221 19.1291 3.37896 {normal=(0.179395 0.747880 0.628290)} Vertex 16176 1.75136 19.1511 3.26466 {normal=(-0.112731 0.976378 0.112934)} Vertex 16177 2.04073 19.2243 3.14888 {normal=(0.241029 0.817122 0.510586)} Vertex 16178 2.01043 19.2398 3.04364 {normal=(-0.318972 0.930494 0.103076)} Vertex 16179 2.18449 19.3232 2.91403 {normal=(0.452730 0.559694 0.644940)} Vertex 16180 2.16001 19.3293 2.831 {normal=(-0.657688 0.541108 0.216516)} Vertex 16181 2.17259 19.4116 2.90055 {normal=(0.523014 -0.073523 0.799772)} Vertex 16182 2.15172 19.4083 2.82247 {normal=(-0.692842 -0.604275 0.245747)} Vertex 16183 2.08163 19.4977 2.97603 {normal=(0.478845 -0.249186 0.801738)} Vertex 16184 2.0679 19.483 2.88617 {normal=(-0.477605 -0.820691 0.203660)} Vertex 16185 -1.83597 19.6664 3.17214 {normal=(-0.411855 -0.365766 0.807930)} Vertex 16186 -1.82508 19.6481 3.0742 {normal=(0.331243 -0.897624 0.182000)} Vertex 16187 -1.51711 19.7409 3.26993 {normal=(-0.075606 -0.956192 0.168265)} Vertex 16188 -1.51976 19.76 3.37352 {normal=(-0.388500 -0.395959 0.813833)} Vertex 16189 -2.08163 19.4977 2.97603 {normal=(-0.478845 -0.249186 0.801738)} Vertex 16190 -2.0679 19.483 2.88617 {normal=(0.477605 -0.820691 0.203660)} Vertex 16191 -2.17259 19.4116 2.90055 {normal=(-0.523014 -0.073523 0.799772)} Vertex 16192 -2.15172 19.4083 2.82247 {normal=(0.692842 -0.604275 0.245747)} Vertex 16193 -2.18449 19.3232 2.91403 {normal=(-0.452733 0.559691 0.644944)} Vertex 16194 -2.16001 19.3293 2.831 {normal=(0.657688 0.541108 0.216516)} Vertex 16195 -2.04073 19.2243 3.14888 {normal=(-0.241038 0.817118 0.510590)} Vertex 16196 -2.01044 19.2398 3.04364 {normal=(0.318972 0.930494 0.103076)} Vertex 16197 -1.77221 19.1291 3.37896 {normal=(-0.179395 0.747880 0.628290)} Vertex 16198 -1.75136 19.1511 3.26466 {normal=(0.112731 0.976378 0.112934)} Vertex 16199 -1.27523 19.1236 3.50161 {normal=(-0.106316 0.641177 0.748084)} Vertex 16200 -1.26935 19.144 3.39035 {normal=(-0.106098 0.974044 0.140183)} Vertex 16201 -0.814011 19.2228 3.47555 {normal=(-0.151008 0.474062 0.841045)} Vertex 16202 -0.826021 19.2328 3.37151 {normal=(-0.440648 0.838935 0.160294)} Vertex 16203 -0.759576 19.3184 3.46294 {normal=(-0.456524 -0.250105 0.817748)} Vertex 16204 -0.773142 19.3156 3.35693 {normal=(-0.840930 -0.401823 0.146517)} Vertex 16205 -0.955229 19.502 3.47098 {normal=(-0.374061 -0.491569 0.774323)} Vertex 16206 -0.964663 19.4905 3.36433 {normal=(-0.610100 -0.765470 0.146796)} Vertex 16207 -1.20735 19.673 3.46332 {normal=(-0.365116 -0.505289 0.771382)} Vertex 16208 -1.21124 19.6575 3.35608 {normal=(-0.452827 -0.862931 0.153655)} Vertex 16209 -1.51642 15.0979 -2.5427 {normal=(-0.645976 0.271852 -0.707666)} Vertex 16210 -2.16965 14.62 -1.86863 {normal=(-0.893230 0.185855 -0.388709)} Vertex 16211 -2.39176 14.0761 -0.9688 {normal=(-0.983695 -0.014510 0.093033)} Vertex 16212 -2.22301 13.8229 -0.468745 {normal=(-0.925832 -0.121632 0.356702)} Vertex 16213 -2.08651 13.7291 -0.150294 {normal=(-0.897586 -0.136536 0.414900)} Vertex 16214 -1.84426 13.6037 0.218738 {normal=(-0.815539 -0.168108 0.552640)} Vertex 16215 -1.4326 13.4712 0.603015 {normal=(-0.498769 -0.242075 0.817333)} Vertex 16216 -0.588454 13.3557 0.841872 {normal=(-0.184392 -0.281912 0.940145)} Vertex 16217 0.00477325 13.3123 0.889374 {normal=(-0.000050 -0.287626 0.956922)} Vertex 16218 0.600439 13.3557 0.841872 {normal=(0.183890 -0.271091 0.943381)} Vertex 16219 1.43803 13.4712 0.603015 {normal=(0.512324 -0.186688 0.820977)} Vertex 16220 1.81754 13.6037 0.218739 {normal=(0.830406 -0.063481 0.552378)} Vertex 16221 2.04719 13.7291 -0.150294 {normal=(0.891938 -0.043627 0.445964)} Vertex 16222 2.19363 13.8229 -0.468745 {normal=(0.905330 -0.056459 0.418125)} Vertex 16223 2.40621 14.0761 -0.9688 {normal=(0.969790 -0.008849 0.199878)} Vertex 16224 2.30149 14.62 -1.86863 {normal=(0.919944 0.145518 -0.330332)} Vertex 16225 1.68475 15.0979 -2.5427 {normal=(0.632761 0.255678 -0.723807)} Vertex 16226 0.73402 15.5663 -2.97491 {normal=(0.371951 0.280677 -0.881014)} Vertex 16227 0.0278267 15.8153 -3.06409 {normal=(-0.002120 0.285343 -0.952913)} Vertex 16228 -0.639615 15.5663 -2.97491 {normal=(-0.399614 0.275025 -0.869666)} Vertex 16229 -1.65468 14.2143 -2.83927 {normal=(-0.649353 0.369011 -0.657497)} Vertex 16230 -2.27983 13.7364 -2.1652 {normal=(-0.909984 0.265872 -0.286914)} Vertex 16231 -2.43869 13.1926 -1.26536 {normal=(-0.972099 0.066651 0.176209)} Vertex 16232 -2.26268 12.9394 -0.765306 {normal=(-0.922920 -0.009085 0.380706)} Vertex 16233 -2.13952 12.8456 -0.446856 {normal=(-0.906144 -0.009171 0.416672)} Vertex 16234 -1.91617 12.7202 -0.0778227 {normal=(-0.825072 -0.054468 0.560905)} Vertex 16235 -1.51724 12.5877 0.306454 {normal=(-0.497139 -0.208989 0.825126)} Vertex 16236 -0.630919 12.4722 0.545311 {normal=(-0.175691 -0.317854 0.930446)} Vertex 16237 0.0214152 12.4288 0.592813 {normal=(0.000045 -0.338280 0.940437)} Vertex 16238 0.681012 12.4722 0.545311 {normal=(0.171347 -0.315543 0.932131)} Vertex 16239 1.59748 12.5877 0.306454 {normal=(0.494868 -0.191684 0.829190)} Vertex 16240 1.99527 12.7202 -0.0778225 {normal=(0.827903 -0.004497 0.560075)} Vertex 16241 2.21089 12.8456 -0.446856 {normal=(0.902963 0.058320 0.421345)} Vertex 16242 2.33019 12.9394 -0.765306 {normal=(0.914565 0.053041 0.397845)} Vertex 16243 2.50769 13.1926 -1.26536 {normal=(0.963615 0.097593 0.213718)} Vertex 16244 2.38471 13.7365 -2.1652 {normal=(0.921584 0.238810 -0.269264)} Vertex 16245 1.77665 14.2143 -2.83927 {normal=(0.643747 0.339150 -0.677815)} Vertex 16246 0.793496 14.6828 -3.27147 {normal=(0.376552 0.347295 -0.855290)} Vertex 16247 0.042524 14.9318 -3.36065 {normal=(-0.000110 0.341681 -0.933839)} Vertex 16248 -0.698898 14.6828 -3.27147 {normal=(-0.387836 0.352039 -0.847681)} Vertex 16249 -1.82055 13.5012 -3.10528 {normal=(-0.644019 0.375313 -0.657732)} Vertex 16250 -2.43885 13.0233 -2.43121 {normal=(-0.920446 0.239286 -0.268026)} Vertex 16251 -2.57552 12.4795 -1.53137 {normal=(-0.971903 0.049960 0.167970)} Vertex 16252 -2.40716 12.2263 -1.03132 {normal=(-0.929142 -0.025736 0.352733)} Vertex 16253 -2.29607 12.1326 -0.71287 {normal=(-0.916977 -0.020848 0.382725)} Vertex 16254 -2.08419 12.0071 -0.343837 {normal=(-0.834634 -0.087105 0.535977)} Vertex 16255 -1.67791 11.8747 0.0404405 {normal=(-0.491904 -0.259817 0.809514)} Vertex 16256 -0.713161 11.7591 0.279297 {normal=(-0.163791 -0.370919 0.911907)} Vertex 16257 0.0191605 11.7157 0.326798 {normal=(-0.000120 -0.391341 0.918823)} Vertex 16258 0.759512 11.7591 0.279297 {normal=(0.159192 -0.373084 0.911976)} Vertex 16259 1.75843 11.8747 0.0404405 {normal=(0.484960 -0.265290 0.811534)} Vertex 16260 2.16997 12.0071 -0.343837 {normal=(0.835618 -0.091300 0.533986)} Vertex 16261 2.38126 12.1326 -0.71287 {normal=(0.918022 -0.024510 0.380314)} Vertex 16262 2.49191 12.2262 -1.03132 {normal=(0.930174 -0.028202 0.350064)} Vertex 16263 2.65946 12.4795 -1.53137 {normal=(0.972409 0.048082 0.166282)} Vertex 16264 2.52342 13.0234 -2.43121 {normal=(0.922160 0.231207 -0.270198)} Vertex 16265 1.90712 13.5012 -3.10528 {normal=(0.643386 0.366818 -0.663221)} Vertex 16266 0.874659 13.9697 -3.53748 {normal=(0.370384 0.392140 -0.838306)} Vertex 16267 0.0428387 14.2187 -3.62667 {normal=(-0.000149 0.390985 -0.913826)} Vertex 16268 -0.788398 13.9697 -3.53748 {normal=(-0.372100 0.395014 -0.836173)} Vertex 16269 -1.33098 13.6293 -3.40548 {normal=(-0.502956 0.398986 -0.763584)} Vertex 16270 -0.359819 14.0283 -3.66041 {normal=(-0.218025 0.449896 -0.859147)} Vertex 16271 0.444732 14.0283 -3.66041 {normal=(0.217602 0.449506 -0.859477)} Vertex 16272 1.41694 13.6293 -3.40547 {normal=(0.502647 0.397664 -0.764436)} Vertex 16273 2.29991 13.1536 -2.84953 {normal=(0.795420 0.244415 -0.536881)} Vertex 16274 2.66781 12.6215 -2.01505 {normal=(0.981497 0.000074 -0.133576)} Vertex 16275 2.60596 12.2029 -1.28225 {normal=(0.941281 -0.189576 0.256089)} Vertex 16276 2.4577 12.058 -0.913966 {normal=(0.945170 -0.172438 0.263722)} Vertex 16277 2.31437 11.9584 -0.582425 {normal=(0.877128 -0.224094 0.414153)} Vertex 16278 2.04855 11.8245 -0.190024 {normal=(0.729128 -0.296481 0.597360)} Vertex 16279 1.29913 11.6956 0.137272 {normal=(0.264566 -0.435301 0.856434)} Vertex 16280 0.364457 11.6111 0.273629 {normal=(0.074475 -0.458858 0.883505)} Vertex 16281 -0.326679 11.6111 0.273629 {normal=(-0.075864 -0.458537 0.883485)} Vertex 16282 -1.23665 11.6956 0.137272 {normal=(-0.272856 -0.433211 0.854680)} Vertex 16283 -1.96344 11.8245 -0.190025 {normal=(-0.731109 -0.294289 0.596528)} Vertex 16284 -2.22974 11.9584 -0.582424 {normal=(-0.876594 -0.223142 0.415466)} Vertex 16285 -2.37352 12.058 -0.913966 {normal=(-0.944786 -0.171712 0.264976)} Vertex 16286 -2.5224 12.2029 -1.28225 {normal=(-0.940753 -0.189414 0.257488)} Vertex 16287 -2.58462 12.6215 -2.01505 {normal=(-0.981287 0.000935 -0.133530)} Vertex 16288 -2.21523 13.1536 -2.84953 {normal=(-0.794689 0.246190 -0.537063)} Vertex 16289 -1.25354 14.0517 -3.24276 {normal=(-0.508937 0.383823 -0.766680)} Vertex 16290 -0.33195 14.4507 -3.49769 {normal=(-0.202230 0.357804 -0.905799)} Vertex 16291 0.419926 14.4507 -3.49769 {normal=(0.200777 0.356674 -0.906777)} Vertex 16292 1.34747 14.0517 -3.24276 {normal=(0.502404 0.370513 -0.777627)} Vertex 16293 2.21253 13.576 -2.68682 {normal=(0.797130 0.335753 -0.483262)} Vertex 16294 2.58103 13.0439 -1.85234 {normal=(0.972497 0.201890 -0.011557)} Vertex 16295 2.51607 12.6253 -1.11954 {normal=(0.922129 0.061561 0.377262)} Vertex 16296 2.36454 12.4804 -0.751256 {normal=(0.933028 0.084876 0.349541)} Vertex 16297 2.21623 12.3807 -0.419714 {normal=(0.864361 0.020944 0.500540)} Vertex 16298 1.94814 12.2469 -0.0273138 {normal=(0.723100 -0.077733 0.672363)} Vertex 16299 1.22534 12.118 0.299983 {normal=(0.272021 -0.292063 0.914137)} Vertex 16300 0.344901 12.0334 0.436339 {normal=(0.075913 -0.343742 0.934902)} Vertex 16301 -0.300979 12.0335 0.436339 {normal=(-0.077046 -0.343171 0.934967)} Vertex 16302 -1.15799 12.1179 0.299983 {normal=(-0.279827 -0.289329 0.912549)} Vertex 16303 -1.85942 12.2469 -0.0273137 {normal=(-0.723626 -0.080278 0.672197)} Vertex 16304 -2.12828 12.3807 -0.419714 {normal=(-0.863230 0.009639 0.502699)} Vertex 16305 -2.27785 12.4804 -0.751256 {normal=(-0.934079 0.068271 0.349838)} Vertex 16306 -2.4312 12.6253 -1.11954 {normal=(-0.924396 0.045502 0.373241)} Vertex 16307 -2.49543 13.0439 -1.85234 {normal=(-0.971149 0.206014 -0.020918)} Vertex 16308 -2.11628 13.576 -2.68682 {normal=(-0.793739 0.361190 -0.472115)} Vertex 16309 -1.11307 14.8735 -2.94597 {normal=(-0.528903 0.329314 -0.778852)} Vertex 16310 -0.29593 15.2725 -3.2009 {normal=(-0.214118 0.318047 -0.916776)} Vertex 16311 0.373706 15.2726 -3.2009 {normal=(0.205695 0.320901 -0.918457)} Vertex 16312 1.2402 14.8735 -2.94597 {normal=(0.506545 0.317212 -0.798549)} Vertex 16313 2.08702 14.3978 -2.39002 {normal=(0.794426 0.261430 -0.531572)} Vertex 16314 2.45138 13.8657 -1.55554 {normal=(0.983177 0.116155 -0.039539)} Vertex 16315 2.34955 13.4472 -0.822741 {normal=(0.918456 -0.000836 0.389638)} Vertex 16316 2.17935 13.3022 -0.454462 {normal=(0.922944 0.035028 0.381628)} Vertex 16317 2.01947 13.2025 -0.122919 {normal=(0.859624 0.000015 0.509282)} Vertex 16318 1.75398 13.0687 0.26948 {normal=(0.732380 -0.077626 0.663587)} Vertex 16319 1.08784 12.9398 0.596777 {normal=(0.292670 -0.265713 0.915645)} Vertex 16320 0.299486 12.8553 0.733133 {normal=(0.083193 -0.312935 0.944751)} Vertex 16321 -0.268686 12.8553 0.733133 {normal=(-0.084342 -0.315867 0.943635)} Vertex 16322 -1.03927 12.9398 0.596777 {normal=(-0.296027 -0.282510 0.909785)} Vertex 16323 -1.70403 13.0687 0.26948 {normal=(-0.721096 -0.154283 0.663553)} Vertex 16324 -1.99079 13.2025 -0.12292 {normal=(-0.857156 -0.103957 0.501775)} Vertex 16325 -2.1585 13.3022 -0.454462 {normal=(-0.932021 -0.065476 0.354407)} Vertex 16326 -2.32407 13.4472 -0.822741 {normal=(-0.937149 -0.064423 0.333793)} Vertex 16327 -2.37622 13.8657 -1.55554 {normal=(-0.976638 0.123799 -0.112340)} Vertex 16328 -1.94363 14.3978 -2.39002 {normal=(-0.782750 0.297431 -0.534060)} Vertex 16329 -1.05224 15.9064 -2.63914 {normal=(-0.533314 0.216855 -0.814504)} Vertex 16330 -0.299666 16.3055 -2.89407 {normal=(-0.201250 0.231165 -0.945133)} Vertex 16331 0.34441 16.3055 -2.89407 {normal=(0.187746 0.239493 -0.946936)} Vertex 16332 1.18861 15.9065 -2.63914 {normal=(0.496887 0.230359 -0.833726)} Vertex 16333 2.03057 15.4307 -2.08319 {normal=(0.780071 0.184985 -0.583668)} Vertex 16334 2.40871 14.8986 -1.24872 {normal=(0.985846 0.049730 -0.074554)} Vertex 16335 2.2927 14.4801 -0.515917 {normal=(0.917794 -0.087364 0.380710)} Vertex 16336 2.09768 14.3351 -0.147636 {normal=(0.909440 -0.093984 0.404627)} Vertex 16337 1.91088 14.2355 0.183906 {normal=(0.853179 -0.122121 0.505368)} Vertex 16338 1.6295 14.1016 0.576306 {normal=(0.745550 -0.178356 0.628582)} Vertex 16339 0.999114 13.9727 0.903602 {normal=(0.312810 -0.298745 0.896009)} Vertex 16340 0.261607 13.8882 1.03996 {normal=(0.089993 -0.328834 0.936195)} Vertex 16341 -0.278308 13.8882 1.03996 {normal=(-0.088565 -0.333189 0.934845)} Vertex 16342 -1.03724 13.9727 0.903602 {normal=(-0.303182 -0.322024 0.891912)} Vertex 16343 -1.70737 14.1016 0.576306 {normal=(-0.720259 -0.250695 0.634949)} Vertex 16344 -2.00644 14.2355 0.183906 {normal=(-0.853925 -0.187104 0.483684)} Vertex 16345 -2.1813 14.3351 -0.147636 {normal=(-0.929572 -0.136213 0.341977)} Vertex 16346 -2.33889 14.4801 -0.515916 {normal=(-0.952628 -0.092014 0.274549)} Vertex 16347 -2.33034 14.8986 -1.24872 {normal=(-0.967059 0.094923 -0.199290)} Vertex 16348 -1.84483 15.4307 -2.08319 {normal=(-0.769413 0.203792 -0.596709)} Vertex 16349 -1.3595 19.7214 3.42276 {normal=(-0.356894 -0.733258 0.514411)} Vertex 16350 -1.07967 19.5837 3.46284 {normal=(-0.481762 -0.686072 0.493767)} Vertex 16351 -0.84892 19.3982 3.45665 {normal=(-0.576551 -0.620114 0.474843)} Vertex 16352 -0.750656 19.2675 3.45723 {normal=(-0.619142 0.266118 0.557539)} Vertex 16353 -1.01471 19.1799 3.48722 {normal=(-0.145978 0.818873 0.497641)} Vertex 16354 -1.52912 19.1306 3.442 {normal=(-0.087445 0.874950 0.424429)} Vertex 16355 -1.90815 19.1883 3.25732 {normal=(0.015389 0.907385 0.355777)} Vertex 16356 -2.10731 19.2836 3.01483 {normal=(-0.003142 0.889007 0.369976)} Vertex 16357 -2.17467 19.3706 2.89976 {normal=(0.180706 -0.014222 0.708821)} Vertex 16358 -2.12764 19.4412 2.93496 {normal=(0.031675 -0.577146 0.648576)} Vertex 16359 -1.96555 19.5655 3.0633 {normal=(-0.000963 -0.688497 0.595266)} Vertex 16360 -1.67711 19.7172 3.27513 {normal=(-0.140130 -0.741488 0.554045)} Vertex 16361 1.96555 19.5655 3.0633 {normal=(0.000963 -0.688497 0.595266)} Vertex 16362 2.12764 19.4412 2.93496 {normal=(-0.031675 -0.577146 0.648576)} Vertex 16363 2.17467 19.3706 2.89976 {normal=(-0.180706 -0.014222 0.708821)} Vertex 16364 2.10731 19.2836 3.01483 {normal=(0.003133 0.889012 0.369972)} Vertex 16365 1.90815 19.1883 3.25732 {normal=(-0.015391 0.907386 0.355776)} Vertex 16366 1.52912 19.1306 3.442 {normal=(0.087445 0.874949 0.424429)} Vertex 16367 1.01471 19.1799 3.48722 {normal=(0.145978 0.818873 0.497641)} Vertex 16368 0.750655 19.2675 3.45723 {normal=(0.619142 0.266118 0.557539)} Vertex 16369 0.84892 19.3982 3.45665 {normal=(0.576551 -0.620114 0.474843)} Vertex 16370 1.07967 19.5837 3.46284 {normal=(0.481762 -0.686072 0.493767)} Vertex 16371 1.3595 19.7214 3.42275 {normal=(0.356894 -0.733258 0.514411)} Vertex 16372 1.67711 19.7172 3.27513 {normal=(0.140130 -0.741488 0.554045)} Vertex 16373 2.33011 18.7163 3.28582 {normal=(0.672824 0.262667 0.683204)} Vertex 16374 3.08033 19.4272 0.0652415 {normal=(0.627082 -0.056671 0.701593)} Vertex 16375 3.1232 19.8063 0.001333 {normal=(0.591310 0.193435 0.737324)} Vertex 16376 3.20587 20.197 -0.293253 {normal=(0.705554 0.524061 0.421306)} Vertex 16377 3.1902 20.2064 -0.721863 {normal=(0.559346 0.689399 -0.283135)} Vertex 16378 2.78641 17.7549 -0.61216 {normal=(0.595876 -0.485957 -0.576118)} Vertex 16379 2.69986 17.9571 -0.8201 {normal=(0.754436 -0.248601 -0.580653)} Vertex 16380 2.65751 18.2368 -1.05503 {normal=(0.861274 -0.285106 -0.380977)} Vertex 16381 2.68864 18.5791 -1.28923 {normal=(0.888104 -0.310314 -0.271495)} Vertex 16382 3.0957 20.0056 -1.10423 {normal=(0.678154 0.266008 -0.439045)} Vertex 16383 2.8049 19.0628 -1.40637 {normal=(0.913957 -0.283815 -0.166875)} Vertex 16384 3.05423 19.0831 0.0252312 {normal=(0.848672 -0.179682 0.400843)} Vertex 16385 2.65936 17.4019 -0.718962 {normal=(0.937504 -0.103124 -0.328894)} Vertex 16386 3.02355 18.3557 -0.0816015 {normal=(0.936655 0.014935 0.296723)} Vertex 16387 3.03662 18.6548 -0.0865643 {normal=(0.950522 -0.095337 0.248414)} Vertex 16388 3.1094 18.9069 -0.164374 {normal=(0.910215 -0.216196 0.328850)} Vertex 16389 3.02391 17.5489 0.419858 {normal=(0.811544 -0.458126 0.276378)} Vertex 16390 2.97925 17.8473 0.792099 {normal=(0.750660 -0.365979 0.510728)} Vertex 16391 2.92665 18.2034 1.1061 {normal=(0.741670 -0.363854 0.532429)} Vertex 16392 2.96922 18.6208 1.13595 {normal=(0.782930 0.074861 0.546954)} Vertex 16393 3.05866 18.9604 0.927281 {normal=(0.727124 0.295274 0.583637)} Vertex 16394 3.0625 19.2716 0.835461 {normal=(0.716487 0.072684 0.668132)} Vertex 16395 3.00714 19.7397 0.875279 {normal=(0.738056 0.034383 0.644338)} Vertex 16396 3.05703 20.3348 0.594604 {normal=(0.694995 0.403851 0.554229)} Vertex 16397 3.11619 20.784 -0.0210338 {normal=(0.743356 0.551706 0.251633)} Vertex 16398 3.08442 20.9681 -0.687572 {normal=(0.747115 0.582946 0.056533)} Vertex 16399 2.84792 21.2572 -1.51012 {normal=(0.763079 0.557659 -0.123381)} Vertex 16400 2.09659 21.9221 -2.19965 {normal=(0.654820 0.688254 -0.192433)} Vertex 16401 1.40549 22.4353 -2.45242 {normal=(0.450344 0.841488 -0.186845)} Vertex 16402 0.622943 22.709 -2.54526 {normal=(0.232031 0.942678 -0.154400)} Vertex 16403 3.03188 17.4834 0.215558 {normal=(0.817549 -0.236454 -0.457053)} Vertex 16404 2.89762 18.3405 1.24462 {normal=(0.877625 -0.263554 0.347445)} Vertex 16405 2.96951 19.9974 0.907199 {normal=(0.815709 0.195148 0.526532)} Vertex 16406 1.68032 18.8634 3.5533 {normal=(0.079142 0.154562 0.978010)} Vertex 16407 1.01652 19.0421 3.50107 {normal=(-0.249431 -0.220777 0.933137)} Vertex 16408 1.00364 19.0223 3.49804 {normal=(-0.099685 0.202958 0.968314)} Vertex 16409 1.67155 18.8409 3.55622 {normal=(0.055765 0.108765 0.990816)} Vertex 16410 0.580797 15.2945 3.85641 {normal=(0.262785 -0.169990 0.930337)} Vertex 16411 0.191408 15.2755 3.92086 {normal=(0.091950 -0.157084 0.954892)} Vertex 16412 2.29917 16.9114 3.03785 {normal=(0.404733 -0.265789 0.859437)} Vertex 16413 2.35032 17.2572 3.12266 {normal=(0.502571 -0.289306 0.799587)} Vertex 16414 2.44459 17.5968 3.17157 {normal=(0.714808 -0.281650 0.624476)} Vertex 16415 0.265543 17.072 4.26558 {normal=(0.178166 -0.647771 0.695133)} Vertex 16416 1.13148 17.2066 3.85318 {normal=(0.589350 -0.554731 0.531086)} Vertex 16417 1.49925 17.2556 3.46183 {normal=(0.572995 -0.561310 0.557823)} Vertex 16418 2.02487 16.4134 2.97821 {normal=(0.099338 -0.179180 0.971185)} Vertex 16419 1.83372 15.9254 3.04549 {normal=(0.519772 0.213362 0.807966)} Vertex 16420 1.53657 15.7738 3.37998 {normal=(0.671108 0.263499 0.643506)} Vertex 16421 1.09861 15.8256 3.77073 {normal=(0.539037 0.371109 0.698655)} Vertex 16422 0.645522 15.8776 4.01936 {normal=(0.356032 0.463936 0.768954)} Vertex 16423 0.218666 15.9032 4.15175 {normal=(0.171929 0.511367 0.805215)} Vertex 16424 0.730559 17.1512 4.14701 {normal=(0.375788 -0.615520 0.644021)} Vertex 16425 1.78397 17.2136 3.24395 {normal=(0.013487 -0.627726 0.769099)} Vertex 16426 2.02615 16.9207 3.10568 {normal=(0.006422 -0.349753 0.930443)} Vertex 16427 0.926516 18.0404 3.77857 {normal=(0.380339 0.246762 0.878776)} Vertex 16428 0.690286 18.2802 3.85596 {normal=(0.701126 0.301604 0.613455)} Vertex 16429 1.72328 17.3718 3.36337 {normal=(0.137493 -0.488399 0.856759)} Vertex 16430 1.28422 17.7775 3.6348 {normal=(0.383198 -0.079179 0.903369)} Vertex 16431 0.803555 17.7922 4.02952 {normal=(0.766503 -0.086808 0.605841)} Vertex 16432 0.849647 17.8796 3.95449 {normal=(0.926689 -0.007969 0.298264)} Vertex 16433 0.808623 18.0635 3.89551 {normal=(0.904229 0.375893 -0.068931)} Vertex 16434 0.664274 18.3085 3.89966 {normal=(0.776991 0.581155 -0.194800)} Vertex 16435 0.744637 17.8126 4.11713 {normal=(0.169822 -0.613421 0.686602)} Vertex 16436 0.714441 17.8899 4.24582 {normal=(0.374815 -0.686921 0.571754)} Vertex 16437 0.555657 17.955 4.39886 {normal=(0.275532 -0.747288 0.526288)} Vertex 16438 0.372471 17.9695 4.58576 {normal=(0.484358 -0.796689 0.270959)} Vertex 16439 0.25326 17.867 4.60043 {normal=(0.713469 -0.625693 0.246806)} Vertex 16440 0.209436 17.7202 4.40587 {normal=(0.849851 -0.284124 0.376971)} Vertex 16441 1.11681 17.3595 3.89021 {normal=(0.703375 0.032166 0.705662)} Vertex 16442 1.01556 17.6787 3.89055 {normal=(0.622123 0.291825 0.725853)} Vertex 16443 0.894641 17.8738 3.90671 {normal=(0.648548 0.300886 0.690958)} Vertex 16444 0.855215 17.9594 4.02565 {normal=(0.969351 -0.105024 0.134596)} Vertex 16445 0.80787 18.0986 4.1625 {normal=(0.859394 0.161808 0.453979)} Vertex 16446 0.649773 18.1942 4.31124 {normal=(0.678030 0.332634 0.648044)} Vertex 16447 0.523758 18.2351 4.44524 {normal=(0.892412 0.081788 0.428047)} Vertex 16448 0.417732 18.277 4.67475 {normal=(0.836291 0.033939 0.527481)} Vertex 16449 0.166755 18.3244 4.86954 {normal=(0.244307 0.113106 0.943809)} Vertex 16450 0.500638 18.4695 4.20431 {normal=(0.842719 0.490491 0.201630)} Vertex 16451 0.364604 18.5946 4.50914 {normal=(0.820491 0.441409 0.343276)} Vertex 16452 0.146747 18.6681 4.67252 {normal=(0.245162 0.614090 0.731798)} Vertex 16453 0.797792 18.0909 3.8502 {normal=(0.847164 0.467792 0.214347)} Vertex 16454 0.345897 17.9537 4.41523 {normal=(0.285779 -0.935656 -0.053754)} Vertex 16455 0.658465 17.8761 4.21881 {normal=(-0.283291 -0.921333 0.220676)} Vertex 16456 0.503407 17.937 4.32778 {normal=(-0.202193 -0.967311 0.082385)} Vertex 16457 2.24748 19.524 2.72581 {normal=(0.839490 0.280537 0.456458)} Vertex 16458 2.25365 19.5432 2.71311 {normal=(0.692244 -0.122638 0.697389)} Vertex 16459 2.01116 19.7465 2.98927 {normal=(0.759222 0.222147 0.603271)} Vertex 16460 2.01513 19.7695 2.98163 {normal=(0.632033 -0.149983 0.733168)} Vertex 16461 1.67672 19.898 3.24833 {normal=(0.536426 0.257711 0.795542)} Vertex 16462 1.67876 19.9217 3.24448 {normal=(0.474745 -0.236476 0.806999)} Vertex 16463 1.32281 19.8668 3.42722 {normal=(0.202392 0.283827 0.923758)} Vertex 16464 1.32008 19.8849 3.42772 {normal=(0.459587 -0.384384 0.742749)} Vertex 16465 1.03136 19.6893 3.47311 {normal=(-0.162449 0.211880 0.950234)} Vertex 16466 1.02515 19.6993 3.47519 {normal=(0.370459 -0.516976 0.712322)} Vertex 16467 0.769848 19.4579 3.45653 {normal=(-0.313396 0.241743 0.909218)} Vertex 16468 0.761309 19.4644 3.45639 {normal=(0.300814 -0.364219 0.849263)} Vertex 16469 1.68385 19.8481 3.27082 {normal=(0.540179 0.361880 0.752727)} Vertex 16470 1.99062 19.6131 3.05849 {normal=(0.618913 -0.055616 0.775244)} Vertex 16471 2.17331 19.4632 2.89362 {normal=(0.729780 0.087365 0.671109)} Vertex 16472 2.23494 19.3672 2.84154 {normal=(0.734544 0.259170 0.612161)} Vertex 16473 2.17949 19.2537 3.00919 {normal=(0.468252 0.702767 0.526699)} Vertex 16474 1.98016 19.1249 3.30406 {normal=(0.307736 0.685424 0.654311)} Vertex 16475 1.57108 19.0655 3.48954 {normal=(0.167537 0.565046 0.802452)} Vertex 16476 1.01136 19.1435 3.51006 {normal=(-0.011180 0.348653 0.922992)} Vertex 16477 0.719284 19.2633 3.47085 {normal=(0.052912 0.008173 0.969625)} Vertex 16478 0.825215 19.4142 3.47673 {normal=(0.210421 -0.261673 0.924180)} Vertex 16479 1.06779 19.613 3.48553 {normal=(0.228198 -0.314846 0.908521)} Vertex 16480 1.35495 19.7612 3.44357 {normal=(0.344582 -0.206860 0.903676)} Vertex 16481 1.52762 19.1357 3.07209 {normal=(0.005213 0.988288 0.103082)} Vertex 16482 1.90394 19.1923 2.88813 {normal=(-0.265472 0.948750 0.104742)} Vertex 16483 2.1009 19.2872 2.64965 {normal=(-0.416582 0.873570 0.139926)} Vertex 16484 2.16918 19.3703 2.53762 {normal=(-0.781858 -0.097086 0.345792)} Vertex 16485 2.1246 19.4364 2.57156 {normal=(-0.558446 -0.734533 0.255316)} Vertex 16486 1.96298 19.5598 2.6979 {normal=(-0.447316 -0.848804 0.183677)} Vertex 16487 1.67564 19.7108 2.90791 {normal=(-0.190271 -0.948337 0.156946)} Vertex 16488 1.36042 19.7153 3.05406 {normal=(0.287098 -0.930888 0.143239)} Vertex 16489 1.08271 19.5786 3.09354 {normal=(0.554597 -0.802887 0.153894)} Vertex 16490 0.85362 19.3952 3.08738 {normal=(0.669291 -0.691269 0.189494)} Vertex 16491 0.755913 19.2694 3.08834 {normal=(0.796397 0.295201 0.216626)} Vertex 16492 1.01725 19.1854 3.118 {normal=(0.206522 0.960698 0.130044)} Vertex 16493 2.23064 19.4985 2.79177 {normal=(0.838893 0.345501 0.416352)} Vertex 16494 1.01672 19.0817 3.5151 {normal=(-0.224503 -0.192593 0.940083)} Vertex 16495 1.59978 19.5181 2.51616 {normal=(0.287355 -0.499994 0.806901)} Vertex 16496 2.11687 16.0346 2.84017 {normal=(0.538341 -0.225474 0.802020)} Vertex 16497 1.9223 15.7692 2.95053 {normal=(0.682206 -0.192042 0.697401)} Vertex 16498 3.01481 19.1573 0.982133 {normal=(0.962246 0.067152 0.251859)} Vertex 16499 2.96223 19.5472 1.06922 {normal=(0.969757 0.095870 0.219283)} Vertex 16500 2.91576 19.8574 1.1491 {normal=(0.966683 0.110540 0.228035)} Vertex 16501 2.89655 20.0728 1.08416 {normal=(0.946442 0.176068 0.266141)} Vertex 16502 2.9838 20.495 0.713291 {normal=(0.941506 0.071632 0.325238)} Vertex 16503 3.08425 20.9893 0.140152 {normal=(0.991605 0.054808 0.101544)} Vertex 16504 3.09812 21.2285 -0.219079 {normal=(0.998512 0.004243 0.024989)} Vertex 16505 3.07379 21.3378 -0.578473 {normal=(0.991907 0.078352 -0.082541)} Vertex 16506 3.01575 21.4018 -1.03328 {normal=(0.963978 0.145492 -0.205260)} Vertex 16507 2.3455 17.1027 -1.43144 {normal=(0.839816 -0.055703 -0.533888)} Vertex 16508 2.54505 16.8374 -0.847203 {normal=(0.949273 -0.179782 -0.253737)} Vertex 16509 2.69009 16.8009 -0.356431 {normal=(0.856106 -0.217235 -0.465043)} Vertex 16510 2.85958 16.9366 -0.0680255 {normal=(0.925877 -0.157262 -0.338013)} Vertex 16511 2.98173 17.2429 0.567305 {normal=(0.979374 -0.040759 0.188415)} Vertex 16512 2.90245 17.5632 0.939213 {normal=(0.954287 -0.077898 0.287365)} Vertex 16513 2.85111 17.8129 1.16135 {normal=(0.934212 -0.082704 0.346711)} Vertex 16514 2.82978 17.951 1.29245 {normal=(0.956832 -0.160448 0.238117)} Vertex 16515 2.83335 18.0998 1.41967 {normal=(0.964915 -0.246801 0.034469)} Vertex 16516 2.51159 17.5866 -1.12872 {normal=(0.910738 -0.040885 -0.409242)} Vertex 16517 2.98176 17.5998 0.120135 {normal=(0.845281 -0.043288 -0.508868)} Vertex 16518 2.98038 18.7813 1.24565 {normal=(0.987777 -0.098903 -0.043961)} Vertex 16519 2.95148 19.2561 1.45758 {normal=(0.967506 0.214374 0.126900)} Vertex 16520 2.8743 19.5751 1.56679 {normal=(0.971710 0.151426 0.178421)} Vertex 16521 2.79175 19.8547 1.78739 {normal=(0.967089 0.096583 0.233480)} Vertex 16522 2.6159 20.2237 2.26963 {normal=(0.932334 0.006048 0.354238)} Vertex 16523 3.02615 18.5966 1.75024 {normal=(0.984372 -0.124714 0.012465)} Vertex 16524 2.97497 18.8213 1.92062 {normal=(0.932706 0.244126 0.251889)} Vertex 16525 2.9441 18.3863 2.23541 {normal=(0.969268 -0.099619 0.174240)} Vertex 16526 2.82284 18.6601 2.51139 {normal=(0.889778 0.273244 0.354235)} Vertex 16527 2.79253 18.2102 2.76016 {normal=(0.924425 -0.064117 0.350859)} Vertex 16528 2.61601 18.4142 3.04614 {normal=(0.813555 0.166033 0.548344)} Vertex 16529 2.60516 17.9526 3.08709 {normal=(0.847663 -0.180656 0.484476)} Vertex 16530 2.39331 18.0611 3.36478 {normal=(0.635235 -0.021567 0.756121)} Vertex 16531 2.52746 18.9755 2.80701 {normal=(0.767029 0.478471 0.423627)} Vertex 16532 2.83201 19.1491 2.00599 {normal=(0.878510 0.315739 0.351728)} Vertex 16533 2.48533 19.434 2.48213 {normal=(0.732870 -0.121967 0.655348)} Vertex 16534 2.69353 19.5569 2.15955 {normal=(0.913223 -0.026708 0.401695)} Vertex 16535 2.36083 19.6423 2.68208 {normal=(0.621091 -0.324826 0.704362)} Vertex 16536 2.53632 19.8867 2.48426 {normal=(0.883732 0.000986 0.463105)} Vertex 16537 2.11836 19.8825 3.01548 {normal=(0.478685 -0.542271 0.676184)} Vertex 16538 2.26714 20.1549 2.98514 {normal=(0.821949 -0.139789 0.541095)} Vertex 16539 1.74433 19.9952 3.31374 {normal=(0.298967 -0.769100 0.553949)} Vertex 16540 1.8517 20.1595 3.4104 {normal=(0.556618 -0.482288 0.656110)} Vertex 16541 1.33403 19.9146 3.5064 {normal=(0.505770 -0.832752 0.211612)} Vertex 16542 1.38241 19.9906 3.6457 {normal=(0.534853 -0.734595 0.412720)} Vertex 16543 1.02102 19.7163 3.56737 {normal=(0.525442 -0.818267 0.221111)} Vertex 16544 1.03097 19.7937 3.7355 {normal=(0.438112 -0.755359 0.481595)} Vertex 16545 0.733121 19.5208 3.52807 {normal=(0.379315 -0.672108 0.614563)} Vertex 16546 0.713704 19.6675 3.72136 {normal=(0.235799 -0.788909 0.565525)} Vertex 16547 0.790252 19.441 3.47389 {normal=(-0.334557 0.247748 0.903132)} Vertex 16548 1.04695 19.6609 3.48744 {normal=(-0.173145 0.244381 0.945167)} Vertex 16549 1.33793 19.8271 3.44283 {normal=(0.175155 0.336934 0.914616)} Vertex 16550 1.6863 19.7655 3.28571 {normal=(0.506182 -0.095981 0.848594)} Vertex 16551 2.01045 19.6961 3.02165 {normal=(0.754501 0.312255 0.570308)} Vertex 16552 2.29409 19.178 2.97136 {normal=(0.704682 0.545533 0.444901)} Vertex 16553 1.64433 18.9408 3.5397 {normal=(0.134616 0.284879 0.939129)} Vertex 16554 0.124922 13.943 3.3665 {normal=(0.107058 -0.923649 0.346923)} Vertex 16555 0.175665 13.9034 2.98877 {normal=(0.128552 -0.984618 -0.053064)} Vertex 16556 0.226768 13.9883 2.55576 {normal=(0.087135 -0.965831 -0.237116)} Vertex 16557 0.332093 14.0146 3.4181 {normal=(0.309613 -0.894757 0.309655)} Vertex 16558 0.499777 13.9931 3.03438 {normal=(0.367857 -0.919224 0.113026)} Vertex 16559 0.693316 14.0752 2.59511 {normal=(0.310276 -0.939311 -0.123707)} Vertex 16560 0.746471 14.1265 3.14062 {normal=(0.438808 -0.872330 0.206385)} Vertex 16561 1.0839 14.2438 2.72044 {normal=(0.506243 -0.848488 0.100454)} Vertex 16562 0.883823 14.2801 3.30529 {normal=(0.629605 -0.665947 0.385411)} Vertex 16563 1.27808 14.5338 2.94629 {normal=(0.767189 -0.461965 0.432037)} Vertex 16564 0.524955 14.1997 3.67881 {normal=(0.422858 -0.759553 0.476354)} Vertex 16565 0.898989 14.482 3.55597 {normal=(0.726678 -0.477382 0.478733)} Vertex 16566 1.20694 14.9049 3.33377 {normal=(0.811357 -0.270206 0.514637)} Vertex 16567 0.501637 14.3215 3.82259 {normal=(0.362611 -0.521094 0.760442)} Vertex 16568 0.763407 14.6664 3.80335 {normal=(0.563459 -0.174779 0.796944)} Vertex 16569 0.93135 15.0912 3.71244 {normal=(0.583529 -0.017362 0.803007)} Vertex 16570 0.368398 14.4274 3.94127 {normal=(0.278985 -0.416045 0.852607)} Vertex 16571 0.488115 14.7775 3.95899 {normal=(0.375443 0.016682 0.920648)} Vertex 16572 0.556699 15.1156 3.88924 {normal=(0.299771 0.158501 0.937963)} Vertex 16573 0.143395 14.498 3.99609 {normal=(-0.014023 -0.362246 0.921403)} Vertex 16574 0.168665 14.8382 4.04232 {normal=(0.121648 0.081929 0.982502)} Vertex 16575 0.18305 15.124 3.96918 {normal=(0.114439 0.319201 0.938291)} Vertex 16576 0.619587 15.4114 3.92578 {normal=(0.269731 -0.548900 0.786408)} Vertex 16577 0.212484 15.4453 4.04311 {normal=(0.115856 -0.570516 0.809323)} Vertex 16578 2.11933 17.2574 3.21925 {normal=(0.310419 -0.427859 0.845904)} Vertex 16579 2.2128 16.4068 2.91472 {normal=(0.452909 -0.280627 0.832410)} Vertex 16580 1.73049 16.0229 3.03243 {normal=(0.231890 0.438830 0.852038)} Vertex 16581 1.87123 16.4239 2.95458 {normal=(-0.171520 -0.031823 0.977274)} Vertex 16582 1.82772 16.9167 3.06372 {normal=(-0.204066 -0.402293 0.889399)} Vertex 16583 1.67326 17.1601 3.17002 {normal=(-0.058987 -0.720909 0.663292)} Vertex 16584 2.22131 17.622 3.36495 {normal=(0.452850 -0.365163 0.805847)} Vertex 16585 1.86819 17.7223 3.50761 {normal=(0.174898 -0.320172 0.928011)} Vertex 16586 1.38217 17.9636 3.65709 {normal=(0.189932 -0.169210 0.963282)} Vertex 16587 0.979722 18.1921 3.75489 {normal=(0.210547 0.074049 0.972836)} Vertex 16588 2.0459 18.1624 3.54247 {normal=(0.315966 0.007009 0.941878)} Vertex 16589 2.06462 18.5932 3.51364 {normal=(0.394355 0.107642 0.903723)} Vertex 16590 1.54174 18.3011 3.63569 {normal=(0.155697 0.129272 0.976493)} Vertex 16591 1.63876 18.6518 3.57402 {normal=(0.074781 0.097649 0.991681)} Vertex 16592 1.05014 18.4631 3.67799 {normal=(0.221216 0.299773 0.925987)} Vertex 16593 1.07311 18.744 3.58185 {normal=(0.104037 0.267832 0.951827)} Vertex 16594 1.51794 15.5692 3.31465 {normal=(0.683393 -0.330710 0.649072)} Vertex 16595 1.44274 15.9041 3.29579 {normal=(0.419576 0.721749 0.538475)} Vertex 16596 1.43879 17.1792 3.3615 {normal=(0.349971 -0.877180 0.325739)} Vertex 16597 1.44665 17.4128 3.55517 {normal=(0.684786 -0.048294 0.721081)} Vertex 16598 1.06693 15.5952 3.73941 {normal=(0.583088 -0.253431 0.769333)} Vertex 16599 1.00795 15.9419 3.61611 {normal=(0.350432 0.857411 0.376154)} Vertex 16600 1.0419 17.1298 3.69521 {normal=(0.294302 -0.929295 0.219571)} Vertex 16601 0.861963 17.6129 4.05124 {normal=(0.585445 0.308027 0.746960)} Vertex 16602 0.658617 15.6741 4.01151 {normal=(0.404418 -0.139575 0.897987)} Vertex 16603 0.5737 15.9928 3.84832 {normal=(0.236058 0.876016 0.418842)} Vertex 16604 0.627858 17.0711 3.93653 {normal=(0.221319 -0.954113 0.201110)} Vertex 16605 0.71702 17.2924 4.18169 {normal=(0.395920 -0.050243 0.910428)} Vertex 16606 0.22925 15.7305 4.16453 {normal=(0.191870 -0.088057 0.967085)} Vertex 16607 0.19315 16.0079 3.97362 {normal=(0.107701 0.889747 0.441084)} Vertex 16608 0.22313 17.004 4.06237 {normal=(0.171420 -0.959249 0.216839)} Vertex 16609 0.308075 17.2183 4.30272 {normal=(0.204342 -0.164567 0.960457)} Vertex 16610 0.331531 17.4867 4.30086 {normal=(0.346965 0.106160 0.923413)} Vertex 16611 0.0945435 17.4182 4.36378 {normal=(0.117155 -0.211309 0.961908)} Vertex 16612 0.582535 17.7682 4.11885 {normal=(0.203968 0.291884 0.926361)} Vertex 16613 0.32533 17.7133 4.2399 {normal=(0.515296 0.283227 0.790254)} Vertex 16614 0.0884078 17.638 4.47841 {normal=(0.279441 -0.599664 0.725253)} Vertex 16615 0.262872 17.8822 4.42585 {normal=(0.843861 -0.514962 -0.048778)} Vertex 16616 0.118065 17.8633 4.7132 {normal=(0.215300 -0.700251 0.665512)} Vertex 16617 0.1576 18.1003 4.86612 {normal=(0.250652 -0.208593 0.921420)} Vertex 16618 0.397093 18.0861 4.67476 {normal=(0.791297 -0.232892 0.545845)} Vertex 16619 0.608157 18.0511 4.39368 {normal=(0.652914 0.066036 0.747146)} Vertex 16620 0.768787 17.9731 4.22467 {normal=(0.809363 -0.136985 0.555531)} Vertex 16621 0.806018 17.8574 4.0879 {normal=(0.843006 -0.363214 0.382559)} Vertex 16622 0.811409 18.1286 3.96273 {normal=(0.872416 0.351379 -0.314893)} Vertex 16623 0.767927 18.2443 4.07384 {normal=(0.803174 0.562262 0.114672)} Vertex 16624 0.646664 18.3209 4.1818 {normal=(0.616202 0.687012 0.374584)} Vertex 16625 0.526257 18.3701 4.34547 {normal=(0.836205 0.458488 0.282044)} Vertex 16626 0.402971 18.4471 4.61643 {normal=(0.812326 0.415581 0.386710)} Vertex 16627 0.161567 18.5131 4.79833 {normal=(0.234880 0.556237 0.776362)} Vertex 16628 0.667805 19.2451 3.44971 {normal=(-0.476214 -0.197419 0.847667)} Vertex 16629 0.595642 19.2848 3.46194 {normal=(0.516639 -0.108775 0.816703)} Vertex 16630 0.473911 19.5199 3.69349 {normal=(0.646300 -0.415404 0.592579)} Vertex 16631 0.396127 19.6864 3.88515 {normal=(0.349046 -0.362977 0.828063)} Vertex 16632 0.197062 19.8546 3.96547 {normal=(0.147972 -0.132804 0.975610)} Vertex 16633 0.698655 18.5614 3.79036 {normal=(0.525895 0.264230 0.805004)} Vertex 16634 0.673363 18.8337 3.69496 {normal=(0.629707 0.352837 0.671929)} Vertex 16635 0.47854 18.6655 4.08828 {normal=(0.930278 0.185918 0.313055)} Vertex 16636 0.458361 18.9659 3.97185 {normal=(0.885902 0.265597 0.376060)} Vertex 16637 0.420046 19.2625 3.79508 {normal=(0.869893 0.286635 0.391287)} Vertex 16638 0.3337 18.8013 4.38522 {normal=(0.800835 0.354187 0.463062)} Vertex 16639 0.302053 19.0748 4.22185 {normal=(0.721048 0.438682 0.522565)} Vertex 16640 0.275672 19.3806 3.99038 {normal=(0.675419 0.371176 0.609542)} Vertex 16641 0.128283 18.8663 4.52421 {normal=(0.262245 0.573167 0.760392)} Vertex 16642 0.110646 19.1256 4.33469 {normal=(0.273533 0.588671 0.747683)} Vertex 16643 0.106704 19.4412 4.06612 {normal=(0.260629 0.518285 0.793234)} Vertex 16644 2.52381 17.3875 2.46532 {normal=(0.976596 -0.197313 -0.071039)} Vertex 16645 2.50016 17.1786 2.50496 {normal=(0.984505 -0.118476 -0.124271)} Vertex 16646 2.4473 17.0472 2.17611 {normal=(0.986252 -0.143812 0.028171)} Vertex 16647 2.48378 16.8545 1.88066 {normal=(0.953467 -0.045675 0.294326)} Vertex 16648 2.58542 16.5597 1.57375 {normal=(0.947435 -0.037672 0.315365)} Vertex 16649 2.64279 16.2935 1.26259 {normal=(0.933519 -0.268810 0.226514)} Vertex 16650 2.59507 16.0147 0.938424 {normal=(0.888778 -0.432313 0.144314)} Vertex 16651 2.41105 15.6566 0.612823 {normal=(0.801590 -0.595026 0.018462)} Vertex 16652 2.19737 15.427 0.400347 {normal=(0.748486 -0.641377 -0.135371)} Vertex 16653 2.09202 15.1637 0.173804 {normal=(0.923494 -0.275461 0.240395)} Vertex 16654 2.25155 15.3729 -0.158779 {normal=(0.936343 -0.199883 0.263128)} Vertex 16655 2.34576 15.6854 0.120023 {normal=(0.736374 -0.615723 -0.258570)} Vertex 16656 2.56108 15.8813 0.376554 {normal=(0.846411 -0.522015 -0.066824)} Vertex 16657 2.71582 16.214 0.731207 {normal=(0.916524 -0.378740 0.114609)} Vertex 16658 2.72887 16.4753 1.09223 {normal=(0.951674 -0.181040 0.240379)} Vertex 16659 2.63583 16.7222 1.44817 {normal=(0.937756 -0.040838 0.344359)} Vertex 16660 2.52509 17.032 1.77862 {normal=(0.954158 -0.050090 0.291797)} Vertex 16661 2.49347 17.2833 2.04334 {normal=(0.973002 -0.200285 0.089712)} Vertex 16662 2.56817 17.5501 2.35034 {normal=(0.936707 -0.347630 0.019438)} Vertex 16663 2.69017 16.9025 1.32924 {normal=(0.927972 -0.068603 0.365627)} Vertex 16664 2.57668 17.1998 1.65532 {normal=(0.933068 -0.084973 0.346823)} Vertex 16665 2.54543 17.429 1.88771 {normal=(0.943940 -0.283204 0.147508)} Vertex 16666 2.63226 17.681 2.13139 {normal=(0.903909 -0.422980 0.054619)} Vertex 16667 2.77458 17.9842 2.45574 {normal=(0.887757 -0.449253 0.084641)} Vertex 16668 2.4824 16.1169 1.91102 {normal=(0.951162 -0.043190 0.302143)} Vertex 16669 2.42736 16.7998 2.29299 {normal=(0.991947 -0.063395 -0.081846)} Vertex 16670 2.44657 16.639 1.98829 {normal=(0.962778 0.008190 0.262338)} Vertex 16671 2.54339 16.3787 1.71295 {normal=(0.962117 0.002016 0.269652)} Vertex 16672 2.57825 16.1083 1.43024 {normal=(0.976081 -0.188379 0.076608)} Vertex 16673 2.49588 15.8331 1.14399 {normal=(0.910519 -0.406439 0.008794)} Vertex 16674 2.28691 15.5022 0.867415 {normal=(0.789507 -0.611474 -0.026468)} Vertex 16675 2.0661 15.2486 0.678687 {normal=(0.761087 -0.646815 0.003925)} Vertex 16676 1.93371 15.0062 0.477058 {normal=(0.840937 -0.439414 0.283719)} Vertex 16677 1.70029 14.8388 0.842357 {normal=(0.743861 -0.611570 0.194312)} Vertex 16678 1.90938 15.0487 1.04133 {normal=(0.711546 -0.689681 -0.118734)} Vertex 16679 2.17233 15.2993 1.2493 {normal=(0.776348 -0.607745 -0.159748)} Vertex 16680 2.40243 15.5733 1.47582 {normal=(0.885407 -0.442558 -0.116578)} Vertex 16681 2.50056 15.8366 1.68652 {normal=(0.964007 -0.222604 0.119494)} Vertex 16682 2.41554 16.3858 2.31913 {normal=(0.995531 -0.074086 0.003730)} Vertex 16683 2.39661 16.4192 2.66858 {normal=(0.935651 -0.214593 0.242999)} Vertex 16684 2.46274 16.9073 2.81276 {normal=(0.938284 -0.181101 0.255462)} Vertex 16685 2.50504 17.2526 2.87662 {normal=(0.948555 -0.159827 0.233725)} Vertex 16686 2.56173 17.5452 2.85975 {normal=(0.954440 -0.234230 0.148924)} Vertex 16687 2.66173 17.8095 2.73242 {normal=(0.912248 -0.387404 0.109669)} Vertex 16688 0.240362 14.4211 1.37473 {normal=(0.072484 -0.935798 -0.066857)} Vertex 16689 0.917723 14.4967 1.25168 {normal=(0.152922 -0.923063 -0.061618)} Vertex 16690 1.47541 14.6311 1.21098 {normal=(0.537469 -0.808241 -0.145654)} Vertex 16691 1.77591 14.8105 1.40151 {normal=(0.640949 -0.718594 -0.265988)} Vertex 16692 2.11195 15.0565 1.66783 {normal=(0.751485 -0.607350 -0.253612)} Vertex 16693 2.34544 15.465 2.02377 {normal=(0.923689 -0.252876 0.272018)} Vertex 16694 2.28316 15.8848 2.5702 {normal=(0.881666 -0.290585 0.353565)} Vertex 16695 0.264502 14.1131 2.14944 {normal=(0.074004 -0.945453 -0.314492)} Vertex 16696 0.255198 14.2598 1.75569 {normal=(0.058841 -0.928692 -0.365479)} Vertex 16697 0.828928 14.2067 2.13222 {normal=(0.194942 -0.953954 -0.223780)} Vertex 16698 0.861891 14.3353 1.67472 {normal=(0.094546 -0.947225 -0.302717)} Vertex 16699 1.31366 14.4187 1.65458 {normal=(0.358735 -0.900228 -0.225298)} Vertex 16700 1.38966 14.3725 2.29502 {normal=(0.430101 -0.900659 0.030017)} Vertex 16701 1.61883 14.5492 1.82627 {normal=(0.544345 -0.813652 -0.193561)} Vertex 16702 1.9234 14.7446 2.08329 {normal=(0.717908 -0.676585 0.026933)} Vertex 16703 1.61718 14.7803 2.63898 {normal=(0.692050 -0.413897 0.590281)} Vertex 16704 2.01518 15.0637 2.36886 {normal=(0.751955 -0.412599 0.507039)} Vertex 16705 1.54963 15.2075 3.01857 {normal=(0.697291 -0.427752 0.573731)} Vertex 16706 1.98828 15.4559 2.69925 {normal=(0.717800 -0.428938 0.545822)} Vertex 16707 0.852764 23.2377 1.51404 {normal=(0.224100 0.882919 0.399248)} Vertex 16708 0.914219 22.6664 2.37442 {normal=(0.235449 0.718128 0.649024)} Vertex 16709 0.257726 23.2498 1.70263 {normal=(0.073428 0.889919 0.437765)} Vertex 16710 0.253547 22.6108 2.59712 {normal=(0.096826 0.670926 0.729516)} Vertex 16711 0.119074 20.8595 3.75688 {normal=(-0.036539 0.470217 0.880376)} Vertex 16712 0.0888143 20.2714 4.01611 {normal=(0.028634 0.167115 0.978412)} Vertex 16713 0.289851 20.2593 3.98905 {normal=(0.149384 0.184493 0.964195)} Vertex 16714 0.305899 21.828 3.17195 {normal=(0.079977 0.561115 0.822503)} Vertex 16715 0.457169 20.9411 3.70066 {normal=(0.036144 0.460995 0.884528)} Vertex 16716 0.585942 20.3851 3.94687 {normal=(-0.042867 0.329530 0.941990)} Vertex 16717 0.782655 21.1678 3.51075 {normal=(0.202271 0.533777 0.820682)} Vertex 16718 0.950864 20.6572 3.7852 {normal=(0.246289 0.471073 0.844386)} Vertex 16719 0.998715 22.0669 2.86513 {normal=(0.191358 0.583238 0.787816)} Vertex 16720 1.16933 21.4467 3.2324 {normal=(0.224960 0.503371 0.833388)} Vertex 16721 1.31773 20.9225 3.47826 {normal=(0.369348 0.452301 0.810977)} Vertex 16722 1.50647 21.6389 3.01849 {normal=(0.351802 0.497365 0.787677)} Vertex 16723 1.67811 21.1204 3.2104 {normal=(0.429411 0.400840 0.806453)} Vertex 16724 2.12022 21.2248 2.74768 {normal=(0.727184 0.383682 0.559449)} Vertex 16725 2.55267 20.9498 1.99837 {normal=(0.929843 0.173175 0.314125)} Vertex 16726 1.98587 21.7122 2.57064 {normal=(0.662725 0.440813 0.597767)} Vertex 16727 2.56381 21.4541 1.78139 {normal=(0.888850 0.192644 0.406600)} Vertex 16728 1.86105 22.2043 2.29586 {normal=(0.576673 0.548012 0.597250)} Vertex 16729 2.56205 21.9503 1.46622 {normal=(0.849072 0.350014 0.384413)} Vertex 16730 1.75156 22.6489 1.90901 {normal=(0.483318 0.698459 0.514749)} Vertex 16731 2.52115 22.351 1.08605 {normal=(0.803674 0.492843 0.317371)} Vertex 16732 1.6519 23.1297 1.09356 {normal=(0.404742 0.853134 0.305524)} Vertex 16733 2.45458 22.7533 0.419882 {normal=(0.732156 0.643517 0.175661)} Vertex 16734 1.19721 23.3852 -0.358064 {normal=(0.209928 0.965659 -0.104158)} Vertex 16735 2.157 23.0117 -0.719956 {normal=(0.540638 0.803595 -0.183686)} Vertex 16736 0.705646 23.0426 -1.86668 {normal=(0.161703 0.888791 -0.417038)} Vertex 16737 1.65264 22.7442 -1.90592 {normal=(0.410481 0.724239 -0.537868)} Vertex 16738 2.77678 20.3902 1.42798 {normal=(0.968037 0.105686 0.216671)} Vertex 16739 2.86949 20.9175 1.0795 {normal=(0.954544 0.005708 0.296669)} Vertex 16740 2.97184 21.4488 0.623108 {normal=(0.963979 0.131940 0.220484)} Vertex 16741 2.98726 21.8135 0.230513 {normal=(0.951724 0.244444 0.160466)} Vertex 16742 2.93702 22.0758 -0.221361 {normal=(0.925720 0.362128 -0.004031)} Vertex 16743 2.73161 22.2615 -0.954402 {normal=(0.836965 0.465901 -0.259861)} Vertex 16744 2.33415 22.1231 -1.77948 {normal=(0.692159 0.444551 -0.561625)} Vertex 16745 1.28836 16.7713 -2.39122 {normal=(0.515511 0.083278 -0.848365)} Vertex 16746 1.66596 17.1567 -2.11328 {normal=(0.621798 -0.004763 -0.781601)} Vertex 16747 2.06158 16.2305 -1.82619 {normal=(0.773476 0.079773 -0.614907)} Vertex 16748 2.19687 16.6516 -1.6314 {normal=(0.800132 0.015146 -0.587848)} Vertex 16749 2.38192 15.7487 -0.948984 {normal=(0.987558 -0.015206 -0.055878)} Vertex 16750 2.42677 16.261 -0.849185 {normal=(0.971934 -0.159440 -0.149946)} Vertex 16751 2.53234 16.1417 -0.186653 {normal=(0.805098 -0.427969 -0.400405)} Vertex 16752 2.74033 16.3081 0.11059 {normal=(0.899889 -0.372249 -0.208091)} Vertex 16753 2.87498 16.5442 0.468142 {normal=(0.937381 -0.332457 0.008130)} Vertex 16754 2.88181 16.8138 0.812675 {normal=(0.929973 -0.175172 0.316208)} Vertex 16755 2.78322 17.1462 1.17038 {normal=(0.918695 -0.109097 0.379070)} Vertex 16756 2.69079 17.4276 1.45841 {normal=(0.910170 -0.132567 0.391453)} Vertex 16757 2.66604 17.6048 1.6326 {normal=(0.921438 -0.299285 0.238237)} Vertex 16758 2.72498 17.8092 1.79346 {normal=(0.908499 -0.405411 0.086770)} Vertex 16759 2.86271 18.1026 2.00082 {normal=(0.903927 -0.424500 0.019928)} Vertex 16760 2.99968 17.8913 -0.729867 {normal=(-0.223237 -0.658239 -0.701827)} Vertex 16761 2.9389 17.7697 -0.407115 {normal=(0.636151 -0.740100 -0.111107)} Vertex 16762 3.05687 17.8544 -0.323711 {normal=(0.606051 -0.762809 0.163478)} Vertex 16763 3.17374 19.5499 -1.32311 {normal=(-0.413231 0.185836 -0.882222)} Vertex 16764 3.14237 19.0324 -1.32416 {normal=(-0.454452 -0.092033 -0.880557)} Vertex 16765 2.93984 19.0668 -1.23443 {normal=(0.082319 -0.189516 -0.915934)} Vertex 16766 2.88724 18.6658 -1.10108 {normal=(-0.034294 -0.401212 -0.849665)} Vertex 16767 3.0681 18.6164 -1.19748 {normal=(-0.506164 -0.275619 -0.808127)} Vertex 16768 3.01286 18.3008 -1.01109 {normal=(-0.557154 -0.410792 -0.709467)} Vertex 16769 2.855 18.3418 -0.908826 {normal=(-0.063603 -0.511302 -0.789682)} Vertex 16770 3.19251 18.0146 -0.831326 {normal=(0.636578 -0.428043 -0.557424)} Vertex 16771 3.17889 18.2905 -1.02169 {normal=(0.550990 -0.456096 -0.619763)} Vertex 16772 3.23762 18.596 -1.21039 {normal=(0.550349 -0.439950 -0.623501)} Vertex 16773 3.32228 19.0375 -1.35066 {normal=(0.578197 -0.191938 -0.711566)} Vertex 16774 3.37551 19.5428 -1.35024 {normal=(0.532066 0.125273 -0.770628)} Vertex 16775 3.40065 19.9084 -1.13163 {normal=(0.508535 0.601005 -0.556889)} Vertex 16776 3.43492 20.0881 -0.776126 {normal=(0.575202 0.748545 -0.242812)} Vertex 16777 3.44476 20.0481 -0.405576 {normal=(0.664884 0.629673 0.363649)} Vertex 16778 3.11811 18.7982 -0.379816 {normal=(0.962165 -0.072167 -0.240589)} Vertex 16779 3.10458 18.9364 -0.497438 {normal=(0.913632 -0.237386 -0.280037)} Vertex 16780 3.14522 19.2039 -0.577936 {normal=(0.872579 -0.096792 -0.445540)} Vertex 16781 3.22874 19.3553 -0.442729 {normal=(0.795896 -0.019662 -0.598003)} Vertex 16782 3.30519 19.5456 -0.396949 {normal=(0.665186 -0.271152 -0.688699)} Vertex 16783 3.37788 19.7433 -0.543228 {normal=(0.577783 -0.802208 -0.104218)} Vertex 16784 3.16699 18.9268 -0.781684 {normal=(0.623121 0.482423 0.593132)} Vertex 16785 3.1767 19.0711 -0.855488 {normal=(0.397646 -0.125150 0.878732)} Vertex 16786 3.38904 19.729 -0.730884 {normal=(0.615147 -0.755962 0.206924)} Vertex 16787 3.15706 17.9953 -0.291568 {normal=(0.798051 -0.264806 0.500501)} Vertex 16788 3.324 19.0928 -1.04032 {normal=(0.889452 -0.112840 0.436407)} Vertex 16789 3.35988 19.4256 -1.00882 {normal=(0.829594 -0.204461 0.513415)} Vertex 16790 3.37576 19.6367 -0.901743 {normal=(0.721618 -0.528300 0.433594)} Vertex 16791 3.33356 19.4854 -0.676641 {normal=(0.933173 0.011575 0.293063)} Vertex 16792 3.23292 19.4276 -0.563517 {normal=(0.782843 -0.379313 0.435173)} Vertex 16793 3.29012 19.6321 -0.587337 {normal=(0.919757 -0.140174 0.283336)} Vertex 16794 3.31751 19.5606 -0.793124 {normal=(0.980502 0.071015 -0.052444)} Vertex 16795 3.33416 19.3848 -0.893151 {normal=(0.951156 0.162083 -0.220488)} Vertex 16796 3.3235 19.1032 -0.948897 {normal=(0.923260 -0.162901 -0.307512)} Vertex 16797 3.27613 18.8166 -0.888874 {normal=(0.980903 -0.103689 0.025474)} Vertex 16798 3.241 18.6062 -0.746059 {normal=(0.980754 -0.014670 0.149668)} Vertex 16799 3.13943 18.7559 -0.61426 {normal=(0.830723 0.313462 0.445129)} Vertex 16800 3.14207 18.619 -0.509158 {normal=(0.916287 0.329194 0.204741)} Vertex 16801 3.23401 18.4306 -0.685297 {normal=(0.984960 0.079335 0.123971)} Vertex 16802 3.29421 18.6816 -1.06253 {normal=(0.966380 -0.138990 0.161120)} Vertex 16803 3.37309 19.0652 -1.18584 {normal=(0.971927 -0.147579 0.086465)} Vertex 16804 3.44134 19.4761 -1.1791 {normal=(0.965065 -0.168015 0.021348)} Vertex 16805 3.49404 19.7607 -1.02005 {normal=(0.948283 -0.174224 0.010897)} Vertex 16806 3.51451 19.8964 -0.758446 {normal=(0.947909 -0.174729 0.014317)} Vertex 16807 3.5175 19.8942 -0.487364 {normal=(0.947713 -0.173439 -0.001568)} Vertex 16808 3.48032 19.7539 -0.287621 {normal=(0.930955 -0.234607 0.109831)} Vertex 16809 3.401 19.5145 -0.215568 {normal=(0.928699 -0.275983 0.037405)} Vertex 16810 3.32019 19.2696 -0.274422 {normal=(0.924539 -0.285908 -0.128161)} Vertex 16811 3.22783 19.0941 -0.382794 {normal=(0.867485 -0.381006 -0.287586)} Vertex 16812 3.38321 19.8201 -0.1289 {normal=(0.597350 0.303564 0.719204)} Vertex 16813 3.31183 19.5269 -0.041996 {normal=(0.612887 -0.132959 0.758503)} Vertex 16814 3.25266 19.2312 -0.119674 {normal=(0.643882 -0.414208 0.632059)} Vertex 16815 -2.33011 18.7163 3.28582 {normal=(-0.671200 0.267951 0.683285)} Vertex 16816 -3.08033 19.4272 0.0652415 {normal=(-0.627082 -0.056671 0.701593)} Vertex 16817 -3.1232 19.8063 0.001333 {normal=(-0.591310 0.193435 0.737324)} Vertex 16818 -3.20587 20.197 -0.293253 {normal=(-0.705566 0.524045 0.421300)} Vertex 16819 -3.1902 20.2065 -0.721863 {normal=(-0.559346 0.689399 -0.283135)} Vertex 16820 -2.75878 17.7549 -0.61216 {normal=(-0.568467 -0.512680 -0.589016)} Vertex 16821 -2.67926 17.9571 -0.8201 {normal=(-0.729274 -0.304501 -0.589138)} Vertex 16822 -2.65205 18.2368 -1.05503 {normal=(-0.840263 -0.334853 -0.394839)} Vertex 16823 -2.68861 18.5791 -1.28923 {normal=(-0.886618 -0.314924 -0.271758)} Vertex 16824 -3.0957 20.0056 -1.10423 {normal=(-0.678154 0.266007 -0.439045)} Vertex 16825 -2.80491 19.0628 -1.40637 {normal=(-0.913957 -0.283815 -0.166875)} Vertex 16826 -3.05423 19.0831 0.0252312 {normal=(-0.848672 -0.179682 0.400843)} Vertex 16827 -2.60062 17.4019 -0.718962 {normal=(-0.908137 -0.152020 -0.388182)} Vertex 16828 -3.02355 18.3557 -0.0816015 {normal=(-0.936890 0.013378 0.296409)} Vertex 16829 -3.03662 18.6548 -0.0865643 {normal=(-0.950858 -0.098941 0.247032)} Vertex 16830 -3.1094 18.9069 -0.164374 {normal=(-0.910214 -0.216196 0.328850)} Vertex 16831 -3.02543 17.5489 0.419858 {normal=(-0.816750 -0.448786 0.272803)} Vertex 16832 -2.97925 17.8473 0.792099 {normal=(-0.751276 -0.364208 0.511012)} Vertex 16833 -2.92665 18.2034 1.1061 {normal=(-0.741669 -0.363854 0.532429)} Vertex 16834 -2.96922 18.6208 1.13595 {normal=(-0.782930 0.074861 0.546954)} Vertex 16835 -3.05866 18.9604 0.927281 {normal=(-0.727124 0.295274 0.583637)} Vertex 16836 -3.0625 19.2716 0.835461 {normal=(-0.716486 0.072683 0.668134)} Vertex 16837 -3.00714 19.7397 0.875279 {normal=(-0.738054 0.034383 0.644339)} Vertex 16838 -3.05703 20.3348 0.594604 {normal=(-0.694995 0.403851 0.554229)} Vertex 16839 -3.11619 20.784 -0.0210338 {normal=(-0.743356 0.551706 0.251633)} Vertex 16840 -3.08442 20.9681 -0.687572 {normal=(-0.747114 0.582946 0.056533)} Vertex 16841 -2.84792 21.2572 -1.51013 {normal=(-0.763079 0.557659 -0.123381)} Vertex 16842 -2.09659 21.9221 -2.19965 {normal=(-0.654820 0.688254 -0.192433)} Vertex 16843 -1.40549 22.4353 -2.45242 {normal=(-0.450344 0.841488 -0.186845)} Vertex 16844 -0.622943 22.709 -2.54526 {normal=(-0.232031 0.942678 -0.154400)} Vertex 16845 -3.03207 17.4834 0.215558 {normal=(-0.812084 -0.229327 -0.471542)} Vertex 16846 -2.89762 18.3405 1.24462 {normal=(-0.877625 -0.263555 0.347445)} Vertex 16847 -2.96951 19.9974 0.907199 {normal=(-0.815710 0.195147 0.526531)} Vertex 16848 -3.07897 18.9151 0.112482 {normal=(-0.531340 -0.037579 -0.832750)} Vertex 16849 -3.08282 19.3264 0.091767 {normal=(-0.452354 -0.061083 -0.885838)} Vertex 16850 -1.68032 18.8634 3.5533 {normal=(-0.079142 0.154562 0.978010)} Vertex 16851 -1.01652 19.0421 3.50107 {normal=(0.249682 -0.222671 0.932526)} Vertex 16852 -1.00364 19.0223 3.49804 {normal=(0.097098 0.199642 0.968945)} Vertex 16853 -1.67155 18.8409 3.55622 {normal=(-0.051470 0.106634 0.991024)} Vertex 16854 -0.580797 15.2945 3.85641 {normal=(-0.262785 -0.169990 0.930337)} Vertex 16855 -0.191408 15.2755 3.92086 {normal=(-0.091950 -0.157084 0.954892)} Vertex 16856 -2.29917 16.9114 3.03785 {normal=(-0.404733 -0.265789 0.859436)} Vertex 16857 -2.35032 17.2572 3.12266 {normal=(-0.502571 -0.289306 0.799587)} Vertex 16858 -2.44459 17.5968 3.17157 {normal=(-0.714809 -0.281650 0.624476)} Vertex 16859 -0.265543 17.072 4.26558 {normal=(-0.178166 -0.647771 0.695133)} Vertex 16860 -1.13148 17.2066 3.85318 {normal=(-0.589352 -0.554734 0.531085)} Vertex 16861 -1.49925 17.2556 3.46183 {normal=(-0.573001 -0.561295 0.557835)} Vertex 16862 -2.02487 16.4134 2.97821 {normal=(-0.099338 -0.179180 0.971185)} Vertex 16863 -1.83372 15.9254 3.04549 {normal=(-0.519772 0.213362 0.807966)} Vertex 16864 -1.53657 15.7738 3.37998 {normal=(-0.671109 0.263499 0.643506)} Vertex 16865 -1.09861 15.8256 3.77073 {normal=(-0.539037 0.371109 0.698655)} Vertex 16866 -0.645522 15.8776 4.01936 {normal=(-0.356032 0.463936 0.768954)} Vertex 16867 -0.218666 15.9032 4.15175 {normal=(-0.171929 0.511367 0.805215)} Vertex 16868 -0.730559 17.1512 4.14701 {normal=(-0.375788 -0.615519 0.644021)} Vertex 16869 -1.78397 17.2136 3.24395 {normal=(-0.013487 -0.627726 0.769099)} Vertex 16870 -2.02615 16.9207 3.10568 {normal=(-0.008290 -0.352194 0.929316)} Vertex 16871 -0.926516 18.0404 3.77857 {normal=(-0.380347 0.246772 0.878772)} Vertex 16872 -0.690286 18.2802 3.85596 {normal=(-0.700493 0.297261 0.615170)} Vertex 16873 -1.72328 17.3718 3.36337 {normal=(-0.135410 -0.489013 0.856609)} Vertex 16874 -1.28422 17.7775 3.6348 {normal=(-0.383198 -0.079176 0.903368)} Vertex 16875 -0.803555 17.7922 4.02952 {normal=(-0.751306 -0.098623 0.617697)} Vertex 16876 -0.849647 17.8796 3.95449 {normal=(-0.926689 -0.007968 0.298264)} Vertex 16877 -0.808623 18.0635 3.89551 {normal=(-0.904230 0.375893 -0.068930)} Vertex 16878 -0.664274 18.3085 3.89966 {normal=(-0.769401 0.608449 -0.146180)} Vertex 16879 -0.744637 17.8126 4.11713 {normal=(-0.140039 -0.661210 0.658828)} Vertex 16880 -0.714441 17.8899 4.24582 {normal=(-0.374815 -0.686921 0.571754)} Vertex 16881 -0.555657 17.955 4.39886 {normal=(-0.275533 -0.747288 0.526289)} Vertex 16882 -0.372471 17.9695 4.58576 {normal=(-0.484358 -0.796689 0.270959)} Vertex 16883 -0.25326 17.867 4.60043 {normal=(-0.713469 -0.625693 0.246807)} Vertex 16884 -0.209436 17.7202 4.40587 {normal=(-0.849853 -0.284125 0.376967)} Vertex 16885 -1.11681 17.3595 3.89021 {normal=(-0.703373 0.032162 0.705662)} Vertex 16886 -1.01556 17.6787 3.89055 {normal=(-0.622122 0.291825 0.725853)} Vertex 16887 -0.894641 17.8738 3.90671 {normal=(-0.648547 0.300886 0.690958)} Vertex 16888 -0.855215 17.9594 4.02565 {normal=(-0.969352 -0.105022 0.134593)} Vertex 16889 -0.80787 18.0986 4.1625 {normal=(-0.859394 0.161808 0.453979)} Vertex 16890 -0.649773 18.1942 4.31124 {normal=(-0.678030 0.332634 0.648044)} Vertex 16891 -0.523758 18.2351 4.44524 {normal=(-0.892412 0.081788 0.428047)} Vertex 16892 -0.417732 18.277 4.67475 {normal=(-0.836290 0.033939 0.527481)} Vertex 16893 -0.166755 18.3244 4.86954 {normal=(-0.244307 0.113106 0.943809)} Vertex 16894 -0.500638 18.4696 4.20431 {normal=(-0.842719 0.490491 0.201630)} Vertex 16895 -0.364604 18.5946 4.50914 {normal=(-0.820491 0.441409 0.343276)} Vertex 16896 -0.146747 18.6681 4.67252 {normal=(-0.245162 0.614090 0.731798)} Vertex 16897 -0.797793 18.0909 3.8502 {normal=(-0.847164 0.467792 0.214347)} Vertex 16898 -0.345897 17.9537 4.41523 {normal=(-0.285778 -0.935657 -0.053754)} Vertex 16899 -0.658465 17.8761 4.21881 {normal=(0.283290 -0.921334 0.220676)} Vertex 16900 -0.503407 17.937 4.32778 {normal=(0.202193 -0.967311 0.082384)} Vertex 16901 -0.476765 19.9776 4.02831 {normal=(0.532358 -0.238385 0.780406)} Vertex 16902 -0.533571 19.8309 3.96394 {normal=(0.372482 -0.644779 0.634373)} Vertex 16903 -2.24748 19.524 2.72581 {normal=(-0.840069 0.285435 0.453270)} Vertex 16904 -2.25365 19.5432 2.71311 {normal=(-0.694803 -0.116012 0.694418)} Vertex 16905 -2.01116 19.7466 2.98927 {normal=(-0.759221 0.222132 0.603276)} Vertex 16906 -2.01513 19.7695 2.98163 {normal=(-0.632042 -0.149972 0.733168)} Vertex 16907 -1.67672 19.898 3.24833 {normal=(-0.536417 0.257666 0.795557)} Vertex 16908 -1.67876 19.9217 3.24448 {normal=(-0.474762 -0.236447 0.807007)} Vertex 16909 -1.32281 19.8668 3.42722 {normal=(-0.202392 0.283827 0.923758)} Vertex 16910 -1.32008 19.8849 3.42772 {normal=(-0.459587 -0.384384 0.742749)} Vertex 16911 -1.03136 19.6893 3.47311 {normal=(0.162449 0.211880 0.950234)} Vertex 16912 -1.02515 19.6993 3.4752 {normal=(-0.370459 -0.516976 0.712322)} Vertex 16913 -0.769848 19.4579 3.45653 {normal=(0.313398 0.241746 0.909217)} Vertex 16914 -0.761309 19.4644 3.45639 {normal=(-0.300814 -0.364218 0.849262)} Vertex 16915 -1.68385 19.8481 3.27082 {normal=(-0.540179 0.361880 0.752726)} Vertex 16916 -1.99062 19.6131 3.05849 {normal=(-0.618914 -0.055616 0.775244)} Vertex 16917 -2.17331 19.4632 2.89362 {normal=(-0.729780 0.087365 0.671109)} Vertex 16918 -2.23494 19.3672 2.84154 {normal=(-0.734544 0.259170 0.612161)} Vertex 16919 -2.17949 19.2537 3.00919 {normal=(-0.468249 0.702767 0.526702)} Vertex 16920 -1.98016 19.1249 3.30406 {normal=(-0.307736 0.685425 0.654310)} Vertex 16921 -1.57108 19.0655 3.48954 {normal=(-0.167537 0.565046 0.802452)} Vertex 16922 -1.01136 19.1435 3.51006 {normal=(0.011180 0.348653 0.922992)} Vertex 16923 -0.719285 19.2633 3.47085 {normal=(-0.052912 0.008173 0.969625)} Vertex 16924 -0.825215 19.4142 3.47674 {normal=(-0.210421 -0.261673 0.924180)} Vertex 16925 -1.06779 19.613 3.48554 {normal=(-0.228198 -0.314846 0.908521)} Vertex 16926 -1.35495 19.7612 3.44357 {normal=(-0.344582 -0.206860 0.903676)} Vertex 16927 -1.52762 19.1357 3.07209 {normal=(-0.005213 0.988288 0.103082)} Vertex 16928 -1.90394 19.1923 2.88813 {normal=(0.265472 0.948749 0.104742)} Vertex 16929 -2.1009 19.2872 2.64965 {normal=(0.416582 0.873570 0.139926)} Vertex 16930 -2.16918 19.3703 2.53761 {normal=(0.781858 -0.097086 0.345792)} Vertex 16931 -2.1246 19.4364 2.57156 {normal=(0.558446 -0.734533 0.255316)} Vertex 16932 -1.96297 19.5598 2.6979 {normal=(0.447316 -0.848803 0.183677)} Vertex 16933 -1.67564 19.7108 2.90791 {normal=(0.190271 -0.948337 0.156946)} Vertex 16934 -1.36042 19.7153 3.05407 {normal=(-0.287096 -0.930889 0.143238)} Vertex 16935 -1.08271 19.5786 3.09354 {normal=(-0.554598 -0.802886 0.153893)} Vertex 16936 -0.85362 19.3952 3.08738 {normal=(-0.669291 -0.691269 0.189494)} Vertex 16937 -0.755913 19.2694 3.08834 {normal=(-0.796397 0.295201 0.216626)} Vertex 16938 -1.01725 19.1854 3.118 {normal=(-0.206522 0.960698 0.130044)} Vertex 16939 -2.23064 19.4985 2.79177 {normal=(-0.838893 0.345501 0.416352)} Vertex 16940 -1.01672 19.0817 3.5151 {normal=(0.224503 -0.192593 0.940083)} Vertex 16941 -1.50084 19.2926 2.57824 {normal=(-0.201690 0.713180 0.639818)} Vertex 16942 -1.24419 12.3186 -1.25963 {normal=(0.066002 -0.894355 -0.440437)} Vertex 16943 -2.11687 16.0346 2.84017 {normal=(-0.538341 -0.225474 0.802021)} Vertex 16944 -1.92231 15.7692 2.95053 {normal=(-0.682206 -0.192042 0.697400)} Vertex 16945 -3.01481 19.1573 0.982132 {normal=(-0.962247 0.067152 0.251859)} Vertex 16946 -2.96223 19.5472 1.06922 {normal=(-0.969757 0.095870 0.219283)} Vertex 16947 -2.91576 19.8574 1.1491 {normal=(-0.966453 0.110874 0.228959)} Vertex 16948 -2.89655 20.0728 1.08416 {normal=(-0.946441 0.176076 0.266138)} Vertex 16949 -2.9838 20.495 0.713291 {normal=(-0.941506 0.071632 0.325238)} Vertex 16950 -3.08425 20.9893 0.140152 {normal=(-0.991605 0.054808 0.101544)} Vertex 16951 -3.09812 21.2285 -0.219079 {normal=(-0.998512 0.004243 0.024989)} Vertex 16952 -3.07379 21.3378 -0.578473 {normal=(-0.991907 0.078352 -0.082541)} Vertex 16953 -3.01575 21.4018 -1.03328 {normal=(-0.963978 0.145492 -0.205260)} Vertex 16954 -2.0074 17.4478 -1.78054 {normal=(-0.722954 -0.220827 -0.650544)} Vertex 16955 -2.21616 17.1027 -1.43144 {normal=(-0.816942 -0.122131 -0.559717)} Vertex 16956 -2.45002 16.8374 -0.847203 {normal=(-0.917091 -0.198319 -0.344910)} Vertex 16957 -2.65338 16.8009 -0.356431 {normal=(-0.816124 -0.201040 -0.539549)} Vertex 16958 -2.85115 16.9366 -0.0680255 {normal=(-0.902826 -0.137067 -0.403599)} Vertex 16959 -2.99241 17.2429 0.567305 {normal=(-0.980598 -0.008548 0.183444)} Vertex 16960 -2.9035 17.5632 0.939213 {normal=(-0.953704 -0.065816 0.291865)} Vertex 16961 -2.85111 17.8129 1.16135 {normal=(-0.934209 -0.082612 0.346737)} Vertex 16962 -2.82978 17.951 1.29245 {normal=(-0.956832 -0.160448 0.238117)} Vertex 16963 -2.83335 18.0998 1.41967 {normal=(-0.964915 -0.246801 0.034469)} Vertex 16964 -2.44225 17.5866 -1.12872 {normal=(-0.889069 -0.125393 -0.438635)} Vertex 16965 -2.97952 17.5998 0.120135 {normal=(-0.844662 -0.078968 -0.505086)} Vertex 16966 -2.98038 18.7813 1.24565 {normal=(-0.987777 -0.098903 -0.043961)} Vertex 16967 -2.95148 19.2561 1.45758 {normal=(-0.967506 0.214374 0.126900)} Vertex 16968 -2.8743 19.5751 1.56679 {normal=(-0.971908 0.149833 0.178544)} Vertex 16969 -2.79174 19.8547 1.78739 {normal=(-0.967474 0.098471 0.230636)} Vertex 16970 -2.6159 20.2237 2.26963 {normal=(-0.932334 0.006048 0.354238)} Vertex 16971 -3.02615 18.5966 1.75024 {normal=(-0.984372 -0.124714 0.012465)} Vertex 16972 -2.97497 18.8213 1.92062 {normal=(-0.935321 0.239872 0.248663)} Vertex 16973 -2.9441 18.3863 2.23541 {normal=(-0.969268 -0.099619 0.174240)} Vertex 16974 -2.82284 18.6601 2.51139 {normal=(-0.890503 0.268118 0.357736)} Vertex 16975 -2.79253 18.2102 2.76016 {normal=(-0.924425 -0.064117 0.350859)} Vertex 16976 -2.61601 18.4142 3.04614 {normal=(-0.817413 0.166692 0.543780)} Vertex 16977 -2.60516 17.9526 3.08709 {normal=(-0.847663 -0.180656 0.484476)} Vertex 16978 -2.39332 18.0611 3.36478 {normal=(-0.639969 -0.034546 0.754052)} Vertex 16979 -2.52746 18.9755 2.80701 {normal=(-0.765250 0.480289 0.424996)} Vertex 16980 -2.83201 19.1491 2.00599 {normal=(-0.879593 0.316452 0.348524)} Vertex 16981 -2.48533 19.434 2.48213 {normal=(-0.732870 -0.121967 0.655348)} Vertex 16982 -2.69353 19.5569 2.15955 {normal=(-0.913223 -0.026708 0.401696)} Vertex 16983 -2.36083 19.6423 2.68208 {normal=(-0.621091 -0.324826 0.704362)} Vertex 16984 -2.53632 19.8867 2.48426 {normal=(-0.883732 0.000986 0.463105)} Vertex 16985 -2.11836 19.8825 3.01548 {normal=(-0.478685 -0.542271 0.676184)} Vertex 16986 -2.26714 20.1549 2.98514 {normal=(-0.821949 -0.139789 0.541095)} Vertex 16987 -1.74433 19.9952 3.31374 {normal=(-0.298967 -0.769100 0.553949)} Vertex 16988 -1.8517 20.1595 3.4104 {normal=(-0.556618 -0.482288 0.656110)} Vertex 16989 -1.33403 19.9146 3.5064 {normal=(-0.505770 -0.832752 0.211612)} Vertex 16990 -1.38241 19.9906 3.6457 {normal=(-0.534853 -0.734595 0.412720)} Vertex 16991 -1.02102 19.7163 3.56737 {normal=(-0.525442 -0.818267 0.221111)} Vertex 16992 -1.03097 19.7937 3.7355 {normal=(-0.438112 -0.755359 0.481595)} Vertex 16993 -0.733121 19.5208 3.52807 {normal=(-0.379315 -0.672108 0.614563)} Vertex 16994 -0.713704 19.6675 3.72136 {normal=(-0.235799 -0.788909 0.565524)} Vertex 16995 -0.790252 19.441 3.47389 {normal=(0.334557 0.247747 0.903132)} Vertex 16996 -1.04695 19.6609 3.48744 {normal=(0.173145 0.244381 0.945167)} Vertex 16997 -1.33793 19.8271 3.44283 {normal=(-0.175154 0.336934 0.914616)} Vertex 16998 -1.6863 19.7655 3.28571 {normal=(-0.506182 -0.095981 0.848594)} Vertex 16999 -2.01045 19.6961 3.02165 {normal=(-0.754501 0.312255 0.570308)} Vertex 17000 -2.29409 19.178 2.97136 {normal=(-0.704682 0.545533 0.444901)} Vertex 17001 -1.64432 18.9408 3.53971 {normal=(-0.134616 0.284879 0.939129)} Vertex 17002 -0.124922 13.943 3.3665 {normal=(-0.107257 -0.923319 0.347914)} Vertex 17003 -0.188525 13.9034 2.98877 {normal=(-0.134047 -0.984053 -0.047763)} Vertex 17004 -0.258487 13.9883 2.55576 {normal=(-0.091884 -0.966196 -0.233103)} Vertex 17005 -0.332092 14.0146 3.4181 {normal=(-0.309793 -0.894627 0.309876)} Vertex 17006 -0.499777 13.9931 3.03438 {normal=(-0.370077 -0.918201 0.116180)} Vertex 17007 -0.702059 14.0752 2.59511 {normal=(-0.318743 -0.937956 -0.112910)} Vertex 17008 -0.746471 14.1265 3.14062 {normal=(-0.438901 -0.872251 0.206614)} Vertex 17009 -1.0839 14.2438 2.72044 {normal=(-0.507478 -0.847849 0.101719)} Vertex 17010 -0.883823 14.2802 3.30529 {normal=(-0.629605 -0.665946 0.385410)} Vertex 17011 -1.27808 14.5338 2.94629 {normal=(-0.767189 -0.461965 0.432037)} Vertex 17012 -0.524955 14.1997 3.67882 {normal=(-0.422858 -0.759553 0.476354)} Vertex 17013 -0.898989 14.4819 3.55597 {normal=(-0.726678 -0.477383 0.478733)} Vertex 17014 -1.20694 14.9049 3.33377 {normal=(-0.808004 -0.266973 0.520594)} Vertex 17015 -0.501637 14.3215 3.82259 {normal=(-0.362611 -0.521094 0.760442)} Vertex 17016 -0.763407 14.6664 3.80335 {normal=(-0.563457 -0.174781 0.796944)} Vertex 17017 -0.93135 15.0912 3.71244 {normal=(-0.583734 -0.013366 0.803269)} Vertex 17018 -0.368398 14.4274 3.94127 {normal=(-0.278993 -0.416043 0.852607)} Vertex 17019 -0.488115 14.7775 3.95899 {normal=(-0.375443 0.016682 0.920648)} Vertex 17020 -0.556699 15.1156 3.88924 {normal=(-0.299771 0.158501 0.937963)} Vertex 17021 -0.143395 14.498 3.99609 {normal=(0.014026 -0.362243 0.921405)} Vertex 17022 -0.168665 14.8382 4.04232 {normal=(-0.121648 0.081929 0.982502)} Vertex 17023 -0.18305 15.124 3.96918 {normal=(-0.114439 0.319201 0.938291)} Vertex 17024 -0.619587 15.4114 3.92578 {normal=(-0.269731 -0.548900 0.786408)} Vertex 17025 -0.212484 15.4453 4.04311 {normal=(-0.115856 -0.570516 0.809323)} Vertex 17026 -2.11933 17.2574 3.21925 {normal=(-0.318633 -0.423510 0.845742)} Vertex 17027 -2.2128 16.4068 2.91472 {normal=(-0.452909 -0.280626 0.832410)} Vertex 17028 -1.73049 16.0229 3.03243 {normal=(-0.231891 0.438830 0.852038)} Vertex 17029 -1.87123 16.4238 2.95458 {normal=(0.171520 -0.031823 0.977274)} Vertex 17030 -1.82772 16.9167 3.06372 {normal=(0.204065 -0.402293 0.889399)} Vertex 17031 -1.67326 17.1601 3.17002 {normal=(0.058987 -0.720909 0.663291)} Vertex 17032 -2.22131 17.622 3.36495 {normal=(-0.452850 -0.365163 0.805847)} Vertex 17033 -1.86819 17.7223 3.50762 {normal=(-0.174898 -0.320172 0.928011)} Vertex 17034 -1.38217 17.9636 3.65709 {normal=(-0.189929 -0.169209 0.963283)} Vertex 17035 -0.979722 18.1921 3.75488 {normal=(-0.210553 0.074044 0.972835)} Vertex 17036 -2.0459 18.1624 3.54247 {normal=(-0.312989 0.005005 0.943549)} Vertex 17037 -2.06462 18.5932 3.51364 {normal=(-0.389724 0.113748 0.905454)} Vertex 17038 -1.54174 18.3011 3.63569 {normal=(-0.155698 0.129272 0.976493)} Vertex 17039 -1.63876 18.6518 3.57402 {normal=(-0.071397 0.101086 0.991490)} Vertex 17040 -1.05014 18.463 3.67799 {normal=(-0.221216 0.299774 0.925988)} Vertex 17041 -1.07311 18.744 3.58185 {normal=(-0.107560 0.270525 0.951263)} Vertex 17042 -1.51794 15.5692 3.31465 {normal=(-0.683884 -0.332363 0.647661)} Vertex 17043 -1.44274 15.9041 3.29579 {normal=(-0.419576 0.721749 0.538475)} Vertex 17044 -1.43878 17.1792 3.3615 {normal=(-0.349970 -0.877180 0.325739)} Vertex 17045 -1.44665 17.4128 3.55517 {normal=(-0.684785 -0.048303 0.721080)} Vertex 17046 -1.06693 15.5952 3.73941 {normal=(-0.588056 -0.258429 0.762895)} Vertex 17047 -1.00795 15.9419 3.61611 {normal=(-0.350432 0.857411 0.376154)} Vertex 17048 -1.0419 17.1298 3.69521 {normal=(-0.294302 -0.929295 0.219571)} Vertex 17049 -0.861963 17.6129 4.05124 {normal=(-0.585445 0.308027 0.746960)} Vertex 17050 -0.658617 15.6741 4.01151 {normal=(-0.404418 -0.139575 0.897987)} Vertex 17051 -0.5737 15.9928 3.84832 {normal=(-0.236058 0.876016 0.418842)} Vertex 17052 -0.627859 17.0711 3.93653 {normal=(-0.221319 -0.954113 0.201110)} Vertex 17053 -0.71702 17.2924 4.18169 {normal=(-0.395920 -0.050243 0.910428)} Vertex 17054 -0.22925 15.7305 4.16453 {normal=(-0.191870 -0.088057 0.967085)} Vertex 17055 -0.19315 16.0079 3.97362 {normal=(-0.107701 0.889747 0.441085)} Vertex 17056 -0.22313 17.004 4.06237 {normal=(-0.171420 -0.959248 0.216839)} Vertex 17057 -0.308075 17.2183 4.30272 {normal=(-0.204342 -0.164567 0.960457)} Vertex 17058 -0.331531 17.4867 4.30086 {normal=(-0.346965 0.106160 0.923413)} Vertex 17059 -0.0945435 17.4182 4.36378 {normal=(-0.117155 -0.211309 0.961908)} Vertex 17060 -0.582535 17.7682 4.11885 {normal=(-0.229193 0.276168 0.925145)} Vertex 17061 -0.325329 17.7133 4.23989 {normal=(-0.515287 0.283232 0.790257)} Vertex 17062 -0.0884078 17.638 4.47841 {normal=(-0.279441 -0.599664 0.725253)} Vertex 17063 -0.262872 17.8822 4.42585 {normal=(-0.843862 -0.514960 -0.048779)} Vertex 17064 -0.118065 17.8633 4.7132 {normal=(-0.215300 -0.700251 0.665512)} Vertex 17065 -0.1576 18.1003 4.86612 {normal=(-0.250652 -0.208593 0.921420)} Vertex 17066 -0.397093 18.0861 4.67476 {normal=(-0.791297 -0.232892 0.545845)} Vertex 17067 -0.608157 18.0511 4.39368 {normal=(-0.652915 0.066036 0.747146)} Vertex 17068 -0.768787 17.9731 4.22467 {normal=(-0.809363 -0.136985 0.555531)} Vertex 17069 -0.806018 17.8574 4.0879 {normal=(-0.828328 -0.388652 0.379240)} Vertex 17070 -0.811409 18.1286 3.96273 {normal=(-0.872416 0.351378 -0.314893)} Vertex 17071 -0.767927 18.2443 4.07384 {normal=(-0.803174 0.562262 0.114672)} Vertex 17072 -0.646663 18.3209 4.1818 {normal=(-0.616202 0.687011 0.374583)} Vertex 17073 -0.526257 18.3701 4.34547 {normal=(-0.836205 0.458487 0.282045)} Vertex 17074 -0.402971 18.4471 4.61643 {normal=(-0.812326 0.415581 0.386710)} Vertex 17075 -0.161567 18.5131 4.79833 {normal=(-0.234880 0.556237 0.776362)} Vertex 17076 -0.667805 19.2451 3.44971 {normal=(0.476215 -0.197418 0.847667)} Vertex 17077 -0.595642 19.2848 3.46194 {normal=(-0.516638 -0.108775 0.816703)} Vertex 17078 -0.473911 19.5199 3.69349 {normal=(-0.646300 -0.415404 0.592578)} Vertex 17079 -0.396127 19.6864 3.88515 {normal=(-0.349046 -0.362977 0.828063)} Vertex 17080 -0.197062 19.8546 3.96547 {normal=(-0.142046 -0.133334 0.976689)} Vertex 17081 -0.698655 18.5614 3.79036 {normal=(-0.527218 0.265982 0.803609)} Vertex 17082 -0.673363 18.8337 3.69496 {normal=(-0.629707 0.352837 0.671929)} Vertex 17083 -0.47854 18.6655 4.08828 {normal=(-0.930278 0.185918 0.313055)} Vertex 17084 -0.458361 18.9659 3.97184 {normal=(-0.885902 0.265597 0.376060)} Vertex 17085 -0.420046 19.2625 3.79508 {normal=(-0.869893 0.286634 0.391287)} Vertex 17086 -0.3337 18.8013 4.38523 {normal=(-0.800835 0.354187 0.463062)} Vertex 17087 -0.302053 19.0748 4.22185 {normal=(-0.721048 0.438682 0.522565)} Vertex 17088 -0.275672 19.3806 3.99038 {normal=(-0.675419 0.371177 0.609542)} Vertex 17089 -0.128283 18.8663 4.52421 {normal=(-0.262244 0.573167 0.760392)} Vertex 17090 -0.110646 19.1256 4.33469 {normal=(-0.273533 0.588671 0.747683)} Vertex 17091 -0.106704 19.4412 4.06612 {normal=(-0.274498 0.517233 0.791181)} Vertex 17092 -2.52381 17.3875 2.46531 {normal=(-0.976596 -0.197313 -0.071039)} Vertex 17093 -2.50016 17.1786 2.50496 {normal=(-0.984505 -0.118476 -0.124271)} Vertex 17094 -2.4473 17.0472 2.17611 {normal=(-0.986252 -0.143812 0.028171)} Vertex 17095 -2.48412 16.8545 1.88066 {normal=(-0.951205 -0.040316 0.301144)} Vertex 17096 -2.60029 16.5597 1.57375 {normal=(-0.933660 -0.002787 0.356940)} Vertex 17097 -2.69166 16.2935 1.26259 {normal=(-0.932354 -0.210055 0.286250)} Vertex 17098 -2.67818 16.0148 0.938424 {normal=(-0.908087 -0.378904 0.169195)} Vertex 17099 -2.5197 15.6566 0.612823 {normal=(-0.827356 -0.557931 0.003928)} Vertex 17100 -2.31469 15.427 0.400347 {normal=(-0.766226 -0.610187 -0.172479)} Vertex 17101 -2.2096 15.1637 0.173804 {normal=(-0.946983 -0.245642 0.177008)} Vertex 17102 -2.3223 15.3729 -0.158779 {normal=(-0.970830 -0.143910 0.147521)} Vertex 17103 -2.42445 15.6854 0.120022 {normal=(-0.747631 -0.564787 -0.331637)} Vertex 17104 -2.64358 15.8813 0.376554 {normal=(-0.868904 -0.471615 -0.118046)} Vertex 17105 -2.78579 16.214 0.731207 {normal=(-0.938340 -0.320568 0.108824)} Vertex 17106 -2.77492 16.4753 1.09223 {normal=(-0.951187 -0.120289 0.276815)} Vertex 17107 -2.65023 16.7222 1.44817 {normal=(-0.925222 -0.002618 0.379336)} Vertex 17108 -2.52528 17.032 1.77862 {normal=(-0.952598 -0.044655 0.296779)} Vertex 17109 -2.49347 17.2833 2.04334 {normal=(-0.973000 -0.200292 0.089716)} Vertex 17110 -2.56817 17.5501 2.35034 {normal=(-0.936707 -0.347631 0.019440)} Vertex 17111 -2.70183 16.9025 1.32924 {normal=(-0.919130 -0.031044 0.392428)} Vertex 17112 -2.57671 17.1998 1.65531 {normal=(-0.932142 -0.080716 0.349783)} Vertex 17113 -2.54543 17.429 1.88771 {normal=(-0.943942 -0.283207 0.147495)} Vertex 17114 -2.63226 17.681 2.13139 {normal=(-0.903911 -0.422976 0.054620)} Vertex 17115 -2.77458 17.9842 2.45574 {normal=(-0.887757 -0.449253 0.084641)} Vertex 17116 -2.49185 16.1169 1.91102 {normal=(-0.937671 -0.024756 0.344299)} Vertex 17117 -2.42736 16.7998 2.29299 {normal=(-0.991947 -0.063395 -0.081846)} Vertex 17118 -2.44703 16.639 1.98829 {normal=(-0.959986 0.013317 0.270468)} Vertex 17119 -2.5569 16.3787 1.71295 {normal=(-0.947789 0.029412 0.316405)} Vertex 17120 -2.6238 16.1083 1.43024 {normal=(-0.974180 -0.140495 0.161531)} Vertex 17121 -2.58087 15.8331 1.14399 {normal=(-0.926490 -0.361805 0.072315)} Vertex 17122 -2.40361 15.5022 0.867415 {normal=(-0.809029 -0.585994 -0.001751)} Vertex 17123 -2.19727 15.2486 0.678687 {normal=(-0.773720 -0.631684 0.009080)} Vertex 17124 -2.06978 15.0061 0.477058 {normal=(-0.848398 -0.435773 0.270348)} Vertex 17125 -1.82799 14.8388 0.842357 {normal=(-0.726738 -0.624584 0.225938)} Vertex 17126 -2.02791 15.0487 1.04133 {normal=(-0.713529 -0.695552 -0.064449)} Vertex 17127 -2.26975 15.2993 1.2493 {normal=(-0.791156 -0.604438 -0.082242)} Vertex 17128 -2.46609 15.5733 1.47582 {normal=(-0.902287 -0.422520 -0.017347)} Vertex 17129 -2.53275 15.8366 1.68652 {normal=(-0.957054 -0.193071 0.203084)} Vertex 17130 -2.41554 16.3858 2.31913 {normal=(-0.995501 -0.073545 0.005182)} Vertex 17131 -2.39661 16.4192 2.66858 {normal=(-0.935651 -0.214593 0.242999)} Vertex 17132 -2.46274 16.9073 2.81276 {normal=(-0.938283 -0.181101 0.255462)} Vertex 17133 -2.50504 17.2526 2.87662 {normal=(-0.948555 -0.159827 0.233725)} Vertex 17134 -2.56173 17.5452 2.85975 {normal=(-0.954440 -0.234230 0.148924)} Vertex 17135 -2.66173 17.8095 2.73242 {normal=(-0.912248 -0.387404 0.109669)} Vertex 17136 -0.282578 14.4211 1.37473 {normal=(-0.071305 -0.936208 -0.066446)} Vertex 17137 -0.980044 14.4967 1.25168 {normal=(-0.146698 -0.925394 -0.057374)} Vertex 17138 -1.55708 14.6311 1.21098 {normal=(-0.520662 -0.827049 -0.088835)} Vertex 17139 -1.84879 14.8105 1.40151 {normal=(-0.638112 -0.744090 -0.191703)} Vertex 17140 -2.15897 15.0565 1.66783 {normal=(-0.762857 -0.621655 -0.171326)} Vertex 17141 -2.35815 15.465 2.02377 {normal=(-0.910985 -0.242745 0.322591)} Vertex 17142 -2.28316 15.8848 2.5702 {normal=(-0.881659 -0.290570 0.353601)} Vertex 17143 -0.299785 14.1131 2.14944 {normal=(-0.075509 -0.945390 -0.314101)} Vertex 17144 -0.290676 14.2598 1.75569 {normal=(-0.059316 -0.928888 -0.364883)} Vertex 17145 -0.846412 14.2067 2.13222 {normal=(-0.205022 -0.952651 -0.219866)} Vertex 17146 -0.888222 14.3353 1.67472 {normal=(-0.096453 -0.948260 -0.298590)} Vertex 17147 -1.33664 14.4187 1.65458 {normal=(-0.350396 -0.910218 -0.198187)} Vertex 17148 -1.3897 14.3725 2.29502 {normal=(-0.429664 -0.900895 0.033252)} Vertex 17149 -1.63848 14.5492 1.82627 {normal=(-0.538258 -0.826239 -0.155706)} Vertex 17150 -1.9319 14.7446 2.08329 {normal=(-0.714185 -0.679946 0.061169)} Vertex 17151 -1.61718 14.7803 2.63898 {normal=(-0.691975 -0.413840 0.590406)} Vertex 17152 -2.01612 15.0637 2.36886 {normal=(-0.746916 -0.410416 0.517466)} Vertex 17153 -1.54963 15.2075 3.01857 {normal=(-0.695928 -0.427142 0.575799)} Vertex 17154 -1.98828 15.4559 2.69925 {normal=(-0.717785 -0.428926 0.545853)} Vertex 17155 -0.852764 23.2377 1.51404 {normal=(-0.224099 0.882919 0.399249)} Vertex 17156 -0.914219 22.6664 2.37442 {normal=(-0.235449 0.718128 0.649024)} Vertex 17157 -0.257726 23.2498 1.70263 {normal=(-0.073428 0.889919 0.437765)} Vertex 17158 -0.253547 22.6108 2.59712 {normal=(-0.095195 0.670946 0.729590)} Vertex 17159 -0.119074 20.8595 3.75688 {normal=(0.036539 0.470217 0.880376)} Vertex 17160 -0.0888143 20.2714 4.01611 {normal=(-0.028634 0.167115 0.978412)} Vertex 17161 -0.289851 20.2593 3.98905 {normal=(-0.149389 0.184496 0.964193)} Vertex 17162 -0.305899 21.828 3.17195 {normal=(-0.081293 0.560948 0.822574)} Vertex 17163 -0.457169 20.9411 3.70066 {normal=(-0.036144 0.460992 0.884529)} Vertex 17164 -0.585942 20.3851 3.94687 {normal=(0.042873 0.329536 0.941987)} Vertex 17165 -0.782655 21.1678 3.51075 {normal=(-0.202271 0.533777 0.820682)} Vertex 17166 -0.950864 20.6572 3.7852 {normal=(-0.246289 0.471073 0.844386)} Vertex 17167 -0.998715 22.0669 2.86513 {normal=(-0.191358 0.583238 0.787816)} Vertex 17168 -1.16933 21.4467 3.2324 {normal=(-0.224960 0.503371 0.833388)} Vertex 17169 -1.31773 20.9225 3.47826 {normal=(-0.369344 0.452303 0.810978)} Vertex 17170 -1.50647 21.6389 3.01849 {normal=(-0.351802 0.497365 0.787677)} Vertex 17171 -1.67811 21.1204 3.2104 {normal=(-0.429413 0.400840 0.806452)} Vertex 17172 -2.12022 21.2248 2.74768 {normal=(-0.727184 0.383682 0.559449)} Vertex 17173 -2.55267 20.9498 1.99837 {normal=(-0.929843 0.173175 0.314125)} Vertex 17174 -1.98587 21.7122 2.57064 {normal=(-0.662725 0.440813 0.597767)} Vertex 17175 -2.56381 21.4541 1.78139 {normal=(-0.888850 0.192644 0.406600)} Vertex 17176 -1.86105 22.2043 2.29586 {normal=(-0.576673 0.548011 0.597250)} Vertex 17177 -2.56205 21.9503 1.46622 {normal=(-0.849072 0.350014 0.384413)} Vertex 17178 -1.75155 22.6489 1.90901 {normal=(-0.483318 0.698459 0.514749)} Vertex 17179 -2.52115 22.351 1.08605 {normal=(-0.803674 0.492843 0.317371)} Vertex 17180 -1.6519 23.1297 1.09356 {normal=(-0.404742 0.853134 0.305524)} Vertex 17181 -2.45458 22.7533 0.419882 {normal=(-0.732156 0.643517 0.175661)} Vertex 17182 -1.19721 23.3852 -0.358064 {normal=(-0.209930 0.965677 -0.104058)} Vertex 17183 -2.157 23.0117 -0.719956 {normal=(-0.540638 0.803595 -0.183686)} Vertex 17184 -0.705646 23.0426 -1.86668 {normal=(-0.161703 0.888792 -0.417038)} Vertex 17185 -1.65264 22.7442 -1.90592 {normal=(-0.410481 0.724240 -0.537868)} Vertex 17186 -2.77678 20.3902 1.42798 {normal=(-0.968037 0.105688 0.216671)} Vertex 17187 -2.86949 20.9175 1.0795 {normal=(-0.954544 0.005708 0.296669)} Vertex 17188 -2.97184 21.4488 0.623107 {normal=(-0.963979 0.131940 0.220484)} Vertex 17189 -2.98726 21.8135 0.230513 {normal=(-0.951724 0.244443 0.160466)} Vertex 17190 -2.93702 22.0758 -0.221361 {normal=(-0.925720 0.362128 -0.004031)} Vertex 17191 -2.73161 22.2615 -0.954402 {normal=(-0.836965 0.465901 -0.259861)} Vertex 17192 -2.33415 22.1231 -1.77948 {normal=(-0.692159 0.444551 -0.561626)} Vertex 17193 -1.55632 17.1567 -2.11328 {normal=(-0.647711 -0.070943 -0.757167)} Vertex 17194 -1.87447 16.2305 -1.82619 {normal=(-0.768326 0.069962 -0.627609)} Vertex 17195 -2.0274 16.6516 -1.6314 {normal=(-0.786758 -0.021790 -0.609466)} Vertex 17196 -2.29722 15.7487 -0.948984 {normal=(-0.971738 0.042340 -0.195385)} Vertex 17197 -2.3322 16.261 -0.849185 {normal=(-0.950277 -0.131932 -0.273831)} Vertex 17198 -2.54145 16.1417 -0.186653 {normal=(-0.784041 -0.369567 -0.492075)} Vertex 17199 -2.77275 16.3081 0.11059 {normal=(-0.898527 -0.319443 -0.285372)} Vertex 17200 -2.91601 16.5442 0.468142 {normal=(-0.952345 -0.281635 -0.026723)} Vertex 17201 -2.91256 16.8138 0.812675 {normal=(-0.935929 -0.123935 0.321403)} Vertex 17202 -2.79004 17.1462 1.17038 {normal=(-0.915185 -0.078999 0.394568)} Vertex 17203 -2.69079 17.4276 1.45841 {normal=(-0.910007 -0.130772 0.392295)} Vertex 17204 -2.66604 17.6048 1.6326 {normal=(-0.921438 -0.299285 0.238237)} Vertex 17205 -2.72498 17.8092 1.79346 {normal=(-0.908499 -0.405411 0.086770)} Vertex 17206 -2.86271 18.1026 2.00082 {normal=(-0.903927 -0.424499 0.019928)} Vertex 17207 -2.98568 17.8913 -0.729867 {normal=(0.223361 -0.651469 -0.707291)} Vertex 17208 -2.92363 17.7697 -0.407115 {normal=(-0.610204 -0.758797 -0.129360)} Vertex 17209 -3.05073 17.8544 -0.323711 {normal=(-0.588997 -0.778799 0.151280)} Vertex 17210 -3.17374 19.5499 -1.32311 {normal=(0.413231 0.185837 -0.882222)} Vertex 17211 -3.14237 19.0324 -1.32417 {normal=(0.454452 -0.092033 -0.880557)} Vertex 17212 -2.93984 19.0668 -1.23443 {normal=(-0.082319 -0.189516 -0.915934)} Vertex 17213 -2.88724 18.6658 -1.10108 {normal=(0.034362 -0.401268 -0.849655)} Vertex 17214 -3.0681 18.6164 -1.19748 {normal=(0.506164 -0.275619 -0.808127)} Vertex 17215 -3.01248 18.3008 -1.01109 {normal=(0.557320 -0.407184 -0.711279)} Vertex 17216 -2.85459 18.3418 -0.908826 {normal=(0.066839 -0.512306 -0.789789)} Vertex 17217 -3.18856 18.0146 -0.831326 {normal=(-0.625465 -0.447534 -0.557595)} Vertex 17218 -3.1788 18.2905 -1.02168 {normal=(-0.550596 -0.457399 -0.619508)} Vertex 17219 -3.23762 18.596 -1.21039 {normal=(-0.550349 -0.439950 -0.623501)} Vertex 17220 -3.32228 19.0375 -1.35066 {normal=(-0.578199 -0.191935 -0.711566)} Vertex 17221 -3.37551 19.5428 -1.35024 {normal=(-0.532068 0.125273 -0.770630)} Vertex 17222 -3.40064 19.9084 -1.13163 {normal=(-0.508529 0.601012 -0.556892)} Vertex 17223 -3.43492 20.0881 -0.776126 {normal=(-0.575203 0.748544 -0.242815)} Vertex 17224 -3.44476 20.0481 -0.405576 {normal=(-0.664884 0.629673 0.363649)} Vertex 17225 -3.11811 18.7982 -0.379816 {normal=(-0.962165 -0.072167 -0.240589)} Vertex 17226 -3.10458 18.9364 -0.497438 {normal=(-0.913632 -0.237386 -0.280037)} Vertex 17227 -3.14522 19.2039 -0.577936 {normal=(-0.875226 -0.085568 -0.446505)} Vertex 17228 -3.22874 19.3553 -0.442729 {normal=(-0.795898 -0.019662 -0.598001)} Vertex 17229 -3.30519 19.5456 -0.39695 {normal=(-0.665192 -0.271156 -0.688691)} Vertex 17230 -3.37788 19.7432 -0.543228 {normal=(-0.577783 -0.802208 -0.104218)} Vertex 17231 -3.16699 18.9268 -0.781684 {normal=(-0.623122 0.482419 0.593135)} Vertex 17232 -3.1767 19.0711 -0.855488 {normal=(-0.388197 -0.137045 0.878582)} Vertex 17233 -3.38904 19.729 -0.730884 {normal=(-0.615147 -0.755962 0.206924)} Vertex 17234 -3.15649 17.9952 -0.291568 {normal=(-0.794557 -0.275955 0.498413)} Vertex 17235 -3.324 19.0928 -1.04032 {normal=(-0.889452 -0.112840 0.436407)} Vertex 17236 -3.35988 19.4256 -1.00882 {normal=(-0.829594 -0.204461 0.513415)} Vertex 17237 -3.37576 19.6367 -0.901743 {normal=(-0.721619 -0.528300 0.433594)} Vertex 17238 -3.33356 19.4854 -0.676641 {normal=(-0.933177 0.011571 0.293054)} Vertex 17239 -3.23292 19.4276 -0.563517 {normal=(-0.782843 -0.379313 0.435173)} Vertex 17240 -3.29012 19.6321 -0.587337 {normal=(-0.919758 -0.140174 0.283334)} Vertex 17241 -3.31751 19.5606 -0.793124 {normal=(-0.980504 0.071010 -0.052442)} Vertex 17242 -3.33415 19.3848 -0.89315 {normal=(-0.951160 0.162081 -0.220479)} Vertex 17243 -3.3235 19.1032 -0.948897 {normal=(-0.923251 -0.162899 -0.307534)} Vertex 17244 -3.27613 18.8166 -0.888873 {normal=(-0.980902 -0.103690 0.025477)} Vertex 17245 -3.241 18.6061 -0.746059 {normal=(-0.980753 -0.014665 0.149671)} Vertex 17246 -3.13943 18.7559 -0.614259 {normal=(-0.830723 0.313466 0.445125)} Vertex 17247 -3.14207 18.619 -0.509158 {normal=(-0.916286 0.329194 0.204742)} Vertex 17248 -3.23401 18.4306 -0.685296 {normal=(-0.983872 0.091209 0.133397)} Vertex 17249 -3.29421 18.6816 -1.06253 {normal=(-0.966380 -0.138990 0.161120)} Vertex 17250 -3.37309 19.0652 -1.18584 {normal=(-0.971927 -0.147578 0.086462)} Vertex 17251 -3.44134 19.4761 -1.1791 {normal=(-0.965064 -0.168015 0.021338)} Vertex 17252 -3.49404 19.7607 -1.02005 {normal=(-0.948283 -0.174216 0.010893)} Vertex 17253 -3.51451 19.8964 -0.758446 {normal=(-0.947909 -0.174727 0.014314)} Vertex 17254 -3.5175 19.8942 -0.487364 {normal=(-0.947713 -0.173439 -0.001568)} Vertex 17255 -3.48032 19.7539 -0.287621 {normal=(-0.930955 -0.234607 0.109831)} Vertex 17256 -3.401 19.5145 -0.215568 {normal=(-0.928699 -0.275988 0.037398)} Vertex 17257 -3.3202 19.2696 -0.274422 {normal=(-0.924542 -0.285901 -0.128162)} Vertex 17258 -3.22783 19.0941 -0.382794 {normal=(-0.867484 -0.381007 -0.287586)} Vertex 17259 -3.38321 19.8201 -0.1289 {normal=(-0.597350 0.303564 0.719204)} Vertex 17260 -3.31183 19.5269 -0.041996 {normal=(-0.612888 -0.132959 0.758502)} Vertex 17261 -3.25266 19.2312 -0.119674 {normal=(-0.643883 -0.414209 0.632059)} Vertex 17262 1.19839 20.6779 2.10524 {normal=(0.103350 0.986239 0.095243)} Vertex 17263 1.40496 20.6442 2.05447 {normal=(0.252275 0.961946 0.058608)} Vertex 17264 1.60387 20.5777 2.00557 {normal=(0.395607 0.913994 0.023350)} Vertex 17265 1.79022 20.4799 1.95976 {normal=(0.529871 0.843543 -0.009615)} Vertex 17266 1.95942 20.3533 1.91816 {normal=(0.651879 0.752263 -0.039563)} Vertex 17267 2.10731 20.201 1.88181 {normal=(0.758493 0.642480 -0.065802)} Vertex 17268 2.23024 20.0268 1.8516 {normal=(0.847090 0.516889 -0.087638)} Vertex 17269 2.3252 19.8349 1.82826 {normal=(0.915530 0.378570 -0.104469)} Vertex 17270 2.38983 19.63 1.81237 {normal=(0.962108 0.230948 -0.115894)} Vertex 17271 2.42254 19.4173 1.80433 {normal=(0.985693 0.077613 -0.121676)} Vertex 17272 2.42254 19.2019 1.80434 {normal=(0.985693 -0.077630 -0.121675)} Vertex 17273 2.38983 18.9892 1.81239 {normal=(0.962109 -0.230951 -0.115888)} Vertex 17274 2.3252 18.7844 1.82828 {normal=(0.915528 -0.378581 -0.104440)} Vertex 17275 2.23025 18.5925 1.85163 {normal=(0.847080 -0.516913 -0.087610)} Vertex 17276 2.10732 18.4183 1.88186 {normal=(0.758477 -0.642501 -0.065825)} Vertex 17277 1.95943 18.266 1.91822 {normal=(0.651928 -0.752229 -0.039603)} Vertex 17278 1.79023 18.1394 1.95982 {normal=(0.529969 -0.843477 -0.009574)} Vertex 17279 1.60388 18.0416 2.00563 {normal=(0.395578 -0.913991 0.023520)} Vertex 17280 1.40497 17.975 2.05453 {normal=(0.252228 -0.961956 0.058801)} Vertex 17281 1.1984 17.9413 2.10532 {normal=(0.103392 -0.986220 0.095407)} Vertex 17282 0.989257 17.9413 2.15673 {normal=(-0.047370 -0.986220 0.132471)} Vertex 17283 0.782686 17.975 2.20752 {normal=(-0.196213 -0.961956 0.169049)} Vertex 17284 0.583777 18.0416 2.25641 {normal=(-0.339582 -0.913990 0.204256)} Vertex 17285 0.397427 18.1394 2.30222 {normal=(-0.473999 -0.843476 0.237246)} Vertex 17286 0.228224 18.266 2.34382 {normal=(-0.595981 -0.752228 0.267183)} Vertex 17287 0.080335 18.4183 2.38017 {normal=(-0.702544 -0.642500 0.293348)} Vertex 17288 -0.0425985 18.5925 2.41039 {normal=(-0.791149 -0.516912 0.315127)} Vertex 17289 -0.137549 18.7844 2.43372 {normal=(-0.859596 -0.378582 0.331951)} Vertex 17290 -0.20218 18.9892 2.4496 {normal=(-0.906179 -0.230949 0.343399)} Vertex 17291 -0.234899 19.2019 2.45764 {normal=(-0.929760 -0.077624 0.349201)} Vertex 17292 -0.234899 19.4173 2.45764 {normal=(-0.929761 0.077621 0.349195)} Vertex 17293 -0.202183 19.63 2.44959 {normal=(-0.906184 0.230950 0.343386)} Vertex 17294 -0.137555 19.8349 2.4337 {normal=(-0.859616 0.378565 0.331924)} Vertex 17295 -0.0426062 20.0268 2.41035 {normal=(-0.791176 0.516881 0.315104)} Vertex 17296 0.0803252 20.201 2.38012 {normal=(-0.702557 0.642479 0.293354)} Vertex 17297 0.228213 20.3533 2.34376 {normal=(-0.595917 0.752276 0.267165)} Vertex 17298 0.397415 20.4799 2.30216 {normal=(-0.473924 0.843552 0.237150)} Vertex 17299 0.583764 20.5777 2.25635 {normal=(-0.339685 0.913994 0.204118)} Vertex 17300 0.782672 20.6442 2.20745 {normal=(-0.196346 0.961946 0.168898)} Vertex 17301 0.989243 20.6779 2.15666 {normal=(-0.047411 0.986239 0.132306)} Vertex 17302 1.24691 20.6442 2.31373 {normal=(0.128980 0.963654 0.207001)} Vertex 17303 1.4484 20.6114 2.2642 {normal=(0.274488 0.939914 0.171221)} Vertex 17304 1.64241 20.5464 2.21651 {normal=(0.414585 0.893035 0.136796)} Vertex 17305 1.82417 20.4511 2.17182 {normal=(0.545797 0.824180 0.104590)} Vertex 17306 1.98921 20.3276 2.13125 {normal=(0.664972 0.735013 0.075324)} Vertex 17307 2.13345 20.1791 2.0958 {normal=(0.769116 0.627778 0.049700)} Vertex 17308 2.25336 20.0091 2.06632 {normal=(0.855681 0.505080 0.028377)} Vertex 17309 2.34597 19.822 2.04356 {normal=(0.922567 0.369906 0.011920)} Vertex 17310 2.40901 19.6222 2.02807 {normal=(0.968085 0.225646 0.000747)} Vertex 17311 2.44092 19.4146 2.02023 {normal=(0.991126 0.075833 -0.004902)} Vertex 17312 2.44092 19.2046 2.02023 {normal=(0.991125 -0.075844 -0.004899)} Vertex 17313 2.40901 18.9971 2.02808 {normal=(0.968081 -0.225654 0.000764)} Vertex 17314 2.34598 18.7973 2.04359 {normal=(0.922569 -0.369903 0.011946)} Vertex 17315 2.25337 18.6101 2.06636 {normal=(0.855694 -0.505057 0.028374)} Vertex 17316 2.13346 18.4402 2.09584 {normal=(0.769099 -0.627791 0.049663)} Vertex 17317 1.98922 18.2917 2.13131 {normal=(0.664963 -0.735022 0.075314)} Vertex 17318 1.82418 18.1682 2.17188 {normal=(0.545831 -0.824148 0.104660)} Vertex 17319 1.64242 18.0728 2.21657 {normal=(0.414566 -0.893023 0.136918)} Vertex 17320 1.44841 18.0079 2.26427 {normal=(0.274447 -0.939913 0.171329)} Vertex 17321 1.24693 17.9751 2.3138 {normal=(0.128990 -0.963634 0.207100)} Vertex 17322 1.04293 17.9751 2.36395 {normal=(-0.018263 -0.963634 0.243300)} Vertex 17323 0.841445 18.0079 2.41348 {normal=(-0.163727 -0.939914 0.279048)} Vertex 17324 0.647434 18.0728 2.46117 {normal=(-0.303829 -0.893024 0.313527)} Vertex 17325 0.465672 18.1682 2.50586 {normal=(-0.435089 -0.824149 0.345805)} Vertex 17326 0.300636 18.2917 2.54642 {normal=(-0.554251 -0.735017 0.375047)} Vertex 17327 0.156388 18.4402 2.58188 {normal=(-0.658404 -0.627780 0.400617)} Vertex 17328 0.036482 18.6102 2.61136 {normal=(-0.744992 -0.505055 0.421903)} Vertex 17329 -0.0561313 18.7973 2.63412 {normal=(-0.811867 -0.369908 0.438341)} Vertex 17330 -0.11917 18.9971 2.64961 {normal=(-0.857381 -0.225657 0.449531)} Vertex 17331 -0.151083 19.2046 2.65745 {normal=(-0.880425 -0.075841 0.455196)} Vertex 17332 -0.151085 19.4146 2.65744 {normal=(-0.880428 0.075838 0.455191)} Vertex 17333 -0.119174 19.6222 2.6496 {normal=(-0.857395 0.225649 0.449511)} Vertex 17334 -0.0561367 19.8219 2.63409 {normal=(-0.811882 0.369909 0.438311)} Vertex 17335 0.036474 20.0091 2.61132 {normal=(-0.745006 0.505059 0.421883)} Vertex 17336 0.156378 20.1791 2.58184 {normal=(-0.658426 0.627763 0.400616)} Vertex 17337 0.300624 20.3276 2.54637 {normal=(-0.554230 0.735043 0.375015)} Vertex 17338 0.46566 20.4511 2.5058 {normal=(-0.435066 0.824204 0.345709)} Vertex 17339 0.647421 20.5464 2.46111 {normal=(-0.303903 0.893036 0.313424)} Vertex 17340 0.841432 20.6114 2.41341 {normal=(-0.163816 0.939915 0.278969)} Vertex 17341 1.04291 20.6442 2.36388 {normal=(-0.018302 0.963654 0.243207)} Vertex 17342 1.29103 20.5777 2.51512 {normal=(0.160749 0.915980 0.351849)} Vertex 17343 1.48247 20.5465 2.46806 {normal=(0.299076 0.893390 0.317898)} Vertex 17344 1.6668 20.4848 2.42274 {normal=(0.432232 0.848820 0.285201)} Vertex 17345 1.8395 20.3941 2.3803 {normal=(0.556947 0.783376 0.254546)} Vertex 17346 1.9963 20.2768 2.34175 {normal=(0.670194 0.698653 0.226693)} Vertex 17347 2.13336 20.1357 2.30805 {normal=(0.769167 0.596748 0.202341)} Vertex 17348 2.24729 19.9743 2.28005 {normal=(0.851464 0.480107 0.182105)} Vertex 17349 2.33528 19.7964 2.25843 {normal=(0.915047 0.351609 0.166482)} Vertex 17350 2.39517 19.6066 2.24371 {normal=(0.958316 0.214476 0.155849)} Vertex 17351 2.4255 19.4094 2.23626 {normal=(0.980217 0.072086 0.150471)} Vertex 17352 2.4255 19.2099 2.23626 {normal=(0.980215 -0.072072 0.150484)} Vertex 17353 2.39518 19.0127 2.24372 {normal=(0.958311 -0.214476 0.155881)} Vertex 17354 2.33529 18.8229 2.25845 {normal=(0.915050 -0.351586 0.166522)} Vertex 17355 2.24729 18.645 2.28009 {normal=(0.851485 -0.480047 0.182152)} Vertex 17356 2.13337 18.4835 2.3081 {normal=(0.769159 -0.596723 0.202400)} Vertex 17357 1.99631 18.3424 2.34179 {normal=(0.670162 -0.698663 0.226752)} Vertex 17358 1.83951 18.2252 2.38035 {normal=(0.556944 -0.783365 0.254598)} Vertex 17359 1.66681 18.1345 2.42281 {normal=(0.432234 -0.848807 0.285242)} Vertex 17360 1.48248 18.0728 2.46813 {normal=(0.299031 -0.893389 0.317940)} Vertex 17361 1.29104 18.0416 2.51519 {normal=(0.160715 -0.915971 0.351905)} Vertex 17362 1.09722 18.0416 2.56284 {normal=(0.020768 -0.915970 0.386310)} Vertex 17363 0.905782 18.0728 2.6099 {normal=(-0.117531 -0.893388 0.420350)} Vertex 17364 0.721445 18.1345 2.65522 {normal=(-0.250712 -0.848806 0.453139)} Vertex 17365 0.548747 18.2252 2.69767 {normal=(-0.375413 -0.783366 0.483808)} Vertex 17366 0.391941 18.3424 2.73621 {normal=(-0.488649 -0.698643 0.511645)} Vertex 17367 0.254887 18.4836 2.76991 {normal=(-0.587651 -0.596690 0.535987)} Vertex 17368 0.14096 18.6451 2.79791 {normal=(-0.669957 -0.480050 0.556208)} Vertex 17369 0.0529655 18.8229 2.81954 {normal=(-0.733528 -0.351604 0.571813)} Vertex 17370 -0.00693 19.0127 2.83426 {normal=(-0.776802 -0.214477 0.582439)} Vertex 17371 -0.0372512 19.2099 2.8417 {normal=(-0.798709 -0.072068 0.587817)} Vertex 17372 -0.0372528 19.4094 2.8417 {normal=(-0.798716 0.072087 0.587808)} Vertex 17373 -0.00693325 19.6066 2.83424 {normal=(-0.776819 0.214477 0.582417)} Vertex 17374 0.0529603 19.7964 2.81951 {normal=(-0.733551 0.351617 0.571773)} Vertex 17375 0.140953 19.9743 2.79787 {normal=(-0.669983 0.480087 0.556147)} Vertex 17376 0.254878 20.1357 2.76986 {normal=(-0.587675 0.596718 0.535933)} Vertex 17377 0.391931 20.2769 2.73617 {normal=(-0.488649 0.698666 0.511609)} Vertex 17378 0.548736 20.3941 2.69762 {normal=(-0.375410 0.783395 0.483761)} Vertex 17379 0.721432 20.4848 2.65515 {normal=(-0.250733 0.848821 0.453096)} Vertex 17380 0.905768 20.5465 2.60984 {normal=(-0.117594 0.893390 0.420329)} Vertex 17381 1.0972 20.5777 2.56277 {normal=(0.020715 0.915980 0.386274)} Vertex 17382 1.32965 20.4799 2.70447 {normal=(0.188627 0.845841 0.488244)} Vertex 17383 1.50633 20.4511 2.66103 {normal=(0.316364 0.825004 0.456846)} Vertex 17384 1.67645 20.3941 2.61921 {normal=(0.439297 0.783864 0.426627)} Vertex 17385 1.83583 20.3105 2.58003 {normal=(0.554456 0.723432 0.398314)} Vertex 17386 1.98055 20.2022 2.54446 {normal=(0.659021 0.645207 0.372598)} Vertex 17387 2.10703 20.072 2.51337 {normal=(0.750418 0.551102 0.350119)} Vertex 17388 2.21217 19.923 2.48752 {normal=(0.826433 0.443373 0.331432)} Vertex 17389 2.29338 19.7589 2.46756 {normal=(0.885156 0.324708 0.317000)} Vertex 17390 2.34866 19.5837 2.45398 {normal=(0.925111 0.198077 0.307181)} Vertex 17391 2.37665 19.4018 2.44711 {normal=(0.945335 0.066590 0.302216)} Vertex 17392 2.37665 19.2176 2.44711 {normal=(0.945335 -0.066546 0.302226)} Vertex 17393 2.34866 19.0356 2.45399 {normal=(0.925101 -0.198071 0.307214)} Vertex 17394 2.29339 18.8604 2.46759 {normal=(0.885149 -0.324679 0.317058)} Vertex 17395 2.21218 18.6963 2.48756 {normal=(0.826455 -0.443286 0.331502)} Vertex 17396 2.10704 18.5473 2.5134 {normal=(0.750435 -0.551039 0.350185)} Vertex 17397 1.98055 18.417 2.5445 {normal=(0.659017 -0.645188 0.372643)} Vertex 17398 1.83584 18.3088 2.58009 {normal=(0.554448 -0.723419 0.398345)} Vertex 17399 1.67646 18.2252 2.61927 {normal=(0.439301 -0.783837 0.426667)} Vertex 17400 1.50634 18.1682 2.6611 {normal=(0.316343 -0.824983 0.456886)} Vertex 17401 1.32966 18.1394 2.70453 {normal=(0.188592 -0.845850 0.488248)} Vertex 17402 1.15079 18.1394 2.7485 {normal=(0.059285 -0.845851 0.520037)} Vertex 17403 0.974112 18.1682 2.79193 {normal=(-0.068447 -0.824985 0.551481)} Vertex 17404 0.803988 18.2251 2.83376 {normal=(-0.191400 -0.783838 0.581717)} Vertex 17405 0.644607 18.3088 2.87294 {normal=(-0.306554 -0.723418 0.610015)} Vertex 17406 0.499892 18.417 2.90851 {normal=(-0.411141 -0.645170 0.635728)} Vertex 17407 0.373406 18.5473 2.9396 {normal=(-0.502564 -0.551018 0.658210)} Vertex 17408 0.268264 18.6963 2.96545 {normal=(-0.578555 -0.443304 0.676896)} Vertex 17409 0.187055 18.8604 2.9854 {normal=(-0.637244 -0.324699 0.691317)} Vertex 17410 0.131778 19.0356 2.99899 {normal=(-0.677211 -0.198067 0.701126)} Vertex 17411 0.103795 19.2176 3.00587 {normal=(-0.697448 -0.066539 0.706091)} Vertex 17412 0.103794 19.4018 3.00586 {normal=(-0.697452 0.066591 0.706084)} Vertex 17413 0.131775 19.5837 2.99898 {normal=(-0.677230 0.198076 0.701107)} Vertex 17414 0.18705 19.7589 2.98538 {normal=(-0.637272 0.324715 0.691280)} Vertex 17415 0.268258 19.923 2.96541 {normal=(-0.578554 0.443370 0.676847)} Vertex 17416 0.373398 20.072 2.93956 {normal=(-0.502540 0.551079 0.658175)} Vertex 17417 0.499883 20.2022 2.90846 {normal=(-0.411124 0.645198 0.635711)} Vertex 17418 0.644597 20.3105 2.87289 {normal=(-0.306559 0.723436 0.609995)} Vertex 17419 0.803977 20.3941 2.8337 {normal=(-0.191416 0.783861 0.581684)} Vertex 17420 0.974099 20.4511 2.79188 {normal=(-0.068483 0.824999 0.551463)} Vertex 17421 1.15078 20.4799 2.74844 {normal=(0.059259 0.845839 0.520051)} Vertex 17422 1.36183 20.3533 2.8771 {normal=(0.211829 0.755009 0.612716)} Vertex 17423 1.51939 20.3276 2.83837 {normal=(0.325827 0.736457 0.584636)} Vertex 17424 1.67111 20.2768 2.80107 {normal=(0.435612 0.699739 0.557618)} Vertex 17425 1.81325 20.2022 2.76613 {normal=(0.538426 0.645779 0.532357)} Vertex 17426 1.94231 20.1057 2.7344 {normal=(0.631737 0.575954 0.509431)} Vertex 17427 2.05512 19.9895 2.70667 {normal=(0.713324 0.491933 0.489386)} Vertex 17428 2.14889 19.8567 2.68362 {normal=(0.781174 0.395772 0.472712)} Vertex 17429 2.22131 19.7103 2.66582 {normal=(0.833588 0.289857 0.459824)} Vertex 17430 2.27061 19.5541 2.65371 {normal=(0.869256 0.176820 0.451059)} Vertex 17431 2.29557 19.3918 2.64758 {normal=(0.887310 0.059449 0.446625)} Vertex 17432 2.29557 19.2275 2.64758 {normal=(0.887312 -0.059402 0.446626)} Vertex 17433 2.27061 19.0653 2.65372 {normal=(0.869251 -0.176816 0.451071)} Vertex 17434 2.22131 18.909 2.66584 {normal=(0.833589 -0.289833 0.459849)} Vertex 17435 2.14889 18.7627 2.68365 {normal=(0.781208 -0.395685 0.472736)} Vertex 17436 2.05512 18.6298 2.7067 {normal=(0.713365 -0.491855 0.489403)} Vertex 17437 1.94232 18.5136 2.73444 {normal=(0.631747 -0.575918 0.509454)} Vertex 17438 1.81326 18.417 2.76617 {normal=(0.538373 -0.645763 0.532422)} Vertex 17439 1.67112 18.3425 2.80112 {normal=(0.435587 -0.699681 0.557715)} Vertex 17440 1.51941 18.2917 2.83841 {normal=(0.325893 -0.736382 0.584692)} Vertex 17441 1.36184 18.266 2.87715 {normal=(0.211874 -0.754995 0.612711)} Vertex 17442 1.20232 18.266 2.91637 {normal=(0.096369 -0.754997 0.641104)} Vertex 17443 1.04475 18.2917 2.95511 {normal=(-0.017654 -0.736387 0.669143)} Vertex 17444 0.89303 18.3425 2.9924 {normal=(-0.127356 -0.699682 0.696103)} Vertex 17445 0.750892 18.417 3.02734 {normal=(-0.230153 -0.645759 0.721355)} Vertex 17446 0.621831 18.5136 3.05906 {normal=(-0.323536 -0.575913 0.744295)} Vertex 17447 0.509028 18.6297 3.08679 {normal=(-0.405154 -0.491857 0.764362)} Vertex 17448 0.41526 18.7627 3.10984 {normal=(-0.472982 -0.395693 0.781052)} Vertex 17449 0.342835 18.909 3.12765 {normal=(-0.525356 -0.289834 0.793933)} Vertex 17450 0.293538 19.0653 3.13976 {normal=(-0.561021 -0.176812 0.802694)} Vertex 17451 0.268581 19.2275 3.1459 {normal=(-0.579086 -0.059399 0.807128)} Vertex 17452 0.26858 19.3918 3.14589 {normal=(-0.579090 0.059449 0.807124)} Vertex 17453 0.293535 19.5541 3.13975 {normal=(-0.561040 0.176819 0.802680)} Vertex 17454 0.342831 19.7103 3.12762 {normal=(-0.525367 0.289867 0.793908)} Vertex 17455 0.415254 19.8567 3.10981 {normal=(-0.472953 0.395783 0.781025)} Vertex 17456 0.50902 19.9895 3.08676 {normal=(-0.405116 0.491929 0.764342)} Vertex 17457 0.621823 20.1057 3.05903 {normal=(-0.323531 0.575946 0.744276)} Vertex 17458 0.750883 20.2023 3.0273 {normal=(-0.230214 0.645778 0.721323)} Vertex 17459 0.893021 20.2768 2.99235 {normal=(-0.127410 0.699733 0.696039)} Vertex 17460 1.04474 20.3276 2.95505 {normal=(-0.017618 0.736448 0.669078)} Vertex 17461 1.2023 20.3533 2.91632 {normal=(0.096404 0.755005 0.641097)} Vertex 17462 1.38678 20.201 3.02877 {normal=(0.229821 0.645721 0.722157)} Vertex 17463 1.52135 20.1791 2.99569 {normal=(0.327301 0.629842 0.698174)} Vertex 17464 1.65093 20.1357 2.96384 {normal=(0.421249 0.598421 0.675062)} Vertex 17465 1.77233 20.072 2.93399 {normal=(0.509206 0.552276 0.653438)} Vertex 17466 1.88256 19.9896 2.90689 {normal=(0.588999 0.492557 0.633834)} Vertex 17467 1.9789 19.8904 2.88321 {normal=(0.658768 0.420694 0.616700)} Vertex 17468 2.05898 19.7768 2.86353 {normal=(0.716780 0.338454 0.602455)} Vertex 17469 2.12084 19.6518 2.84832 {normal=(0.761594 0.247879 0.591445)} Vertex 17470 2.16295 19.5184 2.83797 {normal=(0.792098 0.151216 0.583945)} Vertex 17471 2.18426 19.3798 2.83274 {normal=(0.807540 0.050843 0.580149)} Vertex 17472 2.18426 19.2395 2.83274 {normal=(0.807544 -0.050782 0.580148)} Vertex 17473 2.16295 19.1009 2.83799 {normal=(0.792105 -0.151195 0.583938)} Vertex 17474 2.12084 18.9675 2.84834 {normal=(0.761608 -0.247878 0.591429)} Vertex 17475 2.05899 18.8425 2.86355 {normal=(0.716809 -0.338406 0.602451)} Vertex 17476 1.9789 18.729 2.88324 {normal=(0.658804 -0.420608 0.616719)} Vertex 17477 1.88256 18.6297 2.90693 {normal=(0.588991 -0.492503 0.633877)} Vertex 17478 1.77233 18.5473 2.93403 {normal=(0.509116 -0.552266 0.653514)} Vertex 17479 1.65093 18.4836 2.96387 {normal=(0.421233 -0.598383 0.675122)} Vertex 17480 1.52135 18.4403 2.99573 {normal=(0.327431 -0.629773 0.698183)} Vertex 17481 1.38678 18.4183 3.02882 {normal=(0.229919 -0.645673 0.722165)} Vertex 17482 1.25054 18.4183 3.06231 {normal=(0.131137 -0.645671 0.746450)} Vertex 17483 1.11596 18.4403 3.0954 {normal=(0.033608 -0.629771 0.770417)} Vertex 17484 0.986382 18.4836 3.12725 {normal=(-0.060205 -0.598377 0.793478)} Vertex 17485 0.864983 18.5473 3.15709 {normal=(-0.148092 -0.552259 0.815081)} Vertex 17486 0.754755 18.6297 3.18418 {normal=(-0.227954 -0.492503 0.834715)} Vertex 17487 0.658412 18.729 3.20786 {normal=(-0.297762 -0.420599 0.851885)} Vertex 17488 0.578326 18.8425 3.22755 {normal=(-0.355770 -0.338388 0.866142)} Vertex 17489 0.51647 18.9675 3.24275 {normal=(-0.400567 -0.247872 0.877147)} Vertex 17490 0.474366 19.1009 3.2531 {normal=(-0.431063 -0.151199 0.884646)} Vertex 17491 0.453051 19.2395 3.25834 {normal=(-0.446505 -0.050790 0.888443)} Vertex 17492 0.453051 19.3798 3.25834 {normal=(-0.446508 0.050834 0.888440)} Vertex 17493 0.474364 19.5184 3.25309 {normal=(-0.431067 0.151214 0.884642)} Vertex 17494 0.516466 19.6518 3.24274 {normal=(-0.400561 0.247892 0.877141)} Vertex 17495 0.578321 19.7768 3.22753 {normal=(-0.355750 0.338469 0.866116)} Vertex 17496 0.658406 19.8904 3.20784 {normal=(-0.297750 0.420699 0.851843)} Vertex 17497 0.754748 19.9895 3.18415 {normal=(-0.227987 0.492558 0.834678)} Vertex 17498 0.864975 20.072 3.15705 {normal=(-0.148186 0.552284 0.815048)} Vertex 17499 0.986373 20.1357 3.1272 {normal=(-0.060226 0.598429 0.793426)} Vertex 17500 1.11595 20.1791 3.09535 {normal=(0.033715 0.629840 0.770350)} Vertex 17501 1.25052 20.201 3.06226 {normal=(0.131187 0.645719 0.746406)} Vertex 17502 1.40387 20.0268 3.15574 {normal=(0.242243 0.520526 0.813973)} Vertex 17503 1.51214 20.0091 3.12913 {normal=(0.320822 0.507694 0.794667)} Vertex 17504 1.61639 19.9743 3.1035 {normal=(0.396541 0.482364 0.776051)} Vertex 17505 1.71406 19.923 3.07949 {normal=(0.467442 0.445186 0.758609)} Vertex 17506 1.80273 19.8567 3.05769 {normal=(0.531796 0.397047 0.742784)} Vertex 17507 1.88024 19.7768 3.03864 {normal=(0.588044 0.339109 0.728966)} Vertex 17508 1.94468 19.6855 3.0228 {normal=(0.634801 0.272817 0.717482)} Vertex 17509 1.99444 19.5849 3.01057 {normal=(0.670924 0.199813 0.708604)} Vertex 17510 2.02832 19.4776 3.00224 {normal=(0.695506 0.121906 0.702561)} Vertex 17511 2.04546 19.3661 2.99803 {normal=(0.707952 0.041000 0.699504)} Vertex 17512 2.04546 19.2533 2.99803 {normal=(0.707954 -0.040918 0.699506)} Vertex 17513 2.02832 19.1417 3.00225 {normal=(0.695510 -0.121853 0.702564)} Vertex 17514 1.99444 19.0344 3.01058 {normal=(0.670920 -0.199811 0.708604)} Vertex 17515 1.94468 18.9338 3.02282 {normal=(0.634794 -0.272816 0.717488)} Vertex 17516 1.88025 18.8425 3.03866 {normal=(0.588049 -0.339048 0.728992)} Vertex 17517 1.80274 18.7627 3.05772 {normal=(0.531799 -0.396966 0.742823)} Vertex 17518 1.71406 18.6963 3.07952 {normal=(0.467431 -0.445164 0.758630)} Vertex 17519 1.61639 18.6451 3.10353 {normal=(0.396570 -0.482376 0.776034)} Vertex 17520 1.51214 18.6102 3.12916 {normal=(0.320890 -0.507679 0.794649)} Vertex 17521 1.40387 18.5925 3.15578 {normal=(0.242289 -0.520458 0.814000)} Vertex 17522 1.29426 18.5925 3.18273 {normal=(0.162748 -0.520454 0.833557)} Vertex 17523 1.18599 18.6102 3.20934 {normal=(0.084128 -0.507663 0.852863)} Vertex 17524 1.08174 18.6451 3.23497 {normal=(0.008440 -0.482354 0.871462)} Vertex 17525 0.984073 18.6963 3.25898 {normal=(-0.062403 -0.445155 0.888889)} Vertex 17526 0.895391 18.7627 3.28078 {normal=(-0.126761 -0.396972 0.904723)} Vertex 17527 0.81788 18.8425 3.29983 {normal=(-0.183031 -0.339028 0.918554)} Vertex 17528 0.753449 18.9338 3.31567 {normal=(-0.229781 -0.272786 0.930039)} Vertex 17529 0.703684 19.0344 3.3279 {normal=(-0.265892 -0.199814 0.938911)} Vertex 17530 0.669811 19.1417 3.33622 {normal=(-0.290486 -0.121866 0.944958)} Vertex 17531 0.652662 19.2533 3.34044 {normal=(-0.302934 -0.040935 0.948018)} Vertex 17532 0.652662 19.3661 3.34044 {normal=(-0.302933 0.040979 0.948016)} Vertex 17533 0.669809 19.4776 3.33622 {normal=(-0.290483 0.121906 0.944955)} Vertex 17534 0.703682 19.5849 3.32789 {normal=(-0.265893 0.199827 0.938910)} Vertex 17535 0.753446 19.6855 3.31565 {normal=(-0.229776 0.272824 0.930027)} Vertex 17536 0.817876 19.7768 3.29981 {normal=(-0.183034 0.339109 0.918523)} Vertex 17537 0.895384 19.8567 3.28075 {normal=(-0.126794 0.397050 0.904685)} Vertex 17538 0.984066 19.923 3.25895 {normal=(-0.062423 0.445197 0.888864)} Vertex 17539 1.08174 19.9743 3.23494 {normal=(0.008497 0.482383 0.871441)} Vertex 17540 1.18599 20.0091 3.2093 {normal=(0.084200 0.507708 0.852831)} Vertex 17541 1.29425 20.0268 3.18268 {normal=(0.162750 0.520530 0.833513)} Vertex 17542 1.41269 19.8349 3.25489 {normal=(0.248751 0.382479 0.885882)} Vertex 17543 1.49199 19.822 3.23539 {normal=(0.306479 0.373067 0.871692)} Vertex 17544 1.56834 19.7964 3.21662 {normal=(0.362108 0.354458 0.858017)} Vertex 17545 1.63987 19.7589 3.19904 {normal=(0.414201 0.327134 0.845207)} Vertex 17546 1.70482 19.7103 3.18307 {normal=(0.461509 0.291748 0.833572)} Vertex 17547 1.76159 19.6519 3.16912 {normal=(0.502847 0.249171 0.823413)} Vertex 17548 1.80878 19.5849 3.15752 {normal=(0.537194 0.200474 0.814975)} Vertex 17549 1.84523 19.5113 3.14856 {normal=(0.563745 0.146836 0.808444)} Vertex 17550 1.87004 19.4327 3.14246 {normal=(0.581812 0.089590 0.804003)} Vertex 17551 1.8826 19.351 3.13938 {normal=(0.590950 0.030146 0.801761)} Vertex 17552 1.8826 19.2684 3.13938 {normal=(0.590951 -0.030062 0.801763)} Vertex 17553 1.87004 19.1867 3.14247 {normal=(0.581806 -0.089526 0.804015)} Vertex 17554 1.84523 19.108 3.14857 {normal=(0.563731 -0.146805 0.808459)} Vertex 17555 1.80879 19.0344 3.15753 {normal=(0.537175 -0.200471 0.814988)} Vertex 17556 1.7616 18.9675 3.16914 {normal=(0.502836 -0.249128 0.823435)} Vertex 17557 1.70483 18.909 3.18309 {normal=(0.461547 -0.291664 0.833583)} Vertex 17558 1.63988 18.8604 3.19906 {normal=(0.414265 -0.327075 0.845196)} Vertex 17559 1.56835 18.8229 3.21665 {normal=(0.362129 -0.354438 0.858009)} Vertex 17560 1.49199 18.7974 3.23542 {normal=(0.306458 -0.373029 0.871711)} Vertex 17561 1.41269 18.7845 3.25492 {normal=(0.248733 -0.382415 0.885917)} Vertex 17562 1.33241 18.7845 3.27465 {normal=(0.190367 -0.382414 0.900266)} Vertex 17563 1.25311 18.7973 3.29415 {normal=(0.132612 -0.373012 0.914453)} Vertex 17564 1.17676 18.8229 3.31292 {normal=(0.076952 -0.354398 0.928131)} Vertex 17565 1.10523 18.8604 3.3305 {normal=(0.024878 -0.327071 0.940934)} Vertex 17566 1.04028 18.909 3.34647 {normal=(-0.022410 -0.291693 0.952558)} Vertex 17567 0.983506 18.9675 3.36042 {normal=(-0.063749 -0.249114 0.962720)} Vertex 17568 0.936315 19.0344 3.37202 {normal=(-0.098101 -0.200442 0.971160)} Vertex 17569 0.899868 19.1081 3.38098 {normal=(-0.124631 -0.146811 0.977684)} Vertex 17570 0.875059 19.1867 3.38708 {normal=(-0.142701 -0.089532 0.982126)} Vertex 17571 0.862499 19.2684 3.39016 {normal=(-0.151852 -0.030076 0.984372)} Vertex 17572 0.862498 19.351 3.39016 {normal=(-0.151847 0.030118 0.984370)} Vertex 17573 0.875057 19.4327 3.38707 {normal=(-0.142697 0.089599 0.982120)} Vertex 17574 0.899866 19.5113 3.38097 {normal=(-0.124625 0.146857 0.977677)} Vertex 17575 0.936314 19.5849 3.37201 {normal=(-0.098096 0.200465 0.971156)} Vertex 17576 0.983502 19.6518 3.3604 {normal=(-0.063762 0.249154 0.962708)} Vertex 17577 1.04027 19.7103 3.34645 {normal=(-0.022411 0.291747 0.952538)} Vertex 17578 1.10523 19.7589 3.33048 {normal=(0.024910 0.327136 0.940911)} Vertex 17579 1.17676 19.7964 3.31289 {normal=(0.077002 0.354463 0.928106)} Vertex 17580 1.25311 19.822 3.29412 {normal=(0.132616 0.373077 0.914429)} Vertex 17581 1.33241 19.8349 3.27463 {normal=(0.190348 0.382484 0.900236)} Vertex 17582 1.41302 19.6301 3.32377 {normal=(0.249140 0.234989 0.936069)} Vertex 17583 1.4614 19.6222 3.31188 {normal=(0.284562 0.229216 0.927358)} Vertex 17584 1.50797 19.6066 3.30043 {normal=(0.318764 0.217795 0.918948)} Vertex 17585 1.55161 19.5837 3.2897 {normal=(0.350809 0.200971 0.911073)} Vertex 17586 1.59123 19.5541 3.27996 {normal=(0.379882 0.179200 0.903929)} Vertex 17587 1.62586 19.5184 3.27145 {normal=(0.405243 0.153063 0.897697)} Vertex 17588 1.65465 19.4776 3.26437 {normal=(0.426324 0.123196 0.892515)} Vertex 17589 1.67689 19.4327 3.25891 {normal=(0.442645 0.090240 0.888501)} Vertex 17590 1.69202 19.3847 3.25519 {normal=(0.453752 0.055047 0.885770)} Vertex 17591 1.69968 19.3349 3.25331 {normal=(0.459368 0.018535 0.884392)} Vertex 17592 1.69968 19.2845 3.25331 {normal=(0.459362 -0.018470 0.884395)} Vertex 17593 1.69202 19.2347 3.25519 {normal=(0.453754 -0.054990 0.885774)} Vertex 17594 1.67689 19.1867 3.25892 {normal=(0.442644 -0.090171 0.888507)} Vertex 17595 1.65465 19.1418 3.26438 {normal=(0.426319 -0.123147 0.892523)} Vertex 17596 1.62586 19.1009 3.27146 {normal=(0.405249 -0.153040 0.897701)} Vertex 17597 1.59123 19.0653 3.27998 {normal=(0.379886 -0.179154 0.903936)} Vertex 17598 1.55161 19.0356 3.28972 {normal=(0.350816 -0.200886 0.911086)} Vertex 17599 1.50798 19.0127 3.30045 {normal=(0.318772 -0.217696 0.918966)} Vertex 17600 1.4614 18.9972 3.3119 {normal=(0.284579 -0.229151 0.927372)} Vertex 17601 1.41303 18.9893 3.32379 {normal=(0.249142 -0.234930 0.936082)} Vertex 17602 1.36405 18.9893 3.33583 {normal=(0.213272 -0.234928 0.944899)} Vertex 17603 1.31568 18.9972 3.34772 {normal=(0.177774 -0.229139 0.953626)} Vertex 17604 1.2691 19.0127 3.35917 {normal=(0.143595 -0.217672 0.962035)} Vertex 17605 1.22546 19.0357 3.3699 {normal=(0.111647 -0.200914 0.969887)} Vertex 17606 1.18584 19.0653 3.37964 {normal=(0.082597 -0.179215 0.977020)} Vertex 17607 1.15121 19.101 3.38815 {normal=(0.057169 -0.153039 0.983272)} Vertex 17608 1.12242 19.1418 3.39523 {normal=(0.036057 -0.123098 0.988462)} Vertex 17609 1.10019 19.1867 3.40069 {normal=(0.019758 -0.090161 0.992468)} Vertex 17610 1.08506 19.2346 3.40441 {normal=(0.008674 -0.054989 0.995195)} Vertex 17611 1.07739 19.2845 3.40629 {normal=(0.003053 -0.018469 0.996574)} Vertex 17612 1.07739 19.3349 3.40629 {normal=(0.003054 0.018502 0.996574)} Vertex 17613 1.08506 19.3847 3.40441 {normal=(0.008687 0.055063 0.995189)} Vertex 17614 1.10019 19.4327 3.40068 {normal=(0.019775 0.090258 0.992460)} Vertex 17615 1.12242 19.4776 3.39522 {normal=(0.036061 0.123156 0.988457)} Vertex 17616 1.15121 19.5184 3.38814 {normal=(0.057162 0.153043 0.983270)} Vertex 17617 1.18584 19.5541 3.37962 {normal=(0.082572 0.179223 0.977022)} Vertex 17618 1.22547 19.5837 3.36988 {normal=(0.111620 0.200977 0.969878)} Vertex 17619 1.2691 19.6066 3.35916 {normal=(0.143617 0.217778 0.962007)} Vertex 17620 1.31568 19.6222 3.3477 {normal=(0.177822 0.229206 0.953599)} Vertex 17621 1.36405 19.6301 3.33581 {normal=(0.213305 0.234985 0.944879)} Vertex 17622 12.9469 -14.2126 -0.141485 {normal=(0.951246 0.107465 0.272211)} Vertex 17623 13.0618 -14.4362 -0.704836 {normal=(0.981602 0.032112 0.149060)} Vertex 17624 13 -14.5586 -1.29025 {normal=(0.989432 -0.074785 -0.038336)} Vertex 17625 12.8898 -14.6383 -1.91462 {normal=(0.985166 -0.132489 -0.090664)} Vertex 17626 12.8583 -14.6642 -2.51649 {normal=(0.968631 -0.157786 -0.150623)} Vertex 17627 12.7096 -14.6089 -3.1227 {normal=(0.867905 -0.170767 -0.420923)} Vertex 17628 11.2824 -14.8619 -2.34556 {normal=(-0.117324 0.982214 -0.073889)} Vertex 17629 11.3541 -14.8563 -2.12687 {normal=(-0.140618 0.972868 0.135450)} Vertex 17630 10.694 -14.8832 -1.51052 {normal=(-0.105195 0.955155 -0.153196)} Vertex 17631 10.7405 -14.8333 -1.27955 {normal=(0.000904 0.955889 0.079975)} Vertex 17632 10.9148 -14.7347 -0.579861 {normal=(-0.191054 0.953763 -0.066674)} Vertex 17633 10.9908 -14.6936 -0.355385 {normal=(-0.054346 0.951189 0.123937)} Vertex 17634 10.4276 -14.9945 0.173882 {normal=(-0.463308 0.840235 -0.173550)} Vertex 17635 10.5125 -14.894 0.376693 {normal=(-0.313191 0.908224 -0.008185)} Vertex 17636 9.19215 -16.0673 0.264265 {normal=(-0.364268 -0.549851 0.738414)} Vertex 17637 8.93539 -15.9383 0.18628 {normal=(-0.543743 -0.400902 0.726641)} Vertex 17638 5.76531 9.94082 -1.4232 {normal=(-0.927678 -0.347013 0.039099)} Vertex 17639 5.96025 9.59372 -1.94802 {normal=(-0.897087 -0.414393 -0.029127)} Vertex 17640 5.80046 9.98635 -2.61431 {normal=(-0.919738 -0.361880 -0.076544)} Vertex 17641 12.5085 8.62822 -1.99274 {normal=(0.971326 -0.053309 0.189343)} Vertex 17642 12.5194 8.80145 -2.62637 {normal=(0.989055 0.036186 -0.074496)} Vertex 17643 -12.9402 -14.4791 -0.14979 {normal=(-0.978799 0.036878 0.158285)} Vertex 17644 -13.0643 -14.6987 -0.703593 {normal=(-0.976243 0.053721 0.143500)} Vertex 17645 -12.9764 -14.8169 -1.30613 {normal=(-0.949793 -0.088150 -0.230408)} Vertex 17646 -12.8485 -14.8747 -1.93071 {normal=(-0.981996 -0.030599 -0.015047)} Vertex 17647 -12.6198 -14.8982 -3.17438 {normal=(-0.892016 -0.140151 -0.390053)} Vertex 17648 -11.2378 -14.8826 -2.41216 {normal=(0.108279 0.978905 -0.131814)} Vertex 17649 -11.2397 -14.8903 -2.06888 {normal=(0.113250 0.967380 0.194532)} Vertex 17650 -10.6559 -14.9241 -1.58108 {normal=(0.214501 0.934896 -0.242865)} Vertex 17651 -10.6077 -14.8929 -1.23092 {normal=(0.086746 0.951609 0.072849)} Vertex 17652 -10.8701 -14.7738 -0.646366 {normal=(0.307543 0.931463 -0.132621)} Vertex 17653 -10.872 -14.7633 -0.291942 {normal=(0.137465 0.942809 0.114705)} Vertex 17654 -10.3891 -15.0556 0.120722 {normal=(0.574800 0.776147 -0.217273)} Vertex 17655 -10.4264 -14.9802 0.465776 {normal=(0.391304 0.876234 -0.003384)} Vertex 17656 -9.29156 -16.0813 0.29384 {normal=(0.297886 -0.596564 0.732374)} Vertex 17657 -8.93119 -15.8038 0.252491 {normal=(0.604970 -0.362167 0.695796)} Vertex 17658 -5.99986 9.52392 -2.06378 {normal=(0.887369 -0.446685 -0.045404)} Vertex 17659 -5.80492 9.87103 -1.53896 {normal=(0.918246 -0.379700 0.022768)} Vertex 17660 -5.59918 10.3127 -1.93314 {normal=(0.964493 -0.244702 -0.004837)} Vertex 17661 -12.5006 8.92661 -2.06052 {normal=(-0.977780 0.012891 0.125899)} Vertex 17662 -12.5 8.96334 -2.54178 {normal=(-0.983332 0.032801 -0.107306)} Vertex 17663 13.1025 -7.35784 -0.943978 {normal=(0.753763 -0.012048 0.630654)} Vertex 17664 13.542 -7.42758 -1.74329 {normal=(0.921564 -0.072355 0.348455)} Vertex 17665 13.7538 -7.57038 -2.74899 {normal=(0.977348 -0.115775 0.031736)} Vertex 17666 13.6417 -7.71896 -3.64646 {normal=(0.941347 -0.145336 -0.272007)} Vertex 17667 13.364 -7.82059 -4.26865 {normal=(0.836764 -0.163918 -0.507544)} Vertex 17668 12.9384 -7.90506 -4.76262 {normal=(0.628483 -0.186134 -0.730283)} Vertex 17669 12.0393 -7.99735 -5.16004 {normal=(0.169457 -0.224687 -0.940101)} Vertex 17670 11.2425 -8.03479 -5.14209 {normal=(-0.193628 -0.246256 -0.931127)} Vertex 17671 10.6374 -8.05259 -4.89826 {normal=(-0.533771 -0.256887 -0.782542)} Vertex 17672 10.1928 -8.03866 -4.41246 {normal=(-0.790984 -0.254741 -0.527206)} Vertex 17673 9.84911 -7.9559 -3.48014 {normal=(-0.932191 -0.236044 -0.212778)} Vertex 17674 9.76086 -7.78526 -2.31905 {normal=(-0.964886 -0.187866 0.102702)} Vertex 17675 9.96051 -7.62602 -1.4107 {normal=(-0.889297 -0.105749 0.404607)} Vertex 17676 10.7288 -7.45608 -0.553293 {normal=(-0.512216 0.031317 0.813828)} Vertex 17677 11.6434 -7.37679 -0.238446 {normal=(-0.023139 0.082748 0.960338)} Vertex 17678 12.4594 -7.34876 -0.436159 {normal=(0.440108 0.054476 0.867911)} Vertex 17679 11.7895 -11.8802 -4.07341 {normal=(-0.036038 -0.981138 0.175934)} Vertex 17680 11.1491 -11.7737 -3.71983 {normal=(-0.095384 -0.976814 0.190177)} Vertex 17681 10.9749 -11.6973 -3.43717 {normal=(-0.091096 -0.971473 0.218403)} Vertex 17682 10.7801 -11.5411 -2.86969 {normal=(-0.099534 -0.964253 0.244909)} Vertex 17683 10.6759 -11.2841 -1.97365 {normal=(-0.110518 -0.955854 0.271767)} Vertex 17684 10.695 -11.0398 -1.14035 {normal=(-0.134250 -0.943952 0.299768)} Vertex 17685 10.8214 -10.8688 -0.5639 {normal=(-0.117149 -0.931327 0.340854)} Vertex 17686 11.4004 -10.7476 -0.186798 {normal=(0.003210 -0.915171 0.386927)} Vertex 17687 12.516 -10.8553 -0.621467 {normal=(0.142508 -0.911149 0.384790)} Vertex 17688 12.8068 -10.9606 -1.00652 {normal=(0.201531 -0.907369 0.365349)} Vertex 17689 13.0657 -11.1242 -1.59101 {normal=(0.291930 -0.891272 0.338252)} Vertex 17690 13.1135 -11.565 -3.09239 {normal=(0.245642 -0.945118 0.214211)} Vertex 17691 12.9157 -11.7124 -3.55899 {normal=(0.194713 -0.961595 0.189367)} Vertex 17692 12.6612 -11.8125 -3.8821 {normal=(0.116024 -0.975849 0.180085)} Vertex 17693 12.2985 -11.8725 -4.06918 {normal=(0.045409 -0.981623 0.183019)} Vertex 17694 11.4734 -4.10315 -0.744821 {normal=(-0.094201 0.988197 0.114168)} Vertex 17695 10.2774 -4.21142 -1.28807 {normal=(-0.140962 0.986965 0.073951)} Vertex 17696 9.47914 -4.28437 -2.15329 {normal=(-0.172413 0.983662 0.048527)} Vertex 17697 9.13723 -4.31623 -2.92634 {normal=(-0.225047 0.973011 0.020050)} Vertex 17698 9.13838 -4.31762 -3.99422 {normal=(-0.288167 0.954110 -0.050916)} Vertex 17699 9.55444 -4.28168 -5.07558 {normal=(-0.282305 0.947387 -0.140355)} Vertex 17700 10.204 -4.22411 -5.67452 {normal=(-0.200241 0.962211 -0.175922)} Vertex 17701 11.1136 -4.14281 -5.93614 {normal=(-0.112294 0.980883 -0.151966)} Vertex 17702 12.1895 -4.05081 -5.82181 {normal=(-0.055125 0.991496 -0.114711)} Vertex 17703 13.0645 -3.97154 -5.34253 {normal=(-0.022113 0.996239 -0.080654)} Vertex 17704 13.5824 -3.92656 -4.77754 {normal=(0.000899 0.998350 -0.056196)} Vertex 17705 13.8964 -3.89735 -4.16426 {normal=(0.022662 0.998524 -0.046993)} Vertex 17706 14.0549 -3.86698 -3.40357 {normal=(0.044138 0.998378 -0.017767)} Vertex 17707 13.9443 -3.87204 -2.49111 {normal=(0.069330 0.994781 0.052241)} Vertex 17708 13.5253 -3.91326 -1.57008 {normal=(0.064155 0.988482 0.127393)} Vertex 17709 12.6593 -3.99378 -0.915817 {normal=(-0.010227 0.987094 0.148301)} Vertex 17710 9.64318 3.7976 -5.69169 {normal=(-0.204309 -0.130460 -0.956365)} Vertex 17711 11.5338 6.14394 -5.12819 {normal=(0.610296 0.450973 -0.615524)} Vertex 17712 11.8958 5.19582 -5.2872 {normal=(0.629822 0.196423 -0.696995)} Vertex 17713 11.2262 7.59892 -4.07675 {normal=(0.783216 0.087952 -0.578551)} Vertex 17714 11.2233 7.24657 -4.19459 {normal=(0.804754 0.355154 -0.444372)} Vertex 17715 11.281 6.85211 -4.62891 {normal=(0.699175 0.501310 -0.478358)} Vertex 17716 8.37237 5.83045 -0.961041 {normal=(-0.675179 -0.295229 0.652755)} Vertex 17717 8.38366 4.70942 -1.59436 {normal=(-0.697911 -0.368034 0.553968)} Vertex 17718 9.35324 0.39072 -4.40684 {normal=(-0.938208 -0.091971 -0.311368)} Vertex 17719 9.56227 -1.70986 -5.06498 {normal=(-0.797793 0.032017 -0.562340)} Vertex 17720 12.7913 0.078365 -2.68919 {normal=(0.905145 0.057214 0.399733)} Vertex 17721 12.3738 0.0366907 -1.97598 {normal=(0.717844 0.038778 0.639816)} Vertex 17722 12.5715 -1.28579 -5.11415 {normal=(0.718611 0.171393 -0.621131)} Vertex 17723 11.8439 -1.36887 -5.62791 {normal=(0.416925 0.124208 -0.884161)} Vertex 17724 12.2911 0.875386 -4.65041 {normal=(0.706329 0.141744 -0.679211)} Vertex 17725 12.581 4.23568 -3.90392 {normal=(0.967858 0.207204 -0.071433)} Vertex 17726 12.796 2.90844 -3.76776 {normal=(0.960550 0.114158 -0.205705)} Vertex 17727 11.4171 0.769598 -5.38275 {normal=(0.520526 0.169463 -0.836181)} Vertex 17728 11.3177 -0.0665562 -5.59856 {normal=(0.467568 0.078837 -0.867215)} Vertex 17729 10.8528 -0.730875 -5.74626 {normal=(0.111474 -0.106232 -0.921779)} Vertex 17730 10.2073 -0.916196 -5.57373 {normal=(-0.460817 -0.151200 -0.797835)} Vertex 17731 9.77114 -0.443646 -5.23669 {normal=(-0.811450 -0.079842 -0.557080)} Vertex 17732 9.56376 0.497311 -4.97207 {normal=(-0.893625 -0.090934 -0.431585)} Vertex 17733 13.0195 1.08208 -3.2827 {normal=(0.976515 0.029134 -0.007059)} Vertex 17734 12.9658 1.06679 -3.6316 {normal=(0.940461 0.035193 -0.317916)} Vertex 17735 10.3432 -1.625 -1.93535 {normal=(-0.558181 0.081492 0.804946)} Vertex 17736 7.87638 4.20783 -3.93486 {normal=(-0.831827 -0.320583 -0.433529)} Vertex 17737 8.54523 2.71339 -3.95669 {normal=(-0.877480 -0.374549 -0.292042)} Vertex 17738 13.3227 -3.01756 -1.95422 {normal=(0.815560 0.288751 0.461538)} Vertex 17739 11.4228 -1.4737 -1.50183 {normal=(-0.067136 0.108211 0.908535)} Vertex 17740 10.271 -0.439337 -2.12773 {normal=(-0.606044 -0.177761 0.737808)} Vertex 17741 8.87998 3.38404 -2.07176 {normal=(-0.744150 -0.391643 0.437875)} Vertex 17742 12.4346 -1.37052 -1.66267 {normal=(0.551907 0.184312 0.738020)} Vertex 17743 11.3471 -13.452 -2.39041 {normal=(-0.959553 -0.164990 0.185359)} Vertex 17744 12.1863 -12.221 -3.98251 {normal=(0.225974 0.095380 -0.936035)} Vertex 17745 11.5876 -12.2183 -3.92813 {normal=(-0.118809 0.111841 -0.978675)} Vertex 17746 11.1381 -12.1574 -3.66624 {normal=(-0.888744 0.152161 -0.409394)} Vertex 17747 11.0138 -12.0896 -3.38462 {normal=(-0.950864 0.119698 -0.218033)} Vertex 17748 10.9801 -12.0494 -3.11634 {normal=(-0.987785 0.003933 0.009132)} Vertex 17749 10.9863 -12.0136 -2.67947 {normal=(-0.972749 -0.171047 0.029467)} Vertex 17750 10.9178 -11.8528 -2.06159 {normal=(-0.965914 -0.210354 -0.088003)} Vertex 17751 10.7922 -11.5529 -1.37788 {normal=(-0.985639 -0.068925 -0.078996)} Vertex 17752 10.8196 -11.1861 -0.681255 {normal=(-0.989909 0.083227 0.044223)} Vertex 17753 11.5154 -10.9334 -0.248133 {normal=(-0.134252 0.712273 0.688934)} Vertex 17754 12.3867 -11.1479 -0.508677 {normal=(0.848433 0.181622 0.492928)} Vertex 17755 12.7676 -11.4731 -1.06526 {normal=(0.895378 0.141909 0.416623)} Vertex 17756 12.9743 -11.5999 -1.47478 {normal=(0.943202 0.087257 0.306041)} Vertex 17757 13.1125 -11.7343 -1.95413 {normal=(0.984045 0.032683 0.114506)} Vertex 17758 13.122 -11.8931 -2.53304 {normal=(0.991947 -0.003282 -0.084729)} Vertex 17759 13.0244 -12.0225 -3.07356 {normal=(0.962783 -0.004275 -0.250884)} Vertex 17760 12.8668 -12.1089 -3.49668 {normal=(0.854984 0.010769 -0.486099)} Vertex 17761 12.592 -12.1788 -3.80991 {normal=(0.615409 0.047164 -0.758460)} Vertex 17762 10.8354 -12.1798 -1.11338 {normal=(-0.960379 -0.164178 -0.164954)} Vertex 17763 12.5097 -14.4979 -3.53851 {normal=(0.693257 -0.140119 -0.692454)} Vertex 17764 12.2272 -14.4902 -3.7792 {normal=(0.353685 -0.157664 -0.878673)} Vertex 17765 12.5636 -12.6881 -0.072607 {normal=(0.791518 0.207020 0.544049)} Vertex 17766 11.4734 -11.1744 -0.0083525 {normal=(-0.224299 0.696467 0.675105)} Vertex 17767 11.9314 -12.9608 0.459965 {normal=(0.683377 0.157801 0.699433)} Vertex 17768 11.7123 -12.2769 0.489795 {normal=(0.559466 0.272031 0.763788)} Vertex 17769 10.4542 -12.4724 -0.00621599 {normal=(-0.846556 0.469787 -0.239587)} Vertex 17770 10.457 -13.0586 -0.317657 {normal=(-0.704947 -0.087525 -0.627846)} Vertex 17771 10.9193 -12.0307 0.393587 {normal=(-0.421832 0.646889 0.622658)} Vertex 17772 11.4935 -13.881 0.366874 {normal=(-0.321811 -0.586166 0.743537)} Vertex 17773 11.0004 -13.5132 -0.612486 {normal=(-0.750166 -0.345486 -0.503164)} Vertex 17774 10.9104 -12.7653 -0.897707 {normal=(-0.875946 -0.212290 -0.375448)} Vertex 17775 11.1031 -12.571 -1.95012 {normal=(-0.939709 -0.310797 -0.080621)} Vertex 17776 11.2781 -13.9977 -0.269237 {normal=(-0.943812 -0.203622 -0.158953)} Vertex 17777 11.3357 -13.8056 -0.95472 {normal=(-0.901862 -0.316771 -0.261943)} Vertex 17778 11.2915 -13.1571 -1.63271 {normal=(-0.922514 -0.311919 -0.154148)} Vertex 17779 11.5442 -13.7986 -1.77411 {normal=(-0.964861 -0.232503 0.032097)} Vertex 17780 11.65 -13.308 -3.9806 {normal=(-0.058204 -0.053887 -0.967585)} Vertex 17781 11.1484 -13.326 -3.68342 {normal=(-0.950939 -0.058025 -0.257324)} Vertex 17782 11.0698 -13.3175 -3.27508 {normal=(-0.970732 -0.064621 -0.031286)} Vertex 17783 11.1502 -13.3223 -2.89018 {normal=(-0.966033 -0.092599 0.194363)} Vertex 17784 12.859 -12.838 -0.623879 {normal=(0.923122 0.158884 0.337077)} Vertex 17785 13.0284 -13.0145 -1.1157 {normal=(0.971291 0.065154 0.189262)} Vertex 17786 13.08 -13.1481 -1.6543 {normal=(0.992455 -0.024987 0.016925)} Vertex 17787 13.0312 -13.2726 -2.26413 {normal=(0.991758 -0.071215 -0.094262)} Vertex 17788 12.9643 -13.3003 -2.83039 {normal=(0.971917 -0.080780 -0.199489)} Vertex 17789 12.8382 -13.2684 -3.33371 {normal=(0.876414 -0.088934 -0.434891)} Vertex 17790 12.6068 -13.2418 -3.7045 {normal=(0.681742 -0.077610 -0.703018)} Vertex 17791 12.2783 -13.2508 -3.95553 {normal=(0.350967 -0.058375 -0.895482)} Vertex 17792 11.6919 -14.5153 -3.79762 {normal=(-0.129139 -0.181886 -0.937790)} Vertex 17793 11.3206 -14.5503 -3.42855 {normal=(-0.980385 -0.053282 -0.031018)} Vertex 17794 11.3659 -14.5737 -2.90454 {normal=(-0.967666 -0.029356 0.158611)} Vertex 17795 11.4914 -14.5167 -2.47125 {normal=(-0.958173 -0.044461 0.255690)} Vertex 17796 11.5798 -14.4828 -2.01428 {normal=(-0.970275 -0.047661 0.212361)} Vertex 17797 11.6748 -14.5323 -1.44184 {normal=(-0.982525 -0.075944 0.058189)} Vertex 17798 11.597 -14.4962 -0.854583 {normal=(-0.951859 -0.174190 -0.189781)} Vertex 17799 11.877 -14.0123 0.572116 {normal=(-0.373359 0.410504 0.827669)} Vertex 17800 12.4126 -13.7581 0.630126 {normal=(0.606058 0.301594 0.719271)} Vertex 17801 12.7107 -13.8058 0.315418 {normal=(0.818905 0.194504 0.478661)} Vertex 17802 10.9968 -15.9582 -3.06085 {normal=(-0.442536 -0.051028 -0.866892)} Vertex 17803 11.1981 -16.3365 -3.08137 {normal=(-0.296044 -0.417873 -0.836301)} Vertex 17804 11.0038 -15.6504 -2.79049 {normal=(-0.592217 0.781205 0.141064)} Vertex 17805 11.4205 -16.4788 -2.91349 {normal=(0.251763 -0.939900 -0.188500)} Vertex 17806 10.899 -15.7459 -2.72059 {normal=(-0.611114 0.750464 0.222130)} Vertex 17807 10.7294 -16.045 -2.93117 {normal=(-0.355196 0.037043 -0.907209)} Vertex 17808 10.7437 -16.4283 -2.89438 {normal=(-0.306181 -0.344028 -0.861886)} Vertex 17809 10.889 -16.5983 -2.69235 {normal=(0.120967 -0.980464 -0.139764)} Vertex 17810 10.4676 -16.3042 -2.76056 {normal=(-0.834614 -0.277620 -0.473886)} Vertex 17811 10.5226 -16.4599 -2.5293 {normal=(-0.766845 -0.580171 0.261817)} Vertex 17812 10.8591 -15.7417 -2.68242 {normal=(0.365956 0.240345 -0.798714)} Vertex 17813 10.6014 -15.9838 -2.85603 {normal=(-0.141612 0.168700 -0.938396)} Vertex 17814 10.8116 -15.6742 -2.6148 {normal=(0.356692 0.911634 -0.147449)} Vertex 17815 10.5127 -15.7486 -2.76689 {normal=(-0.030042 0.296508 -0.941458)} Vertex 17816 10.2909 -15.8739 -2.6372 {normal=(-0.841987 -0.212303 -0.493797)} Vertex 17817 10.2759 -15.9497 -2.39606 {normal=(-0.869659 -0.431794 0.200537)} Vertex 17818 10.4502 -15.5443 -2.68932 {normal=(-0.003564 0.188912 -0.966736)} Vertex 17819 10.1826 -15.4404 -2.59445 {normal=(-0.796765 -0.187625 -0.571472)} Vertex 17820 10.0933 -15.3997 -2.36738 {normal=(-0.937231 -0.326423 0.082143)} Vertex 17821 10.7371 -15.6213 -2.54223 {normal=(0.564848 0.786465 -0.187538)} Vertex 17822 10.2095 -15.1226 -2.37672 {normal=(-0.349827 0.931249 0.088633)} Vertex 17823 10.7599 -15.5717 -2.53139 {normal=(0.252737 -0.590480 -0.542607)} Vertex 17824 10.5335 -15.4276 -2.6771 {normal=(0.110425 -0.102774 -0.957982)} Vertex 17825 10.3162 -15.2138 -2.59291 {normal=(-0.168081 0.520894 -0.835848)} Vertex 17826 10.8914 -15.5374 -2.49719 {normal=(0.289291 -0.695984 -0.497568)} Vertex 17827 10.7955 -15.3189 -2.64137 {normal=(0.204559 -0.299064 -0.912076)} Vertex 17828 10.7129 -15.0767 -2.58486 {normal=(-0.135510 0.562901 -0.814467)} Vertex 17829 10.6538 -14.9783 -2.37075 {normal=(-0.221144 0.964749 0.008694)} Vertex 17830 11.1253 -15.0109 -2.59236 {normal=(-0.066762 0.534432 -0.840527)} Vertex 17831 11.1899 -14.9121 -2.51656 {normal=(-0.096807 0.974525 -0.194549)} Vertex 17832 11.1468 -15.4493 -2.47741 {normal=(0.333688 -0.635357 -0.567142)} Vertex 17833 11.1086 -15.2431 -2.5876 {normal=(0.262433 -0.329781 -0.899067)} Vertex 17834 11.4409 -14.8817 -2.47815 {normal=(0.534370 0.447102 -0.689815)} Vertex 17835 11.3801 -15.1727 -2.5256 {normal=(0.445667 -0.239230 -0.829654)} Vertex 17836 11.5443 -15.1143 -2.43519 {normal=(0.709518 -0.146577 -0.618656)} Vertex 17837 10.9827 -14.9052 -2.37135 {normal=(-0.080924 0.989184 -0.055411)} Vertex 17838 11.5449 -14.8487 -2.33313 {normal=(0.717969 0.517218 -0.441535)} Vertex 17839 11.6188 -15.0717 -2.32064 {normal=(0.840604 -0.121241 -0.392776)} Vertex 17840 11.599 -14.925 -2.33071 {normal=(0.775041 0.352079 -0.484768)} Vertex 17841 11.4969 -14.96 -2.47699 {normal=(0.619110 0.231386 -0.706705)} Vertex 17842 11.1357 -15.6372 -2.89337 {normal=(0.341169 0.906355 -0.249246)} Vertex 17843 11.9023 -16.2281 -3.20322 {normal=(0.436320 -0.833108 -0.303088)} Vertex 17844 11.6371 -16.1477 -3.33377 {normal=(-0.234581 -0.459070 -0.837832)} Vertex 17845 11.2903 -15.874 -3.23585 {normal=(-0.461407 -0.180303 -0.837668)} Vertex 17846 11.9561 -16.1479 -2.60409 {normal=(0.575466 -0.686095 0.388781)} Vertex 17847 12.0249 -16.2227 -2.94151 {normal=(0.533380 -0.804246 -0.016624)} Vertex 17848 11.1947 -15.6631 -2.45553 {normal=(0.844523 -0.459540 -0.274962)} Vertex 17849 11.4928 -14.9719 -2.00649 {normal=(0.605302 0.191667 0.729805)} Vertex 17850 11.5992 -14.9286 -2.15329 {normal=(0.775276 0.331991 0.496100)} Vertex 17851 11.6206 -15.0736 -2.17421 {normal=(0.863775 0.009533 0.457210)} Vertex 17852 11.5458 -14.8534 -2.14745 {normal=(0.727752 0.479295 0.462297)} Vertex 17853 10.983 -14.9128 -2.1113 {normal=(-0.091351 0.979070 0.144209)} Vertex 17854 11.5469 -15.1202 -2.05878 {normal=(0.695423 -0.090455 0.670237)} Vertex 17855 11.3804 -15.1832 -1.9713 {normal=(0.426865 -0.231563 0.851784)} Vertex 17856 11.4374 -14.8943 -2.0014 {normal=(0.531848 0.378476 0.729093)} Vertex 17857 11.1043 -15.2569 -1.91506 {normal=(0.200022 -0.378591 0.896552)} Vertex 17858 11.1457 -15.4539 -2.1987 {normal=(0.386483 -0.863256 -0.006086)} Vertex 17859 11.1858 -14.9276 -1.96543 {normal=(-0.112827 0.955179 0.269603)} Vertex 17860 11.1172 -15.03 -1.89792 {normal=(-0.081023 0.451010 0.887087)} Vertex 17861 10.6534 -14.997 -2.11081 {normal=(-0.234096 0.953860 0.137173)} Vertex 17862 10.7084 -15.1236 -1.91245 {normal=(-0.142342 0.442385 0.884814)} Vertex 17863 10.8317 -15.3491 -1.92775 {normal=(0.179680 -0.419711 0.886245)} Vertex 17864 10.9317 -15.5394 -2.19605 {normal=(0.295827 -0.921995 0.081160)} Vertex 17865 10.3752 -15.2716 -1.91176 {normal=(-0.128628 0.388381 0.911462)} Vertex 17866 10.6775 -15.4511 -1.94595 {normal=(0.356098 -0.238852 0.882422)} Vertex 17867 10.8464 -15.5707 -2.21128 {normal=(0.331386 -0.909491 0.068404)} Vertex 17868 10.211 -15.156 -2.1066 {normal=(-0.357624 0.925375 0.121248)} Vertex 17869 10.8289 -15.6274 -2.21212 {normal=(0.662578 0.731447 -0.049897)} Vertex 17870 10.128 -15.424 -2.09769 {normal=(-0.898340 -0.387249 0.189783)} Vertex 17871 10.3393 -15.4768 -1.9113 {normal=(-0.342069 -0.257141 0.903476)} Vertex 17872 10.6641 -15.5626 -1.94574 {normal=(0.479297 0.009860 0.872209)} Vertex 17873 10.3579 -15.9615 -2.16109 {normal=(-0.836975 -0.463570 0.273058)} Vertex 17874 10.5279 -15.9131 -1.97233 {normal=(-0.346024 -0.307936 0.885361)} Vertex 17875 10.7881 -15.7965 -1.98495 {normal=(0.470813 0.124446 0.872880)} Vertex 17876 10.932 -15.6946 -2.26276 {normal=(0.469451 0.866052 0.005069)} Vertex 17877 10.9502 -16.0333 -2.0339 {normal=(0.440606 0.171614 0.880646)} Vertex 17878 11.0129 -15.7663 -2.31413 {normal=(0.981153 0.192404 -0.017897)} Vertex 17879 10.6385 -16.4733 -2.25892 {normal=(-0.744817 -0.593193 0.295906)} Vertex 17880 10.7785 -16.3424 -2.03634 {normal=(-0.306558 -0.363778 0.878940)} Vertex 17881 11.0139 -16.6066 -2.41707 {normal=(0.259170 -0.918179 0.139696)} Vertex 17882 11.08 -16.4468 -2.15647 {normal=(0.423088 -0.707408 0.522278)} Vertex 17883 11.1065 -16.0718 -2.10418 {normal=(0.419069 0.214533 0.882028)} Vertex 17884 11.0646 -15.7625 -2.35622 {normal=(-0.507441 0.761677 0.391243)} Vertex 17885 11.5353 -16.4764 -2.67176 {normal=(0.378781 -0.880284 0.093817)} Vertex 17886 11.1616 -15.6643 -2.43159 {normal=(-0.453940 0.792012 0.376077)} Vertex 17887 11.5097 -16.3325 -2.38104 {normal=(0.485933 -0.691709 0.486557)} Vertex 17888 11.3516 -15.9703 -2.24336 {normal=(0.399927 0.234065 0.886102)} Vertex 17889 11.9559 -15.8201 -3.56362 {normal=(-0.024470 -0.315417 -0.896168)} Vertex 17890 11.4747 -15.6676 -3.41945 {normal=(-0.414787 -0.213684 -0.853178)} Vertex 17891 11.2107 -15.5877 -2.99704 {normal=(-0.976065 0.184947 0.085249)} Vertex 17892 11.2458 -15.6671 -2.46591 {normal=(-0.458824 0.877196 0.113092)} Vertex 17893 12.3404 -15.9201 -2.80141 {normal=(0.636630 -0.707014 0.232647)} Vertex 17894 12.5751 -15.5236 -2.90041 {normal=(0.963480 -0.109213 -0.186995)} Vertex 17895 12.5518 -15.4379 -3.22346 {normal=(0.992838 0.041216 0.021040)} Vertex 17896 12.4392 -15.3648 -3.49695 {normal=(0.595656 -0.094779 -0.777522)} Vertex 17897 12.0964 -15.3385 -3.67683 {normal=(0.201415 -0.165512 -0.916331)} Vertex 17898 11.5803 -15.2444 -3.56044 {normal=(-0.298810 -0.182715 -0.906209)} Vertex 17899 11.2949 -15.2411 -3.10928 {normal=(-0.974880 0.148573 0.109385)} Vertex 17900 11.4131 -15.3051 -2.57479 {normal=(-0.959129 0.180683 0.198406)} Vertex 17901 11.5431 -15.2373 -2.1767 {normal=(-0.966296 0.141700 0.170752)} Vertex 17902 11.582 -15.1531 -1.75715 {normal=(-0.980855 0.103873 0.135953)} Vertex 17903 12.7891 -15.3705 -1.58353 {normal=(0.982891 0.054539 0.153348)} Vertex 17904 12.87 -15.3661 -1.90165 {normal=(0.942074 0.081353 0.314296)} Vertex 17905 12.8823 -15.3662 -2.20432 {normal=(0.918335 -0.084297 -0.384608)} Vertex 17906 12.7169 -15.4585 -2.54439 {normal=(0.922061 -0.158498 -0.349258)} Vertex 17907 12.4459 -15.8694 -2.42997 {normal=(0.450870 -0.856775 -0.227165)} Vertex 17908 11.3612 -15.6597 -2.06394 {normal=(-0.430941 0.899612 -0.028217)} Vertex 17909 11.458 -15.5878 -1.62673 {normal=(-0.446784 0.890610 -0.076417)} Vertex 17910 12.5918 -15.7846 -1.45772 {normal=(0.538915 -0.824165 0.052014)} Vertex 17911 11.0705 -16.0469 -2.15018 {normal=(-0.172546 0.095301 -0.980199)} Vertex 17912 11.3228 -16.3969 -2.0514 {normal=(0.283195 -0.795880 -0.480577)} Vertex 17913 10.9564 -15.7097 -1.91407 {normal=(-0.649255 0.727322 -0.182177)} Vertex 17914 11.486 -16.4877 -1.7814 {normal=(0.374076 -0.898080 -0.100418)} Vertex 17915 10.7841 -15.8511 -1.8701 {normal=(-0.602441 0.771762 -0.160704)} Vertex 17916 10.7454 -16.2098 -2.10725 {normal=(-0.093585 0.157897 -0.976545)} Vertex 17917 10.8174 -16.6033 -2.01791 {normal=(0.300256 -0.719462 -0.584337)} Vertex 17918 10.9184 -16.7206 -1.73974 {normal=(0.308120 -0.899852 -0.163769)} Vertex 17919 10.539 -16.5122 -1.99322 {normal=(-0.553707 -0.591349 -0.581984)} Vertex 17920 10.5793 -16.6162 -1.72111 {normal=(-0.483416 -0.869434 0.075191)} Vertex 17921 10.6828 -15.82 -1.85022 {normal=(0.357942 0.490926 -0.689638)} Vertex 17922 10.5789 -16.1553 -2.08275 {normal=(-0.043261 0.288456 -0.940261)} Vertex 17923 10.5744 -15.7436 -1.75501 {normal=(-0.072976 0.989137 -0.076984)} Vertex 17924 10.3753 -15.975 -1.97423 {normal=(-0.148995 0.388953 -0.895014)} Vertex 17925 10.206 -16.2719 -1.88607 {normal=(-0.553892 -0.476722 -0.674886)} Vertex 17926 10.1854 -16.3863 -1.64082 {normal=(-0.554320 -0.825985 0.030658)} Vertex 17927 10.2582 -15.8529 -1.87461 {normal=(-0.058458 0.318412 -0.923748)} Vertex 17928 9.99155 -16.0626 -1.8301 {normal=(-0.433291 -0.411888 -0.795905)} Vertex 17929 9.90052 -16.1712 -1.60084 {normal=(-0.681202 -0.727536 0.014873)} Vertex 17930 10.4948 -15.7381 -1.65819 {normal=(-0.155984 0.981994 0.024744)} Vertex 17931 9.81328 -15.7489 -1.59738 {normal=(-0.997534 0.063973 0.021185)} Vertex 17932 10.242 -15.7272 -1.85467 {normal=(0.263366 0.096576 -0.937124)} Vertex 17933 9.93756 -15.7488 -1.82056 {normal=(-0.496263 0.207445 -0.837118)} Vertex 17934 10.5016 -15.7063 -1.58097 {normal=(0.804622 0.138059 -0.366575)} Vertex 17935 10.3636 -15.5425 -1.80887 {normal=(0.505141 -0.073579 -0.819746)} Vertex 17936 10.1907 -15.3366 -1.79442 {normal=(-0.316021 0.362786 -0.862155)} Vertex 17937 10.0963 -15.2179 -1.58258 {normal=(-0.663522 0.723867 -0.171079)} Vertex 17938 10.5935 -15.1006 -1.76774 {normal=(-0.091291 0.409683 -0.901884)} Vertex 17939 10.6356 -14.971 -1.68869 {normal=(-0.196345 0.949994 -0.199054)} Vertex 17940 10.6642 -15.5895 -1.51669 {normal=(0.635177 -0.739972 -0.061885)} Vertex 17941 10.6121 -15.3817 -1.74171 {normal=(0.537768 -0.183004 -0.786811)} Vertex 17942 10.883 -14.8838 -1.62317 {normal=(0.641384 0.317019 -0.661676)} Vertex 17943 10.8684 -15.2212 -1.6481 {normal=(0.587249 -0.150433 -0.771045)} Vertex 17944 11.0133 -15.1044 -1.53943 {normal=(0.783017 0.037049 -0.575589)} Vertex 17945 10.3941 -14.9897 -1.5673 {normal=(-0.031082 0.982145 -0.137703)} Vertex 17946 10.9648 -14.8143 -1.46718 {normal=(0.834798 0.334561 -0.376010)} Vertex 17947 11.0626 -15.0306 -1.41928 {normal=(0.880453 0.164247 -0.382503)} Vertex 17948 11.0154 -14.8813 -1.45073 {normal=(0.788654 0.404192 -0.442797)} Vertex 17949 10.9427 -14.9496 -1.60699 {normal=(0.676693 0.262003 -0.655405)} Vertex 17950 11.1694 -15.6514 -1.9963 {normal=(0.156352 0.815099 -0.557824)} Vertex 17951 12.183 -16.141 -1.90648 {normal=(0.476387 -0.859706 -0.047957)} Vertex 17952 11.9863 -16.1188 -2.21413 {normal=(0.339585 -0.858396 -0.329044)} Vertex 17953 11.6015 -15.812 -1.24531 {normal=(-0.062165 0.153974 0.982657)} Vertex 17954 12.0645 -16.0364 -1.34511 {normal=(0.434357 -0.782235 0.315875)} Vertex 17955 12.1942 -16.0988 -1.62962 {normal=(0.508609 -0.827505 0.195759)} Vertex 17956 11.2351 -15.5924 -1.57194 {normal=(0.189608 0.977073 0.096831)} Vertex 17957 10.877 -14.9071 -1.13038 {normal=(0.453767 0.372234 0.777126)} Vertex 17958 10.9904 -14.8651 -1.26965 {normal=(0.559570 0.549857 0.577809)} Vertex 17959 11.042 -15.0172 -1.2692 {normal=(0.756150 0.224723 0.571496)} Vertex 17960 10.9385 -14.7974 -1.27676 {normal=(0.552147 0.583111 0.288079)} Vertex 17961 10.3574 -14.966 -1.30089 {normal=(-0.045215 0.990088 -0.038852)} Vertex 17962 10.9608 -15.0704 -1.15816 {normal=(0.603940 0.119941 0.750385)} Vertex 17963 10.7903 -15.1706 -1.08065 {normal=(0.351423 -0.055754 0.912106)} Vertex 17964 10.8164 -14.8408 -1.13978 {normal=(0.311067 0.463688 0.821416)} Vertex 17965 10.5161 -15.3197 -1.04575 {normal=(0.182846 -0.185520 0.964171)} Vertex 17966 10.6248 -15.5641 -1.23101 {normal=(0.571786 -0.715589 0.337735)} Vertex 17967 10.5586 -14.9212 -1.12931 {normal=(-0.217931 0.966059 -0.027765)} Vertex 17968 10.4949 -15.0369 -1.05227 {normal=(-0.314162 0.467905 0.819976)} Vertex 17969 10.0715 -15.2066 -1.32094 {normal=(-0.696484 0.712964 -0.015088)} Vertex 17970 10.1276 -15.309 -1.09862 {normal=(-0.475916 0.342658 0.797981)} Vertex 17971 10.2977 -15.5194 -1.05895 {normal=(0.190958 -0.142150 0.967837)} Vertex 17972 9.93571 -15.7574 -1.10366 {normal=(-0.545560 0.157439 0.818525)} Vertex 17973 10.2373 -15.7433 -1.06725 {normal=(0.209611 0.042903 0.969653)} Vertex 17974 9.81346 -15.7523 -1.32339 {normal=(-0.998538 0.048150 -0.014757)} Vertex 17975 10.5098 -15.7458 -1.3029 {normal=(-0.181808 0.977630 0.007304)} Vertex 17976 9.91256 -16.1723 -1.32138 {normal=(-0.688380 -0.722226 0.005284)} Vertex 17977 10.0239 -16.0657 -1.09825 {normal=(-0.243627 -0.468866 0.848868)} Vertex 17978 10.2936 -15.8626 -1.06695 {normal=(0.228730 0.154386 0.959688)} Vertex 17979 10.1895 -16.4011 -1.38876 {normal=(-0.570561 -0.812326 -0.048148)} Vertex 17980 10.2508 -16.2724 -1.15405 {normal=(-0.248701 -0.488107 0.836480)} Vertex 17981 10.4485 -15.9535 -1.1048 {normal=(0.262928 0.162834 0.950248)} Vertex 17982 10.6069 -15.7363 -1.36554 {normal=(-0.021800 0.986509 0.043727)} Vertex 17983 10.6541 -16.0833 -1.14012 {normal=(0.189434 0.237122 0.948433)} Vertex 17984 10.7163 -15.7891 -1.43292 {normal=(0.794797 0.557353 0.240116)} Vertex 17985 10.5853 -16.6146 -1.41847 {normal=(-0.460949 -0.881799 -0.055863)} Vertex 17986 10.5868 -16.4694 -1.16524 {normal=(-0.274505 -0.488761 0.827941)} Vertex 17987 10.9309 -16.6904 -1.43431 {normal=(0.351170 -0.841634 0.312858)} Vertex 17988 10.8566 -16.5196 -1.17413 {normal=(0.413083 -0.568025 0.675820)} Vertex 17989 10.7927 -16.1149 -1.15175 {normal=(0.086456 0.314978 0.944246)} Vertex 17990 10.8046 -15.8097 -1.45295 {normal=(-0.583129 0.801140 0.068653)} Vertex 17991 11.49 -16.4624 -1.52057 {normal=(0.407195 -0.853274 0.264491)} Vertex 17992 10.9666 -15.67 -1.50975 {normal=(-0.622086 0.767217 0.068349)} Vertex 17993 11.339 -16.3212 -1.26114 {normal=(0.381362 -0.658096 0.603952)} Vertex 17994 11.0929 -15.9568 -1.21642 {normal=(0.007356 0.276828 0.957489)} Vertex 17995 11.0802 -16.1322 -0.99902 {normal=(-0.120799 0.056725 -0.960297)} Vertex 17996 11.2449 -16.4615 -0.886095 {normal=(0.204762 -0.823697 -0.470987)} Vertex 17997 11.0452 -15.7922 -0.779305 {normal=(-0.672078 0.696866 -0.187484)} Vertex 17998 11.3854 -16.5306 -0.614924 {normal=(0.368755 -0.884427 -0.093220)} Vertex 17999 10.7781 -15.9112 -0.717338 {normal=(0.047984 0.643726 -0.660891)} Vertex 18000 10.5829 -16.2201 -0.944682 {normal=(-0.001072 0.240712 -0.959617)} Vertex 18001 10.4709 -16.5945 -0.842891 {normal=(-0.036263 -0.734647 -0.646398)} Vertex 18002 10.5096 -16.7321 -0.559906 {normal=(-0.426381 -0.885440 0.126850)} Vertex 18003 10.2058 -16.4007 -0.832142 {normal=(-0.688553 -0.261660 -0.674419)} Vertex 18004 10.1615 -16.5138 -0.553528 {normal=(-0.704112 -0.655892 0.139164)} Vertex 18005 10.6691 -15.8273 -0.707744 {normal=(0.822073 0.317434 -0.469638)} Vertex 18006 10.4296 -16.0926 -0.933836 {normal=(0.028887 0.190130 -0.977231)} Vertex 18007 10.6001 -15.6467 -0.672126 {normal=(0.786389 0.417529 -0.451707)} Vertex 18008 10.3274 -15.7659 -0.881313 {normal=(0.055402 0.159349 -0.984969)} Vertex 18009 10.0352 -15.9367 -0.773642 {normal=(-0.676351 -0.192625 -0.709671)} Vertex 18010 9.94275 -16.0216 -0.519014 {normal=(-0.916523 -0.353111 0.119391)} Vertex 18011 10.2512 -15.4845 -0.835863 {normal=(0.129000 0.085470 -0.983903)} Vertex 18012 9.9344 -15.4799 -0.767644 {normal=(-0.616629 -0.202279 -0.759007)} Vertex 18013 9.81588 -15.5045 -0.52904 {normal=(-0.975600 -0.198715 0.089313)} Vertex 18014 10.5204 -15.5345 -0.632155 {normal=(0.039959 0.988173 0.065718)} Vertex 18015 9.90921 -15.1923 -0.544237 {normal=(-0.662349 0.736208 0.049972)} Vertex 18016 10.5249 -15.5196 -0.620766 {normal=(0.365706 -0.880482 -0.224725)} Vertex 18017 10.2851 -15.3973 -0.828256 {normal=(0.153526 -0.117288 -0.972695)} Vertex 18018 10.0091 -15.2537 -0.773507 {normal=(-0.343970 0.480705 -0.806029)} Vertex 18019 10.682 -15.4774 -0.60652 {normal=(0.380847 -0.880502 -0.192161)} Vertex 18020 10.5231 -15.2977 -0.822386 {normal=(0.157399 -0.282968 -0.944379)} Vertex 18021 10.3684 -15.0667 -0.792409 {normal=(-0.272579 0.501085 -0.819635)} Vertex 18022 10.3071 -14.955 -0.573487 {normal=(-0.380778 0.900113 -0.012190)} Vertex 18023 10.7973 -14.9234 -0.826906 {normal=(-0.192766 0.475536 -0.857105)} Vertex 18024 10.8386 -14.8109 -0.751156 {normal=(-0.303222 0.943210 -0.077688)} Vertex 18025 10.9507 -15.344 -0.598269 {normal=(0.536784 -0.790968 -0.171688)} Vertex 18026 10.8457 -15.1661 -0.810516 {normal=(0.266575 -0.274705 -0.917540)} Vertex 18027 11.0848 -14.7131 -0.71654 {normal=(0.514925 0.404461 -0.722578)} Vertex 18028 11.0964 -15.0185 -0.750699 {normal=(0.477674 -0.095853 -0.847770)} Vertex 18029 11.2445 -14.9108 -0.660091 {normal=(0.687971 0.126401 -0.673068)} Vertex 18030 10.6192 -14.8591 -0.60039 {normal=(-0.195962 0.977443 -0.053690)} Vertex 18031 11.1827 -14.6482 -0.570409 {normal=(0.740234 0.427267 -0.468578)} Vertex 18032 11.3047 -14.8442 -0.54512 {normal=(0.799929 0.262401 -0.489448)} Vertex 18033 11.2405 -14.7094 -0.564255 {normal=(0.679500 0.498561 -0.521425)} Vertex 18034 11.1514 -14.7723 -0.711783 {normal=(0.552566 0.350736 -0.725356)} Vertex 18035 12.3729 -16.0511 -0.742073 {normal=(0.510252 -0.839153 -0.003746)} Vertex 18036 12.1743 -16.092 -1.01741 {normal=(0.409397 -0.853916 -0.230653)} Vertex 18037 11.6612 -15.9038 -1.13892 {normal=(-0.214084 -0.230924 -0.943969)} Vertex 18038 12.2223 -15.8842 -0.162675 {normal=(0.453085 -0.687557 0.543671)} Vertex 18039 12.3932 -15.978 -0.462655 {normal=(0.523391 -0.782606 0.295716)} Vertex 18040 11.1539 -14.758 -0.229375 {normal=(0.528885 0.401630 0.713131)} Vertex 18041 11.2414 -14.704 -0.380976 {normal=(0.579170 0.594054 0.511663)} Vertex 18042 11.3055 -14.8397 -0.393218 {normal=(0.805069 0.289148 0.465313)} Vertex 18043 11.1837 -14.6425 -0.377679 {normal=(0.542106 0.616691 0.236819)} Vertex 18044 10.6206 -14.8512 -0.330744 {normal=(-0.198609 0.978348 0.010397)} Vertex 18045 11.2465 -14.8994 -0.274182 {normal=(0.694642 0.163593 0.657889)} Vertex 18046 11.0994 -15.0016 -0.17636 {normal=(0.485696 -0.048671 0.847193)} Vertex 18047 11.0873 -14.6987 -0.227269 {normal=(0.394175 0.474672 0.778540)} Vertex 18048 10.8492 -15.1453 -0.106099 {normal=(0.302746 -0.215159 0.924970)} Vertex 18049 10.9522 -15.3354 -0.30912 {normal=(0.545653 -0.779098 0.201348)} Vertex 18050 10.8414 -14.7943 -0.184969 {normal=(-0.304622 0.946358 0.026627)} Vertex 18051 10.8009 -14.9021 -0.102727 {normal=(-0.165767 0.517162 0.839278)} Vertex 18052 10.314 -14.9505 -0.310008 {normal=(-0.387567 0.896860 0.020655)} Vertex 18053 10.3883 -15.0557 -0.092117 {normal=(-0.204463 0.520536 0.828378)} Vertex 18054 10.5459 -15.2866 -0.0672073 {normal=(0.247656 -0.226455 0.941421)} Vertex 18055 10.6919 -15.4729 -0.288154 {normal=(0.425205 -0.862329 0.193013)} Vertex 18056 10.0597 -15.254 -0.057314 {normal=(-0.248103 0.475081 0.843422)} Vertex 18057 10.3367 -15.4097 -0.0388528 {normal=(0.287585 -0.109640 0.946001)} Vertex 18058 10.5456 -15.5318 -0.273854 {normal=(0.454406 -0.850325 0.159426)} Vertex 18059 9.92891 -15.1924 -0.270535 {normal=(-0.671806 0.729307 0.033117)} Vertex 18060 10.5519 -15.5461 -0.275202 {normal=(-0.101628 0.990054 -0.053948)} Vertex 18061 9.8427 -15.5043 -0.250386 {normal=(-0.972892 -0.205060 0.104164)} Vertex 18062 10.0055 -15.4792 -0.0378115 {normal=(-0.459987 -0.152872 0.873998)} Vertex 18063 9.9664 -16.0113 -0.26971 {normal=(-0.916574 -0.357470 0.107553)} Vertex 18064 10.1042 -15.9065 -0.0448332 {normal=(-0.503894 -0.164621 0.847373)} Vertex 18065 10.4097 -15.7293 -0.0116942 {normal=(0.273088 0.160580 0.946897)} Vertex 18066 10.6369 -15.6301 -0.282012 {normal=(0.877553 0.405770 0.255233)} Vertex 18067 10.5333 -16.0172 0.0095315 {normal=(0.217812 0.241298 0.944398)} Vertex 18068 10.7164 -15.7942 -0.289906 {normal=(0.871262 0.423138 0.248536)} Vertex 18069 10.1992 -16.4902 -0.253124 {normal=(-0.693692 -0.664678 0.130477)} Vertex 18070 10.2998 -16.3348 -0.00620925 {normal=(-0.506593 -0.220638 0.832727)} Vertex 18071 10.549 -16.7038 -0.254832 {normal=(-0.413459 -0.891138 0.141654)} Vertex 18072 10.5701 -16.5142 -0.000441 {normal=(0.091529 -0.567258 0.798676)} Vertex 18073 10.6919 -16.1283 0.009247 {normal=(0.144532 0.313043 0.936280)} Vertex 18074 10.8273 -15.8714 -0.300785 {normal=(0.106440 0.977159 0.183929)} Vertex 18075 11.4096 -16.4845 -0.35648 {normal=(0.403856 -0.811191 0.347060)} Vertex 18076 11.0816 -15.7208 -0.379793 {normal=(-0.619596 0.774471 0.046707)} Vertex 18077 11.3186 -16.3205 -0.103533 {normal=(0.299850 -0.648425 0.670381)} Vertex 18078 11.1661 -15.9658 -0.0753888 {normal=(0.038593 0.369432 0.925953)} Vertex 18079 12.7091 -15.7601 -1.15624 {normal=(0.538275 -0.831783 -0.107726)} Vertex 18080 11.5681 -15.4715 -0.896087 {normal=(-0.474260 0.874079 -0.081596)} Vertex 18081 11.4882 -15.3116 -0.306367 {normal=(-0.855041 -0.112605 -0.442744)} Vertex 18082 12.7708 -15.5395 -0.206832 {normal=(0.545885 -0.689567 0.463903)} Vertex 18083 13.0047 -15.1441 -0.343456 {normal=(0.948580 0.079074 0.299031)} Vertex 18084 13.1093 -15.1862 -0.647911 {normal=(0.952554 0.065059 0.266473)} Vertex 18085 13.1008 -15.254 -0.96273 {normal=(0.869279 0.010085 -0.483473)} Vertex 18086 12.9035 -15.3428 -1.27192 {normal=(0.812353 -0.005306 -0.575148)} Vertex 18087 11.6837 -15.1212 -1.13684 {normal=(-0.972164 0.025819 -0.023101)} Vertex 18088 11.5646 -14.9792 -0.559822 {normal=(-0.943733 -0.100929 -0.284792)} Vertex 18089 11.3197 -14.7026 -0.0290285 {normal=(-0.937003 0.015909 -0.207641)} Vertex 18090 11.4275 -14.5129 0.481943 {normal=(-0.839846 0.157193 0.516998)} Vertex 18091 12.0458 -14.4422 0.822398 {normal=(-0.256673 0.358734 0.894398)} Vertex 18092 12.651 -14.4707 0.780419 {normal=(0.733225 0.288783 0.600749)} Vertex 18093 12.878 -14.6291 0.480007 {normal=(0.891287 0.160569 0.312269)} Vertex 18094 12.902 -14.8296 0.200615 {normal=(0.959303 -0.068297 0.105908)} Vertex 18095 12.8985 -15.0146 -0.0649992 {normal=(0.942829 -0.047962 0.204192)} Vertex 18096 12.6452 -15.4123 0.0871005 {normal=(0.510740 -0.643196 0.568157)} Vertex 18097 11.2845 -15.1187 0.163624 {normal=(-0.876245 0.265915 -0.241463)} Vertex 18098 11.3496 -14.9318 0.660387 {normal=(-0.790590 0.583607 0.056228)} Vertex 18099 11.9235 -14.9134 0.969897 {normal=(-0.204430 0.344479 0.915898)} Vertex 18100 12.549 -15.0112 0.925601 {normal=(0.520551 -0.390539 0.754622)} Vertex 18101 10.9702 -15.8204 0.133448 {normal=(-0.128303 -0.101715 -0.972629)} Vertex 18102 11.2105 -16.0929 0.275193 {normal=(0.488640 -0.552963 -0.674873)} Vertex 18103 10.885 -15.5231 0.346337 {normal=(-0.821996 0.521379 -0.083320)} Vertex 18104 11.397 -16.1474 0.566383 {normal=(0.572562 -0.812325 -0.000672)} Vertex 18105 10.7509 -15.789 0.371671 {normal=(-0.920372 0.359547 0.097561)} Vertex 18106 10.6477 -16.1966 0.165955 {normal=(-0.009041 0.015180 -0.994814)} Vertex 18107 10.652 -16.5919 0.27984 {normal=(0.487335 -0.558319 -0.671397)} Vertex 18108 10.7346 -16.6978 0.547815 {normal=(0.604706 -0.792344 -0.059092)} Vertex 18109 10.3645 -16.6251 0.280243 {normal=(-0.513581 -0.584101 -0.628243)} Vertex 18110 10.3735 -16.7359 0.551247 {normal=(-0.570216 -0.796547 0.195417)} Vertex 18111 10.6656 -15.9244 0.333244 {normal=(0.396506 0.699584 -0.564629)} Vertex 18112 10.4875 -16.2829 0.147081 {normal=(0.047649 0.004110 -0.998718)} Vertex 18113 10.4873 -15.8824 0.319906 {normal=(0.275806 0.847473 -0.431538)} Vertex 18114 10.2663 -16.1178 0.135738 {normal=(0.051479 0.006562 -0.998433)} Vertex 18115 10.0261 -16.3381 0.269989 {normal=(-0.486481 -0.602939 -0.632139)} Vertex 18116 9.96076 -16.4013 0.534708 {normal=(-0.685983 -0.687684 0.208191)} Vertex 18117 10.0519 -15.9865 0.124268 {normal=(0.089482 -0.056028 -0.991211)} Vertex 18118 9.72909 -16.0501 0.213149 {normal=(-0.478642 -0.608376 -0.633056)} Vertex 18119 9.61791 -16.0396 0.458633 {normal=(-0.803334 -0.553526 0.209073)} Vertex 18120 10.308 -15.8562 0.304009 {normal=(0.299172 0.861804 -0.386909)} Vertex 18121 9.61853 -15.717 0.382146 {normal=(-0.841538 0.527488 -0.019288)} Vertex 18122 10.2989 -15.8395 0.303067 {normal=(0.020449 -0.966488 0.245636)} Vertex 18123 10.0253 -15.8865 0.109378 {normal=(0.133370 -0.237579 -0.955589)} Vertex 18124 9.7171 -15.8052 0.161324 {normal=(-0.514823 0.181572 -0.837100)} Vertex 18125 10.4233 -15.7702 0.285552 {normal=(0.607217 -0.771676 -0.059405)} Vertex 18126 10.2001 -15.7001 0.0669153 {normal=(0.172457 -0.370065 -0.912132)} Vertex 18127 9.99401 -15.5052 0.0762488 {normal=(-0.467834 0.236970 -0.850214)} Vertex 18128 9.92558 -15.3682 0.279536 {normal=(-0.632911 0.738098 -0.114216)} Vertex 18129 10.3433 -15.25 -0.0247207 {normal=(-0.402828 0.245106 -0.881069)} Vertex 18130 10.3584 -15.1185 0.0279297 {normal=(-0.571859 0.795607 -0.168733)} Vertex 18131 10.6358 -15.5652 0.233961 {normal=(0.732658 -0.630865 -0.122646)} Vertex 18132 10.4613 -15.4638 0.017405 {normal=(0.251496 -0.334753 -0.903659)} Vertex 18133 10.5682 -14.9536 0.0122238 {normal=(0.297341 0.393611 -0.841618)} Vertex 18134 10.6638 -15.2459 0.0188735 {normal=(0.394361 -0.109676 -0.888213)} Vertex 18135 10.7835 -15.0877 0.0710202 {normal=(0.546707 0.186478 -0.780687)} Vertex 18136 10.18 -15.1952 0.214267 {normal=(-0.480090 0.858971 -0.168974)} Vertex 18137 10.6585 -14.8391 0.131917 {normal=(0.530050 0.519247 -0.632585)} Vertex 18138 10.8339 -14.9873 0.165544 {normal=(0.632133 0.376093 -0.638582)} Vertex 18139 10.7318 -14.8804 0.137816 {normal=(0.446323 0.560760 -0.684701)} Vertex 18140 10.6492 -14.9909 0.0151775 {normal=(0.348116 0.352387 -0.842537)} Vertex 18141 11.1035 -15.3172 0.234854 {normal=(-0.796424 0.485884 -0.244071)} Vertex 18142 12.1639 -15.5774 0.496323 {normal=(0.523426 -0.840879 0.087512)} Vertex 18143 11.9913 -15.648 0.207423 {normal=(0.331272 -0.932099 0.052608)} Vertex 18144 11.5947 -15.1995 0.99252 {normal=(-0.228810 0.333531 0.914033)} Vertex 18145 12.0681 -15.3513 1.00302 {normal=(0.421169 -0.414137 0.805382)} Vertex 18146 12.2066 -15.5005 0.76414 {normal=(0.612675 -0.765698 0.183482)} Vertex 18147 11.1562 -15.1708 0.667344 {normal=(-0.771087 0.602365 0.104024)} Vertex 18148 10.6999 -14.8882 0.484834 {normal=(0.462699 0.649011 0.559864)} Vertex 18149 10.7511 -14.8414 0.316252 {normal=(0.433827 0.809583 0.325458)} Vertex 18150 10.8499 -14.955 0.313433 {normal=(0.733039 0.571893 0.288833)} Vertex 18151 10.6788 -14.7981 0.319551 {normal=(0.363145 0.771499 0.058110)} Vertex 18152 10.2084 -15.1379 0.476786 {normal=(-0.473761 0.872404 -0.104858)} Vertex 18153 10.824 -15.0056 0.446729 {normal=(0.684391 0.456799 0.513927)} Vertex 18154 10.7243 -15.1237 0.578035 {normal=(0.565401 0.231624 0.762854)} Vertex 18155 10.6197 -14.8495 0.48856 {normal=(0.319435 0.693993 0.634722)} Vertex 18156 10.5354 -15.3139 0.703206 {normal=(0.436174 0.035625 0.894683)} Vertex 18157 10.6662 -15.5037 0.515468 {normal=(0.767607 -0.557693 0.220661)} Vertex 18158 10.418 -14.9981 0.579151 {normal=(-0.560923 0.818707 -0.065278)} Vertex 18159 10.4195 -15.0959 0.680315 {normal=(-0.235228 0.589628 0.771769)} Vertex 18160 9.95463 -15.3103 0.535609 {normal=(-0.627402 0.747808 -0.077306)} Vertex 18161 10.0716 -15.3506 0.756744 {normal=(-0.297758 0.582624 0.755337)} Vertex 18162 10.2841 -15.5329 0.800631 {normal=(0.367674 -0.013779 0.929743)} Vertex 18163 10.4588 -15.6997 0.594845 {normal=(0.639800 -0.701024 0.259575)} Vertex 18164 9.80173 -15.6349 0.855183 {normal=(-0.333749 0.542865 0.770138)} Vertex 18165 10.3363 -15.7547 0.637527 {normal=(-0.101038 -0.977283 0.172264)} Vertex 18166 9.65091 -15.6518 0.647295 {normal=(-0.841325 0.527059 -0.029843)} Vertex 18167 10.3436 -15.7624 0.647699 {normal=(0.304398 0.929681 -0.144850)} Vertex 18168 9.64877 -15.9687 0.728215 {normal=(-0.803141 -0.540758 0.240760)} Vertex 18169 9.80898 -15.8633 0.919177 {normal=(-0.345156 -0.177991 0.920957)} Vertex 18170 10.1366 -15.7768 0.904405 {normal=(0.218688 0.495153 0.830384)} Vertex 18171 9.98919 -16.3517 0.778813 {normal=(-0.689142 -0.681063 0.215622)} Vertex 18172 10.109 -16.1931 0.983373 {normal=(-0.379407 -0.215159 0.899280)} Vertex 18173 10.3638 -15.944 0.986792 {normal=(0.139840 0.462108 0.870525)} Vertex 18174 10.5303 -15.8039 0.701681 {normal=(0.240755 0.939109 -0.137143)} Vertex 18175 10.6138 -16.1489 1.05509 {normal=(0.217066 0.319718 0.917916)} Vertex 18176 10.722 -15.8624 0.745603 {normal=(0.605849 0.732058 0.311511)} Vertex 18177 10.4132 -16.6995 0.8386 {normal=(-0.573681 -0.796994 0.182629)} Vertex 18178 10.4741 -16.5166 1.06324 {normal=(-0.365021 -0.270601 0.890216)} Vertex 18179 10.774 -16.671 0.838895 {normal=(0.602277 -0.794562 0.044704)} Vertex 18180 10.764 -16.5222 1.08109 {normal=(0.346654 -0.486176 0.800235)} Vertex 18181 10.7839 -16.1101 1.08887 {normal=(-0.482062 0.307900 0.808566)} Vertex 18182 10.8144 -15.7453 0.784409 {normal=(-0.903847 0.388608 0.142201)} Vertex 18183 11.4326 -16.1122 0.821016 {normal=(0.609928 -0.781799 0.105449)} Vertex 18184 10.9665 -15.4535 0.745558 {normal=(-0.811893 0.539346 0.144044)} Vertex 18185 11.3407 -15.9813 1.05063 {normal=(0.388150 -0.432956 0.813268)} Vertex 18186 11.1464 -15.6744 1.05348 {normal=(-0.313499 0.326201 0.884735)} Vertex 18187 10.7373 -14.165 1.29854 {normal=(0.594273 -0.286490 0.750769)} Vertex 18188 10.5066 -13.8777 1.40168 {normal=(-0.038747 0.227110 0.971520)} Vertex 18189 10.2245 -13.7315 1.33939 {normal=(-0.085140 0.249161 0.961916)} Vertex 18190 9.92991 -13.7297 1.11166 {normal=(-0.777070 0.437436 0.446320)} Vertex 18191 9.86131 -13.9392 0.675226 {normal=(-0.847077 0.307048 -0.430369)} Vertex 18192 10.1099 -14.236 0.379308 {normal=(-0.334149 -0.048820 -0.934015)} Vertex 18193 10.4625 -14.4633 0.469301 {normal=(0.382693 -0.485694 -0.782466)} Vertex 18194 10.7391 -14.4557 0.889807 {normal=(0.766556 -0.636444 -0.065462)} Vertex 18195 10.6241 -13.9633 0.00584375 {normal=(-0.089294 -0.602943 -0.782214)} Vertex 18196 11.1581 -13.9078 0.43731 {normal=(0.636126 -0.764423 -0.029394)} Vertex 18197 11.3934 -13.3657 0.915846 {normal=(0.759201 0.111816 0.588634)} Vertex 18198 11.162 -12.9162 1.07866 {normal=(0.504365 0.395016 0.728250)} Vertex 18199 11.1258 -13.6917 1.1809 {normal=(0.576598 -0.280111 0.767469)} Vertex 18200 10.881 -13.3193 1.29609 {normal=(-0.079841 0.159753 0.982747)} Vertex 18201 10.5565 -14.1913 0.264037 {normal=(-0.097444 -0.739607 -0.650715)} Vertex 18202 10.9821 -14.134 0.711664 {normal=(0.732093 -0.671166 -0.102194)} Vertex 18203 10.2332 -14.7713 0.590915 {normal=(0.255991 -0.570027 -0.776685)} Vertex 18204 10.3925 -14.8927 0.989847 {normal=(0.830797 -0.544224 -0.012754)} Vertex 18205 10.3188 -14.751 1.40773 {normal=(0.643713 -0.310405 0.698108)} Vertex 18206 10.1275 -14.4928 1.55505 {normal=(0.012700 0.222237 0.971412)} Vertex 18207 10.1898 -15.237 0.892284 {normal=(0.905151 -0.422200 -0.031171)} Vertex 18208 10.0483 -15.2649 1.26801 {normal=(0.335864 -0.761678 0.552342)} Vertex 18209 9.81355 -15.0616 1.42939 {normal=(-0.417692 -0.451007 0.784453)} Vertex 18210 10.1008 -14.9616 0.572117 {normal=(0.713662 0.572186 -0.339201)} Vertex 18211 9.61889 -15.42 1.09843 {normal=(-0.454883 -0.550313 0.694581)} Vertex 18212 10.0461 -15.0624 0.36784 {normal=(0.643475 0.426929 -0.580253)} Vertex 18213 10.1161 -15.3859 0.649031 {normal=(0.896946 -0.427004 -0.096847)} Vertex 18214 9.9133 -15.5344 0.966834 {normal=(0.349200 -0.799520 0.487344)} Vertex 18215 9.89133 -15.2748 0.149092 {normal=(0.543892 0.276077 -0.763592)} Vertex 18216 9.96201 -15.5958 0.406852 {normal=(0.868299 -0.456643 -0.188403)} Vertex 18217 9.7683 -15.77 0.657895 {normal=(0.370228 -0.812521 0.449719)} Vertex 18218 9.48241 -15.657 0.775885 {normal=(-0.449854 -0.607308 0.649530)} Vertex 18219 9.61719 -16.0295 0.318597 {normal=(0.421360 -0.799275 0.426976)} Vertex 18220 9.45055 -16.0974 0.331033 {normal=(-0.170025 -0.690963 0.691381)} Vertex 18221 9.65376 -15.5894 -0.0803627 {normal=(0.446501 0.176245 -0.857751)} Vertex 18222 9.76008 -15.8427 0.141438 {normal=(0.812065 -0.499824 -0.287415)} Vertex 18223 9.29239 -16.2505 0.125758 {normal=(0.118507 -0.969198 -0.031839)} Vertex 18224 9.5474 -16.031 -0.056035 {normal=(0.620317 -0.629692 -0.417715)} Vertex 18225 9.35159 -16.1076 -0.166424 {normal=(0.305329 -0.728863 -0.564737)} Vertex 18226 9.36819 -15.8505 0.513461 {normal=(-0.386057 -0.603139 0.683290)} Vertex 18227 9.07292 -16.2279 0.0439913 {normal=(-0.331019 -0.891295 -0.094053)} Vertex 18228 9.1735 -16.0921 -0.219445 {normal=(-0.092145 -0.652812 -0.688162)} Vertex 18229 9.09489 -16.2103 -0.077505 {normal=(-0.237610 -0.821317 -0.371381)} Vertex 18230 9.3181 -16.2304 0.006999 {normal=(0.217707 -0.890801 -0.283708)} Vertex 18231 8.82605 -15.851 -0.048962 {normal=(-0.870047 -0.052984 -0.403568)} Vertex 18232 8.91232 -16.07 -0.098545 {normal=(-0.672114 -0.489864 -0.418485)} Vertex 18233 9.02527 -15.9827 -0.242689 {normal=(-0.496271 -0.353391 -0.724798)} Vertex 18234 8.88218 -16.0813 0.0222125 {normal=(-0.760618 -0.560080 -0.144305)} Vertex 18235 9.09592 -15.6415 0.481609 {normal=(-0.586576 -0.453804 0.656714)} Vertex 18236 8.95834 -15.8103 -0.21775 {normal=(-0.708321 0.044539 -0.661429)} Vertex 18237 8.97077 -15.587 -0.122059 {normal=(-0.701069 0.390580 -0.563022)} Vertex 18238 8.79539 -15.8671 0.0694168 {normal=(-0.953285 -0.142084 -0.158539)} Vertex 18239 9.07124 -15.3097 0.0583655 {normal=(-0.635130 0.611669 -0.463170)} Vertex 18240 9.37127 -15.3692 -0.116487 {normal=(0.189977 0.371650 -0.889683)} Vertex 18241 8.87201 -15.6516 0.264619 {normal=(-0.706027 -0.290061 0.634122)} Vertex 18242 8.89811 -15.4755 0.235711 {normal=(-0.934887 0.244667 0.254898)} Vertex 18243 9.20276 -15.4418 0.743878 {normal=(-0.568809 -0.517577 0.633812)} Vertex 18244 9.05319 -15.2195 0.575592 {normal=(-0.943725 0.196613 0.265324)} Vertex 18245 9.21774 -15.0195 0.317405 {normal=(-0.616152 0.689793 -0.378202)} Vertex 18246 9.58252 -15.0339 0.109941 {normal=(0.249747 0.505808 -0.797683)} Vertex 18247 9.18684 -14.9737 0.883926 {normal=(-0.939839 0.193012 0.280873)} Vertex 18248 9.34092 -14.7878 0.559702 {normal=(-0.617719 0.716122 -0.324200)} Vertex 18249 9.71384 -14.806 0.329717 {normal=(0.340155 0.657164 -0.624885)} Vertex 18250 9.33539 -15.2011 1.06673 {normal=(-0.530175 -0.487448 0.687548)} Vertex 18251 9.76563 -14.6948 0.524091 {normal=(0.432772 0.776231 -0.405906)} Vertex 18252 9.53881 -14.8431 1.38594 {normal=(-0.484850 -0.385554 0.780774)} Vertex 18253 9.33955 -14.7038 1.16095 {normal=(-0.875042 0.320003 0.334112)} Vertex 18254 9.42061 -14.6276 0.780656 {normal=(-0.664800 0.665157 -0.329597)} Vertex 18255 9.88039 -14.3244 1.49783 {normal=(-0.107820 0.309220 0.941024)} Vertex 18256 9.63675 -14.2779 1.25422 {normal=(-0.786712 0.468651 0.394872)} Vertex 18257 9.61017 -14.3526 0.819498 {normal=(-0.774536 0.480868 -0.386355)} Vertex 18258 9.8859 -14.5359 0.516849 {normal=(-0.414547 -0.253290 -0.866119)} Vertex 18259 9.91967 -13.5596 0.471917 {normal=(-0.923472 -0.341029 -0.082817)} Vertex 18260 10.1453 -13.9005 0.163674 {normal=(-0.777464 -0.570373 -0.214628)} Vertex 18261 10.4973 -13.1446 1.24238 {normal=(-0.084817 0.137764 0.985357)} Vertex 18262 10.091 -13.2334 0.987803 {normal=(-0.800258 0.360930 0.478718)} Vertex 18263 10.755 -12.7311 1.09297 {normal=(0.300181 0.510024 0.800795)} Vertex 18264 10.2709 -12.8889 0.805286 {normal=(-0.754520 0.642719 0.001042)} Vertex 18265 9.96253 -13.3004 0.208908 {normal=(-0.834980 0.520783 -0.144443)} Vertex 18266 10.1439 -13.6476 -0.0976915 {normal=(-0.244579 -0.453511 -0.847261)} Vertex 18267 13.1004 -1.27789 -4.01498 {normal=(0.913846 0.191386 -0.352955)} Vertex 18268 12.886 -1.28328 -4.51262 {normal=(0.893936 0.175655 -0.409581)} Vertex 18269 11.7565 -0.053086 -5.33972 {normal=(0.513857 0.172545 -0.830359)} Vertex 18270 11.0058 -1.5807 -5.83807 {normal=(0.013083 0.047949 -0.959611)} Vertex 18271 10.2 -1.71982 -5.63033 {normal=(-0.468434 0.015481 -0.847378)} Vertex 18272 9.17786 -1.73246 -4.09787 {normal=(-0.951364 0.053023 -0.126397)} Vertex 18273 9.23676 -1.77189 -3.16126 {normal=(-0.913818 0.069563 0.339462)} Vertex 18274 13.0344 -1.31754 -2.76257 {normal=(0.908548 0.198254 0.340600)} Vertex 18275 13.271 -1.26805 -3.49451 {normal=(0.934105 0.193086 -0.021685)} Vertex 18276 9.67235 -1.74287 -2.51484 {normal=(-0.760813 0.089299 0.629471)} Vertex 18277 13.5677 -2.99752 -2.78114 {normal=(0.927220 0.281034 0.235992)} Vertex 18278 13.6739 -2.99092 -3.57058 {normal=(0.935232 0.250006 -0.063048)} Vertex 18279 13.5154 -3.01941 -4.15966 {normal=(0.900779 0.218441 -0.366180)} Vertex 18280 13.2376 -3.04464 -4.68284 {normal=(0.869480 0.173667 -0.458786)} Vertex 18281 12.8458 -3.07153 -5.23806 {normal=(0.700886 0.102961 -0.661535)} Vertex 18282 12.1105 -3.13829 -5.70633 {normal=(0.374941 0.024811 -0.905576)} Vertex 18283 10.2643 -3.30124 -5.67486 {normal=(-0.438137 -0.037141 -0.873507)} Vertex 18284 11.1565 -3.22022 -5.87249 {normal=(-0.025066 -0.022407 -0.969333)} Vertex 18285 9.60971 -3.36069 -5.13828 {normal=(-0.759601 -0.037690 -0.606128)} Vertex 18286 9.16076 -3.39383 -4.10233 {normal=(-0.946397 -0.030683 -0.160197)} Vertex 18287 9.17723 -3.39233 -3.0696 {normal=(-0.925046 -0.000927 0.308277)} Vertex 18288 9.59562 -3.36196 -2.35094 {normal=(-0.787666 0.052929 0.598750)} Vertex 18289 12.649 -3.08178 -1.25673 {normal=(0.458495 0.251585 0.789996)} Vertex 18290 10.3578 -3.29276 -1.56723 {normal=(-0.567312 0.122652 0.791116)} Vertex 18291 11.5136 -3.1878 -1.0411 {normal=(-0.112657 0.193307 0.923033)} Vertex 18292 11.8244 5.69827 -2.20344 {normal=(0.887118 0.033041 0.386014)} Vertex 18293 12.3165 1.66558 -2.1398 {normal=(0.855414 0.138410 0.471040)} Vertex 18294 12.1413 4.30726 -2.47763 {normal=(0.880486 0.108421 0.383467)} Vertex 18295 12.3001 2.84283 -2.45353 {normal=(0.883316 0.102300 0.393334)} Vertex 18296 10.6498 0.386163 -1.28258 {normal=(-0.287188 -0.539570 0.695100)} Vertex 18297 9.457 1.94182 -2.32586 {normal=(-0.797668 -0.331421 0.390005)} Vertex 18298 9.94987 0.63454 -2.19166 {normal=(-0.734583 -0.318638 0.526276)} Vertex 18299 8.81991 6.66755 -5.20468 {normal=(-0.407248 -0.010077 -0.852068)} Vertex 18300 9.78402 7.1004 -5.23355 {normal=(0.137906 0.142395 -0.922692)} Vertex 18301 12.5423 4.28274 -3.50999 {normal=(0.967508 0.244004 -0.022212)} Vertex 18302 12.1229 5.70163 -3.58774 {normal=(0.928812 0.341835 -0.079752)} Vertex 18303 10.7145 7.40039 -4.79212 {normal=(0.588181 0.284917 -0.703784)} Vertex 18304 11.5456 6.42766 -1.55983 {normal=(0.864499 -0.082441 0.443595)} Vertex 18305 11.1524 6.62862 -0.77483 {normal=(0.769626 -0.084529 0.599677)} Vertex 18306 9.12478 6.59367 -0.0737395 {normal=(-0.354265 -0.455400 0.773538)} Vertex 18307 11.6627 6.66395 -3.78739 {normal=(0.875921 0.388810 -0.246524)} Vertex 18308 10.5675 6.52876 -0.16835 {normal=(0.534559 -0.123142 0.795083)} Vertex 18309 9.94073 6.39922 0.0880828 {normal=(0.080602 -0.265970 0.907623)} Vertex 18310 6.11907 9.56089 -3.37175 {normal=(-0.889468 -0.400354 -0.172489)} Vertex 18311 5.82284 10.1637 -3.36627 {normal=(-0.908733 -0.274512 -0.233681)} Vertex 18312 5.60588 10.8355 -2.83809 {normal=(-0.930660 0.025887 -0.188018)} Vertex 18313 5.5542 11.0949 -1.96851 {normal=(-0.934872 0.142815 0.015879)} Vertex 18314 5.63511 10.6625 -0.997702 {normal=(-0.924929 0.010309 0.224740)} Vertex 18315 5.84843 9.96762 -0.588068 {normal=(-0.891594 -0.301466 0.261199)} Vertex 18316 6.06284 9.50294 -0.61963 {normal=(-0.862590 -0.416504 0.226495)} Vertex 18317 6.38532 8.82922 -1.15066 {normal=(-0.856625 -0.505856 0.059842)} Vertex 18318 6.48077 8.74409 -2.20298 {normal=(-0.881420 -0.457452 -0.005423)} Vertex 18319 6.88983 7.79056 -2.38614 {normal=(-0.926046 -0.269647 0.100356)} Vertex 18320 6.65356 8.5077 -3.91095 {normal=(-0.883796 -0.328046 -0.261072)} Vertex 18321 6.39291 9.46479 -4.30677 {normal=(-0.839906 -0.283187 -0.412581)} Vertex 18322 6.10634 10.416 -4.27228 {normal=(-0.816641 -0.037487 -0.510623)} Vertex 18323 5.99848 11.0527 -3.96152 {normal=(-0.789073 0.267454 -0.479648)} Vertex 18324 5.97517 11.5641 -3.41872 {normal=(-0.747675 0.481787 -0.371386)} Vertex 18325 5.94103 11.9253 -2.74821 {normal=(-0.718870 0.603575 -0.190671)} Vertex 18326 5.93222 12.0185 -2.0202 {normal=(-0.698573 0.647543 0.049204)} Vertex 18327 5.95111 11.8187 -1.17266 {normal=(-0.680126 0.580081 0.312566)} Vertex 18328 6.00435 11.2556 -0.39285 {normal=(-0.670858 0.422477 0.515808)} Vertex 18329 6.05139 10.6315 0.0726425 {normal=(-0.697108 0.180496 0.605843)} Vertex 18330 6.18104 10.0778 0.242451 {normal=(-0.716353 -0.125888 0.616438)} Vertex 18331 6.45438 9.35414 0.197318 {normal=(-0.717671 -0.350944 0.557831)} Vertex 18332 6.65177 8.66411 -0.0448602 {normal=(-0.745569 -0.482644 0.407186)} Vertex 18333 6.83835 8.19674 -0.507845 {normal=(-0.763477 -0.582597 0.217989)} Vertex 18334 7.77418 7.98077 0.407758 {normal=(-0.476746 -0.543215 0.645187)} Vertex 18335 7.82331 7.50604 -0.0503432 {normal=(-0.549483 -0.648761 0.474618)} Vertex 18336 8.01689 7.02162 -0.561473 {normal=(-0.656859 -0.495477 0.518355)} Vertex 18337 7.67474 6.7652 -1.29067 {normal=(-0.771546 -0.270392 0.542954)} Vertex 18338 6.93157 6.70982 -2.48978 {normal=(-0.919528 -0.122232 0.188541)} Vertex 18339 6.85036 6.6832 -3.4677 {normal=(-0.911534 -0.089452 -0.318055)} Vertex 18340 7.23651 7.003 -3.95128 {normal=(-0.820731 -0.136355 -0.531455)} Vertex 18341 7.45914 7.71223 -4.52092 {normal=(-0.721942 -0.277231 -0.586816)} Vertex 18342 7.25316 8.9343 -5.08468 {normal=(-0.610139 -0.240148 -0.706825)} Vertex 18343 6.9842 10.3175 -5.16499 {normal=(-0.545741 0.097738 -0.770746)} Vertex 18344 6.96141 11.3398 -4.73659 {normal=(-0.472198 0.481738 -0.678180)} Vertex 18345 7.00302 12.0996 -3.89524 {normal=(-0.409617 0.736643 -0.474446)} Vertex 18346 7.0177 12.5287 -2.93033 {normal=(-0.382041 0.867866 -0.205260)} Vertex 18347 6.96726 12.5423 -1.86492 {normal=(-0.364117 0.884201 0.138026)} Vertex 18348 7.00826 12.1758 -0.79186 {normal=(-0.325094 0.774317 0.481412)} Vertex 18349 7.18137 11.4455 0.0795598 {normal=(-0.287348 0.613922 0.704635)} Vertex 18350 7.31077 10.6037 0.725531 {normal=(-0.308123 0.373576 0.830452)} Vertex 18351 7.43107 9.79609 0.97339 {normal=(-0.369921 0.001967 0.877877)} Vertex 18352 7.6513 8.82825 0.83021 {normal=(-0.410683 -0.333912 0.809419)} Vertex 18353 8.20213 12.847 -1.82478 {normal=(-0.090470 0.950374 0.169008)} Vertex 18354 8.35509 12.0113 -0.236835 {normal=(-0.037139 0.732424 0.638275)} Vertex 18355 9.56358 12.75 -1.70348 {normal=(0.202772 0.922327 0.193858)} Vertex 18356 9.46615 12.3557 -0.68937 {normal=(0.162225 0.790893 0.533538)} Vertex 18357 10.3009 3.13545 -5.64696 {normal=(0.062613 -0.075703 -0.989578)} Vertex 18358 8.22326 10.2488 -5.71071 {normal=(-0.116263 0.182999 -0.911293)} Vertex 18359 9.32421 10.4572 -5.49794 {normal=(0.328799 0.303766 -0.836870)} Vertex 18360 8.21864 11.5289 -5.11546 {normal=(-0.037504 0.580203 -0.742363)} Vertex 18361 10.0776 10.4885 -4.98402 {normal=(0.555454 0.355144 -0.721059)} Vertex 18362 9.41036 11.6273 -4.59585 {normal=(0.409999 0.658294 -0.611559)} Vertex 18363 11.7578 6.67526 -1.61583 {normal=(0.773148 -0.336112 0.517815)} Vertex 18364 12.0686 7.12911 -1.6335 {normal=(0.796485 -0.351078 0.461316)} Vertex 18365 8.21787 12.3672 -4.12961 {normal=(-0.001655 0.820913 -0.506644)} Vertex 18366 9.56128 12.4478 -3.40909 {normal=(0.289285 0.837105 -0.440150)} Vertex 18367 10.261 11.7371 -3.94428 {normal=(0.458434 0.655212 -0.579841)} Vertex 18368 10.9171 10.5833 -4.32566 {normal=(0.601318 0.355353 -0.686742)} Vertex 18369 11.7976 10.6985 -3.47308 {normal=(0.746455 0.367840 -0.469799)} Vertex 18370 11.1875 11.8218 -3.16831 {normal=(0.594584 0.645500 -0.393088)} Vertex 18371 10.4714 12.516 -2.65749 {normal=(0.409912 0.845662 -0.222526)} Vertex 18372 10.8573 12.2156 -1.44302 {normal=(0.523834 0.760496 0.278292)} Vertex 18373 10.6301 11.7368 -0.474565 {normal=(0.440515 0.586496 0.615336)} Vertex 18374 10.0242 11.0882 0.19323 {normal=(0.352710 0.450330 0.795650)} Vertex 18375 8.72375 10.5277 1.00196 {normal=(0.061824 0.437680 0.865720)} Vertex 18376 8.93427 9.48012 1.36132 {normal=(0.063968 0.093483 0.938755)} Vertex 18377 9.88158 9.61864 0.974645 {normal=(0.434870 0.195303 0.845783)} Vertex 18378 10.9321 10.1865 -0.0168955 {normal=(0.581420 0.195575 0.774754)} Vertex 18379 11.5158 10.8367 -0.613921 {normal=(0.671814 0.329631 0.599779)} Vertex 18380 11.7006 11.3764 -1.49091 {normal=(0.776408 0.517809 0.267794)} Vertex 18381 11.6261 11.6653 -2.34873 {normal=(0.759202 0.604362 -0.054119)} Vertex 18382 12.151 10.6494 -2.51092 {normal=(0.903054 0.360728 -0.110588)} Vertex 18383 12.1937 10.4625 -1.65977 {normal=(0.917144 0.284346 0.195257)} Vertex 18384 11.9937 9.94222 -0.874533 {normal=(0.798925 0.106798 0.528566)} Vertex 18385 12.1761 9.22386 -1.16442 {normal=(0.846819 -0.025823 0.468885)} Vertex 18386 11.6934 8.54237 -0.69214 {normal=(0.714335 -0.165848 0.677334)} Vertex 18387 11.4666 9.30188 -0.361518 {normal=(0.685908 -0.029129 0.718817)} Vertex 18388 10.8577 8.79204 0.248396 {normal=(0.667540 -0.046823 0.727193)} Vertex 18389 11.0456 7.8947 -0.148587 {normal=(0.666975 -0.245598 0.699069)} Vertex 18390 10.1694 7.46266 0.497795 {normal=(0.379604 -0.395583 0.779605)} Vertex 18391 10.1125 8.45189 0.927315 {normal=(0.449258 -0.147533 0.821623)} Vertex 18392 9.10905 8.36449 1.15449 {normal=(0.008965 -0.296088 0.905874)} Vertex 18393 9.16212 7.42541 0.650841 {normal=(-0.094232 -0.537315 0.800006)} Vertex 18394 9.13797 6.87751 0.178282 {normal=(-0.231888 -0.578355 0.744148)} Vertex 18395 10.054 6.78269 0.193826 {normal=(0.229482 -0.417369 0.818127)} Vertex 18396 11.4127 7.09782 -0.897472 {normal=(0.726538 -0.275115 0.624538)} Vertex 18397 11.8608 7.77903 -1.07312 {normal=(0.734736 -0.252850 0.622373)} Vertex 18398 12.2672 8.52423 -1.45229 {normal=(0.864697 -0.103563 0.438525)} Vertex 18399 7.98261 6.1199 -4.46757 {normal=(-0.726212 -0.008407 -0.678219)} Vertex 18400 7.57954 5.3799 -4.1097 {normal=(-0.785272 -0.123616 -0.587219)} Vertex 18401 7.04025 5.50686 -3.39309 {normal=(-0.870134 -0.215331 -0.343713)} Vertex 18402 9.27155 -0.578494 -3.89942 {normal=(-0.962122 -0.003360 -0.055320)} Vertex 18403 9.06851 1.49103 -4.09319 {normal=(-0.924688 -0.257394 -0.259996)} Vertex 18404 9.62393 1.72725 -5.35943 {normal=(-0.659002 -0.134926 -0.692065)} Vertex 18405 9.29814 2.84396 -5.38697 {normal=(-0.564709 -0.204806 -0.757970)} Vertex 18406 8.99096 3.8587 -5.40845 {normal=(-0.540714 -0.167765 -0.791071)} Vertex 18407 8.31942 4.05206 -4.70059 {normal=(-0.781842 -0.236304 -0.550679)} Vertex 18408 8.80373 2.70623 -4.66188 {normal=(-0.817883 -0.309052 -0.454733)} Vertex 18409 9.28522 1.54833 -4.73996 {normal=(-0.868138 -0.217319 -0.414403)} Vertex 18410 12.3871 9.69858 -1.89119 {normal=(0.968182 0.136426 0.143056)} Vertex 18411 12.3817 9.79827 -2.58612 {normal=(0.964700 0.186857 -0.119691)} Vertex 18412 12.1509 9.61238 -3.47594 {normal=(0.830071 0.111913 -0.467129)} Vertex 18413 12.3121 8.78421 -3.19684 {normal=(0.873651 -0.029485 -0.371119)} Vertex 18414 12.4034 8.18661 -2.8659 {normal=(0.913015 -0.100445 -0.257464)} Vertex 18415 12.4391 7.88813 -2.56383 {normal=(0.950643 -0.165366 -0.139934)} Vertex 18416 12.4261 7.73809 -2.18611 {normal=(0.952624 -0.205445 0.103583)} Vertex 18417 12.3518 7.93463 -1.8011 {normal=(0.905041 -0.176192 0.343579)} Vertex 18418 12.016 6.52842 -2.25613 {normal=(0.890396 -0.252959 0.246013)} Vertex 18419 12.2074 6.94379 -2.19009 {normal=(0.896863 -0.349497 0.127332)} Vertex 18420 12.1678 7.10165 -2.72338 {normal=(0.910522 -0.229966 -0.265968)} Vertex 18421 11.9611 7.41293 -3.25783 {normal=(0.831419 -0.149163 -0.516889)} Vertex 18422 11.6912 8.12764 -3.81028 {normal=(0.748750 -0.115444 -0.644056)} Vertex 18423 11.3847 9.25472 -4.27895 {normal=(0.685317 0.038567 -0.713711)} Vertex 18424 10.5483 9.08002 -4.92733 {normal=(0.622697 0.040394 -0.770476)} Vertex 18425 9.61543 8.92436 -5.53128 {normal=(0.346338 -0.023224 -0.891428)} Vertex 18426 8.45123 8.61344 -5.64402 {normal=(-0.167588 -0.165809 -0.918434)} Vertex 18427 8.72736 7.24303 -5.2844 {normal=(-0.302163 -0.208470 -0.861994)} Vertex 18428 9.72503 7.66901 -5.28144 {normal=(0.258879 -0.061373 -0.911725)} Vertex 18429 10.6807 7.94067 -4.76155 {normal=(0.634489 0.036420 -0.744526)} Vertex 18430 10.802 6.9269 -5.07103 {normal=(0.451206 0.429621 -0.739325)} Vertex 18431 11.013 6.05635 -5.46032 {normal=(0.342013 0.349609 -0.842537)} Vertex 18432 10.2583 5.81914 -5.65242 {normal=(0.030782 0.244612 -0.952385)} Vertex 18433 9.95757 6.6214 -5.39191 {normal=(0.049250 0.288238 -0.922846)} Vertex 18434 9.07364 4.72304 -5.54893 {normal=(-0.456665 -0.027225 -0.864989)} Vertex 18435 8.29345 5.13894 -4.91033 {normal=(-0.686176 -0.034112 -0.691935)} Vertex 18436 9.07994 6.16059 -5.37829 {normal=(-0.362010 0.141070 -0.893596)} Vertex 18437 9.52238 5.3891 -5.67222 {normal=(-0.251596 0.129374 -0.943562)} Vertex 18438 9.90912 4.6131 -5.8011 {normal=(-0.100313 -0.013402 -0.981032)} Vertex 18439 10.1639 3.85566 -5.73025 {normal=(0.010630 -0.121225 -0.990372)} Vertex 18440 9.81481 3.03327 -5.64968 {normal=(-0.199485 -0.104528 -0.955943)} Vertex 18441 9.96877 1.93263 -5.60469 {normal=(-0.285650 -0.029399 -0.923026)} Vertex 18442 10.4098 2.01203 -5.61923 {normal=(0.070761 0.051168 -0.980842)} Vertex 18443 10.91 1.98294 -5.49251 {normal=(0.331454 0.061325 -0.925673)} Vertex 18444 10.8156 3.14982 -5.56649 {normal=(0.253392 -0.114795 -0.950276)} Vertex 18445 10.746 3.92108 -5.71036 {normal=(0.162679 -0.136329 -0.970272)} Vertex 18446 11.4206 3.04755 -5.27522 {normal=(0.472461 -0.146827 -0.854899)} Vertex 18447 11.542 1.90027 -5.13227 {normal=(0.552014 0.041441 -0.818633)} Vertex 18448 12.1642 1.8363 -4.60538 {normal=(0.671657 0.025218 -0.731179)} Vertex 18449 12.1506 2.90673 -4.71611 {normal=(0.675103 -0.111619 -0.713585)} Vertex 18450 11.4304 3.96211 -5.52761 {normal=(0.397057 -0.139624 -0.889287)} Vertex 18451 10.557 4.85893 -5.79172 {normal=(0.086970 0.041494 -0.979149)} Vertex 18452 11.2857 5.01879 -5.65076 {normal=(0.337966 0.098468 -0.907850)} Vertex 18453 12.1331 4.00626 -5.06453 {normal=(0.677391 -0.067677 -0.697360)} Vertex 18454 12.2231 5.41023 -4.7397 {normal=(0.839932 0.320078 -0.339390)} Vertex 18455 11.7136 6.43583 -4.28384 {normal=(0.815403 0.502885 -0.241846)} Vertex 18456 11.6629 6.91226 -3.55413 {normal=(0.864302 0.134002 -0.424879)} Vertex 18457 12.0271 6.6028 -2.91624 {normal=(0.935137 -0.007783 -0.148056)} Vertex 18458 12.1911 5.78563 -3.05929 {normal=(0.943163 0.171434 0.074243)} Vertex 18459 12.2079 5.60427 -4.0623 {normal=(0.910446 0.381802 -0.078473)} Vertex 18460 12.5457 4.11498 -4.48777 {normal=(0.893421 0.082373 -0.361303)} Vertex 18461 12.5431 4.30579 -3.11733 {normal=(0.932210 0.192159 0.181528)} Vertex 18462 13.055 0.124344 -3.34166 {normal=(0.954444 0.081764 0.024769)} Vertex 18463 12.8628 2.90856 -3.23455 {normal=(0.952511 0.165815 0.079444)} Vertex 18464 12.6454 2.86853 -4.21671 {normal=(0.854317 -0.002860 -0.468628)} Vertex 18465 12.7129 1.88 -4.09934 {normal=(0.819277 0.023169 -0.544151)} Vertex 18466 12.7648 1.00859 -4.06548 {normal=(0.846092 0.065561 -0.512727)} Vertex 18467 12.9254 1.94628 -3.65125 {normal=(0.943796 0.060177 -0.306399)} Vertex 18468 13.0025 1.95471 -3.2835 {normal=(0.978813 0.089975 -0.042900)} Vertex 18469 12.8688 1.06049 -2.80579 {normal=(0.915254 0.033977 0.354185)} Vertex 18470 12.6159 2.85432 -2.80603 {normal=(0.861755 0.137686 0.442315)} Vertex 18471 12.3601 4.31801 -2.70493 {normal=(0.841380 0.102078 0.516883)} Vertex 18472 12.0618 5.7868 -2.4625 {normal=(0.876504 -0.015062 0.426507)} Vertex 18473 12.1267 4.35475 -1.86549 {normal=(0.968019 0.178450 0.158515)} Vertex 18474 11.7801 5.65644 -1.6887 {normal=(0.944342 0.223921 0.216426)} Vertex 18475 11.2851 6.24739 -0.800755 {normal=(0.787675 0.186881 0.534089)} Vertex 18476 11.5907 5.50503 -0.834686 {normal=(0.799785 0.274205 0.462369)} Vertex 18477 11.957 4.36765 -0.877484 {normal=(0.835440 0.174809 0.424465)} Vertex 18478 12.1907 3.04716 -0.975502 {normal=(0.862257 -0.011223 0.404622)} Vertex 18479 12.3031 2.9447 -1.89254 {normal=(0.979334 0.048380 0.168773)} Vertex 18480 12.816 1.87628 -2.85024 {normal=(0.897070 0.120074 0.348167)} Vertex 18481 12.195 1.66857 -1.71136 {normal=(0.903429 -0.012366 0.364517)} Vertex 18482 12.0467 1.79203 -1.0355 {normal=(0.772372 -0.191621 0.536588)} Vertex 18483 11.4526 1.97112 -0.455892 {normal=(0.393237 -0.259689 0.822770)} Vertex 18484 11.5298 3.0589 -0.276378 {normal=(0.454568 -0.083711 0.817255)} Vertex 18485 11.2982 4.22608 -0.156718 {normal=(0.436292 0.070759 0.834846)} Vertex 18486 10.9865 5.21487 -0.16543 {normal=(0.428641 0.152057 0.837846)} Vertex 18487 10.7167 6.03987 -0.189058 {normal=(0.476860 0.087407 0.832135)} Vertex 18488 7.48493 4.27988 -3.28396 {normal=(-0.856518 -0.398678 -0.218574)} Vertex 18489 8.3284 2.8119 -3.3708 {normal=(-0.875421 -0.431567 -0.101128)} Vertex 18490 8.90315 1.55454 -3.48047 {normal=(-0.933823 -0.294657 -0.054440)} Vertex 18491 9.16095 0.370506 -3.64874 {normal=(-0.965153 -0.145142 -0.036516)} Vertex 18492 9.22759 0.427015 -2.93112 {normal=(-0.838351 -0.184555 0.420244)} Vertex 18493 8.86937 1.66852 -2.88309 {normal=(-0.789537 -0.303273 0.409331)} Vertex 18494 8.2372 2.99113 -2.76435 {normal=(-0.738900 -0.443545 0.375320)} Vertex 18495 7.38719 4.3969 -2.57454 {normal=(-0.777640 -0.421246 0.306591)} Vertex 18496 6.95708 5.61133 -2.45541 {normal=(-0.857190 -0.230076 0.247832)} Vertex 18497 7.66836 5.82568 -1.49647 {normal=(-0.676841 -0.301233 0.651603)} Vertex 18498 7.85812 4.60145 -1.99019 {normal=(-0.598167 -0.411937 0.678689)} Vertex 18499 8.57907 4.71156 -1.22214 {normal=(-0.895547 -0.235244 0.334766)} Vertex 18500 8.68361 5.6283 -0.629883 {normal=(-0.743037 -0.146893 0.617033)} Vertex 18501 8.97301 6.28735 -0.228739 {normal=(-0.516473 -0.232301 0.786924)} Vertex 18502 9.38166 4.78956 -0.162517 {normal=(-0.424626 -0.105411 0.863202)} Vertex 18503 8.79109 4.69891 -0.662952 {normal=(-0.784934 -0.145602 0.523646)} Vertex 18504 9.33311 5.68296 -0.0859172 {normal=(-0.398937 -0.113233 0.884152)} Vertex 18505 10.0286 5.88097 0.0392465 {normal=(0.029568 -0.068460 0.959240)} Vertex 18506 10.1698 4.97213 0.0230042 {normal=(-0.014882 -0.003559 0.977731)} Vertex 18507 10.3354 3.99572 -0.000822751 {normal=(-0.043995 -0.060260 0.972795)} Vertex 18508 10.5333 2.94471 -0.114048 {normal=(-0.038091 -0.161197 0.961954)} Vertex 18509 10.131 1.75076 -0.493674 {normal=(-0.337426 -0.393542 0.827090)} Vertex 18510 9.75014 2.72642 -0.327389 {normal=(-0.428648 -0.239114 0.840261)} Vertex 18511 9.48741 3.75951 -0.249891 {normal=(-0.462651 -0.157919 0.835461)} Vertex 18512 8.94183 3.55119 -0.885473 {normal=(-0.818259 -0.220720 0.409512)} Vertex 18513 8.84974 3.43113 -1.64898 {normal=(-0.932927 -0.310918 0.142079)} Vertex 18514 8.55651 3.23159 -2.36414 {normal=(-0.592397 -0.411094 0.688921)} Vertex 18515 9.1981 1.81886 -2.55205 {normal=(-0.660206 -0.283204 0.689721)} Vertex 18516 9.64395 0.539337 -2.47733 {normal=(-0.710507 -0.192715 0.676169)} Vertex 18517 9.83272 0.910299 -1.67921 {normal=(-0.760655 -0.478521 0.343494)} Vertex 18518 9.29169 2.06417 -1.79079 {normal=(-0.919090 -0.372465 0.108934)} Vertex 18519 9.2781 2.37914 -0.91654 {normal=(-0.766583 -0.325610 0.422314)} Vertex 18520 9.7782 1.44696 -0.931207 {normal=(-0.630204 -0.475221 0.529004)} Vertex 18521 10.4019 1.01497 -0.819922 {normal=(-0.304290 -0.546901 0.720904)} Vertex 18522 11.941 0.284381 -1.45505 {normal=(0.511904 -0.151199 0.755804)} Vertex 18523 11.5089 0.798964 -1.01812 {normal=(0.362446 -0.396142 0.754318)} Vertex 18524 11.0242 1.2432 -0.617314 {normal=(0.131132 -0.441564 0.837744)} Vertex 18525 10.6764 1.90981 -0.322584 {normal=(-0.025088 -0.318798 0.926865)} Vertex 18526 11.7497 0.772597 -5.15725 {normal=(0.578768 0.174604 -0.793937)} Vertex 18527 12.3958 0.0647512 -4.80942 {normal=(0.733286 0.182495 -0.615428)} Vertex 18528 12.7383 0.110176 -4.20378 {normal=(0.886125 0.119981 -0.440461)} Vertex 18529 12.9395 0.118795 -3.75969 {normal=(0.928946 0.096813 -0.338039)} Vertex 18530 10.0414 0.755798 -5.65673 {normal=(-0.444915 0.054515 -0.847445)} Vertex 18531 10.4996 0.802526 -5.75904 {normal=(0.018909 0.162408 -0.954994)} Vertex 18532 10.5736 -0.0186803 -5.97637 {normal=(0.030165 -0.005876 -0.941166)} Vertex 18533 10.1647 -0.138435 -5.8571 {normal=(-0.455445 -0.101779 -0.814524)} Vertex 18534 11.0357 0.793427 -5.60884 {normal=(0.379888 0.188724 -0.894297)} Vertex 18535 11.0103 0.035611 -5.82806 {normal=(0.388356 0.047311 -0.897895)} Vertex 18536 10.7023 -0.500093 -5.90697 {normal=(0.121792 -0.236223 -0.918309)} Vertex 18537 10.2442 -0.653035 -5.77807 {normal=(-0.412149 -0.306067 -0.798107)} Vertex 18538 9.76045 0.625324 -5.38845 {normal=(-0.775708 -0.054736 -0.602517)} Vertex 18539 9.91041 -0.267167 -5.55087 {normal=(-0.751717 -0.140925 -0.621709)} Vertex 18540 9.50125 -0.539148 -4.77721 {normal=(-0.882020 0.015023 -0.432602)} Vertex 18541 9.83313 -0.545827 -2.52352 {normal=(-0.731938 -0.056849 0.661368)} Vertex 18542 9.41206 -0.603658 -3.08341 {normal=(-0.876464 -0.037611 0.400882)} Vertex 18543 11.0838 -0.313549 -1.68387 {normal=(-0.141398 -0.251282 0.831648)} Vertex 18544 12.5534 0.948732 -2.18503 {normal=(0.817877 0.068575 0.561892)} Vertex 18545 -13.1025 -7.35784 -0.943978 {normal=(-0.753763 -0.012048 0.630654)} Vertex 18546 -13.5421 -7.42758 -1.74329 {normal=(-0.921564 -0.072355 0.348455)} Vertex 18547 -13.7538 -7.57038 -2.74899 {normal=(-0.977348 -0.115775 0.031736)} Vertex 18548 -13.6417 -7.71897 -3.64646 {normal=(-0.941347 -0.145336 -0.272007)} Vertex 18549 -13.364 -7.82059 -4.26865 {normal=(-0.836764 -0.163918 -0.507544)} Vertex 18550 -12.9384 -7.90506 -4.76262 {normal=(-0.628483 -0.186133 -0.730283)} Vertex 18551 -12.0394 -7.99735 -5.16004 {normal=(-0.169457 -0.224688 -0.940101)} Vertex 18552 -11.2425 -8.03479 -5.14209 {normal=(0.193628 -0.246255 -0.931127)} Vertex 18553 -10.6374 -8.05259 -4.89826 {normal=(0.533771 -0.256887 -0.782542)} Vertex 18554 -10.1928 -8.03866 -4.41246 {normal=(0.790984 -0.254741 -0.527206)} Vertex 18555 -9.8491 -7.9559 -3.48014 {normal=(0.932191 -0.236044 -0.212778)} Vertex 18556 -9.76086 -7.78526 -2.31905 {normal=(0.964886 -0.187866 0.102702)} Vertex 18557 -9.96051 -7.62602 -1.4107 {normal=(0.889297 -0.105749 0.404607)} Vertex 18558 -10.7288 -7.45608 -0.553293 {normal=(0.512216 0.031317 0.813827)} Vertex 18559 -11.6434 -7.37679 -0.238446 {normal=(0.023139 0.082748 0.960339)} Vertex 18560 -12.4594 -7.34876 -0.436159 {normal=(-0.440108 0.054476 0.867911)} Vertex 18561 -11.7896 -11.8802 -4.07341 {normal=(0.036038 -0.981138 0.175934)} Vertex 18562 -11.1491 -11.7737 -3.71983 {normal=(0.095384 -0.976813 0.190177)} Vertex 18563 -10.9749 -11.6973 -3.43716 {normal=(0.091096 -0.971473 0.218403)} Vertex 18564 -10.7801 -11.5411 -2.8697 {normal=(0.099534 -0.964253 0.244909)} Vertex 18565 -10.6759 -11.2841 -1.97366 {normal=(0.110518 -0.955854 0.271767)} Vertex 18566 -10.695 -11.0398 -1.14035 {normal=(0.134250 -0.943952 0.299769)} Vertex 18567 -10.8214 -10.8688 -0.5639 {normal=(0.117149 -0.931327 0.340853)} Vertex 18568 -11.4004 -10.7475 -0.186798 {normal=(-0.003210 -0.915171 0.386927)} Vertex 18569 -12.516 -10.8553 -0.621467 {normal=(-0.142508 -0.911149 0.384790)} Vertex 18570 -12.8068 -10.9606 -1.00652 {normal=(-0.201531 -0.907369 0.365349)} Vertex 18571 -13.0657 -11.1242 -1.59101 {normal=(-0.291929 -0.891272 0.338252)} Vertex 18572 -13.1135 -11.565 -3.09239 {normal=(-0.245642 -0.945118 0.214211)} Vertex 18573 -12.9156 -11.7124 -3.55899 {normal=(-0.194713 -0.961595 0.189367)} Vertex 18574 -12.6612 -11.8125 -3.8821 {normal=(-0.116024 -0.975849 0.180085)} Vertex 18575 -12.2985 -11.8725 -4.06918 {normal=(-0.045409 -0.981623 0.183019)} Vertex 18576 -11.4735 -4.10315 -0.744821 {normal=(0.094201 0.988197 0.114168)} Vertex 18577 -10.2774 -4.21142 -1.28807 {normal=(0.140962 0.986965 0.073951)} Vertex 18578 -9.47914 -4.28437 -2.15329 {normal=(0.172413 0.983662 0.048527)} Vertex 18579 -9.13723 -4.31623 -2.92634 {normal=(0.225047 0.973011 0.020050)} Vertex 18580 -9.13837 -4.31762 -3.99422 {normal=(0.288167 0.954110 -0.050916)} Vertex 18581 -9.55444 -4.28168 -5.07558 {normal=(0.282305 0.947387 -0.140355)} Vertex 18582 -10.204 -4.22412 -5.67452 {normal=(0.200241 0.962211 -0.175922)} Vertex 18583 -11.1136 -4.14281 -5.93614 {normal=(0.112294 0.980883 -0.151966)} Vertex 18584 -12.1895 -4.05081 -5.82181 {normal=(0.055125 0.991496 -0.114711)} Vertex 18585 -13.0645 -3.97154 -5.34253 {normal=(0.022113 0.996239 -0.080654)} Vertex 18586 -13.5825 -3.92656 -4.77754 {normal=(-0.000899 0.998350 -0.056196)} Vertex 18587 -13.8964 -3.89735 -4.16426 {normal=(-0.022662 0.998524 -0.046993)} Vertex 18588 -14.0549 -3.86698 -3.40357 {normal=(-0.044138 0.998378 -0.017767)} Vertex 18589 -13.9443 -3.87204 -2.49111 {normal=(-0.069330 0.994781 0.052241)} Vertex 18590 -13.5253 -3.91326 -1.57008 {normal=(-0.064155 0.988482 0.127393)} Vertex 18591 -12.6593 -3.99378 -0.915817 {normal=(0.010227 0.987094 0.148301)} Vertex 18592 -9.64318 3.7976 -5.69169 {normal=(0.204309 -0.130460 -0.956365)} Vertex 18593 -11.5338 6.14394 -5.12819 {normal=(-0.610297 0.450973 -0.615524)} Vertex 18594 -11.8958 5.19582 -5.2872 {normal=(-0.629823 0.196423 -0.696995)} Vertex 18595 -11.2262 7.59892 -4.07675 {normal=(-0.783216 0.087952 -0.578551)} Vertex 18596 -11.2233 7.24657 -4.19459 {normal=(-0.804754 0.355154 -0.444372)} Vertex 18597 -11.281 6.85211 -4.62891 {normal=(-0.699175 0.501310 -0.478358)} Vertex 18598 -8.37237 5.83045 -0.961041 {normal=(0.675179 -0.295229 0.652755)} Vertex 18599 -8.38366 4.70942 -1.59436 {normal=(0.697912 -0.368034 0.553968)} Vertex 18600 -9.35324 0.39072 -4.40684 {normal=(0.938208 -0.091971 -0.311368)} Vertex 18601 -9.56227 -1.70986 -5.06498 {normal=(0.797793 0.032017 -0.562340)} Vertex 18602 -12.7913 0.078365 -2.68918 {normal=(-0.905145 0.057214 0.399733)} Vertex 18603 -12.3737 0.0366908 -1.97598 {normal=(-0.717844 0.038778 0.639816)} Vertex 18604 -12.5715 -1.28579 -5.11415 {normal=(-0.718611 0.171393 -0.621131)} Vertex 18605 -11.8439 -1.36887 -5.6279 {normal=(-0.416925 0.124208 -0.884161)} Vertex 18606 -12.2911 0.875386 -4.65041 {normal=(-0.706329 0.141744 -0.679211)} Vertex 18607 -12.581 4.23568 -3.90392 {normal=(-0.967858 0.207204 -0.071433)} Vertex 18608 -12.796 2.90844 -3.76776 {normal=(-0.960550 0.114158 -0.205705)} Vertex 18609 -11.4171 0.769598 -5.38276 {normal=(-0.520526 0.169463 -0.836181)} Vertex 18610 -11.3177 -0.0665562 -5.59856 {normal=(-0.467568 0.078837 -0.867215)} Vertex 18611 -10.8528 -0.730875 -5.74626 {normal=(-0.111474 -0.106232 -0.921779)} Vertex 18612 -10.2073 -0.916196 -5.57373 {normal=(0.460817 -0.151200 -0.797835)} Vertex 18613 -9.77114 -0.443646 -5.23669 {normal=(0.811450 -0.079842 -0.557080)} Vertex 18614 -9.56376 0.497311 -4.97207 {normal=(0.893625 -0.090934 -0.431585)} Vertex 18615 -13.0195 1.08208 -3.28269 {normal=(-0.976515 0.029134 -0.007059)} Vertex 18616 -12.9658 1.06679 -3.6316 {normal=(-0.940461 0.035193 -0.317917)} Vertex 18617 -10.3432 -1.625 -1.93535 {normal=(0.558181 0.081492 0.804946)} Vertex 18618 -7.87638 4.20782 -3.93486 {normal=(0.831827 -0.320583 -0.433529)} Vertex 18619 -8.54523 2.71339 -3.95669 {normal=(0.877480 -0.374549 -0.292042)} Vertex 18620 -13.3227 -3.01756 -1.95422 {normal=(-0.815560 0.288751 0.461538)} Vertex 18621 -11.4228 -1.4737 -1.50183 {normal=(0.067136 0.108211 0.908535)} Vertex 18622 -10.271 -0.439337 -2.12774 {normal=(0.606044 -0.177761 0.737808)} Vertex 18623 -8.87998 3.38405 -2.07176 {normal=(0.744150 -0.391643 0.437875)} Vertex 18624 -12.4346 -1.37052 -1.66267 {normal=(-0.551907 0.184312 0.738020)} Vertex 18625 -11.3471 -13.452 -2.39041 {normal=(0.959553 -0.164990 0.185359)} Vertex 18626 -12.1863 -12.221 -3.98251 {normal=(-0.225974 0.095380 -0.936035)} Vertex 18627 -11.5876 -12.2183 -3.92813 {normal=(0.118809 0.111841 -0.978675)} Vertex 18628 -11.1381 -12.1574 -3.66624 {normal=(0.888744 0.152161 -0.409394)} Vertex 18629 -11.0138 -12.0896 -3.38462 {normal=(0.950864 0.119698 -0.218033)} Vertex 18630 -10.9801 -12.0494 -3.11634 {normal=(0.987785 0.003933 0.009132)} Vertex 18631 -10.9863 -12.0136 -2.67947 {normal=(0.972748 -0.171047 0.029467)} Vertex 18632 -10.9178 -11.8528 -2.06159 {normal=(0.965914 -0.210354 -0.088003)} Vertex 18633 -10.7922 -11.5529 -1.37788 {normal=(0.985639 -0.068925 -0.078997)} Vertex 18634 -10.8196 -11.1861 -0.681255 {normal=(0.989909 0.083227 0.044223)} Vertex 18635 -11.5154 -10.9334 -0.248133 {normal=(0.134252 0.712273 0.688934)} Vertex 18636 -12.3867 -11.1479 -0.508677 {normal=(-0.848433 0.181622 0.492928)} Vertex 18637 -12.7676 -11.4731 -1.06526 {normal=(-0.895378 0.141909 0.416623)} Vertex 18638 -12.9743 -11.5999 -1.47478 {normal=(-0.943202 0.087257 0.306040)} Vertex 18639 -13.1125 -11.7344 -1.95413 {normal=(-0.984045 0.032683 0.114506)} Vertex 18640 -13.122 -11.893 -2.53304 {normal=(-0.991947 -0.003282 -0.084729)} Vertex 18641 -13.0244 -12.0225 -3.07355 {normal=(-0.962783 -0.004275 -0.250884)} Vertex 18642 -12.8668 -12.1089 -3.49668 {normal=(-0.854983 0.010769 -0.486100)} Vertex 18643 -12.592 -12.1788 -3.80991 {normal=(-0.615409 0.047164 -0.758461)} Vertex 18644 -10.8354 -12.1798 -1.11338 {normal=(0.960379 -0.164178 -0.164954)} Vertex 18645 -12.5097 -14.4979 -3.53851 {normal=(-0.712370 -0.129449 -0.668297)} Vertex 18646 -12.2272 -14.4902 -3.7792 {normal=(-0.353686 -0.157664 -0.878673)} Vertex 18647 -12.5636 -12.6881 -0.072607 {normal=(-0.788123 0.213511 0.548057)} Vertex 18648 -11.4734 -11.1744 -0.0083525 {normal=(0.224299 0.696467 0.675105)} Vertex 18649 -11.9314 -12.9608 0.459965 {normal=(-0.683377 0.157801 0.699434)} Vertex 18650 -11.7123 -12.2769 0.489795 {normal=(-0.559466 0.272031 0.763788)} Vertex 18651 -10.4542 -12.4724 -0.00621599 {normal=(0.846556 0.469787 -0.239587)} Vertex 18652 -10.4569 -13.0586 -0.317657 {normal=(0.704946 -0.087525 -0.627846)} Vertex 18653 -10.9194 -12.0307 0.393587 {normal=(0.421833 0.646889 0.622658)} Vertex 18654 -11.4935 -13.881 0.366874 {normal=(0.321811 -0.586166 0.743537)} Vertex 18655 -11.0004 -13.5131 -0.612485 {normal=(0.750166 -0.345486 -0.503164)} Vertex 18656 -10.9104 -12.7653 -0.897707 {normal=(0.875946 -0.212290 -0.375448)} Vertex 18657 -11.1032 -12.5709 -1.95012 {normal=(0.939709 -0.310798 -0.080621)} Vertex 18658 -11.2781 -13.9977 -0.269237 {normal=(0.943812 -0.203622 -0.158953)} Vertex 18659 -11.3357 -13.8055 -0.95472 {normal=(0.901862 -0.316771 -0.261943)} Vertex 18660 -11.2915 -13.1571 -1.63271 {normal=(0.922514 -0.311919 -0.154148)} Vertex 18661 -11.5442 -13.7986 -1.77411 {normal=(0.964861 -0.232503 0.032097)} Vertex 18662 -11.6501 -13.308 -3.9806 {normal=(0.058204 -0.053887 -0.967585)} Vertex 18663 -11.1484 -13.326 -3.68343 {normal=(0.950940 -0.058025 -0.257324)} Vertex 18664 -11.0698 -13.3175 -3.27508 {normal=(0.970732 -0.064621 -0.031286)} Vertex 18665 -11.1502 -13.3223 -2.89018 {normal=(0.966034 -0.092599 0.194363)} Vertex 18666 -12.859 -12.838 -0.623879 {normal=(-0.920552 0.159248 0.339877)} Vertex 18667 -13.0284 -13.0145 -1.1157 {normal=(-0.971862 0.067670 0.195285)} Vertex 18668 -13.08 -13.148 -1.6543 {normal=(-0.990298 -0.023236 0.014982)} Vertex 18669 -13.0312 -13.2726 -2.26413 {normal=(-0.991285 -0.071291 -0.091503)} Vertex 18670 -12.9643 -13.3003 -2.83039 {normal=(-0.974607 -0.072021 -0.183207)} Vertex 18671 -12.8382 -13.2684 -3.33371 {normal=(-0.877357 -0.088643 -0.430548)} Vertex 18672 -12.6068 -13.2418 -3.7045 {normal=(-0.681428 -0.079260 -0.703024)} Vertex 18673 -12.2783 -13.2508 -3.95553 {normal=(-0.350967 -0.058375 -0.895481)} Vertex 18674 -11.6919 -14.5153 -3.79762 {normal=(0.129139 -0.181885 -0.937790)} Vertex 18675 -11.3206 -14.5503 -3.42855 {normal=(0.980385 -0.053282 -0.031018)} Vertex 18676 -11.3659 -14.5737 -2.90454 {normal=(0.967666 -0.029356 0.158611)} Vertex 18677 -11.4914 -14.5168 -2.47125 {normal=(0.958173 -0.044461 0.255690)} Vertex 18678 -11.5798 -14.4828 -2.01429 {normal=(0.970274 -0.047661 0.212361)} Vertex 18679 -11.6748 -14.5323 -1.44185 {normal=(0.982525 -0.075944 0.058189)} Vertex 18680 -11.597 -14.4962 -0.854582 {normal=(0.951859 -0.174190 -0.189782)} Vertex 18681 -11.877 -14.0123 0.572116 {normal=(0.373359 0.410504 0.827670)} Vertex 18682 -12.4126 -13.7581 0.630126 {normal=(-0.606058 0.301594 0.719271)} Vertex 18683 -12.7107 -13.8058 0.315418 {normal=(-0.816532 0.205372 0.476258)} Vertex 18684 -10.9968 -15.9582 -3.06085 {normal=(0.442536 -0.051028 -0.866892)} Vertex 18685 -11.198 -16.3366 -3.08137 {normal=(0.296044 -0.417873 -0.836301)} Vertex 18686 -11.0038 -15.6504 -2.79049 {normal=(0.592217 0.781205 0.141064)} Vertex 18687 -11.4205 -16.4787 -2.91349 {normal=(-0.251763 -0.939899 -0.188500)} Vertex 18688 -10.899 -15.7459 -2.72059 {normal=(0.611114 0.750464 0.222130)} Vertex 18689 -10.7294 -16.045 -2.93117 {normal=(0.355196 0.037043 -0.907209)} Vertex 18690 -10.7437 -16.4283 -2.89438 {normal=(0.306181 -0.344028 -0.861886)} Vertex 18691 -10.889 -16.5983 -2.69235 {normal=(-0.120967 -0.980464 -0.139764)} Vertex 18692 -10.4676 -16.3042 -2.76057 {normal=(0.834614 -0.277620 -0.473886)} Vertex 18693 -10.5226 -16.4599 -2.5293 {normal=(0.766845 -0.580171 0.261817)} Vertex 18694 -10.8591 -15.7416 -2.68243 {normal=(-0.365956 0.240345 -0.798714)} Vertex 18695 -10.6014 -15.9838 -2.85603 {normal=(0.141612 0.168700 -0.938396)} Vertex 18696 -10.8116 -15.6742 -2.6148 {normal=(-0.356692 0.911634 -0.147449)} Vertex 18697 -10.5127 -15.7486 -2.76688 {normal=(0.030041 0.296508 -0.941458)} Vertex 18698 -10.2909 -15.8739 -2.6372 {normal=(0.841987 -0.212303 -0.493797)} Vertex 18699 -10.2759 -15.9497 -2.39606 {normal=(0.869659 -0.431794 0.200537)} Vertex 18700 -10.4502 -15.5443 -2.68932 {normal=(0.003564 0.188912 -0.966736)} Vertex 18701 -10.1826 -15.4404 -2.59444 {normal=(0.796765 -0.187626 -0.571472)} Vertex 18702 -10.0933 -15.3997 -2.36738 {normal=(0.937231 -0.326423 0.082143)} Vertex 18703 -10.7371 -15.6214 -2.54223 {normal=(-0.564848 0.786465 -0.187538)} Vertex 18704 -10.2095 -15.1226 -2.37672 {normal=(0.349827 0.931249 0.088633)} Vertex 18705 -10.7599 -15.5717 -2.53139 {normal=(-0.252737 -0.590480 -0.542607)} Vertex 18706 -10.5335 -15.4276 -2.6771 {normal=(-0.110425 -0.102774 -0.957982)} Vertex 18707 -10.3162 -15.2138 -2.59292 {normal=(0.168081 0.520894 -0.835848)} Vertex 18708 -10.8914 -15.5374 -2.49719 {normal=(-0.289291 -0.695984 -0.497568)} Vertex 18709 -10.7955 -15.3189 -2.64137 {normal=(-0.204559 -0.299064 -0.912076)} Vertex 18710 -10.7129 -15.0767 -2.58486 {normal=(0.135510 0.562901 -0.814467)} Vertex 18711 -10.6538 -14.9783 -2.37075 {normal=(0.221144 0.964748 0.008694)} Vertex 18712 -11.1253 -15.0109 -2.59236 {normal=(0.066762 0.534432 -0.840527)} Vertex 18713 -11.1899 -14.9121 -2.51656 {normal=(0.099013 0.976529 -0.185333)} Vertex 18714 -11.1468 -15.4492 -2.47741 {normal=(-0.333688 -0.635357 -0.567142)} Vertex 18715 -11.1086 -15.2431 -2.5876 {normal=(-0.262433 -0.329781 -0.899067)} Vertex 18716 -11.4409 -14.8817 -2.47815 {normal=(-0.534370 0.447102 -0.689815)} Vertex 18717 -11.3801 -15.1727 -2.5256 {normal=(-0.445667 -0.239230 -0.829654)} Vertex 18718 -11.5443 -15.1143 -2.43519 {normal=(-0.709518 -0.146577 -0.618656)} Vertex 18719 -10.9827 -14.9052 -2.37135 {normal=(0.081675 0.988798 -0.058221)} Vertex 18720 -11.5449 -14.8487 -2.33313 {normal=(-0.717969 0.517218 -0.441536)} Vertex 18721 -11.6188 -15.0718 -2.32064 {normal=(-0.840604 -0.121241 -0.392776)} Vertex 18722 -11.599 -14.925 -2.33071 {normal=(-0.775041 0.352079 -0.484768)} Vertex 18723 -11.4969 -14.96 -2.47699 {normal=(-0.619110 0.231386 -0.706705)} Vertex 18724 -11.1357 -15.6372 -2.89337 {normal=(-0.341169 0.906355 -0.249246)} Vertex 18725 -11.9023 -16.2281 -3.20322 {normal=(-0.436320 -0.833108 -0.303088)} Vertex 18726 -11.6371 -16.1477 -3.33377 {normal=(0.234581 -0.459071 -0.837832)} Vertex 18727 -11.2902 -15.874 -3.23586 {normal=(0.461407 -0.180303 -0.837668)} Vertex 18728 -11.9561 -16.1479 -2.60409 {normal=(-0.575466 -0.686095 0.388781)} Vertex 18729 -12.0249 -16.2227 -2.94151 {normal=(-0.533380 -0.804247 -0.016624)} Vertex 18730 -11.1947 -15.6631 -2.45553 {normal=(-0.844523 -0.459540 -0.274962)} Vertex 18731 -11.4928 -14.9719 -2.00649 {normal=(-0.605302 0.191667 0.729805)} Vertex 18732 -11.5992 -14.9286 -2.15329 {normal=(-0.775276 0.331991 0.496100)} Vertex 18733 -11.6206 -15.0736 -2.1742 {normal=(-0.863775 0.009533 0.457210)} Vertex 18734 -11.5458 -14.8534 -2.14745 {normal=(-0.727752 0.479295 0.462297)} Vertex 18735 -10.9829 -14.9128 -2.1113 {normal=(0.093241 0.978440 0.145306)} Vertex 18736 -11.5469 -15.1202 -2.05878 {normal=(-0.695423 -0.090455 0.670237)} Vertex 18737 -11.3804 -15.1832 -1.9713 {normal=(-0.426866 -0.231563 0.851784)} Vertex 18738 -11.4374 -14.8943 -2.00139 {normal=(-0.531848 0.378476 0.729092)} Vertex 18739 -11.1043 -15.2569 -1.91506 {normal=(-0.200022 -0.378590 0.896552)} Vertex 18740 -11.1457 -15.4539 -2.1987 {normal=(-0.386483 -0.863256 -0.006086)} Vertex 18741 -11.1858 -14.9276 -1.96543 {normal=(0.114899 0.953272 0.275658)} Vertex 18742 -11.1172 -15.03 -1.89791 {normal=(0.081023 0.451010 0.887087)} Vertex 18743 -10.6534 -14.997 -2.11081 {normal=(0.234096 0.953860 0.137173)} Vertex 18744 -10.7084 -15.1236 -1.91245 {normal=(0.142342 0.442385 0.884814)} Vertex 18745 -10.8317 -15.3491 -1.92775 {normal=(-0.179680 -0.419711 0.886245)} Vertex 18746 -10.9317 -15.5394 -2.19605 {normal=(-0.295827 -0.921995 0.081160)} Vertex 18747 -10.3752 -15.2717 -1.91176 {normal=(0.128628 0.388381 0.911462)} Vertex 18748 -10.6775 -15.4511 -1.94595 {normal=(-0.356098 -0.238852 0.882422)} Vertex 18749 -10.8464 -15.5707 -2.21128 {normal=(-0.331386 -0.909491 0.068404)} Vertex 18750 -10.211 -15.156 -2.1066 {normal=(0.357624 0.925375 0.121248)} Vertex 18751 -10.8289 -15.6274 -2.21212 {normal=(-0.662578 0.731447 -0.049897)} Vertex 18752 -10.128 -15.424 -2.09769 {normal=(0.898340 -0.387249 0.189783)} Vertex 18753 -10.3393 -15.4768 -1.9113 {normal=(0.342069 -0.257141 0.903476)} Vertex 18754 -10.6641 -15.5626 -1.94574 {normal=(-0.479297 0.009860 0.872209)} Vertex 18755 -10.3579 -15.9615 -2.16109 {normal=(0.836976 -0.463570 0.273058)} Vertex 18756 -10.5279 -15.9131 -1.97233 {normal=(0.346024 -0.307936 0.885361)} Vertex 18757 -10.7881 -15.7965 -1.98495 {normal=(-0.470813 0.124446 0.872880)} Vertex 18758 -10.932 -15.6947 -2.26276 {normal=(-0.469451 0.866052 0.005069)} Vertex 18759 -10.9502 -16.0333 -2.0339 {normal=(-0.440606 0.171614 0.880646)} Vertex 18760 -11.0129 -15.7663 -2.31413 {normal=(-0.981153 0.192404 -0.017897)} Vertex 18761 -10.6385 -16.4733 -2.25892 {normal=(0.744817 -0.593193 0.295906)} Vertex 18762 -10.7785 -16.3424 -2.03634 {normal=(0.306558 -0.363778 0.878940)} Vertex 18763 -11.0139 -16.6066 -2.41707 {normal=(-0.259170 -0.918179 0.139696)} Vertex 18764 -11.08 -16.4468 -2.15647 {normal=(-0.423088 -0.707408 0.522278)} Vertex 18765 -11.1065 -16.0718 -2.10418 {normal=(-0.419069 0.214533 0.882028)} Vertex 18766 -11.0646 -15.7625 -2.35622 {normal=(0.507441 0.761677 0.391243)} Vertex 18767 -11.5353 -16.4764 -2.67175 {normal=(-0.378781 -0.880284 0.093817)} Vertex 18768 -11.1616 -15.6642 -2.43159 {normal=(0.453940 0.792012 0.376077)} Vertex 18769 -11.5097 -16.3325 -2.38104 {normal=(-0.485934 -0.691709 0.486557)} Vertex 18770 -11.3516 -15.9703 -2.24336 {normal=(-0.399927 0.234065 0.886102)} Vertex 18771 -11.956 -15.8201 -3.56362 {normal=(0.024470 -0.315417 -0.896168)} Vertex 18772 -11.4747 -15.6676 -3.41945 {normal=(0.414787 -0.213684 -0.853178)} Vertex 18773 -11.2107 -15.5877 -2.99704 {normal=(0.976065 0.184947 0.085249)} Vertex 18774 -11.2458 -15.6671 -2.46591 {normal=(0.458824 0.877196 0.113092)} Vertex 18775 -12.3404 -15.9201 -2.80141 {normal=(-0.636631 -0.707013 0.232647)} Vertex 18776 -12.5751 -15.5236 -2.90041 {normal=(-0.961217 -0.135951 -0.214600)} Vertex 18777 -12.5518 -15.4379 -3.22346 {normal=(-0.942289 -0.046190 -0.269777)} Vertex 18778 -12.4392 -15.3648 -3.49695 {normal=(-0.692160 -0.067409 -0.633522)} Vertex 18779 -12.0964 -15.3385 -3.67683 {normal=(-0.201415 -0.165512 -0.916331)} Vertex 18780 -11.5803 -15.2444 -3.56044 {normal=(0.298810 -0.182715 -0.906209)} Vertex 18781 -11.2949 -15.2411 -3.10928 {normal=(0.974880 0.148573 0.109385)} Vertex 18782 -11.4131 -15.3051 -2.5748 {normal=(0.959129 0.180683 0.198406)} Vertex 18783 -11.5431 -15.2373 -2.1767 {normal=(0.966296 0.141700 0.170752)} Vertex 18784 -11.582 -15.1531 -1.75715 {normal=(0.980855 0.103873 0.135953)} Vertex 18785 -12.7891 -15.3705 -1.58353 {normal=(-0.964334 0.003211 -0.019884)} Vertex 18786 -12.87 -15.366 -1.90165 {normal=(-0.984323 0.035072 0.126581)} Vertex 18787 -12.8823 -15.3662 -2.20431 {normal=(-0.960394 -0.066722 -0.170404)} Vertex 18788 -12.7169 -15.4586 -2.54439 {normal=(-0.929013 -0.165259 -0.327992)} Vertex 18789 -12.4459 -15.8693 -2.42997 {normal=(-0.450870 -0.856775 -0.227165)} Vertex 18790 -11.3612 -15.6596 -2.06394 {normal=(0.430941 0.899612 -0.028217)} Vertex 18791 -11.4579 -15.5878 -1.62673 {normal=(0.446784 0.890610 -0.076417)} Vertex 18792 -12.5918 -15.7847 -1.45772 {normal=(-0.538915 -0.824165 0.052014)} Vertex 18793 -11.0705 -16.0469 -2.15018 {normal=(0.172546 0.095301 -0.980199)} Vertex 18794 -11.3228 -16.3969 -2.0514 {normal=(-0.283195 -0.795880 -0.480576)} Vertex 18795 -10.9564 -15.7097 -1.91407 {normal=(0.649254 0.727322 -0.182177)} Vertex 18796 -11.486 -16.4877 -1.7814 {normal=(-0.374076 -0.898080 -0.100418)} Vertex 18797 -10.7841 -15.8511 -1.8701 {normal=(0.602440 0.771762 -0.160704)} Vertex 18798 -10.7454 -16.2098 -2.10725 {normal=(0.093585 0.157897 -0.976546)} Vertex 18799 -10.8174 -16.6033 -2.01791 {normal=(-0.300255 -0.719462 -0.584337)} Vertex 18800 -10.9184 -16.7206 -1.73974 {normal=(-0.308120 -0.899852 -0.163769)} Vertex 18801 -10.539 -16.5122 -1.99322 {normal=(0.553707 -0.591349 -0.581984)} Vertex 18802 -10.5793 -16.6162 -1.72111 {normal=(0.483416 -0.869433 0.075191)} Vertex 18803 -10.6828 -15.82 -1.85022 {normal=(-0.357942 0.490926 -0.689638)} Vertex 18804 -10.5789 -16.1553 -2.08275 {normal=(0.043261 0.288456 -0.940261)} Vertex 18805 -10.5744 -15.7435 -1.75501 {normal=(0.072975 0.989137 -0.076984)} Vertex 18806 -10.3753 -15.975 -1.97423 {normal=(0.148995 0.388953 -0.895014)} Vertex 18807 -10.206 -16.2719 -1.88607 {normal=(0.553892 -0.476722 -0.674886)} Vertex 18808 -10.1854 -16.3863 -1.64082 {normal=(0.554320 -0.825985 0.030658)} Vertex 18809 -10.2582 -15.853 -1.87461 {normal=(0.058458 0.318412 -0.923748)} Vertex 18810 -9.99155 -16.0626 -1.8301 {normal=(0.433291 -0.411888 -0.795905)} Vertex 18811 -9.90052 -16.1712 -1.60084 {normal=(0.681202 -0.727536 0.014873)} Vertex 18812 -10.4948 -15.7381 -1.65819 {normal=(0.155984 0.981994 0.024744)} Vertex 18813 -9.81328 -15.7489 -1.59738 {normal=(0.997534 0.063972 0.021185)} Vertex 18814 -10.242 -15.7272 -1.85467 {normal=(-0.263366 0.096576 -0.937124)} Vertex 18815 -9.93756 -15.7487 -1.82056 {normal=(0.496263 0.207445 -0.837118)} Vertex 18816 -10.5015 -15.7063 -1.58097 {normal=(-0.804622 0.138059 -0.366575)} Vertex 18817 -10.3636 -15.5425 -1.80887 {normal=(-0.505141 -0.073579 -0.819746)} Vertex 18818 -10.1907 -15.3366 -1.79442 {normal=(0.316021 0.362786 -0.862155)} Vertex 18819 -10.0963 -15.2179 -1.58259 {normal=(0.663522 0.723867 -0.171079)} Vertex 18820 -10.5935 -15.1006 -1.76774 {normal=(0.091291 0.409683 -0.901884)} Vertex 18821 -10.6356 -14.971 -1.68869 {normal=(0.196305 0.948788 -0.203882)} Vertex 18822 -10.6641 -15.5895 -1.51669 {normal=(-0.635177 -0.739972 -0.061885)} Vertex 18823 -10.612 -15.3817 -1.74171 {normal=(-0.537768 -0.183004 -0.786811)} Vertex 18824 -10.883 -14.8838 -1.62317 {normal=(-0.641384 0.317019 -0.661676)} Vertex 18825 -10.8684 -15.2212 -1.6481 {normal=(-0.587250 -0.150433 -0.771045)} Vertex 18826 -11.0133 -15.1044 -1.53944 {normal=(-0.783017 0.037049 -0.575589)} Vertex 18827 -10.3941 -14.9897 -1.5673 {normal=(0.031731 0.981201 -0.141829)} Vertex 18828 -10.9647 -14.8143 -1.46718 {normal=(-0.834798 0.334561 -0.376010)} Vertex 18829 -11.0626 -15.0306 -1.41928 {normal=(-0.880453 0.164247 -0.382503)} Vertex 18830 -11.0154 -14.8812 -1.45074 {normal=(-0.788654 0.404192 -0.442797)} Vertex 18831 -10.9427 -14.9496 -1.60699 {normal=(-0.676693 0.262003 -0.655405)} Vertex 18832 -11.1694 -15.6514 -1.9963 {normal=(-0.156352 0.815099 -0.557824)} Vertex 18833 -12.183 -16.141 -1.90648 {normal=(-0.476387 -0.859705 -0.047957)} Vertex 18834 -11.9863 -16.1188 -2.21413 {normal=(-0.339585 -0.858397 -0.329044)} Vertex 18835 -11.6015 -15.8119 -1.24531 {normal=(0.062165 0.153974 0.982657)} Vertex 18836 -12.0645 -16.0364 -1.34511 {normal=(-0.434357 -0.782235 0.315875)} Vertex 18837 -12.1942 -16.0988 -1.62962 {normal=(-0.508610 -0.827505 0.195759)} Vertex 18838 -11.2351 -15.5924 -1.57194 {normal=(-0.189608 0.977073 0.096831)} Vertex 18839 -10.877 -14.9071 -1.13038 {normal=(-0.453767 0.372234 0.777126)} Vertex 18840 -10.9905 -14.8651 -1.26965 {normal=(-0.559570 0.549857 0.577809)} Vertex 18841 -11.042 -15.0172 -1.2692 {normal=(-0.756150 0.224723 0.571496)} Vertex 18842 -10.9385 -14.7974 -1.27676 {normal=(-0.554176 0.583049 0.288362)} Vertex 18843 -10.3574 -14.966 -1.30089 {normal=(0.045143 0.990047 -0.040106)} Vertex 18844 -10.9608 -15.0704 -1.15816 {normal=(-0.603940 0.119941 0.750384)} Vertex 18845 -10.7902 -15.1706 -1.08066 {normal=(-0.351423 -0.055754 0.912106)} Vertex 18846 -10.8164 -14.8408 -1.13977 {normal=(-0.311067 0.463688 0.821416)} Vertex 18847 -10.5161 -15.3197 -1.04575 {normal=(-0.182846 -0.185520 0.964171)} Vertex 18848 -10.6248 -15.564 -1.23101 {normal=(-0.571786 -0.715589 0.337735)} Vertex 18849 -10.5586 -14.9212 -1.12931 {normal=(0.220847 0.964653 -0.020605)} Vertex 18850 -10.4949 -15.0369 -1.05227 {normal=(0.314163 0.467905 0.819976)} Vertex 18851 -10.0715 -15.2065 -1.32094 {normal=(0.696484 0.712964 -0.015088)} Vertex 18852 -10.1276 -15.309 -1.09862 {normal=(0.475916 0.342658 0.797980)} Vertex 18853 -10.2977 -15.5194 -1.05895 {normal=(-0.190959 -0.142150 0.967837)} Vertex 18854 -9.93571 -15.7574 -1.10366 {normal=(0.545560 0.157439 0.818525)} Vertex 18855 -10.2373 -15.7433 -1.06725 {normal=(-0.209611 0.042903 0.969653)} Vertex 18856 -9.81345 -15.7523 -1.32339 {normal=(0.998538 0.048150 -0.014757)} Vertex 18857 -10.5098 -15.7458 -1.3029 {normal=(0.181808 0.977630 0.007304)} Vertex 18858 -9.91256 -16.1723 -1.32138 {normal=(0.688380 -0.722226 0.005284)} Vertex 18859 -10.0239 -16.0657 -1.09825 {normal=(0.243627 -0.468866 0.848868)} Vertex 18860 -10.2935 -15.8626 -1.06694 {normal=(-0.228730 0.154386 0.959688)} Vertex 18861 -10.1895 -16.4011 -1.38876 {normal=(0.570561 -0.812326 -0.048148)} Vertex 18862 -10.2508 -16.2724 -1.15405 {normal=(0.248701 -0.488107 0.836480)} Vertex 18863 -10.4485 -15.9535 -1.1048 {normal=(-0.262928 0.162834 0.950248)} Vertex 18864 -10.6069 -15.7363 -1.36554 {normal=(0.021800 0.986509 0.043727)} Vertex 18865 -10.6541 -16.0833 -1.14012 {normal=(-0.189434 0.237122 0.948433)} Vertex 18866 -10.7163 -15.7891 -1.43293 {normal=(-0.794797 0.557353 0.240116)} Vertex 18867 -10.5853 -16.6146 -1.41847 {normal=(0.460949 -0.881799 -0.055863)} Vertex 18868 -10.5868 -16.4694 -1.16523 {normal=(0.274505 -0.488761 0.827941)} Vertex 18869 -10.9309 -16.6904 -1.43431 {normal=(-0.351170 -0.841634 0.312858)} Vertex 18870 -10.8566 -16.5196 -1.17413 {normal=(-0.413084 -0.568025 0.675820)} Vertex 18871 -10.7927 -16.1149 -1.15175 {normal=(-0.086456 0.314978 0.944246)} Vertex 18872 -10.8046 -15.8097 -1.45295 {normal=(0.583129 0.801140 0.068653)} Vertex 18873 -11.49 -16.4624 -1.52057 {normal=(-0.407195 -0.853274 0.264491)} Vertex 18874 -10.9666 -15.67 -1.50975 {normal=(0.622086 0.767217 0.068349)} Vertex 18875 -11.339 -16.3212 -1.26114 {normal=(-0.381362 -0.658096 0.603952)} Vertex 18876 -11.0929 -15.9568 -1.21642 {normal=(-0.007356 0.276828 0.957489)} Vertex 18877 -11.0802 -16.1322 -0.99902 {normal=(0.120799 0.056725 -0.960297)} Vertex 18878 -11.2449 -16.4615 -0.886095 {normal=(-0.204762 -0.823697 -0.470987)} Vertex 18879 -11.0452 -15.7922 -0.779305 {normal=(0.672078 0.696866 -0.187484)} Vertex 18880 -11.3854 -16.5306 -0.614924 {normal=(-0.368755 -0.884427 -0.093220)} Vertex 18881 -10.7781 -15.9113 -0.717338 {normal=(-0.047984 0.643726 -0.660891)} Vertex 18882 -10.5829 -16.2201 -0.944682 {normal=(0.001072 0.240712 -0.959618)} Vertex 18883 -10.4709 -16.5946 -0.842891 {normal=(0.036263 -0.734647 -0.646398)} Vertex 18884 -10.5096 -16.7321 -0.559906 {normal=(0.426381 -0.885440 0.126850)} Vertex 18885 -10.2058 -16.4007 -0.832142 {normal=(0.688553 -0.261660 -0.674419)} Vertex 18886 -10.1615 -16.5137 -0.553528 {normal=(0.704111 -0.655892 0.139164)} Vertex 18887 -10.6691 -15.8273 -0.707744 {normal=(-0.822073 0.317434 -0.469638)} Vertex 18888 -10.4296 -16.0926 -0.933836 {normal=(-0.028887 0.190130 -0.977231)} Vertex 18889 -10.6001 -15.6467 -0.672126 {normal=(-0.786389 0.417529 -0.451707)} Vertex 18890 -10.3274 -15.766 -0.881313 {normal=(-0.055402 0.159349 -0.984969)} Vertex 18891 -10.0352 -15.9367 -0.773641 {normal=(0.676351 -0.192625 -0.709671)} Vertex 18892 -9.94275 -16.0216 -0.519014 {normal=(0.916523 -0.353111 0.119390)} Vertex 18893 -10.2512 -15.4845 -0.835863 {normal=(-0.129000 0.085470 -0.983903)} Vertex 18894 -9.9344 -15.4799 -0.767644 {normal=(0.616629 -0.202279 -0.759007)} Vertex 18895 -9.81588 -15.5045 -0.52904 {normal=(0.975600 -0.198715 0.089313)} Vertex 18896 -10.5204 -15.5345 -0.632155 {normal=(-0.039959 0.988173 0.065718)} Vertex 18897 -9.90921 -15.1923 -0.544236 {normal=(0.662349 0.736208 0.049972)} Vertex 18898 -10.5249 -15.5196 -0.620766 {normal=(-0.365706 -0.880482 -0.224725)} Vertex 18899 -10.2851 -15.3973 -0.828256 {normal=(-0.153526 -0.117288 -0.972695)} Vertex 18900 -10.0091 -15.2537 -0.773507 {normal=(0.343970 0.480705 -0.806029)} Vertex 18901 -10.682 -15.4774 -0.60652 {normal=(-0.380847 -0.880503 -0.192161)} Vertex 18902 -10.5231 -15.2977 -0.822386 {normal=(-0.157398 -0.282968 -0.944379)} Vertex 18903 -10.3684 -15.0667 -0.792409 {normal=(0.272579 0.501085 -0.819635)} Vertex 18904 -10.307 -14.955 -0.573487 {normal=(0.380778 0.900113 -0.012190)} Vertex 18905 -10.7973 -14.9234 -0.826906 {normal=(0.192766 0.475536 -0.857105)} Vertex 18906 -10.8385 -14.8109 -0.751156 {normal=(0.303761 0.942856 -0.079552)} Vertex 18907 -10.9507 -15.344 -0.598269 {normal=(-0.536784 -0.790968 -0.171688)} Vertex 18908 -10.8457 -15.1661 -0.810516 {normal=(-0.266575 -0.274705 -0.917540)} Vertex 18909 -11.0848 -14.7131 -0.71654 {normal=(-0.514925 0.404460 -0.722578)} Vertex 18910 -11.0965 -15.0185 -0.750699 {normal=(-0.477674 -0.095853 -0.847770)} Vertex 18911 -11.2445 -14.9108 -0.660091 {normal=(-0.687971 0.126401 -0.673068)} Vertex 18912 -10.6192 -14.8591 -0.60039 {normal=(0.196679 0.977039 -0.056170)} Vertex 18913 -11.1827 -14.6482 -0.570409 {normal=(-0.740234 0.427267 -0.468578)} Vertex 18914 -11.3047 -14.8442 -0.54512 {normal=(-0.799929 0.262401 -0.489448)} Vertex 18915 -11.2405 -14.7094 -0.564255 {normal=(-0.679500 0.498561 -0.521425)} Vertex 18916 -11.1514 -14.7723 -0.711783 {normal=(-0.552566 0.350736 -0.725356)} Vertex 18917 -12.3729 -16.0511 -0.742073 {normal=(-0.510252 -0.839153 -0.003746)} Vertex 18918 -12.1743 -16.0921 -1.01741 {normal=(-0.409397 -0.853916 -0.230653)} Vertex 18919 -11.6612 -15.9038 -1.13893 {normal=(0.214084 -0.230924 -0.943969)} Vertex 18920 -12.2223 -15.8842 -0.162675 {normal=(-0.453085 -0.687557 0.543671)} Vertex 18921 -12.3932 -15.978 -0.462655 {normal=(-0.523391 -0.782606 0.295716)} Vertex 18922 -11.1539 -14.758 -0.229375 {normal=(-0.528885 0.401630 0.713131)} Vertex 18923 -11.2414 -14.704 -0.380976 {normal=(-0.579170 0.594055 0.511664)} Vertex 18924 -11.3054 -14.8397 -0.393218 {normal=(-0.805069 0.289148 0.465313)} Vertex 18925 -11.1837 -14.6425 -0.377679 {normal=(-0.543404 0.616781 0.236524)} Vertex 18926 -10.6206 -14.8512 -0.330744 {normal=(0.198830 0.978295 0.009915)} Vertex 18927 -11.2465 -14.8995 -0.274182 {normal=(-0.694642 0.163593 0.657889)} Vertex 18928 -11.0994 -15.0016 -0.17636 {normal=(-0.485696 -0.048671 0.847193)} Vertex 18929 -11.0873 -14.6987 -0.227269 {normal=(-0.394175 0.474672 0.778540)} Vertex 18930 -10.8492 -15.1453 -0.106099 {normal=(-0.302746 -0.215159 0.924970)} Vertex 18931 -10.9522 -15.3354 -0.30912 {normal=(-0.545653 -0.779098 0.201348)} Vertex 18932 -10.8414 -14.7943 -0.184969 {normal=(0.305690 0.945406 0.030909)} Vertex 18933 -10.8009 -14.9021 -0.102727 {normal=(0.165767 0.517162 0.839279)} Vertex 18934 -10.314 -14.9505 -0.310009 {normal=(0.387567 0.896860 0.020655)} Vertex 18935 -10.3883 -15.0557 -0.092117 {normal=(0.204463 0.520536 0.828378)} Vertex 18936 -10.5459 -15.2866 -0.0672072 {normal=(-0.247656 -0.226455 0.941421)} Vertex 18937 -10.6918 -15.4729 -0.288154 {normal=(-0.425205 -0.862329 0.193013)} Vertex 18938 -10.0597 -15.254 -0.057314 {normal=(0.248103 0.475081 0.843422)} Vertex 18939 -10.3367 -15.4097 -0.0388528 {normal=(-0.287585 -0.109640 0.946001)} Vertex 18940 -10.5455 -15.5318 -0.273854 {normal=(-0.454406 -0.850325 0.159426)} Vertex 18941 -9.92891 -15.1924 -0.270535 {normal=(0.671806 0.729307 0.033117)} Vertex 18942 -10.5519 -15.5461 -0.275202 {normal=(0.101628 0.990054 -0.053948)} Vertex 18943 -9.8427 -15.5043 -0.250386 {normal=(0.972892 -0.205060 0.104164)} Vertex 18944 -10.0055 -15.4791 -0.0378115 {normal=(0.459986 -0.152872 0.873998)} Vertex 18945 -9.9664 -16.0113 -0.26971 {normal=(0.916574 -0.357470 0.107553)} Vertex 18946 -10.1042 -15.9065 -0.0448333 {normal=(0.503894 -0.164621 0.847374)} Vertex 18947 -10.4097 -15.7293 -0.0116942 {normal=(-0.273088 0.160580 0.946897)} Vertex 18948 -10.6369 -15.6301 -0.282012 {normal=(-0.877553 0.405770 0.255233)} Vertex 18949 -10.5333 -16.0172 0.0095315 {normal=(-0.217812 0.241298 0.944398)} Vertex 18950 -10.7164 -15.7942 -0.289906 {normal=(-0.871262 0.423138 0.248536)} Vertex 18951 -10.1992 -16.4902 -0.253124 {normal=(0.693692 -0.664678 0.130477)} Vertex 18952 -10.2998 -16.3348 -0.00620925 {normal=(0.506593 -0.220638 0.832727)} Vertex 18953 -10.549 -16.7038 -0.254832 {normal=(0.413459 -0.891138 0.141654)} Vertex 18954 -10.5701 -16.5142 -0.000441 {normal=(-0.091529 -0.567258 0.798675)} Vertex 18955 -10.6919 -16.1283 0.009247 {normal=(-0.144532 0.313043 0.936280)} Vertex 18956 -10.8273 -15.8714 -0.300785 {normal=(-0.106440 0.977159 0.183929)} Vertex 18957 -11.4096 -16.4845 -0.35648 {normal=(-0.403855 -0.811191 0.347060)} Vertex 18958 -11.0816 -15.7207 -0.379793 {normal=(0.619596 0.774471 0.046707)} Vertex 18959 -11.3186 -16.3205 -0.103533 {normal=(-0.299850 -0.648425 0.670381)} Vertex 18960 -11.1661 -15.9658 -0.0753888 {normal=(-0.038593 0.369432 0.925953)} Vertex 18961 -12.7091 -15.7601 -1.15624 {normal=(-0.538275 -0.831783 -0.107726)} Vertex 18962 -11.5681 -15.4715 -0.896087 {normal=(0.474260 0.874079 -0.081596)} Vertex 18963 -11.4882 -15.3116 -0.306367 {normal=(0.855041 -0.112605 -0.442744)} Vertex 18964 -12.7708 -15.5395 -0.206832 {normal=(-0.545884 -0.689567 0.463903)} Vertex 18965 -13.0047 -15.1441 -0.343456 {normal=(-0.949690 0.116824 0.287550)} Vertex 18966 -13.1093 -15.1863 -0.647911 {normal=(-0.970923 0.079851 0.136305)} Vertex 18967 -13.1008 -15.254 -0.96273 {normal=(-0.925361 -0.036279 -0.272665)} Vertex 18968 -12.9035 -15.3428 -1.27192 {normal=(-0.905345 -0.078399 -0.393519)} Vertex 18969 -11.6837 -15.1212 -1.13684 {normal=(0.972164 0.025819 -0.023101)} Vertex 18970 -11.5646 -14.9792 -0.559821 {normal=(0.943733 -0.100929 -0.284792)} Vertex 18971 -11.3197 -14.7026 -0.0290285 {normal=(0.937003 0.015909 -0.207641)} Vertex 18972 -11.4275 -14.5129 0.481943 {normal=(0.839846 0.157193 0.516998)} Vertex 18973 -12.0458 -14.4422 0.822399 {normal=(0.256673 0.358734 0.894398)} Vertex 18974 -12.6509 -14.4707 0.780419 {normal=(-0.733225 0.288783 0.600749)} Vertex 18975 -12.878 -14.6291 0.480007 {normal=(-0.892310 0.164946 0.305857)} Vertex 18976 -12.902 -14.8296 0.200615 {normal=(-0.992756 0.028382 0.035719)} Vertex 18977 -12.8985 -15.0146 -0.0649993 {normal=(-0.977008 0.048129 0.133326)} Vertex 18978 -12.6452 -15.4123 0.0871005 {normal=(-0.510740 -0.643196 0.568157)} Vertex 18979 -11.2845 -15.1187 0.163624 {normal=(0.876245 0.265915 -0.241463)} Vertex 18980 -11.3496 -14.9318 0.660387 {normal=(0.790590 0.583607 0.056228)} Vertex 18981 -11.9235 -14.9134 0.969897 {normal=(0.204430 0.344479 0.915897)} Vertex 18982 -12.549 -15.0112 0.925601 {normal=(-0.520551 -0.390539 0.754622)} Vertex 18983 -10.9702 -15.8204 0.133448 {normal=(0.128303 -0.101715 -0.972629)} Vertex 18984 -11.2105 -16.0929 0.275193 {normal=(-0.488640 -0.552963 -0.674873)} Vertex 18985 -10.885 -15.5231 0.346337 {normal=(0.821996 0.521379 -0.083320)} Vertex 18986 -11.397 -16.1474 0.566383 {normal=(-0.572562 -0.812324 -0.000672)} Vertex 18987 -10.7509 -15.789 0.371671 {normal=(0.920372 0.359547 0.097561)} Vertex 18988 -10.6477 -16.1966 0.165955 {normal=(0.009041 0.015180 -0.994814)} Vertex 18989 -10.652 -16.5919 0.27984 {normal=(-0.487335 -0.558319 -0.671397)} Vertex 18990 -10.7346 -16.6978 0.547815 {normal=(-0.604706 -0.792344 -0.059092)} Vertex 18991 -10.3645 -16.6251 0.280243 {normal=(0.513581 -0.584101 -0.628243)} Vertex 18992 -10.3735 -16.7359 0.551247 {normal=(0.570215 -0.796547 0.195417)} Vertex 18993 -10.6657 -15.9243 0.333245 {normal=(-0.396506 0.699584 -0.564629)} Vertex 18994 -10.4875 -16.2829 0.147081 {normal=(-0.047649 0.004110 -0.998718)} Vertex 18995 -10.4873 -15.8824 0.319906 {normal=(-0.275806 0.847473 -0.431538)} Vertex 18996 -10.2663 -16.1178 0.135738 {normal=(-0.051479 0.006562 -0.998433)} Vertex 18997 -10.0261 -16.3381 0.269989 {normal=(0.486481 -0.602939 -0.632139)} Vertex 18998 -9.96076 -16.4013 0.534708 {normal=(0.685983 -0.687684 0.208191)} Vertex 18999 -10.0519 -15.9865 0.124268 {normal=(-0.089482 -0.056028 -0.991211)} Vertex 19000 -9.72909 -16.0501 0.213149 {normal=(0.478642 -0.608376 -0.633056)} Vertex 19001 -9.61791 -16.0396 0.458633 {normal=(0.803334 -0.553526 0.209073)} Vertex 19002 -10.308 -15.8562 0.304009 {normal=(-0.299172 0.861804 -0.386909)} Vertex 19003 -9.61853 -15.717 0.382146 {normal=(0.841538 0.527488 -0.019288)} Vertex 19004 -10.2988 -15.8395 0.303067 {normal=(-0.020449 -0.966488 0.245636)} Vertex 19005 -10.0253 -15.8865 0.109378 {normal=(-0.133370 -0.237579 -0.955589)} Vertex 19006 -9.7171 -15.8052 0.161324 {normal=(0.514823 0.181571 -0.837099)} Vertex 19007 -10.4233 -15.7703 0.285552 {normal=(-0.607217 -0.771676 -0.059405)} Vertex 19008 -10.2001 -15.7001 0.0669152 {normal=(-0.172457 -0.370065 -0.912132)} Vertex 19009 -9.99401 -15.5052 0.0762488 {normal=(0.467834 0.236970 -0.850214)} Vertex 19010 -9.92558 -15.3682 0.279536 {normal=(0.632911 0.738098 -0.114216)} Vertex 19011 -10.3433 -15.25 -0.0247208 {normal=(0.402828 0.245106 -0.881069)} Vertex 19012 -10.3584 -15.1185 0.0279298 {normal=(0.572463 0.794836 -0.170281)} Vertex 19013 -10.6358 -15.5652 0.233961 {normal=(-0.732658 -0.630865 -0.122646)} Vertex 19014 -10.4613 -15.4638 0.017405 {normal=(-0.251496 -0.334753 -0.903659)} Vertex 19015 -10.5682 -14.9536 0.0122238 {normal=(-0.297341 0.393610 -0.841618)} Vertex 19016 -10.6638 -15.2459 0.0188735 {normal=(-0.394361 -0.109676 -0.888213)} Vertex 19017 -10.7835 -15.0877 0.0710203 {normal=(-0.546707 0.186478 -0.780687)} Vertex 19018 -10.18 -15.1952 0.214267 {normal=(0.480897 0.857958 -0.171247)} Vertex 19019 -10.6585 -14.8391 0.131917 {normal=(-0.530050 0.519247 -0.632585)} Vertex 19020 -10.8339 -14.9873 0.165544 {normal=(-0.632132 0.376093 -0.638582)} Vertex 19021 -10.7319 -14.8804 0.137816 {normal=(-0.446323 0.560760 -0.684702)} Vertex 19022 -10.6492 -14.9909 0.0151775 {normal=(-0.348116 0.352387 -0.842538)} Vertex 19023 -11.1035 -15.3172 0.234854 {normal=(0.796424 0.485883 -0.244071)} Vertex 19024 -12.1639 -15.5774 0.496322 {normal=(-0.523426 -0.840879 0.087512)} Vertex 19025 -11.9913 -15.648 0.207423 {normal=(-0.331272 -0.932099 0.052608)} Vertex 19026 -11.5947 -15.1995 0.99252 {normal=(0.228810 0.333531 0.914033)} Vertex 19027 -12.0681 -15.3513 1.00302 {normal=(-0.421169 -0.414137 0.805382)} Vertex 19028 -12.2066 -15.5005 0.76414 {normal=(-0.612675 -0.765698 0.183482)} Vertex 19029 -11.1562 -15.1708 0.667344 {normal=(0.771087 0.602365 0.104024)} Vertex 19030 -10.6999 -14.8882 0.484834 {normal=(-0.462699 0.649011 0.559864)} Vertex 19031 -10.7511 -14.8414 0.316252 {normal=(-0.433828 0.809583 0.325458)} Vertex 19032 -10.8499 -14.955 0.313433 {normal=(-0.733039 0.571893 0.288833)} Vertex 19033 -10.6788 -14.7981 0.319552 {normal=(-0.364309 0.771864 0.057640)} Vertex 19034 -10.2084 -15.1379 0.476786 {normal=(0.473994 0.872209 -0.105335)} Vertex 19035 -10.824 -15.0056 0.446729 {normal=(-0.684391 0.456800 0.513927)} Vertex 19036 -10.7242 -15.1237 0.578035 {normal=(-0.565401 0.231624 0.762854)} Vertex 19037 -10.6197 -14.8495 0.48856 {normal=(-0.319435 0.693993 0.634722)} Vertex 19038 -10.5354 -15.3139 0.703206 {normal=(-0.436174 0.035625 0.894683)} Vertex 19039 -10.6662 -15.5037 0.515468 {normal=(-0.767607 -0.557694 0.220661)} Vertex 19040 -10.418 -14.9981 0.579151 {normal=(0.561234 0.818276 -0.060832)} Vertex 19041 -10.4195 -15.0959 0.680315 {normal=(0.235228 0.589628 0.771769)} Vertex 19042 -9.95463 -15.3103 0.535608 {normal=(0.627402 0.747808 -0.077306)} Vertex 19043 -10.0716 -15.3507 0.756744 {normal=(0.297758 0.582624 0.755337)} Vertex 19044 -10.2841 -15.5329 0.800631 {normal=(-0.367674 -0.013779 0.929743)} Vertex 19045 -10.4588 -15.6997 0.594845 {normal=(-0.639799 -0.701024 0.259575)} Vertex 19046 -9.80173 -15.6349 0.855183 {normal=(0.333749 0.542865 0.770138)} Vertex 19047 -10.3363 -15.7547 0.637527 {normal=(0.101038 -0.977282 0.172264)} Vertex 19048 -9.65091 -15.6518 0.647295 {normal=(0.841325 0.527059 -0.029843)} Vertex 19049 -10.3436 -15.7624 0.647699 {normal=(-0.304399 0.929681 -0.144850)} Vertex 19050 -9.64877 -15.9687 0.728215 {normal=(0.803141 -0.540758 0.240760)} Vertex 19051 -9.80899 -15.8633 0.919177 {normal=(0.345156 -0.177991 0.920958)} Vertex 19052 -10.1366 -15.7768 0.904405 {normal=(-0.218688 0.495153 0.830384)} Vertex 19053 -9.98919 -16.3517 0.778813 {normal=(0.689142 -0.681062 0.215622)} Vertex 19054 -10.109 -16.1931 0.983373 {normal=(0.379406 -0.215159 0.899280)} Vertex 19055 -10.3638 -15.944 0.986792 {normal=(-0.139840 0.462108 0.870525)} Vertex 19056 -10.5303 -15.8039 0.701681 {normal=(-0.240755 0.939109 -0.137143)} Vertex 19057 -10.6138 -16.1489 1.05509 {normal=(-0.217066 0.319718 0.917916)} Vertex 19058 -10.722 -15.8625 0.745602 {normal=(-0.605849 0.732058 0.311511)} Vertex 19059 -10.4132 -16.6995 0.8386 {normal=(0.573681 -0.796994 0.182629)} Vertex 19060 -10.4741 -16.5166 1.06324 {normal=(0.365021 -0.270601 0.890216)} Vertex 19061 -10.774 -16.671 0.838895 {normal=(-0.602277 -0.794562 0.044704)} Vertex 19062 -10.764 -16.5222 1.08109 {normal=(-0.346654 -0.486176 0.800235)} Vertex 19063 -10.7839 -16.1101 1.08887 {normal=(0.482062 0.307900 0.808567)} Vertex 19064 -10.8144 -15.7453 0.784409 {normal=(0.903847 0.388608 0.142201)} Vertex 19065 -11.4326 -16.1122 0.821016 {normal=(-0.609928 -0.781799 0.105449)} Vertex 19066 -10.9664 -15.4535 0.745558 {normal=(0.811893 0.539346 0.144044)} Vertex 19067 -11.3407 -15.9813 1.05063 {normal=(-0.388150 -0.432956 0.813267)} Vertex 19068 -11.1464 -15.6744 1.05348 {normal=(0.313499 0.326201 0.884735)} Vertex 19069 -10.7373 -14.165 1.29854 {normal=(-0.594273 -0.286490 0.750769)} Vertex 19070 -10.5066 -13.8777 1.40168 {normal=(0.038747 0.227110 0.971520)} Vertex 19071 -10.2245 -13.7315 1.33939 {normal=(0.085140 0.249161 0.961916)} Vertex 19072 -9.92991 -13.7297 1.11166 {normal=(0.777070 0.437436 0.446320)} Vertex 19073 -9.86131 -13.9392 0.675226 {normal=(0.847078 0.307048 -0.430370)} Vertex 19074 -10.1099 -14.236 0.379308 {normal=(0.334149 -0.048820 -0.934015)} Vertex 19075 -10.4625 -14.4633 0.469302 {normal=(-0.382692 -0.485694 -0.782466)} Vertex 19076 -10.7391 -14.4557 0.889807 {normal=(-0.766556 -0.636444 -0.065462)} Vertex 19077 -10.624 -13.9633 0.00584375 {normal=(0.089294 -0.602943 -0.782214)} Vertex 19078 -11.1581 -13.9078 0.43731 {normal=(-0.636126 -0.764423 -0.029394)} Vertex 19079 -11.3934 -13.3657 0.915846 {normal=(-0.759201 0.111816 0.588634)} Vertex 19080 -11.162 -12.9162 1.07866 {normal=(-0.504365 0.395015 0.728250)} Vertex 19081 -11.1258 -13.6917 1.1809 {normal=(-0.576598 -0.280110 0.767468)} Vertex 19082 -10.881 -13.3193 1.29609 {normal=(0.079841 0.159753 0.982747)} Vertex 19083 -10.5565 -14.1913 0.264037 {normal=(0.097444 -0.739607 -0.650715)} Vertex 19084 -10.9821 -14.134 0.711664 {normal=(-0.732094 -0.671166 -0.102194)} Vertex 19085 -10.2332 -14.7713 0.590915 {normal=(-0.255991 -0.570027 -0.776685)} Vertex 19086 -10.3925 -14.8927 0.989847 {normal=(-0.830798 -0.544224 -0.012754)} Vertex 19087 -10.3188 -14.751 1.40773 {normal=(-0.643714 -0.310405 0.698108)} Vertex 19088 -10.1275 -14.4929 1.55505 {normal=(-0.012700 0.222237 0.971412)} Vertex 19089 -10.1898 -15.237 0.892284 {normal=(-0.905150 -0.422200 -0.031171)} Vertex 19090 -10.0483 -15.265 1.26801 {normal=(-0.335864 -0.761678 0.552342)} Vertex 19091 -9.81355 -15.0616 1.42939 {normal=(0.417692 -0.451007 0.784454)} Vertex 19092 -10.1008 -14.9615 0.572117 {normal=(-0.713662 0.572187 -0.339202)} Vertex 19093 -9.61889 -15.42 1.09843 {normal=(0.454883 -0.550314 0.694581)} Vertex 19094 -10.0461 -15.0624 0.36784 {normal=(-0.643474 0.426929 -0.580253)} Vertex 19095 -10.1161 -15.3859 0.649031 {normal=(-0.896946 -0.427004 -0.096847)} Vertex 19096 -9.9133 -15.5344 0.966834 {normal=(-0.349200 -0.799520 0.487344)} Vertex 19097 -9.89133 -15.2748 0.149092 {normal=(-0.543892 0.276077 -0.763592)} Vertex 19098 -9.96201 -15.5958 0.406852 {normal=(-0.868299 -0.456643 -0.188403)} Vertex 19099 -9.76829 -15.77 0.657895 {normal=(-0.370228 -0.812520 0.449719)} Vertex 19100 -9.48241 -15.657 0.775885 {normal=(0.449854 -0.607308 0.649530)} Vertex 19101 -9.61719 -16.0295 0.318597 {normal=(-0.421360 -0.799275 0.426976)} Vertex 19102 -9.45055 -16.0974 0.331033 {normal=(0.184912 -0.681408 0.697244)} Vertex 19103 -9.65376 -15.5894 -0.0803627 {normal=(-0.446501 0.176245 -0.857751)} Vertex 19104 -9.76008 -15.8427 0.141438 {normal=(-0.812065 -0.499824 -0.287415)} Vertex 19105 -9.29239 -16.2505 0.125758 {normal=(-0.118507 -0.969197 -0.031839)} Vertex 19106 -9.5474 -16.031 -0.056035 {normal=(-0.620317 -0.629692 -0.417715)} Vertex 19107 -9.35159 -16.1076 -0.166424 {normal=(-0.305329 -0.728863 -0.564737)} Vertex 19108 -9.36819 -15.8505 0.513461 {normal=(0.382794 -0.604164 0.683817)} Vertex 19109 -9.07292 -16.2279 0.0439912 {normal=(0.331019 -0.891295 -0.094053)} Vertex 19110 -9.1735 -16.092 -0.219445 {normal=(0.092145 -0.652812 -0.688162)} Vertex 19111 -9.09489 -16.2103 -0.077505 {normal=(0.237610 -0.821317 -0.371381)} Vertex 19112 -9.3181 -16.2304 0.006999 {normal=(-0.217707 -0.890801 -0.283708)} Vertex 19113 -8.82605 -15.851 -0.048962 {normal=(0.870047 -0.052984 -0.403568)} Vertex 19114 -8.91232 -16.07 -0.098545 {normal=(0.672114 -0.489864 -0.418485)} Vertex 19115 -9.02527 -15.9827 -0.242689 {normal=(0.496271 -0.353391 -0.724798)} Vertex 19116 -8.88218 -16.0813 0.0222125 {normal=(0.760618 -0.560080 -0.144305)} Vertex 19117 -9.09592 -15.6415 0.481609 {normal=(0.586125 -0.449583 0.658550)} Vertex 19118 -8.95834 -15.8103 -0.21775 {normal=(0.708321 0.044539 -0.661429)} Vertex 19119 -8.97077 -15.587 -0.122059 {normal=(0.701069 0.390581 -0.563022)} Vertex 19120 -8.79539 -15.8671 0.0694167 {normal=(0.953285 -0.142084 -0.158539)} Vertex 19121 -9.07124 -15.3097 0.0583655 {normal=(0.635130 0.611669 -0.463170)} Vertex 19122 -9.37127 -15.3692 -0.116487 {normal=(-0.189977 0.371650 -0.889683)} Vertex 19123 -8.87201 -15.6516 0.264619 {normal=(0.709615 -0.281100 0.634391)} Vertex 19124 -8.89811 -15.4755 0.235711 {normal=(0.934887 0.244667 0.254898)} Vertex 19125 -9.20276 -15.4418 0.743878 {normal=(0.568809 -0.517577 0.633812)} Vertex 19126 -9.05319 -15.2195 0.575592 {normal=(0.943725 0.196613 0.265324)} Vertex 19127 -9.21774 -15.0195 0.317405 {normal=(0.616152 0.689793 -0.378202)} Vertex 19128 -9.58252 -15.0339 0.109941 {normal=(-0.249747 0.505808 -0.797683)} Vertex 19129 -9.18684 -14.9737 0.883926 {normal=(0.939839 0.193012 0.280873)} Vertex 19130 -9.34092 -14.7878 0.559702 {normal=(0.617719 0.716122 -0.324200)} Vertex 19131 -9.71384 -14.806 0.329717 {normal=(-0.340155 0.657165 -0.624885)} Vertex 19132 -9.33539 -15.2011 1.06673 {normal=(0.530175 -0.487448 0.687548)} Vertex 19133 -9.76563 -14.6948 0.524091 {normal=(-0.432772 0.776231 -0.405906)} Vertex 19134 -9.53881 -14.8431 1.38593 {normal=(0.484850 -0.385554 0.780774)} Vertex 19135 -9.33956 -14.7038 1.16095 {normal=(0.875042 0.320003 0.334112)} Vertex 19136 -9.42061 -14.6276 0.780656 {normal=(0.664800 0.665157 -0.329597)} Vertex 19137 -9.88039 -14.3244 1.49782 {normal=(0.107820 0.309220 0.941024)} Vertex 19138 -9.63675 -14.2779 1.25422 {normal=(0.786712 0.468651 0.394872)} Vertex 19139 -9.61017 -14.3526 0.819497 {normal=(0.774536 0.480868 -0.386355)} Vertex 19140 -9.8859 -14.5359 0.516849 {normal=(0.414547 -0.253290 -0.866119)} Vertex 19141 -9.91967 -13.5596 0.471917 {normal=(0.923472 -0.341029 -0.082817)} Vertex 19142 -10.1453 -13.9005 0.163673 {normal=(0.777464 -0.570373 -0.214628)} Vertex 19143 -10.4973 -13.1446 1.24238 {normal=(0.084817 0.137764 0.985357)} Vertex 19144 -10.091 -13.2334 0.987803 {normal=(0.800258 0.360930 0.478718)} Vertex 19145 -10.755 -12.7311 1.09297 {normal=(-0.300181 0.510024 0.800795)} Vertex 19146 -10.2709 -12.8889 0.805286 {normal=(0.754520 0.642719 0.001042)} Vertex 19147 -9.96253 -13.3004 0.208908 {normal=(0.834980 0.520783 -0.144443)} Vertex 19148 -10.1439 -13.6476 -0.0976915 {normal=(0.244579 -0.453511 -0.847261)} Vertex 19149 -13.1004 -1.27789 -4.01498 {normal=(-0.913846 0.191386 -0.352955)} Vertex 19150 -12.886 -1.28328 -4.51262 {normal=(-0.893936 0.175655 -0.409581)} Vertex 19151 -11.7565 -0.053086 -5.33972 {normal=(-0.513857 0.172545 -0.830359)} Vertex 19152 -11.0058 -1.5807 -5.83806 {normal=(-0.013083 0.047949 -0.959611)} Vertex 19153 -10.2 -1.71982 -5.63033 {normal=(0.468434 0.015481 -0.847378)} Vertex 19154 -9.17786 -1.73246 -4.09787 {normal=(0.951364 0.053023 -0.126397)} Vertex 19155 -9.23676 -1.77189 -3.16126 {normal=(0.913818 0.069563 0.339462)} Vertex 19156 -13.0344 -1.31754 -2.76256 {normal=(-0.908548 0.198254 0.340599)} Vertex 19157 -13.271 -1.26805 -3.49451 {normal=(-0.934105 0.193086 -0.021685)} Vertex 19158 -9.67235 -1.74287 -2.51484 {normal=(0.760813 0.089299 0.629472)} Vertex 19159 -13.5677 -2.99752 -2.78114 {normal=(-0.927220 0.281034 0.235992)} Vertex 19160 -13.6739 -2.99092 -3.57058 {normal=(-0.935232 0.250006 -0.063048)} Vertex 19161 -13.5154 -3.01941 -4.15966 {normal=(-0.900779 0.218440 -0.366180)} Vertex 19162 -13.2376 -3.04464 -4.68284 {normal=(-0.869480 0.173667 -0.458786)} Vertex 19163 -12.8458 -3.07153 -5.23806 {normal=(-0.700886 0.102961 -0.661534)} Vertex 19164 -12.1105 -3.13829 -5.70633 {normal=(-0.374941 0.024811 -0.905576)} Vertex 19165 -10.2643 -3.30124 -5.67486 {normal=(0.438137 -0.037141 -0.873507)} Vertex 19166 -11.1565 -3.22022 -5.87249 {normal=(0.025066 -0.022407 -0.969333)} Vertex 19167 -9.60971 -3.36069 -5.13828 {normal=(0.759601 -0.037690 -0.606128)} Vertex 19168 -9.16076 -3.39383 -4.10233 {normal=(0.946397 -0.030683 -0.160197)} Vertex 19169 -9.17723 -3.39233 -3.0696 {normal=(0.925046 -0.000927 0.308277)} Vertex 19170 -9.59562 -3.36196 -2.35094 {normal=(0.787666 0.052929 0.598750)} Vertex 19171 -12.649 -3.08178 -1.25673 {normal=(-0.458495 0.251585 0.789996)} Vertex 19172 -10.3578 -3.29276 -1.56723 {normal=(0.567312 0.122652 0.791116)} Vertex 19173 -11.5136 -3.1878 -1.0411 {normal=(0.112658 0.193307 0.923033)} Vertex 19174 -11.8244 5.69827 -2.20344 {normal=(-0.887118 0.033041 0.386014)} Vertex 19175 -12.3165 1.66558 -2.1398 {normal=(-0.855414 0.138410 0.471040)} Vertex 19176 -12.1413 4.30726 -2.47764 {normal=(-0.880486 0.108421 0.383467)} Vertex 19177 -12.3001 2.84283 -2.45353 {normal=(-0.883315 0.102300 0.393334)} Vertex 19178 -10.6498 0.386163 -1.28258 {normal=(0.287188 -0.539570 0.695100)} Vertex 19179 -9.457 1.94182 -2.32586 {normal=(0.797668 -0.331421 0.390005)} Vertex 19180 -9.94987 0.63454 -2.19166 {normal=(0.734583 -0.318638 0.526276)} Vertex 19181 -8.81991 6.66755 -5.20468 {normal=(0.407248 -0.010077 -0.852068)} Vertex 19182 -9.78402 7.1004 -5.23355 {normal=(-0.137906 0.142395 -0.922692)} Vertex 19183 -12.5423 4.28274 -3.50999 {normal=(-0.967508 0.244004 -0.022212)} Vertex 19184 -12.1229 5.70163 -3.58774 {normal=(-0.928812 0.341835 -0.079752)} Vertex 19185 -10.7145 7.40039 -4.79212 {normal=(-0.588181 0.284917 -0.703784)} Vertex 19186 -11.5457 6.42766 -1.55983 {normal=(-0.864499 -0.082441 0.443595)} Vertex 19187 -11.1524 6.62862 -0.77483 {normal=(-0.769626 -0.084529 0.599677)} Vertex 19188 -9.12478 6.59368 -0.0737395 {normal=(0.354266 -0.455400 0.773538)} Vertex 19189 -11.6627 6.66395 -3.78739 {normal=(-0.875921 0.388810 -0.246524)} Vertex 19190 -10.5676 6.52876 -0.16835 {normal=(-0.534559 -0.123142 0.795083)} Vertex 19191 -9.94073 6.39922 0.0880827 {normal=(-0.080602 -0.265970 0.907623)} Vertex 19192 -6.11907 9.56089 -3.37175 {normal=(0.888395 -0.399970 -0.183381)} Vertex 19193 -5.82284 10.1637 -3.36627 {normal=(0.909111 -0.269374 -0.244999)} Vertex 19194 -5.60588 10.8356 -2.83809 {normal=(0.932316 0.031339 -0.187025)} Vertex 19195 -5.5542 11.0949 -1.96851 {normal=(0.934120 0.136882 0.016074)} Vertex 19196 -5.63511 10.6625 -0.997702 {normal=(0.923719 0.002942 0.221192)} Vertex 19197 -5.84843 9.96762 -0.588068 {normal=(0.891434 -0.302384 0.259657)} Vertex 19198 -6.06284 9.50294 -0.61963 {normal=(0.862541 -0.416709 0.225945)} Vertex 19199 -6.38532 8.82922 -1.15066 {normal=(0.856063 -0.506802 0.060120)} Vertex 19200 -6.48077 8.74409 -2.20298 {normal=(0.880974 -0.457974 -0.006911)} Vertex 19201 -6.88983 7.79056 -2.38614 {normal=(0.926046 -0.269647 0.100356)} Vertex 19202 -6.65356 8.5077 -3.91095 {normal=(0.883796 -0.328046 -0.261072)} Vertex 19203 -6.39292 9.46479 -4.30677 {normal=(0.839906 -0.283187 -0.412581)} Vertex 19204 -6.10634 10.416 -4.27228 {normal=(0.816641 -0.037487 -0.510623)} Vertex 19205 -5.99848 11.0527 -3.96152 {normal=(0.789073 0.267454 -0.479648)} Vertex 19206 -5.97517 11.5641 -3.41872 {normal=(0.747675 0.481787 -0.371386)} Vertex 19207 -5.94103 11.9253 -2.74821 {normal=(0.718870 0.603575 -0.190671)} Vertex 19208 -5.93222 12.0185 -2.0202 {normal=(0.698573 0.647543 0.049204)} Vertex 19209 -5.95111 11.8187 -1.17266 {normal=(0.680126 0.580081 0.312566)} Vertex 19210 -6.00435 11.2556 -0.39285 {normal=(0.670858 0.422477 0.515808)} Vertex 19211 -6.05139 10.6315 0.0726425 {normal=(0.697108 0.180496 0.605842)} Vertex 19212 -6.18104 10.0778 0.242451 {normal=(0.716353 -0.125888 0.616438)} Vertex 19213 -6.45438 9.35414 0.197318 {normal=(0.717671 -0.350944 0.557831)} Vertex 19214 -6.65177 8.66411 -0.0448602 {normal=(0.745569 -0.482644 0.407186)} Vertex 19215 -6.83835 8.19674 -0.507845 {normal=(0.763477 -0.582597 0.217989)} Vertex 19216 -7.77418 7.98077 0.407758 {normal=(0.476746 -0.543215 0.645186)} Vertex 19217 -7.82332 7.50604 -0.0503433 {normal=(0.549483 -0.648761 0.474618)} Vertex 19218 -8.01689 7.02162 -0.561474 {normal=(0.656859 -0.495476 0.518355)} Vertex 19219 -7.67474 6.7652 -1.29067 {normal=(0.771546 -0.270392 0.542954)} Vertex 19220 -6.93157 6.70982 -2.48978 {normal=(0.919528 -0.122232 0.188541)} Vertex 19221 -6.85036 6.6832 -3.4677 {normal=(0.911534 -0.089452 -0.318055)} Vertex 19222 -7.2365 7.003 -3.95128 {normal=(0.820730 -0.136355 -0.531455)} Vertex 19223 -7.45914 7.71223 -4.52092 {normal=(0.721942 -0.277231 -0.586815)} Vertex 19224 -7.25316 8.9343 -5.08468 {normal=(0.610139 -0.240148 -0.706825)} Vertex 19225 -6.9842 10.3175 -5.16499 {normal=(0.545741 0.097738 -0.770746)} Vertex 19226 -6.96141 11.3398 -4.73659 {normal=(0.472198 0.481738 -0.678180)} Vertex 19227 -7.00302 12.0996 -3.89524 {normal=(0.409617 0.736643 -0.474446)} Vertex 19228 -7.0177 12.5287 -2.93033 {normal=(0.382041 0.867866 -0.205260)} Vertex 19229 -6.96726 12.5423 -1.86492 {normal=(0.364117 0.884201 0.138026)} Vertex 19230 -7.00826 12.1758 -0.79186 {normal=(0.325094 0.774317 0.481412)} Vertex 19231 -7.18137 11.4455 0.0795598 {normal=(0.287348 0.613922 0.704635)} Vertex 19232 -7.31078 10.6037 0.725531 {normal=(0.308123 0.373576 0.830452)} Vertex 19233 -7.43107 9.79609 0.97339 {normal=(0.369921 0.001967 0.877877)} Vertex 19234 -7.6513 8.82825 0.83021 {normal=(0.410683 -0.333912 0.809419)} Vertex 19235 -8.20213 12.847 -1.82478 {normal=(0.090470 0.950374 0.169008)} Vertex 19236 -8.35509 12.0113 -0.236835 {normal=(0.037139 0.732424 0.638275)} Vertex 19237 -9.56358 12.75 -1.70348 {normal=(-0.202771 0.922327 0.193858)} Vertex 19238 -9.46615 12.3557 -0.68937 {normal=(-0.162225 0.790893 0.533538)} Vertex 19239 -10.3009 3.13545 -5.64696 {normal=(-0.062613 -0.075703 -0.989578)} Vertex 19240 -8.22326 10.2488 -5.71071 {normal=(0.116263 0.182999 -0.911293)} Vertex 19241 -9.32421 10.4572 -5.49794 {normal=(-0.328799 0.303766 -0.836870)} Vertex 19242 -8.21864 11.5289 -5.11546 {normal=(0.037504 0.580203 -0.742363)} Vertex 19243 -10.0776 10.4885 -4.98402 {normal=(-0.555454 0.355144 -0.721059)} Vertex 19244 -9.41036 11.6273 -4.59585 {normal=(-0.409999 0.658295 -0.611558)} Vertex 19245 -11.7577 6.67526 -1.61583 {normal=(-0.773148 -0.336112 0.517815)} Vertex 19246 -12.0686 7.12911 -1.6335 {normal=(-0.796485 -0.351078 0.461316)} Vertex 19247 -8.21787 12.3672 -4.12961 {normal=(0.001655 0.820913 -0.506644)} Vertex 19248 -9.56128 12.4478 -3.40908 {normal=(-0.289284 0.837105 -0.440151)} Vertex 19249 -10.261 11.7372 -3.94428 {normal=(-0.458434 0.655212 -0.579841)} Vertex 19250 -10.9171 10.5833 -4.32566 {normal=(-0.601318 0.355353 -0.686742)} Vertex 19251 -11.7976 10.6985 -3.47308 {normal=(-0.746455 0.367840 -0.469799)} Vertex 19252 -11.1874 11.8218 -3.16832 {normal=(-0.594584 0.645500 -0.393089)} Vertex 19253 -10.4714 12.5159 -2.65749 {normal=(-0.409912 0.845662 -0.222526)} Vertex 19254 -10.8573 12.2156 -1.44302 {normal=(-0.523834 0.760496 0.278292)} Vertex 19255 -10.6301 11.7368 -0.474565 {normal=(-0.440515 0.586496 0.615336)} Vertex 19256 -10.0242 11.0882 0.19323 {normal=(-0.352710 0.450330 0.795650)} Vertex 19257 -8.72375 10.5277 1.00196 {normal=(-0.061824 0.437680 0.865720)} Vertex 19258 -8.93427 9.48012 1.36132 {normal=(-0.063968 0.093483 0.938755)} Vertex 19259 -9.88158 9.61864 0.974645 {normal=(-0.434870 0.195303 0.845783)} Vertex 19260 -10.9321 10.1865 -0.0168955 {normal=(-0.581420 0.195575 0.774753)} Vertex 19261 -11.5158 10.8367 -0.613921 {normal=(-0.671813 0.329631 0.599779)} Vertex 19262 -11.7006 11.3764 -1.49091 {normal=(-0.776408 0.517809 0.267794)} Vertex 19263 -11.6262 11.6653 -2.34872 {normal=(-0.759201 0.604362 -0.054119)} Vertex 19264 -12.151 10.6494 -2.51092 {normal=(-0.903054 0.360728 -0.110588)} Vertex 19265 -12.1937 10.4625 -1.65977 {normal=(-0.917144 0.284346 0.195257)} Vertex 19266 -11.9937 9.94222 -0.874533 {normal=(-0.798925 0.106798 0.528566)} Vertex 19267 -12.1761 9.22387 -1.16442 {normal=(-0.846995 -0.024702 0.468059)} Vertex 19268 -11.6934 8.54237 -0.69214 {normal=(-0.714335 -0.165848 0.677334)} Vertex 19269 -11.4666 9.30188 -0.361518 {normal=(-0.685908 -0.029129 0.718817)} Vertex 19270 -10.8577 8.79204 0.248396 {normal=(-0.667540 -0.046823 0.727193)} Vertex 19271 -11.0456 7.8947 -0.148587 {normal=(-0.666975 -0.245598 0.699069)} Vertex 19272 -10.1694 7.46266 0.497795 {normal=(-0.379604 -0.395584 0.779605)} Vertex 19273 -10.1125 8.45189 0.927316 {normal=(-0.449258 -0.147533 0.821623)} Vertex 19274 -9.10905 8.36449 1.15449 {normal=(-0.008965 -0.296088 0.905874)} Vertex 19275 -9.16212 7.42541 0.650841 {normal=(0.094232 -0.537315 0.800006)} Vertex 19276 -9.13798 6.87751 0.178281 {normal=(0.231888 -0.578355 0.744148)} Vertex 19277 -10.054 6.78269 0.193826 {normal=(-0.229482 -0.417369 0.818128)} Vertex 19278 -11.4127 7.09782 -0.897472 {normal=(-0.726538 -0.275115 0.624538)} Vertex 19279 -11.8608 7.77903 -1.07312 {normal=(-0.734736 -0.252850 0.622373)} Vertex 19280 -12.2672 8.52423 -1.45229 {normal=(-0.865937 -0.097540 0.434705)} Vertex 19281 -7.98261 6.1199 -4.46757 {normal=(0.726212 -0.008407 -0.678219)} Vertex 19282 -7.57954 5.3799 -4.1097 {normal=(0.785272 -0.123616 -0.587219)} Vertex 19283 -7.04025 5.50686 -3.39309 {normal=(0.870134 -0.215331 -0.343713)} Vertex 19284 -9.27155 -0.578494 -3.89942 {normal=(0.962122 -0.003360 -0.055321)} Vertex 19285 -9.06851 1.49103 -4.09319 {normal=(0.924688 -0.257394 -0.259996)} Vertex 19286 -9.62393 1.72725 -5.35943 {normal=(0.659002 -0.134926 -0.692065)} Vertex 19287 -9.29814 2.84396 -5.38697 {normal=(0.564709 -0.204806 -0.757970)} Vertex 19288 -8.99096 3.8587 -5.40845 {normal=(0.540714 -0.167765 -0.791071)} Vertex 19289 -8.31942 4.05206 -4.70059 {normal=(0.781842 -0.236304 -0.550679)} Vertex 19290 -8.80373 2.70623 -4.66188 {normal=(0.817883 -0.309052 -0.454734)} Vertex 19291 -9.28522 1.54833 -4.73996 {normal=(0.868138 -0.217319 -0.414403)} Vertex 19292 -12.3871 9.69858 -1.89119 {normal=(-0.968266 0.138178 0.143046)} Vertex 19293 -12.3817 9.79827 -2.58612 {normal=(-0.964781 0.187895 -0.117940)} Vertex 19294 -12.1509 9.61238 -3.47594 {normal=(-0.830244 0.112320 -0.466193)} Vertex 19295 -12.3121 8.78421 -3.19684 {normal=(-0.834524 0.004237 -0.240161)} Vertex 19296 -12.4034 8.18661 -2.8659 {normal=(-0.869859 -0.079775 -0.164942)} Vertex 19297 -12.4391 7.88813 -2.56383 {normal=(-0.946287 -0.182638 -0.180001)} Vertex 19298 -12.4261 7.73809 -2.18611 {normal=(-0.948930 -0.219929 0.108178)} Vertex 19299 -12.3518 7.93463 -1.8011 {normal=(-0.902913 -0.181146 0.347746)} Vertex 19300 -12.016 6.52842 -2.25613 {normal=(-0.890396 -0.252959 0.246013)} Vertex 19301 -12.2074 6.94379 -2.19009 {normal=(-0.896863 -0.349497 0.127332)} Vertex 19302 -12.1678 7.10165 -2.72338 {normal=(-0.910522 -0.229966 -0.265968)} Vertex 19303 -11.9611 7.41293 -3.25784 {normal=(-0.831419 -0.149163 -0.516889)} Vertex 19304 -11.6911 8.12764 -3.81028 {normal=(-0.748750 -0.115444 -0.644056)} Vertex 19305 -11.3847 9.25472 -4.27895 {normal=(-0.685317 0.038567 -0.713711)} Vertex 19306 -10.5483 9.08002 -4.92733 {normal=(-0.622697 0.040394 -0.770476)} Vertex 19307 -9.61543 8.92436 -5.53128 {normal=(-0.346338 -0.023224 -0.891428)} Vertex 19308 -8.45123 8.61344 -5.64402 {normal=(0.167588 -0.165809 -0.918434)} Vertex 19309 -8.72736 7.24303 -5.2844 {normal=(0.302163 -0.208470 -0.861994)} Vertex 19310 -9.72503 7.66901 -5.28144 {normal=(-0.258879 -0.061373 -0.911725)} Vertex 19311 -10.6807 7.94067 -4.76155 {normal=(-0.634489 0.036420 -0.744525)} Vertex 19312 -10.802 6.9269 -5.07103 {normal=(-0.451206 0.429621 -0.739325)} Vertex 19313 -11.013 6.05635 -5.46032 {normal=(-0.342013 0.349609 -0.842537)} Vertex 19314 -10.2583 5.81914 -5.65242 {normal=(-0.030782 0.244612 -0.952385)} Vertex 19315 -9.95757 6.6214 -5.39191 {normal=(-0.049250 0.288238 -0.922846)} Vertex 19316 -9.07364 4.72304 -5.54893 {normal=(0.456665 -0.027225 -0.864989)} Vertex 19317 -8.29345 5.13894 -4.91033 {normal=(0.686176 -0.034112 -0.691935)} Vertex 19318 -9.07994 6.16059 -5.37829 {normal=(0.362010 0.141070 -0.893596)} Vertex 19319 -9.52238 5.3891 -5.67222 {normal=(0.251596 0.129374 -0.943562)} Vertex 19320 -9.90912 4.6131 -5.8011 {normal=(0.100313 -0.013402 -0.981032)} Vertex 19321 -10.1639 3.85566 -5.73025 {normal=(-0.010630 -0.121225 -0.990371)} Vertex 19322 -9.81481 3.03327 -5.64968 {normal=(0.199485 -0.104528 -0.955943)} Vertex 19323 -9.96877 1.93263 -5.60469 {normal=(0.285650 -0.029399 -0.923026)} Vertex 19324 -10.4098 2.01203 -5.61923 {normal=(-0.070761 0.051168 -0.980842)} Vertex 19325 -10.91 1.98294 -5.49251 {normal=(-0.331455 0.061325 -0.925673)} Vertex 19326 -10.8156 3.14982 -5.56648 {normal=(-0.253392 -0.114795 -0.950276)} Vertex 19327 -10.746 3.92108 -5.71036 {normal=(-0.162679 -0.136329 -0.970272)} Vertex 19328 -11.4206 3.04754 -5.27522 {normal=(-0.472461 -0.146827 -0.854899)} Vertex 19329 -11.542 1.90027 -5.13227 {normal=(-0.552014 0.041441 -0.818633)} Vertex 19330 -12.1642 1.8363 -4.60538 {normal=(-0.671658 0.025218 -0.731179)} Vertex 19331 -12.1506 2.90673 -4.71611 {normal=(-0.675103 -0.111619 -0.713585)} Vertex 19332 -11.4304 3.96211 -5.52761 {normal=(-0.397057 -0.139624 -0.889287)} Vertex 19333 -10.557 4.85893 -5.79172 {normal=(-0.086970 0.041494 -0.979149)} Vertex 19334 -11.2857 5.01879 -5.65076 {normal=(-0.337966 0.098468 -0.907850)} Vertex 19335 -12.1332 4.00626 -5.06453 {normal=(-0.677391 -0.067677 -0.697359)} Vertex 19336 -12.2231 5.41023 -4.7397 {normal=(-0.839933 0.320078 -0.339390)} Vertex 19337 -11.7136 6.43583 -4.28383 {normal=(-0.815403 0.502886 -0.241846)} Vertex 19338 -11.6629 6.91226 -3.55412 {normal=(-0.864302 0.134002 -0.424879)} Vertex 19339 -12.0271 6.6028 -2.91624 {normal=(-0.935137 -0.007783 -0.148056)} Vertex 19340 -12.1911 5.78563 -3.05929 {normal=(-0.943163 0.171434 0.074243)} Vertex 19341 -12.2079 5.60427 -4.0623 {normal=(-0.910446 0.381802 -0.078473)} Vertex 19342 -12.5457 4.11498 -4.48777 {normal=(-0.893421 0.082373 -0.361303)} Vertex 19343 -12.5431 4.30579 -3.11733 {normal=(-0.932210 0.192159 0.181528)} Vertex 19344 -13.055 0.124344 -3.34167 {normal=(-0.954444 0.081764 0.024769)} Vertex 19345 -12.8628 2.90857 -3.23455 {normal=(-0.952511 0.165814 0.079444)} Vertex 19346 -12.6454 2.86853 -4.21671 {normal=(-0.854317 -0.002860 -0.468628)} Vertex 19347 -12.7129 1.88 -4.09934 {normal=(-0.819277 0.023169 -0.544151)} Vertex 19348 -12.7648 1.00859 -4.06548 {normal=(-0.846092 0.065561 -0.512727)} Vertex 19349 -12.9254 1.94628 -3.65125 {normal=(-0.943796 0.060177 -0.306399)} Vertex 19350 -13.0025 1.95471 -3.2835 {normal=(-0.978813 0.089975 -0.042900)} Vertex 19351 -12.8688 1.06049 -2.80579 {normal=(-0.915254 0.033977 0.354185)} Vertex 19352 -12.6159 2.85433 -2.80603 {normal=(-0.861755 0.137686 0.442315)} Vertex 19353 -12.3601 4.318 -2.70493 {normal=(-0.841380 0.102078 0.516883)} Vertex 19354 -12.0618 5.7868 -2.46249 {normal=(-0.876503 -0.015062 0.426507)} Vertex 19355 -12.1267 4.35475 -1.86549 {normal=(-0.968019 0.178450 0.158515)} Vertex 19356 -11.7801 5.65644 -1.6887 {normal=(-0.944342 0.223921 0.216426)} Vertex 19357 -11.2851 6.24739 -0.800755 {normal=(-0.787675 0.186881 0.534088)} Vertex 19358 -11.5907 5.50503 -0.834686 {normal=(-0.799785 0.274205 0.462369)} Vertex 19359 -11.957 4.36765 -0.877484 {normal=(-0.835440 0.174809 0.424465)} Vertex 19360 -12.1907 3.04716 -0.975502 {normal=(-0.862257 -0.011223 0.404622)} Vertex 19361 -12.3031 2.9447 -1.89254 {normal=(-0.979333 0.048380 0.168772)} Vertex 19362 -12.816 1.87628 -2.85024 {normal=(-0.897070 0.120074 0.348167)} Vertex 19363 -12.195 1.66857 -1.71136 {normal=(-0.903429 -0.012366 0.364517)} Vertex 19364 -12.0467 1.79203 -1.0355 {normal=(-0.772372 -0.191621 0.536588)} Vertex 19365 -11.4526 1.97111 -0.455892 {normal=(-0.393237 -0.259689 0.822769)} Vertex 19366 -11.5298 3.05891 -0.276379 {normal=(-0.454568 -0.083711 0.817255)} Vertex 19367 -11.2982 4.22608 -0.156719 {normal=(-0.436292 0.070759 0.834846)} Vertex 19368 -10.9865 5.21487 -0.16543 {normal=(-0.428640 0.152057 0.837846)} Vertex 19369 -10.7167 6.03988 -0.189058 {normal=(-0.476860 0.087407 0.832136)} Vertex 19370 -7.48493 4.27987 -3.28396 {normal=(0.856518 -0.398678 -0.218574)} Vertex 19371 -8.3284 2.8119 -3.3708 {normal=(0.875421 -0.431567 -0.101128)} Vertex 19372 -8.90315 1.55454 -3.48047 {normal=(0.933823 -0.294657 -0.054440)} Vertex 19373 -9.16095 0.370506 -3.64874 {normal=(0.965153 -0.145142 -0.036516)} Vertex 19374 -9.22759 0.427015 -2.93112 {normal=(0.838351 -0.184555 0.420244)} Vertex 19375 -8.86937 1.66852 -2.88309 {normal=(0.789537 -0.303273 0.409331)} Vertex 19376 -8.2372 2.99113 -2.76435 {normal=(0.738900 -0.443545 0.375320)} Vertex 19377 -7.38719 4.3969 -2.57454 {normal=(0.777640 -0.421246 0.306591)} Vertex 19378 -6.95708 5.61134 -2.45541 {normal=(0.857189 -0.230076 0.247832)} Vertex 19379 -7.66836 5.82568 -1.49647 {normal=(0.676841 -0.301233 0.651603)} Vertex 19380 -7.85812 4.60145 -1.99019 {normal=(0.598167 -0.411937 0.678688)} Vertex 19381 -8.57907 4.71156 -1.22214 {normal=(0.895547 -0.235244 0.334766)} Vertex 19382 -8.68361 5.6283 -0.629883 {normal=(0.743037 -0.146893 0.617033)} Vertex 19383 -8.97301 6.28735 -0.228739 {normal=(0.516473 -0.232301 0.786924)} Vertex 19384 -9.38166 4.78956 -0.162516 {normal=(0.424625 -0.105411 0.863203)} Vertex 19385 -8.79109 4.69891 -0.662952 {normal=(0.784934 -0.145602 0.523646)} Vertex 19386 -9.33311 5.68296 -0.0859172 {normal=(0.398937 -0.113233 0.884152)} Vertex 19387 -10.0286 5.88097 0.0392465 {normal=(-0.029568 -0.068460 0.959240)} Vertex 19388 -10.1698 4.97213 0.0230042 {normal=(0.014882 -0.003559 0.977731)} Vertex 19389 -10.3354 3.99572 -0.000822751 {normal=(0.043995 -0.060260 0.972795)} Vertex 19390 -10.5333 2.94471 -0.114048 {normal=(0.038091 -0.161197 0.961954)} Vertex 19391 -10.131 1.75076 -0.493674 {normal=(0.337426 -0.393542 0.827090)} Vertex 19392 -9.75014 2.72642 -0.327389 {normal=(0.428648 -0.239114 0.840261)} Vertex 19393 -9.48741 3.75951 -0.249891 {normal=(0.462651 -0.157919 0.835461)} Vertex 19394 -8.94183 3.55119 -0.885472 {normal=(0.818259 -0.220720 0.409512)} Vertex 19395 -8.84974 3.43113 -1.64899 {normal=(0.932927 -0.310919 0.142079)} Vertex 19396 -8.55651 3.23159 -2.36414 {normal=(0.592397 -0.411094 0.688921)} Vertex 19397 -9.1981 1.81886 -2.55205 {normal=(0.660206 -0.283204 0.689722)} Vertex 19398 -9.64395 0.539337 -2.47733 {normal=(0.710507 -0.192715 0.676169)} Vertex 19399 -9.83272 0.910299 -1.67921 {normal=(0.760655 -0.478521 0.343494)} Vertex 19400 -9.29169 2.06416 -1.79079 {normal=(0.919090 -0.372465 0.108934)} Vertex 19401 -9.2781 2.37914 -0.91654 {normal=(0.766583 -0.325610 0.422314)} Vertex 19402 -9.7782 1.44696 -0.931207 {normal=(0.630204 -0.475221 0.529004)} Vertex 19403 -10.4019 1.01497 -0.819922 {normal=(0.304290 -0.546901 0.720904)} Vertex 19404 -11.941 0.284381 -1.45505 {normal=(-0.511904 -0.151199 0.755804)} Vertex 19405 -11.5088 0.798963 -1.01813 {normal=(-0.362446 -0.396142 0.754318)} Vertex 19406 -11.0242 1.2432 -0.617314 {normal=(-0.131132 -0.441564 0.837744)} Vertex 19407 -10.6764 1.9098 -0.322584 {normal=(0.025088 -0.318798 0.926865)} Vertex 19408 -11.7497 0.772597 -5.15725 {normal=(-0.578767 0.174604 -0.793938)} Vertex 19409 -12.3958 0.0647512 -4.80942 {normal=(-0.733285 0.182495 -0.615428)} Vertex 19410 -12.7383 0.110176 -4.20378 {normal=(-0.886125 0.119981 -0.440461)} Vertex 19411 -12.9395 0.118795 -3.75969 {normal=(-0.928946 0.096813 -0.338039)} Vertex 19412 -10.0414 0.755798 -5.65673 {normal=(0.444915 0.054515 -0.847445)} Vertex 19413 -10.4996 0.802526 -5.75904 {normal=(-0.018909 0.162408 -0.954994)} Vertex 19414 -10.5736 -0.0186802 -5.97637 {normal=(-0.030165 -0.005876 -0.941166)} Vertex 19415 -10.1647 -0.138434 -5.8571 {normal=(0.455445 -0.101779 -0.814524)} Vertex 19416 -11.0358 0.793427 -5.60884 {normal=(-0.379888 0.188724 -0.894297)} Vertex 19417 -11.0103 0.035611 -5.82806 {normal=(-0.388356 0.047311 -0.897895)} Vertex 19418 -10.7023 -0.500093 -5.90697 {normal=(-0.121792 -0.236223 -0.918309)} Vertex 19419 -10.2442 -0.653035 -5.77807 {normal=(0.412149 -0.306067 -0.798107)} Vertex 19420 -9.76045 0.625324 -5.38845 {normal=(0.775708 -0.054736 -0.602517)} Vertex 19421 -9.9104 -0.267167 -5.55087 {normal=(0.751717 -0.140925 -0.621709)} Vertex 19422 -9.50125 -0.539148 -4.77721 {normal=(0.882020 0.015023 -0.432602)} Vertex 19423 -9.83313 -0.545827 -2.52352 {normal=(0.731938 -0.056849 0.661368)} Vertex 19424 -9.41206 -0.603658 -3.08341 {normal=(0.876464 -0.037611 0.400882)} Vertex 19425 -11.0838 -0.313549 -1.68387 {normal=(0.141398 -0.251282 0.831648)} Vertex 19426 -12.5534 0.948732 -2.18503 {normal=(-0.817877 0.068575 0.561892)} Vertex 19427 7.99148 -42.9272 0.632355 {normal=(0.321781 -0.077187 0.942440)} Vertex 19428 7.40007 -42.4 0.882754 {normal=(0.332041 -0.169928 0.926468)} Vertex 19429 6.30814 -42.2352 1.34406 {normal=(0.388220 -0.201647 0.898080)} Vertex 19430 5.31999 -42.4361 1.76442 {normal=(0.454470 -0.126124 0.879201)} Vertex 19431 4.87451 -42.974 1.97484 {normal=(0.448108 -0.029535 0.892057)} Vertex 19432 4.70234 -43.7663 2.06596 {normal=(0.386506 -0.000985 0.921704)} Vertex 19433 4.67601 -44.6277 2.0701 {normal=(0.456796 -0.059433 0.863473)} Vertex 19434 6.48976 -45.1007 1.20328 {normal=(0.256076 -0.055649 0.640155)} Vertex 19435 8.33502 -44.7023 0.480752 {normal=(0.255213 -0.061735 0.948429)} Vertex 19436 8.26156 -43.8815 0.515172 {normal=(0.342861 -0.018805 0.938985)} Vertex 19437 8.62136 -44.7148 1.22701 {normal=(-0.373360 -0.034372 -0.925979)} Vertex 19438 6.79877 -45.1007 2.07241 {normal=(-0.085793 -0.008140 -0.865614)} Vertex 19439 4.97089 -44.6356 2.7993 {normal=(-0.260213 -0.039903 -0.951137)} Vertex 19440 4.97555 -43.7955 2.79634 {normal=(-0.377939 0.008934 -0.925486)} Vertex 19441 5.18822 -43.024 2.70416 {normal=(-0.433112 0.053448 -0.898168)} Vertex 19442 5.69464 -42.5621 2.47155 {normal=(-0.453825 0.136426 -0.879185)} Vertex 19443 6.62884 -42.4307 2.04932 {normal=(-0.393908 0.199066 -0.895886)} Vertex 19444 7.67211 -42.5904 1.60712 {normal=(-0.329505 0.164713 -0.928003)} Vertex 19445 8.26789 -43.0442 1.37004 {normal=(-0.317047 0.068525 -0.944724)} Vertex 19446 8.53901 -43.919 1.26389 {normal=(-0.341011 0.014230 -0.939732)} Vertex 19447 5.46694 -39.9407 -1.68072 {normal=(0.288512 -0.754301 0.565995)} Vertex 19448 4.32252 -39.9893 -1.311 {normal=(0.037570 -0.784062 0.607160)} Vertex 19449 3.73428 -40.1966 -1.73659 {normal=(-0.017647 -0.825706 0.560951)} Vertex 19450 3.27162 -40.7639 -2.52627 {normal=(0.078883 -0.803732 0.586623)} Vertex 19451 3.03872 -40.6546 -3.50476 {normal=(-0.074171 -0.810605 -0.562476)} Vertex 19452 3.29507 -40.0737 -4.61364 {normal=(-0.108753 -0.934595 -0.298687)} Vertex 19453 4.04913 -40.0394 -5.47073 {normal=(-0.180718 -0.969235 -0.159140)} Vertex 19454 4.99232 -40.2797 -5.55483 {normal=(-0.242413 -0.940494 -0.228745)} Vertex 19455 5.8799 -40.7883 -4.81202 {normal=(-0.240422 -0.914543 -0.323171)} Vertex 19456 6.37528 -40.8894 -4.08105 {normal=(0.400534 -0.693870 0.597132)} Vertex 19457 6.51538 -40.4339 -3.58695 {normal=(0.409516 -0.760702 0.496183)} Vertex 19458 6.42754 -40.0574 -2.70497 {normal=(0.428959 -0.781207 0.452023)} Vertex 19459 2.9286 -43.8161 -3.38086 {normal=(0.348540 0.030247 0.936770)} Vertex 19460 3.02426 -44.6361 -3.38665 {normal=(0.345429 0.021215 0.938112)} Vertex 19461 3.09897 -45.0316 -3.40753 {normal=(0.344682 0.004825 0.938518)} Vertex 19462 4.49081 -45.1421 -3.98944 {normal=(0.394600 -0.018299 0.917448)} Vertex 19463 5.83742 -45.0593 -4.57032 {normal=(0.460971 -0.019579 0.886659)} Vertex 19464 5.88915 -44.668 -4.59453 {normal=(0.493835 -0.027506 0.868874)} Vertex 19465 6.0119 -43.7976 -4.60987 {normal=(0.506054 -0.073847 0.858860)} Vertex 19466 6.16567 -42.7045 -4.57104 {normal=(0.513992 -0.110232 0.850627)} Vertex 19467 5.7705 -41.7575 -5.01904 {normal=(0.295342 0.872805 0.384702)} Vertex 19468 4.88365 -41.1659 -5.67917 {normal=(0.259185 0.926270 0.257174)} Vertex 19469 3.92555 -40.9467 -5.55614 {normal=(0.167089 0.969215 0.171984)} Vertex 19470 3.17137 -40.9889 -4.79365 {normal=(0.093033 0.933591 0.309078)} Vertex 19471 2.8847 -41.4857 -3.85574 {normal=(0.137971 0.644812 0.673014)} Vertex 19472 2.83274 -42.589 -3.38501 {normal=(0.272743 0.218063 0.915708)} Vertex 19473 3.31398 -41.6583 -2.18049 {normal=(-0.225233 0.586287 -0.771290)} Vertex 19474 3.55738 -41.1694 -1.77508 {normal=(-0.106937 0.752613 -0.632924)} Vertex 19475 3.97699 -40.7631 -1.15329 {normal=(-0.018825 0.822682 -0.567312)} Vertex 19476 4.46543 -40.5012 -0.740791 {normal=(-0.104311 0.759420 -0.631935)} Vertex 19477 5.56605 -40.4409 -1.11829 {normal=(-0.300171 0.734280 -0.594389)} Vertex 19478 6.67096 -40.5876 -2.18432 {normal=(-0.412093 0.767606 -0.489794)} Vertex 19479 6.82445 -41.0467 -3.17561 {normal=(-0.397290 0.756569 -0.515779)} Vertex 19480 6.72841 -41.7629 -3.61636 {normal=(-0.488046 0.167145 -0.856008)} Vertex 19481 6.70511 -42.7047 -3.74045 {normal=(-0.506779 0.093339 -0.855940)} Vertex 19482 6.56062 -43.7999 -3.7196 {normal=(-0.509480 0.035623 -0.859576)} Vertex 19483 6.43748 -44.6702 -3.66951 {normal=(-0.536912 -0.059151 -0.836667)} Vertex 19484 6.38787 -45.0592 -3.60243 {normal=(-0.548483 -0.125980 -0.825580)} Vertex 19485 4.97237 -45.142 -2.92257 {normal=(-0.410914 -0.088926 -0.896886)} Vertex 19486 3.48781 -45.0315 -2.31039 {normal=(-0.282185 -0.074692 -0.955530)} Vertex 19487 3.39136 -44.6357 -2.31536 {normal=(-0.313022 -0.050928 -0.946380)} Vertex 19488 3.32493 -43.8267 -2.30885 {normal=(-0.359237 -0.022562 -0.932948)} Vertex 19489 3.2409 -42.6147 -2.31274 {normal=(-0.364216 -0.025267 -0.930963)} Vertex 19490 3.40676 -44.9142 -2.90124 {normal=(-0.809966 -0.462743 0.284142)} Vertex 19491 6.00064 -44.9695 -4.02471 {normal=(0.461457 -0.847473 -0.262387)} Vertex 19492 8.37172 -44.9334 0.893888 {normal=(-0.068904 0.997294 0.025632)} Vertex 19493 4.92254 -44.9346 2.38997 {normal=(0.090617 0.995291 -0.034413)} Vertex 19494 3.97327 -40.5444 -1.54716 {normal=(-0.739762 0.293400 0.550090)} Vertex 19495 3.37956 -40.5605 -4.63128 {normal=(-0.846735 0.177027 -0.410472)} Vertex 19496 4.74729 -45.0131 -3.45547 {normal=(0.015715 -0.999852 -0.006950)} Vertex 19497 4.97551 -44.6089 2.37817 {normal=(-0.929110 0.023694 0.368895)} Vertex 19498 4.98494 -43.8123 2.37398 {normal=(-0.903584 0.162686 0.366608)} Vertex 19499 5.1444 -43.0911 2.28131 {normal=(-0.737787 0.508154 0.372685)} Vertex 19500 5.55511 -42.6359 2.06805 {normal=(-0.378632 0.822523 0.341196)} Vertex 19501 6.44925 -42.4854 1.66542 {normal=(0.033866 0.949112 0.237955)} Vertex 19502 7.45418 -42.6244 1.24623 {normal=(0.421299 0.871729 0.057566)} Vertex 19503 7.99543 -43.0586 1.03992 {normal=(0.759187 0.552459 -0.173010)} Vertex 19504 8.24854 -43.9254 0.946177 {normal=(0.916946 0.204955 -0.320369)} Vertex 19505 8.32699 -44.6918 0.913539 {normal=(0.933320 0.059488 -0.352841)} Vertex 19506 4.05115 -40.5168 -5.39564 {normal=(-0.392326 0.155516 -0.828517)} Vertex 19507 3.55261 -41.0065 -2.22833 {normal=(-0.910497 0.108658 0.389977)} Vertex 19508 4.4418 -40.3399 -1.13315 {normal=(-0.284448 0.600455 0.657058)} Vertex 19509 6.51912 -40.7891 -3.34554 {normal=(0.899573 0.253690 -0.294226)} Vertex 19510 5.44617 -40.3063 -1.48391 {normal=(0.316041 0.711949 0.537507)} Vertex 19511 4.87144 -40.7363 -5.47499 {normal=(0.273124 0.095705 -0.888855)} Vertex 19512 6.41419 -40.4125 -2.47235 {normal=(0.759508 0.527071 0.133876)} Vertex 19513 6.29286 -42.7019 -4.06871 {normal=(0.839260 -0.036243 -0.537322)} Vertex 19514 5.69666 -41.2817 -4.81175 {normal=(0.721818 0.057454 -0.669177)} Vertex 19515 6.34426 -41.7105 -3.92052 {normal=(0.847678 0.065338 -0.524013)} Vertex 19516 3.11466 -41.0915 -3.66923 {normal=(-0.965076 0.125306 0.061764)} Vertex 19517 3.29383 -41.6059 -2.73764 {normal=(-0.943350 0.071536 0.319909)} Vertex 19518 3.19415 -42.6023 -2.90703 {normal=(-0.940242 -0.012275 0.331981)} Vertex 19519 3.28286 -43.8067 -2.90536 {normal=(-0.937858 -0.036270 0.342267)} Vertex 19520 6.02085 -44.637 -4.05019 {normal=(0.855609 -0.048399 -0.512197)} Vertex 19521 6.64544 -44.9304 1.63992 {normal=(0.000000 -1.000000 0.000000)} Vertex 19522 6.14375 -43.7798 -4.07916 {normal=(0.845406 -0.107574 -0.523054)} Vertex 19523 3.34251 -44.5665 -2.9017 {normal=(-0.926021 -0.130513 0.325597)} Vertex 19524 6.79331 -45.271 -1.07538 {normal=(0.000000 -1.000000 0.000000)} Vertex 19525 5.63373 -26.5599 -1.30418 {normal=(-0.274200 0.717512 -0.615268)} Vertex 19526 3.79337 -45.2738 -4.53527 {normal=(0.002987 -0.999995 0.000308)} Vertex 19527 6.16426 -45.271 4.48399 {normal=(0.000000 -1.000000 0.000000)} Vertex 19528 7.39895 -45.271 4.26411 {normal=(0.000000 -1.000000 0.000000)} Vertex 19529 7.83559 -45.271 2.51845 {normal=(0.000000 -1.000000 0.000000)} Vertex 19530 6.48879 -45.271 0.356002 {normal=(0.000000 -1.000000 0.000000)} Vertex 19531 2.68518 -33.6241 -5.37144 {normal=(-0.539035 0.630947 -0.551686)} Vertex 19532 3.30035 -33.6322 -5.89027 {normal=(-0.384836 0.631054 -0.664278)} Vertex 19533 4.04305 -33.6297 -6.1549 {normal=(-0.182640 0.564503 -0.792606)} Vertex 19534 4.91473 -33.5539 -6.20574 {normal=(0.021107 0.461461 -0.880497)} Vertex 19535 2.17644 -33.5555 -4.7239 {normal=(-0.675532 0.597475 -0.416830)} Vertex 19536 2.0396 -33.3496 -4.03305 {normal=(-0.797641 0.519207 -0.293955)} Vertex 19537 2.07524 -32.7886 -3.27678 {normal=(-0.887193 0.373122 -0.255232)} Vertex 19538 2.22273 -31.6019 -2.53054 {normal=(-0.939815 0.279405 -0.183952)} Vertex 19539 2.56175 -30.0826 -1.86418 {normal=(-0.954851 0.284657 -0.067678)} Vertex 19540 3.02594 -28.5645 -1.41095 {normal=(-0.935421 0.346687 0.021666)} Vertex 19541 5.81888 -33.3419 -5.99467 {normal=(0.176798 0.349623 -0.915674)} Vertex 19542 6.76796 -32.8723 -5.61825 {normal=(0.321178 0.249477 -0.909202)} Vertex 19543 7.48529 -32.0198 -5.11305 {normal=(0.464359 0.188616 -0.862027)} Vertex 19544 8.00031 -30.7878 -4.54205 {normal=(0.564326 0.160694 -0.808696)} Vertex 19545 8.37506 -29.0112 -3.91242 {normal=(0.632788 0.221317 -0.736095)} Vertex 19546 3.55259 -27.3259 -1.04536 {normal=(-0.820897 0.525476 0.134763)} Vertex 19547 8.48692 -27.4075 -3.24159 {normal=(0.666487 0.466819 -0.531795)} Vertex 19548 8.23759 -26.6636 -2.55248 {normal=(0.577489 0.757546 -0.178703)} Vertex 19549 7.59916 -26.3468 -1.80891 {normal=(0.385025 0.899648 0.133788)} Vertex 19550 6.42557 -26.2366 -1.0177 {normal=(0.150971 0.928737 0.306878)} Vertex 19551 5.15873 -26.3443 -0.54025 {normal=(-0.164383 0.897367 0.363148)} Vertex 19552 4.23528 -26.6543 -0.66606 {normal=(-0.537420 0.760663 0.283647)} Vertex 19553 4.41216 -32.7434 -4.49116 {normal=(-0.304888 0.683285 -0.650188)} Vertex 19554 3.57454 -33.4479 -5.42889 {normal=(-0.162038 0.940003 -0.299288)} Vertex 19555 5.25035 -30.3998 -3.27543 {normal=(-0.355650 0.428528 -0.829003)} Vertex 19556 5.99405 -27.3247 -2.21499 {normal=(-0.344813 0.496830 -0.787698)} Vertex 19557 3.56159 -27.6098 -0.955589 {normal=(-0.471828 -0.049605 0.879827)} Vertex 19558 2.1396 -33.8444 -4.70672 {normal=(-0.885635 -0.227167 -0.321936)} Vertex 19559 2.57204 -30.3561 -1.79633 {normal=(-0.547143 -0.135862 0.815184)} Vertex 19560 2.06454 -33.0701 -3.21957 {normal=(-0.869736 -0.226598 0.401620)} Vertex 19561 3.24538 -33.9088 -5.88884 {normal=(-0.485897 -0.247237 -0.825494)} Vertex 19562 4.87539 -33.8425 -6.18524 {normal=(0.158468 -0.341162 -0.907914)} Vertex 19563 6.74147 -33.1608 -5.56119 {normal=(0.680136 -0.423807 -0.530579)} Vertex 19564 7.98413 -31.0572 -4.45754 {normal=(0.930845 -0.310255 0.090550)} Vertex 19565 5.18257 -26.5849 -0.40495 {normal=(0.070121 0.090302 0.963193)} Vertex 19566 7.63806 -26.5855 -1.67594 {normal=(0.685422 0.043174 0.709790)} Vertex 19567 8.48691 -27.6857 -3.14418 {normal=(0.907115 -0.158904 0.384859)} Vertex 19568 2.63441 -33.9058 -5.36742 {normal=(-0.707483 -0.227468 -0.651993)} Vertex 19569 2.01221 -33.637 -3.9907 {normal=(-0.949701 -0.232358 0.083297)} Vertex 19570 2.22618 -31.8757 -2.46538 {normal=(-0.712135 -0.191833 0.650814)} Vertex 19571 3.03616 -28.8527 -1.34009 {normal=(-0.477164 -0.089524 0.872075)} Vertex 19572 4.24397 -26.9142 -0.546235 {normal=(-0.314807 0.015749 0.933824)} Vertex 19573 6.46533 -26.4683 -0.880386 {normal=(0.443424 0.106580 0.873968)} Vertex 19574 8.26332 -26.9157 -2.43278 {normal=(0.842913 -0.063419 0.518280)} Vertex 19575 8.35942 -29.2973 -3.82829 {normal=(0.926516 -0.232544 0.277496)} Vertex 19576 7.46792 -32.2933 -5.0358 {normal=(0.868590 -0.392069 -0.188638)} Vertex 19577 5.78843 -33.6344 -5.95859 {normal=(0.427974 -0.392228 -0.791173)} Vertex 19578 3.99432 -33.9113 -6.15042 {normal=(-0.176257 -0.288004 -0.918850)} Vertex 19579 7.27455 -26.4102 -1.86281 {normal=(-0.314099 0.708013 -0.618047)} Vertex 19580 4.82732 -31.7549 -3.89113 {normal=(-0.340180 0.531926 -0.772461)} Vertex 19581 5.67307 -28.7509 -2.72868 {normal=(-0.364393 0.389477 -0.845848)} Vertex 19582 3.41111 -33.5294 -5.71065 {normal=(-0.096607 0.972172 -0.177426)} Vertex 19583 2.68989 -34.5522 -5.25403 {normal=(-0.717445 -0.175681 -0.624705)} Vertex 19584 2.14892 -34.4217 -3.98174 {normal=(-0.953082 -0.175423 0.016567)} Vertex 19585 2.51505 -33.5658 -2.52656 {normal=(-0.817289 -0.158961 0.520881)} Vertex 19586 3.30989 -32.065 -1.41665 {normal=(-0.565247 -0.092007 0.805264)} Vertex 19587 4.33882 -31.0707 -0.776742 {normal=(-0.245589 -0.052172 0.935644)} Vertex 19588 6.1093 -30.8388 -1.12169 {normal=(0.435987 -0.035846 0.848807)} Vertex 19589 7.52929 -31.074 -2.47921 {normal=(0.854220 -0.124295 0.459003)} Vertex 19590 7.6704 -32.2833 -3.76498 {normal=(0.944626 -0.216485 0.088693)} Vertex 19591 6.97538 -33.7629 -4.93058 {normal=(0.809336 -0.275872 -0.433471)} Vertex 19592 5.54319 -34.4198 -5.85324 {normal=(0.359952 -0.226140 -0.871931)} Vertex 19593 3.97905 -34.5572 -6.00209 {normal=(-0.224311 -0.187220 -0.925188)} Vertex 19594 2.94082 -36.3993 -5.03016 {normal=(-0.748404 -0.129219 -0.571122)} Vertex 19595 2.54572 -36.3938 -3.93459 {normal=(-0.945467 -0.132146 -0.033749)} Vertex 19596 2.9431 -36.4138 -2.59912 {normal=(-0.873893 -0.102346 0.431404)} Vertex 19597 3.61208 -36.4196 -1.58897 {normal=(-0.639858 -0.070413 0.737039)} Vertex 19598 4.3879 -36.4159 -1.15799 {normal=(-0.186191 -0.068875 0.930075)} Vertex 19599 5.65253 -36.4152 -1.52726 {normal=(0.444708 -0.089339 0.807239)} Vertex 19600 6.66766 -36.4186 -2.65423 {normal=(0.876853 -0.112666 0.381304)} Vertex 19601 6.83383 -36.4224 -3.75038 {normal=(0.957387 -0.134799 -0.089307)} Vertex 19602 6.37237 -36.422 -4.81125 {normal=(0.778149 -0.131845 -0.544363)} Vertex 19603 5.28121 -36.4186 -5.70695 {normal=(0.319972 -0.106102 -0.883307)} Vertex 19604 4.01132 -36.4172 -5.75082 {normal=(-0.272219 -0.106173 -0.905133)} Vertex 19605 3.15701 -38.232 -4.87406 {normal=(-0.790980 -0.054840 -0.542121)} Vertex 19606 2.85606 -38.2236 -3.88699 {normal=(-0.960481 -0.054270 -0.053583)} Vertex 19607 3.11551 -38.2466 -2.65002 {normal=(-0.905718 -0.030431 0.378122)} Vertex 19608 3.65894 -38.2553 -1.70437 {normal=(-0.671579 -0.010720 0.703933)} Vertex 19609 4.36787 -38.252 -1.29194 {normal=(-0.185096 -0.007038 0.925011)} Vertex 19610 5.54778 -38.2515 -1.64819 {normal=(0.464476 -0.015974 0.799156)} Vertex 19611 6.49372 -38.2547 -2.72469 {normal=(0.893499 -0.024353 0.342460)} Vertex 19612 6.60581 -38.2582 -3.75858 {normal=(0.962131 -0.035974 -0.144801)} Vertex 19613 6.15836 -38.2578 -4.75412 {normal=(0.787575 -0.039769 -0.563645)} Vertex 19614 5.17892 -38.2546 -5.5989 {normal=(0.313553 -0.029675 -0.880213)} Vertex 19615 4.02962 -38.2532 -5.58028 {normal=(-0.327968 -0.033661 -0.883447)} Vertex 19616 6.78402 -45.149 -3.04605 {normal=(0.682478 -0.659204 -0.315702)} Vertex 19617 7.86381 -45.1491 5.28768 {normal=(0.302674 -0.668519 0.628329)} Vertex 19618 8.98202 -45.149 2.93311 {normal=(0.708961 -0.685581 0.027841)} Vertex 19619 8.67307 -45.149 4.42455 {normal=(0.628009 -0.662238 0.360552)} Vertex 19620 6.91995 -45.1491 5.37079 {normal=(-0.156534 -0.658661 0.701234)} Vertex 19621 6.0443 -45.149 4.8931 {normal=(-0.474258 -0.642437 0.586932)} Vertex 19622 5.41163 -45.149 4.12227 {normal=(-0.633172 -0.658346 0.387081)} Vertex 19623 4.79487 -45.149 0.698853 {normal=(-0.826730 -0.550519 0.006430)} Vertex 19624 4.69107 -45.149 -0.344715 {normal=(-0.759309 -0.577763 0.258293)} Vertex 19625 3.95353 -45.149 -1.50416 {normal=(-0.674982 -0.586918 0.443708)} Vertex 19626 3.85139 -45.1492 -5.7991 {normal=(-0.369078 -0.369935 -0.842282)} Vertex 19627 4.81159 -45.1492 -5.89786 {normal=(0.431529 -0.563387 -0.695903)} Vertex 19628 5.55864 -45.1491 -5.18386 {normal=(0.586130 -0.588133 -0.546613)} Vertex 19629 7.23002 -45.149 -2.08437 {normal=(0.682709 -0.657446 -0.318859)} Vertex 19630 7.73186 -45.149 -1.01162 {normal=(0.683604 -0.660022 -0.311393)} Vertex 19631 8.7993 -45.149 1.62365 {normal=(0.681751 -0.707978 -0.176963)} Vertex 19632 8.22008 -45.149 0.071506 {normal=(0.685194 -0.665899 -0.294982)} Vertex 19633 4.68069 -45.149 1.69742 {normal=(-0.833841 -0.537633 -0.123442)} Vertex 19634 5.03958 -45.149 3.22848 {normal=(-0.702676 -0.666656 0.246392)} Vertex 19635 3.03562 -45.1549 -5.09966 {normal=(-0.822302 -0.460415 -0.295700)} Vertex 19636 2.90471 -45.1549 -4.01317 {normal=(-0.809339 -0.557493 -0.047954)} Vertex 19637 3.15182 -39.3621 -4.78015 {normal=(-0.825689 -0.022497 -0.484708)} Vertex 19638 2.92171 -41.4345 -4.9726 {normal=(-0.862960 0.219745 -0.450136)} Vertex 19639 2.79785 -42.5959 -5.07098 {normal=(-0.881459 0.060449 -0.458574)} Vertex 19640 2.84178 -43.8531 -5.07747 {normal=(-0.894260 -0.054841 -0.443478)} Vertex 19641 2.93293 -44.7284 -5.10544 {normal=(-0.883878 -0.218045 -0.377413)} Vertex 19642 4.68091 -45.2711 -5.43377 {normal=(0.001081 -0.999999 0.000181)} Vertex 19643 7.25679 -41.7705 -1.88764 {normal=(0.968553 0.140823 -0.193655)} Vertex 19644 5.38144 -45.271 -2.23626 {normal=(0.000000 -1.000000 0.000000)} Vertex 19645 5.11844 -39.4794 -5.6479 {normal=(0.329201 0.010579 -0.872589)} Vertex 19646 6.12144 -39.6249 -4.73853 {normal=(0.788233 0.009299 -0.578403)} Vertex 19647 6.63554 -39.5406 -3.69066 {normal=(0.954518 0.023304 -0.191938)} Vertex 19648 6.52771 -39.3301 -2.70101 {normal=(0.899903 0.034552 0.312058)} Vertex 19649 5.54207 -39.2573 -1.62228 {normal=(0.461641 0.045739 0.793788)} Vertex 19650 4.32083 -39.2923 -1.24787 {normal=(-0.212083 0.053406 0.912780)} Vertex 19651 3.63735 -39.4126 -1.6694 {normal=(-0.707018 0.042391 0.664765)} Vertex 19652 3.11524 -39.4821 -2.63887 {normal=(-0.926124 0.016517 0.334638)} Vertex 19653 2.86128 -39.4296 -3.79031 {normal=(-0.976178 -0.011848 -0.032759)} Vertex 19654 4.00702 -39.3535 -5.58445 {normal=(-0.345639 0.000835 -0.864397)} Vertex 19655 4.58202 -40.7244 -0.288896 {normal=(-0.319529 0.577881 0.648473)} Vertex 19656 7.09505 -41.352 -0.758778 {normal=(0.648045 0.684309 0.285997)} Vertex 19657 4.86194 -41.2369 0.317897 {normal=(-0.286150 0.638051 0.615141)} Vertex 19658 5.77284 -40.5865 -0.739763 {normal=(0.307432 0.729618 0.514873)} Vertex 19659 6.00914 -41.1065 -0.122452 {normal=(0.285750 0.775279 0.490492)} Vertex 19660 6.92863 -40.9011 -1.46051 {normal=(0.705131 0.632815 0.275726)} Vertex 19661 3.9426 -33.2404 -5.01465 {normal=(-0.223845 0.854769 -0.441895)} Vertex 19662 3.67421 -42.6152 -5.86213 {normal=(-0.464523 0.055148 -0.881212)} Vertex 19663 4.83457 -42.6475 -6.0096 {normal=(0.465046 0.026541 -0.874053)} Vertex 19664 5.83419 -42.6871 -5.23712 {normal=(0.678639 0.011100 -0.719517)} Vertex 19665 7.04876 -42.7457 -3.19368 {normal=(0.952348 0.013560 -0.294334)} Vertex 19666 7.38178 -42.7904 -2.07457 {normal=(0.950227 0.104813 -0.275513)} Vertex 19667 7.77918 -42.8071 -0.699964 {normal=(0.931614 0.236083 -0.253548)} Vertex 19668 4.87615 -41.5872 -5.89383 {normal=(0.466300 0.057840 -0.876522)} Vertex 19669 7.06989 -41.3231 -2.78907 {normal=(0.976531 0.064153 -0.202864)} Vertex 19670 4.22683 -41.5211 -0.206846 {normal=(-0.775257 0.212879 0.539177)} Vertex 19671 3.8519 -44.7145 -1.49092 {normal=(-0.831903 -0.061667 0.544366)} Vertex 19672 3.72142 -43.8575 -1.46454 {normal=(-0.843168 -0.135650 0.517092)} Vertex 19673 3.55737 -42.6586 -1.43129 {normal=(-0.866044 -0.081751 0.487036)} Vertex 19674 7.32095 -44.7137 -2.14891 {normal=(0.909150 -0.035227 -0.414001)} Vertex 19675 7.3907 -43.8293 -2.13494 {normal=(0.927688 -0.002967 -0.364459)} Vertex 19676 5.27319 -42.2446 1.65198 {normal=(-0.510897 0.679767 0.303845)} Vertex 19677 5.77691 -42.4492 2.8713 {normal=(-0.324227 0.888417 0.210200)} Vertex 19678 5.50878 -42.9834 3.86441 {normal=(-0.518492 0.719382 0.428332)} Vertex 19679 4.61097 -44.7238 -0.308154 {normal=(-0.924445 -0.049412 0.332999)} Vertex 19680 4.4519 -43.8572 -0.251562 {normal=(-0.914642 -0.126358 0.359721)} Vertex 19681 4.23524 -42.7383 -0.175863 {normal=(-0.902646 -0.059853 0.410302)} Vertex 19682 4.72789 -44.7132 0.768843 {normal=(-0.986308 -0.005887 0.021921)} Vertex 19683 4.67389 -43.8347 0.819034 {normal=(-0.978834 -0.032626 0.092878)} Vertex 19684 4.64373 -42.8372 0.901089 {normal=(-0.922447 0.119466 0.244961)} Vertex 19685 4.60246 -44.6765 1.78172 {normal=(-0.981485 0.032548 -0.180728)} Vertex 19686 4.63716 -43.7818 1.7918 {normal=(-0.979249 0.081049 -0.140438)} Vertex 19687 4.80429 -42.8906 1.78777 {normal=(-0.905522 0.327549 0.012109)} Vertex 19688 5.98213 -44.6932 4.97105 {normal=(-0.612420 0.052243 0.767110)} Vertex 19689 6.04802 -43.8427 4.87298 {normal=(-0.598395 0.144213 0.766731)} Vertex 19690 7.85378 -44.7066 -1.03046 {normal=(0.915236 -0.018704 -0.401389)} Vertex 19691 7.88846 -43.8304 -0.946387 {normal=(0.928342 0.080142 -0.345951)} Vertex 19692 7.32975 -41.8428 0.08059 {normal=(0.552001 0.754235 0.323704)} Vertex 19693 8.45649 -43.005 3.89812 {normal=(0.391109 0.851177 0.324121)} Vertex 19694 8.34758 -44.7093 0.0670008 {normal=(0.929826 -0.002889 -0.365707)} Vertex 19695 8.31696 -43.8439 0.139871 {normal=(0.935628 0.138542 -0.298144)} Vertex 19696 8.08516 -42.8354 0.391438 {normal=(0.917193 0.326810 -0.206664)} Vertex 19697 7.48437 -42.1954 0.738759 {normal=(0.464521 0.781294 0.403950)} Vertex 19698 8.90051 -44.7186 1.545 {normal=(0.961458 0.049709 -0.259106)} Vertex 19699 8.81896 -43.8716 1.56225 {normal=(0.928550 0.213918 -0.261528)} Vertex 19700 8.5328 -42.9751 1.67245 {normal=(0.852219 0.444503 -0.242721)} Vertex 19701 7.88164 -42.4856 1.95585 {normal=(0.231732 0.970776 0.011479)} Vertex 19702 6.22591 -41.6222 0.630836 {normal=(0.221848 0.813757 0.472640)} Vertex 19703 5.63321 -44.7014 -5.23417 {normal=(0.713863 -0.039705 -0.682552)} Vertex 19704 5.31437 -44.6934 4.15699 {normal=(-0.838796 0.032782 0.516661)} Vertex 19705 3.78419 -44.7159 -5.85579 {normal=(-0.413533 -0.145493 -0.892700)} Vertex 19706 5.17523 -42.948 3.15576 {normal=(-0.638724 0.700539 0.279099)} Vertex 19707 3.77913 -41.4433 -5.76396 {normal=(-0.457869 0.172198 -0.870756)} Vertex 19708 2.695 -43.8415 -3.97032 {normal=(-0.989172 -0.088374 0.115793)} Vertex 19709 5.74844 -43.8255 -5.26636 {normal=(0.702447 -0.060021 -0.693868)} Vertex 19710 4.95078 -43.7958 3.25368 {normal=(-0.938022 0.019654 0.341487)} Vertex 19711 7.6726 -43.0071 4.60301 {normal=(0.179744 0.864706 0.430617)} Vertex 19712 4.93947 -44.675 3.24608 {normal=(-0.940842 0.021043 0.335263)} Vertex 19713 8.7638 -44.6963 4.47702 {normal=(0.783493 0.036058 0.607103)} Vertex 19714 6.33511 -41.9809 1.21813 {normal=(0.102184 0.824925 0.461642)} Vertex 19715 6.79724 -42.3125 2.41649 {normal=(0.040094 0.981071 0.100259)} Vertex 19716 4.82729 -44.7032 -5.96785 {normal=(0.495906 -0.016283 -0.856080)} Vertex 19717 9.08251 -44.7011 2.89609 {normal=(0.988027 0.054604 -0.122079)} Vertex 19718 6.93613 -44.6888 5.47758 {normal=(-0.186542 0.057902 0.933594)} Vertex 19719 2.80341 -44.7172 -3.98948 {normal=(-0.988828 -0.065872 0.128394)} Vertex 19720 5.34017 -43.8344 4.11179 {normal=(-0.828910 0.075459 0.527402)} Vertex 19721 8.70241 -43.8472 4.39708 {normal=(0.780996 0.150555 0.592510)} Vertex 19722 7.9096 -43.8463 5.25171 {normal=(0.404453 0.183628 0.825430)} Vertex 19723 6.24373 -43.0033 4.46244 {normal=(-0.291628 0.777338 0.523488)} Vertex 19724 6.96411 -43.8241 -3.18054 {normal=(0.926430 -0.066217 -0.367643)} Vertex 19725 4.83551 -43.826 -6.01069 {normal=(0.474327 -0.034170 -0.867054)} Vertex 19726 3.6973 -43.8357 -5.85938 {normal=(-0.449336 -0.028195 -0.892626)} Vertex 19727 2.61526 -42.5877 -3.97554 {normal=(-0.991551 0.009414 0.098528)} Vertex 19728 8.69251 -42.9905 2.7562 {normal=(0.883371 0.434430 -0.102193)} Vertex 19729 6.96791 -43.8428 5.35835 {normal=(-0.180284 0.186026 0.920706)} Vertex 19730 7.93385 -44.6911 5.38763 {normal=(0.407103 0.043975 0.843295)} Vertex 19731 6.86161 -44.708 -3.13766 {normal=(0.910003 -0.047040 -0.409707)} Vertex 19732 8.99046 -43.8463 2.87423 {normal=(0.960565 0.206049 -0.118441)} Vertex 19733 7.21589 -42.5118 3.42391 {normal=(0.097651 0.937333 0.254363)} Vertex 19734 -6.24868 -45.271 -0.157928 {normal=(0.000000 -1.000000 0.000000)} Vertex 19735 -6.82426 -26.563 -1.92598 {normal=(0.288512 0.695712 -0.643623)} Vertex 19736 -4.62386 -45.2711 -4.90933 {normal=(-0.001498 -0.999997 0.000175)} Vertex 19737 -8.28184 -45.271 3.88639 {normal=(0.000000 -1.000000 0.000000)} Vertex 19738 -7.04714 -45.271 4.10627 {normal=(0.000000 -1.000000 0.000000)} Vertex 19739 -6.15538 -45.271 3.07999 {normal=(0.000000 -1.000000 0.000000)} Vertex 19740 -7.62395 -45.271 -0.970439 {normal=(0.000000 -1.000000 0.000000)} Vertex 19741 -7.99148 -42.9272 0.632355 {normal=(-0.321781 -0.077187 0.942440)} Vertex 19742 -7.40007 -42.4 0.882753 {normal=(-0.332040 -0.169928 0.926468)} Vertex 19743 -6.30814 -42.2351 1.34406 {normal=(-0.388220 -0.201647 0.898080)} Vertex 19744 -5.31999 -42.4361 1.76442 {normal=(-0.454470 -0.126124 0.879201)} Vertex 19745 -4.87451 -42.974 1.97484 {normal=(-0.448108 -0.029535 0.892057)} Vertex 19746 -4.70234 -43.7663 2.06597 {normal=(-0.386506 -0.000985 0.921703)} Vertex 19747 -4.67601 -44.6276 2.0701 {normal=(-0.365218 -0.053344 0.928168)} Vertex 19748 -6.48976 -45.1007 1.20328 {normal=(-0.085900 -0.035253 0.866050)} Vertex 19749 -8.33502 -44.7023 0.480752 {normal=(-0.255213 -0.061735 0.948429)} Vertex 19750 -8.26156 -43.8815 0.515172 {normal=(-0.342861 -0.018805 0.938985)} Vertex 19751 -8.62136 -44.7148 1.22701 {normal=(0.373360 -0.034372 -0.925979)} Vertex 19752 -6.79877 -45.1007 2.07241 {normal=(0.085793 -0.008140 -0.865614)} Vertex 19753 -4.97089 -44.6356 2.7993 {normal=(0.260213 -0.039903 -0.951137)} Vertex 19754 -4.97555 -43.7955 2.79634 {normal=(0.377939 0.008934 -0.925486)} Vertex 19755 -5.18822 -43.0241 2.70416 {normal=(0.433112 0.053448 -0.898168)} Vertex 19756 -5.69464 -42.5621 2.47155 {normal=(0.453825 0.136426 -0.879185)} Vertex 19757 -6.62884 -42.4307 2.04932 {normal=(0.393908 0.199066 -0.895886)} Vertex 19758 -7.67211 -42.5904 1.60712 {normal=(0.329505 0.164713 -0.928003)} Vertex 19759 -8.26789 -43.0443 1.37004 {normal=(0.317047 0.068525 -0.944724)} Vertex 19760 -8.53901 -43.919 1.26389 {normal=(0.341011 0.014230 -0.939732)} Vertex 19761 -5.46694 -39.9407 -1.68072 {normal=(-0.288512 -0.754301 0.565995)} Vertex 19762 -4.32252 -39.9893 -1.311 {normal=(-0.037570 -0.784062 0.607160)} Vertex 19763 -3.73428 -40.1966 -1.73659 {normal=(0.017647 -0.825706 0.560951)} Vertex 19764 -3.27161 -40.7639 -2.52627 {normal=(-0.078883 -0.803731 0.586622)} Vertex 19765 -3.03872 -40.6546 -3.50476 {normal=(0.074171 -0.810605 -0.562476)} Vertex 19766 -3.29507 -40.0737 -4.61364 {normal=(0.108753 -0.934595 -0.298687)} Vertex 19767 -4.04913 -40.0394 -5.47073 {normal=(0.180717 -0.969235 -0.159140)} Vertex 19768 -4.99232 -40.2797 -5.55483 {normal=(0.242413 -0.940494 -0.228744)} Vertex 19769 -5.8799 -40.7883 -4.81202 {normal=(0.240422 -0.914543 -0.323171)} Vertex 19770 -6.37528 -40.8894 -4.08105 {normal=(-0.400534 -0.693870 0.597132)} Vertex 19771 -6.51538 -40.4339 -3.58695 {normal=(-0.409516 -0.760702 0.496183)} Vertex 19772 -6.42754 -40.0574 -2.70497 {normal=(-0.428959 -0.781207 0.452023)} Vertex 19773 -2.9286 -43.8161 -3.38086 {normal=(-0.348540 0.030247 0.936770)} Vertex 19774 -3.02426 -44.6361 -3.38665 {normal=(-0.345429 0.021215 0.938112)} Vertex 19775 -3.09897 -45.0316 -3.40753 {normal=(-0.344682 0.004825 0.938518)} Vertex 19776 -4.49081 -45.1421 -3.98944 {normal=(-0.394600 -0.018299 0.917448)} Vertex 19777 -5.83742 -45.0593 -4.57031 {normal=(-0.460971 -0.019579 0.886659)} Vertex 19778 -5.88915 -44.668 -4.59453 {normal=(-0.493835 -0.027506 0.868875)} Vertex 19779 -6.0119 -43.7976 -4.60987 {normal=(-0.506054 -0.073847 0.858860)} Vertex 19780 -6.16567 -42.7045 -4.57104 {normal=(-0.513992 -0.110232 0.850627)} Vertex 19781 -5.7705 -41.7575 -5.01904 {normal=(-0.295342 0.872804 0.384701)} Vertex 19782 -4.88365 -41.1658 -5.67917 {normal=(-0.259185 0.926270 0.257174)} Vertex 19783 -3.92555 -40.9467 -5.55614 {normal=(-0.167088 0.969215 0.171984)} Vertex 19784 -3.17137 -40.989 -4.79366 {normal=(-0.104816 0.977461 0.182067)} Vertex 19785 -2.8847 -41.4857 -3.85574 {normal=(-0.123027 0.565795 0.787521)} Vertex 19786 -2.83274 -42.589 -3.38501 {normal=(-0.272743 0.218063 0.915708)} Vertex 19787 -3.31398 -41.6583 -2.18049 {normal=(0.257008 0.459237 -0.815917)} Vertex 19788 -3.55738 -41.1694 -1.77508 {normal=(0.106937 0.752613 -0.632924)} Vertex 19789 -3.97699 -40.7631 -1.15329 {normal=(0.018825 0.822682 -0.567312)} Vertex 19790 -4.46542 -40.5012 -0.740791 {normal=(0.104311 0.759420 -0.631935)} Vertex 19791 -5.56605 -40.4409 -1.11829 {normal=(0.300171 0.734280 -0.594389)} Vertex 19792 -6.67096 -40.5876 -2.18432 {normal=(0.412092 0.767606 -0.489793)} Vertex 19793 -6.82445 -41.0467 -3.17561 {normal=(0.397290 0.756569 -0.515779)} Vertex 19794 -6.72841 -41.7629 -3.61636 {normal=(0.488046 0.167144 -0.856008)} Vertex 19795 -6.70511 -42.7047 -3.74044 {normal=(0.506779 0.093339 -0.855940)} Vertex 19796 -6.56062 -43.7999 -3.7196 {normal=(0.509480 0.035623 -0.859576)} Vertex 19797 -6.43748 -44.6702 -3.66952 {normal=(0.536912 -0.059151 -0.836667)} Vertex 19798 -6.38787 -45.0592 -3.60243 {normal=(0.548483 -0.125980 -0.825580)} Vertex 19799 -4.97237 -45.142 -2.92257 {normal=(0.410914 -0.088926 -0.896887)} Vertex 19800 -3.48781 -45.0315 -2.31039 {normal=(0.282185 -0.074692 -0.955530)} Vertex 19801 -3.39136 -44.6357 -2.31536 {normal=(0.313022 -0.050928 -0.946380)} Vertex 19802 -3.32493 -43.8267 -2.30885 {normal=(0.359237 -0.022562 -0.932948)} Vertex 19803 -3.2409 -42.6147 -2.31274 {normal=(0.344992 0.111336 -0.921201)} Vertex 19804 -2.68518 -33.6241 -5.37143 {normal=(0.539035 0.630947 -0.551686)} Vertex 19805 -3.30035 -33.6322 -5.89027 {normal=(0.384836 0.631054 -0.664278)} Vertex 19806 -4.04305 -33.6297 -6.1549 {normal=(0.182640 0.564503 -0.792606)} Vertex 19807 -4.91473 -33.5539 -6.20574 {normal=(-0.021107 0.461461 -0.880496)} Vertex 19808 -2.17644 -33.5555 -4.7239 {normal=(0.675532 0.597476 -0.416830)} Vertex 19809 -2.0396 -33.3496 -4.03305 {normal=(0.797641 0.519207 -0.293955)} Vertex 19810 -2.07524 -32.7886 -3.27677 {normal=(0.887193 0.373122 -0.255232)} Vertex 19811 -2.22273 -31.6019 -2.53055 {normal=(0.939815 0.279405 -0.183952)} Vertex 19812 -2.56175 -30.0826 -1.86417 {normal=(0.954851 0.284657 -0.067678)} Vertex 19813 -3.02594 -28.5645 -1.41095 {normal=(0.935421 0.346687 0.021666)} Vertex 19814 -5.81888 -33.3419 -5.99467 {normal=(-0.176797 0.349623 -0.915674)} Vertex 19815 -6.76795 -32.8723 -5.61825 {normal=(-0.321178 0.249477 -0.909202)} Vertex 19816 -7.48529 -32.0198 -5.11305 {normal=(-0.464359 0.188616 -0.862027)} Vertex 19817 -8.00031 -30.7878 -4.54205 {normal=(-0.564326 0.160694 -0.808696)} Vertex 19818 -8.37506 -29.0112 -3.91242 {normal=(-0.632788 0.221317 -0.736095)} Vertex 19819 -3.55259 -27.3259 -1.04536 {normal=(0.820897 0.525476 0.134763)} Vertex 19820 -8.48692 -27.4074 -3.24159 {normal=(-0.666487 0.466819 -0.531795)} Vertex 19821 -8.23759 -26.6636 -2.55248 {normal=(-0.577489 0.757546 -0.178703)} Vertex 19822 -7.59916 -26.3468 -1.80891 {normal=(-0.385025 0.899648 0.133788)} Vertex 19823 -6.42557 -26.2366 -1.0177 {normal=(-0.150971 0.928737 0.306878)} Vertex 19824 -5.15873 -26.3443 -0.54025 {normal=(0.164383 0.897367 0.363148)} Vertex 19825 -4.23528 -26.6543 -0.66606 {normal=(0.537420 0.760663 0.283647)} Vertex 19826 -4.41216 -32.7434 -4.49116 {normal=(0.304888 0.683286 -0.650188)} Vertex 19827 -3.57454 -33.4479 -5.42889 {normal=(0.162038 0.940003 -0.299288)} Vertex 19828 -5.25035 -30.3998 -3.27543 {normal=(0.355650 0.428528 -0.829003)} Vertex 19829 -5.99405 -27.3247 -2.21499 {normal=(0.344280 0.498305 -0.786771)} Vertex 19830 -3.56159 -27.6098 -0.955589 {normal=(0.471828 -0.049605 0.879827)} Vertex 19831 -2.1396 -33.8444 -4.70672 {normal=(0.885635 -0.227167 -0.321936)} Vertex 19832 -2.57204 -30.3561 -1.79634 {normal=(0.547143 -0.135862 0.815184)} Vertex 19833 -2.06454 -33.0701 -3.21957 {normal=(0.869736 -0.226597 0.401620)} Vertex 19834 -3.24538 -33.9088 -5.88884 {normal=(0.485897 -0.247237 -0.825494)} Vertex 19835 -4.87539 -33.8425 -6.18524 {normal=(-0.158468 -0.341162 -0.907914)} Vertex 19836 -6.74147 -33.1608 -5.56119 {normal=(-0.680136 -0.423807 -0.530579)} Vertex 19837 -7.98413 -31.0572 -4.45754 {normal=(-0.930845 -0.310255 0.090549)} Vertex 19838 -5.18257 -26.5849 -0.40495 {normal=(-0.070121 0.090302 0.963192)} Vertex 19839 -7.63806 -26.5855 -1.67594 {normal=(-0.685422 0.043174 0.709790)} Vertex 19840 -8.48691 -27.6858 -3.14418 {normal=(-0.907115 -0.158904 0.384859)} Vertex 19841 -2.63441 -33.9058 -5.36742 {normal=(0.707483 -0.227468 -0.651993)} Vertex 19842 -2.01221 -33.637 -3.9907 {normal=(0.949702 -0.232358 0.083297)} Vertex 19843 -2.22618 -31.8757 -2.46538 {normal=(0.712135 -0.191834 0.650814)} Vertex 19844 -3.03616 -28.8527 -1.34009 {normal=(0.477164 -0.089524 0.872075)} Vertex 19845 -4.24397 -26.9142 -0.546235 {normal=(0.314807 0.015749 0.933824)} Vertex 19846 -6.46533 -26.4683 -0.880386 {normal=(-0.443424 0.106580 0.873968)} Vertex 19847 -8.26332 -26.9157 -2.43279 {normal=(-0.842912 -0.063419 0.518280)} Vertex 19848 -8.35942 -29.2973 -3.82829 {normal=(-0.926516 -0.232544 0.277496)} Vertex 19849 -7.46792 -32.2933 -5.0358 {normal=(-0.868590 -0.392069 -0.188638)} Vertex 19850 -5.78843 -33.6345 -5.95858 {normal=(-0.427974 -0.392228 -0.791173)} Vertex 19851 -3.99432 -33.9113 -6.15042 {normal=(0.176257 -0.288004 -0.918850)} Vertex 19852 -5.31797 -26.4005 -0.940332 {normal=(0.261247 0.790460 -0.530428)} Vertex 19853 -4.82732 -31.7549 -3.89113 {normal=(0.340180 0.531926 -0.772461)} Vertex 19854 -5.67307 -28.7508 -2.72868 {normal=(0.364393 0.389477 -0.845848)} Vertex 19855 -3.41111 -33.5294 -5.71065 {normal=(0.096607 0.972172 -0.177426)} Vertex 19856 -2.68989 -34.5522 -5.25403 {normal=(0.717445 -0.175681 -0.624705)} Vertex 19857 -2.14892 -34.4217 -3.98174 {normal=(0.953082 -0.175423 0.016567)} Vertex 19858 -2.51505 -33.5658 -2.52656 {normal=(0.817289 -0.158961 0.520881)} Vertex 19859 -3.30989 -32.065 -1.41665 {normal=(0.565247 -0.092007 0.805264)} Vertex 19860 -4.33882 -31.0707 -0.776742 {normal=(0.245588 -0.052172 0.935644)} Vertex 19861 -6.10931 -30.8388 -1.12169 {normal=(-0.435987 -0.035846 0.848807)} Vertex 19862 -7.52929 -31.074 -2.47921 {normal=(-0.854220 -0.124295 0.459003)} Vertex 19863 -7.6704 -32.2833 -3.76498 {normal=(-0.944626 -0.216485 0.088693)} Vertex 19864 -6.97538 -33.7629 -4.93058 {normal=(-0.809336 -0.275872 -0.433471)} Vertex 19865 -5.54319 -34.4198 -5.85324 {normal=(-0.359952 -0.226140 -0.871932)} Vertex 19866 -3.97905 -34.5572 -6.00209 {normal=(0.224311 -0.187220 -0.925188)} Vertex 19867 -2.94082 -36.3993 -5.03016 {normal=(0.748403 -0.129219 -0.571122)} Vertex 19868 -2.54572 -36.3938 -3.93459 {normal=(0.945467 -0.132146 -0.033749)} Vertex 19869 -2.9431 -36.4138 -2.59913 {normal=(0.873893 -0.102346 0.431403)} Vertex 19870 -3.61208 -36.4196 -1.58898 {normal=(0.639858 -0.070413 0.737039)} Vertex 19871 -4.3879 -36.4159 -1.15799 {normal=(0.186191 -0.068875 0.930075)} Vertex 19872 -5.65253 -36.4152 -1.52726 {normal=(-0.444708 -0.089340 0.807239)} Vertex 19873 -6.66766 -36.4186 -2.65423 {normal=(-0.876853 -0.112666 0.381304)} Vertex 19874 -6.83383 -36.4224 -3.75038 {normal=(-0.957387 -0.134799 -0.089307)} Vertex 19875 -6.37237 -36.422 -4.81125 {normal=(-0.778150 -0.131845 -0.544363)} Vertex 19876 -5.28121 -36.4186 -5.70695 {normal=(-0.319972 -0.106102 -0.883307)} Vertex 19877 -4.01132 -36.4172 -5.75082 {normal=(0.272219 -0.106173 -0.905133)} Vertex 19878 -3.15701 -38.232 -4.87406 {normal=(0.790980 -0.054840 -0.542121)} Vertex 19879 -2.85606 -38.2235 -3.88699 {normal=(0.960481 -0.054270 -0.053582)} Vertex 19880 -3.11552 -38.2466 -2.65002 {normal=(0.905718 -0.030431 0.378123)} Vertex 19881 -3.65894 -38.2553 -1.70437 {normal=(0.671579 -0.010720 0.703933)} Vertex 19882 -4.36787 -38.2521 -1.29194 {normal=(0.185096 -0.007039 0.925011)} Vertex 19883 -5.54778 -38.2515 -1.64819 {normal=(-0.464476 -0.015974 0.799156)} Vertex 19884 -6.49372 -38.2547 -2.72469 {normal=(-0.893499 -0.024353 0.342460)} Vertex 19885 -6.60581 -38.2581 -3.75858 {normal=(-0.962131 -0.035974 -0.144801)} Vertex 19886 -6.15837 -38.2578 -4.75412 {normal=(-0.787575 -0.039769 -0.563645)} Vertex 19887 -5.17891 -38.2546 -5.5989 {normal=(-0.313553 -0.029675 -0.880213)} Vertex 19888 -4.02962 -38.2532 -5.58028 {normal=(0.327968 -0.033661 -0.883447)} Vertex 19889 -6.78402 -45.149 -3.04605 {normal=(-0.682478 -0.659204 -0.315702)} Vertex 19890 -7.86381 -45.1491 5.28768 {normal=(-0.302674 -0.668519 0.628329)} Vertex 19891 -3.40676 -44.9142 -2.90124 {normal=(0.710195 -0.657447 0.251767)} Vertex 19892 -8.98201 -45.149 2.93311 {normal=(-0.708961 -0.685581 0.027841)} Vertex 19893 -8.67307 -45.149 4.42455 {normal=(-0.628010 -0.662238 0.360552)} Vertex 19894 -6.91995 -45.1491 5.37079 {normal=(0.156534 -0.658661 0.701234)} Vertex 19895 -6.0443 -45.149 4.8931 {normal=(0.474258 -0.642436 0.586932)} Vertex 19896 -5.41163 -45.149 4.12227 {normal=(0.633172 -0.658346 0.387082)} Vertex 19897 -4.79486 -45.149 0.698853 {normal=(0.826730 -0.550519 0.006430)} Vertex 19898 -4.69107 -45.149 -0.344716 {normal=(0.759309 -0.577763 0.258293)} Vertex 19899 -3.95353 -45.149 -1.50416 {normal=(0.674983 -0.586918 0.443708)} Vertex 19900 -3.85139 -45.1492 -5.7991 {normal=(0.369078 -0.369935 -0.842282)} Vertex 19901 -4.81159 -45.1491 -5.89787 {normal=(-0.431529 -0.563387 -0.695903)} Vertex 19902 -5.55864 -45.1491 -5.18386 {normal=(-0.586130 -0.588132 -0.546613)} Vertex 19903 -6.00063 -44.9695 -4.02471 {normal=(-0.461457 -0.847473 -0.262387)} Vertex 19904 -7.23002 -45.149 -2.08437 {normal=(-0.682709 -0.657446 -0.318860)} Vertex 19905 -7.73186 -45.149 -1.01162 {normal=(-0.683604 -0.660022 -0.311393)} Vertex 19906 -8.7993 -45.149 1.62366 {normal=(-0.681751 -0.707978 -0.176963)} Vertex 19907 -8.22008 -45.149 0.071506 {normal=(-0.685194 -0.665899 -0.294982)} Vertex 19908 -8.37172 -44.9334 0.893888 {normal=(0.068904 0.997294 0.025632)} Vertex 19909 -4.6807 -45.149 1.69742 {normal=(0.833841 -0.537633 -0.123442)} Vertex 19910 -5.03958 -45.149 3.22848 {normal=(0.702677 -0.666655 0.246392)} Vertex 19911 -4.92254 -44.9346 2.38997 {normal=(-0.090617 0.995291 -0.034413)} Vertex 19912 -3.03562 -45.1549 -5.09966 {normal=(0.822302 -0.460415 -0.295700)} Vertex 19913 -2.90471 -45.1549 -4.01317 {normal=(0.809339 -0.557493 -0.047954)} Vertex 19914 -3.97327 -40.5444 -1.54716 {normal=(0.739762 0.293401 0.550090)} Vertex 19915 -3.15182 -39.3621 -4.78015 {normal=(0.825689 -0.022497 -0.484708)} Vertex 19916 -3.37956 -40.5605 -4.63128 {normal=(0.804038 0.192344 -0.541733)} Vertex 19917 -2.92171 -41.4345 -4.9726 {normal=(0.862960 0.219745 -0.450136)} Vertex 19918 -2.79785 -42.5959 -5.07098 {normal=(0.881459 0.060449 -0.458573)} Vertex 19919 -2.84178 -43.8531 -5.07747 {normal=(0.894260 -0.054841 -0.443478)} Vertex 19920 -2.93293 -44.7284 -5.10544 {normal=(0.883878 -0.218045 -0.377413)} Vertex 19921 -4.74729 -45.0131 -3.45547 {normal=(-0.015715 -0.999852 -0.006950)} Vertex 19922 -3.43731 -45.2738 -4.8834 {normal=(-0.005448 -0.999982 0.000568)} Vertex 19923 -7.25678 -41.7705 -1.88764 {normal=(-0.968553 0.140823 -0.193655)} Vertex 19924 -5.38144 -45.271 -2.23626 {normal=(0.000000 -1.000000 0.000000)} Vertex 19925 -4.97552 -44.6089 2.37817 {normal=(0.929110 0.023694 0.368895)} Vertex 19926 -4.98494 -43.8123 2.37398 {normal=(0.934182 0.007476 0.356564)} Vertex 19927 -5.1444 -43.0911 2.28131 {normal=(0.664795 0.645942 0.364455)} Vertex 19928 -5.55511 -42.6359 2.06805 {normal=(0.378632 0.822523 0.341196)} Vertex 19929 -6.44925 -42.4854 1.66543 {normal=(-0.033866 0.949112 0.237955)} Vertex 19930 -7.45418 -42.6244 1.24623 {normal=(-0.256998 0.953338 0.154355)} Vertex 19931 -7.99543 -43.0585 1.03992 {normal=(-0.870756 0.403630 -0.265337)} Vertex 19932 -8.24854 -43.9254 0.946177 {normal=(-0.916946 0.204955 -0.320369)} Vertex 19933 -8.32699 -44.6918 0.913539 {normal=(-0.933320 0.059488 -0.352841)} Vertex 19934 -5.11844 -39.4794 -5.6479 {normal=(-0.329201 0.010579 -0.872589)} Vertex 19935 -6.12144 -39.6249 -4.73853 {normal=(-0.788233 0.009299 -0.578403)} Vertex 19936 -6.63554 -39.5406 -3.69066 {normal=(-0.954518 0.023304 -0.191938)} Vertex 19937 -6.52771 -39.3301 -2.70101 {normal=(-0.899903 0.034552 0.312058)} Vertex 19938 -5.54207 -39.2573 -1.62228 {normal=(-0.461641 0.045739 0.793788)} Vertex 19939 -4.32083 -39.2923 -1.24787 {normal=(0.212083 0.053406 0.912781)} Vertex 19940 -3.63735 -39.4127 -1.6694 {normal=(0.707018 0.042391 0.664765)} Vertex 19941 -3.11524 -39.4821 -2.63887 {normal=(0.926124 0.016517 0.334638)} Vertex 19942 -2.86128 -39.4296 -3.79031 {normal=(0.976177 -0.011848 -0.032759)} Vertex 19943 -4.00702 -39.3535 -5.58445 {normal=(0.345639 0.000835 -0.864397)} Vertex 19944 -4.05115 -40.5168 -5.39563 {normal=(0.392326 0.155516 -0.828517)} Vertex 19945 -3.55261 -41.0065 -2.22833 {normal=(0.910497 0.108658 0.389977)} Vertex 19946 -4.58202 -40.7244 -0.288896 {normal=(0.319529 0.577881 0.648473)} Vertex 19947 -7.09505 -41.352 -0.758778 {normal=(-0.648045 0.684308 0.285997)} Vertex 19948 -4.4418 -40.3399 -1.13315 {normal=(0.284448 0.600455 0.657058)} Vertex 19949 -4.86194 -41.2369 0.317897 {normal=(0.286150 0.638051 0.615141)} Vertex 19950 -5.77284 -40.5865 -0.739763 {normal=(-0.307432 0.729618 0.514873)} Vertex 19951 -6.51912 -40.7891 -3.34555 {normal=(-0.899574 0.253690 -0.294226)} Vertex 19952 -6.00914 -41.1065 -0.122452 {normal=(-0.285750 0.775279 0.490492)} Vertex 19953 -5.44617 -40.3063 -1.48391 {normal=(-0.316041 0.711949 0.537507)} Vertex 19954 -4.87144 -40.7363 -5.47499 {normal=(-0.273124 0.095705 -0.888855)} Vertex 19955 -6.41419 -40.4125 -2.47235 {normal=(-0.759508 0.527071 0.133876)} Vertex 19956 -6.92863 -40.9011 -1.46051 {normal=(-0.705130 0.632815 0.275726)} Vertex 19957 -3.9426 -33.2404 -5.01465 {normal=(0.223845 0.854769 -0.441895)} Vertex 19958 -3.67421 -42.6152 -5.86213 {normal=(0.464523 0.055148 -0.881212)} Vertex 19959 -4.83457 -42.6475 -6.0096 {normal=(-0.465046 0.026541 -0.874053)} Vertex 19960 -5.8342 -42.6871 -5.23712 {normal=(-0.678639 0.011100 -0.719517)} Vertex 19961 -6.29285 -42.7019 -4.0687 {normal=(-0.839260 -0.036243 -0.537322)} Vertex 19962 -7.04876 -42.7457 -3.19368 {normal=(-0.952348 0.013560 -0.294334)} Vertex 19963 -7.38178 -42.7905 -2.07457 {normal=(-0.950226 0.104813 -0.275513)} Vertex 19964 -7.77918 -42.8071 -0.699964 {normal=(-0.931614 0.236084 -0.253548)} Vertex 19965 -4.87615 -41.5872 -5.89383 {normal=(-0.466300 0.057840 -0.876522)} Vertex 19966 -5.69666 -41.2817 -4.81174 {normal=(-0.721818 0.057454 -0.669177)} Vertex 19967 -6.34426 -41.7105 -3.92052 {normal=(-0.847678 0.065338 -0.524013)} Vertex 19968 -7.0699 -41.3231 -2.78907 {normal=(-0.976531 0.064153 -0.202864)} Vertex 19969 -3.11465 -41.0915 -3.66923 {normal=(0.970354 0.102361 0.205250)} Vertex 19970 -3.29383 -41.6059 -2.73764 {normal=(0.943350 0.071536 0.319909)} Vertex 19971 -4.22683 -41.5211 -0.206846 {normal=(0.775257 0.212879 0.539177)} Vertex 19972 -3.8519 -44.7145 -1.49092 {normal=(0.831903 -0.061667 0.544366)} Vertex 19973 -3.72142 -43.8575 -1.46454 {normal=(0.843168 -0.135650 0.517092)} Vertex 19974 -3.55737 -42.6586 -1.43129 {normal=(0.866044 -0.081751 0.487036)} Vertex 19975 -7.32095 -44.7137 -2.14891 {normal=(-0.909150 -0.035227 -0.414002)} Vertex 19976 -7.3907 -43.8293 -2.13495 {normal=(-0.927688 -0.002967 -0.364459)} Vertex 19977 -5.27319 -42.2446 1.65198 {normal=(0.510897 0.679767 0.303845)} Vertex 19978 -5.77691 -42.4492 2.8713 {normal=(0.324227 0.888417 0.210200)} Vertex 19979 -5.50878 -42.9834 3.86441 {normal=(0.518492 0.719382 0.428332)} Vertex 19980 -4.61097 -44.7237 -0.308154 {normal=(0.924445 -0.049412 0.332999)} Vertex 19981 -4.4519 -43.8572 -0.251562 {normal=(0.914642 -0.126358 0.359721)} Vertex 19982 -4.23524 -42.7383 -0.175864 {normal=(0.902646 -0.059853 0.410302)} Vertex 19983 -4.72789 -44.7132 0.768843 {normal=(0.986308 -0.005887 0.021921)} Vertex 19984 -4.67389 -43.8347 0.819034 {normal=(0.978834 -0.032626 0.092878)} Vertex 19985 -4.64373 -42.8372 0.901089 {normal=(0.922447 0.119466 0.244961)} Vertex 19986 -4.60246 -44.6765 1.78172 {normal=(0.981485 0.032548 -0.180728)} Vertex 19987 -4.63716 -43.7819 1.7918 {normal=(0.979249 0.081049 -0.140438)} Vertex 19988 -4.80429 -42.8906 1.78777 {normal=(0.905522 0.327549 0.012109)} Vertex 19989 -5.98213 -44.6932 4.97105 {normal=(0.612420 0.052243 0.767110)} Vertex 19990 -6.04802 -43.8427 4.87298 {normal=(0.598395 0.144213 0.766731)} Vertex 19991 -7.85378 -44.7066 -1.03046 {normal=(-0.915236 -0.018704 -0.401389)} Vertex 19992 -7.88846 -43.8304 -0.946387 {normal=(-0.928342 0.080142 -0.345951)} Vertex 19993 -7.32975 -41.8428 0.08059 {normal=(-0.552001 0.754235 0.323704)} Vertex 19994 -8.45649 -43.005 3.89812 {normal=(-0.391109 0.851177 0.324121)} Vertex 19995 -8.34758 -44.7093 0.0670007 {normal=(-0.929826 -0.002889 -0.365707)} Vertex 19996 -8.31696 -43.8439 0.139871 {normal=(-0.935628 0.138542 -0.298144)} Vertex 19997 -8.08515 -42.8354 0.391438 {normal=(-0.917193 0.326810 -0.206664)} Vertex 19998 -7.48437 -42.1954 0.738759 {normal=(-0.464521 0.781295 0.403950)} Vertex 19999 -8.90051 -44.7185 1.54501 {normal=(-0.961458 0.049709 -0.259106)} Vertex 20000 -8.81896 -43.8716 1.56225 {normal=(-0.928550 0.213918 -0.261528)} Vertex 20001 -8.5328 -42.9751 1.67245 {normal=(-0.852220 0.444503 -0.242721)} Vertex 20002 -7.88163 -42.4856 1.95585 {normal=(-0.231732 0.970776 0.011479)} Vertex 20003 -6.22591 -41.6222 0.630836 {normal=(-0.221848 0.813757 0.472640)} Vertex 20004 -5.63321 -44.7014 -5.23418 {normal=(-0.713863 -0.039705 -0.682552)} Vertex 20005 -5.31437 -44.6934 4.15699 {normal=(0.838796 0.032782 0.516661)} Vertex 20006 -3.78419 -44.7159 -5.85579 {normal=(0.413533 -0.145493 -0.892700)} Vertex 20007 -5.17523 -42.948 3.15576 {normal=(0.638724 0.700539 0.279099)} Vertex 20008 -3.19415 -42.6023 -2.90703 {normal=(0.940242 -0.012275 0.331981)} Vertex 20009 -3.28287 -43.8067 -2.90536 {normal=(0.937858 -0.036270 0.342267)} Vertex 20010 -3.77913 -41.4433 -5.76396 {normal=(0.457869 0.172198 -0.870756)} Vertex 20011 -2.695 -43.8415 -3.97032 {normal=(0.989172 -0.088374 0.115793)} Vertex 20012 -5.74844 -43.8255 -5.26636 {normal=(-0.702446 -0.060021 -0.693868)} Vertex 20013 -4.95078 -43.7958 3.25368 {normal=(0.938022 0.019654 0.341487)} Vertex 20014 -7.6726 -43.0071 4.603 {normal=(-0.179744 0.864706 0.430617)} Vertex 20015 -4.93947 -44.675 3.24608 {normal=(0.940843 0.021043 0.335263)} Vertex 20016 -8.7638 -44.6963 4.47702 {normal=(-0.783493 0.036058 0.607103)} Vertex 20017 -6.02085 -44.637 -4.05019 {normal=(-0.855609 -0.048399 -0.512197)} Vertex 20018 -6.33511 -41.9809 1.21813 {normal=(-0.102184 0.824926 0.461642)} Vertex 20019 -6.79724 -42.3125 2.4165 {normal=(-0.040094 0.981071 0.100259)} Vertex 20020 -4.82729 -44.7032 -5.96785 {normal=(-0.495906 -0.016283 -0.856080)} Vertex 20021 -9.08251 -44.7011 2.89609 {normal=(-0.988027 0.054604 -0.122079)} Vertex 20022 -6.93614 -44.6888 5.47758 {normal=(0.186541 0.057902 0.933594)} Vertex 20023 -2.80341 -44.7172 -3.98948 {normal=(0.988828 -0.065872 0.128394)} Vertex 20024 -5.34018 -43.8344 4.11179 {normal=(0.828910 0.075459 0.527402)} Vertex 20025 -8.7024 -43.8472 4.39708 {normal=(-0.780996 0.150555 0.592510)} Vertex 20026 -6.64544 -44.9304 1.63992 {normal=(0.000000 -1.000000 0.000000)} Vertex 20027 -7.9096 -43.8462 5.2517 {normal=(-0.404453 0.183628 0.825430)} Vertex 20028 -6.24373 -43.0033 4.46244 {normal=(0.291628 0.777339 0.523488)} Vertex 20029 -6.9641 -43.8241 -3.18054 {normal=(-0.926430 -0.066217 -0.367643)} Vertex 20030 -4.83551 -43.826 -6.01069 {normal=(-0.474327 -0.034170 -0.867053)} Vertex 20031 -3.6973 -43.8357 -5.85938 {normal=(0.449335 -0.028195 -0.892626)} Vertex 20032 -2.61526 -42.5877 -3.97554 {normal=(0.991551 0.009414 0.098528)} Vertex 20033 -8.69251 -42.9905 2.7562 {normal=(-0.883371 0.434430 -0.102193)} Vertex 20034 -6.96791 -43.8427 5.35835 {normal=(0.180284 0.186026 0.920706)} Vertex 20035 -6.14375 -43.7798 -4.07916 {normal=(-0.845405 -0.107574 -0.523055)} Vertex 20036 -3.34251 -44.5666 -2.9017 {normal=(0.934591 0.103584 0.326110)} Vertex 20037 -7.93385 -44.6911 5.38763 {normal=(-0.407103 0.043975 0.843295)} Vertex 20038 -6.86161 -44.708 -3.13766 {normal=(-0.910003 -0.047040 -0.409707)} Vertex 20039 -8.99045 -43.8463 2.87423 {normal=(-0.960565 0.206049 -0.118441)} Vertex 20040 -7.21589 -42.5118 3.42391 {normal=(-0.097651 0.937333 0.254363)} Vertex 20041 1.21284 11.6755 1.8891 {normal=(-0.000002 0.832649 -0.553801)} Vertex 20042 2.4258 12.0384 1.46912 {normal=(-1.000000 0.000078 -0.000214)} Vertex 20043 2.42605 12.7389 0.561964 {normal=(-1.000000 0.000031 -0.000192)} Vertex 20044 2.42626 13.4003 -0.815517 {normal=(-1.000000 0.000003 -0.000036)} Vertex 20045 2.42604 13.6933 -2.6414 {normal=(-1.000000 0.000007 0.000211)} Vertex 20046 1.21286 13.6625 -3.57697 {normal=(0.000003 0.419246 0.907873)} Vertex 20047 1.21303 12.9869 -2.53396 {normal=(0.000002 0.945768 0.324842)} Vertex 20048 1.21314 12.4035 -0.839693 {normal=(0.000002 0.944987 0.327106)} Vertex 20049 1.21303 11.9597 0.437858 {normal=(0.000002 0.944132 0.329567)} Vertex 20050 1.2129 11.6651 1.27882 {normal=(0.000002 0.943668 0.330895)} Vertex 20051 -1.21284 11.6755 1.8891 {normal=(0.000002 0.832649 -0.553801)} Vertex 20052 -2.4258 12.0384 1.46912 {normal=(1.000000 0.000078 -0.000214)} Vertex 20053 -2.42605 12.7389 0.561964 {normal=(1.000000 0.000031 -0.000192)} Vertex 20054 -2.42626 13.4003 -0.815516 {normal=(1.000000 0.000003 -0.000036)} Vertex 20055 -2.42604 13.6933 -2.6414 {normal=(1.000000 0.000007 0.000211)} Vertex 20056 -1.21286 13.6625 -3.57697 {normal=(-0.000003 0.419246 0.907873)} Vertex 20057 -1.21303 12.9869 -2.53396 {normal=(-0.000002 0.945768 0.324842)} Vertex 20058 -1.21314 12.4035 -0.839693 {normal=(-0.000002 0.944987 0.327106)} Vertex 20059 -1.21303 11.9597 0.437858 {normal=(-0.000002 0.944132 0.329567)} Vertex 20060 -1.2129 11.6651 1.27882 {normal=(-0.000002 0.943667 0.330896)} Vertex 20061 1.59409 13.2754 -4.19798 {normal=(-0.006656 0.484451 -0.874527)} Vertex 20062 -2.20052 13.5619 -4.04235 {normal=(0.004970 0.547967 -0.829967)} Vertex 20063 1.46976 10.9489 2.53067 {normal=(0.000000 0.448809 0.893143)} Vertex 20064 1.70252 10.0494 3.09815 {normal=(0.000000 0.984872 0.173281)} Vertex 20065 3.65264 13.5181 0.686085 {normal=(0.000000 0.756582 0.638150)} Vertex 20066 3.81178 14.3971 -0.791325 {normal=(0.000000 0.891699 0.441863)} Vertex 20067 3.62927 14.3997 -2.74882 {normal=(0.000000 0.862155 -0.472779)} Vertex 20068 1.34066 8.92229 3.92266 {normal=(0.000000 0.524018 0.851707)} Vertex 20069 3.46246 12.4117 1.65944 {normal=(0.000000 0.591627 0.800804)} Vertex 20070 -1.46976 10.9489 2.53067 {normal=(0.000000 0.448809 0.893143)} Vertex 20071 -1.70252 10.0494 3.09815 {normal=(0.000000 0.984872 0.173281)} Vertex 20072 -3.65264 13.5181 0.686085 {normal=(0.000000 0.756582 0.638150)} Vertex 20073 -3.81178 14.3971 -0.791325 {normal=(0.000000 0.891699 0.441863)} Vertex 20074 -3.62927 14.3997 -2.74882 {normal=(0.001300 0.859150 -0.475695)} Vertex 20075 -1.34066 8.92229 3.92266 {normal=(0.000000 0.524018 0.851707)} Vertex 20076 -3.46246 12.4117 1.65944 {normal=(0.000000 0.591627 0.800804)} Vertex 20077 5.9185 -3.66998 0.346318 {normal=(0.006077 -0.999926 -0.000032)} Vertex 20078 5.2506 -3.67001 1.98627 {normal=(0.001868 -0.999986 0.001938)} Vertex 20079 0.803125 -2.25192 -4.53326 {normal=(-0.000001 1.000000 0.000011)} Vertex 20080 2.30072 -2.25192 -4.3243 {normal=(0.000001 1.000000 0.000005)} Vertex 20081 3.63305 -2.25192 -3.90172 {normal=(0.000005 1.000000 0.000004)} Vertex 20082 5.0176 -2.25194 -2.98963 {normal=(0.000005 1.000000 0.000006)} Vertex 20083 5.96487 -2.25196 -1.51726 {normal=(0.000002 1.000000 0.000010)} Vertex 20084 5.9363 -2.25198 0.273436 {normal=(0.000001 1.000000 0.000016)} Vertex 20085 5.21132 -2.25201 2.05019 {normal=(0.000002 1.000000 0.000019)} Vertex 20086 3.89125 -2.25203 3.30406 {normal=(0.000002 1.000000 0.000017)} Vertex 20087 2.33037 -2.25204 4.02733 {normal=(0.000003 1.000000 0.000016)} Vertex 20088 0.796857 -2.25204 4.23435 {normal=(0.000003 1.000000 0.000015)} Vertex 20089 0.796857 -3.67004 4.23433 {normal=(0.000145 -0.999999 0.001006)} Vertex 20090 2.29016 -3.67073 4.02378 {normal=(0.001722 -0.999995 0.002327)} Vertex 20091 3.89122 -3.67003 3.30405 {normal=(0.003164 -0.999984 0.002578)} Vertex 20092 5.94669 -3.66996 -1.59088 {normal=(0.004962 -0.999951 -0.000022)} Vertex 20093 5.07433 -3.66994 -2.94055 {normal=(0.005181 -0.999799 -0.008578)} Vertex 20094 3.56272 -3.66992 -3.92949 {normal=(0.005580 -0.999767 -0.009242)} Vertex 20095 2.30072 -3.66992 -4.32433 {normal=(0.000004 -1.000000 -0.000017)} Vertex 20096 0.803125 -3.66992 -4.53328 {normal=(0.000003 -1.000000 -0.000015)} Vertex 20097 5.95476 0.584045 -1.52638 {normal=(-0.000002 1.000000 0.000012)} Vertex 20098 5.94275 0.58402 0.282398 {normal=(-0.000002 1.000000 0.000015)} Vertex 20099 5.2129 0.583988 2.04371 {normal=(-0.000002 1.000000 0.000017)} Vertex 20100 3.90671 0.583966 3.29546 {normal=(-0.000001 1.000000 0.000014)} Vertex 20101 2.35913 0.583956 4.01583 {normal=(0.000002 1.000000 0.000013)} Vertex 20102 0.808488 0.583961 4.23123 {normal=(0.000002 1.000000 0.000013)} Vertex 20103 0.808488 -0.834037 4.23121 {normal=(-0.000003 -1.000000 -0.000013)} Vertex 20104 2.35913 -0.834043 4.01581 {normal=(-0.000003 -1.000000 -0.000015)} Vertex 20105 3.90671 -0.834033 3.29545 {normal=(0.000000 -1.000000 -0.000016)} Vertex 20106 5.2129 -0.83401 2.04368 {normal=(0.000001 -1.000000 -0.000017)} Vertex 20107 5.94275 -0.833978 0.282375 {normal=(0.000001 -1.000000 -0.000015)} Vertex 20108 5.95476 -0.833954 -1.5264 {normal=(0.000001 -1.000000 -0.000012)} Vertex 20109 5.01216 -0.833938 -3.01075 {normal=(-0.000001 -1.000000 -0.000013)} Vertex 20110 3.64436 -0.833921 -3.89583 {normal=(-0.000001 -1.000000 -0.000015)} Vertex 20111 2.30937 -0.833917 -4.32242 {normal=(0.000003 -1.000000 -0.000013)} Vertex 20112 0.808322 -0.833921 -4.5313 {normal=(0.000002 -1.000000 -0.000012)} Vertex 20113 0.808322 0.584078 -4.53129 {normal=(-0.000002 1.000000 0.000013)} Vertex 20114 2.30937 0.584082 -4.3224 {normal=(-0.000003 1.000000 0.000014)} Vertex 20115 3.64435 0.584077 -3.89581 {normal=(0.000000 1.000000 0.000015)} Vertex 20116 5.01216 0.584061 -3.01073 {normal=(0.000000 1.000000 0.000014)} Vertex 20117 3.79993 -1.54303 3.16688 {normal=(0.552850 -0.000011 0.816582)} Vertex 20118 2.28433 -1.54304 3.87261 {normal=(0.276435 -0.000013 0.950072)} Vertex 20119 0.787075 -1.54304 4.07338 {normal=(0.068732 -0.000014 0.995254)} Vertex 20120 0.80664 -2.96104 4.39533 {normal=(0.067188 -0.000014 0.995465)} Vertex 20121 2.37642 -2.96104 4.18206 {normal=(0.273444 -0.000013 0.950942)} Vertex 20122 3.98258 -2.96104 3.44123 {normal=(0.550070 -0.000012 0.818508)} Vertex 20123 0.789545 -1.54292 -4.37125 {normal=(0.072183 0.000014 -0.994762)} Vertex 20124 2.35898 -0.124915 -4.47934 {normal=(0.225149 0.000014 -0.970713)} Vertex 20125 3.7255 -0.12492 -4.0398 {normal=(0.414133 0.000013 -0.902523)} Vertex 20126 5.13119 -0.124937 -3.12748 {normal=(0.685739 0.000010 -0.690020)} Vertex 20127 6.10869 -0.124954 -1.58305 {normal=(0.924973 0.000004 -0.269009)} Vertex 20128 6.10874 -0.124979 0.302317 {normal=(0.961379 -0.000003 0.186990)} Vertex 20129 5.34706 -0.125012 2.13491 {normal=(0.805184 -0.000008 0.555685)} Vertex 20130 5.34389 -2.96102 2.14791 {normal=(0.806103 -0.000008 0.553529)} Vertex 20131 6.09583 -2.96098 0.284434 {normal=(0.962262 -0.000003 0.185370)} Vertex 20132 6.12891 -2.96095 -1.56478 {normal=(0.928876 0.000004 -0.262115)} Vertex 20133 5.14208 -2.96094 -3.08525 {normal=(0.692294 0.000010 -0.681988)} Vertex 20134 3.70289 -2.96092 -4.05158 {normal=(0.415106 0.000013 -0.901427)} Vertex 20135 2.34168 -2.96092 -4.4831 {normal=(0.223352 0.000014 -0.971268)} Vertex 20136 0.816705 -2.96092 -4.69526 {normal=(0.071637 0.000014 -0.994841)} Vertex 20137 5.07874 -1.54301 1.95246 {normal=(0.806579 -0.000007 0.554329)} Vertex 20138 5.77676 -1.54298 0.262437 {normal=(0.961431 -0.000002 0.191907)} Vertex 20139 5.80083 -1.54295 -1.46974 {normal=(0.926338 0.000004 -0.261876)} Vertex 20140 4.89312 -1.54294 -2.89402 {normal=(0.685397 0.000010 -0.688874)} Vertex 20141 3.56321 -1.54292 -3.75185 {normal=(0.411038 0.000013 -0.903998)} Vertex 20142 2.25976 -1.54292 -4.1655 {normal=(0.224163 0.000014 -0.971105)} Vertex 20143 0.8271 -0.12492 -4.69136 {normal=(0.071752 0.000014 -0.994825)} Vertex 20144 0.8299 -0.12504 4.38905 {normal=(0.071323 -0.000014 0.994887)} Vertex 20145 2.43393 -0.125046 4.15901 {normal=(0.280508 -0.000013 0.949026)} Vertex 20146 4.01348 -0.125035 3.42401 {normal=(0.552958 -0.000012 0.817209)} Vertex 20147 -5.9185 -3.66998 0.346318 {normal=(-0.006077 -0.999926 -0.000032)} Vertex 20148 -5.2506 -3.67001 1.98627 {normal=(-0.001868 -0.999986 0.001938)} Vertex 20149 -0.803125 -2.25192 -4.53326 {normal=(0.000001 1.000000 0.000011)} Vertex 20150 -2.30072 -2.25192 -4.3243 {normal=(-0.000001 1.000000 0.000005)} Vertex 20151 -3.63304 -2.25192 -3.90171 {normal=(-0.000005 1.000000 0.000004)} Vertex 20152 -5.0176 -2.25194 -2.98963 {normal=(-0.000005 1.000000 0.000006)} Vertex 20153 -5.96487 -2.25196 -1.51726 {normal=(-0.000002 1.000000 0.000010)} Vertex 20154 -5.9363 -2.25198 0.273436 {normal=(-0.000001 1.000000 0.000016)} Vertex 20155 -5.21132 -2.25201 2.05019 {normal=(-0.000002 1.000000 0.000019)} Vertex 20156 -3.89126 -2.25203 3.30406 {normal=(-0.000002 1.000000 0.000017)} Vertex 20157 -2.33037 -2.25204 4.02734 {normal=(-0.000003 1.000000 0.000016)} Vertex 20158 -0.796857 -2.25204 4.23435 {normal=(-0.000003 1.000000 0.000015)} Vertex 20159 -0.796857 -3.67004 4.23433 {normal=(-0.000145 -0.999999 0.001006)} Vertex 20160 -2.29016 -3.67073 4.02378 {normal=(-0.001722 -0.999995 0.002327)} Vertex 20161 -3.89122 -3.67003 3.30405 {normal=(-0.003164 -0.999984 0.002578)} Vertex 20162 -5.9467 -3.66996 -1.59088 {normal=(-0.004962 -0.999951 -0.000022)} Vertex 20163 -5.07432 -3.66994 -2.94055 {normal=(-0.005181 -0.999799 -0.008578)} Vertex 20164 -3.56272 -3.66992 -3.92949 {normal=(-0.005580 -0.999767 -0.009242)} Vertex 20165 -2.30072 -3.66992 -4.32432 {normal=(-0.000004 -1.000000 -0.000017)} Vertex 20166 -0.803125 -3.66992 -4.53328 {normal=(-0.000003 -1.000000 -0.000015)} Vertex 20167 -5.95476 0.584045 -1.52638 {normal=(0.000002 1.000000 0.000012)} Vertex 20168 -5.94275 0.58402 0.282398 {normal=(0.000002 1.000000 0.000015)} Vertex 20169 -5.2129 0.583988 2.04371 {normal=(0.000002 1.000000 0.000017)} Vertex 20170 -3.90671 0.583966 3.29546 {normal=(0.000001 1.000000 0.000014)} Vertex 20171 -2.35913 0.583956 4.01583 {normal=(-0.000002 1.000000 0.000013)} Vertex 20172 -0.808488 0.583961 4.23123 {normal=(-0.000002 1.000000 0.000013)} Vertex 20173 -0.808488 -0.834037 4.23121 {normal=(0.000003 -1.000000 -0.000013)} Vertex 20174 -2.35913 -0.834043 4.01581 {normal=(0.000003 -1.000000 -0.000015)} Vertex 20175 -3.90671 -0.834033 3.29544 {normal=(0.000000 -1.000000 -0.000016)} Vertex 20176 -5.2129 -0.83401 2.04368 {normal=(-0.000001 -1.000000 -0.000017)} Vertex 20177 -5.94275 -0.833978 0.282375 {normal=(-0.000001 -1.000000 -0.000015)} Vertex 20178 -5.95476 -0.833954 -1.5264 {normal=(-0.000001 -1.000000 -0.000012)} Vertex 20179 -5.01215 -0.833938 -3.01075 {normal=(0.000001 -1.000000 -0.000013)} Vertex 20180 -3.64435 -0.833921 -3.89583 {normal=(0.000001 -1.000000 -0.000015)} Vertex 20181 -2.30937 -0.833917 -4.32242 {normal=(-0.000003 -1.000000 -0.000013)} Vertex 20182 -0.808322 -0.833921 -4.5313 {normal=(-0.000002 -1.000000 -0.000012)} Vertex 20183 -0.808322 0.584078 -4.53128 {normal=(0.000002 1.000000 0.000013)} Vertex 20184 -2.30937 0.584082 -4.3224 {normal=(0.000003 1.000000 0.000014)} Vertex 20185 -3.64435 0.584078 -3.89581 {normal=(0.000000 1.000000 0.000015)} Vertex 20186 -5.01216 0.584061 -3.01073 {normal=(0.000000 1.000000 0.000014)} Vertex 20187 -3.79993 -1.54303 3.16689 {normal=(-0.552850 -0.000011 0.816582)} Vertex 20188 -2.28433 -1.54304 3.87261 {normal=(-0.276435 -0.000013 0.950072)} Vertex 20189 -0.787075 -1.54303 4.07338 {normal=(-0.068732 -0.000014 0.995254)} Vertex 20190 -0.80664 -2.96104 4.39533 {normal=(-0.067188 -0.000014 0.995465)} Vertex 20191 -2.37642 -2.96104 4.18206 {normal=(-0.273444 -0.000013 0.950942)} Vertex 20192 -3.98258 -2.96104 3.44123 {normal=(-0.550070 -0.000012 0.818508)} Vertex 20193 -0.789545 -1.54292 -4.37125 {normal=(-0.072183 0.000014 -0.994762)} Vertex 20194 -2.35898 -0.124915 -4.47934 {normal=(-0.225150 0.000014 -0.970713)} Vertex 20195 -3.7255 -0.12492 -4.0398 {normal=(-0.414133 0.000013 -0.902523)} Vertex 20196 -5.13119 -0.124937 -3.12748 {normal=(-0.685739 0.000010 -0.690020)} Vertex 20197 -6.10869 -0.124954 -1.58305 {normal=(-0.924973 0.000004 -0.269009)} Vertex 20198 -6.10874 -0.124979 0.302317 {normal=(-0.961379 -0.000003 0.186990)} Vertex 20199 -5.34706 -0.125012 2.13491 {normal=(-0.805184 -0.000008 0.555685)} Vertex 20200 -5.34389 -2.96102 2.14791 {normal=(-0.806103 -0.000008 0.553529)} Vertex 20201 -6.09583 -2.96098 0.284434 {normal=(-0.962262 -0.000003 0.185370)} Vertex 20202 -6.12891 -2.96096 -1.56478 {normal=(-0.928876 0.000004 -0.262115)} Vertex 20203 -5.14208 -2.96094 -3.08525 {normal=(-0.692294 0.000010 -0.681988)} Vertex 20204 -3.70289 -2.96092 -4.05158 {normal=(-0.415106 0.000013 -0.901427)} Vertex 20205 -2.34168 -2.96092 -4.4831 {normal=(-0.223352 0.000014 -0.971268)} Vertex 20206 -0.816705 -2.96092 -4.69527 {normal=(-0.071637 0.000014 -0.994841)} Vertex 20207 -5.07874 -1.54301 1.95246 {normal=(-0.806579 -0.000007 0.554329)} Vertex 20208 -5.77676 -1.54298 0.262437 {normal=(-0.961431 -0.000002 0.191907)} Vertex 20209 -5.80083 -1.54296 -1.46974 {normal=(-0.926338 0.000004 -0.261876)} Vertex 20210 -4.89312 -1.54294 -2.89402 {normal=(-0.685397 0.000010 -0.688874)} Vertex 20211 -3.56321 -1.54292 -3.75185 {normal=(-0.411038 0.000013 -0.903998)} Vertex 20212 -2.25976 -1.54292 -4.1655 {normal=(-0.224163 0.000014 -0.971105)} Vertex 20213 -0.8271 -0.12492 -4.69136 {normal=(-0.071752 0.000014 -0.994825)} Vertex 20214 -0.8299 -0.12504 4.38905 {normal=(-0.071323 -0.000014 0.994887)} Vertex 20215 -2.43393 -0.125046 4.15901 {normal=(-0.280508 -0.000013 0.949026)} Vertex 20216 -4.01348 -0.125035 3.42401 {normal=(-0.552958 -0.000012 0.817209)} Vertex 20217 5.51854 -34.2463 -4.55903 {normal=(0.040938 -0.998910 -0.011562)} Vertex 20218 4.38211 -34.282 -3.92862 {normal=(0.025855 -0.999519 0.006323)} Vertex 20219 4.43217 -34.2716 -2.71757 {normal=(0.018634 -0.999654 -0.013652)} Vertex 20220 5.59063 -34.2744 -2.2319 {normal=(0.005175 -0.998976 -0.039395)} Vertex 20221 3.71364 -9.92548 3.45147 {normal=(0.035078 -0.144457 0.975758)} Vertex 20222 -4.30586 -34.2904 -2.42032 {normal=(-0.005582 -0.999907 -0.003067)} Vertex 20223 -4.2558 -34.3007 -3.63136 {normal=(-0.013243 -0.999795 -0.000226)} Vertex 20224 -5.39223 -34.265 -4.26177 {normal=(-0.041597 -0.998777 -0.018785)} Vertex 20225 -6.26534 -34.2321 -3.65246 {normal=(-0.048173 -0.998427 -0.023740)} Vertex 20226 -4.25042 -10.2572 3.34302 {normal=(-0.186830 -0.075367 0.956969)} Vertex 20227 7.305 -10.0132 1.48403 {normal=(0.825464 0.176741 0.477135)} Vertex 20228 7.47691 -12.0367 1.65745 {normal=(0.767988 0.104621 0.588705)} Vertex 20229 9.04959 -21.8003 -2.08939 {normal=(0.377257 -0.906847 0.114325)} Vertex 20230 10.2259 -20.6506 -1.84912 {normal=(0.892746 -0.269798 0.338439)} Vertex 20231 10.2839 -18.7949 -1.30981 {normal=(0.914535 -0.022592 0.361554)} Vertex 20232 9.66625 -16.5879 -0.671608 {normal=(0.901626 0.205833 0.362399)} Vertex 20233 8.70921 -14.2336 -0.0870043 {normal=(0.901663 0.229693 0.347248)} Vertex 20234 1.45106 -21.8968 -2.35629 {normal=(-0.654819 -0.700831 0.206160)} Vertex 20235 2.78279 -21.8861 -0.441383 {normal=(-0.348077 -0.759780 0.515203)} Vertex 20236 9.11065 -21.7299 -4.35587 {normal=(0.436848 -0.869078 -0.174632)} Vertex 20237 7.89646 -21.7351 -6.42623 {normal=(0.400038 -0.844863 -0.317984)} Vertex 20238 4.62973 -21.8892 0.324356 {normal=(-0.175910 -0.781948 0.569310)} Vertex 20239 7.20477 -21.883 -0.017314 {normal=(0.243197 -0.894354 0.369847)} Vertex 20240 6.15192 -20.6957 1.67576 {normal=(0.508838 -0.545750 0.637864)} Vertex 20241 6.43839 -20.6945 1.63069 {normal=(-0.313642 -0.547865 0.760390)} Vertex 20242 3.22243 -5.04854 3.5415 {normal=(-0.003217 0.071976 0.985879)} Vertex 20243 5.20108 -8.56539 -4.43158 {normal=(0.598039 0.235194 -0.765290)} Vertex 20244 4.98498 -8.6006 -4.62701 {normal=(0.635130 0.232950 -0.734449)} Vertex 20245 4.44905 -5.61157 -3.94036 {normal=(0.599019 0.289061 -0.745244)} Vertex 20246 4.68969 -5.60324 -3.7693 {normal=(0.554273 0.269791 -0.786389)} Vertex 20247 6.17122 -5.00251 -0.374502 {normal=(0.959061 0.268874 -0.050142)} Vertex 20248 6.18605 -5.02138 -0.667118 {normal=(0.955149 0.276904 0.077719)} Vertex 20249 2.93237 -7.87324 3.75241 {normal=(0.445162 -0.088572 0.873747)} Vertex 20250 3.22431 -7.87838 3.68621 {normal=(-0.035636 -0.006238 0.985861)} Vertex 20251 4.7479 -4.99096 2.61807 {normal=(0.405695 0.168210 0.886171)} Vertex 20252 4.52624 -5.00245 2.80877 {normal=(0.876612 0.169170 0.446137)} Vertex 20253 2.97364 -5.04798 3.61806 {normal=(0.554600 0.053326 0.821337)} Vertex 20254 1.27213 -8.01394 3.8717 {normal=(0.279957 -0.164294 0.936751)} Vertex 20255 1.57103 -8.02156 3.85343 {normal=(-0.209243 -0.115383 0.960344)} Vertex 20256 1.03714 -10.5436 3.32975 {normal=(0.194362 -0.329078 0.914967)} Vertex 20257 1.33352 -10.5849 3.3368 {normal=(-0.312977 -0.230748 0.911479)} Vertex 20258 0.850881 -11.9885 2.74221 {normal=(0.066106 -0.449949 0.887611)} Vertex 20259 1.12079 -12.0751 2.78703 {normal=(-0.379257 -0.266095 0.875985)} Vertex 20260 1.30516 -12.8634 2.45535 {normal=(0.171434 -0.629430 0.747398)} Vertex 20261 1.56602 -12.9986 2.43485 {normal=(-0.428831 -0.093444 0.873542)} Vertex 20262 2.56201 -10.3189 3.43061 {normal=(0.332652 -0.306299 0.877831)} Vertex 20263 2.76747 -10.5378 3.36109 {normal=(-0.289339 -0.145002 0.933406)} Vertex 20264 1.93004 -11.9791 2.8598 {normal=(0.246932 -0.489400 0.824539)} Vertex 20265 2.16818 -12.1117 2.82644 {normal=(-0.378532 -0.167258 0.900864)} Vertex 20266 1.94726 -10.4603 3.45271 {normal=(0.013927 -0.270574 0.931606)} Vertex 20267 1.52499 -12.033 2.89745 {normal=(-0.051792 -0.386992 0.890511)} Vertex 20268 1.13412 -12.7393 2.56581 {normal=(-0.093280 -0.451462 0.850365)} Vertex 20269 0.303092 -14.5193 -1.28644 {normal=(-0.770789 0.127962 -0.622578)} Vertex 20270 0.347401 -14.5115 -1.57481 {normal=(-0.887709 -0.160911 0.410780)} Vertex 20271 0.280905 -16.6619 -2.09264 {normal=(-0.885611 -0.118639 0.446726)} Vertex 20272 0.26935 -16.7305 -1.81105 {normal=(-0.822767 0.146302 -0.546778)} Vertex 20273 0.309126 -18.913 -2.51799 {normal=(-0.855107 0.064191 -0.507622)} Vertex 20274 0.308048 -18.8363 -2.79721 {normal=(-0.860341 -0.202520 0.465600)} Vertex 20275 0.57263 -20.7341 -3.26768 {normal=(-0.802103 -0.400322 0.385949)} Vertex 20276 0.569559 -20.7611 -2.97875 {normal=(-0.847312 -0.087162 -0.519286)} Vertex 20277 2.95973 -18.9145 -7.46053 {normal=(-0.105451 0.335679 -0.935816)} Vertex 20278 3.20682 -18.899 -7.63651 {normal=(-0.897113 -0.041097 -0.431411)} Vertex 20279 3.15873 -20.8017 -7.46821 {normal=(-0.022214 -0.482506 -0.872444)} Vertex 20280 3.41183 -20.7871 -7.6316 {normal=(-0.843953 -0.281812 -0.425013)} Vertex 20281 8.87383 -14.1994 -1.34556 {normal=(0.886088 0.187112 0.419614)} Vertex 20282 8.88229 -14.2351 -1.07424 {normal=(0.835988 0.395431 -0.374520)} Vertex 20283 9.88018 -16.5667 -1.75128 {normal=(0.857136 0.402856 -0.313415)} Vertex 20284 9.87038 -16.483 -2.04734 {normal=(0.885197 0.186956 0.421694)} Vertex 20285 10.5307 -18.6198 -2.80621 {normal=(0.912868 -0.003634 0.384237)} Vertex 20286 10.5244 -18.7122 -2.45863 {normal=(0.921278 0.174099 -0.296280)} Vertex 20287 10.4469 -20.5488 -2.90933 {normal=(0.929000 -0.121028 -0.328810)} Vertex 20288 10.4609 -20.507 -3.23271 {normal=(0.901390 -0.228100 0.356710)} Vertex 20289 8.67653 -16.5239 -5.1682 {normal=(0.408593 0.430890 -0.803119)} Vertex 20290 8.48695 -16.4908 -5.45715 {normal=(0.948946 0.307080 -0.000069)} Vertex 20291 9.06097 -18.6358 -6.36375 {normal=(0.962713 0.243704 -0.105358)} Vertex 20292 9.31416 -18.6763 -5.97808 {normal=(0.495908 0.367215 -0.784031)} Vertex 20293 9.29818 -20.5421 -6.06188 {normal=(0.657671 -0.346528 -0.643277)} Vertex 20294 9.02988 -20.535 -6.46827 {normal=(0.858458 -0.328548 -0.351088)} Vertex 20295 6.57426 3.9453 0.792064 {normal=(0.993487 0.030856 -0.022719)} Vertex 20296 6.65866 3.88707 1.79795 {normal=(0.995695 0.044105 0.075835)} Vertex 20297 6.644 3.88353 1.93614 {normal=(0.993276 0.064277 0.090774)} Vertex 20298 0.808488 2.90197 5.06804 {normal=(0.146967 0.087939 0.971297)} Vertex 20299 1.68333 2.86209 4.97947 {normal=(0.174575 0.097676 0.970447)} Vertex 20300 1.82041 2.85777 4.96931 {normal=(-0.037022 0.088935 0.990204)} Vertex 20301 2.70865 2.85445 4.90748 {normal=(0.108279 0.033570 0.961853)} Vertex 20302 4.11983 2.87846 4.40109 {normal=(0.547526 -0.047210 0.795397)} Vertex 20303 4.77883 2.94075 3.85881 {normal=(0.821217 -0.103460 0.544527)} Vertex 20304 4.95538 2.94029 3.71744 {normal=(0.130719 -0.260664 0.952512)} Vertex 20305 5.72021 2.8199 3.44168 {normal=(0.482194 -0.164985 0.799611)} Vertex 20306 6.57334 2.68544 2.31891 {normal=(0.874290 -0.029499 0.337976)} Vertex 20307 6.40373 2.7365 -1.23374 {normal=(0.988072 -0.022880 0.023774)} Vertex 20308 6.36677 2.5571 -2.0317 {normal=(0.813195 0.173665 -0.534757)} Vertex 20309 6.30515 2.55003 -2.17472 {normal=(0.898743 0.144993 -0.407343)} Vertex 20310 5.74426 2.60636 -2.97597 {normal=(0.792165 0.122854 -0.556325)} Vertex 20311 4.35833 2.79933 -4.16834 {normal=(0.554863 0.058788 -0.819572)} Vertex 20312 3.45438 2.95902 -4.50148 {normal=(-0.232526 -0.041908 -0.971546)} Vertex 20313 3.2795 2.95483 -4.63841 {normal=(0.979656 -0.186896 -0.067387)} Vertex 20314 2.44425 2.83771 -5.19005 {normal=(0.299144 0.023423 -0.945545)} Vertex 20315 0.811 2.82786 -5.52943 {normal=(0.094705 -0.002275 -0.989809)} Vertex 20316 1.76631 4.06355 4.80503 {normal=(-0.034372 0.116140 0.986339)} Vertex 20317 1.58989 4.07444 4.81221 {normal=(0.156909 0.146630 0.972548)} Vertex 20318 6.099 3.79717 -2.00332 {normal=(0.869231 0.193209 -0.453111)} Vertex 20319 6.18285 3.79859 -1.836 {normal=(0.778206 0.199422 -0.582952)} Vertex 20320 5.06045 3.87783 -3.51768 {normal=(0.732468 0.174417 -0.658013)} Vertex 20321 4.94044 3.88338 -3.64882 {normal=(0.711250 0.143710 -0.686217)} Vertex 20322 0.751993 4.12867 4.87771 {normal=(0.120347 0.154413 0.972902)} Vertex 20323 2.62134 4.01567 4.7962 {normal=(0.056299 0.068329 0.975186)} Vertex 20324 6.44369 3.87753 2.66142 {normal=(0.896566 0.011524 0.350563)} Vertex 20325 6.61325 2.76484 0.583629 {normal=(0.967379 0.021915 -0.140665)} Vertex 20326 6.34981 3.90645 -0.961093 {normal=(0.990667 0.055551 -0.118565)} Vertex 20327 5.59811 3.84351 -2.78809 {normal=(0.809144 0.181079 -0.540015)} Vertex 20328 4.25412 3.94337 -4.15495 {normal=(0.613906 0.083829 -0.778089)} Vertex 20329 6.04159 0.629042 -1.56407 {normal=(0.141788 -0.987187 0.039725)} Vertex 20330 0.797127 0.625431 4.41492 {normal=(-0.004058 -0.994381 0.104235)} Vertex 20331 2.38403 0.60384 4.2108 {normal=(0.045821 -0.992537 0.098496)} Vertex 20332 3.93267 0.673367 3.55466 {normal=(0.175596 -0.970215 0.143011)} Vertex 20333 5.32225 0.629464 2.2816 {normal=(0.058026 -0.973544 0.156224)} Vertex 20334 6.05787 0.652461 0.584448 {normal=(0.189359 -0.979883 0.026035)} Vertex 20335 5.18447 0.571009 -3.02573 {normal=(0.037147 -0.993536 -0.046141)} Vertex 20336 3.83215 0.64556 -3.94968 {normal=(0.006995 -0.976951 -0.197020)} Vertex 20337 2.29676 0.640231 -4.52413 {normal=(0.078863 -0.987519 -0.130691)} Vertex 20338 0.818247 0.617678 -4.72784 {normal=(0.020994 -0.993654 -0.107866)} Vertex 20339 4.97659 1.18414 3.27393 {normal=(0.310956 -0.320577 0.882761)} Vertex 20340 4.80042 1.22352 3.48651 {normal=(0.839491 -0.087608 0.521442)} Vertex 20341 6.18551 1.13896 -0.739532 {normal=(0.948779 -0.022974 0.193415)} Vertex 20342 6.24381 1.13453 -0.461635 {normal=(0.906725 0.078637 -0.286945)} Vertex 20343 3.23221 1.218 -4.38607 {normal=(-0.355603 -0.122851 -0.918830)} Vertex 20344 3.00729 1.20608 -4.52884 {normal=(0.991540 -0.113705 -0.034847)} Vertex 20345 3.11101 1.96906 -4.61944 {normal=(0.984440 -0.155063 -0.081670)} Vertex 20346 3.34362 1.97529 -4.43751 {normal=(-0.276928 -0.026976 -0.959972)} Vertex 20347 6.23741 1.87917 -0.63066 {normal=(0.967440 -0.093657 0.059984)} Vertex 20348 6.2793 1.86904 -0.338375 {normal=(0.914877 0.002928 -0.337762)} Vertex 20349 5.00018 1.99817 3.45819 {normal=(0.188217 -0.256292 0.943278)} Vertex 20350 4.76491 1.99753 3.64671 {normal=(0.833879 -0.103127 0.529279)} Vertex 20351 0.853675 1.77306 -5.47597 {normal=(0.091653 -0.170607 -0.968893)} Vertex 20352 2.39262 1.80132 -5.20996 {normal=(0.315651 -0.139378 -0.919767)} Vertex 20353 4.33713 1.7651 -4.1901 {normal=(0.483189 -0.047617 -0.860613)} Vertex 20354 5.76475 1.52408 -3.10869 {normal=(0.719943 -0.043368 -0.646600)} Vertex 20355 6.36738 1.67042 -1.51849 {normal=(0.973325 -0.098784 0.163496)} Vertex 20356 6.60506 1.73231 0.353537 {normal=(0.912315 -0.032790 -0.282312)} Vertex 20357 6.63271 1.67067 1.95578 {normal=(0.849850 -0.204563 0.287342)} Vertex 20358 5.79798 1.83592 3.21391 {normal=(0.483591 -0.265371 0.774877)} Vertex 20359 0.821335 1.80104 5.09995 {normal=(0.101253 -0.126633 0.966905)} Vertex 20360 2.65051 1.75492 4.9112 {normal=(0.188787 -0.146102 0.932646)} Vertex 20361 4.11841 1.86289 4.29467 {normal=(0.586896 -0.148233 0.756992)} Vertex 20362 6.29761 0.940978 -1.63631 {normal=(0.951822 -0.072991 0.202879)} Vertex 20363 4.18276 1.00732 -4.17217 {normal=(0.432524 -0.161108 -0.878059)} Vertex 20364 0.85604 0.96977 -5.24398 {normal=(0.087210 -0.366199 -0.918865)} Vertex 20365 6.46774 0.981053 1.37629 {normal=(0.785187 -0.309449 0.095660)} Vertex 20366 5.67451 1.03313 2.86863 {normal=(0.497793 -0.471829 0.663581)} Vertex 20367 4.0827 1.0725 4.07643 {normal=(0.585406 -0.253862 0.726492)} Vertex 20368 5.59697 0.812779 -3.14646 {normal=(0.632210 -0.207424 -0.730326)} Vertex 20369 0.810233 0.989837 4.89429 {normal=(0.041974 -0.341506 0.934898)} Vertex 20370 2.35071 1.01294 -5.02734 {normal=(0.310712 -0.336835 -0.873191)} Vertex 20371 2.52891 0.929459 4.70093 {normal=(0.236991 -0.354061 0.887634)} Vertex 20372 7.59739 -18.9066 1.91711 {normal=(0.541153 -0.181136 0.799569)} Vertex 20373 9.38361 -18.8672 0.482211 {normal=(0.760465 -0.098315 0.589368)} Vertex 20374 10.0587 -18.6227 -4.40627 {normal=(0.896054 0.191460 -0.349486)} Vertex 20375 8.46851 -18.6036 -7.21802 {normal=(0.607064 0.367354 -0.691836)} Vertex 20376 6.88382 -18.6769 -8.24973 {normal=(0.426405 0.358148 -0.820021)} Vertex 20377 4.56401 -18.8117 -8.23031 {normal=(-0.328940 0.283715 -0.898922)} Vertex 20378 1.80438 -18.934 -6.21716 {normal=(-0.819335 0.042342 -0.548584)} Vertex 20379 0.522023 -18.8808 -3.9674 {normal=(-0.914990 0.019398 -0.376669)} Vertex 20380 0.551944 -18.9196 -1.18909 {normal=(-0.889486 -0.199153 0.384105)} Vertex 20381 1.99503 -18.8957 1.05832 {normal=(-0.620637 -0.261221 0.680142)} Vertex 20382 4.61915 -18.914 2.34691 {normal=(-0.278771 -0.303817 0.894829)} Vertex 20383 3.50824 -33.9299 -4.99953 {normal=(-0.464314 -0.708269 -0.452835)} Vertex 20384 4.68409 -33.8897 -5.62806 {normal=(-0.065383 -0.732287 -0.620050)} Vertex 20385 5.61935 -33.8286 -5.55347 {normal=(0.347117 -0.691986 -0.596949)} Vertex 20386 6.22208 -33.8022 -5.01681 {normal=(0.665581 -0.574790 -0.435084)} Vertex 20387 6.66684 -33.806 -3.95909 {normal=(0.853459 -0.461311 -0.141357)} Vertex 20388 6.59652 -33.8557 -2.65231 {normal=(0.792055 -0.424935 0.314529)} Vertex 20389 5.91284 -33.9074 -1.79815 {normal=(0.446926 -0.408312 0.739750)} Vertex 20390 4.76551 -33.9095 -1.55109 {normal=(-0.025660 -0.432029 0.858654)} Vertex 20391 3.63203 -33.9035 -1.92404 {normal=(-0.456177 -0.520036 0.652002)} Vertex 20392 2.96806 -33.9003 -2.86944 {normal=(-0.700507 -0.596803 0.276041)} Vertex 20393 2.87434 -33.9193 -3.95252 {normal=(-0.692239 -0.657037 -0.119270)} Vertex 20394 3.15569 -32.8954 -5.72906 {normal=(-0.585321 -0.364947 -0.631631)} Vertex 20395 4.68355 -32.8432 -6.54401 {normal=(-0.118483 -0.410150 -0.823403)} Vertex 20396 5.93362 -32.764 -6.4473 {normal=(0.370666 -0.448146 -0.742500)} Vertex 20397 6.63243 -32.7297 -5.7087 {normal=(0.716631 -0.440448 -0.475281)} Vertex 20398 7.04049 -32.7347 -4.2945 {normal=(0.895133 -0.370948 -0.134064)} Vertex 20399 6.99919 -32.7991 -2.65938 {normal=(0.850730 -0.300792 0.315923)} Vertex 20400 6.24326 -32.8661 -1.6111 {normal=(0.498378 -0.242611 0.763165)} Vertex 20401 4.75949 -32.8689 -1.2743 {normal=(-0.036600 -0.205213 0.929993)} Vertex 20402 3.23836 -32.8612 -1.74139 {normal=(-0.541885 -0.240601 0.735185)} Vertex 20403 2.37924 -32.857 -2.9672 {normal=(-0.848953 -0.304628 0.285562)} Vertex 20404 2.30593 -32.8815 -4.37152 {normal=(-0.853140 -0.339199 -0.225355)} Vertex 20405 3.19229 -31.2942 -5.9238 {normal=(-0.611569 0.004692 -0.739624)} Vertex 20406 4.80838 -31.2393 -6.7827 {normal=(-0.149629 0.004224 -0.929220)} Vertex 20407 6.28451 -31.1558 -6.68077 {normal=(0.379707 -0.041629 -0.856133)} Vertex 20408 7.13969 -31.1197 -5.96969 {normal=(0.766445 -0.122068 -0.547945)} Vertex 20409 7.53524 -31.125 -4.54657 {normal=(0.939596 -0.168836 -0.143830)} Vertex 20410 7.37609 -31.1928 -2.70882 {normal=(0.868678 -0.145166 0.350061)} Vertex 20411 6.45061 -31.2634 -1.48956 {normal=(0.497027 -0.096429 0.801519)} Vertex 20412 4.8105 -31.2664 -1.18169 {normal=(-0.041888 -0.062642 0.957560)} Vertex 20413 3.09523 -31.2583 -1.72106 {normal=(-0.554715 -0.077597 0.774220)} Vertex 20414 2.0451 -31.2538 -3.01298 {normal=(-0.890704 -0.092618 0.274007)} Vertex 20415 2.07752 -31.2797 -4.49304 {normal=(-0.893160 -0.047625 -0.322475)} Vertex 20416 3.31712 -28.9331 -5.47714 {normal=(-0.596627 0.191744 -0.750542)} Vertex 20417 4.83354 -28.883 -6.26011 {normal=(-0.167852 0.233629 -0.917523)} Vertex 20418 6.1881 -28.807 -6.1672 {normal=(0.336435 0.230551 -0.873919)} Vertex 20419 7.09414 -28.7741 -5.5744 {normal=(0.734751 0.163883 -0.600515)} Vertex 20420 7.63744 -28.7788 -4.3325 {normal=(0.942105 0.072710 -0.153272)} Vertex 20421 7.4022 -28.8407 -2.56844 {normal=(0.852873 0.010844 0.401563)} Vertex 20422 6.3368 -28.9051 -1.3682 {normal=(0.457467 -0.015435 0.836919)} Vertex 20423 4.68214 -28.9077 -1.12088 {normal=(-0.062581 -0.031278 0.962488)} Vertex 20424 2.97206 -28.9003 -1.64592 {normal=(-0.551243 -0.035402 0.785163)} Vertex 20425 2.00176 -28.8963 -2.82363 {normal=(-0.885243 0.023805 0.273232)} Vertex 20426 2.16431 -28.9199 -4.17286 {normal=(-0.875027 0.120744 -0.353369)} Vertex 20427 4.71996 -21.8945 -7.18025 {normal=(-0.055847 -0.771816 -0.618056)} Vertex 20428 6.63104 -21.7854 -7.13536 {normal=(0.150305 -0.821423 -0.516397)} Vertex 20429 8.35504 -21.7239 -5.83362 {normal=(0.570556 -0.804632 -0.107467)} Vertex 20430 8.55569 -21.7234 -5.50889 {normal=(0.349173 -0.850462 -0.383140)} Vertex 20431 6.18787 -21.8492 0.310948 {normal=(-0.411687 -0.705874 0.563559)} Vertex 20432 5.89075 -21.8499 0.352484 {normal=(0.490657 -0.758200 0.410722)} Vertex 20433 2.08073 -21.8585 -1.26328 {normal=(-0.512644 -0.800751 0.073296)} Vertex 20434 1.89959 -21.8598 -1.53178 {normal=(-0.305941 -0.769295 0.507291)} Vertex 20435 1.44286 -21.9543 -4.18192 {normal=(-0.556872 -0.800695 -0.203736)} Vertex 20436 2.52001 -21.9761 -5.86418 {normal=(-0.489784 -0.787812 -0.362721)} Vertex 20437 4.72787 -20.7279 -8.1405 {normal=(-0.164804 -0.575465 -0.783381)} Vertex 20438 6.96116 -20.6019 -8.11481 {normal=(0.423972 -0.447921 -0.782458)} Vertex 20439 8.46742 -20.5359 -7.22633 {normal=(0.572375 -0.418708 -0.699604)} Vertex 20440 10.0215 -20.5226 -4.65224 {normal=(0.908806 -0.150109 -0.357657)} Vertex 20441 9.37623 -20.7265 -0.203213 {normal=(0.731710 -0.336863 0.552058)} Vertex 20442 7.69445 -20.7404 1.09612 {normal=(0.506159 -0.407465 0.745969)} Vertex 20443 4.62731 -20.7528 1.53055 {normal=(-0.242394 -0.544527 0.774222)} Vertex 20444 2.23186 -20.7467 0.383681 {normal=(-0.519091 -0.495484 0.638309)} Vertex 20445 0.777959 -20.7677 -1.82529 {normal=(-0.832725 -0.411104 0.310934)} Vertex 20446 0.777365 -20.7961 -4.33752 {normal=(-0.897737 -0.175081 -0.375443)} Vertex 20447 2.02335 -20.8362 -6.3569 {normal=(-0.793582 -0.200050 -0.553869)} Vertex 20448 4.1697 -16.6258 -7.2305 {normal=(-0.367572 0.278217 -0.883134)} Vertex 20449 6.40204 -16.4878 -7.29674 {normal=(0.406792 0.475444 -0.771034)} Vertex 20450 7.9231 -16.424 -6.27491 {normal=(0.566963 0.486750 -0.654539)} Vertex 20451 9.38686 -16.4543 -3.6291 {normal=(0.837942 0.429675 -0.332034)} Vertex 20452 8.80735 -16.6497 1.03113 {normal=(0.755706 0.117506 0.605622)} Vertex 20453 7.05093 -16.721 2.41761 {normal=(0.542040 0.022305 0.829441)} Vertex 20454 4.44842 -16.7228 2.77898 {normal=(-0.282497 -0.152659 0.937546)} Vertex 20455 1.88831 -16.7034 1.56821 {normal=(-0.620453 -0.165510 0.704686)} Vertex 20456 0.465696 -16.7279 -0.534167 {normal=(-0.906131 -0.137731 0.368057)} Vertex 20457 0.473059 -16.6962 -3.1877 {normal=(-0.920887 0.114696 -0.362659)} Vertex 20458 1.71047 -16.7393 -5.36534 {normal=(-0.836916 0.155016 -0.515118)} Vertex 20459 0.552937 -14.529 -2.60225 {normal=(-0.926827 0.106755 -0.354411)} Vertex 20460 0.323007 -13.2879 -2.75151 {normal=(-0.303759 -0.942143 -0.129674)} Vertex 20461 7.69488 -11.9015 -2.12047 {normal=(0.859154 0.289409 -0.354402)} Vertex 20462 7.44249 -9.96739 -1.63748 {normal=(0.914718 0.230347 -0.266919)} Vertex 20463 1.51517 -14.546 1.98028 {normal=(-0.608984 -0.128097 0.736820)} Vertex 20464 4.11281 -8.66463 -5.26734 {normal=(0.475078 0.225965 -0.820512)} Vertex 20465 0.840618 -10.9963 -5.8909 {normal=(-0.052937 -0.042207 -0.993429)} Vertex 20466 0.822203 -8.86275 -5.91685 {normal=(0.004496 0.113389 -0.985072)} Vertex 20467 4.17234 -10.9143 -5.76174 {normal=(0.453384 0.193707 -0.846466)} Vertex 20468 2.52748 -11.0022 -6.17591 {normal=(0.090084 0.093690 -0.966617)} Vertex 20469 6.16681 -5.08259 -1.55957 {normal=(0.904213 0.271513 -0.144614)} Vertex 20470 6.0375 -4.94082 0.554979 {normal=(0.909273 0.251998 0.168235)} Vertex 20471 6.05912 -12.1872 2.69989 {normal=(0.542357 0.037364 0.829580)} Vertex 20472 2.65182 -12.1968 2.91407 {normal=(-0.175846 -0.210123 0.953189)} Vertex 20473 3.91147 -5.02356 3.26027 {normal=(0.291965 0.090127 0.939265)} Vertex 20474 0.355227 -11.7968 2.65113 {normal=(-0.532502 -0.616094 0.566046)} Vertex 20475 0.705595 -5.10048 4.0928 {normal=(0.041196 -0.023708 0.994323)} Vertex 20476 2.64628 -13.2417 -5.85868 {normal=(-0.578699 0.071781 -0.810109)} Vertex 20477 3.34203 -14.6754 -6.2946 {normal=(-0.473870 0.129127 -0.861336)} Vertex 20478 4.06308 -12.2266 3.04411 {normal=(-0.083185 -0.134706 0.983614)} Vertex 20479 1.52009 -14.6463 -4.58955 {normal=(-0.872869 0.085548 -0.469297)} Vertex 20480 5.40158 -14.5066 -6.4157 {normal=(0.429769 0.456513 -0.770487)} Vertex 20481 8.08196 -11.9346 0.309053 {normal=(0.930683 0.179899 0.254800)} Vertex 20482 0.181841 -12.505 1.31632 {normal=(-0.739675 -0.526428 0.342981)} Vertex 20483 2.37238 -5.57927 -4.88344 {normal=(0.218286 0.306648 -0.917419)} Vertex 20484 5.44712 -5.36429 -3.00432 {normal=(0.697307 0.262883 -0.619701)} Vertex 20485 6.1351 -10.1345 2.65233 {normal=(0.636729 0.101079 0.746938)} Vertex 20486 6.22692 -12.2594 -4.55102 {normal=(0.663313 0.318882 -0.644944)} Vertex 20487 5.86587 -7.64762 2.36794 {normal=(0.687895 0.203461 0.669047)} Vertex 20488 6.17176 -10.3047 -3.87747 {normal=(0.725520 0.226760 -0.613078)} Vertex 20489 4.4494 -12.8045 -6.07542 {normal=(0.451580 0.301062 -0.827229)} Vertex 20490 0.816748 -12.425 -5.1741 {normal=(-0.315040 -0.623608 -0.715195)} Vertex 20491 6.06096 -8.16613 -3.36699 {normal=(0.732105 0.237186 -0.594462)} Vertex 20492 2.48722 -8.75762 -5.85545 {normal=(0.149097 0.185742 -0.954687)} Vertex 20493 0.794903 -5.58122 -5.10297 {normal=(0.051921 0.291986 -0.950830)} Vertex 20494 3.75427 -5.58843 -4.37798 {normal=(0.479117 0.305030 -0.804776)} Vertex 20495 6.89989 -7.77356 -1.58695 {normal=(0.915680 0.254292 -0.202327)} Vertex 20496 6.74243 -7.6317 1.01953 {normal=(0.876227 0.261956 0.304073)} Vertex 20497 5.36664 -4.93931 1.96253 {normal=(0.697650 0.215926 0.634330)} Vertex 20498 0.069102 -13.0861 -0.599957 {normal=(-0.903551 -0.389094 0.146352)} Vertex 20499 0.44204 -10.5503 3.36694 {normal=(0.068525 -0.330234 0.935313)} Vertex 20500 4.19681 -7.79225 3.42999 {normal=(0.208035 0.010263 0.967180)} Vertex 20501 2.25913 -7.9509 3.86968 {normal=(0.123148 -0.100949 0.953971)} Vertex 20502 0.561759 -8.08463 3.93642 {normal=(0.091532 -0.159836 0.973460)} Vertex 20503 2.28753 -5.06102 3.91179 {normal=(0.295895 0.024020 0.930285)} Vertex 20504 0.297577 -14.4094 -0.262428 {normal=(-0.917992 -0.229725 0.264689)} Vertex 20505 2.21159 -13.8449 2.51853 {normal=(-0.326435 -0.107702 0.930730)} Vertex 20506 4.16043 -14.3906 2.88674 {normal=(-0.209262 -0.106442 0.967083)} Vertex 20507 6.35812 -14.4111 2.63195 {normal=(0.515877 0.061832 0.846412)} Vertex 20508 7.94164 -14.3253 1.45852 {normal=(0.740798 0.142945 0.615561)} Vertex 20509 8.33159 -14.1502 -2.8976 {normal=(0.811135 0.420337 -0.387908)} Vertex 20510 6.95521 -14.2715 -5.26172 {normal=(0.581945 0.473163 -0.645056)} Vertex 20511 5.51901 3.89818 3.74212 {normal=(0.484930 -0.155452 0.827858)} Vertex 20512 4.08585 3.9483 4.44551 {normal=(0.425743 -0.008079 0.874106)} Vertex 20513 0.74856 3.96786 -5.49142 {normal=(0.096136 0.045078 -0.989579)} Vertex 20514 2.49761 3.96688 -5.07415 {normal=(0.282080 0.066674 -0.952365)} Vertex 20515 -7.305 -10.0132 1.48403 {normal=(-0.825464 0.176741 0.477135)} Vertex 20516 -7.47691 -12.0367 1.65745 {normal=(-0.767988 0.104621 0.588705)} Vertex 20517 -9.04959 -21.8003 -2.08939 {normal=(-0.377257 -0.906847 0.114325)} Vertex 20518 -10.2259 -20.6506 -1.84912 {normal=(-0.892746 -0.269798 0.338439)} Vertex 20519 -10.2839 -18.7949 -1.30981 {normal=(-0.914535 -0.022592 0.361554)} Vertex 20520 -9.66625 -16.5878 -0.671608 {normal=(-0.901626 0.205833 0.362399)} Vertex 20521 -8.70921 -14.2336 -0.0870043 {normal=(-0.901663 0.229693 0.347248)} Vertex 20522 -1.45106 -21.8968 -2.35629 {normal=(0.654819 -0.700831 0.206160)} Vertex 20523 -2.78279 -21.8861 -0.441383 {normal=(0.348077 -0.759780 0.515203)} Vertex 20524 -9.11065 -21.7299 -4.35587 {normal=(-0.436848 -0.869078 -0.174632)} Vertex 20525 -7.89646 -21.7351 -6.42623 {normal=(-0.400038 -0.844863 -0.317984)} Vertex 20526 -4.62973 -21.8892 0.324356 {normal=(0.175910 -0.781948 0.569310)} Vertex 20527 -7.20477 -21.883 -0.017314 {normal=(-0.243197 -0.894354 0.369847)} Vertex 20528 -6.15192 -20.6957 1.67576 {normal=(-0.508838 -0.545750 0.637864)} Vertex 20529 -6.43839 -20.6945 1.63069 {normal=(0.313642 -0.547865 0.760390)} Vertex 20530 -3.22243 -5.04854 3.5415 {normal=(0.003217 0.071976 0.985879)} Vertex 20531 -5.20108 -8.56539 -4.43158 {normal=(-0.598039 0.235194 -0.765290)} Vertex 20532 -4.98498 -8.6006 -4.62701 {normal=(-0.635130 0.232950 -0.734449)} Vertex 20533 -4.44905 -5.61157 -3.94036 {normal=(-0.599019 0.289061 -0.745244)} Vertex 20534 -4.68969 -5.60324 -3.7693 {normal=(-0.554273 0.269791 -0.786389)} Vertex 20535 -6.17122 -5.00251 -0.374502 {normal=(-0.959061 0.268875 -0.050142)} Vertex 20536 -6.18605 -5.02138 -0.667118 {normal=(-0.955148 0.276904 0.077719)} Vertex 20537 -2.93237 -7.87324 3.75241 {normal=(-0.445162 -0.088572 0.873747)} Vertex 20538 -3.22431 -7.87837 3.68621 {normal=(0.044215 0.002877 0.987058)} Vertex 20539 -4.7479 -4.99096 2.61807 {normal=(-0.405695 0.168210 0.886171)} Vertex 20540 -4.52624 -5.00245 2.80877 {normal=(-0.876612 0.169170 0.446136)} Vertex 20541 -2.97364 -5.04798 3.61806 {normal=(-0.554600 0.053326 0.821337)} Vertex 20542 -1.27213 -8.01394 3.8717 {normal=(-0.279957 -0.164294 0.936751)} Vertex 20543 -1.57103 -8.02156 3.85343 {normal=(0.209243 -0.115383 0.960344)} Vertex 20544 -1.03714 -10.5436 3.32975 {normal=(-0.194362 -0.329078 0.914967)} Vertex 20545 -1.33352 -10.5849 3.3368 {normal=(0.312977 -0.230748 0.911479)} Vertex 20546 -0.850881 -11.9885 2.74221 {normal=(-0.066106 -0.449949 0.887611)} Vertex 20547 -1.12079 -12.0752 2.78703 {normal=(0.379257 -0.266095 0.875985)} Vertex 20548 -1.30516 -12.8634 2.45535 {normal=(-0.171434 -0.629431 0.747398)} Vertex 20549 -1.56602 -12.9986 2.43485 {normal=(0.428831 -0.093444 0.873542)} Vertex 20550 -2.56201 -10.3189 3.43061 {normal=(-0.332652 -0.306299 0.877831)} Vertex 20551 -2.76747 -10.5378 3.36109 {normal=(0.289343 -0.145001 0.933406)} Vertex 20552 -1.93004 -11.9791 2.8598 {normal=(-0.246932 -0.489400 0.824539)} Vertex 20553 -2.16818 -12.1117 2.82644 {normal=(0.378532 -0.167258 0.900864)} Vertex 20554 -1.94726 -10.4603 3.45271 {normal=(-0.013927 -0.270574 0.931606)} Vertex 20555 -1.52499 -12.033 2.89744 {normal=(0.051792 -0.386993 0.890511)} Vertex 20556 -1.13412 -12.7393 2.56581 {normal=(0.093280 -0.451463 0.850365)} Vertex 20557 -0.303092 -14.5193 -1.28644 {normal=(0.770789 0.127962 -0.622578)} Vertex 20558 -0.347401 -14.5115 -1.57481 {normal=(0.887709 -0.160911 0.410780)} Vertex 20559 -0.280905 -16.6619 -2.09264 {normal=(0.885611 -0.118639 0.446726)} Vertex 20560 -0.26935 -16.7305 -1.81105 {normal=(0.822767 0.146303 -0.546778)} Vertex 20561 -0.309125 -18.913 -2.51799 {normal=(0.855107 0.064191 -0.507622)} Vertex 20562 -0.308048 -18.8363 -2.79721 {normal=(0.860341 -0.202519 0.465599)} Vertex 20563 -0.57263 -20.7341 -3.26768 {normal=(0.802103 -0.400322 0.385949)} Vertex 20564 -0.569559 -20.7611 -2.97875 {normal=(0.847312 -0.087162 -0.519286)} Vertex 20565 -2.95973 -18.9145 -7.46053 {normal=(0.105451 0.335678 -0.935816)} Vertex 20566 -3.20682 -18.899 -7.63651 {normal=(0.897113 -0.041097 -0.431411)} Vertex 20567 -3.15873 -20.8017 -7.46821 {normal=(0.022214 -0.482506 -0.872444)} Vertex 20568 -3.41183 -20.787 -7.63161 {normal=(0.843953 -0.281811 -0.425013)} Vertex 20569 -8.87383 -14.1993 -1.34556 {normal=(-0.886088 0.187112 0.419614)} Vertex 20570 -8.88229 -14.2352 -1.07424 {normal=(-0.835987 0.395431 -0.374520)} Vertex 20571 -9.88018 -16.5667 -1.75128 {normal=(-0.857135 0.402856 -0.313415)} Vertex 20572 -9.87037 -16.4831 -2.04734 {normal=(-0.885198 0.186956 0.421694)} Vertex 20573 -10.5307 -18.6198 -2.80622 {normal=(-0.912868 -0.003634 0.384237)} Vertex 20574 -10.5244 -18.7122 -2.45863 {normal=(-0.921278 0.174099 -0.296280)} Vertex 20575 -10.4469 -20.5488 -2.90933 {normal=(-0.929000 -0.121028 -0.328810)} Vertex 20576 -10.4609 -20.507 -3.2327 {normal=(-0.901391 -0.228100 0.356710)} Vertex 20577 -8.67653 -16.5239 -5.1682 {normal=(-0.408593 0.430890 -0.803119)} Vertex 20578 -8.48695 -16.4908 -5.45715 {normal=(-0.948946 0.307080 -0.000069)} Vertex 20579 -9.06097 -18.6358 -6.36375 {normal=(-0.962713 0.243704 -0.105358)} Vertex 20580 -9.31416 -18.6763 -5.97808 {normal=(-0.495908 0.367215 -0.784031)} Vertex 20581 -9.29818 -20.5421 -6.06187 {normal=(-0.657671 -0.346528 -0.643277)} Vertex 20582 -9.02988 -20.535 -6.46827 {normal=(-0.858457 -0.328548 -0.351088)} Vertex 20583 -6.57426 3.9453 0.792065 {normal=(-0.993487 0.030856 -0.022719)} Vertex 20584 -6.65866 3.88707 1.79795 {normal=(-0.995695 0.044105 0.075835)} Vertex 20585 -6.644 3.88353 1.93614 {normal=(-0.993276 0.064277 0.090774)} Vertex 20586 -0.808488 2.90197 5.06804 {normal=(-0.146967 0.087939 0.971297)} Vertex 20587 -1.68333 2.86208 4.97947 {normal=(-0.174575 0.097676 0.970447)} Vertex 20588 -1.82041 2.85777 4.96931 {normal=(0.037022 0.088935 0.990204)} Vertex 20589 -2.70865 2.85445 4.90748 {normal=(-0.108279 0.033570 0.961853)} Vertex 20590 -4.11983 2.87846 4.40109 {normal=(-0.547526 -0.047210 0.795397)} Vertex 20591 -4.77883 2.94075 3.85881 {normal=(-0.821217 -0.103460 0.544527)} Vertex 20592 -4.95538 2.94029 3.71744 {normal=(-0.130719 -0.260664 0.952512)} Vertex 20593 -5.72021 2.8199 3.44168 {normal=(-0.482194 -0.164985 0.799611)} Vertex 20594 -6.57334 2.68544 2.31891 {normal=(-0.874290 -0.029499 0.337976)} Vertex 20595 -6.40373 2.7365 -1.23374 {normal=(-0.988072 -0.022880 0.023774)} Vertex 20596 -6.36677 2.5571 -2.0317 {normal=(-0.813195 0.173665 -0.534757)} Vertex 20597 -6.30515 2.55003 -2.17472 {normal=(-0.898743 0.144993 -0.407343)} Vertex 20598 -5.74426 2.60636 -2.97597 {normal=(-0.792165 0.122854 -0.556325)} Vertex 20599 -4.35833 2.79933 -4.16834 {normal=(-0.554863 0.058788 -0.819572)} Vertex 20600 -3.45438 2.95902 -4.50148 {normal=(0.232526 -0.041908 -0.971546)} Vertex 20601 -3.2795 2.95483 -4.63841 {normal=(-0.979656 -0.186896 -0.067387)} Vertex 20602 -2.44425 2.83771 -5.19005 {normal=(-0.299144 0.023423 -0.945545)} Vertex 20603 -0.811 2.82786 -5.52943 {normal=(-0.094705 -0.002275 -0.989809)} Vertex 20604 -1.76631 4.06354 4.80503 {normal=(0.034372 0.116140 0.986339)} Vertex 20605 -1.58989 4.07444 4.81221 {normal=(-0.156909 0.146630 0.972548)} Vertex 20606 -6.099 3.79717 -2.00332 {normal=(-0.869231 0.193209 -0.453111)} Vertex 20607 -6.18285 3.79859 -1.836 {normal=(-0.778206 0.199422 -0.582952)} Vertex 20608 -5.06045 3.87784 -3.51768 {normal=(-0.732468 0.174417 -0.658013)} Vertex 20609 -4.94044 3.88338 -3.64882 {normal=(-0.711250 0.143710 -0.686217)} Vertex 20610 -0.751993 4.12867 4.87771 {normal=(-0.120347 0.154413 0.972902)} Vertex 20611 -2.62134 4.01567 4.7962 {normal=(-0.056299 0.068330 0.975186)} Vertex 20612 -6.44369 3.87753 2.66142 {normal=(-0.896566 0.011524 0.350563)} Vertex 20613 -6.61325 2.76484 0.583629 {normal=(-0.967379 0.021915 -0.140665)} Vertex 20614 -6.34981 3.90645 -0.961093 {normal=(-0.990667 0.055551 -0.118565)} Vertex 20615 -5.5981 3.84351 -2.78809 {normal=(-0.809144 0.181079 -0.540015)} Vertex 20616 -4.25412 3.94338 -4.15495 {normal=(-0.613906 0.083829 -0.778089)} Vertex 20617 -6.04159 0.629042 -1.56407 {normal=(-0.141788 -0.987187 0.039725)} Vertex 20618 -0.797127 0.625431 4.41493 {normal=(0.004058 -0.994380 0.104235)} Vertex 20619 -2.38403 0.60384 4.2108 {normal=(-0.045821 -0.992537 0.098496)} Vertex 20620 -3.93267 0.673366 3.55466 {normal=(-0.175595 -0.970215 0.143011)} Vertex 20621 -5.32225 0.629464 2.2816 {normal=(-0.058026 -0.973545 0.156224)} Vertex 20622 -6.05787 0.65246 0.584448 {normal=(-0.189359 -0.979883 0.026035)} Vertex 20623 -5.18447 0.571009 -3.02573 {normal=(-0.037147 -0.993536 -0.046141)} Vertex 20624 -3.83215 0.64556 -3.94969 {normal=(-0.006995 -0.976951 -0.197020)} Vertex 20625 -2.29676 0.640231 -4.52413 {normal=(-0.078863 -0.987519 -0.130691)} Vertex 20626 -0.818247 0.617678 -4.72784 {normal=(-0.020994 -0.993654 -0.107866)} Vertex 20627 -4.97659 1.18414 3.27392 {normal=(-0.310956 -0.320576 0.882761)} Vertex 20628 -4.80042 1.22352 3.48651 {normal=(-0.839491 -0.087608 0.521442)} Vertex 20629 -6.18551 1.13896 -0.739532 {normal=(-0.948779 -0.022974 0.193415)} Vertex 20630 -6.24381 1.13453 -0.461635 {normal=(-0.906725 0.078637 -0.286945)} Vertex 20631 -3.23221 1.218 -4.38607 {normal=(0.355603 -0.122851 -0.918830)} Vertex 20632 -3.00729 1.20608 -4.52884 {normal=(-0.991540 -0.113705 -0.034847)} Vertex 20633 -3.11101 1.96906 -4.61944 {normal=(-0.984440 -0.155063 -0.081670)} Vertex 20634 -3.34362 1.97529 -4.43751 {normal=(0.276928 -0.026976 -0.959972)} Vertex 20635 -6.23741 1.87917 -0.630659 {normal=(-0.967440 -0.093657 0.059984)} Vertex 20636 -6.2793 1.86904 -0.338375 {normal=(-0.914876 0.002928 -0.337762)} Vertex 20637 -5.00018 1.99817 3.45819 {normal=(-0.188217 -0.256292 0.943278)} Vertex 20638 -4.76491 1.99753 3.64671 {normal=(-0.833879 -0.103127 0.529279)} Vertex 20639 -0.853675 1.77306 -5.47597 {normal=(-0.091653 -0.170607 -0.968893)} Vertex 20640 -2.39262 1.80132 -5.20995 {normal=(-0.315651 -0.139378 -0.919767)} Vertex 20641 -4.33713 1.7651 -4.1901 {normal=(-0.483189 -0.047617 -0.860613)} Vertex 20642 -5.76475 1.52408 -3.10869 {normal=(-0.719943 -0.043368 -0.646600)} Vertex 20643 -6.36738 1.67042 -1.51849 {normal=(-0.973325 -0.098784 0.163496)} Vertex 20644 -6.60506 1.73231 0.353537 {normal=(-0.912315 -0.032790 -0.282312)} Vertex 20645 -6.63271 1.67067 1.95578 {normal=(-0.849850 -0.204563 0.287342)} Vertex 20646 -5.79798 1.83592 3.21391 {normal=(-0.483591 -0.265371 0.774877)} Vertex 20647 -0.821335 1.80104 5.09995 {normal=(-0.101253 -0.126633 0.966905)} Vertex 20648 -2.65051 1.75492 4.9112 {normal=(-0.188787 -0.146102 0.932646)} Vertex 20649 -4.11841 1.86289 4.29467 {normal=(-0.586896 -0.148233 0.756992)} Vertex 20650 -6.29761 0.940978 -1.63631 {normal=(-0.951822 -0.072991 0.202879)} Vertex 20651 -4.18276 1.00732 -4.17217 {normal=(-0.432524 -0.161108 -0.878059)} Vertex 20652 -0.85604 0.969771 -5.24398 {normal=(-0.087210 -0.366199 -0.918864)} Vertex 20653 -6.46774 0.981053 1.37629 {normal=(-0.785186 -0.309449 0.095659)} Vertex 20654 -5.67451 1.03313 2.86863 {normal=(-0.497793 -0.471829 0.663581)} Vertex 20655 -4.0827 1.0725 4.07643 {normal=(-0.585406 -0.253861 0.726492)} Vertex 20656 -5.59697 0.812779 -3.14646 {normal=(-0.632210 -0.207424 -0.730326)} Vertex 20657 -0.810233 0.989837 4.89429 {normal=(-0.041974 -0.341506 0.934898)} Vertex 20658 -2.35071 1.01294 -5.02734 {normal=(-0.310712 -0.336835 -0.873191)} Vertex 20659 -2.52891 0.929459 4.70093 {normal=(-0.236991 -0.354061 0.887634)} Vertex 20660 -7.59739 -18.9066 1.91711 {normal=(-0.468549 -0.200820 0.822065)} Vertex 20661 -9.38361 -18.8672 0.482211 {normal=(-0.760465 -0.098315 0.589368)} Vertex 20662 -10.0587 -18.6227 -4.40627 {normal=(-0.896054 0.191460 -0.349486)} Vertex 20663 -8.46851 -18.6036 -7.21802 {normal=(-0.607064 0.367354 -0.691836)} Vertex 20664 -6.88382 -18.6769 -8.24973 {normal=(-0.426405 0.358148 -0.820021)} Vertex 20665 -4.56401 -18.8117 -8.23031 {normal=(0.328940 0.283715 -0.898922)} Vertex 20666 -1.80438 -18.934 -6.21716 {normal=(0.819335 0.042342 -0.548584)} Vertex 20667 -0.522023 -18.8808 -3.9674 {normal=(0.914990 0.019398 -0.376669)} Vertex 20668 -0.551944 -18.9196 -1.18909 {normal=(0.889486 -0.199153 0.384105)} Vertex 20669 -1.99503 -18.8957 1.05832 {normal=(0.620637 -0.261221 0.680142)} Vertex 20670 -4.61915 -18.914 2.34691 {normal=(0.196469 -0.286530 0.897452)} Vertex 20671 -3.50824 -33.9299 -4.99953 {normal=(0.464314 -0.708269 -0.452835)} Vertex 20672 -4.68409 -33.8897 -5.62806 {normal=(0.065384 -0.732286 -0.620050)} Vertex 20673 -5.61935 -33.8286 -5.55348 {normal=(-0.347117 -0.691986 -0.596949)} Vertex 20674 -6.22208 -33.8022 -5.01681 {normal=(-0.665580 -0.574790 -0.435084)} Vertex 20675 -6.66684 -33.806 -3.95909 {normal=(-0.853459 -0.461311 -0.141357)} Vertex 20676 -6.59652 -33.8557 -2.65231 {normal=(-0.792054 -0.424935 0.314529)} Vertex 20677 -5.91284 -33.9074 -1.79814 {normal=(-0.446926 -0.408312 0.739750)} Vertex 20678 -4.76551 -33.9095 -1.55109 {normal=(0.025660 -0.432029 0.858654)} Vertex 20679 -3.63202 -33.9035 -1.92404 {normal=(0.456177 -0.520037 0.652002)} Vertex 20680 -2.96806 -33.9003 -2.86944 {normal=(0.700507 -0.596803 0.276041)} Vertex 20681 -2.87434 -33.9193 -3.95253 {normal=(0.692239 -0.657037 -0.119270)} Vertex 20682 -3.15569 -32.8953 -5.72907 {normal=(0.585321 -0.364947 -0.631631)} Vertex 20683 -4.68355 -32.8432 -6.54401 {normal=(0.118483 -0.410150 -0.823403)} Vertex 20684 -5.93362 -32.764 -6.4473 {normal=(-0.370666 -0.448146 -0.742500)} Vertex 20685 -6.63243 -32.7297 -5.7087 {normal=(-0.716631 -0.440448 -0.475282)} Vertex 20686 -7.04049 -32.7347 -4.2945 {normal=(-0.895133 -0.370948 -0.134064)} Vertex 20687 -6.99919 -32.7991 -2.65938 {normal=(-0.850730 -0.300792 0.315923)} Vertex 20688 -6.24327 -32.8661 -1.6111 {normal=(-0.498378 -0.242611 0.763165)} Vertex 20689 -4.75949 -32.8689 -1.2743 {normal=(0.036600 -0.205213 0.929993)} Vertex 20690 -3.23836 -32.8612 -1.74139 {normal=(0.541885 -0.240601 0.735185)} Vertex 20691 -2.37924 -32.857 -2.9672 {normal=(0.848953 -0.304628 0.285562)} Vertex 20692 -2.30593 -32.8815 -4.37152 {normal=(0.853140 -0.339199 -0.225355)} Vertex 20693 -3.19229 -31.2942 -5.9238 {normal=(0.611569 0.004692 -0.739624)} Vertex 20694 -4.80838 -31.2393 -6.7827 {normal=(0.149629 0.004224 -0.929220)} Vertex 20695 -6.28451 -31.1558 -6.68077 {normal=(-0.379707 -0.041629 -0.856133)} Vertex 20696 -7.1397 -31.1197 -5.96969 {normal=(-0.766445 -0.122068 -0.547944)} Vertex 20697 -7.53524 -31.125 -4.54657 {normal=(-0.939596 -0.168836 -0.143830)} Vertex 20698 -7.37609 -31.1928 -2.70882 {normal=(-0.868678 -0.145166 0.350061)} Vertex 20699 -6.45061 -31.2634 -1.48956 {normal=(-0.497027 -0.096429 0.801519)} Vertex 20700 -4.8105 -31.2664 -1.18169 {normal=(0.041888 -0.062642 0.957559)} Vertex 20701 -3.09523 -31.2582 -1.72106 {normal=(0.554715 -0.077597 0.774220)} Vertex 20702 -2.0451 -31.2538 -3.01298 {normal=(0.890704 -0.092618 0.274007)} Vertex 20703 -2.07752 -31.2797 -4.49304 {normal=(0.893160 -0.047625 -0.322475)} Vertex 20704 -3.31712 -28.9331 -5.47714 {normal=(0.596626 0.191744 -0.750542)} Vertex 20705 -4.83354 -28.883 -6.26011 {normal=(0.167852 0.233629 -0.917523)} Vertex 20706 -6.1881 -28.807 -6.1672 {normal=(-0.336435 0.230551 -0.873919)} Vertex 20707 -7.09414 -28.774 -5.5744 {normal=(-0.734751 0.163883 -0.600515)} Vertex 20708 -7.63744 -28.7788 -4.3325 {normal=(-0.942104 0.072710 -0.153272)} Vertex 20709 -7.40221 -28.8406 -2.56844 {normal=(-0.852873 0.010844 0.401563)} Vertex 20710 -6.3368 -28.9051 -1.3682 {normal=(-0.457467 -0.015435 0.836919)} Vertex 20711 -4.68214 -28.9078 -1.12089 {normal=(0.062581 -0.031278 0.962488)} Vertex 20712 -2.97206 -28.9003 -1.64592 {normal=(0.551243 -0.035402 0.785163)} Vertex 20713 -2.00176 -28.8963 -2.82363 {normal=(0.885242 0.023805 0.273232)} Vertex 20714 -2.16431 -28.9199 -4.17286 {normal=(0.875027 0.120744 -0.353369)} Vertex 20715 -4.71996 -21.8944 -7.18025 {normal=(0.055847 -0.771816 -0.618056)} Vertex 20716 -6.63104 -21.7854 -7.13536 {normal=(-0.150305 -0.821423 -0.516397)} Vertex 20717 -8.35504 -21.7239 -5.83362 {normal=(-0.570556 -0.804632 -0.107467)} Vertex 20718 -8.55569 -21.7234 -5.50889 {normal=(-0.349173 -0.850462 -0.383139)} Vertex 20719 -6.18787 -21.8491 0.310948 {normal=(0.411687 -0.705874 0.563559)} Vertex 20720 -5.89075 -21.8499 0.352484 {normal=(-0.490658 -0.758200 0.410722)} Vertex 20721 -2.08073 -21.8585 -1.26328 {normal=(0.512644 -0.800751 0.073296)} Vertex 20722 -1.89959 -21.8598 -1.53178 {normal=(0.305941 -0.769296 0.507291)} Vertex 20723 -1.44286 -21.9543 -4.18192 {normal=(0.556872 -0.800695 -0.203736)} Vertex 20724 -2.52002 -21.9761 -5.86418 {normal=(0.489784 -0.787812 -0.362721)} Vertex 20725 -4.72787 -20.7279 -8.1405 {normal=(0.164804 -0.575465 -0.783381)} Vertex 20726 -6.96116 -20.6019 -8.11481 {normal=(-0.423972 -0.447921 -0.782458)} Vertex 20727 -8.46742 -20.5359 -7.22633 {normal=(-0.572375 -0.418708 -0.699604)} Vertex 20728 -10.0215 -20.5226 -4.65224 {normal=(-0.908806 -0.150110 -0.357657)} Vertex 20729 -9.37623 -20.7265 -0.203213 {normal=(-0.731710 -0.336862 0.552058)} Vertex 20730 -7.69445 -20.7404 1.09612 {normal=(-0.506159 -0.407465 0.745969)} Vertex 20731 -4.62731 -20.7528 1.53055 {normal=(0.242394 -0.544527 0.774222)} Vertex 20732 -2.23186 -20.7467 0.383681 {normal=(0.519091 -0.495484 0.638309)} Vertex 20733 -0.777958 -20.7677 -1.82529 {normal=(0.832724 -0.411104 0.310934)} Vertex 20734 -0.777365 -20.7961 -4.33752 {normal=(0.897737 -0.175081 -0.375443)} Vertex 20735 -2.02335 -20.8362 -6.3569 {normal=(0.793582 -0.200050 -0.553869)} Vertex 20736 -4.1697 -16.6258 -7.2305 {normal=(0.367572 0.278217 -0.883134)} Vertex 20737 -6.40205 -16.4878 -7.29674 {normal=(-0.406792 0.475444 -0.771034)} Vertex 20738 -7.9231 -16.424 -6.27491 {normal=(-0.566963 0.486750 -0.654539)} Vertex 20739 -9.38686 -16.4543 -3.6291 {normal=(-0.837942 0.429675 -0.332034)} Vertex 20740 -8.80735 -16.6497 1.03113 {normal=(-0.755706 0.117506 0.605622)} Vertex 20741 -7.05093 -16.721 2.41761 {normal=(-0.393780 -0.012830 0.874704)} Vertex 20742 -4.44842 -16.7228 2.77898 {normal=(0.122734 -0.120587 0.942790)} Vertex 20743 -1.88831 -16.7034 1.56821 {normal=(0.620453 -0.165510 0.704686)} Vertex 20744 -0.465696 -16.7279 -0.534167 {normal=(0.906131 -0.137731 0.368057)} Vertex 20745 -0.473059 -16.6962 -3.1877 {normal=(0.920887 0.114696 -0.362659)} Vertex 20746 -1.71047 -16.7393 -5.36534 {normal=(0.836917 0.155015 -0.515117)} Vertex 20747 -0.552937 -14.529 -2.60225 {normal=(0.926827 0.106755 -0.354410)} Vertex 20748 -0.323007 -13.2879 -2.75151 {normal=(0.303759 -0.942143 -0.129674)} Vertex 20749 -7.69488 -11.9015 -2.12047 {normal=(-0.859154 0.289409 -0.354402)} Vertex 20750 -7.44249 -9.96739 -1.63748 {normal=(-0.914718 0.230347 -0.266919)} Vertex 20751 -1.51517 -14.5461 1.98028 {normal=(0.608984 -0.128097 0.736820)} Vertex 20752 -4.11281 -8.66464 -5.26734 {normal=(-0.475078 0.225965 -0.820513)} Vertex 20753 -0.840618 -10.9963 -5.8909 {normal=(0.052937 -0.042207 -0.993428)} Vertex 20754 -0.822203 -8.86275 -5.91685 {normal=(-0.004496 0.113389 -0.985072)} Vertex 20755 -4.17234 -10.9143 -5.76174 {normal=(-0.453384 0.193707 -0.846465)} Vertex 20756 -2.52747 -11.0022 -6.17591 {normal=(-0.090084 0.093690 -0.966617)} Vertex 20757 -6.16681 -5.08259 -1.55957 {normal=(-0.904213 0.271513 -0.144614)} Vertex 20758 -6.0375 -4.94082 0.554979 {normal=(-0.909273 0.251998 0.168234)} Vertex 20759 -6.05912 -12.1872 2.69989 {normal=(-0.411223 0.001129 0.871888)} Vertex 20760 -2.65182 -12.1968 2.91407 {normal=(0.175921 -0.210086 0.953197)} Vertex 20761 -3.91147 -5.02357 3.26027 {normal=(-0.291965 0.090127 0.939265)} Vertex 20762 -0.355227 -11.7968 2.65113 {normal=(0.532502 -0.616094 0.566046)} Vertex 20763 -0.705595 -5.10048 4.0928 {normal=(-0.041196 -0.023708 0.994323)} Vertex 20764 -2.64628 -13.2417 -5.85868 {normal=(0.578699 0.071781 -0.810109)} Vertex 20765 -3.34203 -14.6754 -6.2946 {normal=(0.473870 0.129127 -0.861336)} Vertex 20766 -4.06307 -12.2266 3.04411 {normal=(-0.055676 -0.120129 0.977435)} Vertex 20767 -1.52009 -14.6463 -4.58955 {normal=(0.872869 0.085548 -0.469297)} Vertex 20768 -5.40158 -14.5066 -6.4157 {normal=(-0.429769 0.456513 -0.770487)} Vertex 20769 -8.08196 -11.9346 0.309053 {normal=(-0.930684 0.179899 0.254800)} Vertex 20770 -0.181841 -12.505 1.31632 {normal=(0.739675 -0.526428 0.342981)} Vertex 20771 -2.37238 -5.57927 -4.88344 {normal=(-0.218286 0.306648 -0.917419)} Vertex 20772 -5.44712 -5.36429 -3.00432 {normal=(-0.697307 0.262883 -0.619701)} Vertex 20773 -6.1351 -10.1345 2.65233 {normal=(-0.539074 0.061387 0.797116)} Vertex 20774 -6.22691 -12.2594 -4.55102 {normal=(-0.663313 0.318882 -0.644944)} Vertex 20775 -5.86587 -7.64762 2.36795 {normal=(-0.646448 0.184345 0.697510)} Vertex 20776 -6.17176 -10.3047 -3.87747 {normal=(-0.725520 0.226760 -0.613078)} Vertex 20777 -4.4494 -12.8045 -6.07542 {normal=(-0.451580 0.301062 -0.827229)} Vertex 20778 -0.816748 -12.425 -5.1741 {normal=(0.315040 -0.623607 -0.715195)} Vertex 20779 -6.06096 -8.16613 -3.36699 {normal=(-0.732105 0.237186 -0.594462)} Vertex 20780 -2.48722 -8.75762 -5.85545 {normal=(-0.149097 0.185742 -0.954687)} Vertex 20781 -0.794903 -5.58122 -5.10297 {normal=(-0.051921 0.291986 -0.950830)} Vertex 20782 -3.75427 -5.58843 -4.37798 {normal=(-0.479117 0.305030 -0.804776)} Vertex 20783 -6.89989 -7.77356 -1.58695 {normal=(-0.915680 0.254292 -0.202327)} Vertex 20784 -6.74243 -7.6317 1.01953 {normal=(-0.876227 0.261956 0.304073)} Vertex 20785 -5.36664 -4.93931 1.96253 {normal=(-0.697650 0.215926 0.634330)} Vertex 20786 -0.069102 -13.0861 -0.599957 {normal=(0.903551 -0.389094 0.146352)} Vertex 20787 -0.44204 -10.5503 3.36694 {normal=(-0.068525 -0.330234 0.935313)} Vertex 20788 -4.19681 -7.79225 3.42999 {normal=(-0.255738 0.043231 0.947968)} Vertex 20789 -2.25913 -7.9509 3.86969 {normal=(-0.123147 -0.100949 0.953971)} Vertex 20790 -0.561759 -8.08463 3.93642 {normal=(-0.091532 -0.159836 0.973460)} Vertex 20791 -2.28753 -5.06102 3.91179 {normal=(-0.295895 0.024020 0.930285)} Vertex 20792 -0.297577 -14.4094 -0.262428 {normal=(0.917993 -0.229725 0.264689)} Vertex 20793 -2.21159 -13.8449 2.51853 {normal=(0.326435 -0.107702 0.930731)} Vertex 20794 -4.16043 -14.3906 2.88674 {normal=(0.067305 -0.079357 0.971518)} Vertex 20795 -6.35812 -14.4111 2.63195 {normal=(-0.365293 0.030722 0.889773)} Vertex 20796 -7.94164 -14.3253 1.45852 {normal=(-0.740798 0.142945 0.615561)} Vertex 20797 -8.33159 -14.1502 -2.8976 {normal=(-0.811135 0.420336 -0.387908)} Vertex 20798 -6.95521 -14.2715 -5.26172 {normal=(-0.581945 0.473163 -0.645056)} Vertex 20799 -5.51901 3.89818 3.74212 {normal=(-0.484930 -0.155452 0.827859)} Vertex 20800 -4.08585 3.9483 4.44551 {normal=(-0.425743 -0.008079 0.874106)} Vertex 20801 -0.74856 3.96786 -5.49142 {normal=(-0.096136 0.045078 -0.989579)} Vertex 20802 -2.49761 3.96688 -5.07415 {normal=(-0.282080 0.066674 -0.952365)} Vertex 20803 4.37632 6.847 -5.11241 {normal=(0.289173 -0.245966 -0.890391)} Vertex 20804 6.25124 9.01903 -3.91517 {normal=(0.935036 -0.152176 -0.320236)} Vertex 20805 6.79349 8.38057 -2.02858 {normal=(0.935031 -0.152176 -0.320251)} Vertex 20806 7.50043 9.38598 -0.442105 {normal=(0.935057 -0.152139 -0.320192)} Vertex 20807 7.84744 11.282 -0.329666 {normal=(0.935048 -0.152160 -0.320209)} Vertex 20808 7.65733 12.6321 -1.52635 {normal=(0.935042 -0.152171 -0.320221)} Vertex 20809 3.62423 11.607 -5.47595 {normal=(0.085820 0.263948 -0.952447)} Vertex 20810 -4.85029 6.6578 -4.79937 {normal=(-0.289663 -0.352579 -0.838982)} Vertex 20811 -7.86773 10.3721 0.161975 {normal=(-0.935040 -0.152167 -0.320226)} Vertex 20812 -7.30092 8.76034 -0.72736 {normal=(-0.935040 -0.152154 -0.320234)} Vertex 20813 -6.58763 8.55035 -2.71019 {normal=(-0.935041 -0.152168 -0.320224)} Vertex 20814 -6.33851 9.87753 -4.06829 {normal=(-0.935040 -0.152171 -0.320223)} Vertex 20815 -6.74302 11.863 -3.83064 {normal=(-0.935041 -0.152177 -0.320220)} Vertex 20816 -4.01938 12.0707 -5.29074 {normal=(-0.131978 0.294506 -0.937047)} Vertex 20817 2.54773 4.62678 -5.10205 {normal=(0.260210 -0.543213 -0.772668)} Vertex 20818 0.722052 4.63396 -5.57799 {normal=(0.086559 -0.554910 -0.795802)} Vertex 20819 4.08831 4.56161 4.57036 {normal=(0.143888 -0.685355 0.692353)} Vertex 20820 5.50029 4.5073 3.97376 {normal=(0.325741 -0.758613 0.526947)} Vertex 20821 8.12115 12.359 -0.332699 {normal=(0.174440 -0.772727 -0.594417)} Vertex 20822 8.27346 11.4814 0.529121 {normal=(0.146838 -0.523384 -0.814646)} Vertex 20823 8.22128 10.1416 1.01347 {normal=(0.161559 -0.144800 -0.952975)} Vertex 20824 7.94717 8.72546 0.886046 {normal=(0.225960 0.224721 -0.931668)} Vertex 20825 7.56979 7.63165 0.303495 {normal=(0.330731 0.515148 -0.769654)} Vertex 20826 7.07105 6.86933 -0.790556 {normal=(0.465609 0.714474 -0.480194)} Vertex 20827 6.5109 6.68278 -2.33718 {normal=(0.612769 0.752865 -0.097361)} Vertex 20828 6.11926 7.20265 -3.72781 {normal=(0.720926 0.612666 0.261152)} Vertex 20829 5.96802 8.1641 -4.62632 {normal=(0.766425 0.355215 0.505875)} Vertex 20830 6.00477 9.37917 -5.09641 {normal=(0.755765 0.027547 0.628199)} Vertex 20831 6.26356 10.7965 -5.01429 {normal=(0.683474 -0.351039 0.603282)} Vertex 20832 6.78986 12.1979 -4.14348 {normal=(0.548693 -0.701163 0.392056)} Vertex 20833 7.38593 12.9648 -2.76739 {normal=(0.387120 -0.894367 0.034317)} Vertex 20834 7.83504 12.8844 -1.41781 {normal=(0.252726 -0.894565 -0.325830)} Vertex 20835 8.26313 12.4501 -0.298646 {normal=(0.869609 -0.286028 -0.401557)} Vertex 20836 8.42194 11.535 0.599965 {normal=(0.864282 -0.236702 -0.442133)} Vertex 20837 8.36754 10.138 1.105 {normal=(0.867122 -0.163324 -0.468807)} Vertex 20838 8.08173 8.66138 0.972128 {normal=(0.879375 -0.093106 -0.465740)} Vertex 20839 7.69186 7.52725 0.372295 {normal=(0.899417 -0.037505 -0.434084)} Vertex 20840 7.17183 6.73239 -0.76846 {normal=(0.924704 -0.000258 -0.378688)} Vertex 20841 6.58414 6.5315 -2.3887 {normal=(0.951207 0.004685 -0.305726)} Vertex 20842 6.17578 7.07356 -3.83869 {normal=(0.970122 -0.023185 -0.238896)} Vertex 20843 6.01808 8.07606 -4.77556 {normal=(0.977841 -0.071174 -0.194258)} Vertex 20844 6.05641 9.34299 -5.26573 {normal=(0.975727 -0.131338 -0.172001)} Vertex 20845 6.32624 10.8208 -5.18009 {normal=(0.962809 -0.201041 -0.176166)} Vertex 20846 6.87501 12.2821 -4.27211 {normal=(0.938719 -0.266600 -0.214233)} Vertex 20847 7.49652 13.0817 -2.83727 {normal=(0.909347 -0.304425 -0.280476)} Vertex 20848 7.96481 12.9979 -1.43008 {normal=(0.884424 -0.307622 -0.349383)} Vertex 20849 8.28011 12.5806 -0.207995 {normal=(0.921602 0.365184 0.054228)} Vertex 20850 8.44651 11.6217 0.733546 {normal=(0.947572 0.190420 0.201766)} Vertex 20851 8.3895 10.1579 1.2627 {normal=(0.937792 -0.071789 0.297483)} Vertex 20852 8.09004 8.61082 1.12349 {normal=(0.891198 -0.323842 0.285262)} Vertex 20853 7.68562 7.42964 0.503489 {normal=(0.820935 -0.524468 0.171505)} Vertex 20854 7.14074 6.5968 -0.691762 {normal=(0.732291 -0.662041 -0.027698)} Vertex 20855 6.52091 6.37919 -2.39789 {normal=(0.644690 -0.686001 -0.292334)} Vertex 20856 6.09304 6.94714 -3.91715 {normal=(0.582254 -0.588773 -0.540210)} Vertex 20857 5.92781 7.99754 -4.89878 {normal=(0.556721 -0.413841 -0.706797)} Vertex 20858 5.96797 9.325 -5.41236 {normal=(0.564809 -0.192361 -0.789471)} Vertex 20859 6.25069 10.8734 -5.32264 {normal=(0.610079 0.064973 -0.772653)} Vertex 20860 6.82567 12.4045 -4.37128 {normal=(0.693502 0.304188 -0.629712)} Vertex 20861 7.47688 13.2423 -2.8679 {normal=(0.794298 0.439018 -0.383924)} Vertex 20862 7.96754 13.1546 -1.39348 {normal=(0.874491 0.445484 -0.132430)} Vertex 20863 8.19843 12.7179 -0.090175 {normal=(0.868833 0.459085 0.133882)} Vertex 20864 8.37189 11.7183 0.89135 {normal=(0.900137 0.255844 0.307049)} Vertex 20865 8.31247 10.1924 1.44298 {normal=(0.888783 -0.049416 0.418353)} Vertex 20866 8.00029 8.57959 1.29785 {normal=(0.833619 -0.345166 0.403343)} Vertex 20867 7.5823 7.35459 0.659071 {normal=(0.753686 -0.576715 0.274619)} Vertex 20868 7.01429 6.48639 -0.58694 {normal=(0.650027 -0.737499 0.040598)} Vertex 20869 6.36452 6.25319 -2.37306 {normal=(0.545081 -0.769446 -0.275491)} Vertex 20870 5.91849 6.84527 -3.95685 {normal=(0.472017 -0.656160 -0.565788)} Vertex 20871 5.74624 7.94026 -4.98016 {normal=(0.442394 -0.451777 -0.759929)} Vertex 20872 5.7881 9.32409 -5.51555 {normal=(0.451817 -0.192961 -0.856880)} Vertex 20873 6.08283 10.9383 -5.42202 {normal=(0.504573 0.107485 -0.837684)} Vertex 20874 6.68223 12.5344 -4.43026 {normal=(0.602779 0.389255 -0.668904)} Vertex 20875 7.36109 13.4078 -2.86303 {normal=(0.720705 0.548427 -0.380905)} Vertex 20876 7.87258 13.3163 -1.326 {normal=(0.813659 0.554332 -0.086573)} Vertex 20877 8.0781 12.8008 -0.003111 {normal=(0.297541 0.782787 0.521824)} Vertex 20878 8.25517 11.7804 0.998822 {normal=(0.303239 0.510280 0.773148)} Vertex 20879 8.19452 10.2228 1.56192 {normal=(0.332590 0.118153 0.908308)} Vertex 20880 7.87585 8.57644 1.41377 {normal=(0.403229 -0.266406 0.825817)} Vertex 20881 7.45094 7.32908 0.765407 {normal=(0.423905 -0.579625 0.573402)} Vertex 20882 6.87112 6.44283 -0.506511 {normal=(0.342540 -0.786581 0.214870)} Vertex 20883 6.20607 6.20168 -2.33346 {normal=(0.188455 -0.842318 -0.197295)} Vertex 20884 5.75076 6.80607 -3.95017 {normal=(0.029364 -0.732259 -0.556976)} Vertex 20885 5.57493 7.92383 -4.99477 {normal=(-0.110371 -0.469908 -0.813079)} Vertex 20886 5.61766 9.33642 -5.54129 {normal=(-0.188363 -0.110802 -0.944183)} Vertex 20887 5.91852 10.9841 -5.44581 {normal=(-0.137644 0.301248 -0.906561)} Vertex 20888 6.53039 12.6135 -4.43343 {normal=(0.007394 0.692894 -0.659694)} Vertex 20889 7.22336 13.505 -2.83362 {normal=(0.169391 0.916786 -0.234205)} Vertex 20890 7.74548 13.4116 -1.26463 {normal=(0.266465 0.919997 0.199411)} Vertex 20891 3.21665 13.1333 -4.43553 {normal=(-0.467890 0.839767 0.187912)} Vertex 20892 3.30668 13.1964 -4.67433 {normal=(-0.360227 0.910883 -0.024730)} Vertex 20893 3.45151 13.1059 -4.91333 {normal=(-0.020645 0.674163 -0.736905)} Vertex 20894 3.53053 12.912 -5.03854 {normal=(0.169128 0.298631 -0.931525)} Vertex 20895 4.96965 13.6666 0.76161 {normal=(-0.876225 0.461386 0.134593)} Vertex 20896 5.29362 14.5626 -0.742512 {normal=(-0.817139 0.543108 0.092109)} Vertex 20897 4.92208 14.5653 -2.73627 {normal=(-0.730993 0.634812 0.113375)} Vertex 20898 3.89373 13.6983 -4.07132 {normal=(-0.640357 0.716922 0.176945)} Vertex 20899 1.53299 13.0508 -4.48587 {normal=(-0.004271 0.709624 0.704554)} Vertex 20900 0.629443 6.80548 4.69403 {normal=(0.001681 0.986648 -0.162849)} Vertex 20901 1.651 7.33403 4.72185 {normal=(-0.813134 0.580921 0.032895)} Vertex 20902 2.74455 9.00838 4.04523 {normal=(-0.825537 0.562650 0.009330)} Vertex 20903 3.94162 11.0591 2.70364 {normal=(-0.870069 0.485017 0.043648)} Vertex 20904 4.58249 12.5397 1.753 {normal=(-0.883079 0.447814 0.135738)} Vertex 20905 4.24633 10.9566 2.95752 {normal=(0.569976 0.257117 0.772520)} Vertex 20906 3.01284 8.87713 4.32362 {normal=(0.436944 0.291419 0.849132)} Vertex 20907 5.49912 14.7024 -0.716162 {normal=(0.278899 0.828890 0.473777)} Vertex 20908 5.16352 13.768 0.843783 {normal=(0.209095 0.706382 0.662053)} Vertex 20909 4.75683 12.6208 1.87827 {normal=(0.041367 0.618839 0.776947)} Vertex 20910 4.08496 11.1236 2.92791 {normal=(-0.151564 0.610512 0.771744)} Vertex 20911 2.87271 9.04589 4.24104 {normal=(-0.373286 0.589881 0.700619)} Vertex 20912 1.72081 7.31496 4.95904 {normal=(-0.586812 0.516201 0.615007)} Vertex 20913 0.65772 6.77809 4.93002 {normal=(0.002877 0.863204 0.504838)} Vertex 20914 5.34188 13.6007 0.787795 {normal=(0.791698 0.324977 0.507933)} Vertex 20915 4.92951 12.4531 1.86316 {normal=(0.719965 0.247342 0.641400)} Vertex 20916 1.83771 7.13993 5.07084 {normal=(-0.126620 0.104461 0.985220)} Vertex 20917 0.711248 6.59895 5.04217 {normal=(-0.042836 0.157514 0.985287)} Vertex 20918 1.56846 13.151 -4.72689 {normal=(-0.103668 0.985826 -0.045769)} Vertex 20919 4.01862 13.8087 -4.24487 {normal=(-0.525208 0.833078 -0.090303)} Vertex 20920 5.0975 14.7309 -2.79599 {normal=(-0.480468 0.837411 -0.130632)} Vertex 20921 5.79509 14.3737 -0.852589 {normal=(0.975280 -0.173777 0.126638)} Vertex 20922 5.46252 14.451 -2.91393 {normal=(0.692064 0.402182 -0.510672)} Vertex 20923 4.41376 13.5607 -4.49854 {normal=(0.436621 0.336852 -0.800876)} Vertex 20924 1.58035 12.7894 -5.13085 {normal=(0.037389 0.287060 -0.955778)} Vertex 20925 5.39297 13.3937 0.654191 {normal=(0.964635 -0.248293 0.079966)} Vertex 20926 5.70541 14.5699 -0.781287 {normal=(0.779654 0.472494 0.401379)} Vertex 20927 5.30519 14.6406 -2.90241 {normal=(0.335980 0.740428 -0.563501)} Vertex 20928 4.22522 13.7351 -4.43946 {normal=(0.106837 0.676556 -0.714781)} Vertex 20929 1.59839 13.0299 -4.97417 {normal=(-0.011239 0.719138 -0.694484)} Vertex 20930 0.771698 6.39654 5.00218 {normal=(-0.001051 -0.648680 0.761060)} Vertex 20931 1.95249 6.93881 5.03138 {normal=(0.579954 -0.354274 0.719902)} Vertex 20932 3.10245 8.67156 4.26944 {normal=(0.787798 -0.282791 0.518533)} Vertex 20933 4.31794 10.7482 2.86928 {normal=(0.915677 -0.264411 0.282238)} Vertex 20934 4.99309 12.2458 1.74827 {normal=(0.951229 -0.277596 0.119319)} Vertex 20935 7.4038 12.9112 0.185411 {normal=(0.289001 0.733858 0.584198)} Vertex 20936 7.22417 13.6278 -1.17828 {normal=(0.363916 0.873314 0.207722)} Vertex 20937 6.74524 13.71 -2.87283 {normal=(0.336108 0.844088 -0.291284)} Vertex 20938 5.94083 12.7878 -4.49456 {normal=(0.187449 0.612232 -0.720532)} Vertex 20939 5.18464 11.157 -5.4725 {normal=(0.055225 0.274609 -0.937031)} Vertex 20940 5.22279 12.1145 1.58846 {normal=(0.341188 0.521739 0.779032)} Vertex 20941 6.27612 14.0592 -0.997141 {normal=(0.465733 0.784231 0.201315)} Vertex 20942 0.839028 6.71511 -5.9162 {normal=(0.072248 -0.075391 -0.990457)} Vertex 20943 2.66939 6.71095 -5.61094 {normal=(0.214179 -0.145327 -0.959703)} Vertex 20944 5.41093 6.09846 -3.87111 {normal=(0.538711 -0.475663 -0.617661)} Vertex 20945 6.05962 5.79603 -2.33854 {normal=(0.719197 -0.466314 -0.370462)} Vertex 20946 3.9688 5.04581 -4.67403 {normal=(0.443747 -0.343180 -0.813949)} Vertex 20947 4.72168 9.27476 -5.66313 {normal=(0.059095 -0.062806 -0.975644)} Vertex 20948 4.37759 8.57649 3.95847 {normal=(0.250175 0.416158 0.865739)} Vertex 20949 4.8003 10.6262 2.62326 {normal=(0.326210 0.475819 0.815589)} Vertex 20950 7.13525 5.98334 1.45257 {normal=(0.902946 -0.315004 0.103350)} Vertex 20951 6.92115 5.77422 3.3119 {normal=(0.828022 -0.196105 0.422876)} Vertex 20952 5.83736 5.70275 4.42338 {normal=(0.508227 -0.138355 0.799985)} Vertex 20953 4.13518 5.73702 4.97745 {normal=(0.176258 -0.073959 0.960551)} Vertex 20954 2.38518 5.81303 5.02873 {normal=(-0.007717 -0.029595 0.995882)} Vertex 20955 0.788 5.91017 4.9384 {normal=(-0.025601 -0.003600 0.999109)} Vertex 20956 7.37637 7.11973 1.70231 {normal=(0.830694 -0.269711 0.365185)} Vertex 20957 7.04093 6.82116 3.24763 {normal=(0.815027 0.043261 0.496947)} Vertex 20958 5.93029 6.76374 4.27176 {normal=(0.501801 0.172393 0.807134)} Vertex 20959 4.20938 6.79725 4.86114 {normal=(0.195928 0.204572 0.938452)} Vertex 20960 2.63333 6.83434 5.01252 {normal=(0.011336 0.159125 0.975731)} Vertex 20961 6.37817 4.59025 -0.897268 {normal=(0.847277 -0.442735 -0.246447)} Vertex 20962 6.32226 10.7879 -4.54838 {normal=(0.935039 -0.152172 -0.320227)} Vertex 20963 0.73303 4.86332 4.86883 {normal=(-0.015007 -0.444851 0.880265)} Vertex 20964 5.67993 4.91049 4.22526 {normal=(0.453553 -0.489856 0.677642)} Vertex 20965 5.84604 8.54717 3.43808 {normal=(0.443501 0.388515 0.789493)} Vertex 20966 5.75367 10.5522 2.26985 {normal=(0.377502 0.458063 0.801633)} Vertex 20967 7.5067 8.54766 1.86445 {normal=(0.649168 -0.019215 0.673511)} Vertex 20968 6.54111 5.04425 -0.772035 {normal=(0.917901 -0.264396 -0.266651)} Vertex 20969 6.71182 4.96109 3.08012 {normal=(0.750203 -0.481185 0.321567)} Vertex 20970 4.10087 4.95773 4.81769 {normal=(0.166672 -0.401480 0.863351)} Vertex 20971 5.83455 5.04448 -2.50961 {normal=(0.836827 -0.281797 -0.439043)} Vertex 20972 4.34432 4.6092 -4.1527 {normal=(0.491910 -0.554505 -0.641536)} Vertex 20973 5.60664 4.58174 -2.68033 {normal=(0.753170 -0.438594 -0.465868)} Vertex 20974 2.60231 5.05218 -5.21437 {normal=(0.268685 -0.287575 -0.907584)} Vertex 20975 4.94501 13.2176 -4.53188 {normal=(0.321464 0.494828 -0.776376)} Vertex 20976 7.54523 10.2882 1.6668 {normal=(0.375665 0.238382 0.871145)} Vertex 20977 7.51834 11.8021 1.12171 {normal=(0.250885 0.495266 0.813269)} Vertex 20978 6.88792 5.0314 1.18969 {normal=(0.901948 -0.373050 -0.043115)} Vertex 20979 6.50125 4.55792 2.82016 {normal=(0.599499 -0.744600 0.188102)} Vertex 20980 2.49205 4.71789 4.84412 {normal=(0.007259 -0.565759 0.801103)} Vertex 20981 0.76511 5.24137 4.94453 {normal=(-0.019009 -0.157488 0.976079)} Vertex 20982 2.39768 5.09749 4.98174 {normal=(0.007149 -0.259968 0.943592)} Vertex 20983 6.86178 8.51768 2.72489 {normal=(0.653575 0.258894 0.656644)} Vertex 20984 6.66865 4.61394 0.935092 {normal=(0.786322 -0.588644 -0.071695)} Vertex 20985 6.17306 13.1416 0.442948 {normal=(0.301529 0.681935 0.644031)} Vertex 20986 6.58776 10.4284 1.92322 {normal=(0.410371 0.381389 0.815870)} Vertex 20987 6.72468 5.91685 -0.556203 {normal=(0.822811 -0.427511 -0.106673)} Vertex 20988 4.81001 5.04426 -3.98097 {normal=(0.652158 -0.355099 -0.640602)} Vertex 20989 2.98038 9.39655 -5.863 {normal=(0.115491 0.029415 -0.978983)} Vertex 20990 5.91343 14.1283 -2.91224 {normal=(0.510287 0.689286 -0.388738)} Vertex 20991 1.36799 11.8988 -5.43976 {normal=(0.018018 0.270009 -0.961747)} Vertex 20992 0.762365 5.05616 -5.66807 {normal=(0.093386 -0.246258 -0.949381)} Vertex 20993 1.03667 9.59328 -5.94484 {normal=(0.033892 0.095979 -0.984243)} Vertex 20994 -2.54773 4.62678 -5.10205 {normal=(-0.260211 -0.543213 -0.772668)} Vertex 20995 -0.722052 4.63396 -5.57799 {normal=(-0.086559 -0.554910 -0.795802)} Vertex 20996 -4.08831 4.56161 4.57036 {normal=(-0.143888 -0.685356 0.692353)} Vertex 20997 -5.50028 4.5073 3.97376 {normal=(-0.325741 -0.758613 0.526947)} Vertex 20998 -8.12115 12.359 -0.332699 {normal=(-0.174440 -0.772727 -0.594417)} Vertex 20999 -8.27346 11.4814 0.529121 {normal=(-0.146838 -0.523384 -0.814646)} Vertex 21000 -8.22128 10.1416 1.01347 {normal=(-0.161559 -0.144800 -0.952975)} Vertex 21001 -7.94717 8.72546 0.886046 {normal=(-0.225960 0.224721 -0.931668)} Vertex 21002 -7.56979 7.63165 0.303495 {normal=(-0.330732 0.515148 -0.769654)} Vertex 21003 -7.07105 6.86933 -0.790556 {normal=(-0.465610 0.714474 -0.480194)} Vertex 21004 -6.51089 6.68278 -2.33718 {normal=(-0.612769 0.752865 -0.097361)} Vertex 21005 -6.11926 7.20265 -3.72781 {normal=(-0.720926 0.612666 0.261151)} Vertex 21006 -5.96802 8.1641 -4.62632 {normal=(-0.766425 0.355215 0.505875)} Vertex 21007 -6.00477 9.37917 -5.09641 {normal=(-0.755765 0.027547 0.628199)} Vertex 21008 -6.26356 10.7965 -5.01429 {normal=(-0.683474 -0.351039 0.603282)} Vertex 21009 -6.78986 12.1979 -4.14348 {normal=(-0.548694 -0.701163 0.392055)} Vertex 21010 -7.38593 12.9648 -2.76739 {normal=(-0.387120 -0.894367 0.034318)} Vertex 21011 -7.83504 12.8844 -1.41781 {normal=(-0.252726 -0.894565 -0.325830)} Vertex 21012 -8.26313 12.4501 -0.298646 {normal=(-0.869609 -0.286028 -0.401557)} Vertex 21013 -8.42195 11.535 0.599965 {normal=(-0.864282 -0.236702 -0.442134)} Vertex 21014 -8.36754 10.138 1.105 {normal=(-0.867123 -0.163324 -0.468808)} Vertex 21015 -8.08173 8.66138 0.972128 {normal=(-0.879375 -0.093106 -0.465740)} Vertex 21016 -7.69186 7.52725 0.372295 {normal=(-0.899417 -0.037505 -0.434084)} Vertex 21017 -7.17183 6.73239 -0.76846 {normal=(-0.924704 -0.000258 -0.378689)} Vertex 21018 -6.58413 6.5315 -2.3887 {normal=(-0.951207 0.004685 -0.305726)} Vertex 21019 -6.17578 7.07356 -3.83869 {normal=(-0.970122 -0.023185 -0.238896)} Vertex 21020 -6.01808 8.07606 -4.77556 {normal=(-0.977841 -0.071174 -0.194258)} Vertex 21021 -6.05641 9.34299 -5.26573 {normal=(-0.975727 -0.131338 -0.172001)} Vertex 21022 -6.32624 10.8208 -5.18009 {normal=(-0.962809 -0.201041 -0.176166)} Vertex 21023 -6.875 12.2821 -4.27211 {normal=(-0.938719 -0.266600 -0.214233)} Vertex 21024 -7.49652 13.0817 -2.83727 {normal=(-0.909347 -0.304425 -0.280476)} Vertex 21025 -7.96481 12.9979 -1.43008 {normal=(-0.884424 -0.307623 -0.349383)} Vertex 21026 -8.28011 12.5806 -0.207995 {normal=(-0.921602 0.365184 0.054228)} Vertex 21027 -8.44651 11.6217 0.733546 {normal=(-0.947572 0.190420 0.201766)} Vertex 21028 -8.3895 10.1579 1.2627 {normal=(-0.937792 -0.071789 0.297483)} Vertex 21029 -8.09004 8.61082 1.12349 {normal=(-0.891198 -0.323842 0.285262)} Vertex 21030 -7.68562 7.42964 0.503489 {normal=(-0.820935 -0.524467 0.171505)} Vertex 21031 -7.14074 6.5968 -0.691762 {normal=(-0.732291 -0.662041 -0.027698)} Vertex 21032 -6.52091 6.37919 -2.39789 {normal=(-0.644690 -0.686001 -0.292333)} Vertex 21033 -6.09304 6.94714 -3.91715 {normal=(-0.582254 -0.588773 -0.540210)} Vertex 21034 -5.92781 7.99753 -4.89878 {normal=(-0.556721 -0.413841 -0.706797)} Vertex 21035 -5.96797 9.325 -5.41236 {normal=(-0.564809 -0.192361 -0.789470)} Vertex 21036 -6.25069 10.8734 -5.32264 {normal=(-0.610079 0.064973 -0.772653)} Vertex 21037 -6.82567 12.4045 -4.37128 {normal=(-0.693502 0.304189 -0.629712)} Vertex 21038 -7.47688 13.2423 -2.8679 {normal=(-0.794298 0.439018 -0.383924)} Vertex 21039 -7.96754 13.1546 -1.39348 {normal=(-0.874491 0.445484 -0.132430)} Vertex 21040 -8.19843 12.7179 -0.090175 {normal=(-0.868832 0.459085 0.133882)} Vertex 21041 -8.37189 11.7183 0.89135 {normal=(-0.900137 0.255844 0.307049)} Vertex 21042 -8.31247 10.1924 1.44298 {normal=(-0.888783 -0.049416 0.418353)} Vertex 21043 -8.00029 8.57959 1.29785 {normal=(-0.833619 -0.345166 0.403343)} Vertex 21044 -7.5823 7.35459 0.659071 {normal=(-0.753686 -0.576715 0.274619)} Vertex 21045 -7.01429 6.48639 -0.586941 {normal=(-0.650027 -0.737499 0.040598)} Vertex 21046 -6.36452 6.25319 -2.37306 {normal=(-0.545081 -0.769446 -0.275491)} Vertex 21047 -5.91849 6.84527 -3.95685 {normal=(-0.472017 -0.656161 -0.565788)} Vertex 21048 -5.74624 7.94026 -4.98016 {normal=(-0.442394 -0.451777 -0.759929)} Vertex 21049 -5.7881 9.32409 -5.51555 {normal=(-0.451817 -0.192961 -0.856880)} Vertex 21050 -6.08283 10.9383 -5.42202 {normal=(-0.504573 0.107486 -0.837684)} Vertex 21051 -6.68223 12.5344 -4.43026 {normal=(-0.602779 0.389255 -0.668904)} Vertex 21052 -7.36109 13.4078 -2.86303 {normal=(-0.720705 0.548427 -0.380905)} Vertex 21053 -7.87259 13.3163 -1.326 {normal=(-0.813659 0.554332 -0.086573)} Vertex 21054 -8.0781 12.8008 -0.003111 {normal=(-0.297541 0.782787 0.521824)} Vertex 21055 -8.25517 11.7805 0.998822 {normal=(-0.303238 0.510281 0.773148)} Vertex 21056 -8.19451 10.2228 1.56192 {normal=(-0.332589 0.118153 0.908308)} Vertex 21057 -7.87585 8.57644 1.41377 {normal=(-0.403229 -0.266406 0.825817)} Vertex 21058 -7.45093 7.32909 0.765407 {normal=(-0.423905 -0.579625 0.573402)} Vertex 21059 -6.87111 6.44283 -0.506511 {normal=(-0.342540 -0.786581 0.214870)} Vertex 21060 -6.20607 6.20168 -2.33347 {normal=(-0.188455 -0.842318 -0.197295)} Vertex 21061 -5.75076 6.80607 -3.95017 {normal=(-0.008056 -0.727701 -0.566589)} Vertex 21062 -5.57493 7.92383 -4.99477 {normal=(0.133974 -0.464586 -0.822864)} Vertex 21063 -5.61766 9.33642 -5.54129 {normal=(0.190659 -0.110039 -0.944355)} Vertex 21064 -5.91852 10.9841 -5.44581 {normal=(0.137644 0.301248 -0.906561)} Vertex 21065 -6.53039 12.6135 -4.43343 {normal=(-0.007394 0.692894 -0.659694)} Vertex 21066 -7.22336 13.505 -2.83362 {normal=(-0.169391 0.916786 -0.234205)} Vertex 21067 -7.74549 13.4116 -1.26463 {normal=(-0.266465 0.919997 0.199411)} Vertex 21068 -3.21665 13.1333 -4.43553 {normal=(0.467890 0.839767 0.187912)} Vertex 21069 -3.30668 13.1964 -4.67433 {normal=(0.360227 0.910883 -0.024730)} Vertex 21070 -3.45151 13.1059 -4.91333 {normal=(0.020645 0.674163 -0.736905)} Vertex 21071 -3.53053 12.912 -5.03854 {normal=(-0.166386 0.286383 -0.937047)} Vertex 21072 -4.96965 13.6666 0.76161 {normal=(0.876225 0.461386 0.134593)} Vertex 21073 -5.29362 14.5626 -0.742512 {normal=(0.817139 0.543108 0.092109)} Vertex 21074 -4.92208 14.5653 -2.73627 {normal=(0.730993 0.634812 0.113375)} Vertex 21075 -3.89373 13.6983 -4.07132 {normal=(0.640357 0.716922 0.176945)} Vertex 21076 -1.53299 13.0507 -4.48587 {normal=(0.004271 0.709624 0.704554)} Vertex 21077 -0.629443 6.80548 4.69403 {normal=(-0.001681 0.986648 -0.162849)} Vertex 21078 -1.651 7.33403 4.72185 {normal=(0.813134 0.580921 0.032895)} Vertex 21079 -2.74455 9.00838 4.04523 {normal=(0.825537 0.562650 0.009330)} Vertex 21080 -3.94162 11.0591 2.70364 {normal=(0.870069 0.485017 0.043648)} Vertex 21081 -4.58249 12.5397 1.753 {normal=(0.883079 0.447814 0.135738)} Vertex 21082 -4.24633 10.9566 2.95752 {normal=(-0.569976 0.257117 0.772520)} Vertex 21083 -3.01284 8.87713 4.32362 {normal=(-0.436944 0.291419 0.849131)} Vertex 21084 -5.49912 14.7024 -0.716162 {normal=(-0.278900 0.828889 0.473777)} Vertex 21085 -5.16352 13.768 0.843783 {normal=(-0.209095 0.706382 0.662053)} Vertex 21086 -4.75683 12.6209 1.87827 {normal=(-0.041367 0.618839 0.776947)} Vertex 21087 -4.08496 11.1236 2.92791 {normal=(0.151564 0.610512 0.771744)} Vertex 21088 -2.87271 9.04589 4.24104 {normal=(0.373285 0.589881 0.700619)} Vertex 21089 -1.72081 7.31496 4.95904 {normal=(0.586812 0.516201 0.615007)} Vertex 21090 -0.65772 6.77809 4.93002 {normal=(-0.002877 0.863205 0.504838)} Vertex 21091 -5.34188 13.6007 0.787795 {normal=(-0.791698 0.324977 0.507933)} Vertex 21092 -4.92951 12.4531 1.86316 {normal=(-0.719965 0.247342 0.641400)} Vertex 21093 -1.83771 7.13993 5.07084 {normal=(0.126620 0.104461 0.985220)} Vertex 21094 -0.711248 6.59895 5.04217 {normal=(0.042836 0.157514 0.985287)} Vertex 21095 -1.56846 13.151 -4.72689 {normal=(0.103668 0.985826 -0.045769)} Vertex 21096 -4.01862 13.8087 -4.24487 {normal=(0.525208 0.833078 -0.090303)} Vertex 21097 -5.0975 14.7309 -2.79599 {normal=(0.480468 0.837411 -0.130632)} Vertex 21098 -5.79509 14.3737 -0.852589 {normal=(-0.975280 -0.173777 0.126638)} Vertex 21099 -5.46252 14.451 -2.91393 {normal=(-0.692063 0.402182 -0.510673)} Vertex 21100 -4.41376 13.5607 -4.49854 {normal=(-0.434305 0.326538 -0.805774)} Vertex 21101 -1.58035 12.7894 -5.13085 {normal=(-0.036963 0.285127 -0.956403)} Vertex 21102 -5.39297 13.3937 0.654191 {normal=(-0.964635 -0.248293 0.079966)} Vertex 21103 -5.70541 14.5699 -0.781287 {normal=(-0.779654 0.472494 0.401380)} Vertex 21104 -5.30519 14.6406 -2.90241 {normal=(-0.335980 0.740428 -0.563501)} Vertex 21105 -4.22522 13.7351 -4.43946 {normal=(-0.106837 0.676556 -0.714781)} Vertex 21106 -1.59839 13.0299 -4.97417 {normal=(0.011239 0.719138 -0.694484)} Vertex 21107 -0.771698 6.39654 5.00218 {normal=(0.001051 -0.648680 0.761060)} Vertex 21108 -1.95248 6.93881 5.03138 {normal=(-0.579954 -0.354274 0.719902)} Vertex 21109 -3.10245 8.67156 4.26944 {normal=(-0.787797 -0.282791 0.518533)} Vertex 21110 -4.31794 10.7482 2.86928 {normal=(-0.915677 -0.264411 0.282238)} Vertex 21111 -4.99309 12.2458 1.74827 {normal=(-0.951229 -0.277596 0.119319)} Vertex 21112 -7.40381 12.9112 0.185411 {normal=(-0.289001 0.733858 0.584198)} Vertex 21113 -7.22417 13.6278 -1.17828 {normal=(-0.363916 0.873314 0.207722)} Vertex 21114 -6.74524 13.71 -2.87283 {normal=(-0.336108 0.844088 -0.291284)} Vertex 21115 -5.94083 12.7878 -4.49456 {normal=(-0.186006 0.611262 -0.721236)} Vertex 21116 -5.18464 11.157 -5.47249 {normal=(-0.054141 0.274838 -0.937553)} Vertex 21117 -5.22279 12.1146 1.58846 {normal=(-0.341188 0.521739 0.779032)} Vertex 21118 -6.27612 14.0592 -0.997141 {normal=(-0.465733 0.784232 0.201315)} Vertex 21119 -0.839028 6.71511 -5.9162 {normal=(-0.072248 -0.075391 -0.990457)} Vertex 21120 -2.66939 6.71095 -5.61095 {normal=(-0.217588 -0.145063 -0.957749)} Vertex 21121 -5.41093 6.09846 -3.87111 {normal=(-0.524069 -0.472391 -0.620932)} Vertex 21122 -6.05962 5.79603 -2.33854 {normal=(-0.719197 -0.466314 -0.370462)} Vertex 21123 -3.9688 5.04581 -4.67403 {normal=(-0.456970 -0.345744 -0.804692)} Vertex 21124 -4.72168 9.27476 -5.66313 {normal=(-0.054010 -0.059301 -0.976594)} Vertex 21125 -4.37759 8.57649 3.95847 {normal=(-0.250175 0.416158 0.865739)} Vertex 21126 -4.8003 10.6262 2.62326 {normal=(-0.326210 0.475819 0.815589)} Vertex 21127 -7.13525 5.98334 1.45257 {normal=(-0.902946 -0.315004 0.103350)} Vertex 21128 -6.92115 5.77421 3.3119 {normal=(-0.828022 -0.196105 0.422876)} Vertex 21129 -5.83736 5.70275 4.42338 {normal=(-0.508227 -0.138355 0.799985)} Vertex 21130 -4.13518 5.73701 4.97745 {normal=(-0.176258 -0.073959 0.960551)} Vertex 21131 -2.38518 5.81302 5.02873 {normal=(0.007717 -0.029595 0.995882)} Vertex 21132 -0.788 5.91017 4.9384 {normal=(0.025601 -0.003600 0.999109)} Vertex 21133 -7.37637 7.11973 1.70231 {normal=(-0.830694 -0.269711 0.365185)} Vertex 21134 -7.04094 6.82116 3.24763 {normal=(-0.815027 0.043261 0.496947)} Vertex 21135 -5.93029 6.76374 4.27176 {normal=(-0.501801 0.172393 0.807134)} Vertex 21136 -4.20938 6.79725 4.86114 {normal=(-0.195928 0.204572 0.938452)} Vertex 21137 -2.63333 6.83434 5.01252 {normal=(-0.011336 0.159125 0.975731)} Vertex 21138 -6.37817 4.59025 -0.897268 {normal=(-0.847277 -0.442735 -0.246447)} Vertex 21139 -7.95336 12.1606 -0.437895 {normal=(-0.935042 -0.152170 -0.320219)} Vertex 21140 -0.73303 4.86332 4.86883 {normal=(0.015007 -0.444851 0.880265)} Vertex 21141 -5.67993 4.91049 4.22526 {normal=(-0.453553 -0.489856 0.677642)} Vertex 21142 -5.84604 8.54717 3.43808 {normal=(-0.443501 0.388515 0.789493)} Vertex 21143 -5.75367 10.5522 2.26985 {normal=(-0.377502 0.458062 0.801633)} Vertex 21144 -7.50671 8.54766 1.86445 {normal=(-0.649168 -0.019215 0.673511)} Vertex 21145 -6.54112 5.04425 -0.772035 {normal=(-0.917901 -0.264396 -0.266651)} Vertex 21146 -6.71182 4.96109 3.08012 {normal=(-0.750203 -0.481185 0.321567)} Vertex 21147 -4.10086 4.95773 4.81769 {normal=(-0.166672 -0.401480 0.863351)} Vertex 21148 -5.83455 5.04448 -2.50961 {normal=(-0.836828 -0.281797 -0.439043)} Vertex 21149 -4.34432 4.6092 -4.1527 {normal=(-0.491910 -0.554505 -0.641536)} Vertex 21150 -5.60664 4.58174 -2.68033 {normal=(-0.753169 -0.438594 -0.465868)} Vertex 21151 -2.60231 5.05218 -5.21437 {normal=(-0.275243 -0.288853 -0.904670)} Vertex 21152 -4.94501 13.2176 -4.53188 {normal=(-0.317705 0.483544 -0.781978)} Vertex 21153 -7.54523 10.2882 1.6668 {normal=(-0.375665 0.238382 0.871145)} Vertex 21154 -7.51834 11.8021 1.12171 {normal=(-0.250886 0.495266 0.813269)} Vertex 21155 -6.88792 5.0314 1.18969 {normal=(-0.901948 -0.373050 -0.043115)} Vertex 21156 -6.50125 4.55791 2.82016 {normal=(-0.599499 -0.744600 0.188102)} Vertex 21157 -2.49205 4.71789 4.84412 {normal=(-0.007259 -0.565759 0.801104)} Vertex 21158 -0.76511 5.24137 4.94453 {normal=(0.019009 -0.157488 0.976079)} Vertex 21159 -2.39768 5.09749 4.98174 {normal=(-0.007149 -0.259968 0.943592)} Vertex 21160 -6.86178 8.51768 2.72489 {normal=(-0.653574 0.258894 0.656644)} Vertex 21161 -6.66865 4.61394 0.935092 {normal=(-0.786322 -0.588644 -0.071695)} Vertex 21162 -6.17306 13.1416 0.442948 {normal=(-0.301528 0.681935 0.644031)} Vertex 21163 -6.58776 10.4284 1.92322 {normal=(-0.410371 0.381389 0.815870)} Vertex 21164 -6.72468 5.91685 -0.556203 {normal=(-0.822811 -0.427511 -0.106673)} Vertex 21165 -4.81001 5.04426 -3.98097 {normal=(-0.658824 -0.356384 -0.634259)} Vertex 21166 -2.98038 9.39655 -5.863 {normal=(-0.114460 0.032886 -0.979521)} Vertex 21167 -5.91343 14.1284 -2.91224 {normal=(-0.510287 0.689286 -0.388738)} Vertex 21168 -1.36799 11.8988 -5.43976 {normal=(-0.019351 0.268806 -0.962131)} Vertex 21169 -0.762365 5.05616 -5.66807 {normal=(-0.093386 -0.246258 -0.949381)} Vertex 21170 -1.03667 9.59328 -5.94484 {normal=(-0.035651 0.096709 -0.984003)} Vertex 21171 1.8867 -22.2854 -2.49395 {normal=(-0.062049 0.997722 0.004080)} Vertex 21172 3.05563 -22.2914 -0.911257 {normal=(-0.030620 0.996843 0.068571)} Vertex 21173 8.5405 -22.155 -4.22906 {normal=(0.170835 0.983521 -0.008676)} Vertex 21174 7.65423 -22.1394 -5.97783 {normal=(0.103972 0.985831 -0.122689)} Vertex 21175 4.73466 -22.3053 -0.281314 {normal=(-0.008108 0.993307 0.111835)} Vertex 21176 6.80251 -22.3071 -0.55043 {normal=(0.069360 0.986957 0.141648)} Vertex 21177 7.14353 -25.6278 -5.36159 {normal=(0.688471 -0.163452 -0.668316)} Vertex 21178 7.77107 -25.6327 -4.11867 {normal=(0.911430 -0.183341 -0.200696)} Vertex 21179 7.51284 -25.6945 -2.31262 {normal=(0.826204 -0.182276 0.408538)} Vertex 21180 6.33798 -25.759 -1.07085 {normal=(0.417564 -0.160135 0.846162)} Vertex 21181 4.64758 -25.7616 -0.863866 {normal=(-0.090417 -0.124220 0.955546)} Vertex 21182 2.95267 -25.7542 -1.42987 {normal=(-0.583929 -0.078126 0.746405)} Vertex 21183 2.10936 -25.7502 -2.60856 {normal=(-0.911335 -0.059135 0.239941)} Vertex 21184 2.20962 -25.7738 -3.95889 {normal=(-0.904820 -0.088145 -0.323497)} Vertex 21185 3.20616 -25.7871 -5.26425 {normal=(-0.616216 -0.120628 -0.734080)} Vertex 21186 4.77385 -25.7369 -6.04787 {normal=(-0.152957 -0.131301 -0.942023)} Vertex 21187 6.17734 -25.6608 -5.95488 {normal=(0.321129 -0.141893 -0.909411)} Vertex 21188 6.31279 -23.9166 -6.15905 {normal=(0.315108 -0.141441 -0.912593)} Vertex 21189 4.7461 -23.9993 -6.26007 {normal=(-0.156299 -0.131302 -0.941220)} Vertex 21190 3.03873 -24.0538 -5.40881 {normal=(-0.633768 -0.119812 -0.709683)} Vertex 21191 2.0492 -24.0394 -3.99077 {normal=(-0.921823 -0.087836 -0.258531)} Vertex 21192 2.07351 -24.0137 -2.52387 {normal=(-0.907198 -0.060995 0.289583)} Vertex 21193 3.00987 -24.0182 -1.24344 {normal=(-0.585800 -0.078716 0.751761)} Vertex 21194 4.7472 -24.0262 -0.628579 {normal=(-0.098831 -0.123666 0.952955)} Vertex 21195 6.5163 -24.0233 -0.853429 {normal=(0.414985 -0.159920 0.847923)} Vertex 21196 7.80358 -23.9533 -2.20239 {normal=(0.824391 -0.182282 0.411203)} Vertex 21197 8.09183 -23.8861 -4.16434 {normal=(0.908686 -0.183466 -0.203988)} Vertex 21198 7.39133 -23.8808 -5.51455 {normal=(0.681170 -0.163097 -0.675665)} Vertex 21199 3.15764 -25.9698 -5.34796 {normal=(-0.229905 0.930044 -0.277021)} Vertex 21200 4.75525 -25.9223 -6.15337 {normal=(-0.092964 0.924611 -0.357437)} Vertex 21201 6.19195 -25.8465 -6.04937 {normal=(0.094856 0.920304 -0.365371)} Vertex 21202 7.21564 -25.8151 -5.42506 {normal=(0.277932 0.914177 -0.273413)} Vertex 21203 7.85992 -25.8214 -4.12692 {normal=(0.378866 0.912958 -0.065022)} Vertex 21204 7.58498 -25.8827 -2.2578 {normal=(0.327252 0.915184 0.189856)} Vertex 21205 6.36384 -25.9448 -0.97699 {normal=(0.160735 0.921433 0.338768)} Vertex 21206 4.61652 -25.943 -0.764205 {normal=(-0.021613 0.934385 0.344285)} Vertex 21207 2.86231 -25.9301 -1.36214 {normal=(-0.177443 0.947651 0.243905)} Vertex 21208 1.99181 -25.9255 -2.60454 {normal=(-0.274566 0.953180 0.059013)} Vertex 21209 2.10854 -25.9524 -4.00544 {normal=(-0.290151 0.943078 -0.136305)} Vertex 21210 2.02419 -27.4944 -2.68106 {normal=(0.057308 -0.997699 -0.000922)} Vertex 21211 2.81061 -27.4993 -1.53065 {normal=(0.034914 -0.996676 -0.065766)} Vertex 21212 4.52644 -27.5122 -0.976954 {normal=(-0.003524 -0.992814 -0.115415)} Vertex 21213 6.20255 -27.5148 -1.17364 {normal=(-0.064046 -0.987686 -0.137912)} Vertex 21214 7.32179 -27.4588 -2.35753 {normal=(-0.133244 -0.985054 -0.092189)} Vertex 21215 7.56946 -27.4029 -4.08558 {normal=(-0.162454 -0.984558 0.018259)} Vertex 21216 6.99133 -27.3964 -5.28662 {normal=(-0.113112 -0.985850 0.110790)} Vertex 21217 6.06939 -27.4244 -5.86468 {normal=(-0.016866 -0.987862 0.145794)} Vertex 21218 4.78032 -27.4934 -5.96151 {normal=(0.057972 -0.988735 0.134753)} Vertex 21219 3.30898 -27.5365 -5.21729 {normal=(0.081650 -0.991211 0.102768)} Vertex 21220 2.25352 -27.5197 -3.97662 {normal=(0.073041 -0.995118 0.060463)} Vertex 21221 2.08017 -25.6191 -4.01037 {normal=(-0.139836 -0.988933 -0.023966)} Vertex 21222 2.0015 -25.5934 -2.55942 {normal=(-0.150140 -0.986696 0.046943)} Vertex 21223 2.87683 -25.599 -1.31253 {normal=(-0.095090 -0.988821 0.105460)} Vertex 21224 4.62113 -25.6103 -0.727929 {normal=(-0.023114 -0.992186 0.117489)} Vertex 21225 6.39754 -25.6132 -0.935325 {normal=(0.034193 -0.995930 0.070524)} Vertex 21226 7.64028 -25.5532 -2.26308 {normal=(0.057872 -0.997985 0.009181)} Vertex 21227 7.92543 -25.4935 -4.14705 {normal=(0.050339 -0.998289 -0.026191)} Vertex 21228 7.25926 -25.4845 -5.44433 {normal=(0.055486 -0.996598 -0.056445)} Vertex 21229 6.20925 -25.5133 -6.09338 {normal=(0.063759 -0.994195 -0.085870)} Vertex 21230 4.74879 -25.5892 -6.19385 {normal=(0.020612 -0.994204 -0.097722)} Vertex 21231 3.12859 -25.6375 -5.38064 {normal=(-0.065891 -0.993366 -0.078605)} Vertex 21232 4.72639 -24.1847 -6.36538 {normal=(-0.095430 0.925683 -0.354386)} Vertex 21233 6.31891 -24.1017 -6.2586 {normal=(0.096256 0.919367 -0.366311)} Vertex 21234 7.46007 -24.0689 -5.56826 {normal=(0.284962 0.909010 -0.283017)} Vertex 21235 8.18557 -24.0771 -4.18407 {normal=(0.393669 0.904755 -0.070606)} Vertex 21236 7.87591 -24.1424 -2.17384 {normal=(0.350645 0.904195 0.196278)} Vertex 21237 6.5418 -24.2091 -0.75945 {normal=(0.171929 0.913767 0.349558)} Vertex 21238 4.70166 -24.2074 -0.537721 {normal=(-0.026672 0.931449 0.350755)} Vertex 21239 2.92303 -24.1968 -1.16194 {normal=(-0.161365 0.951561 0.243420)} Vertex 21240 1.9736 -24.208 -2.49128 {normal=(-0.214538 0.969724 0.073157)} Vertex 21241 1.95166 -24.235 -4.03634 {normal=(-0.231802 0.963503 -0.101721)} Vertex 21242 2.99335 -24.2374 -5.49742 {normal=(-0.212695 0.938913 -0.258570)} Vertex 21243 1.94907 -23.8382 -2.48644 {normal=(-0.071642 -0.995824 0.048361)} Vertex 21244 2.93078 -23.86 -1.13581 {normal=(-0.078397 -0.991039 0.102766)} Vertex 21245 4.73235 -23.8748 -0.484943 {normal=(-0.028239 -0.991518 0.119869)} Vertex 21246 6.57554 -23.8775 -0.717803 {normal=(0.037070 -0.995851 0.070537)} Vertex 21247 7.93041 -23.8111 -2.12564 {normal=(0.068580 -0.997252 0.010065)} Vertex 21248 8.24059 -23.7447 -4.18162 {normal=(0.063969 -0.997425 -0.028216)} Vertex 21249 7.50857 -23.7366 -5.60913 {normal=(0.060251 -0.996409 -0.056968)} Vertex 21250 6.3506 -23.7695 -6.29468 {normal=(0.061667 -0.994516 -0.083603)} Vertex 21251 4.71986 -23.8515 -6.40728 {normal=(0.017087 -0.994185 -0.098116)} Vertex 21252 2.95269 -23.9036 -5.51215 {normal=(-0.042446 -0.996107 -0.063674)} Vertex 21253 1.91022 -23.8682 -4.0236 {normal=(-0.057706 -0.997991 0.000063)} Vertex 21254 2.79021 -22.3317 -5.70618 {normal=(-0.094966 0.990754 -0.094558)} Vertex 21255 4.6658 -22.2668 -6.76379 {normal=(-0.063883 0.988613 -0.132041)} Vertex 21256 6.43782 -22.1751 -6.68009 {normal=(0.014417 0.988002 -0.145249)} Vertex 21257 8.19015 -22.2334 -2.04544 {normal=(0.132379 0.984944 0.094149)} Vertex 21258 1.76626 -22.3169 -4.05264 {normal=(-0.085951 0.994768 -0.045924)} Vertex 21259 6.15695 -26.6706 -6.06915 {normal=(0.318524 -0.142063 -0.908908)} Vertex 21260 6.28311 -24.8264 -6.29501 {normal=(0.313403 -0.141802 -0.910980)} Vertex 21261 6.51221 -24.9312 -0.732636 {normal=(0.411879 -0.160023 0.846775)} Vertex 21262 7.85797 -24.8717 -2.17942 {normal=(0.826824 -0.182390 0.405835)} Vertex 21263 8.17955 -24.8112 -4.18961 {normal=(0.913918 -0.183229 -0.199242)} Vertex 21264 7.45191 -24.7991 -5.57453 {normal=(0.689308 -0.163754 -0.665356)} Vertex 21265 7.70025 -22.9439 -5.85322 {normal=(0.675606 -0.225572 -0.662027)} Vertex 21266 8.49807 -22.9577 -4.26722 {normal=(0.907846 -0.201566 -0.192437)} Vertex 21267 8.16249 -23.0298 -2.01646 {normal=(0.821978 -0.179963 0.418341)} Vertex 21268 6.7 -23.0968 -0.502652 {normal=(0.409835 -0.157921 0.850705)} Vertex 21269 4.6254 -24.9238 -0.519428 {normal=(-0.104368 -0.123265 0.953667)} Vertex 21270 2.81858 -24.9097 -1.13781 {normal=(-0.585839 -0.077389 0.752245)} Vertex 21271 1.88266 -24.9035 -2.48427 {normal=(-0.906601 -0.059969 0.272573)} Vertex 21272 1.90142 -24.9316 -4.07166 {normal=(-0.910420 -0.089522 -0.293125)} Vertex 21273 2.9995 -24.9545 -5.54152 {normal=(-0.618018 -0.121023 -0.728826)} Vertex 21274 4.7152 -24.9058 -6.40525 {normal=(-0.156726 -0.130713 -0.943963)} Vertex 21275 4.74676 -26.7424 -6.18134 {normal=(-0.152721 -0.130762 -0.944501)} Vertex 21276 3.17023 -26.7851 -5.37889 {normal=(-0.600904 -0.119775 -0.751382)} Vertex 21277 2.06596 -26.7635 -4.04035 {normal=(-0.890894 -0.086716 -0.366301)} Vertex 21278 1.88732 -26.7335 -2.63138 {normal=(-0.916548 -0.057780 0.200062)} Vertex 21279 2.75107 -26.7396 -1.36244 {normal=(-0.593154 -0.077597 0.733633)} Vertex 21280 4.54905 -26.7585 -0.750521 {normal=(-0.093514 -0.124008 0.955485)} Vertex 21281 4.66913 -23.0621 -6.71373 {normal=(-0.169126 -0.219511 -0.922809)} Vertex 21282 6.42044 -22.9757 -6.60486 {normal=(0.302437 -0.238246 -0.896346)} Vertex 21283 7.19685 -26.643 -5.43244 {normal=(0.694747 -0.164123 -0.658879)} Vertex 21284 7.83097 -26.6515 -4.11841 {normal=(0.915793 -0.183427 -0.187356)} Vertex 21285 7.55047 -26.7095 -2.24334 {normal=(0.824354 -0.182070 0.414708)} Vertex 21286 6.32446 -26.7656 -0.962656 {normal=(0.414241 -0.159993 0.847791)} Vertex 21287 4.7539 -23.0892 -0.255331 {normal=(-0.109215 -0.122926 0.950750)} Vertex 21288 2.87256 -23.0684 -0.960144 {normal=(-0.590996 -0.076271 0.752004)} Vertex 21289 1.8136 -23.0618 -2.41858 {normal=(-0.904744 -0.059727 0.311086)} Vertex 21290 1.71477 -23.0966 -4.06851 {normal=(-0.927721 -0.099503 -0.226703)} Vertex 21291 2.79998 -23.1182 -5.69993 {normal=(-0.645493 -0.166156 -0.687232)} Vertex 21292 -1.8867 -22.2854 -2.49394 {normal=(0.062049 0.997722 0.004080)} Vertex 21293 -3.05563 -22.2914 -0.911257 {normal=(0.030620 0.996843 0.068571)} Vertex 21294 -8.5405 -22.155 -4.22906 {normal=(-0.170835 0.983521 -0.008676)} Vertex 21295 -7.65423 -22.1394 -5.97783 {normal=(-0.103972 0.985831 -0.122689)} Vertex 21296 -4.73466 -22.3053 -0.281314 {normal=(0.008108 0.993307 0.111835)} Vertex 21297 -6.80251 -22.3071 -0.550429 {normal=(-0.069360 0.986957 0.141648)} Vertex 21298 -7.14353 -25.6278 -5.36159 {normal=(-0.688471 -0.163452 -0.668316)} Vertex 21299 -7.77107 -25.6327 -4.11867 {normal=(-0.911430 -0.183341 -0.200696)} Vertex 21300 -7.51284 -25.6945 -2.31262 {normal=(-0.826204 -0.182276 0.408538)} Vertex 21301 -6.33798 -25.759 -1.07085 {normal=(-0.417564 -0.160135 0.846162)} Vertex 21302 -4.64758 -25.7616 -0.863865 {normal=(0.090417 -0.124220 0.955546)} Vertex 21303 -2.95268 -25.7542 -1.42987 {normal=(0.583929 -0.078126 0.746405)} Vertex 21304 -2.10936 -25.7502 -2.60856 {normal=(0.911335 -0.059135 0.239941)} Vertex 21305 -2.20962 -25.7738 -3.95889 {normal=(0.904820 -0.088145 -0.323497)} Vertex 21306 -3.20615 -25.7871 -5.26425 {normal=(0.616216 -0.120628 -0.734080)} Vertex 21307 -4.77385 -25.7369 -6.04787 {normal=(0.152957 -0.131301 -0.942023)} Vertex 21308 -6.17734 -25.6608 -5.95488 {normal=(-0.321129 -0.141893 -0.909411)} Vertex 21309 -6.31279 -23.9166 -6.15905 {normal=(-0.315108 -0.141441 -0.912594)} Vertex 21310 -4.7461 -23.9993 -6.26007 {normal=(0.156299 -0.131302 -0.941220)} Vertex 21311 -3.03873 -24.0538 -5.40881 {normal=(0.633768 -0.119812 -0.709683)} Vertex 21312 -2.0492 -24.0394 -3.99077 {normal=(0.921823 -0.087836 -0.258531)} Vertex 21313 -2.07351 -24.0137 -2.52387 {normal=(0.907198 -0.060995 0.289583)} Vertex 21314 -3.00987 -24.0182 -1.24344 {normal=(0.585799 -0.078716 0.751761)} Vertex 21315 -4.7472 -24.0262 -0.628579 {normal=(0.098831 -0.123666 0.952955)} Vertex 21316 -6.51629 -24.0233 -0.853429 {normal=(-0.414985 -0.159920 0.847923)} Vertex 21317 -7.80358 -23.9533 -2.20239 {normal=(-0.824391 -0.182282 0.411203)} Vertex 21318 -8.09183 -23.8861 -4.16434 {normal=(-0.908686 -0.183466 -0.203988)} Vertex 21319 -7.39133 -23.8808 -5.51455 {normal=(-0.681169 -0.163097 -0.675665)} Vertex 21320 -3.15764 -25.9698 -5.34796 {normal=(0.229905 0.930044 -0.277021)} Vertex 21321 -4.75525 -25.9223 -6.15337 {normal=(0.092964 0.924611 -0.357437)} Vertex 21322 -6.19195 -25.8465 -6.04938 {normal=(-0.094856 0.920304 -0.365371)} Vertex 21323 -7.21563 -25.8151 -5.42506 {normal=(-0.277932 0.914177 -0.273413)} Vertex 21324 -7.85992 -25.8214 -4.12692 {normal=(-0.378866 0.912958 -0.065022)} Vertex 21325 -7.58498 -25.8827 -2.2578 {normal=(-0.327252 0.915184 0.189856)} Vertex 21326 -6.36384 -25.9449 -0.97699 {normal=(-0.160735 0.921433 0.338768)} Vertex 21327 -4.61652 -25.943 -0.764205 {normal=(0.021613 0.934385 0.344285)} Vertex 21328 -2.86231 -25.9301 -1.36214 {normal=(0.177443 0.947651 0.243905)} Vertex 21329 -1.99181 -25.9254 -2.60454 {normal=(0.274566 0.953180 0.059013)} Vertex 21330 -2.10854 -25.9524 -4.00544 {normal=(0.290150 0.943078 -0.136305)} Vertex 21331 -2.02419 -27.4944 -2.68106 {normal=(-0.057308 -0.997699 -0.000922)} Vertex 21332 -2.81061 -27.4993 -1.53065 {normal=(-0.034914 -0.996676 -0.065766)} Vertex 21333 -4.52644 -27.5122 -0.976954 {normal=(0.003524 -0.992814 -0.115415)} Vertex 21334 -6.20255 -27.5148 -1.17364 {normal=(0.064046 -0.987686 -0.137912)} Vertex 21335 -7.32179 -27.4588 -2.35753 {normal=(0.133244 -0.985053 -0.092189)} Vertex 21336 -7.56946 -27.4029 -4.08558 {normal=(0.162454 -0.984558 0.018259)} Vertex 21337 -6.99133 -27.3964 -5.28661 {normal=(0.113112 -0.985850 0.110790)} Vertex 21338 -6.06939 -27.4243 -5.86468 {normal=(0.016866 -0.987862 0.145794)} Vertex 21339 -4.78032 -27.4933 -5.96151 {normal=(-0.057972 -0.988735 0.134753)} Vertex 21340 -3.30897 -27.5365 -5.21729 {normal=(-0.081650 -0.991211 0.102768)} Vertex 21341 -2.25352 -27.5197 -3.97663 {normal=(-0.073041 -0.995118 0.060463)} Vertex 21342 -2.08017 -25.6191 -4.01037 {normal=(0.139836 -0.988933 -0.023966)} Vertex 21343 -2.0015 -25.5934 -2.55942 {normal=(0.150140 -0.986696 0.046943)} Vertex 21344 -2.87682 -25.5991 -1.31253 {normal=(0.095090 -0.988821 0.105460)} Vertex 21345 -4.62113 -25.6103 -0.727929 {normal=(0.023114 -0.992186 0.117489)} Vertex 21346 -6.39754 -25.6132 -0.935325 {normal=(-0.034193 -0.995930 0.070524)} Vertex 21347 -7.64028 -25.5532 -2.26308 {normal=(-0.057872 -0.997985 0.009181)} Vertex 21348 -7.92543 -25.4935 -4.14705 {normal=(-0.050339 -0.998289 -0.026191)} Vertex 21349 -7.25926 -25.4845 -5.44433 {normal=(-0.055486 -0.996598 -0.056445)} Vertex 21350 -6.20925 -25.5133 -6.09338 {normal=(-0.063759 -0.994195 -0.085870)} Vertex 21351 -4.74879 -25.5892 -6.19385 {normal=(-0.020612 -0.994204 -0.097722)} Vertex 21352 -3.12859 -25.6375 -5.38063 {normal=(0.065891 -0.993366 -0.078605)} Vertex 21353 -4.72639 -24.1847 -6.36538 {normal=(0.095430 0.925683 -0.354386)} Vertex 21354 -6.31892 -24.1017 -6.2586 {normal=(-0.096256 0.919367 -0.366311)} Vertex 21355 -7.46008 -24.0689 -5.56827 {normal=(-0.284962 0.909010 -0.283017)} Vertex 21356 -8.18557 -24.0771 -4.18407 {normal=(-0.393669 0.904755 -0.070606)} Vertex 21357 -7.87591 -24.1424 -2.17384 {normal=(-0.350645 0.904196 0.196278)} Vertex 21358 -6.5418 -24.2091 -0.75945 {normal=(-0.171929 0.913767 0.349558)} Vertex 21359 -4.70166 -24.2074 -0.537721 {normal=(0.026672 0.931449 0.350755)} Vertex 21360 -2.92303 -24.1968 -1.16194 {normal=(0.161365 0.951561 0.243420)} Vertex 21361 -1.9736 -24.208 -2.49128 {normal=(0.214538 0.969724 0.073157)} Vertex 21362 -1.95166 -24.235 -4.03634 {normal=(0.231802 0.963503 -0.101721)} Vertex 21363 -2.99335 -24.2374 -5.49742 {normal=(0.212695 0.938914 -0.258570)} Vertex 21364 -1.94908 -23.8382 -2.48644 {normal=(0.071642 -0.995824 0.048361)} Vertex 21365 -2.93078 -23.86 -1.13581 {normal=(0.078397 -0.991038 0.102766)} Vertex 21366 -4.73235 -23.8748 -0.484943 {normal=(0.028239 -0.991518 0.119869)} Vertex 21367 -6.57553 -23.8775 -0.717803 {normal=(-0.037070 -0.995851 0.070537)} Vertex 21368 -7.93041 -23.8111 -2.12564 {normal=(-0.068580 -0.997252 0.010065)} Vertex 21369 -8.24059 -23.7447 -4.18162 {normal=(-0.063969 -0.997425 -0.028216)} Vertex 21370 -7.50857 -23.7366 -5.60913 {normal=(-0.060251 -0.996409 -0.056968)} Vertex 21371 -6.3506 -23.7695 -6.29468 {normal=(-0.061667 -0.994516 -0.083603)} Vertex 21372 -4.71986 -23.8515 -6.40728 {normal=(-0.017087 -0.994185 -0.098116)} Vertex 21373 -2.95269 -23.9036 -5.51215 {normal=(0.042446 -0.996108 -0.063674)} Vertex 21374 -1.91022 -23.8682 -4.0236 {normal=(0.057706 -0.997991 0.000063)} Vertex 21375 -2.79021 -22.3317 -5.70617 {normal=(0.094966 0.990754 -0.094558)} Vertex 21376 -4.6658 -22.2668 -6.76379 {normal=(0.063883 0.988613 -0.132041)} Vertex 21377 -6.43782 -22.1751 -6.68009 {normal=(-0.014417 0.988002 -0.145249)} Vertex 21378 -8.19015 -22.2334 -2.04544 {normal=(-0.132379 0.984944 0.094149)} Vertex 21379 -1.76626 -22.3169 -4.05263 {normal=(0.085951 0.994768 -0.045924)} Vertex 21380 -6.15694 -26.6706 -6.06915 {normal=(-0.318524 -0.142063 -0.908908)} Vertex 21381 -6.2831 -24.8263 -6.29501 {normal=(-0.313403 -0.141802 -0.910980)} Vertex 21382 -6.51221 -24.9312 -0.732636 {normal=(-0.411879 -0.160023 0.846775)} Vertex 21383 -7.85797 -24.8717 -2.17942 {normal=(-0.826823 -0.182390 0.405835)} Vertex 21384 -8.17955 -24.8112 -4.18962 {normal=(-0.913918 -0.183229 -0.199242)} Vertex 21385 -7.45191 -24.7991 -5.57453 {normal=(-0.689308 -0.163754 -0.665356)} Vertex 21386 -7.70025 -22.9439 -5.85322 {normal=(-0.675606 -0.225572 -0.662027)} Vertex 21387 -8.49807 -22.9576 -4.26722 {normal=(-0.907846 -0.201566 -0.192438)} Vertex 21388 -8.16249 -23.0298 -2.01646 {normal=(-0.821978 -0.179963 0.418341)} Vertex 21389 -6.70001 -23.0968 -0.502652 {normal=(-0.409835 -0.157921 0.850705)} Vertex 21390 -4.6254 -24.9239 -0.519428 {normal=(0.104368 -0.123265 0.953667)} Vertex 21391 -2.81858 -24.9097 -1.13781 {normal=(0.585839 -0.077389 0.752245)} Vertex 21392 -1.88266 -24.9035 -2.48426 {normal=(0.906601 -0.059969 0.272573)} Vertex 21393 -1.90142 -24.9316 -4.07166 {normal=(0.910420 -0.089522 -0.293125)} Vertex 21394 -2.9995 -24.9545 -5.54152 {normal=(0.618018 -0.121023 -0.728825)} Vertex 21395 -4.7152 -24.9058 -6.40525 {normal=(0.156726 -0.130713 -0.943963)} Vertex 21396 -4.74676 -26.7424 -6.18134 {normal=(0.152721 -0.130762 -0.944501)} Vertex 21397 -3.17023 -26.7851 -5.3789 {normal=(0.600904 -0.119775 -0.751382)} Vertex 21398 -2.06596 -26.7635 -4.04035 {normal=(0.890894 -0.086716 -0.366301)} Vertex 21399 -1.88732 -26.7335 -2.63138 {normal=(0.916548 -0.057780 0.200062)} Vertex 21400 -2.75107 -26.7396 -1.36244 {normal=(0.593154 -0.077597 0.733633)} Vertex 21401 -4.54905 -26.7585 -0.750521 {normal=(0.093514 -0.124007 0.955485)} Vertex 21402 -4.66913 -23.0621 -6.71373 {normal=(0.169126 -0.219511 -0.922809)} Vertex 21403 -6.42045 -22.9757 -6.60486 {normal=(-0.302437 -0.238246 -0.896347)} Vertex 21404 -7.19685 -26.643 -5.43244 {normal=(-0.694747 -0.164123 -0.658879)} Vertex 21405 -7.83097 -26.6515 -4.11841 {normal=(-0.915793 -0.183427 -0.187356)} Vertex 21406 -7.55047 -26.7095 -2.24334 {normal=(-0.824354 -0.182069 0.414708)} Vertex 21407 -6.32446 -26.7656 -0.962656 {normal=(-0.414241 -0.159993 0.847791)} Vertex 21408 -4.7539 -23.0892 -0.255331 {normal=(0.109215 -0.122926 0.950750)} Vertex 21409 -2.87256 -23.0684 -0.960145 {normal=(0.590996 -0.076271 0.752004)} Vertex 21410 -1.8136 -23.0618 -2.41858 {normal=(0.904744 -0.059727 0.311086)} Vertex 21411 -1.71477 -23.0967 -4.06851 {normal=(0.927720 -0.099503 -0.226703)} Vertex 21412 -2.79998 -23.1183 -5.69993 {normal=(0.645493 -0.166156 -0.687233)} Face 1 3202 2553 3304 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 2 2553 2736 3304 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 3 1465 1386 1382 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 4 1386 1327 1382 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 5 1012 1056 994 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 6 1056 1053 994 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 7 7738 8492 7842 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 8 7738 8307 8492 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 9 9663 9659 9580 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 10 9663 9718 9659 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 11 10051 9989 10033 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 12 10051 9992 9989 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 13 2201 3016 1646 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 14 1204 1184 1336 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 15 1471 1511 1459 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 16 3012 1670 1850 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 17 1481 1693 1692 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 18 1336 1488 1471 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 19 1471 1204 1336 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 20 1810 1752 1713 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 21 1677 1689 1700 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 22 1363 1298 1324 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 23 3948 3890 3606 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 24 1236 1196 1232 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 25 1338 1321 1369 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 26 1528 1513 1572 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 27 1572 1549 1528 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 28 1369 1351 1338 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 29 1232 1237 1236 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 30 1324 1346 1363 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 31 3606 3764 3948 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 32 8841 9391 9498 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 33 9709 9861 9841 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 34 9586 9534 9574 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 35 9195 9375 8024 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 36 9564 9575 9458 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 37 9574 9557 9709 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 38 9709 9841 9574 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 39 9332 9293 9235 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40 9345 9356 9368 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41 9721 9747 9682 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 42 7436 7153 7092 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 43 9813 9849 9809 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 44 9676 9724 9707 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 45 9473 9532 9517 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 46 9517 9496 9473 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 47 9707 9694 9676 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 48 9809 9808 9813 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 49 9682 9699 9721 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 50 7092 7280 7436 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 51 4670 5449 4315 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 52 2740 2291 2197 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 53 2197 2291 1904 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 54 5491 4384 3796 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 55 5449 4398 4336 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 56 1748 3715 3796 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 57 3501 2393 3819 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 58 1034 1063 1106 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 59 4384 3629 3796 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 60 1640 1490 1340 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 61 1101 944 792 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 62 1205 1295 1246 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 63 1777 1700 1785 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 64 1777 1698 1700 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 65 1581 1564 1558 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 66 1558 1564 1541 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 67 2385 2429 2420 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 68 2420 2429 1772 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 69 1368 1361 1246 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 70 1537 1605 1548 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 71 1548 1605 1575 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 72 1277 1361 1368 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 73 1216 1195 1225 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 74 1225 1195 1222 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 75 1324 1315 1346 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 76 1538 1506 1523 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 77 1523 1506 1505 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 78 1275 1284 1262 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 79 1275 1272 1284 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 80 1363 1346 1315 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 81 3640 3554 3752 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 82 3752 3724 3640 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 83 1320 1265 1269 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 84 1269 1287 1320 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 85 996 1034 979 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 86 708 675 939 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 87 1030 978 1161 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 88 1755 1691 1704 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 89 2267 2723 2683 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 90 5006 5490 5299 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 91 4453 3659 4686 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 92 5006 5156 5490 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 93 4453 4723 3659 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 94 2267 2066 2723 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 95 1161 1031 1030 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 96 939 679 708 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 97 996 975 1034 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 98 1755 2179 1691 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 99 1904 2291 2374 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 100 4115 4315 4281 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 101 3819 4115 4281 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 102 4200 4398 4426 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 103 1512 1539 1544 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 104 1259 1234 1113 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 105 1544 1486 1512 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 106 1113 1245 1259 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 107 1580 1485 1609 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 108 3860 3824 3565 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 109 4281 5449 4336 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 110 4426 4398 5449 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 111 4281 4315 5449 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 112 5449 4780 4426 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 113 3860 4107 3824 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 114 1580 1531 1485 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 115 3994 4338 3926 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 116 4196 4338 3994 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 117 1286 1334 1227 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 118 1286 1345 1334 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 119 1245 1113 1106 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 120 1106 1113 1034 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 121 6729 5596 6376 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 122 8845 8753 8303 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 123 8845 9535 9560 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 124 7250 6657 5491 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 125 6707 6642 5596 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 126 7250 7328 9297 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 127 7225 8651 7544 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 128 9939 9982 10011 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 129 7250 7416 6657 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 130 9671 9762 9810 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 131 10253 10101 9944 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 132 9799 9750 9840 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 133 9260 9345 9268 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 134 9345 9347 9268 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 135 9487 9481 9464 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 136 9504 9481 9487 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 137 8625 8617 8660 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 138 9273 8617 8625 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 139 9799 9686 9677 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 140 9497 9442 9508 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 141 9470 9442 9497 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 142 9677 9686 9768 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 143 9820 9850 9829 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 144 9823 9850 9820 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 145 9699 9730 9721 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 146 9522 9539 9507 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 147 9540 9539 9522 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 148 9783 9761 9770 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 149 9761 9773 9770 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 150 9730 9699 9682 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 151 7290 7487 7405 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 152 7405 7318 7290 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 153 9776 9780 9725 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 154 9725 9758 9776 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 155 10066 10011 10049 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 156 10106 10370 10337 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 157 9884 10067 10015 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 158 9341 9354 9290 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 159 8366 8320 8776 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 160 5741 5490 6033 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 161 6363 7385 6587 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 162 5490 5890 6033 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 163 7385 6324 6587 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 164 8320 8979 8776 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 165 10015 10014 9884 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 166 10337 10366 10106 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 167 10011 10070 10049 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 168 9354 8865 9290 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 169 8671 8753 9141 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 170 6760 6729 6931 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 171 6760 6931 7225 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 172 6612 6642 6844 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 173 9501 9506 9533 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 174 9932 9811 9786 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 175 9533 9559 9501 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 176 9786 9800 9932 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 177 9436 9560 9465 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 178 7476 7217 7183 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 179 6707 5596 6760 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 180 5596 6642 6612 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 181 5596 6729 6760 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 182 6612 6265 5596 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 183 7217 6938 7183 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 184 9560 9514 9465 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 185 7114 6704 7046 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 186 7046 6704 6848 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 187 9818 9711 9759 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 188 9711 9700 9759 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 189 9939 9932 9800 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 190 10011 9932 9939 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 191 1579 1625 1635 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 192 2555 2115 1951 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 193 1560 1579 1635 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 194 1951 2318 2555 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 195 1627 1633 1663 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 196 1663 1647 1627 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 197 1377 1421 1375 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 198 1296 1377 1375 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 199 9410 9420 9466 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 200 9094 8929 8489 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 201 9410 9466 9484 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 202 8489 8729 9094 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 203 9382 9411 9418 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 204 9418 9398 9382 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 205 9670 9624 9668 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 206 9670 9668 9748 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 207 1752 2967 1639 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 208 4121 5535 3414 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 209 1636 2965 1807 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 210 4121 5533 5535 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 211 5551 5546 2309 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 212 9406 8069 9293 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 213 7631 5535 6926 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 214 9238 8070 9409 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 215 5535 5533 6926 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 216 5551 8070 9238 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 217 2015 1655 2188 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 218 1182 1115 1244 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 219 1111 1110 1128 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 220 1094 972 962 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 221 962 1035 1094 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 222 1059 1110 1111 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 223 1398 1294 1182 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 224 1480 1294 1398 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 225 1596 1494 1456 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 226 1543 1629 1596 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 227 1305 1329 1242 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 228 2479 2521 1798 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 229 910 926 957 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 230 1251 1158 1150 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 231 1624 1596 1629 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 232 1188 1191 1140 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 233 1699 1648 1655 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 234 2015 1699 1655 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 235 1162 1322 1344 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 236 1507 1626 1594 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 237 1027 1083 1159 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 238 981 973 1164 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 239 1726 2343 1863 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 240 3100 3373 3301 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 241 3342 3271 3074 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 242 3029 2574 2048 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 243 1901 1665 1660 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 244 1593 1415 1550 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 245 1141 1037 1233 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 246 1483 1495 1292 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 247 1267 1238 1458 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 248 2688 2795 2621 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 249 2517 2521 2479 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 250 1534 1533 1520 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 251 934 966 957 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 252 1005 1002 1016 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 253 1614 1567 1585 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 254 1543 1596 1456 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 255 1567 1584 1585 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 256 1016 965 1005 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 257 966 955 957 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 258 1520 1568 1534 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 259 1563 1585 1005 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 260 1601 1546 1173 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 261 8855 9390 9030 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 262 9801 9930 9863 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 263 9917 9935 9934 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 264 10083 10073 9951 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 265 9951 10010 10083 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 266 9934 9935 9986 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 267 9863 9751 9647 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 268 9647 9751 9565 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 269 9589 9551 9449 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 270 9449 9416 9502 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 271 9247 8524 8571 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 272 9636 9549 9511 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 273 9895 9887 9794 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 274 9416 9449 9421 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 275 9905 9854 9857 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 276 9390 9397 9346 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 277 9390 9346 9030 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 278 9701 9723 9883 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 279 9451 9419 9538 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 280 9886 9962 10018 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 281 9881 10072 10064 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 282 9182 8703 9319 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 283 7744 7669 7935 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 284 7964 7774 7701 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 285 8997 8474 8002 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 286 9385 9380 9144 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 287 9495 9630 9452 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 288 9812 10008 9904 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 289 9753 9550 9562 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 290 9587 9807 9778 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 291 8428 8250 8359 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 292 8571 8524 8528 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 293 9589 9449 9502 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 294 10040 9460 9482 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 295 9872 9499 9444 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 296 9803 9716 9740 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 297 9525 9512 9511 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 298 10088 10079 10111 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 299 10029 10043 10040 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 300 9460 9478 9431 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 301 9460 9461 9478 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 302 10040 10080 10029 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 303 10088 10090 10079 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 304 9511 9477 9525 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 305 896 899 954 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 306 180 159 133 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 307 114 126 73 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 308 269 238 233 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 309 255 184 178 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 310 125 101 102 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 311 98 108 106 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 312 1018 970 1001 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 313 265 449 530 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 314 449 676 530 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 315 432 595 712 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 316 890 712 858 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 317 615 329 292 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 318 942 925 844 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 319 931 837 925 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 320 1333 1385 1430 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 321 797 938 942 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 322 1073 938 1072 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 323 890 913 765 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 324 615 938 797 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 325 1021 1058 890 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 326 942 938 1073 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 327 1198 1154 1046 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 328 1207 1218 1215 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 329 1207 1223 1218 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 330 1198 1046 1131 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 331 1355 1291 1257 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 332 1420 1423 1402 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 333 1474 1454 1439 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 334 1477 1445 1455 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 335 1430 1411 1434 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 336 1333 1207 1266 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 337 924 919 933 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 338 891 843 892 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 339 883 892 843 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 340 875 902 929 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 341 843 891 879 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 342 851 843 879 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 343 877 902 875 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 344 833 806 843 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 345 843 851 833 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 346 811 841 839 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 347 501 580 570 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 348 435 466 447 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 349 507 447 466 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 350 701 541 538 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 351 466 435 430 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 352 402 276 294 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 353 446 466 430 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 354 555 541 701 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 355 465 536 466 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 356 466 446 465 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 357 614 531 601 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 358 109 104 61 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 359 122 109 63 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 360 109 61 42 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 361 63 109 42 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 362 79 30 19 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 363 34 79 19 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 364 79 81 30 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 365 86 79 34 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 366 338 424 387 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 367 302 348 316 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 368 373 316 348 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 369 560 335 343 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 370 348 302 290 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 371 301 331 240 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 372 209 301 294 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 373 331 278 240 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 374 304 348 290 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 375 345 335 560 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 376 317 374 348 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 377 348 304 317 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 378 425 339 391 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 379 294 276 137 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 380 209 294 137 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 381 351 243 172 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 382 219 351 172 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 383 436 562 511 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 384 383 450 418 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 385 515 418 450 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 386 648 413 433 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 387 450 383 357 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 388 354 243 351 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 389 372 450 357 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 390 416 413 648 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 391 395 478 450 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 392 450 372 395 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 393 520 411 472 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 394 115 116 68 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 395 124 115 64 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 396 115 68 51 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 397 64 115 51 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 398 155 100 96 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 399 131 155 96 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 400 155 148 100 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 401 182 155 131 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 402 263 321 287 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 403 239 283 257 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 404 309 257 283 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 405 386 253 254 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 406 283 239 226 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 407 219 296 351 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 408 241 283 226 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 409 256 253 386 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 410 259 310 283 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 411 283 241 259 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 412 320 262 282 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 413 301 240 294 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 414 278 331 319 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 415 268 334 272 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 416 118 163 90 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 417 404 347 281 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 418 246 268 216 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 419 513 448 514 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 420 537 626 397 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 421 142 156 247 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 422 311 397 409 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 423 311 298 397 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 424 409 397 626 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 425 298 350 397 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 426 526 195 356 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 427 195 163 118 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 428 78 59 84 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 429 52 55 59 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 430 72 47 55 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 431 20 23 47 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 432 48 38 23 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 433 45 62 38 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 434 384 514 448 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 435 37 110 14 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 436 1057 895 961 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 437 1154 943 948 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 438 970 1018 961 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 439 159 114 133 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 440 80 53 76 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 441 264 369 313 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 442 988 948 941 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 443 849 776 836 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 444 533 822 427 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 445 94 85 153 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 446 932 913 1093 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 447 10091 10146 10149 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 448 10912 10886 10865 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 449 10972 10919 10931 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 450 10812 10807 10776 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 451 10867 10861 10790 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 452 10920 10932 10947 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 453 10947 10932 10928 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 454 10044 10075 10027 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 455 10515 10596 10780 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 456 10515 10369 10596 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 457 10333 10450 10613 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 458 10187 10333 10155 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 459 10753 10716 10430 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 460 10201 10120 10103 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 461 10120 10208 10114 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 462 9625 9571 9568 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 463 10103 10107 10248 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 464 9973 10107 9972 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 465 10280 10132 10155 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 466 10248 10107 10430 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 467 10155 9987 10024 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 468 9972 10107 10103 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 469 9999 9891 9847 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 470 9830 9827 9838 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 471 9827 9822 9838 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 472 9914 9999 9847 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 473 9788 9754 9690 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 474 9643 9622 9625 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 475 9606 9591 9571 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 476 9590 9600 9568 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 477 9611 9634 9615 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 478 9779 9838 9712 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 479 10112 10126 10121 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 480 10153 10202 10154 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 481 10202 10153 10162 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 482 10170 10141 10117 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 483 10166 10154 10202 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 484 10166 10202 10194 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 485 10168 10200 10207 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 486 10202 10239 10212 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 487 10212 10194 10202 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 488 10206 10204 10234 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 489 10475 10465 10544 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 490 10598 10579 10610 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 491 10579 10598 10538 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 492 10344 10381 10469 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 493 10615 10610 10579 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 494 10751 10769 10643 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 495 10615 10579 10599 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 496 10490 10443 10365 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 497 10579 10509 10580 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 498 10580 10599 10579 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 499 10444 10514 10431 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 500 10984 10941 10936 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 501 10982 10936 10923 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 502 11003 10984 10936 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 503 11003 10936 10982 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 504 11026 11015 10966 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 505 11026 10966 11011 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 506 11015 10964 10966 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 507 11011 10966 10959 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 508 10658 10621 10707 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 509 10729 10697 10743 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 510 10697 10729 10672 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 511 10485 10524 10655 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 512 10755 10743 10697 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 513 10805 10714 10744 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 514 10751 10744 10836 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 515 10805 10767 10714 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 516 10755 10697 10741 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 517 10700 10653 10522 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 518 10697 10671 10728 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 519 10728 10741 10697 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 520 10654 10706 10620 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 521 10908 10769 10751 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 522 10908 10751 10836 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 523 10873 10802 10694 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 524 10873 10694 10826 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 525 10534 10483 10609 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 526 10627 10595 10662 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 527 10595 10627 10530 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 528 10397 10417 10537 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 529 10688 10662 10595 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 530 10694 10802 10691 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 531 10688 10595 10673 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 532 10629 10570 10442 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 533 10595 10567 10650 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 534 10650 10673 10595 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 535 10573 10634 10525 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 536 10977 10929 10930 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 537 10981 10930 10921 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 538 10994 10977 10930 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 539 10994 10930 10981 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 540 10949 10945 10890 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 541 10949 10890 10914 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 542 10945 10897 10890 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 543 10914 10890 10863 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 544 10758 10724 10782 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 545 10788 10762 10806 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 546 10762 10788 10736 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 547 10659 10683 10759 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 548 10819 10806 10762 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 549 10694 10749 10826 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 550 10819 10762 10804 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 551 10789 10760 10682 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 552 10762 10735 10786 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 553 10786 10804 10762 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 554 10763 10783 10725 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 555 10751 10805 10744 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 556 10726 10714 10767 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 557 10773 10711 10777 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 558 10955 10882 10927 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 559 10764 10698 10641 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 560 10829 10777 10799 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 561 10531 10597 10532 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 562 10648 10419 10508 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 563 10798 10889 10903 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 564 10636 10648 10734 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 565 10648 10747 10734 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 566 10419 10648 10636 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 567 10648 10695 10747 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 568 10689 10850 10519 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 569 10927 10882 10850 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 570 10967 10938 10942 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 571 10993 10978 10967 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 572 10973 10976 10993 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 573 11025 11005 10973 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 574 10997 11009 11025 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 575 11000 10979 10997 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 576 10597 10531 10661 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 577 11031 10935 11008 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 578 10084 10150 9988 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 579 10097 10102 9891 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 580 10084 10027 10075 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 581 10912 10931 10886 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 582 10969 10992 10965 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 583 10732 10676 10781 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 584 10104 10097 10057 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 585 10209 10269 10196 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 586 10618 10223 10512 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 587 10892 10960 10951 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 588 9952 10132 10113 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 589 7048 7026 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 590 7026 7007 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 591 7007 6976 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 592 6976 6958 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 593 6958 6932 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 594 6932 6918 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 595 6918 6899 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 596 6899 6887 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 597 6887 6880 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 598 6880 6878 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 599 6878 6879 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 600 6879 6888 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 601 6888 6900 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 602 6900 6919 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 603 6919 6933 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 604 6933 6959 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 605 6959 6977 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 606 6977 7008 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 607 7008 7027 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 608 7027 7049 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 609 7049 7087 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 610 7087 7122 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 611 7122 7147 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 612 7147 7168 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 613 7168 7185 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 614 7185 7203 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 615 7203 7238 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 616 7238 7254 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 617 7254 7276 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 618 7276 7278 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 619 7278 7277 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 620 7277 7255 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 621 7255 7237 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 622 7237 7204 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 623 7204 7184 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 624 7184 7167 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 625 7167 7146 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 626 7146 7121 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 627 7121 7086 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 628 7086 7048 7061 {mat="nomaterial" groups="default pupill" rgb=(0 0 0)} Face 629 2051 2054 1974 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 630 1946 1983 1941 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 631 1985 1990 1962 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 632 1890 1881 1865 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 633 2036 1994 1932 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 634 1791 1813 1802 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 635 1968 1936 1900 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 636 2087 2029 2004 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 637 2055 2120 2121 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 638 2145 2063 2129 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 639 2108 2160 2139 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 640 1982 2037 1976 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 641 1942 1947 1943 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 642 1999 1958 1960 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 643 2124 1966 2184 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 644 1799 1836 1848 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 645 1844 1820 1797 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 646 1872 1765 1754 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 647 2134 2254 2255 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 648 2296 2283 2297 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 649 2215 2046 2106 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 650 2408 2306 2206 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 651 2510 2313 2438 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 652 2585 2564 2501 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 653 2431 2302 2288 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 654 2209 2079 2041 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 655 2010 2127 1970 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 656 2613 2557 2530 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 657 1840 1773 1788 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 658 2135 1909 1927 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 659 4035 3986 3910 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 660 4946 4909 4698 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 661 5251 5205 5163 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 662 5475 5476 5320 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 663 5429 5147 5430 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 664 5207 4504 4931 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 665 3711 3857 3658 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 666 4181 4224 4085 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 667 3027 3139 3037 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 668 2968 3126 3008 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 669 3055 3091 2982 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 670 2855 2906 2890 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 671 2990 2925 2972 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 672 2544 2609 2581 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 673 2888 2895 2893 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 674 4742 4885 4924 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 675 5486 5418 5485 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 676 4468 4586 4215 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 677 4574 4612 4767 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 678 4363 4446 4485 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 679 4521 4565 4525 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 680 5001 4980 4962 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 681 5252 5265 5267 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 682 5388 5481 5482 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 683 4630 4866 4895 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 684 4404 4420 4408 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 685 3997 4098 4195 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 686 3608 3705 3784 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 687 3268 3299 3388 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 688 4283 4475 4429 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 689 4873 5057 4845 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 690 4968 5090 4900 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 691 3365 3415 3418 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 692 3073 3101 3108 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 693 2542 2690 2578 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 694 2803 2748 2909 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 695 2927 2954 3151 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 696 2346 2263 2303 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 697 2337 2284 2258 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 698 2547 2448 2472 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 699 3157 2961 3162 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 700 2512 2415 2383 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 701 2315 2308 2338 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 702 2407 2483 2636 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 703 5048 5075 4947 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 704 5229 5306 5411 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 705 4795 4804 4794 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 706 4781 4787 4786 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 707 3053 3063 3057 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 708 3024 3041 3045 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 709 3032 3022 3043 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 710 5190 5137 5216 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 711 5223 5144 5206 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 712 5180 5105 5102 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 713 5009 5016 4859 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 714 4722 4740 4700 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 715 4803 4783 4970 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 716 4990 4893 4840 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 717 5173 5130 5106 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 718 4874 4887 4790 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 719 4758 4852 4720 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 720 4699 4834 4696 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 721 4685 4779 4668 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 722 3700 3486 3509 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 723 4566 4572 4591 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 724 3473 3496 3513 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 725 4888 4879 4896 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 726 4917 4892 4904 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 727 3490 3450 3460 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 728 4484 4491 4287 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 729 4791 4774 4793 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 730 4830 4808 4810 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 731 4796 4829 4805 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 732 3423 3436 3432 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 733 3438 3424 3433 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 734 5086 5045 5188 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 735 2216 2236 2240 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 736 2166 2195 2193 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 737 2406 2432 2433 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 738 2533 2569 2632 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 739 2509 2424 2269 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 740 2403 2410 2243 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 741 2467 2463 2345 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 742 2350 2441 2299 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 743 2065 1833 1804 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 744 2256 2226 2040 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 745 8991 8994 9071 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 746 9062 9098 9104 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 747 9055 9060 9083 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 748 9164 9155 9180 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 749 9051 9007 9113 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 750 9232 9254 9243 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 751 9109 9077 9145 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 752 9016 8958 9041 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 753 8925 8990 8924 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 754 8982 8899 8916 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 755 8885 8936 8906 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 756 9014 9066 9069 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 757 9100 9103 9102 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 758 9087 9046 9085 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 759 9079 8921 8859 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 760 9209 9246 9197 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 761 9225 9201 9248 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 762 9280 9173 9291 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 763 8791 8911 8790 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 764 8762 8748 8746 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 765 9003 8850 8951 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 766 8760 8662 8875 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 767 8739 8549 8611 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 768 8491 8467 8545 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 769 8742 8613 8756 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 770 8970 8860 9009 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 771 8918 9034 9075 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 772 8507 8461 8542 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 773 9272 9205 9257 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 774 9136 8910 9118 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 775 7054 7005 7131 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 776 6134 6093 6351 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 777 5840 5795 5882 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 778 5570 5569 5714 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 779 5898 5616 5617 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 780 6536 5838 6111 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 781 7186 7332 7386 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 782 6821 6864 6957 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 783 7902 8004 7997 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 784 7911 8056 8023 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 785 7917 7934 8007 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 786 8136 8189 8151 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 787 8109 8047 8063 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 788 8416 8451 8437 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 789 8146 8154 8148 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 790 6117 6156 6305 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 791 5629 5558 5557 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 792 6460 6572 6830 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 793 6434 6471 6278 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 794 6594 6675 6555 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 795 6480 6521 6518 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 796 6060 6039 6076 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 797 5777 5794 5775 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 798 5562 5663 5563 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 799 6146 6176 6417 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 800 6617 6635 6630 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 801 6947 7042 6849 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 802 7338 7435 7262 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 803 7746 7778 7656 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 804 6564 6758 6609 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 805 5991 6169 6197 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 806 5959 6069 6141 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 807 7627 7630 7676 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 808 7927 7933 7965 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 809 8357 8503 8469 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 810 8133 8296 8242 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 811 8081 8110 7894 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 812 8781 8700 8741 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 813 8761 8710 8788 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 814 8608 8515 8576 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 815 8144 7966 7945 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 816 8663 8632 8533 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 817 8707 8732 8695 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 818 8565 8640 8413 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 819 5971 5997 6091 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 820 5816 5851 5832 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 821 6239 6247 6248 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 822 6257 6264 6258 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 823 7976 7982 7980 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 824 7993 8011 7988 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 825 8013 8000 7990 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 826 5907 5856 5829 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 827 5901 5822 5839 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 828 5943 5865 5946 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 829 6025 6031 6183 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 830 6308 6325 6349 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 831 6262 6240 6067 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 832 6148 6049 6202 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 833 5914 5872 5942 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 834 6154 6168 6252 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 835 6190 6288 6328 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 836 6209 6350 6352 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 837 6266 6364 6378 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 838 7558 7343 7533 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 839 6473 6479 6455 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 840 7549 7572 7529 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 841 6162 6153 6145 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 842 6149 6125 6139 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 843 7593 7553 7582 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 844 6549 6556 6755 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 845 6271 6251 6249 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 846 6235 6213 6233 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 847 6214 6246 6238 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 848 7611 7622 7615 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 849 7620 7608 7614 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 850 6000 5962 5858 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 851 8809 8828 8805 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 852 8847 8879 8849 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 853 8612 8641 8610 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 854 8440 8502 8540 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 855 8774 8620 8563 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 856 8638 8643 8802 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 857 8582 8578 8701 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 858 8603 8694 8744 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 859 9212 8980 9241 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 860 8819 8789 9004 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 861 4301 4901 5099 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 862 5344 5787 5567 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 863 6254 6815 6038 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 864 7362 7771 6691 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 865 8112 8306 6972 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 866 8362 8331 7081 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 867 8226 8152 7045 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 868 8101 7996 7004 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 869 7880 7748 6857 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 870 7597 7252 6625 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 871 6715 6106 5973 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 872 5731 5349 5561 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 873 4975 4378 5152 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 874 3874 3535 4514 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 875 3385 3247 4276 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 876 3137 3060 4109 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 877 3011 2902 4057 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 878 2796 2762 4025 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 879 2815 3040 4144 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 880 3362 3756 4437 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 881 8352 8263 8275 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 882 8659 8603 8578 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 883 8722 8681 8771 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 884 8755 8697 8785 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 885 8708 8745 8707 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 886 8557 8519 8552 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 887 8818 8775 8813 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 888 8644 8601 8607 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 889 7792 7676 7620 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 890 6898 7149 7159 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 891 6758 6755 6754 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 892 6740 6738 6635 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 893 7601 7549 7480 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 894 7710 7796 7845 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 895 7501 7553 7592 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 896 7296 7343 7361 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 897 7135 7262 7282 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 898 6479 6578 6597 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 899 6149 6153 6243 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 900 6396 6284 6321 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 901 6528 6563 6599 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 902 6253 6359 6325 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 903 5773 5845 5865 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 904 7479 7288 7319 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 905 7678 7418 7586 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 906 7799 7498 7764 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 907 7763 7504 7784 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 908 7648 7467 7728 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 909 7406 7348 7522 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 910 7101 7169 7264 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 911 6840 7022 6970 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 912 6925 6731 6619 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 913 6389 6858 6477 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 914 6603 6897 6414 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 915 7059 7067 6838 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 916 8909 8932 8980 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 917 8500 8427 8478 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 918 8324 8464 8569 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 919 8242 8389 8357 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 920 7841 7894 7878 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 921 7980 7988 7990 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 922 5819 5733 5704 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 923 5876 5959 5991 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 924 6003 5851 6005 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 925 5909 5832 5966 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 926 5740 5746 5857 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 927 7832 8012 8170 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 928 5811 5818 5738 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 929 5743 5836 5891 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 930 5993 5972 6075 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 931 6068 6229 6242 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 932 6233 6238 6506 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 933 6125 6203 6184 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 934 5790 5866 5858 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 935 8127 8150 8171 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 936 8095 8108 8151 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 937 6859 6916 7181 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 938 8023 8107 8063 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 939 6576 6655 6821 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 940 6945 7076 7186 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 941 7706 7811 7917 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 942 5714 5728 5840 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 943 5938 5945 6134 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 944 6860 7054 7297 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 945 8472 8513 8544 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 946 7910 8005 8038 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 947 8430 8431 8511 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 948 9272 9241 9172 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 949 8586 8455 8425 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 950 8600 8542 8506 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 951 8860 8784 8669 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 952 8939 8782 8739 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 953 9198 9034 8961 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 954 9270 9130 9212 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 955 8882 8762 8881 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 956 9009 9003 9037 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 957 8916 8906 8830 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 958 9008 9069 9102 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 959 9173 9120 9051 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 960 9240 9254 9248 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 961 9193 9209 9086 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 962 8863 8746 8790 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 963 9053 9060 9049 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 964 9087 9103 9022 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 965 8952 8935 8934 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 966 8814 8886 8749 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 967 8507 8570 8502 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 968 2750 2874 2961 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 969 2467 2441 2386 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 970 2274 2364 2325 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 971 2260 2349 2289 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 972 2298 2340 2338 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 973 2527 2489 2494 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 974 2268 2227 2231 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 975 2436 2443 2402 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 976 3367 3423 3424 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 977 4173 3884 3894 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 978 4287 4283 4202 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 979 4404 4305 4303 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 980 3561 3496 3445 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 981 3197 3248 3336 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 982 3451 3490 3541 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 983 3680 3700 3747 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 984 3762 3784 3908 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 985 4442 4463 4566 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 986 4767 4800 4888 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 987 4594 4726 4761 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 988 4440 4476 4513 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 989 4859 4783 4722 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 990 5180 5200 5269 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 991 3723 3754 3562 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 992 3455 3627 3363 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 993 3281 3544 3244 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 994 3262 3537 3282 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 995 3314 3573 3398 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 996 3520 3693 3639 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 997 3782 3872 3940 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 998 4072 4016 4204 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 999 4312 4122 4417 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1000 4187 4656 4567 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1001 4632 4149 4434 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1002 4206 3972 3981 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1003 2065 2113 2136 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1004 2606 2650 2566 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1005 2582 2480 2583 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1006 2690 2663 2803 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1007 3165 3151 3203 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1008 3119 3114 3043 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1009 5306 5226 5330 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1010 5057 5090 5169 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1011 5194 5042 5040 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1012 5213 5135 5080 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1013 5294 5300 5189 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1014 3072 2872 3023 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1015 5302 5227 5234 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1016 5155 5209 5297 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1017 4963 5074 5053 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1018 4801 4815 4969 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1019 4523 4537 4805 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1020 4858 4839 4917 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1021 5188 5179 5255 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1022 2871 2891 2913 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1023 2890 2929 2940 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1024 3739 4061 4105 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1025 2972 2926 3008 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1026 4224 4370 4455 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1027 3857 3964 4100 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1028 3091 3204 3327 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1029 5205 5309 5320 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1030 4909 5103 5110 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1031 3746 3986 4186 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1032 2576 2552 2563 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1033 3046 3058 3070 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1034 2474 2556 2568 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1035 1804 1773 1873 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1036 2634 2611 2476 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1037 2558 2530 2462 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1038 2394 2270 2209 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1039 2313 2272 2110 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1040 2084 2010 1847 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1041 1833 1915 1775 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1042 2283 2163 2164 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1043 2011 2046 2041 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1044 2218 2213 2139 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1045 1960 1943 1976 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1046 1994 1925 1872 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1047 1797 1791 1805 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1048 1959 1836 1852 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1049 2255 2297 2181 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1050 1985 1992 1996 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1051 1958 1979 1962 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1052 2111 2109 2093 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1053 2300 2159 2235 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1054 2569 2502 2557 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1055 3971 3958 3832 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1056 1945 1887 1895 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1057 2804 2691 2798 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1058 2031 2080 2273 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1059 4188 4571 4470 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1060 4506 4421 4294 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1061 4452 4197 4419 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1062 4691 4472 4589 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1063 5022 5408 5407 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1064 5127 5351 5356 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1065 4710 4688 4493 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1066 7082 7068 7211 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1067 9158 9099 9150 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1068 8356 8248 8263 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1069 8772 8964 9013 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1070 6474 6856 6570 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1071 6616 6534 6748 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1072 6847 6588 6618 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1073 6568 6357 6457 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1074 5644 6018 5643 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1075 5685 5688 5918 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1076 6360 6339 6547 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1077 8768 8631 8641 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1078 8751 8626 8581 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1079 8893 8758 8676 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1080 8969 8872 8879 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1081 8757 8646 8828 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1082 6082 5918 5925 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1083 5999 6132 6115 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1084 5892 5902 6054 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1085 6470 6114 6548 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1086 6032 5979 6298 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1087 5989 6043 6303 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1088 6519 6109 6429 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1089 8602 8520 8522 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1090 8211 8281 8339 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1091 6877 6593 6702 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1092 8933 9126 9211 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1093 9158 9073 9013 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1094 8539 8443 8536 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1095 6260 6317 6809 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1096 2406 2416 2278 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1097 2464 2419 2295 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1098 2369 2286 2151 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1099 2166 2172 2074 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1100 2216 2400 2287 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1101 5121 5127 4956 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1102 4911 5046 4926 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1103 5143 5154 4985 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1104 5552 5705 5329 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1105 4492 4927 4575 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1106 4748 5068 5008 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1107 4997 5058 4744 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1108 4933 4524 4617 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1109 2525 2442 2523 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1110 2711 2764 2834 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1111 4339 4447 4169 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1112 1834 1919 2112 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1113 1972 1887 2031 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1114 2588 2508 2605 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1115 4234 4731 4814 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1116 3742 3795 3703 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 1117 3847 3844 3850 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 1118 7251 7301 7340 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 1119 7199 7196 7194 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 1120 7391 7346 7342 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 1121 7251 7270 7194 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 1122 3701 3696 3655 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 1123 3850 3776 3795 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 1124 2577 2584 2500 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 1125 2496 2562 2570 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 1126 8463 8470 8543 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 1127 8485 8548 8479 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 1128 6152 6137 6035 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 1129 6250 6234 6131 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 1130 4905 4889 5004 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 1131 4912 4809 4792 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 1132 6083 6306 6533 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 1133 6588 6605 6377 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 1134 6367 6577 6534 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 1135 5700 5553 5707 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 1136 4955 4977 4710 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 1137 4669 4433 4452 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 1138 4881 4506 4464 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 1139 3979 4013 3992 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1140 3979 4033 4013 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1141 3979 4066 4033 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1142 3979 4084 4066 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1143 3979 4114 4084 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1144 3979 4128 4114 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1145 3979 4147 4128 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1146 3979 4159 4147 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1147 3979 4167 4159 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1148 3979 4168 4167 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1149 3979 4166 4168 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1150 3979 4158 4166 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1151 3979 4146 4158 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1152 3979 4127 4146 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1153 3979 4113 4127 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1154 3979 4083 4113 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1155 3979 4065 4083 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1156 3979 4032 4065 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1157 3979 4012 4032 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1158 3979 3991 4012 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1159 3979 3953 3991 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1160 3979 3919 3953 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1161 3979 3896 3919 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1162 3979 3875 3896 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1163 3979 3858 3875 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1164 3979 3838 3858 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1165 3979 3805 3838 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1166 3979 3793 3805 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1167 3979 3768 3793 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1168 3979 3766 3768 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1169 3979 3769 3766 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1170 3979 3794 3769 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1171 3979 3806 3794 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1172 3979 3839 3806 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1173 3979 3859 3839 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1174 3979 3876 3859 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1175 3979 3897 3876 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1176 3979 3920 3897 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1177 3979 3954 3920 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1178 3979 3992 3954 {mat="nomaterial" groups="default pupilr" rgb=(0 0 0)} Face 1179 672 757 751 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1180 751 662 672 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1181 617 587 703 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1182 703 714 617 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1183 583 632 635 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1184 635 574 583 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1185 574 635 622 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1186 622 606 574 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1187 619 643 583 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1188 583 574 619 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1189 334 298 311 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1190 311 232 334 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1191 21 15 11 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1192 11 32 21 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1193 160 231 167 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1194 167 92 160 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1195 289 223 306 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1196 306 344 289 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1197 10373 10383 10294 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1198 10294 10288 10373 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1199 10428 10331 10342 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1200 10342 10458 10428 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1201 10471 10410 10413 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1202 10413 10462 10471 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1203 10439 10423 10410 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1204 10410 10471 10439 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1205 10426 10471 10462 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1206 10462 10402 10426 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1207 10711 10813 10734 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1208 10734 10747 10711 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1209 11024 11013 11034 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1210 11034 11030 11024 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1211 10885 10953 10878 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1212 10878 10814 10885 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1213 10756 10701 10739 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1214 10739 10822 10756 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1215 67 52 59 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1216 59 78 67 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 1217 3473 3566 3509 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1218 3509 3419 3473 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1219 8493 8472 8544 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1220 8544 8484 8493 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1221 2798 2750 2961 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1222 2961 2778 2798 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1223 4896 4847 4887 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1224 4887 4904 4896 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 1225 8948 8757 8828 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1226 8828 8840 8948 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1227 6018 6045 6450 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1228 6450 6245 6018 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1229 6799 6260 6809 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1230 6809 7014 6799 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1231 2096 2202 2216 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1232 2216 2287 2096 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1233 5022 4798 4596 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1234 4596 4995 5022 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1235 4302 4089 4234 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1236 4234 4814 4302 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 1237 6357 6339 6533 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 1238 6533 6474 6357 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 1239 4691 4571 4507 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 1240 4507 4710 4691 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 1241 4237 4286 11045 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1242 4286 4078 11045 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1243 4078 4037 11045 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1244 4037 4237 11045 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1245 4037 4078 11046 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1246 4078 3905 11046 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1247 3905 3868 11046 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1248 3868 4037 11046 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1249 3868 3905 11047 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1250 3905 3710 11047 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1251 3710 3666 11047 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1252 3666 3868 11047 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1253 3666 3710 11048 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1254 3710 3553 11048 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1255 3553 3518 11048 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1256 3518 3666 11048 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1257 3518 3553 11049 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1258 3553 3408 11049 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1259 3408 3369 11049 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1260 3369 3518 11049 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1261 3369 3408 11050 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1262 3408 3267 11050 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1263 3267 3226 11050 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1264 3226 3369 11050 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1265 3226 3267 11051 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1266 3267 3156 11051 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1267 3156 3116 11051 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1268 3116 3226 11051 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1269 3116 3156 11052 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1270 3156 3069 11052 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1271 3069 3021 11052 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1272 3021 3116 11052 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1273 3021 3069 11053 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1274 3069 2998 11053 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1275 2998 2949 11053 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1276 2949 3021 11053 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1277 2949 2998 11054 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1278 2998 2980 11054 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1279 2980 2924 11054 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1280 2924 2949 11054 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1281 2924 2980 11055 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1282 2980 2997 11055 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1283 2997 2948 11055 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1284 2948 2924 11055 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1285 2948 2997 11056 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1286 2997 3068 11056 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1287 3068 3020 11056 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1288 3020 2948 11056 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1289 3020 3068 11057 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1290 3068 3155 11057 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1291 3155 3115 11057 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1292 3115 3020 11057 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1293 3115 3155 11058 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1294 3155 3266 11058 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1295 3266 3225 11058 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1296 3225 3115 11058 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1297 3225 3266 11059 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1298 3266 3407 11059 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1299 3407 3368 11059 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1300 3368 3225 11059 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1301 3368 3407 11060 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1302 3407 3552 11060 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1303 3552 3517 11060 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1304 3517 3368 11060 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1305 3517 3552 11061 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1306 3552 3709 11061 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1307 3709 3665 11061 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1308 3665 3517 11061 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1309 3665 3709 11062 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1310 3709 3904 11062 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1311 3904 3867 11062 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1312 3867 3665 11062 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1313 3867 3904 11063 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1314 3904 4077 11063 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1315 4077 4036 11063 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1316 4036 3867 11063 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1317 4036 4077 11064 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1318 4077 4285 11064 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1319 4285 4236 11064 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1320 4236 4036 11064 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1321 4236 4285 11065 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1322 4285 4477 11065 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1323 4477 4415 11065 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1324 4415 4236 11065 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1325 4415 4477 11066 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1326 4477 4776 11066 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1327 4776 4707 11066 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1328 4707 4415 11066 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1329 4707 4776 11067 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1330 4776 5020 11067 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1331 5020 4952 11067 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1332 4952 4707 11067 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1333 4952 5020 11068 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1334 5020 5203 11068 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1335 5203 5158 11068 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1336 5158 4952 11068 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1337 5158 5203 11069 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1338 5203 5401 11069 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1339 5401 5318 11069 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1340 5318 5158 11069 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1341 5318 5401 11070 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1342 5401 5555 11070 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1343 5555 5473 11070 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1344 5473 5318 11070 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1345 5473 5555 11071 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1346 5555 5666 11071 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1347 5666 5588 11071 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1348 5588 5473 11071 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1349 5588 5666 11072 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1350 5666 5753 11072 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1351 5753 5678 11072 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1352 5678 5588 11072 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1353 5678 5753 11073 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1354 5753 5820 11073 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1355 5820 5734 11073 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1356 5734 5678 11073 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1357 5734 5820 11074 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1358 5820 5843 11074 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1359 5843 5747 11074 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1360 5747 5734 11074 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1361 5747 5843 11075 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1362 5843 5821 11075 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1363 5821 5735 11075 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1364 5735 5747 11075 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1365 5735 5821 11076 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1366 5821 5754 11076 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1367 5754 5679 11076 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1368 5679 5735 11076 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1369 5679 5754 11077 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1370 5754 5667 11077 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1371 5667 5589 11077 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1372 5589 5679 11077 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1373 5589 5667 11078 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1374 5667 5556 11078 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1375 5556 5474 11078 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1376 5474 5589 11078 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1377 5474 5556 11079 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1378 5556 5402 11079 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1379 5402 5319 11079 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1380 5319 5474 11079 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1381 5319 5402 11080 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1382 5402 5204 11080 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1383 5204 5159 11080 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1384 5159 5319 11080 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1385 5159 5204 11081 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1386 5204 5021 11081 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1387 5021 4953 11081 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1388 4953 5159 11081 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1389 4953 5021 11082 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1390 5021 4777 11082 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1391 4777 4708 11082 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1392 4708 4953 11082 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1393 4708 4777 11083 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1394 4777 4478 11083 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1395 4478 4416 11083 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1396 4416 4708 11083 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1397 4416 4478 11084 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1398 4478 4286 11084 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1399 4286 4237 11084 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1400 4237 4416 11084 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1401 4185 4237 11085 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1402 4237 4037 11085 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1403 4037 4006 11085 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1404 4006 4185 11085 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1405 4006 4037 11086 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1406 4037 3868 11086 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1407 3868 3836 11086 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1408 3836 4006 11086 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1409 3836 3868 11087 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1410 3868 3666 11087 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1411 3666 3646 11087 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1412 3646 3836 11087 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1413 3646 3666 11088 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1414 3666 3518 11088 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1415 3518 3500 11088 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1416 3500 3646 11088 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1417 3500 3518 11089 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1418 3518 3369 11089 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1419 3369 3351 11089 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1420 3351 3500 11089 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1421 3351 3369 11090 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1422 3369 3226 11090 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1423 3226 3214 11090 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1424 3214 3351 11090 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1425 3214 3226 11091 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1426 3226 3116 11091 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1427 3116 3104 11091 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1428 3104 3214 11091 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1429 3104 3116 11092 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1430 3116 3021 11092 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1431 3021 3015 11092 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1432 3015 3104 11092 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1433 3015 3021 11093 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1434 3021 2949 11093 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1435 2949 2943 11093 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1436 2943 3015 11093 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1437 2943 2949 11094 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1438 2949 2924 11094 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1439 2924 2921 11094 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1440 2921 2943 11094 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1441 2921 2924 11095 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1442 2924 2948 11095 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1443 2948 2942 11095 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1444 2942 2921 11095 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1445 2942 2948 11096 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1446 2948 3020 11096 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1447 3020 3014 11096 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1448 3014 2942 11096 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1449 3014 3020 11097 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1450 3020 3115 11097 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1451 3115 3103 11097 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1452 3103 3014 11097 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1453 3103 3115 11098 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1454 3115 3225 11098 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1455 3225 3213 11098 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1456 3213 3103 11098 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1457 3213 3225 11099 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1458 3225 3368 11099 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1459 3368 3350 11099 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1460 3350 3213 11099 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1461 3350 3368 11100 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1462 3368 3517 11100 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1463 3517 3499 11100 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1464 3499 3350 11100 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1465 3499 3517 11101 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1466 3517 3665 11101 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1467 3665 3645 11101 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1468 3645 3499 11101 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1469 3645 3665 11102 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1470 3665 3867 11102 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1471 3867 3835 11102 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1472 3835 3645 11102 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1473 3835 3867 11103 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1474 3867 4036 11103 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1475 4036 4005 11103 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1476 4005 3835 11103 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1477 4005 4036 11104 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1478 4036 4236 11104 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1479 4236 4184 11104 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1480 4184 4005 11104 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1481 4184 4236 11105 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1482 4236 4415 11105 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1483 4415 4361 11105 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1484 4361 4184 11105 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1485 4361 4415 11106 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1486 4415 4707 11106 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1487 4707 4615 11106 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1488 4615 4361 11106 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1489 4615 4707 11107 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1490 4707 4952 11107 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1491 4952 4876 11107 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1492 4876 4615 11107 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1493 4876 4952 11108 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1494 4952 5158 11108 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1495 5158 5066 11108 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1496 5066 4876 11108 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1497 5066 5158 11109 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1498 5158 5318 11109 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1499 5318 5220 11109 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1500 5220 5066 11109 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1501 5220 5318 11110 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1502 5318 5473 11110 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1503 5473 5374 11110 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1504 5374 5220 11110 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1505 5374 5473 11111 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1506 5473 5588 11111 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1507 5588 5483 11111 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1508 5483 5374 11111 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1509 5483 5588 11112 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1510 5588 5678 11112 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1511 5678 5575 11112 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1512 5575 5483 11112 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1513 5575 5678 11113 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1514 5678 5734 11113 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1515 5734 5622 11113 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1516 5622 5575 11113 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1517 5622 5734 11114 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1518 5734 5747 11114 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1519 5747 5636 11114 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1520 5636 5622 11114 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1521 5636 5747 11115 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1522 5747 5735 11115 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1523 5735 5623 11115 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1524 5623 5636 11115 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1525 5623 5735 11116 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1526 5735 5679 11116 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1527 5679 5576 11116 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1528 5576 5623 11116 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1529 5576 5679 11117 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1530 5679 5589 11117 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1531 5589 5484 11117 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1532 5484 5576 11117 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1533 5484 5589 11118 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1534 5589 5474 11118 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1535 5474 5375 11118 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1536 5375 5484 11118 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1537 5375 5474 11119 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1538 5474 5319 11119 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1539 5319 5221 11119 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1540 5221 5375 11119 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1541 5221 5319 11120 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1542 5319 5159 11120 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1543 5159 5067 11120 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1544 5067 5221 11120 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1545 5067 5159 11121 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1546 5159 4953 11121 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1547 4953 4877 11121 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1548 4877 5067 11121 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1549 4877 4953 11122 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1550 4953 4708 11122 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1551 4708 4616 11122 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1552 4616 4877 11122 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1553 4616 4708 11123 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1554 4708 4416 11123 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1555 4416 4362 11123 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1556 4362 4616 11123 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1557 4362 4416 11124 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1558 4416 4237 11124 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1559 4237 4185 11124 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1560 4185 4362 11124 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1561 4135 4185 11125 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1562 4185 4006 11125 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1563 4006 3970 11125 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1564 3970 4135 11125 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1565 3970 4006 11126 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1566 4006 3836 11126 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1567 3836 3803 11126 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1568 3803 3970 11126 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1569 3803 3836 11127 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1570 3836 3646 11127 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1571 3646 3634 11127 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1572 3634 3803 11127 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1573 3634 3646 11128 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1574 3646 3500 11128 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1575 3500 3498 11128 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1576 3498 3634 11128 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1577 3498 3500 11129 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1578 3500 3351 11129 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1579 3351 3360 11129 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1580 3360 3498 11129 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1581 3360 3351 11130 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1582 3351 3214 11130 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1583 3214 3235 11130 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1584 3235 3360 11130 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1585 3235 3214 11131 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1586 3214 3104 11131 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1587 3104 3135 11131 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1588 3135 3235 11131 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1589 3135 3104 11132 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1590 3104 3015 11132 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1591 3015 3052 11132 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1592 3052 3135 11132 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1593 3052 3015 11133 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1594 3015 2943 11133 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1595 2943 2995 11133 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1596 2995 3052 11133 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1597 2995 2943 11134 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1598 2943 2921 11134 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1599 2921 2975 11134 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1600 2975 2995 11134 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1601 2975 2921 11135 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1602 2921 2942 11135 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1603 2942 2994 11135 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1604 2994 2975 11135 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1605 2994 2942 11136 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1606 2942 3014 11136 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1607 3014 3051 11136 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1608 3051 2994 11136 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1609 3051 3014 11137 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1610 3014 3103 11137 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1611 3103 3134 11137 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1612 3134 3051 11137 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1613 3134 3103 11138 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1614 3103 3213 11138 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1615 3213 3234 11138 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1616 3234 3134 11138 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1617 3234 3213 11139 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1618 3213 3350 11139 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1619 3350 3359 11139 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1620 3359 3234 11139 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1621 3359 3350 11140 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1622 3350 3499 11140 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1623 3499 3497 11140 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1624 3497 3359 11140 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1625 3497 3499 11141 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1626 3499 3645 11141 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1627 3645 3633 11141 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1628 3633 3497 11141 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1629 3633 3645 11142 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1630 3645 3835 11142 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1631 3835 3802 11142 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1632 3802 3633 11142 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1633 3802 3835 11143 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1634 3835 4005 11143 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1635 4005 3969 11143 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1636 3969 3802 11143 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1637 3969 4005 11144 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1638 4005 4184 11144 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1639 4184 4134 11144 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1640 4134 3969 11144 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1641 4134 4184 11145 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1642 4184 4361 11145 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1643 4361 4308 11145 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1644 4308 4134 11145 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1645 4308 4361 11146 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1646 4361 4615 11146 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1647 4615 4489 11146 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1648 4489 4308 11146 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1649 4489 4615 11147 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1650 4615 4876 11147 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1651 4876 4756 11147 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1652 4756 4489 11147 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1653 4756 4876 11148 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1654 4876 5066 11148 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1655 5066 4958 11148 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1656 4958 4756 11148 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1657 4958 5066 11149 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1658 5066 5220 11149 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1659 5220 5122 11149 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1660 5122 4958 11149 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1661 5122 5220 11150 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1662 5220 5374 11150 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1663 5374 5246 11150 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1664 5246 5122 11150 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1665 5246 5374 11151 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1666 5374 5483 11151 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1667 5483 5357 11151 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1668 5357 5246 11151 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1669 5357 5483 11152 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1670 5483 5575 11152 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1671 5575 5445 11152 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1672 5445 5357 11152 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1673 5445 5575 11153 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1674 5575 5622 11153 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1675 5622 5479 11153 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1676 5479 5445 11153 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1677 5479 5622 11154 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1678 5622 5636 11154 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1679 5636 5489 11154 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1680 5489 5479 11154 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1681 5489 5636 11155 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1682 5636 5623 11155 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1683 5623 5480 11155 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1684 5480 5489 11155 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1685 5480 5623 11156 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1686 5623 5576 11156 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1687 5576 5446 11156 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1688 5446 5480 11156 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1689 5446 5576 11157 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1690 5576 5484 11157 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1691 5484 5358 11157 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1692 5358 5446 11157 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1693 5358 5484 11158 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1694 5484 5375 11158 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1695 5375 5247 11158 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1696 5247 5358 11158 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1697 5247 5375 11159 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1698 5375 5221 11159 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1699 5221 5123 11159 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1700 5123 5247 11159 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1701 5123 5221 11160 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1702 5221 5067 11160 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1703 5067 4959 11160 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1704 4959 5123 11160 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1705 4959 5067 11161 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1706 5067 4877 11161 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1707 4877 4757 11161 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1708 4757 4959 11161 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1709 4757 4877 11162 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1710 4877 4616 11162 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1711 4616 4490 11162 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1712 4490 4757 11162 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1713 4490 4616 11163 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1714 4616 4362 11163 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1715 4362 4309 11163 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1716 4309 4490 11163 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1717 4309 4362 11164 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1718 4362 4185 11164 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1719 4185 4135 11164 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1720 4135 4309 11164 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1721 4095 4135 11165 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1722 4135 3970 11165 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1723 3970 3950 11165 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1724 3950 4095 11165 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1725 3950 3970 11166 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1726 3970 3803 11166 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1727 3803 3781 11166 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1728 3781 3950 11166 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1729 3781 3803 11167 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1730 3803 3634 11167 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1731 3634 3638 11167 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1732 3638 3781 11167 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1733 3638 3634 11168 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1734 3634 3498 11168 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1735 3498 3516 11168 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1736 3516 3638 11168 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1737 3516 3498 11169 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1738 3498 3360 11169 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1739 3360 3397 11169 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1740 3397 3516 11169 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1741 3397 3360 11170 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1742 3360 3235 11170 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1743 3235 3279 11170 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1744 3279 3397 11170 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1745 3279 3235 11171 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1746 3235 3135 11171 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1747 3135 3194 11171 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1748 3194 3279 11171 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1749 3194 3135 11172 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1750 3135 3052 11172 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1751 3052 3125 11172 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1752 3125 3194 11172 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1753 3125 3052 11173 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1754 3052 2995 11173 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1755 2995 3078 11173 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1756 3078 3125 11173 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1757 3078 2995 11174 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1758 2995 2975 11174 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1759 2975 3065 11174 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1760 3065 3078 11174 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1761 3065 2975 11175 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1762 2975 2994 11175 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1763 2994 3077 11175 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1764 3077 3065 11175 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1765 3077 2994 11176 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1766 2994 3051 11176 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1767 3051 3124 11176 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1768 3124 3077 11176 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1769 3124 3051 11177 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1770 3051 3134 11177 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1771 3134 3193 11177 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1772 3193 3124 11177 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1773 3193 3134 11178 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1774 3134 3234 11178 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1775 3234 3278 11178 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1776 3278 3193 11178 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1777 3278 3234 11179 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1778 3234 3359 11179 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1779 3359 3396 11179 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1780 3396 3278 11179 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1781 3396 3359 11180 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1782 3359 3497 11180 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1783 3497 3515 11180 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1784 3515 3396 11180 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1785 3515 3497 11181 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1786 3497 3633 11181 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1787 3633 3637 11181 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1788 3637 3515 11181 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1789 3637 3633 11182 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1790 3633 3802 11182 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1791 3802 3780 11182 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1792 3780 3637 11182 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1793 3780 3802 11183 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1794 3802 3969 11183 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1795 3969 3949 11183 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1796 3949 3780 11183 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1797 3949 3969 11184 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1798 3969 4134 11184 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1799 4134 4094 11184 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1800 4094 3949 11184 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1801 4094 4134 11185 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1802 4134 4308 11185 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1803 4308 4261 11185 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1804 4261 4094 11185 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1805 4261 4308 11186 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1806 4308 4489 11186 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1807 4489 4406 11186 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1808 4406 4261 11186 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1809 4406 4489 11187 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1810 4489 4756 11187 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1811 4756 4624 11187 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1812 4624 4406 11187 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1813 4624 4756 11188 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1814 4756 4958 11188 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1815 4958 4832 11188 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1816 4832 4624 11188 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1817 4832 4958 11189 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1818 4958 5122 11189 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1819 5122 4981 11189 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1820 4981 4832 11189 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1821 4981 5122 11190 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1822 5122 5246 11190 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1823 5246 5108 11190 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1824 5108 4981 11190 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1825 5108 5246 11191 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1826 5246 5357 11191 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1827 5357 5192 11191 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1828 5192 5108 11191 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1829 5192 5357 11192 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1830 5357 5445 11192 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1831 5445 5272 11192 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1832 5272 5192 11192 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1833 5272 5445 11193 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1834 5445 5479 11193 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1835 5479 5311 11193 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1836 5311 5272 11193 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1837 5311 5479 11194 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1838 5479 5489 11194 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1839 5489 5325 11194 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1840 5325 5311 11194 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1841 5325 5489 11195 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1842 5489 5480 11195 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1843 5480 5312 11195 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1844 5312 5325 11195 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1845 5312 5480 11196 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1846 5480 5446 11196 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1847 5446 5273 11196 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1848 5273 5312 11196 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1849 5273 5446 11197 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1850 5446 5358 11197 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1851 5358 5193 11197 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1852 5193 5273 11197 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1853 5193 5358 11198 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1854 5358 5247 11198 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1855 5247 5109 11198 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1856 5109 5193 11198 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1857 5109 5247 11199 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1858 5247 5123 11199 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1859 5123 4982 11199 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1860 4982 5109 11199 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1861 4982 5123 11200 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1862 5123 4959 11200 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1863 4959 4833 11200 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1864 4833 4982 11200 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1865 4833 4959 11201 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1866 4959 4757 11201 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1867 4757 4625 11201 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1868 4625 4833 11201 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1869 4625 4757 11202 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1870 4757 4490 11202 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1871 4490 4407 11202 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1872 4407 4625 11202 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1873 4407 4490 11203 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1874 4490 4309 11203 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1875 4309 4262 11203 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1876 4262 4407 11203 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1877 4262 4309 11204 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1878 4309 4135 11204 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1879 4135 4095 11204 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1880 4095 4262 11204 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1881 4063 4095 11205 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1882 4095 3950 11205 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1883 3950 3931 11205 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1884 3931 4063 11205 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1885 3931 3950 11206 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1886 3950 3781 11206 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1887 3781 3790 11206 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1888 3790 3931 11206 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1889 3790 3781 11207 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1890 3781 3638 11207 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1891 3638 3657 11207 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1892 3657 3790 11207 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1893 3657 3638 11208 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1894 3638 3516 11208 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1895 3516 3550 11208 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1896 3550 3657 11208 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1897 3550 3516 11209 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1898 3516 3397 11209 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1899 3397 3443 11209 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1900 3443 3550 11209 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1901 3443 3397 11210 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1902 3397 3279 11210 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1903 3279 3353 11210 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1904 3353 3443 11210 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1905 3353 3279 11211 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1906 3279 3194 11211 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1907 3194 3274 11211 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1908 3274 3353 11211 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1909 3274 3194 11212 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1910 3194 3125 11212 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1911 3125 3211 11212 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1912 3211 3274 11212 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1913 3211 3125 11213 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1914 3125 3078 11213 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1915 3078 3181 11213 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1916 3181 3211 11213 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1917 3181 3078 11214 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1918 3078 3065 11214 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1919 3065 3171 11214 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1920 3171 3181 11214 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1921 3171 3065 11215 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1922 3065 3077 11215 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1923 3077 3180 11215 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1924 3180 3171 11215 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1925 3180 3077 11216 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1926 3077 3124 11216 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1927 3124 3210 11216 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1928 3210 3180 11216 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1929 3210 3124 11217 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1930 3124 3193 11217 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1931 3193 3273 11217 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1932 3273 3210 11217 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1933 3273 3193 11218 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1934 3193 3278 11218 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1935 3278 3352 11218 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1936 3352 3273 11218 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1937 3352 3278 11219 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1938 3278 3396 11219 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1939 3396 3442 11219 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1940 3442 3352 11219 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1941 3442 3396 11220 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1942 3396 3515 11220 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1943 3515 3549 11220 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1944 3549 3442 11220 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1945 3549 3515 11221 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1946 3515 3637 11221 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1947 3637 3656 11221 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1948 3656 3549 11221 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1949 3656 3637 11222 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1950 3637 3780 11222 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1951 3780 3789 11222 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1952 3789 3656 11222 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1953 3789 3780 11223 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1954 3780 3949 11223 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1955 3949 3930 11223 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1956 3930 3789 11223 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1957 3930 3949 11224 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1958 3949 4094 11224 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1959 4094 4062 11224 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1960 4062 3930 11224 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1961 4062 4094 11225 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1962 4094 4261 11225 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1963 4261 4193 11225 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1964 4193 4062 11225 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1965 4193 4261 11226 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1966 4261 4406 11226 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1967 4406 4323 11226 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1968 4323 4193 11226 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1969 4323 4406 11227 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1970 4406 4624 11227 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1971 4624 4459 11227 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1972 4459 4323 11227 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1973 4459 4624 11228 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1974 4624 4832 11228 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1975 4832 4665 11228 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1976 4665 4459 11228 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1977 4665 4832 11229 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1978 4832 4981 11229 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1979 4981 4822 11229 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1980 4822 4665 11229 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1981 4822 4981 11230 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1982 4981 5108 11230 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1983 5108 4937 11230 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1984 4937 4822 11230 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1985 4937 5108 11231 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1986 5108 5192 11231 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1987 5192 5023 11231 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1988 5023 4937 11231 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1989 5023 5192 11232 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1990 5192 5272 11232 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1991 5272 5092 11232 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1992 5092 5023 11232 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1993 5092 5272 11233 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1994 5272 5311 11233 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1995 5311 5132 11233 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1996 5132 5092 11233 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1997 5132 5311 11234 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1998 5311 5325 11234 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 1999 5325 5148 11234 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2000 5148 5132 11234 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2001 5148 5325 11235 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2002 5325 5312 11235 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2003 5312 5133 11235 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2004 5133 5148 11235 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2005 5133 5312 11236 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2006 5312 5273 11236 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2007 5273 5093 11236 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2008 5093 5133 11236 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2009 5093 5273 11237 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2010 5273 5193 11237 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2011 5193 5024 11237 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2012 5024 5093 11237 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2013 5024 5193 11238 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2014 5193 5109 11238 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2015 5109 4938 11238 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2016 4938 5024 11238 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2017 4938 5109 11239 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2018 5109 4982 11239 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2019 4982 4823 11239 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2020 4823 4938 11239 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2021 4823 4982 11240 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2022 4982 4833 11240 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2023 4833 4666 11240 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2024 4666 4823 11240 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2025 4666 4833 11241 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2026 4833 4625 11241 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2027 4625 4460 11241 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2028 4460 4666 11241 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2029 4460 4625 11242 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2030 4625 4407 11242 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2031 4407 4324 11242 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2032 4324 4460 11242 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2033 4324 4407 11243 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2034 4407 4262 11243 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2035 4262 4194 11243 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2036 4194 4324 11243 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2037 4194 4262 11244 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2038 4262 4095 11244 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2039 4095 4063 11244 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2040 4063 4194 11244 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2041 4027 4063 11245 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2042 4063 3931 11245 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2043 3931 3922 11245 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2044 3922 4027 11245 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2045 3922 3931 11246 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2046 3931 3790 11246 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2047 3790 3810 11246 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2048 3810 3922 11246 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2049 3810 3790 11247 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2050 3790 3657 11247 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2051 3657 3690 11247 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2052 3690 3810 11247 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2053 3690 3657 11248 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2054 3657 3550 11248 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2055 3550 3596 11248 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2056 3596 3690 11248 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2057 3596 3550 11249 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2058 3550 3443 11249 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2059 3443 3526 11249 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2060 3526 3596 11249 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2061 3526 3443 11250 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2062 3443 3353 11250 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2063 3353 3441 11250 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2064 3441 3526 11250 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2065 3441 3353 11251 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2066 3353 3274 11251 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2067 3274 3387 11251 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2068 3387 3441 11251 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2069 3387 3274 11252 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2070 3274 3211 11252 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2071 3211 3332 11252 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2072 3332 3387 11252 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2073 3332 3211 11253 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2074 3211 3181 11253 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2075 3181 3311 11253 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2076 3311 3332 11253 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2077 3311 3181 11254 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2078 3181 3171 11254 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2079 3171 3297 11254 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2080 3297 3311 11254 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2081 3297 3171 11255 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2082 3171 3180 11255 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2083 3180 3310 11255 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2084 3310 3297 11255 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2085 3310 3180 11256 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2086 3180 3210 11256 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2087 3210 3331 11256 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2088 3331 3310 11256 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2089 3331 3210 11257 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2090 3210 3273 11257 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2091 3273 3386 11257 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2092 3386 3331 11257 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2093 3386 3273 11258 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2094 3273 3352 11258 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2095 3352 3440 11258 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2096 3440 3386 11258 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2097 3440 3352 11259 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2098 3352 3442 11259 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2099 3442 3525 11259 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2100 3525 3440 11259 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2101 3525 3442 11260 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2102 3442 3549 11260 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2103 3549 3595 11260 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2104 3595 3525 11260 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2105 3595 3549 11261 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2106 3549 3656 11261 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2107 3656 3689 11261 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2108 3689 3595 11261 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2109 3689 3656 11262 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2110 3656 3789 11262 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2111 3789 3809 11262 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2112 3809 3689 11262 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2113 3809 3789 11263 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2114 3789 3930 11263 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2115 3930 3921 11263 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2116 3921 3809 11263 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2117 3921 3930 11264 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2118 3930 4062 11264 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2119 4062 4026 11264 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2120 4026 3921 11264 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2121 4026 4062 11265 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2122 4062 4193 11265 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2123 4193 4141 11265 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2124 4141 4026 11265 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2125 4141 4193 11266 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2126 4193 4323 11266 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2127 4323 4263 11266 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2128 4263 4141 11266 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2129 4263 4323 11267 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2130 4323 4459 11267 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2131 4459 4350 11267 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2132 4350 4263 11267 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2133 4350 4459 11268 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2134 4459 4665 11268 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2135 4665 4457 11268 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2136 4457 4350 11268 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2137 4457 4665 11269 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2138 4665 4822 11269 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2139 4822 4610 11269 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2140 4610 4457 11269 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2141 4610 4822 11270 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2142 4822 4937 11270 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2143 4937 4733 11270 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2144 4733 4610 11270 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2145 4733 4937 11271 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2146 4937 5023 11271 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2147 5023 4819 11271 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2148 4819 4733 11271 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2149 4819 5023 11272 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2150 5023 5092 11272 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2151 5092 4883 11272 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2152 4883 4819 11272 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2153 4883 5092 11273 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2154 5092 5132 11273 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2155 5132 4907 11273 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2156 4907 4883 11273 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2157 4907 5132 11274 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2158 5132 5148 11274 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2159 5148 4921 11274 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2160 4921 4907 11274 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2161 4921 5148 11275 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2162 5148 5133 11275 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2163 5133 4908 11275 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2164 4908 4921 11275 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2165 4908 5133 11276 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2166 5133 5093 11276 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2167 5093 4884 11276 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2168 4884 4908 11276 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2169 4884 5093 11277 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2170 5093 5024 11277 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2171 5024 4820 11277 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2172 4820 4884 11277 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2173 4820 5024 11278 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2174 5024 4938 11278 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2175 4938 4734 11278 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2176 4734 4820 11278 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2177 4734 4938 11279 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2178 4938 4823 11279 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2179 4823 4611 11279 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2180 4611 4734 11279 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2181 4611 4823 11280 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2182 4823 4666 11280 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2183 4666 4458 11280 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2184 4458 4611 11280 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2185 4458 4666 11281 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2186 4666 4460 11281 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2187 4460 4351 11281 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2188 4351 4458 11281 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2189 4351 4460 11282 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2190 4460 4324 11282 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2191 4324 4264 11282 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2192 4264 4351 11282 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2193 4264 4324 11283 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2194 4324 4194 11283 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2195 4194 4142 11283 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2196 4142 4264 11283 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2197 4142 4194 11284 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2198 4194 4063 11284 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2199 4063 4027 11284 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2200 4027 4142 11284 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2201 4011 4027 11285 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2202 4027 3922 11285 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2203 3922 3924 11285 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2204 3924 4011 11285 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2205 3924 3922 11286 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2206 3922 3810 11286 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2207 3810 3852 11286 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2208 3852 3924 11286 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2209 3852 3810 11287 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2210 3810 3690 11287 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2211 3690 3737 11287 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2212 3737 3852 11287 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2213 3737 3690 11288 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2214 3690 3596 11288 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2215 3596 3669 11288 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2216 3669 3737 11288 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2217 3669 3596 11289 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2218 3596 3526 11289 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2219 3526 3600 11289 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2220 3600 3669 11289 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2221 3600 3526 11290 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2222 3526 3441 11290 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2223 3441 3556 11290 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2224 3556 3600 11290 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2225 3556 3441 11291 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2226 3441 3387 11291 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2227 3387 3512 11291 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2228 3512 3556 11291 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2229 3512 3387 11292 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2230 3387 3332 11292 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2231 3332 3481 11292 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2232 3481 3512 11292 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2233 3481 3332 11293 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2234 3332 3311 11293 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2235 3311 3453 11293 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2236 3453 3481 11293 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2237 3453 3311 11294 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2238 3311 3297 11294 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2239 3297 3444 11294 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2240 3444 3453 11294 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2241 3444 3297 11295 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2242 3297 3310 11295 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2243 3310 3452 11295 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2244 3452 3444 11295 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2245 3452 3310 11296 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2246 3310 3331 11296 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2247 3331 3480 11296 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2248 3480 3452 11296 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2249 3480 3331 11297 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2250 3331 3386 11297 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2251 3386 3511 11297 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2252 3511 3480 11297 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2253 3511 3386 11298 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2254 3386 3440 11298 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2255 3440 3555 11298 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2256 3555 3511 11298 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2257 3555 3440 11299 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2258 3440 3525 11299 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2259 3525 3599 11299 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2260 3599 3555 11299 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2261 3599 3525 11300 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2262 3525 3595 11300 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2263 3595 3668 11300 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2264 3668 3599 11300 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2265 3668 3595 11301 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2266 3595 3689 11301 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2267 3689 3736 11301 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2268 3736 3668 11301 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2269 3736 3689 11302 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2270 3689 3809 11302 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2271 3809 3851 11302 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2272 3851 3736 11302 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2273 3851 3809 11303 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2274 3809 3921 11303 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2275 3921 3923 11303 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2276 3923 3851 11303 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2277 3923 3921 11304 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2278 3921 4026 11304 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2279 4026 4010 11304 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2280 4010 3923 11304 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2281 4010 4026 11305 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2282 4026 4141 11305 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2283 4141 4086 11305 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2284 4086 4010 11305 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2285 4086 4141 11306 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2286 4141 4263 11306 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2287 4263 4178 11306 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2288 4178 4086 11306 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2289 4178 4263 11307 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2290 4263 4350 11307 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2291 4350 4271 11307 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2292 4271 4178 11307 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2293 4271 4350 11308 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2294 4350 4457 11308 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2295 4457 4328 11308 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2296 4328 4271 11308 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2297 4328 4457 11309 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2298 4457 4610 11309 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2299 4610 4402 11309 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2300 4402 4328 11309 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2301 4402 4610 11310 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2302 4610 4733 11310 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2303 4733 4461 11310 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2304 4461 4402 11310 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2305 4461 4733 11311 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2306 4733 4819 11311 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2307 4819 4544 11311 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2308 4544 4461 11311 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2309 4544 4819 11312 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2310 4819 4883 11312 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2311 4883 4599 11312 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2312 4599 4544 11312 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2313 4599 4883 11313 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2314 4883 4907 11313 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2315 4907 4638 11313 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2316 4638 4599 11313 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2317 4638 4907 11314 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2318 4907 4921 11314 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2319 4921 4654 11314 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2320 4654 4638 11314 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2321 4654 4921 11315 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2322 4921 4908 11315 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2323 4908 4639 11315 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2324 4639 4654 11315 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2325 4639 4908 11316 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2326 4908 4884 11316 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2327 4884 4600 11316 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2328 4600 4639 11316 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2329 4600 4884 11317 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2330 4884 4820 11317 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2331 4820 4545 11317 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2332 4545 4600 11317 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2333 4545 4820 11318 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2334 4820 4734 11318 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2335 4734 4462 11318 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2336 4462 4545 11318 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2337 4462 4734 11319 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2338 4734 4611 11319 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2339 4611 4403 11319 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2340 4403 4462 11319 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2341 4403 4611 11320 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2342 4611 4458 11320 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2343 4458 4329 11320 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2344 4329 4403 11320 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2345 4329 4458 11321 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2346 4458 4351 11321 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2347 4351 4272 11321 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2348 4272 4329 11321 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2349 4272 4351 11322 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2350 4351 4264 11322 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2351 4264 4179 11322 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2352 4179 4272 11322 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2353 4179 4264 11323 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2354 4264 4142 11323 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2355 4142 4087 11323 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2356 4087 4179 11323 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2357 4087 4142 11324 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2358 4142 4027 11324 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2359 4027 4011 11324 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2360 4011 4087 11324 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2361 4001 4011 11325 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2362 4011 3924 11325 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2363 3924 3935 11325 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2364 3935 4001 11325 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2365 3935 3924 11326 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2366 3924 3852 11326 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2367 3852 3882 11326 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2368 3882 3935 11326 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2369 3882 3852 11327 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2370 3852 3737 11327 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2371 3737 3831 11327 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2372 3831 3882 11327 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2373 3831 3737 11328 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2374 3737 3669 11328 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2375 3669 3751 11328 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2376 3751 3831 11328 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2377 3751 3669 11329 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2378 3669 3600 11329 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2379 3600 3714 11329 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2380 3714 3751 11329 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2381 3714 3600 11330 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2382 3600 3556 11330 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2383 3556 3675 11330 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2384 3675 3714 11330 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2385 3675 3556 11331 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2386 3556 3512 11331 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2387 3512 3643 11331 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2388 3643 3675 11331 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2389 3643 3512 11332 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2390 3512 3481 11332 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2391 3481 3621 11332 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2392 3621 3643 11332 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2393 3621 3481 11333 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2394 3481 3453 11333 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2395 3453 3602 11333 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2396 3602 3621 11333 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2397 3602 3453 11334 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2398 3453 3444 11334 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2399 3444 3597 11334 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2400 3597 3602 11334 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2401 3597 3444 11335 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2402 3444 3452 11335 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2403 3452 3601 11335 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2404 3601 3597 11335 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2405 3601 3452 11336 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2406 3452 3480 11336 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2407 3480 3620 11336 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2408 3620 3601 11336 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2409 3620 3480 11337 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2410 3480 3511 11337 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2411 3511 3642 11337 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2412 3642 3620 11337 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2413 3642 3511 11338 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2414 3511 3555 11338 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2415 3555 3674 11338 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2416 3674 3642 11338 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2417 3674 3555 11339 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2418 3555 3599 11339 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2419 3599 3713 11339 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2420 3713 3674 11339 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2421 3713 3599 11340 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2422 3599 3668 11340 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2423 3668 3750 11340 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2424 3750 3713 11340 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2425 3750 3668 11341 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2426 3668 3736 11341 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2427 3736 3830 11341 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2428 3830 3750 11341 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2429 3830 3736 11342 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2430 3736 3851 11342 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2431 3851 3881 11342 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2432 3881 3830 11342 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2433 3881 3851 11343 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2434 3851 3923 11343 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2435 3923 3934 11343 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2436 3934 3881 11343 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2437 3934 3923 11344 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2438 3923 4010 11344 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2439 4010 4000 11344 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2440 4000 3934 11344 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2441 4000 4010 11345 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2442 4010 4086 11345 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2443 4086 4048 11345 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2444 4048 4000 11345 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2445 4048 4086 11346 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2446 4086 4178 11346 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2447 4178 4103 11346 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2448 4103 4048 11346 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2449 4103 4178 11347 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2450 4178 4271 11347 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2451 4271 4161 11347 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2452 4161 4103 11347 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2453 4161 4271 11348 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2454 4271 4328 11348 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2455 4328 4213 11348 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2456 4213 4161 11348 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2457 4213 4328 11349 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2458 4328 4402 11349 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2459 4402 4268 11349 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2460 4268 4213 11349 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2461 4268 4402 11350 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2462 4402 4461 11350 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2463 4461 4295 11350 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2464 4295 4268 11350 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2465 4295 4461 11351 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2466 4461 4544 11351 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2467 4544 4318 11351 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2468 4318 4295 11351 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2469 4318 4544 11352 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2470 4544 4599 11352 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2471 4599 4340 11352 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2472 4340 4318 11352 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2473 4340 4599 11353 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2474 4599 4638 11353 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2475 4638 4357 11353 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2476 4357 4340 11353 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2477 4357 4638 11354 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2478 4638 4654 11354 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2479 4654 4364 11354 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2480 4364 4357 11354 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2481 4364 4654 11355 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2482 4654 4639 11355 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2483 4639 4358 11355 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2484 4358 4364 11355 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2485 4358 4639 11356 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2486 4639 4600 11356 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2487 4600 4341 11356 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2488 4341 4358 11356 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2489 4341 4600 11357 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2490 4600 4545 11357 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2491 4545 4319 11357 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2492 4319 4341 11357 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2493 4319 4545 11358 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2494 4545 4462 11358 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2495 4462 4296 11358 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2496 4296 4319 11358 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2497 4296 4462 11359 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2498 4462 4403 11359 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2499 4403 4269 11359 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2500 4269 4296 11359 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2501 4269 4403 11360 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2502 4403 4329 11360 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2503 4329 4214 11360 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2504 4214 4269 11360 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2505 4214 4329 11361 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2506 4329 4272 11361 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2507 4272 4162 11361 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2508 4162 4214 11361 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2509 4162 4272 11362 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2510 4272 4179 11362 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2511 4179 4104 11362 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2512 4104 4162 11362 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2513 4104 4179 11363 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2514 4179 4087 11363 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2515 4087 4049 11363 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2516 4049 4104 11363 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2517 4049 4087 11364 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2518 4087 4011 11364 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2519 4011 4001 11364 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2520 4001 4049 11364 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5)} Face 2521 3992 4001 11365 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2522 4001 3935 11365 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2523 3935 3954 11365 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2524 3954 3992 11365 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2525 3954 3935 11366 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2526 3935 3882 11366 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2527 3882 3920 11366 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2528 3920 3954 11366 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2529 3920 3882 11367 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2530 3882 3831 11367 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2531 3831 3897 11367 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2532 3897 3920 11367 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2533 3897 3831 11368 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2534 3831 3751 11368 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2535 3751 3876 11368 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2536 3876 3897 11368 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2537 3876 3751 11369 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2538 3751 3714 11369 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2539 3714 3859 11369 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2540 3859 3876 11369 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2541 3859 3714 11370 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2542 3714 3675 11370 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2543 3675 3839 11370 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2544 3839 3859 11370 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2545 3839 3675 11371 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2546 3675 3643 11371 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2547 3643 3806 11371 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2548 3806 3839 11371 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2549 3806 3643 11372 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2550 3643 3621 11372 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2551 3621 3794 11372 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2552 3794 3806 11372 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2553 3794 3621 11373 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2554 3621 3602 11373 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2555 3602 3769 11373 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2556 3769 3794 11373 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2557 3769 3602 11374 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2558 3602 3597 11374 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2559 3597 3766 11374 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2560 3766 3769 11374 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2561 3766 3597 11375 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2562 3597 3601 11375 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2563 3601 3768 11375 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2564 3768 3766 11375 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2565 3768 3601 11376 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2566 3601 3620 11376 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2567 3620 3793 11376 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2568 3793 3768 11376 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2569 3793 3620 11377 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2570 3620 3642 11377 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2571 3642 3805 11377 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2572 3805 3793 11377 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2573 3805 3642 11378 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2574 3642 3674 11378 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2575 3674 3838 11378 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2576 3838 3805 11378 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2577 3838 3674 11379 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2578 3674 3713 11379 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2579 3713 3858 11379 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2580 3858 3838 11379 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2581 3858 3713 11380 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2582 3713 3750 11380 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2583 3750 3875 11380 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2584 3875 3858 11380 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2585 3875 3750 11381 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2586 3750 3830 11381 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2587 3830 3896 11381 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2588 3896 3875 11381 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2589 3896 3830 11382 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2590 3830 3881 11382 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2591 3881 3919 11382 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2592 3919 3896 11382 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2593 3919 3881 11383 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2594 3881 3934 11383 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2595 3934 3953 11383 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2596 3953 3919 11383 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2597 3953 3934 11384 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2598 3934 4000 11384 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2599 4000 3991 11384 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2600 3991 3953 11384 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2601 3991 4000 11385 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2602 4000 4048 11385 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2603 4048 4012 11385 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2604 4012 3991 11385 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2605 4012 4048 11386 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2606 4048 4103 11386 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2607 4103 4032 11386 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2608 4032 4012 11386 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2609 4032 4103 11387 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2610 4103 4161 11387 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2611 4161 4065 11387 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2612 4065 4032 11387 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2613 4065 4161 11388 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2614 4161 4213 11388 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2615 4213 4083 11388 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2616 4083 4065 11388 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2617 4083 4213 11389 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2618 4213 4268 11389 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2619 4268 4113 11389 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2620 4113 4083 11389 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2621 4113 4268 11390 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2622 4268 4295 11390 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2623 4295 4127 11390 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2624 4127 4113 11390 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2625 4127 4295 11391 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2626 4295 4318 11391 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2627 4318 4146 11391 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2628 4146 4127 11391 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2629 4146 4318 11392 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2630 4318 4340 11392 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2631 4340 4158 11392 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2632 4158 4146 11392 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2633 4158 4340 11393 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2634 4340 4357 11393 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2635 4357 4166 11393 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2636 4166 4158 11393 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2637 4166 4357 11394 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2638 4357 4364 11394 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2639 4364 4168 11394 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2640 4168 4166 11394 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2641 4168 4364 11395 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2642 4364 4358 11395 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2643 4358 4167 11395 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2644 4167 4168 11395 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2645 4167 4358 11396 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2646 4358 4341 11396 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2647 4341 4159 11396 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2648 4159 4167 11396 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2649 4159 4341 11397 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2650 4341 4319 11397 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2651 4319 4147 11397 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2652 4147 4159 11397 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2653 4147 4319 11398 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2654 4319 4296 11398 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2655 4296 4128 11398 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2656 4128 4147 11398 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2657 4128 4296 11399 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2658 4296 4269 11399 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2659 4269 4114 11399 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2660 4114 4128 11399 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2661 4114 4269 11400 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2662 4269 4214 11400 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2663 4214 4084 11400 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2664 4084 4114 11400 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2665 4084 4214 11401 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2666 4214 4162 11401 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2667 4162 4066 11401 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2668 4066 4084 11401 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2669 4066 4162 11402 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2670 4162 4104 11402 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2671 4104 4033 11402 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2672 4033 4066 11402 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2673 4033 4104 11403 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2674 4104 4049 11403 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2675 4049 4013 11403 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2676 4013 4033 11403 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2677 4013 4049 11404 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2678 4049 4001 11404 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2679 4001 3992 11404 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2680 3992 4013 11404 {mat="nomaterial" groups="default irisr" rgb=(1 1 1)} Face 2681 4915 4881 11405 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2682 4881 4464 11405 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2683 4464 4680 11405 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2684 4680 4915 11405 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2685 4903 4669 11406 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2686 4669 4452 11406 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2687 4452 4870 11406 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2688 4870 4903 11406 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2689 4741 4955 11407 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2690 4955 4710 11407 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2691 4710 4507 11407 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2692 4507 4741 11407 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2693 5327 5707 11408 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2694 5707 5553 11408 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2695 5553 5333 11408 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2696 5333 5327 11408 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2697 6127 6367 11409 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2698 6367 6534 11409 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2699 6534 6160 11409 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2700 6160 6127 11409 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2701 6172 6588 11410 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2702 6588 6377 11410 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2703 6377 6140 11410 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2704 6140 6172 11410 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2705 6063 6083 11411 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2706 6083 6533 11411 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2707 6533 6339 11411 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2708 6339 6063 11411 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2709 4741 4507 11412 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2710 4507 4498 11412 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2711 4498 4737 11412 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2712 4737 4741 11412 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2713 4944 4816 11413 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2714 4816 5290 11413 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2715 5290 5323 11413 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2716 5323 4944 11413 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2717 4977 4955 11414 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2718 4955 5327 11414 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2719 5327 5333 11414 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2720 5333 4977 11414 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2721 5707 5327 11415 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2722 5327 5313 11415 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2723 5313 5723 11415 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2724 5723 5707 11415 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2725 5301 5313 11416 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2726 5313 4903 11416 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2727 4903 4870 11416 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2728 4870 5301 11416 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2729 4669 4903 11417 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2730 4903 4955 11417 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2731 4955 4741 11417 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2732 4741 4669 11417 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2733 4737 4944 11418 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2734 4944 4915 11418 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2735 4915 4680 11418 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2736 4680 4737 11418 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2737 4881 4915 11419 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2738 4915 5315 11419 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2739 5315 5303 11419 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2740 5303 4881 11419 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2741 5720 5315 11420 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2742 5315 5323 11420 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2743 5323 5711 11420 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2744 5711 5720 11420 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2745 4680 4464 11421 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2746 4464 4433 11421 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2747 4433 4669 11421 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2748 4669 4680 11421 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2749 6311 6542 11422 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2750 6542 6533 11422 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2751 6533 6306 11422 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2752 6306 6311 11422 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2753 5711 5751 11423 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2754 5751 6228 11423 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2755 6228 6096 11423 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2756 6096 5711 11423 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2757 6172 6140 11424 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2758 6140 5723 11424 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2759 5723 5739 11424 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2760 5739 6172 11424 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2761 5700 5707 11425 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2762 5707 6083 11425 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2763 6083 6063 11425 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2764 6063 5700 11425 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2765 6306 6083 11426 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2766 6083 6140 11426 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2767 6140 6377 11426 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2768 6377 6306 11426 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2769 5736 5720 11427 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2770 5720 6127 11427 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2771 6127 6160 11427 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2772 6160 5736 11427 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2773 6367 6127 11428 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2774 6127 6096 11428 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2775 6096 6311 11428 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2776 6311 6367 11428 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2777 6377 6605 11429 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2778 6605 6577 11429 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2779 6577 6367 11429 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2780 6367 6377 11429 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2781 4737 4498 11430 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2782 4498 4816 11430 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2783 4816 4944 11430 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2784 4944 4737 11430 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2785 5323 5290 11431 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2786 5290 5751 11431 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2787 5751 5711 11431 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2788 5711 5323 11431 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2789 6542 6311 11432 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2790 6311 6096 11432 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2791 6096 6228 11432 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2792 6228 6542 11432 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2793 5723 5313 11433 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2794 5313 5301 11433 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2795 5301 5739 11433 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2796 5739 5723 11433 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2797 5303 5315 11434 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2798 5315 5720 11434 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2799 5720 5736 11434 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2800 5736 5303 11434 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2801 6311 6306 11435 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2802 6306 6377 11435 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2803 6377 6367 11435 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2804 6367 6311 11435 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2805 5720 5711 11436 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2806 5711 6096 11436 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2807 6096 6127 11436 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2808 6127 5720 11436 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2809 6140 6083 11437 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2810 6083 5707 11437 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2811 5707 5723 11437 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2812 5723 6140 11437 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2813 4741 4737 11438 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2814 4737 4680 11438 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2815 4680 4669 11438 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2816 4669 4741 11438 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2817 5323 5315 11439 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2818 5315 4915 11439 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2819 4915 4944 11439 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2820 4944 5323 11439 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2821 4955 4903 11440 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2822 4903 5313 11440 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2823 5313 5327 11440 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2824 5327 4955 11440 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0)} Face 2825 2769 2779 11441 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2826 2779 2657 11441 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2827 2657 2647 11441 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2828 2647 2769 11441 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2829 2577 2657 11442 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2830 2657 2668 11442 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2831 2668 2584 11442 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2832 2584 2577 11442 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2833 2692 2668 11443 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2834 2668 2794 11443 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2835 2794 2820 11443 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2836 2820 2692 11443 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2837 3002 2794 11444 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2838 2794 2779 11444 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2839 2779 2973 11444 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2840 2973 3002 11444 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2841 2570 2577 11445 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2842 2577 2500 11445 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2843 2500 2496 11445 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2844 2496 2570 11445 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2845 2518 2500 11446 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2846 2500 2584 11446 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2847 2584 2597 11446 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2848 2597 2518 11446 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2849 4841 4867 11447 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2850 4867 4609 11447 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2851 4609 4587 11447 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2852 4587 4841 11447 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2853 4377 4609 11448 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2854 4609 4622 11448 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2855 4622 4383 11448 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2856 4383 4377 11448 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2857 4655 4622 11449 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2858 4622 4889 11449 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2859 4889 4905 11449 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2860 4905 4655 11449 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2861 5004 4889 11450 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2862 4889 4867 11450 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2863 4867 4971 11450 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2864 4971 5004 11450 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2865 3190 3219 11451 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2866 3219 2973 11451 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2867 2973 2932 11451 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2868 2932 3190 11451 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2869 3044 3002 11452 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2870 3002 3255 11452 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2871 3255 3292 11452 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2872 3292 3044 11452 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2873 3484 3255 11453 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2874 3255 3219 11453 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2875 3219 3449 11453 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2876 3449 3484 11453 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2877 3654 3672 11454 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2878 3672 3449 11454 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2879 3449 3421 11454 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2880 3421 3654 11454 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2881 3508 3484 11455 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2882 3484 3677 11455 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2883 3677 3688 11455 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2884 3688 3508 11455 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2885 3887 3677 11456 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2886 3677 3672 11456 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2887 3672 3889 11456 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2888 3889 3887 11456 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2889 4051 4055 11457 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2890 4055 3889 11457 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2891 3889 3880 11457 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2892 3880 4051 11457 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2893 3898 3887 11458 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2894 3887 4054 11458 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2895 4054 4068 11458 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2896 4068 3898 11458 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2897 4228 4054 11459 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2898 4054 4055 11459 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2899 4055 4227 11459 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2900 4227 4228 11459 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2901 4372 4377 11460 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2902 4377 4227 11460 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2903 4227 4223 11460 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2904 4223 4372 11460 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2905 4240 4228 11461 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2906 4228 4383 11461 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2907 4383 4397 11461 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2908 4397 4240 11461 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2909 2647 2570 11462 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2910 2570 2562 11462 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2911 2562 2635 11462 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2912 2635 2647 11462 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2913 2572 2562 11463 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2914 2562 2496 11463 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2915 2496 2506 11463 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2916 2506 2572 11463 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2917 2932 2769 11464 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2918 2769 2747 11464 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2919 2747 2897 11464 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2920 2897 2932 11464 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2921 2753 2747 11465 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2922 2747 2635 11465 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2923 2635 2651 11465 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2924 2651 2753 11465 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2925 3421 3190 11466 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2926 3190 3153 11466 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2927 3153 3390 11466 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2928 3390 3421 11466 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2929 3144 3153 11467 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2930 3153 2897 11467 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2931 2897 2900 11467 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2932 2900 3144 11467 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2933 3880 3654 11468 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2934 3654 3625 11468 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2935 3625 3863 11468 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2936 3863 3880 11468 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2937 3612 3625 11469 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2938 3625 3390 11469 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2939 3390 3376 11469 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2940 3376 3612 11469 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2941 4223 4051 11470 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2942 4051 4043 11470 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2943 4043 4220 11470 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2944 4220 4223 11470 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2945 4045 4043 11471 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2946 4043 3863 11471 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2947 3863 3861 11471 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2948 3861 4045 11471 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2949 4587 4372 11472 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2950 4372 4366 11472 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2951 4366 4569 11472 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2952 4569 4587 11472 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2953 4365 4366 11473 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2954 4366 4220 11473 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2955 4220 4222 11473 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2956 4222 4365 11473 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2957 4942 4841 11474 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2958 4841 4809 11474 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2959 4809 4912 11474 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2960 4912 4942 11474 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2961 4792 4809 11475 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2962 4809 4569 11475 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2963 4569 4562 11475 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2964 4562 4792 11475 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2965 2727 2631 11476 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2966 2631 2597 11476 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2967 2597 2692 11476 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2968 2692 2727 11476 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2969 2651 2572 11477 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2970 2572 2615 11477 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2971 2615 2687 11477 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2972 2687 2651 11477 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2973 2900 2753 11478 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2974 2753 2784 11478 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2975 2784 2935 11478 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2976 2935 2900 11478 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2977 3376 3144 11479 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2978 3144 3165 11479 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2979 3165 3393 11479 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2980 3393 3376 11479 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2981 3861 3612 11480 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2982 3612 3630 11480 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2983 3630 3869 11480 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2984 3869 3861 11480 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2985 4222 4045 11481 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2986 4045 4052 11481 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2987 4052 4231 11481 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2988 4231 4222 11481 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2989 4562 4365 11482 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2990 4365 4367 11482 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2991 4367 4564 11482 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2992 4564 4562 11482 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2993 4912 4792 11483 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2994 4792 4801 11483 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2995 4801 4928 11483 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2996 4928 4912 11483 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2997 4905 5004 11484 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2998 5004 5028 11484 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 2999 5028 4939 11484 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3000 4939 4905 11484 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3001 4397 4655 11485 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3002 4655 4690 11485 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3003 4690 4423 11485 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3004 4423 4397 11485 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3005 4068 4240 11486 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3006 4240 4280 11486 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3007 4280 4096 11486 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3008 4096 4068 11486 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3009 3688 3898 11487 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3010 3898 3927 11487 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3011 3927 3720 11487 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3012 3720 3688 11487 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3013 3292 3508 11488 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3014 3508 3543 11488 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3015 3543 3328 11488 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3016 3328 3292 11488 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3017 2820 3044 11489 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3018 3044 3093 11489 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3019 3093 2859 11489 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3020 2859 2820 11489 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3021 8224 8252 11490 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3022 8252 8383 11490 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3023 8383 8355 11490 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3024 8355 8224 11490 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3025 8463 8383 11491 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3026 8383 8393 11491 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3027 8393 8470 11491 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3028 8470 8463 11491 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3029 8401 8393 11492 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3030 8393 8265 11492 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3031 8265 8277 11492 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3032 8277 8401 11492 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3033 8062 8265 11493 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3034 8265 8252 11493 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3035 8252 8034 11493 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3036 8034 8062 11493 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3037 8448 8463 11494 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3038 8463 8543 11494 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3039 8543 8527 11494 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3040 8527 8448 11494 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3041 8548 8543 11495 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3042 8543 8470 11495 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3043 8470 8479 11495 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3044 8479 8548 11495 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3045 6137 6152 11496 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3046 6152 6425 11496 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3047 6425 6391 11496 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3048 6391 6137 11496 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3049 6658 6425 11497 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3050 6425 6437 11497 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3051 6437 6662 11497 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3052 6662 6658 11497 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3053 6459 6437 11498 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3054 6437 6175 11498 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3055 6175 6201 11498 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3056 6201 6459 11498 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3057 6066 6175 11499 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3058 6175 6152 11499 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3059 6152 6035 11499 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3060 6035 6066 11499 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3061 7753 7790 11500 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3062 7790 8034 11500 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3063 8034 7989 11500 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3064 7989 7753 11500 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3065 8104 8062 11501 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3066 8062 7825 11501 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3067 7825 7858 11501 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3068 7858 8104 11501 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3069 7595 7825 11502 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3070 7825 7790 11502 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3071 7790 7560 11502 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3072 7560 7595 11502 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3073 7353 7366 11503 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3074 7366 7560 11503 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3075 7560 7534 11503 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3076 7534 7353 11503 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3077 7624 7595 11504 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3078 7595 7372 11504 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3079 7372 7392 11504 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3080 7392 7624 11504 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3081 7154 7372 11505 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3082 7372 7366 11505 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3083 7366 7156 11505 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3084 7156 7154 11505 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3085 6974 6986 11506 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3086 6986 7156 11506 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3087 7156 7145 11506 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3088 7145 6974 11506 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3089 7163 7154 11507 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3090 7154 6985 11507 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3091 6985 6989 11507 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3092 6989 7163 11507 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3093 6818 6985 11508 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3094 6985 6986 11508 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3095 6986 6817 11508 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3096 6817 6818 11508 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3097 6643 6658 11509 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3098 6658 6817 11509 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3099 6817 6803 11509 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3100 6803 6643 11509 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3101 6822 6818 11510 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3102 6818 6662 11510 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3103 6662 6667 11510 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3104 6667 6822 11510 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3105 8414 8485 11511 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3106 8485 8479 11511 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3107 8479 8401 11511 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3108 8401 8414 11511 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3109 8538 8548 11512 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3110 8548 8485 11512 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3111 8485 8476 11512 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3112 8476 8538 11512 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3113 8398 8414 11513 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3114 8414 8297 11513 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3115 8297 8292 11513 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3116 8292 8398 11513 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3117 8145 8297 11514 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3118 8297 8277 11514 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3119 8277 8104 11514 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3120 8104 8145 11514 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3121 8142 8145 11515 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3122 8145 7891 11515 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3123 7891 7898 11515 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3124 7898 8142 11515 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3125 7655 7891 11516 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3126 7891 7858 11516 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3127 7858 7624 11516 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3128 7624 7655 11516 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3129 7666 7655 11517 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3130 7655 7420 11517 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3131 7420 7432 11517 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3132 7432 7666 11517 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3133 7178 7420 11518 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3134 7420 7392 11518 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3135 7392 7163 11518 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3136 7163 7178 11518 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3137 7182 7178 11519 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3138 7178 6996 11519 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3139 6996 6994 11519 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3140 6994 7182 11519 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3141 6825 6996 11520 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3142 6996 6989 11520 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3143 6989 6822 11520 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3144 6822 6825 11520 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3145 6823 6825 11521 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3146 6825 6672 11521 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3147 6672 6673 11521 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3148 6673 6823 11521 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3149 6476 6672 11522 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3150 6672 6667 11522 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3151 6667 6459 11522 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3152 6459 6476 11522 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3153 6483 6476 11523 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3154 6476 6234 11523 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3155 6234 6250 11523 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3156 6250 6483 11523 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3157 6131 6234 11524 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3158 6234 6201 11524 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3159 6201 6097 11524 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3160 6097 6131 11524 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3161 8355 8448 11525 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3162 8448 8417 11525 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3163 8417 8316 11525 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3164 8316 8355 11525 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3165 8360 8434 11526 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3166 8434 8476 11526 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3167 8476 8398 11526 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3168 8398 8360 11526 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3169 8100 8259 11527 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3170 8259 8292 11527 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3171 8292 8142 11527 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3172 8142 8100 11527 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3173 7652 7878 11528 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3174 7878 7898 11528 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3175 7898 7666 11528 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3176 7666 7652 11528 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3177 7172 7415 11529 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3178 7415 7432 11529 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3179 7432 7182 11529 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3180 7182 7172 11529 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3181 6812 6988 11530 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3182 6988 6994 11530 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3183 6994 6823 11530 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3184 6823 6812 11530 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3185 6481 6671 11531 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3186 6671 6673 11531 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3187 6673 6483 11531 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3188 6483 6481 11531 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3189 6113 6242 11532 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3190 6242 6250 11532 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3191 6250 6131 11532 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3192 6131 6113 11532 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3193 6048 6081 11533 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3194 6081 6097 11533 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3195 6097 6066 11533 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3196 6066 6048 11533 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3197 6100 6013 11534 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3198 6013 6035 11534 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3199 6035 6137 11534 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3200 6137 6100 11534 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3201 6614 6358 11535 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3202 6358 6391 11535 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3203 6391 6643 11535 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3204 6643 6614 11535 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3205 6949 6761 11536 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3206 6761 6803 11536 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3207 6803 6974 11536 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3208 6974 6949 11536 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3209 7322 7113 11537 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3210 7113 7145 11537 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3211 7145 7353 11537 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3212 7353 7322 11537 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3213 7716 7499 11538 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3214 7499 7534 11538 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3215 7534 7753 11538 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3216 7753 7716 11538 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3217 8182 7944 11539 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3218 7944 7989 11539 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3219 7989 8224 11539 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3220 8224 8182 11539 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3221 4587 4609 11540 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3222 4609 4377 11540 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3223 4377 4372 11540 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3224 4372 4587 11540 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3225 4055 4051 11541 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3226 4051 4223 11541 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3227 4223 4227 11541 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3228 4227 4055 11541 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3229 3672 3654 11542 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3230 3654 3880 11542 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3231 3880 3889 11542 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3232 3889 3672 11542 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3233 3219 3190 11543 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3234 3190 3421 11543 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3235 3421 3449 11543 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3236 3449 3219 11543 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3237 2779 2769 11544 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3238 2769 2932 11544 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3239 2932 2973 11544 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3240 2973 2779 11544 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3241 2647 2657 11545 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3242 2657 2577 11545 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3243 2577 2570 11545 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3244 2570 2647 11545 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3245 2584 2668 11546 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3246 2668 2692 11546 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3247 2692 2597 11546 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3248 2597 2584 11546 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3249 2496 2500 11547 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3250 2500 2518 11547 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3251 2518 2506 11547 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3252 2506 2496 11547 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3253 2635 2562 11548 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3254 2562 2572 11548 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3255 2572 2651 11548 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3256 2651 2635 11548 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3257 2897 2747 11549 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3258 2747 2753 11549 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3259 2753 2900 11549 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3260 2900 2897 11549 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3261 3390 3153 11550 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3262 3153 3144 11550 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3263 3144 3376 11550 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3264 3376 3390 11550 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3265 3863 3625 11551 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3266 3625 3612 11551 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3267 3612 3861 11551 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3268 3861 3863 11551 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3269 4220 4043 11552 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3270 4043 4045 11552 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3271 4045 4222 11552 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3272 4222 4220 11552 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3273 4569 4366 11553 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3274 4366 4365 11553 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3275 4365 4562 11553 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3276 4562 4569 11553 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3277 4867 4841 11554 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3278 4841 4942 11554 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3279 4942 4971 11554 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3280 4971 4867 11554 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3281 4383 4622 11555 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3282 4622 4655 11555 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3283 4655 4397 11555 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3284 4397 4383 11555 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3285 4068 4054 11556 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3286 4054 4228 11556 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3287 4228 4240 11556 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3288 4240 4068 11556 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3289 3688 3677 11557 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3290 3677 3887 11557 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3291 3887 3898 11557 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3292 3898 3688 11557 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3293 3292 3255 11558 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3294 3255 3484 11558 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3295 3484 3508 11558 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3296 3508 3292 11558 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3297 2820 2794 11559 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3298 2794 3002 11559 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3299 3002 3044 11559 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3300 3044 2820 11559 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3301 6662 6437 11560 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3302 6437 6459 11560 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3303 6459 6667 11560 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3304 6667 6662 11560 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3305 6989 6985 11561 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3306 6985 6818 11561 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3307 6818 6822 11561 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3308 6822 6989 11561 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3309 7392 7372 11562 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3310 7372 7154 11562 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3311 7154 7163 11562 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3312 7163 7392 11562 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3313 7858 7825 11563 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3314 7825 7595 11563 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3315 7595 7624 11563 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3316 7624 7858 11563 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3317 8277 8265 11564 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3318 8265 8062 11564 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3319 8062 8104 11564 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3320 8104 8277 11564 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3321 8470 8393 11565 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3322 8393 8401 11565 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3323 8401 8479 11565 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3324 8479 8470 11565 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3325 8355 8383 11566 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3326 8383 8463 11566 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3327 8463 8448 11566 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3328 8448 8355 11566 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3329 8527 8543 11567 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3330 8543 8548 11567 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3331 8548 8538 11567 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3332 8538 8527 11567 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3333 8485 8414 11568 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3334 8414 8398 11568 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3335 8398 8476 11568 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3336 8476 8485 11568 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3337 8292 8297 11569 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3338 8297 8145 11569 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3339 8145 8142 11569 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3340 8142 8292 11569 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3341 7898 7891 11570 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3342 7891 7655 11570 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3343 7655 7666 11570 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3344 7666 7898 11570 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3345 7432 7420 11571 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3346 7420 7178 11571 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3347 7178 7182 11571 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3348 7182 7432 11571 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3349 6994 6996 11572 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3350 6996 6825 11572 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3351 6825 6823 11572 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3352 6823 6994 11572 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3353 6673 6672 11573 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3354 6672 6476 11573 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3355 6476 6483 11573 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3356 6483 6673 11573 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3357 6201 6175 11574 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3358 6175 6066 11574 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3359 6066 6097 11574 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3360 6097 6201 11574 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3361 6391 6425 11575 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3362 6425 6658 11575 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3363 6658 6643 11575 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3364 6643 6391 11575 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3365 6986 6974 11576 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3366 6974 6803 11576 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3367 6803 6817 11576 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3368 6817 6986 11576 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3369 7366 7353 11577 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3370 7353 7145 11577 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3371 7145 7156 11577 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3372 7156 7366 11577 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3373 7790 7753 11578 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3374 7753 7534 11578 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3375 7534 7560 11578 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3376 7560 7790 11578 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3377 8252 8224 11579 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3378 8224 7989 11579 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3379 7989 8034 11579 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3380 8034 8252 11579 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3381 8355 8316 11580 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3382 8316 8182 11580 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3383 8182 8224 11580 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3384 8224 8355 11580 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3385 7989 7944 11581 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3386 7944 7716 11581 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3387 7716 7753 11581 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3388 7753 7989 11581 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3389 7534 7499 11582 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3390 7499 7322 11582 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3391 7322 7353 11582 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3392 7353 7534 11582 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3393 7145 7113 11583 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3394 7113 6949 11583 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3395 6949 6974 11583 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3396 6974 7145 11583 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3397 6803 6761 11584 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3398 6761 6614 11584 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3399 6614 6643 11584 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3400 6643 6803 11584 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3401 6391 6358 11585 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3402 6358 6100 11585 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3403 6100 6137 11585 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3404 6137 6391 11585 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3405 6035 6013 11586 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3406 6013 6048 11586 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3407 6048 6066 11586 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3408 6066 6035 11586 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3409 6097 6081 11587 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3410 6081 6113 11587 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3411 6113 6131 11587 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3412 6131 6097 11587 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3413 6250 6242 11588 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3414 6242 6481 11588 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3415 6481 6483 11588 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3416 6483 6250 11588 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3417 6673 6671 11589 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3418 6671 6812 11589 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3419 6812 6823 11589 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3420 6823 6673 11589 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3421 6994 6988 11590 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3422 6988 7172 11590 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3423 7172 7182 11590 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3424 7182 6994 11590 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3425 7432 7415 11591 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3426 7415 7652 11591 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3427 7652 7666 11591 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3428 7666 7432 11591 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3429 7898 7878 11592 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3430 7878 8100 11592 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3431 8100 8142 11592 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3432 8142 7898 11592 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3433 8292 8259 11593 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3434 8259 8360 11593 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3435 8360 8398 11593 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3436 8398 8292 11593 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3437 8476 8434 11594 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3438 8434 8493 11594 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3439 8493 8538 11594 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3440 8538 8476 11594 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3441 8527 8484 11595 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3442 8484 8417 11595 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3443 8417 8448 11595 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3444 8448 8527 11595 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3445 6476 6459 11596 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3446 6459 6201 11596 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3447 6201 6234 11596 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3448 6234 6476 11596 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3449 6825 6822 11597 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3450 6822 6667 11597 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3451 6667 6672 11597 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3452 6672 6825 11597 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3453 7178 7163 11598 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3454 7163 6989 11598 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3455 6989 6996 11598 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3456 6996 7178 11598 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3457 7655 7624 11599 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3458 7624 7392 11599 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3459 7392 7420 11599 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3460 7420 7655 11599 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3461 8145 8104 11600 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3462 8104 7858 11600 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3463 7858 7891 11600 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3464 7891 8145 11600 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3465 8414 8401 11601 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3466 8401 8277 11601 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3467 8277 8297 11601 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3468 8297 8414 11601 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3469 6658 6662 11602 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3470 6662 6818 11602 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3471 6818 6817 11602 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3472 6817 6658 11602 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3473 6986 6985 11603 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3474 6985 7154 11603 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3475 7154 7156 11603 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3476 7156 6986 11603 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3477 7366 7372 11604 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3478 7372 7595 11604 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3479 7595 7560 11604 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3480 7560 7366 11604 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3481 7790 7825 11605 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3482 7825 8062 11605 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3483 8062 8034 11605 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3484 8034 7790 11605 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3485 6152 6175 11606 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3486 6175 6437 11606 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3487 6437 6425 11606 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3488 6425 6152 11606 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3489 8252 8265 11607 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3490 8265 8393 11607 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3491 8393 8383 11607 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3492 8383 8252 11607 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3493 2727 2692 11608 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3494 2692 2820 11608 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3495 2820 2859 11608 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3496 2859 2727 11608 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3497 3093 3044 11609 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3498 3044 3292 11609 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3499 3292 3328 11609 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3500 3328 3093 11609 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3501 3543 3508 11610 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3502 3508 3688 11610 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3503 3688 3720 11610 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3504 3720 3543 11610 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3505 3927 3898 11611 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3506 3898 4068 11611 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3507 4068 4096 11611 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3508 4096 3927 11611 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3509 4280 4240 11612 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3510 4240 4397 11612 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3511 4397 4423 11612 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3512 4423 4280 11612 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3513 4690 4655 11613 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3514 4655 4905 11613 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3515 4905 4939 11613 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3516 4939 4690 11613 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3517 4801 4792 11614 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3518 4792 4562 11614 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3519 4562 4564 11614 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3520 4564 4801 11614 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3521 4367 4365 11615 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3522 4365 4222 11615 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3523 4222 4231 11615 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3524 4231 4367 11615 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3525 4052 4045 11616 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3526 4045 3861 11616 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3527 3861 3869 11616 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3528 3869 4052 11616 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3529 3630 3612 11617 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3530 3612 3376 11617 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3531 3376 3393 11617 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3532 3393 3630 11617 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3533 3165 3144 11618 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3534 3144 2900 11618 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3535 2900 2935 11618 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3536 2935 3165 11618 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3537 2784 2753 11619 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3538 2753 2651 11619 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3539 2651 2687 11619 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3540 2687 2784 11619 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3541 2615 2572 11620 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3542 2572 2506 11620 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3543 2506 2552 11620 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3544 2552 2615 11620 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3545 2563 2518 11621 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3546 2518 2597 11621 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3547 2597 2631 11621 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3548 2631 2563 11621 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3549 4587 4569 11622 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3550 4569 4809 11622 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3551 4809 4841 11622 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3552 4841 4587 11622 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3553 4223 4220 11623 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3554 4220 4366 11623 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3555 4366 4372 11623 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3556 4372 4223 11623 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3557 3880 3863 11624 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3558 3863 4043 11624 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3559 4043 4051 11624 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3560 4051 3880 11624 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3561 3421 3390 11625 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3562 3390 3625 11625 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3563 3625 3654 11625 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3564 3654 3421 11625 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3565 2932 2897 11626 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3566 2897 3153 11626 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3567 3153 3190 11626 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3568 3190 2932 11626 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3569 2647 2635 11627 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3570 2635 2747 11627 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3571 2747 2769 11627 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3572 2769 2647 11627 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3573 4377 4383 11628 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3574 4383 4228 11628 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3575 4228 4227 11628 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3576 4227 4377 11628 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3577 4055 4054 11629 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3578 4054 3887 11629 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3579 3887 3889 11629 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3580 3889 4055 11629 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3581 3672 3677 11630 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3582 3677 3484 11630 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3583 3484 3449 11630 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3584 3449 3672 11630 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3585 3219 3255 11631 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3586 3255 3002 11631 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3587 3002 2973 11631 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3588 2973 3219 11631 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3589 4867 4889 11632 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3590 4889 4622 11632 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3591 4622 4609 11632 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3592 4609 4867 11632 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3593 2779 2794 11633 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3594 2794 2668 11633 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3595 2668 2657 11633 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3596 2657 2779 11633 {mat="nomaterial" groups="default brows" rgb=(0 0 0)} Face 3597 3915 3850 11634 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3598 3850 3795 11634 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3599 3795 3906 11634 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3600 3906 3915 11634 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3601 7136 7251 11635 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3602 7251 7194 11635 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3603 7194 7127 11635 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3604 7127 7136 11635 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3605 5212 5222 11636 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3606 5222 5431 11636 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3607 5431 5427 11636 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3608 5427 5212 11636 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3609 5615 5431 11637 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3610 5431 5441 11637 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3611 5441 5605 11637 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3612 5605 5615 11637 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3613 5442 5441 11638 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3614 5441 5250 11638 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3615 5250 5258 11638 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3616 5258 5442 11638 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3617 5062 5250 11639 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3618 5250 5222 11639 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3619 5222 5043 11639 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3620 5043 5062 11639 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3621 5604 5442 11640 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3622 5442 5438 11640 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3623 5438 5608 11640 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3624 5608 5604 11640 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3625 5435 5438 11641 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3626 5438 5242 11641 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3627 5242 5235 11641 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3628 5235 5435 11641 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3629 5063 5242 11642 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3630 5242 5258 11642 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3631 5258 5070 11642 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3632 5070 5063 11642 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3633 4851 4855 11643 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3634 4855 5043 11643 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3635 5043 5036 11643 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3636 5036 4851 11643 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3637 5070 5062 11644 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3638 5062 4856 11644 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3639 4856 4863 11644 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3640 4863 5070 11644 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3641 4516 4856 11645 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3642 4856 4855 11645 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3643 4855 4529 11645 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3644 4529 4516 11645 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3645 5061 5063 11646 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3646 5063 4869 11646 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3647 4869 4875 11646 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3648 4875 5061 11646 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3649 4557 4869 11647 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3650 4869 4863 11647 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3651 4863 4526 11647 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3652 4526 4557 11647 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3653 4266 4255 11648 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3654 4255 4529 11648 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3655 4529 4536 11648 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3656 4536 4266 11648 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3657 4526 4516 11649 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3658 4516 4244 11649 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3659 4244 4257 11649 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3660 4257 4526 11649 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3661 4029 4244 11650 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3662 4244 4255 11650 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3663 4255 4053 11650 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3664 4053 4029 11650 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3665 4577 4557 11651 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3666 4557 4289 11651 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3667 4289 4299 11651 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3668 4299 4577 11651 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3669 4075 4289 11652 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3670 4289 4257 11652 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3671 4257 4046 11652 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3672 4046 4075 11652 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3673 3915 3906 11653 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3674 3906 4053 11653 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3675 4053 4060 11653 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3676 4060 3915 11653 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3677 4046 4029 11654 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3678 4029 3877 11654 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3679 3877 3879 11654 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3680 3879 4046 11654 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3681 3742 3877 11655 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3682 3877 3906 11655 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3683 3906 3795 11655 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3684 3795 3742 11655 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3685 4097 4075 11656 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3686 4075 3916 11656 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3687 3916 3933 11656 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3688 3933 4097 11656 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3689 3765 3916 11657 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3690 3916 3879 11657 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3691 3879 3738 11657 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3692 3738 3765 11657 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3693 3799 3765 11658 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3694 3765 3696 11658 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3695 3696 3701 11658 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3696 3701 3799 11658 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3697 3655 3696 11659 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3698 3696 3682 11659 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3699 3682 3652 11659 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3700 3652 3655 11659 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3701 3703 3682 11660 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3702 3682 3738 11660 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3703 3738 3742 11660 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3704 3742 3703 11660 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3705 3691 3703 11661 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3706 3703 3795 11661 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3707 3795 3776 11661 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3708 3776 3691 11661 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3709 3913 3847 11662 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3710 3847 3850 11662 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3711 3850 3915 11662 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3712 3915 3913 11662 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3713 3776 3850 11663 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3714 3850 3844 11663 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3715 3844 3763 11663 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3716 3763 3776 11663 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3717 5036 5212 11664 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3718 5212 5210 11664 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3719 5210 5032 11664 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3720 5032 5036 11664 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3721 5621 5425 11665 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3722 5425 5427 11665 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3723 5427 5619 11665 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3724 5619 5621 11665 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3725 4536 4851 11666 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3726 4851 4848 11666 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3727 4848 4527 11666 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3728 4527 4536 11666 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3729 4060 4266 11667 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3730 4266 4258 11667 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3731 4258 4058 11667 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3732 4058 4060 11667 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3733 3652 3691 11668 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3734 3691 3681 11668 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3735 3681 3647 11668 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3736 3647 3652 11668 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3737 3701 3655 11669 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3738 3655 3648 11669 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3739 3648 3687 11669 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3740 3687 3701 11669 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3741 3933 3799 11670 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3742 3799 3786 11670 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3743 3786 3929 11670 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3744 3929 3933 11670 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3745 4299 4097 11671 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3746 4097 4093 11671 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3747 4093 4297 11671 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3748 4297 4299 11671 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3749 4875 4577 11672 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3750 4577 4570 11672 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3751 4570 4871 11672 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3752 4871 4875 11672 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3753 5235 5061 11673 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3754 5061 5059 11673 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3755 5059 5231 11673 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3756 5231 5235 11673 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3757 5611 5435 11674 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3758 5435 5433 11674 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3759 5433 5614 11674 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3760 5614 5611 11674 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3761 5785 5796 11675 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3762 5796 5605 11675 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3763 5605 5604 11675 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3764 5604 5785 11675 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3765 5619 5615 11676 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3766 5615 5823 11676 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3767 5823 5833 11676 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3768 5833 5619 11676 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3769 6002 5823 11677 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3770 5823 5796 11677 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3771 5796 5985 11677 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3772 5985 6002 11677 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3773 5810 5803 11678 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3774 5803 5608 11678 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3775 5608 5611 11678 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3776 5611 5810 11678 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3777 5978 5785 11679 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3778 5785 5803 11679 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3779 5803 5984 11679 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3780 5984 5978 11679 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3781 6179 6186 11680 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3782 6186 5985 11680 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3783 5985 5978 11680 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3784 5978 6179 11680 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3785 6007 6002 11681 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3786 6002 6187 11681 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3787 6187 6191 11681 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3788 6191 6007 11681 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3789 6514 6187 11682 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3790 6187 6186 11682 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3791 6186 6526 11682 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3792 6526 6514 11682 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3793 6167 6173 11683 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3794 6173 5984 11683 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3795 5984 5986 11683 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3796 5986 6167 11683 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3797 6517 6179 11684 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3798 6179 6173 11684 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3799 6173 6488 11684 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3800 6488 6517 11684 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3801 6784 6798 11685 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3802 6798 6526 11685 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3803 6526 6517 11685 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3804 6517 6784 11685 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3805 6507 6514 11686 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3806 6514 6786 11686 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3807 6786 6775 11686 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3808 6775 6507 11686 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3809 6987 6786 11687 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3810 6786 6798 11687 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3811 6798 7009 11687 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3812 7009 6987 11687 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3813 6743 6753 11688 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3814 6753 6488 11688 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3815 6488 6468 11688 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3816 6468 6743 11688 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3817 6993 6784 11689 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3818 6784 6753 11689 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3819 6753 6966 11689 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3820 6966 6993 11689 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3821 7164 7166 11690 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3822 7166 7009 11690 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3823 7009 6993 11690 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3824 6993 7164 11690 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3825 6982 6987 11691 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3826 6987 7136 11691 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3827 7136 7127 11691 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3828 7127 6982 11691 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3829 7251 7136 11692 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3830 7136 7166 11692 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3831 7166 7301 11692 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3832 7301 7251 11692 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3833 7106 7126 11693 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3834 7126 6966 11693 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3835 6966 6948 11693 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3836 6948 7106 11693 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3837 7304 7164 11694 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3838 7164 7126 11694 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3839 7126 7279 11694 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3840 7279 7304 11694 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3841 7394 7359 11695 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3842 7359 7346 11695 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3843 7346 7391 11695 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3844 7391 7394 11695 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3845 7342 7346 11696 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3846 7346 7279 11696 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3847 7279 7246 11696 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3848 7246 7342 11696 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3849 7301 7304 11697 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3850 7304 7359 11697 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3851 7359 7340 11697 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3852 7340 7301 11697 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3853 7270 7251 11698 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3854 7251 7340 11698 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3855 7340 7350 11698 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3856 7350 7270 11698 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3857 7281 7199 11699 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3858 7199 7194 11699 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3859 7194 7270 11699 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3860 7270 7281 11699 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3861 7127 7194 11700 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3862 7194 7196 11700 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3863 7196 7129 11700 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3864 7129 7127 11700 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3865 6011 5835 11701 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3866 5835 5833 11701 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3867 5833 6007 11701 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3868 6007 6011 11701 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3869 6516 6194 11702 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3870 6194 6191 11702 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3871 6191 6507 11702 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3872 6507 6516 11702 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3873 6984 6783 11703 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3874 6783 6775 11703 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3875 6775 6982 11703 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3876 6982 6984 11703 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3877 7398 7360 11704 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3878 7360 7350 11704 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3879 7350 7394 11704 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3880 7394 7398 11704 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3881 7356 7397 11705 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3882 7397 7391 11705 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3883 7391 7342 11705 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3884 7342 7356 11705 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3885 7110 7261 11706 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3886 7261 7246 11706 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3887 7246 7106 11706 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3888 7106 7110 11706 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3889 6745 6952 11707 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3890 6952 6948 11707 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3891 6948 6743 11707 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3892 6743 6745 11707 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3893 6171 6475 11708 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3894 6475 6468 11708 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3895 6468 6167 11708 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3896 6167 6171 11708 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3897 5814 5988 11709 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3898 5988 5986 11709 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3899 5986 5810 11709 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3900 5810 5814 11709 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3901 5258 5250 11710 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3902 5250 5062 11710 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3903 5062 5070 11710 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3904 5070 5258 11710 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3905 5605 5441 11711 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3906 5441 5442 11711 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3907 5442 5604 11711 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3908 5604 5605 11711 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3909 4863 4856 11712 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3910 4856 4516 11712 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3911 4516 4526 11712 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3912 4526 4863 11712 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3913 4257 4244 11713 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3914 4244 4029 11713 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3915 4029 4046 11713 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3916 4046 4257 11713 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3917 3879 3877 11714 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3918 3877 3742 11714 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3919 3742 3738 11714 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3920 3738 3879 11714 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3921 5222 5212 11715 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3922 5212 5036 11715 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3923 5036 5043 11715 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3924 5043 5222 11715 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3925 4855 4851 11716 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3926 4851 4536 11716 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3927 4536 4529 11716 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3928 4529 4855 11716 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3929 4255 4266 11717 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3930 4266 4060 11717 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3931 4060 4053 11717 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3932 4053 4255 11717 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3933 3652 3682 11718 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3934 3682 3703 11718 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3935 3703 3691 11718 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3936 3691 3652 11718 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3937 3933 3916 11719 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3938 3916 3765 11719 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3939 3765 3799 11719 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3940 3799 3933 11719 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3941 4299 4289 11720 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3942 4289 4075 11720 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3943 4075 4097 11720 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3944 4097 4299 11720 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3945 4875 4869 11721 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3946 4869 4557 11721 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3947 4557 4577 11721 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3948 4577 4875 11721 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3949 5235 5242 11722 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3950 5242 5063 11722 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3951 5063 5061 11722 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3952 5061 5235 11722 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3953 5608 5438 11723 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3954 5438 5435 11723 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3955 5435 5611 11723 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3956 5611 5608 11723 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3957 5796 5785 11724 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3958 5785 5978 11724 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3959 5978 5985 11724 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3960 5985 5796 11724 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3961 6186 6179 11725 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3962 6179 6517 11725 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3963 6517 6526 11725 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3964 6526 6186 11725 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3965 6798 6784 11726 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3966 6784 6993 11726 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3967 6993 7009 11726 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3968 7009 6798 11726 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3969 7166 7164 11727 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3970 7164 7304 11727 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3971 7304 7301 11727 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3972 7301 7166 11727 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3973 5427 5431 11728 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3974 5431 5615 11728 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3975 5615 5619 11728 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3976 5619 5427 11728 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3977 5833 5823 11729 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3978 5823 6002 11729 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3979 6002 6007 11729 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3980 6007 5833 11729 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3981 6191 6187 11730 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3982 6187 6514 11730 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3983 6514 6507 11730 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3984 6507 6191 11730 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3985 6775 6786 11731 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3986 6786 6987 11731 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3987 6987 6982 11731 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3988 6982 6775 11731 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3989 7359 7394 11732 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3990 7394 7350 11732 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3991 7350 7340 11732 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3992 7340 7359 11732 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3993 7126 7106 11733 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3994 7106 7246 11733 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3995 7246 7279 11733 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3996 7279 7126 11733 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3997 6753 6743 11734 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3998 6743 6948 11734 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 3999 6948 6966 11734 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4000 6966 6753 11734 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4001 6173 6167 11735 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4002 6167 6468 11735 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4003 6468 6488 11735 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4004 6488 6173 11735 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4005 5803 5810 11736 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4006 5810 5986 11736 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4007 5986 5984 11736 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4008 5984 5803 11736 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4009 5611 5614 11737 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4010 5614 5814 11737 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4011 5814 5810 11737 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4012 5810 5611 11737 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4013 5986 5988 11738 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4014 5988 6171 11738 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4015 6171 6167 11738 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4016 6167 5986 11738 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4017 6468 6475 11739 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4018 6475 6745 11739 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4019 6745 6743 11739 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4020 6743 6468 11739 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4021 6948 6952 11740 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4022 6952 7110 11740 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4023 7110 7106 11740 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4024 7106 6948 11740 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4025 7356 7342 11741 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4026 7342 7246 11741 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4027 7246 7261 11741 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4028 7261 7356 11741 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4029 7398 7394 11742 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4030 7394 7391 11742 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4031 7391 7397 11742 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4032 7397 7398 11742 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4033 7281 7270 11743 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4034 7270 7350 11743 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4035 7350 7360 11743 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4036 7360 7281 11743 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4037 6984 6982 11744 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4038 6982 7127 11744 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4039 7127 7129 11744 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4040 7129 6984 11744 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4041 6516 6507 11745 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4042 6507 6775 11745 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4043 6775 6783 11745 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4044 6783 6516 11745 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4045 6011 6007 11746 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4046 6007 6191 11746 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4047 6191 6194 11746 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4048 6194 6011 11746 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4049 5621 5619 11747 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4050 5619 5833 11747 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4051 5833 5835 11747 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4052 5835 5621 11747 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4053 7359 7304 11748 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4054 7304 7279 11748 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4055 7279 7346 11748 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4056 7346 7359 11748 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4057 7126 7164 11749 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4058 7164 6993 11749 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4059 6993 6966 11749 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4060 6966 7126 11749 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4061 7166 7136 11750 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4062 7136 6987 11750 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4063 6987 7009 11750 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4064 7009 7166 11750 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4065 6753 6784 11751 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4066 6784 6517 11751 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4067 6517 6488 11751 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4068 6488 6753 11751 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4069 6798 6786 11752 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4070 6786 6514 11752 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4071 6514 6526 11752 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4072 6526 6798 11752 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4073 6173 6179 11753 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4074 6179 5978 11753 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4075 5978 5984 11753 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4076 5984 6173 11753 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4077 6186 6187 11754 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4078 6187 6002 11754 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4079 6002 5985 11754 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4080 5985 6186 11754 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4081 5803 5785 11755 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4082 5785 5604 11755 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4083 5604 5608 11755 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4084 5608 5803 11755 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4085 5796 5823 11756 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4086 5823 5615 11756 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4087 5615 5605 11756 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4088 5605 5796 11756 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4089 5433 5435 11757 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4090 5435 5235 11757 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4091 5235 5231 11757 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4092 5231 5433 11757 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4093 5059 5061 11758 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4094 5061 4875 11758 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4095 4875 4871 11758 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4096 4871 5059 11758 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4097 4570 4577 11759 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4098 4577 4299 11759 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4099 4299 4297 11759 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4100 4297 4570 11759 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4101 4093 4097 11760 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4102 4097 3933 11760 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4103 3933 3929 11760 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4104 3929 4093 11760 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4105 3701 3687 11761 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4106 3687 3786 11761 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4107 3786 3799 11761 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4108 3799 3701 11761 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4109 3652 3647 11762 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4110 3647 3648 11762 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4111 3648 3655 11762 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4112 3655 3652 11762 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4113 3776 3763 11763 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4114 3763 3681 11763 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4115 3681 3691 11763 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4116 3691 3776 11763 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4117 4060 4058 11764 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4118 4058 3913 11764 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4119 3913 3915 11764 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4120 3915 4060 11764 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4121 4536 4527 11765 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4122 4527 4258 11765 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4123 4258 4266 11765 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4124 4266 4536 11765 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4125 5036 5032 11766 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4126 5032 4848 11766 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4127 4848 4851 11766 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4128 4851 5036 11766 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4129 5427 5425 11767 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4130 5425 5210 11767 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4131 5210 5212 11767 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4132 5212 5427 11767 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4133 3738 3682 11768 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4134 3682 3696 11768 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4135 3696 3765 11768 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4136 3765 3738 11768 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4137 3879 3916 11769 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4138 3916 4075 11769 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4139 4075 4046 11769 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4140 4046 3879 11769 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4141 3906 3877 11770 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4142 3877 4029 11770 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4143 4029 4053 11770 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4144 4053 3906 11770 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4145 4257 4289 11771 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4146 4289 4557 11771 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4147 4557 4526 11771 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4148 4526 4257 11771 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4149 4255 4244 11772 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4150 4244 4516 11772 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4151 4516 4529 11772 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4152 4529 4255 11772 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4153 4863 4869 11773 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4154 4869 5063 11773 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4155 5063 5070 11773 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4156 5070 4863 11773 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4157 4855 4856 11774 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4158 4856 5062 11774 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4159 5062 5043 11774 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4160 5043 4855 11774 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4161 5258 5242 11775 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4162 5242 5438 11775 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4163 5438 5442 11775 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4164 5442 5258 11775 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4165 5222 5250 11776 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4166 5250 5441 11776 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4167 5441 5431 11776 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4168 5431 5222 11776 {mat="nomaterial" groups="default teeth" rgb=(1 1 1)} Face 4169 3804 3673 11777 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4170 3673 4188 11777 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4171 4188 4137 11777 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4172 4137 3804 11777 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4173 2550 2588 11778 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4174 2588 2605 11778 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4175 2605 2505 11778 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4176 2505 2550 11778 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4177 1911 1834 11779 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4178 1834 2112 11779 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4179 2112 2131 11779 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4180 2131 1911 11779 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4181 3977 4339 11780 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4182 4339 4169 11780 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4183 4169 3971 11780 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4184 3971 3977 11780 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4185 5307 5329 11781 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4186 5329 5705 11781 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4187 5705 5730 11781 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4188 5730 5307 11781 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4189 2150 2166 11782 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4190 2166 2074 11782 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4191 2074 2053 11782 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4192 2053 2150 11782 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4193 2330 2369 11783 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4194 2369 2151 11783 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4195 2151 2183 11783 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4196 2183 2330 11783 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4197 2447 2464 11784 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4198 2464 2295 11784 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4199 2295 2322 11784 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4200 2322 2447 11784 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4201 2382 2406 11785 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4202 2406 2278 11785 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4203 2278 2238 11785 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4204 2238 2382 11785 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4205 6908 6856 11786 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4206 6856 7371 11786 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4207 7371 7239 11786 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4208 7239 6908 11786 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4209 8495 8539 11787 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4210 8539 8536 11787 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4211 8536 8459 11787 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4212 8459 8495 11787 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4213 8914 8933 11788 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4214 8933 9211 11788 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4215 9211 9134 11788 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4216 9134 8914 11788 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4217 7068 6877 11789 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4218 6877 6702 11789 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4219 6702 7063 11789 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4220 7063 7068 11789 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4221 5236 5104 11790 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4222 5104 5944 11790 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4223 5944 5809 11790 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4224 5809 5236 11790 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4225 8992 8969 11791 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4226 8969 8879 11791 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4227 8879 8894 11791 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4228 8894 8992 11791 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4229 8861 8893 11792 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4230 8893 8676 11792 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4231 8676 8718 11792 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4232 8718 8861 11792 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4233 8725 8751 11793 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4234 8751 8581 11793 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4235 8581 8596 11793 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4236 8596 8725 11793 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4237 8807 8768 11794 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4238 8768 8641 11794 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4239 8641 8664 11794 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4240 8664 8807 11794 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4241 5902 5685 11795 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4242 5685 5918 11795 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4243 5918 5999 11795 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4244 5999 5902 11795 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4245 8785 8772 11796 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4246 8772 9013 11796 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4247 9013 8874 11796 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4248 8874 8785 11796 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4249 6109 6114 11797 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4250 6114 5750 11797 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4251 5750 5989 11797 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4252 5989 6109 11797 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4253 5046 5127 11798 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4254 5127 5356 11798 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4255 5356 5143 11798 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4256 5143 5046 11798 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4257 2170 2031 11799 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4258 2031 2273 11799 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4259 2273 2260 11799 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4260 2260 2170 11799 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4261 5058 5291 11800 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4262 5291 4927 11800 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4263 4927 4933 11800 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4264 4933 5058 11800 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4265 4234 4089 11801 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4266 4089 3808 11801 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4267 3808 3885 11801 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4268 3885 4234 11801 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4269 4080 4030 11802 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4270 4030 4424 11802 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4271 4424 4522 11802 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4272 4522 4080 11802 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4273 4943 4424 11803 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4274 4424 4302 11803 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4275 4302 4814 11803 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4276 4814 4943 11803 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4277 5713 5322 11804 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4278 5322 5286 11804 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4279 5286 5755 11804 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4280 5755 5713 11804 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4281 5266 5286 11805 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4282 5286 4814 11805 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4283 4814 4731 11805 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4284 4731 5266 11805 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4285 5013 4943 11806 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4286 4943 5322 11806 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4287 5322 5359 11806 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4288 5359 5013 11806 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4289 3492 3834 11807 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4290 3834 3837 11807 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4291 3837 3503 11807 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4292 3503 3492 11807 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4293 3855 3837 11808 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4294 3837 4182 11808 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4295 4182 4199 11808 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4296 4199 3855 11808 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4297 4683 4182 11809 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4298 4182 4154 11809 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4299 4154 4635 11809 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4300 4635 4683 11809 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4301 4140 4154 11810 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4302 4154 3834 11810 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4303 3834 3815 11810 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4304 3815 4140 11810 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4305 4703 4683 11811 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4306 4683 5256 11811 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4307 5256 5264 11811 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4308 5264 4703 11811 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4309 5789 5256 11812 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4310 5256 5236 11812 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4311 5236 5809 11812 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4312 5809 5789 11812 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4313 5104 5236 11813 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4314 5236 4635 11813 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4315 4635 4548 11813 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4316 4548 5104 11813 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4317 3429 3773 11814 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4318 3773 3815 11814 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4319 3815 3466 11814 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4320 3466 3429 11814 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4321 4548 4140 11815 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4322 4140 4136 11815 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4323 4136 4431 11815 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4324 4431 4548 11815 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4325 4151 4136 11816 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4326 4136 3773 11816 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4327 3773 3800 11816 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4328 3800 4151 11816 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4329 5407 5104 11817 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4330 5104 4798 11817 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4331 4798 5022 11817 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4332 5022 5407 11817 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4333 4596 4798 11818 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4334 4798 4431 11818 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4335 4431 4400 11818 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4336 4400 4596 11818 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4337 3256 3604 11819 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4338 3604 3758 11819 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4339 3758 3426 11819 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4340 3426 3256 11819 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4341 3853 3758 11820 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4342 3758 4131 11820 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4343 4131 4183 11820 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4344 4183 3853 11820 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4345 4346 4131 11821 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4346 4131 4018 11821 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4347 4018 4246 11821 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4348 4246 4346 11821 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4349 3914 4018 11822 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4350 4018 3604 11822 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4351 3604 3471 11822 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4352 3471 3914 11822 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4353 4409 4346 11823 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4354 4346 4427 11823 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4355 4427 4552 11823 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4356 4552 4409 11823 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4357 4436 4427 11824 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4358 4427 4293 11824 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4359 4293 4291 11824 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4360 4291 4436 11824 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4361 4282 4293 11825 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4362 4293 4246 11825 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4363 4246 4170 11825 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4364 4170 4282 11825 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4365 2862 3329 11826 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4366 3329 3471 11826 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4367 3471 3076 11826 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4368 3076 2862 11826 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4369 4170 3914 11827 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4370 3914 3804 11827 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4371 3804 4137 11827 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4372 4137 4170 11827 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4373 3673 3804 11828 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4374 3804 3329 11828 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4375 3329 3174 11828 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4376 3174 3673 11828 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4377 4290 4282 11829 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4378 4282 4348 11829 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4379 4348 4428 11829 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4380 4428 4290 11829 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4381 4470 4348 11830 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4382 4348 4137 11830 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4383 4137 4188 11830 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4384 4188 4470 11830 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4385 2541 2945 11831 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4386 2945 3174 11831 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4387 3174 2706 11831 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4388 2706 2541 11831 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4389 3958 3673 11832 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4390 3673 3538 11832 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4391 3538 3832 11832 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4392 3832 3958 11832 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4393 3494 3538 11833 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4394 3538 2945 11833 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4395 2945 2877 11833 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4396 2877 3494 11833 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4397 3977 3971 11834 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4398 3971 3832 11834 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4399 3832 3841 11834 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4400 3841 3977 11834 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4401 4160 3958 11835 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4402 3958 3971 11835 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4403 3971 4169 11835 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4404 4169 4160 11835 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4405 4524 4933 11836 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4406 4933 4927 11836 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4407 4927 4492 11836 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4408 4492 4524 11836 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4409 4575 4927 11837 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4410 4927 5068 11837 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4411 5068 4748 11837 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4412 4748 4575 11837 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4413 5008 5068 11838 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4414 5068 5292 11838 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4415 5292 5348 11838 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4416 5348 5008 11838 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4417 5748 5292 11839 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4418 5292 5291 11839 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4419 5291 5750 11839 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4420 5750 5748 11839 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4421 5341 5291 11840 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4422 5291 5058 11840 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4423 5058 4997 11840 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4424 4997 5341 11840 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4425 4744 5058 11841 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4426 5058 4933 11841 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4427 4933 4617 11841 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4428 4617 4744 11841 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4429 1981 1945 11842 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4430 1945 1895 11842 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4431 1895 1918 11842 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4432 1918 1981 11842 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4433 1986 1895 11843 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4434 1895 1887 11843 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4435 1887 1972 11843 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4436 1972 1986 11843 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4437 2031 1887 11844 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4438 1887 1945 11844 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4439 1945 2080 11844 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4440 2080 2031 11844 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4441 3095 3162 11845 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4442 3162 2961 11845 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4443 2961 2874 11845 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4444 2874 3095 11845 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4445 2608 2664 11846 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4446 2664 2764 11846 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4447 2764 2711 11846 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4448 2711 2608 11846 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4449 2834 2764 11847 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4450 2764 2912 11847 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4451 2912 3025 11847 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4452 3025 2834 11847 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4453 3198 2912 11848 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4454 2912 2823 11848 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4455 2823 3140 11848 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4456 3140 3198 11848 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4457 2754 2823 11849 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4458 2823 2664 11849 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4459 2664 2589 11849 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4460 2589 2754 11849 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4461 2442 2525 11850 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4462 2525 2589 11850 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4463 2589 2516 11850 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4464 2516 2442 11850 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4465 3084 2754 11851 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4466 2754 2699 11851 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4467 2699 3013 11851 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4468 3013 3084 11851 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4469 2703 2699 11852 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4470 2699 2525 11852 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4471 2525 2523 11852 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4472 2523 2703 11852 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4473 2342 2412 11853 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4474 2412 2550 11853 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4475 2550 2505 11853 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4476 2505 2342 11853 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4477 2588 2550 11854 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4478 2550 2741 11854 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4479 2741 2768 11854 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4480 2768 2588 11854 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4481 3066 2741 11855 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4482 2741 2639 11855 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4483 2639 2885 11855 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4484 2885 3066 11855 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4485 2504 2639 11856 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4486 2639 2412 11856 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4487 2412 2224 11856 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4488 2224 2504 11856 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4489 2072 2068 11857 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4490 2068 2224 11857 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4491 2224 2174 11857 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4492 2174 2072 11857 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4493 2734 2504 11858 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4494 2504 2246 11858 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4495 2246 2561 11858 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4496 2561 2734 11858 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4497 2057 2246 11859 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4498 2246 2068 11859 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4499 2068 1953 11859 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4500 1953 2057 11859 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4501 1957 1878 11860 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4502 1878 1953 11860 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4503 1953 2016 11860 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4504 2016 1957 11860 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4505 2358 2057 11861 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4506 2057 1911 11861 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4507 1911 2131 11861 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4508 2131 2358 11861 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4509 1834 1911 11862 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4510 1911 1878 11862 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4511 1878 1829 11862 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4512 1829 1834 11862 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4513 1923 1817 11863 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4514 1817 1829 11863 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4515 1829 1928 11863 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4516 1928 1923 11863 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4517 1919 1834 11864 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4518 1834 1811 11864 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4519 1811 1898 11864 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4520 1898 1919 11864 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4521 1794 1811 11865 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4522 1811 1817 11865 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4523 1817 1818 11865 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4524 1818 1794 11865 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4525 1973 1831 11866 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4526 1831 1818 11866 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4527 1818 1937 11866 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4528 1937 1973 11866 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4529 1870 1794 11867 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4530 1794 1784 11867 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4531 1784 1832 11867 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4532 1832 1870 11867 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4533 1800 1784 11868 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4534 1784 1831 11868 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4535 1831 1859 11868 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4536 1859 1800 11868 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4537 3568 3557 11869 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4538 3557 3330 11869 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4539 3330 3322 11869 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4540 3322 3568 11869 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4541 3260 3198 11870 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4542 3198 3503 11870 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4543 3503 3534 11870 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4544 3534 3260 11870 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4545 3466 3492 11871 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4546 3492 3140 11871 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4547 3140 3084 11871 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4548 3084 3466 11871 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4549 3434 3429 11872 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4550 3429 3013 11872 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4551 3013 3019 11872 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4552 3019 3434 11872 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4553 3094 3066 11873 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4554 3066 3426 11873 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4555 3426 3489 11873 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4556 3489 3094 11873 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4557 3076 3256 11874 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4558 3256 2885 11874 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4559 2885 2734 11874 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4560 2734 3076 11874 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4561 2706 2862 11875 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4562 2862 2561 11875 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4563 2561 2358 11875 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4564 2358 2706 11875 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4565 2490 2541 11876 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4566 2541 2131 11876 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4567 2131 2112 11876 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4568 2112 2490 11876 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4569 1888 1866 11877 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4570 1866 1897 11877 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4571 1897 1917 11877 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4572 1917 1888 11877 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4573 2028 1897 11878 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4574 1897 1859 11878 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4575 1859 2007 11878 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4576 2007 2028 11878 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4577 1864 1800 11879 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4578 1800 1866 11879 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4579 1866 1948 11879 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4580 1948 1864 11879 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4581 1841 1861 11880 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4582 1861 1930 11880 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4583 1930 1934 11880 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4584 1934 1841 11880 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4585 2070 1930 11881 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4586 1930 1917 11881 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4587 1917 2050 11881 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4588 2050 2070 11881 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4589 1984 1888 11882 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4590 1888 1861 11882 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4591 1861 1929 11882 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4592 1929 1984 11882 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4593 1843 1824 11883 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4594 1824 1935 11883 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4595 1935 1939 11883 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4596 1939 1843 11883 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4597 2097 1935 11884 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4598 1935 1934 11884 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4599 1934 2089 11884 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4600 2089 2097 11884 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4601 1899 1841 11885 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4602 1841 1824 11885 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4603 1824 1874 11885 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4604 1874 1899 11885 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4605 2095 1981 11886 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4606 1981 1991 11886 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4607 1991 2101 11886 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4608 2101 2095 11886 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4609 2002 1991 11887 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4610 1991 1949 11887 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4611 1949 1988 11887 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4612 1988 2002 11887 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4613 2049 1949 11888 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4614 1949 1918 11888 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4615 1918 2018 11888 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4616 2018 2049 11888 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4617 2099 2002 11889 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4618 2002 2005 11889 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4619 2005 2090 11889 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4620 2090 2099 11889 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4621 1997 2005 11890 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4622 2005 2021 11890 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4623 2021 1998 11890 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4624 1998 1997 11890 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4625 2103 2021 11891 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4626 2021 1988 11891 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4627 1988 2071 11891 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4628 2071 2103 11891 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4629 1920 1879 11892 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4630 1879 1952 11892 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4631 1952 1977 11892 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4632 1977 1920 11892 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4633 2094 1952 11893 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4634 1952 1939 11893 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4635 1939 2100 11893 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4636 2100 2094 11893 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4637 1889 1843 11894 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4638 1843 1879 11894 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4639 1879 1933 11894 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4640 1933 1889 11894 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4641 2088 1997 11895 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4642 1997 1977 11895 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4643 1977 2092 11895 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4644 2092 2088 11895 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4645 2022 1920 11896 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4646 1920 1998 11896 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4647 1998 2085 11896 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4648 2085 2022 11896 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4649 2750 2798 11897 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4650 2798 2691 11897 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4651 2691 2641 11897 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4652 2641 2750 11897 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4653 2645 2691 11898 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4654 2691 2804 11898 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4655 2804 2766 11898 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4656 2766 2645 11898 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4657 2565 2645 11899 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4658 2645 2605 11899 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4659 2605 2508 11899 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4660 2508 2565 11899 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4661 2505 2605 11900 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4662 2605 2712 11900 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4663 2712 2627 11900 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4664 2627 2505 11900 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4665 2174 2342 11901 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4666 2342 2507 11901 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4667 2507 2386 11901 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4668 2386 2174 11901 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4669 2016 2072 11902 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4670 2072 2265 11902 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4671 2265 2186 11902 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4672 2186 2016 11902 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4673 1928 1957 11903 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4674 1957 2143 11903 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4675 2143 2128 11903 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4676 2128 1928 11903 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4677 1937 1923 11904 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4678 1923 2125 11904 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4679 2125 2136 11904 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4680 2136 1937 11904 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4681 2007 1973 11905 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4682 1973 2162 11905 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4683 2162 2191 11905 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4684 2191 2007 11905 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4685 2050 2028 11906 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4686 2028 2222 11906 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4687 2222 2252 11906 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4688 2252 2050 11906 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4689 2092 2094 11907 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4690 2094 2332 11907 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4691 2332 2325 11907 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4692 2325 2092 11907 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4693 2090 2088 11908 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4694 2088 2321 11908 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4695 2321 2329 11908 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4696 2329 2090 11908 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4697 2101 2099 11909 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4698 2099 2344 11909 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4699 2344 2347 11909 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4700 2347 2101 11909 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4701 2080 2095 11910 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4702 2095 2336 11910 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4703 2336 2273 11910 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4704 2273 2080 11910 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4705 1972 2031 11911 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4706 2031 2170 11911 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4707 2170 2146 11911 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4708 2146 1972 11911 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4709 2257 2170 11912 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4710 2170 2260 11912 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4711 2260 2289 11912 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4712 2289 2257 11912 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4713 2294 2165 11913 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4714 2165 2146 11913 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4715 2146 2261 11913 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4716 2261 2294 11913 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4717 2018 1986 11914 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4718 1986 2165 11914 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4719 2165 2205 11914 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4720 2205 2018 11914 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4721 2382 2238 11915 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4722 2238 2205 11915 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4723 2205 2334 11915 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4724 2334 2382 11915 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4725 2071 2049 11916 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4726 2049 2238 11916 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4727 2238 2278 11916 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4728 2278 2071 11916 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4729 2447 2322 11917 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4730 2322 2278 11917 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4731 2278 2416 11917 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4732 2416 2447 11917 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4733 2085 2103 11918 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4734 2103 2322 11918 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4735 2322 2295 11918 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4736 2295 2085 11918 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4737 2327 2207 11919 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4738 2207 2295 11919 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4739 2295 2419 11919 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4740 2419 2327 11919 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4741 1933 2022 11920 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4742 2022 2207 11920 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4743 2207 2130 11920 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4744 2130 1933 11920 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4745 2190 2076 11921 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4746 2076 2130 11921 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4747 2130 2247 11921 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4748 2247 2190 11921 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4749 1874 1889 11922 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4750 1889 2076 11922 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4751 2076 2069 11922 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4752 2069 1874 11922 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4753 2237 2104 11923 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4754 2104 2069 11923 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4755 2069 2185 11923 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4756 2185 2237 11923 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4757 1929 1899 11924 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4758 1899 2104 11924 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4759 2104 2141 11924 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4760 2141 1929 11924 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4761 2330 2183 11925 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4762 2183 2141 11925 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4763 2141 2280 11925 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4764 2280 2330 11925 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4765 1948 1984 11926 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4766 1984 2183 11926 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4767 2183 2151 11926 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4768 2151 1948 11926 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4769 2161 2059 11927 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4770 2059 2151 11927 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4771 2151 2286 11927 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4772 2286 2161 11927 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4773 1832 1864 11928 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4774 1864 2059 11928 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4775 2059 2030 11928 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4776 2030 1832 11928 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4777 2150 2053 11929 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4778 2053 2030 11929 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4779 2030 2123 11929 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4780 2123 2150 11929 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4781 1898 1870 11930 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4782 1870 2053 11930 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4783 2053 2074 11930 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4784 2074 1898 11930 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4785 2202 2096 11931 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4786 2096 2074 11931 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4787 2074 2172 11931 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4788 2172 2202 11931 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4789 2112 1919 11932 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4790 1919 2096 11932 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4791 2096 2287 11932 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4792 2287 2112 11932 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4793 2638 2601 11933 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4794 2601 2287 11933 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4795 2287 2400 11933 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4796 2400 2638 11933 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4797 2877 2490 11934 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4798 2490 2601 11934 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4799 2601 2992 11934 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4800 2992 2877 11934 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4801 3570 3547 11935 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4802 3547 2992 11935 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4803 2992 3042 11935 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4804 3042 3570 11935 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4805 3841 3494 11936 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4806 3494 3547 11936 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4807 3547 3883 11936 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4808 3883 3841 11936 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4809 4040 4021 11937 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4810 4021 3883 11937 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4811 3883 3902 11937 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4812 3902 4040 11937 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4813 4339 3977 11938 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4814 3977 4021 11938 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4815 4021 4385 11938 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4816 4385 4339 11938 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4817 5178 5174 11939 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4818 5174 4385 11939 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4819 4385 4401 11939 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4820 4401 5178 11939 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4821 4447 4339 11940 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4822 4339 5168 11940 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4823 5168 5191 11940 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4824 5191 4447 11940 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4825 5877 5168 11941 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4826 5168 5174 11941 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4827 5174 5871 11941 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4828 5871 5877 11941 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4829 5776 5266 11942 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4830 5266 5264 11942 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4831 5264 5778 11942 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4832 5778 5776 11942 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4833 4199 4703 11943 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4834 4703 4731 11943 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4835 4731 4234 11943 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4836 4234 4199 11943 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4837 3534 3855 11944 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4838 3855 3885 11944 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4839 3885 3568 11944 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4840 3568 3534 11944 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4841 3025 3260 11945 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4842 3260 3322 11945 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4843 3322 3095 11945 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4844 3095 3025 11945 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4845 2711 2834 11946 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4846 2834 2874 11946 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4847 2874 2750 11946 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4848 2750 2711 11946 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4849 2516 2608 11947 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4850 2608 2641 11947 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4851 2641 2565 11947 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4852 2565 2516 11947 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4853 2523 2442 11948 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4854 2442 2508 11948 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4855 2508 2588 11948 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4856 2588 2523 11948 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4857 3019 2703 11949 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4858 2703 2768 11949 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4859 2768 3094 11949 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4860 3094 3019 11949 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4861 3800 3434 11950 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4862 3434 3489 11950 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4863 3489 3853 11950 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4864 3853 3800 11950 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4865 4400 4151 11951 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4866 4151 4183 11951 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4867 4183 4409 11951 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4868 4409 4400 11951 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4869 4649 4596 11952 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4870 4596 4552 11952 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4871 4552 4581 11952 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4872 4581 4649 11952 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4873 4589 4470 11953 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4874 4470 4571 11953 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4875 4571 4691 11953 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4876 4691 4589 11953 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4877 4507 4571 11954 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4878 4571 4188 11954 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4879 4188 4160 11954 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4880 4160 4507 11954 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4881 4816 4498 11955 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4882 4498 4169 11955 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4883 4169 4447 11955 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4884 4447 4816 11955 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4885 5751 5290 11956 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4886 5290 5191 11956 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4887 5191 5854 11956 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4888 5854 5751 11956 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4889 5739 5301 11957 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4890 5301 5295 11957 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4891 5295 5745 11957 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4892 5745 5739 11957 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4893 5278 5295 11958 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4894 5295 4842 11958 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4895 4842 4766 11958 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4896 4766 5278 11958 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4897 4419 4842 11959 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4898 4842 4870 11959 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4899 4870 4452 11959 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4900 4452 4419 11959 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4901 4452 4433 11960 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4902 4433 4192 11960 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4903 4192 4197 11960 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4904 4197 4452 11960 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4905 4044 4192 11961 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4906 4192 4260 11961 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4907 4260 4111 11961 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4908 4111 4044 11961 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4909 4294 4260 11962 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4910 4260 4464 11962 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4911 4464 4506 11962 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4912 4506 4294 11962 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4913 4506 4881 11963 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4914 4881 4812 11963 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4915 4812 4421 11963 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4916 4421 4506 11963 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4917 4739 4812 11964 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4918 4812 5285 11964 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4919 5285 5271 11964 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4920 5271 4739 11964 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4921 5756 5285 11965 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4922 5285 5303 11965 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4923 5303 5736 11965 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4924 5736 5756 11965 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4925 5763 5278 11966 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4926 5278 5253 11966 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4927 5253 5793 11966 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4928 5793 5763 11966 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4929 5233 5253 11967 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4930 5253 4674 11967 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4931 4674 4627 11967 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4932 4627 5233 11967 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4933 4252 4674 11968 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4934 4674 4766 11968 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4935 4766 4327 11968 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4936 4327 4252 11968 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4937 4118 4044 11969 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4938 4044 3975 11969 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4939 3975 4041 11969 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4940 4041 4118 11969 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4941 3955 3975 11970 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4942 3975 4034 11970 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4943 4034 4009 11970 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4944 4009 3955 11970 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4945 4130 4034 11971 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4946 4034 4111 11971 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4947 4111 4216 11971 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4948 4216 4130 11971 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4949 4335 4739 11972 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4950 4739 4647 11972 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4951 4647 4278 11972 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4952 4278 4335 11972 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4953 4608 4647 11973 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4954 4647 5238 11973 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4955 5238 5228 11973 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4956 5228 4608 11973 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4957 5807 5238 11974 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4958 5238 5271 11974 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4959 5271 5771 11974 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4960 5771 5807 11974 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4961 5812 5233 11975 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4962 5233 5244 11975 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4963 5244 5802 11975 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4964 5802 5812 11975 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4965 5281 5244 11976 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4966 5244 4661 11976 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4967 4661 4785 11976 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4968 4785 5281 11976 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4969 4247 4661 11977 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4970 4661 4627 11977 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4971 4627 4225 11977 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4972 4225 4247 11977 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4973 4020 3955 11978 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4974 3955 3973 11978 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4975 3973 4047 11978 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4976 4047 4020 11978 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4977 4145 3973 11979 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4978 3973 4017 11979 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4979 4017 4176 11979 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4980 4176 4145 11979 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4981 4108 4017 11980 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4982 4017 4009 11980 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4983 4009 4099 11980 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4984 4099 4108 11980 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4985 4242 4608 11981 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4986 4608 4653 11981 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4987 4653 4273 11981 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4988 4273 4242 11981 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4989 4773 4653 11982 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4990 4653 5240 11982 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4991 5240 5280 11982 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4992 5280 4773 11982 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4993 5805 5240 11983 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4994 5240 5228 11983 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4995 5228 5817 11983 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4996 5817 5805 11983 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4997 5760 5281 11984 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4998 5281 5348 11984 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 4999 5348 5689 11984 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5000 5689 5760 11984 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5001 4748 5008 11985 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5002 5008 4785 11985 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5003 4785 4380 11985 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5004 4380 4748 11985 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5005 4219 4145 11986 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5006 4145 4492 11986 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5007 4492 4575 11986 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5008 4575 4219 11986 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5009 4617 4524 11987 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5010 4524 4176 11987 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5011 4176 4270 11987 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5012 4270 4617 11987 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5013 4393 4773 11988 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5014 4773 4997 11988 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5015 4997 4744 11988 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5016 4744 4393 11988 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5017 5692 5341 11989 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5018 5341 5280 11989 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5019 5280 5761 11989 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5020 5761 5692 11989 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5021 4216 4294 11990 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5022 4294 4421 11990 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5023 4421 4335 11990 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5024 4335 4216 11990 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5025 4099 4130 11991 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5026 4130 4278 11991 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5027 4278 4242 11991 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5028 4242 4099 11991 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5029 4270 4108 11992 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5030 4108 4273 11992 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5031 4273 4393 11992 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5032 4393 4270 11992 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5033 4047 4219 11993 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5034 4219 4380 11993 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5035 4380 4247 11993 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5036 4247 4047 11993 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5037 4041 4020 11994 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5038 4020 4225 11994 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5039 4225 4252 11994 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5040 4252 4041 11994 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5041 4197 4118 11995 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5042 4118 4327 11995 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5043 4327 4419 11995 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5044 4419 4197 11995 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5045 4428 4589 11996 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5046 4589 4472 11996 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5047 4472 4354 11996 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5048 4354 4428 11996 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5049 4493 4472 11997 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5050 4472 4691 11997 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5051 4691 4710 11997 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5052 4710 4493 11997 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5053 4535 4891 11998 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5054 4891 4749 11998 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5055 4749 4359 11998 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5056 4359 4535 11998 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5057 4759 4749 11999 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5058 4749 5274 11999 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5059 5274 5277 11999 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5060 5277 4759 11999 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5061 5768 5274 12000 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5062 5274 5307 12000 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5063 5307 5730 12000 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5064 5730 5768 12000 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5065 5329 5307 12001 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5066 5307 4891 12001 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5067 4891 4961 12001 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5068 4961 5329 12001 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5069 4369 4759 12002 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5070 4759 4916 12002 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5071 4916 4580 12002 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5072 4580 4369 12002 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5073 4988 4916 12003 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5074 4916 5316 12003 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5075 5316 5335 12003 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5076 5335 4988 12003 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5077 5719 5316 12004 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5078 5316 5277 12004 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5079 5277 5764 12004 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5080 5764 5719 12004 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5081 4702 4988 12005 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5082 4988 4989 12005 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5083 4989 4704 12005 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5084 4704 4702 12005 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5085 4993 4989 12006 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5086 4989 5336 12006 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5087 5336 5339 12006 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5088 5339 4993 12006 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5089 5696 5336 12007 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5090 5336 5335 12007 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5091 5335 5697 12007 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5092 5697 5696 12007 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5093 5643 5407 12008 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5094 5407 5408 12008 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5095 5408 5644 12008 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5096 5644 5643 12008 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5097 5340 5408 12009 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5098 5408 5022 12009 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5099 5022 4995 12009 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5100 4995 5340 12009 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5101 5154 5143 12010 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5102 5143 5356 12010 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5103 5356 5406 12010 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5104 5406 5154 12010 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5105 5685 5356 12011 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5106 5356 5351 12011 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5107 5351 5688 12011 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5108 5688 5685 12011 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5109 5396 5351 12012 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5110 5351 5127 12012 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5111 5127 5121 12012 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5112 5121 5396 12012 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5113 4956 5127 12013 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5114 5127 5046 12013 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5115 5046 4911 12013 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5116 4911 4956 12013 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5117 4926 5046 12014 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5118 5046 5143 12014 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5119 5143 4985 12014 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5120 4985 4926 12014 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5121 4719 4649 12015 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5122 4649 4483 12015 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5123 4483 4517 12015 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5124 4517 4719 12015 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5125 4509 4483 12016 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5126 4483 4466 12016 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5127 4466 4510 12016 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5128 4510 4509 12016 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5129 4374 4466 12017 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5130 4466 4581 12017 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5131 4581 4436 12017 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5132 4436 4374 12017 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5133 4410 4374 12018 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5134 4374 4232 12018 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5135 4232 4259 12018 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5136 4259 4410 12018 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5137 4221 4232 12019 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5138 4232 4291 12019 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5139 4291 4290 12019 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5140 4290 4221 12019 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5141 4249 4221 12020 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5142 4221 4354 12020 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5143 4354 4389 12020 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5144 4389 4249 12020 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5145 4710 4977 12021 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5146 4977 4961 12021 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5147 4961 4688 12021 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5148 4688 4710 12021 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5149 4389 4493 12022 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5150 4493 4688 12022 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5151 4688 4535 12022 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5152 4535 4389 12022 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5153 4259 4249 12023 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5154 4249 4359 12023 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5155 4359 4369 12023 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5156 4369 4259 12023 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5157 4510 4410 12024 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5158 4410 4580 12024 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5159 4580 4702 12024 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5160 4702 4510 12024 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5161 4515 4509 12025 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5162 4509 4704 12025 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5163 4704 4714 12025 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5164 4714 4515 12025 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5165 5693 5340 12026 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5166 5340 5371 12026 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5167 5371 5675 12026 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5168 5675 5693 12026 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5169 5395 5371 12027 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5170 5371 5073 12027 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5171 5073 5117 12027 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5172 5117 5395 12027 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5173 4806 5073 12028 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5174 5073 4995 12028 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5175 4995 4719 12028 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5176 4719 4806 12028 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5177 4880 4806 12029 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5178 4806 4554 12029 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5179 4554 4642 12029 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5180 4642 4880 12029 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5181 4520 4554 12030 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5182 4554 4517 12030 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5183 4517 4515 12030 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5184 4515 4520 12030 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5185 4588 4520 12031 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5186 4520 4725 12031 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5187 4725 4760 12031 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5188 4760 4588 12031 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5189 4999 4725 12032 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5190 4725 4714 12032 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5191 4714 4993 12032 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5192 4993 4999 12032 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5193 5015 4999 12033 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5194 4999 5342 12033 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5195 5342 5352 12033 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5196 5352 5015 12033 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5197 5691 5342 12034 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5198 5342 5339 12034 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5199 5339 5694 12034 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5200 5694 5691 12034 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5201 5657 5395 12035 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5202 5395 5399 12035 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5203 5399 5652 12035 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5204 5652 5657 12035 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5205 5400 5399 12036 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5206 5399 5131 12036 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5207 5131 5145 12036 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5208 5145 5400 12036 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5209 4913 5131 12037 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5210 5131 5117 12037 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5211 5117 4880 12037 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5212 4880 4913 12037 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5213 4949 4913 12038 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5214 4913 4745 12038 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5215 4745 4850 12038 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5216 4850 4949 12038 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5217 4716 4745 12039 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5218 4745 4642 12039 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5219 4642 4588 12039 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5220 4588 4716 12039 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5221 4827 4716 12040 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5222 4716 4843 12040 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5223 4843 4899 12040 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5224 4899 4827 12040 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5225 5054 4843 12041 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5226 4843 4760 12041 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5227 4760 5015 12041 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5228 5015 5054 12041 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5229 5088 5054 12042 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5230 5054 5369 12042 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5231 5369 5380 12042 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5232 5380 5088 12042 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5233 5677 5369 12043 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5234 5369 5352 12043 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5235 5352 5687 12043 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5236 5687 5677 12043 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5237 5650 5400 12044 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5238 5400 5406 12044 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5239 5406 5645 12044 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5240 5645 5650 12044 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5241 4985 5154 12045 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5242 5154 5145 12045 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5243 5145 4949 12045 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5244 4949 4985 12045 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5245 4911 4926 12046 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5246 4926 4850 12046 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5247 4850 4827 12046 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5248 4827 4911 12046 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5249 5121 4956 12047 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5250 4956 4899 12047 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5251 4899 5088 12047 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5252 5088 5121 12047 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5253 5656 5396 12048 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5254 5396 5380 12048 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5255 5380 5669 12048 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5256 5669 5656 12048 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5257 7158 7326 12049 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5258 7326 7014 12049 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5259 7014 6809 12049 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5260 6809 7158 12049 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5261 6317 6260 12050 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5262 6260 5755 12050 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5263 5755 5776 12050 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5264 5776 6317 12050 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5265 6412 6892 12051 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5266 6892 6865 12051 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5267 6865 6365 12051 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5268 6365 6412 12051 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5269 6845 6865 12052 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5270 6865 7205 12052 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5271 7205 7188 12052 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5272 7188 6845 12052 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5273 7540 7205 12053 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5274 7205 7208 12053 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5275 7208 7552 12053 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5276 7552 7540 12053 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5277 7228 7208 12054 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5278 7208 6892 12054 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5279 6892 6905 12054 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5280 6905 7228 12054 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5281 5778 5789 12055 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5282 5789 6365 12055 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5283 6365 6346 12055 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5284 6346 5778 12055 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5285 6496 6412 12056 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5286 6412 5809 12056 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5287 5809 5944 12056 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5288 5944 6496 12056 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5289 6607 6909 12057 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5290 6909 6905 12057 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5291 6905 6496 12057 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5292 6496 6607 12057 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5293 7577 7228 12058 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5294 7228 7273 12058 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5295 7273 7616 12058 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5296 7616 7577 12058 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5297 7244 7273 12059 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5298 7273 6909 12059 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5299 6909 6895 12059 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5300 6895 7244 12059 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5301 6018 6245 12060 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5302 6245 5944 12060 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5303 5944 5643 12060 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5304 5643 6018 12060 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5305 6640 6607 12061 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5306 6607 6245 12061 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5307 6245 6450 12061 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5308 6450 6640 12061 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5309 6796 7020 12062 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5310 7020 6914 12062 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5311 6914 6695 12062 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5312 6695 6796 12062 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5313 6863 6914 12063 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5314 6914 7286 12063 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5315 7286 7190 12063 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5316 7190 6863 12063 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5317 7618 7286 12064 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5318 7286 7438 12064 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5319 7438 7789 12064 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5320 7789 7618 12064 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5321 7574 7438 12065 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5322 7438 7020 12065 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5323 7020 7128 12065 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5324 7128 7574 12065 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5325 6751 6749 12066 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5326 6749 6611 12066 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5327 6611 6602 12066 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5328 6602 6751 12066 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5329 6492 6611 12067 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5330 6611 6695 12067 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5331 6695 6629 12067 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5332 6629 6492 12067 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5333 6876 6796 12068 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5334 6796 6749 12068 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5335 6749 6759 12068 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5336 6759 6876 12068 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5337 6908 7239 12069 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5338 7239 7128 12069 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5339 7128 6876 12069 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5340 6876 6908 12069 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5341 7963 7574 12070 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5342 7574 7715 12070 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5343 7715 8179 12070 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5344 8179 7963 12070 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5345 7870 7715 12071 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5346 7715 7239 12071 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5347 7239 7371 12071 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5348 7371 7870 12071 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5349 6610 6693 12072 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5350 6693 6759 12072 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5351 6759 6752 12072 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5352 6752 6610 12072 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5353 6856 6908 12073 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5354 6908 6693 12073 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5355 6693 6570 12073 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5356 6570 6856 12073 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5357 7211 7503 12074 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5358 7503 7371 12074 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5359 7371 7082 12074 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5360 7082 7211 12074 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5361 8343 7870 12075 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5362 7870 8090 12075 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5363 8090 8504 12075 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5364 8504 8343 12075 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5365 8166 8090 12076 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5366 8090 7503 12076 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5367 7503 7551 12076 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5368 7551 8166 12076 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5369 7201 7211 12077 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5370 7211 7068 12077 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5371 7068 7063 12077 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5372 7063 7201 12077 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5373 6877 7068 12078 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5374 7068 7082 12078 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5375 7082 6886 12078 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5376 6886 6877 12078 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5377 6043 5989 12079 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5378 5989 5750 12079 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5379 5750 5692 12079 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5380 5692 6043 12079 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5381 5689 5748 12080 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5382 5748 5979 12080 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5383 5979 6032 12080 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5384 6032 5689 12080 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5385 6298 5979 12081 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5386 5979 6114 12081 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5387 6114 6470 12081 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5388 6470 6298 12081 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5389 6548 6114 12082 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5390 6114 6109 12082 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5391 6109 6519 12082 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5392 6519 6548 12082 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5393 6429 6109 12083 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5394 6109 5989 12083 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5395 5989 6303 12083 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5396 6303 6429 12083 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5397 9073 9158 12084 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5398 9158 9150 12084 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5399 9150 9059 12084 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5400 9059 9073 12084 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5401 9127 9150 12085 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5402 9150 9099 12085 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5403 9099 9063 12085 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5404 9063 9127 12085 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5405 8964 9099 12086 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5406 9099 9158 12086 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5407 9158 9013 12086 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5408 9013 8964 12086 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5409 8246 8144 12087 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5410 8144 7945 12087 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5411 7945 7940 12087 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5412 7940 8246 12087 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5413 7712 7945 12088 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5414 7945 7966 12088 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5415 7966 7848 12088 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5416 7848 7712 12088 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5417 7901 8220 12089 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5418 8220 8129 12089 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5419 8129 7844 12089 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5420 7844 7901 12089 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5421 8008 8129 12090 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5422 8129 8281 12090 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5423 8281 8211 12090 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5424 8211 8008 12090 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5425 8339 8281 12091 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5426 8281 8388 12091 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5427 8388 8441 12091 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5428 8441 8339 12091 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5429 8457 8388 12092 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5430 8388 8220 12092 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5431 8220 8290 12092 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5432 8290 8457 12092 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5433 8022 8349 12093 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5434 8349 8290 12093 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5435 8290 7955 12093 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5436 7955 8022 12093 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5437 8529 8457 12094 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5438 8457 8520 12094 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5439 8520 8602 12094 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5440 8602 8529 12094 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5441 8522 8520 12095 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5442 8520 8349 12095 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5443 8349 8346 12095 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5444 8346 8522 12095 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5445 8157 8409 12096 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5446 8409 8302 12096 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5447 8302 7972 12096 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5448 7972 8157 12096 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5449 8278 8302 12097 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5450 8302 8495 12097 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5451 8495 8459 12097 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5452 8459 8278 12097 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5453 8539 8495 12098 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5454 8495 8634 12098 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5455 8634 8704 12098 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5456 8704 8539 12098 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5457 8821 8634 12099 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5458 8634 8409 12099 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5459 8409 8541 12099 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5460 8541 8821 12099 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5461 8486 8799 12100 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5462 8799 8541 12100 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5463 8541 8308 12100 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5464 8308 8486 12100 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5465 8870 8821 12101 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5466 8821 8977 12101 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5467 8977 8971 12101 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5468 8971 8870 12101 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5469 9092 8977 12102 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5470 8977 8799 12102 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5471 8799 8988 12102 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5472 8988 9092 12102 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5473 8914 9134 12103 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5474 9134 8988 12103 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5475 8988 8687 12103 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5476 8687 8914 12103 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5477 9029 9092 12104 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5478 9092 9167 12104 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5479 9167 9088 12104 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5480 9088 9029 12104 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5481 9216 9167 12105 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5482 9167 9134 12105 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5483 9134 9211 12105 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5484 9211 9216 12105 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5485 9147 9234 12106 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5486 9234 9211 12106 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5487 9211 9126 12106 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5488 9126 9147 12106 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5489 9117 9216 12107 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5490 9216 9228 12107 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5491 9228 9122 12107 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5492 9122 9117 12107 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5493 9227 9228 12108 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5494 9228 9234 12108 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5495 9234 9251 12108 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5496 9251 9227 12108 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5497 9213 9261 12109 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5498 9261 9251 12109 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5499 9251 9175 12109 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5500 9175 9213 12109 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5501 9108 9227 12110 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5502 9227 9214 12110 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5503 9214 9072 12110 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5504 9072 9108 12110 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5505 9186 9214 12111 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5506 9214 9261 12111 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5507 9261 9245 12111 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5508 9245 9186 12111 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5509 7719 7712 12112 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5510 7712 7569 12112 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5511 7569 7471 12112 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5512 7471 7719 12112 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5513 7510 7540 12113 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5514 7540 7844 12113 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5515 7844 7786 12113 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5516 7786 7510 12113 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5517 7955 7901 12114 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5518 7901 7552 12114 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5519 7552 7577 12114 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5520 7577 7955 12114 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5521 8016 8022 12115 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5522 8022 7616 12115 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5523 7616 7612 12115 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5524 7612 8016 12115 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5525 7554 7618 12116 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5526 7618 7972 12116 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5527 7972 7941 12116 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5528 7941 7554 12116 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5529 8308 8157 12117 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5530 8157 7789 12117 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5531 7789 7963 12117 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5532 7963 8308 12117 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5533 8687 8486 12118 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5534 8486 8179 12118 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5535 8179 8343 12118 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5536 8343 8687 12118 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5537 8933 8914 12119 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5538 8914 8504 12119 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5539 8504 8556 12119 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5540 8556 8933 12119 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5541 9038 9186 12120 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5542 9186 9148 12120 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5543 9148 9017 12120 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5544 9017 9038 12120 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5545 9128 9148 12121 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5546 9148 9179 12121 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5547 9179 9157 12121 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5548 9157 9128 12121 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5549 9097 9179 12122 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5550 9179 9245 12122 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5551 9245 9181 12122 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5552 9181 9097 12122 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5553 8995 9128 12123 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5554 9128 9115 12123 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5555 9115 8974 12123 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5556 8974 8995 12123 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5557 9111 9115 12124 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5558 9115 9184 12124 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5559 9184 9204 12124 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5560 9204 9111 12124 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5561 9116 9184 12125 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5562 9184 9157 12125 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5563 9157 9061 12125 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5564 9061 9116 12125 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5565 8956 9111 12126 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5566 9111 9110 12126 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5567 9110 8947 12126 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5568 8947 8956 12126 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5569 9106 9110 12127 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5570 9110 9221 12127 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5571 9221 9202 12127 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5572 9202 9106 12127 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5573 9171 9221 12128 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5574 9221 9204 12128 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5575 9204 9146 12128 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5576 9146 9171 12128 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5577 9057 9096 12129 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5578 9096 9054 12129 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5579 9054 9043 12129 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5580 9043 9057 12129 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5581 8943 9054 12130 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5582 9054 9063 12130 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5583 9063 8949 12130 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5584 8949 8943 12130 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5585 9027 9127 12131 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5586 9127 9096 12131 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5587 9096 8996 12131 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5588 8996 9027 12131 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5589 9047 9024 12132 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5590 9024 9040 12132 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5591 9040 9048 12132 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5592 9048 9047 12132 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5593 8955 9040 12133 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5594 9040 9043 12133 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5595 9043 8945 12133 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5596 8945 8955 12133 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5597 8973 9057 12134 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5598 9057 9024 12134 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5599 9024 8941 12134 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5600 8941 8973 12134 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5601 8944 9106 12135 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5602 9106 9093 12135 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5603 9093 8950 12135 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5604 8950 8944 12135 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5605 9068 9093 12136 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5606 9093 9166 12136 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5607 9166 9125 12136 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5608 9125 9068 12136 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5609 9112 9166 12137 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5610 9166 9202 12137 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5611 9202 9156 12137 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5612 9156 9112 12137 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5613 8953 9068 12138 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5614 9068 9048 12138 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5615 9048 8957 12138 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5616 8957 8953 12138 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5617 8960 9047 12139 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5618 9047 9125 12139 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5619 9125 9023 12139 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5620 9023 8960 12139 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5621 8407 8356 12140 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5622 8356 8263 12140 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5623 8263 8352 12140 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5624 8352 8407 12140 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5625 8282 8248 12141 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5626 8248 8356 12141 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5627 8356 8403 12141 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5628 8403 8282 12141 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5629 8536 8443 12142 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5630 8443 8403 12142 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5631 8403 8482 12142 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5632 8482 8536 12142 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5633 8419 8338 12143 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5634 8338 8443 12143 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5635 8443 8539 12143 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5636 8539 8419 12143 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5637 8659 8537 12144 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5638 8537 8704 12144 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5639 8704 8870 12144 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5640 8870 8659 12144 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5641 8857 8778 12145 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5642 8778 8971 12145 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5643 8971 9029 12145 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5644 9029 8857 12145 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5645 8917 8902 12146 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5646 8902 9088 12146 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5647 9088 9117 12146 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5648 9117 8917 12146 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5649 8909 8919 12147 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5650 8919 9122 12147 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5651 9122 9108 12147 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5652 9108 8909 12147 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5653 8852 8883 12148 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5654 8883 9072 12148 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5655 9072 9038 12148 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5656 9038 8852 12148 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5657 8793 8822 12149 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5658 8822 9017 12149 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5659 9017 8995 12149 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5660 8995 8793 12149 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5661 8733 8754 12150 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5662 8754 8974 12150 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5663 8974 8956 12150 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5664 8956 8733 12150 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5665 8712 8717 12151 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5666 8717 8947 12151 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5667 8947 8944 12151 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5668 8944 8712 12151 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5669 8722 8716 12152 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5670 8716 8950 12152 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5671 8950 8953 12152 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5672 8953 8722 12152 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5673 8719 8726 12153 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5674 8726 8957 12153 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5675 8957 8955 12153 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5676 8955 8719 12153 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5677 8699 8702 12154 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5678 8702 8945 12154 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5679 8945 8943 12154 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5680 8943 8699 12154 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5681 8772 8711 12155 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5682 8711 8949 12155 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5683 8949 8964 12155 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5684 8964 8772 12155 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5685 8898 8874 12156 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5686 8874 9013 12156 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5687 9013 9073 12156 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5688 9073 8898 12156 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5689 8755 8785 12157 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5690 8785 8874 12157 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5691 8874 8786 12157 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5692 8786 8755 12157 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5693 8780 8898 12158 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5694 8898 8880 12158 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5695 8880 8750 12158 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5696 8750 8780 12158 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5697 8837 8880 12159 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5698 8880 9059 12159 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5699 9059 9027 12159 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5700 9027 8837 12159 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5701 8713 8837 12160 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5702 8837 8807 12160 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5703 8807 8664 12160 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5704 8664 8713 12160 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5705 8768 8807 12161 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5706 8807 8996 12161 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5707 8996 8973 12161 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5708 8973 8768 12161 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5709 8631 8768 12162 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5710 8768 8725 12162 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5711 8725 8596 12162 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5712 8596 8631 12162 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5713 8751 8725 12163 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5714 8725 8941 12163 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5715 8941 8960 12163 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5716 8960 8751 12163 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5717 8626 8751 12164 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5718 8751 8836 12164 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5719 8836 8720 12164 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5720 8720 8626 12164 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5721 8915 8836 12165 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5722 8836 9023 12165 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5723 9023 9112 12165 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5724 9112 8915 12165 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5725 8798 8915 12166 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5726 8915 8967 12166 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5727 8967 8853 12166 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5728 8853 8798 12166 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5729 8976 8967 12167 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5730 8967 9156 12167 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5731 9156 9171 12167 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5732 9171 8976 12167 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5733 8858 8976 12168 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5734 8976 8940 12168 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5735 8940 8808 12168 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5736 8808 8858 12168 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5737 8904 8940 12169 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5738 8940 9146 12169 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5739 9146 9116 12169 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5740 9116 8904 12169 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5741 8765 8904 12170 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5742 8904 8861 12170 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5743 8861 8718 12170 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5744 8718 8765 12170 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5745 8893 8861 12171 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5746 8861 9061 12171 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5747 9061 9097 12171 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5748 9097 8893 12171 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5749 8758 8893 12172 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5750 8893 8986 12172 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5751 8986 8884 12172 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5752 8884 8758 12172 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5753 9015 8986 12173 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5754 8986 9181 12173 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5755 9181 9213 12173 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5756 9213 9015 12173 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5757 8922 9015 12174 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5758 9015 8992 12174 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5759 8992 8894 12174 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5760 8894 8922 12174 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5761 8969 8992 12175 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5762 8992 9175 12175 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5763 9175 9147 12175 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5764 9147 8969 12175 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5765 8872 8969 12176 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5766 8969 8948 12176 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5767 8948 8840 12176 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5768 8840 8872 12176 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5769 8757 8948 12177 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5770 8948 9126 12177 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5771 9126 8933 12177 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5772 8933 8757 12177 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5773 8646 8757 12178 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5774 8757 8446 12178 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5775 8446 8410 12178 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5776 8410 8646 12178 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5777 8045 8446 12179 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5778 8446 8556 12179 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5779 8556 8166 12179 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5780 8166 8045 12179 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5781 7992 8045 12180 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5782 8045 7494 12180 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5783 7494 7470 12180 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5784 7470 7992 12180 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5785 7160 7494 12181 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5786 7494 7551 12181 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5787 7551 7201 12181 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5788 7201 7160 12181 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5789 7141 7160 12182 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5790 7160 7017 12182 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5791 7017 6999 12182 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5792 6999 7141 12182 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5793 6654 7017 12183 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5794 7017 7063 12183 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5795 7063 6702 12183 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5796 6702 6654 12183 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5797 5854 5877 12184 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5798 5877 6702 12184 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5799 6702 6593 12184 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5800 6593 5854 12184 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5801 6638 6654 12185 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5802 6654 5871 12185 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5803 5871 5867 12185 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5804 5867 6638 12185 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5805 6809 6317 12186 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5806 6317 6346 12186 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5807 6346 6845 12186 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5808 6845 6809 12186 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5809 7471 7158 12187 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5810 7158 7188 12187 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5811 7188 7510 12187 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5812 7510 7471 12187 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5813 7940 7719 12188 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5814 7719 7786 12188 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5815 7786 8008 12188 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5816 8008 7940 12188 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5817 8352 8246 12189 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5818 8246 8211 12189 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5819 8211 8339 12189 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5820 8339 8352 12189 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5821 8482 8407 12190 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5822 8407 8441 12190 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5823 8441 8529 12190 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5824 8529 8482 12190 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5825 8459 8536 12191 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5826 8536 8602 12191 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5827 8602 8522 12191 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5828 8522 8459 12191 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5829 7941 8278 12192 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5830 8278 8346 12192 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5831 8346 8016 12192 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5832 8016 7941 12192 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5833 7190 7554 12193 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5834 7554 7612 12193 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5835 7612 7244 12193 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5836 7244 7190 12193 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5837 6629 6863 12194 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5838 6863 6895 12194 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5839 6895 6640 12194 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5840 6640 6629 12194 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5841 6464 6492 12195 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5842 6492 6450 12195 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5843 6450 6398 12195 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5844 6398 6464 12195 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5845 6357 6474 12196 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5846 6474 6570 12196 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5847 6570 6457 12196 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5848 6457 6357 12196 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5849 6886 6856 12197 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5850 6856 6474 12197 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5851 6474 6533 12197 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5852 6533 6886 12197 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5853 6593 6877 12198 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5854 6877 6542 12198 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5855 6542 6228 12198 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5856 6228 6593 12198 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5857 6279 6200 12199 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5858 6200 5745 12199 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5859 5745 5763 12199 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5860 5763 6279 12199 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5861 6588 6172 12200 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5862 6172 6200 12200 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5863 6200 6618 12200 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5864 6618 6588 12200 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5865 6935 6781 12201 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5866 6781 6852 12201 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5867 6852 6995 12201 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5868 6995 6935 12201 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5869 6847 6852 12202 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5870 6852 6605 12202 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5871 6605 6588 12202 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5872 6588 6847 12202 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5873 6534 6577 12203 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5874 6577 6781 12203 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5875 6781 6748 12203 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5876 6748 6534 12203 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5877 5771 5756 12204 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5878 5756 6231 12204 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5879 6231 6309 12204 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5880 6309 5771 12204 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5881 6616 6231 12205 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5882 6231 6160 12205 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5883 6160 6534 12205 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5884 6534 6616 12205 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5885 6420 6373 12206 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5886 6373 5793 12206 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5887 5793 5812 12206 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5888 5812 6420 12206 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5889 6717 6279 12207 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5890 6279 6373 12207 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5891 6373 6789 12207 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5892 6789 6717 12207 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5893 7030 7006 12208 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5894 7006 7064 12208 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5895 7064 7085 12208 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5896 7085 7030 12208 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5897 6998 7064 12209 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5898 7064 6995 12209 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5899 6995 6928 12209 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5900 6928 6998 12209 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5901 6829 6935 12210 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5902 6935 7006 12210 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5903 7006 6915 12210 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5904 6915 6829 12210 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5905 5817 5807 12211 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5906 5807 6400 12211 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5907 6400 6438 12211 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5908 6438 5817 12211 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5909 6763 6400 12212 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5910 6400 6309 12212 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5911 6309 6708 12212 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5912 6708 6763 12212 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5913 6259 6385 12213 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5914 6385 5802 12213 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5915 5802 5760 12213 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5916 5760 6259 12213 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5917 6820 6420 12214 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5918 6420 6385 12214 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5919 6385 6795 12214 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5920 6795 6820 12214 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5921 6870 7021 12215 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5922 7021 7066 12215 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5923 7066 6901 12215 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5924 6901 6870 12215 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5925 6992 7066 12216 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5926 7066 7085 12216 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5927 7085 7018 12216 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5928 7018 6992 12216 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5929 6946 7030 12217 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5930 7030 7021 12217 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5931 7021 6937 12217 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5932 6937 6946 12217 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5933 5761 5805 12218 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5934 5805 6394 12218 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5935 6394 6272 12218 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5936 6272 5761 12218 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5937 6767 6394 12219 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5938 6394 6438 12219 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5939 6438 6801 12219 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5940 6801 6767 12219 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5941 6661 6259 12220 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5942 6259 6032 12220 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5943 6032 6298 12220 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5944 6298 6661 12220 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5945 6470 6548 12221 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5946 6548 6901 12221 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5947 6901 6826 12221 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5948 6826 6470 12221 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5949 6770 6870 12222 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5950 6870 6519 12222 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5951 6519 6429 12222 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5952 6429 6770 12222 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5953 6303 6043 12223 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5954 6043 6272 12223 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5955 6272 6646 12223 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5956 6646 6303 12223 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5957 6708 6616 12224 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5958 6616 6748 12224 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5959 6748 6829 12224 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5960 6829 6708 12224 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5961 6801 6763 12225 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5962 6763 6915 12225 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5963 6915 6946 12225 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5964 6946 6801 12225 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5965 6646 6767 12226 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5966 6767 6937 12226 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5967 6937 6770 12226 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5968 6770 6646 12226 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5969 6795 6661 12227 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5970 6661 6826 12227 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5971 6826 6992 12227 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5972 6992 6795 12227 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5973 6789 6820 12228 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5974 6820 7018 12228 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5975 7018 6998 12228 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5976 6998 6789 12228 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5977 6618 6717 12229 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5978 6717 6928 12229 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5979 6928 6847 12229 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5980 6847 6618 12229 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5981 6684 6568 12230 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5982 6568 6457 12230 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5983 6457 6610 12230 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5984 6610 6684 12230 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5985 6339 6357 12231 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5986 6357 6568 12231 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5987 6568 6547 12231 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5988 6547 6339 12231 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5989 5764 5768 12232 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5990 5768 6297 12232 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5991 6297 6286 12232 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5992 6286 5764 12232 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5993 6679 6297 12233 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5994 6297 6150 12233 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5995 6150 6508 12233 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5996 6508 6679 12233 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5997 6077 6150 12234 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5998 6150 5730 12234 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 5999 5730 5705 12234 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6000 5705 6077 12234 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6001 5697 5719 12235 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6002 5719 6126 12235 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6003 6126 6051 12235 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6004 6051 5697 12235 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6005 6465 6126 12236 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6006 6126 6286 12236 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6007 6286 6669 12236 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6008 6669 6465 12236 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6009 5694 5696 12237 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6010 5696 6050 12237 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6011 6050 6046 12237 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6012 6046 5694 12237 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6013 6345 6050 12238 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6014 6050 6051 12238 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6015 6051 6347 12238 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6016 6347 6345 12238 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6017 6045 6018 12239 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6018 6018 5644 12239 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6019 5644 5693 12239 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6020 5693 6045 12239 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6021 6132 5999 12240 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6022 5999 5918 12240 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6023 5918 6082 12240 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6024 6082 6132 12240 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6025 5925 5918 12241 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6026 5918 5688 12241 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6027 5688 5656 12241 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6028 5656 5925 12241 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6029 5645 5685 12242 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6030 5685 5902 12242 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6031 5902 5892 12242 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6032 5892 5645 12242 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6033 6054 5902 12243 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6034 5902 5999 12243 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6035 5999 6115 12243 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6036 6115 6054 12243 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6037 6531 6574 12244 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6038 6574 6557 12244 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6039 6557 6532 12244 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6040 6532 6531 12244 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6041 6525 6557 12245 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6042 6557 6398 12245 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6043 6398 6329 12245 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6044 6329 6525 12245 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6045 6602 6464 12246 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6046 6464 6574 12246 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6047 6574 6665 12246 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6048 6665 6602 12246 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6049 6782 6811 12247 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6050 6811 6665 12247 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6051 6665 6628 12247 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6052 6628 6782 12247 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6053 6752 6751 12248 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6054 6751 6811 12248 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6055 6811 6824 12248 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6056 6824 6752 12248 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6057 6650 6684 12249 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6058 6684 6824 12249 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6059 6824 6793 12249 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6060 6793 6650 12249 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6061 6360 6077 12250 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6062 6077 6063 12250 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6063 6063 6339 12250 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6064 6339 6360 12250 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6065 6508 6360 12251 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6066 6360 6547 12251 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6067 6547 6650 12251 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6068 6650 6508 12251 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6069 6669 6679 12252 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6070 6679 6793 12252 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6071 6793 6782 12252 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6072 6782 6669 12252 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6073 6347 6465 12253 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6074 6465 6628 12253 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6075 6628 6531 12253 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6076 6531 6347 12253 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6077 6335 6345 12254 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6078 6345 6532 12254 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6079 6532 6527 12254 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6080 6527 6335 12254 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6081 5930 5974 12255 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6082 5974 5675 12255 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6083 5675 5657 12255 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6084 5657 5930 12255 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6085 6329 6045 12256 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6086 6045 5974 12256 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6087 5974 6237 12256 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6088 6237 6329 12256 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6089 6405 6490 12257 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6090 6490 6237 12257 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6091 6237 6161 12257 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6092 6161 6405 12257 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6093 6527 6525 12258 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6094 6525 6490 12258 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6095 6490 6522 12258 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6096 6522 6527 12258 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6097 6285 6322 12259 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6098 6322 6522 12259 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6099 6522 6458 12259 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6100 6458 6285 12259 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6101 6046 6335 12260 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6102 6335 6322 12260 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6103 6322 6041 12260 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6104 6041 6046 12260 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6105 5687 5691 12261 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6106 5691 6041 12261 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6107 6041 6026 12261 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6108 6026 5687 12261 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6109 5900 5913 12262 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6110 5913 5652 12262 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6111 5652 5650 12262 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6112 5650 5900 12262 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6113 6161 5930 12263 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6114 5930 5913 12263 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6115 5913 6130 12263 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6116 6130 6161 12263 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6117 6192 6301 12264 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6118 6301 6130 12264 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6119 6130 6089 12264 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6120 6089 6192 12264 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6121 6458 6405 12265 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6122 6405 6301 12265 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6123 6301 6332 12265 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6124 6332 6458 12265 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6125 6142 6199 12266 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6126 6199 6332 12266 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6127 6332 6217 12266 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6128 6217 6142 12266 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6129 6026 6285 12267 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6130 6285 6199 12267 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6131 6199 5992 12267 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6132 5992 6026 12267 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6133 5669 5677 12268 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6134 5677 5992 12268 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6135 5992 5960 12268 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6136 5960 5669 12268 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6137 6089 5900 12269 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6138 5900 5892 12269 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6139 5892 6054 12269 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6140 6054 6089 12269 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6141 6217 6192 12270 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6142 6192 6115 12270 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6143 6115 6132 12270 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6144 6132 6217 12270 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6145 5960 6142 12271 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6146 6142 6082 12271 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6147 6082 5925 12271 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6148 5925 5960 12271 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6149 4522 4424 12272 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6150 4424 4943 12272 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6151 4943 5013 12272 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6152 5013 4522 12272 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6153 3834 3492 12273 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6154 3492 3466 12273 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6155 3466 3815 12273 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6156 3815 3834 12273 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6157 4635 4154 12274 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6158 4154 4140 12274 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6159 4140 4548 12274 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6160 4548 4635 12274 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6161 3426 3758 12275 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6162 3758 3853 12275 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6163 3853 3489 12275 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6164 3489 3426 12275 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6165 4183 4131 12276 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6166 4131 4346 12276 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6167 4346 4409 12276 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6168 4409 4183 12276 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6169 3604 3256 12277 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6170 3256 3076 12277 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6171 3076 3471 12277 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6172 3471 3604 12277 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6173 4246 4018 12278 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6174 4018 3914 12278 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6175 3914 4170 12278 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6176 4170 4246 12278 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6177 3329 2862 12279 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6178 2862 2706 12279 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6179 2706 3174 12279 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6180 3174 3329 12279 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6181 3958 4160 12280 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6182 4160 4188 12280 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6183 4188 3673 12280 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6184 3673 3958 12280 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6185 3140 2823 12281 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6186 2823 2754 12281 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6187 2754 3084 12281 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6188 3084 3140 12281 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6189 2768 2741 12282 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6190 2741 3066 12282 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6191 3066 3094 12282 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6192 3094 2768 12282 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6193 2885 2639 12283 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6194 2639 2504 12283 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6195 2504 2734 12283 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6196 2734 2885 12283 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6197 2561 2246 12284 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6198 2246 2057 12284 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6199 2057 2358 12284 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6200 2358 2561 12284 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6201 3808 3557 12285 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6202 3557 3568 12285 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6203 3568 3885 12285 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6204 3885 3808 12285 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6205 3330 3162 12286 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6206 3162 3095 12286 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6207 3095 3322 12286 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6208 3322 3330 12286 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6209 2641 2691 12287 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6210 2691 2645 12287 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6211 2645 2565 12287 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6212 2565 2641 12287 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6213 2412 2342 12288 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6214 2342 2174 12288 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6215 2174 2224 12288 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6216 2224 2412 12288 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6217 2068 2072 12289 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6218 2072 2016 12289 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6219 2016 1953 12289 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6220 1953 2068 12289 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6221 1878 1957 12290 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6222 1957 1928 12290 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6223 1928 1829 12290 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6224 1829 1878 12290 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6225 1817 1923 12291 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6226 1923 1937 12291 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6227 1937 1818 12291 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6228 1818 1817 12291 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6229 1831 1973 12292 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6230 1973 2007 12292 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6231 2007 1859 12292 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6232 1859 1831 12292 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6233 1917 1897 12293 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6234 1897 2028 12293 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6235 2028 2050 12293 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6236 2050 1917 12293 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6237 1934 1930 12294 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6238 1930 2070 12294 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6239 2070 2089 12294 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6240 2089 1934 12294 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6241 1939 1935 12295 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6242 1935 2097 12295 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6243 2097 2100 12295 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6244 2100 1939 12295 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6245 1977 1952 12296 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6246 1952 2094 12296 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6247 2094 2092 12296 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6248 2092 1977 12296 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6249 2090 2005 12297 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6250 2005 1997 12297 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6251 1997 2088 12297 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6252 2088 2090 12297 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6253 2101 1991 12298 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6254 1991 2002 12298 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6255 2002 2099 12298 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6256 2099 2101 12298 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6257 1945 1981 12299 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6258 1981 2095 12299 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6259 2095 2080 12299 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6260 2080 1945 12299 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6261 1918 1895 12300 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6262 1895 1986 12300 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6263 1986 2018 12300 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6264 2018 1918 12300 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6265 1988 1949 12301 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6266 1949 2049 12301 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6267 2049 2071 12301 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6268 2071 1988 12301 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6269 1998 2021 12302 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6270 2021 2103 12302 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6271 2103 2085 12302 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6272 2085 1998 12302 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6273 1879 1920 12303 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6274 1920 2022 12303 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6275 2022 1933 12303 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6276 1933 1879 12303 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6277 1824 1843 12304 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6278 1843 1889 12304 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6279 1889 1874 12304 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6280 1874 1824 12304 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6281 1861 1841 12305 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6282 1841 1899 12305 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6283 1899 1929 12305 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6284 1929 1861 12305 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6285 1866 1888 12306 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6286 1888 1984 12306 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6287 1984 1948 12306 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6288 1948 1866 12306 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6289 1832 1784 12307 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6290 1784 1800 12307 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6291 1800 1864 12307 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6292 1864 1832 12307 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6293 1898 1811 12308 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6294 1811 1794 12308 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6295 1794 1870 12308 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6296 1870 1898 12308 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6297 2945 2541 12309 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6298 2541 2490 12309 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6299 2490 2877 12309 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6300 2877 2945 12309 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6301 3832 3538 12310 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6302 3538 3494 12310 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6303 3494 3841 12310 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6304 3841 3832 12310 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6305 5191 5168 12311 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6306 5168 5877 12311 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6307 5877 5854 12311 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6308 5854 5191 12311 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6309 4199 4182 12312 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6310 4182 4683 12312 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6311 4683 4703 12312 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6312 4703 4199 12312 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6313 3503 3837 12313 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6314 3837 3855 12313 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6315 3855 3534 12313 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6316 3534 3503 12313 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6317 3025 2912 12314 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6318 2912 3198 12314 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6319 3198 3260 12314 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6320 3260 3025 12314 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6321 2664 2608 12315 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6322 2608 2516 12315 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6323 2516 2589 12315 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6324 2589 2664 12315 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6325 3013 2699 12316 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6326 2699 2703 12316 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6327 2703 3019 12316 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6328 3019 3013 12316 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6329 3773 3429 12317 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6330 3429 3434 12317 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6331 3434 3800 12317 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6332 3800 3773 12317 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6333 4431 4136 12318 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6334 4136 4151 12318 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6335 4151 4400 12318 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6336 4400 4431 12318 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6337 5271 5285 12319 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6338 5285 5756 12319 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6339 5756 5771 12319 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6340 5771 5271 12319 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6341 5793 5253 12320 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6342 5253 5233 12320 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6343 5233 5812 12320 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6344 5812 5793 12320 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6345 5348 5292 12321 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6346 5292 5748 12321 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6347 5748 5689 12321 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6348 5689 5348 12321 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6349 5750 5291 12322 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6350 5291 5341 12322 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6351 5341 5692 12322 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6352 5692 5750 12322 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6353 4111 4260 12323 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6354 4260 4294 12323 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6355 4294 4216 12323 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6356 4216 4111 12323 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6357 4421 4812 12324 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6358 4812 4739 12324 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6359 4739 4335 12324 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6360 4335 4421 12324 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6361 4009 4034 12325 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6362 4034 4130 12325 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6363 4130 4099 12325 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6364 4099 4009 12325 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6365 4278 4647 12326 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6366 4647 4608 12326 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6367 4608 4242 12326 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6368 4242 4278 12326 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6369 4176 4017 12327 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6370 4017 4108 12327 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6371 4108 4270 12327 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6372 4270 4176 12327 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6373 4273 4653 12328 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6374 4653 4773 12328 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6375 4773 4393 12328 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6376 4393 4273 12328 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6377 4047 3973 12329 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6378 3973 4145 12329 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6379 4145 4219 12329 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6380 4219 4047 12329 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6381 4785 4661 12330 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6382 4661 4247 12330 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6383 4247 4380 12330 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6384 4380 4785 12330 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6385 4041 3975 12331 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6386 3975 3955 12331 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6387 3955 4020 12331 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6388 4020 4041 12331 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6389 4627 4674 12332 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6390 4674 4252 12332 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6391 4252 4225 12332 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6392 4225 4627 12332 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6393 4197 4192 12333 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6394 4192 4044 12333 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6395 4044 4118 12333 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6396 4118 4197 12333 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6397 4766 4842 12334 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6398 4842 4419 12334 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6399 4419 4327 12334 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6400 4327 4766 12334 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6401 4428 4348 12335 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6402 4348 4470 12335 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6403 4470 4589 12335 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6404 4589 4428 12335 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6405 4291 4293 12336 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6406 4293 4282 12336 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6407 4282 4290 12336 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6408 4290 4291 12336 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6409 4552 4427 12337 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6410 4427 4436 12337 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6411 4436 4581 12337 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6412 4581 4552 12337 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6413 4649 4719 12338 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6414 4719 4995 12338 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6415 4995 4596 12338 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6416 4596 4649 12338 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6417 5339 5336 12339 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6418 5336 5696 12339 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6419 5696 5694 12339 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6420 5694 5339 12339 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6421 5335 5316 12340 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6422 5316 5719 12340 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6423 5719 5697 12340 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6424 5697 5335 12340 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6425 4354 4472 12341 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6426 4472 4493 12341 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6427 4493 4389 12341 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6428 4389 4354 12341 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6429 4891 4535 12342 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6430 4535 4688 12342 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6431 4688 4961 12342 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6432 4961 4891 12342 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6433 4259 4232 12343 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6434 4232 4221 12343 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6435 4221 4249 12343 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6436 4249 4259 12343 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6437 4359 4749 12344 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6438 4749 4759 12344 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6439 4759 4369 12344 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6440 4369 4359 12344 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6441 4510 4466 12345 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6442 4466 4374 12345 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6443 4374 4410 12345 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6444 4410 4510 12345 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6445 4580 4916 12346 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6446 4916 4988 12346 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6447 4988 4702 12346 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6448 4702 4580 12346 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6449 4517 4483 12347 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6450 4483 4509 12347 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6451 4509 4515 12347 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6452 4515 4517 12347 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6453 4704 4989 12348 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6454 4989 4993 12348 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6455 4993 4714 12348 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6456 4714 4704 12348 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6457 5117 5073 12349 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6458 5073 4806 12349 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6459 4806 4880 12349 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6460 4880 5117 12349 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6461 4642 4554 12350 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6462 4554 4520 12350 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6463 4520 4588 12350 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6464 4588 4642 12350 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6465 4760 4725 12351 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6466 4725 4999 12351 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6467 4999 5015 12351 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6468 5015 4760 12351 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6469 5652 5399 12352 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6470 5399 5400 12352 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6471 5400 5650 12352 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6472 5650 5652 12352 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6473 5145 5131 12353 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6474 5131 4913 12353 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6475 4913 4949 12353 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6476 4949 5145 12353 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6477 4850 4745 12354 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6478 4745 4716 12354 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6479 4716 4827 12354 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6480 4827 4850 12354 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6481 4899 4843 12355 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6482 4843 5054 12355 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6483 5054 5088 12355 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6484 5088 4899 12355 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6485 4021 4040 12356 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6486 4040 4401 12356 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6487 4401 4385 12356 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6488 4385 4021 12356 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6489 5174 5178 12357 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6490 5178 5867 12357 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6491 5867 5871 12357 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6492 5871 5174 12357 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6493 3547 3570 12358 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6494 3570 3902 12358 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6495 3902 3883 12358 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6496 3883 3547 12358 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6497 2601 2638 12359 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6498 2638 3042 12359 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6499 3042 2992 12359 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6500 2992 2601 12359 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6501 2059 2161 12360 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6502 2161 2123 12360 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6503 2123 2030 12360 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6504 2030 2059 12360 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6505 2104 2237 12361 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6506 2237 2280 12361 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6507 2280 2141 12361 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6508 2141 2104 12361 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6509 2076 2190 12362 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6510 2190 2185 12362 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6511 2185 2069 12362 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6512 2069 2076 12362 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6513 2207 2327 12363 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6514 2327 2247 12363 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6515 2247 2130 12363 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6516 2130 2207 12363 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6517 2165 2294 12364 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6518 2294 2334 12364 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6519 2334 2205 12364 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6520 2205 2165 12364 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6521 2146 2170 12365 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6522 2170 2257 12365 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6523 2257 2261 12365 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6524 2261 2146 12365 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6525 7552 7208 12366 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6526 7208 7228 12366 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6527 7228 7577 12366 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6528 7577 7552 12366 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6529 6892 6412 12367 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6530 6412 6496 12367 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6531 6496 6905 12367 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6532 6905 6892 12367 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6533 7190 7286 12368 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6534 7286 7618 12368 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6535 7618 7554 12368 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6536 7554 7190 12368 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6537 6695 6914 12369 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6538 6914 6863 12369 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6539 6863 6629 12369 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6540 6629 6695 12369 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6541 7789 7438 12370 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6542 7438 7574 12370 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6543 7574 7963 12370 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6544 7963 7789 12370 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6545 7020 6796 12371 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6546 6796 6876 12371 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6547 6876 7128 12371 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6548 7128 7020 12371 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6549 8179 7715 12372 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6550 7715 7870 12372 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6551 7870 8343 12372 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6552 8343 8179 12372 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6553 6886 7082 12373 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6554 7082 7371 12373 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6555 7371 6856 12373 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6556 6856 6886 12373 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6557 8220 7901 12374 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6558 7901 7955 12374 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6559 7955 8290 12374 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6560 8290 8220 12374 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6561 7972 8302 12375 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6562 8302 8278 12375 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6563 8278 7941 12375 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6564 7941 7972 12375 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6565 8409 8157 12376 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6566 8157 8308 12376 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6567 8308 8541 12376 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6568 8541 8409 12376 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6569 8799 8486 12377 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6570 8486 8687 12377 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6571 8687 8988 12377 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6572 8988 8799 12377 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6573 5755 5286 12378 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6574 5286 5266 12378 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6575 5266 5776 12378 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6576 5776 5755 12378 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6577 7569 7326 12379 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6578 7326 7158 12379 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6579 7158 7471 12379 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6580 7471 7569 12379 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6581 7940 7945 12380 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6582 7945 7712 12380 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6583 7712 7719 12380 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6584 7719 7940 12380 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6585 8356 8407 12381 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6586 8407 8482 12381 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6587 8482 8403 12381 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6588 8403 8356 12381 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6589 8704 8634 12382 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6590 8634 8821 12382 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6591 8821 8870 12382 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6592 8870 8704 12382 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6593 8971 8977 12383 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6594 8977 9092 12383 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6595 9092 9029 12383 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6596 9029 8971 12383 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6597 9088 9167 12384 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6598 9167 9216 12384 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6599 9216 9117 12384 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6600 9117 9088 12384 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6601 9122 9228 12385 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6602 9228 9227 12385 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6603 9227 9108 12385 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6604 9108 9122 12385 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6605 9072 9214 12386 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6606 9214 9186 12386 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6607 9186 9038 12386 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6608 9038 9072 12386 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6609 9017 9148 12387 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6610 9148 9128 12387 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6611 9128 8995 12387 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6612 8995 9017 12387 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6613 8974 9115 12388 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6614 9115 9111 12388 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6615 9111 8956 12388 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6616 8956 8974 12388 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6617 8947 9110 12389 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6618 9110 9106 12389 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6619 9106 8944 12389 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6620 8944 8947 12389 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6621 8950 9093 12390 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6622 9093 9068 12390 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6623 9068 8953 12390 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6624 8953 8950 12390 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6625 9048 9040 12391 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6626 9040 8955 12391 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6627 8955 8957 12391 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6628 8957 9048 12391 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6629 9043 9054 12392 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6630 9054 8943 12392 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6631 8943 8945 12392 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6632 8945 9043 12392 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6633 9063 9099 12393 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6634 9099 8964 12393 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6635 8964 8949 12393 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6636 8949 9063 12393 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6637 9059 9150 12394 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6638 9150 9127 12394 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6639 9127 9027 12394 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6640 9027 9059 12394 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6641 9096 9057 12395 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6642 9057 8973 12395 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6643 8973 8996 12395 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6644 8996 9096 12395 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6645 9024 9047 12396 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6646 9047 8960 12396 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6647 8960 8941 12396 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6648 8941 9024 12396 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6649 9125 9166 12397 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6650 9166 9112 12397 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6651 9112 9023 12397 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6652 9023 9125 12397 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6653 9202 9221 12398 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6654 9221 9171 12398 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6655 9171 9156 12398 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6656 9156 9202 12398 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6657 9204 9184 12399 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6658 9184 9116 12399 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6659 9116 9146 12399 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6660 9146 9204 12399 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6661 9157 9179 12400 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6662 9179 9097 12400 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6663 9097 9061 12400 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6664 9061 9157 12400 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6665 9261 9213 12401 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6666 9213 9181 12401 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6667 9181 9245 12401 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6668 9245 9261 12401 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6669 9234 9147 12402 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6670 9147 9175 12402 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6671 9175 9251 12402 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6672 9251 9234 12402 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6673 8504 8090 12403 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6674 8090 8166 12403 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6675 8166 8556 12403 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6676 8556 8504 12403 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6677 7503 7211 12404 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6678 7211 7201 12404 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6679 7201 7551 12404 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6680 7551 7503 12404 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6681 5264 5256 12405 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6682 5256 5789 12405 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6683 5789 5778 12405 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6684 5778 5264 12405 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6685 6365 6865 12406 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6686 6865 6845 12406 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6687 6845 6346 12406 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6688 6346 6365 12406 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6689 7188 7205 12407 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6690 7205 7540 12407 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6691 7540 7510 12407 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6692 7510 7188 12407 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6693 7844 8129 12408 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6694 8129 8008 12408 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6695 8008 7786 12408 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6696 7786 7844 12408 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6697 8441 8388 12409 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6698 8388 8457 12409 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6699 8457 8529 12409 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6700 8529 8441 12409 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6701 8349 8022 12410 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6702 8022 8016 12410 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6703 8016 8346 12410 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6704 8346 8349 12410 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6705 7616 7273 12411 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6706 7273 7244 12411 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6707 7244 7612 12411 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6708 7612 7616 12411 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6709 6909 6607 12412 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6710 6607 6640 12412 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6711 6640 6895 12412 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6712 6895 6909 12412 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6713 5644 5408 12413 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6714 5408 5340 12413 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6715 5340 5693 12413 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6716 5693 5644 12413 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6717 5407 5643 12414 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6718 5643 5944 12414 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6719 5944 5104 12414 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6720 5104 5407 12414 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6721 5745 5295 12415 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6722 5295 5278 12415 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6723 5278 5763 12415 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6724 5763 5745 12415 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6725 5228 5238 12416 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6726 5238 5807 12416 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6727 5807 5817 12416 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6728 5817 5228 12416 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6729 5802 5244 12417 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6730 5244 5281 12417 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6731 5281 5760 12417 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6732 5760 5802 12417 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6733 5280 5240 12418 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6734 5240 5805 12418 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6735 5805 5761 12418 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6736 5761 5280 12418 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6737 6781 6935 12419 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6738 6935 6829 12419 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6739 6829 6748 12419 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6740 6748 6781 12419 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6741 6309 6231 12420 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6742 6231 6616 12420 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6743 6616 6708 12420 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6744 6708 6309 12420 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6745 7006 7030 12421 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6746 7030 6946 12421 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6747 6946 6915 12421 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6748 6915 7006 12421 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6749 6438 6400 12422 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6750 6400 6763 12422 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6751 6763 6801 12422 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6752 6801 6438 12422 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6753 7021 6870 12423 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6754 6870 6770 12423 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6755 6770 6937 12423 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6756 6937 7021 12423 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6757 6272 6394 12424 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6758 6394 6767 12424 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6759 6767 6646 12424 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6760 6646 6272 12424 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6761 6901 7066 12425 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6762 7066 6992 12425 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6763 6992 6826 12425 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6764 6826 6901 12425 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6765 6385 6259 12426 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6766 6259 6661 12426 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6767 6661 6795 12426 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6768 6795 6385 12426 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6769 7085 7064 12427 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6770 7064 6998 12427 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6771 6998 7018 12427 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6772 7018 7085 12427 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6773 6373 6420 12428 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6774 6420 6820 12428 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6775 6820 6789 12428 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6776 6789 6373 12428 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6777 6995 6852 12429 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6778 6852 6847 12429 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6779 6847 6928 12429 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6780 6928 6995 12429 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6781 6200 6279 12430 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6782 6279 6717 12430 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6783 6717 6618 12430 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6784 6618 6200 12430 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6785 6693 6610 12431 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6786 6610 6457 12431 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6787 6457 6570 12431 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6788 6570 6693 12431 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6789 6749 6751 12432 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6790 6751 6752 12432 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6791 6752 6759 12432 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6792 6759 6749 12432 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6793 6602 6611 12433 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6794 6611 6492 12433 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6795 6492 6464 12433 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6796 6464 6602 12433 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6797 6329 6398 12434 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6798 6398 6450 12434 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6799 6450 6045 12434 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6800 6045 6329 12434 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6801 5277 5274 12435 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6802 5274 5768 12435 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6803 5768 5764 12435 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6804 5764 5277 12435 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6805 6568 6684 12436 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6806 6684 6650 12436 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6807 6650 6547 12436 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6808 6547 6568 12436 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6809 6508 6150 12437 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6810 6150 6077 12437 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6811 6077 6360 12437 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6812 6360 6508 12437 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6813 6811 6782 12438 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6814 6782 6793 12438 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6815 6793 6824 12438 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6816 6824 6811 12438 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6817 6286 6297 12439 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6818 6297 6679 12439 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6819 6679 6669 12439 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6820 6669 6286 12439 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6821 6574 6531 12440 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6822 6531 6628 12440 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6823 6628 6665 12440 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6824 6665 6574 12440 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6825 6051 6126 12441 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6826 6126 6465 12441 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6827 6465 6347 12441 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6828 6347 6051 12441 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6829 6532 6557 12442 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6830 6557 6525 12442 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6831 6525 6527 12442 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6832 6527 6532 12442 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6833 6046 6050 12443 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6834 6050 6345 12443 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6835 6345 6335 12443 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6836 6335 6046 12443 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6837 5352 5342 12444 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6838 5342 5691 12444 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6839 5691 5687 12444 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6840 5687 5352 12444 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6841 5675 5371 12445 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6842 5371 5395 12445 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6843 5395 5657 12445 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6844 5657 5675 12445 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6845 5974 5930 12446 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6846 5930 6161 12446 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6847 6161 6237 12446 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6848 6237 5974 12446 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6849 6490 6405 12447 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6850 6405 6458 12447 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6851 6458 6522 12447 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6852 6522 6490 12447 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6853 6322 6285 12448 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6854 6285 6026 12448 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6855 6026 6041 12448 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6856 6041 6322 12448 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6857 5380 5369 12449 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6858 5369 5677 12449 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6859 5677 5669 12449 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6860 5669 5380 12449 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6861 5913 5900 12450 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6862 5900 6089 12450 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6863 6089 6130 12450 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6864 6130 5913 12450 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6865 6301 6192 12451 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6866 6192 6217 12451 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6867 6217 6332 12451 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6868 6332 6301 12451 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6869 6199 6142 12452 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6870 6142 5960 12452 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6871 5960 5992 12452 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6872 5992 6199 12452 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6873 5688 5351 12453 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6874 5351 5396 12453 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6875 5396 5656 12453 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6876 5656 5688 12453 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6877 5406 5356 12454 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6878 5356 5685 12454 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6879 5685 5645 12454 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6880 5645 5406 12454 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6881 6999 7017 12455 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6882 7017 6654 12455 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6883 6654 6638 12455 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6884 6638 6999 12455 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6885 7470 7494 12456 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6886 7494 7160 12456 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6887 7160 7141 12456 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6888 7141 7470 12456 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6889 8410 8446 12457 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6890 8446 8045 12457 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6891 8045 7992 12457 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6892 7992 8410 12457 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6893 8884 8986 12458 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6894 8986 9015 12458 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6895 9015 8922 12458 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6896 8922 8884 12458 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6897 8808 8940 12459 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6898 8940 8904 12459 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6899 8904 8765 12459 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6900 8765 8808 12459 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6901 8853 8967 12460 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6902 8967 8976 12460 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6903 8976 8858 12460 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6904 8858 8853 12460 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6905 8720 8836 12461 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6906 8836 8915 12461 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6907 8915 8798 12461 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6908 8798 8720 12461 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6909 8750 8880 12462 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6910 8880 8837 12462 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6911 8837 8713 12462 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6912 8713 8750 12462 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6913 8874 8898 12463 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6914 8898 8780 12463 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6915 8780 8786 12463 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6916 8786 8874 12463 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6917 5656 5669 12464 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6918 5669 5960 12464 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6919 5960 5925 12464 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6920 5925 5656 12464 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6921 6082 6142 12465 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6922 6142 6217 12465 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6923 6217 6132 12465 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6924 6132 6082 12465 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6925 6115 6192 12466 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6926 6192 6089 12466 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6927 6089 6054 12466 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6928 6054 6115 12466 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6929 5892 5900 12467 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6930 5900 5650 12467 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6931 5650 5645 12467 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6932 5645 5892 12467 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6933 5677 5687 12468 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6934 5687 6026 12468 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6935 6026 5992 12468 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6936 5992 5677 12468 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6937 6199 6285 12469 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6938 6285 6458 12469 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6939 6458 6332 12469 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6940 6332 6199 12469 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6941 6301 6405 12470 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6942 6405 6161 12470 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6943 6161 6130 12470 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6944 6130 6301 12470 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6945 5913 5930 12471 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6946 5930 5657 12471 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6947 5657 5652 12471 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6948 5652 5913 12471 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6949 5691 5694 12472 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6950 5694 6046 12472 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6951 6046 6041 12472 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6952 6041 5691 12472 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6953 6322 6335 12473 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6954 6335 6527 12473 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6955 6527 6522 12473 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6956 6522 6322 12473 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6957 6490 6525 12474 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6958 6525 6329 12474 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6959 6329 6237 12474 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6960 6237 6490 12474 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6961 5974 6045 12475 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6962 6045 5693 12475 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6963 5693 5675 12475 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6964 5675 5974 12475 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6965 6347 6531 12476 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6966 6531 6532 12476 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6967 6532 6345 12476 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6968 6345 6347 12476 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6969 6669 6782 12477 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6970 6782 6628 12477 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6971 6628 6465 12477 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6972 6465 6669 12477 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6973 6508 6650 12478 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6974 6650 6793 12478 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6975 6793 6679 12478 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6976 6679 6508 12478 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6977 5700 6063 12479 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6978 6063 6077 12479 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6979 6077 5705 12479 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6980 5705 5700 12479 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6981 6684 6610 12480 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6982 6610 6752 12480 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6983 6752 6824 12480 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6984 6824 6684 12480 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6985 6811 6751 12481 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6986 6751 6602 12481 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6987 6602 6665 12481 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6988 6665 6811 12481 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6989 6574 6464 12482 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6990 6464 6398 12482 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6991 6398 6557 12482 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6992 6557 6574 12482 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6993 5697 6051 12483 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6994 6051 6050 12483 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6995 6050 5696 12483 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6996 5696 5697 12483 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6997 5764 6286 12484 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6998 6286 6126 12484 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 6999 6126 5719 12484 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7000 5719 5764 12484 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7001 5730 6150 12485 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7002 6150 6297 12485 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7003 6297 5768 12485 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7004 5768 5730 12485 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7005 6928 6717 12486 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7006 6717 6789 12486 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7007 6789 6998 12486 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7008 6998 6928 12486 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7009 7018 6820 12487 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7010 6820 6795 12487 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7011 6795 6992 12487 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7012 6992 7018 12487 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7013 6826 6661 12488 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7014 6661 6298 12488 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7015 6298 6470 12488 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7016 6470 6826 12488 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7017 6646 6770 12489 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7018 6770 6429 12489 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7019 6429 6303 12489 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7020 6303 6646 12489 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7021 6801 6946 12490 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7022 6946 6937 12490 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7023 6937 6767 12490 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7024 6767 6801 12490 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7025 6708 6829 12491 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7026 6829 6915 12491 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7027 6915 6763 12491 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7028 6763 6708 12491 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7029 5692 5761 12492 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7030 5761 6272 12492 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7031 6272 6043 12492 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7032 6043 5692 12492 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7033 6519 6870 12493 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7034 6870 6901 12493 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7035 6901 6548 12493 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7036 6548 6519 12493 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7037 6032 6259 12494 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7038 6259 5760 12494 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7039 5760 5689 12494 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7040 5689 6032 12494 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7041 5805 5817 12495 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7042 5817 6438 12495 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7043 6438 6394 12495 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7044 6394 5805 12495 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7045 7021 7030 12496 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7046 7030 7085 12496 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7047 7085 7066 12496 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7048 7066 7021 12496 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7049 6385 6420 12497 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7050 6420 5812 12497 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7051 5812 5802 12497 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7052 5802 6385 12497 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7053 5807 5771 12498 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7054 5771 6309 12498 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7055 6309 6400 12498 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7056 6400 5807 12498 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7057 7006 6935 12499 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7058 6935 6995 12499 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7059 6995 7064 12499 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7060 7064 7006 12499 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7061 6373 6279 12500 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7062 6279 5763 12500 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7063 5763 5793 12500 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7064 5793 6373 12500 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7065 5756 5736 12501 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7066 5736 6160 12501 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7067 6160 6231 12501 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7068 6231 5756 12501 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7069 6781 6577 12502 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7070 6577 6605 12502 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7071 6605 6852 12502 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7072 6852 6781 12502 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7073 6200 6172 12503 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7074 6172 5739 12503 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7075 5739 5745 12503 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7076 5745 6200 12503 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7077 5751 5854 12504 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7078 5854 6593 12504 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7079 6593 6228 12504 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7080 6228 5751 12504 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7081 6542 6877 12505 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7082 6877 6886 12505 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7083 6886 6533 12505 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7084 6533 6542 12505 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7085 6450 6492 12506 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7086 6492 6629 12506 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7087 6629 6640 12506 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7088 6640 6450 12506 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7089 6895 6863 12507 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7090 6863 7190 12507 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7091 7190 7244 12507 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7092 7244 6895 12507 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7093 7612 7554 12508 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7094 7554 7941 12508 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7095 7941 8016 12508 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7096 8016 7612 12508 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7097 8346 8278 12509 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7098 8278 8459 12509 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7099 8459 8522 12509 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7100 8522 8346 12509 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7101 8602 8536 12510 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7102 8536 8482 12510 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7103 8482 8529 12510 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7104 8529 8602 12510 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7105 8441 8407 12511 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7106 8407 8352 12511 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7107 8352 8339 12511 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7108 8339 8441 12511 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7109 8211 8246 12512 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7110 8246 7940 12512 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7111 7940 8008 12512 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7112 8008 8211 12512 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7113 7786 7719 12513 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7114 7719 7471 12513 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7115 7471 7510 12513 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7116 7510 7786 12513 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7117 7188 7158 12514 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7118 7158 6809 12514 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7119 6809 6845 12514 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7120 6845 7188 12514 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7121 6346 6317 12515 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7122 6317 5776 12515 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7123 5776 5778 12515 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7124 5778 6346 12515 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7125 5877 5871 12516 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7126 5871 6654 12516 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7127 6654 6702 12516 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7128 6702 5877 12516 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7129 7063 7017 12517 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7130 7017 7160 12517 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7131 7160 7201 12517 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7132 7201 7063 12517 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7133 7551 7494 12518 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7134 7494 8045 12518 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7135 8045 8166 12518 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7136 8166 7551 12518 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7137 8556 8446 12519 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7138 8446 8757 12519 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7139 8757 8933 12519 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7140 8933 8556 12519 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7141 9126 8948 12520 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7142 8948 8969 12520 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7143 8969 9147 12520 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7144 9147 9126 12520 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7145 9175 8992 12521 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7146 8992 9015 12521 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7147 9015 9213 12521 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7148 9213 9175 12521 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7149 9181 8986 12522 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7150 8986 8893 12522 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7151 8893 9097 12522 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7152 9097 9181 12522 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7153 9061 8861 12523 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7154 8861 8904 12523 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7155 8904 9116 12523 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7156 9116 9061 12523 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7157 9146 8940 12524 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7158 8940 8976 12524 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7159 8976 9171 12524 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7160 9171 9146 12524 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7161 9156 8967 12525 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7162 8967 8915 12525 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7163 8915 9112 12525 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7164 9112 9156 12525 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7165 9023 8836 12526 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7166 8836 8751 12526 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7167 8751 8960 12526 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7168 8960 9023 12526 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7169 8941 8725 12527 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7170 8725 8768 12527 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7171 8768 8973 12527 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7172 8973 8941 12527 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7173 8996 8807 12528 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7174 8807 8837 12528 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7175 8837 9027 12528 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7176 9027 8996 12528 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7177 9059 8880 12529 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7178 8880 8898 12529 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7179 8898 9073 12529 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7180 9073 9059 12529 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7181 8949 8711 12530 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7182 8711 8699 12530 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7183 8699 8943 12530 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7184 8943 8949 12530 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7185 8945 8702 12531 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7186 8702 8719 12531 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7187 8719 8955 12531 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7188 8955 8945 12531 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7189 8957 8726 12532 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7190 8726 8722 12532 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7191 8722 8953 12532 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7192 8953 8957 12532 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7193 8950 8716 12533 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7194 8716 8712 12533 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7195 8712 8944 12533 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7196 8944 8950 12533 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7197 8947 8717 12534 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7198 8717 8733 12534 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7199 8733 8956 12534 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7200 8956 8947 12534 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7201 8974 8754 12535 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7202 8754 8793 12535 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7203 8793 8995 12535 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7204 8995 8974 12535 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7205 9017 8822 12536 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7206 8822 8852 12536 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7207 8852 9038 12536 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7208 9038 9017 12536 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7209 9072 8883 12537 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7210 8883 8909 12537 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7211 8909 9108 12537 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7212 9108 9072 12537 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7213 9122 8919 12538 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7214 8919 8917 12538 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7215 8917 9117 12538 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7216 9117 9122 12538 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7217 9088 8902 12539 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7218 8902 8857 12539 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7219 8857 9029 12539 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7220 9029 9088 12539 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7221 8971 8778 12540 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7222 8778 8659 12540 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7223 8659 8870 12540 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7224 8870 8971 12540 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7225 8704 8537 12541 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7226 8537 8419 12541 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7227 8419 8539 12541 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7228 8539 8704 12541 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7229 8443 8338 12542 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7230 8338 8282 12542 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7231 8282 8403 12542 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7232 8403 8443 12542 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7233 9125 9047 12543 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7234 9047 9048 12543 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7235 9048 9068 12543 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7236 9068 9125 12543 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7237 9202 9166 12544 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7238 9166 9093 12544 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7239 9093 9106 12544 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7240 9106 9202 12544 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7241 9024 9057 12545 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7242 9057 9043 12545 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7243 9043 9040 12545 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7244 9040 9024 12545 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7245 9096 9127 12546 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7246 9127 9063 12546 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7247 9063 9054 12546 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7248 9054 9096 12546 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7249 9204 9221 12547 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7250 9221 9110 12547 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7251 9110 9111 12547 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7252 9111 9204 12547 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7253 9157 9184 12548 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7254 9184 9115 12548 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7255 9115 9128 12548 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7256 9128 9157 12548 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7257 9245 9179 12549 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7258 9179 9148 12549 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7259 9148 9186 12549 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7260 9186 9245 12549 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7261 8343 8504 12550 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7262 8504 8914 12550 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7263 8914 8687 12550 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7264 8687 8343 12550 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7265 8179 8486 12551 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7266 8486 8308 12551 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7267 8308 7963 12551 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7268 7963 8179 12551 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7269 7789 8157 12552 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7270 8157 7972 12552 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7271 7972 7618 12552 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7272 7618 7789 12552 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7273 7616 8022 12553 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7274 8022 7955 12553 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7275 7955 7577 12553 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7276 7577 7616 12553 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7277 7552 7901 12554 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7278 7901 7844 12554 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7279 7844 7540 12554 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7280 7540 7552 12554 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7281 7569 7712 12555 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7282 7712 7848 12555 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7283 7848 7702 12555 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7284 7702 7569 12555 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7285 9261 9214 12556 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7286 9214 9227 12556 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7287 9227 9251 12556 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7288 9251 9261 12556 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7289 9234 9228 12557 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7290 9228 9216 12557 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7291 9216 9211 12557 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7292 9211 9234 12557 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7293 9134 9167 12558 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7294 9167 9092 12558 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7295 9092 8988 12558 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7296 8988 9134 12558 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7297 8799 8977 12559 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7298 8977 8821 12559 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7299 8821 8541 12559 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7300 8541 8799 12559 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7301 8409 8634 12560 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7302 8634 8495 12560 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7303 8495 8302 12560 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7304 8302 8409 12560 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7305 8349 8520 12561 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7306 8520 8457 12561 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7307 8457 8290 12561 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7308 8290 8349 12561 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7309 8220 8388 12562 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7310 8388 8281 12562 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7311 8281 8129 12562 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7312 8129 8220 12562 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7313 5979 5748 12563 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7314 5748 5750 12563 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7315 5750 6114 12563 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7316 6114 5979 12563 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7317 7503 8090 12564 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7318 8090 7870 12564 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7319 7870 7371 12564 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7320 7371 7503 12564 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7321 6693 6908 12565 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7322 6908 6876 12565 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7323 6876 6759 12565 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7324 6759 6693 12565 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7325 7239 7715 12566 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7326 7715 7574 12566 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7327 7574 7128 12566 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7328 7128 7239 12566 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7329 6749 6796 12567 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7330 6796 6695 12567 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7331 6695 6611 12567 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7332 6611 6749 12567 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7333 7020 7438 12568 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7334 7438 7286 12568 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7335 7286 6914 12568 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7336 6914 7020 12568 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7337 6245 6607 12569 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7338 6607 6496 12569 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7339 6496 5944 12569 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7340 5944 6245 12569 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7341 6909 7273 12570 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7342 7273 7228 12570 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7343 7228 6905 12570 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7344 6905 6909 12570 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7345 5809 6412 12571 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7346 6412 6365 12571 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7347 6365 5789 12571 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7348 5789 5809 12571 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7349 6892 7208 12572 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7350 7208 7205 12572 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7351 7205 6865 12572 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7352 6865 6892 12572 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7353 6119 5713 12573 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7354 5713 5755 12573 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7355 5755 6260 12573 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7356 6260 6119 12573 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7357 5380 5396 12574 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7358 5396 5121 12574 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7359 5121 5088 12574 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7360 5088 5380 12574 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7361 4899 4956 12575 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7362 4956 4911 12575 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7363 4911 4827 12575 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7364 4827 4899 12575 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7365 4850 4926 12576 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7366 4926 4985 12576 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7367 4985 4949 12576 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7368 4949 4850 12576 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7369 5145 5154 12577 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7370 5154 5406 12577 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7371 5406 5400 12577 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7372 5400 5145 12577 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7373 5352 5369 12578 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7374 5369 5054 12578 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7375 5054 5015 12578 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7376 5015 5352 12578 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7377 4760 4843 12579 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7378 4843 4716 12579 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7379 4716 4588 12579 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7380 4588 4760 12579 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7381 4642 4745 12580 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7382 4745 4913 12580 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7383 4913 4880 12580 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7384 4880 4642 12580 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7385 5117 5131 12581 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7386 5131 5399 12581 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7387 5399 5395 12581 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7388 5395 5117 12581 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7389 5339 5342 12582 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7390 5342 4999 12582 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7391 4999 4993 12582 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7392 4993 5339 12582 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7393 4714 4725 12583 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7394 4725 4520 12583 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7395 4520 4515 12583 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7396 4515 4714 12583 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7397 4517 4554 12584 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7398 4554 4806 12584 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7399 4806 4719 12584 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7400 4719 4517 12584 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7401 4995 5073 12585 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7402 5073 5371 12585 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7403 5371 5340 12585 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7404 5340 4995 12585 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7405 4510 4702 12586 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7406 4702 4704 12586 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7407 4704 4509 12586 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7408 4509 4510 12586 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7409 4259 4369 12587 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7410 4369 4580 12587 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7411 4580 4410 12587 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7412 4410 4259 12587 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7413 4389 4535 12588 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7414 4535 4359 12588 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7415 4359 4249 12588 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7416 4249 4389 12588 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7417 4977 5333 12589 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7418 5333 5329 12589 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7419 5329 4961 12589 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7420 4961 4977 12589 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7421 4428 4354 12590 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7422 4354 4221 12590 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7423 4221 4290 12590 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7424 4290 4428 12590 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7425 4291 4232 12591 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7426 4232 4374 12591 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7427 4374 4436 12591 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7428 4436 4291 12591 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7429 4581 4466 12592 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7430 4466 4483 12592 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7431 4483 4649 12592 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7432 4649 4581 12592 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7433 4988 5335 12593 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7434 5335 5336 12593 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7435 5336 4989 12593 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7436 4989 4988 12593 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7437 4759 5277 12594 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7438 5277 5316 12594 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7439 5316 4916 12594 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7440 4916 4759 12594 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7441 4891 5307 12595 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7442 5307 5274 12595 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7443 5274 4749 12595 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7444 4749 4891 12595 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7445 4327 4118 12596 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7446 4118 4041 12596 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7447 4041 4252 12596 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7448 4252 4327 12596 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7449 4225 4020 12597 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7450 4020 4047 12597 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7451 4047 4247 12597 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7452 4247 4225 12597 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7453 4380 4219 12598 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7454 4219 4575 12598 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7455 4575 4748 12598 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7456 4748 4380 12598 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7457 4270 4393 12599 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7458 4393 4744 12599 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7459 4744 4617 12599 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7460 4617 4270 12599 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7461 4099 4242 12600 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7462 4242 4273 12600 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7463 4273 4108 12600 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7464 4108 4099 12600 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7465 4216 4335 12601 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7466 4335 4278 12601 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7467 4278 4130 12601 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7468 4130 4216 12601 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7469 5280 5341 12602 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7470 5341 4997 12602 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7471 4997 4773 12602 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7472 4773 5280 12602 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7473 4176 4524 12603 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7474 4524 4492 12603 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7475 4492 4145 12603 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7476 4145 4176 12603 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7477 4785 5008 12604 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7478 5008 5348 12604 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7479 5348 5281 12604 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7480 5281 4785 12604 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7481 5228 5240 12605 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7482 5240 4653 12605 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7483 4653 4608 12605 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7484 4608 5228 12605 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7485 4009 4017 12606 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7486 4017 3973 12606 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7487 3973 3955 12606 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7488 3955 4009 12606 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7489 4627 4661 12607 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7490 4661 5244 12607 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7491 5244 5233 12607 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7492 5233 4627 12607 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7493 5271 5238 12608 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7494 5238 4647 12608 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7495 4647 4739 12608 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7496 4739 5271 12608 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7497 4111 4034 12609 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7498 4034 3975 12609 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7499 3975 4044 12609 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7500 4044 4111 12609 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7501 4766 4674 12610 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7502 4674 5253 12610 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7503 5253 5278 12610 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7504 5278 4766 12610 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7505 5303 5285 12611 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7506 5285 4812 12611 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7507 4812 4881 12611 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7508 4881 5303 12611 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7509 4464 4260 12612 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7510 4260 4192 12612 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7511 4192 4433 12612 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7512 4433 4464 12612 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7513 4870 4842 12613 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7514 4842 5295 12613 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7515 5295 5301 12613 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7516 5301 4870 12613 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7517 5191 5290 12614 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7518 5290 4816 12614 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7519 4816 4447 12614 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7520 4447 5191 12614 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7521 4169 4498 12615 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7522 4498 4507 12615 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7523 4507 4160 12615 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7524 4160 4169 12615 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7525 4552 4596 12616 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7526 4596 4400 12616 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7527 4400 4409 12616 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7528 4409 4552 12616 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7529 4183 4151 12617 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7530 4151 3800 12617 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7531 3800 3853 12617 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7532 3853 4183 12617 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7533 3489 3434 12618 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7534 3434 3019 12618 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7535 3019 3094 12618 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7536 3094 3489 12618 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7537 2768 2703 12619 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7538 2703 2523 12619 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7539 2523 2588 12619 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7540 2588 2768 12619 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7541 2508 2442 12620 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7542 2442 2516 12620 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7543 2516 2565 12620 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7544 2565 2508 12620 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7545 2641 2608 12621 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7546 2608 2711 12621 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7547 2711 2750 12621 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7548 2750 2641 12621 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7549 2874 2834 12622 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7550 2834 3025 12622 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7551 3025 3095 12622 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7552 3095 2874 12622 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7553 3322 3260 12623 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7554 3260 3534 12623 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7555 3534 3568 12623 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7556 3568 3322 12623 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7557 3885 3855 12624 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7558 3855 4199 12624 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7559 4199 4234 12624 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7560 4234 3885 12624 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7561 4731 4703 12625 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7562 4703 5264 12625 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7563 5264 5266 12625 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7564 5266 4731 12625 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7565 5174 5168 12626 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7566 5168 4339 12626 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7567 4339 4385 12626 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7568 4385 5174 12626 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7569 4021 3977 12627 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7570 3977 3841 12627 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7571 3841 3883 12627 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7572 3883 4021 12627 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7573 3547 3494 12628 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7574 3494 2877 12628 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7575 2877 2992 12628 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7576 2992 3547 12628 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7577 2601 2490 12629 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7578 2490 2112 12629 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7579 2112 2287 12629 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7580 2287 2601 12629 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7581 2096 1919 12630 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7582 1919 1898 12630 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7583 1898 2074 12630 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7584 2074 2096 12630 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7585 2053 1870 12631 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7586 1870 1832 12631 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7587 1832 2030 12631 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7588 2030 2053 12631 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7589 2059 1864 12632 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7590 1864 1948 12632 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7591 1948 2151 12632 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7592 2151 2059 12632 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7593 2183 1984 12633 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7594 1984 1929 12633 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7595 1929 2141 12633 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7596 2141 2183 12633 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7597 2104 1899 12634 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7598 1899 1874 12634 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7599 1874 2069 12634 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7600 2069 2104 12634 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7601 2076 1889 12635 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7602 1889 1933 12635 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7603 1933 2130 12635 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7604 2130 2076 12635 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7605 2207 2022 12636 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7606 2022 2085 12636 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7607 2085 2295 12636 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7608 2295 2207 12636 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7609 2322 2103 12637 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7610 2103 2071 12637 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7611 2071 2278 12637 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7612 2278 2322 12637 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7613 2238 2049 12638 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7614 2049 2018 12638 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7615 2018 2205 12638 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7616 2205 2238 12638 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7617 2165 1986 12639 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7618 1986 1972 12639 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7619 1972 2146 12639 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7620 2146 2165 12639 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7621 2336 2095 12640 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7622 2095 2101 12640 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7623 2101 2347 12640 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7624 2347 2336 12640 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7625 2344 2099 12641 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7626 2099 2090 12641 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7627 2090 2329 12641 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7628 2329 2344 12641 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7629 2321 2088 12642 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7630 2088 2092 12642 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7631 2092 2325 12642 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7632 2325 2321 12642 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7633 2290 2070 12643 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7634 2070 2050 12643 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7635 2050 2252 12643 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7636 2252 2290 12643 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7637 2222 2028 12644 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7638 2028 2007 12644 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7639 2007 2191 12644 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7640 2191 2222 12644 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7641 2162 1973 12645 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7642 1973 1937 12645 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7643 1937 2136 12645 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7644 2136 2162 12645 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7645 2125 1923 12646 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7646 1923 1928 12646 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7647 1928 2128 12646 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7648 2128 2125 12646 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7649 2143 1957 12647 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7650 1957 2016 12647 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7651 2016 2186 12647 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7652 2186 2143 12647 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7653 2265 2072 12648 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7654 2072 2174 12648 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7655 2174 2386 12648 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7656 2386 2265 12648 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7657 2507 2342 12649 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7658 2342 2505 12649 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7659 2505 2627 12649 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7660 2627 2507 12649 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7661 2712 2605 12650 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7662 2605 2645 12650 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7663 2645 2766 12650 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7664 2766 2712 12650 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7665 1998 1920 12651 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7666 1920 1977 12651 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7667 1977 1997 12651 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7668 1997 1998 12651 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7669 1879 1843 12652 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7670 1843 1939 12652 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7671 1939 1952 12652 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7672 1952 1879 12652 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7673 1988 2021 12653 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7674 2021 2005 12653 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7675 2005 2002 12653 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7676 2002 1988 12653 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7677 1918 1949 12654 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7678 1949 1991 12654 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7679 1991 1981 12654 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7680 1981 1918 12654 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7681 1824 1841 12655 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7682 1841 1934 12655 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7683 1934 1935 12655 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7684 1935 1824 12655 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7685 1861 1888 12656 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7686 1888 1917 12656 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7687 1917 1930 12656 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7688 1930 1861 12656 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7689 1866 1800 12657 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7690 1800 1859 12657 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7691 1859 1897 12657 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7692 1897 1866 12657 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7693 2541 2706 12658 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7694 2706 2358 12658 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7695 2358 2131 12658 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7696 2131 2541 12658 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7697 2561 2862 12659 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7698 2862 3076 12659 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7699 3076 2734 12659 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7700 2734 2561 12659 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7701 2885 3256 12660 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7702 3256 3426 12660 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7703 3426 3066 12660 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7704 3066 2885 12660 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7705 3013 3429 12661 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7706 3429 3466 12661 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7707 3466 3084 12661 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7708 3084 3013 12661 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7709 3140 3492 12662 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7710 3492 3503 12662 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7711 3503 3198 12662 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7712 3198 3140 12662 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7713 1831 1784 12663 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7714 1784 1794 12663 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7715 1794 1818 12663 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7716 1818 1831 12663 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7717 1817 1811 12664 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7718 1811 1834 12664 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7719 1834 1829 12664 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7720 1829 1817 12664 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7721 1878 1911 12665 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7722 1911 2057 12665 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7723 2057 1953 12665 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7724 1953 1878 12665 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7725 2068 2246 12666 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7726 2246 2504 12666 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7727 2504 2224 12666 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7728 2224 2068 12666 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7729 2412 2639 12667 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7730 2639 2741 12667 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7731 2741 2550 12667 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7732 2550 2412 12667 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7733 2525 2699 12668 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7734 2699 2754 12668 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7735 2754 2589 12668 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7736 2589 2525 12668 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7737 2664 2823 12669 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7738 2823 2912 12669 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7739 2912 2764 12669 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7740 2764 2664 12669 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7741 5292 5068 12670 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7742 5068 4927 12670 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7743 4927 5291 12670 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7744 5291 5292 12670 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7745 2945 3538 12671 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7746 3538 3673 12671 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7747 3673 3174 12671 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7748 3174 2945 12671 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7749 4137 4348 12672 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7750 4348 4282 12672 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7751 4282 4170 12672 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7752 4170 4137 12672 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7753 3329 3804 12673 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7754 3804 3914 12673 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7755 3914 3471 12673 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7756 3471 3329 12673 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7757 4246 4293 12674 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7758 4293 4427 12674 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7759 4427 4346 12674 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7760 4346 4246 12674 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7761 3604 4018 12675 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7762 4018 4131 12675 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7763 4131 3758 12675 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7764 3758 3604 12675 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7765 4431 4798 12676 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7766 4798 5104 12676 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7767 5104 4548 12676 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7768 4548 4431 12676 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7769 3773 4136 12677 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7770 4136 4140 12677 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7771 4140 3815 12677 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7772 3815 3773 12677 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7773 4635 5236 12678 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7774 5236 5256 12678 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7775 5256 4683 12678 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7776 4683 4635 12678 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7777 3834 4154 12679 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7778 4154 4182 12679 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7779 4182 3837 12679 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7780 3837 3834 12679 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7781 5322 4943 12680 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7782 4943 4814 12680 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7783 4814 5286 12680 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7784 5286 5322 12680 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7785 4302 4424 12681 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7786 4424 4030 12681 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7787 4030 3938 12681 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7788 3938 4302 12681 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2)} Face 7789 2043 2111 12682 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7790 2111 2093 12682 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7791 2093 2051 12682 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7792 2051 2043 12682 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7793 1940 1983 12683 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7794 1983 1963 12683 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7795 1963 1968 12683 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7796 1968 1940 12683 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7797 1942 1958 12684 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7798 1958 1962 12684 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7799 1962 2023 12684 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7800 2023 1942 12684 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7801 2024 2023 12685 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7802 2023 1962 12685 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7803 1962 1946 12685 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7804 1946 2024 12685 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7805 1999 2029 12686 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7806 2029 2061 12686 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7807 2061 2009 12686 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7808 2009 1999 12686 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7809 2228 2255 12687 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7810 2255 2181 12687 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7811 2181 2199 12687 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7812 2199 2228 12687 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7813 1975 1959 12688 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7814 1959 1852 12688 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7815 1852 1891 12688 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7816 1891 1975 12688 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7817 1799 1797 12689 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7818 1797 1805 12689 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7819 1805 1812 12689 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7820 1812 1799 12689 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7821 1938 1994 12690 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7822 1994 1872 12690 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7823 1872 1875 12690 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7824 1875 1938 12690 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7825 1838 1813 12691 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7826 1813 1966 12691 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7827 1966 1913 12691 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7828 1913 1838 12691 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7829 2004 1960 12692 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7830 1960 1976 12692 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7831 1976 2035 12692 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7832 2035 2004 12692 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7833 2121 2218 12693 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7834 2218 2139 12693 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7835 2139 2129 12693 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7836 2129 2121 12693 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7837 1947 2011 12694 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7838 2011 2041 12694 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7839 2041 1982 12694 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7840 1982 1947 12694 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7841 2184 2135 12695 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7842 2135 2254 12695 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7843 2254 2210 12695 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7844 2210 2184 12695 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7845 1788 1833 12696 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7846 1833 1775 12696 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7847 1775 1771 12696 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7848 1771 1788 12696 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7849 2008 2084 12697 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7850 2084 1847 12697 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7851 1847 1815 12697 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7852 1815 2008 12697 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7853 2251 2313 12698 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7854 2313 2110 12698 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7855 2110 2126 12698 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7856 2126 2251 12698 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7857 2306 2394 12699 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7858 2394 2209 12699 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7859 2209 2215 12699 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7860 2215 2306 12699 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7861 2430 2558 12700 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7862 2558 2462 12700 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7863 2462 2408 12700 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7864 2408 2430 12700 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7865 2564 2634 12701 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7866 2634 2476 12701 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7867 2476 2510 12701 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7868 2510 2564 12701 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7869 2478 2474 12702 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7870 2474 2568 12702 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7871 2568 2544 12702 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7872 2544 2478 12702 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7873 2923 3046 12703 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7874 3046 3070 12703 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7875 3070 2999 12703 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7876 2999 2923 12703 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7877 2532 2576 12704 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7878 2576 2563 12704 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7879 2563 2499 12704 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7880 2499 2532 12704 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7881 2520 2499 12705 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7882 2499 2563 12705 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7883 2563 2587 12705 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7884 2587 2520 12705 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7885 3833 3746 12706 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7886 3746 4186 12706 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7887 4186 4201 12706 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7888 4201 3833 12706 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7889 4595 4909 12707 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7890 4909 5110 12707 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7891 5110 4695 12707 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7892 4695 4595 12707 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7893 4939 5028 12708 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7894 5028 5149 12708 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7895 5149 4967 12708 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7896 4967 4939 12708 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7897 5146 5205 12709 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7898 5205 5320 12709 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7899 5320 5217 12709 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7900 5217 5146 12709 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7901 5326 5476 12710 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7902 5476 5660 12710 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7903 5660 5392 12710 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7904 5392 5326 12710 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7905 3168 3139 12711 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7906 3139 3308 12711 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7907 3308 3321 12711 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7908 3321 3168 12711 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7909 3099 3091 12712 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7910 3091 3327 12712 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7911 3327 3275 12712 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7912 3275 3099 12712 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7913 3865 3857 12713 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7914 3857 4100 12713 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7915 4100 4015 12713 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7916 4015 3865 12713 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7917 4124 4224 12714 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7918 4224 4455 12714 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7919 4455 4279 12714 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7920 4279 4124 12714 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7921 2988 2972 12715 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7922 2972 3008 12715 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7923 3008 3027 12715 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7924 3027 2988 12715 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7925 3683 3739 12716 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7926 3739 4105 12716 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7927 4105 3848 12716 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7928 3848 3683 12716 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7929 2899 2890 12717 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7930 2890 2940 12717 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7931 2940 2947 12717 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7932 2947 2899 12717 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7933 2884 2871 12718 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7934 2871 2913 12718 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7935 2913 2895 12718 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7936 2895 2884 12718 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7937 5289 5188 12719 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7938 5188 5255 12719 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7939 5255 5334 12719 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7940 5334 5289 12719 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7941 4972 4858 12720 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7942 4858 4917 12720 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7943 4917 4965 12720 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7944 4965 4972 12720 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7945 4793 4523 12721 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7946 4523 4805 12721 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7947 4805 4810 12721 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7948 4810 4793 12721 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7949 4928 4801 12722 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7950 4801 4969 12722 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7951 4969 5000 12722 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7952 5000 4928 12722 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7953 4936 4963 12723 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7954 4963 5053 12723 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7955 5053 5001 12723 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7956 5001 4936 12723 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7957 5151 5155 12724 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7958 5155 5297 12724 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7959 5297 5270 12724 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7960 5270 5151 12724 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7961 5016 5105 12725 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7962 5105 5106 12725 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7963 5106 4970 12725 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7964 4970 5016 12725 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7965 4990 4970 12726 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7966 4970 5106 12726 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7967 5106 5048 12726 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7968 5048 4990 12726 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7969 5376 5302 12727 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7970 5302 5234 12727 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7971 5234 5370 12727 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7972 5370 5376 12727 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7973 3233 3072 12728 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7974 3072 3023 12728 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7975 3023 3212 12728 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7976 3212 3233 12728 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7977 5071 5057 12729 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7978 5057 5169 12729 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7979 5169 5229 12729 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7980 5229 5071 12729 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7981 3057 3119 12730 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7982 3119 3043 12730 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7983 3043 3045 12730 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7984 3045 3057 12730 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7985 3393 3165 12731 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7986 3165 3203 12731 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7987 3203 3412 12731 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7988 3412 3393 12731 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7989 2720 2690 12732 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7990 2690 2803 12732 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7991 2803 2822 12732 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7992 2822 2720 12732 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7993 2748 2582 12733 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7994 2582 2583 12733 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7995 2583 2719 12733 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7996 2719 2748 12733 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7997 2396 2392 12734 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7998 2392 2337 12734 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 7999 2337 2346 12734 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8000 2346 2396 12734 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8001 2413 2273 12735 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8002 2273 2424 12735 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8003 2424 2472 12735 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8004 2472 2413 12735 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8005 2509 2606 12736 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8006 2606 2566 12736 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8007 2566 2547 12736 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8008 2547 2509 12736 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8009 2122 2065 12737 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8010 2065 2136 12737 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8011 2136 2125 12737 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8012 2125 2122 12737 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8013 5206 5180 12738 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8014 5180 5269 12738 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8015 5269 5252 12738 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8016 5252 5206 12738 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8017 4859 4722 12739 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8018 4722 4689 12739 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8019 4689 4789 12739 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8020 4789 4859 12739 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8021 4950 4904 12740 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8022 4904 4887 12740 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8023 4887 4940 12740 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8024 4940 4950 12740 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8025 4446 4440 12741 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8026 4440 4513 12741 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8027 4513 4534 12741 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8028 4534 4446 12741 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8029 4592 4594 12742 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8030 4594 4761 12742 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8031 4761 4651 12742 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8032 4651 4592 12742 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8033 4802 4767 12743 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8034 4767 4888 12743 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8035 4888 4892 12743 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8036 4892 4802 12743 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8037 4612 4442 12744 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8038 4442 4566 12744 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8039 4566 4663 12744 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8040 4663 4612 12744 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8041 4344 4190 12745 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8042 4190 4376 12745 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8043 4376 4363 12745 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8044 4363 4344 12745 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8045 3989 3762 12746 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8046 3762 3908 12746 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8047 3908 3997 12746 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8048 3997 3989 12746 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8049 3917 3680 12747 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8050 3680 3747 12747 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8051 3747 3966 12747 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8052 3966 3917 12747 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8053 3522 3451 12748 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8054 3451 3541 12748 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8055 3541 3583 12748 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8056 3583 3522 12748 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8057 3299 3197 12749 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8058 3197 3336 12749 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8059 3336 3337 12749 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8060 3337 3299 12749 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8061 3388 3419 12750 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8062 3419 3509 12750 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8063 3509 3382 12750 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8064 3382 3388 12750 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8065 3615 3561 12751 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8066 3561 3445 12751 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8067 3445 3542 12751 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8068 3542 3615 12751 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8069 4532 4404 12752 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8070 4404 4303 12752 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8071 4303 4518 12752 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8072 4518 4532 12752 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8073 4288 4287 12753 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8074 4287 4202 12753 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8075 4202 4139 12753 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8076 4139 4288 12753 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8077 3993 4139 12754 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8078 4139 4202 12754 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8079 4202 4004 12754 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8080 4004 3993 12754 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8081 4215 4173 12755 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8082 4173 3894 12755 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8083 3894 4148 12755 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8084 4148 4215 12755 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8085 3367 3424 12756 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8086 3424 3365 12756 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8087 3365 3252 12756 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8088 3252 3367 12756 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8089 2359 2274 12757 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8090 2274 2325 12757 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8091 2325 2332 12757 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8092 2332 2359 12757 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8093 2114 2269 12758 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8094 2269 2120 12758 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8095 2120 2087 12758 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8096 2087 2114 12758 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8097 2560 2467 12759 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8098 2467 2386 12759 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8099 2386 2507 12759 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8100 2507 2560 12759 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8101 2127 2196 12760 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8102 2196 2288 12760 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8103 2288 2144 12760 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8104 2144 2127 12760 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8105 2770 2778 12761 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8106 2778 2961 12761 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8107 2961 2886 12761 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8108 2886 2770 12761 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8109 2027 2040 12762 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8110 2040 1789 12762 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8111 1789 1821 12762 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8112 1821 2027 12762 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8113 8994 8952 12763 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8114 8952 8934 12763 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8115 8934 9001 12763 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8116 9001 8994 12763 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8117 9077 9082 12764 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8118 9082 9062 12764 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8119 9062 9105 12764 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8120 9105 9077 12764 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8121 9065 9087 12765 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8122 9087 9022 12765 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8123 9022 9083 12765 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8124 9083 9065 12765 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8125 9098 9083 12766 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8126 9083 9022 12766 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8127 9022 9021 12766 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8128 9021 9098 12766 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8129 9035 8984 12767 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8130 8984 9016 12767 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8131 9016 9046 12767 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8132 9046 9035 12767 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8133 8843 8863 12768 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8134 8863 8790 12768 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8135 8790 8817 12768 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8136 8817 8843 12768 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8137 9154 9193 12769 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8138 9193 9086 12769 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8139 9086 9070 12769 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8140 9070 9154 12769 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8141 9233 9240 12770 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8142 9240 9248 12770 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8143 9248 9246 12770 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8144 9246 9233 12770 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8145 9170 9173 12771 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8146 9173 9051 12771 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8147 9051 9107 12771 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8148 9107 9170 12771 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8149 9132 9079 12772 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8150 9079 9232 12772 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8151 9232 9207 12772 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8152 9207 9132 12772 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8153 9041 9008 12773 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8154 9008 9102 12773 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8155 9102 9085 12773 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8156 9085 9041 12773 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8157 8924 8916 12774 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8158 8916 8830 12774 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8159 8830 8826 12774 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8160 8826 8924 12774 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8161 9066 9009 12775 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8162 9009 9037 12775 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8163 9037 9100 12775 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8164 9100 9066 12775 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8165 8859 8834 12776 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8166 8834 8873 12776 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8167 8873 8910 12776 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8168 8910 8859 12776 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8169 9274 9270 12777 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8170 9270 9212 12777 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8171 9212 9257 12777 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8172 9257 9274 12777 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8173 9230 9198 12778 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8174 9198 8961 12778 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8175 8961 9036 12778 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8176 9036 9230 12778 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8177 8920 8939 12779 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8178 8939 8739 12779 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8179 8739 8796 12779 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8180 8796 8920 12779 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8181 8850 8860 12780 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8182 8860 8669 12780 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8183 8669 8760 12780 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8184 8760 8850 12780 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8185 8662 8600 12781 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8186 8600 8506 12781 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8187 8506 8639 12781 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8188 8639 8662 12781 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8189 8549 8586 12782 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8190 8586 8425 12782 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8191 8425 8491 12782 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8192 8491 8549 12782 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8193 8451 8430 12783 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8194 8430 8511 12783 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8195 8511 8516 12783 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8196 8516 8451 12783 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8197 7958 7910 12784 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8198 7910 8038 12784 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8199 8038 8067 12784 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8200 8067 7958 12784 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8201 8460 8484 12785 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8202 8484 8544 12785 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8203 8544 8525 12785 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8204 8525 8460 12785 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8205 5207 5429 12786 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8206 5429 6236 12786 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8207 6236 4807 12786 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8208 4807 5207 12786 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8209 5119 4807 12787 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8210 4807 6236 12787 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8211 6236 5927 12787 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8212 5927 5119 12787 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8213 6843 6860 12788 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8214 6860 7297 12788 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8215 7297 7210 12788 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8216 7210 6843 12788 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8217 6353 5938 12789 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8218 5938 6134 12789 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8219 6134 6451 12789 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8220 6451 6353 12789 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8221 6071 5896 12790 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8222 5896 6013 12790 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8223 6013 6100 12790 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8224 6100 6071 12790 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8225 5828 5714 12791 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8226 5714 5840 12791 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8227 5840 5899 12791 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8228 5899 5828 12791 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8229 7720 7737 12792 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8230 7737 7902 12792 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8231 7902 7876 12792 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8232 7876 7720 12792 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8233 7767 7706 12793 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8234 7706 7917 12793 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8235 7917 7919 12793 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8236 7919 7767 12793 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8237 7023 6945 12794 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8238 6945 7186 12794 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8239 7186 7176 12794 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8240 7176 7023 12794 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8241 6762 6576 12795 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8242 6576 6821 12795 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8243 6821 6923 12795 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8244 6923 6762 12795 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8245 8004 8023 12796 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8246 8023 8063 12796 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8247 8063 8048 12796 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8248 8048 8004 12796 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8249 7115 6859 12797 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8250 6859 7181 12797 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8251 7181 7233 12797 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8252 7233 7115 12797 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8253 8088 8095 12798 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8254 8095 8151 12798 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8255 8151 8143 12798 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8256 8143 8088 12798 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8257 8146 8127 12799 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8258 8127 8171 12799 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8259 8171 8159 12799 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8260 8159 8146 12799 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8261 5463 5582 12800 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8262 5582 5485 12800 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8263 5485 5420 12800 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8264 5420 5463 12800 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8265 5698 5790 12801 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8266 5790 5858 12801 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8267 5858 5752 12801 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8268 5752 5698 12801 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8269 6073 6125 12802 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8270 6125 6184 12802 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8271 6184 6065 12802 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8272 6065 6073 12802 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8273 6249 6233 12803 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8274 6233 6506 12803 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8275 6506 6520 12803 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8276 6520 6249 12803 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8277 6040 6068 12804 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8278 6068 6242 12804 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8279 6242 6113 12804 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8280 6113 6040 12804 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8281 6039 5993 12805 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8282 5993 6075 12805 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8283 6075 6104 12805 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8284 6104 6039 12805 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8285 5772 5743 12806 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8286 5743 5891 12806 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8287 5891 5894 12806 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8288 5894 5772 12806 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8289 5907 5901 12807 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8290 5901 6067 12807 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8291 6067 5942 12807 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8292 5942 5907 12807 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8293 5997 5942 12808 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8294 5942 6067 12808 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8295 6067 6049 12808 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8296 6049 5997 12808 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8297 5676 5811 12809 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8298 5811 5738 12809 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8299 5738 5672 12809 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8300 5672 5676 12809 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8301 7812 7832 12810 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8302 7832 8170 12810 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8303 8170 7967 12810 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8304 7967 7812 12810 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8305 5816 5876 12811 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8306 5876 5991 12811 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8307 5991 5976 12811 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8308 5976 5816 12811 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8309 7980 7990 12812 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8310 7990 7923 12812 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8311 7923 7918 12812 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8312 7918 7980 12812 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8313 7633 7841 12813 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8314 7841 7878 12813 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8315 7878 7652 12813 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8316 7652 7633 12813 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8317 8221 8242 12814 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8318 8242 8357 12814 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8319 8357 8322 12814 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8320 8322 8221 12814 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8321 8296 8324 12815 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8322 8324 8569 12815 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8323 8569 8466 12815 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8324 8466 8296 12815 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8325 8700 8710 12816 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8326 8710 8652 12816 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8327 8652 8649 12816 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8328 8649 8700 12816 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8329 8637 8576 12817 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8330 8576 8711 12817 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8331 8711 8772 12817 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8332 8772 8637 12817 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8333 8515 8500 12818 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8334 8500 8478 12818 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8335 8478 8563 12818 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8336 8563 8515 12818 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8337 8919 8909 12819 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8338 8909 8980 12819 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8339 8980 8923 12819 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8340 8923 8919 12819 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8341 5794 5773 12820 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8342 5773 5865 12820 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8343 5865 5839 12820 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8344 5839 5794 12820 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8345 6253 6325 12821 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8346 6325 6262 12821 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8347 6262 6183 12821 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8348 6183 6253 12821 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8349 6190 6209 12822 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8350 6209 6139 12822 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8351 6139 6154 12822 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8352 6154 6190 12822 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8353 6099 6154 12823 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8354 6154 6139 12823 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8355 6139 6088 12823 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8356 6088 6099 12823 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8357 6509 6528 12824 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8358 6528 6599 12824 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8359 6599 6594 12824 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8360 6594 6509 12824 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8361 6454 6396 12825 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8362 6396 6321 12825 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8363 6321 6452 12825 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8364 6452 6454 12825 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8365 6241 6149 12826 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8366 6149 6243 12826 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8367 6243 6278 12826 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8368 6278 6241 12826 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8369 6383 6479 12827 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8370 6479 6597 12827 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8371 6597 6434 12827 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8372 6434 6383 12827 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8373 6675 6663 12828 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8374 6663 6854 12828 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8375 6854 6697 12828 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8376 6697 6675 12828 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8377 7042 7135 12829 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8378 7135 7282 12829 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8379 7282 7051 12829 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8380 7051 7042 12829 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8381 7073 7296 12830 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8382 7296 7361 12830 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8383 7361 7124 12830 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8384 7124 7073 12830 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8385 7459 7501 12831 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8386 7501 7592 12831 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8387 7592 7520 12831 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8388 7520 7459 12831 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8389 7709 7710 12832 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8390 7710 7845 12832 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8391 7845 7746 12832 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8392 7746 7709 12832 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8393 7656 7660 12833 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8394 7660 7572 12833 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8395 7572 7626 12833 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8396 7626 7656 12833 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8397 7500 7601 12834 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8398 7601 7480 12834 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8399 7480 7429 12834 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8400 7429 7500 12834 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8401 6524 6740 12835 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8402 6740 6635 12835 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8403 6635 6511 12835 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8404 6511 6524 12835 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8405 5481 5331 12836 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8406 5331 5702 12836 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8407 5702 5562 12836 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8408 5562 5481 12836 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8409 6842 6758 12837 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8410 6758 6754 12837 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8411 6754 7035 12837 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8412 7035 6842 12837 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8413 7047 7035 12838 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8414 7035 6754 12838 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8415 6754 6906 12838 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8416 6906 7047 12838 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8417 6830 6898 12839 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8418 6898 7159 12839 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8419 7159 6873 12839 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8420 6873 6830 12839 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8421 7792 7620 12840 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8422 7620 7622 12840 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8423 7622 7674 12840 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8424 7674 7792 12840 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8425 8716 8722 12841 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8426 8722 8771 12841 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8427 8771 8686 12841 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8428 8686 8716 12841 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8429 8958 8925 12842 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8430 8925 8774 12842 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8431 8774 8931 12842 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8432 8931 8958 12842 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8433 8537 8659 12843 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8434 8659 8578 12843 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8435 8578 8487 12843 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8436 8487 8537 12843 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8437 8900 8756 12844 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8438 8756 8846 12844 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8439 8846 8918 12844 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8440 8918 8900 12844 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8441 8246 8352 12845 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8442 8352 8275 12845 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8443 8275 8144 12845 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8444 8144 8246 12845 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8445 8201 8144 12846 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8446 8144 8275 12846 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8447 8275 8304 12846 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8448 8304 8201 12846 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8449 9224 9256 12847 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8450 9256 9004 12847 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8451 9004 9018 12847 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8452 9018 9224 12847 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8453 8749 8774 12848 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8454 8774 8563 12848 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8455 8563 8635 12848 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8456 8635 8749 12848 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8457 8420 8440 12849 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8458 8440 8540 12849 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8459 8540 8478 12849 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8460 8478 8420 12849 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8461 7504 7467 12850 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8462 7467 7022 12850 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8463 7022 7498 12850 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8464 7498 7504 12850 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8465 7418 7498 12851 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8466 7498 7022 12851 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8467 7022 7288 12851 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8468 7288 7418 12851 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8469 7067 7288 12852 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8470 7288 7022 12852 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8471 7022 6897 12852 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8472 6897 7067 12852 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8473 6858 6897 12853 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8474 6897 7022 12853 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8475 7022 6925 12853 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8476 6925 6858 12853 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8477 5733 5816 12854 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8478 5816 5832 12854 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8479 5832 5638 12854 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8480 5638 5733 12854 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8481 5646 5638 12855 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8482 5638 5832 12855 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8483 5832 5746 12855 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8484 5746 5646 12855 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8485 8656 8707 12856 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8486 8707 8695 12856 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8487 8695 8629 12856 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8488 8629 8656 12856 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8489 8591 8663 12857 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8490 8663 8533 12857 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8491 8533 8557 12857 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8492 8557 8591 12857 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8493 8052 8133 12858 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8494 8133 8242 12858 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8495 8242 8116 12858 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8496 8116 8052 12858 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8497 7960 7927 12859 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8498 7927 7965 12859 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8499 7965 7971 12859 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8500 7971 7960 12859 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8501 7756 7627 12860 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8502 7627 7676 12860 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8503 7676 7815 12860 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8504 7815 7756 12860 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8505 6321 6146 12861 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8506 6146 6417 12861 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8507 6417 6399 12861 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8508 6399 6321 12861 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8509 6270 6267 12862 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8510 6267 6291 12862 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8511 6291 6275 12862 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8512 6275 6270 12862 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8513 6147 6118 12863 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8514 6118 6212 12863 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8515 6212 6188 12863 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8516 6188 6147 12863 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8517 6180 6117 12864 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8518 6117 6305 12864 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8519 6305 6261 12864 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8520 6261 6180 12864 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8521 2423 2509 12865 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8522 2509 2269 12865 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8523 2269 2300 12865 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8524 2300 2423 12865 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8525 2606 2533 12866 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8526 2533 2632 12866 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8527 2632 2667 12866 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8528 2667 2606 12866 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8529 3544 3627 12867 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8530 3627 4149 12867 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8531 4149 3537 12867 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8532 3537 3544 12867 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8533 3573 3537 12868 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8534 3537 4149 12868 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8535 4149 3693 12868 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8536 3693 3573 12868 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8537 3872 3693 12869 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8538 3693 4149 12869 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8539 4149 4016 12869 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8540 4016 3872 12869 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8541 4122 4016 12870 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8542 4016 4149 12870 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8543 4149 4187 12870 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8544 4187 4122 12870 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8545 5194 5229 12871 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8546 5229 5411 12871 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8547 5411 5213 12871 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8548 5213 5194 12871 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8549 5294 5213 12872 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8550 5213 5411 12872 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8551 5411 5404 12872 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8552 5404 5294 12872 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8553 4514 4276 12873 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8554 4276 4025 12873 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8555 4025 5152 12873 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8556 5152 4514 12873 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8557 5561 5152 12874 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8558 5152 4025 12874 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8559 4025 5973 12874 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8560 5973 5561 12874 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8561 6625 5973 12875 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8562 5973 4025 12875 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8563 4025 6857 12875 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8564 6857 6625 12875 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8565 7004 6857 12876 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8566 6857 4025 12876 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8567 4025 7045 12876 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8568 7045 7004 12876 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8569 7081 7045 12877 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8570 7045 4025 12877 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8571 4025 6972 12877 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8572 6972 7081 12877 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8573 6691 6972 12878 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8574 6972 4025 12878 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8575 4025 6038 12878 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8576 6038 6691 12878 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8577 5567 6038 12879 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8578 6038 4025 12879 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8579 4025 5099 12879 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8580 5099 5567 12879 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8581 4437 5099 12880 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8582 5099 4025 12880 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8583 4025 4144 12880 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8584 4144 4437 12880 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8585 2404 2315 12881 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8586 2315 2338 12881 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8587 2338 2390 12881 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8588 2390 2404 12881 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8589 2489 2512 12882 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8590 2512 2383 12882 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8591 2383 2453 12882 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8592 2453 2489 12882 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8593 2919 2803 12883 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8594 2803 2909 12883 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8595 2909 2981 12883 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8596 2981 2919 12883 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8597 3067 3073 12884 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8598 3073 3108 12884 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8599 3108 3079 12884 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8600 3079 3067 12884 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8601 3230 3365 12885 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8602 3365 3418 12885 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8603 3418 3289 12885 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8604 3289 3230 12885 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8605 4648 4630 12886 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8606 4630 4895 12886 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8607 4895 4726 12886 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8608 4726 4648 12886 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8609 4770 4755 12887 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8610 4755 4778 12887 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8611 4778 4775 12887 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8612 4775 4770 12887 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8613 4854 4831 12888 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8614 4831 4923 12888 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8615 4923 4894 12888 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8616 4894 4854 12888 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8617 4784 4742 12889 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8618 4742 4924 12889 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8619 4924 4862 12889 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8620 4862 4784 12889 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8621 1835 1884 12890 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8622 1884 2012 12890 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8623 2012 1965 12890 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8624 1965 1835 12890 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8625 2140 2012 12891 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8626 2012 2038 12891 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8627 2038 2155 12891 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8628 2155 2140 12891 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8629 2054 2038 12892 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8630 2038 1926 12892 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8631 1926 1974 12892 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8632 1974 2054 12892 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8633 1892 1926 12893 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8634 1926 1884 12893 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8635 1884 1826 12893 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8636 1826 1892 12893 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8637 1770 1793 12894 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8638 1793 1910 12894 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8639 1910 1869 12894 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8640 1869 1770 12894 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8641 2078 1910 12895 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8642 1910 1965 12895 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8643 1965 2118 12895 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8644 2118 2078 12895 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8645 1786 1835 12896 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8646 1835 1793 12896 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8647 1793 1767 12896 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8648 1767 1786 12896 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8649 2027 1821 12897 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8650 1821 1869 12897 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8651 1869 2052 12897 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8652 2052 2027 12897 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8653 1746 1770 12898 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8654 1770 1747 12898 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8655 1747 1721 12898 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8656 1721 1746 12898 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8657 1733 1747 12899 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8658 1747 1821 12899 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8659 1821 1789 12899 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8660 1789 1733 12899 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8661 2043 2051 12900 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8662 2051 1974 12900 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8663 1974 1955 12900 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8664 1955 2043 12900 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8665 2137 2054 12901 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8666 2054 2051 12901 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8667 2051 2093 12901 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8668 2093 2137 12901 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8669 2111 2043 12902 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8670 2043 2045 12902 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8671 2045 2117 12902 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8672 2117 2111 12902 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8673 2086 2045 12903 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8674 2045 1971 12903 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8675 1971 2032 12903 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8676 2032 2086 12903 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8677 1896 1971 12904 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8678 1971 1955 12904 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8679 1955 1892 12904 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8680 1892 1896 12904 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8681 1787 1839 12905 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8682 1839 1826 12905 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8683 1826 1786 12905 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8684 1786 1787 12905 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8685 1967 1896 12906 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8686 1896 1839 12906 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8687 1839 1906 12906 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8688 1906 1967 12906 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8689 1845 1787 12907 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8690 1787 1764 12907 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8691 1764 1790 12907 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8692 1790 1845 12907 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8693 1745 1764 12908 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8694 1764 1767 12908 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8695 1767 1746 12908 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8696 1746 1745 12908 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8697 1765 1745 12909 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8698 1745 1731 12909 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8699 1731 1754 12909 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8700 1754 1765 12909 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8701 1722 1731 12910 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8702 1731 1721 12910 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8703 1721 1717 12910 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8704 1717 1722 12910 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8705 1723 1716 12911 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8706 1716 1717 12911 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8707 1717 1733 12911 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8708 1733 1723 12911 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8709 1758 1722 12912 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8710 1722 1725 12912 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8711 1725 1756 12912 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8712 1756 1758 12912 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8713 1729 1725 12913 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8714 1725 1716 12913 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8715 1716 1715 12913 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8716 1715 1729 12913 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8717 1734 1714 12914 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8718 1714 1715 12914 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8719 1715 1724 12914 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8720 1724 1734 12914 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8721 1757 1729 12915 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8722 1729 1730 12915 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8723 1730 1760 12915 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8724 1760 1757 12915 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8725 1735 1730 12916 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8726 1730 1714 12916 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8727 1714 1719 12916 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8728 1719 1735 12916 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8729 1750 1727 12917 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8730 1727 1719 12917 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8731 1719 1740 12917 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8732 1740 1750 12917 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8733 1763 1735 12918 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8734 1735 1742 12918 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8735 1742 1769 12918 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8736 1769 1763 12918 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8737 1753 1742 12919 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8738 1742 1727 12919 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8739 1727 1744 12919 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8740 1744 1753 12919 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8741 1776 1761 12920 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8742 1761 1744 12920 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8743 1744 1759 12920 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8744 1759 1776 12920 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8745 1778 1753 12921 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8746 1753 1766 12921 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8747 1766 1782 12921 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8748 1782 1778 12921 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8749 1783 1766 12922 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8750 1766 1761 12922 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8751 1761 1779 12922 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8752 1779 1783 12922 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8753 1837 1803 12923 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8754 1803 1779 12923 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8755 1779 1796 12923 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8756 1796 1837 12923 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8757 1806 1783 12924 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8758 1783 1819 12924 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8759 1819 1857 12924 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8760 1857 1806 12924 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8761 1883 1819 12925 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8762 1819 1803 12925 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8763 1803 1856 12925 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8764 1856 1883 12925 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8765 1969 1912 12926 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8766 1912 1856 12926 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8767 1856 1894 12926 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8768 1894 1969 12926 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8769 1900 1883 12927 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8770 1883 1940 12927 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8771 1940 1968 12927 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8772 1968 1900 12927 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8773 1983 1940 12928 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8774 1940 1912 12928 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8775 1912 1941 12928 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8776 1941 1983 12928 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8777 2024 1946 12929 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8778 1946 1941 12929 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8779 1941 2014 12929 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8780 2014 2024 12929 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8781 1990 1983 12930 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8782 1983 1946 12930 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8783 1946 1962 12930 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8784 1962 1990 12930 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8785 1992 1985 12931 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8786 1985 1962 12931 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8787 1962 1979 12931 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8788 1979 1992 12931 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8789 1987 1990 12932 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8790 1990 1985 12932 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8791 1985 1996 12932 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8792 1996 1987 12932 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8793 1999 2009 12933 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8794 2009 1979 12933 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8795 1979 1958 12933 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8796 1958 1999 12933 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8797 1996 1992 12934 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8798 1992 2017 12934 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8799 2017 2001 12934 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8800 2001 1996 12934 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8801 2067 2017 12935 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8802 2017 2009 12935 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8803 2009 2061 12935 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8804 2061 2067 12935 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8805 2145 2152 12936 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8806 2152 2061 12936 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8807 2061 2063 12936 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8808 2063 2145 12936 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8809 2062 2067 12937 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8810 2067 2178 12937 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8811 2178 2200 12937 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8812 2200 2062 12937 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8813 2204 2178 12938 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8814 2178 2152 12938 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8815 2152 2169 12938 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8816 2169 2204 12938 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8817 2228 2199 12939 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8818 2199 2200 12939 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8819 2200 2219 12939 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8820 2219 2228 12939 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8821 2001 2062 12940 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8822 2062 2042 12940 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8823 2042 1956 12940 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8824 1956 2001 12940 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8825 2013 2042 12941 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8826 2042 2199 12941 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8827 2199 2181 12941 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8828 2181 2013 12941 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8829 1963 1987 12942 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8830 1987 1956 12942 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8831 1956 1916 12942 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8832 1916 1963 12942 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8833 1975 1891 12943 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8834 1891 1916 12943 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8835 1916 2013 12943 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8836 2013 1975 12943 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8837 1968 1963 12944 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8838 1963 1931 12944 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8839 1931 1936 12944 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8840 1936 1968 12944 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8841 1903 1931 12945 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8842 1931 1891 12945 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8843 1891 1852 12945 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8844 1852 1903 12945 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8845 1799 1812 12946 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8846 1812 1852 12946 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8847 1852 1836 12946 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8848 1836 1799 12946 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8849 1907 1903 12947 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8850 1903 1867 12947 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8851 1867 1862 12947 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8852 1862 1907 12947 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8853 1860 1867 12948 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8854 1867 1812 12948 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8855 1812 1805 12948 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8856 1805 1860 12948 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8857 1802 1822 12949 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8858 1822 1805 12949 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8859 1805 1791 12949 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8860 1791 1802 12949 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8861 1849 1860 12950 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8862 1860 1886 12950 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8863 1886 1858 12950 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8864 1858 1849 12950 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8865 1893 1886 12951 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8866 1886 1822 12951 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8867 1822 1842 12951 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8868 1842 1893 12951 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8869 1851 1854 12952 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8870 1854 1842 12952 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8871 1842 1816 12952 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8872 1816 1851 12952 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8873 1855 1893 12953 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8874 1893 1882 12953 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8875 1882 1830 12953 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8876 1830 1855 12953 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8877 1881 1882 12954 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8878 1882 1854 12954 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8879 1854 1865 12954 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8880 1865 1881 12954 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8881 1905 1890 12955 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8882 1890 1865 12955 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8883 1865 1876 12955 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8884 1876 1905 12955 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8885 1823 1881 12956 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8886 1881 1890 12956 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8887 1890 1825 12956 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8888 1825 1823 12956 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8889 1868 1902 12957 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8890 1902 1876 12957 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8891 1876 1851 12957 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8892 1851 1868 12957 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8893 1846 1905 12958 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8894 1905 1938 12958 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8895 1938 1875 12958 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8896 1875 1846 12958 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8897 1994 1938 12959 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8898 1938 1902 12959 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8899 1902 1932 12959 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8900 1932 1994 12959 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8901 2047 2036 12960 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8902 2036 1932 12960 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8903 1932 1924 12960 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8904 1924 2047 12960 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8905 1925 1994 12961 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8906 1994 2036 12961 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8907 2036 1989 12961 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8908 1989 1925 12961 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8909 1838 1913 12962 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8910 1913 1924 12962 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8911 1924 1868 12962 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8912 1868 1838 12962 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8913 2039 2047 12963 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8914 2047 2064 12963 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8915 2064 2077 12963 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8916 2077 2039 12963 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8917 2124 2064 12964 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8918 2064 1913 12964 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8919 1913 1966 12964 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8920 1966 2124 12964 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8921 1813 1838 12965 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8922 1838 1816 12965 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8923 1816 1802 12965 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8924 1802 1813 12965 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8925 1820 1813 12966 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8926 1813 1791 12966 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8927 1791 1797 12966 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8928 1797 1820 12966 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8929 1760 1763 12967 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8930 1763 1830 12967 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8931 1830 1823 12967 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8932 1823 1760 12967 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8933 1858 1855 12968 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8934 1855 1769 12968 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8935 1769 1778 12968 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8936 1778 1858 12968 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8937 1862 1849 12969 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8938 1849 1782 12969 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8939 1782 1806 12969 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8940 1806 1862 12969 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8941 1936 1907 12970 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8942 1907 1857 12970 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8943 1857 1900 12970 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8944 1900 1936 12970 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8945 2114 2087 12971 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8946 2087 2004 12971 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8947 2004 2035 12971 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8948 2035 2114 12971 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8949 1960 2004 12972 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8950 2004 2029 12972 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8951 2029 1999 12972 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8952 1999 1960 12972 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8953 2055 2029 12973 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8954 2029 2087 12973 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8955 2087 2120 12973 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8956 2120 2055 12973 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8957 2063 2055 12974 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8958 2055 2121 12974 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8959 2121 2129 12974 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8960 2129 2063 12974 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8961 2218 2121 12975 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8962 2121 2120 12975 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8963 2120 2220 12975 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8964 2220 2218 12975 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8965 2160 2145 12976 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8966 2145 2129 12976 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8967 2129 2139 12976 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8968 2139 2160 12976 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8969 2175 2108 12977 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8970 2108 2139 12977 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8971 2139 2213 12977 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8972 2213 2175 12977 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8973 2169 2160 12978 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8974 2160 2108 12978 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8975 2108 2105 12978 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8976 2105 2169 12978 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8977 2269 2114 12979 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8978 2114 2159 12979 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8979 2159 2300 12979 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8980 2300 2269 12979 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8981 2235 2159 12980 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8982 2159 2073 12980 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8983 2073 2153 12980 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8984 2153 2235 12980 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8985 2037 2073 12981 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8986 2073 2035 12981 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8987 2035 1976 12981 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8988 1976 2037 12981 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8989 1947 1982 12982 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8990 1982 1976 12982 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8991 1976 1943 12982 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8992 1943 1947 12982 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8993 2079 2037 12983 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8994 2037 1982 12983 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8995 1982 2041 12983 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8996 2041 2079 12983 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8997 1958 1942 12984 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8998 1942 1943 12984 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 8999 1943 1960 12984 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9000 1960 1958 12984 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9001 2011 1947 12985 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9002 1947 1942 12985 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9003 1942 2023 12985 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9004 2023 2011 12985 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9005 1756 1757 12986 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9006 1757 1825 12986 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9007 1825 1846 12986 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9008 1846 1756 12986 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9009 2132 2124 12987 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9010 2124 2184 12987 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9011 2184 2210 12987 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9012 2210 2132 12987 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9013 2135 2184 12988 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9014 2184 1966 12988 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9015 1966 1909 12988 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9016 1909 2135 12988 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9017 1836 1959 12989 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9018 1959 1978 12989 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9019 1978 1848 12989 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9020 1848 1836 12989 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9021 1927 1978 12990 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9022 1978 2171 12990 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9023 2171 2135 12990 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9024 2135 1927 12990 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9025 2296 2171 12991 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9026 2171 2163 12991 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9027 2163 2283 12991 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9028 2283 2296 12991 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9029 2164 2163 12992 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9030 2163 1959 12992 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9031 1959 1975 12992 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9032 1975 2164 12992 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9033 2283 2164 12993 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9034 2164 2181 12993 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9035 2181 2297 12993 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9036 2297 2283 12993 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9037 1797 1799 12994 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9038 1799 1848 12994 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9039 1848 1844 12994 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9040 1844 1797 12994 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9041 1909 1820 12995 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9042 1820 1844 12995 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9043 1844 1927 12995 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9044 1927 1909 12995 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9045 1754 1758 12996 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9046 1758 1875 12996 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9047 1875 1872 12996 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9048 1872 1754 12996 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9049 1790 1765 12997 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9050 1765 1872 12997 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9051 1872 1925 12997 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9052 1925 1790 12997 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9053 1906 1845 12998 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9054 1845 1989 12998 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9055 1989 2039 12998 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9056 2039 1906 12998 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9057 2032 1967 12999 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9058 1967 2077 12999 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9059 2077 2132 12999 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9060 2132 2032 12999 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9061 2134 2086 13000 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9062 2086 2210 13000 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9063 2210 2254 13000 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9064 2254 2134 13000 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9065 2255 2228 13001 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9066 2228 2117 13001 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9067 2117 2134 13001 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9068 2134 2255 13001 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9069 2109 2111 13002 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9070 2111 2219 13002 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9071 2219 2204 13002 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9072 2204 2109 13002 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9073 2297 2255 13003 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9074 2255 2254 13003 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9075 2254 2296 13003 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9076 2296 2297 13003 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9077 2093 2109 13004 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9078 2109 2105 13004 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9079 2105 2138 13004 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9080 2138 2093 13004 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9081 1788 1771 13005 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9082 1771 1789 13005 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9083 1789 1840 13005 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9084 1840 1788 13005 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9085 1724 1723 13006 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9086 1723 1771 13006 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9087 1771 1775 13006 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9088 1775 1724 13006 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9089 2008 1815 13007 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9090 1815 1775 13007 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9091 1775 1915 13007 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9092 1915 2008 13007 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9093 1740 1734 13008 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9094 1734 1815 13008 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9095 1815 1847 13008 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9096 1847 1740 13008 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9097 1970 1827 13009 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9098 1827 1847 13009 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9099 1847 2010 13009 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9100 2010 1970 13009 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9101 1759 1750 13010 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9102 1750 1827 13010 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9103 1827 1828 13010 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9104 1828 1759 13010 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9105 2003 1853 13011 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9106 1853 1828 13011 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9107 1828 1993 13011 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9108 1993 2003 13011 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9109 1796 1776 13012 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9110 1776 1853 13012 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9111 1853 1885 13012 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9112 1885 1796 13012 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9113 2056 1921 13013 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9114 1921 1885 13013 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9115 1885 2026 13013 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9116 2026 2056 13013 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9117 1894 1837 13014 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9118 1837 1921 13014 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9119 1921 2006 13014 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9120 2006 1894 13014 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9121 2198 2075 13015 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9122 2075 2006 13015 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9123 2006 2107 13015 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9124 2107 2198 13015 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9125 2014 1969 13016 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9126 1969 2075 13016 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9127 2075 2119 13016 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9128 2119 2014 13016 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9129 2251 2126 13017 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9130 2126 2119 13017 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9131 2119 2244 13017 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9132 2244 2251 13017 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9133 2023 2024 13018 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9134 2024 2126 13018 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9135 2126 2110 13018 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9136 2110 2023 13018 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9137 2223 2083 13019 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9138 2083 2110 13019 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9139 2110 2272 13019 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9140 2272 2223 13019 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9141 2046 2011 13020 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9142 2011 2083 13020 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9143 2083 2106 13020 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9144 2106 2046 13020 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9145 2306 2215 13021 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9146 2215 2106 13021 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9147 2106 2206 13021 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9148 2206 2306 13021 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9149 2041 2046 13022 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9150 2046 2215 13022 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9151 2215 2209 13022 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9152 2209 2041 13022 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9153 2430 2408 13023 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9154 2408 2206 13023 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9155 2206 2223 13023 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9156 2223 2430 13023 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9157 2394 2306 13024 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9158 2306 2408 13024 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9159 2408 2462 13024 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9160 2462 2394 13024 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9161 2564 2510 13025 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9162 2510 2438 13025 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9163 2438 2501 13025 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9164 2501 2564 13025 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9165 2391 2438 13026 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9166 2438 2313 13026 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9167 2313 2251 13026 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9168 2251 2391 13026 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9169 2272 2313 13027 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9170 2313 2510 13027 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9171 2510 2476 13027 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9172 2476 2272 13027 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9173 2580 2585 13028 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9174 2585 2501 13028 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9175 2501 2485 13028 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9176 2485 2580 13028 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9177 2634 2564 13029 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9178 2564 2585 13029 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9179 2585 2654 13029 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9180 2654 2634 13029 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9181 2380 2482 13030 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9182 2482 2485 13030 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9183 2485 2391 13030 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9184 2391 2380 13030 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9185 2670 2580 13031 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9186 2580 2579 13031 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9187 2579 2677 13031 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9188 2677 2670 13031 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9189 2559 2579 13032 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9190 2579 2482 13032 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9191 2482 2458 13032 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9192 2458 2559 13032 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9193 2339 2380 13033 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9194 2380 2244 13033 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9195 2244 2198 13033 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9196 2198 2339 13033 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9197 2217 2266 13034 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9198 2266 2107 13034 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9199 2107 2056 13034 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9200 2056 2217 13034 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9201 2458 2339 13035 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9202 2339 2266 13035 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9203 2266 2422 13035 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9204 2422 2458 13035 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9205 2498 2534 13036 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9206 2534 2422 13036 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9207 2422 2389 13036 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9208 2389 2498 13036 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9209 2656 2559 13037 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9210 2559 2534 13037 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9211 2534 2624 13037 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9212 2624 2656 13037 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9213 2176 2356 13038 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9214 2356 2389 13038 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9215 2389 2217 13038 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9216 2217 2176 13038 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9217 2590 2498 13039 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9218 2498 2466 13039 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9219 2466 2536 13039 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9220 2536 2590 13039 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9221 2431 2466 13040 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9222 2466 2356 13040 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9223 2356 2302 13040 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9224 2302 2431 13040 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9225 2157 2176 13041 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9226 2176 2026 13041 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9227 2026 2003 13041 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9228 2003 2157 13041 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9229 2127 2144 13042 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9230 2144 1993 13042 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9231 1993 1970 13042 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9232 1970 2127 13042 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9233 2302 2157 13043 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9234 2157 2144 13043 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9235 2144 2288 13043 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9236 2288 2302 13043 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9237 2463 2431 13044 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9238 2431 2288 13044 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9239 2288 2345 13044 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9240 2345 2463 13044 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9241 2153 2079 13045 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9242 2079 2209 13045 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9243 2209 2270 13045 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9244 2270 2153 13045 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9245 2300 2235 13046 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9246 2235 2355 13046 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9247 2355 2423 13046 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9248 2423 2300 13046 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9249 2435 2355 13047 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9250 2355 2270 13047 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9251 2270 2394 13047 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9252 2394 2435 13047 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9253 2533 2435 13048 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9254 2435 2502 13048 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9255 2502 2569 13048 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9256 2569 2533 13048 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9257 2557 2502 13049 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9258 2502 2462 13049 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9259 2462 2530 13049 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9260 2530 2557 13049 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9261 2196 2127 13050 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9262 2127 2010 13050 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9263 2010 2084 13050 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9264 2084 2196 13050 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9265 2558 2430 13051 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9266 2430 2476 13051 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9267 2476 2611 13051 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9268 2611 2558 13051 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9269 2637 2613 13052 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9270 2613 2530 13052 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9271 2530 2558 13052 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9272 2558 2637 13052 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9273 2569 2557 13053 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9274 2557 2613 13053 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9275 2613 2632 13053 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9276 2632 2569 13053 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9277 1833 1788 13054 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9278 1788 1773 13054 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9279 1773 1804 13054 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9280 1804 1833 13054 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9281 1873 1773 13055 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9282 1773 1840 13055 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9283 1840 1944 13055 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9284 1944 1873 13055 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9285 2512 2554 13056 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9286 2554 2449 13056 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9287 2449 2415 13056 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9288 2415 2512 13056 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9289 2388 2449 13057 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9290 2449 2492 13057 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9291 2492 2451 13057 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9292 2451 2388 13057 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9293 2548 2492 13058 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9294 2492 2595 13058 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9295 2595 2626 13058 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9296 2626 2548 13058 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9297 2658 2595 13059 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9298 2595 2554 13059 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9299 2554 2616 13059 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9300 2616 2658 13059 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9301 2594 2643 13060 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9302 2643 2616 13060 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9303 2616 2575 13060 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9304 2575 2594 13060 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9305 2694 2658 13061 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9306 2658 2714 13061 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9307 2714 2765 13061 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9308 2765 2694 13061 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9309 2745 2714 13062 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9310 2714 2643 13062 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9311 2643 2672 13062 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9312 2672 2745 13062 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9313 2603 2678 13063 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9314 2678 2672 13063 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9315 2672 2604 13063 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9316 2604 2603 13063 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9317 2802 2745 13064 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9318 2745 2761 13064 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9319 2761 2814 13064 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9320 2814 2802 13064 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9321 2744 2761 13065 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9322 2761 2678 13065 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9323 2678 2666 13065 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9324 2666 2744 13065 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9325 2567 2633 13066 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9326 2633 2666 13066 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9327 2666 2591 13066 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9328 2591 2567 13066 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9329 2801 2744 13067 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9330 2744 2710 13067 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9331 2710 2760 13067 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9332 2760 2801 13067 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9333 2660 2710 13068 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9334 2710 2633 13068 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9335 2633 2607 13068 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9336 2607 2660 13068 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9337 2477 2540 13069 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9338 2540 2607 13069 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9339 2607 2539 13069 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9340 2539 2477 13069 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9341 2705 2660 13070 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9342 2660 2598 13070 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9343 2598 2630 13070 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9344 2630 2705 13070 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9345 2535 2598 13071 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9346 2598 2540 13071 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9347 2540 2459 13071 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9348 2459 2535 13071 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9349 2307 2378 13072 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9350 2378 2459 13072 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9351 2459 2409 13072 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9352 2409 2307 13072 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9353 2581 2535 13073 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9354 2535 2478 13073 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9355 2478 2544 13073 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9356 2544 2581 13073 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9357 2474 2478 13074 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9358 2478 2378 13074 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9359 2378 2377 13074 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9360 2377 2474 13074 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9361 2404 2455 13075 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9362 2455 2377 13075 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9363 2377 2315 13075 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9364 2315 2404 13075 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9365 2556 2474 13076 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9366 2474 2526 13076 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9367 2526 2593 13076 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9368 2593 2556 13076 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9369 2602 2526 13077 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9370 2526 2455 13077 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9371 2455 2543 13077 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9372 2543 2602 13077 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9373 2599 2629 13078 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9374 2629 2543 13078 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9375 2543 2503 13078 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9376 2503 2599 13078 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9377 2652 2602 13079 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9378 2602 2685 13079 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9379 2685 2742 13079 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9380 2742 2652 13079 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9381 2785 2685 13080 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9382 2685 2629 13080 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9383 2629 2733 13080 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9384 2733 2785 13080 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9385 2812 2869 13081 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9386 2869 2733 13081 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9387 2733 2693 13081 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9388 2693 2812 13081 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9389 2846 2785 13082 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9390 2785 2923 13082 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9391 2923 2999 13082 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9392 2999 2846 13082 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9393 3046 2923 13083 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9394 2923 2869 13083 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9395 2869 3010 13083 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9396 3010 3046 13083 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9397 3049 3120 13084 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9398 3120 3010 13084 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9399 3010 2920 13084 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9400 2920 3049 13084 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9401 3058 3046 13085 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9402 3046 3147 13085 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9403 3147 3172 13085 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9404 3172 3058 13085 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9405 3325 3147 13086 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9406 3147 3120 13086 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9407 3120 3265 13086 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9408 3265 3325 13086 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9409 3070 3058 13087 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9410 3058 3047 13087 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9411 3047 3035 13087 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9412 3035 3070 13087 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9413 3004 3047 13088 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9414 3047 3200 13088 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9415 3200 3178 13088 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9416 3178 3004 13088 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9417 3435 3200 13089 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9418 3200 3172 13089 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9419 3172 3384 13089 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9420 3384 3435 13089 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9421 3333 3439 13090 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9422 3439 3265 13090 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9423 3265 3186 13090 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9424 3186 3333 13090 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9425 3384 3325 13091 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9426 3325 3539 13091 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9427 3539 3613 13091 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9428 3613 3384 13091 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9429 3792 3539 13092 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9430 3539 3439 13092 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9431 3439 3611 13092 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9432 3611 3792 13092 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9433 3431 3435 13093 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9434 3435 3695 13093 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9435 3695 3718 13093 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9436 3718 3431 13093 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9437 4030 3695 13094 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9438 3695 3613 13094 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9439 3613 3938 13094 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9440 3938 4030 13094 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9441 3557 3808 13095 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9442 3808 3611 13095 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9443 3611 3463 13095 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9444 3463 3557 13095 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9445 3938 3792 13096 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9446 3792 4089 13096 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9447 4089 4302 13096 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9448 4302 3938 13096 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9449 2483 2721 13097 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9450 2721 2910 13097 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9451 2910 2636 13097 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9452 2636 2483 13097 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9453 3048 2910 13098 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9454 2910 3446 13098 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9455 3446 3572 13098 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9456 3572 3048 13098 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9457 3748 3446 13099 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9458 3446 3167 13099 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9459 3167 3502 13099 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9460 3502 3748 13099 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9461 2861 3167 13100 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9462 3167 2721 13100 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9463 2721 2592 13100 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9464 2592 2861 13100 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9465 2305 2468 13101 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9466 2468 2592 13101 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9467 2592 2381 13101 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9468 2381 2305 13101 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9469 3232 2861 13102 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9470 2861 2675 13102 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9471 2675 2917 13102 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9472 2917 3232 13102 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9473 2546 2675 13103 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9474 2675 2468 13103 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9475 2468 2368 13103 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9476 2368 2546 13103 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9477 2177 2279 13104 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9478 2279 2368 13104 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9479 2368 2239 13104 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9480 2239 2177 13104 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9481 2775 2546 13105 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9482 2546 2487 13105 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9483 2487 2726 13105 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9484 2726 2775 13105 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9485 2456 2487 13106 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9486 2487 2279 13106 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9487 2279 2245 13106 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9488 2245 2456 13106 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9489 2168 2253 13107 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9490 2253 2245 13107 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9491 2245 2158 13107 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9492 2158 2168 13107 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9493 2697 2456 13108 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9494 2456 2444 13108 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9495 2444 2681 13108 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9496 2681 2697 13108 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9497 2445 2444 13109 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9498 2444 2253 13109 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9499 2253 2275 13109 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9500 2275 2445 13109 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9501 2225 2320 13110 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9502 2320 2275 13110 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9503 2275 2192 13110 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9504 2192 2225 13110 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9505 2673 2445 13111 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9506 2445 2457 13111 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9507 2457 2665 13111 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9508 2665 2673 13111 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9509 2513 2457 13112 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9510 2457 2320 13112 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9511 2320 2418 13112 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9512 2418 2513 13112 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9513 2465 2538 13113 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9514 2538 2418 13113 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9515 2418 2323 13113 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9516 2323 2465 13113 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9517 2679 2513 13114 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9518 2513 2596 13114 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9519 2596 2713 13114 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9520 2713 2679 13114 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9521 2628 2596 13115 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9522 2596 2538 13115 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9523 2538 2586 13115 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9524 2586 2628 13115 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9525 2520 2587 13116 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9526 2587 2586 13116 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9527 2586 2524 13116 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9528 2524 2520 13116 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9529 2730 2628 13117 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9530 2628 2640 13117 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9531 2640 2743 13117 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9532 2743 2730 13117 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9533 2631 2640 13118 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9534 2640 2587 13118 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9535 2587 2563 13118 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9536 2563 2631 13118 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9537 3901 3748 13119 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9538 3748 3952 13119 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9539 3952 4038 13119 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9540 4038 3901 13119 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9541 4332 3952 13120 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9542 3952 3743 13120 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9543 3743 4238 13120 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9544 4238 4332 13120 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9545 3546 3743 13121 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9546 3743 3502 13121 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9547 3502 3232 13121 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9548 3232 3546 13121 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9549 4399 4332 13122 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9550 4332 5164 13122 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9551 5164 5177 13122 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9552 5177 4399 13122 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9553 5881 5164 13123 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9554 5164 5119 13123 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9555 5119 5927 13123 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9556 5927 5881 13123 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9557 4807 5119 13124 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9558 5119 4238 13124 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9559 4238 4023 13124 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9560 4023 4807 13124 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9561 4023 3546 13125 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9562 3546 3303 13125 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9563 3303 3708 13125 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9564 3708 4023 13125 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9565 3154 3303 13126 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9566 3303 2917 13126 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9567 2917 2775 13126 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9568 2775 3154 13126 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9569 5207 4807 13127 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9570 4807 4233 13127 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9571 4233 4504 13127 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9572 4504 5207 13127 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9573 3990 4233 13128 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9574 4233 3708 13128 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9575 3708 3545 13128 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9576 3545 3990 13128 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9577 3545 3154 13129 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9578 3154 3121 13129 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9579 3121 3519 13129 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9580 3519 3545 13129 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9581 3083 3121 13130 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9582 3121 2726 13130 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9583 2726 2697 13130 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9584 2697 3083 13130 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9585 4330 3990 13131 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9586 3990 3936 13131 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9587 3936 4298 13131 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9588 4298 4330 13131 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9589 3886 3936 13132 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9590 3936 3519 13132 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9591 3519 3483 13132 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9592 3483 3886 13132 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9593 3483 3083 13133 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9594 3083 3034 13133 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9595 3034 3428 13133 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9596 3428 3483 13133 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9597 3000 3034 13134 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9598 3034 2681 13134 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9599 2681 2673 13134 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9600 2673 3000 13134 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9601 4265 3886 13135 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9602 3886 3833 13135 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9603 3833 4201 13135 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9604 4201 4265 13135 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9605 3746 3833 13136 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9606 3833 3428 13136 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9607 3428 3392 13136 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9608 3392 3746 13136 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9609 3392 3000 13137 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9610 3000 2977 13137 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9611 2977 3348 13137 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9612 3348 3392 13137 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9613 2941 2977 13138 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9614 2977 2665 13138 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9615 2665 2679 13138 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9616 2679 2941 13138 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9617 3986 3746 13139 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9618 3746 3685 13139 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9619 3685 3910 13139 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9620 3910 3986 13139 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9621 3623 3685 13140 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9622 3685 3348 13140 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9623 3348 3300 13140 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9624 3300 3623 13140 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9625 3300 2941 13141 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9626 2941 2918 13141 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9627 2918 3239 13141 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9628 3239 3300 13141 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9629 2903 2918 13142 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9630 2918 2713 13142 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9631 2713 2730 13142 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9632 2730 2903 13142 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9633 3870 3623 13143 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9634 3623 3551 13143 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9635 3551 3749 13143 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9636 3749 3870 13143 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9637 3477 3551 13144 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9638 3551 3239 13144 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9639 3239 3191 13144 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9640 3191 3477 13144 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9641 3191 2903 13145 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9642 2903 2887 13145 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9643 2887 3148 13145 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9644 3148 3191 13145 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9645 2859 2887 13146 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9646 2887 2743 13146 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9647 2743 2727 13146 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9648 2727 2859 13146 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9649 3667 3477 13147 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9650 3477 3400 13147 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9651 3400 3588 13147 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9652 3588 3667 13147 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9653 3328 3400 13148 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9654 3400 3148 13148 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9655 3148 3093 13148 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9656 3093 3328 13148 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9657 3720 3757 13149 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9658 3757 3588 13149 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9659 3588 3543 13149 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9660 3543 3720 13149 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9661 3749 3667 13150 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9662 3667 3840 13150 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9663 3840 3900 13150 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9664 3900 3749 13150 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9665 3988 3840 13151 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9666 3840 3757 13151 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9667 3757 3957 13151 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9668 3957 3988 13151 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9669 3910 3870 13152 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9670 3870 3999 13152 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9671 3999 4035 13152 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9672 4035 3910 13152 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9673 4143 3999 13153 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9674 3999 3900 13153 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9675 3900 4042 13153 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9676 4042 4143 13153 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9677 4186 3986 13154 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9678 3986 4035 13154 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9679 4035 4191 13154 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9680 4191 4186 13154 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9681 4096 4123 13155 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9682 4123 3957 13155 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9683 3957 3927 13155 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9684 3927 4096 13155 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9685 4042 3988 13156 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9686 3988 4138 13156 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9687 4138 4211 13156 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9688 4211 4042 13156 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9689 4307 4138 13157 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9690 4138 4123 13157 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9691 4123 4292 13157 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9692 4292 4307 13157 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9693 4191 4143 13158 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9694 4143 4325 13158 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9695 4325 4441 13158 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9696 4441 4191 13158 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9697 4555 4325 13159 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9698 4325 4211 13159 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9699 4211 4386 13159 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9700 4386 4555 13159 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9701 4201 4186 13160 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9702 4186 4595 13160 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9703 4595 4695 13160 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9704 4695 4201 13160 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9705 4909 4595 13161 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9706 4595 4441 13161 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9707 4441 4698 13161 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9708 4698 4909 13161 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9709 4423 4454 13162 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9710 4454 4292 13162 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9711 4292 4280 13162 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9712 4280 4423 13162 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9713 4386 4307 13163 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9714 4307 4494 13163 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9715 4494 4645 13163 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9716 4645 4386 13163 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9717 4769 4494 13164 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9718 4494 4454 13164 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9719 4454 4738 13164 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9720 4738 4769 13164 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9721 4698 4555 13165 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9722 4555 4846 13165 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9723 4846 4946 13165 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9724 4946 4698 13165 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9725 5012 4846 13166 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9726 4846 4645 13166 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9727 4645 4882 13166 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9728 4882 5012 13166 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9729 5103 4909 13167 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9730 4909 4946 13167 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9731 4946 5095 13167 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9732 5095 5103 13167 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9733 4939 4967 13168 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9734 4967 4738 13168 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9735 4738 4690 13168 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9736 4690 4939 13168 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9737 4882 4769 13169 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9738 4769 4992 13169 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9739 4992 5051 13169 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9740 5051 4882 13169 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9741 5153 4992 13170 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9742 4992 4967 13170 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9743 4967 5149 13170 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9744 5149 5153 13170 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9745 5095 5012 13171 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9746 5012 5146 13171 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9747 5146 5217 13171 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9748 5217 5095 13171 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9749 5205 5146 13172 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9750 5146 5051 13172 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9751 5051 5163 13172 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9752 5163 5205 13172 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9753 5110 5103 13173 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9754 5103 5326 13173 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9755 5326 5392 13173 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9756 5392 5110 13173 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9757 5476 5326 13174 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9758 5326 5217 13174 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9759 5217 5320 13174 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9760 5320 5476 13174 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9761 5321 5276 13175 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9762 5276 5149 13175 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9763 5149 5182 13175 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9764 5182 5321 13175 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9765 5163 5153 13176 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9766 5153 5259 13176 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9767 5259 5251 13176 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9768 5251 5163 13176 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9769 5365 5259 13177 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9770 5259 5276 13177 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9771 5276 5397 13177 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9772 5397 5365 13177 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9773 5309 5205 13178 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9774 5205 5251 13178 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9775 5251 5332 13178 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9776 5332 5309 13178 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9777 5486 5478 13179 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9778 5478 5397 13179 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9779 5397 5418 13179 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9780 5418 5486 13179 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9781 5332 5365 13180 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9782 5365 5467 13180 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9783 5467 5462 13180 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9784 5462 5332 13180 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9785 5578 5467 13181 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9786 5467 5478 13181 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9787 5478 5566 13181 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9788 5566 5578 13181 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9789 5320 5309 13182 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9790 5309 5458 13182 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9791 5458 5475 13182 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9792 5475 5320 13182 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9793 5587 5458 13183 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9794 5458 5462 13183 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9795 5462 5583 13183 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9796 5583 5587 13183 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9797 5570 5476 13184 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9798 5476 5475 13184 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9799 5475 5569 13184 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9800 5569 5570 13184 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9801 5659 5393 13185 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9802 5393 5392 13185 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9803 5392 5660 13185 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9804 5660 5659 13185 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9805 4695 5110 13186 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9806 5110 5113 13186 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9807 5113 4727 13186 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9808 4727 4695 13186 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9809 5107 5113 13187 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9810 5113 5393 13187 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9811 5393 5391 13187 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9812 5391 5107 13187 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9813 5664 5387 13188 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9814 5387 5391 13188 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9815 5391 5661 13188 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9816 5661 5664 13188 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9817 4743 5107 13189 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9818 5107 5098 13189 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9819 5098 4747 13189 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9820 4747 4743 13189 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9821 5147 5098 13190 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9822 5098 5387 13190 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9823 5387 5430 13190 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9824 5430 5147 13190 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9825 5616 5429 13191 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9826 5429 5430 13191 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9827 5430 5617 13191 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9828 5617 5616 13191 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9829 4931 5147 13192 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9830 5147 5429 13192 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9831 5429 5207 13192 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9832 5207 4931 13192 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9833 4298 4265 13193 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9834 4265 4727 13193 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9835 4727 4743 13193 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9836 4743 4298 13193 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9837 4504 4330 13194 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9838 4330 4747 13194 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9839 4747 4931 13194 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9840 4931 4504 13194 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9841 3168 3321 13195 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9842 3321 3326 13195 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9843 3326 3184 13195 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9844 3184 3168 13195 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9845 3378 3326 13196 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9846 3326 3536 13196 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9847 3536 3548 13196 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9848 3548 3378 13196 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9849 3730 3536 13197 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9850 3536 3540 13197 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9851 3540 3716 13197 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9852 3716 3730 13197 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9853 3529 3540 13198 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9854 3540 3321 13198 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9855 3321 3308 13198 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9856 3308 3529 13198 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9857 3741 3730 13199 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9858 3730 3993 13199 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9859 3993 4004 13199 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9860 4004 3741 13199 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9861 4139 3993 13200 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9862 3993 3899 13200 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9863 3899 4039 13200 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9864 4039 4139 13200 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9865 3862 3899 13201 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9866 3899 3716 13201 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9867 3716 3694 13201 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9868 3694 3862 13201 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9869 3099 3275 13202 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9870 3275 3308 13202 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9871 3308 3127 13202 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9872 3127 3099 13202 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9873 3694 3529 13203 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9874 3529 3505 13203 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9875 3505 3679 13203 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9876 3679 3694 13203 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9877 3533 3505 13204 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9878 3505 3275 13204 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9879 3275 3327 13204 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9880 3327 3533 13204 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9881 4003 3862 13205 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9882 3862 3865 13205 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9883 3865 4015 13205 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9884 4015 4003 13205 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9885 3857 3865 13206 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9886 3865 3679 13206 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9887 3679 3658 13206 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9888 3658 3857 13206 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9889 3372 3468 13207 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9890 3468 3327 13207 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9891 3327 3204 13207 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9892 3204 3372 13207 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9893 3658 3533 13208 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9894 3533 3594 13208 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9895 3594 3711 13208 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9896 3711 3658 13208 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9897 3717 3594 13209 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9898 3594 3468 13209 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9899 3468 3607 13209 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9900 3607 3717 13209 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9901 3964 3857 13210 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9902 3857 3711 13210 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9903 3711 3854 13210 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9904 3854 3964 13210 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9905 3676 3767 13211 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9906 3767 3607 13211 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9907 3607 3527 13211 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9908 3527 3676 13211 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9909 3854 3717 13212 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9910 3717 3895 13212 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9911 3895 4008 13212 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9912 4008 3854 13212 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9913 4022 3895 13213 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9914 3895 3767 13213 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9915 3767 3937 13213 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9916 3937 4022 13213 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9917 4100 3964 13214 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9918 3964 4124 13214 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9919 4124 4279 13214 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9920 4279 4100 13214 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9921 4224 4124 13215 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9922 4124 4008 13215 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9923 4008 4085 13215 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9924 4085 4224 13215 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9925 3961 4050 13216 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9926 4050 3937 13216 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9927 3937 3842 13216 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9928 3842 3961 13216 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9929 4085 4022 13217 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9930 4022 4119 13217 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9931 4119 4181 13217 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9932 4181 4085 13217 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9933 4306 4119 13218 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9934 4119 4050 13218 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9935 4050 4284 13218 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9936 4284 4306 13218 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9937 4370 4224 13219 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9938 4224 4181 13219 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9939 4181 4333 13219 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9940 4333 4370 13219 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9941 4679 4697 13220 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9942 4697 4284 13220 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9943 4284 4203 13220 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9944 4203 4679 13220 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9945 4333 4306 13221 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9946 4306 4682 13221 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9947 4682 4684 13221 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9948 4684 4333 13221 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9949 5037 4682 13222 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9950 4682 4697 13222 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9951 4697 5077 13222 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9952 5077 5037 13222 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9953 4455 4370 13223 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9954 4370 4729 13223 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9955 4729 4797 13223 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9956 4797 4455 13223 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9957 5049 4729 13224 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9958 4729 4684 13224 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9959 4684 5029 13224 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9960 5029 5049 13224 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9961 5364 5360 13225 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9962 5360 5077 13225 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9963 5077 5082 13225 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9964 5082 5364 13225 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9965 5029 5037 13226 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9966 5037 5343 13226 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9967 5343 5337 13226 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9968 5337 5029 13226 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9969 5658 5343 13227 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9970 5343 5360 13227 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9971 5360 5639 13227 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9972 5639 5658 13227 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9973 5089 5049 13228 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9974 5049 5347 13228 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9975 5347 5362 13228 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9976 5362 5089 13228 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9977 5651 5347 13229 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9978 5347 5337 13229 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9979 5337 5662 13229 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9980 5662 5651 13229 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9981 3005 3081 13230 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9982 3081 3113 13230 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9983 3113 3050 13230 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9984 3050 3005 13230 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9985 3207 3113 13231 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9986 3113 3184 13231 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9987 3184 3258 13231 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9988 3258 3207 13231 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9989 3139 3168 13232 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9990 3168 3081 13232 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9991 3081 3037 13232 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9992 3037 3139 13232 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9993 2988 3027 13233 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9994 3027 3037 13233 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9995 3037 2985 13233 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9996 2985 2988 13233 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9997 3126 3139 13234 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9998 3139 3027 13234 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 9999 3027 3008 13234 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10000 3008 3126 13234 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10001 2873 2968 13235 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10002 2968 3008 13235 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10003 3008 2926 13235 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10004 2926 2873 13235 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10005 3127 3126 13236 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10006 3126 2968 13236 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10007 2968 2983 13236 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10008 2983 3127 13236 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10009 2866 2979 13237 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10010 2979 2983 13237 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10011 2983 2858 13237 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10012 2858 2866 13237 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10013 3091 3099 13238 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10014 3099 2979 13238 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10015 2979 2982 13238 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10016 2982 3091 13238 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10017 2989 3055 13239 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10018 3055 2982 13239 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10019 2982 2904 13239 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10020 2904 2989 13239 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10021 3204 3091 13240 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10022 3091 3055 13240 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10023 3055 3164 13240 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10024 3164 3204 13240 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10025 3257 3319 13241 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10026 3319 3164 13241 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10027 3164 3106 13241 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10028 3106 3257 13241 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10029 3527 3372 13242 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10030 3372 3319 13242 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10031 3319 3456 13242 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10032 3456 3527 13242 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10033 3491 3577 13243 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10034 3577 3456 13243 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10035 3456 3389 13243 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10036 3389 3491 13243 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10037 3842 3676 13244 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10038 3676 3577 13244 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10039 3577 3698 13244 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10040 3698 3842 13244 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10041 3683 3848 13245 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10042 3848 3698 13245 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10043 3698 3584 13245 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10044 3584 3683 13245 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10045 4203 3961 13246 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10046 3961 3848 13246 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10047 3848 4105 13246 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10048 4105 4203 13246 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10049 4560 4585 13247 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10050 4585 4105 13247 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10051 4105 4061 13247 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10052 4061 4560 13247 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10053 5082 4679 13248 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10054 4679 4585 13248 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10055 4585 5056 13248 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10056 5056 5082 13248 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10057 5361 5353 13249 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10058 5353 5056 13249 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10059 5056 5055 13249 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10060 5055 5361 13249 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10061 5633 5364 13250 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10062 5364 5353 13250 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10063 5353 5641 13250 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10064 5641 5633 13250 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10065 2671 2709 13251 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10066 2709 2674 13251 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10067 2674 2612 13251 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10068 2612 2671 13251 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10069 2689 2674 13252 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10070 2674 2729 13252 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10071 2729 2773 13252 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10072 2773 2689 13252 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10073 2791 2729 13253 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10074 2729 2751 13253 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10075 2751 2787 13253 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10076 2787 2791 13253 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10077 2788 2751 13254 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10078 2751 2709 13254 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10079 2709 2759 13254 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10080 2759 2788 13254 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10081 2837 2791 13255 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10082 2791 2835 13255 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10083 2835 2901 13255 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10084 2901 2837 13255 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10085 2867 2835 13256 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10086 2835 2817 13256 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10087 2817 2836 13256 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10088 2836 2867 13256 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10089 2826 2817 13257 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10090 2817 2787 13257 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10091 2787 2810 13257 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10092 2810 2826 13257 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10093 2970 2867 13258 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10094 2867 2889 13258 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10095 2889 3003 13258 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10096 3003 2970 13258 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10097 2914 2889 13259 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10098 2889 2847 13259 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10099 2847 2865 13259 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10100 2865 2914 13259 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10101 2848 2847 13260 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10102 2847 2836 13260 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10103 2836 2839 13260 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10104 2839 2848 13260 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10105 3030 2914 13261 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10106 2914 2946 13261 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10107 2946 3064 13261 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10108 3064 3030 13261 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10109 2996 2946 13262 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10110 2946 2899 13262 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10111 2899 2947 13262 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10112 2947 2996 13262 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10113 2890 2899 13263 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10114 2899 2865 13263 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10115 2865 2855 13263 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10116 2855 2890 13263 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10117 3098 2996 13264 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10118 2996 3050 13264 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10119 3050 3161 13264 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10120 3161 3098 13264 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10121 2985 3005 13265 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10122 3005 2947 13265 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10123 2947 2940 13265 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10124 2940 2985 13265 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10125 2984 2986 13266 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10126 2986 2940 13266 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10127 2940 2929 13266 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10128 2929 2984 13266 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10129 2972 2988 13267 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10130 2988 2986 13267 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10131 2986 2990 13267 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10132 2990 2972 13267 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10133 2772 2808 13268 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10134 2808 2800 13268 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10135 2800 2763 13268 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10136 2763 2772 13268 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10137 2821 2800 13269 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10138 2800 2858 13269 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10139 2858 2873 13269 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10140 2873 2821 13269 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10141 2904 2866 13270 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10142 2866 2808 13270 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10143 2808 2842 13270 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10144 2842 2904 13270 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10145 2838 2898 13271 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10146 2898 2842 13271 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10147 2842 2793 13271 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10148 2793 2838 13271 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10149 3106 2989 13272 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10150 2989 2898 13272 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10151 2898 3031 13272 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10152 3031 3106 13272 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10153 3117 3189 13273 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10154 3189 3031 13273 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10155 3031 2939 13273 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10156 2939 3117 13273 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10157 3389 3257 13274 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10158 3257 3189 13274 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10159 3189 3306 13274 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10160 3306 3389 13274 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10161 3307 3403 13275 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10162 3403 3306 13275 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10163 3306 3220 13275 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10164 3220 3307 13275 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10165 3584 3491 13276 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10166 3491 3403 13276 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10167 3403 3487 13276 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10168 3487 3584 13276 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10169 3430 3558 13277 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10170 3558 3487 13277 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10171 3487 3375 13277 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10172 3375 3430 13277 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10173 3739 3683 13278 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10174 3683 3558 13278 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10175 3558 3586 13278 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10176 3586 3739 13278 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10177 3457 3430 13279 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10178 3430 3324 13279 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10179 3324 3335 13279 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10180 3335 3457 13279 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10181 3243 3324 13280 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10182 3324 3280 13280 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10183 3280 3215 13280 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10184 3215 3243 13280 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10185 3218 3280 13281 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10186 3280 3375 13281 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10187 3375 3307 13281 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10188 3307 3218 13281 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10189 3166 3218 13282 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10190 3218 3149 13282 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10191 3149 3082 13282 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10192 3082 3166 13282 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10193 3028 3149 13283 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10194 3149 3220 13283 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10195 3220 3117 13283 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10196 3117 3028 13283 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10197 2944 3028 13284 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10198 3028 2863 13284 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10199 2863 2809 13284 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10200 2809 2944 13284 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10201 2781 2863 13285 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10202 2863 2939 13285 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10203 2939 2838 13285 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10204 2838 2781 13285 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10205 2731 2781 13286 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10206 2781 2746 13286 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10207 2746 2707 13286 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10208 2707 2731 13286 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10209 2728 2746 13287 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10210 2746 2793 13287 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10211 2793 2772 13287 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10212 2772 2728 13287 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10213 2696 2728 13288 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10214 2728 2738 13288 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10215 2738 2716 13288 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10216 2716 2696 13288 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10217 2777 2738 13289 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10218 2738 2763 13289 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10219 2763 2790 13289 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10220 2790 2777 13289 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10221 2876 2850 13290 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10222 2850 2790 13290 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10223 2790 2821 13290 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10224 2821 2876 13290 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10225 2752 2777 13291 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10226 2777 2831 13291 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10227 2831 2813 13291 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10228 2813 2752 13291 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10229 2882 2831 13292 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10230 2831 2850 13292 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10231 2850 2907 13292 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10232 2907 2882 13292 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10233 2990 2974 13293 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10234 2974 2907 13293 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10235 2907 2925 13293 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10236 2925 2990 13293 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10237 2864 2882 13294 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10238 2882 2952 13294 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10239 2952 2922 13294 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10240 2922 2864 13294 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10241 2976 2952 13295 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10242 2952 2974 13295 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10243 2974 2984 13295 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10244 2984 2976 13295 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10245 2951 2976 13296 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10246 2976 2937 13296 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10247 2937 2931 13296 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10248 2931 2951 13296 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10249 2906 2937 13297 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10250 2937 2929 13297 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10251 2929 2890 13297 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10252 2890 2906 13297 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10253 2892 2906 13298 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10254 2906 2855 13298 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10255 2855 2848 13298 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10256 2848 2892 13298 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10257 2926 2972 13299 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10258 2972 2925 13299 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10259 2925 2876 13299 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10260 2876 2926 13299 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10261 2529 2548 13300 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10262 2548 2612 13300 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10263 2612 2614 13300 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10264 2614 2529 13300 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10265 2724 2671 13301 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10266 2671 2626 13301 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10267 2626 2694 13301 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10268 2694 2724 13301 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10269 2759 2724 13302 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10270 2724 2789 13302 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10271 2789 2816 13302 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10272 2816 2759 13302 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10273 2827 2789 13303 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10274 2789 2765 13303 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10275 2765 2802 13303 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10276 2802 2827 13303 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10277 2851 2827 13304 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10278 2827 2845 13304 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10279 2845 2868 13304 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10280 2868 2851 13304 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10281 2828 2845 13305 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10282 2845 2814 13305 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10283 2814 2801 13305 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10284 2801 2828 13305 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10285 2852 2828 13306 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10286 2828 2783 13306 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10287 2783 2807 13306 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10288 2807 2852 13306 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10289 2725 2783 13307 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10290 2783 2760 13307 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10291 2760 2705 13307 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10292 2705 2725 13307 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10293 2749 2725 13308 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10294 2725 2655 13308 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10295 2655 2680 13308 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10296 2680 2749 13308 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10297 2609 2655 13309 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10298 2655 2630 13309 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10299 2630 2581 13309 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10300 2581 2609 13309 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10301 2619 2609 13310 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10302 2609 2544 13310 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10303 2544 2568 13310 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10304 2568 2619 13310 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10305 2810 2788 13311 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10306 2788 2844 13311 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10307 2844 2860 13311 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10308 2860 2810 13311 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10309 2875 2844 13312 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10310 2844 2816 13312 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10311 2816 2851 13312 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10312 2851 2875 13312 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10313 2888 2875 13313 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10314 2875 2884 13313 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10315 2884 2895 13313 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10316 2895 2888 13313 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10317 2871 2884 13314 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10318 2884 2868 13314 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10319 2868 2852 13314 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10320 2852 2871 13314 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10321 2891 2871 13315 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10322 2871 2829 13315 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10323 2829 2849 13315 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10324 2849 2891 13315 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10325 2776 2829 13316 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10326 2829 2807 13316 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10327 2807 2749 13316 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10328 2749 2776 13316 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10329 2797 2776 13317 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10330 2776 2700 13317 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10331 2700 2722 13317 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10332 2722 2797 13317 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10333 2644 2700 13318 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10334 2700 2680 13318 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10335 2680 2619 13318 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10336 2619 2644 13318 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10337 2682 2644 13319 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10338 2644 2618 13319 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10339 2618 2661 13319 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10340 2661 2682 13319 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10341 2617 2618 13320 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10342 2618 2568 13320 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10343 2568 2556 13320 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10344 2556 2617 13320 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10345 2669 2617 13321 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10346 2617 2642 13321 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10347 2642 2695 13321 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10348 2695 2669 13321 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10349 2715 2642 13322 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10350 2642 2593 13322 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10351 2593 2652 13322 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10352 2652 2715 13322 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10353 2774 2715 13323 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10354 2715 2818 13323 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10355 2818 2881 13323 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10356 2881 2774 13323 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10357 2930 2818 13324 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10358 2818 2742 13324 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10359 2742 2846 13324 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10360 2846 2930 13324 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10361 3026 2930 13325 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10362 2930 3080 13325 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10363 3080 3130 13325 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10364 3130 3026 13325 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10365 3133 3080 13326 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10366 3080 2999 13326 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10367 2999 3070 13326 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10368 3070 3133 13326 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10369 3187 3133 13327 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10370 3133 3131 13327 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10371 3131 3201 13327 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10372 3201 3187 13327 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10373 3122 3131 13328 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10374 3131 3035 13328 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10375 3035 3001 13328 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10376 3001 3122 13328 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10377 3251 3243 13329 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10378 3243 3201 13329 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10379 3201 3199 13329 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10380 3199 3251 13329 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10381 3130 3187 13330 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10382 3187 3215 13330 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10383 3215 3166 13330 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10384 3166 3130 13330 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10385 2881 3026 13331 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10386 3026 3082 13331 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10387 3082 2944 13331 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10388 2944 2881 13331 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10389 2695 2774 13332 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10390 2774 2809 13332 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10391 2809 2731 13332 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10392 2731 2695 13332 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10393 2661 2669 13333 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10394 2669 2707 13333 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10395 2707 2696 13333 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10396 2696 2661 13333 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10397 2722 2682 13334 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10398 2682 2716 13334 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10399 2716 2752 13334 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10400 2752 2722 13334 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10401 2849 2797 13335 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10402 2797 2813 13335 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10403 2813 2864 13335 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10404 2864 2849 13335 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10405 2913 2891 13336 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10406 2891 2922 13336 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10407 2922 2951 13336 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10408 2951 2913 13336 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10409 2895 2913 13337 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10410 2913 2908 13337 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10411 2908 2893 13337 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10412 2893 2895 13337 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10413 2878 2908 13338 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10414 2908 2931 13338 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10415 2931 2892 13338 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10416 2892 2878 13338 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10417 2870 2878 13339 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10418 2878 2839 13339 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10419 2839 2826 13339 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10420 2826 2870 13339 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10421 2893 2870 13340 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10422 2870 2860 13340 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10423 2860 2888 13340 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10424 2888 2893 13340 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10425 5289 5334 13341 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10426 5334 5463 13341 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10427 5463 5420 13341 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10428 5420 5289 13341 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10429 5582 5463 13342 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10430 5463 5465 13342 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10431 5465 5580 13342 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10432 5580 5582 13342 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10433 5464 5465 13343 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10434 5465 5346 13343 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10435 5346 5338 13343 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10436 5338 5464 13343 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10437 5254 5346 13344 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10438 5346 5334 13344 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10439 5334 5255 13344 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10440 5255 5254 13344 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10441 5581 5464 13345 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10442 5464 5460 13345 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10443 5460 5585 13345 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10444 5585 5581 13345 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10445 5459 5460 13346 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10446 5460 5328 13346 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10447 5328 5314 13346 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10448 5314 5459 13346 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10449 5214 5328 13347 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10450 5328 5338 13347 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10451 5338 5237 13347 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10452 5237 5214 13347 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10453 5586 5459 13348 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10454 5459 5454 13348 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10455 5454 5591 13348 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10456 5591 5586 13348 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10457 5451 5454 13349 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10458 5454 5298 13349 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10459 5298 5283 13349 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10460 5283 5451 13349 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10461 5185 5298 13350 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10462 5298 5314 13350 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10463 5314 5196 13350 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10464 5196 5185 13350 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10465 5138 5187 13351 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10466 5187 5255 13351 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10467 5255 5179 13351 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10468 5179 5138 13351 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10469 5237 5254 13352 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10470 5254 5176 13352 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10471 5176 5165 13352 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10472 5165 5237 13352 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10473 5100 5176 13353 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10474 5176 5187 13353 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10475 5187 5125 13353 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10476 5125 5100 13353 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10477 5196 5214 13354 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10478 5214 5141 13354 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10479 5141 5124 13354 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10480 5124 5196 13354 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10481 5050 5141 13355 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10482 5141 5165 13355 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10483 5165 5078 13355 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10484 5078 5050 13355 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10485 5172 5185 13356 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10486 5185 5116 13356 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10487 5116 5101 13356 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10488 5101 5172 13356 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10489 5035 5116 13357 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10490 5116 5124 13357 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10491 5124 5039 13357 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10492 5039 5035 13357 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10493 5010 5033 13358 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10494 5033 5125 13358 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10495 5125 5081 13358 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10496 5081 5010 13358 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10497 5078 5100 13359 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10498 5100 5002 13359 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10499 5002 4984 13359 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10500 4984 5078 13359 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10501 4885 5002 13360 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10502 5002 5033 13360 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10503 5033 4924 13360 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10504 4924 4885 13360 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10505 5039 5050 13361 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10506 5050 4972 13361 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10507 4972 4965 13361 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10508 4965 5039 13361 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10509 4858 4972 13362 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10510 4972 4984 13362 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10511 4984 4864 13362 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10512 4864 4858 13362 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10513 5018 5035 13363 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10514 5035 4950 13363 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10515 4950 4940 13363 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10516 4940 5018 13363 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10517 4904 4950 13364 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10518 4950 4965 13364 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10519 4965 4917 13364 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10520 4917 4904 13364 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10521 4868 4862 13365 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10522 4862 4924 13365 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10523 4924 4923 13365 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10524 4923 4868 13365 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10525 4864 4885 13366 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10526 4885 4742 13366 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10527 4742 4676 13366 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10528 4676 4864 13366 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10529 4468 4742 13367 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10530 4742 4784 13367 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10531 4784 4586 13367 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10532 4586 4468 13367 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10533 4796 4784 13368 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10534 4784 4862 13368 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10535 4862 4829 13368 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10536 4829 4796 13368 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10537 4839 4858 13369 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10538 4858 4658 13369 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10539 4658 4631 13369 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10540 4631 4839 13369 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10541 4391 4658 13370 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10542 4658 4676 13370 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10543 4676 4396 13370 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10544 4396 4391 13370 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10545 4917 4839 13371 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10546 4839 4802 13371 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10547 4802 4892 13371 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10548 4892 4917 13371 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10549 4767 4802 13372 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10550 4802 4614 13372 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10551 4614 4574 13372 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10552 4574 4767 13372 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10553 4395 4614 13373 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10554 4614 4631 13373 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10555 4631 4390 13373 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10556 4390 4395 13373 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10557 5558 5486 13374 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10558 5486 5485 13374 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10559 5485 5557 13374 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10560 5557 5558 13374 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10561 5420 5485 13375 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10562 5485 5418 13375 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10563 5418 5321 13375 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10564 5321 5420 13375 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10565 5188 5289 13376 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10566 5289 5182 13376 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10567 5182 5086 13376 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10568 5086 5188 13376 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10569 4928 5000 13377 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10570 5000 5041 13377 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10571 5041 4957 13377 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10572 4957 4928 13377 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10573 5045 5041 13378 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10574 5041 5179 13378 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10575 5179 5188 13378 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10576 5188 5045 13378 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10577 5081 5138 13379 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10578 5138 5000 13379 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10579 5000 4969 13379 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10580 4969 5081 13379 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10581 4923 5010 13380 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10582 5010 4945 13380 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10583 4945 4894 13380 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10584 4894 4923 13380 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10585 4818 4945 13381 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10586 4945 4969 13381 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10587 4969 4815 13381 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10588 4815 4818 13381 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10589 4830 4868 13382 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10590 4868 4838 13382 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10591 4838 4808 13382 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10592 4808 4830 13382 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10593 4778 4838 13383 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10594 4838 4831 13383 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10595 4831 4775 13383 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10596 4775 4778 13383 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10597 4795 4831 13384 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10598 4831 4854 13384 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10599 4854 4804 13384 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10600 4804 4795 13384 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10601 4751 4854 13385 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10602 4854 4894 13385 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10603 4894 4788 13385 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10604 4788 4751 13385 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10605 4791 4778 13386 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10606 4778 4768 13386 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10607 4768 4774 13386 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10608 4774 4791 13386 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10609 4495 4768 13387 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10610 4768 4752 13387 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10611 4752 4486 13387 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10612 4486 4495 13387 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10613 4705 4752 13388 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10614 4752 4755 13388 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10615 4755 4721 13388 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10616 4721 4705 13388 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10617 4671 4755 13389 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10618 4755 4770 13389 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10619 4770 4692 13389 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10620 4692 4671 13389 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10621 4781 4770 13390 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10622 4770 4775 13390 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10623 4775 4787 13390 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10624 4787 4781 13390 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10625 4396 4468 13391 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10626 4468 4215 13391 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10627 4215 4148 13391 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10628 4148 4396 13391 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10629 4173 4215 13392 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10630 4215 4586 13392 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10631 4586 4540 13392 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10632 4540 4173 13392 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10633 5275 5263 13393 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10634 5263 5444 13393 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10635 5444 5450 13393 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10636 5450 5275 13393 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10637 5602 5444 13394 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10638 5444 5440 13394 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10639 5440 5606 13394 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10640 5606 5602 13394 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10641 5436 5440 13395 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10642 5440 5248 13395 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10643 5248 5239 13395 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10644 5239 5436 13395 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10645 5120 5248 13396 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10646 5248 5263 13396 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10647 5263 5140 13396 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10648 5140 5120 13396 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10649 5076 5047 13397 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10650 5047 5140 13397 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10651 5140 5161 13397 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10652 5161 5076 13397 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10653 5114 5120 13398 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10654 5120 5025 13398 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10655 5025 5011 13398 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10656 5011 5114 13398 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10657 4960 5025 13399 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10658 5025 5047 13399 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10659 5047 4979 13399 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10660 4979 4960 13399 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10661 4932 4918 13400 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10662 4918 4979 13400 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10663 4979 4998 13400 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10664 4998 4932 13400 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10665 4948 4960 13401 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10666 4960 4914 13401 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10667 4914 4929 13401 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10668 4929 4948 13401 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10669 4849 4914 13402 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10670 4914 4918 13402 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10671 4918 4861 13402 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10672 4861 4849 13402 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10673 4790 4762 13403 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10674 4762 4861 13403 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10675 4861 4874 13403 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10676 4874 4790 13403 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10677 4857 4849 13404 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10678 4849 4728 13404 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10679 4728 4711 13404 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10680 4711 4857 13404 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10681 4623 4728 13405 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10682 4728 4762 13405 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10683 4762 4693 13405 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10684 4693 4623 13405 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10685 4720 4636 13406 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10686 4636 4693 13406 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10687 4693 4758 13406 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10688 4758 4720 13406 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10689 4590 4623 13407 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10690 4623 4543 13407 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10691 4543 4500 13407 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10692 4500 4590 13407 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10693 4496 4543 13408 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10694 4543 4636 13408 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10695 4636 4603 13408 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10696 4603 4496 13408 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10697 4800 4767 13409 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10698 4767 4612 13409 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10699 4612 4663 13409 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10700 4663 4800 13409 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10701 4442 4612 13410 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10702 4612 4574 13410 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10703 4574 4412 13410 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10704 4412 4442 13410 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10705 4511 4505 13411 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10706 4505 4598 13411 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10707 4598 4601 13411 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10708 4601 4511 13411 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10709 4696 4598 13412 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10710 4598 4603 13412 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10711 4603 4699 13412 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10712 4699 4696 13412 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10713 4465 4496 13413 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10714 4496 4505 13413 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10715 4505 4473 13413 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10716 4473 4465 13413 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10717 4344 4363 13414 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10718 4363 4485 13414 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10719 4485 4469 13414 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10720 4469 4344 13414 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10721 4561 4485 13415 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10722 4485 4446 13415 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10723 4446 4534 13415 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10724 4534 4561 13415 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10725 4440 4446 13416 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10726 4446 4363 13416 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10727 4363 4376 13416 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10728 4376 4440 13416 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10729 4448 4521 13417 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10730 4521 4525 13417 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10731 4525 4481 13417 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10732 4481 4448 13417 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10733 4541 4525 13418 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10734 4525 4565 13418 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10735 4565 4582 13418 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10736 4582 4541 13418 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10737 4539 4565 13419 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10738 4565 4521 13419 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10739 4521 4487 13419 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10740 4487 4539 13419 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10741 4629 4579 13420 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10742 4579 4592 13420 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10743 4592 4651 13420 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10744 4651 4629 13420 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10745 4594 4592 13421 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10746 4592 4546 13421 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10747 4546 4549 13421 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10748 4549 4594 13421 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10749 4497 4546 13422 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10750 4546 4533 13422 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10751 4533 4488 13422 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10752 4488 4497 13422 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10753 4559 4533 13423 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10754 4533 4579 13423 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10755 4579 4607 13423 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10756 4607 4559 13423 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10757 4530 4559 13424 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10758 4559 4646 13424 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10759 4646 4613 13424 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10760 4613 4530 13424 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10761 4753 4646 13425 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10762 4646 4681 13425 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10763 4681 4772 13425 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10764 4772 4753 13425 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10765 4709 4681 13426 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10766 4681 4607 13426 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10767 4607 4659 13426 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10768 4659 4709 13426 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10769 4732 4753 13427 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10770 4753 4897 13427 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10771 4897 4878 13427 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10772 4878 4732 13427 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10773 4962 4897 13428 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10774 4897 4936 13428 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10775 4936 5001 13428 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10776 5001 4962 13428 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10777 4963 4936 13429 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10778 4936 4772 13429 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10779 4772 4825 13429 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10780 4825 4963 13429 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10781 4941 4962 13430 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10782 4962 4980 13430 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10783 4980 4964 13430 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10784 4964 4941 13430 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10785 5034 4980 13431 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10786 4980 5001 13431 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10787 5001 5053 13431 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10788 5053 5034 13431 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10789 5019 5034 13432 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10790 5034 5129 13432 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10791 5129 5118 13432 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10792 5118 5019 13432 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10793 5260 5129 13433 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10794 5129 5151 13433 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10795 5151 5270 13433 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10796 5270 5260 13433 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10797 5155 5151 13434 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10798 5151 5053 13434 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10799 5053 5074 13434 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10800 5074 5155 13434 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10801 5245 5260 13435 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10802 5260 5443 13435 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10803 5443 5439 13435 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10804 5439 5245 13435 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10805 5603 5443 13436 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10806 5443 5448 13436 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10807 5448 5597 13436 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10808 5597 5603 13436 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10809 5453 5448 13437 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10810 5448 5270 13437 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10811 5270 5297 13437 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10812 5297 5453 13437 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10813 5592 5453 13438 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10814 5453 5466 13438 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10815 5466 5579 13438 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10816 5579 5592 13438 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10817 5477 5466 13439 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10818 5466 5354 13439 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10819 5354 5386 13439 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10820 5386 5477 13439 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10821 5282 5354 13440 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10822 5354 5297 13440 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10823 5297 5209 13440 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10824 5209 5282 13440 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10825 5198 5197 13441 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10826 5197 5249 13441 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10827 5249 5261 13441 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10828 5261 5198 13441 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10829 5265 5249 13442 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10830 5249 5257 13442 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10831 5257 5267 13442 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10832 5267 5265 13442 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10833 5216 5257 13443 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10834 5257 5208 13443 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10835 5208 5190 13443 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10836 5190 5216 13443 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10837 5175 5208 13444 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10838 5208 5197 13444 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10839 5197 5167 13444 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10840 5167 5175 13444 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10841 5568 5477 13445 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10842 5477 5472 13445 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10843 5472 5573 13445 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10844 5573 5568 13445 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10845 5471 5472 13446 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10846 5472 5376 13446 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10847 5376 5370 13446 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10848 5370 5471 13446 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10849 5302 5376 13447 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10850 5376 5386 13447 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10851 5386 5310 13447 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10852 5310 5302 13447 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10853 5206 5252 13448 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10854 5252 5267 13448 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10855 5267 5223 13448 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10856 5223 5206 13448 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10857 5279 5265 13449 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10858 5265 5252 13449 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10859 5252 5269 13449 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10860 5269 5279 13449 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10861 5102 5115 13450 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10862 5115 5200 13450 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10863 5200 5180 13450 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10864 5180 5102 13450 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10865 5269 5200 13451 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10866 5200 5227 13451 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10867 5227 5302 13451 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10868 5302 5269 13451 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10869 5234 5227 13452 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10870 5227 5112 13452 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10871 5112 5097 13452 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10872 5097 5234 13452 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10873 4951 5112 13453 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10874 5112 5115 13453 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10875 5115 4978 13453 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10876 4978 4951 13453 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10877 4859 4789 13454 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10878 4789 4978 13454 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10879 4978 5009 13454 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10880 5009 4859 13454 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10881 4895 4951 13455 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10882 4951 4761 13455 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10883 4761 4726 13455 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10884 4726 4895 13455 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10885 4651 4761 13456 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10886 4761 4789 13456 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10887 4789 4689 13456 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10888 4689 4651 13456 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10889 5574 5471 13457 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10890 5471 5468 13457 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10891 5468 5577 13457 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10892 5577 5574 13457 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10893 5482 5468 13458 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10894 5468 5366 13458 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10895 5366 5388 13458 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10896 5388 5482 13458 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10897 5218 5366 13459 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10898 5366 5370 13459 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10899 5370 5234 13459 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10900 5234 5218 13459 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10901 5563 5482 13460 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10902 5482 5481 13460 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10903 5481 5562 13460 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10904 5562 5563 13460 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10905 5331 5481 13461 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10906 5481 5388 13461 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10907 5388 5262 13461 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10908 5262 5331 13461 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10909 5262 5218 13462 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10910 5218 5072 13462 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10911 5072 5064 13462 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10912 5064 5262 13462 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10913 4866 5072 13463 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10914 5072 5097 13463 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10915 5097 4895 13463 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10916 4895 4866 13463 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10917 5379 5331 13464 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10918 5331 5079 13464 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10919 5079 5087 13464 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10920 5087 5379 13464 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10921 4828 5079 13465 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10922 5079 5064 13465 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10923 5064 4853 13465 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10924 4853 4828 13465 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10925 5094 5128 13466 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10926 5128 5398 13466 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10927 5398 5382 13466 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10928 5382 5094 13466 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10929 5654 5398 13467 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10930 5398 5416 13467 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10931 5416 5631 13467 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10932 5631 5654 13467 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10933 5425 5416 13468 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10934 5416 5183 13468 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10935 5183 5210 13468 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10936 5210 5425 13468 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10937 4983 5183 13469 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10938 5183 5128 13469 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10939 5128 4886 13469 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10940 4886 4983 13469 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10941 5231 5211 13470 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10942 5211 5426 13470 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10943 5426 5433 13470 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10944 5433 5231 13470 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10945 5620 5426 13471 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10946 5426 5415 13471 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10947 5415 5632 13471 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10948 5632 5620 13471 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10949 5414 5415 13472 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10950 5415 5181 13472 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10951 5181 5170 13472 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10952 5170 5414 13472 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10953 4966 5181 13473 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10954 5181 5211 13473 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10955 5211 5026 13473 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10956 5026 4966 13473 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10957 5166 5160 13474 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10958 5160 5409 13474 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10959 5409 5412 13474 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10960 5412 5166 13474 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10961 5642 5409 13475 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10962 5409 5403 13475 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10963 5403 5647 13475 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10964 5647 5642 13475 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10965 5410 5403 13476 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10966 5403 5150 13476 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10967 5150 5162 13476 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10968 5162 5410 13476 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10969 4898 5150 13477 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10970 5150 5160 13477 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10971 5160 4910 13477 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10972 4910 4898 13477 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10973 4853 4866 13478 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10974 4866 4630 13478 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10975 4630 4558 13478 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10976 4558 4853 13478 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10977 4451 4630 13479 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10978 4630 4648 13479 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10979 4648 4539 13479 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10980 4539 4451 13479 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10981 4582 4648 13480 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10982 4648 4726 13480 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10983 4726 4594 13480 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10984 4594 4582 13480 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10985 4817 4828 13481 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10986 4828 4532 13481 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10987 4532 4518 13481 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10988 4518 4817 13481 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10989 4404 4532 13482 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10990 4532 4558 13482 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10991 4558 4420 13482 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10992 4420 4404 13482 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10993 4531 4620 13483 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10994 4620 4886 13483 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10995 4886 4824 13483 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10996 4824 4531 13483 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10997 5032 4983 13484 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10998 4983 4765 13484 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 10999 4765 4848 13484 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11000 4848 5032 13484 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11001 4449 4765 13485 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11002 4765 4620 13485 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11003 4620 4352 13485 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11004 4352 4449 13485 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11005 4871 4821 13486 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11006 4821 5026 13486 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11007 5026 5059 13486 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11008 5059 4871 13486 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11009 4934 4966 13487 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11010 4966 4717 13487 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11011 4717 4662 13487 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11012 4662 4934 13487 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11013 4405 4717 13488 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11014 4717 4821 13488 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11015 4821 4501 13488 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11016 4501 4405 13488 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11017 4652 4643 13489 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11018 4643 4910 13489 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11019 4910 4920 13489 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11020 4920 4652 13489 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11021 4919 4898 13490 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11022 4898 4640 13490 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11023 4640 4672 13490 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11024 4672 4919 13490 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11025 4381 4640 13491 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11026 4640 4643 13491 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11027 4643 4355 13491 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11028 4355 4381 13491 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11029 4347 4432 13492 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11030 4432 4487 13492 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11031 4487 4411 13492 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11032 4411 4347 13492 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11033 4420 4451 13493 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11034 4451 4432 13493 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11035 4432 4408 13493 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11036 4408 4420 13493 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11037 4305 4404 13494 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11038 4404 4408 13494 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11039 4408 4316 13494 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11040 4316 4305 13494 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11041 4125 4164 13495 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11042 4164 4352 13495 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11043 4352 4311 13495 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11044 4311 4125 13495 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11045 4527 4449 13496 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11046 4449 4230 13496 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11047 4230 4258 13496 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11048 4258 4527 13496 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11049 4028 4230 13497 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11050 4230 4164 13497 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11051 4164 4002 13497 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11052 4002 4028 13497 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11053 4297 4267 13498 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11054 4267 4501 13498 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11055 4501 4570 13498 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11056 4570 4297 13498 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11057 4356 4405 13499 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11058 4405 4177 13499 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11059 4177 4132 13499 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11060 4132 4356 13499 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11061 3996 4177 13500 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11062 4177 4267 13500 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11063 4267 4059 13500 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11064 4059 3996 13500 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11065 4129 4155 13501 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11066 4155 4355 13501 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11067 4355 4349 13501 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11068 4349 4129 13501 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11069 4429 4381 13502 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11070 4381 4202 13502 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11071 4202 4283 13502 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11072 4283 4429 13502 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11073 4004 4202 13503 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11074 4202 4155 13503 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11075 4155 3960 13503 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11076 3960 4004 13503 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11077 3989 3997 13504 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11078 3997 4195 13504 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11079 4195 4190 13504 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11080 4190 3989 13504 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11081 4304 4195 13505 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11082 4195 4098 13505 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11083 4098 4229 13505 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11084 4229 4304 13505 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11085 4024 4098 13506 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11086 4098 3997 13506 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11087 3997 3908 13506 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11088 3908 4024 13506 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11089 4163 4024 13507 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11090 4024 3974 13507 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11091 3974 4126 13507 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11092 4126 4163 13507 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11093 3959 3974 13508 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11094 3974 3846 13508 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11095 3846 3801 13508 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11096 3801 3959 13508 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11097 3705 3846 13509 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11098 3846 3908 13509 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11099 3908 3784 13509 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11100 3784 3705 13509 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11101 3822 3856 13510 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11102 3856 4002 13510 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11103 4002 3965 13510 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11104 3965 3822 13510 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11105 4058 4028 13511 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11106 4028 3891 13511 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11107 3891 3913 13511 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11108 3913 4058 13511 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11109 3779 3891 13512 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11110 3891 3856 13512 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11111 3856 3712 13512 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11112 3712 3779 13512 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11113 3929 3893 13513 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11114 3893 4059 13513 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11115 4059 4093 13513 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11116 4093 3929 13513 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11117 3945 3996 13514 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11118 3996 3817 13514 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11119 3817 3753 13514 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11120 3753 3945 13514 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11121 3671 3817 13515 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11122 3817 3893 13515 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11123 3893 3734 13515 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11124 3734 3671 13515 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11125 3735 3732 13516 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11126 3732 3960 13516 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11127 3960 3939 13516 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11128 3939 3735 13516 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11129 3548 3741 13517 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11130 3741 3732 13517 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11131 3732 3582 13517 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11132 3582 3548 13517 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11133 4390 4391 13518 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11134 4391 4153 13518 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11135 4153 4174 13518 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11136 4174 4390 13518 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11137 3909 4153 13519 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11138 4153 4148 13519 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11139 4148 3894 13519 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11140 3894 3909 13519 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11141 4412 4395 13520 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11142 4395 4217 13520 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11143 4217 4274 13520 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11144 4274 4412 13520 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11145 4007 4217 13521 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11146 4217 4174 13521 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11147 4174 3946 13521 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11148 3946 4007 13521 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11149 3580 3592 13522 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11150 3592 3894 13522 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11151 3894 3884 13522 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11152 3884 3580 13522 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11153 3946 3909 13523 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11154 3909 3622 13523 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11155 3622 3664 13523 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11156 3664 3946 13523 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11157 3410 3622 13524 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11158 3622 3592 13524 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11159 3592 3425 13524 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11160 3425 3410 13524 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11161 4069 4007 13525 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11162 4007 3733 13525 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11163 3733 3849 13525 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11164 3849 4069 13525 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11165 3528 3733 13526 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11166 3733 3664 13526 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11167 3664 3437 13526 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11168 3437 3528 13526 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11169 3437 3410 13527 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11170 3410 3233 13527 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11171 3233 3212 13527 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11172 3212 3437 13527 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11173 3072 3233 13528 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11174 3233 3367 13528 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11175 3367 3252 13528 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11176 3252 3072 13528 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11177 3423 3367 13529 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11178 3367 3425 13529 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11179 3425 3436 13529 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11180 3436 3423 13529 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11181 3138 3315 13530 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11182 3315 3212 13530 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11183 3212 3023 13530 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11184 3023 3138 13530 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11185 3598 3528 13531 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11186 3528 3315 13531 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11187 3315 3405 13531 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11188 3405 3598 13531 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11189 4463 4442 13532 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11190 4442 4310 13532 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11191 4310 4337 13532 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11192 4337 4463 13532 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11193 4133 4310 13533 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11194 4310 4274 13533 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11195 4274 4069 13533 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11196 4069 4133 13533 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11197 4180 4133 13534 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11198 4133 3917 13534 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11199 3917 3966 13534 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11200 3966 4180 13534 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11201 3680 3917 13535 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11202 3917 3849 13535 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11203 3849 3598 13535 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11204 3598 3680 13535 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11205 3700 3680 13536 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11206 3680 3474 13536 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11207 3474 3486 13536 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11208 3486 3700 13536 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11209 3295 3474 13537 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11210 3474 3405 13537 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11211 3405 3221 13537 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11212 3221 3295 13537 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11213 2993 3096 13538 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11214 3096 3221 13538 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11215 3221 3138 13538 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11216 3138 2993 13538 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11217 3344 3295 13539 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11218 3295 3177 13539 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11219 3177 3228 13539 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11220 3228 3344 13539 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11221 3056 3177 13540 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11222 3177 3096 13540 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11223 3096 2955 13540 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11224 2955 3056 13540 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11225 3847 3779 13541 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11226 3779 3740 13541 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11227 3740 3844 13541 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11228 3844 3847 13541 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11229 3686 3740 13542 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11230 3740 3615 13542 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11231 3615 3542 13542 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11232 3542 3686 13542 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11233 3561 3615 13543 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11234 3615 3712 13543 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11235 3712 3670 13543 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11236 3670 3561 13543 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11237 3763 3686 13544 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11238 3686 3605 13544 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11239 3605 3681 13544 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11240 3681 3763 13544 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11241 3579 3605 13545 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11242 3605 3469 13545 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11243 3469 3462 13545 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11244 3462 3579 13545 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11245 3377 3469 13546 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11246 3469 3542 13546 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11247 3542 3445 13546 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11248 3445 3377 13546 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11249 3647 3579 13547 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11250 3579 3593 13547 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11251 3593 3648 13547 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11252 3648 3647 13547 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11253 3651 3593 13548 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11254 3593 3522 13548 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11255 3522 3583 13548 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11256 3583 3651 13548 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11257 3451 3522 13549 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11258 3522 3462 13549 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11259 3462 3379 13549 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11260 3379 3451 13549 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11261 3687 3651 13550 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11262 3651 3734 13550 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11263 3734 3786 13550 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11264 3786 3687 13550 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11265 3626 3671 13551 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11266 3671 3583 13551 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11267 3583 3541 13551 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11268 3541 3626 13551 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11269 3590 3608 13552 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11270 3608 3784 13552 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11271 3784 3762 13552 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11272 3762 3590 13552 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11273 3662 3705 13553 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11274 3705 3608 13553 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11275 3608 3567 13553 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11276 3567 3662 13553 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11277 3264 3268 13554 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11278 3268 3388 13554 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11279 3388 3382 13554 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11280 3382 3264 13554 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11281 3419 3388 13555 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11282 3388 3299 13555 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11283 3299 3337 13555 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11284 3337 3419 13555 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11285 3197 3299 13556 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11286 3299 3268 13556 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11287 3268 3173 13556 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11288 3173 3197 13556 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11289 3064 3098 13557 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11290 3098 3248 13557 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11291 3248 3197 13557 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11292 3197 3064 13557 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11293 3336 3248 13558 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11294 3248 3323 13558 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11295 3323 3416 13558 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11296 3416 3336 13558 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11297 3371 3323 13559 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11298 3323 3161 13559 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11299 3161 3207 13559 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11300 3207 3371 13559 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11301 3143 3264 13560 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11302 3264 3228 13560 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11303 3228 3111 13560 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11304 3111 3143 13560 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11305 3486 3344 13561 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11306 3344 3382 13561 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11307 3382 3509 13561 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11308 3509 3486 13561 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11309 5640 5410 13562 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11310 5410 5417 13562 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11311 5417 5630 13562 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11312 5630 5640 13562 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11313 5421 5417 13563 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11314 5417 5186 13563 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11315 5186 5199 13563 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11316 5199 5421 13563 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11317 4974 5186 13564 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11318 5186 5162 13564 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11319 5162 4919 13564 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11320 4919 4974 13564 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11321 4996 4974 13565 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11322 4974 4735 13565 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11323 4735 4754 13565 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11324 4754 4996 13565 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11325 4475 4735 13566 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11326 4735 4672 13566 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11327 4672 4429 13566 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11328 4429 4475 13566 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11329 4491 4475 13567 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11330 4475 4283 13567 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11331 4283 4287 13567 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11332 4287 4491 13567 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11333 5195 5201 13568 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11334 5201 5422 13568 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11335 5422 5419 13568 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11336 5419 5195 13568 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11337 5624 5422 13569 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11338 5422 5428 13569 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11339 5428 5618 13569 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11340 5618 5624 13569 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11341 5434 5428 13570 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11342 5428 5219 13570 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11343 5219 5232 13570 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11344 5232 5434 13570 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11345 5031 5219 13571 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11346 5219 5201 13571 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11347 5201 5003 13571 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11348 5003 5031 13571 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11349 5612 5434 13572 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11350 5434 5437 13572 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11351 5437 5609 13572 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11352 5609 5612 13572 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11353 5447 5437 13573 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11354 5437 5241 13573 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11355 5241 5268 13573 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11356 5268 5447 13573 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11357 5085 5241 13574 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11358 5241 5232 13574 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11359 5232 5060 13574 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11360 5060 5085 13574 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11361 5598 5447 13575 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11362 5447 5455 13575 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11363 5455 5590 13575 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11364 5590 5598 13575 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11365 5404 5455 13576 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11366 5455 5300 13576 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11367 5300 5294 13576 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11368 5294 5404 13576 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11369 5189 5300 13577 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11370 5300 5268 13577 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11371 5268 5136 13577 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11372 5136 5189 13577 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11373 4746 4763 13578 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11374 4763 5003 13578 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11375 5003 4987 13578 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11376 4987 4746 13578 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11377 5060 5031 13579 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11378 5031 4813 13579 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11379 4813 4872 13579 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11380 4872 5060 13579 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11381 4550 4813 13580 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11382 4813 4763 13580 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11383 4763 4467 13580 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11384 4467 4550 13580 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11385 5136 5085 13581 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11386 5085 4935 13581 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11387 4935 5017 13581 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11388 5017 5136 13581 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11389 4771 4935 13582 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11390 4935 4872 13582 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11391 4872 4664 13582 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11392 4664 4771 13582 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11393 5294 5189 13583 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11394 5189 5135 13583 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11395 5135 5213 13583 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11396 5213 5294 13583 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11397 5080 5135 13584 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11398 5135 5017 13584 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11399 5017 4922 13584 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11400 4922 5080 13584 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11401 4287 4288 13585 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11402 4288 4467 13585 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11403 4467 4484 13585 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11404 4484 4287 13585 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11405 4664 4550 13586 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11406 4550 4342 13586 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11407 4342 4444 13586 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11408 4444 4664 13586 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11409 4243 4342 13587 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11410 4342 4288 13587 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11411 4288 4139 13587 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11412 4139 4243 13587 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11413 4922 4771 13588 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11414 4771 4628 13588 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11415 4628 4844 13588 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11416 4844 4922 13588 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11417 4551 4628 13589 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11418 4628 4444 13589 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11419 4444 4353 13589 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11420 4353 4551 13589 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11421 5213 5080 13590 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11422 5080 5042 13590 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11423 5042 5194 13590 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11424 5194 5213 13590 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11425 5040 5042 13591 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11426 5042 4844 13591 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11427 4844 4811 13591 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11428 4811 5040 13591 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11429 4353 4243 13592 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11430 4243 4172 13592 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11431 4172 4326 13592 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11432 4326 4353 13592 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11433 4150 4172 13593 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11434 4172 4039 13593 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11435 4039 4003 13593 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11436 4003 4150 13593 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11437 4811 4551 13594 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11438 4551 4563 13594 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11439 4563 4860 13594 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11440 4860 4811 13594 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11441 4593 4563 13595 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11442 4563 4326 13595 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11443 4326 4322 13595 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11444 4322 4593 13595 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11445 5194 5040 13596 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11446 5040 5071 13596 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11447 5071 5229 13596 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11448 5229 5194 13596 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11449 5057 5071 13597 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11450 5071 4860 13597 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11451 4860 4845 13597 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11452 4845 5057 13597 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11453 4322 4150 13598 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11454 4150 4171 13598 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11455 4171 4345 13598 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11456 4345 4322 13598 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11457 4275 4171 13599 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11458 4171 4015 13599 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11459 4015 4100 13599 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11460 4100 4275 13599 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11461 4845 4593 13600 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11462 4593 4637 13600 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11463 4637 4873 13600 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11464 4873 4845 13600 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11465 4718 4637 13601 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11466 4637 4345 13601 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11467 4345 4430 13601 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11468 4430 4718 13601 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11469 5090 5057 13602 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11470 5057 4873 13602 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11471 4873 4900 13602 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11472 4900 5090 13602 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11473 4430 4275 13603 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11474 4275 4414 13603 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11475 4414 4634 13603 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11476 4634 4430 13603 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11477 4673 4414 13604 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11478 4414 4279 13604 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11479 4279 4455 13604 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11480 4455 4673 13604 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11481 4900 4718 13605 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11482 4718 4836 13605 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11483 4836 4968 13605 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11484 4968 4900 13605 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11485 4954 4836 13606 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11486 4836 4634 13606 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11487 4634 4837 13606 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11488 4837 4954 13606 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11489 5169 5090 13607 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11490 5090 4968 13607 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11491 4968 5065 13607 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11492 5065 5169 13607 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11493 4837 4673 13608 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11494 4673 4906 13608 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11495 4906 5005 13608 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11496 5005 4837 13608 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11497 5142 4906 13609 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11498 4906 4797 13609 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11499 4797 5089 13609 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11500 5089 5142 13609 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11501 5065 4954 13610 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11502 4954 5096 13610 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11503 5096 5171 13610 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11504 5171 5065 13610 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11505 5243 5096 13611 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11506 5096 5005 13611 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11507 5005 5184 13611 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11508 5184 5243 13611 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11509 5229 5169 13612 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11510 5169 5226 13612 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11511 5226 5306 13612 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11512 5306 5229 13612 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11513 5330 5226 13613 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11514 5226 5171 13613 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11515 5171 5296 13613 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11516 5296 5330 13613 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11517 5184 5142 13614 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11518 5142 5378 13614 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11519 5378 5405 13614 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11520 5405 5184 13614 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11521 5627 5378 13615 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11522 5378 5362 13615 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11523 5362 5634 13615 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11524 5634 5627 13615 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11525 5296 5243 13616 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11526 5243 5432 13616 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11527 5432 5452 13616 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11528 5452 5296 13616 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11529 5599 5432 13617 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11530 5432 5405 13617 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11531 5405 5613 13617 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11532 5613 5599 13617 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11533 5306 5330 13618 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11534 5330 5461 13618 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11535 5461 5411 13618 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11536 5411 5306 13618 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11537 5584 5461 13619 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11538 5461 5452 13619 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11539 5452 5593 13619 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11540 5593 5584 13619 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11541 3660 3628 13620 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11542 3628 3907 13620 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11543 3907 3932 13620 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11544 3932 3660 13620 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11545 4175 3907 13621 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11546 3907 3878 13621 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11547 3878 4157 13621 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11548 4157 4175 13621 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11549 3864 3878 13622 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11550 3878 3591 13622 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11551 3591 3576 13622 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11552 3576 3864 13622 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11553 3415 3591 13623 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11554 3591 3628 13623 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11555 3628 3418 13623 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11556 3418 3415 13623 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11557 3339 3289 13624 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11558 3289 3418 13624 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11559 3418 3485 13624 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11560 3485 3339 13624 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11561 3438 3415 13625 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11562 3415 3365 13625 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11563 3365 3424 13625 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11564 3424 3438 13625 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11565 3252 3365 13626 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11566 3365 3230 13626 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11567 3230 3089 13626 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11568 3089 3252 13626 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11569 3110 3230 13627 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11570 3230 3289 13627 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11571 3289 3176 13627 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11572 3176 3110 13627 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11573 3183 3128 13628 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11574 3128 3176 13628 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11575 3176 3240 13628 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11576 3240 3183 13628 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11577 2971 3110 13629 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11578 3110 3087 13629 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11579 3087 2915 13629 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11580 2915 2971 13629 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11581 3073 3087 13630 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11582 3087 3128 13630 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11583 3128 3101 13630 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11584 3101 3073 13630 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11585 3132 3079 13631 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11586 3079 3108 13631 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11587 3108 3160 13631 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11588 3160 3132 13631 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11589 3163 3108 13632 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11590 3108 3101 13632 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11591 3101 3158 13632 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11592 3158 3163 13632 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11593 2909 3073 13633 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11594 3073 3067 13633 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11595 3067 2981 13633 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11596 2981 2909 13633 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11597 3053 3067 13634 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11598 3067 3079 13634 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11599 3079 3063 13634 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11600 3063 3053 13634 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11601 3488 3479 13635 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11602 3479 3346 13635 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11603 3346 3357 13635 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11604 3357 3488 13635 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11605 3238 3346 13636 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11606 3346 3345 13636 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11607 3345 3231 13636 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11608 3231 3238 13636 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11609 3347 3345 13637 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11610 3345 3478 13637 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11611 3478 3476 13637 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11612 3476 3347 13637 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11613 3617 3478 13638 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11614 3478 3479 13638 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11615 3479 3610 13638 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11616 3610 3617 13638 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11617 3504 3631 13639 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11618 3631 3618 13639 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11619 3618 3488 13639 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11620 3488 3504 13639 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11621 3610 3618 13640 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11622 3618 3778 13640 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11623 3778 3797 13640 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11624 3797 3610 13640 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11625 3951 3778 13641 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11626 3778 3771 13641 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11627 3771 3944 13641 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11628 3944 3951 13641 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11629 4081 4088 13642 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11630 4088 3962 13642 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11631 3962 3951 13642 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11632 3951 4081 13642 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11633 3797 3962 13643 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11634 3962 3968 13643 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11635 3968 3807 13643 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11636 3807 3797 13643 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11637 3978 3968 13644 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11638 3968 4101 13644 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11639 4101 4106 13644 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11640 4106 3978 13644 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11641 4241 4101 13645 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11642 4101 4088 13645 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11643 4088 4235 13645 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11644 4235 4241 13645 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11645 4334 4343 13646 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11646 4343 4235 13646 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11647 4235 4226 13646 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11648 4226 4334 13646 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11649 4245 4241 13647 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11650 4241 4360 13647 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11651 4360 4368 13647 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11652 4368 4245 13647 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11653 4502 4360 13648 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11654 4360 4343 13648 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11655 4343 4480 13648 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11656 4480 4502 13648 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11657 4519 4502 13649 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11658 4502 4692 13649 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11659 4692 4701 13649 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11660 4701 4519 13649 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11661 4644 4671 13650 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11662 4671 4480 13650 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11663 4480 4456 13650 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11664 4456 4644 13650 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11665 4564 4573 13651 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11666 4573 4815 13651 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11667 4815 4801 13651 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11668 4801 4564 13651 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11669 4788 4818 13652 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11670 4818 4583 13652 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11671 4583 4578 13652 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11672 4578 4788 13652 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11673 4388 4583 13653 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11674 4583 4573 13653 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11675 4573 4373 13653 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11676 4373 4388 13653 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11677 4730 4751 13654 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11678 4751 4553 13654 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11679 4553 4542 13654 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11680 4542 4730 13654 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11681 4387 4553 13655 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11682 4553 4578 13655 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11683 4578 4392 13655 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11684 4392 4387 13655 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11685 4231 4239 13656 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11686 4239 4373 13656 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11687 4373 4367 13656 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11688 4367 4231 13656 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11689 4392 4388 13657 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11690 4388 4248 13657 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11691 4248 4254 13657 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11692 4254 4392 13657 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11693 4082 4248 13658 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11694 4248 4239 13658 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11695 4239 4067 13658 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11696 4067 4082 13658 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11697 4382 4387 13659 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11698 4387 4256 13659 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11699 4256 4253 13659 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11700 4253 4382 13659 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11701 4110 4256 13660 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11702 4256 4254 13660 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11703 4254 4102 13660 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11704 4102 4110 13660 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11705 3869 3888 13661 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11706 3888 4067 13661 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11707 4067 4052 13661 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11708 4052 3869 13661 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11709 4102 4082 13662 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11710 4082 3925 13662 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11711 3925 3956 13662 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11712 3956 4102 13662 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11713 3697 3925 13663 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11714 3925 3888 13663 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11715 3888 3653 13663 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11716 3653 3697 13663 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11717 4117 4110 13664 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11718 4110 3967 13664 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11719 3967 3982 13664 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11720 3982 4117 13664 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11721 3774 3967 13665 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11722 3967 3956 13665 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11723 3956 3731 13665 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11724 3731 3774 13665 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11725 3393 3412 13666 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11726 3412 3653 13666 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11727 3653 3630 13666 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11728 3630 3393 13666 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11729 3731 3697 13667 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11730 3697 3448 13667 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11731 3448 3510 13667 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11732 3510 3731 13667 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11733 3246 3448 13668 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11734 3448 3412 13668 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11735 3412 3203 13668 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11736 3203 3246 13668 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11737 3818 3774 13669 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11738 3774 3578 13669 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11739 3578 3609 13669 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11740 3609 3818 13669 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11741 3417 3578 13670 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11742 3578 3510 13670 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11743 3510 3320 13670 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11744 3320 3417 13670 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11745 2954 3038 13671 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11746 3038 3203 13671 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11747 3203 3151 13671 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11748 3151 2954 13671 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11749 3320 3246 13672 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11750 3246 3105 13672 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11751 3105 3192 13672 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11752 3192 3320 13672 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11753 2936 3105 13673 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11754 3105 3038 13673 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11755 3038 2856 13673 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11756 2856 2936 13673 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11757 3467 3417 13674 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11758 3417 3291 13674 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11759 3291 3338 13674 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11760 3338 3467 13674 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11761 3170 3291 13675 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11762 3291 3192 13675 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11763 3192 3062 13675 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11764 3062 3170 13675 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11765 2702 2732 13676 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11766 2732 2856 13676 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11767 2856 2819 13676 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11768 2819 2702 13676 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11769 3062 2936 13677 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11770 2936 2806 13677 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11771 2806 2894 13677 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11772 2894 3062 13677 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11773 2739 2806 13678 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11774 2806 2732 13678 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11775 2732 2659 13678 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11776 2659 2739 13678 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11777 3216 3170 13679 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11778 3170 3039 13679 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11779 3039 3102 13679 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11780 3102 3216 13679 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11781 2956 3039 13680 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11782 3039 2894 13680 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11783 2894 2833 13680 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11784 2833 2956 13680 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11785 2571 2622 13681 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11786 2622 2659 13681 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11787 2659 2620 13681 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11788 2620 2571 13681 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11789 2833 2739 13682 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11790 2739 2720 13682 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11791 2720 2822 13682 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11792 2822 2833 13682 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11793 2690 2720 13683 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11794 2720 2622 13683 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11795 2622 2578 13683 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11796 2578 2690 13683 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11797 3032 2956 13684 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11798 2956 2934 13684 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11799 2934 3022 13684 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11800 3022 3032 13684 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11801 2919 2934 13685 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11802 2934 2822 13685 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11803 2822 2803 13685 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11804 2803 2919 13685 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11805 2486 2542 13686 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11806 2542 2578 13686 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11807 2578 2528 13686 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11808 2528 2486 13686 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11809 2663 2690 13687 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11810 2690 2542 13687 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11811 2542 2522 13687 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11812 2522 2663 13687 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11813 2915 2909 13688 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11814 2909 2748 13688 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11815 2748 2719 13688 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11816 2719 2915 13688 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11817 2582 2748 13689 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11818 2748 2803 13689 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11819 2803 2663 13689 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11820 2663 2582 13689 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11821 3024 2919 13690 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11822 2919 2981 13690 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11823 2981 3041 13690 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11824 3041 3024 13690 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11825 2480 2582 13691 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11826 2582 2440 13691 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11827 2440 2365 13691 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11828 2365 2480 13691 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11829 2371 2440 13692 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11830 2440 2522 13692 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11831 2522 2439 13692 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11832 2439 2371 13692 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11833 3089 2971 13693 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11834 2971 2786 13693 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11835 2786 2883 13693 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11836 2883 3089 13693 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11837 2662 2786 13694 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11838 2786 2719 13694 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11839 2719 2583 13694 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11840 2583 2662 13694 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11841 2853 2993 13695 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11842 2993 2857 13695 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11843 2857 2767 13695 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11844 2767 2853 13695 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11845 2755 2857 13696 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11846 2857 3023 13696 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11847 3023 2872 13696 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11848 2872 2755 13696 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11849 2955 2853 13697 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11850 2853 2773 13697 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11851 2773 2837 13697 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11852 2837 2955 13697 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11853 2614 2689 13698 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11854 2689 2767 13698 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11855 2767 2676 13698 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11856 2676 2614 13698 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11857 2883 2756 13699 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11858 2756 2872 13699 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11859 2872 3072 13699 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11860 3072 2883 13699 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11861 2676 2755 13700 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11862 2755 2646 13700 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11863 2646 2573 13700 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11864 2573 2676 13700 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11865 2549 2646 13701 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11866 2646 2756 13701 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11867 2756 2662 13701 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11868 2662 2549 13701 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11869 2451 2529 13702 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11870 2529 2573 13702 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11871 2573 2470 13702 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11872 2470 2451 13702 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11873 2470 2549 13703 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11874 2549 2454 13703 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11875 2454 2384 13703 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11876 2384 2470 13703 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11877 2367 2454 13704 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11878 2454 2583 13704 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11879 2583 2480 13704 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11880 2480 2367 13704 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11881 2324 2388 13705 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11882 2388 2384 13705 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11883 2384 2301 13705 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11884 2301 2324 13705 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11885 2301 2367 13706 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11886 2367 2285 13706 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11887 2285 2259 13706 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11888 2259 2301 13706 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11889 2263 2285 13707 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11890 2285 2365 13707 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11891 2365 2303 13707 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11892 2303 2263 13707 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11893 2415 2324 13708 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11894 2324 2282 13708 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11895 2282 2383 13708 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11896 2383 2415 13708 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11897 2284 2282 13709 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11898 2282 2259 13709 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11899 2259 2258 13709 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11900 2258 2284 13709 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11901 2935 2927 13710 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11902 2927 3151 13710 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11903 3151 3165 13710 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11904 3165 2935 13710 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11905 2819 2954 13711 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11906 2954 2927 13711 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11907 2927 2805 13711 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11908 2805 2819 13711 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11909 2620 2702 13712 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11910 2702 2704 13712 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11911 2704 2625 13712 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11912 2625 2620 13712 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11913 2687 2704 13713 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11914 2704 2805 13713 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11915 2805 2784 13713 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11916 2784 2687 13713 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11917 2528 2571 13714 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11918 2571 2576 13714 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11919 2576 2532 13714 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11920 2532 2528 13714 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11921 2552 2576 13715 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11922 2576 2625 13715 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11923 2625 2615 13715 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11924 2615 2552 13715 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11925 2439 2486 13716 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11926 2486 2495 13716 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11927 2495 2452 13716 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11928 2452 2439 13716 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11929 2471 2495 13717 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11930 2495 2532 13717 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11931 2532 2499 13717 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11932 2499 2471 13717 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11933 2303 2371 13718 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11934 2371 2396 13718 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11935 2396 2346 13718 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11936 2346 2303 13718 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11937 2392 2396 13719 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11938 2396 2452 13719 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11939 2452 2437 13719 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11940 2437 2392 13719 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11941 2258 2263 13720 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11942 2263 2346 13720 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11943 2346 2337 13720 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11944 2337 2258 13720 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11945 2348 2284 13721 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11946 2284 2337 13721 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11947 2337 2361 13721 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11948 2361 2348 13721 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11949 2317 2372 13722 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11950 2372 2361 13722 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11951 2361 2351 13722 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11952 2351 2317 13722 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11953 2383 2348 13723 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11954 2348 2414 13723 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11955 2414 2453 13723 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11956 2453 2383 13723 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11957 2434 2414 13724 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11958 2414 2372 13724 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11959 2372 2362 13724 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11960 2362 2434 13724 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11961 2448 2398 13725 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11962 2398 2413 13725 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11963 2413 2472 13725 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11964 2472 2448 13725 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11965 2273 2413 13726 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11966 2413 2349 13726 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11967 2349 2260 13726 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11968 2260 2273 13726 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11969 2289 2349 13727 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11970 2349 2340 13727 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11971 2340 2298 13727 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11972 2298 2289 13727 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11973 2338 2340 13728 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11974 2340 2398 13728 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11975 2398 2390 13728 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11976 2390 2338 13728 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11977 2509 2547 13729 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11978 2547 2472 13729 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11979 2472 2424 13729 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11980 2424 2509 13729 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11981 2469 2448 13730 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11982 2448 2547 13730 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11983 2547 2566 13730 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11984 2566 2469 13730 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11985 2770 2886 13731 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11986 2886 2840 13731 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11987 2840 2737 13731 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11988 2737 2770 13731 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11989 2780 2840 13732 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11990 2840 2953 13732 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11991 2953 2843 13732 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11992 2843 2780 13732 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11993 3086 2953 13733 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11994 2953 3075 13733 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11995 3075 3208 13733 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11996 3208 3086 13733 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11997 3157 3075 13734 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11998 3075 2886 13734 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 11999 2886 2961 13734 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12000 2961 3157 13734 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12001 3296 3157 13735 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12002 3157 3162 13735 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12003 3162 3330 13735 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12004 3330 3296 13735 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12005 2575 2512 13736 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12006 2512 2489 13736 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12007 2489 2527 13736 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12008 2527 2575 13736 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12009 2494 2489 13737 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12010 2489 2453 13737 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12011 2453 2475 13737 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12012 2475 2494 13737 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12013 2604 2594 13738 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12014 2594 2537 13738 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12015 2537 2531 13738 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12016 2531 2604 13738 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12017 2488 2537 13739 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12018 2537 2527 13739 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12019 2527 2494 13739 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12020 2494 2488 13739 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12021 2446 2515 13740 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12022 2515 2531 13740 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12023 2531 2473 13740 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12024 2473 2446 13740 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12025 2591 2603 13741 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12026 2603 2515 13741 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12027 2515 2497 13741 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12028 2497 2591 13741 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12029 2539 2567 13742 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12030 2567 2484 13742 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12031 2484 2460 13742 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12032 2460 2539 13742 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12033 2432 2484 13743 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12034 2484 2497 13743 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12035 2497 2433 13743 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12036 2433 2432 13743 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12037 2373 2421 13744 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12038 2421 2460 13744 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12039 2460 2411 13744 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12040 2411 2373 13744 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12041 2409 2477 13745 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12042 2477 2421 13745 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12043 2421 2376 13745 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12044 2376 2409 13745 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12045 2292 2310 13746 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12046 2310 2376 13746 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12047 2376 2328 13746 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12048 2328 2292 13746 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12049 2315 2307 13747 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12050 2307 2310 13747 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12051 2310 2308 13747 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12052 2308 2315 13747 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12053 2298 2338 13748 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12054 2338 2308 13748 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12055 2308 2277 13748 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12056 2277 2298 13748 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12057 2503 2404 13749 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12058 2404 2390 13749 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12059 2390 2469 13749 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12060 2469 2503 13749 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12061 2693 2599 13750 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12062 2599 2566 13750 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12063 2566 2650 13750 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12064 2650 2693 13750 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12065 2667 2735 13751 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12066 2735 2650 13751 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12067 2650 2606 13751 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12068 2606 2667 13751 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12069 2920 2812 13752 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12070 2812 2735 13752 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12071 2735 2824 13752 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12072 2824 2920 13752 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12073 2843 2928 13753 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12074 2928 2824 13753 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12075 2824 2758 13753 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12076 2758 2843 13753 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12077 3186 3049 13754 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12078 3049 2928 13754 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12079 2928 3086 13754 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12080 3086 3186 13754 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12081 3463 3333 13755 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12082 3333 3208 13755 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12083 3208 3296 13755 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12084 3296 3463 13755 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12085 2417 2407 13756 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12086 2407 2636 13756 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12087 2636 2649 13756 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12088 2649 2417 13756 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12089 2381 2483 13757 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12090 2483 2407 13757 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12091 2407 2293 13757 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12092 2293 2381 13757 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12093 2239 2305 13758 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12094 2305 2264 13758 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12095 2264 2233 13758 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12096 2233 2239 13758 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12097 2236 2264 13759 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12098 2264 2293 13759 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12099 2293 2240 13759 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12100 2240 2236 13759 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12101 2208 2212 13760 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12102 2212 2233 13760 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12103 2233 2221 13760 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12104 2221 2208 13760 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12105 2158 2177 13761 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12106 2177 2212 13761 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12107 2212 2182 13761 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12108 2182 2158 13761 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12109 2192 2168 13762 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12110 2168 2189 13762 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12111 2189 2187 13762 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12112 2187 2192 13762 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12113 2195 2189 13763 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12114 2189 2182 13763 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12115 2182 2193 13763 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12116 2193 2195 13763 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12117 2148 2180 13764 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12118 2180 2187 13764 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12119 2187 2173 13764 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12120 2173 2148 13764 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12121 2323 2225 13765 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12122 2225 2180 13765 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12123 2180 2248 13765 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12124 2248 2323 13765 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12125 2326 2399 13766 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12126 2399 2248 13766 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12127 2248 2203 13766 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12128 2203 2326 13766 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12129 2524 2465 13767 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12130 2465 2399 13767 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12131 2399 2450 13767 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12132 2450 2524 13767 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12133 2499 2520 13768 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12134 2520 2443 13768 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12135 2443 2436 13768 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12136 2436 2499 13768 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12137 2402 2443 13769 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12138 2443 2450 13769 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12139 2450 2401 13769 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12140 2401 2402 13769 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12141 2437 2471 13770 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12142 2471 2425 13770 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12143 2425 2405 13770 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12144 2405 2437 13770 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12145 2395 2425 13771 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12146 2425 2436 13771 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12147 2436 2402 13771 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12148 2402 2395 13771 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12149 2319 2363 13772 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12150 2363 2405 13772 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12151 2405 2370 13772 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12152 2370 2319 13772 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12153 2351 2392 13773 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12154 2392 2363 13773 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12155 2363 2314 13773 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12156 2314 2351 13773 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12157 2227 2268 13774 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12158 2268 2314 13774 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12159 2314 2271 13774 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12160 2271 2227 13774 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12161 2281 2317 13775 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12162 2317 2268 13775 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12163 2268 2231 13775 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12164 2231 2281 13775 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12165 3521 3464 13776 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12166 3464 3582 13776 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12167 3582 3603 13776 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12168 3603 3521 13776 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12169 3258 3378 13777 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12170 3378 3464 13777 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12171 3464 3391 13777 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12172 3391 3258 13777 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12173 3450 3371 13778 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12174 3371 3391 13778 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12175 3391 3460 13778 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12176 3460 3450 13778 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12177 4990 5048 13779 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12178 5048 4947 13779 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12179 4947 4893 13779 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12180 4893 4990 13779 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12181 4925 4947 13780 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12182 4947 5075 13780 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12183 5075 5044 13780 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12184 5044 4925 13780 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12185 5130 5075 13781 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12186 5075 5048 13781 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12187 5048 5106 13781 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12188 5106 5130 13781 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12189 5646 5404 13782 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12190 5404 5411 13782 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12191 5411 5638 13782 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12192 5638 5646 13782 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12193 4656 4187 13783 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12194 4187 4149 13783 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12195 4149 4632 13783 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12196 4632 4656 13783 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12197 4434 4149 13784 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12198 4149 3972 13784 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12199 3972 4206 13784 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12200 4206 4434 13784 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12201 3981 3972 13785 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12202 3972 3754 13785 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12203 3754 3723 13785 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12204 3723 3981 13785 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12205 3562 3754 13786 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12206 3754 3627 13786 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12207 3627 3455 13786 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12208 3455 3562 13786 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12209 3363 3627 13787 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12210 3627 3544 13787 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12211 3544 3281 13787 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12212 3281 3363 13787 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12213 3244 3544 13788 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12214 3544 3537 13788 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12215 3537 3262 13788 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12216 3262 3244 13788 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12217 3282 3537 13789 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12218 3537 3573 13789 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12219 3573 3314 13789 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12220 3314 3282 13789 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12221 3398 3573 13790 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12222 3573 3693 13790 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12223 3693 3520 13790 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12224 3520 3398 13790 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12225 3639 3693 13791 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12226 3693 3872 13791 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12227 3872 3782 13791 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12228 3782 3639 13791 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12229 3940 3872 13792 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12230 3872 4016 13792 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12231 4016 4072 13792 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12232 4072 3940 13792 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12233 4204 4016 13793 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12234 4016 4122 13793 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12235 4122 4312 13793 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12236 4312 4204 13793 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12237 4417 4122 13794 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12238 4122 4187 13794 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12239 4187 4567 13794 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12240 4567 4417 13794 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12241 4512 4495 13795 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12242 4495 4157 13795 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12243 4157 4152 13795 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12244 4152 4512 13795 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12245 4189 4175 13796 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12246 4175 4486 13796 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12247 4486 4471 13796 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12248 4471 4189 13796 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12249 3123 3132 13797 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12250 3132 3231 13797 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12251 3231 3224 13797 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12252 3224 3123 13797 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12253 3261 3238 13798 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12254 3238 3160 13798 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12255 3160 3196 13798 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12256 3196 3261 13798 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12257 3984 4207 13799 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12258 4207 4206 13799 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12259 4206 3981 13799 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12260 3981 3984 13799 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12261 4632 4434 13800 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12262 4434 4435 13800 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12263 4435 4633 13800 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12264 4633 4632 13800 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12265 4567 4656 13801 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12266 4656 4657 13801 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12267 4657 4568 13801 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12268 4568 4567 13801 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12269 4312 4417 13802 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12270 4417 4418 13802 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12271 4418 4313 13802 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12272 4313 4312 13802 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12273 4072 4204 13803 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12274 4204 4205 13803 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12275 4205 4073 13803 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12276 4073 4072 13803 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12277 3782 3940 13804 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12278 3940 3942 13804 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12279 3942 3791 13804 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12280 3791 3782 13804 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12281 3520 3639 13805 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12282 3639 3644 13805 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12283 3644 3524 13805 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12284 3524 3520 13805 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12285 3314 3398 13806 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12286 3398 3402 13806 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12287 3402 3318 13806 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12288 3318 3314 13806 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12289 3262 3282 13807 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12290 3282 3287 13807 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12291 3287 3263 13807 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12292 3263 3262 13807 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12293 3281 3244 13808 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12294 3244 3245 13808 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12295 3245 3283 13808 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12296 3283 3281 13808 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12297 3455 3363 13809 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12298 3363 3370 13809 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12299 3370 3461 13809 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12300 3461 3455 13809 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12301 3723 3562 13810 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12302 3562 3564 13810 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12303 3564 3726 13810 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12304 3726 3723 13810 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12305 4226 4081 13811 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12306 4081 4079 13811 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12307 4079 4218 13811 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12308 4218 4226 13811 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12309 4456 4334 13812 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12310 4334 4321 13812 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12311 4321 4438 13812 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12312 4438 4456 13812 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12313 4721 4644 13813 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12314 4644 4606 13813 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12315 4606 4687 13813 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12316 4687 4721 13813 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12317 4471 4705 13814 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12318 4705 4675 13814 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12319 4675 4450 13814 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12320 4450 4471 13814 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12321 3932 4189 13815 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12322 4189 4198 13815 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12323 4198 3963 13815 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12324 3963 3932 13815 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12325 3485 3660 13816 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12326 3660 3704 13816 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12327 3704 3531 13816 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12328 3531 3485 13816 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12329 3240 3339 13817 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12330 3339 3411 13817 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12331 3411 3313 13817 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12332 3313 3240 13817 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12333 3158 3183 13818 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12334 3183 3237 13818 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12335 3237 3205 13818 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12336 3205 3158 13818 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12337 3196 3163 13819 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12338 3163 3217 13819 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12339 3217 3249 13819 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12340 3249 3196 13819 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12341 3357 3261 13820 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12342 3261 3293 13820 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12343 3293 3380 13820 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12344 3380 3357 13820 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12345 3619 3617 13821 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12346 3617 3807 13821 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12347 3807 3820 13821 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12348 3820 3619 13821 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12349 4787 4795 13822 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12350 4795 4794 13822 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12351 4794 4786 13822 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12352 4786 4787 13822 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12353 4724 4794 13823 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12354 4794 4804 13823 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12355 4804 4730 13823 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12356 4730 4724 13823 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12357 4701 4781 13824 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12358 4781 4786 13824 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12359 4786 4713 13824 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12360 4713 4701 13824 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12361 3041 3053 13825 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12362 3053 3057 13825 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12363 3057 3045 13825 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12364 3045 3041 13825 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12365 3119 3057 13826 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12366 3057 3063 13826 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12367 3063 3123 13826 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12368 3123 3119 13826 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12369 3022 3024 13827 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12370 3024 3045 13827 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12371 3045 3043 13827 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12372 3043 3022 13827 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12373 3102 3032 13828 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12374 3032 3043 13828 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12375 3043 3114 13828 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12376 3114 3102 13828 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12377 4375 4538 13829 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12378 4538 4542 13829 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12379 4542 4382 13829 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12380 4382 4375 13829 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12381 4713 4724 13830 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12382 4724 4538 13830 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12383 4538 4528 13830 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12384 4528 4713 13830 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12385 4368 4519 13831 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12386 4519 4528 13831 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12387 4528 4371 13831 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12388 4371 4368 13831 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12389 4116 4251 13832 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12390 4251 4253 13832 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12391 4253 4117 13832 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12392 4117 4116 13832 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12393 4371 4375 13833 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12394 4375 4251 13833 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12395 4251 4250 13833 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12396 4250 4371 13833 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12397 4106 4245 13834 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12398 4245 4250 13834 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12399 4250 4112 13834 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12400 4112 4106 13834 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12401 3823 3987 13835 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12402 3987 3982 13835 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12403 3982 3818 13835 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12404 3818 3823 13835 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12405 4112 4116 13836 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12406 4116 3987 13836 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12407 3987 3985 13836 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12408 3985 4112 13836 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12409 3820 3978 13837 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12410 3978 3985 13837 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12411 3985 3828 13837 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12412 3828 3820 13837 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12413 3472 3614 13838 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12414 3614 3609 13838 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12415 3609 3467 13838 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12416 3467 3472 13838 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12417 3828 3823 13839 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12418 3823 3614 13839 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12419 3614 3616 13839 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12420 3616 3828 13839 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12421 3476 3619 13840 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12422 3619 3616 13840 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12423 3616 3475 13840 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12424 3475 3476 13840 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12425 3222 3343 13841 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12426 3343 3338 13841 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12427 3338 3216 13841 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12428 3216 3222 13841 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12429 3475 3472 13842 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12430 3472 3343 13842 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12431 3343 3349 13842 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12432 3349 3475 13842 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12433 3224 3347 13843 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12434 3347 3349 13843 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12435 3349 3227 13843 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12436 3227 3224 13843 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12437 3227 3222 13844 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12438 3222 3114 13844 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12439 3114 3119 13844 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12440 3119 3227 13844 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12441 2506 2518 13845 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12442 2518 2563 13845 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12443 2563 2552 13845 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12444 2552 2506 13845 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12445 4971 4942 13846 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12446 4942 4957 13846 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12447 4957 4991 13846 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12448 4991 4971 13846 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12449 5086 5028 13847 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12450 5028 4991 13847 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12451 4991 5045 13847 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12452 5045 5086 13847 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12453 5223 5216 13848 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12454 5216 5137 13848 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12455 5137 5144 13848 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12456 5144 5223 13848 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12457 5106 5137 13849 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12458 5137 5190 13849 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12459 5190 5173 13849 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12460 5173 5106 13849 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12461 5180 5206 13850 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12462 5206 5144 13850 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12463 5144 5105 13850 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12464 5105 5180 13850 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12465 5009 5102 13851 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12466 5102 5105 13851 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12467 5105 5016 13851 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12468 5016 5009 13851 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12469 4783 4859 13852 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12470 4859 5016 13852 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12471 5016 4970 13852 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12472 4970 4783 13852 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12473 4835 4925 13853 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12474 4925 4890 13853 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12475 4890 4782 13853 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12476 4782 4835 13853 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12477 4865 4890 13854 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12478 4890 5014 13854 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12479 5014 4986 13854 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12480 4986 4865 13854 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12481 5111 5014 13855 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12482 5014 5044 13855 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12483 5044 5134 13855 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12484 5134 5111 13855 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12485 4689 4722 13856 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12486 4722 4700 13856 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12487 4700 4678 13856 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12488 4678 4689 13856 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12489 4736 4700 13857 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12490 4700 4740 13857 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12491 4740 4764 13857 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12492 4764 4736 13857 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12493 4803 4740 13858 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12494 4740 4722 13858 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12495 4722 4783 13858 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12496 4783 4803 13858 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12497 4840 4803 13859 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12498 4803 4970 13859 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12499 4970 4990 13859 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12500 4990 4840 13859 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12501 4764 4840 13860 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12502 4840 4893 13860 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12503 4893 4835 13860 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12504 4835 4764 13860 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12505 4694 4736 13861 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12506 4736 4782 13861 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12507 4782 4750 13861 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12508 4750 4694 13861 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12509 5173 5175 13862 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12510 5175 5134 13862 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12511 5134 5130 13862 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12512 5130 5173 13862 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12513 5091 5111 13863 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12514 5111 5167 13863 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12515 5167 5157 13863 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12516 5157 5091 13863 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12517 4604 4605 13864 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12518 4605 4534 13864 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12519 4534 4513 13864 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12520 4513 4604 13864 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12521 4572 4561 13865 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12522 4561 4602 13865 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12523 4602 4591 13865 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12524 4591 4572 13865 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12525 4668 4602 13866 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12526 4602 4605 13866 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12527 4605 4685 13866 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12528 4685 4668 13866 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12529 5161 5275 13867 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12530 5275 5283 13867 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12531 5283 5172 13867 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12532 5172 5161 13867 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12533 5594 5451 13868 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12534 5451 5450 13868 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12535 5450 5595 13868 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12536 5595 5594 13868 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12537 4998 5076 13869 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12538 5076 5101 13869 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12539 5101 5018 13869 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12540 5018 4998 13869 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12541 4874 4932 13870 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12542 4932 4940 13870 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12543 4940 4887 13870 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12544 4887 4874 13870 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12545 4758 4790 13871 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12546 4790 4887 13871 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12547 4887 4852 13871 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12548 4852 4758 13871 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12549 4699 4720 13872 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12550 4720 4852 13872 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12551 4852 4834 13872 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12552 4834 4699 13872 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12553 4715 4696 13873 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12554 4696 4834 13873 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12555 4834 4847 13873 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12556 4847 4715 13873 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12557 4677 4668 13874 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12558 4668 4779 13874 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12559 4779 4799 13874 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12560 4799 4677 13874 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12561 4826 4779 13875 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12562 4779 4685 13875 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12563 4685 4706 13875 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12564 4706 4826 13875 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12565 5118 5245 13876 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12566 5245 5239 13876 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12567 5239 5114 13876 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12568 5114 5118 13876 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12569 5610 5436 13877 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12570 5436 5439 13877 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12571 5439 5607 13877 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12572 5607 5610 13877 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12573 4964 5019 13878 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12574 5019 5011 13878 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12575 5011 4948 13878 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12576 4948 4964 13878 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12577 4878 4941 13879 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12578 4941 4929 13879 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12579 4929 4857 13879 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12580 4857 4878 13879 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12581 4613 4732 13880 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12582 4732 4711 13880 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12583 4711 4590 13880 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12584 4590 4613 13880 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12585 4488 4530 13881 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12586 4530 4500 13881 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12587 4500 4465 13881 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12588 4465 4488 13881 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12589 4503 4497 13882 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12590 4497 4473 13882 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12591 4473 4479 13882 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12592 4479 4503 13882 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12593 4411 4448 13883 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12594 4448 4376 13883 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12595 4376 4304 13883 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12596 4304 4411 13883 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12597 4476 4440 13884 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12598 4440 4481 13884 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12599 4481 4499 13884 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12600 4499 4476 13884 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12601 4316 4347 13885 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12602 4347 4229 13885 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12603 4229 4163 13885 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12604 4163 4316 13885 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12605 4303 4305 13886 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12606 4305 4126 13886 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12607 4126 4120 13886 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12608 4120 4303 13886 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12609 5261 5279 13887 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12610 5279 5310 13887 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12611 5310 5282 13887 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12612 5282 5261 13887 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12613 5157 5198 13888 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12614 5198 5209 13888 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12615 5209 5155 13888 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12616 5155 5157 13888 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12617 4986 5091 13889 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12618 5091 5074 13889 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12619 5074 4963 13889 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12620 4963 4986 13889 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12621 4750 4865 13890 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12622 4865 4825 13890 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12623 4825 4709 13890 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12624 4709 4750 13890 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12625 4678 4694 13891 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12626 4694 4659 13891 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12627 4659 4629 13891 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12628 4629 4678 13891 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12629 4879 4826 13892 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12630 4826 4847 13892 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12631 4847 4896 13892 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12632 4896 4879 13892 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12633 4601 4715 13893 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12634 4715 4706 13893 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12635 4706 4604 13893 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12636 4604 4601 13893 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12637 4479 4511 13894 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12638 4511 4513 13894 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12639 4513 4476 13894 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12640 4476 4479 13894 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12641 4549 4503 13895 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12642 4503 4499 13895 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12643 4499 4541 13895 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12644 4541 4549 13895 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12645 3747 3700 13896 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12646 3700 3509 13896 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12647 3509 3566 13896 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12648 3566 3747 13896 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12649 4663 4566 13897 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12650 4566 4591 13897 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12651 4591 4677 13897 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12652 4677 4663 13897 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12653 4469 4572 13898 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12654 4572 4566 13898 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12655 4566 4463 13898 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12656 4463 4469 13898 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12657 4337 4180 13899 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12658 4180 4190 13899 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12659 4190 4344 13899 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12660 4344 4337 13899 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12661 3762 3989 13900 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12662 3989 3966 13900 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12663 3966 3747 13900 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12664 3747 3762 13900 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12665 3513 3590 13901 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12666 3590 3566 13901 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12667 3566 3473 13901 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12668 3473 3513 13901 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12669 3567 3513 13902 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12670 3513 3496 13902 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12671 3496 3561 13902 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12672 3561 3567 13902 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12673 3445 3496 13903 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12674 3496 3473 13903 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12675 3473 3419 13903 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12676 3419 3445 13903 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12677 4888 4800 13904 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12678 4800 4799 13904 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12679 4799 4879 13904 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12680 4879 4888 13904 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12681 4892 4888 13905 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12682 4888 4896 13905 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12683 4896 4904 13905 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12684 4904 4892 13905 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12685 3541 3490 13906 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12686 3490 3460 13906 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12687 3460 3521 13906 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12688 3521 3541 13906 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12689 3416 3450 13907 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12690 3450 3490 13907 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12691 3490 3451 13907 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12692 3451 3416 13907 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12693 3379 3377 13908 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12694 3377 3337 13908 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12695 3337 3336 13908 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12696 3336 3379 13908 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12697 3801 3662 13909 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12698 3662 3670 13909 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12699 3670 3822 13909 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12700 3822 3801 13909 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12701 4311 4531 13910 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12702 4531 4518 13910 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12703 4518 4303 13910 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12704 4303 4311 13910 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12705 5087 4817 13911 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12706 4817 4824 13911 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12707 4824 5094 13911 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12708 5094 5087 13911 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12709 4920 5166 13912 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12710 5166 5170 13912 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12711 5170 4934 13912 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12712 4934 4920 13912 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12713 5635 5414 13913 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12714 5414 5412 13913 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12715 5412 5637 13913 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12716 5637 5635 13913 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12717 4349 4652 13914 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12718 4652 4662 13914 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12719 4662 4356 13914 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12720 4356 4349 13914 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12721 3939 4129 13915 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12722 4129 4132 13915 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12723 4132 3945 13915 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12724 3945 3939 13915 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12725 3603 3735 13916 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12726 3735 3753 13916 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12727 3753 3626 13916 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12728 3626 3603 13916 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12729 4120 3959 13917 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12730 3959 3965 13917 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12731 3965 4125 13917 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12732 4125 4120 13917 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12733 5671 5379 13918 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12734 5379 5382 13918 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12735 5382 5668 13918 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12736 5668 5671 13918 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12737 3111 3056 13919 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12738 3056 2901 13919 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12739 2901 2970 13919 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12740 2970 3111 13919 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12741 3173 3143 13920 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12742 3143 3003 13920 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12743 3003 3030 13920 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12744 3030 3173 13920 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12745 4987 5195 13921 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12746 5195 5199 13921 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12747 5199 4996 13921 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12748 4996 4987 13921 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12749 5625 5421 13922 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12750 5421 5419 13922 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12751 5419 5628 13922 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12752 5628 5625 13922 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12753 4484 4746 13923 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12754 4746 4754 13923 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12755 4754 4491 13923 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12756 4491 4484 13923 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12757 4808 4791 13924 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12758 4791 4793 13924 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12759 4793 4810 13924 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12760 4810 4808 13924 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12761 4523 4793 13925 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12762 4793 4774 13925 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12763 4774 4512 13925 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12764 4512 4523 13925 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12765 4829 4830 13926 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12766 4830 4810 13926 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12767 4810 4805 13926 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12768 4805 4829 13926 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12769 4540 4796 13927 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12770 4796 4805 13927 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12771 4805 4537 13927 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12772 4537 4540 13927 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12773 4165 3871 13928 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12774 3871 3884 13928 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12775 3884 4173 13928 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12776 4173 4165 13928 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12777 3436 3580 13929 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12778 3580 3574 13929 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12779 3574 3432 13929 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12780 3432 3436 13929 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12781 3571 3574 13930 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12782 3574 3871 13930 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12783 3871 3866 13930 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12784 3866 3571 13930 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12785 3424 3423 13931 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12786 3423 3432 13931 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12787 3432 3433 13931 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12788 3433 3424 13931 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12789 3576 3438 13932 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12790 3438 3433 13932 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12791 3433 3571 13932 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12792 3571 3576 13932 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12793 4156 4165 13933 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12794 4165 4537 13933 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12795 4537 4523 13933 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12796 4523 4156 13933 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12797 3866 4156 13934 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12798 4156 4152 13934 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12799 4152 3864 13934 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12800 3864 3866 13934 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12801 2782 2804 13935 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12802 2804 2798 13935 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12803 2798 2778 13935 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12804 2778 2782 13935 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12805 2717 2712 13936 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12806 2712 2766 13936 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12807 2766 2771 13936 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12808 2771 2717 13936 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12809 2560 2507 13937 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12810 2507 2627 13937 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12811 2627 2653 13937 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12812 2653 2560 13937 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12813 2350 2265 13938 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12814 2265 2386 13938 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12815 2386 2441 13938 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12816 2441 2350 13938 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12817 2194 2143 13939 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12818 2143 2186 13939 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12819 2186 2262 13939 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12820 2262 2194 13939 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12821 2122 2125 13940 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12822 2125 2128 13940 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12823 2128 2142 13940 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12824 2142 2122 13940 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12825 2156 2162 13941 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12826 2162 2136 13941 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12827 2136 2113 13941 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12828 2113 2156 13941 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12829 2256 2222 13942 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12830 2222 2191 13942 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12831 2191 2226 13942 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12832 2226 2256 13942 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12833 2276 2290 13943 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12834 2290 2252 13943 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12835 2252 2242 13943 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12836 2242 2276 13943 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12837 2089 2070 13944 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12838 2070 2290 13944 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12839 2290 2316 13944 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12840 2316 2089 13944 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12841 2341 2331 13945 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12842 2331 2316 13945 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12843 2316 2312 13945 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12844 2312 2341 13945 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12845 2100 2097 13946 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12846 2097 2331 13946 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12847 2331 2335 13946 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12848 2335 2100 13946 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12849 2359 2332 13947 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12850 2332 2335 13947 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12851 2335 2357 13947 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12852 2357 2359 13947 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12853 2375 2321 13948 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12854 2321 2325 13948 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12855 2325 2364 13948 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12856 2364 2375 13948 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12857 2387 2344 13949 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12858 2344 2329 13949 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12859 2329 2379 13949 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12860 2379 2387 13949 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12861 2403 2336 13950 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12862 2336 2347 13950 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12863 2347 2410 13950 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12864 2410 2403 13950 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12865 2400 2216 13951 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12866 2216 2240 13951 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12867 2240 2417 13951 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12868 2417 2400 13951 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12869 2221 2236 13952 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12870 2236 2216 13952 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12871 2216 2202 13952 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12872 2202 2221 13952 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12873 2172 2166 13953 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12874 2166 2193 13953 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12875 2193 2208 13953 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12876 2208 2172 13953 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12877 2173 2195 13954 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12878 2195 2166 13954 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12879 2166 2150 13954 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12880 2150 2173 13954 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12881 2286 2369 13955 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12882 2369 2401 13955 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12883 2401 2326 13955 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12884 2326 2286 13955 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12885 2370 2395 13956 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12886 2395 2369 13956 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12887 2369 2330 13956 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12888 2330 2370 13956 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12889 2419 2464 13957 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12890 2464 2475 13957 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12891 2475 2434 13957 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12892 2434 2419 13957 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12893 2473 2488 13958 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12894 2488 2464 13958 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12895 2464 2447 13958 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12896 2447 2473 13958 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12897 2416 2406 13959 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12898 2406 2433 13959 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12899 2433 2446 13959 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12900 2446 2416 13959 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12901 2411 2432 13960 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12902 2432 2406 13960 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12903 2406 2382 13960 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12904 2382 2411 13960 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12905 2261 2257 13961 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12906 2257 2277 13961 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12907 2277 2292 13961 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12908 2292 2261 13961 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12909 5867 5178 13962 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12910 5178 5177 13962 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12911 5177 5868 13962 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12912 5868 5867 13962 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12913 4038 4399 13963 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12914 4399 4401 13963 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12915 4401 4040 13963 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12916 4040 4038 13963 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12917 3572 3901 13964 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12918 3901 3902 13964 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12919 3902 3570 13964 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12920 3570 3572 13964 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12921 2649 3048 13965 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12922 3048 3042 13965 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12923 3042 2638 13965 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12924 2638 2649 13965 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12925 2203 2148 13966 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12926 2148 2123 13966 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12927 2123 2161 13966 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12928 2161 2203 13966 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12929 2271 2319 13967 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12930 2319 2280 13967 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12931 2280 2237 13967 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12932 2237 2271 13967 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12933 2231 2227 13968 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12934 2227 2185 13968 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12935 2185 2190 13968 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12936 2190 2231 13968 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12937 2362 2281 13969 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12938 2281 2247 13969 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12939 2247 2327 13969 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12940 2327 2362 13969 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12941 2328 2373 13970 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12942 2373 2334 13970 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12943 2334 2294 13970 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12944 2294 2328 13970 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12945 2758 2667 13971 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12946 2667 2632 13971 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12947 2632 2708 13971 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12948 2708 2758 13971 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12949 2423 2533 13972 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12950 2533 2606 13972 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12951 2606 2509 13972 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12952 2509 2423 13972 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12953 2243 2269 13973 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12954 2269 2424 13973 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12955 2424 2403 13973 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12956 2403 2243 13973 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12957 2364 2274 13974 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12958 2274 2138 13974 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12959 2138 2175 13974 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12960 2175 2364 13974 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12961 2155 2137 13975 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12962 2137 2274 13975 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12963 2274 2359 13975 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12964 2359 2155 13975 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12965 2379 2375 13976 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12966 2375 2213 13976 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12967 2213 2218 13976 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12968 2218 2379 13976 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12969 2410 2387 13977 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12970 2387 2220 13977 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12971 2220 2243 13977 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12972 2243 2410 13977 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12973 2698 2780 13978 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12974 2780 2708 13978 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12975 2708 2637 13978 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12976 2637 2698 13978 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12977 2118 2140 13979 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12978 2140 2357 13979 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12979 2357 2341 13979 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12980 2341 2118 13979 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12981 2467 2560 13980 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12982 2560 2536 13980 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12983 2536 2463 13980 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12984 2463 2467 13980 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12985 2624 2590 13981 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12986 2590 2653 13981 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12987 2653 2717 13981 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12988 2717 2624 13981 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12989 2441 2467 13982 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12990 2467 2345 13982 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12991 2345 2299 13982 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12992 2299 2441 13982 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12993 2262 2350 13983 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12994 2350 2299 13983 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12995 2299 2196 13983 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12996 2196 2262 13983 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12997 2142 2194 13984 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12998 2194 2084 13984 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 12999 2084 2008 13984 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13000 2008 2142 13984 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13001 2677 2656 13985 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13002 2656 2771 13985 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13003 2771 2782 13985 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13004 2782 2677 13985 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13005 2654 2670 13986 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13006 2670 2778 13986 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13007 2778 2770 13986 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13008 2770 2654 13986 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13009 2611 2634 13987 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13010 2634 2737 13987 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13011 2737 2698 13987 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13012 2698 2611 13987 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13013 2065 2122 13988 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13014 2122 1915 13988 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13015 1915 1833 13988 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13016 1833 2065 13988 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13017 2113 2065 13989 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13018 2065 1804 13989 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13019 1804 1873 13989 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13020 1873 2113 13989 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13021 2226 2156 13990 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13022 2156 1944 13990 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13023 1944 2040 13990 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13024 2040 2226 13990 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13025 2242 2256 13991 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13026 2256 2040 13991 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13027 2040 2027 13991 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13028 2027 2242 13991 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13029 2312 2276 13992 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13030 2276 2052 13992 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13031 2052 2078 13992 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13032 2078 2312 13992 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13033 9071 9119 13993 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13034 9119 9006 13993 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13035 9006 8991 13993 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13036 8991 9071 13993 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13037 8890 9006 13994 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13038 9006 9033 13994 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13039 9033 8905 13994 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13040 8905 8890 13994 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13041 9080 9033 13995 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13042 9033 9161 13995 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13043 9161 9210 13995 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13044 9210 9080 13995 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13045 9219 9161 13996 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13046 9161 9119 13996 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13047 9119 9153 13996 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13048 9153 9219 13996 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13049 8927 9080 13997 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13050 9080 9135 13997 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13051 9135 8965 13997 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13052 8965 8927 13997 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13053 9176 9135 13998 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13054 9135 9252 13998 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13055 9252 9275 13998 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13056 9275 9176 13998 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13057 9278 9252 13999 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13058 9252 9210 13999 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13059 9210 9259 13999 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13060 9259 9278 13999 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13061 9324 9298 14000 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13062 9298 9275 14000 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13063 9275 9299 14000 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13064 9299 9324 14000 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13065 8993 9176 14001 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13066 9176 9224 14001 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13067 9224 9018 14001 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13068 9018 8993 14001 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13069 9256 9224 14002 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13070 9224 9298 14002 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13071 9298 9312 14002 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13072 9312 9256 14002 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13073 9090 9071 14003 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13074 9071 8994 14003 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13075 8994 9001 14003 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13076 9001 9090 14003 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13077 8952 8994 14004 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13078 8994 8991 14004 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13079 8991 8908 14004 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13080 8908 8952 14004 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13081 9153 9090 14005 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13082 9090 9074 14005 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13083 9074 9149 14005 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13084 9149 9153 14005 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13085 9012 9074 14006 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13086 9074 8999 14006 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13087 8999 8959 14006 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13088 8959 9012 14006 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13089 8928 8999 14007 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13090 8999 9001 14007 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13091 9001 8934 14007 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13092 8934 8928 14007 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13093 9259 9219 14008 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13094 9219 9206 14008 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13095 9206 9258 14008 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13096 9258 9259 14008 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13097 9139 9206 14009 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13098 9206 9149 14009 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13099 9149 9078 14009 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13100 9078 9139 14009 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13101 9255 9281 14010 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13102 9281 9258 14010 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13103 9258 9200 14010 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13104 9200 9255 14010 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13105 9299 9278 14011 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13106 9278 9281 14011 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13107 9281 9300 14011 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13108 9300 9299 14011 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13109 9291 9314 14012 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13110 9314 9300 14012 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13111 9300 9280 14012 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13112 9280 9291 14012 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13113 9328 9324 14013 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13114 9324 9314 14013 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13115 9314 9323 14013 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13116 9323 9328 14013 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13117 9289 9320 14014 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13118 9320 9323 14014 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13119 9323 9287 14014 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13120 9287 9289 14014 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13121 9312 9328 14015 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13122 9328 9329 14015 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13123 9329 9322 14015 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13124 9322 9312 14015 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13125 9330 9329 14016 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13126 9329 9320 14016 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13127 9320 9316 14016 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13128 9316 9330 14016 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13129 9285 9315 14017 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13130 9315 9316 14017 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13131 9316 9288 14017 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13132 9288 9285 14017 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13133 9321 9330 14018 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13134 9330 9331 14018 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13135 9331 9311 14018 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13136 9311 9321 14018 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13137 9326 9331 14019 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13138 9331 9315 14019 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13139 9315 9310 14019 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13140 9310 9326 14019 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13141 9276 9303 14020 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13142 9303 9310 14020 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13143 9310 9282 14020 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13144 9282 9276 14020 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13145 9305 9326 14021 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13146 9326 9318 14021 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13147 9318 9295 14021 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13148 9295 9305 14021 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13149 9301 9318 14022 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13150 9318 9303 14022 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13151 9303 9292 14022 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13152 9292 9301 14022 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13153 9263 9279 14023 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13154 9279 9292 14023 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13155 9292 9267 14023 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13156 9267 9263 14023 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13157 9286 9301 14024 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13158 9301 9284 14024 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13159 9284 9269 14024 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13160 9269 9286 14024 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13161 9266 9284 14025 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13162 9284 9279 14025 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13163 9279 9262 14025 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13164 9262 9266 14025 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13165 9188 9226 14026 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13166 9226 9262 14026 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13167 9262 9239 14026 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13168 9239 9188 14026 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13169 9249 9266 14027 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13170 9266 9242 14027 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13171 9242 9208 14027 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13172 9208 9249 14027 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13173 9189 9242 14028 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13174 9242 9226 14028 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13175 9226 9162 14028 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13176 9162 9189 14028 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13177 9077 9105 14029 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13178 9105 9162 14029 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13179 9162 9145 14029 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13180 9145 9077 14029 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13181 9151 9189 14030 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13182 9189 9133 14030 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13183 9133 9076 14030 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13184 9076 9151 14030 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13185 9104 9133 14031 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13186 9133 9105 14031 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13187 9105 9062 14031 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13188 9062 9104 14031 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13189 9031 9104 14032 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13190 9104 9098 14032 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13191 9098 9021 14032 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13192 9021 9031 14032 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13193 9083 9098 14033 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13194 9098 9062 14033 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13195 9062 9055 14033 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13196 9055 9083 14033 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13197 9065 9083 14034 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13198 9083 9060 14034 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13199 9060 9053 14034 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13200 9053 9065 14034 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13201 9049 9060 14035 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13202 9060 9055 14035 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13203 9055 9058 14035 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13204 9058 9049 14035 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13205 9044 9028 14036 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13206 9028 9053 14036 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13207 9053 9049 14036 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13208 9049 9044 14036 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13209 9087 9065 14037 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13210 9065 9035 14037 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13211 9035 9046 14037 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13212 9046 9087 14037 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13213 8984 9035 14038 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13214 9035 9028 14038 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13215 9028 8978 14038 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13216 8978 8984 14038 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13217 8842 8866 14039 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13218 8866 8978 14039 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13219 8978 8983 14039 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13220 8983 8842 14039 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13221 8982 8984 14040 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13222 8984 8892 14040 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13223 8892 8899 14040 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13224 8899 8982 14040 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13225 8876 8892 14041 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13226 8892 8866 14041 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13227 8866 8838 14041 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13228 8838 8876 14041 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13229 9089 9002 14042 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13230 9002 8983 14042 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13231 8983 9044 14042 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13232 9044 9089 14042 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13233 8825 8842 14043 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13234 8842 8843 14043 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13235 8843 8817 14043 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13236 8817 8825 14043 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13237 8863 8843 14044 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13238 8843 9002 14044 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13239 9002 9032 14044 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13240 9032 8863 14044 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13241 9129 9089 14045 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13242 9089 9058 14045 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13243 9058 9082 14045 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13244 9082 9129 14045 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13245 9109 9114 14046 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13246 9114 9082 14046 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13247 9082 9077 14046 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13248 9077 9109 14046 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13249 9032 9129 14047 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13250 9129 9154 14047 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13251 9154 9070 14047 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13252 9070 9032 14047 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13253 9193 9154 14048 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13254 9154 9114 14048 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13255 9114 9142 14048 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13256 9142 9193 14048 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13257 9183 9178 14049 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13258 9178 9142 14049 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13259 9142 9138 14049 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13260 9138 9183 14049 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13261 9209 9193 14050 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13262 9193 9233 14050 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13263 9233 9246 14050 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13264 9246 9209 14050 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13265 9240 9233 14051 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13266 9233 9178 14051 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13267 9178 9185 14051 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13268 9185 9240 14051 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13269 9187 9159 14052 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13270 9159 9185 14052 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13271 9185 9196 14052 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13272 9196 9187 14052 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13273 9254 9240 14053 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13274 9240 9223 14053 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13275 9223 9243 14053 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13276 9243 9254 14053 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13277 9203 9223 14054 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13278 9223 9159 14054 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13279 9159 9152 14054 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13280 9152 9203 14054 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13281 9215 9163 14055 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13282 9163 9152 14055 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13283 9152 9190 14055 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13284 9190 9215 14055 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13285 9229 9203 14056 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13286 9203 9191 14056 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13287 9191 9194 14056 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13288 9194 9229 14056 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13289 9180 9191 14057 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13290 9191 9163 14057 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13291 9163 9164 14057 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13292 9164 9180 14057 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13293 9169 9180 14058 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13294 9180 9155 14058 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13295 9155 9140 14058 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13296 9140 9169 14058 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13297 9220 9155 14059 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13298 9155 9164 14059 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13299 9164 9222 14059 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13300 9222 9220 14059 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13301 9170 9107 14060 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13302 9107 9140 14060 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13303 9140 9199 14060 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13304 9199 9170 14060 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13305 9194 9169 14061 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13306 9169 9143 14061 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13307 9143 9177 14061 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13308 9177 9194 14061 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13309 9113 9143 14062 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13310 9143 9107 14062 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13311 9107 9051 14062 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13312 9051 9113 14062 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13313 9121 9113 14063 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13314 9113 9007 14063 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13315 9007 8998 14063 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13316 8998 9121 14063 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13317 9056 9007 14064 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13318 9007 9051 14064 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13319 9051 9120 14064 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13320 9120 9056 14064 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13321 8966 8981 14065 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13322 8981 8998 14065 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13323 8998 9005 14065 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13324 9005 8966 14065 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13325 9177 9121 14066 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13326 9121 9132 14066 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13327 9132 9207 14066 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13328 9207 9177 14066 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13329 9079 9132 14067 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13330 9132 8981 14067 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13331 8981 8921 14067 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13332 8921 9079 14067 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13333 9243 9229 14068 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13334 9229 9207 14068 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13335 9207 9232 14068 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13336 9232 9243 14068 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13337 9248 9254 14069 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13338 9254 9232 14069 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13339 9232 9225 14069 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13340 9225 9248 14069 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13341 9267 9276 14070 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13342 9276 9190 14070 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13343 9190 9187 14070 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13344 9187 9267 14070 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13345 9222 9215 14071 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13346 9215 9282 14071 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13347 9282 9285 14071 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13348 9285 9222 14071 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13349 9239 9263 14072 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13350 9263 9196 14072 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13351 9196 9183 14072 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13352 9183 9239 14072 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13353 9145 9188 14073 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13354 9188 9138 14073 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13355 9138 9109 14073 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13356 9109 9145 14073 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13357 9046 9016 14074 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13358 9016 9041 14074 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13359 9041 9085 14074 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13360 9085 9046 14074 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13361 9008 9041 14075 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13362 9041 8958 14075 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13363 8958 8931 14075 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13364 8931 9008 14075 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13365 8925 8958 14076 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13366 8958 9016 14076 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13367 9016 8990 14076 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13368 8990 8925 14076 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13369 8824 8925 14077 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13370 8925 8924 14077 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13371 8924 8826 14077 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13372 8826 8824 14077 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13373 8916 8924 14078 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13374 8924 8990 14078 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13375 8990 8982 14078 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13376 8982 8916 14078 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13377 8906 8916 14079 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13378 8916 8899 14079 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13379 8899 8885 14079 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13380 8885 8906 14079 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13381 8830 8906 14080 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13382 8906 8936 14080 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13383 8936 8869 14080 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13384 8869 8830 14080 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13385 8938 8936 14081 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13386 8936 8885 14081 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13387 8885 8876 14081 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13388 8876 8938 14081 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13389 8901 8972 14082 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13390 8972 8886 14082 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13391 8886 8814 14082 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13392 8814 8901 14082 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13393 8749 8886 14083 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13394 8886 8931 14083 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13395 8931 8774 14083 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13396 8774 8749 14083 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13397 9069 9008 14084 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13398 9008 8972 14084 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13399 8972 9014 14084 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13400 9014 9069 14084 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13401 9102 9069 14085 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13402 9069 9066 14085 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13403 9066 9100 14085 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13404 9100 9102 14085 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13405 9009 9066 14086 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13406 9066 9014 14086 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13407 9014 8970 14086 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13408 8970 9009 14086 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13409 9085 9102 14087 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13410 9102 9103 14087 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13411 9103 9087 14087 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13412 9087 9085 14087 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13413 9022 9103 14088 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13414 9103 9100 14088 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13415 9100 9037 14088 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13416 9037 9022 14088 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13417 9199 9220 14089 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13418 9220 9288 14089 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13419 9288 9289 14089 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13420 9289 9199 14089 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13421 9136 9079 14090 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13422 9079 8859 14090 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13423 8859 8910 14090 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13424 8910 9136 14090 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13425 8834 8859 14091 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13426 8859 8921 14091 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13427 8921 8913 14091 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13428 8913 8834 14091 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13429 8762 8882 14092 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13430 8882 8873 14092 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13431 8873 8748 14092 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13432 8748 8762 14092 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13433 8910 8873 14093 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13434 8873 9067 14093 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13435 9067 9118 14093 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13436 9118 8910 14093 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13437 9197 9067 14094 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13438 9067 9086 14094 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13439 9086 9209 14094 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13440 9209 9197 14094 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13441 9070 9086 14095 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13442 9086 8882 14095 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13443 8882 8881 14095 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13444 8881 9070 14095 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13445 8746 8863 14096 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13446 8863 8881 14096 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13447 8881 8762 14096 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13448 8762 8746 14096 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13449 9201 9197 14097 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13450 9197 9246 14097 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13451 9246 9248 14097 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13452 9248 9201 14097 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13453 9118 9201 14098 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13454 9201 9225 14098 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13455 9225 9136 14098 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13456 9136 9118 14098 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13457 9173 9170 14099 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13458 9170 9287 14099 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13459 9287 9291 14099 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13460 9291 9173 14099 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13461 9120 9173 14100 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13462 9173 9280 14100 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13463 9280 9255 14100 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13464 9255 9120 14100 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13465 9005 9056 14101 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13466 9056 9200 14101 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13467 9200 9139 14101 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13468 9139 9005 14101 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13469 8913 8966 14102 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13470 8966 9078 14102 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13471 9078 9012 14102 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13472 9012 8913 14102 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13473 8791 8834 14103 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13474 8834 8959 14103 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13475 8959 8911 14103 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13476 8911 8791 14103 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13477 8838 8825 14104 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13478 8825 8934 14104 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13479 8934 8935 14104 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13480 8935 8838 14104 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13481 8911 8928 14105 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13482 8928 8817 14105 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13483 8817 8790 14105 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13484 8790 8911 14105 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13485 8748 8791 14106 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13486 8791 8790 14106 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13487 8790 8746 14106 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13488 8746 8748 14106 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13489 8907 8938 14107 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13490 8938 8935 14107 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13491 8935 8952 14107 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13492 8952 8907 14107 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13493 9205 9256 14108 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13494 9256 9274 14108 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13495 9274 9257 14108 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13496 9257 9205 14108 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13497 9270 9274 14109 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13498 9274 9322 14109 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13499 9322 9321 14109 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13500 9321 9270 14109 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13501 9130 9270 14110 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13502 9270 9230 14110 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13503 9230 9036 14110 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13504 9036 9130 14110 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13505 9198 9230 14111 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13506 9230 9311 14111 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13507 9311 9305 14111 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13508 9305 9198 14111 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13509 9034 9198 14112 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13510 9198 9218 14112 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13511 9218 9075 14112 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13512 9075 9034 14112 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13513 9217 9218 14113 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13514 9218 9295 14113 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13515 9295 9286 14113 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13516 9286 9217 14113 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13517 9052 9217 14114 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13518 9217 9192 14114 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13519 9192 9042 14114 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13520 9042 9052 14114 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13521 9160 9192 14115 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13522 9192 9269 14115 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13523 9269 9249 14115 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13524 9249 9160 14115 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13525 9019 9160 14116 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13526 9160 9124 14116 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13527 9124 8989 14116 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13528 8989 9019 14116 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13529 9039 9124 14117 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13530 9124 9208 14117 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13531 9208 9151 14117 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13532 9151 9039 14117 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13533 8937 9039 14118 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13534 9039 8968 14118 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13535 8968 8844 14118 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13536 8844 8937 14118 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13537 8926 8968 14119 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13538 8968 9076 14119 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13539 9076 9031 14119 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13540 9031 8926 14119 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13541 8801 8926 14120 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13542 8926 8920 14120 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13543 8920 8796 14120 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13544 8796 8801 14120 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13545 8939 8920 14121 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13546 8920 9021 14121 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13547 9021 9022 14121 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13548 9022 8939 14121 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13549 8782 8939 14122 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13550 8939 8975 14122 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13551 8975 8833 14122 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13552 8833 8782 14122 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13553 8951 8975 14123 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13554 8975 9037 14123 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13555 9037 9003 14123 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13556 9003 8951 14123 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13557 8875 8951 14124 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13558 8951 8850 14124 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13559 8850 8760 14124 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13560 8760 8875 14124 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13561 8860 8850 14125 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13562 8850 9003 14125 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13563 9003 9009 14125 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13564 9009 8860 14125 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13565 8833 8875 14126 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13566 8875 8662 14126 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13567 8662 8639 14126 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13568 8639 8833 14126 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13569 8600 8662 14127 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13570 8662 8760 14127 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13571 8760 8669 14127 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13572 8669 8600 14127 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13573 8796 8739 14128 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13574 8739 8611 14128 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13575 8611 8653 14128 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13576 8653 8796 14128 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13577 8545 8611 14129 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13578 8611 8549 14129 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13579 8549 8491 14129 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13580 8491 8545 14129 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13581 8586 8549 14130 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13582 8549 8739 14130 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13583 8739 8782 14130 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13584 8782 8586 14130 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13585 8561 8545 14131 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13586 8545 8467 14131 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13587 8467 8471 14131 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13588 8471 8561 14131 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13589 8406 8467 14132 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13590 8467 8491 14132 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13591 8491 8425 14132 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13592 8425 8406 14132 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13593 8372 8468 14133 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13594 8468 8471 14133 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13595 8471 8385 14133 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13596 8385 8372 14133 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13597 8653 8561 14134 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13598 8561 8567 14134 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13599 8567 8667 14134 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13600 8667 8653 14134 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13601 8587 8567 14135 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13602 8567 8468 14135 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13603 8468 8488 14135 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13604 8488 8587 14135 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13605 8844 8801 14136 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13606 8801 8667 14136 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13607 8667 8706 14136 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13608 8706 8844 14136 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13609 8989 8937 14137 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13610 8937 8777 14137 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13611 8777 8827 14137 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13612 8827 8989 14137 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13613 8621 8777 14138 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13614 8777 8706 14138 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13615 8706 8587 14138 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13616 8587 8621 14138 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13617 8655 8621 14139 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13618 8621 8512 14139 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13619 8512 8546 14139 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13620 8546 8655 14139 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13621 8423 8512 14140 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13622 8512 8488 14140 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13623 8488 8394 14140 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13624 8394 8423 14140 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13625 8510 8579 14141 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13626 8579 8546 14141 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13627 8546 8456 14141 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13628 8456 8510 14141 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13629 8827 8655 14142 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13630 8655 8689 14142 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13631 8689 8868 14142 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13632 8868 8827 14142 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13633 8742 8689 14143 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13634 8689 8579 14143 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13635 8579 8613 14143 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13636 8613 8742 14143 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13637 9042 9019 14144 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13638 9019 8868 14144 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13639 8868 8888 14144 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13640 8888 9042 14144 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13641 9075 9052 14145 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13642 9052 8900 14145 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13643 8900 8918 14145 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13644 8918 9075 14145 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13645 8756 8900 14146 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13646 8900 8888 14146 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13647 8888 8742 14146 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13648 8742 8756 14146 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13649 8701 8756 14147 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13650 8756 8613 14147 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13651 8613 8582 14147 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13652 8582 8701 14147 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13653 8784 8860 14148 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13654 8860 8970 14148 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13655 8970 8901 14148 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13656 8901 8784 14148 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13657 8669 8784 14149 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13658 8784 8709 14149 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13659 8709 8624 14149 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13660 8624 8669 14149 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13661 8635 8709 14150 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13662 8709 8814 14150 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13663 8814 8749 14150 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13664 8749 8635 14150 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13665 8542 8600 14151 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13666 8600 8570 14151 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13667 8570 8507 14151 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13668 8507 8542 14151 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13669 8502 8570 14152 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13670 8570 8624 14152 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13671 8624 8540 14152 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13672 8540 8502 14152 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13673 8961 9034 14153 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13674 9034 8918 14153 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13675 8918 8846 14153 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13676 8846 8961 14153 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13677 8455 8586 14154 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13678 8586 8639 14154 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13679 8639 8506 14154 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13680 8506 8455 14154 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13681 8506 8542 14155 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13682 8542 8461 14155 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13683 8461 8433 14155 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13684 8433 8506 14155 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13685 8440 8461 14156 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13686 8461 8507 14156 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13687 8507 8502 14156 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13688 8502 8440 14156 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13689 9241 9272 14157 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13690 9272 9257 14157 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13691 9257 9212 14157 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13692 9212 9241 14157 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13693 9101 9205 14158 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13694 9205 9272 14158 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13695 9272 9172 14158 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13696 9172 9101 14158 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13697 8421 8450 14159 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13698 8450 8554 14159 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13699 8554 8497 14159 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13700 8497 8421 14159 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13701 8593 8554 14160 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13702 8554 8595 14160 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13703 8595 8657 14160 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13704 8657 8593 14160 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13705 8632 8595 14161 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13706 8595 8490 14161 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13707 8490 8533 14161 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13708 8533 8632 14161 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13709 8432 8490 14162 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13710 8490 8450 14162 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13711 8450 8392 14162 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13712 8392 8432 14162 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13713 8280 8334 14163 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13714 8334 8392 14163 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13715 8392 8354 14163 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13716 8354 8280 14163 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13717 8473 8432 14164 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13718 8432 8405 14164 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13719 8405 8452 14164 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13720 8452 8473 14164 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13721 8380 8405 14165 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13722 8405 8334 14165 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13723 8334 8298 14165 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13724 8298 8380 14165 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13725 8233 8283 14166 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13726 8283 8298 14166 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13727 8298 8244 14166 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13728 8244 8233 14166 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13729 8444 8380 14167 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13730 8380 8370 14167 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13731 8370 8445 14167 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13732 8445 8444 14167 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13733 8384 8370 14168 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13734 8370 8283 14168 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13735 8283 8299 14168 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13736 8299 8384 14168 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13737 8285 8340 14169 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13738 8340 8299 14169 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13739 8299 8245 14169 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13740 8245 8285 14169 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13741 8454 8384 14170 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13742 8384 8415 14170 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13743 8415 8481 14170 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13744 8481 8454 14170 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13745 8442 8415 14171 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13746 8415 8340 14171 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13747 8340 8387 14171 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13748 8387 8442 14171 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13749 8404 8439 14172 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13750 8439 8387 14172 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13751 8387 8342 14172 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13752 8342 8404 14172 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13753 8505 8442 14173 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13754 8442 8498 14173 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13755 8498 8566 14173 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13756 8566 8505 14173 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13757 8562 8498 14174 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13758 8498 8439 14174 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13759 8439 8483 14174 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13760 8483 8562 14174 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13761 8451 8516 14175 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13762 8516 8483 14175 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13763 8483 8437 14175 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13764 8437 8451 14175 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13765 8619 8562 14176 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13766 8562 8627 14176 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13767 8627 8698 14176 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13768 8698 8619 14176 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13769 8623 8627 14177 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13770 8627 8516 14177 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13771 8516 8511 14177 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13772 8511 8623 14177 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13773 8397 8465 14178 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13774 8465 8511 14178 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13775 8511 8431 14178 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13776 8431 8397 14178 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13777 8695 8623 14179 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13778 8623 8551 14179 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13779 8551 8629 14179 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13780 8629 8695 14179 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13781 8480 8551 14180 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13782 8551 8465 14180 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13783 8465 8412 14180 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13784 8412 8480 14180 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13785 8236 8323 14181 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13786 8323 8412 14181 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13787 8412 8330 14181 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13788 8330 8236 14181 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13789 8535 8480 14182 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13790 8480 8411 14182 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13791 8411 8458 14182 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13792 8458 8535 14182 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13793 8311 8411 14183 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13794 8411 8323 14183 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13795 8323 8228 14183 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13796 8228 8311 14183 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13797 7958 8067 14184 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13798 8067 8228 14184 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13799 8228 8125 14184 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13800 8125 7958 14184 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13801 8376 8311 14185 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13802 8311 8192 14185 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13803 8192 8270 14185 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13804 8270 8376 14185 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13805 8130 8192 14186 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13806 8192 8067 14186 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13807 8067 8038 14186 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13808 8038 8130 14186 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13809 8028 8055 14187 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13810 8055 8038 14187 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13811 8038 8005 14187 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13812 8005 8028 14187 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13813 8205 8130 14188 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13814 8130 8098 14188 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13815 8098 8167 14188 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13816 8167 8205 14188 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13817 7946 8098 14189 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13818 8098 8055 14189 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13819 8055 7899 14189 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13820 7899 7946 14189 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13821 8009 7991 14190 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13822 7991 8030 14190 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13823 8030 8078 14190 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13824 8078 8009 14190 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13825 7942 8030 14191 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13826 8030 8005 14191 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13827 8005 7910 14191 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13828 7910 7942 14191 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13829 7851 8028 14192 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13830 8028 7991 14192 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13831 7991 7793 14192 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13832 7793 7851 14192 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13833 7589 7667 14193 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13834 7667 7899 14193 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13835 7899 7851 14193 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13836 7851 7589 14193 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13837 8010 7946 14194 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13838 7946 7757 14194 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13839 7757 7849 14194 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13840 7849 8010 14194 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13841 7542 7757 14195 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13842 7757 7667 14195 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13843 7667 7390 14195 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13844 7390 7542 14195 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13845 7495 7506 14196 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13846 7506 7793 14196 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13847 7793 7800 14196 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13848 7800 7495 14196 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13849 7245 7589 14197 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13850 7589 7506 14197 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13851 7506 7133 14197 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13852 7133 7245 14197 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13853 6799 7014 14198 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13854 7014 7390 14198 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13855 7390 7245 14198 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13856 7245 6799 14198 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13857 7702 7542 14199 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13858 7542 7326 14199 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13859 7326 7569 14199 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13860 7569 7702 14199 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13861 6631 6690 14200 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13862 6690 7133 14200 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13863 7133 7097 14200 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13864 7097 6631 14200 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13865 6260 6799 14201 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13866 6799 6690 14201 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13867 6690 6119 14201 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13868 6119 6260 14201 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13869 5703 5713 14202 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13870 5713 6119 14202 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13871 6119 6070 14202 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13872 6070 5703 14202 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13873 7541 7877 14203 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13874 7877 7600 14203 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13875 7600 7294 14203 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13876 7294 7541 14203 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13877 7468 7600 14204 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13878 7600 8132 14204 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13879 8132 7986 14204 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13880 7986 7468 14204 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13881 8413 8132 14205 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13882 8132 8321 14205 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13883 8321 8565 14205 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13884 8565 8413 14205 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13885 8453 8321 14206 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13886 8321 7877 14206 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13887 7877 8180 14206 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13888 8180 8453 14206 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13889 8118 8375 14207 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13890 8375 8180 14207 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13891 8180 7813 14207 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13892 7813 8118 14207 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13893 8666 8453 14208 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13894 8453 8577 14208 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13895 8577 8738 14208 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13896 8738 8666 14208 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13897 8677 8577 14209 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13898 8577 8375 14209 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13899 8375 8499 14209 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13900 8499 8677 14209 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13901 8318 8559 14210 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13902 8559 8499 14210 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13903 8499 8272 14210 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13904 8272 8318 14210 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13905 8806 8677 14211 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13906 8677 8766 14211 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13907 8766 8867 14211 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13908 8867 8806 14211 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13909 8800 8766 14212 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13910 8766 8559 14212 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13911 8559 8589 14212 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13912 8589 8800 14212 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13913 8368 8599 14213 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13914 8599 8589 14213 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13915 8589 8350 14213 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13916 8350 8368 14213 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13917 8887 8800 14214 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13918 8800 8792 14214 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13919 8792 8877 14214 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13920 8877 8887 14214 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13921 8770 8792 14215 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13922 8792 8599 14215 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13923 8599 8598 14215 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13924 8598 8770 14215 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13925 8386 8588 14216 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13926 8588 8598 14216 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13927 8598 8379 14216 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13928 8379 8386 14216 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13929 8851 8770 14217 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13930 8770 8727 14217 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13931 8727 8820 14217 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13932 8820 8851 14217 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13933 8628 8727 14218 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13934 8727 8588 14218 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13935 8588 8532 14218 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13936 8532 8628 14218 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13937 8337 8449 14219 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13938 8449 8532 14219 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13939 8532 8369 14219 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13940 8369 8337 14219 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13941 8724 8628 14220 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13942 8628 8508 14220 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13943 8508 8580 14220 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13944 8580 8724 14220 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13945 8462 8508 14221 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13946 8508 8449 14221 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13947 8449 8418 14221 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13948 8418 8462 14221 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13949 8301 8408 14222 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13950 8408 8418 14222 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13951 8418 8312 14222 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13952 8312 8301 14222 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13953 8521 8462 14223 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13954 8462 8460 14223 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13955 8460 8525 14223 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13956 8525 8521 14223 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13957 8484 8460 14224 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13958 8460 8408 14224 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13959 8408 8417 14224 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13960 8417 8484 14224 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13961 6805 7300 14225 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13962 7300 7088 14225 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13963 7088 6710 14225 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13964 6710 6805 14225 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13965 7001 7088 14226 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13966 7088 7294 14226 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13967 7294 7142 14226 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13968 7142 7001 14226 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13969 7813 7541 14227 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13970 7541 7300 14227 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13971 7300 7496 14227 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13972 7496 7813 14227 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13973 5868 5881 14228 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13974 5881 6710 14228 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13975 6710 6641 14228 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13976 6641 5868 14228 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13977 7016 6805 14229 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13978 6805 5927 14229 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13979 5927 6236 14229 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13980 6236 7016 14229 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13981 7335 7739 14230 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13982 7739 7496 14230 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13983 7496 7016 14230 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13984 7016 7335 14230 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13985 8272 8118 14231 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13986 8118 7739 14231 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13987 7739 7890 14231 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13988 7890 8272 14231 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13989 6536 6810 14232 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13990 6810 6236 14232 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13991 6236 5838 14232 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13992 5838 6536 14232 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13993 7497 7335 14233 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13994 7335 6810 14233 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13995 6810 7050 14233 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13996 7050 7497 14233 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13997 7523 7916 14234 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13998 7916 7890 14234 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 13999 7890 7497 14234 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14000 7497 7523 14234 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14001 8350 8318 14235 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14002 8318 7916 14235 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14003 7916 7956 14235 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14004 7956 8350 14235 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14005 6744 7103 14236 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14006 7103 7050 14236 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14007 7050 6712 14236 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14008 6712 6744 14236 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14009 7561 7523 14237 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14010 7523 7103 14237 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14011 7103 7157 14237 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14012 7157 7561 14237 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14013 7617 7998 14238 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14014 7998 7956 14238 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14015 7956 7561 14238 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14016 7561 7617 14238 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14017 8379 8368 14239 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14018 8368 7998 14239 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14019 7998 8035 14239 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14020 8035 8379 14239 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14021 6843 7210 14240 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14022 7210 7157 14240 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14023 7157 6776 14240 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14024 6776 6843 14240 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14025 7653 7617 14241 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14026 7617 7210 14241 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14027 7210 7297 14241 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14028 7297 7653 14241 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14029 7694 8057 14242 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14030 8057 8035 14242 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14031 8035 7653 14242 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14032 7653 7694 14242 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14033 8369 8386 14243 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14034 8386 8057 14243 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14035 8057 8094 14243 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14036 8094 8369 14243 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14037 7131 7358 14244 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14038 7358 7297 14244 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14039 7297 7054 14244 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14040 7054 7131 14244 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14041 7745 7694 14245 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14042 7694 7358 14245 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14043 7358 7421 14245 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14044 7421 7745 14245 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14045 7805 8117 14246 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14046 8117 8094 14246 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14047 8094 7745 14246 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14048 7745 7805 14246 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14049 8312 8337 14247 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14050 8337 8117 14247 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14051 8117 8140 14247 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14052 8140 8312 14247 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14053 7293 7490 14248 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14054 7490 7421 14248 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14055 7421 7171 14248 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14056 7171 7293 14248 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14057 7857 7805 14249 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14058 7805 7490 14249 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14059 7490 7567 14249 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14060 7567 7857 14249 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14061 7896 8155 14250 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14062 8155 8140 14250 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14063 8140 7857 14250 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14064 7857 7896 14250 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14065 8316 8301 14251 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14066 8301 8155 14251 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14067 8155 8182 14251 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14068 8182 8316 14251 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14069 7454 7646 14252 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14070 7646 7567 14252 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14071 7567 7377 14252 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14072 7377 7454 14252 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14073 7944 7896 14253 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14074 7896 7646 14253 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14075 7646 7716 14253 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14076 7716 7944 14253 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14077 7143 7202 14254 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14078 7202 7377 14254 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14079 7377 7293 14254 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14080 7293 7143 14254 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14081 7499 7454 14255 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14082 7454 7287 14255 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14083 7287 7322 14255 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14084 7322 7499 14255 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14085 7083 7287 14256 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14086 7287 7202 14256 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14087 7202 7052 14256 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14088 7052 7083 14256 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14089 7005 7040 14257 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14090 7040 7171 14257 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14091 7171 7131 14257 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14092 7131 7005 14257 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14093 6997 7143 14258 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14094 7143 7040 14258 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14095 7040 6902 14258 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14096 6902 6997 14258 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14097 6853 7005 14259 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14098 7005 7054 14259 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14099 7054 6860 14259 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14100 6860 6853 14259 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14101 6834 6907 14260 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14102 6907 7052 14260 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14103 7052 6997 14260 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14104 6997 6834 14260 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14105 7113 7083 14261 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14106 7083 6924 14261 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14107 6924 6949 14261 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14108 6949 7113 14261 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14109 6750 6924 14262 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14110 6924 6907 14262 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14111 6907 6737 14262 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14112 6737 6750 14262 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14113 6598 6719 14263 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14114 6719 6902 14263 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14115 6902 6853 14263 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14116 6853 6598 14263 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14117 6653 6834 14264 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14118 6834 6719 14264 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14119 6719 6489 14264 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14120 6489 6653 14264 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14121 6353 6451 14265 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14122 6451 6860 14265 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14123 6860 6843 14265 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14124 6843 6353 14265 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14125 6351 6598 14266 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14126 6598 6451 14266 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14127 6451 6134 14266 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14128 6134 6351 14266 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14129 6402 6546 14267 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14130 6546 6737 14267 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14131 6737 6653 14267 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14132 6653 6402 14267 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14133 6761 6750 14268 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14134 6750 6586 14268 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14135 6586 6614 14268 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14136 6614 6761 14268 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14137 6310 6586 14269 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14138 6586 6546 14269 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14139 6546 6276 14269 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14140 6276 6310 14269 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14141 6093 6196 14270 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14142 6196 6489 14270 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14143 6489 6351 14270 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14144 6351 6093 14270 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14145 6159 6402 14271 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14146 6402 6196 14271 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14147 6196 6028 14271 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14148 6028 6159 14271 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14149 5954 6093 14272 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14150 6093 6134 14272 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14151 6134 5945 14272 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14152 5945 5954 14272 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14153 5995 6047 14273 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14154 6047 6276 14273 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14155 6276 6159 14273 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14156 6159 5995 14273 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14157 6358 6310 14274 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14158 6310 6071 14274 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14159 6071 6100 14274 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14160 6100 6358 14274 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14161 5896 6071 14275 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14162 6071 6047 14275 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14163 6047 5893 14275 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14164 5893 5896 14275 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14165 5828 5899 14276 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14166 5899 6028 14276 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14167 6028 5954 14276 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14168 5954 5828 14276 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14169 5882 5995 14277 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14170 5995 5899 14277 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14171 5899 5840 14277 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14172 5840 5882 14277 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14173 5660 5708 14278 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14174 5708 5945 14278 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14175 5945 5938 14278 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14176 5938 5660 14278 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14177 5714 5828 14279 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14178 5828 5708 14279 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14179 5708 5570 14279 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14180 5570 5714 14279 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14181 5795 5784 14280 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14182 5784 5893 14280 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14183 5893 5882 14280 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14184 5882 5795 14280 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14185 5863 5896 14281 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14186 5896 5765 14281 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14187 5765 5712 14281 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14188 5712 5863 14281 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14189 5655 5765 14282 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14190 5765 5784 14282 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14191 5784 5681 14282 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14192 5681 5655 14282 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14193 5701 5795 14283 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14194 5795 5840 14283 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14195 5840 5728 14283 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14196 5728 5701 14283 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14197 5583 5578 14284 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14198 5578 5681 14284 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14199 5681 5701 14284 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14200 5701 5583 14284 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14201 5629 5655 14285 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14202 5655 5566 14285 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14203 5566 5558 14285 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14204 5558 5629 14285 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14205 5569 5587 14286 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14206 5587 5728 14286 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14207 5728 5714 14286 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14208 5714 5569 14286 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14209 6320 5935 14287 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14210 5935 5938 14287 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14211 5938 6353 14287 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14212 6353 6320 14287 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14213 5661 5659 14288 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14214 5659 5935 14288 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14215 5935 5941 14288 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14216 5941 5661 14288 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14217 6299 5950 14289 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14218 5950 5941 14289 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14219 5941 6304 14289 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14220 6304 6299 14289 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14221 5617 5664 14290 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14222 5664 5950 14290 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14223 5950 5898 14290 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14224 5898 5617 14290 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14225 5838 5616 14291 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14226 5616 5898 14291 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14227 5898 6111 14291 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14228 6111 5838 14291 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14229 6304 6320 14292 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14230 6320 6776 14292 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14231 6776 6744 14292 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14232 6744 6304 14292 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14233 6111 6299 14293 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14234 6299 6712 14293 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14235 6712 6536 14293 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14236 6536 6111 14293 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14237 7327 7502 14294 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14238 7502 7505 14294 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14239 7505 7312 14294 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14240 7312 7327 14294 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14241 7493 7505 14295 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14242 7505 7717 14295 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14243 7717 7664 14295 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14244 7664 7493 14295 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14245 7860 7717 14296 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14246 7717 7720 14296 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14247 7720 7876 14296 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14248 7876 7860 14296 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14249 7737 7720 14297 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14250 7720 7502 14297 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14251 7502 7512 14297 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14252 7512 7737 14297 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14253 7000 7144 14298 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14254 7144 7047 14298 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14255 7047 6906 14298 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14256 6906 7000 14298 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14257 7035 7047 14299 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14258 7047 7312 14299 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14259 7312 7302 14299 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14260 7302 7035 14299 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14261 7347 7327 14300 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14262 7327 7144 14300 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14263 7144 7180 14300 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14264 7180 7347 14300 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14265 7364 7538 14301 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14266 7538 7512 14301 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14267 7512 7347 14301 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14268 7347 7364 14301 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14269 7907 7737 14302 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14270 7737 7767 14302 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14271 7767 7919 14302 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14272 7919 7907 14302 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14273 7706 7767 14303 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14274 7767 7538 14303 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14275 7538 7509 14303 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14276 7509 7706 14303 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14277 7023 7176 14304 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14278 7176 7180 14304 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14279 7180 7036 14304 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14280 7036 7023 14304 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14281 7386 7364 14305 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14282 7364 7176 14305 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14283 7176 7186 14305 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14284 7186 7386 14305 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14285 7332 7445 14306 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14286 7445 7509 14306 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14287 7509 7386 14306 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14288 7386 7332 14306 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14289 7811 7706 14307 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14290 7706 7555 14307 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14291 7555 7636 14307 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14292 7636 7811 14307 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14293 7411 7555 14308 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14294 7555 7445 14308 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14295 7445 7324 14308 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14296 7324 7411 14308 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14297 7189 7332 14309 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14298 7332 7186 14309 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14299 7186 7076 14309 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14300 7076 7189 14309 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14301 7031 7134 14310 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14302 7134 7324 14310 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14303 7324 7189 14310 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14304 7189 7031 14310 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14305 7472 7411 14311 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14306 7411 7212 14311 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14307 7212 7313 14311 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14308 7313 7472 14311 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14309 7075 7212 14312 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14310 7212 7134 14312 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14311 7134 7011 14312 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14312 7011 7075 14312 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14313 6762 6923 14313 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14314 6923 7076 14313 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14315 7076 6945 14313 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14316 6945 6762 14313 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14317 6957 7031 14314 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14318 7031 6923 14314 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14319 6923 6821 14314 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14320 6821 6957 14314 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14321 6864 6922 14315 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14322 6922 7011 14315 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14323 7011 6957 14315 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14324 6957 6864 14315 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14325 7148 7075 14316 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14326 7075 6969 14316 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14327 6969 7025 14316 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14328 7025 7148 14316 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14329 6742 6969 14317 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14330 6969 6922 14317 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14331 6922 6727 14317 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14332 6727 6742 14317 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14333 6703 6864 14318 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14334 6864 6821 14318 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14335 6821 6655 14318 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14336 6655 6703 14318 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14337 6326 6333 14319 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14338 6333 6727 14319 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14339 6727 6703 14319 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14340 6703 6326 14319 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14341 6771 6742 14320 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14342 6742 6302 14320 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14343 6302 6307 14320 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14344 6307 6771 14320 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14345 5929 6302 14321 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14346 6302 6333 14321 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14347 6333 5968 14321 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14348 5968 5929 14321 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14349 6208 6287 14322 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14350 6287 6655 14322 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14351 6655 6576 14322 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14352 6576 6208 14322 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14353 5977 6326 14323 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14354 6326 6287 14323 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14355 6287 5953 14323 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14356 5953 5977 14323 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14357 5662 5658 14324 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14358 5658 5968 14324 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14359 5968 5977 14324 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14360 5977 5662 14324 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14361 5916 5929 14325 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14362 5929 5639 14325 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14363 5639 5633 14325 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14364 5633 5916 14325 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14365 5634 5651 14326 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14366 5651 5953 14326 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14367 5953 5920 14326 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14368 5920 5634 14326 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14369 7788 7860 14327 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14370 7860 7924 14327 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14371 7924 7836 14327 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14372 7836 7788 14327 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14373 7985 7924 14328 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14374 7924 7957 14328 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14375 7957 8031 14328 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14376 8031 7985 14328 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14377 7997 7957 14329 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14378 7957 7876 14329 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14379 7876 7902 14329 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14380 7902 7997 14329 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14381 8050 7997 14330 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14382 7997 8004 14330 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14383 8004 8048 14330 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14384 8048 8050 14330 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14385 8023 8004 14331 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14386 8004 7902 14331 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14387 7902 7911 14331 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14388 7911 8023 14331 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14389 8107 8023 14332 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14390 8023 8056 14332 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14391 8056 8158 14332 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14392 8158 8107 14332 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14393 8039 8056 14333 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14394 8056 7911 14333 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14395 7911 7907 14333 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14396 7907 8039 14333 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14397 8163 8039 14334 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14398 8039 8026 14334 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14399 8026 8139 14334 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14400 8139 8163 14334 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14401 8007 8026 14335 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14402 8026 7919 14335 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14403 7919 7917 14335 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14404 7917 8007 14335 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14405 8061 8007 14336 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14406 8007 7934 14336 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14407 7934 7968 14336 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14408 7968 8061 14336 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14409 7835 7934 14337 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14410 7934 7917 14337 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14411 7917 7811 14337 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14412 7811 7835 14337 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14413 7853 7835 14338 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14414 7835 7659 14338 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14415 7659 7689 14338 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14416 7689 7853 14338 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14417 7508 7659 14339 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14418 7659 7636 14339 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14419 7636 7472 14339 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14420 7472 7508 14339 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14421 7556 7508 14340 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14422 7508 7387 14340 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14423 7387 7457 14340 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14424 7457 7556 14340 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14425 7249 7387 14341 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14426 7387 7313 14341 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14427 7313 7148 14341 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14428 7148 7249 14341 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14429 7355 7249 14342 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14430 7249 7115 14342 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14431 7115 7233 14342 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14432 7233 7355 14342 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14433 6859 7115 14343 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14434 7115 7025 14343 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14435 7025 6771 14343 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14436 6771 6859 14343 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14437 6916 6859 14344 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14438 6859 6362 14344 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14439 6362 6393 14344 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14440 6393 6916 14344 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14441 5932 6362 14345 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14442 6362 6307 14345 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14443 6307 5916 14345 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14444 5916 5932 14345 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14445 5949 5932 14346 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14446 5932 5641 14346 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14447 5641 5653 14346 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14448 5653 5949 14346 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14449 8257 8294 14347 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14450 8294 8313 14347 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14451 8313 8253 14347 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14452 8253 8257 14347 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14453 8274 8313 14348 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14454 8313 8377 14348 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14455 8377 8358 14348 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14456 8358 8274 14348 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14457 8436 8377 14349 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14458 8377 8341 14349 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14459 8341 8382 14349 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14460 8382 8436 14349 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14461 8286 8341 14350 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14462 8341 8294 14350 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14463 8294 8255 14350 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14464 8255 8286 14350 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14465 8209 8230 14351 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14466 8230 8210 14351 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14467 8210 8174 14351 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14468 8174 8209 14351 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14469 8141 8210 14352 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14470 8210 8253 14352 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14471 8253 8208 14352 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14472 8208 8141 14352 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14473 8235 8257 14353 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14474 8257 8230 14353 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14475 8230 8217 14353 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14476 8217 8235 14353 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14477 8175 8198 14354 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14478 8198 8153 14354 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14479 8153 8126 14354 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14480 8126 8175 14354 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14481 8033 8153 14355 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14482 8153 8174 14355 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14483 8174 8066 14355 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14484 8066 8033 14355 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14485 8204 8209 14356 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14486 8209 8198 14356 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14487 8198 8196 14356 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14488 8196 8204 14356 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14489 8088 8143 14357 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14490 8143 8089 14357 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14491 8089 8040 14357 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14492 8040 8088 14357 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14493 7975 8089 14358 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14494 8089 8126 14358 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14495 8126 8001 14358 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14496 8001 7975 14358 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14497 8189 8175 14359 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14498 8175 8143 14359 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14499 8143 8151 14359 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14500 8151 8189 14359 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14501 7881 7985 14360 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14502 7985 8040 14360 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14503 8040 7936 14360 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14504 7936 7881 14360 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14505 8095 8088 14361 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14506 8088 8031 14361 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14507 8031 8050 14361 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14508 8050 8095 14361 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14509 8108 8095 14362 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14510 8095 8049 14362 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14511 8049 8051 14362 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14512 8051 8108 14362 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14513 8047 8049 14363 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14514 8049 8048 14363 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14515 8048 8063 14363 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14516 8063 8047 14363 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14517 8158 8163 14364 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14518 8163 8218 14364 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14519 8218 8207 14364 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14520 8207 8158 14364 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14521 8251 8218 14365 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14522 8218 8195 14365 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14523 8195 8234 14365 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14524 8234 8251 14365 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14525 8138 8195 14366 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14526 8195 8139 14366 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14527 8139 8061 14366 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14528 8061 8138 14366 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14529 8184 8138 14367 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14530 8138 8017 14367 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14531 8017 8093 14367 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14532 8093 8184 14367 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14533 7892 8017 14368 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14534 8017 7968 14368 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14535 7968 7853 14368 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14536 7853 7892 14368 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14537 7949 7892 14369 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14538 7892 7736 14369 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14539 7736 7803 14369 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14540 7803 7949 14369 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14541 7621 7736 14370 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14542 7736 7689 14370 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14543 7689 7556 14370 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14544 7556 7621 14370 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14545 7684 7621 14371 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14546 7621 7518 14371 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14547 7518 7613 14371 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14548 7613 7684 14371 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14549 7451 7518 14372 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14550 7518 7457 14372 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14551 7457 7355 14372 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14552 7355 7451 14372 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14553 7536 7451 14373 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14554 7451 7370 14373 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14555 7370 7481 14373 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14556 7481 7536 14373 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14557 7354 7370 14374 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14558 7370 7233 14374 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14559 7233 7181 14374 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14560 7181 7354 14374 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14561 7704 7634 14375 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14562 7634 7588 14375 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14563 7588 7668 14375 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14564 7668 7704 14375 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14565 7594 7588 14376 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14566 7588 7481 14376 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14567 7481 7474 14376 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14568 7474 7594 14376 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14569 7613 7536 14377 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14570 7536 7634 14377 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14571 7634 7685 14377 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14572 7685 7613 14377 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14573 7838 7769 14378 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14574 7769 7685 14378 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14575 7685 7754 14378 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14576 7754 7838 14378 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14577 7803 7684 14379 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14578 7684 7769 14379 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14579 7769 7872 14379 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14580 7872 7803 14379 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14581 8121 8027 14380 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14582 8027 7872 14380 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14583 7872 7939 14380 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14584 7939 8121 14380 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14585 8093 7949 14381 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14586 7949 8027 14381 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14587 8027 8169 14381 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14588 8169 8093 14381 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14589 8269 8227 14382 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14590 8227 8169 14382 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14591 8169 8222 14382 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14592 8222 8269 14382 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14593 8234 8184 14383 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14594 8184 8227 14383 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14595 8227 8260 14383 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14596 8260 8234 14383 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14597 8295 8267 14384 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14598 8267 8260 14384 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14599 8260 8293 14384 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14600 8293 8295 14384 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14601 8240 8251 14385 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14602 8251 8267 14385 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14603 8267 8249 14385 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14604 8249 8240 14385 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14605 8223 8206 14386 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14606 8206 8249 14386 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14607 8249 8271 14386 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14608 8271 8223 14386 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14609 8207 8240 14387 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14610 8240 8188 14387 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14611 8188 8162 14387 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14612 8162 8207 14387 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14613 8134 8188 14388 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14614 8188 8206 14388 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14615 8206 8160 14388 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14616 8160 8134 14388 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14617 8113 8082 14389 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14618 8082 8160 14389 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14619 8160 8176 14389 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14620 8176 8113 14389 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14621 8109 8134 14390 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14622 8134 8060 14390 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14623 8060 8047 14390 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14624 8047 8109 14390 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14625 8051 8060 14391 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14626 8060 8082 14391 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14627 8082 8058 14391 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14628 8058 8051 14391 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14629 8106 8097 14392 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14630 8097 8058 14392 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14631 8058 8083 14392 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14632 8083 8106 14392 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14633 8151 8108 14393 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14634 8108 8097 14393 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14635 8097 8136 14393 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14636 8136 8151 14393 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14637 8196 8189 14394 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14638 8189 8136 14394 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14639 8136 8149 14394 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14640 8149 8196 14394 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14641 8162 8109 14395 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14642 8109 8063 14395 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14643 8063 8107 14395 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14644 8107 8162 14395 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14645 8435 8436 14396 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14646 8436 8497 14396 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14647 8497 8517 14396 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14648 8517 8435 14396 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14649 8354 8421 14397 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14650 8421 8382 14397 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14651 8382 8319 14397 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14652 8319 8354 14397 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14653 8232 8254 14398 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14654 8254 8319 14398 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14655 8319 8286 14398 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14656 8286 8232 14398 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14657 8244 8280 14399 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14658 8280 8254 14399 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14659 8254 8216 14399 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14660 8216 8244 14399 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14661 8173 8199 14400 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14662 8199 8216 14400 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14663 8216 8193 14400 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14664 8193 8173 14400 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14665 8245 8233 14401 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14666 8233 8199 14401 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14667 8199 8215 14401 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14668 8215 8245 14401 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14669 8237 8261 14402 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14670 8261 8215 14402 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14671 8215 8191 14402 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14672 8191 8237 14402 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14673 8342 8285 14403 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14674 8285 8261 14403 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14675 8261 8315 14403 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14676 8315 8342 14403 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14677 8351 8371 14404 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14678 8371 8315 14404 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14679 8315 8287 14404 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14680 8287 8351 14404 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14681 8437 8404 14405 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14682 8404 8371 14405 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14683 8371 8416 14405 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14684 8416 8437 14405 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14685 8430 8451 14406 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14686 8451 8416 14406 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14687 8416 8395 14406 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14688 8395 8430 14406 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14689 8181 8200 14407 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14690 8200 8255 14407 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14691 8255 8235 14407 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14692 8235 8181 14407 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14693 8193 8232 14408 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14694 8232 8200 14408 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14695 8200 8168 14408 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14696 8168 8193 14408 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14697 8146 8159 14409 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14698 8159 8168 14409 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14699 8168 8154 14409 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14700 8154 8146 14409 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14701 8191 8173 14410 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14702 8173 8159 14410 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14703 8159 8171 14410 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14704 8171 8191 14410 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14705 8194 8214 14411 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14706 8214 8171 14411 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14707 8171 8150 14411 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14708 8150 8194 14411 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14709 8287 8237 14412 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14710 8237 8214 14412 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14711 8214 8262 14412 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14712 8262 8287 14412 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14713 8300 8327 14413 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14714 8327 8262 14413 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14715 8262 8243 14413 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14716 8243 8300 14413 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14717 8395 8351 14414 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14718 8351 8327 14414 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14719 8327 8363 14414 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14720 8363 8395 14414 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14721 8336 8381 14415 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14722 8381 8363 14415 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14723 8363 8332 14415 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14724 8332 8336 14415 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14725 8431 8430 14416 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14726 8430 8381 14416 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14727 8381 8367 14416 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14728 8367 8431 14416 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14729 8266 8326 14417 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14730 8326 8367 14417 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14731 8367 8314 14417 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14732 8314 8266 14417 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14733 8330 8397 14418 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14734 8397 8326 14418 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14735 8326 8247 14418 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14736 8247 8330 14418 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14737 8003 8128 14419 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14738 8128 8247 14419 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14739 8247 8178 14419 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14740 8178 8003 14419 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14741 8125 8236 14420 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14742 8236 8128 14420 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14743 8128 7973 14420 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14744 7973 8125 14420 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14745 7801 7868 14421 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14746 7868 7973 14421 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14747 7973 7889 14421 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14748 7889 7801 14421 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14749 7910 7958 14422 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14750 7958 7868 14422 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14751 7868 7822 14422 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14752 7822 7910 14422 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14753 7729 7826 14423 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14754 7826 7822 14423 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14755 7822 7742 14423 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14756 7742 7729 14423 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14757 7979 7942 14424 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14758 7942 7826 14424 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14759 7826 7847 14424 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14760 7847 7979 14424 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14761 7741 7729 14425 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14762 7729 7668 14425 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14763 7668 7679 14425 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14764 7679 7741 14425 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14765 7754 7704 14426 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14766 7704 7742 14426 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14767 7742 7801 14426 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14768 7801 7754 14426 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14769 7939 7838 14427 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14770 7838 7889 14427 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14771 7889 8003 14427 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14772 8003 7939 14427 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14773 8222 8121 14428 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14774 8121 8178 14428 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14775 8178 8266 14428 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14776 8266 8222 14428 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14777 8293 8269 14429 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14778 8269 8314 14429 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14779 8314 8336 14429 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14780 8336 8293 14429 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14781 8271 8295 14430 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14782 8295 8332 14430 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14783 8332 8300 14430 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14784 8300 8271 14430 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14785 8176 8223 14431 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14786 8223 8243 14431 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14787 8243 8194 14431 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14788 8194 8176 14431 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14789 8083 8113 14432 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14790 8113 8150 14432 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14791 8150 8127 14432 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14792 8127 8083 14432 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14793 8148 8135 14433 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14794 8135 8127 14433 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14795 8127 8146 14433 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14796 8146 8148 14433 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14797 8149 8106 14434 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14798 8106 8135 14434 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14799 8135 8165 14434 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14800 8165 8149 14434 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14801 8217 8204 14435 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14802 8204 8165 14435 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14803 8165 8172 14435 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14804 8172 8217 14435 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14805 8154 8181 14436 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14806 8181 8172 14436 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14807 8172 8148 14436 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14808 8148 8154 14436 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14809 5695 5690 14437 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14810 5690 5580 14437 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14811 5580 5581 14437 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14812 5581 5695 14437 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14813 5626 5582 14438 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14814 5582 5698 14438 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14815 5698 5752 14438 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14816 5752 5626 14438 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14817 5790 5698 14439 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14818 5698 5690 14439 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14819 5690 5791 14439 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14820 5791 5790 14439 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14821 5721 5706 14440 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14822 5706 5585 14440 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14823 5585 5586 14440 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14824 5586 5721 14440 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14825 5808 5695 14441 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14826 5695 5706 14441 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14827 5706 5831 14441 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14828 5831 5808 14441 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14829 5758 5742 14442 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14830 5742 5591 14442 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14831 5591 5594 14442 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14832 5594 5758 14442 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14833 5849 5721 14443 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14834 5721 5742 14443 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14835 5742 5861 14443 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14836 5861 5849 14443 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14837 5880 5869 14444 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14838 5869 5791 14444 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14839 5791 5808 14444 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14840 5808 5880 14444 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14841 5866 5790 14445 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14842 5790 5859 14445 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14843 5859 5906 14445 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14844 5906 5866 14445 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14845 5921 5859 14446 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14846 5859 5869 14446 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14847 5869 5948 14446 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14848 5948 5921 14446 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14849 5922 5903 14447 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14850 5903 5831 14447 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14851 5831 5849 14447 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14852 5849 5922 14447 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14853 5969 5880 14448 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14854 5880 5903 14448 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14855 5903 5996 14448 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14856 5996 5969 14448 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14857 5947 5931 14449 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14858 5931 5861 14449 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14859 5861 5873 14449 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14860 5873 5947 14449 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14861 6006 5922 14450 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14862 5922 5931 14450 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14863 5931 6008 14450 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14864 6008 6006 14450 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14865 6056 6037 14451 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14866 6037 5948 14451 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14867 5948 5969 14451 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14868 5969 6056 14451 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14869 5965 5921 14452 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14870 5921 6010 14452 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14871 6010 6030 14452 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14872 6030 5965 14452 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14873 6117 6010 14453 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14874 6010 6037 14453 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14875 6037 6156 14453 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14876 6156 6117 14453 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14877 6073 6065 14454 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14878 6065 5996 14454 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14879 5996 6006 14454 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14880 6006 6073 14454 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14881 6178 6056 14455 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14882 6056 6065 14455 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14883 6065 6184 14455 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14884 6184 6178 14455 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14885 6099 6088 14456 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14886 6088 6008 14456 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14887 6008 6022 14456 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14888 6022 6099 14456 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14889 6125 6073 14457 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14890 6073 6088 14457 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14891 6088 6139 14457 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14892 6139 6125 14457 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14893 6460 6261 14458 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14894 6261 6305 14458 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14895 6305 6572 14458 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14896 6572 6460 14458 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14897 6371 6305 14459 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14898 6305 6156 14459 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14899 6156 6178 14459 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14900 6178 6371 14459 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14901 6118 6117 14460 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14902 6117 6180 14460 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14903 6180 6174 14460 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14904 6174 6118 14460 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14905 6214 6180 14461 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14906 6180 6261 14461 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14907 6261 6246 14461 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14908 6246 6214 14461 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14909 6416 6388 14462 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14910 6388 6184 14462 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14911 6184 6203 14462 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14912 6203 6416 14462 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14913 6644 6371 14463 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14914 6371 6388 14463 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14915 6388 6648 14463 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14916 6648 6644 14463 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14917 6471 6432 14464 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14918 6432 6241 14464 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14919 6241 6278 14464 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14920 6278 6471 14464 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14921 6149 6241 14465 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14922 6241 6203 14465 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14923 6203 6125 14465 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14924 6125 6149 14465 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14925 6649 6416 14466 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14926 6416 6432 14466 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14927 6432 6645 14466 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14928 6645 6649 14466 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14929 5712 5629 14467 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14930 5629 5557 14467 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14931 5557 5626 14467 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14932 5626 5712 14467 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14933 5962 5863 14468 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14934 5863 5752 14468 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14935 5752 5858 14468 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14936 5858 5962 14468 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14937 5858 5866 14469 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14938 5866 6004 14469 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14939 6004 6000 14469 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14940 6000 5858 14469 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14941 6081 6004 14470 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14942 6004 6040 14470 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14943 6040 6113 14470 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14944 6113 6081 14470 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14945 6068 6040 14471 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14946 6040 5906 14471 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14947 5906 5965 14471 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14948 5965 6068 14471 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14949 6147 6094 14472 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14950 6094 6030 14472 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14951 6030 6118 14472 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14952 6118 6147 14472 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14953 6229 6068 14473 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14954 6068 6094 14473 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14955 6094 6226 14473 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14956 6226 6229 14473 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14957 6239 6188 14474 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14958 6188 6212 14474 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14959 6212 6247 14474 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14960 6247 6239 14474 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14961 6270 6212 14475 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14962 6212 6204 14475 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14963 6204 6267 14475 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14964 6267 6270 14475 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14965 6235 6204 14476 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14966 6204 6174 14476 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14967 6174 6213 14476 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14968 6213 6235 14476 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14969 6256 6147 14477 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14970 6147 6188 14477 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14971 6188 6295 14477 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14972 6295 6256 14477 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14973 6356 6275 14478 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14974 6275 6291 14478 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14975 6291 6375 14478 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14976 6375 6356 14478 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14977 6327 6291 14479 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14978 6291 6294 14479 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14979 6294 6344 14479 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14980 6344 6327 14479 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14981 6554 6294 14480 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14982 6294 6277 14480 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14983 6277 6545 14480 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14984 6545 6554 14480 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14985 6271 6277 14481 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14986 6277 6267 14481 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14987 6267 6251 14481 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14988 6251 6271 14481 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14989 6257 6270 14482 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14990 6270 6275 14482 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14991 6275 6264 14482 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14992 6264 6257 14482 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14993 6503 6460 14483 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14994 6460 6830 14483 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14995 6830 6873 14483 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14996 6873 6503 14483 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14997 6898 6830 14484 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14998 6830 6572 14484 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 14999 6572 6644 14484 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15000 6644 6898 14484 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15001 5806 5798 14485 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15002 5798 5606 14485 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15003 5606 5610 14485 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15004 5610 5806 14485 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15005 5595 5602 14486 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15006 5602 5779 14486 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15007 5779 5766 14486 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15008 5766 5595 14486 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15009 5904 5779 14487 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15010 5779 5798 14487 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15011 5798 5926 14487 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15012 5926 5904 14487 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15013 6029 6015 14488 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15014 6015 5926 14488 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15015 5926 5934 14488 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15016 5934 6029 14488 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15017 5885 5904 14489 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15018 5904 5998 14489 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15019 5998 5970 14489 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15020 5970 5885 14489 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15021 6061 5998 14490 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15022 5998 6015 14490 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15023 6015 6078 14490 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15024 6078 6061 14490 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15025 6112 6129 14491 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15026 6129 6078 14491 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15027 6078 6090 14491 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15028 6090 6112 14491 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15029 6042 6061 14492 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15030 6061 6124 14492 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15031 6124 6110 14492 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15032 6110 6042 14492 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15033 6181 6124 14493 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15034 6124 6129 14493 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15035 6129 6193 14493 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15036 6193 6181 14493 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15037 6338 6319 14494 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15038 6319 6193 14494 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15039 6193 6185 14494 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15040 6185 6338 14494 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15041 6168 6181 14495 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15042 6181 6283 14495 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15043 6283 6252 14495 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15044 6252 6168 14495 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15045 6355 6283 14496 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15046 6283 6319 14496 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15047 6319 6424 14496 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15048 6424 6355 14496 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15049 6540 6500 14497 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15050 6500 6424 14497 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15051 6424 6456 14497 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15052 6456 6540 14497 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15053 6288 6355 14498 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15054 6355 6411 14498 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15055 6411 6328 14498 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15056 6328 6288 14498 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15057 6443 6411 14499 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15058 6411 6500 14499 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15059 6500 6544 14499 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15060 6544 6443 14499 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15061 6383 6434 14500 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15062 6434 6278 14500 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15063 6278 6243 14500 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15064 6243 6383 14500 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15065 6626 6471 14501 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15066 6471 6434 14501 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15067 6434 6597 14501 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15068 6597 6626 14501 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15069 6350 6443 14502 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15070 6443 6448 14502 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15071 6448 6352 14502 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15072 6352 6350 14502 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15073 6445 6448 14503 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15074 6448 6535 14503 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15075 6535 6530 14503 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15076 6530 6445 14503 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15077 6567 6535 14504 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15078 6535 6544 14504 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15079 6544 6575 14504 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15080 6575 6567 14504 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15081 6509 6594 14505 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15082 6594 6555 14505 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15083 6555 6485 14505 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15084 6485 6509 14505 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15085 6571 6555 14506 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15086 6555 6675 14506 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15087 6675 6697 14506 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15088 6697 6571 14506 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15089 6663 6675 14507 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15090 6675 6594 14507 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15091 6594 6599 14507 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15092 6599 6663 14507 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15093 6463 6480 14508 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15094 6480 6518 14508 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15095 6518 6502 14508 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15096 6502 6463 14508 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15097 6558 6518 14509 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15098 6518 6521 14509 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15099 6521 6592 14509 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15100 6592 6558 14509 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15101 6553 6521 14510 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15102 6521 6480 14510 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15103 6480 6504 14510 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15104 6504 6553 14510 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15105 6552 6510 14511 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15106 6510 6497 14511 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15107 6497 6543 14511 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15108 6543 6552 14511 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15109 6495 6497 14512 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15110 6497 6454 14512 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15111 6454 6452 14512 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15112 6452 6495 14512 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15113 6396 6454 14513 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15114 6454 6466 14513 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15115 6466 6418 14513 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15116 6418 6396 14513 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15117 6439 6466 14514 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15118 6466 6510 14514 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15119 6510 6486 14514 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15120 6486 6439 14514 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15121 6273 6366 14515 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15122 6366 6401 14515 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15123 6401 6293 14515 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15124 6293 6273 14515 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15125 6433 6401 14516 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15126 6401 6486 14516 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15127 6486 6513 14516 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15128 6513 6433 14516 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15129 6387 6439 14517 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15130 6439 6366 14517 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15131 6366 6340 14517 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15132 6340 6387 14517 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15133 6039 6104 14518 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15134 6104 6144 14518 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15135 6144 6076 14518 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15136 6076 6039 14518 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15137 6164 6144 14519 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15138 6144 6293 14519 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15139 6293 6316 14519 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15140 6316 6164 14519 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15141 6219 6273 14520 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15142 6273 6104 14520 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15143 6104 6075 14520 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15144 6075 6219 14520 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15145 6074 6060 14521 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15146 6060 6076 14521 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15147 6076 6098 14521 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15148 6098 6074 14521 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15149 5993 6039 14522 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15150 6039 6060 14522 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15151 6060 6009 14522 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15152 6009 5993 14522 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15153 5772 5894 14523 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15154 5894 5915 14523 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15155 5915 5783 14523 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15156 5783 5772 14523 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15157 5928 5915 14524 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15158 5915 6009 14524 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15159 6009 6021 14524 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15160 6021 5928 14524 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15161 5972 5993 14525 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15162 5993 5894 14525 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15163 5894 5891 14525 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15164 5891 5972 14525 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15165 5607 5603 14526 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15166 5603 5783 14526 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15167 5783 5801 14526 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15168 5801 5607 14526 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15169 5743 5772 14527 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15170 5772 5597 14527 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15171 5597 5592 14527 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15172 5592 5743 14527 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15173 5665 5686 14528 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15174 5686 5579 14528 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15175 5579 5568 14528 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15176 5568 5665 14528 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15177 5836 5743 14529 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15178 5743 5686 14529 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15179 5686 5759 14529 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15180 5759 5836 14529 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15181 5856 5837 14530 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15182 5837 5786 14530 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15183 5786 5829 14530 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15184 5829 5856 14530 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15185 5775 5786 14531 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15186 5786 5797 14531 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15187 5797 5777 14531 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15188 5777 5775 14531 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15189 5782 5797 14532 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15190 5797 5848 14532 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15191 5848 5847 14532 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15192 5847 5782 14532 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15193 5878 5848 14533 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15194 5848 5837 14533 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15195 5837 5870 14533 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15196 5870 5878 14533 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15197 5676 5672 14534 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15198 5672 5573 14534 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15199 5573 5574 14534 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15200 5574 5676 14534 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15201 5727 5665 14535 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15202 5665 5672 14535 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15203 5672 5738 14535 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15204 5738 5727 14535 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15205 5822 5775 14536 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15206 5775 5794 14536 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15207 5794 5839 14536 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15208 5839 5822 14536 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15209 5773 5794 14537 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15210 5794 5777 14537 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15211 5777 5762 14537 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15212 5762 5773 14537 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15213 5951 5936 14538 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15214 5936 5818 14538 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15215 5818 5811 14538 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15216 5811 5951 14538 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15217 5738 5818 14539 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15218 5818 5845 14539 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15219 5845 5773 14539 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15220 5773 5738 14539 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15221 5865 5845 14540 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15222 5845 5933 14540 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15223 5933 5946 14540 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15224 5946 5865 14540 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15225 6062 5933 14541 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15226 5933 5936 14541 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15227 5936 6087 14541 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15228 6087 6062 14541 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15229 6321 6284 14542 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15230 6284 6087 14542 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15231 6087 6146 14542 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15232 6146 6321 14542 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15233 6031 6062 14543 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15234 6062 6253 14543 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15235 6253 6183 14543 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15236 6183 6031 14543 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15237 6359 6253 14544 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15238 6253 6284 14544 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15239 6284 6396 14544 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15240 6396 6359 14544 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15241 5663 5680 14545 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15242 5680 5577 14545 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15243 5577 5563 14545 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15244 5563 5663 14545 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15245 5811 5676 14546 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15246 5676 5680 14546 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15247 5680 5827 14546 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15248 5827 5811 14546 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15249 5780 5663 14547 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15250 5663 5562 14547 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15251 5562 5702 14547 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15252 5702 5780 14547 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15253 5983 5975 14548 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15254 5975 5827 14548 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15255 5827 5780 14548 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15256 5780 5983 14548 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15257 6146 5951 14549 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15258 5951 5975 14549 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15259 5975 6176 14549 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15260 6176 6146 14549 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15261 5961 5967 14550 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15262 5967 5702 14550 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15263 5702 5671 14550 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15264 5671 5961 14550 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15265 6189 5983 14551 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15266 5983 5967 14551 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15267 5967 6215 14551 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15268 6215 6189 14551 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15269 5835 5862 14552 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15270 5862 5631 14552 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15271 5631 5621 14552 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15272 5621 5835 14552 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15273 5668 5654 14553 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15274 5654 5917 14553 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15275 5917 5955 14553 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15276 5955 5668 14553 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15277 6155 5917 14554 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15278 5917 5862 14554 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15279 5862 6057 14554 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15280 6057 6155 14554 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15281 5875 5864 14555 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15282 5864 5632 14555 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15283 5632 5635 14555 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15284 5635 5875 14555 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15285 5614 5620 14556 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15286 5620 5834 14556 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15287 5834 5814 14556 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15288 5814 5614 14556 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15289 6014 5834 14557 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15290 5834 5864 14557 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15291 5864 6072 14557 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15292 6072 6014 14557 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15293 5884 5895 14558 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15294 5895 5647 14558 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15295 5647 5640 14558 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15296 5640 5884 14558 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15297 5637 5642 14559 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15298 5642 5886 14559 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15299 5886 5879 14559 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15300 5879 5637 14559 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15301 6133 5886 14560 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15302 5886 5895 14560 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15303 5895 6143 14560 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15304 6143 6133 14560 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15305 6504 6399 14561 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15306 6399 6417 14561 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15307 6417 6589 14561 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15308 6589 6504 14561 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15309 6487 6417 14562 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15310 6417 6176 14562 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15311 6176 6189 14562 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15312 6189 6487 14562 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15313 6452 6321 14563 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15314 6321 6399 14563 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15315 6399 6463 14563 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15316 6463 6452 14563 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15317 6524 6511 14564 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15318 6511 6215 14564 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15319 6215 6227 14564 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15320 6227 6524 14564 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15321 6617 6487 14565 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15322 6487 6511 14565 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15323 6511 6635 14565 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15324 6635 6617 14565 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15325 6194 6280 14566 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15326 6280 6057 14566 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15327 6057 6011 14566 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15328 6011 6194 14566 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15329 6220 6155 14567 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15330 6155 6428 14567 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15331 6428 6512 14567 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15332 6512 6220 14567 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15333 6687 6428 14568 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15334 6428 6280 14568 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15335 6280 6591 14568 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15336 6591 6687 14568 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15337 6384 6331 14569 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15338 6331 6072 14569 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15339 6072 6108 14569 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15340 6108 6384 14569 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15341 5988 6014 14570 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15342 6014 6223 14570 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15343 6223 6171 14570 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15344 6171 5988 14570 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15345 6539 6223 14571 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15346 6223 6331 14571 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15347 6331 6634 14571 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15348 6634 6539 14571 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15349 6374 6407 14572 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15350 6407 6143 14572 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15351 6143 6123 14572 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15352 6123 6374 14572 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15353 6122 6133 14573 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15354 6133 6404 14573 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15355 6404 6395 14573 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15356 6395 6122 14573 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15357 6683 6404 14574 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15358 6404 6407 14574 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15359 6407 6660 14574 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15360 6660 6683 14574 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15361 6627 6553 14575 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15362 6553 6606 14575 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15363 6606 6694 14575 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15364 6694 6627 14575 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15365 6630 6606 14576 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15366 6606 6589 14576 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15367 6589 6617 14576 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15368 6617 6630 14576 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15369 6728 6630 14577 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15370 6630 6635 14577 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15371 6635 6738 14577 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15372 6738 6728 14577 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15373 6783 6813 14578 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15374 6813 6591 14578 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15375 6591 6516 14578 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15376 6516 6783 14578 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15377 6733 6687 14579 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15378 6687 6882 14579 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15379 6882 6921 14579 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15380 6921 6733 14579 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15381 7037 6882 14580 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15382 6882 6813 14580 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15383 6813 7010 14580 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15384 7010 7037 14580 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15385 6913 6869 14581 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15386 6869 6634 14581 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15387 6634 6682 14581 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15388 6682 6913 14581 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15389 6475 6539 14582 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15390 6539 6774 14582 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15391 6774 6745 14582 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15392 6745 6475 14582 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15393 6983 6774 14583 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15394 6774 6869 14583 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15395 6869 7043 14583 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15396 7043 6983 14583 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15397 6758 6842 14584 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15398 6842 6660 14584 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15399 6660 6609 14584 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15400 6609 6758 14584 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15401 6692 6683 14585 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15402 6683 6891 14585 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15403 6891 6917 14585 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15404 6917 6692 14585 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15405 7079 6891 14586 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15406 6891 6842 14586 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15407 6842 7035 14586 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15408 7035 7079 14586 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15409 6814 6947 14587 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15410 6947 6849 14587 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15411 6849 6739 14587 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15412 6739 6814 14587 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15413 6854 6849 14588 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15414 6849 7042 14588 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15415 7042 7051 14588 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15416 7051 6854 14588 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15417 7135 7042 14589 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15418 7042 6947 14589 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15419 6947 7015 14589 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15420 7015 7135 14589 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15421 7243 7197 14590 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15422 7197 7065 14590 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15423 7065 7080 14590 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15424 7080 7243 14590 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15425 6920 7065 14591 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15426 7065 7015 14591 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15427 7015 6883 14591 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15428 6883 6920 14591 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15429 7262 7135 14592 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15430 7135 7197 14592 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15431 7197 7338 14592 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15432 7338 7262 14592 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15433 7129 7152 14593 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15434 7152 7010 14593 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15435 7010 6984 14593 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15436 6984 7129 14593 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15437 7074 7037 14594 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15438 7037 7187 14594 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15439 7187 7222 14594 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15440 7222 7074 14594 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15441 7331 7187 14595 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15442 7187 7152 14595 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15443 7152 7267 14595 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15444 7267 7331 14595 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15445 7289 7227 14596 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15446 7227 7043 14596 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15447 7043 7095 14596 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15448 7095 7289 14596 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15449 6952 6983 14597 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15450 6983 7150 14597 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15451 7150 7110 14597 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15452 7110 6952 14597 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15453 7308 7150 14598 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15454 7150 7227 14598 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15455 7227 7373 14598 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15456 7373 7308 14598 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15457 7102 7079 14599 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15458 7079 7310 14599 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15459 7310 7307 14599 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15460 7307 7102 14599 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15461 7460 7310 14600 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15462 7310 7302 14600 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15463 7302 7493 14600 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15464 7493 7460 14600 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15465 6872 6893 14601 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15466 6893 6648 14601 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15467 6648 6649 14601 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15468 6649 6872 14601 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15469 7149 6898 14602 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15470 6898 6893 14602 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15471 6893 7132 14602 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15472 7132 7149 14602 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15473 6766 6828 14603 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15474 6828 6645 14603 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15475 6645 6626 14603 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15476 6626 6766 14603 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15477 7094 6872 14604 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15478 6872 6828 14604 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15479 6828 7032 14604 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15480 7032 7094 14604 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15481 7380 7422 14605 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15482 7422 7132 14605 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15483 7132 7094 14605 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15484 7094 7380 14605 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15485 7159 7149 14606 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15486 7149 7450 14606 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15487 7450 7461 14606 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15488 7461 7159 14606 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15489 7619 7450 14607 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15490 7450 7422 14607 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15491 7422 7638 14607 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15492 7638 7619 14607 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15493 7195 7309 14608 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15494 7309 7032 14608 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15495 7032 6973 14608 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15496 6973 7195 14608 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15497 7609 7380 14609 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15498 7380 7309 14609 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15499 7309 7514 14609 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15500 7514 7609 14609 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15501 7792 7674 14610 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15502 7674 7812 14610 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15503 7812 7967 14610 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15504 7967 7792 14610 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15505 7832 7812 14611 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15506 7812 7638 14611 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15507 7638 7609 14611 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15508 7609 7832 14611 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15509 7611 7619 14612 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15510 7619 7674 14612 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15511 7674 7622 14612 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15512 7622 7611 14612 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15513 8012 7832 14613 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15514 7832 7726 14613 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15515 7726 7903 14613 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15516 7903 8012 14613 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15517 7642 7726 14614 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15518 7726 7514 14614 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15519 7514 7444 14614 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15520 7444 7642 14614 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15521 6706 6734 14615 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15522 6734 6597 14615 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15523 6597 6578 14615 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15524 6578 6706 14615 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15525 6973 6766 14616 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15526 6766 6734 14616 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15527 6734 6912 14616 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15528 6912 6973 14616 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15529 7073 7124 14617 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15530 7124 6912 14617 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15531 6912 6866 14617 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15532 6866 7073 14617 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15533 7444 7195 14618 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15534 7195 7124 14618 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15535 7124 7361 14618 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15536 7361 7444 14618 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15537 7558 7571 14619 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15538 7571 7361 14619 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15539 7361 7343 14619 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15540 7343 7558 14619 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15541 7824 7642 14620 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15542 7642 7571 14620 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15543 7571 7749 14620 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15544 7749 7824 14620 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15545 7816 7866 14621 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15546 7866 7749 14621 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15547 7749 7698 14621 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15548 7698 7816 14621 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15549 7903 7824 14622 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15550 7824 7938 14622 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15551 7938 8043 14622 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15552 8043 7903 14622 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15553 8080 7938 14623 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15554 7938 7866 14623 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15555 7866 7981 14623 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15556 7981 8080 14623 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15557 7500 7429 14624 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15558 7429 7303 14624 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15559 7303 7357 14624 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15560 7357 7500 14624 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15561 7199 7303 14625 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15562 7303 7267 14625 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15563 7267 7196 14625 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15564 7196 7199 14625 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15565 7374 7331 14626 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15566 7331 7429 14626 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15567 7429 7480 14626 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15568 7480 7374 14626 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15569 7580 7575 14627 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15570 7575 7437 14627 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15571 7437 7462 14627 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15572 7462 7580 14627 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15573 7360 7437 14628 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15574 7437 7357 14628 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15575 7357 7281 14628 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15576 7281 7360 14628 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15577 7601 7500 14629 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15578 7500 7575 14629 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15579 7575 7665 14629 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15580 7665 7601 14629 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15581 7459 7520 14630 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15582 7520 7449 14630 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15583 7449 7395 14630 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15584 7395 7459 14630 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15585 7397 7449 14631 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15586 7449 7462 14631 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15587 7462 7398 14631 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15588 7398 7397 14631 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15589 7663 7580 14632 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15590 7580 7520 14632 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15591 7520 7592 14632 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15592 7592 7663 14632 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15593 7261 7308 14633 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15594 7308 7395 14633 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15595 7395 7356 14633 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15596 7356 7261 14633 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15597 7501 7459 14634 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15598 7459 7373 14634 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15599 7373 7419 14634 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15600 7419 7501 14634 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15601 7282 7262 14635 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15602 7262 7435 14635 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15603 7435 7453 14635 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15604 7453 7282 14635 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15605 7473 7435 14636 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15606 7435 7338 14636 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15607 7338 7382 14636 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15608 7382 7473 14636 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15609 7709 7746 14637 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15610 7746 7656 14637 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15611 7656 7626 14637 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15612 7626 7709 14637 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15613 7660 7656 14638 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15614 7656 7778 14638 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15615 7778 7782 14638 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15616 7782 7660 14638 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15617 7871 7778 14639 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15618 7778 7746 14639 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15619 7746 7845 14639 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15620 7845 7871 14639 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15621 7836 7881 14640 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15622 7881 7718 14640 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15623 7718 7670 14640 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15624 7670 7836 14640 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15625 7629 7718 14641 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15626 7718 7796 14641 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15627 7796 7710 14641 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15628 7710 7629 14641 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15629 7845 7796 14642 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15630 7796 7936 14642 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15631 7936 7975 14642 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15632 7975 7845 14642 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15633 7533 7660 14643 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15634 7660 7698 14643 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15635 7698 7558 14643 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15636 7558 7533 14643 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15637 7925 7816 14644 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15638 7816 7782 14644 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15639 7782 7900 14644 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15640 7900 7925 14644 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15641 5846 5860 14645 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15642 5860 5630 14645 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15643 5630 5625 14645 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15644 5625 5846 14645 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15645 6123 5884 14646 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15646 5884 5860 14646 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15647 5860 6064 14646 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15648 6064 6123 14646 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15649 6292 6313 14647 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15650 6313 6064 14647 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15651 6064 6044 14647 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15652 6044 6292 14647 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15653 6609 6374 14648 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15654 6374 6313 14648 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15655 6313 6564 14648 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15656 6564 6609 14648 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15657 6755 6758 14649 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15658 6758 6564 14649 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15659 6564 6549 14649 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15660 6549 6755 14649 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15661 5813 5826 14650 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15662 5826 5618 14650 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15663 5618 5612 14650 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15664 5612 5813 14650 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15665 5628 5624 14651 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15666 5624 5844 14651 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15667 5844 5850 14651 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15668 5850 5628 14651 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15669 6036 5844 14652 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15670 5844 5826 14652 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15671 5826 6012 14652 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15672 6012 6036 14652 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15673 5774 5804 14653 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15674 5804 5609 14653 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15675 5609 5598 14653 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15676 5598 5774 14653 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15677 5987 5813 14654 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15678 5813 5804 14654 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15679 5804 5963 14654 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15680 5963 5987 14654 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15681 5746 5740 14655 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15682 5740 5590 14655 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15683 5590 5646 14655 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15684 5646 5746 14655 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15685 5908 5774 14656 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15686 5774 5740 14656 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15687 5740 5857 14656 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15688 5857 5908 14656 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15689 6170 6230 14657 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15690 6230 6012 14657 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15691 6012 5987 14657 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15692 5987 6170 14657 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15693 6052 6036 14658 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15694 6036 6282 14658 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15695 6282 6300 14658 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15696 6300 6052 14658 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15697 6573 6282 14659 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15698 6282 6230 14659 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15699 6230 6494 14659 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15700 6494 6573 14659 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15701 6024 6105 14660 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15702 6105 5963 14660 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15703 5963 5908 14660 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15704 5908 6024 14660 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15705 6382 6170 14661 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15706 6170 6105 14661 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15707 6105 6274 14661 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15708 6274 6382 14661 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15709 5832 5909 14662 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15710 5909 5857 14662 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15711 5857 5746 14662 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15712 5746 5832 14662 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15713 6120 6024 14663 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15714 6024 5909 14663 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15715 5909 5966 14663 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15716 5966 6120 14663 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15717 6595 6699 14664 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15718 6699 6494 14664 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15719 6494 6382 14664 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15720 6382 6595 14664 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15721 6556 6573 14665 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15722 6573 6754 14665 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15723 6754 6755 14665 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15724 6755 6556 14665 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15725 6906 6754 14666 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15726 6754 6699 14666 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15727 6699 6800 14666 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15728 6800 6906 14666 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15729 6198 6419 14667 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15730 6419 6274 14667 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15731 6274 6120 14667 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15732 6120 6198 14667 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15733 6686 6595 14668 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15734 6595 6419 14668 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15735 6419 6493 14668 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15736 6493 6686 14668 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15737 5851 6003 14669 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15738 6003 5966 14669 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15739 5966 5832 14669 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15740 5832 5851 14669 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15741 6232 6198 14670 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15742 6198 6003 14670 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15743 6003 6005 14670 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15744 6005 6232 14670 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15745 6718 6874 14671 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15746 6874 6800 14671 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15747 6800 6686 14671 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15748 6686 6718 14671 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15749 7036 7000 14672 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15750 7000 6874 14672 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15751 6874 6896 14672 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15752 6896 7036 14672 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15753 6182 6482 14673 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15754 6482 6493 14673 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15755 6493 6232 14673 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15756 6232 6182 14673 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15757 6722 6718 14674 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15758 6718 6482 14674 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15759 6482 6453 14674 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15760 6453 6722 14674 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15761 5816 5976 14675 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15762 5976 6005 14675 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15763 6005 5851 14675 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15764 5851 5816 14675 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15765 6197 6182 14676 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15766 6182 5976 14676 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15767 5976 5991 14676 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15768 5991 6197 14676 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15769 6696 6875 14677 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15770 6875 6896 14677 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15771 6896 6722 14677 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15772 6722 6696 14677 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15773 6945 7023 14678 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15774 7023 6875 14678 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15775 6875 6765 14678 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15776 6765 6945 14678 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15777 6169 6410 14679 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15778 6410 6453 14679 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15779 6453 6197 14679 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15780 6197 6169 14679 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15781 6608 6696 14680 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15782 6696 6410 14680 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15783 6410 6330 14680 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15784 6330 6608 14680 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15785 6141 6169 14681 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15786 6169 5991 14681 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15787 5991 5959 14681 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15788 5959 6141 14681 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15789 6413 6624 14682 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15790 6624 6765 14682 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15791 6765 6608 14682 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15792 6608 6413 14682 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15793 6576 6762 14683 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15794 6762 6624 14683 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15795 6624 6370 14683 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15796 6370 6576 14683 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15797 6069 6206 14684 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15798 6206 6330 14684 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15799 6330 6141 14684 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15800 6141 6069 14684 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15801 6205 6413 14685 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15802 6413 6206 14685 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15803 6206 6084 14685 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15804 6084 6205 14685 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15805 5982 6069 14686 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15806 6069 5959 14686 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15807 5959 5876 14686 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15808 5876 5982 14686 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15809 6034 6128 14687 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15810 6128 6370 14687 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15811 6370 6205 14687 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15812 6205 6034 14687 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15813 5920 6208 14688 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15814 6208 6128 14688 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15815 6128 5883 14688 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15816 5883 5920 14688 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15817 5874 5952 14689 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15818 5952 6084 14689 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15819 6084 5982 14689 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15820 5982 5874 14689 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15821 5855 6034 14690 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15822 6034 5952 14690 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15823 5952 5792 14690 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15824 5792 5855 14690 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15825 5733 5819 14691 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15826 5819 5876 14691 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15827 5876 5816 14691 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15828 5816 5733 14691 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15829 5744 5874 14692 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15830 5874 5819 14692 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15831 5819 5704 14692 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15832 5704 5744 14692 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15833 5613 5627 14693 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15834 5627 5883 14693 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15835 5883 5855 14693 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15836 5855 5613 14693 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15837 5593 5599 14694 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15838 5599 5792 14694 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15839 5792 5744 14694 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15840 5744 5593 14694 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15841 5638 5584 14695 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15842 5584 5704 14695 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15843 5704 5733 14695 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15844 5733 5638 14695 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15845 7464 7452 14696 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15846 7452 7165 14696 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15847 7165 7177 14696 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15848 7177 7464 14696 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15849 6889 7165 14697 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15850 7165 7137 14697 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15851 7137 6871 14697 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15852 6871 6889 14697 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15853 7107 7137 14698 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15854 7137 7417 14698 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15855 7417 7384 14698 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15856 7384 7107 14698 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15857 7627 7417 14699 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15858 7417 7452 14699 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15859 7452 7630 14699 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15860 7630 7627 14699 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15861 7951 7815 14700 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15862 7815 7676 14700 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15863 7676 7792 14700 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15864 7792 7951 14700 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15865 7620 7676 14701 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15866 7676 7630 14701 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15867 7630 7608 14701 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15868 7608 7620 14701 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15869 7559 7627 14702 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15870 7627 7756 14702 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15871 7756 7707 14702 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15872 7707 7559 14702 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15873 7869 7756 14703 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15874 7756 7815 14703 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15875 7815 7926 14703 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15876 7926 7869 14703 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15877 8124 7953 14704 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15878 7953 7926 14704 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15879 7926 8064 14704 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15880 8064 8124 14704 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15881 7804 7869 14705 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15882 7869 7909 14705 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15883 7909 7861 14705 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15884 7861 7804 14705 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15885 7933 7909 14706 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15886 7909 7953 14706 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15887 7953 7965 14706 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15888 7965 7933 14706 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15889 8052 7971 14707 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15890 7971 7965 14707 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15891 7965 8133 14707 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15892 8133 8052 14707 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15893 7886 7933 14708 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15894 7933 7927 14708 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15895 7927 7879 14708 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15896 7879 7886 14708 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15897 7883 7927 14709 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15898 7927 7960 14709 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15899 7960 7906 14709 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15900 7906 7883 14709 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15901 7976 7960 14710 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15902 7960 7971 14710 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15903 7971 7982 14710 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15904 7982 7976 14710 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15905 7568 7566 14711 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15906 7566 7697 14711 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15907 7697 7695 14711 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15908 7695 7568 14711 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15909 7814 7697 14712 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15910 7697 7696 14712 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15911 7696 7806 14712 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15912 7806 7814 14712 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15913 7683 7696 14713 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15914 7696 7565 14713 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15915 7565 7557 14713 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15916 7557 7683 14713 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15917 7433 7565 14714 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15918 7565 7566 14714 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15919 7566 7427 14714 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15920 7427 7433 14714 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15921 7248 7268 14715 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15922 7268 7426 14715 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15923 7426 7433 14715 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15924 7433 7248 14715 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15925 7557 7426 14716 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15926 7426 7414 14716 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15927 7414 7539 14716 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15928 7539 7557 14716 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15929 7096 7275 14717 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15930 7275 7268 14717 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15931 7268 7089 14717 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15932 7089 7096 14717 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15933 6939 6944 14718 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15934 6944 7071 14718 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15935 7071 7062 14718 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15936 7062 6939 14718 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15937 7236 7071 14719 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15938 7071 7078 14719 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15939 7078 7248 14719 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15940 7248 7236 14719 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15941 7089 7078 14720 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15942 7078 6954 14720 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15943 6954 6961 14720 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15944 6961 7089 14720 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15945 6808 6954 14721 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15946 6954 6944 14721 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15947 6944 6802 14721 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15948 6802 6808 14721 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15949 6670 6678 14722 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15950 6678 6802 14722 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15951 6802 6797 14722 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15952 6797 6670 14722 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15953 6819 6808 14723 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15954 6808 6698 14723 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15955 6698 6709 14723 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15956 6709 6819 14723 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15957 6559 6698 14724 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15958 6698 6678 14724 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15959 6678 6538 14724 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15960 6538 6559 14724 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15961 6585 6559 14725 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15962 6559 6375 14725 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15963 6375 6403 14725 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15964 6403 6585 14725 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15965 6348 6356 14726 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15966 6356 6538 14726 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15967 6538 6523 14726 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15968 6523 6348 14726 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15969 6467 6462 14727 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15970 6462 6226 14727 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15971 6226 6256 14727 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15972 6256 6467 14727 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15973 6242 6229 14728 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15974 6229 6472 14728 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15975 6472 6481 14728 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15976 6481 6242 14728 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15977 6666 6472 14729 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15978 6472 6462 14729 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15979 6462 6651 14729 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15980 6651 6666 14729 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15981 6501 6491 14730 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15982 6491 6295 14730 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15983 6295 6318 14730 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15984 6318 6501 14730 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15985 6647 6467 14731 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15986 6467 6491 14731 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15987 6491 6652 14731 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15988 6652 6647 14731 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15989 6787 6794 14732 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15990 6794 6651 14732 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15991 6651 6647 14732 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15992 6647 6787 14732 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15993 6671 6666 14733 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15994 6666 6804 14733 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15995 6804 6812 14733 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15996 6812 6671 14733 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15997 6975 6804 14734 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15998 6804 6794 14734 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 15999 6794 6960 14734 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16000 6960 6975 14734 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16001 6788 6785 14735 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16002 6785 6652 14735 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16003 6652 6659 14735 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16004 6659 6788 14735 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16005 6943 6787 14736 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16006 6787 6785 14736 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16007 6785 6936 14736 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16008 6936 6943 14736 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16009 7084 7116 14737 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16010 7116 6960 14737 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16011 6960 6943 14737 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16012 6943 7084 14737 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16013 6988 6975 14738 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16014 6975 7155 14738 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16015 7155 7172 14738 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16016 7172 6988 14738 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16017 7393 7155 14739 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16018 7155 7116 14739 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16019 7116 7345 14739 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16020 7345 7393 14739 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16021 7058 7072 14740 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16022 7072 6936 14740 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16023 6936 6929 14740 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16024 6929 7058 14740 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16025 7311 7084 14741 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16026 7084 7072 14741 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16027 7072 7272 14741 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16028 7272 7311 14741 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16029 7532 7596 14742 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16030 7596 7345 14742 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16031 7345 7311 14742 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16032 7311 7532 14742 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16033 7415 7393 14743 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16034 7393 7633 14743 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16035 7633 7652 14743 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16036 7652 7415 14743 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16037 7841 7633 14744 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16038 7633 7596 14744 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16039 7596 7797 14744 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16040 7797 7841 14744 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16041 7434 7463 14745 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16042 7463 7272 14745 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16043 7272 7226 14745 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16044 7226 7434 14745 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16045 7721 7532 14746 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16046 7532 7463 14746 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16047 7463 7628 14746 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16048 7628 7721 14746 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16049 7856 7929 14747 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16050 7929 7797 14747 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16051 7797 7721 14747 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16052 7721 7856 14747 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16053 7894 7841 14748 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16054 7841 7995 14748 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16055 7995 8081 14748 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16056 8081 7894 14748 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16057 8187 7995 14749 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16058 7995 7929 14749 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16059 7929 8099 14749 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16060 8099 8187 14749 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16061 7708 7755 14750 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16062 7755 7628 14750 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16063 7628 7576 14750 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16064 7576 7708 14750 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16065 7977 7856 14751 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16066 7856 7755 14751 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16067 7755 7875 14751 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16068 7875 7977 14751 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16069 8147 8238 14752 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16070 8238 8099 14752 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16071 8099 7977 14752 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16072 7977 8147 14752 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16073 8225 8187 14753 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16074 8187 8309 14753 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16075 8309 8347 14753 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16076 8347 8225 14753 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16077 8391 8309 14754 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16078 8309 8238 14754 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16079 8238 8305 14754 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16080 8305 8391 14754 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16081 7932 7994 14755 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16082 7994 7875 14755 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16083 7875 7829 14755 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16084 7829 7932 14755 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16085 8212 8147 14756 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16086 8147 7994 14756 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16087 7994 8079 14756 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16088 8079 8212 14756 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16089 8221 8322 14757 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16090 8322 8305 14757 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16091 8305 8212 14757 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16092 8212 8221 14757 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16093 8429 8391 14758 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16094 8391 8426 14758 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16095 8426 8477 14758 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16096 8477 8429 14758 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16097 8469 8426 14759 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16098 8426 8322 14759 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16099 8322 8357 14759 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16100 8357 8469 14759 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16101 8013 8102 14760 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16102 8102 8079 14760 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16103 8079 8000 14760 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16104 8000 8013 14760 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16105 8242 8221 14761 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16106 8221 8102 14761 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16107 8102 8116 14761 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16108 8116 8242 14761 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16109 8518 8469 14762 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16110 8469 8503 14762 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16111 8503 8560 14762 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16112 8560 8518 14762 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16113 8523 8503 14763 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16114 8503 8357 14763 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16115 8357 8389 14763 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16116 8389 8523 14763 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16117 8389 8242 14764 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16118 8242 8296 14764 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16119 8296 8466 14764 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16120 8466 8389 14764 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16121 8324 8296 14765 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16122 8296 8133 14765 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16123 8133 8124 14765 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16124 8124 8324 14765 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16125 7993 8052 14766 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16126 8052 8116 14766 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16127 8116 8011 14766 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16128 8011 7993 14766 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16129 8605 8523 14767 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16130 8523 8604 14767 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16131 8604 8674 14767 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16132 8674 8605 14767 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16133 8680 8604 14768 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16134 8604 8466 14768 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16135 8466 8569 14768 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16136 8569 8680 14768 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16137 8161 8258 14769 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16138 8258 8064 14769 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16139 8064 7951 14769 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16140 7951 8161 14769 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16141 8464 8324 14770 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16142 8324 8258 14770 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16143 8258 8390 14770 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16144 8390 8464 14770 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16145 8279 8183 14771 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16146 8183 8043 14771 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16147 8043 8190 14771 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16148 8190 8279 14771 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16149 8170 8012 14772 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16150 8012 8183 14772 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16151 8183 8289 14772 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16152 8289 8170 14772 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16153 8208 8274 14773 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16154 8274 8190 14773 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16155 8190 8080 14773 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16156 8080 8208 14773 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16157 8373 8279 14774 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16158 8279 8358 14774 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16159 8358 8435 14774 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16160 8435 8373 14774 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16161 8475 8402 14775 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16162 8402 8289 14775 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16163 8289 8373 14775 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16164 8373 8475 14775 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16165 7967 8170 14776 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16166 8170 8288 14776 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16167 8288 8161 14776 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16168 8161 7967 14776 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16169 8390 8288 14777 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16170 8288 8402 14777 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16171 8402 8496 14777 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16172 8496 8390 14777 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16173 8575 8475 14778 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16174 8475 8517 14778 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16175 8517 8593 14778 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16176 8593 8575 14778 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16177 8661 8590 14779 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16178 8590 8496 14779 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16179 8496 8575 14779 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16180 8575 8661 14779 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16181 8569 8464 14780 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16182 8464 8590 14780 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16183 8590 8678 14780 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16184 8678 8569 14780 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16185 8743 8661 14781 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16186 8661 8657 14781 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16187 8657 8723 14781 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16188 8723 8743 14781 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16189 8787 8759 14782 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16190 8759 8678 14782 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16191 8678 8743 14782 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16192 8743 8787 14782 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16193 8741 8680 14783 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16194 8680 8759 14783 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16195 8759 8781 14783 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16196 8781 8741 14783 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16197 8663 8763 14784 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16198 8763 8723 14784 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16199 8723 8632 14784 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16200 8632 8663 14784 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16201 8788 8787 14785 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16202 8787 8763 14785 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16203 8763 8761 14785 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16204 8761 8788 14785 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16205 7878 7894 14786 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16206 7894 8110 14786 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16207 8110 8100 14786 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16208 8100 7878 14786 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16209 8239 8110 14787 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16210 8110 8081 14787 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16211 8081 8225 14787 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16212 8225 8239 14787 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16213 8422 8345 14788 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16214 8345 8347 14788 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16215 8347 8429 14788 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16216 8429 8422 14788 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16217 8259 8239 14789 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16218 8239 8345 14789 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16219 8345 8360 14789 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16220 8360 8259 14789 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16221 8513 8472 14790 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16222 8472 8477 14790 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16223 8477 8518 14790 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16224 8518 8513 14790 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16225 8434 8422 14791 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16226 8422 8472 14791 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16227 8472 8493 14791 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16228 8493 8434 14791 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16229 8592 8550 14792 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16230 8550 8560 14792 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16231 8560 8605 14792 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16232 8605 8592 14792 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16233 8544 8513 14793 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16234 8513 8550 14793 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16235 8550 8574 14793 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16236 8574 8544 14793 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16237 8700 8649 14794 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16238 8649 8674 14794 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16239 8674 8741 14794 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16240 8741 8700 14794 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16241 8606 8592 14795 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16242 8592 8649 14795 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16243 8649 8652 14795 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16244 8652 8606 14795 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16245 8710 8700 14796 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16246 8700 8781 14796 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16247 8781 8788 14796 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16248 8788 8710 14796 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16249 8684 8710 14797 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16250 8710 8761 14797 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16251 8761 8696 14797 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16252 8696 8684 14797 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16253 8591 8633 14798 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16254 8633 8696 14798 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16255 8696 8663 14798 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16256 8663 8591 14798 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16257 8693 8684 14799 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16258 8684 8673 14799 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16259 8673 8731 14799 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16260 8731 8693 14799 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16261 8683 8673 14800 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16262 8673 8633 14800 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16263 8633 8609 14800 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16264 8609 8683 14800 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16265 8745 8708 14801 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16266 8708 8697 14801 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16267 8697 8755 14801 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16268 8755 8745 14801 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16269 8785 8697 14802 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16270 8697 8637 14802 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16271 8637 8772 14802 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16272 8772 8785 14802 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16273 8576 8637 14803 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16274 8637 8654 14803 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16275 8654 8608 14803 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16276 8608 8576 14803 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16277 8656 8654 14804 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16278 8654 8708 14804 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16279 8708 8707 14804 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16280 8707 8656 14804 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16281 8620 8576 14805 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16282 8576 8515 14805 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16283 8515 8563 14805 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16284 8563 8620 14805 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16285 8500 8515 14806 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16286 8515 8608 14806 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16287 8608 8585 14806 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16288 8585 8500 14806 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16289 7948 8065 14807 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16290 8065 8197 14807 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16291 8197 8123 14807 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16292 8123 7948 14807 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16293 8273 8197 14808 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16294 8197 8256 14808 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16295 8256 8317 14808 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16296 8317 8273 14808 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16297 8335 8256 14809 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16298 8256 8201 14809 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16299 8201 8304 14809 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16300 8304 8335 14809 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16301 8144 8201 14810 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16302 8201 8065 14810 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16303 8065 7966 14810 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16304 7966 8144 14810 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16305 8519 8557 14811 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16306 8557 8533 14811 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16307 8533 8473 14811 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16308 8473 8519 14811 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16309 8572 8591 14812 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16310 8591 8557 14812 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16311 8557 8552 14812 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16312 8552 8572 14812 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16313 8552 8519 14813 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16314 8519 8509 14813 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16315 8509 8558 14813 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16316 8558 8552 14813 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16317 8514 8509 14814 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16318 8509 8452 14814 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16319 8452 8444 14814 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16320 8444 8514 14814 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16321 8573 8514 14815 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16322 8514 8530 14815 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16323 8530 8597 14815 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16324 8597 8573 14815 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16325 8547 8530 14816 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16326 8530 8445 14816 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16327 8445 8454 14816 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16328 8454 8547 14816 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16329 8610 8547 14817 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16330 8547 8564 14817 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16331 8564 8612 14817 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16332 8612 8610 14817 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16333 8584 8564 14818 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16334 8564 8481 14818 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16335 8481 8505 14818 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16336 8505 8584 14818 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16337 8636 8584 14819 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16338 8584 8622 14819 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16339 8622 8672 14819 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16340 8672 8636 14819 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16341 8665 8622 14820 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16342 8622 8566 14820 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16343 8566 8619 14820 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16344 8619 8665 14820 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16345 8714 8665 14821 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16346 8665 8730 14821 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16347 8730 8747 14821 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16348 8747 8714 14821 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16349 8732 8730 14822 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16350 8730 8698 14822 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16351 8698 8695 14822 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16352 8695 8732 14822 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16353 8767 8732 14823 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16354 8732 8707 14823 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16355 8707 8745 14823 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16356 8745 8767 14823 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16357 8585 8656 14824 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16358 8656 8629 14824 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16359 8629 8535 14824 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16360 8535 8585 14824 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16361 8427 8500 14825 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16362 8500 8458 14825 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16363 8458 8376 14825 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16364 8376 8427 14825 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16365 8478 8427 14826 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16366 8427 8353 14826 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16367 8353 8420 14826 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16368 8420 8478 14826 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16369 8284 8353 14827 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16370 8353 8270 14827 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16371 8270 8205 14827 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16372 8205 8284 14827 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16373 8344 8284 14828 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16374 8284 8231 14828 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16375 8231 8273 14828 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16376 8273 8344 14828 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16377 8123 8231 14829 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16378 8231 8167 14829 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16379 8167 8010 14829 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16380 8010 8123 14829 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16381 7848 7948 14830 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16382 7948 7849 14830 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16383 7849 7702 14830 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16384 7702 7848 14830 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16385 8399 8413 14831 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16386 8413 8640 14831 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16387 8640 8630 14831 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16388 8630 8399 14831 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16389 8752 8640 14832 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16390 8640 8565 14832 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16391 8565 8666 14832 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16392 8666 8752 14832 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16393 8805 8752 14833 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16394 8752 8779 14833 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16395 8779 8809 14833 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16396 8809 8805 14833 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16397 8811 8779 14834 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16398 8779 8738 14834 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16399 8738 8806 14834 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16400 8806 8811 14834 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16401 8823 8811 14835 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16402 8811 8831 14835 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16403 8831 8835 14835 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16404 8835 8823 14835 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16405 8862 8831 14836 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16406 8831 8867 14836 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16407 8867 8887 14836 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16408 8887 8862 14836 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16409 8849 8862 14837 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16410 8862 8854 14837 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16411 8854 8847 14837 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16412 8847 8849 14837 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16413 8856 8854 14838 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16414 8854 8877 14838 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16415 8877 8851 14838 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16416 8851 8856 14838 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16417 8871 8856 14839 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16418 8856 8864 14839 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16419 8864 8896 14839 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16420 8896 8871 14839 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16421 8797 8864 14840 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16422 8864 8820 14840 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16423 8820 8724 14840 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16424 8724 8797 14840 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16425 8839 8797 14841 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16426 8797 8647 14841 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16427 8647 8721 14841 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16428 8721 8839 14841 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16429 8594 8647 14842 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16430 8647 8580 14842 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16431 8580 8521 14842 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16432 8521 8594 14842 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16433 8645 8594 14843 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16434 8594 8601 14843 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16435 8601 8644 14843 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16436 8644 8645 14843 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16437 8607 8601 14844 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16438 8601 8525 14844 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16439 8525 8544 14844 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16440 8544 8607 14844 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16441 8644 8607 14845 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16442 8607 8618 14845 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16443 8618 8650 14845 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16444 8650 8644 14845 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16445 8642 8618 14846 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16446 8618 8574 14846 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16447 8574 8606 14846 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16448 8606 8642 14846 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16449 8675 8642 14847 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16450 8642 8682 14847 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16451 8682 8728 14847 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16452 8728 8675 14847 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16453 8734 8682 14848 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16454 8682 8652 14848 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16455 8652 8693 14848 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16456 8693 8734 14848 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16457 8773 8734 14849 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16458 8734 8775 14849 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16459 8775 8818 14849 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16460 8818 8773 14849 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16461 8813 8775 14850 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16462 8775 8731 14850 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16463 8731 8764 14850 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16464 8764 8813 14850 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16465 7439 7460 14851 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16466 7460 7579 14851 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16467 7579 7521 14851 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16468 7521 7439 14851 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16469 7654 7579 14852 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16470 7579 7664 14852 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16471 7664 7788 14852 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16472 7788 7654 14852 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16473 7582 7654 14853 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16474 7654 7670 14853 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16475 7670 7593 14853 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16476 7593 7582 14853 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16477 6001 5971 14854 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16478 5971 6091 14854 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16479 6091 6116 14854 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16480 6116 6001 14854 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16481 6148 6091 14855 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16482 6091 5997 14855 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16483 5997 6049 14855 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16484 6049 6148 14855 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16485 5942 5997 14856 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16486 5997 5971 14856 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16487 5971 5914 14856 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16488 5914 5942 14856 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16489 6731 6925 14857 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16490 6925 7022 14857 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16491 7022 6840 14857 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16492 6840 6731 14857 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16493 6970 7022 14858 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16494 7022 7169 14858 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16495 7169 7101 14858 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16496 7101 6970 14858 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16497 7264 7169 14859 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16498 7169 7348 14859 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16499 7348 7406 14859 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16500 7406 7264 14859 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16501 7522 7348 14860 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16502 7348 7467 14860 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16503 7467 7648 14860 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16504 7648 7522 14860 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16505 7728 7467 14861 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16506 7467 7504 14861 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16507 7504 7763 14861 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16508 7763 7728 14861 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16509 7784 7504 14862 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16510 7504 7498 14862 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16511 7498 7799 14862 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16512 7799 7784 14862 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16513 7764 7498 14863 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16514 7498 7418 14863 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16515 7418 7678 14863 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16516 7678 7764 14863 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16517 7586 7418 14864 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16518 7418 7288 14864 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16519 7288 7479 14864 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16520 7479 7586 14864 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16521 7319 7288 14865 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16522 7288 7067 14865 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16523 7067 7059 14865 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16524 7059 7319 14865 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16525 6838 7067 14866 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16526 7067 6897 14866 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16527 6897 6603 14866 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16528 6603 6838 14866 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16529 6414 6897 14867 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16530 6897 6858 14867 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16531 6858 6389 14867 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16532 6389 6414 14867 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16533 6477 6858 14868 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16534 6858 6925 14868 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16535 6925 6619 14868 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16536 6619 6477 14868 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16537 6894 6889 14869 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16538 6889 6545 14869 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16539 6545 6529 14869 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16540 6529 6894 14869 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16541 6569 6554 14870 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16542 6554 6871 14870 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16543 6871 6855 14870 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16544 6855 6569 14870 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16545 7820 7814 14871 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16546 7814 7906 14871 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16547 7906 7915 14871 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16548 7915 7820 14871 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16549 7846 7883 14872 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16550 7883 7806 14872 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16551 7806 7785 14872 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16552 7785 7846 14872 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16553 7059 6838 14873 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16554 6838 6839 14873 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16555 6839 7056 14873 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16556 7056 7059 14873 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16557 6415 6604 14874 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16558 6604 6603 14874 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16559 6603 6414 14874 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16560 6414 6415 14874 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16561 6478 6390 14875 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16562 6390 6389 14875 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16563 6389 6477 14875 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16564 6477 6478 14875 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16565 6732 6620 14876 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16566 6620 6619 14876 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16567 6619 6731 14876 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16568 6731 6732 14876 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16569 6968 6841 14877 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16570 6841 6840 14877 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16571 6840 6970 14877 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16572 6970 6968 14877 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16573 7256 7099 14878 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16574 7099 7101 14878 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16575 7101 7264 14878 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16576 7264 7256 14878 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16577 7517 7401 14879 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16578 7401 7406 14879 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16579 7406 7522 14879 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16580 7522 7517 14879 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16581 7723 7644 14880 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16582 7644 7648 14880 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16583 7648 7728 14880 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16584 7728 7723 14880 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16585 7783 7759 14881 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16586 7759 7763 14881 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16587 7763 7784 14881 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16588 7784 7783 14881 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16589 7762 7798 14882 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16590 7798 7799 14882 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16591 7799 7764 14882 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16592 7764 7762 14882 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16593 7581 7671 14883 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16594 7671 7678 14883 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16595 7678 7586 14883 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16596 7586 7581 14883 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16597 7316 7477 14884 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16598 7477 7479 14884 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16599 7479 7319 14884 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16600 7319 7316 14884 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16601 6827 6962 14885 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16602 6962 6961 14885 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16603 6961 6819 14885 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16604 6819 6827 14885 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16605 6601 6723 14886 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16606 6723 6709 14886 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16607 6709 6585 14886 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16608 6585 6601 14886 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16609 6361 6440 14887 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16610 6440 6403 14887 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16611 6403 6327 14887 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16612 6327 6361 14887 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16613 6590 6372 14888 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16614 6372 6344 14888 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16615 6344 6569 14888 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16616 6569 6590 14888 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16617 7077 6846 14889 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16618 6846 6855 14889 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16619 6855 7107 14889 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16620 7107 7077 14889 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16621 7511 7339 14890 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16622 7339 7384 14890 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16623 7384 7559 14890 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16624 7559 7511 14890 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16625 7730 7635 14891 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16626 7635 7707 14891 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16627 7707 7804 14891 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16628 7804 7730 14891 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16629 7840 7807 14892 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16630 7807 7861 14892 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16631 7861 7886 14892 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16632 7886 7840 14892 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16633 7795 7827 14893 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16634 7827 7879 14893 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16635 7879 7846 14893 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16636 7846 7795 14893 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16637 7662 7752 14894 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16638 7752 7785 14894 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16639 7785 7683 14894 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16640 7683 7662 14894 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16641 7224 7236 14895 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16642 7236 7427 14895 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16643 7427 7425 14895 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16644 7425 7224 14895 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16645 6318 6239 14896 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16646 6239 6248 14896 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16647 6248 6323 14896 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16648 6323 6318 14896 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16649 6258 6248 14897 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16650 6248 6247 14897 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16651 6247 6257 14897 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16652 6257 6258 14897 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16653 6336 6258 14898 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16654 6258 6264 14898 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16655 6264 6348 14898 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16656 6348 6336 14898 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16657 7915 7976 14899 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16658 7976 7980 14899 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16659 7980 7918 14899 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16660 7918 7915 14899 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16661 7988 7980 14900 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16662 7980 7982 14900 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16663 7982 7993 14900 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16664 7993 7988 14900 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16665 7990 7988 14901 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16666 7988 8011 14901 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16667 8011 8013 14901 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16668 8013 7990 14901 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16669 7923 7990 14902 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16670 7990 8000 14902 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16671 8000 7932 14902 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16672 7932 7923 14902 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16673 6659 6501 14903 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16674 6501 6505 14903 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16675 6505 6664 14903 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16676 6664 6659 14903 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16677 6515 6505 14904 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16678 6505 6323 14904 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16679 6323 6336 14904 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16680 6336 6515 14904 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16681 6668 6515 14905 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16682 6515 6523 14905 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16683 6523 6670 14905 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16684 6670 6668 14905 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16685 6929 6788 14906 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16686 6788 6790 14906 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16687 6790 6930 14906 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16688 6930 6929 14906 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16689 6792 6790 14907 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16690 6790 6664 14907 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16691 6664 6668 14907 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16692 6668 6792 14907 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16693 6934 6792 14908 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16694 6792 6797 14908 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16695 6797 6939 14908 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16696 6939 6934 14908 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16697 7226 7058 14909 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16698 7058 7053 14909 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16699 7053 7221 14909 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16700 7221 7226 14909 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16701 7055 7053 14910 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16702 7053 6930 14910 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16703 6930 6934 14910 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16704 6934 7055 14910 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16705 7216 7055 14911 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16706 7055 7062 14911 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16707 7062 7224 14911 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16708 7224 7216 14911 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16709 7576 7434 14912 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16710 7434 7430 14912 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16711 7430 7573 14912 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16712 7573 7576 14912 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16713 7428 7430 14913 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16714 7430 7221 14913 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16715 7221 7216 14913 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16716 7216 7428 14913 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16717 7570 7428 14914 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16718 7428 7425 14914 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16719 7425 7568 14914 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16720 7568 7570 14914 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16721 7829 7708 14915 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16722 7708 7700 14915 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16723 7700 7823 14915 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16724 7823 7829 14915 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16725 7693 7700 14916 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16726 7700 7573 14916 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16727 7573 7570 14916 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16728 7570 7693 14916 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16729 7817 7693 14917 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16730 7693 7695 14917 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16731 7695 7820 14917 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16732 7820 7817 14917 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16733 7918 7923 14918 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16734 7923 7823 14918 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16735 7823 7817 14918 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16736 7817 7918 14918 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16737 8493 8484 14919 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16738 8484 8527 14919 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16739 8527 8538 14919 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16740 8538 8493 14919 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16741 6000 6048 14920 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16742 6048 6013 14920 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16743 6013 5962 14920 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16744 5962 6000 14920 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16745 5901 5907 14921 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16746 5907 5829 14921 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16747 5829 5822 14921 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16748 5822 5901 14921 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16749 5872 5856 14922 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16750 5856 5907 14922 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16751 5907 5942 14922 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16752 5942 5872 14922 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16753 5943 5901 14923 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16754 5901 5839 14923 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16755 5839 5865 14923 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16756 5865 5943 14923 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16757 6025 5943 14924 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16758 5943 5946 14924 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16759 5946 6031 14924 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16760 6031 6025 14924 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16761 6067 6025 14925 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16762 6025 6183 14925 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16763 6183 6262 14925 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16764 6262 6067 14925 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16765 5910 6001 14926 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16766 6001 6027 14926 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16767 6027 5937 14926 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16768 5937 5910 14926 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16769 6053 6027 14927 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16770 6027 6151 14927 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16771 6151 6177 14927 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16772 6177 6053 14927 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16773 6263 6151 14928 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16774 6151 6116 14928 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16775 6116 6207 14928 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16776 6207 6263 14928 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16777 6281 6308 14929 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16778 6308 6349 14929 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16779 6349 6312 14929 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16780 6312 6281 14929 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16781 6368 6349 14930 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16782 6349 6325 14930 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16783 6325 6359 14930 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16784 6359 6368 14930 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16785 6262 6325 14931 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16786 6325 6308 14931 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16787 6308 6240 14931 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16788 6240 6262 14931 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16789 6049 6067 14932 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16790 6067 6240 14932 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16791 6240 6202 14932 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16792 6202 6049 14932 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16793 6207 6148 14933 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16794 6148 6202 14933 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16795 6202 6281 14933 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16796 6281 6207 14933 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16797 6296 6263 14934 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16798 6263 6312 14934 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16799 6312 6354 14934 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16800 6354 6296 14934 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16801 5914 5910 14935 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16802 5910 5870 14935 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16803 5870 5872 14935 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16804 5872 5914 14935 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16805 5889 5878 14936 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16806 5878 5937 14936 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16807 5937 5958 14936 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16808 5958 5889 14936 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16809 6455 6444 14937 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16810 6444 6485 14937 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16811 6485 6473 14937 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16812 6473 6455 14937 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16813 6528 6509 14938 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16814 6509 6441 14938 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16815 6441 6442 14938 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16816 6442 6528 14938 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16817 6364 6441 14939 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16818 6441 6444 14939 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16819 6444 6378 14939 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16820 6378 6364 14939 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16821 5873 5758 14940 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16822 5758 5766 14940 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16823 5766 5885 14940 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16824 5885 5873 14940 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16825 6022 5947 14941 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16826 5947 5970 14941 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16827 5970 6042 14941 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16828 6042 6022 14941 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16829 6154 6099 14942 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16830 6099 6110 14942 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16831 6110 6168 14942 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16832 6168 6154 14942 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16833 6190 6154 14943 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16834 6154 6252 14943 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16835 6252 6288 14943 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16836 6288 6190 14943 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16837 6209 6190 14944 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16838 6190 6328 14944 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16839 6328 6350 14944 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16840 6350 6209 14944 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16841 6195 6209 14945 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16842 6209 6352 14945 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16843 6352 6334 14945 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16844 6334 6195 14945 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16845 6244 6266 14946 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16846 6266 6378 14946 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16847 6378 6369 14946 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16848 6369 6244 14946 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16849 6343 6364 14947 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16850 6364 6266 14947 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16851 6266 6218 14947 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16852 6218 6343 14947 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16853 5934 5806 14948 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16854 5806 5801 14948 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16855 5801 5928 14948 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16856 5928 5934 14948 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16857 6090 6029 14949 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16858 6029 6021 14949 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16859 6021 6074 14949 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16860 6074 6090 14949 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16861 6185 6112 14950 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16862 6112 6098 14950 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16863 6098 6164 14950 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16864 6164 6185 14950 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16865 6456 6338 14951 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16866 6338 6316 14951 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16867 6316 6433 14951 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16868 6433 6456 14951 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16869 6575 6540 14952 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16870 6540 6513 14952 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16871 6513 6552 14952 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16872 6552 6575 14952 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16873 6560 6567 14953 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16874 6567 6543 14953 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16875 6543 6537 14953 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16876 6537 6560 14953 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16877 6739 6663 14954 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16878 6663 6592 14954 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16879 6592 6627 14954 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16880 6627 6739 14954 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16881 6541 6558 14955 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16882 6558 6599 14955 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16883 6599 6563 14955 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16884 6563 6541 14955 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16885 6883 6814 14956 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16886 6814 6694 14956 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16887 6694 6728 14956 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16888 6728 6883 14956 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16889 6927 6920 14957 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16890 6920 6738 14957 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16891 6738 6740 14957 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16892 6740 6927 14957 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16893 5759 5727 14958 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16894 5727 5762 14958 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16895 5762 5782 14958 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16896 5782 5759 14958 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16897 5891 5836 14959 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16898 5836 5847 14959 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16899 5847 5889 14959 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16900 5889 5891 14959 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16901 6075 5972 14960 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16902 5972 5958 14960 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16903 5958 6053 14960 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16904 6053 6075 14960 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16905 6340 6219 14961 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16906 6219 6177 14961 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16907 6177 6296 14961 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16908 6296 6340 14961 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16909 6418 6387 14962 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16910 6387 6354 14962 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16911 6354 6368 14962 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16912 6368 6418 14962 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16913 6442 6343 14963 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16914 6343 6334 14963 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16915 6334 6445 14963 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16916 6445 6442 14963 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16917 6145 6195 14964 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16918 6195 6218 14964 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16919 6218 6162 14964 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16920 6162 6145 14964 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16921 6563 6528 14965 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16922 6528 6530 14965 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16923 6530 6560 14965 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16924 6560 6563 14965 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16925 6502 6541 14966 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16926 6541 6537 14966 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16927 6537 6495 14966 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16928 6495 6502 14966 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16929 7475 7533 14967 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16930 7533 7343 14967 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16931 7343 7296 14967 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16932 7296 7475 14967 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16933 6369 6455 14968 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16934 6455 6479 14968 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16935 6479 6383 14968 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16936 6383 6369 14968 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16937 6578 6479 14969 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16938 6479 6473 14969 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16939 6473 6571 14969 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16940 6571 6578 14969 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16941 7296 7073 14970 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16942 7073 7051 14970 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16943 7051 7282 14970 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16944 7282 7296 14970 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16945 6697 6854 14971 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16946 6854 6866 14971 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16947 6866 6706 14971 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16948 6706 6697 14971 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16949 7572 7475 14972 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16950 7475 7453 14972 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16951 7453 7529 14972 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16952 7529 7572 14972 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16953 7480 7549 14973 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16954 7549 7529 14973 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16955 7529 7473 14973 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16956 7473 7480 14973 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16957 7626 7572 14974 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16958 7572 7549 14974 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16959 7549 7601 14974 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16960 7601 7626 14974 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16961 6162 6244 14975 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16962 6244 6243 14975 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16963 6243 6153 14975 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16964 6153 6162 14975 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16965 6139 6145 14976 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16966 6145 6153 14976 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16967 6153 6149 14976 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16968 6149 6139 14976 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16969 7521 7582 14977 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16970 7582 7553 14977 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16971 7553 7501 14977 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16972 7501 7521 14977 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16973 7592 7553 14978 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16974 7553 7593 14978 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16975 7593 7629 14978 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16976 7629 7592 14978 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16977 7710 7709 14979 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16978 7709 7665 14979 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16979 7665 7663 14979 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16980 7663 7710 14979 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16981 7222 7374 14980 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16982 7374 7382 14980 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16983 7382 7243 14980 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16984 7243 7222 14980 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16985 5955 6220 14981 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16986 6220 6227 14981 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16987 6227 5961 14981 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16988 5961 5955 14981 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16989 6740 6524 14982 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16990 6524 6512 14982 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16991 6512 6733 14982 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16992 6733 6740 14982 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16993 6108 5875 14983 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16994 5875 5879 14983 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16995 5879 6122 14983 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16996 6122 6108 14983 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16997 6682 6384 14984 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16998 6384 6395 14984 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 16999 6395 6692 14984 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17000 6692 6682 14984 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17001 7095 6913 14985 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17002 6913 6917 14985 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17003 6917 7102 14985 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17004 7102 7095 14985 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17005 7419 7289 14986 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17006 7289 7307 14986 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17007 7307 7439 14986 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17008 7439 7419 14986 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17009 6921 7074 14987 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17010 7074 7080 14987 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17011 7080 6927 14987 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17012 6927 6921 14987 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17013 8066 8141 14988 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17014 8141 7981 14988 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17015 7981 7925 14988 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17016 7925 8066 14988 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17017 8001 8033 14989 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17018 8033 7900 14989 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17019 7900 7871 14989 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17020 7871 8001 14989 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17021 6044 5846 14990 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17022 5846 5850 14990 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17023 5850 6052 14990 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17024 6052 6044 14990 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17025 6549 6292 14991 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17026 6292 6300 14991 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17027 6300 6556 14991 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17028 6556 6549 14991 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17029 6529 6271 14992 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17030 6271 6249 14992 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17031 6249 6520 14992 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17032 6520 6529 14992 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17033 6233 6249 14993 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17034 6249 6251 14993 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17035 6251 6235 14993 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17036 6235 6233 14993 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17037 6238 6233 14994 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17038 6233 6213 14994 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17039 6213 6214 14994 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17040 6214 6238 14994 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17041 6506 6238 14995 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17042 6238 6246 14995 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17043 6246 6503 14995 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17044 6503 6506 14995 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17045 7615 7466 14996 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17046 7466 7461 14996 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17047 7461 7611 14996 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17048 7611 7615 14996 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17049 6873 7159 14997 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17050 7159 7170 14997 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17051 7170 6881 14997 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17052 6881 6873 14997 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17053 7175 7170 14998 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17054 7170 7466 14998 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17055 7466 7469 14998 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17056 7469 7175 14998 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17057 7614 7615 14999 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17058 7615 7622 14999 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17059 7622 7620 14999 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17060 7620 7614 14999 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17061 7469 7614 15000 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17062 7614 7608 15000 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17063 7608 7464 15000 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17064 7464 7469 15000 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17065 6520 6506 15001 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17066 6506 6881 15001 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17067 6881 6890 15001 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17068 6890 6520 15001 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17069 7177 6894 15002 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17070 6894 6890 15002 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17071 6890 7175 15002 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17072 7175 7177 15002 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17073 8275 8263 15003 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17074 8263 8248 15003 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17075 8248 8264 15003 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17076 8264 8275 15003 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17077 8276 8282 15004 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17078 8282 8338 15004 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17079 8338 8329 15004 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17080 8329 8276 15004 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17081 8396 8419 15005 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17082 8419 8537 15005 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17083 8537 8487 15005 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17084 8487 8396 15005 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17085 8603 8659 15006 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17086 8659 8778 15006 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17087 8778 8694 15006 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17088 8694 8603 15006 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17089 8783 8857 15007 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17090 8857 8902 15007 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17091 8902 8848 15007 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17092 8848 8783 15007 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17093 8903 8917 15008 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17094 8917 8919 15008 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17095 8919 8923 15008 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17096 8923 8903 15008 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17097 8932 8909 15009 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17098 8909 8883 15009 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17099 8883 8889 15009 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17100 8889 8932 15009 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17101 8819 8852 15010 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17102 8852 8822 15010 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17103 8822 8789 15010 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17104 8789 8819 15010 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17105 8803 8793 15011 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17106 8793 8754 15011 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17107 8754 8769 15011 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17108 8769 8803 15011 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17109 8735 8733 15012 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17110 8733 8717 15012 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17111 8717 8705 15012 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17112 8705 8735 15012 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17113 8688 8712 15013 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17114 8712 8716 15013 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17115 8716 8686 15013 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17116 8686 8688 15013 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17117 8681 8722 15014 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17118 8722 8726 15014 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17119 8726 8670 15014 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17120 8670 8681 15014 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17121 8668 8719 15015 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17122 8719 8702 15015 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17123 8702 8658 15015 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17124 8658 8668 15015 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17125 8638 8699 15016 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17126 8699 8711 15016 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17127 8711 8643 15016 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17128 8643 8638 15016 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17129 8630 8805 15017 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17130 8805 8828 15017 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17131 8828 8646 15017 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17132 8646 8630 15017 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17133 8840 8828 15018 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17134 8828 8809 15018 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17135 8809 8823 15018 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17136 8823 8840 15018 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17137 8835 8849 15019 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17138 8849 8879 15019 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17139 8879 8872 15019 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17140 8872 8835 15019 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17141 8894 8879 15020 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17142 8879 8847 15020 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17143 8847 8871 15020 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17144 8871 8894 15020 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17145 8721 8645 15021 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17146 8645 8676 15021 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17147 8676 8758 15021 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17148 8758 8721 15021 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17149 8718 8676 15022 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17150 8676 8650 15022 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17151 8650 8675 15022 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17152 8675 8718 15022 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17153 8609 8572 15023 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17154 8572 8581 15023 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17155 8581 8626 15023 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17156 8626 8609 15023 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17157 8596 8581 15024 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17158 8581 8558 15024 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17159 8558 8573 15024 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17160 8573 8596 15024 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17161 8597 8610 15025 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17162 8610 8641 15025 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17163 8641 8631 15025 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17164 8631 8597 15025 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17165 8664 8641 15026 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17166 8641 8612 15026 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17167 8612 8636 15026 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17168 8636 8664 15026 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17169 8747 8767 15027 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17170 8767 8786 15027 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17171 8786 8780 15027 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17172 8780 8747 15027 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17173 6999 6638 15028 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17174 6638 6641 15028 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17175 6641 7001 15028 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17176 7001 6999 15028 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17177 7470 7141 15029 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17178 7141 7142 15029 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17179 7142 7468 15029 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17180 7468 7470 15029 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17181 8410 7992 15030 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17182 7992 7986 15030 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17183 7986 8399 15030 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17184 8399 8410 15030 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17185 8884 8922 15031 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17186 8922 8896 15031 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17187 8896 8839 15031 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17188 8839 8884 15031 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17189 8808 8765 15032 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17190 8765 8728 15032 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17191 8728 8773 15032 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17192 8773 8808 15032 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17193 8853 8858 15033 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17194 8858 8818 15033 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17195 8818 8813 15033 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17196 8813 8853 15033 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17197 8720 8798 15034 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17198 8798 8764 15034 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17199 8764 8683 15034 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17200 8683 8720 15034 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17201 8750 8713 15035 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17202 8713 8672 15035 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17203 8672 8714 15035 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17204 8714 8750 15035 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17205 8563 8478 15036 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17206 8478 8540 15036 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17207 8540 8635 15036 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17208 8635 8563 15036 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17209 8374 8440 15037 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17210 8440 8420 15037 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17211 8420 8344 15037 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17212 8344 8374 15037 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17213 8643 8620 15038 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17214 8620 8774 15038 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17215 8774 8802 15038 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17216 8802 8643 15038 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17217 8869 8907 15039 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17218 8907 8771 15039 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17219 8771 8681 15039 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17220 8681 8869 15039 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17221 8686 8771 15040 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17222 8771 8908 15040 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17223 8908 8890 15040 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17224 8890 8686 15040 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17225 8826 8830 15041 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17226 8830 8670 15041 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17227 8670 8668 15041 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17228 8668 8826 15041 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17229 8802 8824 15042 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17230 8824 8658 15042 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17231 8658 8638 15042 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17232 8638 8802 15042 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17233 8433 8374 15043 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17234 8374 8317 15043 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17235 8317 8378 15043 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17236 8378 8433 15043 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17237 8705 8688 15044 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17238 8688 8905 15044 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17239 8905 8927 15044 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17240 8927 8705 15044 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17241 8329 8396 15045 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17242 8396 8456 15045 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17243 8456 8423 15045 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17244 8423 8329 15045 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17245 8582 8510 15046 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17246 8510 8487 15046 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17247 8487 8578 15046 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17248 8578 8582 15046 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17249 8744 8701 15047 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17250 8701 8578 15047 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17251 8578 8603 15047 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17252 8603 8744 15047 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17253 8846 8744 15048 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17254 8744 8694 15048 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17255 8694 8783 15048 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17256 8783 8846 15048 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17257 9036 8961 15049 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17258 8961 8848 15049 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17259 8848 8903 15049 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17260 8903 9036 15049 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17261 8264 8276 15050 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17262 8276 8394 15050 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17263 8394 8372 15050 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17264 8372 8264 15050 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17265 8304 8275 15051 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17266 8275 8385 15051 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17267 8385 8406 15051 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17268 8406 8304 15051 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17269 8378 8335 15052 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17270 8335 8425 15052 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17271 8425 8455 15052 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17272 8455 8378 15052 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17273 9212 9130 15053 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17274 9130 8923 15053 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17275 8923 8980 15053 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17276 8980 9212 15053 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17277 9172 9241 15054 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17278 9241 8980 15054 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17279 8980 8932 15054 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17280 8932 9172 15054 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17281 9004 9101 15055 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17282 9101 8889 15055 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17283 8889 8819 15055 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17284 8819 9004 15055 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17285 9018 9004 15056 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17286 9004 8789 15056 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17287 8789 8803 15056 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17288 8803 9018 15056 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17289 8965 8993 15057 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17290 8993 8769 15057 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17291 8769 8735 15057 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17292 8735 8965 15057 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17293 7271 7100 15058 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17294 7100 7098 15058 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17295 7098 7260 15058 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17296 7260 7271 15058 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17297 7404 7519 15059 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17298 7519 7528 15059 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17299 7528 7409 15059 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17300 7409 7404 15059 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17301 6965 6833 15060 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17302 6833 6836 15060 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17303 6836 6967 15060 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17304 6967 6965 15060 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17305 6726 6613 15061 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17306 6613 6615 15061 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17307 6615 6730 15061 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17308 6730 6726 15061 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17309 6461 6379 15062 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17310 6379 6386 15062 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17311 6386 6469 15062 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17312 6469 6461 15062 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17313 6397 6596 15063 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17314 6596 6600 15063 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17315 6600 6406 15063 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17316 6406 6397 15063 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17317 6835 7060 15064 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17318 7060 7057 15064 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17319 7057 6837 15064 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17320 6837 6835 15064 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17321 7323 7482 15065 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17322 7482 7478 15065 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17323 7478 7317 15065 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17324 7317 7323 15065 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17325 7599 7686 15066 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17326 7686 7675 15066 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17327 7675 7584 15066 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17328 7584 7599 15066 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17329 7776 7808 15067 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17330 7808 7802 15067 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17331 7802 7768 15067 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17332 7768 7776 15067 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17333 7791 7770 15068 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17334 7770 7761 15068 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17335 7761 7787 15068 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17336 7787 7791 15068 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17337 7732 7651 15069 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17338 7651 7645 15069 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17339 7645 7725 15069 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17340 7725 7732 15069 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17341 3636 3514 15070 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17342 3514 3523 15070 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17343 3523 3641 15070 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17344 3641 3636 15070 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17345 3787 3943 15071 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17346 3943 3941 15071 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17347 3941 3775 15071 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17348 3775 3787 15071 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17349 3395 3312 15072 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17350 3312 3316 15072 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17351 3316 3401 15072 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17352 3401 3395 15072 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17353 3276 3253 15073 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17354 3253 3259 15073 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17355 3259 3284 15073 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17356 3284 3276 15073 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17357 3236 3270 15074 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17358 3270 3277 15074 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17359 3277 3241 15074 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17360 3241 3236 15074 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17361 3354 3447 15075 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17362 3447 3458 15075 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17363 3458 3366 15075 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17364 3366 3354 15075 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17365 3560 3719 15076 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17366 3719 3725 15076 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17367 3725 3563 15076 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17368 3563 3560 15076 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17369 3980 4210 15077 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17370 4210 4208 15077 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17371 4208 3983 15077 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17372 3983 3980 15077 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17373 4443 4650 15078 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17374 4650 4641 15078 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17375 4641 4439 15078 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17376 4439 4443 15078 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17377 4667 4584 15079 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17378 4584 4576 15079 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17379 4576 4660 15079 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17380 4660 4667 15079 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17381 4425 4317 15080 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17382 4317 4314 15080 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17383 4314 4422 15080 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17384 4422 4425 15080 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17385 4212 4076 15081 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17386 4076 4074 15081 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17387 4074 4209 15081 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17388 4209 4212 15081 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17389 7401 7404 15082 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17390 7404 7260 15082 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17391 7260 7256 15082 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17392 7256 7401 15082 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17393 7275 7271 15083 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17394 7271 7409 15083 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17395 7409 7414 15083 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17396 7414 7275 15083 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17397 6962 6965 15084 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17398 6965 7100 15084 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17399 7100 7096 15084 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17400 7096 6962 15084 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17401 7099 7098 15085 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17402 7098 6967 15085 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17403 6967 6968 15085 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17404 6968 7099 15085 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17405 6723 6726 15086 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17406 6726 6833 15086 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17407 6833 6827 15086 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17408 6827 6723 15086 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17409 6841 6836 15087 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17410 6836 6730 15087 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17411 6730 6732 15087 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17412 6732 6841 15087 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17413 6440 6461 15088 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17414 6461 6613 15088 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17415 6613 6601 15088 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17416 6601 6440 15088 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17417 6620 6615 15089 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17418 6615 6469 15089 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17419 6469 6478 15089 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17420 6478 6620 15089 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17421 6372 6397 15090 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17422 6397 6379 15090 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17423 6379 6361 15090 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17424 6361 6372 15090 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17425 6390 6386 15091 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17426 6386 6406 15091 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17427 6406 6415 15091 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17428 6415 6390 15091 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17429 6846 6835 15092 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17430 6835 6596 15092 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17431 6596 6590 15092 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17432 6590 6846 15092 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17433 6604 6600 15093 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17434 6600 6837 15093 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17435 6837 6839 15093 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17436 6839 6604 15093 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17437 7339 7323 15094 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17438 7323 7060 15094 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17439 7060 7077 15094 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17440 7077 7339 15094 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17441 7056 7057 15095 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17442 7057 7317 15095 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17443 7317 7316 15095 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17444 7316 7056 15095 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17445 7635 7599 15096 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17446 7599 7482 15096 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17447 7482 7511 15096 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17448 7511 7635 15096 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17449 7477 7478 15097 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17450 7478 7584 15097 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17451 7584 7581 15097 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17452 7581 7477 15097 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17453 7807 7776 15098 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17454 7776 7686 15098 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17455 7686 7730 15098 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17456 7730 7807 15098 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17457 7671 7675 15099 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17458 7675 7768 15099 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17459 7768 7762 15099 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17460 7762 7671 15099 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17461 7827 7791 15100 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17462 7791 7808 15100 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17463 7808 7840 15100 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17464 7840 7827 15100 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17465 7798 7802 15101 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17466 7802 7787 15101 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17467 7787 7783 15101 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17468 7783 7798 15101 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17469 7752 7732 15102 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17470 7732 7770 15102 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17471 7770 7795 15102 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17472 7795 7752 15102 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17473 7759 7761 15103 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17474 7761 7725 15103 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17475 7725 7723 15103 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17476 7723 7759 15103 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17477 7539 7528 15104 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17478 7528 7651 15104 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17479 7651 7662 15104 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17480 7662 7539 15104 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17481 7644 7645 15105 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17482 7645 7519 15105 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17483 7519 7517 15105 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17484 7517 7644 15105 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17485 3791 3787 15106 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17486 3787 3641 15106 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17487 3641 3644 15106 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17488 3644 3791 15106 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17489 3631 3636 15107 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17490 3636 3775 15107 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17491 3775 3771 15107 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17492 3771 3631 15107 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17493 3380 3395 15108 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17494 3395 3514 15108 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17495 3514 3504 15108 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17496 3504 3380 15108 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17497 3524 3523 15109 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17498 3523 3401 15109 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17499 3401 3402 15109 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17500 3402 3524 15109 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17501 3249 3276 15110 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17502 3276 3312 15110 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17503 3312 3293 15110 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17504 3293 3249 15110 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17505 3318 3316 15111 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17506 3316 3284 15111 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17507 3284 3287 15111 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17508 3287 3318 15111 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17509 3205 3236 15112 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17510 3236 3253 15112 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17511 3253 3217 15112 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17512 3217 3205 15112 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17513 3263 3259 15113 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17514 3259 3241 15113 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17515 3241 3245 15113 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17516 3245 3263 15113 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17517 3313 3354 15114 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17518 3354 3270 15114 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17519 3270 3237 15114 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17520 3237 3313 15114 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17521 3283 3277 15115 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17522 3277 3366 15115 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17523 3366 3370 15115 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17524 3370 3283 15115 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17525 3531 3560 15116 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17526 3560 3447 15116 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17527 3447 3411 15116 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17528 3411 3531 15116 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17529 3461 3458 15117 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17530 3458 3563 15117 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17531 3563 3564 15117 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17532 3564 3461 15117 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17533 3963 3980 15118 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17534 3980 3719 15118 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17535 3719 3704 15118 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17536 3704 3963 15118 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17537 3726 3725 15119 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17538 3725 3983 15119 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17539 3983 3984 15119 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17540 3984 3726 15119 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17541 4450 4443 15120 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17542 4443 4210 15120 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17543 4210 4198 15120 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17544 4198 4450 15120 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17545 4207 4208 15121 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17546 4208 4439 15121 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17547 4439 4435 15121 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17548 4435 4207 15121 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17549 4687 4667 15122 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17550 4667 4650 15122 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17551 4650 4675 15122 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17552 4675 4687 15122 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17553 4633 4641 15123 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17554 4641 4660 15123 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17555 4660 4657 15123 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17556 4657 4633 15123 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17557 4438 4425 15124 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17558 4425 4584 15124 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17559 4584 4606 15124 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17560 4606 4438 15124 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17561 4568 4576 15125 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17562 4576 4422 15125 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17563 4422 4418 15125 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17564 4418 4568 15125 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17565 4218 4212 15126 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17566 4212 4317 15126 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17567 4317 4321 15126 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17568 4321 4218 15126 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17569 4313 4314 15127 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17570 4314 4209 15127 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17571 4209 4205 15127 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17572 4205 4313 15127 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17573 3944 3941 15128 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17574 3941 4076 15128 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17575 4076 4079 15128 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17576 4079 3944 15128 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17577 4073 4074 15129 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17578 4074 3943 15129 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17579 3943 3942 15129 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17580 3942 4073 15129 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17581 4070 3684 15130 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17582 3684 3718 15130 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17583 3718 4080 15130 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17584 4080 4070 15130 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17585 3404 3141 15131 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17586 3141 3178 15131 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17587 3178 3431 15131 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17588 3431 3404 15131 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17589 3684 3649 15132 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17590 3649 3355 15132 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17591 3355 3404 15132 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17592 3404 3684 15132 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17593 2991 3018 15133 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17594 3018 3001 15133 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17595 3001 3004 15133 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17596 3004 2991 15133 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17597 3141 3112 15134 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17598 3112 2987 15134 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17599 2987 2991 15134 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17600 2991 3141 15134 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17601 3145 3229 15135 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17602 3229 3199 15135 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17603 3199 3122 15135 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17604 3122 3145 15135 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17605 3018 3033 15136 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17606 3033 3169 15136 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17607 3169 3145 15136 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17608 3145 3018 15136 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17609 3285 3374 15137 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17610 3374 3335 15137 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17611 3335 3251 15137 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17612 3251 3285 15137 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17613 3229 3254 15138 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17614 3254 3305 15138 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17615 3305 3285 15138 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17616 3285 3229 15138 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17617 3493 3624 15139 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17618 3624 3586 15139 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17619 3586 3457 15139 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17620 3457 3493 15139 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17621 3374 3394 15140 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17622 3394 3507 15140 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17623 3507 3493 15140 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17624 3493 3374 15140 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17625 3770 4090 15141 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17626 4090 4061 15141 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17627 4061 3739 15141 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17628 3739 3770 15141 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17629 3624 3632 15142 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17630 3632 3785 15142 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17631 3785 3770 15142 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17632 3770 3624 15142 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17633 4618 5084 15143 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17634 5084 5055 15143 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17635 5055 4560 15143 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17636 4560 4618 15143 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17637 4090 4092 15144 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17638 4092 4619 15144 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17639 4619 4618 15144 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17640 4618 4090 15144 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17641 5377 5670 15145 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17642 5670 5653 15145 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17643 5653 5361 15145 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17644 5361 5377 15145 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17645 5084 5083 15146 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17646 5083 5390 15146 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17647 5390 5377 15146 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17648 5377 5084 15146 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17649 5964 6427 15147 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17650 6427 6393 15147 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17651 6393 5949 15147 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17652 5949 5964 15147 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17653 5670 5682 15148 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17654 5682 5990 15148 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17655 5990 5964 15148 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17656 5964 5670 15148 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17657 6940 7209 15149 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17658 7209 7181 15149 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17659 7181 6916 15149 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17660 6916 6940 15149 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17661 6427 6484 15150 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17662 6484 6981 15150 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17663 6981 6940 15150 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17664 6940 6427 15150 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17665 7367 7486 15151 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17666 7486 7474 15151 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17667 7474 7354 15151 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17668 7354 7367 15151 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17669 7209 7295 15152 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17670 7295 7431 15152 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17671 7431 7367 15152 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17672 7367 7209 15152 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17673 7610 7690 15153 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17674 7690 7679 15153 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17675 7679 7594 15153 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17676 7594 7610 15153 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17677 7486 7537 15154 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17678 7537 7643 15154 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17679 7643 7610 15154 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17680 7610 7486 15154 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17681 7751 7852 15155 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17682 7852 7847 15155 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17683 7847 7741 15155 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17684 7741 7751 15155 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17685 7690 7727 15156 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17686 7727 7781 15156 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17687 7781 7751 15156 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17688 7751 7690 15156 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17689 7987 8096 15157 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17690 8096 8078 15157 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17691 8078 7979 15157 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17692 7979 7987 15157 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17693 7852 7873 15158 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17694 7873 8006 15158 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17695 8006 7987 15158 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17696 7987 7852 15158 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17697 8029 7821 15159 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17698 7821 7800 15159 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17699 7800 8009 15159 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17700 8009 8029 15159 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17701 8096 8114 15160 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17702 8114 8044 15160 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17703 8044 8029 15160 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17704 8029 8096 15160 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17705 7513 7112 15161 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17706 7112 7097 15161 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17707 7097 7495 15161 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17708 7495 7513 15161 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17709 7821 7839 15162 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17710 7839 7535 15162 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17711 7535 7513 15162 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17712 7513 7821 15162 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17713 6639 6092 15163 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17714 6092 6070 15163 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17715 6070 6631 15163 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17716 6631 6639 15163 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17717 7112 7140 15164 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17718 7140 6656 15164 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17719 6656 6639 15164 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17720 6639 7112 15164 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17721 5722 5372 15165 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17722 5372 5359 15165 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17723 5359 5703 15165 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17724 5703 5722 15165 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17725 6092 6101 15166 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17726 6101 5737 15166 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17727 5737 5722 15166 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17728 5722 6092 15166 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17729 5030 4547 15167 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17730 4547 4522 15167 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17731 4522 5013 15167 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17732 5013 5030 15167 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17733 5372 5383 15168 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17734 5383 5027 15168 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17735 5027 5030 15168 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17736 5030 5372 15168 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17737 4547 4508 15169 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17738 4508 4031 15169 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17739 4031 4070 15169 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17740 4070 4547 15169 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17741 3976 3581 15170 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17742 3581 3649 15170 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17743 3649 4031 15170 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17744 4031 3976 15170 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17745 3290 3061 15171 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17746 3061 3112 15171 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17747 3112 3355 15171 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17748 3355 3290 15171 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17749 3581 3506 15172 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17750 3506 3206 15172 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17751 3206 3290 15172 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17752 3290 3581 15172 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17753 2938 3006 15173 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17754 3006 3033 15173 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17755 3033 2987 15173 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17756 2987 2938 15173 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17757 3061 2978 15174 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17758 2978 2880 15174 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17759 2880 2938 15174 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17760 2938 3061 15174 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17761 3142 3223 15175 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17762 3223 3254 15175 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17763 3254 3169 15175 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17764 3169 3142 15175 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17765 3006 2933 15176 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17766 2933 3088 15176 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17767 3088 3142 15176 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17768 3142 3006 15176 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17769 3272 3356 15177 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17770 3356 3394 15177 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17771 3394 3305 15177 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17772 3305 3272 15177 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17773 3223 3175 15178 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17774 3175 3209 15178 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17775 3209 3272 15178 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17776 3272 3223 15178 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17777 3470 3589 15179 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17778 3589 3632 15179 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17779 3632 3507 15179 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17780 3507 3470 15179 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17781 3356 3294 15180 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17782 3294 3406 15180 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17783 3406 3470 15180 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17784 3470 3356 15180 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17785 3729 4056 15181 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17786 4056 4092 15181 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17787 4092 3785 15181 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17788 3785 3729 15181 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17789 3589 3530 15182 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17790 3530 3663 15182 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17791 3663 3729 15182 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17792 3729 3589 15182 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17793 4556 5069 15183 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17794 5069 5083 15183 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17795 5083 4619 15183 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17796 4619 4556 15183 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17797 4056 3998 15184 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17798 3998 4482 15184 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17799 4482 4556 15184 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17800 4556 4056 15184 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17801 5394 5699 15185 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17802 5699 5682 15185 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17803 5682 5390 15185 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17804 5390 5394 15185 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17805 5069 5038 15186 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17806 5038 5381 15186 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17807 5381 5394 15186 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17808 5394 5069 15186 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17809 6023 6566 15187 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17810 6566 6484 15187 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17811 6484 5990 15187 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17812 5990 6023 15187 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17813 5699 5715 15188 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17814 5715 6055 15188 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17815 6055 6023 15188 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17816 6023 5699 15188 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17817 7041 7381 15189 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17818 7381 7295 15189 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17819 7295 6981 15189 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17820 6981 7041 15189 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17821 6566 6623 15190 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17822 6623 7125 15190 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17823 7125 7041 15190 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17824 7041 6566 15190 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17825 7507 7637 15191 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17826 7637 7537 15191 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17827 7537 7431 15191 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17828 7431 7507 15191 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17829 7381 7458 15192 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17830 7458 7607 15192 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17831 7607 7507 15192 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17832 7507 7381 15192 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17833 7743 7828 15193 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17834 7828 7727 15193 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17835 7727 7643 15193 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17836 7643 7743 15193 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17837 7637 7731 15194 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17838 7731 7843 15194 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17839 7843 7743 15194 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17840 7743 7637 15194 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17841 7867 7952 15195 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17842 7952 7873 15195 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17843 7873 7781 15195 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17844 7781 7867 15195 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17845 7828 7912 15196 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17846 7912 7959 15196 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17847 7959 7867 15196 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17848 7867 7828 15196 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17849 8105 8177 15197 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17850 8177 8114 15197 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17851 8114 8006 15197 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17852 8006 8105 15197 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17853 7952 8054 15198 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17854 8054 8202 15198 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17855 8202 8105 15198 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17856 8105 7952 15198 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17857 8120 7884 15199 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17858 7884 7839 15199 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17859 7839 8044 15199 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17860 8044 8120 15199 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17861 8177 8241 15200 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17862 8241 8185 15200 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17863 8185 8120 15200 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17864 8120 8177 15200 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17865 7585 7179 15201 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17866 7179 7140 15201 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17867 7140 7535 15201 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17868 7535 7585 15201 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17869 7884 7943 15202 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17870 7943 7641 15202 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17871 7641 7585 15202 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17872 7585 7884 15202 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17873 6705 6138 15203 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17874 6138 6101 15203 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17875 6101 6656 15203 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17876 6656 6705 15203 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17877 7179 7242 15204 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17878 7242 6741 15204 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17879 6741 6705 15204 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17880 6705 7179 15204 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17881 5749 5389 15205 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17882 5389 5383 15205 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17883 5383 5737 15205 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17884 5737 5749 15205 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17885 6138 6163 15206 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17886 6163 5767 15206 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17887 5767 5749 15206 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17888 5749 6138 15206 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17889 5007 4445 15207 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17890 4445 4508 15207 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17891 4508 5027 15207 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17892 5027 5007 15207 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17893 5389 5373 15208 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17894 5373 4973 15208 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17895 4973 5007 15208 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17896 5007 5389 15208 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17897 4445 4394 15209 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17898 4394 3903 15209 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17899 3903 3976 15209 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17900 3976 4445 15209 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17901 3816 3409 15210 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17902 3409 3506 15210 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17903 3506 3903 15210 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17904 3903 3816 15210 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17905 3092 2854 15211 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17906 2854 2978 15211 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17907 2978 3206 15211 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17908 3206 3092 15211 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17909 3409 3361 15212 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17910 3361 3036 15212 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17911 3036 3092 15212 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17912 3092 3409 15212 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17913 2799 2832 15213 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17914 2832 2933 15213 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17915 2933 2880 15213 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17916 2880 2799 15213 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17917 2854 2811 15214 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17918 2811 2757 15214 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17919 2757 2799 15214 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17920 2799 2854 15214 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17921 2969 3071 15215 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17922 3071 3175 15215 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17923 3175 3088 15215 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17924 3088 2969 15215 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17925 2832 2792 15216 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17926 2792 2896 15216 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17927 2896 2969 15216 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17928 2969 2832 15216 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17929 3109 3188 15217 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17930 3188 3294 15217 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17931 3294 3209 15217 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17932 3209 3109 15217 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17933 3071 3007 15218 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17934 3007 3054 15218 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17935 3054 3109 15218 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17936 3109 3071 15218 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17937 3298 3427 15219 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17938 3427 3530 15219 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17939 3530 3406 15219 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17940 3406 3298 15219 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17941 3188 3136 15220 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17942 3136 3242 15220 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17943 3242 3298 15220 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17944 3298 3188 15220 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17945 3569 3912 15221 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17946 3912 3998 15221 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17947 3998 3663 15221 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17948 3663 3569 15221 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17949 3427 3383 15222 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17950 3383 3532 15222 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17951 3532 3569 15222 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17952 3569 3427 15222 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17953 4413 4994 15223 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17954 4994 5038 15223 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17955 5038 4482 15223 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17956 4482 4413 15223 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17957 3912 3873 15224 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17958 3873 4379 15224 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17959 4379 4413 15224 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17960 4413 3912 15224 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17961 5363 5724 15225 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17962 5724 5715 15225 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17963 5715 5381 15225 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17964 5381 5363 15225 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17965 4994 4976 15226 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17966 4976 5350 15226 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17967 5350 5363 15226 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17968 5363 4994 15226 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17969 6095 6685 15227 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17970 6685 6623 15227 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17971 6623 6055 15227 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17972 6055 6095 15227 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17973 5724 5732 15228 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17974 5732 6107 15228 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17975 6107 6095 15228 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17976 6095 5724 15228 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17977 7191 7543 15229 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17978 7543 7458 15229 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17979 7458 7125 15229 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17980 7125 7191 15229 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17981 6685 6716 15230 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17982 6716 7253 15230 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17983 7253 7191 15230 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17984 7191 6685 15230 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17985 7699 7837 15231 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17986 7837 7731 15231 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17987 7731 7607 15231 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17988 7607 7699 15231 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17989 7543 7598 15232 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17990 7598 7750 15232 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17991 7750 7699 15232 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17992 7699 7543 15232 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17993 7947 8032 15233 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17994 8032 7912 15233 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17995 7912 7843 15233 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17996 7843 7947 15233 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17997 7837 7882 15234 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17998 7882 7999 15234 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 17999 7999 7947 15234 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18000 7947 7837 15234 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18001 8085 8186 15235 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18002 8186 8054 15235 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18003 8054 7959 15235 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18004 7959 8085 15235 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18005 8032 8103 15236 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18006 8103 8156 15236 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18007 8156 8085 15236 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18008 8085 8032 15236 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18009 8291 8328 15237 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18010 8328 8241 15237 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18011 8241 8202 15237 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18012 8202 8291 15237 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18013 8186 8229 15238 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18014 8229 8333 15238 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18015 8333 8291 15238 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18016 8291 8186 15238 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18017 8268 8046 15239 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18018 8046 7943 15239 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18019 7943 8185 15239 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18020 8185 8268 15239 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18021 8328 8364 15240 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18022 8364 8310 15240 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18023 8310 8268 15240 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18024 8268 8328 15240 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18025 7722 7325 15241 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18026 7325 7242 15241 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18027 7242 7641 15241 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18028 7641 7722 15241 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18029 8046 8122 15242 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18030 8122 7775 15242 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18031 7775 7722 15242 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18032 7722 8046 15242 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18033 6791 6216 15243 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18034 6216 6163 15243 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18035 6163 6741 15243 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18036 6741 6791 15243 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18037 7325 7363 15244 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18038 7363 6816 15244 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18039 6816 6791 15244 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18040 6791 7325 15244 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18041 5781 5355 15245 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18042 5355 5373 15245 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18043 5373 5767 15245 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18044 5767 5781 15245 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18045 6216 6255 15246 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18046 6255 5788 15246 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18047 5788 5781 15246 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18048 5781 6216 15246 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18049 4930 4320 15247 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18050 4320 4394 15247 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18051 4394 4973 15247 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18052 4973 4930 15247 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18053 5355 5345 15248 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18054 5345 4902 15248 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18055 4902 4930 15248 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18056 4930 5355 15248 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18057 4320 4300 15249 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18058 4300 3755 15249 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18059 3755 3816 15249 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18060 3816 4320 15249 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18061 3756 3362 15250 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18062 3362 3361 15250 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18063 3361 3755 15250 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18064 3755 3756 15250 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18065 3040 2815 15251 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18066 2815 2811 15251 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18067 2811 3036 15251 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18068 3036 3040 15251 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18069 3362 4437 15252 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18070 4437 4144 15252 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18071 4144 3040 15252 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18072 3040 3362 15252 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18073 2762 2796 15253 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18074 2796 2792 15253 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18075 2792 2757 15253 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18076 2757 2762 15253 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18077 2815 4144 15254 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18078 4144 4025 15254 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18079 4025 2762 15254 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18080 2762 2815 15254 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18081 2902 3011 15255 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18082 3011 3007 15255 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18083 3007 2896 15255 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18084 2896 2902 15255 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18085 2796 4025 15256 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18086 4025 4057 15256 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18087 4057 2902 15256 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18088 2902 2796 15256 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18089 3060 3137 15257 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18090 3137 3136 15257 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18091 3136 3054 15257 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18092 3054 3060 15257 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18093 3011 4057 15258 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18094 4057 4109 15258 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18095 4109 3060 15258 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18096 3060 3011 15258 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18097 3247 3385 15259 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18098 3385 3383 15259 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18099 3383 3242 15259 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18100 3242 3247 15259 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18101 3137 4109 15260 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18102 4109 4276 15260 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18103 4276 3247 15260 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18104 3247 3137 15260 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18105 3535 3874 15261 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18106 3874 3873 15261 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18107 3873 3532 15261 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18108 3532 3535 15261 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18109 3385 4276 15262 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18110 4276 4514 15262 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18111 4514 3535 15262 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18112 3535 3385 15262 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18113 4378 4975 15263 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18114 4975 4976 15263 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18115 4976 4379 15263 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18116 4379 4378 15263 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18117 3874 4514 15264 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18118 4514 5152 15264 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18119 5152 4378 15264 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18120 4378 3874 15264 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18121 5349 5731 15265 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18122 5731 5732 15265 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18123 5732 5350 15265 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18124 5350 5349 15265 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18125 4975 5152 15266 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18126 5152 5561 15266 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18127 5561 5349 15266 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18128 5349 4975 15266 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18129 6106 6715 15267 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18130 6715 6716 15267 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18131 6716 6107 15267 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18132 6107 6106 15267 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18133 5731 5561 15268 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18134 5561 5973 15268 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18135 5973 6106 15268 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18136 6106 5731 15268 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18137 7252 7597 15269 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18138 7597 7598 15269 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18139 7598 7253 15269 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18140 7253 7252 15269 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18141 6715 5973 15270 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18142 5973 6625 15270 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18143 6625 7252 15270 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18144 7252 6715 15270 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18145 7748 7880 15271 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18146 7880 7882 15271 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18147 7882 7750 15271 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18148 7750 7748 15271 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18149 7597 6625 15272 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18150 6625 6857 15272 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18151 6857 7748 15272 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18152 7748 7597 15272 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18153 7996 8101 15273 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18154 8101 8103 15273 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18155 8103 7999 15273 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18156 7999 7996 15273 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18157 7880 6857 15274 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18158 6857 7004 15274 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18159 7004 7996 15274 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18160 7996 7880 15274 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18161 8152 8226 15275 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18162 8226 8229 15275 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18163 8229 8156 15275 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18164 8156 8152 15275 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18165 8101 7004 15276 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18166 7004 7045 15276 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18167 7045 8152 15276 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18168 8152 8101 15276 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18169 8331 8362 15277 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18170 8362 8364 15277 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18171 8364 8333 15277 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18172 8333 8331 15277 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18173 8226 7045 15278 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18174 7045 7081 15278 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18175 7081 8331 15278 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18176 8331 8226 15278 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18177 8306 8112 15279 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18178 8112 8122 15279 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18179 8122 8310 15279 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18180 8310 8306 15279 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18181 8362 7081 15280 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18182 7081 6972 15280 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18183 6972 8306 15280 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18184 8306 8362 15280 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18185 7771 7362 15281 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18186 7362 7363 15281 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18187 7363 7775 15281 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18188 7775 7771 15281 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18189 8112 6972 15282 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18190 6972 6691 15282 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18191 6691 7771 15282 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18192 7771 8112 15282 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18193 6815 6254 15283 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18194 6254 6255 15283 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18195 6255 6816 15283 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18196 6816 6815 15283 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18197 7362 6691 15284 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18198 6691 6038 15284 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18199 6038 6815 15284 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18200 6815 7362 15284 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18201 5787 5344 15285 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18202 5344 5345 15285 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18203 5345 5788 15285 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18204 5788 5787 15285 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18205 6254 6038 15286 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18206 6038 5567 15286 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18207 5567 5787 15286 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18208 5787 6254 15286 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18209 4901 4301 15287 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18210 4301 4300 15287 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18211 4300 4902 15287 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18212 4902 4901 15287 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18213 5344 5567 15288 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18214 5567 5099 15288 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18215 5099 4901 15288 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18216 4901 5344 15288 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18217 4301 5099 15289 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18218 5099 4437 15289 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18219 4437 3756 15289 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18220 3756 4301 15289 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18221 2423 2355 15290 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18222 2355 2435 15290 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18223 2435 2533 15290 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18224 2533 2423 15290 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18225 2108 2175 15291 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18226 2175 2138 15291 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18227 2138 2105 15291 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18228 2105 2108 15291 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18229 1965 2012 15292 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18230 2012 2140 15292 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18231 2140 2118 15292 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18232 2118 1965 15292 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18233 1869 1910 15293 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18234 1910 2078 15293 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18235 2078 2052 15293 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18236 2052 1869 15293 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18237 1884 1835 15294 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18238 1835 1786 15294 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18239 1786 1826 15294 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18240 1826 1884 15294 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18241 1974 1926 15295 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18242 1926 1892 15295 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18243 1892 1955 15295 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18244 1955 1974 15295 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18245 1793 1770 15296 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18246 1770 1746 15296 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18247 1746 1767 15296 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18248 1767 1793 15296 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18249 1721 1747 15297 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18250 1747 1733 15297 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18251 1733 1717 15297 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18252 1717 1721 15297 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18253 2032 1971 15298 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18254 1971 1896 15298 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18255 1896 1967 15298 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18256 1967 2032 15298 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18257 2117 2045 15299 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18258 2045 2086 15299 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18259 2086 2134 15299 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18260 2134 2117 15299 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18261 1839 1787 15300 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18262 1787 1845 15300 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18263 1845 1906 15300 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18264 1906 1839 15300 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18265 1790 1764 15301 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18266 1764 1745 15301 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18267 1745 1765 15301 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18268 1765 1790 15301 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18269 1754 1731 15302 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18270 1731 1722 15302 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18271 1722 1758 15302 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18272 1758 1754 15302 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18273 1716 1723 15303 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18274 1723 1724 15303 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18275 1724 1715 15303 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18276 1715 1716 15303 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18277 1756 1725 15304 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18278 1725 1729 15304 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18279 1729 1757 15304 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18280 1757 1756 15304 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18281 1714 1734 15305 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18282 1734 1740 15305 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18283 1740 1719 15305 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18284 1719 1714 15305 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18285 1760 1730 15306 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18286 1730 1735 15306 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18287 1735 1763 15306 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18288 1763 1760 15306 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18289 1727 1750 15307 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18290 1750 1759 15307 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18291 1759 1744 15307 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18292 1744 1727 15307 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18293 1769 1742 15308 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18294 1742 1753 15308 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18295 1753 1778 15308 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18296 1778 1769 15308 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18297 1761 1776 15309 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18298 1776 1796 15309 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18299 1796 1779 15309 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18300 1779 1761 15309 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18301 1782 1766 15310 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18302 1766 1783 15310 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18303 1783 1806 15310 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18304 1806 1782 15310 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18305 1803 1837 15311 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18306 1837 1894 15311 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18307 1894 1856 15311 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18308 1856 1803 15311 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18309 1857 1819 15312 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18310 1819 1883 15312 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18311 1883 1900 15312 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18312 1900 1857 15312 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18313 1912 1969 15313 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18314 1969 2014 15313 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18315 2014 1941 15313 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18316 1941 1912 15313 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18317 1990 1987 15314 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18318 1987 1963 15314 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18319 1963 1983 15314 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18320 1983 1990 15314 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18321 2055 2063 15315 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18322 2063 2061 15315 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18323 2061 2029 15315 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18324 2029 2055 15315 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18325 2001 2017 15316 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18326 2017 2067 15316 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18327 2067 2062 15316 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18328 2062 2001 15316 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18329 2152 2145 15317 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18330 2145 2160 15317 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18331 2160 2169 15317 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18332 2169 2152 15317 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18333 2200 2178 15318 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18334 2178 2204 15318 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18335 2204 2219 15318 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18336 2219 2200 15318 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18337 1956 2042 15319 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18338 2042 2013 15319 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18339 2013 1916 15319 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18340 1916 1956 15319 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18341 1936 1931 15320 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18342 1931 1903 15320 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18343 1903 1907 15320 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18344 1907 1936 15320 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18345 1862 1867 15321 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18346 1867 1860 15321 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18347 1860 1849 15321 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18348 1849 1862 15321 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18349 1822 1802 15322 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18350 1802 1816 15322 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18351 1816 1842 15322 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18352 1842 1822 15322 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18353 1858 1886 15323 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18354 1886 1893 15323 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18355 1893 1855 15323 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18356 1855 1858 15323 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18357 1854 1851 15324 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18358 1851 1876 15324 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18359 1876 1865 15324 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18360 1865 1854 15324 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18361 1830 1882 15325 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18362 1882 1881 15325 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18363 1881 1823 15325 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18364 1823 1830 15325 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18365 1890 1905 15326 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18366 1905 1846 15326 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18367 1846 1825 15326 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18368 1825 1890 15326 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18369 1902 1868 15327 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18370 1868 1924 15327 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18371 1924 1932 15327 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18372 1932 1902 15327 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18373 2036 2047 15328 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18374 2047 2039 15328 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18375 2039 1989 15328 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18376 1989 2036 15328 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18377 1820 1909 15329 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18378 1909 1966 15329 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18379 1966 1813 15329 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18380 1813 1820 15329 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18381 2077 2064 15330 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18382 2064 2124 15330 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18383 2124 2132 15330 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18384 2132 2077 15330 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18385 2153 2073 15331 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18386 2073 2037 15331 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18387 2037 2079 15331 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18388 2079 2153 15331 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18389 1848 1978 15332 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18390 1978 1927 15332 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18391 1927 1844 15332 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18392 1844 1848 15332 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18393 2171 2296 15333 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18394 2296 2254 15333 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18395 2254 2135 15333 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18396 2135 2171 15333 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18397 1827 1970 15334 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18398 1970 1993 15334 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18399 1993 1828 15334 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18400 1828 1827 15334 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18401 1853 2003 15335 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18402 2003 2026 15335 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18403 2026 1885 15335 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18404 1885 1853 15335 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18405 1921 2056 15336 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18406 2056 2107 15336 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18407 2107 2006 15336 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18408 2006 1921 15336 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18409 2075 2198 15337 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18410 2198 2244 15337 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18411 2244 2119 15337 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18412 2119 2075 15337 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18413 2083 2223 15338 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18414 2223 2206 15338 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18415 2206 2106 15338 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18416 2106 2083 15338 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18417 2501 2438 15339 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18418 2438 2391 15339 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18419 2391 2485 15339 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18420 2485 2501 15339 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18421 2482 2380 15340 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18422 2380 2339 15340 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18423 2339 2458 15340 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18424 2458 2482 15340 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18425 2266 2217 15341 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18426 2217 2389 15341 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18427 2389 2422 15341 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18428 2422 2266 15341 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18429 2534 2498 15342 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18430 2498 2590 15342 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18431 2590 2624 15342 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18432 2624 2534 15342 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18433 2356 2176 15343 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18434 2176 2157 15343 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18435 2157 2302 15343 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18436 2302 2356 15343 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18437 2415 2449 15344 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18438 2449 2388 15344 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18439 2388 2324 15344 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18440 2324 2415 15344 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18441 2554 2512 15345 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18442 2512 2575 15345 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18443 2575 2616 15345 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18444 2616 2554 15345 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18445 2626 2595 15346 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18446 2595 2658 15346 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18447 2658 2694 15346 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18448 2694 2626 15346 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18449 2451 2492 15347 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18450 2492 2548 15347 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18451 2548 2529 15347 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18452 2529 2451 15347 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18453 2643 2594 15348 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18454 2594 2604 15348 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18455 2604 2672 15348 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18456 2672 2643 15348 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18457 2765 2714 15349 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18458 2714 2745 15349 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18459 2745 2802 15349 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18460 2802 2765 15349 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18461 2678 2603 15350 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18462 2603 2591 15350 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18463 2591 2666 15350 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18464 2666 2678 15350 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18465 2814 2761 15351 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18466 2761 2744 15351 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18467 2744 2801 15351 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18468 2801 2814 15351 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18469 2633 2567 15352 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18470 2567 2539 15352 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18471 2539 2607 15352 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18472 2607 2633 15352 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18473 2760 2710 15353 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18474 2710 2660 15353 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18475 2660 2705 15353 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18476 2705 2760 15353 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18477 2540 2477 15354 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18478 2477 2409 15354 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18479 2409 2459 15354 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18480 2459 2540 15354 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18481 2630 2598 15355 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18482 2598 2535 15355 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18483 2535 2581 15355 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18484 2581 2630 15355 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18485 2378 2307 15356 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18486 2307 2315 15356 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18487 2315 2377 15356 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18488 2377 2378 15356 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18489 2455 2404 15357 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18490 2404 2503 15357 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18491 2503 2543 15357 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18492 2543 2455 15357 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18493 2593 2526 15358 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18494 2526 2602 15358 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18495 2602 2652 15358 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18496 2652 2593 15358 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18497 2629 2599 15359 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18498 2599 2693 15359 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18499 2693 2733 15359 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18500 2733 2629 15359 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18501 2742 2685 15360 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18502 2685 2785 15360 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18503 2785 2846 15360 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18504 2846 2742 15360 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18505 2869 2812 15361 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18506 2812 2920 15361 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18507 2920 3010 15361 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18508 3010 2869 15361 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18509 3120 3049 15362 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18510 3049 3186 15362 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18511 3186 3265 15362 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18512 3265 3120 15362 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18513 3172 3147 15363 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18514 3147 3325 15363 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18515 3325 3384 15363 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18516 3384 3172 15363 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18517 3178 3200 15364 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18518 3200 3435 15364 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18519 3435 3431 15364 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18520 3431 3178 15364 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18521 3035 3047 15365 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18522 3047 3004 15365 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18523 3004 3001 15365 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18524 3001 3035 15365 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18525 3439 3333 15366 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18526 3333 3463 15366 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18527 3463 3611 15366 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18528 3611 3439 15366 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18529 3613 3539 15367 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18530 3539 3792 15367 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18531 3792 3938 15367 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18532 3938 3613 15367 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18533 3718 3695 15368 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18534 3695 4030 15368 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18535 4030 4080 15368 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18536 4080 3718 15368 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18537 2721 2483 15369 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18538 2483 2381 15369 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18539 2381 2592 15369 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18540 2592 2721 15369 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18541 3502 3167 15370 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18542 3167 2861 15370 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18543 2861 3232 15370 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18544 3232 3502 15370 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18545 2468 2305 15371 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18546 2305 2239 15371 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18547 2239 2368 15371 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18548 2368 2468 15371 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18549 2917 2675 15372 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18550 2675 2546 15372 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18551 2546 2775 15372 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18552 2775 2917 15372 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18553 2279 2177 15373 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18554 2177 2158 15373 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18555 2158 2245 15373 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18556 2245 2279 15373 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18557 2726 2487 15374 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18558 2487 2456 15374 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18559 2456 2697 15374 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18560 2697 2726 15374 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18561 2253 2168 15375 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18562 2168 2192 15375 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18563 2192 2275 15375 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18564 2275 2253 15375 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18565 2681 2444 15376 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18566 2444 2445 15376 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18567 2445 2673 15376 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18568 2673 2681 15376 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18569 2320 2225 15377 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18570 2225 2323 15377 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18571 2323 2418 15377 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18572 2418 2320 15377 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18573 2665 2457 15378 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18574 2457 2513 15378 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18575 2513 2679 15378 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18576 2679 2665 15378 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18577 2538 2465 15379 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18578 2465 2524 15379 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18579 2524 2586 15379 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18580 2586 2538 15379 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18581 2713 2596 15380 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18582 2596 2628 15380 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18583 2628 2730 15380 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18584 2730 2713 15380 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18585 2743 2640 15381 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18586 2640 2631 15381 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18587 2631 2727 15381 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18588 2727 2743 15381 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18589 4238 3743 15382 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18590 3743 3546 15382 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18591 3546 4023 15382 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18592 4023 4238 15382 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18593 3708 3303 15383 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18594 3303 3154 15383 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18595 3154 3545 15383 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18596 3545 3708 15383 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18597 4504 4233 15384 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18598 4233 3990 15384 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18599 3990 4330 15384 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18600 4330 4504 15384 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18601 3519 3121 15385 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18602 3121 3083 15385 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18603 3083 3483 15385 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18604 3483 3519 15385 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18605 4298 3936 15386 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18606 3936 3886 15386 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18607 3886 4265 15386 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18608 4265 4298 15386 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18609 3428 3034 15387 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18610 3034 3000 15387 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18611 3000 3392 15387 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18612 3392 3428 15387 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18613 3348 2977 15388 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18614 2977 2941 15388 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18615 2941 3300 15388 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18616 3300 3348 15388 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18617 3910 3685 15389 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18618 3685 3623 15389 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18619 3623 3870 15389 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18620 3870 3910 15389 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18621 3239 2918 15390 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18622 2918 2903 15390 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18623 2903 3191 15390 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18624 3191 3239 15390 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18625 3749 3551 15391 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18626 3551 3477 15391 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18627 3477 3667 15391 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18628 3667 3749 15391 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18629 3148 2887 15392 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18630 2887 2859 15392 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18631 2859 3093 15392 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18632 3093 3148 15392 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18633 3588 3400 15393 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18634 3400 3328 15393 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18635 3328 3543 15393 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18636 3543 3588 15393 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18637 3757 3720 15394 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18638 3720 3927 15394 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18639 3927 3957 15394 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18640 3957 3757 15394 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18641 3900 3840 15395 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18642 3840 3988 15395 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18643 3988 4042 15395 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18644 4042 3900 15395 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18645 4035 3999 15396 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18646 3999 4143 15396 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18647 4143 4191 15396 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18648 4191 4035 15396 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18649 4123 4096 15397 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18650 4096 4280 15397 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18651 4280 4292 15397 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18652 4292 4123 15397 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18653 4211 4138 15398 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18654 4138 4307 15398 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18655 4307 4386 15398 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18656 4386 4211 15398 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18657 4441 4325 15399 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18658 4325 4555 15399 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18659 4555 4698 15399 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18660 4698 4441 15399 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18661 4454 4423 15400 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18662 4423 4690 15400 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18663 4690 4738 15400 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18664 4738 4454 15400 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18665 4645 4494 15401 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18666 4494 4769 15401 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18667 4769 4882 15401 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18668 4882 4645 15401 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18669 4946 4846 15402 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18670 4846 5012 15402 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18671 5012 5095 15402 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18672 5095 4946 15402 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18673 5086 5182 15403 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18674 5182 5149 15403 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18675 5149 5028 15403 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18676 5028 5086 15403 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18677 5051 4992 15404 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18678 4992 5153 15404 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18679 5153 5163 15404 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18680 5163 5051 15404 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18681 5570 5708 15405 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18682 5708 5660 15405 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18683 5660 5476 15405 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18684 5476 5570 15405 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18685 5276 5321 15406 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18686 5321 5418 15406 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18687 5418 5397 15406 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18688 5397 5276 15406 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18689 5251 5259 15407 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18690 5259 5365 15407 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18691 5365 5332 15407 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18692 5332 5251 15407 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18693 4727 5113 15408 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18694 5113 5107 15408 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18695 5107 4743 15408 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18696 4743 4727 15408 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18697 4747 5098 15409 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18698 5098 5147 15409 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18699 5147 4931 15409 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18700 4931 4747 15409 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18701 3184 3326 15410 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18702 3326 3378 15410 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18703 3378 3258 15410 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18704 3258 3184 15410 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18705 3126 3127 15411 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18706 3127 3308 15411 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18707 3308 3139 15411 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18708 3139 3126 15411 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18709 3716 3540 15412 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18710 3540 3529 15412 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18711 3529 3694 15412 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18712 3694 3716 15412 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18713 3548 3536 15413 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18714 3536 3730 15413 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18715 3730 3741 15413 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18716 3741 3548 15413 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18717 4039 3899 15414 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18718 3899 3862 15414 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18719 3862 4003 15414 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18720 4003 4039 15414 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18721 3679 3505 15415 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18722 3505 3533 15415 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18723 3533 3658 15415 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18724 3658 3679 15415 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18725 3468 3372 15416 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18726 3372 3527 15416 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18727 3527 3607 15416 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18728 3607 3468 15416 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18729 3711 3594 15417 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18730 3594 3717 15417 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18731 3717 3854 15417 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18732 3854 3711 15417 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18733 3767 3676 15418 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18734 3676 3842 15418 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18735 3842 3937 15418 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18736 3937 3767 15418 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18737 4008 3895 15419 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18738 3895 4022 15419 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18739 4022 4085 15419 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18740 4085 4008 15419 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18741 4050 3961 15420 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18742 3961 4203 15420 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18743 4203 4284 15420 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18744 4284 4050 15420 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18745 4181 4119 15421 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18746 4119 4306 15421 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18747 4306 4333 15421 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18748 4333 4181 15421 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18749 4697 4679 15422 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18750 4679 5082 15422 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18751 5082 5077 15422 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18752 5077 4697 15422 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18753 4684 4682 15423 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18754 4682 5037 15423 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18755 5037 5029 15423 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18756 5029 4684 15423 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18757 4797 4729 15424 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18758 4729 5049 15424 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18759 5049 5089 15424 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18760 5089 4797 15424 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18761 5337 5343 15425 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18762 5343 5658 15425 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18763 5658 5662 15425 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18764 5662 5337 15425 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18765 5362 5347 15426 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18766 5347 5651 15426 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18767 5651 5634 15426 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18768 5634 5362 15426 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18769 3050 3113 15427 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18770 3113 3207 15427 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18771 3207 3161 15427 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18772 3161 3050 15427 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18773 3081 3005 15428 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18774 3005 2985 15428 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18775 2985 3037 15428 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18776 3037 3081 15428 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18777 2968 2873 15429 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18778 2873 2858 15429 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18779 2858 2983 15429 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18780 2983 2968 15429 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18781 2979 2866 15430 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18782 2866 2904 15430 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18783 2904 2982 15430 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18784 2982 2979 15430 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18785 3055 2989 15431 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18786 2989 3106 15431 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18787 3106 3164 15431 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18788 3164 3055 15431 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18789 3319 3257 15432 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18790 3257 3389 15432 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18791 3389 3456 15432 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18792 3456 3319 15432 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18793 3577 3491 15433 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18794 3491 3584 15433 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18795 3584 3698 15433 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18796 3698 3577 15433 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18797 4585 4560 15434 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18798 4560 5055 15434 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18799 5055 5056 15434 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18800 5056 4585 15434 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18801 5353 5361 15435 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18802 5361 5653 15435 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18803 5653 5641 15435 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18804 5641 5353 15435 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18805 2612 2674 15436 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18806 2674 2689 15436 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18807 2689 2614 15436 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18808 2614 2612 15436 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18809 2709 2671 15437 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18810 2671 2724 15437 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18811 2724 2759 15437 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18812 2759 2709 15437 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18813 2787 2751 15438 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18814 2751 2788 15438 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18815 2788 2810 15438 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18816 2810 2787 15438 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18817 2773 2729 15439 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18818 2729 2791 15439 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18819 2791 2837 15439 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18820 2837 2773 15439 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18821 2836 2817 15440 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18822 2817 2826 15440 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18823 2826 2839 15440 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18824 2839 2836 15440 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18825 2901 2835 15441 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18826 2835 2867 15441 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18827 2867 2970 15441 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18828 2970 2901 15441 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18829 2865 2847 15442 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18830 2847 2848 15442 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18831 2848 2855 15442 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18832 2855 2865 15442 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18833 3003 2889 15443 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18834 2889 2914 15443 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18835 2914 3030 15443 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18836 3030 3003 15443 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18837 3064 2946 15444 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18838 2946 2996 15444 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18839 2996 3098 15444 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18840 3098 3064 15444 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18841 2986 2984 15445 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18842 2984 2974 15445 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18843 2974 2990 15445 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18844 2990 2986 15445 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18845 2763 2800 15446 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18846 2800 2821 15446 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18847 2821 2790 15446 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18848 2790 2763 15446 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18849 2808 2772 15447 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18850 2772 2793 15447 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18851 2793 2842 15447 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18852 2842 2808 15447 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18853 2898 2838 15448 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18854 2838 2939 15448 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18855 2939 3031 15448 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18856 3031 2898 15448 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18857 3189 3117 15449 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18858 3117 3220 15449 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18859 3220 3306 15449 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18860 3306 3189 15449 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18861 3403 3307 15450 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18862 3307 3375 15450 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18863 3375 3487 15450 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18864 3487 3403 15450 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18865 3558 3430 15451 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18866 3430 3457 15451 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18867 3457 3586 15451 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18868 3586 3558 15451 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18869 3215 3280 15452 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18870 3280 3218 15452 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18871 3218 3166 15452 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18872 3166 3215 15452 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18873 3335 3324 15453 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18874 3324 3243 15453 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18875 3243 3251 15453 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18876 3251 3335 15453 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18877 3082 3149 15454 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18878 3149 3028 15454 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18879 3028 2944 15454 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18880 2944 3082 15454 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18881 2809 2863 15455 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18882 2863 2781 15455 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18883 2781 2731 15455 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18884 2731 2809 15455 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18885 2707 2746 15456 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18886 2746 2728 15456 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18887 2728 2696 15456 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18888 2696 2707 15456 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18889 2716 2738 15457 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18890 2738 2777 15457 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18891 2777 2752 15457 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18892 2752 2716 15457 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18893 2850 2876 15458 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18894 2876 2925 15458 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18895 2925 2907 15458 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18896 2907 2850 15458 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18897 2813 2831 15459 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18898 2831 2882 15459 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18899 2882 2864 15459 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18900 2864 2813 15459 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18901 2922 2952 15460 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18902 2952 2976 15460 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18903 2976 2951 15460 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18904 2951 2922 15460 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18905 2931 2937 15461 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18906 2937 2906 15461 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18907 2906 2892 15461 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18908 2892 2931 15461 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18909 2816 2789 15462 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18910 2789 2827 15462 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18911 2827 2851 15462 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18912 2851 2816 15462 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18913 2868 2845 15463 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18914 2845 2828 15463 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18915 2828 2852 15463 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18916 2852 2868 15463 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18917 2807 2783 15464 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18918 2783 2725 15464 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18919 2725 2749 15464 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18920 2749 2807 15464 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18921 2680 2655 15465 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18922 2655 2609 15465 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18923 2609 2619 15465 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18924 2619 2680 15465 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18925 2860 2844 15466 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18926 2844 2875 15466 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18927 2875 2888 15466 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18928 2888 2860 15466 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18929 2849 2829 15467 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18930 2829 2776 15467 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18931 2776 2797 15467 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18932 2797 2849 15467 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18933 2722 2700 15468 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18934 2700 2644 15468 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18935 2644 2682 15468 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18936 2682 2722 15468 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18937 2661 2618 15469 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18938 2618 2617 15469 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18939 2617 2669 15469 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18940 2669 2661 15469 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18941 2695 2642 15470 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18942 2642 2715 15470 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18943 2715 2774 15470 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18944 2774 2695 15470 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18945 2881 2818 15471 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18946 2818 2930 15471 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18947 2930 3026 15471 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18948 3026 2881 15471 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18949 3130 3080 15472 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18950 3080 3133 15472 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18951 3133 3187 15472 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18952 3187 3130 15472 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18953 3201 3131 15473 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18954 3131 3122 15473 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18955 3122 3199 15473 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18956 3199 3201 15473 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18957 2893 2908 15474 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18958 2908 2878 15474 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18959 2878 2870 15474 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18960 2870 2893 15474 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18961 5338 5346 15475 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18962 5346 5254 15475 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18963 5254 5237 15475 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18964 5237 5338 15475 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18965 5580 5465 15476 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18966 5465 5464 15476 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18967 5464 5581 15476 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18968 5581 5580 15476 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18969 5314 5328 15477 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18970 5328 5214 15477 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18971 5214 5196 15477 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18972 5196 5314 15477 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18973 5585 5460 15478 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18974 5460 5459 15478 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18975 5459 5586 15478 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18976 5586 5585 15478 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18977 5283 5298 15479 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18978 5298 5185 15479 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18979 5185 5172 15479 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18980 5172 5283 15479 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18981 5591 5454 15480 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18982 5454 5451 15480 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18983 5451 5594 15480 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18984 5594 5591 15480 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18985 5187 5138 15481 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18986 5138 5081 15481 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18987 5081 5125 15481 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18988 5125 5187 15481 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18989 5165 5176 15482 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18990 5176 5100 15482 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18991 5100 5078 15482 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18992 5078 5165 15482 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18993 5124 5141 15483 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18994 5141 5050 15483 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18995 5050 5039 15483 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18996 5039 5124 15483 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18997 5101 5116 15484 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18998 5116 5035 15484 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 18999 5035 5018 15484 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19000 5018 5101 15484 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19001 5033 5010 15485 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19002 5010 4923 15485 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19003 4923 4924 15485 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19004 4924 5033 15485 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19005 4984 5002 15486 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19006 5002 4885 15486 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19007 4885 4864 15486 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19008 4864 4984 15486 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19009 4676 4742 15487 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19010 4742 4468 15487 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19011 4468 4396 15487 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19012 4396 4676 15487 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19013 4631 4658 15488 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19014 4658 4391 15488 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19015 4391 4390 15488 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19016 4390 4631 15488 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19017 4574 4614 15489 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19018 4614 4395 15489 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19019 4395 4412 15489 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19020 4412 4574 15489 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19021 4957 5041 15490 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19022 5041 5045 15490 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19023 5045 4991 15490 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19024 4991 4957 15490 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19025 4894 4945 15491 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19026 4945 4818 15491 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19027 4818 4788 15491 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19028 4788 4894 15491 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19029 4786 4794 15492 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19030 4794 4724 15492 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19031 4724 4713 15492 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19032 4713 4786 15492 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19033 3871 4165 15493 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19034 4165 4156 15493 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19035 4156 3866 15493 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19036 3866 3871 15493 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19037 5239 5248 15494 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19038 5248 5120 15494 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19039 5120 5114 15494 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19040 5114 5239 15494 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19041 5606 5440 15495 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19042 5440 5436 15495 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19043 5436 5610 15495 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19044 5610 5606 15495 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19045 5011 5025 15496 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19046 5025 4960 15496 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19047 4960 4948 15496 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19048 4948 5011 15496 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19049 4929 4914 15497 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19050 4914 4849 15497 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19051 4849 4857 15497 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19052 4857 4929 15497 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19053 4711 4728 15498 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19054 4728 4623 15498 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19055 4623 4590 15498 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19056 4590 4711 15498 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19057 4500 4543 15499 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19058 4543 4496 15499 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19059 4496 4465 15499 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19060 4465 4500 15499 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19061 4579 4629 15500 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19062 4629 4659 15500 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19063 4659 4607 15500 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19064 4607 4579 15500 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19065 4772 4681 15501 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19066 4681 4709 15501 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19067 4709 4825 15501 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19068 4825 4772 15501 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19069 5597 5448 15502 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19070 5448 5453 15502 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19071 5453 5592 15502 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19072 5592 5597 15502 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19073 5386 5354 15503 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19074 5354 5282 15503 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19075 5282 5310 15503 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19076 5310 5386 15503 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19077 5579 5466 15504 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19078 5466 5477 15504 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19079 5477 5568 15504 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19080 5568 5579 15504 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19081 5137 5106 15505 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19082 5106 5105 15505 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19083 5105 5144 15505 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19084 5144 5137 15505 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19085 5097 5112 15506 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19086 5112 4951 15506 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19087 4951 4895 15506 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19088 4895 5097 15506 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19089 5388 5366 15507 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19090 5366 5218 15507 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19091 5218 5262 15507 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19092 5262 5388 15507 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19093 5064 5072 15508 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19094 5072 4866 15508 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19095 4866 4853 15508 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19096 4853 5064 15508 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19097 5162 5150 15509 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19098 5150 4898 15509 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19099 4898 4919 15509 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19100 4919 5162 15509 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19101 5647 5403 15510 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19102 5403 5410 15510 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19103 5410 5640 15510 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19104 5640 5647 15510 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19105 4558 4630 15511 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19106 4630 4451 15511 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19107 4451 4420 15511 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19108 4420 4558 15511 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19109 4672 4640 15512 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19110 4640 4381 15512 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19111 4381 4429 15512 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19112 4429 4672 15512 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19113 4229 4098 15513 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19114 4098 4024 15513 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19115 4024 4163 15513 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19116 4163 4229 15513 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19117 4174 4153 15514 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19118 4153 3909 15514 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19119 3909 3946 15514 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19120 3946 4174 15514 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19121 4274 4217 15515 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19122 4217 4007 15515 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19123 4007 4069 15515 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19124 4069 4274 15515 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19125 3432 3574 15516 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19126 3574 3571 15516 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19127 3571 3433 15516 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19128 3433 3432 15516 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19129 3664 3622 15517 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19130 3622 3410 15517 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19131 3410 3437 15517 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19132 3437 3664 15517 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19133 3849 3733 15518 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19134 3733 3528 15518 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19135 3528 3598 15518 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19136 3598 3849 15518 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19137 3089 3230 15519 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19138 3230 3110 15519 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19139 3110 2971 15519 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19140 2971 3089 15519 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19141 2883 2786 15520 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19142 2786 2662 15520 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19143 2662 2756 15520 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19144 2756 2883 15520 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19145 3315 3138 15521 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19146 3138 3221 15521 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19147 3221 3405 15521 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19148 3405 3315 15521 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19149 3486 3474 15522 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19150 3474 3295 15522 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19151 3295 3344 15522 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19152 3344 3486 15522 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19153 3096 2993 15523 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19154 2993 2853 15523 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19155 2853 2955 15523 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19156 2955 3096 15523 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19157 5232 5219 15524 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19158 5219 5031 15524 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19159 5031 5060 15524 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19160 5060 5232 15524 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19161 5618 5428 15525 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19162 5428 5434 15525 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19163 5434 5612 15525 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19164 5612 5618 15525 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19165 5268 5241 15526 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19166 5241 5085 15526 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19167 5085 5136 15526 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19168 5136 5268 15526 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19169 5590 5455 15527 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19170 5455 5404 15527 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19171 5404 5646 15527 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19172 5646 5590 15527 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19173 4872 4813 15528 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19174 4813 4550 15528 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19175 4550 4664 15528 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19176 4664 4872 15528 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19177 5017 4935 15529 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19178 4935 4771 15529 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19179 4771 4922 15529 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19180 4922 5017 15529 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19181 4444 4342 15530 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19182 4342 4243 15530 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19183 4243 4353 15530 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19184 4353 4444 15530 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19185 4844 4628 15531 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19186 4628 4551 15531 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19187 4551 4811 15531 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19188 4811 4844 15531 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19189 4326 4172 15532 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19190 4172 4150 15532 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19191 4150 4322 15532 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19192 4322 4326 15532 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19193 4860 4563 15533 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19194 4563 4593 15533 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19195 4593 4845 15533 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19196 4845 4860 15533 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19197 4345 4171 15534 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19198 4171 4275 15534 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19199 4275 4430 15534 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19200 4430 4345 15534 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19201 4873 4637 15535 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19202 4637 4718 15535 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19203 4718 4900 15535 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19204 4900 4873 15535 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19205 4634 4414 15536 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19206 4414 4673 15536 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19207 4673 4837 15536 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19208 4837 4634 15536 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19209 4968 4836 15537 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19210 4836 4954 15537 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19211 4954 5065 15537 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19212 5065 4968 15537 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19213 5005 4906 15538 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19214 4906 5142 15538 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19215 5142 5184 15538 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19216 5184 5005 15538 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19217 5171 5096 15539 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19218 5096 5243 15539 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19219 5243 5296 15539 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19220 5296 5171 15539 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19221 2915 3087 15540 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19222 3087 3073 15540 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19223 3073 2909 15540 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19224 2909 2915 15540 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19225 3343 3222 15541 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19226 3222 3227 15541 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19227 3227 3349 15541 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19228 3349 3343 15541 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19229 3614 3472 15542 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19230 3472 3475 15542 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19231 3475 3616 15542 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19232 3616 3614 15542 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19233 3987 3823 15543 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19234 3823 3828 15543 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19235 3828 3985 15543 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19236 3985 3987 15543 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19237 4251 4116 15544 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19238 4116 4112 15544 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19239 4112 4250 15544 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19240 4250 4251 15544 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19241 4538 4375 15545 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19242 4375 4371 15545 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19243 4371 4528 15545 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19244 4528 4538 15545 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19245 4573 4564 15546 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19246 4564 4367 15546 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19247 4367 4373 15546 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19248 4373 4573 15546 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19249 4578 4583 15547 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19250 4583 4388 15547 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19251 4388 4392 15547 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19252 4392 4578 15547 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19253 4239 4231 15548 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19254 4231 4052 15548 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19255 4052 4067 15548 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19256 4067 4239 15548 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19257 4254 4248 15549 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19258 4248 4082 15549 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19259 4082 4102 15549 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19260 4102 4254 15549 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19261 3888 3869 15550 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19262 3869 3630 15550 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19263 3630 3653 15550 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19264 3653 3888 15550 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19265 3956 3925 15551 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19266 3925 3697 15551 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19267 3697 3731 15551 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19268 3731 3956 15551 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19269 3510 3448 15552 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19270 3448 3246 15552 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19271 3246 3320 15552 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19272 3320 3510 15552 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19273 3038 2954 15553 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19274 2954 2819 15553 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19275 2819 2856 15553 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19276 2856 3038 15553 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19277 3192 3105 15554 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19278 3105 2936 15554 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19279 2936 3062 15554 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19280 3062 3192 15554 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19281 2732 2702 15555 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19282 2702 2620 15555 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19283 2620 2659 15555 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19284 2659 2732 15555 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19285 2894 2806 15556 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19286 2806 2739 15556 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19287 2739 2833 15556 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19288 2833 2894 15556 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19289 2622 2571 15557 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19290 2571 2528 15557 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19291 2528 2578 15557 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19292 2578 2622 15557 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19293 2542 2486 15558 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19294 2486 2439 15558 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19295 2439 2522 15558 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19296 2522 2542 15558 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19297 2365 2440 15559 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19298 2440 2371 15559 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19299 2371 2303 15559 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19300 2303 2365 15559 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19301 2767 2857 15560 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19302 2857 2755 15560 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19303 2755 2676 15560 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19304 2676 2767 15560 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19305 2573 2646 15561 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19306 2646 2549 15561 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19307 2549 2470 15561 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19308 2470 2573 15561 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19309 2384 2454 15562 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19310 2454 2367 15562 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19311 2367 2301 15562 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19312 2301 2384 15562 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19313 2259 2285 15563 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19314 2285 2263 15563 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19315 2263 2258 15563 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19316 2258 2259 15563 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19317 2383 2282 15564 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19318 2282 2284 15564 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19319 2284 2348 15564 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19320 2348 2383 15564 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19321 2927 2935 15565 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19322 2935 2784 15565 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19323 2784 2805 15565 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19324 2805 2927 15565 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19325 2625 2704 15566 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19326 2704 2687 15566 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19327 2687 2615 15566 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19328 2615 2625 15566 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19329 2452 2495 15567 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19330 2495 2471 15567 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19331 2471 2437 15567 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19332 2437 2452 15567 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19333 2351 2361 15568 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19334 2361 2337 15568 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19335 2337 2392 15568 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19336 2392 2351 15568 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19337 2336 2403 15569 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19338 2403 2424 15569 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19339 2424 2273 15569 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19340 2273 2336 15569 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19341 2398 2448 15570 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19342 2448 2469 15570 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19343 2469 2390 15570 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19344 2390 2398 15570 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19345 2735 2667 15571 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19346 2667 2758 15571 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19347 2758 2824 15571 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19348 2824 2735 15571 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19349 2843 2953 15572 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19350 2953 3086 15572 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19351 3086 2928 15572 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19352 2928 2843 15572 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19353 3208 3075 15573 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19354 3075 3157 15573 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19355 3157 3296 15573 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19356 3296 3208 15573 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19357 2265 2350 15574 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19358 2350 2262 15574 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19359 2262 2186 15574 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19360 2186 2265 15574 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19361 3797 3778 15575 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19362 3778 3951 15575 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19363 3951 3962 15575 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19364 3962 3797 15575 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19365 4088 4081 15576 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19366 4081 4226 15576 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19367 4226 4235 15576 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19368 4235 4088 15576 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19369 4343 4334 15577 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19370 4334 4456 15577 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19371 4456 4480 15577 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19372 4480 4343 15577 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19373 4721 4755 15578 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19374 4755 4671 15578 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19375 4671 4644 15578 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19376 4644 4721 15578 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19377 4486 4752 15579 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19378 4752 4705 15579 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19379 4705 4471 15579 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19380 4471 4486 15579 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19381 3932 3907 15580 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19382 3907 4175 15580 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19383 4175 4189 15580 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19384 4189 3932 15580 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19385 3628 3660 15581 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19386 3660 3485 15581 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19387 3485 3418 15581 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19388 3418 3628 15581 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19389 3289 3339 15582 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19390 3339 3240 15582 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19391 3240 3176 15582 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19392 3176 3289 15582 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19393 3128 3183 15583 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19394 3183 3158 15583 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19395 3158 3101 15583 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19396 3101 3128 15583 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19397 3160 3108 15584 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19398 3108 3163 15584 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19399 3163 3196 15584 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19400 3196 3160 15584 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19401 3357 3346 15585 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19402 3346 3238 15585 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19403 3238 3261 15585 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19404 3261 3357 15585 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19405 3479 3488 15586 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19406 3488 3618 15586 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19407 3618 3610 15586 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19408 3610 3479 15586 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19409 4368 4360 15587 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19410 4360 4502 15587 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19411 4502 4519 15587 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19412 4519 4368 15587 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19413 4542 4553 15588 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19414 4553 4387 15588 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19415 4387 4382 15588 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19416 4382 4542 15588 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19417 4804 4854 15589 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19418 4854 4751 15589 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19419 4751 4730 15589 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19420 4730 4804 15589 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19421 4775 4831 15590 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19422 4831 4795 15590 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19423 4795 4787 15590 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19424 4787 4775 15590 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19425 4692 4770 15591 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19426 4770 4781 15591 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19427 4781 4701 15591 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19428 4701 4692 15591 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19429 4106 4101 15592 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19430 4101 4241 15592 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19431 4241 4245 15592 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19432 4245 4106 15592 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19433 4253 4256 15593 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19434 4256 4110 15593 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19435 4110 4117 15593 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19436 4117 4253 15593 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19437 3807 3968 15594 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19438 3968 3978 15594 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19439 3978 3820 15594 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19440 3820 3807 15594 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19441 3982 3967 15595 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19442 3967 3774 15595 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19443 3774 3818 15595 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19444 3818 3982 15595 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19445 3476 3478 15596 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19446 3478 3617 15596 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19447 3617 3619 15596 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19448 3619 3476 15596 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19449 3609 3578 15597 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19450 3578 3417 15597 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19451 3417 3467 15597 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19452 3467 3609 15597 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19453 3231 3345 15598 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19454 3345 3347 15598 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19455 3347 3224 15598 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19456 3224 3231 15598 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19457 3338 3291 15599 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19458 3291 3170 15599 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19459 3170 3216 15599 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19460 3216 3338 15599 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19461 3079 3132 15600 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19462 3132 3123 15600 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19463 3123 3063 15600 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19464 3063 3079 15600 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19465 2981 3067 15601 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19466 3067 3053 15601 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19467 3053 3041 15601 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19468 3041 2981 15601 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19469 3022 2934 15602 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19470 2934 2919 15602 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19471 2919 3024 15602 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19472 3024 3022 15602 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19473 3102 3039 15603 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19474 3039 2956 15603 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19475 2956 3032 15603 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19476 3032 3102 15603 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19477 5044 5075 15604 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19478 5075 5130 15604 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19479 5130 5134 15604 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19480 5134 5044 15604 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19481 5267 5257 15605 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19482 5257 5216 15605 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19483 5216 5223 15605 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19484 5223 5267 15605 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19485 5115 5102 15606 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19486 5102 5009 15606 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19487 5009 4978 15606 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19488 4978 5115 15606 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19489 4764 4740 15607 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19490 4740 4803 15607 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19491 4803 4840 15607 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19492 4840 4764 15607 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19493 4893 4947 15608 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19494 4947 4925 15608 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19495 4925 4835 15608 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19496 4835 4893 15608 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19497 5190 5208 15609 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19498 5208 5175 15609 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19499 5175 5173 15609 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19500 5173 5190 15609 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19501 5263 5275 15610 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19502 5275 5161 15610 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19503 5161 5140 15610 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19504 5140 5263 15610 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19505 5047 5076 15611 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19506 5076 4998 15611 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19507 4998 4979 15611 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19508 4979 5047 15611 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19509 4918 4932 15612 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19510 4932 4874 15612 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19511 4874 4861 15612 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19512 4861 4918 15612 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19513 4762 4790 15613 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19514 4790 4758 15613 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19515 4758 4693 15613 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19516 4693 4762 15613 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19517 4636 4720 15614 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19518 4720 4699 15614 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19519 4699 4603 15614 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19520 4603 4636 15614 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19521 5439 5443 15615 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19522 5443 5603 15615 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19523 5603 5607 15615 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19524 5607 5439 15615 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19525 5118 5129 15616 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19526 5129 5260 15616 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19527 5260 5245 15616 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19528 5245 5118 15616 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19529 4964 4980 15617 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19530 4980 5034 15617 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19531 5034 5019 15617 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19532 5019 4964 15617 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19533 4878 4897 15618 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19534 4897 4962 15618 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19535 4962 4941 15618 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19536 4941 4878 15618 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19537 4613 4646 15619 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19538 4646 4753 15619 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19539 4753 4732 15619 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19540 4732 4613 15619 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19541 4488 4533 15620 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19542 4533 4559 15620 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19543 4559 4530 15620 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19544 4530 4488 15620 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19545 4521 4448 15621 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19546 4448 4411 15621 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19547 4411 4487 15621 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19548 4487 4521 15621 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19549 4432 4347 15622 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19550 4347 4316 15622 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19551 4316 4408 15622 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19552 4408 4432 15622 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19553 5261 5249 15623 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19554 5249 5265 15623 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19555 5265 5279 15623 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19556 5279 5261 15623 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19557 5197 5198 15624 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19558 5198 5157 15624 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19559 5157 5167 15624 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19560 5167 5197 15624 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19561 4986 5014 15625 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19562 5014 5111 15625 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19563 5111 5091 15625 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19564 5091 4986 15625 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19565 4782 4890 15626 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19566 4890 4865 15626 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19567 4865 4750 15626 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19568 4750 4782 15626 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19569 4678 4700 15627 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19570 4700 4736 15627 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19571 4736 4694 15627 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19572 4694 4678 15627 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19573 4852 4887 15628 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19574 4887 4847 15628 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19575 4847 4834 15628 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19576 4834 4852 15628 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19577 4601 4598 15629 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19578 4598 4696 15629 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19579 4696 4715 15629 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19580 4715 4601 15629 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19581 4605 4604 15630 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19582 4604 4706 15630 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19583 4706 4685 15630 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19584 4685 4605 15630 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19585 4505 4511 15631 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19586 4511 4479 15631 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19587 4479 4473 15631 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19588 4473 4505 15631 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19589 4549 4546 15632 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19590 4546 4497 15632 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19591 4497 4503 15632 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19592 4503 4549 15632 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19593 4481 4525 15633 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19594 4525 4541 15633 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19595 4541 4499 15633 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19596 4499 4481 15633 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19597 4582 4565 15634 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19598 4565 4539 15634 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19599 4539 4648 15634 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19600 4648 4582 15634 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19601 4799 4779 15635 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19602 4779 4826 15635 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19603 4826 4879 15635 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19604 4879 4799 15635 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19605 4591 4602 15636 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19606 4602 4668 15636 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19607 4668 4677 15636 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19608 4677 4591 15636 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19609 4469 4485 15637 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19610 4485 4561 15637 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19611 4561 4572 15637 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19612 4572 4469 15637 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19613 4195 4304 15638 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19614 4304 4376 15638 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19615 4376 4190 15638 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19616 4190 4195 15638 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19617 4337 4310 15639 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19618 4310 4133 15639 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19619 4133 4180 15639 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19620 4180 4337 15639 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19621 5631 5416 15640 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19622 5416 5425 15640 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19623 5425 5621 15640 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19624 5621 5631 15640 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19625 5210 5183 15641 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19626 5183 4983 15641 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19627 4983 5032 15641 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19628 5032 5210 15641 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19629 4848 4765 15642 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19630 4765 4449 15642 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19631 4449 4527 15642 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19632 4527 4848 15642 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19633 4258 4230 15643 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19634 4230 4028 15643 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19635 4028 4058 15643 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19636 4058 4258 15643 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19637 3844 3740 15644 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19638 3740 3686 15644 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19639 3686 3763 15644 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19640 3763 3844 15644 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19641 3913 3891 15645 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19642 3891 3779 15645 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19643 3779 3847 15645 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19644 3847 3913 15645 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19645 3681 3605 15646 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19646 3605 3579 15646 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19647 3579 3647 15646 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19648 3647 3681 15646 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19649 3648 3593 15647 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19650 3593 3651 15647 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19651 3651 3687 15647 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19652 3687 3648 15647 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19653 3893 3929 15648 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19654 3929 3786 15648 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19655 3786 3734 15648 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19656 3734 3893 15648 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19657 4267 4297 15649 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19658 4297 4093 15649 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19659 4093 4059 15649 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19660 4059 4267 15649 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19661 4821 4871 15650 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19662 4871 4570 15650 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19663 4570 4501 15650 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19664 4501 4821 15650 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19665 5211 5231 15651 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19666 5231 5059 15651 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19667 5059 5026 15651 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19668 5026 5211 15651 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19669 5433 5426 15652 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19670 5426 5620 15652 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19671 5620 5614 15652 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19672 5614 5433 15652 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19673 5160 5166 15653 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19674 5166 4920 15653 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19675 4920 4910 15653 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19676 4910 5160 15653 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19677 5170 5181 15654 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19678 5181 4966 15654 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19679 4966 4934 15654 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19680 4934 5170 15654 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19681 4643 4652 15655 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19682 4652 4349 15655 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19683 4349 4355 15655 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19684 4355 4643 15655 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19685 4662 4717 15656 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19686 4717 4405 15656 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19687 4405 4356 15656 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19688 4356 4662 15656 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19689 4155 4129 15657 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19690 4129 3939 15657 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19691 3939 3960 15657 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19692 3960 4155 15657 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19693 4132 4177 15658 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19694 4177 3996 15658 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19695 3996 3945 15658 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19696 3945 4132 15658 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19697 3732 3735 15659 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19698 3735 3603 15659 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19699 3603 3582 15659 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19700 3582 3732 15659 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19701 3753 3817 15660 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19702 3817 3671 15660 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19703 3671 3626 15660 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19704 3626 3753 15660 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19705 3464 3521 15661 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19706 3521 3460 15661 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19707 3460 3391 15661 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19708 3391 3464 15661 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19709 3416 3323 15662 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19710 3323 3371 15662 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19711 3371 3450 15662 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19712 3450 3416 15662 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19713 3462 3469 15663 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19714 3469 3377 15663 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19715 3377 3379 15663 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19716 3379 3462 15663 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19717 3608 3590 15664 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19718 3590 3513 15664 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19719 3513 3567 15664 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19720 3567 3608 15664 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19721 3801 3846 15665 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19722 3846 3705 15665 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19723 3705 3662 15665 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19724 3662 3801 15665 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19725 3856 3822 15666 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19726 3822 3670 15666 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19727 3670 3712 15666 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19728 3712 3856 15666 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19729 4126 3974 15667 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19730 3974 3959 15667 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19731 3959 4120 15667 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19732 4120 4126 15667 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19733 4164 4125 15668 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19734 4125 3965 15668 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19735 3965 4002 15668 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19736 4002 4164 15668 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19737 4620 4531 15669 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19738 4531 4311 15669 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19739 4311 4352 15669 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19740 4352 4620 15669 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19741 5087 5079 15670 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19742 5079 4828 15670 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19743 4828 4817 15670 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19744 4817 5087 15670 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19745 5128 5094 15671 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19746 5094 4824 15671 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19747 4824 4886 15671 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19748 4886 5128 15671 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19749 3228 3177 15672 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19750 3177 3056 15672 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19751 3056 3111 15672 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19752 3111 3228 15672 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19753 3268 3264 15673 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19754 3264 3143 15673 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19755 3143 3173 15673 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19756 3173 3268 15673 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19757 5419 5422 15674 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19758 5422 5624 15674 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19759 5624 5628 15674 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19760 5628 5419 15674 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19761 5201 5195 15675 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19762 5195 4987 15675 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19763 4987 5003 15675 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19764 5003 5201 15675 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19765 5199 5186 15676 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19766 5186 4974 15676 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19767 4974 4996 15676 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19768 4996 5199 15676 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19769 4763 4746 15677 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19770 4746 4484 15677 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19771 4484 4467 15677 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19772 4467 4763 15677 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19773 4754 4735 15678 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19774 4735 4475 15678 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19775 4475 4491 15678 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19776 4491 4754 15678 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19777 4774 4768 15679 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19778 4768 4495 15679 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19779 4495 4512 15679 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19780 4512 4774 15679 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19781 4808 4838 15680 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19782 4838 4778 15680 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19783 4778 4791 15680 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19784 4791 4808 15680 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19785 4862 4868 15681 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19786 4868 4830 15681 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19787 4830 4829 15681 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19788 4829 4862 15681 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19789 4586 4784 15682 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19790 4784 4796 15682 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19791 4796 4540 15682 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19792 4540 4586 15682 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19793 4157 3878 15683 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19794 3878 3864 15683 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19795 3864 4152 15683 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19796 4152 4157 15683 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19797 3592 3580 15684 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19798 3580 3436 15684 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19799 3436 3425 15684 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19800 3425 3592 15684 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19801 3576 3591 15685 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19802 3591 3415 15685 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19803 3415 3438 15685 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19804 3438 3576 15685 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19805 2331 2341 15686 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19806 2341 2357 15686 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19807 2357 2335 15686 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19808 2335 2331 15686 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19809 2321 2375 15687 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19810 2375 2379 15687 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19811 2379 2329 15687 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19812 2329 2321 15687 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19813 4038 3952 15688 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19814 3952 4332 15688 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19815 4332 4399 15688 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19816 4399 4038 15688 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19817 3572 3446 15689 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19818 3446 3748 15689 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19819 3748 3901 15689 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19820 3901 3572 15689 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19821 2636 2910 15690 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19822 2910 3048 15690 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19823 3048 2649 15690 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19824 2649 2636 15690 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19825 2407 2417 15691 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19826 2417 2240 15691 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19827 2240 2293 15691 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19828 2293 2407 15691 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19829 2233 2264 15692 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19830 2264 2236 15692 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19831 2236 2221 15692 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19832 2221 2233 15692 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19833 2212 2208 15693 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19834 2208 2193 15693 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19835 2193 2182 15693 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19836 2182 2212 15693 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19837 2187 2189 15694 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19838 2189 2195 15694 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19839 2195 2173 15694 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19840 2173 2187 15694 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19841 2180 2148 15695 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19842 2148 2203 15695 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19843 2203 2248 15695 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19844 2248 2180 15695 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19845 2399 2326 15696 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19846 2326 2401 15696 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19847 2401 2450 15696 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19848 2450 2399 15696 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19849 2405 2425 15697 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19850 2425 2395 15697 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19851 2395 2370 15697 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19852 2370 2405 15697 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19853 2363 2319 15698 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19854 2319 2271 15698 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19855 2271 2314 15698 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19856 2314 2363 15698 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19857 2372 2317 15699 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19858 2317 2281 15699 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19859 2281 2362 15699 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19860 2362 2372 15699 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19861 2453 2414 15700 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19862 2414 2434 15700 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19863 2434 2475 15700 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19864 2475 2453 15700 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19865 2531 2537 15701 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19866 2537 2488 15701 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19867 2488 2473 15701 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19868 2473 2531 15701 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19869 2515 2446 15702 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19870 2446 2433 15702 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19871 2433 2497 15702 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19872 2497 2515 15702 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19873 2460 2484 15703 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19874 2484 2432 15703 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19875 2432 2411 15703 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19876 2411 2460 15703 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19877 2421 2373 15704 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19878 2373 2328 15704 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19879 2328 2376 15704 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19880 2376 2421 15704 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19881 2310 2292 15705 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19882 2292 2277 15705 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19883 2277 2308 15705 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19884 2308 2310 15705 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19885 2344 2387 15706 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19886 2387 2410 15706 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19887 2410 2347 15706 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19888 2347 2344 15706 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19889 2243 2220 15707 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19890 2220 2120 15707 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19891 2120 2269 15707 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19892 2269 2243 15707 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19893 2737 2840 15708 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19894 2840 2780 15708 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19895 2780 2698 15708 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19896 2698 2737 15708 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19897 2613 2637 15709 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19898 2637 2708 15709 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19899 2708 2632 15709 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19900 2632 2613 15709 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19901 2155 2038 15710 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19902 2038 2054 15710 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19903 2054 2137 15710 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19904 2137 2155 15710 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19905 2536 2466 15711 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19906 2466 2431 15711 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19907 2431 2463 15711 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19908 2463 2536 15711 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19909 2299 2345 15712 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19910 2345 2288 15712 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19911 2288 2196 15712 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19912 2196 2299 15712 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19913 2143 2194 15713 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19914 2194 2142 15713 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19915 2142 2128 15713 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19916 2128 2143 15713 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19917 2712 2717 15714 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19918 2717 2653 15714 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19919 2653 2627 15714 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19920 2627 2712 15714 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19921 2804 2782 15715 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19922 2782 2771 15715 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19923 2771 2766 15715 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19924 2766 2804 15715 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19925 2677 2579 15716 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19926 2579 2559 15716 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19927 2559 2656 15716 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19928 2656 2677 15716 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19929 2585 2580 15717 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19930 2580 2670 15717 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19931 2670 2654 15717 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19932 2654 2585 15717 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19933 2162 2156 15718 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19934 2156 2226 15718 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19935 2226 2191 15718 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19936 2191 2162 15718 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19937 1944 1840 15719 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19938 1840 1789 15719 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19939 1789 2040 15719 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19940 2040 1944 15719 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19941 2222 2256 15720 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19942 2256 2242 15720 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19943 2242 2252 15720 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19944 2252 2222 15720 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19945 2290 2276 15721 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19946 2276 2312 15721 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19947 2312 2316 15721 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19948 2316 2290 15721 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19949 8624 8709 15722 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19950 8709 8635 15722 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19951 8635 8540 15722 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19952 8540 8624 15722 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19953 8869 8936 15723 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19954 8936 8938 15723 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19955 8938 8907 15723 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19956 8907 8869 15723 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19957 8905 9033 15724 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19958 9033 9080 15724 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19959 9080 8927 15724 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19960 8927 8905 15724 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19961 8965 9135 15725 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19962 9135 9176 15725 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19963 9176 8993 15725 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19964 8993 8965 15725 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19965 9210 9161 15726 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19966 9161 9219 15726 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19967 9219 9259 15726 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19968 9259 9210 15726 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19969 9119 9071 15727 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19970 9071 9090 15727 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19971 9090 9153 15727 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19972 9153 9119 15727 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19973 9275 9252 15728 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19974 9252 9278 15728 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19975 9278 9299 15728 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19976 9299 9275 15728 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19977 9298 9324 15729 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19978 9324 9328 15729 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19979 9328 9312 15729 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19980 9312 9298 15729 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19981 9149 9074 15730 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19982 9074 9012 15730 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19983 9012 9078 15730 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19984 9078 9149 15730 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19985 8959 8999 15731 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19986 8999 8928 15731 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19987 8928 8911 15731 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19988 8911 8959 15731 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19989 9258 9206 15732 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19990 9206 9139 15732 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19991 9139 9200 15732 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19992 9200 9258 15732 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19993 9281 9255 15733 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19994 9255 9280 15733 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19995 9280 9300 15733 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19996 9300 9281 15733 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19997 9314 9291 15734 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19998 9291 9287 15734 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 19999 9287 9323 15734 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20000 9323 9314 15734 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20001 9322 9329 15735 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20002 9329 9330 15735 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20003 9330 9321 15735 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20004 9321 9322 15735 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20005 9320 9289 15736 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20006 9289 9288 15736 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20007 9288 9316 15736 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20008 9316 9320 15736 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20009 9311 9331 15737 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20010 9331 9326 15737 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20011 9326 9305 15737 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20012 9305 9311 15737 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20013 9315 9285 15738 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20014 9285 9282 15738 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20015 9282 9310 15738 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20016 9310 9315 15738 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20017 9295 9318 15739 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20018 9318 9301 15739 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20019 9301 9286 15739 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20020 9286 9295 15739 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20021 9303 9276 15740 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20022 9276 9267 15740 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20023 9267 9292 15740 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20024 9292 9303 15740 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20025 9269 9284 15741 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20026 9284 9266 15741 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20027 9266 9249 15741 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20028 9249 9269 15741 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20029 9279 9263 15742 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20030 9263 9239 15742 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20031 9239 9262 15742 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20032 9262 9279 15742 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20033 9208 9242 15743 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20034 9242 9189 15743 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20035 9189 9151 15743 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20036 9151 9208 15743 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20037 9226 9188 15744 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20038 9188 9145 15744 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20039 9145 9162 15744 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20040 9162 9226 15744 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20041 9076 9133 15745 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20042 9133 9104 15745 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20043 9104 9031 15745 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20044 9031 9076 15745 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20045 9058 9055 15746 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20046 9055 9062 15746 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20047 9062 9082 15746 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20048 9082 9058 15746 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20049 8982 8990 15747 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20050 8990 9016 15747 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20051 9016 8984 15747 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20052 8984 8982 15747 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20053 9028 9044 15748 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20054 9044 8983 15748 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20055 8983 8978 15748 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20056 8978 9028 15748 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20057 8899 8892 15749 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20058 8892 8876 15749 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20059 8876 8885 15749 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20060 8885 8899 15749 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20061 8866 8842 15750 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20062 8842 8825 15750 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20063 8825 8838 15750 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20064 8838 8866 15750 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20065 9002 9089 15751 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20066 9089 9129 15751 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20067 9129 9032 15751 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20068 9032 9002 15751 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20069 9114 9109 15752 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20070 9109 9138 15752 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20071 9138 9142 15752 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20072 9142 9114 15752 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20073 9178 9183 15753 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20074 9183 9196 15753 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20075 9196 9185 15753 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20076 9185 9178 15753 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20077 9243 9223 15754 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20078 9223 9203 15754 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20079 9203 9229 15754 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20080 9229 9243 15754 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20081 9159 9187 15755 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20082 9187 9190 15755 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20083 9190 9152 15755 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20084 9152 9159 15755 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20085 9194 9191 15756 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20086 9191 9180 15756 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20087 9180 9169 15756 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20088 9169 9194 15756 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20089 9163 9215 15757 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20090 9215 9222 15757 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20091 9222 9164 15757 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20092 9164 9163 15757 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20093 9140 9155 15758 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20094 9155 9220 15758 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20095 9220 9199 15758 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20096 9199 9140 15758 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20097 9177 9143 15759 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20098 9143 9113 15759 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20099 9113 9121 15759 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20100 9121 9177 15759 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20101 8998 9007 15760 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20102 9007 9056 15760 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20103 9056 9005 15760 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20104 9005 8998 15760 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20105 9136 9225 15761 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20106 9225 9232 15761 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20107 9232 9079 15761 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20108 9079 9136 15761 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20109 8981 8966 15762 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20110 8966 8913 15762 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20111 8913 8921 15762 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20112 8921 8981 15762 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20113 8972 8901 15763 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20114 8901 8970 15763 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20115 8970 9014 15763 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20116 9014 8972 15763 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20117 9118 9067 15764 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20118 9067 9197 15764 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20119 9197 9201 15764 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20120 9201 9118 15764 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20121 8791 8748 15765 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20122 8748 8873 15765 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20123 8873 8834 15765 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20124 8834 8791 15765 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20125 9075 9218 15766 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20126 9218 9217 15766 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20127 9217 9052 15766 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20128 9052 9075 15766 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20129 9042 9192 15767 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20130 9192 9160 15767 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20131 9160 9019 15767 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20132 9019 9042 15767 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20133 8989 9124 15768 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20134 9124 9039 15768 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20135 9039 8937 15768 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20136 8937 8989 15768 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20137 8844 8968 15769 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20138 8968 8926 15769 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20139 8926 8801 15769 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20140 8801 8844 15769 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20141 8833 8975 15770 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20142 8975 8951 15770 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20143 8951 8875 15770 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20144 8875 8833 15770 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20145 8653 8611 15771 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20146 8611 8545 15771 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20147 8545 8561 15771 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20148 8561 8653 15771 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20149 8667 8567 15772 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20150 8567 8587 15772 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20151 8587 8706 15772 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20152 8706 8667 15772 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20153 8827 8777 15773 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20154 8777 8621 15773 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20155 8621 8655 15773 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20156 8655 8827 15773 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20157 8546 8512 15774 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20158 8512 8423 15774 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20159 8423 8456 15774 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20160 8456 8546 15774 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20161 8868 8689 15775 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20162 8689 8742 15775 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20163 8742 8888 15775 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20164 8888 8868 15775 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20165 8657 8595 15776 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20166 8595 8632 15776 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20167 8632 8723 15776 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20168 8723 8657 15776 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20169 8533 8490 15777 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20170 8490 8432 15777 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20171 8432 8473 15777 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20172 8473 8533 15777 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20173 8450 8421 15778 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20174 8421 8354 15778 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20175 8354 8392 15778 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20176 8392 8450 15778 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20177 8497 8554 15779 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20178 8554 8593 15779 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20179 8593 8517 15779 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20180 8517 8497 15779 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20181 8452 8405 15780 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20182 8405 8380 15780 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20183 8380 8444 15780 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20184 8444 8452 15780 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20185 8334 8280 15781 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20186 8280 8244 15781 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20187 8244 8298 15781 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20188 8298 8334 15781 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20189 8445 8370 15782 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20190 8370 8384 15782 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20191 8384 8454 15782 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20192 8454 8445 15782 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20193 8283 8233 15783 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20194 8233 8245 15783 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20195 8245 8299 15783 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20196 8299 8283 15783 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20197 8481 8415 15784 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20198 8415 8442 15784 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20199 8442 8505 15784 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20200 8505 8481 15784 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20201 8340 8285 15785 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20202 8285 8342 15785 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20203 8342 8387 15785 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20204 8387 8340 15785 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20205 8566 8498 15786 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20206 8498 8562 15786 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20207 8562 8619 15786 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20208 8619 8566 15786 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20209 8439 8404 15787 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20210 8404 8437 15787 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20211 8437 8483 15787 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20212 8483 8439 15787 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20213 8698 8627 15788 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20214 8627 8623 15788 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20215 8623 8695 15788 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20216 8695 8698 15788 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20217 8629 8551 15789 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20218 8551 8480 15789 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20219 8480 8535 15789 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20220 8535 8629 15789 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20221 8465 8397 15790 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20222 8397 8330 15790 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20223 8330 8412 15790 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20224 8412 8465 15790 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20225 8458 8411 15791 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20226 8411 8311 15791 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20227 8311 8376 15791 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20228 8376 8458 15791 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20229 8323 8236 15792 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20230 8236 8125 15792 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20231 8125 8228 15792 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20232 8228 8323 15792 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20233 8270 8192 15793 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20234 8192 8130 15793 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20235 8130 8205 15793 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20236 8205 8270 15793 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20237 8167 8098 15794 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20238 8098 7946 15794 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20239 7946 8010 15794 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20240 8010 8167 15794 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20241 8055 8028 15795 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20242 8028 7851 15795 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20243 7851 7899 15795 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20244 7899 8055 15795 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20245 7991 8009 15796 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20246 8009 7800 15796 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20247 7800 7793 15796 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20248 7793 7991 15796 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20249 8078 8030 15797 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20250 8030 7942 15797 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20251 7942 7979 15797 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20252 7979 8078 15797 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20253 7849 7757 15798 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20254 7757 7542 15798 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20255 7542 7702 15798 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20256 7702 7849 15798 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20257 7667 7589 15799 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20258 7589 7245 15799 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20259 7245 7390 15799 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20260 7390 7667 15799 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20261 7506 7495 15800 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20262 7495 7097 15800 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20263 7097 7133 15800 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20264 7133 7506 15800 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20265 6690 6631 15801 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20266 6631 6070 15801 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20267 6070 6119 15801 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20268 6119 6690 15801 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20269 8565 8321 15802 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20270 8321 8453 15802 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20271 8453 8666 15802 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20272 8666 8565 15802 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20273 7877 7541 15803 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20274 7541 7813 15803 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20275 7813 8180 15803 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20276 8180 7877 15803 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20277 8738 8577 15804 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20278 8577 8677 15804 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20279 8677 8806 15804 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20280 8806 8738 15804 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20281 8375 8118 15805 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20282 8118 8272 15805 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20283 8272 8499 15805 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20284 8499 8375 15805 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20285 8867 8766 15806 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20286 8766 8800 15806 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20287 8800 8887 15806 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20288 8887 8867 15806 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20289 8559 8318 15807 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20290 8318 8350 15807 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20291 8350 8589 15807 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20292 8589 8559 15807 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20293 8877 8792 15808 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20294 8792 8770 15808 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20295 8770 8851 15808 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20296 8851 8877 15808 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20297 8599 8368 15809 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20298 8368 8379 15809 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20299 8379 8598 15809 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20300 8598 8599 15809 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20301 8820 8727 15810 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20302 8727 8628 15810 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20303 8628 8724 15810 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20304 8724 8820 15810 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20305 8588 8386 15811 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20306 8386 8369 15811 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20307 8369 8532 15811 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20308 8532 8588 15811 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20309 8580 8508 15812 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20310 8508 8462 15812 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20311 8462 8521 15812 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20312 8521 8580 15812 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20313 8449 8337 15813 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20314 8337 8312 15813 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20315 8312 8418 15813 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20316 8418 8449 15813 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20317 8408 8301 15814 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20318 8301 8316 15814 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20319 8316 8417 15814 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20320 8417 8408 15814 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20321 7300 6805 15815 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20322 6805 7016 15815 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20323 7016 7496 15815 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20324 7496 7300 15815 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20325 5616 5838 15816 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20326 5838 6236 15816 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20327 6236 5429 15816 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20328 5429 5616 15816 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20329 7739 7335 15817 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20330 7335 7497 15817 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20331 7497 7890 15817 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20332 7890 7739 15817 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20333 6810 6536 15818 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20334 6536 6712 15818 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20335 6712 7050 15818 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20336 7050 6810 15818 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20337 7916 7523 15819 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20338 7523 7561 15819 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20339 7561 7956 15819 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20340 7956 7916 15819 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20341 7103 6744 15820 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20342 6744 6776 15820 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20343 6776 7157 15820 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20344 7157 7103 15820 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20345 7998 7617 15821 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20346 7617 7653 15821 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20347 7653 8035 15821 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20348 8035 7998 15821 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20349 8057 7694 15822 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20350 7694 7745 15822 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20351 7745 8094 15822 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20352 8094 8057 15822 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20353 7358 7131 15823 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20354 7131 7171 15823 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20355 7171 7421 15823 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20356 7421 7358 15823 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20357 8117 7805 15824 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20358 7805 7857 15824 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20359 7857 8140 15824 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20360 8140 8117 15824 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20361 7490 7293 15825 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20362 7293 7377 15825 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20363 7377 7567 15825 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20364 7567 7490 15825 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20365 8155 7896 15826 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20366 7896 7944 15826 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20367 7944 8182 15826 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20368 8182 8155 15826 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20369 7646 7454 15827 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20370 7454 7499 15827 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20371 7499 7716 15827 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20372 7716 7646 15827 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20373 7322 7287 15828 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20374 7287 7083 15828 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20375 7083 7113 15828 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20376 7113 7322 15828 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20377 7202 7143 15829 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20378 7143 6997 15829 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20379 6997 7052 15829 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20380 7052 7202 15829 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20381 7040 7005 15830 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20382 7005 6853 15830 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20383 6853 6902 15830 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20384 6902 7040 15830 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20385 6949 6924 15831 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20386 6924 6750 15831 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20387 6750 6761 15831 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20388 6761 6949 15831 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20389 6907 6834 15832 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20390 6834 6653 15832 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20391 6653 6737 15832 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20392 6737 6907 15832 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20393 6719 6598 15833 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20394 6598 6351 15833 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20395 6351 6489 15833 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20396 6489 6719 15833 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20397 6614 6586 15834 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20398 6586 6310 15834 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20399 6310 6358 15834 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20400 6358 6614 15834 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20401 6546 6402 15835 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20402 6402 6159 15835 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20403 6159 6276 15835 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20404 6276 6546 15835 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20405 6196 6093 15836 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20406 6093 5954 15836 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20407 5954 6028 15836 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20408 6028 6196 15836 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20409 5863 5962 15837 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20410 5962 6013 15837 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20411 6013 5896 15837 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20412 5896 5863 15837 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20413 6047 5995 15838 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20414 5995 5882 15838 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20415 5882 5893 15838 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20416 5893 6047 15838 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20417 5712 5765 15839 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20418 5765 5655 15839 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20419 5655 5629 15839 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20420 5629 5712 15839 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20421 5784 5795 15840 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20422 5795 5701 15840 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20423 5701 5681 15840 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20424 5681 5784 15840 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20425 5478 5486 15841 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20426 5486 5558 15841 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20427 5558 5566 15841 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20428 5566 5478 15841 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20429 5462 5467 15842 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20430 5467 5578 15842 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20431 5578 5583 15842 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20432 5583 5462 15842 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20433 5475 5458 15843 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20434 5458 5587 15843 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20435 5587 5569 15843 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20436 5569 5475 15843 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20437 5393 5659 15844 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20438 5659 5661 15844 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20439 5661 5391 15844 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20440 5391 5393 15844 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20441 5935 6320 15845 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20442 6320 6304 15845 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20443 6304 5941 15845 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20444 5941 5935 15845 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20445 5387 5664 15846 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20446 5664 5617 15846 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20447 5617 5430 15846 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20448 5430 5387 15846 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20449 5950 6299 15847 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20450 6299 6111 15847 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20451 6111 5898 15847 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20452 5898 5950 15847 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20453 7664 7717 15848 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20454 7717 7860 15848 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20455 7860 7788 15848 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20456 7788 7664 15848 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20457 7907 7911 15849 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20458 7911 7902 15849 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20459 7902 7737 15849 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20460 7737 7907 15849 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20461 7502 7327 15850 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20462 7327 7347 15850 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20463 7347 7512 15850 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20464 7512 7502 15850 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20465 7312 7505 15851 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20466 7505 7493 15851 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20467 7493 7302 15851 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20468 7302 7312 15851 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20469 7144 7000 15852 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20470 7000 7036 15852 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20471 7036 7180 15852 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20472 7180 7144 15852 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20473 7538 7364 15853 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20474 7364 7386 15853 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20475 7386 7509 15853 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20476 7509 7538 15853 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20477 7636 7555 15854 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20478 7555 7411 15854 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20479 7411 7472 15854 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20480 7472 7636 15854 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20481 7445 7332 15855 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20482 7332 7189 15855 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20483 7189 7324 15855 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20484 7324 7445 15855 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20485 7313 7212 15856 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20486 7212 7075 15856 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20487 7075 7148 15856 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20488 7148 7313 15856 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20489 7134 7031 15857 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20490 7031 6957 15857 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20491 6957 7011 15857 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20492 7011 7134 15857 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20493 7025 6969 15858 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20494 6969 6742 15858 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20495 6742 6771 15858 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20496 6771 7025 15858 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20497 6922 6864 15859 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20498 6864 6703 15859 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20499 6703 6727 15859 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20500 6727 6922 15859 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20501 6307 6302 15860 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20502 6302 5929 15860 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20503 5929 5916 15860 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20504 5916 6307 15860 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20505 6333 6326 15861 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20506 6326 5977 15861 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20507 5977 5968 15861 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20508 5968 6333 15861 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20509 6287 6208 15862 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20510 6208 5920 15862 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20511 5920 5953 15862 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20512 5953 6287 15862 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20513 5360 5364 15863 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20514 5364 5633 15863 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20515 5633 5639 15863 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20516 5639 5360 15863 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20517 7836 7924 15864 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20518 7924 7985 15864 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20519 7985 7881 15864 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20520 7881 7836 15864 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20521 8031 7957 15865 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20522 7957 7997 15865 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20523 7997 8050 15865 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20524 8050 8031 15865 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20525 8158 8056 15866 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20526 8056 8039 15866 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20527 8039 8163 15866 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20528 8163 8158 15866 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20529 8139 8026 15867 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20530 8026 8007 15867 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20531 8007 8061 15867 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20532 8061 8139 15867 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20533 7968 7934 15868 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20534 7934 7835 15868 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20535 7835 7853 15868 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20536 7853 7968 15868 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20537 7689 7659 15869 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20538 7659 7508 15869 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20539 7508 7556 15869 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20540 7556 7689 15869 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20541 7457 7387 15870 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20542 7387 7249 15870 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20543 7249 7355 15870 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20544 7355 7457 15870 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20545 6393 6362 15871 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20546 6362 5932 15871 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20547 5932 5949 15871 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20548 5949 6393 15871 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20549 8358 8377 15872 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20550 8377 8436 15872 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20551 8436 8435 15872 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20552 8435 8358 15872 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20553 8382 8341 15873 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20554 8341 8286 15873 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20555 8286 8319 15873 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20556 8319 8382 15873 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20557 8294 8257 15874 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20558 8257 8235 15874 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20559 8235 8255 15874 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20560 8255 8294 15874 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20561 8253 8313 15875 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20562 8313 8274 15875 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20563 8274 8208 15875 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20564 8208 8253 15875 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20565 8230 8209 15876 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20566 8209 8204 15876 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20567 8204 8217 15876 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20568 8217 8230 15876 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20569 8174 8210 15877 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20570 8210 8141 15877 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20571 8141 8066 15877 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20572 8066 8174 15877 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20573 8198 8175 15878 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20574 8175 8189 15878 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20575 8189 8196 15878 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20576 8196 8198 15878 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20577 8126 8153 15879 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20578 8153 8033 15879 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20579 8033 8001 15879 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20580 8001 8126 15879 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20581 8040 8089 15880 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20582 8089 7975 15880 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20583 7975 7936 15880 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20584 7936 8040 15880 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20585 8051 8049 15881 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20586 8049 8047 15881 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20587 8047 8060 15881 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20588 8060 8051 15881 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20589 8207 8218 15882 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20590 8218 8251 15882 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20591 8251 8240 15882 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20592 8240 8207 15882 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20593 8234 8195 15883 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20594 8195 8138 15883 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20595 8138 8184 15883 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20596 8184 8234 15883 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20597 8093 8017 15884 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20598 8017 7892 15884 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20599 7892 7949 15884 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20600 7949 8093 15884 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20601 7803 7736 15885 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20602 7736 7621 15885 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20603 7621 7684 15885 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20604 7684 7803 15885 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20605 7613 7518 15886 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20606 7518 7451 15886 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20607 7451 7536 15886 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20608 7536 7613 15886 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20609 7481 7370 15887 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20610 7370 7354 15887 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20611 7354 7474 15887 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20612 7474 7481 15887 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20613 7634 7704 15888 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20614 7704 7754 15888 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20615 7754 7685 15888 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20616 7685 7634 15888 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20617 7668 7588 15889 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20618 7588 7594 15889 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20619 7594 7679 15889 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20620 7679 7668 15889 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20621 7769 7838 15890 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20622 7838 7939 15890 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20623 7939 7872 15890 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20624 7872 7769 15890 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20625 8027 8121 15891 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20626 8121 8222 15891 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20627 8222 8169 15891 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20628 8169 8027 15891 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20629 8227 8269 15892 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20630 8269 8293 15892 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20631 8293 8260 15892 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20632 8260 8227 15892 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20633 8267 8295 15893 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20634 8295 8271 15893 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20635 8271 8249 15893 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20636 8249 8267 15893 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20637 8162 8188 15894 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20638 8188 8134 15894 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20639 8134 8109 15894 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20640 8109 8162 15894 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20641 8206 8223 15895 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20642 8223 8176 15895 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20643 8176 8160 15895 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20644 8160 8206 15895 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20645 8082 8113 15896 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20646 8113 8083 15896 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20647 8083 8058 15896 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20648 8058 8082 15896 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20649 8097 8106 15897 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20650 8106 8149 15897 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20651 8149 8136 15897 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20652 8136 8097 15897 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20653 8254 8232 15898 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20654 8232 8193 15898 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20655 8193 8216 15898 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20656 8216 8254 15898 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20657 8199 8173 15899 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20658 8173 8191 15899 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20659 8191 8215 15899 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20660 8215 8199 15899 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20661 8261 8237 15900 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20662 8237 8287 15900 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20663 8287 8315 15900 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20664 8315 8261 15900 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20665 8371 8351 15901 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20666 8351 8395 15901 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20667 8395 8416 15901 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20668 8416 8371 15901 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20669 8200 8181 15902 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20670 8181 8154 15902 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20671 8154 8168 15902 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20672 8168 8200 15902 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20673 8214 8194 15903 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20674 8194 8243 15903 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20675 8243 8262 15903 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20676 8262 8214 15903 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20677 8327 8300 15904 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20678 8300 8332 15904 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20679 8332 8363 15904 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20680 8363 8327 15904 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20681 8381 8336 15905 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20682 8336 8314 15905 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20683 8314 8367 15905 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20684 8367 8381 15905 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20685 8326 8266 15906 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20686 8266 8178 15906 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20687 8178 8247 15906 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20688 8247 8326 15906 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20689 8128 8003 15907 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20690 8003 7889 15907 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20691 7889 7973 15907 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20692 7973 8128 15907 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20693 7868 7801 15908 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20694 7801 7742 15908 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20695 7742 7822 15908 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20696 7822 7868 15908 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20697 7826 7729 15909 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20698 7729 7741 15909 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20699 7741 7847 15909 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20700 7847 7826 15909 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20701 8135 8148 15910 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20702 8148 8172 15910 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20703 8172 8165 15910 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20704 8165 8135 15910 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20705 5626 5557 15911 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20706 5557 5485 15911 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20707 5485 5582 15911 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20708 5582 5626 15911 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20709 5690 5695 15912 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20710 5695 5808 15912 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20711 5808 5791 15912 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20712 5791 5690 15912 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20713 5706 5721 15913 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20714 5721 5849 15913 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20715 5849 5831 15913 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20716 5831 5706 15913 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20717 5742 5758 15914 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20718 5758 5873 15914 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20719 5873 5861 15914 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20720 5861 5742 15914 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20721 5906 5859 15915 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20722 5859 5921 15915 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20723 5921 5965 15915 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20724 5965 5906 15915 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20725 5869 5880 15916 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20726 5880 5969 15916 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20727 5969 5948 15916 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20728 5948 5869 15916 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20729 5903 5922 15917 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20730 5922 6006 15917 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20731 6006 5996 15917 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20732 5996 5903 15917 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20733 5931 5947 15918 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20734 5947 6022 15918 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20735 6022 6008 15918 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20736 6008 5931 15918 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20737 6030 6010 15919 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20738 6010 6117 15919 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20739 6117 6118 15919 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20740 6118 6030 15919 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20741 6037 6056 15920 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20742 6056 6178 15920 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20743 6178 6156 15920 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20744 6156 6037 15920 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20745 6572 6305 15921 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20746 6305 6371 15921 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20747 6371 6644 15921 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20748 6644 6572 15921 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20749 6388 6416 15922 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20750 6416 6649 15922 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20751 6649 6648 15922 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20752 6648 6388 15922 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20753 6432 6471 15923 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20754 6471 6626 15923 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20755 6626 6645 15923 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20756 6645 6432 15923 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20757 6000 6004 15924 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20758 6004 6081 15924 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20759 6081 6048 15924 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20760 6048 6000 15924 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20761 6094 6147 15925 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20762 6147 6256 15925 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20763 6256 6226 15925 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20764 6226 6094 15925 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20765 6323 6248 15926 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20766 6248 6258 15926 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20767 6258 6336 15926 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20768 6336 6323 15926 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20769 6881 7170 15927 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20770 7170 7175 15927 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20771 7175 6890 15927 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20772 6890 6881 15927 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20773 5798 5806 15928 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20774 5806 5934 15928 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20775 5934 5926 15928 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20776 5926 5798 15928 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20777 6015 6029 15929 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20778 6029 6090 15929 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20779 6090 6078 15929 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20780 6078 6015 15929 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20781 6129 6112 15930 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20782 6112 6185 15930 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20783 6185 6193 15930 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20784 6193 6129 15930 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20785 6319 6338 15931 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20786 6338 6456 15931 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20787 6456 6424 15931 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20788 6424 6319 15931 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20789 6500 6540 15932 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20790 6540 6575 15932 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20791 6575 6544 15932 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20792 6544 6500 15932 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20793 6418 6466 15933 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20794 6466 6439 15933 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20795 6439 6387 15933 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20796 6387 6418 15933 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20797 6366 6273 15934 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20798 6273 6219 15934 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20799 6219 6340 15934 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20800 6340 6366 15934 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20801 5686 5665 15935 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20802 5665 5727 15935 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20803 5727 5759 15935 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20804 5759 5686 15935 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20805 5943 6025 15936 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20806 6025 6067 15936 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20807 6067 5901 15936 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20808 5901 5943 15936 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20809 5573 5472 15937 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20810 5472 5471 15937 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20811 5471 5574 15937 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20812 5574 5573 15937 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20813 5936 5951 15938 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20814 5951 6146 15938 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20815 6146 6087 15938 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20816 6087 5936 15938 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20817 5680 5663 15939 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20818 5663 5780 15939 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20819 5780 5827 15939 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20820 5827 5680 15939 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20821 5577 5468 15940 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20822 5468 5482 15940 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20823 5482 5563 15940 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20824 5563 5577 15940 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20825 5975 5983 15941 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20826 5983 6189 15941 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20827 6189 6176 15941 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20828 6176 5975 15941 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20829 5895 5884 15942 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20830 5884 6123 15942 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20831 6123 6143 15942 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20832 6143 5895 15942 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20833 6589 6417 15943 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20834 6417 6487 15943 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20835 6487 6617 15943 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20836 6617 6589 15943 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20837 6407 6374 15944 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20838 6374 6609 15944 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20839 6609 6660 15944 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20840 6660 6407 15944 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20841 6947 6814 15945 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20842 6814 6883 15945 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20843 6883 7015 15945 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20844 7015 6947 15945 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20845 6893 6872 15946 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20846 6872 7094 15946 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20847 7094 7132 15946 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20848 7132 6893 15946 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20849 6828 6766 15947 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20850 6766 6973 15947 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20851 6973 7032 15947 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20852 7032 6828 15947 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20853 7466 7615 15948 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20854 7615 7614 15948 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20855 7614 7469 15948 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20856 7469 7466 15948 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20857 7422 7380 15949 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20858 7380 7609 15949 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20859 7609 7638 15949 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20860 7638 7422 15949 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20861 7309 7195 15950 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20862 7195 7444 15950 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20863 7444 7514 15950 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20864 7514 7309 15950 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20865 7815 7951 15951 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20866 7951 8064 15951 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20867 8064 7926 15951 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20868 7926 7815 15951 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20869 8258 8161 15952 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20870 8161 8288 15952 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20871 8288 8390 15952 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20872 8390 8258 15952 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20873 7903 7726 15953 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20874 7726 7642 15953 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20875 7642 7824 15953 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20876 7824 7903 15953 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20877 7571 7558 15954 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20878 7558 7698 15954 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20879 7698 7749 15954 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20880 7749 7571 15954 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20881 8043 7938 15955 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20882 7938 8080 15955 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20883 8080 8190 15955 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20884 8190 8043 15955 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20885 5826 5813 15956 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20886 5813 5987 15956 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20887 5987 6012 15956 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20888 6012 5826 15956 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20889 5804 5774 15957 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20890 5774 5908 15957 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20891 5908 5963 15957 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20892 5963 5804 15957 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20893 5609 5437 15958 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20894 5437 5447 15958 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20895 5447 5598 15958 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20896 5598 5609 15958 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20897 6230 6170 15959 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20898 6170 6382 15959 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20899 6382 6494 15959 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20900 6494 6230 15959 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20901 6105 6024 15960 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20902 6024 6120 15960 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20903 6120 6274 15960 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20904 6274 6105 15960 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20905 6699 6595 15961 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20906 6595 6686 15961 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20907 6686 6800 15961 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20908 6800 6699 15961 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20909 6419 6198 15962 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20910 6198 6232 15962 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20911 6232 6493 15962 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20912 6493 6419 15962 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20913 6874 6718 15963 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20914 6718 6722 15963 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20915 6722 6896 15963 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20916 6896 6874 15963 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20917 6482 6182 15964 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20918 6182 6197 15964 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20919 6197 6453 15964 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20920 6453 6482 15964 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20921 6875 6696 15965 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20922 6696 6608 15965 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20923 6608 6765 15965 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20924 6765 6875 15965 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20925 6410 6169 15966 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20926 6169 6141 15966 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20927 6141 6330 15966 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20928 6330 6410 15966 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20929 6624 6413 15967 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20930 6413 6205 15967 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20931 6205 6370 15967 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20932 6370 6624 15967 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20933 6206 6069 15968 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20934 6069 5982 15968 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20935 5982 6084 15968 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20936 6084 6206 15968 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20937 6128 6034 15969 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20938 6034 5855 15969 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20939 5855 5883 15969 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20940 5883 6128 15969 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20941 5952 5874 15970 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20942 5874 5744 15970 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20943 5744 5792 15970 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20944 5792 5952 15970 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20945 5405 5378 15971 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20946 5378 5627 15971 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20947 5627 5613 15971 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20948 5613 5405 15971 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20949 5452 5432 15972 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20950 5432 5599 15972 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20951 5599 5593 15972 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20952 5593 5452 15972 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20953 5411 5461 15973 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20954 5461 5584 15973 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20955 5584 5638 15973 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20956 5638 5411 15973 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20957 7953 8124 15974 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20958 8124 8133 15974 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20959 8133 7965 15974 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20960 7965 7953 15974 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20961 7823 7700 15975 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20962 7700 7693 15975 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20963 7693 7817 15975 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20964 7817 7823 15975 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20965 7573 7430 15976 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20966 7430 7428 15976 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20967 7428 7570 15976 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20968 7570 7573 15976 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20969 7221 7053 15977 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20970 7053 7055 15977 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20971 7055 7216 15977 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20972 7216 7221 15977 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20973 6930 6790 15978 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20974 6790 6792 15978 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20975 6792 6934 15978 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20976 6934 6930 15978 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20977 6664 6505 15979 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20978 6505 6515 15979 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20979 6515 6668 15979 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20980 6668 6664 15979 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20981 6481 6472 15980 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20982 6472 6666 15980 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20983 6666 6671 15980 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20984 6671 6481 15980 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20985 6462 6467 15981 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20986 6467 6647 15981 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20987 6647 6651 15981 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20988 6651 6462 15981 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20989 6812 6804 15982 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20990 6804 6975 15982 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20991 6975 6988 15982 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20992 6988 6812 15982 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20993 6794 6787 15983 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20994 6787 6943 15983 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20995 6943 6960 15983 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20996 6960 6794 15983 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20997 7172 7155 15984 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20998 7155 7393 15984 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 20999 7393 7415 15984 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21000 7415 7172 15984 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21001 7116 7084 15985 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21002 7084 7311 15985 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21003 7311 7345 15985 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21004 7345 7116 15985 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21005 7596 7532 15986 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21006 7532 7721 15986 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21007 7721 7797 15986 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21008 7797 7596 15986 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21009 8081 7995 15987 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21010 7995 8187 15987 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21011 8187 8225 15987 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21012 8225 8081 15987 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21013 7929 7856 15988 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21014 7856 7977 15988 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21015 7977 8099 15988 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21016 8099 7929 15988 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21017 8347 8309 15989 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21018 8309 8391 15989 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21019 8391 8429 15989 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21020 8429 8347 15989 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21021 8238 8147 15990 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21022 8147 8212 15990 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21023 8212 8305 15990 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21024 8305 8238 15990 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21025 8477 8426 15991 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21026 8426 8469 15991 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21027 8469 8518 15991 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21028 8518 8477 15991 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21029 8560 8503 15992 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21030 8503 8523 15992 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21031 8523 8605 15992 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21032 8605 8560 15992 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21033 8674 8604 15993 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21034 8604 8680 15993 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21035 8680 8741 15993 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21036 8741 8674 15993 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21037 8183 8279 15994 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21038 8279 8373 15994 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21039 8373 8289 15994 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21040 8289 8183 15994 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21041 8402 8475 15995 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21042 8475 8575 15995 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21043 8575 8496 15995 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21044 8496 8402 15995 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21045 8590 8661 15996 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21046 8661 8743 15996 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21047 8743 8678 15996 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21048 8678 8590 15996 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21049 8759 8787 15997 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21050 8787 8788 15997 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21051 8788 8781 15997 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21052 8781 8759 15997 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21053 8763 8663 15998 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21054 8663 8696 15998 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21055 8696 8761 15998 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21056 8761 8763 15998 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21057 8100 8110 15999 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21058 8110 8239 15999 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21059 8239 8259 15999 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21060 8259 8100 15999 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21061 8345 8422 16000 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21062 8422 8434 16000 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21063 8434 8360 16000 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21064 8360 8345 16000 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21065 8550 8592 16001 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21066 8592 8606 16001 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21067 8606 8574 16001 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21068 8574 8550 16001 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21069 8684 8693 16002 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21070 8693 8652 16002 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21071 8652 8710 16002 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21072 8710 8684 16002 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21073 8620 8643 16003 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21074 8643 8711 16003 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21075 8711 8576 16003 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21076 8576 8620 16003 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21077 8608 8654 16004 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21078 8654 8656 16004 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21079 8656 8585 16004 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21080 8585 8608 16004 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21081 8420 8353 16005 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21082 8353 8284 16005 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21083 8284 8344 16005 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21084 8344 8420 16005 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21085 8123 8197 16006 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21086 8197 8273 16006 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21087 8273 8231 16006 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21088 8231 8123 16006 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21089 8065 7948 16007 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21090 7948 7848 16007 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21091 7848 7966 16007 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21092 7966 8065 16007 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21093 8694 8778 16008 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21094 8778 8857 16008 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21095 8857 8783 16008 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21096 8783 8694 16008 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21097 5322 5713 16009 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21098 5713 5703 16009 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21099 5703 5359 16009 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21100 5359 5322 16009 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21101 7268 7248 16010 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21102 7248 7078 16010 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21103 7078 7089 16010 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21104 7089 7268 16010 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21105 6961 6954 16011 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21106 6954 6808 16011 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21107 6808 6819 16011 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21108 6819 6961 16011 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21109 6709 6698 16012 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21110 6698 6559 16012 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21111 6559 6585 16012 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21112 6585 6709 16012 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21113 6375 6291 16013 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21114 6291 6327 16013 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21115 6327 6403 16013 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21116 6403 6375 16013 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21117 6344 6294 16014 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21118 6294 6554 16014 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21119 6554 6569 16014 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21120 6569 6344 16014 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21121 6871 7137 16015 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21122 7137 7107 16015 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21123 7107 6855 16015 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21124 6855 6871 16015 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21125 7384 7417 16016 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21126 7417 7627 16016 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21127 7627 7559 16016 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21128 7559 7384 16016 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21129 7707 7756 16017 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21130 7756 7869 16017 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21131 7869 7804 16017 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21132 7804 7707 16017 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21133 7861 7909 16018 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21134 7909 7933 16018 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21135 7933 7886 16018 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21136 7886 7861 16018 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21137 7879 7927 16019 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21138 7927 7883 16019 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21139 7883 7846 16019 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21140 7846 7879 16019 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21141 7806 7696 16020 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21142 7696 7683 16020 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21143 7683 7785 16020 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21144 7785 7806 16020 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21145 7557 7565 16021 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21146 7565 7433 16021 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21147 7433 7426 16021 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21148 7426 7557 16021 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21149 6678 6670 16022 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21150 6670 6523 16022 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21151 6523 6538 16022 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21152 6538 6678 16022 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21153 6491 6501 16023 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21154 6501 6659 16023 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21155 6659 6652 16023 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21156 6652 6491 16023 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21157 6188 6239 16024 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21158 6239 6318 16024 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21159 6318 6295 16024 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21160 6295 6188 16024 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21161 6247 6212 16025 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21162 6212 6270 16025 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21163 6270 6257 16025 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21164 6257 6247 16025 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21165 6275 6356 16026 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21166 6356 6348 16026 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21167 6348 6264 16026 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21168 6264 6275 16026 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21169 6944 6939 16027 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21170 6939 6797 16027 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21171 6797 6802 16027 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21172 6802 6944 16027 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21173 6785 6788 16028 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21174 6788 6929 16028 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21175 6929 6936 16028 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21176 6936 6785 16028 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21177 7062 7071 16029 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21178 7071 7236 16029 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21179 7236 7224 16029 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21180 7224 7062 16029 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21181 7072 7058 16030 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21182 7058 7226 16030 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21183 7226 7272 16030 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21184 7272 7072 16030 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21185 7566 7568 16031 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21186 7568 7425 16031 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21187 7425 7427 16031 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21188 7427 7566 16031 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21189 7463 7434 16032 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21190 7434 7576 16032 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21191 7576 7628 16032 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21192 7628 7463 16032 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21193 7695 7697 16033 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21194 7697 7814 16033 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21195 7814 7820 16033 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21196 7820 7695 16033 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21197 7755 7708 16034 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21198 7708 7829 16034 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21199 7829 7875 16034 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21200 7875 7755 16034 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21201 7906 7960 16035 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21202 7960 7976 16035 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21203 7976 7915 16035 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21204 7915 7906 16035 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21205 7971 8052 16036 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21206 8052 7993 16036 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21207 7993 7982 16036 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21208 7982 7971 16036 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21209 8102 8013 16037 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21210 8013 8011 16037 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21211 8011 8116 16037 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21212 8116 8102 16037 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21213 7994 7932 16038 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21214 7932 8000 16038 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21215 8000 8079 16038 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21216 8079 7994 16038 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21217 5971 6001 16039 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21218 6001 5910 16039 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21219 5910 5914 16039 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21220 5914 5971 16039 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21221 5829 5786 16040 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21222 5786 5775 16040 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21223 5775 5822 16040 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21224 5822 5829 16040 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21225 5946 5933 16041 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21226 5933 6062 16041 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21227 6062 6031 16041 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21228 6031 5946 16041 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21229 6308 6281 16042 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21230 6281 6202 16042 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21231 6202 6240 16042 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21232 6240 6308 16042 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21233 6116 6091 16043 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21234 6091 6148 16043 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21235 6148 6207 16043 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21236 6207 6116 16043 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21237 5837 5856 16044 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21238 5856 5872 16044 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21239 5872 5870 16044 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21240 5870 5837 16044 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21241 5450 5444 16045 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21242 5444 5602 16045 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21243 5602 5595 16045 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21244 5595 5450 16045 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21245 5766 5779 16046 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21246 5779 5904 16046 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21247 5904 5885 16046 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21248 5885 5766 16046 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21249 5970 5998 16047 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21250 5998 6061 16047 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21251 6061 6042 16047 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21252 6042 5970 16047 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21253 6110 6124 16048 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21254 6124 6181 16048 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21255 6181 6168 16048 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21256 6168 6110 16048 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21257 6252 6283 16049 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21258 6283 6355 16049 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21259 6355 6288 16049 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21260 6288 6252 16049 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21261 6328 6411 16050 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21262 6411 6443 16050 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21263 6443 6350 16050 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21264 6350 6328 16050 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21265 5783 5915 16051 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21266 5915 5928 16051 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21267 5928 5801 16051 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21268 5801 5783 16051 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21269 6060 6074 16052 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21270 6074 6021 16052 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21271 6021 6009 16052 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21272 6009 6060 16052 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21273 6076 6144 16053 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21274 6144 6164 16053 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21275 6164 6098 16053 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21276 6098 6076 16053 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21277 6293 6401 16054 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21278 6401 6433 16054 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21279 6433 6316 16054 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21280 6316 6293 16054 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21281 6510 6552 16055 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21282 6552 6513 16055 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21283 6513 6486 16055 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21284 6486 6510 16055 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21285 6592 6521 16056 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21286 6521 6553 16056 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21287 6553 6627 16056 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21288 6627 6592 16056 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21289 6694 6606 16057 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21290 6606 6630 16057 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21291 6630 6728 16057 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21292 6728 6694 16057 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21293 5777 5797 16058 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21294 5797 5782 16058 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21295 5782 5762 16058 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21296 5762 5777 16058 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21297 5847 5848 16059 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21298 5848 5878 16059 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21299 5878 5889 16059 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21300 5889 5847 16059 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21301 5937 6027 16060 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21302 6027 6053 16060 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21303 6053 5958 16060 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21304 5958 5937 16060 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21305 6177 6151 16061 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21306 6151 6263 16061 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21307 6263 6296 16061 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21308 6296 6177 16061 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21309 6312 6349 16062 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21310 6349 6368 16062 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21311 6368 6354 16062 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21312 6354 6312 16062 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21313 6195 6145 16063 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21314 6145 6139 16063 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21315 6139 6209 16063 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21316 6209 6195 16063 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21317 6352 6448 16064 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21318 6448 6445 16064 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21319 6445 6334 16064 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21320 6334 6352 16064 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21321 6442 6441 16065 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21322 6441 6364 16065 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21323 6364 6343 16065 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21324 6343 6442 16065 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21325 6530 6535 16066 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21326 6535 6567 16066 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21327 6567 6560 16066 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21328 6560 6530 16066 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21329 6543 6497 16067 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21330 6497 6495 16067 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21331 6495 6537 16067 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21332 6537 6543 16067 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21333 6502 6518 16068 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21334 6518 6558 16068 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21335 6558 6541 16068 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21336 6541 6502 16068 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21337 6480 6463 16069 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21338 6463 6399 16069 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21339 6399 6504 16069 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21340 6504 6480 16069 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21341 6266 6244 16070 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21342 6244 6162 16070 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21343 6162 6218 16070 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21344 6218 6266 16070 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21345 6444 6455 16071 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21346 6455 6369 16071 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21347 6369 6378 16071 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21348 6378 6444 16071 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21349 6485 6555 16072 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21350 6555 6571 16072 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21351 6571 6473 16072 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21352 6473 6485 16072 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21353 6739 6849 16073 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21354 6849 6854 16073 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21355 6854 6663 16073 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21356 6663 6739 16073 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21357 6734 6706 16074 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21358 6706 6866 16074 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21359 6866 6912 16074 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21360 6912 6734 16074 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21361 5862 5835 16075 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21362 5835 6011 16075 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21363 6011 6057 16075 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21364 6057 5862 16075 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21365 6280 6194 16076 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21366 6194 6516 16076 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21367 6516 6591 16076 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21368 6591 6280 16076 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21369 6813 6783 16077 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21370 6783 6984 16077 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21371 6984 7010 16077 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21372 7010 6813 16077 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21373 7357 7303 16078 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21374 7303 7199 16078 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21375 7199 7281 16078 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21376 7281 7357 16078 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21377 7152 7129 16079 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21378 7129 7196 16079 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21379 7196 7267 16079 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21380 7267 7152 16079 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21381 7462 7437 16080 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21382 7437 7360 16080 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21383 7360 7398 16080 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21384 7398 7462 16080 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21385 7395 7449 16081 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21386 7449 7397 16081 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21387 7397 7356 16081 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21388 7356 7395 16081 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21389 7110 7150 16082 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21390 7150 7308 16082 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21391 7308 7261 16082 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21392 7261 7110 16082 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21393 6745 6774 16083 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21394 6774 6983 16083 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21395 6983 6952 16083 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21396 6952 6745 16083 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21397 6171 6223 16084 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21398 6223 6539 16084 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21399 6539 6475 16084 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21400 6475 6171 16084 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21401 5814 5834 16085 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21402 5834 6014 16085 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21403 6014 5988 16085 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21404 5988 5814 16085 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21405 5632 5415 16086 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21406 5415 5414 16086 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21407 5414 5635 16086 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21408 5635 5632 16086 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21409 5412 5409 16087 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21410 5409 5642 16087 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21411 5642 5637 16087 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21412 5637 5412 16087 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21413 5879 5886 16088 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21414 5886 6133 16088 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21415 6133 6122 16088 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21416 6122 5879 16088 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21417 5864 5875 16089 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21418 5875 6108 16089 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21419 6108 6072 16089 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21420 6072 5864 16089 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21421 6395 6404 16090 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21422 6404 6683 16090 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21423 6683 6692 16090 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21424 6692 6395 16090 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21425 6331 6384 16091 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21426 6384 6682 16091 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21427 6682 6634 16091 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21428 6634 6331 16091 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21429 6917 6891 16092 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21430 6891 7079 16092 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21431 7079 7102 16092 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21432 7102 6917 16092 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21433 6869 6913 16093 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21434 6913 7095 16093 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21435 7095 7043 16093 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21436 7043 6869 16093 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21437 7307 7310 16094 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21438 7310 7460 16094 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21439 7460 7439 16094 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21440 7439 7307 16094 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21441 7227 7289 16095 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21442 7289 7419 16095 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21443 7419 7373 16095 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21444 7373 7227 16095 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21445 7521 7579 16096 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21446 7579 7654 16096 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21447 7654 7582 16096 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21448 7582 7521 16096 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21449 7670 7718 16097 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21450 7718 7629 16097 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21451 7629 7593 16097 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21452 7593 7670 16097 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21453 7575 7580 16098 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21454 7580 7663 16098 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21455 7663 7665 16098 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21456 7665 7575 16098 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21457 7533 7475 16099 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21458 7475 7572 16099 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21459 7572 7660 16099 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21460 7660 7533 16099 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21461 7453 7435 16100 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21462 7435 7473 16100 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21463 7473 7529 16100 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21464 7529 7453 16100 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21465 7197 7243 16101 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21466 7243 7382 16101 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21467 7382 7338 16101 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21468 7338 7197 16101 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21469 7222 7187 16102 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21470 7187 7331 16102 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21471 7331 7374 16102 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21472 7374 7222 16102 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21473 7080 7065 16103 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21474 7065 6920 16103 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21475 6920 6927 16103 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21476 6927 7080 16103 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21477 6921 6882 16104 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21478 6882 7037 16104 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21479 7037 7074 16104 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21480 7074 6921 16104 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21481 6512 6428 16105 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21482 6428 6687 16105 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21483 6687 6733 16105 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21484 6733 6512 16105 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21485 5967 5961 16106 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21486 5961 6227 16106 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21487 6227 6215 16106 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21488 6215 5967 16106 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21489 5955 5917 16107 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21490 5917 6155 16107 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21491 6155 6220 16107 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21492 6220 5955 16107 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21493 5379 5671 16108 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21494 5671 5702 16108 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21495 5702 5331 16108 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21496 5331 5379 16108 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21497 5382 5398 16109 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21498 5398 5654 16109 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21499 5654 5668 16109 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21500 5668 5382 16109 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21501 7866 7816 16110 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21502 7816 7925 16110 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21503 7925 7981 16110 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21504 7981 7866 16110 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21505 7782 7778 16111 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21506 7778 7871 16111 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21507 7871 7900 16111 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21508 7900 7782 16111 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21509 5630 5417 16112 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21510 5417 5421 16112 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21511 5421 5625 16112 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21512 5625 5630 16112 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21513 5850 5844 16113 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21514 5844 6036 16113 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21515 6036 6052 16113 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21516 6052 5850 16113 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21517 5860 5846 16114 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21518 5846 6044 16114 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21519 6044 6064 16114 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21520 6064 5860 16114 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21521 6300 6282 16115 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21522 6282 6573 16115 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21523 6573 6556 16115 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21524 6556 6300 16115 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21525 6313 6292 16116 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21526 6292 6549 16116 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21527 6549 6564 16116 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21528 6564 6313 16116 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21529 6545 6277 16117 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21530 6277 6271 16117 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21531 6271 6529 16117 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21532 6529 6545 16117 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21533 6267 6204 16118 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21534 6204 6235 16118 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21535 6235 6251 16118 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21536 6251 6267 16118 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21537 6174 6180 16119 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21538 6180 6214 16119 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21539 6214 6213 16119 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21540 6213 6174 16119 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21541 6261 6460 16120 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21542 6460 6503 16120 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21543 6503 6246 16120 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21544 6246 6261 16120 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21545 7177 7165 16121 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21546 7165 6889 16121 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21547 6889 6894 16121 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21548 6894 7177 16121 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21549 7461 7450 16122 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21550 7450 7619 16122 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21551 7619 7611 16122 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21552 7611 7461 16122 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21553 7452 7464 16123 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21554 7464 7608 16123 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21555 7608 7630 16123 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21556 7630 7452 16123 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21557 8705 8717 16124 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21558 8717 8712 16124 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21559 8712 8688 16124 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21560 8688 8705 16124 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21561 8670 8726 16125 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21562 8726 8719 16125 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21563 8719 8668 16125 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21564 8668 8670 16125 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21565 6710 7088 16126 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21566 7088 7001 16126 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21567 7001 6641 16126 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21568 6641 6710 16126 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21569 5177 5164 16127 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21570 5164 5881 16127 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21571 5881 5868 16127 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21572 5868 5177 16127 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21573 7294 7600 16128 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21574 7600 7468 16128 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21575 7468 7142 16128 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21576 7142 7294 16128 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21577 7986 8132 16129 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21578 8132 8413 16129 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21579 8413 8399 16129 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21580 8399 7986 16129 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21581 8630 8640 16130 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21582 8640 8752 16130 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21583 8752 8805 16130 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21584 8805 8630 16130 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21585 8809 8779 16131 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21586 8779 8811 16131 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21587 8811 8823 16131 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21588 8823 8809 16131 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21589 8835 8831 16132 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21590 8831 8862 16132 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21591 8862 8849 16132 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21592 8849 8835 16132 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21593 8847 8854 16133 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21594 8854 8856 16133 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21595 8856 8871 16133 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21596 8871 8847 16133 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21597 8896 8864 16134 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21598 8864 8797 16134 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21599 8797 8839 16134 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21600 8839 8896 16134 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21601 8721 8647 16135 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21602 8647 8594 16135 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21603 8594 8645 16135 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21604 8645 8721 16135 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21605 8650 8618 16136 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21606 8618 8642 16136 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21607 8642 8675 16136 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21608 8675 8650 16136 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21609 8728 8682 16137 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21610 8682 8734 16137 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21611 8734 8773 16137 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21612 8773 8728 16137 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21613 8731 8673 16138 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21614 8673 8683 16138 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21615 8683 8764 16138 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21616 8764 8731 16138 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21617 8633 8591 16139 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21618 8591 8572 16139 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21619 8572 8609 16139 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21620 8609 8633 16139 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21621 8558 8509 16140 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21622 8509 8514 16140 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21623 8514 8573 16140 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21624 8573 8558 16140 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21625 8597 8530 16141 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21626 8530 8547 16141 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21627 8547 8610 16141 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21628 8610 8597 16141 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21629 8612 8564 16142 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21630 8564 8584 16142 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21631 8584 8636 16142 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21632 8636 8612 16142 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21633 8672 8622 16143 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21634 8622 8665 16143 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21635 8665 8714 16143 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21636 8714 8672 16143 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21637 8747 8730 16144 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21638 8730 8732 16144 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21639 8732 8767 16144 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21640 8767 8747 16144 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21641 8658 8702 16145 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21642 8702 8699 16145 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21643 8699 8638 16145 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21644 8638 8658 16145 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21645 8824 8802 16146 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21646 8802 8774 16146 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21647 8774 8925 16146 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21648 8925 8824 16146 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21649 8317 8256 16147 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21650 8256 8335 16147 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21651 8335 8378 16147 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21652 8378 8317 16147 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21653 8433 8461 16148 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21654 8461 8440 16148 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21655 8440 8374 16148 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21656 8374 8433 16148 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21657 8991 9006 16149 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21658 9006 8890 16149 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21659 8890 8908 16149 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21660 8908 8991 16149 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21661 8579 8510 16150 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21662 8510 8582 16150 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21663 8582 8613 16150 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21664 8613 8579 16150 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21665 8701 8744 16151 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21666 8744 8846 16151 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21667 8846 8756 16151 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21668 8756 8701 16151 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21669 8848 8902 16152 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21670 8902 8917 16152 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21671 8917 8903 16152 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21672 8903 8848 16152 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21673 8329 8338 16153 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21674 8338 8419 16153 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21675 8419 8396 16153 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21676 8396 8329 16153 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21677 8264 8248 16154 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21678 8248 8282 16154 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21679 8282 8276 16154 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21680 8276 8264 16154 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21681 8468 8372 16155 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21682 8372 8394 16155 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21683 8394 8488 16155 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21684 8488 8468 16155 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21685 8471 8467 16156 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21686 8467 8406 16156 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21687 8406 8385 16156 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21688 8385 8471 16156 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21689 8889 8883 16157 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21690 8883 8852 16157 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21691 8852 8819 16157 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21692 8819 8889 16157 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21693 9205 9101 16158 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21694 9101 9004 16158 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21695 9004 9256 16158 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21696 9256 9205 16158 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21697 8789 8822 16159 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21698 8822 8793 16159 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21699 8793 8803 16159 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21700 8803 8789 16159 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21701 8769 8754 16160 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21702 8754 8733 16160 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21703 8733 8735 16160 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21704 8735 8769 16160 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21705 7100 7271 16161 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21706 7271 7275 16161 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21707 7275 7096 16161 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21708 7096 7100 16161 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21709 7260 7098 16162 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21710 7098 7099 16162 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21711 7099 7256 16162 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21712 7256 7260 16162 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21713 7519 7404 16163 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21714 7404 7401 16163 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21715 7401 7517 16163 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21716 7517 7519 16163 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21717 7409 7528 16164 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21718 7528 7539 16164 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21719 7539 7414 16164 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21720 7414 7409 16164 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21721 6833 6965 16165 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21722 6965 6962 16165 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21723 6962 6827 16165 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21724 6827 6833 16165 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21725 6967 6836 16166 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21726 6836 6841 16166 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21727 6841 6968 16166 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21728 6968 6967 16166 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21729 6613 6726 16167 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21730 6726 6723 16167 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21731 6723 6601 16167 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21732 6601 6613 16167 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21733 6730 6615 16168 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21734 6615 6620 16168 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21735 6620 6732 16168 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21736 6732 6730 16168 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21737 6379 6461 16169 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21738 6461 6440 16169 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21739 6440 6361 16169 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21740 6361 6379 16169 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21741 6469 6386 16170 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21742 6386 6390 16170 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21743 6390 6478 16170 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21744 6478 6469 16170 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21745 6596 6397 16171 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21746 6397 6372 16171 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21747 6372 6590 16171 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21748 6590 6596 16171 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21749 6406 6600 16172 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21750 6600 6604 16172 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21751 6604 6415 16172 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21752 6415 6406 16172 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21753 7060 6835 16173 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21754 6835 6846 16173 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21755 6846 7077 16173 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21756 7077 7060 16173 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21757 6837 7057 16174 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21758 7057 7056 16174 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21759 7056 6839 16174 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21760 6839 6837 16174 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21761 7482 7323 16175 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21762 7323 7339 16175 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21763 7339 7511 16175 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21764 7511 7482 16175 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21765 7317 7478 16176 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21766 7478 7477 16176 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21767 7477 7316 16176 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21768 7316 7317 16176 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21769 7686 7599 16177 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21770 7599 7635 16177 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21771 7635 7730 16177 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21772 7730 7686 16177 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21773 7584 7675 16178 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21774 7675 7671 16178 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21775 7671 7581 16178 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21776 7581 7584 16178 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21777 7808 7776 16179 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21778 7776 7807 16179 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21779 7807 7840 16179 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21780 7840 7808 16179 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21781 7768 7802 16180 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21782 7802 7798 16180 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21783 7798 7762 16180 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21784 7762 7768 16180 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21785 7770 7791 16181 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21786 7791 7827 16181 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21787 7827 7795 16181 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21788 7795 7770 16181 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21789 7787 7761 16182 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21790 7761 7759 16182 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21791 7759 7783 16182 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21792 7783 7787 16182 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21793 7651 7732 16183 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21794 7732 7752 16183 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21795 7752 7662 16183 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21796 7662 7651 16183 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21797 7725 7645 16184 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21798 7645 7644 16184 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21799 7644 7723 16184 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21800 7723 7725 16184 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21801 3514 3636 16185 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21802 3636 3631 16185 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21803 3631 3504 16185 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21804 3504 3514 16185 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21805 3641 3523 16186 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21806 3523 3524 16186 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21807 3524 3644 16186 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21808 3644 3641 16186 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21809 3943 3787 16187 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21810 3787 3791 16187 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21811 3791 3942 16187 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21812 3942 3943 16187 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21813 3775 3941 16188 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21814 3941 3944 16188 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21815 3944 3771 16188 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21816 3771 3775 16188 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21817 3312 3395 16189 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21818 3395 3380 16189 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21819 3380 3293 16189 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21820 3293 3312 16189 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21821 3401 3316 16190 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21822 3316 3318 16190 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21823 3318 3402 16190 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21824 3402 3401 16190 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21825 3253 3276 16191 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21826 3276 3249 16191 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21827 3249 3217 16191 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21828 3217 3253 16191 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21829 3284 3259 16192 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21830 3259 3263 16192 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21831 3263 3287 16192 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21832 3287 3284 16192 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21833 3270 3236 16193 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21834 3236 3205 16193 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21835 3205 3237 16193 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21836 3237 3270 16193 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21837 3241 3277 16194 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21838 3277 3283 16194 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21839 3283 3245 16194 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21840 3245 3241 16194 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21841 3447 3354 16195 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21842 3354 3313 16195 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21843 3313 3411 16195 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21844 3411 3447 16195 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21845 3366 3458 16196 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21846 3458 3461 16196 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21847 3461 3370 16196 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21848 3370 3366 16196 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21849 3719 3560 16197 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21850 3560 3531 16197 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21851 3531 3704 16197 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21852 3704 3719 16197 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21853 3563 3725 16198 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21854 3725 3726 16198 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21855 3726 3564 16198 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21856 3564 3563 16198 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21857 4210 3980 16199 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21858 3980 3963 16199 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21859 3963 4198 16199 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21860 4198 4210 16199 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21861 3983 4208 16200 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21862 4208 4207 16200 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21863 4207 3984 16200 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21864 3984 3983 16200 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21865 4650 4443 16201 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21866 4443 4450 16201 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21867 4450 4675 16201 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21868 4675 4650 16201 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21869 4439 4641 16202 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21870 4641 4633 16202 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21871 4633 4435 16202 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21872 4435 4439 16202 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21873 4584 4667 16203 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21874 4667 4687 16203 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21875 4687 4606 16203 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21876 4606 4584 16203 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21877 4660 4576 16204 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21878 4576 4568 16204 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21879 4568 4657 16204 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21880 4657 4660 16204 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21881 4317 4425 16205 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21882 4425 4438 16205 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21883 4438 4321 16205 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21884 4321 4317 16205 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21885 4422 4314 16206 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21886 4314 4313 16206 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21887 4313 4418 16206 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21888 4418 4422 16206 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21889 4076 4212 16207 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21890 4212 4218 16207 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21891 4218 4079 16207 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21892 4079 4076 16207 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21893 4209 4074 16208 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21894 4074 4073 16208 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21895 4073 4205 16208 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21896 4205 4209 16208 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21897 3684 4070 16209 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21898 4070 4031 16209 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21899 4031 3649 16209 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21900 3649 3684 16209 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21901 3141 3404 16210 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21902 3404 3355 16210 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21903 3355 3112 16210 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21904 3112 3141 16210 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21905 3018 2991 16211 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21906 2991 2987 16211 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21907 2987 3033 16211 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21908 3033 3018 16211 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21909 3229 3145 16212 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21910 3145 3169 16212 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21911 3169 3254 16212 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21912 3254 3229 16212 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21913 3374 3285 16213 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21914 3285 3305 16213 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21915 3305 3394 16213 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21916 3394 3374 16213 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21917 3624 3493 16214 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21918 3493 3507 16214 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21919 3507 3632 16214 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21920 3632 3624 16214 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21921 4090 3770 16215 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21922 3770 3785 16215 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21923 3785 4092 16215 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21924 4092 4090 16215 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21925 5084 4618 16216 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21926 4618 4619 16216 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21927 4619 5083 16216 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21928 5083 5084 16216 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21929 5670 5377 16217 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21930 5377 5390 16217 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21931 5390 5682 16217 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21932 5682 5670 16217 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21933 6427 5964 16218 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21934 5964 5990 16218 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21935 5990 6484 16218 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21936 6484 6427 16218 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21937 7209 6940 16219 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21938 6940 6981 16219 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21939 6981 7295 16219 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21940 7295 7209 16219 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21941 7486 7367 16220 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21942 7367 7431 16220 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21943 7431 7537 16220 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21944 7537 7486 16220 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21945 7690 7610 16221 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21946 7610 7643 16221 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21947 7643 7727 16221 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21948 7727 7690 16221 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21949 7852 7751 16222 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21950 7751 7781 16222 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21951 7781 7873 16222 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21952 7873 7852 16222 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21953 8096 7987 16223 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21954 7987 8006 16223 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21955 8006 8114 16223 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21956 8114 8096 16223 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21957 7821 8029 16224 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21958 8029 8044 16224 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21959 8044 7839 16224 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21960 7839 7821 16224 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21961 7112 7513 16225 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21962 7513 7535 16225 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21963 7535 7140 16225 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21964 7140 7112 16225 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21965 6092 6639 16226 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21966 6639 6656 16226 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21967 6656 6101 16226 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21968 6101 6092 16226 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21969 5372 5722 16227 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21970 5722 5737 16227 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21971 5737 5383 16227 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21972 5383 5372 16227 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21973 4547 5030 16228 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21974 5030 5027 16228 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21975 5027 4508 16228 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21976 4508 4547 16228 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21977 3581 3976 16229 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21978 3976 3903 16229 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21979 3903 3506 16229 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21980 3506 3581 16229 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21981 3061 3290 16230 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21982 3290 3206 16230 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21983 3206 2978 16230 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21984 2978 3061 16230 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21985 3006 2938 16231 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21986 2938 2880 16231 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21987 2880 2933 16231 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21988 2933 3006 16231 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21989 3223 3142 16232 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21990 3142 3088 16232 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21991 3088 3175 16232 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21992 3175 3223 16232 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21993 3356 3272 16233 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21994 3272 3209 16233 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21995 3209 3294 16233 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21996 3294 3356 16233 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21997 3589 3470 16234 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21998 3470 3406 16234 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 21999 3406 3530 16234 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22000 3530 3589 16234 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22001 4056 3729 16235 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22002 3729 3663 16235 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22003 3663 3998 16235 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22004 3998 4056 16235 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22005 5069 4556 16236 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22006 4556 4482 16236 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22007 4482 5038 16236 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22008 5038 5069 16236 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22009 5699 5394 16237 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22010 5394 5381 16237 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22011 5381 5715 16237 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22012 5715 5699 16237 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22013 6566 6023 16238 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22014 6023 6055 16238 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22015 6055 6623 16238 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22016 6623 6566 16238 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22017 7381 7041 16239 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22018 7041 7125 16239 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22019 7125 7458 16239 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22020 7458 7381 16239 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22021 7637 7507 16240 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22022 7507 7607 16240 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22023 7607 7731 16240 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22024 7731 7637 16240 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22025 7828 7743 16241 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22026 7743 7843 16241 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22027 7843 7912 16241 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22028 7912 7828 16241 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22029 7952 7867 16242 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22030 7867 7959 16242 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22031 7959 8054 16242 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22032 8054 7952 16242 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22033 8177 8105 16243 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22034 8105 8202 16243 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22035 8202 8241 16243 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22036 8241 8177 16243 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22037 7884 8120 16244 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22038 8120 8185 16244 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22039 8185 7943 16244 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22040 7943 7884 16244 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22041 7179 7585 16245 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22042 7585 7641 16245 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22043 7641 7242 16245 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22044 7242 7179 16245 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22045 6138 6705 16246 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22046 6705 6741 16246 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22047 6741 6163 16246 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22048 6163 6138 16246 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22049 5389 5749 16247 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22050 5749 5767 16247 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22051 5767 5373 16247 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22052 5373 5389 16247 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22053 4445 5007 16248 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22054 5007 4973 16248 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22055 4973 4394 16248 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22056 4394 4445 16248 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22057 3409 3816 16249 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22058 3816 3755 16249 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22059 3755 3361 16249 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22060 3361 3409 16249 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22061 2854 3092 16250 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22062 3092 3036 16250 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22063 3036 2811 16250 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22064 2811 2854 16250 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22065 2832 2799 16251 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22066 2799 2757 16251 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22067 2757 2792 16251 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22068 2792 2832 16251 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22069 3071 2969 16252 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22070 2969 2896 16252 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22071 2896 3007 16252 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22072 3007 3071 16252 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22073 3188 3109 16253 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22074 3109 3054 16253 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22075 3054 3136 16253 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22076 3136 3188 16253 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22077 3427 3298 16254 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22078 3298 3242 16254 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22079 3242 3383 16254 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22080 3383 3427 16254 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22081 3912 3569 16255 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22082 3569 3532 16255 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22083 3532 3873 16255 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22084 3873 3912 16255 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22085 4994 4413 16256 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22086 4413 4379 16256 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22087 4379 4976 16256 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22088 4976 4994 16256 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22089 5724 5363 16257 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22090 5363 5350 16257 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22091 5350 5732 16257 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22092 5732 5724 16257 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22093 6685 6095 16258 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22094 6095 6107 16258 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22095 6107 6716 16258 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22096 6716 6685 16258 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22097 7543 7191 16259 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22098 7191 7253 16259 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22099 7253 7598 16259 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22100 7598 7543 16259 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22101 7837 7699 16260 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22102 7699 7750 16260 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22103 7750 7882 16260 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22104 7882 7837 16260 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22105 8032 7947 16261 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22106 7947 7999 16261 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22107 7999 8103 16261 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22108 8103 8032 16261 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22109 8186 8085 16262 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22110 8085 8156 16262 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22111 8156 8229 16262 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22112 8229 8186 16262 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22113 8328 8291 16263 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22114 8291 8333 16263 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22115 8333 8364 16263 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22116 8364 8328 16263 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22117 8046 8268 16264 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22118 8268 8310 16264 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22119 8310 8122 16264 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22120 8122 8046 16264 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22121 7325 7722 16265 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22122 7722 7775 16265 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22123 7775 7363 16265 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22124 7363 7325 16265 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22125 6216 6791 16266 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22126 6791 6816 16266 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22127 6816 6255 16266 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22128 6255 6216 16266 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22129 5355 5781 16267 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22130 5781 5788 16267 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22131 5788 5345 16267 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22132 5345 5355 16267 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22133 4320 4930 16268 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22134 4930 4902 16268 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22135 4902 4300 16268 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22136 4300 4320 16268 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22137 4300 4301 16269 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22138 4301 3756 16269 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22139 3756 3755 16269 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22140 3755 4300 16269 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22141 5345 5344 16270 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22142 5344 4901 16270 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22143 4901 4902 16270 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22144 4902 5345 16270 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22145 6255 6254 16271 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22146 6254 5787 16271 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22147 5787 5788 16271 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22148 5788 6255 16271 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22149 7363 7362 16272 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22150 7362 6815 16272 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22151 6815 6816 16272 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22152 6816 7363 16272 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22153 8122 8112 16273 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22154 8112 7771 16273 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22155 7771 7775 16273 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22156 7775 8122 16273 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22157 8364 8362 16274 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22158 8362 8306 16274 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22159 8306 8310 16274 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22160 8310 8364 16274 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22161 8229 8226 16275 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22162 8226 8331 16275 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22163 8331 8333 16275 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22164 8333 8229 16275 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22165 8103 8101 16276 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22166 8101 8152 16276 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22167 8152 8156 16276 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22168 8156 8103 16276 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22169 7882 7880 16277 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22170 7880 7996 16277 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22171 7996 7999 16277 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22172 7999 7882 16277 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22173 7598 7597 16278 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22174 7597 7748 16278 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22175 7748 7750 16278 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22176 7750 7598 16278 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22177 6716 6715 16279 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22178 6715 7252 16279 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22179 7252 7253 16279 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22180 7253 6716 16279 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22181 5732 5731 16280 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22182 5731 6106 16280 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22183 6106 6107 16280 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22184 6107 5732 16280 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22185 4976 4975 16281 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22186 4975 5349 16281 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22187 5349 5350 16281 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22188 5350 4976 16281 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22189 3873 3874 16282 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22190 3874 4378 16282 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22191 4378 4379 16282 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22192 4379 3873 16282 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22193 3383 3385 16283 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22194 3385 3535 16283 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22195 3535 3532 16283 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22196 3532 3383 16283 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22197 3136 3137 16284 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22198 3137 3247 16284 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22199 3247 3242 16284 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22200 3242 3136 16284 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22201 3007 3011 16285 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22202 3011 3060 16285 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22203 3060 3054 16285 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22204 3054 3007 16285 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22205 2792 2796 16286 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22206 2796 2902 16286 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22207 2902 2896 16286 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22208 2896 2792 16286 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22209 2811 2815 16287 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22210 2815 2762 16287 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22211 2762 2757 16287 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22212 2757 2811 16287 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22213 3361 3362 16288 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22214 3362 3040 16288 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22215 3040 3036 16288 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22216 3036 3361 16288 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22217 4394 4320 16289 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22218 4320 3816 16289 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22219 3816 3903 16289 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22220 3903 4394 16289 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22221 5373 5355 16290 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22222 5355 4930 16290 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22223 4930 4973 16290 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22224 4973 5373 16290 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22225 6163 6216 16291 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22226 6216 5781 16291 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22227 5781 5767 16291 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22228 5767 6163 16291 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22229 7242 7325 16292 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22230 7325 6791 16292 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22231 6791 6741 16292 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22232 6741 7242 16292 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22233 7943 8046 16293 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22234 8046 7722 16293 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22235 7722 7641 16293 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22236 7641 7943 16293 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22237 8241 8328 16294 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22238 8328 8268 16294 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22239 8268 8185 16294 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22240 8185 8241 16294 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22241 8054 8186 16295 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22242 8186 8291 16295 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22243 8291 8202 16295 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22244 8202 8054 16295 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22245 7912 8032 16296 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22246 8032 8085 16296 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22247 8085 7959 16296 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22248 7959 7912 16296 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22249 7731 7837 16297 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22250 7837 7947 16297 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22251 7947 7843 16297 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22252 7843 7731 16297 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22253 7458 7543 16298 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22254 7543 7699 16298 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22255 7699 7607 16298 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22256 7607 7458 16298 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22257 6623 6685 16299 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22258 6685 7191 16299 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22259 7191 7125 16299 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22260 7125 6623 16299 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22261 5715 5724 16300 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22262 5724 6095 16300 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22263 6095 6055 16300 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22264 6055 5715 16300 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22265 5038 4994 16301 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22266 4994 5363 16301 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22267 5363 5381 16301 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22268 5381 5038 16301 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22269 3998 3912 16302 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22270 3912 4413 16302 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22271 4413 4482 16302 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22272 4482 3998 16302 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22273 3530 3427 16303 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22274 3427 3569 16303 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22275 3569 3663 16303 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22276 3663 3530 16303 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22277 3294 3188 16304 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22278 3188 3298 16304 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22279 3298 3406 16304 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22280 3406 3294 16304 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22281 3175 3071 16305 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22282 3071 3109 16305 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22283 3109 3209 16305 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22284 3209 3175 16305 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22285 2933 2832 16306 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22286 2832 2969 16306 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22287 2969 3088 16306 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22288 3088 2933 16306 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22289 2978 2854 16307 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22290 2854 2799 16307 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22291 2799 2880 16307 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22292 2880 2978 16307 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22293 3506 3409 16308 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22294 3409 3092 16308 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22295 3092 3206 16308 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22296 3206 3506 16308 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22297 4508 4445 16309 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22298 4445 3976 16309 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22299 3976 4031 16309 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22300 4031 4508 16309 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22301 5383 5389 16310 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22302 5389 5007 16310 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22303 5007 5027 16310 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22304 5027 5383 16310 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22305 6101 6138 16311 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22306 6138 5749 16311 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22307 5749 5737 16311 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22308 5737 6101 16311 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22309 7140 7179 16312 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22310 7179 6705 16312 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22311 6705 6656 16312 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22312 6656 7140 16312 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22313 7839 7884 16313 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22314 7884 7585 16313 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22315 7585 7535 16313 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22316 7535 7839 16313 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22317 8114 8177 16314 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22318 8177 8120 16314 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22319 8120 8044 16314 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22320 8044 8114 16314 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22321 7873 7952 16315 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22322 7952 8105 16315 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22323 8105 8006 16315 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22324 8006 7873 16315 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22325 7727 7828 16316 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22326 7828 7867 16316 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22327 7867 7781 16316 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22328 7781 7727 16316 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22329 7537 7637 16317 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22330 7637 7743 16317 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22331 7743 7643 16317 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22332 7643 7537 16317 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22333 7295 7381 16318 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22334 7381 7507 16318 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22335 7507 7431 16318 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22336 7431 7295 16318 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22337 6484 6566 16319 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22338 6566 7041 16319 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22339 7041 6981 16319 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22340 6981 6484 16319 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22341 5682 5699 16320 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22342 5699 6023 16320 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22343 6023 5990 16320 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22344 5990 5682 16320 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22345 5083 5069 16321 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22346 5069 5394 16321 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22347 5394 5390 16321 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22348 5390 5083 16321 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22349 4092 4056 16322 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22350 4056 4556 16322 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22351 4556 4619 16322 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22352 4619 4092 16322 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22353 3632 3589 16323 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22354 3589 3729 16323 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22355 3729 3785 16323 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22356 3785 3632 16323 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22357 3394 3356 16324 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22358 3356 3470 16324 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22359 3470 3507 16324 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22360 3507 3394 16324 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22361 3254 3223 16325 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22362 3223 3272 16325 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22363 3272 3305 16325 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22364 3305 3254 16325 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22365 3033 3006 16326 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22366 3006 3142 16326 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22367 3142 3169 16326 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22368 3169 3033 16326 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22369 3112 3061 16327 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22370 3061 2938 16327 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22371 2938 2987 16327 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22372 2987 3112 16327 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22373 3649 3581 16328 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22374 3581 3290 16328 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22375 3290 3355 16328 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22376 3355 3649 16328 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22377 4522 4547 16329 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22378 4547 4070 16329 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22379 4070 4080 16329 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22380 4080 4522 16329 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22381 5359 5372 16330 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22382 5372 5030 16330 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22383 5030 5013 16330 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22384 5013 5359 16330 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22385 6070 6092 16331 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22386 6092 5722 16331 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22387 5722 5703 16331 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22388 5703 6070 16331 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22389 7097 7112 16332 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22390 7112 6639 16332 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22391 6639 6631 16332 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22392 6631 7097 16332 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22393 7800 7821 16333 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22394 7821 7513 16333 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22395 7513 7495 16333 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22396 7495 7800 16333 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22397 8078 8096 16334 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22398 8096 8029 16334 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22399 8029 8009 16334 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22400 8009 8078 16334 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22401 7847 7852 16335 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22402 7852 7987 16335 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22403 7987 7979 16335 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22404 7979 7847 16335 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22405 7679 7690 16336 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22406 7690 7751 16336 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22407 7751 7741 16336 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22408 7741 7679 16336 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22409 7474 7486 16337 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22410 7486 7610 16337 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22411 7610 7594 16337 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22412 7594 7474 16337 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22413 7181 7209 16338 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22414 7209 7367 16338 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22415 7367 7354 16338 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22416 7354 7181 16338 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22417 6393 6427 16339 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22418 6427 6940 16339 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22419 6940 6916 16339 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22420 6916 6393 16339 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22421 5653 5670 16340 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22422 5670 5964 16340 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22423 5964 5949 16340 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22424 5949 5653 16340 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22425 5055 5084 16341 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22426 5084 5377 16341 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22427 5377 5361 16341 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22428 5361 5055 16341 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22429 4061 4090 16342 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22430 4090 4618 16342 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22431 4618 4560 16342 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22432 4560 4061 16342 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22433 3586 3624 16343 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22434 3624 3770 16343 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22435 3770 3739 16343 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22436 3739 3586 16343 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22437 3335 3374 16344 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22438 3374 3493 16344 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22439 3493 3457 16344 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22440 3457 3335 16344 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22441 3199 3229 16345 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22442 3229 3285 16345 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22443 3285 3251 16345 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22444 3251 3199 16345 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22445 3001 3018 16346 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22446 3018 3145 16346 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22447 3145 3122 16346 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22448 3122 3001 16346 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22449 3178 3141 16347 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22450 3141 2991 16347 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22451 2991 3004 16347 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22452 3004 3178 16347 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22453 3718 3684 16348 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22454 3684 3404 16348 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22455 3404 3431 16348 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22456 3431 3718 16348 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22457 3941 3943 16349 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22458 3943 4074 16349 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22459 4074 4076 16349 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22460 4076 3941 16349 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22461 4212 4209 16350 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22462 4209 4314 16350 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22463 4314 4317 16350 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22464 4317 4212 16350 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22465 4425 4422 16351 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22466 4422 4576 16351 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22467 4576 4584 16351 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22468 4584 4425 16351 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22469 4667 4660 16352 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22470 4660 4641 16352 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22471 4641 4650 16352 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22472 4650 4667 16352 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22473 4443 4439 16353 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22474 4439 4208 16353 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22475 4208 4210 16353 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22476 4210 4443 16353 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22477 3980 3983 16354 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22478 3983 3725 16354 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22479 3725 3719 16354 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22480 3719 3980 16354 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22481 3560 3563 16355 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22482 3563 3458 16355 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22483 3458 3447 16355 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22484 3447 3560 16355 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22485 3354 3366 16356 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22486 3366 3277 16356 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22487 3277 3270 16356 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22488 3270 3354 16356 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22489 3236 3241 16357 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22490 3241 3259 16357 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22491 3259 3253 16357 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22492 3253 3236 16357 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22493 3276 3284 16358 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22494 3284 3316 16358 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22495 3316 3312 16358 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22496 3312 3276 16358 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22497 3395 3401 16359 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22498 3401 3523 16359 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22499 3523 3514 16359 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22500 3514 3395 16359 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22501 3787 3775 16360 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22502 3775 3636 16360 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22503 3636 3641 16360 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22504 3641 3787 16360 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22505 7528 7519 16361 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22506 7519 7645 16361 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22507 7645 7651 16361 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22508 7651 7528 16361 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22509 7732 7725 16362 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22510 7725 7761 16362 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22511 7761 7770 16362 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22512 7770 7732 16362 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22513 7791 7787 16363 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22514 7787 7802 16363 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22515 7802 7808 16363 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22516 7808 7791 16363 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22517 7776 7768 16364 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22518 7768 7675 16364 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22519 7675 7686 16364 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22520 7686 7776 16364 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22521 7599 7584 16365 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22522 7584 7478 16365 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22523 7478 7482 16365 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22524 7482 7599 16365 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22525 7323 7317 16366 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22526 7317 7057 16366 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22527 7057 7060 16366 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22528 7060 7323 16366 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22529 6835 6837 16367 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22530 6837 6600 16367 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22531 6600 6596 16367 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22532 6596 6835 16367 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22533 6397 6406 16368 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22534 6406 6386 16368 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22535 6386 6379 16368 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22536 6379 6397 16368 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22537 6461 6469 16369 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22538 6469 6615 16369 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22539 6615 6613 16369 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22540 6613 6461 16369 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22541 6726 6730 16370 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22542 6730 6836 16370 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22543 6836 6833 16370 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22544 6833 6726 16370 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22545 6965 6967 16371 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22546 6967 7098 16371 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22547 7098 7100 16371 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22548 7100 6965 16371 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22549 7404 7409 16372 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22550 7409 7271 16372 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22551 7271 7260 16372 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22552 7260 7404 16372 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22553 7792 7967 16373 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22554 7967 8161 16373 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22555 8161 7951 16373 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22556 7951 7792 16373 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22557 8735 8705 16374 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22558 8705 8927 16374 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22559 8927 8965 16374 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22560 8965 8735 16374 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22561 8803 8769 16375 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22562 8769 8993 16375 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22563 8993 9018 16375 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22564 9018 8803 16375 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22565 8932 8889 16376 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22566 8889 9101 16376 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22567 9101 9172 16376 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22568 9172 8932 16376 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22569 8903 8923 16377 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22570 8923 9130 16377 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22571 9130 9036 16377 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22572 9036 8903 16377 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22573 8433 8378 16378 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22574 8378 8455 16378 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22575 8455 8506 16378 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22576 8506 8433 16378 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22577 8335 8304 16379 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22578 8304 8406 16379 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22579 8406 8425 16379 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22580 8425 8335 16379 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22581 8275 8264 16380 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22582 8264 8372 16380 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22583 8372 8385 16380 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22584 8385 8275 16380 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22585 8276 8329 16381 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22586 8329 8423 16381 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22587 8423 8394 16381 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22588 8394 8276 16381 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22589 8783 8848 16382 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22590 8848 8961 16382 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22591 8961 8846 16382 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22592 8846 8783 16382 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22593 8396 8487 16383 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22594 8487 8510 16383 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22595 8510 8456 16383 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22596 8456 8396 16383 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22597 8688 8686 16384 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22598 8686 8890 16384 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22599 8890 8905 16384 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22600 8905 8688 16384 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22601 8273 8317 16385 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22602 8317 8374 16385 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22603 8374 8344 16385 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22604 8344 8273 16385 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22605 8668 8658 16386 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22606 8658 8824 16386 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22607 8824 8826 16386 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22608 8826 8668 16386 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22609 8681 8670 16387 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22610 8670 8830 16387 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22611 8830 8869 16387 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22612 8869 8681 16387 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22613 8908 8771 16388 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22614 8771 8907 16388 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22615 8907 8952 16388 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22616 8952 8908 16388 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22617 8750 8714 16389 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22618 8714 8747 16389 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22619 8747 8780 16389 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22620 8780 8750 16389 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22621 8664 8636 16390 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22622 8636 8672 16390 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22623 8672 8713 16390 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22624 8713 8664 16390 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22625 8596 8573 16391 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22626 8573 8597 16391 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22627 8597 8631 16391 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22628 8631 8596 16391 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22629 8609 8626 16392 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22630 8626 8720 16392 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22631 8720 8683 16392 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22632 8683 8609 16392 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22633 8764 8798 16393 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22634 8798 8853 16393 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22635 8853 8813 16393 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22636 8813 8764 16393 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22637 8818 8858 16394 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22638 8858 8808 16394 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22639 8808 8773 16394 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22640 8773 8818 16394 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22641 8728 8765 16395 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22642 8765 8718 16395 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22643 8718 8675 16395 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22644 8675 8728 16395 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22645 8884 8839 16396 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22646 8839 8721 16396 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22647 8721 8758 16396 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22648 8758 8884 16396 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22649 8894 8871 16397 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22650 8871 8896 16397 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22651 8896 8922 16397 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22652 8922 8894 16397 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22653 8840 8823 16398 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22654 8823 8835 16398 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22655 8835 8872 16398 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22656 8872 8840 16398 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22657 8410 8399 16399 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22658 8399 8630 16399 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22659 8630 8646 16399 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22660 8646 8410 16399 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22661 7470 7468 16400 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22662 7468 7986 16400 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22663 7986 7992 16400 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22664 7992 7470 16400 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22665 7142 7141 16401 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22666 7141 6999 16401 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22667 6999 7001 16401 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22668 7001 7142 16401 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22669 6641 6638 16402 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22670 6638 5867 16402 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22671 5867 5868 16402 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22672 5868 6641 16402 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22673 8755 8786 16403 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22674 8786 8767 16403 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22675 8767 8745 16403 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22676 8745 8755 16403 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22677 8558 8581 16404 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22678 8581 8572 16404 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22679 8572 8552 16404 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22680 8552 8558 16404 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22681 8650 8676 16405 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22682 8676 8645 16405 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22683 8645 8644 16405 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22684 8644 8650 16405 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22685 7175 7469 16406 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22686 7469 7464 16406 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22687 7464 7177 16406 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22688 7177 7175 16406 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22689 6894 6529 16407 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22690 6529 6520 16407 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22691 6520 6890 16407 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22692 6890 6894 16407 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22693 6881 6506 16408 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22694 6506 6503 16408 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22695 6503 6873 16408 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22696 6873 6881 16408 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22697 7466 7170 16409 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22698 7170 7159 16409 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22699 7159 7461 16409 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22700 7461 7466 16409 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22701 6044 6052 16410 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22702 6052 6300 16410 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22703 6300 6292 16410 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22704 6292 6044 16410 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22705 5625 5628 16411 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22706 5628 5850 16411 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22707 5850 5846 16411 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22708 5846 5625 16411 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22709 8001 7871 16412 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22710 7871 7845 16412 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22711 7845 7975 16412 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22712 7975 8001 16412 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22713 8066 7925 16413 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22714 7925 7900 16413 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22715 7900 8033 16413 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22716 8033 8066 16413 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22717 8208 8080 16414 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22718 8080 7981 16414 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22719 7981 8141 16414 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22720 8141 8208 16414 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22721 5671 5668 16415 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22722 5668 5955 16415 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22723 5955 5961 16415 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22724 5961 5671 16415 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22725 6740 6733 16416 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22726 6733 6921 16416 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22727 6921 6927 16416 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22728 6927 6740 16416 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22729 7080 7074 16417 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22730 7074 7222 16417 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22731 7222 7243 16417 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22732 7243 7080 16417 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22733 7592 7629 16418 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22734 7629 7710 16418 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22735 7710 7663 16418 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22736 7663 7592 16418 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22737 7419 7439 16419 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22738 7439 7521 16419 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22739 7521 7501 16419 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22740 7501 7419 16419 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22741 7095 7102 16420 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22742 7102 7307 16420 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22743 7307 7289 16420 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22744 7289 7095 16420 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22745 6682 6692 16421 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22746 6692 6917 16421 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22747 6917 6913 16421 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22748 6913 6682 16421 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22749 6108 6122 16422 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22750 6122 6395 16422 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22751 6395 6384 16422 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22752 6384 6108 16422 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22753 5635 5637 16423 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22754 5637 5879 16423 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22755 5879 5875 16423 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22756 5875 5635 16423 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22757 6220 6512 16424 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22758 6512 6524 16424 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22759 6524 6227 16424 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22760 6227 6220 16424 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22761 7374 7480 16425 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22762 7480 7473 16425 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22763 7473 7382 16425 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22764 7382 7374 16425 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22765 7709 7626 16426 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22766 7626 7601 16426 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22767 7601 7665 16426 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22768 7665 7709 16426 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22769 6697 6706 16427 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22770 6706 6578 16427 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22771 6578 6571 16427 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22772 6571 6697 16427 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22773 6243 6244 16428 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22774 6244 6369 16428 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22775 6369 6383 16428 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22776 6383 6243 16428 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22777 7475 7296 16429 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22778 7296 7282 16429 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22779 7282 7453 16429 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22780 7453 7475 16429 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22781 7073 6866 16430 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22782 6866 6854 16430 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22783 6854 7051 16430 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22784 7051 7073 16430 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22785 6502 6495 16431 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22786 6495 6452 16431 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22787 6452 6463 16431 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22788 6463 6502 16431 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22789 6563 6560 16432 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22790 6560 6537 16432 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22791 6537 6541 16432 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22792 6541 6563 16432 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22793 6445 6530 16433 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22794 6530 6528 16433 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22795 6528 6442 16433 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22796 6442 6445 16433 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22797 6343 6218 16434 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22798 6218 6195 16434 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22799 6195 6334 16434 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22800 6334 6343 16434 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22801 6418 6368 16435 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22802 6368 6359 16435 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22803 6359 6396 16435 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22804 6396 6418 16435 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22805 6340 6296 16436 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22806 6296 6354 16436 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22807 6354 6387 16436 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22808 6387 6340 16436 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22809 6075 6053 16437 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22810 6053 6177 16437 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22811 6177 6219 16437 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22812 6219 6075 16437 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22813 5891 5889 16438 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22814 5889 5958 16438 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22815 5958 5972 16438 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22816 5972 5891 16438 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22817 5759 5782 16439 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22818 5782 5847 16439 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22819 5847 5836 16439 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22820 5836 5759 16439 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22821 5738 5773 16440 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22822 5773 5762 16440 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22823 5762 5727 16440 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22824 5727 5738 16440 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22825 6883 6728 16441 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22826 6728 6738 16441 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22827 6738 6920 16441 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22828 6920 6883 16441 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22829 6739 6627 16442 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22830 6627 6694 16442 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22831 6694 6814 16442 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22832 6814 6739 16442 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22833 6599 6558 16443 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22834 6558 6592 16443 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22835 6592 6663 16443 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22836 6663 6599 16443 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22837 6575 6552 16444 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22838 6552 6543 16444 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22839 6543 6567 16444 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22840 6567 6575 16444 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22841 6456 6433 16445 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22842 6433 6513 16445 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22843 6513 6540 16445 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22844 6540 6456 16445 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22845 6185 6164 16446 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22846 6164 6316 16446 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22847 6316 6338 16446 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22848 6338 6185 16446 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22849 6090 6074 16447 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22850 6074 6098 16447 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22851 6098 6112 16447 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22852 6112 6090 16447 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22853 5934 5928 16448 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22854 5928 6021 16448 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22855 6021 6029 16448 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22856 6029 5934 16448 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22857 5610 5607 16449 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22858 5607 5801 16449 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22859 5801 5806 16449 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22860 5806 5610 16449 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22861 6022 6042 16450 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22862 6042 6110 16450 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22863 6110 6099 16450 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22864 6099 6022 16450 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22865 5873 5885 16451 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22866 5885 5970 16451 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22867 5970 5947 16451 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22868 5947 5873 16451 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22869 5594 5595 16452 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22870 5595 5766 16452 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22871 5766 5758 16452 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22872 5758 5594 16452 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22873 6444 6441 16453 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22874 6441 6509 16453 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22875 6509 6485 16453 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22876 6485 6444 16453 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22877 5937 5878 16454 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22878 5878 5870 16454 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22879 5870 5910 16454 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22880 5910 5937 16454 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22881 6281 6312 16455 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22882 6312 6263 16455 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22883 6263 6207 16455 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22884 6207 6281 16455 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22885 6001 6116 16456 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22886 6116 6151 16456 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22887 6151 6027 16456 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22888 6027 6001 16456 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22889 7820 7915 16457 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22890 7915 7918 16457 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22891 7918 7817 16457 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22892 7817 7820 16457 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22893 7823 7923 16458 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22894 7923 7932 16458 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22895 7932 7829 16458 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22896 7829 7823 16458 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22897 7568 7695 16459 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22898 7695 7693 16459 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22899 7693 7570 16459 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22900 7570 7568 16459 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22901 7573 7700 16460 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22902 7700 7708 16460 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22903 7708 7576 16460 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22904 7576 7573 16460 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22905 7224 7425 16461 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22906 7425 7428 16461 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22907 7428 7216 16461 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22908 7216 7224 16461 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22909 7221 7430 16462 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22910 7430 7434 16462 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22911 7434 7226 16462 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22912 7226 7221 16462 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22913 6939 7062 16463 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22914 7062 7055 16463 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22915 7055 6934 16463 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22916 6934 6939 16463 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22917 6930 7053 16464 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22918 7053 7058 16464 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22919 7058 6929 16464 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22920 6929 6930 16464 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22921 6670 6797 16465 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22922 6797 6792 16465 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22923 6792 6668 16465 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22924 6668 6670 16465 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22925 6664 6790 16466 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22926 6790 6788 16466 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22927 6788 6659 16466 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22928 6659 6664 16466 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22929 6348 6523 16467 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22930 6523 6515 16467 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22931 6515 6336 16467 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22932 6336 6348 16467 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22933 6323 6505 16468 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22934 6505 6501 16468 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22935 6501 6318 16468 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22936 6318 6323 16468 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22937 7236 7248 16469 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22938 7248 7433 16469 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22939 7433 7427 16469 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22940 7427 7236 16469 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22941 7662 7683 16470 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22942 7683 7557 16470 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22943 7557 7539 16470 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22944 7539 7662 16470 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22945 7795 7846 16471 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22946 7846 7785 16471 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22947 7785 7752 16471 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22948 7752 7795 16471 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22949 7840 7886 16472 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22950 7886 7879 16472 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22951 7879 7827 16472 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22952 7827 7840 16472 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22953 7730 7804 16473 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22954 7804 7861 16473 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22955 7861 7807 16473 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22956 7807 7730 16473 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22957 7511 7559 16474 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22958 7559 7707 16474 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22959 7707 7635 16474 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22960 7635 7511 16474 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22961 7077 7107 16475 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22962 7107 7384 16475 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22963 7384 7339 16475 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22964 7339 7077 16475 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22965 6590 6569 16476 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22966 6569 6855 16476 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22967 6855 6846 16476 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22968 6846 6590 16476 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22969 6361 6327 16477 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22970 6327 6344 16477 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22971 6344 6372 16477 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22972 6372 6361 16477 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22973 6601 6585 16478 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22974 6585 6403 16478 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22975 6403 6440 16478 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22976 6440 6601 16478 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22977 6827 6819 16479 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22978 6819 6709 16479 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22979 6709 6723 16479 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22980 6723 6827 16479 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22981 7096 7089 16480 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22982 7089 6961 16480 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22983 6961 6962 16480 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22984 6962 7096 16480 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22985 7059 7056 16481 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22986 7056 7316 16481 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22987 7316 7319 16481 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22988 7319 7059 16481 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22989 7479 7477 16482 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22990 7477 7581 16482 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22991 7581 7586 16482 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22992 7586 7479 16482 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22993 7678 7671 16483 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22994 7671 7762 16483 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22995 7762 7764 16483 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22996 7764 7678 16483 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22997 7799 7798 16484 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22998 7798 7783 16484 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 22999 7783 7784 16484 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23000 7784 7799 16484 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23001 7763 7759 16485 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23002 7759 7723 16485 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23003 7723 7728 16485 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23004 7728 7763 16485 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23005 7648 7644 16486 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23006 7644 7517 16486 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23007 7517 7522 16486 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23008 7522 7648 16486 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23009 7406 7401 16487 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23010 7401 7256 16487 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23011 7256 7264 16487 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23012 7264 7406 16487 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23013 7101 7099 16488 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23014 7099 6968 16488 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23015 6968 6970 16488 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23016 6970 7101 16488 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23017 6840 6841 16489 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23018 6841 6732 16489 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23019 6732 6731 16489 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23020 6731 6840 16489 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23021 6619 6620 16490 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23022 6620 6478 16490 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23023 6478 6477 16490 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23024 6477 6619 16490 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23025 6389 6390 16491 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23026 6390 6415 16491 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23027 6415 6414 16491 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23028 6414 6389 16491 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23029 6603 6604 16492 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23030 6604 6839 16492 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23031 6839 6838 16492 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23032 6838 6603 16492 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23033 7806 7883 16493 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23034 7883 7906 16493 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23035 7906 7814 16493 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23036 7814 7806 16493 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23037 6871 6554 16494 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23038 6554 6545 16494 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23039 6545 6889 16494 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23040 6889 6871 16494 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23041 7348 7169 16495 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23042 7169 7022 16495 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23043 7022 7467 16495 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23044 7467 7348 16495 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23045 7788 7836 16496 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23046 7836 7670 16496 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23047 7670 7654 16496 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23048 7654 7788 16496 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23049 7664 7579 16497 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23050 7579 7460 16497 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23051 7460 7493 16497 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23052 7493 7664 16497 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23053 8731 8775 16498 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23054 8775 8734 16498 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23055 8734 8693 16498 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23056 8693 8731 16498 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23057 8652 8682 16499 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23058 8682 8642 16499 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23059 8642 8606 16499 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23060 8606 8652 16499 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23061 8544 8574 16500 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23062 8574 8618 16500 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23063 8618 8607 16500 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23064 8607 8544 16500 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23065 8521 8525 16501 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23066 8525 8601 16501 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23067 8601 8594 16501 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23068 8594 8521 16501 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23069 8580 8647 16502 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23070 8647 8797 16502 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23071 8797 8724 16502 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23072 8724 8580 16502 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23073 8820 8864 16503 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23074 8864 8856 16503 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23075 8856 8851 16503 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23076 8851 8820 16503 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23077 8887 8877 16504 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23078 8877 8854 16504 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23079 8854 8862 16504 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23080 8862 8887 16504 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23081 8867 8831 16505 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23082 8831 8811 16505 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23083 8811 8806 16505 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23084 8806 8867 16505 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23085 8666 8738 16506 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23086 8738 8779 16506 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23087 8779 8752 16506 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23088 8752 8666 16506 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23089 7849 7948 16507 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23090 7948 8123 16507 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23091 8123 8010 16507 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23092 8010 7849 16507 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23093 8167 8231 16508 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23094 8231 8284 16508 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23095 8284 8205 16508 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23096 8205 8167 16508 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23097 8270 8353 16509 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23098 8353 8427 16509 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23099 8427 8376 16509 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23100 8376 8270 16509 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23101 8458 8500 16510 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23102 8500 8585 16510 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23103 8585 8535 16510 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23104 8535 8458 16510 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23105 8698 8730 16511 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23106 8730 8665 16511 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23107 8665 8619 16511 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23108 8619 8698 16511 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23109 8566 8622 16512 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23110 8622 8584 16512 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23111 8584 8505 16512 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23112 8505 8566 16512 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23113 8454 8481 16513 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23114 8481 8564 16513 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23115 8564 8547 16513 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23116 8547 8454 16513 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23117 8445 8530 16514 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23118 8530 8514 16514 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23119 8514 8444 16514 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23120 8444 8445 16514 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23121 8473 8452 16515 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23122 8452 8509 16515 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23123 8509 8519 16515 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23124 8519 8473 16515 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23125 8065 8201 16516 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23126 8201 8256 16516 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23127 8256 8197 16516 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23128 8197 8065 16516 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23129 8708 8654 16517 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23130 8654 8637 16517 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23131 8637 8697 16517 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23132 8697 8708 16517 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23133 8633 8673 16518 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23134 8673 8684 16518 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23135 8684 8696 16518 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23136 8696 8633 16518 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23137 8649 8592 16519 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23138 8592 8605 16519 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23139 8605 8674 16519 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23140 8674 8649 16519 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23141 8550 8513 16520 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23142 8513 8518 16520 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23143 8518 8560 16520 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23144 8560 8550 16520 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23145 8472 8422 16521 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23146 8422 8429 16521 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23147 8429 8477 16521 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23148 8477 8472 16521 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23149 8345 8239 16522 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23150 8239 8225 16522 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23151 8225 8347 16522 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23152 8347 8345 16522 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23153 8763 8787 16523 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23154 8787 8743 16523 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23155 8743 8723 16523 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23156 8723 8763 16523 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23157 8759 8680 16524 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23158 8680 8569 16524 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23159 8569 8678 16524 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23160 8678 8759 16524 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23161 8657 8661 16525 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23162 8661 8575 16525 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23163 8575 8593 16525 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23164 8593 8657 16525 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23165 8590 8464 16526 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23166 8464 8390 16526 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23167 8390 8496 16526 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23168 8496 8590 16526 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23169 8517 8475 16527 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23170 8475 8373 16527 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23171 8373 8435 16527 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23172 8435 8517 16527 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23173 8402 8288 16528 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23174 8288 8170 16528 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23175 8170 8289 16528 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23176 8289 8402 16528 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23177 8358 8279 16529 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23178 8279 8190 16529 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23179 8190 8274 16529 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23180 8274 8358 16529 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23181 8183 8012 16530 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23182 8012 7903 16530 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23183 7903 8043 16530 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23184 8043 8183 16530 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23185 8258 8324 16531 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23186 8324 8124 16531 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23187 8124 8064 16531 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23188 8064 8258 16531 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23189 8523 8389 16532 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23190 8389 8466 16532 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23191 8466 8604 16532 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23192 8604 8523 16532 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23193 8102 8221 16533 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23194 8221 8212 16533 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23195 8212 8079 16533 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23196 8079 8102 16533 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23197 8322 8426 16534 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23198 8426 8391 16534 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23199 8391 8305 16534 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23200 8305 8322 16534 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23201 7994 8147 16535 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23202 8147 7977 16535 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23203 7977 7875 16535 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23204 7875 7994 16535 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23205 8238 8309 16536 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23206 8309 8187 16536 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23207 8187 8099 16536 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23208 8099 8238 16536 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23209 7755 7856 16537 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23210 7856 7721 16537 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23211 7721 7628 16537 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23212 7628 7755 16537 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23213 7929 7995 16538 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23214 7995 7841 16538 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23215 7841 7797 16538 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23216 7797 7929 16538 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23217 7463 7532 16539 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23218 7532 7311 16539 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23219 7311 7272 16539 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23220 7272 7463 16539 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23221 7596 7633 16540 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23222 7633 7393 16540 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23223 7393 7345 16540 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23224 7345 7596 16540 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23225 7072 7084 16541 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23226 7084 6943 16541 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23227 6943 6936 16541 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23228 6936 7072 16541 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23229 7116 7155 16542 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23230 7155 6975 16542 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23231 6975 6960 16542 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23232 6960 7116 16542 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23233 6785 6787 16543 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23234 6787 6647 16543 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23235 6647 6652 16543 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23236 6652 6785 16543 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23237 6794 6804 16544 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23238 6804 6666 16544 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23239 6666 6651 16544 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23240 6651 6794 16544 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23241 6491 6467 16545 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23242 6467 6256 16545 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23243 6256 6295 16545 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23244 6295 6491 16545 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23245 6462 6472 16546 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23246 6472 6229 16546 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23247 6229 6226 16546 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23248 6226 6462 16546 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23249 6559 6538 16547 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23250 6538 6356 16547 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23251 6356 6375 16547 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23252 6375 6559 16547 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23253 6678 6698 16548 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23254 6698 6808 16548 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23255 6808 6802 16548 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23256 6802 6678 16548 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23257 6944 6954 16549 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23258 6954 7078 16549 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23259 7078 7071 16549 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23260 7071 6944 16549 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23261 7268 7275 16550 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23262 7275 7414 16550 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23263 7414 7426 16550 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23264 7426 7268 16550 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23265 7566 7565 16551 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23266 7565 7696 16551 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23267 7696 7697 16551 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23268 7697 7566 16551 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23269 7953 7909 16552 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23270 7909 7869 16552 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23271 7869 7926 16552 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23272 7926 7953 16552 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23273 7452 7417 16553 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23274 7417 7137 16553 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23275 7137 7165 16553 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23276 7165 7452 16553 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23277 5584 5593 16554 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23278 5593 5744 16554 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23279 5744 5704 16554 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23280 5704 5584 16554 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23281 5599 5613 16555 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23282 5613 5855 16555 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23283 5855 5792 16555 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23284 5792 5599 16555 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23285 5627 5634 16556 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23286 5634 5920 16556 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23287 5920 5883 16556 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23288 5883 5627 16556 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23289 5819 5874 16557 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23290 5874 5982 16557 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23291 5982 5876 16557 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23292 5876 5819 16557 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23293 5952 6034 16558 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23294 6034 6205 16558 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23295 6205 6084 16558 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23296 6084 5952 16558 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23297 6128 6208 16559 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23298 6208 6576 16559 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23299 6576 6370 16559 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23300 6370 6128 16559 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23301 6206 6413 16560 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23302 6413 6608 16560 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23303 6608 6330 16560 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23304 6330 6206 16560 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23305 6624 6762 16561 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23306 6762 6945 16561 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23307 6945 6765 16561 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23308 6765 6624 16561 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23309 6410 6696 16562 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23310 6696 6722 16562 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23311 6722 6453 16562 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23312 6453 6410 16562 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23313 6875 7023 16563 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23314 7023 7036 16563 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23315 7036 6896 16563 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23316 6896 6875 16563 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23317 5976 6182 16564 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23318 6182 6232 16564 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23319 6232 6005 16564 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23320 6005 5976 16564 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23321 6482 6718 16565 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23322 6718 6686 16565 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23323 6686 6493 16565 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23324 6493 6482 16565 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23325 6874 7000 16566 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23326 7000 6906 16566 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23327 6906 6800 16566 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23328 6800 6874 16566 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23329 6003 6198 16567 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23330 6198 6120 16567 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23331 6120 5966 16567 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23332 5966 6003 16567 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23333 6419 6595 16568 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23334 6595 6382 16568 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23335 6382 6274 16568 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23336 6274 6419 16568 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23337 6699 6754 16569 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23338 6754 6573 16569 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23339 6573 6494 16569 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23340 6494 6699 16569 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23341 5909 6024 16570 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23342 6024 5908 16570 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23343 5908 5857 16570 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23344 5857 5909 16570 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23345 6105 6170 16571 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23346 6170 5987 16571 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23347 5987 5963 16571 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23348 5963 6105 16571 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23349 6230 6282 16572 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23350 6282 6036 16572 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23351 6036 6012 16572 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23352 6012 6230 16572 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23353 5740 5774 16573 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23354 5774 5598 16573 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23355 5598 5590 16573 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23356 5590 5740 16573 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23357 5804 5813 16574 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23358 5813 5612 16574 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23359 5612 5609 16574 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23360 5609 5804 16574 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23361 5826 5844 16575 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23362 5844 5624 16575 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23363 5624 5618 16575 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23364 5618 5826 16575 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23365 6313 6374 16576 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23366 6374 6123 16576 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23367 6123 6064 16576 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23368 6064 6313 16576 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23369 5860 5884 16577 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23370 5884 5640 16577 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23371 5640 5630 16577 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23372 5630 5860 16577 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23373 7660 7782 16578 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23374 7782 7816 16578 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23375 7816 7698 16578 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23376 7698 7660 16578 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23377 7881 7936 16579 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23378 7936 7796 16579 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23379 7796 7718 16579 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23380 7718 7881 16579 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23381 7373 7459 16580 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23382 7459 7395 16580 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23383 7395 7308 16580 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23384 7308 7373 16580 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23385 7520 7580 16581 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23386 7580 7462 16581 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23387 7462 7449 16581 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23388 7449 7520 16581 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23389 7575 7500 16582 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23390 7500 7357 16582 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23391 7357 7437 16582 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23392 7437 7575 16582 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23393 7429 7331 16583 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23394 7331 7267 16583 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23395 7267 7303 16583 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23396 7303 7429 16583 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23397 7866 7938 16584 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23398 7938 7824 16584 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23399 7824 7749 16584 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23400 7749 7866 16584 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23401 7571 7642 16585 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23402 7642 7444 16585 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23403 7444 7361 16585 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23404 7361 7571 16585 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23405 7124 7195 16586 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23406 7195 6973 16586 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23407 6973 6912 16586 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23408 6912 7124 16586 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23409 6734 6766 16587 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23410 6766 6626 16587 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23411 6626 6597 16587 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23412 6597 6734 16587 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23413 7514 7726 16588 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23414 7726 7832 16588 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23415 7832 7609 16588 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23416 7609 7514 16588 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23417 7674 7619 16589 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23418 7619 7638 16589 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23419 7638 7812 16589 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23420 7812 7674 16589 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23421 7309 7380 16590 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23422 7380 7094 16590 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23423 7094 7032 16590 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23424 7032 7309 16590 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23425 7422 7450 16591 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23426 7450 7149 16591 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23427 7149 7132 16591 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23428 7132 7422 16591 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23429 6828 6872 16592 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23430 6872 6649 16592 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23431 6649 6645 16592 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23432 6645 6828 16592 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23433 6893 6898 16593 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23434 6898 6644 16593 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23435 6644 6648 16593 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23436 6648 6893 16593 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23437 7302 7310 16594 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23438 7310 7079 16594 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23439 7079 7035 16594 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23440 7035 7302 16594 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23441 7227 7150 16595 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23442 7150 6983 16595 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23443 6983 7043 16595 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23444 7043 7227 16595 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23445 7152 7187 16596 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23446 7187 7037 16596 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23447 7037 7010 16596 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23448 7010 7152 16596 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23449 7197 7135 16597 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23450 7135 7015 16597 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23451 7015 7065 16597 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23452 7065 7197 16597 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23453 6842 6891 16598 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23454 6891 6683 16598 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23455 6683 6660 16598 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23456 6660 6842 16598 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23457 6869 6774 16599 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23458 6774 6539 16599 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23459 6539 6634 16599 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23460 6634 6869 16599 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23461 6813 6882 16600 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23462 6882 6687 16600 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23463 6687 6591 16600 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23464 6591 6813 16600 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23465 6589 6606 16601 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23466 6606 6553 16601 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23467 6553 6504 16601 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23468 6504 6589 16601 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23469 6407 6404 16602 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23470 6404 6133 16602 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23471 6133 6143 16602 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23472 6143 6407 16602 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23473 6331 6223 16603 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23474 6223 6014 16603 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23475 6014 6072 16603 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23476 6072 6331 16603 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23477 6280 6428 16604 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23478 6428 6155 16604 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23479 6155 6057 16604 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23480 6057 6280 16604 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23481 6511 6487 16605 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23482 6487 6189 16605 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23483 6189 6215 16605 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23484 6215 6511 16605 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23485 5895 5886 16606 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23486 5886 5642 16606 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23487 5642 5647 16606 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23488 5647 5895 16606 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23489 5864 5834 16607 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23490 5834 5620 16607 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23491 5620 5632 16607 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23492 5632 5864 16607 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23493 5862 5917 16608 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23494 5917 5654 16608 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23495 5654 5631 16608 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23496 5631 5862 16608 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23497 5967 5983 16609 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23498 5983 5780 16609 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23499 5780 5702 16609 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23500 5702 5967 16609 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23501 5975 5951 16610 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23502 5951 5811 16610 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23503 5811 5827 16610 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23504 5827 5975 16610 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23505 5680 5676 16611 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23506 5676 5574 16611 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23507 5574 5577 16611 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23508 5577 5680 16611 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23509 6284 6253 16612 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23510 6253 6062 16612 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23511 6062 6087 16612 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23512 6087 6284 16612 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23513 5936 5933 16613 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23514 5933 5845 16613 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23515 5845 5818 16613 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23516 5818 5936 16613 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23517 5672 5665 16614 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23518 5665 5568 16614 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23519 5568 5573 16614 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23520 5573 5672 16614 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23521 5837 5848 16615 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23522 5848 5797 16615 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23523 5797 5786 16615 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23524 5786 5837 16615 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23525 5686 5743 16616 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23526 5743 5592 16616 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23527 5592 5579 16616 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23528 5579 5686 16616 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23529 5597 5772 16617 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23530 5772 5783 16617 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23531 5783 5603 16617 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23532 5603 5597 16617 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23533 5894 5993 16618 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23534 5993 6009 16618 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23535 6009 5915 16618 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23536 5915 5894 16618 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23537 6104 6273 16619 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23538 6273 6293 16619 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23539 6293 6144 16619 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23540 6144 6104 16619 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23541 6366 6439 16620 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23542 6439 6486 16620 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23543 6486 6401 16620 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23544 6401 6366 16620 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23545 6510 6466 16621 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23546 6466 6454 16621 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23547 6454 6497 16621 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23548 6497 6510 16621 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23549 6544 6535 16622 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23550 6535 6448 16622 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23551 6448 6443 16622 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23552 6443 6544 16622 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23553 6500 6411 16623 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23554 6411 6355 16623 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23555 6355 6424 16623 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23556 6424 6500 16623 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23557 6319 6283 16624 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23558 6283 6181 16624 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23559 6181 6193 16624 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23560 6193 6319 16624 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23561 6129 6124 16625 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23562 6124 6061 16625 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23563 6061 6078 16625 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23564 6078 6129 16625 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23565 6015 5998 16626 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23566 5998 5904 16626 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23567 5904 5926 16626 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23568 5926 6015 16626 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23569 5798 5779 16627 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23570 5779 5602 16627 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23571 5602 5606 16627 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23572 5606 5798 16627 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23573 6277 6294 16628 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23574 6294 6291 16628 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23575 6291 6267 16628 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23576 6267 6277 16628 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23577 6174 6204 16629 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23578 6204 6212 16629 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23579 6212 6118 16629 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23580 6118 6174 16629 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23581 6094 6068 16630 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23582 6068 5965 16630 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23583 5965 6030 16630 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23584 6030 6094 16630 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23585 5906 6040 16631 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23586 6040 6004 16631 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23587 6004 5866 16631 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23588 5866 5906 16631 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23589 5712 5626 16632 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23590 5626 5752 16632 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23591 5752 5863 16632 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23592 5863 5712 16632 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23593 6432 6416 16633 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23594 6416 6203 16633 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23595 6203 6241 16633 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23596 6241 6432 16633 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23597 6388 6371 16634 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23598 6371 6178 16634 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23599 6178 6184 16634 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23600 6184 6388 16634 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23601 6088 6073 16635 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23602 6073 6006 16635 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23603 6006 6008 16635 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23604 6008 6088 16635 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23605 6065 6056 16636 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23606 6056 5969 16636 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23607 5969 5996 16636 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23608 5996 6065 16636 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23609 6037 6010 16637 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23610 6010 5921 16637 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23611 5921 5948 16637 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23612 5948 6037 16637 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23613 5931 5922 16638 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23614 5922 5849 16638 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23615 5849 5861 16638 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23616 5861 5931 16638 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23617 5903 5880 16639 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23618 5880 5808 16639 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23619 5808 5831 16639 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23620 5831 5903 16639 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23621 5869 5859 16640 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23622 5859 5790 16640 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23623 5790 5791 16640 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23624 5791 5869 16640 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23625 5742 5721 16641 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23626 5721 5586 16641 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23627 5586 5591 16641 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23628 5591 5742 16641 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23629 5706 5695 16642 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23630 5695 5581 16642 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23631 5581 5585 16642 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23632 5585 5706 16642 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23633 5690 5698 16643 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23634 5698 5582 16643 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23635 5582 5580 16643 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23636 5580 5690 16643 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23637 8181 8235 16644 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23638 8235 8217 16644 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23639 8217 8172 16644 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23640 8172 8181 16644 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23641 8204 8196 16645 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23642 8196 8149 16645 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23643 8149 8165 16645 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23644 8165 8204 16645 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23645 8135 8106 16646 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23646 8106 8083 16646 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23647 8083 8127 16646 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23648 8127 8135 16646 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23649 8150 8113 16647 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23650 8113 8176 16647 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23651 8176 8194 16647 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23652 8194 8150 16647 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23653 8243 8223 16648 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23654 8223 8271 16648 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23655 8271 8300 16648 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23656 8300 8243 16648 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23657 8332 8295 16649 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23658 8295 8293 16649 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23659 8293 8336 16649 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23660 8336 8332 16649 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23661 8314 8269 16650 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23662 8269 8222 16650 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23663 8222 8266 16650 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23664 8266 8314 16650 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23665 8178 8121 16651 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23666 8121 7939 16651 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23667 7939 8003 16651 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23668 8003 8178 16651 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23669 7889 7838 16652 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23670 7838 7754 16652 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23671 7754 7801 16652 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23672 7801 7889 16652 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23673 7742 7704 16653 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23674 7704 7668 16653 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23675 7668 7729 16653 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23676 7729 7742 16653 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23677 7826 7942 16654 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23678 7942 7910 16654 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23679 7910 7822 16654 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23680 7822 7826 16654 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23681 7868 7958 16655 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23682 7958 8125 16655 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23683 8125 7973 16655 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23684 7973 7868 16655 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23685 8128 8236 16656 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23686 8236 8330 16656 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23687 8330 8247 16656 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23688 8247 8128 16656 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23689 8326 8397 16657 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23690 8397 8431 16657 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23691 8431 8367 16657 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23692 8367 8326 16657 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23693 8381 8430 16658 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23694 8430 8395 16658 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23695 8395 8363 16658 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23696 8363 8381 16658 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23697 8327 8351 16659 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23698 8351 8287 16659 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23699 8287 8262 16659 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23700 8262 8327 16659 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23701 8214 8237 16660 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23702 8237 8191 16660 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23703 8191 8171 16660 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23704 8171 8214 16660 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23705 8159 8173 16661 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23706 8173 8193 16661 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23707 8193 8168 16661 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23708 8168 8159 16661 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23709 8200 8232 16662 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23710 8232 8286 16662 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23711 8286 8255 16662 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23712 8255 8200 16662 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23713 8371 8404 16663 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23714 8404 8342 16663 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23715 8342 8315 16663 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23716 8315 8371 16663 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23717 8261 8285 16664 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23718 8285 8245 16664 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23719 8245 8215 16664 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23720 8215 8261 16664 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23721 8199 8233 16665 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23722 8233 8244 16665 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23723 8244 8216 16665 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23724 8216 8199 16665 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23725 8254 8280 16666 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23726 8280 8354 16666 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23727 8354 8319 16666 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23728 8319 8254 16666 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23729 8382 8421 16667 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23730 8421 8497 16667 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23731 8497 8436 16667 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23732 8436 8382 16667 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23733 8207 8162 16668 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23734 8162 8107 16668 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23735 8107 8158 16668 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23736 8158 8207 16668 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23737 8097 8108 16669 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23738 8108 8051 16669 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23739 8051 8058 16669 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23740 8058 8097 16669 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23741 8082 8060 16670 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23742 8060 8134 16670 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23743 8134 8160 16670 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23744 8160 8082 16670 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23745 8206 8188 16671 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23746 8188 8240 16671 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23747 8240 8249 16671 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23748 8249 8206 16671 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23749 8267 8251 16672 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23750 8251 8234 16672 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23751 8234 8260 16672 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23752 8260 8267 16672 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23753 8227 8184 16673 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23754 8184 8093 16673 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23755 8093 8169 16673 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23756 8169 8227 16673 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23757 8027 7949 16674 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23758 7949 7803 16674 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23759 7803 7872 16674 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23760 7872 8027 16674 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23761 7769 7684 16675 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23762 7684 7613 16675 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23763 7613 7685 16675 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23764 7685 7769 16675 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23765 7634 7536 16676 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23766 7536 7481 16676 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23767 7481 7588 16676 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23768 7588 7634 16676 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23769 7233 7370 16677 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23770 7370 7451 16677 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23771 7451 7355 16677 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23772 7355 7233 16677 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23773 7457 7518 16678 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23774 7518 7621 16678 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23775 7621 7556 16678 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23776 7556 7457 16678 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23777 7689 7736 16679 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23778 7736 7892 16679 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23779 7892 7853 16679 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23780 7853 7689 16679 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23781 7968 8017 16680 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23782 8017 8138 16680 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23783 8138 8061 16680 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23784 8061 7968 16680 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23785 8139 8195 16681 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23786 8195 8218 16681 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23787 8218 8163 16681 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23788 8163 8139 16681 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23789 8048 8049 16682 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23790 8049 8095 16682 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23791 8095 8050 16682 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23792 8050 8048 16682 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23793 8031 8088 16683 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23794 8088 8040 16683 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23795 8040 7985 16683 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23796 7985 8031 16683 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23797 8143 8175 16684 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23798 8175 8126 16684 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23799 8126 8089 16684 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23800 8089 8143 16684 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23801 8198 8209 16685 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23802 8209 8174 16685 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23803 8174 8153 16685 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23804 8153 8198 16685 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23805 8230 8257 16686 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23806 8257 8253 16686 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23807 8253 8210 16686 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23808 8210 8230 16686 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23809 8294 8341 16687 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23810 8341 8377 16687 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23811 8377 8313 16687 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23812 8313 8294 16687 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23813 5633 5641 16688 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23814 5641 5932 16688 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23815 5932 5916 16688 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23816 5916 5633 16688 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23817 6307 6362 16689 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23818 6362 6859 16689 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23819 6859 6771 16689 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23820 6771 6307 16689 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23821 7025 7115 16690 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23822 7115 7249 16690 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23823 7249 7148 16690 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23824 7148 7025 16690 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23825 7313 7387 16691 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23826 7387 7508 16691 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23827 7508 7472 16691 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23828 7472 7313 16691 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23829 7636 7659 16692 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23830 7659 7835 16692 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23831 7835 7811 16692 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23832 7811 7636 16692 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23833 7919 8026 16693 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23834 8026 8039 16693 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23835 8039 7907 16693 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23836 7907 7919 16693 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23837 7876 7957 16694 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23838 7957 7924 16694 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23839 7924 7860 16694 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23840 7860 7876 16694 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23841 5651 5662 16695 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23842 5662 5977 16695 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23843 5977 5953 16695 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23844 5953 5651 16695 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23845 5658 5639 16696 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23846 5639 5929 16696 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23847 5929 5968 16696 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23848 5968 5658 16696 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23849 6287 6326 16697 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23850 6326 6703 16697 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23851 6703 6655 16697 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23852 6655 6287 16697 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23853 6333 6302 16698 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23854 6302 6742 16698 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23855 6742 6727 16698 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23856 6727 6333 16698 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23857 6922 6969 16699 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23858 6969 7075 16699 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23859 7075 7011 16699 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23860 7011 6922 16699 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23861 6923 7031 16700 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23862 7031 7189 16700 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23863 7189 7076 16700 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23864 7076 6923 16700 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23865 7134 7212 16701 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23866 7212 7411 16701 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23867 7411 7324 16701 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23868 7324 7134 16701 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23869 7445 7555 16702 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23870 7555 7706 16702 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23871 7706 7509 16702 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23872 7509 7445 16702 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23873 7176 7364 16703 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23874 7364 7347 16703 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23875 7347 7180 16703 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23876 7180 7176 16703 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23877 7538 7767 16704 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23878 7767 7737 16704 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23879 7737 7512 16704 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23880 7512 7538 16704 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23881 7144 7327 16705 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23882 7327 7312 16705 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23883 7312 7047 16705 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23884 7047 7144 16705 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23885 7502 7720 16706 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23886 7720 7717 16706 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23887 7717 7505 16706 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23888 7505 7502 16706 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23889 6712 6299 16707 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23890 6299 6304 16707 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23891 6304 6744 16707 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23892 6744 6712 16707 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23893 6776 6320 16708 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23894 6320 6353 16708 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23895 6353 6843 16708 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23896 6843 6776 16708 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23897 5950 5664 16709 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23898 5664 5661 16709 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23899 5661 5941 16709 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23900 5941 5950 16709 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23901 5935 5659 16710 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23902 5659 5660 16710 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23903 5660 5938 16710 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23904 5938 5935 16710 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23905 5587 5583 16711 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23906 5583 5701 16711 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23907 5701 5728 16711 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23908 5728 5587 16711 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23909 5578 5566 16712 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23910 5566 5655 16712 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23911 5655 5681 16712 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23912 5681 5578 16712 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23913 5784 5765 16713 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23914 5765 5896 16713 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23915 5896 5893 16713 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23916 5893 5784 16713 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23917 5708 5828 16714 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23918 5828 5954 16714 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23919 5954 5945 16714 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23920 5945 5708 16714 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23921 5899 5995 16715 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23922 5995 6159 16715 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23923 6159 6028 16715 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23924 6028 5899 16715 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23925 6047 6071 16716 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23926 6071 6310 16716 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23927 6310 6276 16716 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23928 6276 6047 16716 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23929 6196 6402 16717 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23930 6402 6653 16717 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23931 6653 6489 16717 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23932 6489 6196 16717 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23933 6546 6586 16718 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23934 6586 6750 16718 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23935 6750 6737 16718 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23936 6737 6546 16718 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23937 6451 6598 16719 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23938 6598 6853 16719 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23939 6853 6860 16719 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23940 6860 6451 16719 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23941 6719 6834 16720 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23942 6834 6997 16720 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23943 6997 6902 16720 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23944 6902 6719 16720 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23945 6907 6924 16721 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23946 6924 7083 16721 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23947 7083 7052 16721 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23948 7052 6907 16721 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23949 7040 7143 16722 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23950 7143 7293 16722 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23951 7293 7171 16722 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23952 7171 7040 16722 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23953 7202 7287 16723 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23954 7287 7454 16723 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23955 7454 7377 16723 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23956 7377 7202 16723 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23957 7646 7896 16724 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23958 7896 7857 16724 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23959 7857 7567 16724 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23960 7567 7646 16724 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23961 8155 8301 16725 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23962 8301 8312 16725 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23963 8312 8140 16725 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23964 8140 8155 16725 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23965 7490 7805 16726 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23966 7805 7745 16726 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23967 7745 7421 16726 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23968 7421 7490 16726 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23969 8117 8337 16727 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23970 8337 8369 16727 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23971 8369 8094 16727 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23972 8094 8117 16727 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23973 7358 7694 16728 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23974 7694 7653 16728 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23975 7653 7297 16728 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23976 7297 7358 16728 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23977 8057 8386 16729 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23978 8386 8379 16729 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23979 8379 8035 16729 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23980 8035 8057 16729 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23981 7210 7617 16730 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23982 7617 7561 16730 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23983 7561 7157 16730 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23984 7157 7210 16730 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23985 7998 8368 16731 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23986 8368 8350 16731 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23987 8350 7956 16731 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23988 7956 7998 16731 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23989 7103 7523 16732 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23990 7523 7497 16732 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23991 7497 7050 16732 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23992 7050 7103 16732 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23993 7916 8318 16733 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23994 8318 8272 16733 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23995 8272 7890 16733 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23996 7890 7916 16733 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23997 6810 7335 16734 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23998 7335 7016 16734 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 23999 7016 6236 16734 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24000 6236 6810 16734 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24001 7739 8118 16735 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24002 8118 7813 16735 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24003 7813 7496 16735 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24004 7496 7739 16735 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24005 5927 6805 16736 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24006 6805 6710 16736 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24007 6710 5881 16736 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24008 5881 5927 16736 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24009 7300 7541 16737 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24010 7541 7294 16737 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24011 7294 7088 16737 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24012 7088 7300 16737 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24013 8408 8460 16738 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24014 8460 8462 16738 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24015 8462 8418 16738 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24016 8418 8408 16738 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24017 8449 8508 16739 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24018 8508 8628 16739 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24019 8628 8532 16739 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24020 8532 8449 16739 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24021 8588 8727 16740 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24022 8727 8770 16740 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24023 8770 8598 16740 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24024 8598 8588 16740 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24025 8599 8792 16741 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24026 8792 8800 16741 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24027 8800 8589 16741 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24028 8589 8599 16741 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24029 8559 8766 16742 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24030 8766 8677 16742 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24031 8677 8499 16742 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24032 8499 8559 16742 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24033 8375 8577 16743 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24034 8577 8453 16743 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24035 8453 8180 16743 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24036 8180 8375 16743 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24037 7877 8321 16744 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24038 8321 8132 16744 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24039 8132 7600 16744 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24040 7600 7877 16744 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24041 6690 6799 16745 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24042 6799 7245 16745 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24043 7245 7133 16745 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24044 7133 6690 16745 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24045 7014 7326 16746 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24046 7326 7542 16746 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24047 7542 7390 16746 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24048 7390 7014 16746 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24049 7506 7589 16747 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24050 7589 7851 16747 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24051 7851 7793 16747 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24052 7793 7506 16747 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24053 7667 7757 16748 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24054 7757 7946 16748 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24055 7946 7899 16748 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24056 7899 7667 16748 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24057 7991 8028 16749 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24058 8028 8005 16749 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24059 8005 8030 16749 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24060 8030 7991 16749 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24061 8055 8098 16750 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24062 8098 8130 16750 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24063 8130 8038 16750 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24064 8038 8055 16750 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24065 8067 8192 16751 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24066 8192 8311 16751 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24067 8311 8228 16751 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24068 8228 8067 16751 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24069 8323 8411 16752 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24070 8411 8480 16752 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24071 8480 8412 16752 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24072 8412 8323 16752 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24073 8465 8551 16753 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24074 8551 8623 16753 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24075 8623 8511 16753 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24076 8511 8465 16753 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24077 8516 8627 16754 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24078 8627 8562 16754 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24079 8562 8483 16754 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24080 8483 8516 16754 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24081 8439 8498 16755 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24082 8498 8442 16755 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24083 8442 8387 16755 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24084 8387 8439 16755 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24085 8340 8415 16756 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24086 8415 8384 16756 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24087 8384 8299 16756 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24088 8299 8340 16756 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24089 8283 8370 16757 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24090 8370 8380 16757 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24091 8380 8298 16757 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24092 8298 8283 16757 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24093 8334 8405 16758 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24094 8405 8432 16758 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24095 8432 8392 16758 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24096 8392 8334 16758 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24097 8450 8490 16759 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24098 8490 8595 16759 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24099 8595 8554 16759 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24100 8554 8450 16759 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24101 8586 8782 16760 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24102 8782 8833 16760 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24103 8833 8639 16760 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24104 8639 8586 16760 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24105 8669 8624 16761 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24106 8624 8570 16761 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24107 8570 8600 16761 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24108 8600 8669 16761 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24109 8784 8901 16762 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24110 8901 8814 16762 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24111 8814 8709 16762 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24112 8709 8784 16762 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24113 8888 8900 16763 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24114 8900 9052 16763 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24115 9052 9042 16763 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24116 9042 8888 16763 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24117 9019 8989 16764 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24118 8989 8827 16764 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24119 8827 8868 16764 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24120 8868 9019 16764 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24121 8579 8689 16765 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24122 8689 8655 16765 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24123 8655 8546 16765 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24124 8546 8579 16765 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24125 8488 8512 16766 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24126 8512 8621 16766 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24127 8621 8587 16766 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24128 8587 8488 16766 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24129 8706 8777 16767 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24130 8777 8937 16767 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24131 8937 8844 16767 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24132 8844 8706 16767 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24133 8801 8796 16768 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24134 8796 8653 16768 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24135 8653 8667 16768 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24136 8667 8801 16768 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24137 8468 8567 16769 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24138 8567 8561 16769 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24139 8561 8471 16769 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24140 8471 8468 16769 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24141 9037 8975 16770 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24142 8975 8939 16770 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24143 8939 9022 16770 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24144 9022 9037 16770 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24145 9021 8920 16771 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24146 8920 8926 16771 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24147 8926 9031 16771 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24148 9031 9021 16771 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24149 9076 8968 16772 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24150 8968 9039 16772 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24151 9039 9151 16772 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24152 9151 9076 16772 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24153 9208 9124 16773 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24154 9124 9160 16773 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24155 9160 9249 16773 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24156 9249 9208 16773 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24157 9269 9192 16774 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24158 9192 9217 16774 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24159 9217 9286 16774 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24160 9286 9269 16774 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24161 9295 9218 16775 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24162 9218 9198 16775 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24163 9198 9305 16775 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24164 9305 9295 16775 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24165 9311 9230 16776 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24166 9230 9270 16776 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24167 9270 9321 16776 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24168 9321 9311 16776 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24169 9322 9274 16777 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24170 9274 9256 16777 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24171 9256 9312 16777 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24172 9312 9322 16777 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24173 8838 8935 16778 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24174 8935 8938 16778 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24175 8938 8876 16778 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24176 8876 8838 16778 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24177 8825 8817 16779 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24178 8817 8928 16779 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24179 8928 8934 16779 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24180 8934 8825 16779 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24181 8834 8913 16780 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24182 8913 9012 16780 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24183 9012 8959 16780 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24184 8959 8834 16780 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24185 8966 9005 16781 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24186 9005 9139 16781 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24187 9139 9078 16781 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24188 9078 8966 16781 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24189 9120 9255 16782 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24190 9255 9200 16782 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24191 9200 9056 16782 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24192 9056 9120 16782 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24193 9287 9170 16783 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24194 9170 9199 16783 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24195 9199 9289 16783 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24196 9289 9287 16783 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24197 8863 9032 16784 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24198 9032 9070 16784 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24199 9070 8881 16784 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24200 8881 8863 16784 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24201 8882 9086 16785 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24202 9086 9067 16785 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24203 9067 8873 16785 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24204 8873 8882 16785 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24205 9220 9222 16786 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24206 9222 9285 16786 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24207 9285 9288 16786 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24208 9288 9220 16786 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24209 8972 9008 16787 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24210 9008 8931 16787 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24211 8931 8886 16787 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24212 8886 8972 16787 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24213 9138 9188 16788 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24214 9188 9239 16788 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24215 9239 9183 16788 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24216 9183 9138 16788 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24217 9187 9196 16789 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24218 9196 9263 16789 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24219 9263 9267 16789 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24220 9267 9187 16789 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24221 9276 9282 16790 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24222 9282 9215 16790 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24223 9215 9190 16790 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24224 9190 9276 16790 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24225 9207 9229 16791 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24226 9229 9194 16791 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24227 9194 9177 16791 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24228 9177 9207 16791 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24229 8981 9132 16792 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24230 9132 9121 16792 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24231 9121 8998 16792 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24232 8998 8981 16792 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24233 9107 9143 16793 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24234 9143 9169 16793 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24235 9169 9140 16793 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24236 9140 9107 16793 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24237 9163 9191 16794 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24238 9191 9203 16794 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24239 9203 9152 16794 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24240 9152 9163 16794 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24241 9159 9223 16795 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24242 9223 9240 16795 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24243 9240 9185 16795 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24244 9185 9159 16795 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24245 9178 9233 16796 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24246 9233 9193 16796 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24247 9193 9142 16796 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24248 9142 9178 16796 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24249 9114 9154 16797 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24250 9154 9129 16797 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24251 9129 9082 16797 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24252 9082 9114 16797 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24253 9044 9049 16798 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24254 9049 9058 16798 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24255 9058 9089 16798 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24256 9089 9044 16798 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24257 9002 8843 16799 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24258 8843 8842 16799 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24259 8842 8983 16799 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24260 8983 9002 16799 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24261 8866 8892 16800 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24262 8892 8984 16800 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24263 8984 8978 16800 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24264 8978 8866 16800 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24265 9028 9035 16801 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24266 9035 9065 16801 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24267 9065 9053 16801 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24268 9053 9028 16801 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24269 9105 9133 16802 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24270 9133 9189 16802 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24271 9189 9162 16802 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24272 9162 9105 16802 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24273 9226 9242 16803 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24274 9242 9266 16803 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24275 9266 9262 16803 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24276 9262 9226 16803 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24277 9279 9284 16804 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24278 9284 9301 16804 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24279 9301 9292 16804 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24280 9292 9279 16804 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24281 9303 9318 16805 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24282 9318 9326 16805 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24283 9326 9310 16805 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24284 9310 9303 16805 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24285 9315 9331 16806 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24286 9331 9330 16806 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24287 9330 9316 16806 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24288 9316 9315 16806 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24289 9320 9329 16807 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24290 9329 9328 16807 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24291 9328 9323 16807 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24292 9323 9320 16807 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24293 9314 9324 16808 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24294 9324 9299 16808 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24295 9299 9300 16808 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24296 9300 9314 16808 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24297 9281 9278 16809 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24298 9278 9259 16809 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24299 9259 9258 16809 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24300 9258 9281 16809 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24301 9149 9206 16810 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24302 9206 9219 16810 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24303 9219 9153 16810 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24304 9153 9149 16810 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24305 9090 9001 16811 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24306 9001 8999 16811 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24307 8999 9074 16811 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24308 9074 9090 16811 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24309 9298 9224 16812 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24310 9224 9176 16812 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24311 9176 9275 16812 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24312 9275 9298 16812 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24313 9210 9252 16813 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24314 9252 9135 16813 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24315 9135 9080 16813 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24316 9080 9210 16813 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24317 9119 9161 16814 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24318 9161 9033 16814 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24319 9033 9006 16814 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24320 9006 9119 16814 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24321 3072 3252 16815 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24322 3252 3089 16815 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24323 3089 2883 16815 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24324 2883 3072 16815 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24325 2341 2312 16816 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24326 2312 2078 16816 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24327 2078 2118 16816 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24328 2118 2341 16816 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24329 2276 2242 16817 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24330 2242 2027 16817 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24331 2027 2052 16817 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24332 2052 2276 16817 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24333 2156 2113 16818 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24334 2113 1873 16818 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24335 1873 1944 16818 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24336 1944 2156 16818 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24337 2122 2142 16819 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24338 2142 2008 16819 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24339 2008 1915 16819 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24340 1915 2122 16819 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24341 2698 2637 16820 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24342 2637 2558 16820 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24343 2558 2611 16820 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24344 2611 2698 16820 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24345 2770 2737 16821 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24346 2737 2634 16821 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24347 2634 2654 16821 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24348 2654 2770 16821 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24349 2782 2778 16822 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24350 2778 2670 16822 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24351 2670 2677 16822 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24352 2677 2782 16822 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24353 2717 2771 16823 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24354 2771 2656 16823 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24355 2656 2624 16823 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24356 2624 2717 16823 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24357 2194 2262 16824 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24358 2262 2196 16824 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24359 2196 2084 16824 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24360 2084 2194 16824 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24361 2560 2653 16825 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24362 2653 2590 16825 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24363 2590 2536 16825 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24364 2536 2560 16825 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24365 2359 2357 16826 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24366 2357 2140 16826 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24367 2140 2155 16826 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24368 2155 2359 16826 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24369 2780 2843 16827 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24370 2843 2758 16827 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24371 2758 2708 16827 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24372 2708 2780 16827 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24373 2387 2379 16828 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24374 2379 2218 16828 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24375 2218 2220 16828 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24376 2220 2387 16828 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24377 2375 2364 16829 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24378 2364 2175 16829 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24379 2175 2213 16829 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24380 2213 2375 16829 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24381 2274 2137 16830 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24382 2137 2093 16830 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24383 2093 2138 16830 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24384 2138 2274 16830 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24385 2328 2294 16831 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24386 2294 2261 16831 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24387 2261 2292 16831 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24388 2292 2328 16831 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24389 2411 2382 16832 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24390 2382 2334 16832 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24391 2334 2373 16832 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24392 2373 2411 16832 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24393 2473 2447 16833 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24394 2447 2416 16833 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24395 2416 2446 16833 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24396 2446 2473 16833 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24397 2419 2434 16834 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24398 2434 2362 16834 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24399 2362 2327 16834 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24400 2327 2419 16834 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24401 2247 2281 16835 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24402 2281 2231 16835 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24403 2231 2190 16835 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24404 2190 2247 16835 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24405 2185 2227 16836 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24406 2227 2271 16836 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24407 2271 2237 16836 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24408 2237 2185 16836 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24409 2280 2319 16837 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24410 2319 2370 16837 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24411 2370 2330 16837 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24412 2330 2280 16837 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24413 2203 2161 16838 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24414 2161 2286 16838 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24415 2286 2326 16838 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24416 2326 2203 16838 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24417 2173 2150 16839 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24418 2150 2123 16839 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24419 2123 2148 16839 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24420 2148 2173 16839 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24421 2221 2202 16840 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24422 2202 2172 16840 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24423 2172 2208 16840 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24424 2208 2221 16840 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24425 2649 2638 16841 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24426 2638 2400 16841 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24427 2400 2417 16841 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24428 2417 2649 16841 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24429 3572 3570 16842 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24430 3570 3042 16842 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24431 3042 3048 16842 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24432 3048 3572 16842 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24433 3902 3901 16843 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24434 3901 4038 16843 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24435 4038 4040 16843 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24436 4040 3902 16843 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24437 4401 4399 16844 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24438 4399 5177 16844 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24439 5177 5178 16844 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24440 5178 4401 16844 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24441 2257 2289 16845 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24442 2289 2298 16845 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24443 2298 2277 16845 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24444 2277 2257 16845 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24445 2464 2488 16846 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24446 2488 2494 16846 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24447 2494 2475 16846 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24448 2475 2464 16846 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24449 2369 2395 16847 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24450 2395 2402 16847 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24451 2402 2401 16847 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24452 2401 2369 16847 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24453 2332 2094 16848 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24454 2094 2100 16848 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24455 2100 2335 16848 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24456 2335 2332 16848 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24457 2331 2097 16849 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24458 2097 2089 16849 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24459 2089 2316 16849 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24460 2316 2331 16849 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24461 3571 3866 16850 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24462 3866 3864 16850 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24463 3864 3576 16850 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24464 3576 3571 16850 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24465 4512 4152 16851 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24466 4152 4156 16851 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24467 4156 4523 16851 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24468 4523 4512 16851 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24469 4537 4165 16852 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24470 4165 4173 16852 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24471 4173 4540 16852 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24472 4540 4537 16852 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24473 3871 3574 16853 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24474 3574 3580 16853 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24475 3580 3884 16853 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24476 3884 3871 16853 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24477 4987 4996 16854 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24478 4996 4754 16854 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24479 4754 4746 16854 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24480 4746 4987 16854 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24481 5419 5421 16855 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24482 5421 5199 16855 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24483 5199 5195 16855 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24484 5195 5419 16855 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24485 3173 3030 16856 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24486 3030 3064 16856 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24487 3064 3197 16856 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24488 3197 3173 16856 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24489 3111 2970 16857 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24490 2970 3003 16857 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24491 3003 3143 16857 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24492 3143 3111 16857 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24493 2955 2837 16858 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24494 2837 2901 16858 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24495 2901 3056 16858 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24496 3056 2955 16858 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24497 5382 5379 16859 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24498 5379 5087 16859 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24499 5087 5094 16859 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24500 5094 5382 16859 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24501 4311 4303 16860 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24502 4303 4120 16860 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24503 4120 4125 16860 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24504 4125 4311 16860 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24505 3965 3959 16861 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24506 3959 3801 16861 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24507 3801 3822 16861 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24508 3822 3965 16861 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24509 3416 3451 16862 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24510 3451 3379 16862 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24511 3379 3336 16862 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24512 3336 3416 16862 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24513 3603 3626 16863 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24514 3626 3541 16863 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24515 3541 3521 16863 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24516 3521 3603 16863 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24517 3939 3945 16864 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24518 3945 3753 16864 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24519 3753 3735 16864 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24520 3735 3939 16864 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24521 4349 4356 16865 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24522 4356 4132 16865 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24523 4132 4129 16865 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24524 4129 4349 16865 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24525 4920 4934 16866 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24526 4934 4662 16866 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24527 4662 4652 16866 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24528 4652 4920 16866 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24529 5412 5414 16867 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24530 5414 5170 16867 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24531 5170 5166 16867 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24532 5166 5412 16867 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24533 4531 4824 16868 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24534 4824 4817 16868 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24535 4817 4518 16868 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24536 4518 4531 16868 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24537 3561 3670 16869 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24538 3670 3662 16869 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24539 3662 3567 16869 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24540 3567 3561 16869 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24541 3419 3337 16870 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24542 3337 3377 16870 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24543 3377 3445 16870 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24544 3445 3419 16870 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24545 4337 4344 16871 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24546 4344 4469 16871 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24547 4469 4463 16871 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24548 4463 4337 16871 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24549 4799 4800 16872 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24550 4800 4663 16872 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24551 4663 4677 16872 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24552 4677 4799 16872 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24553 3747 3566 16873 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24554 3566 3590 16873 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24555 3590 3762 16873 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24556 3762 3747 16873 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24557 4180 3966 16874 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24558 3966 3989 16874 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24559 3989 4190 16874 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24560 4190 4180 16874 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24561 4549 4541 16875 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24562 4541 4582 16875 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24563 4582 4594 16875 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24564 4594 4549 16875 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24565 4479 4476 16876 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24566 4476 4499 16876 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24567 4499 4503 16876 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24568 4503 4479 16876 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24569 4511 4601 16877 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24570 4601 4604 16877 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24571 4604 4513 16877 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24572 4513 4511 16877 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24573 4826 4706 16878 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24574 4706 4715 16878 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24575 4715 4847 16878 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24576 4847 4826 16878 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24577 4678 4629 16879 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24578 4629 4651 16879 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24579 4651 4689 16879 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24580 4689 4678 16879 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24581 4750 4709 16880 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24582 4709 4659 16880 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24583 4659 4694 16880 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24584 4694 4750 16880 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24585 4986 4963 16881 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24586 4963 4825 16881 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24587 4825 4865 16881 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24588 4865 4986 16881 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24589 5157 5155 16882 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24590 5155 5074 16882 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24591 5074 5091 16882 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24592 5091 5157 16882 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24593 5261 5282 16883 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24594 5282 5209 16883 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24595 5209 5198 16883 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24596 5198 5261 16883 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24597 5269 5302 16884 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24598 5302 5310 16884 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24599 5310 5279 16884 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24600 5279 5269 16884 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24601 4316 4163 16885 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24602 4163 4126 16885 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24603 4126 4305 16885 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24604 4305 4316 16885 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24605 4411 4304 16886 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24606 4304 4229 16886 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24607 4229 4347 16886 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24608 4347 4411 16886 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24609 4481 4440 16887 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24610 4440 4376 16887 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24611 4376 4448 16887 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24612 4448 4481 16887 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24613 4488 4465 16888 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24614 4465 4473 16888 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24615 4473 4497 16888 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24616 4497 4488 16888 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24617 4613 4590 16889 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24618 4590 4500 16889 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24619 4500 4530 16889 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24620 4530 4613 16889 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24621 4878 4857 16890 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24622 4857 4711 16890 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24623 4711 4732 16890 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24624 4732 4878 16890 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24625 4964 4948 16891 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24626 4948 4929 16891 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24627 4929 4941 16891 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24628 4941 4964 16891 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24629 5118 5114 16892 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24630 5114 5011 16892 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24631 5011 5019 16892 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24632 5019 5118 16892 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24633 5439 5436 16893 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24634 5436 5239 16893 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24635 5239 5245 16893 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24636 5245 5439 16893 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24637 4998 5018 16894 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24638 5018 4940 16894 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24639 4940 4932 16894 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24640 4932 4998 16894 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24641 5161 5172 16895 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24642 5172 5101 16895 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24643 5101 5076 16895 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24644 5076 5161 16895 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24645 5450 5451 16896 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24646 5451 5283 16896 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24647 5283 5275 16896 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24648 5275 5450 16896 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24649 4605 4602 16897 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24650 4602 4561 16897 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24651 4561 4534 16897 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24652 4534 4605 16897 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24653 5167 5111 16898 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24654 5111 5134 16898 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24655 5134 5175 16898 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24656 5175 5167 16898 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24657 4736 4764 16899 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24658 4764 4835 16899 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24659 4835 4782 16899 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24660 4782 4736 16899 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24661 4925 5044 16900 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24662 5044 5014 16900 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24663 5014 4890 16900 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24664 4890 4925 16900 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24665 5028 5004 16901 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24666 5004 4971 16901 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24667 4971 4991 16901 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24668 4991 5028 16901 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24669 4957 4942 16902 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24670 4942 4912 16902 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24671 4912 4928 16902 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24672 4928 4957 16902 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24673 3123 3224 16903 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24674 3224 3227 16903 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24675 3227 3119 16903 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24676 3119 3123 16903 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24677 3114 3222 16904 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24678 3222 3216 16904 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24679 3216 3102 16904 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24680 3102 3114 16904 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24681 3347 3476 16905 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24682 3476 3475 16905 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24683 3475 3349 16905 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24684 3349 3347 16905 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24685 3343 3472 16906 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24686 3472 3467 16906 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24687 3467 3338 16906 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24688 3338 3343 16906 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24689 3619 3820 16907 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24690 3820 3828 16907 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24691 3828 3616 16907 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24692 3616 3619 16907 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24693 3614 3823 16908 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24694 3823 3818 16908 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24695 3818 3609 16908 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24696 3609 3614 16908 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24697 3978 4106 16909 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24698 4106 4112 16909 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24699 4112 3985 16909 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24700 3985 3978 16909 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24701 3987 4116 16910 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24702 4116 4117 16910 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24703 4117 3982 16910 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24704 3982 3987 16910 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24705 4245 4368 16911 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24706 4368 4371 16911 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24707 4371 4250 16911 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24708 4250 4245 16911 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24709 4251 4375 16912 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24710 4375 4382 16912 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24711 4382 4253 16912 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24712 4253 4251 16912 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24713 4519 4701 16913 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24714 4701 4713 16913 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24715 4713 4528 16913 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24716 4528 4519 16913 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24717 4538 4724 16914 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24718 4724 4730 16914 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24719 4730 4542 16914 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24720 4542 4538 16914 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24721 3797 3807 16915 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24722 3807 3617 16915 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24723 3617 3610 16915 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24724 3610 3797 16915 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24725 3357 3380 16916 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24726 3380 3504 16916 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24727 3504 3488 16916 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24728 3488 3357 16916 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24729 3196 3249 16917 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24730 3249 3293 16917 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24731 3293 3261 16917 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24732 3261 3196 16917 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24733 3158 3205 16918 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24734 3205 3217 16918 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24735 3217 3163 16918 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24736 3163 3158 16918 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24737 3240 3313 16919 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24738 3313 3237 16919 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24739 3237 3183 16919 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24740 3183 3240 16919 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24741 3485 3531 16920 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24742 3531 3411 16920 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24743 3411 3339 16920 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24744 3339 3485 16920 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24745 3932 3963 16921 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24746 3963 3704 16921 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24747 3704 3660 16921 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24748 3660 3932 16921 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24749 4471 4450 16922 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24750 4450 4198 16922 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24751 4198 4189 16922 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24752 4189 4471 16922 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24753 4721 4687 16923 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24754 4687 4675 16923 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24755 4675 4705 16923 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24756 4705 4721 16923 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24757 4456 4438 16924 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24758 4438 4606 16924 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24759 4606 4644 16924 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24760 4644 4456 16924 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24761 4226 4218 16925 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24762 4218 4321 16925 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24763 4321 4334 16925 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24764 4334 4226 16925 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24765 3951 3944 16926 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24766 3944 4079 16926 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24767 4079 4081 16926 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24768 4081 3951 16926 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24769 3984 3981 16927 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24770 3981 3723 16927 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24771 3723 3726 16927 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24772 3726 3984 16927 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24773 3564 3562 16928 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24774 3562 3455 16928 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24775 3455 3461 16928 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24776 3461 3564 16928 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24777 3370 3363 16929 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24778 3363 3281 16929 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24779 3281 3283 16929 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24780 3283 3370 16929 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24781 3245 3244 16930 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24782 3244 3262 16930 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24783 3262 3263 16930 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24784 3263 3245 16930 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24785 3287 3282 16931 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24786 3282 3314 16931 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24787 3314 3318 16931 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24788 3318 3287 16931 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24789 3402 3398 16932 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24790 3398 3520 16932 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24791 3520 3524 16932 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24792 3524 3402 16932 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24793 3644 3639 16933 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24794 3639 3782 16933 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24795 3782 3791 16933 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24796 3791 3644 16933 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24797 3942 3940 16934 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24798 3940 4072 16934 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24799 4072 4073 16934 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24800 4073 3942 16934 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24801 4205 4204 16935 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24802 4204 4312 16935 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24803 4312 4313 16935 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24804 4313 4205 16935 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24805 4418 4417 16936 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24806 4417 4567 16936 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24807 4567 4568 16936 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24808 4568 4418 16936 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24809 4657 4656 16937 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24810 4656 4632 16937 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24811 4632 4633 16937 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24812 4633 4657 16937 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24813 4435 4434 16938 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24814 4434 4206 16938 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24815 4206 4207 16938 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24816 4207 4435 16938 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24817 3160 3238 16939 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24818 3238 3231 16939 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24819 3231 3132 16939 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24820 3132 3160 16939 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24821 4486 4175 16940 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24822 4175 4157 16940 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24823 4157 4495 16940 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24824 4495 4486 16940 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24825 3754 3972 16941 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24826 3972 4149 16941 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24827 4149 3627 16941 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24828 3627 3754 16941 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24829 4109 4057 16942 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24830 4057 4025 16942 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24831 4025 4276 16942 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24832 4276 4109 16942 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24833 3207 3258 16943 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24834 3258 3391 16943 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24835 3391 3371 16943 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24836 3371 3207 16943 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24837 3464 3378 16944 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24838 3378 3548 16944 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24839 3548 3582 16944 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24840 3582 3464 16944 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24841 2268 2317 16945 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24842 2317 2351 16945 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24843 2351 2314 16945 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24844 2314 2268 16945 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24845 2363 2392 16946 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24846 2392 2437 16946 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24847 2437 2405 16946 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24848 2405 2363 16946 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24849 2471 2499 16947 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24850 2499 2436 16947 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24851 2436 2425 16947 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24852 2425 2471 16947 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24853 2520 2524 16948 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24854 2524 2450 16948 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24855 2450 2443 16948 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24856 2443 2520 16948 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24857 2399 2465 16949 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24858 2465 2323 16949 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24859 2323 2248 16949 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24860 2248 2399 16949 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24861 2180 2225 16950 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24862 2225 2192 16950 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24863 2192 2187 16950 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24864 2187 2180 16950 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24865 2168 2158 16951 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24866 2158 2182 16951 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24867 2182 2189 16951 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24868 2189 2168 16951 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24869 2212 2177 16952 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24870 2177 2239 16952 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24871 2239 2233 16952 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24872 2233 2212 16952 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24873 2305 2381 16953 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24874 2381 2293 16953 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24875 2293 2264 16953 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24876 2264 2305 16953 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24877 3330 3557 16954 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24878 3557 3463 16954 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24879 3463 3296 16954 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24880 3296 3330 16954 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24881 3208 3333 16955 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24882 3333 3186 16955 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24883 3186 3086 16955 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24884 3086 3208 16955 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24885 2928 3049 16956 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24886 3049 2920 16956 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24887 2920 2824 16956 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24888 2824 2928 16956 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24889 2735 2812 16957 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24890 2812 2693 16957 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24891 2693 2650 16957 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24892 2650 2735 16957 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24893 2566 2599 16958 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24894 2599 2503 16958 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24895 2503 2469 16958 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24896 2469 2566 16958 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24897 2310 2307 16959 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24898 2307 2409 16959 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24899 2409 2376 16959 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24900 2376 2310 16959 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24901 2421 2477 16960 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24902 2477 2539 16960 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24903 2539 2460 16960 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24904 2460 2421 16960 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24905 2567 2591 16961 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24906 2591 2497 16961 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24907 2497 2484 16961 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24908 2484 2567 16961 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24909 2515 2603 16962 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24910 2603 2604 16962 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24911 2604 2531 16962 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24912 2531 2515 16962 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24913 2594 2575 16963 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24914 2575 2527 16963 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24915 2527 2537 16963 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24916 2537 2594 16963 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24917 2886 3075 16964 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24918 3075 2953 16964 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24919 2953 2840 16964 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24920 2840 2886 16964 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24921 2398 2340 16965 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24922 2340 2349 16965 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24923 2349 2413 16965 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24924 2413 2398 16965 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24925 2372 2414 16966 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24926 2414 2348 16966 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24927 2348 2361 16966 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24928 2361 2372 16966 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24929 2452 2396 16967 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24930 2396 2371 16967 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24931 2371 2439 16967 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24932 2439 2452 16967 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24933 2532 2495 16968 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24934 2495 2486 16968 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24935 2486 2528 16968 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24936 2528 2532 16968 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24937 2625 2576 16969 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24938 2576 2571 16969 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24939 2571 2620 16969 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24940 2620 2625 16969 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24941 2805 2704 16970 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24942 2704 2702 16970 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24943 2702 2819 16970 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24944 2819 2805 16970 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24945 2259 2282 16971 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24946 2282 2324 16971 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24947 2324 2301 16971 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24948 2301 2259 16971 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24949 2365 2285 16972 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24950 2285 2367 16972 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24951 2367 2480 16972 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24952 2480 2365 16972 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24953 2384 2388 16973 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24954 2388 2451 16973 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24955 2451 2470 16973 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24956 2470 2384 16973 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24957 2583 2454 16974 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24958 2454 2549 16974 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24959 2549 2662 16974 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24960 2662 2583 16974 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24961 2573 2529 16975 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24962 2529 2614 16975 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24963 2614 2676 16975 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24964 2676 2573 16975 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24965 2756 2646 16976 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24966 2646 2755 16976 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24967 2755 2872 16976 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24968 2872 2756 16976 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24969 2767 2689 16977 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24970 2689 2773 16977 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24971 2773 2853 16977 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24972 2853 2767 16977 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24973 3023 2857 16978 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24974 2857 2993 16978 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24975 2993 3138 16978 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24976 3138 3023 16978 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24977 2719 2786 16979 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24978 2786 2971 16979 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24979 2971 2915 16979 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24980 2915 2719 16979 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24981 2663 2522 16980 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24982 2522 2440 16980 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24983 2440 2582 16980 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24984 2582 2663 16980 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24985 2822 2934 16981 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24986 2934 2956 16981 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24987 2956 2833 16981 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24988 2833 2822 16981 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24989 2622 2720 16982 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24990 2720 2739 16982 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24991 2739 2659 16982 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24992 2659 2622 16982 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24993 2894 3039 16983 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24994 3039 3170 16983 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24995 3170 3062 16983 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24996 3062 2894 16983 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24997 2732 2806 16984 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24998 2806 2936 16984 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 24999 2936 2856 16984 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25000 2856 2732 16984 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25001 3192 3291 16985 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25002 3291 3417 16985 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25003 3417 3320 16985 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25004 3320 3192 16985 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25005 3038 3105 16986 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25006 3105 3246 16986 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25007 3246 3203 16986 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25008 3203 3038 16986 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25009 3510 3578 16987 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25010 3578 3774 16987 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25011 3774 3731 16987 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25012 3731 3510 16987 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25013 3412 3448 16988 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25014 3448 3697 16988 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25015 3697 3653 16988 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25016 3653 3412 16988 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25017 3956 3967 16989 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25018 3967 4110 16989 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25019 4110 4102 16989 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25020 4102 3956 16989 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25021 3888 3925 16990 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25022 3925 4082 16990 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25023 4082 4067 16990 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25024 4067 3888 16990 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25025 4254 4256 16991 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25026 4256 4387 16991 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25027 4387 4392 16991 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25028 4392 4254 16991 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25029 4239 4248 16992 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25030 4248 4388 16992 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25031 4388 4373 16992 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25032 4373 4239 16992 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25033 4578 4553 16993 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25034 4553 4751 16993 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25035 4751 4788 16993 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25036 4788 4578 16993 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25037 4573 4583 16994 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25038 4583 4818 16994 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25039 4818 4815 16994 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25040 4815 4573 16994 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25041 4502 4480 16995 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25042 4480 4671 16995 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25043 4671 4692 16995 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25044 4692 4502 16995 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25045 4343 4360 16996 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25046 4360 4241 16996 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25047 4241 4235 16996 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25048 4235 4343 16996 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25049 4088 4101 16997 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25050 4101 3968 16997 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25051 3968 3962 16997 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25052 3962 4088 16997 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25053 3771 3778 16998 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25054 3778 3618 16998 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25055 3618 3631 16998 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25056 3631 3771 16998 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25057 3479 3478 16999 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25058 3478 3345 16999 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25059 3345 3346 16999 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25060 3346 3479 16999 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25061 3128 3087 17000 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25062 3087 3110 17000 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25063 3110 3176 17000 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25064 3176 3128 17000 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25065 3628 3591 17001 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25066 3591 3878 17001 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25067 3878 3907 17001 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25068 3907 3628 17001 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25069 5452 5461 17002 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25070 5461 5330 17002 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25071 5330 5296 17002 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25072 5296 5452 17002 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25073 5405 5432 17003 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25074 5432 5243 17003 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25075 5243 5184 17003 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25076 5184 5405 17003 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25077 5362 5378 17004 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25078 5378 5142 17004 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25079 5142 5089 17004 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25080 5089 5362 17004 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25081 5171 5226 17005 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25082 5226 5169 17005 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25083 5169 5065 17005 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25084 5065 5171 17005 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25085 5005 5096 17006 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25086 5096 4954 17006 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25087 4954 4837 17006 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25088 4837 5005 17006 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25089 4797 4906 17007 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25090 4906 4673 17007 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25091 4673 4455 17007 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25092 4455 4797 17007 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25093 4634 4836 17008 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25094 4836 4718 17008 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25095 4718 4430 17008 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25096 4430 4634 17008 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25097 4279 4414 17009 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25098 4414 4275 17009 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25099 4275 4100 17009 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25100 4100 4279 17009 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25101 4345 4637 17010 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25102 4637 4593 17010 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25103 4593 4322 17010 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25104 4322 4345 17010 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25105 4015 4171 17011 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25106 4171 4150 17011 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25107 4150 4003 17011 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25108 4003 4015 17011 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25109 4860 5071 17012 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25110 5071 5040 17012 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25111 5040 4811 17012 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25112 4811 4860 17012 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25113 4326 4563 17013 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25114 4563 4551 17013 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25115 4551 4353 17013 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25116 4353 4326 17013 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25117 4039 4172 17014 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25118 4172 4243 17014 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25119 4243 4139 17014 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25120 4139 4039 17014 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25121 4844 5042 17015 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25122 5042 5080 17015 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25123 5080 4922 17015 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25124 4922 4844 17015 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25125 4444 4628 17016 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25126 4628 4771 17016 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25127 4771 4664 17016 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25128 4664 4444 17016 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25129 4288 4342 17017 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25130 4342 4550 17017 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25131 4550 4467 17017 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25132 4467 4288 17017 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25133 5017 5135 17018 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25134 5135 5189 17018 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25135 5189 5136 17018 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25136 5136 5017 17018 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25137 4872 4935 17019 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25138 4935 5085 17019 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25139 5085 5060 17019 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25140 5060 4872 17019 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25141 4763 4813 17020 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25142 4813 5031 17020 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25143 5031 5003 17020 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25144 5003 4763 17020 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25145 5268 5300 17021 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25146 5300 5455 17021 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25147 5455 5447 17021 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25148 5447 5268 17021 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25149 5232 5241 17022 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25150 5241 5437 17022 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25151 5437 5434 17022 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25152 5434 5232 17022 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25153 5201 5219 17023 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25154 5219 5428 17023 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25155 5428 5422 17023 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25156 5422 5201 17023 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25157 4672 4735 17024 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25158 4735 4974 17024 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25159 4974 4919 17024 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25160 4919 4672 17024 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25161 5162 5186 17025 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25162 5186 5417 17025 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25163 5417 5410 17025 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25164 5410 5162 17025 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25165 3264 3382 17026 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25166 3382 3344 17026 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25167 3344 3228 17026 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25168 3228 3264 17026 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25169 3098 3161 17027 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25170 3161 3323 17027 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25171 3323 3248 17027 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25172 3248 3098 17027 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25173 3583 3671 17028 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25174 3671 3734 17028 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25175 3734 3651 17028 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25176 3651 3583 17028 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25177 3462 3522 17029 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25178 3522 3593 17029 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25179 3593 3579 17029 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25180 3579 3462 17029 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25181 3542 3469 17030 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25182 3469 3605 17030 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25183 3605 3686 17030 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25184 3686 3542 17030 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25185 3712 3615 17031 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25186 3615 3740 17031 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25187 3740 3779 17031 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25188 3779 3712 17031 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25189 3096 3177 17032 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25190 3177 3295 17032 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25191 3295 3221 17032 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25192 3221 3096 17032 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25193 3405 3474 17033 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25194 3474 3680 17033 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25195 3680 3598 17033 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25196 3598 3405 17033 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25197 3849 3917 17034 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25198 3917 4133 17034 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25199 4133 4069 17034 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25200 4069 3849 17034 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25201 4274 4310 17035 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25202 4310 4442 17035 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25203 4442 4412 17035 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25204 4412 4274 17035 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25205 3315 3528 17036 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25206 3528 3437 17036 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25207 3437 3212 17036 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25208 3212 3315 17036 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25209 3425 3367 17037 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25210 3367 3233 17037 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25211 3233 3410 17037 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25212 3410 3425 17037 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25213 3664 3733 17038 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25214 3733 4007 17038 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25215 4007 3946 17038 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25216 3946 3664 17038 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25217 3592 3622 17039 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25218 3622 3909 17039 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25219 3909 3894 17039 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25220 3894 3592 17039 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25221 4174 4217 17040 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25222 4217 4395 17040 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25223 4395 4390 17040 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25224 4390 4174 17040 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25225 4148 4153 17041 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25226 4153 4391 17041 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25227 4391 4396 17041 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25228 4396 4148 17041 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25229 3732 3741 17042 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25230 3741 4004 17042 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25231 4004 3960 17042 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25232 3960 3732 17042 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25233 3893 3817 17043 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25234 3817 3996 17043 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25235 3996 4059 17043 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25236 4059 3893 17043 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25237 3856 3891 17044 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25238 3891 4028 17044 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25239 4028 4002 17044 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25240 4002 3856 17044 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25241 3908 3846 17045 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25242 3846 3974 17045 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25243 3974 4024 17045 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25244 4024 3908 17045 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25245 4155 4202 17046 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25246 4202 4381 17046 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25247 4381 4355 17046 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25248 4355 4155 17046 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25249 4267 4177 17047 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25250 4177 4405 17047 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25251 4405 4501 17047 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25252 4501 4267 17047 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25253 4164 4230 17048 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25254 4230 4449 17048 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25255 4449 4352 17048 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25256 4352 4164 17048 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25257 4432 4451 17049 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25258 4451 4539 17049 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25259 4539 4487 17049 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25260 4487 4432 17049 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25261 4643 4640 17050 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25262 4640 4898 17050 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25263 4898 4910 17050 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25264 4910 4643 17050 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25265 4821 4717 17051 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25266 4717 4966 17051 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25267 4966 5026 17051 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25268 5026 4821 17051 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25269 4620 4765 17052 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25270 4765 4983 17052 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25271 4983 4886 17052 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25272 4886 4620 17052 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25273 4558 4532 17053 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25274 4532 4828 17053 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25275 4828 4853 17053 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25276 4853 4558 17053 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25277 5160 5150 17054 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25278 5150 5403 17054 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25279 5403 5409 17054 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25280 5409 5160 17054 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25281 5211 5181 17055 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25282 5181 5415 17055 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25283 5415 5426 17055 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25284 5426 5211 17055 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25285 5128 5183 17056 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25286 5183 5416 17056 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25287 5416 5398 17056 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25288 5398 5128 17056 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25289 5064 5079 17057 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25290 5079 5331 17057 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25291 5331 5262 17057 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25292 5262 5064 17057 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25293 5097 5072 17058 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25294 5072 5218 17058 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25295 5218 5234 17058 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25296 5234 5097 17058 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25297 5370 5366 17059 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25298 5366 5468 17059 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25299 5468 5471 17059 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25300 5471 5370 17059 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25301 4789 4761 17060 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25302 4761 4951 17060 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25303 4951 4978 17060 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25304 4978 4789 17060 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25305 5115 5112 17061 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25306 5112 5227 17061 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25307 5227 5200 17061 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25308 5200 5115 17061 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25309 5386 5376 17062 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25310 5376 5472 17062 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25311 5472 5477 17062 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25312 5477 5386 17062 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25313 5197 5208 17063 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25314 5208 5257 17063 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25315 5257 5249 17063 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25316 5249 5197 17063 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25317 5297 5354 17064 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25318 5354 5466 17064 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25319 5466 5453 17064 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25320 5453 5297 17064 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25321 5270 5448 17065 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25322 5448 5443 17065 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25323 5443 5260 17065 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25324 5260 5270 17065 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25325 5053 5151 17066 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25326 5151 5129 17066 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25327 5129 5034 17066 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25328 5034 5053 17066 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25329 4772 4936 17067 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25330 4936 4897 17067 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25331 4897 4753 17067 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25332 4753 4772 17067 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25333 4607 4681 17068 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25334 4681 4646 17068 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25335 4646 4559 17068 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25336 4559 4607 17068 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25337 4579 4533 17069 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25338 4533 4546 17069 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25339 4546 4592 17069 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25340 4592 4579 17069 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25341 4505 4496 17070 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25342 4496 4603 17070 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25343 4603 4598 17070 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25344 4598 4505 17070 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25345 4636 4543 17071 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25346 4543 4623 17071 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25347 4623 4693 17071 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25348 4693 4636 17071 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25349 4762 4728 17072 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25350 4728 4849 17072 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25351 4849 4861 17072 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25352 4861 4762 17072 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25353 4918 4914 17073 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25354 4914 4960 17073 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25355 4960 4979 17073 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25356 4979 4918 17073 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25357 5047 5025 17074 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25358 5025 5120 17074 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25359 5120 5140 17074 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25360 5140 5047 17074 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25361 5263 5248 17075 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25362 5248 5440 17075 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25363 5440 5444 17075 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25364 5444 5263 17075 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25365 4768 4778 17076 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25366 4778 4755 17076 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25367 4755 4752 17076 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25368 4752 4768 17076 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25369 4838 4868 17077 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25370 4868 4923 17077 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25371 4923 4831 17077 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25372 4831 4838 17077 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25373 4969 4945 17078 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25374 4945 5010 17078 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25375 5010 5081 17078 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25376 5081 4969 17078 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25377 5000 5138 17079 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25378 5138 5179 17079 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25379 5179 5041 17079 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25380 5041 5000 17079 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25381 5420 5321 17080 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25382 5321 5182 17080 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25383 5182 5289 17080 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25384 5289 5420 17080 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25385 4631 4614 17081 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25386 4614 4802 17081 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25387 4802 4839 17081 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25388 4839 4631 17081 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25389 4676 4658 17082 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25390 4658 4858 17082 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25391 4858 4864 17082 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25392 4864 4676 17082 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25393 4965 4950 17083 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25394 4950 5035 17083 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25395 5035 5039 17083 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25396 5039 4965 17083 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25397 4984 4972 17084 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25398 4972 5050 17084 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25399 5050 5078 17084 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25400 5078 4984 17084 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25401 5033 5002 17085 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25402 5002 5100 17085 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25403 5100 5125 17085 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25404 5125 5033 17085 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25405 5124 5116 17086 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25406 5116 5185 17086 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25407 5185 5196 17086 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25408 5196 5124 17086 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25409 5165 5141 17087 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25410 5141 5214 17087 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25411 5214 5237 17087 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25412 5237 5165 17087 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25413 5187 5176 17088 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25414 5176 5254 17088 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25415 5254 5255 17088 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25416 5255 5187 17088 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25417 5314 5298 17089 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25418 5298 5454 17089 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25419 5454 5459 17089 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25420 5459 5314 17089 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25421 5338 5328 17090 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25422 5328 5460 17090 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25423 5460 5464 17090 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25424 5464 5338 17090 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25425 5334 5346 17091 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25426 5346 5465 17091 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25427 5465 5463 17091 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25428 5463 5334 17091 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25429 2810 2860 17092 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25430 2860 2870 17092 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25431 2870 2826 17092 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25432 2826 2810 17092 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25433 2848 2839 17093 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25434 2839 2878 17093 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25435 2878 2892 17093 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25436 2892 2848 17093 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25437 2931 2908 17094 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25438 2908 2913 17094 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25439 2913 2951 17094 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25440 2951 2931 17094 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25441 2922 2891 17095 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25442 2891 2849 17095 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25443 2849 2864 17095 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25444 2864 2922 17095 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25445 2813 2797 17096 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25446 2797 2722 17096 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25447 2722 2752 17096 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25448 2752 2813 17096 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25449 2716 2682 17097 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25450 2682 2661 17097 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25451 2661 2696 17097 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25452 2696 2716 17097 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25453 2707 2669 17098 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25454 2669 2695 17098 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25455 2695 2731 17098 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25456 2731 2707 17098 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25457 2809 2774 17099 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25458 2774 2881 17099 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25459 2881 2944 17099 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25460 2944 2809 17099 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25461 3082 3026 17100 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25462 3026 3130 17100 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25463 3130 3166 17100 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25464 3166 3082 17100 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25465 3215 3187 17101 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25466 3187 3201 17101 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25467 3201 3243 17101 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25468 3243 3215 17101 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25469 3035 3131 17102 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25470 3131 3133 17102 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25471 3133 3070 17102 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25472 3070 3035 17102 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25473 2999 3080 17103 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25474 3080 2930 17103 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25475 2930 2846 17103 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25476 2846 2999 17103 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25477 2742 2818 17104 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25478 2818 2715 17104 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25479 2715 2652 17104 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25480 2652 2742 17104 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25481 2593 2642 17105 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25482 2642 2617 17105 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25483 2617 2556 17105 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25484 2556 2593 17105 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25485 2568 2618 17106 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25486 2618 2644 17106 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25487 2644 2619 17106 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25488 2619 2568 17106 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25489 2680 2700 17107 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25490 2700 2776 17107 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25491 2776 2749 17107 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25492 2749 2680 17107 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25493 2807 2829 17108 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25494 2829 2871 17108 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25495 2871 2852 17108 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25496 2852 2807 17108 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25497 2868 2884 17109 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25498 2884 2875 17109 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25499 2875 2851 17109 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25500 2851 2868 17109 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25501 2816 2844 17110 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25502 2844 2788 17110 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25503 2788 2759 17110 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25504 2759 2816 17110 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25505 2630 2655 17111 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25506 2655 2725 17111 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25507 2725 2705 17111 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25508 2705 2630 17111 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25509 2760 2783 17112 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25510 2783 2828 17112 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25511 2828 2801 17112 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25512 2801 2760 17112 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25513 2814 2845 17113 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25514 2845 2827 17113 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25515 2827 2802 17113 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25516 2802 2814 17113 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25517 2765 2789 17114 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25518 2789 2724 17114 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25519 2724 2694 17114 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25520 2694 2765 17114 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25521 2626 2671 17115 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25522 2671 2612 17115 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25523 2612 2548 17115 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25524 2548 2626 17115 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25525 2876 2821 17116 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25526 2821 2873 17116 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25527 2873 2926 17116 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25528 2926 2876 17116 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25529 2929 2937 17117 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25530 2937 2976 17117 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25531 2976 2984 17117 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25532 2984 2929 17117 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25533 2974 2952 17118 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25534 2952 2882 17118 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25535 2882 2907 17118 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25536 2907 2974 17118 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25537 2850 2831 17119 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25538 2831 2777 17119 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25539 2777 2790 17119 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25540 2790 2850 17119 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25541 2763 2738 17120 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25542 2738 2728 17120 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25543 2728 2772 17120 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25544 2772 2763 17120 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25545 2793 2746 17121 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25546 2746 2781 17121 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25547 2781 2838 17121 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25548 2838 2793 17121 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25549 2939 2863 17122 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25550 2863 3028 17122 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25551 3028 3117 17122 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25552 3117 2939 17122 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25553 3220 3149 17123 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25554 3149 3218 17123 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25555 3218 3307 17123 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25556 3307 3220 17123 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25557 3375 3280 17124 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25558 3280 3324 17124 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25559 3324 3430 17124 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25560 3430 3375 17124 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25561 3558 3683 17125 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25562 3683 3584 17125 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25563 3584 3487 17125 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25564 3487 3558 17125 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25565 3403 3491 17126 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25566 3491 3389 17126 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25567 3389 3306 17126 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25568 3306 3403 17126 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25569 3189 3257 17127 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25570 3257 3106 17127 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25571 3106 3031 17127 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25572 3031 3189 17127 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25573 2898 2989 17128 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25574 2989 2904 17128 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25575 2904 2842 17128 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25576 2842 2898 17128 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25577 2808 2866 17129 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25578 2866 2858 17129 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25579 2858 2800 17129 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25580 2800 2808 17129 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25581 2986 2988 17130 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25582 2988 2985 17130 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25583 2985 2940 17130 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25584 2940 2986 17130 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25585 2947 3005 17131 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25586 3005 3050 17131 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25587 3050 2996 17131 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25588 2996 2947 17131 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25589 2865 2899 17132 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25590 2899 2946 17132 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25591 2946 2914 17132 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25592 2914 2865 17132 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25593 2836 2847 17133 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25594 2847 2889 17133 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25595 2889 2867 17133 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25596 2867 2836 17133 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25597 2787 2817 17134 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25598 2817 2835 17134 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25599 2835 2791 17134 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25600 2791 2787 17134 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25601 2709 2751 17135 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25602 2751 2729 17135 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25603 2729 2674 17135 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25604 2674 2709 17135 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25605 5353 5364 17136 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25606 5364 5082 17136 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25607 5082 5056 17136 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25608 5056 5353 17136 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25609 4585 4679 17137 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25610 4679 4203 17137 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25611 4203 4105 17137 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25612 4105 4585 17137 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25613 3848 3961 17138 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25614 3961 3842 17138 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25615 3842 3698 17138 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25616 3698 3848 17138 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25617 3577 3676 17139 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25618 3676 3527 17139 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25619 3527 3456 17139 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25620 3456 3577 17139 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25621 3319 3372 17140 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25622 3372 3204 17140 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25623 3204 3164 17140 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25624 3164 3319 17140 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25625 2979 3099 17141 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25626 3099 3127 17141 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25627 3127 2983 17141 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25628 2983 2979 17141 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25629 3081 3168 17142 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25630 3168 3184 17142 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25631 3184 3113 17142 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25632 3113 3081 17142 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25633 5337 5347 17143 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25634 5347 5049 17143 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25635 5049 5029 17143 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25636 5029 5337 17143 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25637 5360 5343 17144 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25638 5343 5037 17144 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25639 5037 5077 17144 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25640 5077 5360 17144 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25641 4684 4729 17145 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25642 4729 4370 17145 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25643 4370 4333 17145 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25644 4333 4684 17145 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25645 4697 4682 17146 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25646 4682 4306 17146 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25647 4306 4284 17146 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25648 4284 4697 17146 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25649 4050 4119 17147 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25650 4119 4022 17147 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25651 4022 3937 17147 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25652 3937 4050 17147 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25653 4008 4124 17148 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25654 4124 3964 17148 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25655 3964 3854 17148 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25656 3854 4008 17148 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25657 3767 3895 17149 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25658 3895 3717 17149 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25659 3717 3607 17149 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25660 3607 3767 17149 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25661 3468 3594 17150 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25662 3594 3533 17150 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25663 3533 3327 17150 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25664 3327 3468 17150 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25665 3679 3865 17151 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25666 3865 3862 17151 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25667 3862 3694 17151 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25668 3694 3679 17151 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25669 3275 3505 17152 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25670 3505 3529 17152 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25671 3529 3308 17152 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25672 3308 3275 17152 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25673 3716 3899 17153 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25674 3899 3993 17153 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25675 3993 3730 17153 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25676 3730 3716 17153 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25677 3321 3540 17154 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25678 3540 3536 17154 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25679 3536 3326 17154 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25680 3326 3321 17154 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25681 4747 4330 17155 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25682 4330 4298 17155 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25683 4298 4743 17155 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25684 4743 4747 17155 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25685 4727 4265 17156 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25686 4265 4201 17156 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25687 4201 4695 17156 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25688 4695 4727 17156 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25689 5387 5098 17157 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25690 5098 5107 17157 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25691 5107 5391 17157 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25692 5391 5387 17157 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25693 5393 5113 17158 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25694 5113 5110 17158 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25695 5110 5392 17158 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25696 5392 5393 17158 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25697 5462 5458 17159 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25698 5458 5309 17159 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25699 5309 5332 17159 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25700 5332 5462 17159 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25701 5478 5467 17160 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25702 5467 5365 17160 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25703 5365 5397 17160 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25704 5397 5478 17160 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25705 5276 5259 17161 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25706 5259 5153 17161 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25707 5153 5149 17161 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25708 5149 5276 17161 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25709 5217 5326 17162 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25710 5326 5103 17162 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25711 5103 5095 17162 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25712 5095 5217 17162 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25713 5051 5146 17163 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25714 5146 5012 17163 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25715 5012 4882 17163 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25716 4882 5051 17163 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25717 4967 4992 17164 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25718 4992 4769 17164 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25719 4769 4738 17164 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25720 4738 4967 17164 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25721 4645 4846 17165 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25722 4846 4555 17165 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25723 4555 4386 17165 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25724 4386 4645 17165 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25725 4454 4494 17166 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25726 4494 4307 17166 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25727 4307 4292 17166 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25728 4292 4454 17166 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25729 4441 4595 17167 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25730 4595 4186 17167 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25731 4186 4191 17167 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25732 4191 4441 17167 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25733 4211 4325 17168 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25734 4325 4143 17168 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25735 4143 4042 17168 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25736 4042 4211 17168 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25737 4123 4138 17169 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25738 4138 3988 17169 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25739 3988 3957 17169 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25740 3957 4123 17169 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25741 3900 3999 17170 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25742 3999 3870 17170 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25743 3870 3749 17170 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25744 3749 3900 17170 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25745 3757 3840 17171 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25746 3840 3667 17171 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25747 3667 3588 17171 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25748 3588 3757 17171 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25749 3148 3400 17172 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25750 3400 3477 17172 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25751 3477 3191 17172 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25752 3191 3148 17172 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25753 2743 2887 17173 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25754 2887 2903 17173 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25755 2903 2730 17173 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25756 2730 2743 17173 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25757 3239 3551 17174 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25758 3551 3623 17174 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25759 3623 3300 17174 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25760 3300 3239 17174 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25761 2713 2918 17175 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25762 2918 2941 17175 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25763 2941 2679 17175 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25764 2679 2713 17175 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25765 3348 3685 17176 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25766 3685 3746 17176 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25767 3746 3392 17176 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25768 3392 3348 17176 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25769 2665 2977 17177 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25770 2977 3000 17177 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25771 3000 2673 17177 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25772 2673 2665 17177 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25773 3428 3833 17178 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25774 3833 3886 17178 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25775 3886 3483 17178 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25776 3483 3428 17178 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25777 2681 3034 17179 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25778 3034 3083 17179 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25779 3083 2697 17179 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25780 2697 2681 17179 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25781 3519 3936 17180 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25782 3936 3990 17180 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25783 3990 3545 17180 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25784 3545 3519 17180 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25785 2726 3121 17181 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25786 3121 3154 17181 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25787 3154 2775 17181 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25788 2775 2726 17181 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25789 3708 4233 17182 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25790 4233 4807 17182 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25791 4807 4023 17182 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25792 4023 3708 17182 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25793 2917 3303 17183 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25794 3303 3546 17183 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25795 3546 3232 17183 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25796 3232 2917 17183 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25797 4238 5119 17184 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25798 5119 5164 17184 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25799 5164 4332 17184 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25800 4332 4238 17184 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25801 3502 3743 17185 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25802 3743 3952 17185 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25803 3952 3748 17185 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25804 3748 3502 17185 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25805 2587 2640 17186 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25806 2640 2628 17186 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25807 2628 2586 17186 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25808 2586 2587 17186 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25809 2538 2596 17187 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25810 2596 2513 17187 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25811 2513 2418 17187 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25812 2418 2538 17187 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25813 2320 2457 17188 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25814 2457 2445 17188 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25815 2445 2275 17188 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25816 2275 2320 17188 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25817 2253 2444 17189 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25818 2444 2456 17189 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25819 2456 2245 17189 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25820 2245 2253 17189 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25821 2279 2487 17190 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25822 2487 2546 17190 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25823 2546 2368 17190 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25824 2368 2279 17190 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25825 2468 2675 17191 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25826 2675 2861 17191 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25827 2861 2592 17191 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25828 2592 2468 17191 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25829 2721 3167 17192 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25830 3167 3446 17192 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25831 3446 2910 17192 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25832 2910 2721 17192 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25833 3808 4089 17193 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25834 4089 3792 17193 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25835 3792 3611 17193 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25836 3611 3808 17193 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25837 3613 3695 17194 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25838 3695 3435 17194 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25839 3435 3384 17194 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25840 3384 3613 17194 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25841 3439 3539 17195 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25842 3539 3325 17195 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25843 3325 3265 17195 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25844 3265 3439 17195 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25845 3172 3200 17196 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25846 3200 3047 17196 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25847 3047 3058 17196 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25848 3058 3172 17196 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25849 3120 3147 17197 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25850 3147 3046 17197 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25851 3046 3010 17197 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25852 3010 3120 17197 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25853 2869 2923 17198 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25854 2923 2785 17198 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25855 2785 2733 17198 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25856 2733 2869 17198 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25857 2629 2685 17199 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25858 2685 2602 17199 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25859 2602 2543 17199 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25860 2543 2629 17199 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25861 2455 2526 17200 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25862 2526 2474 17200 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25863 2474 2377 17200 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25864 2377 2455 17200 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25865 2378 2478 17201 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25866 2478 2535 17201 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25867 2535 2459 17201 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25868 2459 2378 17201 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25869 2540 2598 17202 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25870 2598 2660 17202 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25871 2660 2607 17202 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25872 2607 2540 17202 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25873 2633 2710 17203 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25874 2710 2744 17203 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25875 2744 2666 17203 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25876 2666 2633 17203 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25877 2678 2761 17204 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25878 2761 2745 17204 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25879 2745 2672 17204 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25880 2672 2678 17204 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25881 2643 2714 17205 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25882 2714 2658 17205 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25883 2658 2616 17205 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25884 2616 2643 17205 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25885 2554 2595 17206 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25886 2595 2492 17206 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25887 2492 2449 17206 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25888 2449 2554 17206 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25889 2272 2476 17207 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25890 2476 2430 17207 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25891 2430 2223 17207 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25892 2223 2272 17207 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25893 2435 2394 17208 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25894 2394 2462 17208 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25895 2462 2502 17208 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25896 2502 2435 17208 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25897 2153 2270 17209 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25898 2270 2355 17209 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25899 2355 2235 17209 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25900 2235 2153 17209 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25901 2144 2157 17210 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25902 2157 2003 17210 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25903 2003 1993 17210 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25904 1993 2144 17210 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25905 2056 2026 17211 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25906 2026 2176 17211 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25907 2176 2217 17211 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25908 2217 2056 17211 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25909 2356 2466 17212 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25910 2466 2498 17212 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25911 2498 2389 17212 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25912 2389 2356 17212 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25913 2534 2559 17213 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25914 2559 2458 17213 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25915 2458 2422 17213 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25916 2422 2534 17213 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25917 2266 2339 17214 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25918 2339 2198 17214 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25919 2198 2107 17214 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25920 2107 2266 17214 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25921 2251 2244 17215 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25922 2244 2380 17215 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25923 2380 2391 17215 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25924 2391 2251 17215 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25925 2482 2579 17216 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25926 2579 2580 17216 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25927 2580 2485 17216 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25928 2485 2482 17216 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25929 2083 2011 17217 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25930 2011 2023 17217 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25931 2023 2110 17217 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25932 2110 2083 17217 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25933 2126 2024 17218 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25934 2024 2014 17218 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25935 2014 2119 17218 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25936 2119 2126 17218 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25937 2075 1969 17219 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25938 1969 1894 17219 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25939 1894 2006 17219 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25940 2006 2075 17219 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25941 1921 1837 17220 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25942 1837 1796 17220 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25943 1796 1885 17220 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25944 1885 1921 17220 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25945 1853 1776 17221 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25946 1776 1759 17221 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25947 1759 1828 17221 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25948 1828 1853 17221 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25949 1827 1750 17222 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25950 1750 1740 17222 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25951 1740 1847 17222 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25952 1847 1827 17222 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25953 1815 1734 17223 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25954 1734 1724 17223 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25955 1724 1775 17223 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25956 1775 1815 17223 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25957 1771 1723 17224 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25958 1723 1733 17224 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25959 1733 1789 17224 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25960 1789 1771 17224 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25961 2109 2204 17225 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25962 2204 2169 17225 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25963 2169 2105 17225 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25964 2105 2109 17225 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25965 2228 2219 17226 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25966 2219 2111 17226 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25967 2111 2117 17226 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25968 2117 2228 17226 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25969 2132 2210 17227 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25970 2210 2086 17227 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25971 2086 2032 17227 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25972 2032 2132 17227 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25973 2039 2077 17228 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25974 2077 1967 17228 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25975 1967 1906 17228 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25976 1906 2039 17228 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25977 1790 1925 17229 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25978 1925 1989 17229 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25979 1989 1845 17229 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25980 1845 1790 17229 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25981 1875 1758 17230 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25982 1758 1756 17230 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25983 1756 1846 17230 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25984 1846 1875 17230 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25985 2013 2181 17231 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25986 2181 2164 17231 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25987 2164 1975 17231 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25988 1975 2013 17231 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25989 1959 2163 17232 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25990 2163 2171 17232 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25991 2171 1978 17232 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25992 1978 1959 17232 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25993 1823 1825 17233 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25994 1825 1757 17233 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25995 1757 1760 17233 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25996 1760 1823 17233 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25997 2035 2073 17234 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25998 2073 2159 17234 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 25999 2159 2114 17234 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26000 2114 2035 17234 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26001 1857 1907 17235 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26002 1907 1862 17235 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26003 1862 1806 17235 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26004 1806 1857 17235 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26005 1849 1858 17236 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26006 1858 1778 17236 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26007 1778 1782 17236 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26008 1782 1849 17236 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26009 1763 1769 17237 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26010 1769 1855 17237 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26011 1855 1830 17237 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26012 1830 1763 17237 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26013 1816 1838 17238 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26014 1838 1868 17238 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26015 1868 1851 17238 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26016 1851 1816 17238 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26017 1913 2064 17239 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26018 2064 2047 17239 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26019 2047 1924 17239 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26020 1924 1913 17239 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26021 1902 1938 17240 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26022 1938 1905 17240 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26023 1905 1876 17240 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26024 1876 1902 17240 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26025 1854 1882 17241 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26026 1882 1893 17241 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26027 1893 1842 17241 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26028 1842 1854 17241 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26029 1822 1886 17242 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26030 1886 1860 17242 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26031 1860 1805 17242 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26032 1805 1822 17242 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26033 1812 1867 17243 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26034 1867 1903 17243 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26035 1903 1852 17243 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26036 1852 1812 17243 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26037 1891 1931 17244 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26038 1931 1963 17244 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26039 1963 1916 17244 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26040 1916 1891 17244 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26041 1996 2001 17245 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26042 2001 1956 17245 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26043 1956 1987 17245 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26044 1987 1996 17245 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26045 2199 2042 17246 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26046 2042 2062 17246 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26047 2062 2200 17246 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26048 2200 2199 17246 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26049 2152 2178 17247 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26050 2178 2067 17247 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26051 2067 2061 17247 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26052 2061 2152 17247 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26053 2009 2017 17248 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26054 2017 1992 17248 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26055 1992 1979 17248 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26056 1979 2009 17248 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26057 1912 1940 17249 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26058 1940 1883 17249 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26059 1883 1856 17249 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26060 1856 1912 17249 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26061 1803 1819 17250 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26062 1819 1783 17250 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26063 1783 1779 17250 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26064 1779 1803 17250 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26065 1761 1766 17251 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26066 1766 1753 17251 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26067 1753 1744 17251 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26068 1744 1761 17251 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26069 1727 1742 17252 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26070 1742 1735 17252 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26071 1735 1719 17252 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26072 1719 1727 17252 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26073 1714 1730 17253 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26074 1730 1729 17253 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26075 1729 1715 17253 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26076 1715 1714 17253 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26077 1716 1725 17254 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26078 1725 1722 17254 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26079 1722 1717 17254 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26080 1717 1716 17254 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26081 1721 1731 17255 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26082 1731 1745 17255 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26083 1745 1746 17255 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26084 1746 1721 17255 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26085 1767 1764 17256 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26086 1764 1787 17256 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26087 1787 1786 17256 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26088 1786 1767 17256 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26089 1839 1896 17257 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26090 1896 1892 17257 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26091 1892 1826 17257 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26092 1826 1839 17257 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26093 2043 1955 17258 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26094 1955 1971 17258 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26095 1971 2045 17258 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26096 2045 2043 17258 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26097 1821 1747 17259 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26098 1747 1770 17259 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26099 1770 1869 17259 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26100 1869 1821 17259 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26101 1793 1835 17260 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26102 1835 1965 17260 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26103 1965 1910 17260 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26104 1910 1793 17260 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26105 1884 1926 17261 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26106 1926 2038 17261 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26107 2038 2012 17261 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26108 2012 1884 17261 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4)} Face 26109 7002 6963 17262 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26110 6963 6756 17262 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26111 6756 6806 17262 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26112 6806 7002 17262 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26113 7173 7138 17263 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26114 7138 6963 17263 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26115 6963 7002 17263 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26116 7002 7173 17263 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26117 7378 7333 17264 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26118 7333 7138 17264 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26119 7138 7173 17264 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26120 7173 7378 17264 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26121 7524 7488 17265 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26122 7488 7333 17265 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26123 7333 7378 17265 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26124 7378 7524 17265 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26125 7672 7639 17266 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26126 7639 7488 17266 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26127 7488 7524 17266 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26128 7524 7672 17266 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26129 7818 7779 17267 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26130 7779 7639 17267 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26131 7639 7672 17267 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26132 7672 7818 17267 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26133 7921 7887 17268 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26134 7887 7779 17268 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26135 7779 7818 17268 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26136 7818 7921 17268 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26137 8014 7969 17269 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26138 7969 7887 17269 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26139 7887 7921 17269 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26140 7921 8014 17269 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26141 8086 8036 17270 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26142 8036 7969 17270 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26143 7969 8014 17270 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26144 8014 8086 17270 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26145 8111 8053 17271 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26146 8053 8036 17271 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26147 8036 8086 17271 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26148 8086 8111 17271 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26149 8087 8037 17272 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26150 8037 8053 17272 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26151 8053 8111 17272 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26152 8111 8087 17272 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26153 8015 7970 17273 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26154 7970 8037 17273 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26155 8037 8087 17273 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26156 8087 8015 17273 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26157 7922 7888 17274 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26158 7888 7970 17274 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26159 7970 8015 17274 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26160 8015 7922 17274 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26161 7819 7780 17275 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26162 7780 7888 17275 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26163 7888 7922 17275 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26164 7922 7819 17275 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26165 7673 7640 17276 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26166 7640 7780 17276 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26167 7780 7819 17276 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26168 7819 7673 17276 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26169 7525 7489 17277 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26170 7489 7640 17277 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26171 7640 7673 17277 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26172 7673 7525 17277 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26173 7379 7334 17278 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26174 7334 7489 17278 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26175 7489 7525 17278 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26176 7525 7379 17278 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26177 7174 7139 17279 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26178 7139 7334 17279 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26179 7334 7379 17279 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26180 7379 7174 17279 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26181 7003 6964 17280 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26182 6964 7139 17280 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26183 7139 7174 17280 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26184 7174 7003 17280 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26185 6807 6757 17281 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26186 6757 6964 17281 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26187 6964 7003 17281 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26188 7003 6807 17281 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26189 6622 6562 17282 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26190 6562 6757 17282 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26191 6757 6807 17282 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26192 6807 6622 17282 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26193 6342 6269 17283 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26194 6269 6562 17283 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26195 6562 6622 17283 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26196 6622 6342 17283 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26197 6086 6020 17284 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26198 6020 6269 17284 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26199 6269 6342 17284 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26200 6342 6086 17284 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26201 5888 5842 17285 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26202 5842 6020 17285 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26203 6020 6086 17285 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26204 6086 5888 17285 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26205 5717 5649 17286 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26206 5649 5842 17286 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26207 5842 5888 17286 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26208 5888 5717 17286 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26209 5572 5488 17287 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26210 5488 5649 17287 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26211 5649 5717 17287 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26212 5717 5572 17287 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26213 5457 5385 17288 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26214 5385 5488 17288 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26215 5488 5572 17288 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26216 5572 5457 17288 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26217 5368 5288 17289 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26218 5288 5385 17289 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26219 5385 5457 17289 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26220 5457 5368 17289 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26221 5305 5225 17290 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26222 5225 5288 17290 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26223 5288 5368 17290 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26224 5368 5305 17290 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26225 5293 5202 17291 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26226 5202 5225 17291 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26227 5225 5305 17291 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26228 5305 5293 17291 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26229 5304 5224 17292 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26230 5224 5202 17292 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26231 5202 5293 17292 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26232 5293 5304 17292 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26233 5367 5287 17293 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26234 5287 5224 17293 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26235 5224 5304 17293 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26236 5304 5367 17293 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26237 5456 5384 17294 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26238 5384 5287 17294 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26239 5287 5367 17294 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26240 5367 5456 17294 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26241 5571 5487 17295 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26242 5487 5384 17295 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26243 5384 5456 17295 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26244 5456 5571 17295 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26245 5716 5648 17296 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26246 5648 5487 17296 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26247 5487 5571 17296 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26248 5571 5716 17296 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26249 5887 5841 17297 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26250 5841 5648 17297 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26251 5648 5716 17297 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26252 5716 5887 17297 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26253 6085 6019 17298 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26254 6019 5841 17298 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26255 5841 5887 17298 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26256 5887 6085 17298 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26257 6341 6268 17299 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26258 6268 6019 17299 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26259 6019 6085 17299 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26260 6085 6341 17299 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26261 6621 6561 17300 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26262 6561 6268 17300 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26263 6268 6341 17300 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26264 6341 6621 17300 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26265 6806 6756 17301 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26266 6756 6561 17301 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26267 6561 6621 17301 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26268 6621 6806 17301 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26269 7033 7002 17302 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26270 7002 6806 17302 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26271 6806 6861 17302 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26272 6861 7033 17302 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26273 7206 7173 17303 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26274 7173 7002 17303 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26275 7002 7033 17303 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26276 7033 7206 17303 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26277 7399 7378 17304 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26278 7378 7173 17304 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26279 7173 7206 17304 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26280 7206 7399 17304 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26281 7545 7524 17305 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26282 7524 7378 17305 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26283 7378 7399 17305 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26284 7399 7545 17305 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26285 7691 7672 17306 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26286 7672 7524 17306 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26287 7524 7545 17306 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26288 7545 7691 17306 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26289 7830 7818 17307 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26290 7818 7672 17307 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26291 7672 7691 17307 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26292 7691 7830 17307 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26293 7930 7921 17308 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26294 7921 7818 17308 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26295 7818 7830 17308 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26296 7830 7930 17308 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26297 8020 8014 17309 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26298 8014 7921 17309 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26299 7921 7930 17309 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26300 7930 8020 17309 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26301 8091 8086 17310 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26302 8086 8014 17310 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26303 8014 8020 17310 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26304 8020 8091 17310 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26305 8115 8111 17311 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26306 8111 8086 17311 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26307 8086 8091 17311 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26308 8091 8115 17311 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26309 8092 8087 17312 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26310 8087 8111 17312 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26311 8111 8115 17312 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26312 8115 8092 17312 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26313 8021 8015 17313 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26314 8015 8087 17313 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26315 8087 8092 17313 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26316 8092 8021 17313 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26317 7931 7922 17314 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26318 7922 8015 17314 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26319 8015 8021 17314 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26320 8021 7931 17314 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26321 7831 7819 17315 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26322 7819 7922 17315 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26323 7922 7931 17315 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26324 7931 7831 17315 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26325 7692 7673 17316 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26326 7673 7819 17316 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26327 7819 7831 17316 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26328 7831 7692 17316 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26329 7546 7525 17317 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26330 7525 7673 17317 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26331 7673 7692 17317 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26332 7692 7546 17317 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26333 7400 7379 17318 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26334 7379 7525 17318 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26335 7525 7546 17318 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26336 7546 7400 17318 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26337 7207 7174 17319 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26338 7174 7379 17319 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26339 7379 7400 17319 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26340 7400 7207 17319 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26341 7034 7003 17320 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26342 7003 7174 17320 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26343 7174 7207 17320 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26344 7207 7034 17320 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26345 6862 6807 17321 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26346 6807 7003 17321 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26347 7003 7034 17321 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26348 7034 6862 17321 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26349 6677 6622 17322 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26350 6622 6807 17322 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26351 6807 6862 17322 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26352 6862 6677 17322 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26353 6431 6342 17323 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26354 6342 6622 17323 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26355 6622 6677 17323 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26356 6677 6431 17323 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26357 6166 6086 17324 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26358 6086 6342 17324 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26359 6342 6431 17324 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26360 6431 6166 17324 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26361 5981 5888 17325 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26362 5888 6086 17325 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26363 6086 6166 17325 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26364 6166 5981 17325 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26365 5825 5717 17326 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26366 5717 5888 17326 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26367 5888 5981 17326 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26368 5981 5825 17326 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26369 5674 5572 17327 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26370 5572 5717 17327 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26371 5717 5825 17327 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26372 5825 5674 17327 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26373 5560 5457 17328 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26374 5457 5572 17328 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26375 5572 5674 17328 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26376 5674 5560 17328 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26377 5470 5368 17329 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26378 5368 5457 17329 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26379 5457 5560 17329 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26380 5560 5470 17329 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26381 5424 5305 17330 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26382 5305 5368 17330 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26383 5368 5470 17330 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26384 5470 5424 17330 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26385 5413 5293 17331 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26386 5293 5305 17331 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26387 5305 5424 17331 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26388 5424 5413 17331 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26389 5423 5304 17332 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26390 5304 5293 17332 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26391 5293 5413 17332 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26392 5413 5423 17332 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26393 5469 5367 17333 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26394 5367 5304 17333 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26395 5304 5423 17333 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26396 5423 5469 17333 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26397 5559 5456 17334 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26398 5456 5367 17334 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26399 5367 5469 17334 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26400 5469 5559 17334 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26401 5673 5571 17335 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26402 5571 5456 17335 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26403 5456 5559 17335 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26404 5559 5673 17335 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26405 5824 5716 17336 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26406 5716 5571 17336 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26407 5571 5673 17336 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26408 5673 5824 17336 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26409 5980 5887 17337 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26410 5887 5716 17337 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26411 5716 5824 17337 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26412 5824 5980 17337 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26413 6165 6085 17338 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26414 6085 5887 17338 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26415 5887 5980 17338 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26416 5980 6165 17338 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26417 6430 6341 17339 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26418 6341 6085 17339 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26419 6085 6165 17339 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26420 6165 6430 17339 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26421 6676 6621 17340 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26422 6621 6341 17340 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26423 6341 6430 17340 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26424 6430 6676 17340 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26425 6861 6806 17341 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26426 6806 6621 17341 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26427 6621 6676 17341 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26428 6676 6861 17341 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26429 7069 7033 17342 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26430 7033 6861 17342 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26431 6861 6910 17342 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26432 6910 7069 17342 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26433 7240 7206 17343 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26434 7206 7033 17343 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26435 7033 7069 17343 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26436 7069 7240 17343 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26437 7412 7399 17344 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26438 7399 7206 17344 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26439 7206 7240 17344 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26440 7240 7412 17344 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26441 7547 7545 17345 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26442 7545 7399 17345 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26443 7399 7412 17345 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26444 7412 7547 17345 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26445 7680 7691 17346 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26446 7691 7545 17346 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26447 7545 7547 17346 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26448 7547 7680 17346 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26449 7809 7830 17347 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26450 7830 7691 17347 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26451 7691 7680 17347 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26452 7680 7809 17347 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26453 7904 7930 17348 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26454 7930 7830 17348 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26455 7830 7809 17348 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26456 7809 7904 17348 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26457 7983 8020 17349 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26458 8020 7930 17349 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26459 7930 7904 17349 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26460 7904 7983 17349 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26461 8041 8091 17350 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26462 8091 8020 17350 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26463 8020 7983 17350 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26464 7983 8041 17350 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26465 8059 8115 17351 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26466 8115 8091 17351 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26467 8091 8041 17351 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26468 8041 8059 17351 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26469 8042 8092 17352 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26470 8092 8115 17352 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26471 8115 8059 17352 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26472 8059 8042 17352 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26473 7984 8021 17353 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26474 8021 8092 17353 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26475 8092 8042 17353 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26476 8042 7984 17353 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26477 7905 7931 17354 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26478 7931 8021 17354 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26479 8021 7984 17354 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26480 7984 7905 17354 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26481 7810 7831 17355 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26482 7831 7931 17355 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26483 7931 7905 17355 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26484 7905 7810 17355 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26485 7681 7692 17356 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26486 7692 7831 17356 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26487 7831 7810 17356 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26488 7810 7681 17356 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26489 7548 7546 17357 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26490 7546 7692 17357 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26491 7692 7681 17357 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26492 7681 7548 17357 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26493 7413 7400 17358 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26494 7400 7546 17358 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26495 7546 7548 17358 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26496 7548 7413 17358 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26497 7241 7207 17359 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26498 7207 7400 17359 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26499 7400 7413 17359 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26500 7413 7241 17359 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26501 7070 7034 17360 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26502 7034 7207 17360 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26503 7207 7241 17360 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26504 7241 7070 17360 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26505 6911 6862 17361 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26506 6862 7034 17361 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26507 7034 7070 17361 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26508 7070 6911 17361 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26509 6736 6677 17362 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26510 6677 6862 17362 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26511 6862 6911 17362 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26512 6911 6736 17362 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26513 6551 6431 17363 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26514 6431 6677 17363 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26515 6677 6736 17363 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26516 6736 6551 17363 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26517 6290 6166 17364 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26518 6166 6431 17364 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26519 6431 6551 17364 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26520 6551 6290 17364 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26521 6080 5981 17365 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26522 5981 6166 17365 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26523 6166 6290 17365 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26524 6290 6080 17365 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26525 5924 5825 17366 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26526 5825 5981 17366 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26527 5981 6080 17366 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26528 6080 5924 17366 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26529 5800 5674 17367 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26530 5674 5825 17367 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26531 5825 5924 17367 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26532 5924 5800 17367 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26533 5684 5560 17368 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26534 5560 5674 17368 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26535 5674 5800 17368 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26536 5800 5684 17368 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26537 5601 5470 17369 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26538 5470 5560 17369 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26539 5560 5684 17369 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26540 5684 5601 17369 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26541 5565 5424 17370 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26542 5424 5470 17370 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26543 5470 5601 17370 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26544 5601 5565 17370 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26545 5554 5413 17371 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26546 5413 5424 17371 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26547 5424 5565 17371 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26548 5565 5554 17371 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26549 5564 5423 17372 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26550 5423 5413 17372 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26551 5413 5554 17372 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26552 5554 5564 17372 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26553 5600 5469 17373 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26554 5469 5423 17373 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26555 5423 5564 17373 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26556 5564 5600 17373 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26557 5683 5559 17374 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26558 5559 5469 17374 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26559 5469 5600 17374 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26560 5600 5683 17374 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26561 5799 5673 17375 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26562 5673 5559 17375 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26563 5559 5683 17375 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26564 5683 5799 17375 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26565 5923 5824 17376 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26566 5824 5673 17376 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26567 5673 5799 17376 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26568 5799 5923 17376 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26569 6079 5980 17377 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26570 5980 5824 17377 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26571 5824 5923 17377 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26572 5923 6079 17377 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26573 6289 6165 17378 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26574 6165 5980 17378 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26575 5980 6079 17378 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26576 6079 6289 17378 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26577 6550 6430 17379 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26578 6430 6165 17379 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26579 6165 6289 17379 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26580 6289 6550 17379 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26581 6735 6676 17380 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26582 6676 6430 17380 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26583 6430 6550 17380 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26584 6550 6735 17380 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26585 6910 6861 17381 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26586 6861 6676 17381 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26587 6676 6735 17381 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26588 6735 6910 17381 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26589 7090 7069 17382 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26590 7069 6910 17382 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26591 6910 6950 17382 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26592 6950 7090 17382 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26593 7265 7240 17383 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26594 7240 7069 17383 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26595 7069 7090 17383 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26596 7090 7265 17383 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26597 7407 7412 17384 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26598 7412 7240 17384 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26599 7240 7265 17384 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26600 7265 7407 17384 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26601 7526 7547 17385 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26602 7547 7412 17385 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26603 7412 7407 17385 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26604 7407 7526 17385 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26605 7649 7680 17386 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26606 7680 7547 17386 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26607 7547 7526 17386 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26608 7526 7649 17386 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26609 7765 7809 17387 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26610 7809 7680 17387 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26611 7680 7649 17387 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26612 7649 7765 17387 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26613 7854 7904 17388 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26614 7904 7809 17388 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26615 7809 7765 17388 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26616 7765 7854 17388 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26617 7913 7983 17389 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26618 7983 7904 17389 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26619 7904 7854 17389 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26620 7854 7913 17389 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26621 7961 8041 17390 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26622 8041 7983 17390 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26623 7983 7913 17390 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26624 7913 7961 17390 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26625 7974 8059 17391 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26626 8059 8041 17391 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26627 8041 7961 17391 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26628 7961 7974 17391 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26629 7962 8042 17392 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26630 8042 8059 17392 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26631 8059 7974 17392 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26632 7974 7962 17392 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26633 7914 7984 17393 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26634 7984 8042 17393 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26635 8042 7962 17393 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26636 7962 7914 17393 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26637 7855 7905 17394 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26638 7905 7984 17394 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26639 7984 7914 17394 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26640 7914 7855 17394 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26641 7766 7810 17395 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26642 7810 7905 17395 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26643 7905 7855 17395 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26644 7855 7766 17395 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26645 7650 7681 17396 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26646 7681 7810 17396 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26647 7810 7766 17396 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26648 7766 7650 17396 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26649 7527 7548 17397 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26650 7548 7681 17397 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26651 7681 7650 17397 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26652 7650 7527 17397 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26653 7408 7413 17398 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26654 7413 7548 17398 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26655 7548 7527 17398 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26656 7527 7408 17398 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26657 7266 7241 17399 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26658 7241 7413 17399 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26659 7413 7408 17399 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26660 7408 7266 17399 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26661 7091 7070 17400 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26662 7070 7241 17400 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26663 7241 7266 17400 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26664 7266 7091 17400 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26665 6951 6911 17401 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26666 6911 7070 17401 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26667 7070 7091 17401 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26668 7091 6951 17401 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26669 6780 6736 17402 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26670 6736 6911 17402 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26671 6911 6951 17402 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26672 6951 6780 17402 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26673 6633 6551 17403 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26674 6551 6736 17403 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26675 6736 6780 17403 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26676 6780 6633 17403 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26677 6423 6290 17404 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26678 6290 6551 17404 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26679 6551 6633 17404 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26680 6633 6423 17404 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26681 6211 6080 17405 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26682 6080 6290 17405 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26683 6290 6423 17405 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26684 6423 6211 17405 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26685 6059 5924 17406 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26686 5924 6080 17406 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26687 6080 6211 17406 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26688 6211 6059 17406 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26689 5940 5800 17407 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26690 5800 5924 17407 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26691 5924 6059 17407 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26692 6059 5940 17407 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26693 5853 5684 17408 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26694 5684 5800 17408 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26695 5800 5940 17408 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26696 5940 5853 17408 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26697 5770 5601 17409 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26698 5601 5684 17409 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26699 5684 5853 17409 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26700 5853 5770 17409 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26701 5726 5565 17410 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26702 5565 5601 17410 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26703 5601 5770 17410 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26704 5770 5726 17410 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26705 5709 5554 17411 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26706 5554 5565 17411 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26707 5565 5726 17411 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26708 5726 5709 17411 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26709 5725 5564 17412 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26710 5564 5554 17412 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26711 5554 5709 17412 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26712 5709 5725 17412 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26713 5769 5600 17413 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26714 5600 5564 17413 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26715 5564 5725 17413 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26716 5725 5769 17413 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26717 5852 5683 17414 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26718 5683 5600 17414 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26719 5600 5769 17414 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26720 5769 5852 17414 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26721 5939 5799 17415 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26722 5799 5683 17415 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26723 5683 5852 17415 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26724 5852 5939 17415 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26725 6058 5923 17416 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26726 5923 5799 17416 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26727 5799 5939 17416 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26728 5939 6058 17416 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26729 6210 6079 17417 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26730 6079 5923 17417 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26731 5923 6058 17417 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26732 6058 6210 17417 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26733 6422 6289 17418 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26734 6289 6079 17418 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26735 6079 6210 17418 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26736 6210 6422 17418 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26737 6632 6550 17419 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26738 6550 6289 17419 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26739 6289 6422 17419 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26740 6422 6632 17419 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26741 6779 6735 17420 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26742 6735 6550 17420 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26743 6550 6632 17420 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26744 6632 6779 17420 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26745 6950 6910 17421 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26746 6910 6735 17421 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26747 6735 6779 17421 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26748 6779 6950 17421 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26749 7108 7090 17422 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26750 7090 6950 17422 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26751 6950 6979 17422 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26752 6979 7108 17422 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26753 7257 7265 17423 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26754 7265 7090 17423 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26755 7090 7108 17423 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26756 7108 7257 17423 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26757 7388 7407 17424 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26758 7407 7265 17424 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26759 7265 7257 17424 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26760 7257 7388 17424 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26761 7491 7526 17425 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26762 7526 7407 17425 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26763 7407 7388 17425 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26764 7388 7491 17425 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26765 7603 7649 17426 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26766 7649 7526 17426 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26767 7526 7491 17426 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26768 7491 7603 17426 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26769 7687 7765 17427 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26770 7765 7649 17427 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26771 7649 7603 17427 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26772 7603 7687 17427 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26773 7772 7854 17428 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26774 7854 7765 17428 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26775 7765 7687 17428 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26776 7687 7772 17428 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26777 7833 7913 17429 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26778 7913 7854 17429 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26779 7854 7772 17429 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26780 7772 7833 17429 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26781 7863 7961 17430 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26782 7961 7913 17430 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26783 7913 7833 17430 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26784 7833 7863 17430 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26785 7874 7974 17431 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26786 7974 7961 17431 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26787 7961 7863 17431 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26788 7863 7874 17431 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26789 7864 7962 17432 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26790 7962 7974 17432 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26791 7974 7874 17432 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26792 7874 7864 17432 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26793 7834 7914 17433 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26794 7914 7962 17433 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26795 7962 7864 17433 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26796 7864 7834 17433 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26797 7773 7855 17434 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26798 7855 7914 17434 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26799 7914 7834 17434 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26800 7834 7773 17434 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26801 7688 7766 17435 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26802 7766 7855 17435 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26803 7855 7773 17435 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26804 7773 7688 17435 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26805 7604 7650 17436 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26806 7650 7766 17436 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26807 7766 7688 17436 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26808 7688 7604 17436 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26809 7492 7527 17437 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26810 7527 7650 17437 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26811 7650 7604 17437 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26812 7604 7492 17437 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26813 7389 7408 17438 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26814 7408 7527 17438 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26815 7527 7492 17438 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26816 7492 7389 17438 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26817 7258 7266 17439 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26818 7266 7408 17439 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26819 7408 7389 17439 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26820 7389 7258 17439 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26821 7109 7091 17440 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26822 7091 7266 17440 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26823 7266 7258 17440 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26824 7258 7109 17440 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26825 6980 6951 17441 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26826 6951 7091 17441 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26827 7091 7109 17441 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26828 7109 6980 17441 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26829 6851 6780 17442 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26830 6780 6951 17442 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26831 6951 6980 17442 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26832 6980 6851 17442 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26833 6721 6633 17443 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26834 6633 6780 17443 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26835 6780 6851 17443 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26836 6851 6721 17443 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26837 6582 6423 17444 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26838 6423 6633 17444 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26839 6633 6721 17444 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26840 6721 6582 17444 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26841 6381 6211 17445 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26842 6211 6423 17445 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26843 6423 6582 17445 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26844 6582 6381 17445 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26845 6222 6059 17446 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26846 6059 6211 17446 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26847 6211 6381 17446 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26848 6381 6222 17446 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26849 6103 5940 17447 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26850 5940 6059 17447 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26851 6059 6222 17447 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26852 6222 6103 17447 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26853 6017 5853 17448 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26854 5853 5940 17448 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26855 5940 6103 17448 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26856 6103 6017 17448 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26857 5957 5770 17449 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26858 5770 5853 17449 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26859 5853 6017 17449 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26860 6017 5957 17449 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26861 5912 5726 17450 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26862 5726 5770 17450 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26863 5770 5957 17450 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26864 5957 5912 17450 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26865 5897 5709 17451 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26866 5709 5726 17451 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26867 5726 5912 17451 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26868 5912 5897 17451 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26869 5911 5725 17452 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26870 5725 5709 17452 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26871 5709 5897 17452 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26872 5897 5911 17452 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26873 5956 5769 17453 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26874 5769 5725 17453 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26875 5725 5911 17453 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26876 5911 5956 17453 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26877 6016 5852 17454 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26878 5852 5769 17454 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26879 5769 5956 17454 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26880 5956 6016 17454 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26881 6102 5939 17455 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26882 5939 5852 17455 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26883 5852 6016 17455 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26884 6016 6102 17455 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26885 6221 6058 17456 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26886 6058 5939 17456 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26887 5939 6102 17456 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26888 6102 6221 17456 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26889 6380 6210 17457 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26890 6210 6058 17457 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26891 6058 6221 17457 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26892 6221 6380 17457 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26893 6581 6422 17458 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26894 6422 6210 17458 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26895 6210 6380 17458 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26896 6380 6581 17458 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26897 6720 6632 17459 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26898 6632 6422 17459 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26899 6422 6581 17459 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26900 6581 6720 17459 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26901 6850 6779 17460 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26902 6779 6632 17460 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26903 6632 6720 17460 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26904 6720 6850 17460 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26905 6979 6950 17461 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26906 6950 6779 17461 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26907 6779 6850 17461 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26908 6850 6979 17461 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26909 7119 7108 17462 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26910 7108 6979 17462 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26911 6979 7012 17462 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26912 7012 7119 17462 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26913 7234 7257 17463 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26914 7257 7108 17463 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26915 7108 7119 17463 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26916 7119 7234 17463 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26917 7351 7388 17464 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26918 7388 7257 17464 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26919 7257 7234 17464 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26920 7234 7351 17464 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26921 7447 7491 17465 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26922 7491 7388 17465 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26923 7388 7351 17465 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26924 7351 7447 17465 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26925 7515 7603 17466 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26926 7603 7491 17466 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26927 7491 7447 17466 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26928 7447 7515 17466 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26929 7605 7687 17467 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26930 7687 7603 17467 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26931 7603 7515 17467 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26932 7515 7605 17467 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26933 7657 7772 17468 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26934 7772 7687 17468 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26935 7687 7605 17468 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26936 7605 7657 17468 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26937 7713 7833 17469 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26938 7833 7772 17469 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26939 7772 7657 17469 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26940 7657 7713 17469 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26941 7733 7863 17470 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26942 7863 7833 17470 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26943 7833 7713 17470 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26944 7713 7733 17470 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26945 7747 7874 17471 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26946 7874 7863 17471 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26947 7863 7733 17471 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26948 7733 7747 17471 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26949 7734 7864 17472 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26950 7864 7874 17472 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26951 7874 7747 17472 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26952 7747 7734 17472 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26953 7714 7834 17473 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26954 7834 7864 17473 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26955 7864 7734 17473 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26956 7734 7714 17473 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26957 7658 7773 17474 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26958 7773 7834 17474 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26959 7834 7714 17474 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26960 7714 7658 17474 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26961 7606 7688 17475 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26962 7688 7773 17475 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26963 7773 7658 17475 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26964 7658 7606 17475 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26965 7516 7604 17476 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26966 7604 7688 17476 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26967 7688 7606 17476 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26968 7606 7516 17476 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26969 7448 7492 17477 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26970 7492 7604 17477 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26971 7604 7516 17477 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26972 7516 7448 17477 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26973 7352 7389 17478 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26974 7389 7492 17478 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26975 7492 7448 17478 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26976 7448 7352 17478 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26977 7235 7258 17479 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26978 7258 7389 17479 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26979 7389 7352 17479 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26980 7352 7235 17479 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26981 7120 7109 17480 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26982 7109 7258 17480 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26983 7258 7235 17480 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26984 7235 7120 17480 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26985 7013 6980 17481 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26986 6980 7109 17481 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26987 7109 7120 17481 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26988 7120 7013 17481 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26989 6904 6851 17482 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26990 6851 6980 17482 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26991 6980 7013 17482 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26992 7013 6904 17482 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26993 6778 6721 17483 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26994 6721 6851 17483 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26995 6851 6904 17483 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26996 6904 6778 17483 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26997 6689 6582 17484 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26998 6582 6721 17484 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 26999 6721 6778 17484 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27000 6778 6689 17484 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27001 6584 6381 17485 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27002 6381 6582 17485 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27003 6582 6689 17485 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27004 6689 6584 17485 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27005 6436 6222 17486 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27006 6222 6381 17486 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27007 6381 6584 17486 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27008 6584 6436 17486 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27009 6315 6103 17487 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27010 6103 6222 17487 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27011 6222 6436 17487 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27012 6436 6315 17487 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27013 6225 6017 17488 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27014 6017 6103 17488 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27015 6103 6315 17488 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27016 6315 6225 17488 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27017 6158 5957 17489 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27018 5957 6017 17489 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27019 6017 6225 17489 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27020 6225 6158 17489 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27021 6136 5912 17490 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27022 5912 5957 17490 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27023 5957 6158 17490 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27024 6158 6136 17490 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27025 6121 5897 17491 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27026 5897 5912 17491 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27027 5912 6136 17491 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27028 6136 6121 17491 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27029 6135 5911 17492 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27030 5911 5897 17492 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27031 5897 6121 17492 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27032 6121 6135 17492 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27033 6157 5956 17493 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27034 5956 5911 17493 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27035 5911 6135 17493 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27036 6135 6157 17493 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27037 6224 6016 17494 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27038 6016 5956 17494 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27039 5956 6157 17494 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27040 6157 6224 17494 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27041 6314 6102 17495 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27042 6102 6016 17495 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27043 6016 6224 17495 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27044 6224 6314 17495 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27045 6435 6221 17496 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27046 6221 6102 17496 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27047 6102 6314 17496 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27048 6314 6435 17496 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27049 6583 6380 17497 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27050 6380 6221 17497 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27051 6221 6435 17497 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27052 6435 6583 17497 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27053 6688 6581 17498 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27054 6581 6380 17498 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27055 6380 6583 17498 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27056 6583 6688 17498 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27057 6777 6720 17499 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27058 6720 6581 17499 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27059 6581 6688 17499 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27060 6688 6777 17499 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27061 6903 6850 17500 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27062 6850 6720 17500 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27063 6720 6777 17500 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27064 6777 6903 17500 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27065 7012 6979 17501 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27066 6979 6850 17501 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27067 6850 6903 17501 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27068 6903 7012 17501 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27069 7117 7119 17502 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27070 7119 7012 17502 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27071 7012 7028 17502 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27072 7028 7117 17502 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27073 7192 7234 17503 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27074 7234 7119 17503 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27075 7119 7117 17503 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27076 7117 7192 17503 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27077 7305 7351 17504 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27078 7351 7234 17504 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27079 7234 7192 17504 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27080 7192 7305 17504 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27081 7375 7447 17505 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27082 7447 7351 17505 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27083 7351 7305 17505 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27084 7305 7375 17505 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27085 7442 7515 17506 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27086 7515 7447 17506 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27087 7447 7375 17506 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27088 7375 7442 17506 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27089 7484 7605 17507 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27090 7605 7515 17507 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27091 7515 7442 17507 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27092 7442 7484 17507 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27093 7530 7657 17508 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27094 7657 7605 17508 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27095 7605 7484 17508 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27096 7484 7530 17508 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27097 7563 7713 17509 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27098 7713 7657 17509 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27099 7657 7530 17509 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27100 7530 7563 17509 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27101 7590 7733 17510 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27102 7733 7713 17510 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27103 7713 7563 17510 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27104 7563 7590 17510 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27105 7602 7747 17511 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27106 7747 7733 17511 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27107 7733 7590 17511 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27108 7590 7602 17511 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27109 7591 7734 17512 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27110 7734 7747 17512 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27111 7747 7602 17512 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27112 7602 7591 17512 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27113 7564 7714 17513 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27114 7714 7734 17513 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27115 7734 7591 17513 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27116 7591 7564 17513 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27117 7531 7658 17514 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27118 7658 7714 17514 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27119 7714 7564 17514 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27120 7564 7531 17514 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27121 7485 7606 17515 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27122 7606 7658 17515 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27123 7658 7531 17515 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27124 7531 7485 17515 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27125 7443 7516 17516 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27126 7516 7606 17516 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27127 7606 7485 17516 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27128 7485 7443 17516 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27129 7376 7448 17517 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27130 7448 7516 17517 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27131 7516 7443 17517 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27132 7443 7376 17517 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27133 7306 7352 17518 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27134 7352 7448 17518 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27135 7448 7376 17518 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27136 7376 7306 17518 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27137 7193 7235 17519 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27138 7235 7352 17519 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27139 7352 7306 17519 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27140 7306 7193 17519 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27141 7118 7120 17520 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27142 7120 7235 17520 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27143 7235 7193 17520 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27144 7193 7118 17520 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27145 7029 7013 17521 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27146 7013 7120 17521 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27147 7120 7118 17521 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27148 7118 7029 17521 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27149 6956 6904 17522 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27150 6904 7013 17522 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27151 7013 7029 17522 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27152 7029 6956 17522 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27153 6868 6778 17523 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27154 6778 6904 17523 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27155 6904 6956 17523 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27156 6956 6868 17523 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27157 6769 6689 17524 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27158 6689 6778 17524 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27159 6778 6868 17524 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27160 6868 6769 17524 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27161 6714 6584 17525 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27162 6584 6689 17525 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27163 6689 6769 17525 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27164 6769 6714 17525 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27165 6637 6436 17526 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27166 6436 6584 17526 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27167 6584 6714 17526 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27168 6714 6637 17526 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27169 6580 6315 17527 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27170 6315 6436 17527 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27171 6436 6637 17527 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27172 6637 6580 17527 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27173 6499 6225 17528 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27174 6225 6315 17528 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27175 6315 6580 17528 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27176 6580 6499 17528 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27177 6447 6158 17529 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27178 6158 6225 17529 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27179 6225 6499 17529 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27180 6499 6447 17529 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27181 6409 6136 17530 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27182 6136 6158 17530 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27183 6158 6447 17530 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27184 6447 6409 17530 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27185 6392 6121 17531 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27186 6121 6136 17531 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27187 6136 6409 17531 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27188 6409 6392 17531 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27189 6408 6135 17532 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27190 6135 6121 17532 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27191 6121 6392 17532 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27192 6392 6408 17532 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27193 6446 6157 17533 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27194 6157 6135 17533 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27195 6135 6408 17533 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27196 6408 6446 17533 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27197 6498 6224 17534 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27198 6224 6157 17534 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27199 6157 6446 17534 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27200 6446 6498 17534 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27201 6579 6314 17535 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27202 6314 6224 17535 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27203 6224 6498 17535 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27204 6498 6579 17535 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27205 6636 6435 17536 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27206 6435 6314 17536 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27207 6314 6579 17536 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27208 6579 6636 17536 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27209 6713 6583 17537 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27210 6583 6435 17537 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27211 6435 6636 17537 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27212 6636 6713 17537 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27213 6768 6688 17538 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27214 6688 6583 17538 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27215 6583 6713 17538 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27216 6713 6768 17538 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27217 6867 6777 17539 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27218 6777 6688 17539 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27219 6688 6768 17539 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27220 6768 6867 17539 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27221 6955 6903 17540 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27222 6903 6777 17540 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27223 6777 6867 17540 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27224 6867 6955 17540 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27225 7028 7012 17541 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27226 7012 6903 17541 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27227 6903 6955 17541 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27228 6955 7028 17541 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27229 7104 7117 17542 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27230 7117 7028 17542 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27231 7028 7038 17542 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27232 7038 7104 17542 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27233 7161 7192 17543 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27234 7192 7117 17543 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27235 7117 7104 17543 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27236 7104 7161 17543 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27237 7213 7305 17544 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27238 7305 7192 17544 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27239 7192 7161 17544 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27240 7161 7213 17544 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27241 7291 7375 17545 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27242 7375 7305 17545 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27243 7305 7213 17545 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27244 7213 7291 17545 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27245 7329 7442 17546 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27246 7442 7375 17546 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27247 7375 7291 17546 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27248 7291 7329 17546 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27249 7368 7484 17547 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27250 7484 7442 17547 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27251 7442 7329 17547 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27252 7329 7368 17547 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27253 7402 7530 17548 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27254 7530 7484 17548 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27255 7484 7368 17548 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27256 7368 7402 17548 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27257 7424 7563 17549 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27258 7563 7530 17549 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27259 7530 7402 17549 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27260 7402 7424 17549 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27261 7440 7590 17550 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27262 7590 7563 17550 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27263 7563 7424 17550 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27264 7424 7440 17550 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27265 7446 7602 17551 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27266 7602 7590 17551 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27267 7590 7440 17551 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27268 7440 7446 17551 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27269 7441 7591 17552 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27270 7591 7602 17552 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27271 7602 7446 17552 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27272 7446 7441 17552 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27273 7423 7564 17553 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27274 7564 7591 17553 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27275 7591 7441 17553 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27276 7441 7423 17553 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27277 7403 7531 17554 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27278 7531 7564 17554 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27279 7564 7423 17554 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27280 7423 7403 17554 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27281 7369 7485 17555 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27282 7485 7531 17555 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27283 7531 7403 17555 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27284 7403 7369 17555 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27285 7330 7443 17556 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27286 7443 7485 17556 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27287 7485 7369 17556 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27288 7369 7330 17556 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27289 7292 7376 17557 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27290 7376 7443 17557 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27291 7443 7330 17557 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27292 7330 7292 17557 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27293 7214 7306 17558 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27294 7306 7376 17558 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27295 7376 7292 17558 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27296 7292 7214 17558 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27297 7162 7193 17559 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27298 7193 7306 17559 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27299 7306 7214 17559 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27300 7214 7162 17559 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27301 7105 7118 17560 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27302 7118 7193 17560 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27303 7193 7162 17560 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27304 7162 7105 17560 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27305 7039 7029 17561 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27306 7029 7118 17561 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27307 7118 7105 17561 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27308 7105 7039 17561 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27309 6991 6956 17562 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27310 6956 7029 17562 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27311 7029 7039 17562 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27312 7039 6991 17562 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27313 6942 6868 17563 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27314 6868 6956 17563 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27315 6956 6991 17563 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27316 6991 6942 17563 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27317 6885 6769 17564 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27318 6769 6868 17564 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27319 6868 6942 17564 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27320 6942 6885 17564 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27321 6832 6714 17565 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27322 6714 6769 17565 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27323 6769 6885 17565 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27324 6885 6832 17565 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27325 6773 6637 17566 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27326 6637 6714 17566 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27327 6714 6832 17566 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27328 6832 6773 17566 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27329 6747 6580 17567 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27330 6580 6637 17567 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27331 6637 6773 17567 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27332 6773 6747 17567 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27333 6725 6499 17568 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27334 6499 6580 17568 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27335 6580 6747 17568 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27336 6747 6725 17568 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27337 6701 6447 17569 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27338 6447 6499 17569 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27339 6499 6725 17569 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27340 6725 6701 17569 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27341 6681 6409 17570 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27342 6409 6447 17570 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27343 6447 6701 17570 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27344 6701 6681 17570 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27345 6674 6392 17571 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27346 6392 6409 17571 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27347 6409 6681 17571 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27348 6681 6674 17571 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27349 6680 6408 17572 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27350 6408 6392 17572 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27351 6392 6674 17572 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27352 6674 6680 17572 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27353 6700 6446 17573 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27354 6446 6408 17573 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27355 6408 6680 17573 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27356 6680 6700 17573 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27357 6724 6498 17574 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27358 6498 6446 17574 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27359 6446 6700 17574 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27360 6700 6724 17574 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27361 6746 6579 17575 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27362 6579 6498 17575 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27363 6498 6724 17575 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27364 6724 6746 17575 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27365 6772 6636 17576 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27366 6636 6579 17576 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27367 6579 6746 17576 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27368 6746 6772 17576 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27369 6831 6713 17577 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27370 6713 6636 17577 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27371 6636 6772 17577 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27372 6772 6831 17577 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27373 6884 6768 17578 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27374 6768 6713 17578 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27375 6713 6831 17578 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27376 6831 6884 17578 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27377 6941 6867 17579 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27378 6867 6768 17579 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27379 6768 6884 17579 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27380 6884 6941 17579 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27381 6990 6955 17580 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27382 6955 6867 17580 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27383 6867 6941 17580 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27384 6941 6990 17580 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27385 7038 7028 17581 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27386 7028 6955 17581 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27387 6955 6990 17581 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27388 6990 7038 17581 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5)} Face 27389 7086 7104 17582 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27390 7104 7038 17582 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27391 7038 7048 17582 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27392 7048 7086 17582 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27393 7121 7161 17583 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27394 7161 7104 17583 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27395 7104 7086 17583 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27396 7086 7121 17583 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27397 7146 7213 17584 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27398 7213 7161 17584 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27399 7161 7121 17584 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27400 7121 7146 17584 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27401 7167 7291 17585 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27402 7291 7213 17585 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27403 7213 7146 17585 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27404 7146 7167 17585 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27405 7184 7329 17586 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27406 7329 7291 17586 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27407 7291 7167 17586 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27408 7167 7184 17586 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27409 7204 7368 17587 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27410 7368 7329 17587 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27411 7329 7184 17587 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27412 7184 7204 17587 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27413 7237 7402 17588 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27414 7402 7368 17588 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27415 7368 7204 17588 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27416 7204 7237 17588 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27417 7255 7424 17589 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27418 7424 7402 17589 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27419 7402 7237 17589 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27420 7237 7255 17589 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27421 7277 7440 17590 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27422 7440 7424 17590 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27423 7424 7255 17590 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27424 7255 7277 17590 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27425 7278 7446 17591 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27426 7446 7440 17591 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27427 7440 7277 17591 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27428 7277 7278 17591 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27429 7276 7441 17592 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27430 7441 7446 17592 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27431 7446 7278 17592 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27432 7278 7276 17592 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27433 7254 7423 17593 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27434 7423 7441 17593 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27435 7441 7276 17593 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27436 7276 7254 17593 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27437 7238 7403 17594 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27438 7403 7423 17594 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27439 7423 7254 17594 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27440 7254 7238 17594 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27441 7203 7369 17595 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27442 7369 7403 17595 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27443 7403 7238 17595 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27444 7238 7203 17595 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27445 7185 7330 17596 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27446 7330 7369 17596 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27447 7369 7203 17596 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27448 7203 7185 17596 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27449 7168 7292 17597 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27450 7292 7330 17597 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27451 7330 7185 17597 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27452 7185 7168 17597 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27453 7147 7214 17598 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27454 7214 7292 17598 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27455 7292 7168 17598 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27456 7168 7147 17598 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27457 7122 7162 17599 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27458 7162 7214 17599 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27459 7214 7147 17599 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27460 7147 7122 17599 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27461 7087 7105 17600 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27462 7105 7162 17600 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27463 7162 7122 17600 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27464 7122 7087 17600 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27465 7049 7039 17601 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27466 7039 7105 17601 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27467 7105 7087 17601 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27468 7087 7049 17601 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27469 7027 6991 17602 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27470 6991 7039 17602 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27471 7039 7049 17602 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27472 7049 7027 17602 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27473 7008 6942 17603 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27474 6942 6991 17603 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27475 6991 7027 17603 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27476 7027 7008 17603 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27477 6977 6885 17604 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27478 6885 6942 17604 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27479 6942 7008 17604 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27480 7008 6977 17604 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27481 6959 6832 17605 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27482 6832 6885 17605 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27483 6885 6977 17605 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27484 6977 6959 17605 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27485 6933 6773 17606 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27486 6773 6832 17606 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27487 6832 6959 17606 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27488 6959 6933 17606 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27489 6919 6747 17607 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27490 6747 6773 17607 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27491 6773 6933 17607 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27492 6933 6919 17607 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27493 6900 6725 17608 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27494 6725 6747 17608 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27495 6747 6919 17608 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27496 6919 6900 17608 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27497 6888 6701 17609 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27498 6701 6725 17609 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27499 6725 6900 17609 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27500 6900 6888 17609 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27501 6879 6681 17610 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27502 6681 6701 17610 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27503 6701 6888 17610 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27504 6888 6879 17610 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27505 6878 6674 17611 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27506 6674 6681 17611 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27507 6681 6879 17611 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27508 6879 6878 17611 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27509 6880 6680 17612 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27510 6680 6674 17612 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27511 6674 6878 17612 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27512 6878 6880 17612 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27513 6887 6700 17613 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27514 6700 6680 17613 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27515 6680 6880 17613 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27516 6880 6887 17613 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27517 6899 6724 17614 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27518 6724 6700 17614 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27519 6700 6887 17614 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27520 6887 6899 17614 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27521 6918 6746 17615 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27522 6746 6724 17615 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27523 6724 6899 17615 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27524 6899 6918 17615 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27525 6932 6772 17616 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27526 6772 6746 17616 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27527 6746 6918 17616 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27528 6918 6932 17616 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27529 6958 6831 17617 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27530 6831 6772 17617 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27531 6772 6932 17617 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27532 6932 6958 17617 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27533 6976 6884 17618 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27534 6884 6831 17618 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27535 6831 6958 17618 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27536 6958 6976 17618 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27537 7007 6941 17619 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27538 6941 6884 17619 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27539 6884 6976 17619 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27540 6976 7007 17619 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27541 7026 6990 17620 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27542 6990 6941 17620 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27543 6941 7007 17620 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27544 7007 7026 17620 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27545 7048 7038 17621 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27546 7038 6990 17621 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27547 6990 7026 17621 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27548 7026 7048 17621 {mat="nomaterial" groups="default irisl" rgb=(1 1 1)} Face 27549 10983 11000 17622 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27550 11000 10997 17622 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27551 10997 11007 17622 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27552 11007 10983 17622 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27553 11007 10997 17623 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27554 10997 11025 17623 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27555 11025 11022 17623 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27556 11022 11007 17623 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27557 11022 11025 17624 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27558 11025 10973 17624 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27559 10973 10998 17624 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27560 10998 11022 17624 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27561 10998 10973 17625 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27562 10973 10993 17625 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27563 10993 10990 17625 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27564 10990 10998 17625 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27565 10990 10993 17626 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27566 10993 10967 17626 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27567 10967 10986 17626 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27568 10986 10990 17626 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27569 10986 10967 17627 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27570 10967 10942 17627 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27571 10942 10961 17627 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27572 10961 10986 17627 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27573 10792 10789 17628 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27574 10789 10682 17628 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27575 10682 10659 17628 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27576 10659 10792 17628 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27577 10792 10659 17629 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27578 10659 10759 17629 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27579 10759 10791 17629 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27580 10791 10792 17629 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27581 10632 10629 17630 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27582 10629 10442 17630 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27583 10442 10397 17630 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27584 10397 10632 17630 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27585 10632 10397 17631 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27586 10397 10537 17631 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27587 10537 10612 17631 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27588 10612 10632 17631 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27589 10710 10700 17632 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27590 10700 10522 17632 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27591 10522 10485 17632 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27592 10485 10710 17632 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27593 10710 10485 17633 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27594 10485 10655 17633 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27595 10655 10702 17633 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27596 10702 10710 17633 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27597 10504 10490 17634 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27598 10490 10365 17634 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27599 10365 10344 17634 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27600 10344 10504 17634 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27601 10504 10344 17635 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27602 10344 10469 17635 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27603 10469 10507 17635 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27604 10507 10504 17635 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27605 10143 10168 17636 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27606 10168 10207 17636 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27607 10207 10170 17636 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27608 10170 10143 17636 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27609 10143 10170 17637 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27610 10170 10117 17637 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27611 10117 10116 17637 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27612 10116 10143 17637 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27613 9646 9625 17638 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27614 9625 9568 17638 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27615 9568 9690 17638 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27616 9690 9646 17638 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27617 9714 9690 17639 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27618 9690 9568 17639 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27619 9568 9712 17639 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27620 9712 9714 17639 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27621 9660 9712 17640 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27622 9712 9568 17640 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27623 9568 9615 17640 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27624 9615 9660 17640 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27625 10937 10947 17641 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27626 10947 10928 17641 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27627 10928 10939 17641 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27628 10939 10937 17641 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27629 10944 10920 17642 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27630 10920 10947 17642 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27631 10947 10943 17642 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27632 10943 10944 17642 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27633 66 45 17643 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27634 45 38 17643 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27635 38 48 17643 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27636 48 66 17643 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27637 36 48 17644 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27638 48 23 17644 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27639 23 20 17644 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27640 20 36 17644 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27641 40 20 17645 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27642 20 47 17645 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27643 47 72 17645 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27644 72 40 17645 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27645 69 72 17646 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27646 72 55 17646 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27647 55 52 17646 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27648 52 69 17646 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27649 107 78 17647 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27650 78 84 17647 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27651 84 103 17647 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27652 103 107 17647 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27653 285 256 17648 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27654 256 386 17648 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27655 386 363 17648 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27656 363 285 17648 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27657 362 386 17649 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27658 386 254 17649 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27659 254 286 17649 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27660 286 362 17649 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27661 475 416 17650 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27662 416 648 17650 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27663 648 603 17650 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27664 603 475 17650 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27665 628 648 17651 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27666 648 433 17651 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27667 433 508 17651 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27668 508 628 17651 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27669 392 345 17652 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27670 345 560 17652 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27671 560 523 17652 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27672 523 392 17652 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27673 521 560 17653 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27674 560 343 17653 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27675 343 390 17653 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27676 390 521 17653 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27677 602 555 17654 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27678 555 701 17654 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27679 701 680 17654 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27680 680 602 17654 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27681 664 701 17655 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27682 701 538 17655 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27683 538 576 17655 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27684 576 664 17655 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27685 845 877 17656 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27686 877 875 17656 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27687 875 838 17656 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27688 838 845 17656 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27689 904 875 17657 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27690 875 929 17657 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27691 929 928 17657 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27692 928 904 17657 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27693 1331 1333 17658 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27694 1333 1430 17658 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27695 1430 1355 17658 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27696 1355 1331 17658 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27697 1399 1355 17659 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27698 1355 1430 17659 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27699 1430 1420 17659 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27700 1420 1399 17659 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27701 1474 1420 17660 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27702 1420 1430 17660 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27703 1430 1477 17660 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27704 1477 1474 17660 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27705 113 98 17661 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27706 98 106 17661 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27707 106 117 17661 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27708 117 113 17661 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27709 113 125 17662 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27710 125 102 17662 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27711 102 98 17662 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27712 98 113 17662 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27713 10980 11039 17663 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27714 11039 11028 17663 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27715 11028 10933 17663 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27716 10933 10980 17663 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27717 11030 11044 17664 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27718 11044 11039 17664 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27719 11039 10980 17664 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27720 10980 11030 17664 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27721 11034 11043 17665 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27722 11043 11044 17665 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27723 11044 11030 17665 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27724 11030 11034 17665 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27725 11021 11042 17666 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27726 11042 11043 17666 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27727 11043 11034 17666 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27728 11034 11021 17666 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27729 10989 11035 17667 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27730 11035 11042 17667 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27731 11042 11021 17667 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27732 11021 10989 17667 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27733 10951 10960 17668 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27734 10960 11035 17668 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27735 11035 10989 17668 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27736 10989 10951 17668 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27737 10822 10810 17669 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27738 10810 10960 17669 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27739 10960 10892 17669 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27740 10892 10822 17669 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27741 10822 10739 17670 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27742 10739 10418 17670 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27743 10418 10810 17670 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27744 10810 10822 17670 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27745 10685 10250 17671 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27746 10250 10418 17671 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27747 10418 10739 17671 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27748 10739 10685 17671 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27749 10556 10167 17672 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27750 10167 10250 17672 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27751 10250 10685 17672 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27752 10685 10556 17672 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27753 10453 10134 17673 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27754 10134 10167 17673 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27755 10167 10556 17673 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27756 10556 10453 17673 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27757 10441 10157 17674 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27758 10157 10134 17674 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27759 10134 10453 17674 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27760 10453 10441 17674 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27761 10512 10223 17675 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27762 10223 10157 17675 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27763 10157 10441 17675 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27764 10441 10512 17675 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27765 10814 10578 17676 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27766 10578 10223 17676 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27767 10223 10618 17676 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27768 10618 10814 17676 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27769 10878 10875 17677 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27770 10875 10578 17677 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27771 10578 10814 17677 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27772 10814 10878 17677 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27773 10933 11028 17678 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27774 11028 10875 17678 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27775 10875 10878 17678 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27776 10878 10933 17678 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27777 10857 10756 17679 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27778 10756 10822 17679 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27779 10822 10892 17679 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27780 10892 10857 17679 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27781 10701 10681 17680 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27782 10681 10685 17680 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27783 10685 10739 17680 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27784 10739 10701 17680 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27785 10681 10640 17681 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27786 10640 10556 17681 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27787 10556 10685 17681 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27788 10685 10681 17681 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27789 10640 10585 17682 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27790 10585 10453 17682 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27791 10453 10556 17682 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27792 10556 10640 17682 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27793 10585 10592 17683 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27794 10592 10441 17683 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27795 10441 10453 17683 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27796 10453 10585 17683 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27797 10592 10550 17684 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27798 10550 10512 17684 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27799 10512 10441 17684 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27800 10441 10592 17684 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27801 10550 10624 17685 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27802 10624 10618 17685 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27803 10618 10512 17685 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27804 10512 10550 17685 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27805 10624 10885 17686 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27806 10885 10814 17686 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27807 10814 10618 17686 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27808 10618 10624 17686 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27809 10953 10987 17687 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27810 10987 10933 17687 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27811 10933 10878 17687 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27812 10878 10953 17687 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27813 10987 11010 17688 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27814 11010 10980 17688 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27815 10980 10933 17688 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27816 10933 10987 17688 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27817 11010 11024 17689 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27818 11024 11030 17689 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27819 11030 10980 17689 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27820 10980 11010 17689 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27821 11013 10995 17690 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27822 10995 11021 17690 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27823 11021 11034 17690 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27824 11034 11013 17690 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27825 10995 10968 17691 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27826 10968 10989 17691 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27827 10989 11021 17691 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27828 11021 10995 17691 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27829 10968 10922 17692 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27830 10922 10951 17692 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27831 10951 10989 17692 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27832 10989 10968 17692 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27833 10922 10857 17693 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27834 10857 10892 17693 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27835 10892 10951 17693 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27836 10951 10922 17693 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27837 10883 10603 17694 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27838 10603 10578 17694 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27839 10578 10875 17694 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27840 10875 10883 17694 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27841 10603 10273 17695 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27842 10273 10223 17695 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27843 10223 10578 17695 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27844 10578 10603 17695 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27845 10273 10203 17696 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27846 10203 10157 17696 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27847 10157 10223 17696 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27848 10223 10273 17696 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27849 10203 10160 17697 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27850 10160 10134 17697 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27851 10134 10157 17697 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27852 10157 10203 17697 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27853 10160 10199 17698 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27854 10199 10167 17698 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27855 10167 10134 17698 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27856 10134 10160 17698 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27857 10199 10293 17699 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27858 10293 10250 17699 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27859 10250 10167 17699 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27860 10167 10199 17699 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27861 10293 10511 17700 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27862 10511 10418 17700 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27863 10418 10250 17700 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27864 10250 10293 17700 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27865 10511 10832 17701 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27866 10832 10810 17701 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27867 10810 10418 17701 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27868 10418 10511 17701 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27869 10832 10962 17702 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27870 10962 10960 17702 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27871 10960 10810 17702 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27872 10810 10832 17702 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27873 10962 11032 17703 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27874 11032 11035 17703 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27875 11035 10960 17703 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27876 10960 10962 17703 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27877 11032 11037 17704 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27878 11037 11042 17704 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27879 11042 11035 17704 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27880 11035 11032 17704 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27881 11037 11040 17705 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27882 11040 11043 17705 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27883 11043 11042 17705 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27884 11042 11037 17705 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27885 11040 11041 17706 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27886 11041 11044 17706 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27887 11044 11043 17706 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27888 11043 11040 17706 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27889 11041 11038 17707 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27890 11038 11039 17707 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27891 11039 11044 17707 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27892 11044 11041 17707 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27893 11038 11029 17708 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27894 11029 11028 17708 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27895 11028 11039 17708 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27896 11039 11038 17708 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27897 11029 10883 17709 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27898 10883 10875 17709 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27899 10875 11028 17709 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27900 11028 11029 17709 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27901 10269 10296 17710 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27902 10296 10211 17710 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27903 10211 10196 17710 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27904 10196 10269 17710 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27905 10784 10696 17711 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27906 10696 10790 17711 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27907 10790 10861 17711 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27908 10861 10784 17711 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27909 10834 10784 17712 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27910 10784 10861 17712 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27911 10861 10909 17712 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27912 10909 10834 17712 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27913 10652 10656 17713 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27914 10656 10778 17713 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27915 10778 10774 17713 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27916 10774 10652 17713 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27917 10664 10652 17714 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27918 10652 10774 17714 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27919 10774 10775 17714 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27920 10775 10664 17714 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27921 10696 10664 17715 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27922 10664 10775 17715 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27923 10775 10790 17715 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27924 10790 10696 17715 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27925 10078 10104 17716 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27926 10104 10057 17716 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27927 10057 10001 17716 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27928 10001 10078 17716 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27929 10099 10078 17717 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27930 10078 10001 17717 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27931 10001 10069 17717 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27932 10069 10099 17717 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27933 10227 10189 17718 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27934 10189 10173 17718 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27935 10173 10195 17718 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27936 10195 10227 17718 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27937 10188 10265 17719 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27938 10265 10283 17719 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27939 10283 10180 17719 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27940 10180 10188 17719 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27941 10956 10935 17720 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27942 10935 11014 17720 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27943 11014 11001 17720 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27944 11001 10956 17720 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27945 10956 10912 17721 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27946 10912 10868 17721 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27947 10868 10935 17721 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27948 10935 10956 17721 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27949 10884 10971 17722 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27950 10971 11018 17722 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27951 11018 10904 17722 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27952 10904 10884 17722 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27953 10733 10884 17723 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27954 10884 10904 17723 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27955 10904 10823 17723 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27956 10823 10733 17723 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27957 10954 10874 17724 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27958 10874 10848 17724 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27959 10848 10948 17724 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27960 10948 10954 17724 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27961 10957 10946 17725 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27962 10946 10918 17725 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27963 10918 10965 17725 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27964 10965 10957 17725 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27965 10992 10985 17726 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27966 10985 10957 17726 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27967 10957 10965 17726 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27968 10965 10992 17726 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27969 10781 10801 17727 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27970 10801 10761 17727 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27971 10761 10732 17727 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27972 10732 10781 17727 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27973 10801 10733 17728 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27974 10733 10686 17728 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27975 10686 10761 17728 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27976 10761 10801 17728 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27977 10733 10472 17729 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27978 10472 10447 17729 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27979 10447 10686 17729 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27980 10686 10733 17729 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27981 10472 10265 17730 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27982 10265 10292 17730 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27983 10292 10447 17730 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27984 10447 10472 17730 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27985 10265 10227 17731 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27986 10227 10246 17731 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27987 10246 10292 17731 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27988 10292 10265 17731 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27989 10229 10246 17732 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27990 10246 10227 17732 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27991 10227 10195 17732 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27992 10195 10229 17732 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27993 11019 11001 17733 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27994 11001 11017 17733 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27995 11017 10996 17733 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27996 10996 11019 17733 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27997 10988 10999 17734 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27998 10999 10996 17734 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 27999 10996 11017 17734 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28000 11017 10988 17734 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28001 10307 10284 17735 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28002 10284 10581 17735 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28003 10581 10495 17735 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28004 10495 10307 17735 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28005 10017 9924 17736 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28006 9924 9974 17736 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28007 9974 10052 17736 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28008 10052 10017 17736 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28009 10125 10017 17737 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28010 10017 10052 17737 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28011 10052 10129 17737 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28012 10129 10125 17737 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28013 11038 11031 17738 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28014 11031 11008 17738 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28015 11008 11029 17738 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28016 11029 11038 17738 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28017 10495 10581 17739 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28018 10581 10891 17739 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28019 10891 10868 17739 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28020 10868 10495 17739 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28021 10371 10338 17740 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28022 10338 10307 17740 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28023 10307 10495 17740 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28024 10495 10371 17740 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28025 10069 10174 17741 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28026 10174 10179 17741 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28027 10179 10099 17741 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28028 10099 10069 17741 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28029 10868 10891 17742 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28030 10891 11008 17742 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28031 11008 10935 17742 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28032 10935 10868 17742 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28033 10764 10641 17743 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28034 10641 10785 17743 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28035 10785 10796 17743 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28036 10796 10764 17743 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28037 10924 10855 17744 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28038 10855 10857 17744 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28039 10857 10922 17744 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28040 10922 10924 17744 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28041 10855 10693 17745 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28042 10693 10756 17745 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28043 10756 10857 17745 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28044 10857 10855 17745 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28045 10693 10625 17746 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28046 10625 10701 17746 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28047 10701 10756 17746 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28048 10756 10693 17746 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28049 10625 10614 17747 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28050 10614 10681 17747 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28051 10681 10701 17747 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28052 10701 10625 17747 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28053 10614 10641 17748 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28054 10641 10640 17748 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28055 10640 10681 17748 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28056 10681 10614 17748 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28057 10641 10698 17749 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28058 10698 10585 17749 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28059 10585 10640 17749 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28060 10640 10641 17749 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28061 10698 10587 17750 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28062 10587 10592 17750 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28063 10592 10585 17750 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28064 10585 10698 17750 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28065 10587 10532 17751 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28066 10532 10550 17751 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28067 10550 10592 17751 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28068 10592 10587 17751 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28069 10532 10597 17752 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28070 10597 10624 17752 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28071 10624 10550 17752 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28072 10550 10532 17752 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28073 10597 10882 17753 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28074 10882 10885 17753 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28075 10885 10624 17753 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28076 10624 10597 17753 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28077 10882 10955 17754 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28078 10955 10953 17754 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28079 10953 10885 17754 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28080 10885 10882 17754 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28081 10955 10991 17755 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28082 10991 10987 17755 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28083 10987 10953 17755 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28084 10953 10955 17755 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28085 10991 11016 17756 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28086 11016 11010 17756 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28087 11010 10987 17756 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28088 10987 10991 17756 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28089 11016 11027 17757 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28090 11027 11024 17757 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28091 11024 11010 17757 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28092 11010 11016 17757 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28093 11027 11020 17758 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28094 11020 11013 17758 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28095 11013 11024 17758 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28096 11024 11027 17758 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28097 11020 11004 17759 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28098 11004 10995 17759 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28099 10995 11013 17759 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28100 11013 11020 17759 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28101 11004 10974 17760 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28102 10974 10968 17760 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28103 10968 10995 17760 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28104 10995 11004 17760 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28105 10974 10924 17761 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28106 10924 10922 17761 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28107 10922 10968 17761 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28108 10968 10974 17761 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28109 10531 10532 17762 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28110 10532 10587 17762 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28111 10587 10678 17762 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28112 10678 10531 17762 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28113 10940 10961 17763 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28114 10961 10942 17763 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28115 10942 10900 17763 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28116 10900 10940 17763 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28117 10895 10940 17764 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28118 10940 10900 17764 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28119 10900 10846 17764 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28120 10846 10895 17764 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28121 10903 10983 17765 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28122 10983 10955 17765 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28123 10955 10927 17765 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28124 10927 10903 17765 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28125 10882 10597 17766 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28126 10597 10661 17766 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28127 10661 10850 17766 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28128 10850 10882 17766 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28129 10798 10903 17767 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28130 10903 10927 17767 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28131 10927 10772 17767 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28132 10772 10798 17767 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28133 10772 10927 17768 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28134 10927 10850 17768 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28135 10850 10689 17768 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28136 10689 10772 17768 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28137 10322 10661 17769 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28138 10661 10531 17769 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28139 10531 10300 17769 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28140 10300 10322 17769 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28141 10300 10531 17770 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28142 10531 10508 17770 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28143 10508 10419 17770 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28144 10419 10300 17770 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28145 10661 10322 17771 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28146 10322 10519 17771 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28147 10519 10850 17771 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28148 10850 10661 17771 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28149 10889 10798 17772 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28150 10798 10636 17772 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28151 10636 10734 17772 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28152 10734 10889 17772 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28153 10695 10648 17773 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28154 10648 10508 17773 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28155 10508 10712 17773 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28156 10712 10695 17773 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28157 10508 10531 17774 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28158 10531 10678 17774 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28159 10678 10712 17774 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28160 10712 10508 17774 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28161 10698 10764 17775 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28162 10764 10678 17775 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28163 10678 10587 17775 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28164 10587 10698 17775 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28165 10777 10711 17776 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28166 10711 10747 17776 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28167 10747 10695 17776 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28168 10695 10777 17776 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28169 10799 10777 17777 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28170 10777 10695 17777 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28171 10695 10712 17777 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28172 10712 10799 17777 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28173 10764 10799 17778 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28174 10799 10712 17778 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28175 10712 10678 17778 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28176 10678 10764 17778 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28177 10796 10829 17779 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28178 10829 10799 17779 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28179 10799 10764 17779 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28180 10764 10796 17779 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28181 10693 10855 17780 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28182 10855 10895 17780 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28183 10895 10745 17780 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28184 10745 10693 17780 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28185 10625 10693 17781 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28186 10693 10745 17781 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28187 10745 10722 17781 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28188 10722 10625 17781 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28189 10614 10625 17782 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28190 10625 10722 17782 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28191 10722 10719 17782 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28192 10719 10614 17782 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28193 10641 10614 17783 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28194 10614 10719 17783 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28195 10719 10785 17783 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28196 10785 10641 17783 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28197 10983 11007 17784 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28198 11007 10991 17784 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28199 10991 10955 17784 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28200 10955 10983 17784 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28201 11007 11022 17785 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28202 11022 11016 17785 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28203 11016 10991 17785 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28204 10991 11007 17785 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28205 11022 10998 17786 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28206 10998 11027 17786 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28207 11027 11016 17786 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28208 11016 11022 17786 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28209 10998 10990 17787 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28210 10990 11020 17787 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28211 11020 11027 17787 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28212 11027 10998 17787 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28213 10990 10986 17788 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28214 10986 11004 17788 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28215 11004 11020 17788 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28216 11020 10990 17788 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28217 10986 10961 17789 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28218 10961 10974 17789 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28219 10974 11004 17789 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28220 11004 10986 17789 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28221 10924 10974 17790 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28222 10974 10961 17790 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28223 10961 10940 17790 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28224 10940 10924 17790 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28225 10895 10855 17791 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28226 10855 10924 17791 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28227 10924 10940 17791 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28228 10940 10895 17791 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28229 10745 10895 17792 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28230 10895 10846 17792 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28231 10846 10757 17792 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28232 10757 10745 17792 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28233 10722 10745 17793 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28234 10745 10757 17793 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28235 10757 10768 17793 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28236 10768 10722 17793 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28237 10719 10722 17794 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28238 10722 10768 17794 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28239 10768 10817 17794 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28240 10817 10719 17794 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28241 10785 10719 17795 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28242 10719 10817 17795 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28243 10817 10818 17795 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28244 10818 10785 17795 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28245 10796 10785 17796 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28246 10785 10818 17796 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28247 10818 10821 17796 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28248 10821 10796 17796 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28249 10829 10796 17797 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28250 10796 10821 17797 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28251 10821 10835 17797 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28252 10835 10829 17797 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28253 10777 10829 17798 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28254 10829 10835 17798 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28255 10835 10773 17798 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28256 10773 10777 17798 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28257 10925 10889 17799 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28258 10889 10734 17799 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28259 10734 10813 17799 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28260 10813 10925 17799 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28261 10963 10903 17800 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28262 10903 10889 17800 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28263 10889 10925 17800 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28264 10925 10963 17800 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28265 11000 10983 17801 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28266 10983 10903 17801 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28267 10903 10963 17801 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28268 10963 11000 17801 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28269 10568 10584 17802 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28270 10584 10666 17802 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28271 10666 10748 17802 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28272 10748 10568 17802 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28273 10677 10568 17803 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28274 10568 10748 17803 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28275 10748 10815 17803 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28276 10815 10677 17803 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28277 10584 10668 17804 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28278 10668 10690 17804 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28279 10690 10666 17804 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28280 10666 10584 17804 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28281 10837 10715 17805 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28282 10715 10677 17805 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28283 10677 10815 17805 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28284 10815 10837 17805 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28285 10536 10647 17806 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28286 10647 10668 17806 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28287 10668 10584 17806 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28288 10584 10536 17806 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28289 10468 10536 17807 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28290 10536 10584 17807 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28291 10584 10568 17807 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28292 10568 10468 17807 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28293 10474 10468 17808 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28294 10468 10568 17808 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28295 10568 10677 17808 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28296 10677 10474 17808 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28297 10533 10474 17809 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28298 10474 10677 17809 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28299 10677 10715 17809 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28300 10715 10533 17809 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28301 10394 10407 17810 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28302 10407 10468 17810 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28303 10468 10474 17810 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28304 10474 10394 17810 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28305 10427 10394 17811 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28306 10394 10474 17811 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28307 10474 10533 17811 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28308 10533 10427 17811 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28309 10528 10649 17812 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28310 10649 10647 17812 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28311 10647 10536 17812 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28312 10536 10528 17812 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28313 10407 10528 17813 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28314 10528 10536 17813 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28315 10536 10468 17813 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28316 10468 10407 17813 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28317 10503 10604 17814 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28318 10604 10649 17814 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28319 10649 10528 17814 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28320 10528 10503 17814 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28321 10375 10503 17815 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28322 10503 10528 17815 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28323 10528 10407 17815 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28324 10407 10375 17815 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28325 10332 10375 17816 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28326 10375 10407 17816 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28327 10407 10394 17816 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28328 10394 10332 17816 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28329 10340 10332 17817 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28330 10332 10394 17817 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28331 10394 10427 17817 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28332 10427 10340 17817 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28333 10368 10482 17818 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28334 10482 10503 17818 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28335 10503 10375 17818 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28336 10375 10368 17818 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28337 10314 10368 17819 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28338 10368 10375 17819 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28339 10375 10332 17819 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28340 10332 10314 17819 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28341 10305 10314 17820 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28342 10314 10332 17820 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28343 10332 10340 17820 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28344 10340 10305 17820 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28345 10482 10576 17821 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28346 10576 10604 17821 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28347 10604 10503 17821 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28348 10503 10482 17821 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28349 10399 10404 17822 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28350 10404 10314 17822 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28351 10314 10305 17822 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28352 10305 10399 17822 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28353 10527 10617 17823 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28354 10617 10576 17823 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28355 10576 10482 17823 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28356 10482 10527 17823 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28357 10464 10527 17824 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28358 10527 10482 17824 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28359 10482 10368 17824 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28360 10368 10464 17824 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28361 10404 10464 17825 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28362 10464 10368 17825 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28363 10368 10314 17825 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28364 10314 10404 17825 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28365 10645 10630 17826 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28366 10630 10617 17826 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28367 10617 10527 17826 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28368 10527 10645 17826 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28369 10623 10645 17827 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28370 10645 10527 17827 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28371 10527 10464 17827 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28372 10464 10623 17827 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28373 10639 10623 17828 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28374 10623 10464 17828 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28375 10464 10404 17828 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28376 10404 10639 17828 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28377 10602 10639 17829 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28378 10639 10404 17829 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28379 10404 10399 17829 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28380 10399 10602 17829 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28381 10763 10725 17830 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28382 10725 10623 17830 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28383 10623 10639 17830 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28384 10639 10763 17830 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28385 10760 10763 17831 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28386 10763 10639 17831 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28387 10639 10682 17831 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28388 10682 10760 17831 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28389 10735 10762 17832 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28390 10762 10630 17832 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28391 10630 10645 17832 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28392 10645 10735 17832 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28393 10725 10735 17833 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28394 10735 10645 17833 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28395 10645 10623 17833 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28396 10623 10725 17833 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28397 10760 10789 17834 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28398 10789 10794 17834 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28399 10794 10763 17834 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28400 10763 10760 17834 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28401 10725 10783 17835 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28402 10783 10786 17835 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28403 10786 10735 17835 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28404 10735 10725 17835 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28405 10786 10783 17836 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28406 10783 10808 17836 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28407 10808 10804 17836 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28408 10804 10786 17836 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28409 10602 10659 17837 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28410 10659 10682 17837 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28411 10682 10639 17837 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28412 10639 10602 17837 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28413 10789 10792 17838 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28414 10792 10811 17838 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28415 10811 10794 17838 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28416 10794 10789 17838 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28417 10824 10819 17839 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28418 10819 10804 17839 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28419 10804 10808 17839 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28420 10808 10824 17839 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28421 10824 10808 17840 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28422 10808 10794 17840 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28423 10794 10811 17840 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28424 10811 10824 17840 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28425 10808 10783 17841 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28426 10783 10763 17841 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28427 10763 10794 17841 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28428 10794 10808 17841 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28429 10718 10709 17842 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28430 10709 10666 17842 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28431 10666 10690 17842 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28432 10690 10718 17842 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28433 10863 10890 17843 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28434 10890 10837 17843 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28435 10837 10815 17843 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28436 10815 10863 17843 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28437 10816 10863 17844 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28438 10863 10815 17844 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28439 10815 10748 17844 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28440 10748 10816 17844 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28441 10709 10816 17845 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28442 10816 10748 17845 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28443 10748 10666 17845 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28444 10666 10709 17845 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28445 10897 10873 17846 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28446 10873 10826 17846 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28447 10826 10841 17846 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28448 10841 10897 17846 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28449 10890 10897 17847 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28450 10897 10841 17847 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28451 10841 10837 17847 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28452 10837 10890 17847 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28453 10694 10718 17848 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28454 10718 10690 17848 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28455 10690 10749 17848 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28456 10749 10694 17848 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28457 10782 10809 17849 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28458 10809 10793 17849 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28459 10793 10758 17849 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28460 10758 10782 17849 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28461 10809 10824 17850 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28462 10824 10811 17850 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28463 10811 10793 17850 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28464 10793 10809 17850 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28465 10819 10824 17851 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28466 10824 10809 17851 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28467 10809 10806 17851 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28468 10806 10819 17851 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28469 10792 10791 17852 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28470 10791 10793 17852 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28471 10793 10811 17852 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28472 10811 10792 17852 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28473 10659 10602 17853 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28474 10602 10637 17853 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28475 10637 10683 17853 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28476 10683 10659 17853 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28477 10782 10788 17854 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28478 10788 10806 17854 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28479 10806 10809 17854 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28480 10809 10782 17854 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28481 10782 10724 17855 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28482 10724 10736 17855 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28483 10736 10788 17855 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28484 10788 10782 17855 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28485 10791 10759 17856 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28486 10759 10758 17856 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28487 10758 10793 17856 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28488 10793 10791 17856 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28489 10736 10724 17857 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28490 10724 10622 17857 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28491 10622 10642 17857 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28492 10642 10736 17857 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28493 10762 10736 17858 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28494 10736 10642 17858 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28495 10642 10630 17858 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28496 10630 10762 17858 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28497 10758 10759 17859 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28498 10759 10683 17859 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28499 10683 10637 17859 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28500 10637 10758 17859 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28501 10724 10758 17860 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28502 10758 10637 17860 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28503 10637 10622 17860 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28504 10622 10724 17860 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28505 10637 10602 17861 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28506 10602 10399 17861 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28507 10399 10406 17861 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28508 10406 10637 17861 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28509 10622 10637 17862 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28510 10637 10406 17862 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28511 10406 10460 17862 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28512 10460 10622 17862 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28513 10642 10622 17863 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28514 10622 10460 17863 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28515 10460 10606 17863 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28516 10606 10642 17863 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28517 10630 10642 17864 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28518 10642 10606 17864 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28519 10606 10617 17864 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28520 10617 10630 17864 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28521 10460 10406 17865 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28522 10406 10317 17865 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28523 10317 10446 17865 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28524 10446 10460 17865 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28525 10606 10460 17866 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28526 10460 10446 17866 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28527 10446 10557 17866 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28528 10557 10606 17866 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28529 10617 10606 17867 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28530 10606 10557 17867 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28531 10557 10576 17867 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28532 10576 10617 17867 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28533 10406 10399 17868 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28534 10399 10305 17868 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28535 10305 10317 17868 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28536 10317 10406 17868 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28537 10576 10557 17869 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28538 10557 10589 17869 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28539 10589 10604 17869 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28540 10604 10576 17869 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28541 10317 10305 17870 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28542 10305 10340 17870 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28543 10340 10367 17870 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28544 10367 10317 17870 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28545 10446 10317 17871 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28546 10317 10367 17871 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28547 10367 10455 17871 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28548 10455 10446 17871 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28549 10557 10446 17872 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28550 10446 10455 17872 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28551 10455 10589 17872 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28552 10589 10557 17872 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28553 10367 10340 17873 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28554 10340 10427 17873 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28555 10427 10459 17873 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28556 10459 10367 17873 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28557 10455 10367 17874 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28558 10367 10459 17874 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28559 10459 10553 17874 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28560 10553 10455 17874 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28561 10589 10455 17875 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28562 10455 10553 17875 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28563 10553 10657 17875 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28564 10657 10589 17875 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28565 10604 10589 17876 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28566 10589 10657 17876 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28567 10657 10649 17876 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28568 10649 10604 17876 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28569 10657 10553 17877 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28570 10553 10635 17877 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28571 10635 10674 17877 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28572 10674 10657 17877 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28573 10649 10657 17878 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28574 10657 10674 17878 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28575 10674 10647 17878 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28576 10647 10649 17878 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28577 10459 10427 17879 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28578 10427 10533 17879 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28579 10533 10586 17879 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28580 10586 10459 17879 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28581 10553 10459 17880 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28582 10459 10586 17880 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28583 10586 10635 17880 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28584 10635 10553 17880 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28585 10586 10533 17881 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28586 10533 10715 17881 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28587 10715 10737 17881 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28588 10737 10586 17881 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28589 10635 10586 17882 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28590 10586 10737 17882 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28591 10737 10723 17882 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28592 10723 10635 17882 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28593 10674 10635 17883 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28594 10635 10723 17883 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28595 10723 10705 17883 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28596 10705 10674 17883 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28597 10647 10674 17884 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28598 10674 10705 17884 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28599 10705 10668 17884 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28600 10668 10647 17884 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28601 10715 10837 17885 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28602 10837 10841 17885 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28603 10841 10737 17885 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28604 10737 10715 17885 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28605 10668 10705 17886 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28606 10705 10749 17886 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28607 10749 10690 17886 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28608 10690 10668 17886 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28609 10723 10737 17887 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28610 10737 10841 17887 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28611 10841 10826 17887 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28612 10826 10723 17887 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28613 10705 10723 17888 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28614 10723 10826 17888 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28615 10826 10749 17888 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28616 10749 10705 17888 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28617 10845 10914 17889 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28618 10914 10863 17889 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28619 10863 10816 17889 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28620 10816 10845 17889 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28621 10721 10845 17890 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28622 10845 10816 17890 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28623 10816 10709 17890 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28624 10709 10721 17890 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28625 10717 10721 17891 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28626 10721 10709 17891 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28627 10709 10718 17891 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28628 10718 10717 17891 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28629 10771 10717 17892 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28630 10717 10718 17892 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28631 10718 10694 17892 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28632 10694 10771 17892 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28633 10945 10934 17893 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28634 10934 10873 17893 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28635 10873 10897 17893 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28636 10897 10945 17893 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28637 10938 10967 17894 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28638 10967 10934 17894 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28639 10934 10945 17894 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28640 10945 10938 17894 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28641 10942 10938 17895 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28642 10938 10945 17895 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28643 10945 10949 17895 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28644 10949 10942 17895 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28645 10900 10942 17896 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28646 10942 10949 17896 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28647 10949 10914 17896 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28648 10914 10900 17896 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28649 10846 10900 17897 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28650 10900 10914 17897 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28651 10914 10845 17897 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28652 10845 10846 17897 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28653 10757 10846 17898 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28654 10846 10845 17898 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28655 10845 10721 17898 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28656 10721 10757 17898 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28657 10768 10757 17899 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28658 10757 10721 17899 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28659 10721 10717 17899 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28660 10717 10768 17899 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28661 10817 10768 17900 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28662 10768 10717 17900 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28663 10717 10771 17900 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28664 10771 10817 17900 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28665 10818 10817 17901 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28666 10817 10771 17901 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28667 10771 10787 17901 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28668 10787 10818 17901 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28669 10821 10818 17902 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28670 10818 10787 17902 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28671 10787 10797 17902 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28672 10797 10821 17902 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28673 10976 10973 17903 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28674 10973 10975 17903 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28675 10975 10977 17903 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28676 10977 10976 17903 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28677 10993 10976 17904 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28678 10976 10977 17904 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28679 10977 10994 17904 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28680 10994 10993 17904 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28681 10978 10993 17905 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28682 10993 10994 17905 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28683 10994 10981 17905 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28684 10981 10978 17905 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28685 10967 10978 17906 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28686 10978 10981 17906 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28687 10981 10934 17906 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28688 10934 10967 17906 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28689 10934 10981 17907 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28690 10981 10921 17907 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28691 10921 10873 17907 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28692 10873 10934 17907 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28693 10787 10771 17908 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28694 10771 10694 17908 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28695 10694 10766 17908 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28696 10766 10787 17908 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28697 10797 10787 17909 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28698 10787 10766 17909 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28699 10766 10767 17909 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28700 10767 10797 17909 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28701 10977 10975 17910 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28702 10975 10907 17910 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28703 10907 10929 17910 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28704 10929 10977 17910 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28705 10564 10565 17911 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28706 10565 10691 17911 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28707 10691 10802 17911 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28708 10802 10564 17911 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28709 10660 10564 17912 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28710 10564 10802 17912 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28711 10802 10852 17912 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28712 10852 10660 17912 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28713 10565 10601 17913 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28714 10601 10670 17913 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28715 10670 10691 17913 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28716 10691 10565 17913 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28717 10859 10680 17914 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28718 10680 10660 17914 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28719 10660 10852 17914 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28720 10852 10859 17914 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28721 10518 10554 17915 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28722 10554 10601 17915 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28723 10601 10565 17915 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28724 10565 10518 17915 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28725 10516 10518 17916 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28726 10518 10565 17916 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28727 10565 10564 17916 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28728 10564 10516 17916 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28729 10552 10516 17917 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28730 10516 10564 17917 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28731 10564 10660 17917 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28732 10660 10552 17917 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28733 10582 10552 17918 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28734 10552 10660 17918 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28735 10660 10680 17918 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28736 10680 10582 17918 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28737 10389 10398 17919 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28738 10398 10516 17919 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28739 10516 10552 17919 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28740 10552 10389 17919 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28741 10403 10389 17920 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28742 10389 10552 17920 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28743 10552 10582 17920 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28744 10582 10403 17920 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28745 10467 10523 17921 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28746 10523 10554 17921 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28747 10554 10518 17921 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28748 10518 10467 17921 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28749 10398 10467 17922 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28750 10467 10518 17922 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28751 10518 10516 17922 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28752 10516 10398 17922 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28753 10424 10480 17923 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28754 10480 10523 17923 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28755 10523 10467 17923 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28756 10467 10424 17923 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28757 10334 10424 17924 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28758 10424 10467 17924 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28759 10467 10398 17924 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28760 10398 10334 17924 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28761 10298 10334 17925 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28762 10334 10398 17925 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28763 10398 10389 17925 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28764 10389 10298 17925 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28765 10309 10298 17926 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28766 10298 10389 17926 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28767 10389 10403 17926 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28768 10403 10309 17926 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28769 10318 10402 17927 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28770 10402 10424 17927 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28771 10424 10334 17927 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28772 10334 10318 17927 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28773 10256 10318 17928 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28774 10318 10334 17928 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28775 10334 10298 17928 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28776 10298 10256 17928 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28777 10261 10256 17929 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28778 10256 10298 17929 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28779 10298 10309 17929 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28780 10309 10261 17929 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28781 10402 10462 17930 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28782 10462 10480 17930 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28783 10480 10424 17930 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28784 10424 10402 17930 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28785 10270 10274 17931 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28786 10274 10256 17931 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28787 10256 10261 17931 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28788 10261 10270 17931 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28789 10323 10426 17932 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28790 10426 10402 17932 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28791 10402 10318 17932 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28792 10318 10323 17932 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28793 10274 10323 17933 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28794 10323 10318 17933 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28795 10318 10256 17933 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28796 10256 10274 17933 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28797 10448 10439 17934 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28798 10439 10471 17934 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28799 10471 10426 17934 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28800 10426 10448 17934 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28801 10415 10448 17935 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28802 10448 10426 17935 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28803 10426 10323 17935 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28804 10323 10415 17935 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28805 10416 10415 17936 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28806 10415 10323 17936 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28807 10323 10274 17936 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28808 10274 10416 17936 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28809 10376 10416 17937 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28810 10416 10274 17937 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28811 10274 10270 17937 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28812 10270 10376 17937 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28813 10573 10525 17938 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28814 10525 10415 17938 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28815 10415 10416 17938 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28816 10416 10573 17938 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28817 10570 10573 17939 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28818 10573 10416 17939 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28819 10416 10442 17939 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28820 10442 10570 17939 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28821 10567 10595 17940 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28822 10595 10439 17940 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28823 10439 10448 17940 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28824 10448 10567 17940 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28825 10525 10567 17941 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28826 10567 10448 17941 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28827 10448 10415 17941 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28828 10415 10525 17941 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28829 10570 10629 17942 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28830 10629 10631 17942 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28831 10631 10573 17942 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28832 10573 10570 17942 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28833 10525 10634 17943 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28834 10634 10650 17943 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28835 10650 10567 17943 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28836 10567 10525 17943 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28837 10650 10634 17944 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28838 10634 10667 17944 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28839 10667 10673 17944 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28840 10673 10650 17944 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28841 10376 10397 17945 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28842 10397 10442 17945 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28843 10442 10416 17945 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28844 10416 10376 17945 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28845 10629 10632 17946 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28846 10632 10646 17946 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28847 10646 10631 17946 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28848 10631 10629 17946 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28849 10687 10688 17947 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28850 10688 10673 17947 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28851 10673 10667 17947 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28852 10667 10687 17947 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28853 10687 10667 17948 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28854 10667 10631 17948 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28855 10631 10646 17948 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28856 10646 10687 17948 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28857 10667 10634 17949 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28858 10634 10573 17949 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28859 10573 10631 17949 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28860 10631 10667 17949 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28861 10766 10694 17950 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28862 10694 10691 17950 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28863 10691 10670 17950 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28864 10670 10766 17950 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28865 10921 10930 17951 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28866 10930 10859 17951 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28867 10859 10852 17951 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28868 10852 10921 17951 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28869 10873 10921 17952 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28870 10921 10852 17952 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28871 10852 10802 17952 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28872 10802 10873 17952 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28873 10907 10767 17953 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28874 10767 10692 17953 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28875 10692 10803 17953 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28876 10803 10907 17953 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28877 10929 10907 17954 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28878 10907 10803 17954 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28879 10803 10853 17954 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28880 10853 10929 17954 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28881 10930 10929 17955 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28882 10929 10853 17955 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28883 10853 10859 17955 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28884 10859 10930 17955 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28885 10767 10766 17956 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28886 10766 10670 17956 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28887 10670 10692 17956 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28888 10692 10767 17956 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28889 10609 10644 17957 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28890 10644 10616 17957 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28891 10616 10534 17957 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28892 10534 10609 17957 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28893 10644 10687 17958 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28894 10687 10646 17958 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28895 10646 10616 17958 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28896 10616 10644 17958 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28897 10688 10687 17959 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28898 10687 10644 17959 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28899 10644 10662 17959 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28900 10662 10688 17959 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28901 10632 10612 17960 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28902 10612 10616 17960 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28903 10616 10646 17960 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28904 10646 10632 17960 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28905 10397 10376 17961 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28906 10376 10393 17961 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28907 10393 10417 17961 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28908 10417 10397 17961 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28909 10609 10627 17962 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28910 10627 10662 17962 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28911 10662 10644 17962 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28912 10644 10609 17962 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28913 10609 10483 17963 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28914 10483 10530 17963 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28915 10530 10627 17963 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28916 10627 10609 17963 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28917 10612 10537 17964 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28918 10537 10534 17964 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28919 10534 10616 17964 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28920 10616 10612 17964 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28921 10530 10483 17965 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28922 10483 10380 17965 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28923 10380 10423 17965 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28924 10423 10530 17965 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28925 10595 10530 17966 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28926 10530 10423 17966 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28927 10423 10439 17966 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28928 10439 10595 17966 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28929 10534 10537 17967 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28930 10537 10417 17967 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28931 10417 10393 17967 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28932 10393 10534 17967 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28933 10483 10534 17968 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28934 10534 10393 17968 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28935 10393 10380 17968 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28936 10380 10483 17968 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28937 10393 10376 17969 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28938 10376 10270 17969 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28939 10270 10263 17969 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28940 10263 10393 17969 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28941 10380 10393 17970 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28942 10393 10263 17970 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28943 10263 10311 17970 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28944 10311 10380 17970 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28945 10423 10380 17971 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28946 10380 10311 17971 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28947 10311 10410 17971 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28948 10410 10423 17971 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28949 10311 10263 17972 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28950 10263 10260 17972 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28951 10260 10325 17972 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28952 10325 10311 17972 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28953 10410 10311 17973 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28954 10311 10325 17973 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28955 10325 10413 17973 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28956 10413 10410 17973 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28957 10263 10270 17974 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28958 10270 10261 17974 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28959 10261 10260 17974 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28960 10260 10263 17974 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28961 10462 10413 17975 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28962 10413 10437 17975 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28963 10437 10480 17975 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28964 10480 10462 17975 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28965 10260 10261 17976 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28966 10261 10309 17976 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28967 10309 10304 17976 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28968 10304 10260 17976 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28969 10325 10260 17977 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28970 10260 10304 17977 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28971 10304 10348 17977 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28972 10348 10325 17977 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28973 10413 10325 17978 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28974 10325 10348 17978 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28975 10348 10437 17978 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28976 10437 10413 17978 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28977 10304 10309 17979 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28978 10309 10403 17979 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28979 10403 10385 17979 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28980 10385 10304 17979 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28981 10348 10304 17980 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28982 10304 10385 17980 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28983 10385 10436 17980 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28984 10436 10348 17980 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28985 10437 10348 17981 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28986 10348 10436 17981 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28987 10436 10499 17981 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28988 10499 10437 17981 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28989 10480 10437 17982 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28990 10437 10499 17982 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28991 10499 10523 17982 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28992 10523 10480 17982 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28993 10499 10436 17983 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28994 10436 10547 17983 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28995 10547 10542 17983 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28996 10542 10499 17983 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28997 10523 10499 17984 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28998 10499 10542 17984 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 28999 10542 10554 17984 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29000 10554 10523 17984 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29001 10385 10403 17985 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29002 10403 10582 17985 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29003 10582 10569 17985 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29004 10569 10385 17985 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29005 10436 10385 17986 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29006 10385 10569 17986 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29007 10569 10547 17986 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29008 10547 10436 17986 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29009 10569 10582 17987 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29010 10582 10680 17987 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29011 10680 10665 17987 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29012 10665 10569 17987 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29013 10547 10569 17988 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29014 10569 10665 17988 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29015 10665 10591 17988 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29016 10591 10547 17988 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29017 10542 10547 17989 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29018 10547 10591 17989 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29019 10591 10583 17989 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29020 10583 10542 17989 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29021 10554 10542 17990 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29022 10542 10583 17990 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29023 10583 10601 17990 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29024 10601 10554 17990 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29025 10680 10859 17991 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29026 10859 10853 17991 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29027 10853 10665 17991 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29028 10665 10680 17991 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29029 10601 10583 17992 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29030 10583 10692 17992 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29031 10692 10670 17992 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29032 10670 10601 17992 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29033 10591 10665 17993 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29034 10665 10853 17993 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29035 10853 10803 17993 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29036 10803 10591 17993 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29037 10583 10591 17994 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29038 10591 10803 17994 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29039 10803 10692 17994 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29040 10692 10583 17994 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29041 10479 10566 17995 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29042 10566 10726 17995 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29043 10726 10828 17995 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29044 10828 10479 17995 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29045 10520 10479 17996 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29046 10479 10828 17996 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29047 10828 10864 17996 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29048 10864 10520 17996 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29049 10566 10626 17997 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29050 10626 10714 17997 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29051 10714 10726 17997 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29052 10726 10566 17997 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29053 10877 10551 17998 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29054 10551 10520 17998 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29055 10520 10864 17998 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29056 10864 10877 17998 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29057 10484 10555 17999 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29058 10555 10626 17999 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29059 10626 10566 17999 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29060 10566 10484 17999 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29061 10392 10484 18000 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29062 10484 10566 18000 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29063 10566 10479 18000 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29064 10479 10392 18000 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29065 10363 10392 18001 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29066 10392 10479 18001 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29067 10479 10520 18001 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29068 10520 10363 18001 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29069 10387 10363 18002 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29070 10363 10520 18002 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29071 10520 10551 18002 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29072 10551 10387 18002 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29073 10301 10356 18003 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29074 10356 10392 18003 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29075 10392 10363 18003 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29076 10363 10301 18003 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29077 10321 10301 18004 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29078 10301 10363 18004 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29079 10363 10387 18004 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29080 10387 10321 18004 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29081 10466 10541 18005 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29082 10541 10555 18005 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29083 10555 10484 18005 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29084 10484 10466 18005 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29085 10356 10466 18006 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29086 10466 10484 18006 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29087 10484 10392 18006 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29088 10392 10356 18006 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29089 10429 10500 18007 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29090 10500 10541 18007 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29091 10541 10466 18007 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29092 10466 10429 18007 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29093 10324 10429 18008 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29094 10429 10466 18008 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29095 10466 10356 18008 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29096 10356 10324 18008 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29097 10271 10324 18009 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29098 10324 10356 18009 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29099 10356 10301 18009 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29100 10301 10271 18009 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29101 10278 10271 18010 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29102 10271 10301 18010 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29103 10301 10321 18010 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29104 10321 10278 18010 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29105 10316 10412 18011 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29106 10412 10429 18011 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29107 10429 10324 18011 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29108 10324 10316 18011 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29109 10255 10316 18012 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29110 10316 10324 18012 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29111 10324 10271 18012 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29112 10271 10255 18012 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29113 10259 10255 18013 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29114 10255 10271 18013 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29115 10271 10278 18013 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29116 10278 10259 18013 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29117 10412 10473 18014 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29118 10473 10500 18014 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29119 10500 10429 18014 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29120 10429 10412 18014 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29121 10310 10312 18015 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29122 10312 10255 18015 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29123 10255 10259 18015 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29124 10259 10310 18015 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29125 10445 10491 18016 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29126 10491 10473 18016 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29127 10473 10412 18016 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29128 10412 10445 18016 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29129 10339 10445 18017 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29130 10445 10412 18017 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29131 10412 10316 18017 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29132 10316 10339 18017 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29133 10312 10339 18018 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29134 10339 10316 18018 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29135 10316 10255 18018 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29136 10255 10312 18018 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29137 10559 10577 18019 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29138 10577 10491 18019 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29139 10491 10445 18019 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29140 10445 10559 18019 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29141 10494 10559 18020 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29142 10559 10445 18020 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29143 10445 10339 18020 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29144 10339 10494 18020 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29145 10493 10494 18021 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29146 10494 10339 18021 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29147 10339 10312 18021 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29148 10312 10493 18021 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29149 10451 10493 18022 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29150 10493 10312 18022 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29151 10312 10310 18022 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29152 10310 10451 18022 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29153 10654 10620 18023 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29154 10620 10494 18023 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29155 10494 10493 18023 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29156 10493 10654 18023 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29157 10653 10654 18024 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29158 10654 10493 18024 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29159 10493 10522 18024 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29160 10522 10653 18024 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29161 10671 10697 18025 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29162 10697 10577 18025 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29163 10577 10559 18025 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29164 10559 10671 18025 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29165 10620 10671 18026 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29166 10671 10559 18026 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29167 10559 10494 18026 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29168 10494 10620 18026 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29169 10653 10700 18027 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29170 10700 10703 18027 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29171 10703 10654 18027 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29172 10654 10653 18027 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29173 10620 10706 18028 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29174 10706 10728 18028 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29175 10728 10671 18028 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29176 10671 10620 18028 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29177 10728 10706 18029 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29178 10706 10730 18029 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29179 10730 10741 18029 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29180 10741 10728 18029 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29181 10451 10485 18030 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29182 10485 10522 18030 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29183 10522 10493 18030 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29184 10493 10451 18030 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29185 10700 10710 18031 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29186 10710 10720 18031 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29187 10720 10703 18031 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29188 10703 10700 18031 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29189 10746 10755 18032 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29190 10755 10741 18032 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29191 10741 10730 18032 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29192 10730 10746 18032 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29193 10746 10730 18033 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29194 10730 10703 18033 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29195 10703 10720 18033 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29196 10720 10746 18033 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29197 10730 10706 18034 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29198 10706 10654 18034 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29199 10654 10703 18034 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29200 10703 10730 18034 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29201 10959 10966 18035 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29202 10966 10877 18035 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29203 10877 10864 18035 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29204 10864 10959 18035 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29205 10907 10959 18036 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29206 10959 10864 18036 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29207 10864 10828 18036 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29208 10828 10907 18036 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29209 10767 10907 18037 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29210 10907 10828 18037 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29211 10828 10726 18037 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29212 10726 10767 18037 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29213 10964 10908 18038 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29214 10908 10836 18038 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29215 10836 10871 18038 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29216 10871 10964 18038 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29217 10966 10964 18039 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29218 10964 10871 18039 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29219 10871 10877 18039 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29220 10877 10966 18039 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29221 10707 10731 18040 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29222 10731 10704 18040 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29223 10704 10658 18040 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29224 10658 10707 18040 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29225 10731 10746 18041 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29226 10746 10720 18041 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29227 10720 10704 18041 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29228 10704 10731 18041 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29229 10755 10746 18042 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29230 10746 10731 18042 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29231 10731 10743 18042 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29232 10743 10755 18042 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29233 10710 10702 18043 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29234 10702 10704 18043 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29235 10704 10720 18043 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29236 10720 10710 18043 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29237 10485 10451 18044 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29238 10451 10496 18044 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29239 10496 10524 18044 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29240 10524 10485 18044 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29241 10707 10729 18045 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29242 10729 10743 18045 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29243 10743 10731 18045 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29244 10731 10707 18045 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29245 10707 10621 18046 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29246 10621 10672 18046 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29247 10672 10729 18046 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29248 10729 10707 18046 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29249 10702 10655 18047 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29250 10655 10658 18047 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29251 10658 10704 18047 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29252 10704 10702 18047 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29253 10672 10621 18048 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29254 10621 10497 18048 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29255 10497 10562 18048 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29256 10562 10672 18048 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29257 10697 10672 18049 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29258 10672 10562 18049 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29259 10562 10577 18049 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29260 10577 10697 18049 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29261 10658 10655 18050 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29262 10655 10524 18050 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29263 10524 10496 18050 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29264 10496 10658 18050 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29265 10621 10658 18051 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29266 10658 10496 18051 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29267 10496 10497 18051 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29268 10497 10621 18051 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29269 10496 10451 18052 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29270 10451 10310 18052 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29271 10310 10319 18052 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29272 10319 10496 18052 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29273 10497 10496 18053 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29274 10496 10319 18053 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29275 10319 10355 18053 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29276 10355 10497 18053 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29277 10562 10497 18054 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29278 10497 10355 18054 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29279 10355 10457 18054 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29280 10457 10562 18054 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29281 10577 10562 18055 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29282 10562 10457 18055 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29283 10457 10491 18055 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29284 10491 10577 18055 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29285 10355 10319 18056 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29286 10319 10268 18056 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29287 10268 10331 18056 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29288 10331 10355 18056 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29289 10457 10355 18057 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29290 10355 10331 18057 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29291 10331 10428 18057 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29292 10428 10457 18057 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29293 10491 10457 18058 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29294 10457 10428 18058 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29295 10428 10473 18058 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29296 10473 10491 18058 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29297 10319 10310 18059 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29298 10310 10259 18059 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29299 10259 10268 18059 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29300 10268 10319 18059 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29301 10473 10428 18060 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29302 10428 10458 18060 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29303 10458 10500 18060 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29304 10500 10473 18060 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29305 10268 10259 18061 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29306 10259 10278 18061 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29307 10278 10285 18061 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29308 10285 10268 18061 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29309 10331 10268 18062 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29310 10268 10285 18062 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29311 10285 10342 18062 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29312 10342 10331 18062 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29313 10285 10278 18063 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29314 10278 10321 18063 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29315 10321 10315 18063 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29316 10315 10285 18063 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29317 10342 10285 18064 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29318 10285 10315 18064 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29319 10315 10379 18064 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29320 10379 10342 18064 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29321 10458 10342 18065 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29322 10342 10379 18065 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29323 10379 10489 18065 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29324 10489 10458 18065 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29325 10500 10458 18066 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29326 10458 10489 18066 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29327 10489 10541 18066 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29328 10541 10500 18066 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29329 10489 10379 18067 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29330 10379 10438 18067 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29331 10438 10535 18067 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29332 10535 10489 18067 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29333 10541 10489 18068 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29334 10489 10535 18068 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29335 10535 10555 18068 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29336 10555 10541 18068 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29337 10315 10321 18069 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29338 10321 10387 18069 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29339 10387 10396 18069 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29340 10396 10315 18069 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29341 10379 10315 18070 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29342 10315 10396 18070 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29343 10396 10438 18070 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29344 10438 10379 18070 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29345 10396 10387 18071 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29346 10387 10551 18071 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29347 10551 10545 18071 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29348 10545 10396 18071 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29349 10438 10396 18072 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29350 10396 10545 18072 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29351 10545 10513 18072 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29352 10513 10438 18072 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29353 10535 10438 18073 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29354 10438 10513 18073 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29355 10513 10600 18073 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29356 10600 10535 18073 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29357 10555 10535 18074 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29358 10535 10600 18074 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29359 10600 10626 18074 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29360 10626 10555 18074 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29361 10551 10877 18075 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29362 10877 10871 18075 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29363 10871 10545 18075 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29364 10545 10551 18075 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29365 10626 10600 18076 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29366 10600 10744 18076 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29367 10744 10714 18076 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29368 10714 10626 18076 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29369 10513 10545 18077 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29370 10545 10871 18077 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29371 10871 10836 18077 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29372 10836 10513 18077 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29373 10600 10513 18078 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29374 10513 10836 18078 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29375 10836 10744 18078 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29376 10744 10600 18078 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29377 10975 11011 18079 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29378 11011 10959 18079 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29379 10959 10907 18079 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29380 10907 10975 18079 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29381 10833 10797 18080 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29382 10797 10767 18080 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29383 10767 10805 18080 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29384 10805 10833 18080 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29385 10738 10833 18081 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29386 10833 10805 18081 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29387 10805 10751 18081 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29388 10751 10738 18081 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29389 11015 11002 18082 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29390 11002 10908 18082 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29391 10908 10964 18082 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29392 10964 11015 18082 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29393 11009 10997 18083 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29394 10997 11002 18083 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29395 11002 11015 18083 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29396 11015 11009 18083 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29397 11025 11009 18084 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29398 11009 11015 18084 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29399 11015 11026 18084 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29400 11026 11025 18084 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29401 11005 11025 18085 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29402 11025 11026 18085 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29403 11026 11011 18085 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29404 11011 11005 18085 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29405 10973 11005 18086 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29406 11005 11011 18086 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29407 11011 10975 18086 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29408 10975 10973 18086 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29409 10835 10821 18087 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29410 10821 10797 18087 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29411 10797 10833 18087 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29412 10833 10835 18087 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29413 10773 10835 18088 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29414 10835 10833 18088 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29415 10833 10738 18088 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29416 10738 10773 18088 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29417 10711 10773 18089 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29418 10773 10738 18089 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29419 10738 10765 18089 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29420 10765 10711 18089 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29421 10813 10711 18090 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29422 10711 10765 18090 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29423 10765 10795 18090 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29424 10795 10813 18090 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29425 10925 10813 18091 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29426 10813 10795 18091 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29427 10795 10950 18091 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29428 10950 10925 18091 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29429 10963 10925 18092 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29430 10925 10950 18092 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29431 10950 10984 18092 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29432 10984 10963 18092 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29433 11000 10963 18093 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29434 10963 10984 18093 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29435 10984 11003 18093 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29436 11003 11000 18093 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29437 10979 11000 18094 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29438 11000 11003 18094 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29439 11003 10982 18094 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29440 10982 10979 18094 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29441 10997 10979 18095 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29442 10979 10982 18095 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29443 10982 11002 18095 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29444 11002 10997 18095 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29445 11002 10982 18096 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29446 10982 10923 18096 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29447 10923 10908 18096 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29448 10908 11002 18096 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29449 10765 10738 18097 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29450 10738 10751 18097 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29451 10751 10699 18097 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29452 10699 10765 18097 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29453 10795 10765 18098 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29454 10765 10699 18098 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29455 10699 10754 18098 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29456 10754 10795 18098 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29457 10950 10795 18099 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29458 10795 10754 18099 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29459 10754 10893 18099 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29460 10893 10950 18099 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29461 10984 10950 18100 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29462 10950 10893 18100 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29463 10893 10941 18100 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29464 10941 10984 18100 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29465 10540 10549 18101 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29466 10549 10643 18101 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29467 10643 10769 18101 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29468 10769 10540 18101 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29469 10611 10540 18102 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29470 10540 10769 18102 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29471 10769 10838 18102 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29472 10838 10611 18102 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29473 10549 10593 18103 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29474 10593 10628 18103 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29475 10628 10643 18103 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29476 10643 10549 18103 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29477 10854 10638 18104 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29478 10638 10611 18104 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29479 10611 10838 18104 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29480 10838 10854 18104 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29481 10486 10558 18105 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29482 10558 10593 18105 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29483 10593 10549 18105 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29484 10549 10486 18105 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29485 10435 10486 18106 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29486 10486 10549 18106 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29487 10549 10540 18106 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29488 10540 10435 18106 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29489 10440 10435 18107 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29490 10435 10540 18107 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29491 10540 10611 18107 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29492 10611 10440 18107 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29493 10477 10440 18108 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29494 10440 10611 18108 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29495 10611 10638 18108 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29496 10638 10477 18108 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29497 10341 10384 18109 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29498 10384 10435 18109 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29499 10435 10440 18109 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29500 10440 10341 18109 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29501 10362 10341 18110 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29502 10341 10440 18110 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29503 10440 10477 18110 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29504 10477 10362 18110 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29505 10461 10529 18111 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29506 10529 10558 18111 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29507 10558 10486 18111 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29508 10486 10461 18111 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29509 10384 10461 18112 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29510 10461 10486 18112 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29511 10486 10435 18112 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29512 10435 10384 18112 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29513 10372 10409 18113 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29514 10409 10529 18113 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29515 10529 10461 18113 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29516 10461 10372 18113 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29517 10290 10372 18114 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29518 10372 10461 18114 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29519 10461 10384 18114 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29520 10384 10290 18114 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29521 10240 10290 18115 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29522 10290 10384 18115 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29523 10384 10341 18115 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29524 10341 10240 18115 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29525 10244 10240 18116 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29526 10240 10341 18116 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29527 10341 10362 18116 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29528 10362 10244 18116 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29529 10258 10351 18117 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29530 10351 10372 18117 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29531 10372 10290 18117 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29532 10290 10258 18117 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29533 10215 10258 18118 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29534 10258 10290 18118 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29535 10290 10240 18118 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29536 10240 10215 18118 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29537 10220 10215 18119 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29538 10215 10240 18119 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29539 10240 10244 18119 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29540 10244 10220 18119 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29541 10351 10391 18120 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29542 10391 10409 18120 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29543 10409 10372 18120 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29544 10372 10351 18120 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29545 10242 10241 18121 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29546 10241 10215 18121 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29547 10215 10220 18121 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29548 10220 10242 18121 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29549 10358 10411 18122 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29550 10411 10391 18122 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29551 10391 10351 18122 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29552 10351 10358 18122 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29553 10279 10358 18123 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29554 10358 10351 18123 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29555 10351 10258 18123 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29556 10258 10279 18123 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29557 10241 10279 18124 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29558 10279 10258 18124 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29559 10258 10215 18124 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29560 10215 10241 18124 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29561 10434 10476 18125 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29562 10476 10411 18125 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29563 10411 10358 18125 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29564 10358 10434 18125 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29565 10357 10434 18126 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29566 10434 10358 18126 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29567 10358 10279 18126 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29568 10279 10357 18126 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29569 10343 10357 18127 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29570 10357 10279 18127 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29571 10279 10241 18127 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29572 10241 10343 18127 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29573 10328 10343 18128 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29574 10343 10241 18128 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29575 10241 10242 18128 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29576 10242 10328 18128 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29577 10444 10431 18129 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29578 10431 10357 18129 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29579 10357 10343 18129 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29580 10343 10444 18129 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29581 10443 10444 18130 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29582 10444 10343 18130 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29583 10343 10365 18130 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29584 10365 10443 18130 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29585 10509 10579 18131 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29586 10579 10476 18131 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29587 10476 10434 18131 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29588 10434 10509 18131 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29589 10431 10509 18132 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29590 10509 10434 18132 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29591 10434 10357 18132 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29592 10357 10431 18132 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29593 10443 10490 18133 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29594 10490 10505 18133 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29595 10505 10444 18133 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29596 10444 10443 18133 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29597 10431 10514 18134 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29598 10514 10580 18134 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29599 10580 10509 18134 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29600 10509 10431 18134 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29601 10580 10514 18135 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29602 10514 10548 18135 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29603 10548 10599 18135 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29604 10599 10580 18135 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29605 10328 10344 18136 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29606 10344 10365 18136 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29607 10365 10343 18136 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29608 10343 10328 18136 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29609 10490 10504 18137 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29610 10504 10521 18137 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29611 10521 10505 18137 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29612 10505 10490 18137 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29613 10571 10615 18138 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29614 10615 10599 18138 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29615 10599 10548 18138 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29616 10548 10571 18138 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29617 10571 10548 18139 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29618 10548 10505 18139 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29619 10505 10521 18139 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29620 10521 10571 18139 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29621 10548 10514 18140 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29622 10514 10444 18140 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29623 10444 10505 18140 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29624 10505 10548 18140 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29625 10699 10751 18141 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29626 10751 10643 18141 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29627 10643 10628 18141 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29628 10628 10699 18141 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29629 10923 10936 18142 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29630 10936 10854 18142 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29631 10854 10838 18142 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29632 10838 10923 18142 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29633 10908 10923 18143 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29634 10923 10838 18143 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29635 10838 10769 18143 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29636 10769 10908 18143 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29637 10893 10754 18144 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29638 10754 10708 18144 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29639 10708 10820 18144 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29640 10820 10893 18144 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29641 10941 10893 18145 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29642 10893 10820 18145 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29643 10820 10847 18145 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29644 10847 10941 18145 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29645 10936 10941 18146 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29646 10941 10847 18146 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29647 10847 10854 18146 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29648 10854 10936 18146 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29649 10754 10699 18147 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29650 10699 10628 18147 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29651 10628 10708 18147 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29652 10708 10754 18147 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29653 10544 10563 18148 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29654 10563 10517 18148 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29655 10517 10475 18148 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29656 10475 10544 18148 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29657 10563 10571 18149 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29658 10571 10521 18149 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29659 10521 10517 18149 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29660 10517 10563 18149 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29661 10615 10571 18150 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29662 10571 10563 18150 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29663 10563 10610 18150 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29664 10610 10615 18150 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29665 10504 10507 18151 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29666 10507 10517 18151 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29667 10517 10521 18151 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29668 10521 10504 18151 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29669 10344 10328 18152 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29670 10328 10361 18152 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29671 10361 10381 18152 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29672 10381 10344 18152 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29673 10544 10598 18153 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29674 10598 10610 18153 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29675 10610 10563 18153 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29676 10563 10544 18153 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29677 10544 10465 18154 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29678 10465 10538 18154 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29679 10538 10598 18154 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29680 10598 10544 18154 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29681 10507 10469 18155 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29682 10469 10475 18155 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29683 10475 10517 18155 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29684 10517 10507 18155 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29685 10538 10465 18156 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29686 10465 10386 18156 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29687 10386 10456 18156 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29688 10456 10538 18156 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29689 10579 10538 18157 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29690 10538 10456 18157 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29691 10456 10476 18157 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29692 10476 10579 18157 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29693 10475 10469 18158 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29694 10469 10381 18158 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29695 10381 10361 18158 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29696 10361 10475 18158 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29697 10465 10475 18159 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29698 10475 10361 18159 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29699 10361 10386 18159 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29700 10386 10465 18159 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29701 10361 10328 18160 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29702 10328 10242 18160 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29703 10242 10252 18160 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29704 10252 10361 18160 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29705 10386 10361 18161 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29706 10361 10252 18161 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29707 10252 10294 18161 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29708 10294 10386 18161 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29709 10456 10386 18162 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29710 10386 10294 18162 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29711 10294 10383 18162 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29712 10383 10456 18162 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29713 10476 10456 18163 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29714 10456 10383 18163 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29715 10383 10411 18163 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29716 10411 10476 18163 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29717 10294 10252 18164 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29718 10252 10225 18164 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29719 10225 10288 18164 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29720 10288 10294 18164 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29721 10411 10383 18165 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29722 10383 10373 18165 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29723 10373 10391 18165 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29724 10391 10411 18165 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29725 10252 10242 18166 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29726 10242 10220 18166 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29727 10220 10225 18166 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29728 10225 10252 18166 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29729 10391 10373 18167 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29730 10373 10395 18167 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29731 10395 10409 18167 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29732 10409 10391 18167 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29733 10225 10220 18168 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29734 10220 10244 18168 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29735 10244 10247 18168 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29736 10247 10225 18168 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29737 10288 10225 18169 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29738 10225 10247 18169 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29739 10247 10303 18169 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29740 10303 10288 18169 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29741 10373 10288 18170 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29742 10288 10303 18170 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29743 10303 10395 18170 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29744 10395 10373 18170 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29745 10247 10244 18171 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29746 10244 10362 18171 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29747 10362 10360 18171 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29748 10360 10247 18171 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29749 10303 10247 18172 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29750 10247 10360 18172 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29751 10360 10425 18172 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29752 10425 10303 18172 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29753 10395 10303 18173 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29754 10303 10425 18173 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29755 10425 10502 18173 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29756 10502 10395 18173 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29757 10409 10395 18174 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29758 10395 10502 18174 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29759 10502 10529 18174 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29760 10529 10409 18174 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29761 10502 10425 18175 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29762 10425 10492 18175 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29763 10492 10539 18175 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29764 10539 10502 18175 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29765 10529 10502 18176 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29766 10502 10539 18176 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29767 10539 10558 18176 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29768 10558 10529 18176 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29769 10360 10362 18177 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29770 10362 10477 18177 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29771 10477 10478 18177 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29772 10478 10360 18177 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29773 10425 10360 18178 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29774 10360 10478 18178 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29775 10478 10492 18178 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29776 10492 10425 18178 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29777 10478 10477 18179 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29778 10477 10638 18179 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29779 10638 10633 18179 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29780 10633 10478 18179 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29781 10492 10478 18180 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29782 10478 10633 18180 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29783 10633 10605 18180 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29784 10605 10492 18180 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29785 10539 10492 18181 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29786 10492 10605 18181 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29787 10605 10608 18181 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29788 10608 10539 18181 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29789 10558 10539 18182 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29790 10539 10608 18182 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29791 10608 10593 18182 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29792 10593 10558 18182 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29793 10638 10854 18183 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29794 10854 10847 18183 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29795 10847 10633 18183 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29796 10633 10638 18183 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29797 10593 10608 18184 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29798 10608 10708 18184 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29799 10708 10628 18184 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29800 10628 10593 18184 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29801 10605 10633 18185 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29802 10633 10847 18185 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29803 10847 10820 18185 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29804 10820 10605 18185 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29805 10608 10605 18186 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29806 10605 10820 18186 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29807 10820 10708 18186 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29808 10708 10608 18186 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29809 10679 10590 18187 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29810 10590 10420 18187 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29811 10420 10488 18187 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29812 10488 10679 18187 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29813 10590 10463 18188 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29814 10463 10349 18188 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29815 10349 10420 18188 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29816 10420 10590 18188 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29817 10463 10350 18189 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29818 10350 10291 18189 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29819 10291 10349 18189 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29820 10349 10463 18189 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29821 10350 10275 18190 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29822 10275 10245 18190 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29823 10245 10291 18190 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29824 10291 10350 18190 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29825 10275 10320 18191 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29826 10320 10262 18191 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29827 10262 10245 18191 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29828 10245 10275 18191 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29829 10320 10400 18192 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29830 10400 10345 18192 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29831 10345 10262 18192 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29832 10262 10320 18192 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29833 10400 10546 18193 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29834 10546 10452 18193 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29835 10452 10345 18193 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29836 10345 10400 18193 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29837 10546 10679 18194 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29838 10679 10488 18194 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29839 10488 10452 18194 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29840 10452 10546 18194 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29841 10574 10374 18195 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29842 10374 10419 18195 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29843 10419 10636 18195 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29844 10636 10574 18195 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29845 10742 10574 18196 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29846 10574 10636 18196 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29847 10636 10798 18196 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29848 10798 10742 18196 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29849 10740 10742 18197 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29850 10742 10798 18197 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29851 10798 10772 18197 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29852 10772 10740 18197 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29853 10588 10740 18198 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29854 10740 10772 18198 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29855 10772 10689 18198 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29856 10689 10588 18198 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29857 10590 10679 18199 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29858 10679 10742 18199 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29859 10742 10740 18199 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29860 10740 10590 18199 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29861 10463 10590 18200 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29862 10590 10740 18200 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29863 10740 10588 18200 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29864 10588 10463 18200 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29865 10546 10400 18201 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29866 10400 10374 18201 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29867 10374 10574 18201 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29868 10574 10546 18201 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29869 10679 10546 18202 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29870 10546 10574 18202 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29871 10574 10742 18202 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29872 10742 10679 18202 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29873 10359 10297 18203 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29874 10297 10345 18203 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29875 10345 10452 18203 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29876 10452 10359 18203 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29877 10346 10359 18204 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29878 10359 10452 18204 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29879 10452 10488 18204 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29880 10488 10346 18204 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29881 10313 10346 18205 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29882 10346 10488 18205 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29883 10488 10420 18205 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29884 10420 10313 18205 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29885 10272 10313 18206 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29886 10313 10420 18206 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29887 10420 10349 18206 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29888 10349 10272 18206 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29889 10330 10354 18207 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29890 10354 10359 18207 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29891 10359 10346 18207 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29892 10346 10330 18207 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29893 10276 10330 18208 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29894 10330 10346 18208 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29895 10346 10313 18208 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29896 10313 10276 18208 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29897 10217 10276 18209 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29898 10276 10313 18209 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29899 10313 10272 18209 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29900 10272 10217 18209 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29901 10354 10295 18210 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29902 10295 10297 18210 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29903 10297 10359 18210 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29904 10359 10354 18210 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29905 10205 10237 18211 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29906 10237 10276 18211 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29907 10276 10217 18211 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29908 10217 10205 18211 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29909 10329 10282 18212 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29910 10282 10295 18212 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29911 10295 10354 18212 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29912 10354 10329 18212 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29913 10302 10329 18213 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29914 10329 10354 18213 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29915 10354 10330 18213 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29916 10330 10302 18213 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29917 10237 10302 18214 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29918 10302 10330 18214 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29919 10330 10276 18214 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29920 10276 10237 18214 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29921 10286 10238 18215 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29922 10238 10282 18215 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29923 10282 10329 18215 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29924 10329 10286 18215 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29925 10267 10286 18216 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29926 10286 10329 18216 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29927 10329 10302 18216 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29928 10302 10267 18216 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29929 10221 10267 18217 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29930 10267 10302 18217 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29931 10302 10237 18217 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29932 10237 10221 18217 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29933 10185 10221 18218 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29934 10221 10237 18218 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29935 10237 10205 18218 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29936 10205 10185 18218 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29937 10206 10234 18219 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29938 10234 10267 18219 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29939 10267 10221 18219 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29940 10221 10206 18219 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29941 10200 10206 18220 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29942 10206 10221 18220 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29943 10221 10207 18220 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29944 10207 10200 18220 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29945 10239 10202 18221 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29946 10202 10238 18221 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29947 10238 10286 18221 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29948 10286 10239 18221 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29949 10234 10239 18222 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29950 10239 10286 18222 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29951 10286 10267 18222 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29952 10267 10234 18222 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29953 10200 10168 18223 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29954 10168 10172 18223 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29955 10172 10206 18223 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29956 10206 10200 18223 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29957 10234 10204 18224 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29958 10204 10212 18224 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29959 10212 10239 18224 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29960 10239 10234 18224 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29961 10212 10204 18225 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29962 10204 10175 18225 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29963 10175 10194 18225 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29964 10194 10212 18225 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29965 10185 10170 18226 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29966 10170 10207 18226 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29967 10207 10221 18226 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29968 10221 10185 18226 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29969 10168 10143 18227 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29970 10143 10142 18227 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29971 10142 10172 18227 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29972 10172 10168 18227 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29973 10148 10166 18228 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29974 10166 10194 18228 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29975 10194 10175 18228 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29976 10175 10148 18228 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29977 10148 10175 18229 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29978 10175 10172 18229 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29979 10172 10142 18229 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29980 10142 10148 18229 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29981 10175 10204 18230 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29982 10204 10206 18230 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29983 10206 10172 18230 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29984 10172 10175 18230 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29985 10121 10128 18231 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29986 10128 10118 18231 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29987 10118 10112 18231 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29988 10112 10121 18231 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29989 10128 10148 18232 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29990 10148 10142 18232 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29991 10142 10118 18232 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29992 10118 10128 18232 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29993 10166 10148 18233 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29994 10148 10128 18233 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29995 10128 10154 18233 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29996 10154 10166 18233 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29997 10143 10116 18234 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29998 10116 10118 18234 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 29999 10118 10142 18234 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30000 10142 10143 18234 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30001 10170 10185 18235 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30002 10185 10144 18235 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30003 10144 10141 18235 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30004 10141 10170 18235 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30005 10121 10153 18236 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30006 10153 10154 18236 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30007 10154 10128 18236 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30008 10128 10121 18236 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30009 10121 10126 18237 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30010 10126 10162 18237 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30011 10162 10153 18237 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30012 10153 10121 18237 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30013 10116 10117 18238 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30014 10117 10112 18238 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30015 10112 10118 18238 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30016 10118 10116 18238 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30017 10162 10126 18239 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30018 10126 10145 18239 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30019 10145 10191 18239 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30020 10191 10162 18239 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30021 10202 10162 18240 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30022 10162 10191 18240 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30023 10191 10238 18240 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30024 10238 10202 18240 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30025 10112 10117 18241 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30026 10117 10141 18241 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30027 10141 10144 18241 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30028 10144 10112 18241 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30029 10126 10112 18242 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30030 10112 10144 18242 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30031 10144 10145 18242 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30032 10145 10126 18242 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30033 10144 10185 18243 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30034 10185 10205 18243 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30035 10205 10164 18243 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30036 10164 10144 18243 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30037 10145 10144 18244 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30038 10144 10164 18244 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30039 10164 10159 18244 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30040 10159 10145 18244 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30041 10191 10145 18245 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30042 10145 10159 18245 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30043 10159 10213 18245 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30044 10213 10191 18245 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30045 10238 10191 18246 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30046 10191 10213 18246 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30047 10213 10282 18246 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30048 10282 10238 18246 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30049 10159 10164 18247 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30050 10164 10177 18247 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30051 10177 10176 18247 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30052 10176 10159 18247 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30053 10213 10159 18248 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30054 10159 10176 18248 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30055 10176 10218 18248 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30056 10218 10213 18248 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30057 10282 10213 18249 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30058 10213 10218 18249 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30059 10218 10295 18249 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30060 10295 10282 18249 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30061 10164 10205 18250 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30062 10205 10217 18250 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30063 10217 10177 18250 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30064 10177 10164 18250 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30065 10295 10218 18251 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30066 10218 10222 18251 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30067 10222 10297 18251 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30068 10297 10295 18251 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30069 10177 10217 18252 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30070 10217 10272 18252 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30071 10272 10219 18252 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30072 10219 10177 18252 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30073 10176 10177 18253 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30074 10177 10219 18253 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30075 10219 10197 18253 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30076 10197 10176 18253 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30077 10218 10176 18254 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30078 10176 10197 18254 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30079 10197 10222 18254 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30080 10222 10218 18254 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30081 10219 10272 18255 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30082 10272 10349 18255 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30083 10349 10291 18255 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30084 10291 10219 18255 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30085 10197 10219 18256 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30086 10219 10291 18256 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30087 10291 10245 18256 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30088 10245 10197 18256 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30089 10222 10197 18257 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30090 10197 10245 18257 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30091 10245 10262 18257 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30092 10262 10222 18257 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30093 10297 10222 18258 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30094 10222 10262 18258 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30095 10262 10345 18258 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30096 10345 10297 18258 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30097 10320 10275 18259 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30098 10275 10289 18259 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30099 10289 10277 18259 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30100 10277 10320 18259 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30101 10400 10320 18260 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30102 10320 10277 18260 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30103 10277 10374 18260 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30104 10374 10400 18260 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30105 10350 10463 18261 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30106 10463 10588 18261 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30107 10588 10405 18261 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30108 10405 10350 18261 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30109 10275 10350 18262 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30110 10350 10405 18262 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30111 10405 10289 18262 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30112 10289 10275 18262 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30113 10405 10588 18263 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30114 10588 10689 18263 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30115 10689 10519 18263 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30116 10519 10405 18263 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30117 10289 10405 18264 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30118 10405 10519 18264 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30119 10519 10322 18264 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30120 10322 10289 18264 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30121 10277 10289 18265 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30122 10289 10322 18265 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30123 10322 10300 18265 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30124 10300 10277 18265 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30125 10374 10277 18266 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30126 10277 10300 18266 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30127 10300 10419 18266 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30128 10419 10374 18266 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30129 10958 11023 18267 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30130 11023 11036 18267 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30131 11036 11006 18267 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30132 11006 10958 18267 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30133 10971 10958 18268 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30134 10958 11006 18268 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30135 11006 11018 18268 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30136 11018 10971 18268 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30137 10801 10874 18269 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30138 10874 10884 18269 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30139 10884 10733 18269 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30140 10733 10801 18269 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30141 10472 10733 18270 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30142 10733 10823 18270 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30143 10823 10454 18270 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30144 10454 10472 18270 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30145 10265 10472 18271 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30146 10472 10454 18271 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30147 10454 10283 18271 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30148 10283 10265 18271 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30149 10178 10188 18272 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30150 10188 10180 18272 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30151 10180 10136 18272 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30152 10136 10178 18272 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30153 10216 10178 18273 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30154 10178 10136 18273 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30155 10136 10182 18273 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30156 10182 10216 18273 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30157 10935 11031 18274 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30158 11031 11033 18274 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30159 11033 11014 18274 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30160 11014 10935 18274 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30161 11014 11033 18275 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30162 11033 11036 18275 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30163 11036 11023 18275 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30164 11023 11014 18275 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30165 10307 10216 18276 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30166 10216 10182 18276 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30167 10182 10284 18276 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30168 10284 10307 18276 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30169 11031 11038 18277 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30170 11038 11041 18277 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30171 11041 11033 18277 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30172 11033 11031 18277 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30173 11036 11033 18278 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30174 11033 11041 18278 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30175 11041 11040 18278 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30176 11040 11036 18278 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30177 11006 11036 18279 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30178 11036 11040 18279 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30179 11040 11037 18279 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30180 11037 11006 18279 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30181 11018 11006 18280 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30182 11006 11037 18280 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30183 11037 11032 18280 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30184 11032 11018 18280 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30185 10904 11018 18281 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30186 11018 11032 18281 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30187 11032 10962 18281 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30188 10962 10904 18281 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30189 10832 10823 18282 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30190 10823 10904 18282 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30191 10904 10962 18282 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30192 10962 10832 18282 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30193 10454 10511 18283 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30194 10511 10293 18283 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30195 10293 10283 18283 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30196 10283 10454 18283 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30197 10823 10832 18284 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30198 10832 10511 18284 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30199 10511 10454 18284 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30200 10454 10823 18284 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30201 10180 10283 18285 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30202 10283 10293 18285 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30203 10293 10199 18285 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30204 10199 10180 18285 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30205 10180 10199 18286 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30206 10199 10160 18286 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30207 10160 10136 18286 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30208 10136 10180 18286 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30209 10136 10160 18287 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30210 10160 10203 18287 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30211 10203 10182 18287 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30212 10182 10136 18287 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30213 10182 10203 18288 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30214 10203 10273 18288 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30215 10273 10284 18288 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30216 10284 10182 18288 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30217 10883 11029 18289 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30218 11029 11008 18289 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30219 11008 10891 18289 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30220 10891 10883 18289 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30221 10273 10603 18290 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30222 10603 10581 18290 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30223 10581 10284 18290 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30224 10284 10273 18290 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30225 10581 10603 18291 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30226 10603 10883 18291 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30227 10883 10891 18291 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30228 10891 10581 18291 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30229 10827 10807 18292 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30230 10807 10862 18292 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30231 10862 10870 18292 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30232 10870 10827 18292 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30233 10931 10919 18293 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30234 10919 10899 18293 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30235 10899 10886 18293 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30236 10886 10931 18293 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30237 10905 10870 18294 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30238 10870 10862 18294 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30239 10862 10896 18294 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30240 10896 10905 18294 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30241 10899 10919 18295 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30242 10919 10905 18295 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30243 10905 10896 18295 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30244 10896 10899 18295 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30245 10770 10607 18296 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30246 10607 10308 18296 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30247 10308 10371 18296 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30248 10371 10770 18296 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30249 10174 10235 18297 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30250 10235 10243 18297 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30251 10243 10179 18297 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30252 10179 10174 18297 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30253 10235 10338 18298 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30254 10338 10371 18298 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30255 10371 10243 18298 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30256 10243 10235 18298 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30257 10075 10158 18299 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30258 10158 10171 18299 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30259 10171 10084 18299 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30260 10084 10075 18299 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30261 10158 10401 18300 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30262 10401 10422 18300 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30263 10422 10171 18300 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30264 10171 10158 18300 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30265 10965 10918 18301 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30266 10918 10916 18301 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30267 10916 10969 18301 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30268 10969 10965 18301 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30269 10851 10916 18302 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30270 10916 10918 18302 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30271 10918 10849 18302 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30272 10849 10851 18302 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30273 10401 10652 18303 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30274 10652 10664 18303 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30275 10664 10422 18303 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30276 10422 10401 18303 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30277 10827 10779 18304 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30278 10779 10776 18304 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30279 10776 10807 18304 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30280 10807 10827 18304 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30281 10779 10596 18305 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30282 10596 10594 18305 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30283 10594 10776 18305 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30284 10776 10779 18305 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30285 10230 10102 18306 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30286 10102 10097 18306 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30287 10097 10224 18306 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30288 10224 10230 18306 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30289 10775 10774 18307 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30290 10774 10851 18307 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30291 10851 10849 18307 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30292 10849 10775 18307 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30293 10594 10596 18308 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30294 10596 10369 18308 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30295 10369 10378 18308 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30296 10378 10594 18308 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30297 10230 10224 18309 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30298 10224 10378 18309 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30299 10378 10369 18309 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30300 10369 10230 18309 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30301 9681 9779 18310 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30302 9779 9712 18310 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30303 9712 9660 18310 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30304 9660 9681 18310 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30305 9634 9681 18311 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30306 9681 9660 18311 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30307 9660 9615 18311 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30308 9615 9634 18311 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30309 9600 9611 18312 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30310 9611 9615 18312 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30311 9615 9568 18312 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30312 9568 9600 18312 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30313 9591 9590 18313 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30314 9590 9568 18313 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30315 9568 9571 18313 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30316 9571 9591 18313 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30317 9622 9606 18314 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30318 9606 9571 18314 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30319 9571 9625 18314 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30320 9625 9622 18314 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30321 9696 9643 18315 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30322 9643 9625 18315 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30323 9625 9646 18315 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30324 9646 9696 18315 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30325 9754 9696 18316 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30326 9696 9646 18316 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30327 9646 9690 18316 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30328 9690 9754 18316 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30329 9847 9788 18317 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30330 9788 9690 18317 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30331 9690 9714 18317 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30332 9714 9847 18317 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30333 9712 9838 18318 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30334 9838 9847 18318 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30335 9847 9714 18318 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30336 9714 9712 18318 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30337 9822 9914 18319 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30338 9914 9847 18319 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30339 9847 9838 18319 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30340 9838 9822 18319 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30341 9825 9830 18320 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30342 9830 9838 18320 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30343 9838 9779 18320 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30344 9779 9825 18320 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30345 9777 9825 18321 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30346 9825 9779 18321 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30347 9779 9681 18321 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30348 9681 9777 18321 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30349 9727 9777 18322 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30350 9777 9681 18322 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30351 9681 9634 18322 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30352 9634 9727 18322 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30353 9757 9727 18323 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30354 9727 9634 18323 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30355 9634 9611 18323 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30356 9611 9757 18323 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30357 9737 9757 18324 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30358 9757 9611 18324 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30359 9611 9600 18324 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30360 9600 9737 18324 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30361 9731 9737 18325 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30362 9737 9600 18325 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30363 9600 9590 18325 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30364 9590 9731 18325 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30365 9732 9731 18326 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30366 9731 9590 18326 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30367 9590 9591 18326 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30368 9591 9732 18326 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30369 9742 9732 18327 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30370 9732 9591 18327 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30371 9591 9606 18327 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30372 9606 9742 18327 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30373 9766 9742 18328 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30374 9742 9606 18328 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30375 9606 9622 18328 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30376 9622 9766 18328 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30377 9744 9766 18329 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30378 9766 9622 18329 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30379 9622 9643 18329 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30380 9643 9744 18329 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30381 9796 9744 18330 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30382 9744 9643 18330 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30383 9643 9696 18330 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30384 9696 9796 18330 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30385 9856 9796 18331 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30386 9796 9696 18331 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30387 9696 9754 18331 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30388 9754 9856 18331 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30389 9855 9856 18332 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30390 9856 9754 18332 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30391 9754 9788 18332 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30392 9788 9855 18332 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30393 9891 9855 18333 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30394 9855 9788 18333 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30395 9788 9847 18333 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30396 9847 9891 18333 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30397 10096 10108 18334 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30398 10108 9856 18334 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30399 9856 9855 18334 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30400 9855 10096 18334 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30401 10096 9855 18335 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30402 9855 9891 18335 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30403 9891 10102 18335 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30404 10102 10096 18335 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30405 9999 10057 18336 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30406 10057 10097 18336 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30407 10097 9891 18336 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30408 9891 9999 18336 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30409 9893 10057 18337 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30410 10057 9999 18337 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30411 9999 9914 18337 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30412 9914 9893 18337 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30413 9814 9893 18338 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30414 9893 9914 18338 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30415 9914 9822 18338 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30416 9822 9814 18338 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30417 9928 9814 18339 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30418 9814 9822 18339 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30419 9822 9827 18339 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30420 9827 9928 18339 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30421 10027 9928 18340 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30422 9928 9827 18340 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30423 9827 9830 18340 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30424 9830 10027 18340 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30425 10044 10027 18341 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30426 10027 9830 18341 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30427 9830 9825 18341 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30428 9825 10044 18341 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30429 9957 10044 18342 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30430 10044 9825 18342 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30431 9825 9777 18342 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30432 9777 9957 18342 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30433 9958 9957 18343 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30434 9957 9777 18343 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30435 9777 9727 18343 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30436 9727 9958 18343 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30437 9956 9958 18344 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30438 9958 9727 18344 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30439 9727 9757 18344 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30440 9757 9956 18344 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30441 9972 9956 18345 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30442 9956 9757 18345 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30443 9757 9737 18345 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30444 9737 9972 18345 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30445 9973 9972 18346 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30446 9972 9737 18346 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30447 9737 9731 18346 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30448 9731 9973 18346 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30449 9952 9973 18347 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30450 9973 9731 18347 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30451 9731 9732 18347 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30452 9732 9952 18347 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30453 9987 9952 18348 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30454 9952 9732 18348 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30455 9732 9742 18348 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30456 9742 9987 18348 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30457 10024 9987 18349 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30458 9987 9742 18349 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30459 9742 9766 18349 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30460 9766 10024 18349 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30461 10063 10024 18350 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30462 10024 9766 18350 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30463 9766 9744 18350 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30464 9744 10063 18350 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30465 10076 10063 18351 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30466 10063 9744 18351 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30467 9744 9796 18351 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30468 9796 10076 18351 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30469 10108 10076 18352 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30470 10076 9796 18352 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30471 9796 9856 18352 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30472 9856 10108 18352 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30473 10113 10107 18353 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30474 10107 9973 18353 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30475 9973 9952 18353 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30476 9952 10113 18353 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30477 9952 9987 18354 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30478 9987 10155 18354 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30479 10155 10132 18354 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30480 10132 9952 18354 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30481 10107 10113 18355 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30482 10113 10382 18355 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30483 10382 10430 18355 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30484 10430 10107 18355 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30485 10113 10132 18356 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30486 10132 10280 18356 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30487 10280 10382 18356 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30488 10382 10113 18356 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30489 10487 10327 18357 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30490 10327 10296 18357 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30491 10296 10449 18357 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30492 10449 10487 18357 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30493 10123 9957 18358 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30494 9957 9958 18358 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30495 9958 10114 18358 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30496 10114 10123 18358 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30497 10353 10123 18359 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30498 10123 10114 18359 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30499 10114 10208 18359 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30500 10208 10353 18359 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30501 9956 10120 18360 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30502 10120 10114 18360 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30503 10114 9958 18360 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30504 9958 9956 18360 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30505 10501 10353 18361 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30506 10353 10208 18361 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30507 10208 10299 18361 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30508 10299 10501 18361 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30509 10299 10208 18362 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30510 10208 10120 18362 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30511 10120 10201 18362 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30512 10201 10299 18362 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30513 10827 10869 18363 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30514 10869 10842 18363 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30515 10842 10779 18363 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30516 10779 10827 18363 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30517 10869 10898 18364 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30518 10898 10880 18364 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30519 10880 10842 18364 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30520 10842 10869 18364 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30521 9956 9972 18365 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30522 9972 10103 18365 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30523 10103 10120 18365 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30524 10120 9956 18365 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30525 10103 10248 18366 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30526 10248 10432 18366 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30527 10432 10201 18366 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30528 10201 10103 18366 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30529 10201 10432 18367 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30530 10432 10713 18367 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30531 10713 10299 18367 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30532 10299 10201 18367 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30533 10299 10713 18368 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30534 10713 10840 18368 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30535 10840 10501 18368 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30536 10501 10299 18368 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30537 10906 10840 18369 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30538 10840 10713 18369 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30539 10713 10843 18369 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30540 10843 10906 18369 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30541 10843 10713 18370 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30542 10713 10432 18370 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30543 10432 10716 18370 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30544 10716 10843 18370 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30545 10432 10248 18371 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30546 10248 10430 18371 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30547 10430 10716 18371 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30548 10716 10432 18371 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30549 10753 10430 18372 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30550 10430 10382 18372 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30551 10382 10750 18372 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30552 10750 10753 18372 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30553 10750 10382 18373 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30554 10382 10280 18373 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30555 10280 10663 18373 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30556 10663 10750 18373 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30557 10663 10280 18374 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30558 10280 10155 18374 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30559 10155 10333 18374 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30560 10333 10663 18374 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30561 10187 10155 18375 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30562 10155 10024 18375 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30563 10024 10063 18375 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30564 10063 10187 18375 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30565 10063 10076 18376 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30566 10076 10226 18376 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30567 10226 10187 18376 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30568 10187 10063 18376 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30569 10187 10226 18377 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30570 10226 10450 18377 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30571 10450 10333 18377 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30572 10333 10187 18377 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30573 10333 10613 18378 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30574 10613 10825 18378 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30575 10825 10663 18378 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30576 10663 10333 18378 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30577 10663 10825 18379 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30578 10825 10872 18379 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30579 10872 10750 18379 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30580 10750 10663 18379 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30581 10750 10872 18380 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30582 10872 10879 18380 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30583 10879 10753 18380 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30584 10753 10750 18380 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30585 10716 10753 18381 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30586 10753 10879 18381 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30587 10879 10843 18381 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30588 10843 10716 18381 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30589 10906 10843 18382 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30590 10843 10879 18382 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30591 10879 10910 18382 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30592 10910 10906 18382 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30593 10910 10879 18383 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30594 10879 10872 18383 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30595 10872 10902 18383 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30596 10902 10910 18383 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30597 10902 10872 18384 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30598 10872 10825 18384 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30599 10825 10858 18384 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30600 10858 10902 18384 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30601 10928 10902 18385 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30602 10902 10858 18385 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30603 10858 10866 18385 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30604 10866 10928 18385 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30605 10780 10866 18386 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30606 10866 10858 18386 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30607 10858 10752 18386 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30608 10752 10780 18386 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30609 10858 10825 18387 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30610 10825 10613 18387 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30611 10613 10752 18387 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30612 10752 10858 18387 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30613 10613 10450 18388 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30614 10450 10510 18388 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30615 10510 10752 18388 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30616 10752 10613 18388 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30617 10780 10752 18389 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30618 10752 10510 18389 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30619 10510 10515 18389 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30620 10515 10780 18389 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30621 10233 10515 18390 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30622 10515 10510 18390 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30623 10510 10236 18390 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30624 10236 10233 18390 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30625 10510 10450 18391 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30626 10450 10226 18391 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30627 10226 10236 18391 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30628 10236 10510 18391 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30629 10226 10076 18392 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30630 10076 10108 18392 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30631 10108 10236 18392 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30632 10236 10226 18392 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30633 10236 10108 18393 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30634 10108 10096 18393 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30635 10096 10233 18393 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30636 10233 10236 18393 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30637 10096 10102 18394 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30638 10102 10230 18394 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30639 10230 10233 18394 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30640 10233 10096 18394 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30641 10233 10230 18395 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30642 10230 10369 18395 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30643 10369 10515 18395 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30644 10515 10233 18395 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30645 10596 10779 18396 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30646 10779 10842 18396 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30647 10842 10780 18396 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30648 10780 10596 18396 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30649 10780 10842 18397 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30650 10842 10880 18397 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30651 10880 10866 18397 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30652 10866 10780 18397 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30653 10866 10880 18398 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30654 10880 10939 18398 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30655 10939 10928 18398 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30656 10928 10866 18398 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30657 9988 9928 18399 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30658 9928 10027 18399 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30659 10027 10084 18399 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30660 10084 9988 18399 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30661 9988 9974 18400 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30662 9974 9924 18400 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30663 9924 9928 18400 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30664 9928 9988 18400 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30665 9928 9924 18401 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30666 9924 9846 18401 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30667 9846 9814 18401 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30668 9814 9928 18401 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30669 10178 10181 18402 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30670 10181 10189 18402 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30671 10189 10188 18402 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30672 10188 10178 18402 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30673 10125 10129 18403 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30674 10129 10195 18403 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30675 10195 10173 18403 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30676 10173 10125 18403 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30677 10264 10229 18404 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30678 10229 10193 18404 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30679 10193 10249 18404 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30680 10249 10264 18404 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30681 10249 10193 18405 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30682 10193 10105 18405 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30683 10105 10211 18405 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30684 10211 10249 18405 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30685 10196 10211 18406 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30686 10211 10105 18406 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30687 10105 10085 18406 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30688 10085 10196 18406 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30689 9974 10085 18407 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30690 10085 10105 18407 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30691 10105 10052 18407 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30692 10052 9974 18407 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30693 10105 10193 18408 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30694 10193 10129 18408 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30695 10129 10052 18408 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30696 10052 10105 18408 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30697 10129 10193 18409 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30698 10193 10229 18409 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30699 10229 10195 18409 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30700 10195 10129 18409 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30701 10910 10902 18410 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30702 10902 10928 18410 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30703 10928 10932 18410 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30704 10932 10910 18410 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30705 10910 10932 18411 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30706 10932 10920 18411 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30707 10920 10906 18411 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30708 10906 10910 18411 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30709 10840 10906 18412 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30710 10906 10920 18412 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30711 10920 10876 18412 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30712 10876 10840 18412 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30713 10876 10920 18413 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30714 10920 10944 18413 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30715 10944 10894 18413 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30716 10894 10876 18413 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30717 10894 10944 18414 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30718 10944 10943 18414 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30719 10943 10901 18414 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30720 10901 10894 18414 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30721 10901 10943 18415 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30722 10943 10947 18415 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30723 10947 10913 18415 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30724 10913 10901 18415 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30725 10913 10947 18416 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30726 10947 10937 18416 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30727 10937 10898 18416 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30728 10898 10913 18416 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30729 10937 10939 18417 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30730 10939 10880 18417 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30731 10880 10898 18417 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30732 10898 10937 18417 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30733 10827 10888 18418 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30734 10888 10887 18418 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30735 10887 10869 18418 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30736 10869 10827 18418 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30737 10898 10869 18419 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30738 10869 10887 18419 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30739 10887 10913 18419 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30740 10913 10898 18419 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30741 10913 10887 18420 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30742 10887 10844 18420 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30743 10844 10901 18420 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30744 10901 10913 18420 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30745 10901 10844 18421 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30746 10844 10778 18421 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30747 10778 10894 18421 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30748 10894 10901 18421 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30749 10894 10778 18422 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30750 10778 10656 18422 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30751 10656 10876 18422 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30752 10876 10894 18422 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30753 10840 10876 18423 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30754 10876 10656 18423 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30755 10656 10501 18423 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30756 10501 10840 18423 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30757 10501 10656 18424 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30758 10656 10388 18424 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30759 10388 10353 18424 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30760 10353 10501 18424 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30761 10353 10388 18425 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30762 10388 10156 18425 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30763 10156 10123 18425 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30764 10123 10353 18425 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30765 9957 10123 18426 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30766 10123 10156 18426 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30767 10156 10044 18426 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30768 10044 9957 18426 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30769 10075 10044 18427 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30770 10044 10156 18427 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30771 10156 10158 18427 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30772 10158 10075 18427 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30773 10158 10156 18428 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30774 10156 10388 18428 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30775 10388 10401 18428 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30776 10401 10158 18428 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30777 10656 10652 18429 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30778 10652 10401 18429 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30779 10401 10388 18429 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30780 10388 10656 18429 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30781 10664 10696 18430 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30782 10696 10481 18430 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30783 10481 10422 18430 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30784 10422 10664 18430 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30785 10481 10696 18431 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30786 10696 10784 18431 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30787 10784 10572 18431 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30788 10572 10481 18431 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30789 10481 10572 18432 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30790 10572 10306 18432 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30791 10306 10228 18432 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30792 10228 10481 18432 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30793 10422 10481 18433 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30794 10481 10228 18433 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30795 10228 10171 18433 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30796 10171 10422 18433 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30797 10209 10196 18434 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30798 10196 10085 18434 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30799 10085 10150 18434 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30800 10150 10209 18434 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30801 9974 9988 18435 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30802 9988 10150 18435 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30803 10150 10085 18435 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30804 10085 9974 18435 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30805 10084 10171 18436 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30806 10171 10228 18436 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30807 10228 10150 18436 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30808 10150 10084 18436 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30809 10150 10228 18437 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30810 10228 10306 18437 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30811 10306 10209 18437 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30812 10209 10150 18437 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30813 10269 10209 18438 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30814 10209 10306 18438 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30815 10306 10390 18438 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30816 10390 10269 18438 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30817 10269 10390 18439 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30818 10390 10449 18439 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30819 10449 10296 18439 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30820 10296 10269 18439 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30821 10211 10296 18440 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30822 10296 10327 18440 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30823 10327 10249 18440 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30824 10249 10211 18440 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30825 10264 10249 18441 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30826 10249 10327 18441 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30827 10327 10352 18441 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30828 10352 10264 18441 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30829 10352 10327 18442 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30830 10327 10487 18442 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30831 10487 10526 18442 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30832 10526 10352 18442 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30833 10526 10487 18443 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30834 10487 10676 18443 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30835 10676 10732 18443 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30836 10732 10526 18443 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30837 10676 10487 18444 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30838 10487 10449 18444 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30839 10449 10684 18444 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30840 10684 10676 18444 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30841 10684 10449 18445 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30842 10449 10390 18445 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30843 10390 10675 18445 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30844 10675 10684 18445 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30845 10684 10839 18446 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30846 10839 10830 18446 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30847 10830 10676 18446 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30848 10676 10684 18446 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30849 10781 10676 18447 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30850 10676 10830 18447 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30851 10830 10848 18447 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30852 10848 10781 18447 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30853 10948 10848 18448 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30854 10848 10830 18448 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30855 10830 10926 18448 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30856 10926 10948 18448 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30857 10926 10830 18449 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30858 10830 10839 18449 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30859 10839 10952 18449 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30860 10952 10926 18449 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30861 10684 10675 18450 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30862 10675 10834 18450 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30863 10834 10839 18450 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30864 10839 10684 18450 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30865 10572 10675 18451 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30866 10675 10390 18451 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30867 10390 10306 18451 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30868 10306 10572 18451 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30869 10784 10834 18452 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30870 10834 10675 18452 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30871 10675 10572 18452 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30872 10572 10784 18452 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30873 10909 10952 18453 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30874 10952 10839 18453 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30875 10839 10834 18453 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30876 10834 10909 18453 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30877 10946 10909 18454 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30878 10909 10861 18454 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30879 10861 10867 18454 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30880 10867 10946 18454 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30881 10867 10790 18455 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30882 10790 10775 18455 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30883 10775 10849 18455 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30884 10849 10867 18455 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30885 10774 10778 18456 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30886 10778 10844 18456 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30887 10844 10851 18456 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30888 10851 10774 18456 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30889 10851 10844 18457 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30890 10844 10887 18457 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30891 10887 10888 18457 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30892 10888 10851 18457 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30893 10888 10915 18458 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30894 10915 10916 18458 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30895 10916 10851 18458 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30896 10851 10888 18458 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30897 10867 10849 18459 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30898 10849 10918 18459 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30899 10918 10946 18459 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30900 10946 10867 18459 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30901 10957 10952 18460 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30902 10952 10909 18460 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30903 10909 10946 18460 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30904 10946 10957 18460 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30905 10916 10915 18461 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30906 10915 10970 18461 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30907 10970 10969 18461 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30908 10969 10916 18461 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30909 11014 11023 18462 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30910 11023 11017 18462 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30911 11017 11001 18462 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30912 11001 11014 18462 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30913 10992 10969 18463 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30914 10969 10970 18463 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30915 10970 11012 18463 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30916 11012 10992 18463 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30917 10985 10926 18464 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30918 10926 10952 18464 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30919 10952 10957 18464 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30920 10957 10985 18464 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30921 10985 10999 18465 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30922 10999 10948 18465 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30923 10948 10926 18465 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30924 10926 10985 18465 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30925 10999 10988 18466 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30926 10988 10954 18466 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30927 10954 10948 18466 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30928 10948 10999 18466 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30929 10985 10992 18467 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30930 10992 10996 18467 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30931 10996 10999 18467 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30932 10999 10985 18467 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30933 11012 11019 18468 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30934 11019 10996 18468 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30935 10996 10992 18468 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30936 10992 11012 18468 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30937 11019 10972 18469 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30938 10972 10956 18469 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30939 10956 11001 18469 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30940 11001 11019 18469 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30941 10919 11012 18470 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30942 11012 10970 18470 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30943 10970 10905 18470 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30944 10905 10919 18470 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30945 10905 10970 18471 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30946 10970 10915 18471 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30947 10915 10870 18471 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30948 10870 10905 18471 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30949 10915 10888 18472 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30950 10888 10827 18472 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30951 10827 10870 18472 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30952 10870 10915 18472 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30953 10917 10896 18473 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30954 10896 10862 18473 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30955 10862 10856 18473 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30956 10856 10917 18473 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30957 10856 10862 18474 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30958 10862 10807 18474 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30959 10807 10812 18474 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30960 10812 10856 18474 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30961 10776 10594 18475 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30962 10594 10727 18475 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30963 10727 10812 18475 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30964 10812 10776 18475 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30965 10812 10727 18476 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30966 10727 10800 18476 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30967 10800 10856 18476 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30968 10856 10812 18476 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30969 10856 10800 18477 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30970 10800 10860 18477 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30971 10860 10917 18477 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30972 10917 10856 18477 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30973 10860 10881 18478 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30974 10881 10911 18478 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30975 10911 10917 18478 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30976 10917 10860 18478 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30977 10917 10911 18479 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30978 10911 10899 18479 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30979 10899 10896 18479 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30980 10896 10917 18479 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30981 11012 10919 18480 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30982 10919 10972 18480 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30983 10972 11019 18480 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30984 11019 11012 18480 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30985 10886 10899 18481 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30986 10899 10911 18481 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30987 10911 10865 18481 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30988 10865 10886 18481 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30989 10865 10911 18482 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30990 10911 10881 18482 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30991 10881 10831 18482 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30992 10831 10865 18482 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30993 10619 10831 18483 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30994 10831 10881 18483 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30995 10881 10669 18483 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30996 10669 10619 18483 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30997 10669 10881 18484 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30998 10881 10860 18484 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 30999 10860 10651 18484 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31000 10651 10669 18484 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31001 10651 10860 18485 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31002 10860 10800 18485 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31003 10800 10506 18485 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31004 10506 10651 18485 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31005 10506 10800 18486 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31006 10800 10727 18486 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31007 10727 10433 18486 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31008 10433 10506 18486 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31009 10727 10594 18487 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31010 10594 10378 18487 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31011 10378 10433 18487 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31012 10433 10727 18487 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31013 9924 10017 18488 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31014 10017 9965 18488 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31015 9965 9846 18488 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31016 9846 9924 18488 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31017 10017 10125 18489 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31018 10125 10100 18489 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31019 10100 9965 18489 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31020 9965 10017 18489 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31021 10100 10125 18490 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31022 10125 10173 18490 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31023 10173 10130 18490 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31024 10130 10100 18490 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31025 10130 10173 18491 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31026 10173 10189 18491 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31027 10189 10181 18491 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31028 10181 10130 18491 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31029 10181 10231 18492 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31030 10231 10163 18492 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31031 10163 10130 18492 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31032 10130 10181 18492 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31033 10130 10163 18493 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31034 10163 10115 18493 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31035 10115 10100 18493 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31036 10100 10130 18493 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31037 10100 10115 18494 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31038 10115 9978 18494 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31039 9978 9965 18494 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31040 9965 10100 18494 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31041 9965 9978 18495 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31042 9978 9908 18495 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31043 9908 9846 18495 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31044 9846 9965 18495 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31045 9814 9846 18496 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31046 9846 9908 18496 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31047 9908 9893 18496 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31048 9893 9814 18496 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31049 10057 9893 18497 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31050 9893 9908 18497 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31051 9908 10001 18497 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31052 10001 10057 18497 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31053 9908 9978 18498 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31054 9978 10069 18498 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31055 10069 10001 18498 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31056 10001 9908 18498 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31057 10078 10099 18499 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31058 10099 10093 18499 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31059 10093 10091 18499 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31060 10091 10078 18499 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31061 10078 10091 18500 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31062 10091 10149 18500 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31063 10149 10104 18500 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31064 10104 10078 18500 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31065 10149 10224 18501 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31066 10224 10097 18501 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31067 10097 10104 18501 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31068 10104 10149 18501 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31069 10254 10146 18502 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31070 10146 10147 18502 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31071 10147 10257 18502 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31072 10257 10254 18502 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31073 10093 10147 18503 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31074 10147 10146 18503 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31075 10146 10091 18503 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31076 10091 10093 18503 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31077 10146 10254 18504 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31078 10254 10224 18504 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31079 10224 10149 18504 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31080 10149 10146 18504 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31081 10378 10224 18505 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31082 10224 10254 18505 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31083 10254 10433 18505 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31084 10433 10378 18505 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31085 10433 10254 18506 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31086 10254 10257 18506 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31087 10257 10506 18506 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31088 10506 10433 18506 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31089 10506 10257 18507 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31090 10257 10287 18507 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31091 10287 10651 18507 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31092 10651 10506 18507 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31093 10651 10287 18508 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31094 10287 10347 18508 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31095 10347 10669 18508 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31096 10669 10651 18508 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31097 10335 10470 18509 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31098 10470 10347 18509 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31099 10347 10232 18509 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31100 10232 10335 18509 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31101 10232 10347 18510 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31102 10347 10287 18510 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31103 10287 10184 18510 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31104 10184 10232 18510 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31105 10287 10257 18511 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31106 10257 10147 18511 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31107 10147 10184 18511 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31108 10184 10287 18511 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31109 10184 10147 18512 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31110 10147 10093 18512 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31111 10093 10131 18512 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31112 10131 10184 18512 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31113 10131 10093 18513 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31114 10093 10099 18513 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31115 10099 10179 18513 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31116 10179 10131 18513 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31117 10069 9978 18514 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31118 9978 10115 18514 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31119 10115 10174 18514 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31120 10174 10069 18514 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31121 10174 10115 18515 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31122 10115 10163 18515 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31123 10163 10235 18515 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31124 10235 10174 18515 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31125 10163 10231 18516 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31126 10231 10338 18516 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31127 10338 10235 18516 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31128 10235 10163 18516 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31129 10371 10308 18517 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31130 10308 10190 18517 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31131 10190 10243 18517 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31132 10243 10371 18517 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31133 10179 10243 18518 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31134 10243 10190 18518 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31135 10190 10131 18518 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31136 10131 10179 18518 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31137 10184 10131 18519 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31138 10131 10190 18519 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31139 10190 10232 18519 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31140 10232 10184 18519 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31141 10232 10190 18520 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31142 10190 10308 18520 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31143 10308 10335 18520 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31144 10335 10232 18520 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31145 10607 10470 18521 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31146 10470 10335 18521 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31147 10335 10308 18521 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31148 10308 10607 18521 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31149 10912 10865 18522 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31150 10865 10770 18522 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31151 10770 10868 18522 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31152 10868 10912 18522 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31153 10770 10865 18523 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31154 10865 10831 18523 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31155 10831 10607 18523 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31156 10607 10770 18523 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31157 10607 10831 18524 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31158 10831 10619 18524 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31159 10619 10470 18524 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31160 10470 10607 18524 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31161 10619 10669 18525 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31162 10669 10347 18525 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31163 10347 10470 18525 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31164 10470 10619 18525 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31165 10801 10781 18526 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31166 10781 10848 18526 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31167 10848 10874 18526 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31168 10874 10801 18526 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31169 10874 10954 18527 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31170 10954 10971 18527 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31171 10971 10884 18527 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31172 10884 10874 18527 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31173 10954 10988 18528 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31174 10988 10958 18528 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31175 10958 10971 18528 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31176 10971 10954 18528 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31177 10958 10988 18529 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31178 10988 11017 18529 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31179 11017 11023 18529 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31180 11023 10958 18529 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31181 10281 10264 18530 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31182 10264 10352 18530 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31183 10352 10364 18530 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31184 10364 10281 18530 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31185 10352 10526 18531 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31186 10526 10575 18531 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31187 10575 10364 18531 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31188 10364 10352 18531 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31189 10364 10575 18532 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31190 10575 10561 18532 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31191 10561 10421 18532 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31192 10421 10364 18532 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31193 10364 10421 18533 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31194 10421 10326 18533 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31195 10326 10281 18533 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31196 10281 10364 18533 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31197 10526 10732 18534 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31198 10732 10761 18534 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31199 10761 10575 18534 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31200 10575 10526 18534 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31201 10575 10761 18535 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31202 10761 10686 18535 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31203 10686 10561 18535 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31204 10561 10575 18535 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31205 10421 10561 18536 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31206 10561 10686 18536 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31207 10686 10447 18536 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31208 10447 10421 18536 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31209 10326 10421 18537 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31210 10421 10447 18537 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31211 10447 10292 18537 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31212 10292 10326 18537 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31213 10229 10264 18538 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31214 10264 10281 18538 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31215 10281 10246 18538 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31216 10246 10229 18538 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31217 10281 10326 18539 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31218 10326 10292 18539 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31219 10292 10246 18539 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31220 10246 10281 18539 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31221 10265 10188 18540 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31222 10188 10189 18540 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31223 10189 10227 18540 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31224 10227 10265 18540 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31225 10231 10216 18541 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31226 10216 10307 18541 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31227 10307 10338 18541 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31228 10338 10231 18541 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31229 10181 10178 18542 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31230 10178 10216 18542 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31231 10216 10231 18542 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31232 10231 10181 18542 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31233 10495 10868 18543 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31234 10868 10770 18543 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31235 10770 10371 18543 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31236 10371 10495 18543 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31237 10912 10956 18544 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31238 10956 10972 18544 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31239 10972 10931 18544 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31240 10931 10912 18544 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31241 112 17 18545 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31242 17 6 18545 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31243 6 65 18545 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31244 65 112 18545 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31245 65 6 18546 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31246 6 1 18546 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31247 1 15 18546 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31248 15 65 18546 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31249 15 1 18547 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31250 1 2 18547 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31251 2 11 18547 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31252 11 15 18547 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31253 11 2 18548 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31254 2 3 18548 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31255 3 24 18548 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31256 24 11 18548 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31257 24 3 18549 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31258 3 10 18549 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31259 10 56 18549 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31260 56 24 18549 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31261 56 10 18550 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31262 10 85 18550 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31263 85 94 18550 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31264 94 56 18550 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31265 153 85 18551 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31266 85 235 18551 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31267 235 223 18551 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31268 223 153 18551 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31269 235 627 18552 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31270 627 306 18552 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31271 306 223 18552 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31272 223 235 18552 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31273 306 627 18553 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31274 627 795 18553 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31275 795 360 18553 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31276 360 306 18553 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31277 360 795 18554 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31278 795 878 18554 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31279 878 489 18554 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31280 489 360 18554 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31281 489 878 18555 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31282 878 911 18555 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31283 911 592 18555 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31284 592 489 18555 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31285 592 911 18556 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31286 911 888 18556 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31287 888 604 18556 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31288 604 592 18556 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31289 604 888 18557 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31290 888 822 18557 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31291 822 533 18557 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31292 533 604 18557 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31293 427 822 18558 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31294 822 467 18558 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31295 467 231 18558 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31296 231 427 18558 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31297 231 467 18559 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31298 467 170 18559 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31299 170 167 18559 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31300 167 231 18559 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31301 167 170 18560 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31302 170 17 18560 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31303 17 112 18560 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31304 112 167 18560 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31305 153 223 18561 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31306 223 289 18561 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31307 289 188 18561 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31308 188 153 18561 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31309 306 360 18562 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31310 360 364 18562 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31311 364 344 18562 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31312 344 306 18562 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31313 360 489 18563 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31314 489 405 18563 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31315 405 364 18563 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31316 364 360 18563 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31317 489 592 18564 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31318 592 460 18564 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31319 460 405 18564 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31320 405 489 18564 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31321 592 604 18565 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31322 604 453 18565 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31323 453 460 18565 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31324 460 592 18565 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31325 604 533 18566 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31326 533 495 18566 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31327 495 453 18566 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31328 453 604 18566 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31329 533 427 18567 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31330 427 421 18567 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31331 421 495 18567 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31332 495 533 18567 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31333 427 231 18568 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31334 231 160 18568 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31335 160 421 18568 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31336 421 427 18568 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31337 167 112 18569 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31338 112 58 18569 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31339 58 92 18569 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31340 92 167 18569 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31341 112 65 18570 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31342 65 35 18570 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31343 35 58 18570 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31344 58 112 18570 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31345 65 15 18571 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31346 15 21 18571 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31347 21 35 18571 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31348 35 65 18571 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31349 11 24 18572 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31350 24 50 18572 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31351 50 32 18572 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31352 32 11 18572 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31353 24 56 18573 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31354 56 77 18573 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31355 77 50 18573 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31356 50 24 18573 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31357 56 94 18574 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31358 94 123 18574 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31359 123 77 18574 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31360 77 56 18574 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31361 94 153 18575 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31362 153 188 18575 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31363 188 123 18575 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31364 123 94 18575 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31365 170 467 18576 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31366 467 442 18576 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31367 442 162 18576 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31368 162 170 18576 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31369 467 822 18577 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31370 822 772 18577 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31371 772 442 18577 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31372 442 467 18577 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31373 822 888 18578 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31374 888 842 18578 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31375 842 772 18578 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31376 772 822 18578 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31377 888 911 18579 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31378 911 885 18579 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31379 885 842 18579 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31380 842 888 18579 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31381 911 878 18580 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31382 878 846 18580 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31383 846 885 18580 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31384 885 911 18580 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31385 878 795 18581 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31386 795 752 18581 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31387 752 846 18581 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31388 846 878 18581 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31389 795 627 18582 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31390 627 534 18582 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31391 534 752 18582 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31392 752 795 18582 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31393 627 235 18583 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31394 235 213 18583 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31395 213 534 18583 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31396 534 627 18583 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31397 235 85 18584 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31398 85 83 18584 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31399 83 213 18584 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31400 213 235 18584 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31401 85 10 18585 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31402 10 13 18585 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31403 13 83 18585 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31404 83 85 18585 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31405 10 3 18586 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31406 3 8 18586 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31407 8 13 18586 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31408 13 10 18586 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31409 3 2 18587 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31410 2 5 18587 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31411 5 8 18587 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31412 8 3 18587 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31413 2 1 18588 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31414 1 4 18588 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31415 4 5 18588 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31416 5 2 18588 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31417 1 6 18589 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31418 6 7 18589 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31419 7 4 18589 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31420 4 1 18589 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31421 6 17 18590 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31422 17 16 18590 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31423 16 7 18590 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31424 7 6 18590 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31425 17 170 18591 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31426 170 162 18591 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31427 162 16 18591 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31428 16 17 18591 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31429 849 834 18592 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31430 834 749 18592 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31431 749 776 18592 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31432 776 849 18592 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31433 184 255 18593 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31434 255 349 18593 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31435 349 261 18593 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31436 261 184 18593 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31437 136 184 18594 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31438 184 261 18594 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31439 261 211 18594 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31440 211 136 18594 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31441 271 267 18595 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31442 267 389 18595 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31443 389 393 18595 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31444 393 271 18595 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31445 270 271 18596 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31446 271 393 18596 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31447 393 381 18596 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31448 381 270 18596 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31449 255 270 18597 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31450 270 381 18597 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31451 381 349 18597 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31452 349 255 18597 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31453 1044 988 18598 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31454 988 941 18598 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31455 941 967 18598 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31456 967 1044 18598 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31457 976 1044 18599 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31458 1044 967 18599 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31459 967 946 18599 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31460 946 976 18599 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31461 850 872 18600 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31462 872 856 18600 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31463 856 818 18600 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31464 818 850 18600 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31465 865 762 18601 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31466 762 780 18601 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31467 780 857 18601 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31468 857 865 18601 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31469 44 31 18602 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31470 31 110 18602 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31471 110 89 18602 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31472 89 44 18602 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31473 110 177 18603 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31474 177 133 18603 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31475 133 89 18603 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31476 89 110 18603 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31477 141 27 18604 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31478 27 74 18604 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31479 74 161 18604 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31480 161 141 18604 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31481 222 141 18605 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31482 141 161 18605 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31483 161 312 18605 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31484 312 222 18605 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31485 97 197 18606 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31486 197 171 18606 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31487 171 91 18606 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31488 91 97 18606 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31489 80 127 18607 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31490 127 99 18607 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31491 99 88 18607 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31492 88 80 18607 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31493 80 88 18608 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31494 88 60 18608 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31495 60 53 18608 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31496 53 80 18608 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31497 313 284 18609 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31498 284 244 18609 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31499 244 264 18609 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31500 264 313 18609 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31501 284 359 18610 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31502 359 312 18610 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31503 312 244 18610 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31504 244 284 18610 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31505 359 598 18611 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31506 598 573 18611 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31507 573 312 18611 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31508 312 359 18611 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31509 598 753 18612 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31510 753 780 18612 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31511 780 573 18612 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31512 573 598 18612 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31513 753 799 18613 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31514 799 818 18613 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31515 818 780 18613 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31516 780 753 18613 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31517 850 818 18614 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31518 818 799 18614 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31519 799 816 18614 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31520 816 850 18614 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31521 49 28 18615 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31522 28 44 18615 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31523 44 26 18615 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31524 26 49 18615 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31525 28 49 18616 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31526 49 46 18616 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31527 46 57 18616 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31528 57 28 18616 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31529 550 464 18617 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31530 464 761 18617 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31531 761 738 18617 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31532 738 550 18617 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31533 993 1071 18618 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31534 1071 1121 18618 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31535 1121 1028 18618 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31536 1028 993 18618 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31537 916 993 18619 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31538 993 1028 18619 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31539 1028 920 18619 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31540 920 916 18619 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31541 16 37 18620 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31542 37 14 18620 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31543 14 7 18620 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31544 7 16 18620 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31545 177 154 18621 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31546 154 464 18621 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31547 464 550 18621 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31548 550 177 18621 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31549 550 738 18622 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31550 738 707 18622 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31551 707 674 18622 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31552 674 550 18622 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31553 946 866 18623 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31554 866 871 18623 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31555 871 976 18623 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31556 976 946 18623 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31557 110 37 18624 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31558 37 154 18624 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31559 154 177 18624 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31560 177 110 18624 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31561 249 260 18625 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31562 260 404 18625 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31563 404 281 18625 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31564 281 249 18625 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31565 123 188 18626 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31566 188 190 18626 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31567 190 121 18626 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31568 121 123 18626 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31569 188 289 18627 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31570 289 352 18627 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31571 352 190 18627 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31572 190 188 18627 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31573 289 344 18628 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31574 344 420 18628 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31575 420 352 18628 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31576 352 289 18628 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31577 344 364 18629 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31578 364 431 18629 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31579 431 420 18629 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31580 420 344 18629 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31581 364 405 18630 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31582 405 404 18630 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31583 404 431 18630 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31584 431 364 18630 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31585 405 460 18631 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31586 460 347 18631 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31587 347 404 18631 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31588 404 405 18631 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31589 460 453 18632 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31590 453 458 18632 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31591 458 347 18632 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31592 347 460 18632 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31593 453 495 18633 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31594 495 513 18633 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31595 513 458 18633 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31596 458 453 18633 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31597 495 421 18634 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31598 421 448 18634 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31599 448 513 18634 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31600 513 495 18634 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31601 421 160 18635 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31602 160 163 18635 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31603 163 448 18635 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31604 448 421 18635 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31605 160 92 18636 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31606 92 90 18636 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31607 90 163 18636 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31608 163 160 18636 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31609 92 58 18637 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31610 58 54 18637 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31611 54 90 18637 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31612 90 92 18637 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31613 58 35 18638 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31614 35 29 18638 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31615 29 54 18638 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31616 54 58 18638 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31617 35 21 18639 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31618 21 18 18639 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31619 18 29 18639 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31620 29 35 18639 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31621 21 32 18640 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31622 32 25 18640 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31623 25 18 18640 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31624 18 21 18640 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31625 32 50 18641 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31626 50 41 18641 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31627 41 25 18641 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31628 25 32 18641 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31629 50 77 18642 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31630 77 71 18642 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31631 71 41 18642 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31632 41 50 18642 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31633 77 123 18643 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31634 123 121 18643 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31635 121 71 18643 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31636 71 77 18643 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31637 367 458 18644 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31638 458 513 18644 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31639 513 514 18644 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31640 514 367 18644 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31641 145 103 18645 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31642 103 84 18645 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31643 84 105 18645 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31644 105 145 18645 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31645 199 145 18646 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31646 145 105 18646 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31647 105 150 18646 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31648 150 199 18646 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31649 118 90 18647 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31650 90 62 18647 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31651 62 142 18647 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31652 142 118 18647 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31653 195 384 18648 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31654 384 448 18648 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31655 448 163 18648 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31656 163 195 18648 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31657 273 118 18649 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31658 118 142 18649 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31659 142 247 18649 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31660 247 273 18649 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31661 356 195 18650 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31662 195 118 18650 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31663 118 273 18650 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31664 273 356 18650 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31665 745 514 18651 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31666 514 384 18651 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31667 384 723 18651 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31668 723 745 18651 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31669 626 537 18652 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31670 537 514 18652 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31671 514 745 18652 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31672 745 626 18652 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31673 195 526 18653 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31674 526 723 18653 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31675 723 384 18653 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31676 384 195 18653 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31677 311 409 18654 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31678 409 247 18654 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31679 247 156 18654 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31680 156 311 18654 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31681 333 537 18655 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31682 537 397 18655 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31683 397 350 18655 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31684 350 333 18655 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31685 333 367 18656 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31686 367 514 18656 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31687 514 537 18656 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31688 537 333 18656 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31689 458 367 18657 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31690 367 281 18657 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31691 281 347 18657 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31692 347 458 18657 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31693 350 298 18658 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31694 298 334 18658 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31695 334 268 18658 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31696 268 350 18658 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31697 333 350 18659 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31698 350 268 18659 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31699 268 246 18659 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31700 246 333 18659 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31701 367 333 18660 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31702 333 246 18660 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31703 246 281 18660 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31704 281 367 18660 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31705 281 246 18661 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31706 246 216 18661 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31707 216 249 18661 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31708 249 281 18661 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31709 300 150 18662 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31710 150 190 18662 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31711 190 352 18662 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31712 352 300 18662 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31713 323 300 18663 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31714 300 352 18663 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31715 352 420 18663 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31716 420 323 18663 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31717 326 323 18664 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31718 323 420 18664 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31719 420 431 18664 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31720 431 326 18664 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31721 260 326 18665 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31722 326 431 18665 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31723 431 404 18665 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31724 404 260 18665 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31725 90 54 18666 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31726 54 38 18666 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31727 38 62 18666 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31728 62 90 18666 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31729 54 29 18667 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31730 29 23 18667 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31731 23 38 18667 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31732 38 54 18667 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31733 29 18 18668 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31734 18 47 18668 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31735 47 23 18668 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31736 23 29 18668 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31737 18 25 18669 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31738 25 55 18669 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31739 55 47 18669 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31740 47 18 18669 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31741 25 41 18670 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31742 41 59 18670 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31743 59 55 18670 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31744 55 25 18670 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31745 41 71 18671 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31746 71 84 18671 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31747 84 59 18671 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31748 59 41 18671 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31749 105 84 18672 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31750 84 71 18672 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31751 71 121 18672 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31752 121 105 18672 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31753 105 121 18673 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31754 121 190 18673 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31755 190 150 18673 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31756 150 105 18673 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31757 288 199 18674 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31758 199 150 18674 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31759 150 300 18674 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31760 300 288 18674 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31761 277 288 18675 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31762 288 300 18675 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31763 300 323 18675 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31764 323 277 18675 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31765 228 277 18676 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31766 277 323 18676 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31767 323 326 18676 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31768 326 228 18676 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31769 227 228 18677 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31770 228 326 18677 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31771 326 260 18677 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31772 260 227 18677 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31773 224 227 18678 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31774 227 260 18678 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31775 260 249 18678 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31776 249 224 18678 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31777 210 224 18679 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31778 224 249 18679 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31779 249 216 18679 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31780 216 210 18679 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31781 272 210 18680 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31782 210 216 18680 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31783 216 268 18680 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31784 268 272 18680 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31785 232 311 18681 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31786 311 156 18681 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31787 156 120 18681 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31788 120 232 18681 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31789 120 156 18682 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31790 156 142 18682 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31791 142 82 18682 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31792 82 120 18682 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31793 82 142 18683 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31794 142 62 18683 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31795 62 45 18683 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31796 45 82 18683 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31797 297 379 18684 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31798 379 461 18684 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31799 461 477 18684 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31800 477 297 18684 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31801 230 297 18685 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31802 297 477 18685 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31803 477 368 18685 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31804 368 230 18685 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31805 379 355 18686 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31806 355 377 18686 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31807 377 461 18686 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31808 461 379 18686 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31809 230 368 18687 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31810 368 330 18687 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31811 330 208 18687 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31812 208 230 18687 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31813 461 377 18688 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31814 377 398 18688 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31815 398 509 18688 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31816 509 461 18688 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31817 477 461 18689 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31818 461 509 18689 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31819 509 577 18689 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31820 577 477 18689 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31821 368 477 18690 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31822 477 577 18690 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31823 577 571 18690 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31824 571 368 18690 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31825 330 368 18691 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31826 368 571 18691 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31827 571 512 18691 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31828 512 330 18691 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31829 571 577 18692 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31830 577 638 18692 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31831 638 651 18692 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31832 651 571 18692 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31833 512 571 18693 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31834 571 651 18693 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31835 651 618 18693 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31836 618 512 18693 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31837 509 398 18694 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31838 398 396 18694 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31839 396 517 18694 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31840 517 509 18694 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31841 577 509 18695 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31842 509 517 18695 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31843 517 638 18695 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31844 638 577 18695 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31845 517 396 18696 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31846 396 441 18696 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31847 441 542 18696 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31848 542 517 18696 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31849 638 517 18697 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31850 517 542 18697 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31851 542 670 18697 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31852 670 638 18697 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31853 651 638 18698 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31854 638 670 18698 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31855 670 713 18698 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31856 713 651 18698 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31857 618 651 18699 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31858 651 713 18699 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31859 713 705 18699 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31860 705 618 18699 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31861 670 542 18700 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31862 542 563 18700 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31863 563 677 18700 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31864 677 670 18700 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31865 713 670 18701 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31866 670 677 18701 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31867 677 731 18701 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31868 731 713 18701 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31869 705 713 18702 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31870 713 731 18702 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31871 731 740 18702 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31872 740 705 18702 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31873 542 441 18703 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31874 441 469 18703 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31875 469 563 18703 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31876 563 542 18703 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31877 740 731 18704 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31878 731 641 18704 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31879 641 646 18704 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31880 646 740 18704 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31881 563 469 18705 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31882 469 428 18705 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31883 428 518 18705 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31884 518 563 18705 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31885 677 563 18706 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31886 563 518 18706 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31887 518 581 18706 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31888 581 677 18706 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31889 731 677 18707 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31890 677 581 18707 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31891 581 641 18707 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31892 641 731 18707 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31893 518 428 18708 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31894 428 415 18708 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31895 415 400 18708 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31896 400 518 18708 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31897 581 518 18709 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31898 518 400 18709 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31899 400 422 18709 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31900 422 581 18709 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31901 641 581 18710 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31902 581 422 18710 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31903 422 406 18710 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31904 406 641 18710 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31905 646 641 18711 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31906 641 406 18711 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31907 406 443 18711 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31908 443 646 18711 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31909 406 422 18712 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31910 422 320 18712 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31911 320 282 18712 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31912 282 406 18712 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31913 363 406 18713 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31914 406 282 18713 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31915 282 285 18713 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31916 285 363 18713 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31917 400 415 18714 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31918 415 283 18714 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31919 283 310 18714 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31920 310 400 18714 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31921 422 400 18715 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31922 400 310 18715 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31923 310 320 18715 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31924 320 422 18715 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31925 282 251 18716 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31926 251 256 18716 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31927 256 285 18716 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31928 285 282 18716 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31929 310 259 18717 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31930 259 262 18717 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31931 262 320 18717 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31932 320 310 18717 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31933 241 237 18718 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31934 237 262 18718 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31935 262 259 18718 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31936 259 241 18718 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31937 406 363 18719 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31938 363 386 18719 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31939 386 443 18719 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31940 443 406 18719 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31941 251 234 18720 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31942 234 253 18720 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31943 253 256 18720 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31944 256 251 18720 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31945 237 241 18721 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31946 241 226 18721 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31947 226 221 18721 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31948 221 237 18721 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31949 234 251 18722 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31950 251 237 18722 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31951 237 221 18722 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31952 221 234 18722 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31953 251 282 18723 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31954 282 262 18723 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31955 262 237 18723 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31956 237 251 18723 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31957 355 379 18724 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31958 379 336 18724 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31959 336 327 18724 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31960 327 355 18724 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31961 230 208 18725 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31962 208 155 18725 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31963 155 182 18725 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31964 182 230 18725 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31965 297 230 18726 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31966 230 182 18726 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31967 182 229 18726 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31968 229 297 18726 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31969 379 297 18727 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31970 297 229 18727 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31971 229 336 18727 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31972 336 379 18727 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31973 204 219 18728 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31974 219 172 18728 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31975 172 148 18728 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31976 148 204 18728 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31977 208 204 18729 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31978 204 148 18729 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31979 148 155 18729 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31980 155 208 18729 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31981 296 355 18730 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31982 355 327 18730 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31983 327 351 18730 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31984 351 296 18730 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31985 287 252 18731 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31986 252 236 18731 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31987 236 263 18731 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31988 263 287 18731 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31989 252 234 18732 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31990 234 221 18732 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31991 221 236 18732 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31992 236 252 18732 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31993 239 236 18733 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31994 236 221 18733 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31995 221 226 18733 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31996 226 239 18733 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31997 234 252 18734 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31998 252 254 18734 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 31999 254 253 18734 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32000 253 234 18734 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32001 362 408 18735 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32002 408 443 18735 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32003 443 386 18735 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32004 386 362 18735 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32005 236 239 18736 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32006 239 257 18736 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32007 257 263 18736 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32008 263 236 18736 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32009 257 309 18737 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32010 309 321 18737 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32011 321 263 18737 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32012 263 257 18737 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32013 252 287 18738 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32014 287 286 18738 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32015 286 254 18738 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32016 254 252 18738 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32017 403 423 18739 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32018 423 321 18739 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32019 321 309 18739 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32020 309 403 18739 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32021 415 403 18740 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32022 403 309 18740 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32023 309 283 18740 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32024 283 415 18740 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32025 408 362 18741 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32026 362 286 18741 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32027 286 287 18741 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32028 287 408 18741 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32029 423 408 18742 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32030 408 287 18742 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32031 287 321 18742 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32032 321 423 18742 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32033 639 646 18743 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32034 646 443 18743 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32035 443 408 18743 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32036 408 639 18743 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32037 585 639 18744 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32038 639 408 18744 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32039 408 423 18744 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32040 423 585 18744 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32041 439 585 18745 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32042 585 423 18745 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32043 423 403 18745 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32044 403 439 18745 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32045 428 439 18746 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32046 439 403 18746 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32047 403 415 18746 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32048 415 428 18746 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32049 599 728 18747 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32050 728 639 18747 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32051 639 585 18747 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32052 585 599 18747 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32053 488 599 18748 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32054 599 585 18748 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32055 585 439 18748 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32056 439 488 18748 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32057 469 488 18749 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32058 488 439 18749 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32059 439 428 18749 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32060 428 469 18749 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32061 728 740 18750 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32062 740 646 18750 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32063 646 639 18750 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32064 639 728 18750 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32065 441 456 18751 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32066 456 488 18751 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32067 488 469 18751 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32068 469 441 18751 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32069 678 705 18752 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32070 705 740 18752 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32071 740 728 18752 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32072 728 678 18752 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32073 590 678 18753 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32074 678 728 18753 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32075 728 599 18753 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32076 599 590 18753 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32077 456 590 18754 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32078 590 599 18754 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32079 599 488 18754 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32080 488 456 18754 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32081 586 618 18755 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32082 618 705 18755 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32083 705 678 18755 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32084 678 586 18755 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32085 492 586 18756 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32086 586 678 18756 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32087 678 590 18756 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32088 590 492 18756 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32089 388 492 18757 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32090 492 590 18757 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32091 590 456 18757 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32092 456 388 18757 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32093 396 388 18758 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32094 388 456 18758 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32095 456 441 18758 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32096 441 396 18758 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32097 371 410 18759 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32098 410 492 18759 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32099 492 388 18759 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32100 388 371 18759 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32101 398 371 18760 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32102 371 388 18760 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32103 388 396 18760 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32104 396 398 18760 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32105 459 512 18761 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32106 512 618 18761 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32107 618 586 18761 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32108 586 459 18761 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32109 410 459 18762 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32110 459 586 18762 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32111 586 492 18762 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32112 492 410 18762 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32113 308 330 18763 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32114 330 512 18763 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32115 512 459 18763 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32116 459 308 18763 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32117 322 308 18764 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32118 308 459 18764 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32119 459 410 18764 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32120 410 322 18764 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32121 340 322 18765 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32122 322 410 18765 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32123 410 371 18765 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32124 371 340 18765 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32125 377 340 18766 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32126 340 371 18766 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32127 371 398 18766 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32128 398 377 18766 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32129 308 204 18767 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32130 204 208 18767 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32131 208 330 18767 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32132 330 308 18767 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32133 355 296 18768 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32134 296 340 18768 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32135 340 377 18768 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32136 377 355 18768 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32137 219 204 18769 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32138 204 308 18769 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32139 308 322 18769 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32140 322 219 18769 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32141 296 219 18770 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32142 219 322 18770 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32143 322 340 18770 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32144 340 296 18770 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32145 229 182 18771 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32146 182 131 18771 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32147 131 200 18771 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32148 200 229 18771 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32149 336 229 18772 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32150 229 200 18772 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32151 200 324 18772 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32152 324 336 18772 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32153 327 336 18773 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32154 336 324 18773 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32155 324 328 18773 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32156 328 327 18773 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32157 351 327 18774 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32158 327 328 18774 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32159 328 274 18774 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32160 274 351 18774 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32161 148 172 18775 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32162 172 111 18775 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32163 111 100 18775 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32164 100 148 18775 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32165 100 111 18776 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32166 111 78 18776 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32167 78 107 18776 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32168 107 100 18776 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32169 96 100 18777 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32170 100 107 18777 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32171 107 103 18777 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32172 103 96 18777 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32173 131 96 18778 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32174 96 103 18778 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32175 103 145 18778 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32176 145 131 18778 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32177 200 131 18779 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32178 131 145 18779 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32179 145 199 18779 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32180 199 200 18779 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32181 324 200 18780 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32182 200 199 18780 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32183 199 288 18780 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32184 288 324 18780 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32185 328 324 18781 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32186 324 288 18781 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32187 288 277 18781 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32188 277 328 18781 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32189 274 328 18782 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32190 328 277 18782 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32191 277 228 18782 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32192 228 274 18782 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32193 258 274 18783 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32194 274 228 18783 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32195 228 227 18783 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32196 227 258 18783 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32197 248 258 18784 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32198 258 227 18784 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32199 227 224 18784 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32200 224 248 18784 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32201 68 70 18785 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32202 70 72 18785 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32203 72 69 18785 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32204 69 68 18785 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32205 51 68 18786 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32206 68 69 18786 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32207 69 52 18786 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32208 52 51 18786 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32209 64 51 18787 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32210 51 52 18787 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32211 52 67 18787 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32212 67 64 18787 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32213 111 64 18788 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32214 64 67 18788 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32215 67 78 18788 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32216 78 111 18788 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32217 172 124 18789 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32218 124 64 18789 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32219 64 111 18789 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32220 111 172 18789 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32221 279 351 18790 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32222 351 274 18790 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32223 274 258 18790 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32224 258 279 18790 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32225 278 279 18791 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32226 279 258 18791 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32227 258 248 18791 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32228 248 278 18791 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32229 116 138 18792 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32230 138 70 18792 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32231 70 68 18792 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32232 68 116 18792 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32233 243 354 18793 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32234 354 480 18793 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32235 480 481 18793 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32236 481 243 18793 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32237 193 243 18794 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32238 243 481 18794 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32239 481 385 18794 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32240 385 193 18794 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32241 354 375 18795 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32242 375 444 18795 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32243 444 480 18795 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32244 480 354 18795 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32245 193 385 18796 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32246 385 365 18796 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32247 365 186 18796 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32248 186 193 18796 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32249 480 444 18797 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32250 444 491 18797 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32251 491 527 18797 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32252 527 480 18797 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32253 481 480 18798 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32254 480 527 18798 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32255 527 529 18798 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32256 529 481 18798 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32257 385 481 18799 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32258 481 529 18799 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32259 529 493 18799 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32260 493 385 18799 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32261 365 385 18800 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32262 385 493 18800 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32263 493 463 18800 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32264 463 365 18800 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32265 493 529 18801 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32266 529 647 18801 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32267 647 656 18801 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32268 656 493 18801 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32269 463 493 18802 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32270 493 656 18802 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32271 656 642 18802 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32272 642 463 18802 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32273 527 491 18803 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32274 491 522 18803 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32275 522 578 18803 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32276 578 527 18803 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32277 529 527 18804 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32278 527 578 18804 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32279 578 647 18804 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32280 647 529 18804 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32281 578 522 18805 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32282 522 565 18805 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32283 565 621 18805 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32284 621 578 18805 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32285 647 578 18806 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32286 578 621 18806 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32287 621 711 18806 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32288 711 647 18806 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32289 656 647 18807 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32290 647 711 18807 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32291 711 747 18807 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32292 747 656 18807 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32293 642 656 18808 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32294 656 747 18808 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32295 747 736 18808 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32296 736 642 18808 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32297 711 621 18809 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32298 621 643 18809 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32299 643 727 18809 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32300 727 711 18809 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32301 747 711 18810 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32302 711 727 18810 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32303 727 789 18810 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32304 789 747 18810 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32305 736 747 18811 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32306 747 789 18811 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32307 789 784 18811 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32308 784 736 18811 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32309 621 565 18812 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32310 565 583 18812 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32311 583 643 18812 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32312 643 621 18812 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32313 784 789 18813 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32314 789 771 18813 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32315 771 775 18813 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32316 775 784 18813 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32317 727 643 18814 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32318 643 619 18814 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32319 619 722 18814 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32320 722 727 18814 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32321 789 727 18815 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32322 727 722 18815 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32323 722 771 18815 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32324 771 789 18815 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32325 619 574 18816 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32326 574 606 18816 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32327 606 597 18816 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32328 597 619 18816 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32329 722 619 18817 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32330 619 597 18817 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32331 597 630 18817 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32332 630 722 18817 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32333 771 722 18818 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32334 722 630 18818 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32335 630 629 18818 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32336 629 771 18818 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32337 775 771 18819 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32338 771 629 18819 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32339 629 669 18819 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32340 669 775 18819 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32341 629 630 18820 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32342 630 520 18820 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32343 520 472 18820 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32344 472 629 18820 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32345 603 629 18821 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32346 629 472 18821 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32347 472 475 18821 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32348 475 603 18821 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32349 597 606 18822 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32350 606 450 18822 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32351 450 478 18822 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32352 478 597 18822 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32353 630 597 18823 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32354 597 478 18823 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32355 478 520 18823 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32356 520 630 18823 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32357 472 414 18824 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32358 414 416 18824 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32359 416 475 18824 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32360 475 472 18824 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32361 478 395 18825 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32362 395 411 18825 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32363 411 520 18825 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32364 520 478 18825 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32365 372 378 18826 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32366 378 411 18826 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32367 411 395 18826 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32368 395 372 18826 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32369 629 603 18827 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32370 603 648 18827 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32371 648 669 18827 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32372 669 629 18827 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32373 414 399 18828 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32374 399 413 18828 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32375 413 416 18828 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32376 416 414 18828 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32377 378 372 18829 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32378 372 357 18829 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32379 357 358 18829 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32380 358 378 18829 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32381 399 414 18830 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32382 414 378 18830 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32383 378 358 18830 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32384 358 399 18830 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32385 414 472 18831 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32386 472 411 18831 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32387 411 378 18831 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32388 378 414 18831 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32389 375 354 18832 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32390 354 351 18832 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32391 351 279 18832 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32392 279 375 18832 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32393 193 186 18833 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32394 186 115 18833 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32395 115 124 18833 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32396 124 193 18833 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32397 243 193 18834 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32398 193 124 18834 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32399 124 172 18834 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32400 172 243 18834 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32401 242 353 18835 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32402 353 278 18835 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32403 278 138 18835 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32404 138 242 18835 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32405 192 242 18836 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32406 242 138 18836 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32407 138 116 18836 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32408 116 192 18836 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32409 186 192 18837 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32410 192 116 18837 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32411 116 115 18837 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32412 115 186 18837 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32413 353 375 18838 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32414 375 279 18838 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32415 279 278 18838 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32416 278 353 18838 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32417 511 429 18839 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32418 429 401 18839 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32419 401 436 18839 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32420 436 511 18839 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32421 429 399 18840 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32422 399 358 18840 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32423 358 401 18840 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32424 401 429 18840 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32425 383 401 18841 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32426 401 358 18841 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32427 358 357 18841 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32428 357 383 18841 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32429 399 429 18842 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32430 429 433 18842 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32431 433 413 18842 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32432 413 399 18842 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32433 628 652 18843 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32434 652 669 18843 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32435 669 648 18843 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32436 648 628 18843 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32437 401 383 18844 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32438 383 418 18844 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32439 418 436 18844 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32440 436 401 18844 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32441 418 515 18845 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32442 515 562 18845 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32443 562 436 18845 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32444 436 418 18845 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32445 429 511 18846 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32446 511 508 18846 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32447 508 433 18846 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32448 433 429 18846 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32449 622 665 18847 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32450 665 562 18847 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32451 562 515 18847 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32452 515 622 18847 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32453 606 622 18848 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32454 622 515 18848 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32455 515 450 18848 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32456 450 606 18848 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32457 652 628 18849 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32458 628 508 18849 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32459 508 511 18849 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32460 511 652 18849 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32461 665 652 18850 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32462 652 511 18850 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32463 511 562 18850 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32464 562 665 18850 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32465 782 775 18851 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32466 775 669 18851 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32467 669 652 18851 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32468 652 782 18851 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32469 734 782 18852 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32470 782 652 18852 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32471 652 665 18852 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32472 665 734 18852 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32473 635 734 18853 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32474 734 665 18853 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32475 665 622 18853 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32476 622 635 18853 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32477 720 785 18854 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32478 785 782 18854 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32479 782 734 18854 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32480 734 720 18854 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32481 632 720 18855 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32482 720 734 18855 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32483 734 635 18855 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32484 635 632 18855 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32485 785 784 18856 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32486 784 775 18856 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32487 775 782 18856 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32488 782 785 18856 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32489 565 608 18857 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32490 608 632 18857 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32491 632 583 18857 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32492 583 565 18857 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32493 741 736 18858 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32494 736 784 18858 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32495 784 785 18858 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32496 785 741 18858 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32497 697 741 18859 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32498 741 785 18859 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32499 785 720 18859 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32500 720 697 18859 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32501 608 697 18860 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32502 697 720 18860 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32503 720 632 18860 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32504 632 608 18860 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32505 660 642 18861 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32506 642 736 18861 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32507 736 741 18861 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32508 741 660 18861 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32509 609 660 18862 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32510 660 741 18862 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32511 741 697 18862 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32512 697 609 18862 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32513 546 609 18863 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32514 609 697 18863 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32515 697 608 18863 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32516 608 546 18863 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32517 522 546 18864 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32518 546 608 18864 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32519 608 565 18864 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32520 565 522 18864 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32521 503 498 18865 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32522 498 609 18865 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32523 609 546 18865 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32524 546 503 18865 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32525 491 503 18866 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32526 503 546 18866 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32527 546 522 18866 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32528 522 491 18866 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32529 476 463 18867 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32530 463 642 18867 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32531 642 660 18867 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32532 660 476 18867 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32533 498 476 18868 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32534 476 660 18868 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32535 660 609 18868 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32536 609 498 18868 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32537 380 365 18869 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32538 365 463 18869 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32539 463 476 18869 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32540 476 380 18869 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32541 454 380 18870 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32542 380 476 18870 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32543 476 498 18870 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32544 498 454 18870 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32545 462 454 18871 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32546 454 498 18871 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32547 498 503 18871 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32548 503 462 18871 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32549 444 462 18872 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32550 462 503 18872 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32551 503 491 18872 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32552 491 444 18872 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32553 380 192 18873 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32554 192 186 18873 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32555 186 365 18873 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32556 365 380 18873 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32557 375 353 18874 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32558 353 462 18874 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32559 462 444 18874 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32560 444 375 18874 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32561 242 192 18875 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32562 192 380 18875 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32563 380 454 18875 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32564 454 242 18875 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32565 353 242 18876 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32566 242 454 18876 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32567 454 462 18876 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32568 462 353 18876 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32569 217 319 18877 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32570 319 479 18877 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32571 479 566 18877 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32572 566 217 18877 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32573 181 217 18878 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32574 217 566 18878 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32575 566 525 18878 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32576 525 181 18878 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32577 319 331 18879 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32578 331 419 18879 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32579 419 479 18879 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32580 479 319 18879 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32581 181 525 18880 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32582 525 494 18880 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32583 494 168 18880 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32584 168 181 18880 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32585 479 419 18881 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32586 419 490 18881 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32587 490 561 18881 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32588 561 479 18881 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32589 566 479 18882 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32590 479 561 18882 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32591 561 653 18882 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32592 653 566 18882 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32593 525 566 18883 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32594 566 653 18883 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32595 653 682 18883 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32596 682 525 18883 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32597 494 525 18884 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32598 525 682 18884 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32599 682 658 18884 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32600 658 494 18884 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32601 682 653 18885 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32602 653 689 18885 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32603 689 744 18885 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32604 744 682 18885 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32605 658 682 18886 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32606 682 744 18886 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32607 744 724 18886 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32608 724 658 18886 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32609 561 490 18887 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32610 490 504 18887 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32611 504 579 18887 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32612 579 561 18887 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32613 653 561 18888 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32614 561 579 18888 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32615 579 689 18888 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32616 689 653 18888 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32617 579 504 18889 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32618 504 545 18889 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32619 545 616 18889 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32620 616 579 18889 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32621 689 579 18890 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32622 579 616 18890 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32623 616 721 18890 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32624 721 689 18890 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32625 744 689 18891 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32626 689 721 18891 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32627 721 774 18891 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32628 774 744 18891 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32629 724 744 18892 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32630 744 774 18892 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32631 774 767 18892 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32632 767 724 18892 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32633 721 616 18893 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32634 616 633 18893 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32635 633 729 18893 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32636 729 721 18893 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32637 774 721 18894 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32638 721 729 18894 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32639 729 790 18894 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32640 790 774 18894 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32641 767 774 18895 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32642 774 790 18895 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32643 790 786 18895 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32644 786 767 18895 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32645 616 545 18896 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32646 545 572 18896 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32647 572 633 18896 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32648 633 616 18896 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32649 786 790 18897 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32650 790 733 18897 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32651 733 735 18897 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32652 735 786 18897 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32653 633 572 18898 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32654 572 554 18898 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32655 554 600 18898 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32656 600 633 18898 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32657 729 633 18899 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32658 633 600 18899 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32659 600 706 18899 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32660 706 729 18899 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32661 790 729 18900 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32662 729 706 18900 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32663 706 733 18900 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32664 733 790 18900 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32665 600 554 18901 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32666 554 468 18901 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32667 468 486 18901 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32668 486 600 18901 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32669 706 600 18902 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32670 600 486 18902 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32671 486 551 18902 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32672 551 706 18902 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32673 733 706 18903 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32674 706 551 18903 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32675 551 552 18903 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32676 552 733 18903 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32677 735 733 18904 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32678 733 552 18904 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32679 552 594 18904 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32680 594 735 18904 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32681 552 551 18905 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32682 551 425 18905 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32683 425 391 18905 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32684 391 552 18905 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32685 523 552 18906 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32686 552 391 18906 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32687 391 392 18906 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32688 392 523 18906 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32689 486 468 18907 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32690 468 348 18907 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32691 348 374 18907 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32692 374 486 18907 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32693 551 486 18908 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32694 486 374 18908 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32695 374 425 18908 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32696 425 551 18908 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32697 391 342 18909 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32698 342 345 18909 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32699 345 392 18909 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32700 392 391 18909 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32701 374 317 18910 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32702 317 339 18910 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32703 339 425 18910 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32704 425 374 18910 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32705 304 315 18911 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32706 315 339 18911 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32707 339 317 18911 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32708 317 304 18911 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32709 552 523 18912 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32710 523 560 18912 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32711 560 594 18912 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32712 594 552 18912 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32713 342 325 18913 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32714 325 335 18913 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32715 335 345 18913 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32716 345 342 18913 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32717 315 304 18914 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32718 304 290 18914 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32719 290 299 18914 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32720 299 315 18914 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32721 325 342 18915 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32722 342 315 18915 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32723 315 299 18915 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32724 299 325 18915 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32725 342 391 18916 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32726 391 339 18916 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32727 339 315 18916 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32728 315 342 18916 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32729 181 168 18917 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32730 168 79 18917 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32731 79 86 18917 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32732 86 181 18917 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32733 217 181 18918 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32734 181 86 18918 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32735 86 138 18918 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32736 138 217 18918 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32737 319 217 18919 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32738 217 138 18919 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32739 138 278 18919 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32740 278 319 18919 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32741 174 209 18920 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32742 209 137 18920 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32743 137 81 18920 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32744 81 174 18920 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32745 168 174 18921 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32746 174 81 18921 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32747 81 79 18921 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32748 79 168 18921 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32749 387 341 18922 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32750 341 314 18922 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32751 314 338 18922 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32752 338 387 18922 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32753 341 325 18923 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32754 325 299 18923 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32755 299 314 18923 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32756 314 341 18923 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32757 302 314 18924 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32758 314 299 18924 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32759 299 290 18924 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32760 290 302 18924 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32761 325 341 18925 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32762 341 343 18925 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32763 343 335 18925 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32764 335 325 18925 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32765 521 549 18926 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32766 549 594 18926 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32767 594 560 18926 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32768 560 521 18926 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32769 314 302 18927 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32770 302 316 18927 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32771 316 338 18927 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32772 338 314 18927 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32773 316 373 18928 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32774 373 424 18928 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32775 424 338 18928 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32776 338 316 18928 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32777 341 387 18929 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32778 387 390 18929 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32779 390 343 18929 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32780 343 341 18929 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32781 483 548 18930 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32782 548 424 18930 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32783 424 373 18930 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32784 373 483 18930 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32785 468 483 18931 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32786 483 373 18931 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32787 373 348 18931 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32788 348 468 18931 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32789 549 521 18932 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32790 521 390 18932 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32791 390 387 18932 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32792 387 549 18932 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32793 548 549 18933 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32794 549 387 18933 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32795 387 424 18933 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32796 424 548 18933 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32797 726 735 18934 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32798 735 594 18934 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32799 594 549 18934 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32800 549 726 18934 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32801 690 726 18935 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32802 726 549 18935 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32803 549 548 18935 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32804 548 690 18935 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32805 588 690 18936 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32806 690 548 18936 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32807 548 483 18936 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32808 483 588 18936 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32809 554 588 18937 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32810 588 483 18937 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32811 483 468 18937 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32812 468 554 18937 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32813 714 777 18938 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32814 777 726 18938 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32815 726 690 18938 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32816 690 714 18938 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32817 617 714 18939 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32818 714 690 18939 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32819 690 588 18939 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32820 588 617 18939 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32821 572 617 18940 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32822 617 588 18940 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32823 588 554 18940 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32824 554 572 18940 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32825 777 786 18941 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32826 786 735 18941 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32827 735 726 18941 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32828 726 777 18941 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32829 545 587 18942 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32830 587 617 18942 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32831 617 572 18942 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32832 572 545 18942 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32833 760 767 18943 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32834 767 786 18943 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32835 786 777 18943 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32836 777 760 18943 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32837 703 760 18944 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32838 760 777 18944 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32839 777 714 18944 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32840 714 703 18944 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32841 730 724 18945 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32842 724 767 18945 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32843 767 760 18945 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32844 760 730 18945 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32845 666 730 18946 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32846 730 760 18946 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32847 760 703 18946 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32848 703 666 18946 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32849 556 666 18947 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32850 666 703 18947 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32851 703 587 18947 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32852 587 556 18947 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32853 504 556 18948 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32854 556 587 18948 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32855 587 545 18948 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32856 545 504 18948 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32857 510 607 18949 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32858 607 666 18949 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32859 666 556 18949 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32860 556 510 18949 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32861 490 510 18950 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32862 510 556 18950 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32863 556 504 18950 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32864 504 490 18950 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32865 649 658 18951 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32866 658 724 18951 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32867 724 730 18951 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32868 730 649 18951 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32869 607 649 18952 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32870 649 730 18952 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32871 730 666 18952 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32872 666 607 18952 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32873 500 494 18953 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32874 494 658 18953 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32875 658 649 18953 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32876 649 500 18953 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32877 532 500 18954 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32878 500 649 18954 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32879 649 607 18954 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32880 607 532 18954 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32881 445 532 18955 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32882 532 607 18955 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32883 607 510 18955 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32884 510 445 18955 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32885 419 445 18956 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32886 445 510 18956 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32887 510 490 18956 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32888 490 419 18956 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32889 500 174 18957 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32890 174 168 18957 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32891 168 494 18957 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32892 494 500 18957 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32893 331 301 18958 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32894 301 445 18958 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32895 445 419 18958 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32896 419 331 18958 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32897 209 174 18959 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32898 174 500 18959 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32899 500 532 18959 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32900 532 209 18959 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32901 301 209 18960 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32902 209 532 18960 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32903 532 445 18960 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32904 445 301 18960 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32905 138 86 18961 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32906 86 34 18961 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32907 34 70 18961 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32908 70 138 18961 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32909 240 278 18962 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32910 278 248 18962 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32911 248 212 18962 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32912 212 240 18962 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32913 294 240 18963 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32914 240 212 18963 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32915 212 307 18963 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32916 307 294 18963 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32917 81 137 18964 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32918 137 43 18964 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32919 43 30 18964 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32920 30 81 18964 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32921 30 43 18965 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32922 43 48 18965 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32923 48 36 18965 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32924 36 30 18965 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32925 19 30 18966 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32926 30 36 18966 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32927 36 20 18966 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32928 20 19 18966 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32929 34 19 18967 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32930 19 20 18967 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32931 20 40 18967 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32932 40 34 18967 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32933 70 34 18968 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32934 34 40 18968 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32935 40 72 18968 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32936 72 70 18968 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32937 212 248 18969 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32938 248 224 18969 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32939 224 210 18969 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32940 210 212 18969 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32941 307 212 18970 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32942 212 210 18970 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32943 210 272 18970 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32944 272 307 18970 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32945 280 307 18971 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32946 307 272 18971 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32947 272 334 18971 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32948 334 280 18971 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32949 250 280 18972 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32950 280 334 18972 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32951 334 232 18972 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32952 232 250 18972 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32953 95 250 18973 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32954 250 232 18973 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32955 232 120 18973 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32956 120 95 18973 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32957 61 95 18974 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32958 95 120 18974 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32959 120 82 18974 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32960 82 61 18974 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32961 42 61 18975 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32962 61 82 18975 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32963 82 45 18975 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32964 45 42 18975 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32965 63 42 18976 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32966 42 45 18976 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32967 45 66 18976 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32968 66 63 18976 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32969 43 63 18977 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32970 63 66 18977 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32971 66 48 18977 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32972 48 43 18977 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32973 137 122 18978 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32974 122 63 18978 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32975 63 43 18978 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32976 43 137 18978 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32977 346 294 18979 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32978 294 307 18979 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32979 307 280 18979 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32980 280 346 18979 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32981 291 346 18980 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32982 346 280 18980 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32983 280 250 18980 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32984 250 291 18980 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32985 152 291 18981 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32986 291 250 18981 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32987 250 95 18981 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32988 95 152 18981 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32989 104 152 18982 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32990 152 95 18982 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32991 95 61 18982 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32992 61 104 18982 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32993 276 402 18983 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32994 402 496 18983 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32995 496 505 18983 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32996 505 276 18983 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32997 207 276 18984 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32998 276 505 18984 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 32999 505 434 18984 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33000 434 207 18984 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33001 402 417 18985 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33002 417 452 18985 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33003 452 496 18985 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33004 496 402 18985 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33005 207 434 18986 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33006 434 407 18986 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33007 407 191 18986 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33008 191 207 18986 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33009 496 452 18987 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33010 452 487 18987 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33011 487 559 18987 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33012 559 496 18987 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33013 505 496 18988 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33014 496 559 18988 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33015 559 610 18988 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33016 610 505 18988 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33017 434 505 18989 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33018 505 610 18989 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33019 610 605 18989 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33020 605 434 18989 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33021 407 434 18990 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33022 434 605 18990 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33023 605 568 18990 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33024 568 407 18990 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33025 605 610 18991 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33026 610 661 18991 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33027 661 704 18991 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33028 704 605 18991 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33029 568 605 18992 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33030 605 704 18992 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33031 704 683 18992 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33032 683 568 18992 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33033 559 487 18993 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33034 487 516 18993 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33035 516 584 18993 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33036 584 559 18993 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33037 610 559 18994 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33038 559 584 18994 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33039 584 661 18994 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33040 661 610 18994 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33041 584 516 18995 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33042 516 636 18995 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33043 636 673 18995 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33044 673 584 18995 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33045 661 584 18996 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33046 584 673 18996 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33047 673 755 18996 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33048 755 661 18996 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33049 704 661 18997 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33050 661 755 18997 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33051 755 805 18997 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33052 805 704 18997 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33053 683 704 18998 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33054 704 805 18998 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33055 805 801 18998 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33056 801 683 18998 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33057 755 673 18999 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33058 673 694 18999 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33059 694 787 18999 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33060 787 755 18999 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33061 805 755 19000 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33062 755 787 19000 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33063 787 830 19000 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33064 830 805 19000 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33065 801 805 19001 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33066 805 830 19001 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33067 830 825 19001 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33068 825 801 19001 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33069 673 636 19002 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33070 636 654 19002 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33071 654 694 19002 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33072 694 673 19002 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33073 825 830 19003 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33074 830 804 19003 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33075 804 803 19003 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33076 803 825 19003 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33077 694 654 19004 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33078 654 634 19004 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33079 634 687 19004 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33080 687 694 19004 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33081 787 694 19005 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33082 694 687 19005 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33083 687 766 19005 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33084 766 787 19005 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33085 830 787 19006 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33086 787 766 19006 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33087 766 804 19006 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33088 804 830 19006 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33089 687 634 19007 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33090 634 569 19007 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33091 569 611 19007 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33092 611 687 19007 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33093 766 687 19008 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33094 687 611 19008 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33095 611 688 19008 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33096 688 766 19008 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33097 804 766 19009 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33098 766 688 19009 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33099 688 702 19009 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33100 702 804 19009 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33101 803 804 19010 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33102 804 702 19010 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33103 702 717 19010 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33104 717 803 19010 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33105 702 688 19011 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33106 688 614 19011 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33107 614 601 19011 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33108 601 702 19011 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33109 680 702 19012 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33110 702 601 19012 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33111 601 602 19012 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33112 602 680 19012 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33113 611 569 19013 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33114 569 466 19013 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33115 466 536 19013 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33116 536 611 19013 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33117 688 611 19014 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33118 611 536 19014 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33119 536 614 19014 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33120 614 688 19014 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33121 601 540 19015 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33122 540 555 19015 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33123 555 602 19015 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33124 602 601 19015 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33125 536 465 19016 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33126 465 531 19016 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33127 531 614 19016 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33128 614 536 19016 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33129 446 497 19017 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33130 497 531 19017 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33131 531 465 19017 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33132 465 446 19017 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33133 702 680 19018 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33134 680 701 19018 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33135 701 717 19018 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33136 717 702 19018 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33137 540 524 19019 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33138 524 541 19019 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33139 541 555 19019 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33140 555 540 19019 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33141 497 446 19020 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33142 446 430 19020 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33143 430 474 19020 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33144 474 497 19020 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33145 524 540 19021 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33146 540 497 19021 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33147 497 474 19021 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33148 474 524 19021 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33149 540 601 19022 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33150 601 531 19022 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33151 531 497 19022 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33152 497 540 19022 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33153 417 402 19023 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33154 402 294 19023 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33155 294 346 19023 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33156 346 417 19023 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33157 207 191 19024 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33158 191 109 19024 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33159 109 122 19024 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33160 122 207 19024 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33161 276 207 19025 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33162 207 122 19025 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33163 122 137 19025 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33164 137 276 19025 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33165 225 337 19026 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33166 337 291 19026 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33167 291 152 19026 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33168 152 225 19026 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33169 198 225 19027 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33170 225 152 19027 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33171 152 104 19027 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33172 104 198 19027 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33173 191 198 19028 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33174 198 104 19028 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33175 104 109 19028 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33176 109 191 19028 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33177 337 417 19029 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33178 417 346 19029 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33179 346 291 19029 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33180 291 337 19029 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33181 570 528 19030 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33182 528 482 19030 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33183 482 501 19030 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33184 501 570 19030 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33185 528 524 19031 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33186 524 474 19031 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33187 474 482 19031 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33188 482 528 19031 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33189 435 482 19032 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33190 482 474 19032 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33191 474 430 19032 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33192 430 435 19032 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33193 524 528 19033 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33194 528 538 19033 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33195 538 541 19033 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33196 541 524 19033 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33197 664 684 19034 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33198 684 717 19034 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33199 717 701 19034 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33200 701 664 19034 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33201 482 435 19035 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33202 435 447 19035 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33203 447 501 19035 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33204 501 482 19035 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33205 447 507 19036 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33206 507 580 19036 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33207 580 501 19036 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33208 501 447 19036 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33209 528 570 19037 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33210 570 576 19037 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33211 576 538 19037 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33212 538 528 19037 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33213 589 659 19038 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33214 659 580 19038 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33215 580 507 19038 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33216 507 589 19038 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33217 569 589 19039 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33218 589 507 19039 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33219 507 466 19039 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33220 466 569 19039 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33221 684 664 19040 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33222 664 576 19040 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33223 576 570 19040 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33224 570 684 19040 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33225 659 684 19041 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33226 684 570 19041 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33227 570 580 19041 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33228 580 659 19041 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33229 793 803 19042 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33230 803 717 19042 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33231 717 684 19042 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33232 684 793 19042 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33233 751 793 19043 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33234 793 684 19043 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33235 684 659 19043 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33236 659 751 19043 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33237 662 751 19044 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33238 751 659 19044 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33239 659 589 19044 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33240 589 662 19044 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33241 634 662 19045 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33242 662 589 19045 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33243 589 569 19045 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33244 569 634 19045 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33245 757 820 19046 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33246 820 793 19046 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33247 793 751 19046 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33248 751 757 19046 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33249 654 672 19047 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33250 672 662 19047 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33251 662 634 19047 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33252 634 654 19047 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33253 820 825 19048 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33254 825 803 19048 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33255 803 793 19048 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33256 793 820 19048 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33257 636 650 19049 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33258 650 672 19049 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33259 672 654 19049 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33260 654 636 19049 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33261 798 801 19050 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33262 801 825 19050 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33263 825 820 19050 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33264 820 798 19050 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33265 742 798 19051 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33266 798 820 19051 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33267 820 757 19051 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33268 757 742 19051 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33269 650 742 19052 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33270 742 757 19052 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33271 757 672 19052 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33272 672 650 19052 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33273 685 683 19053 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33274 683 801 19053 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33275 801 798 19053 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33276 798 685 19053 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33277 620 685 19054 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33278 685 798 19054 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33279 798 742 19054 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33280 742 620 19054 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33281 543 620 19055 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33282 620 742 19055 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33283 742 650 19055 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33284 650 543 19055 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33285 516 543 19056 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33286 543 650 19056 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33287 650 636 19056 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33288 636 516 19056 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33289 506 553 19057 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33290 553 620 19057 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33291 620 543 19057 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33292 543 506 19057 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33293 487 506 19058 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33294 506 543 19058 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33295 543 516 19058 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33296 516 487 19058 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33297 567 568 19059 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33298 568 683 19059 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33299 683 685 19059 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33300 685 567 19059 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33301 553 567 19060 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33302 567 685 19060 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33303 685 620 19060 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33304 620 553 19060 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33305 412 407 19061 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33306 407 568 19061 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33307 568 567 19061 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33308 567 412 19061 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33309 440 412 19062 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33310 412 567 19062 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33311 567 553 19062 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33312 553 440 19062 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33313 437 440 19063 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33314 440 553 19063 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33315 553 506 19063 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33316 506 437 19063 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33317 452 437 19064 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33318 437 506 19064 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33319 506 487 19064 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33320 487 452 19064 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33321 412 198 19065 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33322 198 191 19065 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33323 191 407 19065 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33324 407 412 19065 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33325 417 337 19066 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33326 337 437 19066 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33327 437 452 19066 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33328 452 417 19066 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33329 225 198 19067 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33330 198 412 19067 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33331 412 440 19067 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33332 440 225 19067 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33333 337 225 19068 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33334 225 440 19068 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33335 440 437 19068 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33336 437 337 19068 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33337 557 625 19069 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33338 625 455 19069 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33339 455 366 19069 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33340 366 557 19069 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33341 625 696 19070 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33342 696 582 19070 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33343 582 455 19070 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33344 455 625 19070 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33345 696 754 19071 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33346 754 695 19071 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33347 695 582 19071 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33348 582 696 19071 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33349 754 800 19072 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33350 800 770 19072 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33351 770 695 19072 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33352 695 754 19072 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33353 800 783 19073 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33354 783 725 19073 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33355 725 770 19073 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33356 770 800 19073 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33357 783 700 19074 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33358 700 645 19074 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33359 645 725 19074 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33360 725 783 19074 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33361 700 593 19075 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33362 593 499 19075 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33363 499 645 19075 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33364 645 700 19075 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33365 593 557 19076 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33366 557 366 19076 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33367 366 499 19076 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33368 499 593 19076 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33369 409 626 19077 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33370 626 671 19077 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33371 671 471 19077 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33372 471 409 19077 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33373 247 409 19078 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33374 409 471 19078 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33375 471 303 19078 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33376 303 247 19078 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33377 273 247 19079 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33378 247 303 19079 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33379 303 305 19079 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33380 305 273 19079 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33381 356 273 19080 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33382 273 305 19080 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33383 305 457 19080 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33384 457 356 19080 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33385 305 303 19081 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33386 303 366 19081 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33387 366 455 19081 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33388 455 305 19081 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33389 457 305 19082 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33390 305 455 19082 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33391 455 582 19082 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33392 582 457 19082 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33393 471 671 19083 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33394 671 645 19083 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33395 645 499 19083 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33396 499 471 19083 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33397 303 471 19084 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33398 471 499 19084 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33399 499 366 19084 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33400 366 303 19084 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33401 593 700 19085 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33402 700 748 19085 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33403 748 686 19085 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33404 686 593 19085 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33405 557 593 19086 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33406 593 686 19086 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33407 686 699 19086 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33408 699 557 19086 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33409 625 557 19087 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33410 557 699 19087 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33411 699 732 19087 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33412 732 625 19087 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33413 696 625 19088 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33414 625 732 19088 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33415 732 773 19088 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33416 773 696 19088 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33417 699 686 19089 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33418 686 691 19089 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33419 691 715 19089 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33420 715 699 19089 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33421 732 699 19090 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33422 699 715 19090 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33423 715 769 19090 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33424 769 732 19090 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33425 773 732 19091 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33426 732 769 19091 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33427 769 828 19091 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33428 828 773 19091 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33429 686 748 19092 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33430 748 750 19092 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33431 750 691 19092 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33432 691 686 19092 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33433 828 769 19093 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33434 769 808 19093 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33435 808 840 19093 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33436 840 828 19093 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33437 691 750 19094 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33438 750 763 19094 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33439 763 716 19094 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33440 716 691 19094 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33441 715 691 19095 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33442 691 716 19095 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33443 716 743 19095 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33444 743 715 19095 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33445 769 715 19096 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33446 715 743 19096 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33447 743 808 19096 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33448 808 769 19096 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33449 716 763 19097 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33450 763 807 19097 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33451 807 759 19097 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33452 759 716 19097 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33453 743 716 19098 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33454 716 759 19098 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33455 759 778 19098 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33456 778 743 19098 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33457 808 743 19099 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33458 743 778 19099 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33459 778 824 19099 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33460 824 808 19099 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33461 840 808 19100 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33462 808 824 19100 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33463 824 860 19100 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33464 860 840 19100 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33465 824 778 19101 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33466 778 811 19101 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33467 811 839 19101 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33468 839 824 19101 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33469 838 824 19102 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33470 824 839 19102 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33471 839 845 19102 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33472 845 838 19102 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33473 759 807 19103 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33474 807 843 19103 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33475 843 806 19103 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33476 806 759 19103 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33477 778 759 19104 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33478 759 806 19104 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33479 806 811 19104 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33480 811 778 19104 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33481 839 873 19105 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33482 873 877 19105 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33483 877 845 19105 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33484 845 839 19105 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33485 806 833 19106 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33486 833 841 19106 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33487 841 811 19106 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33488 811 806 19106 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33489 851 870 19107 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33490 870 841 19107 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33491 841 833 19107 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33492 833 851 19107 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33493 824 838 19108 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33494 838 875 19108 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33495 875 860 19108 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33496 860 824 19108 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33497 873 903 19109 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33498 903 902 19109 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33499 902 877 19109 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33500 877 873 19109 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33501 870 851 19110 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33502 851 879 19110 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33503 879 897 19110 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33504 897 870 19110 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33505 903 873 19111 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33506 873 870 19111 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33507 870 897 19111 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33508 897 903 19111 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33509 873 839 19112 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33510 839 841 19112 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33511 841 870 19112 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33512 870 873 19112 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33513 933 927 19113 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33514 927 917 19113 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33515 917 924 19113 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33516 924 933 19113 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33517 927 903 19114 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33518 903 897 19114 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33519 897 917 19114 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33520 917 927 19114 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33521 891 917 19115 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33522 917 897 19115 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33523 897 879 19115 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33524 879 891 19115 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33525 903 927 19116 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33526 927 929 19116 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33527 929 902 19116 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33528 902 903 19116 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33529 904 901 19117 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33530 901 860 19117 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33531 860 875 19117 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33532 875 904 19117 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33533 917 891 19118 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33534 891 892 19118 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33535 892 924 19118 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33536 924 917 19118 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33537 892 883 19119 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33538 883 919 19119 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33539 919 924 19119 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33540 924 892 19119 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33541 927 933 19120 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33542 933 928 19120 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33543 928 929 19120 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33544 929 927 19120 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33545 854 900 19121 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33546 900 919 19121 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33547 919 883 19121 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33548 883 854 19121 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33549 807 854 19122 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33550 854 883 19122 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33551 883 843 19122 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33552 843 807 19122 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33553 901 904 19123 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33554 904 928 19123 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33555 928 933 19123 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33556 933 901 19123 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33557 900 901 19124 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33558 901 933 19124 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33559 933 919 19124 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33560 919 900 19124 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33561 881 840 19125 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33562 840 860 19125 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33563 860 901 19125 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33564 901 881 19125 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33565 886 881 19126 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33566 881 901 19126 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33567 901 900 19126 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33568 900 886 19126 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33569 832 886 19127 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33570 886 900 19127 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33571 900 854 19127 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33572 854 832 19127 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33573 763 832 19128 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33574 832 854 19128 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33575 854 807 19128 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33576 807 763 19128 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33577 869 868 19129 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33578 868 881 19129 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33579 881 886 19129 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33580 886 869 19129 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33581 827 869 19130 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33582 869 886 19130 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33583 886 832 19130 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33584 832 827 19130 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33585 750 827 19131 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33586 827 832 19131 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33587 832 763 19131 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33588 763 750 19131 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33589 868 828 19132 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33590 828 840 19132 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33591 840 881 19132 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33592 881 868 19132 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33593 748 823 19133 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33594 823 827 19133 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33595 827 750 19133 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33596 750 748 19133 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33597 826 773 19134 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33598 773 828 19134 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33599 828 868 19134 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33600 868 826 19134 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33601 848 826 19135 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33602 826 868 19135 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33603 868 869 19135 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33604 869 848 19135 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33605 823 848 19136 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33606 848 869 19136 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33607 869 827 19136 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33608 827 823 19136 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33609 754 696 19137 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33610 696 773 19137 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33611 773 826 19137 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33612 826 754 19137 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33613 800 754 19138 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33614 754 826 19138 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33615 826 848 19138 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33616 848 800 19138 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33617 783 800 19139 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33618 800 848 19139 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33619 848 823 19139 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33620 823 783 19139 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33621 700 783 19140 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33622 783 823 19140 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33623 823 748 19140 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33624 748 700 19140 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33625 768 756 19141 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33626 756 770 19141 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33627 770 725 19141 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33628 725 768 19141 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33629 671 768 19142 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33630 768 725 19142 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33631 725 645 19142 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33632 645 671 19142 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33633 640 457 19143 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33634 457 582 19143 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33635 582 695 19143 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33636 695 640 19143 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33637 756 640 19144 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33638 640 695 19144 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33639 695 770 19144 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33640 770 756 19144 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33641 526 356 19145 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33642 356 457 19145 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33643 457 640 19145 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33644 640 526 19145 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33645 723 526 19146 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33646 526 640 19146 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33647 640 756 19146 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33648 756 723 19146 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33649 745 723 19147 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33650 723 756 19147 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33651 756 768 19147 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33652 768 745 19147 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33653 626 745 19148 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33654 745 768 19148 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33655 768 671 19148 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33656 671 626 19148 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33657 39 9 19149 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33658 9 22 19149 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33659 22 87 19149 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33660 87 39 19149 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33661 27 39 19150 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33662 39 87 19150 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33663 87 74 19150 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33664 74 27 19150 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33665 312 161 19151 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33666 161 171 19151 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33667 171 244 19151 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33668 244 312 19151 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33669 591 222 19152 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33670 222 312 19152 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33671 312 573 19152 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33672 573 591 19152 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33673 762 591 19153 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33674 591 573 19153 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33675 573 780 19153 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33676 780 762 19153 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33677 909 865 19154 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33678 865 857 19154 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33679 857 867 19154 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33680 867 909 19154 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33681 863 909 19155 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33682 909 867 19155 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33683 867 829 19155 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33684 829 863 19155 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33685 31 12 19156 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33686 12 14 19156 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33687 14 110 19156 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33688 110 31 19156 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33689 22 9 19157 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33690 9 12 19157 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33691 12 31 19157 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33692 31 22 19157 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33693 761 863 19158 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33694 863 829 19158 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33695 829 738 19158 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33696 738 761 19158 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33697 12 4 19159 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33698 4 7 19159 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33699 7 14 19159 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33700 14 12 19159 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33701 5 4 19160 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33702 4 12 19160 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33703 12 9 19160 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33704 9 5 19160 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33705 8 5 19161 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33706 5 9 19161 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33707 9 39 19161 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33708 39 8 19161 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33709 13 8 19162 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33710 8 39 19162 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33711 39 27 19162 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33712 27 13 19162 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33713 83 13 19163 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33714 13 27 19163 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33715 27 141 19163 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33716 141 83 19163 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33717 83 141 19164 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33718 141 222 19164 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33719 222 213 19164 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33720 213 83 19164 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33721 762 752 19165 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33722 752 534 19165 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33723 534 591 19165 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33724 591 762 19165 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33725 591 534 19166 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33726 534 213 19166 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33727 213 222 19166 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33728 222 591 19166 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33729 846 752 19167 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33730 752 762 19167 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33731 762 865 19167 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33732 865 846 19167 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33733 909 885 19168 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33734 885 846 19168 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33735 846 865 19168 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33736 865 909 19168 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33737 863 842 19169 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33738 842 885 19169 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33739 885 909 19169 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33740 909 863 19169 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33741 761 772 19170 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33742 772 842 19170 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33743 842 863 19170 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33744 863 761 19170 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33745 154 37 19171 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33746 37 16 19171 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33747 16 162 19171 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33748 162 154 19171 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33749 761 464 19172 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33750 464 442 19172 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33751 442 772 19172 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33752 772 761 19172 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33753 154 162 19173 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33754 162 442 19173 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33755 442 464 19173 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33756 464 154 19173 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33757 175 183 19174 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33758 183 238 19174 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33759 238 218 19174 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33760 218 175 19174 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33761 159 146 19175 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33762 146 126 19175 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33763 126 114 19175 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33764 114 159 19175 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33765 149 183 19176 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33766 183 175 19176 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33767 175 140 19176 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33768 140 149 19176 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33769 149 140 19177 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33770 140 126 19177 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33771 126 146 19177 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33772 146 149 19177 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33773 674 737 19178 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33774 737 438 19178 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33775 438 275 19178 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33776 275 674 19178 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33777 866 802 19179 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33778 802 810 19179 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33779 810 871 19179 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33780 871 866 19179 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33781 802 674 19180 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33782 674 707 19180 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33783 707 810 19180 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33784 810 802 19180 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33785 961 874 19181 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33786 874 887 19181 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33787 887 970 19181 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33788 970 961 19181 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33789 874 623 19182 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33790 623 644 19182 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33791 644 887 19182 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33792 887 874 19182 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33793 76 129 19183 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33794 129 127 19183 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33795 127 80 19183 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33796 80 76 19183 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33797 196 127 19184 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33798 127 129 19184 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33799 129 194 19184 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33800 194 196 19184 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33801 623 381 19185 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33802 381 393 19185 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33803 393 644 19185 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33804 644 623 19185 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33805 238 269 19186 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33806 269 266 19186 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33807 266 218 19186 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33808 218 238 19186 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33809 269 451 19187 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33810 451 449 19187 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33811 449 266 19187 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33812 266 269 19187 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33813 821 948 19188 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33814 948 943 19188 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33815 943 815 19188 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33816 815 821 19188 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33817 196 194 19189 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33818 194 271 19189 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33819 271 270 19189 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33820 270 196 19189 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33821 667 676 19190 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33822 676 449 19190 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33823 449 451 19190 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33824 451 667 19190 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33825 676 667 19191 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33826 667 821 19191 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33827 821 815 19191 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33828 815 676 19191 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33829 1385 1333 19192 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33830 1333 1266 19192 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33831 1266 1364 19192 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33832 1364 1385 19192 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33833 1430 1385 19193 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33834 1385 1364 19193 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33835 1364 1411 19193 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33836 1411 1430 19193 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33837 1477 1430 19194 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33838 1430 1434 19194 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33839 1434 1445 19194 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33840 1445 1477 19194 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33841 1474 1477 19195 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33842 1477 1455 19195 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33843 1455 1454 19195 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33844 1454 1474 19195 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33845 1420 1474 19196 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33846 1474 1439 19196 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33847 1439 1423 19196 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33848 1423 1420 19196 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33849 1399 1420 19197 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33850 1420 1402 19197 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33851 1402 1349 19197 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33852 1349 1399 19197 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33853 1355 1399 19198 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33854 1399 1349 19198 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33855 1349 1291 19198 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33856 1291 1355 19198 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33857 1331 1355 19199 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33858 1355 1257 19199 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33859 1257 1198 19199 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33860 1198 1331 19199 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33861 1331 1198 19200 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33862 1198 1207 19200 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33863 1207 1333 19200 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33864 1333 1331 19200 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33865 1207 1198 19201 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33866 1198 1131 19201 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33867 1131 1223 19201 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33868 1223 1207 19201 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33869 1266 1207 19202 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33870 1207 1215 19202 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33871 1215 1220 19202 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33872 1220 1266 19202 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33873 1364 1266 19203 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33874 1266 1220 19203 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33875 1220 1268 19203 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33876 1268 1364 19203 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33877 1411 1364 19204 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33878 1364 1268 19204 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33879 1268 1318 19204 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33880 1318 1411 19204 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33881 1434 1411 19205 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33882 1411 1318 19205 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33883 1318 1288 19205 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33884 1288 1434 19205 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33885 1445 1434 19206 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33886 1434 1288 19206 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33887 1288 1308 19206 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33888 1308 1445 19206 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33889 1455 1445 19207 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33890 1445 1308 19207 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33891 1308 1314 19207 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33892 1314 1455 19207 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33893 1454 1455 19208 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33894 1455 1314 19208 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33895 1314 1313 19208 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33896 1313 1454 19208 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33897 1439 1454 19209 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33898 1454 1313 19209 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33899 1313 1303 19209 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33900 1303 1439 19209 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33901 1423 1439 19210 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33902 1439 1303 19210 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33903 1303 1279 19210 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33904 1279 1423 19210 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33905 1402 1423 19211 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33906 1423 1279 19211 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33907 1279 1301 19211 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33908 1301 1402 19211 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33909 1349 1402 19212 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33910 1402 1301 19212 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33911 1301 1249 19212 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33912 1249 1349 19212 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33913 1291 1349 19213 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33914 1349 1249 19213 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33915 1249 1189 19213 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33916 1189 1291 19213 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33917 1257 1291 19214 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33918 1291 1189 19214 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33919 1189 1190 19214 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33920 1190 1257 19214 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33921 1198 1257 19215 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33922 1257 1190 19215 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33923 1190 1154 19215 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33924 1154 1198 19215 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33925 1190 1189 19216 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33926 1189 937 19216 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33927 937 949 19216 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33928 949 1190 19216 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33929 943 1154 19217 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33930 1154 1190 19217 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33931 1190 949 19217 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33932 949 943 19217 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33933 1154 948 19218 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33934 948 988 19218 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33935 988 1046 19218 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33936 1046 1154 19218 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33937 1131 1046 19219 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33938 1046 988 19219 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33939 988 1152 19219 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33940 1152 1131 19219 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33941 1223 1131 19220 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33942 1131 1152 19220 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33943 1152 1231 19220 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33944 1231 1223 19220 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33945 1218 1223 19221 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33946 1223 1231 19221 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33947 1231 1117 19221 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33948 1117 1218 19221 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33949 1215 1218 19222 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33950 1218 1117 19222 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33951 1117 1018 19222 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33952 1018 1215 19222 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33953 1220 1215 19223 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33954 1215 1018 19223 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33955 1018 1001 19223 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33956 1001 1220 19223 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33957 1268 1220 19224 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33958 1220 1001 19224 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33959 1001 1088 19224 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33960 1088 1268 19224 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33961 1318 1268 19225 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33962 1268 1088 19225 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33963 1088 1087 19225 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33964 1087 1318 19225 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33965 1288 1318 19226 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33966 1318 1087 19226 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33967 1087 1089 19226 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33968 1089 1288 19226 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33969 1308 1288 19227 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33970 1288 1089 19227 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33971 1089 1073 19227 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33972 1073 1308 19227 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33973 1314 1308 19228 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33974 1308 1073 19228 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33975 1073 1072 19228 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33976 1072 1314 19228 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33977 1313 1314 19229 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33978 1314 1072 19229 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33979 1072 1093 19229 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33980 1093 1313 19229 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33981 1303 1313 19230 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33982 1313 1093 19230 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33983 1093 1058 19230 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33984 1058 1303 19230 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33985 1279 1303 19231 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33986 1303 1058 19231 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33987 1058 1021 19231 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33988 1021 1279 19231 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33989 1301 1279 19232 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33990 1279 1021 19232 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33991 1021 982 19232 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33992 982 1301 19232 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33993 1249 1301 19233 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33994 1301 982 19233 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33995 982 969 19233 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33996 969 1249 19233 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33997 1189 1249 19234 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33998 1249 969 19234 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 33999 969 937 19234 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34000 937 1189 19234 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34001 1093 1072 19235 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34002 1072 938 19235 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34003 938 932 19235 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34004 932 1093 19235 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34005 913 890 19236 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34006 890 1058 19236 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34007 1058 1093 19236 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34008 1093 913 19236 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34009 615 663 19237 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34010 663 932 19237 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34011 932 938 19237 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34012 938 615 19237 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34013 663 765 19238 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34014 765 913 19238 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34015 913 932 19238 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34016 932 663 19238 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34017 596 749 19239 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34018 749 718 19239 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34019 718 558 19239 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34020 558 596 19239 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34021 931 1087 19240 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34022 1087 1088 19240 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34023 1088 922 19240 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34024 922 931 19240 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34025 837 931 19241 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34026 931 922 19241 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34027 922 692 19241 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34028 692 837 19241 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34029 1087 931 19242 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34030 931 925 19242 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34031 925 1089 19242 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34032 1089 1087 19242 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34033 746 837 19243 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34034 837 692 19243 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34035 692 544 19243 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34036 544 746 19243 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34037 844 925 19244 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34038 925 837 19244 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34039 837 746 19244 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34040 746 844 19244 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34041 266 203 19245 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34042 203 176 19245 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34043 176 218 19245 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34044 218 266 19245 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34045 203 165 19246 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34046 165 147 19246 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34047 147 176 19246 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34048 176 203 19246 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34049 925 942 19247 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34050 942 1073 19247 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34051 1073 1089 19247 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34052 1089 925 19247 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34053 844 613 19248 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34054 613 797 19248 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34055 797 942 19248 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34056 942 844 19248 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34057 746 332 19249 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34058 332 613 19249 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34059 613 844 19249 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34060 844 746 19249 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34061 544 205 19250 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34062 205 332 19250 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34063 332 746 19250 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34064 746 544 19250 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34065 202 332 19251 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34066 332 205 19251 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34067 205 139 19251 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34068 139 202 19251 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34069 329 613 19252 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34070 613 332 19252 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34071 332 202 19252 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34072 202 329 19252 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34073 329 615 19253 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34074 615 797 19253 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34075 797 613 19253 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34076 613 329 19253 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34077 295 663 19254 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34078 663 615 19254 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34079 615 292 19254 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34080 292 295 19254 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34081 382 765 19255 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34082 765 663 19255 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34083 663 295 19255 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34084 295 382 19255 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34085 712 890 19256 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34086 890 765 19256 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34087 765 382 19256 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34088 382 712 19256 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34089 982 1021 19257 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34090 1021 890 19257 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34091 890 858 19257 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34092 858 982 19257 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34093 858 819 19258 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34094 819 969 19258 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34095 969 982 19258 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34096 982 858 19258 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34097 712 595 19259 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34098 595 819 19259 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34099 819 858 19259 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34100 858 712 19259 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34101 382 220 19260 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34102 220 432 19260 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34103 432 712 19260 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34104 712 382 19260 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34105 295 173 19261 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34106 173 220 19261 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34107 220 382 19261 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34108 382 295 19261 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34109 292 166 19262 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34110 166 173 19262 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34111 173 295 19262 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34112 295 292 19262 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34113 202 166 19263 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34114 166 292 19263 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34115 292 329 19263 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34116 329 202 19263 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34117 135 166 19264 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34118 166 202 19264 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34119 202 139 19264 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34120 139 135 19264 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34121 143 173 19265 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34122 173 166 19265 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34123 166 135 19265 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34124 135 143 19265 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34125 187 220 19266 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34126 220 173 19266 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34127 173 143 19266 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34128 143 187 19266 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34129 179 187 19267 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34130 187 143 19267 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34131 143 117 19267 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34132 117 179 19267 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34133 293 187 19268 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34134 187 179 19268 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34135 179 265 19268 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34136 265 293 19268 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34137 293 432 19269 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34138 432 220 19269 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34139 220 187 19269 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34140 187 293 19269 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34141 293 535 19270 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34142 535 595 19270 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34143 595 432 19270 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34144 432 293 19270 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34145 530 535 19271 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34146 535 293 19271 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34147 293 265 19271 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34148 265 530 19271 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34149 809 535 19272 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34150 535 530 19272 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34151 530 812 19272 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34152 812 809 19272 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34153 809 819 19273 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34154 819 595 19273 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34155 595 535 19273 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34156 535 809 19273 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34157 809 937 19274 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34158 937 969 19274 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34159 969 819 19274 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34160 819 809 19274 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34161 812 949 19275 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34162 949 937 19275 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34163 937 809 19275 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34164 809 812 19275 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34165 812 815 19276 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34166 815 943 19276 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34167 943 949 19276 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34168 949 812 19276 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34169 530 676 19277 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34170 676 815 19277 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34171 815 812 19277 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34172 812 530 19277 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34173 265 203 19278 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34174 203 266 19278 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34175 266 449 19278 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34176 449 265 19278 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34177 179 165 19279 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34178 165 203 19279 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34179 203 265 19279 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34180 265 179 19279 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34181 117 106 19280 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34182 106 165 19280 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34183 165 179 19280 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34184 179 117 19280 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34185 961 1018 19281 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34186 1018 1117 19281 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34187 1117 1057 19281 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34188 1057 961 19281 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34189 1117 1121 19282 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34190 1121 1071 19282 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34191 1071 1057 19282 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34192 1057 1117 19282 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34193 1231 1199 19283 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34194 1199 1121 19283 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34195 1121 1117 19283 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34196 1117 1231 19283 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34197 857 856 19284 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34198 856 864 19284 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34199 864 867 19284 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34200 867 857 19284 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34201 872 850 19285 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34202 850 916 19285 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34203 916 920 19285 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34204 920 872 19285 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34205 796 852 19286 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34206 852 816 19286 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34207 816 781 19286 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34208 781 796 19286 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34209 834 940 19287 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34210 940 852 19287 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34211 852 796 19287 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34212 796 834 19287 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34213 960 940 19288 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34214 940 834 19288 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34215 834 849 19288 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34216 849 960 19288 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34217 993 940 19289 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34218 940 960 19289 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34219 960 1071 19289 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34220 1071 993 19289 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34221 993 916 19290 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34222 916 852 19290 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34223 852 940 19290 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34224 940 993 19290 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34225 850 816 19291 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34226 816 852 19291 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34227 852 916 19291 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34228 916 850 19291 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34229 113 117 19292 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34230 117 143 19292 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34231 143 135 19292 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34232 135 113 19292 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34233 139 125 19293 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34234 125 113 19293 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34235 113 135 19293 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34236 135 139 19293 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34237 169 125 19294 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34238 125 139 19294 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34239 139 205 19294 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34240 205 169 19294 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34241 151 101 19295 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34242 101 125 19295 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34243 125 169 19295 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34244 169 151 19295 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34245 144 102 19296 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34246 102 101 19296 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34247 101 151 19296 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34248 151 144 19296 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34249 132 98 19297 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34250 98 102 19297 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34251 102 144 19297 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34252 144 132 19297 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34253 147 108 19298 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34254 108 98 19298 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34255 98 132 19298 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34256 132 147 19298 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34257 147 165 19299 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34258 165 106 19299 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34259 106 108 19299 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34260 108 147 19299 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34261 176 158 19300 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34262 158 157 19300 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34263 157 218 19300 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34264 218 176 19300 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34265 132 158 19301 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34266 158 176 19301 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34267 176 147 19301 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34268 147 132 19301 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34269 144 201 19302 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34270 201 158 19302 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34271 158 132 19302 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34272 132 144 19302 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34273 151 267 19303 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34274 267 201 19303 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34275 201 144 19303 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34276 144 151 19303 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34277 169 389 19304 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34278 389 267 19304 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34279 267 151 19304 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34280 151 169 19304 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34281 544 389 19305 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34282 389 169 19305 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34283 169 205 19305 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34284 205 544 19305 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34285 692 657 19306 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34286 657 389 19306 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34287 389 544 19306 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34288 544 692 19306 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34289 922 889 19307 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34290 889 657 19307 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34291 657 692 19307 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34292 692 922 19307 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34293 1001 889 19308 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34294 889 922 19308 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34295 922 1088 19308 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34296 1088 1001 19308 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34297 887 889 19309 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34298 889 1001 19309 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34299 1001 970 19309 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34300 970 887 19309 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34301 644 657 19310 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34302 657 889 19310 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34303 889 887 19310 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34304 887 644 19310 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34305 657 644 19311 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34306 644 393 19311 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34307 393 389 19311 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34308 389 657 19311 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34309 623 564 19312 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34310 564 349 19312 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34311 349 381 19312 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34312 381 623 19312 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34313 473 261 19313 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34314 261 349 19313 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34315 349 564 19313 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34316 564 473 19313 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34317 817 739 19314 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34318 739 473 19314 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34319 473 564 19314 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34320 564 817 19314 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34321 874 817 19315 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34322 817 564 19315 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34323 564 623 19315 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34324 623 874 19315 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34325 895 960 19316 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34326 960 849 19316 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34327 849 836 19316 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34328 836 895 19316 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34329 960 895 19317 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34330 895 1057 19317 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34331 1057 1071 19317 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34332 1071 960 19317 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34333 895 817 19318 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34334 817 874 19318 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34335 874 961 19318 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34336 961 895 19318 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34337 836 739 19319 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34338 739 817 19319 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34339 817 895 19319 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34340 895 836 19319 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34341 655 739 19320 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34342 739 836 19320 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34343 836 776 19320 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34344 776 655 19320 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34345 749 596 19321 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34346 596 655 19321 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34347 655 776 19321 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34348 776 749 19321 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34349 796 718 19322 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34350 718 749 19322 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34351 749 834 19322 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34352 834 796 19322 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34353 693 718 19323 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34354 718 796 19323 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34355 796 781 19323 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34356 781 693 19323 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34357 519 558 19324 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34358 558 718 19324 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34359 718 693 19324 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34360 693 519 19324 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34361 313 369 19325 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34362 369 558 19325 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34363 558 519 19325 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34364 519 313 19325 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34365 361 596 19326 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34366 596 558 19326 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34367 558 369 19326 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34368 369 361 19326 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34369 370 655 19327 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34370 655 596 19327 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34371 596 361 19327 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34372 361 370 19327 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34373 369 215 19328 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34374 215 206 19328 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34375 206 361 19328 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34376 361 369 19328 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34377 197 215 19329 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34378 215 369 19329 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34379 369 264 19329 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34380 264 197 19329 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34381 119 215 19330 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34382 215 197 19330 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34383 197 97 19330 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34384 97 119 19330 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34385 93 206 19331 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34386 206 215 19331 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34387 215 119 19331 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34388 119 93 19331 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34389 206 211 19332 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34390 211 370 19332 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34391 370 361 19332 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34392 361 206 19332 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34393 739 655 19333 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34394 655 370 19333 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34395 370 473 19333 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34396 473 739 19333 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34397 473 370 19334 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34398 370 211 19334 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34399 211 261 19334 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34400 261 473 19334 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34401 211 206 19335 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34402 206 93 19335 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34403 93 136 19335 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34404 136 211 19335 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34405 178 184 19336 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34406 184 136 19336 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34407 136 99 19336 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34408 99 178 19336 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34409 196 270 19337 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34410 270 255 19337 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34411 255 178 19337 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34412 178 196 19337 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34413 194 201 19338 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34414 201 267 19338 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34415 267 271 19338 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34416 271 194 19338 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34417 157 158 19339 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34418 158 201 19339 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34419 201 194 19339 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34420 194 157 19339 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34421 194 129 19340 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34422 129 130 19340 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34423 130 157 19340 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34424 157 194 19340 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34425 99 127 19341 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34426 127 196 19341 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34427 196 178 19341 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34428 178 99 19341 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34429 99 136 19342 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34430 136 93 19342 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34431 93 88 19342 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34432 88 99 19342 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34433 76 75 19343 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34434 75 130 19343 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34435 130 129 19343 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34436 129 76 19343 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34437 44 28 19344 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34438 28 22 19344 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34439 22 31 19344 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34440 31 44 19344 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34441 33 75 19345 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34442 75 76 19345 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34443 76 53 19345 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34444 53 33 19345 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34445 88 93 19346 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34446 93 119 19346 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34447 119 60 19346 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34448 60 88 19346 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34449 119 97 19347 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34450 97 46 19347 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34451 46 60 19347 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34452 60 119 19347 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34453 97 91 19348 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34454 91 57 19348 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34455 57 46 19348 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34456 46 97 19348 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34457 46 49 19349 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34458 49 53 19349 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34459 53 60 19349 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34460 60 46 19349 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34461 53 49 19350 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34462 49 26 19350 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34463 26 33 19350 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34464 33 53 19350 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34465 44 89 19351 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34466 89 73 19351 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34467 73 26 19351 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34468 26 44 19351 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34469 140 75 19352 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34470 75 33 19352 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34471 33 126 19352 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34472 126 140 19352 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34473 175 130 19353 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34474 130 75 19353 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34475 75 140 19353 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34476 140 175 19353 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34477 175 218 19354 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34478 218 157 19354 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34479 157 130 19354 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34480 130 175 19354 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34481 189 183 19355 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34482 183 149 19355 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34483 149 128 19355 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34484 128 189 19355 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34485 233 238 19356 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34486 238 183 19356 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34487 183 189 19356 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34488 189 233 19356 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34489 233 318 19357 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34490 318 451 19357 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34491 451 269 19357 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34492 269 233 19357 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34493 189 245 19358 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34494 245 318 19358 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34495 318 233 19358 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34496 233 189 19358 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34497 128 185 19359 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34498 185 245 19359 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34499 245 189 19359 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34500 189 128 19359 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34501 128 134 19360 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34502 134 164 19360 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34503 164 185 19360 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34504 185 128 19360 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34505 149 146 19361 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34506 146 134 19361 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34507 134 128 19361 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34508 128 149 19361 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34509 26 73 19362 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34510 73 126 19362 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34511 126 33 19362 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34512 33 26 19362 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34513 180 134 19363 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34514 134 146 19363 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34515 146 159 19363 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34516 159 180 19363 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34517 214 164 19364 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34518 164 134 19364 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34519 134 180 19364 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34520 180 214 19364 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34521 376 164 19365 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34522 164 214 19365 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34523 214 426 19365 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34524 426 376 19365 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34525 394 185 19366 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34526 185 164 19366 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34527 164 376 19366 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34528 376 394 19366 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34529 539 245 19367 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34530 245 185 19367 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34531 185 394 19367 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34532 394 539 19367 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34533 612 318 19368 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34534 318 245 19368 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34535 245 539 19368 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34536 539 612 19368 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34537 612 667 19369 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34538 667 451 19369 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34539 451 318 19369 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34540 318 612 19369 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34541 1199 1080 19370 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34542 1080 1028 19370 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34543 1028 1121 19370 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34544 1121 1199 19370 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34545 1080 945 19371 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34546 945 920 19371 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34547 920 1028 19371 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34548 1028 1080 19371 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34549 915 872 19372 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34550 872 920 19372 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34551 920 945 19372 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34552 945 915 19372 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34553 864 856 19373 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34554 856 872 19373 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34555 872 915 19373 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34556 915 864 19373 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34557 915 882 19374 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34558 882 814 19374 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34559 814 864 19374 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34560 864 915 19374 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34561 945 930 19375 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34562 930 882 19375 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34563 882 915 19375 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34564 915 945 19375 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34565 1080 1067 19376 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34566 1067 930 19376 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34567 930 945 19376 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34568 945 1080 19376 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34569 1199 1137 19377 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34570 1137 1067 19377 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34571 1067 1080 19377 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34572 1080 1199 19377 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34573 1152 1137 19378 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34574 1137 1199 19378 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34575 1199 1231 19378 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34576 1231 1152 19378 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34577 1044 1137 19379 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34578 1137 1152 19379 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34579 1152 988 19379 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34580 988 1044 19379 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34581 1044 976 19380 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34582 976 1067 19380 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34583 1067 1137 19380 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34584 1137 1044 19380 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34585 954 952 19381 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34586 952 946 19381 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34587 946 967 19381 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34588 967 954 19381 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34589 941 896 19382 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34590 896 954 19382 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34591 954 967 19382 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34592 967 941 19382 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34593 941 948 19383 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34594 948 821 19383 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34595 821 896 19383 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34596 896 941 19383 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34597 788 898 19384 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34598 898 899 19384 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34599 899 791 19384 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34600 791 788 19384 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34601 954 899 19385 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34602 899 898 19385 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34603 898 952 19385 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34604 952 954 19385 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34605 896 821 19386 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34606 821 791 19386 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34607 791 899 19386 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34608 899 896 19386 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34609 612 791 19387 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34610 791 821 19387 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34611 821 667 19387 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34612 667 612 19387 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34613 539 788 19388 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34614 788 791 19388 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34615 791 612 19388 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34616 612 539 19388 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34617 394 758 19389 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34618 758 788 19389 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34619 788 539 19389 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34620 539 394 19389 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34621 376 698 19390 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34622 698 758 19390 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34623 758 394 19390 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34624 394 376 19390 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34625 813 698 19391 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34626 698 575 19391 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34627 575 710 19391 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34628 710 813 19391 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34629 861 758 19392 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34630 758 698 19392 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34631 698 813 19392 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34632 813 861 19392 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34633 861 898 19393 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34634 898 788 19393 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34635 788 758 19393 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34636 758 861 19393 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34637 914 952 19394 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34638 952 898 19394 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34639 898 861 19394 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34640 861 914 19394 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34641 866 946 19395 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34642 946 952 19395 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34643 952 914 19395 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34644 914 866 19395 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34645 871 930 19396 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34646 930 1067 19396 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34647 1067 976 19396 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34648 976 871 19396 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34649 810 882 19397 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34650 882 930 19397 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34651 930 871 19397 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34652 871 810 19397 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34653 810 707 19398 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34654 707 814 19398 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34655 814 882 19398 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34656 882 810 19398 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34657 802 855 19399 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34658 855 737 19399 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34659 737 674 19399 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34660 674 802 19399 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34661 914 855 19400 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34662 855 802 19400 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34663 802 866 19400 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34664 866 914 19400 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34665 813 855 19401 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34666 855 914 19401 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34667 914 861 19401 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34668 861 813 19401 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34669 710 737 19402 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34670 737 855 19402 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34671 855 813 19402 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34672 813 710 19402 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34673 737 710 19403 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34674 710 575 19403 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34675 575 438 19403 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34676 438 737 19403 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34677 177 275 19404 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34678 275 180 19404 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34679 180 133 19404 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34680 133 177 19404 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34681 438 214 19405 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34682 214 180 19405 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34683 180 275 19405 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34684 275 438 19405 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34685 575 426 19406 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34686 426 214 19406 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34687 214 438 19406 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34688 438 575 19406 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34689 575 698 19407 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34690 698 376 19407 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34691 376 426 19407 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34692 426 575 19407 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34693 171 197 19408 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34694 197 264 19408 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34695 264 244 19408 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34696 244 171 19408 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34697 161 74 19409 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34698 74 91 19409 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34699 91 171 19409 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34700 171 161 19409 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34701 74 87 19410 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34702 87 57 19410 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34703 57 91 19410 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34704 91 74 19410 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34705 22 28 19411 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34706 28 57 19411 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34707 57 87 19411 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34708 87 22 19411 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34709 681 693 19412 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34710 693 781 19412 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34711 781 764 19412 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34712 764 681 19412 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34713 681 470 19413 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34714 470 519 19413 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34715 519 693 19413 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34716 693 681 19413 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34717 624 484 19414 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34718 484 470 19414 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34719 470 681 19414 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34720 681 624 19414 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34721 764 719 19415 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34722 719 624 19415 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34723 624 681 19415 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34724 681 764 19415 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34725 470 284 19416 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34726 284 313 19416 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34727 313 519 19416 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34728 519 470 19416 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34729 484 359 19417 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34730 359 284 19417 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34731 284 470 19417 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34732 470 484 19417 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34733 598 359 19418 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34734 359 484 19418 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34735 484 624 19418 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34736 624 598 19418 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34737 753 598 19419 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34738 598 624 19419 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34739 624 719 19419 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34740 719 753 19419 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34741 799 764 19420 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34742 764 781 19420 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34743 781 816 19420 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34744 816 799 19420 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34745 799 753 19421 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34746 753 719 19421 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34747 719 764 19421 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34748 764 799 19421 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34749 818 856 19422 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34750 856 857 19422 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34751 857 780 19422 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34752 780 818 19422 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34753 707 738 19423 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34754 738 829 19423 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34755 829 814 19423 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34756 814 707 19423 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34757 814 829 19424 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34758 829 867 19424 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34759 867 864 19424 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34760 864 814 19424 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34761 674 275 19425 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34762 275 177 19425 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34763 177 550 19425 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34764 550 674 19425 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34765 114 73 19426 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34766 73 89 19426 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34767 89 133 19426 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34768 133 114 19426 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4)} Face 34769 9993 9963 19427 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34770 9963 10009 19427 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34771 10009 10055 19427 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34772 10055 9993 19427 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34773 9879 9867 19428 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34774 9867 9963 19428 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34775 9963 9993 19428 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34776 9993 9879 19428 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34777 9598 9602 19429 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34778 9602 9867 19429 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34779 9867 9879 19429 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34780 9879 9598 19429 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34781 9500 9526 19430 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34782 9526 9602 19430 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34783 9602 9598 19430 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34784 9598 9500 19430 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34785 9437 9492 19431 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34786 9492 9526 19431 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34787 9526 9500 19431 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34788 9500 9437 19431 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34789 9432 9488 19432 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34790 9488 9492 19432 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34791 9492 9437 19432 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34792 9437 9432 19432 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34793 9431 9478 19433 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34794 9478 9488 19433 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34795 9488 9432 19433 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34796 9432 9431 19433 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34797 10040 10043 19434 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34798 10043 9461 19434 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34799 9461 9460 19434 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34800 9460 10040 19434 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34801 10082 10028 19435 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34802 10028 10029 19435 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34803 10029 10080 19435 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34804 10080 10082 19435 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34805 10055 10009 19436 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34806 10009 10028 19436 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34807 10028 10082 19436 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34808 10082 10055 19436 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34809 10111 10079 19437 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34810 10079 10074 19437 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34811 10074 10110 19437 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34812 10110 10111 19437 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34813 9511 9512 19438 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34814 9512 10090 19438 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34815 10090 10088 19438 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34816 10088 9511 19438 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34817 9483 9528 19439 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34818 9528 9525 19439 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34819 9525 9477 19439 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34820 9477 9483 19439 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34821 9486 9524 19440 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34822 9524 9528 19440 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34823 9528 9483 19440 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34824 9483 9486 19440 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34825 9552 9567 19441 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34826 9567 9524 19441 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34827 9524 9486 19441 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34828 9486 9552 19441 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34829 9675 9679 19442 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34830 9679 9567 19442 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34831 9567 9552 19442 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34832 9552 9675 19442 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34833 9925 9910 19443 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34834 9910 9679 19443 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34835 9679 9675 19443 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34836 9675 9925 19443 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34837 10030 9997 19444 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34838 9997 9910 19444 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34839 9910 9925 19444 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34840 9925 10030 19444 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34841 10094 10050 19445 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34842 10050 9997 19445 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34843 9997 10030 19445 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34844 10030 10094 19445 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34845 10110 10074 19446 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34846 10074 10050 19446 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34847 10050 10094 19446 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34848 10094 10110 19446 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34849 9455 9447 19447 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34850 9447 9713 19447 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34851 9713 9765 19447 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34852 9765 9455 19447 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34853 9379 9396 19448 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34854 9396 9447 19448 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34855 9447 9455 19448 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34856 9455 9379 19448 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34857 9247 9343 19449 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34858 9343 9396 19449 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34859 9396 9379 19449 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34860 9379 9247 19449 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34861 8571 9020 19450 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34862 9020 9343 19450 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34863 9343 9247 19450 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34864 9247 8571 19450 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34865 8528 8962 19451 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34866 8962 9020 19451 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34867 9020 8571 19451 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34868 8571 8528 19451 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34869 9283 9359 19452 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34870 9359 8962 19452 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34871 8962 8528 19452 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34872 8528 9283 19452 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34873 9434 9430 19453 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34874 9430 9359 19453 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34875 9359 9283 19453 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34876 9283 9434 19453 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34877 9587 9556 19454 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34878 9556 9430 19454 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34879 9430 9434 19454 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34880 9434 9587 19454 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34881 9778 9716 19455 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34882 9716 9556 19455 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34883 9556 9587 19455 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34884 9587 9778 19455 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34885 9807 9740 19456 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34886 9740 9716 19456 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34887 9716 9778 19456 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34888 9778 9807 19456 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34889 9832 9775 19457 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34890 9775 9740 19457 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34891 9740 9807 19457 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34892 9807 9832 19457 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34893 9765 9713 19458 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34894 9713 9775 19458 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34895 9775 9832 19458 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34896 9832 9765 19458 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34897 8555 9000 19459 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34898 9000 8648 19459 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34899 8648 8325 19459 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34900 8325 8555 19459 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34901 8553 8895 19460 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34902 8895 9000 19460 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34903 9000 8555 19460 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34904 8555 8553 19460 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34905 8832 9165 19461 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34906 9165 8895 19461 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34907 8895 8553 19461 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34908 8553 8832 19461 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34909 9653 9626 19462 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34910 9626 9165 19462 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34911 9165 8832 19462 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34912 8832 9653 19462 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34913 9692 9633 19463 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34914 9633 9626 19463 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34915 9626 9653 19463 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34916 9653 9692 19463 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34917 9693 9632 19464 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34918 9632 9633 19464 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34919 9633 9692 19464 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34920 9692 9693 19464 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34921 9733 9680 19465 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34922 9680 9632 19465 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34923 9632 9693 19465 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34924 9693 9733 19465 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34925 9753 9695 19466 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34926 9695 9680 19466 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34927 9680 9733 19466 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34928 9733 9753 19466 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34929 9562 9542 19467 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34930 9542 9695 19467 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34931 9695 9753 19467 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34932 9753 9562 19467 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34933 9422 9417 19468 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34934 9417 9542 19468 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34935 9542 9562 19468 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34936 9562 9422 19468 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34937 9131 9338 19469 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34938 9338 9417 19469 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34939 9417 9422 19469 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34940 9422 9131 19469 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34941 8428 8812 19470 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34942 8812 9338 19470 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34943 9338 9131 19470 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34944 9131 8428 19470 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34945 8359 8736 19471 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34946 8736 8812 19471 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34947 8812 8428 19471 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34948 8428 8359 19471 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34949 8325 8648 19472 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34950 8648 8736 19472 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34951 8736 8359 19472 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34952 8359 8325 19472 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34953 9030 9333 19473 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34954 9333 9271 19473 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34955 9271 8855 19473 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34956 8855 9030 19473 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34957 9346 9376 19474 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34958 9376 9333 19474 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34959 9333 9030 19474 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34960 9030 9346 19474 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34961 9397 9408 19475 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34962 9408 9376 19475 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34963 9376 9346 19475 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34964 9346 9397 19475 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34965 9462 9456 19476 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34966 9456 9408 19476 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34967 9408 9397 19476 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34968 9397 9462 19476 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34969 9794 9741 19477 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34970 9741 9456 19477 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34971 9456 9462 19477 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34972 9462 9794 19477 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34973 9887 9839 19478 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34974 9839 9741 19478 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34975 9741 9794 19478 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34976 9794 9887 19478 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34977 9857 9803 19479 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34978 9803 9839 19479 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34979 9839 9887 19479 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34980 9887 9857 19479 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34981 9854 9806 19480 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34982 9806 9803 19480 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34983 9803 9857 19480 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34984 9857 9854 19480 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34985 9844 9793 19481 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34986 9793 9806 19481 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34987 9806 9854 19481 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34988 9854 9844 19481 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34989 9805 9738 19482 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34990 9738 9793 19482 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34991 9793 9844 19482 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34992 9844 9805 19482 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34993 9802 9739 19483 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34994 9739 9738 19483 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34995 9738 9805 19483 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34996 9805 9802 19483 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34997 9774 9729 19484 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34998 9729 9739 19484 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 34999 9739 9802 19484 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35000 9802 9774 19484 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35001 9313 9360 19485 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35002 9360 9729 19485 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35003 9729 9774 19485 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35004 9774 9313 19485 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35005 9091 9308 19486 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35006 9308 9360 19486 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35007 9360 9313 19486 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35008 9313 9091 19486 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35009 9095 9337 19487 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35010 9337 9308 19487 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35011 9308 9091 19487 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35012 9091 9095 19487 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35013 8829 9265 19488 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35014 9265 9337 19488 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35015 9337 9095 19488 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35016 9095 8829 19488 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35017 8855 9271 19489 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35018 9271 9265 19489 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35019 9265 8829 19489 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35020 8829 8855 19489 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35021 9360 9308 19490 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35022 9308 8895 19490 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35023 8895 9165 19490 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35024 9165 9360 19490 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35025 9739 9729 19491 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35026 9729 9626 19491 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35027 9626 9633 19491 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35028 9633 9739 19491 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35029 10079 10090 19492 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35030 10090 10043 19492 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35031 10043 10029 19492 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35032 10029 10079 19492 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35033 9478 9461 19493 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35034 9461 9512 19493 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35035 9512 9525 19493 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35036 9525 9478 19493 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35037 9376 9408 19494 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35038 9408 9396 19494 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35039 9396 9343 19494 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35040 9343 9376 19494 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35041 8962 9359 19495 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35042 9359 9338 19495 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35043 9338 8812 19495 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35044 8812 8962 19495 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35045 9360 9165 19496 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35046 9165 9626 19496 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35047 9626 9729 19496 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35048 9729 9360 19496 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35049 9478 9525 19497 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35050 9525 9528 19497 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35051 9528 9488 19497 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35052 9488 9478 19497 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35053 9488 9528 19498 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35054 9528 9524 19498 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35055 9524 9492 19498 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35056 9492 9488 19498 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35057 9492 9524 19499 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35058 9524 9567 19499 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35059 9567 9526 19499 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35060 9526 9492 19499 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35061 9602 9526 19500 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35062 9526 9567 19500 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35063 9567 9679 19500 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35064 9679 9602 19500 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35065 9602 9679 19501 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35066 9679 9910 19501 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35067 9910 9867 19501 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35068 9867 9602 19501 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35069 9867 9910 19502 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35070 9910 9997 19502 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35071 9997 9963 19502 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35072 9963 9867 19502 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35073 9963 9997 19503 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35074 9997 10050 19503 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35075 10050 10009 19503 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35076 10009 9963 19503 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35077 10009 10050 19504 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35078 10050 10074 19504 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35079 10074 10028 19504 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35080 10028 10009 19504 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35081 10028 10074 19505 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35082 10074 10079 19505 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35083 10079 10029 19505 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35084 10029 10028 19505 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35085 9359 9430 19506 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35086 9430 9417 19506 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35087 9417 9338 19506 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35088 9338 9359 19506 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35089 9343 9020 19507 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35090 9020 9333 19507 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35091 9333 9376 19507 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35092 9376 9343 19507 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35093 9456 9447 19508 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35094 9447 9396 19508 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35095 9396 9408 19508 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35096 9408 9456 19508 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35097 9803 9740 19509 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35098 9740 9775 19509 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35099 9775 9839 19509 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35100 9839 9803 19509 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35101 9456 9741 19510 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35102 9741 9713 19510 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35103 9713 9447 19510 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35104 9447 9456 19510 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35105 9542 9417 19511 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35106 9417 9430 19511 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35107 9430 9556 19511 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35108 9556 9542 19511 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35109 9839 9775 19512 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35110 9775 9713 19512 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35111 9713 9741 19512 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35112 9741 9839 19512 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35113 9793 9680 19513 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35114 9680 9695 19513 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35115 9695 9806 19513 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35116 9806 9793 19513 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35117 9695 9542 19514 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35118 9542 9556 19514 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35119 9556 9716 19514 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35120 9716 9695 19514 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35121 9806 9695 19515 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35122 9695 9716 19515 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35123 9716 9803 19515 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35124 9803 9806 19515 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35125 9020 8962 19516 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35126 8962 8812 19516 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35127 8812 8736 19516 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35128 8736 9020 19516 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35129 9333 9020 19517 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35130 9020 8736 19517 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35131 8736 9271 19517 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35132 9271 9333 19517 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35133 8648 9265 19518 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35134 9265 9271 19518 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35135 9271 8736 19518 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35136 8736 8648 19518 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35137 9000 9337 19519 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35138 9337 9265 19519 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35139 9265 8648 19519 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35140 8648 9000 19519 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35141 9632 9738 19520 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35142 9738 9739 19520 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35143 9739 9633 19520 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35144 9633 9632 19520 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35145 10043 10090 19521 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35146 10090 9512 19521 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35147 9512 9461 19521 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35148 9461 10043 19521 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35149 9738 9632 19522 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35150 9632 9680 19522 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35151 9680 9793 19522 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35152 9793 9738 19522 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35153 9337 9000 19523 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35154 9000 8895 19523 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35155 8895 9308 19523 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35156 9308 9337 19523 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35157 9922 9996 19524 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35158 9996 9499 19524 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35159 9499 9872 19524 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35160 9872 9922 19524 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35161 9448 9614 19525 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35162 9614 10059 19525 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35163 10059 9377 19525 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35164 9377 9448 19525 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35165 8583 9168 19526 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35166 9168 9653 19526 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35167 9653 8832 19526 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35168 8832 8583 19526 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35169 9782 9636 19527 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35170 9636 9511 19527 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35171 9511 9933 19527 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35172 9933 9782 19527 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35173 10039 9933 19528 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35174 9933 9511 19528 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35175 9511 10135 19528 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35176 10135 10039 19528 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35177 10119 10135 19529 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35178 10135 9511 19529 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35179 9511 10088 19529 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35180 10088 10119 19529 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35181 10040 9482 19530 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35182 9482 9499 19530 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35183 9499 9996 19530 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35184 9996 10040 19530 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35185 7859 8025 19531 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35186 8025 8912 19531 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35187 8912 8679 19531 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35188 8679 7859 19531 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35189 8679 8912 19532 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35190 8912 9340 19532 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35191 9340 9317 19532 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35192 9317 8679 19532 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35193 9317 9340 19533 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35194 9340 9433 19533 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35195 9433 9435 19533 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35196 9435 9317 19533 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35197 9545 9554 19534 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35198 9554 9435 19534 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35199 9435 9433 19534 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35200 9433 9545 19534 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35201 7578 7740 19535 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35202 7740 8025 19535 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35203 8025 7859 19535 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35204 7859 7578 19535 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35205 7587 7735 19536 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35206 7735 7740 19536 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35207 7740 7578 19536 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35208 7578 7587 19536 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35209 7735 7587 19537 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35210 7587 7682 19537 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35211 7682 7777 19537 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35212 7777 7735 19537 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35213 7937 7978 19538 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35214 7978 7777 19538 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35215 7777 7682 19538 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35216 7682 7937 19538 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35217 8438 8447 19539 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35218 8447 7978 19539 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35219 7978 7937 19539 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35220 7937 8438 19539 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35221 9081 9123 19540 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35222 9123 8447 19540 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35223 8447 8438 19540 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35224 8438 9081 19540 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35225 9554 9545 19541 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35226 9545 9734 19541 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35227 9734 9772 19541 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35228 9772 9554 19541 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35229 9772 9734 19542 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35230 9734 9888 19542 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35231 9888 9920 19542 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35232 9920 9772 19542 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35233 9920 9888 19543 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35234 9888 9966 19543 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35235 9966 9983 19543 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35236 9983 9920 19543 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35237 10026 10046 19544 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35238 10046 9983 19544 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35239 9983 9966 19544 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35240 9966 10026 19544 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35241 10046 10026 19545 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35242 10026 10077 19545 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35243 10077 10092 19545 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35244 10092 10046 19545 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35245 9123 9081 19546 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35246 9081 9369 19546 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35247 9369 9377 19546 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35248 9377 9123 19546 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35249 10092 10077 19547 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35250 10077 10059 19547 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35251 10059 10086 19547 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35252 10086 10092 19547 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35253 10086 10059 19548 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35254 10059 9998 19548 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35255 9998 10016 19548 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35256 10016 10086 19548 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35257 10016 9998 19549 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35258 9998 9890 19549 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35259 9890 9909 19549 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35260 9909 10016 19549 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35261 9909 9890 19550 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35262 9890 9614 19550 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35263 9614 9628 19550 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35264 9628 9909 19550 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35265 9628 9614 19551 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35266 9614 9448 19551 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35267 9448 9443 19551 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35268 9443 9628 19551 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35269 9443 9448 19552 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35270 9448 9377 19552 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35271 9377 9369 19552 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35272 9369 9443 19552 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35273 7777 9888 19553 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35274 9888 9734 19553 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35275 9734 7735 19553 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35276 7735 7777 19553 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35277 9433 8025 19554 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35278 8025 7740 19554 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35279 7740 9545 19554 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35280 9545 9433 19554 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35281 10026 9966 19555 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35282 9966 7978 19555 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35283 7978 8447 19555 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35284 8447 10026 19555 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35285 9377 10059 19556 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35286 10059 10077 19556 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35287 10077 9123 19556 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35288 9123 9377 19556 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35289 9369 9081 19557 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35290 9081 9144 19557 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35291 9144 9380 19557 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35292 9380 9369 19557 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35293 7578 7859 19558 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35294 7859 7935 19558 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35295 7935 7669 19558 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35296 7669 7578 19558 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35297 8438 7937 19559 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35298 7937 8002 19559 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35299 8002 8474 19559 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35300 8474 8438 19559 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35301 7682 7587 19560 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35302 7587 7701 19560 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35303 7701 7774 19560 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35304 7774 7682 19560 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35305 8679 9317 19561 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35306 9317 9319 19561 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35307 9319 8703 19561 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35308 8703 8679 19561 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35309 9435 9554 19562 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35310 9554 9538 19562 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35311 9538 9419 19562 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35312 9419 9435 19562 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35313 9772 9920 19563 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35314 9920 9883 19563 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35315 9883 9723 19563 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35316 9723 9772 19563 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35317 9983 10046 19564 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35318 10046 10018 19564 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35319 10018 9962 19564 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35320 9962 9983 19564 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35321 9628 9443 19565 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35322 9443 9452 19565 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35323 9452 9630 19565 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35324 9630 9628 19565 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35325 10016 9909 19566 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35326 9909 9904 19566 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35327 9904 10008 19566 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35328 10008 10016 19566 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35329 10092 10086 19567 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35330 10086 10064 19567 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35331 10064 10072 19567 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35332 10072 10092 19567 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35333 7935 7859 19568 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35334 7859 8679 19568 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35335 8679 8703 19568 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35336 8703 7935 19568 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35337 7701 7587 19569 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35338 7587 7578 19569 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35339 7578 7669 19569 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35340 7669 7701 19569 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35341 8002 7937 19570 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35342 7937 7682 19570 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35343 7682 7774 19570 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35344 7774 8002 19570 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35345 9144 9081 19571 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35346 9081 8438 19571 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35347 8438 8474 19571 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35348 8474 9144 19571 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35349 9452 9443 19572 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35350 9443 9369 19572 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35351 9369 9380 19572 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35352 9380 9452 19572 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35353 9904 9909 19573 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35354 9909 9628 19573 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35355 9628 9630 19573 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35356 9630 9904 19573 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35357 10064 10086 19574 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35358 10086 10016 19574 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35359 10016 10008 19574 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35360 10008 10064 19574 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35361 10018 10046 19575 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35362 10046 10092 19575 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35363 10092 10072 19575 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35364 10072 10018 19575 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35365 9883 9920 19576 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35366 9920 9983 19576 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35367 9983 9962 19576 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35368 9962 9883 19576 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35369 9538 9554 19577 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35370 9554 9772 19577 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35371 9772 9723 19577 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35372 9723 9538 19577 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35373 9319 9317 19578 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35374 9317 9435 19578 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35375 9435 9419 19578 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35376 9419 9319 19578 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35377 9890 9998 19579 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35378 9998 10059 19579 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35379 10059 9614 19579 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35380 9614 9890 19579 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35381 9966 9888 19580 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35382 9888 7777 19580 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35383 7777 7978 19580 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35384 7978 9966 19580 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35385 8447 9123 19581 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35386 9123 10077 19581 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35387 10077 10026 19581 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35388 10026 8447 19581 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35389 9433 9340 19582 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35390 9340 8912 19582 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35391 8912 8025 19582 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35392 8025 9433 19582 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35393 7744 7935 19583 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35394 7935 8703 19583 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35395 8703 9182 19583 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35396 9182 7744 19583 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35397 7964 7701 19584 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35398 7701 7669 19584 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35399 7669 7744 19584 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35400 7744 7964 19584 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35401 8997 8002 19585 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35402 8002 7774 19585 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35403 7774 7964 19585 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35404 7964 8997 19585 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35405 9385 9144 19586 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35406 9144 8474 19586 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35407 8474 8997 19586 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35408 8997 9385 19586 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35409 9495 9452 19587 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35410 9452 9380 19587 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35411 9380 9385 19587 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35412 9385 9495 19587 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35413 9812 9904 19588 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35414 9904 9630 19588 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35415 9630 9495 19588 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35416 9495 9812 19588 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35417 9881 10064 19589 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35418 10064 10008 19589 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35419 10008 9812 19589 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35420 9812 9881 19589 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35421 9886 10018 19590 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35422 10018 10072 19590 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35423 10072 9881 19590 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35424 9881 9886 19590 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35425 9701 9883 19591 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35426 9883 9962 19591 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35427 9962 9886 19591 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35428 9886 9701 19591 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35429 9451 9538 19592 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35430 9538 9723 19592 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35431 9723 9701 19592 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35432 9701 9451 19592 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35433 9182 9319 19593 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35434 9319 9419 19593 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35435 9419 9451 19593 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35436 9451 9182 19593 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35437 8501 7744 19594 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35438 7744 9182 19594 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35439 9182 9307 19594 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35440 9307 8501 19594 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35441 8534 7964 19595 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35442 7964 7744 19595 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35443 7744 8501 19595 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35444 8501 8534 19595 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35445 9237 8997 19596 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35446 8997 7964 19596 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35447 7964 8534 19596 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35448 8534 9237 19596 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35449 9389 9385 19597 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35450 9385 8997 19597 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35451 8997 9237 19597 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35452 9237 9389 19597 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35453 9469 9495 19598 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35454 9495 9385 19598 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35455 9385 9389 19598 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35456 9389 9469 19598 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35457 9746 9812 19599 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35458 9812 9495 19599 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35459 9495 9469 19599 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35460 9469 9746 19599 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35461 9817 9881 19600 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35462 9881 9812 19600 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35463 9812 9746 19600 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35464 9746 9817 19600 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35465 9797 9886 19601 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35466 9886 9881 19601 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35467 9881 9817 19601 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35468 9817 9797 19601 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35469 9639 9701 19602 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35470 9701 9886 19602 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35471 9886 9797 19602 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35472 9797 9639 19602 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35473 9439 9451 19603 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35474 9451 9701 19603 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35475 9701 9639 19603 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35476 9639 9439 19603 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35477 9307 9182 19604 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35478 9182 9451 19604 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35479 9451 9439 19604 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35480 9439 9307 19604 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35481 8494 8501 19605 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35482 8501 9307 19605 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35483 9307 9306 19605 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35484 9306 8494 19605 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35485 8526 8534 19606 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35486 8534 8501 19606 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35487 8501 8494 19606 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35488 8494 8526 19606 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35489 9236 9237 19607 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35490 9237 8534 19607 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35491 8534 8526 19607 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35492 8526 9236 19607 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35493 9388 9389 19608 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35494 9389 9237 19608 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35495 9237 9236 19608 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35496 9236 9388 19608 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35497 9468 9469 19609 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35498 9469 9389 19609 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35499 9389 9388 19609 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35500 9388 9468 19609 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35501 9745 9746 19610 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35502 9746 9469 19610 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35503 9469 9468 19610 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35504 9468 9745 19610 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35505 9816 9817 19611 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35506 9817 9746 19611 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35507 9746 9745 19611 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35508 9745 9816 19611 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35509 9795 9797 19612 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35510 9797 9817 19612 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35511 9817 9816 19612 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35512 9816 9795 19612 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35513 9638 9639 19613 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35514 9639 9797 19613 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35515 9797 9795 19613 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35516 9795 9638 19613 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35517 9438 9439 19614 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35518 9439 9639 19614 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35519 9639 9638 19614 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35520 9638 9438 19614 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35521 9306 9307 19615 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35522 9307 9439 19615 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35523 9439 9438 19615 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35524 9438 9306 19615 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35525 9774 9802 19616 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35526 9802 9901 19616 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35527 9901 9872 19616 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35528 9872 9774 19616 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35529 10039 10062 19617 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35530 10062 9938 19617 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35531 9938 9933 19617 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35532 9933 10039 19617 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35533 10165 10135 19618 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35534 10135 10119 19618 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35535 10119 10152 19618 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35536 10152 10165 19618 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35537 10062 10039 19619 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35538 10039 10135 19619 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35539 10135 10165 19619 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35540 10165 10062 19619 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35541 9760 9782 19620 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35542 9782 9933 19620 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35543 9933 9938 19620 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35544 9938 9760 19620 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35545 9588 9636 19621 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35546 9636 9782 19621 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35547 9782 9760 19621 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35548 9760 9588 19621 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35549 9513 9549 19622 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35550 9549 9636 19622 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35551 9636 9588 19622 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35552 9588 9513 19622 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35553 9467 9499 19623 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35554 9499 9482 19623 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35555 9482 9450 19623 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35556 9450 9467 19623 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35557 9424 9444 19624 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35558 9444 9499 19624 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35559 9499 9467 19624 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35560 9467 9424 19624 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35561 9091 9313 19625 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35562 9313 9444 19625 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35563 9444 9424 19625 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35564 9424 9091 19625 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35565 9426 9423 19626 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35566 9423 9168 19626 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35567 9168 8985 19626 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35568 8985 9426 19626 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35569 9543 9523 19627 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35570 9523 9423 19627 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35571 9423 9426 19627 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35572 9426 9543 19627 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35573 9692 9653 19628 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35574 9653 9523 19628 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35575 9523 9543 19628 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35576 9543 9692 19628 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35577 9943 9922 19629 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35578 9922 9872 19629 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35579 9872 9901 19629 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35580 9901 9943 19629 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35581 10031 9996 19630 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35582 9996 9922 19630 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35583 9922 9943 19630 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35584 9943 10031 19630 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35585 10152 10119 19631 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35586 10119 10088 19631 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35587 10088 10111 19631 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35588 10111 10152 19631 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35589 10080 10040 19632 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35590 10040 9996 19632 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35591 9996 10031 19632 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35592 10031 10080 19632 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35593 9450 9482 19633 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35594 9482 9460 19633 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35595 9460 9431 19633 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35596 9431 9450 19633 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35597 9477 9511 19634 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35598 9511 9549 19634 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35599 9549 9513 19634 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35600 9513 9477 19634 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35601 8985 9168 19635 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35602 9168 8583 19635 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35603 8583 8400 19635 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35604 8400 8985 19635 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35605 8400 8583 19636 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35606 8583 8832 19636 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35607 8832 8553 19636 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35608 8553 8400 19636 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35609 8494 9306 19637 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35610 9306 9283 19637 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35611 9283 8528 19637 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35612 8528 8494 19637 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35613 8428 9131 19638 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35614 9131 8810 19638 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35615 8810 8250 19638 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35616 8250 8428 19638 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35617 8250 8810 19639 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35618 8810 8740 19639 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35619 8740 8213 19639 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35620 8213 8250 19639 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35621 8213 8740 19640 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35622 8740 8891 19640 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35623 8891 8365 19640 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35624 8365 8213 19640 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35625 8365 8891 19641 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35626 8891 8985 19641 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35627 8985 8400 19641 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35628 8400 8365 19641 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35629 9423 9523 19642 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35630 9523 9653 19642 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35631 9653 9168 19642 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35632 9168 9423 19642 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35633 9934 9905 19643 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35634 9905 9895 19643 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35635 9895 9917 19643 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35636 9917 9934 19643 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35637 9444 9313 19644 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35638 9313 9774 19644 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35639 9774 9872 19644 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35640 9872 9444 19644 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35641 9438 9638 19645 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35642 9638 9587 19645 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35643 9587 9434 19645 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35644 9434 9438 19645 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35645 9638 9795 19646 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35646 9795 9807 19646 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35647 9807 9587 19646 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35648 9587 9638 19646 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35649 9795 9816 19647 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35650 9816 9832 19647 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35651 9832 9807 19647 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35652 9807 9795 19647 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35653 9816 9745 19648 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35654 9745 9765 19648 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35655 9765 9832 19648 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35656 9832 9816 19648 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35657 9745 9468 19649 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35658 9468 9455 19649 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35659 9455 9765 19649 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35660 9765 9745 19649 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35661 9468 9388 19650 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35662 9388 9379 19650 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35663 9379 9455 19650 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35664 9455 9468 19650 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35665 9388 9236 19651 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35666 9236 9247 19651 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35667 9247 9379 19651 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35668 9379 9388 19651 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35669 9236 8526 19652 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35670 8526 8524 19652 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35671 8524 9247 19652 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35672 9247 9236 19652 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35673 8526 8494 19653 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35674 8494 8528 19653 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35675 8528 8524 19653 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35676 8524 8526 19653 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35677 9306 9438 19654 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35678 9438 9434 19654 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35679 9434 9283 19654 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35680 9283 9306 19654 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35681 9462 9397 19655 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35682 9397 9421 19655 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35683 9421 9515 19655 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35684 9515 9462 19655 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35685 9862 9935 19656 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35686 9935 9917 19656 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35687 9917 9836 19656 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35688 9836 9862 19656 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35689 9449 9551 19657 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35690 9551 9515 19657 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35691 9515 9421 19657 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35692 9421 9449 19657 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35693 9515 9836 19658 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35694 9836 9794 19658 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35695 9794 9462 19658 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35696 9462 9515 19658 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35697 9551 9862 19659 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35698 9862 9836 19659 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35699 9836 9515 19659 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35700 9515 9551 19659 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35701 9836 9917 19660 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35702 9917 9895 19660 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35703 9895 9794 19660 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35704 9794 9836 19660 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35705 9545 7740 19661 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35706 7740 7735 19661 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35707 7735 9734 19661 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35708 9734 9545 19661 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35709 9404 8740 19662 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35710 8740 8810 19662 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35711 8810 9407 19662 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35712 9407 9404 19662 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35713 9561 9404 19663 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35714 9404 9407 19663 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35715 9407 9550 19663 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35716 9550 9561 19663 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35717 9733 9561 19664 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35718 9561 9550 19664 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35719 9550 9753 19664 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35720 9753 9733 19664 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35721 9923 9844 19665 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35722 9844 9854 19665 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35723 9854 9905 19665 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35724 9905 9923 19665 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35725 9954 9923 19666 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35726 9923 9905 19666 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35727 9905 9934 19666 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35728 9934 9954 19666 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35729 10035 9954 19667 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35730 9954 9934 19667 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35731 9934 9986 19667 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35732 9986 10035 19667 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35733 9550 9407 19668 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35734 9407 9422 19668 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35735 9422 9562 19668 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35736 9562 9550 19668 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35737 9887 9895 19669 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35738 9895 9905 19669 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35739 9905 9857 19669 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35740 9857 9887 19669 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35741 9421 9397 19670 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35742 9397 9390 19670 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35743 9390 9416 19670 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35744 9416 9421 19670 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35745 9095 9091 19671 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35746 9091 9424 19671 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35747 9424 9425 19671 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35748 9425 9095 19671 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35749 8829 9095 19672 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35750 9095 9425 19672 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35751 9425 9395 19672 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35752 9395 8829 19672 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35753 8855 8829 19673 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35754 8829 9395 19673 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35755 9395 9390 19673 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35756 9390 8855 19673 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35757 9947 9943 19674 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35758 9943 9901 19674 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35759 9901 9896 19674 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35760 9896 9947 19674 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35761 9954 9947 19675 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35762 9947 9896 19675 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35763 9896 9923 19675 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35764 9923 9954 19675 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35765 9589 9502 19676 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35766 9502 9500 19676 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35767 9500 9598 19676 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35768 9598 9589 19676 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35769 9565 9751 19677 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35770 9751 9675 19677 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35771 9675 9552 19677 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35772 9552 9565 19677 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35773 9565 9519 19678 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35774 9519 9612 19678 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35775 9612 9647 19678 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35776 9647 9565 19678 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35777 9425 9424 19679 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35778 9424 9467 19679 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35779 9467 9472 19679 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35780 9472 9425 19679 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35781 9395 9425 19680 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35782 9425 9472 19680 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35783 9472 9428 19680 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35784 9428 9395 19680 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35785 9390 9395 19681 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35786 9395 9428 19681 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35787 9428 9416 19681 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35788 9416 9390 19681 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35789 9472 9467 19682 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35790 9467 9450 19682 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35791 9450 9459 19682 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35792 9459 9472 19682 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35793 9428 9472 19683 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35794 9472 9459 19683 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35795 9459 9463 19683 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35796 9463 9428 19683 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35797 9416 9428 19684 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35798 9428 9463 19684 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35799 9463 9502 19684 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35800 9502 9416 19684 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35801 9459 9450 19685 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35802 9450 9431 19685 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35803 9431 9432 19685 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35804 9432 9459 19685 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35805 9463 9459 19686 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35806 9459 9432 19686 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35807 9432 9437 19686 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35808 9437 9463 19686 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35809 9502 9463 19687 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35810 9463 9437 19687 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35811 9437 9500 19687 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35812 9500 9502 19687 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35813 9583 9588 19688 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35814 9588 9760 19688 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35815 9760 9769 19688 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35816 9769 9583 19688 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35817 9612 9583 19689 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35818 9583 9769 19689 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35819 9769 9801 19689 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35820 9801 9612 19689 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35821 10038 10031 19690 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35822 10031 9943 19690 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35823 9943 9947 19690 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35824 9947 10038 19690 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35825 10035 10038 19691 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35826 10038 9947 19691 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35827 9947 9954 19691 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35828 9954 10035 19691 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35829 9889 9986 19692 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35830 9986 9935 19692 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35831 9935 9862 19692 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35832 9862 9889 19692 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35833 10010 10056 19693 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35834 10056 10138 19693 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35835 10138 10083 19693 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35836 10083 10010 19693 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35837 10082 10080 19694 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35838 10080 10031 19694 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35839 10031 10038 19694 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35840 10038 10082 19694 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35841 10055 10082 19695 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35842 10082 10038 19695 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35843 10038 10035 19695 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35844 10035 10055 19695 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35845 9993 10055 19696 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35846 10055 10035 19696 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35847 10035 9986 19696 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35848 9986 9993 19696 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35849 9879 9993 19697 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35850 9993 9986 19697 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35851 9986 9889 19697 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35852 9889 9879 19697 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35853 10151 10152 19698 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35854 10152 10111 19698 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35855 10111 10110 19698 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35856 10110 10151 19698 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35857 10127 10151 19699 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35858 10151 10110 19699 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35859 10110 10094 19699 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35860 10094 10127 19699 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35861 10073 10127 19700 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35862 10127 10094 19700 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35863 10094 10030 19700 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35864 10030 10073 19700 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35865 9951 10073 19701 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35866 10073 10030 19701 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35867 10030 9925 19701 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35868 9925 9951 19701 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35869 9589 9889 19702 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35870 9889 9862 19702 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35871 9862 9551 19702 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35872 9551 9589 19702 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35873 9544 9693 19703 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35874 9693 9692 19703 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35875 9692 9543 19703 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35876 9543 9544 19703 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35877 9583 9521 19704 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35878 9521 9513 19704 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35879 9513 9588 19704 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35880 9588 9583 19704 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35881 8891 9413 19705 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35882 9413 9426 19705 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35883 9426 8985 19705 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35884 8985 8891 19705 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35885 9519 9565 19706 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35886 9565 9552 19706 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35887 9552 9486 19706 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35888 9486 9519 19706 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35889 9407 8810 19707 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35890 8810 9131 19707 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35891 9131 9422 19707 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35892 9422 9407 19707 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35893 8365 8555 19708 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35894 8555 8325 19708 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35895 8325 8213 19708 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35896 8213 8365 19708 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35897 9693 9544 19709 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35898 9544 9561 19709 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35899 9561 9733 19709 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35900 9733 9693 19709 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35901 9486 9483 19710 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35902 9483 9521 19710 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35903 9521 9519 19710 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35904 9519 9486 19710 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35905 9863 9930 19711 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35906 9930 10056 19711 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35907 10056 10010 19711 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35908 10010 9863 19711 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35909 9513 9521 19712 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35910 9521 9483 19712 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35911 9483 9477 19712 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35912 9477 9513 19712 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35913 10161 10065 19713 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35914 10065 10062 19713 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35915 10062 10165 19713 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35916 10165 10161 19713 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35917 9598 9879 19714 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35918 9879 9889 19714 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35919 9889 9589 19714 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35920 9589 9598 19714 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35921 9751 9951 19715 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35922 9951 9925 19715 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35923 9925 9675 19715 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35924 9675 9751 19715 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35925 9413 9544 19716 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35926 9544 9543 19716 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35927 9543 9426 19716 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35928 9426 9413 19716 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35929 10151 10161 19717 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35930 10161 10165 19717 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35931 10165 10152 19717 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35932 10152 10151 19717 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35933 9948 9769 19718 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35934 9769 9760 19718 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35935 9760 9938 19718 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35936 9938 9948 19718 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35937 8555 8365 19719 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35938 8365 8400 19719 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35939 8400 8553 19719 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35940 8553 8555 19719 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35941 9612 9519 19720 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35942 9519 9521 19720 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35943 9521 9583 19720 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35944 9583 9612 19720 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35945 10056 10065 19721 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35946 10065 10161 19721 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35947 10161 10138 19721 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35948 10138 10056 19721 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35949 9948 10065 19722 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35950 10065 10056 19722 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35951 10056 9930 19722 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35952 9930 9948 19722 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35953 9612 9801 19723 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35954 9801 9863 19723 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35955 9863 9647 19723 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35956 9647 9612 19723 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35957 9923 9896 19724 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35958 9896 9805 19724 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35959 9805 9844 19724 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35960 9844 9923 19724 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35961 9544 9413 19725 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35962 9413 9404 19725 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35963 9404 9561 19725 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35964 9561 9544 19725 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35965 9404 9413 19726 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35966 9413 8891 19726 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35967 8891 8740 19726 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35968 8740 9404 19726 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35969 8213 8325 19727 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35970 8325 8359 19727 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35971 8359 8250 19727 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35972 8250 8213 19727 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35973 10073 10083 19728 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35974 10083 10138 19728 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35975 10138 10127 19728 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35976 10127 10073 19728 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35977 9769 9948 19729 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35978 9948 9930 19729 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35979 9930 9801 19729 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35980 9801 9769 19729 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35981 10065 9948 19730 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35982 9948 9938 19730 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35983 9938 10062 19730 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35984 10062 10065 19730 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35985 9802 9805 19731 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35986 9805 9896 19731 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35987 9896 9901 19731 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35988 9901 9802 19731 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35989 10127 10138 19732 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35990 10138 10161 19732 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35991 10161 10151 19732 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35992 10151 10127 19732 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35993 9951 9751 19733 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35994 9751 9863 19733 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35995 9863 10010 19733 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35996 10010 9951 19733 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35997 1563 1005 19734 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35998 1005 1173 19734 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 35999 1173 1546 19734 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36000 1546 1563 19734 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36001 1047 1155 19735 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36002 1155 1668 19735 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36003 1668 986 19735 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36004 986 1047 19735 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36005 1522 1622 19736 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36006 1622 2211 19736 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36007 2211 1392 19736 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36008 1392 1522 19736 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36009 1006 910 19737 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36010 910 957 19737 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36011 957 1112 19737 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36012 1112 1006 19737 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36013 1263 1112 19738 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36014 1112 957 19738 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36015 957 1409 19738 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36016 1409 1263 19738 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36017 1496 1409 19739 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36018 1409 957 19739 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36019 957 1534 19739 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36020 1534 1496 19739 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36021 1049 1123 19740 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36022 1123 1173 19740 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36023 1173 1005 19740 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36024 1005 1049 19740 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36025 990 1036 19741 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36026 1036 1082 19741 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36027 1082 1052 19741 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36028 1052 990 19741 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36029 1052 1082 19742 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36030 1082 1178 19742 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36031 1178 1166 19742 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36032 1166 1052 19742 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36033 1166 1178 19743 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36034 1178 1443 19743 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36035 1443 1447 19743 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36036 1447 1166 19743 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36037 1447 1443 19744 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36038 1443 1519 19744 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36039 1519 1545 19744 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36040 1545 1447 19744 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36041 1545 1519 19745 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36042 1519 1553 19745 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36043 1553 1608 19745 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36044 1608 1545 19745 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36045 1608 1553 19746 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36046 1553 1557 19746 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36047 1557 1613 19746 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36048 1613 1608 19746 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36049 1613 1557 19747 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36050 1557 1567 19747 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36051 1567 1614 19747 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36052 1614 1613 19747 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36053 1585 1584 19748 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36054 1584 1002 19748 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36055 1002 1005 19748 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36056 1005 1585 19748 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36057 965 1016 19749 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36058 1016 1017 19749 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36059 1017 963 19749 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36060 963 965 19749 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36061 963 1017 19750 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36062 1017 1036 19750 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36063 1036 990 19750 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36064 990 963 19750 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36065 935 971 19751 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36066 971 966 19751 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36067 966 934 19751 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36068 934 935 19751 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36069 957 955 19752 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36070 955 1533 19752 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36071 1533 1534 19752 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36072 1534 957 19752 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36073 1568 1520 19753 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36074 1520 1517 19753 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36075 1517 1562 19753 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36076 1562 1568 19753 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36077 1562 1517 19754 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36078 1517 1521 19754 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36079 1521 1559 19754 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36080 1559 1562 19754 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36081 1559 1521 19755 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36082 1521 1478 19755 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36083 1478 1493 19755 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36084 1493 1559 19755 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36085 1493 1478 19756 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36086 1478 1366 19756 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36087 1366 1370 19756 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36088 1370 1493 19756 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36089 1370 1366 19757 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36090 1366 1135 19757 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36091 1135 1120 19757 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36092 1120 1370 19757 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36093 1120 1135 19758 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36094 1135 1048 19758 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36095 1048 1015 19758 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36096 1015 1120 19758 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36097 1015 1048 19759 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36098 1048 995 19759 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36099 995 951 19759 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36100 951 1015 19759 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36101 951 995 19760 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36102 995 971 19760 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36103 971 935 19760 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36104 935 951 19760 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36105 1280 1332 19761 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36106 1332 1598 19761 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36107 1598 1590 19761 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36108 1590 1280 19761 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36109 1590 1598 19762 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36110 1598 1649 19762 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36111 1649 1666 19762 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36112 1666 1590 19762 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36113 1666 1649 19763 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36114 1649 1702 19763 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36115 1702 1798 19763 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36116 1798 1666 19763 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36117 1798 1702 19764 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36118 1702 2025 19764 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36119 2025 2479 19764 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36120 2479 1798 19764 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36121 2479 2025 19765 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36122 2025 2082 19765 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36123 2082 2517 19765 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36124 2517 2479 19765 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36125 2517 2082 19766 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36126 2082 1686 19766 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36127 1686 1762 19766 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36128 1762 2517 19766 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36129 1762 1686 19767 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36130 1686 1615 19767 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36131 1615 1611 19767 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36132 1611 1762 19767 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36133 1611 1615 19768 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36134 1615 1489 19768 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36135 1489 1458 19768 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36136 1458 1611 19768 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36137 1458 1489 19769 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36138 1489 1329 19769 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36139 1329 1267 19769 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36140 1267 1458 19769 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36141 1267 1329 19770 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36142 1329 1305 19770 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36143 1305 1238 19770 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36144 1238 1267 19770 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36145 1238 1305 19771 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36146 1305 1270 19771 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36147 1270 1213 19771 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36148 1213 1238 19771 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36149 1213 1270 19772 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36150 1270 1332 19772 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36151 1332 1280 19772 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36152 1280 1213 19772 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36153 2718 2397 19773 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36154 2397 2044 19773 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36155 2044 2491 19773 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36156 2491 2718 19773 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36157 2491 2044 19774 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36158 2044 2149 19774 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36159 2149 2493 19774 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36160 2493 2491 19774 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36161 2493 2149 19775 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36162 2149 1880 19775 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36163 1880 2211 19775 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36164 2211 2493 19775 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36165 2211 1880 19776 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36166 1880 1419 19776 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36167 1419 1392 19776 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36168 1392 2211 19776 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36169 1392 1419 19777 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36170 1419 1412 19777 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36171 1412 1353 19777 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36172 1353 1392 19777 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36173 1353 1412 19778 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36174 1412 1413 19778 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36175 1413 1352 19778 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36176 1352 1353 19778 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36177 1352 1413 19779 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36178 1413 1365 19779 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36179 1365 1312 19779 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36180 1312 1352 19779 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36181 1312 1365 19780 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36182 1365 1350 19780 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36183 1350 1292 19780 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36184 1292 1312 19780 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36185 1292 1350 19781 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36186 1350 1503 19781 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36187 1503 1483 19781 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36188 1483 1292 19781 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36189 1483 1503 19782 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36190 1503 1628 19782 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36191 1628 1623 19782 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36192 1623 1483 19782 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36193 1623 1628 19783 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36194 1628 1707 19783 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36195 1707 1914 19783 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36196 1914 1623 19783 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36197 1914 1707 19784 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36198 1707 2232 19784 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36199 2232 2621 19784 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36200 2621 1914 19784 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36201 2621 2232 19785 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36202 2232 2311 19785 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36203 2311 2688 19785 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36204 2688 2621 19785 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36205 2688 2311 19786 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36206 2311 2397 19786 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36207 2397 2718 19786 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36208 2718 2688 19786 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36209 2188 1774 19787 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36210 1774 1712 19787 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36211 1712 2015 19787 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36212 2015 2188 19787 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36213 2015 1712 19788 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36214 1712 1669 19788 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36215 1669 1699 19788 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36216 1699 2015 19788 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36217 1699 1669 19789 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36218 1669 1637 19789 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36219 1637 1648 19789 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36220 1648 1699 19789 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36221 1648 1637 19790 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36222 1637 1589 19790 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36223 1589 1583 19790 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36224 1583 1648 19790 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36225 1583 1589 19791 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36226 1589 1304 19791 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36227 1304 1251 19791 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36228 1251 1583 19791 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36229 1251 1304 19792 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36230 1304 1206 19792 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36231 1206 1158 19792 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36232 1158 1251 19792 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36233 1158 1206 19793 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36234 1206 1242 19793 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36235 1242 1188 19793 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36236 1188 1158 19793 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36237 1188 1242 19794 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36238 1242 1239 19794 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36239 1239 1191 19794 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36240 1191 1188 19794 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36241 1191 1239 19795 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36242 1239 1252 19795 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36243 1252 1201 19795 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36244 1201 1191 19795 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36245 1201 1252 19796 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36246 1252 1307 19796 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36247 1307 1240 19796 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36248 1240 1201 19796 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36249 1240 1307 19797 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36250 1307 1306 19797 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36251 1306 1243 19797 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36252 1243 1240 19797 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36253 1243 1306 19798 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36254 1306 1316 19798 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36255 1316 1271 19798 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36256 1271 1243 19798 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36257 1271 1316 19799 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36258 1316 1685 19799 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36259 1685 1732 19799 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36260 1732 1271 19799 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36261 1732 1685 19800 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36262 1685 1737 19800 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36263 1737 1954 19800 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36264 1954 1732 19800 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36265 1954 1737 19801 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36266 1737 1708 19801 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36267 1708 1950 19801 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36268 1950 1954 19801 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36269 1950 1708 19802 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36270 1708 1780 19802 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36271 1780 2214 19802 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36272 2214 1950 19802 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36273 2214 1780 19803 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36274 1780 1774 19803 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36275 1774 2188 19803 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36276 2188 2214 19803 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36277 2366 2133 19804 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36278 2133 3009 19804 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36279 3009 3185 19804 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36280 3185 2366 19804 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36281 1728 1705 19805 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36282 1705 2133 19805 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36283 2133 2366 19805 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36284 2366 1728 19805 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36285 1610 1612 19806 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36286 1612 1705 19806 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36287 1705 1728 19806 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36288 1728 1610 19806 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36289 1612 1610 19807 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36290 1610 1491 19807 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36291 1491 1500 19807 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36292 1500 1612 19807 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36293 3185 3009 19808 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36294 3009 3302 19808 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36295 3302 3465 19808 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36296 3465 3185 19808 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36297 3465 3302 19809 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36298 3302 3309 19809 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36299 3309 3454 19809 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36300 3454 3465 19809 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36301 3269 3358 19810 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36302 3358 3454 19810 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36303 3454 3309 19810 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36304 3309 3269 19810 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36305 3358 3269 19811 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36306 3269 3059 19811 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36307 3059 3097 19811 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36308 3097 3358 19811 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36309 3097 3059 19812 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36310 3059 2600 19812 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36311 2600 2610 19812 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36312 2610 3097 19812 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36313 2610 2600 19813 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36314 2600 1922 19813 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36315 1922 1964 19813 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36316 1964 2610 19813 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36317 1273 1311 19814 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36318 1311 1500 19814 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36319 1500 1491 19814 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36320 1491 1273 19814 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36321 1125 1157 19815 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36322 1157 1311 19815 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36323 1311 1273 19815 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36324 1273 1125 19815 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36325 1062 1079 19816 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36326 1079 1157 19816 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36327 1157 1125 19816 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36328 1125 1062 19816 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36329 1079 1062 19817 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36330 1062 999 19817 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36331 999 1019 19817 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36332 1019 1079 19817 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36333 953 968 19818 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36334 968 1019 19818 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36335 1019 999 19818 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36336 999 953 19818 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36337 1668 1676 19819 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36338 1676 1964 19819 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36339 1964 1922 19819 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36340 1922 1668 19819 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36341 959 986 19820 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36342 986 968 19820 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36343 968 953 19820 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36344 953 959 19820 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36345 1029 1047 19821 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36346 1047 986 19821 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36347 986 959 19821 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36348 959 1029 19821 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36349 1136 1155 19822 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36350 1155 1047 19822 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36351 1047 1029 19822 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36352 1029 1136 19822 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36353 1417 1431 19823 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36354 1431 1155 19823 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36355 1155 1136 19823 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36356 1136 1417 19823 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36357 1602 1597 19824 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36358 1597 1431 19824 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36359 1431 1417 19824 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36360 1417 1602 19824 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36361 1676 1668 19825 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36362 1668 1597 19825 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36363 1597 1602 19825 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36364 1602 1676 19825 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36365 3309 1311 19826 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36366 1311 1157 19826 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36367 1157 3269 19826 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36368 3269 3309 19826 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36369 1500 3302 19827 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36370 3302 3009 19827 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36371 3009 1612 19827 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36372 1612 1500 19827 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36373 2600 3059 19828 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36374 3059 1079 19828 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36375 1079 1019 19828 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36376 1019 2600 19828 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36377 1922 968 19829 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36378 968 986 19829 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36379 986 1668 19829 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36380 1668 1922 19829 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36381 1665 1901 19830 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36382 1901 1964 19830 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36383 1964 1676 19830 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36384 1676 1665 19830 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36385 3373 3100 19831 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36386 3100 3185 19831 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36387 3185 3465 19831 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36388 3465 3373 19831 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36389 2574 3029 19832 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36390 3029 3097 19832 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36391 3097 2610 19832 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36392 2610 2574 19832 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36393 3271 3342 19833 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36394 3342 3454 19833 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36395 3454 3358 19833 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36396 3358 3271 19833 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36397 2343 1726 19834 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36398 1726 1728 19834 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36399 1728 2366 19834 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36400 2366 2343 19834 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36401 1626 1507 19835 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36402 1507 1491 19835 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36403 1491 1610 19835 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36404 1610 1626 19835 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36405 1322 1162 19836 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36406 1162 1125 19836 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36407 1125 1273 19836 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36408 1273 1322 19836 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36409 1083 1027 19837 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36410 1027 999 19837 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36411 999 1062 19837 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36412 1062 1083 19837 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36413 1415 1593 19838 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36414 1593 1602 19838 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36415 1602 1417 19838 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36416 1417 1415 19838 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36417 1037 1141 19839 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36418 1141 1136 19839 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36419 1136 1029 19839 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36420 1029 1037 19839 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36421 973 981 19840 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36422 981 959 19840 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36423 959 953 19840 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36424 953 973 19840 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36425 2343 2366 19841 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36426 2366 3185 19841 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36427 3185 3100 19841 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36428 3100 2343 19841 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36429 3373 3465 19842 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36430 3465 3454 19842 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36431 3454 3342 19842 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36432 3342 3373 19842 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36433 3271 3358 19843 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36434 3358 3097 19843 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36435 3097 3029 19843 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36436 3029 3271 19843 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36437 2574 2610 19844 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36438 2610 1964 19844 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36439 1964 1901 19844 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36440 1901 2574 19844 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36441 1665 1676 19845 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36442 1676 1602 19845 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36443 1602 1593 19845 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36444 1593 1665 19845 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36445 1415 1417 19846 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36446 1417 1136 19846 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36447 1136 1141 19846 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36448 1141 1415 19846 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36449 1037 1029 19847 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36450 1029 959 19847 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36451 959 981 19847 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36452 981 1037 19847 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36453 973 953 19848 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36454 953 999 19848 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36455 999 1027 19848 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36456 1027 973 19848 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36457 1083 1062 19849 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36458 1062 1125 19849 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36459 1125 1162 19849 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36460 1162 1083 19849 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36461 1322 1273 19850 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36462 1273 1491 19850 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36463 1491 1507 19850 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36464 1507 1322 19850 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36465 1626 1610 19851 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36466 1610 1728 19851 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36467 1728 1726 19851 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36468 1726 1626 19851 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36469 1431 1597 19852 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36470 1597 1668 19852 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36471 1668 1155 19852 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36472 1155 1431 19852 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36473 3059 3269 19853 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36474 3269 1157 19853 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36475 1157 1079 19853 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36476 1079 3059 19853 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36477 1019 968 19854 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36478 968 1922 19854 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36479 1922 2600 19854 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36480 2600 1019 19854 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36481 3009 2133 19855 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36482 2133 1705 19855 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36483 1705 1612 19855 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36484 1612 3009 19855 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36485 1863 2343 19856 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36486 2343 3100 19856 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36487 3100 3301 19856 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36488 3301 1863 19856 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36489 3301 3373 19857 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36490 3373 3342 19857 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36491 3342 3074 19857 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36492 3074 3301 19857 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36493 3074 3271 19858 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36494 3271 3029 19858 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36495 3029 2048 19858 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36496 2048 3074 19858 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36497 2048 2574 19859 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36498 2574 1901 19859 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36499 1901 1660 19859 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36500 1660 2048 19859 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36501 1660 1665 19860 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36502 1665 1593 19860 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36503 1593 1550 19860 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36504 1550 1660 19860 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36505 1550 1415 19861 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36506 1415 1141 19861 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36507 1141 1233 19861 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36508 1233 1550 19861 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36509 1233 1037 19862 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36510 1037 981 19862 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36511 981 1164 19862 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36512 1164 1233 19862 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36513 1164 973 19863 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36514 973 1027 19863 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36515 1027 1159 19863 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36516 1159 1164 19863 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36517 1159 1083 19864 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36518 1083 1162 19864 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36519 1162 1344 19864 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36520 1344 1159 19864 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36521 1344 1322 19865 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36522 1322 1507 19865 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36523 1507 1594 19865 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36524 1594 1344 19865 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36525 1594 1626 19866 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36526 1626 1726 19866 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36527 1726 1863 19866 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36528 1863 1594 19866 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36529 1738 1863 19867 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36530 1863 3301 19867 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36531 3301 2545 19867 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36532 2545 1738 19867 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36533 2545 3301 19868 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36534 3301 3074 19868 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36535 3074 2511 19868 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36536 2511 2545 19868 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36537 2511 3074 19869 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36538 3074 2048 19869 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36539 2048 1808 19869 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36540 1808 2511 19869 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36541 1808 2048 19870 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36542 2048 1660 19870 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36543 1660 1656 19870 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36544 1656 1808 19870 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36545 1656 1660 19871 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36546 1660 1550 19871 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36547 1550 1576 19871 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36548 1576 1656 19871 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36549 1576 1550 19872 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36550 1550 1233 19872 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36551 1233 1299 19872 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36552 1299 1576 19872 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36553 1299 1233 19873 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36554 1233 1164 19873 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36555 1164 1228 19873 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36556 1228 1299 19873 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36557 1228 1164 19874 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36558 1164 1159 19874 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36559 1159 1248 19874 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36560 1248 1228 19874 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36561 1248 1159 19875 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36562 1159 1344 19875 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36563 1344 1406 19875 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36564 1406 1248 19875 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36565 1406 1344 19876 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36566 1344 1594 19876 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36567 1594 1606 19876 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36568 1606 1406 19876 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36569 1606 1594 19877 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36570 1594 1863 19877 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36571 1863 1738 19877 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36572 1738 1606 19877 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36573 1739 1738 19878 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36574 1738 2545 19878 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36575 2545 2551 19878 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36576 2551 1739 19878 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36577 2551 2545 19879 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36578 2545 2511 19879 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36579 2511 2519 19879 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36580 2519 2551 19879 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36581 2519 2511 19880 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36582 2511 1808 19880 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36583 1808 1809 19880 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36584 1809 2519 19880 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36585 1809 1808 19881 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36586 1808 1656 19881 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36587 1656 1657 19881 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36588 1657 1809 19881 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36589 1657 1656 19882 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36590 1656 1576 19882 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36591 1576 1577 19882 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36592 1577 1657 19882 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36593 1577 1576 19883 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36594 1576 1299 19883 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36595 1299 1300 19883 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36596 1300 1577 19883 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36597 1300 1299 19884 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36598 1299 1228 19884 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36599 1228 1229 19884 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36600 1229 1300 19884 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36601 1229 1228 19885 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36602 1228 1248 19885 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36603 1248 1250 19885 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36604 1250 1229 19885 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36605 1250 1248 19886 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36606 1248 1406 19886 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36607 1406 1407 19886 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36608 1407 1250 19886 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36609 1407 1406 19887 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36610 1406 1606 19887 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36611 1606 1607 19887 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36612 1607 1407 19887 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36613 1607 1606 19888 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36614 1606 1738 19888 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36615 1738 1739 19888 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36616 1739 1607 19888 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36617 1173 1144 19889 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36618 1144 1243 19889 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36619 1243 1271 19889 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36620 1271 1173 19889 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36621 1112 1107 19890 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36622 1107 983 19890 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36623 983 1006 19890 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36624 1006 1112 19890 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36625 1880 2149 19891 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36626 2149 1737 19891 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36627 1737 1685 19891 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36628 1685 1880 19891 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36629 893 926 19892 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36630 926 910 19892 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36631 910 880 19892 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36632 880 893 19892 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36633 880 910 19893 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36634 910 1006 19893 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36635 1006 983 19893 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36636 983 880 19893 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36637 1107 1112 19894 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36638 1112 1263 19894 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36639 1263 1285 19894 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36640 1285 1107 19894 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36641 1285 1263 19895 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36642 1263 1409 19895 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36643 1409 1457 19895 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36644 1457 1285 19895 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36645 1457 1409 19896 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36646 1409 1496 19896 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36647 1496 1532 19896 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36648 1532 1457 19896 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36649 1595 1563 19897 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36650 1563 1546 19897 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36651 1546 1578 19897 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36652 1578 1595 19897 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36653 1578 1546 19898 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36654 1546 1601 19898 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36655 1601 1621 19898 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36656 1621 1578 19898 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36657 1621 1601 19899 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36658 1601 1732 19899 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36659 1732 1954 19899 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36660 1954 1621 19899 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36661 2060 1877 19900 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36662 1877 1622 19900 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36663 1622 1619 19900 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36664 1619 2060 19900 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36665 1619 1622 19901 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36666 1622 1522 19901 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36667 1522 1502 19901 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36668 1502 1619 19901 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36669 1502 1522 19902 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36670 1522 1392 19902 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36671 1392 1353 19902 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36672 1353 1502 19902 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36673 1412 1419 19903 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36674 1419 1316 19903 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36675 1316 1306 19903 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36676 1306 1412 19903 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36677 1144 1173 19904 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36678 1173 1123 19904 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36679 1123 1102 19904 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36680 1102 1144 19904 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36681 1102 1123 19905 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36682 1123 1049 19905 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36683 1049 1014 19905 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36684 1014 1102 19905 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36685 934 957 19906 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36686 957 926 19906 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36687 926 893 19906 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36688 893 934 19906 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36689 1014 1049 19907 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36690 1049 1005 19907 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36691 1005 965 19907 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36692 965 1014 19907 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36693 1016 1002 19908 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36694 1002 955 19908 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36695 955 966 19908 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36696 966 1016 19908 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36697 1614 1585 19909 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36698 1585 1563 19909 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36699 1563 1595 19909 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36700 1595 1614 19909 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36701 1532 1496 19910 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36702 1496 1534 19910 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36703 1534 1568 19910 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36704 1568 1532 19910 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36705 1520 1533 19911 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36706 1533 1584 19911 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36707 1584 1567 19911 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36708 1567 1520 19911 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36709 2648 2461 19912 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36710 2461 1877 19912 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36711 1877 2060 19912 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36712 2060 2648 19912 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36713 2493 2211 19913 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36714 2211 2461 19913 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36715 2461 2648 19913 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36716 2648 2493 19913 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36717 1702 1649 19914 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36718 1649 1637 19914 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36719 1637 1669 19914 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36720 1669 1702 19914 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36721 2517 1762 19915 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36722 1762 1739 19915 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36723 1739 2551 19915 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36724 2551 2517 19915 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36725 2232 1707 19916 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36726 1707 1686 19916 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36727 1686 2082 19916 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36728 2082 2232 19916 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36729 2795 2234 19917 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36730 2234 1914 19917 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36731 1914 2621 19917 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36732 2621 2795 19917 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36733 2830 2304 19918 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36734 2304 2234 19918 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36735 2234 2795 19918 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36736 2795 2830 19918 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36737 2684 2154 19919 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36738 2154 2304 19919 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36739 2304 2830 19919 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36740 2830 2684 19919 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36741 2648 2060 19920 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36742 2060 2154 19920 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36743 2154 2684 19920 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36744 2684 2648 19920 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36745 1316 1419 19921 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36746 1419 1880 19921 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36747 1880 1685 19921 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36748 1685 1316 19921 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36749 1877 2461 19922 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36750 2461 2211 19922 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36751 2211 1622 19922 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36752 1622 1877 19922 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36753 1128 1150 19923 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36754 1150 1140 19923 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36755 1140 1111 19923 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36756 1111 1128 19923 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36757 1173 1271 19924 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36758 1271 1732 19924 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36759 1732 1601 19924 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36760 1601 1173 19924 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36761 1557 1517 19925 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36762 1517 1520 19925 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36763 1520 1567 19925 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36764 1567 1557 19925 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36765 1553 1521 19926 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36766 1521 1517 19926 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36767 1517 1557 19926 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36768 1557 1553 19926 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36769 1519 1478 19927 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36770 1478 1521 19927 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36771 1521 1553 19927 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36772 1553 1519 19927 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36773 1366 1478 19928 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36774 1478 1519 19928 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36775 1519 1443 19928 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36776 1443 1366 19928 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36777 1178 1135 19929 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36778 1135 1366 19929 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36779 1366 1443 19929 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36780 1443 1178 19929 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36781 1082 1048 19930 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36782 1048 1135 19930 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36783 1135 1178 19930 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36784 1178 1082 19930 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36785 1036 995 19931 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36786 995 1048 19931 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36787 1048 1082 19931 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36788 1082 1036 19931 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36789 1017 971 19932 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36790 971 995 19932 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36791 995 1036 19932 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36792 1036 1017 19932 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36793 1016 966 19933 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36794 966 971 19933 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36795 971 1017 19933 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36796 1017 1016 19933 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36797 1611 1458 19934 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36798 1458 1407 19934 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36799 1407 1607 19934 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36800 1607 1611 19934 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36801 1458 1238 19935 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36802 1238 1250 19935 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36803 1250 1407 19935 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36804 1407 1458 19935 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36805 1238 1213 19936 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36806 1213 1229 19936 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36807 1229 1250 19936 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36808 1250 1238 19936 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36809 1213 1280 19937 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36810 1280 1300 19937 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36811 1300 1229 19937 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36812 1229 1213 19937 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36813 1280 1590 19938 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36814 1590 1577 19938 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36815 1577 1300 19938 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36816 1300 1280 19938 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36817 1590 1666 19939 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36818 1666 1657 19939 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36819 1657 1577 19939 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36820 1577 1590 19939 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36821 1666 1798 19940 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36822 1798 1809 19940 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36823 1809 1657 19940 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36824 1657 1666 19940 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36825 1798 2521 19941 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36826 2521 2519 19941 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36827 2519 1809 19941 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36828 1809 1798 19941 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36829 2521 2517 19942 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36830 2517 2551 19942 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36831 2551 2519 19942 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36832 2519 2521 19942 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36833 1762 1611 19943 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36834 1611 1607 19943 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36835 1607 1739 19943 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36836 1739 1762 19943 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36837 1707 1628 19944 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36838 1628 1615 19944 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36839 1615 1686 19944 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36840 1686 1707 19944 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36841 1669 1712 19945 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36842 1712 2025 19945 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36843 2025 1702 19945 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36844 1702 1669 19945 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36845 1530 1624 19946 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36846 1624 1648 19946 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36847 1648 1583 19946 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36848 1583 1530 19946 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36849 1209 1128 19947 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36850 1128 1110 19947 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36851 1110 1183 19947 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36852 1183 1209 19947 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36853 1637 1649 19948 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36854 1649 1598 19948 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36855 1598 1589 19948 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36856 1589 1637 19948 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36857 1624 1530 19949 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36858 1530 1494 19949 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36859 1494 1596 19949 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36860 1596 1624 19949 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36861 1583 1251 19950 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36862 1251 1209 19950 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36863 1209 1530 19950 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36864 1530 1583 19950 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36865 1206 1270 19951 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36866 1270 1305 19951 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36867 1305 1242 19951 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36868 1242 1206 19951 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36869 1530 1209 19952 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36870 1209 1183 19952 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36871 1183 1494 19952 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36872 1494 1530 19952 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36873 1598 1332 19953 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36874 1332 1304 19953 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36875 1304 1589 19953 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36876 1589 1598 19953 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36877 1489 1615 19954 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36878 1615 1628 19954 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36879 1628 1503 19954 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36880 1503 1489 19954 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36881 1304 1332 19955 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36882 1332 1270 19955 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36883 1270 1206 19955 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36884 1206 1304 19955 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36885 1251 1150 19956 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36886 1150 1128 19956 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36887 1128 1209 19956 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36888 1209 1251 19956 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36889 1311 3309 19957 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36890 3309 3302 19957 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36891 3302 1500 19957 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36892 1500 1311 19957 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36893 1638 2234 19958 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36894 2234 2304 19958 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36895 2304 1641 19958 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36896 1641 1638 19958 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36897 1495 1638 19959 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36898 1638 1641 19959 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36899 1641 1484 19959 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36900 1484 1495 19959 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36901 1292 1495 19960 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36902 1495 1484 19960 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36903 1484 1312 19960 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36904 1312 1292 19960 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36905 1239 1350 19961 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36906 1350 1365 19961 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36907 1365 1252 19961 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36908 1252 1239 19961 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36909 1140 1191 19962 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36910 1191 1201 19962 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36911 1201 1122 19962 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36912 1122 1140 19962 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36913 1111 1140 19963 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36914 1140 1122 19963 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36915 1122 1091 19963 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36916 1091 1111 19963 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36917 1059 1111 19964 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36918 1111 1091 19964 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36919 1091 1010 19964 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36920 1010 1059 19964 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36921 1483 1623 19965 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36922 1623 1638 19965 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36923 1638 1495 19965 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36924 1495 1483 19965 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36925 1329 1489 19966 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36926 1489 1503 19966 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36927 1503 1350 19966 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36928 1350 1329 19966 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36929 1242 1329 19967 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36930 1329 1350 19967 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36931 1350 1239 19967 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36932 1239 1242 19967 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36933 1188 1140 19968 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36934 1140 1150 19968 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36935 1150 1158 19968 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36936 1158 1188 19968 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36937 2311 2232 19969 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36938 2232 2082 19969 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36939 2082 2025 19969 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36940 2025 2311 19969 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36941 1774 2311 19970 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36942 2311 2025 19970 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36943 2025 1712 19970 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36944 1712 1774 19970 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36945 1629 1655 19971 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36946 1655 1648 19971 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36947 1648 1624 19971 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36948 1624 1629 19971 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36949 1620 1621 19972 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36950 1621 1954 19972 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36951 1954 1950 19972 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36952 1950 1620 19972 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36953 1650 1620 19973 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36954 1620 1950 19973 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36955 1950 2214 19973 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36956 2214 1650 19973 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36957 1655 1650 19974 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36958 1650 2214 19974 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36959 2214 2188 19974 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36960 2188 1655 19974 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36961 1149 1144 19975 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36962 1144 1102 19975 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36963 1102 1098 19975 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36964 1098 1149 19975 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36965 1122 1149 19976 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36966 1149 1098 19976 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36967 1098 1091 19976 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36968 1091 1122 19976 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36969 1447 1545 19977 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36970 1545 1543 19977 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36971 1543 1456 19977 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36972 1456 1447 19977 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36973 1493 1370 19978 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36974 1370 1294 19978 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36975 1294 1480 19978 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36976 1480 1493 19978 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36977 1398 1433 19979 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36978 1433 1526 19979 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36979 1526 1480 19979 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36980 1480 1398 19979 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36981 1573 1578 19980 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36982 1578 1621 19980 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36983 1621 1620 19980 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36984 1620 1573 19980 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36985 1617 1573 19981 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36986 1573 1620 19981 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36987 1620 1650 19981 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36988 1650 1617 19981 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36989 1629 1617 19982 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36990 1617 1650 19982 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36991 1650 1655 19982 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36992 1655 1629 19982 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36993 1586 1595 19983 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36994 1595 1578 19983 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36995 1578 1573 19983 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36996 1573 1586 19983 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36997 1582 1586 19984 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36998 1586 1573 19984 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 36999 1573 1617 19984 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37000 1617 1582 19984 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37001 1543 1582 19985 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37002 1582 1617 19985 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37003 1617 1629 19985 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37004 1629 1543 19985 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37005 1613 1614 19986 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37006 1614 1595 19986 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37007 1595 1586 19986 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37008 1586 1613 19986 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37009 1608 1613 19987 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37010 1613 1586 19987 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37011 1586 1582 19987 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37012 1582 1608 19987 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37013 1545 1608 19988 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37014 1608 1582 19988 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37015 1582 1543 19988 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37016 1543 1545 19988 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37017 1276 1285 19989 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37018 1285 1457 19989 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37019 1457 1462 19989 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37020 1462 1276 19989 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37021 1244 1276 19990 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37022 1276 1462 19990 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37023 1462 1433 19990 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37024 1433 1244 19990 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37025 1098 1102 19991 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37026 1102 1014 19991 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37027 1014 1007 19991 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37028 1007 1098 19991 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37029 1091 1098 19992 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37030 1098 1007 19992 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37031 1007 1010 19992 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37032 1010 1091 19992 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37033 1183 1110 19993 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37034 1110 1059 19993 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37035 1059 1156 19993 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37036 1156 1183 19993 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37037 962 907 19994 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37038 907 989 19994 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37039 989 1035 19994 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37040 1035 962 19994 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37041 1007 1014 19995 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37042 1014 965 19995 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37043 965 963 19995 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37044 963 1007 19995 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37045 1010 1007 19996 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37046 1007 963 19996 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37047 963 990 19996 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37048 990 1010 19996 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37049 1059 1010 19997 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37050 1010 990 19997 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37051 990 1052 19997 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37052 1052 1059 19997 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37053 1156 1059 19998 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37054 1059 1052 19998 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37055 1052 1166 19998 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37056 1166 1156 19998 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37057 935 934 19999 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37058 934 893 19999 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37059 893 894 19999 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37060 894 935 19999 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37061 951 935 20000 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37062 935 894 20000 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37063 894 918 20000 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37064 918 951 20000 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37065 1015 951 20001 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37066 951 918 20001 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37067 918 972 20001 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37068 972 1015 20001 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37069 1120 1015 20002 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37070 1015 972 20002 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37071 972 1094 20002 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37072 1094 1120 20002 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37073 1494 1183 20003 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37074 1183 1156 20003 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37075 1156 1456 20003 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37076 1456 1494 20003 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37077 1502 1353 20004 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37078 1353 1352 20004 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37079 1352 1501 20004 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37080 1501 1502 20004 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37081 1457 1532 20005 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37082 1532 1524 20005 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37083 1524 1462 20005 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37084 1462 1457 20005 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37085 2060 1619 20006 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37086 1619 1632 20006 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37087 1632 2154 20006 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37088 2154 2060 20006 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37089 1559 1493 20007 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37090 1493 1480 20007 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37091 1480 1526 20007 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37092 1526 1559 20007 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37093 2311 1774 20008 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37094 1774 1780 20008 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37095 1780 2397 20008 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37096 2397 2311 20008 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37097 2397 1780 20009 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37098 1780 1708 20009 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37099 1708 2044 20009 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37100 2044 2397 20009 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37101 1623 1914 20010 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37102 1914 2234 20010 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37103 2234 1638 20010 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37104 1638 1623 20010 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37105 2830 2718 20011 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37106 2718 2491 20011 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37107 2491 2684 20011 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37108 2684 2830 20011 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37109 1312 1484 20012 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37110 1484 1501 20012 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37111 1501 1352 20012 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37112 1352 1312 20012 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37113 1526 1524 20013 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37114 1524 1562 20013 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37115 1562 1559 20013 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37116 1559 1526 20013 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37117 1035 989 20014 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37118 989 1115 20014 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37119 1115 1182 20014 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37120 1182 1035 20014 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37121 1568 1562 20015 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37122 1562 1524 20015 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37123 1524 1532 20015 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37124 1532 1568 20015 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37125 880 983 20016 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37126 983 980 20016 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37127 980 884 20016 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37128 884 880 20016 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37129 1412 1306 20017 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37130 1306 1307 20017 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37131 1307 1413 20017 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37132 1413 1412 20017 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37133 1456 1156 20018 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37134 1156 1166 20018 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37135 1166 1447 20018 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37136 1447 1456 20018 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37137 1370 1120 20019 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37138 1120 1094 20019 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37139 1094 1294 20019 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37140 1294 1370 20019 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37141 1619 1502 20020 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37142 1502 1501 20020 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37143 1501 1632 20020 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37144 1632 1619 20020 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37145 893 880 20021 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37146 880 884 20021 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37147 884 894 20021 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37148 894 893 20021 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37149 1107 1285 20022 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37150 1285 1276 20022 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37151 1276 1097 20022 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37152 1097 1107 20022 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37153 2493 2648 20023 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37154 2648 2684 20023 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37155 2684 2491 20023 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37156 2491 2493 20023 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37157 1462 1524 20024 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37158 1524 1526 20024 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37159 1526 1433 20024 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37160 1433 1462 20024 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37161 907 884 20025 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37162 884 980 20025 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37163 980 989 20025 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37164 989 907 20025 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37165 1584 1533 20026 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37166 1533 955 20026 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37167 955 1002 20026 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37168 1002 1584 20026 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37169 1115 989 20027 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37170 989 980 20027 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37171 980 1097 20027 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37172 1097 1115 20027 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37173 1398 1182 20028 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37174 1182 1244 20028 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37175 1244 1433 20028 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37176 1433 1398 20028 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37177 1201 1240 20029 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37178 1240 1149 20029 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37179 1149 1122 20029 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37180 1122 1201 20029 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37181 1484 1641 20030 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37182 1641 1632 20030 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37183 1632 1501 20030 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37184 1501 1484 20030 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37185 2304 2154 20031 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37186 2154 1632 20031 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37187 1632 1641 20031 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37188 1641 2304 20031 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37189 2795 2688 20032 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37190 2688 2718 20032 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37191 2718 2830 20032 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37192 2830 2795 20032 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37193 918 907 20033 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37194 907 962 20033 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37195 962 972 20033 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37196 972 918 20033 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37197 1244 1115 20034 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37198 1115 1097 20034 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37199 1097 1276 20034 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37200 1276 1244 20034 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37201 1252 1365 20035 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37202 1365 1413 20035 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37203 1413 1307 20035 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37204 1307 1252 20035 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37205 1737 2149 20036 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37206 2149 2044 20036 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37207 2044 1708 20036 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37208 1708 1737 20036 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37209 983 1107 20037 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37210 1107 1097 20037 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37211 1097 980 20037 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37212 980 983 20037 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37213 1144 1149 20038 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37214 1149 1240 20038 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37215 1240 1243 20038 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37216 1243 1144 20038 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37217 894 884 20039 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37218 884 907 20039 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37219 907 918 20039 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37220 918 894 20039 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37221 1035 1182 20040 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37222 1182 1294 20040 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37223 1294 1094 20040 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37224 1094 1035 20040 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2)} Face 37225 8069 8068 20041 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37226 8068 5540 20041 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37227 5540 5542 20041 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37228 5542 8069 20041 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37229 8072 8073 20042 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37230 8073 8068 20042 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37231 8068 8069 20042 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37232 8069 8072 20042 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37233 8074 8075 20043 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37234 8075 8073 20043 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37235 8073 8072 20043 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37236 8072 8074 20043 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37237 8076 8077 20044 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37238 8077 8075 20044 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37239 8075 8074 20044 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37240 8074 8076 20044 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37241 8070 8071 20045 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37242 8071 8077 20045 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37243 8077 8076 20045 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37244 8076 8070 20045 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37245 5551 5550 20046 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37246 5550 8071 20046 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37247 8071 8070 20046 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37248 8070 5551 20046 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37249 8071 5550 20047 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37250 5550 5545 20047 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37251 5545 8077 20047 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37252 8077 8071 20047 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37253 8077 5545 20048 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37254 5545 5543 20048 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37255 5543 8075 20048 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37256 8075 8077 20048 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37257 8075 5543 20049 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37258 5543 5541 20049 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37259 5541 8073 20049 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37260 8073 8075 20049 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37261 8073 5541 20050 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37262 5541 5540 20050 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37263 5540 8068 20050 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37264 8068 8073 20050 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37265 5542 5540 20051 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37266 5540 2966 20051 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37267 2966 2967 20051 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37268 2967 5542 20051 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37269 2967 2966 20052 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37270 2966 2962 20052 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37271 2962 2963 20052 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37272 2963 2967 20052 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37273 2963 2962 20053 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37274 2962 2959 20053 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37275 2959 2960 20053 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37276 2960 2963 20053 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37277 2960 2959 20054 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37278 2959 2957 20054 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37279 2957 2958 20054 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37280 2958 2960 20054 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37281 2958 2957 20055 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37282 2957 2964 20055 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37283 2964 2965 20055 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37284 2965 2958 20055 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37285 2965 2964 20056 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37286 2964 5550 20056 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37287 5550 5551 20056 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37288 5551 2965 20056 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37289 2957 5545 20057 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37290 5545 5550 20057 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37291 5550 2964 20057 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37292 2964 2957 20057 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37293 2959 5543 20058 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37294 5543 5545 20058 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37295 5545 2957 20058 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37296 2957 2959 20058 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37297 2962 5541 20059 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37298 5541 5543 20059 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37299 5543 2959 20059 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37300 2959 2962 20059 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37301 2966 5540 20060 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37302 5540 5541 20060 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37303 5541 2962 20060 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37304 2962 2966 20060 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4)} Face 37305 5546 5551 20061 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37306 5551 9238 20061 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37307 9238 8737 20061 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37308 8737 5546 20061 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37309 2965 5551 20062 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37310 5551 2309 20062 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37311 2309 1807 20062 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37312 1807 2965 20062 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37313 8069 5542 20063 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37314 5542 5538 20063 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37315 5538 9293 20063 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37316 9293 8069 20063 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37317 5538 5537 20064 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37318 5537 9235 20064 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37319 9235 9293 20064 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37320 9293 5538 20064 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37321 9520 8074 20065 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37322 8074 8072 20065 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37323 8072 9457 20065 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37324 9457 9520 20065 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37325 9553 8076 20066 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37326 8076 8074 20066 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37327 8074 9520 20066 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37328 9520 9553 20066 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37329 9409 8070 20067 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37330 8070 8076 20067 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37331 8076 9553 20067 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37332 9553 9409 20067 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37333 9235 5537 20068 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37334 5537 5535 20068 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37335 5535 7631 20068 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37336 7631 9235 20068 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37337 9457 8072 20069 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37338 8072 8069 20069 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37339 8069 9406 20069 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37340 9406 9457 20069 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37341 1752 5538 20070 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37342 5538 5542 20070 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37343 5542 2967 20070 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37344 2967 1752 20070 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37345 1752 1810 20071 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37346 1810 5537 20071 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37347 5537 5538 20071 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37348 5538 1752 20071 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37349 1588 2963 20072 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37350 2963 2960 20072 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37351 2960 1525 20072 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37352 1525 1588 20072 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37353 1525 2960 20073 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37354 2960 2958 20073 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37355 2958 1492 20073 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37356 1492 1525 20073 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37357 1492 2958 20074 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37358 2958 2965 20074 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37359 2965 1636 20074 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37360 1636 1492 20074 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37361 3414 5535 20075 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37362 5535 5537 20075 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37363 5537 1810 20075 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37364 1810 3414 20075 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37365 1639 2967 20076 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37366 2967 2963 20076 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37367 2963 1588 20076 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37368 1588 1639 20076 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3)} Face 37369 9748 9650 20077 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37370 9650 9576 20077 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37371 9576 9670 20077 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37372 9670 9748 20077 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37373 9466 9576 20078 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37374 9576 9650 20078 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37375 9650 9484 20078 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37376 9484 9466 20078 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37377 7299 5507 20079 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37378 5507 5506 20079 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37379 5506 7230 20079 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37380 7230 7299 20079 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37381 8795 7299 20080 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37382 7299 7230 20080 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37383 7230 8615 20080 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37384 8615 8795 20080 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37385 9412 8795 20081 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37386 8795 8615 20081 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37387 8615 9400 20081 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37388 9400 9412 20081 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37389 9667 9412 20082 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37390 9412 9400 20082 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37391 9400 9595 20082 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37392 9595 9667 20082 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37393 9749 9667 20083 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37394 9667 9595 20083 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37395 9595 9684 20083 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37396 9684 9749 20083 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37397 9651 9749 20084 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37398 9749 9684 20084 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37399 9684 9577 20084 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37400 9577 9651 20084 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37401 9485 9651 20085 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37402 9651 9577 20085 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37403 9577 9440 20085 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37404 9440 9485 20085 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37405 8930 9485 20086 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37406 9485 9440 20086 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37407 9440 8690 20086 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37408 8690 8930 20086 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37409 7284 8930 20087 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37410 8930 8690 20087 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37411 8690 7218 20087 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37412 7218 7284 20087 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37413 5504 7284 20088 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37414 7284 7218 20088 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37415 7218 5505 20088 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37416 5505 5504 20088 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37417 7283 5500 20089 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37418 5500 5501 20089 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37419 5501 7217 20089 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37420 7217 7283 20089 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37421 8929 7283 20090 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37422 7283 7217 20090 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37423 7217 8489 20090 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37424 8489 8929 20090 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37425 9484 8929 20091 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37426 8929 9094 20091 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37427 9094 9410 20091 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37428 9410 9484 20091 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37429 9666 9748 20092 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37430 9748 9668 20092 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37431 9668 9594 20092 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37432 9594 9666 20092 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37433 9411 9666 20093 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37434 9666 9594 20093 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37435 9594 9418 20093 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37436 9418 9411 20093 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37437 8794 9411 20094 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37438 9411 9382 20094 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37439 9382 8614 20094 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37440 8614 8794 20094 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37441 7298 8794 20095 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37442 8794 8614 20095 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37443 8614 7229 20095 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37444 7229 7298 20095 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37445 5503 7298 20096 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37446 7298 7229 20096 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37447 7229 5502 20096 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37448 5502 5503 20096 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37449 9756 9656 20097 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37450 9656 9597 20097 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37451 9597 9686 20097 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37452 9686 9756 20097 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37453 9658 9756 20098 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37454 9756 9686 20098 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37455 9686 9579 20098 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37456 9579 9658 20098 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37457 9480 9658 20099 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37458 9658 9579 20099 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37459 9579 9442 20099 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37460 9442 9480 20099 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37461 9011 9480 20100 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37462 9480 9442 20100 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37463 9442 8692 20100 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37464 8692 9011 20100 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37465 7321 9011 20101 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37466 9011 8692 20101 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37467 8692 7220 20101 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37468 7220 7321 20101 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37469 5512 7321 20102 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37470 7321 7220 20102 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37471 7220 5513 20102 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37472 5513 5512 20102 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37473 7320 5508 20103 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37474 5508 5509 20103 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37475 5509 7219 20103 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37476 7219 7320 20103 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37477 9010 7320 20104 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37478 7320 7219 20104 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37479 7219 8691 20104 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37480 8691 9010 20104 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37481 9479 9010 20105 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37482 9010 8691 20105 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37483 8691 9441 20105 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37484 9441 9479 20105 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37485 9657 9479 20106 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37486 9479 9441 20106 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37487 9441 9578 20106 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37488 9578 9657 20106 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37489 9755 9657 20107 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37490 9657 9578 20107 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37491 9578 9685 20107 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37492 9685 9755 20107 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37493 9655 9755 20108 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37494 9755 9685 20108 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37495 9685 9596 20108 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37496 9596 9655 20108 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37497 9414 9655 20109 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37498 9655 9596 20109 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37499 9596 9401 20109 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37500 9401 9414 20109 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37501 8815 9414 20110 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37502 9414 9401 20110 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37503 9401 8616 20110 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37504 8616 8815 20110 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37505 7314 8815 20111 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37506 8815 8616 20111 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37507 8616 7231 20111 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37508 7231 7314 20111 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37509 5511 7314 20112 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37510 7314 7231 20112 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37511 7231 5510 20112 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37512 5510 5511 20112 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37513 7315 5515 20113 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37514 5515 5514 20113 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37515 5514 7232 20113 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37516 7232 7315 20113 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37517 8816 7315 20114 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37518 7315 7232 20114 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37519 7232 8617 20114 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37520 8617 8816 20114 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37521 9415 8816 20115 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37522 8816 8617 20115 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37523 8617 9402 20115 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37524 9402 9415 20115 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37525 9656 9415 20116 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37526 9415 9402 20116 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37527 9402 9597 20116 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37528 9597 9656 20116 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37529 9441 8691 20117 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37530 8691 8690 20117 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37531 8690 9440 20117 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37532 9440 9441 20117 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37533 8691 7219 20118 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37534 7219 7218 20118 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37535 7218 8690 20118 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37536 8690 8691 20118 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37537 7219 5509 20119 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37538 5509 5505 20119 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37539 5505 7218 20119 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37540 7218 7219 20119 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37541 5500 7283 20120 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37542 7283 7284 20120 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37543 7284 5504 20120 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37544 5504 5500 20120 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37545 7283 8929 20121 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37546 8929 8930 20121 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37547 8930 7284 20121 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37548 7284 7283 20121 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37549 8929 9484 20122 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37550 9484 9485 20122 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37551 9485 8930 20122 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37552 8930 8929 20122 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37553 7230 5506 20123 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37554 5506 5510 20123 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37555 5510 7231 20123 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37556 7231 7230 20123 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37557 7315 8816 20124 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37558 8816 8815 20124 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37559 8815 7314 20124 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37560 7314 7315 20124 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37561 8816 9415 20125 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37562 9415 9414 20125 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37563 9414 8815 20125 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37564 8815 8816 20125 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37565 9415 9656 20126 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37566 9656 9655 20126 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37567 9655 9414 20126 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37568 9414 9415 20126 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37569 9656 9756 20127 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37570 9756 9755 20127 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37571 9755 9655 20127 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37572 9655 9656 20127 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37573 9756 9658 20128 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37574 9658 9657 20128 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37575 9657 9755 20128 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37576 9755 9756 20128 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37577 9658 9480 20129 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37578 9480 9479 20129 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37579 9479 9657 20129 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37580 9657 9658 20129 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37581 9484 9650 20130 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37582 9650 9651 20130 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37583 9651 9485 20130 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37584 9485 9484 20130 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37585 9650 9748 20131 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37586 9748 9749 20131 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37587 9749 9651 20131 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37588 9651 9650 20131 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37589 9748 9666 20132 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37590 9666 9667 20132 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37591 9667 9749 20132 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37592 9749 9748 20132 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37593 9666 9411 20133 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37594 9411 9412 20133 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37595 9412 9667 20133 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37596 9667 9666 20133 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37597 9411 8794 20134 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37598 8794 8795 20134 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37599 8795 9412 20134 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37600 9412 9411 20134 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37601 8794 7298 20135 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37602 7298 7299 20135 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37603 7299 8795 20135 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37604 8795 8794 20135 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37605 7298 5503 20136 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37606 5503 5507 20136 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37607 5507 7299 20136 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37608 7299 7298 20136 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37609 9578 9441 20137 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37610 9441 9440 20137 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37611 9440 9577 20137 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37612 9577 9578 20137 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37613 9685 9578 20138 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37614 9578 9577 20138 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37615 9577 9684 20138 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37616 9684 9685 20138 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37617 9596 9685 20139 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37618 9685 9684 20139 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37619 9684 9595 20139 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37620 9595 9596 20139 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37621 9401 9596 20140 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37622 9596 9595 20140 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37623 9595 9400 20140 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37624 9400 9401 20140 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37625 8616 9401 20141 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37626 9401 9400 20141 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37627 9400 8615 20141 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37628 8615 8616 20141 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37629 7231 8616 20142 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37630 8616 8615 20142 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37631 8615 7230 20142 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37632 7230 7231 20142 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37633 5515 7315 20143 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37634 7315 7314 20143 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37635 7314 5511 20143 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37636 5511 5515 20143 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37637 7321 5512 20144 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37638 5512 5508 20144 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37639 5508 7320 20144 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37640 7320 7321 20144 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37641 9011 7321 20145 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37642 7321 7320 20145 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37643 7320 9010 20145 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37644 9010 9011 20145 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37645 9480 9011 20146 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37646 9011 9010 20146 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37647 9010 9479 20146 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37648 9479 9480 20146 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37649 1375 1466 20147 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37650 1466 1394 20147 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37651 1394 1296 20147 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37652 1296 1375 20147 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37653 1560 1394 20148 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37654 1394 1466 20148 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37655 1466 1579 20148 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37656 1579 1560 20148 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37657 3812 5506 20149 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37658 5506 5507 20149 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37659 5507 3745 20149 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37660 3745 3812 20149 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37661 2427 3812 20150 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37662 3812 3745 20150 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37663 3745 2250 20150 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37664 2250 2427 20150 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37665 1643 2427 20151 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37666 2427 2250 20151 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37667 2250 1634 20151 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37668 1634 1643 20151 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37669 1449 1643 20152 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37670 1643 1634 20152 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37671 1634 1379 20152 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37672 1379 1449 20152 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37673 1359 1449 20153 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37674 1449 1379 20153 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37675 1379 1297 20153 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37676 1297 1359 20153 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37677 1467 1359 20154 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37678 1359 1297 20154 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37679 1297 1395 20154 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37680 1395 1467 20154 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37681 1603 1467 20155 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37682 1467 1395 20155 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37683 1395 1561 20155 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37684 1561 1603 20155 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37685 2352 1603 20156 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37686 1603 1561 20156 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37687 1561 2116 20156 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37688 2116 2352 20156 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37689 3825 2352 20157 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37690 2352 2116 20157 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37691 2116 3761 20157 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37692 3761 3825 20157 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37693 5505 3825 20158 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37694 3825 3761 20158 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37695 3761 5504 20158 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37696 5504 5505 20158 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37697 3824 5501 20159 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37698 5501 5500 20159 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37699 5500 3760 20159 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37700 3760 3824 20159 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37701 2555 3824 20160 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37702 3824 3760 20160 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37703 3760 2115 20160 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37704 2115 2555 20160 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37705 1635 1951 20161 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37706 1951 2115 20161 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37707 2115 1560 20161 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37708 1560 1635 20161 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37709 1448 1377 20162 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37710 1377 1296 20162 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37711 1296 1378 20162 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37712 1378 1448 20162 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37713 1627 1448 20163 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37714 1448 1378 20163 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37715 1378 1633 20163 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37716 1633 1627 20163 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37717 2426 1663 20164 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37718 1663 1633 20164 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37719 1633 2249 20164 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37720 2249 2426 20164 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37721 3811 2426 20165 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37722 2426 2249 20165 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37723 2249 3744 20165 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37724 3744 3811 20165 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37725 5502 3811 20166 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37726 3811 3744 20166 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37727 3744 5503 20166 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37728 5503 5502 20166 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37729 1361 1451 20167 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37730 1451 1390 20167 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37731 1390 1290 20167 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37732 1290 1361 20167 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37733 1469 1361 20168 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37734 1361 1290 20168 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37735 1290 1388 20168 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37736 1388 1469 20168 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37737 1605 1469 20169 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37738 1469 1388 20169 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37739 1388 1566 20169 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37740 1566 1605 20169 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37741 2354 1605 20170 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37742 1605 1566 20170 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37743 1566 2034 20170 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37744 2034 2354 20170 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37745 3827 2354 20171 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37746 2354 2034 20171 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37747 2034 3722 20171 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37748 3722 3827 20171 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37749 5513 3827 20172 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37750 3827 3722 20172 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37751 3722 5512 20172 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37752 5512 5513 20172 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37753 3826 5509 20173 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37754 5509 5508 20173 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37755 5508 3721 20173 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37756 3721 3826 20173 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37757 2353 3826 20174 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37758 3826 3721 20174 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37759 3721 2033 20174 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37760 2033 2353 20174 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37761 1604 2353 20175 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37762 2353 2033 20175 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37763 2033 1565 20175 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37764 1565 1604 20175 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37765 1468 1604 20176 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37766 1604 1565 20176 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37767 1565 1387 20176 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37768 1387 1468 20176 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37769 1360 1468 20177 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37770 1468 1387 20177 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37771 1387 1289 20177 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37772 1289 1360 20177 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37773 1450 1360 20178 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37774 1360 1289 20178 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37775 1289 1389 20178 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37776 1389 1450 20178 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37777 1644 1450 20179 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37778 1450 1389 20179 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37779 1389 1630 20179 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37780 1630 1644 20179 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37781 2428 1644 20180 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37782 1644 1630 20180 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37783 1630 2229 20180 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37784 2229 2428 20180 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37785 3813 2428 20181 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37786 2428 2229 20181 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37787 2229 3727 20181 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37788 3727 3813 20181 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37789 5510 3813 20182 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37790 3813 3727 20182 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37791 3727 5511 20182 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37792 5511 5510 20182 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37793 3814 5514 20183 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37794 5514 5515 20183 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37795 5515 3728 20183 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37796 3728 3814 20183 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37797 2429 3814 20184 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37798 3814 3728 20184 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37799 3728 2230 20184 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37800 2230 2429 20184 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37801 1645 2429 20185 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37802 2429 2230 20185 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37803 2230 1631 20185 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37804 1631 1645 20185 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37805 1451 1645 20186 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37806 1645 1631 20186 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37807 1631 1390 20186 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37808 1390 1451 20186 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37809 1603 2352 20187 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37810 2352 2353 20187 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37811 2353 1604 20187 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37812 1604 1603 20187 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37813 2352 3825 20188 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37814 3825 3826 20188 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37815 3826 2353 20188 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37816 2353 2352 20188 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37817 3825 5505 20189 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37818 5505 5509 20189 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37819 5509 3826 20189 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37820 3826 3825 20189 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37821 5504 3761 20190 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37822 3761 3760 20190 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37823 3760 5500 20190 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37824 5500 5504 20190 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37825 3761 2116 20191 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37826 2116 2115 20191 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37827 2115 3760 20191 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37828 3760 3761 20191 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37829 2116 1561 20192 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37830 1561 1560 20192 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37831 1560 2115 20192 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37832 2115 2116 20192 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37833 3813 5510 20193 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37834 5510 5506 20193 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37835 5506 3812 20193 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37836 3812 3813 20193 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37837 3727 2229 20194 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37838 2229 2230 20194 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37839 2230 3728 20194 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37840 3728 3727 20194 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37841 2229 1630 20195 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37842 1630 1631 20195 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37843 1631 2230 20195 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37844 2230 2229 20195 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37845 1630 1389 20196 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37846 1389 1390 20196 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37847 1390 1631 20196 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37848 1631 1630 20196 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37849 1389 1289 20197 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37850 1289 1290 20197 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37851 1290 1390 20197 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37852 1390 1389 20197 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37853 1289 1387 20198 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37854 1387 1388 20198 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37855 1388 1290 20198 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37856 1290 1289 20198 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37857 1387 1565 20199 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37858 1565 1566 20199 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37859 1566 1388 20199 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37860 1388 1387 20199 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37861 1561 1395 20200 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37862 1395 1394 20200 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37863 1394 1560 20200 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37864 1560 1561 20200 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37865 1395 1297 20201 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37866 1297 1296 20201 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37867 1296 1394 20201 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37868 1394 1395 20201 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37869 1297 1379 20202 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37870 1379 1378 20202 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37871 1378 1296 20202 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37872 1296 1297 20202 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37873 1379 1634 20203 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37874 1634 1633 20203 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37875 1633 1378 20203 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37876 1378 1379 20203 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37877 1634 2250 20204 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37878 2250 2249 20204 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37879 2249 1633 20204 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37880 1633 1634 20204 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37881 2250 3745 20205 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37882 3745 3744 20205 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37883 3744 2249 20205 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37884 2249 2250 20205 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37885 3745 5507 20206 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37886 5507 5503 20206 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37887 5503 3744 20206 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37888 3744 3745 20206 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37889 1467 1603 20207 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37890 1603 1604 20207 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37891 1604 1468 20207 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37892 1468 1467 20207 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37893 1359 1467 20208 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37894 1467 1468 20208 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37895 1468 1360 20208 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37896 1360 1359 20208 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37897 1449 1359 20209 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37898 1359 1360 20209 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37899 1360 1450 20209 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37900 1450 1449 20209 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37901 1643 1449 20210 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37902 1449 1450 20210 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37903 1450 1644 20210 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37904 1644 1643 20210 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37905 2427 1643 20211 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37906 1643 1644 20211 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37907 1644 2428 20211 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37908 2428 2427 20211 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37909 3812 2427 20212 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37910 2427 2428 20212 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37911 2428 3813 20212 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37912 3813 3812 20212 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37913 5511 3727 20213 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37914 3727 3728 20213 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37915 3728 5515 20213 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37916 5515 5511 20213 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37917 3721 5508 20214 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37918 5508 5512 20214 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37919 5512 3722 20214 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37920 3722 3721 20214 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37921 2033 3721 20215 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37922 3721 3722 20215 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37923 3722 2034 20215 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37924 2034 2033 20215 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37925 1565 2033 20216 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37926 2033 2034 20216 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37927 2034 1566 20216 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37928 1566 1565 20216 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3)} Face 37929 9548 9671 20217 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37930 9671 9810 20217 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37931 9810 9403 20217 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37932 9403 9548 20217 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37933 9277 9403 20218 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37934 9403 9810 20218 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37935 9810 9084 20218 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37936 9084 9277 20218 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37937 9336 9084 20219 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37938 9084 9810 20219 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37939 9810 9405 20219 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37940 9405 9336 20219 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37941 9555 9405 20220 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37942 9405 9810 20220 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37943 9810 9705 20220 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37944 9705 9555 20220 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37945 8753 8845 20221 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37946 8845 9560 20221 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37947 9560 9141 20221 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37948 9141 8753 20221 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37949 1709 1640 20222 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37950 1640 1340 20222 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37951 1340 1961 20222 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37952 1961 1709 20222 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37953 1768 1961 20223 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37954 1961 1340 20223 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37955 1340 1642 20223 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37956 1642 1768 20223 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37957 1497 1642 20224 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37958 1642 1340 20224 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37959 1340 1374 20224 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37960 1374 1497 20224 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37961 1283 1374 20225 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37962 1374 1340 20225 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37963 1340 1235 20225 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37964 1235 1283 20225 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37965 1510 2197 20226 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37966 2197 1904 20226 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37967 1904 1485 20226 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37968 1485 1510 20226 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37969 9939 9852 20227 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37970 9852 9882 20227 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37971 9882 9982 20227 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37972 9982 9939 20227 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37973 9982 9882 20228 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37974 9882 9871 20228 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37975 9871 10003 20228 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37976 10003 9982 20228 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37977 9944 10106 20229 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37978 10106 10366 20229 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37979 10366 10253 20229 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37980 10253 9944 20229 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37981 10253 10366 20230 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37982 10366 10543 20230 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37983 10543 10336 20230 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37984 10336 10253 20230 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37985 10336 10543 20231 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37986 10543 10414 20231 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37987 10414 10266 20231 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37988 10266 10336 20231 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37989 10266 10414 20232 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37990 10414 10214 20232 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37991 10214 10140 20232 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37992 10140 10266 20232 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37993 10140 10214 20233 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37994 10214 10070 20233 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37995 10070 10003 20233 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37996 10003 10140 20233 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37997 6848 6324 20234 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37998 6324 7385 20234 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 37999 7385 7842 20234 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38000 7842 6848 20234 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38001 8307 9366 20235 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38002 9366 9064 20235 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38003 9064 7114 20235 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38004 7114 8307 20235 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38005 10183 10370 20236 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38006 10370 10106 20236 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38007 10106 10033 20236 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38008 10033 10183 20236 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38009 9992 9892 20237 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38010 9892 9975 20237 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38011 9975 10109 20237 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38012 10109 9992 20237 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38013 9669 9064 20238 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38014 9064 9366 20238 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38015 9366 9580 20238 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38016 9580 9669 20238 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38017 9718 9944 20239 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38018 9944 10101 20239 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38019 10101 9785 20239 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38020 9785 9718 20239 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38021 9720 9759 20240 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38022 9759 9700 20240 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38023 9700 9669 20240 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38024 9669 9720 20240 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38025 9785 9818 20241 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38026 9818 9759 20241 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38027 9759 9720 20241 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38028 9720 9785 20241 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38029 8946 9304 20242 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38030 9304 9094 20242 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38031 9094 8729 20242 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38032 8729 8946 20242 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38033 9533 9503 20243 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38034 9503 9546 20243 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38035 9546 9559 20243 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38036 9559 9533 20243 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38037 9506 9475 20244 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38038 9475 9503 20244 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38039 9503 9533 20244 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38040 9533 9506 20244 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38041 9398 9503 20245 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38042 9503 9475 20245 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38043 9475 9382 20245 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38044 9382 9398 20245 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38045 9418 9546 20246 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38046 9546 9503 20246 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38047 9503 9398 20246 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38048 9398 9418 20246 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38049 9786 9624 20247 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38050 9624 9670 20247 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38051 9670 9800 20247 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38052 9800 9786 20247 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38053 9811 9668 20248 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38054 9668 9624 20248 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38055 9624 9786 20248 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38056 9786 9811 20248 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38057 8671 8946 20249 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38058 8946 8568 20249 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38059 8568 8361 20249 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38060 8361 8671 20249 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38061 9141 9304 20250 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38062 9304 8946 20250 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38063 8946 8671 20250 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38064 8671 9141 20250 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38065 9420 9465 20251 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38066 9465 9514 20251 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38067 9514 9466 20251 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38068 9466 9420 20251 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38069 9410 9436 20252 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38070 9436 9465 20252 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38071 9465 9420 20252 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38072 9420 9410 20252 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38073 8729 8489 20253 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38074 8489 8568 20253 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38075 8568 8946 20253 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38076 8946 8729 20253 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38077 6978 7183 20254 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38078 7183 6938 20254 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38079 6938 6711 20254 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38080 6711 6978 20254 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38081 7263 7476 20255 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38082 7476 7183 20255 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38083 7183 6978 20255 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38084 6978 7263 20255 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38085 6764 6978 20256 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38086 6978 6711 20256 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38087 6711 6426 20256 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38088 6426 6764 20256 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38089 7024 7263 20257 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38090 7263 6978 20257 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38091 6978 6764 20257 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38092 6764 7024 20257 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38093 6612 6764 20258 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38094 6764 6426 20258 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38095 6426 6265 20258 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38096 6265 6612 20258 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38097 6844 7024 20259 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38098 7024 6764 20259 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38099 6764 6612 20259 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38100 6612 6844 20259 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38101 6760 7344 20260 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38102 7344 7123 20260 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38103 7123 6707 20260 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38104 6707 6760 20260 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38105 7225 7544 20261 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38106 7544 7344 20261 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38107 7344 6760 20261 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38108 6760 7225 20261 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38109 8084 8671 20262 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38110 8671 8361 20262 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38111 8361 7760 20262 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38112 7760 8084 20262 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38113 8303 8753 20263 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38114 8753 8671 20263 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38115 8671 8084 20263 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38116 8084 8303 20263 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38117 7344 8084 20264 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38118 8084 7760 20264 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38119 7760 7123 20264 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38120 7123 7344 20264 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38121 7544 8303 20265 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38122 8303 8084 20265 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38123 8084 7344 20265 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38124 7344 7544 20265 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38125 8361 7263 20266 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38126 7263 7024 20266 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38127 7024 7760 20266 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38128 7760 8361 20266 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38129 7760 7024 20267 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38130 7024 6844 20267 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38131 6844 7123 20267 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38132 7123 7760 20267 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38133 7123 6844 20268 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38134 6844 6642 20268 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38135 6642 6707 20268 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38136 6707 7123 20268 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38137 6033 5919 20269 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38138 5919 5710 20269 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38139 5710 5741 20269 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38140 5741 6033 20269 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38141 5890 5757 20270 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38142 5757 5919 20270 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38143 5919 6033 20270 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38144 6033 5890 20270 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38145 5905 5919 20271 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38146 5919 5757 20271 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38147 5757 5729 20271 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38148 5729 5905 20271 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38149 5718 5710 20272 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38150 5710 5919 20272 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38151 5919 5905 20272 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38152 5905 5718 20272 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38153 5905 5994 20273 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38154 5994 5830 20273 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38155 5830 5718 20273 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38156 5718 5905 20273 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38157 5729 5815 20274 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38158 5815 5994 20274 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38159 5994 5905 20274 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38160 5905 5729 20274 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38161 6587 5994 20275 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38162 5994 5815 20275 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38163 5815 6363 20275 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38164 6363 6587 20275 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38165 6324 5830 20276 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38166 5830 5994 20276 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38167 5994 6587 20276 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38168 6587 6324 20276 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38169 8776 9025 20277 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38170 9025 8531 20277 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38171 8531 8366 20277 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38172 8366 8776 20277 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38173 8979 9264 20278 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38174 9264 9025 20278 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38175 9025 8776 20278 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38176 8776 8979 20278 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38177 9025 9290 20279 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38178 9290 8865 20279 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38179 8865 8531 20279 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38180 8531 9025 20279 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38181 9264 9341 20280 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38182 9341 9290 20280 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38183 9290 9025 20280 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38184 9025 9264 20280 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38185 10049 10198 20281 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38186 10198 10210 20281 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38187 10210 10066 20281 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38188 10066 10049 20281 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38189 10070 10214 20282 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38190 10214 10198 20282 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38191 10198 10049 20282 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38192 10049 10070 20282 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38193 10377 10198 20283 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38194 10198 10214 20283 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38195 10214 10414 20283 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38196 10414 10377 20283 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38197 10408 10210 20284 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38198 10210 10198 20284 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38199 10198 10377 20284 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38200 10377 10408 20284 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38201 10377 10498 20285 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38202 10498 10560 20285 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38203 10560 10408 20285 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38204 10408 10377 20285 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38205 10414 10543 20286 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38206 10543 10498 20286 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38207 10498 10377 20286 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38208 10377 10414 20286 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38209 10337 10498 20287 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38210 10498 10543 20287 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38211 10543 10366 20287 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38212 10366 10337 20287 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38213 10370 10560 20288 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38214 10560 10498 20288 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38215 10498 10337 20288 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38216 10337 10370 20288 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38217 10133 10015 20289 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38218 10015 10067 20289 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38219 10067 10186 20289 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38220 10186 10133 20289 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38221 10122 10014 20290 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38222 10014 10015 20290 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38223 10015 10133 20290 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38224 10133 10122 20290 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38225 10133 10192 20291 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38226 10192 10169 20291 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38227 10169 10122 20291 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38228 10122 10133 20291 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38229 10186 10251 20292 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38230 10251 10192 20292 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38231 10192 10133 20292 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38232 10133 10186 20292 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38233 10124 10192 20293 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38234 10192 10251 20293 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38235 10251 10183 20293 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38236 10183 10124 20293 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38237 10109 10169 20294 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38238 10169 10192 20294 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38239 10192 10124 20294 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38240 10124 10109 20294 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38241 9776 9787 20295 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38242 9787 9813 20295 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38243 9813 9829 20295 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38244 9829 9776 20295 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38245 9829 9813 20296 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38246 9813 9808 20296 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38247 9808 9820 20296 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38248 9820 9829 20296 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38249 9820 9808 20297 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38250 9808 9809 20297 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38251 9809 9823 20297 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38252 9823 9820 20297 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38253 5523 5520 20298 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38254 5520 7318 20298 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38255 7318 7223 20298 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38256 7223 5523 20298 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38257 7223 7318 20299 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38258 7318 7405 20299 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38259 7405 7396 20299 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38260 7396 7223 20299 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38261 7396 7405 20300 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38262 7405 7487 20300 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38263 7487 7550 20300 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38264 7550 7396 20300 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38265 7550 7487 20301 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38266 7487 9342 20301 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38267 9342 9294 20301 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38268 9294 7550 20301 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38269 9294 9342 20302 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38270 9342 9453 20302 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38271 9453 9464 20302 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38272 9464 9294 20302 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38273 9464 9453 20303 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38274 9453 9490 20303 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38275 9490 9487 20303 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38276 9487 9464 20303 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38277 9487 9490 20304 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38278 9490 9529 20304 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38279 9529 9504 20304 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38280 9504 9487 20304 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38281 9504 9529 20305 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38282 9529 9784 20305 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38283 9784 9730 20305 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38284 9730 9504 20305 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38285 9730 9784 20306 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38286 9784 9850 20306 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38287 9850 9823 20306 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38288 9823 9730 20306 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38289 9776 9758 20307 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38290 9758 9783 20307 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38291 9783 9752 20307 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38292 9752 9776 20307 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38293 9752 9783 20308 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38294 9783 9770 20308 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38295 9770 9726 20308 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38296 9726 9752 20308 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38297 9726 9770 20309 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38298 9770 9773 20309 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38299 9773 9710 20309 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38300 9710 9726 20309 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38301 9710 9773 20310 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38302 9773 9539 20310 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38303 9539 9540 20310 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38304 9540 9710 20310 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38305 9507 9539 20311 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38306 9539 9348 20311 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38307 9348 9347 20311 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38308 9347 9507 20311 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38309 9347 9348 20312 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38310 9348 8987 20312 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38311 8987 9268 20312 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38312 9268 9347 20312 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38313 9268 8987 20313 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38314 8987 8942 20313 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38315 8942 9260 20313 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38316 9260 9268 20313 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38317 9260 8942 20314 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38318 8942 7337 20314 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38319 7337 7198 20314 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38320 7198 9260 20314 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38321 7198 7337 20315 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38322 7337 5521 20315 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38323 5521 5522 20315 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38324 5522 7198 20315 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38325 7280 7396 20316 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38326 7396 7550 20316 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38327 7550 7436 20316 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38328 7436 7280 20316 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38329 7092 7223 20317 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38330 7223 7396 20317 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38331 7396 7280 20317 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38332 7280 7092 20317 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38333 9694 9726 20318 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38334 9726 9710 20318 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38335 9710 9676 20318 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38336 9676 9694 20318 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38337 9707 9752 20319 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38338 9752 9726 20319 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38339 9726 9694 20319 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38340 9694 9707 20319 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38341 9540 9522 20320 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38342 9522 9496 20320 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38343 9496 9517 20320 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38344 9517 9540 20320 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38345 9522 9507 20321 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38346 9507 9473 20321 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38347 9473 9496 20321 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38348 9496 9522 20321 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38349 5526 5523 20322 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38350 5523 7223 20322 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38351 7223 7092 20322 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38352 7092 5526 20322 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38353 7436 7550 20323 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38354 7550 9294 20323 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38355 9294 9174 20323 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38356 9174 7436 20323 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38357 9721 9730 20324 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38358 9730 9823 20324 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38359 9823 9809 20324 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38360 9809 9721 20324 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38361 9829 9850 20325 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38362 9850 9780 20325 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38363 9780 9776 20325 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38364 9776 9829 20325 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38365 9787 9776 20326 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38366 9776 9752 20326 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38367 9752 9707 20326 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38368 9707 9787 20326 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38369 9676 9710 20327 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38370 9710 9540 20327 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38371 9540 9517 20327 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38372 9517 9676 20327 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38373 9473 9507 20328 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38374 9507 9347 20328 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38375 9347 9345 20328 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38376 9345 9473 20328 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38377 9768 9686 20329 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38378 9686 9597 20329 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38379 9597 9715 20329 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38380 9715 9768 20329 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38381 5517 5513 20330 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38382 5513 7220 20330 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38383 7220 7285 20330 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38384 7285 5517 20330 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38385 7285 7220 20331 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38386 7220 8692 20331 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38387 8692 9231 20331 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38388 9231 7285 20331 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38389 9231 8692 20332 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38390 8692 9442 20332 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38391 9442 9470 20332 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38392 9470 9231 20332 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38393 9508 9442 20333 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38394 9442 9579 20333 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38395 9579 9706 20333 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38396 9706 9508 20333 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38397 9706 9579 20334 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38398 9579 9686 20334 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38399 9686 9799 20334 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38400 9799 9706 20334 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38401 9715 9597 20335 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38402 9597 9402 20335 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38403 9402 9474 20335 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38404 9474 9715 20335 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38405 9474 9402 20336 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38406 9402 8617 20336 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38407 8617 9273 20336 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38408 9273 9474 20336 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38409 8660 8617 20337 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38410 8617 7232 20337 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38411 7232 7349 20337 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38412 7349 8660 20337 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38413 7349 7232 20338 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38414 7232 5514 20338 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38415 5514 5516 20338 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38416 5516 7349 20338 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38417 9508 9530 20339 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38418 9530 9491 20339 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38419 9491 9497 20339 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38420 9497 9508 20339 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38421 9454 9470 20340 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38422 9470 9497 20340 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38423 9497 9491 20340 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38424 9491 9454 20340 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38425 9768 9728 20341 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38426 9728 9702 20341 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38427 9702 9677 20341 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38428 9677 9768 20341 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38429 9750 9799 20342 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38430 9799 9677 20342 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38431 9677 9702 20342 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38432 9702 9750 20342 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38433 8878 9302 20343 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38434 9302 9273 20343 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38435 9273 8625 20343 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38436 8625 8878 20343 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38437 8625 8660 20344 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38438 8660 8715 20344 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38439 8715 8878 20344 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38440 8878 8625 20344 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38441 8987 8878 20345 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38442 8878 8715 20345 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38443 8715 8942 20345 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38444 8942 8987 20345 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38445 9348 9302 20346 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38446 9302 8878 20346 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38447 8878 8987 20346 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38448 8987 9348 20346 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38449 9725 9702 20347 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38450 9702 9728 20347 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38451 9728 9758 20347 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38452 9758 9725 20347 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38453 9780 9750 20348 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38454 9750 9702 20348 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38455 9702 9725 20348 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38456 9725 9780 20348 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38457 9490 9491 20349 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38458 9491 9530 20349 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38459 9530 9529 20349 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38460 9529 9490 20349 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38461 9453 9454 20350 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38462 9454 9491 20350 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38463 9491 9490 20350 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38464 9490 9453 20350 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38465 5518 5521 20351 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38466 5521 7337 20351 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38467 7337 7383 20351 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38468 7383 5518 20351 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38469 7383 7337 20352 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38470 7337 8942 20352 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38471 8942 8715 20352 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38472 8715 7383 20352 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38473 9302 9348 20353 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38474 9348 9539 20353 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38475 9539 9516 20353 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38476 9516 9302 20353 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38477 9516 9539 20354 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38478 9539 9773 20354 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38479 9773 9761 20354 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38480 9761 9516 20354 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38481 9761 9783 20355 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38482 9783 9758 20355 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38483 9758 9728 20355 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38484 9728 9761 20355 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38485 9750 9780 20356 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38486 9780 9850 20356 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38487 9850 9840 20356 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38488 9840 9750 20356 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38489 9840 9850 20357 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38490 9850 9784 20357 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38491 9784 9771 20357 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38492 9771 9840 20357 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38493 9771 9784 20358 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38494 9784 9529 20358 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38495 9529 9530 20358 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38496 9530 9771 20358 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38497 7290 7318 20359 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38498 7318 5520 20359 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38499 5520 5519 20359 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38500 5519 7290 20359 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38501 9325 9342 20360 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38502 9342 7487 20360 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38503 7487 7290 20360 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38504 7290 9325 20360 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38505 9454 9453 20361 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38506 9453 9342 20361 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38507 9342 9325 20361 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38508 9325 9454 20361 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38509 9728 9768 20362 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38510 9768 9715 20362 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38511 9715 9761 20362 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38512 9761 9728 20362 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38513 9474 9273 20363 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38514 9273 9302 20363 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38515 9302 9516 20363 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38516 9516 9474 20363 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38517 5516 5518 20364 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38518 5518 7383 20364 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38519 7383 7349 20364 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38520 7349 5516 20364 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38521 9799 9840 20365 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38522 9840 9771 20365 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38523 9771 9706 20365 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38524 9706 9799 20365 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38525 9771 9530 20366 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38526 9530 9508 20366 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38527 9508 9706 20366 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38528 9706 9771 20366 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38529 9231 9470 20367 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38530 9470 9454 20367 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38531 9454 9325 20367 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38532 9325 9231 20367 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38533 9474 9516 20368 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38534 9516 9761 20368 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38535 9761 9715 20368 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38536 9715 9474 20368 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38537 7285 7290 20369 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38538 7290 5519 20369 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38539 5519 5517 20369 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38540 5517 7285 20369 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38541 7349 7383 20370 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38542 7383 8715 20370 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38543 8715 8660 20370 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38544 8660 7349 20370 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38545 9231 9325 20371 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38546 9325 7290 20371 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38547 7290 7285 20371 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38548 7285 9231 20371 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38549 10095 9711 20372 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38550 9711 9818 20372 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38551 9818 10137 20372 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38552 10137 10095 20372 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38553 10266 10095 20373 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38554 10095 10137 20373 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38555 10137 10336 20373 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38556 10336 10266 20373 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38557 10186 10408 20374 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38558 10408 10560 20374 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38559 10560 10251 20374 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38560 10251 10186 20374 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38561 9967 10122 20375 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38562 10122 10169 20375 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38563 10169 10021 20375 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38564 10021 9967 20375 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38565 9619 9967 20376 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38566 9967 10021 20376 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38567 10021 9689 20376 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38568 9689 9619 20376 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38569 8979 9619 20377 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38570 9619 9689 20377 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38571 9689 9264 20377 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38572 9264 8979 20377 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38573 6449 8366 20378 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38574 8366 8531 20378 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38575 8531 6565 20378 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38576 6565 6449 20378 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38577 5729 6449 20379 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38578 6449 6565 20379 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38579 6565 5815 20379 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38580 5815 5729 20379 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38581 6704 6421 20380 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38582 6421 5718 20380 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38583 5718 5830 20380 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38584 5830 6704 20380 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38585 8685 6421 20381 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38586 6421 6704 20381 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38587 6704 9045 20381 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38588 9045 8685 20381 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38589 9711 8685 20382 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38590 8685 9045 20382 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38591 9045 9700 20382 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38592 9700 9711 20382 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38593 9372 9403 20383 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38594 9403 9277 20383 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38595 9277 8219 20383 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38596 8219 9372 20383 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38597 9558 9548 20384 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38598 9548 9403 20384 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38599 9403 9372 20384 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38600 9372 9558 20384 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38601 9652 9671 20385 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38602 9671 9548 20385 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38603 9548 9558 20385 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38604 9558 9652 20385 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38605 9824 9762 20386 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38606 9762 9671 20386 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38607 9671 9652 20386 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38608 9652 9824 20386 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38609 9870 9810 20387 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38610 9810 9762 20387 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38611 9762 9824 20387 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38612 9824 9870 20387 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38613 9819 9705 20388 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38614 9705 9810 20388 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38615 9810 9870 20388 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38616 9870 9819 20388 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38617 9569 9555 20389 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38618 9555 9705 20389 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38619 9705 9819 20389 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38620 9819 9569 20389 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38621 9383 9405 20390 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38622 9405 9555 20390 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38623 9555 9569 20390 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38624 9569 9383 20390 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38625 8424 9336 20391 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38626 9336 9405 20391 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38627 9405 9383 20391 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38628 9383 8424 20391 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38629 7908 9084 20392 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38630 9084 9336 20392 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38631 9336 8424 20392 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38632 8424 7908 20392 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38633 8219 9277 20393 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38634 9277 9084 20393 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38635 9084 7908 20393 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38636 7908 8219 20393 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38637 9378 9372 20394 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38638 9372 8219 20394 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38639 8219 8018 20394 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38640 8018 9378 20394 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38641 9609 9558 20395 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38642 9558 9372 20395 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38643 9372 9378 20395 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38644 9378 9609 20395 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38645 9845 9652 20396 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38646 9652 9558 20396 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38647 9558 9609 20396 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38648 9609 9845 20396 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38649 9900 9824 20397 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38650 9824 9652 20397 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38651 9652 9845 20397 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38652 9845 9900 20397 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38653 9927 9870 20398 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38654 9870 9824 20398 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38655 9824 9900 20398 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38656 9900 9927 20398 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38657 9873 9819 20399 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38658 9819 9870 20399 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38659 9870 9927 20399 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38660 9927 9873 20399 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38661 9640 9569 20400 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38662 9569 9819 20400 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38663 9819 9873 20400 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38664 9873 9640 20400 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38665 9370 9383 20401 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38666 9383 9569 20401 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38667 9569 9640 20401 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38668 9640 9370 20401 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38669 8131 8424 20402 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38670 8424 9383 20402 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38671 9383 9370 20402 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38672 9370 8131 20402 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38673 7632 7908 20403 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38674 7908 8424 20403 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38675 8424 8131 20403 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38676 8131 7632 20403 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38677 8018 8219 20404 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38678 8219 7908 20404 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38679 7908 7632 20404 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38680 7632 8018 20404 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38681 9392 9378 20405 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38682 9378 8018 20405 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38683 8018 8203 20405 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38684 8203 9392 20405 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38685 9629 9609 20406 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38686 9609 9378 20406 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38687 9378 9392 20406 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38688 9392 9629 20406 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38689 9864 9845 20407 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38690 9845 9609 20407 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38691 9609 9629 20407 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38692 9629 9864 20407 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38693 9960 9900 20408 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38694 9900 9845 20408 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38695 9845 9864 20408 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38696 9864 9960 20408 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38697 10002 9927 20409 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38698 9927 9900 20409 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38699 9900 9960 20409 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38700 9960 10002 20409 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38701 9903 9873 20410 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38702 9873 9927 20410 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38703 9927 10002 20410 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38704 10002 9903 20410 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38705 9649 9640 20411 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38706 9640 9873 20411 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38707 9873 9903 20411 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38708 9903 9649 20411 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38709 9364 9370 20412 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38710 9370 9640 20412 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38711 9640 9649 20412 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38712 9649 9364 20412 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38713 7950 8131 20413 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38714 8131 9370 20413 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38715 9370 9364 20413 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38716 9364 7950 20413 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38717 7044 7632 20414 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38718 7632 8131 20414 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38719 8131 7950 20414 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38720 7950 7044 20414 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38721 8203 8018 20415 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38722 8018 7632 20415 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38723 7632 7044 20415 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38724 7044 8203 20415 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38725 9394 9392 20416 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38726 9392 8203 20416 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38727 8203 8348 20416 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38728 8348 9394 20416 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38729 9573 9629 20417 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38730 9629 9392 20417 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38731 9392 9394 20417 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38732 9394 9573 20417 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38733 9798 9864 20418 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38734 9864 9629 20418 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38735 9629 9573 20418 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38736 9573 9798 20418 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38737 9913 9960 20419 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38738 9960 9864 20419 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38739 9864 9798 20419 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38740 9798 9913 20419 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38741 9961 10002 20420 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38742 10002 9960 20420 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38743 9960 9913 20420 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38744 9913 9961 20420 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38745 9842 9903 20421 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38746 9903 10002 20421 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38747 10002 9961 20421 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38748 9961 9842 20421 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38749 9572 9649 20422 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38750 9649 9903 20422 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38751 9903 9842 20422 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38752 9842 9572 20422 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38753 9335 9364 20423 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38754 9364 9649 20423 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38755 9649 9572 20423 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38756 9572 9335 20423 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38757 7850 7950 20424 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38758 7950 9364 20424 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38759 9364 9335 20424 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38760 9335 7850 20424 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38761 7677 7044 20425 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38762 7044 7950 20425 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38763 7950 7850 20425 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38764 7850 7677 20425 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38765 8348 8203 20426 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38766 8203 7044 20426 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38767 7044 7677 20426 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38768 7677 8348 20426 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38769 9341 9662 20427 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38770 9662 9627 20427 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38771 9627 9354 20427 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38772 9354 9341 20427 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38773 9662 9975 20428 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38774 9975 9892 20428 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38775 9892 9627 20428 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38776 9627 9662 20428 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38777 10109 10124 20429 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38778 10124 9989 20429 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38779 9989 9992 20429 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38780 9992 10109 20429 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38781 9989 10124 20430 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38782 10124 10183 20430 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38783 10183 10033 20430 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38784 10033 9989 20430 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38785 9785 9720 20431 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38786 9720 9659 20431 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38787 9659 9718 20431 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38788 9718 9785 20431 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38789 9580 9659 20432 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38790 9659 9720 20432 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38791 9720 9669 20432 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38792 9669 9580 20432 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38793 7114 7046 20433 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38794 7046 8492 20433 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38795 8492 8307 20433 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38796 8307 7114 20433 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38797 8492 7046 20434 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38798 7046 6848 20434 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38799 6848 7842 20434 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38800 7842 8492 20434 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38801 6363 6953 20435 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38802 6953 7661 20435 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38803 7661 7385 20435 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38804 7385 6363 20435 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38805 6953 8865 20436 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38806 8865 9354 20436 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38807 9354 7661 20436 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38808 7661 6953 20436 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38809 9264 9689 20437 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38810 9689 9662 20437 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38811 9662 9341 20437 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38812 9341 9264 20437 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38813 9689 10021 20438 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38814 10021 9975 20438 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38815 9975 9662 20438 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38816 9662 9689 20438 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38817 10021 10169 20439 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38818 10169 10109 20439 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38819 10109 9975 20439 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38820 9975 10021 20439 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38821 10251 10560 20440 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38822 10560 10370 20440 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38823 10370 10183 20440 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38824 10183 10251 20440 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38825 10336 10137 20441 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38826 10137 10101 20441 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38827 10101 10253 20441 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38828 10253 10336 20441 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38829 10137 9818 20442 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38830 9818 9785 20442 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38831 9785 10101 20442 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38832 10101 10137 20442 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38833 9045 9064 20443 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38834 9064 9669 20443 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38835 9669 9700 20443 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38836 9700 9045 20443 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38837 9045 6704 20444 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38838 6704 7114 20444 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38839 7114 9064 20444 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38840 9064 9045 20444 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38841 6704 5830 20445 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38842 5830 6324 20445 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38843 6324 6848 20445 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38844 6848 6704 20445 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38845 5815 6565 20446 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38846 6565 6953 20446 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38847 6953 6363 20446 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38848 6363 5815 20446 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38849 6565 8531 20447 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38850 8531 8865 20447 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38851 8865 6953 20447 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38852 6953 6565 20447 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38853 8320 9537 20448 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38854 9537 9619 20448 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38855 9619 8979 20448 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38856 8979 8320 20448 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38857 9537 9877 20449 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38858 9877 9967 20449 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38859 9967 9619 20449 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38860 9619 9537 20449 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38861 9877 10014 20450 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38862 10014 10122 20450 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38863 10122 9967 20450 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38864 9967 9877 20450 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38865 10067 10210 20451 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38866 10210 10408 20451 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38867 10408 10186 20451 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38868 10186 10067 20451 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38869 10140 9980 20452 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38870 9980 10095 20452 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38871 10095 10266 20452 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38872 10266 10140 20452 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38873 9980 9592 20453 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38874 9592 9711 20453 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38875 9711 10095 20453 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38876 10095 9980 20453 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38877 8804 8685 20454 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38878 8685 9711 20454 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38879 9711 9592 20454 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38880 9592 8804 20454 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38881 8804 6376 20455 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38882 6376 6421 20455 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38883 6421 8685 20455 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38884 8685 8804 20455 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38885 6376 5710 20456 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38886 5710 5718 20456 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38887 5718 6421 20456 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38888 6421 6376 20456 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38889 5757 6337 20457 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38890 6337 6449 20457 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38891 6449 5729 20457 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38892 5729 5757 20457 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38893 6337 8320 20458 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38894 8320 8366 20458 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38895 8366 6449 20458 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38896 6449 6337 20458 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38897 6657 6337 20459 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38898 6337 5757 20459 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38899 5757 5890 20459 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38900 5890 6657 20459 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38901 5491 6657 20460 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38902 6657 5890 20460 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38903 5890 5490 20460 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38904 5490 5491 20460 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38905 9915 10011 20461 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38906 10011 10066 20461 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38907 10066 9884 20461 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38908 9884 9915 20461 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38909 9932 10011 20462 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38910 10011 9915 20462 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38911 9915 9885 20462 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38912 9885 9932 20462 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38913 6376 8804 20463 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38914 8804 6931 20463 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38915 6931 6729 20463 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38916 6729 6376 20463 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38917 9475 9506 20464 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38918 9506 9137 20464 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38919 9137 9250 20464 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38920 9250 9475 20464 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38921 5494 5496 20465 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38922 5496 7341 20465 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38923 7341 7328 20465 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38924 7328 5494 20465 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38925 5498 7274 20466 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38926 7274 7341 20466 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38927 7341 5496 20466 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38928 5496 5498 20466 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38929 9297 9137 20467 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38930 9137 9506 20467 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38931 9506 9501 20467 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38932 9501 9297 20467 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38933 7328 7341 20468 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38934 7341 9137 20468 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38935 9137 9297 20468 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38936 9297 7328 20468 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38937 9594 9668 20469 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38938 9668 9811 20469 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38939 9811 9790 20469 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38940 9790 9594 20469 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38941 9576 9703 20470 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38942 9703 9800 20470 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38943 9800 9670 20470 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38944 9670 9576 20470 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38945 9510 9871 20471 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38946 9871 9882 20471 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38947 9882 9535 20471 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38948 9535 9510 20471 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38949 8845 8303 20472 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38950 8303 7544 20472 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38951 7544 8651 20472 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38952 8651 8845 20472 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38953 9410 9094 20473 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38954 9094 9304 20473 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38955 9304 9436 20473 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38956 9436 9410 20473 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38957 5495 5493 20474 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38958 5493 6265 20474 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38959 6265 6426 20474 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38960 6426 5495 20474 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38961 6938 7217 20475 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38962 7217 5501 20475 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38963 5501 5499 20475 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38964 5499 6938 20475 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38965 9363 7416 20476 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38966 7416 7250 20476 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38967 7250 9297 20476 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38968 9297 9363 20476 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38969 8320 7416 20477 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38970 7416 9363 20477 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38971 9363 9537 20477 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38972 9537 8320 20477 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38973 8651 9510 20478 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38974 9510 9535 20478 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38975 9535 8845 20478 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38976 8845 8651 20478 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38977 8320 6337 20479 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38978 6337 6657 20479 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38979 6657 7416 20479 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38980 7416 8320 20479 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38981 9363 9605 20480 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38982 9605 9877 20480 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38983 9877 9537 20480 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38984 9537 9363 20480 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38985 10003 10070 20481 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38986 10070 10011 20481 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38987 10011 9982 20481 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38988 9982 10003 20481 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38989 5596 6265 20482 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38990 6265 5493 20482 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38991 5493 5492 20482 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38992 5492 5596 20482 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38993 7229 8614 20483 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38994 8614 9250 20483 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38995 9250 7274 20483 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38996 7274 7229 20483 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38997 9418 9594 20484 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38998 9594 9790 20484 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 38999 9790 9546 20484 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39000 9546 9418 20484 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39001 9560 9535 20485 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39002 9535 9882 20485 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39003 9882 9852 20485 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39004 9852 9560 20485 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39005 9605 9501 20486 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39006 9501 9915 20486 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39007 9915 9884 20486 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39008 9884 9605 20486 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39009 9852 9703 20487 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39010 9703 9514 20487 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39011 9514 9560 20487 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39012 9560 9852 20487 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39013 9501 9559 20488 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39014 9559 9885 20488 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39015 9885 9915 20488 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39016 9915 9501 20488 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39017 9297 9501 20489 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39018 9501 9605 20489 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39019 9605 9363 20489 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39020 9363 9297 20489 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39021 5491 5494 20490 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39022 5494 7328 20490 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39023 7328 7250 20490 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39024 7250 5491 20490 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39025 9546 9790 20491 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39026 9790 9885 20491 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39027 9885 9559 20491 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39028 9559 9546 20491 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39029 7274 9250 20492 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39030 9250 9137 20492 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39031 9137 7341 20492 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39032 7341 7274 20492 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39033 7274 5498 20493 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39034 5498 5502 20493 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39035 5502 7229 20493 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39036 7229 7274 20493 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39037 8614 9382 20494 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39038 9382 9475 20494 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39039 9475 9250 20494 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39040 9250 8614 20494 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39041 9790 9811 20495 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39042 9811 9932 20495 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39043 9932 9885 20495 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39044 9885 9790 20495 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39045 9800 9703 20496 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39046 9703 9852 20496 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39047 9852 9939 20496 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39048 9939 9800 20496 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39049 9466 9514 20497 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39050 9514 9703 20497 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39051 9703 9576 20497 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39052 9576 9466 20497 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39053 5596 5492 20498 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39054 5492 5490 20498 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39055 5490 5741 20498 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39056 5741 5596 20498 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39057 5495 6426 20499 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39058 6426 6711 20499 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39059 6711 5497 20499 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39060 5497 5495 20499 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39061 9436 9304 20500 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39062 9304 9141 20500 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39063 9141 9560 20500 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39064 9560 9436 20500 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39065 7263 8361 20501 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39066 8361 8568 20501 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39067 8568 7476 20501 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39068 7476 7263 20501 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39069 5499 5497 20502 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39070 5497 6711 20502 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39071 6711 6938 20502 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39072 6938 5499 20502 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39073 8489 7217 20503 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39074 7217 7476 20503 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39075 7476 8568 20503 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39076 8568 8489 20503 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39077 5710 6376 20504 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39078 6376 5596 20504 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39079 5596 5741 20504 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39080 5741 5710 20504 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39081 7225 6931 20505 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39082 6931 8804 20505 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39083 8804 8651 20505 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39084 8651 7225 20505 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39085 8804 9592 20506 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39086 9592 9510 20506 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39087 9510 8651 20506 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39088 8651 8804 20506 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39089 9510 9592 20507 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39090 9592 9980 20507 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39091 9980 9871 20507 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39092 9871 9510 20507 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39093 10003 9871 20508 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39094 9871 9980 20508 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39095 9980 10140 20508 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39096 10140 10003 20508 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39097 10066 10210 20509 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39098 10210 10067 20509 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39099 10067 9884 20509 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39100 9884 10066 20509 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39101 9877 9605 20510 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39102 9605 9884 20510 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39103 9884 10014 20510 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39104 10014 9877 20510 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39105 9730 9682 20511 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39106 9682 9481 20511 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39107 9481 9504 20511 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39108 9504 9730 20511 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39109 9294 9464 20512 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39110 9464 9481 20512 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39111 9481 9174 20512 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39112 9174 9294 20512 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39113 5524 7093 20513 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39114 7093 7198 20513 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39115 7198 5522 20513 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39116 5522 5524 20513 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39117 7198 7093 20514 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39118 7093 9345 20514 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39119 9345 9260 20514 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39120 9260 7198 20514 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39121 1063 1163 20515 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39122 1163 1193 20515 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39123 1193 1106 20515 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39124 1106 1063 20515 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39125 1042 1174 20516 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39126 1174 1163 20516 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39127 1163 1063 20516 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39128 1063 1042 20516 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39129 792 679 20517 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39130 679 939 20517 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39131 939 1101 20517 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39132 1101 792 20517 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39133 709 502 20518 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39134 502 679 20518 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39135 679 792 20518 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39136 792 709 20518 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39137 779 631 20519 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39138 631 502 20519 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39139 502 709 20519 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39140 709 779 20519 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39141 905 831 20520 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39142 831 631 20520 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39143 631 779 20520 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39144 779 905 20520 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39145 1042 975 20521 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39146 975 831 20521 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39147 831 905 20521 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39148 905 1042 20521 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39149 3202 3659 20522 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39150 3659 4723 20522 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39151 4723 4196 20522 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39152 4196 3202 20522 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39153 3926 1980 20523 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39154 1980 1679 20523 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39155 1679 2736 20523 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39156 2736 3926 20523 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39157 1012 939 20524 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39158 939 675 20524 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39159 675 862 20524 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39160 862 1012 20524 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39161 936 1070 20525 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39162 1070 1153 20525 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39163 1153 1053 20525 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39164 1053 936 20525 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39165 1465 1679 20526 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39166 1679 1980 20526 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39167 1980 1376 20526 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39168 1376 1465 20526 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39169 1260 944 20527 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39170 944 1101 20527 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39171 1101 1327 20527 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39172 1327 1260 20527 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39173 1376 1345 20528 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39174 1345 1286 20528 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39175 1286 1325 20528 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39176 1325 1376 20528 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39177 1325 1286 20529 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39178 1286 1227 20529 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39179 1227 1260 20529 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39180 1260 1325 20529 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39181 2318 1951 20530 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39182 1951 1741 20530 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39183 1741 2098 20530 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39184 2098 2318 20530 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39185 1486 1499 20531 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39186 1499 1542 20531 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39187 1542 1512 20531 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39188 1512 1486 20531 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39189 1512 1542 20532 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39190 1542 1570 20532 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39191 1570 1539 20532 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39192 1539 1512 20532 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39193 1663 1570 20533 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39194 1570 1542 20533 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39195 1542 1647 20533 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39196 1647 1663 20533 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39197 1647 1542 20534 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39198 1542 1499 20534 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39199 1499 1627 20534 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39200 1627 1647 20534 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39201 1245 1375 20535 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39202 1375 1421 20535 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39203 1421 1259 20535 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39204 1259 1245 20535 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39205 1259 1421 20536 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39206 1421 1377 20536 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39207 1377 1234 20536 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39208 1234 1259 20536 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39209 2686 2481 20537 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39210 2481 2098 20537 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39211 2098 2374 20537 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39212 2374 2686 20537 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39213 2374 2098 20538 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39214 2098 1741 20538 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39215 1741 1904 20538 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39216 1904 2374 20538 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39217 1579 1531 20539 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39218 1531 1580 20539 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39219 1580 1625 20539 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39220 1625 1579 20539 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39221 1625 1580 20540 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39222 1580 1609 20540 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39223 1609 1635 20540 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39224 1635 1625 20540 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39225 2098 2481 20541 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39226 2481 2555 20541 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39227 2555 2318 20541 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39228 2318 2098 20541 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39229 4331 4107 20542 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39230 4107 3860 20542 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39231 3860 4064 20542 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39232 4064 4331 20542 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39233 4064 3860 20543 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39234 3860 3565 20543 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39235 3565 3783 20543 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39236 3783 4064 20543 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39237 4621 4331 20544 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39238 4331 4064 20544 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39239 4064 4277 20544 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39240 4277 4621 20544 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39241 4277 4064 20545 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39242 4064 3783 20545 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39243 3783 4014 20545 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39244 4014 4277 20545 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39245 4780 4621 20546 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39246 4621 4277 20546 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39247 4277 4426 20546 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39248 4426 4780 20546 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39249 4426 4277 20547 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39250 4277 4014 20547 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39251 4014 4200 20547 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39252 4200 4426 20547 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39253 4336 3918 20548 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39254 3918 3699 20548 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39255 3699 4281 20548 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39256 4281 4336 20548 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39257 4281 3699 20549 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39258 3699 3501 20549 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39259 3501 3819 20549 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39260 3819 4281 20549 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39261 3286 2686 20550 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39262 2686 2374 20550 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39263 2374 2950 20550 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39264 2950 3286 20550 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39265 2950 2374 20551 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39266 2374 2291 20551 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39267 2291 2740 20551 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39268 2740 2950 20551 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39269 3918 3286 20552 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39270 3286 2950 20552 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39271 2950 3699 20552 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39272 3699 3918 20552 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39273 3699 2950 20553 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39274 2950 2740 20553 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39275 2740 3501 20553 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39276 3501 3699 20553 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39277 3286 4014 20554 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39278 4014 3783 20554 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39279 3783 2686 20554 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39280 2686 3286 20554 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39281 3918 4200 20555 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39282 4200 4014 20555 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39283 4014 3286 20555 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39284 3286 3918 20555 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39285 4336 4398 20556 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39286 4398 4200 20556 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39287 4200 3918 20556 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39288 3918 4336 20556 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39289 5299 5324 20557 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39290 5324 5126 20557 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39291 5126 5006 20557 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39292 5006 5299 20557 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39293 5006 5126 20558 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39294 5126 5284 20558 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39295 5284 5156 20558 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39296 5156 5006 20558 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39297 5308 5284 20559 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39298 5284 5126 20559 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39299 5126 5139 20559 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39300 5139 5308 20559 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39301 5139 5126 20560 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39302 5126 5324 20560 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39303 5324 5317 20560 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39304 5317 5139 20560 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39305 5317 5215 20561 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39306 5215 5052 20561 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39307 5052 5139 20561 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39308 5139 5317 20561 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39309 5139 5052 20562 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39310 5052 5230 20562 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39311 5230 5308 20562 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39312 5308 5139 20562 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39313 4686 5230 20563 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39314 5230 5052 20563 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39315 5052 4453 20563 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39316 4453 4686 20563 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39317 4453 5052 20564 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39318 5052 5215 20564 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39319 5215 4723 20564 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39320 4723 4453 20564 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39321 2683 2514 20565 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39322 2514 2020 20565 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39323 2020 2267 20565 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39324 2267 2683 20565 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39325 2267 2020 20566 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39326 2020 1781 20566 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39327 1781 2066 20566 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39328 2066 2267 20566 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39329 2514 2179 20567 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39330 2179 1755 20567 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39331 1755 2020 20567 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39332 2020 2514 20567 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39333 2020 1755 20568 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39334 1755 1704 20568 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39335 1704 1781 20568 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39336 1781 2020 20568 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39337 979 835 20569 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39338 835 847 20569 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39339 847 996 20569 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39340 996 979 20569 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39341 996 847 20570 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39342 847 831 20570 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39343 831 975 20570 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39344 975 996 20570 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39345 631 831 20571 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39346 831 847 20571 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39347 847 668 20571 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39348 668 631 20571 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39349 668 847 20572 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39350 847 835 20572 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39351 835 637 20572 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39352 637 668 20572 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39353 637 485 20573 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39354 485 547 20573 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39355 547 668 20573 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39356 668 637 20573 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39357 668 547 20574 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39358 547 502 20574 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39359 502 631 20574 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39360 631 668 20574 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39361 679 502 20575 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39362 502 547 20575 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39363 547 708 20575 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39364 708 679 20575 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39365 708 547 20576 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39366 547 485 20576 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39367 485 675 20576 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39368 675 708 20576 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39369 859 978 20577 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39370 978 1030 20577 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39371 1030 912 20577 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39372 912 859 20577 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39373 912 1030 20578 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39374 1030 1031 20578 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39375 1031 923 20578 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39376 923 912 20578 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39377 923 876 20579 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39378 876 853 20579 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39379 853 912 20579 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39380 912 923 20579 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39381 912 853 20580 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39382 853 794 20580 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39383 794 859 20580 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39384 859 912 20580 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39385 862 794 20581 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39386 794 853 20581 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39387 853 921 20581 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39388 921 862 20581 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39389 921 853 20582 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39390 853 876 20582 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39391 876 936 20582 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39392 936 921 20582 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39393 1216 1232 20583 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39394 1232 1258 20583 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39395 1258 1269 20583 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39396 1269 1216 20583 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39397 1225 1237 20584 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39398 1237 1232 20584 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39399 1232 1216 20584 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39400 1216 1225 20584 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39401 1222 1236 20585 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39402 1236 1237 20585 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39403 1237 1225 20585 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39404 1225 1222 20585 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39405 3821 3724 20586 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39406 3724 5520 20586 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39407 5520 5523 20586 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39408 5523 3821 20586 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39409 3650 3640 20587 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39410 3640 3724 20587 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39411 3724 3821 20587 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39412 3821 3650 20587 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39413 3495 3554 20588 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39414 3554 3640 20588 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39415 3640 3650 20588 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39416 3650 3495 20588 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39417 1751 1703 20589 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39418 1703 3554 20589 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39419 3554 3495 20589 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39420 3495 1751 20589 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39421 1581 1592 20590 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39422 1592 1703 20590 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39423 1703 1751 20590 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39424 1751 1581 20590 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39425 1558 1555 20591 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39426 1555 1592 20591 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39427 1592 1581 20591 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39428 1581 1558 20591 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39429 1541 1516 20592 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39430 1516 1555 20592 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39431 1555 1558 20592 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39432 1558 1541 20592 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39433 1315 1261 20593 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39434 1261 1516 20593 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39435 1516 1541 20593 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39436 1541 1315 20593 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39437 1222 1195 20594 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39438 1195 1261 20594 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39439 1261 1315 20594 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39440 1315 1222 20594 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39441 1293 1262 20595 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39442 1262 1287 20595 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39443 1287 1269 20595 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39444 1269 1293 20595 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39445 1319 1275 20596 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39446 1275 1262 20596 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39447 1262 1293 20596 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39448 1293 1319 20596 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39449 1335 1272 20597 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39450 1272 1275 20597 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39451 1275 1319 20597 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39452 1319 1335 20597 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39453 1505 1506 20598 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39454 1506 1272 20598 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39455 1272 1335 20598 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39456 1335 1505 20598 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39457 1698 1697 20599 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39458 1697 1506 20599 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39459 1506 1538 20599 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39460 1538 1698 20599 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39461 1777 2058 20600 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39462 2058 1697 20600 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39463 1697 1698 20600 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39464 1698 1777 20600 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39465 1785 2102 20601 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39466 2102 2058 20601 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39467 2058 1777 20601 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39468 1777 1785 20601 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39469 3845 3706 20602 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39470 3706 2102 20602 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39471 2102 1785 20602 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39472 1785 3845 20602 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39473 5522 5521 20603 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39474 5521 3706 20603 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39475 3706 3845 20603 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39476 3845 5522 20603 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39477 3606 3495 20604 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39478 3495 3650 20604 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39479 3650 3764 20604 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39480 3764 3606 20604 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39481 3764 3650 20605 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39482 3650 3821 20605 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39483 3821 3948 20605 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39484 3948 3764 20605 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39485 1369 1335 20606 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39486 1335 1319 20606 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39487 1319 1351 20606 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39488 1351 1369 20606 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39489 1351 1319 20607 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39490 1319 1293 20607 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39491 1293 1338 20607 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39492 1338 1351 20607 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39493 1528 1549 20608 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39494 1549 1523 20608 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39495 1523 1505 20608 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39496 1505 1528 20608 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39497 1549 1572 20609 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39498 1572 1538 20609 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39499 1538 1523 20609 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39500 1523 1549 20609 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39501 3948 3821 20610 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39502 3821 5523 20610 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39503 5523 5526 20610 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39504 5526 3948 20610 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39505 1871 1751 20611 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39506 1751 3495 20611 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39507 3495 3606 20611 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39508 3606 1871 20611 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39509 1236 1222 20612 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39510 1222 1315 20612 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39511 1315 1324 20612 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39512 1324 1236 20612 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39513 1269 1265 20613 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39514 1265 1195 20613 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39515 1195 1216 20613 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39516 1216 1269 20613 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39517 1338 1293 20614 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39518 1293 1269 20614 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39519 1269 1258 20614 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39520 1258 1338 20614 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39521 1528 1505 20615 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39522 1505 1335 20615 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39523 1335 1369 20615 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39524 1369 1528 20615 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39525 1700 1698 20616 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39526 1698 1538 20616 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39527 1538 1572 20616 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39528 1572 1700 20616 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39529 1330 1451 20617 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39530 1451 1361 20617 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39531 1361 1277 20617 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39532 1277 1330 20617 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39533 3759 3827 20618 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39534 3827 5513 20618 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39535 5513 5517 20618 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39536 5517 3759 20618 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39537 1814 2354 20619 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39538 2354 3827 20619 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39539 3827 3759 20619 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39540 3759 1814 20619 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39541 1575 1605 20620 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39542 1605 2354 20620 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39543 2354 1814 20620 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39544 1814 1575 20620 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39545 1339 1469 20621 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39546 1469 1605 20621 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39547 1605 1537 20621 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39548 1537 1339 20621 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39549 1246 1361 20622 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39550 1361 1469 20622 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39551 1469 1339 20622 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39552 1339 1246 20622 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39553 1571 1645 20623 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39554 1645 1451 20623 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39555 1451 1330 20623 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39556 1330 1571 20623 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39557 1772 2429 20624 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39558 2429 1645 20624 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39559 1645 1571 20624 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39560 1571 1772 20624 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39561 3692 3814 20625 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39562 3814 2429 20625 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39563 2429 2385 20625 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39564 2385 3692 20625 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39565 5516 5514 20626 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39566 5514 3814 20626 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39567 3814 3692 20626 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39568 3692 5516 20626 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39569 1548 1554 20627 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39570 1554 1515 20627 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39571 1515 1537 20627 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39572 1537 1548 20627 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39573 1554 1548 20628 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39574 1548 1575 20628 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39575 1575 1591 20628 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39576 1591 1554 20628 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39577 1368 1343 20629 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39578 1343 1317 20629 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39579 1317 1277 20629 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39580 1277 1368 20629 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39581 1343 1368 20630 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39582 1368 1246 20630 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39583 1246 1295 20630 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39584 1295 1343 20630 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39585 2420 1772 20631 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39586 1772 1743 20631 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39587 1743 2167 20631 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39588 2167 2420 20631 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39589 2167 2333 20632 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39590 2333 2385 20632 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39591 2385 2420 20632 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39592 2420 2167 20632 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39593 2102 2333 20633 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39594 2333 2167 20633 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39595 2167 2058 20633 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39596 2058 2102 20633 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39597 2058 2167 20634 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39598 2167 1743 20634 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39599 1743 1697 20634 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39600 1697 2058 20634 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39601 1287 1317 20635 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39602 1317 1343 20635 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39603 1343 1320 20635 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39604 1320 1287 20635 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39605 1320 1343 20636 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39606 1343 1295 20636 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39607 1295 1265 20636 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39608 1265 1320 20636 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39609 1516 1515 20637 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39610 1515 1554 20637 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39611 1554 1555 20637 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39612 1555 1516 20637 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39613 1555 1554 20638 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39614 1554 1591 20638 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39615 1591 1592 20638 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39616 1592 1555 20638 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39617 3661 3706 20639 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39618 3706 5521 20639 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39619 5521 5518 20639 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39620 5518 3661 20639 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39621 2333 2102 20640 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39622 2102 3706 20640 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39623 3706 3661 20640 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39624 3661 2333 20640 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39625 1529 1506 20641 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39626 1506 1697 20641 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39627 1697 1743 20641 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39628 1743 1529 20641 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39629 1284 1272 20642 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39630 1272 1506 20642 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39631 1506 1529 20642 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39632 1529 1284 20642 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39633 1317 1287 20643 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39634 1287 1262 20643 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39635 1262 1284 20643 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39636 1284 1317 20643 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39637 1205 1195 20644 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39638 1195 1265 20644 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39639 1265 1295 20644 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39640 1295 1205 20644 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39641 1274 1261 20645 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39642 1261 1195 20645 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39643 1195 1205 20645 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39644 1205 1274 20645 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39645 1515 1516 20646 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39646 1516 1261 20646 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39647 1261 1274 20646 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39648 1274 1515 20646 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39649 5519 5520 20647 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39650 5520 3724 20647 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39651 3724 3752 20647 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39652 3752 5519 20647 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39653 3752 3554 20648 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39654 3554 1703 20648 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39655 1703 1720 20648 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39656 1720 3752 20648 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39657 1720 1703 20649 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39658 1703 1592 20649 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39659 1592 1591 20649 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39660 1591 1720 20649 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39661 1284 1330 20650 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39662 1330 1277 20650 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39663 1277 1317 20650 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39664 1317 1284 20650 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39665 1529 1743 20651 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39666 1743 1772 20651 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39667 1772 1571 20651 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39668 1571 1529 20651 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39669 3692 3661 20652 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39670 3661 5518 20652 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39671 5518 5516 20652 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39672 5516 3692 20652 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39673 1339 1274 20653 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39674 1274 1205 20653 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39675 1205 1246 20653 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39676 1246 1339 20653 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39677 1339 1537 20654 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39678 1537 1515 20654 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39679 1515 1274 20654 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39680 1274 1339 20654 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39681 1720 1591 20655 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39682 1591 1575 20655 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39683 1575 1814 20655 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39684 1814 1720 20655 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39685 1330 1284 20656 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39686 1284 1529 20656 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39687 1529 1571 20656 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39688 1571 1330 20656 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39689 5517 5519 20657 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39690 5519 3752 20657 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39691 3752 3759 20657 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39692 3759 5517 20657 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39693 2385 2333 20658 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39694 2333 3661 20658 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39695 3661 3692 20658 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39696 3692 2385 20658 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39697 3759 3752 20659 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39698 3752 1720 20659 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39699 1720 1814 20659 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39700 1814 3759 20659 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39701 908 1227 20660 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39702 1227 1334 20660 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39703 1334 950 20660 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39704 950 908 20660 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39705 709 908 20661 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39706 908 950 20661 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39707 950 779 20661 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39708 779 709 20661 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39709 794 485 20662 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39710 485 637 20662 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39711 637 859 20662 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39712 859 794 20662 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39713 1024 876 20663 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39714 876 923 20663 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39715 923 1078 20663 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39716 1078 1024 20663 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39717 1356 1024 20664 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39718 1024 1078 20664 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39719 1078 1426 20664 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39720 1426 1356 20664 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39721 1781 1356 20665 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39722 1356 1426 20665 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39723 1426 2066 20665 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39724 2066 1781 20665 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39725 4474 2514 20666 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39726 2514 2683 20666 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39727 2683 4597 20666 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39728 4597 4474 20666 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39729 5230 4474 20667 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39730 4474 4597 20667 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39731 4597 5308 20667 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39732 5308 5230 20667 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39733 5215 5317 20668 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39734 5317 4626 20668 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39735 4626 4338 20668 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39736 4338 5215 20668 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39737 2000 4338 20669 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39738 4338 4626 20669 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39739 4626 2360 20669 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39740 2360 2000 20669 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39741 1345 2000 20670 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39742 2000 2360 20670 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39743 2360 1334 20670 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39744 1334 1345 20670 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39745 2825 1768 20671 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39746 1768 1642 20671 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39747 1642 1673 20671 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39748 1673 2825 20671 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39749 1673 1642 20672 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39750 1642 1497 20672 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39751 1497 1487 20672 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39752 1487 1673 20672 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39753 1487 1497 20673 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39754 1497 1374 20673 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39755 1374 1393 20673 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39756 1393 1487 20673 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39757 1393 1374 20674 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39758 1374 1283 20674 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39759 1283 1221 20674 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39760 1221 1393 20674 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39761 1221 1283 20675 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39762 1283 1235 20675 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39763 1235 1175 20675 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39764 1175 1221 20675 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39765 1175 1235 20676 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39766 1235 1340 20676 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39767 1340 1226 20676 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39768 1226 1175 20676 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39769 1226 1340 20677 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39770 1340 1490 20677 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39771 1490 1476 20677 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39772 1476 1226 20677 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39773 1476 1490 20678 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39774 1490 1640 20678 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39775 1640 1662 20678 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39776 1662 1476 20678 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39777 1662 1640 20679 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39778 1640 1709 20679 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39779 1709 2623 20679 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39780 2623 1662 20679 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39781 2623 1709 20680 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39782 1709 1961 20680 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39783 1961 3129 20680 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39784 3129 2623 20680 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39785 3129 1961 20681 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39786 1961 1768 20681 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39787 1768 2825 20681 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39788 2825 3129 20681 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39789 3017 2825 20682 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39790 2825 1673 20682 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39791 1673 1667 20682 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39792 1667 3017 20682 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39793 1667 1673 20683 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39794 1673 1487 20683 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39795 1487 1436 20683 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39796 1436 1667 20683 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39797 1436 1487 20684 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39798 1487 1393 20684 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39799 1393 1200 20684 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39800 1200 1436 20684 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39801 1200 1393 20685 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39802 1393 1221 20685 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39803 1221 1145 20685 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39804 1145 1200 20685 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39805 1145 1221 20686 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39806 1221 1175 20686 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39807 1175 1118 20686 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39808 1118 1145 20686 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39809 1118 1175 20687 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39810 1175 1226 20687 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39811 1226 1172 20687 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39812 1172 1118 20687 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39813 1172 1226 20688 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39814 1226 1476 20688 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39815 1476 1405 20688 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39816 1405 1172 20688 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39817 1405 1476 20689 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39818 1476 1662 20689 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39819 1662 1675 20689 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39820 1675 1405 20689 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39821 1675 1662 20690 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39822 1662 2623 20690 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39823 2623 2911 20690 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39824 2911 1675 20690 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39825 2911 2623 20691 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39826 2623 3129 20691 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39827 3129 3413 20691 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39828 3413 2911 20691 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39829 3413 3129 20692 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39830 3129 2825 20692 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39831 2825 3017 20692 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39832 3017 3413 20692 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39833 2841 3017 20693 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39834 3017 1667 20693 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39835 1667 1653 20693 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39836 1653 2841 20693 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39837 1653 1667 20694 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39838 1667 1436 20694 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39839 1436 1416 20694 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39840 1416 1653 20694 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39841 1416 1436 20695 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39842 1436 1200 20695 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39843 1200 1181 20695 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39844 1181 1416 20695 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39845 1181 1200 20696 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39846 1200 1145 20696 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39847 1145 1085 20696 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39848 1085 1181 20696 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39849 1085 1145 20697 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39850 1145 1118 20697 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39851 1118 1043 20697 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39852 1043 1085 20697 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39853 1043 1118 20698 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39854 1118 1172 20698 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39855 1172 1142 20698 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39856 1142 1043 20698 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39857 1142 1172 20699 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39858 1172 1405 20699 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39859 1405 1396 20699 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39860 1396 1142 20699 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39861 1396 1405 20700 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39862 1405 1675 20700 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39863 1675 1681 20700 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39864 1681 1396 20700 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39865 1681 1675 20701 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39866 1675 2911 20701 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39867 2911 3090 20701 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39868 3090 1681 20701 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39869 3090 2911 20702 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39870 2911 3413 20702 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39871 3413 3995 20702 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39872 3995 3090 20702 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39873 3995 3413 20703 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39874 3413 3017 20703 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39875 3017 2841 20703 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39876 2841 3995 20703 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39877 2701 2841 20704 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39878 2841 1653 20704 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39879 1653 1651 20704 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39880 1651 2701 20704 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39881 1651 1653 20705 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39882 1653 1416 20705 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39883 1416 1472 20705 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39884 1472 1651 20705 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39885 1472 1416 20706 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39886 1416 1181 20706 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39887 1181 1247 20706 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39888 1247 1472 20706 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39889 1247 1181 20707 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39890 1181 1085 20707 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39891 1085 1132 20707 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39892 1132 1247 20707 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39893 1132 1085 20708 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39894 1085 1043 20708 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39895 1043 1084 20708 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39896 1084 1132 20708 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39897 1084 1043 20709 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39898 1043 1142 20709 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39899 1142 1203 20709 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39900 1203 1084 20709 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39901 1203 1142 20710 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39902 1142 1396 20710 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39903 1396 1473 20710 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39904 1473 1203 20710 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39905 1473 1396 20711 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39906 1396 1681 20711 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39907 1681 1710 20711 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39908 1710 1473 20711 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39909 1710 1681 20712 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39910 1681 3090 20712 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39911 3090 3195 20712 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39912 3195 1710 20712 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39913 3195 3090 20713 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39914 3090 3995 20713 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39915 3995 3364 20713 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39916 3364 3195 20713 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39917 3364 3995 20714 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39918 3995 2841 20714 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39919 2841 2701 20714 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39920 2701 3364 20714 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39921 1691 1418 20715 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39922 1418 1383 20715 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39923 1383 1704 20715 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39924 1704 1691 20715 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39925 1418 1153 20716 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39926 1153 1070 20716 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39927 1070 1383 20716 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39928 1383 1418 20716 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39929 1053 1056 20717 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39930 1056 921 20717 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39931 921 936 20717 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39932 936 1053 20717 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39933 1012 862 20718 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39934 862 921 20718 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39935 921 1056 20718 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39936 1056 1012 20718 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39937 1327 1386 20719 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39938 1386 1325 20719 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39939 1325 1260 20719 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39940 1260 1327 20719 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39941 1376 1325 20720 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39942 1325 1386 20720 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39943 1386 1465 20720 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39944 1465 1376 20720 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39945 2736 2553 20721 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39946 2553 3994 20721 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39947 3994 3926 20721 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39948 3926 2736 20721 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39949 3202 4196 20722 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39950 4196 3994 20722 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39951 3994 2553 20722 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39952 2553 3202 20722 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39953 3659 3381 20723 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39954 3381 4091 20723 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39955 4091 4686 20723 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39956 4686 3659 20723 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39957 3381 1691 20724 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39958 1691 2179 20724 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39959 2179 4091 20724 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39960 4091 3381 20724 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39961 1704 1383 20725 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39962 1383 1356 20725 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39963 1356 1781 20725 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39964 1781 1704 20725 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39965 1383 1070 20726 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39966 1070 1024 20726 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39967 1024 1356 20726 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39968 1356 1383 20726 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39969 1070 936 20727 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39970 936 876 20727 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39971 876 1024 20727 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39972 1024 1070 20727 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39973 862 675 20728 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39974 675 485 20728 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39975 485 794 20728 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39976 794 862 20728 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39977 792 944 20729 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39978 944 908 20729 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39979 908 709 20729 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39980 709 792 20729 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39981 944 1260 20730 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39982 1260 1227 20730 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39983 1227 908 20730 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39984 908 944 20730 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39985 1345 1376 20731 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39986 1376 1980 20731 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39987 1980 2000 20731 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39988 2000 1345 20731 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39989 1980 3926 20732 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39990 3926 4338 20732 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39991 4338 2000 20732 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39992 2000 1980 20732 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39993 4196 4723 20733 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39994 4723 5215 20733 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39995 5215 4338 20733 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39996 4338 4196 20733 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39997 4686 4091 20734 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39998 4091 4474 20734 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 39999 4474 5230 20734 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40000 5230 4686 20734 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40001 4091 2179 20735 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40002 2179 2514 20735 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40003 2514 4474 20735 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40004 4474 4091 20735 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40005 2066 1426 20736 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40006 1426 1508 20736 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40007 1508 2723 20736 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40008 2723 2066 20736 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40009 1426 1078 20737 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40010 1078 1168 20737 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40011 1168 1508 20737 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40012 1508 1426 20737 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40013 1078 923 20738 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40014 923 1031 20738 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40015 1031 1168 20738 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40016 1168 1078 20738 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40017 859 637 20739 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40018 637 835 20739 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40019 835 978 20739 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40020 978 859 20739 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40021 779 950 20740 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40022 950 1065 20740 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40023 1065 905 20740 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40024 905 779 20740 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40025 950 1334 20741 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40026 1334 1453 20741 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40027 1453 1065 20741 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40028 1065 950 20741 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40029 1453 1334 20742 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40030 1334 2360 20742 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40031 2360 2241 20742 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40032 2241 1453 20742 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40033 2360 4626 20743 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40034 4626 4670 20743 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40035 4670 2241 20743 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40036 2241 2360 20743 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40037 4626 5317 20744 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40038 5317 5324 20744 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40039 5324 4670 20744 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40040 4670 4626 20744 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40041 5308 4597 20745 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40042 4597 4712 20745 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40043 4712 5284 20745 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40044 5284 5308 20745 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40045 4597 2683 20746 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40046 2683 2723 20746 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40047 2723 4712 20746 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40048 4712 4597 20746 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40049 5156 5284 20747 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40050 5284 4712 20747 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40051 4712 4384 20747 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40052 4384 5156 20747 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40053 5490 5156 20748 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40054 5156 4384 20748 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40055 4384 5491 20748 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40056 5491 5490 20748 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40057 1161 979 20749 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40058 979 1034 20749 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40059 1034 1130 20749 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40060 1130 1161 20749 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40061 1160 1130 20750 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40062 1130 1034 20750 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40063 1034 1113 20750 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40064 1113 1160 20750 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40065 4315 4115 20751 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40066 4115 2241 20751 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40067 2241 4670 20751 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40068 4670 4315 20751 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40069 1795 1908 20752 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40070 1908 1539 20752 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40071 1539 1570 20752 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40072 1570 1795 20752 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40073 3715 3702 20753 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40074 3702 5496 20753 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40075 5496 5494 20753 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40076 5494 3715 20753 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40077 5496 3702 20754 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40078 3702 3772 20754 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40079 3772 5498 20754 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40080 5498 5496 20754 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40081 1544 1539 20755 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40082 1539 1908 20755 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40083 1908 1748 20755 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40084 1748 1544 20755 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40085 1748 1908 20756 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40086 1908 3702 20756 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40087 3702 3715 20756 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40088 3715 1748 20756 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40089 1255 1234 20757 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40090 1234 1377 20757 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40091 1377 1448 20757 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40092 1448 1255 20757 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40093 1375 1245 20758 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40094 1245 1342 20758 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40095 1342 1466 20758 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40096 1466 1375 20758 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40097 1510 1163 20759 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40098 1163 1174 20759 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40099 1174 1535 20759 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40100 1535 1510 20759 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40101 2393 3501 20760 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40102 3501 2740 20760 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40103 2740 2197 20760 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40104 2197 2393 20760 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40105 1609 1741 20761 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40106 1741 1951 20761 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40107 1951 1635 20761 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40108 1635 1609 20761 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40109 4621 4780 20762 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40110 4780 5493 20762 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40111 5493 5495 20762 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40112 5495 4621 20762 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40113 5499 5501 20763 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40114 5501 3824 20763 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40115 3824 4107 20763 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40116 4107 5499 20763 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40117 1748 3796 20764 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40118 3796 3629 20764 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40119 3629 1682 20764 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40120 1682 1748 20764 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40121 1508 1682 20765 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40122 1682 3629 20765 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40123 3629 2723 20765 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40124 2723 1508 20765 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40125 2197 1510 20766 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40126 1510 1535 20766 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40127 1535 2393 20766 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40128 2393 2197 20766 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40129 3629 4384 20767 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40130 4384 4712 20767 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40131 4712 2723 20767 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40132 2723 3629 20767 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40133 1508 1168 20768 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40134 1168 1440 20768 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40135 1440 1682 20768 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40136 1682 1508 20768 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40137 1063 1034 20769 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40138 1034 975 20769 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40139 975 1042 20769 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40140 1042 1063 20769 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40141 5492 5493 20770 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40142 5493 4780 20770 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40143 4780 5449 20770 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40144 5449 5492 20770 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40145 3772 1795 20771 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40146 1795 2426 20771 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40147 2426 3811 20771 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40148 3811 3772 20771 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40149 1499 1255 20772 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40150 1255 1448 20772 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40151 1448 1627 20772 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40152 1627 1499 20772 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40153 1193 1163 20773 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40154 1163 1510 20773 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40155 1510 1485 20773 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40156 1485 1193 20773 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40157 1161 1130 20774 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40158 1130 1544 20774 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40159 1544 1440 20774 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40160 1440 1161 20774 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40161 1485 1531 20775 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40162 1531 1342 20775 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40163 1342 1193 20775 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40164 1193 1485 20775 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40165 1130 1160 20776 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40166 1160 1486 20776 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40167 1486 1544 20776 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40168 1544 1130 20776 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40169 1682 1440 20777 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40170 1440 1544 20777 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40171 1544 1748 20777 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40172 1748 1682 20777 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40173 3796 3715 20778 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40174 3715 5494 20778 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40175 5494 5491 20778 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40176 5491 3796 20778 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40177 1486 1160 20779 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40178 1160 1255 20779 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40179 1255 1499 20779 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40180 1499 1486 20779 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40181 3702 1908 20780 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40182 1908 1795 20780 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40183 1795 3772 20780 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40184 3772 3702 20780 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40185 3811 5502 20781 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40186 5502 5498 20781 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40187 5498 3772 20781 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40188 3772 3811 20781 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40189 1795 1570 20782 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40190 1570 1663 20782 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40191 1663 2426 20782 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40192 2426 1795 20782 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40193 1160 1113 20783 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40194 1113 1234 20783 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40195 1234 1255 20783 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40196 1255 1160 20783 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40197 1106 1193 20784 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40198 1193 1342 20784 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40199 1342 1245 20784 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40200 1245 1106 20784 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40201 1466 1342 20785 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40202 1342 1531 20785 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40203 1531 1579 20785 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40204 1579 1466 20785 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40205 5299 5490 20786 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40206 5490 5492 20786 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40207 5492 5449 20786 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40208 5449 5299 20786 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40209 5497 4331 20787 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40210 4331 4621 20787 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40211 4621 5495 20787 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40212 5495 5497 20787 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40213 1485 1904 20788 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40214 1904 1741 20788 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40215 1741 1609 20788 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40216 1609 1485 20788 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40217 3565 2481 20789 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40218 2481 2686 20789 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40219 2686 3783 20789 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40220 3783 3565 20789 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40221 4107 4331 20790 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40222 4331 5497 20790 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40223 5497 5499 20790 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40224 5499 4107 20790 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40225 2481 3565 20791 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40226 3565 3824 20791 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40227 3824 2555 20791 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40228 2555 2481 20791 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40229 5299 5449 20792 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40230 5449 4670 20792 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40231 4670 5324 20792 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40232 5324 5299 20792 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40233 2393 2241 20793 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40234 2241 4115 20793 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40235 4115 3819 20793 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40236 3819 2393 20793 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40237 2393 1535 20794 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40238 1535 1453 20794 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40239 1453 2241 20794 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40240 2241 2393 20794 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40241 1174 1065 20795 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40242 1065 1453 20795 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40243 1453 1535 20795 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40244 1535 1174 20795 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40245 905 1065 20796 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40246 1065 1174 20796 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40247 1174 1042 20796 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40248 1042 905 20796 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40249 1161 978 20797 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40250 978 835 20797 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40251 835 979 20797 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40252 979 1161 20797 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40253 1031 1161 20798 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40254 1161 1440 20798 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40255 1440 1168 20798 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40256 1168 1031 20798 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40257 1541 1564 20799 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40258 1564 1363 20799 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40259 1363 1315 20799 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40260 1315 1541 20799 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40261 1871 1564 20800 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40262 1564 1581 20800 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40263 1581 1751 20800 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40264 1751 1871 20800 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40265 5522 3845 20801 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40266 3845 3947 20801 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40267 3947 5524 20801 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40268 5524 5522 20801 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40269 1785 1700 20802 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40270 1700 3947 20802 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40271 3947 3845 20802 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40272 3845 1785 20802 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8)} Face 40273 9352 9564 20803 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40274 9564 9458 20803 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40275 9458 9353 20803 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40276 9353 9352 20803 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40277 9665 9654 20804 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40278 9654 9876 20804 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40279 9876 9719 20804 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40280 9719 9665 20804 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40281 9826 9719 20805 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40282 9719 9876 20805 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40283 9876 9918 20805 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40284 9918 9826 20805 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40285 9964 9918 20806 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40286 9918 9876 20806 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40287 9876 10005 20806 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40288 10005 9964 20806 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40289 10037 10005 20807 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40290 10005 9876 20807 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40291 9876 10019 20807 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40292 10019 10037 20807 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40293 9994 10019 20808 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40294 10019 9876 20808 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40295 9876 9949 20808 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40296 9949 9994 20808 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40297 8019 8841 20809 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40298 8841 9498 20809 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40299 9498 9399 20809 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40300 9399 8019 20809 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40301 1470 1481 20810 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40302 1481 1692 20810 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40303 1692 1587 20810 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40304 1587 1470 20810 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40305 1040 1008 20811 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40306 1008 1096 20811 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40307 1096 1081 20811 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40308 1081 1040 20811 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40309 1127 1081 20812 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40310 1081 1096 20812 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40311 1096 1219 20812 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40312 1219 1127 20812 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40313 1326 1219 20813 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40314 1219 1096 20813 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40315 1096 1380 20813 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40316 1380 1326 20813 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40317 1391 1380 20814 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40318 1380 1096 20814 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40319 1096 1362 20814 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40320 1362 1391 20814 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40321 1282 1362 20815 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40322 1362 1096 20815 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40323 1096 1169 20815 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40324 1169 1282 20815 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40325 1654 2201 20816 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40326 2201 1646 20816 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40327 1646 1547 20816 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40328 1547 1654 20816 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40329 9345 7093 20817 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40330 7093 7111 20817 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40331 7111 9356 20817 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40332 9356 9345 20817 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40333 5524 5525 20818 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40334 5525 7111 20818 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40335 7111 7093 20818 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40336 7093 5524 20818 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40337 9244 9174 20819 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40338 9174 9481 20819 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40339 9481 9489 20819 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40340 9489 9244 20819 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40341 9489 9481 20820 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40342 9481 9682 20820 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40343 9682 9747 20820 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40344 9747 9489 20820 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40345 10053 10019 20821 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40346 10019 9994 20821 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40347 9994 10020 20821 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40348 10020 10053 20821 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40349 10071 10037 20822 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40350 10037 10019 20822 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40351 10019 10053 20822 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40352 10053 10071 20822 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40353 10036 10005 20823 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40354 10005 10037 20823 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40355 10037 10071 20823 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40356 10071 10036 20823 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40357 9985 9964 20824 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40358 9964 10005 20824 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40359 10005 10036 20824 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40360 10036 9985 20824 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40361 9940 9918 20825 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40362 9918 9964 20825 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40363 9964 9985 20825 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40364 9985 9940 20825 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40365 9851 9826 20826 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40366 9826 9918 20826 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40367 9918 9940 20826 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40368 9940 9851 20826 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40369 9743 9719 20827 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40370 9719 9826 20827 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40371 9826 9851 20827 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40372 9851 9743 20827 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40373 9697 9665 20828 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40374 9665 9719 20828 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40375 9719 9743 20828 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40376 9743 9697 20828 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40377 9687 9654 20829 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40378 9654 9665 20829 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40379 9665 9697 20829 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40380 9697 9687 20829 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40381 9708 9683 20830 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40382 9683 9654 20830 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40383 9654 9687 20830 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40384 9687 9708 20830 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40385 9792 9763 20831 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40386 9763 9683 20831 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40387 9683 9708 20831 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40388 9708 9792 20831 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40389 9907 9876 20832 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40390 9876 9763 20832 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40391 9763 9792 20832 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40392 9792 9907 20832 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40393 9971 9949 20833 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40394 9949 9876 20833 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40395 9876 9907 20833 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40396 9907 9971 20833 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40397 10020 9994 20834 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40398 9994 9949 20834 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40399 9949 9971 20834 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40400 9971 10020 20834 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40401 10068 10053 20835 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40402 10053 10020 20835 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40403 10020 10032 20835 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40404 10032 10068 20835 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40405 10087 10071 20836 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40406 10071 10053 20836 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40407 10053 10068 20836 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40408 10068 10087 20836 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40409 10048 10036 20837 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40410 10036 10071 20837 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40411 10071 10087 20837 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40412 10087 10048 20837 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40413 9995 9985 20838 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40414 9985 10036 20838 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40415 10036 10048 20838 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40416 10048 9995 20838 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40417 9945 9940 20839 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40418 9940 9985 20839 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40419 9985 9995 20839 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40420 9995 9945 20839 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40421 9853 9851 20840 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40422 9851 9940 20840 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40423 9940 9945 20840 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40424 9945 9853 20840 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40425 9736 9743 20841 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40426 9743 9851 20841 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40427 9851 9853 20841 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40428 9853 9736 20841 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40429 9691 9697 20842 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40430 9697 9743 20842 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40431 9743 9736 20842 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40432 9736 9691 20842 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40433 9673 9687 20843 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40434 9687 9697 20843 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40435 9697 9691 20843 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40436 9691 9673 20843 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40437 9704 9708 20844 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40438 9708 9687 20844 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40439 9687 9673 20844 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40440 9673 9704 20844 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40441 9791 9792 20845 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40442 9792 9708 20845 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40443 9708 9704 20845 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40444 9704 9791 20845 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40445 9912 9907 20846 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40446 9907 9792 20846 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40447 9792 9791 20846 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40448 9791 9912 20846 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40449 9976 9971 20847 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40450 9971 9907 20847 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40451 9907 9912 20847 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40452 9912 9976 20847 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40453 10032 10020 20848 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40454 10020 9971 20848 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40455 9971 9976 20848 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40456 9976 10032 20848 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40457 10058 10068 20849 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40458 10068 10032 20849 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40459 10032 10025 20849 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40460 10025 10058 20849 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40461 10081 10087 20850 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40462 10087 10068 20850 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40463 10068 10058 20850 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40464 10058 10081 20850 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40465 10041 10048 20851 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40466 10048 10087 20851 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40467 10087 10081 20851 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40468 10081 10041 20851 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40469 9984 9995 20852 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40470 9995 10048 20852 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40471 10048 10041 20852 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40472 10041 9984 20852 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40473 9937 9945 20853 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40474 9945 9995 20853 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40475 9995 9984 20853 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40476 9984 9937 20853 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40477 9835 9853 20854 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40478 9853 9945 20854 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40479 9945 9937 20854 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40480 9937 9835 20854 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40481 9717 9736 20855 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40482 9736 9853 20855 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40483 9853 9835 20855 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40484 9835 9717 20855 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40485 9661 9691 20856 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40486 9691 9736 20856 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40487 9736 9717 20856 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40488 9717 9661 20856 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40489 9645 9673 20857 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40490 9673 9691 20857 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40491 9691 9661 20857 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40492 9661 9645 20857 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40493 9674 9704 20858 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40494 9704 9673 20858 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40495 9673 9645 20858 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40496 9645 9674 20858 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40497 9767 9791 20859 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40498 9791 9704 20859 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40499 9704 9674 20859 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40500 9674 9767 20859 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40501 9897 9912 20860 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40502 9912 9791 20860 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40503 9791 9767 20860 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40504 9767 9897 20860 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40505 9968 9976 20861 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40506 9976 9912 20861 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40507 9912 9897 20861 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40508 9897 9968 20861 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40509 10025 10032 20862 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40510 10032 9976 20862 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40511 9976 9968 20862 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40512 9968 10025 20862 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40513 10045 10058 20863 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40514 10058 10025 20863 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40515 10025 10006 20863 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40516 10006 10045 20863 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40517 10060 10081 20864 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40518 10081 10058 20864 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40519 10058 10045 20864 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40520 10045 10060 20864 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40521 10023 10041 20865 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40522 10041 10081 20865 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40523 10081 10060 20865 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40524 10060 10023 20865 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40525 9970 9984 20866 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40526 9984 10041 20866 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40527 10041 10023 20866 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40528 10023 9970 20866 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40529 9921 9937 20867 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40530 9937 9984 20867 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40531 9984 9970 20867 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40532 9970 9921 20867 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40533 9804 9835 20868 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40534 9835 9937 20868 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40535 9937 9921 20868 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40536 9921 9804 20868 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40537 9672 9717 20869 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40538 9717 9835 20869 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40539 9835 9804 20869 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40540 9804 9672 20869 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40541 9620 9661 20870 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40542 9661 9717 20870 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40543 9717 9672 20870 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40544 9672 9620 20870 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40545 9599 9645 20871 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40546 9645 9661 20871 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40547 9661 9620 20871 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40548 9620 9599 20871 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40549 9635 9674 20872 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40550 9674 9645 20872 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40551 9645 9599 20872 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40552 9599 9635 20872 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40553 9722 9767 20873 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40554 9767 9674 20873 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40555 9674 9635 20873 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40556 9635 9722 20873 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40557 9869 9897 20874 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40558 9897 9767 20874 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40559 9767 9722 20874 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40560 9722 9869 20874 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40561 9953 9968 20875 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40562 9968 9897 20875 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40563 9897 9869 20875 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40564 9869 9953 20875 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40565 10006 10025 20876 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40566 10025 9968 20876 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40567 9968 9953 20876 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40568 9953 10006 20876 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40569 10022 10045 20877 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40570 10045 10006 20877 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40571 10006 9990 20877 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40572 9990 10022 20877 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40573 10042 10060 20878 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40574 10060 10045 20878 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40575 10045 10022 20878 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40576 10022 10042 20878 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40577 10004 10023 20879 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40578 10023 10060 20879 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40579 10060 10042 20879 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40580 10042 10004 20879 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40581 9955 9970 20880 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40582 9970 10023 20880 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40583 10023 10004 20880 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40584 10004 9955 20880 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40585 9902 9921 20881 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40586 9921 9970 20881 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40587 9970 9955 20881 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40588 9955 9902 20881 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40589 9781 9804 20882 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40590 9804 9921 20882 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40591 9921 9902 20882 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40592 9902 9781 20882 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40593 9648 9672 20883 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40594 9672 9804 20883 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40595 9804 9781 20883 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40596 9781 9648 20883 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40597 9575 9620 20884 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40598 9620 9672 20884 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40599 9672 9648 20884 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40600 9648 9575 20884 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40601 9564 9599 20885 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40602 9599 9620 20885 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40603 9620 9575 20885 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40604 9575 9564 20885 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40605 9607 9635 20886 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40606 9635 9599 20886 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40607 9599 9564 20886 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40608 9564 9607 20886 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40609 9698 9722 20887 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40610 9722 9635 20887 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40611 9635 9607 20887 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40612 9607 9698 20887 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40613 9848 9869 20888 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40614 9869 9722 20888 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40615 9722 9698 20888 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40616 9698 9848 20888 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40617 9941 9953 20889 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40618 9953 9869 20889 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40619 9869 9848 20889 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40620 9848 9941 20889 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40621 9990 10006 20890 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40622 10006 9953 20890 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40623 9953 9941 20890 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40624 9941 9990 20890 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40625 8737 9238 20891 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40626 9238 9253 20891 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40627 9253 8897 20891 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40628 8897 8737 20891 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40629 8897 9253 20892 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40630 9253 9339 20892 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40631 9339 8954 20892 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40632 8954 8897 20892 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40633 8954 9339 20893 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40634 9339 9373 20893 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40635 9373 9050 20893 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40636 9050 8954 20893 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40637 9050 9373 20894 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40638 9373 9391 20894 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40639 9391 8841 20894 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40640 8841 9050 20894 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40641 9547 9520 20895 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40642 9520 9457 20895 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40643 9457 9493 20895 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40644 9493 9547 20895 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40645 9570 9553 20896 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40646 9553 9520 20896 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40647 9520 9547 20896 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40648 9547 9570 20896 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40649 9429 9409 20897 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40650 9409 9553 20897 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40651 9553 9570 20897 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40652 9570 9429 20897 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40653 9253 9238 20898 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40654 9238 9409 20898 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40655 9409 9429 20898 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40656 9429 9253 20898 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40657 5549 5546 20899 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40658 5546 8737 20899 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40659 8737 8897 20899 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40660 8897 5549 20899 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40661 6971 6926 20900 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40662 6926 5533 20900 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40663 5533 5534 20900 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40664 5534 6971 20900 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40665 7705 7631 20901 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40666 7631 6926 20901 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40667 6926 6971 20901 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40668 6971 7705 20901 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40669 9332 9235 20902 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40670 9235 7631 20902 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40671 7631 7705 20902 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40672 7705 9332 20902 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40673 9427 9406 20903 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40674 9406 9293 20903 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40675 9293 9332 20903 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40676 9332 9427 20903 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40677 9493 9457 20904 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40678 9457 9406 20904 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40679 9406 9427 20904 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40680 9427 9493 20904 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40681 9476 9446 20905 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40682 9446 9357 20905 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40683 9357 9374 20905 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40684 9374 9476 20905 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40685 9374 9357 20906 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40686 9357 7794 20906 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40687 7794 7954 20906 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40688 7954 9374 20906 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40689 9631 9570 20907 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40690 9570 9547 20907 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40691 9547 9563 20907 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40692 9563 9631 20907 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40693 9563 9547 20908 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40694 9547 9493 20908 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40695 9493 9518 20908 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40696 9518 9563 20908 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40697 9518 9493 20909 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40698 9493 9427 20909 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40699 9427 9446 20909 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40700 9446 9518 20909 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40701 9446 9427 20910 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40702 9427 9332 20910 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40703 9332 9357 20910 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40704 9357 9446 20910 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40705 9357 9332 20911 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40706 9332 7705 20911 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40707 7705 7794 20911 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40708 7794 9357 20911 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40709 7794 7705 20912 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40710 7705 6971 20912 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40711 6971 7019 20912 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40712 7019 7794 20912 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40713 7019 6971 20913 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40714 6971 5534 20913 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40715 5534 5532 20913 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40716 5532 7019 20913 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40717 9603 9563 20914 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40718 9563 9518 20914 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40719 9518 9541 20914 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40720 9541 9603 20914 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40721 9541 9518 20915 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40722 9518 9446 20915 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40723 9446 9476 20915 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40724 9476 9541 20915 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40725 7954 7794 20916 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40726 7794 7019 20916 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40727 7019 7151 20916 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40728 7151 7954 20916 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40729 7151 7019 20917 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40730 7019 5532 20917 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40731 5532 5531 20917 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40732 5531 7151 20917 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40733 5548 5549 20918 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40734 5549 8897 20918 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40735 8897 8954 20918 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40736 8954 5548 20918 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40737 9339 9253 20919 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40738 9253 9429 20919 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40739 9429 9445 20919 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40740 9445 9339 20919 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40741 9445 9429 20920 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40742 9429 9570 20920 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40743 9570 9631 20920 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40744 9631 9445 20920 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40745 9603 9586 20921 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40746 9586 9688 20921 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40747 9688 9678 20921 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40748 9678 9603 20921 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40749 9678 9688 20922 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40750 9688 9505 20922 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40751 9505 9494 20922 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40752 9494 9678 20922 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40753 9494 9505 20923 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40754 9505 9391 20923 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40755 9391 9373 20923 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40756 9373 9494 20923 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40757 9050 8841 20924 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40758 8841 5544 20924 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40759 5544 5547 20924 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40760 5547 9050 20924 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40761 9541 9534 20925 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40762 9534 9586 20925 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40763 9586 9603 20925 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40764 9603 9541 20925 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40765 9678 9631 20926 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40766 9631 9563 20926 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40767 9563 9603 20926 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40768 9603 9678 20926 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40769 9494 9445 20927 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40770 9445 9631 20927 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40771 9631 9678 20927 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40772 9678 9494 20927 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40773 9373 9339 20928 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40774 9339 9445 20928 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40775 9445 9494 20928 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40776 9494 9373 20928 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40777 5547 5548 20929 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40778 5548 8954 20929 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40779 8954 9050 20929 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40780 9050 5547 20929 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40781 7247 7151 20930 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40782 7151 5531 20930 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40783 5531 5530 20930 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40784 5530 7247 20930 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40785 8024 7954 20931 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40786 7954 7151 20931 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40787 7151 7247 20931 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40788 7247 8024 20931 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40789 9375 9374 20932 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40790 9374 7954 20932 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40791 7954 8024 20932 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40792 8024 9375 20932 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40793 9471 9476 20933 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40794 9476 9374 20933 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40795 9374 9375 20933 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40796 9375 9471 20933 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40797 9534 9541 20934 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40798 9541 9476 20934 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40799 9476 9471 20934 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40800 9471 9534 20934 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40801 9841 10022 20935 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40802 10022 9990 20935 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40803 9990 9843 20935 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40804 9843 9841 20935 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40805 9843 9990 20936 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40806 9990 9941 20936 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40807 9941 9831 20936 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40808 9831 9843 20936 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40809 9831 9941 20937 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40810 9941 9848 20937 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40811 9848 9664 20937 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40812 9664 9831 20937 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40813 9664 9848 20938 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40814 9848 9698 20938 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40815 9698 9498 20938 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40816 9498 9664 20938 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40817 9498 9698 20939 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40818 9698 9607 20939 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40819 9607 9399 20939 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40820 9399 9498 20939 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40821 9534 9471 20940 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40822 9471 9557 20940 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40823 9557 9574 20940 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40824 9574 9534 20940 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40825 9831 9688 20941 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40826 9688 9586 20941 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40827 9586 9843 20941 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40828 9843 9831 20941 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40829 5528 5536 20942 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40830 5536 7410 20942 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40831 7410 7259 20942 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40832 7259 5528 20942 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40833 7259 7410 20943 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40834 7410 9352 20943 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40835 9352 9353 20943 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40836 9353 7259 20943 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40837 9458 9575 20944 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40838 9575 9648 20944 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40839 9648 9584 20944 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40840 9584 9458 20944 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40841 9584 9648 20945 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40842 9648 9781 20945 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40843 9781 9764 20945 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40844 9764 9584 20945 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40845 9368 9356 20946 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40846 9356 9353 20946 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40847 9353 9458 20946 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40848 9458 9368 20946 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40849 9399 9607 20947 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40850 9607 9564 20947 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40851 9564 9352 20947 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40852 9352 9399 20947 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40853 9195 9531 20948 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40854 9531 9536 20948 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40855 9536 9375 20948 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40856 9375 9195 20948 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40857 9557 9471 20949 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40858 9471 9375 20949 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40859 9375 9536 20949 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40860 9536 9557 20949 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40861 9859 9902 20950 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40862 9902 9926 20950 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40863 9926 9898 20950 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40864 9898 9859 20950 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40865 9898 9926 20951 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40866 9926 9821 20951 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40867 9821 9789 20951 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40868 9789 9898 20951 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40869 9789 9821 20952 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40870 9821 9527 20952 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40871 9527 9509 20952 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40872 9509 9789 20952 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40873 9509 9527 20953 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40874 9527 9026 20953 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40875 9026 8963 20953 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40876 8963 9509 20953 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40877 8963 9026 20954 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40878 9026 7247 20954 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40879 7247 7200 20954 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40880 7200 8963 20954 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40881 7200 7247 20955 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40882 7247 5530 20955 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40883 5530 5529 20955 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40884 5529 7200 20955 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40885 9902 9955 20956 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40886 9955 9931 20956 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40887 9931 9926 20956 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40888 9926 9902 20956 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40889 9926 9931 20957 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40890 9931 9834 20957 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40891 9834 9821 20957 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40892 9821 9926 20957 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40893 9821 9834 20958 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40894 9834 9531 20958 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40895 9531 9527 20958 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40896 9527 9821 20958 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40897 9527 9531 20959 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40898 9531 9195 20959 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40899 9195 9026 20959 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40900 9026 9527 20959 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40901 9026 9195 20960 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40902 9195 8024 20960 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40903 8024 7247 20960 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40904 7247 9026 20960 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40905 9707 9724 20961 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40906 9724 9815 20961 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40907 9815 9787 20961 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40908 9787 9707 20961 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40909 9683 9763 20962 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40910 9763 9876 20962 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40911 9876 9654 20962 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40912 9654 9683 20962 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40913 7092 7153 20963 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40914 7153 5527 20963 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40915 5527 5526 20963 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40916 5526 7092 20963 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40917 9509 9489 20964 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40918 9489 9747 20964 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40919 9747 9789 20964 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40920 9789 9509 20964 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40921 9536 9531 20965 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40922 9531 9834 20965 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40923 9834 9735 20965 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40924 9735 9536 20965 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40925 9709 9557 20966 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40926 9557 9536 20966 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40927 9536 9735 20966 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40928 9735 9709 20966 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40929 9955 10004 20967 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40930 10004 9875 20967 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40931 9875 9931 20967 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40932 9931 9955 20967 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40933 9764 9859 20968 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40934 9859 9815 20968 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40935 9815 9724 20968 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40936 9724 9764 20968 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40937 9849 9898 20969 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40938 9898 9789 20969 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40939 9789 9747 20969 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40940 9747 9849 20969 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40941 9489 9509 20970 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40942 9509 8963 20970 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40943 8963 9244 20970 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40944 9244 9489 20970 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40945 9584 9764 20971 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40946 9764 9724 20971 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40947 9724 9532 20971 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40948 9532 9584 20971 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40949 9345 9368 20972 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40950 9368 9532 20972 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40951 9532 9473 20972 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40952 9473 9345 20972 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40953 9517 9532 20973 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40954 9532 9724 20973 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40955 9724 9676 20973 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40956 9676 9517 20973 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40957 9353 9356 20974 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40958 9356 7111 20974 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40959 7111 7259 20974 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40960 7259 9353 20974 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40961 9664 9498 20975 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40962 9498 9391 20975 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40963 9391 9505 20975 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40964 9505 9664 20975 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40965 9875 10004 20976 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40966 10004 10042 20976 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40967 10042 9861 20976 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40968 9861 9875 20976 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40969 10042 10022 20977 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40970 10022 9841 20977 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40971 9841 9861 20977 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40972 9861 10042 20977 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40973 9815 9859 20978 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40974 9859 9898 20978 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40975 9898 9849 20978 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40976 9849 9815 20978 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40977 9809 9849 20979 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40978 9849 9747 20979 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40979 9747 9721 20979 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40980 9721 9809 20979 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40981 9174 9244 20980 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40982 9244 7153 20980 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40983 7153 7436 20980 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40984 7436 9174 20980 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40985 7200 5529 20981 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40986 5529 5527 20981 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40987 5527 7153 20981 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40988 7153 7200 20981 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40989 9244 8963 20982 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40990 8963 7200 20982 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40991 7200 7153 20982 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40992 7153 9244 20982 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40993 9834 9931 20983 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40994 9931 9875 20983 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40995 9875 9735 20983 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40996 9735 9834 20983 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40997 9787 9815 20984 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40998 9815 9849 20984 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 40999 9849 9813 20984 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41000 9813 9787 20984 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41001 9841 9843 20985 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41002 9843 9586 20985 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41003 9586 9574 20985 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41004 9574 9841 20985 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41005 9875 9861 20986 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41006 9861 9709 20986 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41007 9709 9735 20986 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41008 9735 9875 20986 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41009 9902 9859 20987 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41010 9859 9764 20987 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41011 9764 9781 20987 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41012 9781 9902 20987 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41013 9458 9584 20988 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41014 9584 9532 20988 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41015 9532 9368 20988 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41016 9368 9458 20988 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41017 7410 8019 20989 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41018 8019 9399 20989 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41019 9399 9352 20989 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41020 9352 7410 20989 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41021 9688 9831 20990 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41022 9831 9664 20990 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41023 9664 9505 20990 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41024 9505 9688 20990 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41025 8019 5539 20991 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41026 5539 5544 20991 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41027 5544 8841 20991 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41028 8841 8019 20991 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41029 7111 5525 20992 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41030 5525 5528 20992 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41031 5528 7259 20992 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41032 7259 7111 20992 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41033 8019 7410 20993 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41034 7410 5536 20993 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41035 5536 5539 20993 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41036 5539 8019 20993 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41037 1689 3928 20994 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41038 3928 3947 20994 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41039 3947 1700 20994 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41040 1700 1689 20994 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41041 3947 3928 20995 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41042 3928 5525 20995 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41043 5525 5524 20995 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41044 5524 3947 20995 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41045 1556 1564 20996 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41046 1564 1871 20996 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41047 1871 1801 20996 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41048 1801 1556 20996 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41049 1298 1363 20997 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41050 1363 1564 20997 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41051 1564 1556 20997 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41052 1556 1298 20997 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41053 1025 1051 20998 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41054 1051 1026 20998 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41055 1026 992 20998 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41056 992 1025 20998 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41057 992 1026 20999 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41058 1026 1008 20999 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41059 1008 974 20999 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41060 974 992 20999 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41061 974 1008 21000 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41062 1008 1040 21000 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41063 1040 1009 21000 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41064 1009 974 21000 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41065 1009 1040 21001 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41066 1040 1081 21001 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41067 1081 1060 21001 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41068 1060 1009 21001 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41069 1060 1081 21002 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41070 1081 1127 21002 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41071 1127 1105 21002 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41072 1105 1060 21002 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41073 1105 1127 21003 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41074 1127 1219 21003 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41075 1219 1194 21003 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41076 1194 1105 21003 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41077 1194 1219 21004 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41078 1219 1326 21004 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41079 1326 1302 21004 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41080 1302 1194 21004 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41081 1302 1326 21005 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41082 1326 1380 21005 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41083 1380 1348 21005 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41084 1348 1302 21005 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41085 1348 1380 21006 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41086 1380 1391 21006 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41087 1391 1358 21006 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41088 1358 1348 21006 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41089 1358 1391 21007 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41090 1391 1362 21007 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41091 1362 1337 21007 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41092 1337 1358 21007 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41093 1337 1362 21008 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41094 1362 1282 21008 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41095 1282 1253 21008 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41096 1253 1337 21008 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41097 1253 1282 21009 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41098 1282 1169 21009 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41099 1169 1138 21009 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41100 1138 1253 21009 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41101 1138 1169 21010 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41102 1169 1096 21010 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41103 1096 1074 21010 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41104 1074 1138 21010 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41105 1074 1096 21011 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41106 1096 1051 21011 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41107 1051 1025 21011 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41108 1025 1074 21011 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41109 1013 1025 21012 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41110 1025 992 21012 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41111 992 977 21012 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41112 977 1013 21012 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41113 977 992 21013 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41114 992 974 21013 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41115 974 958 21013 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41116 958 977 21013 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41117 958 974 21014 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41118 974 1009 21014 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41119 1009 997 21014 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41120 997 958 21014 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41121 997 1009 21015 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41122 1009 1060 21015 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41123 1060 1050 21015 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41124 1050 997 21015 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41125 1050 1060 21016 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41126 1060 1105 21016 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41127 1105 1100 21016 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41128 1100 1050 21016 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41129 1100 1105 21017 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41130 1105 1194 21017 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41131 1194 1192 21017 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41132 1192 1100 21017 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41133 1192 1194 21018 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41134 1194 1302 21018 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41135 1302 1309 21018 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41136 1309 1192 21018 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41137 1309 1302 21019 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41138 1302 1348 21019 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41139 1348 1354 21019 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41140 1354 1309 21019 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41141 1354 1348 21020 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41142 1348 1358 21020 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41143 1358 1372 21020 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41144 1372 1354 21020 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41145 1372 1358 21021 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41146 1358 1337 21021 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41147 1337 1341 21021 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41148 1341 1372 21021 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41149 1341 1337 21022 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41150 1337 1253 21022 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41151 1253 1254 21022 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41152 1254 1341 21022 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41153 1254 1253 21023 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41154 1253 1138 21023 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41155 1138 1133 21023 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41156 1133 1254 21023 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41157 1133 1138 21024 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41158 1138 1074 21024 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41159 1074 1069 21024 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41160 1069 1133 21024 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41161 1069 1074 21025 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41162 1074 1025 21025 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41163 1025 1013 21025 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41164 1013 1069 21025 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41165 1020 1013 21026 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41166 1013 977 21026 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41167 977 987 21026 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41168 987 1020 21026 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41169 987 977 21027 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41170 977 958 21027 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41171 958 964 21027 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41172 964 987 21027 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41173 964 958 21028 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41174 958 997 21028 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41175 997 1004 21028 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41176 1004 964 21028 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41177 1004 997 21029 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41178 997 1050 21029 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41179 1050 1061 21029 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41180 1061 1004 21029 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41181 1061 1050 21030 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41182 1050 1100 21030 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41183 1100 1108 21030 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41184 1108 1061 21030 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41185 1108 1100 21031 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41186 1100 1192 21031 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41187 1192 1210 21031 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41188 1210 1108 21031 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41189 1210 1192 21032 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41190 1192 1309 21032 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41191 1309 1328 21032 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41192 1328 1210 21032 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41193 1328 1309 21033 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41194 1309 1354 21033 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41195 1354 1384 21033 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41196 1384 1328 21033 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41197 1384 1354 21034 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41198 1354 1372 21034 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41199 1372 1400 21034 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41200 1400 1384 21034 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41201 1400 1372 21035 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41202 1372 1341 21035 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41203 1341 1371 21035 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41204 1371 1400 21035 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41205 1371 1341 21036 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41206 1341 1254 21036 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41207 1254 1278 21036 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41208 1278 1371 21036 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41209 1278 1254 21037 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41210 1254 1133 21037 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41211 1133 1148 21037 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41212 1148 1278 21037 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41213 1148 1133 21038 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41214 1133 1069 21038 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41215 1069 1077 21038 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41216 1077 1148 21038 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41217 1077 1069 21039 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41218 1069 1013 21039 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41219 1013 1020 21039 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41220 1020 1077 21039 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41221 1039 1020 21040 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41222 1020 987 21040 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41223 987 1000 21040 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41224 1000 1039 21040 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41225 1000 987 21041 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41226 987 964 21041 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41227 964 985 21041 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41228 985 1000 21041 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41229 985 964 21042 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41230 964 1004 21042 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41231 1004 1022 21042 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41232 1022 985 21042 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41233 1022 1004 21043 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41234 1004 1061 21043 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41235 1061 1075 21043 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41236 1075 1022 21043 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41237 1075 1061 21044 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41238 1061 1108 21044 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41239 1108 1124 21044 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41240 1124 1075 21044 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41241 1124 1108 21045 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41242 1108 1210 21045 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41243 1210 1241 21045 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41244 1241 1124 21045 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41245 1241 1210 21046 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41246 1210 1328 21046 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41247 1328 1373 21046 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41248 1373 1241 21046 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41249 1373 1328 21047 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41250 1328 1384 21047 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41251 1384 1425 21047 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41252 1425 1373 21047 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41253 1425 1384 21048 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41254 1384 1400 21048 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41255 1400 1446 21048 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41256 1446 1425 21048 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41257 1446 1400 21049 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41258 1400 1371 21049 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41259 1371 1410 21049 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41260 1410 1446 21049 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41261 1410 1371 21050 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41262 1371 1278 21050 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41263 1278 1323 21050 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41264 1323 1410 21050 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41265 1323 1278 21051 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41266 1278 1148 21051 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41267 1148 1176 21051 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41268 1176 1323 21051 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41269 1176 1148 21052 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41270 1148 1077 21052 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41271 1077 1092 21052 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41272 1092 1176 21052 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41273 1092 1077 21053 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41274 1077 1020 21053 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41275 1020 1039 21053 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41276 1039 1092 21053 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41277 1055 1039 21054 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41278 1039 1000 21054 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41279 1000 1023 21054 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41280 1023 1055 21054 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41281 1023 1000 21055 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41282 1000 985 21055 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41283 985 1003 21055 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41284 1003 1023 21055 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41285 1003 985 21056 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41286 985 1022 21056 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41287 1022 1041 21056 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41288 1041 1003 21056 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41289 1041 1022 21057 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41290 1022 1075 21057 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41291 1075 1090 21057 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41292 1090 1041 21057 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41293 1090 1075 21058 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41294 1075 1124 21058 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41295 1124 1143 21058 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41296 1143 1090 21058 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41297 1143 1124 21059 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41298 1124 1241 21059 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41299 1241 1264 21059 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41300 1264 1143 21059 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41301 1264 1241 21060 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41302 1241 1373 21060 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41303 1373 1397 21060 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41304 1397 1264 21060 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41305 1397 1373 21061 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41306 1373 1425 21061 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41307 1425 1470 21061 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41308 1470 1397 21061 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41309 1470 1425 21062 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41310 1425 1446 21062 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41311 1446 1481 21062 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41312 1481 1470 21062 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41313 1481 1446 21063 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41314 1446 1410 21063 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41315 1410 1438 21063 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41316 1438 1481 21063 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41317 1438 1410 21064 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41318 1410 1323 21064 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41319 1323 1347 21064 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41320 1347 1438 21064 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41321 1347 1323 21065 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41322 1323 1176 21065 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41323 1176 1197 21065 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41324 1197 1347 21065 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41325 1197 1176 21066 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41326 1176 1092 21066 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41327 1092 1104 21066 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41328 1104 1197 21066 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41329 1104 1092 21067 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41330 1092 1039 21067 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41331 1039 1055 21067 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41332 1055 1104 21067 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41333 2147 1792 21068 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41334 1792 1807 21068 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41335 1807 2309 21068 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41336 2309 2147 21068 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41337 2091 1706 21069 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41338 1706 1792 21069 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41339 1792 2147 21069 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41340 2147 2091 21069 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41341 1995 1672 21070 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41342 1672 1706 21070 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41343 1706 2091 21070 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41344 2091 1995 21070 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41345 2201 1654 21071 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41346 1654 1672 21071 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41347 1672 1995 21071 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41348 1995 2201 21071 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41349 1552 1588 21072 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41350 1588 1525 21072 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41351 1525 1498 21072 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41352 1498 1552 21072 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41353 1498 1525 21073 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41354 1525 1492 21073 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41355 1492 1475 21073 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41356 1475 1498 21073 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41357 1475 1492 21074 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41358 1492 1636 21074 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41359 1636 1616 21074 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41360 1616 1475 21074 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41361 1616 1636 21075 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41362 1636 1807 21075 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41363 1807 1792 21075 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41364 1792 1616 21075 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41365 2147 2309 21076 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41366 2309 5546 21076 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41367 5546 5549 21076 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41368 5549 2147 21076 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41369 5534 5533 21077 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41370 5533 4121 21077 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41371 4121 4071 21077 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41372 4071 5534 21077 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41373 4071 4121 21078 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41374 4121 3414 21078 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41375 3414 3340 21078 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41376 3340 4071 21078 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41377 3340 3414 21079 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41378 3414 1810 21079 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41379 1810 1713 21079 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41380 1713 3340 21079 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41381 1713 1752 21080 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41382 1752 1639 21080 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41383 1639 1618 21080 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41384 1618 1713 21080 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41385 1618 1639 21081 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41386 1639 1588 21081 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41387 1588 1552 21081 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41388 1552 1618 21081 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41389 1671 1688 21082 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41390 1688 1599 21082 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41391 1599 1569 21082 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41392 1569 1671 21082 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41393 3085 3250 21083 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41394 3250 1688 21083 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41395 1688 1671 21083 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41396 1671 3085 21083 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41397 1482 1498 21084 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41398 1498 1475 21084 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41399 1475 1414 21084 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41400 1414 1482 21084 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41401 1527 1552 21085 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41402 1552 1498 21085 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41403 1498 1482 21085 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41404 1482 1527 21085 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41405 1599 1618 21086 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41406 1618 1552 21086 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41407 1552 1527 21086 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41408 1527 1599 21086 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41409 1688 1713 21087 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41410 1713 1618 21087 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41411 1618 1599 21087 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41412 1599 1688 21087 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41413 3250 3340 21088 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41414 3340 1713 21088 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41415 1713 1688 21088 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41416 1688 3250 21088 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41417 4019 4071 21089 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41418 4071 3340 21089 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41419 3340 3250 21089 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41420 3250 4019 21089 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41421 5532 5534 21090 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41422 5534 4071 21090 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41423 4071 4019 21090 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41424 4019 5532 21090 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41425 1504 1527 21091 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41426 1527 1482 21091 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41427 1482 1442 21091 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41428 1442 1504 21091 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41429 1569 1599 21092 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41430 1599 1527 21092 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41431 1527 1504 21092 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41432 1504 1569 21092 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41433 3892 4019 21093 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41434 4019 3250 21093 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41435 3250 3085 21093 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41436 3085 3892 21093 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41437 5531 5532 21094 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41438 5532 4019 21094 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41439 4019 3892 21094 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41440 3892 5531 21094 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41441 2091 2147 21095 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41442 2147 5549 21095 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41443 5549 5548 21095 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41444 5548 2091 21095 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41445 1600 1616 21096 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41446 1616 1792 21096 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41447 1792 1706 21096 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41448 1706 1600 21096 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41449 1414 1475 21097 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41450 1475 1616 21097 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41451 1616 1600 21097 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41452 1600 1414 21097 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41453 1367 1357 21098 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41454 1357 1459 21098 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41455 1459 1442 21098 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41456 1442 1367 21098 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41457 1551 1540 21099 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41458 1540 1357 21099 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41459 1357 1367 21099 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41460 1367 1551 21099 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41461 1672 1654 21100 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41462 1654 1540 21100 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41463 1540 1551 21100 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41464 1551 1672 21100 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41465 5547 5544 21101 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41466 5544 2201 21101 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41467 2201 1995 21101 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41468 1995 5547 21101 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41469 1442 1459 21102 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41470 1459 1511 21102 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41471 1511 1504 21102 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41472 1504 1442 21102 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41473 1442 1482 21103 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41474 1482 1414 21103 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41475 1414 1367 21103 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41476 1367 1442 21103 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41477 1367 1414 21104 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41478 1414 1600 21104 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41479 1600 1551 21104 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41480 1551 1367 21104 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41481 1551 1600 21105 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41482 1600 1706 21105 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41483 1706 1672 21105 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41484 1672 1551 21105 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41485 1995 2091 21106 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41486 2091 5548 21106 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41487 5548 5547 21106 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41488 5547 1995 21106 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41489 5530 5531 21107 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41490 5531 3892 21107 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41491 3892 3798 21107 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41492 3798 5530 21107 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41493 3798 3892 21108 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41494 3892 3085 21108 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41495 3085 3012 21108 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41496 3012 3798 21108 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41497 3012 3085 21109 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41498 3085 1671 21109 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41499 1671 1670 21109 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41500 1670 3012 21109 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41501 1670 1671 21110 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41502 1671 1569 21110 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41503 1569 1574 21110 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41504 1574 1670 21110 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41505 1574 1569 21111 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41506 1569 1504 21111 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41507 1504 1511 21111 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41508 1511 1574 21111 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41509 1202 1055 21112 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41510 1055 1023 21112 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41511 1023 1204 21112 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41512 1204 1202 21112 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41513 1214 1104 21113 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41514 1104 1055 21113 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41515 1055 1202 21113 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41516 1202 1214 21113 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41517 1381 1197 21114 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41518 1197 1104 21114 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41519 1104 1214 21114 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41520 1214 1381 21114 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41521 1547 1347 21115 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41522 1347 1197 21115 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41523 1197 1381 21115 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41524 1381 1547 21115 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41525 1646 1438 21116 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41526 1438 1347 21116 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41527 1347 1547 21116 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41528 1547 1646 21116 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41529 1471 1488 21117 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41530 1488 1574 21117 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41531 1574 1511 21117 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41532 1511 1471 21117 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41533 1202 1459 21118 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41534 1459 1357 21118 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41535 1357 1214 21118 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41536 1214 1202 21118 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41537 3788 3635 21119 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41538 3635 5536 21119 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41539 5536 5528 21119 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41540 5528 3788 21119 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41541 1692 1693 21120 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41542 1693 3635 21120 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41543 3635 3788 21120 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41544 3788 1692 21120 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41545 1461 1397 21121 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41546 1397 1470 21121 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41547 1470 1587 21121 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41548 1587 1461 21121 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41549 1281 1264 21122 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41550 1264 1397 21122 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41551 1397 1461 21122 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41552 1461 1281 21122 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41553 1587 1692 21123 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41554 1692 1689 21123 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41555 1689 1677 21123 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41556 1677 1587 21123 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41557 1693 1481 21124 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41558 1481 1438 21124 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41559 1438 1646 21124 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41560 1646 1693 21124 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41561 1670 1509 21125 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41562 1509 1514 21125 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41563 1514 1850 21125 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41564 1850 1670 21125 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41565 1509 1670 21126 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41566 1670 1574 21126 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41567 1574 1488 21126 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41568 1488 1509 21126 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41569 1147 1119 21127 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41570 1119 1143 21127 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41571 1143 1186 21127 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41572 1186 1147 21127 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41573 1256 1224 21128 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41574 1224 1119 21128 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41575 1119 1147 21128 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41576 1147 1256 21128 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41577 1536 1518 21129 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41578 1518 1224 21129 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41579 1224 1256 21129 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41580 1256 1536 21129 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41581 2081 2019 21130 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41582 2019 1518 21130 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41583 1518 1536 21130 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41584 1536 2081 21130 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41585 3843 3798 21131 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41586 3798 2019 21131 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41587 2019 2081 21131 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41588 2081 3843 21131 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41589 5529 5530 21132 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41590 5530 3798 21132 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41591 3798 3843 21132 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41592 3843 5529 21132 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41593 1119 1114 21133 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41594 1114 1090 21133 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41595 1090 1143 21133 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41596 1143 1119 21133 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41597 1224 1211 21134 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41598 1211 1114 21134 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41599 1114 1119 21134 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41600 1119 1224 21134 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41601 1518 1514 21135 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41602 1514 1211 21135 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41603 1211 1224 21135 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41604 1224 1518 21135 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41605 2019 1850 21136 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41606 1850 1514 21136 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41607 1514 1518 21136 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41608 1518 2019 21136 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41609 3798 3012 21137 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41610 3012 1850 21137 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41611 1850 2019 21137 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41612 2019 3798 21137 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41613 1258 1230 21138 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41614 1230 1321 21138 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41615 1321 1338 21138 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41616 1338 1258 21138 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41617 1026 1051 21139 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41618 1051 1096 21139 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41619 1096 1008 21139 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41620 1008 1026 21139 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41621 5526 5527 21140 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41622 5527 3890 21140 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41623 3890 3948 21140 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41624 3948 5526 21140 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41625 1256 1298 21141 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41626 1298 1556 21141 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41627 1556 1536 21141 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41628 1536 1256 21141 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41629 1310 1211 21142 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41630 1211 1514 21142 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41631 1514 1509 21142 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41632 1509 1310 21142 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41633 1310 1509 21143 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41634 1509 1488 21143 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41635 1488 1336 21143 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41636 1336 1310 21143 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41637 1114 1170 21144 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41638 1170 1041 21144 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41639 1041 1090 21144 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41640 1090 1114 21144 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41641 1321 1230 21145 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41642 1230 1186 21145 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41643 1186 1281 21145 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41644 1281 1321 21145 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41645 1298 1256 21146 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41646 1256 1147 21146 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41647 1147 1196 21146 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41648 1196 1298 21146 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41649 1801 2081 21147 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41650 2081 1536 21147 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41651 1536 1556 21147 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41652 1556 1801 21147 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41653 1513 1321 21148 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41654 1321 1281 21148 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41655 1281 1461 21148 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41656 1461 1513 21148 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41657 1572 1513 21149 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41658 1513 1677 21149 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41659 1677 1700 21149 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41660 1700 1572 21149 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41661 1369 1321 21150 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41662 1321 1513 21150 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41663 1513 1528 21150 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41664 1528 1369 21150 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41665 3788 3928 21151 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41666 3928 1689 21151 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41667 1689 1692 21151 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41668 1692 3788 21151 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41669 1540 1654 21152 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41670 1654 1547 21152 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41671 1547 1381 21152 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41672 1381 1540 21152 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41673 1184 1003 21153 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41674 1003 1041 21153 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41675 1041 1170 21153 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41676 1170 1184 21153 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41677 1184 1204 21154 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41678 1204 1023 21154 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41679 1023 1003 21154 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41680 1003 1184 21154 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41681 1196 1147 21155 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41682 1147 1186 21155 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41683 1186 1230 21155 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41684 1230 1196 21155 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41685 1324 1298 21156 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41686 1298 1196 21156 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41687 1196 1236 21156 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41688 1236 1324 21156 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41689 3606 3890 21157 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41690 3890 1801 21157 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41691 1801 1871 21157 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41692 1871 3606 21157 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41693 3890 5527 21158 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41694 5527 5529 21158 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41695 5529 3843 21158 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41696 3843 3890 21158 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41697 3890 3843 21159 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41698 3843 2081 21159 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41699 2081 1801 21159 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41700 1801 3890 21159 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41701 1310 1170 21160 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41702 1170 1114 21160 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41703 1114 1211 21160 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41704 1211 1310 21160 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41705 1232 1196 21161 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41706 1196 1230 21161 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41707 1230 1258 21161 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41708 1258 1232 21161 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41709 1471 1459 21162 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41710 1459 1202 21162 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41711 1202 1204 21162 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41712 1204 1471 21162 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41713 1310 1336 21163 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41714 1336 1184 21163 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41715 1184 1170 21163 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41716 1170 1310 21163 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41717 1264 1281 21164 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41718 1281 1186 21164 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41719 1186 1143 21164 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41720 1143 1264 21164 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41721 1677 1513 21165 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41722 1513 1461 21165 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41723 1461 1587 21165 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41724 1587 1677 21165 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41725 1693 1646 21166 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41726 1646 3016 21166 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41727 3016 3635 21166 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41728 3635 1693 21166 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41729 1540 1381 21167 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41730 1381 1214 21167 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41731 1214 1357 21167 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41732 1357 1540 21167 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41733 2201 5544 21168 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41734 5544 5539 21168 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41735 5539 3016 21168 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41736 3016 2201 21168 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41737 3788 5528 21169 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41738 5528 5525 21169 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41739 5525 3928 21169 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41740 3928 3788 21169 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41741 5539 5536 21170 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41742 5536 3635 21170 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41743 3635 3016 21170 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41744 3016 5539 21170 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4)} Face 41745 7842 7385 21171 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41746 7385 7130 21171 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41747 7130 7738 21171 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41748 7738 7842 21171 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41749 7738 9355 21172 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41750 9355 9366 21172 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41751 9366 8307 21172 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41752 8307 7738 21172 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41753 10033 10106 21173 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41754 10106 10139 21173 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41755 10139 10051 21173 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41756 10051 10033 21173 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41757 10051 9916 21174 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41758 9916 9892 21174 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41759 9892 9992 21174 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41760 9992 10051 21174 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41761 9580 9366 21175 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41762 9366 9355 21175 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41763 9355 9663 21175 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41764 9663 9580 21175 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41765 9663 9959 21176 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41766 9959 9944 21176 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41767 9944 9718 21176 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41768 9718 9663 21176 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41769 9837 9950 21177 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41770 9950 9946 21177 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41771 9946 9833 21177 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41772 9833 9837 21177 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41773 9950 10007 21178 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41774 10007 10000 21178 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41775 10000 9946 21178 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41776 9946 9950 21178 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41777 10007 9878 21179 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41778 9878 9874 21179 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41779 9874 10000 21179 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41780 10000 10007 21179 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41781 9878 9618 21180 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41782 9618 9610 21180 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41783 9610 9874 21180 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41784 9874 9878 21180 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41785 9618 9351 21181 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41786 9351 9350 21181 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41787 9350 9610 21181 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41788 9610 9618 21181 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41789 9351 7893 21182 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41790 7893 7885 21182 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41791 7885 9350 21182 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41792 9350 9351 21182 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41793 7893 7562 21183 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41794 7562 7583 21183 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41795 7583 7885 21183 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41796 7885 7893 21183 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41797 7562 8119 21184 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41798 8119 8164 21184 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41799 8164 7583 21184 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41800 7583 7562 21184 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41801 8119 9386 21185 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41802 9386 9387 21185 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41803 9387 8164 21185 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41804 8164 8119 21185 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41805 9386 9601 21186 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41806 9601 9593 21186 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41807 9593 9387 21186 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41808 9387 9386 21186 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41809 9833 9593 21187 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41810 9593 9601 21187 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41811 9601 9837 21187 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41812 9837 9833 21187 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41813 9866 9617 21188 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41814 9617 9621 21188 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41815 9621 9868 21188 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41816 9868 9866 21188 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41817 9617 9371 21189 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41818 9371 9367 21189 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41819 9367 9621 21189 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41820 9621 9617 21189 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41821 9371 7895 21190 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41822 7895 7862 21190 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41823 7862 9367 21190 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41824 9367 9371 21190 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41825 7895 7483 21191 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41826 7483 7465 21191 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41827 7465 7862 21191 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41828 7862 7895 21191 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41829 7483 7920 21192 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41830 7920 7928 21192 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41831 7928 7465 21192 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41832 7465 7483 21192 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41833 7920 9358 21193 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41834 9358 9361 21193 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41835 9361 7928 21193 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41836 7928 7920 21193 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41837 9358 9637 21194 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41838 9637 9642 21194 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41839 9642 9361 21194 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41840 9361 9358 21194 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41841 9637 9911 21195 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41842 9911 9919 21195 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41843 9919 9642 21195 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41844 9642 9637 21195 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41845 9911 10054 21196 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41846 10054 10061 21196 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41847 10061 9919 21196 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41848 9919 9911 21196 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41849 10054 9977 21197 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41850 9977 9981 21197 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41851 9981 10061 21197 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41852 10061 10054 21197 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41853 9977 9866 21198 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41854 9866 9868 21198 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41855 9868 9981 21198 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41856 9981 9977 21198 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41857 9384 7897 21199 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41858 7897 8164 21199 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41859 8164 9387 21199 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41860 9387 9384 21199 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41861 9581 9384 21200 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41862 9384 9387 21200 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41863 9387 9593 21200 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41864 9593 9581 21200 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41865 9858 9581 21201 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41866 9581 9593 21201 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41867 9593 9833 21201 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41868 9833 9858 21201 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41869 9969 9858 21202 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41870 9858 9833 21202 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41871 9833 9946 21202 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41872 9946 9969 21202 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41873 10034 9969 21203 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41874 9969 9946 21203 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41875 9946 10000 21203 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41876 10000 10034 21203 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41877 9899 10034 21204 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41878 10034 10000 21204 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41879 10000 9874 21204 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41880 9874 9899 21204 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41881 9616 9899 21205 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41882 9899 9874 21205 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41883 9874 9610 21205 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41884 9610 9616 21205 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41885 9327 9616 21206 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41886 9616 9610 21206 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41887 9610 9350 21206 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41888 9350 9327 21206 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41889 7647 9327 21207 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41890 9327 9350 21207 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41891 9350 7885 21207 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41892 7885 7647 21207 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41893 7365 7647 21208 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41894 7647 7885 21208 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41895 7885 7583 21208 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41896 7583 7365 21208 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41897 7897 7365 21209 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41898 7365 7583 21209 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41899 7583 8164 21209 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41900 8164 7897 21209 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41901 7623 7455 21210 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41902 7455 7677 21210 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41903 7677 7850 21210 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41904 7850 7623 21210 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41905 9296 7623 21211 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41906 7623 7850 21211 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41907 7850 9335 21211 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41908 9335 9296 21211 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41909 9582 9296 21212 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41910 9296 9335 21212 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41911 9335 9572 21212 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41912 9572 9582 21212 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41913 9865 9582 21213 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41914 9582 9572 21213 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41915 9572 9842 21213 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41916 9842 9865 21213 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41917 9991 9865 21214 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41918 9865 9842 21214 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41919 9842 9961 21214 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41920 9961 9991 21214 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41921 9942 9991 21215 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41922 9991 9961 21215 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41923 9961 9913 21215 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41924 9913 9942 21215 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41925 9828 9942 21216 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41926 9942 9913 21216 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41927 9913 9798 21216 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41928 9798 9828 21216 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41929 9566 9828 21217 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41930 9828 9798 21217 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41931 9798 9573 21217 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41932 9573 9566 21217 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41933 9393 9566 21218 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41934 9566 9573 21218 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41935 9573 9394 21218 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41936 9394 9393 21218 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41937 8137 9393 21219 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41938 9393 9394 21219 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41939 9394 8348 21219 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41940 8348 8137 21219 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41941 7455 8137 21220 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41942 8137 8348 21220 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41943 8348 7677 21220 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41944 7677 7455 21220 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41945 7336 7865 21221 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41946 7865 8119 21221 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41947 8119 7562 21221 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41948 7562 7336 21221 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41949 7724 7336 21222 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41950 7336 7562 21222 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41951 7562 7893 21222 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41952 7893 7724 21222 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41953 9309 7724 21223 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41954 7724 7893 21223 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41955 7893 9351 21223 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41956 9351 9309 21223 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41957 9623 9309 21224 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41958 9309 9351 21224 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41959 9351 9618 21224 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41960 9618 9623 21224 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41961 9906 9623 21225 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41962 9623 9618 21225 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41963 9618 9878 21225 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41964 9878 9906 21225 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41965 10047 9906 21226 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41966 9906 9878 21226 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41967 9878 10007 21226 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41968 10007 10047 21226 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41969 9979 10047 21227 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41970 10047 10007 21227 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41971 10007 9950 21227 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41972 9950 9979 21227 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41973 9860 9979 21228 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41974 9979 9950 21228 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41975 9950 9837 21228 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41976 9837 9860 21228 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41977 9585 9860 21229 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41978 9860 9837 21229 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41979 9837 9601 21229 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41980 9601 9585 21229 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41981 9381 9585 21230 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41982 9585 9601 21230 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41983 9601 9386 21230 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41984 9386 9381 21230 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41985 7865 9381 21231 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41986 9381 9386 21231 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41987 9386 8119 21231 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41988 8119 7865 21231 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41989 9604 9365 21232 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41990 9365 9371 21232 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41991 9371 9617 21232 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41992 9617 9604 21232 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41993 9880 9604 21233 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41994 9604 9617 21233 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41995 9617 9866 21233 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41996 9866 9880 21233 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41997 10012 9880 21234 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41998 9880 9866 21234 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 41999 9866 9977 21234 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42000 9977 10012 21234 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42001 10089 10012 21235 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42002 10012 9977 21235 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42003 9977 10054 21235 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42004 10054 10089 21235 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42005 9929 10089 21236 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42006 10089 10054 21236 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42007 10054 9911 21236 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42008 9911 9929 21236 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42009 9641 9929 21237 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42010 9929 9911 21237 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42011 9911 9637 21237 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42012 9637 9641 21237 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42013 9334 9641 21238 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42014 9641 9637 21238 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42015 9637 9358 21238 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42016 9358 9334 21238 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42017 7758 9334 21239 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42018 9334 9358 21239 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42019 9358 7920 21239 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42020 7920 7758 21239 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42021 7269 7758 21240 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42022 7758 7920 21240 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42023 7920 7483 21240 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42024 7483 7269 21240 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42025 7703 7269 21241 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42026 7269 7483 21241 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42027 7483 7895 21241 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42028 7895 7703 21241 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42029 9365 7703 21242 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42030 7703 7895 21242 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42031 7895 9371 21242 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42032 9371 9365 21242 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42033 7711 7215 21243 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42034 7215 7465 21243 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42035 7465 7928 21243 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42036 7928 7711 21243 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42037 9344 7711 21244 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42038 7711 7928 21244 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42039 7928 9361 21244 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42040 9361 9344 21244 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42041 9644 9344 21245 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42042 9344 9361 21245 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42043 9361 9642 21245 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42044 9642 9644 21245 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42045 9936 9644 21246 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42046 9644 9642 21246 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42047 9642 9919 21246 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42048 9919 9936 21246 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42049 10098 9936 21247 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42050 9936 9919 21247 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42051 9919 10061 21247 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42052 10061 10098 21247 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42053 10013 10098 21248 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42054 10098 10061 21248 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42055 10061 9981 21248 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42056 9981 10013 21248 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42057 9894 10013 21249 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42058 10013 9981 21249 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42059 9981 9868 21249 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42060 9868 9894 21249 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42061 9608 9894 21250 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42062 9894 9868 21250 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42063 9868 9621 21250 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42064 9621 9608 21250 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42065 9362 9608 21251 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42066 9608 9621 21251 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42067 9621 9367 21251 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42068 9367 9362 21251 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42069 7625 9362 21252 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42070 9362 9367 21252 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42071 9367 7862 21252 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42072 7862 7625 21252 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42073 7215 7625 21253 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42074 7625 7862 21253 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42075 7862 7465 21253 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42076 7465 7215 21253 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42077 9349 7456 21254 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42078 7456 7661 21254 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42079 7661 9354 21254 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42080 9354 9349 21254 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42081 9613 9349 21255 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42082 9349 9354 21255 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42083 9354 9627 21255 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42084 9627 9613 21255 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42085 9916 9613 21256 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42086 9613 9627 21256 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42087 9627 9892 21256 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42088 9892 9916 21256 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42089 9959 10139 21257 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42090 10139 10106 21257 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42091 10106 9944 21257 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42092 9944 9959 21257 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42093 7456 7130 21258 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42094 7130 7385 21258 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42095 7385 7661 21258 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42096 7661 7456 21258 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42097 9828 9566 21259 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42098 9566 9581 21259 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42099 9581 9858 21259 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42100 9858 9828 21259 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42101 9860 9585 21260 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42102 9585 9604 21260 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42103 9604 9880 21260 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42104 9880 9860 21260 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42105 9623 9906 21261 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42106 9906 9929 21261 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42107 9929 9641 21261 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42108 9641 9623 21261 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42109 9906 10047 21262 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42110 10047 10089 21262 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42111 10089 9929 21262 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42112 9929 9906 21262 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42113 10047 9979 21263 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42114 9979 10012 21263 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42115 10012 10089 21263 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42116 10089 10047 21263 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42117 9979 9860 21264 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42118 9860 9880 21264 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42119 9880 10012 21264 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42120 10012 9979 21264 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42121 9916 10051 21265 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42122 10051 10013 21265 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42123 10013 9894 21265 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42124 9894 9916 21265 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42125 10051 10139 21266 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42126 10139 10098 21266 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42127 10098 10013 21266 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42128 10013 10051 21266 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42129 10139 9959 21267 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42130 9959 9936 21267 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42131 9936 10098 21267 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42132 10098 10139 21267 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42133 9959 9663 21268 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42134 9663 9644 21268 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42135 9644 9936 21268 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42136 9936 9959 21268 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42137 9641 9334 21269 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42138 9334 9309 21269 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42139 9309 9623 21269 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42140 9623 9641 21269 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42141 9334 7758 21270 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42142 7758 7724 21270 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42143 7724 9309 21270 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42144 9309 9334 21270 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42145 7758 7269 21271 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42146 7269 7336 21271 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42147 7336 7724 21271 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42148 7724 7758 21271 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42149 7269 7703 21272 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42150 7703 7865 21272 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42151 7865 7336 21272 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42152 7336 7269 21272 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42153 7703 9365 21273 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42154 9365 9381 21273 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42155 9381 7865 21273 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42156 7865 7703 21273 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42157 9365 9604 21274 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42158 9604 9585 21274 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42159 9585 9381 21274 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42160 9381 9365 21274 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42161 9566 9393 21275 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42162 9393 9384 21275 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42163 9384 9581 21275 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42164 9581 9566 21275 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42165 9393 8137 21276 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42166 8137 7897 21276 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42167 7897 9384 21276 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42168 9384 9393 21276 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42169 8137 7455 21277 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42170 7455 7365 21277 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42171 7365 7897 21277 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42172 7897 8137 21277 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42173 7455 7623 21278 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42174 7623 7647 21278 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42175 7647 7365 21278 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42176 7365 7455 21278 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42177 7623 9296 21279 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42178 9296 9327 21279 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42179 9327 7647 21279 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42180 7647 7623 21279 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42181 9296 9582 21280 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42182 9582 9616 21280 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42183 9616 9327 21280 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42184 9327 9296 21280 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42185 9349 9613 21281 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42186 9613 9608 21281 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42187 9608 9362 21281 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42188 9362 9349 21281 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42189 9613 9916 21282 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42190 9916 9894 21282 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42191 9894 9608 21282 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42192 9608 9613 21282 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42193 9858 9969 21283 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42194 9969 9942 21283 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42195 9942 9828 21283 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42196 9828 9858 21283 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42197 9969 10034 21284 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42198 10034 9991 21284 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42199 9991 9942 21284 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42200 9942 9969 21284 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42201 10034 9899 21285 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42202 9899 9865 21285 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42203 9865 9991 21285 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42204 9991 10034 21285 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42205 9899 9616 21286 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42206 9616 9582 21286 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42207 9582 9865 21286 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42208 9865 9899 21286 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42209 9663 9355 21287 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42210 9355 9344 21287 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42211 9344 9644 21287 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42212 9644 9663 21287 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42213 9355 7738 21288 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42214 7738 7711 21288 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42215 7711 9344 21288 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42216 9344 9355 21288 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42217 7738 7130 21289 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42218 7130 7215 21289 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42219 7215 7711 21289 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42220 7711 7738 21289 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42221 7130 7456 21290 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42222 7456 7625 21290 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42223 7625 7215 21290 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42224 7215 7130 21290 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42225 7456 9349 21291 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42226 9349 9362 21291 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42227 9362 7625 21291 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42228 7625 7456 21291 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42229 3304 3911 21292 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42230 3911 3659 21292 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42231 3659 3202 21292 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42232 3202 3304 21292 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42233 2736 1679 21293 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42234 1679 1690 21293 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42235 1690 3304 21293 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42236 3304 2736 21293 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42237 994 906 21294 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42238 906 939 21294 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42239 939 1012 21294 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42240 1012 994 21294 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42241 1053 1153 21295 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42242 1153 1129 21295 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42243 1129 994 21295 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42244 994 1053 21295 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42245 1382 1690 21296 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42246 1690 1679 21296 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42247 1679 1465 21296 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42248 1465 1382 21296 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42249 1327 1101 21297 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42250 1101 1086 21297 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42251 1086 1382 21297 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42252 1382 1327 21297 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42253 1212 1099 21298 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42254 1099 1095 21298 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42255 1095 1208 21298 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42256 1208 1212 21298 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42257 1099 1045 21299 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42258 1045 1038 21299 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42259 1038 1095 21299 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42260 1095 1099 21299 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42261 1045 1171 21300 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42262 1171 1167 21300 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42263 1167 1038 21300 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42264 1038 1045 21300 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42265 1171 1435 21301 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42266 1435 1427 21301 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42267 1427 1167 21301 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42268 1167 1171 21301 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42269 1435 1695 21302 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42270 1695 1694 21302 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42271 1694 1427 21302 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42272 1427 1435 21302 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42273 1695 3159 21303 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42274 3159 3152 21303 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42275 3152 1694 21303 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42276 1694 1695 21303 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42277 3159 3459 21304 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42278 3459 3482 21304 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42279 3482 3152 21304 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42280 3152 3159 21304 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42281 3459 2879 21305 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42282 2879 2916 21305 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42283 2916 3482 21305 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42284 3482 3459 21305 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42285 2879 1658 21306 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42286 1658 1659 21306 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42287 1659 2916 21306 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42288 2916 2879 21306 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42289 1658 1452 21307 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42290 1452 1444 21307 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42291 1444 1659 21307 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42292 1659 1658 21307 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42293 1208 1444 21308 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42294 1444 1452 21308 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42295 1452 1212 21308 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42296 1212 1208 21308 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42297 1177 1424 21309 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42298 1424 1428 21309 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42299 1428 1179 21309 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42300 1179 1177 21309 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42301 1424 1678 21310 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42302 1678 1674 21310 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42303 1674 1428 21310 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42304 1428 1424 21310 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42305 1678 3182 21311 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42306 3182 3150 21311 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42307 3150 1674 21311 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42308 1674 1678 21311 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42309 3182 3575 21312 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42310 3575 3559 21312 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42311 3559 3150 21312 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42312 3150 3182 21312 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42313 3575 3107 21313 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42314 3107 3118 21313 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42315 3118 3559 21313 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42316 3559 3575 21313 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42317 3107 1684 21314 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42318 1684 1687 21314 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42319 1687 3118 21314 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42320 3118 3107 21314 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42321 1684 1403 21315 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42322 1403 1408 21315 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42323 1408 1687 21315 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42324 1687 1684 21315 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42325 1403 1126 21316 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42326 1126 1134 21316 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42327 1134 1408 21316 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42328 1408 1403 21316 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42329 1126 984 21317 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42330 984 991 21317 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42331 991 1134 21317 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42332 1134 1126 21317 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42333 984 1064 21318 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42334 1064 1068 21318 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42335 1068 991 21318 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42336 991 984 21318 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42337 1064 1177 21319 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42338 1177 1179 21319 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42339 1179 1068 21319 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42340 1068 1064 21319 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42341 1658 2879 21320 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42342 2879 3146 21320 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42343 3146 1661 21320 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42344 1661 1658 21320 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42345 1452 1658 21321 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42346 1658 1661 21321 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42347 1661 1464 21321 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42348 1464 1452 21321 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42349 1212 1452 21322 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42350 1452 1464 21322 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42351 1464 1187 21322 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42352 1187 1212 21322 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42353 1099 1212 21323 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42354 1212 1187 21323 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42355 1187 1076 21323 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42356 1076 1099 21323 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42357 1045 1099 21324 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42358 1099 1076 21324 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42359 1076 1011 21324 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42360 1011 1045 21324 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42361 1171 1045 21325 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42362 1045 1011 21325 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42363 1011 1146 21325 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42364 1146 1171 21325 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42365 1435 1171 21326 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42366 1171 1146 21326 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42367 1146 1429 21326 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42368 1429 1435 21326 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42369 1695 1435 21327 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42370 1435 1429 21327 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42371 1429 1718 21327 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42372 1718 1695 21327 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42373 3159 1695 21328 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42374 1695 1718 21328 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42375 1718 3399 21328 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42376 3399 3159 21328 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42377 3459 3159 21329 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42378 3159 3399 21329 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42379 3399 3678 21329 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42380 3678 3459 21329 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42381 2879 3459 21330 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42382 3459 3678 21330 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42383 3678 3146 21330 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42384 3146 2879 21330 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42385 3195 3364 21331 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42386 3364 3587 21331 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42387 3587 3422 21331 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42388 3422 3195 21331 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42389 1710 3195 21332 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42390 3195 3422 21332 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42391 3422 1749 21332 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42392 1749 1710 21332 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42393 1473 1710 21333 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42394 1710 1749 21333 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42395 1749 1463 21333 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42396 1463 1473 21333 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42397 1203 1473 21334 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42398 1473 1463 21334 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42399 1463 1180 21334 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42400 1180 1203 21334 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42401 1084 1203 21335 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42402 1203 1180 21335 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42403 1180 1054 21335 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42404 1054 1084 21335 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42405 1132 1084 21336 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42406 1084 1054 21336 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42407 1054 1103 21336 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42408 1103 1132 21336 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42409 1247 1132 21337 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42410 1132 1103 21337 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42411 1103 1217 21337 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42412 1217 1247 21337 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42413 1472 1247 21338 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42414 1247 1217 21338 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42415 1217 1479 21338 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42416 1479 1472 21338 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42417 1651 1472 21339 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42418 1472 1479 21339 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42419 1479 1652 21339 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42420 1652 1651 21339 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42421 2701 1651 21340 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42422 1651 1652 21340 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42423 1652 2905 21340 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42424 2905 2701 21340 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42425 3364 2701 21341 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42426 2701 2905 21341 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42427 2905 3587 21341 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42428 3587 3364 21341 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42429 3482 2916 21342 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42430 2916 3179 21342 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42431 3179 3707 21342 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42432 3707 3482 21342 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42433 3152 3482 21343 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42434 3482 3707 21343 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42435 3707 3317 21343 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42436 3317 3152 21343 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42437 1694 3152 21344 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42438 3152 3317 21344 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42439 3317 1736 21344 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42440 1736 1694 21344 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42441 1427 1694 21345 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42442 1694 1736 21345 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42443 1736 1422 21345 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42444 1422 1427 21345 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42445 1167 1427 21346 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42446 1427 1422 21346 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42447 1422 1139 21346 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42448 1139 1167 21346 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42449 1038 1167 21347 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42450 1167 1139 21347 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42451 1139 998 21347 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42452 998 1038 21347 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42453 1095 1038 21348 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42454 1038 998 21348 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42455 998 1066 21348 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42456 1066 1095 21348 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42457 1208 1095 21349 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42458 1095 1066 21349 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42459 1066 1185 21349 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42460 1185 1208 21349 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42461 1444 1208 21350 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42462 1208 1185 21350 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42463 1185 1460 21350 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42464 1460 1444 21350 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42465 1659 1444 21351 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42466 1444 1460 21351 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42467 1460 1664 21351 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42468 1664 1659 21351 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42469 2916 1659 21352 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42470 1659 1664 21352 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42471 1664 3179 21352 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42472 3179 2916 21352 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42473 1428 1674 21353 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42474 1674 1680 21353 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42475 1680 1441 21353 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42476 1441 1428 21353 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42477 1179 1428 21354 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42478 1428 1441 21354 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42479 1441 1165 21354 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42480 1165 1179 21354 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42481 1068 1179 21355 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42482 1179 1165 21355 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42483 1165 1033 21355 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42484 1033 1068 21355 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42485 991 1068 21356 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42486 1068 1033 21356 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42487 1033 956 21356 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42488 956 991 21356 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42489 1134 991 21357 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42490 991 956 21357 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42491 956 1116 21357 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42492 1116 1134 21357 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42493 1408 1134 21358 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42494 1134 1116 21358 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42495 1116 1404 21358 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42496 1404 1408 21358 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42497 1687 1408 21359 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42498 1408 1404 21359 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42499 1404 1711 21359 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42500 1711 1687 21359 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42501 3118 1687 21360 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42502 1687 1711 21360 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42503 1711 3288 21360 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42504 3288 3118 21360 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42505 3559 3118 21361 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42506 3118 3288 21361 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42507 3288 3777 21361 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42508 3777 3559 21361 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42509 3150 3559 21362 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42510 3559 3777 21362 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42511 3777 3341 21362 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42512 3341 3150 21362 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42513 1674 3150 21363 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42514 3150 3341 21363 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42515 3341 1680 21363 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42516 1680 1674 21363 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42517 3107 3575 21364 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42518 3575 3829 21364 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42519 3829 3334 21364 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42520 3334 3107 21364 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42521 1684 3107 21365 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42522 3107 3334 21365 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42523 3334 1701 21365 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42524 1701 1684 21365 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42525 1403 1684 21366 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42526 1684 1701 21366 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42527 1701 1401 21366 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42528 1401 1403 21366 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42529 1126 1403 21367 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42530 1403 1401 21367 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42531 1401 1109 21367 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42532 1109 1126 21367 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42533 984 1126 21368 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42534 1126 1109 21368 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42535 1109 947 21368 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42536 947 984 21368 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42537 1064 984 21369 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42538 984 947 21369 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42539 947 1032 21369 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42540 1032 1064 21369 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42541 1177 1064 21370 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42542 1064 1032 21370 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42543 1032 1151 21370 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42544 1151 1177 21370 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42545 1424 1177 21371 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42546 1177 1151 21371 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42547 1151 1437 21371 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42548 1437 1424 21371 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42549 1678 1424 21372 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42550 1424 1437 21372 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42551 1437 1683 21372 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42552 1683 1678 21372 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42553 3182 1678 21373 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42554 1678 1683 21373 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42555 1683 3420 21373 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42556 3420 3182 21373 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42557 3575 3182 21374 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42558 3182 3420 21374 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42559 3420 3829 21374 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42560 3829 3575 21374 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42561 1691 3381 21375 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42562 3381 3585 21375 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42563 3585 1696 21375 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42564 1696 1691 21375 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42565 1418 1691 21376 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42566 1691 1696 21376 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42567 1696 1432 21376 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42568 1432 1418 21376 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42569 1153 1418 21377 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42570 1418 1432 21377 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42571 1432 1129 21377 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42572 1129 1153 21377 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42573 1101 939 21378 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42574 939 906 21378 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42575 906 1086 21378 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42576 1086 1101 21378 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42577 3381 3659 21379 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42578 3659 3911 21379 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42579 3911 3585 21379 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42580 3585 3381 21379 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42581 1187 1464 21380 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42582 1464 1479 21380 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42583 1479 1217 21380 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42584 1217 1187 21380 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42585 1165 1441 21381 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42586 1441 1460 21381 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42587 1460 1185 21381 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42588 1185 1165 21381 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42589 1404 1116 21382 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42590 1116 1139 21382 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42591 1139 1422 21382 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42592 1422 1404 21382 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42593 1116 956 21383 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42594 956 998 21383 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42595 998 1139 21383 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42596 1139 1116 21383 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42597 956 1033 21384 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42598 1033 1066 21384 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42599 1066 998 21384 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42600 998 956 21384 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42601 1033 1165 21385 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42602 1165 1185 21385 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42603 1185 1066 21385 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42604 1066 1033 21385 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42605 1151 1032 21386 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42606 1032 994 21386 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42607 994 1129 21386 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42608 1129 1151 21386 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42609 1032 947 21387 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42610 947 906 21387 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42611 906 994 21387 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42612 994 1032 21387 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42613 947 1109 21388 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42614 1109 1086 21388 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42615 1086 906 21388 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42616 906 947 21388 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42617 1109 1401 21389 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42618 1401 1382 21389 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42619 1382 1086 21389 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42620 1086 1109 21389 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42621 1422 1736 21390 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42622 1736 1711 21390 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42623 1711 1404 21390 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42624 1404 1422 21390 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42625 1736 3317 21391 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42626 3317 3288 21391 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42627 3288 1711 21391 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42628 1711 1736 21391 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42629 3317 3707 21392 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42630 3707 3777 21392 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42631 3777 3288 21392 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42632 3288 3317 21392 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42633 3707 3179 21393 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42634 3179 3341 21393 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42635 3341 3777 21393 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42636 3777 3707 21393 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42637 3179 1664 21394 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42638 1664 1680 21394 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42639 1680 3341 21394 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42640 3341 3179 21394 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42641 1664 1460 21395 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42642 1460 1441 21395 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42643 1441 1680 21395 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42644 1680 1664 21395 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42645 1464 1661 21396 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42646 1661 1652 21396 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42647 1652 1479 21396 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42648 1479 1464 21396 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42649 1661 3146 21397 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42650 3146 2905 21397 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42651 2905 1652 21397 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42652 1652 1661 21397 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42653 3146 3678 21398 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42654 3678 3587 21398 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42655 3587 2905 21398 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42656 2905 3146 21398 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42657 3678 3399 21399 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42658 3399 3422 21399 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42659 3422 3587 21399 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42660 3587 3678 21399 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42661 3399 1718 21400 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42662 1718 1749 21400 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42663 1749 3422 21400 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42664 3422 3399 21400 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42665 1718 1429 21401 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42666 1429 1463 21401 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42667 1463 1749 21401 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42668 1749 1718 21401 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42669 1683 1437 21402 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42670 1437 1432 21402 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42671 1432 1696 21402 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42672 1696 1683 21402 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42673 1437 1151 21403 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42674 1151 1129 21403 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42675 1129 1432 21403 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42676 1432 1437 21403 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42677 1217 1103 21404 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42678 1103 1076 21404 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42679 1076 1187 21404 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42680 1187 1217 21404 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42681 1103 1054 21405 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42682 1054 1011 21405 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42683 1011 1076 21405 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42684 1076 1103 21405 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42685 1054 1180 21406 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42686 1180 1146 21406 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42687 1146 1011 21406 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42688 1011 1054 21406 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42689 1180 1463 21407 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42690 1463 1429 21407 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42691 1429 1146 21407 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42692 1146 1180 21407 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42693 1401 1701 21408 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42694 1701 1690 21408 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42695 1690 1382 21408 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42696 1382 1401 21408 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42697 1701 3334 21409 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42698 3334 3304 21409 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42699 3304 1690 21409 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42700 1690 1701 21409 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42701 3334 3829 21410 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42702 3829 3911 21410 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42703 3911 3304 21410 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42704 3304 3334 21410 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42705 3829 3420 21411 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42706 3420 3585 21411 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42707 3585 3911 21411 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42708 3911 3829 21411 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42709 3420 1683 21412 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42710 1683 1696 21412 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42711 1696 3585 21412 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Face 42712 3585 3420 21412 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2)} Corner 3202 1 {normal=(0.0566736 0.998233 0.0178687)} Corner 2553 1 {normal=(0.0361903 0.998837 0.0318676)} Corner 3304 1 {normal=(0.0432691 0.998483 0.034061)} Corner 2553 2 {normal=(0.0361903 0.998837 0.0318676)} Corner 2736 2 {normal=(0.0339688 0.997765 0.0575512)} Corner 3304 2 {normal=(0.0432691 0.998483 0.034061)} Corner 1465 3 {normal=(0.00884052 0.99186 0.127023)} Corner 1386 3 {normal=(-0.0193641 0.989986 0.139834)} Corner 1382 3 {normal=(-0.0216513 0.990245 0.137648)} Corner 1386 4 {normal=(-0.0193641 0.989986 0.139834)} Corner 1327 4 {normal=(-0.0586022 0.987693 0.145012)} Corner 1382 4 {normal=(-0.0216513 0.990245 0.137648)} Corner 1012 5 {normal=(-0.191619 0.980451 -0.044704)} Corner 1056 5 {normal=(-0.159257 0.983472 -0.0861419)} Corner 994 5 {normal=(-0.159387 0.983749 -0.0826661)} Corner 1056 6 {normal=(-0.159257 0.983472 -0.0861419)} Corner 1053 6 {normal=(-0.127613 0.983901 -0.125112)} Corner 994 6 {normal=(-0.159387 0.983749 -0.0826661)} Corner 7738 7 {normal=(-0.0432691 0.998483 0.034061)} Corner 8492 7 {normal=(-0.0361903 0.998837 0.0318676)} Corner 7842 7 {normal=(-0.0566736 0.998233 0.0178687)} Corner 7738 8 {normal=(-0.0432691 0.998483 0.034061)} Corner 8307 8 {normal=(-0.0339688 0.997765 0.0575512)} Corner 8492 8 {normal=(-0.0361903 0.998837 0.0318676)} Corner 9663 9 {normal=(0.0216513 0.990245 0.137648)} Corner 9659 9 {normal=(0.0193641 0.989986 0.139834)} Corner 9580 9 {normal=(-0.00884052 0.99186 0.127023)} Corner 9663 10 {normal=(0.0216513 0.990245 0.137648)} Corner 9718 10 {normal=(0.0586022 0.987693 0.145012)} Corner 9659 10 {normal=(0.0193641 0.989986 0.139834)} Corner 10051 11 {normal=(0.159387 0.983749 -0.0826661)} Corner 9989 11 {normal=(0.159257 0.983472 -0.0861419)} Corner 10033 11 {normal=(0.191619 0.980451 -0.044704)} Corner 10051 12 {normal=(0.159387 0.983749 -0.0826661)} Corner 9992 12 {normal=(0.127613 0.983901 -0.125112)} Corner 9989 12 {normal=(0.159257 0.983472 -0.0861419)} Corner 1511 15 {normal=(-0.352003 0.565395 0.745938)} Corner 1459 15 {normal=(-0.346561 0.750953 0.562107)} Corner 3012 16 {normal=(0.0385028 0.23259 0.971812)} Corner 1670 16 {normal=(-0.259849 0.489852 0.83218)} Corner 1810 20 {normal=(0.80739 0.588827 -0.0374591)} Corner 1752 20 {normal=(0.853763 0.519588 -0.0334157)} Corner 1713 20 {normal=(0.851382 0.52454 -0.00253661)} Corner 1700 21 {normal=(-0.340103 -0.668111 -0.661784)} Corner 1363 22 {normal=(-0.278151 -0.865123 0.417366)} Corner 1324 22 {normal=(-0.483062 -0.858943 0.169904)} Corner 3948 23 {normal=(0.0283433 -0.617664 0.785931)} Corner 3606 23 {normal=(0.0559736 -0.674587 0.736071)} Corner 1236 24 {normal=(-0.541911 -0.835851 0.0876702)} Corner 1232 24 {normal=(-0.66428 -0.746491 -0.0385022)} Corner 1338 25 {normal=(-0.829604 -0.447757 -0.333573)} Corner 1369 25 {normal=(-0.772525 -0.442271 -0.455633)} Corner 1528 26 {normal=(-0.66111 -0.577715 -0.478726)} Corner 1572 26 {normal=(-0.465945 -0.689194 -0.554894)} Corner 1572 27 {normal=(-0.465945 -0.689194 -0.554894)} Corner 1549 27 {normal=(-0.166532 -0.967979 -0.187841)} Corner 1528 27 {normal=(-0.66111 -0.577715 -0.478726)} Corner 1369 28 {normal=(-0.772525 -0.442271 -0.455633)} Corner 1351 28 {normal=(-0.365152 -0.910664 -0.193273)} Corner 1338 28 {normal=(-0.829604 -0.447757 -0.333573)} Corner 1232 29 {normal=(-0.66428 -0.746491 -0.0385022)} Corner 1237 29 {normal=(-0.0213213 -0.999501 -0.0232872)} Corner 1236 29 {normal=(-0.541911 -0.835851 0.0876702)} Corner 1324 30 {normal=(-0.483062 -0.858943 0.169904)} Corner 1346 30 {normal=(-0.397555 -0.864378 0.307897)} Corner 1363 30 {normal=(-0.278151 -0.865123 0.417366)} Corner 3606 31 {normal=(0.0559736 -0.674587 0.736071)} Corner 3764 31 {normal=(0.0748223 -0.986548 0.145343)} Corner 3948 31 {normal=(0.0283433 -0.617664 0.785931)} Corner 9586 34 {normal=(0.346561 0.750953 0.562107)} Corner 9534 34 {normal=(0.352003 0.565395 0.745938)} Corner 9375 35 {normal=(0.259849 0.489852 0.83218)} Corner 8024 35 {normal=(-0.0385028 0.23259 0.971812)} Corner 9332 39 {normal=(-0.851382 0.52454 -0.0025366)} Corner 9293 39 {normal=(-0.853763 0.519588 -0.0334156)} Corner 9235 39 {normal=(-0.80739 0.588827 -0.0374591)} Corner 9345 40 {normal=(0.340103 -0.668111 -0.661784)} Corner 9721 41 {normal=(0.483062 -0.858943 0.169904)} Corner 9682 41 {normal=(0.278151 -0.865123 0.417366)} Corner 7436 42 {normal=(-0.0559736 -0.674587 0.736071)} Corner 7092 42 {normal=(-0.0283433 -0.617664 0.785931)} Corner 9813 43 {normal=(0.66428 -0.746491 -0.0385022)} Corner 9809 43 {normal=(0.541911 -0.835851 0.0876702)} Corner 9676 44 {normal=(0.772525 -0.442271 -0.455633)} Corner 9707 44 {normal=(0.829604 -0.447757 -0.333573)} Corner 9473 45 {normal=(0.465945 -0.689194 -0.554894)} Corner 9517 45 {normal=(0.66111 -0.577715 -0.478726)} Corner 9517 46 {normal=(0.66111 -0.577715 -0.478726)} Corner 9496 46 {normal=(0.166532 -0.967979 -0.187841)} Corner 9473 46 {normal=(0.465945 -0.689194 -0.554894)} Corner 9707 47 {normal=(0.829604 -0.447757 -0.333573)} Corner 9694 47 {normal=(0.365152 -0.910664 -0.193273)} Corner 9676 47 {normal=(0.772525 -0.442271 -0.455633)} Corner 9809 48 {normal=(0.541911 -0.835851 0.0876702)} Corner 9808 48 {normal=(0.0213213 -0.999501 -0.0232872)} Corner 9813 48 {normal=(0.66428 -0.746491 -0.0385022)} Corner 9682 49 {normal=(0.278151 -0.865123 0.417366)} Corner 9699 49 {normal=(0.397554 -0.864378 0.307897)} Corner 9721 49 {normal=(0.483062 -0.858943 0.169904)} Corner 7092 50 {normal=(-0.0283433 -0.617664 0.785931)} Corner 7280 50 {normal=(-0.0748223 -0.986548 0.145343)} Corner 7436 50 {normal=(-0.0559736 -0.674587 0.736071)} Corner 5449 51 {normal=(0.89887 -0.350427 0.263122)} Corner 5491 54 {normal=(0.24585 -0.951927 -0.182738)} Corner 4384 54 {normal=(0.282317 -0.947515 -0.15004)} Corner 3796 54 {normal=(0.175924 -0.953989 -0.242808)} Corner 5449 55 {normal=(0.833487 -0.40752 0.373131)} Corner 4398 55 {normal=(0.893017 -0.220484 0.392311)} Corner 4336 55 {normal=(0.78247 -0.505548 0.363541)} Corner 1748 56 {normal=(0.282464 -0.586945 -0.758755)} Corner 3715 56 {normal=(0.301679 -0.60874 -0.733775)} Corner 3796 56 {normal=(0.31112 -0.619302 -0.720881)} Corner 1034 58 {normal=(-0.978102 0.204744 -0.0373693)} Corner 4384 59 {normal=(0.914162 0.0683236 -0.39955)} Corner 3629 59 {normal=(0.876324 -0.00414328 -0.481704)} Corner 3796 59 {normal=(0.928126 -0.0819367 -0.363137)} Corner 1640 60 {normal=(0.000798086 -0.99999 -0.00441424)} Corner 1490 60 {normal=(0.000779363 -0.99983 -0.0184333)} Corner 1340 60 {normal=(-0.0231129 -0.999665 -0.0116291)} Corner 1101 61 {normal=(-0.287142 -0.90779 0.305725)} Corner 944 61 {normal=(-0.284411 -0.895958 0.34113)} Corner 792 61 {normal=(-0.378625 -0.91251 0.154821)} Corner 1246 62 {normal=(-0.835522 0.115602 -0.537159)} Corner 1777 63 {normal=(-0.977058 -0.207441 -0.0482352)} Corner 1700 63 {normal=(-0.977059 -0.207437 -0.0482349)} Corner 1785 63 {normal=(-0.977057 -0.207442 -0.0482353)} Corner 1777 64 {normal=(0.218376 -0.0499018 -0.974588)} Corner 1698 64 {normal=(0.218375 -0.0499018 -0.974588)} Corner 1700 64 {normal=(0.218376 -0.0499032 -0.974588)} Corner 1564 65 {normal=(-0.466976 -0.0365867 0.883513)} Corner 1558 65 {normal=(-0.893073 -0.126857 0.431657)} Corner 1558 66 {normal=(-0.0436158 -0.30832 0.950282)} Corner 1564 66 {normal=(-0.388515 -0.192574 0.901094)} Corner 2385 67 {normal=(-0.996035 -0.0888412 0.00458071)} Corner 2429 67 {normal=(-0.99813 0.0208377 0.0574692)} Corner 2420 67 {normal=(-0.996873 -0.0784268 0.00963304)} Corner 2420 68 {normal=(0.40936 -0.244902 -0.87889)} Corner 2429 68 {normal=(0.459494 -0.478404 -0.748328)} Corner 1772 68 {normal=(0.398693 -0.206427 -0.89355)} Corner 1361 69 {normal=(-0.993202 0.0549633 -0.102614)} Corner 1246 69 {normal=(-0.835522 0.115602 -0.537159)} Corner 1537 70 {normal=(0.0720379 -0.936321 0.343677)} Corner 1605 70 {normal=(-0.0136195 -0.983052 0.182819)} Corner 1548 70 {normal=(0.185254 -0.818211 0.544253)} Corner 1548 71 {normal=(-0.506783 -0.837552 0.204152)} Corner 1605 71 {normal=(-0.231854 -0.957202 0.173227)} Corner 1575 71 {normal=(-0.271012 -0.945894 0.178429)} Corner 1277 72 {normal=(-0.880991 -0.0314842 0.472084)} Corner 1361 72 {normal=(-0.993202 0.0549633 -0.102614)} Corner 1324 75 {normal=(-0.858953 0.00653118 0.512012)} Corner 1346 75 {normal=(-0.760095 0.0162605 0.649609)} Corner 1284 78 {normal=(-0.766303 -0.146085 -0.62565)} Corner 1262 78 {normal=(-0.75663 0.177888 -0.629179)} Corner 1284 79 {normal=(-0.766303 -0.146085 -0.62565)} Corner 1363 80 {normal=(-0.585382 -0.100991 0.804443)} Corner 1346 80 {normal=(-0.760095 0.0162605 0.649609)} Corner 996 85 {normal=(-0.908349 0.12742 0.39833)} Corner 1034 85 {normal=(-0.936542 0.000965952 0.350553)} Corner 979 85 {normal=(-0.905069 0.138333 0.402137)} Corner 708 86 {normal=(-0.474394 -0.830435 0.292109)} Corner 675 86 {normal=(-0.483685 -0.874025 0.0461481)} Corner 939 86 {normal=(-0.472212 -0.872108 -0.128232)} Corner 1030 87 {normal=(-0.363729 0.449812 -0.815702)} Corner 978 87 {normal=(-0.365068 0.436305 -0.822413)} Corner 1161 87 {normal=(-0.370772 0.362947 -0.854867)} Corner 1755 88 {normal=(0.785594 -0.477794 -0.393136)} Corner 1691 88 {normal=(0.738024 -0.572007 -0.35795)} Corner 1704 88 {normal=(0.816438 -0.398793 -0.417604)} Corner 2267 89 {normal=(0.0990406 0.346617 -0.932764)} Corner 2723 89 {normal=(0.0739237 0.388198 -0.918606)} Corner 2683 89 {normal=(0.0916315 0.359019 -0.928821)} Corner 5006 90 {normal=(0.312707 -0.947268 -0.0699777)} Corner 5490 90 {normal=(0.312707 -0.947268 -0.0699777)} Corner 5299 90 {normal=(0.312707 -0.947268 -0.0699777)} Corner 4453 91 {normal=(0.766417 -0.624961 0.148422)} Corner 3659 91 {normal=(0.672636 -0.739922 0.00880542)} Corner 4686 91 {normal=(0.746449 -0.485579 0.455003)} Corner 5006 92 {normal=(0.905586 -0.108628 0.410016)} Corner 5156 92 {normal=(0.848628 -0.379788 0.368228)} Corner 5490 92 {normal=(0.747571 -0.587494 0.30982)} Corner 4453 93 {normal=(0.766417 -0.624961 0.148422)} Corner 4723 93 {normal=(0.608669 -0.658414 -0.442734)} Corner 3659 93 {normal=(0.672636 -0.739922 0.00880542)} Corner 2267 94 {normal=(0.908496 0.0395806 -0.416014)} Corner 2066 94 {normal=(0.906175 0.0466901 -0.420318)} Corner 2723 94 {normal=(0.915587 0.0164093 -0.401785)} Corner 1161 95 {normal=(-0.930608 0.351687 0.101412)} Corner 1031 95 {normal=(-0.938019 0.340957 0.0622053)} Corner 1030 95 {normal=(-0.937889 0.341172 0.0629737)} Corner 939 96 {normal=(-0.399457 -0.914021 0.0707083)} Corner 679 96 {normal=(-0.443806 -0.893066 -0.0739529)} Corner 708 96 {normal=(-0.493487 -0.8148 -0.304256)} Corner 996 97 {normal=(-0.84254 0.358545 -0.401959)} Corner 975 97 {normal=(-0.857843 0.318145 -0.403595)} Corner 1034 97 {normal=(-0.881904 0.241906 -0.404631)} Corner 1755 98 {normal=(0.00619564 -0.560856 -0.82789)} Corner 2179 98 {normal=(0.0126335 -0.53062 -0.847516)} Corner 1691 98 {normal=(-0.0199924 -0.675713 -0.736893)} Corner 2374 99 {normal=(0.213802 -0.0586599 0.975114)} Corner 4281 100 {normal=(0.662786 0.0799746 0.744526)} Corner 4281 101 {normal=(0.662786 0.0799746 0.744526)} Corner 4398 102 {normal=(0.293885 -0.302135 0.906833)} Corner 4426 102 {normal=(0.513577 -0.170239 0.840986)} Corner 1580 107 {normal=(-0.848206 0.210649 0.485978)} Corner 1485 107 {normal=(-0.777849 0.289954 0.557564)} Corner 1609 107 {normal=(-0.849933 0.208434 0.48391)} Corner 3860 108 {normal=(0.271327 -0.0673664 0.960127)} Corner 3824 108 {normal=(-0.281157 0.0446223 0.958624)} Corner 4281 109 {normal=(0.640911 -0.707263 0.298349)} Corner 5449 109 {normal=(0.833487 -0.40752 0.373131)} Corner 4336 109 {normal=(0.78247 -0.505548 0.363541)} Corner 4426 110 {normal=(0.91762 -0.088393 0.387505)} Corner 4398 110 {normal=(0.893017 -0.220484 0.392311)} Corner 5449 110 {normal=(0.833487 -0.40752 0.373131)} Corner 4281 111 {normal=(0.662786 0.0799746 0.744526)} Corner 5449 111 {normal=(0.89887 -0.350427 0.263122)} Corner 5449 112 {normal=(0.89887 -0.350427 0.263122)} Corner 4780 112 {normal=(0.540246 -0.702367 0.463482)} Corner 4426 112 {normal=(0.384018 -0.8482 0.364811)} Corner 3860 113 {normal=(-0.402661 -0.0948428 0.910422)} Corner 3824 113 {normal=(0.0247551 0.0123975 0.999617)} Corner 1580 114 {normal=(-0.29555 0.178968 0.938414)} Corner 1485 114 {normal=(-0.446804 0.0578374 0.89276)} Corner 3994 115 {normal=(0.939179 -0.321212 0.121517)} Corner 4338 115 {normal=(0.939179 -0.321212 0.121517)} Corner 3926 115 {normal=(0.939179 -0.321212 0.121517)} Corner 4196 116 {normal=(0.268933 -0.663061 0.698587)} Corner 4338 116 {normal=(0.484826 -0.47542 0.734111)} Corner 3994 116 {normal=(0.454147 -0.765268 0.456197)} Corner 1286 117 {normal=(0.249815 -0.436356 0.864399)} Corner 1334 117 {normal=(0.230853 -0.390393 0.891235)} Corner 1227 117 {normal=(0.258436 -0.457439 0.850859)} Corner 1286 118 {normal=(-0.505944 -0.389837 0.769446)} Corner 1345 118 {normal=(-0.508999 -0.413546 0.754917)} Corner 1334 118 {normal=(-0.488681 -0.286407 0.824113)} Corner 1034 120 {normal=(-0.978102 0.204744 -0.0373693)} Corner 5596 121 {normal=(-0.89887 -0.350427 0.263122)} Corner 9535 123 {normal=(-0.0411224 -0.0874765 0.995318)} Corner 9560 123 {normal=(0.221677 -0.0375739 0.974396)} Corner 7250 124 {normal=(-0.175924 -0.953989 -0.242808)} Corner 6657 124 {normal=(-0.282317 -0.947515 -0.15004)} Corner 5491 124 {normal=(-0.24585 -0.951927 -0.182738)} Corner 6707 125 {normal=(-0.78247 -0.505548 0.363541)} Corner 6642 125 {normal=(-0.893017 -0.220484 0.392311)} Corner 5596 125 {normal=(-0.833487 -0.40752 0.373131)} Corner 7250 126 {normal=(-0.31112 -0.619302 -0.720881)} Corner 7328 126 {normal=(-0.301679 -0.60874 -0.733775)} Corner 9297 126 {normal=(-0.282464 -0.586945 -0.758755)} Corner 10011 128 {normal=(0.978102 0.204744 -0.0373693)} Corner 7250 129 {normal=(-0.928126 -0.0819367 -0.363137)} Corner 7416 129 {normal=(-0.876324 -0.00414326 -0.481704)} Corner 6657 129 {normal=(-0.914162 0.0683236 -0.39955)} Corner 9671 130 {normal=(0.0499237 -0.99857 -0.0191325)} Corner 9762 130 {normal=(-0.00552362 -0.999984 -0.00154548)} Corner 9810 130 {normal=(0.0209979 -0.999646 -0.0163451)} Corner 10253 131 {normal=(0.378625 -0.91251 0.154821)} Corner 10101 131 {normal=(0.284411 -0.895958 0.34113)} Corner 9944 131 {normal=(0.287142 -0.90779 0.305725)} Corner 9799 132 {normal=(0.835522 0.115602 -0.537159)} Corner 9260 133 {normal=(0.977057 -0.207442 -0.0482353)} Corner 9345 133 {normal=(0.977059 -0.207437 -0.0482349)} Corner 9268 133 {normal=(0.977058 -0.207441 -0.0482352)} Corner 9345 134 {normal=(-0.218376 -0.0499032 -0.974588)} Corner 9347 134 {normal=(-0.218375 -0.0499018 -0.974588)} Corner 9268 134 {normal=(-0.218376 -0.0499018 -0.974588)} Corner 9487 135 {normal=(0.893073 -0.126857 0.431657)} Corner 9481 135 {normal=(0.466976 -0.0365867 0.883513)} Corner 9481 136 {normal=(0.388515 -0.192574 0.901094)} Corner 9487 136 {normal=(0.0436158 -0.30832 0.950282)} Corner 8625 137 {normal=(0.996873 -0.0784268 0.00963303)} Corner 8617 137 {normal=(0.99813 0.0208377 0.0574692)} Corner 8660 137 {normal=(0.996035 -0.0888412 0.0045807)} Corner 9273 138 {normal=(-0.398693 -0.206427 -0.89355)} Corner 8617 138 {normal=(-0.459494 -0.478404 -0.748328)} Corner 8625 138 {normal=(-0.40936 -0.244902 -0.87889)} Corner 9799 139 {normal=(0.835522 0.115602 -0.537159)} Corner 9686 139 {normal=(0.993202 0.0549633 -0.102614)} Corner 9497 140 {normal=(-0.185254 -0.818211 0.544253)} Corner 9442 140 {normal=(0.0136195 -0.983052 0.182819)} Corner 9508 140 {normal=(-0.0720379 -0.936321 0.343677)} Corner 9470 141 {normal=(0.271012 -0.945894 0.178429)} Corner 9442 141 {normal=(0.231854 -0.957202 0.173227)} Corner 9497 141 {normal=(0.506783 -0.837552 0.204152)} Corner 9686 142 {normal=(0.993202 0.0549633 -0.102614)} Corner 9768 142 {normal=(0.880991 -0.0314842 0.472084)} Corner 9699 145 {normal=(0.760095 0.0162605 0.649609)} Corner 9721 145 {normal=(0.858953 0.00653119 0.512012)} Corner 9783 148 {normal=(0.75663 0.177888 -0.629179)} Corner 9761 148 {normal=(0.766303 -0.146085 -0.62565)} Corner 9761 149 {normal=(0.766303 -0.146085 -0.62565)} Corner 9699 150 {normal=(0.760095 0.0162605 0.649609)} Corner 9682 150 {normal=(0.585382 -0.100991 0.804443)} Corner 10066 155 {normal=(0.905069 0.138333 0.402137)} Corner 10011 155 {normal=(0.936542 0.000965952 0.350554)} Corner 10049 155 {normal=(0.908349 0.12742 0.39833)} Corner 10106 156 {normal=(0.472213 -0.872108 -0.128232)} Corner 10370 156 {normal=(0.483685 -0.874025 0.0461481)} Corner 10337 156 {normal=(0.474394 -0.830435 0.292109)} Corner 9884 157 {normal=(0.370772 0.362947 -0.854867)} Corner 10067 157 {normal=(0.365068 0.436305 -0.822413)} Corner 10015 157 {normal=(0.363729 0.449812 -0.815702)} Corner 9341 158 {normal=(-0.816438 -0.398793 -0.417605)} Corner 9354 158 {normal=(-0.738024 -0.572007 -0.35795)} Corner 9290 158 {normal=(-0.785594 -0.477794 -0.393136)} Corner 8366 159 {normal=(-0.0916315 0.359019 -0.928821)} Corner 8320 159 {normal=(-0.0739237 0.388198 -0.918606)} Corner 8776 159 {normal=(-0.0990406 0.346617 -0.932764)} Corner 5741 160 {normal=(-0.312707 -0.947268 -0.0699777)} Corner 5490 160 {normal=(-0.312707 -0.947268 -0.0699777)} Corner 6033 160 {normal=(-0.312707 -0.947268 -0.0699777)} Corner 6363 161 {normal=(-0.746449 -0.485579 0.455003)} Corner 7385 161 {normal=(-0.672635 -0.739922 0.00880534)} Corner 6587 161 {normal=(-0.766417 -0.624961 0.148422)} Corner 5490 162 {normal=(-0.747571 -0.587494 0.30982)} Corner 5890 162 {normal=(-0.848628 -0.379788 0.368228)} Corner 6033 162 {normal=(-0.905586 -0.108628 0.410016)} Corner 7385 163 {normal=(-0.672635 -0.739922 0.00880534)} Corner 6324 163 {normal=(-0.608668 -0.658414 -0.442734)} Corner 6587 163 {normal=(-0.766417 -0.624961 0.148422)} Corner 8320 164 {normal=(-0.915587 0.0164093 -0.401785)} Corner 8979 164 {normal=(-0.906175 0.0466901 -0.420318)} Corner 8776 164 {normal=(-0.908496 0.0395806 -0.416014)} Corner 10015 165 {normal=(0.937889 0.341172 0.0629737)} Corner 10014 165 {normal=(0.938019 0.340957 0.0622053)} Corner 9884 165 {normal=(0.930608 0.351687 0.101412)} Corner 10337 166 {normal=(0.493487 -0.8148 -0.304256)} Corner 10366 166 {normal=(0.443806 -0.893066 -0.0739528)} Corner 10106 166 {normal=(0.399457 -0.914021 0.0707083)} Corner 10011 167 {normal=(0.881904 0.241906 -0.404631)} Corner 10070 167 {normal=(0.857843 0.318145 -0.403595)} Corner 10049 167 {normal=(0.84254 0.358545 -0.401959)} Corner 9354 168 {normal=(0.0199924 -0.675713 -0.736893)} Corner 8865 168 {normal=(-0.0126334 -0.53062 -0.847516)} Corner 9290 168 {normal=(-0.00619563 -0.560856 -0.82789)} Corner 8671 169 {normal=(-0.213802 -0.0586599 0.975114)} Corner 6760 170 {normal=(-0.662786 0.0799747 0.744526)} Corner 6760 171 {normal=(-0.662786 0.0799747 0.744526)} Corner 6612 172 {normal=(-0.513577 -0.170239 0.840986)} Corner 6642 172 {normal=(-0.293885 -0.302135 0.906833)} Corner 9436 177 {normal=(0.849933 0.208434 0.48391)} Corner 9560 177 {normal=(0.777849 0.289954 0.557564)} Corner 9465 177 {normal=(0.848205 0.210649 0.485978)} Corner 7217 178 {normal=(0.281157 0.0446223 0.958624)} Corner 7183 178 {normal=(-0.271327 -0.0673664 0.960127)} Corner 6707 179 {normal=(-0.78247 -0.505548 0.363541)} Corner 5596 179 {normal=(-0.833487 -0.40752 0.373131)} Corner 6760 179 {normal=(-0.640911 -0.707263 0.298349)} Corner 5596 180 {normal=(-0.833487 -0.40752 0.373131)} Corner 6642 180 {normal=(-0.893017 -0.220484 0.392311)} Corner 6612 180 {normal=(-0.91762 -0.0883929 0.387505)} Corner 5596 181 {normal=(-0.89887 -0.350427 0.263122)} Corner 6760 181 {normal=(-0.662786 0.0799747 0.744526)} Corner 6612 182 {normal=(-0.384018 -0.8482 0.364811)} Corner 6265 182 {normal=(-0.540246 -0.702367 0.463482)} Corner 5596 182 {normal=(-0.89887 -0.350427 0.263122)} Corner 7217 183 {normal=(-0.024755 0.0123975 0.999617)} Corner 7183 183 {normal=(0.402661 -0.0948428 0.910422)} Corner 9560 184 {normal=(0.612594 0.134303 0.778904)} Corner 9465 184 {normal=(0.29555 0.178968 0.938414)} Corner 7114 185 {normal=(-0.939179 -0.321212 0.121517)} Corner 6704 185 {normal=(-0.939179 -0.321212 0.121517)} Corner 7046 185 {normal=(-0.939179 -0.321212 0.121517)} Corner 7046 186 {normal=(-0.454147 -0.765268 0.456197)} Corner 6704 186 {normal=(-0.484826 -0.47542 0.734111)} Corner 6848 186 {normal=(-0.268933 -0.663061 0.698587)} Corner 9818 187 {normal=(-0.258436 -0.457439 0.850859)} Corner 9711 187 {normal=(-0.230853 -0.390393 0.891235)} Corner 9759 187 {normal=(-0.249815 -0.436356 0.864399)} Corner 9711 188 {normal=(0.488681 -0.286407 0.824113)} Corner 9700 188 {normal=(0.508999 -0.413546 0.754917)} Corner 9759 188 {normal=(0.505944 -0.389837 0.769446)} Corner 10011 190 {normal=(0.978102 0.204744 -0.0373693)} Corner 1579 191 {normal=(-0.00745874 -0.999942 0.00779946)} Corner 1625 191 {normal=(-0.0504206 -0.997329 0.052837)} Corner 1635 191 {normal=(-0.00702138 -0.999948 0.00734627)} Corner 2555 192 {normal=(-0.00360643 -0.999989 0.0030499)} Corner 2115 192 {normal=(-0.00270463 -0.999994 0.00220403)} Corner 1951 192 {normal=(-0.00292463 -0.999995 0.000775182)} Corner 1560 193 {normal=(-3.84315e-06 -1 -1.46146e-05)} Corner 1579 193 {normal=(-0.00745874 -0.999942 0.00779946)} Corner 1635 193 {normal=(-0.00702138 -0.999948 0.00734627)} Corner 1951 194 {normal=(-0.00292463 -0.999995 0.000775182)} Corner 2318 194 {normal=(-0.00712203 -0.999973 0.00188856)} Corner 2555 194 {normal=(-0.00360643 -0.999989 0.0030499)} Corner 1627 195 {normal=(-0.0207349 -0.999197 -0.0342936)} Corner 1633 195 {normal=(3.60365e-06 -1 -7.84883e-06)} Corner 1663 195 {normal=(-0.0223214 -0.999069 -0.0369221)} Corner 1663 196 {normal=(-0.0223214 -0.999069 -0.0369221)} Corner 1647 196 {normal=(-0.258026 -0.866869 -0.426569)} Corner 1627 196 {normal=(-0.0207349 -0.999197 -0.0342936)} Corner 1377 197 {normal=(-0.0198524 -0.999803 -6.25038e-05)} Corner 1421 197 {normal=(-0.129441 -0.991587 -0.000350504)} Corner 1375 197 {normal=(-0.0242909 -0.999705 -7.99084e-05)} Corner 1296 198 {normal=(-5.97426e-06 -1 -1.39251e-05)} Corner 1377 198 {normal=(-0.0198524 -0.999803 -6.25038e-05)} Corner 1375 198 {normal=(-0.0242909 -0.999705 -7.99084e-05)} Corner 9410 199 {normal=(0.00702138 -0.999948 0.00734627)} Corner 9420 199 {normal=(0.0504206 -0.997329 0.052837)} Corner 9466 199 {normal=(0.00745874 -0.999942 0.00779946)} Corner 9094 200 {normal=(0.00292463 -0.999995 0.000775182)} Corner 8929 200 {normal=(0.00270463 -0.999994 0.00220403)} Corner 8489 200 {normal=(0.00360643 -0.999989 0.0030499)} Corner 9410 201 {normal=(0.00702138 -0.999948 0.00734627)} Corner 9466 201 {normal=(0.00745874 -0.999942 0.00779946)} Corner 9484 201 {normal=(3.84315e-06 -1 -1.46146e-05)} Corner 8489 202 {normal=(0.00360643 -0.999989 0.0030499)} Corner 8729 202 {normal=(0.00712203 -0.999973 0.00188856)} Corner 9094 202 {normal=(0.00292463 -0.999995 0.000775182)} Corner 9382 203 {normal=(0.0223214 -0.999069 -0.0369221)} Corner 9411 203 {normal=(-3.60365e-06 -1 -7.84883e-06)} Corner 9418 203 {normal=(0.0207349 -0.999197 -0.0342936)} Corner 9418 204 {normal=(0.0207349 -0.999197 -0.0342936)} Corner 9398 204 {normal=(0.258026 -0.866869 -0.426569)} Corner 9382 204 {normal=(0.0223214 -0.999069 -0.0369221)} Corner 9670 205 {normal=(0.0242909 -0.999705 -7.99084e-05)} Corner 9624 205 {normal=(0.129441 -0.991587 -0.000350504)} Corner 9668 205 {normal=(0.0198524 -0.999803 -6.25038e-05)} Corner 9670 206 {normal=(0.0242909 -0.999705 -7.99084e-05)} Corner 9668 206 {normal=(0.0198524 -0.999803 -6.25038e-05)} Corner 9748 206 {normal=(5.97426e-06 -1 -1.39251e-05)} Corner 1752 207 {normal=(0 0.433755 0.901031)} Corner 2967 207 {normal=(0 0.493971 0.869479)} Corner 1639 207 {normal=(0 0.542792 0.839867)} Corner 4121 208 {normal=(0.00041185 -0.0515133 0.998672)} Corner 5535 208 {normal=(-3.70561e-11 -0.051878 0.998653)} Corner 3414 208 {normal=(0 -0.051026 0.998697)} Corner 1636 209 {normal=(0 0.862865 -0.505435)} Corner 2965 209 {normal=(0.00520121 0.69086 -0.72297)} Corner 1807 209 {normal=(0.00477949 0.518932 -0.854802)} Corner 4121 210 {normal=(0.00041185 -0.0515133 0.998672)} Corner 5533 210 {normal=(-7.39637e-11 -0.0525647 0.998618)} Corner 5535 210 {normal=(-3.70561e-11 -0.051878 0.998653)} Corner 5551 211 {normal=(-0.000822256 0.482298 -0.876007)} Corner 5546 211 {normal=(-0.00200018 0.472947 -0.881089)} Corner 2309 211 {normal=(0.0107234 0.499778 -0.866087)} Corner 9406 212 {normal=(0 0.542792 0.839867)} Corner 8069 212 {normal=(0 0.493971 0.869479)} Corner 9293 212 {normal=(0 0.433755 0.901031)} Corner 7631 213 {normal=(0 -0.051026 0.998697)} Corner 5535 213 {normal=(-3.70561e-11 -0.051878 0.998653)} Corner 6926 213 {normal=(-0.00041185 -0.0515133 0.998672)} Corner 9238 214 {normal=(-0.00538706 0.514035 -0.857752)} Corner 8070 214 {normal=(0 0.702883 -0.711305)} Corner 9409 214 {normal=(0 0.862865 -0.505435)} Corner 5535 215 {normal=(-3.70561e-11 -0.051878 0.998653)} Corner 5533 215 {normal=(-7.39637e-11 -0.0525647 0.998618)} Corner 6926 215 {normal=(-0.00041185 -0.0515133 0.998672)} Corner 5551 216 {normal=(-0.000822256 0.482298 -0.876007)} Corner 8070 216 {normal=(0 0.702883 -0.711305)} Corner 9238 216 {normal=(-0.00538706 0.514035 -0.857752)} Corner 2015 217 {normal=(0.879032 0.0281601 0.475931)} Corner 2188 217 {normal=(0.876826 -0.0381892 0.479289)} Corner 1115 218 {normal=(-0.0777213 0.841021 0.535391)} Corner 1244 218 {normal=(0.292446 0.734491 0.612371)} Corner 1110 219 {normal=(-0.945358 0.265513 -0.189213)} Corner 1128 219 {normal=(-0.97515 0.161774 -0.151366)} Corner 972 220 {normal=(-0.282432 0.959253 -0.0080704)} Corner 962 220 {normal=(-0.353763 0.912979 0.203277)} Corner 962 221 {normal=(-0.353763 0.912979 0.203277)} Corner 1059 222 {normal=(-0.904266 0.380243 -0.19421)} Corner 1110 222 {normal=(-0.945358 0.265513 -0.189213)} Corner 1305 227 {normal=(-0.889568 0.148765 -0.4319)} Corner 1329 227 {normal=(-0.836927 0.0674515 -0.543142)} Corner 1242 227 {normal=(-0.876333 0.118797 -0.466828)} Corner 2479 228 {normal=(0.962512 0.0685394 0.262436)} Corner 1798 228 {normal=(0.885154 0.0438612 0.463226)} Corner 910 229 {normal=(0 -1 0)} Corner 926 229 {normal=(0 -1 0)} Corner 957 229 {normal=(0 -1 0)} Corner 1251 230 {normal=(-0.628226 0.6916 0.356401)} Corner 1158 230 {normal=(-0.818872 0.539945 0.194697)} Corner 1150 230 {normal=(-0.817032 0.547902 0.179619)} Corner 1188 232 {normal=(-0.976187 0.0424635 -0.212736)} Corner 1191 232 {normal=(-0.961132 0.0478924 -0.271905)} Corner 1699 233 {normal=(0.854718 0.111359 0.507007)} Corner 1648 233 {normal=(0.676587 0.362394 0.641015)} Corner 2015 234 {normal=(0.879032 0.0281601 0.475931)} Corner 1699 234 {normal=(0.854718 0.111359 0.507007)} Corner 1483 246 {normal=(-0.55313 0.00661678 -0.833069)} Corner 1292 246 {normal=(-0.763308 0.0584479 -0.643386)} Corner 1267 247 {normal=(-0.824242 0.178461 -0.53738)} Corner 1238 247 {normal=(-0.894825 0.0414587 -0.444489)} Corner 1458 247 {normal=(-0.676221 0.00925557 -0.736641)} Corner 2688 248 {normal=(0.992555 0.0807745 0.0911643)} Corner 2795 248 {normal=(0.990371 0.104265 0.0910777)} Corner 2621 248 {normal=(0.977264 0.191835 0.0903009)} Corner 2517 249 {normal=(0.984445 -0.0348826 -0.172193)} Corner 2479 249 {normal=(0.962512 0.0685394 0.262436)} Corner 1534 250 {normal=(0.297736 -0.0634543 -0.952537)} Corner 1533 250 {normal=(-0.741168 0.00308627 -0.671312)} Corner 1520 250 {normal=(-0.00590152 -0.0891318 -0.996002)} Corner 934 251 {normal=(0.390069 -0.08329 -0.917011)} Corner 966 251 {normal=(0.386079 -0.0673637 -0.920003)} Corner 957 251 {normal=(0.414225 -0.19056 -0.890002)} Corner 1005 252 {normal=(-0.280064 -0.10998 0.953661)} Corner 1002 252 {normal=(0.735643 -0.00317782 0.677362)} Corner 1016 252 {normal=(0.0341176 -0.118632 0.992352)} Corner 1614 253 {normal=(-0.37563 -0.108027 0.920452)} Corner 1567 253 {normal=(-0.371358 -0.0909657 0.924023)} Corner 1585 253 {normal=(-0.401781 -0.2247 0.88774)} Corner 1567 255 {normal=(-0.403404 0.00836547 -0.914984)} Corner 1584 255 {normal=(-0.403404 0.00836547 -0.914984)} Corner 1585 255 {normal=(-0.403404 0.00836547 -0.914984)} Corner 1016 256 {normal=(0.0341176 -0.118632 0.992352)} Corner 965 256 {normal=(-0.33778 -0.112801 0.934441)} Corner 1005 256 {normal=(-0.280064 -0.10998 0.953661)} Corner 966 257 {normal=(0.397473 -0.00844878 0.917575)} Corner 955 257 {normal=(0.397473 -0.00844878 0.917575)} Corner 957 257 {normal=(0.397473 -0.00844878 0.917575)} Corner 1520 258 {normal=(-0.00590152 -0.0891318 -0.996002)} Corner 1568 258 {normal=(0.33119 -0.0703699 -0.940936)} Corner 1534 258 {normal=(0.297736 -0.0634543 -0.952537)} Corner 1563 259 {normal=(0 -1 0)} Corner 1585 259 {normal=(0 -1 0)} Corner 1005 259 {normal=(0 -1 0)} Corner 1601 260 {normal=(0 -1 0)} Corner 1546 260 {normal=(0 -1 0)} Corner 1173 260 {normal=(0 -1 0)} Corner 8855 261 {normal=(-0.876826 -0.0381892 0.479289)} Corner 9030 261 {normal=(-0.879032 0.0281602 0.475931)} Corner 9801 262 {normal=(-0.292446 0.734491 0.612371)} Corner 9930 262 {normal=(0.0777212 0.841021 0.535391)} Corner 9917 263 {normal=(0.97515 0.161774 -0.151366)} Corner 9935 263 {normal=(0.945358 0.265513 -0.189213)} Corner 10083 264 {normal=(0.353763 0.912979 0.203277)} Corner 10073 264 {normal=(0.282432 0.959253 -0.0080704)} Corner 10083 265 {normal=(0.353763 0.912979 0.203277)} Corner 9935 266 {normal=(0.945358 0.265513 -0.189213)} Corner 9986 266 {normal=(0.904266 0.380243 -0.19421)} Corner 9247 271 {normal=(-0.885154 0.0438612 0.463226)} Corner 8571 271 {normal=(-0.962512 0.0685394 0.262436)} Corner 9636 272 {normal=(0 -1 0)} Corner 9549 272 {normal=(0 -1 0)} Corner 9511 272 {normal=(0 -1 0)} Corner 9895 273 {normal=(0.817032 0.547902 0.179619)} Corner 9887 273 {normal=(0.818872 0.539945 0.194697)} Corner 9794 273 {normal=(0.628226 0.6916 0.356401)} Corner 9854 275 {normal=(0.961132 0.0478924 -0.271905)} Corner 9857 275 {normal=(0.976187 0.0424635 -0.212736)} Corner 9397 276 {normal=(-0.676587 0.362394 0.641015)} Corner 9346 276 {normal=(-0.854718 0.111359 0.507007)} Corner 9346 277 {normal=(-0.854718 0.111359 0.507007)} Corner 9030 277 {normal=(-0.879032 0.0281602 0.475931)} Corner 9753 289 {normal=(0.763308 0.0584479 -0.643386)} Corner 9562 289 {normal=(0.55313 0.00661678 -0.833069)} Corner 9587 290 {normal=(0.676221 0.00925558 -0.736641)} Corner 9807 290 {normal=(0.894825 0.0414587 -0.444489)} Corner 9778 290 {normal=(0.824242 0.178461 -0.53738)} Corner 8428 291 {normal=(-0.977264 0.191835 0.0903009)} Corner 8250 291 {normal=(-0.990371 0.104265 0.0910777)} Corner 8359 291 {normal=(-0.992555 0.0807745 0.0911643)} Corner 8571 292 {normal=(-0.962512 0.0685394 0.262436)} Corner 8528 292 {normal=(-0.984445 -0.0348826 -0.172193)} Corner 10040 294 {normal=(0 -1 0)} Corner 9460 294 {normal=(0 -1 0)} Corner 9482 294 {normal=(0 -1 0)} Corner 9872 295 {normal=(0 -1 0)} Corner 9499 295 {normal=(0 -1 0)} Corner 9444 295 {normal=(0 -1 0)} Corner 9803 296 {normal=(0.876333 0.118797 -0.466828)} Corner 9716 296 {normal=(0.836927 0.0674515 -0.543142)} Corner 9740 296 {normal=(0.889568 0.148765 -0.4319)} Corner 9525 297 {normal=(0.00590158 -0.0891318 -0.996002)} Corner 9512 297 {normal=(0.741168 0.00308659 -0.671312)} Corner 9511 297 {normal=(-0.297736 -0.0634542 -0.952537)} Corner 10088 298 {normal=(-0.414225 -0.19056 -0.890002)} Corner 10079 298 {normal=(-0.386079 -0.0673637 -0.920003)} Corner 10111 298 {normal=(-0.390069 -0.08329 -0.917011)} Corner 10029 299 {normal=(-0.0341176 -0.118632 0.992352)} Corner 10043 299 {normal=(-0.735643 -0.00317752 0.677362)} Corner 10040 299 {normal=(0.280064 -0.10998 0.953661)} Corner 9460 300 {normal=(0.481663 -0.101828 0.870421)} Corner 9478 300 {normal=(0.737668 -0.115325 0.665242)} Corner 9431 300 {normal=(0.37563 -0.108027 0.920452)} Corner 9460 301 {normal=(0.481663 -0.101828 0.870421)} Corner 9461 301 {normal=(0.998219 -0.00760949 0.0591752)} Corner 9478 301 {normal=(0.737668 -0.115325 0.665242)} Corner 10040 302 {normal=(0.280064 -0.10998 0.953661)} Corner 10080 302 {normal=(0.33778 -0.112801 0.934441)} Corner 10029 302 {normal=(-0.0341176 -0.118632 0.992352)} Corner 10088 303 {normal=(-0.397473 -0.00844878 0.917575)} Corner 10090 303 {normal=(-0.397473 -0.00844878 0.917575)} Corner 10079 303 {normal=(-0.397473 -0.00844878 0.917575)} Corner 9511 304 {normal=(-0.297736 -0.0634542 -0.952537)} Corner 9477 304 {normal=(-0.33119 -0.0703699 -0.940936)} Corner 9525 304 {normal=(0.00590158 -0.0891318 -0.996002)} Corner 919 337 {normal=(0.691685 0.524949 -0.495985)} Corner 933 337 {normal=(0.960975 0.122341 -0.248112)} Corner 891 338 {normal=(-0.12048 0.16445 -0.979)} Corner 892 338 {normal=(-0.0697248 0.311703 -0.947618)} Corner 883 339 {normal=(-0.0558444 0.414684 -0.90825)} Corner 892 339 {normal=(-0.0697248 0.311703 -0.947618)} Corner 902 340 {normal=(0.452802 -0.47431 0.754984)} Corner 929 340 {normal=(0.559187 -0.378121 0.73779)} Corner 891 341 {normal=(-0.12048 0.16445 -0.979)} Corner 879 341 {normal=(-0.228496 0.0361554 -0.972873)} Corner 851 342 {normal=(-0.263945 -0.014461 -0.964429)} Corner 879 342 {normal=(-0.228496 0.0361554 -0.972873)} Corner 877 343 {normal=(0.331655 -0.55168 0.76528)} Corner 902 343 {normal=(0.452802 -0.47431 0.754984)} Corner 833 344 {normal=(-0.347524 0.0318941 -0.937128)} Corner 806 344 {normal=(-0.524392 0.0657163 -0.848937)} Corner 851 345 {normal=(-0.263945 -0.014461 -0.964429)} Corner 833 345 {normal=(-0.347524 0.0318941 -0.937128)} Corner 811 346 {normal=(-0.747701 -0.57958 -0.324082)} Corner 839 346 {normal=(-0.385009 -0.918713 -0.0879471)} Corner 580 347 {normal=(-0.482535 0.126193 0.866738)} Corner 570 347 {normal=(-0.353428 0.599416 0.718185)} Corner 435 348 {normal=(-0.967878 -0.239784 0.0755983)} Corner 447 348 {normal=(-0.922576 -0.279312 0.266155)} Corner 507 349 {normal=(-0.817737 -0.43215 0.380202)} Corner 447 349 {normal=(-0.922576 -0.279312 0.266155)} Corner 541 350 {normal=(0.211131 0.976278 -0.0480187)} Corner 538 350 {normal=(-0.0179847 0.990116 0.139092)} Corner 435 351 {normal=(-0.967878 -0.239784 0.0755983)} Corner 430 351 {normal=(-0.971326 -0.231543 -0.0539855)} Corner 402 352 {normal=(0.22213 -0.130743 -0.966211)} Corner 276 352 {normal=(0.13831 -0.307819 -0.941338)} Corner 294 352 {normal=(0.210646 -0.561168 -0.800449)} Corner 446 353 {normal=(-0.942891 -0.288969 -0.165693)} Corner 430 353 {normal=(-0.971326 -0.231543 -0.0539855)} Corner 555 354 {normal=(0.674618 0.679843 -0.287581)} Corner 541 354 {normal=(0.211131 0.976278 -0.0480187)} Corner 465 355 {normal=(-0.862909 -0.398031 -0.311383)} Corner 536 355 {normal=(-0.745414 -0.580057 -0.328467)} Corner 446 356 {normal=(-0.942891 -0.288969 -0.165693)} Corner 465 356 {normal=(-0.862909 -0.398031 -0.311383)} Corner 614 357 {normal=(-0.298964 -0.243346 -0.922715)} Corner 601 357 {normal=(-0.180628 0.249535 -0.95137)} Corner 104 358 {normal=(-0.665346 -0.707129 0.239338)} Corner 61 358 {normal=(-0.672534 -0.615184 0.411396)} Corner 122 359 {normal=(-0.454166 -0.888783 0.06163)} Corner 63 359 {normal=(-0.617653 -0.780622 0.0955695)} Corner 61 360 {normal=(-0.672534 -0.615184 0.411396)} Corner 42 360 {normal=(-0.641109 -0.701857 0.310444)} Corner 63 361 {normal=(-0.617653 -0.780622 0.0955695)} Corner 42 361 {normal=(-0.641109 -0.701857 0.310444)} Corner 30 362 {normal=(-0.613801 -0.697846 0.369132)} Corner 19 362 {normal=(-0.640695 -0.752101 0.154447)} Corner 34 363 {normal=(-0.601963 -0.789689 -0.118455)} Corner 19 363 {normal=(-0.640695 -0.752101 0.154447)} Corner 30 364 {normal=(-0.613801 -0.697846 0.369132)} Corner 34 365 {normal=(-0.601963 -0.789689 -0.118455)} Corner 424 366 {normal=(-0.364091 -0.138789 0.920964)} Corner 387 366 {normal=(-0.388925 0.364273 0.846193)} Corner 302 367 {normal=(-0.845484 -0.516801 0.134438)} Corner 316 367 {normal=(-0.763193 -0.567233 0.309488)} Corner 373 368 {normal=(-0.605698 -0.698089 0.38184)} Corner 316 368 {normal=(-0.763193 -0.567233 0.309488)} Corner 335 369 {normal=(-0.06602 0.992074 0.106918)} Corner 343 369 {normal=(-0.26063 0.911334 0.318658)} Corner 302 370 {normal=(-0.845484 -0.516801 0.134438)} Corner 290 370 {normal=(-0.870238 -0.492525 0.010214)} Corner 301 371 {normal=(0.562627 0.806963 0.179616)} Corner 331 371 {normal=(0.655908 0.752265 -0.0623016)} Corner 240 371 {normal=(0.483785 0.84392 0.231844)} Corner 209 372 {normal=(0.617481 -0.434925 0.655406)} Corner 301 372 {normal=(0.617481 -0.434925 0.655406)} Corner 294 372 {normal=(0.617481 -0.434925 0.655406)} Corner 331 373 {normal=(0.175437 0.963418 -0.202604)} Corner 278 373 {normal=(0.466623 0.88074 -0.0809999)} Corner 240 373 {normal=(0.399374 0.907661 -0.129046)} Corner 304 374 {normal=(-0.84439 -0.523798 -0.112437)} Corner 290 374 {normal=(-0.870238 -0.492525 0.010214)} Corner 345 375 {normal=(0.417955 0.878734 -0.23052)} Corner 335 375 {normal=(-0.06602 0.992074 0.106918)} Corner 317 376 {normal=(-0.760505 -0.584004 -0.28385)} Corner 374 376 {normal=(-0.60264 -0.718875 -0.346472)} Corner 304 377 {normal=(-0.84439 -0.523798 -0.112437)} Corner 317 377 {normal=(-0.760505 -0.584004 -0.28385)} Corner 425 378 {normal=(-0.355593 -0.189978 -0.91513)} Corner 391 378 {normal=(-0.380431 0.316408 -0.868998)} Corner 294 379 {normal=(0.210646 -0.561168 -0.800449)} Corner 276 379 {normal=(0.13831 -0.307819 -0.941338)} Corner 137 379 {normal=(0.225312 -0.349112 0.909591)} Corner 209 380 {normal=(0.133948 -0.0532955 0.989554)} Corner 294 380 {normal=(0.210646 -0.561168 -0.800449)} Corner 137 380 {normal=(0.225312 -0.349112 0.909591)} Corner 351 381 {normal=(0.432454 -0.573262 -0.695956)} Corner 243 381 {normal=(0.426171 -0.312886 -0.848811)} Corner 172 381 {normal=(0.103557 -0.932047 0.347223)} Corner 219 382 {normal=(-0.405419 0.15252 0.901317)} Corner 351 382 {normal=(0.432454 -0.573262 -0.695956)} Corner 172 382 {normal=(0.103557 -0.932047 0.347223)} Corner 562 383 {normal=(-0.223198 -0.125736 0.96663)} Corner 511 383 {normal=(-0.284908 0.351269 0.891873)} Corner 383 384 {normal=(-0.797412 -0.529553 0.289323)} Corner 418 384 {normal=(-0.686031 -0.562211 0.461822)} Corner 515 385 {normal=(-0.536164 -0.655577 0.53174)} Corner 418 385 {normal=(-0.686031 -0.562211 0.461822)} Corner 413 386 {normal=(-0.135783 0.988319 0.0692051)} Corner 433 386 {normal=(-0.284946 0.902531 0.322867)} Corner 383 387 {normal=(-0.797412 -0.529553 0.289323)} Corner 357 387 {normal=(-0.842103 -0.51414 0.162859)} Corner 354 388 {normal=(-0.158243 -0.0737279 0.984644)} Corner 243 388 {normal=(-0.158243 -0.0737279 0.984644)} Corner 351 388 {normal=(-0.158243 -0.0737279 0.984644)} Corner 372 389 {normal=(-0.838183 -0.544456 0.0319064)} Corner 357 389 {normal=(-0.842103 -0.51414 0.162859)} Corner 416 390 {normal=(0.308478 0.887247 -0.342978)} Corner 413 390 {normal=(-0.135783 0.988319 0.0692051)} Corner 395 391 {normal=(-0.782139 -0.600533 -0.166186)} Corner 478 391 {normal=(-0.65893 -0.705269 -0.261545)} Corner 372 392 {normal=(-0.838183 -0.544456 0.0319064)} Corner 395 392 {normal=(-0.782139 -0.600533 -0.166186)} Corner 520 393 {normal=(-0.481635 -0.223268 -0.847455)} Corner 472 393 {normal=(-0.520843 0.23585 -0.820425)} Corner 68 394 {normal=(-0.605679 -0.769601 0.202159)} Corner 64 395 {normal=(-0.513886 -0.835499 -0.194582)} Corner 68 396 {normal=(-0.605679 -0.769601 0.202159)} Corner 51 396 {normal=(-0.544284 -0.838716 -0.0176263)} Corner 64 397 {normal=(-0.513886 -0.835499 -0.194582)} Corner 51 397 {normal=(-0.544284 -0.838716 -0.0176263)} Corner 100 398 {normal=(-0.663546 -0.747897 -0.0188594)} Corner 96 398 {normal=(-0.5696 -0.711447 -0.411581)} Corner 131 399 {normal=(-0.500746 -0.65274 -0.568492)} Corner 96 399 {normal=(-0.5696 -0.711447 -0.411581)} Corner 100 400 {normal=(-0.663546 -0.747897 -0.0188594)} Corner 182 401 {normal=(-0.485607 -0.75939 -0.433028)} Corner 131 401 {normal=(-0.500746 -0.65274 -0.568492)} Corner 321 402 {normal=(-0.292837 -0.271683 0.916752)} Corner 287 402 {normal=(-0.414166 0.220029 0.883206)} Corner 239 403 {normal=(-0.609257 -0.787855 0.0899517)} Corner 257 403 {normal=(-0.515122 -0.839981 0.170529)} Corner 309 404 {normal=(-0.438162 -0.868745 0.23086)} Corner 257 404 {normal=(-0.515122 -0.839981 0.170529)} Corner 253 405 {normal=(0.176881 0.983955 0.0233691)} Corner 254 405 {normal=(0.178701 0.961977 0.206557)} Corner 239 406 {normal=(-0.609257 -0.787855 0.0899517)} Corner 226 406 {normal=(-0.860125 -0.472046 -0.193282)} Corner 219 407 {normal=(0.499556 -0.378578 -0.77918)} Corner 296 407 {normal=(0.499556 -0.378578 -0.77918)} Corner 351 407 {normal=(0.499556 -0.378578 -0.77918)} Corner 226 408 {normal=(-0.860125 -0.472046 -0.193282)} Corner 256 409 {normal=(0.179627 0.970271 -0.162196)} Corner 253 409 {normal=(0.176881 0.983955 0.0233691)} Corner 320 412 {normal=(-0.305723 -0.241767 -0.920914)} Corner 282 412 {normal=(-0.438877 0.286584 -0.85162)} Corner 301 413 {normal=(0.583532 0.489841 -0.647724)} Corner 240 413 {normal=(0.583532 0.489841 -0.647724)} Corner 294 413 {normal=(0.583532 0.489841 -0.647724)} Corner 278 414 {normal=(0.872592 0.360974 -0.329061)} Corner 331 414 {normal=(0.655908 0.752265 -0.0623016)} Corner 319 414 {normal=(0.776773 0.540451 -0.323321)} Corner 334 415 {normal=(0.995509 -0.0783009 -0.0532041)} Corner 163 416 {normal=(-0.796745 0.202717 0.569301)} Corner 448 419 {normal=(0.984518 0.143796 0.100238)} Corner 514 419 {normal=(0.964442 -0.0385043 -0.261475)} Corner 626 420 {normal=(0.445816 -0.244315 -0.861138)} Corner 397 420 {normal=(0.507694 -0.519084 -0.687603)} Corner 142 421 {normal=(0.145493 0.332305 0.931883)} Corner 156 421 {normal=(0.145493 0.332305 0.931883)} Corner 247 421 {normal=(0.145493 0.332305 0.931883)} Corner 311 422 {normal=(-0.571924 -0.620381 -0.536684)} Corner 397 422 {normal=(-0.307546 -0.90158 -0.304251)} Corner 409 422 {normal=(0.00520139 -0.935027 -0.354538)} Corner 311 423 {normal=(-0.571924 -0.620381 -0.536684)} Corner 298 423 {normal=(-0.744607 -0.572821 -0.34269)} Corner 397 423 {normal=(-0.307546 -0.90158 -0.304251)} Corner 409 424 {normal=(0.00520139 -0.935027 -0.354538)} Corner 397 424 {normal=(-0.307546 -0.90158 -0.304251)} Corner 626 424 {normal=(0.356904 -0.859461 -0.365987)} Corner 298 425 {normal=(-0.744607 -0.572821 -0.34269)} Corner 350 425 {normal=(-0.656279 -0.737472 0.159476)} Corner 397 425 {normal=(-0.307546 -0.90158 -0.304251)} Corner 526 426 {normal=(-0.277051 0.461877 0.842563)} Corner 195 426 {normal=(-0.54254 0.20281 0.81518)} Corner 195 427 {normal=(-0.54254 0.20281 0.81518)} Corner 163 427 {normal=(-0.796745 0.202717 0.569301)} Corner 384 434 {normal=(0.826571 0.078363 0.55735)} Corner 514 434 {normal=(0.826571 0.078363 0.55735)} Corner 448 434 {normal=(0.826571 0.078363 0.55735)} Corner 533 444 {normal=(0.869421 -0.0778371 0.487903)} Corner 822 444 {normal=(0.776824 -0.0348517 0.628753)} Corner 427 444 {normal=(0.695748 -8.50411e-05 0.718286)} Corner 94 445 {normal=(-0.546622 -0.192553 -0.81494)} Corner 85 445 {normal=(-0.424149 -0.208663 -0.881225)} Corner 153 445 {normal=(-0.276876 -0.21667 -0.936159)} Corner 10112 479 {normal=(-0.960975 0.122341 -0.248112)} Corner 10126 479 {normal=(-0.691685 0.524949 -0.495985)} Corner 10153 480 {normal=(0.0697248 0.311703 -0.947618)} Corner 10154 480 {normal=(0.12048 0.16445 -0.979)} Corner 10153 481 {normal=(0.0697248 0.311703 -0.947618)} Corner 10162 481 {normal=(0.0558444 0.414684 -0.90825)} Corner 10117 482 {normal=(-0.67049 -0.284033 0.685396)} Corner 10166 483 {normal=(0.228496 0.0361554 -0.972873)} Corner 10154 483 {normal=(0.12048 0.16445 -0.979)} Corner 10166 484 {normal=(0.228496 0.0361554 -0.972873)} Corner 10194 484 {normal=(0.263945 -0.014461 -0.964429)} Corner 10168 485 {normal=(-0.310724 -0.563285 0.765611)} Corner 10200 485 {normal=(-0.115577 -0.688396 0.716068)} Corner 10239 486 {normal=(0.524392 0.0657163 -0.848937)} Corner 10212 486 {normal=(0.347524 0.0318941 -0.937128)} Corner 10212 487 {normal=(0.347524 0.0318941 -0.937128)} Corner 10194 487 {normal=(0.263945 -0.014461 -0.964429)} Corner 10206 488 {normal=(0.385009 -0.918713 -0.0879471)} Corner 10234 488 {normal=(0.747701 -0.57958 -0.324082)} Corner 10475 489 {normal=(0.353428 0.599416 0.718185)} Corner 10465 489 {normal=(0.482535 0.126193 0.866738)} Corner 10598 490 {normal=(0.922576 -0.279312 0.266155)} Corner 10610 490 {normal=(0.967878 -0.239784 0.0755983)} Corner 10598 491 {normal=(0.922576 -0.279312 0.266155)} Corner 10538 491 {normal=(0.817737 -0.432149 0.380202)} Corner 10469 492 {normal=(-0.633796 0.773171 0.0225567)} Corner 10615 493 {normal=(0.971326 -0.231543 -0.0539855)} Corner 10610 493 {normal=(0.967878 -0.239784 0.0755983)} Corner 10751 494 {normal=(-0.210646 -0.561168 -0.800449)} Corner 10769 494 {normal=(-0.13831 -0.307819 -0.941338)} Corner 10643 494 {normal=(-0.22213 -0.130743 -0.966211)} Corner 10615 495 {normal=(0.971326 -0.231543 -0.0539855)} Corner 10599 495 {normal=(0.942891 -0.288969 -0.165693)} Corner 10490 496 {normal=(-0.677263 0.672229 -0.299037)} Corner 10443 496 {normal=(-0.661188 0.715077 -0.226925)} Corner 10509 497 {normal=(0.745414 -0.580057 -0.328467)} Corner 10580 497 {normal=(0.862909 -0.398031 -0.311383)} Corner 10580 498 {normal=(0.862909 -0.398031 -0.311383)} Corner 10599 498 {normal=(0.942891 -0.288969 -0.165693)} Corner 10444 499 {normal=(0.180628 0.249535 -0.95137)} Corner 10431 499 {normal=(0.298964 -0.243346 -0.922715)} Corner 10984 500 {normal=(0.672534 -0.615184 0.411396)} Corner 10941 500 {normal=(0.665346 -0.707129 0.239338)} Corner 10982 501 {normal=(0.617653 -0.780622 0.0955695)} Corner 10923 501 {normal=(0.454166 -0.888783 0.06163)} Corner 11003 502 {normal=(0.641109 -0.701857 0.310444)} Corner 10984 502 {normal=(0.672534 -0.615184 0.411396)} Corner 11003 503 {normal=(0.641109 -0.701857 0.310444)} Corner 10982 503 {normal=(0.617653 -0.780622 0.0955695)} Corner 11026 504 {normal=(0.640695 -0.752101 0.154447)} Corner 11015 504 {normal=(0.613801 -0.697846 0.369132)} Corner 11026 505 {normal=(0.640695 -0.752101 0.154447)} Corner 11011 505 {normal=(0.601963 -0.789689 -0.118455)} Corner 11015 506 {normal=(0.613801 -0.697846 0.369132)} Corner 11011 507 {normal=(0.601963 -0.789689 -0.118455)} Corner 10658 508 {normal=(0.388925 0.364273 0.846193)} Corner 10621 508 {normal=(0.364091 -0.138789 0.920964)} Corner 10729 509 {normal=(0.763193 -0.567233 0.309488)} Corner 10743 509 {normal=(0.845484 -0.516801 0.134438)} Corner 10729 510 {normal=(0.763193 -0.567233 0.309488)} Corner 10672 510 {normal=(0.605698 -0.698089 0.38184)} Corner 10655 511 {normal=(-0.399347 0.911836 0.0952736)} Corner 10755 512 {normal=(0.870238 -0.492525 0.010214)} Corner 10743 512 {normal=(0.845484 -0.516801 0.134438)} Corner 10805 513 {normal=(-0.483785 0.84392 0.231844)} Corner 10714 513 {normal=(-0.655908 0.752265 -0.0623017)} Corner 10744 513 {normal=(-0.562627 0.806963 0.179616)} Corner 10751 514 {normal=(-0.617481 -0.434925 0.655406)} Corner 10744 514 {normal=(-0.617481 -0.434925 0.655406)} Corner 10836 514 {normal=(-0.617481 -0.434925 0.655406)} Corner 10805 515 {normal=(-0.399374 0.907661 -0.129046)} Corner 10767 515 {normal=(-0.466623 0.88074 -0.0809999)} Corner 10714 515 {normal=(-0.175437 0.963418 -0.202604)} Corner 10755 516 {normal=(0.870238 -0.492525 0.010214)} Corner 10741 516 {normal=(0.84439 -0.523798 -0.112437)} Corner 10700 517 {normal=(-0.420847 0.873889 -0.243324)} Corner 10653 517 {normal=(-0.404624 0.900082 -0.161655)} Corner 10671 518 {normal=(0.60264 -0.718875 -0.346472)} Corner 10728 518 {normal=(0.760505 -0.584004 -0.28385)} Corner 10728 519 {normal=(0.760505 -0.584004 -0.28385)} Corner 10741 519 {normal=(0.84439 -0.523798 -0.112437)} Corner 10654 520 {normal=(0.380431 0.316408 -0.868998)} Corner 10620 520 {normal=(0.355593 -0.189978 -0.91513)} Corner 10908 521 {normal=(-0.225312 -0.349112 0.909591)} Corner 10769 521 {normal=(-0.13831 -0.307819 -0.941338)} Corner 10751 521 {normal=(-0.210646 -0.561168 -0.800449)} Corner 10908 522 {normal=(-0.225312 -0.349112 0.909591)} Corner 10751 522 {normal=(-0.210646 -0.561168 -0.800449)} Corner 10836 522 {normal=(-0.133948 -0.0532955 0.989554)} Corner 10873 523 {normal=(-0.103557 -0.932047 0.347223)} Corner 10802 523 {normal=(-0.426171 -0.312886 -0.848811)} Corner 10694 523 {normal=(-0.432454 -0.573262 -0.695956)} Corner 10873 524 {normal=(-0.103557 -0.932047 0.347223)} Corner 10694 524 {normal=(-0.432454 -0.573262 -0.695956)} Corner 10826 524 {normal=(0.405419 0.15252 0.901317)} Corner 10534 525 {normal=(0.284908 0.351269 0.891873)} Corner 10483 525 {normal=(0.223198 -0.125736 0.96663)} Corner 10627 526 {normal=(0.686031 -0.562211 0.461822)} Corner 10662 526 {normal=(0.797412 -0.529553 0.289323)} Corner 10627 527 {normal=(0.686031 -0.562211 0.461822)} Corner 10530 527 {normal=(0.536164 -0.655577 0.53174)} Corner 10537 528 {normal=(-0.344087 0.938725 0.0199899)} Corner 10688 529 {normal=(0.842103 -0.51414 0.162859)} Corner 10662 529 {normal=(0.797412 -0.529553 0.289323)} Corner 10694 530 {normal=(0.158243 -0.0737279 0.984644)} Corner 10802 530 {normal=(0.158243 -0.0737279 0.984644)} Corner 10691 530 {normal=(0.158243 -0.0737279 0.984644)} Corner 10688 531 {normal=(0.842103 -0.51414 0.162859)} Corner 10673 531 {normal=(0.838183 -0.544456 0.0319064)} Corner 10629 532 {normal=(-0.311363 0.877625 -0.364456)} Corner 10570 532 {normal=(-0.311198 0.904185 -0.292584)} Corner 10567 533 {normal=(0.65893 -0.705269 -0.261545)} Corner 10650 533 {normal=(0.782139 -0.600533 -0.166186)} Corner 10650 534 {normal=(0.782139 -0.600533 -0.166186)} Corner 10673 534 {normal=(0.838183 -0.544456 0.0319064)} Corner 10573 535 {normal=(0.520843 0.23585 -0.820425)} Corner 10525 535 {normal=(0.481635 -0.223268 -0.847455)} Corner 10977 536 {normal=(0.605679 -0.769601 0.202159)} Corner 10981 537 {normal=(0.513886 -0.835499 -0.194582)} Corner 10994 538 {normal=(0.544284 -0.838716 -0.0176263)} Corner 10977 538 {normal=(0.605679 -0.769601 0.202159)} Corner 10994 539 {normal=(0.544284 -0.838716 -0.0176263)} Corner 10981 539 {normal=(0.513886 -0.835499 -0.194582)} Corner 10949 540 {normal=(0.5696 -0.711447 -0.411581)} Corner 10945 540 {normal=(0.663546 -0.747898 -0.0188594)} Corner 10949 541 {normal=(0.5696 -0.711447 -0.411581)} Corner 10914 541 {normal=(0.500746 -0.65274 -0.568492)} Corner 10945 542 {normal=(0.663546 -0.747898 -0.0188594)} Corner 10914 543 {normal=(0.500746 -0.65274 -0.568492)} Corner 10863 543 {normal=(0.485607 -0.75939 -0.433028)} Corner 10758 544 {normal=(0.414166 0.220029 0.883206)} Corner 10724 544 {normal=(0.292837 -0.271683 0.916752)} Corner 10788 545 {normal=(0.515122 -0.839981 0.170529)} Corner 10806 545 {normal=(0.609257 -0.787855 0.0899517)} Corner 10788 546 {normal=(0.515122 -0.839981 0.170529)} Corner 10736 546 {normal=(0.438162 -0.868745 0.23086)} Corner 10759 547 {normal=(-0.155759 0.953101 0.259494)} Corner 10819 548 {normal=(0.860125 -0.472046 -0.193282)} Corner 10806 548 {normal=(0.609257 -0.787855 0.0899517)} Corner 10694 549 {normal=(-0.499556 -0.378578 -0.77918)} Corner 10749 549 {normal=(-0.499556 -0.378578 -0.77918)} Corner 10826 549 {normal=(-0.499556 -0.378578 -0.77918)} Corner 10819 550 {normal=(0.860125 -0.472046 -0.193282)} Corner 10789 551 {normal=(-0.18176 0.966731 -0.179987)} Corner 10760 551 {normal=(-0.143766 0.956818 -0.252648)} Corner 10763 554 {normal=(0.438877 0.286584 -0.85162)} Corner 10725 554 {normal=(0.305723 -0.241767 -0.920914)} Corner 10751 555 {normal=(-0.583532 0.489841 -0.647724)} Corner 10805 555 {normal=(-0.583532 0.489841 -0.647724)} Corner 10744 555 {normal=(-0.583532 0.489841 -0.647724)} Corner 10726 556 {normal=(-0.776773 0.540451 -0.323321)} Corner 10714 556 {normal=(-0.655908 0.752265 -0.0623017)} Corner 10767 556 {normal=(-0.872592 0.360974 -0.329061)} Corner 10711 557 {normal=(-0.995509 -0.0783009 -0.0532041)} Corner 10882 558 {normal=(0.796745 0.202717 0.569301)} Corner 10531 561 {normal=(-0.964442 -0.0385043 -0.261475)} Corner 10597 561 {normal=(-0.984518 0.143796 0.100238)} Corner 10648 562 {normal=(-0.507695 -0.519084 -0.687603)} Corner 10419 562 {normal=(-0.445816 -0.244315 -0.861138)} Corner 10798 563 {normal=(-0.145493 0.332305 0.931883)} Corner 10889 563 {normal=(-0.145493 0.332305 0.931883)} Corner 10903 563 {normal=(-0.145493 0.332305 0.931883)} Corner 10636 564 {normal=(-0.00520141 -0.935027 -0.354538)} Corner 10648 564 {normal=(0.307546 -0.90158 -0.304251)} Corner 10734 564 {normal=(0.571924 -0.620381 -0.536684)} Corner 10648 565 {normal=(0.307546 -0.90158 -0.304251)} Corner 10747 565 {normal=(0.744607 -0.572821 -0.34269)} Corner 10734 565 {normal=(0.571924 -0.620381 -0.536684)} Corner 10419 566 {normal=(-0.356904 -0.859461 -0.365987)} Corner 10648 566 {normal=(0.307546 -0.90158 -0.304251)} Corner 10636 566 {normal=(-0.00520141 -0.935027 -0.354538)} Corner 10648 567 {normal=(0.307546 -0.90158 -0.304251)} Corner 10695 567 {normal=(0.656279 -0.737472 0.159476)} Corner 10747 567 {normal=(0.744607 -0.572821 -0.34269)} Corner 10850 568 {normal=(0.54254 0.20281 0.81518)} Corner 10519 568 {normal=(0.277051 0.461877 0.842563)} Corner 10882 569 {normal=(0.796745 0.202717 0.569301)} Corner 10850 569 {normal=(0.54254 0.20281 0.81518)} Corner 10967 570 {normal=(0.931179 -0.25569 -0.259862)} Corner 10938 570 {normal=(0.256898 -0.894069 -0.366939)} Corner 10942 570 {normal=(0.762788 -0.149801 -0.629059)} Corner 10993 571 {normal=(0.988649 -0.149506 -0.0148549)} Corner 10978 571 {normal=(-0.738807 -0.510014 0.440511)} Corner 10967 571 {normal=(0.931179 -0.25569 -0.259862)} Corner 10973 572 {normal=(0.971574 -0.179714 -0.154099)} Corner 10976 572 {normal=(0.483057 -0.871286 0.0866977)} Corner 10993 572 {normal=(0.988649 -0.149506 -0.0148549)} Corner 11025 573 {normal=(0.896078 0.0139313 -0.443677)} Corner 10973 573 {normal=(0.789316 -0.0198296 -0.613667)} Corner 11025 574 {normal=(0.99662 -0.00203873 0.0821272)} Corner 10597 576 {normal=(-0.826571 0.078363 0.55735)} Corner 10531 576 {normal=(-0.826571 0.078363 0.55735)} Corner 10661 576 {normal=(-0.826571 0.078363 0.55735)} Corner 10618 586 {normal=(-0.695748 -8.50387e-05 0.718286)} Corner 10223 586 {normal=(-0.776824 -0.0348517 0.628753)} Corner 10512 586 {normal=(-0.869421 -0.0778371 0.487903)} Corner 10892 587 {normal=(0.276876 -0.21667 -0.936159)} Corner 10960 587 {normal=(0.424149 -0.208663 -0.881225)} Corner 10951 587 {normal=(0.546622 -0.192553 -0.81494)} Corner 2961 699 {normal=(-0.884871 -0.400687 0.237599)} Corner 3162 699 {normal=(-0.858129 -0.256647 -0.444687)} Corner 8144 815 {normal=(0.880972 -0.42073 0.216505)} Corner 7945 815 {normal=(0.826316 -0.104772 -0.553375)} Corner 4301 861 {normal=(0.130155 -0.800524 -0.584996)} Corner 4901 861 {normal=(0.168696 -0.772941 -0.61164)} Corner 5344 862 {normal=(0.0861644 -0.776713 -0.623933)} Corner 5787 862 {normal=(-0.0861462 -0.776751 -0.623888)} Corner 6254 863 {normal=(-0.168619 -0.773029 -0.611551)} Corner 6815 863 {normal=(-0.130008 -0.800592 -0.584937)} Corner 7362 864 {normal=(-0.0964896 -0.822636 -0.560321)} Corner 7771 864 {normal=(-0.0793607 -0.845671 -0.527771)} Corner 8112 865 {normal=(-0.0709441 -0.857857 -0.508968)} Corner 8306 865 {normal=(-0.0780726 -0.85995 -0.504372)} Corner 8362 866 {normal=(-0.0817346 -0.862669 -0.49912)} Corner 8331 866 {normal=(-0.0880269 -0.867435 -0.489702)} Corner 8226 867 {normal=(-0.100359 -0.889822 -0.445134)} Corner 8152 867 {normal=(-0.111136 -0.916888 -0.38336)} Corner 8101 868 {normal=(-0.109269 -0.931361 -0.347315)} Corner 7996 868 {normal=(-0.0779239 -0.924462 -0.373227)} Corner 7880 869 {normal=(-0.055943 -0.918843 -0.390638)} Corner 7748 869 {normal=(-0.0474756 -0.926197 -0.374039)} Corner 7597 870 {normal=(-0.0248163 -0.920525 -0.389895)} Corner 7252 870 {normal=(-0.00343449 -0.915854 -0.401497)} Corner 6715 871 {normal=(0.0168663 -0.910328 -0.413544)} Corner 6106 871 {normal=(0.0272439 -0.90845 -0.417105)} Corner 5731 872 {normal=(0.0180554 -0.908014 -0.418551)} Corner 5349 872 {normal=(-0.0184112 -0.907766 -0.419074)} Corner 4975 873 {normal=(-0.0274204 -0.908108 -0.417837)} Corner 4378 873 {normal=(-0.0172516 -0.910101 -0.414028)} Corner 3874 874 {normal=(0.00341017 -0.915846 -0.401514)} Corner 3535 874 {normal=(0.0249524 -0.920545 -0.389838)} Corner 3385 875 {normal=(0.0476235 -0.926137 -0.37417)} Corner 3247 875 {normal=(0.0561322 -0.918799 -0.390713)} Corner 3137 876 {normal=(0.0781205 -0.9244 -0.373339)} Corner 3060 876 {normal=(0.10954 -0.931334 -0.3473)} Corner 3011 877 {normal=(0.111344 -0.916876 -0.383328)} Corner 2902 877 {normal=(0.10042 -0.889791 -0.445182)} Corner 2796 878 {normal=(0.088033 -0.867448 -0.489678)} Corner 2762 878 {normal=(0.081665 -0.862691 -0.499094)} Corner 2815 879 {normal=(0.077967 -0.860009 -0.504287)} Corner 3040 879 {normal=(0.0708354 -0.857905 -0.508903)} Corner 3362 880 {normal=(0.0792245 -0.845738 -0.527684)} Corner 3756 880 {normal=(0.0964415 -0.822654 -0.560303)} Corner 2874 968 {normal=(0.133989 -0.267693 0.954142)} Corner 2961 968 {normal=(-0.884871 -0.400687 0.237599)} Corner 5022 1063 {normal=(-0.501227 -0.441034 -0.744487)} Corner 5408 1063 {normal=(-0.0143571 -0.491652 -0.870673)} Corner 5127 1064 {normal=(0.0011891 -0.756723 -0.653735)} Corner 5351 1064 {normal=(0.00591479 -0.750718 -0.660597)} Corner 5356 1064 {normal=(0.00379442 -0.751915 -0.65925)} Corner 4710 1065 {normal=(-0.561326 0.809276 -0.173162)} Corner 6474 1070 {normal=(0.404849 0.554669 -0.726939)} Corner 6357 1073 {normal=(0.683281 0.713059 -0.157079)} Corner 5644 1074 {normal=(0.0143571 -0.491652 -0.870673)} Corner 6018 1074 {normal=(0.501227 -0.441034 -0.744487)} Corner 5685 1075 {normal=(-0.00379442 -0.751915 -0.65925)} Corner 5688 1075 {normal=(-0.00591478 -0.750718 -0.660597)} Corner 5918 1075 {normal=(-0.0011891 -0.756723 -0.653735)} Corner 6339 1076 {normal=(0.441021 0.88718 -0.135692)} Corner 5918 1082 {normal=(0.208584 -0.065808 -0.975788)} Corner 5999 1083 {normal=(0.599179 -0.615265 -0.512283)} Corner 5902 1084 {normal=(0.210176 -0.977023 0.0353795)} Corner 8211 1090 {normal=(0.216775 -0.433703 0.874591)} Corner 8281 1090 {normal=(0.878097 -0.374463 0.297863)} Corner 6260 1095 {normal=(-0.297729 -0.393513 0.869773)} Corner 5127 1101 {normal=(-0.208584 -0.065808 -0.975788)} Corner 5046 1102 {normal=(-0.599179 -0.615265 -0.512283)} Corner 5143 1103 {normal=(-0.210176 -0.977023 0.0353795)} Corner 2764 1110 {normal=(-0.878097 -0.374463 0.297863)} Corner 2834 1110 {normal=(-0.211002 -0.430682 0.877492)} Corner 4814 1115 {normal=(0.306298 -0.412176 0.858075)} Corner 6533 1132 {normal=(0.756715 0.219822 -0.615679)} Corner 5700 1135 {normal=(-0.0213408 -0.365928 -0.930398)} Corner 4977 1136 {normal=(0.00927567 -0.321666 -0.946808)} Corner 4710 1136 {normal=(-0.542794 0.0850577 -0.835547)} Corner 672 1179 {normal=(-0.347985 0.530535 0.772942)} Corner 757 1179 {normal=(-0.28492 0.368305 0.88497)} Corner 751 1179 {normal=(-0.337751 0.156837 0.928077)} Corner 751 1180 {normal=(-0.337751 0.156837 0.928077)} Corner 662 1180 {normal=(-0.452073 0.543151 0.707543)} Corner 672 1180 {normal=(-0.347985 0.530535 0.772942)} Corner 617 1181 {normal=(0.107936 0.994112 -0.0095166)} Corner 587 1181 {normal=(0.19308 0.969758 -0.149297)} Corner 703 1181 {normal=(0.0412427 0.994439 0.0969066)} Corner 703 1182 {normal=(-0.411006 0.272336 0.870004)} Corner 714 1182 {normal=(-0.339995 0.0329184 0.939851)} Corner 617 1182 {normal=(-0.299024 -0.0796728 0.950914)} Corner 583 1183 {normal=(-0.322155 -0.87708 -0.356296)} Corner 632 1183 {normal=(-0.936755 -0.00843279 0.349885)} Corner 635 1183 {normal=(-0.890184 -0.198472 0.410099)} Corner 635 1184 {normal=(-0.890184 -0.198472 0.410099)} Corner 574 1184 {normal=(0.687294 -0.707041 -0.166494)} Corner 583 1184 {normal=(-0.322155 -0.87708 -0.356296)} Corner 574 1185 {normal=(0.687294 -0.707041 -0.166494)} Corner 635 1185 {normal=(-0.890184 -0.198472 0.410099)} Corner 622 1185 {normal=(-0.871424 -0.250057 0.422008)} Corner 622 1186 {normal=(-0.871424 -0.250057 0.422008)} Corner 606 1186 {normal=(0.657484 0.560002 -0.504096)} Corner 574 1186 {normal=(0.687294 -0.707041 -0.166494)} Corner 619 1187 {normal=(-0.846246 -0.341047 -0.409335)} Corner 643 1187 {normal=(-0.847538 -0.338438 -0.408826)} Corner 583 1187 {normal=(-0.322155 -0.87708 -0.356296)} Corner 583 1188 {normal=(-0.322155 -0.87708 -0.356296)} Corner 574 1188 {normal=(0.687294 -0.707041 -0.166494)} Corner 619 1188 {normal=(-0.846246 -0.341047 -0.409335)} Corner 334 1189 {normal=(0.995509 -0.0783009 -0.0532041)} Corner 298 1189 {normal=(0.996298 -0.0799641 0.0315726)} Corner 311 1189 {normal=(0.951888 0.223843 0.209292)} Corner 311 1190 {normal=(0.780863 -0.0385237 0.623514)} Corner 232 1190 {normal=(0.839725 0.15121 0.521534)} Corner 334 1190 {normal=(0.824752 0.0886958 0.558496)} Corner 21 1191 {normal=(-0.39206 -0.873854 0.287521)} Corner 15 1191 {normal=(-0.299897 -0.888697 0.346812)} Corner 11 1191 {normal=(-0.269271 -0.934305 0.233595)} Corner 11 1192 {normal=(-0.269271 -0.934305 0.233595)} Corner 32 1192 {normal=(-0.250668 -0.941889 0.223629)} Corner 21 1192 {normal=(-0.39206 -0.873854 0.287521)} Corner 160 1193 {normal=(-0.176808 -0.885879 0.428902)} Corner 231 1193 {normal=(-0.00155035 -0.921753 0.387775)} Corner 167 1193 {normal=(-0.0933424 -0.90393 0.417371)} Corner 167 1194 {normal=(-0.0933424 -0.90393 0.417371)} Corner 92 1194 {normal=(-0.146325 -0.913728 0.379066)} Corner 160 1194 {normal=(-0.176808 -0.885879 0.428902)} Corner 289 1195 {normal=(0.154668 -0.975066 0.159138)} Corner 223 1195 {normal=(0.0232417 -0.984291 0.175017)} Corner 306 1195 {normal=(0.102432 -0.982582 0.155051)} Corner 306 1196 {normal=(0.102432 -0.982582 0.155051)} Corner 344 1196 {normal=(0.104706 -0.975931 0.191301)} Corner 289 1196 {normal=(0.154668 -0.975066 0.159138)} Corner 10373 1197 {normal=(0.347985 0.530535 0.772942)} Corner 10383 1197 {normal=(0.452073 0.54315 0.707543)} Corner 10294 1197 {normal=(0.337751 0.156837 0.928077)} Corner 10294 1198 {normal=(0.337751 0.156837 0.928077)} Corner 10288 1198 {normal=(0.28492 0.368305 0.88497)} Corner 10373 1198 {normal=(0.347985 0.530535 0.772942)} Corner 10428 1199 {normal=(0.299024 -0.0796728 0.950914)} Corner 10331 1199 {normal=(0.339995 0.0329184 0.939851)} Corner 10342 1199 {normal=(0.411006 0.272336 0.870004)} Corner 10342 1200 {normal=(-0.0412427 0.994439 0.0969067)} Corner 10458 1200 {normal=(-0.19308 0.969758 -0.149297)} Corner 10428 1200 {normal=(-0.107936 0.994112 -0.00951657)} Corner 10471 1201 {normal=(-0.430542 -0.86964 -0.241578)} Corner 10410 1201 {normal=(0.911706 -0.166288 0.375687)} Corner 10413 1201 {normal=(0.919289 -0.0387763 0.391668)} Corner 10413 1202 {normal=(0.919289 -0.0387763 0.391668)} Corner 10462 1202 {normal=(0.320425 -0.860369 -0.39635)} Corner 10471 1202 {normal=(-0.430542 -0.86964 -0.241578)} Corner 10439 1203 {normal=(-0.590949 0.672969 -0.44485)} Corner 10423 1203 {normal=(0.87509 -0.311377 0.370489)} Corner 10410 1203 {normal=(0.911706 -0.166288 0.375687)} Corner 10410 1204 {normal=(0.911706 -0.166288 0.375687)} Corner 10471 1204 {normal=(-0.430542 -0.86964 -0.241578)} Corner 10439 1204 {normal=(-0.590949 0.672969 -0.44485)} Corner 10426 1205 {normal=(0.846246 -0.341047 -0.409335)} Corner 10471 1205 {normal=(-0.430542 -0.86964 -0.241578)} Corner 10462 1205 {normal=(0.320425 -0.860369 -0.39635)} Corner 10462 1206 {normal=(0.320425 -0.860369 -0.39635)} Corner 10402 1206 {normal=(0.847538 -0.338438 -0.408826)} Corner 10426 1206 {normal=(0.846246 -0.341047 -0.409335)} Corner 10711 1207 {normal=(-0.824752 0.0886958 0.558496)} Corner 10813 1207 {normal=(-0.839725 0.15121 0.521534)} Corner 10734 1207 {normal=(-0.780863 -0.0385237 0.623514)} Corner 10734 1208 {normal=(-0.951888 0.223843 0.209292)} Corner 10747 1208 {normal=(-0.996298 -0.079964 0.0315726)} Corner 10711 1208 {normal=(-0.995509 -0.0783009 -0.0532041)} Corner 11024 1209 {normal=(0.39206 -0.873854 0.287521)} Corner 11013 1209 {normal=(0.250668 -0.941889 0.223629)} Corner 11034 1209 {normal=(0.269271 -0.934305 0.233595)} Corner 11034 1210 {normal=(0.269271 -0.934305 0.233595)} Corner 11030 1210 {normal=(0.299897 -0.888697 0.346812)} Corner 11024 1210 {normal=(0.39206 -0.873854 0.287521)} Corner 10885 1211 {normal=(0.176808 -0.885879 0.428902)} Corner 10953 1211 {normal=(0.146325 -0.913728 0.379066)} Corner 10878 1211 {normal=(0.0933424 -0.90393 0.417371)} Corner 10878 1212 {normal=(0.0933424 -0.90393 0.417371)} Corner 10814 1212 {normal=(0.00155035 -0.921753 0.387775)} Corner 10885 1212 {normal=(0.176808 -0.885879 0.428902)} Corner 10756 1213 {normal=(-0.154668 -0.975066 0.159138)} Corner 10701 1213 {normal=(-0.104706 -0.975931 0.191301)} Corner 10739 1213 {normal=(-0.102432 -0.982582 0.155051)} Corner 10739 1214 {normal=(-0.102432 -0.982582 0.155051)} Corner 10822 1214 {normal=(-0.0232417 -0.984291 0.175017)} Corner 10756 1214 {normal=(-0.154668 -0.975066 0.159138)} Corner 2961 1221 {normal=(-0.884871 -0.400687 0.237599)} Corner 2961 1222 {normal=(-0.884871 -0.400687 0.237599)} Corner 6018 1227 {normal=(0.501227 -0.441034 -0.744487)} Corner 6045 1227 {normal=(0.582796 -0.404103 0.705018)} Corner 6018 1228 {normal=(0.501227 -0.441034 -0.744487)} Corner 6799 1229 {normal=(-0.225899 -0.596135 0.77045)} Corner 6260 1229 {normal=(-0.297729 -0.393513 0.869773)} Corner 7014 1230 {normal=(-0.430439 -0.374061 0.821463)} Corner 6799 1230 {normal=(-0.225899 -0.596135 0.77045)} Corner 5022 1233 {normal=(-0.501227 -0.441034 -0.744487)} Corner 4995 1234 {normal=(-0.582796 -0.404103 0.705018)} Corner 5022 1234 {normal=(-0.501227 -0.441034 -0.744487)} Corner 4302 1235 {normal=(0.27638 -0.639914 0.717025)} Corner 4089 1235 {normal=(0.393511 -0.45211 0.800466)} Corner 4814 1236 {normal=(0.306298 -0.412176 0.858075)} Corner 4302 1236 {normal=(0.27638 -0.639914 0.717025)} Corner 6357 1237 {normal=(0.878637 -0.169145 -0.446528)} Corner 6339 1237 {normal=(0.664449 0.130579 -0.735838)} Corner 6533 1237 {normal=(0.756715 0.219822 -0.615679)} Corner 6533 1238 {normal=(0.756715 0.219822 -0.615679)} Corner 6474 1238 {normal=(0.547098 0.452067 -0.704499)} Corner 6357 1238 {normal=(0.878637 -0.169145 -0.446528)} Corner 4507 1239 {normal=(-0.349352 0.547163 -0.760635)} Corner 4507 1240 {normal=(-0.349352 0.547163 -0.760635)} Corner 4710 1240 {normal=(-0.561326 0.809276 -0.173162)} Corner 4710 2690 {normal=(-0.542794 0.0850577 -0.835547)} Corner 4710 2691 {normal=(-0.542794 0.0850577 -0.835547)} Corner 4507 2691 {normal=(-0.790367 0.26837 -0.550724)} Corner 4507 2692 {normal=(-0.790367 0.26837 -0.550724)} Corner 5333 2695 {normal=(-0.0019897 -0.39259 -0.919712)} Corner 5333 2696 {normal=(-0.0019897 -0.39259 -0.919712)} Corner 6063 2705 {normal=(0.312633 -0.0132155 -0.949782)} Corner 6533 2706 {normal=(0.756715 0.219822 -0.615679)} Corner 6533 2707 {normal=(0.756715 0.219822 -0.615679)} Corner 6339 2707 {normal=(0.664449 0.130579 -0.735838)} Corner 6339 2708 {normal=(0.664449 0.130579 -0.735838)} Corner 6063 2708 {normal=(0.312633 -0.0132155 -0.949782)} Corner 4507 2709 {normal=(-0.790367 0.26837 -0.550724)} Corner 4507 2710 {normal=(-0.790367 0.26837 -0.550724)} Corner 4498 2710 {normal=(-0.842157 0.48451 -0.236689)} Corner 4498 2711 {normal=(-0.842157 0.48451 -0.236689)} Corner 4816 2713 {normal=(-0.557636 0.798703 0.22609)} Corner 4816 2714 {normal=(-0.557636 0.798703 0.22609)} Corner 5290 2714 {normal=(-0.0581886 0.8512 0.521606)} Corner 5290 2715 {normal=(-0.0581886 0.8512 0.521606)} Corner 4977 2717 {normal=(0.00927567 -0.321666 -0.946808)} Corner 5333 2719 {normal=(-0.0019897 -0.39259 -0.919712)} Corner 5333 2720 {normal=(-0.0019897 -0.39259 -0.919712)} Corner 4977 2720 {normal=(0.00927567 -0.321666 -0.946808)} Corner 6542 2749 {normal=(0.842157 0.48451 -0.236689)} Corner 6542 2750 {normal=(0.842157 0.48451 -0.236689)} Corner 6533 2750 {normal=(0.756715 0.219822 -0.615679)} Corner 6533 2751 {normal=(0.756715 0.219822 -0.615679)} Corner 5751 2753 {normal=(0.0581886 0.8512 0.521606)} Corner 5751 2754 {normal=(0.0581886 0.8512 0.521606)} Corner 6228 2754 {normal=(0.557636 0.798703 0.22609)} Corner 6228 2755 {normal=(0.557636 0.798703 0.22609)} Corner 5700 2761 {normal=(-0.0213408 -0.365928 -0.930398)} Corner 6063 2763 {normal=(0.312633 -0.0132155 -0.949782)} Corner 6063 2764 {normal=(0.312633 -0.0132155 -0.949782)} Corner 5700 2764 {normal=(-0.0213408 -0.365928 -0.930398)} Corner 4498 2781 {normal=(-0.842157 0.48451 -0.236689)} Corner 4498 2782 {normal=(-0.842157 0.48451 -0.236689)} Corner 4816 2782 {normal=(-0.557636 0.798703 0.22609)} Corner 4816 2783 {normal=(-0.557636 0.798703 0.22609)} Corner 5290 2785 {normal=(-0.0581886 0.8512 0.521606)} Corner 5290 2786 {normal=(-0.0581886 0.8512 0.521606)} Corner 5751 2786 {normal=(0.0581886 0.8512 0.521606)} Corner 5751 2787 {normal=(0.0581886 0.8512 0.521606)} Corner 6542 2789 {normal=(0.842157 0.48451 -0.236689)} Corner 6228 2791 {normal=(0.557636 0.798703 0.22609)} Corner 6228 2792 {normal=(0.557636 0.798703 0.22609)} Corner 6542 2792 {normal=(0.842157 0.48451 -0.236689)} Corner 5902 4241 {normal=(0.000774877 -0.757885 -0.652387)} Corner 5685 4241 {normal=(-0.00379442 -0.751915 -0.65925)} Corner 5685 4242 {normal=(-0.00379442 -0.751915 -0.65925)} Corner 5918 4242 {normal=(-0.0011891 -0.756723 -0.653735)} Corner 5918 4243 {normal=(-0.0011891 -0.756723 -0.653735)} Corner 5999 4243 {normal=(0.000774877 -0.757885 -0.652387)} Corner 5999 4244 {normal=(0.000774877 -0.757885 -0.652387)} Corner 5902 4244 {normal=(0.000774877 -0.757885 -0.652387)} Corner 5046 4253 {normal=(-0.000774877 -0.757885 -0.652387)} Corner 5127 4253 {normal=(0.0011891 -0.756723 -0.653735)} Corner 5127 4254 {normal=(0.0011891 -0.756723 -0.653735)} Corner 5356 4254 {normal=(0.00379442 -0.751915 -0.65925)} Corner 5356 4255 {normal=(0.00379442 -0.751915 -0.65925)} Corner 5143 4255 {normal=(-0.000774877 -0.757885 -0.652387)} Corner 5143 4256 {normal=(-0.000774877 -0.757885 -0.652387)} Corner 5046 4256 {normal=(-0.000774877 -0.757885 -0.652387)} Corner 4089 4265 {normal=(0.393511 -0.45211 0.800466)} Corner 4089 4266 {normal=(0.393511 -0.45211 0.800466)} Corner 3808 4266 {normal=(0.444346 -0.399563 0.801814)} Corner 3808 4267 {normal=(0.444346 -0.399563 0.801814)} Corner 4302 4274 {normal=(-0.513976 -0.0141403 -0.857688)} Corner 4302 4275 {normal=(-0.513976 -0.0141403 -0.857688)} Corner 4814 4275 {normal=(-0.28172 -0.0319873 -0.958963)} Corner 4814 4276 {normal=(-0.28172 -0.0319873 -0.958963)} Corner 5286 4278 {normal=(-0.0834048 -0.0547639 -0.99501)} Corner 5286 4279 {normal=(-0.0834048 -0.0547639 -0.99501)} Corner 5755 4279 {normal=(0.0801767 -0.0525316 -0.995395)} Corner 5755 4280 {normal=(0.0801767 -0.0525316 -0.995395)} Corner 5286 4281 {normal=(0.102341 -0.364029 0.925748)} Corner 5286 4282 {normal=(0.102341 -0.364029 0.925748)} Corner 4814 4282 {normal=(0.306298 -0.412176 0.858075)} Corner 4814 4283 {normal=(0.306298 -0.412176 0.858075)} Corner 3837 4290 {normal=(-0.447656 -0.725851 -0.52225)} Corner 3837 4291 {normal=(-0.447656 -0.725851 -0.52225)} Corner 3503 4291 {normal=(-0.511544 -0.727638 -0.457017)} Corner 3503 4292 {normal=(-0.511544 -0.727638 -0.457017)} Corner 3837 4293 {normal=(0.420185 -0.533065 0.734361)} Corner 3837 4294 {normal=(0.420185 -0.533065 0.734361)} Corner 4182 4294 {normal=(0.364778 -0.532727 0.763635)} Corner 4182 4295 {normal=(0.364778 -0.532727 0.763635)} Corner 4683 4297 {normal=(-0.182637 -0.656204 -0.732148)} Corner 4182 4297 {normal=(-0.344294 -0.704071 -0.621085)} Corner 4182 4298 {normal=(-0.344294 -0.704071 -0.621085)} Corner 4683 4300 {normal=(-0.182637 -0.656204 -0.732148)} Corner 4683 4305 {normal=(0.242534 -0.538081 0.807246)} Corner 4683 4306 {normal=(0.242534 -0.538081 0.807246)} Corner 5256 4306 {normal=(0.0900699 -0.542758 0.835046)} Corner 5256 4307 {normal=(0.0900699 -0.542758 0.835046)} Corner 5789 4309 {normal=(0.0516286 -0.609591 -0.791033)} Corner 5256 4309 {normal=(-0.0516286 -0.609591 -0.791033)} Corner 5256 4310 {normal=(-0.0516286 -0.609591 -0.791033)} Corner 5789 4312 {normal=(0.0516286 -0.609591 -0.791033)} Corner 5022 4331 {normal=(-0.501227 -0.441034 -0.744487)} Corner 5022 4332 {normal=(-0.501227 -0.441034 -0.744487)} Corner 3162 4441 {normal=(0.751666 -0.269599 0.601925)} Corner 3162 4442 {normal=(0.751666 -0.269599 0.601925)} Corner 2961 4442 {normal=(0.807662 -0.252316 0.532933)} Corner 2961 4443 {normal=(0.807662 -0.252316 0.532933)} Corner 2874 4443 {normal=(0.816706 -0.234509 0.527254)} Corner 2874 4444 {normal=(0.816706 -0.234509 0.527254)} Corner 2764 4446 {normal=(-0.878097 -0.374463 0.297863)} Corner 2764 4447 {normal=(-0.878097 -0.374463 0.297863)} Corner 2834 4449 {normal=(0.79557 -0.244237 0.554452)} Corner 2764 4449 {normal=(0.477026 -0.513828 0.713041)} Corner 2764 4450 {normal=(0.477026 -0.513828 0.713041)} Corner 2912 4450 {normal=(0.426609 -0.509988 0.746938)} Corner 2912 4451 {normal=(0.426609 -0.509988 0.746938)} Corner 2834 4452 {normal=(0.79557 -0.244237 0.554452)} Corner 3198 4453 {normal=(-0.704506 -0.65055 -0.283649)} Corner 2912 4453 {normal=(-0.860401 -0.50959 -0.00537554)} Corner 2912 4454 {normal=(-0.860401 -0.50959 -0.00537554)} Corner 3198 4456 {normal=(-0.704506 -0.65055 -0.283649)} Corner 3557 4537 {normal=(0.408803 -0.384712 0.827573)} Corner 3557 4538 {normal=(0.408803 -0.384712 0.827573)} Corner 3330 4538 {normal=(0.553516 -0.324926 0.76684)} Corner 3330 4539 {normal=(0.553516 -0.324926 0.76684)} Corner 3198 4541 {normal=(0.35063 -0.530205 0.771972)} Corner 3198 4542 {normal=(0.35063 -0.530205 0.771972)} Corner 3503 4542 {normal=(0.366828 -0.541804 0.756231)} Corner 3503 4543 {normal=(0.366828 -0.541804 0.756231)} Corner 2834 4845 {normal=(-0.211002 -0.430682 0.877492)} Corner 2834 4846 {normal=(-0.211002 -0.430682 0.877492)} Corner 2874 4846 {normal=(0.133989 -0.267693 0.954142)} Corner 2874 4847 {normal=(0.133989 -0.267693 0.954142)} Corner 4507 4877 {normal=(-0.349352 0.547163 -0.760635)} Corner 4507 4880 {normal=(-0.349352 0.547163 -0.760635)} Corner 4816 4881 {normal=(-0.250785 0.649269 -0.718023)} Corner 4498 4881 {normal=(-0.288199 0.617175 -0.732145)} Corner 4498 4882 {normal=(-0.288199 0.617175 -0.732145)} Corner 4816 4884 {normal=(-0.250785 0.649269 -0.718023)} Corner 5751 4885 {normal=(0.0427239 0.814894 -0.578033)} Corner 5290 4885 {normal=(-0.0427239 0.814894 -0.578033)} Corner 5290 4886 {normal=(-0.0427239 0.814894 -0.578033)} Corner 5751 4888 {normal=(0.0427239 0.814894 -0.578033)} Corner 4710 5051 {normal=(-0.561326 0.809276 -0.173162)} Corner 4710 5052 {normal=(-0.561326 0.809276 -0.173162)} Corner 5408 5094 {normal=(-0.0143571 -0.491652 -0.870673)} Corner 5408 5095 {normal=(-0.0143571 -0.491652 -0.870673)} Corner 5644 5095 {normal=(0.0143571 -0.491652 -0.870673)} Corner 5644 5096 {normal=(0.0143571 -0.491652 -0.870673)} Corner 5340 5097 {normal=(0.0364038 -0.995792 -0.0840993)} Corner 5408 5097 {normal=(0.0280337 -0.995996 -0.0848843)} Corner 5408 5098 {normal=(0.0280337 -0.995996 -0.0848843)} Corner 5022 5098 {normal=(0.064406 -0.994596 -0.0814278)} Corner 5022 5099 {normal=(0.064406 -0.994596 -0.0814278)} Corner 4995 5099 {normal=(0.064406 -0.994596 -0.0814278)} Corner 4995 5100 {normal=(0.064406 -0.994596 -0.0814278)} Corner 5340 5100 {normal=(0.0364038 -0.995792 -0.0840993)} Corner 5143 5101 {normal=(-0.210176 -0.977023 0.0353795)} Corner 5143 5102 {normal=(-0.210176 -0.977023 0.0353795)} Corner 5356 5102 {normal=(0.0407917 -0.991376 0.124537)} Corner 5356 5103 {normal=(0.0407917 -0.991376 0.124537)} Corner 5685 5105 {normal=(-0.00379442 -0.751915 -0.65925)} Corner 5356 5105 {normal=(0.00379442 -0.751915 -0.65925)} Corner 5356 5106 {normal=(0.00379442 -0.751915 -0.65925)} Corner 5351 5106 {normal=(0.00591479 -0.750718 -0.660597)} Corner 5351 5107 {normal=(0.00591479 -0.750718 -0.660597)} Corner 5688 5107 {normal=(-0.00591478 -0.750718 -0.660597)} Corner 5688 5108 {normal=(-0.00591478 -0.750718 -0.660597)} Corner 5685 5108 {normal=(-0.00379442 -0.751915 -0.65925)} Corner 5351 5109 {normal=(0.00605071 0.015879 -0.999856)} Corner 5351 5110 {normal=(0.00605071 0.015879 -0.999856)} Corner 5127 5110 {normal=(-0.208584 -0.065808 -0.975788)} Corner 5127 5111 {normal=(-0.208584 -0.065808 -0.975788)} Corner 5127 5113 {normal=(-0.208584 -0.065808 -0.975788)} Corner 5127 5114 {normal=(-0.208584 -0.065808 -0.975788)} Corner 5046 5114 {normal=(-0.599179 -0.615265 -0.512283)} Corner 5046 5115 {normal=(-0.599179 -0.615265 -0.512283)} Corner 5046 5117 {normal=(-0.599179 -0.615265 -0.512283)} Corner 5046 5118 {normal=(-0.599179 -0.615265 -0.512283)} Corner 5143 5118 {normal=(-0.210176 -0.977023 0.0353795)} Corner 5143 5119 {normal=(-0.210176 -0.977023 0.0353795)} Corner 4710 5145 {normal=(-0.561326 0.809276 -0.173162)} Corner 4977 5145 {normal=(-0.185775 0.953096 -0.238948)} Corner 4977 5146 {normal=(-0.185775 0.953096 -0.238948)} Corner 4710 5148 {normal=(-0.561326 0.809276 -0.173162)} Corner 5693 5165 {normal=(-0.069705 -0.315082 0.946501)} Corner 5340 5165 {normal=(0.069705 -0.315082 0.946501)} Corner 5340 5166 {normal=(0.069705 -0.315082 0.946501)} Corner 5693 5168 {normal=(-0.069705 -0.315082 0.946501)} Corner 4995 5174 {normal=(-0.582796 -0.404103 0.705018)} Corner 4995 5175 {normal=(-0.582796 -0.404103 0.705018)} Corner 7326 5257 {normal=(-0.478652 -0.312708 0.820431)} Corner 7326 5258 {normal=(-0.478652 -0.312708 0.820431)} Corner 7014 5258 {normal=(-0.430439 -0.374061 0.821463)} Corner 7014 5259 {normal=(-0.430439 -0.374061 0.821463)} Corner 6260 5261 {normal=(-0.297729 -0.393513 0.869773)} Corner 6260 5262 {normal=(-0.297729 -0.393513 0.869773)} Corner 5755 5262 {normal=(-0.100827 -0.362577 0.926484)} Corner 5755 5263 {normal=(-0.100827 -0.362577 0.926484)} Corner 6865 5266 {normal=(0.344294 -0.704071 -0.621085)} Corner 6865 5267 {normal=(0.344294 -0.704071 -0.621085)} Corner 6365 5267 {normal=(0.182637 -0.656204 -0.732148)} Corner 6365 5268 {normal=(0.182637 -0.656204 -0.732148)} Corner 6865 5269 {normal=(-0.364778 -0.532727 0.763635)} Corner 6865 5270 {normal=(-0.364778 -0.532727 0.763635)} Corner 7205 5270 {normal=(-0.420185 -0.533065 0.734361)} Corner 7205 5271 {normal=(-0.420185 -0.533065 0.734361)} Corner 7540 5273 {normal=(0.511544 -0.727638 -0.457017)} Corner 7205 5273 {normal=(0.447656 -0.725851 -0.52225)} Corner 7205 5274 {normal=(0.447656 -0.725851 -0.52225)} Corner 7540 5276 {normal=(0.511544 -0.727638 -0.457017)} Corner 5789 5281 {normal=(-0.0900699 -0.542758 0.835046)} Corner 5789 5282 {normal=(-0.0900699 -0.542758 0.835046)} Corner 6365 5282 {normal=(-0.242534 -0.538081 0.807246)} Corner 6365 5283 {normal=(-0.242534 -0.538081 0.807246)} Corner 6018 5301 {normal=(0.501227 -0.441034 -0.744487)} Corner 6018 5304 {normal=(0.501227 -0.441034 -0.744487)} Corner 8246 5409 {normal=(-0.78556 -0.219928 0.578384)} Corner 8144 5409 {normal=(-0.7761 -0.242131 0.582272)} Corner 8144 5410 {normal=(-0.7761 -0.242131 0.582272)} Corner 7945 5410 {normal=(-0.721022 -0.253366 0.644928)} Corner 7945 5411 {normal=(-0.721022 -0.253366 0.644928)} Corner 8246 5412 {normal=(-0.78556 -0.219928 0.578384)} Corner 7712 5413 {normal=(0.713774 -0.0394965 -0.699262)} Corner 7945 5413 {normal=(0.826316 -0.104772 -0.553375)} Corner 7945 5414 {normal=(0.826316 -0.104772 -0.553375)} Corner 7712 5416 {normal=(0.713774 -0.0394965 -0.699262)} Corner 8129 5418 {normal=(0.860401 -0.50959 -0.00537554)} Corner 8129 5419 {normal=(0.860401 -0.50959 -0.00537554)} Corner 7844 5419 {normal=(0.704506 -0.65055 -0.283649)} Corner 7844 5420 {normal=(0.704506 -0.65055 -0.283649)} Corner 8129 5421 {normal=(-0.426609 -0.509988 0.746938)} Corner 8129 5422 {normal=(-0.426609 -0.509988 0.746938)} Corner 8281 5422 {normal=(-0.477026 -0.513828 0.713041)} Corner 8281 5423 {normal=(-0.477026 -0.513828 0.713041)} Corner 8211 5423 {normal=(-0.766875 -0.224966 0.601077)} Corner 8211 5424 {normal=(-0.766875 -0.224966 0.601077)} Corner 8281 5425 {normal=(0.878097 -0.374463 0.297863)} Corner 8281 5426 {normal=(0.878097 -0.374463 0.297863)} Corner 7712 5509 {normal=(-0.560353 -0.284805 0.777747)} Corner 7712 5510 {normal=(-0.560353 -0.284805 0.777747)} Corner 7569 5510 {normal=(-0.491351 -0.317371 0.811079)} Corner 7569 5511 {normal=(-0.491351 -0.317371 0.811079)} Corner 7540 5513 {normal=(-0.366828 -0.541804 0.756231)} Corner 7540 5514 {normal=(-0.366828 -0.541804 0.756231)} Corner 7844 5514 {normal=(-0.35063 -0.530205 0.771972)} Corner 7844 5515 {normal=(-0.35063 -0.530205 0.771972)} Corner 8246 5817 {normal=(-0.189629 -0.289305 0.938266)} Corner 8246 5818 {normal=(-0.189629 -0.289305 0.938266)} Corner 8211 5818 {normal=(0.216775 -0.433703 0.874591)} Corner 8211 5819 {normal=(0.216775 -0.433703 0.874591)} Corner 6357 5845 {normal=(0.683281 0.713059 -0.157079)} Corner 6474 5845 {normal=(0.404849 0.554669 -0.726939)} Corner 6474 5846 {normal=(0.404849 0.554669 -0.726939)} Corner 6357 5848 {normal=(0.683281 0.713059 -0.157079)} Corner 6474 5850 {normal=(0.404849 0.554669 -0.726939)} Corner 6474 5851 {normal=(0.404849 0.554669 -0.726939)} Corner 6533 5851 {normal=(0.289474 0.581305 -0.760453)} Corner 6533 5852 {normal=(0.289474 0.581305 -0.760453)} Corner 6542 5854 {normal=(0.288199 0.617175 -0.732145)} Corner 6542 5855 {normal=(0.288199 0.617175 -0.732145)} Corner 6228 5855 {normal=(0.250785 0.649269 -0.718023)} Corner 6228 5856 {normal=(0.250785 0.649269 -0.718023)} Corner 6339 5985 {normal=(0.441021 0.88718 -0.135692)} Corner 6357 5985 {normal=(0.683281 0.713059 -0.157079)} Corner 6357 5986 {normal=(0.683281 0.713059 -0.157079)} Corner 6339 5988 {normal=(0.441021 0.88718 -0.135692)} Corner 6045 6017 {normal=(-0.064406 -0.994596 -0.0814278)} Corner 6018 6017 {normal=(-0.064406 -0.994596 -0.0814278)} Corner 6018 6018 {normal=(-0.064406 -0.994596 -0.0814278)} Corner 5644 6018 {normal=(-0.0280337 -0.995996 -0.0848844)} Corner 5644 6019 {normal=(-0.0280337 -0.995996 -0.0848844)} Corner 5693 6019 {normal=(-0.0364038 -0.995792 -0.0840993)} Corner 5693 6020 {normal=(-0.0364038 -0.995792 -0.0840993)} Corner 6045 6020 {normal=(-0.064406 -0.994596 -0.0814278)} Corner 5999 6021 {normal=(0.599179 -0.615265 -0.512283)} Corner 5999 6022 {normal=(0.599179 -0.615265 -0.512283)} Corner 5918 6022 {normal=(0.208584 -0.065808 -0.975788)} Corner 5918 6023 {normal=(0.208584 -0.065808 -0.975788)} Corner 5918 6025 {normal=(0.208584 -0.065808 -0.975788)} Corner 5918 6026 {normal=(0.208584 -0.065808 -0.975788)} Corner 5688 6026 {normal=(-0.00605071 0.015879 -0.999856)} Corner 5688 6027 {normal=(-0.00605071 0.015879 -0.999856)} Corner 5685 6029 {normal=(-0.0407917 -0.991376 0.124537)} Corner 5685 6030 {normal=(-0.0407917 -0.991376 0.124537)} Corner 5902 6030 {normal=(0.210176 -0.977023 0.0353795)} Corner 5902 6031 {normal=(0.210176 -0.977023 0.0353795)} Corner 5902 6033 {normal=(0.210176 -0.977023 0.0353795)} Corner 5902 6034 {normal=(0.210176 -0.977023 0.0353795)} Corner 5999 6034 {normal=(0.599179 -0.615265 -0.512283)} Corner 5999 6035 {normal=(0.599179 -0.615265 -0.512283)} Corner 6063 6062 {normal=(0.185775 0.953096 -0.238948)} Corner 6063 6063 {normal=(0.185775 0.953096 -0.238948)} Corner 6339 6063 {normal=(0.441021 0.88718 -0.135692)} Corner 6339 6064 {normal=(0.441021 0.88718 -0.135692)} Corner 6045 6085 {normal=(0.582796 -0.404103 0.705018)} Corner 6045 6086 {normal=(0.582796 -0.404103 0.705018)} Corner 3808 6201 {normal=(0.444346 -0.399563 0.801814)} Corner 3557 6201 {normal=(0.408803 -0.384712 0.827573)} Corner 3557 6202 {normal=(0.408803 -0.384712 0.827573)} Corner 3808 6204 {normal=(0.444346 -0.399563 0.801814)} Corner 3330 6205 {normal=(0.553516 -0.324926 0.76684)} Corner 3162 6205 {normal=(0.751666 -0.269599 0.601925)} Corner 3162 6206 {normal=(0.751666 -0.269599 0.601925)} Corner 3330 6208 {normal=(0.553516 -0.324926 0.76684)} Corner 4182 6309 {normal=(0.364778 -0.532727 0.763635)} Corner 4182 6310 {normal=(0.364778 -0.532727 0.763635)} Corner 4683 6310 {normal=(0.242534 -0.538081 0.807246)} Corner 4683 6311 {normal=(0.242534 -0.538081 0.807246)} Corner 3503 6313 {normal=(0.366828 -0.541804 0.756231)} Corner 3837 6313 {normal=(0.420185 -0.533065 0.734361)} Corner 3837 6314 {normal=(0.420185 -0.533065 0.734361)} Corner 3503 6316 {normal=(0.366828 -0.541804 0.756231)} Corner 2912 6317 {normal=(0.426609 -0.509988 0.746938)} Corner 2912 6318 {normal=(0.426609 -0.509988 0.746938)} Corner 3198 6318 {normal=(0.35063 -0.530205 0.771972)} Corner 3198 6319 {normal=(0.35063 -0.530205 0.771972)} Corner 4995 6414 {normal=(-0.582796 -0.404103 0.705018)} Corner 4995 6415 {normal=(-0.582796 -0.404103 0.705018)} Corner 5755 6573 {normal=(-0.100827 -0.362577 0.926484)} Corner 5286 6573 {normal=(0.102341 -0.364029 0.925748)} Corner 5286 6574 {normal=(0.102341 -0.364029 0.925748)} Corner 5755 6576 {normal=(-0.100827 -0.362577 0.926484)} Corner 7569 6577 {normal=(-0.491351 -0.317371 0.811079)} Corner 7326 6577 {normal=(-0.478652 -0.312708 0.820431)} Corner 7326 6578 {normal=(-0.478652 -0.312708 0.820431)} Corner 7569 6580 {normal=(-0.491351 -0.317371 0.811079)} Corner 7945 6581 {normal=(-0.721022 -0.253366 0.644928)} Corner 7945 6582 {normal=(-0.721022 -0.253366 0.644928)} Corner 7712 6582 {normal=(-0.560353 -0.284805 0.777747)} Corner 7712 6583 {normal=(-0.560353 -0.284805 0.777747)} Corner 5256 6681 {normal=(0.0900699 -0.542758 0.835046)} Corner 5256 6682 {normal=(0.0900699 -0.542758 0.835046)} Corner 5789 6682 {normal=(-0.0900699 -0.542758 0.835046)} Corner 5789 6683 {normal=(-0.0900699 -0.542758 0.835046)} Corner 6365 6685 {normal=(-0.242534 -0.538081 0.807246)} Corner 6865 6685 {normal=(-0.364778 -0.532727 0.763635)} Corner 6865 6686 {normal=(-0.364778 -0.532727 0.763635)} Corner 6365 6688 {normal=(-0.242534 -0.538081 0.807246)} Corner 7205 6689 {normal=(-0.420185 -0.533065 0.734361)} Corner 7205 6690 {normal=(-0.420185 -0.533065 0.734361)} Corner 7540 6690 {normal=(-0.366828 -0.541804 0.756231)} Corner 7540 6691 {normal=(-0.366828 -0.541804 0.756231)} Corner 7844 6693 {normal=(-0.35063 -0.530205 0.771972)} Corner 8129 6693 {normal=(-0.426609 -0.509988 0.746938)} Corner 8129 6694 {normal=(-0.426609 -0.509988 0.746938)} Corner 7844 6696 {normal=(-0.35063 -0.530205 0.771972)} Corner 5644 6713 {normal=(-0.0280337 -0.995996 -0.0848844)} Corner 5408 6713 {normal=(0.0280337 -0.995996 -0.0848843)} Corner 5408 6714 {normal=(0.0280337 -0.995996 -0.0848843)} Corner 5340 6714 {normal=(0.0364038 -0.995792 -0.0840993)} Corner 5340 6715 {normal=(0.0364038 -0.995792 -0.0840993)} Corner 5693 6715 {normal=(-0.0364038 -0.995792 -0.0840993)} Corner 5693 6716 {normal=(-0.0364038 -0.995792 -0.0840993)} Corner 5644 6716 {normal=(-0.0280337 -0.995996 -0.0848844)} Corner 6045 6799 {normal=(0.582796 -0.404103 0.705018)} Corner 6045 6800 {normal=(0.582796 -0.404103 0.705018)} Corner 5688 6873 {normal=(-0.00605071 0.015879 -0.999856)} Corner 5351 6873 {normal=(0.00605071 0.015879 -0.999856)} Corner 5351 6874 {normal=(0.00605071 0.015879 -0.999856)} Corner 5688 6876 {normal=(-0.00605071 0.015879 -0.999856)} Corner 5356 6877 {normal=(0.0407917 -0.991376 0.124537)} Corner 5356 6878 {normal=(0.0407917 -0.991376 0.124537)} Corner 5685 6878 {normal=(-0.0407917 -0.991376 0.124537)} Corner 5685 6879 {normal=(-0.0407917 -0.991376 0.124537)} Corner 6045 6961 {normal=(0.582796 -0.404103 0.705018)} Corner 6045 6962 {normal=(0.582796 -0.404103 0.705018)} Corner 5693 6962 {normal=(-0.069705 -0.315082 0.946501)} Corner 5693 6963 {normal=(-0.069705 -0.315082 0.946501)} Corner 5700 6977 {normal=(0.151259 0.959982 -0.235702)} Corner 6063 6977 {normal=(0.185775 0.953096 -0.238948)} Corner 6063 6978 {normal=(0.185775 0.953096 -0.238948)} Corner 5700 6980 {normal=(0.151259 0.959982 -0.235702)} Corner 5751 7077 {normal=(0.0427239 0.814894 -0.578033)} Corner 6228 7079 {normal=(0.250785 0.649269 -0.718023)} Corner 6228 7080 {normal=(0.250785 0.649269 -0.718023)} Corner 5751 7080 {normal=(0.0427239 0.814894 -0.578033)} Corner 6542 7081 {normal=(0.288199 0.617175 -0.732145)} Corner 6533 7083 {normal=(0.289474 0.581305 -0.760453)} Corner 6533 7084 {normal=(0.289474 0.581305 -0.760453)} Corner 6542 7084 {normal=(0.288199 0.617175 -0.732145)} Corner 8211 7109 {normal=(-0.766875 -0.224966 0.601077)} Corner 8246 7109 {normal=(-0.78556 -0.219928 0.578384)} Corner 8246 7110 {normal=(-0.78556 -0.219928 0.578384)} Corner 8211 7112 {normal=(-0.766875 -0.224966 0.601077)} Corner 7844 7278 {normal=(0.704506 -0.65055 -0.283649)} Corner 7844 7279 {normal=(0.704506 -0.65055 -0.283649)} Corner 7540 7279 {normal=(0.511544 -0.727638 -0.457017)} Corner 7540 7280 {normal=(0.511544 -0.727638 -0.457017)} Corner 7569 7281 {normal=(0.667057 -0.0582146 -0.742729)} Corner 7712 7281 {normal=(0.713774 -0.0394965 -0.699262)} Corner 7712 7282 {normal=(0.713774 -0.0394965 -0.699262)} Corner 7569 7284 {normal=(0.667057 -0.0582146 -0.742729)} Corner 8281 7310 {normal=(0.878097 -0.374463 0.297863)} Corner 8281 7311 {normal=(0.878097 -0.374463 0.297863)} Corner 8129 7311 {normal=(0.860401 -0.50959 -0.00537554)} Corner 8129 7312 {normal=(0.860401 -0.50959 -0.00537554)} Corner 6365 7346 {normal=(0.182637 -0.656204 -0.732148)} Corner 6365 7347 {normal=(0.182637 -0.656204 -0.732148)} Corner 5789 7347 {normal=(0.0516286 -0.609591 -0.791033)} Corner 5789 7348 {normal=(0.0516286 -0.609591 -0.791033)} Corner 7205 7350 {normal=(0.447656 -0.725851 -0.52225)} Corner 7205 7351 {normal=(0.447656 -0.725851 -0.52225)} Corner 6865 7351 {normal=(0.344294 -0.704071 -0.621085)} Corner 6865 7352 {normal=(0.344294 -0.704071 -0.621085)} Corner 5755 7354 {normal=(0.0801767 -0.0525316 -0.995395)} Corner 5755 7355 {normal=(0.0801767 -0.0525316 -0.995395)} Corner 6260 7355 {normal=(0.262798 -0.0164802 -0.96471)} Corner 6260 7356 {normal=(0.262798 -0.0164802 -0.96471)} Corner 4995 7401 {normal=(-0.582796 -0.404103 0.705018)} Corner 5340 7403 {normal=(0.069705 -0.315082 0.946501)} Corner 5340 7404 {normal=(0.069705 -0.315082 0.946501)} Corner 4995 7404 {normal=(-0.582796 -0.404103 0.705018)} Corner 4977 7417 {normal=(-0.185775 0.953096 -0.238948)} Corner 5333 7417 {normal=(-0.151259 0.959982 -0.235702)} Corner 5333 7418 {normal=(-0.151259 0.959982 -0.235702)} Corner 4977 7420 {normal=(-0.185775 0.953096 -0.238948)} Corner 5290 7517 {normal=(-0.0427239 0.814894 -0.578033)} Corner 5290 7518 {normal=(-0.0427239 0.814894 -0.578033)} Corner 4816 7518 {normal=(-0.250785 0.649269 -0.718023)} Corner 4816 7519 {normal=(-0.250785 0.649269 -0.718023)} Corner 4498 7521 {normal=(-0.288199 0.617175 -0.732145)} Corner 4498 7522 {normal=(-0.288199 0.617175 -0.732145)} Corner 4507 7522 {normal=(-0.349352 0.547163 -0.760635)} Corner 4507 7523 {normal=(-0.349352 0.547163 -0.760635)} Corner 2874 7549 {normal=(0.816706 -0.234509 0.527254)} Corner 2834 7549 {normal=(0.79557 -0.244237 0.554452)} Corner 2834 7550 {normal=(0.79557 -0.244237 0.554452)} Corner 2874 7552 {normal=(0.816706 -0.234509 0.527254)} Corner 3503 7710 {normal=(-0.511544 -0.727638 -0.457017)} Corner 3503 7711 {normal=(-0.511544 -0.727638 -0.457017)} Corner 3198 7711 {normal=(-0.704506 -0.65055 -0.283649)} Corner 3198 7712 {normal=(-0.704506 -0.65055 -0.283649)} Corner 2912 7738 {normal=(-0.860401 -0.50959 -0.00537554)} Corner 2912 7739 {normal=(-0.860401 -0.50959 -0.00537554)} Corner 2764 7739 {normal=(-0.878097 -0.374463 0.297863)} Corner 2764 7740 {normal=(-0.878097 -0.374463 0.297863)} Corner 5256 7774 {normal=(-0.0516286 -0.609591 -0.791033)} Corner 5256 7775 {normal=(-0.0516286 -0.609591 -0.791033)} Corner 4683 7775 {normal=(-0.182637 -0.656204 -0.732148)} Corner 4683 7776 {normal=(-0.182637 -0.656204 -0.732148)} Corner 4182 7778 {normal=(-0.344294 -0.704071 -0.621085)} Corner 4182 7779 {normal=(-0.344294 -0.704071 -0.621085)} Corner 3837 7779 {normal=(-0.447656 -0.725851 -0.52225)} Corner 3837 7780 {normal=(-0.447656 -0.725851 -0.52225)} Corner 4814 7782 {normal=(-0.28172 -0.0319873 -0.958963)} Corner 4814 7783 {normal=(-0.28172 -0.0319873 -0.958963)} Corner 5286 7783 {normal=(-0.0834048 -0.0547639 -0.99501)} Corner 5286 7784 {normal=(-0.0834048 -0.0547639 -0.99501)} Corner 4302 7785 {normal=(-0.513976 -0.0141403 -0.857688)} Corner 4302 7788 {normal=(-0.513976 -0.0141403 -0.857688)} Corner 2961 8106 {normal=(-0.884871 -0.400687 0.237599)} Corner 2961 8107 {normal=(-0.884871 -0.400687 0.237599)} Corner 8246 8441 {normal=(-0.189629 -0.289305 0.938266)} Corner 8144 8443 {normal=(0.880972 -0.42073 0.216505)} Corner 8144 8444 {normal=(0.880972 -0.42073 0.216505)} Corner 8246 8444 {normal=(-0.189629 -0.289305 0.938266)} Corner 8144 8445 {normal=(0.880972 -0.42073 0.216505)} Corner 8144 8446 {normal=(0.880972 -0.42073 0.216505)} Corner 3557 9441 {normal=(-0.667425 -0.206856 -0.71537)} Corner 3808 9441 {normal=(-0.640347 -0.11458 -0.759492)} Corner 3808 9442 {normal=(-0.640347 -0.11458 -0.759492)} Corner 3557 9444 {normal=(-0.667425 -0.206856 -0.71537)} Corner 4089 9446 {normal=(-0.617913 -0.0446059 -0.78498)} Corner 4089 9447 {normal=(-0.617913 -0.0446059 -0.78498)} Corner 4302 9447 {normal=(-0.513976 -0.0141403 -0.857688)} Corner 4302 9448 {normal=(-0.513976 -0.0141403 -0.857688)} Corner 2961 11999 {normal=(-0.884871 -0.400687 0.237599)} Corner 2961 12000 {normal=(-0.884871 -0.400687 0.237599)} Corner 3162 12002 {normal=(-0.858129 -0.256647 -0.444687)} Corner 3162 12003 {normal=(-0.858129 -0.256647 -0.444687)} Corner 3330 12003 {normal=(-0.746695 -0.268902 -0.608389)} Corner 3330 12004 {normal=(-0.746695 -0.268902 -0.608389)} Corner 6799 13853 {normal=(0.473496 0.027461 -0.880368)} Corner 7014 13853 {normal=(0.578853 0.0194597 -0.815199)} Corner 7014 13854 {normal=(0.578853 0.0194597 -0.815199)} Corner 6799 13856 {normal=(0.473496 0.027461 -0.880368)} Corner 7326 13858 {normal=(0.615045 -0.0398836 -0.787483)} Corner 7326 13859 {normal=(0.615045 -0.0398836 -0.787483)} Corner 7569 13859 {normal=(0.667057 -0.0582146 -0.742729)} Corner 7569 13860 {normal=(0.667057 -0.0582146 -0.742729)} Corner 6260 13865 {normal=(0.262798 -0.0164802 -0.96471)} Corner 6799 13865 {normal=(0.473496 0.027461 -0.880368)} Corner 6799 13866 {normal=(0.473496 0.027461 -0.880368)} Corner 6260 13868 {normal=(0.262798 -0.0164802 -0.96471)} Corner 8144 16301 {normal=(0.880972 -0.42073 0.216505)} Corner 8144 16304 {normal=(0.880972 -0.42073 0.216505)} Corner 3756 18061 {normal=(-0.558995 0.374038 -0.740014)} Corner 3362 18061 {normal=(-0.710835 0.279155 -0.64559)} Corner 3362 18062 {normal=(-0.710835 0.279155 -0.64559)} Corner 3756 18064 {normal=(-0.558995 0.374038 -0.740014)} Corner 3040 18065 {normal=(-0.864012 0.141306 -0.483234)} Corner 2815 18065 {normal=(-0.961691 -0.0102842 -0.273944)} Corner 2815 18066 {normal=(-0.961691 -0.0102842 -0.273944)} Corner 3040 18068 {normal=(-0.864012 0.141306 -0.483234)} Corner 3362 18069 {normal=(0.0792245 -0.845738 -0.527684)} Corner 3040 18071 {normal=(0.0708354 -0.857905 -0.508903)} Corner 3040 18072 {normal=(0.0708354 -0.857905 -0.508903)} Corner 3362 18072 {normal=(0.0792245 -0.845738 -0.527684)} Corner 2762 18073 {normal=(-0.988736 -0.125605 -0.0813876)} Corner 2796 18073 {normal=(-0.958415 -0.241732 0.151678)} Corner 2796 18074 {normal=(-0.958415 -0.241732 0.151678)} Corner 2762 18076 {normal=(-0.988736 -0.125605 -0.0813876)} Corner 2815 18077 {normal=(0.077967 -0.860009 -0.504287)} Corner 2762 18079 {normal=(0.081665 -0.862691 -0.499094)} Corner 2762 18080 {normal=(0.081665 -0.862691 -0.499094)} Corner 2815 18080 {normal=(0.077967 -0.860009 -0.504287)} Corner 2902 18081 {normal=(-0.913489 -0.294208 0.281034)} Corner 3011 18081 {normal=(-0.938121 -0.257275 0.231817)} Corner 3011 18082 {normal=(-0.938121 -0.257275 0.231817)} Corner 2902 18084 {normal=(-0.913489 -0.294208 0.281034)} Corner 2796 18085 {normal=(0.088033 -0.867448 -0.489678)} Corner 2902 18087 {normal=(0.10042 -0.889791 -0.445182)} Corner 2902 18088 {normal=(0.10042 -0.889791 -0.445182)} Corner 2796 18088 {normal=(0.088033 -0.867448 -0.489678)} Corner 3060 18089 {normal=(-0.937374 -0.250542 0.241988)} Corner 3137 18089 {normal=(-0.891698 -0.290868 0.346801)} Corner 3137 18090 {normal=(-0.891698 -0.290868 0.346801)} Corner 3060 18092 {normal=(-0.937374 -0.250542 0.241988)} Corner 3011 18093 {normal=(0.111344 -0.916876 -0.383328)} Corner 3060 18095 {normal=(0.10954 -0.931334 -0.3473)} Corner 3060 18096 {normal=(0.10954 -0.931334 -0.3473)} Corner 3011 18096 {normal=(0.111344 -0.916876 -0.383328)} Corner 3247 18097 {normal=(-0.851895 -0.312991 0.419895)} Corner 3385 18097 {normal=(-0.814744 -0.326891 0.478889)} Corner 3385 18098 {normal=(-0.814744 -0.326891 0.478889)} Corner 3247 18100 {normal=(-0.851895 -0.312991 0.419895)} Corner 3137 18101 {normal=(0.0781205 -0.9244 -0.373339)} Corner 3247 18103 {normal=(0.0561322 -0.918799 -0.390713)} Corner 3247 18104 {normal=(0.0561322 -0.918799 -0.390713)} Corner 3137 18104 {normal=(0.0781205 -0.9244 -0.373339)} Corner 3535 18105 {normal=(-0.640406 -0.40235 0.654213)} Corner 3874 18105 {normal=(-0.336249 -0.471609 0.815182)} Corner 3874 18106 {normal=(-0.336249 -0.471609 0.815182)} Corner 3535 18108 {normal=(-0.640406 -0.40235 0.654213)} Corner 3385 18109 {normal=(0.0476235 -0.926137 -0.37417)} Corner 3535 18111 {normal=(0.0249524 -0.920545 -0.389838)} Corner 3535 18112 {normal=(0.0249524 -0.920545 -0.389838)} Corner 3385 18112 {normal=(0.0476235 -0.926137 -0.37417)} Corner 4378 18113 {normal=(-0.204971 -0.484693 0.850329)} Corner 4975 18113 {normal=(-0.119172 -0.491285 0.862808)} Corner 4975 18114 {normal=(-0.119172 -0.491285 0.862808)} Corner 4378 18116 {normal=(-0.204971 -0.484693 0.850329)} Corner 3874 18117 {normal=(0.00341017 -0.915846 -0.401514)} Corner 4378 18119 {normal=(-0.0172516 -0.910101 -0.414028)} Corner 4378 18120 {normal=(-0.0172516 -0.910101 -0.414028)} Corner 3874 18120 {normal=(0.00341017 -0.915846 -0.401514)} Corner 5349 18121 {normal=(-0.0324912 -0.495008 0.868281)} Corner 5731 18121 {normal=(0.0323048 -0.495011 0.868286)} Corner 5731 18122 {normal=(0.0323048 -0.495011 0.868286)} Corner 5349 18124 {normal=(-0.0324912 -0.495008 0.868281)} Corner 4975 18125 {normal=(-0.0274204 -0.908108 -0.417837)} Corner 5349 18127 {normal=(-0.0184112 -0.907766 -0.419074)} Corner 5349 18128 {normal=(-0.0184112 -0.907766 -0.419074)} Corner 4975 18128 {normal=(-0.0274204 -0.908108 -0.417837)} Corner 6106 18129 {normal=(0.116777 -0.491425 0.863055)} Corner 6715 18129 {normal=(0.198405 -0.485351 0.85151)} Corner 6715 18130 {normal=(0.198405 -0.485351 0.85151)} Corner 6106 18132 {normal=(0.116777 -0.491425 0.863055)} Corner 5731 18133 {normal=(0.0180554 -0.908014 -0.418551)} Corner 6106 18135 {normal=(0.0272439 -0.90845 -0.417105)} Corner 6106 18136 {normal=(0.0272439 -0.90845 -0.417105)} Corner 5731 18136 {normal=(0.0180554 -0.908014 -0.418551)} Corner 7252 18137 {normal=(0.326415 -0.473252 0.818221)} Corner 7597 18137 {normal=(0.636156 -0.404153 0.657241)} Corner 7597 18138 {normal=(0.636156 -0.404153 0.657241)} Corner 7252 18140 {normal=(0.326415 -0.473252 0.818221)} Corner 6715 18141 {normal=(0.0168663 -0.910328 -0.413544)} Corner 7252 18143 {normal=(-0.00343449 -0.915854 -0.401497)} Corner 7252 18144 {normal=(-0.00343449 -0.915854 -0.401497)} Corner 6715 18144 {normal=(0.0168663 -0.910328 -0.413544)} Corner 7748 18145 {normal=(0.815126 -0.326705 0.478365)} Corner 7880 18145 {normal=(0.852439 -0.3125 0.419156)} Corner 7880 18146 {normal=(0.852439 -0.3125 0.419156)} Corner 7748 18148 {normal=(0.815126 -0.326705 0.478365)} Corner 7597 18149 {normal=(-0.0248163 -0.920525 -0.389895)} Corner 7748 18151 {normal=(-0.0474756 -0.926197 -0.374039)} Corner 7748 18152 {normal=(-0.0474756 -0.926197 -0.374039)} Corner 7597 18152 {normal=(-0.0248163 -0.920525 -0.389895)} Corner 7996 18153 {normal=(0.892264 -0.290115 0.345973)} Corner 8101 18153 {normal=(0.937808 -0.249594 0.241285)} Corner 8101 18154 {normal=(0.937808 -0.249594 0.241285)} Corner 7996 18156 {normal=(0.892264 -0.290115 0.345973)} Corner 7880 18157 {normal=(-0.055943 -0.918843 -0.390638)} Corner 7996 18159 {normal=(-0.0779239 -0.924462 -0.373227)} Corner 7996 18160 {normal=(-0.0779239 -0.924462 -0.373227)} Corner 7880 18160 {normal=(-0.055943 -0.918843 -0.390638)} Corner 8152 18161 {normal=(0.93859 -0.256219 0.231087)} Corner 8226 18161 {normal=(0.914162 -0.292919 0.280189)} Corner 8226 18162 {normal=(0.914162 -0.292919 0.280189)} Corner 8152 18164 {normal=(0.93859 -0.256219 0.231087)} Corner 8101 18165 {normal=(-0.109269 -0.931361 -0.347315)} Corner 8152 18167 {normal=(-0.111136 -0.916888 -0.38336)} Corner 8152 18168 {normal=(-0.111136 -0.916888 -0.38336)} Corner 8101 18168 {normal=(-0.109269 -0.931361 -0.347315)} Corner 8331 18169 {normal=(0.95887 -0.240165 0.151292)} Corner 8362 18169 {normal=(0.988938 -0.124397 -0.0807904)} Corner 8362 18170 {normal=(0.988938 -0.124397 -0.0807904)} Corner 8331 18172 {normal=(0.95887 -0.240165 0.151292)} Corner 8226 18173 {normal=(-0.100359 -0.889822 -0.445134)} Corner 8331 18175 {normal=(-0.0880269 -0.867435 -0.489702)} Corner 8331 18176 {normal=(-0.0880269 -0.867435 -0.489702)} Corner 8226 18176 {normal=(-0.100359 -0.889822 -0.445134)} Corner 8306 18177 {normal=(0.96207 -0.00990906 -0.272624)} Corner 8112 18177 {normal=(0.864848 0.140943 -0.481844)} Corner 8112 18178 {normal=(0.864848 0.140943 -0.481844)} Corner 8306 18180 {normal=(0.96207 -0.00990906 -0.272624)} Corner 8362 18181 {normal=(-0.0817346 -0.862669 -0.49912)} Corner 8306 18183 {normal=(-0.0780726 -0.85995 -0.504372)} Corner 8306 18184 {normal=(-0.0780726 -0.85995 -0.504372)} Corner 8362 18184 {normal=(-0.0817346 -0.862669 -0.49912)} Corner 7771 18185 {normal=(0.711721 0.278517 -0.644889)} Corner 7362 18185 {normal=(0.559223 0.373406 -0.74016)} Corner 7362 18186 {normal=(0.559223 0.373406 -0.74016)} Corner 7771 18188 {normal=(0.711721 0.278517 -0.644889)} Corner 8112 18189 {normal=(-0.0709441 -0.857857 -0.508968)} Corner 7771 18191 {normal=(-0.0793607 -0.845671 -0.527771)} Corner 7771 18192 {normal=(-0.0793607 -0.845671 -0.527771)} Corner 8112 18192 {normal=(-0.0709441 -0.857857 -0.508968)} Corner 6815 18193 {normal=(0.445628 0.428103 -0.786221)} Corner 6254 18193 {normal=(0.328836 0.463674 -0.822723)} Corner 6254 18194 {normal=(0.328836 0.463674 -0.822723)} Corner 6815 18196 {normal=(0.445628 0.428103 -0.786221)} Corner 7362 18197 {normal=(-0.0964896 -0.822636 -0.560321)} Corner 6815 18199 {normal=(-0.130008 -0.800592 -0.584937)} Corner 6815 18200 {normal=(-0.130008 -0.800592 -0.584937)} Corner 7362 18200 {normal=(-0.0964896 -0.822636 -0.560321)} Corner 5787 18201 {normal=(0.126208 0.491046 -0.861943)} Corner 5344 18201 {normal=(-0.126208 0.491046 -0.861943)} Corner 5344 18202 {normal=(-0.126208 0.491046 -0.861943)} Corner 5787 18204 {normal=(0.126208 0.491046 -0.861943)} Corner 6254 18205 {normal=(-0.168619 -0.773029 -0.611551)} Corner 5787 18207 {normal=(-0.0861462 -0.776751 -0.623888)} Corner 5787 18208 {normal=(-0.0861462 -0.776751 -0.623888)} Corner 6254 18208 {normal=(-0.168619 -0.773029 -0.611551)} Corner 4901 18209 {normal=(-0.329294 0.463804 -0.822467)} Corner 4301 18209 {normal=(-0.446147 0.428522 -0.785698)} Corner 4301 18210 {normal=(-0.446147 0.428522 -0.785698)} Corner 4901 18212 {normal=(-0.329294 0.463804 -0.822467)} Corner 5344 18213 {normal=(0.0861644 -0.776713 -0.623933)} Corner 4901 18215 {normal=(0.168696 -0.772941 -0.61164)} Corner 4901 18216 {normal=(0.168696 -0.772941 -0.61164)} Corner 5344 18216 {normal=(0.0861644 -0.776713 -0.623933)} Corner 4301 18217 {normal=(0.130155 -0.800524 -0.584996)} Corner 3756 18219 {normal=(0.0964415 -0.822654 -0.560303)} Corner 3756 18220 {normal=(0.0964415 -0.822654 -0.560303)} Corner 4301 18220 {normal=(0.130155 -0.800524 -0.584996)} Corner 4301 22137 {normal=(-0.446147 0.428522 -0.785698)} Corner 4301 22138 {normal=(-0.446147 0.428522 -0.785698)} Corner 3756 22138 {normal=(-0.558995 0.374038 -0.740014)} Corner 3756 22139 {normal=(-0.558995 0.374038 -0.740014)} Corner 5344 22141 {normal=(-0.126208 0.491046 -0.861943)} Corner 5344 22142 {normal=(-0.126208 0.491046 -0.861943)} Corner 4901 22142 {normal=(-0.329294 0.463804 -0.822467)} Corner 4901 22143 {normal=(-0.329294 0.463804 -0.822467)} Corner 6254 22145 {normal=(0.328836 0.463674 -0.822723)} Corner 6254 22146 {normal=(0.328836 0.463674 -0.822723)} Corner 5787 22146 {normal=(0.126208 0.491046 -0.861943)} Corner 5787 22147 {normal=(0.126208 0.491046 -0.861943)} Corner 7362 22149 {normal=(0.559223 0.373406 -0.74016)} Corner 7362 22150 {normal=(0.559223 0.373406 -0.74016)} Corner 6815 22150 {normal=(0.445628 0.428103 -0.786221)} Corner 6815 22151 {normal=(0.445628 0.428103 -0.786221)} Corner 8112 22153 {normal=(0.864848 0.140943 -0.481844)} Corner 8112 22154 {normal=(0.864848 0.140943 -0.481844)} Corner 7771 22154 {normal=(0.711721 0.278517 -0.644889)} Corner 7771 22155 {normal=(0.711721 0.278517 -0.644889)} Corner 8362 22157 {normal=(0.988938 -0.124397 -0.0807904)} Corner 8362 22158 {normal=(0.988938 -0.124397 -0.0807904)} Corner 8306 22158 {normal=(0.96207 -0.00990906 -0.272624)} Corner 8306 22159 {normal=(0.96207 -0.00990906 -0.272624)} Corner 8226 22161 {normal=(0.914162 -0.292919 0.280189)} Corner 8226 22162 {normal=(0.914162 -0.292919 0.280189)} Corner 8331 22162 {normal=(0.95887 -0.240165 0.151292)} Corner 8331 22163 {normal=(0.95887 -0.240165 0.151292)} Corner 8101 22165 {normal=(0.937808 -0.249594 0.241285)} Corner 8101 22166 {normal=(0.937808 -0.249594 0.241285)} Corner 8152 22166 {normal=(0.93859 -0.256219 0.231087)} Corner 8152 22167 {normal=(0.93859 -0.256219 0.231087)} Corner 7880 22169 {normal=(0.852439 -0.3125 0.419156)} Corner 7880 22170 {normal=(0.852439 -0.3125 0.419156)} Corner 7996 22170 {normal=(0.892264 -0.290115 0.345973)} Corner 7996 22171 {normal=(0.892264 -0.290115 0.345973)} Corner 7597 22173 {normal=(0.636156 -0.404153 0.657241)} Corner 7597 22174 {normal=(0.636156 -0.404153 0.657241)} Corner 7748 22174 {normal=(0.815126 -0.326705 0.478365)} Corner 7748 22175 {normal=(0.815126 -0.326705 0.478365)} Corner 6715 22177 {normal=(0.198405 -0.485351 0.85151)} Corner 6715 22178 {normal=(0.198405 -0.485351 0.85151)} Corner 7252 22178 {normal=(0.326415 -0.473252 0.818221)} Corner 7252 22179 {normal=(0.326415 -0.473252 0.818221)} Corner 5731 22181 {normal=(0.0323048 -0.495011 0.868286)} Corner 5731 22182 {normal=(0.0323048 -0.495011 0.868286)} Corner 6106 22182 {normal=(0.116777 -0.491425 0.863055)} Corner 6106 22183 {normal=(0.116777 -0.491425 0.863055)} Corner 4975 22185 {normal=(-0.119172 -0.491285 0.862808)} Corner 4975 22186 {normal=(-0.119172 -0.491285 0.862808)} Corner 5349 22186 {normal=(-0.0324912 -0.495008 0.868281)} Corner 5349 22187 {normal=(-0.0324912 -0.495008 0.868281)} Corner 3874 22189 {normal=(-0.336249 -0.471609 0.815182)} Corner 3874 22190 {normal=(-0.336249 -0.471609 0.815182)} Corner 4378 22190 {normal=(-0.204971 -0.484693 0.850329)} Corner 4378 22191 {normal=(-0.204971 -0.484693 0.850329)} Corner 3385 22193 {normal=(-0.814744 -0.326891 0.478889)} Corner 3385 22194 {normal=(-0.814744 -0.326891 0.478889)} Corner 3535 22194 {normal=(-0.640406 -0.40235 0.654213)} Corner 3535 22195 {normal=(-0.640406 -0.40235 0.654213)} Corner 3137 22197 {normal=(-0.891698 -0.290868 0.346801)} Corner 3137 22198 {normal=(-0.891698 -0.290868 0.346801)} Corner 3247 22198 {normal=(-0.851895 -0.312991 0.419895)} Corner 3247 22199 {normal=(-0.851895 -0.312991 0.419895)} Corner 3011 22201 {normal=(-0.938121 -0.257275 0.231817)} Corner 3011 22202 {normal=(-0.938121 -0.257275 0.231817)} Corner 3060 22202 {normal=(-0.937374 -0.250542 0.241988)} Corner 3060 22203 {normal=(-0.937374 -0.250542 0.241988)} Corner 2796 22205 {normal=(-0.958415 -0.241732 0.151678)} Corner 2796 22206 {normal=(-0.958415 -0.241732 0.151678)} Corner 2902 22206 {normal=(-0.913489 -0.294208 0.281034)} Corner 2902 22207 {normal=(-0.913489 -0.294208 0.281034)} Corner 2815 22209 {normal=(-0.961691 -0.0102842 -0.273944)} Corner 2815 22210 {normal=(-0.961691 -0.0102842 -0.273944)} Corner 2762 22210 {normal=(-0.988736 -0.125605 -0.0813876)} Corner 2762 22211 {normal=(-0.988736 -0.125605 -0.0813876)} Corner 3362 22213 {normal=(-0.710835 0.279155 -0.64559)} Corner 3362 22214 {normal=(-0.710835 0.279155 -0.64559)} Corner 3040 22214 {normal=(-0.864012 0.141306 -0.483234)} Corner 3040 22215 {normal=(-0.864012 0.141306 -0.483234)} Corner 6799 24041 {normal=(0.473496 0.027461 -0.880368)} Corner 6799 24042 {normal=(0.473496 0.027461 -0.880368)} Corner 7014 24045 {normal=(0.578853 0.0194597 -0.815199)} Corner 7326 24045 {normal=(0.615045 -0.0398836 -0.787483)} Corner 7326 24046 {normal=(0.615045 -0.0398836 -0.787483)} Corner 7014 24048 {normal=(0.578853 0.0194597 -0.815199)} Corner 3330 24877 {normal=(-0.746695 -0.268902 -0.608389)} Corner 3557 24877 {normal=(-0.667425 -0.206856 -0.71537)} Corner 3557 24878 {normal=(-0.667425 -0.206856 -0.71537)} Corner 3330 24880 {normal=(-0.746695 -0.268902 -0.608389)} Corner 3808 25833 {normal=(-0.640347 -0.11458 -0.759492)} Corner 4089 25833 {normal=(-0.617913 -0.0446059 -0.78498)} Corner 4089 25834 {normal=(-0.617913 -0.0446059 -0.78498)} Corner 3808 25836 {normal=(-0.640347 -0.11458 -0.759492)} Corner 11025 27554 {normal=(0.99662 -0.00203873 0.0821272)} Corner 11025 27555 {normal=(0.99662 -0.00203873 0.0821272)} Corner 11025 27557 {normal=(0.99662 -0.00203873 0.0821272)} Corner 11025 27558 {normal=(0.99662 -0.00203873 0.0821272)} Corner 10973 27558 {normal=(0.971574 -0.179714 -0.154099)} Corner 10973 27559 {normal=(0.971574 -0.179714 -0.154099)} Corner 10973 27561 {normal=(0.971574 -0.179714 -0.154099)} Corner 10973 27562 {normal=(0.971574 -0.179714 -0.154099)} Corner 10993 27562 {normal=(0.988649 -0.149506 -0.0148549)} Corner 10993 27563 {normal=(0.988649 -0.149506 -0.0148549)} Corner 10993 27565 {normal=(0.988649 -0.149506 -0.0148549)} Corner 10993 27566 {normal=(0.988649 -0.149506 -0.0148549)} Corner 10967 27566 {normal=(0.931179 -0.25569 -0.259862)} Corner 10967 27567 {normal=(0.931179 -0.25569 -0.259862)} Corner 10967 27569 {normal=(0.931179 -0.25569 -0.259862)} Corner 10967 27570 {normal=(0.931179 -0.25569 -0.259862)} Corner 10942 27570 {normal=(0.762788 -0.149801 -0.629059)} Corner 10942 27571 {normal=(0.762788 -0.149801 -0.629059)} Corner 10792 27573 {normal=(-0.188212 0.981655 0.0304768)} Corner 10789 27573 {normal=(-0.18176 0.966731 -0.179987)} Corner 10789 27574 {normal=(-0.18176 0.966731 -0.179987)} Corner 10792 27576 {normal=(-0.188212 0.981655 0.0304768)} Corner 10792 27577 {normal=(-0.188212 0.981655 0.0304768)} Corner 10759 27578 {normal=(-0.155759 0.953101 0.259494)} Corner 10759 27579 {normal=(-0.155759 0.953101 0.259494)} Corner 10791 27579 {normal=(-0.186546 0.957772 0.218801)} Corner 10791 27580 {normal=(-0.186546 0.957772 0.218801)} Corner 10792 27580 {normal=(-0.188212 0.981655 0.0304768)} Corner 10632 27581 {normal=(0.128366 0.989626 0.0645226)} Corner 10629 27581 {normal=(-0.311363 0.877625 -0.364456)} Corner 10629 27582 {normal=(-0.311363 0.877625 -0.364456)} Corner 10632 27584 {normal=(0.128366 0.989626 0.0645226)} Corner 10632 27585 {normal=(0.128366 0.989626 0.0645226)} Corner 10537 27586 {normal=(-0.344087 0.938725 0.0199899)} Corner 10537 27587 {normal=(-0.344087 0.938725 0.0199899)} Corner 10612 27587 {normal=(0.284248 0.901473 0.326419)} Corner 10612 27588 {normal=(0.284248 0.901473 0.326419)} Corner 10632 27588 {normal=(0.128366 0.989626 0.0645226)} Corner 10710 27589 {normal=(0.0613034 0.992545 0.105342)} Corner 10700 27589 {normal=(-0.420847 0.873889 -0.243324)} Corner 10700 27590 {normal=(-0.420847 0.873889 -0.243324)} Corner 10710 27592 {normal=(0.0613034 0.992545 0.105342)} Corner 10710 27593 {normal=(0.0613034 0.992545 0.105342)} Corner 10655 27594 {normal=(-0.399347 0.911836 0.0952736)} Corner 10655 27595 {normal=(-0.399347 0.911836 0.0952736)} Corner 10702 27595 {normal=(0.260155 0.910501 0.321415)} Corner 10702 27596 {normal=(0.260155 0.910501 0.321415)} Corner 10710 27596 {normal=(0.0613034 0.992545 0.105342)} Corner 10504 27597 {normal=(-0.215872 0.975201 -0.0488078)} Corner 10490 27597 {normal=(-0.677263 0.672229 -0.299037)} Corner 10490 27598 {normal=(-0.677263 0.672229 -0.299037)} Corner 10504 27600 {normal=(-0.215872 0.975201 -0.0488078)} Corner 10504 27601 {normal=(-0.215872 0.975201 -0.0488078)} Corner 10469 27602 {normal=(-0.633796 0.773171 0.0225567)} Corner 10469 27603 {normal=(-0.633796 0.773171 0.0225567)} Corner 10507 27603 {normal=(0.0180682 0.989736 0.14176)} Corner 10507 27604 {normal=(0.0180682 0.989736 0.14176)} Corner 10504 27604 {normal=(-0.215872 0.975201 -0.0488078)} Corner 10143 27605 {normal=(-0.456798 -0.453514 0.765285)} Corner 10168 27605 {normal=(-0.310724 -0.563285 0.765611)} Corner 10168 27606 {normal=(-0.310724 -0.563285 0.765611)} Corner 10143 27608 {normal=(-0.456798 -0.453514 0.765285)} Corner 10143 27609 {normal=(-0.456798 -0.453514 0.765285)} Corner 10117 27610 {normal=(-0.67049 -0.284033 0.685396)} Corner 10117 27611 {normal=(-0.67049 -0.284033 0.685396)} Corner 10116 27611 {normal=(-0.564685 -0.354287 0.745393)} Corner 10116 27612 {normal=(-0.564685 -0.354287 0.745393)} Corner 10143 27612 {normal=(-0.456798 -0.453514 0.765285)} Corner 285 27653 {normal=(0.15116 0.966426 -0.207776)} Corner 256 27653 {normal=(0.179627 0.970271 -0.162196)} Corner 256 27654 {normal=(0.179627 0.970271 -0.162196)} Corner 285 27656 {normal=(0.15116 0.966426 -0.207776)} Corner 254 27658 {normal=(0.178701 0.961977 0.206557)} Corner 254 27659 {normal=(0.178701 0.961977 0.206557)} Corner 286 27659 {normal=(0.158061 0.948045 0.276092)} Corner 286 27660 {normal=(0.158061 0.948045 0.276092)} Corner 475 27661 {normal=(0.309146 0.902746 -0.299129)} Corner 416 27661 {normal=(0.308478 0.887247 -0.342978)} Corner 416 27662 {normal=(0.308478 0.887247 -0.342978)} Corner 475 27664 {normal=(0.309146 0.902746 -0.299129)} Corner 433 27666 {normal=(-0.284946 0.902531 0.322867)} Corner 433 27667 {normal=(-0.284946 0.902531 0.322867)} Corner 508 27667 {normal=(0.356745 0.932868 0.0499093)} Corner 508 27668 {normal=(0.356745 0.932868 0.0499093)} Corner 392 27669 {normal=(0.404674 0.900117 -0.161331)} Corner 345 27669 {normal=(0.417955 0.878734 -0.23052)} Corner 345 27670 {normal=(0.417955 0.878734 -0.23052)} Corner 392 27672 {normal=(0.404674 0.900117 -0.161331)} Corner 343 27674 {normal=(-0.26063 0.911334 0.318658)} Corner 343 27675 {normal=(-0.26063 0.911334 0.318658)} Corner 390 27675 {normal=(0.403498 0.908077 0.112187)} Corner 390 27676 {normal=(0.403498 0.908077 0.112187)} Corner 602 27677 {normal=(0.661257 0.715286 -0.226066)} Corner 555 27677 {normal=(0.674618 0.679843 -0.287581)} Corner 555 27678 {normal=(0.674618 0.679843 -0.287581)} Corner 602 27680 {normal=(0.661257 0.715286 -0.226066)} Corner 538 27682 {normal=(-0.0179847 0.990116 0.139092)} Corner 538 27683 {normal=(-0.0179847 0.990116 0.139092)} Corner 576 27683 {normal=(0.634997 0.771468 0.0402112)} Corner 576 27684 {normal=(0.634997 0.771468 0.0402112)} Corner 845 27685 {normal=(0.183392 -0.647868 0.739347)} Corner 877 27685 {normal=(0.331655 -0.55168 0.76528)} Corner 877 27686 {normal=(0.331655 -0.55168 0.76528)} Corner 845 27688 {normal=(0.183392 -0.647868 0.739347)} Corner 929 27690 {normal=(0.559187 -0.378121 0.73779)} Corner 929 27691 {normal=(0.559187 -0.378121 0.73779)} Corner 928 27691 {normal=(0.681861 -0.266861 0.681066)} Corner 928 27692 {normal=(0.681861 -0.266861 0.681066)} Corner 10980 27713 {normal=(0.863052 -0.0451684 0.503092)} Corner 11039 27713 {normal=(0.875306 -0.0501423 0.480963)} Corner 11039 27714 {normal=(0.875306 -0.0501423 0.480963)} Corner 11028 27714 {normal=(0.648159 0.0211276 0.761212)} Corner 11028 27715 {normal=(0.648159 0.0211276 0.761212)} Corner 10933 27715 {normal=(0.628534 0.0259913 0.777348)} Corner 10933 27716 {normal=(0.628534 0.0259913 0.777348)} Corner 10980 27716 {normal=(0.863052 -0.0451684 0.503092)} Corner 11030 27717 {normal=(0.97295 -0.0964134 0.209933)} Corner 11044 27717 {normal=(0.974947 -0.0976973 0.199832)} Corner 11044 27718 {normal=(0.974947 -0.0976973 0.199832)} Corner 11039 27718 {normal=(0.875306 -0.0501423 0.480963)} Corner 11039 27719 {normal=(0.875306 -0.0501423 0.480963)} Corner 10980 27719 {normal=(0.863052 -0.0451684 0.503092)} Corner 10980 27720 {normal=(0.863052 -0.0451684 0.503092)} Corner 11030 27720 {normal=(0.97295 -0.0964134 0.209933)} Corner 11034 27721 {normal=(0.979685 -0.135096 -0.14821)} Corner 11043 27721 {normal=(0.981811 -0.133894 -0.134612)} Corner 11043 27722 {normal=(0.981811 -0.133894 -0.134612)} Corner 11044 27722 {normal=(0.974947 -0.0976973 0.199832)} Corner 11044 27723 {normal=(0.974947 -0.0976973 0.199832)} Corner 11030 27723 {normal=(0.97295 -0.0964134 0.209933)} Corner 11030 27724 {normal=(0.97295 -0.0964134 0.209933)} Corner 11034 27724 {normal=(0.979685 -0.135096 -0.14821)} Corner 11021 27725 {normal=(0.900526 -0.156453 -0.405679)} Corner 11042 27725 {normal=(0.903367 -0.155901 -0.399529)} Corner 11042 27726 {normal=(0.903367 -0.155901 -0.399529)} Corner 11043 27726 {normal=(0.981811 -0.133894 -0.134612)} Corner 11043 27727 {normal=(0.981811 -0.133894 -0.134612)} Corner 11034 27727 {normal=(0.979685 -0.135096 -0.14821)} Corner 11034 27728 {normal=(0.979685 -0.135096 -0.14821)} Corner 11021 27728 {normal=(0.900526 -0.156453 -0.405679)} Corner 10989 27729 {normal=(0.7667 -0.171988 -0.61854)} Corner 11035 27729 {normal=(0.776461 -0.17133 -0.606427)} Corner 11035 27730 {normal=(0.776461 -0.17133 -0.606427)} Corner 11042 27730 {normal=(0.903367 -0.155901 -0.399529)} Corner 11042 27731 {normal=(0.903367 -0.155901 -0.399529)} Corner 11021 27731 {normal=(0.900526 -0.156453 -0.405679)} Corner 11021 27732 {normal=(0.900526 -0.156453 -0.405679)} Corner 10989 27732 {normal=(0.7667 -0.171988 -0.61854)} Corner 10951 27733 {normal=(0.546622 -0.192553 -0.81494)} Corner 10960 27733 {normal=(0.424149 -0.208663 -0.881225)} Corner 10960 27734 {normal=(0.424149 -0.208663 -0.881225)} Corner 11035 27734 {normal=(0.776461 -0.17133 -0.606427)} Corner 11035 27735 {normal=(0.776461 -0.17133 -0.606427)} Corner 10989 27735 {normal=(0.7667 -0.171988 -0.61854)} Corner 10989 27736 {normal=(0.7667 -0.171988 -0.61854)} Corner 10951 27736 {normal=(0.546622 -0.192553 -0.81494)} Corner 10822 27737 {normal=(-0.0135819 -0.236843 -0.971453)} Corner 10810 27737 {normal=(-0.00961557 -0.236574 -0.971566)} Corner 10810 27738 {normal=(-0.00961557 -0.236574 -0.971566)} Corner 10960 27738 {normal=(0.424149 -0.208663 -0.881225)} Corner 10960 27739 {normal=(0.424149 -0.208663 -0.881225)} Corner 10892 27739 {normal=(0.276876 -0.21667 -0.936159)} Corner 10892 27740 {normal=(0.276876 -0.21667 -0.936159)} Corner 10822 27740 {normal=(-0.0135819 -0.236843 -0.971453)} Corner 10822 27741 {normal=(-0.0135819 -0.236843 -0.971453)} Corner 10739 27741 {normal=(-0.371459 -0.255684 -0.892549)} Corner 10739 27742 {normal=(-0.371459 -0.255684 -0.892549)} Corner 10418 27742 {normal=(-0.379854 -0.255921 -0.888941)} Corner 10418 27743 {normal=(-0.379854 -0.255921 -0.888941)} Corner 10810 27743 {normal=(-0.00961557 -0.236574 -0.971566)} Corner 10810 27744 {normal=(-0.00961557 -0.236574 -0.971566)} Corner 10822 27744 {normal=(-0.0135819 -0.236843 -0.971453)} Corner 10685 27745 {normal=(-0.689377 -0.257951 -0.67692)} Corner 10250 27745 {normal=(-0.694395 -0.25799 -0.671756)} Corner 10250 27746 {normal=(-0.694395 -0.25799 -0.671756)} Corner 10418 27746 {normal=(-0.379854 -0.255921 -0.888941)} Corner 10418 27747 {normal=(-0.379854 -0.255921 -0.888941)} Corner 10739 27747 {normal=(-0.371459 -0.255684 -0.892549)} Corner 10739 27748 {normal=(-0.371459 -0.255684 -0.892549)} Corner 10685 27748 {normal=(-0.689377 -0.257951 -0.67692)} Corner 10556 27749 {normal=(-0.887495 -0.251794 -0.385944)} Corner 10167 27749 {normal=(-0.892668 -0.251227 -0.374204)} Corner 10167 27750 {normal=(-0.892668 -0.251227 -0.374204)} Corner 10250 27750 {normal=(-0.694395 -0.25799 -0.671756)} Corner 10250 27751 {normal=(-0.694395 -0.25799 -0.671756)} Corner 10685 27751 {normal=(-0.689377 -0.257951 -0.67692)} Corner 10685 27752 {normal=(-0.689377 -0.257951 -0.67692)} Corner 10556 27752 {normal=(-0.887495 -0.251794 -0.385944)} Corner 10453 27753 {normal=(-0.973995 -0.221112 -0.0494336)} Corner 10134 27753 {normal=(-0.974606 -0.220042 -0.0415301)} Corner 10134 27754 {normal=(-0.974606 -0.220042 -0.0415301)} Corner 10167 27754 {normal=(-0.892668 -0.251227 -0.374204)} Corner 10167 27755 {normal=(-0.892668 -0.251227 -0.374204)} Corner 10556 27755 {normal=(-0.887495 -0.251794 -0.385944)} Corner 10556 27756 {normal=(-0.887495 -0.251794 -0.385944)} Corner 10453 27756 {normal=(-0.973995 -0.221112 -0.0494336)} Corner 10441 27757 {normal=(-0.953957 -0.152972 0.258002)} Corner 10157 27757 {normal=(-0.956985 -0.157337 0.24377)} Corner 10157 27758 {normal=(-0.956985 -0.157337 0.24377)} Corner 10134 27758 {normal=(-0.974606 -0.220042 -0.0415301)} Corner 10134 27759 {normal=(-0.974606 -0.220042 -0.0415301)} Corner 10453 27759 {normal=(-0.973995 -0.221112 -0.0494336)} Corner 10453 27760 {normal=(-0.973995 -0.221112 -0.0494336)} Corner 10441 27760 {normal=(-0.953957 -0.152972 0.258002)} Corner 10512 27761 {normal=(-0.869421 -0.0778371 0.487903)} Corner 10223 27761 {normal=(-0.776824 -0.0348517 0.628753)} Corner 10223 27762 {normal=(-0.776824 -0.0348517 0.628753)} Corner 10157 27762 {normal=(-0.956985 -0.157337 0.24377)} Corner 10157 27763 {normal=(-0.956985 -0.157337 0.24377)} Corner 10441 27763 {normal=(-0.953957 -0.152972 0.258002)} Corner 10441 27764 {normal=(-0.953957 -0.152972 0.258002)} Corner 10512 27764 {normal=(-0.869421 -0.0778371 0.487903)} Corner 10814 27765 {normal=(-0.275282 0.0813809 0.957913)} Corner 10578 27765 {normal=(-0.30101 0.078825 0.950358)} Corner 10578 27766 {normal=(-0.30101 0.078825 0.950358)} Corner 10223 27766 {normal=(-0.776824 -0.0348517 0.628753)} Corner 10223 27767 {normal=(-0.776824 -0.0348517 0.628753)} Corner 10618 27767 {normal=(-0.695748 -8.50387e-05 0.718286)} Corner 10618 27768 {normal=(-0.695748 -8.50387e-05 0.718286)} Corner 10814 27768 {normal=(-0.275282 0.0813809 0.957913)} Corner 10878 27769 {normal=(0.239753 0.0855739 0.967055)} Corner 10875 27769 {normal=(0.243985 0.085213 0.966028)} Corner 10875 27770 {normal=(0.243985 0.085213 0.966028)} Corner 10578 27770 {normal=(-0.30101 0.078825 0.950358)} Corner 10578 27771 {normal=(-0.30101 0.078825 0.950358)} Corner 10814 27771 {normal=(-0.275282 0.0813809 0.957913)} Corner 10814 27772 {normal=(-0.275282 0.0813809 0.957913)} Corner 10878 27772 {normal=(0.239753 0.0855739 0.967055)} Corner 10933 27773 {normal=(0.628534 0.0259913 0.777348)} Corner 11028 27773 {normal=(0.648159 0.0211276 0.761212)} Corner 11028 27774 {normal=(0.648159 0.0211276 0.761212)} Corner 10875 27774 {normal=(0.243985 0.085213 0.966028)} Corner 10875 27775 {normal=(0.243985 0.085213 0.966028)} Corner 10878 27775 {normal=(0.239753 0.0855739 0.967055)} Corner 10878 27776 {normal=(0.239753 0.0855739 0.967055)} Corner 10933 27776 {normal=(0.628534 0.0259913 0.777348)} Corner 10857 27777 {normal=(0.00850367 -0.982635 0.185353)} Corner 10756 27777 {normal=(-0.154668 -0.975066 0.159138)} Corner 10756 27778 {normal=(-0.154668 -0.975066 0.159138)} Corner 10822 27778 {normal=(-0.0232417 -0.984291 0.175017)} Corner 10822 27779 {normal=(-0.0232417 -0.984291 0.175017)} Corner 10892 27779 {normal=(0.0252543 -0.982559 0.18423)} Corner 10892 27780 {normal=(0.0252543 -0.982559 0.18423)} Corner 10857 27780 {normal=(0.00850367 -0.982635 0.185353)} Corner 10701 27781 {normal=(-0.104706 -0.975931 0.191301)} Corner 10681 27781 {normal=(-0.0837676 -0.973009 0.215027)} Corner 10681 27782 {normal=(-0.0837676 -0.973009 0.215027)} Corner 10685 27782 {normal=(-0.0906291 -0.975732 0.19933)} Corner 10685 27783 {normal=(-0.0906291 -0.975732 0.19933)} Corner 10739 27783 {normal=(-0.102432 -0.982582 0.155051)} Corner 10739 27784 {normal=(-0.102432 -0.982582 0.155051)} Corner 10701 27784 {normal=(-0.104706 -0.975931 0.191301)} Corner 10681 27785 {normal=(-0.0837676 -0.973009 0.215027)} Corner 10640 27785 {normal=(-0.102469 -0.96617 0.236678)} Corner 10640 27786 {normal=(-0.102469 -0.96617 0.236678)} Corner 10556 27786 {normal=(-0.0875193 -0.970979 0.222576)} Corner 10556 27787 {normal=(-0.0875193 -0.970979 0.222576)} Corner 10685 27787 {normal=(-0.0906291 -0.975732 0.19933)} Corner 10685 27788 {normal=(-0.0906291 -0.975732 0.19933)} Corner 10681 27788 {normal=(-0.0837676 -0.973009 0.215027)} Corner 10640 27789 {normal=(-0.102469 -0.96617 0.236678)} Corner 10585 27789 {normal=(-0.104209 -0.960137 0.259378)} Corner 10585 27790 {normal=(-0.104209 -0.960137 0.259378)} Corner 10453 27790 {normal=(-0.10394 -0.959726 0.261002)} Corner 10453 27791 {normal=(-0.10394 -0.959726 0.261002)} Corner 10556 27791 {normal=(-0.0875193 -0.970979 0.222576)} Corner 10556 27792 {normal=(-0.0875193 -0.970979 0.222576)} Corner 10640 27792 {normal=(-0.102469 -0.96617 0.236678)} Corner 10585 27793 {normal=(-0.104209 -0.960137 0.259378)} Corner 10592 27793 {normal=(-0.105108 -0.954186 0.280145)} Corner 10592 27794 {normal=(-0.105108 -0.954186 0.280145)} Corner 10441 27794 {normal=(-0.128813 -0.949368 0.286544)} Corner 10441 27795 {normal=(-0.128813 -0.949368 0.286544)} Corner 10453 27795 {normal=(-0.10394 -0.959726 0.261002)} Corner 10453 27796 {normal=(-0.10394 -0.959726 0.261002)} Corner 10585 27796 {normal=(-0.104209 -0.960137 0.259378)} Corner 10592 27797 {normal=(-0.105108 -0.954186 0.280145)} Corner 10550 27797 {normal=(-0.138354 -0.945523 0.294693)} Corner 10550 27798 {normal=(-0.138354 -0.945523 0.294693)} Corner 10512 27798 {normal=(-0.164726 -0.926731 0.337692)} Corner 10512 27799 {normal=(-0.164726 -0.926731 0.337692)} Corner 10441 27799 {normal=(-0.128813 -0.949368 0.286544)} Corner 10441 27800 {normal=(-0.128813 -0.949368 0.286544)} Corner 10592 27800 {normal=(-0.105108 -0.954186 0.280145)} Corner 10550 27801 {normal=(-0.138354 -0.945523 0.294693)} Corner 10624 27801 {normal=(-0.115236 -0.926232 0.358907)} Corner 10624 27802 {normal=(-0.115236 -0.926232 0.358907)} Corner 10618 27802 {normal=(-0.0502812 -0.926821 0.372122)} Corner 10618 27803 {normal=(-0.0502812 -0.926821 0.372122)} Corner 10512 27803 {normal=(-0.164726 -0.926731 0.337692)} Corner 10512 27804 {normal=(-0.164726 -0.926731 0.337692)} Corner 10550 27804 {normal=(-0.138354 -0.945523 0.294693)} Corner 10624 27805 {normal=(-0.115236 -0.926232 0.358907)} Corner 10885 27805 {normal=(0.176808 -0.885879 0.428902)} Corner 10885 27806 {normal=(0.176808 -0.885879 0.428902)} Corner 10814 27806 {normal=(0.00155035 -0.921753 0.387775)} Corner 10814 27807 {normal=(0.00155035 -0.921753 0.387775)} Corner 10618 27807 {normal=(-0.0502812 -0.926821 0.372122)} Corner 10618 27808 {normal=(-0.0502812 -0.926821 0.372122)} Corner 10624 27808 {normal=(-0.115236 -0.926232 0.358907)} Corner 10953 27809 {normal=(0.146325 -0.913728 0.379066)} Corner 10987 27809 {normal=(0.184261 -0.911518 0.367672)} Corner 10987 27810 {normal=(0.184261 -0.911518 0.367672)} Corner 10933 27810 {normal=(0.146103 -0.915419 0.37505)} Corner 10933 27811 {normal=(0.146103 -0.915419 0.37505)} Corner 10878 27811 {normal=(0.0933424 -0.90393 0.417371)} Corner 10878 27812 {normal=(0.0933424 -0.90393 0.417371)} Corner 10953 27812 {normal=(0.146325 -0.913728 0.379066)} Corner 10987 27813 {normal=(0.184261 -0.911518 0.367672)} Corner 11010 27813 {normal=(0.281276 -0.89251 0.352577)} Corner 11010 27814 {normal=(0.281276 -0.89251 0.352577)} Corner 10980 27814 {normal=(0.194486 -0.910027 0.366097)} Corner 10980 27815 {normal=(0.194486 -0.910027 0.366097)} Corner 10933 27815 {normal=(0.146103 -0.915419 0.37505)} Corner 10933 27816 {normal=(0.146103 -0.915419 0.37505)} Corner 10987 27816 {normal=(0.184261 -0.911518 0.367672)} Corner 11010 27817 {normal=(0.281276 -0.89251 0.352577)} Corner 11024 27817 {normal=(0.39206 -0.873854 0.287521)} Corner 11024 27818 {normal=(0.39206 -0.873854 0.287521)} Corner 11030 27818 {normal=(0.299897 -0.888697 0.346812)} Corner 11030 27819 {normal=(0.299897 -0.888697 0.346812)} Corner 10980 27819 {normal=(0.194486 -0.910027 0.366097)} Corner 10980 27820 {normal=(0.194486 -0.910027 0.366097)} Corner 11010 27820 {normal=(0.281276 -0.89251 0.352577)} Corner 11013 27821 {normal=(0.250668 -0.941889 0.223629)} Corner 10995 27821 {normal=(0.231926 -0.951878 0.200347)} Corner 10995 27822 {normal=(0.231926 -0.951878 0.200347)} Corner 11021 27822 {normal=(0.230705 -0.9524 0.199273)} Corner 11021 27823 {normal=(0.230705 -0.9524 0.199273)} Corner 11034 27823 {normal=(0.269271 -0.934305 0.233595)} Corner 11034 27824 {normal=(0.269271 -0.934305 0.233595)} Corner 11013 27824 {normal=(0.250668 -0.941889 0.223629)} Corner 10995 27825 {normal=(0.231926 -0.951878 0.200347)} Corner 10968 27825 {normal=(0.165058 -0.969915 0.178942)} Corner 10968 27826 {normal=(0.165058 -0.969915 0.178942)} Corner 10989 27826 {normal=(0.151162 -0.972185 0.178905)} Corner 10989 27827 {normal=(0.151162 -0.972185 0.178905)} Corner 11021 27827 {normal=(0.230705 -0.9524 0.199273)} Corner 11021 27828 {normal=(0.230705 -0.9524 0.199273)} Corner 10995 27828 {normal=(0.231926 -0.951878 0.200347)} Corner 10968 27829 {normal=(0.165058 -0.969915 0.178942)} Corner 10922 27829 {normal=(0.0707151 -0.980855 0.181445)} Corner 10922 27830 {normal=(0.0707151 -0.980855 0.181445)} Corner 10951 27830 {normal=(0.0771619 -0.980442 0.181049)} Corner 10951 27831 {normal=(0.0771619 -0.980442 0.181049)} Corner 10989 27831 {normal=(0.151162 -0.972185 0.178905)} Corner 10989 27832 {normal=(0.151162 -0.972185 0.178905)} Corner 10968 27832 {normal=(0.165058 -0.969915 0.178942)} Corner 10922 27833 {normal=(0.0707151 -0.980855 0.181445)} Corner 10857 27833 {normal=(0.00850367 -0.982635 0.185353)} Corner 10857 27834 {normal=(0.00850367 -0.982635 0.185353)} Corner 10892 27834 {normal=(0.0252543 -0.982559 0.18423)} Corner 10892 27835 {normal=(0.0252543 -0.982559 0.18423)} Corner 10951 27835 {normal=(0.0771619 -0.980442 0.181049)} Corner 10951 27836 {normal=(0.0771619 -0.980442 0.181049)} Corner 10922 27836 {normal=(0.0707151 -0.980855 0.181445)} Corner 10883 27837 {normal=(-0.0540404 0.988059 0.144286)} Corner 10603 27837 {normal=(-0.127913 0.987873 0.0880016)} Corner 10603 27838 {normal=(-0.127913 0.987873 0.0880016)} Corner 10578 27838 {normal=(-0.121584 0.988166 0.0935189)} Corner 10578 27839 {normal=(-0.121584 0.988166 0.0935189)} Corner 10875 27839 {normal=(-0.0732672 0.988689 0.130866)} Corner 10875 27840 {normal=(-0.0732672 0.988689 0.130866)} Corner 10883 27840 {normal=(-0.0540404 0.988059 0.144286)} Corner 10603 27841 {normal=(-0.127913 0.987873 0.0880016)} Corner 10273 27841 {normal=(-0.158963 0.985777 0.0545352)} Corner 10273 27842 {normal=(-0.158963 0.985777 0.0545352)} Corner 10223 27842 {normal=(-0.15539 0.986045 0.0597494)} Corner 10223 27843 {normal=(-0.15539 0.986045 0.0597494)} Corner 10578 27843 {normal=(-0.121584 0.988166 0.0935189)} Corner 10578 27844 {normal=(-0.121584 0.988166 0.0935189)} Corner 10603 27844 {normal=(-0.127913 0.987873 0.0880016)} Corner 10273 27845 {normal=(-0.158963 0.985777 0.0545352)} Corner 10203 27845 {normal=(-0.192542 0.980513 0.0390115)} Corner 10203 27846 {normal=(-0.192542 0.980513 0.0390115)} Corner 10157 27846 {normal=(-0.182758 0.982311 0.0408113)} Corner 10157 27847 {normal=(-0.182758 0.982311 0.0408113)} Corner 10223 27847 {normal=(-0.15539 0.986045 0.0597494)} Corner 10223 27848 {normal=(-0.15539 0.986045 0.0597494)} Corner 10273 27848 {normal=(-0.158963 0.985777 0.0545352)} Corner 10203 27849 {normal=(-0.192542 0.980513 0.0390115)} Corner 10160 27849 {normal=(-0.282841 0.959064 -0.0140175)} Corner 10160 27850 {normal=(-0.282841 0.959064 -0.0140175)} Corner 10134 27850 {normal=(-0.242048 0.970157 0.0143965)} Corner 10134 27851 {normal=(-0.242048 0.970157 0.0143965)} Corner 10157 27851 {normal=(-0.182758 0.982311 0.0408113)} Corner 10157 27852 {normal=(-0.182758 0.982311 0.0408113)} Corner 10203 27852 {normal=(-0.192542 0.980513 0.0390115)} Corner 10160 27853 {normal=(-0.282841 0.959064 -0.0140175)} Corner 10199 27853 {normal=(-0.310577 0.941948 -0.127575)} Corner 10199 27854 {normal=(-0.310577 0.941948 -0.127575)} Corner 10167 27854 {normal=(-0.317201 0.94527 -0.0764696)} Corner 10167 27855 {normal=(-0.317201 0.94527 -0.0764696)} Corner 10134 27855 {normal=(-0.242048 0.970157 0.0143965)} Corner 10134 27856 {normal=(-0.242048 0.970157 0.0143965)} Corner 10160 27856 {normal=(-0.282841 0.959064 -0.0140175)} Corner 10199 27857 {normal=(-0.310577 0.941948 -0.127575)} Corner 10293 27857 {normal=(-0.229378 0.956037 -0.182701)} Corner 10293 27858 {normal=(-0.229378 0.956037 -0.182701)} Corner 10250 27858 {normal=(-0.272063 0.946293 -0.174675)} Corner 10250 27859 {normal=(-0.272063 0.946293 -0.174675)} Corner 10167 27859 {normal=(-0.317201 0.94527 -0.0764696)} Corner 10167 27860 {normal=(-0.317201 0.94527 -0.0764696)} Corner 10199 27860 {normal=(-0.310577 0.941948 -0.127575)} Corner 10293 27861 {normal=(-0.229378 0.956037 -0.182701)} Corner 10511 27861 {normal=(-0.132222 0.977039 -0.167071)} Corner 10511 27862 {normal=(-0.132222 0.977039 -0.167071)} Corner 10418 27862 {normal=(-0.167302 0.969475 -0.179242)} Corner 10418 27863 {normal=(-0.167302 0.969475 -0.179242)} Corner 10250 27863 {normal=(-0.272063 0.946293 -0.174675)} Corner 10250 27864 {normal=(-0.272063 0.946293 -0.174675)} Corner 10293 27864 {normal=(-0.229378 0.956037 -0.182701)} Corner 10511 27865 {normal=(-0.132222 0.977039 -0.167071)} Corner 10832 27865 {normal=(-0.0658668 0.990249 -0.122753)} Corner 10832 27866 {normal=(-0.0658668 0.990249 -0.122753)} Corner 10810 27866 {normal=(-0.0837836 0.98677 -0.1388)} Corner 10810 27867 {normal=(-0.0837836 0.98677 -0.1388)} Corner 10418 27867 {normal=(-0.167302 0.969475 -0.179242)} Corner 10418 27868 {normal=(-0.167302 0.969475 -0.179242)} Corner 10511 27868 {normal=(-0.132222 0.977039 -0.167071)} Corner 10832 27869 {normal=(-0.0658668 0.990249 -0.122753)} Corner 10962 27869 {normal=(-0.0316296 0.994835 -0.0964565)} Corner 10962 27870 {normal=(-0.0316296 0.994835 -0.0964565)} Corner 10960 27870 {normal=(-0.0392202 0.99413 -0.100834)} Corner 10960 27871 {normal=(-0.0392202 0.99413 -0.100834)} Corner 10810 27871 {normal=(-0.0837836 0.98677 -0.1388)} Corner 10810 27872 {normal=(-0.0837836 0.98677 -0.1388)} Corner 10832 27872 {normal=(-0.0658668 0.990249 -0.122753)} Corner 10962 27873 {normal=(-0.0316296 0.994835 -0.0964565)} Corner 11032 27873 {normal=(-0.00843174 0.998042 -0.0619759)} Corner 11032 27874 {normal=(-0.00843174 0.998042 -0.0619759)} Corner 11035 27874 {normal=(-0.00917048 0.997949 -0.0633477)} Corner 11035 27875 {normal=(-0.00917048 0.997949 -0.0633477)} Corner 10960 27875 {normal=(-0.0392202 0.99413 -0.100834)} Corner 10960 27876 {normal=(-0.0392202 0.99413 -0.100834)} Corner 10962 27876 {normal=(-0.0316296 0.994835 -0.0964565)} Corner 11032 27877 {normal=(-0.00843174 0.998042 -0.0619759)} Corner 11037 27877 {normal=(0.0110624 0.998594 -0.0518414)} Corner 11037 27878 {normal=(0.0110624 0.998594 -0.0518414)} Corner 11042 27878 {normal=(0.0101361 0.998814 -0.0476201)} Corner 11042 27879 {normal=(0.0101361 0.998814 -0.0476201)} Corner 11035 27879 {normal=(-0.00917048 0.997949 -0.0633477)} Corner 11035 27880 {normal=(-0.00917048 0.997949 -0.0633477)} Corner 11032 27880 {normal=(-0.00843174 0.998042 -0.0619759)} Corner 11037 27881 {normal=(0.0110624 0.998594 -0.0518414)} Corner 11040 27881 {normal=(0.0267629 0.998216 -0.053381)} Corner 11040 27882 {normal=(0.0267629 0.998216 -0.053381)} Corner 11043 27882 {normal=(0.0426866 0.998471 -0.0351292)} Corner 11043 27883 {normal=(0.0426866 0.998471 -0.0351292)} Corner 11042 27883 {normal=(0.0101361 0.998814 -0.0476201)} Corner 11042 27884 {normal=(0.0101361 0.998814 -0.0476201)} Corner 11037 27884 {normal=(0.0110624 0.998594 -0.0518414)} Corner 11040 27885 {normal=(0.0267629 0.998216 -0.053381)} Corner 11041 27885 {normal=(0.0539414 0.998523 -0.00643702)} Corner 11041 27886 {normal=(0.0539414 0.998523 -0.00643702)} Corner 11044 27886 {normal=(0.0531611 0.9983 0.0238801)} Corner 11044 27887 {normal=(0.0531611 0.9983 0.0238801)} Corner 11043 27887 {normal=(0.0426866 0.998471 -0.0351292)} Corner 11043 27888 {normal=(0.0426866 0.998471 -0.0351292)} Corner 11040 27888 {normal=(0.0267629 0.998216 -0.053381)} Corner 11041 27889 {normal=(0.0539414 0.998523 -0.00643702)} Corner 11038 27889 {normal=(0.0680535 0.995511 0.0657823)} Corner 11038 27890 {normal=(0.0680535 0.995511 0.0657823)} Corner 11039 27890 {normal=(0.102166 0.986789 0.125739)} Corner 11039 27891 {normal=(0.102166 0.986789 0.125739)} Corner 11044 27891 {normal=(0.0531611 0.9983 0.0238801)} Corner 11044 27892 {normal=(0.0531611 0.9983 0.0238801)} Corner 11041 27892 {normal=(0.0539414 0.998523 -0.00643702)} Corner 11038 27893 {normal=(0.0680535 0.995511 0.0657823)} Corner 11029 27893 {normal=(0.074841 0.985007 0.155436)} Corner 11029 27894 {normal=(0.074841 0.985007 0.155436)} Corner 11028 27894 {normal=(0.0115605 0.986622 0.162616)} Corner 11028 27895 {normal=(0.0115605 0.986622 0.162616)} Corner 11039 27895 {normal=(0.102166 0.986789 0.125739)} Corner 11039 27896 {normal=(0.102166 0.986789 0.125739)} Corner 11038 27896 {normal=(0.0680535 0.995511 0.0657823)} Corner 11029 27897 {normal=(0.074841 0.985007 0.155436)} Corner 10883 27897 {normal=(-0.0540404 0.988059 0.144286)} Corner 10883 27898 {normal=(-0.0540404 0.988059 0.144286)} Corner 10875 27898 {normal=(-0.0732672 0.988689 0.130866)} Corner 10875 27899 {normal=(-0.0732672 0.988689 0.130866)} Corner 11028 27899 {normal=(0.0115605 0.986622 0.162616)} Corner 11028 27900 {normal=(0.0115605 0.986622 0.162616)} Corner 11029 27900 {normal=(0.074841 0.985007 0.155436)} Corner 11038 28013 {normal=(0.906749 0.30553 0.290617)} Corner 11029 28015 {normal=(0.686211 0.250027 0.683082)} Corner 11029 28016 {normal=(0.686211 0.250027 0.683082)} Corner 11038 28016 {normal=(0.906749 0.30553 0.290617)} Corner 10857 28038 {normal=(-0.0531869 0.165585 -0.98476)} Corner 10857 28039 {normal=(-0.0531869 0.165585 -0.98476)} Corner 10922 28039 {normal=(0.420174 0.132636 -0.897698)} Corner 10922 28040 {normal=(0.420174 0.132636 -0.897698)} Corner 10693 28041 {normal=(-0.226007 0.0602303 -0.972262)} Corner 10693 28042 {normal=(-0.226007 0.0602303 -0.972262)} Corner 10756 28042 {normal=(-0.23044 0.156806 -0.960369)} Corner 10756 28043 {normal=(-0.23044 0.156806 -0.960369)} Corner 10857 28043 {normal=(-0.0531869 0.165585 -0.98476)} Corner 10857 28044 {normal=(-0.0531869 0.165585 -0.98476)} Corner 10693 28045 {normal=(-0.910467 0.0312282 -0.412402)} Corner 10701 28046 {normal=(-0.879057 0.252672 -0.404247)} Corner 10701 28047 {normal=(-0.879057 0.252672 -0.404247)} Corner 10756 28047 {normal=(-0.816215 0.268904 -0.511355)} Corner 10756 28048 {normal=(-0.816215 0.268904 -0.511355)} Corner 10693 28048 {normal=(-0.910467 0.0312282 -0.412402)} Corner 10681 28050 {normal=(-0.975242 0.158643 -0.154066)} Corner 10681 28051 {normal=(-0.975242 0.158643 -0.154066)} Corner 10701 28051 {normal=(-0.879057 0.252672 -0.404247)} Corner 10701 28052 {normal=(-0.879057 0.252672 -0.404247)} Corner 10640 28054 {normal=(-0.998664 -0.0506385 0.0102656)} Corner 10640 28055 {normal=(-0.998664 -0.0506385 0.0102656)} Corner 10681 28055 {normal=(-0.975242 0.158643 -0.154066)} Corner 10681 28056 {normal=(-0.975242 0.158643 -0.154066)} Corner 10585 28058 {normal=(-0.984192 -0.164348 -0.0660001)} Corner 10585 28059 {normal=(-0.984192 -0.164348 -0.0660001)} Corner 10640 28059 {normal=(-0.998664 -0.0506385 0.0102656)} Corner 10640 28060 {normal=(-0.998664 -0.0506385 0.0102656)} Corner 10592 28062 {normal=(-0.986677 -0.070692 -0.146528)} Corner 10592 28063 {normal=(-0.986677 -0.070692 -0.146528)} Corner 10585 28063 {normal=(-0.984192 -0.164348 -0.0660001)} Corner 10585 28064 {normal=(-0.984192 -0.164348 -0.0660001)} Corner 10550 28066 {normal=(-0.996062 0.0886381 -0.00198504)} Corner 10550 28067 {normal=(-0.996062 0.0886381 -0.00198504)} Corner 10592 28067 {normal=(-0.986677 -0.070692 -0.146528)} Corner 10592 28068 {normal=(-0.986677 -0.070692 -0.146528)} Corner 10597 28069 {normal=(-0.984518 0.143796 0.100238)} Corner 10597 28070 {normal=(-0.984518 0.143796 0.100238)} Corner 10624 28070 {normal=(-0.981198 0.153037 0.117601)} Corner 10624 28071 {normal=(-0.981198 0.153037 0.117601)} Corner 10550 28071 {normal=(-0.996062 0.0886381 -0.00198504)} Corner 10550 28072 {normal=(-0.996062 0.0886381 -0.00198504)} Corner 10597 28073 {normal=(-0.138072 0.710879 0.689628)} Corner 10882 28073 {normal=(-0.137206 0.711197 0.689473)} Corner 10882 28074 {normal=(-0.137206 0.711197 0.689473)} Corner 10885 28074 {normal=(-0.130865 0.713508 0.688317)} Corner 10885 28075 {normal=(-0.130865 0.713508 0.688317)} Corner 10624 28075 {normal=(-0.130865 0.713508 0.688317)} Corner 10624 28076 {normal=(-0.130865 0.713508 0.688317)} Corner 10597 28076 {normal=(-0.138072 0.710879 0.689628)} Corner 10882 28077 {normal=(0.796745 0.202717 0.569301)} Corner 10953 28078 {normal=(0.860119 0.150858 0.487275)} Corner 10953 28079 {normal=(0.860119 0.150858 0.487275)} Corner 10885 28079 {normal=(0.849738 0.184009 0.494051)} Corner 10885 28080 {normal=(0.849738 0.184009 0.494051)} Corner 10882 28080 {normal=(0.796745 0.202717 0.569301)} Corner 10987 28082 {normal=(0.901204 0.101456 0.421352)} Corner 10987 28083 {normal=(0.901204 0.101456 0.421352)} Corner 10953 28083 {normal=(0.860119 0.150858 0.487275)} Corner 10953 28084 {normal=(0.860119 0.150858 0.487275)} Corner 11010 28086 {normal=(0.957114 0.0729318 0.280382)} Corner 11010 28087 {normal=(0.957114 0.0729318 0.280382)} Corner 10987 28087 {normal=(0.901204 0.101456 0.421352)} Corner 10987 28088 {normal=(0.901204 0.101456 0.421352)} Corner 11024 28090 {normal=(0.998777 0.0403599 0.0285743)} Corner 11024 28091 {normal=(0.998777 0.0403599 0.0285743)} Corner 11010 28091 {normal=(0.957114 0.0729318 0.280382)} Corner 11010 28092 {normal=(0.957114 0.0729318 0.280382)} Corner 11013 28094 {normal=(0.982421 0.0306352 -0.184146)} Corner 11013 28095 {normal=(0.982421 0.0306352 -0.184146)} Corner 11024 28095 {normal=(0.998777 0.0403599 0.0285743)} Corner 11024 28096 {normal=(0.998777 0.0403599 0.0285743)} Corner 10995 28098 {normal=(0.935739 0.0494324 -0.349211)} Corner 10995 28099 {normal=(0.935739 0.0494324 -0.349211)} Corner 11013 28099 {normal=(0.982421 0.0306352 -0.184146)} Corner 11013 28100 {normal=(0.982421 0.0306352 -0.184146)} Corner 10968 28102 {normal=(0.756194 0.0718039 -0.650395)} Corner 10968 28103 {normal=(0.756194 0.0718039 -0.650395)} Corner 10995 28103 {normal=(0.935739 0.0494324 -0.349211)} Corner 10995 28104 {normal=(0.935739 0.0494324 -0.349211)} Corner 10922 28106 {normal=(0.420174 0.132636 -0.897698)} Corner 10922 28107 {normal=(0.420174 0.132636 -0.897698)} Corner 10968 28107 {normal=(0.756194 0.0718039 -0.650395)} Corner 10968 28108 {normal=(0.756194 0.0718039 -0.650395)} Corner 10531 28109 {normal=(-0.964442 -0.0385043 -0.261475)} Corner 10531 28112 {normal=(-0.964442 -0.0385043 -0.261475)} Corner 10942 28114 {normal=(0.762788 -0.149801 -0.629059)} Corner 10942 28115 {normal=(0.762788 -0.149801 -0.629059)} Corner 10903 28121 {normal=(0.646524 0.194492 0.737686)} Corner 10903 28124 {normal=(0.646524 0.194492 0.737686)} Corner 10882 28125 {normal=(-0.137206 0.711197 0.689473)} Corner 10597 28125 {normal=(-0.138072 0.710879 0.689628)} Corner 10597 28126 {normal=(-0.138072 0.710879 0.689628)} Corner 10661 28126 {normal=(-0.351847 0.673001 0.650594)} Corner 10661 28127 {normal=(-0.351847 0.673001 0.650594)} Corner 10850 28127 {normal=(-0.270069 0.69079 0.670725)} Corner 10850 28128 {normal=(-0.270069 0.69079 0.670725)} Corner 10882 28128 {normal=(-0.137206 0.711197 0.689473)} Corner 10798 28129 {normal=(0.764816 -0.0218669 0.643878)} Corner 10903 28129 {normal=(0.646524 0.194492 0.737686)} Corner 10903 28130 {normal=(0.646524 0.194492 0.737686)} Corner 10798 28132 {normal=(0.764816 -0.0218669 0.643878)} Corner 10850 28134 {normal=(0.54254 0.20281 0.81518)} Corner 10850 28135 {normal=(0.54254 0.20281 0.81518)} Corner 10322 28137 {normal=(-0.829452 0.538214 -0.14945)} Corner 10661 28137 {normal=(-0.848266 0.441294 -0.292753)} Corner 10661 28138 {normal=(-0.848266 0.441294 -0.292753)} Corner 10531 28138 {normal=(-0.848266 0.441294 -0.292753)} Corner 10531 28139 {normal=(-0.848266 0.441294 -0.292753)} Corner 10300 28139 {normal=(-0.860241 0.458346 -0.223392)} Corner 10300 28140 {normal=(-0.860241 0.458346 -0.223392)} Corner 10322 28140 {normal=(-0.829452 0.538214 -0.14945)} Corner 10300 28141 {normal=(-0.651974 0.083435 -0.753637)} Corner 10531 28141 {normal=(-0.964442 -0.0385043 -0.261475)} Corner 10531 28142 {normal=(-0.964442 -0.0385043 -0.261475)} Corner 10419 28143 {normal=(-0.445816 -0.244315 -0.861138)} Corner 10419 28144 {normal=(-0.445816 -0.244315 -0.861138)} Corner 10300 28144 {normal=(-0.651974 0.083435 -0.753637)} Corner 10661 28145 {normal=(-0.351847 0.673001 0.650594)} Corner 10322 28145 {normal=(-0.532707 0.611883 0.584656)} Corner 10322 28146 {normal=(-0.532707 0.611883 0.584656)} Corner 10519 28146 {normal=(-0.532707 0.611883 0.584656)} Corner 10519 28147 {normal=(-0.532707 0.611883 0.584656)} Corner 10850 28147 {normal=(-0.270069 0.69079 0.670725)} Corner 10850 28148 {normal=(-0.270069 0.69079 0.670725)} Corner 10661 28148 {normal=(-0.351847 0.673001 0.650594)} Corner 10889 28149 {normal=(-0.321811 -0.586166 0.743537)} Corner 10798 28149 {normal=(-0.321811 -0.586166 0.743537)} Corner 10798 28150 {normal=(-0.321811 -0.586166 0.743537)} Corner 10636 28150 {normal=(-0.321811 -0.586166 0.743537)} Corner 10636 28151 {normal=(-0.321811 -0.586166 0.743537)} Corner 10734 28151 {normal=(-0.321811 -0.586166 0.743537)} Corner 10734 28152 {normal=(-0.321811 -0.586166 0.743537)} Corner 10889 28152 {normal=(-0.321811 -0.586166 0.743537)} Corner 10695 28153 {normal=(-0.870885 -0.376766 -0.315606)} Corner 10648 28153 {normal=(-0.507695 -0.519084 -0.687603)} Corner 10648 28154 {normal=(-0.507695 -0.519084 -0.687603)} Corner 10695 28156 {normal=(-0.870885 -0.376766 -0.315606)} Corner 10531 28157 {normal=(-0.964442 -0.0385043 -0.261475)} Corner 10531 28158 {normal=(-0.964442 -0.0385043 -0.261475)} Corner 10711 28165 {normal=(-0.995509 -0.0783009 -0.0532041)} Corner 10711 28166 {normal=(-0.995509 -0.0783009 -0.0532041)} Corner 10747 28166 {normal=(-0.996298 -0.079964 0.0315726)} Corner 10747 28167 {normal=(-0.996298 -0.079964 0.0315726)} Corner 10695 28167 {normal=(-0.870885 -0.376766 -0.315606)} Corner 10695 28168 {normal=(-0.870885 -0.376766 -0.315606)} Corner 10695 28170 {normal=(-0.870885 -0.376766 -0.315606)} Corner 10695 28171 {normal=(-0.870885 -0.376766 -0.315606)} Corner 10693 28181 {normal=(-0.226007 0.0602303 -0.972262)} Corner 10745 28183 {normal=(-0.28007 -0.168593 -0.945059)} Corner 10745 28184 {normal=(-0.28007 -0.168593 -0.945059)} Corner 10693 28184 {normal=(-0.226007 0.0602303 -0.972262)} Corner 10693 28185 {normal=(-0.910467 0.0312282 -0.412402)} Corner 10693 28186 {normal=(-0.910467 0.0312282 -0.412402)} Corner 10745 28186 {normal=(-0.96163 -0.149167 -0.230253)} Corner 10745 28187 {normal=(-0.96163 -0.149167 -0.230253)} Corner 10745 28229 {normal=(-0.28007 -0.168593 -0.945059)} Corner 10757 28231 {normal=(-0.454596 -0.189183 -0.870375)} Corner 10757 28232 {normal=(-0.454596 -0.189183 -0.870375)} Corner 10745 28232 {normal=(-0.28007 -0.168593 -0.945059)} Corner 10745 28233 {normal=(-0.96163 -0.149167 -0.230253)} Corner 10745 28234 {normal=(-0.96163 -0.149167 -0.230253)} Corner 10757 28234 {normal=(-0.999993 0.00362243 -0.00121113)} Corner 10757 28235 {normal=(-0.999993 0.00362243 -0.00121113)} Corner 10925 28257 {normal=(-0.289382 0.352801 0.889825)} Corner 10889 28257 {normal=(-0.428192 0.447876 0.784894)} Corner 10889 28258 {normal=(-0.428192 0.447876 0.784894)} Corner 10734 28258 {normal=(-0.428192 0.447876 0.784894)} Corner 10734 28259 {normal=(-0.428192 0.447876 0.784894)} Corner 10813 28259 {normal=(-0.347671 0.393464 0.851065)} Corner 10813 28260 {normal=(-0.347671 0.393464 0.851065)} Corner 10925 28260 {normal=(-0.289382 0.352801 0.889825)} Corner 10903 28261 {normal=(0.646524 0.194492 0.737686)} Corner 10903 28262 {normal=(0.646524 0.194492 0.737686)} Corner 10889 28262 {normal=(0.441329 0.371835 0.816681)} Corner 10889 28263 {normal=(0.441329 0.371835 0.816681)} Corner 10925 28263 {normal=(0.582218 0.341087 0.738025)} Corner 10925 28264 {normal=(0.582218 0.341087 0.738025)} Corner 10903 28266 {normal=(0.646524 0.194492 0.737686)} Corner 10903 28267 {normal=(0.646524 0.194492 0.737686)} Corner 10584 28269 {normal=(-0.4789 0.204437 -0.853733)} Corner 10584 28270 {normal=(-0.4789 0.204437 -0.853733)} Corner 10666 28270 {normal=(-0.511328 0.111834 -0.852078)} Corner 10666 28271 {normal=(-0.511328 0.111834 -0.852078)} Corner 10677 28273 {normal=(-0.216732 -0.55045 -0.806246)} Corner 10815 28275 {normal=(-0.187529 -0.600658 -0.777202)} Corner 10815 28276 {normal=(-0.187529 -0.600658 -0.777202)} Corner 10677 28276 {normal=(-0.216732 -0.55045 -0.806246)} Corner 10584 28277 {normal=(-0.661257 0.7453 0.0852449)} Corner 10690 28278 {normal=(-0.537594 0.818395 0.203031)} Corner 10690 28279 {normal=(-0.537594 0.818395 0.203031)} Corner 10666 28279 {normal=(-0.639075 0.768756 -0.0244405)} Corner 10666 28280 {normal=(-0.639075 0.768756 -0.0244405)} Corner 10584 28280 {normal=(-0.661257 0.7453 0.0852449)} Corner 10677 28282 {normal=(0.118921 -0.973071 -0.197461)} Corner 10677 28283 {normal=(0.118921 -0.973071 -0.197461)} Corner 10815 28283 {normal=(0.291089 -0.912967 -0.285934)} Corner 10815 28284 {normal=(0.291089 -0.912967 -0.285934)} Corner 10536 28285 {normal=(-0.672656 0.719937 0.170954)} Corner 10647 28285 {normal=(-0.579599 0.74425 0.331899)} Corner 10647 28286 {normal=(-0.579599 0.74425 0.331899)} Corner 10584 28287 {normal=(-0.661257 0.7453 0.0852449)} Corner 10584 28288 {normal=(-0.661257 0.7453 0.0852449)} Corner 10536 28288 {normal=(-0.672656 0.719937 0.170954)} Corner 10468 28289 {normal=(-0.363663 -0.108854 -0.925149)} Corner 10536 28289 {normal=(-0.193342 0.250826 -0.948528)} Corner 10536 28290 {normal=(-0.193342 0.250826 -0.948528)} Corner 10584 28290 {normal=(-0.4789 0.204437 -0.853733)} Corner 10584 28291 {normal=(-0.4789 0.204437 -0.853733)} Corner 10468 28292 {normal=(-0.363663 -0.108854 -0.925149)} Corner 10474 28293 {normal=(-0.259452 -0.51857 -0.814721)} Corner 10468 28293 {normal=(-0.363663 -0.108854 -0.925149)} Corner 10468 28294 {normal=(-0.363663 -0.108854 -0.925149)} Corner 10677 28295 {normal=(-0.216732 -0.55045 -0.806246)} Corner 10677 28296 {normal=(-0.216732 -0.55045 -0.806246)} Corner 10474 28296 {normal=(-0.259452 -0.51857 -0.814721)} Corner 10533 28297 {normal=(0.111317 -0.990269 -0.0835201)} Corner 10474 28297 {normal=(0.0644327 -0.981412 -0.180773)} Corner 10474 28298 {normal=(0.0644327 -0.981412 -0.180773)} Corner 10677 28298 {normal=(0.118921 -0.973071 -0.197461)} Corner 10677 28299 {normal=(0.118921 -0.973071 -0.197461)} Corner 10533 28300 {normal=(0.111317 -0.990269 -0.0835201)} Corner 10394 28301 {normal=(-0.847434 -0.253922 -0.466239)} Corner 10407 28301 {normal=(-0.858158 -0.23128 -0.458338)} Corner 10407 28302 {normal=(-0.858158 -0.23128 -0.458338)} Corner 10468 28302 {normal=(-0.816432 -0.312639 -0.485484)} Corner 10468 28303 {normal=(-0.816432 -0.312639 -0.485484)} Corner 10474 28303 {normal=(-0.816432 -0.312639 -0.485484)} Corner 10474 28304 {normal=(-0.816432 -0.312639 -0.485484)} Corner 10394 28304 {normal=(-0.847434 -0.253922 -0.466239)} Corner 10394 28305 {normal=(-0.832305 -0.501187 0.236814)} Corner 10394 28306 {normal=(-0.832305 -0.501187 0.236814)} Corner 10474 28306 {normal=(-0.728329 -0.637246 0.251901)} Corner 10474 28307 {normal=(-0.728329 -0.637246 0.251901)} Corner 10533 28307 {normal=(-0.71093 -0.647521 0.274399)} Corner 10533 28308 {normal=(-0.71093 -0.647521 0.274399)} Corner 10528 28309 {normal=(0.207507 0.287035 -0.935175)} Corner 10649 28309 {normal=(0.72483 0.211759 -0.655576)} Corner 10649 28310 {normal=(0.72483 0.211759 -0.655576)} Corner 10647 28310 {normal=(0.72483 0.211759 -0.655576)} Corner 10647 28311 {normal=(0.72483 0.211759 -0.655576)} Corner 10536 28311 {normal=(-0.193342 0.250826 -0.948528)} Corner 10536 28312 {normal=(-0.193342 0.250826 -0.948528)} Corner 10528 28312 {normal=(0.207507 0.287035 -0.935175)} Corner 10407 28313 {normal=(-0.216951 0.245794 -0.944732)} Corner 10528 28313 {normal=(0.207507 0.287035 -0.935175)} Corner 10528 28314 {normal=(0.207507 0.287035 -0.935175)} Corner 10536 28314 {normal=(-0.193342 0.250826 -0.948528)} Corner 10536 28315 {normal=(-0.193342 0.250826 -0.948528)} Corner 10468 28315 {normal=(-0.363663 -0.108854 -0.925149)} Corner 10468 28316 {normal=(-0.363663 -0.108854 -0.925149)} Corner 10407 28316 {normal=(-0.216951 0.245794 -0.944732)} Corner 10503 28317 {normal=(0.423643 0.871163 -0.248195)} Corner 10649 28318 {normal=(0.296976 0.95184 -0.0761978)} Corner 10649 28319 {normal=(0.296976 0.95184 -0.0761978)} Corner 10528 28319 {normal=(0.210834 0.957549 -0.196593)} Corner 10528 28320 {normal=(0.210834 0.957549 -0.196593)} Corner 10503 28320 {normal=(0.423643 0.871163 -0.248195)} Corner 10375 28321 {normal=(-0.0223954 0.327137 -0.944712)} Corner 10503 28321 {normal=(-0.0883267 0.326066 -0.941212)} Corner 10503 28322 {normal=(-0.0883267 0.326066 -0.941212)} Corner 10528 28322 {normal=(0.207507 0.287035 -0.935175)} Corner 10528 28323 {normal=(0.207507 0.287035 -0.935175)} Corner 10407 28323 {normal=(-0.216951 0.245794 -0.944732)} Corner 10407 28324 {normal=(-0.216951 0.245794 -0.944732)} Corner 10375 28324 {normal=(-0.0223954 0.327137 -0.944712)} Corner 10332 28325 {normal=(-0.826594 -0.182906 -0.532247)} Corner 10375 28325 {normal=(-0.835762 -0.181102 -0.518366)} Corner 10375 28326 {normal=(-0.835762 -0.181102 -0.518366)} Corner 10407 28326 {normal=(-0.858158 -0.23128 -0.458338)} Corner 10407 28327 {normal=(-0.858158 -0.23128 -0.458338)} Corner 10394 28327 {normal=(-0.847434 -0.253922 -0.466239)} Corner 10394 28328 {normal=(-0.847434 -0.253922 -0.466239)} Corner 10332 28328 {normal=(-0.826594 -0.182906 -0.532247)} Corner 10332 28329 {normal=(-0.94486 -0.317135 0.0816399)} Corner 10332 28330 {normal=(-0.94486 -0.317135 0.0816399)} Corner 10394 28330 {normal=(-0.832305 -0.501187 0.236814)} Corner 10394 28331 {normal=(-0.832305 -0.501187 0.236814)} Corner 10368 28333 {normal=(0.0236898 0.166605 -0.985739)} Corner 10482 28333 {normal=(0.0727745 -0.0641608 -0.995283)} Corner 10482 28334 {normal=(0.0727745 -0.0641608 -0.995283)} Corner 10503 28334 {normal=(-0.0883267 0.326066 -0.941212)} Corner 10503 28335 {normal=(-0.0883267 0.326066 -0.941212)} Corner 10375 28335 {normal=(-0.0223954 0.327137 -0.944712)} Corner 10375 28336 {normal=(-0.0223954 0.327137 -0.944712)} Corner 10368 28336 {normal=(0.0236898 0.166605 -0.985739)} Corner 10314 28337 {normal=(-0.762352 -0.193247 -0.617637)} Corner 10368 28337 {normal=(-0.762352 -0.193247 -0.617637)} Corner 10368 28338 {normal=(-0.762352 -0.193247 -0.617637)} Corner 10375 28338 {normal=(-0.835762 -0.181102 -0.518366)} Corner 10375 28339 {normal=(-0.835762 -0.181102 -0.518366)} Corner 10332 28339 {normal=(-0.826594 -0.182906 -0.532247)} Corner 10332 28340 {normal=(-0.826594 -0.182906 -0.532247)} Corner 10314 28340 {normal=(-0.762352 -0.193247 -0.617637)} Corner 10305 28341 {normal=(-0.93667 -0.34193 0.0757175)} Corner 10314 28341 {normal=(-0.961738 -0.272502 -0.0283278)} Corner 10314 28342 {normal=(-0.961738 -0.272502 -0.0283278)} Corner 10332 28342 {normal=(-0.94486 -0.317135 0.0816399)} Corner 10332 28343 {normal=(-0.94486 -0.317135 0.0816399)} Corner 10305 28344 {normal=(-0.93667 -0.34193 0.0757175)} Corner 10482 28345 {normal=(0.623349 0.727043 -0.287827)} Corner 10576 28345 {normal=(0.717084 0.681669 -0.145319)} Corner 10576 28346 {normal=(0.717084 0.681669 -0.145319)} Corner 10503 28347 {normal=(0.423643 0.871163 -0.248195)} Corner 10503 28348 {normal=(0.423643 0.871163 -0.248195)} Corner 10482 28348 {normal=(0.623349 0.727043 -0.287827)} Corner 10404 28349 {normal=(-0.322389 0.946511 0.0135311)} Corner 10404 28350 {normal=(-0.322389 0.946511 0.0135311)} Corner 10314 28350 {normal=(-0.366535 0.921596 0.127722)} Corner 10314 28351 {normal=(-0.366535 0.921596 0.127722)} Corner 10305 28351 {normal=(-0.372564 0.920673 0.116433)} Corner 10305 28352 {normal=(-0.372564 0.920673 0.116433)} Corner 10576 28354 {normal=(0.343338 -0.933072 -0.107214)} Corner 10576 28355 {normal=(0.343338 -0.933072 -0.107214)} Corner 10482 28355 {normal=(0.0727745 -0.0641608 -0.995283)} Corner 10482 28356 {normal=(0.0727745 -0.0641608 -0.995283)} Corner 10464 28357 {normal=(0.109685 -0.0583133 -0.992254)} Corner 10482 28358 {normal=(0.0727745 -0.0641608 -0.995283)} Corner 10482 28359 {normal=(0.0727745 -0.0641608 -0.995283)} Corner 10368 28359 {normal=(0.0236898 0.166605 -0.985739)} Corner 10368 28360 {normal=(0.0236898 0.166605 -0.985739)} Corner 10464 28360 {normal=(0.109685 -0.0583133 -0.992254)} Corner 10404 28361 {normal=(-0.168271 0.545282 -0.821189)} Corner 10464 28361 {normal=(-0.168192 0.566328 -0.806836)} Corner 10464 28362 {normal=(-0.168192 0.566328 -0.806836)} Corner 10368 28362 {normal=(-0.16793 0.485983 -0.857683)} Corner 10368 28363 {normal=(-0.16793 0.485983 -0.857683)} Corner 10314 28363 {normal=(-0.16793 0.485984 -0.857683)} Corner 10314 28364 {normal=(-0.16793 0.485984 -0.857683)} Corner 10404 28364 {normal=(-0.168271 0.545282 -0.821189)} Corner 10623 28369 {normal=(0.210407 -0.214227 -0.953853)} Corner 10464 28371 {normal=(0.109685 -0.0583133 -0.992254)} Corner 10464 28372 {normal=(0.109685 -0.0583133 -0.992254)} Corner 10623 28372 {normal=(0.210407 -0.214227 -0.953853)} Corner 10639 28373 {normal=(-0.0895538 0.557472 -0.825352)} Corner 10623 28373 {normal=(-0.116025 0.582522 -0.804491)} Corner 10623 28374 {normal=(-0.116025 0.582522 -0.804491)} Corner 10464 28374 {normal=(-0.168192 0.566328 -0.806836)} Corner 10464 28375 {normal=(-0.168192 0.566328 -0.806836)} Corner 10404 28375 {normal=(-0.168271 0.545282 -0.821189)} Corner 10404 28376 {normal=(-0.168271 0.545282 -0.821189)} Corner 10639 28376 {normal=(-0.0895538 0.557472 -0.825352)} Corner 10639 28377 {normal=(-0.0782647 0.988473 -0.129599)} Corner 10639 28378 {normal=(-0.0782647 0.988473 -0.129599)} Corner 10404 28378 {normal=(-0.322389 0.946511 0.0135311)} Corner 10404 28379 {normal=(-0.322389 0.946511 0.0135311)} Corner 10763 28381 {normal=(-0.0307341 0.498868 -0.866133)} Corner 10725 28381 {normal=(-0.0307341 0.498868 -0.866133)} Corner 10725 28382 {normal=(-0.0307341 0.498868 -0.866133)} Corner 10623 28382 {normal=(-0.116025 0.582522 -0.804491)} Corner 10623 28383 {normal=(-0.116025 0.582522 -0.804491)} Corner 10639 28383 {normal=(-0.0895538 0.557472 -0.825352)} Corner 10639 28384 {normal=(-0.0895538 0.557472 -0.825352)} Corner 10763 28384 {normal=(-0.0307341 0.498868 -0.866133)} Corner 10760 28385 {normal=(-0.143766 0.956818 -0.252648)} Corner 10763 28385 {normal=(-0.0978301 0.971285 -0.216873)} Corner 10763 28386 {normal=(-0.0978301 0.971285 -0.216873)} Corner 10639 28386 {normal=(-0.0782647 0.988473 -0.129599)} Corner 10639 28387 {normal=(-0.0782647 0.988473 -0.129599)} Corner 10760 28388 {normal=(-0.143766 0.956818 -0.252648)} Corner 10725 28393 {normal=(0.305723 -0.241767 -0.920914)} Corner 10623 28395 {normal=(0.210407 -0.214227 -0.953853)} Corner 10623 28396 {normal=(0.210407 -0.214227 -0.953853)} Corner 10725 28396 {normal=(0.305723 -0.241767 -0.920914)} Corner 10760 28397 {normal=(0.400836 0.487852 -0.775455)} Corner 10789 28397 {normal=(0.646663 0.536581 -0.542133)} Corner 10789 28398 {normal=(0.646663 0.536581 -0.542133)} Corner 10763 28399 {normal=(0.438877 0.286584 -0.85162)} Corner 10763 28400 {normal=(0.438877 0.286584 -0.85162)} Corner 10760 28400 {normal=(0.400836 0.487852 -0.775455)} Corner 10725 28401 {normal=(0.305723 -0.241767 -0.920914)} Corner 10725 28404 {normal=(0.305723 -0.241767 -0.920914)} Corner 10639 28411 {normal=(-0.0782647 0.988473 -0.129599)} Corner 10639 28412 {normal=(-0.0782647 0.988473 -0.129599)} Corner 10789 28413 {normal=(0.646663 0.536581 -0.542133)} Corner 10792 28413 {normal=(0.803622 0.526692 -0.277106)} Corner 10792 28414 {normal=(0.803622 0.526692 -0.277106)} Corner 10811 28414 {normal=(0.770489 0.528209 -0.35685)} Corner 10811 28415 {normal=(0.770489 0.528209 -0.35685)} Corner 10789 28416 {normal=(0.646663 0.536581 -0.542133)} Corner 10824 28417 {normal=(0.870157 0.25288 -0.422941)} Corner 10819 28417 {normal=(0.860125 -0.472046 -0.193282)} Corner 10819 28418 {normal=(0.860125 -0.472046 -0.193282)} Corner 10824 28420 {normal=(0.870157 0.25288 -0.422941)} Corner 10824 28421 {normal=(0.870157 0.25288 -0.422941)} Corner 10811 28423 {normal=(0.770489 0.528209 -0.35685)} Corner 10811 28424 {normal=(0.770489 0.528209 -0.35685)} Corner 10824 28424 {normal=(0.870157 0.25288 -0.422941)} Corner 10763 28426 {normal=(0.438877 0.286584 -0.85162)} Corner 10763 28427 {normal=(0.438877 0.286584 -0.85162)} Corner 10718 28429 {normal=(0.341169 0.906355 -0.249246)} Corner 10709 28429 {normal=(0.341169 0.906355 -0.249246)} Corner 10709 28430 {normal=(0.341169 0.906355 -0.249246)} Corner 10666 28430 {normal=(0.341169 0.906355 -0.249246)} Corner 10666 28431 {normal=(0.341169 0.906355 -0.249246)} Corner 10690 28431 {normal=(0.341169 0.906355 -0.249246)} Corner 10690 28432 {normal=(0.341169 0.906355 -0.249246)} Corner 10718 28432 {normal=(0.341169 0.906355 -0.249246)} Corner 10863 28433 {normal=(0.485607 -0.75939 -0.433028)} Corner 10815 28435 {normal=(0.291089 -0.912967 -0.285934)} Corner 10815 28436 {normal=(0.291089 -0.912967 -0.285934)} Corner 10863 28436 {normal=(0.485607 -0.75939 -0.433028)} Corner 10863 28437 {normal=(-0.0272071 -0.5093 -0.860159)} Corner 10863 28438 {normal=(-0.0272071 -0.5093 -0.860159)} Corner 10815 28438 {normal=(-0.187529 -0.600658 -0.777202)} Corner 10815 28439 {normal=(-0.187529 -0.600658 -0.777202)} Corner 10709 28441 {normal=(-0.610713 -0.106723 -0.784627)} Corner 10666 28443 {normal=(-0.511328 0.111834 -0.852078)} Corner 10666 28444 {normal=(-0.511328 0.111834 -0.852078)} Corner 10709 28444 {normal=(-0.610713 -0.106723 -0.784627)} Corner 10873 28445 {normal=(0.599243 -0.625457 0.499711)} Corner 10873 28446 {normal=(0.599243 -0.625457 0.499711)} Corner 10826 28446 {normal=(0.537685 -0.562011 0.628521)} Corner 10826 28447 {normal=(0.537685 -0.562011 0.628521)} Corner 10694 28453 {normal=(0.844523 -0.45954 -0.274962)} Corner 10718 28453 {normal=(0.844523 -0.45954 -0.274962)} Corner 10718 28454 {normal=(0.844523 -0.45954 -0.274962)} Corner 10690 28454 {normal=(0.844523 -0.45954 -0.274962)} Corner 10690 28455 {normal=(0.844523 -0.45954 -0.274962)} Corner 10749 28455 {normal=(0.844523 -0.45954 -0.274962)} Corner 10749 28456 {normal=(0.844523 -0.45954 -0.274962)} Corner 10694 28456 {normal=(0.844523 -0.45954 -0.274962)} Corner 10758 28459 {normal=(0.414166 0.220029 0.883206)} Corner 10758 28460 {normal=(0.414166 0.220029 0.883206)} Corner 10824 28461 {normal=(0.878252 0.241508 0.412732)} Corner 10824 28462 {normal=(0.878252 0.241508 0.412732)} Corner 10811 28462 {normal=(0.776967 0.514368 0.362972)} Corner 10811 28463 {normal=(0.776967 0.514368 0.362972)} Corner 10819 28465 {normal=(0.932291 -0.146939 0.33052)} Corner 10824 28465 {normal=(0.878252 0.241508 0.412732)} Corner 10824 28466 {normal=(0.878252 0.241508 0.412732)} Corner 10806 28467 {normal=(0.837322 -0.193223 0.511425)} Corner 10806 28468 {normal=(0.837322 -0.193223 0.511425)} Corner 10819 28468 {normal=(0.932291 -0.146939 0.33052)} Corner 10792 28469 {normal=(0.821859 0.493605 0.284432)} Corner 10791 28469 {normal=(0.673534 0.473902 0.567247)} Corner 10791 28470 {normal=(0.673534 0.473902 0.567247)} Corner 10811 28471 {normal=(0.776967 0.514368 0.362972)} Corner 10811 28472 {normal=(0.776967 0.514368 0.362972)} Corner 10792 28472 {normal=(0.821859 0.493605 0.284432)} Corner 10637 28474 {normal=(-0.11062 0.966466 0.231746)} Corner 10637 28475 {normal=(-0.11062 0.966466 0.231746)} Corner 10788 28477 {normal=(0.575975 -0.279931 0.768044)} Corner 10788 28478 {normal=(0.575975 -0.279931 0.768044)} Corner 10806 28478 {normal=(0.837322 -0.193223 0.511425)} Corner 10806 28479 {normal=(0.837322 -0.193223 0.511425)} Corner 10724 28481 {normal=(0.292837 -0.271683 0.916752)} Corner 10724 28482 {normal=(0.292837 -0.271683 0.916752)} Corner 10736 28482 {normal=(0.277492 -0.349187 0.895023)} Corner 10736 28483 {normal=(0.277492 -0.349187 0.895023)} Corner 10788 28483 {normal=(0.575975 -0.279931 0.768044)} Corner 10788 28484 {normal=(0.575975 -0.279931 0.768044)} Corner 10791 28485 {normal=(0.673534 0.473902 0.567247)} Corner 10759 28485 {normal=(0.401044 0.384669 0.83138)} Corner 10759 28486 {normal=(0.401044 0.384669 0.83138)} Corner 10758 28486 {normal=(0.414166 0.220029 0.883206)} Corner 10758 28487 {normal=(0.414166 0.220029 0.883206)} Corner 10791 28488 {normal=(0.673534 0.473902 0.567247)} Corner 10736 28489 {normal=(0.277492 -0.349187 0.895023)} Corner 10724 28489 {normal=(0.292837 -0.271683 0.916752)} Corner 10724 28490 {normal=(0.292837 -0.271683 0.916752)} Corner 10622 28490 {normal=(0.117488 -0.439658 0.890448)} Corner 10622 28491 {normal=(0.117488 -0.439658 0.890448)} Corner 10642 28491 {normal=(0.11227 -0.453834 0.883985)} Corner 10642 28492 {normal=(0.11227 -0.453834 0.883985)} Corner 10736 28492 {normal=(0.277492 -0.349187 0.895023)} Corner 10736 28493 {normal=(0.438162 -0.868745 0.23086)} Corner 10736 28494 {normal=(0.438162 -0.868745 0.23086)} Corner 10642 28494 {normal=(0.306618 -0.905981 0.291862)} Corner 10642 28495 {normal=(0.306618 -0.905981 0.291862)} Corner 10758 28497 {normal=(-0.108207 0.93807 0.329113)} Corner 10759 28497 {normal=(-0.155759 0.953101 0.259494)} Corner 10759 28498 {normal=(-0.155759 0.953101 0.259494)} Corner 10637 28499 {normal=(-0.11062 0.966466 0.231746)} Corner 10637 28500 {normal=(-0.11062 0.966466 0.231746)} Corner 10758 28500 {normal=(-0.108207 0.93807 0.329113)} Corner 10724 28501 {normal=(-0.0319939 0.435695 0.899526)} Corner 10758 28501 {normal=(-0.0319939 0.435695 0.899526)} Corner 10758 28502 {normal=(-0.0319939 0.435695 0.899526)} Corner 10637 28502 {normal=(-0.107091 0.459683 0.881603)} Corner 10637 28503 {normal=(-0.107091 0.459683 0.881603)} Corner 10622 28503 {normal=(-0.153014 0.472968 0.867691)} Corner 10622 28504 {normal=(-0.153014 0.472968 0.867691)} Corner 10724 28504 {normal=(-0.0319939 0.435695 0.899526)} Corner 10637 28505 {normal=(-0.11062 0.966466 0.231746)} Corner 10406 28507 {normal=(-0.34184 0.924963 0.1661)} Corner 10406 28508 {normal=(-0.34184 0.924963 0.1661)} Corner 10637 28508 {normal=(-0.11062 0.966466 0.231746)} Corner 10622 28509 {normal=(-0.153014 0.472968 0.867691)} Corner 10637 28509 {normal=(-0.107091 0.459683 0.881603)} Corner 10637 28510 {normal=(-0.107091 0.459683 0.881603)} Corner 10406 28510 {normal=(-0.154068 0.417804 0.895379)} Corner 10406 28511 {normal=(-0.154068 0.417804 0.895379)} Corner 10460 28511 {normal=(-0.155195 0.419087 0.894584)} Corner 10460 28512 {normal=(-0.155195 0.419087 0.894584)} Corner 10622 28512 {normal=(-0.153014 0.472968 0.867691)} Corner 10642 28513 {normal=(0.11227 -0.453834 0.883985)} Corner 10622 28513 {normal=(0.117488 -0.439658 0.890448)} Corner 10622 28514 {normal=(0.117488 -0.439658 0.890448)} Corner 10460 28514 {normal=(0.281212 -0.361634 0.888898)} Corner 10460 28515 {normal=(0.281212 -0.361634 0.888898)} Corner 10606 28515 {normal=(0.207751 -0.423718 0.881648)} Corner 10606 28516 {normal=(0.207751 -0.423718 0.881648)} Corner 10642 28516 {normal=(0.11227 -0.453834 0.883985)} Corner 10642 28517 {normal=(0.306618 -0.905981 0.291862)} Corner 10642 28518 {normal=(0.306618 -0.905981 0.291862)} Corner 10606 28518 {normal=(0.217671 -0.921776 0.320855)} Corner 10606 28519 {normal=(0.217671 -0.921776 0.320855)} Corner 10460 28521 {normal=(-0.155195 0.419087 0.894584)} Corner 10406 28521 {normal=(-0.154068 0.417804 0.895379)} Corner 10406 28522 {normal=(-0.154068 0.417804 0.895379)} Corner 10317 28522 {normal=(-0.102624 0.358317 0.927943)} Corner 10317 28523 {normal=(-0.102624 0.358317 0.927943)} Corner 10446 28523 {normal=(-0.102624 0.358317 0.927943)} Corner 10446 28524 {normal=(-0.102624 0.358317 0.927943)} Corner 10460 28524 {normal=(-0.155195 0.419087 0.894584)} Corner 10606 28525 {normal=(0.207751 -0.423718 0.881648)} Corner 10460 28525 {normal=(0.281212 -0.361634 0.888898)} Corner 10460 28526 {normal=(0.281212 -0.361634 0.888898)} Corner 10446 28526 {normal=(0.461835 -0.103252 0.880935)} Corner 10446 28527 {normal=(0.461835 -0.103252 0.880935)} Corner 10557 28527 {normal=(0.473595 -0.0668025 0.878206)} Corner 10557 28528 {normal=(0.473595 -0.0668025 0.878206)} Corner 10606 28528 {normal=(0.207751 -0.423718 0.881648)} Corner 10606 28529 {normal=(0.217671 -0.921776 0.320855)} Corner 10606 28530 {normal=(0.217671 -0.921776 0.320855)} Corner 10557 28530 {normal=(0.405249 -0.873656 0.269256)} Corner 10557 28531 {normal=(0.405249 -0.873656 0.269256)} Corner 10576 28531 {normal=(0.343338 -0.933072 -0.107214)} Corner 10576 28532 {normal=(0.343338 -0.933072 -0.107214)} Corner 10406 28533 {normal=(-0.34184 0.924963 0.1661)} Corner 10305 28534 {normal=(-0.372564 0.920673 0.116433)} Corner 10305 28535 {normal=(-0.372564 0.920673 0.116433)} Corner 10317 28535 {normal=(-0.378274 0.919649 0.105614)} Corner 10317 28536 {normal=(-0.378274 0.919649 0.105614)} Corner 10406 28536 {normal=(-0.34184 0.924963 0.1661)} Corner 10576 28537 {normal=(0.717084 0.681669 -0.145319)} Corner 10557 28537 {normal=(0.778464 0.627291 -0.02238)} Corner 10557 28538 {normal=(0.778464 0.627291 -0.02238)} Corner 10589 28538 {normal=(0.659448 0.750843 0.0369219)} Corner 10589 28539 {normal=(0.659448 0.750843 0.0369219)} Corner 10576 28540 {normal=(0.717084 0.681669 -0.145319)} Corner 10317 28541 {normal=(-0.883645 -0.42114 0.204483)} Corner 10305 28541 {normal=(-0.93667 -0.34193 0.0757175)} Corner 10305 28542 {normal=(-0.93667 -0.34193 0.0757175)} Corner 10367 28543 {normal=(-0.867387 -0.411803 0.279389)} Corner 10367 28544 {normal=(-0.867387 -0.411803 0.279389)} Corner 10317 28544 {normal=(-0.883645 -0.42114 0.204483)} Corner 10446 28545 {normal=(-0.326292 -0.242757 0.913566)} Corner 10317 28545 {normal=(-0.326292 -0.242757 0.913566)} Corner 10317 28546 {normal=(-0.326292 -0.242757 0.913566)} Corner 10367 28546 {normal=(-0.351841 -0.266039 0.897458)} Corner 10367 28547 {normal=(-0.351841 -0.266039 0.897458)} Corner 10455 28547 {normal=(-0.363852 -0.277012 0.889312)} Corner 10455 28548 {normal=(-0.363852 -0.277012 0.889312)} Corner 10446 28548 {normal=(-0.326292 -0.242757 0.913566)} Corner 10557 28549 {normal=(0.473595 -0.0668025 0.878206)} Corner 10446 28549 {normal=(0.461835 -0.103252 0.880935)} Corner 10446 28550 {normal=(0.461835 -0.103252 0.880935)} Corner 10455 28550 {normal=(0.499824 0.103011 0.85998)} Corner 10455 28551 {normal=(0.499824 0.103011 0.85998)} Corner 10589 28551 {normal=(0.481933 0.106483 0.869714)} Corner 10589 28552 {normal=(0.481933 0.106483 0.869714)} Corner 10557 28552 {normal=(0.473595 -0.0668025 0.878206)} Corner 10367 28553 {normal=(-0.867387 -0.411803 0.279389)} Corner 10459 28555 {normal=(-0.779044 -0.533622 0.329148)} Corner 10459 28556 {normal=(-0.779044 -0.533622 0.329148)} Corner 10367 28556 {normal=(-0.867387 -0.411803 0.279389)} Corner 10455 28557 {normal=(-0.363852 -0.277012 0.889312)} Corner 10367 28557 {normal=(-0.351841 -0.266039 0.897458)} Corner 10367 28558 {normal=(-0.351841 -0.266039 0.897458)} Corner 10459 28558 {normal=(-0.331145 -0.346569 0.877629)} Corner 10459 28559 {normal=(-0.331145 -0.346569 0.877629)} Corner 10553 28559 {normal=(-0.337259 -0.342123 0.877045)} Corner 10553 28560 {normal=(-0.337259 -0.342123 0.877045)} Corner 10455 28560 {normal=(-0.363852 -0.277012 0.889312)} Corner 10589 28561 {normal=(0.481933 0.106483 0.869714)} Corner 10455 28561 {normal=(0.499824 0.103011 0.85998)} Corner 10455 28562 {normal=(0.499824 0.103011 0.85998)} Corner 10553 28562 {normal=(0.44793 0.149802 0.88143)} Corner 10553 28563 {normal=(0.44793 0.149802 0.88143)} Corner 10657 28563 {normal=(0.453565 0.13849 0.880397)} Corner 10657 28564 {normal=(0.453565 0.13849 0.880397)} Corner 10589 28564 {normal=(0.481933 0.106483 0.869714)} Corner 10589 28565 {normal=(0.659448 0.750843 0.0369219)} Corner 10589 28566 {normal=(0.659448 0.750843 0.0369219)} Corner 10657 28566 {normal=(0.426064 0.89554 0.128362)} Corner 10657 28567 {normal=(0.426064 0.89554 0.128362)} Corner 10649 28567 {normal=(0.296976 0.95184 -0.0761978)} Corner 10649 28568 {normal=(0.296976 0.95184 -0.0761978)} Corner 10657 28569 {normal=(0.453565 0.13849 0.880397)} Corner 10553 28569 {normal=(0.44793 0.149802 0.88143)} Corner 10553 28570 {normal=(0.44793 0.149802 0.88143)} Corner 10635 28570 {normal=(0.43054 0.198616 0.880447)} Corner 10635 28571 {normal=(0.43054 0.198616 0.880447)} Corner 10674 28571 {normal=(0.43039 0.199548 0.88031)} Corner 10674 28572 {normal=(0.43039 0.199548 0.88031)} Corner 10657 28572 {normal=(0.453565 0.13849 0.880397)} Corner 10649 28573 {normal=(0.981153 0.192404 -0.017897)} Corner 10657 28573 {normal=(0.981153 0.192404 -0.017897)} Corner 10657 28574 {normal=(0.981153 0.192404 -0.017897)} Corner 10674 28574 {normal=(0.981153 0.192404 -0.017897)} Corner 10674 28575 {normal=(0.981153 0.192404 -0.017897)} Corner 10647 28575 {normal=(0.981153 0.192404 -0.017897)} Corner 10647 28576 {normal=(0.981153 0.192404 -0.017897)} Corner 10649 28576 {normal=(0.981153 0.192404 -0.017897)} Corner 10459 28577 {normal=(-0.779044 -0.533622 0.329148)} Corner 10533 28578 {normal=(-0.71093 -0.647521 0.274399)} Corner 10533 28579 {normal=(-0.71093 -0.647521 0.274399)} Corner 10586 28579 {normal=(-0.693478 -0.656899 0.295927)} Corner 10586 28580 {normal=(-0.693478 -0.656899 0.295927)} Corner 10459 28580 {normal=(-0.779044 -0.533622 0.329148)} Corner 10553 28581 {normal=(-0.337259 -0.342123 0.877045)} Corner 10459 28581 {normal=(-0.331145 -0.346569 0.877629)} Corner 10459 28582 {normal=(-0.331145 -0.346569 0.877629)} Corner 10586 28582 {normal=(-0.278915 -0.38321 0.880543)} Corner 10586 28583 {normal=(-0.278915 -0.38321 0.880543)} Corner 10635 28583 {normal=(-0.278915 -0.38321 0.880543)} Corner 10635 28584 {normal=(-0.278915 -0.38321 0.880543)} Corner 10553 28584 {normal=(-0.337259 -0.342123 0.877045)} Corner 10586 28585 {normal=(0.344909 -0.857262 0.382283)} Corner 10533 28585 {normal=(0.111317 -0.990269 -0.0835201)} Corner 10533 28586 {normal=(0.111317 -0.990269 -0.0835201)} Corner 10586 28588 {normal=(0.344909 -0.857262 0.382283)} Corner 10635 28589 {normal=(0.468219 -0.56704 0.67767)} Corner 10586 28589 {normal=(0.344909 -0.857262 0.382283)} Corner 10586 28590 {normal=(0.344909 -0.857262 0.382283)} Corner 10723 28591 {normal=(0.487969 -0.557249 0.671833)} Corner 10723 28592 {normal=(0.487969 -0.557249 0.671833)} Corner 10635 28592 {normal=(0.468219 -0.56704 0.67767)} Corner 10674 28593 {normal=(0.43039 0.199548 0.88031)} Corner 10635 28593 {normal=(0.43054 0.198616 0.880447)} Corner 10635 28594 {normal=(0.43054 0.198616 0.880447)} Corner 10723 28594 {normal=(0.411906 0.227735 0.88231)} Corner 10723 28595 {normal=(0.411906 0.227735 0.88231)} Corner 10705 28595 {normal=(0.403439 0.232233 0.885045)} Corner 10705 28596 {normal=(0.403439 0.232233 0.885045)} Corner 10674 28596 {normal=(0.43039 0.199548 0.88031)} Corner 10647 28597 {normal=(-0.579599 0.74425 0.331899)} Corner 10674 28597 {normal=(-0.489975 0.744847 0.452911)} Corner 10674 28598 {normal=(-0.489975 0.744847 0.452911)} Corner 10705 28598 {normal=(-0.429247 0.765243 0.47974)} Corner 10705 28599 {normal=(-0.429247 0.765243 0.47974)} Corner 10647 28600 {normal=(-0.579599 0.74425 0.331899)} Corner 10705 28605 {normal=(-0.429247 0.765243 0.47974)} Corner 10705 28606 {normal=(-0.429247 0.765243 0.47974)} Corner 10749 28606 {normal=(-0.317975 0.792042 0.521115)} Corner 10749 28607 {normal=(-0.317975 0.792042 0.521115)} Corner 10690 28607 {normal=(-0.537594 0.818395 0.203031)} Corner 10690 28608 {normal=(-0.537594 0.818395 0.203031)} Corner 10723 28609 {normal=(0.487969 -0.557249 0.671833)} Corner 10826 28611 {normal=(0.537685 -0.562011 0.628521)} Corner 10826 28612 {normal=(0.537685 -0.562011 0.628521)} Corner 10723 28612 {normal=(0.487969 -0.557249 0.671833)} Corner 10705 28613 {normal=(0.403439 0.232233 0.885045)} Corner 10723 28613 {normal=(0.411906 0.227735 0.88231)} Corner 10723 28614 {normal=(0.411906 0.227735 0.88231)} Corner 10826 28614 {normal=(0.392182 0.238146 0.888527)} Corner 10826 28615 {normal=(0.392182 0.238146 0.888527)} Corner 10749 28615 {normal=(0.392182 0.238146 0.888527)} Corner 10749 28616 {normal=(0.392182 0.238146 0.888527)} Corner 10705 28616 {normal=(0.403439 0.232233 0.885045)} Corner 10914 28617 {normal=(0.403809 -0.134994 -0.904829)} Corner 10914 28618 {normal=(0.403809 -0.134994 -0.904829)} Corner 10863 28618 {normal=(-0.0272071 -0.5093 -0.860159)} Corner 10863 28619 {normal=(-0.0272071 -0.5093 -0.860159)} Corner 10721 28621 {normal=(-0.573954 -0.130641 -0.808399)} Corner 10709 28623 {normal=(-0.610713 -0.106723 -0.784627)} Corner 10709 28624 {normal=(-0.610713 -0.106723 -0.784627)} Corner 10721 28624 {normal=(-0.573954 -0.130641 -0.808399)} Corner 10717 28625 {normal=(-0.961752 0.229869 0.148975)} Corner 10721 28625 {normal=(-0.960285 0.258383 0.105318)} Corner 10721 28626 {normal=(-0.960285 0.258383 0.105318)} Corner 10709 28626 {normal=(-0.991112 0.125768 0.0433507)} Corner 10709 28627 {normal=(-0.991112 0.125768 0.0433507)} Corner 10718 28627 {normal=(-0.991112 0.125768 0.0433507)} Corner 10718 28628 {normal=(-0.991112 0.125768 0.0433507)} Corner 10717 28628 {normal=(-0.961752 0.229869 0.148975)} Corner 10771 28629 {normal=(-0.438374 0.898712 0.0120013)} Corner 10717 28629 {normal=(-0.474383 0.858881 0.19309)} Corner 10717 28630 {normal=(-0.474383 0.858881 0.19309)} Corner 10718 28630 {normal=(-0.474383 0.858881 0.19309)} Corner 10718 28631 {normal=(-0.474383 0.858881 0.19309)} Corner 10694 28631 {normal=(-0.448155 0.892312 0.0541851)} Corner 10694 28632 {normal=(-0.448155 0.892312 0.0541851)} Corner 10771 28632 {normal=(-0.438374 0.898712 0.0120013)} Corner 10945 28633 {normal=(0.663546 -0.747898 -0.0188594)} Corner 10934 28633 {normal=(0.645623 -0.697285 0.311393)} Corner 10934 28634 {normal=(0.645623 -0.697285 0.311393)} Corner 10873 28634 {normal=(0.599243 -0.625457 0.499711)} Corner 10873 28635 {normal=(0.599243 -0.625457 0.499711)} Corner 10945 28636 {normal=(0.663546 -0.747898 -0.0188594)} Corner 10938 28637 {normal=(0.999557 8.59892e-05 -0.0297499)} Corner 10967 28637 {normal=(0.924715 -0.19683 -0.325821)} Corner 10967 28638 {normal=(0.924715 -0.19683 -0.325821)} Corner 10934 28638 {normal=(0.935322 -0.188589 -0.299344)} Corner 10934 28639 {normal=(0.935322 -0.188589 -0.299344)} Corner 10945 28639 {normal=(0.994326 -0.0515171 -0.0930647)} Corner 10945 28640 {normal=(0.994326 -0.0515171 -0.0930647)} Corner 10938 28640 {normal=(0.999557 8.59892e-05 -0.0297499)} Corner 10942 28641 {normal=(0.988734 0.108148 0.103488)} Corner 10938 28641 {normal=(0.999557 8.59892e-05 -0.0297499)} Corner 10938 28642 {normal=(0.999557 8.59892e-05 -0.0297499)} Corner 10945 28642 {normal=(0.994326 -0.0515171 -0.0930647)} Corner 10945 28643 {normal=(0.994326 -0.0515171 -0.0930647)} Corner 10949 28643 {normal=(0.988734 0.108148 0.103488)} Corner 10949 28644 {normal=(0.988734 0.108148 0.103488)} Corner 10942 28644 {normal=(0.988734 0.108148 0.103488)} Corner 10942 28645 {normal=(0.762788 -0.149801 -0.629059)} Corner 10942 28646 {normal=(0.762788 -0.149801 -0.629059)} Corner 10949 28646 {normal=(0.647487 0.021701 -0.761767)} Corner 10949 28647 {normal=(0.647487 0.021701 -0.761767)} Corner 10914 28647 {normal=(0.403809 -0.134994 -0.904829)} Corner 10914 28648 {normal=(0.403809 -0.134994 -0.904829)} Corner 10914 28650 {normal=(0.403809 -0.134994 -0.904829)} Corner 10914 28651 {normal=(0.403809 -0.134994 -0.904829)} Corner 10757 28653 {normal=(-0.454596 -0.189183 -0.870375)} Corner 10721 28655 {normal=(-0.573954 -0.130641 -0.808399)} Corner 10721 28656 {normal=(-0.573954 -0.130641 -0.808399)} Corner 10757 28656 {normal=(-0.454596 -0.189183 -0.870375)} Corner 10757 28657 {normal=(-0.999993 0.00362243 -0.00121113)} Corner 10757 28658 {normal=(-0.999993 0.00362243 -0.00121113)} Corner 10721 28658 {normal=(-0.960285 0.258383 0.105318)} Corner 10721 28659 {normal=(-0.960285 0.258383 0.105318)} Corner 10717 28659 {normal=(-0.961752 0.229869 0.148975)} Corner 10717 28660 {normal=(-0.961752 0.229869 0.148975)} Corner 10717 28662 {normal=(-0.961752 0.229869 0.148975)} Corner 10717 28663 {normal=(-0.961752 0.229869 0.148975)} Corner 10771 28663 {normal=(-0.937872 0.284328 0.198881)} Corner 10771 28664 {normal=(-0.937872 0.284328 0.198881)} Corner 10771 28666 {normal=(-0.937872 0.284328 0.198881)} Corner 10771 28667 {normal=(-0.937872 0.284328 0.198881)} Corner 10787 28667 {normal=(-0.981522 0.182192 0.0584899)} Corner 10787 28668 {normal=(-0.981522 0.182192 0.0584899)} Corner 10787 28670 {normal=(-0.981522 0.182192 0.0584899)} Corner 10787 28671 {normal=(-0.981522 0.182192 0.0584899)} Corner 10797 28671 {normal=(-0.972912 0.18015 0.144873)} Corner 10797 28672 {normal=(-0.972912 0.18015 0.144873)} Corner 10976 28673 {normal=(0.964946 0.0712766 0.252584)} Corner 10973 28673 {normal=(0.996707 0.0404894 0.0702557)} Corner 10973 28674 {normal=(0.996707 0.0404894 0.0702557)} Corner 10975 28674 {normal=(0.996707 0.0404895 0.0702557)} Corner 10975 28675 {normal=(0.996707 0.0404895 0.0702557)} Corner 10977 28675 {normal=(0.973204 0.0658995 0.220297)} Corner 10977 28676 {normal=(0.973204 0.0658995 0.220297)} Corner 10976 28676 {normal=(0.964946 0.0712766 0.252584)} Corner 10993 28677 {normal=(0.915073 0.0941181 0.392151)} Corner 10976 28677 {normal=(0.964946 0.0712766 0.252584)} Corner 10976 28678 {normal=(0.964946 0.0712766 0.252584)} Corner 10977 28678 {normal=(0.973204 0.0658995 0.220297)} Corner 10977 28679 {normal=(0.973204 0.0658995 0.220297)} Corner 10994 28679 {normal=(0.915074 0.0941181 0.392151)} Corner 10994 28680 {normal=(0.915074 0.0941181 0.392151)} Corner 10993 28680 {normal=(0.915073 0.0941181 0.392151)} Corner 10978 28681 {normal=(0.914813 -0.119335 -0.385845)} Corner 10993 28681 {normal=(0.922567 -0.0443075 -0.383284)} Corner 10993 28682 {normal=(0.922567 -0.0443075 -0.383284)} Corner 10994 28682 {normal=(0.922567 -0.0443075 -0.383284)} Corner 10994 28683 {normal=(0.922567 -0.0443075 -0.383284)} Corner 10981 28683 {normal=(0.913393 -0.129239 -0.38602)} Corner 10981 28684 {normal=(0.913393 -0.129239 -0.38602)} Corner 10978 28684 {normal=(0.914813 -0.119335 -0.385845)} Corner 10967 28685 {normal=(0.924715 -0.19683 -0.325821)} Corner 10978 28685 {normal=(0.914813 -0.119335 -0.385845)} Corner 10978 28686 {normal=(0.914813 -0.119335 -0.385845)} Corner 10981 28686 {normal=(0.913393 -0.129239 -0.38602)} Corner 10981 28687 {normal=(0.913393 -0.129239 -0.38602)} Corner 10934 28687 {normal=(0.935322 -0.188589 -0.299344)} Corner 10934 28688 {normal=(0.935322 -0.188589 -0.299344)} Corner 10967 28688 {normal=(0.924715 -0.19683 -0.325821)} Corner 10934 28689 {normal=(0.484023 -0.843071 -0.234422)} Corner 10981 28689 {normal=(0.513886 -0.835499 -0.194582)} Corner 10981 28690 {normal=(0.513886 -0.835499 -0.194582)} Corner 10873 28691 {normal=(0.314245 -0.890839 -0.328109)} Corner 10873 28692 {normal=(0.314245 -0.890839 -0.328109)} Corner 10934 28692 {normal=(0.484023 -0.843071 -0.234422)} Corner 10787 28693 {normal=(-0.421333 0.903093 -0.0830807)} Corner 10771 28693 {normal=(-0.438374 0.898712 0.0120013)} Corner 10771 28694 {normal=(-0.438374 0.898712 0.0120013)} Corner 10694 28694 {normal=(-0.448155 0.892312 0.0541851)} Corner 10694 28695 {normal=(-0.448155 0.892312 0.0541851)} Corner 10766 28695 {normal=(-0.415903 0.904331 -0.0959729)} Corner 10766 28696 {normal=(-0.415903 0.904331 -0.0959729)} Corner 10787 28696 {normal=(-0.421333 0.903093 -0.0830807)} Corner 10797 28697 {normal=(-0.483279 0.874277 -0.0456157)} Corner 10787 28697 {normal=(-0.421333 0.903093 -0.0830807)} Corner 10787 28698 {normal=(-0.421333 0.903093 -0.0830807)} Corner 10766 28698 {normal=(-0.415903 0.904331 -0.0959729)} Corner 10766 28699 {normal=(-0.415903 0.904331 -0.0959729)} Corner 10767 28699 {normal=(-0.466623 0.88074 -0.0809999)} Corner 10767 28700 {normal=(-0.466623 0.88074 -0.0809999)} Corner 10797 28700 {normal=(-0.483279 0.874277 -0.0456157)} Corner 10977 28701 {normal=(0.605679 -0.769601 0.202159)} Corner 10975 28701 {normal=(0.55827 -0.818093 -0.138055)} Corner 10975 28702 {normal=(0.55827 -0.818093 -0.138055)} Corner 10907 28702 {normal=(0.437007 -0.898389 -0.0438495)} Corner 10907 28703 {normal=(0.437007 -0.898389 -0.0438495)} Corner 10977 28704 {normal=(0.605679 -0.769601 0.202159)} Corner 10564 28705 {normal=(-0.155536 0.118551 -0.980691)} Corner 10565 28705 {normal=(-0.169617 0.0993732 -0.980487)} Corner 10565 28706 {normal=(-0.169617 0.0993732 -0.980487)} Corner 10691 28706 {normal=(-0.182516 0.0816397 -0.979808)} Corner 10691 28707 {normal=(-0.182516 0.0816397 -0.979808)} Corner 10802 28707 {normal=(-0.182516 0.0816396 -0.979808)} Corner 10802 28708 {normal=(-0.182516 0.0816396 -0.979808)} Corner 10564 28708 {normal=(-0.155536 0.118551 -0.980691)} Corner 10564 28709 {normal=(0.264809 -0.612962 -0.744415)} Corner 10564 28710 {normal=(0.264809 -0.612962 -0.744415)} Corner 10802 28710 {normal=(0.201137 -0.781967 -0.589976)} Corner 10802 28711 {normal=(0.201137 -0.781967 -0.589976)} Corner 10565 28713 {normal=(-0.620812 0.728895 -0.288627)} Corner 10670 28714 {normal=(-0.671737 0.735454 -0.088754)} Corner 10670 28715 {normal=(-0.671737 0.735454 -0.088754)} Corner 10691 28715 {normal=(-0.673642 0.67002 -0.311897)} Corner 10691 28716 {normal=(-0.673642 0.67002 -0.311897)} Corner 10565 28716 {normal=(-0.620812 0.728895 -0.288627)} Corner 10518 28721 {normal=(-0.579343 0.768962 -0.270296)} Corner 10554 28721 {normal=(-0.578781 0.81427 -0.044461)} Corner 10554 28722 {normal=(-0.578781 0.81427 -0.044461)} Corner 10565 28723 {normal=(-0.620812 0.728895 -0.288627)} Corner 10565 28724 {normal=(-0.620812 0.728895 -0.288627)} Corner 10518 28724 {normal=(-0.579343 0.768962 -0.270296)} Corner 10516 28725 {normal=(-0.108579 0.14612 -0.98329)} Corner 10518 28725 {normal=(0.0593929 0.267543 -0.961714)} Corner 10518 28726 {normal=(0.0593929 0.267543 -0.961714)} Corner 10565 28726 {normal=(-0.169617 0.0993732 -0.980487)} Corner 10565 28727 {normal=(-0.169617 0.0993732 -0.980487)} Corner 10564 28727 {normal=(-0.155536 0.118551 -0.980691)} Corner 10564 28728 {normal=(-0.155536 0.118551 -0.980691)} Corner 10516 28728 {normal=(-0.108579 0.14612 -0.98329)} Corner 10552 28729 {normal=(0.31623 -0.816255 -0.483452)} Corner 10516 28729 {normal=(0.304781 -0.563127 -0.768113)} Corner 10516 28730 {normal=(0.304781 -0.563127 -0.768113)} Corner 10564 28730 {normal=(0.264809 -0.612962 -0.744415)} Corner 10564 28731 {normal=(0.264809 -0.612962 -0.744415)} Corner 10552 28732 {normal=(0.31623 -0.816255 -0.483452)} Corner 10582 28733 {normal=(0.255644 -0.96297 0.0856491)} Corner 10552 28733 {normal=(0.31623 -0.816255 -0.483452)} Corner 10552 28734 {normal=(0.31623 -0.816255 -0.483452)} Corner 10582 28736 {normal=(0.255644 -0.96297 0.0856491)} Corner 10389 28737 {normal=(-0.593473 -0.534235 -0.601983)} Corner 10398 28737 {normal=(-0.591801 -0.536952 -0.601211)} Corner 10398 28738 {normal=(-0.591801 -0.536952 -0.601211)} Corner 10516 28738 {normal=(-0.514778 -0.647104 -0.56237)} Corner 10516 28739 {normal=(-0.514778 -0.647104 -0.56237)} Corner 10552 28739 {normal=(-0.514777 -0.647104 -0.56237)} Corner 10552 28740 {normal=(-0.514777 -0.647104 -0.56237)} Corner 10389 28740 {normal=(-0.593473 -0.534235 -0.601983)} Corner 10389 28741 {normal=(-0.48371 -0.868377 0.109299)} Corner 10389 28742 {normal=(-0.48371 -0.868377 0.109299)} Corner 10552 28742 {normal=(-0.506678 -0.84641 0.163914)} Corner 10552 28743 {normal=(-0.506678 -0.84641 0.163914)} Corner 10582 28743 {normal=(-0.459575 -0.887715 0.0274398)} Corner 10582 28744 {normal=(-0.459575 -0.887715 0.0274398)} Corner 10467 28745 {normal=(0.0747979 0.490243 -0.86837)} Corner 10523 28745 {normal=(0.648789 0.60296 -0.464233)} Corner 10523 28746 {normal=(0.648789 0.60296 -0.464233)} Corner 10554 28746 {normal=(0.648789 0.60296 -0.464233)} Corner 10554 28747 {normal=(0.648789 0.60296 -0.464233)} Corner 10518 28747 {normal=(0.0593929 0.267543 -0.961714)} Corner 10518 28748 {normal=(0.0593929 0.267543 -0.961714)} Corner 10467 28748 {normal=(0.0747979 0.490243 -0.86837)} Corner 10398 28749 {normal=(-0.198655 0.24992 -0.947669)} Corner 10467 28749 {normal=(0.0747979 0.490243 -0.86837)} Corner 10467 28750 {normal=(0.0747979 0.490243 -0.86837)} Corner 10518 28750 {normal=(0.0593929 0.267543 -0.961714)} Corner 10518 28751 {normal=(0.0593929 0.267543 -0.961714)} Corner 10516 28751 {normal=(-0.108579 0.14612 -0.98329)} Corner 10516 28752 {normal=(-0.108579 0.14612 -0.98329)} Corner 10398 28752 {normal=(-0.198655 0.24992 -0.947669)} Corner 10424 28753 {normal=(-0.130814 0.988503 -0.0758213)} Corner 10523 28754 {normal=(-0.036736 0.992904 -0.1131)} Corner 10523 28755 {normal=(-0.036736 0.992904 -0.1131)} Corner 10467 28755 {normal=(-0.0819101 0.978513 -0.189219)} Corner 10467 28756 {normal=(-0.0819101 0.978513 -0.189219)} Corner 10424 28756 {normal=(-0.130814 0.988503 -0.0758213)} Corner 10334 28757 {normal=(-0.232262 0.407927 -0.882978)} Corner 10424 28757 {normal=(-0.23986 0.407721 -0.88104)} Corner 10424 28758 {normal=(-0.23986 0.407721 -0.88104)} Corner 10467 28758 {normal=(0.0747979 0.490243 -0.86837)} Corner 10467 28759 {normal=(0.0747979 0.490243 -0.86837)} Corner 10398 28759 {normal=(-0.198655 0.24992 -0.947669)} Corner 10398 28760 {normal=(-0.198655 0.24992 -0.947669)} Corner 10334 28760 {normal=(-0.232262 0.407927 -0.882978)} Corner 10298 28761 {normal=(-0.528226 -0.418227 -0.738961)} Corner 10334 28761 {normal=(-0.50207 -0.417475 -0.75739)} Corner 10334 28762 {normal=(-0.50207 -0.417475 -0.75739)} Corner 10398 28762 {normal=(-0.591801 -0.536952 -0.601211)} Corner 10398 28763 {normal=(-0.591801 -0.536952 -0.601211)} Corner 10389 28763 {normal=(-0.593473 -0.534235 -0.601983)} Corner 10389 28764 {normal=(-0.593473 -0.534235 -0.601983)} Corner 10298 28764 {normal=(-0.528226 -0.418227 -0.738961)} Corner 10298 28765 {normal=(-0.622209 -0.782117 0.0338933)} Corner 10298 28766 {normal=(-0.622209 -0.782117 0.0338933)} Corner 10389 28766 {normal=(-0.48371 -0.868377 0.109299)} Corner 10389 28767 {normal=(-0.48371 -0.868377 0.109299)} Corner 10318 28769 {normal=(0.0970998 0.255476 -0.961927)} Corner 10402 28769 {normal=(0.14119 0.202523 -0.969046)} Corner 10402 28770 {normal=(0.14119 0.202523 -0.969046)} Corner 10424 28770 {normal=(-0.23986 0.407721 -0.88104)} Corner 10424 28771 {normal=(-0.23986 0.407721 -0.88104)} Corner 10334 28771 {normal=(-0.232262 0.407927 -0.882978)} Corner 10334 28772 {normal=(-0.232262 0.407927 -0.882978)} Corner 10318 28772 {normal=(0.0970998 0.255476 -0.961927)} Corner 10256 28773 {normal=(-0.351433 -0.405926 -0.843634)} Corner 10318 28773 {normal=(-0.351433 -0.405926 -0.843634)} Corner 10318 28774 {normal=(-0.351433 -0.405926 -0.843634)} Corner 10334 28774 {normal=(-0.50207 -0.417475 -0.75739)} Corner 10334 28775 {normal=(-0.50207 -0.417475 -0.75739)} Corner 10298 28775 {normal=(-0.528226 -0.418227 -0.738961)} Corner 10298 28776 {normal=(-0.528226 -0.418227 -0.738961)} Corner 10256 28776 {normal=(-0.351433 -0.405926 -0.843634)} Corner 10261 28777 {normal=(-0.732604 -0.679964 0.0306496)} Corner 10256 28777 {normal=(-0.742335 -0.669847 0.0156202)} Corner 10256 28778 {normal=(-0.742335 -0.669847 0.0156202)} Corner 10298 28778 {normal=(-0.622209 -0.782117 0.0338933)} Corner 10298 28779 {normal=(-0.622209 -0.782117 0.0338933)} Corner 10261 28780 {normal=(-0.732604 -0.679964 0.0306496)} Corner 10402 28781 {normal=(-0.201703 0.974345 0.0998431)} Corner 10462 28781 {normal=(-0.248979 0.968497 0.0047514)} Corner 10462 28782 {normal=(-0.248979 0.968497 0.0047514)} Corner 10424 28783 {normal=(-0.130814 0.988503 -0.0758213)} Corner 10424 28784 {normal=(-0.130814 0.988503 -0.0758213)} Corner 10402 28784 {normal=(-0.201703 0.974345 0.0998431)} Corner 10270 28785 {normal=(-0.998406 0.0563219 0.00375792)} Corner 10274 28785 {normal=(-0.996647 0.0718554 0.0391399)} Corner 10274 28786 {normal=(-0.996647 0.0718554 0.0391399)} Corner 10256 28786 {normal=(-0.996647 0.0718554 0.0391399)} Corner 10256 28787 {normal=(-0.996647 0.0718554 0.0391399)} Corner 10261 28787 {normal=(-0.998435 0.0558573 0.00270236)} Corner 10261 28788 {normal=(-0.998435 0.0558573 0.00270236)} Corner 10270 28788 {normal=(-0.998406 0.0563219 0.00375792)} Corner 10323 28789 {normal=(0.333028 -0.0291212 -0.942467)} Corner 10426 28789 {normal=(0.482148 -0.0425754 -0.875055)} Corner 10426 28790 {normal=(0.482148 -0.0425754 -0.875055)} Corner 10402 28790 {normal=(0.14119 0.202523 -0.969046)} Corner 10402 28791 {normal=(0.14119 0.202523 -0.969046)} Corner 10318 28791 {normal=(0.0970998 0.255476 -0.961927)} Corner 10318 28792 {normal=(0.0970998 0.255476 -0.961927)} Corner 10323 28792 {normal=(0.333028 -0.0291212 -0.942467)} Corner 10274 28793 {normal=(-0.438598 0.315768 -0.841381)} Corner 10323 28793 {normal=(-0.463721 0.272959 -0.842885)} Corner 10323 28794 {normal=(-0.463721 0.272959 -0.842885)} Corner 10318 28794 {normal=(-0.541366 0.120527 -0.832103)} Corner 10318 28795 {normal=(-0.541366 0.120527 -0.832103)} Corner 10256 28795 {normal=(-0.541366 0.120527 -0.832103)} Corner 10256 28796 {normal=(-0.541366 0.120527 -0.832103)} Corner 10274 28796 {normal=(-0.438598 0.315768 -0.841381)} Corner 10448 28797 {normal=(0.820393 0.0214378 -0.571399)} Corner 10439 28797 {normal=(0.957973 0.286687 -0.00992234)} Corner 10439 28798 {normal=(0.957973 0.286687 -0.00992234)} Corner 10471 28798 {normal=(0.957973 0.286687 -0.00992234)} Corner 10471 28799 {normal=(0.957973 0.286687 -0.00992234)} Corner 10426 28799 {normal=(0.482148 -0.0425754 -0.875055)} Corner 10426 28800 {normal=(0.482148 -0.0425754 -0.875055)} Corner 10448 28800 {normal=(0.820393 0.0214378 -0.571399)} Corner 10415 28801 {normal=(0.384996 -0.244058 -0.890064)} Corner 10448 28801 {normal=(0.820393 0.0214378 -0.571399)} Corner 10448 28802 {normal=(0.820393 0.0214378 -0.571399)} Corner 10426 28802 {normal=(0.482148 -0.0425754 -0.875055)} Corner 10426 28803 {normal=(0.482148 -0.0425754 -0.875055)} Corner 10323 28803 {normal=(0.333028 -0.0291212 -0.942467)} Corner 10323 28804 {normal=(0.333028 -0.0291212 -0.942467)} Corner 10415 28804 {normal=(0.384996 -0.244058 -0.890064)} Corner 10416 28805 {normal=(-0.128573 0.420511 -0.898131)} Corner 10415 28805 {normal=(-0.233192 0.441904 -0.866223)} Corner 10415 28806 {normal=(-0.233192 0.441904 -0.866223)} Corner 10323 28806 {normal=(-0.463721 0.272959 -0.842885)} Corner 10323 28807 {normal=(-0.463721 0.272959 -0.842885)} Corner 10274 28807 {normal=(-0.438598 0.315768 -0.841381)} Corner 10274 28808 {normal=(-0.438598 0.315768 -0.841381)} Corner 10416 28808 {normal=(-0.128573 0.420511 -0.898131)} Corner 10376 28809 {normal=(-0.684362 0.723075 -0.0938709)} Corner 10416 28809 {normal=(-0.642566 0.724698 -0.24884)} Corner 10416 28810 {normal=(-0.642566 0.724698 -0.24884)} Corner 10274 28810 {normal=(-0.642566 0.724698 -0.24884)} Corner 10274 28811 {normal=(-0.642566 0.724698 -0.24884)} Corner 10270 28811 {normal=(-0.684595 0.722997 -0.0927639)} Corner 10270 28812 {normal=(-0.684595 0.722997 -0.0927639)} Corner 10376 28812 {normal=(-0.684362 0.723075 -0.0938709)} Corner 10573 28813 {normal=(-0.00169854 0.388159 -0.921591)} Corner 10525 28813 {normal=(-0.00169854 0.388159 -0.921591)} Corner 10525 28814 {normal=(-0.00169854 0.388159 -0.921591)} Corner 10415 28814 {normal=(-0.233192 0.441904 -0.866223)} Corner 10415 28815 {normal=(-0.233192 0.441904 -0.866223)} Corner 10416 28815 {normal=(-0.128573 0.420511 -0.898131)} Corner 10416 28816 {normal=(-0.128573 0.420511 -0.898131)} Corner 10573 28816 {normal=(-0.00169854 0.388159 -0.921591)} Corner 10570 28817 {normal=(-0.311198 0.904185 -0.292584)} Corner 10573 28817 {normal=(-0.289148 0.950623 -0.112732)} Corner 10573 28818 {normal=(-0.289148 0.950623 -0.112732)} Corner 10416 28818 {normal=(-0.012163 0.985527 -0.16908)} Corner 10416 28819 {normal=(-0.012163 0.985527 -0.16908)} Corner 10570 28820 {normal=(-0.311198 0.904185 -0.292584)} Corner 10567 28821 {normal=(0.65893 -0.705269 -0.261545)} Corner 10439 28822 {normal=(0.589498 -0.796557 0.134126)} Corner 10439 28823 {normal=(0.589498 -0.796557 0.134126)} Corner 10448 28823 {normal=(0.60218 -0.750514 -0.272229)} Corner 10448 28824 {normal=(0.60218 -0.750514 -0.272229)} Corner 10567 28824 {normal=(0.65893 -0.705269 -0.261545)} Corner 10525 28825 {normal=(0.481635 -0.223268 -0.847455)} Corner 10567 28825 {normal=(0.464047 -0.286129 -0.838326)} Corner 10567 28826 {normal=(0.464047 -0.286129 -0.838326)} Corner 10448 28826 {normal=(0.820393 0.0214378 -0.571399)} Corner 10448 28827 {normal=(0.820393 0.0214378 -0.571399)} Corner 10415 28827 {normal=(0.384996 -0.244058 -0.890064)} Corner 10415 28828 {normal=(0.384996 -0.244058 -0.890064)} Corner 10525 28828 {normal=(0.481635 -0.223268 -0.847455)} Corner 10570 28829 {normal=(0.505362 0.334198 -0.795563)} Corner 10629 28829 {normal=(0.856266 0.259787 -0.446451)} Corner 10629 28830 {normal=(0.856266 0.259787 -0.446451)} Corner 10573 28831 {normal=(0.520843 0.23585 -0.820425)} Corner 10573 28832 {normal=(0.520843 0.23585 -0.820425)} Corner 10570 28832 {normal=(0.505362 0.334198 -0.795563)} Corner 10525 28833 {normal=(0.481635 -0.223268 -0.847455)} Corner 10650 28834 {normal=(0.720108 -0.1711 -0.672435)} Corner 10650 28835 {normal=(0.720108 -0.1711 -0.672435)} Corner 10567 28835 {normal=(0.464047 -0.286129 -0.838326)} Corner 10567 28836 {normal=(0.464047 -0.286129 -0.838326)} Corner 10525 28836 {normal=(0.481635 -0.223268 -0.847455)} Corner 10650 28837 {normal=(0.720108 -0.1711 -0.672435)} Corner 10673 28839 {normal=(0.909096 -0.0546233 -0.412991)} Corner 10673 28840 {normal=(0.909096 -0.0546233 -0.412991)} Corner 10650 28840 {normal=(0.720108 -0.1711 -0.672435)} Corner 10376 28841 {normal=(0.125619 0.989684 -0.068882)} Corner 10416 28843 {normal=(-0.012163 0.985527 -0.16908)} Corner 10416 28844 {normal=(-0.012163 0.985527 -0.16908)} Corner 10376 28844 {normal=(0.125619 0.989684 -0.068882)} Corner 10629 28845 {normal=(0.856266 0.259787 -0.446451)} Corner 10632 28845 {normal=(0.97129 0.176684 -0.159304)} Corner 10632 28846 {normal=(0.97129 0.176684 -0.159304)} Corner 10646 28846 {normal=(0.828571 0.46353 -0.314021)} Corner 10646 28847 {normal=(0.828571 0.46353 -0.314021)} Corner 10629 28848 {normal=(0.856266 0.259787 -0.446451)} Corner 10687 28849 {normal=(0.823322 0.419838 -0.381938)} Corner 10688 28849 {normal=(0.969739 -0.00338546 -0.244119)} Corner 10688 28850 {normal=(0.969739 -0.00338546 -0.244119)} Corner 10673 28850 {normal=(0.909096 -0.0546233 -0.412991)} Corner 10673 28851 {normal=(0.909096 -0.0546233 -0.412991)} Corner 10687 28852 {normal=(0.823322 0.419838 -0.381938)} Corner 10687 28853 {normal=(0.823322 0.419838 -0.381938)} Corner 10646 28855 {normal=(0.828571 0.46353 -0.314021)} Corner 10646 28856 {normal=(0.828571 0.46353 -0.314021)} Corner 10687 28856 {normal=(0.823322 0.419838 -0.381938)} Corner 10573 28858 {normal=(0.520843 0.23585 -0.820425)} Corner 10573 28859 {normal=(0.520843 0.23585 -0.820425)} Corner 10766 28861 {normal=(0.156352 0.815099 -0.557824)} Corner 10694 28861 {normal=(0.156352 0.815099 -0.557824)} Corner 10694 28862 {normal=(0.156352 0.815099 -0.557824)} Corner 10691 28862 {normal=(0.156352 0.815099 -0.557824)} Corner 10691 28863 {normal=(0.156352 0.815099 -0.557824)} Corner 10670 28863 {normal=(0.156352 0.815099 -0.557824)} Corner 10670 28864 {normal=(0.156352 0.815099 -0.557824)} Corner 10766 28864 {normal=(0.156352 0.815099 -0.557824)} Corner 10873 28869 {normal=(0.314245 -0.890839 -0.328109)} Corner 10802 28871 {normal=(0.201137 -0.781967 -0.589976)} Corner 10802 28872 {normal=(0.201137 -0.781967 -0.589976)} Corner 10873 28872 {normal=(0.314245 -0.890839 -0.328109)} Corner 10907 28873 {normal=(-0.0889453 0.0858136 0.992333)} Corner 10767 28873 {normal=(-0.0889453 0.0858136 0.992333)} Corner 10767 28874 {normal=(-0.0889453 0.0858136 0.992333)} Corner 10692 28874 {normal=(-0.0163498 0.269525 0.962855)} Corner 10692 28875 {normal=(-0.0163498 0.269525 0.962855)} Corner 10803 28875 {normal=(-0.0544201 0.174743 0.983109)} Corner 10803 28876 {normal=(-0.0544201 0.174743 0.983109)} Corner 10907 28876 {normal=(-0.0889453 0.0858136 0.992333)} Corner 10907 28877 {normal=(0.437007 -0.898389 -0.0438495)} Corner 10907 28878 {normal=(0.437007 -0.898389 -0.0438495)} Corner 10803 28878 {normal=(0.328572 -0.598573 0.730582)} Corner 10803 28879 {normal=(0.328572 -0.598573 0.730582)} Corner 10767 28885 {normal=(0.189608 0.977073 0.0968312)} Corner 10766 28885 {normal=(0.189608 0.977073 0.0968312)} Corner 10766 28886 {normal=(0.189608 0.977073 0.0968312)} Corner 10670 28886 {normal=(0.189608 0.977073 0.0968312)} Corner 10670 28887 {normal=(0.189608 0.977073 0.0968312)} Corner 10692 28887 {normal=(0.189608 0.977073 0.0968312)} Corner 10692 28888 {normal=(0.189608 0.977073 0.0968312)} Corner 10767 28888 {normal=(0.189608 0.977073 0.0968312)} Corner 10616 28890 {normal=(0.392941 0.58359 0.710648)} Corner 10616 28891 {normal=(0.392941 0.58359 0.710648)} Corner 10534 28891 {normal=(0.284908 0.351269 0.891873)} Corner 10534 28892 {normal=(0.284908 0.351269 0.891873)} Corner 10687 28893 {normal=(0.714683 0.473594 0.51472)} Corner 10687 28894 {normal=(0.714683 0.473594 0.51472)} Corner 10646 28894 {normal=(0.458972 0.76815 0.44642)} Corner 10646 28895 {normal=(0.458972 0.76815 0.44642)} Corner 10616 28895 {normal=(0.392941 0.58359 0.710648)} Corner 10616 28896 {normal=(0.392941 0.58359 0.710648)} Corner 10688 28897 {normal=(0.869173 0.0422136 0.492703)} Corner 10687 28897 {normal=(0.714683 0.473594 0.51472)} Corner 10687 28898 {normal=(0.714683 0.473594 0.51472)} Corner 10662 28899 {normal=(0.769058 0.00899 0.639116)} Corner 10662 28900 {normal=(0.769058 0.00899 0.639116)} Corner 10688 28900 {normal=(0.869173 0.0422136 0.492703)} Corner 10632 28901 {normal=(0.128366 0.989626 0.0645226)} Corner 10612 28901 {normal=(0.284248 0.901473 0.326419)} Corner 10612 28902 {normal=(0.284248 0.901473 0.326419)} Corner 10616 28902 {normal=(0.897987 0.220673 0.380687)} Corner 10616 28903 {normal=(0.897987 0.220673 0.380687)} Corner 10646 28903 {normal=(0.897987 0.220673 0.380687)} Corner 10646 28904 {normal=(0.897987 0.220673 0.380687)} Corner 10632 28904 {normal=(0.128366 0.989626 0.0645226)} Corner 10376 28905 {normal=(0.125619 0.989684 -0.068882)} Corner 10376 28906 {normal=(0.125619 0.989684 -0.068882)} Corner 10393 28906 {normal=(-0.0310054 0.999468 -0.0101619)} Corner 10393 28907 {normal=(-0.0310054 0.999468 -0.0101619)} Corner 10627 28909 {normal=(0.509485 -0.0833028 0.856438)} Corner 10627 28910 {normal=(0.509485 -0.0833028 0.856438)} Corner 10662 28910 {normal=(0.769058 0.00899 0.639116)} Corner 10662 28911 {normal=(0.769058 0.00899 0.639116)} Corner 10483 28913 {normal=(0.223198 -0.125736 0.96663)} Corner 10483 28914 {normal=(0.223198 -0.125736 0.96663)} Corner 10530 28914 {normal=(0.207476 -0.19396 0.958819)} Corner 10530 28915 {normal=(0.207476 -0.19396 0.958819)} Corner 10627 28915 {normal=(0.509485 -0.0833028 0.856438)} Corner 10627 28916 {normal=(0.509485 -0.0833028 0.856438)} Corner 10612 28917 {normal=(0.283209 0.459947 0.841571)} Corner 10537 28917 {normal=(0.283209 0.459947 0.841571)} Corner 10537 28918 {normal=(0.283209 0.459947 0.841571)} Corner 10534 28918 {normal=(0.284908 0.351269 0.891873)} Corner 10534 28919 {normal=(0.284908 0.351269 0.891873)} Corner 10616 28919 {normal=(0.392941 0.58359 0.710648)} Corner 10616 28920 {normal=(0.392941 0.58359 0.710648)} Corner 10612 28920 {normal=(0.283209 0.459947 0.841571)} Corner 10530 28921 {normal=(0.207476 -0.19396 0.958819)} Corner 10483 28921 {normal=(0.223198 -0.125736 0.96663)} Corner 10483 28922 {normal=(0.223198 -0.125736 0.96663)} Corner 10380 28922 {normal=(0.132489 -0.218593 0.96678)} Corner 10380 28923 {normal=(0.132489 -0.218593 0.96678)} Corner 10423 28923 {normal=(0.168221 -0.203791 0.964454)} Corner 10423 28924 {normal=(0.168221 -0.203791 0.964454)} Corner 10530 28924 {normal=(0.207476 -0.19396 0.958819)} Corner 10530 28925 {normal=(0.536164 -0.655577 0.53174)} Corner 10530 28926 {normal=(0.536164 -0.655577 0.53174)} Corner 10423 28926 {normal=(0.47138 -0.702674 0.532963)} Corner 10423 28927 {normal=(0.47138 -0.702674 0.532963)} Corner 10439 28927 {normal=(0.589498 -0.796557 0.134126)} Corner 10439 28928 {normal=(0.589498 -0.796557 0.134126)} Corner 10534 28929 {normal=(-0.286068 0.948573 -0.135554)} Corner 10537 28929 {normal=(-0.344087 0.938725 0.0199899)} Corner 10537 28930 {normal=(-0.344087 0.938725 0.0199899)} Corner 10393 28931 {normal=(-0.0310054 0.999468 -0.0101619)} Corner 10393 28932 {normal=(-0.0310054 0.999468 -0.0101619)} Corner 10534 28932 {normal=(-0.286068 0.948573 -0.135554)} Corner 10483 28933 {normal=(-0.229145 0.48856 0.841904)} Corner 10534 28933 {normal=(-0.229145 0.48856 0.841904)} Corner 10534 28934 {normal=(-0.229145 0.48856 0.841904)} Corner 10393 28934 {normal=(-0.343302 0.463502 0.81689)} Corner 10393 28935 {normal=(-0.343302 0.463502 0.81689)} Corner 10380 28935 {normal=(-0.455058 0.431 0.779206)} Corner 10380 28936 {normal=(-0.455058 0.431 0.779206)} Corner 10483 28936 {normal=(-0.229145 0.48856 0.841904)} Corner 10393 28937 {normal=(-0.708489 0.702892 0.0631422)} Corner 10376 28937 {normal=(-0.684362 0.723075 -0.0938709)} Corner 10376 28938 {normal=(-0.684362 0.723075 -0.0938709)} Corner 10270 28938 {normal=(-0.684595 0.722997 -0.0927639)} Corner 10270 28939 {normal=(-0.684595 0.722997 -0.0927639)} Corner 10263 28939 {normal=(-0.708489 0.702892 0.0631421)} Corner 10263 28940 {normal=(-0.708489 0.702892 0.0631421)} Corner 10393 28940 {normal=(-0.708489 0.702892 0.0631422)} Corner 10380 28941 {normal=(-0.455058 0.431 0.779206)} Corner 10393 28941 {normal=(-0.343302 0.463502 0.81689)} Corner 10393 28942 {normal=(-0.343302 0.463502 0.81689)} Corner 10263 28942 {normal=(-0.554089 0.271437 0.786961)} Corner 10263 28943 {normal=(-0.554089 0.271437 0.786961)} Corner 10311 28943 {normal=(-0.551215 0.204693 0.808865)} Corner 10311 28944 {normal=(-0.551215 0.204693 0.808865)} Corner 10380 28944 {normal=(-0.455058 0.431 0.779206)} Corner 10423 28945 {normal=(0.168221 -0.203791 0.964454)} Corner 10380 28945 {normal=(0.132489 -0.218593 0.96678)} Corner 10380 28946 {normal=(0.132489 -0.218593 0.96678)} Corner 10311 28946 {normal=(0.232363 -0.068553 0.97021)} Corner 10311 28947 {normal=(0.232363 -0.068553 0.97021)} Corner 10410 28947 {normal=(0.230761 -0.0776638 0.969906)} Corner 10410 28948 {normal=(0.230761 -0.0776638 0.969906)} Corner 10423 28948 {normal=(0.168221 -0.203791 0.964454)} Corner 10311 28949 {normal=(-0.551215 0.204693 0.808865)} Corner 10263 28949 {normal=(-0.554089 0.271437 0.786961)} Corner 10263 28950 {normal=(-0.554089 0.271437 0.786961)} Corner 10260 28950 {normal=(-0.538468 0.0768128 0.839138)} Corner 10260 28951 {normal=(-0.538468 0.0768128 0.839138)} Corner 10325 28951 {normal=(-0.538468 0.0768128 0.839138)} Corner 10325 28952 {normal=(-0.538468 0.0768128 0.839138)} Corner 10311 28952 {normal=(-0.551215 0.204693 0.808865)} Corner 10410 28953 {normal=(0.230761 -0.0776638 0.969906)} Corner 10311 28953 {normal=(0.232363 -0.068553 0.97021)} Corner 10311 28954 {normal=(0.232363 -0.068553 0.97021)} Corner 10325 28954 {normal=(0.191925 0.150621 0.969782)} Corner 10325 28955 {normal=(0.191925 0.150621 0.969782)} Corner 10413 28955 {normal=(0.183393 0.167208 0.968715)} Corner 10413 28956 {normal=(0.183393 0.167208 0.968715)} Corner 10410 28956 {normal=(0.230761 -0.0776638 0.969906)} Corner 10263 28957 {normal=(-0.998655 0.0402108 -0.0327445)} Corner 10270 28957 {normal=(-0.998406 0.0563219 0.00375792)} Corner 10270 28958 {normal=(-0.998406 0.0563219 0.00375792)} Corner 10261 28958 {normal=(-0.998435 0.0558573 0.00270236)} Corner 10261 28959 {normal=(-0.998435 0.0558573 0.00270236)} Corner 10260 28959 {normal=(-0.998655 0.0402108 -0.0327446)} Corner 10260 28960 {normal=(-0.998655 0.0402108 -0.0327446)} Corner 10263 28960 {normal=(-0.998655 0.0402108 -0.0327445)} Corner 10462 28961 {normal=(-0.248979 0.968497 0.0047514)} Corner 10413 28961 {normal=(-0.281076 0.957594 -0.0633184)} Corner 10413 28962 {normal=(-0.281076 0.957594 -0.0633184)} Corner 10437 28962 {normal=(-0.154736 0.987799 0.01758)} Corner 10437 28963 {normal=(-0.154736 0.987799 0.01758)} Corner 10462 28964 {normal=(-0.248979 0.968497 0.0047514)} Corner 10260 28965 {normal=(-0.722548 -0.689809 0.0456897)} Corner 10261 28965 {normal=(-0.732604 -0.679964 0.0306496)} Corner 10261 28966 {normal=(-0.732604 -0.679964 0.0306496)} Corner 10304 28967 {normal=(-0.670709 -0.740916 -0.0345347)} Corner 10304 28968 {normal=(-0.670709 -0.740916 -0.0345347)} Corner 10260 28968 {normal=(-0.722548 -0.689809 0.0456897)} Corner 10325 28969 {normal=(-0.248936 -0.455921 0.854498)} Corner 10260 28969 {normal=(-0.248936 -0.455921 0.854498)} Corner 10260 28970 {normal=(-0.248936 -0.455921 0.854498)} Corner 10304 28970 {normal=(-0.236947 -0.485092 0.841749)} Corner 10304 28971 {normal=(-0.236947 -0.485092 0.841749)} Corner 10348 28971 {normal=(-0.239689 -0.478528 0.844725)} Corner 10348 28972 {normal=(-0.239689 -0.478528 0.844725)} Corner 10325 28972 {normal=(-0.248936 -0.455921 0.854498)} Corner 10413 28973 {normal=(0.183393 0.167208 0.968715)} Corner 10325 28973 {normal=(0.191925 0.150621 0.969782)} Corner 10325 28974 {normal=(0.191925 0.150621 0.969782)} Corner 10348 28974 {normal=(0.23636 0.179297 0.95498)} Corner 10348 28975 {normal=(0.23636 0.179297 0.95498)} Corner 10437 28975 {normal=(0.303243 0.120418 0.945274)} Corner 10437 28976 {normal=(0.303243 0.120418 0.945274)} Corner 10413 28976 {normal=(0.183393 0.167208 0.968715)} Corner 10304 28977 {normal=(-0.670709 -0.740916 -0.0345347)} Corner 10385 28979 {normal=(-0.500172 -0.85494 -0.137496)} Corner 10385 28980 {normal=(-0.500172 -0.85494 -0.137496)} Corner 10304 28980 {normal=(-0.670709 -0.740916 -0.0345347)} Corner 10348 28981 {normal=(-0.239689 -0.478528 0.844725)} Corner 10304 28981 {normal=(-0.236947 -0.485092 0.841749)} Corner 10304 28982 {normal=(-0.236947 -0.485092 0.841749)} Corner 10385 28982 {normal=(-0.259754 -0.494166 0.829655)} Corner 10385 28983 {normal=(-0.259754 -0.494166 0.829655)} Corner 10436 28983 {normal=(-0.258416 -0.494642 0.82979)} Corner 10436 28984 {normal=(-0.258416 -0.494642 0.82979)} Corner 10348 28984 {normal=(-0.239689 -0.478528 0.844725)} Corner 10437 28985 {normal=(0.303243 0.120418 0.945274)} Corner 10348 28985 {normal=(0.23636 0.179297 0.95498)} Corner 10348 28986 {normal=(0.23636 0.179297 0.95498)} Corner 10436 28986 {normal=(0.243295 0.18848 0.951464)} Corner 10436 28987 {normal=(0.243295 0.18848 0.951464)} Corner 10499 28987 {normal=(0.268813 0.163143 0.949276)} Corner 10499 28988 {normal=(0.268813 0.163143 0.949276)} Corner 10437 28988 {normal=(0.303243 0.120418 0.945274)} Corner 10437 28989 {normal=(-0.154736 0.987799 0.01758)} Corner 10437 28990 {normal=(-0.154736 0.987799 0.01758)} Corner 10499 28990 {normal=(0.146713 0.968703 0.200226)} Corner 10499 28991 {normal=(0.146713 0.968703 0.200226)} Corner 10523 28991 {normal=(-0.036736 0.992904 -0.1131)} Corner 10523 28992 {normal=(-0.036736 0.992904 -0.1131)} Corner 10499 28993 {normal=(0.268813 0.163143 0.949276)} Corner 10436 28993 {normal=(0.243295 0.18848 0.951464)} Corner 10436 28994 {normal=(0.243295 0.18848 0.951464)} Corner 10547 28994 {normal=(0.12264 0.298573 0.946474)} Corner 10547 28995 {normal=(0.12264 0.298573 0.946474)} Corner 10542 28995 {normal=(0.122989 0.298294 0.946517)} Corner 10542 28996 {normal=(0.122989 0.298294 0.946517)} Corner 10499 28996 {normal=(0.268813 0.163143 0.949276)} Corner 10523 28997 {normal=(0.794797 0.557353 0.240116)} Corner 10499 28997 {normal=(0.794797 0.557353 0.240116)} Corner 10499 28998 {normal=(0.794797 0.557353 0.240116)} Corner 10542 28998 {normal=(0.794797 0.557353 0.240116)} Corner 10542 28999 {normal=(0.794797 0.557353 0.240116)} Corner 10554 28999 {normal=(0.794797 0.557353 0.240116)} Corner 10554 29000 {normal=(0.794797 0.557353 0.240116)} Corner 10523 29000 {normal=(0.794797 0.557353 0.240116)} Corner 10385 29001 {normal=(-0.500172 -0.85494 -0.137496)} Corner 10582 29002 {normal=(-0.459575 -0.887715 0.0274398)} Corner 10582 29003 {normal=(-0.459575 -0.887715 0.0274398)} Corner 10569 29003 {normal=(-0.400346 -0.909307 -0.113507)} Corner 10569 29004 {normal=(-0.400346 -0.909307 -0.113507)} Corner 10385 29004 {normal=(-0.500172 -0.85494 -0.137496)} Corner 10436 29005 {normal=(-0.258416 -0.494642 0.82979)} Corner 10385 29005 {normal=(-0.259754 -0.494166 0.829655)} Corner 10385 29006 {normal=(-0.259754 -0.494166 0.829655)} Corner 10569 29006 {normal=(-0.289925 -0.483118 0.82616)} Corner 10569 29007 {normal=(-0.289925 -0.483118 0.82616)} Corner 10547 29007 {normal=(-0.289925 -0.483118 0.82616)} Corner 10547 29008 {normal=(-0.289925 -0.483118 0.82616)} Corner 10436 29008 {normal=(-0.258416 -0.494642 0.82979)} Corner 10569 29009 {normal=(0.421463 -0.680918 0.598932)} Corner 10582 29009 {normal=(0.255644 -0.96297 0.0856491)} Corner 10582 29010 {normal=(0.255644 -0.96297 0.0856491)} Corner 10569 29012 {normal=(0.421463 -0.680918 0.598932)} Corner 10547 29013 {normal=(0.451141 -0.378768 0.808088)} Corner 10569 29013 {normal=(0.421463 -0.680918 0.598932)} Corner 10569 29014 {normal=(0.421463 -0.680918 0.598932)} Corner 10591 29015 {normal=(0.397563 -0.424445 0.813505)} Corner 10591 29016 {normal=(0.397563 -0.424445 0.813505)} Corner 10547 29016 {normal=(0.451141 -0.378768 0.808088)} Corner 10542 29017 {normal=(0.122989 0.298294 0.946517)} Corner 10547 29017 {normal=(0.12264 0.298573 0.946474)} Corner 10547 29018 {normal=(0.12264 0.298573 0.946474)} Corner 10591 29018 {normal=(0.0647568 0.327945 0.942475)} Corner 10591 29019 {normal=(0.0647568 0.327945 0.942475)} Corner 10583 29019 {normal=(0.0354378 0.335099 0.941516)} Corner 10583 29020 {normal=(0.0354378 0.335099 0.941516)} Corner 10542 29020 {normal=(0.122989 0.298294 0.946517)} Corner 10554 29021 {normal=(-0.578781 0.81427 -0.044461)} Corner 10542 29021 {normal=(-0.549976 0.817384 0.171494)} Corner 10542 29022 {normal=(-0.549976 0.817384 0.171494)} Corner 10583 29022 {normal=(-0.572931 0.797984 0.187009)} Corner 10583 29023 {normal=(-0.572931 0.797984 0.187009)} Corner 10554 29024 {normal=(-0.578781 0.81427 -0.044461)} Corner 10583 29029 {normal=(-0.572931 0.797984 0.187009)} Corner 10583 29030 {normal=(-0.572931 0.797984 0.187009)} Corner 10692 29030 {normal=(-0.612849 0.76051 0.214572)} Corner 10692 29031 {normal=(-0.612849 0.76051 0.214572)} Corner 10670 29031 {normal=(-0.671737 0.735454 -0.088754)} Corner 10670 29032 {normal=(-0.671737 0.735454 -0.088754)} Corner 10591 29033 {normal=(0.397563 -0.424445 0.813505)} Corner 10803 29035 {normal=(0.328572 -0.598573 0.730582)} Corner 10803 29036 {normal=(0.328572 -0.598573 0.730582)} Corner 10591 29036 {normal=(0.397563 -0.424445 0.813505)} Corner 10583 29037 {normal=(0.0354378 0.335099 0.941516)} Corner 10591 29037 {normal=(0.0647568 0.327945 0.942475)} Corner 10591 29038 {normal=(0.0647568 0.327945 0.942475)} Corner 10803 29038 {normal=(-0.0544201 0.174743 0.983109)} Corner 10803 29039 {normal=(-0.0544201 0.174743 0.983109)} Corner 10692 29039 {normal=(-0.0163498 0.269525 0.962855)} Corner 10692 29040 {normal=(-0.0163498 0.269525 0.962855)} Corner 10583 29040 {normal=(0.0354378 0.335099 0.941516)} Corner 10479 29041 {normal=(-0.0405626 0.0990607 -0.994254)} Corner 10566 29041 {normal=(-0.0377728 0.410651 -0.91101)} Corner 10566 29042 {normal=(-0.0377728 0.410651 -0.91101)} Corner 10726 29042 {normal=(-0.195907 -0.0969889 -0.975814)} Corner 10726 29043 {normal=(-0.195907 -0.0969889 -0.975814)} Corner 10828 29043 {normal=(-0.208954 -0.185823 -0.960108)} Corner 10828 29044 {normal=(-0.208954 -0.185823 -0.960108)} Corner 10479 29044 {normal=(-0.0405626 0.0990607 -0.994254)} Corner 10520 29045 {normal=(0.189061 -0.875156 -0.445374)} Corner 10479 29045 {normal=(-0.0147301 -0.723317 -0.690359)} Corner 10479 29046 {normal=(-0.0147301 -0.723317 -0.690359)} Corner 10828 29046 {normal=(0.247441 -0.801555 -0.544319)} Corner 10828 29047 {normal=(0.247441 -0.801555 -0.544319)} Corner 10520 29048 {normal=(0.189061 -0.875156 -0.445374)} Corner 10566 29049 {normal=(-0.61907 0.726321 -0.298682)} Corner 10626 29049 {normal=(-0.636562 0.768428 -0.065633)} Corner 10626 29050 {normal=(-0.636562 0.768428 -0.065633)} Corner 10714 29050 {normal=(-0.655908 0.752265 -0.0623017)} Corner 10714 29051 {normal=(-0.655908 0.752265 -0.0623017)} Corner 10726 29051 {normal=(-0.776773 0.540451 -0.323321)} Corner 10726 29052 {normal=(-0.776773 0.540451 -0.323321)} Corner 10566 29052 {normal=(-0.61907 0.726321 -0.298682)} Corner 10551 29053 {normal=(0.405641 -0.905664 0.1234)} Corner 10551 29054 {normal=(0.405641 -0.905664 0.1234)} Corner 10520 29054 {normal=(0.189061 -0.875156 -0.445374)} Corner 10520 29055 {normal=(0.189061 -0.875156 -0.445374)} Corner 10484 29057 {normal=(0.0458583 0.337059 -0.940366)} Corner 10555 29057 {normal=(0.0919248 0.913597 -0.396094)} Corner 10555 29058 {normal=(0.0919248 0.913597 -0.396094)} Corner 10626 29058 {normal=(0.0919248 0.913597 -0.396094)} Corner 10626 29059 {normal=(0.0919248 0.913597 -0.396094)} Corner 10566 29059 {normal=(-0.0377728 0.410651 -0.91101)} Corner 10566 29060 {normal=(-0.0377728 0.410651 -0.91101)} Corner 10484 29060 {normal=(0.0458583 0.337059 -0.940366)} Corner 10392 29061 {normal=(0.028191 0.116077 -0.99284)} Corner 10484 29061 {normal=(0.0458583 0.337059 -0.940366)} Corner 10484 29062 {normal=(0.0458583 0.337059 -0.940366)} Corner 10566 29062 {normal=(-0.0377728 0.410651 -0.91101)} Corner 10566 29063 {normal=(-0.0377728 0.410651 -0.91101)} Corner 10479 29063 {normal=(-0.0405626 0.0990607 -0.994254)} Corner 10479 29064 {normal=(-0.0405626 0.0990607 -0.994254)} Corner 10392 29064 {normal=(0.028191 0.116077 -0.99284)} Corner 10363 29065 {normal=(-0.159692 -0.670057 -0.724929)} Corner 10392 29065 {normal=(-0.159692 -0.670057 -0.724929)} Corner 10392 29066 {normal=(-0.159692 -0.670057 -0.724929)} Corner 10479 29066 {normal=(-0.0147301 -0.723317 -0.690359)} Corner 10479 29067 {normal=(-0.0147301 -0.723317 -0.690359)} Corner 10520 29067 {normal=(0.189061 -0.875156 -0.445374)} Corner 10520 29068 {normal=(0.189061 -0.875156 -0.445374)} Corner 10363 29068 {normal=(-0.159692 -0.670057 -0.724929)} Corner 10363 29069 {normal=(-0.563944 -0.814594 0.135661)} Corner 10363 29070 {normal=(-0.563944 -0.814594 0.135661)} Corner 10520 29070 {normal=(-0.309209 -0.945271 0.104173)} Corner 10520 29071 {normal=(-0.309209 -0.945271 0.104173)} Corner 10551 29071 {normal=(-0.305343 -0.943667 0.127509)} Corner 10551 29072 {normal=(-0.305343 -0.943667 0.127509)} Corner 10301 29073 {normal=(-0.698234 -0.220254 -0.681144)} Corner 10356 29073 {normal=(-0.701009 -0.205523 -0.682896)} Corner 10356 29074 {normal=(-0.701009 -0.205523 -0.682896)} Corner 10392 29074 {normal=(-0.677485 -0.310431 -0.666818)} Corner 10392 29075 {normal=(-0.677485 -0.310431 -0.666818)} Corner 10363 29075 {normal=(-0.677485 -0.310431 -0.666818)} Corner 10363 29076 {normal=(-0.677485 -0.310431 -0.666818)} Corner 10301 29076 {normal=(-0.698234 -0.220254 -0.681144)} Corner 10301 29077 {normal=(-0.86953 -0.470446 0.150325)} Corner 10301 29078 {normal=(-0.86953 -0.470446 0.150325)} Corner 10363 29078 {normal=(-0.563944 -0.814594 0.135661)} Corner 10363 29079 {normal=(-0.563944 -0.814594 0.135661)} Corner 10466 29081 {normal=(0.812421 0.35185 -0.464946)} Corner 10541 29081 {normal=(0.801704 0.38219 -0.459567)} Corner 10541 29082 {normal=(0.801704 0.38219 -0.459567)} Corner 10555 29082 {normal=(0.837084 0.267847 -0.47702)} Corner 10555 29083 {normal=(0.837084 0.267847 -0.47702)} Corner 10484 29083 {normal=(0.837084 0.267847 -0.47702)} Corner 10484 29084 {normal=(0.837084 0.267847 -0.47702)} Corner 10466 29084 {normal=(0.812421 0.35185 -0.464946)} Corner 10356 29085 {normal=(0.0192992 0.144731 -0.989283)} Corner 10466 29085 {normal=(0.022199 0.162652 -0.986434)} Corner 10466 29086 {normal=(0.022199 0.162652 -0.986434)} Corner 10484 29086 {normal=(0.0458583 0.337059 -0.940366)} Corner 10484 29087 {normal=(0.0458583 0.337059 -0.940366)} Corner 10392 29087 {normal=(0.028191 0.116077 -0.99284)} Corner 10392 29088 {normal=(0.028191 0.116077 -0.99284)} Corner 10356 29088 {normal=(0.0192992 0.144731 -0.989283)} Corner 10429 29089 {normal=(0.765716 0.468038 -0.441157)} Corner 10500 29089 {normal=(0.765716 0.468038 -0.441157)} Corner 10500 29090 {normal=(0.765716 0.468038 -0.441157)} Corner 10541 29090 {normal=(0.801704 0.38219 -0.459567)} Corner 10541 29091 {normal=(0.801704 0.38219 -0.459567)} Corner 10466 29091 {normal=(0.812421 0.35185 -0.464946)} Corner 10466 29092 {normal=(0.812421 0.35185 -0.464946)} Corner 10429 29092 {normal=(0.765716 0.468038 -0.441157)} Corner 10324 29093 {normal=(0.10313 0.161721 -0.981433)} Corner 10429 29093 {normal=(0.0769804 0.168293 -0.982727)} Corner 10429 29094 {normal=(0.0769804 0.168293 -0.982727)} Corner 10466 29094 {normal=(0.022199 0.162652 -0.986434)} Corner 10466 29095 {normal=(0.022199 0.162652 -0.986434)} Corner 10356 29095 {normal=(0.0192992 0.144731 -0.989283)} Corner 10356 29096 {normal=(0.0192992 0.144731 -0.989283)} Corner 10324 29096 {normal=(0.10313 0.161721 -0.981433)} Corner 10271 29097 {normal=(-0.660813 -0.165595 -0.732055)} Corner 10324 29097 {normal=(-0.645349 -0.179127 -0.742589)} Corner 10324 29098 {normal=(-0.645349 -0.179127 -0.742589)} Corner 10356 29098 {normal=(-0.701009 -0.205523 -0.682896)} Corner 10356 29099 {normal=(-0.701009 -0.205523 -0.682896)} Corner 10301 29099 {normal=(-0.698234 -0.220254 -0.681144)} Corner 10301 29100 {normal=(-0.698234 -0.220254 -0.681144)} Corner 10271 29100 {normal=(-0.660813 -0.165595 -0.732055)} Corner 10271 29101 {normal=(-0.972122 -0.213316 0.0973412)} Corner 10271 29102 {normal=(-0.972122 -0.213316 0.0973412)} Corner 10301 29102 {normal=(-0.86953 -0.470446 0.150325)} Corner 10301 29103 {normal=(-0.86953 -0.470446 0.150325)} Corner 10316 29105 {normal=(0.168281 0.0162169 -0.985606)} Corner 10412 29105 {normal=(0.167609 -0.00435274 -0.985844)} Corner 10412 29106 {normal=(0.167609 -0.00435274 -0.985844)} Corner 10429 29106 {normal=(0.0769804 0.168293 -0.982727)} Corner 10429 29107 {normal=(0.0769804 0.168293 -0.982727)} Corner 10324 29107 {normal=(0.10313 0.161721 -0.981433)} Corner 10324 29108 {normal=(0.10313 0.161721 -0.981433)} Corner 10316 29108 {normal=(0.168281 0.0162169 -0.985606)} Corner 10255 29109 {normal=(-0.580177 -0.232197 -0.780692)} Corner 10316 29109 {normal=(-0.580177 -0.232197 -0.780692)} Corner 10316 29110 {normal=(-0.580177 -0.232197 -0.780692)} Corner 10324 29110 {normal=(-0.645349 -0.179127 -0.742589)} Corner 10324 29111 {normal=(-0.645349 -0.179127 -0.742589)} Corner 10271 29111 {normal=(-0.660813 -0.165595 -0.732055)} Corner 10271 29112 {normal=(-0.660813 -0.165595 -0.732055)} Corner 10255 29112 {normal=(-0.580177 -0.232197 -0.780692)} Corner 10259 29113 {normal=(-0.978999 -0.180642 0.0944957)} Corner 10255 29113 {normal=(-0.982783 -0.17252 0.0661349)} Corner 10255 29114 {normal=(-0.982783 -0.17252 0.0661349)} Corner 10271 29114 {normal=(-0.972122 -0.213316 0.0973412)} Corner 10271 29115 {normal=(-0.972122 -0.213316 0.0973412)} Corner 10259 29116 {normal=(-0.978999 -0.180642 0.0944957)} Corner 10412 29117 {normal=(0.132667 0.978174 0.159924)} Corner 10473 29117 {normal=(-0.0580426 0.997739 -0.033894)} Corner 10473 29118 {normal=(-0.0580426 0.997739 -0.033894)} Corner 10500 29118 {normal=(-0.0474537 0.998607 -0.0230831)} Corner 10500 29119 {normal=(-0.0474537 0.998607 -0.0230831)} Corner 10429 29119 {normal=(0.132667 0.978174 0.159924)} Corner 10429 29120 {normal=(0.132667 0.978174 0.159924)} Corner 10412 29120 {normal=(0.132667 0.978174 0.159924)} Corner 10312 29121 {normal=(-0.552927 0.833201 0.00694569)} Corner 10312 29122 {normal=(-0.552927 0.833201 0.00694569)} Corner 10255 29122 {normal=(-0.74725 0.655939 0.10659)} Corner 10255 29123 {normal=(-0.74725 0.655939 0.10659)} Corner 10259 29123 {normal=(-0.758209 0.649601 0.05601)} Corner 10259 29124 {normal=(-0.758209 0.649601 0.05601)} Corner 10445 29125 {normal=(0.296764 -0.863598 -0.407591)} Corner 10473 29126 {normal=(0.456514 -0.886972 -0.0698223)} Corner 10473 29127 {normal=(0.456514 -0.886972 -0.0698223)} Corner 10412 29127 {normal=(0.321735 -0.849626 -0.417878)} Corner 10412 29128 {normal=(0.321735 -0.849626 -0.417878)} Corner 10445 29128 {normal=(0.296764 -0.863598 -0.407591)} Corner 10339 29129 {normal=(0.148219 -0.199435 -0.968637)} Corner 10445 29129 {normal=(0.129993 -0.28158 -0.950692)} Corner 10445 29130 {normal=(0.129993 -0.28158 -0.950692)} Corner 10412 29130 {normal=(0.167609 -0.00435274 -0.985844)} Corner 10412 29131 {normal=(0.167609 -0.00435274 -0.985844)} Corner 10316 29131 {normal=(0.168281 0.0162169 -0.985606)} Corner 10316 29132 {normal=(0.168281 0.0162169 -0.985606)} Corner 10339 29132 {normal=(0.148219 -0.199435 -0.968637)} Corner 10312 29133 {normal=(-0.321297 0.502173 -0.802864)} Corner 10339 29133 {normal=(-0.32274 0.500854 -0.803109)} Corner 10339 29134 {normal=(-0.32274 0.500854 -0.803109)} Corner 10316 29134 {normal=(-0.365922 0.459896 -0.809072)} Corner 10316 29135 {normal=(-0.365922 0.459896 -0.809072)} Corner 10255 29135 {normal=(-0.365922 0.459896 -0.809072)} Corner 10255 29136 {normal=(-0.365922 0.459896 -0.809072)} Corner 10312 29136 {normal=(-0.321297 0.502173 -0.802864)} Corner 10559 29137 {normal=(0.398392 -0.838986 -0.370657)} Corner 10445 29139 {normal=(0.296764 -0.863598 -0.407591)} Corner 10445 29140 {normal=(0.296764 -0.863598 -0.407591)} Corner 10559 29140 {normal=(0.398392 -0.838986 -0.370657)} Corner 10494 29141 {normal=(0.171877 -0.325313 -0.929855)} Corner 10559 29141 {normal=(0.179505 -0.325543 -0.928332)} Corner 10559 29142 {normal=(0.179505 -0.325543 -0.928332)} Corner 10445 29142 {normal=(0.129993 -0.28158 -0.950692)} Corner 10445 29143 {normal=(0.129993 -0.28158 -0.950692)} Corner 10339 29143 {normal=(0.148219 -0.199435 -0.968637)} Corner 10339 29144 {normal=(0.148219 -0.199435 -0.968637)} Corner 10494 29144 {normal=(0.171877 -0.325313 -0.929855)} Corner 10493 29145 {normal=(-0.214057 0.493331 -0.843092)} Corner 10494 29145 {normal=(-0.232221 0.507981 -0.829475)} Corner 10494 29146 {normal=(-0.232221 0.507981 -0.829475)} Corner 10339 29146 {normal=(-0.32274 0.500854 -0.803109)} Corner 10339 29147 {normal=(-0.32274 0.500854 -0.803109)} Corner 10312 29147 {normal=(-0.321297 0.502173 -0.802864)} Corner 10312 29148 {normal=(-0.321297 0.502173 -0.802864)} Corner 10493 29148 {normal=(-0.214057 0.493331 -0.843092)} Corner 10493 29149 {normal=(-0.186311 0.980084 -0.0687323)} Corner 10493 29150 {normal=(-0.186311 0.980084 -0.0687323)} Corner 10312 29150 {normal=(-0.552927 0.833201 0.00694569)} Corner 10312 29151 {normal=(-0.552927 0.833201 0.00694569)} Corner 10654 29153 {normal=(-0.162392 0.450416 -0.877926)} Corner 10620 29153 {normal=(-0.162392 0.450416 -0.877926)} Corner 10620 29154 {normal=(-0.162392 0.450416 -0.877926)} Corner 10494 29154 {normal=(-0.232221 0.507981 -0.829475)} Corner 10494 29155 {normal=(-0.232221 0.507981 -0.829475)} Corner 10493 29155 {normal=(-0.214057 0.493331 -0.843092)} Corner 10493 29156 {normal=(-0.214057 0.493331 -0.843092)} Corner 10654 29156 {normal=(-0.162392 0.450416 -0.877926)} Corner 10653 29157 {normal=(-0.404624 0.900082 -0.161655)} Corner 10654 29157 {normal=(-0.356774 0.93393 0.0220667)} Corner 10654 29158 {normal=(-0.356774 0.93393 0.0220667)} Corner 10493 29158 {normal=(-0.186311 0.980084 -0.0687323)} Corner 10493 29159 {normal=(-0.186311 0.980084 -0.0687323)} Corner 10653 29160 {normal=(-0.404624 0.900082 -0.161655)} Corner 10671 29161 {normal=(0.60264 -0.718875 -0.346472)} Corner 10559 29163 {normal=(0.398392 -0.838986 -0.370657)} Corner 10559 29164 {normal=(0.398392 -0.838986 -0.370657)} Corner 10671 29164 {normal=(0.60264 -0.718875 -0.346472)} Corner 10620 29165 {normal=(0.355593 -0.189978 -0.91513)} Corner 10671 29165 {normal=(0.359326 -0.257988 -0.896843)} Corner 10671 29166 {normal=(0.359326 -0.257988 -0.896843)} Corner 10559 29166 {normal=(0.179505 -0.325543 -0.928332)} Corner 10559 29167 {normal=(0.179505 -0.325543 -0.928332)} Corner 10494 29167 {normal=(0.171877 -0.325313 -0.929855)} Corner 10494 29168 {normal=(0.171877 -0.325313 -0.929855)} Corner 10620 29168 {normal=(0.355593 -0.189978 -0.91513)} Corner 10653 29169 {normal=(0.366236 0.417089 -0.83181)} Corner 10700 29169 {normal=(0.75673 0.355014 -0.548931)} Corner 10700 29170 {normal=(0.75673 0.355014 -0.548931)} Corner 10654 29171 {normal=(0.380431 0.316408 -0.868998)} Corner 10654 29172 {normal=(0.380431 0.316408 -0.868998)} Corner 10653 29172 {normal=(0.366236 0.417089 -0.83181)} Corner 10620 29173 {normal=(0.355593 -0.189978 -0.91513)} Corner 10728 29174 {normal=(0.632816 -0.0958746 -0.768344)} Corner 10728 29175 {normal=(0.632816 -0.0958746 -0.768344)} Corner 10671 29175 {normal=(0.359326 -0.257988 -0.896843)} Corner 10671 29176 {normal=(0.359326 -0.257988 -0.896843)} Corner 10620 29176 {normal=(0.355593 -0.189978 -0.91513)} Corner 10728 29177 {normal=(0.632816 -0.0958746 -0.768344)} Corner 10741 29179 {normal=(0.845536 0.0442755 -0.532079)} Corner 10741 29180 {normal=(0.845536 0.0442755 -0.532079)} Corner 10728 29180 {normal=(0.632816 -0.0958746 -0.768344)} Corner 10493 29183 {normal=(-0.186311 0.980084 -0.0687323)} Corner 10493 29184 {normal=(-0.186311 0.980084 -0.0687323)} Corner 10700 29185 {normal=(0.75673 0.355014 -0.548931)} Corner 10710 29185 {normal=(0.920493 0.266409 -0.285866)} Corner 10710 29186 {normal=(0.920493 0.266409 -0.285866)} Corner 10720 29186 {normal=(0.727412 0.558316 -0.398941)} Corner 10720 29187 {normal=(0.727412 0.558316 -0.398941)} Corner 10700 29188 {normal=(0.75673 0.355014 -0.548931)} Corner 10746 29189 {normal=(0.723716 0.509823 -0.465097)} Corner 10755 29189 {normal=(0.919897 0.0987296 -0.379528)} Corner 10755 29190 {normal=(0.919897 0.0987296 -0.379528)} Corner 10741 29190 {normal=(0.845536 0.0442755 -0.532079)} Corner 10741 29191 {normal=(0.845536 0.0442755 -0.532079)} Corner 10746 29192 {normal=(0.723716 0.509823 -0.465097)} Corner 10746 29193 {normal=(0.723716 0.509823 -0.465097)} Corner 10720 29195 {normal=(0.727412 0.558316 -0.398941)} Corner 10720 29196 {normal=(0.727412 0.558316 -0.398941)} Corner 10746 29196 {normal=(0.723716 0.509823 -0.465097)} Corner 10654 29198 {normal=(0.380431 0.316408 -0.868998)} Corner 10654 29199 {normal=(0.380431 0.316408 -0.868998)} Corner 10907 29205 {normal=(0.437007 -0.898389 -0.0438495)} Corner 10828 29207 {normal=(0.247441 -0.801555 -0.544319)} Corner 10828 29208 {normal=(0.247441 -0.801555 -0.544319)} Corner 10907 29208 {normal=(0.437007 -0.898389 -0.0438495)} Corner 10767 29209 {normal=(-0.225738 -0.320443 -0.919977)} Corner 10907 29209 {normal=(-0.225738 -0.320443 -0.919977)} Corner 10907 29210 {normal=(-0.225738 -0.320443 -0.919977)} Corner 10828 29210 {normal=(-0.208954 -0.185823 -0.960108)} Corner 10828 29211 {normal=(-0.208954 -0.185823 -0.960108)} Corner 10726 29211 {normal=(-0.195907 -0.0969889 -0.975814)} Corner 10726 29212 {normal=(-0.195907 -0.0969889 -0.975814)} Corner 10767 29212 {normal=(-0.225738 -0.320443 -0.919977)} Corner 10908 29213 {normal=(0.459679 -0.67037 0.582494)} Corner 10908 29214 {normal=(0.459679 -0.67037 0.582494)} Corner 10836 29214 {normal=(0.346965 -0.590327 0.728786)} Corner 10836 29215 {normal=(0.346965 -0.590327 0.728786)} Corner 10704 29222 {normal=(0.439252 0.608243 0.661134)} Corner 10704 29223 {normal=(0.439252 0.608243 0.661134)} Corner 10658 29223 {normal=(0.388925 0.364273 0.846193)} Corner 10658 29224 {normal=(0.388925 0.364273 0.846193)} Corner 10746 29225 {normal=(0.729022 0.534804 0.427214)} Corner 10746 29226 {normal=(0.729022 0.534804 0.427214)} Corner 10720 29226 {normal=(0.431926 0.804296 0.408103)} Corner 10720 29227 {normal=(0.431926 0.804296 0.408103)} Corner 10704 29227 {normal=(0.439252 0.608243 0.661134)} Corner 10704 29228 {normal=(0.439252 0.608243 0.661134)} Corner 10755 29229 {normal=(0.923793 0.119347 0.363817)} Corner 10746 29229 {normal=(0.729022 0.534804 0.427214)} Corner 10746 29230 {normal=(0.729022 0.534804 0.427214)} Corner 10743 29231 {normal=(0.850982 0.0735654 0.520017)} Corner 10743 29232 {normal=(0.850982 0.0735654 0.520017)} Corner 10755 29232 {normal=(0.923793 0.119347 0.363817)} Corner 10710 29233 {normal=(0.0613034 0.992545 0.105342)} Corner 10702 29233 {normal=(0.260155 0.910501 0.321415)} Corner 10702 29234 {normal=(0.260155 0.910501 0.321415)} Corner 10704 29234 {normal=(0.923483 0.281858 0.26026)} Corner 10704 29235 {normal=(0.923483 0.281858 0.26026)} Corner 10720 29235 {normal=(0.923483 0.281858 0.26026)} Corner 10720 29236 {normal=(0.923483 0.281858 0.26026)} Corner 10710 29236 {normal=(0.0613034 0.992545 0.105342)} Corner 10496 29238 {normal=(-0.195461 0.980283 0.0289989)} Corner 10496 29239 {normal=(-0.195461 0.980283 0.0289989)} Corner 10729 29241 {normal=(0.640224 -0.0531976 0.766344)} Corner 10729 29242 {normal=(0.640224 -0.0531976 0.766344)} Corner 10743 29242 {normal=(0.850982 0.0735654 0.520017)} Corner 10743 29243 {normal=(0.850982 0.0735654 0.520017)} Corner 10621 29245 {normal=(0.364091 -0.138789 0.920964)} Corner 10621 29246 {normal=(0.364091 -0.138789 0.920964)} Corner 10672 29246 {normal=(0.367585 -0.207828 0.906471)} Corner 10672 29247 {normal=(0.367585 -0.207828 0.906471)} Corner 10729 29247 {normal=(0.640224 -0.0531976 0.766344)} Corner 10729 29248 {normal=(0.640224 -0.0531976 0.766344)} Corner 10702 29249 {normal=(0.374261 0.463087 0.803417)} Corner 10655 29249 {normal=(0.374261 0.463087 0.803417)} Corner 10655 29250 {normal=(0.374261 0.463087 0.803417)} Corner 10658 29250 {normal=(0.388925 0.364273 0.846193)} Corner 10658 29251 {normal=(0.388925 0.364273 0.846193)} Corner 10704 29251 {normal=(0.439252 0.608243 0.661134)} Corner 10704 29252 {normal=(0.439252 0.608243 0.661134)} Corner 10702 29252 {normal=(0.374261 0.463087 0.803417)} Corner 10672 29253 {normal=(0.367585 -0.207828 0.906471)} Corner 10621 29253 {normal=(0.364091 -0.138789 0.920964)} Corner 10621 29254 {normal=(0.364091 -0.138789 0.920964)} Corner 10497 29254 {normal=(0.239705 -0.256101 0.936458)} Corner 10497 29255 {normal=(0.239705 -0.256101 0.936458)} Corner 10562 29255 {normal=(0.239602 -0.257917 0.935986)} Corner 10562 29256 {normal=(0.239602 -0.257917 0.935986)} Corner 10672 29256 {normal=(0.367585 -0.207828 0.906471)} Corner 10672 29257 {normal=(0.605698 -0.698089 0.38184)} Corner 10672 29258 {normal=(0.605698 -0.698089 0.38184)} Corner 10562 29258 {normal=(0.43081 -0.81229 0.393176)} Corner 10562 29259 {normal=(0.43081 -0.81229 0.393176)} Corner 10658 29261 {normal=(-0.357064 0.931148 -0.0739518)} Corner 10655 29261 {normal=(-0.399347 0.911836 0.0952736)} Corner 10655 29262 {normal=(-0.399347 0.911836 0.0952736)} Corner 10496 29263 {normal=(-0.195461 0.980283 0.0289989)} Corner 10496 29264 {normal=(-0.195461 0.980283 0.0289989)} Corner 10658 29264 {normal=(-0.357064 0.931148 -0.0739518)} Corner 10621 29265 {normal=(-0.154443 0.499096 0.852673)} Corner 10658 29265 {normal=(-0.154442 0.499096 0.852673)} Corner 10658 29266 {normal=(-0.154442 0.499096 0.852673)} Corner 10496 29266 {normal=(-0.172984 0.528732 0.830974)} Corner 10496 29267 {normal=(-0.172984 0.528732 0.830974)} Corner 10497 29267 {normal=(-0.181198 0.541723 0.820794)} Corner 10497 29268 {normal=(-0.181198 0.541723 0.820794)} Corner 10621 29268 {normal=(-0.154443 0.499096 0.852673)} Corner 10496 29269 {normal=(-0.195461 0.980283 0.0289989)} Corner 10319 29271 {normal=(-0.570934 0.819992 0.0405935)} Corner 10319 29272 {normal=(-0.570934 0.819992 0.0405935)} Corner 10496 29272 {normal=(-0.195461 0.980283 0.0289989)} Corner 10497 29273 {normal=(-0.181198 0.541723 0.820794)} Corner 10496 29273 {normal=(-0.172984 0.528732 0.830974)} Corner 10496 29274 {normal=(-0.172984 0.528732 0.830974)} Corner 10319 29274 {normal=(-0.229549 0.509991 0.828985)} Corner 10319 29275 {normal=(-0.229549 0.509991 0.828985)} Corner 10355 29275 {normal=(-0.234121 0.501698 0.832758)} Corner 10355 29276 {normal=(-0.234121 0.501698 0.832758)} Corner 10497 29276 {normal=(-0.181198 0.541723 0.820794)} Corner 10562 29277 {normal=(0.239602 -0.257917 0.935986)} Corner 10497 29277 {normal=(0.239705 -0.256101 0.936458)} Corner 10497 29278 {normal=(0.239705 -0.256101 0.936458)} Corner 10355 29278 {normal=(0.259871 -0.183576 0.948033)} Corner 10355 29279 {normal=(0.259871 -0.183576 0.948033)} Corner 10457 29279 {normal=(0.251448 -0.208228 0.945206)} Corner 10457 29280 {normal=(0.251448 -0.208228 0.945206)} Corner 10562 29280 {normal=(0.239602 -0.257917 0.935986)} Corner 10562 29281 {normal=(0.43081 -0.81229 0.393176)} Corner 10562 29282 {normal=(0.43081 -0.81229 0.393176)} Corner 10457 29282 {normal=(0.441781 -0.817599 0.369273)} Corner 10457 29283 {normal=(0.441781 -0.817599 0.369273)} Corner 10355 29285 {normal=(-0.234121 0.501698 0.832758)} Corner 10319 29285 {normal=(-0.229549 0.509991 0.828985)} Corner 10319 29286 {normal=(-0.229549 0.509991 0.828985)} Corner 10268 29286 {normal=(-0.264371 0.444318 0.855973)} Corner 10268 29287 {normal=(-0.264371 0.444318 0.855973)} Corner 10331 29287 {normal=(-0.264371 0.444318 0.855973)} Corner 10331 29288 {normal=(-0.264371 0.444318 0.855973)} Corner 10355 29288 {normal=(-0.234121 0.501698 0.832758)} Corner 10457 29289 {normal=(0.251448 -0.208228 0.945206)} Corner 10355 29289 {normal=(0.259871 -0.183576 0.948033)} Corner 10355 29290 {normal=(0.259871 -0.183576 0.948033)} Corner 10331 29290 {normal=(0.339995 0.0329184 0.939851)} Corner 10331 29291 {normal=(0.339995 0.0329184 0.939851)} Corner 10428 29291 {normal=(0.299024 -0.0796728 0.950914)} Corner 10428 29292 {normal=(0.299024 -0.0796728 0.950914)} Corner 10457 29292 {normal=(0.251448 -0.208228 0.945206)} Corner 10457 29293 {normal=(0.441781 -0.817599 0.369273)} Corner 10457 29294 {normal=(0.441781 -0.817599 0.369273)} Corner 10428 29294 {normal=(0.531517 -0.774996 0.341863)} Corner 10428 29295 {normal=(0.531517 -0.774996 0.341863)} Corner 10473 29295 {normal=(0.456514 -0.886972 -0.0698223)} Corner 10473 29296 {normal=(0.456514 -0.886972 -0.0698223)} Corner 10319 29297 {normal=(-0.570934 0.819992 0.0405935)} Corner 10259 29298 {normal=(-0.758209 0.649601 0.05601)} Corner 10259 29299 {normal=(-0.758209 0.649601 0.05601)} Corner 10268 29299 {normal=(-0.767069 0.641541 0.00552277)} Corner 10268 29300 {normal=(-0.767069 0.641541 0.00552277)} Corner 10319 29300 {normal=(-0.570934 0.819992 0.0405935)} Corner 10473 29301 {normal=(-0.0580426 0.997739 -0.033894)} Corner 10428 29301 {normal=(-0.107936 0.994112 -0.00951657)} Corner 10428 29302 {normal=(-0.107936 0.994112 -0.00951657)} Corner 10458 29302 {normal=(-0.19308 0.969758 -0.149297)} Corner 10458 29303 {normal=(-0.19308 0.969758 -0.149297)} Corner 10500 29303 {normal=(-0.0474537 0.998607 -0.0230831)} Corner 10500 29304 {normal=(-0.0474537 0.998607 -0.0230831)} Corner 10473 29304 {normal=(-0.0580426 0.997739 -0.033894)} Corner 10268 29305 {normal=(-0.973991 -0.189154 0.124747)} Corner 10259 29305 {normal=(-0.978999 -0.180642 0.0944957)} Corner 10259 29306 {normal=(-0.978999 -0.180642 0.0944957)} Corner 10285 29307 {normal=(-0.970082 -0.222062 0.0981322)} Corner 10285 29308 {normal=(-0.970082 -0.222062 0.0981322)} Corner 10268 29308 {normal=(-0.973991 -0.189154 0.124747)} Corner 10331 29309 {normal=(-0.430787 -0.164163 0.887397)} Corner 10268 29309 {normal=(-0.430787 -0.164163 0.887397)} Corner 10268 29310 {normal=(-0.430787 -0.164163 0.887397)} Corner 10285 29310 {normal=(-0.493089 -0.14002 0.858637)} Corner 10285 29311 {normal=(-0.493089 -0.14002 0.858637)} Corner 10342 29311 {normal=(-0.485283 -0.143142 0.862561)} Corner 10342 29312 {normal=(-0.485283 -0.143142 0.862561)} Corner 10331 29312 {normal=(-0.430787 -0.164163 0.887397)} Corner 10285 29313 {normal=(-0.970082 -0.222062 0.0981322)} Corner 10315 29315 {normal=(-0.871773 -0.479135 0.102184)} Corner 10315 29316 {normal=(-0.871773 -0.479135 0.102184)} Corner 10285 29316 {normal=(-0.970082 -0.222062 0.0981322)} Corner 10342 29317 {normal=(-0.485283 -0.143142 0.862561)} Corner 10285 29317 {normal=(-0.493089 -0.14002 0.858637)} Corner 10285 29318 {normal=(-0.493089 -0.14002 0.858637)} Corner 10315 29318 {normal=(-0.516751 -0.193066 0.834083)} Corner 10315 29319 {normal=(-0.516751 -0.193066 0.834083)} Corner 10379 29319 {normal=(-0.520454 -0.182254 0.834213)} Corner 10379 29320 {normal=(-0.520454 -0.182254 0.834213)} Corner 10342 29320 {normal=(-0.485283 -0.143142 0.862561)} Corner 10458 29321 {normal=(0.305697 0.119937 0.944545)} Corner 10342 29321 {normal=(0.305697 0.119937 0.944545)} Corner 10342 29322 {normal=(0.305697 0.119937 0.944545)} Corner 10379 29322 {normal=(0.22478 0.220181 0.949207)} Corner 10379 29323 {normal=(0.22478 0.220181 0.949207)} Corner 10489 29323 {normal=(0.256177 0.182265 0.949291)} Corner 10489 29324 {normal=(0.256177 0.182265 0.949291)} Corner 10458 29324 {normal=(0.305697 0.119937 0.944545)} Corner 10500 29325 {normal=(0.880786 0.396573 0.258739)} Corner 10458 29325 {normal=(0.880786 0.396573 0.258739)} Corner 10458 29326 {normal=(0.880786 0.396573 0.258739)} Corner 10489 29326 {normal=(0.874566 0.414291 0.251987)} Corner 10489 29327 {normal=(0.874566 0.414291 0.251987)} Corner 10541 29327 {normal=(0.874075 0.415641 0.251466)} Corner 10541 29328 {normal=(0.874075 0.415641 0.251466)} Corner 10500 29328 {normal=(0.880786 0.396573 0.258739)} Corner 10489 29329 {normal=(0.256177 0.182265 0.949291)} Corner 10379 29329 {normal=(0.22478 0.220181 0.949207)} Corner 10379 29330 {normal=(0.22478 0.220181 0.949207)} Corner 10438 29330 {normal=(0.195269 0.281412 0.939509)} Corner 10438 29331 {normal=(0.195269 0.281412 0.939509)} Corner 10535 29331 {normal=(0.195023 0.281334 0.939584)} Corner 10535 29332 {normal=(0.195023 0.281334 0.939584)} Corner 10489 29332 {normal=(0.256177 0.182265 0.949291)} Corner 10541 29333 {normal=(0.874075 0.415641 0.251466)} Corner 10489 29333 {normal=(0.874566 0.414291 0.251987)} Corner 10489 29334 {normal=(0.874566 0.414291 0.251987)} Corner 10535 29334 {normal=(0.868203 0.43131 0.245346)} Corner 10535 29335 {normal=(0.868203 0.43131 0.245346)} Corner 10555 29335 {normal=(0.868203 0.43131 0.245346)} Corner 10555 29336 {normal=(0.868203 0.43131 0.245346)} Corner 10541 29336 {normal=(0.874075 0.415641 0.251466)} Corner 10315 29337 {normal=(-0.871773 -0.479135 0.102184)} Corner 10396 29339 {normal=(-0.520022 -0.841048 0.149051)} Corner 10396 29340 {normal=(-0.520022 -0.841048 0.149051)} Corner 10315 29340 {normal=(-0.871773 -0.479135 0.102184)} Corner 10379 29341 {normal=(-0.520454 -0.182254 0.834213)} Corner 10315 29341 {normal=(-0.516751 -0.193066 0.834083)} Corner 10315 29342 {normal=(-0.516751 -0.193066 0.834083)} Corner 10396 29342 {normal=(-0.494583 -0.253615 0.831305)} Corner 10396 29343 {normal=(-0.494583 -0.253615 0.831305)} Corner 10438 29343 {normal=(-0.494583 -0.253615 0.831305)} Corner 10438 29344 {normal=(-0.494583 -0.253615 0.831305)} Corner 10379 29344 {normal=(-0.520454 -0.182254 0.834213)} Corner 10396 29345 {normal=(-0.520022 -0.841048 0.149051)} Corner 10551 29346 {normal=(-0.305343 -0.943667 0.127509)} Corner 10551 29347 {normal=(-0.305343 -0.943667 0.127509)} Corner 10545 29347 {normal=(-0.301444 -0.941611 0.149999)} Corner 10545 29348 {normal=(-0.301444 -0.941611 0.149999)} Corner 10396 29348 {normal=(-0.520022 -0.841048 0.149051)} Corner 10438 29349 {normal=(-0.0238278 -0.515418 0.856607)} Corner 10396 29349 {normal=(-0.0238278 -0.515418 0.856607)} Corner 10396 29350 {normal=(-0.0238278 -0.515418 0.856607)} Corner 10545 29350 {normal=(0.288076 -0.711794 0.640595)} Corner 10545 29351 {normal=(0.288076 -0.711794 0.640595)} Corner 10513 29351 {normal=(0.125694 -0.526403 0.840893)} Corner 10513 29352 {normal=(0.125694 -0.526403 0.840893)} Corner 10438 29352 {normal=(-0.0238278 -0.515418 0.856607)} Corner 10535 29353 {normal=(0.195023 0.281334 0.939584)} Corner 10438 29353 {normal=(0.195269 0.281412 0.939509)} Corner 10438 29354 {normal=(0.195269 0.281412 0.939509)} Corner 10513 29354 {normal=(0.132636 0.326524 0.935836)} Corner 10513 29355 {normal=(0.132636 0.326524 0.935836)} Corner 10600 29355 {normal=(0.0551982 0.362902 0.930191)} Corner 10600 29356 {normal=(0.0551982 0.362902 0.930191)} Corner 10535 29356 {normal=(0.195023 0.281334 0.939584)} Corner 10555 29357 {normal=(0.10644 0.977159 0.183929)} Corner 10535 29357 {normal=(0.10644 0.977159 0.183929)} Corner 10535 29358 {normal=(0.10644 0.977159 0.183929)} Corner 10600 29358 {normal=(0.10644 0.97716 0.183929)} Corner 10600 29359 {normal=(0.10644 0.97716 0.183929)} Corner 10626 29359 {normal=(0.10644 0.977159 0.183929)} Corner 10626 29360 {normal=(0.10644 0.977159 0.183929)} Corner 10555 29360 {normal=(0.10644 0.977159 0.183929)} Corner 10551 29361 {normal=(0.405641 -0.905664 0.1234)} Corner 10545 29363 {normal=(0.288076 -0.711794 0.640595)} Corner 10545 29364 {normal=(0.288076 -0.711794 0.640595)} Corner 10551 29364 {normal=(0.405641 -0.905664 0.1234)} Corner 10626 29365 {normal=(-0.636562 0.768428 -0.065633)} Corner 10600 29365 {normal=(-0.623287 0.770226 0.135148)} Corner 10600 29366 {normal=(-0.623287 0.770226 0.135148)} Corner 10744 29366 {normal=(-0.562627 0.806963 0.179616)} Corner 10744 29367 {normal=(-0.562627 0.806963 0.179616)} Corner 10714 29367 {normal=(-0.655908 0.752265 -0.0623017)} Corner 10714 29368 {normal=(-0.655908 0.752265 -0.0623017)} Corner 10626 29368 {normal=(-0.636562 0.768428 -0.065633)} Corner 10513 29369 {normal=(0.125694 -0.526403 0.840893)} Corner 10545 29369 {normal=(0.288076 -0.711794 0.640595)} Corner 10545 29370 {normal=(0.288076 -0.711794 0.640595)} Corner 10836 29371 {normal=(0.346965 -0.590327 0.728786)} Corner 10836 29372 {normal=(0.346965 -0.590327 0.728786)} Corner 10513 29372 {normal=(0.125694 -0.526403 0.840893)} Corner 10600 29373 {normal=(0.0551982 0.362902 0.930191)} Corner 10513 29373 {normal=(0.132636 0.326524 0.935836)} Corner 10513 29374 {normal=(0.132636 0.326524 0.935836)} Corner 10836 29374 {normal=(-0.016731 0.394151 0.918893)} Corner 10836 29375 {normal=(-0.016731 0.394151 0.918893)} Corner 10744 29375 {normal=(-0.016731 0.394151 0.918893)} Corner 10744 29376 {normal=(-0.016731 0.394151 0.918893)} Corner 10600 29376 {normal=(0.0551982 0.362902 0.930191)} Corner 10975 29377 {normal=(0.55827 -0.818093 -0.138055)} Corner 11011 29377 {normal=(0.601963 -0.789689 -0.118455)} Corner 11011 29378 {normal=(0.601963 -0.789689 -0.118455)} Corner 10907 29379 {normal=(0.437007 -0.898389 -0.0438495)} Corner 10907 29380 {normal=(0.437007 -0.898389 -0.0438495)} Corner 10975 29380 {normal=(0.55827 -0.818093 -0.138055)} Corner 10833 29381 {normal=(-0.547765 0.833638 -0.0707231)} Corner 10797 29381 {normal=(-0.483279 0.874277 -0.0456157)} Corner 10797 29382 {normal=(-0.483279 0.874277 -0.0456157)} Corner 10767 29382 {normal=(-0.466623 0.88074 -0.0809999)} Corner 10767 29383 {normal=(-0.466623 0.88074 -0.0809999)} Corner 10805 29383 {normal=(-0.399374 0.907661 -0.129046)} Corner 10805 29384 {normal=(-0.399374 0.907661 -0.129046)} Corner 10833 29384 {normal=(-0.547765 0.833638 -0.0707231)} Corner 10833 29385 {normal=(-0.936821 -0.115372 -0.330235)} Corner 10833 29386 {normal=(-0.936821 -0.115372 -0.330235)} Corner 10805 29386 {normal=(-0.708086 -0.416778 -0.570009)} Corner 10805 29387 {normal=(-0.708086 -0.416778 -0.570009)} Corner 10751 29387 {normal=(-0.85741 0.17342 -0.484535)} Corner 10751 29388 {normal=(-0.85741 0.17342 -0.484535)} Corner 11015 29389 {normal=(0.613801 -0.697846 0.369132)} Corner 11002 29389 {normal=(0.543026 -0.665696 0.511831)} Corner 11002 29390 {normal=(0.543026 -0.665696 0.511831)} Corner 10908 29390 {normal=(0.459679 -0.67037 0.582494)} Corner 10908 29391 {normal=(0.459679 -0.67037 0.582494)} Corner 11015 29392 {normal=(0.613801 -0.697846 0.369132)} Corner 11002 29394 {normal=(0.946585 0.145746 0.287637)} Corner 11002 29395 {normal=(0.946585 0.145746 0.287637)} Corner 11015 29395 {normal=(0.945189 0.134521 0.297527)} Corner 11015 29396 {normal=(0.945189 0.134521 0.297527)} Corner 11025 29397 {normal=(0.99662 -0.00203873 0.0821272)} Corner 11015 29398 {normal=(0.945189 0.134521 0.297527)} Corner 11015 29399 {normal=(0.945189 0.134521 0.297527)} Corner 11026 29399 {normal=(0.924976 0.136233 0.354769)} Corner 11026 29400 {normal=(0.924976 0.136233 0.354769)} Corner 11025 29400 {normal=(0.99662 -0.00203873 0.0821272)} Corner 11025 29401 {normal=(0.896078 0.0139313 -0.443677)} Corner 11025 29402 {normal=(0.896078 0.0139313 -0.443677)} Corner 11026 29402 {normal=(0.908791 -0.0471399 -0.414581)} Corner 11026 29403 {normal=(0.908791 -0.0471399 -0.414581)} Corner 11011 29403 {normal=(0.851482 -0.0620605 -0.520699)} Corner 11011 29404 {normal=(0.851482 -0.0620605 -0.520699)} Corner 10973 29405 {normal=(0.789316 -0.0198296 -0.613667)} Corner 11011 29406 {normal=(0.851482 -0.0620605 -0.520699)} Corner 11011 29407 {normal=(0.851482 -0.0620605 -0.520699)} Corner 10975 29407 {normal=(0.78785 -0.0749429 -0.61129)} Corner 10975 29408 {normal=(0.78785 -0.0749429 -0.61129)} Corner 10973 29408 {normal=(0.789316 -0.0198296 -0.613667)} Corner 10797 29410 {normal=(-0.972912 0.18015 0.144873)} Corner 10797 29411 {normal=(-0.972912 0.18015 0.144873)} Corner 10833 29411 {normal=(-0.936821 -0.115372 -0.330235)} Corner 10833 29412 {normal=(-0.936821 -0.115372 -0.330235)} Corner 10833 29414 {normal=(-0.936821 -0.115372 -0.330235)} Corner 10833 29415 {normal=(-0.936821 -0.115372 -0.330235)} Corner 10711 29417 {normal=(-0.995509 -0.0783009 -0.0532041)} Corner 10765 29419 {normal=(-0.910718 0.409793 -0.0515945)} Corner 10765 29420 {normal=(-0.910718 0.409793 -0.0515945)} Corner 10711 29420 {normal=(-0.995509 -0.0783009 -0.0532041)} Corner 10813 29421 {normal=(-0.839725 0.15121 0.521534)} Corner 10711 29421 {normal=(-0.824752 0.0886958 0.558496)} Corner 10711 29422 {normal=(-0.824752 0.0886958 0.558496)} Corner 10765 29422 {normal=(-0.847454 0.194433 0.493982)} Corner 10765 29423 {normal=(-0.847454 0.194433 0.493982)} Corner 10795 29423 {normal=(-0.847454 0.194433 0.493982)} Corner 10795 29424 {normal=(-0.847454 0.194433 0.493982)} Corner 10813 29424 {normal=(-0.839725 0.15121 0.521534)} Corner 10925 29425 {normal=(-0.289382 0.352801 0.889825)} Corner 10813 29425 {normal=(-0.347671 0.393464 0.851065)} Corner 10813 29426 {normal=(-0.347671 0.393464 0.851065)} Corner 10795 29426 {normal=(-0.188532 0.352507 0.916621)} Corner 10795 29427 {normal=(-0.188532 0.352507 0.916621)} Corner 10950 29427 {normal=(-0.201106 0.336165 0.920081)} Corner 10950 29428 {normal=(-0.201106 0.336165 0.920081)} Corner 10925 29428 {normal=(-0.289382 0.352801 0.889825)} Corner 10925 29429 {normal=(0.582218 0.341087 0.738025)} Corner 10925 29430 {normal=(0.582218 0.341087 0.738025)} Corner 10950 29430 {normal=(0.757132 0.280681 0.589889)} Corner 10950 29431 {normal=(0.757132 0.280681 0.589889)} Corner 10984 29431 {normal=(0.839387 0.234404 0.490392)} Corner 10984 29432 {normal=(0.839387 0.234404 0.490392)} Corner 10984 29434 {normal=(0.839387 0.234404 0.490392)} Corner 10984 29435 {normal=(0.839387 0.234404 0.490392)} Corner 11003 29435 {normal=(0.998031 0.0437707 -0.0449151)} Corner 11003 29436 {normal=(0.998031 0.0437707 -0.0449151)} Corner 11003 29438 {normal=(0.998031 0.0437707 -0.0449151)} Corner 11003 29439 {normal=(0.998031 0.0437707 -0.0449151)} Corner 10982 29439 {normal=(0.998142 0.0581908 0.0180403)} Corner 10982 29440 {normal=(0.998142 0.0581908 0.0180403)} Corner 10982 29442 {normal=(0.998142 0.0581908 0.0180403)} Corner 10982 29443 {normal=(0.998142 0.0581908 0.0180403)} Corner 11002 29443 {normal=(0.946585 0.145746 0.287637)} Corner 11002 29444 {normal=(0.946585 0.145746 0.287637)} Corner 11002 29445 {normal=(0.543026 -0.665696 0.511831)} Corner 10982 29445 {normal=(0.520127 -0.61836 0.589152)} Corner 10982 29446 {normal=(0.520127 -0.61836 0.589152)} Corner 10923 29446 {normal=(0.520127 -0.61836 0.589152)} Corner 10923 29447 {normal=(0.520127 -0.61836 0.589152)} Corner 10908 29447 {normal=(0.459679 -0.67037 0.582494)} Corner 10908 29448 {normal=(0.459679 -0.67037 0.582494)} Corner 11002 29448 {normal=(0.543026 -0.665696 0.511831)} Corner 10765 29449 {normal=(-0.910718 0.409793 -0.0515945)} Corner 10751 29450 {normal=(-0.85741 0.17342 -0.484535)} Corner 10751 29451 {normal=(-0.85741 0.17342 -0.484535)} Corner 10765 29452 {normal=(-0.910718 0.409793 -0.0515945)} Corner 10795 29453 {normal=(-0.693178 0.711784 0.113436)} Corner 10765 29453 {normal=(-0.910718 0.409793 -0.0515945)} Corner 10765 29454 {normal=(-0.910718 0.409793 -0.0515945)} Corner 10754 29455 {normal=(-0.739461 0.640715 0.206596)} Corner 10754 29456 {normal=(-0.739461 0.640715 0.206596)} Corner 10795 29456 {normal=(-0.693178 0.711784 0.113436)} Corner 10950 29457 {normal=(-0.201106 0.336165 0.920081)} Corner 10795 29457 {normal=(-0.188532 0.352507 0.916621)} Corner 10795 29458 {normal=(-0.188532 0.352507 0.916621)} Corner 10754 29458 {normal=(-0.239179 0.324436 0.915169)} Corner 10754 29459 {normal=(-0.239179 0.324436 0.915169)} Corner 10893 29459 {normal=(-0.188902 0.364807 0.911719)} Corner 10893 29460 {normal=(-0.188902 0.364807 0.911719)} Corner 10950 29460 {normal=(-0.201106 0.336165 0.920081)} Corner 10984 29461 {normal=(0.586772 -0.368174 0.721212)} Corner 10950 29461 {normal=(0.586772 -0.368174 0.721212)} Corner 10950 29462 {normal=(0.586772 -0.368174 0.721212)} Corner 10893 29462 {normal=(0.413579 -0.424825 0.80528)} Corner 10893 29463 {normal=(0.413579 -0.424825 0.80528)} Corner 10941 29463 {normal=(0.495082 -0.400984 0.770782)} Corner 10941 29464 {normal=(0.495082 -0.400984 0.770782)} Corner 10984 29464 {normal=(0.586772 -0.368174 0.721212)} Corner 10540 29465 {normal=(0.0268317 0.0284796 -0.999234)} Corner 10549 29465 {normal=(-0.179604 0.00322059 -0.983734)} Corner 10549 29466 {normal=(-0.179604 0.00322059 -0.983734)} Corner 10643 29466 {normal=(-0.22213 -0.130743 -0.966211)} Corner 10643 29467 {normal=(-0.22213 -0.130743 -0.966211)} Corner 10769 29467 {normal=(-0.13831 -0.307819 -0.941338)} Corner 10769 29468 {normal=(-0.13831 -0.307819 -0.941338)} Corner 10540 29468 {normal=(0.0268317 0.0284796 -0.999234)} Corner 10611 29469 {normal=(0.487972 -0.555732 -0.673087)} Corner 10540 29469 {normal=(0.488068 -0.555335 -0.673344)} Corner 10540 29470 {normal=(0.488068 -0.555335 -0.673344)} Corner 10769 29470 {normal=(0.48926 -0.550392 -0.67653)} Corner 10769 29471 {normal=(0.48926 -0.550392 -0.67653)} Corner 10838 29471 {normal=(0.48926 -0.550392 -0.67653)} Corner 10838 29472 {normal=(0.48926 -0.550392 -0.67653)} Corner 10611 29472 {normal=(0.487972 -0.555732 -0.673087)} Corner 10549 29473 {normal=(-0.923004 0.384721 -0.00735108)} Corner 10643 29475 {normal=(-0.72826 0.578789 -0.366936)} Corner 10643 29476 {normal=(-0.72826 0.578789 -0.366936)} Corner 10549 29476 {normal=(-0.923004 0.384721 -0.00735108)} Corner 10611 29478 {normal=(0.615541 -0.780578 -0.10866)} Corner 10611 29479 {normal=(0.615541 -0.780578 -0.10866)} Corner 10838 29479 {normal=(0.459609 -0.888121 -0.00117082)} Corner 10838 29480 {normal=(0.459609 -0.888121 -0.00117082)} Corner 10486 29481 {normal=(-0.95293 0.267271 0.143147)} Corner 10558 29481 {normal=(-0.949859 0.283378 0.132152)} Corner 10558 29482 {normal=(-0.949859 0.283378 0.132152)} Corner 10549 29483 {normal=(-0.923004 0.384721 -0.00735108)} Corner 10549 29484 {normal=(-0.923004 0.384721 -0.00735108)} Corner 10486 29484 {normal=(-0.95293 0.267271 0.143147)} Corner 10435 29485 {normal=(0.0492503 0.0101562 -0.998735)} Corner 10486 29485 {normal=(0.0673561 0.0188643 -0.997551)} Corner 10486 29486 {normal=(0.0673561 0.0188643 -0.997551)} Corner 10549 29486 {normal=(-0.179604 0.00322059 -0.983734)} Corner 10549 29487 {normal=(-0.179604 0.00322059 -0.983734)} Corner 10540 29487 {normal=(0.0268317 0.0284796 -0.999234)} Corner 10540 29488 {normal=(0.0268317 0.0284796 -0.999234)} Corner 10435 29488 {normal=(0.0492503 0.0101562 -0.998735)} Corner 10440 29489 {normal=(0.486649 -0.561104 -0.669578)} Corner 10435 29489 {normal=(0.486649 -0.561104 -0.669578)} Corner 10435 29490 {normal=(0.486649 -0.561104 -0.669578)} Corner 10540 29490 {normal=(0.488068 -0.555335 -0.673344)} Corner 10540 29491 {normal=(0.488068 -0.555335 -0.673344)} Corner 10611 29491 {normal=(0.487972 -0.555732 -0.673087)} Corner 10611 29492 {normal=(0.487972 -0.555732 -0.673087)} Corner 10440 29492 {normal=(0.486649 -0.561104 -0.669578)} Corner 10477 29493 {normal=(0.585121 -0.810672 -0.0210637)} Corner 10440 29493 {normal=(0.588189 -0.80151 -0.107772)} Corner 10440 29494 {normal=(0.588189 -0.80151 -0.107772)} Corner 10611 29494 {normal=(0.615541 -0.780578 -0.10866)} Corner 10611 29495 {normal=(0.615541 -0.780578 -0.10866)} Corner 10477 29496 {normal=(0.585121 -0.810672 -0.0210637)} Corner 10341 29497 {normal=(-0.500239 -0.593608 -0.630389)} Corner 10384 29497 {normal=(-0.495853 -0.596621 -0.63101)} Corner 10384 29498 {normal=(-0.495853 -0.596621 -0.63101)} Corner 10435 29498 {normal=(-0.529116 -0.573087 -0.625786)} Corner 10435 29499 {normal=(-0.529116 -0.573087 -0.625786)} Corner 10440 29499 {normal=(-0.529116 -0.573087 -0.625786)} Corner 10440 29500 {normal=(-0.529116 -0.573087 -0.625786)} Corner 10341 29500 {normal=(-0.500239 -0.593608 -0.630389)} Corner 10341 29501 {normal=(-0.609321 -0.764843 0.209149)} Corner 10341 29502 {normal=(-0.609321 -0.764843 0.209149)} Corner 10440 29502 {normal=(-0.532654 -0.823332 0.195972)} Corner 10440 29503 {normal=(-0.532654 -0.823332 0.195972)} Corner 10477 29503 {normal=(-0.53621 -0.825006 0.178448)} Corner 10477 29504 {normal=(-0.53621 -0.825006 0.178448)} Corner 10461 29505 {normal=(0.306695 0.752625 -0.582661)} Corner 10529 29505 {normal=(0.308864 0.872203 -0.379295)} Corner 10529 29506 {normal=(0.308864 0.872203 -0.379295)} Corner 10558 29506 {normal=(0.485233 0.586755 -0.64828)} Corner 10558 29507 {normal=(0.485233 0.586755 -0.64828)} Corner 10486 29507 {normal=(0.485233 0.586755 -0.64828)} Corner 10486 29508 {normal=(0.485233 0.586755 -0.64828)} Corner 10461 29508 {normal=(0.306695 0.752625 -0.582661)} Corner 10384 29509 {normal=(0.0344313 -0.00608059 -0.999389)} Corner 10461 29509 {normal=(0.0395593 -0.00649978 -0.999196)} Corner 10461 29510 {normal=(0.0395593 -0.00649978 -0.999196)} Corner 10486 29510 {normal=(0.0673561 0.0188643 -0.997551)} Corner 10486 29511 {normal=(0.0673561 0.0188643 -0.997551)} Corner 10435 29511 {normal=(0.0492503 0.0101562 -0.998735)} Corner 10435 29512 {normal=(0.0492503 0.0101562 -0.998735)} Corner 10384 29512 {normal=(0.0344313 -0.00608059 -0.999389)} Corner 10372 29513 {normal=(0.246115 0.832255 -0.496769)} Corner 10529 29514 {normal=(0.308864 0.872203 -0.379295)} Corner 10529 29515 {normal=(0.308864 0.872203 -0.379295)} Corner 10461 29515 {normal=(0.306695 0.752625 -0.582661)} Corner 10461 29516 {normal=(0.306695 0.752625 -0.582661)} Corner 10372 29516 {normal=(0.246115 0.832255 -0.496769)} Corner 10290 29517 {normal=(0.0695926 0.029707 -0.997133)} Corner 10372 29517 {normal=(0.0623321 0.00912266 -0.998014)} Corner 10372 29518 {normal=(0.0623321 0.00912266 -0.998014)} Corner 10461 29518 {normal=(0.0395593 -0.00649978 -0.999196)} Corner 10461 29519 {normal=(0.0395593 -0.00649978 -0.999196)} Corner 10384 29519 {normal=(0.0344313 -0.00608059 -0.999389)} Corner 10384 29520 {normal=(0.0344313 -0.00608059 -0.999389)} Corner 10290 29520 {normal=(0.0695926 0.029707 -0.997133)} Corner 10240 29521 {normal=(-0.475806 -0.610198 -0.633457)} Corner 10290 29521 {normal=(-0.474025 -0.61133 -0.6337)} Corner 10290 29522 {normal=(-0.474025 -0.61133 -0.6337)} Corner 10384 29522 {normal=(-0.495853 -0.596621 -0.63101)} Corner 10384 29523 {normal=(-0.495853 -0.596621 -0.63101)} Corner 10341 29523 {normal=(-0.500239 -0.593608 -0.630389)} Corner 10341 29524 {normal=(-0.500239 -0.593608 -0.630389)} Corner 10240 29524 {normal=(-0.475806 -0.610198 -0.633457)} Corner 10240 29525 {normal=(-0.774681 -0.599401 0.201464)} Corner 10240 29526 {normal=(-0.774681 -0.599401 0.201464)} Corner 10341 29526 {normal=(-0.609321 -0.764843 0.209149)} Corner 10341 29527 {normal=(-0.609321 -0.764843 0.209149)} Corner 10258 29529 {normal=(0.113809 -0.135757 -0.984184)} Corner 10351 29529 {normal=(0.112193 -0.127186 -0.985513)} Corner 10351 29530 {normal=(0.112193 -0.127186 -0.985513)} Corner 10372 29530 {normal=(0.0623321 0.00912266 -0.998014)} Corner 10372 29531 {normal=(0.0623321 0.00912266 -0.998014)} Corner 10290 29531 {normal=(0.0695926 0.029707 -0.997133)} Corner 10290 29532 {normal=(0.0695926 0.029707 -0.997133)} Corner 10258 29532 {normal=(0.113809 -0.135757 -0.984184)} Corner 10215 29533 {normal=(-0.482369 -0.605988 -0.632534)} Corner 10258 29533 {normal=(-0.482369 -0.605988 -0.632534)} Corner 10258 29534 {normal=(-0.482369 -0.605988 -0.632534)} Corner 10290 29534 {normal=(-0.474025 -0.61133 -0.6337)} Corner 10290 29535 {normal=(-0.474025 -0.61133 -0.6337)} Corner 10240 29535 {normal=(-0.475806 -0.610198 -0.633457)} Corner 10240 29536 {normal=(-0.475806 -0.610198 -0.633457)} Corner 10215 29536 {normal=(-0.482369 -0.605988 -0.632534)} Corner 10220 29537 {normal=(-0.839528 -0.49447 0.225148)} Corner 10215 29537 {normal=(-0.841873 -0.506749 0.185623)} Corner 10215 29538 {normal=(-0.841873 -0.506749 0.185623)} Corner 10240 29538 {normal=(-0.774681 -0.599401 0.201464)} Corner 10240 29539 {normal=(-0.774681 -0.599401 0.201464)} Corner 10220 29540 {normal=(-0.839528 -0.49447 0.225148)} Corner 10351 29541 {normal=(0.345895 0.79522 -0.497978)} Corner 10391 29541 {normal=(0.363126 0.886933 -0.285464)} Corner 10391 29542 {normal=(0.363126 0.886933 -0.285464)} Corner 10372 29543 {normal=(0.246115 0.832255 -0.496769)} Corner 10372 29544 {normal=(0.246115 0.832255 -0.496769)} Corner 10351 29544 {normal=(0.345895 0.79522 -0.497978)} Corner 10241 29545 {normal=(-0.776822 0.624776 -0.0787575)} Corner 10241 29546 {normal=(-0.776822 0.624776 -0.0787575)} Corner 10215 29546 {normal=(-0.89479 0.44402 0.0468745)} Corner 10215 29547 {normal=(-0.89479 0.44402 0.0468745)} Corner 10220 29547 {normal=(-0.899983 0.435912 0.00329598)} Corner 10220 29548 {normal=(-0.899983 0.435912 0.00329598)} Corner 10358 29549 {normal=(0.0817313 -0.956088 0.281454)} Corner 10411 29549 {normal=(-0.0415506 -0.97695 0.209385)} Corner 10411 29550 {normal=(-0.0415506 -0.97695 0.209385)} Corner 10391 29550 {normal=(-0.0401162 -0.976824 0.210251)} Corner 10391 29551 {normal=(-0.0401162 -0.976824 0.210251)} Corner 10351 29551 {normal=(0.0817313 -0.956088 0.281454)} Corner 10351 29552 {normal=(0.0817313 -0.956088 0.281454)} Corner 10358 29552 {normal=(0.0817313 -0.956088 0.281454)} Corner 10279 29553 {normal=(0.151146 -0.332375 -0.930958)} Corner 10358 29553 {normal=(0.156332 -0.355 -0.921702)} Corner 10358 29554 {normal=(0.156332 -0.355 -0.921702)} Corner 10351 29554 {normal=(0.112193 -0.127186 -0.985513)} Corner 10351 29555 {normal=(0.112193 -0.127186 -0.985513)} Corner 10258 29555 {normal=(0.113809 -0.135757 -0.984184)} Corner 10258 29556 {normal=(0.113809 -0.135757 -0.984184)} Corner 10279 29556 {normal=(0.151146 -0.332375 -0.930958)} Corner 10241 29557 {normal=(-0.502074 0.22173 -0.835917)} Corner 10279 29557 {normal=(-0.506583 0.208266 -0.836659)} Corner 10279 29558 {normal=(-0.506583 0.208266 -0.836659)} Corner 10258 29558 {normal=(-0.525317 0.148145 -0.837911)} Corner 10258 29559 {normal=(-0.525317 0.148145 -0.837911)} Corner 10215 29559 {normal=(-0.525317 0.148145 -0.837911)} Corner 10215 29560 {normal=(-0.525317 0.148145 -0.837911)} Corner 10241 29560 {normal=(-0.502074 0.22173 -0.835917)} Corner 10434 29561 {normal=(0.619251 -0.743531 -0.252367)} Corner 10411 29562 {normal=(0.591962 -0.795889 0.127051)} Corner 10411 29563 {normal=(0.591962 -0.795889 0.127051)} Corner 10358 29563 {normal=(0.529653 -0.826042 -0.192671)} Corner 10358 29564 {normal=(0.529653 -0.826042 -0.192671)} Corner 10434 29564 {normal=(0.619251 -0.743531 -0.252367)} Corner 10357 29565 {normal=(0.190195 -0.396089 -0.898298)} Corner 10434 29565 {normal=(0.192153 -0.396796 -0.897569)} Corner 10434 29566 {normal=(0.192153 -0.396796 -0.897569)} Corner 10358 29566 {normal=(0.156332 -0.355 -0.921702)} Corner 10358 29567 {normal=(0.156332 -0.355 -0.921702)} Corner 10279 29567 {normal=(0.151146 -0.332375 -0.930958)} Corner 10279 29568 {normal=(0.151146 -0.332375 -0.930958)} Corner 10357 29568 {normal=(0.190195 -0.396089 -0.898298)} Corner 10343 29569 {normal=(-0.421567 0.254221 -0.870433)} Corner 10357 29569 {normal=(-0.441112 0.263661 -0.857848)} Corner 10357 29570 {normal=(-0.441112 0.263661 -0.857848)} Corner 10279 29570 {normal=(-0.506583 0.208266 -0.836659)} Corner 10279 29571 {normal=(-0.506583 0.208266 -0.836659)} Corner 10241 29571 {normal=(-0.502074 0.22173 -0.835917)} Corner 10241 29572 {normal=(-0.502074 0.22173 -0.835917)} Corner 10343 29572 {normal=(-0.421567 0.254221 -0.870433)} Corner 10343 29573 {normal=(-0.480217 0.856234 -0.190407)} Corner 10343 29574 {normal=(-0.480217 0.856234 -0.190407)} Corner 10241 29574 {normal=(-0.776822 0.624776 -0.0787575)} Corner 10241 29575 {normal=(-0.776822 0.624776 -0.0787575)} Corner 10444 29577 {normal=(-0.374317 0.231272 -0.897998)} Corner 10431 29577 {normal=(-0.374317 0.231272 -0.897998)} Corner 10431 29578 {normal=(-0.374317 0.231272 -0.897998)} Corner 10357 29578 {normal=(-0.441112 0.263661 -0.857848)} Corner 10357 29579 {normal=(-0.441112 0.263661 -0.857848)} Corner 10343 29579 {normal=(-0.421567 0.254221 -0.870433)} Corner 10343 29580 {normal=(-0.421567 0.254221 -0.870433)} Corner 10444 29580 {normal=(-0.374317 0.231272 -0.897998)} Corner 10443 29581 {normal=(-0.661188 0.715077 -0.226925)} Corner 10444 29581 {normal=(-0.6071 0.792395 -0.0594916)} Corner 10444 29582 {normal=(-0.6071 0.792395 -0.0594916)} Corner 10343 29582 {normal=(-0.480217 0.856234 -0.190407)} Corner 10343 29583 {normal=(-0.480217 0.856234 -0.190407)} Corner 10443 29584 {normal=(-0.661188 0.715077 -0.226925)} Corner 10509 29585 {normal=(0.745414 -0.580057 -0.328467)} Corner 10434 29587 {normal=(0.619251 -0.743531 -0.252367)} Corner 10434 29588 {normal=(0.619251 -0.743531 -0.252367)} Corner 10509 29588 {normal=(0.745414 -0.580057 -0.328467)} Corner 10431 29589 {normal=(0.298964 -0.243346 -0.922715)} Corner 10509 29589 {normal=(0.324672 -0.302782 -0.896053)} Corner 10509 29590 {normal=(0.324672 -0.302782 -0.896053)} Corner 10434 29590 {normal=(0.192153 -0.396796 -0.897569)} Corner 10434 29591 {normal=(0.192153 -0.396796 -0.897569)} Corner 10357 29591 {normal=(0.190195 -0.396089 -0.898298)} Corner 10357 29592 {normal=(0.190195 -0.396089 -0.898298)} Corner 10431 29592 {normal=(0.298964 -0.243346 -0.922715)} Corner 10443 29593 {normal=(0.141929 0.34732 -0.926944)} Corner 10490 29593 {normal=(0.558371 0.441641 -0.702265)} Corner 10490 29594 {normal=(0.558371 0.441641 -0.702265)} Corner 10444 29595 {normal=(0.180628 0.249535 -0.95137)} Corner 10444 29596 {normal=(0.180628 0.249535 -0.95137)} Corner 10443 29596 {normal=(0.141929 0.34732 -0.926944)} Corner 10431 29597 {normal=(0.298964 -0.243346 -0.922715)} Corner 10580 29598 {normal=(0.549434 -0.0537605 -0.833806)} Corner 10580 29599 {normal=(0.549434 -0.0537605 -0.833806)} Corner 10509 29599 {normal=(0.324672 -0.302782 -0.896053)} Corner 10509 29600 {normal=(0.324672 -0.302782 -0.896053)} Corner 10431 29600 {normal=(0.298964 -0.243346 -0.922715)} Corner 10580 29601 {normal=(0.549434 -0.0537605 -0.833806)} Corner 10599 29603 {normal=(0.733997 0.175604 -0.656057)} Corner 10599 29604 {normal=(0.733997 0.175604 -0.656057)} Corner 10580 29604 {normal=(0.549434 -0.0537605 -0.833806)} Corner 10343 29607 {normal=(-0.480217 0.856234 -0.190407)} Corner 10343 29608 {normal=(-0.480217 0.856234 -0.190407)} Corner 10490 29609 {normal=(0.558371 0.441641 -0.702265)} Corner 10504 29609 {normal=(0.766396 0.448025 -0.460338)} Corner 10504 29610 {normal=(0.766396 0.448025 -0.460338)} Corner 10521 29610 {normal=(0.486997 0.651377 -0.581843)} Corner 10521 29611 {normal=(0.486997 0.651377 -0.581843)} Corner 10490 29612 {normal=(0.558371 0.441641 -0.702265)} Corner 10571 29613 {normal=(0.490834 0.592831 -0.638462)} Corner 10615 29613 {normal=(0.804674 0.273052 -0.527202)} Corner 10615 29614 {normal=(0.804674 0.273052 -0.527202)} Corner 10599 29614 {normal=(0.733997 0.175604 -0.656057)} Corner 10599 29615 {normal=(0.733997 0.175604 -0.656057)} Corner 10571 29616 {normal=(0.490834 0.592831 -0.638462)} Corner 10571 29617 {normal=(0.490834 0.592831 -0.638462)} Corner 10521 29619 {normal=(0.486997 0.651377 -0.581843)} Corner 10521 29620 {normal=(0.486997 0.651377 -0.581843)} Corner 10571 29620 {normal=(0.490834 0.592831 -0.638462)} Corner 10444 29622 {normal=(0.180628 0.249535 -0.95137)} Corner 10444 29623 {normal=(0.180628 0.249535 -0.95137)} Corner 10751 29625 {normal=(-0.85741 0.17342 -0.484535)} Corner 10751 29626 {normal=(-0.85741 0.17342 -0.484535)} Corner 10643 29626 {normal=(-0.72826 0.578789 -0.366936)} Corner 10643 29627 {normal=(-0.72826 0.578789 -0.366936)} Corner 10923 29629 {normal=(0.454166 -0.888783 0.06163)} Corner 10838 29631 {normal=(0.459609 -0.888121 -0.00117082)} Corner 10838 29632 {normal=(0.459609 -0.888121 -0.00117082)} Corner 10923 29632 {normal=(0.454166 -0.888783 0.06163)} Corner 10908 29633 {normal=(0.205656 -0.975747 0.074986)} Corner 10923 29633 {normal=(0.454166 -0.888783 0.06163)} Corner 10923 29634 {normal=(0.454166 -0.888783 0.06163)} Corner 10838 29634 {normal=(0.459609 -0.888121 -0.00117082)} Corner 10838 29635 {normal=(0.459609 -0.888121 -0.00117082)} Corner 10769 29635 {normal=(0.205656 -0.975747 0.074986)} Corner 10769 29636 {normal=(0.205656 -0.975747 0.074986)} Corner 10908 29636 {normal=(0.205656 -0.975747 0.074986)} Corner 10893 29637 {normal=(-0.188902 0.364807 0.911719)} Corner 10754 29637 {normal=(-0.239179 0.324436 0.915169)} Corner 10754 29638 {normal=(-0.239179 0.324436 0.915169)} Corner 10708 29638 {normal=(-0.23385 0.330952 0.914213)} Corner 10708 29639 {normal=(-0.23385 0.330952 0.914213)} Corner 10820 29639 {normal=(-0.25331 0.313929 0.915031)} Corner 10820 29640 {normal=(-0.25331 0.313929 0.915031)} Corner 10893 29640 {normal=(-0.188902 0.364807 0.911719)} Corner 10941 29641 {normal=(0.495082 -0.400984 0.770782)} Corner 10893 29641 {normal=(0.413579 -0.424825 0.80528)} Corner 10893 29642 {normal=(0.413579 -0.424825 0.80528)} Corner 10820 29642 {normal=(0.392696 -0.413198 0.821619)} Corner 10820 29643 {normal=(0.392696 -0.413198 0.821619)} Corner 10847 29643 {normal=(0.38332 -0.417543 0.823847)} Corner 10847 29644 {normal=(0.38332 -0.417543 0.823847)} Corner 10941 29644 {normal=(0.495082 -0.400984 0.770782)} Corner 10941 29645 {normal=(0.665346 -0.707129 0.239338)} Corner 10941 29646 {normal=(0.665346 -0.707129 0.239338)} Corner 10847 29646 {normal=(0.605425 -0.769048 0.205)} Corner 10847 29647 {normal=(0.605425 -0.769048 0.205)} Corner 10754 29649 {normal=(-0.739461 0.640715 0.206596)} Corner 10708 29651 {normal=(-0.744862 0.57742 0.334316)} Corner 10708 29652 {normal=(-0.744862 0.57742 0.334316)} Corner 10754 29652 {normal=(-0.739461 0.640715 0.206596)} Corner 10517 29654 {normal=(0.311627 0.812697 0.492354)} Corner 10517 29655 {normal=(0.311627 0.812697 0.492354)} Corner 10475 29655 {normal=(0.353428 0.599416 0.718185)} Corner 10475 29656 {normal=(0.353428 0.599416 0.718185)} Corner 10571 29657 {normal=(0.585397 0.778199 0.227412)} Corner 10571 29658 {normal=(0.585397 0.778199 0.227412)} Corner 10521 29658 {normal=(0.221138 0.951092 0.215691)} Corner 10521 29659 {normal=(0.221138 0.951092 0.215691)} Corner 10517 29659 {normal=(0.311627 0.812697 0.492354)} Corner 10517 29660 {normal=(0.311627 0.812697 0.492354)} Corner 10615 29661 {normal=(0.884276 0.424236 0.195139)} Corner 10571 29661 {normal=(0.585397 0.778199 0.227412)} Corner 10571 29662 {normal=(0.585397 0.778199 0.227412)} Corner 10610 29663 {normal=(0.845334 0.388791 0.366403)} Corner 10610 29664 {normal=(0.845334 0.388791 0.366403)} Corner 10615 29664 {normal=(0.884276 0.424236 0.195139)} Corner 10504 29665 {normal=(-0.215872 0.975201 -0.0488078)} Corner 10507 29665 {normal=(0.0180682 0.989736 0.14176)} Corner 10507 29666 {normal=(0.0180682 0.989736 0.14176)} Corner 10517 29666 {normal=(0.825192 0.56053 0.069743)} Corner 10517 29667 {normal=(0.825192 0.56053 0.069743)} Corner 10521 29667 {normal=(0.825192 0.56053 0.069743)} Corner 10521 29668 {normal=(0.825192 0.56053 0.069743)} Corner 10504 29668 {normal=(-0.215872 0.975201 -0.0488078)} Corner 10361 29670 {normal=(-0.467724 0.879345 -0.0893707)} Corner 10361 29671 {normal=(-0.467724 0.879345 -0.0893707)} Corner 10598 29673 {normal=(0.70649 0.254476 0.660389)} Corner 10598 29674 {normal=(0.70649 0.254476 0.660389)} Corner 10610 29674 {normal=(0.845334 0.388791 0.366403)} Corner 10610 29675 {normal=(0.845334 0.388791 0.366403)} Corner 10465 29677 {normal=(0.482535 0.126193 0.866738)} Corner 10465 29678 {normal=(0.482535 0.126193 0.866738)} Corner 10538 29678 {normal=(0.503984 0.0582414 0.861747)} Corner 10538 29679 {normal=(0.503984 0.0582414 0.861747)} Corner 10598 29679 {normal=(0.70649 0.254476 0.660389)} Corner 10598 29680 {normal=(0.70649 0.254476 0.660389)} Corner 10507 29681 {normal=(0.306343 0.681929 0.664174)} Corner 10469 29681 {normal=(0.306343 0.681929 0.664174)} Corner 10469 29682 {normal=(0.306343 0.681929 0.664174)} Corner 10475 29682 {normal=(0.353428 0.599416 0.718185)} Corner 10475 29683 {normal=(0.353428 0.599416 0.718185)} Corner 10517 29683 {normal=(0.311627 0.812697 0.492354)} Corner 10517 29684 {normal=(0.311627 0.812697 0.492354)} Corner 10507 29684 {normal=(0.306343 0.681929 0.664174)} Corner 10538 29685 {normal=(0.503984 0.0582414 0.861747)} Corner 10465 29685 {normal=(0.482535 0.126193 0.866738)} Corner 10465 29686 {normal=(0.482535 0.126193 0.866738)} Corner 10386 29686 {normal=(0.378325 -0.0204845 0.925446)} Corner 10386 29687 {normal=(0.378325 -0.0204845 0.925446)} Corner 10456 29687 {normal=(0.379851 -0.0214517 0.924799)} Corner 10456 29688 {normal=(0.379851 -0.0214517 0.924799)} Corner 10538 29688 {normal=(0.503984 0.0582414 0.861747)} Corner 10538 29689 {normal=(0.817737 -0.432149 0.380202)} Corner 10538 29690 {normal=(0.817737 -0.432149 0.380202)} Corner 10456 29690 {normal=(0.686724 -0.598755 0.412192)} Corner 10456 29691 {normal=(0.686724 -0.598755 0.412192)} Corner 10475 29693 {normal=(-0.616061 0.772969 -0.151616)} Corner 10469 29693 {normal=(-0.633796 0.773171 0.0225567)} Corner 10469 29694 {normal=(-0.633796 0.773171 0.0225567)} Corner 10361 29695 {normal=(-0.467724 0.879345 -0.0893707)} Corner 10361 29696 {normal=(-0.467724 0.879345 -0.0893707)} Corner 10475 29696 {normal=(-0.616061 0.772969 -0.151616)} Corner 10465 29697 {normal=(-0.204437 0.580361 0.788281)} Corner 10475 29697 {normal=(-0.204437 0.580361 0.788281)} Corner 10475 29698 {normal=(-0.204437 0.580361 0.788281)} Corner 10361 29698 {normal=(-0.255843 0.596053 0.761095)} Corner 10361 29699 {normal=(-0.255843 0.596053 0.761095)} Corner 10386 29699 {normal=(-0.276196 0.601738 0.749418)} Corner 10386 29700 {normal=(-0.276196 0.601738 0.749418)} Corner 10465 29700 {normal=(-0.204437 0.580361 0.788281)} Corner 10361 29701 {normal=(-0.467724 0.879345 -0.0893707)} Corner 10252 29703 {normal=(-0.76728 0.640506 -0.0321523)} Corner 10252 29704 {normal=(-0.76728 0.640506 -0.0321523)} Corner 10361 29704 {normal=(-0.467724 0.879345 -0.0893707)} Corner 10386 29705 {normal=(-0.276196 0.601738 0.749418)} Corner 10361 29705 {normal=(-0.255843 0.596053 0.761095)} Corner 10361 29706 {normal=(-0.255843 0.596053 0.761095)} Corner 10252 29706 {normal=(-0.328779 0.570019 0.752982)} Corner 10252 29707 {normal=(-0.328779 0.570019 0.752982)} Corner 10294 29707 {normal=(-0.330214 0.562687 0.757853)} Corner 10294 29708 {normal=(-0.330214 0.562687 0.757853)} Corner 10386 29708 {normal=(-0.276196 0.601738 0.749418)} Corner 10456 29709 {normal=(0.379851 -0.0214517 0.924799)} Corner 10386 29709 {normal=(0.378325 -0.0204845 0.925446)} Corner 10386 29710 {normal=(0.378325 -0.0204845 0.925446)} Corner 10294 29710 {normal=(0.356261 -0.00658997 0.934363)} Corner 10294 29711 {normal=(0.356261 -0.00658997 0.934363)} Corner 10383 29711 {normal=(0.356261 -0.00658997 0.934363)} Corner 10383 29712 {normal=(0.356261 -0.00658997 0.934363)} Corner 10456 29712 {normal=(0.379851 -0.0214517 0.924799)} Corner 10456 29713 {normal=(0.686724 -0.598755 0.412192)} Corner 10456 29714 {normal=(0.686724 -0.598755 0.412192)} Corner 10383 29714 {normal=(0.592509 -0.68821 0.418689)} Corner 10383 29715 {normal=(0.592509 -0.68821 0.418689)} Corner 10411 29715 {normal=(0.591962 -0.795889 0.127051)} Corner 10411 29716 {normal=(0.591962 -0.795889 0.127051)} Corner 10294 29717 {normal=(-0.330214 0.562687 0.757853)} Corner 10252 29717 {normal=(-0.328779 0.570019 0.752982)} Corner 10252 29718 {normal=(-0.328779 0.570019 0.752982)} Corner 10225 29718 {normal=(-0.338001 0.519377 0.784858)} Corner 10225 29719 {normal=(-0.338001 0.519377 0.784858)} Corner 10288 29719 {normal=(-0.338001 0.519377 0.784858)} Corner 10288 29720 {normal=(-0.338001 0.519377 0.784858)} Corner 10294 29720 {normal=(-0.330214 0.562687 0.757853)} Corner 10411 29721 {normal=(-0.0415506 -0.97695 0.209385)} Corner 10383 29721 {normal=(-0.161243 -0.977678 0.134709)} Corner 10383 29722 {normal=(-0.161243 -0.977678 0.134709)} Corner 10373 29722 {normal=(-0.161243 -0.977678 0.134709)} Corner 10373 29723 {normal=(-0.161243 -0.977678 0.134709)} Corner 10391 29723 {normal=(-0.0401162 -0.976824 0.210251)} Corner 10391 29724 {normal=(-0.0401162 -0.976824 0.210251)} Corner 10411 29724 {normal=(-0.0415506 -0.97695 0.209385)} Corner 10252 29725 {normal=(-0.76728 0.640506 -0.0321523)} Corner 10220 29726 {normal=(-0.899983 0.435912 0.00329598)} Corner 10220 29727 {normal=(-0.899983 0.435912 0.00329598)} Corner 10225 29727 {normal=(-0.903478 0.426576 -0.0419504)} Corner 10225 29728 {normal=(-0.903478 0.426576 -0.0419504)} Corner 10252 29728 {normal=(-0.76728 0.640506 -0.0321523)} Corner 10391 29729 {normal=(0.363126 0.886933 -0.285464)} Corner 10373 29729 {normal=(0.360241 0.931656 -0.0473737)} Corner 10373 29730 {normal=(0.360241 0.931656 -0.0473737)} Corner 10395 29730 {normal=(0.252675 0.967326 0.0208632)} Corner 10395 29731 {normal=(0.252675 0.967326 0.0208632)} Corner 10391 29732 {normal=(0.363126 0.886933 -0.285464)} Corner 10225 29733 {normal=(-0.835613 -0.480955 0.265393)} Corner 10220 29733 {normal=(-0.839528 -0.49447 0.225148)} Corner 10220 29734 {normal=(-0.839528 -0.49447 0.225148)} Corner 10247 29735 {normal=(-0.780167 -0.574121 0.248445)} Corner 10247 29736 {normal=(-0.780167 -0.574121 0.248445)} Corner 10225 29736 {normal=(-0.835613 -0.480955 0.265393)} Corner 10288 29737 {normal=(-0.316705 -0.170923 0.932997)} Corner 10225 29737 {normal=(-0.316705 -0.170923 0.932997)} Corner 10225 29738 {normal=(-0.316705 -0.170923 0.932997)} Corner 10247 29738 {normal=(-0.36805 -0.183696 0.91148)} Corner 10247 29739 {normal=(-0.36805 -0.183696 0.91148)} Corner 10303 29739 {normal=(-0.379164 -0.186421 0.906356)} Corner 10303 29740 {normal=(-0.379164 -0.186421 0.906356)} Corner 10288 29740 {normal=(-0.316705 -0.170923 0.932997)} Corner 10373 29741 {normal=(0.347985 0.530535 0.772942)} Corner 10288 29741 {normal=(0.28492 0.368305 0.88497)} Corner 10288 29742 {normal=(0.28492 0.368305 0.88497)} Corner 10303 29742 {normal=(0.146659 0.552017 0.820834)} Corner 10303 29743 {normal=(0.146659 0.552017 0.820834)} Corner 10395 29743 {normal=(0.0951894 0.529757 0.842791)} Corner 10395 29744 {normal=(0.0951894 0.529757 0.842791)} Corner 10373 29744 {normal=(0.347985 0.530535 0.772942)} Corner 10247 29745 {normal=(-0.780167 -0.574121 0.248445)} Corner 10360 29747 {normal=(-0.61647 -0.763638 0.19189)} Corner 10360 29748 {normal=(-0.61647 -0.763638 0.19189)} Corner 10247 29748 {normal=(-0.780167 -0.574121 0.248445)} Corner 10303 29749 {normal=(-0.379164 -0.186421 0.906356)} Corner 10247 29749 {normal=(-0.36805 -0.183696 0.91148)} Corner 10247 29750 {normal=(-0.36805 -0.183696 0.91148)} Corner 10360 29750 {normal=(-0.384778 -0.245813 0.889675)} Corner 10360 29751 {normal=(-0.384778 -0.245813 0.889675)} Corner 10425 29751 {normal=(-0.385634 -0.244705 0.88961)} Corner 10425 29752 {normal=(-0.385634 -0.244705 0.88961)} Corner 10303 29752 {normal=(-0.379164 -0.186421 0.906356)} Corner 10395 29753 {normal=(0.0951894 0.529757 0.842791)} Corner 10303 29753 {normal=(0.146659 0.552017 0.820834)} Corner 10303 29754 {normal=(0.146659 0.552017 0.820834)} Corner 10425 29754 {normal=(0.182012 0.359537 0.915208)} Corner 10425 29755 {normal=(0.182012 0.359537 0.915208)} Corner 10502 29755 {normal=(0.135501 0.407122 0.903267)} Corner 10502 29756 {normal=(0.135501 0.407122 0.903267)} Corner 10395 29756 {normal=(0.0951894 0.529757 0.842791)} Corner 10395 29757 {normal=(0.252675 0.967326 0.0208632)} Corner 10395 29758 {normal=(0.252675 0.967326 0.0208632)} Corner 10502 29758 {normal=(0.159931 0.984098 0.077287)} Corner 10502 29759 {normal=(0.159931 0.984098 0.077287)} Corner 10529 29759 {normal=(0.308864 0.872203 -0.379295)} Corner 10529 29760 {normal=(0.308864 0.872203 -0.379295)} Corner 10502 29761 {normal=(0.135501 0.407122 0.903267)} Corner 10425 29761 {normal=(0.182012 0.359537 0.915208)} Corner 10425 29762 {normal=(0.182012 0.359537 0.915208)} Corner 10492 29762 {normal=(0.275376 0.256107 0.926595)} Corner 10492 29763 {normal=(0.275376 0.256107 0.926595)} Corner 10539 29763 {normal=(0.275376 0.256107 0.926594)} Corner 10539 29764 {normal=(0.275376 0.256107 0.926594)} Corner 10502 29764 {normal=(0.135501 0.407122 0.903267)} Corner 10529 29765 {normal=(0.605849 0.732058 0.311511)} Corner 10502 29765 {normal=(0.605849 0.732057 0.311511)} Corner 10502 29766 {normal=(0.605849 0.732057 0.311511)} Corner 10539 29766 {normal=(0.605849 0.732058 0.311511)} Corner 10539 29767 {normal=(0.605849 0.732058 0.311511)} Corner 10558 29767 {normal=(0.605849 0.732058 0.311511)} Corner 10558 29768 {normal=(0.605849 0.732058 0.311511)} Corner 10529 29768 {normal=(0.605849 0.732058 0.311511)} Corner 10360 29769 {normal=(-0.61647 -0.763638 0.19189)} Corner 10477 29770 {normal=(-0.53621 -0.825006 0.178448)} Corner 10477 29771 {normal=(-0.53621 -0.825006 0.178448)} Corner 10478 29771 {normal=(-0.539366 -0.826326 0.162079)} Corner 10478 29772 {normal=(-0.539366 -0.826326 0.162079)} Corner 10360 29772 {normal=(-0.61647 -0.763638 0.19189)} Corner 10425 29773 {normal=(-0.385634 -0.244705 0.88961)} Corner 10360 29773 {normal=(-0.384778 -0.245813 0.889675)} Corner 10360 29774 {normal=(-0.384778 -0.245813 0.889675)} Corner 10478 29774 {normal=(-0.344835 -0.295943 0.89079)} Corner 10478 29775 {normal=(-0.344835 -0.295943 0.89079)} Corner 10492 29775 {normal=(-0.344835 -0.295943 0.89079)} Corner 10492 29776 {normal=(-0.344835 -0.295943 0.89079)} Corner 10425 29776 {normal=(-0.385634 -0.244705 0.88961)} Corner 10478 29777 {normal=(0.574824 -0.813411 0.0891007)} Corner 10477 29777 {normal=(0.585121 -0.810672 -0.0210637)} Corner 10477 29778 {normal=(0.585121 -0.810672 -0.0210637)} Corner 10633 29779 {normal=(0.619189 -0.777548 0.109654)} Corner 10633 29780 {normal=(0.619189 -0.777548 0.109654)} Corner 10478 29780 {normal=(0.574824 -0.813411 0.0891007)} Corner 10492 29781 {normal=(0.305015 -0.521811 0.796667)} Corner 10478 29781 {normal=(0.305015 -0.521811 0.796668)} Corner 10478 29782 {normal=(0.305015 -0.521811 0.796668)} Corner 10633 29782 {normal=(0.379443 -0.458624 0.803546)} Corner 10633 29783 {normal=(0.379443 -0.458624 0.803546)} Corner 10605 29783 {normal=(0.397142 -0.442458 0.804058)} Corner 10605 29784 {normal=(0.397142 -0.442458 0.804058)} Corner 10492 29784 {normal=(0.305015 -0.521811 0.796667)} Corner 10539 29785 {normal=(-0.580706 0.285838 0.762284)} Corner 10492 29785 {normal=(-0.580706 0.285838 0.762284)} Corner 10492 29786 {normal=(-0.580706 0.285838 0.762284)} Corner 10605 29786 {normal=(-0.489935 0.310103 0.814739)} Corner 10605 29787 {normal=(-0.489935 0.310103 0.814739)} Corner 10608 29787 {normal=(-0.276901 0.349819 0.894959)} Corner 10608 29788 {normal=(-0.276901 0.349819 0.894959)} Corner 10539 29788 {normal=(-0.580706 0.285838 0.762284)} Corner 10558 29789 {normal=(-0.949859 0.283378 0.132152)} Corner 10539 29789 {normal=(-0.943845 0.310279 0.113502)} Corner 10539 29790 {normal=(-0.943845 0.310279 0.113502)} Corner 10608 29790 {normal=(-0.865988 0.457956 0.200852)} Corner 10608 29791 {normal=(-0.865988 0.457956 0.200852)} Corner 10558 29792 {normal=(-0.949859 0.283378 0.132152)} Corner 10847 29794 {normal=(0.605425 -0.769048 0.205)} Corner 10847 29795 {normal=(0.605425 -0.769048 0.205)} Corner 10633 29795 {normal=(0.619189 -0.777548 0.109654)} Corner 10633 29796 {normal=(0.619189 -0.777548 0.109654)} Corner 10608 29797 {normal=(-0.865988 0.457956 0.200852)} Corner 10608 29798 {normal=(-0.865988 0.457956 0.200852)} Corner 10708 29798 {normal=(-0.744862 0.57742 0.334316)} Corner 10708 29799 {normal=(-0.744862 0.57742 0.334316)} Corner 10605 29801 {normal=(0.397142 -0.442458 0.804058)} Corner 10633 29801 {normal=(0.379443 -0.458624 0.803546)} Corner 10633 29802 {normal=(0.379443 -0.458624 0.803546)} Corner 10847 29802 {normal=(0.38332 -0.417543 0.823847)} Corner 10847 29803 {normal=(0.38332 -0.417543 0.823847)} Corner 10820 29803 {normal=(0.392696 -0.413198 0.821619)} Corner 10820 29804 {normal=(0.392696 -0.413198 0.821619)} Corner 10605 29804 {normal=(0.397142 -0.442458 0.804058)} Corner 10608 29805 {normal=(-0.276901 0.349819 0.894959)} Corner 10605 29805 {normal=(-0.489935 0.310103 0.814739)} Corner 10605 29806 {normal=(-0.489935 0.310103 0.814739)} Corner 10820 29806 {normal=(-0.25331 0.313929 0.915031)} Corner 10820 29807 {normal=(-0.25331 0.313929 0.915031)} Corner 10708 29807 {normal=(-0.23385 0.330952 0.914213)} Corner 10708 29808 {normal=(-0.23385 0.330952 0.914213)} Corner 10608 29808 {normal=(-0.276901 0.349819 0.894959)} Corner 10679 29809 {normal=(0.569861 -0.27483 0.77442)} Corner 10590 29809 {normal=(0.57394 -0.278022 0.770258)} Corner 10590 29810 {normal=(0.57394 -0.278022 0.770258)} Corner 10420 29810 {normal=(0.611159 -0.293753 0.734979)} Corner 10420 29811 {normal=(0.611159 -0.293753 0.734979)} Corner 10488 29811 {normal=(0.622132 -0.299354 0.723421)} Corner 10488 29812 {normal=(0.622132 -0.299354 0.723421)} Corner 10679 29812 {normal=(0.569861 -0.27483 0.77442)} Corner 10590 29813 {normal=(-0.0663101 0.21694 0.97393)} Corner 10420 29815 {normal=(0.0355996 0.218174 0.97526)} Corner 10420 29816 {normal=(0.0355996 0.218174 0.97526)} Corner 10590 29816 {normal=(-0.0663101 0.21694 0.97393)} Corner 10350 29817 {normal=(-0.0785193 0.186648 0.979284)} Corner 10350 29818 {normal=(-0.0785193 0.186648 0.979284)} Corner 10291 29818 {normal=(-0.137761 0.336669 0.931491)} Corner 10291 29819 {normal=(-0.137761 0.336669 0.931491)} Corner 10350 29821 {normal=(-0.799383 0.367095 0.475635)} Corner 10275 29821 {normal=(-0.798066 0.375326 0.471404)} Corner 10275 29822 {normal=(-0.798066 0.375326 0.471404)} Corner 10245 29822 {normal=(-0.754175 0.506555 0.417878)} Corner 10245 29823 {normal=(-0.754175 0.506555 0.417878)} Corner 10291 29823 {normal=(-0.756655 0.500766 0.420364)} Corner 10291 29824 {normal=(-0.756655 0.500766 0.420364)} Corner 10350 29824 {normal=(-0.799383 0.367095 0.475635)} Corner 10275 29825 {normal=(-0.860032 0.255452 -0.441689)} Corner 10320 29825 {normal=(-0.860032 0.255452 -0.441688)} Corner 10320 29826 {normal=(-0.860032 0.255452 -0.441688)} Corner 10262 29826 {normal=(-0.833215 0.361621 -0.418311)} Corner 10262 29827 {normal=(-0.833215 0.361621 -0.418311)} Corner 10245 29827 {normal=(-0.835031 0.355668 -0.41979)} Corner 10245 29828 {normal=(-0.835031 0.355668 -0.41979)} Corner 10275 29828 {normal=(-0.860032 0.255452 -0.441689)} Corner 10320 29829 {normal=(-0.289116 0.0549553 -0.955715)} Corner 10400 29829 {normal=(-0.289116 0.0549553 -0.955715)} Corner 10400 29830 {normal=(-0.289116 0.0549553 -0.955715)} Corner 10345 29830 {normal=(-0.370481 -0.130488 -0.919629)} Corner 10345 29831 {normal=(-0.370481 -0.130488 -0.919629)} Corner 10262 29831 {normal=(-0.387884 -0.174703 -0.905)} Corner 10262 29832 {normal=(-0.387884 -0.174703 -0.905)} Corner 10320 29832 {normal=(-0.289116 0.0549553 -0.955715)} Corner 10400 29833 {normal=(0.441718 -0.44207 -0.780679)} Corner 10546 29833 {normal=(0.441718 -0.44207 -0.780679)} Corner 10546 29834 {normal=(0.441718 -0.44207 -0.780679)} Corner 10452 29834 {normal=(0.32119 -0.53098 -0.784154)} Corner 10452 29835 {normal=(0.32119 -0.53098 -0.784154)} Corner 10345 29835 {normal=(0.326144 -0.527656 -0.784353)} Corner 10345 29836 {normal=(0.326144 -0.527656 -0.784353)} Corner 10400 29836 {normal=(0.441718 -0.44207 -0.780679)} Corner 10546 29837 {normal=(0.757805 -0.644223 -0.103477)} Corner 10679 29837 {normal=(0.772941 -0.620338 -0.133199)} Corner 10679 29838 {normal=(0.772941 -0.620338 -0.133199)} Corner 10488 29838 {normal=(0.763705 -0.64546 -0.0116777)} Corner 10488 29839 {normal=(0.763705 -0.64546 -0.0116777)} Corner 10452 29839 {normal=(0.771774 -0.635754 -0.0134939)} Corner 10452 29840 {normal=(0.771774 -0.635754 -0.0134939)} Corner 10546 29840 {normal=(0.757805 -0.644223 -0.103477)} Corner 10574 29841 {normal=(-0.0500298 -0.731478 -0.680027)} Corner 10374 29841 {normal=(-0.141183 -0.584522 -0.799)} Corner 10374 29842 {normal=(-0.141183 -0.584522 -0.799)} Corner 10419 29842 {normal=(-0.174741 -0.491134 -0.853377)} Corner 10419 29843 {normal=(-0.174741 -0.491134 -0.853377)} Corner 10636 29843 {normal=(0.00877815 -0.60464 -0.79645)} Corner 10636 29844 {normal=(0.00877815 -0.60464 -0.79645)} Corner 10574 29844 {normal=(-0.0500298 -0.731478 -0.680027)} Corner 10742 29845 {normal=(0.703838 -0.704496 -0.0910865)} Corner 10574 29845 {normal=(0.69379 -0.715606 -0.0810128)} Corner 10574 29846 {normal=(0.69379 -0.715606 -0.0810128)} Corner 10636 29846 {normal=(0.573438 -0.818795 0.0272617)} Corner 10636 29847 {normal=(0.573438 -0.818795 0.0272617)} Corner 10798 29847 {normal=(0.573438 -0.818795 0.0272617)} Corner 10798 29848 {normal=(0.573438 -0.818795 0.0272617)} Corner 10742 29848 {normal=(0.703838 -0.704496 -0.0910865)} Corner 10740 29849 {normal=(0.751555 0.317275 0.578361)} Corner 10742 29849 {normal=(0.929315 -0.0814586 0.360192)} Corner 10742 29850 {normal=(0.929315 -0.0814586 0.360192)} Corner 10798 29850 {normal=(0.764816 -0.0218669 0.643878)} Corner 10798 29851 {normal=(0.764816 -0.0218669 0.643878)} Corner 10740 29852 {normal=(0.751555 0.317275 0.578361)} Corner 10588 29853 {normal=(0.301634 0.602737 0.738732)} Corner 10740 29853 {normal=(0.751555 0.317275 0.578361)} Corner 10740 29854 {normal=(0.751555 0.317275 0.578361)} Corner 10588 29856 {normal=(0.301634 0.602737 0.738732)} Corner 10590 29857 {normal=(0.57394 -0.278022 0.770258)} Corner 10679 29857 {normal=(0.569861 -0.27483 0.77442)} Corner 10679 29858 {normal=(0.569861 -0.27483 0.77442)} Corner 10742 29858 {normal=(0.581295 -0.283795 0.762598)} Corner 10742 29859 {normal=(0.581295 -0.283795 0.762598)} Corner 10740 29859 {normal=(0.581295 -0.283795 0.762598)} Corner 10740 29860 {normal=(0.581295 -0.283795 0.762598)} Corner 10590 29860 {normal=(0.57394 -0.278022 0.770258)} Corner 10590 29861 {normal=(-0.0663101 0.21694 0.97393)} Corner 10590 29862 {normal=(-0.0663101 0.21694 0.97393)} Corner 10740 29862 {normal=(-0.0875934 0.128379 0.987849)} Corner 10740 29863 {normal=(-0.0875934 0.128379 0.987849)} Corner 10588 29863 {normal=(-0.091199 0.101705 0.990626)} Corner 10588 29864 {normal=(-0.091199 0.101705 0.990626)} Corner 10546 29865 {normal=(-0.0992823 -0.821214 -0.561916)} Corner 10400 29865 {normal=(-0.0992823 -0.821214 -0.561916)} Corner 10400 29866 {normal=(-0.0992823 -0.821214 -0.561916)} Corner 10374 29866 {normal=(-0.141183 -0.584522 -0.799)} Corner 10374 29867 {normal=(-0.141183 -0.584522 -0.799)} Corner 10574 29867 {normal=(-0.0500298 -0.731478 -0.680027)} Corner 10574 29868 {normal=(-0.0500298 -0.731478 -0.680027)} Corner 10546 29868 {normal=(-0.0992823 -0.821214 -0.561916)} Corner 10679 29869 {normal=(0.772941 -0.620338 -0.133199)} Corner 10546 29869 {normal=(0.757805 -0.644223 -0.103477)} Corner 10546 29870 {normal=(0.757805 -0.644223 -0.103477)} Corner 10574 29870 {normal=(0.69379 -0.715606 -0.0810128)} Corner 10574 29871 {normal=(0.69379 -0.715606 -0.0810128)} Corner 10742 29871 {normal=(0.703838 -0.704496 -0.0910865)} Corner 10742 29872 {normal=(0.703838 -0.704496 -0.0910865)} Corner 10679 29872 {normal=(0.772941 -0.620338 -0.133199)} Corner 10359 29873 {normal=(0.188315 -0.610736 -0.769116)} Corner 10297 29873 {normal=(0.188315 -0.610736 -0.769116)} Corner 10297 29874 {normal=(0.188315 -0.610736 -0.769116)} Corner 10345 29874 {normal=(0.326144 -0.527656 -0.784353)} Corner 10345 29875 {normal=(0.326144 -0.527656 -0.784353)} Corner 10452 29875 {normal=(0.32119 -0.53098 -0.784154)} Corner 10452 29876 {normal=(0.32119 -0.53098 -0.784154)} Corner 10359 29876 {normal=(0.188315 -0.610736 -0.769116)} Corner 10346 29877 {normal=(0.886219 -0.463015 -0.0152686)} Corner 10359 29877 {normal=(0.901492 -0.432667 -0.0105772)} Corner 10359 29878 {normal=(0.901492 -0.432667 -0.0105772)} Corner 10452 29878 {normal=(0.771774 -0.635754 -0.0134939)} Corner 10452 29879 {normal=(0.771774 -0.635754 -0.0134939)} Corner 10488 29879 {normal=(0.763705 -0.64546 -0.0116777)} Corner 10488 29880 {normal=(0.763705 -0.64546 -0.0116777)} Corner 10346 29880 {normal=(0.886219 -0.463015 -0.0152686)} Corner 10313 29881 {normal=(0.670781 -0.324256 0.667016)} Corner 10346 29881 {normal=(0.670781 -0.324256 0.667016)} Corner 10346 29882 {normal=(0.670781 -0.324256 0.667016)} Corner 10488 29882 {normal=(0.622132 -0.299354 0.723421)} Corner 10488 29883 {normal=(0.622132 -0.299354 0.723421)} Corner 10420 29883 {normal=(0.611159 -0.293753 0.734979)} Corner 10420 29884 {normal=(0.611159 -0.293753 0.734979)} Corner 10313 29884 {normal=(0.670781 -0.324256 0.667016)} Corner 10272 29885 {normal=(-0.0394262 0.250393 0.967341)} Corner 10313 29885 {normal=(0.104646 0.139044 0.984742)} Corner 10313 29886 {normal=(0.104646 0.139044 0.984742)} Corner 10420 29886 {normal=(0.0355996 0.218174 0.97526)} Corner 10420 29887 {normal=(0.0355996 0.218174 0.97526)} Corner 10272 29888 {normal=(-0.0394262 0.250393 0.967341)} Corner 10330 29889 {normal=(0.923528 -0.38175 -0.0369172)} Corner 10354 29889 {normal=(0.909363 -0.411369 -0.0619206)} Corner 10354 29890 {normal=(0.909363 -0.411369 -0.0619206)} Corner 10359 29890 {normal=(0.901492 -0.432667 -0.0105772)} Corner 10359 29891 {normal=(0.901492 -0.432667 -0.0105772)} Corner 10346 29891 {normal=(0.886219 -0.463015 -0.0152686)} Corner 10346 29892 {normal=(0.886219 -0.463015 -0.0152686)} Corner 10330 29892 {normal=(0.923528 -0.38175 -0.0369172)} Corner 10276 29893 {normal=(0.343289 -0.774468 0.531368)} Corner 10330 29893 {normal=(0.352334 -0.789624 0.502349)} Corner 10330 29894 {normal=(0.352334 -0.789624 0.502349)} Corner 10346 29894 {normal=(0.323916 -0.74131 0.587825)} Corner 10346 29895 {normal=(0.323916 -0.74131 0.587825)} Corner 10313 29895 {normal=(0.323916 -0.74131 0.587825)} Corner 10313 29896 {normal=(0.323916 -0.74131 0.587825)} Corner 10276 29896 {normal=(0.343289 -0.774468 0.531368)} Corner 10276 29897 {normal=(-0.404683 -0.534748 0.741806)} Corner 10276 29898 {normal=(-0.404683 -0.534748 0.741806)} Corner 10313 29898 {normal=(-0.362274 -0.435406 0.824123)} Corner 10313 29899 {normal=(-0.362274 -0.435406 0.824123)} Corner 10272 29899 {normal=(-0.433702 -0.366649 0.823087)} Corner 10272 29900 {normal=(-0.433702 -0.366649 0.823087)} Corner 10354 29901 {normal=(0.829053 0.395165 -0.395622)} Corner 10297 29902 {normal=(0.617984 0.737613 -0.272072)} Corner 10297 29903 {normal=(0.617984 0.737613 -0.272072)} Corner 10359 29903 {normal=(0.8433 0.506676 -0.179235)} Corner 10359 29904 {normal=(0.8433 0.506676 -0.179235)} Corner 10354 29904 {normal=(0.829053 0.395165 -0.395622)} Corner 10237 29905 {normal=(-0.430425 -0.630958 0.645466)} Corner 10237 29906 {normal=(-0.430425 -0.630958 0.645466)} Corner 10276 29906 {normal=(-0.404683 -0.534748 0.741806)} Corner 10276 29907 {normal=(-0.404683 -0.534748 0.741806)} Corner 10329 29909 {normal=(0.725911 0.189818 -0.661077)} Corner 10354 29911 {normal=(0.829053 0.395165 -0.395622)} Corner 10354 29912 {normal=(0.829053 0.395165 -0.395622)} Corner 10329 29912 {normal=(0.725911 0.189818 -0.661077)} Corner 10302 29913 {normal=(0.878266 -0.456918 -0.140975)} Corner 10329 29913 {normal=(0.876627 -0.457981 -0.147576)} Corner 10329 29914 {normal=(0.876627 -0.457981 -0.147576)} Corner 10354 29914 {normal=(0.909363 -0.411369 -0.0619206)} Corner 10354 29915 {normal=(0.909363 -0.411369 -0.0619206)} Corner 10330 29915 {normal=(0.923528 -0.38175 -0.0369172)} Corner 10330 29916 {normal=(0.923528 -0.38175 -0.0369172)} Corner 10302 29916 {normal=(0.878266 -0.456918 -0.140975)} Corner 10237 29917 {normal=(0.350217 -0.817063 0.457992)} Corner 10302 29917 {normal=(0.350959 -0.816927 0.457667)} Corner 10302 29918 {normal=(0.350959 -0.816927 0.457667)} Corner 10330 29918 {normal=(0.352334 -0.789624 0.502349)} Corner 10330 29919 {normal=(0.352334 -0.789624 0.502349)} Corner 10276 29919 {normal=(0.343289 -0.774468 0.531368)} Corner 10276 29920 {normal=(0.343289 -0.774468 0.531368)} Corner 10237 29920 {normal=(0.350217 -0.817063 0.457992)} Corner 10286 29921 {normal=(0.622154 0.0979449 -0.776744)} Corner 10329 29923 {normal=(0.725911 0.189818 -0.661077)} Corner 10329 29924 {normal=(0.725911 0.189818 -0.661077)} Corner 10286 29924 {normal=(0.622154 0.0979449 -0.776744)} Corner 10267 29925 {normal=(0.859108 -0.455752 -0.232862)} Corner 10286 29925 {normal=(0.859197 -0.455922 -0.232199)} Corner 10286 29926 {normal=(0.859197 -0.455922 -0.232199)} Corner 10329 29926 {normal=(0.876627 -0.457981 -0.147576)} Corner 10329 29927 {normal=(0.876627 -0.457981 -0.147576)} Corner 10302 29927 {normal=(0.878266 -0.456918 -0.140975)} Corner 10302 29928 {normal=(0.878266 -0.456918 -0.140975)} Corner 10267 29928 {normal=(0.859108 -0.455752 -0.232862)} Corner 10221 29929 {normal=(0.396064 -0.806546 0.438882)} Corner 10267 29929 {normal=(0.383671 -0.809546 0.444334)} Corner 10267 29930 {normal=(0.383671 -0.809546 0.444334)} Corner 10302 29930 {normal=(0.350959 -0.816927 0.457667)} Corner 10302 29931 {normal=(0.350959 -0.816927 0.457667)} Corner 10237 29931 {normal=(0.350217 -0.817063 0.457992)} Corner 10237 29932 {normal=(0.350217 -0.817063 0.457992)} Corner 10221 29932 {normal=(0.396064 -0.806546 0.438882)} Corner 10221 29933 {normal=(-0.340264 -0.661208 0.668598)} Corner 10221 29934 {normal=(-0.340264 -0.661208 0.668598)} Corner 10237 29934 {normal=(-0.430425 -0.630958 0.645466)} Corner 10237 29935 {normal=(-0.430425 -0.630958 0.645466)} Corner 10206 29937 {normal=(0.452853 -0.790504 0.412344)} Corner 10234 29937 {normal=(0.452853 -0.790504 0.412344)} Corner 10234 29938 {normal=(0.452853 -0.790504 0.412344)} Corner 10267 29938 {normal=(0.383671 -0.809546 0.444334)} Corner 10267 29939 {normal=(0.383671 -0.809546 0.444334)} Corner 10221 29939 {normal=(0.396064 -0.806546 0.438882)} Corner 10221 29940 {normal=(0.396064 -0.806546 0.438882)} Corner 10206 29940 {normal=(0.452853 -0.790504 0.412344)} Corner 10200 29941 {normal=(-0.115577 -0.688396 0.716068)} Corner 10206 29941 {normal=(-0.0177075 -0.74342 0.668591)} Corner 10206 29942 {normal=(-0.0177075 -0.74342 0.668591)} Corner 10221 29942 {normal=(-0.340264 -0.661208 0.668598)} Corner 10221 29943 {normal=(-0.340264 -0.661208 0.668598)} Corner 10200 29944 {normal=(-0.115577 -0.688396 0.716068)} Corner 10239 29945 {normal=(0.524392 0.0657163 -0.848937)} Corner 10286 29947 {normal=(0.622154 0.0979449 -0.776744)} Corner 10286 29948 {normal=(0.622154 0.0979449 -0.776744)} Corner 10239 29948 {normal=(0.524392 0.0657163 -0.848937)} Corner 10234 29949 {normal=(0.747701 -0.57958 -0.324082)} Corner 10239 29949 {normal=(0.782254 -0.508042 -0.360518)} Corner 10239 29950 {normal=(0.782254 -0.508042 -0.360518)} Corner 10286 29950 {normal=(0.859197 -0.455922 -0.232199)} Corner 10286 29951 {normal=(0.859197 -0.455922 -0.232199)} Corner 10267 29951 {normal=(0.859108 -0.455752 -0.232862)} Corner 10267 29952 {normal=(0.859108 -0.455752 -0.232862)} Corner 10234 29952 {normal=(0.747701 -0.57958 -0.324082)} Corner 10200 29953 {normal=(0.226332 -0.971761 0.0667479)} Corner 10168 29953 {normal=(-0.10559 -0.994285 0.0157786)} Corner 10168 29954 {normal=(-0.10559 -0.994285 0.0157786)} Corner 10206 29955 {normal=(0.385009 -0.918713 -0.0879471)} Corner 10206 29956 {normal=(0.385009 -0.918713 -0.0879471)} Corner 10200 29956 {normal=(0.226332 -0.971761 0.0667479)} Corner 10234 29957 {normal=(0.747701 -0.57958 -0.324082)} Corner 10212 29958 {normal=(0.513615 -0.625231 -0.587611)} Corner 10212 29959 {normal=(0.513615 -0.625231 -0.587611)} Corner 10239 29959 {normal=(0.782254 -0.508042 -0.360518)} Corner 10239 29960 {normal=(0.782254 -0.508042 -0.360518)} Corner 10234 29960 {normal=(0.747701 -0.57958 -0.324082)} Corner 10212 29961 {normal=(0.513615 -0.625231 -0.587611)} Corner 10194 29963 {normal=(0.190161 -0.637761 -0.746391)} Corner 10194 29964 {normal=(0.190161 -0.637761 -0.746391)} Corner 10212 29964 {normal=(0.513615 -0.625231 -0.587611)} Corner 10221 29967 {normal=(-0.340264 -0.661208 0.668598)} Corner 10221 29968 {normal=(-0.340264 -0.661208 0.668598)} Corner 10168 29969 {normal=(-0.10559 -0.994285 0.0157786)} Corner 10143 29969 {normal=(-0.60651 -0.793116 -0.0557965)} Corner 10143 29970 {normal=(-0.60651 -0.793116 -0.0557965)} Corner 10168 29972 {normal=(-0.10559 -0.994285 0.0157786)} Corner 10166 29973 {normal=(-0.220274 -0.465999 -0.856927)} Corner 10166 29974 {normal=(-0.220274 -0.465999 -0.856927)} Corner 10194 29974 {normal=(0.190161 -0.637761 -0.746391)} Corner 10194 29975 {normal=(0.190161 -0.637761 -0.746391)} Corner 10206 29982 {normal=(0.385009 -0.918713 -0.0879471)} Corner 10206 29983 {normal=(0.385009 -0.918713 -0.0879471)} Corner 10112 29987 {normal=(-0.960975 0.122341 -0.248112)} Corner 10112 29988 {normal=(-0.960975 0.122341 -0.248112)} Corner 10166 29993 {normal=(-0.220274 -0.465999 -0.856927)} Corner 10154 29995 {normal=(-0.581974 -0.0774953 -0.809507)} Corner 10154 29996 {normal=(-0.581974 -0.0774953 -0.809507)} Corner 10166 29996 {normal=(-0.220274 -0.465999 -0.856927)} Corner 10143 29997 {normal=(-0.60651 -0.793116 -0.0557965)} Corner 10116 29997 {normal=(-0.930337 -0.357819 -0.0802428)} Corner 10116 29998 {normal=(-0.930337 -0.357819 -0.0802428)} Corner 10143 30000 {normal=(-0.60651 -0.793116 -0.0557965)} Corner 10144 30002 {normal=(-0.651254 -0.425907 0.62807)} Corner 10144 30003 {normal=(-0.651254 -0.425907 0.62807)} Corner 10153 30005 {normal=(-0.65747 0.28629 -0.696973)} Corner 10153 30006 {normal=(-0.65747 0.28629 -0.696973)} Corner 10154 30006 {normal=(-0.581974 -0.0774953 -0.809507)} Corner 10154 30007 {normal=(-0.581974 -0.0774953 -0.809507)} Corner 10126 30009 {normal=(-0.691685 0.524949 -0.495985)} Corner 10126 30010 {normal=(-0.691685 0.524949 -0.495985)} Corner 10162 30010 {normal=(-0.625805 0.5726 -0.52962)} Corner 10162 30011 {normal=(-0.625805 0.5726 -0.52962)} Corner 10153 30011 {normal=(-0.65747 0.28629 -0.696973)} Corner 10153 30012 {normal=(-0.65747 0.28629 -0.696973)} Corner 10116 30013 {normal=(-0.930337 -0.357819 -0.0802428)} Corner 10117 30013 {normal=(-0.996456 -0.0292221 -0.0788793)} Corner 10117 30014 {normal=(-0.996456 -0.0292221 -0.0788793)} Corner 10112 30014 {normal=(-0.960975 0.122341 -0.248112)} Corner 10112 30015 {normal=(-0.960975 0.122341 -0.248112)} Corner 10116 30016 {normal=(-0.930337 -0.357819 -0.0802428)} Corner 10162 30017 {normal=(-0.625805 0.5726 -0.52962)} Corner 10126 30017 {normal=(-0.691685 0.524949 -0.495985)} Corner 10126 30018 {normal=(-0.691685 0.524949 -0.495985)} Corner 10145 30018 {normal=(-0.611443 0.674489 -0.413766)} Corner 10145 30019 {normal=(-0.611443 0.674489 -0.413766)} Corner 10191 30019 {normal=(-0.611587 0.674639 -0.413309)} Corner 10191 30020 {normal=(-0.611587 0.674639 -0.413309)} Corner 10162 30020 {normal=(-0.625805 0.5726 -0.52962)} Corner 10162 30021 {normal=(0.0558444 0.414684 -0.90825)} Corner 10162 30022 {normal=(0.0558444 0.414684 -0.90825)} Corner 10191 30022 {normal=(0.064604 0.530597 -0.845159)} Corner 10191 30023 {normal=(0.064604 0.530597 -0.845159)} Corner 10112 30025 {normal=(-0.804729 -0.141515 0.576529)} Corner 10117 30025 {normal=(-0.67049 -0.284033 0.685396)} Corner 10117 30026 {normal=(-0.67049 -0.284033 0.685396)} Corner 10144 30027 {normal=(-0.651254 -0.425907 0.62807)} Corner 10144 30028 {normal=(-0.651254 -0.425907 0.62807)} Corner 10112 30028 {normal=(-0.804729 -0.141515 0.576529)} Corner 10126 30029 {normal=(-0.929926 0.275767 0.243292)} Corner 10112 30029 {normal=(-0.929926 0.275767 0.243292)} Corner 10112 30030 {normal=(-0.929926 0.275767 0.243292)} Corner 10144 30030 {normal=(-0.939019 0.220205 0.264108)} Corner 10144 30031 {normal=(-0.939019 0.220205 0.264108)} Corner 10145 30031 {normal=(-0.940677 0.20693 0.268899)} Corner 10145 30032 {normal=(-0.940677 0.20693 0.268899)} Corner 10126 30032 {normal=(-0.929926 0.275767 0.243292)} Corner 10144 30033 {normal=(-0.651254 -0.425907 0.62807)} Corner 10164 30035 {normal=(-0.595255 -0.507334 0.623124)} Corner 10164 30036 {normal=(-0.595255 -0.507334 0.623124)} Corner 10144 30036 {normal=(-0.651254 -0.425907 0.62807)} Corner 10145 30037 {normal=(-0.940677 0.20693 0.268899)} Corner 10144 30037 {normal=(-0.939019 0.220205 0.264108)} Corner 10144 30038 {normal=(-0.939019 0.220205 0.264108)} Corner 10164 30038 {normal=(-0.947531 0.178908 0.264911)} Corner 10164 30039 {normal=(-0.947531 0.178908 0.264911)} Corner 10159 30039 {normal=(-0.947673 0.180409 0.263378)} Corner 10159 30040 {normal=(-0.947673 0.180409 0.263378)} Corner 10145 30040 {normal=(-0.940677 0.20693 0.268899)} Corner 10191 30041 {normal=(-0.611587 0.674639 -0.413309)} Corner 10145 30041 {normal=(-0.611443 0.674489 -0.413766)} Corner 10145 30042 {normal=(-0.611443 0.674489 -0.413766)} Corner 10159 30042 {normal=(-0.620702 0.706457 -0.340069)} Corner 10159 30043 {normal=(-0.620702 0.706457 -0.340069)} Corner 10213 30043 {normal=(-0.620875 0.703585 -0.345663)} Corner 10213 30044 {normal=(-0.620875 0.703585 -0.345663)} Corner 10191 30044 {normal=(-0.611587 0.674639 -0.413309)} Corner 10191 30045 {normal=(0.064604 0.530597 -0.845159)} Corner 10191 30046 {normal=(0.064604 0.530597 -0.845159)} Corner 10213 30046 {normal=(0.106881 0.67609 -0.729026)} Corner 10213 30047 {normal=(0.106881 0.67609 -0.729026)} Corner 10159 30049 {normal=(-0.947673 0.180409 0.263378)} Corner 10164 30049 {normal=(-0.947531 0.178908 0.264911)} Corner 10164 30050 {normal=(-0.947531 0.178908 0.264911)} Corner 10177 30050 {normal=(-0.929125 0.207302 0.306191)} Corner 10177 30051 {normal=(-0.929125 0.207302 0.306191)} Corner 10176 30051 {normal=(-0.935025 0.205428 0.289011)} Corner 10176 30052 {normal=(-0.935025 0.205428 0.289011)} Corner 10159 30052 {normal=(-0.947673 0.180409 0.263378)} Corner 10213 30053 {normal=(-0.620875 0.703585 -0.345663)} Corner 10159 30053 {normal=(-0.620702 0.706457 -0.340069)} Corner 10159 30054 {normal=(-0.620702 0.706457 -0.340069)} Corner 10176 30054 {normal=(-0.613622 0.728043 -0.305649)} Corner 10176 30055 {normal=(-0.613622 0.728043 -0.305649)} Corner 10218 30055 {normal=(-0.615678 0.726402 -0.305418)} Corner 10218 30056 {normal=(-0.615678 0.726402 -0.305418)} Corner 10213 30056 {normal=(-0.620875 0.703585 -0.345663)} Corner 10213 30057 {normal=(0.106881 0.67609 -0.729026)} Corner 10213 30058 {normal=(0.106881 0.67609 -0.729026)} Corner 10218 30058 {normal=(0.234805 0.829836 -0.506201)} Corner 10218 30059 {normal=(0.234805 0.829836 -0.506201)} Corner 10164 30061 {normal=(-0.595255 -0.507334 0.623124)} Corner 10177 30063 {normal=(-0.541021 -0.406908 0.736018)} Corner 10177 30064 {normal=(-0.541021 -0.406908 0.736018)} Corner 10164 30064 {normal=(-0.595255 -0.507334 0.623124)} Corner 10218 30065 {normal=(0.234805 0.829836 -0.506201)} Corner 10218 30066 {normal=(0.234805 0.829836 -0.506201)} Corner 10222 30066 {normal=(0.313988 0.888183 -0.335473)} Corner 10222 30067 {normal=(0.313988 0.888183 -0.335473)} Corner 10297 30067 {normal=(0.617984 0.737613 -0.272072)} Corner 10297 30068 {normal=(0.617984 0.737613 -0.272072)} Corner 10177 30069 {normal=(-0.541021 -0.406908 0.736018)} Corner 10272 30070 {normal=(-0.433702 -0.366649 0.823087)} Corner 10272 30071 {normal=(-0.433702 -0.366649 0.823087)} Corner 10219 30071 {normal=(-0.494566 -0.301434 0.815194)} Corner 10219 30072 {normal=(-0.494566 -0.301434 0.815194)} Corner 10177 30072 {normal=(-0.541021 -0.406908 0.736018)} Corner 10176 30073 {normal=(-0.935025 0.205428 0.289011)} Corner 10177 30073 {normal=(-0.929125 0.207302 0.306191)} Corner 10177 30074 {normal=(-0.929125 0.207302 0.306191)} Corner 10219 30074 {normal=(-0.782873 0.498596 0.372173)} Corner 10219 30075 {normal=(-0.782873 0.498596 0.372173)} Corner 10197 30075 {normal=(-0.853145 0.368685 0.369073)} Corner 10197 30076 {normal=(-0.853145 0.368685 0.369073)} Corner 10176 30076 {normal=(-0.935025 0.205428 0.289011)} Corner 10218 30077 {normal=(-0.615678 0.726402 -0.305418)} Corner 10176 30077 {normal=(-0.613622 0.728043 -0.305649)} Corner 10176 30078 {normal=(-0.613622 0.728043 -0.305649)} Corner 10197 30078 {normal=(-0.71896 0.597288 -0.355449)} Corner 10197 30079 {normal=(-0.71896 0.597288 -0.355449)} Corner 10222 30079 {normal=(-0.710938 0.608896 -0.35187)} Corner 10222 30080 {normal=(-0.710938 0.608896 -0.35187)} Corner 10218 30080 {normal=(-0.615678 0.726402 -0.305418)} Corner 10219 30081 {normal=(-0.204073 0.368481 0.90696)} Corner 10272 30081 {normal=(-0.0394262 0.250393 0.967341)} Corner 10272 30082 {normal=(-0.0394262 0.250393 0.967341)} Corner 10291 30083 {normal=(-0.137761 0.336669 0.931491)} Corner 10291 30084 {normal=(-0.137761 0.336669 0.931491)} Corner 10219 30084 {normal=(-0.204073 0.368481 0.90696)} Corner 10197 30085 {normal=(-0.853145 0.368685 0.369073)} Corner 10219 30085 {normal=(-0.782873 0.498596 0.372173)} Corner 10219 30086 {normal=(-0.782873 0.498596 0.372173)} Corner 10291 30086 {normal=(-0.756655 0.500766 0.420364)} Corner 10291 30087 {normal=(-0.756655 0.500766 0.420364)} Corner 10245 30087 {normal=(-0.754175 0.506555 0.417878)} Corner 10245 30088 {normal=(-0.754175 0.506555 0.417878)} Corner 10197 30088 {normal=(-0.853145 0.368685 0.369073)} Corner 10222 30089 {normal=(-0.710938 0.608896 -0.35187)} Corner 10197 30089 {normal=(-0.71896 0.597288 -0.355449)} Corner 10197 30090 {normal=(-0.71896 0.597288 -0.355449)} Corner 10245 30090 {normal=(-0.835031 0.355668 -0.41979)} Corner 10245 30091 {normal=(-0.835031 0.355668 -0.41979)} Corner 10262 30091 {normal=(-0.833215 0.361621 -0.418311)} Corner 10262 30092 {normal=(-0.833215 0.361621 -0.418311)} Corner 10222 30092 {normal=(-0.710938 0.608896 -0.35187)} Corner 10297 30093 {normal=(-0.449911 -0.353984 -0.819924)} Corner 10222 30093 {normal=(-0.449911 -0.353984 -0.819924)} Corner 10222 30094 {normal=(-0.449911 -0.353984 -0.819924)} Corner 10262 30094 {normal=(-0.387884 -0.174703 -0.905)} Corner 10262 30095 {normal=(-0.387884 -0.174703 -0.905)} Corner 10345 30095 {normal=(-0.370481 -0.130488 -0.919629)} Corner 10345 30096 {normal=(-0.370481 -0.130488 -0.919629)} Corner 10297 30096 {normal=(-0.449911 -0.353984 -0.819924)} Corner 10320 30097 {normal=(-0.851911 -0.495661 -0.169021)} Corner 10275 30097 {normal=(-0.976351 -0.215769 -0.0134926)} Corner 10275 30098 {normal=(-0.976351 -0.215769 -0.0134926)} Corner 10289 30098 {normal=(-0.976351 -0.215769 -0.0134926)} Corner 10289 30099 {normal=(-0.976351 -0.215769 -0.0134926)} Corner 10277 30099 {normal=(-0.889274 -0.436916 -0.135262)} Corner 10277 30100 {normal=(-0.889274 -0.436916 -0.135262)} Corner 10320 30100 {normal=(-0.851911 -0.495661 -0.169021)} Corner 10400 30101 {normal=(-0.684335 -0.674458 -0.277114)} Corner 10320 30101 {normal=(-0.851911 -0.495661 -0.169021)} Corner 10320 30102 {normal=(-0.851911 -0.495661 -0.169021)} Corner 10277 30102 {normal=(-0.889274 -0.436916 -0.135262)} Corner 10277 30103 {normal=(-0.889274 -0.436916 -0.135262)} Corner 10374 30103 {normal=(-0.684335 -0.674458 -0.277114)} Corner 10374 30104 {normal=(-0.684335 -0.674458 -0.277114)} Corner 10400 30104 {normal=(-0.684335 -0.674458 -0.277114)} Corner 10350 30105 {normal=(-0.0785193 0.186648 0.979284)} Corner 10588 30106 {normal=(-0.091199 0.101705 0.990626)} Corner 10588 30107 {normal=(-0.091199 0.101705 0.990626)} Corner 10405 30107 {normal=(-0.0952917 0.0707151 0.992934)} Corner 10405 30108 {normal=(-0.0952917 0.0707151 0.992934)} Corner 10350 30108 {normal=(-0.0785193 0.186648 0.979284)} Corner 10275 30109 {normal=(-0.798066 0.375326 0.471404)} Corner 10350 30109 {normal=(-0.799383 0.367095 0.475635)} Corner 10350 30110 {normal=(-0.799383 0.367095 0.475635)} Corner 10405 30110 {normal=(-0.801792 0.35065 0.483916)} Corner 10405 30111 {normal=(-0.801792 0.35065 0.483916)} Corner 10289 30111 {normal=(-0.801792 0.35065 0.483916)} Corner 10289 30112 {normal=(-0.801792 0.35065 0.483916)} Corner 10275 30112 {normal=(-0.798066 0.375326 0.471404)} Corner 10405 30113 {normal=(0.248883 0.548747 0.798081)} Corner 10588 30113 {normal=(0.301634 0.602737 0.738732)} Corner 10588 30114 {normal=(0.301634 0.602737 0.738732)} Corner 10519 30115 {normal=(0.277051 0.461877 0.842563)} Corner 10519 30116 {normal=(0.277051 0.461877 0.842563)} Corner 10405 30116 {normal=(0.248883 0.548747 0.798081)} Corner 10289 30117 {normal=(-0.784944 0.619105 -0.0239367)} Corner 10405 30117 {normal=(-0.701841 0.706779 0.0887773)} Corner 10405 30118 {normal=(-0.701841 0.706779 0.0887773)} Corner 10519 30118 {normal=(-0.701842 0.706779 0.0887772)} Corner 10519 30119 {normal=(-0.701842 0.706779 0.0887772)} Corner 10322 30119 {normal=(-0.829452 0.538214 -0.14945)} Corner 10322 30120 {normal=(-0.829452 0.538214 -0.14945)} Corner 10289 30120 {normal=(-0.784944 0.619105 -0.0239367)} Corner 10277 30121 {normal=(-0.865283 0.467468 -0.180994)} Corner 10289 30121 {normal=(-0.784944 0.619105 -0.0239367)} Corner 10289 30122 {normal=(-0.784944 0.619105 -0.0239367)} Corner 10322 30122 {normal=(-0.829452 0.538214 -0.14945)} Corner 10322 30123 {normal=(-0.829452 0.538214 -0.14945)} Corner 10300 30123 {normal=(-0.860241 0.458346 -0.223392)} Corner 10300 30124 {normal=(-0.860241 0.458346 -0.223392)} Corner 10277 30124 {normal=(-0.865283 0.467468 -0.180994)} Corner 10374 30125 {normal=(-0.141183 -0.584522 -0.799)} Corner 10277 30125 {normal=(-0.331197 -0.369194 -0.868334)} Corner 10277 30126 {normal=(-0.331197 -0.369194 -0.868334)} Corner 10300 30126 {normal=(-0.331197 -0.369194 -0.868334)} Corner 10300 30127 {normal=(-0.331197 -0.369194 -0.868334)} Corner 10419 30127 {normal=(-0.174741 -0.491134 -0.853377)} Corner 10419 30128 {normal=(-0.174741 -0.491134 -0.853377)} Corner 10374 30128 {normal=(-0.141183 -0.584522 -0.799)} Corner 11038 30169 {normal=(0.906749 0.30553 0.290617)} Corner 11038 30170 {normal=(0.906749 0.30553 0.290617)} Corner 11041 30170 {normal=(0.950299 0.281502 0.132996)} Corner 11041 30171 {normal=(0.950299 0.281502 0.132996)} Corner 11041 30174 {normal=(0.950299 0.281502 0.132996)} Corner 11041 30175 {normal=(0.950299 0.281502 0.132996)} Corner 11040 30175 {normal=(0.932795 0.229345 -0.27802)} Corner 11040 30176 {normal=(0.932795 0.229345 -0.27802)} Corner 11040 30178 {normal=(0.932795 0.229345 -0.27802)} Corner 11040 30179 {normal=(0.932795 0.229345 -0.27802)} Corner 11037 30179 {normal=(0.859799 0.18221 -0.477017)} Corner 11037 30180 {normal=(0.859799 0.18221 -0.477017)} Corner 11037 30182 {normal=(0.859799 0.18221 -0.477017)} Corner 11037 30183 {normal=(0.859799 0.18221 -0.477017)} Corner 11032 30183 {normal=(0.855113 0.123779 -0.503448)} Corner 11032 30184 {normal=(0.855113 0.123779 -0.503448)} Corner 11032 30186 {normal=(0.855113 0.123779 -0.503448)} Corner 11032 30187 {normal=(0.855113 0.123779 -0.503448)} Corner 10962 30187 {normal=(0.550002 -0.00935561 -0.835111)} Corner 10962 30188 {normal=(0.550002 -0.00935561 -0.835111)} Corner 10832 30189 {normal=(0.203985 -0.0817452 -0.975555)} Corner 10962 30191 {normal=(0.550002 -0.00935561 -0.835111)} Corner 10962 30192 {normal=(0.550002 -0.00935561 -0.835111)} Corner 10832 30192 {normal=(0.203985 -0.0817452 -0.975555)} Corner 10511 30193 {normal=(-0.244695 -0.097176 -0.964718)} Corner 10511 30194 {normal=(-0.244695 -0.097176 -0.964718)} Corner 10293 30194 {normal=(-0.61359 -0.0875254 -0.784759)} Corner 10293 30195 {normal=(-0.61359 -0.0875254 -0.784759)} Corner 10832 30197 {normal=(0.203985 -0.0817452 -0.975555)} Corner 10832 30198 {normal=(0.203985 -0.0817452 -0.975555)} Corner 10511 30198 {normal=(-0.244695 -0.097176 -0.964718)} Corner 10511 30199 {normal=(-0.244695 -0.097176 -0.964718)} Corner 10293 30202 {normal=(-0.61359 -0.0875254 -0.784759)} Corner 10293 30203 {normal=(-0.61359 -0.0875254 -0.784759)} Corner 10199 30203 {normal=(-0.900996 -0.0910117 -0.424173)} Corner 10199 30204 {normal=(-0.900996 -0.0910117 -0.424173)} Corner 10199 30205 {normal=(-0.900996 -0.0910117 -0.424173)} Corner 10199 30206 {normal=(-0.900996 -0.0910117 -0.424173)} Corner 10160 30206 {normal=(-0.990644 -0.0880863 0.104235)} Corner 10160 30207 {normal=(-0.990644 -0.0880863 0.104235)} Corner 10160 30209 {normal=(-0.990644 -0.0880863 0.104235)} Corner 10160 30210 {normal=(-0.990644 -0.0880863 0.104235)} Corner 10203 30210 {normal=(-0.865331 -0.0445149 0.49922)} Corner 10203 30211 {normal=(-0.865331 -0.0445149 0.49922)} Corner 10203 30213 {normal=(-0.865331 -0.0445149 0.49922)} Corner 10203 30214 {normal=(-0.865331 -0.0445149 0.49922)} Corner 10273 30214 {normal=(-0.733776 0.027502 0.678835)} Corner 10273 30215 {normal=(-0.733776 0.027502 0.678835)} Corner 10883 30217 {normal=(0.161934 0.180148 0.970219)} Corner 11029 30217 {normal=(0.686211 0.250027 0.683082)} Corner 11029 30218 {normal=(0.686211 0.250027 0.683082)} Corner 10883 30220 {normal=(0.161934 0.180148 0.970219)} Corner 10273 30221 {normal=(-0.733776 0.027502 0.678835)} Corner 10603 30221 {normal=(-0.419833 0.111422 0.900736)} Corner 10603 30222 {normal=(-0.419833 0.111422 0.900736)} Corner 10273 30224 {normal=(-0.733776 0.027502 0.678835)} Corner 10603 30225 {normal=(-0.419833 0.111422 0.900736)} Corner 10603 30226 {normal=(-0.419833 0.111422 0.900736)} Corner 10883 30226 {normal=(0.161934 0.180148 0.970219)} Corner 10883 30227 {normal=(0.161934 0.180148 0.970219)} Corner 112 31241 {normal=(-0.628534 0.0259913 0.777348)} Corner 17 31241 {normal=(-0.648159 0.0211276 0.761212)} Corner 17 31242 {normal=(-0.648159 0.0211276 0.761212)} Corner 6 31242 {normal=(-0.875306 -0.0501423 0.480963)} Corner 6 31243 {normal=(-0.875306 -0.0501423 0.480963)} Corner 65 31243 {normal=(-0.863052 -0.0451684 0.503092)} Corner 65 31244 {normal=(-0.863052 -0.0451684 0.503092)} Corner 112 31244 {normal=(-0.628534 0.0259913 0.777348)} Corner 65 31245 {normal=(-0.863052 -0.0451684 0.503092)} Corner 6 31245 {normal=(-0.875306 -0.0501423 0.480963)} Corner 6 31246 {normal=(-0.875306 -0.0501423 0.480963)} Corner 1 31246 {normal=(-0.974947 -0.0976972 0.199832)} Corner 1 31247 {normal=(-0.974947 -0.0976972 0.199832)} Corner 15 31247 {normal=(-0.97295 -0.0964134 0.209933)} Corner 15 31248 {normal=(-0.97295 -0.0964134 0.209933)} Corner 65 31248 {normal=(-0.863052 -0.0451684 0.503092)} Corner 15 31249 {normal=(-0.97295 -0.0964134 0.209933)} Corner 1 31249 {normal=(-0.974947 -0.0976972 0.199832)} Corner 1 31250 {normal=(-0.974947 -0.0976972 0.199832)} Corner 2 31250 {normal=(-0.981811 -0.133894 -0.134612)} Corner 2 31251 {normal=(-0.981811 -0.133894 -0.134612)} Corner 11 31251 {normal=(-0.979685 -0.135096 -0.14821)} Corner 11 31252 {normal=(-0.979685 -0.135096 -0.14821)} Corner 15 31252 {normal=(-0.97295 -0.0964134 0.209933)} Corner 11 31253 {normal=(-0.979685 -0.135096 -0.14821)} Corner 2 31253 {normal=(-0.981811 -0.133894 -0.134612)} Corner 2 31254 {normal=(-0.981811 -0.133894 -0.134612)} Corner 3 31254 {normal=(-0.903367 -0.155901 -0.399529)} Corner 3 31255 {normal=(-0.903367 -0.155901 -0.399529)} Corner 24 31255 {normal=(-0.900526 -0.156453 -0.405679)} Corner 24 31256 {normal=(-0.900526 -0.156453 -0.405679)} Corner 11 31256 {normal=(-0.979685 -0.135096 -0.14821)} Corner 24 31257 {normal=(-0.900526 -0.156453 -0.405679)} Corner 3 31257 {normal=(-0.903367 -0.155901 -0.399529)} Corner 3 31258 {normal=(-0.903367 -0.155901 -0.399529)} Corner 10 31258 {normal=(-0.776461 -0.17133 -0.606427)} Corner 10 31259 {normal=(-0.776461 -0.17133 -0.606427)} Corner 56 31259 {normal=(-0.7667 -0.171988 -0.61854)} Corner 56 31260 {normal=(-0.7667 -0.171988 -0.61854)} Corner 24 31260 {normal=(-0.900526 -0.156453 -0.405679)} Corner 56 31261 {normal=(-0.7667 -0.171988 -0.61854)} Corner 10 31261 {normal=(-0.776461 -0.17133 -0.606427)} Corner 10 31262 {normal=(-0.776461 -0.17133 -0.606427)} Corner 85 31262 {normal=(-0.424149 -0.208663 -0.881225)} Corner 85 31263 {normal=(-0.424149 -0.208663 -0.881225)} Corner 94 31263 {normal=(-0.546622 -0.192553 -0.81494)} Corner 94 31264 {normal=(-0.546622 -0.192553 -0.81494)} Corner 56 31264 {normal=(-0.7667 -0.171988 -0.61854)} Corner 153 31265 {normal=(-0.276876 -0.21667 -0.936159)} Corner 85 31265 {normal=(-0.424149 -0.208663 -0.881225)} Corner 85 31266 {normal=(-0.424149 -0.208663 -0.881225)} Corner 235 31266 {normal=(0.00961558 -0.236574 -0.971566)} Corner 235 31267 {normal=(0.00961558 -0.236574 -0.971566)} Corner 223 31267 {normal=(0.0135819 -0.236843 -0.971453)} Corner 223 31268 {normal=(0.0135819 -0.236843 -0.971453)} Corner 153 31268 {normal=(-0.276876 -0.21667 -0.936159)} Corner 235 31269 {normal=(0.00961558 -0.236574 -0.971566)} Corner 627 31269 {normal=(0.379854 -0.255921 -0.888941)} Corner 627 31270 {normal=(0.379854 -0.255921 -0.888941)} Corner 306 31270 {normal=(0.371459 -0.255684 -0.892549)} Corner 306 31271 {normal=(0.371459 -0.255684 -0.892549)} Corner 223 31271 {normal=(0.0135819 -0.236843 -0.971453)} Corner 223 31272 {normal=(0.0135819 -0.236843 -0.971453)} Corner 235 31272 {normal=(0.00961558 -0.236574 -0.971566)} Corner 306 31273 {normal=(0.371459 -0.255684 -0.892549)} Corner 627 31273 {normal=(0.379854 -0.255921 -0.888941)} Corner 627 31274 {normal=(0.379854 -0.255921 -0.888941)} Corner 795 31274 {normal=(0.694395 -0.25799 -0.671756)} Corner 795 31275 {normal=(0.694395 -0.25799 -0.671756)} Corner 360 31275 {normal=(0.689377 -0.257951 -0.67692)} Corner 360 31276 {normal=(0.689377 -0.257951 -0.67692)} Corner 306 31276 {normal=(0.371459 -0.255684 -0.892549)} Corner 360 31277 {normal=(0.689377 -0.257951 -0.67692)} Corner 795 31277 {normal=(0.694395 -0.25799 -0.671756)} Corner 795 31278 {normal=(0.694395 -0.25799 -0.671756)} Corner 878 31278 {normal=(0.892668 -0.251227 -0.374204)} Corner 878 31279 {normal=(0.892668 -0.251227 -0.374204)} Corner 489 31279 {normal=(0.887495 -0.251794 -0.385944)} Corner 489 31280 {normal=(0.887495 -0.251794 -0.385944)} Corner 360 31280 {normal=(0.689377 -0.257951 -0.67692)} Corner 489 31281 {normal=(0.887495 -0.251794 -0.385944)} Corner 878 31281 {normal=(0.892668 -0.251227 -0.374204)} Corner 878 31282 {normal=(0.892668 -0.251227 -0.374204)} Corner 911 31282 {normal=(0.974606 -0.220042 -0.0415301)} Corner 911 31283 {normal=(0.974606 -0.220042 -0.0415301)} Corner 592 31283 {normal=(0.973995 -0.221112 -0.0494336)} Corner 592 31284 {normal=(0.973995 -0.221112 -0.0494336)} Corner 489 31284 {normal=(0.887495 -0.251794 -0.385944)} Corner 592 31285 {normal=(0.973995 -0.221112 -0.0494336)} Corner 911 31285 {normal=(0.974606 -0.220042 -0.0415301)} Corner 911 31286 {normal=(0.974606 -0.220042 -0.0415301)} Corner 888 31286 {normal=(0.956985 -0.157337 0.24377)} Corner 888 31287 {normal=(0.956985 -0.157337 0.24377)} Corner 604 31287 {normal=(0.953957 -0.152972 0.258002)} Corner 604 31288 {normal=(0.953957 -0.152972 0.258002)} Corner 592 31288 {normal=(0.973995 -0.221112 -0.0494336)} Corner 604 31289 {normal=(0.953957 -0.152972 0.258002)} Corner 888 31289 {normal=(0.956985 -0.157337 0.24377)} Corner 888 31290 {normal=(0.956985 -0.157337 0.24377)} Corner 822 31290 {normal=(0.776824 -0.0348517 0.628753)} Corner 822 31291 {normal=(0.776824 -0.0348517 0.628753)} Corner 533 31291 {normal=(0.869421 -0.0778371 0.487903)} Corner 533 31292 {normal=(0.869421 -0.0778371 0.487903)} Corner 604 31292 {normal=(0.953957 -0.152972 0.258002)} Corner 427 31293 {normal=(0.695748 -8.50411e-05 0.718286)} Corner 822 31293 {normal=(0.776824 -0.0348517 0.628753)} Corner 822 31294 {normal=(0.776824 -0.0348517 0.628753)} Corner 467 31294 {normal=(0.30101 0.0788249 0.950358)} Corner 467 31295 {normal=(0.30101 0.0788249 0.950358)} Corner 231 31295 {normal=(0.275282 0.0813809 0.957913)} Corner 231 31296 {normal=(0.275282 0.0813809 0.957913)} Corner 427 31296 {normal=(0.695748 -8.50411e-05 0.718286)} Corner 231 31297 {normal=(0.275282 0.0813809 0.957913)} Corner 467 31297 {normal=(0.30101 0.0788249 0.950358)} Corner 467 31298 {normal=(0.30101 0.0788249 0.950358)} Corner 170 31298 {normal=(-0.243985 0.085213 0.966028)} Corner 170 31299 {normal=(-0.243985 0.085213 0.966028)} Corner 167 31299 {normal=(-0.239753 0.0855739 0.967055)} Corner 167 31300 {normal=(-0.239753 0.0855739 0.967055)} Corner 231 31300 {normal=(0.275282 0.0813809 0.957913)} Corner 167 31301 {normal=(-0.239753 0.0855739 0.967055)} Corner 170 31301 {normal=(-0.243985 0.085213 0.966028)} Corner 170 31302 {normal=(-0.243985 0.085213 0.966028)} Corner 17 31302 {normal=(-0.648159 0.0211276 0.761212)} Corner 17 31303 {normal=(-0.648159 0.0211276 0.761212)} Corner 112 31303 {normal=(-0.628534 0.0259913 0.777348)} Corner 112 31304 {normal=(-0.628534 0.0259913 0.777348)} Corner 167 31304 {normal=(-0.239753 0.0855739 0.967055)} Corner 153 31305 {normal=(-0.0252543 -0.982559 0.18423)} Corner 223 31305 {normal=(0.0232417 -0.984291 0.175017)} Corner 223 31306 {normal=(0.0232417 -0.984291 0.175017)} Corner 289 31306 {normal=(0.154668 -0.975066 0.159138)} Corner 289 31307 {normal=(0.154668 -0.975066 0.159138)} Corner 188 31307 {normal=(-0.00850367 -0.982635 0.185353)} Corner 188 31308 {normal=(-0.00850367 -0.982635 0.185353)} Corner 153 31308 {normal=(-0.0252543 -0.982559 0.18423)} Corner 306 31309 {normal=(0.102432 -0.982582 0.155051)} Corner 360 31309 {normal=(0.0906291 -0.975732 0.19933)} Corner 360 31310 {normal=(0.0906291 -0.975732 0.19933)} Corner 364 31310 {normal=(0.0837676 -0.973009 0.215027)} Corner 364 31311 {normal=(0.0837676 -0.973009 0.215027)} Corner 344 31311 {normal=(0.104706 -0.975931 0.191301)} Corner 344 31312 {normal=(0.104706 -0.975931 0.191301)} Corner 306 31312 {normal=(0.102432 -0.982582 0.155051)} Corner 360 31313 {normal=(0.0906291 -0.975732 0.19933)} Corner 489 31313 {normal=(0.0875193 -0.970979 0.222576)} Corner 489 31314 {normal=(0.0875193 -0.970979 0.222576)} Corner 405 31314 {normal=(0.102469 -0.96617 0.236678)} Corner 405 31315 {normal=(0.102469 -0.96617 0.236678)} Corner 364 31315 {normal=(0.0837676 -0.973009 0.215027)} Corner 364 31316 {normal=(0.0837676 -0.973009 0.215027)} Corner 360 31316 {normal=(0.0906291 -0.975732 0.19933)} Corner 489 31317 {normal=(0.0875193 -0.970979 0.222576)} Corner 592 31317 {normal=(0.10394 -0.959726 0.261002)} Corner 592 31318 {normal=(0.10394 -0.959726 0.261002)} Corner 460 31318 {normal=(0.104209 -0.960137 0.259378)} Corner 460 31319 {normal=(0.104209 -0.960137 0.259378)} Corner 405 31319 {normal=(0.102469 -0.96617 0.236678)} Corner 405 31320 {normal=(0.102469 -0.96617 0.236678)} Corner 489 31320 {normal=(0.0875193 -0.970979 0.222576)} Corner 592 31321 {normal=(0.10394 -0.959726 0.261002)} Corner 604 31321 {normal=(0.128813 -0.949368 0.286544)} Corner 604 31322 {normal=(0.128813 -0.949368 0.286544)} Corner 453 31322 {normal=(0.105108 -0.954186 0.280145)} Corner 453 31323 {normal=(0.105108 -0.954186 0.280145)} Corner 460 31323 {normal=(0.104209 -0.960137 0.259378)} Corner 460 31324 {normal=(0.104209 -0.960137 0.259378)} Corner 592 31324 {normal=(0.10394 -0.959726 0.261002)} Corner 604 31325 {normal=(0.128813 -0.949368 0.286544)} Corner 533 31325 {normal=(0.164726 -0.926731 0.337692)} Corner 533 31326 {normal=(0.164726 -0.926731 0.337692)} Corner 495 31326 {normal=(0.138354 -0.945523 0.294693)} Corner 495 31327 {normal=(0.138354 -0.945523 0.294693)} Corner 453 31327 {normal=(0.105108 -0.954186 0.280145)} Corner 453 31328 {normal=(0.105108 -0.954186 0.280145)} Corner 604 31328 {normal=(0.128813 -0.949368 0.286544)} Corner 533 31329 {normal=(0.164726 -0.926731 0.337692)} Corner 427 31329 {normal=(0.0502813 -0.926821 0.372122)} Corner 427 31330 {normal=(0.0502813 -0.926821 0.372122)} Corner 421 31330 {normal=(0.115236 -0.926232 0.358907)} Corner 421 31331 {normal=(0.115236 -0.926232 0.358907)} Corner 495 31331 {normal=(0.138354 -0.945523 0.294693)} Corner 495 31332 {normal=(0.138354 -0.945523 0.294693)} Corner 533 31332 {normal=(0.164726 -0.926731 0.337692)} Corner 427 31333 {normal=(0.0502813 -0.926821 0.372122)} Corner 231 31333 {normal=(-0.00155035 -0.921753 0.387775)} Corner 231 31334 {normal=(-0.00155035 -0.921753 0.387775)} Corner 160 31334 {normal=(-0.176808 -0.885879 0.428902)} Corner 160 31335 {normal=(-0.176808 -0.885879 0.428902)} Corner 421 31335 {normal=(0.115236 -0.926232 0.358907)} Corner 421 31336 {normal=(0.115236 -0.926232 0.358907)} Corner 427 31336 {normal=(0.0502813 -0.926821 0.372122)} Corner 167 31337 {normal=(-0.0933424 -0.90393 0.417371)} Corner 112 31337 {normal=(-0.146103 -0.915419 0.37505)} Corner 112 31338 {normal=(-0.146103 -0.915419 0.37505)} Corner 58 31338 {normal=(-0.184261 -0.911518 0.367672)} Corner 58 31339 {normal=(-0.184261 -0.911518 0.367672)} Corner 92 31339 {normal=(-0.146325 -0.913728 0.379066)} Corner 92 31340 {normal=(-0.146325 -0.913728 0.379066)} Corner 167 31340 {normal=(-0.0933424 -0.90393 0.417371)} Corner 112 31341 {normal=(-0.146103 -0.915419 0.37505)} Corner 65 31341 {normal=(-0.194485 -0.910027 0.366097)} Corner 65 31342 {normal=(-0.194485 -0.910027 0.366097)} Corner 35 31342 {normal=(-0.281276 -0.89251 0.352577)} Corner 35 31343 {normal=(-0.281276 -0.89251 0.352577)} Corner 58 31343 {normal=(-0.184261 -0.911518 0.367672)} Corner 58 31344 {normal=(-0.184261 -0.911518 0.367672)} Corner 112 31344 {normal=(-0.146103 -0.915419 0.37505)} Corner 65 31345 {normal=(-0.194485 -0.910027 0.366097)} Corner 15 31345 {normal=(-0.299897 -0.888697 0.346812)} Corner 15 31346 {normal=(-0.299897 -0.888697 0.346812)} Corner 21 31346 {normal=(-0.39206 -0.873854 0.287521)} Corner 21 31347 {normal=(-0.39206 -0.873854 0.287521)} Corner 35 31347 {normal=(-0.281276 -0.89251 0.352577)} Corner 35 31348 {normal=(-0.281276 -0.89251 0.352577)} Corner 65 31348 {normal=(-0.194485 -0.910027 0.366097)} Corner 11 31349 {normal=(-0.269271 -0.934305 0.233595)} Corner 24 31349 {normal=(-0.230705 -0.9524 0.199273)} Corner 24 31350 {normal=(-0.230705 -0.9524 0.199273)} Corner 50 31350 {normal=(-0.231926 -0.951878 0.200347)} Corner 50 31351 {normal=(-0.231926 -0.951878 0.200347)} Corner 32 31351 {normal=(-0.250668 -0.941889 0.223629)} Corner 32 31352 {normal=(-0.250668 -0.941889 0.223629)} Corner 11 31352 {normal=(-0.269271 -0.934305 0.233595)} Corner 24 31353 {normal=(-0.230705 -0.9524 0.199273)} Corner 56 31353 {normal=(-0.151162 -0.972185 0.178905)} Corner 56 31354 {normal=(-0.151162 -0.972185 0.178905)} Corner 77 31354 {normal=(-0.165058 -0.969915 0.178942)} Corner 77 31355 {normal=(-0.165058 -0.969915 0.178942)} Corner 50 31355 {normal=(-0.231926 -0.951878 0.200347)} Corner 50 31356 {normal=(-0.231926 -0.951878 0.200347)} Corner 24 31356 {normal=(-0.230705 -0.9524 0.199273)} Corner 56 31357 {normal=(-0.151162 -0.972185 0.178905)} Corner 94 31357 {normal=(-0.0771619 -0.980442 0.181049)} Corner 94 31358 {normal=(-0.0771619 -0.980442 0.181049)} Corner 123 31358 {normal=(-0.0707151 -0.980855 0.181445)} Corner 123 31359 {normal=(-0.0707151 -0.980855 0.181445)} Corner 77 31359 {normal=(-0.165058 -0.969915 0.178942)} Corner 77 31360 {normal=(-0.165058 -0.969915 0.178942)} Corner 56 31360 {normal=(-0.151162 -0.972185 0.178905)} Corner 94 31361 {normal=(-0.0771619 -0.980442 0.181049)} Corner 153 31361 {normal=(-0.0252543 -0.982559 0.18423)} Corner 153 31362 {normal=(-0.0252543 -0.982559 0.18423)} Corner 188 31362 {normal=(-0.00850367 -0.982635 0.185353)} Corner 188 31363 {normal=(-0.00850367 -0.982635 0.185353)} Corner 123 31363 {normal=(-0.0707151 -0.980855 0.181445)} Corner 123 31364 {normal=(-0.0707151 -0.980855 0.181445)} Corner 94 31364 {normal=(-0.0771619 -0.980442 0.181049)} Corner 170 31365 {normal=(0.0732672 0.988689 0.130866)} Corner 467 31365 {normal=(0.121584 0.988166 0.0935189)} Corner 467 31366 {normal=(0.121584 0.988166 0.0935189)} Corner 442 31366 {normal=(0.127913 0.987873 0.0880016)} Corner 442 31367 {normal=(0.127913 0.987873 0.0880016)} Corner 162 31367 {normal=(0.0540404 0.988059 0.144286)} Corner 162 31368 {normal=(0.0540404 0.988059 0.144286)} Corner 170 31368 {normal=(0.0732672 0.988689 0.130866)} Corner 467 31369 {normal=(0.121584 0.988166 0.0935189)} Corner 822 31369 {normal=(0.15539 0.986045 0.0597494)} Corner 822 31370 {normal=(0.15539 0.986045 0.0597494)} Corner 772 31370 {normal=(0.158963 0.985777 0.0545352)} Corner 772 31371 {normal=(0.158963 0.985777 0.0545352)} Corner 442 31371 {normal=(0.127913 0.987873 0.0880016)} Corner 442 31372 {normal=(0.127913 0.987873 0.0880016)} Corner 467 31372 {normal=(0.121584 0.988166 0.0935189)} Corner 822 31373 {normal=(0.15539 0.986045 0.0597494)} Corner 888 31373 {normal=(0.182758 0.982311 0.0408113)} Corner 888 31374 {normal=(0.182758 0.982311 0.0408113)} Corner 842 31374 {normal=(0.192542 0.980513 0.0390115)} Corner 842 31375 {normal=(0.192542 0.980513 0.0390115)} Corner 772 31375 {normal=(0.158963 0.985777 0.0545352)} Corner 772 31376 {normal=(0.158963 0.985777 0.0545352)} Corner 822 31376 {normal=(0.15539 0.986045 0.0597494)} Corner 888 31377 {normal=(0.182758 0.982311 0.0408113)} Corner 911 31377 {normal=(0.242048 0.970157 0.0143965)} Corner 911 31378 {normal=(0.242048 0.970157 0.0143965)} Corner 885 31378 {normal=(0.282841 0.959064 -0.0140175)} Corner 885 31379 {normal=(0.282841 0.959064 -0.0140175)} Corner 842 31379 {normal=(0.192542 0.980513 0.0390115)} Corner 842 31380 {normal=(0.192542 0.980513 0.0390115)} Corner 888 31380 {normal=(0.182758 0.982311 0.0408113)} Corner 911 31381 {normal=(0.242048 0.970157 0.0143965)} Corner 878 31381 {normal=(0.317201 0.94527 -0.0764696)} Corner 878 31382 {normal=(0.317201 0.94527 -0.0764696)} Corner 846 31382 {normal=(0.310577 0.941948 -0.127575)} Corner 846 31383 {normal=(0.310577 0.941948 -0.127575)} Corner 885 31383 {normal=(0.282841 0.959064 -0.0140175)} Corner 885 31384 {normal=(0.282841 0.959064 -0.0140175)} Corner 911 31384 {normal=(0.242048 0.970157 0.0143965)} Corner 878 31385 {normal=(0.317201 0.94527 -0.0764696)} Corner 795 31385 {normal=(0.272063 0.946293 -0.174675)} Corner 795 31386 {normal=(0.272063 0.946293 -0.174675)} Corner 752 31386 {normal=(0.229378 0.956037 -0.182701)} Corner 752 31387 {normal=(0.229378 0.956037 -0.182701)} Corner 846 31387 {normal=(0.310577 0.941948 -0.127575)} Corner 846 31388 {normal=(0.310577 0.941948 -0.127575)} Corner 878 31388 {normal=(0.317201 0.94527 -0.0764696)} Corner 795 31389 {normal=(0.272063 0.946293 -0.174675)} Corner 627 31389 {normal=(0.167302 0.969475 -0.179242)} Corner 627 31390 {normal=(0.167302 0.969475 -0.179242)} Corner 534 31390 {normal=(0.132222 0.977039 -0.167071)} Corner 534 31391 {normal=(0.132222 0.977039 -0.167071)} Corner 752 31391 {normal=(0.229378 0.956037 -0.182701)} Corner 752 31392 {normal=(0.229378 0.956037 -0.182701)} Corner 795 31392 {normal=(0.272063 0.946293 -0.174675)} Corner 627 31393 {normal=(0.167302 0.969475 -0.179242)} Corner 235 31393 {normal=(0.0837836 0.98677 -0.1388)} Corner 235 31394 {normal=(0.0837836 0.98677 -0.1388)} Corner 213 31394 {normal=(0.0658668 0.990249 -0.122753)} Corner 213 31395 {normal=(0.0658668 0.990249 -0.122753)} Corner 534 31395 {normal=(0.132222 0.977039 -0.167071)} Corner 534 31396 {normal=(0.132222 0.977039 -0.167071)} Corner 627 31396 {normal=(0.167302 0.969475 -0.179242)} Corner 235 31397 {normal=(0.0837836 0.98677 -0.1388)} Corner 85 31397 {normal=(0.0392202 0.99413 -0.100834)} Corner 85 31398 {normal=(0.0392202 0.99413 -0.100834)} Corner 83 31398 {normal=(0.0316296 0.994835 -0.0964565)} Corner 83 31399 {normal=(0.0316296 0.994835 -0.0964565)} Corner 213 31399 {normal=(0.0658668 0.990249 -0.122753)} Corner 213 31400 {normal=(0.0658668 0.990249 -0.122753)} Corner 235 31400 {normal=(0.0837836 0.98677 -0.1388)} Corner 85 31401 {normal=(0.0392202 0.99413 -0.100834)} Corner 10 31401 {normal=(0.00917048 0.997949 -0.0633477)} Corner 10 31402 {normal=(0.00917048 0.997949 -0.0633477)} Corner 13 31402 {normal=(0.00843174 0.998042 -0.0619759)} Corner 13 31403 {normal=(0.00843174 0.998042 -0.0619759)} Corner 83 31403 {normal=(0.0316296 0.994835 -0.0964565)} Corner 83 31404 {normal=(0.0316296 0.994835 -0.0964565)} Corner 85 31404 {normal=(0.0392202 0.99413 -0.100834)} Corner 10 31405 {normal=(0.00917048 0.997949 -0.0633477)} Corner 3 31405 {normal=(-0.0101361 0.998814 -0.0476201)} Corner 3 31406 {normal=(-0.0101361 0.998814 -0.0476201)} Corner 8 31406 {normal=(-0.0110624 0.998594 -0.0518414)} Corner 8 31407 {normal=(-0.0110624 0.998594 -0.0518414)} Corner 13 31407 {normal=(0.00843174 0.998042 -0.0619759)} Corner 13 31408 {normal=(0.00843174 0.998042 -0.0619759)} Corner 10 31408 {normal=(0.00917048 0.997949 -0.0633477)} Corner 3 31409 {normal=(-0.0101361 0.998814 -0.0476201)} Corner 2 31409 {normal=(-0.0426866 0.998471 -0.0351292)} Corner 2 31410 {normal=(-0.0426866 0.998471 -0.0351292)} Corner 5 31410 {normal=(-0.0267629 0.998216 -0.053381)} Corner 5 31411 {normal=(-0.0267629 0.998216 -0.053381)} Corner 8 31411 {normal=(-0.0110624 0.998594 -0.0518414)} Corner 8 31412 {normal=(-0.0110624 0.998594 -0.0518414)} Corner 3 31412 {normal=(-0.0101361 0.998814 -0.0476201)} Corner 2 31413 {normal=(-0.0426866 0.998471 -0.0351292)} Corner 1 31413 {normal=(-0.0531611 0.9983 0.0238801)} Corner 1 31414 {normal=(-0.0531611 0.9983 0.0238801)} Corner 4 31414 {normal=(-0.0539414 0.998523 -0.00643702)} Corner 4 31415 {normal=(-0.0539414 0.998523 -0.00643702)} Corner 5 31415 {normal=(-0.0267629 0.998216 -0.053381)} Corner 5 31416 {normal=(-0.0267629 0.998216 -0.053381)} Corner 2 31416 {normal=(-0.0426866 0.998471 -0.0351292)} Corner 1 31417 {normal=(-0.0531611 0.9983 0.0238801)} Corner 6 31417 {normal=(-0.102166 0.986789 0.125739)} Corner 6 31418 {normal=(-0.102166 0.986789 0.125739)} Corner 7 31418 {normal=(-0.0680535 0.995511 0.0657823)} Corner 7 31419 {normal=(-0.0680535 0.995511 0.0657823)} Corner 4 31419 {normal=(-0.0539414 0.998523 -0.00643702)} Corner 4 31420 {normal=(-0.0539414 0.998523 -0.00643702)} Corner 1 31420 {normal=(-0.0531611 0.9983 0.0238801)} Corner 6 31421 {normal=(-0.102166 0.986789 0.125739)} Corner 17 31421 {normal=(-0.0115605 0.986622 0.162616)} Corner 17 31422 {normal=(-0.0115605 0.986622 0.162616)} Corner 16 31422 {normal=(-0.074841 0.985007 0.155436)} Corner 16 31423 {normal=(-0.074841 0.985007 0.155436)} Corner 7 31423 {normal=(-0.0680535 0.995511 0.0657823)} Corner 7 31424 {normal=(-0.0680535 0.995511 0.0657823)} Corner 6 31424 {normal=(-0.102166 0.986789 0.125739)} Corner 17 31425 {normal=(-0.0115605 0.986622 0.162616)} Corner 170 31425 {normal=(0.0732672 0.988689 0.130866)} Corner 170 31426 {normal=(0.0732672 0.988689 0.130866)} Corner 162 31426 {normal=(0.0540404 0.988059 0.144286)} Corner 162 31427 {normal=(0.0540404 0.988059 0.144286)} Corner 16 31427 {normal=(-0.074841 0.985007 0.155436)} Corner 16 31428 {normal=(-0.074841 0.985007 0.155436)} Corner 17 31428 {normal=(-0.0115605 0.986622 0.162616)} Corner 16 31541 {normal=(-0.686211 0.250027 0.683082)} Corner 7 31543 {normal=(-0.906749 0.30553 0.290617)} Corner 7 31544 {normal=(-0.906749 0.30553 0.290617)} Corner 16 31544 {normal=(-0.686211 0.250027 0.683082)} Corner 123 31565 {normal=(-0.420174 0.132636 -0.897698)} Corner 188 31565 {normal=(0.0531869 0.165585 -0.98476)} Corner 188 31566 {normal=(0.0531869 0.165585 -0.98476)} Corner 123 31568 {normal=(-0.420174 0.132636 -0.897698)} Corner 188 31569 {normal=(0.0531869 0.165585 -0.98476)} Corner 289 31569 {normal=(0.23044 0.156806 -0.960369)} Corner 289 31570 {normal=(0.23044 0.156806 -0.960369)} Corner 352 31570 {normal=(0.226007 0.0602303 -0.972262)} Corner 352 31571 {normal=(0.226007 0.0602303 -0.972262)} Corner 188 31572 {normal=(0.0531869 0.165585 -0.98476)} Corner 289 31573 {normal=(0.816215 0.268904 -0.511355)} Corner 344 31573 {normal=(0.879057 0.252672 -0.404247)} Corner 344 31574 {normal=(0.879057 0.252672 -0.404247)} Corner 352 31575 {normal=(0.910467 0.0312282 -0.412402)} Corner 352 31576 {normal=(0.910467 0.0312282 -0.412402)} Corner 289 31576 {normal=(0.816215 0.268904 -0.511355)} Corner 344 31577 {normal=(0.879057 0.252672 -0.404247)} Corner 364 31577 {normal=(0.975242 0.158643 -0.154066)} Corner 364 31578 {normal=(0.975242 0.158643 -0.154066)} Corner 344 31580 {normal=(0.879057 0.252672 -0.404247)} Corner 364 31581 {normal=(0.975242 0.158643 -0.154066)} Corner 405 31581 {normal=(0.998664 -0.0506385 0.0102656)} Corner 405 31582 {normal=(0.998664 -0.0506385 0.0102656)} Corner 364 31584 {normal=(0.975242 0.158643 -0.154066)} Corner 405 31585 {normal=(0.998664 -0.0506385 0.0102656)} Corner 460 31585 {normal=(0.984192 -0.164348 -0.0660001)} Corner 460 31586 {normal=(0.984192 -0.164348 -0.0660001)} Corner 405 31588 {normal=(0.998664 -0.0506385 0.0102656)} Corner 460 31589 {normal=(0.984192 -0.164348 -0.0660001)} Corner 453 31589 {normal=(0.986677 -0.070692 -0.146528)} Corner 453 31590 {normal=(0.986677 -0.070692 -0.146528)} Corner 460 31592 {normal=(0.984192 -0.164348 -0.0660001)} Corner 453 31593 {normal=(0.986677 -0.070692 -0.146528)} Corner 495 31593 {normal=(0.996062 0.0886381 -0.00198505)} Corner 495 31594 {normal=(0.996062 0.0886381 -0.00198505)} Corner 453 31596 {normal=(0.986677 -0.070692 -0.146528)} Corner 495 31597 {normal=(0.996062 0.0886381 -0.00198505)} Corner 421 31597 {normal=(0.981198 0.153037 0.117601)} Corner 421 31598 {normal=(0.981198 0.153037 0.117601)} Corner 448 31598 {normal=(0.984518 0.143796 0.100238)} Corner 448 31599 {normal=(0.984518 0.143796 0.100238)} Corner 495 31600 {normal=(0.996062 0.0886381 -0.00198505)} Corner 421 31601 {normal=(0.130865 0.713508 0.688317)} Corner 160 31601 {normal=(0.130865 0.713508 0.688317)} Corner 160 31602 {normal=(0.130865 0.713508 0.688317)} Corner 163 31602 {normal=(0.137206 0.711197 0.689473)} Corner 163 31603 {normal=(0.137206 0.711197 0.689473)} Corner 448 31603 {normal=(0.138072 0.710879 0.689628)} Corner 448 31604 {normal=(0.138072 0.710879 0.689628)} Corner 421 31604 {normal=(0.130865 0.713508 0.688317)} Corner 160 31605 {normal=(-0.849738 0.184009 0.494051)} Corner 92 31605 {normal=(-0.860119 0.150858 0.487275)} Corner 92 31606 {normal=(-0.860119 0.150858 0.487275)} Corner 163 31607 {normal=(-0.796745 0.202717 0.569301)} Corner 163 31608 {normal=(-0.796745 0.202717 0.569301)} Corner 160 31608 {normal=(-0.849738 0.184009 0.494051)} Corner 92 31609 {normal=(-0.860119 0.150858 0.487275)} Corner 58 31609 {normal=(-0.901204 0.101456 0.421352)} Corner 58 31610 {normal=(-0.901204 0.101456 0.421352)} Corner 92 31612 {normal=(-0.860119 0.150858 0.487275)} Corner 58 31613 {normal=(-0.901204 0.101456 0.421352)} Corner 35 31613 {normal=(-0.957114 0.0729318 0.280382)} Corner 35 31614 {normal=(-0.957114 0.0729318 0.280382)} Corner 58 31616 {normal=(-0.901204 0.101456 0.421352)} Corner 35 31617 {normal=(-0.957114 0.0729318 0.280382)} Corner 21 31617 {normal=(-0.998777 0.0403599 0.0285743)} Corner 21 31618 {normal=(-0.998777 0.0403599 0.0285743)} Corner 35 31620 {normal=(-0.957114 0.0729318 0.280382)} Corner 21 31621 {normal=(-0.998777 0.0403599 0.0285743)} Corner 32 31621 {normal=(-0.982421 0.0306352 -0.184146)} Corner 32 31622 {normal=(-0.982421 0.0306352 -0.184146)} Corner 21 31624 {normal=(-0.998777 0.0403599 0.0285743)} Corner 32 31625 {normal=(-0.982421 0.0306352 -0.184146)} Corner 50 31625 {normal=(-0.935739 0.0494324 -0.349211)} Corner 50 31626 {normal=(-0.935739 0.0494324 -0.349211)} Corner 32 31628 {normal=(-0.982421 0.0306352 -0.184146)} Corner 50 31629 {normal=(-0.935739 0.0494324 -0.349211)} Corner 77 31629 {normal=(-0.756194 0.0718039 -0.650395)} Corner 77 31630 {normal=(-0.756194 0.0718039 -0.650395)} Corner 50 31632 {normal=(-0.935739 0.0494324 -0.349211)} Corner 77 31633 {normal=(-0.756194 0.0718039 -0.650395)} Corner 123 31633 {normal=(-0.420174 0.132636 -0.897698)} Corner 123 31634 {normal=(-0.420174 0.132636 -0.897698)} Corner 77 31636 {normal=(-0.756194 0.0718039 -0.650395)} Corner 514 31639 {normal=(0.964442 -0.0385043 -0.261475)} Corner 514 31640 {normal=(0.964442 -0.0385043 -0.261475)} Corner 142 31651 {normal=(-0.646524 0.194492 0.737686)} Corner 142 31652 {normal=(-0.646524 0.194492 0.737686)} Corner 195 31653 {normal=(0.270069 0.69079 0.670725)} Corner 384 31653 {normal=(0.351847 0.673001 0.650594)} Corner 384 31654 {normal=(0.351847 0.673001 0.650594)} Corner 448 31654 {normal=(0.138072 0.710879 0.689628)} Corner 448 31655 {normal=(0.138072 0.710879 0.689628)} Corner 163 31655 {normal=(0.137206 0.711197 0.689473)} Corner 163 31656 {normal=(0.137206 0.711197 0.689473)} Corner 195 31656 {normal=(0.270069 0.69079 0.670725)} Corner 142 31658 {normal=(-0.646524 0.194492 0.737686)} Corner 142 31659 {normal=(-0.646524 0.194492 0.737686)} Corner 247 31659 {normal=(-0.764816 -0.0218668 0.643878)} Corner 247 31660 {normal=(-0.764816 -0.0218668 0.643878)} Corner 195 31661 {normal=(-0.54254 0.20281 0.81518)} Corner 195 31662 {normal=(-0.54254 0.20281 0.81518)} Corner 745 31665 {normal=(0.860241 0.458346 -0.223392)} Corner 514 31665 {normal=(0.848266 0.441294 -0.292753)} Corner 514 31666 {normal=(0.848266 0.441294 -0.292753)} Corner 384 31666 {normal=(0.848266 0.441294 -0.292753)} Corner 384 31667 {normal=(0.848266 0.441294 -0.292753)} Corner 723 31667 {normal=(0.829452 0.538214 -0.14945)} Corner 723 31668 {normal=(0.829452 0.538214 -0.14945)} Corner 745 31668 {normal=(0.860241 0.458346 -0.223392)} Corner 626 31669 {normal=(0.445816 -0.244315 -0.861138)} Corner 514 31670 {normal=(0.964442 -0.0385043 -0.261475)} Corner 514 31671 {normal=(0.964442 -0.0385043 -0.261475)} Corner 745 31671 {normal=(0.651974 0.083435 -0.753637)} Corner 745 31672 {normal=(0.651974 0.083435 -0.753637)} Corner 626 31672 {normal=(0.445816 -0.244315 -0.861138)} Corner 195 31673 {normal=(0.270069 0.69079 0.670725)} Corner 526 31673 {normal=(0.532707 0.611883 0.584656)} Corner 526 31674 {normal=(0.532707 0.611883 0.584656)} Corner 723 31674 {normal=(0.532707 0.611883 0.584656)} Corner 723 31675 {normal=(0.532707 0.611883 0.584656)} Corner 384 31675 {normal=(0.351847 0.673001 0.650594)} Corner 384 31676 {normal=(0.351847 0.673001 0.650594)} Corner 195 31676 {normal=(0.270069 0.69079 0.670725)} Corner 311 31677 {normal=(0.321811 -0.586166 0.743537)} Corner 409 31677 {normal=(0.321811 -0.586166 0.743537)} Corner 409 31678 {normal=(0.321811 -0.586166 0.743537)} Corner 247 31678 {normal=(0.321811 -0.586166 0.743537)} Corner 247 31679 {normal=(0.321811 -0.586166 0.743537)} Corner 156 31679 {normal=(0.321811 -0.586166 0.743537)} Corner 156 31680 {normal=(0.321811 -0.586166 0.743537)} Corner 311 31680 {normal=(0.321811 -0.586166 0.743537)} Corner 397 31682 {normal=(0.507694 -0.519084 -0.687603)} Corner 397 31683 {normal=(0.507694 -0.519084 -0.687603)} Corner 350 31683 {normal=(0.870885 -0.376766 -0.315606)} Corner 350 31684 {normal=(0.870885 -0.376766 -0.315606)} Corner 514 31686 {normal=(0.964442 -0.0385043 -0.261475)} Corner 514 31687 {normal=(0.964442 -0.0385043 -0.261475)} Corner 350 31693 {normal=(0.870885 -0.376766 -0.315606)} Corner 298 31693 {normal=(0.996298 -0.0799641 0.0315726)} Corner 298 31694 {normal=(0.996298 -0.0799641 0.0315726)} Corner 334 31694 {normal=(0.995509 -0.0783009 -0.0532041)} Corner 334 31695 {normal=(0.995509 -0.0783009 -0.0532041)} Corner 350 31696 {normal=(0.870885 -0.376766 -0.315606)} Corner 350 31697 {normal=(0.870885 -0.376766 -0.315606)} Corner 350 31698 {normal=(0.870885 -0.376766 -0.315606)} Corner 300 31709 {normal=(0.28007 -0.168593 -0.945059)} Corner 352 31711 {normal=(0.226007 0.0602303 -0.972262)} Corner 352 31712 {normal=(0.226007 0.0602303 -0.972262)} Corner 300 31712 {normal=(0.28007 -0.168593 -0.945059)} Corner 300 31713 {normal=(0.96163 -0.149167 -0.230253)} Corner 300 31714 {normal=(0.96163 -0.149167 -0.230253)} Corner 352 31714 {normal=(0.910467 0.0312282 -0.412402)} Corner 352 31715 {normal=(0.910467 0.0312282 -0.412402)} Corner 288 31757 {normal=(0.454596 -0.189183 -0.870375)} Corner 300 31759 {normal=(0.28007 -0.168593 -0.945059)} Corner 300 31760 {normal=(0.28007 -0.168593 -0.945059)} Corner 288 31760 {normal=(0.454596 -0.189183 -0.870375)} Corner 288 31761 {normal=(0.999993 0.00362243 -0.00121113)} Corner 288 31762 {normal=(0.999993 0.00362243 -0.00121113)} Corner 300 31762 {normal=(0.96163 -0.149167 -0.230253)} Corner 300 31763 {normal=(0.96163 -0.149167 -0.230253)} Corner 232 31785 {normal=(0.347671 0.393464 0.851065)} Corner 311 31785 {normal=(0.428192 0.447876 0.784894)} Corner 311 31786 {normal=(0.428192 0.447876 0.784894)} Corner 156 31786 {normal=(0.428192 0.447876 0.784894)} Corner 156 31787 {normal=(0.428192 0.447876 0.784894)} Corner 120 31787 {normal=(0.289382 0.352801 0.889825)} Corner 120 31788 {normal=(0.289382 0.352801 0.889825)} Corner 232 31788 {normal=(0.347671 0.393464 0.851065)} Corner 120 31789 {normal=(-0.582218 0.341087 0.738025)} Corner 156 31789 {normal=(-0.441329 0.371835 0.816681)} Corner 156 31790 {normal=(-0.441329 0.371835 0.816681)} Corner 142 31790 {normal=(-0.646524 0.194492 0.737686)} Corner 142 31791 {normal=(-0.646524 0.194492 0.737686)} Corner 120 31792 {normal=(-0.582218 0.341087 0.738025)} Corner 142 31793 {normal=(-0.646524 0.194492 0.737686)} Corner 142 31794 {normal=(-0.646524 0.194492 0.737686)} Corner 379 31797 {normal=(0.511328 0.111834 -0.852078)} Corner 379 31798 {normal=(0.511328 0.111834 -0.852078)} Corner 461 31798 {normal=(0.4789 0.204437 -0.853733)} Corner 461 31799 {normal=(0.4789 0.204437 -0.853733)} Corner 230 31801 {normal=(0.187529 -0.600658 -0.777202)} Corner 368 31803 {normal=(0.216732 -0.55045 -0.806246)} Corner 368 31804 {normal=(0.216732 -0.55045 -0.806246)} Corner 230 31804 {normal=(0.187529 -0.600658 -0.777202)} Corner 379 31805 {normal=(0.639075 0.768756 -0.0244405)} Corner 355 31805 {normal=(0.537594 0.818395 0.203031)} Corner 355 31806 {normal=(0.537594 0.818395 0.203031)} Corner 461 31807 {normal=(0.661257 0.7453 0.0852449)} Corner 461 31808 {normal=(0.661257 0.7453 0.0852449)} Corner 379 31808 {normal=(0.639075 0.768756 -0.0244405)} Corner 230 31809 {normal=(-0.291089 -0.912967 -0.285934)} Corner 368 31809 {normal=(-0.118921 -0.973071 -0.197461)} Corner 368 31810 {normal=(-0.118921 -0.973071 -0.197461)} Corner 230 31812 {normal=(-0.291089 -0.912967 -0.285934)} Corner 461 31813 {normal=(0.661257 0.7453 0.0852449)} Corner 398 31814 {normal=(0.579599 0.74425 0.331899)} Corner 398 31815 {normal=(0.579599 0.74425 0.331899)} Corner 509 31815 {normal=(0.672656 0.719937 0.170954)} Corner 509 31816 {normal=(0.672656 0.719937 0.170954)} Corner 461 31816 {normal=(0.661257 0.7453 0.0852449)} Corner 461 31817 {normal=(0.4789 0.204437 -0.853733)} Corner 461 31818 {normal=(0.4789 0.204437 -0.853733)} Corner 509 31818 {normal=(0.193342 0.250826 -0.948528)} Corner 509 31819 {normal=(0.193342 0.250826 -0.948528)} Corner 577 31819 {normal=(0.363663 -0.108854 -0.925149)} Corner 577 31820 {normal=(0.363663 -0.108854 -0.925149)} Corner 368 31821 {normal=(0.216732 -0.55045 -0.806246)} Corner 577 31822 {normal=(0.363663 -0.108854 -0.925149)} Corner 577 31823 {normal=(0.363663 -0.108854 -0.925149)} Corner 571 31823 {normal=(0.259452 -0.51857 -0.814721)} Corner 571 31824 {normal=(0.259452 -0.51857 -0.814721)} Corner 368 31824 {normal=(0.216732 -0.55045 -0.806246)} Corner 368 31825 {normal=(-0.118921 -0.973071 -0.197461)} Corner 368 31826 {normal=(-0.118921 -0.973071 -0.197461)} Corner 571 31826 {normal=(-0.0644327 -0.981412 -0.180773)} Corner 571 31827 {normal=(-0.0644327 -0.981412 -0.180773)} Corner 512 31827 {normal=(-0.111317 -0.990269 -0.0835201)} Corner 512 31828 {normal=(-0.111317 -0.990269 -0.0835201)} Corner 571 31829 {normal=(0.816432 -0.312639 -0.485484)} Corner 577 31829 {normal=(0.816432 -0.312639 -0.485484)} Corner 577 31830 {normal=(0.816432 -0.312639 -0.485484)} Corner 638 31830 {normal=(0.858158 -0.23128 -0.458338)} Corner 638 31831 {normal=(0.858158 -0.23128 -0.458338)} Corner 651 31831 {normal=(0.847434 -0.253922 -0.466239)} Corner 651 31832 {normal=(0.847434 -0.253922 -0.466239)} Corner 571 31832 {normal=(0.816432 -0.312639 -0.485484)} Corner 512 31833 {normal=(0.71093 -0.647521 0.274399)} Corner 571 31833 {normal=(0.728329 -0.637246 0.251901)} Corner 571 31834 {normal=(0.728329 -0.637246 0.251901)} Corner 651 31834 {normal=(0.832305 -0.501187 0.236814)} Corner 651 31835 {normal=(0.832305 -0.501187 0.236814)} Corner 512 31836 {normal=(0.71093 -0.647521 0.274399)} Corner 509 31837 {normal=(0.193342 0.250826 -0.948528)} Corner 398 31837 {normal=(-0.72483 0.211759 -0.655576)} Corner 398 31838 {normal=(-0.72483 0.211759 -0.655576)} Corner 396 31838 {normal=(-0.72483 0.211759 -0.655576)} Corner 396 31839 {normal=(-0.72483 0.211759 -0.655576)} Corner 517 31839 {normal=(-0.207508 0.287035 -0.935175)} Corner 517 31840 {normal=(-0.207508 0.287035 -0.935175)} Corner 509 31840 {normal=(0.193342 0.250826 -0.948528)} Corner 577 31841 {normal=(0.363663 -0.108854 -0.925149)} Corner 509 31841 {normal=(0.193342 0.250826 -0.948528)} Corner 509 31842 {normal=(0.193342 0.250826 -0.948528)} Corner 517 31842 {normal=(-0.207508 0.287035 -0.935175)} Corner 517 31843 {normal=(-0.207508 0.287035 -0.935175)} Corner 638 31843 {normal=(0.216951 0.245794 -0.944732)} Corner 638 31844 {normal=(0.216951 0.245794 -0.944732)} Corner 577 31844 {normal=(0.363663 -0.108854 -0.925149)} Corner 517 31845 {normal=(-0.210834 0.957549 -0.196593)} Corner 396 31845 {normal=(-0.296976 0.95184 -0.0761979)} Corner 396 31846 {normal=(-0.296976 0.95184 -0.0761979)} Corner 542 31847 {normal=(-0.423643 0.871163 -0.248195)} Corner 542 31848 {normal=(-0.423643 0.871163 -0.248195)} Corner 517 31848 {normal=(-0.210834 0.957549 -0.196593)} Corner 638 31849 {normal=(0.216951 0.245794 -0.944732)} Corner 517 31849 {normal=(-0.207508 0.287035 -0.935175)} Corner 517 31850 {normal=(-0.207508 0.287035 -0.935175)} Corner 542 31850 {normal=(0.0883267 0.326066 -0.941212)} Corner 542 31851 {normal=(0.0883267 0.326066 -0.941212)} Corner 670 31851 {normal=(0.0223954 0.327137 -0.944712)} Corner 670 31852 {normal=(0.0223954 0.327137 -0.944712)} Corner 638 31852 {normal=(0.216951 0.245794 -0.944732)} Corner 651 31853 {normal=(0.847434 -0.253922 -0.466239)} Corner 638 31853 {normal=(0.858158 -0.23128 -0.458338)} Corner 638 31854 {normal=(0.858158 -0.23128 -0.458338)} Corner 670 31854 {normal=(0.835762 -0.181102 -0.518366)} Corner 670 31855 {normal=(0.835762 -0.181102 -0.518366)} Corner 713 31855 {normal=(0.826594 -0.182906 -0.532247)} Corner 713 31856 {normal=(0.826594 -0.182906 -0.532247)} Corner 651 31856 {normal=(0.847434 -0.253922 -0.466239)} Corner 651 31857 {normal=(0.832305 -0.501187 0.236814)} Corner 651 31858 {normal=(0.832305 -0.501187 0.236814)} Corner 713 31858 {normal=(0.94486 -0.317135 0.0816399)} Corner 713 31859 {normal=(0.94486 -0.317135 0.0816399)} Corner 670 31861 {normal=(0.0223954 0.327137 -0.944712)} Corner 542 31861 {normal=(0.0883267 0.326066 -0.941212)} Corner 542 31862 {normal=(0.0883267 0.326066 -0.941212)} Corner 563 31862 {normal=(-0.0727745 -0.0641608 -0.995283)} Corner 563 31863 {normal=(-0.0727745 -0.0641608 -0.995283)} Corner 677 31863 {normal=(-0.0236898 0.166605 -0.985739)} Corner 677 31864 {normal=(-0.0236898 0.166605 -0.985739)} Corner 670 31864 {normal=(0.0223954 0.327137 -0.944712)} Corner 713 31865 {normal=(0.826594 -0.182906 -0.532247)} Corner 670 31865 {normal=(0.835762 -0.181102 -0.518366)} Corner 670 31866 {normal=(0.835762 -0.181102 -0.518366)} Corner 677 31866 {normal=(0.762352 -0.193247 -0.617637)} Corner 677 31867 {normal=(0.762352 -0.193247 -0.617637)} Corner 731 31867 {normal=(0.762352 -0.193247 -0.617637)} Corner 731 31868 {normal=(0.762352 -0.193247 -0.617637)} Corner 713 31868 {normal=(0.826594 -0.182906 -0.532247)} Corner 713 31869 {normal=(0.94486 -0.317135 0.0816399)} Corner 713 31870 {normal=(0.94486 -0.317135 0.0816399)} Corner 731 31870 {normal=(0.961738 -0.272502 -0.0283278)} Corner 731 31871 {normal=(0.961738 -0.272502 -0.0283278)} Corner 740 31871 {normal=(0.93667 -0.34193 0.0757175)} Corner 740 31872 {normal=(0.93667 -0.34193 0.0757175)} Corner 542 31873 {normal=(-0.423643 0.871163 -0.248195)} Corner 469 31874 {normal=(-0.717084 0.681669 -0.145319)} Corner 469 31875 {normal=(-0.717084 0.681669 -0.145319)} Corner 563 31875 {normal=(-0.623349 0.727043 -0.287827)} Corner 563 31876 {normal=(-0.623349 0.727043 -0.287827)} Corner 542 31876 {normal=(-0.423643 0.871163 -0.248195)} Corner 740 31877 {normal=(0.372564 0.920673 0.116433)} Corner 731 31877 {normal=(0.366535 0.921596 0.127722)} Corner 731 31878 {normal=(0.366535 0.921596 0.127722)} Corner 641 31878 {normal=(0.322389 0.946511 0.0135311)} Corner 641 31879 {normal=(0.322389 0.946511 0.0135311)} Corner 740 31880 {normal=(0.372564 0.920673 0.116433)} Corner 563 31881 {normal=(-0.0727745 -0.0641608 -0.995283)} Corner 469 31881 {normal=(-0.343338 -0.933072 -0.107214)} Corner 469 31882 {normal=(-0.343338 -0.933072 -0.107214)} Corner 563 31884 {normal=(-0.0727745 -0.0641608 -0.995283)} Corner 677 31885 {normal=(-0.0236898 0.166605 -0.985739)} Corner 563 31885 {normal=(-0.0727745 -0.0641608 -0.995283)} Corner 563 31886 {normal=(-0.0727745 -0.0641608 -0.995283)} Corner 581 31887 {normal=(-0.109685 -0.0583133 -0.992254)} Corner 581 31888 {normal=(-0.109685 -0.0583133 -0.992254)} Corner 677 31888 {normal=(-0.0236898 0.166605 -0.985739)} Corner 731 31889 {normal=(0.16793 0.485983 -0.857683)} Corner 677 31889 {normal=(0.16793 0.485983 -0.857683)} Corner 677 31890 {normal=(0.16793 0.485983 -0.857683)} Corner 581 31890 {normal=(0.168192 0.566328 -0.806836)} Corner 581 31891 {normal=(0.168192 0.566328 -0.806836)} Corner 641 31891 {normal=(0.168271 0.545282 -0.821189)} Corner 641 31892 {normal=(0.168271 0.545282 -0.821189)} Corner 731 31892 {normal=(0.16793 0.485983 -0.857683)} Corner 581 31897 {normal=(-0.109685 -0.0583133 -0.992254)} Corner 422 31899 {normal=(-0.210407 -0.214227 -0.953853)} Corner 422 31900 {normal=(-0.210407 -0.214227 -0.953853)} Corner 581 31900 {normal=(-0.109685 -0.0583133 -0.992254)} Corner 641 31901 {normal=(0.168271 0.545282 -0.821189)} Corner 581 31901 {normal=(0.168192 0.566328 -0.806836)} Corner 581 31902 {normal=(0.168192 0.566328 -0.806836)} Corner 422 31902 {normal=(0.116025 0.582522 -0.804491)} Corner 422 31903 {normal=(0.116025 0.582522 -0.804491)} Corner 406 31903 {normal=(0.0895538 0.557472 -0.825352)} Corner 406 31904 {normal=(0.0895538 0.557472 -0.825352)} Corner 641 31904 {normal=(0.168271 0.545282 -0.821189)} Corner 641 31905 {normal=(0.322389 0.946511 0.0135311)} Corner 641 31906 {normal=(0.322389 0.946511 0.0135311)} Corner 406 31906 {normal=(0.0782647 0.988473 -0.129599)} Corner 406 31907 {normal=(0.0782647 0.988473 -0.129599)} Corner 406 31909 {normal=(0.0895538 0.557472 -0.825352)} Corner 422 31909 {normal=(0.116025 0.582522 -0.804491)} Corner 422 31910 {normal=(0.116025 0.582522 -0.804491)} Corner 320 31910 {normal=(0.0307341 0.498868 -0.866133)} Corner 320 31911 {normal=(0.0307341 0.498868 -0.866133)} Corner 282 31911 {normal=(0.0307341 0.498868 -0.866133)} Corner 282 31912 {normal=(0.0307341 0.498868 -0.866133)} Corner 406 31912 {normal=(0.0895538 0.557472 -0.825352)} Corner 406 31913 {normal=(0.0782647 0.988473 -0.129599)} Corner 406 31914 {normal=(0.0782647 0.988473 -0.129599)} Corner 282 31914 {normal=(0.0978301 0.971285 -0.216873)} Corner 282 31915 {normal=(0.0978301 0.971285 -0.216873)} Corner 285 31915 {normal=(0.15116 0.966426 -0.207776)} Corner 285 31916 {normal=(0.15116 0.966426 -0.207776)} Corner 422 31921 {normal=(-0.210407 -0.214227 -0.953853)} Corner 320 31923 {normal=(-0.305723 -0.241767 -0.920914)} Corner 320 31924 {normal=(-0.305723 -0.241767 -0.920914)} Corner 422 31924 {normal=(-0.210407 -0.214227 -0.953853)} Corner 282 31925 {normal=(-0.438877 0.286584 -0.85162)} Corner 256 31926 {normal=(-0.646663 0.536581 -0.542133)} Corner 256 31927 {normal=(-0.646663 0.536581 -0.542133)} Corner 285 31927 {normal=(-0.400836 0.487852 -0.775455)} Corner 285 31928 {normal=(-0.400836 0.487852 -0.775455)} Corner 282 31928 {normal=(-0.438877 0.286584 -0.85162)} Corner 320 31931 {normal=(-0.305723 -0.241767 -0.920914)} Corner 320 31932 {normal=(-0.305723 -0.241767 -0.920914)} Corner 406 31937 {normal=(0.0782647 0.988473 -0.129599)} Corner 406 31940 {normal=(0.0782647 0.988473 -0.129599)} Corner 234 31941 {normal=(-0.770489 0.528209 -0.35685)} Corner 234 31942 {normal=(-0.770489 0.528209 -0.35685)} Corner 253 31942 {normal=(-0.803622 0.526692 -0.277106)} Corner 253 31943 {normal=(-0.803622 0.526692 -0.277106)} Corner 256 31943 {normal=(-0.646663 0.536581 -0.542133)} Corner 256 31944 {normal=(-0.646663 0.536581 -0.542133)} Corner 226 31946 {normal=(-0.860125 -0.472046 -0.193282)} Corner 226 31947 {normal=(-0.860125 -0.472046 -0.193282)} Corner 221 31947 {normal=(-0.870157 0.25288 -0.422941)} Corner 221 31948 {normal=(-0.870157 0.25288 -0.422941)} Corner 234 31949 {normal=(-0.770489 0.528209 -0.35685)} Corner 221 31951 {normal=(-0.870157 0.25288 -0.422941)} Corner 221 31952 {normal=(-0.870157 0.25288 -0.422941)} Corner 234 31952 {normal=(-0.770489 0.528209 -0.35685)} Corner 282 31953 {normal=(-0.438877 0.286584 -0.85162)} Corner 282 31954 {normal=(-0.438877 0.286584 -0.85162)} Corner 355 31957 {normal=(-0.341169 0.906355 -0.249246)} Corner 379 31957 {normal=(-0.341169 0.906355 -0.249246)} Corner 379 31958 {normal=(-0.341169 0.906355 -0.249246)} Corner 336 31958 {normal=(-0.341169 0.906355 -0.249246)} Corner 336 31959 {normal=(-0.341169 0.906355 -0.249246)} Corner 327 31959 {normal=(-0.341169 0.906355 -0.249246)} Corner 327 31960 {normal=(-0.341169 0.906355 -0.249246)} Corner 355 31960 {normal=(-0.341169 0.906355 -0.249246)} Corner 230 31961 {normal=(-0.291089 -0.912967 -0.285934)} Corner 182 31963 {normal=(-0.485607 -0.75939 -0.433028)} Corner 182 31964 {normal=(-0.485607 -0.75939 -0.433028)} Corner 230 31964 {normal=(-0.291089 -0.912967 -0.285934)} Corner 230 31965 {normal=(0.187529 -0.600658 -0.777202)} Corner 230 31966 {normal=(0.187529 -0.600658 -0.777202)} Corner 182 31966 {normal=(0.0272071 -0.5093 -0.860159)} Corner 182 31967 {normal=(0.0272071 -0.5093 -0.860159)} Corner 379 31969 {normal=(0.511328 0.111834 -0.852078)} Corner 336 31971 {normal=(0.610713 -0.106723 -0.784627)} Corner 336 31972 {normal=(0.610713 -0.106723 -0.784627)} Corner 379 31972 {normal=(0.511328 0.111834 -0.852078)} Corner 219 31973 {normal=(-0.537685 -0.562011 0.628521)} Corner 219 31974 {normal=(-0.537685 -0.562011 0.628521)} Corner 172 31974 {normal=(-0.599243 -0.625457 0.499711)} Corner 172 31975 {normal=(-0.599243 -0.625457 0.499711)} Corner 296 31981 {normal=(-0.844523 -0.45954 -0.274962)} Corner 355 31981 {normal=(-0.844523 -0.45954 -0.274962)} Corner 355 31982 {normal=(-0.844523 -0.45954 -0.274962)} Corner 327 31982 {normal=(-0.844523 -0.45954 -0.274962)} Corner 327 31983 {normal=(-0.844523 -0.45954 -0.274962)} Corner 351 31983 {normal=(-0.844523 -0.45954 -0.274962)} Corner 351 31984 {normal=(-0.844523 -0.45954 -0.274962)} Corner 296 31984 {normal=(-0.844523 -0.45954 -0.274962)} Corner 287 31985 {normal=(-0.414166 0.220029 0.883206)} Corner 287 31988 {normal=(-0.414166 0.220029 0.883206)} Corner 234 31989 {normal=(-0.776967 0.514368 0.362972)} Corner 234 31990 {normal=(-0.776967 0.514368 0.362972)} Corner 221 31990 {normal=(-0.878252 0.241508 0.412732)} Corner 221 31991 {normal=(-0.878252 0.241508 0.412732)} Corner 239 31993 {normal=(-0.837322 -0.193223 0.511425)} Corner 221 31994 {normal=(-0.878252 0.241508 0.412732)} Corner 221 31995 {normal=(-0.878252 0.241508 0.412732)} Corner 226 31995 {normal=(-0.932291 -0.146939 0.33052)} Corner 226 31996 {normal=(-0.932291 -0.146939 0.33052)} Corner 239 31996 {normal=(-0.837322 -0.193223 0.511425)} Corner 234 31997 {normal=(-0.776967 0.514368 0.362972)} Corner 254 31998 {normal=(-0.673534 0.473902 0.567247)} Corner 254 31999 {normal=(-0.673534 0.473902 0.567247)} Corner 253 31999 {normal=(-0.821859 0.493605 0.284432)} Corner 253 32000 {normal=(-0.821859 0.493605 0.284432)} Corner 234 32000 {normal=(-0.776967 0.514368 0.362972)} Corner 408 32001 {normal=(0.11062 0.966466 0.231746)} Corner 408 32002 {normal=(0.11062 0.966466 0.231746)} Corner 239 32005 {normal=(-0.837322 -0.193223 0.511425)} Corner 239 32006 {normal=(-0.837322 -0.193223 0.511425)} Corner 257 32006 {normal=(-0.575975 -0.279931 0.768044)} Corner 257 32007 {normal=(-0.575975 -0.279931 0.768044)} Corner 257 32009 {normal=(-0.575975 -0.279931 0.768044)} Corner 309 32009 {normal=(-0.277492 -0.349187 0.895023)} Corner 309 32010 {normal=(-0.277492 -0.349187 0.895023)} Corner 321 32010 {normal=(-0.292837 -0.271683 0.916752)} Corner 321 32011 {normal=(-0.292837 -0.271683 0.916752)} Corner 257 32012 {normal=(-0.575975 -0.279931 0.768044)} Corner 287 32013 {normal=(-0.414166 0.220029 0.883206)} Corner 287 32014 {normal=(-0.414166 0.220029 0.883206)} Corner 286 32014 {normal=(-0.401044 0.384669 0.83138)} Corner 286 32015 {normal=(-0.401044 0.384669 0.83138)} Corner 254 32015 {normal=(-0.673534 0.473902 0.567247)} Corner 254 32016 {normal=(-0.673534 0.473902 0.567247)} Corner 403 32017 {normal=(-0.11227 -0.453834 0.883985)} Corner 423 32017 {normal=(-0.117488 -0.439658 0.890448)} Corner 423 32018 {normal=(-0.117488 -0.439658 0.890448)} Corner 321 32018 {normal=(-0.292837 -0.271683 0.916752)} Corner 321 32019 {normal=(-0.292837 -0.271683 0.916752)} Corner 309 32019 {normal=(-0.277492 -0.349187 0.895023)} Corner 309 32020 {normal=(-0.277492 -0.349187 0.895023)} Corner 403 32020 {normal=(-0.11227 -0.453834 0.883985)} Corner 403 32021 {normal=(-0.306618 -0.905981 0.291862)} Corner 403 32022 {normal=(-0.306618 -0.905981 0.291862)} Corner 309 32022 {normal=(-0.438162 -0.868745 0.23086)} Corner 309 32023 {normal=(-0.438162 -0.868745 0.23086)} Corner 408 32025 {normal=(0.11062 0.966466 0.231746)} Corner 286 32026 {normal=(0.158061 0.948045 0.276092)} Corner 286 32027 {normal=(0.158061 0.948045 0.276092)} Corner 287 32027 {normal=(0.108207 0.93807 0.329113)} Corner 287 32028 {normal=(0.108207 0.93807 0.329113)} Corner 408 32028 {normal=(0.11062 0.966466 0.231746)} Corner 423 32029 {normal=(0.153014 0.472968 0.867691)} Corner 408 32029 {normal=(0.107091 0.459683 0.881603)} Corner 408 32030 {normal=(0.107091 0.459683 0.881603)} Corner 287 32030 {normal=(0.0319939 0.435695 0.899526)} Corner 287 32031 {normal=(0.0319939 0.435695 0.899526)} Corner 321 32031 {normal=(0.0319939 0.435695 0.899526)} Corner 321 32032 {normal=(0.0319939 0.435695 0.899526)} Corner 423 32032 {normal=(0.153014 0.472968 0.867691)} Corner 639 32033 {normal=(0.34184 0.924963 0.1661)} Corner 408 32035 {normal=(0.11062 0.966466 0.231746)} Corner 408 32036 {normal=(0.11062 0.966466 0.231746)} Corner 639 32036 {normal=(0.34184 0.924963 0.1661)} Corner 585 32037 {normal=(0.155195 0.419087 0.894584)} Corner 639 32037 {normal=(0.154068 0.417804 0.895379)} Corner 639 32038 {normal=(0.154068 0.417804 0.895379)} Corner 408 32038 {normal=(0.107091 0.459683 0.881603)} Corner 408 32039 {normal=(0.107091 0.459683 0.881603)} Corner 423 32039 {normal=(0.153014 0.472968 0.867691)} Corner 423 32040 {normal=(0.153014 0.472968 0.867691)} Corner 585 32040 {normal=(0.155195 0.419087 0.894584)} Corner 439 32041 {normal=(-0.207751 -0.423718 0.881648)} Corner 585 32041 {normal=(-0.281212 -0.361634 0.888898)} Corner 585 32042 {normal=(-0.281212 -0.361634 0.888898)} Corner 423 32042 {normal=(-0.117488 -0.439658 0.890448)} Corner 423 32043 {normal=(-0.117488 -0.439658 0.890448)} Corner 403 32043 {normal=(-0.11227 -0.453834 0.883985)} Corner 403 32044 {normal=(-0.11227 -0.453834 0.883985)} Corner 439 32044 {normal=(-0.207751 -0.423718 0.881648)} Corner 439 32045 {normal=(-0.217671 -0.921776 0.320855)} Corner 439 32046 {normal=(-0.217671 -0.921776 0.320855)} Corner 403 32046 {normal=(-0.306618 -0.905981 0.291862)} Corner 403 32047 {normal=(-0.306618 -0.905981 0.291862)} Corner 599 32049 {normal=(0.102624 0.358317 0.927943)} Corner 728 32049 {normal=(0.102624 0.358317 0.927943)} Corner 728 32050 {normal=(0.102624 0.358317 0.927943)} Corner 639 32050 {normal=(0.154068 0.417804 0.895379)} Corner 639 32051 {normal=(0.154068 0.417804 0.895379)} Corner 585 32051 {normal=(0.155195 0.419087 0.894584)} Corner 585 32052 {normal=(0.155195 0.419087 0.894584)} Corner 599 32052 {normal=(0.102624 0.358317 0.927943)} Corner 488 32053 {normal=(-0.473595 -0.0668025 0.878206)} Corner 599 32053 {normal=(-0.461835 -0.103252 0.880935)} Corner 599 32054 {normal=(-0.461835 -0.103252 0.880935)} Corner 585 32054 {normal=(-0.281212 -0.361634 0.888898)} Corner 585 32055 {normal=(-0.281212 -0.361634 0.888898)} Corner 439 32055 {normal=(-0.207751 -0.423718 0.881648)} Corner 439 32056 {normal=(-0.207751 -0.423718 0.881648)} Corner 488 32056 {normal=(-0.473595 -0.0668025 0.878206)} Corner 469 32057 {normal=(-0.343338 -0.933072 -0.107214)} Corner 488 32057 {normal=(-0.405249 -0.873656 0.269256)} Corner 488 32058 {normal=(-0.405249 -0.873656 0.269256)} Corner 439 32058 {normal=(-0.217671 -0.921776 0.320855)} Corner 439 32059 {normal=(-0.217671 -0.921776 0.320855)} Corner 469 32060 {normal=(-0.343338 -0.933072 -0.107214)} Corner 728 32061 {normal=(0.378274 0.919649 0.105614)} Corner 740 32061 {normal=(0.372564 0.920673 0.116433)} Corner 740 32062 {normal=(0.372564 0.920673 0.116433)} Corner 639 32063 {normal=(0.34184 0.924963 0.1661)} Corner 639 32064 {normal=(0.34184 0.924963 0.1661)} Corner 728 32064 {normal=(0.378274 0.919649 0.105614)} Corner 456 32065 {normal=(-0.659448 0.750843 0.0369219)} Corner 456 32066 {normal=(-0.659448 0.750843 0.0369219)} Corner 488 32066 {normal=(-0.778464 0.627291 -0.02238)} Corner 488 32067 {normal=(-0.778464 0.627291 -0.02238)} Corner 469 32067 {normal=(-0.717084 0.681669 -0.145319)} Corner 469 32068 {normal=(-0.717084 0.681669 -0.145319)} Corner 678 32069 {normal=(0.867387 -0.411803 0.279389)} Corner 740 32070 {normal=(0.93667 -0.34193 0.0757175)} Corner 740 32071 {normal=(0.93667 -0.34193 0.0757175)} Corner 728 32071 {normal=(0.883645 -0.42114 0.204483)} Corner 728 32072 {normal=(0.883645 -0.42114 0.204483)} Corner 678 32072 {normal=(0.867387 -0.411803 0.279389)} Corner 590 32073 {normal=(0.363852 -0.277012 0.889312)} Corner 678 32073 {normal=(0.351841 -0.266039 0.897458)} Corner 678 32074 {normal=(0.351841 -0.266039 0.897458)} Corner 728 32074 {normal=(0.326292 -0.242757 0.913566)} Corner 728 32075 {normal=(0.326292 -0.242757 0.913566)} Corner 599 32075 {normal=(0.326292 -0.242757 0.913566)} Corner 599 32076 {normal=(0.326292 -0.242757 0.913566)} Corner 590 32076 {normal=(0.363852 -0.277012 0.889312)} Corner 456 32077 {normal=(-0.481933 0.106483 0.869714)} Corner 590 32077 {normal=(-0.499824 0.103011 0.85998)} Corner 590 32078 {normal=(-0.499824 0.103011 0.85998)} Corner 599 32078 {normal=(-0.461835 -0.103252 0.880935)} Corner 599 32079 {normal=(-0.461835 -0.103252 0.880935)} Corner 488 32079 {normal=(-0.473595 -0.0668025 0.878206)} Corner 488 32080 {normal=(-0.473595 -0.0668025 0.878206)} Corner 456 32080 {normal=(-0.481933 0.106483 0.869714)} Corner 586 32081 {normal=(0.779044 -0.533622 0.329148)} Corner 678 32083 {normal=(0.867387 -0.411803 0.279389)} Corner 678 32084 {normal=(0.867387 -0.411803 0.279389)} Corner 586 32084 {normal=(0.779044 -0.533622 0.329148)} Corner 492 32085 {normal=(0.337259 -0.342123 0.877045)} Corner 586 32085 {normal=(0.331145 -0.346569 0.877629)} Corner 586 32086 {normal=(0.331145 -0.346569 0.877629)} Corner 678 32086 {normal=(0.351841 -0.266039 0.897458)} Corner 678 32087 {normal=(0.351841 -0.266039 0.897458)} Corner 590 32087 {normal=(0.363852 -0.277012 0.889312)} Corner 590 32088 {normal=(0.363852 -0.277012 0.889312)} Corner 492 32088 {normal=(0.337259 -0.342123 0.877045)} Corner 388 32089 {normal=(-0.453565 0.13849 0.880397)} Corner 492 32089 {normal=(-0.44793 0.149802 0.88143)} Corner 492 32090 {normal=(-0.44793 0.149802 0.88143)} Corner 590 32090 {normal=(-0.499824 0.103011 0.85998)} Corner 590 32091 {normal=(-0.499824 0.103011 0.85998)} Corner 456 32091 {normal=(-0.481933 0.106483 0.869714)} Corner 456 32092 {normal=(-0.481933 0.106483 0.869714)} Corner 388 32092 {normal=(-0.453565 0.13849 0.880397)} Corner 396 32093 {normal=(-0.296976 0.95184 -0.0761979)} Corner 388 32093 {normal=(-0.426064 0.89554 0.128362)} Corner 388 32094 {normal=(-0.426064 0.89554 0.128362)} Corner 456 32094 {normal=(-0.659448 0.750843 0.0369219)} Corner 456 32095 {normal=(-0.659448 0.750843 0.0369219)} Corner 396 32096 {normal=(-0.296976 0.95184 -0.0761979)} Corner 371 32097 {normal=(-0.43039 0.199548 0.88031)} Corner 410 32097 {normal=(-0.43054 0.198616 0.880447)} Corner 410 32098 {normal=(-0.43054 0.198616 0.880447)} Corner 492 32098 {normal=(-0.44793 0.149802 0.88143)} Corner 492 32099 {normal=(-0.44793 0.149802 0.88143)} Corner 388 32099 {normal=(-0.453565 0.13849 0.880397)} Corner 388 32100 {normal=(-0.453565 0.13849 0.880397)} Corner 371 32100 {normal=(-0.43039 0.199548 0.88031)} Corner 398 32101 {normal=(-0.981153 0.192404 -0.017897)} Corner 371 32101 {normal=(-0.981153 0.192404 -0.017897)} Corner 371 32102 {normal=(-0.981153 0.192404 -0.017897)} Corner 388 32102 {normal=(-0.981153 0.192404 -0.017897)} Corner 388 32103 {normal=(-0.981153 0.192404 -0.017897)} Corner 396 32103 {normal=(-0.981153 0.192404 -0.017897)} Corner 396 32104 {normal=(-0.981153 0.192404 -0.017897)} Corner 398 32104 {normal=(-0.981153 0.192404 -0.017897)} Corner 459 32105 {normal=(0.693478 -0.656899 0.295927)} Corner 512 32105 {normal=(0.71093 -0.647521 0.274399)} Corner 512 32106 {normal=(0.71093 -0.647521 0.274399)} Corner 586 32107 {normal=(0.779044 -0.533622 0.329148)} Corner 586 32108 {normal=(0.779044 -0.533622 0.329148)} Corner 459 32108 {normal=(0.693478 -0.656899 0.295927)} Corner 410 32109 {normal=(0.278915 -0.38321 0.880543)} Corner 459 32109 {normal=(0.278915 -0.38321 0.880543)} Corner 459 32110 {normal=(0.278915 -0.38321 0.880543)} Corner 586 32110 {normal=(0.331145 -0.346569 0.877629)} Corner 586 32111 {normal=(0.331145 -0.346569 0.877629)} Corner 492 32111 {normal=(0.337259 -0.342123 0.877045)} Corner 492 32112 {normal=(0.337259 -0.342123 0.877045)} Corner 410 32112 {normal=(0.278915 -0.38321 0.880543)} Corner 512 32114 {normal=(-0.111317 -0.990269 -0.0835201)} Corner 512 32115 {normal=(-0.111317 -0.990269 -0.0835201)} Corner 459 32115 {normal=(-0.344909 -0.857262 0.382283)} Corner 459 32116 {normal=(-0.344909 -0.857262 0.382283)} Corner 322 32117 {normal=(-0.487969 -0.557249 0.671833)} Corner 459 32118 {normal=(-0.344909 -0.857262 0.382283)} Corner 459 32119 {normal=(-0.344909 -0.857262 0.382283)} Corner 410 32119 {normal=(-0.468219 -0.56704 0.67767)} Corner 410 32120 {normal=(-0.468219 -0.56704 0.67767)} Corner 322 32120 {normal=(-0.487969 -0.557249 0.671833)} Corner 340 32121 {normal=(-0.403439 0.232233 0.885045)} Corner 322 32121 {normal=(-0.411906 0.227735 0.88231)} Corner 322 32122 {normal=(-0.411906 0.227735 0.88231)} Corner 410 32122 {normal=(-0.43054 0.198616 0.880447)} Corner 410 32123 {normal=(-0.43054 0.198616 0.880447)} Corner 371 32123 {normal=(-0.43039 0.199548 0.88031)} Corner 371 32124 {normal=(-0.43039 0.199548 0.88031)} Corner 340 32124 {normal=(-0.403439 0.232233 0.885045)} Corner 340 32125 {normal=(0.429247 0.765243 0.47974)} Corner 340 32126 {normal=(0.429247 0.765243 0.47974)} Corner 371 32126 {normal=(0.489975 0.744847 0.452911)} Corner 371 32127 {normal=(0.489975 0.744847 0.452911)} Corner 398 32127 {normal=(0.579599 0.74425 0.331899)} Corner 398 32128 {normal=(0.579599 0.74425 0.331899)} Corner 355 32133 {normal=(0.537594 0.818395 0.203031)} Corner 296 32133 {normal=(0.317975 0.792042 0.521115)} Corner 296 32134 {normal=(0.317975 0.792042 0.521115)} Corner 340 32134 {normal=(0.429247 0.765243 0.47974)} Corner 340 32135 {normal=(0.429247 0.765243 0.47974)} Corner 355 32136 {normal=(0.537594 0.818395 0.203031)} Corner 219 32137 {normal=(-0.537685 -0.562011 0.628521)} Corner 322 32139 {normal=(-0.487969 -0.557249 0.671833)} Corner 322 32140 {normal=(-0.487969 -0.557249 0.671833)} Corner 219 32140 {normal=(-0.537685 -0.562011 0.628521)} Corner 296 32141 {normal=(-0.392182 0.238146 0.888527)} Corner 219 32141 {normal=(-0.392182 0.238146 0.888527)} Corner 219 32142 {normal=(-0.392182 0.238146 0.888527)} Corner 322 32142 {normal=(-0.411906 0.227735 0.88231)} Corner 322 32143 {normal=(-0.411906 0.227735 0.88231)} Corner 340 32143 {normal=(-0.403439 0.232233 0.885045)} Corner 340 32144 {normal=(-0.403439 0.232233 0.885045)} Corner 296 32144 {normal=(-0.392182 0.238146 0.888527)} Corner 182 32145 {normal=(0.0272071 -0.5093 -0.860159)} Corner 182 32146 {normal=(0.0272071 -0.5093 -0.860159)} Corner 131 32146 {normal=(-0.403809 -0.134994 -0.904829)} Corner 131 32147 {normal=(-0.403809 -0.134994 -0.904829)} Corner 336 32149 {normal=(0.610713 -0.106723 -0.784627)} Corner 324 32151 {normal=(0.573954 -0.130641 -0.808399)} Corner 324 32152 {normal=(0.573954 -0.130641 -0.808399)} Corner 336 32152 {normal=(0.610713 -0.106723 -0.784627)} Corner 327 32153 {normal=(0.991112 0.125768 0.0433507)} Corner 336 32153 {normal=(0.991112 0.125768 0.0433507)} Corner 336 32154 {normal=(0.991112 0.125768 0.0433507)} Corner 324 32154 {normal=(0.960285 0.258383 0.105318)} Corner 324 32155 {normal=(0.960285 0.258383 0.105318)} Corner 328 32155 {normal=(0.961752 0.229869 0.148975)} Corner 328 32156 {normal=(0.961752 0.229869 0.148975)} Corner 327 32156 {normal=(0.991112 0.125768 0.0433507)} Corner 351 32157 {normal=(0.448155 0.892312 0.0541851)} Corner 327 32157 {normal=(0.474383 0.858881 0.19309)} Corner 327 32158 {normal=(0.474383 0.858881 0.19309)} Corner 328 32158 {normal=(0.474383 0.858881 0.19309)} Corner 328 32159 {normal=(0.474383 0.858881 0.19309)} Corner 274 32159 {normal=(0.438374 0.898712 0.0120013)} Corner 274 32160 {normal=(0.438374 0.898712 0.0120013)} Corner 351 32160 {normal=(0.448155 0.892312 0.0541851)} Corner 172 32161 {normal=(-0.599243 -0.625457 0.499711)} Corner 172 32162 {normal=(-0.599243 -0.625457 0.499711)} Corner 111 32162 {normal=(-0.645623 -0.697285 0.311393)} Corner 111 32163 {normal=(-0.645623 -0.697285 0.311393)} Corner 100 32163 {normal=(-0.663546 -0.747897 -0.0188594)} Corner 100 32164 {normal=(-0.663546 -0.747897 -0.0188594)} Corner 100 32165 {normal=(-0.994326 -0.0515171 -0.0930647)} Corner 111 32165 {normal=(-0.935322 -0.188589 -0.299344)} Corner 111 32166 {normal=(-0.935322 -0.188589 -0.299344)} Corner 100 32168 {normal=(-0.994326 -0.0515171 -0.0930647)} Corner 96 32169 {normal=(-0.955789 0.0818971 -0.282419)} Corner 100 32169 {normal=(-0.994326 -0.0515171 -0.0930647)} Corner 100 32170 {normal=(-0.994326 -0.0515171 -0.0930647)} Corner 96 32172 {normal=(-0.955789 0.0818971 -0.282419)} Corner 131 32173 {normal=(-0.403809 -0.134994 -0.904829)} Corner 96 32173 {normal=(-0.955789 0.0818971 -0.282419)} Corner 96 32174 {normal=(-0.955789 0.0818971 -0.282419)} Corner 131 32176 {normal=(-0.403809 -0.134994 -0.904829)} Corner 131 32177 {normal=(-0.403809 -0.134994 -0.904829)} Corner 131 32178 {normal=(-0.403809 -0.134994 -0.904829)} Corner 324 32181 {normal=(0.573954 -0.130641 -0.808399)} Corner 288 32183 {normal=(0.454596 -0.189183 -0.870375)} Corner 288 32184 {normal=(0.454596 -0.189183 -0.870375)} Corner 324 32184 {normal=(0.573954 -0.130641 -0.808399)} Corner 328 32185 {normal=(0.961752 0.229869 0.148975)} Corner 324 32185 {normal=(0.960285 0.258383 0.105318)} Corner 324 32186 {normal=(0.960285 0.258383 0.105318)} Corner 288 32186 {normal=(0.999993 0.00362243 -0.00121113)} Corner 288 32187 {normal=(0.999993 0.00362243 -0.00121113)} Corner 328 32188 {normal=(0.961752 0.229869 0.148975)} Corner 274 32189 {normal=(0.937872 0.284328 0.198881)} Corner 328 32189 {normal=(0.961752 0.229869 0.148975)} Corner 328 32190 {normal=(0.961752 0.229869 0.148975)} Corner 274 32192 {normal=(0.937872 0.284328 0.198881)} Corner 258 32193 {normal=(0.981522 0.182192 0.0584899)} Corner 274 32193 {normal=(0.937872 0.284328 0.198881)} Corner 274 32194 {normal=(0.937872 0.284328 0.198881)} Corner 258 32196 {normal=(0.981522 0.182192 0.0584899)} Corner 248 32197 {normal=(0.972912 0.18015 0.144873)} Corner 258 32197 {normal=(0.981522 0.182192 0.0584899)} Corner 258 32198 {normal=(0.981522 0.182192 0.0584899)} Corner 248 32200 {normal=(0.972912 0.18015 0.144873)} Corner 68 32201 {normal=(-0.973204 0.0658995 0.220297)} Corner 70 32201 {normal=(-0.952169 -0.0209777 -0.304852)} Corner 70 32202 {normal=(-0.952169 -0.0209777 -0.304852)} Corner 68 32204 {normal=(-0.973204 0.0658995 0.220297)} Corner 51 32205 {normal=(-0.997874 0.0359086 0.0543786)} Corner 68 32205 {normal=(-0.973204 0.0658995 0.220297)} Corner 68 32206 {normal=(-0.973204 0.0658995 0.220297)} Corner 51 32208 {normal=(-0.997874 0.0359086 0.0543786)} Corner 64 32209 {normal=(-0.913393 -0.129239 -0.38602)} Corner 51 32209 {normal=(-0.997874 0.0359086 0.0543786)} Corner 51 32210 {normal=(-0.997874 0.0359086 0.0543786)} Corner 64 32212 {normal=(-0.913393 -0.129239 -0.38602)} Corner 111 32213 {normal=(-0.935322 -0.188589 -0.299344)} Corner 64 32213 {normal=(-0.913393 -0.129239 -0.38602)} Corner 64 32214 {normal=(-0.913393 -0.129239 -0.38602)} Corner 111 32216 {normal=(-0.935322 -0.188589 -0.299344)} Corner 172 32217 {normal=(-0.314245 -0.890839 -0.328109)} Corner 64 32218 {normal=(-0.513886 -0.835499 -0.194582)} Corner 64 32219 {normal=(-0.513886 -0.835499 -0.194582)} Corner 111 32219 {normal=(-0.484023 -0.843071 -0.234422)} Corner 111 32220 {normal=(-0.484023 -0.843071 -0.234422)} Corner 172 32220 {normal=(-0.314245 -0.890839 -0.328109)} Corner 279 32221 {normal=(0.415903 0.904331 -0.0959729)} Corner 351 32221 {normal=(0.448155 0.892312 0.0541851)} Corner 351 32222 {normal=(0.448155 0.892312 0.0541851)} Corner 274 32222 {normal=(0.438374 0.898712 0.0120013)} Corner 274 32223 {normal=(0.438374 0.898712 0.0120013)} Corner 258 32223 {normal=(0.421333 0.903093 -0.0830807)} Corner 258 32224 {normal=(0.421333 0.903093 -0.0830807)} Corner 279 32224 {normal=(0.415903 0.904331 -0.0959729)} Corner 278 32225 {normal=(0.466623 0.88074 -0.0809999)} Corner 279 32225 {normal=(0.415903 0.904331 -0.0959729)} Corner 279 32226 {normal=(0.415903 0.904331 -0.0959729)} Corner 258 32226 {normal=(0.421333 0.903093 -0.0830807)} Corner 258 32227 {normal=(0.421333 0.903093 -0.0830807)} Corner 248 32227 {normal=(0.483279 0.874277 -0.0456157)} Corner 248 32228 {normal=(0.483279 0.874277 -0.0456157)} Corner 278 32228 {normal=(0.466623 0.88074 -0.0809999)} Corner 138 32229 {normal=(-0.437007 -0.898389 -0.0438495)} Corner 138 32230 {normal=(-0.437007 -0.898389 -0.0438495)} Corner 70 32230 {normal=(-0.55827 -0.818093 -0.138055)} Corner 70 32231 {normal=(-0.55827 -0.818093 -0.138055)} Corner 68 32231 {normal=(-0.605679 -0.769601 0.202159)} Corner 68 32232 {normal=(-0.605679 -0.769601 0.202159)} Corner 243 32233 {normal=(0.182516 0.0816396 -0.979808)} Corner 354 32233 {normal=(0.182516 0.0816397 -0.979808)} Corner 354 32234 {normal=(0.182516 0.0816397 -0.979808)} Corner 480 32234 {normal=(0.169617 0.0993732 -0.980487)} Corner 480 32235 {normal=(0.169617 0.0993732 -0.980487)} Corner 481 32235 {normal=(0.155536 0.118551 -0.980691)} Corner 481 32236 {normal=(0.155536 0.118551 -0.980691)} Corner 243 32236 {normal=(0.182516 0.0816396 -0.979808)} Corner 243 32237 {normal=(-0.201137 -0.781967 -0.589976)} Corner 243 32238 {normal=(-0.201137 -0.781967 -0.589976)} Corner 481 32238 {normal=(-0.264809 -0.612962 -0.744415)} Corner 481 32239 {normal=(-0.264809 -0.612962 -0.744415)} Corner 354 32241 {normal=(0.673642 0.67002 -0.311897)} Corner 375 32241 {normal=(0.671737 0.735454 -0.088754)} Corner 375 32242 {normal=(0.671737 0.735454 -0.088754)} Corner 480 32243 {normal=(0.620811 0.728895 -0.288627)} Corner 480 32244 {normal=(0.620811 0.728895 -0.288627)} Corner 354 32244 {normal=(0.673642 0.67002 -0.311897)} Corner 480 32249 {normal=(0.620811 0.728895 -0.288627)} Corner 491 32250 {normal=(0.578781 0.81427 -0.044461)} Corner 491 32251 {normal=(0.578781 0.81427 -0.044461)} Corner 527 32251 {normal=(0.579343 0.768962 -0.270296)} Corner 527 32252 {normal=(0.579343 0.768962 -0.270296)} Corner 480 32252 {normal=(0.620811 0.728895 -0.288627)} Corner 481 32253 {normal=(0.155536 0.118551 -0.980691)} Corner 480 32253 {normal=(0.169617 0.0993732 -0.980487)} Corner 480 32254 {normal=(0.169617 0.0993732 -0.980487)} Corner 527 32254 {normal=(-0.0593929 0.267543 -0.961714)} Corner 527 32255 {normal=(-0.0593929 0.267543 -0.961714)} Corner 529 32255 {normal=(0.108579 0.14612 -0.98329)} Corner 529 32256 {normal=(0.108579 0.14612 -0.98329)} Corner 481 32256 {normal=(0.155536 0.118551 -0.980691)} Corner 481 32257 {normal=(-0.264809 -0.612962 -0.744415)} Corner 481 32258 {normal=(-0.264809 -0.612962 -0.744415)} Corner 529 32258 {normal=(-0.304781 -0.563127 -0.768113)} Corner 529 32259 {normal=(-0.304781 -0.563127 -0.768113)} Corner 493 32259 {normal=(-0.31623 -0.816255 -0.483452)} Corner 493 32260 {normal=(-0.31623 -0.816255 -0.483452)} Corner 493 32262 {normal=(-0.31623 -0.816255 -0.483452)} Corner 493 32263 {normal=(-0.31623 -0.816255 -0.483452)} Corner 463 32263 {normal=(-0.255644 -0.96297 0.0856491)} Corner 463 32264 {normal=(-0.255644 -0.96297 0.0856491)} Corner 493 32265 {normal=(0.514777 -0.647104 -0.56237)} Corner 529 32265 {normal=(0.514777 -0.647104 -0.56237)} Corner 529 32266 {normal=(0.514777 -0.647104 -0.56237)} Corner 647 32266 {normal=(0.591801 -0.536952 -0.601211)} Corner 647 32267 {normal=(0.591801 -0.536952 -0.601211)} Corner 656 32267 {normal=(0.593473 -0.534235 -0.601983)} Corner 656 32268 {normal=(0.593473 -0.534235 -0.601983)} Corner 493 32268 {normal=(0.514777 -0.647104 -0.56237)} Corner 463 32269 {normal=(0.459575 -0.887715 0.0274398)} Corner 493 32269 {normal=(0.506678 -0.84641 0.163914)} Corner 493 32270 {normal=(0.506678 -0.84641 0.163914)} Corner 656 32270 {normal=(0.48371 -0.868377 0.109299)} Corner 656 32271 {normal=(0.48371 -0.868377 0.109299)} Corner 463 32272 {normal=(0.459575 -0.887715 0.0274398)} Corner 527 32273 {normal=(-0.0593929 0.267543 -0.961714)} Corner 491 32273 {normal=(-0.648789 0.60296 -0.464233)} Corner 491 32274 {normal=(-0.648789 0.60296 -0.464233)} Corner 522 32274 {normal=(-0.648789 0.60296 -0.464233)} Corner 522 32275 {normal=(-0.648789 0.60296 -0.464233)} Corner 578 32275 {normal=(-0.0747979 0.490243 -0.86837)} Corner 578 32276 {normal=(-0.0747979 0.490243 -0.86837)} Corner 527 32276 {normal=(-0.0593929 0.267543 -0.961714)} Corner 529 32277 {normal=(0.108579 0.14612 -0.98329)} Corner 527 32277 {normal=(-0.0593929 0.267543 -0.961714)} Corner 527 32278 {normal=(-0.0593929 0.267543 -0.961714)} Corner 578 32278 {normal=(-0.0747979 0.490243 -0.86837)} Corner 578 32279 {normal=(-0.0747979 0.490243 -0.86837)} Corner 647 32279 {normal=(0.198655 0.24992 -0.947669)} Corner 647 32280 {normal=(0.198655 0.24992 -0.947669)} Corner 529 32280 {normal=(0.108579 0.14612 -0.98329)} Corner 578 32281 {normal=(0.0819101 0.978513 -0.189219)} Corner 522 32281 {normal=(0.036736 0.992904 -0.1131)} Corner 522 32282 {normal=(0.036736 0.992904 -0.1131)} Corner 621 32283 {normal=(0.130814 0.988503 -0.0758213)} Corner 621 32284 {normal=(0.130814 0.988503 -0.0758213)} Corner 578 32284 {normal=(0.0819101 0.978513 -0.189219)} Corner 647 32285 {normal=(0.198655 0.24992 -0.947669)} Corner 578 32285 {normal=(-0.0747979 0.490243 -0.86837)} Corner 578 32286 {normal=(-0.0747979 0.490243 -0.86837)} Corner 621 32286 {normal=(0.23986 0.407721 -0.88104)} Corner 621 32287 {normal=(0.23986 0.407721 -0.88104)} Corner 711 32287 {normal=(0.232262 0.407927 -0.882978)} Corner 711 32288 {normal=(0.232262 0.407927 -0.882978)} Corner 647 32288 {normal=(0.198655 0.24992 -0.947669)} Corner 656 32289 {normal=(0.593473 -0.534235 -0.601983)} Corner 647 32289 {normal=(0.591801 -0.536952 -0.601211)} Corner 647 32290 {normal=(0.591801 -0.536952 -0.601211)} Corner 711 32290 {normal=(0.50207 -0.417475 -0.75739)} Corner 711 32291 {normal=(0.50207 -0.417475 -0.75739)} Corner 747 32291 {normal=(0.528226 -0.418227 -0.738961)} Corner 747 32292 {normal=(0.528226 -0.418227 -0.738961)} Corner 656 32292 {normal=(0.593473 -0.534235 -0.601983)} Corner 656 32293 {normal=(0.48371 -0.868377 0.109299)} Corner 656 32294 {normal=(0.48371 -0.868377 0.109299)} Corner 747 32294 {normal=(0.622209 -0.782117 0.0338933)} Corner 747 32295 {normal=(0.622209 -0.782117 0.0338933)} Corner 711 32297 {normal=(0.232262 0.407927 -0.882978)} Corner 621 32297 {normal=(0.23986 0.407721 -0.88104)} Corner 621 32298 {normal=(0.23986 0.407721 -0.88104)} Corner 643 32298 {normal=(-0.14119 0.202523 -0.969046)} Corner 643 32299 {normal=(-0.14119 0.202523 -0.969046)} Corner 727 32299 {normal=(-0.0970998 0.255476 -0.961927)} Corner 727 32300 {normal=(-0.0970998 0.255476 -0.961927)} Corner 711 32300 {normal=(0.232262 0.407927 -0.882978)} Corner 747 32301 {normal=(0.528226 -0.418227 -0.738961)} Corner 711 32301 {normal=(0.50207 -0.417475 -0.75739)} Corner 711 32302 {normal=(0.50207 -0.417475 -0.75739)} Corner 727 32302 {normal=(0.351433 -0.405926 -0.843634)} Corner 727 32303 {normal=(0.351433 -0.405926 -0.843634)} Corner 789 32303 {normal=(0.351433 -0.405926 -0.843634)} Corner 789 32304 {normal=(0.351433 -0.405926 -0.843634)} Corner 747 32304 {normal=(0.528226 -0.418227 -0.738961)} Corner 747 32305 {normal=(0.622209 -0.782117 0.0338933)} Corner 747 32306 {normal=(0.622209 -0.782117 0.0338933)} Corner 789 32306 {normal=(0.742335 -0.669847 0.0156202)} Corner 789 32307 {normal=(0.742335 -0.669847 0.0156202)} Corner 784 32307 {normal=(0.732604 -0.679964 0.0306496)} Corner 784 32308 {normal=(0.732604 -0.679964 0.0306496)} Corner 621 32309 {normal=(0.130814 0.988503 -0.0758213)} Corner 583 32310 {normal=(0.248979 0.968497 0.00475141)} Corner 583 32311 {normal=(0.248979 0.968497 0.00475141)} Corner 643 32311 {normal=(0.201703 0.974345 0.0998431)} Corner 643 32312 {normal=(0.201703 0.974345 0.0998431)} Corner 621 32312 {normal=(0.130814 0.988503 -0.0758213)} Corner 784 32313 {normal=(0.998435 0.0558573 0.00270236)} Corner 789 32313 {normal=(0.996647 0.0718554 0.0391399)} Corner 789 32314 {normal=(0.996647 0.0718554 0.0391399)} Corner 771 32314 {normal=(0.996647 0.0718554 0.0391399)} Corner 771 32315 {normal=(0.996647 0.0718554 0.0391399)} Corner 775 32315 {normal=(0.998406 0.0563219 0.00375792)} Corner 775 32316 {normal=(0.998406 0.0563219 0.00375792)} Corner 784 32316 {normal=(0.998435 0.0558573 0.00270236)} Corner 727 32317 {normal=(-0.0970998 0.255476 -0.961927)} Corner 643 32317 {normal=(-0.14119 0.202523 -0.969046)} Corner 643 32318 {normal=(-0.14119 0.202523 -0.969046)} Corner 619 32318 {normal=(-0.482148 -0.0425754 -0.875055)} Corner 619 32319 {normal=(-0.482148 -0.0425754 -0.875055)} Corner 722 32319 {normal=(-0.333028 -0.0291213 -0.942467)} Corner 722 32320 {normal=(-0.333028 -0.0291213 -0.942467)} Corner 727 32320 {normal=(-0.0970998 0.255476 -0.961927)} Corner 789 32321 {normal=(0.541366 0.120527 -0.832103)} Corner 727 32321 {normal=(0.541366 0.120527 -0.832103)} Corner 727 32322 {normal=(0.541366 0.120527 -0.832103)} Corner 722 32322 {normal=(0.463721 0.272959 -0.842885)} Corner 722 32323 {normal=(0.463721 0.272959 -0.842885)} Corner 771 32323 {normal=(0.438598 0.315768 -0.841381)} Corner 771 32324 {normal=(0.438598 0.315768 -0.841381)} Corner 789 32324 {normal=(0.541366 0.120527 -0.832103)} Corner 619 32325 {normal=(-0.482148 -0.0425754 -0.875055)} Corner 574 32325 {normal=(-0.957973 0.286687 -0.00992228)} Corner 574 32326 {normal=(-0.957973 0.286687 -0.00992228)} Corner 606 32326 {normal=(-0.957973 0.286687 -0.00992228)} Corner 606 32327 {normal=(-0.957973 0.286687 -0.00992228)} Corner 597 32327 {normal=(-0.820393 0.0214378 -0.571399)} Corner 597 32328 {normal=(-0.820393 0.0214378 -0.571399)} Corner 619 32328 {normal=(-0.482148 -0.0425754 -0.875055)} Corner 722 32329 {normal=(-0.333028 -0.0291213 -0.942467)} Corner 619 32329 {normal=(-0.482148 -0.0425754 -0.875055)} Corner 619 32330 {normal=(-0.482148 -0.0425754 -0.875055)} Corner 597 32330 {normal=(-0.820393 0.0214378 -0.571399)} Corner 597 32331 {normal=(-0.820393 0.0214378 -0.571399)} Corner 630 32331 {normal=(-0.384996 -0.244058 -0.890064)} Corner 630 32332 {normal=(-0.384996 -0.244058 -0.890064)} Corner 722 32332 {normal=(-0.333028 -0.0291213 -0.942467)} Corner 771 32333 {normal=(0.438598 0.315768 -0.841381)} Corner 722 32333 {normal=(0.463721 0.272959 -0.842885)} Corner 722 32334 {normal=(0.463721 0.272959 -0.842885)} Corner 630 32334 {normal=(0.233192 0.441904 -0.866223)} Corner 630 32335 {normal=(0.233192 0.441904 -0.866223)} Corner 629 32335 {normal=(0.128573 0.420511 -0.898131)} Corner 629 32336 {normal=(0.128573 0.420511 -0.898131)} Corner 771 32336 {normal=(0.438598 0.315768 -0.841381)} Corner 775 32337 {normal=(0.684595 0.722997 -0.092764)} Corner 771 32337 {normal=(0.642566 0.724698 -0.24884)} Corner 771 32338 {normal=(0.642566 0.724698 -0.24884)} Corner 629 32338 {normal=(0.642566 0.724698 -0.248841)} Corner 629 32339 {normal=(0.642566 0.724698 -0.248841)} Corner 669 32339 {normal=(0.684362 0.723075 -0.0938709)} Corner 669 32340 {normal=(0.684362 0.723075 -0.0938709)} Corner 775 32340 {normal=(0.684595 0.722997 -0.092764)} Corner 629 32341 {normal=(0.128573 0.420511 -0.898131)} Corner 630 32341 {normal=(0.233192 0.441904 -0.866223)} Corner 630 32342 {normal=(0.233192 0.441904 -0.866223)} Corner 520 32342 {normal=(0.00169854 0.388159 -0.921591)} Corner 520 32343 {normal=(0.00169854 0.388159 -0.921591)} Corner 472 32343 {normal=(0.00169854 0.388159 -0.921591)} Corner 472 32344 {normal=(0.00169854 0.388159 -0.921591)} Corner 629 32344 {normal=(0.128573 0.420511 -0.898131)} Corner 629 32345 {normal=(0.012163 0.985527 -0.16908)} Corner 629 32346 {normal=(0.012163 0.985527 -0.16908)} Corner 472 32346 {normal=(0.289148 0.950623 -0.112732)} Corner 472 32347 {normal=(0.289148 0.950623 -0.112732)} Corner 475 32347 {normal=(0.309146 0.902746 -0.299129)} Corner 475 32348 {normal=(0.309146 0.902746 -0.299129)} Corner 597 32349 {normal=(-0.60218 -0.750514 -0.272229)} Corner 606 32349 {normal=(-0.589498 -0.796557 0.134126)} Corner 606 32350 {normal=(-0.589498 -0.796557 0.134126)} Corner 478 32351 {normal=(-0.65893 -0.705269 -0.261545)} Corner 478 32352 {normal=(-0.65893 -0.705269 -0.261545)} Corner 597 32352 {normal=(-0.60218 -0.750514 -0.272229)} Corner 630 32353 {normal=(-0.384996 -0.244058 -0.890064)} Corner 597 32353 {normal=(-0.820393 0.0214378 -0.571399)} Corner 597 32354 {normal=(-0.820393 0.0214378 -0.571399)} Corner 478 32354 {normal=(-0.464047 -0.286129 -0.838326)} Corner 478 32355 {normal=(-0.464047 -0.286129 -0.838326)} Corner 520 32355 {normal=(-0.481635 -0.223268 -0.847455)} Corner 520 32356 {normal=(-0.481635 -0.223268 -0.847455)} Corner 630 32356 {normal=(-0.384996 -0.244058 -0.890064)} Corner 472 32357 {normal=(-0.520843 0.23585 -0.820425)} Corner 416 32358 {normal=(-0.856266 0.259787 -0.446451)} Corner 416 32359 {normal=(-0.856266 0.259787 -0.446451)} Corner 475 32359 {normal=(-0.505362 0.334198 -0.795563)} Corner 475 32360 {normal=(-0.505362 0.334198 -0.795563)} Corner 472 32360 {normal=(-0.520843 0.23585 -0.820425)} Corner 478 32361 {normal=(-0.464047 -0.286129 -0.838326)} Corner 395 32361 {normal=(-0.720108 -0.1711 -0.672435)} Corner 395 32362 {normal=(-0.720108 -0.1711 -0.672435)} Corner 520 32363 {normal=(-0.481635 -0.223268 -0.847455)} Corner 520 32364 {normal=(-0.481635 -0.223268 -0.847455)} Corner 478 32364 {normal=(-0.464047 -0.286129 -0.838326)} Corner 372 32365 {normal=(-0.909096 -0.0546233 -0.412991)} Corner 395 32367 {normal=(-0.720108 -0.1711 -0.672435)} Corner 395 32368 {normal=(-0.720108 -0.1711 -0.672435)} Corner 372 32368 {normal=(-0.909096 -0.0546233 -0.412991)} Corner 629 32369 {normal=(0.012163 0.985527 -0.16908)} Corner 669 32371 {normal=(-0.125619 0.989684 -0.068882)} Corner 669 32372 {normal=(-0.125619 0.989684 -0.068882)} Corner 629 32372 {normal=(0.012163 0.985527 -0.16908)} Corner 399 32373 {normal=(-0.828571 0.46353 -0.314021)} Corner 399 32374 {normal=(-0.828571 0.46353 -0.314021)} Corner 413 32374 {normal=(-0.97129 0.176684 -0.159304)} Corner 413 32375 {normal=(-0.97129 0.176684 -0.159304)} Corner 416 32375 {normal=(-0.856266 0.259787 -0.446451)} Corner 416 32376 {normal=(-0.856266 0.259787 -0.446451)} Corner 372 32377 {normal=(-0.909096 -0.0546233 -0.412991)} Corner 372 32378 {normal=(-0.909096 -0.0546233 -0.412991)} Corner 357 32378 {normal=(-0.969739 -0.00338546 -0.244119)} Corner 357 32379 {normal=(-0.969739 -0.00338546 -0.244119)} Corner 358 32379 {normal=(-0.823322 0.419838 -0.381938)} Corner 358 32380 {normal=(-0.823322 0.419838 -0.381938)} Corner 399 32381 {normal=(-0.828571 0.46353 -0.314021)} Corner 358 32383 {normal=(-0.823322 0.419838 -0.381938)} Corner 358 32384 {normal=(-0.823322 0.419838 -0.381938)} Corner 399 32384 {normal=(-0.828571 0.46353 -0.314021)} Corner 472 32385 {normal=(-0.520843 0.23585 -0.820425)} Corner 472 32386 {normal=(-0.520843 0.23585 -0.820425)} Corner 375 32389 {normal=(-0.156352 0.815099 -0.557824)} Corner 354 32389 {normal=(-0.156352 0.815099 -0.557824)} Corner 354 32390 {normal=(-0.156352 0.815099 -0.557824)} Corner 351 32390 {normal=(-0.156352 0.815099 -0.557824)} Corner 351 32391 {normal=(-0.156352 0.815099 -0.557824)} Corner 279 32391 {normal=(-0.156352 0.815099 -0.557824)} Corner 279 32392 {normal=(-0.156352 0.815099 -0.557824)} Corner 375 32392 {normal=(-0.156352 0.815099 -0.557824)} Corner 243 32397 {normal=(-0.201137 -0.781967 -0.589976)} Corner 172 32399 {normal=(-0.314245 -0.890839 -0.328109)} Corner 172 32400 {normal=(-0.314245 -0.890839 -0.328109)} Corner 243 32400 {normal=(-0.201137 -0.781967 -0.589976)} Corner 242 32401 {normal=(0.0544201 0.174743 0.983109)} Corner 353 32401 {normal=(0.0163498 0.269525 0.962855)} Corner 353 32402 {normal=(0.0163498 0.269525 0.962855)} Corner 278 32402 {normal=(0.0889453 0.0858136 0.992333)} Corner 278 32403 {normal=(0.0889453 0.0858136 0.992333)} Corner 138 32403 {normal=(0.0889453 0.0858136 0.992333)} Corner 138 32404 {normal=(0.0889453 0.0858136 0.992333)} Corner 242 32404 {normal=(0.0544201 0.174743 0.983109)} Corner 242 32405 {normal=(-0.328572 -0.598573 0.730582)} Corner 242 32406 {normal=(-0.328572 -0.598573 0.730582)} Corner 138 32406 {normal=(-0.437007 -0.898389 -0.0438495)} Corner 138 32407 {normal=(-0.437007 -0.898389 -0.0438495)} Corner 353 32413 {normal=(-0.189608 0.977073 0.0968313)} Corner 375 32413 {normal=(-0.189608 0.977073 0.0968312)} Corner 375 32414 {normal=(-0.189608 0.977073 0.0968312)} Corner 279 32414 {normal=(-0.189608 0.977073 0.0968313)} Corner 279 32415 {normal=(-0.189608 0.977073 0.0968313)} Corner 278 32415 {normal=(-0.189608 0.977073 0.0968312)} Corner 278 32416 {normal=(-0.189608 0.977073 0.0968312)} Corner 353 32416 {normal=(-0.189608 0.977073 0.0968313)} Corner 511 32417 {normal=(-0.284908 0.351269 0.891873)} Corner 429 32417 {normal=(-0.392941 0.58359 0.710648)} Corner 429 32418 {normal=(-0.392941 0.58359 0.710648)} Corner 511 32420 {normal=(-0.284908 0.351269 0.891873)} Corner 429 32421 {normal=(-0.392941 0.58359 0.710648)} Corner 399 32421 {normal=(-0.458972 0.76815 0.44642)} Corner 399 32422 {normal=(-0.458972 0.76815 0.44642)} Corner 358 32422 {normal=(-0.714683 0.473594 0.51472)} Corner 358 32423 {normal=(-0.714683 0.473594 0.51472)} Corner 429 32424 {normal=(-0.392941 0.58359 0.710648)} Corner 383 32425 {normal=(-0.769058 0.00899 0.639116)} Corner 358 32426 {normal=(-0.714683 0.473594 0.51472)} Corner 358 32427 {normal=(-0.714683 0.473594 0.51472)} Corner 357 32427 {normal=(-0.869173 0.0422136 0.492703)} Corner 357 32428 {normal=(-0.869173 0.0422136 0.492703)} Corner 383 32428 {normal=(-0.769058 0.00899 0.639116)} Corner 399 32429 {normal=(-0.897987 0.220673 0.380687)} Corner 429 32429 {normal=(-0.897987 0.220673 0.380687)} Corner 429 32430 {normal=(-0.897987 0.220673 0.380687)} Corner 433 32430 {normal=(-0.284946 0.902531 0.322867)} Corner 433 32431 {normal=(-0.284946 0.902531 0.322867)} Corner 413 32431 {normal=(-0.135783 0.988319 0.0692051)} Corner 413 32432 {normal=(-0.135783 0.988319 0.0692051)} Corner 399 32432 {normal=(-0.897987 0.220673 0.380687)} Corner 652 32433 {normal=(0.0310054 0.999468 -0.010162)} Corner 652 32434 {normal=(0.0310054 0.999468 -0.010162)} Corner 669 32434 {normal=(-0.125619 0.989684 -0.068882)} Corner 669 32435 {normal=(-0.125619 0.989684 -0.068882)} Corner 383 32437 {normal=(-0.769058 0.00899 0.639116)} Corner 383 32438 {normal=(-0.769058 0.00899 0.639116)} Corner 418 32438 {normal=(-0.509485 -0.0833028 0.856438)} Corner 418 32439 {normal=(-0.509485 -0.0833028 0.856438)} Corner 418 32441 {normal=(-0.509485 -0.0833028 0.856438)} Corner 515 32441 {normal=(-0.207476 -0.19396 0.958819)} Corner 515 32442 {normal=(-0.207476 -0.19396 0.958819)} Corner 562 32442 {normal=(-0.223198 -0.125736 0.96663)} Corner 562 32443 {normal=(-0.223198 -0.125736 0.96663)} Corner 418 32444 {normal=(-0.509485 -0.0833028 0.856438)} Corner 429 32445 {normal=(-0.392941 0.58359 0.710648)} Corner 511 32445 {normal=(-0.284908 0.351269 0.891873)} Corner 511 32446 {normal=(-0.284908 0.351269 0.891873)} Corner 508 32446 {normal=(-0.283209 0.459947 0.841571)} Corner 508 32447 {normal=(-0.283209 0.459947 0.841571)} Corner 433 32447 {normal=(-0.283209 0.459947 0.841571)} Corner 433 32448 {normal=(-0.283209 0.459947 0.841571)} Corner 429 32448 {normal=(-0.392941 0.58359 0.710648)} Corner 622 32449 {normal=(-0.168221 -0.203791 0.964454)} Corner 665 32449 {normal=(-0.132489 -0.218593 0.96678)} Corner 665 32450 {normal=(-0.132489 -0.218593 0.96678)} Corner 562 32450 {normal=(-0.223198 -0.125736 0.96663)} Corner 562 32451 {normal=(-0.223198 -0.125736 0.96663)} Corner 515 32451 {normal=(-0.207476 -0.19396 0.958819)} Corner 515 32452 {normal=(-0.207476 -0.19396 0.958819)} Corner 622 32452 {normal=(-0.168221 -0.203791 0.964454)} Corner 606 32453 {normal=(-0.589498 -0.796557 0.134126)} Corner 622 32453 {normal=(-0.47138 -0.702674 0.532963)} Corner 622 32454 {normal=(-0.47138 -0.702674 0.532963)} Corner 515 32454 {normal=(-0.536164 -0.655577 0.53174)} Corner 515 32455 {normal=(-0.536164 -0.655577 0.53174)} Corner 606 32456 {normal=(-0.589498 -0.796557 0.134126)} Corner 652 32457 {normal=(0.0310054 0.999468 -0.010162)} Corner 508 32458 {normal=(0.356745 0.932868 0.0499093)} Corner 508 32459 {normal=(0.356745 0.932868 0.0499093)} Corner 511 32459 {normal=(0.286068 0.948573 -0.135554)} Corner 511 32460 {normal=(0.286068 0.948573 -0.135554)} Corner 652 32460 {normal=(0.0310054 0.999468 -0.010162)} Corner 665 32461 {normal=(0.455058 0.431 0.779206)} Corner 652 32461 {normal=(0.343302 0.463502 0.81689)} Corner 652 32462 {normal=(0.343302 0.463502 0.81689)} Corner 511 32462 {normal=(0.229145 0.48856 0.841904)} Corner 511 32463 {normal=(0.229145 0.48856 0.841904)} Corner 562 32463 {normal=(0.229145 0.48856 0.841904)} Corner 562 32464 {normal=(0.229145 0.48856 0.841904)} Corner 665 32464 {normal=(0.455058 0.431 0.779206)} Corner 782 32465 {normal=(0.708489 0.702892 0.0631421)} Corner 775 32465 {normal=(0.684595 0.722997 -0.092764)} Corner 775 32466 {normal=(0.684595 0.722997 -0.092764)} Corner 669 32466 {normal=(0.684362 0.723075 -0.0938709)} Corner 669 32467 {normal=(0.684362 0.723075 -0.0938709)} Corner 652 32467 {normal=(0.708489 0.702892 0.0631421)} Corner 652 32468 {normal=(0.708489 0.702892 0.0631421)} Corner 782 32468 {normal=(0.708489 0.702892 0.0631421)} Corner 734 32469 {normal=(0.551215 0.204693 0.808865)} Corner 782 32469 {normal=(0.554089 0.271437 0.786961)} Corner 782 32470 {normal=(0.554089 0.271437 0.786961)} Corner 652 32470 {normal=(0.343302 0.463502 0.81689)} Corner 652 32471 {normal=(0.343302 0.463502 0.81689)} Corner 665 32471 {normal=(0.455058 0.431 0.779206)} Corner 665 32472 {normal=(0.455058 0.431 0.779206)} Corner 734 32472 {normal=(0.551215 0.204693 0.808865)} Corner 635 32473 {normal=(-0.230761 -0.0776638 0.969906)} Corner 734 32473 {normal=(-0.232364 -0.068553 0.97021)} Corner 734 32474 {normal=(-0.232364 -0.068553 0.97021)} Corner 665 32474 {normal=(-0.132489 -0.218593 0.96678)} Corner 665 32475 {normal=(-0.132489 -0.218593 0.96678)} Corner 622 32475 {normal=(-0.168221 -0.203791 0.964454)} Corner 622 32476 {normal=(-0.168221 -0.203791 0.964454)} Corner 635 32476 {normal=(-0.230761 -0.0776638 0.969906)} Corner 720 32477 {normal=(0.538468 0.0768128 0.839138)} Corner 785 32477 {normal=(0.538468 0.0768128 0.839138)} Corner 785 32478 {normal=(0.538468 0.0768128 0.839138)} Corner 782 32478 {normal=(0.554089 0.271437 0.786961)} Corner 782 32479 {normal=(0.554089 0.271437 0.786961)} Corner 734 32479 {normal=(0.551215 0.204693 0.808865)} Corner 734 32480 {normal=(0.551215 0.204693 0.808865)} Corner 720 32480 {normal=(0.538468 0.0768128 0.839138)} Corner 632 32481 {normal=(-0.183393 0.167208 0.968715)} Corner 720 32481 {normal=(-0.191925 0.150621 0.969782)} Corner 720 32482 {normal=(-0.191925 0.150621 0.969782)} Corner 734 32482 {normal=(-0.232364 -0.068553 0.97021)} Corner 734 32483 {normal=(-0.232364 -0.068553 0.97021)} Corner 635 32483 {normal=(-0.230761 -0.0776638 0.969906)} Corner 635 32484 {normal=(-0.230761 -0.0776638 0.969906)} Corner 632 32484 {normal=(-0.183393 0.167208 0.968715)} Corner 785 32485 {normal=(0.998655 0.0402108 -0.0327446)} Corner 784 32485 {normal=(0.998435 0.0558573 0.00270236)} Corner 784 32486 {normal=(0.998435 0.0558573 0.00270236)} Corner 775 32486 {normal=(0.998406 0.0563219 0.00375792)} Corner 775 32487 {normal=(0.998406 0.0563219 0.00375792)} Corner 782 32487 {normal=(0.998655 0.0402108 -0.0327445)} Corner 782 32488 {normal=(0.998655 0.0402108 -0.0327445)} Corner 785 32488 {normal=(0.998655 0.0402108 -0.0327446)} Corner 608 32489 {normal=(0.154736 0.987799 0.01758)} Corner 608 32490 {normal=(0.154736 0.987799 0.01758)} Corner 632 32490 {normal=(0.281076 0.957594 -0.0633183)} Corner 632 32491 {normal=(0.281076 0.957594 -0.0633183)} Corner 583 32491 {normal=(0.248979 0.968497 0.00475141)} Corner 583 32492 {normal=(0.248979 0.968497 0.00475141)} Corner 741 32493 {normal=(0.670709 -0.740916 -0.0345347)} Corner 784 32494 {normal=(0.732604 -0.679964 0.0306496)} Corner 784 32495 {normal=(0.732604 -0.679964 0.0306496)} Corner 785 32495 {normal=(0.722548 -0.689809 0.0456897)} Corner 785 32496 {normal=(0.722548 -0.689809 0.0456897)} Corner 741 32496 {normal=(0.670709 -0.740916 -0.0345347)} Corner 697 32497 {normal=(0.239689 -0.478528 0.844725)} Corner 741 32497 {normal=(0.236947 -0.485092 0.841749)} Corner 741 32498 {normal=(0.236947 -0.485092 0.841749)} Corner 785 32498 {normal=(0.248936 -0.455921 0.854498)} Corner 785 32499 {normal=(0.248936 -0.455921 0.854498)} Corner 720 32499 {normal=(0.248936 -0.455921 0.854498)} Corner 720 32500 {normal=(0.248936 -0.455921 0.854498)} Corner 697 32500 {normal=(0.239689 -0.478528 0.844725)} Corner 608 32501 {normal=(-0.303243 0.120418 0.945274)} Corner 697 32501 {normal=(-0.23636 0.179297 0.95498)} Corner 697 32502 {normal=(-0.23636 0.179297 0.95498)} Corner 720 32502 {normal=(-0.191925 0.150621 0.969782)} Corner 720 32503 {normal=(-0.191925 0.150621 0.969782)} Corner 632 32503 {normal=(-0.183393 0.167208 0.968715)} Corner 632 32504 {normal=(-0.183393 0.167208 0.968715)} Corner 608 32504 {normal=(-0.303243 0.120418 0.945274)} Corner 660 32505 {normal=(0.500172 -0.85494 -0.137496)} Corner 741 32507 {normal=(0.670709 -0.740916 -0.0345347)} Corner 741 32508 {normal=(0.670709 -0.740916 -0.0345347)} Corner 660 32508 {normal=(0.500172 -0.85494 -0.137496)} Corner 609 32509 {normal=(0.258416 -0.494642 0.82979)} Corner 660 32509 {normal=(0.259754 -0.494166 0.829655)} Corner 660 32510 {normal=(0.259754 -0.494166 0.829655)} Corner 741 32510 {normal=(0.236947 -0.485092 0.841749)} Corner 741 32511 {normal=(0.236947 -0.485092 0.841749)} Corner 697 32511 {normal=(0.239689 -0.478528 0.844725)} Corner 697 32512 {normal=(0.239689 -0.478528 0.844725)} Corner 609 32512 {normal=(0.258416 -0.494642 0.82979)} Corner 546 32513 {normal=(-0.268813 0.163143 0.949276)} Corner 609 32513 {normal=(-0.243295 0.188479 0.951464)} Corner 609 32514 {normal=(-0.243295 0.188479 0.951464)} Corner 697 32514 {normal=(-0.23636 0.179297 0.95498)} Corner 697 32515 {normal=(-0.23636 0.179297 0.95498)} Corner 608 32515 {normal=(-0.303243 0.120418 0.945274)} Corner 608 32516 {normal=(-0.303243 0.120418 0.945274)} Corner 546 32516 {normal=(-0.268813 0.163143 0.949276)} Corner 522 32517 {normal=(0.036736 0.992904 -0.1131)} Corner 546 32517 {normal=(-0.146714 0.968703 0.200226)} Corner 546 32518 {normal=(-0.146714 0.968703 0.200226)} Corner 608 32518 {normal=(0.154736 0.987799 0.01758)} Corner 608 32519 {normal=(0.154736 0.987799 0.01758)} Corner 522 32520 {normal=(0.036736 0.992904 -0.1131)} Corner 503 32521 {normal=(-0.122989 0.298294 0.946517)} Corner 498 32521 {normal=(-0.12264 0.298573 0.946474)} Corner 498 32522 {normal=(-0.12264 0.298573 0.946474)} Corner 609 32522 {normal=(-0.243295 0.188479 0.951464)} Corner 609 32523 {normal=(-0.243295 0.188479 0.951464)} Corner 546 32523 {normal=(-0.268813 0.163143 0.949276)} Corner 546 32524 {normal=(-0.268813 0.163143 0.949276)} Corner 503 32524 {normal=(-0.122989 0.298294 0.946517)} Corner 491 32525 {normal=(-0.794797 0.557353 0.240116)} Corner 503 32525 {normal=(-0.794797 0.557353 0.240116)} Corner 503 32526 {normal=(-0.794797 0.557353 0.240116)} Corner 546 32526 {normal=(-0.794797 0.557353 0.240116)} Corner 546 32527 {normal=(-0.794797 0.557353 0.240116)} Corner 522 32527 {normal=(-0.794797 0.557353 0.240116)} Corner 522 32528 {normal=(-0.794797 0.557353 0.240116)} Corner 491 32528 {normal=(-0.794797 0.557353 0.240116)} Corner 476 32529 {normal=(0.400346 -0.909307 -0.113507)} Corner 463 32529 {normal=(0.459575 -0.887715 0.0274398)} Corner 463 32530 {normal=(0.459575 -0.887715 0.0274398)} Corner 660 32531 {normal=(0.500172 -0.85494 -0.137496)} Corner 660 32532 {normal=(0.500172 -0.85494 -0.137496)} Corner 476 32532 {normal=(0.400346 -0.909307 -0.113507)} Corner 498 32533 {normal=(0.289925 -0.483118 0.82616)} Corner 476 32533 {normal=(0.289925 -0.483118 0.82616)} Corner 476 32534 {normal=(0.289925 -0.483118 0.82616)} Corner 660 32534 {normal=(0.259754 -0.494166 0.829655)} Corner 660 32535 {normal=(0.259754 -0.494166 0.829655)} Corner 609 32535 {normal=(0.258416 -0.494642 0.82979)} Corner 609 32536 {normal=(0.258416 -0.494642 0.82979)} Corner 498 32536 {normal=(0.289925 -0.483118 0.82616)} Corner 463 32538 {normal=(-0.255644 -0.96297 0.0856491)} Corner 463 32539 {normal=(-0.255644 -0.96297 0.0856491)} Corner 476 32539 {normal=(-0.421463 -0.680918 0.598932)} Corner 476 32540 {normal=(-0.421463 -0.680918 0.598932)} Corner 454 32541 {normal=(-0.397563 -0.424445 0.813505)} Corner 476 32542 {normal=(-0.421463 -0.680918 0.598932)} Corner 476 32543 {normal=(-0.421463 -0.680918 0.598932)} Corner 498 32543 {normal=(-0.451141 -0.378768 0.808088)} Corner 498 32544 {normal=(-0.451141 -0.378768 0.808088)} Corner 454 32544 {normal=(-0.397563 -0.424445 0.813505)} Corner 462 32545 {normal=(-0.0354379 0.335099 0.941516)} Corner 454 32545 {normal=(-0.0647568 0.327945 0.942475)} Corner 454 32546 {normal=(-0.0647568 0.327945 0.942475)} Corner 498 32546 {normal=(-0.12264 0.298573 0.946474)} Corner 498 32547 {normal=(-0.12264 0.298573 0.946474)} Corner 503 32547 {normal=(-0.122989 0.298294 0.946517)} Corner 503 32548 {normal=(-0.122989 0.298294 0.946517)} Corner 462 32548 {normal=(-0.0354379 0.335099 0.941516)} Corner 462 32549 {normal=(0.572931 0.797984 0.187009)} Corner 462 32550 {normal=(0.572931 0.797984 0.187009)} Corner 503 32550 {normal=(0.549976 0.817384 0.171494)} Corner 503 32551 {normal=(0.549976 0.817384 0.171494)} Corner 491 32551 {normal=(0.578781 0.81427 -0.044461)} Corner 491 32552 {normal=(0.578781 0.81427 -0.044461)} Corner 375 32557 {normal=(0.671737 0.735454 -0.088754)} Corner 353 32557 {normal=(0.612849 0.76051 0.214572)} Corner 353 32558 {normal=(0.612849 0.76051 0.214572)} Corner 462 32558 {normal=(0.572931 0.797984 0.187009)} Corner 462 32559 {normal=(0.572931 0.797984 0.187009)} Corner 375 32560 {normal=(0.671737 0.735454 -0.088754)} Corner 242 32561 {normal=(-0.328572 -0.598573 0.730582)} Corner 454 32563 {normal=(-0.397563 -0.424445 0.813505)} Corner 454 32564 {normal=(-0.397563 -0.424445 0.813505)} Corner 242 32564 {normal=(-0.328572 -0.598573 0.730582)} Corner 353 32565 {normal=(0.0163498 0.269525 0.962855)} Corner 242 32565 {normal=(0.0544201 0.174743 0.983109)} Corner 242 32566 {normal=(0.0544201 0.174743 0.983109)} Corner 454 32566 {normal=(-0.0647568 0.327945 0.942475)} Corner 454 32567 {normal=(-0.0647568 0.327945 0.942475)} Corner 462 32567 {normal=(-0.0354379 0.335099 0.941516)} Corner 462 32568 {normal=(-0.0354379 0.335099 0.941516)} Corner 353 32568 {normal=(0.0163498 0.269525 0.962855)} Corner 217 32569 {normal=(0.208954 -0.185823 -0.960108)} Corner 319 32569 {normal=(0.195907 -0.0969889 -0.975814)} Corner 319 32570 {normal=(0.195907 -0.0969889 -0.975814)} Corner 479 32570 {normal=(0.0377728 0.410651 -0.91101)} Corner 479 32571 {normal=(0.0377728 0.410651 -0.91101)} Corner 566 32571 {normal=(0.0405626 0.0990607 -0.994254)} Corner 566 32572 {normal=(0.0405626 0.0990607 -0.994254)} Corner 217 32572 {normal=(0.208954 -0.185823 -0.960108)} Corner 217 32573 {normal=(-0.247441 -0.801555 -0.544319)} Corner 217 32574 {normal=(-0.247441 -0.801555 -0.544319)} Corner 566 32574 {normal=(0.0147301 -0.723317 -0.690359)} Corner 566 32575 {normal=(0.0147301 -0.723317 -0.690359)} Corner 525 32575 {normal=(-0.189061 -0.875156 -0.445374)} Corner 525 32576 {normal=(-0.189061 -0.875156 -0.445374)} Corner 319 32577 {normal=(0.776773 0.540451 -0.323321)} Corner 331 32577 {normal=(0.655908 0.752265 -0.0623016)} Corner 331 32578 {normal=(0.655908 0.752265 -0.0623016)} Corner 419 32578 {normal=(0.636562 0.768428 -0.065633)} Corner 419 32579 {normal=(0.636562 0.768428 -0.065633)} Corner 479 32579 {normal=(0.61907 0.726321 -0.298682)} Corner 479 32580 {normal=(0.61907 0.726321 -0.298682)} Corner 319 32580 {normal=(0.776773 0.540451 -0.323321)} Corner 525 32581 {normal=(-0.189061 -0.875156 -0.445374)} Corner 525 32582 {normal=(-0.189061 -0.875156 -0.445374)} Corner 494 32582 {normal=(-0.405641 -0.905664 0.1234)} Corner 494 32583 {normal=(-0.405641 -0.905664 0.1234)} Corner 479 32585 {normal=(0.0377728 0.410651 -0.91101)} Corner 419 32585 {normal=(-0.0919248 0.913597 -0.396094)} Corner 419 32586 {normal=(-0.0919248 0.913597 -0.396094)} Corner 490 32586 {normal=(-0.0919248 0.913597 -0.396094)} Corner 490 32587 {normal=(-0.0919248 0.913597 -0.396094)} Corner 561 32587 {normal=(-0.0458583 0.337059 -0.940366)} Corner 561 32588 {normal=(-0.0458583 0.337059 -0.940366)} Corner 479 32588 {normal=(0.0377728 0.410651 -0.91101)} Corner 566 32589 {normal=(0.0405626 0.0990607 -0.994254)} Corner 479 32589 {normal=(0.0377728 0.410651 -0.91101)} Corner 479 32590 {normal=(0.0377728 0.410651 -0.91101)} Corner 561 32590 {normal=(-0.0458583 0.337059 -0.940366)} Corner 561 32591 {normal=(-0.0458583 0.337059 -0.940366)} Corner 653 32591 {normal=(-0.028191 0.116077 -0.99284)} Corner 653 32592 {normal=(-0.028191 0.116077 -0.99284)} Corner 566 32592 {normal=(0.0405626 0.0990607 -0.994254)} Corner 525 32593 {normal=(-0.189061 -0.875156 -0.445374)} Corner 566 32593 {normal=(0.0147301 -0.723317 -0.690359)} Corner 566 32594 {normal=(0.0147301 -0.723317 -0.690359)} Corner 653 32594 {normal=(0.159692 -0.670057 -0.724929)} Corner 653 32595 {normal=(0.159692 -0.670057 -0.724929)} Corner 682 32595 {normal=(0.159692 -0.670057 -0.724929)} Corner 682 32596 {normal=(0.159692 -0.670057 -0.724929)} Corner 525 32596 {normal=(-0.189061 -0.875156 -0.445374)} Corner 494 32597 {normal=(0.305343 -0.943667 0.127509)} Corner 525 32597 {normal=(0.309209 -0.945271 0.104173)} Corner 525 32598 {normal=(0.309209 -0.945271 0.104173)} Corner 682 32598 {normal=(0.563944 -0.814594 0.135661)} Corner 682 32599 {normal=(0.563944 -0.814594 0.135661)} Corner 494 32600 {normal=(0.305343 -0.943667 0.127509)} Corner 682 32601 {normal=(0.677485 -0.310431 -0.666818)} Corner 653 32601 {normal=(0.677485 -0.310431 -0.666818)} Corner 653 32602 {normal=(0.677485 -0.310431 -0.666818)} Corner 689 32602 {normal=(0.701009 -0.205523 -0.682896)} Corner 689 32603 {normal=(0.701009 -0.205523 -0.682896)} Corner 744 32603 {normal=(0.698234 -0.220254 -0.681144)} Corner 744 32604 {normal=(0.698234 -0.220254 -0.681144)} Corner 682 32604 {normal=(0.677485 -0.310431 -0.666818)} Corner 682 32605 {normal=(0.563944 -0.814594 0.135661)} Corner 682 32606 {normal=(0.563944 -0.814594 0.135661)} Corner 744 32606 {normal=(0.86953 -0.470446 0.150324)} Corner 744 32607 {normal=(0.86953 -0.470446 0.150324)} Corner 561 32609 {normal=(-0.837084 0.267847 -0.47702)} Corner 490 32609 {normal=(-0.837084 0.267847 -0.47702)} Corner 490 32610 {normal=(-0.837084 0.267847 -0.47702)} Corner 504 32610 {normal=(-0.801704 0.38219 -0.459567)} Corner 504 32611 {normal=(-0.801704 0.38219 -0.459567)} Corner 579 32611 {normal=(-0.812421 0.35185 -0.464946)} Corner 579 32612 {normal=(-0.812421 0.35185 -0.464946)} Corner 561 32612 {normal=(-0.837084 0.267847 -0.47702)} Corner 653 32613 {normal=(-0.028191 0.116077 -0.99284)} Corner 561 32613 {normal=(-0.0458583 0.337059 -0.940366)} Corner 561 32614 {normal=(-0.0458583 0.337059 -0.940366)} Corner 579 32614 {normal=(-0.022199 0.162652 -0.986434)} Corner 579 32615 {normal=(-0.022199 0.162652 -0.986434)} Corner 689 32615 {normal=(-0.0192992 0.144731 -0.989283)} Corner 689 32616 {normal=(-0.0192992 0.144731 -0.989283)} Corner 653 32616 {normal=(-0.028191 0.116077 -0.99284)} Corner 579 32617 {normal=(-0.812421 0.35185 -0.464946)} Corner 504 32617 {normal=(-0.801704 0.38219 -0.459567)} Corner 504 32618 {normal=(-0.801704 0.38219 -0.459567)} Corner 545 32618 {normal=(-0.765716 0.468038 -0.441157)} Corner 545 32619 {normal=(-0.765716 0.468038 -0.441157)} Corner 616 32619 {normal=(-0.765716 0.468038 -0.441157)} Corner 616 32620 {normal=(-0.765716 0.468038 -0.441157)} Corner 579 32620 {normal=(-0.812421 0.35185 -0.464946)} Corner 689 32621 {normal=(-0.0192992 0.144731 -0.989283)} Corner 579 32621 {normal=(-0.022199 0.162652 -0.986434)} Corner 579 32622 {normal=(-0.022199 0.162652 -0.986434)} Corner 616 32622 {normal=(-0.0769803 0.168293 -0.982727)} Corner 616 32623 {normal=(-0.0769803 0.168293 -0.982727)} Corner 721 32623 {normal=(-0.10313 0.161721 -0.981433)} Corner 721 32624 {normal=(-0.10313 0.161721 -0.981433)} Corner 689 32624 {normal=(-0.0192992 0.144731 -0.989283)} Corner 744 32625 {normal=(0.698234 -0.220254 -0.681144)} Corner 689 32625 {normal=(0.701009 -0.205523 -0.682896)} Corner 689 32626 {normal=(0.701009 -0.205523 -0.682896)} Corner 721 32626 {normal=(0.645349 -0.179127 -0.742589)} Corner 721 32627 {normal=(0.645349 -0.179127 -0.742589)} Corner 774 32627 {normal=(0.660813 -0.165595 -0.732055)} Corner 774 32628 {normal=(0.660813 -0.165595 -0.732055)} Corner 744 32628 {normal=(0.698234 -0.220254 -0.681144)} Corner 744 32629 {normal=(0.86953 -0.470446 0.150324)} Corner 744 32630 {normal=(0.86953 -0.470446 0.150324)} Corner 774 32630 {normal=(0.972122 -0.213316 0.0973412)} Corner 774 32631 {normal=(0.972122 -0.213316 0.0973412)} Corner 721 32633 {normal=(-0.10313 0.161721 -0.981433)} Corner 616 32633 {normal=(-0.0769803 0.168293 -0.982727)} Corner 616 32634 {normal=(-0.0769803 0.168293 -0.982727)} Corner 633 32634 {normal=(-0.167609 -0.00435273 -0.985844)} Corner 633 32635 {normal=(-0.167609 -0.00435273 -0.985844)} Corner 729 32635 {normal=(-0.168281 0.0162169 -0.985606)} Corner 729 32636 {normal=(-0.168281 0.0162169 -0.985606)} Corner 721 32636 {normal=(-0.10313 0.161721 -0.981433)} Corner 774 32637 {normal=(0.660813 -0.165595 -0.732055)} Corner 721 32637 {normal=(0.645349 -0.179127 -0.742589)} Corner 721 32638 {normal=(0.645349 -0.179127 -0.742589)} Corner 729 32638 {normal=(0.580177 -0.232197 -0.780692)} Corner 729 32639 {normal=(0.580177 -0.232197 -0.780692)} Corner 790 32639 {normal=(0.580177 -0.232197 -0.780692)} Corner 790 32640 {normal=(0.580177 -0.232197 -0.780692)} Corner 774 32640 {normal=(0.660813 -0.165595 -0.732055)} Corner 774 32641 {normal=(0.972122 -0.213316 0.0973412)} Corner 774 32642 {normal=(0.972122 -0.213316 0.0973412)} Corner 790 32642 {normal=(0.982783 -0.17252 0.0661349)} Corner 790 32643 {normal=(0.982783 -0.17252 0.0661349)} Corner 786 32643 {normal=(0.978999 -0.180642 0.0944957)} Corner 786 32644 {normal=(0.978999 -0.180642 0.0944957)} Corner 616 32645 {normal=(-0.132667 0.978174 0.159924)} Corner 545 32645 {normal=(0.0474537 0.998607 -0.0230831)} Corner 545 32646 {normal=(0.0474537 0.998607 -0.0230831)} Corner 572 32646 {normal=(0.0580426 0.997739 -0.033894)} Corner 572 32647 {normal=(0.0580426 0.997739 -0.033894)} Corner 633 32647 {normal=(-0.132667 0.978174 0.159924)} Corner 633 32648 {normal=(-0.132667 0.978174 0.159924)} Corner 616 32648 {normal=(-0.132667 0.978174 0.159924)} Corner 786 32649 {normal=(0.758209 0.649601 0.0560099)} Corner 790 32649 {normal=(0.74725 0.655939 0.10659)} Corner 790 32650 {normal=(0.74725 0.655939 0.10659)} Corner 733 32650 {normal=(0.552927 0.833201 0.00694568)} Corner 733 32651 {normal=(0.552927 0.833201 0.00694568)} Corner 786 32652 {normal=(0.758209 0.649601 0.0560099)} Corner 633 32653 {normal=(-0.321734 -0.849626 -0.417878)} Corner 572 32653 {normal=(-0.456514 -0.886972 -0.0698223)} Corner 572 32654 {normal=(-0.456514 -0.886972 -0.0698223)} Corner 600 32655 {normal=(-0.296764 -0.863598 -0.407591)} Corner 600 32656 {normal=(-0.296764 -0.863598 -0.407591)} Corner 633 32656 {normal=(-0.321734 -0.849626 -0.417878)} Corner 729 32657 {normal=(-0.168281 0.0162169 -0.985606)} Corner 633 32657 {normal=(-0.167609 -0.00435273 -0.985844)} Corner 633 32658 {normal=(-0.167609 -0.00435273 -0.985844)} Corner 600 32658 {normal=(-0.129993 -0.28158 -0.950692)} Corner 600 32659 {normal=(-0.129993 -0.28158 -0.950692)} Corner 706 32659 {normal=(-0.148219 -0.199435 -0.968637)} Corner 706 32660 {normal=(-0.148219 -0.199435 -0.968637)} Corner 729 32660 {normal=(-0.168281 0.0162169 -0.985606)} Corner 790 32661 {normal=(0.365922 0.459896 -0.809072)} Corner 729 32661 {normal=(0.365922 0.459896 -0.809072)} Corner 729 32662 {normal=(0.365922 0.459896 -0.809072)} Corner 706 32662 {normal=(0.32274 0.500854 -0.803109)} Corner 706 32663 {normal=(0.32274 0.500854 -0.803109)} Corner 733 32663 {normal=(0.321297 0.502173 -0.802864)} Corner 733 32664 {normal=(0.321297 0.502173 -0.802864)} Corner 790 32664 {normal=(0.365922 0.459896 -0.809072)} Corner 600 32665 {normal=(-0.296764 -0.863598 -0.407591)} Corner 486 32667 {normal=(-0.398392 -0.838986 -0.370657)} Corner 486 32668 {normal=(-0.398392 -0.838986 -0.370657)} Corner 600 32668 {normal=(-0.296764 -0.863598 -0.407591)} Corner 706 32669 {normal=(-0.148219 -0.199435 -0.968637)} Corner 600 32669 {normal=(-0.129993 -0.28158 -0.950692)} Corner 600 32670 {normal=(-0.129993 -0.28158 -0.950692)} Corner 486 32670 {normal=(-0.179505 -0.325543 -0.928332)} Corner 486 32671 {normal=(-0.179505 -0.325543 -0.928332)} Corner 551 32671 {normal=(-0.171877 -0.325313 -0.929855)} Corner 551 32672 {normal=(-0.171877 -0.325313 -0.929855)} Corner 706 32672 {normal=(-0.148219 -0.199435 -0.968637)} Corner 733 32673 {normal=(0.321297 0.502173 -0.802864)} Corner 706 32673 {normal=(0.32274 0.500854 -0.803109)} Corner 706 32674 {normal=(0.32274 0.500854 -0.803109)} Corner 551 32674 {normal=(0.232221 0.507981 -0.829475)} Corner 551 32675 {normal=(0.232221 0.507981 -0.829475)} Corner 552 32675 {normal=(0.214057 0.493331 -0.843092)} Corner 552 32676 {normal=(0.214057 0.493331 -0.843092)} Corner 733 32676 {normal=(0.321297 0.502173 -0.802864)} Corner 733 32677 {normal=(0.552927 0.833201 0.00694568)} Corner 733 32678 {normal=(0.552927 0.833201 0.00694568)} Corner 552 32678 {normal=(0.186311 0.980084 -0.0687323)} Corner 552 32679 {normal=(0.186311 0.980084 -0.0687323)} Corner 552 32681 {normal=(0.214057 0.493331 -0.843092)} Corner 551 32681 {normal=(0.232221 0.507981 -0.829475)} Corner 551 32682 {normal=(0.232221 0.507981 -0.829475)} Corner 425 32682 {normal=(0.162392 0.450416 -0.877926)} Corner 425 32683 {normal=(0.162392 0.450416 -0.877926)} Corner 391 32683 {normal=(0.162392 0.450416 -0.877926)} Corner 391 32684 {normal=(0.162392 0.450416 -0.877926)} Corner 552 32684 {normal=(0.214057 0.493331 -0.843092)} Corner 552 32685 {normal=(0.186311 0.980084 -0.0687323)} Corner 552 32686 {normal=(0.186311 0.980084 -0.0687323)} Corner 391 32686 {normal=(0.356774 0.93393 0.0220666)} Corner 391 32687 {normal=(0.356774 0.93393 0.0220666)} Corner 392 32687 {normal=(0.404674 0.900117 -0.161331)} Corner 392 32688 {normal=(0.404674 0.900117 -0.161331)} Corner 486 32689 {normal=(-0.398392 -0.838986 -0.370657)} Corner 374 32691 {normal=(-0.60264 -0.718875 -0.346472)} Corner 374 32692 {normal=(-0.60264 -0.718875 -0.346472)} Corner 486 32692 {normal=(-0.398392 -0.838986 -0.370657)} Corner 551 32693 {normal=(-0.171877 -0.325313 -0.929855)} Corner 486 32693 {normal=(-0.179505 -0.325543 -0.928332)} Corner 486 32694 {normal=(-0.179505 -0.325543 -0.928332)} Corner 374 32694 {normal=(-0.359326 -0.257988 -0.896843)} Corner 374 32695 {normal=(-0.359326 -0.257988 -0.896843)} Corner 425 32695 {normal=(-0.355593 -0.189978 -0.91513)} Corner 425 32696 {normal=(-0.355593 -0.189978 -0.91513)} Corner 551 32696 {normal=(-0.171877 -0.325313 -0.929855)} Corner 391 32697 {normal=(-0.380431 0.316408 -0.868998)} Corner 345 32698 {normal=(-0.75673 0.355014 -0.548931)} Corner 345 32699 {normal=(-0.75673 0.355014 -0.548931)} Corner 392 32699 {normal=(-0.366237 0.417089 -0.83181)} Corner 392 32700 {normal=(-0.366237 0.417089 -0.83181)} Corner 391 32700 {normal=(-0.380431 0.316408 -0.868998)} Corner 374 32701 {normal=(-0.359326 -0.257988 -0.896843)} Corner 317 32701 {normal=(-0.632816 -0.0958746 -0.768344)} Corner 317 32702 {normal=(-0.632816 -0.0958746 -0.768344)} Corner 425 32703 {normal=(-0.355593 -0.189978 -0.91513)} Corner 425 32704 {normal=(-0.355593 -0.189978 -0.91513)} Corner 374 32704 {normal=(-0.359326 -0.257988 -0.896843)} Corner 304 32705 {normal=(-0.845536 0.0442755 -0.532079)} Corner 317 32707 {normal=(-0.632816 -0.0958746 -0.768344)} Corner 317 32708 {normal=(-0.632816 -0.0958746 -0.768344)} Corner 304 32708 {normal=(-0.845536 0.0442755 -0.532079)} Corner 552 32709 {normal=(0.186311 0.980084 -0.0687323)} Corner 552 32712 {normal=(0.186311 0.980084 -0.0687323)} Corner 325 32713 {normal=(-0.727412 0.558316 -0.398941)} Corner 325 32714 {normal=(-0.727412 0.558316 -0.398941)} Corner 335 32714 {normal=(-0.920493 0.266409 -0.285866)} Corner 335 32715 {normal=(-0.920493 0.266409 -0.285866)} Corner 345 32715 {normal=(-0.75673 0.355014 -0.548931)} Corner 345 32716 {normal=(-0.75673 0.355014 -0.548931)} Corner 304 32717 {normal=(-0.845536 0.0442755 -0.532079)} Corner 304 32718 {normal=(-0.845536 0.0442755 -0.532079)} Corner 290 32718 {normal=(-0.919897 0.0987295 -0.379528)} Corner 290 32719 {normal=(-0.919897 0.0987295 -0.379528)} Corner 299 32719 {normal=(-0.723716 0.509823 -0.465097)} Corner 299 32720 {normal=(-0.723716 0.509823 -0.465097)} Corner 325 32721 {normal=(-0.727412 0.558316 -0.398941)} Corner 299 32723 {normal=(-0.723716 0.509823 -0.465097)} Corner 299 32724 {normal=(-0.723716 0.509823 -0.465097)} Corner 325 32724 {normal=(-0.727412 0.558316 -0.398941)} Corner 391 32725 {normal=(-0.380431 0.316408 -0.868998)} Corner 391 32726 {normal=(-0.380431 0.316408 -0.868998)} Corner 217 32733 {normal=(-0.247441 -0.801555 -0.544319)} Corner 138 32735 {normal=(-0.437007 -0.898389 -0.0438495)} Corner 138 32736 {normal=(-0.437007 -0.898389 -0.0438495)} Corner 217 32736 {normal=(-0.247441 -0.801555 -0.544319)} Corner 319 32737 {normal=(0.195907 -0.0969889 -0.975814)} Corner 217 32737 {normal=(0.208954 -0.185823 -0.960108)} Corner 217 32738 {normal=(0.208954 -0.185823 -0.960108)} Corner 138 32738 {normal=(0.225738 -0.320443 -0.919977)} Corner 138 32739 {normal=(0.225738 -0.320443 -0.919977)} Corner 278 32739 {normal=(0.225738 -0.320443 -0.919977)} Corner 278 32740 {normal=(0.225738 -0.320443 -0.919977)} Corner 319 32740 {normal=(0.195907 -0.0969889 -0.975814)} Corner 209 32741 {normal=(-0.346965 -0.590327 0.728786)} Corner 209 32742 {normal=(-0.346965 -0.590327 0.728786)} Corner 137 32742 {normal=(-0.459679 -0.67037 0.582494)} Corner 137 32743 {normal=(-0.459679 -0.67037 0.582494)} Corner 387 32749 {normal=(-0.388925 0.364273 0.846193)} Corner 341 32749 {normal=(-0.439252 0.608243 0.661134)} Corner 341 32750 {normal=(-0.439252 0.608243 0.661134)} Corner 387 32752 {normal=(-0.388925 0.364273 0.846193)} Corner 341 32753 {normal=(-0.439252 0.608243 0.661134)} Corner 325 32753 {normal=(-0.431926 0.804296 0.408103)} Corner 325 32754 {normal=(-0.431926 0.804296 0.408103)} Corner 299 32754 {normal=(-0.729022 0.534804 0.427214)} Corner 299 32755 {normal=(-0.729022 0.534804 0.427214)} Corner 341 32756 {normal=(-0.439252 0.608243 0.661134)} Corner 302 32757 {normal=(-0.850982 0.0735654 0.520017)} Corner 299 32758 {normal=(-0.729022 0.534804 0.427214)} Corner 299 32759 {normal=(-0.729022 0.534804 0.427214)} Corner 290 32759 {normal=(-0.923793 0.119347 0.363817)} Corner 290 32760 {normal=(-0.923793 0.119347 0.363817)} Corner 302 32760 {normal=(-0.850982 0.0735654 0.520017)} Corner 325 32761 {normal=(-0.923483 0.281858 0.26026)} Corner 341 32761 {normal=(-0.923483 0.281858 0.26026)} Corner 341 32762 {normal=(-0.923483 0.281858 0.26026)} Corner 343 32762 {normal=(-0.26063 0.911334 0.318658)} Corner 343 32763 {normal=(-0.26063 0.911334 0.318658)} Corner 335 32763 {normal=(-0.06602 0.992074 0.106918)} Corner 335 32764 {normal=(-0.06602 0.992074 0.106918)} Corner 325 32764 {normal=(-0.923483 0.281858 0.26026)} Corner 549 32765 {normal=(0.195461 0.980283 0.0289988)} Corner 549 32766 {normal=(0.195461 0.980283 0.0289988)} Corner 302 32769 {normal=(-0.850982 0.0735654 0.520017)} Corner 302 32770 {normal=(-0.850982 0.0735654 0.520017)} Corner 316 32770 {normal=(-0.640224 -0.0531976 0.766344)} Corner 316 32771 {normal=(-0.640224 -0.0531976 0.766344)} Corner 316 32773 {normal=(-0.640224 -0.0531976 0.766344)} Corner 373 32773 {normal=(-0.367585 -0.207828 0.906471)} Corner 373 32774 {normal=(-0.367585 -0.207828 0.906471)} Corner 424 32774 {normal=(-0.364091 -0.138789 0.920964)} Corner 424 32775 {normal=(-0.364091 -0.138789 0.920964)} Corner 316 32776 {normal=(-0.640224 -0.0531976 0.766344)} Corner 341 32777 {normal=(-0.439252 0.608243 0.661134)} Corner 387 32777 {normal=(-0.388925 0.364273 0.846193)} Corner 387 32778 {normal=(-0.388925 0.364273 0.846193)} Corner 390 32778 {normal=(-0.374261 0.463087 0.803418)} Corner 390 32779 {normal=(-0.374261 0.463087 0.803418)} Corner 343 32779 {normal=(-0.374261 0.463087 0.803417)} Corner 343 32780 {normal=(-0.374261 0.463087 0.803417)} Corner 341 32780 {normal=(-0.439252 0.608243 0.661134)} Corner 483 32781 {normal=(-0.239602 -0.257917 0.935986)} Corner 548 32781 {normal=(-0.239705 -0.256101 0.936458)} Corner 548 32782 {normal=(-0.239705 -0.256101 0.936458)} Corner 424 32782 {normal=(-0.364091 -0.138789 0.920964)} Corner 424 32783 {normal=(-0.364091 -0.138789 0.920964)} Corner 373 32783 {normal=(-0.367585 -0.207828 0.906471)} Corner 373 32784 {normal=(-0.367585 -0.207828 0.906471)} Corner 483 32784 {normal=(-0.239602 -0.257917 0.935986)} Corner 483 32785 {normal=(-0.43081 -0.81229 0.393176)} Corner 483 32786 {normal=(-0.43081 -0.81229 0.393176)} Corner 373 32786 {normal=(-0.605698 -0.698089 0.38184)} Corner 373 32787 {normal=(-0.605698 -0.698089 0.38184)} Corner 549 32789 {normal=(0.195461 0.980283 0.0289988)} Corner 390 32790 {normal=(0.403498 0.908077 0.112187)} Corner 390 32791 {normal=(0.403498 0.908077 0.112187)} Corner 387 32791 {normal=(0.357064 0.931148 -0.0739519)} Corner 387 32792 {normal=(0.357064 0.931148 -0.0739519)} Corner 549 32792 {normal=(0.195461 0.980283 0.0289988)} Corner 548 32793 {normal=(0.181198 0.541723 0.820794)} Corner 549 32793 {normal=(0.172984 0.528732 0.830974)} Corner 549 32794 {normal=(0.172984 0.528732 0.830974)} Corner 387 32794 {normal=(0.154443 0.499096 0.852673)} Corner 387 32795 {normal=(0.154443 0.499096 0.852673)} Corner 424 32795 {normal=(0.154442 0.499096 0.852673)} Corner 424 32796 {normal=(0.154442 0.499096 0.852673)} Corner 548 32796 {normal=(0.181198 0.541723 0.820794)} Corner 726 32797 {normal=(0.570934 0.819992 0.0405935)} Corner 549 32799 {normal=(0.195461 0.980283 0.0289988)} Corner 549 32800 {normal=(0.195461 0.980283 0.0289988)} Corner 726 32800 {normal=(0.570934 0.819992 0.0405935)} Corner 690 32801 {normal=(0.234121 0.501698 0.832758)} Corner 726 32801 {normal=(0.229549 0.509991 0.828985)} Corner 726 32802 {normal=(0.229549 0.509991 0.828985)} Corner 549 32802 {normal=(0.172984 0.528732 0.830974)} Corner 549 32803 {normal=(0.172984 0.528732 0.830974)} Corner 548 32803 {normal=(0.181198 0.541723 0.820794)} Corner 548 32804 {normal=(0.181198 0.541723 0.820794)} Corner 690 32804 {normal=(0.234121 0.501698 0.832758)} Corner 588 32805 {normal=(-0.251448 -0.208228 0.945206)} Corner 690 32805 {normal=(-0.259871 -0.183576 0.948033)} Corner 690 32806 {normal=(-0.259871 -0.183576 0.948033)} Corner 548 32806 {normal=(-0.239705 -0.256101 0.936458)} Corner 548 32807 {normal=(-0.239705 -0.256101 0.936458)} Corner 483 32807 {normal=(-0.239602 -0.257917 0.935986)} Corner 483 32808 {normal=(-0.239602 -0.257917 0.935986)} Corner 588 32808 {normal=(-0.251448 -0.208228 0.945206)} Corner 588 32809 {normal=(-0.441781 -0.817599 0.369273)} Corner 588 32810 {normal=(-0.441781 -0.817599 0.369273)} Corner 483 32810 {normal=(-0.43081 -0.81229 0.393176)} Corner 483 32811 {normal=(-0.43081 -0.81229 0.393176)} Corner 714 32813 {normal=(0.264371 0.444318 0.855973)} Corner 777 32813 {normal=(0.264371 0.444318 0.855973)} Corner 777 32814 {normal=(0.264371 0.444318 0.855973)} Corner 726 32814 {normal=(0.229549 0.509991 0.828985)} Corner 726 32815 {normal=(0.229549 0.509991 0.828985)} Corner 690 32815 {normal=(0.234121 0.501698 0.832758)} Corner 690 32816 {normal=(0.234121 0.501698 0.832758)} Corner 714 32816 {normal=(0.264371 0.444318 0.855973)} Corner 617 32817 {normal=(-0.299024 -0.0796728 0.950914)} Corner 714 32817 {normal=(-0.339995 0.0329184 0.939851)} Corner 714 32818 {normal=(-0.339995 0.0329184 0.939851)} Corner 690 32818 {normal=(-0.259871 -0.183576 0.948033)} Corner 690 32819 {normal=(-0.259871 -0.183576 0.948033)} Corner 588 32819 {normal=(-0.251448 -0.208228 0.945206)} Corner 588 32820 {normal=(-0.251448 -0.208228 0.945206)} Corner 617 32820 {normal=(-0.299024 -0.0796728 0.950914)} Corner 572 32821 {normal=(-0.456514 -0.886972 -0.0698223)} Corner 617 32821 {normal=(-0.531517 -0.774996 0.341863)} Corner 617 32822 {normal=(-0.531517 -0.774996 0.341863)} Corner 588 32822 {normal=(-0.441781 -0.817599 0.369273)} Corner 588 32823 {normal=(-0.441781 -0.817599 0.369273)} Corner 572 32824 {normal=(-0.456514 -0.886972 -0.0698223)} Corner 777 32825 {normal=(0.767069 0.641541 0.00552274)} Corner 786 32825 {normal=(0.758209 0.649601 0.0560099)} Corner 786 32826 {normal=(0.758209 0.649601 0.0560099)} Corner 726 32827 {normal=(0.570934 0.819992 0.0405935)} Corner 726 32828 {normal=(0.570934 0.819992 0.0405935)} Corner 777 32828 {normal=(0.767069 0.641541 0.00552274)} Corner 545 32829 {normal=(0.0474537 0.998607 -0.0230831)} Corner 587 32829 {normal=(0.19308 0.969758 -0.149297)} Corner 587 32830 {normal=(0.19308 0.969758 -0.149297)} Corner 617 32830 {normal=(0.107936 0.994112 -0.0095166)} Corner 617 32831 {normal=(0.107936 0.994112 -0.0095166)} Corner 572 32831 {normal=(0.0580426 0.997739 -0.033894)} Corner 572 32832 {normal=(0.0580426 0.997739 -0.033894)} Corner 545 32832 {normal=(0.0474537 0.998607 -0.0230831)} Corner 760 32833 {normal=(0.970082 -0.222062 0.0981322)} Corner 786 32834 {normal=(0.978999 -0.180642 0.0944957)} Corner 786 32835 {normal=(0.978999 -0.180642 0.0944957)} Corner 777 32835 {normal=(0.973991 -0.189154 0.124747)} Corner 777 32836 {normal=(0.973991 -0.189154 0.124747)} Corner 760 32836 {normal=(0.970082 -0.222062 0.0981322)} Corner 703 32837 {normal=(0.485283 -0.143142 0.862561)} Corner 760 32837 {normal=(0.493089 -0.14002 0.858637)} Corner 760 32838 {normal=(0.493089 -0.14002 0.858637)} Corner 777 32838 {normal=(0.430787 -0.164163 0.887397)} Corner 777 32839 {normal=(0.430787 -0.164163 0.887397)} Corner 714 32839 {normal=(0.430787 -0.164163 0.887397)} Corner 714 32840 {normal=(0.430787 -0.164163 0.887397)} Corner 703 32840 {normal=(0.485283 -0.143142 0.862561)} Corner 730 32841 {normal=(0.871773 -0.479135 0.102184)} Corner 760 32843 {normal=(0.970082 -0.222062 0.0981322)} Corner 760 32844 {normal=(0.970082 -0.222062 0.0981322)} Corner 730 32844 {normal=(0.871773 -0.479135 0.102184)} Corner 666 32845 {normal=(0.520454 -0.182254 0.834213)} Corner 730 32845 {normal=(0.516751 -0.193066 0.834083)} Corner 730 32846 {normal=(0.516751 -0.193066 0.834083)} Corner 760 32846 {normal=(0.493089 -0.14002 0.858637)} Corner 760 32847 {normal=(0.493089 -0.14002 0.858637)} Corner 703 32847 {normal=(0.485283 -0.143142 0.862561)} Corner 703 32848 {normal=(0.485283 -0.143142 0.862561)} Corner 666 32848 {normal=(0.520454 -0.182254 0.834213)} Corner 556 32849 {normal=(-0.256177 0.182265 0.949291)} Corner 666 32849 {normal=(-0.22478 0.220181 0.949207)} Corner 666 32850 {normal=(-0.22478 0.220181 0.949207)} Corner 703 32850 {normal=(-0.305697 0.119937 0.944545)} Corner 703 32851 {normal=(-0.305697 0.119937 0.944545)} Corner 587 32851 {normal=(-0.305697 0.119937 0.944545)} Corner 587 32852 {normal=(-0.305697 0.119937 0.944545)} Corner 556 32852 {normal=(-0.256177 0.182265 0.949291)} Corner 504 32853 {normal=(-0.874075 0.415641 0.251466)} Corner 556 32853 {normal=(-0.874566 0.414291 0.251987)} Corner 556 32854 {normal=(-0.874566 0.414291 0.251987)} Corner 587 32854 {normal=(-0.880786 0.396573 0.258739)} Corner 587 32855 {normal=(-0.880786 0.396573 0.258739)} Corner 545 32855 {normal=(-0.880786 0.396573 0.258739)} Corner 545 32856 {normal=(-0.880786 0.396573 0.258739)} Corner 504 32856 {normal=(-0.874075 0.415641 0.251466)} Corner 510 32857 {normal=(-0.195023 0.281334 0.939584)} Corner 607 32857 {normal=(-0.195269 0.281412 0.939509)} Corner 607 32858 {normal=(-0.195269 0.281412 0.939509)} Corner 666 32858 {normal=(-0.22478 0.220181 0.949207)} Corner 666 32859 {normal=(-0.22478 0.220181 0.949207)} Corner 556 32859 {normal=(-0.256177 0.182265 0.949291)} Corner 556 32860 {normal=(-0.256177 0.182265 0.949291)} Corner 510 32860 {normal=(-0.195023 0.281334 0.939584)} Corner 490 32861 {normal=(-0.868203 0.43131 0.245346)} Corner 510 32861 {normal=(-0.868203 0.43131 0.245346)} Corner 510 32862 {normal=(-0.868203 0.43131 0.245346)} Corner 556 32862 {normal=(-0.874566 0.414291 0.251987)} Corner 556 32863 {normal=(-0.874566 0.414291 0.251987)} Corner 504 32863 {normal=(-0.874075 0.415641 0.251466)} Corner 504 32864 {normal=(-0.874075 0.415641 0.251466)} Corner 490 32864 {normal=(-0.868203 0.43131 0.245346)} Corner 649 32865 {normal=(0.520022 -0.841048 0.149051)} Corner 730 32867 {normal=(0.871773 -0.479135 0.102184)} Corner 730 32868 {normal=(0.871773 -0.479135 0.102184)} Corner 649 32868 {normal=(0.520022 -0.841048 0.149051)} Corner 607 32869 {normal=(0.494583 -0.253615 0.831305)} Corner 649 32869 {normal=(0.494583 -0.253615 0.831305)} Corner 649 32870 {normal=(0.494583 -0.253615 0.831305)} Corner 730 32870 {normal=(0.516751 -0.193066 0.834083)} Corner 730 32871 {normal=(0.516751 -0.193066 0.834083)} Corner 666 32871 {normal=(0.520454 -0.182254 0.834213)} Corner 666 32872 {normal=(0.520454 -0.182254 0.834213)} Corner 607 32872 {normal=(0.494583 -0.253615 0.831305)} Corner 500 32873 {normal=(0.301444 -0.941611 0.149999)} Corner 494 32873 {normal=(0.305343 -0.943667 0.127509)} Corner 494 32874 {normal=(0.305343 -0.943667 0.127509)} Corner 649 32875 {normal=(0.520022 -0.841048 0.149051)} Corner 649 32876 {normal=(0.520022 -0.841048 0.149051)} Corner 500 32876 {normal=(0.301444 -0.941611 0.149999)} Corner 532 32877 {normal=(-0.125694 -0.526403 0.840893)} Corner 500 32877 {normal=(-0.288076 -0.711794 0.640595)} Corner 500 32878 {normal=(-0.288076 -0.711794 0.640595)} Corner 649 32878 {normal=(0.0238279 -0.515418 0.856607)} Corner 649 32879 {normal=(0.0238279 -0.515418 0.856607)} Corner 607 32879 {normal=(0.0238279 -0.515418 0.856607)} Corner 607 32880 {normal=(0.0238279 -0.515418 0.856607)} Corner 532 32880 {normal=(-0.125694 -0.526403 0.840893)} Corner 445 32881 {normal=(-0.0551982 0.362902 0.930191)} Corner 532 32881 {normal=(-0.132636 0.326524 0.935836)} Corner 532 32882 {normal=(-0.132636 0.326524 0.935836)} Corner 607 32882 {normal=(-0.195269 0.281412 0.939509)} Corner 607 32883 {normal=(-0.195269 0.281412 0.939509)} Corner 510 32883 {normal=(-0.195023 0.281334 0.939584)} Corner 510 32884 {normal=(-0.195023 0.281334 0.939584)} Corner 445 32884 {normal=(-0.0551982 0.362902 0.930191)} Corner 419 32885 {normal=(-0.10644 0.977159 0.183929)} Corner 445 32885 {normal=(-0.10644 0.97716 0.183929)} Corner 445 32886 {normal=(-0.10644 0.97716 0.183929)} Corner 510 32886 {normal=(-0.10644 0.977159 0.183929)} Corner 510 32887 {normal=(-0.10644 0.977159 0.183929)} Corner 490 32887 {normal=(-0.10644 0.977159 0.183929)} Corner 490 32888 {normal=(-0.10644 0.977159 0.183929)} Corner 419 32888 {normal=(-0.10644 0.977159 0.183929)} Corner 500 32889 {normal=(-0.288076 -0.711794 0.640595)} Corner 494 32891 {normal=(-0.405641 -0.905664 0.1234)} Corner 494 32892 {normal=(-0.405641 -0.905664 0.1234)} Corner 500 32892 {normal=(-0.288076 -0.711794 0.640595)} Corner 331 32893 {normal=(0.655908 0.752265 -0.0623016)} Corner 301 32893 {normal=(0.562627 0.806963 0.179616)} Corner 301 32894 {normal=(0.562627 0.806963 0.179616)} Corner 445 32894 {normal=(0.623287 0.770226 0.135148)} Corner 445 32895 {normal=(0.623287 0.770226 0.135148)} Corner 419 32895 {normal=(0.636562 0.768428 -0.065633)} Corner 419 32896 {normal=(0.636562 0.768428 -0.065633)} Corner 331 32896 {normal=(0.655908 0.752265 -0.0623016)} Corner 209 32897 {normal=(-0.346965 -0.590327 0.728786)} Corner 500 32898 {normal=(-0.288076 -0.711794 0.640595)} Corner 500 32899 {normal=(-0.288076 -0.711794 0.640595)} Corner 532 32899 {normal=(-0.125694 -0.526403 0.840893)} Corner 532 32900 {normal=(-0.125694 -0.526403 0.840893)} Corner 209 32900 {normal=(-0.346965 -0.590327 0.728786)} Corner 301 32901 {normal=(0.016731 0.394151 0.918893)} Corner 209 32901 {normal=(0.016731 0.394151 0.918893)} Corner 209 32902 {normal=(0.016731 0.394151 0.918893)} Corner 532 32902 {normal=(-0.132636 0.326524 0.935836)} Corner 532 32903 {normal=(-0.132636 0.326524 0.935836)} Corner 445 32903 {normal=(-0.0551982 0.362902 0.930191)} Corner 445 32904 {normal=(-0.0551982 0.362902 0.930191)} Corner 301 32904 {normal=(0.016731 0.394151 0.918893)} Corner 138 32905 {normal=(-0.437007 -0.898389 -0.0438495)} Corner 34 32906 {normal=(-0.601963 -0.789689 -0.118455)} Corner 34 32907 {normal=(-0.601963 -0.789689 -0.118455)} Corner 70 32907 {normal=(-0.55827 -0.818093 -0.138055)} Corner 70 32908 {normal=(-0.55827 -0.818093 -0.138055)} Corner 138 32908 {normal=(-0.437007 -0.898389 -0.0438495)} Corner 240 32909 {normal=(0.399374 0.907661 -0.129046)} Corner 278 32909 {normal=(0.466623 0.88074 -0.0809999)} Corner 278 32910 {normal=(0.466623 0.88074 -0.0809999)} Corner 248 32910 {normal=(0.483279 0.874277 -0.0456157)} Corner 248 32911 {normal=(0.483279 0.874277 -0.0456157)} Corner 212 32911 {normal=(0.547765 0.833638 -0.0707231)} Corner 212 32912 {normal=(0.547765 0.833638 -0.0707231)} Corner 240 32912 {normal=(0.399374 0.907661 -0.129046)} Corner 294 32913 {normal=(0.85741 0.17342 -0.484535)} Corner 240 32913 {normal=(0.708086 -0.416778 -0.570009)} Corner 240 32914 {normal=(0.708086 -0.416778 -0.570009)} Corner 212 32914 {normal=(0.936821 -0.115372 -0.330235)} Corner 212 32915 {normal=(0.936821 -0.115372 -0.330235)} Corner 294 32916 {normal=(0.85741 0.17342 -0.484535)} Corner 137 32917 {normal=(-0.459679 -0.67037 0.582494)} Corner 137 32918 {normal=(-0.459679 -0.67037 0.582494)} Corner 43 32918 {normal=(-0.543026 -0.665696 0.511831)} Corner 43 32919 {normal=(-0.543026 -0.665696 0.511831)} Corner 30 32919 {normal=(-0.613801 -0.697846 0.369132)} Corner 30 32920 {normal=(-0.613801 -0.697846 0.369132)} Corner 30 32921 {normal=(-0.945189 0.134521 0.297527)} Corner 43 32921 {normal=(-0.946585 0.145746 0.287637)} Corner 43 32922 {normal=(-0.946585 0.145746 0.287637)} Corner 30 32924 {normal=(-0.945189 0.134521 0.297527)} Corner 19 32925 {normal=(-0.998365 0.0494198 -0.0287078)} Corner 30 32925 {normal=(-0.945189 0.134521 0.297527)} Corner 30 32926 {normal=(-0.945189 0.134521 0.297527)} Corner 19 32928 {normal=(-0.998365 0.0494198 -0.0287078)} Corner 34 32929 {normal=(-0.851482 -0.0620605 -0.520699)} Corner 19 32929 {normal=(-0.998365 0.0494198 -0.0287078)} Corner 19 32930 {normal=(-0.998365 0.0494198 -0.0287078)} Corner 34 32932 {normal=(-0.851482 -0.0620605 -0.520699)} Corner 70 32933 {normal=(-0.952169 -0.0209777 -0.304852)} Corner 34 32933 {normal=(-0.851482 -0.0620605 -0.520699)} Corner 34 32934 {normal=(-0.851482 -0.0620605 -0.520699)} Corner 70 32936 {normal=(-0.952169 -0.0209777 -0.304852)} Corner 212 32937 {normal=(0.936821 -0.115372 -0.330235)} Corner 248 32937 {normal=(0.972912 0.18015 0.144873)} Corner 248 32938 {normal=(0.972912 0.18015 0.144873)} Corner 212 32940 {normal=(0.936821 -0.115372 -0.330235)} Corner 212 32941 {normal=(0.936821 -0.115372 -0.330235)} Corner 212 32942 {normal=(0.936821 -0.115372 -0.330235)} Corner 280 32945 {normal=(0.910718 0.409793 -0.0515945)} Corner 334 32947 {normal=(0.995509 -0.0783009 -0.0532041)} Corner 334 32948 {normal=(0.995509 -0.0783009 -0.0532041)} Corner 280 32948 {normal=(0.910718 0.409793 -0.0515945)} Corner 250 32949 {normal=(0.847454 0.194433 0.493982)} Corner 280 32949 {normal=(0.847454 0.194433 0.493982)} Corner 280 32950 {normal=(0.847454 0.194433 0.493982)} Corner 334 32950 {normal=(0.824752 0.0886958 0.558496)} Corner 334 32951 {normal=(0.824752 0.0886958 0.558496)} Corner 232 32951 {normal=(0.839725 0.15121 0.521534)} Corner 232 32952 {normal=(0.839725 0.15121 0.521534)} Corner 250 32952 {normal=(0.847454 0.194433 0.493982)} Corner 95 32953 {normal=(0.201106 0.336165 0.920081)} Corner 250 32953 {normal=(0.188532 0.352507 0.916621)} Corner 250 32954 {normal=(0.188532 0.352507 0.916621)} Corner 232 32954 {normal=(0.347671 0.393464 0.851065)} Corner 232 32955 {normal=(0.347671 0.393464 0.851065)} Corner 120 32955 {normal=(0.289382 0.352801 0.889825)} Corner 120 32956 {normal=(0.289382 0.352801 0.889825)} Corner 95 32956 {normal=(0.201106 0.336165 0.920081)} Corner 61 32957 {normal=(-0.839387 0.234404 0.490392)} Corner 95 32957 {normal=(-0.757132 0.280681 0.589889)} Corner 95 32958 {normal=(-0.757132 0.280681 0.589889)} Corner 120 32958 {normal=(-0.582218 0.341087 0.738025)} Corner 120 32959 {normal=(-0.582218 0.341087 0.738025)} Corner 61 32960 {normal=(-0.839387 0.234404 0.490392)} Corner 42 32961 {normal=(-0.998031 0.0437707 -0.0449151)} Corner 61 32961 {normal=(-0.839387 0.234404 0.490392)} Corner 61 32962 {normal=(-0.839387 0.234404 0.490392)} Corner 42 32964 {normal=(-0.998031 0.0437707 -0.0449151)} Corner 63 32965 {normal=(-0.998142 0.0581908 0.0180403)} Corner 42 32965 {normal=(-0.998031 0.0437707 -0.0449151)} Corner 42 32966 {normal=(-0.998031 0.0437707 -0.0449151)} Corner 63 32968 {normal=(-0.998142 0.0581908 0.0180403)} Corner 43 32969 {normal=(-0.946585 0.145746 0.287637)} Corner 63 32969 {normal=(-0.998142 0.0581908 0.0180403)} Corner 63 32970 {normal=(-0.998142 0.0581908 0.0180403)} Corner 43 32972 {normal=(-0.946585 0.145746 0.287637)} Corner 137 32973 {normal=(-0.459679 -0.67037 0.582494)} Corner 122 32973 {normal=(-0.520127 -0.61836 0.589151)} Corner 122 32974 {normal=(-0.520127 -0.61836 0.589151)} Corner 63 32974 {normal=(-0.520127 -0.61836 0.589152)} Corner 63 32975 {normal=(-0.520127 -0.61836 0.589152)} Corner 43 32975 {normal=(-0.543026 -0.665696 0.511831)} Corner 43 32976 {normal=(-0.543026 -0.665696 0.511831)} Corner 137 32976 {normal=(-0.459679 -0.67037 0.582494)} Corner 294 32977 {normal=(0.85741 0.17342 -0.484535)} Corner 294 32978 {normal=(0.85741 0.17342 -0.484535)} Corner 280 32979 {normal=(0.910718 0.409793 -0.0515945)} Corner 280 32980 {normal=(0.910718 0.409793 -0.0515945)} Corner 291 32981 {normal=(0.739461 0.640715 0.206596)} Corner 280 32982 {normal=(0.910718 0.409793 -0.0515945)} Corner 280 32983 {normal=(0.910718 0.409793 -0.0515945)} Corner 250 32983 {normal=(0.693178 0.711784 0.113436)} Corner 250 32984 {normal=(0.693178 0.711784 0.113436)} Corner 291 32984 {normal=(0.739461 0.640715 0.206596)} Corner 152 32985 {normal=(0.188902 0.364807 0.911719)} Corner 291 32985 {normal=(0.239179 0.324436 0.915169)} Corner 291 32986 {normal=(0.239179 0.324436 0.915169)} Corner 250 32986 {normal=(0.188532 0.352507 0.916621)} Corner 250 32987 {normal=(0.188532 0.352507 0.916621)} Corner 95 32987 {normal=(0.201106 0.336165 0.920081)} Corner 95 32988 {normal=(0.201106 0.336165 0.920081)} Corner 152 32988 {normal=(0.188902 0.364807 0.911719)} Corner 104 32989 {normal=(-0.495082 -0.400984 0.770782)} Corner 152 32989 {normal=(-0.413579 -0.424825 0.80528)} Corner 152 32990 {normal=(-0.413579 -0.424825 0.80528)} Corner 95 32990 {normal=(-0.586772 -0.368173 0.721212)} Corner 95 32991 {normal=(-0.586772 -0.368173 0.721212)} Corner 61 32991 {normal=(-0.586772 -0.368173 0.721212)} Corner 61 32992 {normal=(-0.586772 -0.368173 0.721212)} Corner 104 32992 {normal=(-0.495082 -0.400984 0.770782)} Corner 276 32993 {normal=(0.13831 -0.307819 -0.941338)} Corner 402 32993 {normal=(0.22213 -0.130743 -0.966211)} Corner 402 32994 {normal=(0.22213 -0.130743 -0.966211)} Corner 496 32994 {normal=(0.179604 0.00322059 -0.983734)} Corner 496 32995 {normal=(0.179604 0.00322059 -0.983734)} Corner 505 32995 {normal=(-0.0268317 0.0284796 -0.999234)} Corner 505 32996 {normal=(-0.0268317 0.0284796 -0.999234)} Corner 276 32996 {normal=(0.13831 -0.307819 -0.941338)} Corner 207 32997 {normal=(-0.48926 -0.550392 -0.67653)} Corner 276 32997 {normal=(-0.48926 -0.550392 -0.67653)} Corner 276 32998 {normal=(-0.48926 -0.550392 -0.67653)} Corner 505 32998 {normal=(-0.488068 -0.555335 -0.673344)} Corner 505 32999 {normal=(-0.488068 -0.555335 -0.673344)} Corner 434 32999 {normal=(-0.487972 -0.555732 -0.673087)} Corner 434 33000 {normal=(-0.487972 -0.555732 -0.673087)} Corner 207 33000 {normal=(-0.48926 -0.550392 -0.67653)} Corner 402 33001 {normal=(0.72826 0.578789 -0.366936)} Corner 496 33003 {normal=(0.923004 0.384721 -0.00735107)} Corner 496 33004 {normal=(0.923004 0.384721 -0.00735107)} Corner 402 33004 {normal=(0.72826 0.578789 -0.366936)} Corner 207 33005 {normal=(-0.459609 -0.888121 -0.00117084)} Corner 434 33005 {normal=(-0.615541 -0.780578 -0.10866)} Corner 434 33006 {normal=(-0.615541 -0.780578 -0.10866)} Corner 207 33008 {normal=(-0.459609 -0.888121 -0.00117084)} Corner 496 33009 {normal=(0.923004 0.384721 -0.00735107)} Corner 487 33010 {normal=(0.949859 0.283378 0.132152)} Corner 487 33011 {normal=(0.949859 0.283378 0.132152)} Corner 559 33011 {normal=(0.95293 0.267271 0.143147)} Corner 559 33012 {normal=(0.95293 0.267271 0.143147)} Corner 496 33012 {normal=(0.923004 0.384721 -0.00735107)} Corner 505 33013 {normal=(-0.0268317 0.0284796 -0.999234)} Corner 496 33013 {normal=(0.179604 0.00322059 -0.983734)} Corner 496 33014 {normal=(0.179604 0.00322059 -0.983734)} Corner 559 33014 {normal=(-0.0673561 0.0188643 -0.997551)} Corner 559 33015 {normal=(-0.0673561 0.0188643 -0.997551)} Corner 610 33015 {normal=(-0.0492503 0.0101562 -0.998735)} Corner 610 33016 {normal=(-0.0492503 0.0101562 -0.998735)} Corner 505 33016 {normal=(-0.0268317 0.0284796 -0.999234)} Corner 434 33017 {normal=(-0.487972 -0.555732 -0.673087)} Corner 505 33017 {normal=(-0.488068 -0.555335 -0.673344)} Corner 505 33018 {normal=(-0.488068 -0.555335 -0.673344)} Corner 610 33018 {normal=(-0.486649 -0.561104 -0.669578)} Corner 610 33019 {normal=(-0.486649 -0.561104 -0.669578)} Corner 605 33019 {normal=(-0.486649 -0.561104 -0.669578)} Corner 605 33020 {normal=(-0.486649 -0.561104 -0.669578)} Corner 434 33020 {normal=(-0.487972 -0.555732 -0.673087)} Corner 434 33021 {normal=(-0.615541 -0.780578 -0.10866)} Corner 434 33022 {normal=(-0.615541 -0.780578 -0.10866)} Corner 605 33022 {normal=(-0.588189 -0.80151 -0.107772)} Corner 605 33023 {normal=(-0.588189 -0.80151 -0.107772)} Corner 568 33023 {normal=(-0.585121 -0.810672 -0.0210637)} Corner 568 33024 {normal=(-0.585121 -0.810672 -0.0210637)} Corner 605 33025 {normal=(0.529116 -0.573087 -0.625786)} Corner 610 33025 {normal=(0.529116 -0.573087 -0.625786)} Corner 610 33026 {normal=(0.529116 -0.573087 -0.625786)} Corner 661 33026 {normal=(0.495853 -0.596621 -0.63101)} Corner 661 33027 {normal=(0.495853 -0.596621 -0.63101)} Corner 704 33027 {normal=(0.500239 -0.593608 -0.630389)} Corner 704 33028 {normal=(0.500239 -0.593608 -0.630389)} Corner 605 33028 {normal=(0.529116 -0.573087 -0.625786)} Corner 568 33029 {normal=(0.53621 -0.825006 0.178448)} Corner 605 33029 {normal=(0.532654 -0.823332 0.195972)} Corner 605 33030 {normal=(0.532654 -0.823332 0.195972)} Corner 704 33030 {normal=(0.609321 -0.764843 0.209149)} Corner 704 33031 {normal=(0.609321 -0.764843 0.209149)} Corner 568 33032 {normal=(0.53621 -0.825006 0.178448)} Corner 559 33033 {normal=(-0.485233 0.586755 -0.64828)} Corner 487 33033 {normal=(-0.485233 0.586755 -0.64828)} Corner 487 33034 {normal=(-0.485233 0.586755 -0.64828)} Corner 516 33034 {normal=(-0.308864 0.872203 -0.379295)} Corner 516 33035 {normal=(-0.308864 0.872203 -0.379295)} Corner 584 33035 {normal=(-0.306695 0.752625 -0.582661)} Corner 584 33036 {normal=(-0.306695 0.752625 -0.582661)} Corner 559 33036 {normal=(-0.485233 0.586755 -0.64828)} Corner 610 33037 {normal=(-0.0492503 0.0101562 -0.998735)} Corner 559 33037 {normal=(-0.0673561 0.0188643 -0.997551)} Corner 559 33038 {normal=(-0.0673561 0.0188643 -0.997551)} Corner 584 33038 {normal=(-0.0395593 -0.00649978 -0.999196)} Corner 584 33039 {normal=(-0.0395593 -0.00649978 -0.999196)} Corner 661 33039 {normal=(-0.0344313 -0.00608059 -0.999389)} Corner 661 33040 {normal=(-0.0344313 -0.00608059 -0.999389)} Corner 610 33040 {normal=(-0.0492503 0.0101562 -0.998735)} Corner 584 33041 {normal=(-0.306695 0.752625 -0.582661)} Corner 516 33041 {normal=(-0.308864 0.872203 -0.379295)} Corner 516 33042 {normal=(-0.308864 0.872203 -0.379295)} Corner 673 33043 {normal=(-0.246115 0.832255 -0.496769)} Corner 673 33044 {normal=(-0.246115 0.832255 -0.496769)} Corner 584 33044 {normal=(-0.306695 0.752625 -0.582661)} Corner 661 33045 {normal=(-0.0344313 -0.00608059 -0.999389)} Corner 584 33045 {normal=(-0.0395593 -0.00649978 -0.999196)} Corner 584 33046 {normal=(-0.0395593 -0.00649978 -0.999196)} Corner 673 33046 {normal=(-0.0623321 0.00912266 -0.998014)} Corner 673 33047 {normal=(-0.0623321 0.00912266 -0.998014)} Corner 755 33047 {normal=(-0.0695926 0.029707 -0.997133)} Corner 755 33048 {normal=(-0.0695926 0.029707 -0.997133)} Corner 661 33048 {normal=(-0.0344313 -0.00608059 -0.999389)} Corner 704 33049 {normal=(0.500239 -0.593608 -0.630389)} Corner 661 33049 {normal=(0.495853 -0.596621 -0.63101)} Corner 661 33050 {normal=(0.495853 -0.596621 -0.63101)} Corner 755 33050 {normal=(0.474025 -0.61133 -0.6337)} Corner 755 33051 {normal=(0.474025 -0.61133 -0.6337)} Corner 805 33051 {normal=(0.475806 -0.610198 -0.633457)} Corner 805 33052 {normal=(0.475806 -0.610198 -0.633457)} Corner 704 33052 {normal=(0.500239 -0.593608 -0.630389)} Corner 704 33053 {normal=(0.609321 -0.764843 0.209149)} Corner 704 33054 {normal=(0.609321 -0.764843 0.209149)} Corner 805 33054 {normal=(0.774681 -0.599401 0.201464)} Corner 805 33055 {normal=(0.774681 -0.599401 0.201464)} Corner 755 33057 {normal=(-0.0695926 0.029707 -0.997133)} Corner 673 33057 {normal=(-0.0623321 0.00912266 -0.998014)} Corner 673 33058 {normal=(-0.0623321 0.00912266 -0.998014)} Corner 694 33058 {normal=(-0.112193 -0.127186 -0.985513)} Corner 694 33059 {normal=(-0.112193 -0.127186 -0.985513)} Corner 787 33059 {normal=(-0.113809 -0.135757 -0.984184)} Corner 787 33060 {normal=(-0.113809 -0.135757 -0.984184)} Corner 755 33060 {normal=(-0.0695926 0.029707 -0.997133)} Corner 805 33061 {normal=(0.475806 -0.610198 -0.633457)} Corner 755 33061 {normal=(0.474025 -0.61133 -0.6337)} Corner 755 33062 {normal=(0.474025 -0.61133 -0.6337)} Corner 787 33062 {normal=(0.482369 -0.605988 -0.632534)} Corner 787 33063 {normal=(0.482369 -0.605988 -0.632534)} Corner 830 33063 {normal=(0.482369 -0.605988 -0.632534)} Corner 830 33064 {normal=(0.482369 -0.605988 -0.632534)} Corner 805 33064 {normal=(0.475806 -0.610198 -0.633457)} Corner 805 33065 {normal=(0.774681 -0.599401 0.201464)} Corner 805 33066 {normal=(0.774681 -0.599401 0.201464)} Corner 830 33066 {normal=(0.841873 -0.506749 0.185623)} Corner 830 33067 {normal=(0.841873 -0.506749 0.185623)} Corner 825 33067 {normal=(0.839528 -0.49447 0.225148)} Corner 825 33068 {normal=(0.839528 -0.49447 0.225148)} Corner 673 33069 {normal=(-0.246115 0.832255 -0.496769)} Corner 654 33070 {normal=(-0.363126 0.886933 -0.285464)} Corner 654 33071 {normal=(-0.363126 0.886933 -0.285464)} Corner 694 33071 {normal=(-0.345895 0.79522 -0.497978)} Corner 694 33072 {normal=(-0.345895 0.79522 -0.497978)} Corner 673 33072 {normal=(-0.246115 0.832255 -0.496769)} Corner 825 33073 {normal=(0.899983 0.435912 0.00329597)} Corner 830 33073 {normal=(0.89479 0.44402 0.0468745)} Corner 830 33074 {normal=(0.89479 0.44402 0.0468745)} Corner 804 33074 {normal=(0.776822 0.624776 -0.0787576)} Corner 804 33075 {normal=(0.776822 0.624776 -0.0787576)} Corner 825 33076 {normal=(0.899983 0.435912 0.00329597)} Corner 694 33077 {normal=(-0.0817313 -0.956088 0.281454)} Corner 654 33077 {normal=(0.0401162 -0.976824 0.210251)} Corner 654 33078 {normal=(0.0401162 -0.976824 0.210251)} Corner 634 33078 {normal=(0.0415506 -0.97695 0.209385)} Corner 634 33079 {normal=(0.0415506 -0.97695 0.209385)} Corner 687 33079 {normal=(-0.0817313 -0.956088 0.281454)} Corner 687 33080 {normal=(-0.0817313 -0.956088 0.281454)} Corner 694 33080 {normal=(-0.0817313 -0.956088 0.281454)} Corner 787 33081 {normal=(-0.113809 -0.135757 -0.984184)} Corner 694 33081 {normal=(-0.112193 -0.127186 -0.985513)} Corner 694 33082 {normal=(-0.112193 -0.127186 -0.985513)} Corner 687 33082 {normal=(-0.156332 -0.355 -0.921702)} Corner 687 33083 {normal=(-0.156332 -0.355 -0.921702)} Corner 766 33083 {normal=(-0.151146 -0.332375 -0.930958)} Corner 766 33084 {normal=(-0.151146 -0.332375 -0.930958)} Corner 787 33084 {normal=(-0.113809 -0.135757 -0.984184)} Corner 830 33085 {normal=(0.525317 0.148145 -0.837911)} Corner 787 33085 {normal=(0.525317 0.148145 -0.837911)} Corner 787 33086 {normal=(0.525317 0.148145 -0.837911)} Corner 766 33086 {normal=(0.506583 0.208266 -0.836659)} Corner 766 33087 {normal=(0.506583 0.208266 -0.836659)} Corner 804 33087 {normal=(0.502074 0.22173 -0.835917)} Corner 804 33088 {normal=(0.502074 0.22173 -0.835917)} Corner 830 33088 {normal=(0.525317 0.148145 -0.837911)} Corner 687 33089 {normal=(-0.529653 -0.826042 -0.192671)} Corner 634 33089 {normal=(-0.591962 -0.795889 0.127051)} Corner 634 33090 {normal=(-0.591962 -0.795889 0.127051)} Corner 611 33091 {normal=(-0.619251 -0.743531 -0.252367)} Corner 611 33092 {normal=(-0.619251 -0.743531 -0.252367)} Corner 687 33092 {normal=(-0.529653 -0.826042 -0.192671)} Corner 766 33093 {normal=(-0.151146 -0.332375 -0.930958)} Corner 687 33093 {normal=(-0.156332 -0.355 -0.921702)} Corner 687 33094 {normal=(-0.156332 -0.355 -0.921702)} Corner 611 33094 {normal=(-0.192153 -0.396796 -0.897569)} Corner 611 33095 {normal=(-0.192153 -0.396796 -0.897569)} Corner 688 33095 {normal=(-0.190195 -0.396089 -0.898298)} Corner 688 33096 {normal=(-0.190195 -0.396089 -0.898298)} Corner 766 33096 {normal=(-0.151146 -0.332375 -0.930958)} Corner 804 33097 {normal=(0.502074 0.22173 -0.835917)} Corner 766 33097 {normal=(0.506583 0.208266 -0.836659)} Corner 766 33098 {normal=(0.506583 0.208266 -0.836659)} Corner 688 33098 {normal=(0.441112 0.263661 -0.857848)} Corner 688 33099 {normal=(0.441112 0.263661 -0.857848)} Corner 702 33099 {normal=(0.421567 0.254221 -0.870433)} Corner 702 33100 {normal=(0.421567 0.254221 -0.870433)} Corner 804 33100 {normal=(0.502074 0.22173 -0.835917)} Corner 804 33101 {normal=(0.776822 0.624776 -0.0787576)} Corner 804 33102 {normal=(0.776822 0.624776 -0.0787576)} Corner 702 33102 {normal=(0.480217 0.856234 -0.190407)} Corner 702 33103 {normal=(0.480217 0.856234 -0.190407)} Corner 702 33105 {normal=(0.421567 0.254221 -0.870433)} Corner 688 33105 {normal=(0.441112 0.263661 -0.857848)} Corner 688 33106 {normal=(0.441112 0.263661 -0.857848)} Corner 614 33106 {normal=(0.374317 0.231272 -0.897998)} Corner 614 33107 {normal=(0.374317 0.231272 -0.897998)} Corner 601 33107 {normal=(0.374317 0.231272 -0.897998)} Corner 601 33108 {normal=(0.374317 0.231272 -0.897998)} Corner 702 33108 {normal=(0.421567 0.254221 -0.870433)} Corner 702 33109 {normal=(0.480217 0.856234 -0.190407)} Corner 702 33110 {normal=(0.480217 0.856234 -0.190407)} Corner 601 33110 {normal=(0.6071 0.792395 -0.0594915)} Corner 601 33111 {normal=(0.6071 0.792395 -0.0594915)} Corner 602 33111 {normal=(0.661257 0.715286 -0.226066)} Corner 602 33112 {normal=(0.661257 0.715286 -0.226066)} Corner 611 33113 {normal=(-0.619251 -0.743531 -0.252367)} Corner 536 33115 {normal=(-0.745414 -0.580057 -0.328467)} Corner 536 33116 {normal=(-0.745414 -0.580057 -0.328467)} Corner 611 33116 {normal=(-0.619251 -0.743531 -0.252367)} Corner 688 33117 {normal=(-0.190195 -0.396089 -0.898298)} Corner 611 33117 {normal=(-0.192153 -0.396796 -0.897569)} Corner 611 33118 {normal=(-0.192153 -0.396796 -0.897569)} Corner 536 33118 {normal=(-0.324672 -0.302782 -0.896053)} Corner 536 33119 {normal=(-0.324672 -0.302782 -0.896053)} Corner 614 33119 {normal=(-0.298964 -0.243346 -0.922715)} Corner 614 33120 {normal=(-0.298964 -0.243346 -0.922715)} Corner 688 33120 {normal=(-0.190195 -0.396089 -0.898298)} Corner 601 33121 {normal=(-0.180628 0.249535 -0.95137)} Corner 555 33122 {normal=(-0.55837 0.441641 -0.702265)} Corner 555 33123 {normal=(-0.55837 0.441641 -0.702265)} Corner 602 33123 {normal=(-0.141929 0.34732 -0.926944)} Corner 602 33124 {normal=(-0.141929 0.34732 -0.926944)} Corner 601 33124 {normal=(-0.180628 0.249535 -0.95137)} Corner 536 33125 {normal=(-0.324672 -0.302782 -0.896053)} Corner 465 33125 {normal=(-0.549434 -0.0537605 -0.833806)} Corner 465 33126 {normal=(-0.549434 -0.0537605 -0.833806)} Corner 614 33127 {normal=(-0.298964 -0.243346 -0.922715)} Corner 614 33128 {normal=(-0.298964 -0.243346 -0.922715)} Corner 536 33128 {normal=(-0.324672 -0.302782 -0.896053)} Corner 446 33129 {normal=(-0.733997 0.175604 -0.656057)} Corner 465 33131 {normal=(-0.549434 -0.0537605 -0.833806)} Corner 465 33132 {normal=(-0.549434 -0.0537605 -0.833806)} Corner 446 33132 {normal=(-0.733997 0.175604 -0.656057)} Corner 702 33133 {normal=(0.480217 0.856234 -0.190407)} Corner 702 33136 {normal=(0.480217 0.856234 -0.190407)} Corner 524 33137 {normal=(-0.486997 0.651377 -0.581843)} Corner 524 33138 {normal=(-0.486997 0.651377 -0.581843)} Corner 541 33138 {normal=(-0.766396 0.448025 -0.460338)} Corner 541 33139 {normal=(-0.766396 0.448025 -0.460338)} Corner 555 33139 {normal=(-0.55837 0.441641 -0.702265)} Corner 555 33140 {normal=(-0.55837 0.441641 -0.702265)} Corner 446 33141 {normal=(-0.733997 0.175604 -0.656057)} Corner 446 33142 {normal=(-0.733997 0.175604 -0.656057)} Corner 430 33142 {normal=(-0.804674 0.273052 -0.527202)} Corner 430 33143 {normal=(-0.804674 0.273052 -0.527202)} Corner 474 33143 {normal=(-0.490834 0.592831 -0.638462)} Corner 474 33144 {normal=(-0.490834 0.592831 -0.638462)} Corner 524 33145 {normal=(-0.486997 0.651377 -0.581843)} Corner 474 33147 {normal=(-0.490834 0.592831 -0.638462)} Corner 474 33148 {normal=(-0.490834 0.592831 -0.638462)} Corner 524 33148 {normal=(-0.486997 0.651377 -0.581843)} Corner 601 33149 {normal=(-0.180628 0.249535 -0.95137)} Corner 601 33150 {normal=(-0.180628 0.249535 -0.95137)} Corner 402 33153 {normal=(0.72826 0.578789 -0.366936)} Corner 402 33154 {normal=(0.72826 0.578789 -0.366936)} Corner 294 33154 {normal=(0.85741 0.17342 -0.484535)} Corner 294 33155 {normal=(0.85741 0.17342 -0.484535)} Corner 207 33157 {normal=(-0.459609 -0.888121 -0.00117084)} Corner 122 33159 {normal=(-0.454166 -0.888783 0.06163)} Corner 122 33160 {normal=(-0.454166 -0.888783 0.06163)} Corner 207 33160 {normal=(-0.459609 -0.888121 -0.00117084)} Corner 276 33161 {normal=(-0.205656 -0.975747 0.074986)} Corner 207 33161 {normal=(-0.459609 -0.888121 -0.00117084)} Corner 207 33162 {normal=(-0.459609 -0.888121 -0.00117084)} Corner 122 33162 {normal=(-0.454166 -0.888783 0.06163)} Corner 122 33163 {normal=(-0.454166 -0.888783 0.06163)} Corner 137 33163 {normal=(-0.205656 -0.975747 0.074986)} Corner 137 33164 {normal=(-0.205656 -0.975747 0.074986)} Corner 276 33164 {normal=(-0.205656 -0.975747 0.074986)} Corner 225 33165 {normal=(0.25331 0.313929 0.915031)} Corner 337 33165 {normal=(0.23385 0.330952 0.914213)} Corner 337 33166 {normal=(0.23385 0.330952 0.914213)} Corner 291 33166 {normal=(0.239179 0.324436 0.915169)} Corner 291 33167 {normal=(0.239179 0.324436 0.915169)} Corner 152 33167 {normal=(0.188902 0.364807 0.911719)} Corner 152 33168 {normal=(0.188902 0.364807 0.911719)} Corner 225 33168 {normal=(0.25331 0.313929 0.915031)} Corner 198 33169 {normal=(-0.38332 -0.417543 0.823847)} Corner 225 33169 {normal=(-0.392696 -0.413198 0.821618)} Corner 225 33170 {normal=(-0.392696 -0.413198 0.821618)} Corner 152 33170 {normal=(-0.413579 -0.424825 0.80528)} Corner 152 33171 {normal=(-0.413579 -0.424825 0.80528)} Corner 104 33171 {normal=(-0.495082 -0.400984 0.770782)} Corner 104 33172 {normal=(-0.495082 -0.400984 0.770782)} Corner 198 33172 {normal=(-0.38332 -0.417543 0.823847)} Corner 198 33173 {normal=(-0.605425 -0.769048 0.205)} Corner 198 33174 {normal=(-0.605425 -0.769048 0.205)} Corner 104 33174 {normal=(-0.665346 -0.707129 0.239338)} Corner 104 33175 {normal=(-0.665346 -0.707129 0.239338)} Corner 337 33177 {normal=(0.744862 0.57742 0.334316)} Corner 291 33179 {normal=(0.739461 0.640715 0.206596)} Corner 291 33180 {normal=(0.739461 0.640715 0.206596)} Corner 337 33180 {normal=(0.744862 0.57742 0.334316)} Corner 570 33181 {normal=(-0.353428 0.599416 0.718185)} Corner 528 33181 {normal=(-0.311627 0.812697 0.492354)} Corner 528 33182 {normal=(-0.311627 0.812697 0.492354)} Corner 570 33184 {normal=(-0.353428 0.599416 0.718185)} Corner 528 33185 {normal=(-0.311627 0.812697 0.492354)} Corner 524 33185 {normal=(-0.221138 0.951092 0.215691)} Corner 524 33186 {normal=(-0.221138 0.951092 0.215691)} Corner 474 33186 {normal=(-0.585397 0.778199 0.227412)} Corner 474 33187 {normal=(-0.585397 0.778199 0.227412)} Corner 528 33188 {normal=(-0.311627 0.812697 0.492354)} Corner 435 33189 {normal=(-0.845334 0.388791 0.366403)} Corner 474 33190 {normal=(-0.585397 0.778199 0.227412)} Corner 474 33191 {normal=(-0.585397 0.778199 0.227412)} Corner 430 33191 {normal=(-0.884276 0.424236 0.195139)} Corner 430 33192 {normal=(-0.884276 0.424236 0.195139)} Corner 435 33192 {normal=(-0.845334 0.388791 0.366403)} Corner 524 33193 {normal=(-0.825192 0.56053 0.069743)} Corner 528 33193 {normal=(-0.825192 0.56053 0.069743)} Corner 528 33194 {normal=(-0.825192 0.56053 0.069743)} Corner 538 33194 {normal=(-0.0179847 0.990116 0.139092)} Corner 538 33195 {normal=(-0.0179847 0.990116 0.139092)} Corner 541 33195 {normal=(0.211131 0.976278 -0.0480187)} Corner 541 33196 {normal=(0.211131 0.976278 -0.0480187)} Corner 524 33196 {normal=(-0.825192 0.56053 0.069743)} Corner 684 33197 {normal=(0.467723 0.879345 -0.0893707)} Corner 684 33198 {normal=(0.467723 0.879345 -0.0893707)} Corner 435 33201 {normal=(-0.845334 0.388791 0.366403)} Corner 435 33202 {normal=(-0.845334 0.388791 0.366403)} Corner 447 33202 {normal=(-0.70649 0.254476 0.660389)} Corner 447 33203 {normal=(-0.70649 0.254476 0.660389)} Corner 447 33205 {normal=(-0.70649 0.254476 0.660389)} Corner 507 33205 {normal=(-0.503984 0.0582414 0.861747)} Corner 507 33206 {normal=(-0.503984 0.0582414 0.861747)} Corner 580 33206 {normal=(-0.482535 0.126193 0.866738)} Corner 580 33207 {normal=(-0.482535 0.126193 0.866738)} Corner 447 33208 {normal=(-0.70649 0.254476 0.660389)} Corner 528 33209 {normal=(-0.311627 0.812697 0.492354)} Corner 570 33209 {normal=(-0.353428 0.599416 0.718185)} Corner 570 33210 {normal=(-0.353428 0.599416 0.718185)} Corner 576 33210 {normal=(-0.306343 0.681929 0.664174)} Corner 576 33211 {normal=(-0.306343 0.681929 0.664174)} Corner 538 33211 {normal=(-0.306343 0.681929 0.664174)} Corner 538 33212 {normal=(-0.306343 0.681929 0.664174)} Corner 528 33212 {normal=(-0.311627 0.812697 0.492354)} Corner 589 33213 {normal=(-0.379851 -0.0214517 0.924799)} Corner 659 33213 {normal=(-0.378325 -0.0204845 0.925446)} Corner 659 33214 {normal=(-0.378325 -0.0204845 0.925446)} Corner 580 33214 {normal=(-0.482535 0.126193 0.866738)} Corner 580 33215 {normal=(-0.482535 0.126193 0.866738)} Corner 507 33215 {normal=(-0.503984 0.0582414 0.861747)} Corner 507 33216 {normal=(-0.503984 0.0582414 0.861747)} Corner 589 33216 {normal=(-0.379851 -0.0214517 0.924799)} Corner 589 33217 {normal=(-0.686724 -0.598755 0.412192)} Corner 589 33218 {normal=(-0.686724 -0.598755 0.412192)} Corner 507 33218 {normal=(-0.817737 -0.43215 0.380202)} Corner 507 33219 {normal=(-0.817737 -0.43215 0.380202)} Corner 684 33221 {normal=(0.467723 0.879345 -0.0893707)} Corner 576 33222 {normal=(0.634997 0.771468 0.0402112)} Corner 576 33223 {normal=(0.634997 0.771468 0.0402112)} Corner 570 33223 {normal=(0.616061 0.772969 -0.151616)} Corner 570 33224 {normal=(0.616061 0.772969 -0.151616)} Corner 684 33224 {normal=(0.467723 0.879345 -0.0893707)} Corner 659 33225 {normal=(0.276196 0.601738 0.749418)} Corner 684 33225 {normal=(0.255843 0.596053 0.761095)} Corner 684 33226 {normal=(0.255843 0.596053 0.761095)} Corner 570 33226 {normal=(0.204437 0.580361 0.788281)} Corner 570 33227 {normal=(0.204437 0.580361 0.788281)} Corner 580 33227 {normal=(0.204437 0.580361 0.788281)} Corner 580 33228 {normal=(0.204437 0.580361 0.788281)} Corner 659 33228 {normal=(0.276196 0.601738 0.749418)} Corner 793 33229 {normal=(0.76728 0.640506 -0.0321523)} Corner 684 33231 {normal=(0.467723 0.879345 -0.0893707)} Corner 684 33232 {normal=(0.467723 0.879345 -0.0893707)} Corner 793 33232 {normal=(0.76728 0.640506 -0.0321523)} Corner 751 33233 {normal=(0.330214 0.562687 0.757853)} Corner 793 33233 {normal=(0.328779 0.570019 0.752982)} Corner 793 33234 {normal=(0.328779 0.570019 0.752982)} Corner 684 33234 {normal=(0.255843 0.596053 0.761095)} Corner 684 33235 {normal=(0.255843 0.596053 0.761095)} Corner 659 33235 {normal=(0.276196 0.601738 0.749418)} Corner 659 33236 {normal=(0.276196 0.601738 0.749418)} Corner 751 33236 {normal=(0.330214 0.562687 0.757853)} Corner 662 33237 {normal=(-0.356261 -0.00658997 0.934363)} Corner 751 33237 {normal=(-0.356261 -0.00658997 0.934363)} Corner 751 33238 {normal=(-0.356261 -0.00658997 0.934363)} Corner 659 33238 {normal=(-0.378325 -0.0204845 0.925446)} Corner 659 33239 {normal=(-0.378325 -0.0204845 0.925446)} Corner 589 33239 {normal=(-0.379851 -0.0214517 0.924799)} Corner 589 33240 {normal=(-0.379851 -0.0214517 0.924799)} Corner 662 33240 {normal=(-0.356261 -0.00658997 0.934363)} Corner 634 33241 {normal=(-0.591962 -0.795889 0.127051)} Corner 662 33241 {normal=(-0.592508 -0.68821 0.418689)} Corner 662 33242 {normal=(-0.592508 -0.68821 0.418689)} Corner 589 33242 {normal=(-0.686724 -0.598755 0.412192)} Corner 589 33243 {normal=(-0.686724 -0.598755 0.412192)} Corner 634 33244 {normal=(-0.591962 -0.795889 0.127051)} Corner 757 33245 {normal=(0.338001 0.519377 0.784858)} Corner 820 33245 {normal=(0.338001 0.519377 0.784858)} Corner 820 33246 {normal=(0.338001 0.519377 0.784858)} Corner 793 33246 {normal=(0.328779 0.570019 0.752982)} Corner 793 33247 {normal=(0.328779 0.570019 0.752982)} Corner 751 33247 {normal=(0.330214 0.562687 0.757853)} Corner 751 33248 {normal=(0.330214 0.562687 0.757853)} Corner 757 33248 {normal=(0.338001 0.519377 0.784858)} Corner 654 33249 {normal=(0.0401162 -0.976824 0.210251)} Corner 672 33249 {normal=(0.161242 -0.977678 0.134709)} Corner 672 33250 {normal=(0.161242 -0.977678 0.134709)} Corner 662 33250 {normal=(0.161242 -0.977678 0.134709)} Corner 662 33251 {normal=(0.161242 -0.977678 0.134709)} Corner 634 33251 {normal=(0.0415506 -0.97695 0.209385)} Corner 634 33252 {normal=(0.0415506 -0.97695 0.209385)} Corner 654 33252 {normal=(0.0401162 -0.976824 0.210251)} Corner 820 33253 {normal=(0.903478 0.426576 -0.0419504)} Corner 825 33253 {normal=(0.899983 0.435912 0.00329597)} Corner 825 33254 {normal=(0.899983 0.435912 0.00329597)} Corner 793 33255 {normal=(0.76728 0.640506 -0.0321523)} Corner 793 33256 {normal=(0.76728 0.640506 -0.0321523)} Corner 820 33256 {normal=(0.903478 0.426576 -0.0419504)} Corner 650 33257 {normal=(-0.252675 0.967326 0.0208632)} Corner 650 33258 {normal=(-0.252675 0.967326 0.0208632)} Corner 672 33258 {normal=(-0.360241 0.931656 -0.0473737)} Corner 672 33259 {normal=(-0.360241 0.931656 -0.0473737)} Corner 654 33259 {normal=(-0.363126 0.886933 -0.285464)} Corner 654 33260 {normal=(-0.363126 0.886933 -0.285464)} Corner 798 33261 {normal=(0.780167 -0.574121 0.248445)} Corner 825 33262 {normal=(0.839528 -0.49447 0.225148)} Corner 825 33263 {normal=(0.839528 -0.49447 0.225148)} Corner 820 33263 {normal=(0.835613 -0.480955 0.265393)} Corner 820 33264 {normal=(0.835613 -0.480955 0.265393)} Corner 798 33264 {normal=(0.780167 -0.574121 0.248445)} Corner 742 33265 {normal=(0.379164 -0.186421 0.906356)} Corner 798 33265 {normal=(0.36805 -0.183696 0.91148)} Corner 798 33266 {normal=(0.36805 -0.183696 0.91148)} Corner 820 33266 {normal=(0.316705 -0.170923 0.932997)} Corner 820 33267 {normal=(0.316705 -0.170923 0.932997)} Corner 757 33267 {normal=(0.316705 -0.170923 0.932997)} Corner 757 33268 {normal=(0.316705 -0.170923 0.932997)} Corner 742 33268 {normal=(0.379164 -0.186421 0.906356)} Corner 650 33269 {normal=(-0.0951894 0.529757 0.842791)} Corner 742 33269 {normal=(-0.146659 0.552017 0.820834)} Corner 742 33270 {normal=(-0.146659 0.552017 0.820834)} Corner 757 33270 {normal=(-0.28492 0.368305 0.88497)} Corner 757 33271 {normal=(-0.28492 0.368305 0.88497)} Corner 672 33271 {normal=(-0.347985 0.530535 0.772942)} Corner 672 33272 {normal=(-0.347985 0.530535 0.772942)} Corner 650 33272 {normal=(-0.0951894 0.529757 0.842791)} Corner 685 33273 {normal=(0.61647 -0.763638 0.19189)} Corner 798 33275 {normal=(0.780167 -0.574121 0.248445)} Corner 798 33276 {normal=(0.780167 -0.574121 0.248445)} Corner 685 33276 {normal=(0.61647 -0.763638 0.19189)} Corner 620 33277 {normal=(0.385634 -0.244705 0.88961)} Corner 685 33277 {normal=(0.384778 -0.245813 0.889675)} Corner 685 33278 {normal=(0.384778 -0.245813 0.889675)} Corner 798 33278 {normal=(0.36805 -0.183696 0.91148)} Corner 798 33279 {normal=(0.36805 -0.183696 0.91148)} Corner 742 33279 {normal=(0.379164 -0.186421 0.906356)} Corner 742 33280 {normal=(0.379164 -0.186421 0.906356)} Corner 620 33280 {normal=(0.385634 -0.244705 0.88961)} Corner 543 33281 {normal=(-0.135501 0.407122 0.903267)} Corner 620 33281 {normal=(-0.182012 0.359537 0.915208)} Corner 620 33282 {normal=(-0.182012 0.359537 0.915208)} Corner 742 33282 {normal=(-0.146659 0.552017 0.820834)} Corner 742 33283 {normal=(-0.146659 0.552017 0.820834)} Corner 650 33283 {normal=(-0.0951894 0.529757 0.842791)} Corner 650 33284 {normal=(-0.0951894 0.529757 0.842791)} Corner 543 33284 {normal=(-0.135501 0.407122 0.903267)} Corner 516 33285 {normal=(-0.308864 0.872203 -0.379295)} Corner 543 33285 {normal=(-0.159931 0.984098 0.077287)} Corner 543 33286 {normal=(-0.159931 0.984098 0.077287)} Corner 650 33286 {normal=(-0.252675 0.967326 0.0208632)} Corner 650 33287 {normal=(-0.252675 0.967326 0.0208632)} Corner 516 33288 {normal=(-0.308864 0.872203 -0.379295)} Corner 506 33289 {normal=(-0.275376 0.256107 0.926594)} Corner 553 33289 {normal=(-0.275376 0.256107 0.926595)} Corner 553 33290 {normal=(-0.275376 0.256107 0.926595)} Corner 620 33290 {normal=(-0.182012 0.359537 0.915208)} Corner 620 33291 {normal=(-0.182012 0.359537 0.915208)} Corner 543 33291 {normal=(-0.135501 0.407122 0.903267)} Corner 543 33292 {normal=(-0.135501 0.407122 0.903267)} Corner 506 33292 {normal=(-0.275376 0.256107 0.926594)} Corner 487 33293 {normal=(-0.605849 0.732058 0.311511)} Corner 506 33293 {normal=(-0.605849 0.732058 0.311511)} Corner 506 33294 {normal=(-0.605849 0.732058 0.311511)} Corner 543 33294 {normal=(-0.605849 0.732057 0.311511)} Corner 543 33295 {normal=(-0.605849 0.732057 0.311511)} Corner 516 33295 {normal=(-0.605849 0.732058 0.311511)} Corner 516 33296 {normal=(-0.605849 0.732058 0.311511)} Corner 487 33296 {normal=(-0.605849 0.732058 0.311511)} Corner 567 33297 {normal=(0.539366 -0.826326 0.162079)} Corner 568 33297 {normal=(0.53621 -0.825006 0.178448)} Corner 568 33298 {normal=(0.53621 -0.825006 0.178448)} Corner 685 33299 {normal=(0.61647 -0.763638 0.19189)} Corner 685 33300 {normal=(0.61647 -0.763638 0.19189)} Corner 567 33300 {normal=(0.539366 -0.826326 0.162079)} Corner 553 33301 {normal=(0.344835 -0.295943 0.89079)} Corner 567 33301 {normal=(0.344835 -0.295943 0.89079)} Corner 567 33302 {normal=(0.344835 -0.295943 0.89079)} Corner 685 33302 {normal=(0.384778 -0.245813 0.889675)} Corner 685 33303 {normal=(0.384778 -0.245813 0.889675)} Corner 620 33303 {normal=(0.385634 -0.244705 0.88961)} Corner 620 33304 {normal=(0.385634 -0.244705 0.88961)} Corner 553 33304 {normal=(0.344835 -0.295943 0.89079)} Corner 412 33305 {normal=(-0.619189 -0.777548 0.109654)} Corner 568 33306 {normal=(-0.585121 -0.810672 -0.0210637)} Corner 568 33307 {normal=(-0.585121 -0.810672 -0.0210637)} Corner 567 33307 {normal=(-0.574824 -0.813411 0.0891007)} Corner 567 33308 {normal=(-0.574824 -0.813411 0.0891007)} Corner 412 33308 {normal=(-0.619189 -0.777548 0.109654)} Corner 440 33309 {normal=(-0.397142 -0.442458 0.804058)} Corner 412 33309 {normal=(-0.379443 -0.458624 0.803546)} Corner 412 33310 {normal=(-0.379443 -0.458624 0.803546)} Corner 567 33310 {normal=(-0.305015 -0.521811 0.796668)} Corner 567 33311 {normal=(-0.305015 -0.521811 0.796668)} Corner 553 33311 {normal=(-0.305015 -0.521811 0.796667)} Corner 553 33312 {normal=(-0.305015 -0.521811 0.796667)} Corner 440 33312 {normal=(-0.397142 -0.442458 0.804058)} Corner 437 33313 {normal=(0.276901 0.349819 0.894959)} Corner 440 33313 {normal=(0.489935 0.310103 0.814739)} Corner 440 33314 {normal=(0.489935 0.310103 0.814739)} Corner 553 33314 {normal=(0.580706 0.285838 0.762284)} Corner 553 33315 {normal=(0.580706 0.285838 0.762284)} Corner 506 33315 {normal=(0.580706 0.285838 0.762284)} Corner 506 33316 {normal=(0.580706 0.285838 0.762284)} Corner 437 33316 {normal=(0.276901 0.349819 0.894959)} Corner 437 33317 {normal=(0.865988 0.457956 0.200852)} Corner 437 33318 {normal=(0.865988 0.457956 0.200852)} Corner 506 33318 {normal=(0.943845 0.310279 0.113502)} Corner 506 33319 {normal=(0.943845 0.310279 0.113502)} Corner 487 33319 {normal=(0.949859 0.283378 0.132152)} Corner 487 33320 {normal=(0.949859 0.283378 0.132152)} Corner 412 33321 {normal=(-0.619189 -0.777548 0.109654)} Corner 198 33321 {normal=(-0.605425 -0.769048 0.205)} Corner 198 33322 {normal=(-0.605425 -0.769048 0.205)} Corner 412 33324 {normal=(-0.619189 -0.777548 0.109654)} Corner 337 33325 {normal=(0.744862 0.57742 0.334316)} Corner 337 33326 {normal=(0.744862 0.57742 0.334316)} Corner 437 33326 {normal=(0.865988 0.457956 0.200852)} Corner 437 33327 {normal=(0.865988 0.457956 0.200852)} Corner 225 33329 {normal=(-0.392696 -0.413198 0.821618)} Corner 198 33329 {normal=(-0.38332 -0.417543 0.823847)} Corner 198 33330 {normal=(-0.38332 -0.417543 0.823847)} Corner 412 33330 {normal=(-0.379443 -0.458624 0.803546)} Corner 412 33331 {normal=(-0.379443 -0.458624 0.803546)} Corner 440 33331 {normal=(-0.397142 -0.442458 0.804058)} Corner 440 33332 {normal=(-0.397142 -0.442458 0.804058)} Corner 225 33332 {normal=(-0.392696 -0.413198 0.821618)} Corner 337 33333 {normal=(0.23385 0.330952 0.914213)} Corner 225 33333 {normal=(0.25331 0.313929 0.915031)} Corner 225 33334 {normal=(0.25331 0.313929 0.915031)} Corner 440 33334 {normal=(0.489935 0.310103 0.814739)} Corner 440 33335 {normal=(0.489935 0.310103 0.814739)} Corner 437 33335 {normal=(0.276901 0.349819 0.894959)} Corner 437 33336 {normal=(0.276901 0.349819 0.894959)} Corner 337 33336 {normal=(0.23385 0.330952 0.914213)} Corner 557 33337 {normal=(-0.622133 -0.299354 0.723421)} Corner 625 33337 {normal=(-0.611159 -0.293753 0.734979)} Corner 625 33338 {normal=(-0.611159 -0.293753 0.734979)} Corner 455 33338 {normal=(-0.57394 -0.278022 0.770258)} Corner 455 33339 {normal=(-0.57394 -0.278022 0.770258)} Corner 366 33339 {normal=(-0.569861 -0.27483 0.77442)} Corner 366 33340 {normal=(-0.569861 -0.27483 0.77442)} Corner 557 33340 {normal=(-0.622133 -0.299354 0.723421)} Corner 625 33341 {normal=(-0.0355996 0.218174 0.97526)} Corner 455 33343 {normal=(0.0663101 0.21694 0.97393)} Corner 455 33344 {normal=(0.0663101 0.21694 0.97393)} Corner 625 33344 {normal=(-0.0355996 0.218174 0.97526)} Corner 754 33345 {normal=(0.137761 0.336669 0.931491)} Corner 754 33346 {normal=(0.137761 0.336669 0.931491)} Corner 695 33346 {normal=(0.0785193 0.186648 0.979284)} Corner 695 33347 {normal=(0.0785193 0.186648 0.979284)} Corner 754 33349 {normal=(0.756655 0.500766 0.420364)} Corner 800 33349 {normal=(0.754175 0.506556 0.417878)} Corner 800 33350 {normal=(0.754175 0.506556 0.417878)} Corner 770 33350 {normal=(0.798066 0.375326 0.471404)} Corner 770 33351 {normal=(0.798066 0.375326 0.471404)} Corner 695 33351 {normal=(0.799383 0.367095 0.475635)} Corner 695 33352 {normal=(0.799383 0.367095 0.475635)} Corner 754 33352 {normal=(0.756655 0.500766 0.420364)} Corner 800 33353 {normal=(0.835031 0.355668 -0.41979)} Corner 783 33353 {normal=(0.833215 0.361621 -0.418311)} Corner 783 33354 {normal=(0.833215 0.361621 -0.418311)} Corner 725 33354 {normal=(0.860032 0.255452 -0.441689)} Corner 725 33355 {normal=(0.860032 0.255452 -0.441689)} Corner 770 33355 {normal=(0.860032 0.255452 -0.441689)} Corner 770 33356 {normal=(0.860032 0.255452 -0.441689)} Corner 800 33356 {normal=(0.835031 0.355668 -0.41979)} Corner 783 33357 {normal=(0.387884 -0.174703 -0.905)} Corner 700 33357 {normal=(0.370481 -0.130488 -0.919629)} Corner 700 33358 {normal=(0.370481 -0.130488 -0.919629)} Corner 645 33358 {normal=(0.289116 0.0549553 -0.955715)} Corner 645 33359 {normal=(0.289116 0.0549553 -0.955715)} Corner 725 33359 {normal=(0.289116 0.0549553 -0.955715)} Corner 725 33360 {normal=(0.289116 0.0549553 -0.955715)} Corner 783 33360 {normal=(0.387884 -0.174703 -0.905)} Corner 700 33361 {normal=(-0.326144 -0.527656 -0.784353)} Corner 593 33361 {normal=(-0.32119 -0.53098 -0.784154)} Corner 593 33362 {normal=(-0.32119 -0.53098 -0.784154)} Corner 499 33362 {normal=(-0.441718 -0.44207 -0.780679)} Corner 499 33363 {normal=(-0.441718 -0.44207 -0.780679)} Corner 645 33363 {normal=(-0.441718 -0.44207 -0.780679)} Corner 645 33364 {normal=(-0.441718 -0.44207 -0.780679)} Corner 700 33364 {normal=(-0.326144 -0.527656 -0.784353)} Corner 593 33365 {normal=(-0.771774 -0.635754 -0.0134939)} Corner 557 33365 {normal=(-0.763705 -0.64546 -0.0116777)} Corner 557 33366 {normal=(-0.763705 -0.64546 -0.0116777)} Corner 366 33366 {normal=(-0.772941 -0.620338 -0.133199)} Corner 366 33367 {normal=(-0.772941 -0.620338 -0.133199)} Corner 499 33367 {normal=(-0.757805 -0.644223 -0.103477)} Corner 499 33368 {normal=(-0.757805 -0.644223 -0.103477)} Corner 593 33368 {normal=(-0.771774 -0.635754 -0.0134939)} Corner 409 33369 {normal=(-0.00877813 -0.60464 -0.79645)} Corner 626 33369 {normal=(0.174741 -0.491134 -0.853377)} Corner 626 33370 {normal=(0.174741 -0.491134 -0.853377)} Corner 671 33370 {normal=(0.141183 -0.584522 -0.799)} Corner 671 33371 {normal=(0.141183 -0.584522 -0.799)} Corner 471 33371 {normal=(0.0500298 -0.731478 -0.680027)} Corner 471 33372 {normal=(0.0500298 -0.731478 -0.680027)} Corner 409 33372 {normal=(-0.00877813 -0.60464 -0.79645)} Corner 247 33373 {normal=(-0.573438 -0.818795 0.0272617)} Corner 409 33373 {normal=(-0.573438 -0.818795 0.0272617)} Corner 409 33374 {normal=(-0.573438 -0.818795 0.0272617)} Corner 471 33374 {normal=(-0.69379 -0.715606 -0.0810128)} Corner 471 33375 {normal=(-0.69379 -0.715606 -0.0810128)} Corner 303 33375 {normal=(-0.703838 -0.704496 -0.0910865)} Corner 303 33376 {normal=(-0.703838 -0.704496 -0.0910865)} Corner 247 33376 {normal=(-0.573438 -0.818795 0.0272617)} Corner 247 33377 {normal=(-0.764816 -0.0218668 0.643878)} Corner 247 33378 {normal=(-0.764816 -0.0218668 0.643878)} Corner 303 33378 {normal=(-0.929315 -0.0814586 0.360192)} Corner 303 33379 {normal=(-0.929315 -0.0814586 0.360192)} Corner 305 33379 {normal=(-0.751555 0.317275 0.578361)} Corner 305 33380 {normal=(-0.751555 0.317275 0.578361)} Corner 305 33382 {normal=(-0.751555 0.317275 0.578361)} Corner 305 33383 {normal=(-0.751555 0.317275 0.578361)} Corner 457 33383 {normal=(-0.301634 0.602737 0.738732)} Corner 457 33384 {normal=(-0.301634 0.602737 0.738732)} Corner 305 33385 {normal=(-0.581295 -0.283795 0.762598)} Corner 303 33385 {normal=(-0.581295 -0.283795 0.762598)} Corner 303 33386 {normal=(-0.581295 -0.283795 0.762598)} Corner 366 33386 {normal=(-0.569861 -0.27483 0.77442)} Corner 366 33387 {normal=(-0.569861 -0.27483 0.77442)} Corner 455 33387 {normal=(-0.57394 -0.278022 0.770258)} Corner 455 33388 {normal=(-0.57394 -0.278022 0.770258)} Corner 305 33388 {normal=(-0.581295 -0.283795 0.762598)} Corner 457 33389 {normal=(0.091199 0.101705 0.990626)} Corner 305 33389 {normal=(0.0875934 0.128379 0.987849)} Corner 305 33390 {normal=(0.0875934 0.128379 0.987849)} Corner 455 33390 {normal=(0.0663101 0.21694 0.97393)} Corner 455 33391 {normal=(0.0663101 0.21694 0.97393)} Corner 457 33392 {normal=(0.091199 0.101705 0.990626)} Corner 471 33393 {normal=(0.0500298 -0.731478 -0.680027)} Corner 671 33393 {normal=(0.141183 -0.584522 -0.799)} Corner 671 33394 {normal=(0.141183 -0.584522 -0.799)} Corner 645 33394 {normal=(0.0992823 -0.821214 -0.561916)} Corner 645 33395 {normal=(0.0992823 -0.821214 -0.561916)} Corner 499 33395 {normal=(0.0992823 -0.821214 -0.561916)} Corner 499 33396 {normal=(0.0992823 -0.821214 -0.561916)} Corner 471 33396 {normal=(0.0500298 -0.731478 -0.680027)} Corner 303 33397 {normal=(-0.703838 -0.704496 -0.0910865)} Corner 471 33397 {normal=(-0.69379 -0.715606 -0.0810128)} Corner 471 33398 {normal=(-0.69379 -0.715606 -0.0810128)} Corner 499 33398 {normal=(-0.757805 -0.644223 -0.103477)} Corner 499 33399 {normal=(-0.757805 -0.644223 -0.103477)} Corner 366 33399 {normal=(-0.772941 -0.620338 -0.133199)} Corner 366 33400 {normal=(-0.772941 -0.620338 -0.133199)} Corner 303 33400 {normal=(-0.703838 -0.704496 -0.0910865)} Corner 593 33401 {normal=(-0.32119 -0.53098 -0.784154)} Corner 700 33401 {normal=(-0.326144 -0.527656 -0.784353)} Corner 700 33402 {normal=(-0.326144 -0.527656 -0.784353)} Corner 748 33402 {normal=(-0.188315 -0.610736 -0.769116)} Corner 748 33403 {normal=(-0.188315 -0.610736 -0.769116)} Corner 686 33403 {normal=(-0.188315 -0.610736 -0.769116)} Corner 686 33404 {normal=(-0.188315 -0.610736 -0.769116)} Corner 593 33404 {normal=(-0.32119 -0.53098 -0.784154)} Corner 557 33405 {normal=(-0.763705 -0.64546 -0.0116777)} Corner 593 33405 {normal=(-0.771774 -0.635754 -0.0134939)} Corner 593 33406 {normal=(-0.771774 -0.635754 -0.0134939)} Corner 686 33406 {normal=(-0.901492 -0.432667 -0.0105772)} Corner 686 33407 {normal=(-0.901492 -0.432667 -0.0105772)} Corner 699 33407 {normal=(-0.886219 -0.463015 -0.0152685)} Corner 699 33408 {normal=(-0.886219 -0.463015 -0.0152685)} Corner 557 33408 {normal=(-0.763705 -0.64546 -0.0116777)} Corner 625 33409 {normal=(-0.611159 -0.293753 0.734979)} Corner 557 33409 {normal=(-0.622133 -0.299354 0.723421)} Corner 557 33410 {normal=(-0.622133 -0.299354 0.723421)} Corner 699 33410 {normal=(-0.670781 -0.324256 0.667016)} Corner 699 33411 {normal=(-0.670781 -0.324256 0.667016)} Corner 732 33411 {normal=(-0.670781 -0.324256 0.667016)} Corner 732 33412 {normal=(-0.670781 -0.324256 0.667016)} Corner 625 33412 {normal=(-0.611159 -0.293753 0.734979)} Corner 625 33413 {normal=(-0.0355996 0.218174 0.97526)} Corner 625 33414 {normal=(-0.0355996 0.218174 0.97526)} Corner 732 33414 {normal=(-0.104646 0.139044 0.984742)} Corner 732 33415 {normal=(-0.104646 0.139044 0.984742)} Corner 773 33415 {normal=(0.0394262 0.250393 0.967341)} Corner 773 33416 {normal=(0.0394262 0.250393 0.967341)} Corner 699 33417 {normal=(-0.886219 -0.463015 -0.0152685)} Corner 686 33417 {normal=(-0.901492 -0.432667 -0.0105772)} Corner 686 33418 {normal=(-0.901492 -0.432667 -0.0105772)} Corner 691 33418 {normal=(-0.909363 -0.411369 -0.0619205)} Corner 691 33419 {normal=(-0.909363 -0.411369 -0.0619205)} Corner 715 33419 {normal=(-0.923528 -0.38175 -0.0369172)} Corner 715 33420 {normal=(-0.923528 -0.38175 -0.0369172)} Corner 699 33420 {normal=(-0.886219 -0.463015 -0.0152685)} Corner 732 33421 {normal=(-0.323916 -0.74131 0.587825)} Corner 699 33421 {normal=(-0.323916 -0.74131 0.587825)} Corner 699 33422 {normal=(-0.323916 -0.74131 0.587825)} Corner 715 33422 {normal=(-0.352334 -0.789624 0.502349)} Corner 715 33423 {normal=(-0.352334 -0.789624 0.502349)} Corner 769 33423 {normal=(-0.343289 -0.774468 0.531368)} Corner 769 33424 {normal=(-0.343289 -0.774468 0.531368)} Corner 732 33424 {normal=(-0.323916 -0.74131 0.587825)} Corner 773 33425 {normal=(0.433702 -0.366649 0.823087)} Corner 732 33425 {normal=(0.362274 -0.435406 0.824123)} Corner 732 33426 {normal=(0.362274 -0.435406 0.824123)} Corner 769 33426 {normal=(0.404683 -0.534748 0.741806)} Corner 769 33427 {normal=(0.404683 -0.534748 0.741806)} Corner 773 33428 {normal=(0.433702 -0.366649 0.823087)} Corner 686 33429 {normal=(-0.8433 0.506676 -0.179235)} Corner 748 33429 {normal=(-0.617984 0.737613 -0.272072)} Corner 748 33430 {normal=(-0.617984 0.737613 -0.272072)} Corner 691 33431 {normal=(-0.829053 0.395165 -0.395622)} Corner 691 33432 {normal=(-0.829053 0.395165 -0.395622)} Corner 686 33432 {normal=(-0.8433 0.506676 -0.179235)} Corner 769 33433 {normal=(0.404683 -0.534748 0.741806)} Corner 769 33434 {normal=(0.404683 -0.534748 0.741806)} Corner 808 33434 {normal=(0.430425 -0.630958 0.645466)} Corner 808 33435 {normal=(0.430425 -0.630958 0.645466)} Corner 691 33437 {normal=(-0.829053 0.395165 -0.395622)} Corner 716 33439 {normal=(-0.725911 0.189818 -0.661077)} Corner 716 33440 {normal=(-0.725911 0.189818 -0.661077)} Corner 691 33440 {normal=(-0.829053 0.395165 -0.395622)} Corner 715 33441 {normal=(-0.923528 -0.38175 -0.0369172)} Corner 691 33441 {normal=(-0.909363 -0.411369 -0.0619205)} Corner 691 33442 {normal=(-0.909363 -0.411369 -0.0619205)} Corner 716 33442 {normal=(-0.876627 -0.457981 -0.147576)} Corner 716 33443 {normal=(-0.876627 -0.457981 -0.147576)} Corner 743 33443 {normal=(-0.878266 -0.456918 -0.140975)} Corner 743 33444 {normal=(-0.878266 -0.456918 -0.140975)} Corner 715 33444 {normal=(-0.923528 -0.38175 -0.0369172)} Corner 769 33445 {normal=(-0.343289 -0.774468 0.531368)} Corner 715 33445 {normal=(-0.352334 -0.789624 0.502349)} Corner 715 33446 {normal=(-0.352334 -0.789624 0.502349)} Corner 743 33446 {normal=(-0.350959 -0.816927 0.457667)} Corner 743 33447 {normal=(-0.350959 -0.816927 0.457667)} Corner 808 33447 {normal=(-0.350217 -0.817062 0.457992)} Corner 808 33448 {normal=(-0.350217 -0.817062 0.457992)} Corner 769 33448 {normal=(-0.343289 -0.774468 0.531368)} Corner 716 33449 {normal=(-0.725911 0.189818 -0.661077)} Corner 759 33451 {normal=(-0.622154 0.0979449 -0.776744)} Corner 759 33452 {normal=(-0.622154 0.0979449 -0.776744)} Corner 716 33452 {normal=(-0.725911 0.189818 -0.661077)} Corner 743 33453 {normal=(-0.878266 -0.456918 -0.140975)} Corner 716 33453 {normal=(-0.876627 -0.457981 -0.147576)} Corner 716 33454 {normal=(-0.876627 -0.457981 -0.147576)} Corner 759 33454 {normal=(-0.859197 -0.455922 -0.232199)} Corner 759 33455 {normal=(-0.859197 -0.455922 -0.232199)} Corner 778 33455 {normal=(-0.859108 -0.455752 -0.232862)} Corner 778 33456 {normal=(-0.859108 -0.455752 -0.232862)} Corner 743 33456 {normal=(-0.878266 -0.456918 -0.140975)} Corner 808 33457 {normal=(-0.350217 -0.817062 0.457992)} Corner 743 33457 {normal=(-0.350959 -0.816927 0.457667)} Corner 743 33458 {normal=(-0.350959 -0.816927 0.457667)} Corner 778 33458 {normal=(-0.383671 -0.809546 0.444334)} Corner 778 33459 {normal=(-0.383671 -0.809546 0.444334)} Corner 824 33459 {normal=(-0.396064 -0.806546 0.438882)} Corner 824 33460 {normal=(-0.396064 -0.806546 0.438882)} Corner 808 33460 {normal=(-0.350217 -0.817062 0.457992)} Corner 808 33461 {normal=(0.430425 -0.630958 0.645466)} Corner 808 33462 {normal=(0.430425 -0.630958 0.645466)} Corner 824 33462 {normal=(0.340264 -0.661208 0.668598)} Corner 824 33463 {normal=(0.340264 -0.661208 0.668598)} Corner 824 33465 {normal=(-0.396064 -0.806546 0.438882)} Corner 778 33465 {normal=(-0.383671 -0.809546 0.444334)} Corner 778 33466 {normal=(-0.383671 -0.809546 0.444334)} Corner 811 33466 {normal=(-0.452853 -0.790504 0.412344)} Corner 811 33467 {normal=(-0.452853 -0.790504 0.412344)} Corner 839 33467 {normal=(-0.452853 -0.790504 0.412344)} Corner 839 33468 {normal=(-0.452853 -0.790504 0.412344)} Corner 824 33468 {normal=(-0.396064 -0.806546 0.438882)} Corner 824 33469 {normal=(0.340264 -0.661208 0.668598)} Corner 824 33470 {normal=(0.340264 -0.661208 0.668598)} Corner 839 33470 {normal=(0.0177074 -0.743419 0.668591)} Corner 839 33471 {normal=(0.0177074 -0.743419 0.668591)} Corner 845 33471 {normal=(0.183392 -0.647868 0.739347)} Corner 845 33472 {normal=(0.183392 -0.647868 0.739347)} Corner 759 33473 {normal=(-0.622154 0.0979449 -0.776744)} Corner 806 33475 {normal=(-0.524392 0.0657163 -0.848937)} Corner 806 33476 {normal=(-0.524392 0.0657163 -0.848937)} Corner 759 33476 {normal=(-0.622154 0.0979449 -0.776744)} Corner 778 33477 {normal=(-0.859108 -0.455752 -0.232862)} Corner 759 33477 {normal=(-0.859197 -0.455922 -0.232199)} Corner 759 33478 {normal=(-0.859197 -0.455922 -0.232199)} Corner 806 33478 {normal=(-0.782254 -0.508042 -0.360518)} Corner 806 33479 {normal=(-0.782254 -0.508042 -0.360518)} Corner 811 33479 {normal=(-0.747701 -0.57958 -0.324082)} Corner 811 33480 {normal=(-0.747701 -0.57958 -0.324082)} Corner 778 33480 {normal=(-0.859108 -0.455752 -0.232862)} Corner 839 33481 {normal=(-0.385009 -0.918713 -0.0879471)} Corner 877 33482 {normal=(0.10559 -0.994285 0.0157786)} Corner 877 33483 {normal=(0.10559 -0.994285 0.0157786)} Corner 845 33483 {normal=(-0.226332 -0.971761 0.0667479)} Corner 845 33484 {normal=(-0.226332 -0.971761 0.0667479)} Corner 839 33484 {normal=(-0.385009 -0.918713 -0.0879471)} Corner 806 33485 {normal=(-0.782254 -0.508042 -0.360518)} Corner 833 33485 {normal=(-0.513615 -0.625231 -0.587611)} Corner 833 33486 {normal=(-0.513615 -0.625231 -0.587611)} Corner 811 33487 {normal=(-0.747701 -0.57958 -0.324082)} Corner 811 33488 {normal=(-0.747701 -0.57958 -0.324082)} Corner 806 33488 {normal=(-0.782254 -0.508042 -0.360518)} Corner 851 33489 {normal=(-0.190161 -0.637761 -0.746391)} Corner 833 33491 {normal=(-0.513615 -0.625231 -0.587611)} Corner 833 33492 {normal=(-0.513615 -0.625231 -0.587611)} Corner 851 33492 {normal=(-0.190161 -0.637761 -0.746391)} Corner 824 33493 {normal=(0.340264 -0.661208 0.668598)} Corner 824 33496 {normal=(0.340264 -0.661208 0.668598)} Corner 902 33498 {normal=(0.60651 -0.793116 -0.0557965)} Corner 902 33499 {normal=(0.60651 -0.793116 -0.0557965)} Corner 877 33499 {normal=(0.10559 -0.994285 0.0157786)} Corner 877 33500 {normal=(0.10559 -0.994285 0.0157786)} Corner 851 33501 {normal=(-0.190161 -0.637761 -0.746391)} Corner 851 33502 {normal=(-0.190161 -0.637761 -0.746391)} Corner 879 33502 {normal=(0.220274 -0.465999 -0.856927)} Corner 879 33503 {normal=(0.220274 -0.465999 -0.856927)} Corner 839 33509 {normal=(-0.385009 -0.918713 -0.0879471)} Corner 839 33510 {normal=(-0.385009 -0.918713 -0.0879471)} Corner 933 33513 {normal=(0.960975 0.122341 -0.248112)} Corner 933 33516 {normal=(0.960975 0.122341 -0.248112)} Corner 891 33521 {normal=(0.581974 -0.0774954 -0.809507)} Corner 879 33523 {normal=(0.220274 -0.465999 -0.856927)} Corner 879 33524 {normal=(0.220274 -0.465999 -0.856927)} Corner 891 33524 {normal=(0.581974 -0.0774954 -0.809507)} Corner 929 33526 {normal=(0.930337 -0.357819 -0.0802428)} Corner 929 33527 {normal=(0.930337 -0.357819 -0.0802428)} Corner 902 33527 {normal=(0.60651 -0.793116 -0.0557965)} Corner 902 33528 {normal=(0.60651 -0.793116 -0.0557965)} Corner 901 33529 {normal=(0.651254 -0.425907 0.62807)} Corner 901 33530 {normal=(0.651254 -0.425907 0.62807)} Corner 891 33533 {normal=(0.581974 -0.0774954 -0.809507)} Corner 891 33534 {normal=(0.581974 -0.0774954 -0.809507)} Corner 892 33534 {normal=(0.65747 0.28629 -0.696973)} Corner 892 33535 {normal=(0.65747 0.28629 -0.696973)} Corner 892 33537 {normal=(0.65747 0.28629 -0.696973)} Corner 883 33537 {normal=(0.625805 0.5726 -0.52962)} Corner 883 33538 {normal=(0.625805 0.5726 -0.52962)} Corner 919 33538 {normal=(0.691685 0.524949 -0.495985)} Corner 919 33539 {normal=(0.691685 0.524949 -0.495985)} Corner 892 33540 {normal=(0.65747 0.28629 -0.696973)} Corner 933 33541 {normal=(0.960975 0.122341 -0.248112)} Corner 933 33542 {normal=(0.960975 0.122341 -0.248112)} Corner 928 33542 {normal=(0.996456 -0.0292221 -0.0788793)} Corner 928 33543 {normal=(0.996456 -0.0292221 -0.0788793)} Corner 929 33543 {normal=(0.930337 -0.357819 -0.0802428)} Corner 929 33544 {normal=(0.930337 -0.357819 -0.0802428)} Corner 854 33545 {normal=(0.611587 0.674639 -0.413309)} Corner 900 33545 {normal=(0.611443 0.674489 -0.413766)} Corner 900 33546 {normal=(0.611443 0.674489 -0.413766)} Corner 919 33546 {normal=(0.691685 0.524949 -0.495985)} Corner 919 33547 {normal=(0.691685 0.524949 -0.495985)} Corner 883 33547 {normal=(0.625805 0.5726 -0.52962)} Corner 883 33548 {normal=(0.625805 0.5726 -0.52962)} Corner 854 33548 {normal=(0.611587 0.674639 -0.413309)} Corner 854 33549 {normal=(-0.064604 0.530597 -0.845159)} Corner 854 33550 {normal=(-0.064604 0.530597 -0.845159)} Corner 883 33550 {normal=(-0.0558444 0.414684 -0.90825)} Corner 883 33551 {normal=(-0.0558444 0.414684 -0.90825)} Corner 901 33553 {normal=(0.651254 -0.425907 0.62807)} Corner 928 33554 {normal=(0.681861 -0.266861 0.681066)} Corner 928 33555 {normal=(0.681861 -0.266861 0.681066)} Corner 933 33555 {normal=(0.804729 -0.141515 0.576529)} Corner 933 33556 {normal=(0.804729 -0.141515 0.576529)} Corner 901 33556 {normal=(0.651254 -0.425907 0.62807)} Corner 900 33557 {normal=(0.940677 0.20693 0.268899)} Corner 901 33557 {normal=(0.939019 0.220205 0.264108)} Corner 901 33558 {normal=(0.939019 0.220205 0.264108)} Corner 933 33558 {normal=(0.929926 0.275767 0.243291)} Corner 933 33559 {normal=(0.929926 0.275767 0.243291)} Corner 919 33559 {normal=(0.929926 0.275767 0.243292)} Corner 919 33560 {normal=(0.929926 0.275767 0.243292)} Corner 900 33560 {normal=(0.940677 0.20693 0.268899)} Corner 881 33561 {normal=(0.595255 -0.507334 0.623124)} Corner 901 33563 {normal=(0.651254 -0.425907 0.62807)} Corner 901 33564 {normal=(0.651254 -0.425907 0.62807)} Corner 881 33564 {normal=(0.595255 -0.507334 0.623124)} Corner 886 33565 {normal=(0.947673 0.180409 0.263378)} Corner 881 33565 {normal=(0.947531 0.178908 0.264911)} Corner 881 33566 {normal=(0.947531 0.178908 0.264911)} Corner 901 33566 {normal=(0.939019 0.220205 0.264108)} Corner 901 33567 {normal=(0.939019 0.220205 0.264108)} Corner 900 33567 {normal=(0.940677 0.20693 0.268899)} Corner 900 33568 {normal=(0.940677 0.20693 0.268899)} Corner 886 33568 {normal=(0.947673 0.180409 0.263378)} Corner 832 33569 {normal=(0.620875 0.703585 -0.345663)} Corner 886 33569 {normal=(0.620702 0.706457 -0.340069)} Corner 886 33570 {normal=(0.620702 0.706457 -0.340069)} Corner 900 33570 {normal=(0.611443 0.674489 -0.413766)} Corner 900 33571 {normal=(0.611443 0.674489 -0.413766)} Corner 854 33571 {normal=(0.611587 0.674639 -0.413309)} Corner 854 33572 {normal=(0.611587 0.674639 -0.413309)} Corner 832 33572 {normal=(0.620875 0.703585 -0.345663)} Corner 832 33573 {normal=(-0.106881 0.67609 -0.729026)} Corner 832 33574 {normal=(-0.106881 0.67609 -0.729026)} Corner 854 33574 {normal=(-0.064604 0.530597 -0.845159)} Corner 854 33575 {normal=(-0.064604 0.530597 -0.845159)} Corner 869 33577 {normal=(0.935025 0.205428 0.289011)} Corner 868 33577 {normal=(0.929125 0.207302 0.306191)} Corner 868 33578 {normal=(0.929125 0.207302 0.306191)} Corner 881 33578 {normal=(0.947531 0.178908 0.264911)} Corner 881 33579 {normal=(0.947531 0.178908 0.264911)} Corner 886 33579 {normal=(0.947673 0.180409 0.263378)} Corner 886 33580 {normal=(0.947673 0.180409 0.263378)} Corner 869 33580 {normal=(0.935025 0.205428 0.289011)} Corner 827 33581 {normal=(0.615678 0.726402 -0.305418)} Corner 869 33581 {normal=(0.613622 0.728043 -0.305649)} Corner 869 33582 {normal=(0.613622 0.728043 -0.305649)} Corner 886 33582 {normal=(0.620702 0.706457 -0.340069)} Corner 886 33583 {normal=(0.620702 0.706457 -0.340069)} Corner 832 33583 {normal=(0.620875 0.703585 -0.345663)} Corner 832 33584 {normal=(0.620875 0.703585 -0.345663)} Corner 827 33584 {normal=(0.615678 0.726402 -0.305418)} Corner 827 33585 {normal=(-0.234805 0.829836 -0.506201)} Corner 827 33586 {normal=(-0.234805 0.829836 -0.506201)} Corner 832 33586 {normal=(-0.106881 0.67609 -0.729026)} Corner 832 33587 {normal=(-0.106881 0.67609 -0.729026)} Corner 868 33589 {normal=(0.541021 -0.406908 0.736018)} Corner 881 33591 {normal=(0.595255 -0.507334 0.623124)} Corner 881 33592 {normal=(0.595255 -0.507334 0.623124)} Corner 868 33592 {normal=(0.541021 -0.406908 0.736018)} Corner 748 33593 {normal=(-0.617984 0.737613 -0.272072)} Corner 823 33593 {normal=(-0.313988 0.888183 -0.335473)} Corner 823 33594 {normal=(-0.313988 0.888183 -0.335473)} Corner 827 33594 {normal=(-0.234805 0.829836 -0.506201)} Corner 827 33595 {normal=(-0.234805 0.829836 -0.506201)} Corner 748 33596 {normal=(-0.617984 0.737613 -0.272072)} Corner 826 33597 {normal=(0.494566 -0.301434 0.815194)} Corner 773 33597 {normal=(0.433702 -0.366649 0.823087)} Corner 773 33598 {normal=(0.433702 -0.366649 0.823087)} Corner 868 33599 {normal=(0.541021 -0.406908 0.736018)} Corner 868 33600 {normal=(0.541021 -0.406908 0.736018)} Corner 826 33600 {normal=(0.494566 -0.301434 0.815194)} Corner 848 33601 {normal=(0.853145 0.368685 0.369073)} Corner 826 33601 {normal=(0.782873 0.498596 0.372173)} Corner 826 33602 {normal=(0.782873 0.498596 0.372173)} Corner 868 33602 {normal=(0.929125 0.207302 0.306191)} Corner 868 33603 {normal=(0.929125 0.207302 0.306191)} Corner 869 33603 {normal=(0.935025 0.205428 0.289011)} Corner 869 33604 {normal=(0.935025 0.205428 0.289011)} Corner 848 33604 {normal=(0.853145 0.368685 0.369073)} Corner 823 33605 {normal=(0.710938 0.608896 -0.35187)} Corner 848 33605 {normal=(0.71896 0.597288 -0.355449)} Corner 848 33606 {normal=(0.71896 0.597288 -0.355449)} Corner 869 33606 {normal=(0.613622 0.728043 -0.305649)} Corner 869 33607 {normal=(0.613622 0.728043 -0.305649)} Corner 827 33607 {normal=(0.615678 0.726402 -0.305418)} Corner 827 33608 {normal=(0.615678 0.726402 -0.305418)} Corner 823 33608 {normal=(0.710938 0.608896 -0.35187)} Corner 754 33609 {normal=(0.137761 0.336669 0.931491)} Corner 773 33610 {normal=(0.0394262 0.250393 0.967341)} Corner 773 33611 {normal=(0.0394262 0.250393 0.967341)} Corner 826 33611 {normal=(0.204073 0.368481 0.90696)} Corner 826 33612 {normal=(0.204073 0.368481 0.90696)} Corner 754 33612 {normal=(0.137761 0.336669 0.931491)} Corner 800 33613 {normal=(0.754175 0.506556 0.417878)} Corner 754 33613 {normal=(0.756655 0.500766 0.420364)} Corner 754 33614 {normal=(0.756655 0.500766 0.420364)} Corner 826 33614 {normal=(0.782873 0.498596 0.372173)} Corner 826 33615 {normal=(0.782873 0.498596 0.372173)} Corner 848 33615 {normal=(0.853145 0.368685 0.369073)} Corner 848 33616 {normal=(0.853145 0.368685 0.369073)} Corner 800 33616 {normal=(0.754175 0.506556 0.417878)} Corner 783 33617 {normal=(0.833215 0.361621 -0.418311)} Corner 800 33617 {normal=(0.835031 0.355668 -0.41979)} Corner 800 33618 {normal=(0.835031 0.355668 -0.41979)} Corner 848 33618 {normal=(0.71896 0.597288 -0.355449)} Corner 848 33619 {normal=(0.71896 0.597288 -0.355449)} Corner 823 33619 {normal=(0.710938 0.608896 -0.35187)} Corner 823 33620 {normal=(0.710938 0.608896 -0.35187)} Corner 783 33620 {normal=(0.833215 0.361621 -0.418311)} Corner 700 33621 {normal=(0.370481 -0.130488 -0.919629)} Corner 783 33621 {normal=(0.387884 -0.174703 -0.905)} Corner 783 33622 {normal=(0.387884 -0.174703 -0.905)} Corner 823 33622 {normal=(0.449911 -0.353984 -0.819924)} Corner 823 33623 {normal=(0.449911 -0.353984 -0.819924)} Corner 748 33623 {normal=(0.449911 -0.353984 -0.819924)} Corner 748 33624 {normal=(0.449911 -0.353984 -0.819924)} Corner 700 33624 {normal=(0.370481 -0.130488 -0.919629)} Corner 768 33625 {normal=(0.889274 -0.436916 -0.135262)} Corner 756 33625 {normal=(0.976351 -0.215769 -0.0134926)} Corner 756 33626 {normal=(0.976351 -0.215769 -0.0134926)} Corner 770 33626 {normal=(0.976351 -0.215769 -0.0134926)} Corner 770 33627 {normal=(0.976351 -0.215769 -0.0134926)} Corner 725 33627 {normal=(0.851911 -0.495661 -0.169021)} Corner 725 33628 {normal=(0.851911 -0.495661 -0.169021)} Corner 768 33628 {normal=(0.889274 -0.436916 -0.135262)} Corner 671 33629 {normal=(0.684335 -0.674458 -0.277114)} Corner 768 33629 {normal=(0.889274 -0.436916 -0.135262)} Corner 768 33630 {normal=(0.889274 -0.436916 -0.135262)} Corner 725 33630 {normal=(0.851911 -0.495661 -0.169021)} Corner 725 33631 {normal=(0.851911 -0.495661 -0.169021)} Corner 645 33631 {normal=(0.684335 -0.674458 -0.277114)} Corner 645 33632 {normal=(0.684335 -0.674458 -0.277114)} Corner 671 33632 {normal=(0.684335 -0.674458 -0.277114)} Corner 640 33633 {normal=(0.0952917 0.0707151 0.992934)} Corner 457 33633 {normal=(0.091199 0.101705 0.990626)} Corner 457 33634 {normal=(0.091199 0.101705 0.990626)} Corner 695 33635 {normal=(0.0785193 0.186648 0.979284)} Corner 695 33636 {normal=(0.0785193 0.186648 0.979284)} Corner 640 33636 {normal=(0.0952917 0.0707151 0.992934)} Corner 756 33637 {normal=(0.801792 0.35065 0.483916)} Corner 640 33637 {normal=(0.801792 0.35065 0.483916)} Corner 640 33638 {normal=(0.801792 0.35065 0.483916)} Corner 695 33638 {normal=(0.799383 0.367095 0.475635)} Corner 695 33639 {normal=(0.799383 0.367095 0.475635)} Corner 770 33639 {normal=(0.798066 0.375326 0.471404)} Corner 770 33640 {normal=(0.798066 0.375326 0.471404)} Corner 756 33640 {normal=(0.801792 0.35065 0.483916)} Corner 526 33641 {normal=(-0.277051 0.461877 0.842563)} Corner 457 33642 {normal=(-0.301634 0.602737 0.738732)} Corner 457 33643 {normal=(-0.301634 0.602737 0.738732)} Corner 640 33643 {normal=(-0.248883 0.548747 0.798081)} Corner 640 33644 {normal=(-0.248883 0.548747 0.798081)} Corner 526 33644 {normal=(-0.277051 0.461877 0.842563)} Corner 723 33645 {normal=(0.829452 0.538214 -0.14945)} Corner 526 33645 {normal=(0.701842 0.706779 0.0887772)} Corner 526 33646 {normal=(0.701842 0.706779 0.0887772)} Corner 640 33646 {normal=(0.701841 0.706779 0.0887773)} Corner 640 33647 {normal=(0.701841 0.706779 0.0887773)} Corner 756 33647 {normal=(0.784944 0.619105 -0.0239367)} Corner 756 33648 {normal=(0.784944 0.619105 -0.0239367)} Corner 723 33648 {normal=(0.829452 0.538214 -0.14945)} Corner 745 33649 {normal=(0.860241 0.458346 -0.223392)} Corner 723 33649 {normal=(0.829452 0.538214 -0.14945)} Corner 723 33650 {normal=(0.829452 0.538214 -0.14945)} Corner 756 33650 {normal=(0.784944 0.619105 -0.0239367)} Corner 756 33651 {normal=(0.784944 0.619105 -0.0239367)} Corner 768 33651 {normal=(0.865283 0.467468 -0.180994)} Corner 768 33652 {normal=(0.865283 0.467468 -0.180994)} Corner 745 33652 {normal=(0.860241 0.458346 -0.223392)} Corner 626 33653 {normal=(0.174741 -0.491134 -0.853377)} Corner 745 33653 {normal=(0.331197 -0.369194 -0.868334)} Corner 745 33654 {normal=(0.331197 -0.369194 -0.868334)} Corner 768 33654 {normal=(0.331197 -0.369194 -0.868334)} Corner 768 33655 {normal=(0.331197 -0.369194 -0.868334)} Corner 671 33655 {normal=(0.141183 -0.584522 -0.799)} Corner 671 33656 {normal=(0.141183 -0.584522 -0.799)} Corner 626 33656 {normal=(0.174741 -0.491134 -0.853377)} Corner 4 33697 {normal=(-0.950299 0.281502 0.132996)} Corner 4 33698 {normal=(-0.950299 0.281502 0.132996)} Corner 7 33698 {normal=(-0.906749 0.30553 0.290617)} Corner 7 33699 {normal=(-0.906749 0.30553 0.290617)} Corner 5 33701 {normal=(-0.932795 0.229345 -0.27802)} Corner 4 33701 {normal=(-0.950299 0.281502 0.132996)} Corner 4 33702 {normal=(-0.950299 0.281502 0.132996)} Corner 5 33704 {normal=(-0.932795 0.229345 -0.27802)} Corner 8 33705 {normal=(-0.859799 0.18221 -0.477017)} Corner 5 33705 {normal=(-0.932795 0.229345 -0.27802)} Corner 5 33706 {normal=(-0.932795 0.229345 -0.27802)} Corner 8 33708 {normal=(-0.859799 0.18221 -0.477017)} Corner 13 33709 {normal=(-0.855113 0.123779 -0.503448)} Corner 8 33709 {normal=(-0.859799 0.18221 -0.477017)} Corner 8 33710 {normal=(-0.859799 0.18221 -0.477017)} Corner 13 33712 {normal=(-0.855113 0.123779 -0.503448)} Corner 83 33713 {normal=(-0.550002 -0.00935561 -0.835111)} Corner 13 33713 {normal=(-0.855113 0.123779 -0.503448)} Corner 13 33714 {normal=(-0.855113 0.123779 -0.503448)} Corner 83 33716 {normal=(-0.550002 -0.00935561 -0.835111)} Corner 83 33717 {normal=(-0.550002 -0.00935561 -0.835111)} Corner 213 33719 {normal=(-0.203985 -0.0817452 -0.975555)} Corner 213 33720 {normal=(-0.203985 -0.0817452 -0.975555)} Corner 83 33720 {normal=(-0.550002 -0.00935561 -0.835111)} Corner 752 33721 {normal=(0.61359 -0.0875254 -0.784759)} Corner 752 33722 {normal=(0.61359 -0.0875254 -0.784759)} Corner 534 33722 {normal=(0.244695 -0.097176 -0.964718)} Corner 534 33723 {normal=(0.244695 -0.097176 -0.964718)} Corner 534 33725 {normal=(0.244695 -0.097176 -0.964718)} Corner 534 33726 {normal=(0.244695 -0.097176 -0.964718)} Corner 213 33726 {normal=(-0.203985 -0.0817452 -0.975555)} Corner 213 33727 {normal=(-0.203985 -0.0817452 -0.975555)} Corner 846 33729 {normal=(0.900996 -0.0910117 -0.424173)} Corner 752 33729 {normal=(0.61359 -0.0875254 -0.784759)} Corner 752 33730 {normal=(0.61359 -0.0875254 -0.784759)} Corner 846 33732 {normal=(0.900996 -0.0910117 -0.424173)} Corner 885 33733 {normal=(0.990644 -0.0880863 0.104235)} Corner 885 33734 {normal=(0.990644 -0.0880863 0.104235)} Corner 846 33734 {normal=(0.900996 -0.0910117 -0.424173)} Corner 846 33735 {normal=(0.900996 -0.0910117 -0.424173)} Corner 842 33737 {normal=(0.865331 -0.0445149 0.49922)} Corner 842 33738 {normal=(0.865331 -0.0445149 0.49922)} Corner 885 33738 {normal=(0.990644 -0.0880863 0.104235)} Corner 885 33739 {normal=(0.990644 -0.0880863 0.104235)} Corner 772 33741 {normal=(0.733776 0.027502 0.678835)} Corner 772 33742 {normal=(0.733776 0.027502 0.678835)} Corner 842 33742 {normal=(0.865331 -0.0445149 0.49922)} Corner 842 33743 {normal=(0.865331 -0.0445149 0.49922)} Corner 16 33746 {normal=(-0.686211 0.250027 0.683082)} Corner 16 33747 {normal=(-0.686211 0.250027 0.683082)} Corner 162 33747 {normal=(-0.161934 0.180148 0.970219)} Corner 162 33748 {normal=(-0.161934 0.180148 0.970219)} Corner 442 33750 {normal=(0.419833 0.111422 0.900736)} Corner 442 33751 {normal=(0.419833 0.111422 0.900736)} Corner 772 33751 {normal=(0.733776 0.027502 0.678835)} Corner 772 33752 {normal=(0.733776 0.027502 0.678835)} Corner 162 33753 {normal=(-0.161934 0.180148 0.970219)} Corner 162 33754 {normal=(-0.161934 0.180148 0.970219)} Corner 442 33754 {normal=(0.419833 0.111422 0.900736)} Corner 442 33755 {normal=(0.419833 0.111422 0.900736)} Corner 9993 34769 {normal=(0.315052 -0.116775 0.941863)} Corner 9963 34769 {normal=(0.317816 -0.132264 0.938882)} Corner 9963 34770 {normal=(0.317816 -0.132264 0.938882)} Corner 10009 34770 {normal=(0.325961 -0.0309195 0.944878)} Corner 10009 34771 {normal=(0.325961 -0.0309195 0.944878)} Corner 10055 34771 {normal=(0.328293 -0.0287903 0.944137)} Corner 10055 34772 {normal=(0.328293 -0.0287903 0.944137)} Corner 9993 34772 {normal=(0.315052 -0.116775 0.941863)} Corner 9879 34773 {normal=(0.347006 -0.214786 0.912937)} Corner 9867 34773 {normal=(0.348288 -0.215888 0.912189)} Corner 9867 34774 {normal=(0.348288 -0.215888 0.912189)} Corner 9963 34774 {normal=(0.317816 -0.132264 0.938882)} Corner 9963 34775 {normal=(0.317816 -0.132264 0.938882)} Corner 9993 34775 {normal=(0.315052 -0.116775 0.941863)} Corner 9993 34776 {normal=(0.315052 -0.116775 0.941863)} Corner 9879 34776 {normal=(0.347006 -0.214786 0.912937)} Corner 9598 34777 {normal=(0.422486 -0.192434 0.885706)} Corner 9602 34777 {normal=(0.435102 -0.18348 0.881488)} Corner 9602 34778 {normal=(0.435102 -0.18348 0.881488)} Corner 9867 34778 {normal=(0.348288 -0.215888 0.912189)} Corner 9867 34779 {normal=(0.348288 -0.215888 0.912189)} Corner 9879 34779 {normal=(0.347006 -0.214786 0.912937)} Corner 9879 34780 {normal=(0.347006 -0.214786 0.912937)} Corner 9598 34780 {normal=(0.422486 -0.192434 0.885706)} Corner 9500 34781 {normal=(0.481137 -0.0705986 0.873798)} Corner 9526 34781 {normal=(0.479154 -0.0579839 0.875813)} Corner 9526 34782 {normal=(0.479154 -0.0579839 0.875813)} Corner 9602 34782 {normal=(0.435102 -0.18348 0.881488)} Corner 9602 34783 {normal=(0.435102 -0.18348 0.881488)} Corner 9598 34783 {normal=(0.422486 -0.192434 0.885706)} Corner 9598 34784 {normal=(0.422486 -0.192434 0.885706)} Corner 9500 34784 {normal=(0.481137 -0.0705986 0.873798)} Corner 9437 34785 {normal=(0.419811 0.00583996 0.907593)} Corner 9492 34785 {normal=(0.412328 0.00460331 0.911024)} Corner 9492 34786 {normal=(0.412328 0.00460331 0.911024)} Corner 9526 34786 {normal=(0.479154 -0.0579839 0.875813)} Corner 9526 34787 {normal=(0.479154 -0.0579839 0.875813)} Corner 9500 34787 {normal=(0.481137 -0.0705986 0.873798)} Corner 9500 34788 {normal=(0.481137 -0.0705986 0.873798)} Corner 9437 34788 {normal=(0.419811 0.00583996 0.907593)} Corner 9432 34789 {normal=(0.356774 -0.00728397 0.934162)} Corner 9488 34789 {normal=(0.357111 -0.00709783 0.934035)} Corner 9488 34790 {normal=(0.357111 -0.00709783 0.934035)} Corner 9492 34790 {normal=(0.412328 0.00460331 0.911024)} Corner 9492 34791 {normal=(0.412328 0.00460331 0.911024)} Corner 9437 34791 {normal=(0.419811 0.00583996 0.907593)} Corner 9437 34792 {normal=(0.419811 0.00583996 0.907593)} Corner 9432 34792 {normal=(0.356774 -0.00728397 0.934162)} Corner 9431 34793 {normal=(0.37563 -0.108027 0.920452)} Corner 9478 34793 {normal=(0.737668 -0.115325 0.665242)} Corner 9478 34794 {normal=(0.737668 -0.115325 0.665242)} Corner 9488 34794 {normal=(0.357111 -0.00709783 0.934035)} Corner 9488 34795 {normal=(0.357111 -0.00709783 0.934035)} Corner 9432 34795 {normal=(0.356774 -0.00728397 0.934162)} Corner 9432 34796 {normal=(0.356774 -0.00728397 0.934162)} Corner 9431 34796 {normal=(0.37563 -0.108027 0.920452)} Corner 10040 34797 {normal=(0.280064 -0.10998 0.953661)} Corner 10043 34797 {normal=(-0.735643 -0.00317752 0.677362)} Corner 10043 34798 {normal=(-0.735643 -0.00317752 0.677362)} Corner 9461 34798 {normal=(0.998219 -0.00760949 0.0591752)} Corner 9461 34799 {normal=(0.998219 -0.00760949 0.0591752)} Corner 9460 34799 {normal=(0.481663 -0.101828 0.870421)} Corner 9460 34800 {normal=(0.481663 -0.101828 0.870421)} Corner 10040 34800 {normal=(0.280064 -0.10998 0.953661)} Corner 10082 34801 {normal=(0.358619 -0.00775355 0.933452)} Corner 10028 34801 {normal=(0.35857 -0.00775506 0.933471)} Corner 10028 34802 {normal=(0.35857 -0.00775506 0.933471)} Corner 10029 34802 {normal=(-0.0341176 -0.118632 0.992352)} Corner 10029 34803 {normal=(-0.0341176 -0.118632 0.992352)} Corner 10080 34803 {normal=(0.33778 -0.112801 0.934441)} Corner 10080 34804 {normal=(0.33778 -0.112801 0.934441)} Corner 10082 34804 {normal=(0.358619 -0.00775355 0.933452)} Corner 10055 34805 {normal=(0.328293 -0.0287903 0.944137)} Corner 10009 34805 {normal=(0.325961 -0.0309195 0.944878)} Corner 10009 34806 {normal=(0.325961 -0.0309195 0.944878)} Corner 10028 34806 {normal=(0.35857 -0.00775506 0.933471)} Corner 10028 34807 {normal=(0.35857 -0.00775506 0.933471)} Corner 10082 34807 {normal=(0.358619 -0.00775355 0.933452)} Corner 10082 34808 {normal=(0.358619 -0.00775355 0.933452)} Corner 10055 34808 {normal=(0.328293 -0.0287903 0.944137)} Corner 10111 34809 {normal=(-0.390069 -0.08329 -0.917011)} Corner 10079 34809 {normal=(-0.386079 -0.0673637 -0.920003)} Corner 10079 34810 {normal=(-0.386079 -0.0673637 -0.920003)} Corner 10074 34810 {normal=(-0.358534 0.00659786 -0.933493)} Corner 10074 34811 {normal=(-0.358534 0.00659786 -0.933493)} Corner 10110 34811 {normal=(-0.358757 0.00656984 -0.933408)} Corner 10110 34812 {normal=(-0.358757 0.00656984 -0.933408)} Corner 10111 34812 {normal=(-0.390069 -0.08329 -0.917011)} Corner 9511 34813 {normal=(-0.297736 -0.0634542 -0.952537)} Corner 9512 34813 {normal=(0.741168 0.00308659 -0.671312)} Corner 9512 34814 {normal=(0.741168 0.00308659 -0.671312)} Corner 10090 34814 {normal=(-0.393302 0.0139038 -0.919304)} Corner 10090 34815 {normal=(-0.393302 0.0139038 -0.919304)} Corner 10088 34815 {normal=(-0.393302 0.0139038 -0.919304)} Corner 10088 34816 {normal=(-0.393302 0.0139038 -0.919304)} Corner 9511 34816 {normal=(-0.297736 -0.0634542 -0.952537)} Corner 9483 34817 {normal=(-0.357695 2.5882e-05 -0.933838)} Corner 9528 34817 {normal=(-0.35787 -0.000137777 -0.933771)} Corner 9528 34818 {normal=(-0.35787 -0.000137777 -0.933771)} Corner 9525 34818 {normal=(0.00590158 -0.0891318 -0.996002)} Corner 9525 34819 {normal=(0.00590158 -0.0891318 -0.996002)} Corner 9477 34819 {normal=(-0.33119 -0.0703699 -0.940936)} Corner 9477 34820 {normal=(-0.33119 -0.0703699 -0.940936)} Corner 9483 34820 {normal=(-0.357695 2.5882e-05 -0.933838)} Corner 9486 34821 {normal=(-0.399313 0.0189141 -0.916619)} Corner 9524 34821 {normal=(-0.396879 0.0169332 -0.917715)} Corner 9524 34822 {normal=(-0.396879 0.0169332 -0.917715)} Corner 9528 34822 {normal=(-0.35787 -0.000137777 -0.933771)} Corner 9528 34823 {normal=(-0.35787 -0.000137777 -0.933771)} Corner 9483 34823 {normal=(-0.357695 2.5882e-05 -0.933838)} Corner 9483 34824 {normal=(-0.357695 2.5882e-05 -0.933838)} Corner 9486 34824 {normal=(-0.399313 0.0189141 -0.916619)} Corner 9552 34825 {normal=(-0.467532 0.0882626 -0.879559)} Corner 9567 34825 {normal=(-0.468724 0.0896827 -0.87878)} Corner 9567 34826 {normal=(-0.468724 0.0896827 -0.87878)} Corner 9524 34826 {normal=(-0.396879 0.0169332 -0.917715)} Corner 9524 34827 {normal=(-0.396879 0.0169332 -0.917715)} Corner 9486 34827 {normal=(-0.399313 0.0189141 -0.916619)} Corner 9486 34828 {normal=(-0.399313 0.0189141 -0.916619)} Corner 9552 34828 {normal=(-0.467532 0.0882626 -0.879559)} Corner 9675 34829 {normal=(-0.436593 0.185988 -0.880224)} Corner 9679 34829 {normal=(-0.442451 0.181772 -0.878178)} Corner 9679 34830 {normal=(-0.442451 0.181772 -0.878178)} Corner 9567 34830 {normal=(-0.468724 0.0896827 -0.87878)} Corner 9567 34831 {normal=(-0.468724 0.0896827 -0.87878)} Corner 9552 34831 {normal=(-0.467532 0.0882626 -0.879559)} Corner 9552 34832 {normal=(-0.467532 0.0882626 -0.879559)} Corner 9675 34832 {normal=(-0.436593 0.185988 -0.880224)} Corner 9925 34833 {normal=(-0.347422 0.213599 -0.913057)} Corner 9910 34833 {normal=(-0.349165 0.214905 -0.912085)} Corner 9910 34834 {normal=(-0.349165 0.214905 -0.912085)} Corner 9679 34834 {normal=(-0.442451 0.181772 -0.878178)} Corner 9679 34835 {normal=(-0.442451 0.181772 -0.878178)} Corner 9675 34835 {normal=(-0.436593 0.185988 -0.880224)} Corner 9675 34836 {normal=(-0.436593 0.185988 -0.880224)} Corner 9925 34836 {normal=(-0.347422 0.213599 -0.913057)} Corner 10030 34837 {normal=(-0.308728 0.104499 -0.945393)} Corner 9997 34837 {normal=(-0.312705 0.125849 -0.941476)} Corner 9997 34838 {normal=(-0.312705 0.125849 -0.941476)} Corner 9910 34838 {normal=(-0.349165 0.214905 -0.912085)} Corner 9910 34839 {normal=(-0.349165 0.214905 -0.912085)} Corner 9925 34839 {normal=(-0.347422 0.213599 -0.913057)} Corner 9925 34840 {normal=(-0.347422 0.213599 -0.913057)} Corner 10030 34840 {normal=(-0.308728 0.104499 -0.945393)} Corner 10094 34841 {normal=(-0.32539 0.0208329 -0.94535)} Corner 10050 34841 {normal=(-0.321364 0.0229179 -0.946678)} Corner 10050 34842 {normal=(-0.321364 0.0229179 -0.946678)} Corner 9997 34842 {normal=(-0.312705 0.125849 -0.941476)} Corner 9997 34843 {normal=(-0.312705 0.125849 -0.941476)} Corner 10030 34843 {normal=(-0.308728 0.104499 -0.945393)} Corner 10030 34844 {normal=(-0.308728 0.104499 -0.945393)} Corner 10094 34844 {normal=(-0.32539 0.0208329 -0.94535)} Corner 10110 34845 {normal=(-0.358757 0.00656984 -0.933408)} Corner 10074 34845 {normal=(-0.358534 0.00659786 -0.933493)} Corner 10074 34846 {normal=(-0.358534 0.00659786 -0.933493)} Corner 10050 34846 {normal=(-0.321364 0.0229179 -0.946678)} Corner 10050 34847 {normal=(-0.321364 0.0229179 -0.946678)} Corner 10094 34847 {normal=(-0.32539 0.0208329 -0.94535)} Corner 10094 34848 {normal=(-0.32539 0.0208329 -0.94535)} Corner 10110 34848 {normal=(-0.358757 0.00656984 -0.933408)} Corner 9455 34849 {normal=(0.157913 -0.743824 0.649453)} Corner 9447 34849 {normal=(0.134647 -0.748014 0.649881)} Corner 9447 34850 {normal=(0.134647 -0.748014 0.649881)} Corner 9713 34850 {normal=(0.427171 -0.75824 0.492541)} Corner 9713 34851 {normal=(0.427171 -0.75824 0.492541)} Corner 9765 34851 {normal=(0.434318 -0.767128 0.472105)} Corner 9765 34852 {normal=(0.434318 -0.767128 0.472105)} Corner 9455 34852 {normal=(0.157913 -0.743824 0.649453)} Corner 9379 34853 {normal=(-0.0688397 -0.82739 0.557393)} Corner 9396 34853 {normal=(-0.0734386 -0.817021 0.571912)} Corner 9396 34854 {normal=(-0.0734386 -0.817021 0.571912)} Corner 9447 34854 {normal=(0.134647 -0.748014 0.649881)} Corner 9447 34855 {normal=(0.134647 -0.748014 0.649881)} Corner 9455 34855 {normal=(0.157913 -0.743824 0.649453)} Corner 9455 34856 {normal=(0.157913 -0.743824 0.649453)} Corner 9379 34856 {normal=(-0.0688397 -0.82739 0.557393)} Corner 9247 34857 {normal=(0.017503 -0.838901 0.544002)} Corner 9343 34857 {normal=(0.0541881 -0.819511 0.570496)} Corner 9343 34858 {normal=(0.0541881 -0.819511 0.570496)} Corner 9396 34858 {normal=(-0.0734386 -0.817021 0.571912)} Corner 9396 34859 {normal=(-0.0734386 -0.817021 0.571912)} Corner 9379 34859 {normal=(-0.0688397 -0.82739 0.557393)} Corner 9379 34860 {normal=(-0.0688397 -0.82739 0.557393)} Corner 9247 34860 {normal=(0.017503 -0.838901 0.544002)} Corner 8571 34861 {normal=(0.121921 -0.778257 0.615996)} Corner 9020 34861 {normal=(0.121921 -0.778257 0.615996)} Corner 9020 34862 {normal=(0.121921 -0.778257 0.615996)} Corner 9343 34862 {normal=(0.0541881 -0.819511 0.570496)} Corner 9343 34863 {normal=(0.0541881 -0.819511 0.570496)} Corner 9247 34863 {normal=(0.017503 -0.838901 0.544002)} Corner 9247 34864 {normal=(0.017503 -0.838901 0.544002)} Corner 8571 34864 {normal=(0.121921 -0.778257 0.615996)} Corner 8528 34865 {normal=(-0.088276 -0.910674 -0.403584)} Corner 8962 34865 {normal=(-0.0819528 -0.868629 -0.488639)} Corner 8962 34866 {normal=(-0.0819528 -0.868629 -0.488639)} Corner 9020 34866 {normal=(-0.0632268 -0.731559 -0.67884)} Corner 9020 34867 {normal=(-0.0632268 -0.731559 -0.67884)} Corner 8571 34867 {normal=(-0.0632268 -0.731559 -0.67884)} Corner 8571 34868 {normal=(-0.0632268 -0.731559 -0.67884)} Corner 8528 34868 {normal=(-0.088276 -0.910674 -0.403584)} Corner 9283 34869 {normal=(-0.126231 -0.979167 -0.159054)} Corner 9359 34869 {normal=(-0.138554 -0.979908 -0.143469)} Corner 9359 34870 {normal=(-0.138554 -0.979908 -0.143469)} Corner 8962 34870 {normal=(-0.0819528 -0.868629 -0.488639)} Corner 8962 34871 {normal=(-0.0819528 -0.868629 -0.488639)} Corner 8528 34871 {normal=(-0.088276 -0.910674 -0.403584)} Corner 8528 34872 {normal=(-0.088276 -0.910674 -0.403584)} Corner 9283 34872 {normal=(-0.126231 -0.979167 -0.159054)} Corner 9434 34873 {normal=(-0.235656 -0.956232 -0.173456)} Corner 9430 34873 {normal=(-0.222429 -0.961634 -0.16058)} Corner 9430 34874 {normal=(-0.222429 -0.961634 -0.16058)} Corner 9359 34874 {normal=(-0.138554 -0.979908 -0.143469)} Corner 9359 34875 {normal=(-0.138554 -0.979908 -0.143469)} Corner 9283 34875 {normal=(-0.126231 -0.979167 -0.159054)} Corner 9283 34876 {normal=(-0.126231 -0.979167 -0.159054)} Corner 9434 34876 {normal=(-0.235656 -0.956232 -0.173456)} Corner 9587 34877 {normal=(-0.254273 -0.921426 -0.293801)} Corner 9556 34877 {normal=(-0.257294 -0.922686 -0.287141)} Corner 9556 34878 {normal=(-0.257294 -0.922686 -0.287141)} Corner 9430 34878 {normal=(-0.222429 -0.961634 -0.16058)} Corner 9430 34879 {normal=(-0.222429 -0.961634 -0.16058)} Corner 9434 34879 {normal=(-0.235656 -0.956232 -0.173456)} Corner 9434 34880 {normal=(-0.235656 -0.956232 -0.173456)} Corner 9587 34880 {normal=(-0.254273 -0.921426 -0.293801)} Corner 9778 34881 {normal=(-0.22506 -0.90703 -0.355871)} Corner 9716 34881 {normal=(-0.22506 -0.90703 -0.355871)} Corner 9716 34882 {normal=(-0.22506 -0.90703 -0.355871)} Corner 9556 34882 {normal=(-0.257294 -0.922686 -0.287141)} Corner 9556 34883 {normal=(-0.257294 -0.922686 -0.287141)} Corner 9587 34883 {normal=(-0.254273 -0.921426 -0.293801)} Corner 9587 34884 {normal=(-0.254273 -0.921426 -0.293801)} Corner 9778 34884 {normal=(-0.22506 -0.90703 -0.355871)} Corner 9807 34885 {normal=(0.392009 -0.72124 0.571088)} Corner 9740 34885 {normal=(0.391707 -0.722109 0.570197)} Corner 9740 34886 {normal=(0.391707 -0.722109 0.570197)} Corner 9716 34886 {normal=(0.40921 -0.666065 0.623622)} Corner 9716 34887 {normal=(0.40921 -0.666065 0.623622)} Corner 9778 34887 {normal=(0.40921 -0.666065 0.623622)} Corner 9778 34888 {normal=(0.40921 -0.666065 0.623622)} Corner 9807 34888 {normal=(0.392009 -0.72124 0.571088)} Corner 9832 34889 {normal=(0.432066 -0.801728 0.412979)} Corner 9775 34889 {normal=(0.422282 -0.797732 0.430467)} Corner 9775 34890 {normal=(0.422282 -0.797732 0.430467)} Corner 9740 34890 {normal=(0.391707 -0.722109 0.570197)} Corner 9740 34891 {normal=(0.391707 -0.722109 0.570197)} Corner 9807 34891 {normal=(0.392009 -0.72124 0.571088)} Corner 9807 34892 {normal=(0.392009 -0.72124 0.571088)} Corner 9832 34892 {normal=(0.432066 -0.801728 0.412979)} Corner 9765 34893 {normal=(0.434318 -0.767128 0.472105)} Corner 9713 34893 {normal=(0.427171 -0.75824 0.492541)} Corner 9713 34894 {normal=(0.427171 -0.75824 0.492541)} Corner 9775 34894 {normal=(0.422282 -0.797732 0.430467)} Corner 9775 34895 {normal=(0.422282 -0.797732 0.430467)} Corner 9832 34895 {normal=(0.432066 -0.801728 0.412979)} Corner 9832 34896 {normal=(0.432066 -0.801728 0.412979)} Corner 9765 34896 {normal=(0.434318 -0.767128 0.472105)} Corner 8555 34897 {normal=(0.35525 0.025059 0.934435)} Corner 9000 34897 {normal=(0.355388 0.0281022 0.934296)} Corner 9000 34898 {normal=(0.355388 0.0281022 0.934296)} Corner 8648 34898 {normal=(0.342099 0.0343806 0.939035)} Corner 8648 34899 {normal=(0.342099 0.0343806 0.939035)} Corner 8325 34899 {normal=(0.341423 0.0334474 0.939314)} Corner 8325 34900 {normal=(0.341423 0.0334474 0.939314)} Corner 8555 34900 {normal=(0.35525 0.025059 0.934435)} Corner 8553 34901 {normal=(0.33017 0.0214699 0.943677)} Corner 8895 34901 {normal=(0.340907 0.0102292 0.940041)} Corner 8895 34902 {normal=(0.340907 0.0102292 0.940041)} Corner 9000 34902 {normal=(0.355388 0.0281022 0.934296)} Corner 9000 34903 {normal=(0.355388 0.0281022 0.934296)} Corner 8555 34903 {normal=(0.35525 0.025059 0.934435)} Corner 8555 34904 {normal=(0.35525 0.025059 0.934435)} Corner 8553 34904 {normal=(0.33017 0.0214699 0.943677)} Corner 8832 34905 {normal=(0.344501 0.00444809 0.938775)} Corner 9165 34905 {normal=(0.36315 -0.0168474 0.931578)} Corner 9165 34906 {normal=(0.36315 -0.0168474 0.931578)} Corner 8895 34906 {normal=(0.340907 0.0102292 0.940041)} Corner 8895 34907 {normal=(0.340907 0.0102292 0.940041)} Corner 8553 34907 {normal=(0.33017 0.0214699 0.943677)} Corner 8553 34908 {normal=(0.33017 0.0214699 0.943677)} Corner 8832 34908 {normal=(0.344501 0.00444809 0.938775)} Corner 9653 34909 {normal=(0.43998 -0.0280573 0.897569)} Corner 9626 34909 {normal=(0.43077 -0.0327396 0.901868)} Corner 9626 34910 {normal=(0.43077 -0.0327396 0.901868)} Corner 9165 34910 {normal=(0.36315 -0.0168474 0.931578)} Corner 9165 34911 {normal=(0.36315 -0.0168474 0.931578)} Corner 8832 34911 {normal=(0.344501 0.00444809 0.938775)} Corner 8832 34912 {normal=(0.344501 0.00444809 0.938775)} Corner 9653 34912 {normal=(0.43998 -0.0280573 0.897569)} Corner 9692 34913 {normal=(0.48739 -0.00873121 0.873141)} Corner 9633 34913 {normal=(0.485742 -0.00878962 0.874058)} Corner 9633 34914 {normal=(0.485742 -0.00878962 0.874058)} Corner 9626 34914 {normal=(0.43077 -0.0327396 0.901868)} Corner 9626 34915 {normal=(0.43077 -0.0327396 0.901868)} Corner 9653 34915 {normal=(0.43998 -0.0280573 0.897569)} Corner 9653 34916 {normal=(0.43998 -0.0280573 0.897569)} Corner 9692 34916 {normal=(0.48739 -0.00873121 0.873141)} Corner 9693 34917 {normal=(0.500971 -0.0450282 0.864292)} Corner 9632 34917 {normal=(0.501236 -0.0474736 0.864007)} Corner 9632 34918 {normal=(0.501236 -0.0474736 0.864007)} Corner 9633 34918 {normal=(0.485742 -0.00878962 0.874058)} Corner 9633 34919 {normal=(0.485742 -0.00878962 0.874058)} Corner 9692 34919 {normal=(0.48739 -0.00873121 0.873141)} Corner 9692 34920 {normal=(0.48739 -0.00873121 0.873141)} Corner 9693 34920 {normal=(0.500971 -0.0450282 0.864292)} Corner 9733 34921 {normal=(0.511096 -0.101709 0.853485)} Corner 9680 34921 {normal=(0.510912 -0.101176 0.853658)} Corner 9680 34922 {normal=(0.510912 -0.101176 0.853658)} Corner 9632 34922 {normal=(0.501236 -0.0474736 0.864007)} Corner 9632 34923 {normal=(0.501236 -0.0474736 0.864007)} Corner 9693 34923 {normal=(0.500971 -0.0450282 0.864292)} Corner 9693 34924 {normal=(0.500971 -0.0450282 0.864292)} Corner 9733 34924 {normal=(0.511096 -0.101709 0.853485)} Corner 9753 34925 {normal=(0.516981 -0.119021 0.847682)} Corner 9695 34925 {normal=(0.516981 -0.119021 0.847682)} Corner 9695 34926 {normal=(0.516981 -0.119021 0.847682)} Corner 9680 34926 {normal=(0.510912 -0.101176 0.853658)} Corner 9680 34927 {normal=(0.510912 -0.101176 0.853658)} Corner 9733 34927 {normal=(0.511096 -0.101709 0.853485)} Corner 9733 34928 {normal=(0.511096 -0.101709 0.853485)} Corner 9753 34928 {normal=(0.516981 -0.119021 0.847682)} Corner 9562 34929 {normal=(0.297729 0.890703 0.343519)} Corner 9542 34929 {normal=(0.29836 0.897061 0.325981)} Corner 9542 34930 {normal=(0.29836 0.897061 0.325981)} Corner 9695 34930 {normal=(0.29264 0.851727 0.434653)} Corner 9695 34931 {normal=(0.29264 0.851727 0.434653)} Corner 9753 34931 {normal=(0.29264 0.851727 0.434653)} Corner 9753 34932 {normal=(0.29264 0.851727 0.434653)} Corner 9562 34932 {normal=(0.297729 0.890703 0.343519)} Corner 9422 34933 {normal=(0.231091 0.954947 0.186206)} Corner 9417 34933 {normal=(0.209562 0.962371 0.17299)} Corner 9417 34934 {normal=(0.209562 0.962371 0.17299)} Corner 9542 34934 {normal=(0.29836 0.897061 0.325981)} Corner 9542 34935 {normal=(0.29836 0.897061 0.325981)} Corner 9562 34935 {normal=(0.297729 0.890703 0.343519)} Corner 9562 34936 {normal=(0.297729 0.890703 0.343519)} Corner 9422 34936 {normal=(0.231091 0.954947 0.186206)} Corner 9131 34937 {normal=(0.110105 0.978965 0.171769)} Corner 9338 34937 {normal=(0.117596 0.980577 0.156971)} Corner 9338 34938 {normal=(0.117596 0.980577 0.156971)} Corner 9417 34938 {normal=(0.209562 0.962371 0.17299)} Corner 9417 34939 {normal=(0.209562 0.962371 0.17299)} Corner 9422 34939 {normal=(0.231091 0.954947 0.186206)} Corner 9422 34940 {normal=(0.231091 0.954947 0.186206)} Corner 9131 34940 {normal=(0.110105 0.978965 0.171769)} Corner 8428 34941 {normal=(0.0758277 0.903917 0.420933)} Corner 8812 34941 {normal=(0.0686028 0.870905 0.486639)} Corner 8812 34942 {normal=(0.0686028 0.870905 0.486639)} Corner 9338 34942 {normal=(0.117596 0.980577 0.156971)} Corner 9338 34943 {normal=(0.117596 0.980577 0.156971)} Corner 9131 34943 {normal=(0.110105 0.978965 0.171769)} Corner 9131 34944 {normal=(0.110105 0.978965 0.171769)} Corner 8428 34944 {normal=(0.0758277 0.903917 0.420933)} Corner 8359 34945 {normal=(0.212457 0.380136 0.900199)} Corner 8736 34945 {normal=(0.194995 0.424289 0.884283)} Corner 8736 34946 {normal=(0.194995 0.424289 0.884283)} Corner 8812 34946 {normal=(0.0686028 0.870905 0.486639)} Corner 8812 34947 {normal=(0.0686028 0.870905 0.486639)} Corner 8428 34947 {normal=(0.0758277 0.903917 0.420933)} Corner 8428 34948 {normal=(0.0758277 0.903917 0.420933)} Corner 8359 34948 {normal=(0.212457 0.380136 0.900199)} Corner 8325 34949 {normal=(0.341423 0.0334474 0.939314)} Corner 8648 34949 {normal=(0.342099 0.0343806 0.939035)} Corner 8648 34950 {normal=(0.342099 0.0343806 0.939035)} Corner 8736 34950 {normal=(0.194995 0.424289 0.884283)} Corner 8736 34951 {normal=(0.194995 0.424289 0.884283)} Corner 8359 34951 {normal=(0.212457 0.380136 0.900199)} Corner 8359 34952 {normal=(0.212457 0.380136 0.900199)} Corner 8325 34952 {normal=(0.341423 0.0334474 0.939314)} Corner 9030 34953 {normal=(-0.1904 0.659844 -0.726879)} Corner 9333 34953 {normal=(-0.182186 0.674687 -0.715266)} Corner 9333 34954 {normal=(-0.182186 0.674687 -0.715266)} Corner 9271 34954 {normal=(-0.264173 0.505309 -0.821508)} Corner 9271 34955 {normal=(-0.264173 0.505309 -0.821508)} Corner 8855 34955 {normal=(-0.264173 0.505309 -0.821508)} Corner 8855 34956 {normal=(-0.264173 0.505309 -0.821508)} Corner 9030 34956 {normal=(-0.1904 0.659844 -0.726879)} Corner 9346 34957 {normal=(-0.0143838 0.843877 -0.536344)} Corner 9376 34957 {normal=(-0.0407798 0.832045 -0.553208)} Corner 9376 34958 {normal=(-0.0407798 0.832045 -0.553208)} Corner 9333 34958 {normal=(-0.182186 0.674687 -0.715266)} Corner 9333 34959 {normal=(-0.182186 0.674687 -0.715266)} Corner 9030 34959 {normal=(-0.1904 0.659844 -0.726879)} Corner 9030 34960 {normal=(-0.1904 0.659844 -0.726879)} Corner 9346 34960 {normal=(-0.0143838 0.843877 -0.536344)} Corner 9397 34961 {normal=(-0.00614056 0.812123 -0.583454)} Corner 9408 34961 {normal=(-0.0139973 0.802684 -0.596241)} Corner 9408 34962 {normal=(-0.0139973 0.802684 -0.596241)} Corner 9376 34962 {normal=(-0.0407798 0.832045 -0.553208)} Corner 9376 34963 {normal=(-0.0407798 0.832045 -0.553208)} Corner 9346 34963 {normal=(-0.0143838 0.843877 -0.536344)} Corner 9346 34964 {normal=(-0.0143838 0.843877 -0.536344)} Corner 9397 34964 {normal=(-0.00614056 0.812123 -0.583454)} Corner 9462 34965 {normal=(-0.209681 0.709049 -0.673263)} Corner 9456 34965 {normal=(-0.187426 0.713823 -0.67478)} Corner 9456 34966 {normal=(-0.187426 0.713823 -0.67478)} Corner 9408 34966 {normal=(-0.0139973 0.802684 -0.596241)} Corner 9408 34967 {normal=(-0.0139973 0.802684 -0.596241)} Corner 9397 34967 {normal=(-0.00614056 0.812123 -0.583454)} Corner 9397 34968 {normal=(-0.00614056 0.812123 -0.583454)} Corner 9462 34968 {normal=(-0.209681 0.709049 -0.673263)} Corner 9794 34969 {normal=(-0.40927 0.763939 -0.498894)} Corner 9741 34969 {normal=(-0.394309 0.750309 -0.530619)} Corner 9741 34970 {normal=(-0.394309 0.750309 -0.530619)} Corner 9456 34970 {normal=(-0.187426 0.713823 -0.67478)} Corner 9456 34971 {normal=(-0.187426 0.713823 -0.67478)} Corner 9462 34971 {normal=(-0.209681 0.709049 -0.673263)} Corner 9462 34972 {normal=(-0.209681 0.709049 -0.673263)} Corner 9794 34972 {normal=(-0.40927 0.763939 -0.498894)} Corner 9887 34973 {normal=(-0.426128 0.781047 -0.456487)} Corner 9839 34973 {normal=(-0.418663 0.775131 -0.473174)} Corner 9839 34974 {normal=(-0.418663 0.775131 -0.473174)} Corner 9741 34974 {normal=(-0.394309 0.750309 -0.530619)} Corner 9741 34975 {normal=(-0.394309 0.750309 -0.530619)} Corner 9794 34975 {normal=(-0.40927 0.763939 -0.498894)} Corner 9794 34976 {normal=(-0.40927 0.763939 -0.498894)} Corner 9887 34976 {normal=(-0.426128 0.781047 -0.456487)} Corner 9857 34977 {normal=(-0.372185 0.735049 -0.566728)} Corner 9803 34977 {normal=(-0.372186 0.735049 -0.566728)} Corner 9803 34978 {normal=(-0.372186 0.735049 -0.566728)} Corner 9839 34978 {normal=(-0.418663 0.775131 -0.473174)} Corner 9839 34979 {normal=(-0.418663 0.775131 -0.473174)} Corner 9887 34979 {normal=(-0.426128 0.781047 -0.456487)} Corner 9887 34980 {normal=(-0.426128 0.781047 -0.456487)} Corner 9857 34980 {normal=(-0.372185 0.735049 -0.566728)} Corner 9854 34981 {normal=(-0.499033 0.134443 -0.856091)} Corner 9806 34981 {normal=(-0.498454 0.136267 -0.85614)} Corner 9806 34982 {normal=(-0.498454 0.136267 -0.85614)} Corner 9803 34982 {normal=(-0.477348 0.198934 -0.8559)} Corner 9803 34983 {normal=(-0.477348 0.198934 -0.8559)} Corner 9857 34983 {normal=(-0.477348 0.198934 -0.8559)} Corner 9857 34984 {normal=(-0.477348 0.198934 -0.8559)} Corner 9854 34984 {normal=(-0.499033 0.134443 -0.856091)} Corner 9844 34985 {normal=(-0.514904 0.0518807 -0.855677)} Corner 9793 34985 {normal=(-0.514726 0.0507658 -0.85585)} Corner 9793 34986 {normal=(-0.514726 0.0507658 -0.85585)} Corner 9806 34986 {normal=(-0.498454 0.136267 -0.85614)} Corner 9806 34987 {normal=(-0.498454 0.136267 -0.85614)} Corner 9854 34987 {normal=(-0.499033 0.134443 -0.856091)} Corner 9854 34988 {normal=(-0.499033 0.134443 -0.856091)} Corner 9844 34988 {normal=(-0.514904 0.0518807 -0.855677)} Corner 9805 34989 {normal=(-0.503977 0.0196637 -0.863493)} Corner 9738 34989 {normal=(-0.504314 0.0201811 -0.863285)} Corner 9738 34990 {normal=(-0.504314 0.0201811 -0.863285)} Corner 9793 34990 {normal=(-0.514726 0.0507658 -0.85585)} Corner 9793 34991 {normal=(-0.514726 0.0507658 -0.85585)} Corner 9844 34991 {normal=(-0.514904 0.0518807 -0.855677)} Corner 9844 34992 {normal=(-0.514904 0.0518807 -0.855677)} Corner 9805 34992 {normal=(-0.503977 0.0196637 -0.863493)} Corner 9802 34993 {normal=(-0.562699 -0.122588 -0.817522)} Corner 9739 34993 {normal=(-0.576658 -0.153861 -0.802367)} Corner 9739 34994 {normal=(-0.576658 -0.153861 -0.802367)} Corner 9738 34994 {normal=(-0.504314 0.0201811 -0.863285)} Corner 9738 34995 {normal=(-0.504314 0.0201811 -0.863285)} Corner 9805 34995 {normal=(-0.503977 0.0196637 -0.863493)} Corner 9805 34996 {normal=(-0.503977 0.0196637 -0.863493)} Corner 9802 34996 {normal=(-0.562699 -0.122588 -0.817522)} Corner 9774 34997 {normal=(-0.545863 -0.142089 -0.825738)} Corner 9729 34997 {normal=(-0.508711 -0.0853827 -0.856693)} Corner 9729 34998 {normal=(-0.508711 -0.0853827 -0.856693)} Corner 9739 34998 {normal=(-0.576658 -0.153861 -0.802367)} Corner 9739 34999 {normal=(-0.576658 -0.153861 -0.802367)} Corner 9802 34999 {normal=(-0.562699 -0.122588 -0.817522)} Corner 9802 35000 {normal=(-0.562699 -0.122588 -0.817522)} Corner 9774 35000 {normal=(-0.545863 -0.142089 -0.825738)} Corner 9313 35001 {normal=(-0.265206 -0.0934135 -0.959656)} Corner 9360 35001 {normal=(-0.323876 -0.0348199 -0.945459)} Corner 9360 35002 {normal=(-0.323876 -0.0348199 -0.945459)} Corner 9729 35002 {normal=(-0.508711 -0.0853827 -0.856693)} Corner 9729 35003 {normal=(-0.508711 -0.0853827 -0.856693)} Corner 9774 35003 {normal=(-0.545863 -0.142089 -0.825738)} Corner 9774 35004 {normal=(-0.545863 -0.142089 -0.825738)} Corner 9313 35004 {normal=(-0.265206 -0.0934135 -0.959656)} Corner 9091 35005 {normal=(-0.245904 -0.109793 -0.963056)} Corner 9308 35005 {normal=(-0.293756 -0.0607413 -0.953949)} Corner 9308 35006 {normal=(-0.293756 -0.0607413 -0.953949)} Corner 9360 35006 {normal=(-0.323876 -0.0348199 -0.945459)} Corner 9360 35007 {normal=(-0.323876 -0.0348199 -0.945459)} Corner 9313 35007 {normal=(-0.265206 -0.0934135 -0.959656)} Corner 9313 35008 {normal=(-0.265206 -0.0934135 -0.959656)} Corner 9091 35008 {normal=(-0.245904 -0.109793 -0.963056)} Corner 9095 35009 {normal=(-0.356063 -0.0153003 -0.934337)} Corner 9337 35009 {normal=(-0.356365 -0.0178762 -0.934176)} Corner 9337 35010 {normal=(-0.356365 -0.0178762 -0.934176)} Corner 9308 35010 {normal=(-0.293756 -0.0607413 -0.953949)} Corner 9308 35011 {normal=(-0.293756 -0.0607413 -0.953949)} Corner 9091 35011 {normal=(-0.245904 -0.109793 -0.963056)} Corner 9091 35012 {normal=(-0.245904 -0.109793 -0.963056)} Corner 9095 35012 {normal=(-0.356063 -0.0153003 -0.934337)} Corner 8829 35013 {normal=(-0.362323 -0.028431 -0.931619)} Corner 9265 35013 {normal=(-0.362197 -0.0286402 -0.931661)} Corner 9265 35014 {normal=(-0.362197 -0.0286402 -0.931661)} Corner 9337 35014 {normal=(-0.356365 -0.0178762 -0.934176)} Corner 9337 35015 {normal=(-0.356365 -0.0178762 -0.934176)} Corner 9095 35015 {normal=(-0.356063 -0.0153003 -0.934337)} Corner 9095 35016 {normal=(-0.356063 -0.0153003 -0.934337)} Corner 8829 35016 {normal=(-0.362323 -0.028431 -0.931619)} Corner 8855 35017 {normal=(-0.366172 -0.0219989 -0.930287)} Corner 9271 35017 {normal=(-0.366172 -0.0219989 -0.930287)} Corner 9271 35018 {normal=(-0.366172 -0.0219989 -0.930287)} Corner 9265 35018 {normal=(-0.362197 -0.0286402 -0.931661)} Corner 9265 35019 {normal=(-0.362197 -0.0286402 -0.931661)} Corner 8829 35019 {normal=(-0.362323 -0.028431 -0.931619)} Corner 8829 35020 {normal=(-0.362323 -0.028431 -0.931619)} Corner 8855 35020 {normal=(-0.366172 -0.0219989 -0.930287)} Corner 9360 35021 {normal=(-0.710195 -0.657447 0.251767)} Corner 9308 35021 {normal=(-0.904935 -0.286071 0.315049)} Corner 9308 35022 {normal=(-0.904935 -0.286071 0.315049)} Corner 8895 35022 {normal=(-0.91454 -0.250006 0.317985)} Corner 8895 35023 {normal=(-0.91454 -0.250006 0.317985)} Corner 9165 35023 {normal=(-0.710195 -0.657447 0.251767)} Corner 9165 35024 {normal=(-0.710195 -0.657447 0.251767)} Corner 9360 35024 {normal=(-0.710195 -0.657447 0.251767)} Corner 9739 35025 {normal=(0.461457 -0.847473 -0.262387)} Corner 9729 35025 {normal=(0.461457 -0.847473 -0.262387)} Corner 9729 35026 {normal=(0.461457 -0.847473 -0.262387)} Corner 9626 35026 {normal=(0.461457 -0.847473 -0.262387)} Corner 9626 35027 {normal=(0.461457 -0.847473 -0.262387)} Corner 9633 35027 {normal=(0.461457 -0.847473 -0.262387)} Corner 9633 35028 {normal=(0.461457 -0.847473 -0.262387)} Corner 9739 35028 {normal=(0.461457 -0.847473 -0.262387)} Corner 10079 35029 {normal=(-0.0689037 0.997294 0.0256322)} Corner 10090 35029 {normal=(-0.0689037 0.997294 0.0256322)} Corner 10090 35030 {normal=(-0.0689037 0.997294 0.0256322)} Corner 10043 35030 {normal=(-0.0689037 0.997294 0.0256322)} Corner 10043 35031 {normal=(-0.0689037 0.997294 0.0256322)} Corner 10029 35031 {normal=(-0.0689037 0.997294 0.0256322)} Corner 10029 35032 {normal=(-0.0689037 0.997294 0.0256322)} Corner 10079 35032 {normal=(-0.0689037 0.997294 0.0256322)} Corner 9478 35033 {normal=(0.0906166 0.995291 -0.0344128)} Corner 9461 35033 {normal=(0.0906166 0.995291 -0.0344128)} Corner 9461 35034 {normal=(0.0906166 0.995291 -0.0344128)} Corner 9512 35034 {normal=(0.0906166 0.995291 -0.0344128)} Corner 9512 35035 {normal=(0.0906166 0.995291 -0.0344128)} Corner 9525 35035 {normal=(0.0906166 0.995291 -0.0344128)} Corner 9525 35036 {normal=(0.0906166 0.995291 -0.0344128)} Corner 9478 35036 {normal=(0.0906166 0.995291 -0.0344128)} Corner 9376 35037 {normal=(-0.875579 0.134587 0.463947)} Corner 9408 35037 {normal=(-0.50691 0.538444 0.673142)} Corner 9408 35038 {normal=(-0.50691 0.538444 0.673142)} Corner 9396 35038 {normal=(-0.689407 0.376666 0.618741)} Corner 9396 35039 {normal=(-0.689407 0.376666 0.618741)} Corner 9343 35039 {normal=(-0.887152 0.123905 0.444532)} Corner 9343 35040 {normal=(-0.887152 0.123905 0.444532)} Corner 9376 35040 {normal=(-0.875579 0.134587 0.463947)} Corner 8962 35041 {normal=(-0.9651 0.17656 -0.193415)} Corner 9359 35041 {normal=(-0.712569 0.181978 -0.677591)} Corner 9359 35042 {normal=(-0.712569 0.181978 -0.677591)} Corner 9338 35042 {normal=(-0.729423 0.184251 -0.658782)} Corner 9338 35043 {normal=(-0.729423 0.184251 -0.658782)} Corner 8812 35043 {normal=(-0.979849 0.165319 -0.112101)} Corner 8812 35044 {normal=(-0.979849 0.165319 -0.112101)} Corner 8962 35044 {normal=(-0.9651 0.17656 -0.193415)} Corner 9360 35045 {normal=(0.0157145 -0.999852 -0.00695027)} Corner 9165 35045 {normal=(0.0157145 -0.999852 -0.00695027)} Corner 9165 35046 {normal=(0.0157145 -0.999852 -0.00695027)} Corner 9626 35046 {normal=(0.0157145 -0.999852 -0.00695027)} Corner 9626 35047 {normal=(0.0157145 -0.999852 -0.00695027)} Corner 9729 35047 {normal=(0.0157145 -0.999852 -0.00695027)} Corner 9729 35048 {normal=(0.0157145 -0.999852 -0.00695027)} Corner 9360 35048 {normal=(0.0157145 -0.999852 -0.00695027)} Corner 9478 35049 {normal=(-0.926478 0.0317794 0.375004)} Corner 9525 35049 {normal=(-0.926478 0.0317794 0.375004)} Corner 9525 35050 {normal=(-0.926478 0.0317794 0.375004)} Corner 9528 35050 {normal=(-0.931682 0.0158009 0.362932)} Corner 9528 35051 {normal=(-0.931682 0.0158009 0.362932)} Corner 9488 35051 {normal=(-0.931802 0.015416 0.36264)} Corner 9488 35052 {normal=(-0.931802 0.015416 0.36264)} Corner 9478 35052 {normal=(-0.926478 0.0317794 0.375004)} Corner 9488 35053 {normal=(-0.931802 0.015416 0.36264)} Corner 9528 35053 {normal=(-0.931682 0.0158009 0.362932)} Corner 9528 35054 {normal=(-0.931682 0.0158009 0.362932)} Corner 9524 35054 {normal=(-0.882607 0.289594 0.370325)} Corner 9524 35055 {normal=(-0.882607 0.289594 0.370325)} Corner 9492 35055 {normal=(-0.868244 0.329933 0.370536)} Corner 9492 35056 {normal=(-0.868244 0.329933 0.370536)} Corner 9488 35056 {normal=(-0.931802 0.015416 0.36264)} Corner 9492 35057 {normal=(-0.868244 0.329933 0.370536)} Corner 9524 35057 {normal=(-0.882607 0.289594 0.370325)} Corner 9524 35058 {normal=(-0.882607 0.289594 0.370325)} Corner 9567 35058 {normal=(-0.604941 0.702748 0.374421)} Corner 9567 35059 {normal=(-0.604941 0.702748 0.374421)} Corner 9526 35059 {normal=(-0.595356 0.71034 0.375457)} Corner 9526 35060 {normal=(-0.595356 0.71034 0.375457)} Corner 9492 35060 {normal=(-0.868244 0.329933 0.370536)} Corner 9602 35061 {normal=(-0.156341 0.93871 0.307215)} Corner 9526 35061 {normal=(-0.595356 0.71034 0.375457)} Corner 9526 35062 {normal=(-0.595356 0.71034 0.375457)} Corner 9567 35062 {normal=(-0.604941 0.702748 0.374421)} Corner 9567 35063 {normal=(-0.604941 0.702748 0.374421)} Corner 9679 35063 {normal=(-0.157891 0.938295 0.30769)} Corner 9679 35064 {normal=(-0.157891 0.938295 0.30769)} Corner 9602 35064 {normal=(-0.156341 0.93871 0.307215)} Corner 9602 35065 {normal=(-0.156341 0.93871 0.307215)} Corner 9679 35065 {normal=(-0.157891 0.938295 0.30769)} Corner 9679 35066 {normal=(-0.157891 0.938295 0.30769)} Corner 9910 35066 {normal=(0.224902 0.959713 0.168434)} Corner 9910 35067 {normal=(0.224902 0.959713 0.168434)} Corner 9867 35067 {normal=(0.224793 0.95973 0.16848)} Corner 9867 35068 {normal=(0.224793 0.95973 0.16848)} Corner 9602 35068 {normal=(-0.156341 0.93871 0.307215)} Corner 9867 35069 {normal=(0.224793 0.95973 0.16848)} Corner 9910 35069 {normal=(0.224902 0.959713 0.168434)} Corner 9910 35070 {normal=(0.224902 0.959713 0.168434)} Corner 9997 35070 {normal=(0.64223 0.7633 -0.0701029)} Corner 9997 35071 {normal=(0.64223 0.7633 -0.0701029)} Corner 9963 35071 {normal=(0.593272 0.804172 -0.0365475)} Corner 9963 35072 {normal=(0.593272 0.804172 -0.0365475)} Corner 9867 35072 {normal=(0.224793 0.95973 0.16848)} Corner 9963 35073 {normal=(0.593272 0.804172 -0.0365475)} Corner 9997 35073 {normal=(0.64223 0.7633 -0.0701029)} Corner 9997 35074 {normal=(0.64223 0.7633 -0.0701029)} Corner 10050 35074 {normal=(0.902325 0.314679 -0.294595)} Corner 10050 35075 {normal=(0.902325 0.314679 -0.294595)} Corner 10009 35075 {normal=(0.898922 0.327686 -0.290793)} Corner 10009 35076 {normal=(0.898922 0.327686 -0.290793)} Corner 9963 35076 {normal=(0.593272 0.804172 -0.0365475)} Corner 10009 35077 {normal=(0.898922 0.327686 -0.290793)} Corner 10050 35077 {normal=(0.902325 0.314679 -0.294595)} Corner 10050 35078 {normal=(0.902325 0.314679 -0.294595)} Corner 10074 35078 {normal=(0.933299 0.0877313 -0.348218)} Corner 10074 35079 {normal=(0.933299 0.0877313 -0.348218)} Corner 10028 35079 {normal=(0.93324 0.0897238 -0.347869)} Corner 10028 35080 {normal=(0.93324 0.0897238 -0.347869)} Corner 10009 35080 {normal=(0.898922 0.327686 -0.290793)} Corner 10028 35081 {normal=(0.93324 0.0897238 -0.347869)} Corner 10074 35081 {normal=(0.933299 0.0877313 -0.348218)} Corner 10074 35082 {normal=(0.933299 0.0877313 -0.348218)} Corner 10079 35082 {normal=(0.93337 0.0302482 -0.357639)} Corner 10079 35083 {normal=(0.93337 0.0302482 -0.357639)} Corner 10029 35083 {normal=(0.93337 0.0302482 -0.357639)} Corner 10029 35084 {normal=(0.93337 0.0302482 -0.357639)} Corner 10028 35084 {normal=(0.93324 0.0897238 -0.347869)} Corner 9359 35085 {normal=(-0.712569 0.181978 -0.677591)} Corner 9430 35085 {normal=(-0.105432 0.131005 -0.985759)} Corner 9430 35086 {normal=(-0.105432 0.131005 -0.985759)} Corner 9417 35086 {normal=(-0.0218794 0.124831 -0.991937)} Corner 9417 35087 {normal=(-0.0218794 0.124831 -0.991937)} Corner 9338 35087 {normal=(-0.729423 0.184251 -0.658782)} Corner 9338 35088 {normal=(-0.729423 0.184251 -0.658782)} Corner 9359 35088 {normal=(-0.712569 0.181978 -0.677591)} Corner 9343 35089 {normal=(-0.887152 0.123905 0.444532)} Corner 9020 35089 {normal=(-0.957924 0.0920837 0.27185)} Corner 9020 35090 {normal=(-0.957924 0.0920837 0.27185)} Corner 9333 35090 {normal=(-0.921333 0.0840553 0.379578)} Corner 9333 35091 {normal=(-0.921333 0.0840553 0.379578)} Corner 9376 35091 {normal=(-0.875579 0.134587 0.463947)} Corner 9376 35092 {normal=(-0.875579 0.134587 0.463947)} Corner 9343 35092 {normal=(-0.887152 0.123905 0.444532)} Corner 9456 35093 {normal=(0.0189398 0.74245 0.669634)} Corner 9447 35093 {normal=(0.0395833 0.744261 0.666715)} Corner 9447 35094 {normal=(0.0395833 0.744261 0.666715)} Corner 9396 35094 {normal=(-0.689407 0.376666 0.618741)} Corner 9396 35095 {normal=(-0.689407 0.376666 0.618741)} Corner 9408 35095 {normal=(-0.50691 0.538444 0.673142)} Corner 9408 35096 {normal=(-0.50691 0.538444 0.673142)} Corner 9456 35096 {normal=(0.0189398 0.74245 0.669634)} Corner 9803 35097 {normal=(0.876333 0.118797 -0.466828)} Corner 9740 35097 {normal=(0.889568 0.148765 -0.4319)} Corner 9740 35098 {normal=(0.889568 0.148765 -0.4319)} Corner 9775 35098 {normal=(0.919863 0.351842 -0.173376)} Corner 9775 35099 {normal=(0.919863 0.351842 -0.173376)} Corner 9839 35099 {normal=(0.91253 0.395356 -0.104799)} Corner 9839 35100 {normal=(0.91253 0.395356 -0.104799)} Corner 9803 35100 {normal=(0.876333 0.118797 -0.466828)} Corner 9456 35101 {normal=(0.0189398 0.74245 0.669634)} Corner 9741 35101 {normal=(0.537346 0.705587 0.46196)} Corner 9741 35102 {normal=(0.537346 0.705587 0.46196)} Corner 9713 35102 {normal=(0.668293 0.655498 0.351719)} Corner 9713 35103 {normal=(0.668293 0.655498 0.351719)} Corner 9447 35103 {normal=(0.0395833 0.744261 0.666715)} Corner 9447 35104 {normal=(0.0395833 0.744261 0.666715)} Corner 9456 35104 {normal=(0.0189398 0.74245 0.669634)} Corner 9542 35105 {normal=(0.642382 0.0601608 -0.76402)} Corner 9417 35105 {normal=(-0.0218794 0.124831 -0.991937)} Corner 9417 35106 {normal=(-0.0218794 0.124831 -0.991937)} Corner 9430 35106 {normal=(-0.105432 0.131005 -0.985759)} Corner 9430 35107 {normal=(-0.105432 0.131005 -0.985759)} Corner 9556 35107 {normal=(0.577426 0.0668232 -0.813704)} Corner 9556 35108 {normal=(0.577426 0.0668232 -0.813704)} Corner 9542 35108 {normal=(0.642382 0.0601608 -0.76402)} Corner 9839 35109 {normal=(0.91253 0.395356 -0.104799)} Corner 9775 35109 {normal=(0.919863 0.351842 -0.173376)} Corner 9775 35110 {normal=(0.919863 0.351842 -0.173376)} Corner 9713 35110 {normal=(0.668293 0.655498 0.351719)} Corner 9713 35111 {normal=(0.668293 0.655498 0.351719)} Corner 9741 35111 {normal=(0.537346 0.705587 0.46196)} Corner 9741 35112 {normal=(0.537346 0.705587 0.46196)} Corner 9839 35112 {normal=(0.91253 0.395356 -0.104799)} Corner 9793 35113 {normal=(0.840023 -0.104154 -0.532459)} Corner 9680 35113 {normal=(0.839565 -0.11592 -0.530748)} Corner 9680 35114 {normal=(0.839565 -0.11592 -0.530748)} Corner 9695 35114 {normal=(0.830536 0.0353789 -0.55584)} Corner 9695 35115 {normal=(0.830536 0.0353789 -0.55584)} Corner 9806 35115 {normal=(0.846915 0.0397246 -0.530242)} Corner 9806 35116 {normal=(0.846915 0.0397246 -0.530242)} Corner 9793 35116 {normal=(0.840023 -0.104154 -0.532459)} Corner 9695 35117 {normal=(0.830536 0.0353789 -0.55584)} Corner 9542 35117 {normal=(0.642382 0.0601608 -0.76402)} Corner 9542 35118 {normal=(0.642382 0.0601608 -0.76402)} Corner 9556 35118 {normal=(0.577426 0.0668232 -0.813704)} Corner 9556 35119 {normal=(0.577426 0.0668232 -0.813704)} Corner 9716 35119 {normal=(0.836927 0.0674515 -0.543142)} Corner 9716 35120 {normal=(0.836927 0.0674515 -0.543142)} Corner 9695 35120 {normal=(0.830536 0.0353789 -0.55584)} Corner 9806 35121 {normal=(0.846915 0.0397246 -0.530242)} Corner 9695 35121 {normal=(0.830536 0.0353789 -0.55584)} Corner 9695 35122 {normal=(0.830536 0.0353789 -0.55584)} Corner 9716 35122 {normal=(0.836927 0.0674515 -0.543142)} Corner 9716 35123 {normal=(0.836927 0.0674515 -0.543142)} Corner 9803 35123 {normal=(0.876333 0.118797 -0.466828)} Corner 9803 35124 {normal=(0.876333 0.118797 -0.466828)} Corner 9806 35124 {normal=(0.846915 0.0397246 -0.530242)} Corner 9020 35125 {normal=(-0.957924 0.0920837 0.27185)} Corner 8962 35125 {normal=(-0.9651 0.17656 -0.193415)} Corner 8962 35126 {normal=(-0.9651 0.17656 -0.193415)} Corner 8812 35126 {normal=(-0.979849 0.165319 -0.112101)} Corner 8812 35127 {normal=(-0.979849 0.165319 -0.112101)} Corner 8736 35127 {normal=(-0.95743 0.067261 0.280722)} Corner 8736 35128 {normal=(-0.95743 0.067261 0.280722)} Corner 9020 35128 {normal=(-0.957924 0.0920837 0.27185)} Corner 9333 35129 {normal=(-0.921333 0.0840553 0.379578)} Corner 9020 35129 {normal=(-0.957924 0.0920837 0.27185)} Corner 9020 35130 {normal=(-0.957924 0.0920837 0.27185)} Corner 8736 35130 {normal=(-0.95743 0.067261 0.280722)} Corner 8736 35131 {normal=(-0.95743 0.067261 0.280722)} Corner 9271 35131 {normal=(-0.936711 0.042744 0.347486)} Corner 9271 35132 {normal=(-0.936711 0.042744 0.347486)} Corner 9333 35132 {normal=(-0.921333 0.0840553 0.379578)} Corner 8648 35133 {normal=(-0.933595 -0.0762079 0.350132)} Corner 9265 35133 {normal=(-0.933231 -0.0828959 0.349584)} Corner 9265 35134 {normal=(-0.933231 -0.0828959 0.349584)} Corner 9271 35134 {normal=(-0.936711 0.042744 0.347486)} Corner 9271 35135 {normal=(-0.936711 0.042744 0.347486)} Corner 8736 35135 {normal=(-0.95743 0.067261 0.280722)} Corner 8736 35136 {normal=(-0.95743 0.067261 0.280722)} Corner 8648 35136 {normal=(-0.933595 -0.0762079 0.350132)} Corner 9000 35137 {normal=(-0.942271 0.00436778 0.334824)} Corner 9337 35137 {normal=(-0.942336 0.00965759 0.334529)} Corner 9337 35138 {normal=(-0.942336 0.00965759 0.334529)} Corner 9265 35138 {normal=(-0.933231 -0.0828959 0.349584)} Corner 9265 35139 {normal=(-0.933231 -0.0828959 0.349584)} Corner 8648 35139 {normal=(-0.933595 -0.0762079 0.350132)} Corner 8648 35140 {normal=(-0.933595 -0.0762079 0.350132)} Corner 9000 35140 {normal=(-0.942271 0.00436778 0.334824)} Corner 9632 35141 {normal=(0.85133 -0.10271 -0.514478)} Corner 9738 35141 {normal=(0.850704 -0.10751 -0.514533)} Corner 9738 35142 {normal=(0.850704 -0.10751 -0.514533)} Corner 9739 35142 {normal=(0.860201 0.00831142 -0.509888)} Corner 9739 35143 {normal=(0.860201 0.00831142 -0.509888)} Corner 9633 35143 {normal=(0.860201 0.00831142 -0.509888)} Corner 9633 35144 {normal=(0.860201 0.00831142 -0.509888)} Corner 9632 35144 {normal=(0.85133 -0.10271 -0.514478)} Corner 10043 35145 {normal=(0 -1 0)} Corner 10090 35145 {normal=(0 -1 0)} Corner 10090 35146 {normal=(0 -1 0)} Corner 9512 35146 {normal=(0 -1 0)} Corner 9512 35147 {normal=(0 -1 0)} Corner 9461 35147 {normal=(0 -1 0)} Corner 9461 35148 {normal=(0 -1 0)} Corner 10043 35148 {normal=(0 -1 0)} Corner 9738 35149 {normal=(0.850704 -0.10751 -0.514533)} Corner 9632 35149 {normal=(0.85133 -0.10271 -0.514478)} Corner 9632 35150 {normal=(0.85133 -0.10271 -0.514478)} Corner 9680 35150 {normal=(0.839565 -0.11592 -0.530748)} Corner 9680 35151 {normal=(0.839565 -0.11592 -0.530748)} Corner 9793 35151 {normal=(0.840023 -0.104154 -0.532459)} Corner 9793 35152 {normal=(0.840023 -0.104154 -0.532459)} Corner 9738 35152 {normal=(0.850704 -0.10751 -0.514533)} Corner 9337 35153 {normal=(-0.942336 0.00965759 0.334529)} Corner 9000 35153 {normal=(-0.942271 0.00436778 0.334824)} Corner 9000 35154 {normal=(-0.942271 0.00436778 0.334824)} Corner 8895 35154 {normal=(-0.91454 -0.250006 0.317985)} Corner 8895 35155 {normal=(-0.91454 -0.250006 0.317985)} Corner 9308 35155 {normal=(-0.904935 -0.286071 0.315049)} Corner 9308 35156 {normal=(-0.904935 -0.286071 0.315049)} Corner 9337 35156 {normal=(-0.942336 0.00965759 0.334529)} Corner 9922 35157 {normal=(0 -1 0)} Corner 9996 35157 {normal=(0 -1 0)} Corner 9996 35158 {normal=(0 -1 0)} Corner 9499 35158 {normal=(0 -1 0)} Corner 9499 35159 {normal=(0 -1 0)} Corner 9872 35159 {normal=(0 -1 0)} Corner 9872 35160 {normal=(0 -1 0)} Corner 9922 35160 {normal=(0 -1 0)} Corner 9448 35161 {normal=(-0.217219 0.843481 -0.49128)} Corner 9614 35161 {normal=(-0.229795 0.832754 -0.503702)} Corner 9614 35162 {normal=(-0.229795 0.832754 -0.503702)} Corner 10059 35162 {normal=(-0.336806 0.574854 -0.745724)} Corner 10059 35163 {normal=(-0.336806 0.574854 -0.745724)} Corner 9377 35163 {normal=(-0.312981 0.618961 -0.720368)} Corner 9377 35164 {normal=(-0.312981 0.618961 -0.720368)} Corner 9448 35164 {normal=(-0.217219 0.843481 -0.49128)} Corner 8583 35165 {normal=(0.00371279 -0.999993 0.000356575)} Corner 9168 35165 {normal=(0.00254064 -0.999997 0.000278416)} Corner 9168 35166 {normal=(0.00254064 -0.999997 0.000278416)} Corner 9653 35166 {normal=(0.00198237 -0.999998 0.000241191)} Corner 9653 35167 {normal=(0.00198237 -0.999998 0.000241191)} Corner 8832 35167 {normal=(0.00371279 -0.999993 0.000356575)} Corner 8832 35168 {normal=(0.00371279 -0.999993 0.000356575)} Corner 8583 35168 {normal=(0.00371279 -0.999993 0.000356575)} Corner 9782 35169 {normal=(0 -1 0)} Corner 9636 35169 {normal=(0 -1 0)} Corner 9636 35170 {normal=(0 -1 0)} Corner 9511 35170 {normal=(0 -1 0)} Corner 9511 35171 {normal=(0 -1 0)} Corner 9933 35171 {normal=(0 -1 0)} Corner 9933 35172 {normal=(0 -1 0)} Corner 9782 35172 {normal=(0 -1 0)} Corner 10039 35173 {normal=(0 -1 0)} Corner 9933 35173 {normal=(0 -1 0)} Corner 9933 35174 {normal=(0 -1 0)} Corner 9511 35174 {normal=(0 -1 0)} Corner 9511 35175 {normal=(0 -1 0)} Corner 10135 35175 {normal=(0 -1 0)} Corner 10135 35176 {normal=(0 -1 0)} Corner 10039 35176 {normal=(0 -1 0)} Corner 10119 35177 {normal=(0 -1 0)} Corner 10135 35177 {normal=(0 -1 0)} Corner 10135 35178 {normal=(0 -1 0)} Corner 9511 35178 {normal=(0 -1 0)} Corner 9511 35179 {normal=(0 -1 0)} Corner 10088 35179 {normal=(0 -1 0)} Corner 10088 35180 {normal=(0 -1 0)} Corner 10119 35180 {normal=(0 -1 0)} Corner 10040 35181 {normal=(0 -1 0)} Corner 9482 35181 {normal=(0 -1 0)} Corner 9482 35182 {normal=(0 -1 0)} Corner 9499 35182 {normal=(0 -1 0)} Corner 9499 35183 {normal=(0 -1 0)} Corner 9996 35183 {normal=(0 -1 0)} Corner 9996 35184 {normal=(0 -1 0)} Corner 10040 35184 {normal=(0 -1 0)} Corner 7859 35185 {normal=(-0.607904 0.613576 -0.503962)} Corner 8025 35185 {normal=(-0.604465 0.614863 -0.506522)} Corner 8025 35186 {normal=(-0.604465 0.614863 -0.506522)} Corner 8912 35186 {normal=(-0.464416 0.648564 -0.603061)} Corner 8912 35187 {normal=(-0.464416 0.648564 -0.603061)} Corner 8679 35187 {normal=(-0.479356 0.646786 -0.593199)} Corner 8679 35188 {normal=(-0.479356 0.646786 -0.593199)} Corner 7859 35188 {normal=(-0.607904 0.613576 -0.503962)} Corner 8679 35189 {normal=(-0.479356 0.646786 -0.593199)} Corner 8912 35189 {normal=(-0.464416 0.648564 -0.603061)} Corner 8912 35190 {normal=(-0.464416 0.648564 -0.603061)} Corner 9340 35190 {normal=(-0.285089 0.609478 -0.739771)} Corner 9340 35191 {normal=(-0.285089 0.609478 -0.739771)} Corner 9317 35191 {normal=(-0.310483 0.619388 -0.721082)} Corner 9317 35192 {normal=(-0.310483 0.619388 -0.721082)} Corner 8679 35192 {normal=(-0.479356 0.646786 -0.593199)} Corner 9317 35193 {normal=(-0.310483 0.619388 -0.721082)} Corner 9340 35193 {normal=(-0.285089 0.609478 -0.739771)} Corner 9340 35194 {normal=(-0.285089 0.609478 -0.739771)} Corner 9433 35194 {normal=(-0.0667108 0.514211 -0.855065)} Corner 9433 35195 {normal=(-0.0667108 0.514211 -0.855065)} Corner 9435 35195 {normal=(-0.0682773 0.514937 -0.854505)} Corner 9435 35196 {normal=(-0.0682773 0.514937 -0.854505)} Corner 9317 35196 {normal=(-0.310483 0.619388 -0.721082)} Corner 9545 35197 {normal=(0.108198 0.409537 -0.905855)} Corner 9554 35197 {normal=(0.111218 0.407159 -0.906561)} Corner 9554 35198 {normal=(0.111218 0.407159 -0.906561)} Corner 9435 35198 {normal=(-0.0682773 0.514937 -0.854505)} Corner 9435 35199 {normal=(-0.0682773 0.514937 -0.854505)} Corner 9433 35199 {normal=(-0.0667108 0.514211 -0.855065)} Corner 9433 35200 {normal=(-0.0667108 0.514211 -0.855065)} Corner 9545 35200 {normal=(0.108198 0.409537 -0.905855)} Corner 7578 35201 {normal=(-0.741767 0.581179 -0.334683)} Corner 7740 35201 {normal=(-0.74799 0.580284 -0.322151)} Corner 7740 35202 {normal=(-0.74799 0.580284 -0.322151)} Corner 8025 35202 {normal=(-0.604465 0.614863 -0.506522)} Corner 8025 35203 {normal=(-0.604465 0.614863 -0.506522)} Corner 7859 35203 {normal=(-0.607904 0.613576 -0.503962)} Corner 7859 35204 {normal=(-0.607904 0.613576 -0.503962)} Corner 7578 35204 {normal=(-0.741767 0.581179 -0.334683)} Corner 7587 35205 {normal=(-0.849765 0.45933 -0.258678)} Corner 7735 35205 {normal=(-0.851042 0.456034 -0.260308)} Corner 7735 35206 {normal=(-0.851042 0.456034 -0.260308)} Corner 7740 35206 {normal=(-0.74799 0.580284 -0.322151)} Corner 7740 35207 {normal=(-0.74799 0.580284 -0.322151)} Corner 7578 35207 {normal=(-0.741767 0.581179 -0.334683)} Corner 7578 35208 {normal=(-0.741767 0.581179 -0.334683)} Corner 7587 35208 {normal=(-0.849765 0.45933 -0.258678)} Corner 7735 35209 {normal=(-0.851042 0.456034 -0.260308)} Corner 7587 35209 {normal=(-0.849765 0.45933 -0.258678)} Corner 7587 35210 {normal=(-0.849765 0.45933 -0.258678)} Corner 7682 35210 {normal=(-0.923612 0.289141 -0.25167)} Corner 7682 35211 {normal=(-0.923612 0.289141 -0.25167)} Corner 7777 35211 {normal=(-0.924353 0.287984 -0.250272)} Corner 7777 35212 {normal=(-0.924353 0.287984 -0.250272)} Corner 7735 35212 {normal=(-0.851042 0.456034 -0.260308)} Corner 7937 35213 {normal=(-0.955544 0.272817 -0.111832)} Corner 7978 35213 {normal=(-0.95575 0.267677 -0.122033)} Corner 7978 35214 {normal=(-0.95575 0.267677 -0.122033)} Corner 7777 35214 {normal=(-0.924353 0.287984 -0.250272)} Corner 7777 35215 {normal=(-0.924353 0.287984 -0.250272)} Corner 7682 35215 {normal=(-0.923612 0.289141 -0.25167)} Corner 7682 35216 {normal=(-0.923612 0.289141 -0.25167)} Corner 7937 35216 {normal=(-0.955544 0.272817 -0.111832)} Corner 8438 35217 {normal=(-0.954101 0.298953 -0.0178562)} Corner 8447 35217 {normal=(-0.954008 0.29918 -0.0189911)} Corner 8447 35218 {normal=(-0.954008 0.29918 -0.0189911)} Corner 7978 35218 {normal=(-0.95575 0.267677 -0.122033)} Corner 7978 35219 {normal=(-0.95575 0.267677 -0.122033)} Corner 7937 35219 {normal=(-0.955544 0.272817 -0.111832)} Corner 7937 35220 {normal=(-0.955544 0.272817 -0.111832)} Corner 8438 35220 {normal=(-0.954101 0.298953 -0.0178562)} Corner 9081 35221 {normal=(-0.922283 0.382495 0.0555951)} Corner 9123 35221 {normal=(-0.911293 0.406119 0.067915)} Corner 9123 35222 {normal=(-0.911293 0.406119 0.067915)} Corner 8447 35222 {normal=(-0.954008 0.29918 -0.0189911)} Corner 8447 35223 {normal=(-0.954008 0.29918 -0.0189911)} Corner 8438 35223 {normal=(-0.954101 0.298953 -0.0178562)} Corner 8438 35224 {normal=(-0.954101 0.298953 -0.0178562)} Corner 9081 35224 {normal=(-0.922283 0.382495 0.0555951)} Corner 9554 35225 {normal=(0.111218 0.407159 -0.906561)} Corner 9545 35225 {normal=(0.108198 0.409537 -0.905855)} Corner 9545 35226 {normal=(0.108198 0.409537 -0.905855)} Corner 9734 35226 {normal=(0.241233 0.293469 -0.925031)} Corner 9734 35227 {normal=(0.241233 0.293469 -0.925031)} Corner 9772 35227 {normal=(0.246541 0.288326 -0.925249)} Corner 9772 35228 {normal=(0.246541 0.288326 -0.925249)} Corner 9554 35228 {normal=(0.111218 0.407159 -0.906561)} Corner 9772 35229 {normal=(0.246541 0.288326 -0.925249)} Corner 9734 35229 {normal=(0.241233 0.293469 -0.925031)} Corner 9734 35230 {normal=(0.241233 0.293469 -0.925031)} Corner 9888 35230 {normal=(0.394905 0.208839 -0.894671)} Corner 9888 35231 {normal=(0.394905 0.208839 -0.894671)} Corner 9920 35231 {normal=(0.402034 0.207274 -0.891855)} Corner 9920 35232 {normal=(0.402034 0.207274 -0.891855)} Corner 9772 35232 {normal=(0.246541 0.288326 -0.925249)} Corner 9920 35233 {normal=(0.402034 0.207274 -0.891855)} Corner 9888 35233 {normal=(0.394905 0.208839 -0.894671)} Corner 9888 35234 {normal=(0.394905 0.208839 -0.894671)} Corner 9966 35234 {normal=(0.528896 0.169747 -0.831538)} Corner 9966 35235 {normal=(0.528896 0.169747 -0.831538)} Corner 9983 35235 {normal=(0.5316 0.168604 -0.830045)} Corner 9983 35236 {normal=(0.5316 0.168604 -0.830045)} Corner 9920 35236 {normal=(0.402034 0.207274 -0.891855)} Corner 10026 35237 {normal=(0.599965 0.152345 -0.785387)} Corner 10046 35237 {normal=(0.596843 0.152082 -0.787813)} Corner 10046 35238 {normal=(0.596843 0.152082 -0.787813)} Corner 9983 35238 {normal=(0.5316 0.168604 -0.830045)} Corner 9983 35239 {normal=(0.5316 0.168604 -0.830045)} Corner 9966 35239 {normal=(0.528896 0.169747 -0.831538)} Corner 9966 35240 {normal=(0.528896 0.169747 -0.831538)} Corner 10026 35240 {normal=(0.599965 0.152345 -0.785387)} Corner 10046 35241 {normal=(0.596843 0.152082 -0.787813)} Corner 10026 35241 {normal=(0.599965 0.152345 -0.785387)} Corner 10026 35242 {normal=(0.599965 0.152345 -0.785387)} Corner 10077 35242 {normal=(0.672048 0.308505 -0.673184)} Corner 10077 35243 {normal=(0.672048 0.308505 -0.673184)} Corner 10092 35243 {normal=(0.662295 0.272336 -0.697996)} Corner 10092 35244 {normal=(0.662295 0.272336 -0.697996)} Corner 10046 35244 {normal=(0.596843 0.152082 -0.787813)} Corner 9123 35245 {normal=(-0.911293 0.406119 0.067915)} Corner 9081 35245 {normal=(-0.922283 0.382495 0.0555951)} Corner 9081 35246 {normal=(-0.922283 0.382495 0.0555951)} Corner 9369 35246 {normal=(-0.727626 0.654215 0.206308)} Corner 9369 35247 {normal=(-0.727626 0.654215 0.206308)} Corner 9377 35247 {normal=(-0.722386 0.659075 0.209235)} Corner 9377 35248 {normal=(-0.722386 0.659075 0.209235)} Corner 9123 35248 {normal=(-0.911293 0.406119 0.067915)} Corner 10092 35249 {normal=(0.662295 0.272336 -0.697996)} Corner 10077 35249 {normal=(0.672048 0.308505 -0.673184)} Corner 10077 35250 {normal=(0.672048 0.308505 -0.673184)} Corner 10059 35250 {normal=(0.663897 0.64944 -0.370767)} Corner 10059 35251 {normal=(0.663897 0.64944 -0.370767)} Corner 10086 35251 {normal=(0.667709 0.636994 -0.385233)} Corner 10086 35252 {normal=(0.667709 0.636994 -0.385233)} Corner 10092 35252 {normal=(0.662295 0.272336 -0.697996)} Corner 10086 35253 {normal=(0.667709 0.636994 -0.385233)} Corner 10059 35253 {normal=(0.663897 0.64944 -0.370767)} Corner 10059 35254 {normal=(0.663897 0.64944 -0.370767)} Corner 9998 35254 {normal=(0.483742 0.874713 0.0295044)} Corner 9998 35255 {normal=(0.483742 0.874713 0.0295044)} Corner 10016 35255 {normal=(0.494609 0.869037 0.0116847)} Corner 10016 35256 {normal=(0.494609 0.869037 0.0116847)} Corner 10086 35256 {normal=(0.667709 0.636994 -0.385233)} Corner 10016 35257 {normal=(0.494609 0.869037 0.0116847)} Corner 9998 35257 {normal=(0.483742 0.874713 0.0295044)} Corner 9998 35258 {normal=(0.483742 0.874713 0.0295044)} Corner 9890 35258 {normal=(0.281704 0.92731 0.246454)} Corner 9890 35259 {normal=(0.281704 0.92731 0.246454)} Corner 9909 35259 {normal=(0.280045 0.927531 0.24751)} Corner 9909 35260 {normal=(0.280045 0.927531 0.24751)} Corner 10016 35260 {normal=(0.494609 0.869037 0.0116847)} Corner 9909 35261 {normal=(0.280045 0.927531 0.24751)} Corner 9890 35261 {normal=(0.281704 0.92731 0.246454)} Corner 9890 35262 {normal=(0.281704 0.92731 0.246454)} Corner 9614 35262 {normal=(0.0266258 0.930646 0.364952)} Corner 9614 35263 {normal=(0.0266258 0.930646 0.364952)} Corner 9628 35263 {normal=(0.0155093 0.929461 0.368595)} Corner 9628 35264 {normal=(0.0155093 0.929461 0.368595)} Corner 9909 35264 {normal=(0.280045 0.927531 0.24751)} Corner 9628 35265 {normal=(0.0155093 0.929461 0.368595)} Corner 9614 35265 {normal=(0.0266258 0.930646 0.364952)} Corner 9614 35266 {normal=(0.0266258 0.930646 0.364952)} Corner 9448 35266 {normal=(-0.325587 0.871535 0.366634)} Corner 9448 35267 {normal=(-0.325587 0.871535 0.366634)} Corner 9443 35267 {normal=(-0.374082 0.857828 0.352412)} Corner 9443 35268 {normal=(-0.374082 0.857828 0.352412)} Corner 9628 35268 {normal=(0.0155093 0.929461 0.368595)} Corner 9443 35269 {normal=(-0.374082 0.857828 0.352412)} Corner 9448 35269 {normal=(-0.325587 0.871535 0.366634)} Corner 9448 35270 {normal=(-0.325587 0.871535 0.366634)} Corner 9377 35270 {normal=(-0.722386 0.659075 0.209235)} Corner 9377 35271 {normal=(-0.722386 0.659075 0.209235)} Corner 9369 35271 {normal=(-0.727626 0.654215 0.206308)} Corner 9369 35272 {normal=(-0.727626 0.654215 0.206308)} Corner 9443 35272 {normal=(-0.374082 0.857828 0.352412)} Corner 7777 35273 {normal=(-0.33244 0.593955 -0.732599)} Corner 9888 35273 {normal=(-0.333788 0.584037 -0.739923)} Corner 9888 35274 {normal=(-0.333788 0.584037 -0.739923)} Corner 9734 35274 {normal=(-0.284235 0.762055 -0.581793)} Corner 9734 35275 {normal=(-0.284235 0.762055 -0.581793)} Corner 7735 35275 {normal=(-0.269088 0.793095 -0.546436)} Corner 7735 35276 {normal=(-0.269088 0.793095 -0.546436)} Corner 7777 35276 {normal=(-0.33244 0.593955 -0.732599)} Corner 9433 35277 {normal=(-0.15196 0.948794 -0.276945)} Corner 8025 35277 {normal=(-0.154136 0.947292 -0.280856)} Corner 8025 35278 {normal=(-0.154136 0.947292 -0.280856)} Corner 7740 35278 {normal=(-0.170921 0.932101 -0.319333)} Corner 7740 35279 {normal=(-0.170921 0.932101 -0.319333)} Corner 9545 35279 {normal=(-0.171136 0.931826 -0.320019)} Corner 9545 35280 {normal=(-0.171136 0.931826 -0.320019)} Corner 9433 35280 {normal=(-0.15196 0.948794 -0.276945)} Corner 10026 35281 {normal=(-0.363851 0.383067 -0.849042)} Corner 9966 35281 {normal=(-0.347191 0.475307 -0.808419)} Corner 9966 35282 {normal=(-0.347191 0.475307 -0.808419)} Corner 7978 35282 {normal=(-0.347301 0.474405 -0.808902)} Corner 7978 35283 {normal=(-0.347301 0.474405 -0.808902)} Corner 8447 35283 {normal=(-0.364256 0.381333 -0.849649)} Corner 8447 35284 {normal=(-0.364256 0.381333 -0.849649)} Corner 10026 35284 {normal=(-0.363851 0.383067 -0.849042)} Corner 9377 35285 {normal=(-0.312981 0.618961 -0.720368)} Corner 10059 35285 {normal=(-0.336806 0.574854 -0.745724)} Corner 10059 35286 {normal=(-0.336806 0.574854 -0.745724)} Corner 10077 35286 {normal=(-0.364443 0.398374 -0.841712)} Corner 10077 35287 {normal=(-0.364443 0.398374 -0.841712)} Corner 9123 35287 {normal=(-0.365021 0.395132 -0.842989)} Corner 9123 35288 {normal=(-0.365021 0.395132 -0.842989)} Corner 9377 35288 {normal=(-0.312981 0.618961 -0.720368)} Corner 9369 35289 {normal=(-0.479476 -0.00956727 0.877503)} Corner 9081 35289 {normal=(-0.484084 -0.0675311 0.872412)} Corner 9081 35290 {normal=(-0.484084 -0.0675311 0.872412)} Corner 9369 35292 {normal=(-0.479476 -0.00956727 0.877503)} Corner 7578 35293 {normal=(-0.953763 -0.28431 -0.097486)} Corner 7859 35293 {normal=(-0.807724 -0.275124 -0.521429)} Corner 7859 35294 {normal=(-0.807724 -0.275124 -0.521429)} Corner 7578 35296 {normal=(-0.953763 -0.28431 -0.097486)} Corner 8438 35297 {normal=(-0.404405 -0.107442 0.908247)} Corner 7937 35297 {normal=(-0.53473 -0.167196 0.828317)} Corner 7937 35298 {normal=(-0.53473 -0.167196 0.828317)} Corner 8438 35300 {normal=(-0.404405 -0.107442 0.908247)} Corner 7682 35301 {normal=(-0.749827 -0.235131 0.618444)} Corner 7587 35301 {normal=(-0.906052 -0.272825 0.323476)} Corner 7587 35302 {normal=(-0.906052 -0.272825 0.323476)} Corner 7682 35304 {normal=(-0.749827 -0.235131 0.618444)} Corner 8679 35305 {normal=(-0.601005 -0.258953 -0.756132)} Corner 9317 35305 {normal=(-0.349707 -0.294132 -0.88949)} Corner 9317 35306 {normal=(-0.349707 -0.294132 -0.88949)} Corner 8679 35308 {normal=(-0.601005 -0.258953 -0.756132)} Corner 9435 35309 {normal=(0.0667031 -0.396266 -0.915709)} Corner 9554 35309 {normal=(0.317116 -0.453664 -0.832842)} Corner 9554 35310 {normal=(0.317116 -0.453664 -0.832842)} Corner 9435 35312 {normal=(0.0667031 -0.396266 -0.915709)} Corner 9772 35313 {normal=(0.606139 -0.509583 -0.610673)} Corner 9920 35313 {normal=(0.858416 -0.477637 -0.187043)} Corner 9920 35314 {normal=(0.858416 -0.477637 -0.187043)} Corner 9772 35316 {normal=(0.606139 -0.509583 -0.610673)} Corner 9983 35317 {normal=(0.922785 -0.368975 0.111022)} Corner 10046 35317 {normal=(0.918871 -0.261819 0.295174)} Corner 10046 35318 {normal=(0.918871 -0.261819 0.295174)} Corner 9983 35320 {normal=(0.922785 -0.368975 0.111022)} Corner 9628 35321 {normal=(0.300776 0.184304 0.935717)} Corner 9443 35321 {normal=(-0.173762 0.105257 0.979146)} Corner 9443 35322 {normal=(-0.173762 0.105257 0.979146)} Corner 9628 35324 {normal=(0.300776 0.184304 0.935717)} Corner 10016 35325 {normal=(0.789611 0.0310325 0.612823)} Corner 9909 35325 {normal=(0.588936 0.150739 0.793997)} Corner 9909 35326 {normal=(0.588936 0.150739 0.793997)} Corner 10016 35328 {normal=(0.789611 0.0310325 0.612823)} Corner 10092 35329 {normal=(0.913702 -0.184325 0.362179)} Corner 10086 35329 {normal=(0.890258 -0.0946565 0.445512)} Corner 10086 35330 {normal=(0.890258 -0.0946565 0.445512)} Corner 10092 35332 {normal=(0.913702 -0.184325 0.362179)} Corner 7859 35333 {normal=(-0.807724 -0.275124 -0.521429)} Corner 7859 35334 {normal=(-0.807724 -0.275124 -0.521429)} Corner 8679 35334 {normal=(-0.601005 -0.258953 -0.756132)} Corner 8679 35335 {normal=(-0.601005 -0.258953 -0.756132)} Corner 7587 35337 {normal=(-0.906052 -0.272825 0.323476)} Corner 7587 35338 {normal=(-0.906052 -0.272825 0.323476)} Corner 7578 35338 {normal=(-0.953763 -0.28431 -0.097486)} Corner 7578 35339 {normal=(-0.953763 -0.28431 -0.097486)} Corner 7937 35341 {normal=(-0.53473 -0.167196 0.828317)} Corner 7937 35342 {normal=(-0.53473 -0.167196 0.828317)} Corner 7682 35342 {normal=(-0.749827 -0.235131 0.618444)} Corner 7682 35343 {normal=(-0.749827 -0.235131 0.618444)} Corner 9081 35345 {normal=(-0.484084 -0.0675311 0.872412)} Corner 9081 35346 {normal=(-0.484084 -0.0675311 0.872412)} Corner 8438 35346 {normal=(-0.404405 -0.107442 0.908247)} Corner 8438 35347 {normal=(-0.404405 -0.107442 0.908247)} Corner 9443 35349 {normal=(-0.173762 0.105257 0.979146)} Corner 9443 35350 {normal=(-0.173762 0.105257 0.979146)} Corner 9369 35350 {normal=(-0.479476 -0.00956727 0.877503)} Corner 9369 35351 {normal=(-0.479476 -0.00956727 0.877503)} Corner 9909 35353 {normal=(0.588936 0.150739 0.793997)} Corner 9909 35354 {normal=(0.588936 0.150739 0.793997)} Corner 9628 35354 {normal=(0.300776 0.184304 0.935717)} Corner 9628 35355 {normal=(0.300776 0.184304 0.935717)} Corner 10086 35357 {normal=(0.890258 -0.0946565 0.445512)} Corner 10086 35358 {normal=(0.890258 -0.0946565 0.445512)} Corner 10016 35358 {normal=(0.789611 0.0310325 0.612823)} Corner 10016 35359 {normal=(0.789611 0.0310325 0.612823)} Corner 10046 35361 {normal=(0.918871 -0.261819 0.295174)} Corner 10046 35362 {normal=(0.918871 -0.261819 0.295174)} Corner 10092 35362 {normal=(0.913702 -0.184325 0.362179)} Corner 10092 35363 {normal=(0.913702 -0.184325 0.362179)} Corner 9920 35365 {normal=(0.858416 -0.477637 -0.187043)} Corner 9920 35366 {normal=(0.858416 -0.477637 -0.187043)} Corner 9983 35366 {normal=(0.922785 -0.368975 0.111022)} Corner 9983 35367 {normal=(0.922785 -0.368975 0.111022)} Corner 9554 35369 {normal=(0.317116 -0.453664 -0.832842)} Corner 9554 35370 {normal=(0.317116 -0.453664 -0.832842)} Corner 9772 35370 {normal=(0.606139 -0.509583 -0.610673)} Corner 9772 35371 {normal=(0.606139 -0.509583 -0.610673)} Corner 9317 35373 {normal=(-0.349707 -0.294132 -0.88949)} Corner 9317 35374 {normal=(-0.349707 -0.294132 -0.88949)} Corner 9435 35374 {normal=(0.0667031 -0.396266 -0.915709)} Corner 9435 35375 {normal=(0.0667031 -0.396266 -0.915709)} Corner 9890 35377 {normal=(-0.344898 0.712221 -0.611381)} Corner 9998 35377 {normal=(-0.344898 0.712221 -0.611381)} Corner 9998 35378 {normal=(-0.344898 0.712221 -0.611381)} Corner 10059 35378 {normal=(-0.336806 0.574854 -0.745724)} Corner 10059 35379 {normal=(-0.336806 0.574854 -0.745724)} Corner 9614 35379 {normal=(-0.229795 0.832754 -0.503702)} Corner 9614 35380 {normal=(-0.229795 0.832754 -0.503702)} Corner 9890 35380 {normal=(-0.344898 0.712221 -0.611381)} Corner 9966 35381 {normal=(-0.347191 0.475307 -0.808419)} Corner 9888 35381 {normal=(-0.333788 0.584037 -0.739923)} Corner 9888 35382 {normal=(-0.333788 0.584037 -0.739923)} Corner 7777 35382 {normal=(-0.33244 0.593955 -0.732599)} Corner 7777 35383 {normal=(-0.33244 0.593955 -0.732599)} Corner 7978 35383 {normal=(-0.347301 0.474405 -0.808902)} Corner 7978 35384 {normal=(-0.347301 0.474405 -0.808902)} Corner 9966 35384 {normal=(-0.347191 0.475307 -0.808419)} Corner 8447 35385 {normal=(-0.364256 0.381333 -0.849649)} Corner 9123 35385 {normal=(-0.365021 0.395132 -0.842989)} Corner 9123 35386 {normal=(-0.365021 0.395132 -0.842989)} Corner 10077 35386 {normal=(-0.364443 0.398374 -0.841712)} Corner 10077 35387 {normal=(-0.364443 0.398374 -0.841712)} Corner 10026 35387 {normal=(-0.363851 0.383067 -0.849042)} Corner 10026 35388 {normal=(-0.363851 0.383067 -0.849042)} Corner 8447 35388 {normal=(-0.364256 0.381333 -0.849649)} Corner 9433 35389 {normal=(-0.15196 0.948794 -0.276945)} Corner 9340 35389 {normal=(-0.0401663 0.996302 -0.0759505)} Corner 9340 35390 {normal=(-0.0401663 0.996302 -0.0759505)} Corner 8912 35390 {normal=(-0.0401663 0.996302 -0.0759505)} Corner 8912 35391 {normal=(-0.0401663 0.996302 -0.0759505)} Corner 8025 35391 {normal=(-0.154136 0.947292 -0.280856)} Corner 8025 35392 {normal=(-0.154136 0.947292 -0.280856)} Corner 9433 35392 {normal=(-0.15196 0.948794 -0.276945)} Corner 9774 35525 {normal=(0.682331 -0.660315 -0.313701)} Corner 9802 35525 {normal=(0.682331 -0.660315 -0.313701)} Corner 9802 35526 {normal=(0.682331 -0.660315 -0.313701)} Corner 9901 35526 {normal=(0.682575 -0.658483 -0.317004)} Corner 9901 35527 {normal=(0.682575 -0.658483 -0.317004)} Corner 9872 35527 {normal=(0.682676 -0.657704 -0.318402)} Corner 9872 35528 {normal=(0.682676 -0.657704 -0.318402)} Corner 9774 35528 {normal=(0.682331 -0.660315 -0.313701)} Corner 10039 35529 {normal=(0.543066 -0.651112 0.530219)} Corner 10062 35529 {normal=(0.539816 -0.651237 0.533374)} Corner 10062 35530 {normal=(0.539816 -0.651237 0.533374)} Corner 9938 35530 {normal=(0.0729118 -0.686081 0.723862)} Corner 9938 35531 {normal=(0.0729118 -0.686081 0.723862)} Corner 9933 35531 {normal=(0.0549035 -0.685648 0.72586)} Corner 9933 35532 {normal=(0.0549035 -0.685648 0.72586)} Corner 10039 35532 {normal=(0.543066 -0.651112 0.530219)} Corner 10165 35533 {normal=(0.717408 -0.674257 0.175226)} Corner 10135 35533 {normal=(0.711748 -0.672345 0.203391)} Corner 10135 35534 {normal=(0.711748 -0.672345 0.203391)} Corner 10119 35534 {normal=(0.711842 -0.692856 -0.115033)} Corner 10119 35535 {normal=(0.711842 -0.692856 -0.115033)} Corner 10152 35535 {normal=(0.694845 -0.702865 -0.15222)} Corner 10152 35536 {normal=(0.694845 -0.702865 -0.15222)} Corner 10165 35536 {normal=(0.717408 -0.674257 0.175226)} Corner 10062 35537 {normal=(0.539816 -0.651237 0.533374)} Corner 10039 35537 {normal=(0.543066 -0.651112 0.530219)} Corner 10039 35538 {normal=(0.543066 -0.651112 0.530219)} Corner 10135 35538 {normal=(0.711748 -0.672345 0.203391)} Corner 10135 35539 {normal=(0.711748 -0.672345 0.203391)} Corner 10165 35539 {normal=(0.717408 -0.674257 0.175226)} Corner 10165 35540 {normal=(0.717408 -0.674257 0.175226)} Corner 10062 35540 {normal=(0.539816 -0.651237 0.533374)} Corner 9760 35541 {normal=(-0.376195 -0.631453 0.678045)} Corner 9782 35541 {normal=(-0.377755 -0.631462 0.677168)} Corner 9782 35542 {normal=(-0.377755 -0.631462 0.677168)} Corner 9933 35542 {normal=(0.0549035 -0.685648 0.72586)} Corner 9933 35543 {normal=(0.0549035 -0.685648 0.72586)} Corner 9938 35543 {normal=(0.0729118 -0.686081 0.723862)} Corner 9938 35544 {normal=(0.0729118 -0.686081 0.723862)} Corner 9760 35544 {normal=(-0.376195 -0.631453 0.678045)} Corner 9588 35545 {normal=(-0.578183 -0.654095 0.487713)} Corner 9636 35545 {normal=(-0.564899 -0.652736 0.504802)} Corner 9636 35546 {normal=(-0.564899 -0.652736 0.504802)} Corner 9782 35546 {normal=(-0.377755 -0.631462 0.677168)} Corner 9782 35547 {normal=(-0.377755 -0.631462 0.677168)} Corner 9760 35547 {normal=(-0.376195 -0.631453 0.678045)} Corner 9760 35548 {normal=(-0.376195 -0.631453 0.678045)} Corner 9588 35548 {normal=(-0.578183 -0.654095 0.487713)} Corner 9513 35549 {normal=(-0.697162 -0.664394 0.269341)} Corner 9549 35549 {normal=(-0.692444 -0.66216 0.28647)} Corner 9549 35550 {normal=(-0.692444 -0.66216 0.28647)} Corner 9636 35550 {normal=(-0.564899 -0.652736 0.504802)} Corner 9636 35551 {normal=(-0.564899 -0.652736 0.504802)} Corner 9588 35551 {normal=(-0.578183 -0.654095 0.487713)} Corner 9588 35552 {normal=(-0.578183 -0.654095 0.487713)} Corner 9513 35552 {normal=(-0.697162 -0.664394 0.269341)} Corner 9467 35553 {normal=(-0.820117 -0.56367 0.0984053)} Corner 9499 35553 {normal=(-0.809614 -0.570114 0.139624)} Corner 9499 35554 {normal=(-0.809614 -0.570114 0.139624)} Corner 9482 35554 {normal=(-0.841879 -0.531496 -0.0935505)} Corner 9482 35555 {normal=(-0.841879 -0.531496 -0.0935505)} Corner 9450 35555 {normal=(-0.835312 -0.536796 -0.118759)} Corner 9450 35556 {normal=(-0.835312 -0.536796 -0.118759)} Corner 9467 35556 {normal=(-0.820117 -0.56367 0.0984053)} Corner 9424 35557 {normal=(-0.697195 -0.588635 0.40918)} Corner 9444 35557 {normal=(-0.710311 -0.588634 0.385963)} Corner 9444 35558 {normal=(-0.710311 -0.588634 0.385963)} Corner 9499 35558 {normal=(-0.809614 -0.570114 0.139624)} Corner 9499 35559 {normal=(-0.809614 -0.570114 0.139624)} Corner 9467 35559 {normal=(-0.820117 -0.56367 0.0984053)} Corner 9467 35560 {normal=(-0.820117 -0.56367 0.0984053)} Corner 9424 35560 {normal=(-0.697195 -0.588635 0.40918)} Corner 9091 35561 {normal=(-0.646212 -0.585203 0.489845)} Corner 9313 35561 {normal=(-0.646212 -0.585202 0.489845)} Corner 9313 35562 {normal=(-0.646212 -0.585202 0.489845)} Corner 9444 35562 {normal=(-0.710311 -0.588634 0.385963)} Corner 9444 35563 {normal=(-0.710311 -0.588634 0.385963)} Corner 9424 35563 {normal=(-0.697195 -0.588635 0.40918)} Corner 9424 35564 {normal=(-0.697195 -0.588635 0.40918)} Corner 9091 35564 {normal=(-0.646212 -0.585203 0.489845)} Corner 9426 35565 {normal=(-0.391826 -0.256204 -0.883647)} Corner 9423 35565 {normal=(-0.345151 -0.49242 -0.798995)} Corner 9423 35566 {normal=(-0.345151 -0.49242 -0.798995)} Corner 9168 35566 {normal=(-0.345151 -0.49242 -0.798995)} Corner 9168 35567 {normal=(-0.345151 -0.49242 -0.798995)} Corner 8985 35567 {normal=(-0.394184 -0.238698 -0.887492)} Corner 8985 35568 {normal=(-0.394184 -0.238698 -0.887492)} Corner 9426 35568 {normal=(-0.391826 -0.256204 -0.883647)} Corner 9543 35569 {normal=(0.525083 -0.584251 -0.618821)} Corner 9523 35569 {normal=(0.505807 -0.581187 -0.63748)} Corner 9523 35570 {normal=(0.505807 -0.581187 -0.63748)} Corner 9423 35570 {normal=(0.347612 -0.544055 -0.763656)} Corner 9423 35571 {normal=(0.347612 -0.544055 -0.763656)} Corner 9426 35571 {normal=(0.347612 -0.544055 -0.763656)} Corner 9426 35572 {normal=(0.347612 -0.544055 -0.763656)} Corner 9543 35572 {normal=(0.525083 -0.584251 -0.618821)} Corner 9692 35573 {normal=(0.656816 -0.593546 -0.465076)} Corner 9653 35573 {normal=(0.656816 -0.593546 -0.465076)} Corner 9653 35574 {normal=(0.656816 -0.593546 -0.465076)} Corner 9523 35574 {normal=(0.505807 -0.581187 -0.63748)} Corner 9523 35575 {normal=(0.505807 -0.581187 -0.63748)} Corner 9543 35575 {normal=(0.525083 -0.584251 -0.618821)} Corner 9543 35576 {normal=(0.525083 -0.584251 -0.618821)} Corner 9692 35576 {normal=(0.656816 -0.593546 -0.465076)} Corner 9943 35577 {normal=(0.682797 -0.656758 -0.32009)} Corner 9922 35577 {normal=(0.682787 -0.65684 -0.319942)} Corner 9922 35578 {normal=(0.682787 -0.65684 -0.319942)} Corner 9872 35578 {normal=(0.682676 -0.657704 -0.318402)} Corner 9872 35579 {normal=(0.682676 -0.657704 -0.318402)} Corner 9901 35579 {normal=(0.682575 -0.658483 -0.317004)} Corner 9901 35580 {normal=(0.682575 -0.658483 -0.317004)} Corner 9943 35580 {normal=(0.682797 -0.656758 -0.32009)} Corner 10031 35581 {normal=(0.684741 -0.66431 -0.299702)} Corner 9996 35581 {normal=(0.684092 -0.662179 -0.305838)} Corner 9996 35582 {normal=(0.684092 -0.662179 -0.305838)} Corner 9922 35582 {normal=(0.682787 -0.65684 -0.319942)} Corner 9922 35583 {normal=(0.682787 -0.65684 -0.319942)} Corner 9943 35583 {normal=(0.682797 -0.656758 -0.32009)} Corner 9943 35584 {normal=(0.682797 -0.656758 -0.32009)} Corner 10031 35584 {normal=(0.684741 -0.66431 -0.299702)} Corner 10152 35585 {normal=(0.694845 -0.702865 -0.15222)} Corner 10119 35585 {normal=(0.711842 -0.692856 -0.115033)} Corner 10119 35586 {normal=(0.711842 -0.692856 -0.115033)} Corner 10088 35586 {normal=(0.660158 -0.718095 -0.2203)} Corner 10088 35587 {normal=(0.660158 -0.718095 -0.2203)} Corner 10111 35587 {normal=(0.660158 -0.718095 -0.2203)} Corner 10111 35588 {normal=(0.660158 -0.718095 -0.2203)} Corner 10152 35588 {normal=(0.694845 -0.702865 -0.15222)} Corner 10080 35589 {normal=(0.685971 -0.668554 -0.287194)} Corner 10040 35589 {normal=(0.685971 -0.668554 -0.287194)} Corner 10040 35590 {normal=(0.685971 -0.668554 -0.287194)} Corner 9996 35590 {normal=(0.684092 -0.662179 -0.305838)} Corner 9996 35591 {normal=(0.684092 -0.662179 -0.305838)} Corner 10031 35591 {normal=(0.684741 -0.66431 -0.299702)} Corner 10031 35592 {normal=(0.684741 -0.66431 -0.299702)} Corner 10080 35592 {normal=(0.685971 -0.668554 -0.287194)} Corner 9450 35593 {normal=(-0.835312 -0.536796 -0.118759)} Corner 9482 35593 {normal=(-0.841879 -0.531496 -0.0935505)} Corner 9482 35594 {normal=(-0.841879 -0.531496 -0.0935505)} Corner 9460 35594 {normal=(-0.829087 -0.54112 -0.140729)} Corner 9460 35595 {normal=(-0.829087 -0.54112 -0.140729)} Corner 9431 35595 {normal=(-0.829087 -0.54112 -0.140729)} Corner 9431 35596 {normal=(-0.829087 -0.54112 -0.140729)} Corner 9450 35596 {normal=(-0.835312 -0.536796 -0.118759)} Corner 9477 35597 {normal=(-0.71055 -0.670034 0.214878)} Corner 9511 35597 {normal=(-0.71055 -0.670034 0.214878)} Corner 9511 35598 {normal=(-0.71055 -0.670034 0.214878)} Corner 9549 35598 {normal=(-0.692444 -0.66216 0.28647)} Corner 9549 35599 {normal=(-0.692444 -0.66216 0.28647)} Corner 9513 35599 {normal=(-0.697162 -0.664394 0.269341)} Corner 9513 35600 {normal=(-0.697162 -0.664394 0.269341)} Corner 9477 35600 {normal=(-0.71055 -0.670034 0.214878)} Corner 8985 35601 {normal=(-0.859299 -0.304695 -0.410811)} Corner 9168 35601 {normal=(-0.759173 -0.532975 -0.373624)} Corner 9168 35602 {normal=(-0.759173 -0.532975 -0.373624)} Corner 8583 35602 {normal=(-0.793658 -0.586936 -0.16004)} Corner 8583 35603 {normal=(-0.793658 -0.586936 -0.16004)} Corner 8400 35603 {normal=(-0.877079 -0.417053 -0.238325)} Corner 8400 35604 {normal=(-0.877079 -0.417053 -0.238325)} Corner 8985 35604 {normal=(-0.859299 -0.304695 -0.410811)} Corner 8400 35605 {normal=(-0.877079 -0.417053 -0.238325)} Corner 8583 35605 {normal=(-0.793658 -0.586936 -0.16004)} Corner 8583 35606 {normal=(-0.793658 -0.586936 -0.16004)} Corner 8832 35606 {normal=(-0.78331 -0.612992 0.103274)} Corner 8832 35607 {normal=(-0.78331 -0.612992 0.103274)} Corner 8553 35607 {normal=(-0.78331 -0.612992 0.103274)} Corner 8553 35608 {normal=(-0.78331 -0.612992 0.103274)} Corner 8400 35608 {normal=(-0.877079 -0.417053 -0.238325)} Corner 9283 35610 {normal=(-0.699432 -0.0256923 -0.714237)} Corner 9283 35611 {normal=(-0.699432 -0.0256923 -0.714237)} Corner 8528 35611 {normal=(-0.984445 -0.0348826 -0.172193)} Corner 8528 35612 {normal=(-0.984445 -0.0348826 -0.172193)} Corner 8428 35613 {normal=(-0.851956 0.284125 -0.439822)} Corner 9131 35613 {normal=(-0.851956 0.284125 -0.439822)} Corner 9131 35614 {normal=(-0.851956 0.284125 -0.439822)} Corner 8810 35614 {normal=(-0.874604 0.149574 -0.461189)} Corner 8810 35615 {normal=(-0.874604 0.149574 -0.461189)} Corner 8250 35615 {normal=(-0.873324 0.161158 -0.45971)} Corner 8250 35616 {normal=(-0.873324 0.161158 -0.45971)} Corner 8428 35616 {normal=(-0.851956 0.284125 -0.439822)} Corner 8250 35617 {normal=(-0.873324 0.161158 -0.45971)} Corner 8810 35617 {normal=(-0.874604 0.149574 -0.461189)} Corner 8810 35618 {normal=(-0.874604 0.149574 -0.461189)} Corner 8740 35618 {normal=(-0.889035 -0.0351261 -0.456491)} Corner 8740 35619 {normal=(-0.889035 -0.0351261 -0.456491)} Corner 8213 35619 {normal=(-0.888873 -0.0338089 -0.456904)} Corner 8213 35620 {normal=(-0.888873 -0.0338089 -0.456904)} Corner 8250 35620 {normal=(-0.873324 0.161158 -0.45971)} Corner 8213 35621 {normal=(-0.888873 -0.0338089 -0.456904)} Corner 8740 35621 {normal=(-0.889035 -0.0351261 -0.456491)} Corner 8740 35622 {normal=(-0.889035 -0.0351261 -0.456491)} Corner 8891 35622 {normal=(-0.899836 -0.0744599 -0.429826)} Corner 8891 35623 {normal=(-0.899836 -0.0744599 -0.429826)} Corner 8365 35623 {normal=(-0.899297 -0.0759705 -0.43069)} Corner 8365 35624 {normal=(-0.899297 -0.0759705 -0.43069)} Corner 8213 35624 {normal=(-0.888873 -0.0338089 -0.456904)} Corner 8365 35625 {normal=(-0.899297 -0.0759705 -0.43069)} Corner 8891 35625 {normal=(-0.899836 -0.0744599 -0.429826)} Corner 8891 35626 {normal=(-0.899836 -0.0744599 -0.429826)} Corner 8985 35626 {normal=(-0.859299 -0.304695 -0.410811)} Corner 8985 35627 {normal=(-0.859299 -0.304695 -0.410811)} Corner 8400 35627 {normal=(-0.877079 -0.417053 -0.238325)} Corner 8400 35628 {normal=(-0.877079 -0.417053 -0.238325)} Corner 8365 35628 {normal=(-0.899297 -0.0759705 -0.43069)} Corner 9423 35629 {normal=(-0.000100056 -1 0.000102336)} Corner 9523 35629 {normal=(-0.000100056 -1 0.000102336)} Corner 9523 35630 {normal=(-0.000100056 -1 0.000102336)} Corner 9653 35630 {normal=(0.00198237 -0.999998 0.000241191)} Corner 9653 35631 {normal=(0.00198237 -0.999998 0.000241191)} Corner 9168 35631 {normal=(0.00254064 -0.999997 0.000278416)} Corner 9168 35632 {normal=(0.00254064 -0.999997 0.000278416)} Corner 9423 35632 {normal=(-0.000100056 -1 0.000102336)} Corner 9895 35634 {normal=(0.981384 0.0790208 -0.175045)} Corner 9895 35635 {normal=(0.981384 0.0790208 -0.175045)} Corner 9917 35635 {normal=(0.97515 0.161774 -0.151366)} Corner 9917 35636 {normal=(0.97515 0.161774 -0.151366)} Corner 9444 35637 {normal=(0 -1 0)} Corner 9313 35637 {normal=(0 -1 0)} Corner 9313 35638 {normal=(0 -1 0)} Corner 9774 35638 {normal=(0 -1 0)} Corner 9774 35639 {normal=(0 -1 0)} Corner 9872 35639 {normal=(0 -1 0)} Corner 9872 35640 {normal=(0 -1 0)} Corner 9444 35640 {normal=(0 -1 0)} Corner 9587 35642 {normal=(0.676221 0.00925558 -0.736641)} Corner 9587 35643 {normal=(0.676221 0.00925558 -0.736641)} Corner 9434 35643 {normal=(0.015093 0.0262475 -0.999542)} Corner 9434 35644 {normal=(0.015093 0.0262475 -0.999542)} Corner 9807 35646 {normal=(0.894825 0.0414587 -0.444489)} Corner 9807 35647 {normal=(0.894825 0.0414587 -0.444489)} Corner 9587 35647 {normal=(0.676221 0.00925558 -0.736641)} Corner 9587 35648 {normal=(0.676221 0.00925558 -0.736641)} Corner 9832 35650 {normal=(0.999258 0.0383656 -0.00342954)} Corner 9832 35651 {normal=(0.999258 0.0383656 -0.00342954)} Corner 9807 35651 {normal=(0.894825 0.0414587 -0.444489)} Corner 9807 35652 {normal=(0.894825 0.0414587 -0.444489)} Corner 9765 35654 {normal=(0.808667 0.0537206 0.585808)} Corner 9765 35655 {normal=(0.808667 0.0537206 0.585808)} Corner 9832 35655 {normal=(0.999258 0.0383656 -0.00342954)} Corner 9832 35656 {normal=(0.999258 0.0383656 -0.00342954)} Corner 9455 35658 {normal=(0.0988593 0.0704348 0.992606)} Corner 9455 35659 {normal=(0.0988593 0.0704348 0.992606)} Corner 9765 35659 {normal=(0.808667 0.0537206 0.585808)} Corner 9765 35660 {normal=(0.808667 0.0537206 0.585808)} Corner 9379 35662 {normal=(-0.575212 0.0718352 0.814844)} Corner 9379 35663 {normal=(-0.575212 0.0718352 0.814844)} Corner 9455 35663 {normal=(0.0988593 0.0704348 0.992606)} Corner 9455 35664 {normal=(0.0988593 0.0704348 0.992606)} Corner 9247 35666 {normal=(-0.885154 0.0438612 0.463226)} Corner 9247 35667 {normal=(-0.885154 0.0438612 0.463226)} Corner 9379 35667 {normal=(-0.575212 0.0718352 0.814844)} Corner 9379 35668 {normal=(-0.575212 0.0718352 0.814844)} Corner 9247 35671 {normal=(-0.885154 0.0438612 0.463226)} Corner 9247 35672 {normal=(-0.885154 0.0438612 0.463226)} Corner 8528 35674 {normal=(-0.984445 -0.0348826 -0.172193)} Corner 8528 35675 {normal=(-0.984445 -0.0348826 -0.172193)} Corner 9434 35678 {normal=(0.015093 0.0262475 -0.999542)} Corner 9434 35679 {normal=(0.015093 0.0262475 -0.999542)} Corner 9283 35679 {normal=(-0.699432 -0.0256923 -0.714237)} Corner 9283 35680 {normal=(-0.699432 -0.0256923 -0.714237)} Corner 9462 35681 {normal=(-0.00671065 0.738814 0.673876)} Corner 9397 35681 {normal=(-0.676587 0.362394 0.641015)} Corner 9397 35682 {normal=(-0.676587 0.362394 0.641015)} Corner 9462 35684 {normal=(-0.00671065 0.738814 0.673876)} Corner 9935 35685 {normal=(0.7226 0.660749 0.203126)} Corner 9935 35686 {normal=(0.7226 0.660749 0.203126)} Corner 9917 35686 {normal=(0.80128 0.571291 0.177699)} Corner 9917 35687 {normal=(0.80128 0.571291 0.177699)} Corner 9794 35694 {normal=(0.628226 0.6916 0.356401)} Corner 9794 35695 {normal=(0.628226 0.6916 0.356401)} Corner 9462 35695 {normal=(-0.00671065 0.738814 0.673876)} Corner 9462 35696 {normal=(-0.00671065 0.738814 0.673876)} Corner 9917 35701 {normal=(0.80128 0.571291 0.177699)} Corner 9917 35702 {normal=(0.80128 0.571291 0.177699)} Corner 9895 35702 {normal=(0.817032 0.547902 0.179619)} Corner 9895 35703 {normal=(0.817032 0.547902 0.179619)} Corner 9794 35703 {normal=(0.628226 0.6916 0.356401)} Corner 9794 35704 {normal=(0.628226 0.6916 0.356401)} Corner 9545 35705 {normal=(-0.171136 0.931826 -0.320019)} Corner 7740 35705 {normal=(-0.170921 0.932101 -0.319333)} Corner 7740 35706 {normal=(-0.170921 0.932101 -0.319333)} Corner 7735 35706 {normal=(-0.269088 0.793095 -0.546436)} Corner 7735 35707 {normal=(-0.269088 0.793095 -0.546436)} Corner 9734 35707 {normal=(-0.284235 0.762055 -0.581793)} Corner 9734 35708 {normal=(-0.284235 0.762055 -0.581793)} Corner 9545 35708 {normal=(-0.171136 0.931826 -0.320019)} Corner 9404 35709 {normal=(-0.4646 -0.0129022 -0.885427)} Corner 8740 35709 {normal=(-0.464621 -0.0128051 -0.885417)} Corner 8740 35710 {normal=(-0.464621 -0.0128051 -0.885417)} Corner 8810 35710 {normal=(-0.464387 0.123584 -0.876967)} Corner 8810 35711 {normal=(-0.464387 0.123584 -0.876967)} Corner 9407 35711 {normal=(-0.464483 0.122715 -0.877039)} Corner 9407 35712 {normal=(-0.464483 0.122715 -0.877039)} Corner 9404 35712 {normal=(-0.4646 -0.0129022 -0.885427)} Corner 9404 35713 {normal=(0.335782 -0.000673189 -0.941939)} Corner 9404 35714 {normal=(0.335782 -0.000673189 -0.941939)} Corner 9407 35714 {normal=(0.367289 0.0846275 -0.926249)} Corner 9407 35715 {normal=(0.367289 0.0846275 -0.926249)} Corner 9733 35717 {normal=(0.794137 -0.0362593 -0.606657)} Corner 9753 35719 {normal=(0.763308 0.0584479 -0.643386)} Corner 9753 35720 {normal=(0.763308 0.0584479 -0.643386)} Corner 9733 35720 {normal=(0.794137 -0.0362593 -0.606657)} Corner 9844 35721 {normal=(0.936353 -0.0738889 -0.343197)} Corner 9844 35722 {normal=(0.936353 -0.0738889 -0.343197)} Corner 9854 35722 {normal=(0.961132 0.0478924 -0.271905)} Corner 9854 35723 {normal=(0.961132 0.0478924 -0.271905)} Corner 9986 35731 {normal=(0.904266 0.380243 -0.19421)} Corner 9986 35732 {normal=(0.904266 0.380243 -0.19421)} Corner 9407 35733 {normal=(0.367289 0.0846275 -0.926249)} Corner 9407 35734 {normal=(0.367289 0.0846275 -0.926249)} Corner 9422 35734 {normal=(0.389073 0.0869761 -0.917092)} Corner 9422 35735 {normal=(0.389073 0.0869761 -0.917092)} Corner 9562 35735 {normal=(0.55313 0.00661678 -0.833069)} Corner 9562 35736 {normal=(0.55313 0.00661678 -0.833069)} Corner 9887 35737 {normal=(0.98103 0.0389605 -0.189902)} Corner 9895 35737 {normal=(0.981384 0.0790208 -0.175045)} Corner 9895 35738 {normal=(0.981384 0.0790208 -0.175045)} Corner 9857 35739 {normal=(0.976187 0.0424635 -0.212736)} Corner 9857 35740 {normal=(0.976187 0.0424635 -0.212736)} Corner 9887 35740 {normal=(0.98103 0.0389605 -0.189902)} Corner 9397 35741 {normal=(-0.676587 0.362394 0.641015)} Corner 9397 35742 {normal=(-0.676587 0.362394 0.641015)} Corner 9095 35745 {normal=(-0.801228 -0.114618 0.587278)} Corner 9091 35745 {normal=(-0.792612 -0.00310947 0.609719)} Corner 9091 35746 {normal=(-0.792612 -0.00310947 0.609719)} Corner 9424 35746 {normal=(-0.867625 -0.00141155 0.497218)} Corner 9424 35747 {normal=(-0.867625 -0.00141155 0.497218)} Corner 9095 35748 {normal=(-0.801228 -0.114618 0.587278)} Corner 8829 35749 {normal=(-0.838102 -0.131419 0.529447)} Corner 9095 35749 {normal=(-0.801228 -0.114618 0.587278)} Corner 9095 35750 {normal=(-0.801228 -0.114618 0.587278)} Corner 8829 35752 {normal=(-0.838102 -0.131419 0.529447)} Corner 8855 35753 {normal=(-0.876826 -0.0381892 0.479289)} Corner 8829 35753 {normal=(-0.838102 -0.131419 0.529447)} Corner 8829 35754 {normal=(-0.838102 -0.131419 0.529447)} Corner 8855 35756 {normal=(-0.876826 -0.0381892 0.479289)} Corner 9943 35757 {normal=(0.902864 -0.0238509 -0.429264)} Corner 9943 35758 {normal=(0.902864 -0.0238509 -0.429264)} Corner 9901 35758 {normal=(0.906208 -0.00843579 -0.422748)} Corner 9901 35759 {normal=(0.906208 -0.00843579 -0.422748)} Corner 9500 35766 {normal=(-0.838105 0.545221 -0.0177232)} Corner 9500 35767 {normal=(-0.838105 0.545221 -0.0177232)} Corner 9598 35767 {normal=(-0.305963 0.863737 0.400432)} Corner 9598 35768 {normal=(-0.305963 0.863737 0.400432)} Corner 9675 35770 {normal=(-0.137786 0.981671 0.131668)} Corner 9675 35771 {normal=(-0.137786 0.981671 0.131668)} Corner 9552 35771 {normal=(-0.55478 0.80482 0.21091)} Corner 9552 35772 {normal=(-0.55478 0.80482 0.21091)} Corner 9519 35773 {normal=(-0.703739 0.606014 0.370808)} Corner 9519 35774 {normal=(-0.703739 0.606014 0.370808)} Corner 9612 35774 {normal=(-0.457624 0.679881 0.573011)} Corner 9612 35775 {normal=(-0.457624 0.679881 0.573011)} Corner 9424 35777 {normal=(-0.867625 -0.00141155 0.497218)} Corner 9424 35778 {normal=(-0.867625 -0.00141155 0.497218)} Corner 9467 35778 {normal=(-0.986778 0.0233895 0.160383)} Corner 9467 35779 {normal=(-0.986778 0.0233895 0.160383)} Corner 9467 35789 {normal=(-0.986778 0.0233895 0.160383)} Corner 9467 35790 {normal=(-0.986778 0.0233895 0.160383)} Corner 9450 35790 {normal=(-0.988007 0.0455016 -0.147552)} Corner 9450 35791 {normal=(-0.988007 0.0455016 -0.147552)} Corner 9450 35801 {normal=(-0.988007 0.0455016 -0.147552)} Corner 9450 35802 {normal=(-0.988007 0.0455016 -0.147552)} Corner 9431 35802 {normal=(-0.973367 0.0443024 -0.22493)} Corner 9431 35803 {normal=(-0.973367 0.0443024 -0.22493)} Corner 9432 35803 {normal=(-0.97135 0.0407352 -0.234137)} Corner 9432 35804 {normal=(-0.97135 0.0407352 -0.234137)} Corner 9432 35806 {normal=(-0.97135 0.0407352 -0.234137)} Corner 9432 35807 {normal=(-0.97135 0.0407352 -0.234137)} Corner 9437 35807 {normal=(-0.955532 0.205096 -0.211883)} Corner 9437 35808 {normal=(-0.955532 0.205096 -0.211883)} Corner 9437 35810 {normal=(-0.955532 0.205096 -0.211883)} Corner 9437 35811 {normal=(-0.955532 0.205096 -0.211883)} Corner 9500 35811 {normal=(-0.838105 0.545221 -0.0177232)} Corner 9500 35812 {normal=(-0.838105 0.545221 -0.0177232)} Corner 9588 35813 {normal=(-0.758446 0.00350564 0.651727)} Corner 9588 35814 {normal=(-0.758446 0.00350564 0.651727)} Corner 9760 35814 {normal=(-0.481441 0.00752214 0.876446)} Corner 9760 35815 {normal=(-0.481441 0.00752214 0.876446)} Corner 9612 35817 {normal=(-0.732499 0.152835 0.66339)} Corner 9801 35819 {normal=(-0.451289 0.226074 0.863267)} Corner 9801 35820 {normal=(-0.451289 0.226074 0.863267)} Corner 9612 35820 {normal=(-0.732499 0.152835 0.66339)} Corner 10031 35821 {normal=(0.916749 -0.0337738 -0.398033)} Corner 10031 35822 {normal=(0.916749 -0.0337738 -0.398033)} Corner 9943 35822 {normal=(0.902864 -0.0238509 -0.429264)} Corner 9943 35823 {normal=(0.902864 -0.0238509 -0.429264)} Corner 9986 35829 {normal=(0.570519 0.758434 0.315096)} Corner 9986 35830 {normal=(0.570519 0.758434 0.315096)} Corner 9935 35830 {normal=(0.7226 0.660749 0.203126)} Corner 9935 35831 {normal=(0.7226 0.660749 0.203126)} Corner 10056 35833 {normal=(0.362895 0.828598 0.426301)} Corner 10056 35834 {normal=(0.362895 0.828598 0.426301)} Corner 10138 35834 {normal=(0.534997 0.764104 0.360448)} Corner 10138 35835 {normal=(0.534997 0.764104 0.360448)} Corner 10083 35835 {normal=(0.353763 0.912979 0.203277)} Corner 10083 35836 {normal=(0.353763 0.912979 0.203277)} Corner 10082 35837 {normal=(0.944424 0.0374386 -0.326592)} Corner 10080 35837 {normal=(0.930445 -0.0305283 -0.365158)} Corner 10080 35838 {normal=(0.930445 -0.0305283 -0.365158)} Corner 10031 35838 {normal=(0.916749 -0.0337738 -0.398033)} Corner 10031 35839 {normal=(0.916749 -0.0337738 -0.398033)} Corner 10082 35840 {normal=(0.944424 0.0374386 -0.326592)} Corner 10055 35841 {normal=(0.93721 0.276342 -0.212774)} Corner 10082 35841 {normal=(0.944424 0.0374386 -0.326592)} Corner 10082 35842 {normal=(0.944424 0.0374386 -0.326592)} Corner 10055 35844 {normal=(0.93721 0.276342 -0.212774)} Corner 9993 35845 {normal=(0.894103 0.425578 -0.139507)} Corner 10055 35845 {normal=(0.93721 0.276342 -0.212774)} Corner 10055 35846 {normal=(0.93721 0.276342 -0.212774)} Corner 9986 35847 {normal=(0.904266 0.380243 -0.19421)} Corner 9986 35848 {normal=(0.904266 0.380243 -0.19421)} Corner 9993 35848 {normal=(0.894103 0.425578 -0.139507)} Corner 9879 35849 {normal=(0.362097 0.793991 0.488328)} Corner 9993 35849 {normal=(0.504899 0.759721 0.409758)} Corner 9993 35850 {normal=(0.504899 0.759721 0.409758)} Corner 9986 35850 {normal=(0.570519 0.758434 0.315096)} Corner 9986 35851 {normal=(0.570519 0.758434 0.315096)} Corner 9879 35852 {normal=(0.362097 0.793991 0.488328)} Corner 10152 35853 {normal=(0.9819 0.0201398 -0.188328)} Corner 10152 35854 {normal=(0.9819 0.0201398 -0.188328)} Corner 10111 35854 {normal=(0.946831 0.0160895 -0.321329)} Corner 10111 35855 {normal=(0.946831 0.0160895 -0.321329)} Corner 10110 35855 {normal=(0.939878 0.0763658 -0.332864)} Corner 10110 35856 {normal=(0.939878 0.0763658 -0.332864)} Corner 10110 35858 {normal=(0.939878 0.0763658 -0.332864)} Corner 10110 35859 {normal=(0.939878 0.0763658 -0.332864)} Corner 10094 35859 {normal=(0.880889 0.340691 -0.32858)} Corner 10094 35860 {normal=(0.880889 0.340691 -0.32858)} Corner 10073 35861 {normal=(0.823333 0.545918 -0.15523)} Corner 10094 35862 {normal=(0.880889 0.340691 -0.32858)} Corner 10094 35863 {normal=(0.880889 0.340691 -0.32858)} Corner 10030 35863 {normal=(0.788446 0.539029 -0.29631)} Corner 10030 35864 {normal=(0.788446 0.539029 -0.29631)} Corner 10073 35864 {normal=(0.823333 0.545918 -0.15523)} Corner 10073 35865 {normal=(0.282432 0.959253 -0.0080704)} Corner 10073 35866 {normal=(0.282432 0.959253 -0.0080704)} Corner 10030 35866 {normal=(0.272574 0.961589 -0.0324126)} Corner 10030 35867 {normal=(0.272574 0.961589 -0.0324126)} Corner 9925 35867 {normal=(0.185918 0.982483 0.0126949)} Corner 9925 35868 {normal=(0.185918 0.982483 0.0126949)} Corner 9693 35873 {normal=(0.810732 -0.104092 -0.576088)} Corner 9693 35874 {normal=(0.810732 -0.104092 -0.576088)} Corner 9692 35874 {normal=(0.813757 0.000301535 -0.581206)} Corner 9692 35875 {normal=(0.813757 0.000301535 -0.581206)} Corner 9543 35875 {normal=(0.62745 0.0137745 -0.778535)} Corner 9543 35876 {normal=(0.62745 0.0137745 -0.778535)} Corner 9513 35878 {normal=(-0.930395 0.0176448 0.366134)} Corner 9513 35879 {normal=(-0.930395 0.0176448 0.366134)} Corner 9588 35879 {normal=(-0.758446 0.00350564 0.651727)} Corner 9588 35880 {normal=(-0.758446 0.00350564 0.651727)} Corner 8891 35881 {normal=(-0.43492 -0.0439279 -0.899397)} Corner 9413 35881 {normal=(-0.433201 -0.0431431 -0.900264)} Corner 9413 35882 {normal=(-0.433201 -0.0431431 -0.900264)} Corner 9426 35882 {normal=(-0.391826 -0.256204 -0.883647)} Corner 9426 35883 {normal=(-0.391826 -0.256204 -0.883647)} Corner 8985 35883 {normal=(-0.394184 -0.238698 -0.887492)} Corner 8985 35884 {normal=(-0.394184 -0.238698 -0.887492)} Corner 8891 35884 {normal=(-0.43492 -0.0439279 -0.899397)} Corner 9519 35885 {normal=(-0.703739 0.606014 0.370808)} Corner 9552 35886 {normal=(-0.55478 0.80482 0.21091)} Corner 9552 35887 {normal=(-0.55478 0.80482 0.21091)} Corner 9486 35887 {normal=(-0.765794 0.604494 0.219425)} Corner 9486 35888 {normal=(-0.765794 0.604494 0.219425)} Corner 9519 35888 {normal=(-0.703739 0.606014 0.370808)} Corner 9407 35889 {normal=(-0.464483 0.122715 -0.877039)} Corner 8810 35889 {normal=(-0.464387 0.123584 -0.876967)} Corner 8810 35890 {normal=(-0.464387 0.123584 -0.876967)} Corner 9131 35890 {normal=(-0.451303 0.221246 -0.864509)} Corner 9131 35891 {normal=(-0.451303 0.221246 -0.864509)} Corner 9422 35891 {normal=(-0.451303 0.221246 -0.864509)} Corner 9422 35892 {normal=(-0.451303 0.221246 -0.864509)} Corner 9407 35892 {normal=(-0.464483 0.122715 -0.877039)} Corner 8365 35893 {normal=(-0.986848 -0.101556 0.125769)} Corner 8555 35893 {normal=(-0.986565 -0.104556 0.125532)} Corner 8555 35894 {normal=(-0.986565 -0.104556 0.125532)} Corner 8325 35894 {normal=(-0.991628 -0.0738115 0.105951)} Corner 8325 35895 {normal=(-0.991628 -0.0738115 0.105951)} Corner 8213 35895 {normal=(-0.991649 -0.0735729 0.105919)} Corner 8213 35896 {normal=(-0.991649 -0.0735729 0.105919)} Corner 8365 35896 {normal=(-0.986848 -0.101556 0.125769)} Corner 9693 35897 {normal=(0.810732 -0.104092 -0.576088)} Corner 9733 35899 {normal=(0.794137 -0.0362593 -0.606657)} Corner 9733 35900 {normal=(0.794137 -0.0362593 -0.606657)} Corner 9693 35900 {normal=(0.810732 -0.104092 -0.576088)} Corner 9486 35901 {normal=(-0.957075 -0.00105637 0.28984)} Corner 9483 35901 {normal=(-0.956068 0.0117377 0.292911)} Corner 9483 35902 {normal=(-0.956068 0.0117377 0.292911)} Corner 9519 35903 {normal=(-0.9168 0.0390216 0.397435)} Corner 9519 35904 {normal=(-0.9168 0.0390216 0.397435)} Corner 9486 35904 {normal=(-0.957075 -0.00105637 0.28984)} Corner 9930 35905 {normal=(0.0777212 0.841021 0.535391)} Corner 9930 35906 {normal=(0.0777212 0.841021 0.535391)} Corner 10056 35906 {normal=(0.362895 0.828598 0.426301)} Corner 10056 35907 {normal=(0.362895 0.828598 0.426301)} Corner 9513 35909 {normal=(-0.930395 0.0176448 0.366134)} Corner 9483 35910 {normal=(-0.956068 0.0117377 0.292911)} Corner 9483 35911 {normal=(-0.956068 0.0117377 0.292911)} Corner 9477 35911 {normal=(-0.954761 0.0258756 0.296246)} Corner 9477 35912 {normal=(-0.954761 0.0258756 0.296246)} Corner 9513 35912 {normal=(-0.930395 0.0176448 0.366134)} Corner 10161 35913 {normal=(0.854138 0.0856332 0.512948)} Corner 10062 35914 {normal=(0.720607 -0.0329667 0.69256)} Corner 10062 35915 {normal=(0.720607 -0.0329667 0.69256)} Corner 10165 35915 {normal=(0.852291 -0.0100937 0.52297)} Corner 10165 35916 {normal=(0.852291 -0.0100937 0.52297)} Corner 10161 35916 {normal=(0.854138 0.0856332 0.512948)} Corner 9598 35917 {normal=(-0.305963 0.863737 0.400432)} Corner 9879 35917 {normal=(0.362097 0.793991 0.488328)} Corner 9879 35918 {normal=(0.362097 0.793991 0.488328)} Corner 9598 35920 {normal=(-0.305963 0.863737 0.400432)} Corner 9925 35922 {normal=(0.185918 0.982483 0.0126949)} Corner 9925 35923 {normal=(0.185918 0.982483 0.0126949)} Corner 9675 35923 {normal=(-0.137786 0.981671 0.131668)} Corner 9675 35924 {normal=(-0.137786 0.981671 0.131668)} Corner 9413 35925 {normal=(0.356608 -0.0362747 -0.93355)} Corner 9543 35926 {normal=(0.62745 0.0137745 -0.778535)} Corner 9543 35927 {normal=(0.62745 0.0137745 -0.778535)} Corner 9426 35927 {normal=(0.396052 0.0261731 -0.917855)} Corner 9426 35928 {normal=(0.396052 0.0261731 -0.917855)} Corner 9413 35928 {normal=(0.356608 -0.0362747 -0.93355)} Corner 10161 35929 {normal=(0.994809 0.0883183 -0.0505527)} Corner 10161 35930 {normal=(0.994809 0.0883183 -0.0505527)} Corner 10165 35930 {normal=(0.998175 0.0237139 -0.0555331)} Corner 10165 35931 {normal=(0.998175 0.0237139 -0.0555331)} Corner 10152 35931 {normal=(0.9819 0.0201398 -0.188328)} Corner 10152 35932 {normal=(0.9819 0.0201398 -0.188328)} Corner 9760 35934 {normal=(-0.481441 0.00752214 0.876446)} Corner 9760 35935 {normal=(-0.481441 0.00752214 0.876446)} Corner 9938 35935 {normal=(0.0677854 -0.0181222 0.997535)} Corner 9938 35936 {normal=(0.0677854 -0.0181222 0.997535)} Corner 8555 35937 {normal=(-0.986565 -0.104556 0.125532)} Corner 8365 35937 {normal=(-0.986848 -0.101556 0.125769)} Corner 8365 35938 {normal=(-0.986848 -0.101556 0.125769)} Corner 8400 35938 {normal=(-0.990949 -0.0286888 0.131138)} Corner 8400 35939 {normal=(-0.990949 -0.0286888 0.131138)} Corner 8553 35939 {normal=(-0.990949 -0.0286888 0.131138)} Corner 8553 35940 {normal=(-0.990949 -0.0286888 0.131138)} Corner 8555 35940 {normal=(-0.986565 -0.104556 0.125532)} Corner 9612 35941 {normal=(-0.732499 0.152835 0.66339)} Corner 9519 35941 {normal=(-0.9168 0.0390216 0.397435)} Corner 9519 35942 {normal=(-0.9168 0.0390216 0.397435)} Corner 9612 35944 {normal=(-0.732499 0.152835 0.66339)} Corner 10056 35945 {normal=(0.715129 0.231703 0.659472)} Corner 10161 35946 {normal=(0.854138 0.0856332 0.512948)} Corner 10161 35947 {normal=(0.854138 0.0856332 0.512948)} Corner 10138 35947 {normal=(0.847783 0.183224 0.497687)} Corner 10138 35948 {normal=(0.847783 0.183224 0.497687)} Corner 10056 35948 {normal=(0.715129 0.231703 0.659472)} Corner 10056 35950 {normal=(0.715129 0.231703 0.659472)} Corner 10056 35951 {normal=(0.715129 0.231703 0.659472)} Corner 9930 35951 {normal=(0.0626632 0.275821 0.959164)} Corner 9930 35952 {normal=(0.0626632 0.275821 0.959164)} Corner 9612 35953 {normal=(-0.457624 0.679881 0.573011)} Corner 9801 35953 {normal=(-0.292446 0.734491 0.612371)} Corner 9801 35954 {normal=(-0.292446 0.734491 0.612371)} Corner 9612 35956 {normal=(-0.457624 0.679881 0.573011)} Corner 9805 35958 {normal=(0.911101 -0.0989302 -0.400134)} Corner 9805 35959 {normal=(0.911101 -0.0989302 -0.400134)} Corner 9844 35959 {normal=(0.936353 -0.0738889 -0.343197)} Corner 9844 35960 {normal=(0.936353 -0.0738889 -0.343197)} Corner 9413 35961 {normal=(0.356608 -0.0362747 -0.93355)} Corner 9413 35962 {normal=(0.356608 -0.0362747 -0.93355)} Corner 9404 35962 {normal=(0.335782 -0.000673189 -0.941939)} Corner 9404 35963 {normal=(0.335782 -0.000673189 -0.941939)} Corner 9404 35965 {normal=(-0.4646 -0.0129022 -0.885427)} Corner 9413 35965 {normal=(-0.433201 -0.0431431 -0.900264)} Corner 9413 35966 {normal=(-0.433201 -0.0431431 -0.900264)} Corner 8891 35966 {normal=(-0.43492 -0.0439279 -0.899397)} Corner 8891 35967 {normal=(-0.43492 -0.0439279 -0.899397)} Corner 8740 35967 {normal=(-0.464621 -0.0128051 -0.885417)} Corner 8740 35968 {normal=(-0.464621 -0.0128051 -0.885417)} Corner 9404 35968 {normal=(-0.4646 -0.0129022 -0.885427)} Corner 8213 35969 {normal=(-0.991649 -0.0735729 0.105919)} Corner 8325 35969 {normal=(-0.991628 -0.0738115 0.105951)} Corner 8325 35970 {normal=(-0.991628 -0.0738115 0.105951)} Corner 8359 35970 {normal=(-0.992555 0.0807745 0.0911643)} Corner 8359 35971 {normal=(-0.992555 0.0807745 0.0911643)} Corner 8250 35971 {normal=(-0.990371 0.104265 0.0910777)} Corner 8250 35972 {normal=(-0.990371 0.104265 0.0910777)} Corner 8213 35972 {normal=(-0.991649 -0.0735729 0.105919)} Corner 10073 35973 {normal=(0.823333 0.545918 -0.15523)} Corner 10083 35973 {normal=(0.839923 0.542165 -0.0242363)} Corner 10083 35974 {normal=(0.839923 0.542165 -0.0242363)} Corner 10138 35974 {normal=(0.954018 0.297262 -0.0385421)} Corner 10138 35975 {normal=(0.954018 0.297262 -0.0385421)} Corner 10073 35976 {normal=(0.823333 0.545918 -0.15523)} Corner 9930 35978 {normal=(0.0626632 0.275821 0.959164)} Corner 9930 35979 {normal=(0.0626632 0.275821 0.959164)} Corner 9801 35979 {normal=(-0.451289 0.226074 0.863267)} Corner 9801 35980 {normal=(-0.451289 0.226074 0.863267)} Corner 9938 35982 {normal=(0.0677854 -0.0181222 0.997535)} Corner 9938 35983 {normal=(0.0677854 -0.0181222 0.997535)} Corner 10062 35983 {normal=(0.720607 -0.0329667 0.69256)} Corner 10062 35984 {normal=(0.720607 -0.0329667 0.69256)} Corner 9802 35985 {normal=(0.908819 -0.00467443 -0.417165)} Corner 9805 35985 {normal=(0.911101 -0.0989302 -0.400134)} Corner 9805 35986 {normal=(0.911101 -0.0989302 -0.400134)} Corner 9901 35987 {normal=(0.906208 -0.00843579 -0.422748)} Corner 9901 35988 {normal=(0.906208 -0.00843579 -0.422748)} Corner 9802 35988 {normal=(0.908819 -0.00467443 -0.417165)} Corner 10138 35989 {normal=(0.954018 0.297262 -0.0385421)} Corner 10138 35990 {normal=(0.954018 0.297262 -0.0385421)} Corner 10161 35990 {normal=(0.994809 0.0883183 -0.0505527)} Corner 10161 35991 {normal=(0.994809 0.0883183 -0.0505527)} Corner 1563 35997 {normal=(0 -1 0)} Corner 1005 35997 {normal=(0 -1 0)} Corner 1005 35998 {normal=(0 -1 0)} Corner 1173 35998 {normal=(0 -1 0)} Corner 1173 35999 {normal=(0 -1 0)} Corner 1546 35999 {normal=(0 -1 0)} Corner 1546 36000 {normal=(0 -1 0)} Corner 1563 36000 {normal=(0 -1 0)} Corner 1047 36001 {normal=(0.254259 0.785166 -0.564683)} Corner 1155 36001 {normal=(0.252135 0.797969 -0.547425)} Corner 1155 36002 {normal=(0.252135 0.797969 -0.547425)} Corner 1668 36002 {normal=(0.321822 0.62018 -0.715407)} Corner 1668 36003 {normal=(0.321822 0.62018 -0.715407)} Corner 986 36003 {normal=(0.325833 0.579534 -0.746976)} Corner 986 36004 {normal=(0.325833 0.579534 -0.746976)} Corner 1047 36004 {normal=(0.254259 0.785166 -0.564683)} Corner 1522 36005 {normal=(2.27678e-05 -1 2.32865e-05)} Corner 1622 36005 {normal=(-0.00230554 -0.999997 0.000255022)} Corner 1622 36006 {normal=(-0.00230554 -0.999997 0.000255022)} Corner 2211 36006 {normal=(-0.00373078 -0.999993 0.000396875)} Corner 2211 36007 {normal=(-0.00373078 -0.999993 0.000396875)} Corner 1392 36007 {normal=(2.27678e-05 -1 2.32865e-05)} Corner 1392 36008 {normal=(2.27678e-05 -1 2.32865e-05)} Corner 1522 36008 {normal=(2.27678e-05 -1 2.32865e-05)} Corner 1006 36009 {normal=(0 -1 0)} Corner 910 36009 {normal=(0 -1 0)} Corner 910 36010 {normal=(0 -1 0)} Corner 957 36010 {normal=(0 -1 0)} Corner 957 36011 {normal=(0 -1 0)} Corner 1112 36011 {normal=(0 -1 0)} Corner 1112 36012 {normal=(0 -1 0)} Corner 1006 36012 {normal=(0 -1 0)} Corner 1263 36013 {normal=(0 -1 0)} Corner 1112 36013 {normal=(0 -1 0)} Corner 1112 36014 {normal=(0 -1 0)} Corner 957 36014 {normal=(0 -1 0)} Corner 957 36015 {normal=(0 -1 0)} Corner 1409 36015 {normal=(0 -1 0)} Corner 1409 36016 {normal=(0 -1 0)} Corner 1263 36016 {normal=(0 -1 0)} Corner 1496 36017 {normal=(0 -1 0)} Corner 1409 36017 {normal=(0 -1 0)} Corner 1409 36018 {normal=(0 -1 0)} Corner 957 36018 {normal=(0 -1 0)} Corner 957 36019 {normal=(0 -1 0)} Corner 1534 36019 {normal=(0 -1 0)} Corner 1534 36020 {normal=(0 -1 0)} Corner 1496 36020 {normal=(0 -1 0)} Corner 1049 36021 {normal=(0 -1 0)} Corner 1123 36021 {normal=(0 -1 0)} Corner 1123 36022 {normal=(0 -1 0)} Corner 1173 36022 {normal=(0 -1 0)} Corner 1173 36023 {normal=(0 -1 0)} Corner 1005 36023 {normal=(0 -1 0)} Corner 1005 36024 {normal=(0 -1 0)} Corner 1049 36024 {normal=(0 -1 0)} Corner 990 36025 {normal=(-0.328293 -0.0287903 0.944137)} Corner 1036 36025 {normal=(-0.325961 -0.0309195 0.944878)} Corner 1036 36026 {normal=(-0.325961 -0.0309195 0.944878)} Corner 1082 36026 {normal=(-0.317816 -0.132264 0.938882)} Corner 1082 36027 {normal=(-0.317816 -0.132264 0.938882)} Corner 1052 36027 {normal=(-0.315052 -0.116775 0.941863)} Corner 1052 36028 {normal=(-0.315052 -0.116775 0.941863)} Corner 990 36028 {normal=(-0.328293 -0.0287903 0.944137)} Corner 1052 36029 {normal=(-0.315052 -0.116775 0.941863)} Corner 1082 36029 {normal=(-0.317816 -0.132264 0.938882)} Corner 1082 36030 {normal=(-0.317816 -0.132264 0.938882)} Corner 1178 36030 {normal=(-0.348288 -0.215888 0.912189)} Corner 1178 36031 {normal=(-0.348288 -0.215888 0.912189)} Corner 1166 36031 {normal=(-0.347006 -0.214786 0.912937)} Corner 1166 36032 {normal=(-0.347006 -0.214786 0.912937)} Corner 1052 36032 {normal=(-0.315052 -0.116775 0.941863)} Corner 1166 36033 {normal=(-0.347006 -0.214786 0.912937)} Corner 1178 36033 {normal=(-0.348288 -0.215888 0.912189)} Corner 1178 36034 {normal=(-0.348288 -0.215888 0.912189)} Corner 1443 36034 {normal=(-0.435102 -0.18348 0.881488)} Corner 1443 36035 {normal=(-0.435102 -0.18348 0.881488)} Corner 1447 36035 {normal=(-0.422486 -0.192434 0.885706)} Corner 1447 36036 {normal=(-0.422486 -0.192434 0.885706)} Corner 1166 36036 {normal=(-0.347006 -0.214786 0.912937)} Corner 1447 36037 {normal=(-0.422486 -0.192434 0.885706)} Corner 1443 36037 {normal=(-0.435102 -0.18348 0.881488)} Corner 1443 36038 {normal=(-0.435102 -0.18348 0.881488)} Corner 1519 36038 {normal=(-0.479154 -0.0579839 0.875813)} Corner 1519 36039 {normal=(-0.479154 -0.0579839 0.875813)} Corner 1545 36039 {normal=(-0.481137 -0.0705986 0.873798)} Corner 1545 36040 {normal=(-0.481137 -0.0705986 0.873798)} Corner 1447 36040 {normal=(-0.422486 -0.192434 0.885706)} Corner 1545 36041 {normal=(-0.481137 -0.0705986 0.873798)} Corner 1519 36041 {normal=(-0.479154 -0.0579839 0.875813)} Corner 1519 36042 {normal=(-0.479154 -0.0579839 0.875813)} Corner 1553 36042 {normal=(-0.412328 0.00460331 0.911024)} Corner 1553 36043 {normal=(-0.412328 0.00460331 0.911024)} Corner 1608 36043 {normal=(-0.419811 0.00583996 0.907593)} Corner 1608 36044 {normal=(-0.419811 0.00583996 0.907593)} Corner 1545 36044 {normal=(-0.481137 -0.0705986 0.873798)} Corner 1608 36045 {normal=(-0.419811 0.00583996 0.907593)} Corner 1553 36045 {normal=(-0.412328 0.00460331 0.911024)} Corner 1553 36046 {normal=(-0.412328 0.00460331 0.911024)} Corner 1557 36046 {normal=(-0.357111 -0.00709784 0.934035)} Corner 1557 36047 {normal=(-0.357111 -0.00709784 0.934035)} Corner 1613 36047 {normal=(-0.356774 -0.00728397 0.934162)} Corner 1613 36048 {normal=(-0.356774 -0.00728397 0.934162)} Corner 1608 36048 {normal=(-0.419811 0.00583996 0.907593)} Corner 1613 36049 {normal=(-0.356774 -0.00728397 0.934162)} Corner 1557 36049 {normal=(-0.357111 -0.00709784 0.934035)} Corner 1557 36050 {normal=(-0.357111 -0.00709784 0.934035)} Corner 1567 36050 {normal=(-0.371358 -0.0909657 0.924023)} Corner 1567 36051 {normal=(-0.371358 -0.0909657 0.924023)} Corner 1614 36051 {normal=(-0.37563 -0.108027 0.920452)} Corner 1614 36052 {normal=(-0.37563 -0.108027 0.920452)} Corner 1613 36052 {normal=(-0.356774 -0.00728397 0.934162)} Corner 1585 36053 {normal=(-0.399589 -0.0139264 0.916589)} Corner 1584 36053 {normal=(-0.399589 -0.0139264 0.916589)} Corner 1584 36054 {normal=(-0.399589 -0.0139264 0.916589)} Corner 1002 36054 {normal=(0.735643 -0.00317782 0.677362)} Corner 1002 36055 {normal=(0.735643 -0.00317782 0.677362)} Corner 1005 36055 {normal=(-0.280064 -0.10998 0.953661)} Corner 1005 36056 {normal=(-0.280064 -0.10998 0.953661)} Corner 1585 36056 {normal=(-0.399589 -0.0139264 0.916589)} Corner 965 36057 {normal=(-0.33778 -0.112801 0.934441)} Corner 1016 36057 {normal=(0.0341176 -0.118632 0.992352)} Corner 1016 36058 {normal=(0.0341176 -0.118632 0.992352)} Corner 1017 36058 {normal=(-0.35857 -0.00775505 0.933471)} Corner 1017 36059 {normal=(-0.35857 -0.00775505 0.933471)} Corner 963 36059 {normal=(-0.358619 -0.00775355 0.933452)} Corner 963 36060 {normal=(-0.358619 -0.00775355 0.933452)} Corner 965 36060 {normal=(-0.33778 -0.112801 0.934441)} Corner 963 36061 {normal=(-0.358619 -0.00775355 0.933452)} Corner 1017 36061 {normal=(-0.35857 -0.00775505 0.933471)} Corner 1017 36062 {normal=(-0.35857 -0.00775505 0.933471)} Corner 1036 36062 {normal=(-0.325961 -0.0309195 0.944878)} Corner 1036 36063 {normal=(-0.325961 -0.0309195 0.944878)} Corner 990 36063 {normal=(-0.328293 -0.0287903 0.944137)} Corner 990 36064 {normal=(-0.328293 -0.0287903 0.944137)} Corner 963 36064 {normal=(-0.358619 -0.00775355 0.933452)} Corner 935 36065 {normal=(0.358757 0.00656984 -0.933408)} Corner 971 36065 {normal=(0.358534 0.00659786 -0.933493)} Corner 971 36066 {normal=(0.358534 0.00659786 -0.933493)} Corner 966 36066 {normal=(0.386079 -0.0673637 -0.920003)} Corner 966 36067 {normal=(0.386079 -0.0673637 -0.920003)} Corner 934 36067 {normal=(0.390069 -0.08329 -0.917011)} Corner 934 36068 {normal=(0.390069 -0.08329 -0.917011)} Corner 935 36068 {normal=(0.358757 0.00656984 -0.933408)} Corner 957 36069 {normal=(0.393302 0.0139037 -0.919304)} Corner 955 36069 {normal=(0.393302 0.0139037 -0.919304)} Corner 955 36070 {normal=(0.393302 0.0139037 -0.919304)} Corner 1533 36070 {normal=(-0.741168 0.00308627 -0.671312)} Corner 1533 36071 {normal=(-0.741168 0.00308627 -0.671312)} Corner 1534 36071 {normal=(0.297736 -0.0634543 -0.952537)} Corner 1534 36072 {normal=(0.297736 -0.0634543 -0.952537)} Corner 957 36072 {normal=(0.393302 0.0139037 -0.919304)} Corner 1568 36073 {normal=(0.33119 -0.0703699 -0.940936)} Corner 1520 36073 {normal=(-0.00590152 -0.0891318 -0.996002)} Corner 1520 36074 {normal=(-0.00590152 -0.0891318 -0.996002)} Corner 1517 36074 {normal=(0.35787 -0.000137771 -0.933771)} Corner 1517 36075 {normal=(0.35787 -0.000137771 -0.933771)} Corner 1562 36075 {normal=(0.357695 2.58879e-05 -0.933838)} Corner 1562 36076 {normal=(0.357695 2.58879e-05 -0.933838)} Corner 1568 36076 {normal=(0.33119 -0.0703699 -0.940936)} Corner 1562 36077 {normal=(0.357695 2.58879e-05 -0.933838)} Corner 1517 36077 {normal=(0.35787 -0.000137771 -0.933771)} Corner 1517 36078 {normal=(0.35787 -0.000137771 -0.933771)} Corner 1521 36078 {normal=(0.396879 0.0169332 -0.917715)} Corner 1521 36079 {normal=(0.396879 0.0169332 -0.917715)} Corner 1559 36079 {normal=(0.399313 0.0189141 -0.916619)} Corner 1559 36080 {normal=(0.399313 0.0189141 -0.916619)} Corner 1562 36080 {normal=(0.357695 2.58879e-05 -0.933838)} Corner 1559 36081 {normal=(0.399313 0.0189141 -0.916619)} Corner 1521 36081 {normal=(0.396879 0.0169332 -0.917715)} Corner 1521 36082 {normal=(0.396879 0.0169332 -0.917715)} Corner 1478 36082 {normal=(0.468724 0.0896827 -0.87878)} Corner 1478 36083 {normal=(0.468724 0.0896827 -0.87878)} Corner 1493 36083 {normal=(0.467532 0.0882626 -0.879559)} Corner 1493 36084 {normal=(0.467532 0.0882626 -0.879559)} Corner 1559 36084 {normal=(0.399313 0.0189141 -0.916619)} Corner 1493 36085 {normal=(0.467532 0.0882626 -0.879559)} Corner 1478 36085 {normal=(0.468724 0.0896827 -0.87878)} Corner 1478 36086 {normal=(0.468724 0.0896827 -0.87878)} Corner 1366 36086 {normal=(0.442451 0.181772 -0.878178)} Corner 1366 36087 {normal=(0.442451 0.181772 -0.878178)} Corner 1370 36087 {normal=(0.436593 0.185988 -0.880224)} Corner 1370 36088 {normal=(0.436593 0.185988 -0.880224)} Corner 1493 36088 {normal=(0.467532 0.0882626 -0.879559)} Corner 1370 36089 {normal=(0.436593 0.185988 -0.880224)} Corner 1366 36089 {normal=(0.442451 0.181772 -0.878178)} Corner 1366 36090 {normal=(0.442451 0.181772 -0.878178)} Corner 1135 36090 {normal=(0.349165 0.214905 -0.912085)} Corner 1135 36091 {normal=(0.349165 0.214905 -0.912085)} Corner 1120 36091 {normal=(0.347422 0.213599 -0.913057)} Corner 1120 36092 {normal=(0.347422 0.213599 -0.913057)} Corner 1370 36092 {normal=(0.436593 0.185988 -0.880224)} Corner 1120 36093 {normal=(0.347422 0.213599 -0.913057)} Corner 1135 36093 {normal=(0.349165 0.214905 -0.912085)} Corner 1135 36094 {normal=(0.349165 0.214905 -0.912085)} Corner 1048 36094 {normal=(0.312705 0.125849 -0.941476)} Corner 1048 36095 {normal=(0.312705 0.125849 -0.941476)} Corner 1015 36095 {normal=(0.308728 0.104499 -0.945393)} Corner 1015 36096 {normal=(0.308728 0.104499 -0.945393)} Corner 1120 36096 {normal=(0.347422 0.213599 -0.913057)} Corner 1015 36097 {normal=(0.308728 0.104499 -0.945393)} Corner 1048 36097 {normal=(0.312705 0.125849 -0.941476)} Corner 1048 36098 {normal=(0.312705 0.125849 -0.941476)} Corner 995 36098 {normal=(0.321364 0.0229179 -0.946678)} Corner 995 36099 {normal=(0.321364 0.0229179 -0.946678)} Corner 951 36099 {normal=(0.32539 0.0208329 -0.94535)} Corner 951 36100 {normal=(0.32539 0.0208329 -0.94535)} Corner 1015 36100 {normal=(0.308728 0.104499 -0.945393)} Corner 951 36101 {normal=(0.32539 0.0208329 -0.94535)} Corner 995 36101 {normal=(0.321364 0.0229179 -0.946678)} Corner 995 36102 {normal=(0.321364 0.0229179 -0.946678)} Corner 971 36102 {normal=(0.358534 0.00659786 -0.933493)} Corner 971 36103 {normal=(0.358534 0.00659786 -0.933493)} Corner 935 36103 {normal=(0.358757 0.00656984 -0.933408)} Corner 935 36104 {normal=(0.358757 0.00656984 -0.933408)} Corner 951 36104 {normal=(0.32539 0.0208329 -0.94535)} Corner 1280 36105 {normal=(-0.434318 -0.767128 0.472105)} Corner 1332 36105 {normal=(-0.427171 -0.75824 0.492541)} Corner 1332 36106 {normal=(-0.427171 -0.75824 0.492541)} Corner 1598 36106 {normal=(-0.134647 -0.748014 0.649881)} Corner 1598 36107 {normal=(-0.134647 -0.748014 0.649881)} Corner 1590 36107 {normal=(-0.157913 -0.743824 0.649453)} Corner 1590 36108 {normal=(-0.157913 -0.743824 0.649453)} Corner 1280 36108 {normal=(-0.434318 -0.767128 0.472105)} Corner 1590 36109 {normal=(-0.157913 -0.743824 0.649453)} Corner 1598 36109 {normal=(-0.134647 -0.748014 0.649881)} Corner 1598 36110 {normal=(-0.134647 -0.748014 0.649881)} Corner 1649 36110 {normal=(0.0734386 -0.817021 0.571912)} Corner 1649 36111 {normal=(0.0734386 -0.817021 0.571912)} Corner 1666 36111 {normal=(0.0688397 -0.82739 0.557393)} Corner 1666 36112 {normal=(0.0688397 -0.82739 0.557393)} Corner 1590 36112 {normal=(-0.157913 -0.743824 0.649453)} Corner 1666 36113 {normal=(0.0688397 -0.82739 0.557393)} Corner 1649 36113 {normal=(0.0734386 -0.817021 0.571912)} Corner 1649 36114 {normal=(0.0734386 -0.817021 0.571912)} Corner 1702 36114 {normal=(-0.0541881 -0.819511 0.570496)} Corner 1702 36115 {normal=(-0.0541881 -0.819511 0.570496)} Corner 1798 36115 {normal=(-0.017503 -0.838901 0.544002)} Corner 1798 36116 {normal=(-0.017503 -0.838901 0.544002)} Corner 1666 36116 {normal=(0.0688397 -0.82739 0.557393)} Corner 1798 36117 {normal=(-0.017503 -0.838901 0.544002)} Corner 1702 36117 {normal=(-0.0541881 -0.819511 0.570496)} Corner 1702 36118 {normal=(-0.0541881 -0.819511 0.570496)} Corner 2025 36118 {normal=(-0.121921 -0.778257 0.615996)} Corner 2025 36119 {normal=(-0.121921 -0.778257 0.615996)} Corner 2479 36119 {normal=(-0.121921 -0.778257 0.615996)} Corner 2479 36120 {normal=(-0.121921 -0.778257 0.615996)} Corner 1798 36120 {normal=(-0.017503 -0.838901 0.544002)} Corner 2479 36121 {normal=(0.0632268 -0.731559 -0.67884)} Corner 2025 36121 {normal=(0.0632268 -0.731559 -0.67884)} Corner 2025 36122 {normal=(0.0632268 -0.731559 -0.67884)} Corner 2082 36122 {normal=(0.0819528 -0.868629 -0.488639)} Corner 2082 36123 {normal=(0.0819528 -0.868629 -0.488639)} Corner 2517 36123 {normal=(0.088276 -0.910674 -0.403584)} Corner 2517 36124 {normal=(0.088276 -0.910674 -0.403584)} Corner 2479 36124 {normal=(0.0632268 -0.731559 -0.67884)} Corner 2517 36125 {normal=(0.088276 -0.910674 -0.403584)} Corner 2082 36125 {normal=(0.0819528 -0.868629 -0.488639)} Corner 2082 36126 {normal=(0.0819528 -0.868629 -0.488639)} Corner 1686 36126 {normal=(0.138554 -0.979908 -0.143469)} Corner 1686 36127 {normal=(0.138554 -0.979908 -0.143469)} Corner 1762 36127 {normal=(0.126231 -0.979167 -0.159054)} Corner 1762 36128 {normal=(0.126231 -0.979167 -0.159054)} Corner 2517 36128 {normal=(0.088276 -0.910674 -0.403584)} Corner 1762 36129 {normal=(0.126231 -0.979167 -0.159054)} Corner 1686 36129 {normal=(0.138554 -0.979908 -0.143469)} Corner 1686 36130 {normal=(0.138554 -0.979908 -0.143469)} Corner 1615 36130 {normal=(0.222429 -0.961634 -0.16058)} Corner 1615 36131 {normal=(0.222429 -0.961634 -0.16058)} Corner 1611 36131 {normal=(0.235656 -0.956232 -0.173456)} Corner 1611 36132 {normal=(0.235656 -0.956232 -0.173456)} Corner 1762 36132 {normal=(0.126231 -0.979167 -0.159054)} Corner 1611 36133 {normal=(0.235656 -0.956232 -0.173456)} Corner 1615 36133 {normal=(0.222429 -0.961634 -0.16058)} Corner 1615 36134 {normal=(0.222429 -0.961634 -0.16058)} Corner 1489 36134 {normal=(0.257294 -0.922686 -0.287141)} Corner 1489 36135 {normal=(0.257294 -0.922686 -0.287141)} Corner 1458 36135 {normal=(0.254273 -0.921426 -0.293801)} Corner 1458 36136 {normal=(0.254273 -0.921426 -0.293801)} Corner 1611 36136 {normal=(0.235656 -0.956232 -0.173456)} Corner 1458 36137 {normal=(0.254273 -0.921426 -0.293801)} Corner 1489 36137 {normal=(0.257294 -0.922686 -0.287141)} Corner 1489 36138 {normal=(0.257294 -0.922686 -0.287141)} Corner 1329 36138 {normal=(0.22506 -0.90703 -0.355871)} Corner 1329 36139 {normal=(0.22506 -0.90703 -0.355871)} Corner 1267 36139 {normal=(0.22506 -0.90703 -0.355871)} Corner 1267 36140 {normal=(0.22506 -0.90703 -0.355871)} Corner 1458 36140 {normal=(0.254273 -0.921426 -0.293801)} Corner 1267 36141 {normal=(-0.40921 -0.666065 0.623622)} Corner 1329 36141 {normal=(-0.40921 -0.666065 0.623622)} Corner 1329 36142 {normal=(-0.40921 -0.666065 0.623622)} Corner 1305 36142 {normal=(-0.391707 -0.722109 0.570197)} Corner 1305 36143 {normal=(-0.391707 -0.722109 0.570197)} Corner 1238 36143 {normal=(-0.392009 -0.72124 0.571088)} Corner 1238 36144 {normal=(-0.392009 -0.72124 0.571088)} Corner 1267 36144 {normal=(-0.40921 -0.666065 0.623622)} Corner 1238 36145 {normal=(-0.392009 -0.72124 0.571088)} Corner 1305 36145 {normal=(-0.391707 -0.722109 0.570197)} Corner 1305 36146 {normal=(-0.391707 -0.722109 0.570197)} Corner 1270 36146 {normal=(-0.422282 -0.797732 0.430467)} Corner 1270 36147 {normal=(-0.422282 -0.797732 0.430467)} Corner 1213 36147 {normal=(-0.432066 -0.801728 0.412979)} Corner 1213 36148 {normal=(-0.432066 -0.801728 0.412979)} Corner 1238 36148 {normal=(-0.392009 -0.72124 0.571088)} Corner 1213 36149 {normal=(-0.432066 -0.801728 0.412979)} Corner 1270 36149 {normal=(-0.422282 -0.797732 0.430467)} Corner 1270 36150 {normal=(-0.422282 -0.797732 0.430467)} Corner 1332 36150 {normal=(-0.427171 -0.75824 0.492541)} Corner 1332 36151 {normal=(-0.427171 -0.75824 0.492541)} Corner 1280 36151 {normal=(-0.434318 -0.767128 0.472105)} Corner 1280 36152 {normal=(-0.434318 -0.767128 0.472105)} Corner 1213 36152 {normal=(-0.432066 -0.801728 0.412979)} Corner 2718 36153 {normal=(-0.341423 0.0334474 0.939314)} Corner 2397 36153 {normal=(-0.342099 0.0343806 0.939035)} Corner 2397 36154 {normal=(-0.342099 0.0343806 0.939035)} Corner 2044 36154 {normal=(-0.355388 0.0281022 0.934296)} Corner 2044 36155 {normal=(-0.355388 0.0281022 0.934296)} Corner 2491 36155 {normal=(-0.35525 0.025059 0.934435)} Corner 2491 36156 {normal=(-0.35525 0.025059 0.934435)} Corner 2718 36156 {normal=(-0.341423 0.0334474 0.939314)} Corner 2491 36157 {normal=(-0.35525 0.025059 0.934435)} Corner 2044 36157 {normal=(-0.355388 0.0281022 0.934296)} Corner 2044 36158 {normal=(-0.355388 0.0281022 0.934296)} Corner 2149 36158 {normal=(-0.340907 0.0102292 0.940041)} Corner 2149 36159 {normal=(-0.340907 0.0102292 0.940041)} Corner 2493 36159 {normal=(-0.33017 0.0214699 0.943677)} Corner 2493 36160 {normal=(-0.33017 0.0214699 0.943677)} Corner 2491 36160 {normal=(-0.35525 0.025059 0.934435)} Corner 2493 36161 {normal=(-0.33017 0.0214699 0.943677)} Corner 2149 36161 {normal=(-0.340907 0.0102292 0.940041)} Corner 2149 36162 {normal=(-0.340907 0.0102292 0.940041)} Corner 1880 36162 {normal=(-0.36315 -0.0168474 0.931578)} Corner 1880 36163 {normal=(-0.36315 -0.0168474 0.931578)} Corner 2211 36163 {normal=(-0.344501 0.00444809 0.938775)} Corner 2211 36164 {normal=(-0.344501 0.00444809 0.938775)} Corner 2493 36164 {normal=(-0.33017 0.0214699 0.943677)} Corner 2211 36165 {normal=(-0.344501 0.00444809 0.938775)} Corner 1880 36165 {normal=(-0.36315 -0.0168474 0.931578)} Corner 1880 36166 {normal=(-0.36315 -0.0168474 0.931578)} Corner 1419 36166 {normal=(-0.43077 -0.0327396 0.901868)} Corner 1419 36167 {normal=(-0.43077 -0.0327396 0.901868)} Corner 1392 36167 {normal=(-0.43998 -0.0280573 0.897569)} Corner 1392 36168 {normal=(-0.43998 -0.0280573 0.897569)} Corner 2211 36168 {normal=(-0.344501 0.00444809 0.938775)} Corner 1392 36169 {normal=(-0.43998 -0.0280573 0.897569)} Corner 1419 36169 {normal=(-0.43077 -0.0327396 0.901868)} Corner 1419 36170 {normal=(-0.43077 -0.0327396 0.901868)} Corner 1412 36170 {normal=(-0.485742 -0.00878963 0.874058)} Corner 1412 36171 {normal=(-0.485742 -0.00878963 0.874058)} Corner 1353 36171 {normal=(-0.48739 -0.0087312 0.873141)} Corner 1353 36172 {normal=(-0.48739 -0.0087312 0.873141)} Corner 1392 36172 {normal=(-0.43998 -0.0280573 0.897569)} Corner 1353 36173 {normal=(-0.48739 -0.0087312 0.873141)} Corner 1412 36173 {normal=(-0.485742 -0.00878963 0.874058)} Corner 1412 36174 {normal=(-0.485742 -0.00878963 0.874058)} Corner 1413 36174 {normal=(-0.501236 -0.0474736 0.864007)} Corner 1413 36175 {normal=(-0.501236 -0.0474736 0.864007)} Corner 1352 36175 {normal=(-0.500971 -0.0450281 0.864292)} Corner 1352 36176 {normal=(-0.500971 -0.0450281 0.864292)} Corner 1353 36176 {normal=(-0.48739 -0.0087312 0.873141)} Corner 1352 36177 {normal=(-0.500971 -0.0450281 0.864292)} Corner 1413 36177 {normal=(-0.501236 -0.0474736 0.864007)} Corner 1413 36178 {normal=(-0.501236 -0.0474736 0.864007)} Corner 1365 36178 {normal=(-0.510912 -0.101176 0.853658)} Corner 1365 36179 {normal=(-0.510912 -0.101176 0.853658)} Corner 1312 36179 {normal=(-0.511096 -0.101709 0.853485)} Corner 1312 36180 {normal=(-0.511096 -0.101709 0.853485)} Corner 1352 36180 {normal=(-0.500971 -0.0450281 0.864292)} Corner 1312 36181 {normal=(-0.511096 -0.101709 0.853485)} Corner 1365 36181 {normal=(-0.510912 -0.101176 0.853658)} Corner 1365 36182 {normal=(-0.510912 -0.101176 0.853658)} Corner 1350 36182 {normal=(-0.516981 -0.119021 0.847682)} Corner 1350 36183 {normal=(-0.516981 -0.119021 0.847682)} Corner 1292 36183 {normal=(-0.516981 -0.119021 0.847682)} Corner 1292 36184 {normal=(-0.516981 -0.119021 0.847682)} Corner 1312 36184 {normal=(-0.511096 -0.101709 0.853485)} Corner 1292 36185 {normal=(-0.29264 0.851727 0.434653)} Corner 1350 36185 {normal=(-0.29264 0.851727 0.434653)} Corner 1350 36186 {normal=(-0.29264 0.851727 0.434653)} Corner 1503 36186 {normal=(-0.29836 0.897061 0.325981)} Corner 1503 36187 {normal=(-0.29836 0.897061 0.325981)} Corner 1483 36187 {normal=(-0.297729 0.890703 0.343519)} Corner 1483 36188 {normal=(-0.297729 0.890703 0.343519)} Corner 1292 36188 {normal=(-0.29264 0.851727 0.434653)} Corner 1483 36189 {normal=(-0.297729 0.890703 0.343519)} Corner 1503 36189 {normal=(-0.29836 0.897061 0.325981)} Corner 1503 36190 {normal=(-0.29836 0.897061 0.325981)} Corner 1628 36190 {normal=(-0.209562 0.962371 0.17299)} Corner 1628 36191 {normal=(-0.209562 0.962371 0.17299)} Corner 1623 36191 {normal=(-0.231091 0.954947 0.186206)} Corner 1623 36192 {normal=(-0.231091 0.954947 0.186206)} Corner 1483 36192 {normal=(-0.297729 0.890703 0.343519)} Corner 1623 36193 {normal=(-0.231091 0.954947 0.186206)} Corner 1628 36193 {normal=(-0.209562 0.962371 0.17299)} Corner 1628 36194 {normal=(-0.209562 0.962371 0.17299)} Corner 1707 36194 {normal=(-0.117596 0.980577 0.156971)} Corner 1707 36195 {normal=(-0.117596 0.980577 0.156971)} Corner 1914 36195 {normal=(-0.110105 0.978965 0.171769)} Corner 1914 36196 {normal=(-0.110105 0.978965 0.171769)} Corner 1623 36196 {normal=(-0.231091 0.954947 0.186206)} Corner 1914 36197 {normal=(-0.110105 0.978965 0.171769)} Corner 1707 36197 {normal=(-0.117596 0.980577 0.156971)} Corner 1707 36198 {normal=(-0.117596 0.980577 0.156971)} Corner 2232 36198 {normal=(-0.0957809 0.975151 0.199764)} Corner 2232 36199 {normal=(-0.0957809 0.975151 0.199764)} Corner 2621 36199 {normal=(-0.0957809 0.975151 0.199764)} Corner 2621 36200 {normal=(-0.0957809 0.975151 0.199764)} Corner 1914 36200 {normal=(-0.110105 0.978965 0.171769)} Corner 2621 36201 {normal=(-0.0423281 0.729377 0.682801)} Corner 2232 36201 {normal=(-0.0423281 0.729377 0.682801)} Corner 2232 36202 {normal=(-0.0423281 0.729377 0.682801)} Corner 2311 36202 {normal=(-0.194995 0.424289 0.884283)} Corner 2311 36203 {normal=(-0.194995 0.424289 0.884283)} Corner 2688 36203 {normal=(-0.212457 0.380136 0.900199)} Corner 2688 36204 {normal=(-0.212457 0.380136 0.900199)} Corner 2621 36204 {normal=(-0.0423281 0.729377 0.682801)} Corner 2688 36205 {normal=(-0.212457 0.380136 0.900199)} Corner 2311 36205 {normal=(-0.194995 0.424289 0.884283)} Corner 2311 36206 {normal=(-0.194995 0.424289 0.884283)} Corner 2397 36206 {normal=(-0.342099 0.0343806 0.939035)} Corner 2397 36207 {normal=(-0.342099 0.0343806 0.939035)} Corner 2718 36207 {normal=(-0.341423 0.0334474 0.939314)} Corner 2718 36208 {normal=(-0.341423 0.0334474 0.939314)} Corner 2688 36208 {normal=(-0.212457 0.380136 0.900199)} Corner 2188 36209 {normal=(0.32734 0.253193 -0.910353)} Corner 1774 36209 {normal=(0.328108 0.249224 -0.911171)} Corner 1774 36210 {normal=(0.328108 0.249224 -0.911171)} Corner 1712 36210 {normal=(0.182186 0.674687 -0.715266)} Corner 1712 36211 {normal=(0.182186 0.674687 -0.715266)} Corner 2015 36211 {normal=(0.1904 0.659844 -0.726879)} Corner 2015 36212 {normal=(0.1904 0.659844 -0.726879)} Corner 2188 36212 {normal=(0.32734 0.253193 -0.910353)} Corner 2015 36213 {normal=(0.1904 0.659844 -0.726879)} Corner 1712 36213 {normal=(0.182186 0.674687 -0.715266)} Corner 1712 36214 {normal=(0.182186 0.674687 -0.715266)} Corner 1669 36214 {normal=(0.0407798 0.832044 -0.553208)} Corner 1669 36215 {normal=(0.0407798 0.832044 -0.553208)} Corner 1699 36215 {normal=(0.0143838 0.843877 -0.536344)} Corner 1699 36216 {normal=(0.0143838 0.843877 -0.536344)} Corner 2015 36216 {normal=(0.1904 0.659844 -0.726879)} Corner 1699 36217 {normal=(0.0143838 0.843877 -0.536344)} Corner 1669 36217 {normal=(0.0407798 0.832044 -0.553208)} Corner 1669 36218 {normal=(0.0407798 0.832044 -0.553208)} Corner 1637 36218 {normal=(0.0139973 0.802684 -0.596241)} Corner 1637 36219 {normal=(0.0139973 0.802684 -0.596241)} Corner 1648 36219 {normal=(0.00614057 0.812123 -0.583454)} Corner 1648 36220 {normal=(0.00614057 0.812123 -0.583454)} Corner 1699 36220 {normal=(0.0143838 0.843877 -0.536344)} Corner 1648 36221 {normal=(0.00614057 0.812123 -0.583454)} Corner 1637 36221 {normal=(0.0139973 0.802684 -0.596241)} Corner 1637 36222 {normal=(0.0139973 0.802684 -0.596241)} Corner 1589 36222 {normal=(0.187426 0.713823 -0.67478)} Corner 1589 36223 {normal=(0.187426 0.713823 -0.67478)} Corner 1583 36223 {normal=(0.209681 0.709049 -0.673263)} Corner 1583 36224 {normal=(0.209681 0.709049 -0.673263)} Corner 1648 36224 {normal=(0.00614057 0.812123 -0.583454)} Corner 1583 36225 {normal=(0.209681 0.709049 -0.673263)} Corner 1589 36225 {normal=(0.187426 0.713823 -0.67478)} Corner 1589 36226 {normal=(0.187426 0.713823 -0.67478)} Corner 1304 36226 {normal=(0.394309 0.750309 -0.530619)} Corner 1304 36227 {normal=(0.394309 0.750309 -0.530619)} Corner 1251 36227 {normal=(0.40927 0.763939 -0.498894)} Corner 1251 36228 {normal=(0.40927 0.763939 -0.498894)} Corner 1583 36228 {normal=(0.209681 0.709049 -0.673263)} Corner 1251 36229 {normal=(0.40927 0.763939 -0.498894)} Corner 1304 36229 {normal=(0.394309 0.750309 -0.530619)} Corner 1304 36230 {normal=(0.394309 0.750309 -0.530619)} Corner 1206 36230 {normal=(0.418662 0.775131 -0.473174)} Corner 1206 36231 {normal=(0.418662 0.775131 -0.473174)} Corner 1158 36231 {normal=(0.426128 0.781047 -0.456487)} Corner 1158 36232 {normal=(0.426128 0.781047 -0.456487)} Corner 1251 36232 {normal=(0.40927 0.763939 -0.498894)} Corner 1158 36233 {normal=(0.426128 0.781047 -0.456487)} Corner 1206 36233 {normal=(0.418662 0.775131 -0.473174)} Corner 1206 36234 {normal=(0.418662 0.775131 -0.473174)} Corner 1242 36234 {normal=(0.372185 0.735049 -0.566728)} Corner 1242 36235 {normal=(0.372185 0.735049 -0.566728)} Corner 1188 36235 {normal=(0.372185 0.735049 -0.566728)} Corner 1188 36236 {normal=(0.372185 0.735049 -0.566728)} Corner 1158 36236 {normal=(0.426128 0.781047 -0.456487)} Corner 1188 36237 {normal=(0.477348 0.198934 -0.8559)} Corner 1242 36237 {normal=(0.477348 0.198934 -0.8559)} Corner 1242 36238 {normal=(0.477348 0.198934 -0.8559)} Corner 1239 36238 {normal=(0.498454 0.136267 -0.85614)} Corner 1239 36239 {normal=(0.498454 0.136267 -0.85614)} Corner 1191 36239 {normal=(0.499033 0.134443 -0.856091)} Corner 1191 36240 {normal=(0.499033 0.134443 -0.856091)} Corner 1188 36240 {normal=(0.477348 0.198934 -0.8559)} Corner 1191 36241 {normal=(0.499033 0.134443 -0.856091)} Corner 1239 36241 {normal=(0.498454 0.136267 -0.85614)} Corner 1239 36242 {normal=(0.498454 0.136267 -0.85614)} Corner 1252 36242 {normal=(0.514726 0.0507658 -0.85585)} Corner 1252 36243 {normal=(0.514726 0.0507658 -0.85585)} Corner 1201 36243 {normal=(0.514904 0.0518807 -0.855677)} Corner 1201 36244 {normal=(0.514904 0.0518807 -0.855677)} Corner 1191 36244 {normal=(0.499033 0.134443 -0.856091)} Corner 1201 36245 {normal=(0.514904 0.0518807 -0.855677)} Corner 1252 36245 {normal=(0.514726 0.0507658 -0.85585)} Corner 1252 36246 {normal=(0.514726 0.0507658 -0.85585)} Corner 1307 36246 {normal=(0.504314 0.0201811 -0.863285)} Corner 1307 36247 {normal=(0.504314 0.0201811 -0.863285)} Corner 1240 36247 {normal=(0.503977 0.0196637 -0.863493)} Corner 1240 36248 {normal=(0.503977 0.0196637 -0.863493)} Corner 1201 36248 {normal=(0.514904 0.0518807 -0.855677)} Corner 1240 36249 {normal=(0.503977 0.0196637 -0.863493)} Corner 1307 36249 {normal=(0.504314 0.0201811 -0.863285)} Corner 1307 36250 {normal=(0.504314 0.0201811 -0.863285)} Corner 1306 36250 {normal=(0.576658 -0.153861 -0.802367)} Corner 1306 36251 {normal=(0.576658 -0.153861 -0.802367)} Corner 1243 36251 {normal=(0.562699 -0.122588 -0.817522)} Corner 1243 36252 {normal=(0.562699 -0.122588 -0.817522)} Corner 1240 36252 {normal=(0.503977 0.0196637 -0.863493)} Corner 1243 36253 {normal=(0.562699 -0.122588 -0.817522)} Corner 1306 36253 {normal=(0.576658 -0.153861 -0.802367)} Corner 1306 36254 {normal=(0.576658 -0.153861 -0.802367)} Corner 1316 36254 {normal=(0.508711 -0.0853828 -0.856693)} Corner 1316 36255 {normal=(0.508711 -0.0853828 -0.856693)} Corner 1271 36255 {normal=(0.545863 -0.142089 -0.825738)} Corner 1271 36256 {normal=(0.545863 -0.142089 -0.825738)} Corner 1243 36256 {normal=(0.562699 -0.122588 -0.817522)} Corner 1271 36257 {normal=(0.545863 -0.142089 -0.825738)} Corner 1316 36257 {normal=(0.508711 -0.0853828 -0.856693)} Corner 1316 36258 {normal=(0.508711 -0.0853828 -0.856693)} Corner 1685 36258 {normal=(0.323876 -0.0348199 -0.945459)} Corner 1685 36259 {normal=(0.323876 -0.0348199 -0.945459)} Corner 1732 36259 {normal=(0.265206 -0.0934136 -0.959656)} Corner 1732 36260 {normal=(0.265206 -0.0934136 -0.959656)} Corner 1271 36260 {normal=(0.545863 -0.142089 -0.825738)} Corner 1732 36261 {normal=(0.265206 -0.0934136 -0.959656)} Corner 1685 36261 {normal=(0.323876 -0.0348199 -0.945459)} Corner 1685 36262 {normal=(0.323876 -0.0348199 -0.945459)} Corner 1737 36262 {normal=(0.293756 -0.0607413 -0.953949)} Corner 1737 36263 {normal=(0.293756 -0.0607413 -0.953949)} Corner 1954 36263 {normal=(0.245904 -0.109793 -0.963056)} Corner 1954 36264 {normal=(0.245904 -0.109793 -0.963056)} Corner 1732 36264 {normal=(0.265206 -0.0934136 -0.959656)} Corner 1954 36265 {normal=(0.245904 -0.109793 -0.963056)} Corner 1737 36265 {normal=(0.293756 -0.0607413 -0.953949)} Corner 1737 36266 {normal=(0.293756 -0.0607413 -0.953949)} Corner 1708 36266 {normal=(0.356365 -0.0178762 -0.934176)} Corner 1708 36267 {normal=(0.356365 -0.0178762 -0.934176)} Corner 1950 36267 {normal=(0.356063 -0.0153003 -0.934337)} Corner 1950 36268 {normal=(0.356063 -0.0153003 -0.934337)} Corner 1954 36268 {normal=(0.245904 -0.109793 -0.963056)} Corner 1950 36269 {normal=(0.356063 -0.0153003 -0.934337)} Corner 1708 36269 {normal=(0.356365 -0.0178762 -0.934176)} Corner 1708 36270 {normal=(0.356365 -0.0178762 -0.934176)} Corner 1780 36270 {normal=(0.362197 -0.0286402 -0.931661)} Corner 1780 36271 {normal=(0.362197 -0.0286402 -0.931661)} Corner 2214 36271 {normal=(0.362323 -0.028431 -0.931619)} Corner 2214 36272 {normal=(0.362323 -0.028431 -0.931619)} Corner 1950 36272 {normal=(0.356063 -0.0153003 -0.934337)} Corner 2214 36273 {normal=(0.362323 -0.028431 -0.931619)} Corner 1780 36273 {normal=(0.362197 -0.0286402 -0.931661)} Corner 1780 36274 {normal=(0.362197 -0.0286402 -0.931661)} Corner 1774 36274 {normal=(0.328108 0.249224 -0.911171)} Corner 1774 36275 {normal=(0.328108 0.249224 -0.911171)} Corner 2188 36275 {normal=(0.32734 0.253193 -0.910353)} Corner 2188 36276 {normal=(0.32734 0.253193 -0.910353)} Corner 2214 36276 {normal=(0.362323 -0.028431 -0.931619)} Corner 2366 36277 {normal=(0.479356 0.646786 -0.593199)} Corner 2133 36277 {normal=(0.464416 0.648564 -0.603061)} Corner 2133 36278 {normal=(0.464416 0.648564 -0.603061)} Corner 3009 36278 {normal=(0.604465 0.614863 -0.506523)} Corner 3009 36279 {normal=(0.604465 0.614863 -0.506523)} Corner 3185 36279 {normal=(0.607904 0.613576 -0.503962)} Corner 3185 36280 {normal=(0.607904 0.613576 -0.503962)} Corner 2366 36280 {normal=(0.479356 0.646786 -0.593199)} Corner 1728 36281 {normal=(0.310483 0.619388 -0.721082)} Corner 1705 36281 {normal=(0.285089 0.609478 -0.739771)} Corner 1705 36282 {normal=(0.285089 0.609478 -0.739771)} Corner 2133 36282 {normal=(0.464416 0.648564 -0.603061)} Corner 2133 36283 {normal=(0.464416 0.648564 -0.603061)} Corner 2366 36283 {normal=(0.479356 0.646786 -0.593199)} Corner 2366 36284 {normal=(0.479356 0.646786 -0.593199)} Corner 1728 36284 {normal=(0.310483 0.619388 -0.721082)} Corner 1610 36285 {normal=(0.0682773 0.514937 -0.854505)} Corner 1612 36285 {normal=(0.0667108 0.514211 -0.855065)} Corner 1612 36286 {normal=(0.0667108 0.514211 -0.855065)} Corner 1705 36286 {normal=(0.285089 0.609478 -0.739771)} Corner 1705 36287 {normal=(0.285089 0.609478 -0.739771)} Corner 1728 36287 {normal=(0.310483 0.619388 -0.721082)} Corner 1728 36288 {normal=(0.310483 0.619388 -0.721082)} Corner 1610 36288 {normal=(0.0682773 0.514937 -0.854505)} Corner 1612 36289 {normal=(0.0667108 0.514211 -0.855065)} Corner 1610 36289 {normal=(0.0682773 0.514937 -0.854505)} Corner 1610 36290 {normal=(0.0682773 0.514937 -0.854505)} Corner 1491 36290 {normal=(-0.111218 0.407159 -0.906561)} Corner 1491 36291 {normal=(-0.111218 0.407159 -0.906561)} Corner 1500 36291 {normal=(-0.108198 0.409537 -0.905855)} Corner 1500 36292 {normal=(-0.108198 0.409537 -0.905855)} Corner 1612 36292 {normal=(0.0667108 0.514211 -0.855065)} Corner 3185 36293 {normal=(0.607904 0.613576 -0.503962)} Corner 3009 36293 {normal=(0.604465 0.614863 -0.506523)} Corner 3009 36294 {normal=(0.604465 0.614863 -0.506523)} Corner 3302 36294 {normal=(0.74799 0.580284 -0.322151)} Corner 3302 36295 {normal=(0.74799 0.580284 -0.322151)} Corner 3465 36295 {normal=(0.741767 0.581179 -0.334683)} Corner 3465 36296 {normal=(0.741767 0.581179 -0.334683)} Corner 3185 36296 {normal=(0.607904 0.613576 -0.503962)} Corner 3465 36297 {normal=(0.741767 0.581179 -0.334683)} Corner 3302 36297 {normal=(0.74799 0.580284 -0.322151)} Corner 3302 36298 {normal=(0.74799 0.580284 -0.322151)} Corner 3309 36298 {normal=(0.851042 0.456034 -0.260308)} Corner 3309 36299 {normal=(0.851042 0.456034 -0.260308)} Corner 3454 36299 {normal=(0.849765 0.45933 -0.258678)} Corner 3454 36300 {normal=(0.849765 0.45933 -0.258678)} Corner 3465 36300 {normal=(0.741767 0.581179 -0.334683)} Corner 3269 36301 {normal=(0.924353 0.287984 -0.250272)} Corner 3358 36301 {normal=(0.923612 0.289141 -0.25167)} Corner 3358 36302 {normal=(0.923612 0.289141 -0.25167)} Corner 3454 36302 {normal=(0.849765 0.45933 -0.258678)} Corner 3454 36303 {normal=(0.849765 0.45933 -0.258678)} Corner 3309 36303 {normal=(0.851042 0.456034 -0.260308)} Corner 3309 36304 {normal=(0.851042 0.456034 -0.260308)} Corner 3269 36304 {normal=(0.924353 0.287984 -0.250272)} Corner 3358 36305 {normal=(0.923612 0.289141 -0.25167)} Corner 3269 36305 {normal=(0.924353 0.287984 -0.250272)} Corner 3269 36306 {normal=(0.924353 0.287984 -0.250272)} Corner 3059 36306 {normal=(0.95575 0.267677 -0.122033)} Corner 3059 36307 {normal=(0.95575 0.267677 -0.122033)} Corner 3097 36307 {normal=(0.955544 0.272817 -0.111831)} Corner 3097 36308 {normal=(0.955544 0.272817 -0.111831)} Corner 3358 36308 {normal=(0.923612 0.289141 -0.25167)} Corner 3097 36309 {normal=(0.955544 0.272817 -0.111831)} Corner 3059 36309 {normal=(0.95575 0.267677 -0.122033)} Corner 3059 36310 {normal=(0.95575 0.267677 -0.122033)} Corner 2600 36310 {normal=(0.954008 0.29918 -0.0189911)} Corner 2600 36311 {normal=(0.954008 0.29918 -0.0189911)} Corner 2610 36311 {normal=(0.954101 0.298953 -0.0178562)} Corner 2610 36312 {normal=(0.954101 0.298953 -0.0178562)} Corner 3097 36312 {normal=(0.955544 0.272817 -0.111831)} Corner 2610 36313 {normal=(0.954101 0.298953 -0.0178562)} Corner 2600 36313 {normal=(0.954008 0.29918 -0.0189911)} Corner 2600 36314 {normal=(0.954008 0.29918 -0.0189911)} Corner 1922 36314 {normal=(0.911293 0.406119 0.067915)} Corner 1922 36315 {normal=(0.911293 0.406119 0.067915)} Corner 1964 36315 {normal=(0.922283 0.382495 0.0555951)} Corner 1964 36316 {normal=(0.922283 0.382495 0.0555951)} Corner 2610 36316 {normal=(0.954101 0.298953 -0.0178562)} Corner 1273 36317 {normal=(-0.246541 0.288326 -0.925249)} Corner 1311 36317 {normal=(-0.241233 0.293469 -0.925031)} Corner 1311 36318 {normal=(-0.241233 0.293469 -0.925031)} Corner 1500 36318 {normal=(-0.108198 0.409537 -0.905855)} Corner 1500 36319 {normal=(-0.108198 0.409537 -0.905855)} Corner 1491 36319 {normal=(-0.111218 0.407159 -0.906561)} Corner 1491 36320 {normal=(-0.111218 0.407159 -0.906561)} Corner 1273 36320 {normal=(-0.246541 0.288326 -0.925249)} Corner 1125 36321 {normal=(-0.402034 0.207274 -0.891856)} Corner 1157 36321 {normal=(-0.394905 0.208839 -0.894671)} Corner 1157 36322 {normal=(-0.394905 0.208839 -0.894671)} Corner 1311 36322 {normal=(-0.241233 0.293469 -0.925031)} Corner 1311 36323 {normal=(-0.241233 0.293469 -0.925031)} Corner 1273 36323 {normal=(-0.246541 0.288326 -0.925249)} Corner 1273 36324 {normal=(-0.246541 0.288326 -0.925249)} Corner 1125 36324 {normal=(-0.402034 0.207274 -0.891856)} Corner 1062 36325 {normal=(-0.5316 0.168603 -0.830045)} Corner 1079 36325 {normal=(-0.528895 0.169747 -0.831538)} Corner 1079 36326 {normal=(-0.528895 0.169747 -0.831538)} Corner 1157 36326 {normal=(-0.394905 0.208839 -0.894671)} Corner 1157 36327 {normal=(-0.394905 0.208839 -0.894671)} Corner 1125 36327 {normal=(-0.402034 0.207274 -0.891856)} Corner 1125 36328 {normal=(-0.402034 0.207274 -0.891856)} Corner 1062 36328 {normal=(-0.5316 0.168603 -0.830045)} Corner 1079 36329 {normal=(-0.528895 0.169747 -0.831538)} Corner 1062 36329 {normal=(-0.5316 0.168603 -0.830045)} Corner 1062 36330 {normal=(-0.5316 0.168603 -0.830045)} Corner 999 36330 {normal=(-0.596843 0.152082 -0.787813)} Corner 999 36331 {normal=(-0.596843 0.152082 -0.787813)} Corner 1019 36331 {normal=(-0.599965 0.152345 -0.785387)} Corner 1019 36332 {normal=(-0.599965 0.152345 -0.785387)} Corner 1079 36332 {normal=(-0.528895 0.169747 -0.831538)} Corner 953 36333 {normal=(-0.662295 0.272336 -0.697996)} Corner 968 36333 {normal=(-0.672048 0.308505 -0.673184)} Corner 968 36334 {normal=(-0.672048 0.308505 -0.673184)} Corner 1019 36334 {normal=(-0.599965 0.152345 -0.785387)} Corner 1019 36335 {normal=(-0.599965 0.152345 -0.785387)} Corner 999 36335 {normal=(-0.596843 0.152082 -0.787813)} Corner 999 36336 {normal=(-0.596843 0.152082 -0.787813)} Corner 953 36336 {normal=(-0.662295 0.272336 -0.697996)} Corner 1668 36337 {normal=(0.722386 0.659075 0.209235)} Corner 1676 36337 {normal=(0.727626 0.654215 0.206308)} Corner 1676 36338 {normal=(0.727626 0.654215 0.206308)} Corner 1964 36338 {normal=(0.922283 0.382495 0.0555951)} Corner 1964 36339 {normal=(0.922283 0.382495 0.0555951)} Corner 1922 36339 {normal=(0.911293 0.406119 0.067915)} Corner 1922 36340 {normal=(0.911293 0.406119 0.067915)} Corner 1668 36340 {normal=(0.722386 0.659075 0.209235)} Corner 959 36341 {normal=(-0.667709 0.636994 -0.385233)} Corner 986 36341 {normal=(-0.663897 0.64944 -0.370767)} Corner 986 36342 {normal=(-0.663897 0.64944 -0.370767)} Corner 968 36342 {normal=(-0.672048 0.308505 -0.673184)} Corner 968 36343 {normal=(-0.672048 0.308505 -0.673184)} Corner 953 36343 {normal=(-0.662295 0.272336 -0.697996)} Corner 953 36344 {normal=(-0.662295 0.272336 -0.697996)} Corner 959 36344 {normal=(-0.667709 0.636994 -0.385233)} Corner 1029 36345 {normal=(-0.494609 0.869037 0.0116847)} Corner 1047 36345 {normal=(-0.483741 0.874714 0.0295044)} Corner 1047 36346 {normal=(-0.483741 0.874714 0.0295044)} Corner 986 36346 {normal=(-0.663897 0.64944 -0.370767)} Corner 986 36347 {normal=(-0.663897 0.64944 -0.370767)} Corner 959 36347 {normal=(-0.667709 0.636994 -0.385233)} Corner 959 36348 {normal=(-0.667709 0.636994 -0.385233)} Corner 1029 36348 {normal=(-0.494609 0.869037 0.0116847)} Corner 1136 36349 {normal=(-0.280045 0.927531 0.24751)} Corner 1155 36349 {normal=(-0.281704 0.92731 0.246454)} Corner 1155 36350 {normal=(-0.281704 0.92731 0.246454)} Corner 1047 36350 {normal=(-0.483741 0.874714 0.0295044)} Corner 1047 36351 {normal=(-0.483741 0.874714 0.0295044)} Corner 1029 36351 {normal=(-0.494609 0.869037 0.0116847)} Corner 1029 36352 {normal=(-0.494609 0.869037 0.0116847)} Corner 1136 36352 {normal=(-0.280045 0.927531 0.24751)} Corner 1417 36353 {normal=(-0.0155093 0.929461 0.368595)} Corner 1431 36353 {normal=(-0.0266258 0.930646 0.364952)} Corner 1431 36354 {normal=(-0.0266258 0.930646 0.364952)} Corner 1155 36354 {normal=(-0.281704 0.92731 0.246454)} Corner 1155 36355 {normal=(-0.281704 0.92731 0.246454)} Corner 1136 36355 {normal=(-0.280045 0.927531 0.24751)} Corner 1136 36356 {normal=(-0.280045 0.927531 0.24751)} Corner 1417 36356 {normal=(-0.0155093 0.929461 0.368595)} Corner 1602 36357 {normal=(0.374082 0.857828 0.352412)} Corner 1597 36357 {normal=(0.325587 0.871535 0.366634)} Corner 1597 36358 {normal=(0.325587 0.871535 0.366634)} Corner 1431 36358 {normal=(-0.0266258 0.930646 0.364952)} Corner 1431 36359 {normal=(-0.0266258 0.930646 0.364952)} Corner 1417 36359 {normal=(-0.0155093 0.929461 0.368595)} Corner 1417 36360 {normal=(-0.0155093 0.929461 0.368595)} Corner 1602 36360 {normal=(0.374082 0.857828 0.352412)} Corner 1676 36361 {normal=(0.727626 0.654215 0.206308)} Corner 1668 36361 {normal=(0.722386 0.659075 0.209235)} Corner 1668 36362 {normal=(0.722386 0.659075 0.209235)} Corner 1597 36362 {normal=(0.325587 0.871535 0.366634)} Corner 1597 36363 {normal=(0.325587 0.871535 0.366634)} Corner 1602 36363 {normal=(0.374082 0.857828 0.352412)} Corner 1602 36364 {normal=(0.374082 0.857828 0.352412)} Corner 1676 36364 {normal=(0.727626 0.654215 0.206308)} Corner 3309 36365 {normal=(0.269088 0.793095 -0.546436)} Corner 1311 36365 {normal=(0.284235 0.762055 -0.581793)} Corner 1311 36366 {normal=(0.284235 0.762055 -0.581793)} Corner 1157 36366 {normal=(0.333788 0.584037 -0.739923)} Corner 1157 36367 {normal=(0.333788 0.584037 -0.739923)} Corner 3269 36367 {normal=(0.33244 0.593955 -0.732599)} Corner 3269 36368 {normal=(0.33244 0.593955 -0.732599)} Corner 3309 36368 {normal=(0.269088 0.793095 -0.546436)} Corner 1500 36369 {normal=(0.171136 0.931826 -0.320019)} Corner 3302 36369 {normal=(0.170921 0.932101 -0.319333)} Corner 3302 36370 {normal=(0.170921 0.932101 -0.319333)} Corner 3009 36370 {normal=(0.154136 0.947292 -0.280856)} Corner 3009 36371 {normal=(0.154136 0.947292 -0.280856)} Corner 1612 36371 {normal=(0.15196 0.948794 -0.276945)} Corner 1612 36372 {normal=(0.15196 0.948794 -0.276945)} Corner 1500 36372 {normal=(0.171136 0.931826 -0.320019)} Corner 2600 36373 {normal=(0.364256 0.381333 -0.849649)} Corner 3059 36373 {normal=(0.347301 0.474405 -0.808902)} Corner 3059 36374 {normal=(0.347301 0.474405 -0.808902)} Corner 1079 36374 {normal=(0.347191 0.475307 -0.808419)} Corner 1079 36375 {normal=(0.347191 0.475307 -0.808419)} Corner 1019 36375 {normal=(0.363851 0.383067 -0.849042)} Corner 1019 36376 {normal=(0.363851 0.383067 -0.849042)} Corner 2600 36376 {normal=(0.364256 0.381333 -0.849649)} Corner 1922 36377 {normal=(0.365021 0.395132 -0.842989)} Corner 968 36377 {normal=(0.364443 0.398374 -0.841712)} Corner 968 36378 {normal=(0.364443 0.398374 -0.841712)} Corner 986 36378 {normal=(0.325833 0.579534 -0.746976)} Corner 986 36379 {normal=(0.325833 0.579534 -0.746976)} Corner 1668 36379 {normal=(0.321822 0.62018 -0.715407)} Corner 1668 36380 {normal=(0.321822 0.62018 -0.715407)} Corner 1922 36380 {normal=(0.365021 0.395132 -0.842989)} Corner 1964 36382 {normal=(0.484084 -0.0675311 0.872412)} Corner 1964 36383 {normal=(0.484084 -0.0675311 0.872412)} Corner 1676 36383 {normal=(0.479476 -0.00956725 0.877503)} Corner 1676 36384 {normal=(0.479476 -0.00956725 0.877503)} Corner 3185 36386 {normal=(0.807724 -0.275124 -0.521429)} Corner 3185 36387 {normal=(0.807724 -0.275124 -0.521429)} Corner 3465 36387 {normal=(0.953763 -0.28431 -0.097486)} Corner 3465 36388 {normal=(0.953763 -0.28431 -0.097486)} Corner 3097 36390 {normal=(0.53473 -0.167197 0.828317)} Corner 3097 36391 {normal=(0.53473 -0.167197 0.828317)} Corner 2610 36391 {normal=(0.404405 -0.107442 0.908247)} Corner 2610 36392 {normal=(0.404405 -0.107442 0.908247)} Corner 3454 36394 {normal=(0.906052 -0.272825 0.323476)} Corner 3454 36395 {normal=(0.906052 -0.272825 0.323476)} Corner 3358 36395 {normal=(0.749827 -0.235131 0.618444)} Corner 3358 36396 {normal=(0.749827 -0.235131 0.618444)} Corner 1728 36398 {normal=(0.349707 -0.294132 -0.88949)} Corner 1728 36399 {normal=(0.349707 -0.294132 -0.88949)} Corner 2366 36399 {normal=(0.601005 -0.258953 -0.756132)} Corner 2366 36400 {normal=(0.601005 -0.258953 -0.756132)} Corner 1491 36402 {normal=(-0.317116 -0.453664 -0.832842)} Corner 1491 36403 {normal=(-0.317116 -0.453664 -0.832842)} Corner 1610 36403 {normal=(-0.0667031 -0.396266 -0.915709)} Corner 1610 36404 {normal=(-0.0667031 -0.396266 -0.915709)} Corner 1125 36406 {normal=(-0.858416 -0.477637 -0.187043)} Corner 1125 36407 {normal=(-0.858416 -0.477637 -0.187043)} Corner 1273 36407 {normal=(-0.606139 -0.509583 -0.610673)} Corner 1273 36408 {normal=(-0.606139 -0.509583 -0.610673)} Corner 999 36410 {normal=(-0.918871 -0.261819 0.295174)} Corner 999 36411 {normal=(-0.918871 -0.261819 0.295174)} Corner 1062 36411 {normal=(-0.922785 -0.368975 0.111022)} Corner 1062 36412 {normal=(-0.922785 -0.368975 0.111022)} Corner 1602 36414 {normal=(0.173762 0.105257 0.979146)} Corner 1602 36415 {normal=(0.173762 0.105257 0.979146)} Corner 1417 36415 {normal=(-0.300776 0.184304 0.935717)} Corner 1417 36416 {normal=(-0.300776 0.184304 0.935717)} Corner 1136 36418 {normal=(-0.588936 0.150739 0.793997)} Corner 1136 36419 {normal=(-0.588936 0.150739 0.793997)} Corner 1029 36419 {normal=(-0.789611 0.0310325 0.612823)} Corner 1029 36420 {normal=(-0.789611 0.0310325 0.612823)} Corner 959 36422 {normal=(-0.890258 -0.0946565 0.445512)} Corner 959 36423 {normal=(-0.890258 -0.0946565 0.445512)} Corner 953 36423 {normal=(-0.913702 -0.184325 0.362179)} Corner 953 36424 {normal=(-0.913702 -0.184325 0.362179)} Corner 2366 36425 {normal=(0.601005 -0.258953 -0.756132)} Corner 2366 36426 {normal=(0.601005 -0.258953 -0.756132)} Corner 3185 36426 {normal=(0.807724 -0.275124 -0.521429)} Corner 3185 36427 {normal=(0.807724 -0.275124 -0.521429)} Corner 3465 36429 {normal=(0.953763 -0.28431 -0.097486)} Corner 3465 36430 {normal=(0.953763 -0.28431 -0.097486)} Corner 3454 36430 {normal=(0.906052 -0.272825 0.323476)} Corner 3454 36431 {normal=(0.906052 -0.272825 0.323476)} Corner 3358 36433 {normal=(0.749827 -0.235131 0.618444)} Corner 3358 36434 {normal=(0.749827 -0.235131 0.618444)} Corner 3097 36434 {normal=(0.53473 -0.167197 0.828317)} Corner 3097 36435 {normal=(0.53473 -0.167197 0.828317)} Corner 2610 36437 {normal=(0.404405 -0.107442 0.908247)} Corner 2610 36438 {normal=(0.404405 -0.107442 0.908247)} Corner 1964 36438 {normal=(0.484084 -0.0675311 0.872412)} Corner 1964 36439 {normal=(0.484084 -0.0675311 0.872412)} Corner 1676 36441 {normal=(0.479476 -0.00956725 0.877503)} Corner 1676 36442 {normal=(0.479476 -0.00956725 0.877503)} Corner 1602 36442 {normal=(0.173762 0.105257 0.979146)} Corner 1602 36443 {normal=(0.173762 0.105257 0.979146)} Corner 1417 36445 {normal=(-0.300776 0.184304 0.935717)} Corner 1417 36446 {normal=(-0.300776 0.184304 0.935717)} Corner 1136 36446 {normal=(-0.588936 0.150739 0.793997)} Corner 1136 36447 {normal=(-0.588936 0.150739 0.793997)} Corner 1029 36449 {normal=(-0.789611 0.0310325 0.612823)} Corner 1029 36450 {normal=(-0.789611 0.0310325 0.612823)} Corner 959 36450 {normal=(-0.890258 -0.0946565 0.445512)} Corner 959 36451 {normal=(-0.890258 -0.0946565 0.445512)} Corner 953 36453 {normal=(-0.913702 -0.184325 0.362179)} Corner 953 36454 {normal=(-0.913702 -0.184325 0.362179)} Corner 999 36454 {normal=(-0.918871 -0.261819 0.295174)} Corner 999 36455 {normal=(-0.918871 -0.261819 0.295174)} Corner 1062 36457 {normal=(-0.922785 -0.368975 0.111022)} Corner 1062 36458 {normal=(-0.922785 -0.368975 0.111022)} Corner 1125 36458 {normal=(-0.858416 -0.477637 -0.187043)} Corner 1125 36459 {normal=(-0.858416 -0.477637 -0.187043)} Corner 1273 36461 {normal=(-0.606139 -0.509583 -0.610673)} Corner 1273 36462 {normal=(-0.606139 -0.509583 -0.610673)} Corner 1491 36462 {normal=(-0.317116 -0.453664 -0.832842)} Corner 1491 36463 {normal=(-0.317116 -0.453664 -0.832842)} Corner 1610 36465 {normal=(-0.0667031 -0.396266 -0.915709)} Corner 1610 36466 {normal=(-0.0667031 -0.396266 -0.915709)} Corner 1728 36466 {normal=(0.349707 -0.294132 -0.88949)} Corner 1728 36467 {normal=(0.349707 -0.294132 -0.88949)} Corner 1431 36469 {normal=(0.235515 0.871846 -0.429439)} Corner 1597 36469 {normal=(0.235515 0.871846 -0.429439)} Corner 1597 36470 {normal=(0.235515 0.871846 -0.429439)} Corner 1668 36470 {normal=(0.321822 0.62018 -0.715407)} Corner 1668 36471 {normal=(0.321822 0.62018 -0.715407)} Corner 1155 36471 {normal=(0.252135 0.797969 -0.547425)} Corner 1155 36472 {normal=(0.252135 0.797969 -0.547425)} Corner 1431 36472 {normal=(0.235515 0.871846 -0.429439)} Corner 3059 36473 {normal=(0.347301 0.474405 -0.808902)} Corner 3269 36473 {normal=(0.33244 0.593955 -0.732599)} Corner 3269 36474 {normal=(0.33244 0.593955 -0.732599)} Corner 1157 36474 {normal=(0.333788 0.584037 -0.739923)} Corner 1157 36475 {normal=(0.333788 0.584037 -0.739923)} Corner 1079 36475 {normal=(0.347191 0.475307 -0.808419)} Corner 1079 36476 {normal=(0.347191 0.475307 -0.808419)} Corner 3059 36476 {normal=(0.347301 0.474405 -0.808902)} Corner 1019 36477 {normal=(0.363851 0.383067 -0.849042)} Corner 968 36477 {normal=(0.364443 0.398374 -0.841712)} Corner 968 36478 {normal=(0.364443 0.398374 -0.841712)} Corner 1922 36478 {normal=(0.365021 0.395132 -0.842989)} Corner 1922 36479 {normal=(0.365021 0.395132 -0.842989)} Corner 2600 36479 {normal=(0.364256 0.381333 -0.849649)} Corner 2600 36480 {normal=(0.364256 0.381333 -0.849649)} Corner 1019 36480 {normal=(0.363851 0.383067 -0.849042)} Corner 3009 36481 {normal=(0.154136 0.947292 -0.280856)} Corner 2133 36481 {normal=(0.0401663 0.996302 -0.0759505)} Corner 2133 36482 {normal=(0.0401663 0.996302 -0.0759505)} Corner 1705 36482 {normal=(0.0401663 0.996302 -0.0759505)} Corner 1705 36483 {normal=(0.0401663 0.996302 -0.0759505)} Corner 1612 36483 {normal=(0.15196 0.948794 -0.276945)} Corner 1612 36484 {normal=(0.15196 0.948794 -0.276945)} Corner 3009 36484 {normal=(0.154136 0.947292 -0.280856)} Corner 1173 36617 {normal=(-0.682676 -0.657704 -0.318402)} Corner 1144 36617 {normal=(-0.682575 -0.658483 -0.317004)} Corner 1144 36618 {normal=(-0.682575 -0.658483 -0.317004)} Corner 1243 36618 {normal=(-0.682331 -0.660315 -0.313701)} Corner 1243 36619 {normal=(-0.682331 -0.660315 -0.313701)} Corner 1271 36619 {normal=(-0.682331 -0.660315 -0.313701)} Corner 1271 36620 {normal=(-0.682331 -0.660315 -0.313701)} Corner 1173 36620 {normal=(-0.682676 -0.657704 -0.318402)} Corner 1112 36621 {normal=(-0.0549035 -0.685648 0.72586)} Corner 1107 36621 {normal=(-0.0729119 -0.686081 0.723862)} Corner 1107 36622 {normal=(-0.0729119 -0.686081 0.723862)} Corner 983 36622 {normal=(-0.539816 -0.651237 0.533374)} Corner 983 36623 {normal=(-0.539816 -0.651237 0.533374)} Corner 1006 36623 {normal=(-0.543066 -0.651112 0.530219)} Corner 1006 36624 {normal=(-0.543066 -0.651112 0.530219)} Corner 1112 36624 {normal=(-0.0549035 -0.685648 0.72586)} Corner 1880 36625 {normal=(0.710195 -0.657447 0.251767)} Corner 2149 36625 {normal=(0.710195 -0.657447 0.251767)} Corner 2149 36626 {normal=(0.710195 -0.657447 0.251767)} Corner 1737 36626 {normal=(0.710195 -0.657447 0.251767)} Corner 1737 36627 {normal=(0.710195 -0.657447 0.251767)} Corner 1685 36627 {normal=(0.710195 -0.657447 0.251767)} Corner 1685 36628 {normal=(0.710195 -0.657447 0.251767)} Corner 1880 36628 {normal=(0.710195 -0.657447 0.251767)} Corner 893 36629 {normal=(-0.694845 -0.702865 -0.15222)} Corner 926 36629 {normal=(-0.711842 -0.692856 -0.115033)} Corner 926 36630 {normal=(-0.711842 -0.692856 -0.115033)} Corner 910 36630 {normal=(-0.711748 -0.672345 0.203391)} Corner 910 36631 {normal=(-0.711748 -0.672345 0.203391)} Corner 880 36631 {normal=(-0.717408 -0.674257 0.175226)} Corner 880 36632 {normal=(-0.717408 -0.674257 0.175226)} Corner 893 36632 {normal=(-0.694845 -0.702865 -0.15222)} Corner 880 36633 {normal=(-0.717408 -0.674257 0.175226)} Corner 910 36633 {normal=(-0.711748 -0.672345 0.203391)} Corner 910 36634 {normal=(-0.711748 -0.672345 0.203391)} Corner 1006 36634 {normal=(-0.543066 -0.651112 0.530219)} Corner 1006 36635 {normal=(-0.543066 -0.651112 0.530219)} Corner 983 36635 {normal=(-0.539816 -0.651237 0.533374)} Corner 983 36636 {normal=(-0.539816 -0.651237 0.533374)} Corner 880 36636 {normal=(-0.717408 -0.674257 0.175226)} Corner 1107 36637 {normal=(-0.0729119 -0.686081 0.723862)} Corner 1112 36637 {normal=(-0.0549035 -0.685648 0.72586)} Corner 1112 36638 {normal=(-0.0549035 -0.685648 0.72586)} Corner 1263 36638 {normal=(0.377755 -0.631462 0.677168)} Corner 1263 36639 {normal=(0.377755 -0.631462 0.677168)} Corner 1285 36639 {normal=(0.376195 -0.631453 0.678045)} Corner 1285 36640 {normal=(0.376195 -0.631453 0.678045)} Corner 1107 36640 {normal=(-0.0729119 -0.686081 0.723862)} Corner 1285 36641 {normal=(0.376195 -0.631453 0.678045)} Corner 1263 36641 {normal=(0.377755 -0.631462 0.677168)} Corner 1263 36642 {normal=(0.377755 -0.631462 0.677168)} Corner 1409 36642 {normal=(0.564899 -0.652736 0.504802)} Corner 1409 36643 {normal=(0.564899 -0.652736 0.504802)} Corner 1457 36643 {normal=(0.578183 -0.654095 0.487713)} Corner 1457 36644 {normal=(0.578183 -0.654095 0.487713)} Corner 1285 36644 {normal=(0.376195 -0.631453 0.678045)} Corner 1457 36645 {normal=(0.578183 -0.654095 0.487713)} Corner 1409 36645 {normal=(0.564899 -0.652736 0.504802)} Corner 1409 36646 {normal=(0.564899 -0.652736 0.504802)} Corner 1496 36646 {normal=(0.692444 -0.66216 0.28647)} Corner 1496 36647 {normal=(0.692444 -0.66216 0.28647)} Corner 1532 36647 {normal=(0.697162 -0.664394 0.269341)} Corner 1532 36648 {normal=(0.697162 -0.664394 0.269341)} Corner 1457 36648 {normal=(0.578183 -0.654095 0.487713)} Corner 1595 36649 {normal=(0.835312 -0.536796 -0.118759)} Corner 1563 36649 {normal=(0.841879 -0.531496 -0.0935505)} Corner 1563 36650 {normal=(0.841879 -0.531496 -0.0935505)} Corner 1546 36650 {normal=(0.809614 -0.570114 0.139624)} Corner 1546 36651 {normal=(0.809614 -0.570114 0.139624)} Corner 1578 36651 {normal=(0.820117 -0.56367 0.0984053)} Corner 1578 36652 {normal=(0.820117 -0.56367 0.0984053)} Corner 1595 36652 {normal=(0.835312 -0.536796 -0.118759)} Corner 1578 36653 {normal=(0.820117 -0.56367 0.0984053)} Corner 1546 36653 {normal=(0.809614 -0.570114 0.139624)} Corner 1546 36654 {normal=(0.809614 -0.570114 0.139624)} Corner 1601 36654 {normal=(0.710311 -0.588634 0.385963)} Corner 1601 36655 {normal=(0.710311 -0.588634 0.385963)} Corner 1621 36655 {normal=(0.697195 -0.588634 0.40918)} Corner 1621 36656 {normal=(0.697195 -0.588634 0.40918)} Corner 1578 36656 {normal=(0.820117 -0.56367 0.0984053)} Corner 1621 36657 {normal=(0.697195 -0.588634 0.40918)} Corner 1601 36657 {normal=(0.710311 -0.588634 0.385963)} Corner 1601 36658 {normal=(0.710311 -0.588634 0.385963)} Corner 1732 36658 {normal=(0.646212 -0.585202 0.489845)} Corner 1732 36659 {normal=(0.646212 -0.585202 0.489845)} Corner 1954 36659 {normal=(0.646212 -0.585202 0.489845)} Corner 1954 36660 {normal=(0.646212 -0.585202 0.489845)} Corner 1621 36660 {normal=(0.697195 -0.588634 0.40918)} Corner 2060 36661 {normal=(0.394184 -0.238698 -0.887492)} Corner 1877 36661 {normal=(0.345151 -0.49242 -0.798995)} Corner 1877 36662 {normal=(0.345151 -0.49242 -0.798995)} Corner 1622 36662 {normal=(0.345151 -0.49242 -0.798995)} Corner 1622 36663 {normal=(0.345151 -0.49242 -0.798995)} Corner 1619 36663 {normal=(0.391826 -0.256204 -0.883647)} Corner 1619 36664 {normal=(0.391826 -0.256204 -0.883647)} Corner 2060 36664 {normal=(0.394184 -0.238698 -0.887492)} Corner 1619 36665 {normal=(-0.347612 -0.544055 -0.763656)} Corner 1622 36665 {normal=(-0.347612 -0.544055 -0.763656)} Corner 1622 36666 {normal=(-0.347612 -0.544055 -0.763656)} Corner 1522 36666 {normal=(-0.505807 -0.581187 -0.63748)} Corner 1522 36667 {normal=(-0.505807 -0.581187 -0.63748)} Corner 1502 36667 {normal=(-0.525083 -0.584251 -0.618821)} Corner 1502 36668 {normal=(-0.525083 -0.584251 -0.618821)} Corner 1619 36668 {normal=(-0.347612 -0.544055 -0.763656)} Corner 1502 36669 {normal=(-0.525083 -0.584251 -0.618821)} Corner 1522 36669 {normal=(-0.505807 -0.581187 -0.63748)} Corner 1522 36670 {normal=(-0.505807 -0.581187 -0.63748)} Corner 1392 36670 {normal=(-0.656816 -0.593546 -0.465076)} Corner 1392 36671 {normal=(-0.656816 -0.593546 -0.465076)} Corner 1353 36671 {normal=(-0.656816 -0.593546 -0.465076)} Corner 1353 36672 {normal=(-0.656816 -0.593546 -0.465076)} Corner 1502 36672 {normal=(-0.525083 -0.584251 -0.618821)} Corner 1412 36673 {normal=(-0.461457 -0.847473 -0.262387)} Corner 1419 36673 {normal=(-0.461457 -0.847473 -0.262387)} Corner 1419 36674 {normal=(-0.461457 -0.847473 -0.262387)} Corner 1316 36674 {normal=(-0.461457 -0.847473 -0.262387)} Corner 1316 36675 {normal=(-0.461457 -0.847473 -0.262387)} Corner 1306 36675 {normal=(-0.461457 -0.847473 -0.262387)} Corner 1306 36676 {normal=(-0.461457 -0.847473 -0.262387)} Corner 1412 36676 {normal=(-0.461457 -0.847473 -0.262387)} Corner 1144 36677 {normal=(-0.682575 -0.658483 -0.317004)} Corner 1173 36677 {normal=(-0.682676 -0.657704 -0.318402)} Corner 1173 36678 {normal=(-0.682676 -0.657704 -0.318402)} Corner 1123 36678 {normal=(-0.682787 -0.65684 -0.319942)} Corner 1123 36679 {normal=(-0.682787 -0.65684 -0.319942)} Corner 1102 36679 {normal=(-0.682797 -0.656758 -0.32009)} Corner 1102 36680 {normal=(-0.682797 -0.656758 -0.32009)} Corner 1144 36680 {normal=(-0.682575 -0.658483 -0.317004)} Corner 1102 36681 {normal=(-0.682797 -0.656758 -0.32009)} Corner 1123 36681 {normal=(-0.682787 -0.65684 -0.319942)} Corner 1123 36682 {normal=(-0.682787 -0.65684 -0.319942)} Corner 1049 36682 {normal=(-0.684092 -0.662179 -0.305838)} Corner 1049 36683 {normal=(-0.684092 -0.662179 -0.305838)} Corner 1014 36683 {normal=(-0.684741 -0.66431 -0.299702)} Corner 1014 36684 {normal=(-0.684741 -0.66431 -0.299702)} Corner 1102 36684 {normal=(-0.682797 -0.656758 -0.32009)} Corner 934 36685 {normal=(-0.660158 -0.718095 -0.2203)} Corner 957 36685 {normal=(-0.660158 -0.718095 -0.2203)} Corner 957 36686 {normal=(-0.660158 -0.718095 -0.2203)} Corner 926 36686 {normal=(-0.711842 -0.692856 -0.115033)} Corner 926 36687 {normal=(-0.711842 -0.692856 -0.115033)} Corner 893 36687 {normal=(-0.694845 -0.702865 -0.15222)} Corner 893 36688 {normal=(-0.694845 -0.702865 -0.15222)} Corner 934 36688 {normal=(-0.660158 -0.718095 -0.2203)} Corner 1014 36689 {normal=(-0.684741 -0.66431 -0.299702)} Corner 1049 36689 {normal=(-0.684092 -0.662179 -0.305838)} Corner 1049 36690 {normal=(-0.684092 -0.662179 -0.305838)} Corner 1005 36690 {normal=(-0.685971 -0.668554 -0.287194)} Corner 1005 36691 {normal=(-0.685971 -0.668554 -0.287194)} Corner 965 36691 {normal=(-0.685971 -0.668554 -0.287194)} Corner 965 36692 {normal=(-0.685971 -0.668554 -0.287194)} Corner 1014 36692 {normal=(-0.684741 -0.66431 -0.299702)} Corner 1016 36693 {normal=(0.0689038 0.997294 0.0256322)} Corner 1002 36693 {normal=(0.0689037 0.997294 0.0256322)} Corner 1002 36694 {normal=(0.0689037 0.997294 0.0256322)} Corner 955 36694 {normal=(0.0689037 0.997294 0.0256322)} Corner 955 36695 {normal=(0.0689037 0.997294 0.0256322)} Corner 966 36695 {normal=(0.0689037 0.997294 0.0256322)} Corner 966 36696 {normal=(0.0689037 0.997294 0.0256322)} Corner 1016 36696 {normal=(0.0689038 0.997294 0.0256322)} Corner 1614 36697 {normal=(0.829087 -0.54112 -0.140729)} Corner 1585 36697 {normal=(0.829087 -0.54112 -0.140729)} Corner 1585 36698 {normal=(0.829087 -0.54112 -0.140729)} Corner 1563 36698 {normal=(0.841879 -0.531496 -0.0935505)} Corner 1563 36699 {normal=(0.841879 -0.531496 -0.0935505)} Corner 1595 36699 {normal=(0.835312 -0.536796 -0.118759)} Corner 1595 36700 {normal=(0.835312 -0.536796 -0.118759)} Corner 1614 36700 {normal=(0.829087 -0.54112 -0.140729)} Corner 1532 36701 {normal=(0.697162 -0.664394 0.269341)} Corner 1496 36701 {normal=(0.692444 -0.66216 0.28647)} Corner 1496 36702 {normal=(0.692444 -0.66216 0.28647)} Corner 1534 36702 {normal=(0.71055 -0.670034 0.214878)} Corner 1534 36703 {normal=(0.71055 -0.670034 0.214878)} Corner 1568 36703 {normal=(0.71055 -0.670034 0.214878)} Corner 1568 36704 {normal=(0.71055 -0.670034 0.214878)} Corner 1532 36704 {normal=(0.697162 -0.664394 0.269341)} Corner 1520 36705 {normal=(-0.0906166 0.995291 -0.0344128)} Corner 1533 36705 {normal=(-0.0906166 0.995291 -0.0344128)} Corner 1533 36706 {normal=(-0.0906166 0.995291 -0.0344128)} Corner 1584 36706 {normal=(-0.0906166 0.995291 -0.0344128)} Corner 1584 36707 {normal=(-0.0906166 0.995291 -0.0344128)} Corner 1567 36707 {normal=(-0.0906166 0.995291 -0.0344128)} Corner 1567 36708 {normal=(-0.0906166 0.995291 -0.0344128)} Corner 1520 36708 {normal=(-0.0906166 0.995291 -0.0344128)} Corner 2648 36709 {normal=(0.877079 -0.417053 -0.238325)} Corner 2461 36709 {normal=(0.793658 -0.586936 -0.16004)} Corner 2461 36710 {normal=(0.793658 -0.586936 -0.16004)} Corner 1877 36710 {normal=(0.759173 -0.532975 -0.373624)} Corner 1877 36711 {normal=(0.759173 -0.532975 -0.373624)} Corner 2060 36711 {normal=(0.859299 -0.304695 -0.410811)} Corner 2060 36712 {normal=(0.859299 -0.304695 -0.410811)} Corner 2648 36712 {normal=(0.877079 -0.417053 -0.238325)} Corner 2493 36713 {normal=(0.78331 -0.612992 0.103274)} Corner 2211 36713 {normal=(0.78331 -0.612992 0.103274)} Corner 2211 36714 {normal=(0.78331 -0.612992 0.103274)} Corner 2461 36714 {normal=(0.793658 -0.586936 -0.16004)} Corner 2461 36715 {normal=(0.793658 -0.586936 -0.16004)} Corner 2648 36715 {normal=(0.877079 -0.417053 -0.238325)} Corner 2648 36716 {normal=(0.877079 -0.417053 -0.238325)} Corner 2493 36716 {normal=(0.78331 -0.612992 0.103274)} Corner 1702 36717 {normal=(0.887152 0.123905 0.444532)} Corner 1649 36717 {normal=(0.689407 0.376666 0.618741)} Corner 1649 36718 {normal=(0.689407 0.376666 0.618741)} Corner 1637 36718 {normal=(0.50691 0.538444 0.673142)} Corner 1637 36719 {normal=(0.50691 0.538444 0.673142)} Corner 1669 36719 {normal=(0.875579 0.134587 0.463947)} Corner 1669 36720 {normal=(0.875579 0.134587 0.463947)} Corner 1702 36720 {normal=(0.887152 0.123905 0.444532)} Corner 2517 36721 {normal=(0.984445 -0.0348826 -0.172193)} Corner 1762 36721 {normal=(0.699432 -0.0256923 -0.714237)} Corner 1762 36722 {normal=(0.699432 -0.0256923 -0.714237)} Corner 2517 36724 {normal=(0.984445 -0.0348826 -0.172193)} Corner 2232 36725 {normal=(0.88708 0.201574 -0.415279)} Corner 1707 36725 {normal=(0.729423 0.184251 -0.658782)} Corner 1707 36726 {normal=(0.729423 0.184251 -0.658782)} Corner 1686 36726 {normal=(0.712569 0.181978 -0.677591)} Corner 1686 36727 {normal=(0.712569 0.181978 -0.677591)} Corner 2082 36727 {normal=(0.88708 0.201574 -0.415279)} Corner 2082 36728 {normal=(0.88708 0.201574 -0.415279)} Corner 2232 36728 {normal=(0.88708 0.201574 -0.415279)} Corner 2795 36729 {normal=(0.873324 0.161158 -0.45971)} Corner 2234 36729 {normal=(0.874604 0.149574 -0.461189)} Corner 2234 36730 {normal=(0.874604 0.149574 -0.461189)} Corner 1914 36730 {normal=(0.851956 0.284125 -0.439822)} Corner 1914 36731 {normal=(0.851956 0.284125 -0.439822)} Corner 2621 36731 {normal=(0.851956 0.284125 -0.439822)} Corner 2621 36732 {normal=(0.851956 0.284125 -0.439822)} Corner 2795 36732 {normal=(0.873324 0.161158 -0.45971)} Corner 2830 36733 {normal=(0.888873 -0.0338089 -0.456904)} Corner 2304 36733 {normal=(0.889035 -0.0351261 -0.456491)} Corner 2304 36734 {normal=(0.889035 -0.0351261 -0.456491)} Corner 2234 36734 {normal=(0.874604 0.149574 -0.461189)} Corner 2234 36735 {normal=(0.874604 0.149574 -0.461189)} Corner 2795 36735 {normal=(0.873324 0.161158 -0.45971)} Corner 2795 36736 {normal=(0.873324 0.161158 -0.45971)} Corner 2830 36736 {normal=(0.888873 -0.0338089 -0.456904)} Corner 2684 36737 {normal=(0.899297 -0.0759705 -0.43069)} Corner 2154 36737 {normal=(0.899836 -0.0744599 -0.429826)} Corner 2154 36738 {normal=(0.899836 -0.0744599 -0.429826)} Corner 2304 36738 {normal=(0.889035 -0.0351261 -0.456491)} Corner 2304 36739 {normal=(0.889035 -0.0351261 -0.456491)} Corner 2830 36739 {normal=(0.888873 -0.0338089 -0.456904)} Corner 2830 36740 {normal=(0.888873 -0.0338089 -0.456904)} Corner 2684 36740 {normal=(0.899297 -0.0759705 -0.43069)} Corner 2648 36741 {normal=(0.877079 -0.417053 -0.238325)} Corner 2060 36741 {normal=(0.859299 -0.304695 -0.410811)} Corner 2060 36742 {normal=(0.859299 -0.304695 -0.410811)} Corner 2154 36742 {normal=(0.899836 -0.0744599 -0.429826)} Corner 2154 36743 {normal=(0.899836 -0.0744599 -0.429826)} Corner 2684 36743 {normal=(0.899297 -0.0759705 -0.43069)} Corner 2684 36744 {normal=(0.899297 -0.0759705 -0.43069)} Corner 2648 36744 {normal=(0.877079 -0.417053 -0.238325)} Corner 1316 36745 {normal=(-0.0157145 -0.999852 -0.00695027)} Corner 1419 36745 {normal=(-0.0157145 -0.999852 -0.00695027)} Corner 1419 36746 {normal=(-0.0157145 -0.999852 -0.00695027)} Corner 1880 36746 {normal=(-0.0157145 -0.999852 -0.00695027)} Corner 1880 36747 {normal=(-0.0157145 -0.999852 -0.00695027)} Corner 1685 36747 {normal=(-0.0157145 -0.999852 -0.00695027)} Corner 1685 36748 {normal=(-0.0157145 -0.999852 -0.00695027)} Corner 1316 36748 {normal=(-0.0157145 -0.999852 -0.00695027)} Corner 1877 36749 {normal=(-0.00787849 -0.999969 0.000809694)} Corner 2461 36749 {normal=(-0.00787849 -0.999969 0.000809694)} Corner 2461 36750 {normal=(-0.00787849 -0.999969 0.000809694)} Corner 2211 36750 {normal=(-0.00373078 -0.999993 0.000396875)} Corner 2211 36751 {normal=(-0.00373078 -0.999993 0.000396875)} Corner 1622 36751 {normal=(-0.00230554 -0.999997 0.000255022)} Corner 1622 36752 {normal=(-0.00230554 -0.999997 0.000255022)} Corner 1877 36752 {normal=(-0.00787849 -0.999969 0.000809694)} Corner 1128 36753 {normal=(-0.97515 0.161774 -0.151366)} Corner 1150 36753 {normal=(-0.981384 0.0790208 -0.175045)} Corner 1150 36754 {normal=(-0.981384 0.0790208 -0.175045)} Corner 1128 36756 {normal=(-0.97515 0.161774 -0.151366)} Corner 1173 36757 {normal=(0 -1 0)} Corner 1271 36757 {normal=(0 -1 0)} Corner 1271 36758 {normal=(0 -1 0)} Corner 1732 36758 {normal=(0 -1 0)} Corner 1732 36759 {normal=(0 -1 0)} Corner 1601 36759 {normal=(0 -1 0)} Corner 1601 36760 {normal=(0 -1 0)} Corner 1173 36760 {normal=(0 -1 0)} Corner 1557 36761 {normal=(0.931802 0.015416 0.36264)} Corner 1517 36761 {normal=(0.931682 0.0158009 0.362932)} Corner 1517 36762 {normal=(0.931682 0.0158009 0.362932)} Corner 1520 36762 {normal=(0.926478 0.0317794 0.375004)} Corner 1520 36763 {normal=(0.926478 0.0317794 0.375004)} Corner 1567 36763 {normal=(0.926478 0.0317794 0.375004)} Corner 1567 36764 {normal=(0.926478 0.0317794 0.375004)} Corner 1557 36764 {normal=(0.931802 0.015416 0.36264)} Corner 1553 36765 {normal=(0.936621 -0.000655751 0.350343)} Corner 1521 36765 {normal=(0.936621 -0.000655751 0.350343)} Corner 1521 36766 {normal=(0.936621 -0.000655751 0.350343)} Corner 1517 36766 {normal=(0.931682 0.0158009 0.362932)} Corner 1517 36767 {normal=(0.931682 0.0158009 0.362932)} Corner 1557 36767 {normal=(0.931802 0.015416 0.36264)} Corner 1557 36768 {normal=(0.931802 0.015416 0.36264)} Corner 1553 36768 {normal=(0.936621 -0.000655751 0.350343)} Corner 1519 36769 {normal=(0.595356 0.71034 0.375457)} Corner 1478 36769 {normal=(0.604941 0.702748 0.374421)} Corner 1478 36770 {normal=(0.604941 0.702748 0.374421)} Corner 1521 36770 {normal=(0.729441 0.585339 0.35397)} Corner 1521 36771 {normal=(0.729441 0.585339 0.35397)} Corner 1553 36771 {normal=(0.729441 0.585339 0.35397)} Corner 1553 36772 {normal=(0.729441 0.585339 0.35397)} Corner 1519 36772 {normal=(0.595356 0.71034 0.375457)} Corner 1366 36773 {normal=(0.157891 0.938295 0.30769)} Corner 1478 36773 {normal=(0.604941 0.702748 0.374421)} Corner 1478 36774 {normal=(0.604941 0.702748 0.374421)} Corner 1519 36774 {normal=(0.595356 0.71034 0.375457)} Corner 1519 36775 {normal=(0.595356 0.71034 0.375457)} Corner 1443 36775 {normal=(0.156341 0.93871 0.307215)} Corner 1443 36776 {normal=(0.156341 0.93871 0.307215)} Corner 1366 36776 {normal=(0.157891 0.938295 0.30769)} Corner 1178 36777 {normal=(-0.224793 0.95973 0.16848)} Corner 1135 36777 {normal=(-0.224902 0.959713 0.168434)} Corner 1135 36778 {normal=(-0.224902 0.959713 0.168434)} Corner 1366 36778 {normal=(0.157891 0.938295 0.30769)} Corner 1366 36779 {normal=(0.157891 0.938295 0.30769)} Corner 1443 36779 {normal=(0.156341 0.93871 0.307215)} Corner 1443 36780 {normal=(0.156341 0.93871 0.307215)} Corner 1178 36780 {normal=(-0.224793 0.95973 0.16848)} Corner 1082 36781 {normal=(-0.289148 0.946954 0.140253)} Corner 1048 36781 {normal=(-0.289148 0.946954 0.140253)} Corner 1048 36782 {normal=(-0.289148 0.946954 0.140253)} Corner 1135 36782 {normal=(-0.224902 0.959713 0.168434)} Corner 1135 36783 {normal=(-0.224902 0.959713 0.168434)} Corner 1178 36783 {normal=(-0.224793 0.95973 0.16848)} Corner 1178 36784 {normal=(-0.224793 0.95973 0.16848)} Corner 1082 36784 {normal=(-0.289148 0.946954 0.140253)} Corner 1036 36785 {normal=(-0.898922 0.327686 -0.290793)} Corner 995 36785 {normal=(-0.902325 0.314679 -0.294595)} Corner 995 36786 {normal=(-0.902325 0.314679 -0.294595)} Corner 1048 36786 {normal=(-0.840889 0.486077 -0.237981)} Corner 1048 36787 {normal=(-0.840889 0.486077 -0.237981)} Corner 1082 36787 {normal=(-0.840889 0.486077 -0.237981)} Corner 1082 36788 {normal=(-0.840889 0.486077 -0.237981)} Corner 1036 36788 {normal=(-0.898922 0.327686 -0.290793)} Corner 1017 36789 {normal=(-0.93324 0.0897238 -0.347869)} Corner 971 36789 {normal=(-0.933299 0.0877313 -0.348218)} Corner 971 36790 {normal=(-0.933299 0.0877313 -0.348218)} Corner 995 36790 {normal=(-0.902325 0.314679 -0.294595)} Corner 995 36791 {normal=(-0.902325 0.314679 -0.294595)} Corner 1036 36791 {normal=(-0.898922 0.327686 -0.290793)} Corner 1036 36792 {normal=(-0.898922 0.327686 -0.290793)} Corner 1017 36792 {normal=(-0.93324 0.0897238 -0.347869)} Corner 1016 36793 {normal=(-0.93337 0.0302482 -0.357639)} Corner 966 36793 {normal=(-0.93337 0.0302482 -0.357639)} Corner 966 36794 {normal=(-0.93337 0.0302482 -0.357639)} Corner 971 36794 {normal=(-0.933299 0.0877313 -0.348218)} Corner 971 36795 {normal=(-0.933299 0.0877313 -0.348218)} Corner 1017 36795 {normal=(-0.93324 0.0897238 -0.347869)} Corner 1017 36796 {normal=(-0.93324 0.0897238 -0.347869)} Corner 1016 36796 {normal=(-0.93337 0.0302482 -0.357639)} Corner 1611 36797 {normal=(-0.015093 0.0262476 -0.999542)} Corner 1458 36797 {normal=(-0.676221 0.00925557 -0.736641)} Corner 1458 36798 {normal=(-0.676221 0.00925557 -0.736641)} Corner 1611 36800 {normal=(-0.015093 0.0262476 -0.999542)} Corner 1458 36801 {normal=(-0.676221 0.00925557 -0.736641)} Corner 1238 36801 {normal=(-0.894825 0.0414587 -0.444489)} Corner 1238 36802 {normal=(-0.894825 0.0414587 -0.444489)} Corner 1458 36804 {normal=(-0.676221 0.00925557 -0.736641)} Corner 1238 36805 {normal=(-0.894825 0.0414587 -0.444489)} Corner 1213 36805 {normal=(-0.999258 0.0383656 -0.00342954)} Corner 1213 36806 {normal=(-0.999258 0.0383656 -0.00342954)} Corner 1238 36808 {normal=(-0.894825 0.0414587 -0.444489)} Corner 1213 36809 {normal=(-0.999258 0.0383656 -0.00342954)} Corner 1280 36809 {normal=(-0.808667 0.0537206 0.585808)} Corner 1280 36810 {normal=(-0.808667 0.0537206 0.585808)} Corner 1213 36812 {normal=(-0.999258 0.0383656 -0.00342954)} Corner 1280 36813 {normal=(-0.808667 0.0537206 0.585808)} Corner 1590 36813 {normal=(-0.0988593 0.0704348 0.992606)} Corner 1590 36814 {normal=(-0.0988593 0.0704348 0.992606)} Corner 1280 36816 {normal=(-0.808667 0.0537206 0.585808)} Corner 1590 36817 {normal=(-0.0988593 0.0704348 0.992606)} Corner 1666 36817 {normal=(0.575212 0.0718352 0.814844)} Corner 1666 36818 {normal=(0.575212 0.0718352 0.814844)} Corner 1590 36820 {normal=(-0.0988593 0.0704348 0.992606)} Corner 1666 36821 {normal=(0.575212 0.0718352 0.814844)} Corner 1798 36821 {normal=(0.885154 0.0438612 0.463226)} Corner 1798 36822 {normal=(0.885154 0.0438612 0.463226)} Corner 1666 36824 {normal=(0.575212 0.0718352 0.814844)} Corner 1798 36825 {normal=(0.885154 0.0438612 0.463226)} Corner 1798 36828 {normal=(0.885154 0.0438612 0.463226)} Corner 2517 36829 {normal=(0.984445 -0.0348826 -0.172193)} Corner 2517 36830 {normal=(0.984445 -0.0348826 -0.172193)} Corner 1762 36833 {normal=(0.699432 -0.0256923 -0.714237)} Corner 1611 36833 {normal=(-0.015093 0.0262476 -0.999542)} Corner 1611 36834 {normal=(-0.015093 0.0262476 -0.999542)} Corner 1762 36836 {normal=(0.699432 -0.0256923 -0.714237)} Corner 1707 36837 {normal=(0.729423 0.184251 -0.658782)} Corner 1628 36837 {normal=(0.0218794 0.124831 -0.991937)} Corner 1628 36838 {normal=(0.0218794 0.124831 -0.991937)} Corner 1615 36838 {normal=(0.105432 0.131005 -0.985759)} Corner 1615 36839 {normal=(0.105432 0.131005 -0.985759)} Corner 1686 36839 {normal=(0.712569 0.181978 -0.677591)} Corner 1686 36840 {normal=(0.712569 0.181978 -0.677591)} Corner 1707 36840 {normal=(0.729423 0.184251 -0.658782)} Corner 1669 36841 {normal=(0.875579 0.134587 0.463947)} Corner 1712 36841 {normal=(0.921333 0.0840553 0.379578)} Corner 1712 36842 {normal=(0.921333 0.0840553 0.379578)} Corner 2025 36842 {normal=(0.957924 0.0920837 0.27185)} Corner 2025 36843 {normal=(0.957924 0.0920837 0.27185)} Corner 1702 36843 {normal=(0.887152 0.123905 0.444532)} Corner 1702 36844 {normal=(0.887152 0.123905 0.444532)} Corner 1669 36844 {normal=(0.875579 0.134587 0.463947)} Corner 1648 36846 {normal=(0.676587 0.362394 0.641015)} Corner 1648 36847 {normal=(0.676587 0.362394 0.641015)} Corner 1583 36847 {normal=(0.00671066 0.738814 0.673876)} Corner 1583 36848 {normal=(0.00671066 0.738814 0.673876)} Corner 1128 36849 {normal=(-0.80128 0.571291 0.177699)} Corner 1128 36850 {normal=(-0.80128 0.571291 0.177699)} Corner 1110 36850 {normal=(-0.7226 0.660748 0.203126)} Corner 1110 36851 {normal=(-0.7226 0.660748 0.203126)} Corner 1637 36853 {normal=(0.50691 0.538444 0.673142)} Corner 1649 36853 {normal=(0.689407 0.376666 0.618741)} Corner 1649 36854 {normal=(0.689407 0.376666 0.618741)} Corner 1598 36854 {normal=(-0.0395833 0.744261 0.666715)} Corner 1598 36855 {normal=(-0.0395833 0.744261 0.666715)} Corner 1589 36855 {normal=(-0.0189398 0.74245 0.669634)} Corner 1589 36856 {normal=(-0.0189398 0.74245 0.669634)} Corner 1637 36856 {normal=(0.50691 0.538444 0.673142)} Corner 1583 36861 {normal=(0.00671066 0.738814 0.673876)} Corner 1251 36861 {normal=(-0.628226 0.6916 0.356401)} Corner 1251 36862 {normal=(-0.628226 0.6916 0.356401)} Corner 1583 36864 {normal=(0.00671066 0.738814 0.673876)} Corner 1206 36865 {normal=(-0.91253 0.395356 -0.104799)} Corner 1270 36865 {normal=(-0.919863 0.351842 -0.173376)} Corner 1270 36866 {normal=(-0.919863 0.351842 -0.173376)} Corner 1305 36866 {normal=(-0.889568 0.148765 -0.4319)} Corner 1305 36867 {normal=(-0.889568 0.148765 -0.4319)} Corner 1242 36867 {normal=(-0.876333 0.118797 -0.466828)} Corner 1242 36868 {normal=(-0.876333 0.118797 -0.466828)} Corner 1206 36868 {normal=(-0.91253 0.395356 -0.104799)} Corner 1598 36873 {normal=(-0.0395833 0.744261 0.666715)} Corner 1332 36873 {normal=(-0.668293 0.655498 0.351719)} Corner 1332 36874 {normal=(-0.668293 0.655498 0.351719)} Corner 1304 36874 {normal=(-0.537346 0.705587 0.46196)} Corner 1304 36875 {normal=(-0.537346 0.705587 0.46196)} Corner 1589 36875 {normal=(-0.0189398 0.74245 0.669634)} Corner 1589 36876 {normal=(-0.0189398 0.74245 0.669634)} Corner 1598 36876 {normal=(-0.0395833 0.744261 0.666715)} Corner 1489 36877 {normal=(-0.577426 0.0668232 -0.813704)} Corner 1615 36877 {normal=(0.105432 0.131005 -0.985759)} Corner 1615 36878 {normal=(0.105432 0.131005 -0.985759)} Corner 1628 36878 {normal=(0.0218794 0.124831 -0.991937)} Corner 1628 36879 {normal=(0.0218794 0.124831 -0.991937)} Corner 1503 36879 {normal=(-0.642382 0.0601608 -0.76402)} Corner 1503 36880 {normal=(-0.642382 0.0601608 -0.76402)} Corner 1489 36880 {normal=(-0.577426 0.0668232 -0.813704)} Corner 1304 36881 {normal=(-0.537346 0.705587 0.46196)} Corner 1332 36881 {normal=(-0.668293 0.655498 0.351719)} Corner 1332 36882 {normal=(-0.668293 0.655498 0.351719)} Corner 1270 36882 {normal=(-0.919863 0.351842 -0.173376)} Corner 1270 36883 {normal=(-0.919863 0.351842 -0.173376)} Corner 1206 36883 {normal=(-0.91253 0.395356 -0.104799)} Corner 1206 36884 {normal=(-0.91253 0.395356 -0.104799)} Corner 1304 36884 {normal=(-0.537346 0.705587 0.46196)} Corner 1251 36885 {normal=(-0.628226 0.6916 0.356401)} Corner 1150 36885 {normal=(-0.817032 0.547902 0.179619)} Corner 1150 36886 {normal=(-0.817032 0.547902 0.179619)} Corner 1128 36886 {normal=(-0.80128 0.571291 0.177699)} Corner 1128 36887 {normal=(-0.80128 0.571291 0.177699)} Corner 1251 36888 {normal=(-0.628226 0.6916 0.356401)} Corner 1311 36889 {normal=(0.284235 0.762055 -0.581793)} Corner 3309 36889 {normal=(0.269088 0.793095 -0.546436)} Corner 3309 36890 {normal=(0.269088 0.793095 -0.546436)} Corner 3302 36890 {normal=(0.170921 0.932101 -0.319333)} Corner 3302 36891 {normal=(0.170921 0.932101 -0.319333)} Corner 1500 36891 {normal=(0.171136 0.931826 -0.320019)} Corner 1500 36892 {normal=(0.171136 0.931826 -0.320019)} Corner 1311 36892 {normal=(0.284235 0.762055 -0.581793)} Corner 1638 36893 {normal=(0.464483 0.122715 -0.877039)} Corner 2234 36893 {normal=(0.464387 0.123584 -0.876967)} Corner 2234 36894 {normal=(0.464387 0.123584 -0.876967)} Corner 2304 36894 {normal=(0.464621 -0.0128051 -0.885417)} Corner 2304 36895 {normal=(0.464621 -0.0128051 -0.885417)} Corner 1641 36895 {normal=(0.4646 -0.0129022 -0.885427)} Corner 1641 36896 {normal=(0.4646 -0.0129022 -0.885427)} Corner 1638 36896 {normal=(0.464483 0.122715 -0.877039)} Corner 1638 36897 {normal=(-0.367289 0.0846275 -0.926249)} Corner 1638 36898 {normal=(-0.367289 0.0846275 -0.926249)} Corner 1641 36898 {normal=(-0.335782 -0.000673199 -0.941939)} Corner 1641 36899 {normal=(-0.335782 -0.000673199 -0.941939)} Corner 1292 36901 {normal=(-0.763308 0.0584479 -0.643386)} Corner 1312 36903 {normal=(-0.794137 -0.0362593 -0.606657)} Corner 1312 36904 {normal=(-0.794137 -0.0362593 -0.606657)} Corner 1292 36904 {normal=(-0.763308 0.0584479 -0.643386)} Corner 1239 36905 {normal=(-0.846915 0.0397246 -0.530242)} Corner 1350 36905 {normal=(-0.830536 0.0353789 -0.55584)} Corner 1350 36906 {normal=(-0.830536 0.0353789 -0.55584)} Corner 1365 36906 {normal=(-0.839565 -0.11592 -0.530748)} Corner 1365 36907 {normal=(-0.839565 -0.11592 -0.530748)} Corner 1252 36907 {normal=(-0.840023 -0.104154 -0.532459)} Corner 1252 36908 {normal=(-0.840023 -0.104154 -0.532459)} Corner 1239 36908 {normal=(-0.846915 0.0397246 -0.530242)} Corner 1191 36909 {normal=(-0.961132 0.0478924 -0.271905)} Corner 1191 36910 {normal=(-0.961132 0.0478924 -0.271905)} Corner 1201 36910 {normal=(-0.936353 -0.0738889 -0.343197)} Corner 1201 36911 {normal=(-0.936353 -0.0738889 -0.343197)} Corner 1059 36917 {normal=(-0.904266 0.380243 -0.19421)} Corner 1059 36920 {normal=(-0.904266 0.380243 -0.19421)} Corner 1483 36921 {normal=(-0.55313 0.00661678 -0.833069)} Corner 1623 36921 {normal=(-0.389073 0.0869761 -0.917092)} Corner 1623 36922 {normal=(-0.389073 0.0869761 -0.917092)} Corner 1638 36922 {normal=(-0.367289 0.0846275 -0.926249)} Corner 1638 36923 {normal=(-0.367289 0.0846275 -0.926249)} Corner 1483 36924 {normal=(-0.55313 0.00661678 -0.833069)} Corner 1329 36925 {normal=(-0.836927 0.0674515 -0.543142)} Corner 1489 36925 {normal=(-0.577426 0.0668232 -0.813704)} Corner 1489 36926 {normal=(-0.577426 0.0668232 -0.813704)} Corner 1503 36926 {normal=(-0.642382 0.0601608 -0.76402)} Corner 1503 36927 {normal=(-0.642382 0.0601608 -0.76402)} Corner 1350 36927 {normal=(-0.830536 0.0353789 -0.55584)} Corner 1350 36928 {normal=(-0.830536 0.0353789 -0.55584)} Corner 1329 36928 {normal=(-0.836927 0.0674515 -0.543142)} Corner 1242 36929 {normal=(-0.876333 0.118797 -0.466828)} Corner 1329 36929 {normal=(-0.836927 0.0674515 -0.543142)} Corner 1329 36930 {normal=(-0.836927 0.0674515 -0.543142)} Corner 1350 36930 {normal=(-0.830536 0.0353789 -0.55584)} Corner 1350 36931 {normal=(-0.830536 0.0353789 -0.55584)} Corner 1239 36931 {normal=(-0.846915 0.0397246 -0.530242)} Corner 1239 36932 {normal=(-0.846915 0.0397246 -0.530242)} Corner 1242 36932 {normal=(-0.876333 0.118797 -0.466828)} Corner 1188 36933 {normal=(-0.976187 0.0424635 -0.212736)} Corner 1150 36934 {normal=(-0.981384 0.0790208 -0.175045)} Corner 1150 36935 {normal=(-0.981384 0.0790208 -0.175045)} Corner 1158 36935 {normal=(-0.98103 0.0389605 -0.189902)} Corner 1158 36936 {normal=(-0.98103 0.0389605 -0.189902)} Corner 1188 36936 {normal=(-0.976187 0.0424635 -0.212736)} Corner 2311 36937 {normal=(0.95743 0.0672609 0.280722)} Corner 2232 36937 {normal=(0.983031 0.12505 0.134214)} Corner 2232 36938 {normal=(0.983031 0.12505 0.134214)} Corner 2082 36938 {normal=(0.983031 0.12505 0.134214)} Corner 2082 36939 {normal=(0.983031 0.12505 0.134214)} Corner 2025 36939 {normal=(0.957924 0.0920837 0.27185)} Corner 2025 36940 {normal=(0.957924 0.0920837 0.27185)} Corner 2311 36940 {normal=(0.95743 0.0672609 0.280722)} Corner 1774 36941 {normal=(0.936711 0.042744 0.347486)} Corner 2311 36941 {normal=(0.95743 0.0672609 0.280722)} Corner 2311 36942 {normal=(0.95743 0.0672609 0.280722)} Corner 2025 36942 {normal=(0.957924 0.0920837 0.27185)} Corner 2025 36943 {normal=(0.957924 0.0920837 0.27185)} Corner 1712 36943 {normal=(0.921333 0.0840553 0.379578)} Corner 1712 36944 {normal=(0.921333 0.0840553 0.379578)} Corner 1774 36944 {normal=(0.936711 0.042744 0.347486)} Corner 1648 36946 {normal=(0.676587 0.362394 0.641015)} Corner 1648 36947 {normal=(0.676587 0.362394 0.641015)} Corner 1621 36949 {normal=(0.867625 -0.0014116 0.497218)} Corner 1621 36950 {normal=(0.867625 -0.0014116 0.497218)} Corner 1954 36950 {normal=(0.792612 -0.00310954 0.609719)} Corner 1954 36951 {normal=(0.792612 -0.00310954 0.609719)} Corner 1950 36951 {normal=(0.801228 -0.114618 0.587278)} Corner 1950 36952 {normal=(0.801228 -0.114618 0.587278)} Corner 1950 36954 {normal=(0.801228 -0.114618 0.587278)} Corner 1950 36955 {normal=(0.801228 -0.114618 0.587278)} Corner 2214 36955 {normal=(0.838102 -0.131419 0.529447)} Corner 2214 36956 {normal=(0.838102 -0.131419 0.529447)} Corner 2214 36958 {normal=(0.838102 -0.131419 0.529447)} Corner 2214 36959 {normal=(0.838102 -0.131419 0.529447)} Corner 2188 36959 {normal=(0.876826 -0.0381892 0.479289)} Corner 2188 36960 {normal=(0.876826 -0.0381892 0.479289)} Corner 1144 36961 {normal=(-0.906208 -0.00843578 -0.422748)} Corner 1144 36962 {normal=(-0.906208 -0.00843578 -0.422748)} Corner 1102 36962 {normal=(-0.902864 -0.0238509 -0.429264)} Corner 1102 36963 {normal=(-0.902864 -0.0238509 -0.429264)} Corner 1447 36969 {normal=(0.305963 0.863737 0.400432)} Corner 1545 36969 {normal=(0.838105 0.545221 -0.0177232)} Corner 1545 36970 {normal=(0.838105 0.545221 -0.0177232)} Corner 1447 36972 {normal=(0.305963 0.863737 0.400432)} Corner 1493 36973 {normal=(0.55478 0.80482 0.21091)} Corner 1370 36973 {normal=(0.137786 0.981671 0.131668)} Corner 1370 36974 {normal=(0.137786 0.981671 0.131668)} Corner 1493 36976 {normal=(0.55478 0.80482 0.21091)} Corner 1433 36977 {normal=(0.457624 0.679881 0.573011)} Corner 1433 36978 {normal=(0.457624 0.679881 0.573011)} Corner 1526 36978 {normal=(0.703739 0.606014 0.370808)} Corner 1526 36979 {normal=(0.703739 0.606014 0.370808)} Corner 1578 36981 {normal=(0.986778 0.0233895 0.160383)} Corner 1578 36982 {normal=(0.986778 0.0233895 0.160383)} Corner 1621 36982 {normal=(0.867625 -0.0014116 0.497218)} Corner 1621 36983 {normal=(0.867625 -0.0014116 0.497218)} Corner 1595 36993 {normal=(0.988007 0.0455016 -0.147552)} Corner 1595 36994 {normal=(0.988007 0.0455016 -0.147552)} Corner 1578 36994 {normal=(0.986778 0.0233895 0.160383)} Corner 1578 36995 {normal=(0.986778 0.0233895 0.160383)} Corner 1613 37005 {normal=(0.97135 0.0407352 -0.234137)} Corner 1614 37005 {normal=(0.973367 0.0443024 -0.22493)} Corner 1614 37006 {normal=(0.973367 0.0443024 -0.22493)} Corner 1595 37006 {normal=(0.988007 0.0455016 -0.147552)} Corner 1595 37007 {normal=(0.988007 0.0455016 -0.147552)} Corner 1613 37008 {normal=(0.97135 0.0407352 -0.234137)} Corner 1608 37009 {normal=(0.955532 0.205096 -0.211883)} Corner 1613 37009 {normal=(0.97135 0.0407352 -0.234137)} Corner 1613 37010 {normal=(0.97135 0.0407352 -0.234137)} Corner 1608 37012 {normal=(0.955532 0.205096 -0.211883)} Corner 1545 37013 {normal=(0.838105 0.545221 -0.0177232)} Corner 1608 37013 {normal=(0.955532 0.205096 -0.211883)} Corner 1608 37014 {normal=(0.955532 0.205096 -0.211883)} Corner 1545 37016 {normal=(0.838105 0.545221 -0.0177232)} Corner 1285 37017 {normal=(0.481441 0.0075221 0.876446)} Corner 1285 37018 {normal=(0.481441 0.0075221 0.876446)} Corner 1457 37018 {normal=(0.758446 0.0035056 0.651727)} Corner 1457 37019 {normal=(0.758446 0.0035056 0.651727)} Corner 1244 37021 {normal=(0.451289 0.226074 0.863267)} Corner 1433 37023 {normal=(0.732499 0.152835 0.66339)} Corner 1433 37024 {normal=(0.732499 0.152835 0.66339)} Corner 1244 37024 {normal=(0.451289 0.226074 0.863267)} Corner 1102 37025 {normal=(-0.902864 -0.0238509 -0.429264)} Corner 1102 37026 {normal=(-0.902864 -0.0238509 -0.429264)} Corner 1014 37026 {normal=(-0.916749 -0.0337738 -0.398033)} Corner 1014 37027 {normal=(-0.916749 -0.0337738 -0.398033)} Corner 1110 37033 {normal=(-0.7226 0.660748 0.203126)} Corner 1110 37034 {normal=(-0.7226 0.660748 0.203126)} Corner 1059 37034 {normal=(-0.570519 0.758434 0.315096)} Corner 1059 37035 {normal=(-0.570519 0.758434 0.315096)} Corner 962 37037 {normal=(-0.353763 0.912979 0.203277)} Corner 907 37037 {normal=(-0.534997 0.764104 0.360448)} Corner 907 37038 {normal=(-0.534997 0.764104 0.360448)} Corner 989 37038 {normal=(-0.362895 0.828598 0.426301)} Corner 989 37039 {normal=(-0.362895 0.828598 0.426301)} Corner 962 37040 {normal=(-0.353763 0.912979 0.203277)} Corner 1014 37041 {normal=(-0.916749 -0.0337738 -0.398033)} Corner 1014 37042 {normal=(-0.916749 -0.0337738 -0.398033)} Corner 965 37042 {normal=(-0.930445 -0.0305283 -0.365158)} Corner 965 37043 {normal=(-0.930445 -0.0305283 -0.365158)} Corner 963 37043 {normal=(-0.944424 0.0374386 -0.326592)} Corner 963 37044 {normal=(-0.944424 0.0374386 -0.326592)} Corner 963 37046 {normal=(-0.944424 0.0374386 -0.326592)} Corner 963 37047 {normal=(-0.944424 0.0374386 -0.326592)} Corner 990 37047 {normal=(-0.93721 0.276342 -0.212774)} Corner 990 37048 {normal=(-0.93721 0.276342 -0.212774)} Corner 1059 37049 {normal=(-0.904266 0.380243 -0.19421)} Corner 990 37050 {normal=(-0.93721 0.276342 -0.212774)} Corner 990 37051 {normal=(-0.93721 0.276342 -0.212774)} Corner 1052 37051 {normal=(-0.894104 0.425578 -0.139507)} Corner 1052 37052 {normal=(-0.894104 0.425578 -0.139507)} Corner 1059 37052 {normal=(-0.904266 0.380243 -0.19421)} Corner 1059 37053 {normal=(-0.570519 0.758434 0.315096)} Corner 1059 37054 {normal=(-0.570519 0.758434 0.315096)} Corner 1052 37054 {normal=(-0.504899 0.759721 0.409758)} Corner 1052 37055 {normal=(-0.504899 0.759721 0.409758)} Corner 1166 37055 {normal=(-0.362097 0.793991 0.488328)} Corner 1166 37056 {normal=(-0.362097 0.793991 0.488328)} Corner 935 37057 {normal=(-0.939878 0.0763658 -0.332864)} Corner 934 37057 {normal=(-0.946831 0.0160895 -0.321329)} Corner 934 37058 {normal=(-0.946831 0.0160895 -0.321329)} Corner 893 37058 {normal=(-0.9819 0.0201398 -0.188328)} Corner 893 37059 {normal=(-0.9819 0.0201398 -0.188328)} Corner 935 37060 {normal=(-0.939878 0.0763658 -0.332864)} Corner 951 37061 {normal=(-0.880889 0.340691 -0.32858)} Corner 935 37061 {normal=(-0.939878 0.0763658 -0.332864)} Corner 935 37062 {normal=(-0.939878 0.0763658 -0.332864)} Corner 951 37064 {normal=(-0.880889 0.340691 -0.32858)} Corner 1015 37065 {normal=(-0.788446 0.539029 -0.29631)} Corner 951 37065 {normal=(-0.880889 0.340691 -0.32858)} Corner 951 37066 {normal=(-0.880889 0.340691 -0.32858)} Corner 972 37067 {normal=(-0.823333 0.545918 -0.15523)} Corner 972 37068 {normal=(-0.823333 0.545918 -0.15523)} Corner 1015 37068 {normal=(-0.788446 0.539029 -0.29631)} Corner 1120 37069 {normal=(-0.185918 0.982483 0.0126949)} Corner 1015 37069 {normal=(-0.272574 0.961589 -0.0324126)} Corner 1015 37070 {normal=(-0.272574 0.961589 -0.0324126)} Corner 972 37070 {normal=(-0.282432 0.959253 -0.0080704)} Corner 972 37071 {normal=(-0.282432 0.959253 -0.0080704)} Corner 1120 37072 {normal=(-0.185918 0.982483 0.0126949)} Corner 1502 37077 {normal=(-0.62745 0.0137745 -0.778535)} Corner 1353 37077 {normal=(-0.813757 0.000301535 -0.581206)} Corner 1353 37078 {normal=(-0.813757 0.000301535 -0.581206)} Corner 1352 37078 {normal=(-0.810732 -0.104092 -0.576088)} Corner 1352 37079 {normal=(-0.810732 -0.104092 -0.576088)} Corner 1502 37080 {normal=(-0.62745 0.0137745 -0.778535)} Corner 1457 37081 {normal=(0.758446 0.0035056 0.651727)} Corner 1532 37081 {normal=(0.930395 0.0176448 0.366134)} Corner 1532 37082 {normal=(0.930395 0.0176448 0.366134)} Corner 1457 37084 {normal=(0.758446 0.0035056 0.651727)} Corner 2060 37085 {normal=(0.394184 -0.238698 -0.887492)} Corner 1619 37085 {normal=(0.391826 -0.256204 -0.883647)} Corner 1619 37086 {normal=(0.391826 -0.256204 -0.883647)} Corner 1632 37086 {normal=(0.433201 -0.0431431 -0.900264)} Corner 1632 37087 {normal=(0.433201 -0.0431431 -0.900264)} Corner 2154 37087 {normal=(0.43492 -0.0439279 -0.899397)} Corner 2154 37088 {normal=(0.43492 -0.0439279 -0.899397)} Corner 2060 37088 {normal=(0.394184 -0.238698 -0.887492)} Corner 1559 37089 {normal=(0.765794 0.604494 0.219425)} Corner 1493 37089 {normal=(0.55478 0.80482 0.21091)} Corner 1493 37090 {normal=(0.55478 0.80482 0.21091)} Corner 1526 37091 {normal=(0.703739 0.606014 0.370808)} Corner 1526 37092 {normal=(0.703739 0.606014 0.370808)} Corner 1559 37092 {normal=(0.765794 0.604494 0.219425)} Corner 2311 37093 {normal=(0.95743 0.0672609 0.280722)} Corner 1774 37093 {normal=(0.936711 0.042744 0.347486)} Corner 1774 37094 {normal=(0.936711 0.042744 0.347486)} Corner 1780 37094 {normal=(0.933231 -0.0828959 0.349584)} Corner 1780 37095 {normal=(0.933231 -0.0828959 0.349584)} Corner 2397 37095 {normal=(0.933595 -0.0762079 0.350132)} Corner 2397 37096 {normal=(0.933595 -0.0762079 0.350132)} Corner 2311 37096 {normal=(0.95743 0.0672609 0.280722)} Corner 2397 37097 {normal=(0.933595 -0.0762079 0.350132)} Corner 1780 37097 {normal=(0.933231 -0.0828959 0.349584)} Corner 1780 37098 {normal=(0.933231 -0.0828959 0.349584)} Corner 1708 37098 {normal=(0.942336 0.0096576 0.334529)} Corner 1708 37099 {normal=(0.942336 0.0096576 0.334529)} Corner 2044 37099 {normal=(0.942271 0.00436779 0.334824)} Corner 2044 37100 {normal=(0.942271 0.00436779 0.334824)} Corner 2397 37100 {normal=(0.933595 -0.0762079 0.350132)} Corner 1623 37101 {normal=(0.451303 0.221246 -0.864509)} Corner 1914 37101 {normal=(0.451303 0.221246 -0.864509)} Corner 1914 37102 {normal=(0.451303 0.221246 -0.864509)} Corner 2234 37102 {normal=(0.464387 0.123584 -0.876967)} Corner 2234 37103 {normal=(0.464387 0.123584 -0.876967)} Corner 1638 37103 {normal=(0.464483 0.122715 -0.877039)} Corner 1638 37104 {normal=(0.464483 0.122715 -0.877039)} Corner 1623 37104 {normal=(0.451303 0.221246 -0.864509)} Corner 2830 37105 {normal=(0.991649 -0.0735729 0.105919)} Corner 2718 37105 {normal=(0.991628 -0.0738115 0.105951)} Corner 2718 37106 {normal=(0.991628 -0.0738115 0.105951)} Corner 2491 37106 {normal=(0.986565 -0.104556 0.125532)} Corner 2491 37107 {normal=(0.986565 -0.104556 0.125532)} Corner 2684 37107 {normal=(0.986848 -0.101556 0.125769)} Corner 2684 37108 {normal=(0.986848 -0.101556 0.125769)} Corner 2830 37108 {normal=(0.991649 -0.0735729 0.105919)} Corner 1312 37109 {normal=(-0.794137 -0.0362593 -0.606657)} Corner 1352 37111 {normal=(-0.810732 -0.104092 -0.576088)} Corner 1352 37112 {normal=(-0.810732 -0.104092 -0.576088)} Corner 1312 37112 {normal=(-0.794137 -0.0362593 -0.606657)} Corner 1526 37113 {normal=(0.9168 0.0390216 0.397435)} Corner 1562 37114 {normal=(0.956068 0.0117377 0.292911)} Corner 1562 37115 {normal=(0.956068 0.0117377 0.292911)} Corner 1559 37115 {normal=(0.957075 -0.00105636 0.28984)} Corner 1559 37116 {normal=(0.957075 -0.00105636 0.28984)} Corner 1526 37116 {normal=(0.9168 0.0390216 0.397435)} Corner 989 37117 {normal=(-0.362895 0.828598 0.426301)} Corner 989 37118 {normal=(-0.362895 0.828598 0.426301)} Corner 1115 37118 {normal=(-0.0777213 0.841021 0.535391)} Corner 1115 37119 {normal=(-0.0777213 0.841021 0.535391)} Corner 1568 37121 {normal=(0.954761 0.0258756 0.296246)} Corner 1562 37121 {normal=(0.956068 0.0117377 0.292911)} Corner 1562 37122 {normal=(0.956068 0.0117377 0.292911)} Corner 1532 37123 {normal=(0.930395 0.0176448 0.366134)} Corner 1532 37124 {normal=(0.930395 0.0176448 0.366134)} Corner 1568 37124 {normal=(0.954761 0.0258756 0.296246)} Corner 880 37125 {normal=(-0.852291 -0.0100937 0.52297)} Corner 983 37125 {normal=(-0.720607 -0.0329667 0.69256)} Corner 983 37126 {normal=(-0.720607 -0.0329667 0.69256)} Corner 884 37127 {normal=(-0.854138 0.0856332 0.512948)} Corner 884 37128 {normal=(-0.854138 0.0856332 0.512948)} Corner 880 37128 {normal=(-0.852291 -0.0100937 0.52297)} Corner 1412 37129 {normal=(-0.860201 0.00831142 -0.509888)} Corner 1306 37129 {normal=(-0.860201 0.00831142 -0.509888)} Corner 1306 37130 {normal=(-0.860201 0.00831142 -0.509888)} Corner 1307 37130 {normal=(-0.850704 -0.10751 -0.514533)} Corner 1307 37131 {normal=(-0.850704 -0.10751 -0.514533)} Corner 1413 37131 {normal=(-0.85133 -0.10271 -0.514478)} Corner 1413 37132 {normal=(-0.85133 -0.10271 -0.514478)} Corner 1412 37132 {normal=(-0.860201 0.00831142 -0.509888)} Corner 1166 37134 {normal=(-0.362097 0.793991 0.488328)} Corner 1166 37135 {normal=(-0.362097 0.793991 0.488328)} Corner 1447 37135 {normal=(0.305963 0.863737 0.400432)} Corner 1447 37136 {normal=(0.305963 0.863737 0.400432)} Corner 1370 37137 {normal=(0.137786 0.981671 0.131668)} Corner 1120 37137 {normal=(-0.185918 0.982483 0.0126949)} Corner 1120 37138 {normal=(-0.185918 0.982483 0.0126949)} Corner 1370 37140 {normal=(0.137786 0.981671 0.131668)} Corner 1619 37141 {normal=(-0.396052 0.0261731 -0.917855)} Corner 1502 37141 {normal=(-0.62745 0.0137745 -0.778535)} Corner 1502 37142 {normal=(-0.62745 0.0137745 -0.778535)} Corner 1632 37143 {normal=(-0.356608 -0.0362747 -0.93355)} Corner 1632 37144 {normal=(-0.356608 -0.0362747 -0.93355)} Corner 1619 37144 {normal=(-0.396052 0.0261731 -0.917855)} Corner 893 37145 {normal=(-0.9819 0.0201398 -0.188328)} Corner 880 37145 {normal=(-0.998175 0.0237139 -0.0555331)} Corner 880 37146 {normal=(-0.998175 0.0237139 -0.0555331)} Corner 884 37146 {normal=(-0.994809 0.0883183 -0.0505527)} Corner 884 37147 {normal=(-0.994809 0.0883183 -0.0505527)} Corner 893 37148 {normal=(-0.9819 0.0201398 -0.188328)} Corner 1107 37149 {normal=(-0.0677854 -0.0181222 0.997535)} Corner 1285 37149 {normal=(0.481441 0.0075221 0.876446)} Corner 1285 37150 {normal=(0.481441 0.0075221 0.876446)} Corner 1107 37152 {normal=(-0.0677854 -0.0181222 0.997535)} Corner 2493 37153 {normal=(0.990949 -0.0286888 0.131138)} Corner 2648 37153 {normal=(0.990949 -0.0286888 0.131138)} Corner 2648 37154 {normal=(0.990949 -0.0286888 0.131138)} Corner 2684 37154 {normal=(0.986848 -0.101556 0.125769)} Corner 2684 37155 {normal=(0.986848 -0.101556 0.125769)} Corner 2491 37155 {normal=(0.986565 -0.104556 0.125532)} Corner 2491 37156 {normal=(0.986565 -0.104556 0.125532)} Corner 2493 37156 {normal=(0.990949 -0.0286888 0.131138)} Corner 1526 37158 {normal=(0.9168 0.0390216 0.397435)} Corner 1526 37159 {normal=(0.9168 0.0390216 0.397435)} Corner 1433 37159 {normal=(0.732499 0.152835 0.66339)} Corner 1433 37160 {normal=(0.732499 0.152835 0.66339)} Corner 907 37161 {normal=(-0.847783 0.183224 0.497687)} Corner 884 37161 {normal=(-0.854138 0.0856332 0.512948)} Corner 884 37162 {normal=(-0.854138 0.0856332 0.512948)} Corner 989 37163 {normal=(-0.715129 0.231703 0.659472)} Corner 989 37164 {normal=(-0.715129 0.231703 0.659472)} Corner 907 37164 {normal=(-0.847783 0.183224 0.497687)} Corner 1584 37165 {normal=(0 -1 0)} Corner 1533 37165 {normal=(0 -1 0)} Corner 1533 37166 {normal=(0 -1 0)} Corner 955 37166 {normal=(0 -1 0)} Corner 955 37167 {normal=(0 -1 0)} Corner 1002 37167 {normal=(0 -1 0)} Corner 1002 37168 {normal=(0 -1 0)} Corner 1584 37168 {normal=(0 -1 0)} Corner 1115 37169 {normal=(-0.0626632 0.275821 0.959164)} Corner 989 37169 {normal=(-0.715129 0.231703 0.659472)} Corner 989 37170 {normal=(-0.715129 0.231703 0.659472)} Corner 1115 37172 {normal=(-0.0626632 0.275821 0.959164)} Corner 1244 37174 {normal=(0.292446 0.734491 0.612371)} Corner 1244 37175 {normal=(0.292446 0.734491 0.612371)} Corner 1433 37175 {normal=(0.457624 0.679881 0.573011)} Corner 1433 37176 {normal=(0.457624 0.679881 0.573011)} Corner 1201 37177 {normal=(-0.936353 -0.0738889 -0.343197)} Corner 1240 37177 {normal=(-0.911101 -0.0989302 -0.400134)} Corner 1240 37178 {normal=(-0.911101 -0.0989302 -0.400134)} Corner 1201 37180 {normal=(-0.936353 -0.0738889 -0.343197)} Corner 1641 37181 {normal=(-0.335782 -0.000673199 -0.941939)} Corner 1641 37182 {normal=(-0.335782 -0.000673199 -0.941939)} Corner 1632 37182 {normal=(-0.356608 -0.0362747 -0.93355)} Corner 1632 37183 {normal=(-0.356608 -0.0362747 -0.93355)} Corner 2304 37185 {normal=(0.464621 -0.0128051 -0.885417)} Corner 2154 37185 {normal=(0.43492 -0.0439279 -0.899397)} Corner 2154 37186 {normal=(0.43492 -0.0439279 -0.899397)} Corner 1632 37186 {normal=(0.433201 -0.0431431 -0.900264)} Corner 1632 37187 {normal=(0.433201 -0.0431431 -0.900264)} Corner 1641 37187 {normal=(0.4646 -0.0129022 -0.885427)} Corner 1641 37188 {normal=(0.4646 -0.0129022 -0.885427)} Corner 2304 37188 {normal=(0.464621 -0.0128051 -0.885417)} Corner 2795 37189 {normal=(0.990371 0.104265 0.0910777)} Corner 2688 37189 {normal=(0.992555 0.0807745 0.0911643)} Corner 2688 37190 {normal=(0.992555 0.0807745 0.0911643)} Corner 2718 37190 {normal=(0.991628 -0.0738115 0.105951)} Corner 2718 37191 {normal=(0.991628 -0.0738115 0.105951)} Corner 2830 37191 {normal=(0.991649 -0.0735729 0.105919)} Corner 2830 37192 {normal=(0.991649 -0.0735729 0.105919)} Corner 2795 37192 {normal=(0.990371 0.104265 0.0910777)} Corner 907 37193 {normal=(-0.954018 0.297262 -0.0385421)} Corner 907 37194 {normal=(-0.954018 0.297262 -0.0385421)} Corner 962 37194 {normal=(-0.839923 0.542165 -0.0242363)} Corner 962 37195 {normal=(-0.839923 0.542165 -0.0242363)} Corner 972 37195 {normal=(-0.823333 0.545918 -0.15523)} Corner 972 37196 {normal=(-0.823333 0.545918 -0.15523)} Corner 1244 37197 {normal=(0.451289 0.226074 0.863267)} Corner 1115 37197 {normal=(-0.0626632 0.275821 0.959164)} Corner 1115 37198 {normal=(-0.0626632 0.275821 0.959164)} Corner 1244 37200 {normal=(0.451289 0.226074 0.863267)} Corner 1252 37201 {normal=(-0.840023 -0.104154 -0.532459)} Corner 1365 37201 {normal=(-0.839565 -0.11592 -0.530748)} Corner 1365 37202 {normal=(-0.839565 -0.11592 -0.530748)} Corner 1413 37202 {normal=(-0.85133 -0.10271 -0.514478)} Corner 1413 37203 {normal=(-0.85133 -0.10271 -0.514478)} Corner 1307 37203 {normal=(-0.850704 -0.10751 -0.514533)} Corner 1307 37204 {normal=(-0.850704 -0.10751 -0.514533)} Corner 1252 37204 {normal=(-0.840023 -0.104154 -0.532459)} Corner 1737 37205 {normal=(0.926878 0.200156 0.317544)} Corner 2149 37205 {normal=(0.926878 0.200156 0.317544)} Corner 2149 37206 {normal=(0.926878 0.200156 0.317544)} Corner 2044 37206 {normal=(0.942271 0.00436779 0.334824)} Corner 2044 37207 {normal=(0.942271 0.00436779 0.334824)} Corner 1708 37207 {normal=(0.942336 0.0096576 0.334529)} Corner 1708 37208 {normal=(0.942336 0.0096576 0.334529)} Corner 1737 37208 {normal=(0.926878 0.200156 0.317544)} Corner 983 37209 {normal=(-0.720607 -0.0329667 0.69256)} Corner 1107 37209 {normal=(-0.0677854 -0.0181222 0.997535)} Corner 1107 37210 {normal=(-0.0677854 -0.0181222 0.997535)} Corner 983 37212 {normal=(-0.720607 -0.0329667 0.69256)} Corner 1144 37213 {normal=(-0.906208 -0.00843578 -0.422748)} Corner 1240 37214 {normal=(-0.911101 -0.0989302 -0.400134)} Corner 1240 37215 {normal=(-0.911101 -0.0989302 -0.400134)} Corner 1243 37215 {normal=(-0.908819 -0.00467442 -0.417165)} Corner 1243 37216 {normal=(-0.908819 -0.00467442 -0.417165)} Corner 1144 37216 {normal=(-0.906208 -0.00843578 -0.422748)} Corner 884 37217 {normal=(-0.994809 0.0883183 -0.0505527)} Corner 884 37218 {normal=(-0.994809 0.0883183 -0.0505527)} Corner 907 37218 {normal=(-0.954018 0.297262 -0.0385421)} Corner 907 37219 {normal=(-0.954018 0.297262 -0.0385421)} Corner 8069 37225 {normal=(-3.43097e-06 0.832649 -0.553801)} Corner 8068 37225 {normal=(-3.43097e-06 0.832649 -0.553801)} Corner 8068 37226 {normal=(-3.43097e-06 0.832649 -0.553801)} Corner 5540 37226 {normal=(0 0.832649 -0.553801)} Corner 5540 37227 {normal=(0 0.832649 -0.553801)} Corner 5542 37227 {normal=(0 0.832649 -0.553801)} Corner 5542 37228 {normal=(0 0.832649 -0.553801)} Corner 8069 37228 {normal=(-3.43097e-06 0.832649 -0.553801)} Corner 8072 37229 {normal=(-1 4.90892e-05 -0.000224548)} Corner 8073 37229 {normal=(-1 6.47744e-05 -0.000218856)} Corner 8073 37230 {normal=(-1 6.47744e-05 -0.000218856)} Corner 8068 37230 {normal=(-1 9.86183e-05 -0.000206575)} Corner 8068 37231 {normal=(-1 9.86183e-05 -0.000206575)} Corner 8069 37231 {normal=(-1 9.86183e-05 -0.000206575)} Corner 8069 37232 {normal=(-1 9.86183e-05 -0.000206575)} Corner 8072 37232 {normal=(-1 4.90892e-05 -0.000224548)} Corner 8074 37233 {normal=(-1 5.28042e-07 -0.000146699)} Corner 8075 37233 {normal=(-1 1.06095e-05 -0.000178783)} Corner 8075 37234 {normal=(-1 1.06095e-05 -0.000178783)} Corner 8073 37234 {normal=(-1 6.47744e-05 -0.000218856)} Corner 8073 37235 {normal=(-1 6.47744e-05 -0.000218856)} Corner 8072 37235 {normal=(-1 4.90892e-05 -0.000224548)} Corner 8072 37236 {normal=(-1 4.90892e-05 -0.000224548)} Corner 8074 37236 {normal=(-1 5.28042e-07 -0.000146699)} Corner 8076 37237 {normal=(-1 1.82505e-06 0.000121235)} Corner 8077 37237 {normal=(-1 -1.93607e-06 6.12018e-05)} Corner 8077 37238 {normal=(-1 -1.93607e-06 6.12018e-05)} Corner 8075 37238 {normal=(-1 1.06095e-05 -0.000178783)} Corner 8075 37239 {normal=(-1 1.06095e-05 -0.000178783)} Corner 8074 37239 {normal=(-1 5.28042e-07 -0.000146699)} Corner 8074 37240 {normal=(-1 5.28042e-07 -0.000146699)} Corner 8076 37240 {normal=(-1 1.82505e-06 0.000121235)} Corner 8070 37241 {normal=(-1 1.49578e-05 0.000330856)} Corner 8071 37241 {normal=(-1 1.49578e-05 0.000330856)} Corner 8071 37242 {normal=(-1 1.49578e-05 0.000330856)} Corner 8077 37242 {normal=(-1 -1.93607e-06 6.12018e-05)} Corner 8077 37243 {normal=(-1 -1.93607e-06 6.12018e-05)} Corner 8076 37243 {normal=(-1 1.82505e-06 0.000121235)} Corner 8076 37244 {normal=(-1 1.82505e-06 0.000121235)} Corner 8070 37244 {normal=(-1 1.49578e-05 0.000330856)} Corner 5551 37245 {normal=(0 0.419246 0.907873)} Corner 5550 37245 {normal=(0 0.419246 0.907873)} Corner 5550 37246 {normal=(0 0.419246 0.907873)} Corner 8071 37246 {normal=(5.6198e-06 0.419246 0.907873)} Corner 8071 37247 {normal=(5.6198e-06 0.419246 0.907873)} Corner 8070 37247 {normal=(5.6198e-06 0.419246 0.907873)} Corner 8070 37248 {normal=(5.6198e-06 0.419246 0.907873)} Corner 5551 37248 {normal=(0 0.419246 0.907873)} Corner 8071 37249 {normal=(4.0136e-06 0.946042 0.324043)} Corner 5550 37249 {normal=(0 0.946042 0.324043)} Corner 5550 37250 {normal=(0 0.946042 0.324043)} Corner 8077 37251 {normal=(4.00001e-06 0.945493 0.325641)} Corner 8077 37252 {normal=(4.00001e-06 0.945493 0.325641)} Corner 8071 37252 {normal=(4.0136e-06 0.946042 0.324043)} Corner 8077 37253 {normal=(4.00001e-06 0.945493 0.325641)} Corner 8075 37255 {normal=(3.96109e-06 0.94448 0.32857)} Corner 8075 37256 {normal=(3.96109e-06 0.94448 0.32857)} Corner 8077 37256 {normal=(4.00001e-06 0.945493 0.325641)} Corner 8075 37257 {normal=(3.96109e-06 0.94448 0.32857)} Corner 8073 37259 {normal=(3.98222e-06 0.943784 0.330564)} Corner 8073 37260 {normal=(3.98222e-06 0.943784 0.330564)} Corner 8075 37260 {normal=(3.96109e-06 0.94448 0.32857)} Corner 8073 37261 {normal=(3.98222e-06 0.943784 0.330564)} Corner 5540 37262 {normal=(5.99996e-10 0.943551 0.331227)} Corner 5540 37263 {normal=(5.99996e-10 0.943551 0.331227)} Corner 8068 37263 {normal=(4.02871e-06 0.943551 0.331227)} Corner 8068 37264 {normal=(4.02871e-06 0.943551 0.331227)} Corner 8073 37264 {normal=(3.98222e-06 0.943784 0.330564)} Corner 5542 37265 {normal=(0 0.832649 -0.553801)} Corner 5540 37265 {normal=(0 0.832649 -0.553801)} Corner 5540 37266 {normal=(0 0.832649 -0.553801)} Corner 2966 37266 {normal=(3.43097e-06 0.832649 -0.553801)} Corner 2966 37267 {normal=(3.43097e-06 0.832649 -0.553801)} Corner 2967 37267 {normal=(3.43097e-06 0.832649 -0.553801)} Corner 2967 37268 {normal=(3.43097e-06 0.832649 -0.553801)} Corner 5542 37268 {normal=(0 0.832649 -0.553801)} Corner 2967 37269 {normal=(1 9.86184e-05 -0.000206575)} Corner 2966 37269 {normal=(1 9.86184e-05 -0.000206575)} Corner 2966 37270 {normal=(1 9.86184e-05 -0.000206575)} Corner 2962 37270 {normal=(1 6.47744e-05 -0.000218856)} Corner 2962 37271 {normal=(1 6.47744e-05 -0.000218856)} Corner 2963 37271 {normal=(1 4.90892e-05 -0.000224548)} Corner 2963 37272 {normal=(1 4.90892e-05 -0.000224548)} Corner 2967 37272 {normal=(1 9.86184e-05 -0.000206575)} Corner 2963 37273 {normal=(1 4.90892e-05 -0.000224548)} Corner 2962 37273 {normal=(1 6.47744e-05 -0.000218856)} Corner 2962 37274 {normal=(1 6.47744e-05 -0.000218856)} Corner 2959 37274 {normal=(1 1.06095e-05 -0.000178783)} Corner 2959 37275 {normal=(1 1.06095e-05 -0.000178783)} Corner 2960 37275 {normal=(1 5.2804e-07 -0.000146699)} Corner 2960 37276 {normal=(1 5.2804e-07 -0.000146699)} Corner 2963 37276 {normal=(1 4.90892e-05 -0.000224548)} Corner 2960 37277 {normal=(1 5.2804e-07 -0.000146699)} Corner 2959 37277 {normal=(1 1.06095e-05 -0.000178783)} Corner 2959 37278 {normal=(1 1.06095e-05 -0.000178783)} Corner 2957 37278 {normal=(1 -1.93608e-06 6.12018e-05)} Corner 2957 37279 {normal=(1 -1.93608e-06 6.12018e-05)} Corner 2958 37279 {normal=(1 1.82504e-06 0.000121235)} Corner 2958 37280 {normal=(1 1.82504e-06 0.000121235)} Corner 2960 37280 {normal=(1 5.2804e-07 -0.000146699)} Corner 2958 37281 {normal=(1 1.82504e-06 0.000121235)} Corner 2957 37281 {normal=(1 -1.93608e-06 6.12018e-05)} Corner 2957 37282 {normal=(1 -1.93608e-06 6.12018e-05)} Corner 2964 37282 {normal=(1 1.49578e-05 0.000330856)} Corner 2964 37283 {normal=(1 1.49578e-05 0.000330856)} Corner 2965 37283 {normal=(1 1.49578e-05 0.000330856)} Corner 2965 37284 {normal=(1 1.49578e-05 0.000330856)} Corner 2958 37284 {normal=(1 1.82504e-06 0.000121235)} Corner 2965 37285 {normal=(-5.6198e-06 0.419246 0.907873)} Corner 2964 37285 {normal=(-5.6198e-06 0.419246 0.907873)} Corner 2964 37286 {normal=(-5.6198e-06 0.419246 0.907873)} Corner 5550 37286 {normal=(0 0.419246 0.907873)} Corner 5550 37287 {normal=(0 0.419246 0.907873)} Corner 5551 37287 {normal=(0 0.419246 0.907873)} Corner 5551 37288 {normal=(0 0.419246 0.907873)} Corner 2965 37288 {normal=(-5.6198e-06 0.419246 0.907873)} Corner 2957 37289 {normal=(-3.99652e-06 0.945493 0.325641)} Corner 5550 37290 {normal=(0 0.946042 0.324043)} Corner 5550 37291 {normal=(0 0.946042 0.324043)} Corner 2964 37291 {normal=(-4.0136e-06 0.946042 0.324043)} Corner 2964 37292 {normal=(-4.0136e-06 0.946042 0.324043)} Corner 2957 37292 {normal=(-3.99652e-06 0.945493 0.325641)} Corner 2959 37293 {normal=(-3.95974e-06 0.94448 0.32857)} Corner 2957 37295 {normal=(-3.99652e-06 0.945493 0.325641)} Corner 2957 37296 {normal=(-3.99652e-06 0.945493 0.325641)} Corner 2959 37296 {normal=(-3.95974e-06 0.94448 0.32857)} Corner 2962 37297 {normal=(-3.98376e-06 0.943784 0.330564)} Corner 2959 37299 {normal=(-3.95974e-06 0.94448 0.32857)} Corner 2959 37300 {normal=(-3.95974e-06 0.94448 0.32857)} Corner 2962 37300 {normal=(-3.98376e-06 0.943784 0.330564)} Corner 2966 37301 {normal=(-4.02751e-06 0.943551 0.331227)} Corner 5540 37301 {normal=(5.99996e-10 0.943551 0.331227)} Corner 5540 37302 {normal=(5.99996e-10 0.943551 0.331227)} Corner 2962 37303 {normal=(-3.98376e-06 0.943784 0.330564)} Corner 2962 37304 {normal=(-3.98376e-06 0.943784 0.330564)} Corner 2966 37304 {normal=(-4.02751e-06 0.943551 0.331227)} Corner 5546 37305 {normal=(-0.00200018 0.472947 -0.881089)} Corner 5551 37305 {normal=(-0.000822256 0.482298 -0.876007)} Corner 5551 37306 {normal=(-0.000822256 0.482298 -0.876007)} Corner 9238 37306 {normal=(-0.00538706 0.514035 -0.857752)} Corner 9238 37307 {normal=(-0.00538706 0.514035 -0.857752)} Corner 8737 37307 {normal=(-0.0184147 0.468522 -0.88326)} Corner 8737 37308 {normal=(-0.0184147 0.468522 -0.88326)} Corner 5546 37308 {normal=(-0.00200018 0.472947 -0.881089)} Corner 2965 37309 {normal=(0.00520121 0.69086 -0.72297)} Corner 5551 37309 {normal=(-0.000822256 0.482298 -0.876007)} Corner 5551 37310 {normal=(-0.000822256 0.482298 -0.876007)} Corner 2309 37310 {normal=(0.0107234 0.499778 -0.866087)} Corner 2309 37311 {normal=(0.0107234 0.499778 -0.866087)} Corner 1807 37311 {normal=(0.00477949 0.518932 -0.854802)} Corner 1807 37312 {normal=(0.00477949 0.518932 -0.854802)} Corner 2965 37312 {normal=(0.00520121 0.69086 -0.72297)} Corner 8069 37313 {normal=(0 0.493971 0.869479)} Corner 5542 37313 {normal=(0 0.433755 0.901031)} Corner 5542 37314 {normal=(0 0.433755 0.901031)} Corner 5538 37314 {normal=(0 0.433755 0.901031)} Corner 5538 37315 {normal=(0 0.433755 0.901031)} Corner 9293 37315 {normal=(0 0.433755 0.901031)} Corner 9293 37316 {normal=(0 0.433755 0.901031)} Corner 8069 37316 {normal=(0 0.493971 0.869479)} Corner 5538 37317 {normal=(0 0.984872 0.173281)} Corner 5537 37317 {normal=(0 0.984872 0.173281)} Corner 5537 37318 {normal=(0 0.984872 0.173281)} Corner 9235 37318 {normal=(0 0.984873 0.173281)} Corner 9235 37319 {normal=(0 0.984873 0.173281)} Corner 9293 37319 {normal=(0 0.984872 0.173281)} Corner 9293 37320 {normal=(0 0.984872 0.173281)} Corner 5538 37320 {normal=(0 0.984872 0.173281)} Corner 9520 37321 {normal=(0 0.855328 0.518087)} Corner 8074 37321 {normal=(0 0.841253 0.540641)} Corner 8074 37322 {normal=(0 0.841253 0.540641)} Corner 8072 37322 {normal=(0 0.660744 0.750611)} Corner 8072 37323 {normal=(0 0.660744 0.750611)} Corner 9457 37323 {normal=(0 0.669002 0.74326)} Corner 9457 37324 {normal=(0 0.669002 0.74326)} Corner 9520 37324 {normal=(0 0.855328 0.518087)} Corner 9553 37325 {normal=(0 0.935108 0.354362)} Corner 8076 37325 {normal=(0 0.935108 0.354362)} Corner 8076 37326 {normal=(0 0.935108 0.354362)} Corner 8074 37326 {normal=(0 0.841253 0.540641)} Corner 8074 37327 {normal=(0 0.841253 0.540641)} Corner 9520 37327 {normal=(0 0.855328 0.518087)} Corner 9520 37328 {normal=(0 0.855328 0.518087)} Corner 9553 37328 {normal=(0 0.935108 0.354362)} Corner 9409 37329 {normal=(0 0.862865 -0.505435)} Corner 8070 37329 {normal=(0 0.702883 -0.711305)} Corner 8070 37330 {normal=(0 0.702883 -0.711305)} Corner 8076 37330 {normal=(0 0.941437 -0.337188)} Corner 8076 37331 {normal=(0 0.941437 -0.337188)} Corner 9553 37331 {normal=(0 0.941437 -0.337188)} Corner 9553 37332 {normal=(0 0.941437 -0.337188)} Corner 9409 37332 {normal=(0 0.862865 -0.505435)} Corner 9235 37333 {normal=(0 0.524018 0.851707)} Corner 5537 37333 {normal=(0 0.524018 0.851707)} Corner 5537 37334 {normal=(0 0.524018 0.851707)} Corner 5535 37334 {normal=(0 0.524018 0.851707)} Corner 5535 37335 {normal=(0 0.524018 0.851707)} Corner 7631 37335 {normal=(0 0.524018 0.851707)} Corner 7631 37336 {normal=(0 0.524018 0.851707)} Corner 9235 37336 {normal=(0 0.524018 0.851707)} Corner 9457 37337 {normal=(0 0.669002 0.74326)} Corner 8072 37337 {normal=(0 0.660744 0.750611)} Corner 8072 37338 {normal=(0 0.660744 0.750611)} Corner 8069 37338 {normal=(0 0.493971 0.869479)} Corner 8069 37339 {normal=(0 0.493971 0.869479)} Corner 9406 37339 {normal=(0 0.542792 0.839867)} Corner 9406 37340 {normal=(0 0.542792 0.839867)} Corner 9457 37340 {normal=(0 0.669002 0.74326)} Corner 1752 37341 {normal=(0 0.433755 0.901031)} Corner 5538 37341 {normal=(0 0.433755 0.901031)} Corner 5538 37342 {normal=(0 0.433755 0.901031)} Corner 5542 37342 {normal=(0 0.433755 0.901031)} Corner 5542 37343 {normal=(0 0.433755 0.901031)} Corner 2967 37343 {normal=(0 0.493971 0.869479)} Corner 2967 37344 {normal=(0 0.493971 0.869479)} Corner 1752 37344 {normal=(0 0.433755 0.901031)} Corner 1752 37345 {normal=(0 0.984872 0.173281)} Corner 1810 37345 {normal=(0 0.984873 0.173281)} Corner 1810 37346 {normal=(0 0.984873 0.173281)} Corner 5537 37346 {normal=(0 0.984872 0.173281)} Corner 5537 37347 {normal=(0 0.984872 0.173281)} Corner 5538 37347 {normal=(0 0.984872 0.173281)} Corner 5538 37348 {normal=(0 0.984872 0.173281)} Corner 1752 37348 {normal=(0 0.984872 0.173281)} Corner 1588 37349 {normal=(0 0.669002 0.74326)} Corner 2963 37349 {normal=(0 0.660744 0.750611)} Corner 2963 37350 {normal=(0 0.660744 0.750611)} Corner 2960 37350 {normal=(0 0.841253 0.540641)} Corner 2960 37351 {normal=(0 0.841253 0.540641)} Corner 1525 37351 {normal=(0 0.855328 0.518087)} Corner 1525 37352 {normal=(0 0.855328 0.518087)} Corner 1588 37352 {normal=(0 0.669002 0.74326)} Corner 1525 37353 {normal=(0 0.855328 0.518087)} Corner 2960 37353 {normal=(0 0.841253 0.540641)} Corner 2960 37354 {normal=(0 0.841253 0.540641)} Corner 2958 37354 {normal=(0 0.935108 0.354362)} Corner 2958 37355 {normal=(0 0.935108 0.354362)} Corner 1492 37355 {normal=(0 0.935108 0.354362)} Corner 1492 37356 {normal=(0 0.935108 0.354362)} Corner 1525 37356 {normal=(0 0.855328 0.518087)} Corner 1492 37357 {normal=(0 0.941437 -0.337188)} Corner 2958 37357 {normal=(0 0.941437 -0.337188)} Corner 2958 37358 {normal=(0 0.941437 -0.337188)} Corner 2965 37358 {normal=(0.00520121 0.69086 -0.72297)} Corner 2965 37359 {normal=(0.00520121 0.69086 -0.72297)} Corner 1636 37359 {normal=(0 0.862865 -0.505435)} Corner 1636 37360 {normal=(0 0.862865 -0.505435)} Corner 1492 37360 {normal=(0 0.941437 -0.337188)} Corner 3414 37361 {normal=(0 0.524018 0.851707)} Corner 5535 37361 {normal=(0 0.524018 0.851707)} Corner 5535 37362 {normal=(0 0.524018 0.851707)} Corner 5537 37362 {normal=(0 0.524018 0.851707)} Corner 5537 37363 {normal=(0 0.524018 0.851707)} Corner 1810 37363 {normal=(0 0.524018 0.851707)} Corner 1810 37364 {normal=(0 0.524018 0.851707)} Corner 3414 37364 {normal=(0 0.524018 0.851707)} Corner 1639 37365 {normal=(0 0.542792 0.839867)} Corner 2967 37365 {normal=(0 0.493971 0.869479)} Corner 2967 37366 {normal=(0 0.493971 0.869479)} Corner 2963 37366 {normal=(0 0.660744 0.750611)} Corner 2963 37367 {normal=(0 0.660744 0.750611)} Corner 1588 37367 {normal=(0 0.669002 0.74326)} Corner 1588 37368 {normal=(0 0.669002 0.74326)} Corner 1639 37368 {normal=(0 0.542792 0.839867)} Corner 9748 37369 {normal=(5.97426e-06 -1 -1.39251e-05)} Corner 9650 37369 {normal=(4.58415e-06 -1 -1.68448e-05)} Corner 9650 37370 {normal=(4.58415e-06 -1 -1.68448e-05)} Corner 9576 37370 {normal=(4.70895e-06 -1 -1.68679e-05)} Corner 9576 37371 {normal=(4.70895e-06 -1 -1.68679e-05)} Corner 9670 37371 {normal=(0.0242909 -0.999705 -7.99084e-05)} Corner 9670 37372 {normal=(0.0242909 -0.999705 -7.99084e-05)} Corner 9748 37372 {normal=(5.97426e-06 -1 -1.39251e-05)} Corner 9466 37373 {normal=(0.00745874 -0.999942 0.00779946)} Corner 9576 37373 {normal=(4.70895e-06 -1 -1.68679e-05)} Corner 9576 37374 {normal=(4.70895e-06 -1 -1.68679e-05)} Corner 9650 37374 {normal=(4.58415e-06 -1 -1.68448e-05)} Corner 9650 37375 {normal=(4.58415e-06 -1 -1.68448e-05)} Corner 9484 37375 {normal=(3.84315e-06 -1 -1.46146e-05)} Corner 9484 37376 {normal=(3.84315e-06 -1 -1.46146e-05)} Corner 9466 37376 {normal=(0.00745874 -0.999942 0.00779946)} Corner 7299 37377 {normal=(-1.8891e-06 1 7.44907e-06)} Corner 5507 37377 {normal=(0 1 1.51318e-05)} Corner 5507 37378 {normal=(0 1 1.51318e-05)} Corner 5506 37378 {normal=(0 1 1.51318e-05)} Corner 5506 37379 {normal=(0 1 1.51318e-05)} Corner 7230 37379 {normal=(-1.94366e-06 1 7.6642e-06)} Corner 7230 37380 {normal=(-1.94366e-06 1 7.6642e-06)} Corner 7299 37380 {normal=(-1.8891e-06 1 7.44907e-06)} Corner 8795 37381 {normal=(3.37937e-06 1 1.57501e-06)} Corner 7299 37381 {normal=(-1.8891e-06 1 7.44907e-06)} Corner 7299 37382 {normal=(-1.8891e-06 1 7.44907e-06)} Corner 7230 37382 {normal=(-1.94366e-06 1 7.6642e-06)} Corner 7230 37383 {normal=(-1.94366e-06 1 7.6642e-06)} Corner 8615 37383 {normal=(3.25657e-06 1 1.51778e-06)} Corner 8615 37384 {normal=(3.25657e-06 1 1.51778e-06)} Corner 8795 37384 {normal=(3.37937e-06 1 1.57501e-06)} Corner 9412 37385 {normal=(6.43469e-06 1 5.56513e-06)} Corner 8795 37385 {normal=(3.37937e-06 1 1.57501e-06)} Corner 8795 37386 {normal=(3.37937e-06 1 1.57501e-06)} Corner 8615 37386 {normal=(3.25657e-06 1 1.51778e-06)} Corner 8615 37387 {normal=(3.25657e-06 1 1.51778e-06)} Corner 9400 37387 {normal=(6.43046e-06 1 5.61892e-06)} Corner 9400 37388 {normal=(6.43046e-06 1 5.61892e-06)} Corner 9412 37388 {normal=(6.43469e-06 1 5.56513e-06)} Corner 9667 37389 {normal=(3.48748e-06 1 6.69555e-06)} Corner 9412 37389 {normal=(6.43469e-06 1 5.56513e-06)} Corner 9412 37390 {normal=(6.43469e-06 1 5.56513e-06)} Corner 9400 37390 {normal=(6.43046e-06 1 5.61892e-06)} Corner 9400 37391 {normal=(6.43046e-06 1 5.61892e-06)} Corner 9595 37391 {normal=(4.2757e-06 1 7.10337e-06)} Corner 9595 37392 {normal=(4.2757e-06 1 7.10337e-06)} Corner 9667 37392 {normal=(3.48748e-06 1 6.69555e-06)} Corner 9749 37393 {normal=(4.48322e-07 1 1.14876e-05)} Corner 9667 37393 {normal=(3.48748e-06 1 6.69555e-06)} Corner 9667 37394 {normal=(3.48748e-06 1 6.69555e-06)} Corner 9595 37394 {normal=(4.2757e-06 1 7.10337e-06)} Corner 9595 37395 {normal=(4.2757e-06 1 7.10337e-06)} Corner 9684 37395 {normal=(-9.83692e-08 1 1.40614e-05)} Corner 9684 37396 {normal=(-9.83692e-08 1 1.40614e-05)} Corner 9749 37396 {normal=(4.48322e-07 1 1.14876e-05)} Corner 9651 37397 {normal=(1.92523e-06 1 1.9404e-05)} Corner 9749 37397 {normal=(4.48322e-07 1 1.14876e-05)} Corner 9749 37398 {normal=(4.48322e-07 1 1.14876e-05)} Corner 9684 37398 {normal=(-9.83692e-08 1 1.40614e-05)} Corner 9684 37399 {normal=(-9.83692e-08 1 1.40614e-05)} Corner 9577 37399 {normal=(1.80481e-06 1 1.94308e-05)} Corner 9577 37400 {normal=(1.80481e-06 1 1.94308e-05)} Corner 9651 37400 {normal=(1.92523e-06 1 1.9404e-05)} Corner 9485 37401 {normal=(2.83978e-06 1 1.82221e-05)} Corner 9651 37401 {normal=(1.92523e-06 1 1.9404e-05)} Corner 9651 37402 {normal=(1.92523e-06 1 1.9404e-05)} Corner 9577 37402 {normal=(1.80481e-06 1 1.94308e-05)} Corner 9577 37403 {normal=(1.80481e-06 1 1.94308e-05)} Corner 9440 37403 {normal=(2.95801e-06 1 1.8247e-05)} Corner 9440 37404 {normal=(2.95801e-06 1 1.8247e-05)} Corner 9485 37404 {normal=(2.83978e-06 1 1.82221e-05)} Corner 8930 37405 {normal=(1.46064e-06 1 1.66654e-05)} Corner 9485 37405 {normal=(2.83978e-06 1 1.82221e-05)} Corner 9485 37406 {normal=(2.83978e-06 1 1.82221e-05)} Corner 9440 37406 {normal=(2.95801e-06 1 1.8247e-05)} Corner 9440 37407 {normal=(2.95801e-06 1 1.8247e-05)} Corner 8690 37407 {normal=(1.4877e-06 1 1.66252e-05)} Corner 8690 37408 {normal=(1.4877e-06 1 1.66252e-05)} Corner 8930 37408 {normal=(1.46064e-06 1 1.66654e-05)} Corner 7284 37409 {normal=(5.28972e-06 1 1.52776e-05)} Corner 8930 37409 {normal=(1.46064e-06 1 1.66654e-05)} Corner 8930 37410 {normal=(1.46064e-06 1 1.66654e-05)} Corner 8690 37410 {normal=(1.4877e-06 1 1.66252e-05)} Corner 8690 37411 {normal=(1.4877e-06 1 1.66252e-05)} Corner 7218 37411 {normal=(5.23008e-06 1 1.52822e-05)} Corner 7218 37412 {normal=(5.23008e-06 1 1.52822e-05)} Corner 7284 37412 {normal=(5.28972e-06 1 1.52776e-05)} Corner 5504 37413 {normal=(0 1 1.50471e-05)} Corner 7284 37413 {normal=(5.28972e-06 1 1.52776e-05)} Corner 7284 37414 {normal=(5.28972e-06 1 1.52776e-05)} Corner 7218 37414 {normal=(5.23008e-06 1 1.52822e-05)} Corner 7218 37415 {normal=(5.23008e-06 1 1.52822e-05)} Corner 5505 37415 {normal=(0 1 1.50471e-05)} Corner 5505 37416 {normal=(0 1 1.50471e-05)} Corner 5504 37416 {normal=(0 1 1.50471e-05)} Corner 7283 37417 {normal=(0.000284401 -0.999998 0.00199279)} Corner 5500 37417 {normal=(0 -1 -1.5056e-05)} Corner 5500 37418 {normal=(0 -1 -1.5056e-05)} Corner 5501 37418 {normal=(0 -1 -1.5056e-05)} Corner 5501 37419 {normal=(0 -1 -1.5056e-05)} Corner 7217 37419 {normal=(0.0002943 -0.999998 0.00206073)} Corner 7217 37420 {normal=(0.0002943 -0.999998 0.00206073)} Corner 7283 37420 {normal=(0.000284401 -0.999998 0.00199279)} Corner 8929 37421 {normal=(0.00270463 -0.999994 0.00220403)} Corner 7283 37421 {normal=(0.000284401 -0.999998 0.00199279)} Corner 7283 37422 {normal=(0.000284401 -0.999998 0.00199279)} Corner 7217 37422 {normal=(0.0002943 -0.999998 0.00206073)} Corner 7217 37423 {normal=(0.0002943 -0.999998 0.00206073)} Corner 8489 37423 {normal=(0.00360643 -0.999989 0.0030499)} Corner 8489 37424 {normal=(0.00360643 -0.999989 0.0030499)} Corner 8929 37424 {normal=(0.00270463 -0.999994 0.00220403)} Corner 9484 37425 {normal=(3.84315e-06 -1 -1.46146e-05)} Corner 8929 37425 {normal=(0.00270463 -0.999994 0.00220403)} Corner 8929 37426 {normal=(0.00270463 -0.999994 0.00220403)} Corner 9094 37426 {normal=(0.00292463 -0.999995 0.000775182)} Corner 9094 37427 {normal=(0.00292463 -0.999995 0.000775182)} Corner 9410 37427 {normal=(0.00702138 -0.999948 0.00734627)} Corner 9410 37428 {normal=(0.00702138 -0.999948 0.00734627)} Corner 9484 37428 {normal=(3.84315e-06 -1 -1.46146e-05)} Corner 9666 37429 {normal=(-3.4853e-06 -1 -6.14065e-06)} Corner 9748 37429 {normal=(5.97426e-06 -1 -1.39251e-05)} Corner 9748 37430 {normal=(5.97426e-06 -1 -1.39251e-05)} Corner 9668 37430 {normal=(0.0198524 -0.999803 -6.25038e-05)} Corner 9668 37431 {normal=(0.0198524 -0.999803 -6.25038e-05)} Corner 9594 37431 {normal=(-5.42929e-06 -1 -5.75675e-06)} Corner 9594 37432 {normal=(-5.42929e-06 -1 -5.75675e-06)} Corner 9666 37432 {normal=(-3.4853e-06 -1 -6.14065e-06)} Corner 9411 37433 {normal=(-3.60365e-06 -1 -7.84883e-06)} Corner 9666 37433 {normal=(-3.4853e-06 -1 -6.14065e-06)} Corner 9666 37434 {normal=(-3.4853e-06 -1 -6.14065e-06)} Corner 9594 37434 {normal=(-5.42929e-06 -1 -5.75675e-06)} Corner 9594 37435 {normal=(-5.42929e-06 -1 -5.75675e-06)} Corner 9418 37435 {normal=(0.0207349 -0.999197 -0.0342936)} Corner 9418 37436 {normal=(0.0207349 -0.999197 -0.0342936)} Corner 9411 37436 {normal=(-3.60365e-06 -1 -7.84883e-06)} Corner 8794 37437 {normal=(1.64695e-06 -1 -1.93592e-05)} Corner 9411 37437 {normal=(-3.60365e-06 -1 -7.84883e-06)} Corner 9411 37438 {normal=(-3.60365e-06 -1 -7.84883e-06)} Corner 9382 37438 {normal=(0.0223214 -0.999069 -0.0369221)} Corner 9382 37439 {normal=(0.0223214 -0.999069 -0.0369221)} Corner 8614 37439 {normal=(1.84279e-06 -1 -1.91626e-05)} Corner 8614 37440 {normal=(1.84279e-06 -1 -1.91626e-05)} Corner 8794 37440 {normal=(1.64695e-06 -1 -1.93592e-05)} Corner 7298 37441 {normal=(5.46059e-06 -1 -1.45325e-05)} Corner 8794 37441 {normal=(1.64695e-06 -1 -1.93592e-05)} Corner 8794 37442 {normal=(1.64695e-06 -1 -1.93592e-05)} Corner 8614 37442 {normal=(1.84279e-06 -1 -1.91626e-05)} Corner 8614 37443 {normal=(1.84279e-06 -1 -1.91626e-05)} Corner 7229 37443 {normal=(5.41513e-06 -1 -1.45493e-05)} Corner 7229 37444 {normal=(5.41513e-06 -1 -1.45493e-05)} Corner 7298 37444 {normal=(5.46059e-06 -1 -1.45325e-05)} Corner 5503 37445 {normal=(0 -1 -1.51318e-05)} Corner 7298 37445 {normal=(5.46059e-06 -1 -1.45325e-05)} Corner 7298 37446 {normal=(5.46059e-06 -1 -1.45325e-05)} Corner 7229 37446 {normal=(5.41513e-06 -1 -1.45493e-05)} Corner 7229 37447 {normal=(5.41513e-06 -1 -1.45493e-05)} Corner 5502 37447 {normal=(0 -1 -1.51318e-05)} Corner 5502 37448 {normal=(0 -1 -1.51318e-05)} Corner 5503 37448 {normal=(0 -1 -1.51318e-05)} Corner 9756 37449 {normal=(-2.92061e-06 1 1.28577e-05)} Corner 9656 37449 {normal=(-1.38653e-06 1 1.19984e-05)} Corner 9656 37450 {normal=(-1.38653e-06 1 1.19984e-05)} Corner 9597 37450 {normal=(-1.58533e-06 1 1.16275e-05)} Corner 9597 37451 {normal=(-1.58533e-06 1 1.16275e-05)} Corner 9686 37451 {normal=(-2.85376e-06 1 1.33677e-05)} Corner 9686 37452 {normal=(-2.85376e-06 1 1.33677e-05)} Corner 9756 37452 {normal=(-2.92061e-06 1 1.28577e-05)} Corner 9658 37453 {normal=(-2.08876e-06 1 1.74426e-05)} Corner 9756 37453 {normal=(-2.92061e-06 1 1.28577e-05)} Corner 9756 37454 {normal=(-2.92061e-06 1 1.28577e-05)} Corner 9686 37454 {normal=(-2.85376e-06 1 1.33677e-05)} Corner 9686 37455 {normal=(-2.85376e-06 1 1.33677e-05)} Corner 9579 37455 {normal=(-2.07745e-06 1 1.73529e-05)} Corner 9579 37456 {normal=(-2.07745e-06 1 1.73529e-05)} Corner 9658 37456 {normal=(-2.08876e-06 1 1.74426e-05)} Corner 9480 37457 {normal=(-1.92159e-06 1 1.57541e-05)} Corner 9658 37457 {normal=(-2.08876e-06 1 1.74426e-05)} Corner 9658 37458 {normal=(-2.08876e-06 1 1.74426e-05)} Corner 9579 37458 {normal=(-2.07745e-06 1 1.73529e-05)} Corner 9579 37459 {normal=(-2.07745e-06 1 1.73529e-05)} Corner 9442 37459 {normal=(-1.92502e-06 1 1.58114e-05)} Corner 9442 37460 {normal=(-1.92502e-06 1 1.58114e-05)} Corner 9480 37460 {normal=(-1.92159e-06 1 1.57541e-05)} Corner 9011 37461 {normal=(-3.53703e-07 1 1.35159e-05)} Corner 9480 37461 {normal=(-1.92159e-06 1 1.57541e-05)} Corner 9480 37462 {normal=(-1.92159e-06 1 1.57541e-05)} Corner 9442 37462 {normal=(-1.92502e-06 1 1.58114e-05)} Corner 9442 37463 {normal=(-1.92502e-06 1 1.58114e-05)} Corner 8692 37463 {normal=(2.67903e-07 1 1.28614e-05)} Corner 8692 37464 {normal=(2.67903e-07 1 1.28614e-05)} Corner 9011 37464 {normal=(-3.53703e-07 1 1.35159e-05)} Corner 7321 37465 {normal=(4.6294e-06 1 1.21104e-05)} Corner 9011 37465 {normal=(-3.53703e-07 1 1.35159e-05)} Corner 9011 37466 {normal=(-3.53703e-07 1 1.35159e-05)} Corner 8692 37466 {normal=(2.67903e-07 1 1.28614e-05)} Corner 8692 37467 {normal=(2.67903e-07 1 1.28614e-05)} Corner 7220 37467 {normal=(5.12602e-06 1 1.22674e-05)} Corner 7220 37468 {normal=(5.12602e-06 1 1.22674e-05)} Corner 7321 37468 {normal=(4.6294e-06 1 1.21104e-05)} Corner 5512 37469 {normal=(0 1 1.31728e-05)} Corner 7321 37469 {normal=(4.6294e-06 1 1.21104e-05)} Corner 7321 37470 {normal=(4.6294e-06 1 1.21104e-05)} Corner 7220 37470 {normal=(5.12602e-06 1 1.22674e-05)} Corner 7220 37471 {normal=(5.12602e-06 1 1.22674e-05)} Corner 5513 37471 {normal=(0 1 1.31728e-05)} Corner 5513 37472 {normal=(0 1 1.31728e-05)} Corner 5512 37472 {normal=(0 1 1.31728e-05)} Corner 7320 37473 {normal=(-5.23822e-06 -1 -1.37773e-05)} Corner 5508 37473 {normal=(0 -1 -1.31728e-05)} Corner 5508 37474 {normal=(0 -1 -1.31728e-05)} Corner 5509 37474 {normal=(0 -1 -1.31728e-05)} Corner 5509 37475 {normal=(0 -1 -1.31728e-05)} Corner 7219 37475 {normal=(-5.64486e-06 -1 -1.36879e-05)} Corner 7219 37476 {normal=(-5.64486e-06 -1 -1.36879e-05)} Corner 7320 37476 {normal=(-5.23822e-06 -1 -1.37773e-05)} Corner 9010 37477 {normal=(-4.36927e-07 -1 -1.573e-05)} Corner 7320 37477 {normal=(-5.23822e-06 -1 -1.37773e-05)} Corner 7320 37478 {normal=(-5.23822e-06 -1 -1.37773e-05)} Corner 7219 37478 {normal=(-5.64486e-06 -1 -1.36879e-05)} Corner 7219 37479 {normal=(-5.64486e-06 -1 -1.36879e-05)} Corner 8691 37479 {normal=(-1.15176e-06 -1 -1.53166e-05)} Corner 8691 37480 {normal=(-1.15176e-06 -1 -1.53166e-05)} Corner 9010 37480 {normal=(-4.36927e-07 -1 -1.573e-05)} Corner 9479 37481 {normal=(1.58594e-06 -1 -1.6621e-05)} Corner 9010 37481 {normal=(-4.36927e-07 -1 -1.573e-05)} Corner 9010 37482 {normal=(-4.36927e-07 -1 -1.573e-05)} Corner 8691 37482 {normal=(-1.15176e-06 -1 -1.53166e-05)} Corner 8691 37483 {normal=(-1.15176e-06 -1 -1.53166e-05)} Corner 9441 37483 {normal=(1.61e-06 -1 -1.66095e-05)} Corner 9441 37484 {normal=(1.61e-06 -1 -1.66095e-05)} Corner 9479 37484 {normal=(1.58594e-06 -1 -1.6621e-05)} Corner 9657 37485 {normal=(1.25108e-06 -1 -1.75109e-05)} Corner 9479 37485 {normal=(1.58594e-06 -1 -1.6621e-05)} Corner 9479 37486 {normal=(1.58594e-06 -1 -1.6621e-05)} Corner 9441 37486 {normal=(1.61e-06 -1 -1.66095e-05)} Corner 9441 37487 {normal=(1.61e-06 -1 -1.66095e-05)} Corner 9578 37487 {normal=(1.30735e-06 -1 -1.74182e-05)} Corner 9578 37488 {normal=(1.30735e-06 -1 -1.74182e-05)} Corner 9657 37488 {normal=(1.25108e-06 -1 -1.75109e-05)} Corner 9755 37489 {normal=(1.46385e-06 -1 -1.25601e-05)} Corner 9657 37489 {normal=(1.25108e-06 -1 -1.75109e-05)} Corner 9657 37490 {normal=(1.25108e-06 -1 -1.75109e-05)} Corner 9578 37490 {normal=(1.30735e-06 -1 -1.74182e-05)} Corner 9578 37491 {normal=(1.30735e-06 -1 -1.74182e-05)} Corner 9685 37491 {normal=(1.39166e-06 -1 -1.31069e-05)} Corner 9685 37492 {normal=(1.39166e-06 -1 -1.31069e-05)} Corner 9755 37492 {normal=(1.46385e-06 -1 -1.25601e-05)} Corner 9655 37493 {normal=(7.26858e-08 -1 -1.11404e-05)} Corner 9755 37493 {normal=(1.46385e-06 -1 -1.25601e-05)} Corner 9755 37494 {normal=(1.46385e-06 -1 -1.25601e-05)} Corner 9685 37494 {normal=(1.39166e-06 -1 -1.31069e-05)} Corner 9685 37495 {normal=(1.39166e-06 -1 -1.31069e-05)} Corner 9596 37495 {normal=(2.63152e-07 -1 -1.07881e-05)} Corner 9596 37496 {normal=(2.63152e-07 -1 -1.07881e-05)} Corner 9655 37496 {normal=(7.26858e-08 -1 -1.11404e-05)} Corner 9414 37497 {normal=(-2.70918e-06 -1 -1.52427e-05)} Corner 9655 37497 {normal=(7.26858e-08 -1 -1.11404e-05)} Corner 9655 37498 {normal=(7.26858e-08 -1 -1.11404e-05)} Corner 9596 37498 {normal=(2.63152e-07 -1 -1.07881e-05)} Corner 9596 37499 {normal=(2.63152e-07 -1 -1.07881e-05)} Corner 9401 37499 {normal=(-2.83128e-06 -1 -1.53292e-05)} Corner 9401 37500 {normal=(-2.83128e-06 -1 -1.53292e-05)} Corner 9414 37500 {normal=(-2.70918e-06 -1 -1.52427e-05)} Corner 8815 37501 {normal=(1.03797e-06 -1 -1.42503e-05)} Corner 9414 37501 {normal=(-2.70918e-06 -1 -1.52427e-05)} Corner 9414 37502 {normal=(-2.70918e-06 -1 -1.52427e-05)} Corner 9401 37502 {normal=(-2.83128e-06 -1 -1.53292e-05)} Corner 9401 37503 {normal=(-2.83128e-06 -1 -1.53292e-05)} Corner 8616 37503 {normal=(1.493e-06 -1 -1.40857e-05)} Corner 8616 37504 {normal=(1.493e-06 -1 -1.40857e-05)} Corner 8815 37504 {normal=(1.03797e-06 -1 -1.42503e-05)} Corner 7314 37505 {normal=(4.76298e-06 -1 -1.22399e-05)} Corner 8815 37505 {normal=(1.03797e-06 -1 -1.42503e-05)} Corner 8815 37506 {normal=(1.03797e-06 -1 -1.42503e-05)} Corner 8616 37506 {normal=(1.493e-06 -1 -1.40857e-05)} Corner 8616 37507 {normal=(1.493e-06 -1 -1.40857e-05)} Corner 7231 37507 {normal=(4.58362e-06 -1 -1.22273e-05)} Corner 7231 37508 {normal=(4.58362e-06 -1 -1.22273e-05)} Corner 7314 37508 {normal=(4.76298e-06 -1 -1.22399e-05)} Corner 5511 37509 {normal=(0 -1 -1.21187e-05)} Corner 7314 37509 {normal=(4.76298e-06 -1 -1.22399e-05)} Corner 7314 37510 {normal=(4.76298e-06 -1 -1.22399e-05)} Corner 7231 37510 {normal=(4.58362e-06 -1 -1.22273e-05)} Corner 7231 37511 {normal=(4.58362e-06 -1 -1.22273e-05)} Corner 5510 37511 {normal=(0 -1 -1.21187e-05)} Corner 5510 37512 {normal=(0 -1 -1.21187e-05)} Corner 5511 37512 {normal=(0 -1 -1.21187e-05)} Corner 7315 37513 {normal=(-4.65095e-06 1 1.29979e-05)} Corner 5515 37513 {normal=(0 1 1.37293e-05)} Corner 5515 37514 {normal=(0 1 1.37293e-05)} Corner 5514 37514 {normal=(0 1 1.37293e-05)} Corner 5514 37515 {normal=(0 1 1.37293e-05)} Corner 7232 37515 {normal=(-4.45849e-06 1 1.30739e-05)} Corner 7232 37516 {normal=(-4.45849e-06 1 1.30739e-05)} Corner 7315 37516 {normal=(-4.65095e-06 1 1.29979e-05)} Corner 8816 37517 {normal=(-1.03797e-06 1 1.42503e-05)} Corner 7315 37517 {normal=(-4.65095e-06 1 1.29979e-05)} Corner 7315 37518 {normal=(-4.65095e-06 1 1.29979e-05)} Corner 7232 37518 {normal=(-4.45849e-06 1 1.30739e-05)} Corner 7232 37519 {normal=(-4.45849e-06 1 1.30739e-05)} Corner 8617 37519 {normal=(-1.493e-06 1 1.40857e-05)} Corner 8617 37520 {normal=(-1.493e-06 1 1.40857e-05)} Corner 8816 37520 {normal=(-1.03797e-06 1 1.42503e-05)} Corner 9415 37521 {normal=(2.05145e-06 1 1.57985e-05)} Corner 8816 37521 {normal=(-1.03797e-06 1 1.42503e-05)} Corner 8816 37522 {normal=(-1.03797e-06 1 1.42503e-05)} Corner 8617 37522 {normal=(-1.493e-06 1 1.40857e-05)} Corner 8617 37523 {normal=(-1.493e-06 1 1.40857e-05)} Corner 9402 37523 {normal=(2.25025e-06 1 1.58202e-05)} Corner 9402 37524 {normal=(2.25025e-06 1 1.58202e-05)} Corner 9415 37524 {normal=(2.05145e-06 1 1.57985e-05)} Corner 9656 37525 {normal=(-1.38653e-06 1 1.19984e-05)} Corner 9415 37525 {normal=(2.05145e-06 1 1.57985e-05)} Corner 9415 37526 {normal=(2.05145e-06 1 1.57985e-05)} Corner 9402 37526 {normal=(2.25025e-06 1 1.58202e-05)} Corner 9402 37527 {normal=(2.25025e-06 1 1.58202e-05)} Corner 9597 37527 {normal=(-1.58533e-06 1 1.16275e-05)} Corner 9597 37528 {normal=(-1.58533e-06 1 1.16275e-05)} Corner 9656 37528 {normal=(-1.38653e-06 1 1.19984e-05)} Corner 9441 37529 {normal=(0.690295 -9.26699e-06 0.723528)} Corner 8691 37529 {normal=(0.415406 -1.28499e-05 0.909636)} Corner 8691 37530 {normal=(0.415406 -1.28499e-05 0.909636)} Corner 8690 37530 {normal=(0.415406 -1.28499e-05 0.909636)} Corner 8690 37531 {normal=(0.415406 -1.28499e-05 0.909636)} Corner 9440 37531 {normal=(0.690295 -9.267e-06 0.723528)} Corner 9440 37532 {normal=(0.690295 -9.267e-06 0.723528)} Corner 9441 37532 {normal=(0.690295 -9.26699e-06 0.723528)} Corner 8691 37533 {normal=(0.415406 -1.28499e-05 0.909636)} Corner 7219 37533 {normal=(0.137464 -1.39866e-05 0.990507)} Corner 7219 37534 {normal=(0.137464 -1.39866e-05 0.990507)} Corner 7218 37534 {normal=(0.137465 -1.39866e-05 0.990507)} Corner 7218 37535 {normal=(0.137465 -1.39866e-05 0.990507)} Corner 8690 37535 {normal=(0.415406 -1.28499e-05 0.909636)} Corner 8690 37536 {normal=(0.415406 -1.28499e-05 0.909636)} Corner 8691 37536 {normal=(0.415406 -1.28499e-05 0.909636)} Corner 7219 37537 {normal=(0.137464 -1.39866e-05 0.990507)} Corner 5509 37537 {normal=(0 -1.4123e-05 1)} Corner 5509 37538 {normal=(0 -1.4123e-05 1)} Corner 5505 37538 {normal=(0 -1.4123e-05 1)} Corner 5505 37539 {normal=(0 -1.4123e-05 1)} Corner 7218 37539 {normal=(0.137465 -1.39866e-05 0.990507)} Corner 7218 37540 {normal=(0.137465 -1.39866e-05 0.990507)} Corner 7219 37540 {normal=(0.137464 -1.39866e-05 0.990507)} Corner 5500 37541 {normal=(0 -1.41227e-05 1)} Corner 7283 37541 {normal=(0.134377 -1.39895e-05 0.99093)} Corner 7283 37542 {normal=(0.134377 -1.39895e-05 0.99093)} Corner 7284 37542 {normal=(0.134376 -1.39895e-05 0.99093)} Corner 7284 37543 {normal=(0.134376 -1.39895e-05 0.99093)} Corner 5504 37543 {normal=(0 -1.41227e-05 1)} Corner 5504 37544 {normal=(0 -1.41227e-05 1)} Corner 5500 37544 {normal=(0 -1.41227e-05 1)} Corner 7283 37545 {normal=(0.134377 -1.39895e-05 0.99093)} Corner 8929 37545 {normal=(0.412511 -1.28577e-05 0.910953)} Corner 8929 37546 {normal=(0.412511 -1.28577e-05 0.910953)} Corner 8930 37546 {normal=(0.412511 -1.28577e-05 0.910953)} Corner 8930 37547 {normal=(0.412511 -1.28577e-05 0.910953)} Corner 7284 37547 {normal=(0.134376 -1.39895e-05 0.99093)} Corner 7284 37548 {normal=(0.134376 -1.39895e-05 0.99093)} Corner 7283 37548 {normal=(0.134377 -1.39895e-05 0.99093)} Corner 8929 37549 {normal=(0.412511 -1.28577e-05 0.910953)} Corner 9484 37549 {normal=(0.687628 -1.0239e-05 0.726063)} Corner 9484 37550 {normal=(0.687628 -1.0239e-05 0.726063)} Corner 9485 37550 {normal=(0.687629 -1.0239e-05 0.726063)} Corner 9485 37551 {normal=(0.687629 -1.0239e-05 0.726063)} Corner 8930 37551 {normal=(0.412511 -1.28577e-05 0.910953)} Corner 8930 37552 {normal=(0.412511 -1.28577e-05 0.910953)} Corner 8929 37552 {normal=(0.412511 -1.28577e-05 0.910953)} Corner 7230 37553 {normal=(0.144366 1.39765e-05 -0.989524)} Corner 5506 37553 {normal=(0 1.41233e-05 -1)} Corner 5506 37554 {normal=(0 1.41233e-05 -1)} Corner 5510 37554 {normal=(0 1.41234e-05 -1)} Corner 5510 37555 {normal=(0 1.41234e-05 -1)} Corner 7231 37555 {normal=(0.144367 1.39765e-05 -0.989524)} Corner 7231 37556 {normal=(0.144367 1.39765e-05 -0.989524)} Corner 7230 37556 {normal=(0.144366 1.39765e-05 -0.989524)} Corner 7315 37557 {normal=(0.143504 1.39762e-05 -0.98965)} Corner 8816 37557 {normal=(0.306796 1.34439e-05 -0.951775)} Corner 8816 37558 {normal=(0.306796 1.34439e-05 -0.951775)} Corner 8815 37558 {normal=(0.306795 1.34439e-05 -0.951776)} Corner 8815 37559 {normal=(0.306795 1.34439e-05 -0.951776)} Corner 7314 37559 {normal=(0.143503 1.39762e-05 -0.98965)} Corner 7314 37560 {normal=(0.143503 1.39762e-05 -0.98965)} Corner 7315 37560 {normal=(0.143504 1.39762e-05 -0.98965)} Corner 8816 37561 {normal=(0.306796 1.34439e-05 -0.951775)} Corner 9415 37561 {normal=(0.521469 1.20539e-05 -0.85327)} Corner 9415 37562 {normal=(0.521469 1.20539e-05 -0.85327)} Corner 9414 37562 {normal=(0.52147 1.20539e-05 -0.85327)} Corner 9414 37563 {normal=(0.52147 1.20539e-05 -0.85327)} Corner 8815 37563 {normal=(0.306795 1.34439e-05 -0.951776)} Corner 8815 37564 {normal=(0.306795 1.34439e-05 -0.951776)} Corner 8816 37564 {normal=(0.306796 1.34439e-05 -0.951775)} Corner 9415 37565 {normal=(0.521469 1.20539e-05 -0.85327)} Corner 9656 37565 {normal=(0.850008 7.48798e-06 -0.526769)} Corner 9656 37566 {normal=(0.850008 7.48798e-06 -0.526769)} Corner 9655 37566 {normal=(0.850008 7.48799e-06 -0.52677)} Corner 9655 37567 {normal=(0.850008 7.48799e-06 -0.52677)} Corner 9414 37567 {normal=(0.52147 1.20539e-05 -0.85327)} Corner 9414 37568 {normal=(0.52147 1.20539e-05 -0.85327)} Corner 9415 37568 {normal=(0.521469 1.20539e-05 -0.85327)} Corner 9656 37569 {normal=(0.850008 7.48798e-06 -0.526769)} Corner 9756 37569 {normal=(0.999937 1.70911e-07 -0.011248)} Corner 9756 37570 {normal=(0.999937 1.70911e-07 -0.011248)} Corner 9755 37570 {normal=(0.999937 1.7092e-07 -0.0112486)} Corner 9755 37571 {normal=(0.999937 1.7092e-07 -0.0112486)} Corner 9655 37571 {normal=(0.850008 7.48799e-06 -0.52677)} Corner 9655 37572 {normal=(0.850008 7.48799e-06 -0.52677)} Corner 9656 37572 {normal=(0.850008 7.48798e-06 -0.526769)} Corner 9756 37573 {normal=(0.999937 1.70911e-07 -0.011248)} Corner 9658 37573 {normal=(0.922822 -5.46962e-06 0.385228)} Corner 9658 37574 {normal=(0.922822 -5.46962e-06 0.385228)} Corner 9657 37574 {normal=(0.922821 -5.46963e-06 0.385229)} Corner 9657 37575 {normal=(0.922821 -5.46963e-06 0.385229)} Corner 9755 37575 {normal=(0.999937 1.7092e-07 -0.0112486)} Corner 9755 37576 {normal=(0.999937 1.7092e-07 -0.0112486)} Corner 9756 37576 {normal=(0.999937 1.70911e-07 -0.011248)} Corner 9658 37577 {normal=(0.922822 -5.46962e-06 0.385228)} Corner 9480 37577 {normal=(0.687547 -1.02545e-05 0.72614)} Corner 9480 37578 {normal=(0.687547 -1.02545e-05 0.72614)} Corner 9479 37578 {normal=(0.687546 -1.02545e-05 0.726141)} Corner 9479 37579 {normal=(0.687546 -1.02545e-05 0.726141)} Corner 9657 37579 {normal=(0.922821 -5.46963e-06 0.385229)} Corner 9657 37580 {normal=(0.922821 -5.46963e-06 0.385229)} Corner 9658 37580 {normal=(0.922822 -5.46962e-06 0.385228)} Corner 9484 37581 {normal=(0.687628 -1.0239e-05 0.726063)} Corner 9650 37581 {normal=(0.924577 -5.40384e-06 0.380995)} Corner 9650 37582 {normal=(0.924577 -5.40384e-06 0.380995)} Corner 9651 37582 {normal=(0.924578 -5.40383e-06 0.380994)} Corner 9651 37583 {normal=(0.924578 -5.40383e-06 0.380994)} Corner 9485 37583 {normal=(0.687629 -1.0239e-05 0.726063)} Corner 9485 37584 {normal=(0.687629 -1.0239e-05 0.726063)} Corner 9484 37584 {normal=(0.687628 -1.0239e-05 0.726063)} Corner 9650 37585 {normal=(0.924577 -5.40384e-06 0.380995)} Corner 9748 37585 {normal=(0.999947 1.51852e-07 -0.0102546)} Corner 9748 37586 {normal=(0.999947 1.51852e-07 -0.0102546)} Corner 9749 37586 {normal=(0.999947 1.51843e-07 -0.0102541)} Corner 9749 37587 {normal=(0.999947 1.51843e-07 -0.0102541)} Corner 9651 37587 {normal=(0.924578 -5.40383e-06 0.380994)} Corner 9651 37588 {normal=(0.924578 -5.40383e-06 0.380994)} Corner 9650 37588 {normal=(0.924577 -5.40384e-06 0.380995)} Corner 9748 37589 {normal=(0.999947 1.51852e-07 -0.0102546)} Corner 9666 37589 {normal=(0.857805 7.30082e-06 -0.513976)} Corner 9666 37590 {normal=(0.857805 7.30082e-06 -0.513976)} Corner 9667 37590 {normal=(0.857806 7.3008e-06 -0.513974)} Corner 9667 37591 {normal=(0.857806 7.3008e-06 -0.513974)} Corner 9749 37591 {normal=(0.999947 1.51843e-07 -0.0102541)} Corner 9749 37592 {normal=(0.999947 1.51843e-07 -0.0102541)} Corner 9748 37592 {normal=(0.999947 1.51852e-07 -0.0102546)} Corner 9666 37593 {normal=(0.857805 7.30082e-06 -0.513976)} Corner 9411 37593 {normal=(0.526782 1.20049e-05 -0.85)} Corner 9411 37594 {normal=(0.526782 1.20049e-05 -0.85)} Corner 9412 37594 {normal=(0.526782 1.20049e-05 -0.850001)} Corner 9412 37595 {normal=(0.526782 1.20049e-05 -0.850001)} Corner 9667 37595 {normal=(0.857806 7.3008e-06 -0.513974)} Corner 9667 37596 {normal=(0.857806 7.3008e-06 -0.513974)} Corner 9666 37596 {normal=(0.857805 7.30082e-06 -0.513976)} Corner 9411 37597 {normal=(0.526782 1.20049e-05 -0.85)} Corner 8794 37597 {normal=(0.303429 1.34597e-05 -0.952854)} Corner 8794 37598 {normal=(0.303429 1.34597e-05 -0.952854)} Corner 8795 37598 {normal=(0.303429 1.34597e-05 -0.952854)} Corner 8795 37599 {normal=(0.303429 1.34597e-05 -0.952854)} Corner 9412 37599 {normal=(0.526782 1.20049e-05 -0.850001)} Corner 9412 37600 {normal=(0.526782 1.20049e-05 -0.850001)} Corner 9411 37600 {normal=(0.526782 1.20049e-05 -0.85)} Corner 8794 37601 {normal=(0.303429 1.34597e-05 -0.952854)} Corner 7298 37601 {normal=(0.143275 1.39792e-05 -0.989683)} Corner 7298 37602 {normal=(0.143275 1.39792e-05 -0.989683)} Corner 7299 37602 {normal=(0.143275 1.39792e-05 -0.989683)} Corner 7299 37603 {normal=(0.143275 1.39792e-05 -0.989683)} Corner 8795 37603 {normal=(0.303429 1.34597e-05 -0.952854)} Corner 8795 37604 {normal=(0.303429 1.34597e-05 -0.952854)} Corner 8794 37604 {normal=(0.303429 1.34597e-05 -0.952854)} Corner 7298 37605 {normal=(0.143275 1.39792e-05 -0.989683)} Corner 5503 37605 {normal=(0 1.41242e-05 -1)} Corner 5503 37606 {normal=(0 1.41242e-05 -1)} Corner 5507 37606 {normal=(0 1.41242e-05 -1)} Corner 5507 37607 {normal=(0 1.41242e-05 -1)} Corner 7299 37607 {normal=(0.143275 1.39792e-05 -0.989683)} Corner 7299 37608 {normal=(0.143275 1.39792e-05 -0.989683)} Corner 7298 37608 {normal=(0.143275 1.39792e-05 -0.989683)} Corner 9578 37609 {normal=(0.922863 -4.07118e-06 0.385129)} Corner 9441 37609 {normal=(0.690295 -9.26699e-06 0.723528)} Corner 9441 37610 {normal=(0.690295 -9.26699e-06 0.723528)} Corner 9440 37610 {normal=(0.690295 -9.267e-06 0.723528)} Corner 9440 37611 {normal=(0.690295 -9.267e-06 0.723528)} Corner 9577 37611 {normal=(0.922862 -4.0712e-06 0.385131)} Corner 9577 37612 {normal=(0.922862 -4.0712e-06 0.385131)} Corner 9578 37612 {normal=(0.922863 -4.07118e-06 0.385129)} Corner 9685 37613 {normal=(0.999999 4.5317e-07 -0.00131522)} Corner 9578 37613 {normal=(0.922863 -4.07118e-06 0.385129)} Corner 9578 37614 {normal=(0.922863 -4.07118e-06 0.385129)} Corner 9577 37614 {normal=(0.922862 -4.0712e-06 0.385131)} Corner 9577 37615 {normal=(0.922862 -4.0712e-06 0.385131)} Corner 9684 37615 {normal=(0.999999 4.53173e-07 -0.0013155)} Corner 9684 37616 {normal=(0.999999 4.53173e-07 -0.0013155)} Corner 9685 37616 {normal=(0.999999 4.5317e-07 -0.00131522)} Corner 9596 37617 {normal=(0.852678 7.3782e-06 -0.522437)} Corner 9685 37617 {normal=(0.999999 4.5317e-07 -0.00131522)} Corner 9685 37618 {normal=(0.999999 4.5317e-07 -0.00131522)} Corner 9684 37618 {normal=(0.999999 4.53173e-07 -0.0013155)} Corner 9684 37619 {normal=(0.999999 4.53173e-07 -0.0013155)} Corner 9595 37619 {normal=(0.852677 7.37822e-06 -0.522438)} Corner 9595 37620 {normal=(0.852677 7.37822e-06 -0.522438)} Corner 9596 37620 {normal=(0.852678 7.3782e-06 -0.522437)} Corner 9401 37621 {normal=(0.518116 1.20885e-05 -0.85531)} Corner 9596 37621 {normal=(0.852678 7.3782e-06 -0.522437)} Corner 9596 37622 {normal=(0.852678 7.3782e-06 -0.522437)} Corner 9595 37622 {normal=(0.852677 7.37822e-06 -0.522438)} Corner 9595 37623 {normal=(0.852677 7.37822e-06 -0.522438)} Corner 9400 37623 {normal=(0.518116 1.20885e-05 -0.85531)} Corner 9400 37624 {normal=(0.518116 1.20885e-05 -0.85531)} Corner 9401 37624 {normal=(0.518116 1.20885e-05 -0.85531)} Corner 8616 37625 {normal=(0.303959 1.34599e-05 -0.952685)} Corner 9401 37625 {normal=(0.518116 1.20885e-05 -0.85531)} Corner 9401 37626 {normal=(0.518116 1.20885e-05 -0.85531)} Corner 9400 37626 {normal=(0.518116 1.20885e-05 -0.85531)} Corner 9400 37627 {normal=(0.518116 1.20885e-05 -0.85531)} Corner 8615 37627 {normal=(0.303959 1.34599e-05 -0.952685)} Corner 8615 37628 {normal=(0.303959 1.34599e-05 -0.952685)} Corner 8616 37628 {normal=(0.303959 1.34599e-05 -0.952685)} Corner 7231 37629 {normal=(0.144367 1.39765e-05 -0.989524)} Corner 8616 37629 {normal=(0.303959 1.34599e-05 -0.952685)} Corner 8616 37630 {normal=(0.303959 1.34599e-05 -0.952685)} Corner 8615 37630 {normal=(0.303959 1.34599e-05 -0.952685)} Corner 8615 37631 {normal=(0.303959 1.34599e-05 -0.952685)} Corner 7230 37631 {normal=(0.144366 1.39765e-05 -0.989524)} Corner 7230 37632 {normal=(0.144366 1.39765e-05 -0.989524)} Corner 7231 37632 {normal=(0.144367 1.39765e-05 -0.989524)} Corner 5515 37633 {normal=(0 1.41228e-05 -1)} Corner 7315 37633 {normal=(0.143504 1.39762e-05 -0.98965)} Corner 7315 37634 {normal=(0.143504 1.39762e-05 -0.98965)} Corner 7314 37634 {normal=(0.143503 1.39762e-05 -0.98965)} Corner 7314 37635 {normal=(0.143503 1.39762e-05 -0.98965)} Corner 5511 37635 {normal=(0 1.41228e-05 -1)} Corner 5511 37636 {normal=(0 1.41228e-05 -1)} Corner 5515 37636 {normal=(0 1.41228e-05 -1)} Corner 7321 37637 {normal=(0.142646 -1.39781e-05 0.989774)} Corner 5512 37637 {normal=(9.51162e-09 -1.41243e-05 1)} Corner 5512 37638 {normal=(9.51162e-09 -1.41243e-05 1)} Corner 5508 37638 {normal=(9.51153e-09 -1.41243e-05 1)} Corner 5508 37639 {normal=(9.51153e-09 -1.41243e-05 1)} Corner 7320 37639 {normal=(0.142647 -1.39781e-05 0.989774)} Corner 7320 37640 {normal=(0.142647 -1.39781e-05 0.989774)} Corner 7321 37640 {normal=(0.142646 -1.39781e-05 0.989774)} Corner 9011 37641 {normal=(0.41837 -1.2831e-05 0.908277)} Corner 7321 37641 {normal=(0.142646 -1.39781e-05 0.989774)} Corner 7321 37642 {normal=(0.142646 -1.39781e-05 0.989774)} Corner 7320 37642 {normal=(0.142647 -1.39781e-05 0.989774)} Corner 7320 37643 {normal=(0.142647 -1.39781e-05 0.989774)} Corner 9010 37643 {normal=(0.41837 -1.2831e-05 0.908277)} Corner 9010 37644 {normal=(0.41837 -1.2831e-05 0.908277)} Corner 9011 37644 {normal=(0.41837 -1.2831e-05 0.908277)} Corner 9480 37645 {normal=(0.687547 -1.02545e-05 0.72614)} Corner 9011 37645 {normal=(0.41837 -1.2831e-05 0.908277)} Corner 9011 37646 {normal=(0.41837 -1.2831e-05 0.908277)} Corner 9010 37646 {normal=(0.41837 -1.2831e-05 0.908277)} Corner 9010 37647 {normal=(0.41837 -1.2831e-05 0.908277)} Corner 9479 37647 {normal=(0.687546 -1.02545e-05 0.726141)} Corner 9479 37648 {normal=(0.687546 -1.02545e-05 0.726141)} Corner 9480 37648 {normal=(0.687547 -1.02545e-05 0.72614)} Corner 1375 37649 {normal=(-0.0242909 -0.999705 -7.99084e-05)} Corner 1466 37649 {normal=(-4.70896e-06 -1 -1.68679e-05)} Corner 1466 37650 {normal=(-4.70896e-06 -1 -1.68679e-05)} Corner 1394 37650 {normal=(-4.58415e-06 -1 -1.68448e-05)} Corner 1394 37651 {normal=(-4.58415e-06 -1 -1.68448e-05)} Corner 1296 37651 {normal=(-5.97426e-06 -1 -1.39251e-05)} Corner 1296 37652 {normal=(-5.97426e-06 -1 -1.39251e-05)} Corner 1375 37652 {normal=(-0.0242909 -0.999705 -7.99084e-05)} Corner 1560 37653 {normal=(-3.84315e-06 -1 -1.46146e-05)} Corner 1394 37653 {normal=(-4.58415e-06 -1 -1.68448e-05)} Corner 1394 37654 {normal=(-4.58415e-06 -1 -1.68448e-05)} Corner 1466 37654 {normal=(-4.70896e-06 -1 -1.68679e-05)} Corner 1466 37655 {normal=(-4.70896e-06 -1 -1.68679e-05)} Corner 1579 37655 {normal=(-0.00745874 -0.999942 0.00779946)} Corner 1579 37656 {normal=(-0.00745874 -0.999942 0.00779946)} Corner 1560 37656 {normal=(-3.84315e-06 -1 -1.46146e-05)} Corner 3812 37657 {normal=(1.94366e-06 1 7.6642e-06)} Corner 5506 37657 {normal=(0 1 1.51318e-05)} Corner 5506 37658 {normal=(0 1 1.51318e-05)} Corner 5507 37658 {normal=(0 1 1.51318e-05)} Corner 5507 37659 {normal=(0 1 1.51318e-05)} Corner 3745 37659 {normal=(1.8891e-06 1 7.44907e-06)} Corner 3745 37660 {normal=(1.8891e-06 1 7.44907e-06)} Corner 3812 37660 {normal=(1.94366e-06 1 7.6642e-06)} Corner 2427 37661 {normal=(-3.25657e-06 1 1.51778e-06)} Corner 3812 37661 {normal=(1.94366e-06 1 7.6642e-06)} Corner 3812 37662 {normal=(1.94366e-06 1 7.6642e-06)} Corner 3745 37662 {normal=(1.8891e-06 1 7.44907e-06)} Corner 3745 37663 {normal=(1.8891e-06 1 7.44907e-06)} Corner 2250 37663 {normal=(-3.37937e-06 1 1.57501e-06)} Corner 2250 37664 {normal=(-3.37937e-06 1 1.57501e-06)} Corner 2427 37664 {normal=(-3.25657e-06 1 1.51778e-06)} Corner 1643 37665 {normal=(-6.43046e-06 1 5.61892e-06)} Corner 2427 37665 {normal=(-3.25657e-06 1 1.51778e-06)} Corner 2427 37666 {normal=(-3.25657e-06 1 1.51778e-06)} Corner 2250 37666 {normal=(-3.37937e-06 1 1.57501e-06)} Corner 2250 37667 {normal=(-3.37937e-06 1 1.57501e-06)} Corner 1634 37667 {normal=(-6.43469e-06 1 5.56513e-06)} Corner 1634 37668 {normal=(-6.43469e-06 1 5.56513e-06)} Corner 1643 37668 {normal=(-6.43046e-06 1 5.61892e-06)} Corner 1449 37669 {normal=(-4.2757e-06 1 7.10337e-06)} Corner 1643 37669 {normal=(-6.43046e-06 1 5.61892e-06)} Corner 1643 37670 {normal=(-6.43046e-06 1 5.61892e-06)} Corner 1634 37670 {normal=(-6.43469e-06 1 5.56513e-06)} Corner 1634 37671 {normal=(-6.43469e-06 1 5.56513e-06)} Corner 1379 37671 {normal=(-3.48748e-06 1 6.69555e-06)} Corner 1379 37672 {normal=(-3.48748e-06 1 6.69555e-06)} Corner 1449 37672 {normal=(-4.2757e-06 1 7.10337e-06)} Corner 1359 37673 {normal=(9.83724e-08 1 1.40614e-05)} Corner 1449 37673 {normal=(-4.2757e-06 1 7.10337e-06)} Corner 1449 37674 {normal=(-4.2757e-06 1 7.10337e-06)} Corner 1379 37674 {normal=(-3.48748e-06 1 6.69555e-06)} Corner 1379 37675 {normal=(-3.48748e-06 1 6.69555e-06)} Corner 1297 37675 {normal=(-4.48319e-07 1 1.14876e-05)} Corner 1297 37676 {normal=(-4.48319e-07 1 1.14876e-05)} Corner 1359 37676 {normal=(9.83724e-08 1 1.40614e-05)} Corner 1467 37677 {normal=(-1.8048e-06 1 1.94308e-05)} Corner 1359 37677 {normal=(9.83724e-08 1 1.40614e-05)} Corner 1359 37678 {normal=(9.83724e-08 1 1.40614e-05)} Corner 1297 37678 {normal=(-4.48319e-07 1 1.14876e-05)} Corner 1297 37679 {normal=(-4.48319e-07 1 1.14876e-05)} Corner 1395 37679 {normal=(-1.92523e-06 1 1.9404e-05)} Corner 1395 37680 {normal=(-1.92523e-06 1 1.9404e-05)} Corner 1467 37680 {normal=(-1.8048e-06 1 1.94308e-05)} Corner 1603 37681 {normal=(-2.95801e-06 1 1.8247e-05)} Corner 1467 37681 {normal=(-1.8048e-06 1 1.94308e-05)} Corner 1467 37682 {normal=(-1.8048e-06 1 1.94308e-05)} Corner 1395 37682 {normal=(-1.92523e-06 1 1.9404e-05)} Corner 1395 37683 {normal=(-1.92523e-06 1 1.9404e-05)} Corner 1561 37683 {normal=(-2.83979e-06 1 1.82221e-05)} Corner 1561 37684 {normal=(-2.83979e-06 1 1.82221e-05)} Corner 1603 37684 {normal=(-2.95801e-06 1 1.8247e-05)} Corner 2352 37685 {normal=(-1.4877e-06 1 1.66252e-05)} Corner 1603 37685 {normal=(-2.95801e-06 1 1.8247e-05)} Corner 1603 37686 {normal=(-2.95801e-06 1 1.8247e-05)} Corner 1561 37686 {normal=(-2.83979e-06 1 1.82221e-05)} Corner 1561 37687 {normal=(-2.83979e-06 1 1.82221e-05)} Corner 2116 37687 {normal=(-1.46064e-06 1 1.66654e-05)} Corner 2116 37688 {normal=(-1.46064e-06 1 1.66654e-05)} Corner 2352 37688 {normal=(-1.4877e-06 1 1.66252e-05)} Corner 3825 37689 {normal=(-5.23008e-06 1 1.52822e-05)} Corner 2352 37689 {normal=(-1.4877e-06 1 1.66252e-05)} Corner 2352 37690 {normal=(-1.4877e-06 1 1.66252e-05)} Corner 2116 37690 {normal=(-1.46064e-06 1 1.66654e-05)} Corner 2116 37691 {normal=(-1.46064e-06 1 1.66654e-05)} Corner 3761 37691 {normal=(-5.28972e-06 1 1.52776e-05)} Corner 3761 37692 {normal=(-5.28972e-06 1 1.52776e-05)} Corner 3825 37692 {normal=(-5.23008e-06 1 1.52822e-05)} Corner 5505 37693 {normal=(0 1 1.50471e-05)} Corner 3825 37693 {normal=(-5.23008e-06 1 1.52822e-05)} Corner 3825 37694 {normal=(-5.23008e-06 1 1.52822e-05)} Corner 3761 37694 {normal=(-5.28972e-06 1 1.52776e-05)} Corner 3761 37695 {normal=(-5.28972e-06 1 1.52776e-05)} Corner 5504 37695 {normal=(0 1 1.50471e-05)} Corner 5504 37696 {normal=(0 1 1.50471e-05)} Corner 5505 37696 {normal=(0 1 1.50471e-05)} Corner 3824 37697 {normal=(-0.0002943 -0.999998 0.00206073)} Corner 5501 37697 {normal=(0 -1 -1.5056e-05)} Corner 5501 37698 {normal=(0 -1 -1.5056e-05)} Corner 5500 37698 {normal=(0 -1 -1.5056e-05)} Corner 5500 37699 {normal=(0 -1 -1.5056e-05)} Corner 3760 37699 {normal=(-0.000284401 -0.999998 0.00199279)} Corner 3760 37700 {normal=(-0.000284401 -0.999998 0.00199279)} Corner 3824 37700 {normal=(-0.0002943 -0.999998 0.00206073)} Corner 2555 37701 {normal=(-0.00360643 -0.999989 0.0030499)} Corner 3824 37701 {normal=(-0.0002943 -0.999998 0.00206073)} Corner 3824 37702 {normal=(-0.0002943 -0.999998 0.00206073)} Corner 3760 37702 {normal=(-0.000284401 -0.999998 0.00199279)} Corner 3760 37703 {normal=(-0.000284401 -0.999998 0.00199279)} Corner 2115 37703 {normal=(-0.00270463 -0.999994 0.00220403)} Corner 2115 37704 {normal=(-0.00270463 -0.999994 0.00220403)} Corner 2555 37704 {normal=(-0.00360643 -0.999989 0.0030499)} Corner 1635 37705 {normal=(-0.00702138 -0.999948 0.00734627)} Corner 1951 37705 {normal=(-0.00292463 -0.999995 0.000775182)} Corner 1951 37706 {normal=(-0.00292463 -0.999995 0.000775182)} Corner 2115 37706 {normal=(-0.00270463 -0.999994 0.00220403)} Corner 2115 37707 {normal=(-0.00270463 -0.999994 0.00220403)} Corner 1560 37707 {normal=(-3.84315e-06 -1 -1.46146e-05)} Corner 1560 37708 {normal=(-3.84315e-06 -1 -1.46146e-05)} Corner 1635 37708 {normal=(-0.00702138 -0.999948 0.00734627)} Corner 1448 37709 {normal=(5.42929e-06 -1 -5.75675e-06)} Corner 1377 37709 {normal=(-0.0198524 -0.999803 -6.25038e-05)} Corner 1377 37710 {normal=(-0.0198524 -0.999803 -6.25038e-05)} Corner 1296 37710 {normal=(-5.97426e-06 -1 -1.39251e-05)} Corner 1296 37711 {normal=(-5.97426e-06 -1 -1.39251e-05)} Corner 1378 37711 {normal=(3.4853e-06 -1 -6.14065e-06)} Corner 1378 37712 {normal=(3.4853e-06 -1 -6.14065e-06)} Corner 1448 37712 {normal=(5.42929e-06 -1 -5.75675e-06)} Corner 1627 37713 {normal=(-0.0207349 -0.999197 -0.0342936)} Corner 1448 37713 {normal=(5.42929e-06 -1 -5.75675e-06)} Corner 1448 37714 {normal=(5.42929e-06 -1 -5.75675e-06)} Corner 1378 37714 {normal=(3.4853e-06 -1 -6.14065e-06)} Corner 1378 37715 {normal=(3.4853e-06 -1 -6.14065e-06)} Corner 1633 37715 {normal=(3.60365e-06 -1 -7.84883e-06)} Corner 1633 37716 {normal=(3.60365e-06 -1 -7.84883e-06)} Corner 1627 37716 {normal=(-0.0207349 -0.999197 -0.0342936)} Corner 2426 37717 {normal=(-1.84279e-06 -1 -1.91626e-05)} Corner 1663 37717 {normal=(-0.0223214 -0.999069 -0.0369221)} Corner 1663 37718 {normal=(-0.0223214 -0.999069 -0.0369221)} Corner 1633 37718 {normal=(3.60365e-06 -1 -7.84883e-06)} Corner 1633 37719 {normal=(3.60365e-06 -1 -7.84883e-06)} Corner 2249 37719 {normal=(-1.64695e-06 -1 -1.93592e-05)} Corner 2249 37720 {normal=(-1.64695e-06 -1 -1.93592e-05)} Corner 2426 37720 {normal=(-1.84279e-06 -1 -1.91626e-05)} Corner 3811 37721 {normal=(-5.41513e-06 -1 -1.45493e-05)} Corner 2426 37721 {normal=(-1.84279e-06 -1 -1.91626e-05)} Corner 2426 37722 {normal=(-1.84279e-06 -1 -1.91626e-05)} Corner 2249 37722 {normal=(-1.64695e-06 -1 -1.93592e-05)} Corner 2249 37723 {normal=(-1.64695e-06 -1 -1.93592e-05)} Corner 3744 37723 {normal=(-5.46059e-06 -1 -1.45325e-05)} Corner 3744 37724 {normal=(-5.46059e-06 -1 -1.45325e-05)} Corner 3811 37724 {normal=(-5.41513e-06 -1 -1.45493e-05)} Corner 5502 37725 {normal=(0 -1 -1.51318e-05)} Corner 3811 37725 {normal=(-5.41513e-06 -1 -1.45493e-05)} Corner 3811 37726 {normal=(-5.41513e-06 -1 -1.45493e-05)} Corner 3744 37726 {normal=(-5.46059e-06 -1 -1.45325e-05)} Corner 3744 37727 {normal=(-5.46059e-06 -1 -1.45325e-05)} Corner 5503 37727 {normal=(0 -1 -1.51318e-05)} Corner 5503 37728 {normal=(0 -1 -1.51318e-05)} Corner 5502 37728 {normal=(0 -1 -1.51318e-05)} Corner 1361 37729 {normal=(2.85376e-06 1 1.33677e-05)} Corner 1451 37729 {normal=(1.58533e-06 1 1.16275e-05)} Corner 1451 37730 {normal=(1.58533e-06 1 1.16275e-05)} Corner 1390 37730 {normal=(1.38653e-06 1 1.19984e-05)} Corner 1390 37731 {normal=(1.38653e-06 1 1.19984e-05)} Corner 1290 37731 {normal=(2.92062e-06 1 1.28577e-05)} Corner 1290 37732 {normal=(2.92062e-06 1 1.28577e-05)} Corner 1361 37732 {normal=(2.85376e-06 1 1.33677e-05)} Corner 1469 37733 {normal=(2.07745e-06 1 1.73529e-05)} Corner 1361 37733 {normal=(2.85376e-06 1 1.33677e-05)} Corner 1361 37734 {normal=(2.85376e-06 1 1.33677e-05)} Corner 1290 37734 {normal=(2.92062e-06 1 1.28577e-05)} Corner 1290 37735 {normal=(2.92062e-06 1 1.28577e-05)} Corner 1388 37735 {normal=(2.08877e-06 1 1.74426e-05)} Corner 1388 37736 {normal=(2.08877e-06 1 1.74426e-05)} Corner 1469 37736 {normal=(2.07745e-06 1 1.73529e-05)} Corner 1605 37737 {normal=(1.92502e-06 1 1.58114e-05)} Corner 1469 37737 {normal=(2.07745e-06 1 1.73529e-05)} Corner 1469 37738 {normal=(2.07745e-06 1 1.73529e-05)} Corner 1388 37738 {normal=(2.08877e-06 1 1.74426e-05)} Corner 1388 37739 {normal=(2.08877e-06 1 1.74426e-05)} Corner 1566 37739 {normal=(1.92159e-06 1 1.57541e-05)} Corner 1566 37740 {normal=(1.92159e-06 1 1.57541e-05)} Corner 1605 37740 {normal=(1.92502e-06 1 1.58114e-05)} Corner 2354 37741 {normal=(-2.67903e-07 1 1.28614e-05)} Corner 1605 37741 {normal=(1.92502e-06 1 1.58114e-05)} Corner 1605 37742 {normal=(1.92502e-06 1 1.58114e-05)} Corner 1566 37742 {normal=(1.92159e-06 1 1.57541e-05)} Corner 1566 37743 {normal=(1.92159e-06 1 1.57541e-05)} Corner 2034 37743 {normal=(3.53702e-07 1 1.35159e-05)} Corner 2034 37744 {normal=(3.53702e-07 1 1.35159e-05)} Corner 2354 37744 {normal=(-2.67903e-07 1 1.28614e-05)} Corner 3827 37745 {normal=(-5.12602e-06 1 1.22674e-05)} Corner 2354 37745 {normal=(-2.67903e-07 1 1.28614e-05)} Corner 2354 37746 {normal=(-2.67903e-07 1 1.28614e-05)} Corner 2034 37746 {normal=(3.53702e-07 1 1.35159e-05)} Corner 2034 37747 {normal=(3.53702e-07 1 1.35159e-05)} Corner 3722 37747 {normal=(-4.6294e-06 1 1.21104e-05)} Corner 3722 37748 {normal=(-4.6294e-06 1 1.21104e-05)} Corner 3827 37748 {normal=(-5.12602e-06 1 1.22674e-05)} Corner 5513 37749 {normal=(0 1 1.31728e-05)} Corner 3827 37749 {normal=(-5.12602e-06 1 1.22674e-05)} Corner 3827 37750 {normal=(-5.12602e-06 1 1.22674e-05)} Corner 3722 37750 {normal=(-4.6294e-06 1 1.21104e-05)} Corner 3722 37751 {normal=(-4.6294e-06 1 1.21104e-05)} Corner 5512 37751 {normal=(0 1 1.31728e-05)} Corner 5512 37752 {normal=(0 1 1.31728e-05)} Corner 5513 37752 {normal=(0 1 1.31728e-05)} Corner 3826 37753 {normal=(5.64486e-06 -1 -1.36879e-05)} Corner 5509 37753 {normal=(0 -1 -1.31728e-05)} Corner 5509 37754 {normal=(0 -1 -1.31728e-05)} Corner 5508 37754 {normal=(0 -1 -1.31728e-05)} Corner 5508 37755 {normal=(0 -1 -1.31728e-05)} Corner 3721 37755 {normal=(5.23822e-06 -1 -1.37773e-05)} Corner 3721 37756 {normal=(5.23822e-06 -1 -1.37773e-05)} Corner 3826 37756 {normal=(5.64486e-06 -1 -1.36879e-05)} Corner 2353 37757 {normal=(1.15176e-06 -1 -1.53166e-05)} Corner 3826 37757 {normal=(5.64486e-06 -1 -1.36879e-05)} Corner 3826 37758 {normal=(5.64486e-06 -1 -1.36879e-05)} Corner 3721 37758 {normal=(5.23822e-06 -1 -1.37773e-05)} Corner 3721 37759 {normal=(5.23822e-06 -1 -1.37773e-05)} Corner 2033 37759 {normal=(4.36927e-07 -1 -1.573e-05)} Corner 2033 37760 {normal=(4.36927e-07 -1 -1.573e-05)} Corner 2353 37760 {normal=(1.15176e-06 -1 -1.53166e-05)} Corner 1604 37761 {normal=(-1.61001e-06 -1 -1.66095e-05)} Corner 2353 37761 {normal=(1.15176e-06 -1 -1.53166e-05)} Corner 2353 37762 {normal=(1.15176e-06 -1 -1.53166e-05)} Corner 2033 37762 {normal=(4.36927e-07 -1 -1.573e-05)} Corner 2033 37763 {normal=(4.36927e-07 -1 -1.573e-05)} Corner 1565 37763 {normal=(-1.58595e-06 -1 -1.6621e-05)} Corner 1565 37764 {normal=(-1.58595e-06 -1 -1.6621e-05)} Corner 1604 37764 {normal=(-1.61001e-06 -1 -1.66095e-05)} Corner 1468 37765 {normal=(-1.30735e-06 -1 -1.74182e-05)} Corner 1604 37765 {normal=(-1.61001e-06 -1 -1.66095e-05)} Corner 1604 37766 {normal=(-1.61001e-06 -1 -1.66095e-05)} Corner 1565 37766 {normal=(-1.58595e-06 -1 -1.6621e-05)} Corner 1565 37767 {normal=(-1.58595e-06 -1 -1.6621e-05)} Corner 1387 37767 {normal=(-1.25108e-06 -1 -1.75109e-05)} Corner 1387 37768 {normal=(-1.25108e-06 -1 -1.75109e-05)} Corner 1468 37768 {normal=(-1.30735e-06 -1 -1.74182e-05)} Corner 1360 37769 {normal=(-1.39166e-06 -1 -1.31069e-05)} Corner 1468 37769 {normal=(-1.30735e-06 -1 -1.74182e-05)} Corner 1468 37770 {normal=(-1.30735e-06 -1 -1.74182e-05)} Corner 1387 37770 {normal=(-1.25108e-06 -1 -1.75109e-05)} Corner 1387 37771 {normal=(-1.25108e-06 -1 -1.75109e-05)} Corner 1289 37771 {normal=(-1.46385e-06 -1 -1.25601e-05)} Corner 1289 37772 {normal=(-1.46385e-06 -1 -1.25601e-05)} Corner 1360 37772 {normal=(-1.39166e-06 -1 -1.31069e-05)} Corner 1450 37773 {normal=(-2.63152e-07 -1 -1.07881e-05)} Corner 1360 37773 {normal=(-1.39166e-06 -1 -1.31069e-05)} Corner 1360 37774 {normal=(-1.39166e-06 -1 -1.31069e-05)} Corner 1289 37774 {normal=(-1.46385e-06 -1 -1.25601e-05)} Corner 1289 37775 {normal=(-1.46385e-06 -1 -1.25601e-05)} Corner 1389 37775 {normal=(-7.26854e-08 -1 -1.11404e-05)} Corner 1389 37776 {normal=(-7.26854e-08 -1 -1.11404e-05)} Corner 1450 37776 {normal=(-2.63152e-07 -1 -1.07881e-05)} Corner 1644 37777 {normal=(2.83128e-06 -1 -1.53292e-05)} Corner 1450 37777 {normal=(-2.63152e-07 -1 -1.07881e-05)} Corner 1450 37778 {normal=(-2.63152e-07 -1 -1.07881e-05)} Corner 1389 37778 {normal=(-7.26854e-08 -1 -1.11404e-05)} Corner 1389 37779 {normal=(-7.26854e-08 -1 -1.11404e-05)} Corner 1630 37779 {normal=(2.70918e-06 -1 -1.52427e-05)} Corner 1630 37780 {normal=(2.70918e-06 -1 -1.52427e-05)} Corner 1644 37780 {normal=(2.83128e-06 -1 -1.53292e-05)} Corner 2428 37781 {normal=(-1.493e-06 -1 -1.40857e-05)} Corner 1644 37781 {normal=(2.83128e-06 -1 -1.53292e-05)} Corner 1644 37782 {normal=(2.83128e-06 -1 -1.53292e-05)} Corner 1630 37782 {normal=(2.70918e-06 -1 -1.52427e-05)} Corner 1630 37783 {normal=(2.70918e-06 -1 -1.52427e-05)} Corner 2229 37783 {normal=(-1.03797e-06 -1 -1.42503e-05)} Corner 2229 37784 {normal=(-1.03797e-06 -1 -1.42503e-05)} Corner 2428 37784 {normal=(-1.493e-06 -1 -1.40857e-05)} Corner 3813 37785 {normal=(-4.58362e-06 -1 -1.22273e-05)} Corner 2428 37785 {normal=(-1.493e-06 -1 -1.40857e-05)} Corner 2428 37786 {normal=(-1.493e-06 -1 -1.40857e-05)} Corner 2229 37786 {normal=(-1.03797e-06 -1 -1.42503e-05)} Corner 2229 37787 {normal=(-1.03797e-06 -1 -1.42503e-05)} Corner 3727 37787 {normal=(-4.76298e-06 -1 -1.22399e-05)} Corner 3727 37788 {normal=(-4.76298e-06 -1 -1.22399e-05)} Corner 3813 37788 {normal=(-4.58362e-06 -1 -1.22273e-05)} Corner 5510 37789 {normal=(0 -1 -1.21187e-05)} Corner 3813 37789 {normal=(-4.58362e-06 -1 -1.22273e-05)} Corner 3813 37790 {normal=(-4.58362e-06 -1 -1.22273e-05)} Corner 3727 37790 {normal=(-4.76298e-06 -1 -1.22399e-05)} Corner 3727 37791 {normal=(-4.76298e-06 -1 -1.22399e-05)} Corner 5511 37791 {normal=(0 -1 -1.21187e-05)} Corner 5511 37792 {normal=(0 -1 -1.21187e-05)} Corner 5510 37792 {normal=(0 -1 -1.21187e-05)} Corner 3814 37793 {normal=(4.45849e-06 1 1.30739e-05)} Corner 5514 37793 {normal=(0 1 1.37293e-05)} Corner 5514 37794 {normal=(0 1 1.37293e-05)} Corner 5515 37794 {normal=(0 1 1.37293e-05)} Corner 5515 37795 {normal=(0 1 1.37293e-05)} Corner 3728 37795 {normal=(4.65095e-06 1 1.29979e-05)} Corner 3728 37796 {normal=(4.65095e-06 1 1.29979e-05)} Corner 3814 37796 {normal=(4.45849e-06 1 1.30739e-05)} Corner 2429 37797 {normal=(1.493e-06 1 1.40857e-05)} Corner 3814 37797 {normal=(4.45849e-06 1 1.30739e-05)} Corner 3814 37798 {normal=(4.45849e-06 1 1.30739e-05)} Corner 3728 37798 {normal=(4.65095e-06 1 1.29979e-05)} Corner 3728 37799 {normal=(4.65095e-06 1 1.29979e-05)} Corner 2230 37799 {normal=(1.03797e-06 1 1.42503e-05)} Corner 2230 37800 {normal=(1.03797e-06 1 1.42503e-05)} Corner 2429 37800 {normal=(1.493e-06 1 1.40857e-05)} Corner 1645 37801 {normal=(-2.25025e-06 1 1.58202e-05)} Corner 2429 37801 {normal=(1.493e-06 1 1.40857e-05)} Corner 2429 37802 {normal=(1.493e-06 1 1.40857e-05)} Corner 2230 37802 {normal=(1.03797e-06 1 1.42503e-05)} Corner 2230 37803 {normal=(1.03797e-06 1 1.42503e-05)} Corner 1631 37803 {normal=(-2.05145e-06 1 1.57985e-05)} Corner 1631 37804 {normal=(-2.05145e-06 1 1.57985e-05)} Corner 1645 37804 {normal=(-2.25025e-06 1 1.58202e-05)} Corner 1451 37805 {normal=(1.58533e-06 1 1.16275e-05)} Corner 1645 37805 {normal=(-2.25025e-06 1 1.58202e-05)} Corner 1645 37806 {normal=(-2.25025e-06 1 1.58202e-05)} Corner 1631 37806 {normal=(-2.05145e-06 1 1.57985e-05)} Corner 1631 37807 {normal=(-2.05145e-06 1 1.57985e-05)} Corner 1390 37807 {normal=(1.38653e-06 1 1.19984e-05)} Corner 1390 37808 {normal=(1.38653e-06 1 1.19984e-05)} Corner 1451 37808 {normal=(1.58533e-06 1 1.16275e-05)} Corner 1603 37809 {normal=(-0.690295 -9.25498e-06 0.723528)} Corner 2352 37809 {normal=(-0.415406 -1.28499e-05 0.909636)} Corner 2352 37810 {normal=(-0.415406 -1.28499e-05 0.909636)} Corner 2353 37810 {normal=(-0.415406 -1.28499e-05 0.909636)} Corner 2353 37811 {normal=(-0.415406 -1.28499e-05 0.909636)} Corner 1604 37811 {normal=(-0.690295 -9.25497e-06 0.723528)} Corner 1604 37812 {normal=(-0.690295 -9.25497e-06 0.723528)} Corner 1603 37812 {normal=(-0.690295 -9.25498e-06 0.723528)} Corner 2352 37813 {normal=(-0.415406 -1.28499e-05 0.909636)} Corner 3825 37813 {normal=(-0.137465 -1.39883e-05 0.990507)} Corner 3825 37814 {normal=(-0.137465 -1.39883e-05 0.990507)} Corner 3826 37814 {normal=(-0.137464 -1.39883e-05 0.990507)} Corner 3826 37815 {normal=(-0.137464 -1.39883e-05 0.990507)} Corner 2353 37815 {normal=(-0.415406 -1.28499e-05 0.909636)} Corner 2353 37816 {normal=(-0.415406 -1.28499e-05 0.909636)} Corner 2352 37816 {normal=(-0.415406 -1.28499e-05 0.909636)} Corner 3825 37817 {normal=(-0.137465 -1.39883e-05 0.990507)} Corner 5505 37817 {normal=(0 -1.4123e-05 1)} Corner 5505 37818 {normal=(0 -1.4123e-05 1)} Corner 5509 37818 {normal=(0 -1.4123e-05 1)} Corner 5509 37819 {normal=(0 -1.4123e-05 1)} Corner 3826 37819 {normal=(-0.137464 -1.39883e-05 0.990507)} Corner 3826 37820 {normal=(-0.137464 -1.39883e-05 0.990507)} Corner 3825 37820 {normal=(-0.137465 -1.39883e-05 0.990507)} Corner 5504 37821 {normal=(0 -1.41227e-05 1)} Corner 3761 37821 {normal=(-0.134376 -1.39962e-05 0.99093)} Corner 3761 37822 {normal=(-0.134376 -1.39962e-05 0.99093)} Corner 3760 37822 {normal=(-0.134377 -1.39962e-05 0.99093)} Corner 3760 37823 {normal=(-0.134377 -1.39962e-05 0.99093)} Corner 5500 37823 {normal=(0 -1.41227e-05 1)} Corner 5500 37824 {normal=(0 -1.41227e-05 1)} Corner 5504 37824 {normal=(0 -1.41227e-05 1)} Corner 3761 37825 {normal=(-0.134376 -1.39962e-05 0.99093)} Corner 2116 37825 {normal=(-0.412511 -1.28642e-05 0.910953)} Corner 2116 37826 {normal=(-0.412511 -1.28642e-05 0.910953)} Corner 2115 37826 {normal=(-0.412511 -1.28642e-05 0.910953)} Corner 2115 37827 {normal=(-0.412511 -1.28642e-05 0.910953)} Corner 3760 37827 {normal=(-0.134377 -1.39962e-05 0.99093)} Corner 3760 37828 {normal=(-0.134377 -1.39962e-05 0.99093)} Corner 3761 37828 {normal=(-0.134376 -1.39962e-05 0.99093)} Corner 2116 37829 {normal=(-0.412511 -1.28642e-05 0.910953)} Corner 1561 37829 {normal=(-0.687629 -1.0239e-05 0.726063)} Corner 1561 37830 {normal=(-0.687629 -1.0239e-05 0.726063)} Corner 1560 37830 {normal=(-0.687628 -1.0239e-05 0.726063)} Corner 1560 37831 {normal=(-0.687628 -1.0239e-05 0.726063)} Corner 2115 37831 {normal=(-0.412511 -1.28642e-05 0.910953)} Corner 2115 37832 {normal=(-0.412511 -1.28642e-05 0.910953)} Corner 2116 37832 {normal=(-0.412511 -1.28642e-05 0.910953)} Corner 3813 37833 {normal=(-0.144367 1.39757e-05 -0.989524)} Corner 5510 37833 {normal=(0 1.41234e-05 -1)} Corner 5510 37834 {normal=(0 1.41234e-05 -1)} Corner 5506 37834 {normal=(0 1.41233e-05 -1)} Corner 5506 37835 {normal=(0 1.41233e-05 -1)} Corner 3812 37835 {normal=(-0.144366 1.39757e-05 -0.989524)} Corner 3812 37836 {normal=(-0.144366 1.39757e-05 -0.989524)} Corner 3813 37836 {normal=(-0.144367 1.39757e-05 -0.989524)} Corner 3727 37837 {normal=(-0.143503 1.39762e-05 -0.98965)} Corner 2229 37837 {normal=(-0.306795 1.34365e-05 -0.951776)} Corner 2229 37838 {normal=(-0.306795 1.34365e-05 -0.951776)} Corner 2230 37838 {normal=(-0.306796 1.34365e-05 -0.951775)} Corner 2230 37839 {normal=(-0.306796 1.34365e-05 -0.951775)} Corner 3728 37839 {normal=(-0.143504 1.39762e-05 -0.98965)} Corner 3728 37840 {normal=(-0.143504 1.39762e-05 -0.98965)} Corner 3727 37840 {normal=(-0.143503 1.39762e-05 -0.98965)} Corner 2229 37841 {normal=(-0.306795 1.34365e-05 -0.951776)} Corner 1630 37841 {normal=(-0.52147 1.20464e-05 -0.85327)} Corner 1630 37842 {normal=(-0.52147 1.20464e-05 -0.85327)} Corner 1631 37842 {normal=(-0.521469 1.20464e-05 -0.85327)} Corner 1631 37843 {normal=(-0.521469 1.20464e-05 -0.85327)} Corner 2230 37843 {normal=(-0.306796 1.34365e-05 -0.951775)} Corner 2230 37844 {normal=(-0.306796 1.34365e-05 -0.951775)} Corner 2229 37844 {normal=(-0.306795 1.34365e-05 -0.951776)} Corner 1630 37845 {normal=(-0.52147 1.20464e-05 -0.85327)} Corner 1389 37845 {normal=(-0.850008 7.48799e-06 -0.52677)} Corner 1389 37846 {normal=(-0.850008 7.48799e-06 -0.52677)} Corner 1390 37846 {normal=(-0.850008 7.48798e-06 -0.526769)} Corner 1390 37847 {normal=(-0.850008 7.48798e-06 -0.526769)} Corner 1631 37847 {normal=(-0.521469 1.20464e-05 -0.85327)} Corner 1631 37848 {normal=(-0.521469 1.20464e-05 -0.85327)} Corner 1630 37848 {normal=(-0.52147 1.20464e-05 -0.85327)} Corner 1389 37849 {normal=(-0.850008 7.48799e-06 -0.52677)} Corner 1289 37849 {normal=(-0.999937 1.70919e-07 -0.0112486)} Corner 1289 37850 {normal=(-0.999937 1.70919e-07 -0.0112486)} Corner 1290 37850 {normal=(-0.999937 1.70911e-07 -0.011248)} Corner 1290 37851 {normal=(-0.999937 1.70911e-07 -0.011248)} Corner 1390 37851 {normal=(-0.850008 7.48798e-06 -0.526769)} Corner 1390 37852 {normal=(-0.850008 7.48798e-06 -0.526769)} Corner 1389 37852 {normal=(-0.850008 7.48799e-06 -0.52677)} Corner 1289 37853 {normal=(-0.999937 1.70919e-07 -0.0112486)} Corner 1387 37853 {normal=(-0.922821 -5.45894e-06 0.385229)} Corner 1387 37854 {normal=(-0.922821 -5.45894e-06 0.385229)} Corner 1388 37854 {normal=(-0.922822 -5.45893e-06 0.385228)} Corner 1388 37855 {normal=(-0.922822 -5.45893e-06 0.385228)} Corner 1290 37855 {normal=(-0.999937 1.70911e-07 -0.011248)} Corner 1290 37856 {normal=(-0.999937 1.70911e-07 -0.011248)} Corner 1289 37856 {normal=(-0.999937 1.70919e-07 -0.0112486)} Corner 1387 37857 {normal=(-0.922821 -5.45894e-06 0.385229)} Corner 1565 37857 {normal=(-0.687546 -1.02436e-05 0.726141)} Corner 1565 37858 {normal=(-0.687546 -1.02436e-05 0.726141)} Corner 1566 37858 {normal=(-0.687547 -1.02436e-05 0.72614)} Corner 1566 37859 {normal=(-0.687547 -1.02436e-05 0.72614)} Corner 1388 37859 {normal=(-0.922822 -5.45893e-06 0.385228)} Corner 1388 37860 {normal=(-0.922822 -5.45893e-06 0.385228)} Corner 1387 37860 {normal=(-0.922821 -5.45894e-06 0.385229)} Corner 1561 37861 {normal=(-0.687629 -1.0239e-05 0.726063)} Corner 1395 37861 {normal=(-0.924578 -5.40383e-06 0.380994)} Corner 1395 37862 {normal=(-0.924578 -5.40383e-06 0.380994)} Corner 1394 37862 {normal=(-0.924577 -5.40384e-06 0.380995)} Corner 1394 37863 {normal=(-0.924577 -5.40384e-06 0.380995)} Corner 1560 37863 {normal=(-0.687628 -1.0239e-05 0.726063)} Corner 1560 37864 {normal=(-0.687628 -1.0239e-05 0.726063)} Corner 1561 37864 {normal=(-0.687629 -1.0239e-05 0.726063)} Corner 1395 37865 {normal=(-0.924578 -5.40383e-06 0.380994)} Corner 1297 37865 {normal=(-0.999947 1.51843e-07 -0.010254)} Corner 1297 37866 {normal=(-0.999947 1.51843e-07 -0.010254)} Corner 1296 37866 {normal=(-0.999947 1.51852e-07 -0.0102546)} Corner 1296 37867 {normal=(-0.999947 1.51852e-07 -0.0102546)} Corner 1394 37867 {normal=(-0.924577 -5.40384e-06 0.380995)} Corner 1394 37868 {normal=(-0.924577 -5.40384e-06 0.380995)} Corner 1395 37868 {normal=(-0.924578 -5.40383e-06 0.380994)} Corner 1297 37869 {normal=(-0.999947 1.51843e-07 -0.010254)} Corner 1379 37869 {normal=(-0.857806 7.3008e-06 -0.513974)} Corner 1379 37870 {normal=(-0.857806 7.3008e-06 -0.513974)} Corner 1378 37870 {normal=(-0.857805 7.30082e-06 -0.513976)} Corner 1378 37871 {normal=(-0.857805 7.30082e-06 -0.513976)} Corner 1296 37871 {normal=(-0.999947 1.51852e-07 -0.0102546)} Corner 1296 37872 {normal=(-0.999947 1.51852e-07 -0.0102546)} Corner 1297 37872 {normal=(-0.999947 1.51843e-07 -0.010254)} Corner 1379 37873 {normal=(-0.857806 7.3008e-06 -0.513974)} Corner 1634 37873 {normal=(-0.526782 1.20049e-05 -0.850001)} Corner 1634 37874 {normal=(-0.526782 1.20049e-05 -0.850001)} Corner 1633 37874 {normal=(-0.526782 1.20049e-05 -0.85)} Corner 1633 37875 {normal=(-0.526782 1.20049e-05 -0.85)} Corner 1378 37875 {normal=(-0.857805 7.30082e-06 -0.513976)} Corner 1378 37876 {normal=(-0.857805 7.30082e-06 -0.513976)} Corner 1379 37876 {normal=(-0.857806 7.3008e-06 -0.513974)} Corner 1634 37877 {normal=(-0.526782 1.20049e-05 -0.850001)} Corner 2250 37877 {normal=(-0.303429 1.34597e-05 -0.952854)} Corner 2250 37878 {normal=(-0.303429 1.34597e-05 -0.952854)} Corner 2249 37878 {normal=(-0.303429 1.34597e-05 -0.952854)} Corner 2249 37879 {normal=(-0.303429 1.34597e-05 -0.952854)} Corner 1633 37879 {normal=(-0.526782 1.20049e-05 -0.85)} Corner 1633 37880 {normal=(-0.526782 1.20049e-05 -0.85)} Corner 1634 37880 {normal=(-0.526782 1.20049e-05 -0.850001)} Corner 2250 37881 {normal=(-0.303429 1.34597e-05 -0.952854)} Corner 3745 37881 {normal=(-0.143275 1.39776e-05 -0.989683)} Corner 3745 37882 {normal=(-0.143275 1.39776e-05 -0.989683)} Corner 3744 37882 {normal=(-0.143275 1.39776e-05 -0.989683)} Corner 3744 37883 {normal=(-0.143275 1.39776e-05 -0.989683)} Corner 2249 37883 {normal=(-0.303429 1.34597e-05 -0.952854)} Corner 2249 37884 {normal=(-0.303429 1.34597e-05 -0.952854)} Corner 2250 37884 {normal=(-0.303429 1.34597e-05 -0.952854)} Corner 3745 37885 {normal=(-0.143275 1.39776e-05 -0.989683)} Corner 5507 37885 {normal=(0 1.41242e-05 -1)} Corner 5507 37886 {normal=(0 1.41242e-05 -1)} Corner 5503 37886 {normal=(0 1.41242e-05 -1)} Corner 5503 37887 {normal=(0 1.41242e-05 -1)} Corner 3744 37887 {normal=(-0.143275 1.39776e-05 -0.989683)} Corner 3744 37888 {normal=(-0.143275 1.39776e-05 -0.989683)} Corner 3745 37888 {normal=(-0.143275 1.39776e-05 -0.989683)} Corner 1467 37889 {normal=(-0.922862 -4.05943e-06 0.385131)} Corner 1603 37889 {normal=(-0.690295 -9.25498e-06 0.723528)} Corner 1603 37890 {normal=(-0.690295 -9.25498e-06 0.723528)} Corner 1604 37890 {normal=(-0.690295 -9.25497e-06 0.723528)} Corner 1604 37891 {normal=(-0.690295 -9.25497e-06 0.723528)} Corner 1468 37891 {normal=(-0.922863 -4.05941e-06 0.385129)} Corner 1468 37892 {normal=(-0.922863 -4.05941e-06 0.385129)} Corner 1467 37892 {normal=(-0.922862 -4.05943e-06 0.385131)} Corner 1359 37893 {normal=(-0.999999 4.59641e-07 -0.0013155)} Corner 1467 37893 {normal=(-0.922862 -4.05943e-06 0.385131)} Corner 1467 37894 {normal=(-0.922862 -4.05943e-06 0.385131)} Corner 1468 37894 {normal=(-0.922863 -4.05941e-06 0.385129)} Corner 1468 37895 {normal=(-0.922863 -4.05941e-06 0.385129)} Corner 1360 37895 {normal=(-0.999999 4.59638e-07 -0.00131522)} Corner 1360 37896 {normal=(-0.999999 4.59638e-07 -0.00131522)} Corner 1359 37896 {normal=(-0.999999 4.59641e-07 -0.0013155)} Corner 1449 37897 {normal=(-0.852677 7.38481e-06 -0.522438)} Corner 1359 37897 {normal=(-0.999999 4.59641e-07 -0.0013155)} Corner 1359 37898 {normal=(-0.999999 4.59641e-07 -0.0013155)} Corner 1360 37898 {normal=(-0.999999 4.59638e-07 -0.00131522)} Corner 1360 37899 {normal=(-0.999999 4.59638e-07 -0.00131522)} Corner 1450 37899 {normal=(-0.852678 7.38479e-06 -0.522437)} Corner 1450 37900 {normal=(-0.852678 7.38479e-06 -0.522437)} Corner 1449 37900 {normal=(-0.852677 7.38481e-06 -0.522438)} Corner 1643 37901 {normal=(-0.518116 1.20806e-05 -0.85531)} Corner 1449 37901 {normal=(-0.852677 7.38481e-06 -0.522438)} Corner 1449 37902 {normal=(-0.852677 7.38481e-06 -0.522438)} Corner 1450 37902 {normal=(-0.852678 7.38479e-06 -0.522437)} Corner 1450 37903 {normal=(-0.852678 7.38479e-06 -0.522437)} Corner 1644 37903 {normal=(-0.518116 1.20806e-05 -0.85531)} Corner 1644 37904 {normal=(-0.518116 1.20806e-05 -0.85531)} Corner 1643 37904 {normal=(-0.518116 1.20806e-05 -0.85531)} Corner 2427 37905 {normal=(-0.303959 1.3452e-05 -0.952685)} Corner 1643 37905 {normal=(-0.518116 1.20806e-05 -0.85531)} Corner 1643 37906 {normal=(-0.518116 1.20806e-05 -0.85531)} Corner 1644 37906 {normal=(-0.518116 1.20806e-05 -0.85531)} Corner 1644 37907 {normal=(-0.518116 1.20806e-05 -0.85531)} Corner 2428 37907 {normal=(-0.303959 1.3452e-05 -0.952685)} Corner 2428 37908 {normal=(-0.303959 1.3452e-05 -0.952685)} Corner 2427 37908 {normal=(-0.303959 1.3452e-05 -0.952685)} Corner 3812 37909 {normal=(-0.144366 1.39757e-05 -0.989524)} Corner 2427 37909 {normal=(-0.303959 1.3452e-05 -0.952685)} Corner 2427 37910 {normal=(-0.303959 1.3452e-05 -0.952685)} Corner 2428 37910 {normal=(-0.303959 1.3452e-05 -0.952685)} Corner 2428 37911 {normal=(-0.303959 1.3452e-05 -0.952685)} Corner 3813 37911 {normal=(-0.144367 1.39757e-05 -0.989524)} Corner 3813 37912 {normal=(-0.144367 1.39757e-05 -0.989524)} Corner 3812 37912 {normal=(-0.144366 1.39757e-05 -0.989524)} Corner 5511 37913 {normal=(0 1.41228e-05 -1)} Corner 3727 37913 {normal=(-0.143503 1.39762e-05 -0.98965)} Corner 3727 37914 {normal=(-0.143503 1.39762e-05 -0.98965)} Corner 3728 37914 {normal=(-0.143504 1.39762e-05 -0.98965)} Corner 3728 37915 {normal=(-0.143504 1.39762e-05 -0.98965)} Corner 5515 37915 {normal=(0 1.41228e-05 -1)} Corner 5515 37916 {normal=(0 1.41228e-05 -1)} Corner 5511 37916 {normal=(0 1.41228e-05 -1)} Corner 3721 37917 {normal=(-0.142647 -1.39781e-05 0.989774)} Corner 5508 37917 {normal=(9.51153e-09 -1.41243e-05 1)} Corner 5508 37918 {normal=(9.51153e-09 -1.41243e-05 1)} Corner 5512 37918 {normal=(9.51162e-09 -1.41243e-05 1)} Corner 5512 37919 {normal=(9.51162e-09 -1.41243e-05 1)} Corner 3722 37919 {normal=(-0.142646 -1.39781e-05 0.989774)} Corner 3722 37920 {normal=(-0.142646 -1.39781e-05 0.989774)} Corner 3721 37920 {normal=(-0.142647 -1.39781e-05 0.989774)} Corner 2033 37921 {normal=(-0.41837 -1.2831e-05 0.908277)} Corner 3721 37921 {normal=(-0.142647 -1.39781e-05 0.989774)} Corner 3721 37922 {normal=(-0.142647 -1.39781e-05 0.989774)} Corner 3722 37922 {normal=(-0.142646 -1.39781e-05 0.989774)} Corner 3722 37923 {normal=(-0.142646 -1.39781e-05 0.989774)} Corner 2034 37923 {normal=(-0.41837 -1.2831e-05 0.908277)} Corner 2034 37924 {normal=(-0.41837 -1.2831e-05 0.908277)} Corner 2033 37924 {normal=(-0.41837 -1.2831e-05 0.908277)} Corner 1565 37925 {normal=(-0.687546 -1.02436e-05 0.726141)} Corner 2033 37925 {normal=(-0.41837 -1.2831e-05 0.908277)} Corner 2033 37926 {normal=(-0.41837 -1.2831e-05 0.908277)} Corner 2034 37926 {normal=(-0.41837 -1.2831e-05 0.908277)} Corner 2034 37927 {normal=(-0.41837 -1.2831e-05 0.908277)} Corner 1566 37927 {normal=(-0.687547 -1.02436e-05 0.72614)} Corner 1566 37928 {normal=(-0.687547 -1.02436e-05 0.72614)} Corner 1565 37928 {normal=(-0.687546 -1.02436e-05 0.726141)} Corner 9548 37929 {normal=(0.0577166 -0.998099 -0.0216033)} Corner 9671 37929 {normal=(0.0499237 -0.99857 -0.0191325)} Corner 9671 37930 {normal=(0.0499237 -0.99857 -0.0191325)} Corner 9810 37930 {normal=(0.0209979 -0.999646 -0.0163451)} Corner 9810 37931 {normal=(0.0209979 -0.999646 -0.0163451)} Corner 9403 37931 {normal=(0.0351141 -0.999325 0.0108343)} Corner 9403 37932 {normal=(0.0351141 -0.999325 0.0108343)} Corner 9548 37932 {normal=(0.0577166 -0.998099 -0.0216033)} Corner 9277 37933 {normal=(0.0250836 -0.999368 0.0251988)} Corner 9403 37933 {normal=(0.0351141 -0.999325 0.0108343)} Corner 9403 37934 {normal=(0.0351141 -0.999325 0.0108343)} Corner 9810 37934 {normal=(0.0209979 -0.999646 -0.0163451)} Corner 9810 37935 {normal=(0.0209979 -0.999646 -0.0163451)} Corner 9084 37935 {normal=(0.0222227 -0.999737 0.00560589)} Corner 9084 37936 {normal=(0.0222227 -0.999737 0.00560589)} Corner 9277 37936 {normal=(0.0250836 -0.999368 0.0251988)} Corner 9336 37937 {normal=(0.0189616 -0.999681 -0.0166573)} Corner 9084 37937 {normal=(0.0222227 -0.999737 0.00560589)} Corner 9084 37938 {normal=(0.0222227 -0.999737 0.00560589)} Corner 9810 37938 {normal=(0.0209979 -0.999646 -0.0163451)} Corner 9810 37939 {normal=(0.0209979 -0.999646 -0.0163451)} Corner 9405 37939 {normal=(0.0123546 -0.999553 -0.0272109)} Corner 9405 37940 {normal=(0.0123546 -0.999553 -0.0272109)} Corner 9336 37940 {normal=(0.0189616 -0.999681 -0.0166573)} Corner 9555 37941 {normal=(-0.00632668 -0.998353 -0.0570122)} Corner 9405 37941 {normal=(0.0123546 -0.999553 -0.0272109)} Corner 9405 37942 {normal=(0.0123546 -0.999553 -0.0272109)} Corner 9810 37942 {normal=(0.0209979 -0.999646 -0.0163451)} Corner 9810 37943 {normal=(0.0209979 -0.999646 -0.0163451)} Corner 9705 37943 {normal=(-0.00632668 -0.998353 -0.0570122)} Corner 9705 37944 {normal=(-0.00632668 -0.998353 -0.0570122)} Corner 9555 37944 {normal=(-0.00632668 -0.998353 -0.0570122)} Corner 9560 37946 {normal=(0.221677 -0.0375739 0.974396)} Corner 9560 37947 {normal=(0.221677 -0.0375739 0.974396)} Corner 1709 37949 {normal=(0.000800143 -0.999996 -0.00286662)} Corner 1640 37949 {normal=(0.000798086 -0.99999 -0.00441424)} Corner 1640 37950 {normal=(0.000798086 -0.99999 -0.00441424)} Corner 1340 37950 {normal=(-0.0231129 -0.999665 -0.0116291)} Corner 1340 37951 {normal=(-0.0231129 -0.999665 -0.0116291)} Corner 1961 37951 {normal=(-0.000812974 -0.999978 0.00664364)} Corner 1961 37952 {normal=(-0.000812974 -0.999978 0.00664364)} Corner 1709 37952 {normal=(0.000800143 -0.999996 -0.00286662)} Corner 1768 37953 {normal=(-0.0015627 -0.999938 0.0110636)} Corner 1961 37953 {normal=(-0.000812974 -0.999978 0.00664364)} Corner 1961 37954 {normal=(-0.000812974 -0.999978 0.00664364)} Corner 1340 37954 {normal=(-0.0231129 -0.999665 -0.0116291)} Corner 1340 37955 {normal=(-0.0231129 -0.999665 -0.0116291)} Corner 1642 37955 {normal=(-0.0274843 -0.999598 -0.0069831)} Corner 1642 37956 {normal=(-0.0274843 -0.999598 -0.0069831)} Corner 1768 37956 {normal=(-0.0015627 -0.999938 0.0110636)} Corner 1497 37957 {normal=(-0.0581706 -0.997904 -0.0283626)} Corner 1642 37957 {normal=(-0.0274843 -0.999598 -0.0069831)} Corner 1642 37958 {normal=(-0.0274843 -0.999598 -0.0069831)} Corner 1340 37958 {normal=(-0.0231129 -0.999665 -0.0116291)} Corner 1340 37959 {normal=(-0.0231129 -0.999665 -0.0116291)} Corner 1374 37959 {normal=(-0.0576192 -0.997941 -0.0281662)} Corner 1374 37960 {normal=(-0.0576192 -0.997941 -0.0281662)} Corner 1497 37960 {normal=(-0.0581706 -0.997904 -0.0283626)} Corner 1283 37961 {normal=(-0.0559808 -0.998051 -0.0275823)} Corner 1374 37961 {normal=(-0.0576192 -0.997941 -0.0281662)} Corner 1374 37962 {normal=(-0.0576192 -0.997941 -0.0281662)} Corner 1340 37962 {normal=(-0.0231129 -0.999665 -0.0116291)} Corner 1340 37963 {normal=(-0.0231129 -0.999665 -0.0116291)} Corner 1235 37963 {normal=(-0.0559808 -0.998051 -0.0275823)} Corner 1235 37964 {normal=(-0.0559808 -0.998051 -0.0275823)} Corner 1283 37964 {normal=(-0.0559808 -0.998051 -0.0275823)} Corner 1485 37967 {normal=(-0.446804 0.0578374 0.89276)} Corner 1485 37968 {normal=(-0.446804 0.0578374 0.89276)} Corner 9944 37977 {normal=(0.287142 -0.90779 0.305725)} Corner 10106 37977 {normal=(0.399457 -0.914021 0.0707083)} Corner 10106 37978 {normal=(0.399457 -0.914021 0.0707083)} Corner 10366 37978 {normal=(0.443806 -0.893066 -0.0739528)} Corner 10366 37979 {normal=(0.443806 -0.893066 -0.0739528)} Corner 10253 37979 {normal=(0.378625 -0.91251 0.154821)} Corner 10253 37980 {normal=(0.378625 -0.91251 0.154821)} Corner 9944 37980 {normal=(0.287142 -0.90779 0.305725)} Corner 10253 37981 {normal=(0.837249 -0.378955 0.394217)} Corner 10366 37981 {normal=(0.906912 -0.338567 0.250765)} Corner 10366 37982 {normal=(0.906912 -0.338567 0.250765)} Corner 10543 37982 {normal=(0.946667 -0.165092 0.276705)} Corner 10543 37983 {normal=(0.946667 -0.165092 0.276705)} Corner 10253 37984 {normal=(0.837249 -0.378955 0.394217)} Corner 10543 37985 {normal=(0.946667 -0.165092 0.276705)} Corner 10543 37986 {normal=(0.946667 -0.165092 0.276705)} Corner 10414 37986 {normal=(0.94523 0.14926 0.29028)} Corner 10414 37987 {normal=(0.94523 0.14926 0.29028)} Corner 10414 37989 {normal=(0.94523 0.14926 0.29028)} Corner 10414 37990 {normal=(0.94523 0.14926 0.29028)} Corner 10214 37990 {normal=(0.913715 0.305066 0.26844)} Corner 10214 37991 {normal=(0.913715 0.305066 0.26844)} Corner 10214 37993 {normal=(0.913715 0.305066 0.26844)} Corner 10214 37994 {normal=(0.913715 0.305066 0.26844)} Corner 10070 37994 {normal=(0.947808 0.217501 0.233139)} Corner 10070 37995 {normal=(0.947808 0.217501 0.233139)} Corner 6848 37997 {normal=(-0.813916 -0.525529 0.247709)} Corner 6324 37997 {normal=(-0.7581 -0.608837 0.233671)} Corner 6324 37998 {normal=(-0.7581 -0.608837 0.233671)} Corner 7385 37998 {normal=(-0.52363 -0.834479 0.171631)} Corner 7385 37999 {normal=(-0.52363 -0.834479 0.171631)} Corner 7842 37999 {normal=(-0.52363 -0.834479 0.171631)} Corner 7842 38000 {normal=(-0.52363 -0.834479 0.171631)} Corner 6848 38000 {normal=(-0.813916 -0.525529 0.247709)} Corner 8307 38001 {normal=(-0.331964 -0.857713 0.392592)} Corner 9366 38001 {normal=(-0.199753 -0.876444 0.438115)} Corner 9366 38002 {normal=(-0.199753 -0.876444 0.438115)} Corner 7114 38003 {normal=(-0.523614 -0.627113 0.576678)} Corner 7114 38004 {normal=(-0.523614 -0.627113 0.576678)} Corner 8307 38004 {normal=(-0.331964 -0.857713 0.392592)} Corner 10183 38005 {normal=(0.39653 -0.865229 -0.306826)} Corner 10370 38005 {normal=(0.483685 -0.874025 0.0461481)} Corner 10370 38006 {normal=(0.483685 -0.874025 0.0461481)} Corner 10106 38006 {normal=(0.472213 -0.872108 -0.128232)} Corner 10106 38007 {normal=(0.472213 -0.872108 -0.128232)} Corner 10033 38007 {normal=(0.394964 -0.864951 -0.309618)} Corner 10033 38008 {normal=(0.394964 -0.864951 -0.309618)} Corner 10183 38008 {normal=(0.39653 -0.865229 -0.306826)} Corner 9992 38009 {normal=(0.531985 -0.828818 -0.173356)} Corner 9892 38009 {normal=(0.290827 -0.85451 -0.430386)} Corner 9892 38010 {normal=(0.290827 -0.85451 -0.430386)} Corner 9975 38010 {normal=(0.293358 -0.854414 -0.428856)} Corner 9975 38011 {normal=(0.293358 -0.854414 -0.428856)} Corner 10109 38011 {normal=(0.483984 -0.841711 -0.239337)} Corner 10109 38012 {normal=(0.483984 -0.841711 -0.239337)} Corner 9992 38012 {normal=(0.531985 -0.828818 -0.173356)} Corner 9669 38013 {normal=(-0.102895 -0.695742 0.710884)} Corner 9366 38014 {normal=(-0.199753 -0.876444 0.438115)} Corner 9366 38015 {normal=(-0.199753 -0.876444 0.438115)} Corner 9580 38015 {normal=(-0.0640179 -0.877756 0.474812)} Corner 9580 38016 {normal=(-0.0640179 -0.877756 0.474812)} Corner 9669 38016 {normal=(-0.102895 -0.695742 0.710884)} Corner 9718 38017 {normal=(0.200618 -0.886834 0.416266)} Corner 9944 38017 {normal=(0.287142 -0.90779 0.305725)} Corner 9944 38018 {normal=(0.287142 -0.90779 0.305725)} Corner 10101 38018 {normal=(0.284411 -0.895958 0.34113)} Corner 10101 38019 {normal=(0.284411 -0.895958 0.34113)} Corner 9785 38019 {normal=(0.200618 -0.886834 0.416266)} Corner 9785 38020 {normal=(0.200618 -0.886834 0.416266)} Corner 9718 38020 {normal=(0.200618 -0.886834 0.416266)} Corner 9720 38021 {normal=(0.511247 -0.682689 0.522074)} Corner 9759 38021 {normal=(0.505944 -0.389837 0.769446)} Corner 9759 38022 {normal=(0.505944 -0.389837 0.769446)} Corner 9700 38022 {normal=(0.508999 -0.413546 0.754917)} Corner 9700 38023 {normal=(0.508999 -0.413546 0.754917)} Corner 9669 38023 {normal=(0.509163 -0.696929 0.505018)} Corner 9669 38024 {normal=(0.509163 -0.696929 0.505018)} Corner 9720 38024 {normal=(0.511247 -0.682689 0.522074)} Corner 9785 38025 {normal=(-0.373527 -0.649391 0.662397)} Corner 9818 38025 {normal=(-0.258436 -0.457439 0.850859)} Corner 9818 38026 {normal=(-0.258436 -0.457439 0.850859)} Corner 9759 38026 {normal=(-0.249815 -0.436356 0.864399)} Corner 9759 38027 {normal=(-0.249815 -0.436356 0.864399)} Corner 9720 38027 {normal=(-0.372789 -0.648275 0.663904)} Corner 9720 38028 {normal=(-0.372789 -0.648275 0.663904)} Corner 9785 38028 {normal=(-0.373527 -0.649391 0.662397)} Corner 8946 38029 {normal=(-0.145076 0.0497699 0.988168)} Corner 9094 38030 {normal=(0.155356 0.0902539 0.983727)} Corner 9094 38031 {normal=(0.155356 0.0902539 0.983727)} Corner 8729 38031 {normal=(-0.161808 0.0720115 0.984191)} Corner 8729 38032 {normal=(-0.161808 0.0720115 0.984191)} Corner 8946 38032 {normal=(-0.145076 0.0497699 0.988168)} Corner 9398 38041 {normal=(0.561629 0.298281 -0.771752)} Corner 9382 38043 {normal=(0.601774 0.322128 -0.730823)} Corner 9382 38044 {normal=(0.601774 0.322128 -0.730823)} Corner 9398 38044 {normal=(0.561629 0.298281 -0.771752)} Corner 9418 38045 {normal=(0.506298 0.271281 -0.818577)} Corner 9398 38047 {normal=(0.561629 0.298281 -0.771752)} Corner 9398 38048 {normal=(0.561629 0.298281 -0.771752)} Corner 9418 38048 {normal=(0.506298 0.271281 -0.818577)} Corner 9624 38049 {normal=(0.963254 0.268353 0.01136)} Corner 9624 38050 {normal=(0.963254 0.268353 0.01136)} Corner 9670 38050 {normal=(0.958797 0.232666 -0.163016)} Corner 9670 38051 {normal=(0.958797 0.232666 -0.163016)} Corner 9668 38053 {normal=(0.947089 0.284867 0.147895)} Corner 9668 38054 {normal=(0.947089 0.284867 0.147895)} Corner 9624 38054 {normal=(0.963254 0.268353 0.01136)} Corner 9624 38055 {normal=(0.963254 0.268353 0.01136)} Corner 8671 38057 {normal=(0.476997 -0.213336 0.85262)} Corner 8946 38057 {normal=(0.610625 0.0321185 0.791269)} Corner 8946 38058 {normal=(0.610625 0.0321185 0.791269)} Corner 8671 38060 {normal=(0.476997 -0.213336 0.85262)} Corner 8946 38062 {normal=(-0.145076 0.0497699 0.988168)} Corner 8946 38063 {normal=(-0.145076 0.0497699 0.988168)} Corner 8671 38063 {normal=(-0.213802 -0.0586599 0.975114)} Corner 8671 38064 {normal=(-0.213802 -0.0586599 0.975114)} Corner 9420 38065 {normal=(0.258422 0.118779 0.958702)} Corner 9465 38065 {normal=(0.29555 0.178968 0.938414)} Corner 9465 38066 {normal=(0.29555 0.178968 0.938414)} Corner 9466 38067 {normal=(0.542388 0.164038 0.823958)} Corner 9466 38068 {normal=(0.542388 0.164038 0.823958)} Corner 9420 38068 {normal=(0.258422 0.118779 0.958702)} Corner 9410 38069 {normal=(0.904154 0.128799 0.407329)} Corner 9436 38069 {normal=(0.849933 0.208434 0.48391)} Corner 9436 38070 {normal=(0.849933 0.208434 0.48391)} Corner 9465 38070 {normal=(0.848205 0.210649 0.485978)} Corner 9465 38071 {normal=(0.848205 0.210649 0.485978)} Corner 9420 38071 {normal=(0.904154 0.128799 0.407329)} Corner 9420 38072 {normal=(0.904154 0.128799 0.407329)} Corner 9410 38072 {normal=(0.904154 0.128799 0.407329)} Corner 8729 38073 {normal=(0.676588 0.0929373 0.730473)} Corner 8489 38073 {normal=(0.511872 0.0738754 0.855879)} Corner 8489 38074 {normal=(0.511872 0.0738754 0.855879)} Corner 8946 38075 {normal=(0.610625 0.0321185 0.791269)} Corner 8946 38076 {normal=(0.610625 0.0321185 0.791269)} Corner 8729 38076 {normal=(0.676588 0.0929373 0.730473)} Corner 6978 38077 {normal=(0.351042 -0.245925 0.903488)} Corner 7183 38077 {normal=(0.402661 -0.0948428 0.910422)} Corner 7183 38078 {normal=(0.402661 -0.0948428 0.910422)} Corner 6978 38080 {normal=(0.351042 -0.245925 0.903488)} Corner 7183 38082 {normal=(-0.271327 -0.0673664 0.960127)} Corner 7183 38083 {normal=(-0.271327 -0.0673664 0.960127)} Corner 6978 38083 {normal=(-0.36521 -0.163441 0.916465)} Corner 6978 38084 {normal=(-0.36521 -0.163441 0.916465)} Corner 6764 38085 {normal=(0.152306 -0.41772 0.895719)} Corner 6978 38085 {normal=(0.351042 -0.245925 0.903488)} Corner 6978 38086 {normal=(0.351042 -0.245925 0.903488)} Corner 6426 38087 {normal=(0.0975141 -0.410504 0.90663)} Corner 6426 38088 {normal=(0.0975141 -0.410504 0.90663)} Corner 6764 38088 {normal=(0.152306 -0.41772 0.895719)} Corner 6978 38090 {normal=(-0.36521 -0.163441 0.916465)} Corner 6978 38091 {normal=(-0.36521 -0.163441 0.916465)} Corner 6764 38091 {normal=(-0.469538 -0.254997 0.845287)} Corner 6764 38092 {normal=(-0.469538 -0.254997 0.845287)} Corner 6612 38093 {normal=(0.00730276 -0.485786 0.874047)} Corner 6764 38093 {normal=(0.152306 -0.41772 0.895719)} Corner 6764 38094 {normal=(0.152306 -0.41772 0.895719)} Corner 6426 38094 {normal=(0.0975141 -0.410504 0.90663)} Corner 6426 38095 {normal=(0.0975141 -0.410504 0.90663)} Corner 6265 38095 {normal=(0.00730276 -0.485786 0.874047)} Corner 6265 38096 {normal=(0.00730276 -0.485786 0.874047)} Corner 6612 38096 {normal=(0.00730276 -0.485786 0.874047)} Corner 6764 38098 {normal=(-0.469538 -0.254997 0.845287)} Corner 6764 38099 {normal=(-0.469538 -0.254997 0.845287)} Corner 6612 38099 {normal=(-0.513577 -0.170239 0.840986)} Corner 6612 38100 {normal=(-0.513577 -0.170239 0.840986)} Corner 6760 38101 {normal=(0.196305 -0.727873 0.657012)} Corner 7344 38101 {normal=(0.28024 -0.614657 0.737335)} Corner 7344 38102 {normal=(0.28024 -0.614657 0.737335)} Corner 6707 38103 {normal=(0.0816025 -0.656663 0.749757)} Corner 6707 38104 {normal=(0.0816025 -0.656663 0.749757)} Corner 6760 38104 {normal=(0.196305 -0.727873 0.657012)} Corner 7344 38106 {normal=(-0.452395 -0.0932294 0.886931)} Corner 7344 38107 {normal=(-0.452395 -0.0932294 0.886931)} Corner 6760 38107 {normal=(-0.662786 0.0799747 0.744526)} Corner 6760 38108 {normal=(-0.662786 0.0799747 0.744526)} Corner 8084 38109 {normal=(0.380741 -0.434119 0.816441)} Corner 8671 38109 {normal=(0.476997 -0.213336 0.85262)} Corner 8671 38110 {normal=(0.476997 -0.213336 0.85262)} Corner 8084 38112 {normal=(0.380741 -0.434119 0.816441)} Corner 8671 38114 {normal=(-0.213802 -0.0586599 0.975114)} Corner 8671 38115 {normal=(-0.213802 -0.0586599 0.975114)} Corner 8084 38115 {normal=(-0.505111 -0.0993584 0.857316)} Corner 8084 38116 {normal=(-0.505111 -0.0993584 0.857316)} Corner 7344 38117 {normal=(0.28024 -0.614657 0.737335)} Corner 8084 38117 {normal=(0.380741 -0.434119 0.816441)} Corner 8084 38118 {normal=(0.380741 -0.434119 0.816441)} Corner 7344 38120 {normal=(0.28024 -0.614657 0.737335)} Corner 8084 38122 {normal=(-0.505111 -0.0993584 0.857316)} Corner 8084 38123 {normal=(-0.505111 -0.0993584 0.857316)} Corner 7344 38123 {normal=(-0.452395 -0.0932294 0.886931)} Corner 7344 38124 {normal=(-0.452395 -0.0932294 0.886931)} Corner 6642 38134 {normal=(-0.293885 -0.302135 0.906833)} Corner 6642 38135 {normal=(-0.293885 -0.302135 0.906833)} Corner 6707 38135 {normal=(0.0816025 -0.656663 0.749757)} Corner 6707 38136 {normal=(0.0816025 -0.656663 0.749757)} Corner 6033 38137 {normal=(-0.747292 0.110939 -0.65517)} Corner 5919 38137 {normal=(-0.795602 0.145988 -0.587967)} Corner 5919 38138 {normal=(-0.795602 0.145988 -0.587967)} Corner 5710 38138 {normal=(-0.792969 0.143982 -0.592005)} Corner 5710 38139 {normal=(-0.792969 0.143982 -0.592005)} Corner 5741 38139 {normal=(-0.747292 0.110939 -0.65517)} Corner 5741 38140 {normal=(-0.747292 0.110939 -0.65517)} Corner 6033 38140 {normal=(-0.747292 0.110939 -0.65517)} Corner 5890 38141 {normal=(-0.848628 -0.379788 0.368228)} Corner 5757 38141 {normal=(-0.897761 -0.0805482 0.433056)} Corner 5757 38142 {normal=(-0.897761 -0.0805482 0.433056)} Corner 5919 38142 {normal=(-0.898863 -0.0746802 0.431819)} Corner 5919 38143 {normal=(-0.898863 -0.0746802 0.431819)} Corner 6033 38143 {normal=(-0.905586 -0.108628 0.410016)} Corner 6033 38144 {normal=(-0.905586 -0.108628 0.410016)} Corner 5890 38144 {normal=(-0.848628 -0.379788 0.368228)} Corner 5905 38145 {normal=(-0.872944 -0.159619 0.460966)} Corner 5919 38145 {normal=(-0.898863 -0.0746802 0.431819)} Corner 5919 38146 {normal=(-0.898863 -0.0746802 0.431819)} Corner 5757 38146 {normal=(-0.897761 -0.0805482 0.433056)} Corner 5757 38147 {normal=(-0.897761 -0.0805482 0.433056)} Corner 5729 38147 {normal=(-0.872877 -0.15971 0.461062)} Corner 5729 38148 {normal=(-0.872877 -0.15971 0.461062)} Corner 5905 38148 {normal=(-0.872944 -0.159619 0.460966)} Corner 5718 38149 {normal=(-0.851198 0.147723 -0.503626)} Corner 5710 38149 {normal=(-0.792969 0.143982 -0.592005)} Corner 5710 38150 {normal=(-0.792969 0.143982 -0.592005)} Corner 5919 38150 {normal=(-0.795602 0.145988 -0.587967)} Corner 5919 38151 {normal=(-0.795602 0.145988 -0.587967)} Corner 5905 38151 {normal=(-0.8513 0.147517 -0.503515)} Corner 5905 38152 {normal=(-0.8513 0.147517 -0.503515)} Corner 5718 38152 {normal=(-0.851198 0.147723 -0.503626)} Corner 5905 38153 {normal=(-0.8513 0.147517 -0.503515)} Corner 5994 38153 {normal=(-0.858937 -0.0194851 -0.511711)} Corner 5994 38154 {normal=(-0.858937 -0.0194851 -0.511711)} Corner 5830 38154 {normal=(-0.858991 -0.0189928 -0.511638)} Corner 5830 38155 {normal=(-0.858991 -0.0189928 -0.511638)} Corner 5718 38155 {normal=(-0.851198 0.147723 -0.503626)} Corner 5718 38156 {normal=(-0.851198 0.147723 -0.503626)} Corner 5905 38156 {normal=(-0.8513 0.147517 -0.503515)} Corner 5729 38157 {normal=(-0.872877 -0.15971 0.461062)} Corner 5815 38157 {normal=(-0.847753 -0.245455 0.470177)} Corner 5815 38158 {normal=(-0.847753 -0.245455 0.470177)} Corner 5994 38158 {normal=(-0.847791 -0.245294 0.470193)} Corner 5994 38159 {normal=(-0.847791 -0.245294 0.470193)} Corner 5905 38159 {normal=(-0.872944 -0.159619 0.460966)} Corner 5905 38160 {normal=(-0.872944 -0.159619 0.460966)} Corner 5729 38160 {normal=(-0.872877 -0.15971 0.461062)} Corner 6587 38161 {normal=(-0.766417 -0.624961 0.148422)} Corner 5994 38161 {normal=(-0.847791 -0.245294 0.470193)} Corner 5994 38162 {normal=(-0.847791 -0.245294 0.470193)} Corner 5815 38162 {normal=(-0.847753 -0.245455 0.470177)} Corner 5815 38163 {normal=(-0.847753 -0.245455 0.470177)} Corner 6363 38163 {normal=(-0.746449 -0.485579 0.455003)} Corner 6363 38164 {normal=(-0.746449 -0.485579 0.455003)} Corner 6587 38164 {normal=(-0.766417 -0.624961 0.148422)} Corner 6324 38165 {normal=(-0.83566 -0.155086 -0.526898)} Corner 5830 38165 {normal=(-0.858991 -0.0189928 -0.511638)} Corner 5830 38166 {normal=(-0.858991 -0.0189928 -0.511638)} Corner 5994 38166 {normal=(-0.858937 -0.0194851 -0.511711)} Corner 5994 38167 {normal=(-0.858937 -0.0194851 -0.511711)} Corner 6587 38167 {normal=(-0.83566 -0.155086 -0.526898)} Corner 6587 38168 {normal=(-0.83566 -0.155086 -0.526898)} Corner 6324 38168 {normal=(-0.83566 -0.155086 -0.526898)} Corner 8776 38169 {normal=(-0.0990406 0.346617 -0.932764)} Corner 9025 38169 {normal=(-0.115565 0.318539 -0.940839)} Corner 9025 38170 {normal=(-0.115565 0.318539 -0.940839)} Corner 8531 38170 {normal=(-0.115565 0.318539 -0.940839)} Corner 8531 38171 {normal=(-0.115565 0.318539 -0.940839)} Corner 8366 38171 {normal=(-0.0916315 0.359019 -0.928821)} Corner 8366 38172 {normal=(-0.0916315 0.359019 -0.928821)} Corner 8776 38172 {normal=(-0.0990406 0.346617 -0.932764)} Corner 8979 38173 {normal=(-0.906175 0.0466901 -0.420318)} Corner 9264 38173 {normal=(-0.88687 -0.125464 -0.444658)} Corner 9264 38174 {normal=(-0.88687 -0.125464 -0.444658)} Corner 9025 38174 {normal=(-0.88691 -0.125195 -0.444653)} Corner 9025 38175 {normal=(-0.88691 -0.125195 -0.444653)} Corner 8776 38175 {normal=(-0.908496 0.0395806 -0.416014)} Corner 8776 38176 {normal=(-0.908496 0.0395806 -0.416014)} Corner 8979 38176 {normal=(-0.906175 0.0466901 -0.420318)} Corner 9025 38177 {normal=(-0.0350127 -0.419273 -0.907185)} Corner 9290 38177 {normal=(-0.00619563 -0.560856 -0.82789)} Corner 9290 38178 {normal=(-0.00619563 -0.560856 -0.82789)} Corner 8865 38178 {normal=(-0.0126334 -0.53062 -0.847516)} Corner 8865 38179 {normal=(-0.0126334 -0.53062 -0.847516)} Corner 8531 38179 {normal=(-0.0350127 -0.419273 -0.907185)} Corner 8531 38180 {normal=(-0.0350127 -0.419273 -0.907185)} Corner 9025 38180 {normal=(-0.0350127 -0.419273 -0.907185)} Corner 9264 38181 {normal=(-0.88687 -0.125464 -0.444658)} Corner 9341 38181 {normal=(-0.816438 -0.398793 -0.417605)} Corner 9341 38182 {normal=(-0.816438 -0.398793 -0.417605)} Corner 9290 38182 {normal=(-0.785594 -0.477794 -0.393136)} Corner 9290 38183 {normal=(-0.785594 -0.477794 -0.393136)} Corner 9025 38183 {normal=(-0.88691 -0.125195 -0.444653)} Corner 9025 38184 {normal=(-0.88691 -0.125195 -0.444653)} Corner 9264 38184 {normal=(-0.88687 -0.125464 -0.444658)} Corner 10049 38185 {normal=(0.908349 0.12742 0.39833)} Corner 10198 38185 {normal=(0.865307 0.241862 0.43903)} Corner 10198 38186 {normal=(0.865307 0.241862 0.43903)} Corner 10210 38186 {normal=(0.865629 0.240834 0.438959)} Corner 10210 38187 {normal=(0.865629 0.240834 0.438959)} Corner 10066 38187 {normal=(0.905069 0.138333 0.402137)} Corner 10066 38188 {normal=(0.905069 0.138333 0.402137)} Corner 10049 38188 {normal=(0.908349 0.12742 0.39833)} Corner 10070 38189 {normal=(0.857843 0.318145 -0.403595)} Corner 10214 38189 {normal=(0.821606 0.45191 -0.347478)} Corner 10214 38190 {normal=(0.821606 0.45191 -0.347478)} Corner 10198 38190 {normal=(0.821961 0.453125 -0.345047)} Corner 10198 38191 {normal=(0.821961 0.453125 -0.345047)} Corner 10049 38191 {normal=(0.84254 0.358545 -0.401959)} Corner 10049 38192 {normal=(0.84254 0.358545 -0.401959)} Corner 10070 38192 {normal=(0.857843 0.318145 -0.403595)} Corner 10377 38193 {normal=(0.892355 0.353499 -0.280607)} Corner 10198 38193 {normal=(0.821961 0.453125 -0.345047)} Corner 10198 38194 {normal=(0.821961 0.453125 -0.345047)} Corner 10214 38194 {normal=(0.821606 0.45191 -0.347478)} Corner 10214 38195 {normal=(0.821606 0.45191 -0.347478)} Corner 10414 38195 {normal=(0.89262 0.352892 -0.280529)} Corner 10414 38196 {normal=(0.89262 0.352892 -0.280529)} Corner 10377 38196 {normal=(0.892355 0.353499 -0.280607)} Corner 10408 38197 {normal=(0.905236 0.131584 0.404022)} Corner 10210 38197 {normal=(0.865629 0.240834 0.438959)} Corner 10210 38198 {normal=(0.865629 0.240834 0.438959)} Corner 10198 38198 {normal=(0.865307 0.241862 0.43903)} Corner 10198 38199 {normal=(0.865307 0.241862 0.43903)} Corner 10377 38199 {normal=(0.904618 0.133543 0.404763)} Corner 10377 38200 {normal=(0.904618 0.133543 0.404763)} Corner 10408 38200 {normal=(0.905236 0.131584 0.404022)} Corner 10377 38201 {normal=(0.904618 0.133543 0.404763)} Corner 10498 38201 {normal=(0.920671 -0.140874 0.364031)} Corner 10498 38202 {normal=(0.920671 -0.140874 0.364031)} Corner 10560 38202 {normal=(0.920947 -0.138791 0.364133)} Corner 10560 38203 {normal=(0.920947 -0.138791 0.364133)} Corner 10408 38203 {normal=(0.905236 0.131584 0.404022)} Corner 10408 38204 {normal=(0.905236 0.131584 0.404022)} Corner 10377 38204 {normal=(0.904618 0.133543 0.404763)} Corner 10414 38205 {normal=(0.89262 0.352892 -0.280529)} Corner 10543 38205 {normal=(0.950235 -0.00244488 -0.311525)} Corner 10543 38206 {normal=(0.950235 -0.00244488 -0.311525)} Corner 10498 38206 {normal=(0.949901 -0.00754865 -0.312459)} Corner 10498 38207 {normal=(0.949901 -0.00754865 -0.312459)} Corner 10377 38207 {normal=(0.892355 0.353499 -0.280607)} Corner 10377 38208 {normal=(0.892355 0.353499 -0.280607)} Corner 10414 38208 {normal=(0.89262 0.352892 -0.280529)} Corner 10337 38209 {normal=(0.907933 -0.23706 -0.345629)} Corner 10498 38209 {normal=(0.949901 -0.00754865 -0.312459)} Corner 10498 38210 {normal=(0.949901 -0.00754865 -0.312459)} Corner 10543 38210 {normal=(0.950235 -0.00244488 -0.311525)} Corner 10543 38211 {normal=(0.950235 -0.00244488 -0.311525)} Corner 10366 38211 {normal=(0.907933 -0.23706 -0.345629)} Corner 10366 38212 {normal=(0.907933 -0.23706 -0.345629)} Corner 10337 38212 {normal=(0.907933 -0.23706 -0.345629)} Corner 10370 38213 {normal=(0.881972 -0.316367 0.349338)} Corner 10560 38213 {normal=(0.920947 -0.138791 0.364133)} Corner 10560 38214 {normal=(0.920947 -0.138791 0.364133)} Corner 10498 38214 {normal=(0.920671 -0.140874 0.364031)} Corner 10498 38215 {normal=(0.920671 -0.140874 0.364031)} Corner 10337 38215 {normal=(0.881972 -0.316367 0.349338)} Corner 10337 38216 {normal=(0.881972 -0.316367 0.349338)} Corner 10370 38216 {normal=(0.881972 -0.316367 0.349338)} Corner 10133 38217 {normal=(0.451577 0.420052 -0.787169)} Corner 10015 38217 {normal=(0.363729 0.449812 -0.815702)} Corner 10015 38218 {normal=(0.363729 0.449812 -0.815702)} Corner 10067 38218 {normal=(0.365068 0.436305 -0.822413)} Corner 10067 38219 {normal=(0.365068 0.436305 -0.822413)} Corner 10186 38219 {normal=(0.453999 0.417392 -0.787191)} Corner 10186 38220 {normal=(0.453999 0.417392 -0.787191)} Corner 10133 38220 {normal=(0.451577 0.420052 -0.787169)} Corner 10122 38221 {normal=(0.960109 0.272181 -0.0640933)} Corner 10014 38221 {normal=(0.938019 0.340957 0.0622053)} Corner 10014 38222 {normal=(0.938019 0.340957 0.0622053)} Corner 10015 38222 {normal=(0.937889 0.341172 0.0629737)} Corner 10015 38223 {normal=(0.937889 0.341172 0.0629737)} Corner 10133 38223 {normal=(0.959767 0.274011 -0.0613603)} Corner 10133 38224 {normal=(0.959767 0.274011 -0.0613603)} Corner 10122 38224 {normal=(0.960109 0.272181 -0.0640933)} Corner 10133 38225 {normal=(0.959767 0.274011 -0.0613603)} Corner 10192 38225 {normal=(0.965489 0.214311 -0.14799)} Corner 10192 38226 {normal=(0.965489 0.214311 -0.14799)} Corner 10169 38226 {normal=(0.965489 0.214311 -0.14799)} Corner 10169 38227 {normal=(0.965489 0.214311 -0.14799)} Corner 10122 38227 {normal=(0.960109 0.272181 -0.0640933)} Corner 10122 38228 {normal=(0.960109 0.272181 -0.0640933)} Corner 10133 38228 {normal=(0.959767 0.274011 -0.0613603)} Corner 10186 38229 {normal=(0.453999 0.417392 -0.787191)} Corner 10251 38229 {normal=(0.539029 0.315708 -0.780882)} Corner 10251 38230 {normal=(0.539029 0.315708 -0.780882)} Corner 10192 38230 {normal=(0.539029 0.315708 -0.780882)} Corner 10192 38231 {normal=(0.539029 0.315708 -0.780882)} Corner 10133 38231 {normal=(0.451577 0.420052 -0.787169)} Corner 10133 38232 {normal=(0.451577 0.420052 -0.787169)} Corner 10186 38232 {normal=(0.453999 0.417392 -0.787191)} Corner 10124 38233 {normal=(0.775165 -0.349656 -0.526174)} Corner 10192 38233 {normal=(0.794551 -0.347849 -0.497685)} Corner 10192 38234 {normal=(0.794551 -0.347849 -0.497685)} Corner 10251 38234 {normal=(0.530484 -0.344303 -0.774624)} Corner 10251 38235 {normal=(0.530484 -0.344303 -0.774624)} Corner 10183 38235 {normal=(0.530484 -0.344303 -0.774624)} Corner 10183 38236 {normal=(0.530484 -0.344303 -0.774624)} Corner 10124 38236 {normal=(0.775165 -0.349656 -0.526174)} Corner 10109 38237 {normal=(0.932057 -0.308344 -0.190247)} Corner 10169 38237 {normal=(0.932057 -0.308344 -0.190247)} Corner 10169 38238 {normal=(0.932057 -0.308344 -0.190247)} Corner 10192 38238 {normal=(0.794551 -0.347849 -0.497685)} Corner 10192 38239 {normal=(0.794551 -0.347849 -0.497685)} Corner 10124 38239 {normal=(0.775165 -0.349656 -0.526174)} Corner 10124 38240 {normal=(0.775165 -0.349656 -0.526174)} Corner 10109 38240 {normal=(0.932057 -0.308344 -0.190247)} Corner 9787 38241 {normal=(0.99087 0.0395592 -0.128885)} Corner 9787 38242 {normal=(0.99087 0.0395592 -0.128885)} Corner 9813 38242 {normal=(0.996288 0.0121991 0.0852152)} Corner 9813 38243 {normal=(0.996288 0.0121991 0.0852152)} Corner 9813 38245 {normal=(0.996288 0.0121991 0.0852152)} Corner 9813 38246 {normal=(0.996288 0.0121991 0.0852152)} Corner 9808 38246 {normal=(0.996349 0.0494732 0.0695764)} Corner 9808 38247 {normal=(0.996349 0.0494732 0.0695764)} Corner 9808 38249 {normal=(0.996349 0.0494732 0.0695764)} Corner 9808 38250 {normal=(0.996349 0.0494732 0.0695764)} Corner 9809 38250 {normal=(0.991044 0.0398546 0.127451)} Corner 9809 38251 {normal=(0.991044 0.0398546 0.127451)} Corner 9490 38274 {normal=(0.893329 -0.109836 0.435775)} Corner 9490 38275 {normal=(0.893329 -0.109836 0.435775)} Corner 9487 38275 {normal=(0.893073 -0.126857 0.431657)} Corner 9487 38276 {normal=(0.893073 -0.126857 0.431657)} Corner 9487 38277 {normal=(0.0436158 -0.30832 0.950282)} Corner 9490 38277 {normal=(0.0569843 -0.268874 0.961488)} Corner 9490 38278 {normal=(0.0569843 -0.268874 0.961488)} Corner 9487 38280 {normal=(0.0436158 -0.30832 0.950282)} Corner 9783 38290 {normal=(0.993745 -0.0814723 0.0763684)} Corner 9783 38291 {normal=(0.993745 -0.0814723 0.0763684)} Corner 9752 38291 {normal=(0.996609 0.0527185 -0.0631762)} Corner 9752 38292 {normal=(0.996609 0.0527185 -0.0631762)} Corner 9752 38293 {normal=(0.715571 0.206281 -0.667388)} Corner 9783 38293 {normal=(0.75663 0.177888 -0.629179)} Corner 9783 38294 {normal=(0.75663 0.177888 -0.629179)} Corner 9752 38296 {normal=(0.715571 0.206281 -0.667388)} Corner 9348 38306 {normal=(0.407466 0.0163148 -0.913075)} Corner 9348 38307 {normal=(0.407466 0.0163148 -0.913075)} Corner 9347 38307 {normal=(0.515614 0.0563988 -0.854963)} Corner 9347 38308 {normal=(0.515614 0.0563988 -0.854963)} Corner 9347 38309 {normal=(-0.218375 -0.0499018 -0.974588)} Corner 9348 38309 {normal=(-0.246281 -0.0341398 -0.968597)} Corner 9348 38310 {normal=(-0.246281 -0.0341398 -0.968597)} Corner 8987 38310 {normal=(-0.247074 -0.0336897 -0.968411)} Corner 8987 38311 {normal=(-0.247074 -0.0336897 -0.968411)} Corner 9268 38311 {normal=(-0.218376 -0.0499018 -0.974588)} Corner 9268 38312 {normal=(-0.218376 -0.0499018 -0.974588)} Corner 9347 38312 {normal=(-0.218375 -0.0499018 -0.974588)} Corner 9268 38313 {normal=(0.977058 -0.207441 -0.0482352)} Corner 8987 38313 {normal=(0.981999 -0.16925 -0.0838638)} Corner 8987 38314 {normal=(0.981999 -0.16925 -0.0838638)} Corner 8942 38314 {normal=(0.982509 -0.163452 -0.0892148)} Corner 8942 38315 {normal=(0.982509 -0.163452 -0.0892148)} Corner 9260 38315 {normal=(0.977057 -0.207442 -0.0482353)} Corner 9260 38316 {normal=(0.977057 -0.207442 -0.0482353)} Corner 9268 38316 {normal=(0.977058 -0.207441 -0.0482352)} Corner 9260 38317 {normal=(0.381727 0.0765036 -0.921103)} Corner 8942 38317 {normal=(0.43603 0.00679059 -0.899906)} Corner 8942 38318 {normal=(0.43603 0.00679059 -0.899906)} Corner 9260 38320 {normal=(0.381727 0.0765036 -0.921103)} Corner 7280 38325 {normal=(0.0953397 0.128786 0.987079)} Corner 7436 38327 {normal=(-0.157938 0.08247 0.983999)} Corner 7436 38328 {normal=(-0.157938 0.08247 0.983999)} Corner 7280 38328 {normal=(0.0953397 0.128786 0.987079)} Corner 7092 38329 {normal=(0.213338 0.154984 0.964607)} Corner 7280 38331 {normal=(0.0953397 0.128786 0.987079)} Corner 7280 38332 {normal=(0.0953397 0.128786 0.987079)} Corner 7092 38332 {normal=(0.213338 0.154984 0.964607)} Corner 9694 38333 {normal=(0.840896 0.193021 -0.505606)} Corner 9676 38335 {normal=(0.889195 0.183512 -0.419112)} Corner 9676 38336 {normal=(0.889195 0.183512 -0.419112)} Corner 9694 38336 {normal=(0.840896 0.193021 -0.505606)} Corner 9707 38337 {normal=(0.697214 0.191199 -0.690895)} Corner 9752 38337 {normal=(0.715571 0.206281 -0.667388)} Corner 9752 38338 {normal=(0.715571 0.206281 -0.667388)} Corner 9694 38339 {normal=(0.840896 0.193021 -0.505606)} Corner 9694 38340 {normal=(0.840896 0.193021 -0.505606)} Corner 9707 38340 {normal=(0.697214 0.191199 -0.690895)} Corner 9496 38342 {normal=(0.741027 0.167603 -0.650222)} Corner 9496 38343 {normal=(0.741027 0.167603 -0.650222)} Corner 9517 38343 {normal=(0.72686 0.171124 -0.665125)} Corner 9517 38344 {normal=(0.72686 0.171124 -0.665125)} Corner 9473 38346 {normal=(0.699882 0.107793 -0.706078)} Corner 9473 38347 {normal=(0.699882 0.107793 -0.706078)} Corner 9496 38347 {normal=(0.741027 0.167603 -0.650222)} Corner 9496 38348 {normal=(0.741027 0.167603 -0.650222)} Corner 5526 38349 {normal=(-4.9498e-09 0.148524 0.988909)} Corner 7092 38351 {normal=(0.213338 0.154984 0.964607)} Corner 7092 38352 {normal=(0.213338 0.154984 0.964607)} Corner 5526 38352 {normal=(-4.9498e-09 0.148524 0.988909)} Corner 7436 38353 {normal=(-0.157938 0.08247 0.983999)} Corner 9174 38355 {normal=(0.215044 0.0403984 0.975768)} Corner 9174 38356 {normal=(0.215044 0.0403984 0.975768)} Corner 7436 38356 {normal=(-0.157938 0.08247 0.983999)} Corner 9721 38357 {normal=(0.858953 0.00653119 0.512012)} Corner 9809 38359 {normal=(0.991044 0.0398546 0.127451)} Corner 9809 38360 {normal=(0.991044 0.0398546 0.127451)} Corner 9721 38360 {normal=(0.858953 0.00653119 0.512012)} Corner 9787 38365 {normal=(0.99087 0.0395592 -0.128885)} Corner 9752 38366 {normal=(0.996609 0.0527185 -0.0631762)} Corner 9752 38367 {normal=(0.996609 0.0527185 -0.0631762)} Corner 9707 38367 {normal=(0.984651 0.0846602 -0.152628)} Corner 9707 38368 {normal=(0.984651 0.0846602 -0.152628)} Corner 9787 38368 {normal=(0.99087 0.0395592 -0.128885)} Corner 9676 38369 {normal=(0.889195 0.183512 -0.419112)} Corner 9517 38371 {normal=(0.72686 0.171124 -0.665125)} Corner 9517 38372 {normal=(0.72686 0.171124 -0.665125)} Corner 9676 38372 {normal=(0.889195 0.183512 -0.419112)} Corner 9473 38373 {normal=(0.699882 0.107793 -0.706078)} Corner 9347 38374 {normal=(0.515614 0.0563988 -0.854963)} Corner 9347 38375 {normal=(0.515614 0.0563988 -0.854963)} Corner 9345 38375 {normal=(0.565194 0.0500575 -0.823438)} Corner 9345 38376 {normal=(0.565194 0.0500575 -0.823438)} Corner 9473 38376 {normal=(0.699882 0.107793 -0.706078)} Corner 9768 38377 {normal=(0.201293 -0.978403 0.0470054)} Corner 9686 38377 {normal=(0.201293 -0.978403 0.0470054)} Corner 9686 38378 {normal=(0.201293 -0.978403 0.0470054)} Corner 9597 38378 {normal=(0.0676281 -0.99724 0.0306309)} Corner 9597 38379 {normal=(0.0676281 -0.99724 0.0306309)} Corner 9715 38379 {normal=(0.0969369 -0.994701 0.0342567)} Corner 9715 38380 {normal=(0.0969369 -0.994701 0.0342567)} Corner 9768 38380 {normal=(0.201293 -0.978403 0.0470054)} Corner 5517 38381 {normal=(1.18759e-09 -0.99257 0.121672)} Corner 5513 38381 {normal=(2.49317e-09 -0.99257 0.121672)} Corner 5513 38382 {normal=(2.49317e-09 -0.99257 0.121672)} Corner 7220 38382 {normal=(-0.00688992 -0.996321 0.0854212)} Corner 7220 38383 {normal=(-0.00688992 -0.996321 0.0854212)} Corner 7285 38383 {normal=(-0.00934289 -0.996061 0.0881754)} Corner 7285 38384 {normal=(-0.00934289 -0.996061 0.0881754)} Corner 5517 38384 {normal=(1.18759e-09 -0.99257 0.121672)} Corner 7285 38385 {normal=(-0.00934289 -0.996061 0.0881754)} Corner 7220 38385 {normal=(-0.00688992 -0.996321 0.0854212)} Corner 7220 38386 {normal=(-0.00688992 -0.996321 0.0854212)} Corner 8692 38386 {normal=(0.096553 -0.989476 0.107775)} Corner 8692 38387 {normal=(0.096553 -0.989476 0.107775)} Corner 9231 38387 {normal=(0.102963 -0.98829 0.112612)} Corner 9231 38388 {normal=(0.102963 -0.98829 0.112612)} Corner 7285 38388 {normal=(-0.00934289 -0.996061 0.0881754)} Corner 9231 38389 {normal=(0.102963 -0.98829 0.112612)} Corner 8692 38389 {normal=(0.096553 -0.989476 0.107775)} Corner 8692 38390 {normal=(0.096553 -0.989476 0.107775)} Corner 9442 38390 {normal=(0.231854 -0.957202 0.173227)} Corner 9442 38391 {normal=(0.231854 -0.957202 0.173227)} Corner 9470 38391 {normal=(0.271012 -0.945894 0.178429)} Corner 9470 38392 {normal=(0.271012 -0.945894 0.178429)} Corner 9231 38392 {normal=(0.102963 -0.98829 0.112612)} Corner 9508 38393 {normal=(-0.0720379 -0.936321 0.343677)} Corner 9442 38393 {normal=(0.0136195 -0.983052 0.182819)} Corner 9442 38394 {normal=(0.0136195 -0.983052 0.182819)} Corner 9579 38394 {normal=(0.179608 -0.983238 0.0313665)} Corner 9579 38395 {normal=(0.179608 -0.983238 0.0313665)} Corner 9706 38395 {normal=(0.110916 -0.991567 0.0670326)} Corner 9706 38396 {normal=(0.110916 -0.991567 0.0670326)} Corner 9508 38396 {normal=(-0.0720379 -0.936321 0.343677)} Corner 9706 38397 {normal=(0.110916 -0.991567 0.0670326)} Corner 9579 38397 {normal=(0.179608 -0.983238 0.0313665)} Corner 9579 38398 {normal=(0.179608 -0.983238 0.0313665)} Corner 9686 38398 {normal=(0.233455 -0.972363 0.00286952)} Corner 9686 38399 {normal=(0.233455 -0.972363 0.00286952)} Corner 9799 38399 {normal=(0.233455 -0.972363 0.00286952)} Corner 9799 38400 {normal=(0.233455 -0.972363 0.00286952)} Corner 9706 38400 {normal=(0.110916 -0.991567 0.0670326)} Corner 9715 38401 {normal=(0.0969369 -0.994701 0.0342567)} Corner 9597 38401 {normal=(0.0676281 -0.99724 0.0306309)} Corner 9597 38402 {normal=(0.0676281 -0.99724 0.0306309)} Corner 9402 38402 {normal=(0.00114083 -0.985566 -0.16929)} Corner 9402 38403 {normal=(0.00114083 -0.985566 -0.16929)} Corner 9474 38403 {normal=(-0.0171198 -0.996635 -0.0801616)} Corner 9474 38404 {normal=(-0.0171198 -0.996635 -0.0801616)} Corner 9715 38404 {normal=(0.0969369 -0.994701 0.0342567)} Corner 9474 38405 {normal=(-0.0171198 -0.996635 -0.0801616)} Corner 9402 38405 {normal=(0.00114083 -0.985566 -0.16929)} Corner 9402 38406 {normal=(0.00114083 -0.985566 -0.16929)} Corner 8617 38406 {normal=(0.0219785 -0.962802 -0.269314)} Corner 8617 38407 {normal=(0.0219785 -0.962802 -0.269314)} Corner 9273 38407 {normal=(0.0219785 -0.962802 -0.269314)} Corner 9273 38408 {normal=(0.0219785 -0.962802 -0.269314)} Corner 9474 38408 {normal=(-0.0171198 -0.996635 -0.0801616)} Corner 8660 38409 {normal=(0.115738 -0.983081 -0.141976)} Corner 8617 38409 {normal=(0.115738 -0.983081 -0.141976)} Corner 8617 38410 {normal=(0.115738 -0.983081 -0.141976)} Corner 7232 38410 {normal=(0.0422059 -0.99194 -0.119473)} Corner 7232 38411 {normal=(0.0422059 -0.99194 -0.119473)} Corner 7349 38411 {normal=(0.0417717 -0.991974 -0.119339)} Corner 7349 38412 {normal=(0.0417717 -0.991974 -0.119339)} Corner 8660 38412 {normal=(0.115738 -0.983081 -0.141976)} Corner 7349 38413 {normal=(0.0417717 -0.991974 -0.119339)} Corner 7232 38413 {normal=(0.0422059 -0.99194 -0.119473)} Corner 7232 38414 {normal=(0.0422059 -0.99194 -0.119473)} Corner 5514 38414 {normal=(2.30376e-09 -0.99535 -0.0963258)} Corner 5514 38415 {normal=(2.30376e-09 -0.99535 -0.0963258)} Corner 5516 38415 {normal=(1.16777e-09 -0.99535 -0.0963258)} Corner 5516 38416 {normal=(1.16777e-09 -0.99535 -0.0963258)} Corner 7349 38416 {normal=(0.0417717 -0.991974 -0.119339)} Corner 9508 38417 {normal=(0.353047 -0.504679 0.787818)} Corner 9491 38418 {normal=(0.204923 -0.223809 0.952846)} Corner 9491 38419 {normal=(0.204923 -0.223809 0.952846)} Corner 9497 38419 {normal=(0.395789 -0.238275 0.886891)} Corner 9497 38420 {normal=(0.395789 -0.238275 0.886891)} Corner 9508 38420 {normal=(0.353047 -0.504679 0.787818)} Corner 9470 38421 {normal=(0.788053 -0.156725 0.595324)} Corner 9470 38422 {normal=(0.788053 -0.156725 0.595324)} Corner 9497 38422 {normal=(0.899131 0.00922871 0.437583)} Corner 9497 38423 {normal=(0.899131 0.00922871 0.437583)} Corner 9491 38423 {normal=(0.897276 -0.0443242 0.43924)} Corner 9491 38424 {normal=(0.897276 -0.0443242 0.43924)} Corner 9768 38425 {normal=(0.880991 -0.0314842 0.472084)} Corner 9768 38428 {normal=(0.880991 -0.0314842 0.472084)} Corner 9799 38429 {normal=(0.835522 0.115602 -0.537159)} Corner 9799 38430 {normal=(0.835522 0.115602 -0.537159)} Corner 8878 38433 {normal=(-0.308313 -0.0200838 -0.951073)} Corner 9302 38433 {normal=(-0.306044 -0.0199925 -0.951807)} Corner 9302 38434 {normal=(-0.306044 -0.0199925 -0.951807)} Corner 9273 38434 {normal=(-0.398693 -0.206427 -0.89355)} Corner 9273 38435 {normal=(-0.398693 -0.206427 -0.89355)} Corner 8625 38435 {normal=(-0.40936 -0.244902 -0.87889)} Corner 8625 38436 {normal=(-0.40936 -0.244902 -0.87889)} Corner 8878 38436 {normal=(-0.308313 -0.0200838 -0.951073)} Corner 8625 38437 {normal=(0.996873 -0.0784268 0.00963303)} Corner 8660 38437 {normal=(0.996035 -0.0888412 0.0045807)} Corner 8660 38438 {normal=(0.996035 -0.0888412 0.0045807)} Corner 8715 38438 {normal=(0.986639 -0.143941 -0.0763209)} Corner 8715 38439 {normal=(0.986639 -0.143941 -0.0763209)} Corner 8878 38439 {normal=(0.986612 -0.14361 -0.0772806)} Corner 8878 38440 {normal=(0.986612 -0.14361 -0.0772806)} Corner 8625 38440 {normal=(0.996873 -0.0784268 0.00963303)} Corner 8987 38441 {normal=(0.981999 -0.16925 -0.0838638)} Corner 8878 38441 {normal=(0.986612 -0.14361 -0.0772806)} Corner 8878 38442 {normal=(0.986612 -0.14361 -0.0772806)} Corner 8715 38442 {normal=(0.986639 -0.143941 -0.0763209)} Corner 8715 38443 {normal=(0.986639 -0.143941 -0.0763209)} Corner 8942 38443 {normal=(0.982509 -0.163452 -0.0892148)} Corner 8942 38444 {normal=(0.982509 -0.163452 -0.0892148)} Corner 8987 38444 {normal=(0.981999 -0.16925 -0.0838638)} Corner 9348 38445 {normal=(-0.246281 -0.0341398 -0.968597)} Corner 9302 38445 {normal=(-0.306044 -0.0199925 -0.951807)} Corner 9302 38446 {normal=(-0.306044 -0.0199925 -0.951807)} Corner 8878 38446 {normal=(-0.308313 -0.0200838 -0.951073)} Corner 8878 38447 {normal=(-0.308313 -0.0200838 -0.951073)} Corner 8987 38447 {normal=(-0.247074 -0.0336897 -0.968411)} Corner 8987 38448 {normal=(-0.247074 -0.0336897 -0.968411)} Corner 9348 38448 {normal=(-0.246281 -0.0341398 -0.968597)} Corner 9490 38457 {normal=(0.0569843 -0.268874 0.961488)} Corner 9491 38457 {normal=(0.204923 -0.223809 0.952846)} Corner 9491 38458 {normal=(0.204923 -0.223809 0.952846)} Corner 9490 38460 {normal=(0.0569843 -0.268874 0.961488)} Corner 9491 38462 {normal=(0.897276 -0.0443242 0.43924)} Corner 9491 38463 {normal=(0.897276 -0.0443242 0.43924)} Corner 9490 38463 {normal=(0.893329 -0.109836 0.435775)} Corner 9490 38464 {normal=(0.893329 -0.109836 0.435775)} Corner 8942 38470 {normal=(0.43603 0.00679059 -0.899906)} Corner 8942 38471 {normal=(0.43603 0.00679059 -0.899906)} Corner 8715 38471 {normal=(0.45996 -0.22788 -0.8582)} Corner 8715 38472 {normal=(0.45996 -0.22788 -0.8582)} Corner 9302 38473 {normal=(0.338525 -0.0990327 -0.935732)} Corner 9348 38473 {normal=(0.407466 0.0163148 -0.913075)} Corner 9348 38474 {normal=(0.407466 0.0163148 -0.913075)} Corner 9302 38476 {normal=(0.338525 -0.0990327 -0.935732)} Corner 9761 38479 {normal=(0.766303 -0.146085 -0.62565)} Corner 9761 38480 {normal=(0.766303 -0.146085 -0.62565)} Corner 9761 38481 {normal=(0.996043 -0.085423 0.0245211)} Corner 9783 38481 {normal=(0.993745 -0.0814723 0.0763684)} Corner 9783 38482 {normal=(0.993745 -0.0814723 0.0763684)} Corner 9761 38484 {normal=(0.996043 -0.085423 0.0245211)} Corner 9768 38509 {normal=(0.880991 -0.0314842 0.472084)} Corner 9768 38510 {normal=(0.880991 -0.0314842 0.472084)} Corner 9715 38510 {normal=(0.998137 -0.0548471 -0.0267104)} Corner 9715 38511 {normal=(0.998137 -0.0548471 -0.0267104)} Corner 9761 38511 {normal=(0.996043 -0.085423 0.0245211)} Corner 9761 38512 {normal=(0.996043 -0.085423 0.0245211)} Corner 9474 38513 {normal=(0.500445 -0.231331 -0.83429)} Corner 9273 38513 {normal=(0.325796 -0.164946 -0.93094)} Corner 9273 38514 {normal=(0.325796 -0.164946 -0.93094)} Corner 9302 38514 {normal=(0.338525 -0.0990327 -0.935732)} Corner 9302 38515 {normal=(0.338525 -0.0990327 -0.935732)} Corner 9474 38516 {normal=(0.500445 -0.231331 -0.83429)} Corner 5516 38517 {normal=(-9.27504e-09 -0.44532 -0.895371)} Corner 7349 38519 {normal=(0.168833 -0.434866 -0.884526)} Corner 7349 38520 {normal=(0.168833 -0.434866 -0.884526)} Corner 5516 38520 {normal=(-9.27504e-09 -0.44532 -0.895371)} Corner 9799 38521 {normal=(0.835522 0.115602 -0.537159)} Corner 9706 38523 {normal=(0.666718 -0.652851 0.359546)} Corner 9706 38524 {normal=(0.666718 -0.652851 0.359546)} Corner 9799 38524 {normal=(0.835522 0.115602 -0.537159)} Corner 9508 38526 {normal=(0.353047 -0.504679 0.787818)} Corner 9508 38527 {normal=(0.353047 -0.504679 0.787818)} Corner 9706 38527 {normal=(0.666718 -0.652851 0.359546)} Corner 9706 38528 {normal=(0.666718 -0.652851 0.359546)} Corner 9231 38529 {normal=(0.375138 -0.418499 0.827122)} Corner 9470 38529 {normal=(0.788053 -0.156725 0.595324)} Corner 9470 38530 {normal=(0.788053 -0.156725 0.595324)} Corner 9231 38532 {normal=(0.375138 -0.418499 0.827122)} Corner 9474 38533 {normal=(0.500445 -0.231331 -0.83429)} Corner 9761 38534 {normal=(0.766303 -0.146085 -0.62565)} Corner 9761 38535 {normal=(0.766303 -0.146085 -0.62565)} Corner 9715 38535 {normal=(0.696765 -0.303158 -0.650088)} Corner 9715 38536 {normal=(0.696765 -0.303158 -0.650088)} Corner 9474 38536 {normal=(0.500445 -0.231331 -0.83429)} Corner 7285 38537 {normal=(0.0827036 -0.429508 0.899268)} Corner 5517 38539 {normal=(-2.28997e-09 -0.392375 0.919805)} Corner 5517 38540 {normal=(-2.28997e-09 -0.392375 0.919805)} Corner 7285 38540 {normal=(0.0827036 -0.429508 0.899268)} Corner 7349 38541 {normal=(0.168833 -0.434866 -0.884526)} Corner 8715 38542 {normal=(0.45996 -0.22788 -0.8582)} Corner 8715 38543 {normal=(0.45996 -0.22788 -0.8582)} Corner 8660 38543 {normal=(0.434047 -0.393368 -0.810472)} Corner 8660 38544 {normal=(0.434047 -0.393368 -0.810472)} Corner 7349 38544 {normal=(0.168833 -0.434866 -0.884526)} Corner 9231 38545 {normal=(0.375138 -0.418499 0.827122)} Corner 7285 38547 {normal=(0.0827036 -0.429508 0.899268)} Corner 7285 38548 {normal=(0.0827036 -0.429508 0.899268)} Corner 9231 38548 {normal=(0.375138 -0.418499 0.827122)} Corner 9711 38549 {normal=(0.460284 -0.059013 0.885808)} Corner 9711 38550 {normal=(0.460284 -0.059013 0.885808)} Corner 9818 38550 {normal=(0.428713 -0.346806 0.834225)} Corner 9818 38551 {normal=(0.428713 -0.346806 0.834225)} Corner 10186 38557 {normal=(0.86796 0.364718 -0.337085)} Corner 10408 38557 {normal=(0.854433 0.399555 -0.332115)} Corner 10408 38558 {normal=(0.854433 0.399555 -0.332115)} Corner 10560 38558 {normal=(0.931003 0.0260187 -0.364083)} Corner 10560 38559 {normal=(0.931003 0.0260187 -0.364083)} Corner 10251 38559 {normal=(0.93082 -0.0244507 -0.36466)} Corner 10251 38560 {normal=(0.93082 -0.0244507 -0.36466)} Corner 10186 38560 {normal=(0.86796 0.364718 -0.337085)} Corner 10122 38561 {normal=(0.674806 0.436226 -0.595268)} Corner 10122 38562 {normal=(0.674806 0.436226 -0.595268)} Corner 10169 38562 {normal=(0.708388 0.30408 -0.636963)} Corner 10169 38563 {normal=(0.708388 0.30408 -0.636963)} Corner 10021 38563 {normal=(0.538674 0.299319 -0.787552)} Corner 10021 38564 {normal=(0.538674 0.299319 -0.787552)} Corner 9619 38565 {normal=(0.315452 0.423824 -0.849037)} Corner 10021 38566 {normal=(0.538674 0.299319 -0.787552)} Corner 10021 38567 {normal=(0.538674 0.299319 -0.787552)} Corner 9689 38567 {normal=(0.345105 0.279656 -0.895933)} Corner 9689 38568 {normal=(0.345105 0.279656 -0.895933)} Corner 9619 38568 {normal=(0.315452 0.423824 -0.849037)} Corner 8979 38569 {normal=(-0.331227 0.352747 -0.875133)} Corner 9619 38569 {normal=(-0.330609 0.320153 -0.887806)} Corner 9619 38570 {normal=(-0.330609 0.320153 -0.887806)} Corner 9689 38570 {normal=(-0.326963 0.230981 -0.916375)} Corner 9689 38571 {normal=(-0.326963 0.230981 -0.916375)} Corner 9264 38571 {normal=(-0.326962 0.230981 -0.916375)} Corner 9264 38572 {normal=(-0.326962 0.230981 -0.916375)} Corner 8979 38572 {normal=(-0.331227 0.352747 -0.875133)} Corner 8366 38573 {normal=(-0.768426 0.196636 -0.608979)} Corner 8366 38574 {normal=(-0.768426 0.196636 -0.608979)} Corner 8531 38574 {normal=(-0.762401 -0.0852375 -0.641467)} Corner 8531 38575 {normal=(-0.762401 -0.0852375 -0.641467)} Corner 5729 38577 {normal=(-0.955977 0.0833046 -0.281369)} Corner 5815 38579 {normal=(-0.95747 -0.0636847 -0.281418)} Corner 5815 38580 {normal=(-0.95747 -0.0636847 -0.281418)} Corner 5729 38580 {normal=(-0.955977 0.0833046 -0.281369)} Corner 6704 38581 {normal=(-0.82338 -0.282095 0.49241)} Corner 5718 38582 {normal=(-0.958329 -0.122502 0.258066)} Corner 5718 38583 {normal=(-0.958329 -0.122502 0.258066)} Corner 5830 38583 {normal=(-0.935502 -0.227956 0.269947)} Corner 5830 38584 {normal=(-0.935502 -0.227956 0.269947)} Corner 6704 38584 {normal=(-0.82338 -0.282095 0.49241)} Corner 6704 38586 {normal=(-0.82338 -0.282095 0.49241)} Corner 6704 38587 {normal=(-0.82338 -0.282095 0.49241)} Corner 9711 38589 {normal=(-0.159337 -0.206901 0.9653)} Corner 9700 38591 {normal=(-0.13731 -0.409639 0.901855)} Corner 9700 38592 {normal=(-0.13731 -0.409639 0.901855)} Corner 9711 38592 {normal=(-0.159337 -0.206901 0.9653)} Corner 9403 38593 {normal=(-0.236977 -0.839805 -0.488436)} Corner 9403 38594 {normal=(-0.236977 -0.839805 -0.488436)} Corner 9277 38594 {normal=(-0.522959 -0.815795 -0.246966)} Corner 9277 38595 {normal=(-0.522959 -0.815795 -0.246966)} Corner 9548 38597 {normal=(0.173606 -0.812608 -0.556354)} Corner 9548 38598 {normal=(0.173606 -0.812608 -0.556354)} Corner 9403 38598 {normal=(-0.236977 -0.839805 -0.488436)} Corner 9403 38599 {normal=(-0.236977 -0.839805 -0.488436)} Corner 9671 38601 {normal=(0.533408 -0.658663 -0.530697)} Corner 9671 38602 {normal=(0.533408 -0.658663 -0.530697)} Corner 9548 38602 {normal=(0.173606 -0.812608 -0.556354)} Corner 9548 38603 {normal=(0.173606 -0.812608 -0.556354)} Corner 9762 38605 {normal=(0.800181 -0.506271 -0.321557)} Corner 9762 38606 {normal=(0.800181 -0.506271 -0.321557)} Corner 9671 38606 {normal=(0.533408 -0.658663 -0.530697)} Corner 9671 38607 {normal=(0.533408 -0.658663 -0.530697)} Corner 9810 38609 {normal=(0.879339 -0.474861 0.0356342)} Corner 9810 38610 {normal=(0.879339 -0.474861 0.0356342)} Corner 9762 38610 {normal=(0.800181 -0.506271 -0.321557)} Corner 9762 38611 {normal=(0.800181 -0.506271 -0.321557)} Corner 9705 38613 {normal=(0.618494 -0.486657 0.616952)} Corner 9705 38614 {normal=(0.618494 -0.486657 0.616952)} Corner 9810 38614 {normal=(0.879339 -0.474861 0.0356342)} Corner 9810 38615 {normal=(0.879339 -0.474861 0.0356342)} Corner 9555 38617 {normal=(0.194745 -0.474158 0.858632)} Corner 9555 38618 {normal=(0.194745 -0.474158 0.858632)} Corner 9705 38618 {normal=(0.618494 -0.486657 0.616952)} Corner 9705 38619 {normal=(0.618494 -0.486657 0.616952)} Corner 9405 38621 {normal=(-0.224994 -0.604893 0.76386)} Corner 9405 38622 {normal=(-0.224994 -0.604893 0.76386)} Corner 9555 38622 {normal=(0.194745 -0.474158 0.858632)} Corner 9555 38623 {normal=(0.194745 -0.474158 0.858632)} Corner 9336 38625 {normal=(-0.556652 -0.711469 0.428895)} Corner 9336 38626 {normal=(-0.556652 -0.711469 0.428895)} Corner 9405 38626 {normal=(-0.224994 -0.604893 0.76386)} Corner 9405 38627 {normal=(-0.224994 -0.604893 0.76386)} Corner 9084 38629 {normal=(-0.636589 -0.766435 0.0856278)} Corner 9084 38630 {normal=(-0.636589 -0.766435 0.0856278)} Corner 9336 38630 {normal=(-0.556652 -0.711469 0.428895)} Corner 9336 38631 {normal=(-0.556652 -0.711469 0.428895)} Corner 9277 38633 {normal=(-0.522959 -0.815795 -0.246966)} Corner 9277 38634 {normal=(-0.522959 -0.815795 -0.246966)} Corner 9084 38634 {normal=(-0.636589 -0.766435 0.0856278)} Corner 9084 38635 {normal=(-0.636589 -0.766435 0.0856278)} Corner 9394 38725 {normal=(-0.439236 0.25355 -0.861849)} Corner 8348 38727 {normal=(-0.744959 0.212348 -0.632412)} Corner 8348 38728 {normal=(-0.744959 0.212348 -0.632412)} Corner 9394 38728 {normal=(-0.439236 0.25355 -0.861849)} Corner 9573 38729 {normal=(0.0905732 0.300203 -0.949565)} Corner 9394 38731 {normal=(-0.439236 0.25355 -0.861849)} Corner 9394 38732 {normal=(-0.439236 0.25355 -0.861849)} Corner 9573 38732 {normal=(0.0905732 0.300203 -0.949565)} Corner 9798 38733 {normal=(0.53755 0.292608 -0.790835)} Corner 9573 38735 {normal=(0.0905732 0.300203 -0.949565)} Corner 9573 38736 {normal=(0.0905732 0.300203 -0.949565)} Corner 9798 38736 {normal=(0.53755 0.292608 -0.790835)} Corner 9913 38737 {normal=(0.873465 0.223631 -0.43249)} Corner 9798 38739 {normal=(0.53755 0.292608 -0.790835)} Corner 9798 38740 {normal=(0.53755 0.292608 -0.790835)} Corner 9913 38740 {normal=(0.873465 0.223631 -0.43249)} Corner 9961 38741 {normal=(0.982786 0.122872 0.137968)} Corner 9913 38743 {normal=(0.873465 0.223631 -0.43249)} Corner 9913 38744 {normal=(0.873465 0.223631 -0.43249)} Corner 9961 38744 {normal=(0.982786 0.122872 0.137968)} Corner 9842 38745 {normal=(0.686526 0.0362203 0.726202)} Corner 9961 38747 {normal=(0.982786 0.122872 0.137968)} Corner 9961 38748 {normal=(0.982786 0.122872 0.137968)} Corner 9842 38748 {normal=(0.686526 0.0362203 0.726202)} Corner 9572 38749 {normal=(0.174285 -0.0102547 0.984642)} Corner 9842 38751 {normal=(0.686526 0.0362203 0.726202)} Corner 9842 38752 {normal=(0.686526 0.0362203 0.726202)} Corner 9572 38752 {normal=(0.174285 -0.0102547 0.984642)} Corner 9335 38753 {normal=(-0.331067 -0.0360765 0.942917)} Corner 9572 38755 {normal=(0.174285 -0.0102547 0.984642)} Corner 9572 38756 {normal=(0.174285 -0.0102547 0.984642)} Corner 9335 38756 {normal=(-0.331067 -0.0360765 0.942917)} Corner 7850 38757 {normal=(-0.779524 0.00623601 0.626342)} Corner 9335 38759 {normal=(-0.331067 -0.0360765 0.942917)} Corner 9335 38760 {normal=(-0.331067 -0.0360765 0.942917)} Corner 7850 38760 {normal=(-0.779524 0.00623601 0.626342)} Corner 7677 38761 {normal=(-0.985658 0.150249 -0.0768379)} Corner 7850 38763 {normal=(-0.779524 0.00623601 0.626342)} Corner 7850 38764 {normal=(-0.779524 0.00623601 0.626342)} Corner 7677 38764 {normal=(-0.985658 0.150249 -0.0768379)} Corner 8348 38765 {normal=(-0.744959 0.212348 -0.632412)} Corner 7677 38767 {normal=(-0.985658 0.150249 -0.0768379)} Corner 7677 38768 {normal=(-0.985658 0.150249 -0.0768379)} Corner 8348 38768 {normal=(-0.744959 0.212348 -0.632412)} Corner 9341 38769 {normal=(-0.156422 -0.678043 -0.718185)} Corner 9662 38769 {normal=(-0.0452789 -0.72312 -0.689236)} Corner 9662 38770 {normal=(-0.0452789 -0.72312 -0.689236)} Corner 9627 38770 {normal=(0.062312 -0.853648 -0.51711)} Corner 9627 38771 {normal=(0.062312 -0.853648 -0.51711)} Corner 9354 38771 {normal=(-0.0839995 -0.832451 -0.547694)} Corner 9354 38772 {normal=(-0.0839995 -0.832451 -0.547694)} Corner 9341 38772 {normal=(-0.156422 -0.678043 -0.718185)} Corner 9662 38773 {normal=(-0.0452789 -0.72312 -0.689236)} Corner 9975 38773 {normal=(0.293358 -0.854414 -0.428856)} Corner 9975 38774 {normal=(0.293358 -0.854414 -0.428856)} Corner 9892 38774 {normal=(0.290827 -0.85451 -0.430386)} Corner 9892 38775 {normal=(0.290827 -0.85451 -0.430386)} Corner 9627 38775 {normal=(0.062312 -0.853648 -0.51711)} Corner 9627 38776 {normal=(0.062312 -0.853648 -0.51711)} Corner 9662 38776 {normal=(-0.0452789 -0.72312 -0.689236)} Corner 10109 38777 {normal=(0.483984 -0.841711 -0.239337)} Corner 10124 38777 {normal=(0.633127 -0.774 -0.0085871)} Corner 10124 38778 {normal=(0.633127 -0.774 -0.0085871)} Corner 9989 38778 {normal=(0.633127 -0.774 -0.0085871)} Corner 9989 38779 {normal=(0.633127 -0.774 -0.0085871)} Corner 9992 38779 {normal=(0.531985 -0.828818 -0.173356)} Corner 9992 38780 {normal=(0.531985 -0.828818 -0.173356)} Corner 10109 38780 {normal=(0.483984 -0.841711 -0.239337)} Corner 9989 38781 {normal=(0.302598 -0.835834 -0.458057)} Corner 10124 38781 {normal=(0.302598 -0.835834 -0.458058)} Corner 10124 38782 {normal=(0.302598 -0.835834 -0.458058)} Corner 10183 38782 {normal=(0.39653 -0.865229 -0.306826)} Corner 10183 38783 {normal=(0.39653 -0.865229 -0.306826)} Corner 10033 38783 {normal=(0.394964 -0.864951 -0.309618)} Corner 10033 38784 {normal=(0.394964 -0.864951 -0.309618)} Corner 9989 38784 {normal=(0.302598 -0.835834 -0.458057)} Corner 9785 38785 {normal=(-0.373527 -0.649391 0.662397)} Corner 9720 38785 {normal=(-0.372789 -0.648275 0.663904)} Corner 9720 38786 {normal=(-0.372789 -0.648275 0.663904)} Corner 9659 38786 {normal=(-0.450216 -0.762915 0.463968)} Corner 9659 38787 {normal=(-0.450216 -0.762915 0.463968)} Corner 9718 38787 {normal=(-0.450216 -0.762915 0.463968)} Corner 9718 38788 {normal=(-0.450216 -0.762915 0.463968)} Corner 9785 38788 {normal=(-0.373527 -0.649391 0.662397)} Corner 9580 38789 {normal=(0.47111 -0.826591 0.307899)} Corner 9659 38789 {normal=(0.47111 -0.826591 0.307899)} Corner 9659 38790 {normal=(0.47111 -0.826591 0.307899)} Corner 9720 38790 {normal=(0.511247 -0.682689 0.522074)} Corner 9720 38791 {normal=(0.511247 -0.682689 0.522074)} Corner 9669 38791 {normal=(0.509163 -0.696929 0.505018)} Corner 9669 38792 {normal=(0.509163 -0.696929 0.505018)} Corner 9580 38792 {normal=(0.47111 -0.826591 0.307899)} Corner 7114 38793 {normal=(-0.596418 -0.777188 -0.200659)} Corner 7046 38793 {normal=(-0.454147 -0.765268 0.456197)} Corner 7046 38794 {normal=(-0.454147 -0.765268 0.456197)} Corner 8492 38794 {normal=(-0.403594 -0.883359 0.238304)} Corner 8492 38795 {normal=(-0.403594 -0.883359 0.238304)} Corner 8307 38795 {normal=(-0.596418 -0.777188 -0.200659)} Corner 8307 38796 {normal=(-0.596418 -0.777188 -0.200659)} Corner 7114 38796 {normal=(-0.596418 -0.777188 -0.200659)} Corner 8492 38797 {normal=(-0.403594 -0.883359 0.238304)} Corner 7046 38797 {normal=(-0.454147 -0.765268 0.456197)} Corner 7046 38798 {normal=(-0.454147 -0.765268 0.456197)} Corner 6848 38798 {normal=(-0.268933 -0.663061 0.698587)} Corner 6848 38799 {normal=(-0.268933 -0.663061 0.698587)} Corner 7842 38799 {normal=(-0.0970908 -0.765494 0.636076)} Corner 7842 38800 {normal=(-0.0970908 -0.765494 0.636076)} Corner 8492 38800 {normal=(-0.403594 -0.883359 0.238304)} Corner 6363 38801 {normal=(-0.585757 -0.800985 -0.12374)} Corner 6953 38801 {normal=(-0.531414 -0.801041 -0.275558)} Corner 6953 38802 {normal=(-0.531414 -0.801041 -0.275558)} Corner 7661 38802 {normal=(-0.524558 -0.799769 -0.291904)} Corner 7661 38803 {normal=(-0.524558 -0.799769 -0.291904)} Corner 7385 38803 {normal=(-0.585757 -0.800985 -0.12374)} Corner 7385 38804 {normal=(-0.585757 -0.800985 -0.12374)} Corner 6363 38804 {normal=(-0.585757 -0.800985 -0.12374)} Corner 6953 38805 {normal=(-0.531414 -0.801041 -0.275558)} Corner 8865 38805 {normal=(-0.451581 -0.77522 -0.441711)} Corner 8865 38806 {normal=(-0.451581 -0.77522 -0.441711)} Corner 9354 38806 {normal=(-0.451581 -0.77522 -0.441711)} Corner 9354 38807 {normal=(-0.451581 -0.77522 -0.441711)} Corner 7661 38807 {normal=(-0.524558 -0.799769 -0.291904)} Corner 7661 38808 {normal=(-0.524558 -0.799769 -0.291904)} Corner 6953 38808 {normal=(-0.531414 -0.801041 -0.275558)} Corner 9264 38809 {normal=(-0.228757 -0.450348 -0.863051)} Corner 9689 38809 {normal=(-0.228757 -0.450348 -0.863051)} Corner 9689 38810 {normal=(-0.228757 -0.450348 -0.863051)} Corner 9662 38810 {normal=(-0.0452789 -0.72312 -0.689236)} Corner 9662 38811 {normal=(-0.0452789 -0.72312 -0.689236)} Corner 9341 38811 {normal=(-0.156422 -0.678043 -0.718185)} Corner 9341 38812 {normal=(-0.156422 -0.678043 -0.718185)} Corner 9264 38812 {normal=(-0.228757 -0.450348 -0.863051)} Corner 9689 38813 {normal=(0.346636 -0.459137 -0.817947)} Corner 10021 38813 {normal=(0.497961 -0.437362 -0.748832)} Corner 10021 38814 {normal=(0.497961 -0.437362 -0.748832)} Corner 9975 38814 {normal=(0.504657 -0.43605 -0.745105)} Corner 9975 38815 {normal=(0.504657 -0.43605 -0.745105)} Corner 9662 38815 {normal=(0.346636 -0.459137 -0.817947)} Corner 9662 38816 {normal=(0.346636 -0.459137 -0.817947)} Corner 9689 38816 {normal=(0.346636 -0.459137 -0.817947)} Corner 10021 38817 {normal=(0.497961 -0.437362 -0.748832)} Corner 10169 38817 {normal=(0.64344 -0.40071 -0.65224)} Corner 10169 38818 {normal=(0.64344 -0.40071 -0.65224)} Corner 10109 38818 {normal=(0.64344 -0.400709 -0.65224)} Corner 10109 38819 {normal=(0.64344 -0.400709 -0.65224)} Corner 9975 38819 {normal=(0.504657 -0.43605 -0.745105)} Corner 9975 38820 {normal=(0.504657 -0.43605 -0.745105)} Corner 10021 38820 {normal=(0.497961 -0.437362 -0.748832)} Corner 10251 38821 {normal=(0.93082 -0.0244507 -0.36466)} Corner 10560 38821 {normal=(0.931003 0.0260187 -0.364083)} Corner 10560 38822 {normal=(0.931003 0.0260187 -0.364083)} Corner 10370 38822 {normal=(0.8867 -0.301003 -0.350942)} Corner 10370 38823 {normal=(0.8867 -0.301003 -0.350942)} Corner 10183 38823 {normal=(0.8867 -0.301003 -0.350942)} Corner 10183 38824 {normal=(0.8867 -0.301003 -0.350942)} Corner 10251 38824 {normal=(0.93082 -0.0244507 -0.36466)} Corner 10101 38826 {normal=(0.58279 -0.46793 0.664377)} Corner 10101 38827 {normal=(0.58279 -0.46793 0.664377)} Corner 10253 38827 {normal=(0.837249 -0.378955 0.394217)} Corner 10253 38828 {normal=(0.837249 -0.378955 0.394217)} Corner 9818 38829 {normal=(0.428713 -0.346806 0.834225)} Corner 9818 38830 {normal=(0.428713 -0.346806 0.834225)} Corner 9785 38830 {normal=(0.386485 -0.511135 0.767704)} Corner 9785 38831 {normal=(0.386485 -0.511135 0.767704)} Corner 10101 38831 {normal=(0.58279 -0.46793 0.664377)} Corner 10101 38832 {normal=(0.58279 -0.46793 0.664377)} Corner 9669 38834 {normal=(-0.102895 -0.695742 0.710884)} Corner 9669 38835 {normal=(-0.102895 -0.695742 0.710884)} Corner 9700 38835 {normal=(-0.13731 -0.409639 0.901855)} Corner 9700 38836 {normal=(-0.13731 -0.409639 0.901855)} Corner 6704 38837 {normal=(-0.82338 -0.282095 0.49241)} Corner 6704 38838 {normal=(-0.82338 -0.282095 0.49241)} Corner 7114 38838 {normal=(-0.523614 -0.627113 0.576678)} Corner 7114 38839 {normal=(-0.523614 -0.627113 0.576678)} Corner 6704 38841 {normal=(-0.82338 -0.282095 0.49241)} Corner 5830 38841 {normal=(-0.935502 -0.227956 0.269947)} Corner 5830 38842 {normal=(-0.935502 -0.227956 0.269947)} Corner 6324 38842 {normal=(-0.7581 -0.608837 0.233671)} Corner 6324 38843 {normal=(-0.7581 -0.608837 0.233671)} Corner 6848 38843 {normal=(-0.813916 -0.525529 0.247709)} Corner 6848 38844 {normal=(-0.813916 -0.525529 0.247709)} Corner 6704 38844 {normal=(-0.82338 -0.282095 0.49241)} Corner 5815 38845 {normal=(-0.95747 -0.0636847 -0.281418)} Corner 6953 38846 {normal=(-0.836174 -0.297775 -0.46059)} Corner 6953 38847 {normal=(-0.836174 -0.297775 -0.46059)} Corner 6363 38847 {normal=(-0.929039 -0.251419 -0.27143)} Corner 6363 38848 {normal=(-0.929039 -0.251419 -0.27143)} Corner 5815 38848 {normal=(-0.95747 -0.0636847 -0.281418)} Corner 8531 38849 {normal=(-0.762401 -0.0852375 -0.641467)} Corner 8531 38850 {normal=(-0.762401 -0.0852375 -0.641467)} Corner 8865 38850 {normal=(-0.707487 -0.329744 -0.625085)} Corner 8865 38851 {normal=(-0.707487 -0.329744 -0.625085)} Corner 6953 38851 {normal=(-0.836174 -0.297775 -0.46059)} Corner 6953 38852 {normal=(-0.836174 -0.297775 -0.46059)} Corner 8320 38853 {normal=(-0.423733 0.150062 -0.89327)} Corner 9537 38853 {normal=(-0.38472 0.289907 -0.876325)} Corner 9537 38854 {normal=(-0.38472 0.289907 -0.876325)} Corner 9619 38854 {normal=(-0.330609 0.320153 -0.887806)} Corner 9619 38855 {normal=(-0.330609 0.320153 -0.887806)} Corner 8979 38855 {normal=(-0.331227 0.352747 -0.875133)} Corner 8979 38856 {normal=(-0.331227 0.352747 -0.875133)} Corner 8320 38856 {normal=(-0.423733 0.150062 -0.89327)} Corner 9537 38857 {normal=(0.321326 0.507354 -0.799588)} Corner 9619 38859 {normal=(0.315452 0.423824 -0.849037)} Corner 9619 38860 {normal=(0.315452 0.423824 -0.849037)} Corner 9537 38860 {normal=(0.321326 0.507354 -0.799588)} Corner 10014 38861 {normal=(0.602655 0.540177 -0.58738)} Corner 10014 38862 {normal=(0.602655 0.540177 -0.58738)} Corner 10122 38862 {normal=(0.674806 0.436226 -0.595268)} Corner 10122 38863 {normal=(0.674806 0.436226 -0.595268)} Corner 10067 38865 {normal=(0.814627 0.477958 -0.328541)} Corner 10210 38865 {normal=(0.814749 0.476471 -0.330393)} Corner 10210 38866 {normal=(0.814749 0.476471 -0.330393)} Corner 10408 38866 {normal=(0.854433 0.399555 -0.332115)} Corner 10408 38867 {normal=(0.854433 0.399555 -0.332115)} Corner 10186 38867 {normal=(0.86796 0.364718 -0.337085)} Corner 10186 38868 {normal=(0.86796 0.364718 -0.337085)} Corner 10067 38868 {normal=(0.814627 0.477958 -0.328541)} Corner 9592 38873 {normal=(0.43261 0.0472125 0.900344)} Corner 9592 38874 {normal=(0.43261 0.0472125 0.900344)} Corner 9711 38874 {normal=(0.460284 -0.059013 0.885808)} Corner 9711 38875 {normal=(0.460284 -0.059013 0.885808)} Corner 9711 38878 {normal=(-0.159337 -0.206901 0.9653)} Corner 9711 38879 {normal=(-0.159337 -0.206901 0.9653)} Corner 9592 38879 {normal=(-0.179864 -0.0737284 0.980925)} Corner 9592 38880 {normal=(-0.179864 -0.0737284 0.980925)} Corner 5710 38885 {normal=(-0.975171 -0.0963855 0.199378)} Corner 5710 38886 {normal=(-0.975171 -0.0963855 0.199378)} Corner 5718 38886 {normal=(-0.958329 -0.122502 0.258066)} Corner 5718 38887 {normal=(-0.958329 -0.122502 0.258066)} Corner 5757 38889 {normal=(-0.948572 0.115378 -0.294786)} Corner 5729 38891 {normal=(-0.955977 0.0833046 -0.281369)} Corner 5729 38892 {normal=(-0.955977 0.0833046 -0.281369)} Corner 5757 38892 {normal=(-0.948572 0.115378 -0.294786)} Corner 8320 38893 {normal=(-0.800241 0.163325 -0.577009)} Corner 8320 38894 {normal=(-0.800241 0.163325 -0.577009)} Corner 8366 38894 {normal=(-0.768426 0.196636 -0.608979)} Corner 8366 38895 {normal=(-0.768426 0.196636 -0.608979)} Corner 6657 38897 {normal=(-0.914162 0.0683236 -0.39955)} Corner 5757 38898 {normal=(-0.948572 0.115378 -0.294786)} Corner 5757 38899 {normal=(-0.948572 0.115378 -0.294786)} Corner 5890 38899 {normal=(-0.943825 0.128633 -0.304383)} Corner 5890 38900 {normal=(-0.943825 0.128633 -0.304383)} Corner 6657 38900 {normal=(-0.914162 0.0683236 -0.39955)} Corner 5491 38901 {normal=(-0.24585 -0.951927 -0.182738)} Corner 6657 38901 {normal=(-0.282317 -0.947515 -0.15004)} Corner 6657 38902 {normal=(-0.282317 -0.947515 -0.15004)} Corner 5890 38902 {normal=(-0.343435 -0.934565 -0.0929585)} Corner 5890 38903 {normal=(-0.343435 -0.934565 -0.0929585)} Corner 5490 38903 {normal=(-0.343435 -0.934565 -0.0929585)} Corner 5490 38904 {normal=(-0.343435 -0.934565 -0.0929585)} Corner 5491 38904 {normal=(-0.24585 -0.951927 -0.182738)} Corner 10011 38905 {normal=(0.978102 0.204744 -0.0373693)} Corner 10011 38906 {normal=(0.978102 0.204744 -0.0373693)} Corner 10066 38906 {normal=(0.879041 0.328372 -0.345629)} Corner 10066 38907 {normal=(0.879041 0.328372 -0.345629)} Corner 9884 38907 {normal=(0.736123 0.398545 -0.547069)} Corner 9884 38908 {normal=(0.736123 0.398545 -0.547069)} Corner 10011 38909 {normal=(0.978102 0.204744 -0.0373693)} Corner 10011 38910 {normal=(0.978102 0.204744 -0.0373693)} Corner 5494 38921 {normal=(-1.06477e-08 -0.139361 -0.990242)} Corner 7328 38923 {normal=(-0.152479 -0.0301194 -0.987848)} Corner 7328 38924 {normal=(-0.152479 -0.0301194 -0.987848)} Corner 5494 38924 {normal=(-1.06477e-08 -0.139361 -0.990242)} Corner 9297 38929 {normal=(0.323791 0.18847 -0.927167)} Corner 9297 38932 {normal=(0.323791 0.18847 -0.927167)} Corner 7328 38933 {normal=(-0.152479 -0.0301194 -0.987848)} Corner 9297 38935 {normal=(0.323791 0.18847 -0.927167)} Corner 9297 38936 {normal=(0.323791 0.18847 -0.927167)} Corner 7328 38936 {normal=(-0.152479 -0.0301194 -0.987848)} Corner 9594 38937 {normal=(0.844464 0.27469 -0.459812)} Corner 9668 38937 {normal=(0.947089 0.284867 0.147895)} Corner 9668 38938 {normal=(0.947089 0.284867 0.147895)} Corner 9594 38940 {normal=(0.844464 0.27469 -0.459812)} Corner 9576 38941 {normal=(0.878715 0.225037 0.420973)} Corner 9670 38943 {normal=(0.958797 0.232666 -0.163016)} Corner 9670 38944 {normal=(0.958797 0.232666 -0.163016)} Corner 9576 38944 {normal=(0.878715 0.225037 0.420973)} Corner 9510 38945 {normal=(0.412836 0.0245384 0.910475)} Corner 9535 38947 {normal=(0.481465 0.00378589 0.876457)} Corner 9535 38948 {normal=(0.481465 0.00378589 0.876457)} Corner 9510 38948 {normal=(0.412836 0.0245384 0.910475)} Corner 9410 38953 {normal=(0.47972 0.0996945 0.87174)} Corner 9094 38953 {normal=(0.155356 0.0902539 0.983727)} Corner 9094 38954 {normal=(0.155356 0.0902539 0.983727)} Corner 9436 38955 {normal=(0.394128 0.0946903 0.914165)} Corner 9436 38956 {normal=(0.394128 0.0946903 0.914165)} Corner 9410 38956 {normal=(0.47972 0.0996945 0.87174)} Corner 5495 38957 {normal=(-0.468409 -0.591226 0.65654)} Corner 5493 38957 {normal=(-0.652945 -0.579556 0.487624)} Corner 5493 38958 {normal=(-0.652945 -0.579556 0.487624)} Corner 6265 38958 {normal=(-0.540246 -0.702367 0.463482)} Corner 6265 38959 {normal=(-0.540246 -0.702367 0.463482)} Corner 6426 38959 {normal=(-0.468409 -0.591226 0.65654)} Corner 6426 38960 {normal=(-0.468409 -0.591226 0.65654)} Corner 5495 38960 {normal=(-0.468409 -0.591226 0.65654)} Corner 7217 38961 {normal=(-0.024755 0.0123975 0.999617)} Corner 7217 38962 {normal=(-0.024755 0.0123975 0.999617)} Corner 5501 38962 {normal=(0 0.0168705 0.999858)} Corner 5501 38963 {normal=(0 0.0168705 0.999858)} Corner 9363 38965 {normal=(-0.521776 0.0183777 -0.852885)} Corner 7416 38965 {normal=(-0.565252 0.0581619 -0.822865)} Corner 7416 38966 {normal=(-0.565252 0.0581619 -0.822865)} Corner 7250 38966 {normal=(-0.613884 0.105292 -0.782343)} Corner 7250 38967 {normal=(-0.613884 0.105292 -0.782343)} Corner 9297 38967 {normal=(-0.613884 0.105292 -0.782343)} Corner 9297 38968 {normal=(-0.613884 0.105292 -0.782343)} Corner 9363 38968 {normal=(-0.521776 0.0183777 -0.852885)} Corner 8320 38969 {normal=(-0.423733 0.150062 -0.89327)} Corner 7416 38969 {normal=(-0.565252 0.0581619 -0.822865)} Corner 7416 38970 {normal=(-0.565252 0.0581619 -0.822865)} Corner 9363 38970 {normal=(-0.521776 0.0183777 -0.852885)} Corner 9363 38971 {normal=(-0.521776 0.0183777 -0.852885)} Corner 9537 38971 {normal=(-0.38472 0.289907 -0.876325)} Corner 9537 38972 {normal=(-0.38472 0.289907 -0.876325)} Corner 8320 38972 {normal=(-0.423733 0.150062 -0.89327)} Corner 9510 38973 {normal=(-0.144853 -0.0872991 0.985594)} Corner 9510 38974 {normal=(-0.144853 -0.0872991 0.985594)} Corner 9535 38974 {normal=(-0.0411224 -0.0874765 0.995318)} Corner 9535 38975 {normal=(-0.0411224 -0.0874765 0.995318)} Corner 8320 38977 {normal=(-0.800241 0.163325 -0.577009)} Corner 6657 38978 {normal=(-0.914162 0.0683236 -0.39955)} Corner 6657 38979 {normal=(-0.914162 0.0683236 -0.39955)} Corner 7416 38979 {normal=(-0.876324 -0.00414326 -0.481704)} Corner 7416 38980 {normal=(-0.876324 -0.00414326 -0.481704)} Corner 8320 38980 {normal=(-0.800241 0.163325 -0.577009)} Corner 9363 38981 {normal=(0.408748 0.364769 -0.836582)} Corner 9537 38983 {normal=(0.321326 0.507354 -0.799588)} Corner 9537 38984 {normal=(0.321326 0.507354 -0.799588)} Corner 9363 38984 {normal=(0.408748 0.364769 -0.836582)} Corner 10070 38985 {normal=(0.947808 0.217501 0.233139)} Corner 10070 38986 {normal=(0.947808 0.217501 0.233139)} Corner 10011 38986 {normal=(0.978102 0.204744 -0.0373693)} Corner 10011 38987 {normal=(0.978102 0.204744 -0.0373693)} Corner 5596 38989 {normal=(-0.89887 -0.350427 0.263122)} Corner 6265 38989 {normal=(-0.540246 -0.702367 0.463482)} Corner 6265 38990 {normal=(-0.540246 -0.702367 0.463482)} Corner 5493 38990 {normal=(-0.652945 -0.579556 0.487624)} Corner 5493 38991 {normal=(-0.652945 -0.579556 0.487624)} Corner 5492 38991 {normal=(-0.866638 -0.47336 0.157698)} Corner 5492 38992 {normal=(-0.866638 -0.47336 0.157698)} Corner 5596 38992 {normal=(-0.89887 -0.350427 0.263122)} Corner 7229 38993 {normal=(0.13043 0.357426 -0.924789)} Corner 8614 38993 {normal=(0.335349 0.342608 -0.877588)} Corner 8614 38994 {normal=(0.335349 0.342608 -0.877588)} Corner 7229 38996 {normal=(0.13043 0.357426 -0.924789)} Corner 9418 38997 {normal=(0.506298 0.271281 -0.818577)} Corner 9594 38997 {normal=(0.844464 0.27469 -0.459812)} Corner 9594 38998 {normal=(0.844464 0.27469 -0.459812)} Corner 9418 39000 {normal=(0.506298 0.271281 -0.818577)} Corner 9560 39001 {normal=(0.612594 0.134303 0.778904)} Corner 9535 39001 {normal=(0.481465 0.00378589 0.876457)} Corner 9535 39002 {normal=(0.481465 0.00378589 0.876457)} Corner 9560 39004 {normal=(0.612594 0.134303 0.778904)} Corner 9884 39007 {normal=(0.736123 0.398545 -0.547069)} Corner 9884 39008 {normal=(0.736123 0.398545 -0.547069)} Corner 9560 39011 {normal=(0.612594 0.134303 0.778904)} Corner 9560 39012 {normal=(0.612594 0.134303 0.778904)} Corner 9297 39017 {normal=(0.323791 0.18847 -0.927167)} Corner 9363 39019 {normal=(0.408748 0.364769 -0.836582)} Corner 9363 39020 {normal=(0.408748 0.364769 -0.836582)} Corner 9297 39020 {normal=(0.323791 0.18847 -0.927167)} Corner 5491 39021 {normal=(-0.32368 -0.633194 -0.703062)} Corner 5494 39021 {normal=(-0.32368 -0.633194 -0.703062)} Corner 5494 39022 {normal=(-0.32368 -0.633194 -0.703062)} Corner 7328 39022 {normal=(-0.301679 -0.60874 -0.733775)} Corner 7328 39023 {normal=(-0.301679 -0.60874 -0.733775)} Corner 7250 39023 {normal=(-0.31112 -0.619302 -0.720881)} Corner 7250 39024 {normal=(-0.31112 -0.619302 -0.720881)} Corner 5491 39024 {normal=(-0.32368 -0.633194 -0.703062)} Corner 5502 39034 {normal=(2.34801e-09 0.357617 -0.933868)} Corner 5502 39035 {normal=(2.34801e-09 0.357617 -0.933868)} Corner 7229 39035 {normal=(0.13043 0.357426 -0.924789)} Corner 7229 39036 {normal=(0.13043 0.357426 -0.924789)} Corner 8614 39037 {normal=(0.335349 0.342608 -0.877588)} Corner 9382 39037 {normal=(0.601774 0.322128 -0.730823)} Corner 9382 39038 {normal=(0.601774 0.322128 -0.730823)} Corner 8614 39040 {normal=(0.335349 0.342608 -0.877588)} Corner 9466 39049 {normal=(0.542388 0.164038 0.823958)} Corner 9576 39051 {normal=(0.878715 0.225037 0.420973)} Corner 9576 39052 {normal=(0.878715 0.225037 0.420973)} Corner 9466 39052 {normal=(0.542388 0.164038 0.823958)} Corner 5596 39053 {normal=(-0.89887 -0.350427 0.263122)} Corner 5492 39053 {normal=(-0.866638 -0.47336 0.157698)} Corner 5492 39054 {normal=(-0.866638 -0.47336 0.157698)} Corner 5490 39054 {normal=(-0.901058 -0.428475 0.0671156)} Corner 5490 39055 {normal=(-0.901058 -0.428475 0.0671156)} Corner 5741 39055 {normal=(-0.947636 -0.304113 0.0974719)} Corner 5741 39056 {normal=(-0.947636 -0.304113 0.0974719)} Corner 5596 39056 {normal=(-0.89887 -0.350427 0.263122)} Corner 5495 39057 {normal=(2.20046e-09 -0.395188 0.9186)} Corner 6426 39057 {normal=(0.0975141 -0.410504 0.90663)} Corner 6426 39058 {normal=(0.0975141 -0.410504 0.90663)} Corner 5495 39060 {normal=(2.20046e-09 -0.395188 0.9186)} Corner 9436 39061 {normal=(0.394128 0.0946903 0.914165)} Corner 9560 39063 {normal=(0.221677 -0.0375739 0.974396)} Corner 9560 39064 {normal=(0.221677 -0.0375739 0.974396)} Corner 9436 39064 {normal=(0.394128 0.0946903 0.914165)} Corner 8489 39073 {normal=(0.511872 0.0738754 0.855879)} Corner 7217 39073 {normal=(0.281157 0.0446223 0.958624)} Corner 7217 39074 {normal=(0.281157 0.0446223 0.958624)} Corner 8489 39076 {normal=(0.511872 0.0738754 0.855879)} Corner 5710 39077 {normal=(-0.975171 -0.0963855 0.199378)} Corner 5596 39078 {normal=(-0.89887 -0.350427 0.263122)} Corner 5596 39079 {normal=(-0.89887 -0.350427 0.263122)} Corner 5741 39079 {normal=(-0.947636 -0.304113 0.0974719)} Corner 5741 39080 {normal=(-0.947636 -0.304113 0.0974719)} Corner 5710 39080 {normal=(-0.975171 -0.0963855 0.199378)} Corner 9592 39085 {normal=(-0.179864 -0.0737284 0.980925)} Corner 9592 39086 {normal=(-0.179864 -0.0737284 0.980925)} Corner 9510 39086 {normal=(-0.144853 -0.0872991 0.985594)} Corner 9510 39087 {normal=(-0.144853 -0.0872991 0.985594)} Corner 9510 39089 {normal=(0.412836 0.0245384 0.910475)} Corner 9592 39089 {normal=(0.43261 0.0472125 0.900344)} Corner 9592 39090 {normal=(0.43261 0.0472125 0.900344)} Corner 9510 39092 {normal=(0.412836 0.0245384 0.910475)} Corner 10066 39097 {normal=(0.879041 0.328372 -0.345629)} Corner 10210 39097 {normal=(0.814749 0.476471 -0.330393)} Corner 10210 39098 {normal=(0.814749 0.476471 -0.330393)} Corner 10067 39098 {normal=(0.814627 0.477958 -0.328541)} Corner 10067 39099 {normal=(0.814627 0.477958 -0.328541)} Corner 9884 39099 {normal=(0.736123 0.398545 -0.547069)} Corner 9884 39100 {normal=(0.736123 0.398545 -0.547069)} Corner 10066 39100 {normal=(0.879041 0.328372 -0.345629)} Corner 9884 39102 {normal=(0.736123 0.398545 -0.547069)} Corner 9884 39103 {normal=(0.736123 0.398545 -0.547069)} Corner 10014 39103 {normal=(0.602655 0.540177 -0.58738)} Corner 10014 39104 {normal=(0.602655 0.540177 -0.58738)} Corner 9682 39105 {normal=(0.585382 -0.100991 0.804443)} Corner 9682 39106 {normal=(0.585382 -0.100991 0.804443)} Corner 9481 39106 {normal=(0.388515 -0.192574 0.901094)} Corner 9481 39107 {normal=(0.388515 -0.192574 0.901094)} Corner 9481 39110 {normal=(0.466976 -0.0365867 0.883513)} Corner 9481 39111 {normal=(0.466976 -0.0365867 0.883513)} Corner 9174 39111 {normal=(0.215044 0.0403984 0.975768)} Corner 9174 39112 {normal=(0.215044 0.0403984 0.975768)} Corner 5524 39113 {normal=(0 0.0352256 -0.999379)} Corner 7093 39113 {normal=(0.19233 0.0563699 -0.97971)} Corner 7093 39114 {normal=(0.19233 0.0563699 -0.97971)} Corner 5524 39116 {normal=(0 0.0352256 -0.999379)} Corner 7093 39117 {normal=(0.19233 0.0563699 -0.97971)} Corner 7093 39118 {normal=(0.19233 0.0563699 -0.97971)} Corner 9345 39118 {normal=(0.362049 0.0782299 -0.928871)} Corner 9345 39119 {normal=(0.362049 0.0782299 -0.928871)} Corner 9260 39119 {normal=(0.381727 0.0765036 -0.921103)} Corner 9260 39120 {normal=(0.381727 0.0765036 -0.921103)} Corner 792 39129 {normal=(-0.378625 -0.91251 0.154821)} Corner 679 39129 {normal=(-0.443806 -0.893066 -0.0739529)} Corner 679 39130 {normal=(-0.443806 -0.893066 -0.0739529)} Corner 939 39130 {normal=(-0.399457 -0.914021 0.0707083)} Corner 939 39131 {normal=(-0.399457 -0.914021 0.0707083)} Corner 1101 39131 {normal=(-0.287142 -0.90779 0.305725)} Corner 1101 39132 {normal=(-0.287142 -0.90779 0.305725)} Corner 792 39132 {normal=(-0.378625 -0.91251 0.154821)} Corner 502 39133 {normal=(-0.946667 -0.165092 0.276705)} Corner 502 39134 {normal=(-0.946667 -0.165092 0.276705)} Corner 679 39134 {normal=(-0.906912 -0.338567 0.250765)} Corner 679 39135 {normal=(-0.906912 -0.338567 0.250765)} Corner 792 39135 {normal=(-0.837249 -0.378955 0.394217)} Corner 792 39136 {normal=(-0.837249 -0.378955 0.394217)} Corner 631 39137 {normal=(-0.94523 0.14926 0.29028)} Corner 631 39138 {normal=(-0.94523 0.14926 0.29028)} Corner 502 39138 {normal=(-0.946667 -0.165092 0.276705)} Corner 502 39139 {normal=(-0.946667 -0.165092 0.276705)} Corner 831 39141 {normal=(-0.913715 0.305066 0.26844)} Corner 831 39142 {normal=(-0.913715 0.305066 0.26844)} Corner 631 39142 {normal=(-0.94523 0.14926 0.29028)} Corner 631 39143 {normal=(-0.94523 0.14926 0.29028)} Corner 975 39145 {normal=(-0.947808 0.217501 0.233139)} Corner 975 39146 {normal=(-0.947808 0.217501 0.233139)} Corner 831 39146 {normal=(-0.913715 0.305066 0.26844)} Corner 831 39147 {normal=(-0.913715 0.305066 0.26844)} Corner 3202 39149 {normal=(0.52363 -0.834479 0.171631)} Corner 3659 39149 {normal=(0.52363 -0.834479 0.171631)} Corner 3659 39150 {normal=(0.52363 -0.834479 0.171631)} Corner 4723 39150 {normal=(0.758099 -0.608837 0.233671)} Corner 4723 39151 {normal=(0.758099 -0.608837 0.233671)} Corner 4196 39151 {normal=(0.813916 -0.525529 0.247709)} Corner 4196 39152 {normal=(0.813916 -0.525529 0.247709)} Corner 3202 39152 {normal=(0.52363 -0.834479 0.171631)} Corner 3926 39153 {normal=(0.523614 -0.627113 0.576678)} Corner 1679 39154 {normal=(0.199753 -0.876444 0.438115)} Corner 1679 39155 {normal=(0.199753 -0.876444 0.438115)} Corner 2736 39155 {normal=(0.331964 -0.857713 0.392592)} Corner 2736 39156 {normal=(0.331964 -0.857713 0.392592)} Corner 3926 39156 {normal=(0.523614 -0.627113 0.576678)} Corner 1012 39157 {normal=(-0.394964 -0.864951 -0.309618)} Corner 939 39157 {normal=(-0.472212 -0.872108 -0.128232)} Corner 939 39158 {normal=(-0.472212 -0.872108 -0.128232)} Corner 675 39158 {normal=(-0.483685 -0.874025 0.0461481)} Corner 675 39159 {normal=(-0.483685 -0.874025 0.0461481)} Corner 862 39159 {normal=(-0.39653 -0.865229 -0.306826)} Corner 862 39160 {normal=(-0.39653 -0.865229 -0.306826)} Corner 1012 39160 {normal=(-0.394964 -0.864951 -0.309618)} Corner 936 39161 {normal=(-0.483984 -0.841711 -0.239337)} Corner 1070 39161 {normal=(-0.293358 -0.854414 -0.428856)} Corner 1070 39162 {normal=(-0.293358 -0.854414 -0.428856)} Corner 1153 39162 {normal=(-0.290827 -0.85451 -0.430386)} Corner 1153 39163 {normal=(-0.290827 -0.85451 -0.430386)} Corner 1053 39163 {normal=(-0.531985 -0.828818 -0.173356)} Corner 1053 39164 {normal=(-0.531985 -0.828818 -0.173356)} Corner 936 39164 {normal=(-0.483984 -0.841711 -0.239337)} Corner 1465 39165 {normal=(0.0640179 -0.877756 0.474812)} Corner 1679 39165 {normal=(0.199753 -0.876444 0.438115)} Corner 1679 39166 {normal=(0.199753 -0.876444 0.438115)} Corner 1376 39167 {normal=(0.102895 -0.695742 0.710884)} Corner 1376 39168 {normal=(0.102895 -0.695742 0.710884)} Corner 1465 39168 {normal=(0.0640179 -0.877756 0.474812)} Corner 1260 39169 {normal=(-0.200618 -0.886834 0.416266)} Corner 944 39169 {normal=(-0.284411 -0.895958 0.34113)} Corner 944 39170 {normal=(-0.284411 -0.895958 0.34113)} Corner 1101 39170 {normal=(-0.287142 -0.90779 0.305725)} Corner 1101 39171 {normal=(-0.287142 -0.90779 0.305725)} Corner 1327 39171 {normal=(-0.200618 -0.886834 0.416266)} Corner 1327 39172 {normal=(-0.200618 -0.886834 0.416266)} Corner 1260 39172 {normal=(-0.200618 -0.886834 0.416266)} Corner 1376 39173 {normal=(-0.509163 -0.696929 0.505018)} Corner 1345 39173 {normal=(-0.508999 -0.413546 0.754917)} Corner 1345 39174 {normal=(-0.508999 -0.413546 0.754917)} Corner 1286 39174 {normal=(-0.505944 -0.389837 0.769446)} Corner 1286 39175 {normal=(-0.505944 -0.389837 0.769446)} Corner 1325 39175 {normal=(-0.511247 -0.682689 0.522074)} Corner 1325 39176 {normal=(-0.511247 -0.682689 0.522074)} Corner 1376 39176 {normal=(-0.509163 -0.696929 0.505018)} Corner 1325 39177 {normal=(0.372789 -0.648275 0.663904)} Corner 1286 39177 {normal=(0.249815 -0.436356 0.864399)} Corner 1286 39178 {normal=(0.249815 -0.436356 0.864399)} Corner 1227 39178 {normal=(0.258436 -0.457439 0.850859)} Corner 1227 39179 {normal=(0.258436 -0.457439 0.850859)} Corner 1260 39179 {normal=(0.373527 -0.649391 0.662397)} Corner 1260 39180 {normal=(0.373527 -0.649391 0.662397)} Corner 1325 39180 {normal=(0.372789 -0.648275 0.663904)} Corner 2318 39181 {normal=(0.161808 0.0720115 0.984191)} Corner 1951 39181 {normal=(-0.155356 0.0902539 0.983727)} Corner 1951 39182 {normal=(-0.155356 0.0902539 0.983727)} Corner 2098 39183 {normal=(0.145076 0.0497699 0.988168)} Corner 2098 39184 {normal=(0.145076 0.0497699 0.988168)} Corner 2318 39184 {normal=(0.161808 0.0720115 0.984191)} Corner 1663 39193 {normal=(-0.601774 0.322128 -0.730823)} Corner 1647 39195 {normal=(-0.561629 0.298281 -0.771752)} Corner 1647 39196 {normal=(-0.561629 0.298281 -0.771752)} Corner 1663 39196 {normal=(-0.601774 0.322128 -0.730823)} Corner 1647 39197 {normal=(-0.561629 0.298281 -0.771752)} Corner 1627 39199 {normal=(-0.506298 0.271281 -0.818577)} Corner 1627 39200 {normal=(-0.506298 0.271281 -0.818577)} Corner 1647 39200 {normal=(-0.561629 0.298281 -0.771752)} Corner 1375 39201 {normal=(-0.958797 0.232667 -0.163017)} Corner 1375 39202 {normal=(-0.958797 0.232667 -0.163017)} Corner 1421 39202 {normal=(-0.963254 0.268353 0.0113599)} Corner 1421 39203 {normal=(-0.963254 0.268353 0.0113599)} Corner 1421 39205 {normal=(-0.963254 0.268353 0.0113599)} Corner 1421 39206 {normal=(-0.963254 0.268353 0.0113599)} Corner 1377 39206 {normal=(-0.947089 0.284867 0.147895)} Corner 1377 39207 {normal=(-0.947089 0.284867 0.147895)} Corner 2098 39210 {normal=(-0.610625 0.0321185 0.791269)} Corner 2098 39211 {normal=(-0.610625 0.0321185 0.791269)} Corner 2374 39211 {normal=(-0.476997 -0.213336 0.85262)} Corner 2374 39212 {normal=(-0.476997 -0.213336 0.85262)} Corner 2374 39213 {normal=(0.213802 -0.0586599 0.975114)} Corner 2098 39213 {normal=(0.145076 0.0497699 0.988168)} Corner 2098 39214 {normal=(0.145076 0.0497699 0.988168)} Corner 2374 39216 {normal=(0.213802 -0.0586599 0.975114)} Corner 1579 39217 {normal=(-0.542388 0.164038 0.823958)} Corner 1580 39218 {normal=(-0.29555 0.178968 0.938414)} Corner 1580 39219 {normal=(-0.29555 0.178968 0.938414)} Corner 1625 39219 {normal=(-0.258422 0.118779 0.958702)} Corner 1625 39220 {normal=(-0.258422 0.118779 0.958702)} Corner 1579 39220 {normal=(-0.542388 0.164038 0.823958)} Corner 1625 39221 {normal=(-0.904154 0.128799 0.407329)} Corner 1580 39221 {normal=(-0.848206 0.210649 0.485978)} Corner 1580 39222 {normal=(-0.848206 0.210649 0.485978)} Corner 1609 39222 {normal=(-0.849933 0.208434 0.48391)} Corner 1609 39223 {normal=(-0.849933 0.208434 0.48391)} Corner 1635 39223 {normal=(-0.904154 0.128799 0.407329)} Corner 1635 39224 {normal=(-0.904154 0.128799 0.407329)} Corner 1625 39224 {normal=(-0.904154 0.128799 0.407329)} Corner 2098 39225 {normal=(-0.610625 0.0321185 0.791269)} Corner 2555 39226 {normal=(-0.511872 0.0738754 0.855879)} Corner 2555 39227 {normal=(-0.511872 0.0738754 0.855879)} Corner 2318 39227 {normal=(-0.676588 0.0929373 0.730473)} Corner 2318 39228 {normal=(-0.676588 0.0929373 0.730473)} Corner 2098 39228 {normal=(-0.610625 0.0321185 0.791269)} Corner 3860 39230 {normal=(-0.402661 -0.0948428 0.910422)} Corner 3860 39231 {normal=(-0.402661 -0.0948428 0.910422)} Corner 4064 39231 {normal=(-0.351042 -0.245925 0.903488)} Corner 4064 39232 {normal=(-0.351042 -0.245925 0.903488)} Corner 4064 39233 {normal=(0.36521 -0.163441 0.916465)} Corner 3860 39233 {normal=(0.271327 -0.0673664 0.960127)} Corner 3860 39234 {normal=(0.271327 -0.0673664 0.960127)} Corner 4064 39236 {normal=(0.36521 -0.163441 0.916465)} Corner 4621 39237 {normal=(-0.0975141 -0.410504 0.90663)} Corner 4064 39238 {normal=(-0.351042 -0.245925 0.903488)} Corner 4064 39239 {normal=(-0.351042 -0.245925 0.903488)} Corner 4277 39239 {normal=(-0.152306 -0.41772 0.895719)} Corner 4277 39240 {normal=(-0.152306 -0.41772 0.895719)} Corner 4621 39240 {normal=(-0.0975141 -0.410504 0.90663)} Corner 4277 39241 {normal=(0.469538 -0.254997 0.845287)} Corner 4064 39241 {normal=(0.36521 -0.163441 0.916465)} Corner 4064 39242 {normal=(0.36521 -0.163441 0.916465)} Corner 4277 39244 {normal=(0.469538 -0.254997 0.845287)} Corner 4780 39245 {normal=(-0.00730278 -0.485786 0.874047)} Corner 4621 39245 {normal=(-0.0975141 -0.410504 0.90663)} Corner 4621 39246 {normal=(-0.0975141 -0.410504 0.90663)} Corner 4277 39246 {normal=(-0.152306 -0.41772 0.895719)} Corner 4277 39247 {normal=(-0.152306 -0.41772 0.895719)} Corner 4426 39247 {normal=(-0.00730278 -0.485786 0.874047)} Corner 4426 39248 {normal=(-0.00730278 -0.485786 0.874047)} Corner 4780 39248 {normal=(-0.00730278 -0.485786 0.874047)} Corner 4426 39249 {normal=(0.513577 -0.170239 0.840986)} Corner 4277 39249 {normal=(0.469538 -0.254997 0.845287)} Corner 4277 39250 {normal=(0.469538 -0.254997 0.845287)} Corner 4426 39252 {normal=(0.513577 -0.170239 0.840986)} Corner 4336 39253 {normal=(-0.0816025 -0.656663 0.749757)} Corner 3699 39254 {normal=(-0.28024 -0.614657 0.737335)} Corner 3699 39255 {normal=(-0.28024 -0.614657 0.737335)} Corner 4281 39255 {normal=(-0.196305 -0.727873 0.657012)} Corner 4281 39256 {normal=(-0.196305 -0.727873 0.657012)} Corner 4336 39256 {normal=(-0.0816025 -0.656663 0.749757)} Corner 4281 39257 {normal=(0.662786 0.0799746 0.744526)} Corner 3699 39257 {normal=(0.452395 -0.0932294 0.886931)} Corner 3699 39258 {normal=(0.452395 -0.0932294 0.886931)} Corner 4281 39260 {normal=(0.662786 0.0799746 0.744526)} Corner 2374 39262 {normal=(-0.476997 -0.213336 0.85262)} Corner 2374 39263 {normal=(-0.476997 -0.213336 0.85262)} Corner 2950 39263 {normal=(-0.380741 -0.434119 0.816441)} Corner 2950 39264 {normal=(-0.380741 -0.434119 0.816441)} Corner 2950 39265 {normal=(0.505111 -0.0993584 0.857316)} Corner 2374 39265 {normal=(0.213802 -0.0586599 0.975114)} Corner 2374 39266 {normal=(0.213802 -0.0586599 0.975114)} Corner 2950 39268 {normal=(0.505111 -0.0993584 0.857316)} Corner 2950 39270 {normal=(-0.380741 -0.434119 0.816441)} Corner 2950 39271 {normal=(-0.380741 -0.434119 0.816441)} Corner 3699 39271 {normal=(-0.28024 -0.614657 0.737335)} Corner 3699 39272 {normal=(-0.28024 -0.614657 0.737335)} Corner 3699 39273 {normal=(0.452395 -0.0932294 0.886931)} Corner 2950 39273 {normal=(0.505111 -0.0993584 0.857316)} Corner 2950 39274 {normal=(0.505111 -0.0993584 0.857316)} Corner 3699 39276 {normal=(0.452395 -0.0932294 0.886931)} Corner 4336 39285 {normal=(-0.0816025 -0.656663 0.749757)} Corner 4398 39285 {normal=(0.293885 -0.302135 0.906833)} Corner 4398 39286 {normal=(0.293885 -0.302135 0.906833)} Corner 4336 39288 {normal=(-0.0816025 -0.656663 0.749757)} Corner 5299 39289 {normal=(0.747292 0.110939 -0.65517)} Corner 5324 39289 {normal=(0.792969 0.143982 -0.592005)} Corner 5324 39290 {normal=(0.792969 0.143982 -0.592005)} Corner 5126 39290 {normal=(0.795602 0.145988 -0.587967)} Corner 5126 39291 {normal=(0.795602 0.145988 -0.587967)} Corner 5006 39291 {normal=(0.747292 0.110939 -0.65517)} Corner 5006 39292 {normal=(0.747292 0.110939 -0.65517)} Corner 5299 39292 {normal=(0.747292 0.110939 -0.65517)} Corner 5006 39293 {normal=(0.905586 -0.108628 0.410016)} Corner 5126 39293 {normal=(0.898863 -0.0746802 0.431819)} Corner 5126 39294 {normal=(0.898863 -0.0746802 0.431819)} Corner 5284 39294 {normal=(0.897761 -0.0805482 0.433056)} Corner 5284 39295 {normal=(0.897761 -0.0805482 0.433056)} Corner 5156 39295 {normal=(0.848628 -0.379788 0.368228)} Corner 5156 39296 {normal=(0.848628 -0.379788 0.368228)} Corner 5006 39296 {normal=(0.905586 -0.108628 0.410016)} Corner 5308 39297 {normal=(0.872877 -0.15971 0.461062)} Corner 5284 39297 {normal=(0.897761 -0.0805482 0.433056)} Corner 5284 39298 {normal=(0.897761 -0.0805482 0.433056)} Corner 5126 39298 {normal=(0.898863 -0.0746802 0.431819)} Corner 5126 39299 {normal=(0.898863 -0.0746802 0.431819)} Corner 5139 39299 {normal=(0.872944 -0.159619 0.460966)} Corner 5139 39300 {normal=(0.872944 -0.159619 0.460966)} Corner 5308 39300 {normal=(0.872877 -0.15971 0.461062)} Corner 5139 39301 {normal=(0.8513 0.147517 -0.503515)} Corner 5126 39301 {normal=(0.795602 0.145988 -0.587967)} Corner 5126 39302 {normal=(0.795602 0.145988 -0.587967)} Corner 5324 39302 {normal=(0.792969 0.143982 -0.592005)} Corner 5324 39303 {normal=(0.792969 0.143982 -0.592005)} Corner 5317 39303 {normal=(0.851198 0.147723 -0.503626)} Corner 5317 39304 {normal=(0.851198 0.147723 -0.503626)} Corner 5139 39304 {normal=(0.8513 0.147517 -0.503515)} Corner 5317 39305 {normal=(0.851198 0.147723 -0.503626)} Corner 5215 39305 {normal=(0.858991 -0.0189928 -0.511638)} Corner 5215 39306 {normal=(0.858991 -0.0189928 -0.511638)} Corner 5052 39306 {normal=(0.858937 -0.0194851 -0.511711)} Corner 5052 39307 {normal=(0.858937 -0.0194851 -0.511711)} Corner 5139 39307 {normal=(0.8513 0.147517 -0.503515)} Corner 5139 39308 {normal=(0.8513 0.147517 -0.503515)} Corner 5317 39308 {normal=(0.851198 0.147723 -0.503626)} Corner 5139 39309 {normal=(0.872944 -0.159619 0.460966)} Corner 5052 39309 {normal=(0.847791 -0.245294 0.470193)} Corner 5052 39310 {normal=(0.847791 -0.245294 0.470193)} Corner 5230 39310 {normal=(0.847753 -0.245455 0.470177)} Corner 5230 39311 {normal=(0.847753 -0.245455 0.470177)} Corner 5308 39311 {normal=(0.872877 -0.15971 0.461062)} Corner 5308 39312 {normal=(0.872877 -0.15971 0.461062)} Corner 5139 39312 {normal=(0.872944 -0.159619 0.460966)} Corner 4686 39313 {normal=(0.746449 -0.485579 0.455003)} Corner 5230 39313 {normal=(0.847753 -0.245455 0.470177)} Corner 5230 39314 {normal=(0.847753 -0.245455 0.470177)} Corner 5052 39314 {normal=(0.847791 -0.245294 0.470193)} Corner 5052 39315 {normal=(0.847791 -0.245294 0.470193)} Corner 4453 39315 {normal=(0.766417 -0.624961 0.148422)} Corner 4453 39316 {normal=(0.766417 -0.624961 0.148422)} Corner 4686 39316 {normal=(0.746449 -0.485579 0.455003)} Corner 4453 39317 {normal=(0.83566 -0.155086 -0.526898)} Corner 5052 39317 {normal=(0.858937 -0.0194851 -0.511711)} Corner 5052 39318 {normal=(0.858937 -0.0194851 -0.511711)} Corner 5215 39318 {normal=(0.858991 -0.0189928 -0.511638)} Corner 5215 39319 {normal=(0.858991 -0.0189928 -0.511638)} Corner 4723 39319 {normal=(0.83566 -0.155086 -0.526898)} Corner 4723 39320 {normal=(0.83566 -0.155086 -0.526898)} Corner 4453 39320 {normal=(0.83566 -0.155086 -0.526898)} Corner 2683 39321 {normal=(0.0916315 0.359019 -0.928821)} Corner 2514 39321 {normal=(0.115565 0.318539 -0.940839)} Corner 2514 39322 {normal=(0.115565 0.318539 -0.940839)} Corner 2020 39322 {normal=(0.115565 0.318539 -0.940839)} Corner 2020 39323 {normal=(0.115565 0.318539 -0.940839)} Corner 2267 39323 {normal=(0.0990406 0.346617 -0.932764)} Corner 2267 39324 {normal=(0.0990406 0.346617 -0.932764)} Corner 2683 39324 {normal=(0.0916315 0.359019 -0.928821)} Corner 2267 39325 {normal=(0.908496 0.0395806 -0.416014)} Corner 2020 39325 {normal=(0.88691 -0.125195 -0.444653)} Corner 2020 39326 {normal=(0.88691 -0.125195 -0.444653)} Corner 1781 39326 {normal=(0.88687 -0.125464 -0.444658)} Corner 1781 39327 {normal=(0.88687 -0.125464 -0.444658)} Corner 2066 39327 {normal=(0.906175 0.0466901 -0.420318)} Corner 2066 39328 {normal=(0.906175 0.0466901 -0.420318)} Corner 2267 39328 {normal=(0.908496 0.0395806 -0.416014)} Corner 2514 39329 {normal=(0.0350127 -0.419273 -0.907185)} Corner 2179 39329 {normal=(0.0126335 -0.53062 -0.847516)} Corner 2179 39330 {normal=(0.0126335 -0.53062 -0.847516)} Corner 1755 39330 {normal=(0.00619564 -0.560856 -0.82789)} Corner 1755 39331 {normal=(0.00619564 -0.560856 -0.82789)} Corner 2020 39331 {normal=(0.0350127 -0.419273 -0.907185)} Corner 2020 39332 {normal=(0.0350127 -0.419273 -0.907185)} Corner 2514 39332 {normal=(0.0350127 -0.419273 -0.907185)} Corner 2020 39333 {normal=(0.88691 -0.125195 -0.444653)} Corner 1755 39333 {normal=(0.785594 -0.477794 -0.393136)} Corner 1755 39334 {normal=(0.785594 -0.477794 -0.393136)} Corner 1704 39334 {normal=(0.816438 -0.398793 -0.417604)} Corner 1704 39335 {normal=(0.816438 -0.398793 -0.417604)} Corner 1781 39335 {normal=(0.88687 -0.125464 -0.444658)} Corner 1781 39336 {normal=(0.88687 -0.125464 -0.444658)} Corner 2020 39336 {normal=(0.88691 -0.125195 -0.444653)} Corner 979 39337 {normal=(-0.905069 0.138333 0.402137)} Corner 835 39337 {normal=(-0.865629 0.240834 0.438959)} Corner 835 39338 {normal=(-0.865629 0.240834 0.438959)} Corner 847 39338 {normal=(-0.865307 0.241862 0.43903)} Corner 847 39339 {normal=(-0.865307 0.241862 0.43903)} Corner 996 39339 {normal=(-0.908349 0.12742 0.39833)} Corner 996 39340 {normal=(-0.908349 0.12742 0.39833)} Corner 979 39340 {normal=(-0.905069 0.138333 0.402137)} Corner 996 39341 {normal=(-0.84254 0.358545 -0.401959)} Corner 847 39341 {normal=(-0.821961 0.453125 -0.345047)} Corner 847 39342 {normal=(-0.821961 0.453125 -0.345047)} Corner 831 39342 {normal=(-0.821606 0.45191 -0.347478)} Corner 831 39343 {normal=(-0.821606 0.45191 -0.347478)} Corner 975 39343 {normal=(-0.857843 0.318145 -0.403595)} Corner 975 39344 {normal=(-0.857843 0.318145 -0.403595)} Corner 996 39344 {normal=(-0.84254 0.358545 -0.401959)} Corner 631 39345 {normal=(-0.89262 0.352892 -0.280529)} Corner 831 39345 {normal=(-0.821606 0.45191 -0.347478)} Corner 831 39346 {normal=(-0.821606 0.45191 -0.347478)} Corner 847 39346 {normal=(-0.821961 0.453125 -0.345047)} Corner 847 39347 {normal=(-0.821961 0.453125 -0.345047)} Corner 668 39347 {normal=(-0.892355 0.353499 -0.280607)} Corner 668 39348 {normal=(-0.892355 0.353499 -0.280607)} Corner 631 39348 {normal=(-0.89262 0.352892 -0.280529)} Corner 668 39349 {normal=(-0.904618 0.133543 0.404763)} Corner 847 39349 {normal=(-0.865307 0.241862 0.43903)} Corner 847 39350 {normal=(-0.865307 0.241862 0.43903)} Corner 835 39350 {normal=(-0.865629 0.240834 0.438959)} Corner 835 39351 {normal=(-0.865629 0.240834 0.438959)} Corner 637 39351 {normal=(-0.905236 0.131584 0.404022)} Corner 637 39352 {normal=(-0.905236 0.131584 0.404022)} Corner 668 39352 {normal=(-0.904618 0.133543 0.404763)} Corner 637 39353 {normal=(-0.905236 0.131584 0.404022)} Corner 485 39353 {normal=(-0.920947 -0.138791 0.364133)} Corner 485 39354 {normal=(-0.920947 -0.138791 0.364133)} Corner 547 39354 {normal=(-0.920671 -0.140874 0.364031)} Corner 547 39355 {normal=(-0.920671 -0.140874 0.364031)} Corner 668 39355 {normal=(-0.904618 0.133543 0.404763)} Corner 668 39356 {normal=(-0.904618 0.133543 0.404763)} Corner 637 39356 {normal=(-0.905236 0.131584 0.404022)} Corner 668 39357 {normal=(-0.892355 0.353499 -0.280607)} Corner 547 39357 {normal=(-0.949901 -0.00754863 -0.312459)} Corner 547 39358 {normal=(-0.949901 -0.00754863 -0.312459)} Corner 502 39358 {normal=(-0.950235 -0.00244487 -0.311525)} Corner 502 39359 {normal=(-0.950235 -0.00244487 -0.311525)} Corner 631 39359 {normal=(-0.89262 0.352892 -0.280529)} Corner 631 39360 {normal=(-0.89262 0.352892 -0.280529)} Corner 668 39360 {normal=(-0.892355 0.353499 -0.280607)} Corner 679 39361 {normal=(-0.907933 -0.23706 -0.345629)} Corner 502 39361 {normal=(-0.950235 -0.00244487 -0.311525)} Corner 502 39362 {normal=(-0.950235 -0.00244487 -0.311525)} Corner 547 39362 {normal=(-0.949901 -0.00754863 -0.312459)} Corner 547 39363 {normal=(-0.949901 -0.00754863 -0.312459)} Corner 708 39363 {normal=(-0.907933 -0.23706 -0.345629)} Corner 708 39364 {normal=(-0.907933 -0.23706 -0.345629)} Corner 679 39364 {normal=(-0.907933 -0.23706 -0.345629)} Corner 708 39365 {normal=(-0.881972 -0.316367 0.349338)} Corner 547 39365 {normal=(-0.920671 -0.140874 0.364031)} Corner 547 39366 {normal=(-0.920671 -0.140874 0.364031)} Corner 485 39366 {normal=(-0.920947 -0.138791 0.364133)} Corner 485 39367 {normal=(-0.920947 -0.138791 0.364133)} Corner 675 39367 {normal=(-0.881972 -0.316367 0.349338)} Corner 675 39368 {normal=(-0.881972 -0.316367 0.349338)} Corner 708 39368 {normal=(-0.881972 -0.316367 0.349338)} Corner 859 39369 {normal=(-0.453999 0.417392 -0.787191)} Corner 978 39369 {normal=(-0.365068 0.436305 -0.822413)} Corner 978 39370 {normal=(-0.365068 0.436305 -0.822413)} Corner 1030 39370 {normal=(-0.363729 0.449812 -0.815702)} Corner 1030 39371 {normal=(-0.363729 0.449812 -0.815702)} Corner 912 39371 {normal=(-0.451577 0.420052 -0.787169)} Corner 912 39372 {normal=(-0.451577 0.420052 -0.787169)} Corner 859 39372 {normal=(-0.453999 0.417392 -0.787191)} Corner 912 39373 {normal=(-0.959767 0.274011 -0.0613603)} Corner 1030 39373 {normal=(-0.937889 0.341172 0.0629737)} Corner 1030 39374 {normal=(-0.937889 0.341172 0.0629737)} Corner 1031 39374 {normal=(-0.938019 0.340957 0.0622053)} Corner 1031 39375 {normal=(-0.938019 0.340957 0.0622053)} Corner 923 39375 {normal=(-0.960109 0.272181 -0.0640933)} Corner 923 39376 {normal=(-0.960109 0.272181 -0.0640933)} Corner 912 39376 {normal=(-0.959767 0.274011 -0.0613603)} Corner 923 39377 {normal=(-0.960109 0.272181 -0.0640933)} Corner 876 39377 {normal=(-0.965489 0.214311 -0.14799)} Corner 876 39378 {normal=(-0.965489 0.214311 -0.14799)} Corner 853 39378 {normal=(-0.965489 0.214311 -0.14799)} Corner 853 39379 {normal=(-0.965489 0.214311 -0.14799)} Corner 912 39379 {normal=(-0.959767 0.274011 -0.0613603)} Corner 912 39380 {normal=(-0.959767 0.274011 -0.0613603)} Corner 923 39380 {normal=(-0.960109 0.272181 -0.0640933)} Corner 912 39381 {normal=(-0.451577 0.420052 -0.787169)} Corner 853 39381 {normal=(-0.539029 0.315708 -0.780882)} Corner 853 39382 {normal=(-0.539029 0.315708 -0.780882)} Corner 794 39382 {normal=(-0.539029 0.315708 -0.780882)} Corner 794 39383 {normal=(-0.539029 0.315708 -0.780882)} Corner 859 39383 {normal=(-0.453999 0.417392 -0.787191)} Corner 859 39384 {normal=(-0.453999 0.417392 -0.787191)} Corner 912 39384 {normal=(-0.451577 0.420052 -0.787169)} Corner 862 39385 {normal=(-0.530484 -0.344303 -0.774624)} Corner 794 39385 {normal=(-0.530484 -0.344303 -0.774624)} Corner 794 39386 {normal=(-0.530484 -0.344303 -0.774624)} Corner 853 39386 {normal=(-0.794551 -0.347849 -0.497685)} Corner 853 39387 {normal=(-0.794551 -0.347849 -0.497685)} Corner 921 39387 {normal=(-0.775165 -0.349656 -0.526174)} Corner 921 39388 {normal=(-0.775165 -0.349656 -0.526174)} Corner 862 39388 {normal=(-0.530484 -0.344303 -0.774624)} Corner 921 39389 {normal=(-0.775165 -0.349656 -0.526174)} Corner 853 39389 {normal=(-0.794551 -0.347849 -0.497685)} Corner 853 39390 {normal=(-0.794551 -0.347849 -0.497685)} Corner 876 39390 {normal=(-0.932057 -0.308344 -0.190247)} Corner 876 39391 {normal=(-0.932057 -0.308344 -0.190247)} Corner 936 39391 {normal=(-0.932057 -0.308344 -0.190247)} Corner 936 39392 {normal=(-0.932057 -0.308344 -0.190247)} Corner 921 39392 {normal=(-0.775165 -0.349656 -0.526174)} Corner 1232 39393 {normal=(-0.996288 0.0121991 0.0852152)} Corner 1232 39394 {normal=(-0.996288 0.0121991 0.0852152)} Corner 1258 39394 {normal=(-0.99087 0.0395593 -0.128885)} Corner 1258 39395 {normal=(-0.99087 0.0395593 -0.128885)} Corner 1237 39397 {normal=(-0.996349 0.0494732 0.0695765)} Corner 1237 39398 {normal=(-0.996349 0.0494732 0.0695765)} Corner 1232 39398 {normal=(-0.996288 0.0121991 0.0852152)} Corner 1232 39399 {normal=(-0.996288 0.0121991 0.0852152)} Corner 1236 39401 {normal=(-0.991044 0.0398546 0.127451)} Corner 1236 39402 {normal=(-0.991044 0.0398546 0.127451)} Corner 1237 39402 {normal=(-0.996349 0.0494732 0.0695765)} Corner 1237 39403 {normal=(-0.996349 0.0494732 0.0695765)} Corner 1558 39425 {normal=(-0.893073 -0.126857 0.431657)} Corner 1555 39425 {normal=(-0.893329 -0.109836 0.435775)} Corner 1555 39426 {normal=(-0.893329 -0.109836 0.435775)} Corner 1558 39428 {normal=(-0.893073 -0.126857 0.431657)} Corner 1555 39430 {normal=(-0.0569843 -0.268874 0.961488)} Corner 1555 39431 {normal=(-0.0569843 -0.268874 0.961488)} Corner 1558 39431 {normal=(-0.0436158 -0.30832 0.950282)} Corner 1558 39432 {normal=(-0.0436158 -0.30832 0.950282)} Corner 1293 39441 {normal=(-0.996609 0.0527185 -0.0631762)} Corner 1262 39441 {normal=(-0.993745 -0.0814723 0.0763684)} Corner 1262 39442 {normal=(-0.993745 -0.0814723 0.0763684)} Corner 1293 39444 {normal=(-0.996609 0.0527185 -0.0631762)} Corner 1262 39446 {normal=(-0.75663 0.177888 -0.629179)} Corner 1262 39447 {normal=(-0.75663 0.177888 -0.629179)} Corner 1293 39447 {normal=(-0.715571 0.206281 -0.667388)} Corner 1293 39448 {normal=(-0.715571 0.206281 -0.667388)} Corner 1698 39457 {normal=(-0.515614 0.0563988 -0.854963)} Corner 1697 39457 {normal=(-0.407466 0.0163148 -0.913075)} Corner 1697 39458 {normal=(-0.407466 0.0163148 -0.913075)} Corner 1698 39460 {normal=(-0.515614 0.0563988 -0.854963)} Corner 1777 39461 {normal=(0.218376 -0.0499018 -0.974588)} Corner 2058 39461 {normal=(0.247074 -0.0336897 -0.968411)} Corner 2058 39462 {normal=(0.247074 -0.0336897 -0.968411)} Corner 1697 39462 {normal=(0.246281 -0.0341398 -0.968597)} Corner 1697 39463 {normal=(0.246281 -0.0341398 -0.968597)} Corner 1698 39463 {normal=(0.218375 -0.0499018 -0.974588)} Corner 1698 39464 {normal=(0.218375 -0.0499018 -0.974588)} Corner 1777 39464 {normal=(0.218376 -0.0499018 -0.974588)} Corner 1785 39465 {normal=(-0.977057 -0.207442 -0.0482353)} Corner 2102 39465 {normal=(-0.982509 -0.163452 -0.0892148)} Corner 2102 39466 {normal=(-0.982509 -0.163452 -0.0892148)} Corner 2058 39466 {normal=(-0.981999 -0.16925 -0.0838638)} Corner 2058 39467 {normal=(-0.981999 -0.16925 -0.0838638)} Corner 1777 39467 {normal=(-0.977058 -0.207441 -0.0482352)} Corner 1777 39468 {normal=(-0.977058 -0.207441 -0.0482352)} Corner 1785 39468 {normal=(-0.977057 -0.207442 -0.0482353)} Corner 2102 39470 {normal=(-0.43603 0.00679058 -0.899906)} Corner 2102 39471 {normal=(-0.43603 0.00679058 -0.899906)} Corner 1785 39471 {normal=(-0.381727 0.0765036 -0.921103)} Corner 1785 39472 {normal=(-0.381727 0.0765036 -0.921103)} Corner 3606 39477 {normal=(0.157938 0.08247 0.983999)} Corner 3764 39479 {normal=(-0.0953397 0.128786 0.987079)} Corner 3764 39480 {normal=(-0.0953397 0.128786 0.987079)} Corner 3606 39480 {normal=(0.157938 0.08247 0.983999)} Corner 3764 39481 {normal=(-0.0953397 0.128786 0.987079)} Corner 3948 39483 {normal=(-0.213338 0.154984 0.964607)} Corner 3948 39484 {normal=(-0.213338 0.154984 0.964607)} Corner 3764 39484 {normal=(-0.0953397 0.128786 0.987079)} Corner 1369 39485 {normal=(-0.889195 0.183512 -0.419112)} Corner 1351 39487 {normal=(-0.840896 0.193021 -0.505606)} Corner 1351 39488 {normal=(-0.840896 0.193021 -0.505606)} Corner 1369 39488 {normal=(-0.889195 0.183512 -0.419112)} Corner 1351 39489 {normal=(-0.840896 0.193021 -0.505606)} Corner 1293 39490 {normal=(-0.715571 0.206281 -0.667388)} Corner 1293 39491 {normal=(-0.715571 0.206281 -0.667388)} Corner 1338 39491 {normal=(-0.697214 0.191199 -0.690895)} Corner 1338 39492 {normal=(-0.697214 0.191199 -0.690895)} Corner 1351 39492 {normal=(-0.840896 0.193021 -0.505606)} Corner 1528 39493 {normal=(-0.72686 0.171124 -0.665125)} Corner 1549 39493 {normal=(-0.741027 0.167603 -0.650222)} Corner 1549 39494 {normal=(-0.741027 0.167603 -0.650222)} Corner 1528 39496 {normal=(-0.72686 0.171124 -0.665125)} Corner 1549 39497 {normal=(-0.741027 0.167603 -0.650222)} Corner 1572 39497 {normal=(-0.699882 0.107793 -0.706078)} Corner 1572 39498 {normal=(-0.699882 0.107793 -0.706078)} Corner 1549 39500 {normal=(-0.741027 0.167603 -0.650222)} Corner 3948 39501 {normal=(-0.213338 0.154984 0.964607)} Corner 5526 39503 {normal=(-4.9498e-09 0.148524 0.988909)} Corner 5526 39504 {normal=(-4.9498e-09 0.148524 0.988909)} Corner 3948 39504 {normal=(-0.213338 0.154984 0.964607)} Corner 1871 39505 {normal=(-0.215044 0.0403985 0.975768)} Corner 3606 39507 {normal=(0.157938 0.08247 0.983999)} Corner 3606 39508 {normal=(0.157938 0.08247 0.983999)} Corner 1871 39508 {normal=(-0.215044 0.0403985 0.975768)} Corner 1236 39509 {normal=(-0.991044 0.0398546 0.127451)} Corner 1324 39511 {normal=(-0.858953 0.00653118 0.512012)} Corner 1324 39512 {normal=(-0.858953 0.00653118 0.512012)} Corner 1236 39512 {normal=(-0.991044 0.0398546 0.127451)} Corner 1338 39517 {normal=(-0.984651 0.0846602 -0.152628)} Corner 1293 39517 {normal=(-0.996609 0.0527185 -0.0631762)} Corner 1293 39518 {normal=(-0.996609 0.0527185 -0.0631762)} Corner 1258 39519 {normal=(-0.99087 0.0395593 -0.128885)} Corner 1258 39520 {normal=(-0.99087 0.0395593 -0.128885)} Corner 1338 39520 {normal=(-0.984651 0.0846602 -0.152628)} Corner 1528 39521 {normal=(-0.72686 0.171124 -0.665125)} Corner 1369 39523 {normal=(-0.889195 0.183512 -0.419112)} Corner 1369 39524 {normal=(-0.889195 0.183512 -0.419112)} Corner 1528 39524 {normal=(-0.72686 0.171124 -0.665125)} Corner 1700 39525 {normal=(-0.565194 0.0500575 -0.823438)} Corner 1698 39525 {normal=(-0.515614 0.0563988 -0.854963)} Corner 1698 39526 {normal=(-0.515614 0.0563988 -0.854963)} Corner 1572 39527 {normal=(-0.699882 0.107793 -0.706078)} Corner 1572 39528 {normal=(-0.699882 0.107793 -0.706078)} Corner 1700 39528 {normal=(-0.565194 0.0500575 -0.823438)} Corner 1330 39529 {normal=(-0.0969369 -0.994701 0.0342567)} Corner 1451 39529 {normal=(-0.0676281 -0.99724 0.0306309)} Corner 1451 39530 {normal=(-0.0676281 -0.99724 0.0306309)} Corner 1361 39530 {normal=(-0.201293 -0.978403 0.0470054)} Corner 1361 39531 {normal=(-0.201293 -0.978403 0.0470054)} Corner 1277 39531 {normal=(-0.201293 -0.978403 0.0470054)} Corner 1277 39532 {normal=(-0.201293 -0.978403 0.0470054)} Corner 1330 39532 {normal=(-0.0969369 -0.994701 0.0342567)} Corner 3759 39533 {normal=(0.00934289 -0.996061 0.0881754)} Corner 3827 39533 {normal=(0.00688992 -0.996321 0.0854212)} Corner 3827 39534 {normal=(0.00688992 -0.996321 0.0854212)} Corner 5513 39534 {normal=(2.49317e-09 -0.99257 0.121672)} Corner 5513 39535 {normal=(2.49317e-09 -0.99257 0.121672)} Corner 5517 39535 {normal=(1.18759e-09 -0.99257 0.121672)} Corner 5517 39536 {normal=(1.18759e-09 -0.99257 0.121672)} Corner 3759 39536 {normal=(0.00934289 -0.996061 0.0881754)} Corner 1814 39537 {normal=(-0.102963 -0.98829 0.112612)} Corner 2354 39537 {normal=(-0.096553 -0.989476 0.107775)} Corner 2354 39538 {normal=(-0.096553 -0.989476 0.107775)} Corner 3827 39538 {normal=(0.00688992 -0.996321 0.0854212)} Corner 3827 39539 {normal=(0.00688992 -0.996321 0.0854212)} Corner 3759 39539 {normal=(0.00934289 -0.996061 0.0881754)} Corner 3759 39540 {normal=(0.00934289 -0.996061 0.0881754)} Corner 1814 39540 {normal=(-0.102963 -0.98829 0.112612)} Corner 1575 39541 {normal=(-0.271012 -0.945894 0.178429)} Corner 1605 39541 {normal=(-0.231854 -0.957202 0.173227)} Corner 1605 39542 {normal=(-0.231854 -0.957202 0.173227)} Corner 2354 39542 {normal=(-0.096553 -0.989476 0.107775)} Corner 2354 39543 {normal=(-0.096553 -0.989476 0.107775)} Corner 1814 39543 {normal=(-0.102963 -0.98829 0.112612)} Corner 1814 39544 {normal=(-0.102963 -0.98829 0.112612)} Corner 1575 39544 {normal=(-0.271012 -0.945894 0.178429)} Corner 1339 39545 {normal=(-0.110916 -0.991567 0.0670326)} Corner 1469 39545 {normal=(-0.179608 -0.983238 0.0313665)} Corner 1469 39546 {normal=(-0.179608 -0.983238 0.0313665)} Corner 1605 39546 {normal=(-0.0136195 -0.983052 0.182819)} Corner 1605 39547 {normal=(-0.0136195 -0.983052 0.182819)} Corner 1537 39547 {normal=(0.0720379 -0.936321 0.343677)} Corner 1537 39548 {normal=(0.0720379 -0.936321 0.343677)} Corner 1339 39548 {normal=(-0.110916 -0.991567 0.0670326)} Corner 1246 39549 {normal=(-0.233455 -0.972363 0.00286952)} Corner 1361 39549 {normal=(-0.233455 -0.972363 0.00286952)} Corner 1361 39550 {normal=(-0.233455 -0.972363 0.00286952)} Corner 1469 39550 {normal=(-0.179608 -0.983238 0.0313665)} Corner 1469 39551 {normal=(-0.179608 -0.983238 0.0313665)} Corner 1339 39551 {normal=(-0.110916 -0.991567 0.0670326)} Corner 1339 39552 {normal=(-0.110916 -0.991567 0.0670326)} Corner 1246 39552 {normal=(-0.233455 -0.972363 0.00286952)} Corner 1571 39553 {normal=(0.0171198 -0.996635 -0.0801616)} Corner 1645 39553 {normal=(-0.00114084 -0.985566 -0.16929)} Corner 1645 39554 {normal=(-0.00114084 -0.985566 -0.16929)} Corner 1451 39554 {normal=(-0.0676281 -0.99724 0.0306309)} Corner 1451 39555 {normal=(-0.0676281 -0.99724 0.0306309)} Corner 1330 39555 {normal=(-0.0969369 -0.994701 0.0342567)} Corner 1330 39556 {normal=(-0.0969369 -0.994701 0.0342567)} Corner 1571 39556 {normal=(0.0171198 -0.996635 -0.0801616)} Corner 1772 39557 {normal=(-0.0219785 -0.962802 -0.269314)} Corner 2429 39557 {normal=(-0.0219785 -0.962802 -0.269314)} Corner 2429 39558 {normal=(-0.0219785 -0.962802 -0.269314)} Corner 1645 39558 {normal=(-0.00114084 -0.985566 -0.16929)} Corner 1645 39559 {normal=(-0.00114084 -0.985566 -0.16929)} Corner 1571 39559 {normal=(0.0171198 -0.996635 -0.0801616)} Corner 1571 39560 {normal=(0.0171198 -0.996635 -0.0801616)} Corner 1772 39560 {normal=(-0.0219785 -0.962802 -0.269314)} Corner 3692 39561 {normal=(-0.0417717 -0.991974 -0.119339)} Corner 3814 39561 {normal=(-0.0422059 -0.99194 -0.119473)} Corner 3814 39562 {normal=(-0.0422059 -0.99194 -0.119473)} Corner 2429 39562 {normal=(-0.115738 -0.983081 -0.141976)} Corner 2429 39563 {normal=(-0.115738 -0.983081 -0.141976)} Corner 2385 39563 {normal=(-0.115738 -0.983081 -0.141976)} Corner 2385 39564 {normal=(-0.115738 -0.983081 -0.141976)} Corner 3692 39564 {normal=(-0.0417717 -0.991974 -0.119339)} Corner 5516 39565 {normal=(1.16777e-09 -0.99535 -0.0963258)} Corner 5514 39565 {normal=(2.30376e-09 -0.99535 -0.0963258)} Corner 5514 39566 {normal=(2.30376e-09 -0.99535 -0.0963258)} Corner 3814 39566 {normal=(-0.0422059 -0.99194 -0.119473)} Corner 3814 39567 {normal=(-0.0422059 -0.99194 -0.119473)} Corner 3692 39567 {normal=(-0.0417717 -0.991974 -0.119339)} Corner 3692 39568 {normal=(-0.0417717 -0.991974 -0.119339)} Corner 5516 39568 {normal=(1.16777e-09 -0.99535 -0.0963258)} Corner 1548 39569 {normal=(-0.395789 -0.238275 0.886891)} Corner 1554 39569 {normal=(-0.204923 -0.223809 0.952846)} Corner 1554 39570 {normal=(-0.204923 -0.223809 0.952846)} Corner 1537 39571 {normal=(-0.353047 -0.504679 0.787818)} Corner 1537 39572 {normal=(-0.353047 -0.504679 0.787818)} Corner 1548 39572 {normal=(-0.395789 -0.238275 0.886891)} Corner 1554 39573 {normal=(-0.897276 -0.0443242 0.43924)} Corner 1548 39573 {normal=(-0.899131 0.0092287 0.437583)} Corner 1548 39574 {normal=(-0.899131 0.0092287 0.437583)} Corner 1575 39574 {normal=(-0.788053 -0.156725 0.595324)} Corner 1575 39575 {normal=(-0.788053 -0.156725 0.595324)} Corner 1554 39576 {normal=(-0.897276 -0.0443242 0.43924)} Corner 1277 39579 {normal=(-0.880991 -0.0314842 0.472084)} Corner 1277 39580 {normal=(-0.880991 -0.0314842 0.472084)} Corner 1246 39582 {normal=(-0.835522 0.115602 -0.537159)} Corner 1246 39583 {normal=(-0.835522 0.115602 -0.537159)} Corner 2420 39585 {normal=(0.40936 -0.244902 -0.87889)} Corner 1772 39585 {normal=(0.398693 -0.206427 -0.89355)} Corner 1772 39586 {normal=(0.398693 -0.206427 -0.89355)} Corner 1743 39586 {normal=(0.306044 -0.0199925 -0.951807)} Corner 1743 39587 {normal=(0.306044 -0.0199925 -0.951807)} Corner 2167 39587 {normal=(0.308313 -0.0200838 -0.951073)} Corner 2167 39588 {normal=(0.308313 -0.0200838 -0.951073)} Corner 2420 39588 {normal=(0.40936 -0.244902 -0.87889)} Corner 2167 39589 {normal=(-0.986612 -0.14361 -0.0772806)} Corner 2333 39589 {normal=(-0.986639 -0.143941 -0.0763209)} Corner 2333 39590 {normal=(-0.986639 -0.143941 -0.0763209)} Corner 2385 39590 {normal=(-0.996035 -0.0888412 0.00458071)} Corner 2385 39591 {normal=(-0.996035 -0.0888412 0.00458071)} Corner 2420 39591 {normal=(-0.996873 -0.0784268 0.00963304)} Corner 2420 39592 {normal=(-0.996873 -0.0784268 0.00963304)} Corner 2167 39592 {normal=(-0.986612 -0.14361 -0.0772806)} Corner 2102 39593 {normal=(-0.982509 -0.163452 -0.0892148)} Corner 2333 39593 {normal=(-0.986639 -0.143941 -0.0763209)} Corner 2333 39594 {normal=(-0.986639 -0.143941 -0.0763209)} Corner 2167 39594 {normal=(-0.986612 -0.14361 -0.0772806)} Corner 2167 39595 {normal=(-0.986612 -0.14361 -0.0772806)} Corner 2058 39595 {normal=(-0.981999 -0.16925 -0.0838638)} Corner 2058 39596 {normal=(-0.981999 -0.16925 -0.0838638)} Corner 2102 39596 {normal=(-0.982509 -0.163452 -0.0892148)} Corner 2058 39597 {normal=(0.247074 -0.0336897 -0.968411)} Corner 2167 39597 {normal=(0.308313 -0.0200838 -0.951073)} Corner 2167 39598 {normal=(0.308313 -0.0200838 -0.951073)} Corner 1743 39598 {normal=(0.306044 -0.0199925 -0.951807)} Corner 1743 39599 {normal=(0.306044 -0.0199925 -0.951807)} Corner 1697 39599 {normal=(0.246281 -0.0341398 -0.968597)} Corner 1697 39600 {normal=(0.246281 -0.0341398 -0.968597)} Corner 2058 39600 {normal=(0.247074 -0.0336897 -0.968411)} Corner 1554 39610 {normal=(-0.204923 -0.223809 0.952846)} Corner 1554 39611 {normal=(-0.204923 -0.223809 0.952846)} Corner 1555 39611 {normal=(-0.0569843 -0.268874 0.961488)} Corner 1555 39612 {normal=(-0.0569843 -0.268874 0.961488)} Corner 1555 39613 {normal=(-0.893329 -0.109836 0.435775)} Corner 1554 39613 {normal=(-0.897276 -0.0443242 0.43924)} Corner 1554 39614 {normal=(-0.897276 -0.0443242 0.43924)} Corner 1555 39616 {normal=(-0.893329 -0.109836 0.435775)} Corner 2333 39621 {normal=(-0.45996 -0.22788 -0.8582)} Corner 2102 39621 {normal=(-0.43603 0.00679058 -0.899906)} Corner 2102 39622 {normal=(-0.43603 0.00679058 -0.899906)} Corner 2333 39624 {normal=(-0.45996 -0.22788 -0.8582)} Corner 1697 39626 {normal=(-0.407466 0.0163148 -0.913075)} Corner 1697 39627 {normal=(-0.407466 0.0163148 -0.913075)} Corner 1743 39627 {normal=(-0.338525 -0.0990327 -0.935732)} Corner 1743 39628 {normal=(-0.338525 -0.0990327 -0.935732)} Corner 1284 39629 {normal=(-0.766303 -0.146085 -0.62565)} Corner 1284 39632 {normal=(-0.766303 -0.146085 -0.62565)} Corner 1262 39634 {normal=(-0.993745 -0.0814723 0.0763684)} Corner 1262 39635 {normal=(-0.993745 -0.0814723 0.0763684)} Corner 1284 39635 {normal=(-0.996043 -0.085423 0.0245211)} Corner 1284 39636 {normal=(-0.996043 -0.085423 0.0245211)} Corner 1284 39661 {normal=(-0.996043 -0.085423 0.0245211)} Corner 1330 39661 {normal=(-0.998137 -0.0548471 -0.0267104)} Corner 1330 39662 {normal=(-0.998137 -0.0548471 -0.0267104)} Corner 1277 39662 {normal=(-0.880991 -0.0314842 0.472084)} Corner 1277 39663 {normal=(-0.880991 -0.0314842 0.472084)} Corner 1284 39664 {normal=(-0.996043 -0.085423 0.0245211)} Corner 1743 39665 {normal=(-0.338525 -0.0990327 -0.935732)} Corner 1743 39666 {normal=(-0.338525 -0.0990327 -0.935732)} Corner 1772 39666 {normal=(-0.325796 -0.164946 -0.93094)} Corner 1772 39667 {normal=(-0.325796 -0.164946 -0.93094)} Corner 1571 39667 {normal=(-0.500445 -0.231331 -0.83429)} Corner 1571 39668 {normal=(-0.500445 -0.231331 -0.83429)} Corner 3692 39669 {normal=(-0.168833 -0.434866 -0.884526)} Corner 5516 39671 {normal=(-9.27504e-09 -0.44532 -0.895371)} Corner 5516 39672 {normal=(-9.27504e-09 -0.44532 -0.895371)} Corner 3692 39672 {normal=(-0.168833 -0.434866 -0.884526)} Corner 1339 39673 {normal=(-0.666718 -0.652851 0.359545)} Corner 1246 39675 {normal=(-0.835522 0.115602 -0.537159)} Corner 1246 39676 {normal=(-0.835522 0.115602 -0.537159)} Corner 1339 39676 {normal=(-0.666718 -0.652851 0.359545)} Corner 1339 39677 {normal=(-0.666718 -0.652851 0.359545)} Corner 1537 39677 {normal=(-0.353047 -0.504679 0.787818)} Corner 1537 39678 {normal=(-0.353047 -0.504679 0.787818)} Corner 1339 39680 {normal=(-0.666718 -0.652851 0.359545)} Corner 1575 39682 {normal=(-0.788053 -0.156725 0.595324)} Corner 1575 39683 {normal=(-0.788053 -0.156725 0.595324)} Corner 1814 39683 {normal=(-0.375138 -0.418499 0.827122)} Corner 1814 39684 {normal=(-0.375138 -0.418499 0.827122)} Corner 1330 39685 {normal=(-0.696765 -0.303158 -0.650088)} Corner 1284 39685 {normal=(-0.766303 -0.146085 -0.62565)} Corner 1284 39686 {normal=(-0.766303 -0.146085 -0.62565)} Corner 1571 39687 {normal=(-0.500445 -0.231331 -0.83429)} Corner 1571 39688 {normal=(-0.500445 -0.231331 -0.83429)} Corner 1330 39688 {normal=(-0.696765 -0.303158 -0.650088)} Corner 5517 39689 {normal=(-2.28997e-09 -0.392375 0.919805)} Corner 3759 39691 {normal=(-0.0827036 -0.429508 0.899268)} Corner 3759 39692 {normal=(-0.0827036 -0.429508 0.899268)} Corner 5517 39692 {normal=(-2.28997e-09 -0.392375 0.919805)} Corner 2385 39693 {normal=(-0.434047 -0.393368 -0.810472)} Corner 2333 39693 {normal=(-0.45996 -0.22788 -0.8582)} Corner 2333 39694 {normal=(-0.45996 -0.22788 -0.8582)} Corner 3692 39695 {normal=(-0.168833 -0.434866 -0.884526)} Corner 3692 39696 {normal=(-0.168833 -0.434866 -0.884526)} Corner 2385 39696 {normal=(-0.434047 -0.393368 -0.810472)} Corner 3759 39697 {normal=(-0.0827036 -0.429508 0.899268)} Corner 1814 39699 {normal=(-0.375138 -0.418499 0.827122)} Corner 1814 39700 {normal=(-0.375138 -0.418499 0.827122)} Corner 3759 39700 {normal=(-0.0827036 -0.429508 0.899268)} Corner 1227 39701 {normal=(-0.428713 -0.346806 0.834225)} Corner 1227 39702 {normal=(-0.428713 -0.346806 0.834225)} Corner 1334 39702 {normal=(-0.169868 -0.137751 0.975792)} Corner 1334 39703 {normal=(-0.169868 -0.137751 0.975792)} Corner 794 39709 {normal=(-0.93082 -0.0244507 -0.36466)} Corner 485 39709 {normal=(-0.931003 0.0260187 -0.364083)} Corner 485 39710 {normal=(-0.931003 0.0260187 -0.364083)} Corner 637 39710 {normal=(-0.854433 0.399555 -0.332115)} Corner 637 39711 {normal=(-0.854433 0.399555 -0.332115)} Corner 859 39711 {normal=(-0.86796 0.364718 -0.337085)} Corner 859 39712 {normal=(-0.86796 0.364718 -0.337085)} Corner 794 39712 {normal=(-0.93082 -0.0244507 -0.36466)} Corner 1024 39713 {normal=(-0.538674 0.299319 -0.787552)} Corner 876 39713 {normal=(-0.708388 0.30408 -0.636963)} Corner 876 39714 {normal=(-0.708388 0.30408 -0.636963)} Corner 923 39714 {normal=(-0.674806 0.436225 -0.595268)} Corner 923 39715 {normal=(-0.674806 0.436225 -0.595268)} Corner 1024 39716 {normal=(-0.538674 0.299319 -0.787552)} Corner 1356 39717 {normal=(-0.345105 0.279656 -0.895933)} Corner 1024 39717 {normal=(-0.538674 0.299319 -0.787552)} Corner 1024 39718 {normal=(-0.538674 0.299319 -0.787552)} Corner 1426 39719 {normal=(-0.315452 0.423824 -0.849037)} Corner 1426 39720 {normal=(-0.315452 0.423824 -0.849037)} Corner 1356 39720 {normal=(-0.345105 0.279656 -0.895933)} Corner 1781 39721 {normal=(0.326962 0.230981 -0.916375)} Corner 1356 39721 {normal=(0.326963 0.230981 -0.916375)} Corner 1356 39722 {normal=(0.326963 0.230981 -0.916375)} Corner 1426 39722 {normal=(0.330609 0.320153 -0.887806)} Corner 1426 39723 {normal=(0.330609 0.320153 -0.887806)} Corner 2066 39723 {normal=(0.331227 0.352747 -0.875133)} Corner 2066 39724 {normal=(0.331227 0.352747 -0.875133)} Corner 1781 39724 {normal=(0.326962 0.230981 -0.916375)} Corner 2514 39725 {normal=(0.762401 -0.0852375 -0.641467)} Corner 2514 39726 {normal=(0.762401 -0.0852375 -0.641467)} Corner 2683 39726 {normal=(0.768426 0.196636 -0.608979)} Corner 2683 39727 {normal=(0.768426 0.196636 -0.608979)} Corner 5230 39729 {normal=(0.95747 -0.0636847 -0.281418)} Corner 5308 39731 {normal=(0.955977 0.0833046 -0.281369)} Corner 5308 39732 {normal=(0.955977 0.0833046 -0.281369)} Corner 5230 39732 {normal=(0.95747 -0.0636847 -0.281418)} Corner 5215 39733 {normal=(0.935502 -0.227956 0.269947)} Corner 5317 39733 {normal=(0.958329 -0.122502 0.258066)} Corner 5317 39734 {normal=(0.958329 -0.122502 0.258066)} Corner 4338 39735 {normal=(0.82338 -0.282095 0.49241)} Corner 4338 39736 {normal=(0.82338 -0.282095 0.49241)} Corner 5215 39736 {normal=(0.935502 -0.227956 0.269947)} Corner 4338 39737 {normal=(0.82338 -0.282095 0.49241)} Corner 4338 39738 {normal=(0.82338 -0.282095 0.49241)} Corner 1345 39741 {normal=(0.13731 -0.409639 0.901855)} Corner 1334 39743 {normal=(-0.169868 -0.137751 0.975792)} Corner 1334 39744 {normal=(-0.169868 -0.137751 0.975792)} Corner 1345 39744 {normal=(0.13731 -0.409639 0.901855)} Corner 1768 39745 {normal=(0.522959 -0.815795 -0.246966)} Corner 1768 39746 {normal=(0.522959 -0.815795 -0.246966)} Corner 1642 39746 {normal=(0.236977 -0.839805 -0.488436)} Corner 1642 39747 {normal=(0.236977 -0.839805 -0.488436)} Corner 1642 39749 {normal=(0.236977 -0.839805 -0.488436)} Corner 1642 39750 {normal=(0.236977 -0.839805 -0.488436)} Corner 1497 39750 {normal=(-0.173606 -0.812608 -0.556354)} Corner 1497 39751 {normal=(-0.173606 -0.812608 -0.556354)} Corner 1497 39753 {normal=(-0.173606 -0.812608 -0.556354)} Corner 1497 39754 {normal=(-0.173606 -0.812608 -0.556354)} Corner 1374 39754 {normal=(-0.533408 -0.658663 -0.530697)} Corner 1374 39755 {normal=(-0.533408 -0.658663 -0.530697)} Corner 1374 39757 {normal=(-0.533408 -0.658663 -0.530697)} Corner 1374 39758 {normal=(-0.533408 -0.658663 -0.530697)} Corner 1283 39758 {normal=(-0.800181 -0.506271 -0.321557)} Corner 1283 39759 {normal=(-0.800181 -0.506271 -0.321557)} Corner 1283 39761 {normal=(-0.800181 -0.506271 -0.321557)} Corner 1283 39762 {normal=(-0.800181 -0.506271 -0.321557)} Corner 1235 39762 {normal=(-0.879339 -0.474861 0.0356342)} Corner 1235 39763 {normal=(-0.879339 -0.474861 0.0356342)} Corner 1235 39765 {normal=(-0.879339 -0.474861 0.0356342)} Corner 1235 39766 {normal=(-0.879339 -0.474861 0.0356342)} Corner 1340 39766 {normal=(-0.618494 -0.486657 0.616952)} Corner 1340 39767 {normal=(-0.618494 -0.486657 0.616952)} Corner 1340 39769 {normal=(-0.618494 -0.486657 0.616952)} Corner 1340 39770 {normal=(-0.618494 -0.486657 0.616952)} Corner 1490 39770 {normal=(-0.194745 -0.474158 0.858632)} Corner 1490 39771 {normal=(-0.194745 -0.474158 0.858632)} Corner 1490 39773 {normal=(-0.194745 -0.474158 0.858632)} Corner 1490 39774 {normal=(-0.194745 -0.474158 0.858632)} Corner 1640 39774 {normal=(0.224994 -0.604893 0.76386)} Corner 1640 39775 {normal=(0.224994 -0.604893 0.76386)} Corner 1640 39777 {normal=(0.224994 -0.604893 0.76386)} Corner 1640 39778 {normal=(0.224994 -0.604893 0.76386)} Corner 1709 39778 {normal=(0.556652 -0.711469 0.428895)} Corner 1709 39779 {normal=(0.556652 -0.711469 0.428895)} Corner 1709 39781 {normal=(0.556652 -0.711469 0.428895)} Corner 1709 39782 {normal=(0.556652 -0.711469 0.428895)} Corner 1961 39782 {normal=(0.636589 -0.766435 0.0856278)} Corner 1961 39783 {normal=(0.636589 -0.766435 0.0856278)} Corner 1961 39785 {normal=(0.636589 -0.766435 0.0856278)} Corner 1961 39786 {normal=(0.636589 -0.766435 0.0856278)} Corner 1768 39786 {normal=(0.522959 -0.815795 -0.246966)} Corner 1768 39787 {normal=(0.522959 -0.815795 -0.246966)} Corner 2701 39877 {normal=(0.744959 0.212348 -0.632412)} Corner 1651 39879 {normal=(0.439236 0.25355 -0.861849)} Corner 1651 39880 {normal=(0.439236 0.25355 -0.861849)} Corner 2701 39880 {normal=(0.744959 0.212348 -0.632412)} Corner 1651 39881 {normal=(0.439236 0.25355 -0.861849)} Corner 1472 39883 {normal=(-0.0905732 0.300203 -0.949565)} Corner 1472 39884 {normal=(-0.0905732 0.300203 -0.949565)} Corner 1651 39884 {normal=(0.439236 0.25355 -0.861849)} Corner 1472 39885 {normal=(-0.0905732 0.300203 -0.949565)} Corner 1247 39887 {normal=(-0.53755 0.292608 -0.790835)} Corner 1247 39888 {normal=(-0.53755 0.292608 -0.790835)} Corner 1472 39888 {normal=(-0.0905732 0.300203 -0.949565)} Corner 1247 39889 {normal=(-0.53755 0.292608 -0.790835)} Corner 1132 39891 {normal=(-0.873465 0.223631 -0.43249)} Corner 1132 39892 {normal=(-0.873465 0.223631 -0.43249)} Corner 1247 39892 {normal=(-0.53755 0.292608 -0.790835)} Corner 1132 39893 {normal=(-0.873465 0.223631 -0.43249)} Corner 1084 39895 {normal=(-0.982786 0.122872 0.137968)} Corner 1084 39896 {normal=(-0.982786 0.122872 0.137968)} Corner 1132 39896 {normal=(-0.873465 0.223631 -0.43249)} Corner 1084 39897 {normal=(-0.982786 0.122872 0.137968)} Corner 1203 39899 {normal=(-0.686526 0.0362203 0.726202)} Corner 1203 39900 {normal=(-0.686526 0.0362203 0.726202)} Corner 1084 39900 {normal=(-0.982786 0.122872 0.137968)} Corner 1203 39901 {normal=(-0.686526 0.0362203 0.726202)} Corner 1473 39903 {normal=(-0.174285 -0.0102547 0.984642)} Corner 1473 39904 {normal=(-0.174285 -0.0102547 0.984642)} Corner 1203 39904 {normal=(-0.686526 0.0362203 0.726202)} Corner 1473 39905 {normal=(-0.174285 -0.0102547 0.984642)} Corner 1710 39907 {normal=(0.331067 -0.0360765 0.942917)} Corner 1710 39908 {normal=(0.331067 -0.0360765 0.942917)} Corner 1473 39908 {normal=(-0.174285 -0.0102547 0.984642)} Corner 1710 39909 {normal=(0.331067 -0.0360765 0.942917)} Corner 3195 39911 {normal=(0.779524 0.00623601 0.626342)} Corner 3195 39912 {normal=(0.779524 0.00623601 0.626342)} Corner 1710 39912 {normal=(0.331067 -0.0360765 0.942917)} Corner 3195 39913 {normal=(0.779524 0.00623601 0.626342)} Corner 3364 39915 {normal=(0.985658 0.150249 -0.0768379)} Corner 3364 39916 {normal=(0.985658 0.150249 -0.0768379)} Corner 3195 39916 {normal=(0.779524 0.00623601 0.626342)} Corner 3364 39917 {normal=(0.985658 0.150249 -0.0768379)} Corner 2701 39919 {normal=(0.744959 0.212348 -0.632412)} Corner 2701 39920 {normal=(0.744959 0.212348 -0.632412)} Corner 3364 39920 {normal=(0.985658 0.150249 -0.0768379)} Corner 1691 39921 {normal=(0.0839995 -0.832451 -0.547694)} Corner 1418 39921 {normal=(-0.062312 -0.853648 -0.51711)} Corner 1418 39922 {normal=(-0.062312 -0.853648 -0.51711)} Corner 1383 39922 {normal=(0.0452789 -0.723121 -0.689236)} Corner 1383 39923 {normal=(0.0452789 -0.723121 -0.689236)} Corner 1704 39923 {normal=(0.156422 -0.678043 -0.718185)} Corner 1704 39924 {normal=(0.156422 -0.678043 -0.718185)} Corner 1691 39924 {normal=(0.0839995 -0.832451 -0.547694)} Corner 1418 39925 {normal=(-0.062312 -0.853648 -0.51711)} Corner 1153 39925 {normal=(-0.290827 -0.85451 -0.430386)} Corner 1153 39926 {normal=(-0.290827 -0.85451 -0.430386)} Corner 1070 39926 {normal=(-0.293358 -0.854414 -0.428856)} Corner 1070 39927 {normal=(-0.293358 -0.854414 -0.428856)} Corner 1383 39927 {normal=(0.0452789 -0.723121 -0.689236)} Corner 1383 39928 {normal=(0.0452789 -0.723121 -0.689236)} Corner 1418 39928 {normal=(-0.062312 -0.853648 -0.51711)} Corner 1053 39929 {normal=(-0.531985 -0.828818 -0.173356)} Corner 1056 39929 {normal=(-0.633127 -0.774 -0.00858711)} Corner 1056 39930 {normal=(-0.633127 -0.774 -0.00858711)} Corner 921 39930 {normal=(-0.633127 -0.774 -0.00858711)} Corner 921 39931 {normal=(-0.633127 -0.774 -0.00858711)} Corner 936 39931 {normal=(-0.483984 -0.841711 -0.239337)} Corner 936 39932 {normal=(-0.483984 -0.841711 -0.239337)} Corner 1053 39932 {normal=(-0.531985 -0.828818 -0.173356)} Corner 1012 39933 {normal=(-0.394964 -0.864951 -0.309618)} Corner 862 39933 {normal=(-0.39653 -0.865229 -0.306826)} Corner 862 39934 {normal=(-0.39653 -0.865229 -0.306826)} Corner 921 39934 {normal=(-0.302598 -0.835834 -0.458057)} Corner 921 39935 {normal=(-0.302598 -0.835834 -0.458057)} Corner 1056 39935 {normal=(-0.302598 -0.835834 -0.458057)} Corner 1056 39936 {normal=(-0.302598 -0.835834 -0.458057)} Corner 1012 39936 {normal=(-0.394964 -0.864951 -0.309618)} Corner 1327 39937 {normal=(0.450216 -0.762915 0.463968)} Corner 1386 39937 {normal=(0.450216 -0.762915 0.463968)} Corner 1386 39938 {normal=(0.450216 -0.762915 0.463968)} Corner 1325 39938 {normal=(0.372789 -0.648275 0.663904)} Corner 1325 39939 {normal=(0.372789 -0.648275 0.663904)} Corner 1260 39939 {normal=(0.373527 -0.649391 0.662397)} Corner 1260 39940 {normal=(0.373527 -0.649391 0.662397)} Corner 1327 39940 {normal=(0.450216 -0.762915 0.463968)} Corner 1376 39941 {normal=(-0.509163 -0.696929 0.505018)} Corner 1325 39941 {normal=(-0.511247 -0.682689 0.522074)} Corner 1325 39942 {normal=(-0.511247 -0.682689 0.522074)} Corner 1386 39942 {normal=(-0.47111 -0.826591 0.307899)} Corner 1386 39943 {normal=(-0.47111 -0.826591 0.307899)} Corner 1465 39943 {normal=(-0.47111 -0.826591 0.307899)} Corner 1465 39944 {normal=(-0.47111 -0.826591 0.307899)} Corner 1376 39944 {normal=(-0.509163 -0.696929 0.505018)} Corner 2736 39945 {normal=(0.596418 -0.777188 -0.200659)} Corner 2553 39945 {normal=(0.403594 -0.883359 0.238304)} Corner 2553 39946 {normal=(0.403594 -0.883359 0.238304)} Corner 3994 39946 {normal=(0.454147 -0.765268 0.456197)} Corner 3994 39947 {normal=(0.454147 -0.765268 0.456197)} Corner 3926 39947 {normal=(0.596418 -0.777188 -0.200659)} Corner 3926 39948 {normal=(0.596418 -0.777188 -0.200659)} Corner 2736 39948 {normal=(0.596418 -0.777188 -0.200659)} Corner 3202 39949 {normal=(0.0970907 -0.765494 0.636075)} Corner 4196 39949 {normal=(0.268933 -0.663061 0.698587)} Corner 4196 39950 {normal=(0.268933 -0.663061 0.698587)} Corner 3994 39950 {normal=(0.454147 -0.765268 0.456197)} Corner 3994 39951 {normal=(0.454147 -0.765268 0.456197)} Corner 2553 39951 {normal=(0.403594 -0.883359 0.238304)} Corner 2553 39952 {normal=(0.403594 -0.883359 0.238304)} Corner 3202 39952 {normal=(0.0970907 -0.765494 0.636075)} Corner 3659 39953 {normal=(0.585757 -0.800985 -0.12374)} Corner 3381 39953 {normal=(0.524558 -0.799769 -0.291904)} Corner 3381 39954 {normal=(0.524558 -0.799769 -0.291904)} Corner 4091 39954 {normal=(0.531414 -0.801041 -0.275558)} Corner 4091 39955 {normal=(0.531414 -0.801041 -0.275558)} Corner 4686 39955 {normal=(0.585757 -0.800985 -0.12374)} Corner 4686 39956 {normal=(0.585757 -0.800985 -0.12374)} Corner 3659 39956 {normal=(0.585757 -0.800985 -0.12374)} Corner 3381 39957 {normal=(0.524558 -0.799769 -0.291904)} Corner 1691 39957 {normal=(0.451581 -0.77522 -0.441711)} Corner 1691 39958 {normal=(0.451581 -0.77522 -0.441711)} Corner 2179 39958 {normal=(0.451581 -0.77522 -0.441711)} Corner 2179 39959 {normal=(0.451581 -0.77522 -0.441711)} Corner 4091 39959 {normal=(0.531414 -0.801041 -0.275558)} Corner 4091 39960 {normal=(0.531414 -0.801041 -0.275558)} Corner 3381 39960 {normal=(0.524558 -0.799769 -0.291904)} Corner 1704 39961 {normal=(0.156422 -0.678043 -0.718185)} Corner 1383 39961 {normal=(0.0452789 -0.723121 -0.689236)} Corner 1383 39962 {normal=(0.0452789 -0.723121 -0.689236)} Corner 1356 39962 {normal=(0.228757 -0.450348 -0.863051)} Corner 1356 39963 {normal=(0.228757 -0.450348 -0.863051)} Corner 1781 39963 {normal=(0.228757 -0.450348 -0.863051)} Corner 1781 39964 {normal=(0.228757 -0.450348 -0.863051)} Corner 1704 39964 {normal=(0.156422 -0.678043 -0.718185)} Corner 1383 39965 {normal=(-0.346636 -0.459137 -0.817947)} Corner 1070 39965 {normal=(-0.504657 -0.43605 -0.745105)} Corner 1070 39966 {normal=(-0.504657 -0.43605 -0.745105)} Corner 1024 39966 {normal=(-0.497961 -0.437362 -0.748832)} Corner 1024 39967 {normal=(-0.497961 -0.437362 -0.748832)} Corner 1356 39967 {normal=(-0.346636 -0.459137 -0.817947)} Corner 1356 39968 {normal=(-0.346636 -0.459137 -0.817947)} Corner 1383 39968 {normal=(-0.346636 -0.459137 -0.817947)} Corner 1070 39969 {normal=(-0.504657 -0.43605 -0.745105)} Corner 936 39969 {normal=(-0.64344 -0.400709 -0.65224)} Corner 936 39970 {normal=(-0.64344 -0.400709 -0.65224)} Corner 876 39970 {normal=(-0.64344 -0.40071 -0.65224)} Corner 876 39971 {normal=(-0.64344 -0.40071 -0.65224)} Corner 1024 39971 {normal=(-0.497961 -0.437362 -0.748832)} Corner 1024 39972 {normal=(-0.497961 -0.437362 -0.748832)} Corner 1070 39972 {normal=(-0.504657 -0.43605 -0.745105)} Corner 862 39973 {normal=(-0.8867 -0.301003 -0.350942)} Corner 675 39973 {normal=(-0.8867 -0.301003 -0.350942)} Corner 675 39974 {normal=(-0.8867 -0.301003 -0.350942)} Corner 485 39974 {normal=(-0.931003 0.0260187 -0.364083)} Corner 485 39975 {normal=(-0.931003 0.0260187 -0.364083)} Corner 794 39975 {normal=(-0.93082 -0.0244507 -0.36466)} Corner 794 39976 {normal=(-0.93082 -0.0244507 -0.36466)} Corner 862 39976 {normal=(-0.8867 -0.301003 -0.350942)} Corner 792 39977 {normal=(-0.837249 -0.378955 0.394217)} Corner 944 39977 {normal=(-0.58279 -0.46793 0.664377)} Corner 944 39978 {normal=(-0.58279 -0.46793 0.664377)} Corner 792 39980 {normal=(-0.837249 -0.378955 0.394217)} Corner 944 39981 {normal=(-0.58279 -0.46793 0.664377)} Corner 1260 39981 {normal=(-0.386485 -0.511135 0.767704)} Corner 1260 39982 {normal=(-0.386485 -0.511135 0.767704)} Corner 1227 39982 {normal=(-0.428713 -0.346806 0.834225)} Corner 1227 39983 {normal=(-0.428713 -0.346806 0.834225)} Corner 944 39984 {normal=(-0.58279 -0.46793 0.664377)} Corner 1345 39985 {normal=(0.13731 -0.409639 0.901855)} Corner 1376 39985 {normal=(0.102895 -0.695742 0.710884)} Corner 1376 39986 {normal=(0.102895 -0.695742 0.710884)} Corner 1345 39988 {normal=(0.13731 -0.409639 0.901855)} Corner 3926 39989 {normal=(0.523614 -0.627113 0.576678)} Corner 3926 39990 {normal=(0.523614 -0.627113 0.576678)} Corner 4338 39990 {normal=(0.82338 -0.282095 0.49241)} Corner 4338 39991 {normal=(0.82338 -0.282095 0.49241)} Corner 4196 39993 {normal=(0.813916 -0.525529 0.247709)} Corner 4723 39993 {normal=(0.758099 -0.608837 0.233671)} Corner 4723 39994 {normal=(0.758099 -0.608837 0.233671)} Corner 5215 39994 {normal=(0.935502 -0.227956 0.269947)} Corner 5215 39995 {normal=(0.935502 -0.227956 0.269947)} Corner 4338 39995 {normal=(0.82338 -0.282095 0.49241)} Corner 4338 39996 {normal=(0.82338 -0.282095 0.49241)} Corner 4196 39996 {normal=(0.813916 -0.525529 0.247709)} Corner 4686 39997 {normal=(0.92904 -0.251419 -0.27143)} Corner 4091 39997 {normal=(0.836174 -0.297775 -0.46059)} Corner 4091 39998 {normal=(0.836174 -0.297775 -0.46059)} Corner 5230 39999 {normal=(0.95747 -0.0636847 -0.281418)} Corner 5230 40000 {normal=(0.95747 -0.0636847 -0.281418)} Corner 4686 40000 {normal=(0.92904 -0.251419 -0.27143)} Corner 4091 40001 {normal=(0.836174 -0.297775 -0.46059)} Corner 2179 40001 {normal=(0.707487 -0.329744 -0.625085)} Corner 2179 40002 {normal=(0.707487 -0.329744 -0.625085)} Corner 2514 40002 {normal=(0.762401 -0.0852375 -0.641467)} Corner 2514 40003 {normal=(0.762401 -0.0852375 -0.641467)} Corner 4091 40004 {normal=(0.836174 -0.297775 -0.46059)} Corner 2066 40005 {normal=(0.331227 0.352747 -0.875133)} Corner 1426 40005 {normal=(0.330609 0.320153 -0.887806)} Corner 1426 40006 {normal=(0.330609 0.320153 -0.887806)} Corner 1508 40006 {normal=(0.38472 0.289907 -0.876325)} Corner 1508 40007 {normal=(0.38472 0.289907 -0.876325)} Corner 2723 40007 {normal=(0.423733 0.150062 -0.89327)} Corner 2723 40008 {normal=(0.423733 0.150062 -0.89327)} Corner 2066 40008 {normal=(0.331227 0.352747 -0.875133)} Corner 1426 40009 {normal=(-0.315452 0.423824 -0.849037)} Corner 1508 40011 {normal=(-0.321326 0.507354 -0.799588)} Corner 1508 40012 {normal=(-0.321326 0.507354 -0.799588)} Corner 1426 40012 {normal=(-0.315452 0.423824 -0.849037)} Corner 923 40013 {normal=(-0.674806 0.436225 -0.595268)} Corner 923 40014 {normal=(-0.674806 0.436225 -0.595268)} Corner 1031 40014 {normal=(-0.602655 0.540177 -0.58738)} Corner 1031 40015 {normal=(-0.602655 0.540177 -0.58738)} Corner 859 40017 {normal=(-0.86796 0.364718 -0.337085)} Corner 637 40017 {normal=(-0.854433 0.399555 -0.332115)} Corner 637 40018 {normal=(-0.854433 0.399555 -0.332115)} Corner 835 40018 {normal=(-0.814749 0.476471 -0.330393)} Corner 835 40019 {normal=(-0.814749 0.476471 -0.330393)} Corner 978 40019 {normal=(-0.814627 0.477958 -0.328541)} Corner 978 40020 {normal=(-0.814627 0.477958 -0.328541)} Corner 859 40020 {normal=(-0.86796 0.364718 -0.337085)} Corner 1334 40025 {normal=(-0.169868 -0.137751 0.975792)} Corner 1334 40026 {normal=(-0.169868 -0.137751 0.975792)} Corner 1334 40029 {normal=(-0.169868 -0.137751 0.975792)} Corner 1334 40030 {normal=(-0.169868 -0.137751 0.975792)} Corner 5317 40037 {normal=(0.958329 -0.122502 0.258066)} Corner 5317 40038 {normal=(0.958329 -0.122502 0.258066)} Corner 5324 40038 {normal=(0.975171 -0.0963855 0.199378)} Corner 5324 40039 {normal=(0.975171 -0.0963855 0.199378)} Corner 5308 40041 {normal=(0.955977 0.0833046 -0.281369)} Corner 5284 40043 {normal=(0.948572 0.115378 -0.294786)} Corner 5284 40044 {normal=(0.948572 0.115378 -0.294786)} Corner 5308 40044 {normal=(0.955977 0.0833046 -0.281369)} Corner 2683 40045 {normal=(0.768426 0.196636 -0.608979)} Corner 2683 40046 {normal=(0.768426 0.196636 -0.608979)} Corner 2723 40046 {normal=(0.800241 0.163325 -0.577009)} Corner 2723 40047 {normal=(0.800241 0.163325 -0.577009)} Corner 5156 40049 {normal=(0.943825 0.128633 -0.304383)} Corner 5284 40049 {normal=(0.948572 0.115378 -0.294786)} Corner 5284 40050 {normal=(0.948572 0.115378 -0.294786)} Corner 4384 40051 {normal=(0.914162 0.0683236 -0.39955)} Corner 4384 40052 {normal=(0.914162 0.0683236 -0.39955)} Corner 5156 40052 {normal=(0.943825 0.128633 -0.304383)} Corner 5490 40053 {normal=(0.343435 -0.934565 -0.0929585)} Corner 5156 40053 {normal=(0.343435 -0.934565 -0.0929585)} Corner 5156 40054 {normal=(0.343435 -0.934565 -0.0929585)} Corner 4384 40054 {normal=(0.282317 -0.947515 -0.15004)} Corner 4384 40055 {normal=(0.282317 -0.947515 -0.15004)} Corner 5491 40055 {normal=(0.24585 -0.951927 -0.182738)} Corner 5491 40056 {normal=(0.24585 -0.951927 -0.182738)} Corner 5490 40056 {normal=(0.343435 -0.934565 -0.0929585)} Corner 1161 40057 {normal=(-0.736123 0.398545 -0.547069)} Corner 979 40057 {normal=(-0.879041 0.328372 -0.345629)} Corner 979 40058 {normal=(-0.879041 0.328372 -0.345629)} Corner 1034 40058 {normal=(-0.978102 0.204744 -0.0373693)} Corner 1034 40059 {normal=(-0.978102 0.204744 -0.0373693)} Corner 1161 40060 {normal=(-0.736123 0.398545 -0.547069)} Corner 1034 40062 {normal=(-0.978102 0.204744 -0.0373693)} Corner 1034 40063 {normal=(-0.978102 0.204744 -0.0373693)} Corner 3715 40073 {normal=(0.152479 -0.0301194 -0.987848)} Corner 5494 40075 {normal=(-1.06477e-08 -0.139361 -0.990242)} Corner 5494 40076 {normal=(-1.06477e-08 -0.139361 -0.990242)} Corner 3715 40076 {normal=(0.152479 -0.0301194 -0.987848)} Corner 1748 40083 {normal=(-0.323791 0.18847 -0.927167)} Corner 1748 40084 {normal=(-0.323791 0.18847 -0.927167)} Corner 1748 40085 {normal=(-0.323791 0.18847 -0.927167)} Corner 3715 40087 {normal=(0.152479 -0.0301194 -0.987848)} Corner 3715 40088 {normal=(0.152479 -0.0301194 -0.987848)} Corner 1748 40088 {normal=(-0.323791 0.18847 -0.927167)} Corner 1377 40090 {normal=(-0.947089 0.284867 0.147895)} Corner 1377 40091 {normal=(-0.947089 0.284867 0.147895)} Corner 1448 40091 {normal=(-0.844464 0.27469 -0.459812)} Corner 1448 40092 {normal=(-0.844464 0.27469 -0.459812)} Corner 1375 40093 {normal=(-0.958797 0.232667 -0.163017)} Corner 1466 40095 {normal=(-0.878715 0.225037 0.420973)} Corner 1466 40096 {normal=(-0.878715 0.225037 0.420973)} Corner 1375 40096 {normal=(-0.958797 0.232667 -0.163017)} Corner 1609 40105 {normal=(-0.394128 0.0946903 0.914165)} Corner 1951 40106 {normal=(-0.155356 0.0902539 0.983727)} Corner 1951 40107 {normal=(-0.155356 0.0902539 0.983727)} Corner 1635 40107 {normal=(-0.47972 0.0996945 0.87174)} Corner 1635 40108 {normal=(-0.47972 0.0996945 0.87174)} Corner 1609 40108 {normal=(-0.394128 0.0946903 0.914165)} Corner 4621 40109 {normal=(0.468409 -0.591226 0.65654)} Corner 4780 40109 {normal=(0.540246 -0.702367 0.463482)} Corner 4780 40110 {normal=(0.540246 -0.702367 0.463482)} Corner 5493 40110 {normal=(0.652945 -0.579556 0.487624)} Corner 5493 40111 {normal=(0.652945 -0.579556 0.487624)} Corner 5495 40111 {normal=(0.468409 -0.591226 0.65654)} Corner 5495 40112 {normal=(0.468409 -0.591226 0.65654)} Corner 4621 40112 {normal=(0.468409 -0.591226 0.65654)} Corner 5501 40113 {normal=(0 0.0168705 0.999858)} Corner 5501 40114 {normal=(0 0.0168705 0.999858)} Corner 3824 40114 {normal=(0.0247551 0.0123975 0.999617)} Corner 3824 40115 {normal=(0.0247551 0.0123975 0.999617)} Corner 1748 40117 {normal=(0.613884 0.105292 -0.782343)} Corner 3796 40117 {normal=(0.613884 0.105292 -0.782343)} Corner 3796 40118 {normal=(0.613884 0.105292 -0.782343)} Corner 3629 40118 {normal=(0.565252 0.0581619 -0.822865)} Corner 3629 40119 {normal=(0.565252 0.0581619 -0.822865)} Corner 1682 40119 {normal=(0.521776 0.0183777 -0.852885)} Corner 1682 40120 {normal=(0.521776 0.0183777 -0.852885)} Corner 1748 40120 {normal=(0.613884 0.105292 -0.782343)} Corner 1508 40121 {normal=(0.38472 0.289907 -0.876325)} Corner 1682 40121 {normal=(0.521776 0.0183777 -0.852885)} Corner 1682 40122 {normal=(0.521776 0.0183777 -0.852885)} Corner 3629 40122 {normal=(0.565252 0.0581619 -0.822865)} Corner 3629 40123 {normal=(0.565252 0.0581619 -0.822865)} Corner 2723 40123 {normal=(0.423733 0.150062 -0.89327)} Corner 2723 40124 {normal=(0.423733 0.150062 -0.89327)} Corner 1508 40124 {normal=(0.38472 0.289907 -0.876325)} Corner 3629 40129 {normal=(0.876324 -0.00414328 -0.481704)} Corner 4384 40129 {normal=(0.914162 0.0683236 -0.39955)} Corner 4384 40130 {normal=(0.914162 0.0683236 -0.39955)} Corner 2723 40131 {normal=(0.800241 0.163325 -0.577009)} Corner 2723 40132 {normal=(0.800241 0.163325 -0.577009)} Corner 3629 40132 {normal=(0.876324 -0.00414328 -0.481704)} Corner 1508 40133 {normal=(-0.321326 0.507354 -0.799588)} Corner 1682 40135 {normal=(-0.408748 0.364769 -0.836582)} Corner 1682 40136 {normal=(-0.408748 0.364769 -0.836582)} Corner 1508 40136 {normal=(-0.321326 0.507354 -0.799588)} Corner 1034 40137 {normal=(-0.978102 0.204744 -0.0373693)} Corner 1034 40138 {normal=(-0.978102 0.204744 -0.0373693)} Corner 975 40138 {normal=(-0.947808 0.217501 0.233139)} Corner 975 40139 {normal=(-0.947808 0.217501 0.233139)} Corner 5492 40141 {normal=(0.866638 -0.47336 0.157698)} Corner 5493 40141 {normal=(0.652945 -0.579556 0.487624)} Corner 5493 40142 {normal=(0.652945 -0.579556 0.487624)} Corner 4780 40142 {normal=(0.540246 -0.702367 0.463482)} Corner 4780 40143 {normal=(0.540246 -0.702367 0.463482)} Corner 5449 40143 {normal=(0.89887 -0.350427 0.263122)} Corner 5449 40144 {normal=(0.89887 -0.350427 0.263122)} Corner 5492 40144 {normal=(0.866638 -0.47336 0.157698)} Corner 2426 40146 {normal=(-0.335349 0.342608 -0.877588)} Corner 2426 40147 {normal=(-0.335349 0.342608 -0.877588)} Corner 3811 40147 {normal=(-0.130431 0.357426 -0.924789)} Corner 3811 40148 {normal=(-0.130431 0.357426 -0.924789)} Corner 1448 40150 {normal=(-0.844464 0.27469 -0.459812)} Corner 1448 40151 {normal=(-0.844464 0.27469 -0.459812)} Corner 1627 40151 {normal=(-0.506298 0.271281 -0.818577)} Corner 1627 40152 {normal=(-0.506298 0.271281 -0.818577)} Corner 1485 40155 {normal=(-0.446804 0.0578374 0.89276)} Corner 1485 40156 {normal=(-0.446804 0.0578374 0.89276)} Corner 1161 40157 {normal=(-0.736123 0.398545 -0.547069)} Corner 1161 40160 {normal=(-0.736123 0.398545 -0.547069)} Corner 1485 40161 {normal=(-0.446804 0.0578374 0.89276)} Corner 1485 40164 {normal=(-0.446804 0.0578374 0.89276)} Corner 1682 40169 {normal=(-0.408748 0.364769 -0.836582)} Corner 1748 40171 {normal=(-0.323791 0.18847 -0.927167)} Corner 1748 40172 {normal=(-0.323791 0.18847 -0.927167)} Corner 1682 40172 {normal=(-0.408748 0.364769 -0.836582)} Corner 3796 40173 {normal=(0.31112 -0.619302 -0.720881)} Corner 3715 40173 {normal=(0.301679 -0.60874 -0.733775)} Corner 3715 40174 {normal=(0.301679 -0.60874 -0.733775)} Corner 5494 40174 {normal=(0.32368 -0.633194 -0.703062)} Corner 5494 40175 {normal=(0.32368 -0.633194 -0.703062)} Corner 5491 40175 {normal=(0.32368 -0.633194 -0.703062)} Corner 5491 40176 {normal=(0.32368 -0.633194 -0.703062)} Corner 3796 40176 {normal=(0.31112 -0.619302 -0.720881)} Corner 3811 40185 {normal=(-0.130431 0.357426 -0.924789)} Corner 5502 40185 {normal=(2.34801e-09 0.357617 -0.933868)} Corner 5502 40186 {normal=(2.34801e-09 0.357617 -0.933868)} Corner 3811 40188 {normal=(-0.130431 0.357426 -0.924789)} Corner 1663 40190 {normal=(-0.601774 0.322128 -0.730823)} Corner 1663 40191 {normal=(-0.601774 0.322128 -0.730823)} Corner 2426 40191 {normal=(-0.335349 0.342608 -0.877588)} Corner 2426 40192 {normal=(-0.335349 0.342608 -0.877588)} Corner 1466 40201 {normal=(-0.878715 0.225037 0.420973)} Corner 1579 40203 {normal=(-0.542388 0.164038 0.823958)} Corner 1579 40204 {normal=(-0.542388 0.164038 0.823958)} Corner 1466 40204 {normal=(-0.878715 0.225037 0.420973)} Corner 5299 40205 {normal=(0.947636 -0.304113 0.0974719)} Corner 5490 40205 {normal=(0.901058 -0.428475 0.0671156)} Corner 5490 40206 {normal=(0.901058 -0.428475 0.0671156)} Corner 5492 40206 {normal=(0.866638 -0.47336 0.157698)} Corner 5492 40207 {normal=(0.866638 -0.47336 0.157698)} Corner 5449 40207 {normal=(0.89887 -0.350427 0.263122)} Corner 5449 40208 {normal=(0.89887 -0.350427 0.263122)} Corner 5299 40208 {normal=(0.947636 -0.304113 0.0974719)} Corner 4621 40210 {normal=(-0.0975141 -0.410504 0.90663)} Corner 4621 40211 {normal=(-0.0975141 -0.410504 0.90663)} Corner 5495 40211 {normal=(2.20046e-09 -0.395188 0.9186)} Corner 5495 40212 {normal=(2.20046e-09 -0.395188 0.9186)} Corner 1485 40213 {normal=(-0.446804 0.0578374 0.89276)} Corner 1609 40215 {normal=(-0.394128 0.0946903 0.914165)} Corner 1609 40216 {normal=(-0.394128 0.0946903 0.914165)} Corner 1485 40216 {normal=(-0.446804 0.0578374 0.89276)} Corner 3824 40226 {normal=(-0.281157 0.0446223 0.958624)} Corner 3824 40227 {normal=(-0.281157 0.0446223 0.958624)} Corner 2555 40227 {normal=(-0.511872 0.0738754 0.855879)} Corner 2555 40228 {normal=(-0.511872 0.0738754 0.855879)} Corner 5299 40229 {normal=(0.947636 -0.304113 0.0974719)} Corner 5449 40229 {normal=(0.89887 -0.350427 0.263122)} Corner 5449 40230 {normal=(0.89887 -0.350427 0.263122)} Corner 5324 40231 {normal=(0.975171 -0.0963855 0.199378)} Corner 5324 40232 {normal=(0.975171 -0.0963855 0.199378)} Corner 5299 40232 {normal=(0.947636 -0.304113 0.0974719)} Corner 1161 40249 {normal=(-0.736123 0.398545 -0.547069)} Corner 978 40249 {normal=(-0.814627 0.477958 -0.328541)} Corner 978 40250 {normal=(-0.814627 0.477958 -0.328541)} Corner 835 40250 {normal=(-0.814749 0.476471 -0.330393)} Corner 835 40251 {normal=(-0.814749 0.476471 -0.330393)} Corner 979 40251 {normal=(-0.879041 0.328372 -0.345629)} Corner 979 40252 {normal=(-0.879041 0.328372 -0.345629)} Corner 1161 40252 {normal=(-0.736123 0.398545 -0.547069)} Corner 1031 40253 {normal=(-0.602655 0.540177 -0.58738)} Corner 1161 40253 {normal=(-0.736123 0.398545 -0.547069)} Corner 1161 40254 {normal=(-0.736123 0.398545 -0.547069)} Corner 1031 40256 {normal=(-0.602655 0.540177 -0.58738)} Corner 1564 40257 {normal=(-0.388515 -0.192574 0.901094)} Corner 1564 40258 {normal=(-0.388515 -0.192574 0.901094)} Corner 1363 40258 {normal=(-0.585382 -0.100991 0.804443)} Corner 1363 40259 {normal=(-0.585382 -0.100991 0.804443)} Corner 1871 40261 {normal=(-0.215044 0.0403985 0.975768)} Corner 1564 40261 {normal=(-0.466976 -0.0365867 0.883513)} Corner 1564 40262 {normal=(-0.466976 -0.0365867 0.883513)} Corner 1871 40264 {normal=(-0.215044 0.0403985 0.975768)} Corner 3947 40266 {normal=(-0.19233 0.0563699 -0.97971)} Corner 3947 40267 {normal=(-0.19233 0.0563699 -0.97971)} Corner 5524 40267 {normal=(0 0.0352256 -0.999379)} Corner 5524 40268 {normal=(0 0.0352256 -0.999379)} Corner 1785 40269 {normal=(-0.381727 0.0765036 -0.921103)} Corner 1700 40269 {normal=(-0.362049 0.0782298 -0.928871)} Corner 1700 40270 {normal=(-0.362049 0.0782298 -0.928871)} Corner 3947 40270 {normal=(-0.19233 0.0563699 -0.97971)} Corner 3947 40271 {normal=(-0.19233 0.0563699 -0.97971)} Corner 1785 40272 {normal=(-0.381727 0.0765036 -0.921103)} Corner 9665 40277 {normal=(0.935039 -0.152174 -0.320226)} Corner 9654 40277 {normal=(0.935039 -0.152174 -0.320226)} Corner 9654 40278 {normal=(0.935039 -0.152174 -0.320226)} Corner 9876 40278 {normal=(0.935041 -0.152167 -0.320225)} Corner 9876 40279 {normal=(0.935041 -0.152167 -0.320225)} Corner 9719 40279 {normal=(0.935023 -0.152187 -0.320266)} Corner 9719 40280 {normal=(0.935023 -0.152187 -0.320266)} Corner 9665 40280 {normal=(0.935039 -0.152174 -0.320226)} Corner 9826 40281 {normal=(0.935015 -0.152195 -0.320288)} Corner 9719 40281 {normal=(0.935023 -0.152187 -0.320266)} Corner 9719 40282 {normal=(0.935023 -0.152187 -0.320266)} Corner 9876 40282 {normal=(0.935041 -0.152167 -0.320225)} Corner 9876 40283 {normal=(0.935041 -0.152167 -0.320225)} Corner 9918 40283 {normal=(0.935044 -0.152154 -0.320223)} Corner 9918 40284 {normal=(0.935044 -0.152154 -0.320223)} Corner 9826 40284 {normal=(0.935015 -0.152195 -0.320288)} Corner 9964 40285 {normal=(0.935076 -0.152108 -0.320149)} Corner 9918 40285 {normal=(0.935044 -0.152154 -0.320223)} Corner 9918 40286 {normal=(0.935044 -0.152154 -0.320223)} Corner 9876 40286 {normal=(0.935041 -0.152167 -0.320225)} Corner 9876 40287 {normal=(0.935041 -0.152167 -0.320225)} Corner 10005 40287 {normal=(0.935065 -0.152129 -0.320172)} Corner 10005 40288 {normal=(0.935065 -0.152129 -0.320172)} Corner 9964 40288 {normal=(0.935076 -0.152108 -0.320149)} Corner 10037 40289 {normal=(0.935042 -0.152172 -0.32022)} Corner 10005 40289 {normal=(0.935065 -0.152129 -0.320172)} Corner 10005 40290 {normal=(0.935065 -0.152129 -0.320172)} Corner 9876 40290 {normal=(0.935041 -0.152167 -0.320225)} Corner 9876 40291 {normal=(0.935041 -0.152167 -0.320225)} Corner 10019 40291 {normal=(0.935042 -0.152172 -0.320219)} Corner 10019 40292 {normal=(0.935042 -0.152172 -0.320219)} Corner 10037 40292 {normal=(0.935042 -0.152172 -0.32022)} Corner 9994 40293 {normal=(0.935042 -0.152173 -0.320219)} Corner 10019 40293 {normal=(0.935042 -0.152172 -0.320219)} Corner 10019 40294 {normal=(0.935042 -0.152172 -0.320219)} Corner 9876 40294 {normal=(0.935041 -0.152167 -0.320225)} Corner 9876 40295 {normal=(0.935041 -0.152167 -0.320225)} Corner 9949 40295 {normal=(0.935042 -0.152173 -0.320219)} Corner 9949 40296 {normal=(0.935042 -0.152173 -0.320219)} Corner 9994 40296 {normal=(0.935042 -0.152173 -0.320219)} Corner 1040 40305 {normal=(-0.93504 -0.152176 -0.320223)} Corner 1008 40305 {normal=(-0.93504 -0.152175 -0.320222)} Corner 1008 40306 {normal=(-0.93504 -0.152175 -0.320222)} Corner 1096 40306 {normal=(-0.935041 -0.152169 -0.320224)} Corner 1096 40307 {normal=(-0.935041 -0.152169 -0.320224)} Corner 1081 40307 {normal=(-0.935039 -0.15215 -0.320237)} Corner 1081 40308 {normal=(-0.935039 -0.15215 -0.320237)} Corner 1040 40308 {normal=(-0.93504 -0.152176 -0.320223)} Corner 1127 40309 {normal=(-0.935039 -0.152138 -0.320243)} Corner 1081 40309 {normal=(-0.935039 -0.15215 -0.320237)} Corner 1081 40310 {normal=(-0.935039 -0.15215 -0.320237)} Corner 1096 40310 {normal=(-0.935041 -0.152169 -0.320224)} Corner 1096 40311 {normal=(-0.935041 -0.152169 -0.320224)} Corner 1219 40311 {normal=(-0.93504 -0.152157 -0.320231)} Corner 1219 40312 {normal=(-0.93504 -0.152157 -0.320231)} Corner 1127 40312 {normal=(-0.935039 -0.152138 -0.320243)} Corner 1326 40313 {normal=(-0.935041 -0.152173 -0.32022)} Corner 1219 40313 {normal=(-0.93504 -0.152157 -0.320231)} Corner 1219 40314 {normal=(-0.93504 -0.152157 -0.320231)} Corner 1096 40314 {normal=(-0.935041 -0.152169 -0.320224)} Corner 1096 40315 {normal=(-0.935041 -0.152169 -0.320224)} Corner 1380 40315 {normal=(-0.935041 -0.152172 -0.320222)} Corner 1380 40316 {normal=(-0.935041 -0.152172 -0.320222)} Corner 1326 40316 {normal=(-0.935041 -0.152173 -0.32022)} Corner 1391 40317 {normal=(-0.93504 -0.152171 -0.320224)} Corner 1380 40317 {normal=(-0.935041 -0.152172 -0.320222)} Corner 1380 40318 {normal=(-0.935041 -0.152172 -0.320222)} Corner 1096 40318 {normal=(-0.935041 -0.152169 -0.320224)} Corner 1096 40319 {normal=(-0.935041 -0.152169 -0.320224)} Corner 1362 40319 {normal=(-0.93504 -0.152174 -0.320223)} Corner 1362 40320 {normal=(-0.93504 -0.152174 -0.320223)} Corner 1391 40320 {normal=(-0.93504 -0.152171 -0.320224)} Corner 1282 40321 {normal=(-0.935041 -0.152182 -0.320217)} Corner 1362 40321 {normal=(-0.93504 -0.152174 -0.320223)} Corner 1362 40322 {normal=(-0.93504 -0.152174 -0.320223)} Corner 1096 40322 {normal=(-0.935041 -0.152169 -0.320224)} Corner 1096 40323 {normal=(-0.935041 -0.152169 -0.320224)} Corner 1169 40323 {normal=(-0.935041 -0.152182 -0.320217)} Corner 1169 40324 {normal=(-0.935041 -0.152182 -0.320217)} Corner 1282 40324 {normal=(-0.935041 -0.152182 -0.320217)} Corner 9345 40329 {normal=(0.340103 -0.668111 -0.661784)} Corner 7093 40329 {normal=(0.161408 -0.712529 -0.682825)} Corner 7093 40330 {normal=(0.161408 -0.712529 -0.682825)} Corner 9345 40332 {normal=(0.340103 -0.668111 -0.661784)} Corner 5524 40333 {normal=(0 -0.740768 -0.671761)} Corner 7093 40335 {normal=(0.161408 -0.712529 -0.682825)} Corner 7093 40336 {normal=(0.161408 -0.712529 -0.682825)} Corner 5524 40336 {normal=(0 -0.740768 -0.671761)} Corner 9174 40337 {normal=(0.0412395 -0.730686 0.681467)} Corner 9174 40338 {normal=(0.0412395 -0.730686 0.681467)} Corner 9481 40338 {normal=(0.206474 -0.819079 0.535236)} Corner 9481 40339 {normal=(0.206474 -0.819079 0.535236)} Corner 9481 40341 {normal=(0.206474 -0.819079 0.535236)} Corner 9481 40342 {normal=(0.206474 -0.819079 0.535236)} Corner 9682 40342 {normal=(0.278151 -0.865123 0.417366)} Corner 9682 40343 {normal=(0.278151 -0.865123 0.417366)} Corner 10053 40345 {normal=(0.150317 -0.692535 -0.705549)} Corner 10019 40345 {normal=(0.150522 -0.693715 -0.704345)} Corner 10019 40346 {normal=(0.150522 -0.693715 -0.704345)} Corner 9994 40346 {normal=(0.198354 -0.852127 -0.484288)} Corner 9994 40347 {normal=(0.198354 -0.852127 -0.484288)} Corner 10020 40347 {normal=(0.198567 -0.852533 -0.483486)} Corner 10020 40348 {normal=(0.198567 -0.852533 -0.483486)} Corner 10053 40348 {normal=(0.150317 -0.692535 -0.705549)} Corner 10071 40349 {normal=(0.143243 -0.35411 -0.924169)} Corner 10037 40349 {normal=(0.143271 -0.353177 -0.924521)} Corner 10037 40350 {normal=(0.143271 -0.353177 -0.924521)} Corner 10019 40350 {normal=(0.150522 -0.693715 -0.704345)} Corner 10019 40351 {normal=(0.150522 -0.693715 -0.704345)} Corner 10053 40351 {normal=(0.150317 -0.692535 -0.705549)} Corner 10053 40352 {normal=(0.150317 -0.692535 -0.705549)} Corner 10071 40352 {normal=(0.143243 -0.35411 -0.924169)} Corner 10036 40353 {normal=(0.179795 0.0637054 -0.981639)} Corner 10005 40353 {normal=(0.179927 0.0643815 -0.981571)} Corner 10005 40354 {normal=(0.179927 0.0643815 -0.981571)} Corner 10037 40354 {normal=(0.143271 -0.353177 -0.924521)} Corner 10037 40355 {normal=(0.143271 -0.353177 -0.924521)} Corner 10071 40355 {normal=(0.143243 -0.35411 -0.924169)} Corner 10071 40356 {normal=(0.143243 -0.35411 -0.924169)} Corner 10036 40356 {normal=(0.179795 0.0637054 -0.981639)} Corner 9985 40357 {normal=(0.272554 0.386691 -0.881013)} Corner 9964 40357 {normal=(0.271565 0.384105 -0.882449)} Corner 9964 40358 {normal=(0.271565 0.384105 -0.882449)} Corner 10005 40358 {normal=(0.179927 0.0643815 -0.981571)} Corner 10005 40359 {normal=(0.179927 0.0643815 -0.981571)} Corner 10036 40359 {normal=(0.179795 0.0637054 -0.981639)} Corner 10036 40360 {normal=(0.179795 0.0637054 -0.981639)} Corner 9985 40360 {normal=(0.272554 0.386691 -0.881013)} Corner 9940 40361 {normal=(0.386836 0.640283 -0.663623)} Corner 9918 40361 {normal=(0.39197 0.649512 -0.651531)} Corner 9918 40362 {normal=(0.39197 0.649512 -0.651531)} Corner 9964 40362 {normal=(0.271565 0.384105 -0.882449)} Corner 9964 40363 {normal=(0.271565 0.384105 -0.882449)} Corner 9985 40363 {normal=(0.272554 0.386691 -0.881013)} Corner 9985 40364 {normal=(0.272554 0.386691 -0.881013)} Corner 9940 40364 {normal=(0.386836 0.640283 -0.663623)} Corner 9851 40365 {normal=(0.54278 0.784322 -0.300382)} Corner 9826 40365 {normal=(0.540852 0.783778 -0.305241)} Corner 9826 40366 {normal=(0.540852 0.783778 -0.305241)} Corner 9918 40366 {normal=(0.39197 0.649512 -0.651531)} Corner 9918 40367 {normal=(0.39197 0.649512 -0.651531)} Corner 9940 40367 {normal=(0.386836 0.640283 -0.663623)} Corner 9940 40368 {normal=(0.386836 0.640283 -0.663623)} Corner 9851 40368 {normal=(0.54278 0.784322 -0.300382)} Corner 9743 40369 {normal=(0.684877 0.720019 0.111873)} Corner 9719 40369 {normal=(0.682568 0.723341 0.104306)} Corner 9719 40370 {normal=(0.682568 0.723341 0.104306)} Corner 9826 40370 {normal=(0.540852 0.783778 -0.305241)} Corner 9826 40371 {normal=(0.540852 0.783778 -0.305241)} Corner 9851 40371 {normal=(0.54278 0.784322 -0.300382)} Corner 9851 40372 {normal=(0.54278 0.784322 -0.300382)} Corner 9743 40372 {normal=(0.684877 0.720019 0.111873)} Corner 9697 40373 {normal=(0.758284 0.502711 0.415074)} Corner 9665 40373 {normal=(0.757974 0.504593 0.413354)} Corner 9665 40374 {normal=(0.757974 0.504593 0.413354)} Corner 9719 40374 {normal=(0.682568 0.723341 0.104306)} Corner 9719 40375 {normal=(0.682568 0.723341 0.104306)} Corner 9743 40375 {normal=(0.684877 0.720019 0.111873)} Corner 9743 40376 {normal=(0.684877 0.720019 0.111873)} Corner 9697 40376 {normal=(0.758284 0.502711 0.415074)} Corner 9687 40377 {normal=(0.774711 0.206432 0.597669)} Corner 9654 40377 {normal=(0.774731 0.207126 0.597404)} Corner 9654 40378 {normal=(0.774731 0.207126 0.597404)} Corner 9665 40378 {normal=(0.757974 0.504593 0.413354)} Corner 9665 40379 {normal=(0.757974 0.504593 0.413354)} Corner 9697 40379 {normal=(0.758284 0.502711 0.415074)} Corner 9697 40380 {normal=(0.758284 0.502711 0.415074)} Corner 9687 40380 {normal=(0.774711 0.206432 0.597669)} Corner 9708 40381 {normal=(0.737201 -0.149584 0.658907)} Corner 9683 40381 {normal=(0.736418 -0.153786 0.658816)} Corner 9683 40382 {normal=(0.736418 -0.153786 0.658816)} Corner 9654 40382 {normal=(0.774731 0.207126 0.597404)} Corner 9654 40383 {normal=(0.774731 0.207126 0.597404)} Corner 9687 40383 {normal=(0.774711 0.206432 0.597669)} Corner 9687 40384 {normal=(0.774711 0.206432 0.597669)} Corner 9708 40384 {normal=(0.737201 -0.149584 0.658907)} Corner 9792 40385 {normal=(0.631377 -0.54717 0.549517)} Corner 9763 40385 {normal=(0.6289 -0.553617 0.545888)} Corner 9763 40386 {normal=(0.6289 -0.553617 0.545888)} Corner 9683 40386 {normal=(0.736418 -0.153786 0.658816)} Corner 9683 40387 {normal=(0.736418 -0.153786 0.658816)} Corner 9708 40387 {normal=(0.737201 -0.149584 0.658907)} Corner 9708 40388 {normal=(0.737201 -0.149584 0.658907)} Corner 9792 40388 {normal=(0.631377 -0.54717 0.549517)} Corner 9907 40389 {normal=(0.467371 -0.851787 0.236694)} Corner 9876 40389 {normal=(0.467126 -0.85208 0.236123)} Corner 9876 40390 {normal=(0.467126 -0.85208 0.236123)} Corner 9763 40390 {normal=(0.6289 -0.553617 0.545888)} Corner 9763 40391 {normal=(0.6289 -0.553617 0.545888)} Corner 9792 40391 {normal=(0.631377 -0.54717 0.549517)} Corner 9792 40392 {normal=(0.631377 -0.54717 0.549517)} Corner 9907 40392 {normal=(0.467371 -0.851787 0.236694)} Corner 9971 40393 {normal=(0.308215 -0.937009 -0.164369)} Corner 9949 40393 {normal=(0.305768 -0.936592 -0.171178)} Corner 9949 40394 {normal=(0.305768 -0.936592 -0.171178)} Corner 9876 40394 {normal=(0.467126 -0.85208 0.236123)} Corner 9876 40395 {normal=(0.467126 -0.85208 0.236123)} Corner 9907 40395 {normal=(0.467371 -0.851787 0.236694)} Corner 9907 40396 {normal=(0.467371 -0.851787 0.236694)} Corner 9971 40396 {normal=(0.308215 -0.937009 -0.164369)} Corner 10020 40397 {normal=(0.198567 -0.852533 -0.483486)} Corner 9994 40397 {normal=(0.198354 -0.852127 -0.484288)} Corner 9994 40398 {normal=(0.198354 -0.852127 -0.484288)} Corner 9949 40398 {normal=(0.305768 -0.936592 -0.171178)} Corner 9949 40399 {normal=(0.305768 -0.936592 -0.171178)} Corner 9971 40399 {normal=(0.308215 -0.937009 -0.164369)} Corner 9971 40400 {normal=(0.308215 -0.937009 -0.164369)} Corner 10020 40400 {normal=(0.198567 -0.852533 -0.483486)} Corner 10068 40401 {normal=(0.864896 -0.270132 -0.423064)} Corner 10053 40401 {normal=(0.864979 -0.270614 -0.422586)} Corner 10053 40402 {normal=(0.864979 -0.270614 -0.422586)} Corner 10020 40402 {normal=(0.874237 -0.301601 -0.380456)} Corner 10020 40403 {normal=(0.874237 -0.301601 -0.380456)} Corner 10032 40403 {normal=(0.874325 -0.301765 -0.380122)} Corner 10032 40404 {normal=(0.874325 -0.301765 -0.380122)} Corner 10068 40404 {normal=(0.864896 -0.270132 -0.423064)} Corner 10087 40405 {normal=(0.863621 -0.203198 -0.461378)} Corner 10071 40405 {normal=(0.863631 -0.202864 -0.461506)} Corner 10071 40406 {normal=(0.863631 -0.202864 -0.461506)} Corner 10053 40406 {normal=(0.864979 -0.270614 -0.422586)} Corner 10053 40407 {normal=(0.864979 -0.270614 -0.422586)} Corner 10068 40407 {normal=(0.864896 -0.270132 -0.423064)} Corner 10068 40408 {normal=(0.864896 -0.270132 -0.423064)} Corner 10087 40408 {normal=(0.863621 -0.203198 -0.461378)} Corner 10048 40409 {normal=(0.870592 -0.123756 -0.476186)} Corner 10036 40409 {normal=(0.870646 -0.123477 -0.47616)} Corner 10036 40410 {normal=(0.870646 -0.123477 -0.47616)} Corner 10071 40410 {normal=(0.863631 -0.202864 -0.461506)} Corner 10071 40411 {normal=(0.863631 -0.202864 -0.461506)} Corner 10087 40411 {normal=(0.863621 -0.203198 -0.461378)} Corner 10087 40412 {normal=(0.863621 -0.203198 -0.461378)} Corner 10048 40412 {normal=(0.870592 -0.123756 -0.476186)} Corner 9995 40413 {normal=(0.888337 -0.0620602 -0.454979)} Corner 9985 40413 {normal=(0.887925 -0.0631296 -0.455636)} Corner 9985 40414 {normal=(0.887925 -0.0631296 -0.455636)} Corner 10036 40414 {normal=(0.870646 -0.123477 -0.47616)} Corner 10036 40415 {normal=(0.870646 -0.123477 -0.47616)} Corner 10048 40415 {normal=(0.870592 -0.123756 -0.476186)} Corner 10048 40416 {normal=(0.870592 -0.123756 -0.476186)} Corner 9995 40416 {normal=(0.888337 -0.0620602 -0.454979)} Corner 9945 40417 {normal=(0.909642 -0.0143842 -0.415144)} Corner 9940 40417 {normal=(0.911765 -0.0104453 -0.410579)} Corner 9940 40418 {normal=(0.911765 -0.0104453 -0.410579)} Corner 9985 40418 {normal=(0.887925 -0.0631296 -0.455636)} Corner 9985 40419 {normal=(0.887925 -0.0631296 -0.455636)} Corner 9995 40419 {normal=(0.888337 -0.0620602 -0.454979)} Corner 9995 40420 {normal=(0.888337 -0.0620602 -0.454979)} Corner 9945 40420 {normal=(0.909642 -0.0143842 -0.415144)} Corner 9853 40421 {normal=(0.939089 0.0119611 -0.343467)} Corner 9851 40421 {normal=(0.93832 0.0118371 -0.345564)} Corner 9851 40422 {normal=(0.93832 0.0118371 -0.345564)} Corner 9940 40422 {normal=(0.911765 -0.0104453 -0.410579)} Corner 9940 40423 {normal=(0.911765 -0.0104453 -0.410579)} Corner 9945 40423 {normal=(0.909642 -0.0143842 -0.415144)} Corner 9945 40424 {normal=(0.909642 -0.0143842 -0.415144)} Corner 9853 40424 {normal=(0.939089 0.0119611 -0.343467)} Corner 9736 40425 {normal=(0.964105 -0.00323172 -0.265502)} Corner 9743 40425 {normal=(0.963314 -0.00182477 -0.268372)} Corner 9743 40426 {normal=(0.963314 -0.00182477 -0.268372)} Corner 9851 40426 {normal=(0.93832 0.0118371 -0.345564)} Corner 9851 40427 {normal=(0.93832 0.0118371 -0.345564)} Corner 9853 40427 {normal=(0.939089 0.0119611 -0.343467)} Corner 9853 40428 {normal=(0.939089 0.0119611 -0.343467)} Corner 9736 40428 {normal=(0.964105 -0.00323172 -0.265502)} Corner 9691 40429 {normal=(0.976586 -0.0441967 -0.210539)} Corner 9697 40429 {normal=(0.976481 -0.043487 -0.211171)} Corner 9697 40430 {normal=(0.976481 -0.043487 -0.211171)} Corner 9743 40430 {normal=(0.963314 -0.00182477 -0.268372)} Corner 9743 40431 {normal=(0.963314 -0.00182477 -0.268372)} Corner 9736 40431 {normal=(0.964105 -0.00323172 -0.265502)} Corner 9736 40432 {normal=(0.964105 -0.00323172 -0.265502)} Corner 9691 40432 {normal=(0.976586 -0.0441967 -0.210539)} Corner 9673 40433 {normal=(0.979145 -0.0986343 -0.177612)} Corner 9687 40433 {normal=(0.979153 -0.0983773 -0.177709)} Corner 9687 40434 {normal=(0.979153 -0.0983773 -0.177709)} Corner 9697 40434 {normal=(0.976481 -0.043487 -0.211171)} Corner 9697 40435 {normal=(0.976481 -0.043487 -0.211171)} Corner 9691 40435 {normal=(0.976586 -0.0441967 -0.210539)} Corner 9691 40436 {normal=(0.976586 -0.0441967 -0.210539)} Corner 9673 40436 {normal=(0.979145 -0.0986343 -0.177612)} Corner 9704 40437 {normal=(0.972436 -0.163402 -0.16634)} Corner 9708 40437 {normal=(0.972176 -0.164938 -0.166342)} Corner 9708 40438 {normal=(0.972176 -0.164938 -0.166342)} Corner 9687 40438 {normal=(0.979153 -0.0983773 -0.177709)} Corner 9687 40439 {normal=(0.979153 -0.0983773 -0.177709)} Corner 9673 40439 {normal=(0.979145 -0.0986343 -0.177612)} Corner 9673 40440 {normal=(0.979145 -0.0986343 -0.177612)} Corner 9704 40440 {normal=(0.972436 -0.163402 -0.16634)} Corner 9791 40441 {normal=(0.953758 -0.236636 -0.185334)} Corner 9792 40441 {normal=(0.952865 -0.239189 -0.186648)} Corner 9792 40442 {normal=(0.952865 -0.239189 -0.186648)} Corner 9708 40442 {normal=(0.972176 -0.164938 -0.166342)} Corner 9708 40443 {normal=(0.972176 -0.164938 -0.166342)} Corner 9704 40443 {normal=(0.972436 -0.163402 -0.16634)} Corner 9704 40444 {normal=(0.972436 -0.163402 -0.16634)} Corner 9791 40444 {normal=(0.953758 -0.236636 -0.185334)} Corner 9912 40445 {normal=(0.924181 -0.295222 -0.242348)} Corner 9907 40445 {normal=(0.924073 -0.295353 -0.242602)} Corner 9907 40446 {normal=(0.924073 -0.295353 -0.242602)} Corner 9792 40446 {normal=(0.952865 -0.239189 -0.186648)} Corner 9792 40447 {normal=(0.952865 -0.239189 -0.186648)} Corner 9791 40447 {normal=(0.953758 -0.236636 -0.185334)} Corner 9791 40448 {normal=(0.953758 -0.236636 -0.185334)} Corner 9912 40448 {normal=(0.924181 -0.295222 -0.242348)} Corner 9976 40449 {normal=(0.895049 -0.313586 -0.317099)} Corner 9971 40449 {normal=(0.894084 -0.313538 -0.319856)} Corner 9971 40450 {normal=(0.894084 -0.313538 -0.319856)} Corner 9907 40450 {normal=(0.924073 -0.295353 -0.242602)} Corner 9907 40451 {normal=(0.924073 -0.295353 -0.242602)} Corner 9912 40451 {normal=(0.924181 -0.295222 -0.242348)} Corner 9912 40452 {normal=(0.924181 -0.295222 -0.242348)} Corner 9976 40452 {normal=(0.895049 -0.313586 -0.317099)} Corner 10032 40453 {normal=(0.874325 -0.301765 -0.380122)} Corner 10020 40453 {normal=(0.874237 -0.301601 -0.380456)} Corner 10020 40454 {normal=(0.874237 -0.301601 -0.380456)} Corner 9971 40454 {normal=(0.894084 -0.313538 -0.319856)} Corner 9971 40455 {normal=(0.894084 -0.313538 -0.319856)} Corner 9976 40455 {normal=(0.895049 -0.313586 -0.317099)} Corner 9976 40456 {normal=(0.895049 -0.313586 -0.317099)} Corner 10032 40456 {normal=(0.874325 -0.301765 -0.380122)} Corner 10068 40457 {normal=(0.961596 0.262837 0.0790556)} Corner 10068 40458 {normal=(0.961596 0.262837 0.0790556)} Corner 10032 40458 {normal=(0.930076 0.362915 -0.0570221)} Corner 10032 40459 {normal=(0.930076 0.362915 -0.0570221)} Corner 10087 40461 {normal=(0.977742 0.043989 0.205147)} Corner 10087 40462 {normal=(0.977742 0.043989 0.205147)} Corner 10068 40462 {normal=(0.961596 0.262837 0.0790556)} Corner 10068 40463 {normal=(0.961596 0.262837 0.0790556)} Corner 10048 40465 {normal=(0.944116 -0.212438 0.252021)} Corner 10048 40466 {normal=(0.944116 -0.212438 0.252021)} Corner 10087 40466 {normal=(0.977742 0.043989 0.205147)} Corner 10087 40467 {normal=(0.977742 0.043989 0.205147)} Corner 9995 40469 {normal=(0.893325 -0.409016 0.186218)} Corner 9995 40470 {normal=(0.893325 -0.409016 0.186218)} Corner 10048 40470 {normal=(0.944116 -0.212438 0.252021)} Corner 10048 40471 {normal=(0.944116 -0.212438 0.252021)} Corner 9945 40473 {normal=(0.815434 -0.577298 0.0423699)} Corner 9945 40474 {normal=(0.815434 -0.577298 0.0423699)} Corner 9995 40474 {normal=(0.893325 -0.409016 0.186218)} Corner 9995 40475 {normal=(0.893325 -0.409016 0.186218)} Corner 9853 40477 {normal=(0.734751 -0.655863 -0.173162)} Corner 9853 40478 {normal=(0.734751 -0.655863 -0.173162)} Corner 9945 40478 {normal=(0.815434 -0.577298 0.0423699)} Corner 9945 40479 {normal=(0.815434 -0.577298 0.0423699)} Corner 9736 40481 {normal=(0.660614 -0.615839 -0.429339)} Corner 9736 40482 {normal=(0.660614 -0.615839 -0.429339)} Corner 9853 40482 {normal=(0.734751 -0.655863 -0.173162)} Corner 9853 40483 {normal=(0.734751 -0.655863 -0.173162)} Corner 9691 40485 {normal=(0.620976 -0.481069 -0.618839)} Corner 9691 40486 {normal=(0.620976 -0.481069 -0.618839)} Corner 9736 40486 {normal=(0.660614 -0.615839 -0.429339)} Corner 9736 40487 {normal=(0.660614 -0.615839 -0.429339)} Corner 9673 40489 {normal=(0.61354 -0.300894 -0.73009)} Corner 9673 40490 {normal=(0.61354 -0.300894 -0.73009)} Corner 9691 40490 {normal=(0.620976 -0.481069 -0.618839)} Corner 9691 40491 {normal=(0.620976 -0.481069 -0.618839)} Corner 9704 40493 {normal=(0.63609 -0.0818999 -0.767256)} Corner 9704 40494 {normal=(0.63609 -0.0818999 -0.767256)} Corner 9673 40494 {normal=(0.61354 -0.300894 -0.73009)} Corner 9673 40495 {normal=(0.61354 -0.300894 -0.73009)} Corner 9791 40497 {normal=(0.696882 0.162188 -0.698606)} Corner 9791 40498 {normal=(0.696882 0.162188 -0.698606)} Corner 9704 40498 {normal=(0.63609 -0.0818999 -0.767256)} Corner 9704 40499 {normal=(0.63609 -0.0818999 -0.767256)} Corner 9912 40501 {normal=(0.786498 0.346492 -0.511239)} Corner 9912 40502 {normal=(0.786498 0.346492 -0.511239)} Corner 9791 40502 {normal=(0.696882 0.162188 -0.698606)} Corner 9791 40503 {normal=(0.696882 0.162188 -0.698606)} Corner 9976 40505 {normal=(0.877639 0.40451 -0.257141)} Corner 9976 40506 {normal=(0.877639 0.40451 -0.257141)} Corner 9912 40506 {normal=(0.786498 0.346492 -0.511239)} Corner 9912 40507 {normal=(0.786498 0.346492 -0.511239)} Corner 10032 40509 {normal=(0.930076 0.362915 -0.0570221)} Corner 10032 40510 {normal=(0.930076 0.362915 -0.0570221)} Corner 9976 40510 {normal=(0.877639 0.40451 -0.257141)} Corner 9976 40511 {normal=(0.877639 0.40451 -0.257141)} Corner 10045 40513 {normal=(0.862315 0.431543 0.264922)} Corner 10006 40515 {normal=(0.818278 0.569813 0.0757287)} Corner 10006 40516 {normal=(0.818278 0.569813 0.0757287)} Corner 10045 40516 {normal=(0.862315 0.431543 0.264922)} Corner 10060 40517 {normal=(0.887285 0.136978 0.440412)} Corner 10045 40519 {normal=(0.862315 0.431543 0.264922)} Corner 10045 40520 {normal=(0.862315 0.431543 0.264922)} Corner 10060 40520 {normal=(0.887285 0.136978 0.440412)} Corner 10023 40521 {normal=(0.838533 -0.215934 0.500236)} Corner 10060 40523 {normal=(0.887285 0.136978 0.440412)} Corner 10060 40524 {normal=(0.887285 0.136978 0.440412)} Corner 10023 40524 {normal=(0.838533 -0.215934 0.500236)} Corner 9970 40525 {normal=(0.76859 -0.490818 0.410326)} Corner 10023 40527 {normal=(0.838533 -0.215934 0.500236)} Corner 10023 40528 {normal=(0.838533 -0.215934 0.500236)} Corner 9970 40528 {normal=(0.76859 -0.490818 0.410326)} Corner 9921 40529 {normal=(0.671172 -0.704484 0.230719)} Corner 9970 40531 {normal=(0.76859 -0.490818 0.410326)} Corner 9970 40532 {normal=(0.76859 -0.490818 0.410326)} Corner 9921 40532 {normal=(0.671172 -0.704484 0.230719)} Corner 9804 40533 {normal=(0.549956 -0.83051 -0.088326)} Corner 9921 40535 {normal=(0.671172 -0.704484 0.230719)} Corner 9921 40536 {normal=(0.671172 -0.704484 0.230719)} Corner 9804 40536 {normal=(0.549956 -0.83051 -0.088326)} Corner 9672 40537 {normal=(0.446972 -0.774972 -0.446805)} Corner 9804 40539 {normal=(0.549956 -0.83051 -0.088326)} Corner 9804 40540 {normal=(0.549956 -0.83051 -0.088326)} Corner 9672 40540 {normal=(0.446972 -0.774972 -0.446805)} Corner 9620 40541 {normal=(0.393668 -0.591485 -0.703683)} Corner 9672 40543 {normal=(0.446972 -0.774972 -0.446805)} Corner 9672 40544 {normal=(0.446972 -0.774972 -0.446805)} Corner 9620 40544 {normal=(0.393668 -0.591485 -0.703683)} Corner 9599 40545 {normal=(0.383541 -0.342221 -0.857777)} Corner 9620 40547 {normal=(0.393668 -0.591485 -0.703683)} Corner 9620 40548 {normal=(0.393668 -0.591485 -0.703683)} Corner 9599 40548 {normal=(0.383541 -0.342221 -0.857777)} Corner 9635 40549 {normal=(0.414119 -0.0429711 -0.909208)} Corner 9599 40551 {normal=(0.383541 -0.342221 -0.857777)} Corner 9599 40552 {normal=(0.383541 -0.342221 -0.857777)} Corner 9635 40552 {normal=(0.414119 -0.0429711 -0.909208)} Corner 9722 40553 {normal=(0.496832 0.29331 -0.816778)} Corner 9635 40555 {normal=(0.414119 -0.0429711 -0.909208)} Corner 9635 40556 {normal=(0.414119 -0.0429711 -0.909208)} Corner 9722 40556 {normal=(0.496832 0.29331 -0.816778)} Corner 9869 40557 {normal=(0.623655 0.555636 -0.549839)} Corner 9722 40559 {normal=(0.496832 0.29331 -0.816778)} Corner 9722 40560 {normal=(0.496832 0.29331 -0.816778)} Corner 9869 40560 {normal=(0.623655 0.555636 -0.549839)} Corner 9953 40561 {normal=(0.746108 0.633005 -0.206462)} Corner 9869 40563 {normal=(0.623655 0.555636 -0.549839)} Corner 9869 40564 {normal=(0.623655 0.555636 -0.549839)} Corner 9953 40564 {normal=(0.746108 0.633005 -0.206462)} Corner 10006 40565 {normal=(0.818278 0.569813 0.0757287)} Corner 9953 40567 {normal=(0.746108 0.633005 -0.206462)} Corner 9953 40568 {normal=(0.746108 0.633005 -0.206462)} Corner 10006 40568 {normal=(0.818278 0.569813 0.0757287)} Corner 10045 40569 {normal=(0.32974 0.704662 0.628269)} Corner 10045 40570 {normal=(0.32974 0.704662 0.628269)} Corner 10006 40570 {normal=(0.272896 0.884774 0.377761)} Corner 10006 40571 {normal=(0.272896 0.884774 0.377761)} Corner 10060 40573 {normal=(0.353176 0.319994 0.879131)} Corner 10060 40574 {normal=(0.353176 0.319994 0.879131)} Corner 10045 40574 {normal=(0.32974 0.704662 0.628269)} Corner 10045 40575 {normal=(0.32974 0.704662 0.628269)} Corner 10023 40577 {normal=(0.297532 -0.154279 0.942164)} Corner 10023 40578 {normal=(0.297532 -0.154279 0.942164)} Corner 10060 40578 {normal=(0.353176 0.319994 0.879131)} Corner 10060 40579 {normal=(0.353176 0.319994 0.879131)} Corner 9970 40581 {normal=(0.200312 -0.518366 0.831367)} Corner 9970 40582 {normal=(0.200312 -0.518366 0.831367)} Corner 10023 40582 {normal=(0.297532 -0.154279 0.942164)} Corner 10023 40583 {normal=(0.297532 -0.154279 0.942164)} Corner 9921 40585 {normal=(0.0672447 -0.810633 0.581681)} Corner 9921 40586 {normal=(0.0672447 -0.810633 0.581681)} Corner 9970 40586 {normal=(0.200312 -0.518366 0.831367)} Corner 9970 40587 {normal=(0.200312 -0.518366 0.831367)} Corner 9804 40589 {normal=(-0.100263 -0.97983 0.17286)} Corner 9804 40590 {normal=(-0.100263 -0.97983 0.17286)} Corner 9921 40590 {normal=(0.0672447 -0.810633 0.581681)} Corner 9921 40591 {normal=(0.0672447 -0.810633 0.581681)} Corner 9672 40593 {normal=(-0.254437 -0.916983 -0.307251)} Corner 9672 40594 {normal=(-0.254437 -0.916983 -0.307251)} Corner 9804 40594 {normal=(-0.100263 -0.97983 0.17286)} Corner 9804 40595 {normal=(-0.100263 -0.97983 0.17286)} Corner 9620 40597 {normal=(-0.335907 -0.669081 -0.662946)} Corner 9620 40598 {normal=(-0.335907 -0.669081 -0.662946)} Corner 9672 40598 {normal=(-0.254437 -0.916983 -0.307251)} Corner 9672 40599 {normal=(-0.254437 -0.916983 -0.307251)} Corner 9599 40601 {normal=(-0.353376 -0.327211 -0.876389)} Corner 9599 40602 {normal=(-0.353376 -0.327211 -0.876389)} Corner 9620 40602 {normal=(-0.335907 -0.669081 -0.662946)} Corner 9620 40603 {normal=(-0.335907 -0.669081 -0.662946)} Corner 9635 40605 {normal=(-0.310063 0.0869038 -0.946736)} Corner 9635 40606 {normal=(-0.310063 0.0869038 -0.946736)} Corner 9599 40606 {normal=(-0.353376 -0.327211 -0.876389)} Corner 9599 40607 {normal=(-0.353376 -0.327211 -0.876389)} Corner 9722 40609 {normal=(-0.190205 0.546764 -0.815397)} Corner 9722 40610 {normal=(-0.190205 0.546764 -0.815397)} Corner 9635 40610 {normal=(-0.310063 0.0869038 -0.946736)} Corner 9635 40611 {normal=(-0.310063 0.0869038 -0.946736)} Corner 9869 40613 {normal=(-0.00964753 0.892084 -0.451767)} Corner 9869 40614 {normal=(-0.00964753 0.892084 -0.451767)} Corner 9722 40614 {normal=(-0.190205 0.546764 -0.815397)} Corner 9722 40615 {normal=(-0.190205 0.546764 -0.815397)} Corner 9953 40617 {normal=(0.16498 0.98619 0.014546)} Corner 9953 40618 {normal=(0.16498 0.98619 0.014546)} Corner 9869 40618 {normal=(-0.00964753 0.892084 -0.451767)} Corner 9869 40619 {normal=(-0.00964753 0.892084 -0.451767)} Corner 10006 40621 {normal=(0.272896 0.884774 0.377761)} Corner 10006 40622 {normal=(0.272896 0.884774 0.377761)} Corner 9953 40622 {normal=(0.16498 0.98619 0.014546)} Corner 9953 40623 {normal=(0.16498 0.98619 0.014546)} Corner 8737 40625 {normal=(-0.453887 0.843881 0.286096)} Corner 9238 40625 {normal=(-0.626164 0.709044 0.324307)} Corner 9238 40626 {normal=(-0.626164 0.709044 0.324307)} Corner 8897 40627 {normal=(-0.259373 0.964543 0.0488025)} Corner 8897 40628 {normal=(-0.259373 0.964543 0.0488025)} Corner 8737 40628 {normal=(-0.453887 0.843881 0.286096)} Corner 8897 40629 {normal=(-0.259373 0.964543 0.0488025)} Corner 9339 40630 {normal=(-0.494102 0.851705 -0.174531)} Corner 9339 40631 {normal=(-0.494102 0.851705 -0.174531)} Corner 8954 40631 {normal=(-0.155298 0.985685 -0.065633)} Corner 8954 40632 {normal=(-0.155298 0.985685 -0.065633)} Corner 8897 40632 {normal=(-0.259373 0.964543 0.0488025)} Corner 8954 40633 {normal=(-0.0215079 0.708354 -0.70553)} Corner 9339 40633 {normal=(-0.0205773 0.643586 -0.765097)} Corner 9339 40634 {normal=(-0.0205773 0.643586 -0.765097)} Corner 9373 40634 {normal=(-0.0170495 0.638184 -0.769695)} Corner 9373 40635 {normal=(-0.0170495 0.638184 -0.769695)} Corner 9050 40635 {normal=(-0.0234464 0.706527 -0.707297)} Corner 9050 40636 {normal=(-0.0234464 0.706527 -0.707297)} Corner 8954 40636 {normal=(-0.0215079 0.708354 -0.70553)} Corner 9050 40637 {normal=(0.112777 0.249662 -0.961743)} Corner 9373 40637 {normal=(0.291728 0.245876 -0.924359)} Corner 9373 40638 {normal=(0.291728 0.245876 -0.924359)} Corner 9050 40640 {normal=(0.112777 0.249662 -0.961743)} Corner 9547 40641 {normal=(-0.873469 0.477051 0.0973334)} Corner 9520 40641 {normal=(-0.874245 0.473176 0.10863)} Corner 9520 40642 {normal=(-0.874245 0.473176 0.10863)} Corner 9457 40642 {normal=(-0.879196 0.444072 0.172666)} Corner 9457 40643 {normal=(-0.879196 0.444072 0.172666)} Corner 9493 40643 {normal=(-0.877988 0.451243 0.159742)} Corner 9493 40644 {normal=(-0.877988 0.451243 0.159742)} Corner 9547 40644 {normal=(-0.873469 0.477051 0.0973334)} Corner 9570 40645 {normal=(-0.653397 0.756892 -0.0136639)} Corner 9553 40645 {normal=(-0.867446 0.465311 0.176136)} Corner 9553 40646 {normal=(-0.867446 0.465311 0.176136)} Corner 9520 40646 {normal=(-0.874245 0.473176 0.10863)} Corner 9520 40647 {normal=(-0.874245 0.473176 0.10863)} Corner 9547 40647 {normal=(-0.873469 0.477051 0.0973334)} Corner 9547 40648 {normal=(-0.873469 0.477051 0.0973334)} Corner 9570 40648 {normal=(-0.653397 0.756892 -0.0136639)} Corner 9409 40649 {normal=(-0.783118 0.533001 0.320367)} Corner 9409 40650 {normal=(-0.783118 0.533001 0.320367)} Corner 9553 40650 {normal=(-0.867446 0.465311 0.176136)} Corner 9553 40651 {normal=(-0.867446 0.465311 0.176136)} Corner 9570 40651 {normal=(-0.653397 0.756892 -0.0136639)} Corner 9570 40652 {normal=(-0.653397 0.756892 -0.0136639)} Corner 9238 40653 {normal=(-0.626164 0.709044 0.324307)} Corner 9238 40654 {normal=(-0.626164 0.709044 0.324307)} Corner 9409 40654 {normal=(-0.783118 0.533001 0.320367)} Corner 9409 40655 {normal=(-0.783118 0.533001 0.320367)} Corner 5549 40657 {normal=(-2.97203e-10 0.709637 0.704567)} Corner 5546 40657 {normal=(-6.01861e-10 0.709637 0.704567)} Corner 5546 40658 {normal=(-6.01861e-10 0.709637 0.704567)} Corner 8737 40658 {normal=(-0.00854108 0.709611 0.704541)} Corner 8737 40659 {normal=(-0.00854108 0.709611 0.704541)} Corner 8897 40659 {normal=(-0.00854107 0.709611 0.704542)} Corner 8897 40660 {normal=(-0.00854107 0.709611 0.704542)} Corner 5549 40660 {normal=(-2.97203e-10 0.709637 0.704567)} Corner 6971 40661 {normal=(0.0033618 0.986645 -0.162848)} Corner 6926 40661 {normal=(0.0033618 0.986645 -0.162848)} Corner 6926 40662 {normal=(0.0033618 0.986645 -0.162848)} Corner 5533 40662 {normal=(0 0.986651 -0.162849)} Corner 5533 40663 {normal=(0 0.986651 -0.162849)} Corner 5534 40663 {normal=(0 0.986651 -0.162849)} Corner 5534 40664 {normal=(0 0.986651 -0.162849)} Corner 6971 40664 {normal=(0.0033618 0.986645 -0.162848)} Corner 7705 40665 {normal=(-0.823243 0.566297 0.0397297)} Corner 7631 40665 {normal=(-0.820134 0.570936 0.037586)} Corner 7631 40666 {normal=(-0.820134 0.570936 0.037586)} Corner 6926 40666 {normal=(-0.80458 0.593225 0.0271322)} Corner 6926 40667 {normal=(-0.80458 0.593225 0.0271322)} Corner 6971 40667 {normal=(-0.80458 0.593225 0.0271322)} Corner 6971 40668 {normal=(-0.80458 0.593225 0.0271322)} Corner 7705 40668 {normal=(-0.823243 0.566297 0.0397297)} Corner 9332 40669 {normal=(-0.851382 0.52454 -0.0025366)} Corner 9235 40669 {normal=(-0.80739 0.588827 -0.0374591)} Corner 9235 40670 {normal=(-0.80739 0.588827 -0.0374591)} Corner 7631 40670 {normal=(-0.820134 0.570936 0.037586)} Corner 7631 40671 {normal=(-0.820134 0.570936 0.037586)} Corner 7705 40671 {normal=(-0.823243 0.566297 0.0397297)} Corner 7705 40672 {normal=(-0.823243 0.566297 0.0397297)} Corner 9332 40672 {normal=(-0.851382 0.52454 -0.0025366)} Corner 9427 40673 {normal=(-0.88672 0.444639 0.126585)} Corner 9406 40673 {normal=(-0.888412 0.451303 0.0839603)} Corner 9406 40674 {normal=(-0.888412 0.451303 0.0839603)} Corner 9293 40674 {normal=(-0.853763 0.519588 -0.0334156)} Corner 9293 40675 {normal=(-0.853763 0.519588 -0.0334156)} Corner 9332 40675 {normal=(-0.851382 0.52454 -0.0025366)} Corner 9332 40676 {normal=(-0.851382 0.52454 -0.0025366)} Corner 9427 40676 {normal=(-0.88672 0.444639 0.126585)} Corner 9493 40677 {normal=(-0.877988 0.451243 0.159742)} Corner 9457 40677 {normal=(-0.879196 0.444072 0.172666)} Corner 9457 40678 {normal=(-0.879196 0.444072 0.172666)} Corner 9406 40678 {normal=(-0.888412 0.451303 0.0839603)} Corner 9406 40679 {normal=(-0.888412 0.451303 0.0839603)} Corner 9427 40679 {normal=(-0.88672 0.444639 0.126585)} Corner 9427 40680 {normal=(-0.88672 0.444639 0.126585)} Corner 9493 40680 {normal=(-0.877988 0.451243 0.159742)} Corner 9476 40681 {normal=(0.643385 0.241032 0.726608)} Corner 9446 40681 {normal=(0.672825 0.246808 0.697419)} Corner 9446 40682 {normal=(0.672825 0.246808 0.697419)} Corner 9357 40682 {normal=(0.505859 0.25834 0.823023)} Corner 9357 40683 {normal=(0.505859 0.25834 0.823023)} Corner 9374 40683 {normal=(0.457835 0.282287 0.843031)} Corner 9374 40684 {normal=(0.457835 0.282287 0.843031)} Corner 9476 40684 {normal=(0.643385 0.241032 0.726608)} Corner 9374 40685 {normal=(0.457835 0.282287 0.843031)} Corner 9357 40685 {normal=(0.505859 0.25834 0.823023)} Corner 9357 40686 {normal=(0.505859 0.25834 0.823023)} Corner 7794 40686 {normal=(0.392041 0.312524 0.865236)} Corner 7794 40687 {normal=(0.392041 0.312524 0.865236)} Corner 7954 40687 {normal=(0.392041 0.312524 0.865236)} Corner 7954 40688 {normal=(0.392041 0.312524 0.865236)} Corner 9374 40688 {normal=(0.457835 0.282287 0.843031)} Corner 9631 40689 {normal=(0.285218 0.878497 0.383268)} Corner 9570 40689 {normal=(0.285218 0.878497 0.383268)} Corner 9570 40690 {normal=(0.285218 0.878497 0.383268)} Corner 9547 40690 {normal=(0.272583 0.779297 0.564264)} Corner 9547 40691 {normal=(0.272583 0.779297 0.564264)} Corner 9563 40691 {normal=(0.272579 0.779267 0.564309)} Corner 9563 40692 {normal=(0.272579 0.779267 0.564309)} Corner 9631 40692 {normal=(0.285218 0.878497 0.383268)} Corner 9563 40693 {normal=(0.272579 0.779267 0.564309)} Corner 9547 40693 {normal=(0.272583 0.779297 0.564264)} Corner 9547 40694 {normal=(0.272583 0.779297 0.564264)} Corner 9493 40694 {normal=(0.158007 0.635535 0.755731)} Corner 9493 40695 {normal=(0.158007 0.635535 0.755731)} Corner 9518 40695 {normal=(0.13321 0.631428 0.763907)} Corner 9518 40696 {normal=(0.13321 0.631428 0.763907)} Corner 9563 40696 {normal=(0.272579 0.779267 0.564309)} Corner 9518 40697 {normal=(0.13321 0.631428 0.763907)} Corner 9493 40697 {normal=(0.158007 0.635535 0.755731)} Corner 9493 40698 {normal=(0.158007 0.635535 0.755731)} Corner 9427 40698 {normal=(-0.0421044 0.606456 0.794001)} Corner 9427 40699 {normal=(-0.0421044 0.606456 0.794001)} Corner 9446 40699 {normal=(-0.0836456 0.601938 0.79415)} Corner 9446 40700 {normal=(-0.0836456 0.601938 0.79415)} Corner 9518 40700 {normal=(0.13321 0.631428 0.763907)} Corner 9446 40701 {normal=(-0.0836456 0.601938 0.79415)} Corner 9427 40701 {normal=(-0.0421044 0.606456 0.794001)} Corner 9427 40702 {normal=(-0.0421044 0.606456 0.794001)} Corner 9332 40702 {normal=(-0.228963 0.613246 0.75598)} Corner 9332 40703 {normal=(-0.228963 0.613246 0.75598)} Corner 9357 40703 {normal=(-0.251544 0.620408 0.742845)} Corner 9357 40704 {normal=(-0.251544 0.620408 0.742845)} Corner 9446 40704 {normal=(-0.0836456 0.601938 0.79415)} Corner 9357 40705 {normal=(-0.251544 0.620408 0.742845)} Corner 9332 40705 {normal=(-0.228963 0.613246 0.75598)} Corner 9332 40706 {normal=(-0.228963 0.613246 0.75598)} Corner 7705 40706 {normal=(-0.469285 0.580878 0.665096)} Corner 7705 40707 {normal=(-0.469285 0.580878 0.665096)} Corner 7794 40707 {normal=(-0.543351 0.544993 0.638555)} Corner 7794 40708 {normal=(-0.543351 0.544993 0.638555)} Corner 9357 40708 {normal=(-0.251544 0.620408 0.742845)} Corner 7794 40709 {normal=(-0.543351 0.544993 0.638555)} Corner 7705 40709 {normal=(-0.469285 0.580878 0.665096)} Corner 7705 40710 {normal=(-0.469285 0.580878 0.665096)} Corner 6971 40710 {normal=(-0.667307 0.469467 0.578189)} Corner 6971 40711 {normal=(-0.667307 0.469467 0.578189)} Corner 7019 40711 {normal=(-0.667307 0.469467 0.578189)} Corner 7019 40712 {normal=(-0.667307 0.469467 0.578189)} Corner 7794 40712 {normal=(-0.543351 0.544993 0.638555)} Corner 7019 40713 {normal=(0.00575426 0.863197 0.504834)} Corner 6971 40713 {normal=(0.00575426 0.863197 0.504834)} Corner 6971 40714 {normal=(0.00575426 0.863197 0.504834)} Corner 5534 40714 {normal=(8.90806e-10 0.863212 0.504842)} Corner 5534 40715 {normal=(8.90806e-10 0.863212 0.504842)} Corner 5532 40715 {normal=(8.84798e-10 0.863212 0.504842)} Corner 5532 40716 {normal=(8.84798e-10 0.863212 0.504842)} Corner 7019 40716 {normal=(0.00575426 0.863197 0.504834)} Corner 9603 40717 {normal=(0.800453 0.404626 0.442214)} Corner 9563 40717 {normal=(0.802688 0.393751 0.447942)} Corner 9563 40718 {normal=(0.802688 0.393751 0.447942)} Corner 9518 40718 {normal=(0.786889 0.24967 0.564332)} Corner 9518 40719 {normal=(0.786889 0.24967 0.564332)} Corner 9541 40719 {normal=(0.776761 0.25186 0.577242)} Corner 9541 40720 {normal=(0.776761 0.25186 0.577242)} Corner 9603 40720 {normal=(0.800453 0.404626 0.442214)} Corner 9541 40721 {normal=(0.776761 0.25186 0.577242)} Corner 9518 40721 {normal=(0.786889 0.24967 0.564332)} Corner 9518 40722 {normal=(0.786889 0.24967 0.564332)} Corner 9446 40722 {normal=(0.672825 0.246808 0.697419)} Corner 9446 40723 {normal=(0.672825 0.246808 0.697419)} Corner 9476 40723 {normal=(0.643385 0.241032 0.726608)} Corner 9476 40724 {normal=(0.643385 0.241032 0.726608)} Corner 9541 40724 {normal=(0.776761 0.25186 0.577242)} Corner 7954 40725 {normal=(-0.167569 0.0780136 0.982769)} Corner 7794 40725 {normal=(-0.167569 0.0780136 0.982769)} Corner 7794 40726 {normal=(-0.167569 0.0780136 0.982769)} Corner 7019 40726 {normal=(-0.0810188 0.133864 0.987682)} Corner 7019 40727 {normal=(-0.0810188 0.133864 0.987682)} Corner 7151 40727 {normal=(-0.0903232 0.127954 0.987659)} Corner 7151 40728 {normal=(-0.0903232 0.127954 0.987659)} Corner 7954 40728 {normal=(-0.167569 0.0780136 0.982769)} Corner 7151 40729 {normal=(-0.0903232 0.127954 0.987659)} Corner 7019 40729 {normal=(-0.0810188 0.133864 0.987682)} Corner 7019 40730 {normal=(-0.0810188 0.133864 0.987682)} Corner 5532 40730 {normal=(-4.85542e-10 0.184119 0.982904)} Corner 5532 40731 {normal=(-4.85542e-10 0.184119 0.982904)} Corner 5531 40731 {normal=(-4.81173e-10 0.184119 0.982904)} Corner 5531 40732 {normal=(-4.81173e-10 0.184119 0.982904)} Corner 7151 40732 {normal=(-0.0903232 0.127954 0.987659)} Corner 5548 40733 {normal=(0 0.996539 -0.0831233)} Corner 5549 40733 {normal=(0 0.996539 -0.0831233)} Corner 5549 40734 {normal=(0 0.996539 -0.0831233)} Corner 8897 40734 {normal=(-0.259373 0.964543 0.0488025)} Corner 8897 40735 {normal=(-0.259373 0.964543 0.0488025)} Corner 8954 40735 {normal=(-0.155298 0.985685 -0.065633)} Corner 8954 40736 {normal=(-0.155298 0.985685 -0.065633)} Corner 5548 40736 {normal=(0 0.996539 -0.0831233)} Corner 9339 40737 {normal=(-0.494102 0.851705 -0.174531)} Corner 9445 40739 {normal=(-0.454583 0.854963 -0.249784)} Corner 9445 40740 {normal=(-0.454583 0.854963 -0.249784)} Corner 9339 40740 {normal=(-0.494102 0.851705 -0.174531)} Corner 9445 40741 {normal=(-0.454583 0.854963 -0.249784)} Corner 9570 40742 {normal=(-0.653397 0.756892 -0.0136639)} Corner 9570 40743 {normal=(-0.653397 0.756892 -0.0136639)} Corner 9631 40743 {normal=(-0.193883 0.953745 -0.22974)} Corner 9631 40744 {normal=(-0.193883 0.953745 -0.22974)} Corner 9445 40744 {normal=(-0.454583 0.854963 -0.249784)} Corner 9603 40745 {normal=(0.970526 -0.219695 0.0990595)} Corner 9586 40745 {normal=(0.971309 -0.214807 0.10206)} Corner 9586 40746 {normal=(0.971309 -0.214807 0.10206)} Corner 9688 40746 {normal=(0.979642 -0.130303 0.152716)} Corner 9688 40747 {normal=(0.979642 -0.130303 0.152716)} Corner 9678 40747 {normal=(0.979642 -0.130303 0.152716)} Corner 9678 40748 {normal=(0.979642 -0.130303 0.152716)} Corner 9603 40748 {normal=(0.970526 -0.219695 0.0990595)} Corner 9678 40749 {normal=(0.860041 0.200645 -0.469117)} Corner 9688 40749 {normal=(0.688687 0.701742 -0.182399)} Corner 9688 40750 {normal=(0.688687 0.701742 -0.182399)} Corner 9494 40751 {normal=(0.689266 0.238421 -0.684155)} Corner 9494 40752 {normal=(0.689266 0.238421 -0.684155)} Corner 9678 40752 {normal=(0.860041 0.200645 -0.469117)} Corner 9494 40753 {normal=(0.689266 0.238421 -0.684155)} Corner 9373 40755 {normal=(0.291728 0.245876 -0.924359)} Corner 9373 40756 {normal=(0.291728 0.245876 -0.924359)} Corner 9494 40756 {normal=(0.689266 0.238421 -0.684155)} Corner 9050 40757 {normal=(0.112777 0.249662 -0.961743)} Corner 5547 40759 {normal=(5.46189e-10 0.285333 -0.958428)} Corner 5547 40760 {normal=(5.46189e-10 0.285333 -0.958428)} Corner 9050 40760 {normal=(0.112777 0.249662 -0.961743)} Corner 9541 40761 {normal=(0.95774 -0.281699 0.0581437)} Corner 9534 40761 {normal=(0.958965 -0.276973 0.060602)} Corner 9534 40762 {normal=(0.958965 -0.276973 0.060602)} Corner 9586 40762 {normal=(0.971309 -0.214807 0.10206)} Corner 9586 40763 {normal=(0.971309 -0.214807 0.10206)} Corner 9603 40763 {normal=(0.970526 -0.219695 0.0990595)} Corner 9603 40764 {normal=(0.970526 -0.219695 0.0990595)} Corner 9541 40764 {normal=(0.95774 -0.281699 0.0581437)} Corner 9678 40765 {normal=(0.757738 0.5458 0.357681)} Corner 9631 40765 {normal=(0.757738 0.5458 0.357681)} Corner 9631 40766 {normal=(0.757738 0.5458 0.357681)} Corner 9563 40766 {normal=(0.802688 0.393751 0.447942)} Corner 9563 40767 {normal=(0.802688 0.393751 0.447942)} Corner 9603 40767 {normal=(0.800453 0.404626 0.442214)} Corner 9603 40768 {normal=(0.800453 0.404626 0.442214)} Corner 9678 40768 {normal=(0.757738 0.5458 0.357681)} Corner 9494 40769 {normal=(0.221294 0.707756 -0.670903)} Corner 9445 40769 {normal=(0.243682 0.716696 -0.653427)} Corner 9445 40770 {normal=(0.243682 0.716696 -0.653427)} Corner 9631 40770 {normal=(0.439471 0.76863 -0.464837)} Corner 9631 40771 {normal=(0.439471 0.76863 -0.464837)} Corner 9678 40771 {normal=(0.439471 0.76863 -0.464837)} Corner 9678 40772 {normal=(0.439471 0.76863 -0.464837)} Corner 9494 40772 {normal=(0.221294 0.707756 -0.670903)} Corner 9373 40773 {normal=(-0.0170495 0.638184 -0.769695)} Corner 9339 40773 {normal=(-0.0205773 0.643586 -0.765097)} Corner 9339 40774 {normal=(-0.0205773 0.643586 -0.765097)} Corner 9445 40774 {normal=(0.243682 0.716696 -0.653427)} Corner 9445 40775 {normal=(0.243682 0.716696 -0.653427)} Corner 9494 40775 {normal=(0.221294 0.707756 -0.670903)} Corner 9494 40776 {normal=(0.221294 0.707756 -0.670903)} Corner 9373 40776 {normal=(-0.0170495 0.638184 -0.769695)} Corner 5547 40777 {normal=(-1.48285e-10 0.730835 -0.682554)} Corner 5548 40777 {normal=(0 0.730835 -0.682554)} Corner 5548 40778 {normal=(0 0.730835 -0.682554)} Corner 8954 40778 {normal=(-0.0215079 0.708354 -0.70553)} Corner 8954 40779 {normal=(-0.0215079 0.708354 -0.70553)} Corner 9050 40779 {normal=(-0.0234464 0.706527 -0.707297)} Corner 9050 40780 {normal=(-0.0234464 0.706527 -0.707297)} Corner 5547 40780 {normal=(-1.48285e-10 0.730835 -0.682554)} Corner 7247 40781 {normal=(-0.00210205 -0.648679 0.761059)} Corner 7151 40781 {normal=(-0.00210205 -0.648679 0.761059)} Corner 7151 40782 {normal=(-0.00210205 -0.648679 0.761059)} Corner 5531 40782 {normal=(0 -0.648681 0.761061)} Corner 5531 40783 {normal=(0 -0.648681 0.761061)} Corner 5530 40783 {normal=(0 -0.648681 0.761061)} Corner 5530 40784 {normal=(0 -0.648681 0.761061)} Corner 7247 40784 {normal=(-0.00210205 -0.648679 0.761059)} Corner 8024 40785 {normal=(0.645348 -0.333589 0.687201)} Corner 7954 40785 {normal=(0.731345 -0.291643 0.616505)} Corner 7954 40786 {normal=(0.731345 -0.291643 0.616505)} Corner 7151 40786 {normal=(0.471562 -0.395932 0.787951)} Corner 7151 40787 {normal=(0.471562 -0.395932 0.787951)} Corner 7247 40787 {normal=(0.471562 -0.395932 0.787951)} Corner 7247 40788 {normal=(0.471562 -0.395932 0.787951)} Corner 8024 40788 {normal=(0.645348 -0.333589 0.687201)} Corner 9375 40789 {normal=(0.881534 -0.245622 0.403198)} Corner 9374 40789 {normal=(0.892963 -0.26031 0.367227)} Corner 9374 40790 {normal=(0.892963 -0.26031 0.367227)} Corner 7954 40790 {normal=(0.731345 -0.291643 0.616505)} Corner 7954 40791 {normal=(0.731345 -0.291643 0.616505)} Corner 8024 40791 {normal=(0.645348 -0.333589 0.687201)} Corner 8024 40792 {normal=(0.645348 -0.333589 0.687201)} Corner 9375 40792 {normal=(0.881534 -0.245622 0.403198)} Corner 9471 40793 {normal=(0.939419 -0.278893 0.199276)} Corner 9476 40793 {normal=(0.948793 -0.272819 0.159253)} Corner 9476 40794 {normal=(0.948793 -0.272819 0.159253)} Corner 9374 40794 {normal=(0.892963 -0.26031 0.367227)} Corner 9374 40795 {normal=(0.892963 -0.26031 0.367227)} Corner 9375 40795 {normal=(0.881534 -0.245622 0.403198)} Corner 9375 40796 {normal=(0.881534 -0.245622 0.403198)} Corner 9471 40796 {normal=(0.939419 -0.278893 0.199276)} Corner 9534 40797 {normal=(0.958965 -0.276973 0.060602)} Corner 9541 40797 {normal=(0.95774 -0.281699 0.0581437)} Corner 9541 40798 {normal=(0.95774 -0.281699 0.0581437)} Corner 9476 40798 {normal=(0.948793 -0.272819 0.159253)} Corner 9476 40799 {normal=(0.948793 -0.272819 0.159253)} Corner 9471 40799 {normal=(0.939419 -0.278893 0.199276)} Corner 9471 40800 {normal=(0.939419 -0.278893 0.199276)} Corner 9534 40800 {normal=(0.958965 -0.276973 0.060602)} Corner 9534 40821 {normal=(0.352003 0.565395 0.745938)} Corner 9471 40821 {normal=(0.353459 0.460098 0.81448)} Corner 9471 40822 {normal=(0.353459 0.460098 0.81448)} Corner 9534 40824 {normal=(0.352003 0.565395 0.745938)} Corner 9688 40825 {normal=(0.688687 0.701742 -0.182399)} Corner 9688 40826 {normal=(0.688687 0.701742 -0.182399)} Corner 9586 40826 {normal=(0.346561 0.750953 0.562107)} Corner 9586 40827 {normal=(0.346561 0.750953 0.562107)} Corner 9375 40855 {normal=(0.259849 0.489852 0.83218)} Corner 9375 40856 {normal=(0.259849 0.489852 0.83218)} Corner 9471 40857 {normal=(0.353459 0.460098 0.81448)} Corner 9471 40858 {normal=(0.353459 0.460098 0.81448)} Corner 9375 40858 {normal=(0.259849 0.489852 0.83218)} Corner 9375 40859 {normal=(0.259849 0.489852 0.83218)} Corner 7247 40878 {normal=(-0.0580522 0.0128035 0.998231)} Corner 7247 40879 {normal=(-0.0580522 0.0128035 0.998231)} Corner 7247 40881 {normal=(-0.0580522 0.0128035 0.998231)} Corner 7247 40882 {normal=(-0.0580522 0.0128035 0.998231)} Corner 5530 40882 {normal=(-3.71175e-11 0.000226545 1)} Corner 5530 40883 {normal=(-3.71175e-11 0.000226545 1)} Corner 8024 40902 {normal=(-0.0385028 0.23259 0.971812)} Corner 8024 40903 {normal=(-0.0385028 0.23259 0.971812)} Corner 7247 40903 {normal=(-0.0580522 0.0128035 0.998231)} Corner 7247 40904 {normal=(-0.0580522 0.0128035 0.998231)} Corner 9707 40905 {normal=(0.829604 -0.447757 -0.333573)} Corner 9787 40907 {normal=(0.775966 -0.619783 -0.117242)} Corner 9787 40908 {normal=(0.775966 -0.619783 -0.117242)} Corner 9707 40908 {normal=(0.829604 -0.447757 -0.333573)} Corner 9683 40909 {normal=(0.935038 -0.152173 -0.320229)} Corner 9763 40909 {normal=(0.935038 -0.152173 -0.320229)} Corner 9763 40910 {normal=(0.935038 -0.152173 -0.320229)} Corner 9876 40910 {normal=(0.935041 -0.152167 -0.320225)} Corner 9876 40911 {normal=(0.935041 -0.152167 -0.320225)} Corner 9654 40911 {normal=(0.935039 -0.152174 -0.320226)} Corner 9654 40912 {normal=(0.935039 -0.152174 -0.320226)} Corner 9683 40912 {normal=(0.935038 -0.152173 -0.320229)} Corner 7092 40913 {normal=(-0.0283433 -0.617664 0.785931)} Corner 5526 40915 {normal=(0 -0.559218 0.829021)} Corner 5526 40916 {normal=(0 -0.559218 0.829021)} Corner 7092 40916 {normal=(-0.0283433 -0.617664 0.785931)} Corner 9345 40949 {normal=(0.340103 -0.668111 -0.661784)} Corner 9473 40951 {normal=(0.465945 -0.689194 -0.554894)} Corner 9473 40952 {normal=(0.465945 -0.689194 -0.554894)} Corner 9345 40952 {normal=(0.340103 -0.668111 -0.661784)} Corner 9517 40953 {normal=(0.66111 -0.577715 -0.478726)} Corner 9676 40955 {normal=(0.772525 -0.442271 -0.455633)} Corner 9676 40956 {normal=(0.772525 -0.442271 -0.455633)} Corner 9517 40956 {normal=(0.66111 -0.577715 -0.478726)} Corner 9809 40977 {normal=(0.541911 -0.835851 0.0876702)} Corner 9721 40979 {normal=(0.483062 -0.858943 0.169904)} Corner 9721 40980 {normal=(0.483062 -0.858943 0.169904)} Corner 9809 40980 {normal=(0.541911 -0.835851 0.0876702)} Corner 9174 40981 {normal=(0.0412395 -0.730686 0.681467)} Corner 7436 40983 {normal=(-0.0559736 -0.674587 0.736071)} Corner 7436 40984 {normal=(-0.0559736 -0.674587 0.736071)} Corner 9174 40984 {normal=(0.0412395 -0.730686 0.681467)} Corner 9787 40997 {normal=(0.775966 -0.619783 -0.117242)} Corner 9813 40999 {normal=(0.66428 -0.746491 -0.0385022)} Corner 9813 41000 {normal=(0.66428 -0.746491 -0.0385022)} Corner 9787 41000 {normal=(0.775966 -0.619783 -0.117242)} Corner 9586 41002 {normal=(0.346561 0.750953 0.562107)} Corner 9586 41003 {normal=(0.346561 0.750953 0.562107)} Corner 9688 41021 {normal=(0.688687 0.701742 -0.182399)} Corner 9688 41024 {normal=(0.688687 0.701742 -0.182399)} Corner 3947 41038 {normal=(-0.161408 -0.712529 -0.682825)} Corner 3947 41039 {normal=(-0.161408 -0.712529 -0.682825)} Corner 1700 41039 {normal=(-0.340103 -0.668111 -0.661784)} Corner 1700 41040 {normal=(-0.340103 -0.668111 -0.661784)} Corner 3947 41041 {normal=(-0.161408 -0.712529 -0.682825)} Corner 5524 41043 {normal=(0 -0.740768 -0.671761)} Corner 5524 41044 {normal=(0 -0.740768 -0.671761)} Corner 3947 41044 {normal=(-0.161408 -0.712529 -0.682825)} Corner 1564 41045 {normal=(-0.206474 -0.819079 0.535236)} Corner 1564 41046 {normal=(-0.206474 -0.819079 0.535236)} Corner 1871 41046 {normal=(-0.0412395 -0.730686 0.681467)} Corner 1871 41047 {normal=(-0.0412395 -0.730686 0.681467)} Corner 1363 41049 {normal=(-0.278151 -0.865123 0.417366)} Corner 1363 41050 {normal=(-0.278151 -0.865123 0.417366)} Corner 1564 41050 {normal=(-0.206474 -0.819079 0.535236)} Corner 1564 41051 {normal=(-0.206474 -0.819079 0.535236)} Corner 1025 41053 {normal=(-0.198567 -0.852533 -0.483486)} Corner 1051 41053 {normal=(-0.198354 -0.852127 -0.484288)} Corner 1051 41054 {normal=(-0.198354 -0.852127 -0.484288)} Corner 1026 41054 {normal=(-0.150522 -0.693715 -0.704345)} Corner 1026 41055 {normal=(-0.150522 -0.693715 -0.704345)} Corner 992 41055 {normal=(-0.150317 -0.692535 -0.705549)} Corner 992 41056 {normal=(-0.150317 -0.692535 -0.705549)} Corner 1025 41056 {normal=(-0.198567 -0.852533 -0.483486)} Corner 992 41057 {normal=(-0.150317 -0.692535 -0.705549)} Corner 1026 41057 {normal=(-0.150522 -0.693715 -0.704345)} Corner 1026 41058 {normal=(-0.150522 -0.693715 -0.704345)} Corner 1008 41058 {normal=(-0.143271 -0.353177 -0.924521)} Corner 1008 41059 {normal=(-0.143271 -0.353177 -0.924521)} Corner 974 41059 {normal=(-0.143243 -0.35411 -0.924169)} Corner 974 41060 {normal=(-0.143243 -0.35411 -0.924169)} Corner 992 41060 {normal=(-0.150317 -0.692535 -0.705549)} Corner 974 41061 {normal=(-0.143243 -0.35411 -0.924169)} Corner 1008 41061 {normal=(-0.143271 -0.353177 -0.924521)} Corner 1008 41062 {normal=(-0.143271 -0.353177 -0.924521)} Corner 1040 41062 {normal=(-0.179927 0.0643815 -0.981571)} Corner 1040 41063 {normal=(-0.179927 0.0643815 -0.981571)} Corner 1009 41063 {normal=(-0.179795 0.0637054 -0.981639)} Corner 1009 41064 {normal=(-0.179795 0.0637054 -0.981639)} Corner 974 41064 {normal=(-0.143243 -0.35411 -0.924169)} Corner 1009 41065 {normal=(-0.179795 0.0637054 -0.981639)} Corner 1040 41065 {normal=(-0.179927 0.0643815 -0.981571)} Corner 1040 41066 {normal=(-0.179927 0.0643815 -0.981571)} Corner 1081 41066 {normal=(-0.271565 0.384105 -0.882449)} Corner 1081 41067 {normal=(-0.271565 0.384105 -0.882449)} Corner 1060 41067 {normal=(-0.272554 0.386691 -0.881013)} Corner 1060 41068 {normal=(-0.272554 0.386691 -0.881013)} Corner 1009 41068 {normal=(-0.179795 0.0637054 -0.981639)} Corner 1060 41069 {normal=(-0.272554 0.386691 -0.881013)} Corner 1081 41069 {normal=(-0.271565 0.384105 -0.882449)} Corner 1081 41070 {normal=(-0.271565 0.384105 -0.882449)} Corner 1127 41070 {normal=(-0.391971 0.649512 -0.651531)} Corner 1127 41071 {normal=(-0.391971 0.649512 -0.651531)} Corner 1105 41071 {normal=(-0.386836 0.640283 -0.663623)} Corner 1105 41072 {normal=(-0.386836 0.640283 -0.663623)} Corner 1060 41072 {normal=(-0.272554 0.386691 -0.881013)} Corner 1105 41073 {normal=(-0.386836 0.640283 -0.663623)} Corner 1127 41073 {normal=(-0.391971 0.649512 -0.651531)} Corner 1127 41074 {normal=(-0.391971 0.649512 -0.651531)} Corner 1219 41074 {normal=(-0.540852 0.783778 -0.305241)} Corner 1219 41075 {normal=(-0.540852 0.783778 -0.305241)} Corner 1194 41075 {normal=(-0.54278 0.784322 -0.300382)} Corner 1194 41076 {normal=(-0.54278 0.784322 -0.300382)} Corner 1105 41076 {normal=(-0.386836 0.640283 -0.663623)} Corner 1194 41077 {normal=(-0.54278 0.784322 -0.300382)} Corner 1219 41077 {normal=(-0.540852 0.783778 -0.305241)} Corner 1219 41078 {normal=(-0.540852 0.783778 -0.305241)} Corner 1326 41078 {normal=(-0.682568 0.723341 0.104306)} Corner 1326 41079 {normal=(-0.682568 0.723341 0.104306)} Corner 1302 41079 {normal=(-0.684877 0.720019 0.111873)} Corner 1302 41080 {normal=(-0.684877 0.720019 0.111873)} Corner 1194 41080 {normal=(-0.54278 0.784322 -0.300382)} Corner 1302 41081 {normal=(-0.684877 0.720019 0.111873)} Corner 1326 41081 {normal=(-0.682568 0.723341 0.104306)} Corner 1326 41082 {normal=(-0.682568 0.723341 0.104306)} Corner 1380 41082 {normal=(-0.757974 0.504593 0.413353)} Corner 1380 41083 {normal=(-0.757974 0.504593 0.413353)} Corner 1348 41083 {normal=(-0.758284 0.502711 0.415074)} Corner 1348 41084 {normal=(-0.758284 0.502711 0.415074)} Corner 1302 41084 {normal=(-0.684877 0.720019 0.111873)} Corner 1348 41085 {normal=(-0.758284 0.502711 0.415074)} Corner 1380 41085 {normal=(-0.757974 0.504593 0.413353)} Corner 1380 41086 {normal=(-0.757974 0.504593 0.413353)} Corner 1391 41086 {normal=(-0.774731 0.207126 0.597404)} Corner 1391 41087 {normal=(-0.774731 0.207126 0.597404)} Corner 1358 41087 {normal=(-0.774711 0.206432 0.597669)} Corner 1358 41088 {normal=(-0.774711 0.206432 0.597669)} Corner 1348 41088 {normal=(-0.758284 0.502711 0.415074)} Corner 1358 41089 {normal=(-0.774711 0.206432 0.597669)} Corner 1391 41089 {normal=(-0.774731 0.207126 0.597404)} Corner 1391 41090 {normal=(-0.774731 0.207126 0.597404)} Corner 1362 41090 {normal=(-0.736418 -0.153786 0.658816)} Corner 1362 41091 {normal=(-0.736418 -0.153786 0.658816)} Corner 1337 41091 {normal=(-0.737201 -0.149584 0.658907)} Corner 1337 41092 {normal=(-0.737201 -0.149584 0.658907)} Corner 1358 41092 {normal=(-0.774711 0.206432 0.597669)} Corner 1337 41093 {normal=(-0.737201 -0.149584 0.658907)} Corner 1362 41093 {normal=(-0.736418 -0.153786 0.658816)} Corner 1362 41094 {normal=(-0.736418 -0.153786 0.658816)} Corner 1282 41094 {normal=(-0.6289 -0.553617 0.545888)} Corner 1282 41095 {normal=(-0.6289 -0.553617 0.545888)} Corner 1253 41095 {normal=(-0.631377 -0.54717 0.549517)} Corner 1253 41096 {normal=(-0.631377 -0.54717 0.549517)} Corner 1337 41096 {normal=(-0.737201 -0.149584 0.658907)} Corner 1253 41097 {normal=(-0.631377 -0.54717 0.549517)} Corner 1282 41097 {normal=(-0.6289 -0.553617 0.545888)} Corner 1282 41098 {normal=(-0.6289 -0.553617 0.545888)} Corner 1169 41098 {normal=(-0.467126 -0.85208 0.236123)} Corner 1169 41099 {normal=(-0.467126 -0.85208 0.236123)} Corner 1138 41099 {normal=(-0.467371 -0.851787 0.236694)} Corner 1138 41100 {normal=(-0.467371 -0.851787 0.236694)} Corner 1253 41100 {normal=(-0.631377 -0.54717 0.549517)} Corner 1138 41101 {normal=(-0.467371 -0.851787 0.236694)} Corner 1169 41101 {normal=(-0.467126 -0.85208 0.236123)} Corner 1169 41102 {normal=(-0.467126 -0.85208 0.236123)} Corner 1096 41102 {normal=(-0.305768 -0.936592 -0.171178)} Corner 1096 41103 {normal=(-0.305768 -0.936592 -0.171178)} Corner 1074 41103 {normal=(-0.308215 -0.937009 -0.164369)} Corner 1074 41104 {normal=(-0.308215 -0.937009 -0.164369)} Corner 1138 41104 {normal=(-0.467371 -0.851787 0.236694)} Corner 1074 41105 {normal=(-0.308215 -0.937009 -0.164369)} Corner 1096 41105 {normal=(-0.305768 -0.936592 -0.171178)} Corner 1096 41106 {normal=(-0.305768 -0.936592 -0.171178)} Corner 1051 41106 {normal=(-0.198354 -0.852127 -0.484288)} Corner 1051 41107 {normal=(-0.198354 -0.852127 -0.484288)} Corner 1025 41107 {normal=(-0.198567 -0.852533 -0.483486)} Corner 1025 41108 {normal=(-0.198567 -0.852533 -0.483486)} Corner 1074 41108 {normal=(-0.308215 -0.937009 -0.164369)} Corner 1013 41109 {normal=(-0.874325 -0.301766 -0.380122)} Corner 1025 41109 {normal=(-0.874237 -0.301601 -0.380456)} Corner 1025 41110 {normal=(-0.874237 -0.301601 -0.380456)} Corner 992 41110 {normal=(-0.864979 -0.270614 -0.422587)} Corner 992 41111 {normal=(-0.864979 -0.270614 -0.422587)} Corner 977 41111 {normal=(-0.864896 -0.270132 -0.423064)} Corner 977 41112 {normal=(-0.864896 -0.270132 -0.423064)} Corner 1013 41112 {normal=(-0.874325 -0.301766 -0.380122)} Corner 977 41113 {normal=(-0.864896 -0.270132 -0.423064)} Corner 992 41113 {normal=(-0.864979 -0.270614 -0.422587)} Corner 992 41114 {normal=(-0.864979 -0.270614 -0.422587)} Corner 974 41114 {normal=(-0.863631 -0.202864 -0.461506)} Corner 974 41115 {normal=(-0.863631 -0.202864 -0.461506)} Corner 958 41115 {normal=(-0.863621 -0.203198 -0.461378)} Corner 958 41116 {normal=(-0.863621 -0.203198 -0.461378)} Corner 977 41116 {normal=(-0.864896 -0.270132 -0.423064)} Corner 958 41117 {normal=(-0.863621 -0.203198 -0.461378)} Corner 974 41117 {normal=(-0.863631 -0.202864 -0.461506)} Corner 974 41118 {normal=(-0.863631 -0.202864 -0.461506)} Corner 1009 41118 {normal=(-0.870646 -0.123477 -0.47616)} Corner 1009 41119 {normal=(-0.870646 -0.123477 -0.47616)} Corner 997 41119 {normal=(-0.870592 -0.123756 -0.476186)} Corner 997 41120 {normal=(-0.870592 -0.123756 -0.476186)} Corner 958 41120 {normal=(-0.863621 -0.203198 -0.461378)} Corner 997 41121 {normal=(-0.870592 -0.123756 -0.476186)} Corner 1009 41121 {normal=(-0.870646 -0.123477 -0.47616)} Corner 1009 41122 {normal=(-0.870646 -0.123477 -0.47616)} Corner 1060 41122 {normal=(-0.887925 -0.0631296 -0.455636)} Corner 1060 41123 {normal=(-0.887925 -0.0631296 -0.455636)} Corner 1050 41123 {normal=(-0.888337 -0.0620602 -0.454979)} Corner 1050 41124 {normal=(-0.888337 -0.0620602 -0.454979)} Corner 997 41124 {normal=(-0.870592 -0.123756 -0.476186)} Corner 1050 41125 {normal=(-0.888337 -0.0620602 -0.454979)} Corner 1060 41125 {normal=(-0.887925 -0.0631296 -0.455636)} Corner 1060 41126 {normal=(-0.887925 -0.0631296 -0.455636)} Corner 1105 41126 {normal=(-0.911765 -0.0104454 -0.410579)} Corner 1105 41127 {normal=(-0.911765 -0.0104454 -0.410579)} Corner 1100 41127 {normal=(-0.909642 -0.0143843 -0.415144)} Corner 1100 41128 {normal=(-0.909642 -0.0143843 -0.415144)} Corner 1050 41128 {normal=(-0.888337 -0.0620602 -0.454979)} Corner 1100 41129 {normal=(-0.909642 -0.0143843 -0.415144)} Corner 1105 41129 {normal=(-0.911765 -0.0104454 -0.410579)} Corner 1105 41130 {normal=(-0.911765 -0.0104454 -0.410579)} Corner 1194 41130 {normal=(-0.93832 0.0118371 -0.345564)} Corner 1194 41131 {normal=(-0.93832 0.0118371 -0.345564)} Corner 1192 41131 {normal=(-0.939089 0.0119611 -0.343467)} Corner 1192 41132 {normal=(-0.939089 0.0119611 -0.343467)} Corner 1100 41132 {normal=(-0.909642 -0.0143843 -0.415144)} Corner 1192 41133 {normal=(-0.939089 0.0119611 -0.343467)} Corner 1194 41133 {normal=(-0.93832 0.0118371 -0.345564)} Corner 1194 41134 {normal=(-0.93832 0.0118371 -0.345564)} Corner 1302 41134 {normal=(-0.963314 -0.00182476 -0.268372)} Corner 1302 41135 {normal=(-0.963314 -0.00182476 -0.268372)} Corner 1309 41135 {normal=(-0.964105 -0.00323171 -0.265502)} Corner 1309 41136 {normal=(-0.964105 -0.00323171 -0.265502)} Corner 1192 41136 {normal=(-0.939089 0.0119611 -0.343467)} Corner 1309 41137 {normal=(-0.964105 -0.00323171 -0.265502)} Corner 1302 41137 {normal=(-0.963314 -0.00182476 -0.268372)} Corner 1302 41138 {normal=(-0.963314 -0.00182476 -0.268372)} Corner 1348 41138 {normal=(-0.976481 -0.043487 -0.211171)} Corner 1348 41139 {normal=(-0.976481 -0.043487 -0.211171)} Corner 1354 41139 {normal=(-0.976586 -0.0441967 -0.210539)} Corner 1354 41140 {normal=(-0.976586 -0.0441967 -0.210539)} Corner 1309 41140 {normal=(-0.964105 -0.00323171 -0.265502)} Corner 1354 41141 {normal=(-0.976586 -0.0441967 -0.210539)} Corner 1348 41141 {normal=(-0.976481 -0.043487 -0.211171)} Corner 1348 41142 {normal=(-0.976481 -0.043487 -0.211171)} Corner 1358 41142 {normal=(-0.979153 -0.0983773 -0.177709)} Corner 1358 41143 {normal=(-0.979153 -0.0983773 -0.177709)} Corner 1372 41143 {normal=(-0.979145 -0.0986343 -0.177612)} Corner 1372 41144 {normal=(-0.979145 -0.0986343 -0.177612)} Corner 1354 41144 {normal=(-0.976586 -0.0441967 -0.210539)} Corner 1372 41145 {normal=(-0.979145 -0.0986343 -0.177612)} Corner 1358 41145 {normal=(-0.979153 -0.0983773 -0.177709)} Corner 1358 41146 {normal=(-0.979153 -0.0983773 -0.177709)} Corner 1337 41146 {normal=(-0.972176 -0.164938 -0.166342)} Corner 1337 41147 {normal=(-0.972176 -0.164938 -0.166342)} Corner 1341 41147 {normal=(-0.972436 -0.163402 -0.16634)} Corner 1341 41148 {normal=(-0.972436 -0.163402 -0.16634)} Corner 1372 41148 {normal=(-0.979145 -0.0986343 -0.177612)} Corner 1341 41149 {normal=(-0.972436 -0.163402 -0.16634)} Corner 1337 41149 {normal=(-0.972176 -0.164938 -0.166342)} Corner 1337 41150 {normal=(-0.972176 -0.164938 -0.166342)} Corner 1253 41150 {normal=(-0.952865 -0.239189 -0.186648)} Corner 1253 41151 {normal=(-0.952865 -0.239189 -0.186648)} Corner 1254 41151 {normal=(-0.953758 -0.236636 -0.185334)} Corner 1254 41152 {normal=(-0.953758 -0.236636 -0.185334)} Corner 1341 41152 {normal=(-0.972436 -0.163402 -0.16634)} Corner 1254 41153 {normal=(-0.953758 -0.236636 -0.185334)} Corner 1253 41153 {normal=(-0.952865 -0.239189 -0.186648)} Corner 1253 41154 {normal=(-0.952865 -0.239189 -0.186648)} Corner 1138 41154 {normal=(-0.924073 -0.295353 -0.242602)} Corner 1138 41155 {normal=(-0.924073 -0.295353 -0.242602)} Corner 1133 41155 {normal=(-0.924181 -0.295222 -0.242348)} Corner 1133 41156 {normal=(-0.924181 -0.295222 -0.242348)} Corner 1254 41156 {normal=(-0.953758 -0.236636 -0.185334)} Corner 1133 41157 {normal=(-0.924181 -0.295222 -0.242348)} Corner 1138 41157 {normal=(-0.924073 -0.295353 -0.242602)} Corner 1138 41158 {normal=(-0.924073 -0.295353 -0.242602)} Corner 1074 41158 {normal=(-0.894084 -0.313538 -0.319856)} Corner 1074 41159 {normal=(-0.894084 -0.313538 -0.319856)} Corner 1069 41159 {normal=(-0.895049 -0.313586 -0.317098)} Corner 1069 41160 {normal=(-0.895049 -0.313586 -0.317098)} Corner 1133 41160 {normal=(-0.924181 -0.295222 -0.242348)} Corner 1069 41161 {normal=(-0.895049 -0.313586 -0.317098)} Corner 1074 41161 {normal=(-0.894084 -0.313538 -0.319856)} Corner 1074 41162 {normal=(-0.894084 -0.313538 -0.319856)} Corner 1025 41162 {normal=(-0.874237 -0.301601 -0.380456)} Corner 1025 41163 {normal=(-0.874237 -0.301601 -0.380456)} Corner 1013 41163 {normal=(-0.874325 -0.301766 -0.380122)} Corner 1013 41164 {normal=(-0.874325 -0.301766 -0.380122)} Corner 1069 41164 {normal=(-0.895049 -0.313586 -0.317098)} Corner 1013 41165 {normal=(-0.930076 0.362915 -0.0570221)} Corner 1013 41166 {normal=(-0.930076 0.362915 -0.0570221)} Corner 977 41166 {normal=(-0.961596 0.262837 0.0790556)} Corner 977 41167 {normal=(-0.961596 0.262837 0.0790556)} Corner 977 41169 {normal=(-0.961596 0.262837 0.0790556)} Corner 977 41170 {normal=(-0.961596 0.262837 0.0790556)} Corner 958 41170 {normal=(-0.977742 0.043989 0.205147)} Corner 958 41171 {normal=(-0.977742 0.043989 0.205147)} Corner 958 41173 {normal=(-0.977742 0.043989 0.205147)} Corner 958 41174 {normal=(-0.977742 0.043989 0.205147)} Corner 997 41174 {normal=(-0.944116 -0.212438 0.252021)} Corner 997 41175 {normal=(-0.944116 -0.212438 0.252021)} Corner 997 41177 {normal=(-0.944116 -0.212438 0.252021)} Corner 997 41178 {normal=(-0.944116 -0.212438 0.252021)} Corner 1050 41178 {normal=(-0.893325 -0.409016 0.186218)} Corner 1050 41179 {normal=(-0.893325 -0.409016 0.186218)} Corner 1050 41181 {normal=(-0.893325 -0.409016 0.186218)} Corner 1050 41182 {normal=(-0.893325 -0.409016 0.186218)} Corner 1100 41182 {normal=(-0.815434 -0.577298 0.0423699)} Corner 1100 41183 {normal=(-0.815434 -0.577298 0.0423699)} Corner 1100 41185 {normal=(-0.815434 -0.577298 0.0423699)} Corner 1100 41186 {normal=(-0.815434 -0.577298 0.0423699)} Corner 1192 41186 {normal=(-0.734751 -0.655863 -0.173162)} Corner 1192 41187 {normal=(-0.734751 -0.655863 -0.173162)} Corner 1192 41189 {normal=(-0.734751 -0.655863 -0.173162)} Corner 1192 41190 {normal=(-0.734751 -0.655863 -0.173162)} Corner 1309 41190 {normal=(-0.660614 -0.615839 -0.429339)} Corner 1309 41191 {normal=(-0.660614 -0.615839 -0.429339)} Corner 1309 41193 {normal=(-0.660614 -0.615839 -0.429339)} Corner 1309 41194 {normal=(-0.660614 -0.615839 -0.429339)} Corner 1354 41194 {normal=(-0.620976 -0.481069 -0.618839)} Corner 1354 41195 {normal=(-0.620976 -0.481069 -0.618839)} Corner 1354 41197 {normal=(-0.620976 -0.481069 -0.618839)} Corner 1354 41198 {normal=(-0.620976 -0.481069 -0.618839)} Corner 1372 41198 {normal=(-0.61354 -0.300894 -0.73009)} Corner 1372 41199 {normal=(-0.61354 -0.300894 -0.73009)} Corner 1372 41201 {normal=(-0.61354 -0.300894 -0.73009)} Corner 1372 41202 {normal=(-0.61354 -0.300894 -0.73009)} Corner 1341 41202 {normal=(-0.63609 -0.0819 -0.767256)} Corner 1341 41203 {normal=(-0.63609 -0.0819 -0.767256)} Corner 1341 41205 {normal=(-0.63609 -0.0819 -0.767256)} Corner 1341 41206 {normal=(-0.63609 -0.0819 -0.767256)} Corner 1254 41206 {normal=(-0.696882 0.162188 -0.698606)} Corner 1254 41207 {normal=(-0.696882 0.162188 -0.698606)} Corner 1254 41209 {normal=(-0.696882 0.162188 -0.698606)} Corner 1254 41210 {normal=(-0.696882 0.162188 -0.698606)} Corner 1133 41210 {normal=(-0.786498 0.346492 -0.511239)} Corner 1133 41211 {normal=(-0.786498 0.346492 -0.511239)} Corner 1133 41213 {normal=(-0.786498 0.346492 -0.511239)} Corner 1133 41214 {normal=(-0.786498 0.346492 -0.511239)} Corner 1069 41214 {normal=(-0.877639 0.40451 -0.257141)} Corner 1069 41215 {normal=(-0.877639 0.40451 -0.257141)} Corner 1069 41217 {normal=(-0.877639 0.40451 -0.257141)} Corner 1069 41218 {normal=(-0.877639 0.40451 -0.257141)} Corner 1013 41218 {normal=(-0.930076 0.362915 -0.0570221)} Corner 1013 41219 {normal=(-0.930076 0.362915 -0.0570221)} Corner 1039 41221 {normal=(-0.818278 0.569813 0.0757287)} Corner 1000 41223 {normal=(-0.862315 0.431543 0.264922)} Corner 1000 41224 {normal=(-0.862315 0.431543 0.264922)} Corner 1039 41224 {normal=(-0.818278 0.569813 0.0757287)} Corner 1000 41225 {normal=(-0.862315 0.431543 0.264922)} Corner 985 41227 {normal=(-0.887285 0.136978 0.440412)} Corner 985 41228 {normal=(-0.887285 0.136978 0.440412)} Corner 1000 41228 {normal=(-0.862315 0.431543 0.264922)} Corner 985 41229 {normal=(-0.887285 0.136978 0.440412)} Corner 1022 41231 {normal=(-0.838533 -0.215934 0.500236)} Corner 1022 41232 {normal=(-0.838533 -0.215934 0.500236)} Corner 985 41232 {normal=(-0.887285 0.136978 0.440412)} Corner 1022 41233 {normal=(-0.838533 -0.215934 0.500236)} Corner 1075 41235 {normal=(-0.76859 -0.490818 0.410326)} Corner 1075 41236 {normal=(-0.76859 -0.490818 0.410326)} Corner 1022 41236 {normal=(-0.838533 -0.215934 0.500236)} Corner 1075 41237 {normal=(-0.76859 -0.490818 0.410326)} Corner 1124 41239 {normal=(-0.671172 -0.704484 0.230719)} Corner 1124 41240 {normal=(-0.671172 -0.704484 0.230719)} Corner 1075 41240 {normal=(-0.76859 -0.490818 0.410326)} Corner 1124 41241 {normal=(-0.671172 -0.704484 0.230719)} Corner 1241 41243 {normal=(-0.549956 -0.83051 -0.088326)} Corner 1241 41244 {normal=(-0.549956 -0.83051 -0.088326)} Corner 1124 41244 {normal=(-0.671172 -0.704484 0.230719)} Corner 1241 41245 {normal=(-0.549956 -0.83051 -0.088326)} Corner 1373 41247 {normal=(-0.446972 -0.774972 -0.446805)} Corner 1373 41248 {normal=(-0.446972 -0.774972 -0.446805)} Corner 1241 41248 {normal=(-0.549956 -0.83051 -0.088326)} Corner 1373 41249 {normal=(-0.446972 -0.774972 -0.446805)} Corner 1425 41251 {normal=(-0.393668 -0.591485 -0.703683)} Corner 1425 41252 {normal=(-0.393668 -0.591485 -0.703683)} Corner 1373 41252 {normal=(-0.446972 -0.774972 -0.446805)} Corner 1425 41253 {normal=(-0.393668 -0.591485 -0.703683)} Corner 1446 41255 {normal=(-0.383541 -0.342221 -0.857777)} Corner 1446 41256 {normal=(-0.383541 -0.342221 -0.857777)} Corner 1425 41256 {normal=(-0.393668 -0.591485 -0.703683)} Corner 1446 41257 {normal=(-0.383541 -0.342221 -0.857777)} Corner 1410 41259 {normal=(-0.414119 -0.0429711 -0.909208)} Corner 1410 41260 {normal=(-0.414119 -0.0429711 -0.909208)} Corner 1446 41260 {normal=(-0.383541 -0.342221 -0.857777)} Corner 1410 41261 {normal=(-0.414119 -0.0429711 -0.909208)} Corner 1323 41263 {normal=(-0.496832 0.29331 -0.816778)} Corner 1323 41264 {normal=(-0.496832 0.29331 -0.816778)} Corner 1410 41264 {normal=(-0.414119 -0.0429711 -0.909208)} Corner 1323 41265 {normal=(-0.496832 0.29331 -0.816778)} Corner 1176 41267 {normal=(-0.623655 0.555636 -0.549839)} Corner 1176 41268 {normal=(-0.623655 0.555636 -0.549839)} Corner 1323 41268 {normal=(-0.496832 0.29331 -0.816778)} Corner 1176 41269 {normal=(-0.623655 0.555636 -0.549839)} Corner 1092 41271 {normal=(-0.746108 0.633006 -0.206462)} Corner 1092 41272 {normal=(-0.746108 0.633006 -0.206462)} Corner 1176 41272 {normal=(-0.623655 0.555636 -0.549839)} Corner 1092 41273 {normal=(-0.746108 0.633006 -0.206462)} Corner 1039 41275 {normal=(-0.818278 0.569813 0.0757287)} Corner 1039 41276 {normal=(-0.818278 0.569813 0.0757287)} Corner 1092 41276 {normal=(-0.746108 0.633006 -0.206462)} Corner 1039 41277 {normal=(-0.272897 0.884773 0.377761)} Corner 1039 41278 {normal=(-0.272897 0.884773 0.377761)} Corner 1000 41278 {normal=(-0.32974 0.704663 0.628269)} Corner 1000 41279 {normal=(-0.32974 0.704663 0.628269)} Corner 1000 41281 {normal=(-0.32974 0.704663 0.628269)} Corner 1000 41282 {normal=(-0.32974 0.704663 0.628269)} Corner 985 41282 {normal=(-0.353175 0.319994 0.879131)} Corner 985 41283 {normal=(-0.353175 0.319994 0.879131)} Corner 985 41285 {normal=(-0.353175 0.319994 0.879131)} Corner 985 41286 {normal=(-0.353175 0.319994 0.879131)} Corner 1022 41286 {normal=(-0.297532 -0.154279 0.942164)} Corner 1022 41287 {normal=(-0.297532 -0.154279 0.942164)} Corner 1022 41289 {normal=(-0.297532 -0.154279 0.942164)} Corner 1022 41290 {normal=(-0.297532 -0.154279 0.942164)} Corner 1075 41290 {normal=(-0.200312 -0.518366 0.831367)} Corner 1075 41291 {normal=(-0.200312 -0.518366 0.831367)} Corner 1075 41293 {normal=(-0.200312 -0.518366 0.831367)} Corner 1075 41294 {normal=(-0.200312 -0.518366 0.831367)} Corner 1124 41294 {normal=(-0.0672449 -0.810633 0.581681)} Corner 1124 41295 {normal=(-0.0672449 -0.810633 0.581681)} Corner 1124 41297 {normal=(-0.0672449 -0.810633 0.581681)} Corner 1124 41298 {normal=(-0.0672449 -0.810633 0.581681)} Corner 1241 41298 {normal=(0.100263 -0.97983 0.17286)} Corner 1241 41299 {normal=(0.100263 -0.97983 0.17286)} Corner 1241 41301 {normal=(0.100263 -0.97983 0.17286)} Corner 1241 41302 {normal=(0.100263 -0.97983 0.17286)} Corner 1373 41302 {normal=(0.254437 -0.916983 -0.307251)} Corner 1373 41303 {normal=(0.254437 -0.916983 -0.307251)} Corner 1373 41305 {normal=(0.254437 -0.916983 -0.307251)} Corner 1373 41306 {normal=(0.254437 -0.916983 -0.307251)} Corner 1425 41306 {normal=(0.335908 -0.669081 -0.662946)} Corner 1425 41307 {normal=(0.335908 -0.669081 -0.662946)} Corner 1425 41309 {normal=(0.335908 -0.669081 -0.662946)} Corner 1425 41310 {normal=(0.335908 -0.669081 -0.662946)} Corner 1446 41310 {normal=(0.353376 -0.327211 -0.876389)} Corner 1446 41311 {normal=(0.353376 -0.327211 -0.876389)} Corner 1446 41313 {normal=(0.353376 -0.327211 -0.876389)} Corner 1446 41314 {normal=(0.353376 -0.327211 -0.876389)} Corner 1410 41314 {normal=(0.310063 0.0869037 -0.946736)} Corner 1410 41315 {normal=(0.310063 0.0869037 -0.946736)} Corner 1410 41317 {normal=(0.310063 0.0869037 -0.946736)} Corner 1410 41318 {normal=(0.310063 0.0869037 -0.946736)} Corner 1323 41318 {normal=(0.190205 0.546764 -0.815397)} Corner 1323 41319 {normal=(0.190205 0.546764 -0.815397)} Corner 1323 41321 {normal=(0.190205 0.546764 -0.815397)} Corner 1323 41322 {normal=(0.190205 0.546764 -0.815397)} Corner 1176 41322 {normal=(0.00964745 0.892084 -0.451767)} Corner 1176 41323 {normal=(0.00964745 0.892084 -0.451767)} Corner 1176 41325 {normal=(0.00964745 0.892084 -0.451767)} Corner 1176 41326 {normal=(0.00964745 0.892084 -0.451767)} Corner 1092 41326 {normal=(-0.16498 0.98619 0.014546)} Corner 1092 41327 {normal=(-0.16498 0.98619 0.014546)} Corner 1092 41329 {normal=(-0.16498 0.98619 0.014546)} Corner 1092 41330 {normal=(-0.16498 0.98619 0.014546)} Corner 1039 41330 {normal=(-0.272897 0.884773 0.377761)} Corner 1039 41331 {normal=(-0.272897 0.884773 0.377761)} Corner 2147 41333 {normal=(0.259373 0.964543 0.0488025)} Corner 1807 41334 {normal=(0.626164 0.709044 0.324307)} Corner 1807 41335 {normal=(0.626164 0.709044 0.324307)} Corner 2309 41335 {normal=(0.453887 0.843881 0.286096)} Corner 2309 41336 {normal=(0.453887 0.843881 0.286096)} Corner 2147 41336 {normal=(0.259373 0.964543 0.0488025)} Corner 2091 41337 {normal=(0.155298 0.985685 -0.065633)} Corner 1706 41337 {normal=(0.494102 0.851705 -0.174531)} Corner 1706 41338 {normal=(0.494102 0.851705 -0.174531)} Corner 2147 41339 {normal=(0.259373 0.964543 0.0488025)} Corner 2147 41340 {normal=(0.259373 0.964543 0.0488025)} Corner 2091 41340 {normal=(0.155298 0.985685 -0.065633)} Corner 1995 41341 {normal=(0.0234464 0.706527 -0.707297)} Corner 1672 41341 {normal=(0.0170495 0.638184 -0.769695)} Corner 1672 41342 {normal=(0.0170495 0.638184 -0.769695)} Corner 1706 41342 {normal=(0.0205773 0.643586 -0.765097)} Corner 1706 41343 {normal=(0.0205773 0.643586 -0.765097)} Corner 2091 41343 {normal=(0.0215079 0.708354 -0.70553)} Corner 2091 41344 {normal=(0.0215079 0.708354 -0.70553)} Corner 1995 41344 {normal=(0.0234464 0.706527 -0.707297)} Corner 1672 41346 {normal=(-0.291728 0.245876 -0.924359)} Corner 1672 41347 {normal=(-0.291728 0.245876 -0.924359)} Corner 1995 41347 {normal=(-0.112777 0.249662 -0.961743)} Corner 1995 41348 {normal=(-0.112777 0.249662 -0.961743)} Corner 1552 41349 {normal=(0.877988 0.451243 0.159742)} Corner 1588 41349 {normal=(0.879196 0.444073 0.172666)} Corner 1588 41350 {normal=(0.879196 0.444073 0.172666)} Corner 1525 41350 {normal=(0.874245 0.473176 0.10863)} Corner 1525 41351 {normal=(0.874245 0.473176 0.10863)} Corner 1498 41351 {normal=(0.873469 0.477051 0.0973334)} Corner 1498 41352 {normal=(0.873469 0.477051 0.0973334)} Corner 1552 41352 {normal=(0.877988 0.451243 0.159742)} Corner 1498 41353 {normal=(0.873469 0.477051 0.0973334)} Corner 1525 41353 {normal=(0.874245 0.473176 0.10863)} Corner 1525 41354 {normal=(0.874245 0.473176 0.10863)} Corner 1492 41354 {normal=(0.867446 0.465311 0.176136)} Corner 1492 41355 {normal=(0.867446 0.465311 0.176136)} Corner 1475 41355 {normal=(0.653397 0.756892 -0.0136639)} Corner 1475 41356 {normal=(0.653397 0.756892 -0.0136639)} Corner 1498 41356 {normal=(0.873469 0.477051 0.0973334)} Corner 1475 41357 {normal=(0.653397 0.756892 -0.0136639)} Corner 1492 41357 {normal=(0.867446 0.465311 0.176136)} Corner 1492 41358 {normal=(0.867446 0.465311 0.176136)} Corner 1636 41358 {normal=(0.783118 0.533001 0.320367)} Corner 1636 41359 {normal=(0.783118 0.533001 0.320367)} Corner 1475 41360 {normal=(0.653397 0.756892 -0.0136639)} Corner 1636 41361 {normal=(0.783118 0.533001 0.320367)} Corner 1636 41362 {normal=(0.783118 0.533001 0.320367)} Corner 1807 41362 {normal=(0.626164 0.709044 0.324307)} Corner 1807 41363 {normal=(0.626164 0.709044 0.324307)} Corner 2147 41365 {normal=(0.00854107 0.709611 0.704542)} Corner 2309 41365 {normal=(0.00854107 0.709611 0.704541)} Corner 2309 41366 {normal=(0.00854107 0.709611 0.704541)} Corner 5546 41366 {normal=(-6.01861e-10 0.709637 0.704567)} Corner 5546 41367 {normal=(-6.01861e-10 0.709637 0.704567)} Corner 5549 41367 {normal=(-2.97203e-10 0.709637 0.704567)} Corner 5549 41368 {normal=(-2.97203e-10 0.709637 0.704567)} Corner 2147 41368 {normal=(0.00854107 0.709611 0.704542)} Corner 5534 41369 {normal=(0 0.986651 -0.162849)} Corner 5533 41369 {normal=(0 0.986651 -0.162849)} Corner 5533 41370 {normal=(0 0.986651 -0.162849)} Corner 4121 41370 {normal=(-0.0033618 0.986645 -0.162848)} Corner 4121 41371 {normal=(-0.0033618 0.986645 -0.162848)} Corner 4071 41371 {normal=(-0.0033618 0.986645 -0.162848)} Corner 4071 41372 {normal=(-0.0033618 0.986645 -0.162848)} Corner 5534 41372 {normal=(0 0.986651 -0.162849)} Corner 4071 41373 {normal=(0.80458 0.593225 0.0271322)} Corner 4121 41373 {normal=(0.80458 0.593225 0.0271322)} Corner 4121 41374 {normal=(0.80458 0.593225 0.0271322)} Corner 3414 41374 {normal=(0.820134 0.570936 0.0375861)} Corner 3414 41375 {normal=(0.820134 0.570936 0.0375861)} Corner 3340 41375 {normal=(0.823243 0.566297 0.0397297)} Corner 3340 41376 {normal=(0.823243 0.566297 0.0397297)} Corner 4071 41376 {normal=(0.80458 0.593225 0.0271322)} Corner 3340 41377 {normal=(0.823243 0.566297 0.0397297)} Corner 3414 41377 {normal=(0.820134 0.570936 0.0375861)} Corner 3414 41378 {normal=(0.820134 0.570936 0.0375861)} Corner 1810 41378 {normal=(0.80739 0.588827 -0.0374591)} Corner 1810 41379 {normal=(0.80739 0.588827 -0.0374591)} Corner 1713 41379 {normal=(0.851382 0.52454 -0.00253661)} Corner 1713 41380 {normal=(0.851382 0.52454 -0.00253661)} Corner 3340 41380 {normal=(0.823243 0.566297 0.0397297)} Corner 1713 41381 {normal=(0.851382 0.52454 -0.00253661)} Corner 1752 41381 {normal=(0.853763 0.519588 -0.0334157)} Corner 1752 41382 {normal=(0.853763 0.519588 -0.0334157)} Corner 1639 41382 {normal=(0.888412 0.451303 0.0839602)} Corner 1639 41383 {normal=(0.888412 0.451303 0.0839602)} Corner 1618 41383 {normal=(0.88672 0.444639 0.126585)} Corner 1618 41384 {normal=(0.88672 0.444639 0.126585)} Corner 1713 41384 {normal=(0.851382 0.52454 -0.00253661)} Corner 1618 41385 {normal=(0.88672 0.444639 0.126585)} Corner 1639 41385 {normal=(0.888412 0.451303 0.0839602)} Corner 1639 41386 {normal=(0.888412 0.451303 0.0839602)} Corner 1588 41386 {normal=(0.879196 0.444073 0.172666)} Corner 1588 41387 {normal=(0.879196 0.444073 0.172666)} Corner 1552 41387 {normal=(0.877988 0.451243 0.159742)} Corner 1552 41388 {normal=(0.877988 0.451243 0.159742)} Corner 1618 41388 {normal=(0.88672 0.444639 0.126585)} Corner 1671 41389 {normal=(-0.457835 0.282287 0.843031)} Corner 1688 41389 {normal=(-0.505859 0.25834 0.823023)} Corner 1688 41390 {normal=(-0.505859 0.25834 0.823023)} Corner 1599 41390 {normal=(-0.672825 0.246808 0.697419)} Corner 1599 41391 {normal=(-0.672825 0.246808 0.697419)} Corner 1569 41391 {normal=(-0.643385 0.241032 0.726608)} Corner 1569 41392 {normal=(-0.643385 0.241032 0.726608)} Corner 1671 41392 {normal=(-0.457835 0.282287 0.843031)} Corner 3085 41393 {normal=(-0.392041 0.312524 0.865236)} Corner 3250 41393 {normal=(-0.392041 0.312524 0.865236)} Corner 3250 41394 {normal=(-0.392041 0.312524 0.865236)} Corner 1688 41394 {normal=(-0.505859 0.25834 0.823023)} Corner 1688 41395 {normal=(-0.505859 0.25834 0.823023)} Corner 1671 41395 {normal=(-0.457835 0.282287 0.843031)} Corner 1671 41396 {normal=(-0.457835 0.282287 0.843031)} Corner 3085 41396 {normal=(-0.392041 0.312524 0.865236)} Corner 1482 41397 {normal=(-0.272579 0.779267 0.564309)} Corner 1498 41397 {normal=(-0.272584 0.779297 0.564264)} Corner 1498 41398 {normal=(-0.272584 0.779297 0.564264)} Corner 1475 41398 {normal=(-0.285218 0.878497 0.383268)} Corner 1475 41399 {normal=(-0.285218 0.878497 0.383268)} Corner 1414 41399 {normal=(-0.285218 0.878497 0.383268)} Corner 1414 41400 {normal=(-0.285218 0.878497 0.383268)} Corner 1482 41400 {normal=(-0.272579 0.779267 0.564309)} Corner 1527 41401 {normal=(-0.13321 0.631428 0.763907)} Corner 1552 41401 {normal=(-0.158007 0.635535 0.755731)} Corner 1552 41402 {normal=(-0.158007 0.635535 0.755731)} Corner 1498 41402 {normal=(-0.272584 0.779297 0.564264)} Corner 1498 41403 {normal=(-0.272584 0.779297 0.564264)} Corner 1482 41403 {normal=(-0.272579 0.779267 0.564309)} Corner 1482 41404 {normal=(-0.272579 0.779267 0.564309)} Corner 1527 41404 {normal=(-0.13321 0.631428 0.763907)} Corner 1599 41405 {normal=(0.0836456 0.601938 0.79415)} Corner 1618 41405 {normal=(0.0421044 0.606456 0.794001)} Corner 1618 41406 {normal=(0.0421044 0.606456 0.794001)} Corner 1552 41406 {normal=(-0.158007 0.635535 0.755731)} Corner 1552 41407 {normal=(-0.158007 0.635535 0.755731)} Corner 1527 41407 {normal=(-0.13321 0.631428 0.763907)} Corner 1527 41408 {normal=(-0.13321 0.631428 0.763907)} Corner 1599 41408 {normal=(0.0836456 0.601938 0.79415)} Corner 1688 41409 {normal=(0.251544 0.620408 0.742845)} Corner 1713 41409 {normal=(0.228962 0.613246 0.75598)} Corner 1713 41410 {normal=(0.228962 0.613246 0.75598)} Corner 1618 41410 {normal=(0.0421044 0.606456 0.794001)} Corner 1618 41411 {normal=(0.0421044 0.606456 0.794001)} Corner 1599 41411 {normal=(0.0836456 0.601938 0.79415)} Corner 1599 41412 {normal=(0.0836456 0.601938 0.79415)} Corner 1688 41412 {normal=(0.251544 0.620408 0.742845)} Corner 3250 41413 {normal=(0.543351 0.544993 0.638555)} Corner 3340 41413 {normal=(0.469285 0.580878 0.665096)} Corner 3340 41414 {normal=(0.469285 0.580878 0.665096)} Corner 1713 41414 {normal=(0.228962 0.613246 0.75598)} Corner 1713 41415 {normal=(0.228962 0.613246 0.75598)} Corner 1688 41415 {normal=(0.251544 0.620408 0.742845)} Corner 1688 41416 {normal=(0.251544 0.620408 0.742845)} Corner 3250 41416 {normal=(0.543351 0.544993 0.638555)} Corner 4019 41417 {normal=(0.667307 0.469467 0.578189)} Corner 4071 41417 {normal=(0.667307 0.469467 0.578189)} Corner 4071 41418 {normal=(0.667307 0.469467 0.578189)} Corner 3340 41418 {normal=(0.469285 0.580878 0.665096)} Corner 3340 41419 {normal=(0.469285 0.580878 0.665096)} Corner 3250 41419 {normal=(0.543351 0.544993 0.638555)} Corner 3250 41420 {normal=(0.543351 0.544993 0.638555)} Corner 4019 41420 {normal=(0.667307 0.469467 0.578189)} Corner 5532 41421 {normal=(8.84798e-10 0.863212 0.504842)} Corner 5534 41421 {normal=(8.90806e-10 0.863212 0.504842)} Corner 5534 41422 {normal=(8.90806e-10 0.863212 0.504842)} Corner 4071 41422 {normal=(-0.00575426 0.863197 0.504834)} Corner 4071 41423 {normal=(-0.00575426 0.863197 0.504834)} Corner 4019 41423 {normal=(-0.00575426 0.863197 0.504834)} Corner 4019 41424 {normal=(-0.00575426 0.863197 0.504834)} Corner 5532 41424 {normal=(8.84798e-10 0.863212 0.504842)} Corner 1504 41425 {normal=(-0.776761 0.25186 0.577242)} Corner 1527 41425 {normal=(-0.786889 0.24967 0.564332)} Corner 1527 41426 {normal=(-0.786889 0.24967 0.564332)} Corner 1482 41426 {normal=(-0.802688 0.393751 0.447942)} Corner 1482 41427 {normal=(-0.802688 0.393751 0.447942)} Corner 1442 41427 {normal=(-0.800453 0.404626 0.442214)} Corner 1442 41428 {normal=(-0.800453 0.404626 0.442214)} Corner 1504 41428 {normal=(-0.776761 0.25186 0.577242)} Corner 1569 41429 {normal=(-0.643385 0.241032 0.726608)} Corner 1599 41429 {normal=(-0.672825 0.246808 0.697419)} Corner 1599 41430 {normal=(-0.672825 0.246808 0.697419)} Corner 1527 41430 {normal=(-0.786889 0.24967 0.564332)} Corner 1527 41431 {normal=(-0.786889 0.24967 0.564332)} Corner 1504 41431 {normal=(-0.776761 0.25186 0.577242)} Corner 1504 41432 {normal=(-0.776761 0.25186 0.577242)} Corner 1569 41432 {normal=(-0.643385 0.241032 0.726608)} Corner 3892 41433 {normal=(0.0903232 0.127954 0.987659)} Corner 4019 41433 {normal=(0.0810188 0.133864 0.987682)} Corner 4019 41434 {normal=(0.0810188 0.133864 0.987682)} Corner 3250 41434 {normal=(0.167569 0.0780136 0.982769)} Corner 3250 41435 {normal=(0.167569 0.0780136 0.982769)} Corner 3085 41435 {normal=(0.167569 0.0780136 0.982769)} Corner 3085 41436 {normal=(0.167569 0.0780136 0.982769)} Corner 3892 41436 {normal=(0.0903232 0.127954 0.987659)} Corner 5531 41437 {normal=(-4.81173e-10 0.184119 0.982904)} Corner 5532 41437 {normal=(-4.85542e-10 0.184119 0.982904)} Corner 5532 41438 {normal=(-4.85542e-10 0.184119 0.982904)} Corner 4019 41438 {normal=(0.0810188 0.133864 0.987682)} Corner 4019 41439 {normal=(0.0810188 0.133864 0.987682)} Corner 3892 41439 {normal=(0.0903232 0.127954 0.987659)} Corner 3892 41440 {normal=(0.0903232 0.127954 0.987659)} Corner 5531 41440 {normal=(-4.81173e-10 0.184119 0.982904)} Corner 2091 41441 {normal=(0.155298 0.985685 -0.065633)} Corner 2147 41441 {normal=(0.259373 0.964543 0.0488025)} Corner 2147 41442 {normal=(0.259373 0.964543 0.0488025)} Corner 5549 41442 {normal=(0 0.996539 -0.0831233)} Corner 5549 41443 {normal=(0 0.996539 -0.0831233)} Corner 5548 41443 {normal=(0 0.996539 -0.0831233)} Corner 5548 41444 {normal=(0 0.996539 -0.0831233)} Corner 2091 41444 {normal=(0.155298 0.985685 -0.065633)} Corner 1600 41445 {normal=(0.454583 0.854963 -0.249784)} Corner 1706 41447 {normal=(0.494102 0.851705 -0.174531)} Corner 1706 41448 {normal=(0.494102 0.851705 -0.174531)} Corner 1600 41448 {normal=(0.454583 0.854963 -0.249784)} Corner 1414 41449 {normal=(0.193883 0.953745 -0.22974)} Corner 1475 41449 {normal=(0.653397 0.756892 -0.0136639)} Corner 1475 41450 {normal=(0.653397 0.756892 -0.0136639)} Corner 1600 41451 {normal=(0.454583 0.854963 -0.249784)} Corner 1600 41452 {normal=(0.454583 0.854963 -0.249784)} Corner 1414 41452 {normal=(0.193883 0.953745 -0.22974)} Corner 1367 41453 {normal=(-0.979642 -0.130303 0.152716)} Corner 1357 41453 {normal=(-0.979642 -0.130303 0.152716)} Corner 1357 41454 {normal=(-0.979642 -0.130303 0.152716)} Corner 1459 41454 {normal=(-0.971309 -0.214806 0.10206)} Corner 1459 41455 {normal=(-0.971309 -0.214806 0.10206)} Corner 1442 41455 {normal=(-0.970526 -0.219695 0.0990595)} Corner 1442 41456 {normal=(-0.970526 -0.219695 0.0990595)} Corner 1367 41456 {normal=(-0.979642 -0.130303 0.152716)} Corner 1551 41457 {normal=(-0.689265 0.238421 -0.684155)} Corner 1357 41458 {normal=(-0.688687 0.701742 -0.182399)} Corner 1357 41459 {normal=(-0.688687 0.701742 -0.182399)} Corner 1367 41459 {normal=(-0.860041 0.200645 -0.469117)} Corner 1367 41460 {normal=(-0.860041 0.200645 -0.469117)} Corner 1551 41460 {normal=(-0.689265 0.238421 -0.684155)} Corner 1672 41461 {normal=(-0.291728 0.245876 -0.924359)} Corner 1551 41463 {normal=(-0.689265 0.238421 -0.684155)} Corner 1551 41464 {normal=(-0.689265 0.238421 -0.684155)} Corner 1672 41464 {normal=(-0.291728 0.245876 -0.924359)} Corner 5547 41465 {normal=(5.46189e-10 0.285333 -0.958428)} Corner 1995 41467 {normal=(-0.112777 0.249662 -0.961743)} Corner 1995 41468 {normal=(-0.112777 0.249662 -0.961743)} Corner 5547 41468 {normal=(5.46189e-10 0.285333 -0.958428)} Corner 1442 41469 {normal=(-0.970526 -0.219695 0.0990595)} Corner 1459 41469 {normal=(-0.971309 -0.214806 0.10206)} Corner 1459 41470 {normal=(-0.971309 -0.214806 0.10206)} Corner 1511 41470 {normal=(-0.958965 -0.276973 0.060602)} Corner 1511 41471 {normal=(-0.958965 -0.276973 0.060602)} Corner 1504 41471 {normal=(-0.95774 -0.281699 0.0581438)} Corner 1504 41472 {normal=(-0.95774 -0.281699 0.0581438)} Corner 1442 41472 {normal=(-0.970526 -0.219695 0.0990595)} Corner 1442 41473 {normal=(-0.800453 0.404626 0.442214)} Corner 1482 41473 {normal=(-0.802688 0.393751 0.447942)} Corner 1482 41474 {normal=(-0.802688 0.393751 0.447942)} Corner 1414 41474 {normal=(-0.757738 0.5458 0.357681)} Corner 1414 41475 {normal=(-0.757738 0.5458 0.357681)} Corner 1367 41475 {normal=(-0.757738 0.5458 0.357681)} Corner 1367 41476 {normal=(-0.757738 0.5458 0.357681)} Corner 1442 41476 {normal=(-0.800453 0.404626 0.442214)} Corner 1367 41477 {normal=(-0.439471 0.76863 -0.464837)} Corner 1414 41477 {normal=(-0.439471 0.76863 -0.464837)} Corner 1414 41478 {normal=(-0.439471 0.76863 -0.464837)} Corner 1600 41478 {normal=(-0.243682 0.716696 -0.653427)} Corner 1600 41479 {normal=(-0.243682 0.716696 -0.653427)} Corner 1551 41479 {normal=(-0.221294 0.707756 -0.670903)} Corner 1551 41480 {normal=(-0.221294 0.707756 -0.670903)} Corner 1367 41480 {normal=(-0.439471 0.76863 -0.464837)} Corner 1551 41481 {normal=(-0.221294 0.707756 -0.670903)} Corner 1600 41481 {normal=(-0.243682 0.716696 -0.653427)} Corner 1600 41482 {normal=(-0.243682 0.716696 -0.653427)} Corner 1706 41482 {normal=(0.0205773 0.643586 -0.765097)} Corner 1706 41483 {normal=(0.0205773 0.643586 -0.765097)} Corner 1672 41483 {normal=(0.0170495 0.638184 -0.769695)} Corner 1672 41484 {normal=(0.0170495 0.638184 -0.769695)} Corner 1551 41484 {normal=(-0.221294 0.707756 -0.670903)} Corner 1995 41485 {normal=(0.0234464 0.706527 -0.707297)} Corner 2091 41485 {normal=(0.0215079 0.708354 -0.70553)} Corner 2091 41486 {normal=(0.0215079 0.708354 -0.70553)} Corner 5548 41486 {normal=(0 0.730835 -0.682554)} Corner 5548 41487 {normal=(0 0.730835 -0.682554)} Corner 5547 41487 {normal=(-1.48285e-10 0.730835 -0.682554)} Corner 5547 41488 {normal=(-1.48285e-10 0.730835 -0.682554)} Corner 1995 41488 {normal=(0.0234464 0.706527 -0.707297)} Corner 5530 41489 {normal=(0 -0.648681 0.761061)} Corner 5531 41489 {normal=(0 -0.648681 0.761061)} Corner 5531 41490 {normal=(0 -0.648681 0.761061)} Corner 3892 41490 {normal=(0.00210205 -0.648679 0.761059)} Corner 3892 41491 {normal=(0.00210205 -0.648679 0.761059)} Corner 3798 41491 {normal=(0.00210205 -0.648679 0.761059)} Corner 3798 41492 {normal=(0.00210205 -0.648679 0.761059)} Corner 5530 41492 {normal=(0 -0.648681 0.761061)} Corner 3798 41493 {normal=(-0.471562 -0.395932 0.787951)} Corner 3892 41493 {normal=(-0.471562 -0.395932 0.787951)} Corner 3892 41494 {normal=(-0.471562 -0.395932 0.787951)} Corner 3085 41494 {normal=(-0.731345 -0.291643 0.616505)} Corner 3085 41495 {normal=(-0.731345 -0.291643 0.616505)} Corner 3012 41495 {normal=(-0.645348 -0.333589 0.687201)} Corner 3012 41496 {normal=(-0.645348 -0.333589 0.687201)} Corner 3798 41496 {normal=(-0.471562 -0.395932 0.787951)} Corner 3012 41497 {normal=(-0.645348 -0.333589 0.687201)} Corner 3085 41497 {normal=(-0.731345 -0.291643 0.616505)} Corner 3085 41498 {normal=(-0.731345 -0.291643 0.616505)} Corner 1671 41498 {normal=(-0.892963 -0.26031 0.367227)} Corner 1671 41499 {normal=(-0.892963 -0.26031 0.367227)} Corner 1670 41499 {normal=(-0.881534 -0.245622 0.403198)} Corner 1670 41500 {normal=(-0.881534 -0.245622 0.403198)} Corner 3012 41500 {normal=(-0.645348 -0.333589 0.687201)} Corner 1670 41501 {normal=(-0.881534 -0.245622 0.403198)} Corner 1671 41501 {normal=(-0.892963 -0.26031 0.367227)} Corner 1671 41502 {normal=(-0.892963 -0.26031 0.367227)} Corner 1569 41502 {normal=(-0.948793 -0.272819 0.159253)} Corner 1569 41503 {normal=(-0.948793 -0.272819 0.159253)} Corner 1574 41503 {normal=(-0.939419 -0.278893 0.199276)} Corner 1574 41504 {normal=(-0.939419 -0.278893 0.199276)} Corner 1670 41504 {normal=(-0.881534 -0.245622 0.403198)} Corner 1574 41505 {normal=(-0.939419 -0.278893 0.199276)} Corner 1569 41505 {normal=(-0.948793 -0.272819 0.159253)} Corner 1569 41506 {normal=(-0.948793 -0.272819 0.159253)} Corner 1504 41506 {normal=(-0.95774 -0.281699 0.0581438)} Corner 1504 41507 {normal=(-0.95774 -0.281699 0.0581438)} Corner 1511 41507 {normal=(-0.958965 -0.276973 0.060602)} Corner 1511 41508 {normal=(-0.958965 -0.276973 0.060602)} Corner 1574 41508 {normal=(-0.939419 -0.278893 0.199276)} Corner 1574 41530 {normal=(-0.353459 0.460098 0.81448)} Corner 1574 41531 {normal=(-0.353459 0.460098 0.81448)} Corner 1511 41531 {normal=(-0.352003 0.565395 0.745938)} Corner 1511 41532 {normal=(-0.352003 0.565395 0.745938)} Corner 1459 41533 {normal=(-0.346561 0.750953 0.562107)} Corner 1459 41534 {normal=(-0.346561 0.750953 0.562107)} Corner 1357 41534 {normal=(-0.688687 0.701742 -0.182399)} Corner 1357 41535 {normal=(-0.688687 0.701742 -0.182399)} Corner 1670 41561 {normal=(-0.259849 0.489852 0.83218)} Corner 1670 41564 {normal=(-0.259849 0.489852 0.83218)} Corner 1670 41565 {normal=(-0.259849 0.489852 0.83218)} Corner 1670 41566 {normal=(-0.259849 0.489852 0.83218)} Corner 1574 41566 {normal=(-0.353459 0.460098 0.81448)} Corner 1574 41567 {normal=(-0.353459 0.460098 0.81448)} Corner 3798 41585 {normal=(0.0580522 0.0128035 0.998231)} Corner 3798 41586 {normal=(0.0580522 0.0128035 0.998231)} Corner 5530 41589 {normal=(-3.71175e-11 0.000226545 1)} Corner 5530 41590 {normal=(-3.71175e-11 0.000226545 1)} Corner 3798 41590 {normal=(0.0580522 0.0128035 0.998231)} Corner 3798 41591 {normal=(0.0580522 0.0128035 0.998231)} Corner 3798 41609 {normal=(0.0580522 0.0128035 0.998231)} Corner 3012 41609 {normal=(0.0385028 0.23259 0.971812)} Corner 3012 41610 {normal=(0.0385028 0.23259 0.971812)} Corner 3798 41612 {normal=(0.0580522 0.0128035 0.998231)} Corner 1258 41613 {normal=(-0.775966 -0.619783 -0.117242)} Corner 1338 41615 {normal=(-0.829604 -0.447757 -0.333573)} Corner 1338 41616 {normal=(-0.829604 -0.447757 -0.333573)} Corner 1258 41616 {normal=(-0.775966 -0.619783 -0.117242)} Corner 1026 41617 {normal=(-0.935044 -0.152167 -0.320216)} Corner 1051 41617 {normal=(-0.935044 -0.152167 -0.320216)} Corner 1051 41618 {normal=(-0.935044 -0.152167 -0.320216)} Corner 1096 41618 {normal=(-0.935041 -0.152169 -0.320224)} Corner 1096 41619 {normal=(-0.935041 -0.152169 -0.320224)} Corner 1008 41619 {normal=(-0.93504 -0.152175 -0.320222)} Corner 1008 41620 {normal=(-0.93504 -0.152175 -0.320222)} Corner 1026 41620 {normal=(-0.935044 -0.152167 -0.320216)} Corner 5526 41621 {normal=(0 -0.559218 0.829021)} Corner 3948 41623 {normal=(0.0283433 -0.617664 0.785931)} Corner 3948 41624 {normal=(0.0283433 -0.617664 0.785931)} Corner 5526 41624 {normal=(0 -0.559218 0.829021)} Corner 1572 41657 {normal=(-0.465945 -0.689194 -0.554894)} Corner 1700 41659 {normal=(-0.340103 -0.668111 -0.661784)} Corner 1700 41660 {normal=(-0.340103 -0.668111 -0.661784)} Corner 1572 41660 {normal=(-0.465945 -0.689194 -0.554894)} Corner 1369 41661 {normal=(-0.772525 -0.442271 -0.455633)} Corner 1528 41663 {normal=(-0.66111 -0.577715 -0.478726)} Corner 1528 41664 {normal=(-0.66111 -0.577715 -0.478726)} Corner 1369 41664 {normal=(-0.772525 -0.442271 -0.455633)} Corner 1324 41685 {normal=(-0.483062 -0.858943 0.169904)} Corner 1236 41687 {normal=(-0.541911 -0.835851 0.0876702)} Corner 1236 41688 {normal=(-0.541911 -0.835851 0.0876702)} Corner 1324 41688 {normal=(-0.483062 -0.858943 0.169904)} Corner 3606 41689 {normal=(0.0559736 -0.674587 0.736071)} Corner 1871 41691 {normal=(-0.0412395 -0.730686 0.681467)} Corner 1871 41692 {normal=(-0.0412395 -0.730686 0.681467)} Corner 3606 41692 {normal=(0.0559736 -0.674587 0.736071)} Corner 1232 41705 {normal=(-0.66428 -0.746491 -0.0385022)} Corner 1258 41707 {normal=(-0.775966 -0.619783 -0.117242)} Corner 1258 41708 {normal=(-0.775966 -0.619783 -0.117242)} Corner 1232 41708 {normal=(-0.66428 -0.746491 -0.0385022)} Corner 1459 41709 {normal=(-0.346561 0.750953 0.562107)} Corner 1459 41710 {normal=(-0.346561 0.750953 0.562107)} Corner 1357 41731 {normal=(-0.688687 0.701742 -0.182399)} Corner 1357 41732 {normal=(-0.688687 0.701742 -0.182399)} Corner 7842 41745 {normal=(-0.0566736 0.998233 0.0178687)} Corner 7385 41745 {normal=(-0.0733148 0.997199 -0.0148306)} Corner 7385 41746 {normal=(-0.0733148 0.997199 -0.0148306)} Corner 7130 41746 {normal=(-0.074939 0.996972 -0.0207781)} Corner 7130 41747 {normal=(-0.074939 0.996972 -0.0207781)} Corner 7738 41747 {normal=(-0.0432691 0.998483 0.034061)} Corner 7738 41748 {normal=(-0.0432691 0.998483 0.034061)} Corner 7842 41748 {normal=(-0.0566736 0.998233 0.0178687)} Corner 7738 41749 {normal=(-0.0432691 0.998483 0.034061)} Corner 9355 41749 {normal=(-0.0234709 0.995676 0.0898837)} Corner 9355 41750 {normal=(-0.0234709 0.995676 0.0898837)} Corner 9366 41750 {normal=(-0.0217701 0.995448 0.0927863)} Corner 9366 41751 {normal=(-0.0217701 0.995448 0.0927863)} Corner 8307 41751 {normal=(-0.0339688 0.997765 0.0575512)} Corner 8307 41752 {normal=(-0.0339688 0.997765 0.0575512)} Corner 7738 41752 {normal=(-0.0432691 0.998483 0.034061)} Corner 10033 41753 {normal=(0.191619 0.980451 -0.044704)} Corner 10106 41753 {normal=(0.169808 0.984837 0.0355104)} Corner 10106 41754 {normal=(0.169808 0.984837 0.0355104)} Corner 10139 41754 {normal=(0.162525 0.985048 0.0571546)} Corner 10139 41755 {normal=(0.162525 0.985048 0.0571546)} Corner 10051 41755 {normal=(0.159387 0.983749 -0.0826661)} Corner 10051 41756 {normal=(0.159387 0.983749 -0.0826661)} Corner 10033 41756 {normal=(0.191619 0.980451 -0.044704)} Corner 10051 41757 {normal=(0.159387 0.983749 -0.0826661)} Corner 9916 41757 {normal=(0.0668201 0.987813 -0.140572)} Corner 9916 41758 {normal=(0.0668201 0.987813 -0.140572)} Corner 9892 41758 {normal=(0.0620667 0.98786 -0.142406)} Corner 9892 41759 {normal=(0.0620667 0.98786 -0.142406)} Corner 9992 41759 {normal=(0.127613 0.983901 -0.125112)} Corner 9992 41760 {normal=(0.127613 0.983901 -0.125112)} Corner 10051 41760 {normal=(0.159387 0.983749 -0.0826661)} Corner 9580 41761 {normal=(-0.00884052 0.99186 0.127023)} Corner 9366 41761 {normal=(-0.0217701 0.995448 0.0927863)} Corner 9366 41762 {normal=(-0.0217701 0.995448 0.0927863)} Corner 9355 41762 {normal=(-0.0234709 0.995676 0.0898837)} Corner 9355 41763 {normal=(-0.0234709 0.995676 0.0898837)} Corner 9663 41763 {normal=(0.0216513 0.990245 0.137648)} Corner 9663 41764 {normal=(0.0216513 0.990245 0.137648)} Corner 9580 41764 {normal=(-0.00884052 0.99186 0.127023)} Corner 9663 41765 {normal=(0.0216513 0.990245 0.137648)} Corner 9959 41765 {normal=(0.0958198 0.985132 0.142599)} Corner 9959 41766 {normal=(0.0958198 0.985132 0.142599)} Corner 9944 41766 {normal=(0.101365 0.984759 0.141331)} Corner 9944 41767 {normal=(0.101365 0.984759 0.141331)} Corner 9718 41767 {normal=(0.0586022 0.987693 0.145012)} Corner 9718 41768 {normal=(0.0586022 0.987693 0.145012)} Corner 9663 41768 {normal=(0.0216513 0.990245 0.137648)} Corner 9837 41769 {normal=(0.537642 -0.151062 -0.829531)} Corner 9950 41769 {normal=(0.848265 -0.176501 -0.499294)} Corner 9950 41770 {normal=(0.848265 -0.176501 -0.499294)} Corner 9946 41770 {normal=(0.844525 -0.176195 -0.5057)} Corner 9946 41771 {normal=(0.844525 -0.176195 -0.5057)} Corner 9833 41771 {normal=(0.523452 -0.150051 -0.838739)} Corner 9833 41772 {normal=(0.523452 -0.150051 -0.838739)} Corner 9837 41772 {normal=(0.537642 -0.151062 -0.829531)} Corner 9950 41773 {normal=(0.848265 -0.176501 -0.499294)} Corner 10007 41773 {normal=(0.97729 -0.190405 0.0930054)} Corner 10007 41774 {normal=(0.97729 -0.190405 0.0930054)} Corner 10000 41774 {normal=(0.97564 -0.190263 0.109205)} Corner 10000 41775 {normal=(0.97564 -0.190263 0.109205)} Corner 9946 41775 {normal=(0.844525 -0.176195 -0.5057)} Corner 9946 41776 {normal=(0.844525 -0.176195 -0.5057)} Corner 9950 41776 {normal=(0.848265 -0.176501 -0.499294)} Corner 10007 41777 {normal=(0.97729 -0.190405 0.0930054)} Corner 9878 41777 {normal=(0.684329 -0.174579 0.707966)} Corner 9878 41778 {normal=(0.684329 -0.174579 0.707966)} Corner 9874 41778 {normal=(0.667558 -0.173858 0.723975)} Corner 9874 41779 {normal=(0.667558 -0.173858 0.723975)} Corner 10000 41779 {normal=(0.97564 -0.190263 0.109205)} Corner 10000 41780 {normal=(0.97564 -0.190263 0.109205)} Corner 10007 41780 {normal=(0.97729 -0.190405 0.0930054)} Corner 9878 41781 {normal=(0.684329 -0.174579 0.707966)} Corner 9618 41781 {normal=(0.166896 -0.146454 0.975037)} Corner 9618 41782 {normal=(0.166896 -0.146454 0.975037)} Corner 9610 41782 {normal=(0.151474 -0.145649 0.977672)} Corner 9610 41783 {normal=(0.151474 -0.145649 0.977672)} Corner 9874 41783 {normal=(0.667558 -0.173858 0.723975)} Corner 9874 41784 {normal=(0.667558 -0.173858 0.723975)} Corner 9878 41784 {normal=(0.684329 -0.174579 0.707966)} Corner 9618 41785 {normal=(0.166896 -0.146454 0.975037)} Corner 9351 41785 {normal=(-0.327822 -0.103907 0.939008)} Corner 9351 41786 {normal=(-0.327822 -0.103907 0.939008)} Corner 9350 41786 {normal=(-0.352217 -0.10087 0.930467)} Corner 9350 41787 {normal=(-0.352217 -0.10087 0.930467)} Corner 9610 41787 {normal=(0.151474 -0.145649 0.977672)} Corner 9610 41788 {normal=(0.151474 -0.145649 0.977672)} Corner 9618 41788 {normal=(0.166896 -0.146454 0.975037)} Corner 9351 41789 {normal=(-0.327822 -0.103907 0.939008)} Corner 7893 41789 {normal=(-0.817525 -0.0548391 0.573277)} Corner 7893 41790 {normal=(-0.817525 -0.0548391 0.573277)} Corner 7885 41790 {normal=(-0.83815 -0.0528884 0.54287)} Corner 7885 41791 {normal=(-0.83815 -0.0528884 0.54287)} Corner 9350 41791 {normal=(-0.352217 -0.10087 0.930467)} Corner 9350 41792 {normal=(-0.352217 -0.10087 0.930467)} Corner 9351 41792 {normal=(-0.327822 -0.103907 0.939008)} Corner 7893 41793 {normal=(-0.817525 -0.0548391 0.573277)} Corner 7562 41793 {normal=(-0.995412 -0.0636925 -0.0713959)} Corner 7562 41794 {normal=(-0.995412 -0.0636925 -0.0713959)} Corner 7583 41794 {normal=(-0.994252 -0.0651198 -0.084988)} Corner 7583 41795 {normal=(-0.994252 -0.0651198 -0.084988)} Corner 7885 41795 {normal=(-0.83815 -0.0528884 0.54287)} Corner 7885 41796 {normal=(-0.83815 -0.0528884 0.54287)} Corner 7893 41796 {normal=(-0.817525 -0.0548391 0.573277)} Corner 7562 41797 {normal=(-0.995412 -0.0636925 -0.0713959)} Corner 8119 41797 {normal=(-0.818172 -0.111461 -0.564066)} Corner 8119 41798 {normal=(-0.818172 -0.111461 -0.564066)} Corner 8164 41798 {normal=(-0.811443 -0.112307 -0.57354)} Corner 8164 41799 {normal=(-0.811443 -0.112307 -0.57354)} Corner 7583 41799 {normal=(-0.994252 -0.0651198 -0.084988)} Corner 7583 41800 {normal=(-0.994252 -0.0651198 -0.084988)} Corner 7562 41800 {normal=(-0.995412 -0.0636925 -0.0713959)} Corner 8119 41801 {normal=(-0.818172 -0.111461 -0.564066)} Corner 9386 41801 {normal=(-0.415175 -0.129357 -0.900498)} Corner 9386 41802 {normal=(-0.415175 -0.129357 -0.900498)} Corner 9387 41802 {normal=(-0.420075 -0.129388 -0.898218)} Corner 9387 41803 {normal=(-0.420075 -0.129388 -0.898218)} Corner 8164 41803 {normal=(-0.811443 -0.112307 -0.57354)} Corner 8164 41804 {normal=(-0.811443 -0.112307 -0.57354)} Corner 8119 41804 {normal=(-0.818172 -0.111461 -0.564066)} Corner 9386 41805 {normal=(-0.415175 -0.129357 -0.900498)} Corner 9601 41805 {normal=(0.124269 -0.133575 -0.983217)} Corner 9601 41806 {normal=(0.124269 -0.133575 -0.983217)} Corner 9593 41806 {normal=(0.0991548 -0.132884 -0.986159)} Corner 9593 41807 {normal=(0.0991548 -0.132884 -0.986159)} Corner 9387 41807 {normal=(-0.420075 -0.129388 -0.898218)} Corner 9387 41808 {normal=(-0.420075 -0.129388 -0.898218)} Corner 9386 41808 {normal=(-0.415175 -0.129357 -0.900498)} Corner 9833 41809 {normal=(0.523452 -0.150051 -0.838739)} Corner 9593 41809 {normal=(0.0991548 -0.132884 -0.986159)} Corner 9593 41810 {normal=(0.0991548 -0.132884 -0.986159)} Corner 9601 41810 {normal=(0.124269 -0.133575 -0.983217)} Corner 9601 41811 {normal=(0.124269 -0.133575 -0.983217)} Corner 9837 41811 {normal=(0.537642 -0.151062 -0.829531)} Corner 9837 41812 {normal=(0.537642 -0.151062 -0.829531)} Corner 9833 41812 {normal=(0.523452 -0.150051 -0.838739)} Corner 9866 41813 {normal=(0.513949 -0.149545 -0.844685)} Corner 9617 41813 {normal=(0.0970178 -0.132495 -0.986424)} Corner 9617 41814 {normal=(0.0970178 -0.132495 -0.986424)} Corner 9621 41814 {normal=(0.121172 -0.133162 -0.983659)} Corner 9621 41815 {normal=(0.121172 -0.133162 -0.983659)} Corner 9868 41815 {normal=(0.528294 -0.150561 -0.835606)} Corner 9868 41816 {normal=(0.528294 -0.150561 -0.835606)} Corner 9866 41816 {normal=(0.513949 -0.149545 -0.844685)} Corner 9617 41817 {normal=(0.0970178 -0.132495 -0.986424)} Corner 9371 41817 {normal=(-0.424212 -0.129791 -0.896213)} Corner 9371 41818 {normal=(-0.424212 -0.129791 -0.896213)} Corner 9367 41818 {normal=(-0.419175 -0.129758 -0.898585)} Corner 9367 41819 {normal=(-0.419175 -0.129758 -0.898585)} Corner 9621 41819 {normal=(0.121172 -0.133162 -0.983659)} Corner 9621 41820 {normal=(0.121172 -0.133162 -0.983659)} Corner 9617 41820 {normal=(0.0970178 -0.132495 -0.986424)} Corner 9371 41821 {normal=(-0.424212 -0.129791 -0.896213)} Corner 7895 41821 {normal=(-0.84283 -0.110268 -0.526763)} Corner 7895 41822 {normal=(-0.84283 -0.110268 -0.526763)} Corner 7862 41822 {normal=(-0.848857 -0.10943 -0.517172)} Corner 7862 41823 {normal=(-0.848857 -0.10943 -0.517172)} Corner 9367 41823 {normal=(-0.419175 -0.129758 -0.898585)} Corner 9367 41824 {normal=(-0.419175 -0.129758 -0.898585)} Corner 9371 41824 {normal=(-0.424212 -0.129791 -0.896213)} Corner 7895 41825 {normal=(-0.84283 -0.110268 -0.526763)} Corner 7483 41825 {normal=(-0.997799 -0.0663086 -0.00101704)} Corner 7483 41826 {normal=(-0.997799 -0.0663086 -0.00101704)} Corner 7465 41826 {normal=(-0.997805 -0.0653363 0.0108283)} Corner 7465 41827 {normal=(-0.997805 -0.0653363 0.0108283)} Corner 7862 41827 {normal=(-0.848857 -0.10943 -0.517172)} Corner 7862 41828 {normal=(-0.848857 -0.10943 -0.517172)} Corner 7895 41828 {normal=(-0.84283 -0.110268 -0.526763)} Corner 7483 41829 {normal=(-0.997799 -0.0663086 -0.00101704)} Corner 7920 41829 {normal=(-0.825614 -0.055488 0.5615)} Corner 7920 41830 {normal=(-0.825614 -0.055488 0.5615)} Corner 7928 41830 {normal=(-0.807573 -0.0568464 0.587022)} Corner 7928 41831 {normal=(-0.807573 -0.0568464 0.587022)} Corner 7465 41831 {normal=(-0.997805 -0.0653363 0.0108283)} Corner 7465 41832 {normal=(-0.997805 -0.0653363 0.0108283)} Corner 7483 41832 {normal=(-0.997799 -0.0663086 -0.00101704)} Corner 7920 41833 {normal=(-0.825614 -0.055488 0.5615)} Corner 9358 41833 {normal=(-0.367852 -0.0996659 0.924528)} Corner 9358 41834 {normal=(-0.367852 -0.0996659 0.924528)} Corner 9361 41834 {normal=(-0.342159 -0.102864 0.933995)} Corner 9361 41835 {normal=(-0.342159 -0.102864 0.933995)} Corner 7928 41835 {normal=(-0.807573 -0.0568464 0.587022)} Corner 7928 41836 {normal=(-0.807573 -0.0568464 0.587022)} Corner 7920 41836 {normal=(-0.825614 -0.055488 0.5615)} Corner 9358 41837 {normal=(-0.367852 -0.0996659 0.924528)} Corner 9637 41837 {normal=(0.149472 -0.145656 0.977979)} Corner 9637 41838 {normal=(0.149472 -0.145656 0.977979)} Corner 9642 41838 {normal=(0.165214 -0.14648 0.975319)} Corner 9642 41839 {normal=(0.165214 -0.14648 0.975319)} Corner 9361 41839 {normal=(-0.342159 -0.102864 0.933995)} Corner 9361 41840 {normal=(-0.342159 -0.102864 0.933995)} Corner 9358 41840 {normal=(-0.367852 -0.0996659 0.924528)} Corner 9637 41841 {normal=(0.149472 -0.145656 0.977979)} Corner 9911 41841 {normal=(0.664274 -0.173415 0.727095)} Corner 9911 41842 {normal=(0.664274 -0.173415 0.727095)} Corner 9919 41842 {normal=(0.680981 -0.174131 0.711297)} Corner 9919 41843 {normal=(0.680981 -0.174131 0.711297)} Corner 9642 41843 {normal=(0.165214 -0.14648 0.975319)} Corner 9642 41844 {normal=(0.165214 -0.14648 0.975319)} Corner 9637 41844 {normal=(0.149472 -0.145656 0.977979)} Corner 9911 41845 {normal=(0.664274 -0.173415 0.727095)} Corner 10054 41845 {normal=(0.975283 -0.190718 0.111582)} Corner 10054 41846 {normal=(0.975283 -0.190718 0.111582)} Corner 10061 41846 {normal=(0.977025 -0.190863 0.0948372)} Corner 10061 41847 {normal=(0.977025 -0.190863 0.0948372)} Corner 9919 41847 {normal=(0.680981 -0.174131 0.711297)} Corner 9919 41848 {normal=(0.680981 -0.174131 0.711297)} Corner 9911 41848 {normal=(0.664274 -0.173415 0.727095)} Corner 10054 41849 {normal=(0.975283 -0.190718 0.111582)} Corner 9977 41849 {normal=(0.83913 -0.175972 -0.514679)} Corner 9977 41850 {normal=(0.83913 -0.175972 -0.514679)} Corner 9981 41850 {normal=(0.843305 -0.176311 -0.507691)} Corner 9981 41851 {normal=(0.843305 -0.176311 -0.507691)} Corner 10061 41851 {normal=(0.977025 -0.190863 0.0948372)} Corner 10061 41852 {normal=(0.977025 -0.190863 0.0948372)} Corner 10054 41852 {normal=(0.975283 -0.190718 0.111582)} Corner 9977 41853 {normal=(0.83913 -0.175972 -0.514679)} Corner 9866 41853 {normal=(0.513949 -0.149545 -0.844685)} Corner 9866 41854 {normal=(0.513949 -0.149545 -0.844685)} Corner 9868 41854 {normal=(0.528294 -0.150561 -0.835606)} Corner 9868 41855 {normal=(0.528294 -0.150561 -0.835606)} Corner 9981 41855 {normal=(0.843305 -0.176311 -0.507691)} Corner 9981 41856 {normal=(0.843305 -0.176311 -0.507691)} Corner 9977 41856 {normal=(0.83913 -0.175972 -0.514679)} Corner 9384 41857 {normal=(-0.167445 0.926611 -0.336681)} Corner 7897 41857 {normal=(-0.279413 0.934215 -0.221745)} Corner 7897 41858 {normal=(-0.279413 0.934215 -0.221745)} Corner 8164 41858 {normal=(-0.278752 0.933645 -0.224956)} Corner 8164 41859 {normal=(-0.278752 0.933645 -0.224956)} Corner 9387 41859 {normal=(-0.194008 0.925705 -0.324701)} Corner 9387 41860 {normal=(-0.194008 0.925705 -0.324701)} Corner 9384 41860 {normal=(-0.167445 0.926611 -0.336681)} Corner 9581 41861 {normal=(-0.0230391 0.924287 -0.381001)} Corner 9384 41861 {normal=(-0.167445 0.926611 -0.336681)} Corner 9384 41862 {normal=(-0.167445 0.926611 -0.336681)} Corner 9387 41862 {normal=(-0.194008 0.925705 -0.324701)} Corner 9387 41863 {normal=(-0.194008 0.925705 -0.324701)} Corner 9593 41863 {normal=(0.0126366 0.92184 -0.387365)} Corner 9593 41864 {normal=(0.0126366 0.92184 -0.387365)} Corner 9581 41864 {normal=(-0.0230391 0.924287 -0.381001)} Corner 9858 41865 {normal=(0.198518 0.917542 -0.344538)} Corner 9581 41865 {normal=(-0.0230391 0.924287 -0.381001)} Corner 9581 41866 {normal=(-0.0230391 0.924287 -0.381001)} Corner 9593 41866 {normal=(0.0126366 0.92184 -0.387365)} Corner 9593 41867 {normal=(0.0126366 0.92184 -0.387365)} Corner 9833 41867 {normal=(0.191307 0.917547 -0.348581)} Corner 9833 41868 {normal=(0.191307 0.917547 -0.348581)} Corner 9858 41868 {normal=(0.198518 0.917542 -0.344538)} Corner 9969 41869 {normal=(0.364413 0.910467 -0.195585)} Corner 9858 41869 {normal=(0.198518 0.917542 -0.344538)} Corner 9858 41870 {normal=(0.198518 0.917542 -0.344538)} Corner 9833 41870 {normal=(0.191307 0.917547 -0.348581)} Corner 9833 41871 {normal=(0.191307 0.917547 -0.348581)} Corner 9946 41871 {normal=(0.357491 0.911152 -0.204947)} Corner 9946 41872 {normal=(0.357491 0.911152 -0.204947)} Corner 9969 41872 {normal=(0.364413 0.910467 -0.195585)} Corner 10034 41873 {normal=(0.393989 0.915213 0.0846081)} Corner 9969 41873 {normal=(0.364413 0.910467 -0.195585)} Corner 9969 41874 {normal=(0.364413 0.910467 -0.195585)} Corner 9946 41874 {normal=(0.357491 0.911152 -0.204947)} Corner 9946 41875 {normal=(0.357491 0.911152 -0.204947)} Corner 10000 41875 {normal=(0.399573 0.914999 0.055835)} Corner 10000 41876 {normal=(0.399573 0.914999 0.055835)} Corner 10034 41876 {normal=(0.393989 0.915213 0.0846081)} Corner 9899 41877 {normal=(0.249745 0.915791 0.314569)} Corner 10034 41877 {normal=(0.393989 0.915213 0.0846081)} Corner 10034 41878 {normal=(0.393989 0.915213 0.0846081)} Corner 10000 41878 {normal=(0.399573 0.914999 0.055835)} Corner 10000 41879 {normal=(0.399573 0.914999 0.055835)} Corner 9874 41879 {normal=(0.265701 0.914733 0.304412)} Corner 9874 41880 {normal=(0.265701 0.914733 0.304412)} Corner 9899 41880 {normal=(0.249745 0.915791 0.314569)} Corner 9616 41881 {normal=(0.0582225 0.928065 0.36784)} Corner 9899 41881 {normal=(0.249745 0.915791 0.314569)} Corner 9899 41882 {normal=(0.249745 0.915791 0.314569)} Corner 9874 41882 {normal=(0.265701 0.914733 0.304412)} Corner 9874 41883 {normal=(0.265701 0.914733 0.304412)} Corner 9610 41883 {normal=(0.0692715 0.927143 0.36825)} Corner 9610 41884 {normal=(0.0692715 0.927143 0.36825)} Corner 9616 41884 {normal=(0.0582225 0.928065 0.36784)} Corner 9327 41885 {normal=(-0.111355 0.941516 0.318037)} Corner 9616 41885 {normal=(0.0582225 0.928065 0.36784)} Corner 9616 41886 {normal=(0.0582225 0.928065 0.36784)} Corner 9610 41886 {normal=(0.0692715 0.927143 0.36825)} Corner 9610 41887 {normal=(0.0692715 0.927143 0.36825)} Corner 9350 41887 {normal=(-0.102591 0.940817 0.323014)} Corner 9350 41888 {normal=(-0.102591 0.940817 0.323014)} Corner 9327 41888 {normal=(-0.111355 0.941516 0.318037)} Corner 7647 41889 {normal=(-0.254607 0.954441 0.155621)} Corner 9327 41889 {normal=(-0.111355 0.941516 0.318037)} Corner 9327 41890 {normal=(-0.111355 0.941516 0.318037)} Corner 9350 41890 {normal=(-0.102591 0.940817 0.323014)} Corner 9350 41891 {normal=(-0.102591 0.940817 0.323014)} Corner 7885 41891 {normal=(-0.24122 0.95383 0.178948)} Corner 7885 41892 {normal=(-0.24122 0.95383 0.178948)} Corner 7647 41892 {normal=(-0.254607 0.954441 0.155621)} Corner 7365 41893 {normal=(-0.300517 0.951911 -0.0596295)} Corner 7647 41893 {normal=(-0.254607 0.954441 0.155621)} Corner 7647 41894 {normal=(-0.254607 0.954441 0.155621)} Corner 7885 41894 {normal=(-0.24122 0.95383 0.178948)} Corner 7885 41895 {normal=(-0.24122 0.95383 0.178948)} Corner 7583 41895 {normal=(-0.301921 0.95254 -0.0388894)} Corner 7583 41896 {normal=(-0.301921 0.95254 -0.0388894)} Corner 7365 41896 {normal=(-0.300517 0.951911 -0.0596295)} Corner 7897 41897 {normal=(-0.279413 0.934215 -0.221745)} Corner 7365 41897 {normal=(-0.300517 0.951911 -0.0596295)} Corner 7365 41898 {normal=(-0.300517 0.951911 -0.0596295)} Corner 7583 41898 {normal=(-0.301921 0.95254 -0.0388894)} Corner 7583 41899 {normal=(-0.301921 0.95254 -0.0388894)} Corner 8164 41899 {normal=(-0.278752 0.933645 -0.224956)} Corner 8164 41900 {normal=(-0.278752 0.933645 -0.224956)} Corner 7897 41900 {normal=(-0.279413 0.934215 -0.221745)} Corner 7623 41901 {normal=(0.0505262 -0.998161 -0.0334914)} Corner 7455 41901 {normal=(0.065325 -0.997221 0.0358197)} Corner 7455 41902 {normal=(0.065325 -0.997221 0.0358197)} Corner 7677 41902 {normal=(0.0651623 -0.997334 0.0328556)} Corner 7677 41903 {normal=(0.0651623 -0.997334 0.0328556)} Corner 7850 41903 {normal=(0.0482188 -0.99808 -0.0388707)} Corner 7850 41904 {normal=(0.0482188 -0.99808 -0.0388707)} Corner 7623 41904 {normal=(0.0505262 -0.998161 -0.0334914)} Corner 9296 41905 {normal=(0.0212762 -0.995354 -0.093899)} Corner 7623 41905 {normal=(0.0505262 -0.998161 -0.0334914)} Corner 7623 41906 {normal=(0.0505262 -0.998161 -0.0334914)} Corner 7850 41906 {normal=(0.0482188 -0.99808 -0.0388707)} Corner 7850 41907 {normal=(0.0482188 -0.99808 -0.0388707)} Corner 9335 41907 {normal=(0.0196359 -0.99511 -0.0968026)} Corner 9335 41908 {normal=(0.0196359 -0.99511 -0.0968026)} Corner 9296 41908 {normal=(0.0212762 -0.995354 -0.093899)} Corner 9582 41909 {normal=(-0.0256935 -0.990551 -0.134717)} Corner 9296 41909 {normal=(0.0212762 -0.995354 -0.093899)} Corner 9296 41910 {normal=(0.0212762 -0.995354 -0.093899)} Corner 9335 41910 {normal=(0.0196359 -0.99511 -0.0968026)} Corner 9335 41911 {normal=(0.0196359 -0.99511 -0.0968026)} Corner 9572 41911 {normal=(-0.0293158 -0.990242 -0.136241)} Corner 9572 41912 {normal=(-0.0293158 -0.990242 -0.136241)} Corner 9582 41912 {normal=(-0.0256935 -0.990551 -0.134717)} Corner 9865 41913 {normal=(-0.0974944 -0.985187 -0.141075)} Corner 9582 41913 {normal=(-0.0256935 -0.990551 -0.134717)} Corner 9582 41914 {normal=(-0.0256935 -0.990551 -0.134717)} Corner 9572 41914 {normal=(-0.0293158 -0.990242 -0.136241)} Corner 9572 41915 {normal=(-0.0293158 -0.990242 -0.136241)} Corner 9842 41915 {normal=(-0.103681 -0.984763 -0.139615)} Corner 9842 41916 {normal=(-0.103681 -0.984763 -0.139615)} Corner 9865 41916 {normal=(-0.0974944 -0.985187 -0.141075)} Corner 9991 41917 {normal=(-0.163943 -0.985148 -0.0510568)} Corner 9865 41917 {normal=(-0.0974944 -0.985187 -0.141075)} Corner 9865 41918 {normal=(-0.0974944 -0.985187 -0.141075)} Corner 9842 41918 {normal=(-0.103681 -0.984763 -0.139615)} Corner 9842 41919 {normal=(-0.103681 -0.984763 -0.139615)} Corner 9961 41919 {normal=(-0.167857 -0.985116 -0.0370096)} Corner 9961 41920 {normal=(-0.167857 -0.985116 -0.0370096)} Corner 9991 41920 {normal=(-0.163943 -0.985148 -0.0510568)} Corner 9942 41921 {normal=(-0.160566 -0.983874 0.0788015)} Corner 9991 41921 {normal=(-0.163943 -0.985148 -0.0510568)} Corner 9991 41922 {normal=(-0.163943 -0.985148 -0.0510568)} Corner 9961 41922 {normal=(-0.167857 -0.985116 -0.0370096)} Corner 9961 41923 {normal=(-0.167857 -0.985116 -0.0370096)} Corner 9913 41923 {normal=(-0.157449 -0.984092 0.0823001)} Corner 9913 41924 {normal=(-0.157449 -0.984092 0.0823001)} Corner 9942 41924 {normal=(-0.160566 -0.983874 0.0788015)} Corner 9828 41925 {normal=(-0.069687 -0.987695 0.140007)} Corner 9942 41925 {normal=(-0.160566 -0.983874 0.0788015)} Corner 9942 41926 {normal=(-0.160566 -0.983874 0.0788015)} Corner 9913 41926 {normal=(-0.157449 -0.984092 0.0823001)} Corner 9913 41927 {normal=(-0.157449 -0.984092 0.0823001)} Corner 9798 41927 {normal=(-0.0647472 -0.98774 0.14205)} Corner 9798 41928 {normal=(-0.0647472 -0.98774 0.14205)} Corner 9828 41928 {normal=(-0.069687 -0.987695 0.140007)} Corner 9566 41929 {normal=(0.0403811 -0.988187 0.147835)} Corner 9828 41929 {normal=(-0.069687 -0.987695 0.140007)} Corner 9828 41930 {normal=(-0.069687 -0.987695 0.140007)} Corner 9798 41930 {normal=(-0.0647472 -0.98774 0.14205)} Corner 9798 41931 {normal=(-0.0647472 -0.98774 0.14205)} Corner 9573 41931 {normal=(0.0265874 -0.987825 0.153283)} Corner 9573 41932 {normal=(0.0265874 -0.987825 0.153283)} Corner 9566 41932 {normal=(0.0403811 -0.988187 0.147835)} Corner 9393 41933 {normal=(0.080481 -0.989284 0.121819)} Corner 9566 41933 {normal=(0.0403811 -0.988187 0.147835)} Corner 9566 41934 {normal=(0.0403811 -0.988187 0.147835)} Corner 9573 41934 {normal=(0.0265874 -0.987825 0.153283)} Corner 9573 41935 {normal=(0.0265874 -0.987825 0.153283)} Corner 9394 41935 {normal=(0.08444 -0.989645 0.116076)} Corner 9394 41936 {normal=(0.08444 -0.989645 0.116076)} Corner 9393 41936 {normal=(0.080481 -0.989284 0.121819)} Corner 8137 41937 {normal=(0.0799652 -0.99311 0.0856586)} Corner 9393 41937 {normal=(0.080481 -0.989284 0.121819)} Corner 9393 41938 {normal=(0.080481 -0.989284 0.121819)} Corner 9394 41938 {normal=(0.08444 -0.989645 0.116076)} Corner 9394 41939 {normal=(0.08444 -0.989645 0.116076)} Corner 8348 41939 {normal=(0.0817127 -0.992806 0.0875177)} Corner 8348 41940 {normal=(0.0817127 -0.992806 0.0875177)} Corner 8137 41940 {normal=(0.0799652 -0.99311 0.0856586)} Corner 7455 41941 {normal=(0.065325 -0.997221 0.0358197)} Corner 8137 41941 {normal=(0.0799652 -0.99311 0.0856586)} Corner 8137 41942 {normal=(0.0799652 -0.99311 0.0856586)} Corner 8348 41942 {normal=(0.0817127 -0.992806 0.0875177)} Corner 8348 41943 {normal=(0.0817127 -0.992806 0.0875177)} Corner 7677 41943 {normal=(0.0651623 -0.997334 0.0328556)} Corner 7677 41944 {normal=(0.0651623 -0.997334 0.0328556)} Corner 7455 41944 {normal=(0.065325 -0.997221 0.0358197)} Corner 7336 41945 {normal=(-0.165905 -0.986102 0.00883512)} Corner 7865 41945 {normal=(-0.112028 -0.991942 -0.0591629)} Corner 7865 41946 {normal=(-0.112028 -0.991942 -0.0591629)} Corner 8119 41946 {normal=(-0.114456 -0.99179 -0.057025)} Corner 8119 41947 {normal=(-0.114456 -0.99179 -0.057025)} Corner 7562 41947 {normal=(-0.166954 -0.985898 0.0114907)} Corner 7562 41948 {normal=(-0.166954 -0.985898 0.0114907)} Corner 7336 41948 {normal=(-0.165905 -0.986102 0.00883512)} Corner 7724 41949 {normal=(-0.125147 -0.987928 0.0913045)} Corner 7336 41949 {normal=(-0.165905 -0.986102 0.00883512)} Corner 7336 41950 {normal=(-0.165905 -0.986102 0.00883512)} Corner 7562 41950 {normal=(-0.166954 -0.985898 0.0114907)} Corner 7562 41951 {normal=(-0.166954 -0.985898 0.0114907)} Corner 7893 41951 {normal=(-0.142556 -0.986854 0.07614)} Corner 7893 41952 {normal=(-0.142556 -0.986854 0.07614)} Corner 7724 41952 {normal=(-0.125147 -0.987928 0.0913045)} Corner 9309 41953 {normal=(-0.0633843 -0.990022 0.125852)} Corner 7724 41953 {normal=(-0.125147 -0.987928 0.0913045)} Corner 7724 41954 {normal=(-0.125147 -0.987928 0.0913045)} Corner 7893 41954 {normal=(-0.142556 -0.986854 0.07614)} Corner 7893 41955 {normal=(-0.142556 -0.986854 0.07614)} Corner 9351 41955 {normal=(-0.0492708 -0.990479 0.128543)} Corner 9351 41956 {normal=(-0.0492708 -0.990479 0.128543)} Corner 9309 41956 {normal=(-0.0633843 -0.990022 0.125852)} Corner 9623 41957 {normal=(0.00880779 -0.994008 0.10895)} Corner 9309 41957 {normal=(-0.0633843 -0.990022 0.125852)} Corner 9309 41958 {normal=(-0.0633843 -0.990022 0.125852)} Corner 9351 41958 {normal=(-0.0492708 -0.990479 0.128543)} Corner 9351 41959 {normal=(-0.0492708 -0.990479 0.128543)} Corner 9618 41959 {normal=(0.0113923 -0.994235 0.106612)} Corner 9618 41960 {normal=(0.0113923 -0.994235 0.106612)} Corner 9623 41960 {normal=(0.00880779 -0.994008 0.10895)} Corner 9906 41961 {normal=(0.0569764 -0.997703 0.0366283)} Corner 9623 41961 {normal=(0.00880779 -0.994008 0.10895)} Corner 9623 41962 {normal=(0.00880779 -0.994008 0.10895)} Corner 9618 41962 {normal=(0.0113923 -0.994235 0.106612)} Corner 9618 41963 {normal=(0.0113923 -0.994235 0.106612)} Corner 9878 41963 {normal=(0.0595943 -0.997775 0.0299055)} Corner 9878 41964 {normal=(0.0595943 -0.997775 0.0299055)} Corner 9906 41964 {normal=(0.0569764 -0.997703 0.0366283)} Corner 10047 41965 {normal=(0.0537973 -0.998444 -0.0146742)} Corner 9906 41965 {normal=(0.0569764 -0.997703 0.0366283)} Corner 9906 41966 {normal=(0.0569764 -0.997703 0.0366283)} Corner 9878 41966 {normal=(0.0595943 -0.997775 0.0299055)} Corner 9878 41967 {normal=(0.0595943 -0.997775 0.0299055)} Corner 10007 41967 {normal=(0.0611219 -0.998016 -0.0151342)} Corner 10007 41968 {normal=(0.0611219 -0.998016 -0.0151342)} Corner 10047 41968 {normal=(0.0537973 -0.998444 -0.0146742)} Corner 9979 41969 {normal=(0.0423219 -0.998583 -0.0322747)} Corner 10047 41969 {normal=(0.0537973 -0.998444 -0.0146742)} Corner 10047 41970 {normal=(0.0537973 -0.998444 -0.0146742)} Corner 10007 41970 {normal=(0.0611219 -0.998016 -0.0151342)} Corner 10007 41971 {normal=(0.0611219 -0.998016 -0.0151342)} Corner 9950 41971 {normal=(0.0441143 -0.998114 -0.042679)} Corner 9950 41972 {normal=(0.0441143 -0.998114 -0.042679)} Corner 9979 41972 {normal=(0.0423219 -0.998583 -0.0322747)} Corner 9860 41973 {normal=(0.0684878 -0.994762 -0.0758755)} Corner 9979 41973 {normal=(0.0423219 -0.998583 -0.0322747)} Corner 9979 41974 {normal=(0.0423219 -0.998583 -0.0322747)} Corner 9950 41974 {normal=(0.0441143 -0.998114 -0.042679)} Corner 9950 41975 {normal=(0.0441143 -0.998114 -0.042679)} Corner 9837 41975 {normal=(0.0670186 -0.994933 -0.0749498)} Corner 9837 41976 {normal=(0.0670186 -0.994933 -0.0749498)} Corner 9860 41976 {normal=(0.0684878 -0.994762 -0.0758755)} Corner 9585 41977 {normal=(0.0552575 -0.993684 -0.0976719)} Corner 9860 41977 {normal=(0.0684878 -0.994762 -0.0758755)} Corner 9860 41978 {normal=(0.0684878 -0.994762 -0.0758755)} Corner 9837 41978 {normal=(0.0670186 -0.994933 -0.0749498)} Corner 9837 41979 {normal=(0.0670186 -0.994933 -0.0749498)} Corner 9601 41979 {normal=(0.0642714 -0.993402 -0.0949816)} Corner 9601 41980 {normal=(0.0642714 -0.993402 -0.0949816)} Corner 9585 41980 {normal=(0.0552575 -0.993684 -0.0976719)} Corner 9381 41981 {normal=(-0.00993947 -0.994938 -0.0999979)} Corner 9585 41981 {normal=(0.0552575 -0.993684 -0.0976719)} Corner 9585 41982 {normal=(0.0552575 -0.993684 -0.0976719)} Corner 9601 41982 {normal=(0.0642714 -0.993402 -0.0949816)} Corner 9601 41983 {normal=(0.0642714 -0.993402 -0.0949816)} Corner 9386 41983 {normal=(-0.0271406 -0.994793 -0.0982348)} Corner 9386 41984 {normal=(-0.0271406 -0.994793 -0.0982348)} Corner 9381 41984 {normal=(-0.00993947 -0.994938 -0.0999979)} Corner 7865 41985 {normal=(-0.112028 -0.991942 -0.0591629)} Corner 9381 41985 {normal=(-0.00993947 -0.994938 -0.0999979)} Corner 9381 41986 {normal=(-0.00993947 -0.994938 -0.0999979)} Corner 9386 41986 {normal=(-0.0271406 -0.994793 -0.0982348)} Corner 9386 41987 {normal=(-0.0271406 -0.994793 -0.0982348)} Corner 8119 41987 {normal=(-0.114456 -0.99179 -0.057025)} Corner 8119 41988 {normal=(-0.114456 -0.99179 -0.057025)} Corner 7865 41988 {normal=(-0.112028 -0.991942 -0.0591629)} Corner 9604 41989 {normal=(-0.025409 0.926065 -0.376508)} Corner 9365 41989 {normal=(-0.168681 0.926568 -0.336182)} Corner 9365 41990 {normal=(-0.168681 0.926568 -0.336182)} Corner 9371 41990 {normal=(-0.196149 0.925477 -0.324064)} Corner 9371 41991 {normal=(-0.196149 0.925477 -0.324064)} Corner 9617 41991 {normal=(0.00852037 0.924622 -0.380791)} Corner 9617 41992 {normal=(0.00852037 0.924622 -0.380791)} Corner 9604 41992 {normal=(-0.025409 0.926065 -0.376508)} Corner 9880 41993 {normal=(0.195073 0.913941 -0.355891)} Corner 9604 41993 {normal=(-0.025409 0.926065 -0.376508)} Corner 9604 41994 {normal=(-0.025409 0.926065 -0.376508)} Corner 9617 41994 {normal=(0.00852037 0.924622 -0.380791)} Corner 9617 41995 {normal=(0.00852037 0.924622 -0.380791)} Corner 9866 41995 {normal=(0.206838 0.912839 -0.352055)} Corner 9866 41996 {normal=(0.206838 0.912839 -0.352055)} Corner 9880 41996 {normal=(0.195073 0.913941 -0.355891)} Corner 10012 41997 {normal=(0.379274 0.905296 -0.191285)} Corner 9880 41997 {normal=(0.195073 0.913941 -0.355891)} Corner 9880 41998 {normal=(0.195073 0.913941 -0.355891)} Corner 9866 41998 {normal=(0.206838 0.912839 -0.352055)} Corner 9866 41999 {normal=(0.206838 0.912839 -0.352055)} Corner 9977 41999 {normal=(0.358662 0.903963 -0.232835)} Corner 9977 42000 {normal=(0.358662 0.903963 -0.232835)} Corner 10012 42000 {normal=(0.379274 0.905296 -0.191285)} Corner 10089 42001 {normal=(0.419035 0.90721 0.0371537)} Corner 10012 42001 {normal=(0.379274 0.905296 -0.191285)} Corner 10012 42002 {normal=(0.379274 0.905296 -0.191285)} Corner 9977 42002 {normal=(0.358662 0.903963 -0.232835)} Corner 9977 42003 {normal=(0.358662 0.903963 -0.232835)} Corner 10054 42003 {normal=(0.417705 0.902549 0.104541)} Corner 10054 42004 {normal=(0.417705 0.902549 0.104541)} Corner 10089 42004 {normal=(0.419035 0.90721 0.0371537)} Corner 9929 42005 {normal=(0.272642 0.905208 0.325983)} Corner 10089 42005 {normal=(0.419035 0.90721 0.0371537)} Corner 10089 42006 {normal=(0.419035 0.90721 0.0371537)} Corner 10054 42006 {normal=(0.417705 0.902549 0.104541)} Corner 10054 42007 {normal=(0.417705 0.902549 0.104541)} Corner 9911 42007 {normal=(0.293199 0.901815 0.317433)} Corner 9911 42008 {normal=(0.293199 0.901815 0.317433)} Corner 9929 42008 {normal=(0.272642 0.905208 0.325983)} Corner 9641 42009 {normal=(0.0553052 0.924253 0.377754)} Corner 9929 42009 {normal=(0.272642 0.905208 0.325983)} Corner 9929 42010 {normal=(0.272642 0.905208 0.325983)} Corner 9911 42010 {normal=(0.293199 0.901815 0.317433)} Corner 9911 42011 {normal=(0.293199 0.901815 0.317433)} Corner 9637 42011 {normal=(0.0665716 0.923792 0.377063)} Corner 9637 42012 {normal=(0.0665716 0.923792 0.377063)} Corner 9641 42012 {normal=(0.0553052 0.924253 0.377754)} Corner 9334 42013 {normal=(-0.130295 0.941118 0.311961)} Corner 9641 42013 {normal=(0.0553052 0.924253 0.377754)} Corner 9641 42014 {normal=(0.0553052 0.924253 0.377754)} Corner 9637 42014 {normal=(0.0665716 0.923792 0.377063)} Corner 9637 42015 {normal=(0.0665716 0.923792 0.377063)} Corner 9358 42015 {normal=(-0.0982715 0.936634 0.336242)} Corner 9358 42016 {normal=(-0.0982715 0.936634 0.336242)} Corner 9334 42016 {normal=(-0.130295 0.941118 0.311961)} Corner 7758 42017 {normal=(-0.205234 0.962112 0.179496)} Corner 9334 42017 {normal=(-0.130295 0.941118 0.311961)} Corner 9334 42018 {normal=(-0.130295 0.941118 0.311961)} Corner 9358 42018 {normal=(-0.0982715 0.936634 0.336242)} Corner 9358 42019 {normal=(-0.0982715 0.936634 0.336242)} Corner 7920 42019 {normal=(-0.211659 0.96638 0.145983)} Corner 7920 42020 {normal=(-0.211659 0.96638 0.145983)} Corner 7758 42020 {normal=(-0.205234 0.962112 0.179496)} Corner 7269 42021 {normal=(-0.219899 0.975271 -0.0221546)} Corner 7758 42021 {normal=(-0.205234 0.962112 0.179496)} Corner 7758 42022 {normal=(-0.205234 0.962112 0.179496)} Corner 7920 42022 {normal=(-0.211659 0.96638 0.145983)} Corner 7920 42023 {normal=(-0.211659 0.96638 0.145983)} Corner 7483 42023 {normal=(-0.221361 0.975133 -0.0106952)} Corner 7483 42024 {normal=(-0.221361 0.975133 -0.0106952)} Corner 7269 42024 {normal=(-0.219899 0.975271 -0.0221546)} Corner 7703 42025 {normal=(-0.244926 0.949931 -0.194017)} Corner 7269 42025 {normal=(-0.219899 0.975271 -0.0221546)} Corner 7269 42026 {normal=(-0.219899 0.975271 -0.0221546)} Corner 7483 42026 {normal=(-0.221361 0.975133 -0.0106952)} Corner 7483 42027 {normal=(-0.221361 0.975133 -0.0106952)} Corner 7895 42027 {normal=(-0.241023 0.953678 -0.180017)} Corner 7895 42028 {normal=(-0.241023 0.953678 -0.180017)} Corner 7703 42028 {normal=(-0.244926 0.949931 -0.194017)} Corner 9365 42029 {normal=(-0.168681 0.926568 -0.336182)} Corner 7703 42029 {normal=(-0.244926 0.949931 -0.194017)} Corner 7703 42030 {normal=(-0.244926 0.949931 -0.194017)} Corner 7895 42030 {normal=(-0.241023 0.953678 -0.180017)} Corner 7895 42031 {normal=(-0.241023 0.953678 -0.180017)} Corner 9371 42031 {normal=(-0.196149 0.925477 -0.324064)} Corner 9371 42032 {normal=(-0.196149 0.925477 -0.324064)} Corner 9365 42032 {normal=(-0.168681 0.926568 -0.336182)} Corner 7711 42033 {normal=(-0.0885847 -0.993739 0.0680862)} Corner 7215 42033 {normal=(-0.053081 -0.998243 0.0263347)} Corner 7215 42034 {normal=(-0.053081 -0.998243 0.0263347)} Corner 7465 42034 {normal=(-0.0539827 -0.998239 0.024594)} Corner 7465 42035 {normal=(-0.0539827 -0.998239 0.024594)} Corner 7928 42035 {normal=(-0.0909205 -0.993073 0.0744297)} Corner 7928 42036 {normal=(-0.0909205 -0.993073 0.0744297)} Corner 7711 42036 {normal=(-0.0885847 -0.993739 0.0680862)} Corner 9344 42037 {normal=(-0.0693363 -0.988483 0.134515)} Corner 7711 42037 {normal=(-0.0885847 -0.993739 0.0680862)} Corner 7711 42038 {normal=(-0.0885847 -0.993739 0.0680862)} Corner 7928 42038 {normal=(-0.0909205 -0.993073 0.0744297)} Corner 7928 42039 {normal=(-0.0909205 -0.993073 0.0744297)} Corner 9361 42039 {normal=(-0.0647477 -0.988859 0.134034)} Corner 9361 42040 {normal=(-0.0647477 -0.988859 0.134034)} Corner 9344 42040 {normal=(-0.0693363 -0.988483 0.134515)} Corner 9644 42041 {normal=(0.00917534 -0.994261 0.106585)} Corner 9344 42041 {normal=(-0.0693363 -0.988483 0.134515)} Corner 9344 42042 {normal=(-0.0693363 -0.988483 0.134515)} Corner 9361 42042 {normal=(-0.0647477 -0.988859 0.134034)} Corner 9361 42043 {normal=(-0.0647477 -0.988859 0.134034)} Corner 9642 42043 {normal=(0.0119544 -0.99447 0.104343)} Corner 9642 42044 {normal=(0.0119544 -0.99447 0.104343)} Corner 9644 42044 {normal=(0.00917534 -0.994261 0.106585)} Corner 9936 42045 {normal=(0.0620929 -0.997326 0.0385384)} Corner 9644 42045 {normal=(0.00917534 -0.994261 0.106585)} Corner 9644 42046 {normal=(0.00917534 -0.994261 0.106585)} Corner 9642 42046 {normal=(0.0119544 -0.99447 0.104343)} Corner 9642 42047 {normal=(0.0119544 -0.99447 0.104343)} Corner 9919 42047 {normal=(0.0650574 -0.997346 0.0326827)} Corner 9919 42048 {normal=(0.0650574 -0.997346 0.0326827)} Corner 9936 42048 {normal=(0.0620929 -0.997326 0.0385384)} Corner 10098 42049 {normal=(0.074661 -0.997094 -0.0151551)} Corner 9936 42049 {normal=(0.0620929 -0.997326 0.0385384)} Corner 9936 42050 {normal=(0.0620929 -0.997326 0.0385384)} Corner 9919 42050 {normal=(0.0650574 -0.997346 0.0326827)} Corner 9919 42051 {normal=(0.0650574 -0.997346 0.0326827)} Corner 10061 42051 {normal=(0.0725093 -0.997243 -0.0158052)} Corner 10061 42052 {normal=(0.0725093 -0.997243 -0.0158052)} Corner 10098 42052 {normal=(0.074661 -0.997094 -0.0151551)} Corner 10013 42053 {normal=(0.0546351 -0.997713 -0.0397865)} Corner 10098 42053 {normal=(0.074661 -0.997094 -0.0151551)} Corner 10098 42054 {normal=(0.074661 -0.997094 -0.0151551)} Corner 10061 42054 {normal=(0.0725093 -0.997243 -0.0158052)} Corner 10061 42055 {normal=(0.0725093 -0.997243 -0.0158052)} Corner 9981 42055 {normal=(0.0540702 -0.997649 -0.0421178)} Corner 9981 42056 {normal=(0.0540702 -0.997649 -0.0421178)} Corner 10013 42056 {normal=(0.0546351 -0.997713 -0.0397865)} Corner 9894 42057 {normal=(0.0653146 -0.99523 -0.0724629)} Corner 10013 42057 {normal=(0.0546351 -0.997713 -0.0397865)} Corner 10013 42058 {normal=(0.0546351 -0.997713 -0.0397865)} Corner 9981 42058 {normal=(0.0540702 -0.997649 -0.0421178)} Corner 9981 42059 {normal=(0.0540702 -0.997649 -0.0421178)} Corner 9868 42059 {normal=(0.0669848 -0.995043 -0.0735033)} Corner 9868 42060 {normal=(0.0669848 -0.995043 -0.0735033)} Corner 9894 42060 {normal=(0.0653146 -0.99523 -0.0724629)} Corner 9608 42061 {normal=(0.0528383 -0.993981 -0.0959637)} Corner 9894 42061 {normal=(0.0653146 -0.99523 -0.0724629)} Corner 9894 42062 {normal=(0.0653146 -0.99523 -0.0724629)} Corner 9868 42062 {normal=(0.0669848 -0.995043 -0.0735033)} Corner 9868 42063 {normal=(0.0669848 -0.995043 -0.0735033)} Corner 9621 42063 {normal=(0.0615318 -0.993811 -0.0924829)} Corner 9621 42064 {normal=(0.0615318 -0.993811 -0.0924829)} Corner 9608 42064 {normal=(0.0528383 -0.993981 -0.0959637)} Corner 9362 42065 {normal=(-0.0137343 -0.994648 -0.102403)} Corner 9608 42065 {normal=(0.0528383 -0.993981 -0.0959637)} Corner 9608 42066 {normal=(0.0528383 -0.993981 -0.0959637)} Corner 9621 42066 {normal=(0.0615318 -0.993811 -0.0924829)} Corner 9621 42067 {normal=(0.0615318 -0.993811 -0.0924829)} Corner 9367 42067 {normal=(-0.0322897 -0.9943 -0.101616)} Corner 9367 42068 {normal=(-0.0322897 -0.9943 -0.101616)} Corner 9362 42068 {normal=(-0.0137343 -0.994648 -0.102403)} Corner 7625 42069 {normal=(-0.0602174 -0.998002 -0.019111)} Corner 9362 42069 {normal=(-0.0137343 -0.994648 -0.102403)} Corner 9362 42070 {normal=(-0.0137343 -0.994648 -0.102403)} Corner 9367 42070 {normal=(-0.0322897 -0.9943 -0.101616)} Corner 9367 42071 {normal=(-0.0322897 -0.9943 -0.101616)} Corner 7862 42071 {normal=(-0.0635439 -0.99748 -0.031565)} Corner 7862 42072 {normal=(-0.0635439 -0.99748 -0.031565)} Corner 7625 42072 {normal=(-0.0602174 -0.998002 -0.019111)} Corner 7215 42073 {normal=(-0.053081 -0.998243 0.0263347)} Corner 7625 42073 {normal=(-0.0602174 -0.998002 -0.019111)} Corner 7625 42074 {normal=(-0.0602174 -0.998002 -0.019111)} Corner 7862 42074 {normal=(-0.0635439 -0.99748 -0.031565)} Corner 7862 42075 {normal=(-0.0635439 -0.99748 -0.031565)} Corner 7465 42075 {normal=(-0.0539827 -0.998239 0.024594)} Corner 7465 42076 {normal=(-0.0539827 -0.998239 0.024594)} Corner 7215 42076 {normal=(-0.053081 -0.998243 0.0263347)} Corner 9349 42077 {normal=(-0.0884823 0.988949 -0.118955)} Corner 7456 42077 {normal=(-0.0972167 0.992565 -0.073237)} Corner 7456 42078 {normal=(-0.0972167 0.992565 -0.073237)} Corner 7661 42078 {normal=(-0.0983334 0.992335 -0.0748517)} Corner 7661 42079 {normal=(-0.0983334 0.992335 -0.0748517)} Corner 9354 42079 {normal=(-0.0958313 0.989168 -0.11119)} Corner 9354 42080 {normal=(-0.0958313 0.989168 -0.11119)} Corner 9349 42080 {normal=(-0.0884823 0.988949 -0.118955)} Corner 9613 42081 {normal=(-0.0424788 0.988313 -0.146398)} Corner 9349 42081 {normal=(-0.0884823 0.988949 -0.118955)} Corner 9349 42082 {normal=(-0.0884823 0.988949 -0.118955)} Corner 9354 42082 {normal=(-0.0958313 0.989168 -0.11119)} Corner 9354 42083 {normal=(-0.0958313 0.989168 -0.11119)} Corner 9627 42083 {normal=(-0.0287402 0.988021 -0.151619)} Corner 9627 42084 {normal=(-0.0287402 0.988021 -0.151619)} Corner 9613 42084 {normal=(-0.0424788 0.988313 -0.146398)} Corner 9916 42085 {normal=(0.0668201 0.987813 -0.140572)} Corner 9613 42085 {normal=(-0.0424788 0.988313 -0.146398)} Corner 9613 42086 {normal=(-0.0424788 0.988313 -0.146398)} Corner 9627 42086 {normal=(-0.0287402 0.988021 -0.151619)} Corner 9627 42087 {normal=(-0.0287402 0.988021 -0.151619)} Corner 9892 42087 {normal=(0.0620667 0.98786 -0.142406)} Corner 9892 42088 {normal=(0.0620667 0.98786 -0.142406)} Corner 9916 42088 {normal=(0.0668201 0.987813 -0.140572)} Corner 9959 42089 {normal=(0.0958198 0.985132 0.142599)} Corner 10139 42089 {normal=(0.162525 0.985048 0.0571546)} Corner 10139 42090 {normal=(0.162525 0.985048 0.0571546)} Corner 10106 42090 {normal=(0.169808 0.984837 0.0355104)} Corner 10106 42091 {normal=(0.169808 0.984837 0.0355104)} Corner 9944 42091 {normal=(0.101365 0.984759 0.141331)} Corner 9944 42092 {normal=(0.101365 0.984759 0.141331)} Corner 9959 42092 {normal=(0.0958198 0.985132 0.142599)} Corner 7456 42093 {normal=(-0.0972167 0.992565 -0.073237)} Corner 7130 42093 {normal=(-0.074939 0.996972 -0.0207781)} Corner 7130 42094 {normal=(-0.074939 0.996972 -0.0207781)} Corner 7385 42094 {normal=(-0.0733148 0.997199 -0.0148306)} Corner 7385 42095 {normal=(-0.0733148 0.997199 -0.0148306)} Corner 7661 42095 {normal=(-0.0983334 0.992335 -0.0748517)} Corner 7661 42096 {normal=(-0.0983334 0.992335 -0.0748517)} Corner 7456 42096 {normal=(-0.0972167 0.992565 -0.073237)} Corner 9828 42097 {normal=(0.526564 -0.15085 -0.836645)} Corner 9566 42097 {normal=(0.0918485 -0.132482 -0.986921)} Corner 9566 42098 {normal=(0.0918485 -0.132482 -0.986921)} Corner 9581 42098 {normal=(0.11546 -0.133125 -0.984351)} Corner 9581 42099 {normal=(0.11546 -0.133125 -0.984351)} Corner 9858 42099 {normal=(0.540225 -0.151796 -0.827717)} Corner 9858 42100 {normal=(0.540225 -0.151796 -0.827717)} Corner 9828 42100 {normal=(0.526564 -0.15085 -0.836645)} Corner 9860 42101 {normal=(0.52072 -0.150849 -0.840295)} Corner 9585 42101 {normal=(0.0876081 -0.131964 -0.987375)} Corner 9585 42102 {normal=(0.0876081 -0.131964 -0.987375)} Corner 9604 42102 {normal=(0.110531 -0.132589 -0.984989)} Corner 9604 42103 {normal=(0.110531 -0.132589 -0.984989)} Corner 9880 42103 {normal=(0.534754 -0.151804 -0.83126)} Corner 9880 42104 {normal=(0.534754 -0.151804 -0.83126)} Corner 9860 42104 {normal=(0.52072 -0.150849 -0.840295)} Corner 9623 42105 {normal=(0.139682 -0.145153 0.9795)} Corner 9906 42105 {normal=(0.669396 -0.174189 0.722196)} Corner 9906 42106 {normal=(0.669396 -0.174189 0.722196)} Corner 9929 42106 {normal=(0.683983 -0.174815 0.708242)} Corner 9929 42107 {normal=(0.683983 -0.174815 0.708242)} Corner 9641 42107 {normal=(0.154454 -0.145935 0.977163)} Corner 9641 42108 {normal=(0.154454 -0.145935 0.977163)} Corner 9623 42108 {normal=(0.139682 -0.145153 0.9795)} Corner 9906 42109 {normal=(0.669396 -0.174189 0.722196)} Corner 10047 42109 {normal=(0.976305 -0.19022 0.103172)} Corner 10047 42110 {normal=(0.976305 -0.19022 0.103172)} Corner 10089 42110 {normal=(0.97761 -0.190335 0.0897288)} Corner 10089 42111 {normal=(0.97761 -0.190335 0.0897288)} Corner 9929 42111 {normal=(0.683983 -0.174815 0.708242)} Corner 9929 42112 {normal=(0.683983 -0.174815 0.708242)} Corner 9906 42112 {normal=(0.669396 -0.174189 0.722196)} Corner 10047 42113 {normal=(0.976305 -0.19022 0.103172)} Corner 9979 42113 {normal=(0.849643 -0.176078 -0.497095)} Corner 9979 42114 {normal=(0.849643 -0.176078 -0.497095)} Corner 10012 42114 {normal=(0.852114 -0.176284 -0.492774)} Corner 10012 42115 {normal=(0.852114 -0.176284 -0.492774)} Corner 10089 42115 {normal=(0.97761 -0.190335 0.0897288)} Corner 10089 42116 {normal=(0.97761 -0.190335 0.0897288)} Corner 10047 42116 {normal=(0.976305 -0.19022 0.103172)} Corner 9979 42117 {normal=(0.849643 -0.176078 -0.497095)} Corner 9860 42117 {normal=(0.52072 -0.150849 -0.840295)} Corner 9860 42118 {normal=(0.52072 -0.150849 -0.840295)} Corner 9880 42118 {normal=(0.534754 -0.151804 -0.83126)} Corner 9880 42119 {normal=(0.534754 -0.151804 -0.83126)} Corner 10012 42119 {normal=(0.852114 -0.176284 -0.492774)} Corner 10012 42120 {normal=(0.852114 -0.176284 -0.492774)} Corner 9979 42120 {normal=(0.849643 -0.176078 -0.497095)} Corner 9916 42121 {normal=(0.508234 -0.237925 -0.827701)} Corner 10051 42121 {normal=(0.83286 -0.214419 -0.510263)} Corner 10051 42122 {normal=(0.83286 -0.214419 -0.510263)} Corner 10013 42122 {normal=(0.848102 -0.212232 -0.485469)} Corner 10013 42123 {normal=(0.848102 -0.212232 -0.485469)} Corner 9894 42123 {normal=(0.513229 -0.237711 -0.824676)} Corner 9894 42124 {normal=(0.513229 -0.237711 -0.824676)} Corner 9916 42124 {normal=(0.508234 -0.237925 -0.827701)} Corner 10051 42125 {normal=(0.83286 -0.214419 -0.510263)} Corner 10139 42125 {normal=(0.976651 -0.190122 0.100034)} Corner 10139 42126 {normal=(0.976651 -0.190122 0.100034)} Corner 10098 42126 {normal=(0.973771 -0.189491 0.125948)} Corner 10098 42127 {normal=(0.973771 -0.189491 0.125948)} Corner 10013 42127 {normal=(0.848102 -0.212232 -0.485469)} Corner 10013 42128 {normal=(0.848102 -0.212232 -0.485469)} Corner 10051 42128 {normal=(0.83286 -0.214419 -0.510263)} Corner 10139 42129 {normal=(0.976651 -0.190122 0.100034)} Corner 9959 42129 {normal=(0.676415 -0.170346 0.716551)} Corner 9959 42130 {normal=(0.676415 -0.170346 0.716551)} Corner 9936 42130 {normal=(0.661075 -0.169895 0.730832)} Corner 9936 42131 {normal=(0.661075 -0.169895 0.730832)} Corner 10098 42131 {normal=(0.973771 -0.189491 0.125948)} Corner 10098 42132 {normal=(0.973771 -0.189491 0.125948)} Corner 10139 42132 {normal=(0.976651 -0.190122 0.100034)} Corner 9959 42133 {normal=(0.676415 -0.170346 0.716551)} Corner 9663 42133 {normal=(0.158136 -0.146102 0.976549)} Corner 9663 42134 {normal=(0.158136 -0.146102 0.976549)} Corner 9644 42134 {normal=(0.143713 -0.145342 0.978888)} Corner 9644 42135 {normal=(0.143713 -0.145342 0.978888)} Corner 9936 42135 {normal=(0.661075 -0.169895 0.730832)} Corner 9936 42136 {normal=(0.661075 -0.169895 0.730832)} Corner 9959 42136 {normal=(0.676415 -0.170346 0.716551)} Corner 9641 42137 {normal=(0.154454 -0.145935 0.977163)} Corner 9334 42137 {normal=(-0.344011 -0.102476 0.933357)} Corner 9334 42138 {normal=(-0.344011 -0.102476 0.933357)} Corner 9309 42138 {normal=(-0.367596 -0.099495 0.924648)} Corner 9309 42139 {normal=(-0.367596 -0.099495 0.924648)} Corner 9623 42139 {normal=(0.139682 -0.145153 0.9795)} Corner 9623 42140 {normal=(0.139682 -0.145153 0.9795)} Corner 9641 42140 {normal=(0.154454 -0.145935 0.977163)} Corner 9334 42141 {normal=(-0.344011 -0.102476 0.933357)} Corner 7758 42141 {normal=(-0.806427 -0.0546578 0.588802)} Corner 7758 42142 {normal=(-0.806427 -0.0546578 0.588802)} Corner 7724 42142 {normal=(-0.825323 -0.052926 0.562174)} Corner 7724 42143 {normal=(-0.825323 -0.052926 0.562174)} Corner 9309 42143 {normal=(-0.367596 -0.099495 0.924648)} Corner 9309 42144 {normal=(-0.367596 -0.099495 0.924648)} Corner 9334 42144 {normal=(-0.344011 -0.102476 0.933357)} Corner 7758 42145 {normal=(-0.806427 -0.0546578 0.588802)} Corner 7269 42145 {normal=(-0.997572 -0.0654858 -0.0237164)} Corner 7269 42146 {normal=(-0.997572 -0.0654858 -0.0237164)} Corner 7336 42146 {normal=(-0.997081 -0.0668073 -0.0369678)} Corner 7336 42147 {normal=(-0.997081 -0.0668073 -0.0369678)} Corner 7724 42147 {normal=(-0.825323 -0.052926 0.562174)} Corner 7724 42148 {normal=(-0.825323 -0.052926 0.562174)} Corner 7758 42148 {normal=(-0.806427 -0.0546578 0.588802)} Corner 7269 42149 {normal=(-0.997572 -0.0654858 -0.0237164)} Corner 7703 42149 {normal=(-0.827383 -0.112459 -0.550264)} Corner 7703 42150 {normal=(-0.827383 -0.112459 -0.550264)} Corner 7865 42150 {normal=(-0.819643 -0.113336 -0.561551)} Corner 7865 42151 {normal=(-0.819643 -0.113336 -0.561551)} Corner 7336 42151 {normal=(-0.997081 -0.0668073 -0.0369678)} Corner 7336 42152 {normal=(-0.997081 -0.0668073 -0.0369678)} Corner 7269 42152 {normal=(-0.997572 -0.0654858 -0.0237164)} Corner 7703 42153 {normal=(-0.827383 -0.112459 -0.550264)} Corner 9365 42153 {normal=(-0.410626 -0.129138 -0.902613)} Corner 9365 42154 {normal=(-0.410626 -0.129138 -0.902613)} Corner 9381 42154 {normal=(-0.414419 -0.129161 -0.900874)} Corner 9381 42155 {normal=(-0.414419 -0.129161 -0.900874)} Corner 7865 42155 {normal=(-0.819643 -0.113336 -0.561551)} Corner 7865 42156 {normal=(-0.819643 -0.113336 -0.561551)} Corner 7703 42156 {normal=(-0.827383 -0.112459 -0.550264)} Corner 9365 42157 {normal=(-0.410626 -0.129138 -0.902613)} Corner 9604 42157 {normal=(0.110531 -0.132589 -0.984989)} Corner 9604 42158 {normal=(0.110531 -0.132589 -0.984989)} Corner 9585 42158 {normal=(0.0876081 -0.131964 -0.987375)} Corner 9585 42159 {normal=(0.0876081 -0.131964 -0.987375)} Corner 9381 42159 {normal=(-0.414419 -0.129161 -0.900874)} Corner 9381 42160 {normal=(-0.414419 -0.129161 -0.900874)} Corner 9365 42160 {normal=(-0.410626 -0.129138 -0.902613)} Corner 9566 42161 {normal=(0.0918485 -0.132482 -0.986921)} Corner 9393 42161 {normal=(-0.410827 -0.12873 -0.902579)} Corner 9393 42162 {normal=(-0.410827 -0.12873 -0.902579)} Corner 9384 42162 {normal=(-0.407364 -0.12871 -0.904151)} Corner 9384 42163 {normal=(-0.407364 -0.12871 -0.904151)} Corner 9581 42163 {normal=(0.11546 -0.133125 -0.984351)} Corner 9581 42164 {normal=(0.11546 -0.133125 -0.984351)} Corner 9566 42164 {normal=(0.0918485 -0.132482 -0.986921)} Corner 9393 42165 {normal=(-0.410827 -0.12873 -0.902579)} Corner 8137 42165 {normal=(-0.78865 -0.11136 -0.604673)} Corner 8137 42166 {normal=(-0.78865 -0.11136 -0.604673)} Corner 7897 42166 {normal=(-0.796775 -0.110301 -0.594124)} Corner 7897 42167 {normal=(-0.796775 -0.110301 -0.594124)} Corner 9384 42167 {normal=(-0.407364 -0.12871 -0.904151)} Corner 9384 42168 {normal=(-0.407364 -0.12871 -0.904151)} Corner 9393 42168 {normal=(-0.410827 -0.12873 -0.902579)} Corner 8137 42169 {normal=(-0.78865 -0.11136 -0.604673)} Corner 7455 42169 {normal=(-0.987937 -0.0634773 -0.141246)} Corner 7455 42170 {normal=(-0.987937 -0.0634773 -0.141246)} Corner 7365 42170 {normal=(-0.990214 -0.0617275 -0.125162)} Corner 7365 42171 {normal=(-0.990214 -0.0617275 -0.125162)} Corner 7897 42171 {normal=(-0.796775 -0.110301 -0.594124)} Corner 7897 42172 {normal=(-0.796775 -0.110301 -0.594124)} Corner 8137 42172 {normal=(-0.78865 -0.11136 -0.604673)} Corner 7455 42173 {normal=(-0.987937 -0.0634773 -0.141246)} Corner 7623 42173 {normal=(-0.854555 -0.0519244 0.516759)} Corner 7623 42174 {normal=(-0.854555 -0.0519244 0.516759)} Corner 7647 42174 {normal=(-0.833485 -0.0539909 0.549898)} Corner 7647 42175 {normal=(-0.833485 -0.0539909 0.549898)} Corner 7365 42175 {normal=(-0.990214 -0.0617275 -0.125162)} Corner 7365 42176 {normal=(-0.990214 -0.0617275 -0.125162)} Corner 7455 42176 {normal=(-0.987937 -0.0634773 -0.141246)} Corner 7623 42177 {normal=(-0.854555 -0.0519244 0.516759)} Corner 9296 42177 {normal=(-0.353673 -0.100819 0.92992)} Corner 9296 42178 {normal=(-0.353673 -0.100819 0.92992)} Corner 9327 42178 {normal=(-0.330905 -0.103654 0.937954)} Corner 9327 42179 {normal=(-0.330905 -0.103654 0.937954)} Corner 7647 42179 {normal=(-0.833485 -0.0539909 0.549898)} Corner 7647 42180 {normal=(-0.833485 -0.0539909 0.549898)} Corner 7623 42180 {normal=(-0.854555 -0.0519244 0.516759)} Corner 9296 42181 {normal=(-0.353673 -0.100819 0.92992)} Corner 9582 42181 {normal=(0.148375 -0.145419 0.978181)} Corner 9582 42182 {normal=(0.148375 -0.145419 0.978181)} Corner 9616 42182 {normal=(0.162148 -0.146138 0.975885)} Corner 9616 42183 {normal=(0.162148 -0.146138 0.975885)} Corner 9327 42183 {normal=(-0.330905 -0.103654 0.937954)} Corner 9327 42184 {normal=(-0.330905 -0.103654 0.937954)} Corner 9296 42184 {normal=(-0.353673 -0.100819 0.92992)} Corner 9349 42185 {normal=(-0.425673 -0.201149 -0.882237)} Corner 9613 42185 {normal=(0.10057 -0.238905 -0.965821)} Corner 9613 42186 {normal=(0.10057 -0.238905 -0.965821)} Corner 9608 42186 {normal=(0.0877167 -0.238441 -0.967188)} Corner 9608 42187 {normal=(0.0877167 -0.238441 -0.967188)} Corner 9362 42187 {normal=(-0.439117 -0.199548 -0.875989)} Corner 9362 42188 {normal=(-0.439117 -0.199548 -0.875989)} Corner 9349 42188 {normal=(-0.425673 -0.201149 -0.882237)} Corner 9613 42189 {normal=(0.10057 -0.238905 -0.965821)} Corner 9916 42189 {normal=(0.508234 -0.237925 -0.827701)} Corner 9916 42190 {normal=(0.508234 -0.237925 -0.827701)} Corner 9894 42190 {normal=(0.513229 -0.237711 -0.824676)} Corner 9894 42191 {normal=(0.513229 -0.237711 -0.824676)} Corner 9608 42191 {normal=(0.0877167 -0.238441 -0.967188)} Corner 9608 42192 {normal=(0.0877167 -0.238441 -0.967188)} Corner 9613 42192 {normal=(0.10057 -0.238905 -0.965821)} Corner 9858 42193 {normal=(0.540225 -0.151796 -0.827717)} Corner 9969 42193 {normal=(0.857383 -0.17703 -0.483274)} Corner 9969 42194 {normal=(0.857383 -0.17703 -0.483274)} Corner 9942 42194 {normal=(0.854815 -0.176816 -0.48788)} Corner 9942 42195 {normal=(0.854815 -0.176816 -0.48788)} Corner 9828 42195 {normal=(0.526564 -0.15085 -0.836645)} Corner 9828 42196 {normal=(0.526564 -0.15085 -0.836645)} Corner 9858 42196 {normal=(0.540225 -0.151796 -0.827717)} Corner 9969 42197 {normal=(0.857383 -0.17703 -0.483274)} Corner 10034 42197 {normal=(0.97635 -0.190004 0.103147)} Corner 10034 42198 {normal=(0.97635 -0.190004 0.103147)} Corner 9991 42198 {normal=(0.974624 -0.189857 0.118585)} Corner 9991 42199 {normal=(0.974624 -0.189857 0.118585)} Corner 9942 42199 {normal=(0.854815 -0.176816 -0.48788)} Corner 9942 42200 {normal=(0.854815 -0.176816 -0.48788)} Corner 9969 42200 {normal=(0.857383 -0.17703 -0.483274)} Corner 10034 42201 {normal=(0.97635 -0.190004 0.103147)} Corner 9899 42201 {normal=(0.680891 -0.174538 0.711283)} Corner 9899 42202 {normal=(0.680891 -0.174538 0.711283)} Corner 9865 42202 {normal=(0.66555 -0.173879 0.725816)} Corner 9865 42203 {normal=(0.66555 -0.173879 0.725816)} Corner 9991 42203 {normal=(0.974624 -0.189857 0.118585)} Corner 9991 42204 {normal=(0.974624 -0.189857 0.118585)} Corner 10034 42204 {normal=(0.97635 -0.190004 0.103147)} Corner 9899 42205 {normal=(0.680891 -0.174538 0.711283)} Corner 9616 42205 {normal=(0.162148 -0.146138 0.975885)} Corner 9616 42206 {normal=(0.162148 -0.146138 0.975885)} Corner 9582 42206 {normal=(0.148375 -0.145419 0.978181)} Corner 9582 42207 {normal=(0.148375 -0.145419 0.978181)} Corner 9865 42207 {normal=(0.66555 -0.173879 0.725816)} Corner 9865 42208 {normal=(0.66555 -0.173879 0.725816)} Corner 9899 42208 {normal=(0.680891 -0.174538 0.711283)} Corner 9663 42209 {normal=(0.158136 -0.146102 0.976549)} Corner 9355 42209 {normal=(-0.356964 -0.101677 0.928568)} Corner 9355 42210 {normal=(-0.356964 -0.101677 0.928568)} Corner 9344 42210 {normal=(-0.381745 -0.0985828 0.918995)} Corner 9344 42211 {normal=(-0.381745 -0.0985828 0.918995)} Corner 9644 42211 {normal=(0.143713 -0.145342 0.978888)} Corner 9644 42212 {normal=(0.143713 -0.145342 0.978888)} Corner 9663 42212 {normal=(0.158136 -0.146102 0.976549)} Corner 9355 42213 {normal=(-0.356964 -0.101677 0.928568)} Corner 7738 42213 {normal=(-0.804192 -0.0531573 0.591987)} Corner 7738 42214 {normal=(-0.804192 -0.0531573 0.591987)} Corner 7711 42214 {normal=(-0.821084 -0.051667 0.568465)} Corner 7711 42215 {normal=(-0.821084 -0.051667 0.568465)} Corner 9344 42215 {normal=(-0.381745 -0.0985828 0.918995)} Corner 9344 42216 {normal=(-0.381745 -0.0985828 0.918995)} Corner 9355 42216 {normal=(-0.356964 -0.101677 0.928568)} Corner 7738 42217 {normal=(-0.804192 -0.0531573 0.591987)} Corner 7130 42217 {normal=(-0.996647 -0.0664181 0.0477801)} Corner 7130 42218 {normal=(-0.996647 -0.0664181 0.0477801)} Corner 7215 42218 {normal=(-0.997054 -0.0676644 0.0361106)} Corner 7215 42219 {normal=(-0.997054 -0.0676644 0.0361106)} Corner 7711 42219 {normal=(-0.821084 -0.051667 0.568465)} Corner 7711 42220 {normal=(-0.821084 -0.051667 0.568465)} Corner 7738 42220 {normal=(-0.804192 -0.0531573 0.591987)} Corner 7130 42221 {normal=(-0.996647 -0.0664181 0.0477801)} Corner 7456 42221 {normal=(-0.861604 -0.131276 -0.490312)} Corner 7456 42222 {normal=(-0.861604 -0.131276 -0.490312)} Corner 7625 42222 {normal=(-0.855577 -0.132652 -0.500392)} Corner 7625 42223 {normal=(-0.855577 -0.132652 -0.500392)} Corner 7215 42223 {normal=(-0.997054 -0.0676644 0.0361106)} Corner 7215 42224 {normal=(-0.997054 -0.0676644 0.0361106)} Corner 7130 42224 {normal=(-0.996647 -0.0664181 0.0477801)} Corner 7456 42225 {normal=(-0.861604 -0.131276 -0.490312)} Corner 9349 42225 {normal=(-0.425673 -0.201149 -0.882237)} Corner 9349 42226 {normal=(-0.425673 -0.201149 -0.882237)} Corner 9362 42226 {normal=(-0.439117 -0.199548 -0.875989)} Corner 9362 42227 {normal=(-0.439117 -0.199548 -0.875989)} Corner 7625 42227 {normal=(-0.855577 -0.132652 -0.500392)} Corner 7625 42228 {normal=(-0.855577 -0.132652 -0.500392)} Corner 7456 42228 {normal=(-0.861604 -0.131276 -0.490312)} Corner 3304 42229 {normal=(0.0432691 0.998483 0.034061)} Corner 3911 42229 {normal=(0.074939 0.996972 -0.0207781)} Corner 3911 42230 {normal=(0.074939 0.996972 -0.0207781)} Corner 3659 42230 {normal=(0.0733148 0.997199 -0.0148306)} Corner 3659 42231 {normal=(0.0733148 0.997199 -0.0148306)} Corner 3202 42231 {normal=(0.0566736 0.998233 0.0178687)} Corner 3202 42232 {normal=(0.0566736 0.998233 0.0178687)} Corner 3304 42232 {normal=(0.0432691 0.998483 0.034061)} Corner 2736 42233 {normal=(0.0339688 0.997765 0.0575512)} Corner 1679 42233 {normal=(0.0217701 0.995448 0.0927863)} Corner 1679 42234 {normal=(0.0217701 0.995448 0.0927863)} Corner 1690 42234 {normal=(0.0234709 0.995676 0.0898837)} Corner 1690 42235 {normal=(0.0234709 0.995676 0.0898837)} Corner 3304 42235 {normal=(0.0432691 0.998483 0.034061)} Corner 3304 42236 {normal=(0.0432691 0.998483 0.034061)} Corner 2736 42236 {normal=(0.0339688 0.997765 0.0575512)} Corner 994 42237 {normal=(-0.159387 0.983749 -0.0826661)} Corner 906 42237 {normal=(-0.162525 0.985048 0.0571546)} Corner 906 42238 {normal=(-0.162525 0.985048 0.0571546)} Corner 939 42238 {normal=(-0.169808 0.984837 0.0355105)} Corner 939 42239 {normal=(-0.169808 0.984837 0.0355105)} Corner 1012 42239 {normal=(-0.191619 0.980451 -0.044704)} Corner 1012 42240 {normal=(-0.191619 0.980451 -0.044704)} Corner 994 42240 {normal=(-0.159387 0.983749 -0.0826661)} Corner 1053 42241 {normal=(-0.127613 0.983901 -0.125112)} Corner 1153 42241 {normal=(-0.0620667 0.98786 -0.142406)} Corner 1153 42242 {normal=(-0.0620667 0.98786 -0.142406)} Corner 1129 42242 {normal=(-0.0668201 0.987813 -0.140572)} Corner 1129 42243 {normal=(-0.0668201 0.987813 -0.140572)} Corner 994 42243 {normal=(-0.159387 0.983749 -0.0826661)} Corner 994 42244 {normal=(-0.159387 0.983749 -0.0826661)} Corner 1053 42244 {normal=(-0.127613 0.983901 -0.125112)} Corner 1382 42245 {normal=(-0.0216513 0.990245 0.137648)} Corner 1690 42245 {normal=(0.0234709 0.995676 0.0898837)} Corner 1690 42246 {normal=(0.0234709 0.995676 0.0898837)} Corner 1679 42246 {normal=(0.0217701 0.995448 0.0927863)} Corner 1679 42247 {normal=(0.0217701 0.995448 0.0927863)} Corner 1465 42247 {normal=(0.00884052 0.99186 0.127023)} Corner 1465 42248 {normal=(0.00884052 0.99186 0.127023)} Corner 1382 42248 {normal=(-0.0216513 0.990245 0.137648)} Corner 1327 42249 {normal=(-0.0586022 0.987693 0.145012)} Corner 1101 42249 {normal=(-0.101365 0.984759 0.141331)} Corner 1101 42250 {normal=(-0.101365 0.984759 0.141331)} Corner 1086 42250 {normal=(-0.0958199 0.985132 0.142599)} Corner 1086 42251 {normal=(-0.0958199 0.985132 0.142599)} Corner 1382 42251 {normal=(-0.0216513 0.990245 0.137648)} Corner 1382 42252 {normal=(-0.0216513 0.990245 0.137648)} Corner 1327 42252 {normal=(-0.0586022 0.987693 0.145012)} Corner 1212 42253 {normal=(-0.523452 -0.150051 -0.838739)} Corner 1099 42253 {normal=(-0.844525 -0.176195 -0.5057)} Corner 1099 42254 {normal=(-0.844525 -0.176195 -0.5057)} Corner 1095 42254 {normal=(-0.848265 -0.176501 -0.499294)} Corner 1095 42255 {normal=(-0.848265 -0.176501 -0.499294)} Corner 1208 42255 {normal=(-0.537642 -0.151062 -0.829531)} Corner 1208 42256 {normal=(-0.537642 -0.151062 -0.829531)} Corner 1212 42256 {normal=(-0.523452 -0.150051 -0.838739)} Corner 1099 42257 {normal=(-0.844525 -0.176195 -0.5057)} Corner 1045 42257 {normal=(-0.97564 -0.190263 0.109205)} Corner 1045 42258 {normal=(-0.97564 -0.190263 0.109205)} Corner 1038 42258 {normal=(-0.97729 -0.190405 0.0930054)} Corner 1038 42259 {normal=(-0.97729 -0.190405 0.0930054)} Corner 1095 42259 {normal=(-0.848265 -0.176501 -0.499294)} Corner 1095 42260 {normal=(-0.848265 -0.176501 -0.499294)} Corner 1099 42260 {normal=(-0.844525 -0.176195 -0.5057)} Corner 1045 42261 {normal=(-0.97564 -0.190263 0.109205)} Corner 1171 42261 {normal=(-0.667558 -0.173858 0.723975)} Corner 1171 42262 {normal=(-0.667558 -0.173858 0.723975)} Corner 1167 42262 {normal=(-0.684329 -0.174579 0.707966)} Corner 1167 42263 {normal=(-0.684329 -0.174579 0.707966)} Corner 1038 42263 {normal=(-0.97729 -0.190405 0.0930054)} Corner 1038 42264 {normal=(-0.97729 -0.190405 0.0930054)} Corner 1045 42264 {normal=(-0.97564 -0.190263 0.109205)} Corner 1171 42265 {normal=(-0.667558 -0.173858 0.723975)} Corner 1435 42265 {normal=(-0.151474 -0.145649 0.977672)} Corner 1435 42266 {normal=(-0.151474 -0.145649 0.977672)} Corner 1427 42266 {normal=(-0.166896 -0.146454 0.975037)} Corner 1427 42267 {normal=(-0.166896 -0.146454 0.975037)} Corner 1167 42267 {normal=(-0.684329 -0.174579 0.707966)} Corner 1167 42268 {normal=(-0.684329 -0.174579 0.707966)} Corner 1171 42268 {normal=(-0.667558 -0.173858 0.723975)} Corner 1435 42269 {normal=(-0.151474 -0.145649 0.977672)} Corner 1695 42269 {normal=(0.352217 -0.10087 0.930467)} Corner 1695 42270 {normal=(0.352217 -0.10087 0.930467)} Corner 1694 42270 {normal=(0.327822 -0.103907 0.939008)} Corner 1694 42271 {normal=(0.327822 -0.103907 0.939008)} Corner 1427 42271 {normal=(-0.166896 -0.146454 0.975037)} Corner 1427 42272 {normal=(-0.166896 -0.146454 0.975037)} Corner 1435 42272 {normal=(-0.151474 -0.145649 0.977672)} Corner 1695 42273 {normal=(0.352217 -0.10087 0.930467)} Corner 3159 42273 {normal=(0.83815 -0.0528884 0.54287)} Corner 3159 42274 {normal=(0.83815 -0.0528884 0.54287)} Corner 3152 42274 {normal=(0.817525 -0.0548391 0.573277)} Corner 3152 42275 {normal=(0.817525 -0.0548391 0.573277)} Corner 1694 42275 {normal=(0.327822 -0.103907 0.939008)} Corner 1694 42276 {normal=(0.327822 -0.103907 0.939008)} Corner 1695 42276 {normal=(0.352217 -0.10087 0.930467)} Corner 3159 42277 {normal=(0.83815 -0.0528884 0.54287)} Corner 3459 42277 {normal=(0.994252 -0.0651198 -0.084988)} Corner 3459 42278 {normal=(0.994252 -0.0651198 -0.084988)} Corner 3482 42278 {normal=(0.995412 -0.0636925 -0.0713959)} Corner 3482 42279 {normal=(0.995412 -0.0636925 -0.0713959)} Corner 3152 42279 {normal=(0.817525 -0.0548391 0.573277)} Corner 3152 42280 {normal=(0.817525 -0.0548391 0.573277)} Corner 3159 42280 {normal=(0.83815 -0.0528884 0.54287)} Corner 3459 42281 {normal=(0.994252 -0.0651198 -0.084988)} Corner 2879 42281 {normal=(0.811443 -0.112307 -0.57354)} Corner 2879 42282 {normal=(0.811443 -0.112307 -0.57354)} Corner 2916 42282 {normal=(0.818172 -0.111461 -0.564066)} Corner 2916 42283 {normal=(0.818172 -0.111461 -0.564066)} Corner 3482 42283 {normal=(0.995412 -0.0636925 -0.0713959)} Corner 3482 42284 {normal=(0.995412 -0.0636925 -0.0713959)} Corner 3459 42284 {normal=(0.994252 -0.0651198 -0.084988)} Corner 2879 42285 {normal=(0.811443 -0.112307 -0.57354)} Corner 1658 42285 {normal=(0.420075 -0.129388 -0.898218)} Corner 1658 42286 {normal=(0.420075 -0.129388 -0.898218)} Corner 1659 42286 {normal=(0.415175 -0.129357 -0.900498)} Corner 1659 42287 {normal=(0.415175 -0.129357 -0.900498)} Corner 2916 42287 {normal=(0.818172 -0.111461 -0.564066)} Corner 2916 42288 {normal=(0.818172 -0.111461 -0.564066)} Corner 2879 42288 {normal=(0.811443 -0.112307 -0.57354)} Corner 1658 42289 {normal=(0.420075 -0.129388 -0.898218)} Corner 1452 42289 {normal=(-0.0991548 -0.132884 -0.986159)} Corner 1452 42290 {normal=(-0.0991548 -0.132884 -0.986159)} Corner 1444 42290 {normal=(-0.124269 -0.133575 -0.983217)} Corner 1444 42291 {normal=(-0.124269 -0.133575 -0.983217)} Corner 1659 42291 {normal=(0.415175 -0.129357 -0.900498)} Corner 1659 42292 {normal=(0.415175 -0.129357 -0.900498)} Corner 1658 42292 {normal=(0.420075 -0.129388 -0.898218)} Corner 1208 42293 {normal=(-0.537642 -0.151062 -0.829531)} Corner 1444 42293 {normal=(-0.124269 -0.133575 -0.983217)} Corner 1444 42294 {normal=(-0.124269 -0.133575 -0.983217)} Corner 1452 42294 {normal=(-0.0991548 -0.132884 -0.986159)} Corner 1452 42295 {normal=(-0.0991548 -0.132884 -0.986159)} Corner 1212 42295 {normal=(-0.523452 -0.150051 -0.838739)} Corner 1212 42296 {normal=(-0.523452 -0.150051 -0.838739)} Corner 1208 42296 {normal=(-0.537642 -0.151062 -0.829531)} Corner 1177 42297 {normal=(-0.528294 -0.150561 -0.835606)} Corner 1424 42297 {normal=(-0.121172 -0.133162 -0.983659)} Corner 1424 42298 {normal=(-0.121172 -0.133162 -0.983659)} Corner 1428 42298 {normal=(-0.0970178 -0.132495 -0.986424)} Corner 1428 42299 {normal=(-0.0970178 -0.132495 -0.986424)} Corner 1179 42299 {normal=(-0.513949 -0.149545 -0.844685)} Corner 1179 42300 {normal=(-0.513949 -0.149545 -0.844685)} Corner 1177 42300 {normal=(-0.528294 -0.150561 -0.835606)} Corner 1424 42301 {normal=(-0.121172 -0.133162 -0.983659)} Corner 1678 42301 {normal=(0.419175 -0.129758 -0.898585)} Corner 1678 42302 {normal=(0.419175 -0.129758 -0.898585)} Corner 1674 42302 {normal=(0.424212 -0.129791 -0.896213)} Corner 1674 42303 {normal=(0.424212 -0.129791 -0.896213)} Corner 1428 42303 {normal=(-0.0970178 -0.132495 -0.986424)} Corner 1428 42304 {normal=(-0.0970178 -0.132495 -0.986424)} Corner 1424 42304 {normal=(-0.121172 -0.133162 -0.983659)} Corner 1678 42305 {normal=(0.419175 -0.129758 -0.898585)} Corner 3182 42305 {normal=(0.848857 -0.10943 -0.517172)} Corner 3182 42306 {normal=(0.848857 -0.10943 -0.517172)} Corner 3150 42306 {normal=(0.84283 -0.110268 -0.526763)} Corner 3150 42307 {normal=(0.84283 -0.110268 -0.526763)} Corner 1674 42307 {normal=(0.424212 -0.129791 -0.896213)} Corner 1674 42308 {normal=(0.424212 -0.129791 -0.896213)} Corner 1678 42308 {normal=(0.419175 -0.129758 -0.898585)} Corner 3182 42309 {normal=(0.848857 -0.10943 -0.517172)} Corner 3575 42309 {normal=(0.997805 -0.0653363 0.0108283)} Corner 3575 42310 {normal=(0.997805 -0.0653363 0.0108283)} Corner 3559 42310 {normal=(0.997799 -0.0663086 -0.00101704)} Corner 3559 42311 {normal=(0.997799 -0.0663086 -0.00101704)} Corner 3150 42311 {normal=(0.84283 -0.110268 -0.526763)} Corner 3150 42312 {normal=(0.84283 -0.110268 -0.526763)} Corner 3182 42312 {normal=(0.848857 -0.10943 -0.517172)} Corner 3575 42313 {normal=(0.997805 -0.0653363 0.0108283)} Corner 3107 42313 {normal=(0.807573 -0.0568463 0.587022)} Corner 3107 42314 {normal=(0.807573 -0.0568463 0.587022)} Corner 3118 42314 {normal=(0.825614 -0.0554879 0.5615)} Corner 3118 42315 {normal=(0.825614 -0.0554879 0.5615)} Corner 3559 42315 {normal=(0.997799 -0.0663086 -0.00101704)} Corner 3559 42316 {normal=(0.997799 -0.0663086 -0.00101704)} Corner 3575 42316 {normal=(0.997805 -0.0653363 0.0108283)} Corner 3107 42317 {normal=(0.807573 -0.0568463 0.587022)} Corner 1684 42317 {normal=(0.342159 -0.102864 0.933995)} Corner 1684 42318 {normal=(0.342159 -0.102864 0.933995)} Corner 1687 42318 {normal=(0.367852 -0.0996659 0.924528)} Corner 1687 42319 {normal=(0.367852 -0.0996659 0.924528)} Corner 3118 42319 {normal=(0.825614 -0.0554879 0.5615)} Corner 3118 42320 {normal=(0.825614 -0.0554879 0.5615)} Corner 3107 42320 {normal=(0.807573 -0.0568463 0.587022)} Corner 1684 42321 {normal=(0.342159 -0.102864 0.933995)} Corner 1403 42321 {normal=(-0.165214 -0.14648 0.975319)} Corner 1403 42322 {normal=(-0.165214 -0.14648 0.975319)} Corner 1408 42322 {normal=(-0.149472 -0.145656 0.977979)} Corner 1408 42323 {normal=(-0.149472 -0.145656 0.977979)} Corner 1687 42323 {normal=(0.367852 -0.0996659 0.924528)} Corner 1687 42324 {normal=(0.367852 -0.0996659 0.924528)} Corner 1684 42324 {normal=(0.342159 -0.102864 0.933995)} Corner 1403 42325 {normal=(-0.165214 -0.14648 0.975319)} Corner 1126 42325 {normal=(-0.680981 -0.174131 0.711297)} Corner 1126 42326 {normal=(-0.680981 -0.174131 0.711297)} Corner 1134 42326 {normal=(-0.664274 -0.173415 0.727095)} Corner 1134 42327 {normal=(-0.664274 -0.173415 0.727095)} Corner 1408 42327 {normal=(-0.149472 -0.145656 0.977979)} Corner 1408 42328 {normal=(-0.149472 -0.145656 0.977979)} Corner 1403 42328 {normal=(-0.165214 -0.14648 0.975319)} Corner 1126 42329 {normal=(-0.680981 -0.174131 0.711297)} Corner 984 42329 {normal=(-0.977025 -0.190863 0.0948372)} Corner 984 42330 {normal=(-0.977025 -0.190863 0.0948372)} Corner 991 42330 {normal=(-0.975283 -0.190718 0.111582)} Corner 991 42331 {normal=(-0.975283 -0.190718 0.111582)} Corner 1134 42331 {normal=(-0.664274 -0.173415 0.727095)} Corner 1134 42332 {normal=(-0.664274 -0.173415 0.727095)} Corner 1126 42332 {normal=(-0.680981 -0.174131 0.711297)} Corner 984 42333 {normal=(-0.977025 -0.190863 0.0948372)} Corner 1064 42333 {normal=(-0.843305 -0.176311 -0.507691)} Corner 1064 42334 {normal=(-0.843305 -0.176311 -0.507691)} Corner 1068 42334 {normal=(-0.83913 -0.175972 -0.514679)} Corner 1068 42335 {normal=(-0.83913 -0.175972 -0.514679)} Corner 991 42335 {normal=(-0.975283 -0.190718 0.111582)} Corner 991 42336 {normal=(-0.975283 -0.190718 0.111582)} Corner 984 42336 {normal=(-0.977025 -0.190863 0.0948372)} Corner 1064 42337 {normal=(-0.843305 -0.176311 -0.507691)} Corner 1177 42337 {normal=(-0.528294 -0.150561 -0.835606)} Corner 1177 42338 {normal=(-0.528294 -0.150561 -0.835606)} Corner 1179 42338 {normal=(-0.513949 -0.149545 -0.844685)} Corner 1179 42339 {normal=(-0.513949 -0.149545 -0.844685)} Corner 1068 42339 {normal=(-0.83913 -0.175972 -0.514679)} Corner 1068 42340 {normal=(-0.83913 -0.175972 -0.514679)} Corner 1064 42340 {normal=(-0.843305 -0.176311 -0.507691)} Corner 1658 42341 {normal=(0.194008 0.925705 -0.324701)} Corner 2879 42341 {normal=(0.278752 0.933645 -0.224956)} Corner 2879 42342 {normal=(0.278752 0.933645 -0.224956)} Corner 3146 42342 {normal=(0.279413 0.934215 -0.221745)} Corner 3146 42343 {normal=(0.279413 0.934215 -0.221745)} Corner 1661 42343 {normal=(0.167445 0.926611 -0.336681)} Corner 1661 42344 {normal=(0.167445 0.926611 -0.336681)} Corner 1658 42344 {normal=(0.194008 0.925705 -0.324701)} Corner 1452 42345 {normal=(-0.0126366 0.92184 -0.387365)} Corner 1658 42345 {normal=(0.194008 0.925705 -0.324701)} Corner 1658 42346 {normal=(0.194008 0.925705 -0.324701)} Corner 1661 42346 {normal=(0.167445 0.926611 -0.336681)} Corner 1661 42347 {normal=(0.167445 0.926611 -0.336681)} Corner 1464 42347 {normal=(0.0230391 0.924287 -0.381001)} Corner 1464 42348 {normal=(0.0230391 0.924287 -0.381001)} Corner 1452 42348 {normal=(-0.0126366 0.92184 -0.387365)} Corner 1212 42349 {normal=(-0.191307 0.917547 -0.348581)} Corner 1452 42349 {normal=(-0.0126366 0.92184 -0.387365)} Corner 1452 42350 {normal=(-0.0126366 0.92184 -0.387365)} Corner 1464 42350 {normal=(0.0230391 0.924287 -0.381001)} Corner 1464 42351 {normal=(0.0230391 0.924287 -0.381001)} Corner 1187 42351 {normal=(-0.198518 0.917542 -0.344538)} Corner 1187 42352 {normal=(-0.198518 0.917542 -0.344538)} Corner 1212 42352 {normal=(-0.191307 0.917547 -0.348581)} Corner 1099 42353 {normal=(-0.357491 0.911152 -0.204947)} Corner 1212 42353 {normal=(-0.191307 0.917547 -0.348581)} Corner 1212 42354 {normal=(-0.191307 0.917547 -0.348581)} Corner 1187 42354 {normal=(-0.198518 0.917542 -0.344538)} Corner 1187 42355 {normal=(-0.198518 0.917542 -0.344538)} Corner 1076 42355 {normal=(-0.364413 0.910467 -0.195585)} Corner 1076 42356 {normal=(-0.364413 0.910467 -0.195585)} Corner 1099 42356 {normal=(-0.357491 0.911152 -0.204947)} Corner 1045 42357 {normal=(-0.399573 0.914999 0.0558349)} Corner 1099 42357 {normal=(-0.357491 0.911152 -0.204947)} Corner 1099 42358 {normal=(-0.357491 0.911152 -0.204947)} Corner 1076 42358 {normal=(-0.364413 0.910467 -0.195585)} Corner 1076 42359 {normal=(-0.364413 0.910467 -0.195585)} Corner 1011 42359 {normal=(-0.393989 0.915213 0.0846081)} Corner 1011 42360 {normal=(-0.393989 0.915213 0.0846081)} Corner 1045 42360 {normal=(-0.399573 0.914999 0.0558349)} Corner 1171 42361 {normal=(-0.265701 0.914733 0.304412)} Corner 1045 42361 {normal=(-0.399573 0.914999 0.0558349)} Corner 1045 42362 {normal=(-0.399573 0.914999 0.0558349)} Corner 1011 42362 {normal=(-0.393989 0.915213 0.0846081)} Corner 1011 42363 {normal=(-0.393989 0.915213 0.0846081)} Corner 1146 42363 {normal=(-0.249745 0.915791 0.314569)} Corner 1146 42364 {normal=(-0.249745 0.915791 0.314569)} Corner 1171 42364 {normal=(-0.265701 0.914733 0.304412)} Corner 1435 42365 {normal=(-0.0692715 0.927143 0.36825)} Corner 1171 42365 {normal=(-0.265701 0.914733 0.304412)} Corner 1171 42366 {normal=(-0.265701 0.914733 0.304412)} Corner 1146 42366 {normal=(-0.249745 0.915791 0.314569)} Corner 1146 42367 {normal=(-0.249745 0.915791 0.314569)} Corner 1429 42367 {normal=(-0.0582225 0.928065 0.36784)} Corner 1429 42368 {normal=(-0.0582225 0.928065 0.36784)} Corner 1435 42368 {normal=(-0.0692715 0.927143 0.36825)} Corner 1695 42369 {normal=(0.102591 0.940817 0.323014)} Corner 1435 42369 {normal=(-0.0692715 0.927143 0.36825)} Corner 1435 42370 {normal=(-0.0692715 0.927143 0.36825)} Corner 1429 42370 {normal=(-0.0582225 0.928065 0.36784)} Corner 1429 42371 {normal=(-0.0582225 0.928065 0.36784)} Corner 1718 42371 {normal=(0.111355 0.941516 0.318037)} Corner 1718 42372 {normal=(0.111355 0.941516 0.318037)} Corner 1695 42372 {normal=(0.102591 0.940817 0.323014)} Corner 3159 42373 {normal=(0.24122 0.95383 0.178948)} Corner 1695 42373 {normal=(0.102591 0.940817 0.323014)} Corner 1695 42374 {normal=(0.102591 0.940817 0.323014)} Corner 1718 42374 {normal=(0.111355 0.941516 0.318037)} Corner 1718 42375 {normal=(0.111355 0.941516 0.318037)} Corner 3399 42375 {normal=(0.254607 0.954441 0.155622)} Corner 3399 42376 {normal=(0.254607 0.954441 0.155622)} Corner 3159 42376 {normal=(0.24122 0.95383 0.178948)} Corner 3459 42377 {normal=(0.30192 0.95254 -0.0388894)} Corner 3159 42377 {normal=(0.24122 0.95383 0.178948)} Corner 3159 42378 {normal=(0.24122 0.95383 0.178948)} Corner 3399 42378 {normal=(0.254607 0.954441 0.155622)} Corner 3399 42379 {normal=(0.254607 0.954441 0.155622)} Corner 3678 42379 {normal=(0.300517 0.951911 -0.0596295)} Corner 3678 42380 {normal=(0.300517 0.951911 -0.0596295)} Corner 3459 42380 {normal=(0.30192 0.95254 -0.0388894)} Corner 2879 42381 {normal=(0.278752 0.933645 -0.224956)} Corner 3459 42381 {normal=(0.30192 0.95254 -0.0388894)} Corner 3459 42382 {normal=(0.30192 0.95254 -0.0388894)} Corner 3678 42382 {normal=(0.300517 0.951911 -0.0596295)} Corner 3678 42383 {normal=(0.300517 0.951911 -0.0596295)} Corner 3146 42383 {normal=(0.279413 0.934215 -0.221745)} Corner 3146 42384 {normal=(0.279413 0.934215 -0.221745)} Corner 2879 42384 {normal=(0.278752 0.933645 -0.224956)} Corner 3195 42385 {normal=(-0.0482189 -0.99808 -0.0388707)} Corner 3364 42385 {normal=(-0.0651623 -0.997334 0.0328556)} Corner 3364 42386 {normal=(-0.0651623 -0.997334 0.0328556)} Corner 3587 42386 {normal=(-0.065325 -0.997221 0.0358197)} Corner 3587 42387 {normal=(-0.065325 -0.997221 0.0358197)} Corner 3422 42387 {normal=(-0.0505262 -0.998161 -0.0334914)} Corner 3422 42388 {normal=(-0.0505262 -0.998161 -0.0334914)} Corner 3195 42388 {normal=(-0.0482189 -0.99808 -0.0388707)} Corner 1710 42389 {normal=(-0.0196359 -0.99511 -0.0968026)} Corner 3195 42389 {normal=(-0.0482189 -0.99808 -0.0388707)} Corner 3195 42390 {normal=(-0.0482189 -0.99808 -0.0388707)} Corner 3422 42390 {normal=(-0.0505262 -0.998161 -0.0334914)} Corner 3422 42391 {normal=(-0.0505262 -0.998161 -0.0334914)} Corner 1749 42391 {normal=(-0.0212762 -0.995354 -0.093899)} Corner 1749 42392 {normal=(-0.0212762 -0.995354 -0.093899)} Corner 1710 42392 {normal=(-0.0196359 -0.99511 -0.0968026)} Corner 1473 42393 {normal=(0.0293158 -0.990242 -0.136241)} Corner 1710 42393 {normal=(-0.0196359 -0.99511 -0.0968026)} Corner 1710 42394 {normal=(-0.0196359 -0.99511 -0.0968026)} Corner 1749 42394 {normal=(-0.0212762 -0.995354 -0.093899)} Corner 1749 42395 {normal=(-0.0212762 -0.995354 -0.093899)} Corner 1463 42395 {normal=(0.0256935 -0.990551 -0.134717)} Corner 1463 42396 {normal=(0.0256935 -0.990551 -0.134717)} Corner 1473 42396 {normal=(0.0293158 -0.990242 -0.136241)} Corner 1203 42397 {normal=(0.103681 -0.984763 -0.139615)} Corner 1473 42397 {normal=(0.0293158 -0.990242 -0.136241)} Corner 1473 42398 {normal=(0.0293158 -0.990242 -0.136241)} Corner 1463 42398 {normal=(0.0256935 -0.990551 -0.134717)} Corner 1463 42399 {normal=(0.0256935 -0.990551 -0.134717)} Corner 1180 42399 {normal=(0.0974944 -0.985187 -0.141075)} Corner 1180 42400 {normal=(0.0974944 -0.985187 -0.141075)} Corner 1203 42400 {normal=(0.103681 -0.984763 -0.139615)} Corner 1084 42401 {normal=(0.167857 -0.985116 -0.0370096)} Corner 1203 42401 {normal=(0.103681 -0.984763 -0.139615)} Corner 1203 42402 {normal=(0.103681 -0.984763 -0.139615)} Corner 1180 42402 {normal=(0.0974944 -0.985187 -0.141075)} Corner 1180 42403 {normal=(0.0974944 -0.985187 -0.141075)} Corner 1054 42403 {normal=(0.163943 -0.985148 -0.0510568)} Corner 1054 42404 {normal=(0.163943 -0.985148 -0.0510568)} Corner 1084 42404 {normal=(0.167857 -0.985116 -0.0370096)} Corner 1132 42405 {normal=(0.157449 -0.984092 0.0823001)} Corner 1084 42405 {normal=(0.167857 -0.985116 -0.0370096)} Corner 1084 42406 {normal=(0.167857 -0.985116 -0.0370096)} Corner 1054 42406 {normal=(0.163943 -0.985148 -0.0510568)} Corner 1054 42407 {normal=(0.163943 -0.985148 -0.0510568)} Corner 1103 42407 {normal=(0.160566 -0.983874 0.0788015)} Corner 1103 42408 {normal=(0.160566 -0.983874 0.0788015)} Corner 1132 42408 {normal=(0.157449 -0.984092 0.0823001)} Corner 1247 42409 {normal=(0.0647472 -0.98774 0.14205)} Corner 1132 42409 {normal=(0.157449 -0.984092 0.0823001)} Corner 1132 42410 {normal=(0.157449 -0.984092 0.0823001)} Corner 1103 42410 {normal=(0.160566 -0.983874 0.0788015)} Corner 1103 42411 {normal=(0.160566 -0.983874 0.0788015)} Corner 1217 42411 {normal=(0.069687 -0.987695 0.140007)} Corner 1217 42412 {normal=(0.069687 -0.987695 0.140007)} Corner 1247 42412 {normal=(0.0647472 -0.98774 0.14205)} Corner 1472 42413 {normal=(-0.0265874 -0.987825 0.153283)} Corner 1247 42413 {normal=(0.0647472 -0.98774 0.14205)} Corner 1247 42414 {normal=(0.0647472 -0.98774 0.14205)} Corner 1217 42414 {normal=(0.069687 -0.987695 0.140007)} Corner 1217 42415 {normal=(0.069687 -0.987695 0.140007)} Corner 1479 42415 {normal=(-0.0403811 -0.988187 0.147835)} Corner 1479 42416 {normal=(-0.0403811 -0.988187 0.147835)} Corner 1472 42416 {normal=(-0.0265874 -0.987825 0.153283)} Corner 1651 42417 {normal=(-0.0844399 -0.989645 0.116076)} Corner 1472 42417 {normal=(-0.0265874 -0.987825 0.153283)} Corner 1472 42418 {normal=(-0.0265874 -0.987825 0.153283)} Corner 1479 42418 {normal=(-0.0403811 -0.988187 0.147835)} Corner 1479 42419 {normal=(-0.0403811 -0.988187 0.147835)} Corner 1652 42419 {normal=(-0.080481 -0.989284 0.121819)} Corner 1652 42420 {normal=(-0.080481 -0.989284 0.121819)} Corner 1651 42420 {normal=(-0.0844399 -0.989645 0.116076)} Corner 2701 42421 {normal=(-0.0817127 -0.992806 0.0875177)} Corner 1651 42421 {normal=(-0.0844399 -0.989645 0.116076)} Corner 1651 42422 {normal=(-0.0844399 -0.989645 0.116076)} Corner 1652 42422 {normal=(-0.080481 -0.989284 0.121819)} Corner 1652 42423 {normal=(-0.080481 -0.989284 0.121819)} Corner 2905 42423 {normal=(-0.0799652 -0.99311 0.0856586)} Corner 2905 42424 {normal=(-0.0799652 -0.99311 0.0856586)} Corner 2701 42424 {normal=(-0.0817127 -0.992806 0.0875177)} Corner 3364 42425 {normal=(-0.0651623 -0.997334 0.0328556)} Corner 2701 42425 {normal=(-0.0817127 -0.992806 0.0875177)} Corner 2701 42426 {normal=(-0.0817127 -0.992806 0.0875177)} Corner 2905 42426 {normal=(-0.0799652 -0.99311 0.0856586)} Corner 2905 42427 {normal=(-0.0799652 -0.99311 0.0856586)} Corner 3587 42427 {normal=(-0.065325 -0.997221 0.0358197)} Corner 3587 42428 {normal=(-0.065325 -0.997221 0.0358197)} Corner 3364 42428 {normal=(-0.0651623 -0.997334 0.0328556)} Corner 3482 42429 {normal=(0.166954 -0.985898 0.0114907)} Corner 2916 42429 {normal=(0.114456 -0.99179 -0.057025)} Corner 2916 42430 {normal=(0.114456 -0.99179 -0.057025)} Corner 3179 42430 {normal=(0.112028 -0.991942 -0.0591629)} Corner 3179 42431 {normal=(0.112028 -0.991942 -0.0591629)} Corner 3707 42431 {normal=(0.165905 -0.986102 0.00883512)} Corner 3707 42432 {normal=(0.165905 -0.986102 0.00883512)} Corner 3482 42432 {normal=(0.166954 -0.985898 0.0114907)} Corner 3152 42433 {normal=(0.142556 -0.986854 0.07614)} Corner 3482 42433 {normal=(0.166954 -0.985898 0.0114907)} Corner 3482 42434 {normal=(0.166954 -0.985898 0.0114907)} Corner 3707 42434 {normal=(0.165905 -0.986102 0.00883512)} Corner 3707 42435 {normal=(0.165905 -0.986102 0.00883512)} Corner 3317 42435 {normal=(0.125147 -0.987928 0.0913045)} Corner 3317 42436 {normal=(0.125147 -0.987928 0.0913045)} Corner 3152 42436 {normal=(0.142556 -0.986854 0.07614)} Corner 1694 42437 {normal=(0.0492708 -0.990479 0.128543)} Corner 3152 42437 {normal=(0.142556 -0.986854 0.07614)} Corner 3152 42438 {normal=(0.142556 -0.986854 0.07614)} Corner 3317 42438 {normal=(0.125147 -0.987928 0.0913045)} Corner 3317 42439 {normal=(0.125147 -0.987928 0.0913045)} Corner 1736 42439 {normal=(0.0633843 -0.990022 0.125852)} Corner 1736 42440 {normal=(0.0633843 -0.990022 0.125852)} Corner 1694 42440 {normal=(0.0492708 -0.990479 0.128543)} Corner 1427 42441 {normal=(-0.0113923 -0.994235 0.106612)} Corner 1694 42441 {normal=(0.0492708 -0.990479 0.128543)} Corner 1694 42442 {normal=(0.0492708 -0.990479 0.128543)} Corner 1736 42442 {normal=(0.0633843 -0.990022 0.125852)} Corner 1736 42443 {normal=(0.0633843 -0.990022 0.125852)} Corner 1422 42443 {normal=(-0.00880779 -0.994008 0.10895)} Corner 1422 42444 {normal=(-0.00880779 -0.994008 0.10895)} Corner 1427 42444 {normal=(-0.0113923 -0.994235 0.106612)} Corner 1167 42445 {normal=(-0.0595943 -0.997775 0.0299055)} Corner 1427 42445 {normal=(-0.0113923 -0.994235 0.106612)} Corner 1427 42446 {normal=(-0.0113923 -0.994235 0.106612)} Corner 1422 42446 {normal=(-0.00880779 -0.994008 0.10895)} Corner 1422 42447 {normal=(-0.00880779 -0.994008 0.10895)} Corner 1139 42447 {normal=(-0.0569764 -0.997703 0.0366283)} Corner 1139 42448 {normal=(-0.0569764 -0.997703 0.0366283)} Corner 1167 42448 {normal=(-0.0595943 -0.997775 0.0299055)} Corner 1038 42449 {normal=(-0.0611219 -0.998016 -0.0151342)} Corner 1167 42449 {normal=(-0.0595943 -0.997775 0.0299055)} Corner 1167 42450 {normal=(-0.0595943 -0.997775 0.0299055)} Corner 1139 42450 {normal=(-0.0569764 -0.997703 0.0366283)} Corner 1139 42451 {normal=(-0.0569764 -0.997703 0.0366283)} Corner 998 42451 {normal=(-0.0537973 -0.998444 -0.0146742)} Corner 998 42452 {normal=(-0.0537973 -0.998444 -0.0146742)} Corner 1038 42452 {normal=(-0.0611219 -0.998016 -0.0151342)} Corner 1095 42453 {normal=(-0.0441143 -0.998114 -0.042679)} Corner 1038 42453 {normal=(-0.0611219 -0.998016 -0.0151342)} Corner 1038 42454 {normal=(-0.0611219 -0.998016 -0.0151342)} Corner 998 42454 {normal=(-0.0537973 -0.998444 -0.0146742)} Corner 998 42455 {normal=(-0.0537973 -0.998444 -0.0146742)} Corner 1066 42455 {normal=(-0.0423219 -0.998583 -0.0322747)} Corner 1066 42456 {normal=(-0.0423219 -0.998583 -0.0322747)} Corner 1095 42456 {normal=(-0.0441143 -0.998114 -0.042679)} Corner 1208 42457 {normal=(-0.0670186 -0.994933 -0.0749498)} Corner 1095 42457 {normal=(-0.0441143 -0.998114 -0.042679)} Corner 1095 42458 {normal=(-0.0441143 -0.998114 -0.042679)} Corner 1066 42458 {normal=(-0.0423219 -0.998583 -0.0322747)} Corner 1066 42459 {normal=(-0.0423219 -0.998583 -0.0322747)} Corner 1185 42459 {normal=(-0.0684878 -0.994762 -0.0758755)} Corner 1185 42460 {normal=(-0.0684878 -0.994762 -0.0758755)} Corner 1208 42460 {normal=(-0.0670186 -0.994933 -0.0749498)} Corner 1444 42461 {normal=(-0.0642714 -0.993402 -0.0949816)} Corner 1208 42461 {normal=(-0.0670186 -0.994933 -0.0749498)} Corner 1208 42462 {normal=(-0.0670186 -0.994933 -0.0749498)} Corner 1185 42462 {normal=(-0.0684878 -0.994762 -0.0758755)} Corner 1185 42463 {normal=(-0.0684878 -0.994762 -0.0758755)} Corner 1460 42463 {normal=(-0.0552575 -0.993684 -0.0976719)} Corner 1460 42464 {normal=(-0.0552575 -0.993684 -0.0976719)} Corner 1444 42464 {normal=(-0.0642714 -0.993402 -0.0949816)} Corner 1659 42465 {normal=(0.0271406 -0.994793 -0.0982348)} Corner 1444 42465 {normal=(-0.0642714 -0.993402 -0.0949816)} Corner 1444 42466 {normal=(-0.0642714 -0.993402 -0.0949816)} Corner 1460 42466 {normal=(-0.0552575 -0.993684 -0.0976719)} Corner 1460 42467 {normal=(-0.0552575 -0.993684 -0.0976719)} Corner 1664 42467 {normal=(0.00993947 -0.994938 -0.0999979)} Corner 1664 42468 {normal=(0.00993947 -0.994938 -0.0999979)} Corner 1659 42468 {normal=(0.0271406 -0.994793 -0.0982348)} Corner 2916 42469 {normal=(0.114456 -0.99179 -0.057025)} Corner 1659 42469 {normal=(0.0271406 -0.994793 -0.0982348)} Corner 1659 42470 {normal=(0.0271406 -0.994793 -0.0982348)} Corner 1664 42470 {normal=(0.00993947 -0.994938 -0.0999979)} Corner 1664 42471 {normal=(0.00993947 -0.994938 -0.0999979)} Corner 3179 42471 {normal=(0.112028 -0.991942 -0.0591629)} Corner 3179 42472 {normal=(0.112028 -0.991942 -0.0591629)} Corner 2916 42472 {normal=(0.114456 -0.99179 -0.057025)} Corner 1428 42473 {normal=(-0.00852038 0.924622 -0.380791)} Corner 1674 42473 {normal=(0.196149 0.925477 -0.324064)} Corner 1674 42474 {normal=(0.196149 0.925477 -0.324064)} Corner 1680 42474 {normal=(0.168681 0.926568 -0.336182)} Corner 1680 42475 {normal=(0.168681 0.926568 -0.336182)} Corner 1441 42475 {normal=(0.025409 0.926065 -0.376508)} Corner 1441 42476 {normal=(0.025409 0.926065 -0.376508)} Corner 1428 42476 {normal=(-0.00852038 0.924622 -0.380791)} Corner 1179 42477 {normal=(-0.206838 0.912839 -0.352055)} Corner 1428 42477 {normal=(-0.00852038 0.924622 -0.380791)} Corner 1428 42478 {normal=(-0.00852038 0.924622 -0.380791)} Corner 1441 42478 {normal=(0.025409 0.926065 -0.376508)} Corner 1441 42479 {normal=(0.025409 0.926065 -0.376508)} Corner 1165 42479 {normal=(-0.195073 0.913941 -0.355891)} Corner 1165 42480 {normal=(-0.195073 0.913941 -0.355891)} Corner 1179 42480 {normal=(-0.206838 0.912839 -0.352055)} Corner 1068 42481 {normal=(-0.358662 0.903963 -0.232835)} Corner 1179 42481 {normal=(-0.206838 0.912839 -0.352055)} Corner 1179 42482 {normal=(-0.206838 0.912839 -0.352055)} Corner 1165 42482 {normal=(-0.195073 0.913941 -0.355891)} Corner 1165 42483 {normal=(-0.195073 0.913941 -0.355891)} Corner 1033 42483 {normal=(-0.379274 0.905296 -0.191285)} Corner 1033 42484 {normal=(-0.379274 0.905296 -0.191285)} Corner 1068 42484 {normal=(-0.358662 0.903963 -0.232835)} Corner 991 42485 {normal=(-0.417705 0.902549 0.104541)} Corner 1068 42485 {normal=(-0.358662 0.903963 -0.232835)} Corner 1068 42486 {normal=(-0.358662 0.903963 -0.232835)} Corner 1033 42486 {normal=(-0.379274 0.905296 -0.191285)} Corner 1033 42487 {normal=(-0.379274 0.905296 -0.191285)} Corner 956 42487 {normal=(-0.419035 0.90721 0.0371537)} Corner 956 42488 {normal=(-0.419035 0.90721 0.0371537)} Corner 991 42488 {normal=(-0.417705 0.902549 0.104541)} Corner 1134 42489 {normal=(-0.293199 0.901815 0.317433)} Corner 991 42489 {normal=(-0.417705 0.902549 0.104541)} Corner 991 42490 {normal=(-0.417705 0.902549 0.104541)} Corner 956 42490 {normal=(-0.419035 0.90721 0.0371537)} Corner 956 42491 {normal=(-0.419035 0.90721 0.0371537)} Corner 1116 42491 {normal=(-0.272642 0.905208 0.325983)} Corner 1116 42492 {normal=(-0.272642 0.905208 0.325983)} Corner 1134 42492 {normal=(-0.293199 0.901815 0.317433)} Corner 1408 42493 {normal=(-0.0665716 0.923792 0.377063)} Corner 1134 42493 {normal=(-0.293199 0.901815 0.317433)} Corner 1134 42494 {normal=(-0.293199 0.901815 0.317433)} Corner 1116 42494 {normal=(-0.272642 0.905208 0.325983)} Corner 1116 42495 {normal=(-0.272642 0.905208 0.325983)} Corner 1404 42495 {normal=(-0.0553052 0.924253 0.377754)} Corner 1404 42496 {normal=(-0.0553052 0.924253 0.377754)} Corner 1408 42496 {normal=(-0.0665716 0.923792 0.377063)} Corner 1687 42497 {normal=(0.0982716 0.936634 0.336242)} Corner 1408 42497 {normal=(-0.0665716 0.923792 0.377063)} Corner 1408 42498 {normal=(-0.0665716 0.923792 0.377063)} Corner 1404 42498 {normal=(-0.0553052 0.924253 0.377754)} Corner 1404 42499 {normal=(-0.0553052 0.924253 0.377754)} Corner 1711 42499 {normal=(0.130295 0.941118 0.311961)} Corner 1711 42500 {normal=(0.130295 0.941118 0.311961)} Corner 1687 42500 {normal=(0.0982716 0.936634 0.336242)} Corner 3118 42501 {normal=(0.211659 0.96638 0.145983)} Corner 1687 42501 {normal=(0.0982716 0.936634 0.336242)} Corner 1687 42502 {normal=(0.0982716 0.936634 0.336242)} Corner 1711 42502 {normal=(0.130295 0.941118 0.311961)} Corner 1711 42503 {normal=(0.130295 0.941118 0.311961)} Corner 3288 42503 {normal=(0.205234 0.962112 0.179496)} Corner 3288 42504 {normal=(0.205234 0.962112 0.179496)} Corner 3118 42504 {normal=(0.211659 0.96638 0.145983)} Corner 3559 42505 {normal=(0.221361 0.975133 -0.0106952)} Corner 3118 42505 {normal=(0.211659 0.96638 0.145983)} Corner 3118 42506 {normal=(0.211659 0.96638 0.145983)} Corner 3288 42506 {normal=(0.205234 0.962112 0.179496)} Corner 3288 42507 {normal=(0.205234 0.962112 0.179496)} Corner 3777 42507 {normal=(0.219899 0.975271 -0.0221546)} Corner 3777 42508 {normal=(0.219899 0.975271 -0.0221546)} Corner 3559 42508 {normal=(0.221361 0.975133 -0.0106952)} Corner 3150 42509 {normal=(0.241023 0.953678 -0.180017)} Corner 3559 42509 {normal=(0.221361 0.975133 -0.0106952)} Corner 3559 42510 {normal=(0.221361 0.975133 -0.0106952)} Corner 3777 42510 {normal=(0.219899 0.975271 -0.0221546)} Corner 3777 42511 {normal=(0.219899 0.975271 -0.0221546)} Corner 3341 42511 {normal=(0.244926 0.949931 -0.194017)} Corner 3341 42512 {normal=(0.244926 0.949931 -0.194017)} Corner 3150 42512 {normal=(0.241023 0.953678 -0.180017)} Corner 1674 42513 {normal=(0.196149 0.925477 -0.324064)} Corner 3150 42513 {normal=(0.241023 0.953678 -0.180017)} Corner 3150 42514 {normal=(0.241023 0.953678 -0.180017)} Corner 3341 42514 {normal=(0.244926 0.949931 -0.194017)} Corner 3341 42515 {normal=(0.244926 0.949931 -0.194017)} Corner 1680 42515 {normal=(0.168681 0.926568 -0.336182)} Corner 1680 42516 {normal=(0.168681 0.926568 -0.336182)} Corner 1674 42516 {normal=(0.196149 0.925477 -0.324064)} Corner 3107 42517 {normal=(0.0909205 -0.993073 0.0744297)} Corner 3575 42517 {normal=(0.0539827 -0.998239 0.024594)} Corner 3575 42518 {normal=(0.0539827 -0.998239 0.024594)} Corner 3829 42518 {normal=(0.053081 -0.998243 0.0263347)} Corner 3829 42519 {normal=(0.053081 -0.998243 0.0263347)} Corner 3334 42519 {normal=(0.0885847 -0.993739 0.0680862)} Corner 3334 42520 {normal=(0.0885847 -0.993739 0.0680862)} Corner 3107 42520 {normal=(0.0909205 -0.993073 0.0744297)} Corner 1684 42521 {normal=(0.0647476 -0.988859 0.134034)} Corner 3107 42521 {normal=(0.0909205 -0.993073 0.0744297)} Corner 3107 42522 {normal=(0.0909205 -0.993073 0.0744297)} Corner 3334 42522 {normal=(0.0885847 -0.993739 0.0680862)} Corner 3334 42523 {normal=(0.0885847 -0.993739 0.0680862)} Corner 1701 42523 {normal=(0.0693363 -0.988483 0.134515)} Corner 1701 42524 {normal=(0.0693363 -0.988483 0.134515)} Corner 1684 42524 {normal=(0.0647476 -0.988859 0.134034)} Corner 1403 42525 {normal=(-0.0119544 -0.99447 0.104343)} Corner 1684 42525 {normal=(0.0647476 -0.988859 0.134034)} Corner 1684 42526 {normal=(0.0647476 -0.988859 0.134034)} Corner 1701 42526 {normal=(0.0693363 -0.988483 0.134515)} Corner 1701 42527 {normal=(0.0693363 -0.988483 0.134515)} Corner 1401 42527 {normal=(-0.00917534 -0.994261 0.106585)} Corner 1401 42528 {normal=(-0.00917534 -0.994261 0.106585)} Corner 1403 42528 {normal=(-0.0119544 -0.99447 0.104343)} Corner 1126 42529 {normal=(-0.0650574 -0.997346 0.0326827)} Corner 1403 42529 {normal=(-0.0119544 -0.99447 0.104343)} Corner 1403 42530 {normal=(-0.0119544 -0.99447 0.104343)} Corner 1401 42530 {normal=(-0.00917534 -0.994261 0.106585)} Corner 1401 42531 {normal=(-0.00917534 -0.994261 0.106585)} Corner 1109 42531 {normal=(-0.0620929 -0.997326 0.0385384)} Corner 1109 42532 {normal=(-0.0620929 -0.997326 0.0385384)} Corner 1126 42532 {normal=(-0.0650574 -0.997346 0.0326827)} Corner 984 42533 {normal=(-0.0725093 -0.997243 -0.0158052)} Corner 1126 42533 {normal=(-0.0650574 -0.997346 0.0326827)} Corner 1126 42534 {normal=(-0.0650574 -0.997346 0.0326827)} Corner 1109 42534 {normal=(-0.0620929 -0.997326 0.0385384)} Corner 1109 42535 {normal=(-0.0620929 -0.997326 0.0385384)} Corner 947 42535 {normal=(-0.074661 -0.997094 -0.0151551)} Corner 947 42536 {normal=(-0.074661 -0.997094 -0.0151551)} Corner 984 42536 {normal=(-0.0725093 -0.997243 -0.0158052)} Corner 1064 42537 {normal=(-0.0540701 -0.997649 -0.0421178)} Corner 984 42537 {normal=(-0.0725093 -0.997243 -0.0158052)} Corner 984 42538 {normal=(-0.0725093 -0.997243 -0.0158052)} Corner 947 42538 {normal=(-0.074661 -0.997094 -0.0151551)} Corner 947 42539 {normal=(-0.074661 -0.997094 -0.0151551)} Corner 1032 42539 {normal=(-0.0546351 -0.997713 -0.0397864)} Corner 1032 42540 {normal=(-0.0546351 -0.997713 -0.0397864)} Corner 1064 42540 {normal=(-0.0540701 -0.997649 -0.0421178)} Corner 1177 42541 {normal=(-0.0669848 -0.995043 -0.0735032)} Corner 1064 42541 {normal=(-0.0540701 -0.997649 -0.0421178)} Corner 1064 42542 {normal=(-0.0540701 -0.997649 -0.0421178)} Corner 1032 42542 {normal=(-0.0546351 -0.997713 -0.0397864)} Corner 1032 42543 {normal=(-0.0546351 -0.997713 -0.0397864)} Corner 1151 42543 {normal=(-0.0653146 -0.99523 -0.0724629)} Corner 1151 42544 {normal=(-0.0653146 -0.99523 -0.0724629)} Corner 1177 42544 {normal=(-0.0669848 -0.995043 -0.0735032)} Corner 1424 42545 {normal=(-0.0615318 -0.993811 -0.0924829)} Corner 1177 42545 {normal=(-0.0669848 -0.995043 -0.0735032)} Corner 1177 42546 {normal=(-0.0669848 -0.995043 -0.0735032)} Corner 1151 42546 {normal=(-0.0653146 -0.99523 -0.0724629)} Corner 1151 42547 {normal=(-0.0653146 -0.99523 -0.0724629)} Corner 1437 42547 {normal=(-0.0528383 -0.993981 -0.0959637)} Corner 1437 42548 {normal=(-0.0528383 -0.993981 -0.0959637)} Corner 1424 42548 {normal=(-0.0615318 -0.993811 -0.0924829)} Corner 1678 42549 {normal=(0.0322897 -0.9943 -0.101616)} Corner 1424 42549 {normal=(-0.0615318 -0.993811 -0.0924829)} Corner 1424 42550 {normal=(-0.0615318 -0.993811 -0.0924829)} Corner 1437 42550 {normal=(-0.0528383 -0.993981 -0.0959637)} Corner 1437 42551 {normal=(-0.0528383 -0.993981 -0.0959637)} Corner 1683 42551 {normal=(0.0137343 -0.994648 -0.102403)} Corner 1683 42552 {normal=(0.0137343 -0.994648 -0.102403)} Corner 1678 42552 {normal=(0.0322897 -0.9943 -0.101616)} Corner 3182 42553 {normal=(0.0635439 -0.99748 -0.031565)} Corner 1678 42553 {normal=(0.0322897 -0.9943 -0.101616)} Corner 1678 42554 {normal=(0.0322897 -0.9943 -0.101616)} Corner 1683 42554 {normal=(0.0137343 -0.994648 -0.102403)} Corner 1683 42555 {normal=(0.0137343 -0.994648 -0.102403)} Corner 3420 42555 {normal=(0.0602174 -0.998002 -0.019111)} Corner 3420 42556 {normal=(0.0602174 -0.998002 -0.019111)} Corner 3182 42556 {normal=(0.0635439 -0.99748 -0.031565)} Corner 3575 42557 {normal=(0.0539827 -0.998239 0.024594)} Corner 3182 42557 {normal=(0.0635439 -0.99748 -0.031565)} Corner 3182 42558 {normal=(0.0635439 -0.99748 -0.031565)} Corner 3420 42558 {normal=(0.0602174 -0.998002 -0.019111)} Corner 3420 42559 {normal=(0.0602174 -0.998002 -0.019111)} Corner 3829 42559 {normal=(0.053081 -0.998243 0.0263347)} Corner 3829 42560 {normal=(0.053081 -0.998243 0.0263347)} Corner 3575 42560 {normal=(0.0539827 -0.998239 0.024594)} Corner 1691 42561 {normal=(0.0958313 0.989168 -0.11119)} Corner 3381 42561 {normal=(0.0983334 0.992335 -0.0748517)} Corner 3381 42562 {normal=(0.0983334 0.992335 -0.0748517)} Corner 3585 42562 {normal=(0.0972167 0.992565 -0.073237)} Corner 3585 42563 {normal=(0.0972167 0.992565 -0.073237)} Corner 1696 42563 {normal=(0.0884823 0.988949 -0.118955)} Corner 1696 42564 {normal=(0.0884823 0.988949 -0.118955)} Corner 1691 42564 {normal=(0.0958313 0.989168 -0.11119)} Corner 1418 42565 {normal=(0.0287402 0.988021 -0.151619)} Corner 1691 42565 {normal=(0.0958313 0.989168 -0.11119)} Corner 1691 42566 {normal=(0.0958313 0.989168 -0.11119)} Corner 1696 42566 {normal=(0.0884823 0.988949 -0.118955)} Corner 1696 42567 {normal=(0.0884823 0.988949 -0.118955)} Corner 1432 42567 {normal=(0.0424788 0.988313 -0.146398)} Corner 1432 42568 {normal=(0.0424788 0.988313 -0.146398)} Corner 1418 42568 {normal=(0.0287402 0.988021 -0.151619)} Corner 1153 42569 {normal=(-0.0620667 0.98786 -0.142406)} Corner 1418 42569 {normal=(0.0287402 0.988021 -0.151619)} Corner 1418 42570 {normal=(0.0287402 0.988021 -0.151619)} Corner 1432 42570 {normal=(0.0424788 0.988313 -0.146398)} Corner 1432 42571 {normal=(0.0424788 0.988313 -0.146398)} Corner 1129 42571 {normal=(-0.0668201 0.987813 -0.140572)} Corner 1129 42572 {normal=(-0.0668201 0.987813 -0.140572)} Corner 1153 42572 {normal=(-0.0620667 0.98786 -0.142406)} Corner 1101 42573 {normal=(-0.101365 0.984759 0.141331)} Corner 939 42573 {normal=(-0.169808 0.984837 0.0355105)} Corner 939 42574 {normal=(-0.169808 0.984837 0.0355105)} Corner 906 42574 {normal=(-0.162525 0.985048 0.0571546)} Corner 906 42575 {normal=(-0.162525 0.985048 0.0571546)} Corner 1086 42575 {normal=(-0.0958199 0.985132 0.142599)} Corner 1086 42576 {normal=(-0.0958199 0.985132 0.142599)} Corner 1101 42576 {normal=(-0.101365 0.984759 0.141331)} Corner 3381 42577 {normal=(0.0983334 0.992335 -0.0748517)} Corner 3659 42577 {normal=(0.0733148 0.997199 -0.0148306)} Corner 3659 42578 {normal=(0.0733148 0.997199 -0.0148306)} Corner 3911 42578 {normal=(0.074939 0.996972 -0.0207781)} Corner 3911 42579 {normal=(0.074939 0.996972 -0.0207781)} Corner 3585 42579 {normal=(0.0972167 0.992565 -0.073237)} Corner 3585 42580 {normal=(0.0972167 0.992565 -0.073237)} Corner 3381 42580 {normal=(0.0983334 0.992335 -0.0748517)} Corner 1187 42581 {normal=(-0.540225 -0.151796 -0.827717)} Corner 1464 42581 {normal=(-0.11546 -0.133125 -0.984351)} Corner 1464 42582 {normal=(-0.11546 -0.133125 -0.984351)} Corner 1479 42582 {normal=(-0.0918485 -0.132482 -0.986921)} Corner 1479 42583 {normal=(-0.0918485 -0.132482 -0.986921)} Corner 1217 42583 {normal=(-0.526564 -0.15085 -0.836645)} Corner 1217 42584 {normal=(-0.526564 -0.15085 -0.836645)} Corner 1187 42584 {normal=(-0.540225 -0.151796 -0.827717)} Corner 1165 42585 {normal=(-0.534754 -0.151804 -0.83126)} Corner 1441 42585 {normal=(-0.110531 -0.132589 -0.984989)} Corner 1441 42586 {normal=(-0.110531 -0.132589 -0.984989)} Corner 1460 42586 {normal=(-0.0876081 -0.131964 -0.987375)} Corner 1460 42587 {normal=(-0.0876081 -0.131964 -0.987375)} Corner 1185 42587 {normal=(-0.52072 -0.150849 -0.840295)} Corner 1185 42588 {normal=(-0.52072 -0.150849 -0.840295)} Corner 1165 42588 {normal=(-0.534754 -0.151804 -0.83126)} Corner 1404 42589 {normal=(-0.154454 -0.145935 0.977163)} Corner 1116 42589 {normal=(-0.683983 -0.174815 0.708242)} Corner 1116 42590 {normal=(-0.683983 -0.174815 0.708242)} Corner 1139 42590 {normal=(-0.669396 -0.174189 0.722196)} Corner 1139 42591 {normal=(-0.669396 -0.174189 0.722196)} Corner 1422 42591 {normal=(-0.139682 -0.145153 0.9795)} Corner 1422 42592 {normal=(-0.139682 -0.145153 0.9795)} Corner 1404 42592 {normal=(-0.154454 -0.145935 0.977163)} Corner 1116 42593 {normal=(-0.683983 -0.174815 0.708242)} Corner 956 42593 {normal=(-0.97761 -0.190335 0.0897288)} Corner 956 42594 {normal=(-0.97761 -0.190335 0.0897288)} Corner 998 42594 {normal=(-0.976305 -0.19022 0.103172)} Corner 998 42595 {normal=(-0.976305 -0.19022 0.103172)} Corner 1139 42595 {normal=(-0.669396 -0.174189 0.722196)} Corner 1139 42596 {normal=(-0.669396 -0.174189 0.722196)} Corner 1116 42596 {normal=(-0.683983 -0.174815 0.708242)} Corner 956 42597 {normal=(-0.97761 -0.190335 0.0897288)} Corner 1033 42597 {normal=(-0.852114 -0.176284 -0.492774)} Corner 1033 42598 {normal=(-0.852114 -0.176284 -0.492774)} Corner 1066 42598 {normal=(-0.849643 -0.176078 -0.497095)} Corner 1066 42599 {normal=(-0.849643 -0.176078 -0.497095)} Corner 998 42599 {normal=(-0.976305 -0.19022 0.103172)} Corner 998 42600 {normal=(-0.976305 -0.19022 0.103172)} Corner 956 42600 {normal=(-0.97761 -0.190335 0.0897288)} Corner 1033 42601 {normal=(-0.852114 -0.176284 -0.492774)} Corner 1165 42601 {normal=(-0.534754 -0.151804 -0.83126)} Corner 1165 42602 {normal=(-0.534754 -0.151804 -0.83126)} Corner 1185 42602 {normal=(-0.52072 -0.150849 -0.840295)} Corner 1185 42603 {normal=(-0.52072 -0.150849 -0.840295)} Corner 1066 42603 {normal=(-0.849643 -0.176078 -0.497095)} Corner 1066 42604 {normal=(-0.849643 -0.176078 -0.497095)} Corner 1033 42604 {normal=(-0.852114 -0.176284 -0.492774)} Corner 1151 42605 {normal=(-0.513229 -0.237711 -0.824676)} Corner 1032 42605 {normal=(-0.848102 -0.212232 -0.485469)} Corner 1032 42606 {normal=(-0.848102 -0.212232 -0.485469)} Corner 994 42606 {normal=(-0.83286 -0.214419 -0.510263)} Corner 994 42607 {normal=(-0.83286 -0.214419 -0.510263)} Corner 1129 42607 {normal=(-0.508234 -0.237925 -0.827701)} Corner 1129 42608 {normal=(-0.508234 -0.237925 -0.827701)} Corner 1151 42608 {normal=(-0.513229 -0.237711 -0.824676)} Corner 1032 42609 {normal=(-0.848102 -0.212232 -0.485469)} Corner 947 42609 {normal=(-0.973771 -0.189491 0.125948)} Corner 947 42610 {normal=(-0.973771 -0.189491 0.125948)} Corner 906 42610 {normal=(-0.976651 -0.190122 0.100034)} Corner 906 42611 {normal=(-0.976651 -0.190122 0.100034)} Corner 994 42611 {normal=(-0.83286 -0.214419 -0.510263)} Corner 994 42612 {normal=(-0.83286 -0.214419 -0.510263)} Corner 1032 42612 {normal=(-0.848102 -0.212232 -0.485469)} Corner 947 42613 {normal=(-0.973771 -0.189491 0.125948)} Corner 1109 42613 {normal=(-0.661075 -0.169895 0.730832)} Corner 1109 42614 {normal=(-0.661075 -0.169895 0.730832)} Corner 1086 42614 {normal=(-0.676415 -0.170346 0.716551)} Corner 1086 42615 {normal=(-0.676415 -0.170346 0.716551)} Corner 906 42615 {normal=(-0.976651 -0.190122 0.100034)} Corner 906 42616 {normal=(-0.976651 -0.190122 0.100034)} Corner 947 42616 {normal=(-0.973771 -0.189491 0.125948)} Corner 1109 42617 {normal=(-0.661075 -0.169895 0.730832)} Corner 1401 42617 {normal=(-0.143713 -0.145342 0.978888)} Corner 1401 42618 {normal=(-0.143713 -0.145342 0.978888)} Corner 1382 42618 {normal=(-0.158136 -0.146102 0.976549)} Corner 1382 42619 {normal=(-0.158136 -0.146102 0.976549)} Corner 1086 42619 {normal=(-0.676415 -0.170346 0.716551)} Corner 1086 42620 {normal=(-0.676415 -0.170346 0.716551)} Corner 1109 42620 {normal=(-0.661075 -0.169895 0.730832)} Corner 1422 42621 {normal=(-0.139682 -0.145153 0.9795)} Corner 1736 42621 {normal=(0.367596 -0.099495 0.924648)} Corner 1736 42622 {normal=(0.367596 -0.099495 0.924648)} Corner 1711 42622 {normal=(0.344011 -0.102476 0.933357)} Corner 1711 42623 {normal=(0.344011 -0.102476 0.933357)} Corner 1404 42623 {normal=(-0.154454 -0.145935 0.977163)} Corner 1404 42624 {normal=(-0.154454 -0.145935 0.977163)} Corner 1422 42624 {normal=(-0.139682 -0.145153 0.9795)} Corner 1736 42625 {normal=(0.367596 -0.099495 0.924648)} Corner 3317 42625 {normal=(0.825323 -0.052926 0.562174)} Corner 3317 42626 {normal=(0.825323 -0.052926 0.562174)} Corner 3288 42626 {normal=(0.806427 -0.0546578 0.588802)} Corner 3288 42627 {normal=(0.806427 -0.0546578 0.588802)} Corner 1711 42627 {normal=(0.344011 -0.102476 0.933357)} Corner 1711 42628 {normal=(0.344011 -0.102476 0.933357)} Corner 1736 42628 {normal=(0.367596 -0.099495 0.924648)} Corner 3317 42629 {normal=(0.825323 -0.052926 0.562174)} Corner 3707 42629 {normal=(0.997081 -0.0668073 -0.0369678)} Corner 3707 42630 {normal=(0.997081 -0.0668073 -0.0369678)} Corner 3777 42630 {normal=(0.997572 -0.0654858 -0.0237164)} Corner 3777 42631 {normal=(0.997572 -0.0654858 -0.0237164)} Corner 3288 42631 {normal=(0.806427 -0.0546578 0.588802)} Corner 3288 42632 {normal=(0.806427 -0.0546578 0.588802)} Corner 3317 42632 {normal=(0.825323 -0.052926 0.562174)} Corner 3707 42633 {normal=(0.997081 -0.0668073 -0.0369678)} Corner 3179 42633 {normal=(0.819643 -0.113336 -0.561551)} Corner 3179 42634 {normal=(0.819643 -0.113336 -0.561551)} Corner 3341 42634 {normal=(0.827383 -0.112459 -0.550264)} Corner 3341 42635 {normal=(0.827383 -0.112459 -0.550264)} Corner 3777 42635 {normal=(0.997572 -0.0654858 -0.0237164)} Corner 3777 42636 {normal=(0.997572 -0.0654858 -0.0237164)} Corner 3707 42636 {normal=(0.997081 -0.0668073 -0.0369678)} Corner 3179 42637 {normal=(0.819643 -0.113336 -0.561551)} Corner 1664 42637 {normal=(0.414419 -0.129161 -0.900874)} Corner 1664 42638 {normal=(0.414419 -0.129161 -0.900874)} Corner 1680 42638 {normal=(0.410626 -0.129138 -0.902613)} Corner 1680 42639 {normal=(0.410626 -0.129138 -0.902613)} Corner 3341 42639 {normal=(0.827383 -0.112459 -0.550264)} Corner 3341 42640 {normal=(0.827383 -0.112459 -0.550264)} Corner 3179 42640 {normal=(0.819643 -0.113336 -0.561551)} Corner 1664 42641 {normal=(0.414419 -0.129161 -0.900874)} Corner 1460 42641 {normal=(-0.0876081 -0.131964 -0.987375)} Corner 1460 42642 {normal=(-0.0876081 -0.131964 -0.987375)} Corner 1441 42642 {normal=(-0.110531 -0.132589 -0.984989)} Corner 1441 42643 {normal=(-0.110531 -0.132589 -0.984989)} Corner 1680 42643 {normal=(0.410626 -0.129138 -0.902613)} Corner 1680 42644 {normal=(0.410626 -0.129138 -0.902613)} Corner 1664 42644 {normal=(0.414419 -0.129161 -0.900874)} Corner 1464 42645 {normal=(-0.11546 -0.133125 -0.984351)} Corner 1661 42645 {normal=(0.407364 -0.12871 -0.904151)} Corner 1661 42646 {normal=(0.407364 -0.12871 -0.904151)} Corner 1652 42646 {normal=(0.410827 -0.12873 -0.902579)} Corner 1652 42647 {normal=(0.410827 -0.12873 -0.902579)} Corner 1479 42647 {normal=(-0.0918485 -0.132482 -0.986921)} Corner 1479 42648 {normal=(-0.0918485 -0.132482 -0.986921)} Corner 1464 42648 {normal=(-0.11546 -0.133125 -0.984351)} Corner 1661 42649 {normal=(0.407364 -0.12871 -0.904151)} Corner 3146 42649 {normal=(0.796775 -0.110301 -0.594124)} Corner 3146 42650 {normal=(0.796775 -0.110301 -0.594124)} Corner 2905 42650 {normal=(0.78865 -0.11136 -0.604673)} Corner 2905 42651 {normal=(0.78865 -0.11136 -0.604673)} Corner 1652 42651 {normal=(0.410827 -0.12873 -0.902579)} Corner 1652 42652 {normal=(0.410827 -0.12873 -0.902579)} Corner 1661 42652 {normal=(0.407364 -0.12871 -0.904151)} Corner 3146 42653 {normal=(0.796775 -0.110301 -0.594124)} Corner 3678 42653 {normal=(0.990214 -0.0617275 -0.125162)} Corner 3678 42654 {normal=(0.990214 -0.0617275 -0.125162)} Corner 3587 42654 {normal=(0.987937 -0.0634773 -0.141246)} Corner 3587 42655 {normal=(0.987937 -0.0634773 -0.141246)} Corner 2905 42655 {normal=(0.78865 -0.11136 -0.604673)} Corner 2905 42656 {normal=(0.78865 -0.11136 -0.604673)} Corner 3146 42656 {normal=(0.796775 -0.110301 -0.594124)} Corner 3678 42657 {normal=(0.990214 -0.0617275 -0.125162)} Corner 3399 42657 {normal=(0.833485 -0.0539909 0.549898)} Corner 3399 42658 {normal=(0.833485 -0.0539909 0.549898)} Corner 3422 42658 {normal=(0.854555 -0.0519244 0.516759)} Corner 3422 42659 {normal=(0.854555 -0.0519244 0.516759)} Corner 3587 42659 {normal=(0.987937 -0.0634773 -0.141246)} Corner 3587 42660 {normal=(0.987937 -0.0634773 -0.141246)} Corner 3678 42660 {normal=(0.990214 -0.0617275 -0.125162)} Corner 3399 42661 {normal=(0.833485 -0.0539909 0.549898)} Corner 1718 42661 {normal=(0.330905 -0.103654 0.937954)} Corner 1718 42662 {normal=(0.330905 -0.103654 0.937954)} Corner 1749 42662 {normal=(0.353673 -0.100819 0.92992)} Corner 1749 42663 {normal=(0.353673 -0.100819 0.92992)} Corner 3422 42663 {normal=(0.854555 -0.0519244 0.516759)} Corner 3422 42664 {normal=(0.854555 -0.0519244 0.516759)} Corner 3399 42664 {normal=(0.833485 -0.0539909 0.549898)} Corner 1718 42665 {normal=(0.330905 -0.103654 0.937954)} Corner 1429 42665 {normal=(-0.162148 -0.146138 0.975885)} Corner 1429 42666 {normal=(-0.162148 -0.146138 0.975885)} Corner 1463 42666 {normal=(-0.148375 -0.145419 0.978181)} Corner 1463 42667 {normal=(-0.148375 -0.145419 0.978181)} Corner 1749 42667 {normal=(0.353673 -0.100819 0.92992)} Corner 1749 42668 {normal=(0.353673 -0.100819 0.92992)} Corner 1718 42668 {normal=(0.330905 -0.103654 0.937954)} Corner 1683 42669 {normal=(0.439117 -0.199548 -0.875989)} Corner 1437 42669 {normal=(-0.0877167 -0.238441 -0.967188)} Corner 1437 42670 {normal=(-0.0877167 -0.238441 -0.967188)} Corner 1432 42670 {normal=(-0.10057 -0.238905 -0.965821)} Corner 1432 42671 {normal=(-0.10057 -0.238905 -0.965821)} Corner 1696 42671 {normal=(0.425673 -0.201149 -0.882237)} Corner 1696 42672 {normal=(0.425673 -0.201149 -0.882237)} Corner 1683 42672 {normal=(0.439117 -0.199548 -0.875989)} Corner 1437 42673 {normal=(-0.0877167 -0.238441 -0.967188)} Corner 1151 42673 {normal=(-0.513229 -0.237711 -0.824676)} Corner 1151 42674 {normal=(-0.513229 -0.237711 -0.824676)} Corner 1129 42674 {normal=(-0.508234 -0.237925 -0.827701)} Corner 1129 42675 {normal=(-0.508234 -0.237925 -0.827701)} Corner 1432 42675 {normal=(-0.10057 -0.238905 -0.965821)} Corner 1432 42676 {normal=(-0.10057 -0.238905 -0.965821)} Corner 1437 42676 {normal=(-0.0877167 -0.238441 -0.967188)} Corner 1217 42677 {normal=(-0.526564 -0.15085 -0.836645)} Corner 1103 42677 {normal=(-0.854815 -0.176816 -0.48788)} Corner 1103 42678 {normal=(-0.854815 -0.176816 -0.48788)} Corner 1076 42678 {normal=(-0.857383 -0.177031 -0.483274)} Corner 1076 42679 {normal=(-0.857383 -0.177031 -0.483274)} Corner 1187 42679 {normal=(-0.540225 -0.151796 -0.827717)} Corner 1187 42680 {normal=(-0.540225 -0.151796 -0.827717)} Corner 1217 42680 {normal=(-0.526564 -0.15085 -0.836645)} Corner 1103 42681 {normal=(-0.854815 -0.176816 -0.48788)} Corner 1054 42681 {normal=(-0.974624 -0.189857 0.118585)} Corner 1054 42682 {normal=(-0.974624 -0.189857 0.118585)} Corner 1011 42682 {normal=(-0.97635 -0.190004 0.103147)} Corner 1011 42683 {normal=(-0.97635 -0.190004 0.103147)} Corner 1076 42683 {normal=(-0.857383 -0.177031 -0.483274)} Corner 1076 42684 {normal=(-0.857383 -0.177031 -0.483274)} Corner 1103 42684 {normal=(-0.854815 -0.176816 -0.48788)} Corner 1054 42685 {normal=(-0.974624 -0.189857 0.118585)} Corner 1180 42685 {normal=(-0.66555 -0.173879 0.725816)} Corner 1180 42686 {normal=(-0.66555 -0.173879 0.725816)} Corner 1146 42686 {normal=(-0.680891 -0.174538 0.711283)} Corner 1146 42687 {normal=(-0.680891 -0.174538 0.711283)} Corner 1011 42687 {normal=(-0.97635 -0.190004 0.103147)} Corner 1011 42688 {normal=(-0.97635 -0.190004 0.103147)} Corner 1054 42688 {normal=(-0.974624 -0.189857 0.118585)} Corner 1180 42689 {normal=(-0.66555 -0.173879 0.725816)} Corner 1463 42689 {normal=(-0.148375 -0.145419 0.978181)} Corner 1463 42690 {normal=(-0.148375 -0.145419 0.978181)} Corner 1429 42690 {normal=(-0.162148 -0.146138 0.975885)} Corner 1429 42691 {normal=(-0.162148 -0.146138 0.975885)} Corner 1146 42691 {normal=(-0.680891 -0.174538 0.711283)} Corner 1146 42692 {normal=(-0.680891 -0.174538 0.711283)} Corner 1180 42692 {normal=(-0.66555 -0.173879 0.725816)} Corner 1401 42693 {normal=(-0.143713 -0.145342 0.978888)} Corner 1701 42693 {normal=(0.381745 -0.0985828 0.918995)} Corner 1701 42694 {normal=(0.381745 -0.0985828 0.918995)} Corner 1690 42694 {normal=(0.356964 -0.101677 0.928568)} Corner 1690 42695 {normal=(0.356964 -0.101677 0.928568)} Corner 1382 42695 {normal=(-0.158136 -0.146102 0.976549)} Corner 1382 42696 {normal=(-0.158136 -0.146102 0.976549)} Corner 1401 42696 {normal=(-0.143713 -0.145342 0.978888)} Corner 1701 42697 {normal=(0.381745 -0.0985828 0.918995)} Corner 3334 42697 {normal=(0.821084 -0.051667 0.568465)} Corner 3334 42698 {normal=(0.821084 -0.051667 0.568465)} Corner 3304 42698 {normal=(0.804192 -0.0531573 0.591987)} Corner 3304 42699 {normal=(0.804192 -0.0531573 0.591987)} Corner 1690 42699 {normal=(0.356964 -0.101677 0.928568)} Corner 1690 42700 {normal=(0.356964 -0.101677 0.928568)} Corner 1701 42700 {normal=(0.381745 -0.0985828 0.918995)} Corner 3334 42701 {normal=(0.821084 -0.051667 0.568465)} Corner 3829 42701 {normal=(0.997054 -0.0676644 0.0361106)} Corner 3829 42702 {normal=(0.997054 -0.0676644 0.0361106)} Corner 3911 42702 {normal=(0.996647 -0.0664181 0.0477801)} Corner 3911 42703 {normal=(0.996647 -0.0664181 0.0477801)} Corner 3304 42703 {normal=(0.804192 -0.0531573 0.591987)} Corner 3304 42704 {normal=(0.804192 -0.0531573 0.591987)} Corner 3334 42704 {normal=(0.821084 -0.051667 0.568465)} Corner 3829 42705 {normal=(0.997054 -0.0676644 0.0361106)} Corner 3420 42705 {normal=(0.855577 -0.132652 -0.500392)} Corner 3420 42706 {normal=(0.855577 -0.132652 -0.500392)} Corner 3585 42706 {normal=(0.861604 -0.131276 -0.490312)} Corner 3585 42707 {normal=(0.861604 -0.131276 -0.490312)} Corner 3911 42707 {normal=(0.996647 -0.0664181 0.0477801)} Corner 3911 42708 {normal=(0.996647 -0.0664181 0.0477801)} Corner 3829 42708 {normal=(0.997054 -0.0676644 0.0361106)} Corner 3420 42709 {normal=(0.855577 -0.132652 -0.500392)} Corner 1683 42709 {normal=(0.439117 -0.199548 -0.875989)} Corner 1683 42710 {normal=(0.439117 -0.199548 -0.875989)} Corner 1696 42710 {normal=(0.425673 -0.201149 -0.882237)} Corner 1696 42711 {normal=(0.425673 -0.201149 -0.882237)} Corner 3585 42711 {normal=(0.861604 -0.131276 -0.490312)} Corner 3585 42712 {normal=(0.861604 -0.131276 -0.490312)} Corner 3420 42712 {normal=(0.855577 -0.132652 -0.500392)} ================================================ FILE: models/gameguy1k.m ================================================ # (Timing on cpu=x86-L6-R0806 host=BUTTERCUP) # (_goto: 0.02) Vertex 1 -14.3756 -3.86579 -3.23286 Vertex 2 -13.2439 -3.91144 -0.885273 Vertex 3 -11.38 -13.9645 0.0900178 Vertex 4 -8.91671 1.21805 -2.35035 {wid=139 normal=(0.877147 -0.283488 0.387617)} Vertex 5 -4.47238 -40.1122 -5.88958 Vertex 6 -8.85841 -27.1986 -2.76198 Vertex 7 -6.78819 -40.8417 -4.09376 Vertex 8 -4.67008 -40.3637 -0.63966 Vertex 9 -3.53316 12.8103 -5.35875 Vertex 10 -3.02809 20.0013 0.844792 Vertex 11 -2.82287 18.6263 -1.60159 Vertex 12 -3.01367 17.7145 1.2887 {wid=12 normal=(-0.977778 -0.144486 0.151904)} Vertex 13 -2.73716 19.0044 1.75517 {wid=13 normal=(-0.980836 -0.136368 -0.139155)} Vertex 14 -0.469166 17.8877 2.18496 {wid=1091 normal=(0.35939 -0.916933 0.173412)} Vertex 15 -0.107195 -13.4529 -1.25434 Vertex 16 0.553317 17.8158 2.13775 {wid=1090 normal=(-0.257664 -0.95258 0.161861)} Vertex 17 -0.423777 22.3887 -4.40757 {wid=17 normal=(0 0.826484 -0.562961)} Vertex 18 -0.519603 19.5374 2.55552 {wid=1205 normal=(-0.926347 0.213606 0.310249)} Vertex 19 -0.449372 22.1147 -3.77166 Vertex 20 -0.265169 20.7487 2.59592 {wid=20 normal=(0.49728 0.834592 0.237002)} Vertex 21 0.465971 22.1166 -3.57536 Vertex 22 3.09147 21.7398 -2.01515 Vertex 23 1.58847 20.9125 2.06635 {wid=23 normal=(0.371064 0.928418 0.0187263)} Vertex 24 2.88241 -40.9391 -2.90416 Vertex 25 4.67776 -40.3574 -0.640785 Vertex 26 3.60592 -12.1766 -6.42527 Vertex 27 6.33745 -41.0823 -4.36244 Vertex 28 5.83857 -3.68003 -2.3413 Vertex 29 9.01707 -45.1664 1.25431 Vertex 30 10.4942 -4.21631 -6.03063 Vertex 31 10.5201 -11.0639 -0.283056 Vertex 32 11.1957 -11.88 -4.10927 Vertex 33 12.2469 6.70295 -4.09403 {wid=33 normal=(0.913472 0.125108 -0.387192)} Vertex 34 13.2817 -3.92108 -1.13676 Vertex 35 12.7806 -10.7257 -0.0248846 Vertex 36 1.60227 -25.8483 -3.68468 Vertex 37 3.19915 -19.9026 -8.04036 Vertex 38 -5.74414 -9.09098 3.62068 {wid=58 normal=(-0.446804 0.0578372 0.89276)} Vertex 39 3.71204 4.51603 -5.07813 Vertex 40 1.59413 -2.23107 4.59981 Vertex 41 4.95612 13.3753 1.50445 Vertex 42 0.0255721 -11.5215 -6.19993 Vertex 43 -7.03703 -25.7952 -0.958151 Vertex 44 -7.7972 -25.6443 -5.36473 Vertex 45 -3.20875 -19.9696 -8.04827 Vertex 46 8.71316 -23.8758 -3.30307 Vertex 47 8.43853 10.9651 1.19992 Vertex 48 6.70002 -27.4077 -5.98977 Vertex 49 2.28712 -27.5692 -4.95154 Vertex 50 2.55963 -27.5138 -1.27044 Vertex 51 -6.15246 -3.6521 0.852204 Vertex 52 -5.2093 -26.3061 -0.185329 Vertex 53 -3.21772 -27.7598 -1.23922 Vertex 54 4.65216 -3.68285 3.03718 Vertex 55 -5.50245 8.61698 -5.8071 Vertex 56 6.79197 4.43467 2.80853 Vertex 57 -9.09049 10.3008 -6.11475 {wid=4 normal=(-0.213777 0.236735 -0.947763)} Vertex 58 11.861 -15.8749 -1.32812 Vertex 59 12.6217 11.3726 -1.77157 {wid=34 normal=(0.88911 0.424404 0.17136)} Vertex 60 3.76464 -26.6899 -0.624774 Vertex 61 3.08744 -41.76 -2.32265 Vertex 62 -10.9788 -11.919 -4.13411 Vertex 63 0.431407 -21.5928 -3.49675 Vertex 64 -13.0277 -11.8973 -4.17459 Vertex 65 -7.99633 -27.441 -3.1367 Vertex 66 -3.39355 -27.5916 -0.470344 Vertex 67 -5.61097 -27.4824 -6.45225 Vertex 68 -8.48785 -21.8375 -6.49986 Vertex 69 6.84195 -33.4223 -5.75951 Vertex 70 6.01745 -20.9654 2.19932 Vertex 71 -4.7936 14.2461 -4.04019 Vertex 72 -4.88496 -45.1493 1.94048 Vertex 73 7.06733 -12.9287 -4.09001 Vertex 74 -9.34854 -19.6317 -7.22713 Vertex 75 4.49077 -45.147 2.16304 Vertex 76 -6.92067 6.74884 3.92207 {wid=92 normal=(-0.676634 -0.0723808 0.732753)} Vertex 77 2.95397 18.4084 1.40374 {wid=22 normal=(0.977796 -0.0396663 0.205772)} Vertex 78 2.76088 16.1922 0.291452 {wid=202 normal=(0.950049 -0.308335 0.0483486)} Vertex 79 8.21877 -22.1618 -5.85489 Vertex 80 -8.76955 -45.1057 1.21356 Vertex 81 -4.63867 -42.7311 2.14056 Vertex 82 -1.94656 -24.0149 -1.47212 Vertex 83 -5.75305 -22.5081 0.458318 Vertex 84 7.97193 -42.45 0.670428 Vertex 85 4.83439 13.988 -4.23019 Vertex 86 3.31231 8.03903 -6.21989 {wid=26 normal=(0.157965 -0.111427 -0.981138)} Vertex 87 5.9943 -25.7229 -6.96552 Vertex 88 0.797721 -20.1169 -0.22535 {wid=236 normal=(-0.82338 -0.282095 0.49241)} Vertex 89 1.6087 -31.7839 -2.58458 Vertex 90 -1.55881 -22.2687 -3.26737 Vertex 91 6.18661 -0.845176 -2.61884 Vertex 92 1.6151 -0.836443 4.40002 Vertex 93 -6.53572 -34.4405 -5.21055 Vertex 94 -2.57878 -34.4995 -4.28208 Vertex 95 2.00812 13.314 -3.08167 Vertex 96 -2.42918 11.7076 2.08088 Vertex 97 -2.42366 7.6682 5.20465 Vertex 98 3.41875 10.0465 3.09367 Vertex 99 -11.739 -15.3713 -0.352731 Vertex 100 5.72929 -42.238 2.45997 Vertex 101 -7.29942 -12.8749 -4.04507 Vertex 102 -3.15595 0.697216 -4.2926 Vertex 103 -6.48659 -45.1302 -3.77581 Vertex 104 -4.97235 -26.0512 -0.433961 Vertex 105 -6.61742 -33.3746 -5.7795 Vertex 106 -7.89975 -42.3459 0.693461 Vertex 107 -2.5893 -40.3255 -3.87004 Vertex 108 -5.37622 -34.4109 -1.22053 Vertex 109 -0.737907 -20.1444 -0.23733 {wid=294 normal=(0.82338 -0.282095 0.49241)} Vertex 110 7.5345 -34.4759 -4.56786 Vertex 111 6.76447 -24.0753 -0.461546 Vertex 112 5.48115 -34.372 -1.29755 Vertex 113 10.9132 -21.3063 -2.75801 Vertex 114 7.74883 14.1504 -2.16018 Vertex 115 6.17288 4.436 -1.70674 Vertex 116 -1.50669 -13.4105 2.79943 Vertex 117 3.06274 -9.32939 3.70347 Vertex 118 2.65081 -34.4506 -2.8018 Vertex 119 6.51399 -45.1258 -3.68446 Vertex 120 3.18591 -40.5901 -4.72335 Vertex 121 -1.68174 0.58044 4.57488 Vertex 122 -10.9643 -21.0857 -3.50677 Vertex 123 11.4039 -15.9248 -2.3348 Vertex 124 -11.261 -15.6566 -2.61278 Vertex 125 13.0673 -15.2295 0.0786137 Vertex 126 -4.47765 -45.2508 -6.1586 Vertex 127 6.63577 12.4643 0.0323712 {wid=351 normal=(-0.425051 0.718633 0.550361)} Vertex 128 -8.79098 -42.9974 4.66667 Vertex 129 8.80888 -43.0476 4.53862 Vertex 130 -3.09614 -3.66914 3.53702 Vertex 131 -6.15941 10.5971 0.702008 {wid=366 normal=(0.667973 0.197744 0.717432)} Vertex 132 8.04161 -10.8871 -0.233885 Vertex 133 -3.66187 4.50165 -4.77031 Vertex 134 -7.08084 -40.6214 -2.68282 Vertex 135 3.666 -24.1057 -6.4596 Vertex 136 -7.9537 -10.9145 -0.238715 Vertex 137 2.47491 17.762 -1.40003 Vertex 138 -6.02166 -19.8563 -8.95316 Vertex 139 -0.463176 14.0194 1.18818 {wid=378 normal=(-0.036991 -0.980617 -0.19241)} Vertex 140 2.8887 0.585479 -4.13139 Vertex 141 -6.59962 0.644756 -0.590611 Vertex 142 -12.7744 -14.8201 0.996438 Vertex 143 -3.09106 13.0124 -4.73222 Vertex 144 2.4435 13.5703 -3.67427 Vertex 145 -5.531 14.2679 0.473959 Vertex 146 -3.42512 10.0537 3.11058 Vertex 147 7.72529 12.113 -5.65334 {wid=399 normal=(-0.225515 0.562587 -0.795386)} Vertex 148 1.59209 -3.67108 4.15208 Vertex 149 -7.53631 6.94121 0.899117 Vertex 150 5.86885 -2.25298 -2.35069 Vertex 151 -6.24203 -2.2286 -2.27831 Vertex 152 5.93429 -19.9993 -9.07709 Vertex 153 5.7261 -25.8031 -0.296686 Vertex 154 8.47914 -25.6395 -3.11499 Vertex 155 4.47122 -45.1719 -6.24002 Vertex 156 -1.17173 17.1573 -2.55651 Vertex 157 3.11084 20.2514 -0.691003 {wid=203 normal=(0.735789 0.656285 -0.167045)} Vertex 158 2.66361 15.7842 -2.10565 Vertex 159 -10.8785 -10.7338 -0.0840734 Vertex 160 -8.53912 11.1171 1.53787 Vertex 161 -6.28373 4.4227 -1.75889 Vertex 162 -0.506383 16.7541 -4.57973 Vertex 163 -5.89251 -23.9683 -7.05218 Vertex 164 -2.70621 -25.7568 -0.815913 Vertex 165 -5.57892 -24.0322 -0.214216 Vertex 166 -12.3933 11.4951 -1.44295 {wid=441 normal=(-0.874508 0.457513 0.160991)} Vertex 167 -2.61229 15.76 -0.392426 {wid=442 normal=(-0.9812 -0.164494 -0.100941)} Vertex 168 -1.60633 13.6167 -3.61937 Vertex 169 -2.25346 17.3066 3.25616 {wid=447 normal=(-0.471947 -0.375211 0.797799)} Vertex 170 -8.98303 -23.9008 -3.37477 Vertex 171 -0.0267003 18.9728 4.23535 {wid=448 normal=(0.106452 0.564584 0.818482)} Vertex 172 5.63897 -2.23954 2.23951 Vertex 173 4.8538 0.597422 3.18119 Vertex 174 9.44212 -19.5581 -7.25077 Vertex 175 0.185489 17.0108 4.04399 Vertex 176 -0.68781 18.2147 4.0791 {wid=461 normal=(-0.835918 0.343169 0.428343)} Vertex 177 5.39274 14.8879 -1.82191 Vertex 178 1.26906 6.64179 4.95521 Vertex 179 2.43591 11.6988 2.04618 Vertex 180 -1.66747 -3.72614 4.41861 Vertex 181 6.30821 6.43149 -3.23734 Vertex 182 -2.17404 -22.3054 -1.53296 Vertex 183 8.60454 -27.4104 -3.2481 Vertex 184 2.00335 -22.3393 -1.46902 Vertex 185 -0.0428739 15.1913 -3.76675 Vertex 186 1.56421 -13.1418 -4.99122 Vertex 187 3.53885 -22.345 -6.69216 Vertex 188 5.34759 -41.3062 -5.63136 Vertex 189 -3.5756 -22.3378 -6.99728 Vertex 190 7.29627 -45.1703 6.1637 Vertex 191 -11.9469 -15.6676 0.0868933 Vertex 192 -10.3493 -16.7385 -0.883825 Vertex 193 9.06301 -22.1404 -2.9656 Vertex 194 0.0671864 -11.3429 3.00671 Vertex 195 -6.07416 -0.858909 -2.69275 Vertex 196 -5.2596 -0.856364 3.25982 Vertex 197 -0.344442 16.0371 4.0537 Vertex 198 0.48701 18.4413 4.7826 {wid=516 normal=(0.657742 0.387261 0.646068)} Vertex 199 6.46457 0.601901 -0.615321 Vertex 200 -3.62678 -12.2026 -6.40516 Vertex 201 -1.57007 -13.1388 -5.00301 Vertex 202 11.2086 -13.902 -0.0182479 Vertex 203 9.9777 -13.4804 0.0594021 Vertex 204 10.4507 -12.6906 0.890886 Vertex 205 5.75373 14.98 -1.83337 Vertex 206 2.40959 14.9223 -1.60803 Vertex 207 -4.7141 -45.113 3.03504 Vertex 208 -7.67643 13.3366 -2.10941 Vertex 209 -3.01154 -3.63053 -4.18981 Vertex 210 -1.61328 -3.67005 4.45599 Vertex 211 7.80167 3.8649 -2.87842 {wid=553 normal=(-0.943211 -0.235423 0.234371)} Vertex 212 -2.46078 23.434 -0.915151 {wid=554 normal=(-0.702746 0.672938 -0.230874)} Vertex 213 -9.96955 -13.6985 0.0673184 Vertex 214 -11.4245 -13.4966 0.981417 Vertex 215 9.7391 -14.766 1.69886 Vertex 216 10.4198 -15.0698 0.800294 Vertex 217 -2.7417 20.51 2.12796 Vertex 218 -0.297685 22.9223 -3.22114 Vertex 219 -9.13924 -45.1543 3.89635 Vertex 220 0.788815 19.1476 3.47622 {wid=585 normal=(0.170396 0.230385 0.958065)} Vertex 221 9.24968 -45.0265 3.91617 Vertex 222 -6.83743 -21.6209 1.48569 Vertex 223 -8.7786 -22.1165 -3.14273 Vertex 224 10.4885 -15.6505 -0.165509 Vertex 225 3.10144 17.7064 0.687963 {wid=600 normal=(0.7791 -0.452265 0.43412)} Vertex 226 10.9385 -15.8433 1.10084 Vertex 227 5.76742 -23.8845 -6.51121 Vertex 228 7.96545 -24.0598 -5.19847 Vertex 229 -3.4344 -33.6756 -6.30944 Vertex 230 11.4452 -4.11524 -0.417455 Vertex 231 -9.86212 -14.7495 0.594899 Vertex 232 -2.42567 14.0404 -3.7514 Vertex 233 -2.42638 14.7589 -1.74606 Vertex 234 -12.5394 -15.943 -3.2349 Vertex 235 -3.20845 -41.3997 -2.19886 Vertex 236 -3.12005 18.2288 0.477592 Vertex 237 12.8682 -15.3864 -1.97822 Vertex 238 -5.54572 14.9932 -1.81168 Vertex 239 -5.28082 12.7677 1.23061 Vertex 240 -10.2534 -15.1959 1.54779 Vertex 241 -9.83152 7.47547 0.998434 {wid=2 normal=(-0.194839 -0.167363 0.966451)} Vertex 242 9.6596 -15.2593 -0.377026 Vertex 243 -6.14921 6.34786 -3.32253 Vertex 244 10.0743 -15.45 -0.930346 Vertex 245 10.7828 -16.5664 -1.13941 Vertex 246 10.4032 -15.6136 -1.56439 Vertex 247 10.337 -16.5185 0.035071 Vertex 248 10.3911 -16.7625 -0.840373 Vertex 249 -9.67045 -15.2557 -0.381187 Vertex 250 -10.4667 -4.18221 -5.95056 Vertex 251 6.38373 -17.8161 3.2247 Vertex 252 6.83854 -21.6283 1.52196 Vertex 253 -8.79661 -4.34314 -3.10476 Vertex 254 6.47291 0.497568 -2.55739 Vertex 255 8.44782 -26.7392 -3.04318 Vertex 256 -0.805906 19.0986 3.54303 {wid=706 normal=(-0.27945 0.38993 0.877418)} Vertex 257 -5.99592 14.9067 -1.78669 Vertex 258 1.03181 22.2243 -4.88045 Vertex 259 -1.24761 24.0838 -5.01933 {wid=712 normal=(-0.571362 0.785019 -0.239356)} Vertex 260 0.497667 19.7347 3.87302 Vertex 261 6.75785 -41.313 -3.59836 Vertex 262 1.55865 15.2424 -3.07351 Vertex 263 -11.2668 -15.6924 -3.1959 Vertex 264 6.2067 11.8692 -5.23609 Vertex 265 5.90355 9.28167 -5.45022 Vertex 266 7.8395 7.9292 1.61577 Vertex 267 6.26645 5.84336 -2.28328 Vertex 268 7.72849 7.39629 0.492568 Vertex 269 8.15777 9.2822 1.27036 Vertex 270 -6.4042 0.518582 -2.52912 Vertex 271 -4.49816 0.56696 -3.76974 Vertex 272 9.86774 4.45845 0.378865 {wid=745 normal=(-0.0486965 -0.274045 0.960482)} Vertex 273 2.61794 7.48456 5.33562 Vertex 274 4.75219 13.1103 1.32747 Vertex 275 5.76402 14.0761 0.388149 Vertex 276 -2.6385 -41.0544 -4.15349 Vertex 277 -10.8804 -15.8958 1.09368 Vertex 278 -10.4932 -16.7504 0.756744 Vertex 279 -6.10843 -17.9846 3.23821 Vertex 280 11.1671 -15.697 -3.29266 Vertex 281 10.6988 -16.7401 -2.51587 Vertex 282 11.0226 -15.7049 -2.09582 Vertex 283 -2.22753 0.58253 -4.67741 Vertex 284 4.45101 0.576486 -3.76615 Vertex 285 -1.53248 21.0373 3.94259 Vertex 286 3.14715 20.374 0.281674 Vertex 287 0.666898 -2.22909 -5.07337 Vertex 288 -3.20942 20.3826 -0.519061 Vertex 289 3.37912 19.3735 -1.38891 {wid=801 normal=(0.719157 0.0321009 -0.694105)} Vertex 290 -9.15441 -22.1505 -4.96108 Vertex 291 -5.91452 0.583607 1.46832 Vertex 292 -4.75134 0.615275 2.8742 Vertex 293 -10.7998 -15.6223 -1.99221 Vertex 294 1.32789 17.2138 -2.3369 Vertex 295 1.35602 -24.0283 -3.27478 Vertex 296 2.73045 20.6664 2.21294 Vertex 297 2.89495 -45.1392 -3.34183 Vertex 298 4.76837e-007 -13.0514 -4.14164 Vertex 299 3.94848 -33.6744 -6.36867 Vertex 300 -3.8254 -25.857 -6.11806 Vertex 301 7.40407 -27.5338 -1.58272 Vertex 302 5.52771 -42.0502 1.69122 Vertex 303 1.60348 -22.2673 -3.26493 Vertex 304 2.00594 7.82099 4.60025 Vertex 305 -3.16275 -45.1691 -3.43199 Vertex 306 -2.87529 17.8751 -0.732915 {wid=853 normal=(-0.528729 -0.667326 -0.524521)} Vertex 307 0.649269 17.2509 -2.68754 Vertex 308 1.94641 17.4604 -1.92872 Vertex 309 -2.4961 17.6403 -1.28536 Vertex 310 -10.8167 -15.6511 -1.151 Vertex 311 -6.57619 12.8345 -4.75827 Vertex 312 -5.99647 10.1211 -5.50901 Vertex 313 10.5233 -16.7412 0.743841 Vertex 314 12.686 -14.821 0.997522 Vertex 315 -0.369117 15.6815 -6.06674 {wid=876 normal=(-0.23267 -0.187831 -0.954244)} Vertex 316 -0.998756 19.9313 3.97706 Vertex 317 -2.66303 18.5675 3.1131 {wid=881 normal=(-0.766587 0.135935 0.627587)} Vertex 318 2.46237 16.3795 2.67145 {wid=882 normal=(0.921417 -0.227391 0.315095)} Vertex 319 0.420899 13.3324 1.05624 {wid=883 normal=(0.103639 -0.45632 0.883759)} Vertex 320 1.14255 16.559 -4.82995 Vertex 321 4.62733 -45.1553 3.0071 Vertex 322 6.125 6.82661 -3.18355 Vertex 323 6.75103 6.53033 -1.44494 Vertex 324 -1.52187 -27.5156 -3.29634 Vertex 325 -10.8549 -16.5556 -2.03259 Vertex 326 -0.314657 -21.5995 -3.73165 Vertex 327 -9.55496 -15.537 -1.5397 Vertex 328 4.79059 -39.7889 -0.900656 Vertex 329 -3.31456 19.0478 -1.00156 {wid=918 normal=(-0.979045 -0.179876 0.09548)} Vertex 330 -4.62825 -39.8446 -1.20104 Vertex 331 12.8852 -11.833 -3.96571 Vertex 332 -0.679708 17.7741 4.07388 {wid=923 normal=(-0.50033 0.022997 0.86553)} Vertex 333 -2.5112 0.545159 5.30526 Vertex 334 -0.870999 22.7244 -4.05673 Vertex 335 -9.46168 -15.8051 0.796728 Vertex 336 -12.7447 -10.7742 -0.305666 Vertex 337 8.18027 -42.5835 1.41097 Vertex 338 8.40012 -45.1573 0.373238 Vertex 339 -5.5639 9.99164 -3.63261 {wid=942 normal=(0.956928 -0.141918 -0.253274)} Vertex 340 3.0336 12.9396 -4.38648 Vertex 341 12.4454 -12.9836 0.444387 {wid=35 normal=(0.646524 0.194492 0.737686)} Vertex 342 11.7474 -13.5065 0.983589 Vertex 343 9.27921 -15.9483 -0.422304 Vertex 344 9.42178 -16.2864 0.169574 Vertex 345 8.76873 -15.6991 0.0715745 Vertex 346 0.897081 18.0401 3.84769 {wid=961 normal=(0.811938 0.269568 0.517773)} Vertex 347 12.5588 -15.7014 -3.39348 Vertex 348 10.7175 -16.6802 -2.05073 Vertex 349 10.1002 -15.2172 -1.78344 Vertex 350 -4.3019 -3.70344 2.73797 Vertex 351 6.08431 -45.0643 -4.48447 Vertex 352 0.826881 -12.8119 2.05513 Vertex 353 -10.0599 -15.4023 -0.137505 Vertex 354 -10.873 -14.7914 0.357585 Vertex 355 -10.3545 -15.7175 0.788234 Vertex 356 -10.5049 -15.8896 0.150517 Vertex 357 -10.6144 -15.1098 -0.953431 Vertex 358 -6.24319 -44.9055 -4.42387 Vertex 359 -9.53459 -14.5261 1.48751 Vertex 360 -8.69963 -15.7938 0.041062 Vertex 361 9.5767 -15.6762 0.999151 Vertex 362 -10.3291 -16.5343 0.0133891 Vertex 363 -4.83232 -43.2689 2.92905 Vertex 364 -3.17283 -40.8785 -5.42335 Vertex 365 -0.0326753 23.0461 -2.76806 Vertex 366 -10.5548 -16.6295 -2.74489 Vertex 367 9.46939 -15.9416 0.248589 Vertex 368 10.8069 -14.8523 0.15662 Vertex 369 10.4491 -15.8623 0.433111 Vertex 370 -0.736323 -11.923 2.85594 Vertex 371 -0.0758101 -13.0023 0.423076 Vertex 372 0.85238 23.5635 -3.43904 Vertex 373 -1.74077 19.6832 3.1359 {wid=1046 normal=(-0.581902 -0.0223933 0.812953)} Vertex 374 -3.29336 19.4324 -1.41036 {wid=1047 normal=(0.0584221 0.174898 -0.982852)} Vertex 375 2.09948 19.3311 2.64264 {wid=1048 normal=(0.0210598 0.440985 0.897267)} Vertex 376 -5.16687 4.55425 4.83498 Vertex 377 3.45873 -31.8071 -6.72568 {wid=1050 normal=(-0.511713 -0.142072 -0.847328)} Vertex 378 4.75988 -43.2371 2.8958 Vertex 379 5.74669 8.44477 -3.06635 {wid=1055 normal=(-0.842099 -0.489372 -0.226681)} Vertex 380 -4.16978 -0.819194 -4.36776 Vertex 381 -11.0278 -21.2912 -2.73216 Vertex 382 -8.37255 -26.837 -2.96613 Vertex 383 -4.4583 -40.9059 -6.16189 Vertex 384 0.688528 20.4019 4.21256 Vertex 385 4.44212 -40.9597 -5.99721 Vertex 386 2.82426 -40.7071 -5.11122 Vertex 387 4.195 -39.9232 -6.01059 Vertex 388 1.3914 19.1464 -4.53703 {wid=21 normal=(0.767251 0.0932487 -0.634532)} Vertex 389 -7.66757 13.8088 -2.7484 {wid=1076 normal=(0.191004 0.978195 -0.0815549)} Vertex 390 -2.15506 11.6116 0.0740766 Vertex 391 3.54141 19.9218 -0.391527 {wid=1078 normal=(0.992371 0.114488 0.0457449)} Vertex 392 -8.38023 -45.1597 0.393699 Vertex 393 -3.24852 20.2247 -1.88136 {wid=1083 normal=(-0.946636 0.0242925 -0.321387)} Vertex 394 10.9949 -21.0838 -3.49705 Vertex 395 -7.32166 -45.1748 5.91531 Vertex 396 2.83606 18.5675 1.9227 {wid=16 normal=(0.878035 -0.461044 -0.128422)} Vertex 397 -1.79034 19.0641 3.53123 {wid=14 normal=(-0.333058 -0.0977444 0.937826)} Vertex 398 10.0934 -15.2641 -2.65495 Vertex 399 2.88924 18.2704 -0.990787 {wid=1096 normal=(0.391379 -0.537666 -0.746819)} Vertex 400 -8.10151 -22.0554 -5.57651 Vertex 401 1.37854 -9.09172 3.82407 Vertex 402 1.62025 -3.66876 4.42299 Vertex 403 3.0271 -3.66973 3.43257 Vertex 404 2.90024 -21.6697 -7.221 Vertex 405 0.560838 17.5063 4.33783 {wid=1109 normal=(0.362006 0.0207479 0.931945)} Vertex 406 -10.4419 -15.642 -1.79093 Vertex 407 -10.621 -16.5456 -2.06651 Vertex 408 0 -0.833921 -4.72918 Vertex 409 9.8327 -19.6247 -6.22246 Vertex 410 -6.09235 -22.3913 -0.272462 Vertex 411 3.12272 -45.2782 -5.55673 Vertex 412 -7.8456 13.5431 -1.28205 Vertex 413 -0.885883 -12.5154 2.57181 Vertex 414 4.85203 4.4344 4.40576 Vertex 415 11.8558 6.32746 -1.46537 {wid=1142 normal=(0.863034 -0.15345 0.481273)} Vertex 416 -3.10513 -45.279 -5.55937 Vertex 417 -1.7023 -33.3913 -3.33368 Vertex 418 -10.071 -15.1503 -1.86829 Vertex 419 -11.6852 -14.8569 -2.39004 Vertex 420 -9.73209 -19.6686 -6.22341 Vertex 421 -3.09014 -21.6247 -7.09353 Vertex 422 -1.77809 19.1789 2.77135 {wid=1163 normal=(0.143863 0.939333 0.311378)} Vertex 423 -1.90761 -24.0693 -4.91285 Vertex 424 -2.0624 14.8835 2.5245 {wid=1166 normal=(-0.772944 -0.547581 0.320489)} Vertex 425 3.14715 18.5633 -0.629971 {wid=1167 normal=(0.956454 -0.165272 0.240585)} Vertex 426 4.27768 -3.65811 -3.69995 Vertex 427 -8.11148 -42.2545 1.44054 Vertex 428 -12.819 -4.03705 -5.8605 Vertex 429 1.73457 20.1469 3.72136 Vertex 430 2.07982 -32.4758 -3.03414 Vertex 431 1.58374 -3.66501 -4.38958 Vertex 432 2.35549 -3.67029 -4.60815 Vertex 433 -3.08527 -3.68338 -4.53036 Vertex 434 -5.92834 -3.66995 -2.37695 Vertex 435 -5.71109 -3.63324 -2.41677 Vertex 436 -4.76022 -2.25611 2.90123 Vertex 437 -1.29697 6.63658 4.84261 Vertex 438 -2.00594 7.82099 4.60024 Vertex 439 13.7017 -3.97233 -5.49777 Vertex 440 1.86509 16.865 3.16475 Vertex 441 -5.95337 6.29254 -3.33579 Vertex 442 -7.36906 7.13952 -0.0530487 Vertex 443 0.975867 19.2132 3.75327 {wid=18 normal=(0.023765 -0.106922 0.993983)} Vertex 444 -3.20339 18.9612 -0.0699999 {wid=1206 normal=(-0.936532 -0.164206 0.309749)} Vertex 445 -10.7479 -11.775 -0.201597 Vertex 446 11.7325 -14.8192 -2.2833 Vertex 447 -2.95964 0.682067 -5.12913 Vertex 448 9.51242 -14.5452 0.663688 Vertex 449 9.66232 -15.4943 -1.59704 Vertex 450 -10.0995 -15.2945 -2.61538 Vertex 451 2.12817 7.85028 4.98224 Vertex 452 0.185614 15.1996 4.34446 {wid=1233 normal=(0.100196 0.00373745 0.99496)} Vertex 453 -0.550938 17.8907 4.57309 {wid=1234 normal=(-0.235999 -0.909195 0.343033)} Vertex 454 -0.532349 16.6752 -4.61403 Vertex 455 0.0644774 -13.4405 -1.27604 Vertex 456 -0.0122783 -13.328 -1.96628 Vertex 457 -2.54326 15.4932 -2.39773 Vertex 458 -1.84796 19.462 2.4057 {wid=1245 normal=(0.061397 -0.505155 0.860844)} Vertex 459 -12.3411 -15.996 -1.22073 Vertex 460 -10.7674 -16.5911 -1.15188 Vertex 461 -3.60535 -45.1077 -2.34667 Vertex 462 -11.2037 -14.624 -0.283627 Vertex 463 6.62741 -26.2697 -0.654005 Vertex 464 5.09683 0.767747 3.44614 Vertex 465 2.44924 11.6349 -0.149674 Vertex 466 -12.2974 -12.9983 0.408601 Vertex 467 -10.3696 -12.8888 1.07322 Vertex 468 3.70485 -45.164 -2.32336 Vertex 469 1.79834 23.4578 1.66485 {wid=1271 normal=(0.489434 0.784272 0.381277)} Vertex 470 3.03262 19.7534 -2.32247 {wid=1272 normal=(0.940689 0.123313 -0.316066)} Vertex 471 2.47135 19.0172 3.32158 {wid=1273 normal=(0.471113 0.584278 0.660812)} Vertex 472 -3.39281 20.2955 -0.475583 {wid=1274 normal=(-0.713061 0.697301 0.0729059)} Vertex 473 -5.16555 -31.9494 -7.51525 {wid=1275 normal=(-0.0853547 -0.202318 -0.975593)} Vertex 474 5.0855 -0.854968 2.93104 Vertex 475 8.8179 -21.6007 -6.06545 Vertex 476 3.44543 0.822696 -4.44519 Vertex 477 0.988584 19.2259 3.30935 {wid=1284 normal=(0.64832 0.483339 0.588273)} Vertex 478 -13.0011 -15.2128 0.188336 Vertex 479 -0.756925 19.5665 3.4105 {wid=1287 normal=(-0.239389 -0.338017 0.910186)} Vertex 480 6.05225 -22.2642 -0.00249332 Vertex 481 4.77409 -44.9331 1.98304 Vertex 482 2.96342 0.798396 -4.86362 Vertex 483 3.08814 19.3017 0.0694577 {wid=1298 normal=(0.808416 -0.114617 0.577345)} Vertex 484 -13.762 -3.86161 -3.6504 Vertex 485 -3.0478 21.2282 -1.45188 Vertex 486 -1.05943 16.4705 -2.69848 Vertex 487 -2.42576 13.2844 -3.40238 Vertex 488 8.83169 9.16849 1.79297 {wid=1313 normal=(-0.00794414 -0.0611907 0.998093)} Vertex 489 8.61003 -4.34742 -4.403 Vertex 490 0.5127 13.7323 3.45682 {wid=1316 normal=(0.261864 -0.869857 0.418062)} Vertex 491 3.4543 -24.0162 -0.461967 Vertex 492 0.462463 17.9246 4.35236 {wid=1319 normal=(0.354548 -0.81618 0.456231)} Vertex 493 2.14619 -25.7474 -1.62407 Vertex 494 -1.82672 16.4913 2.79769 Vertex 495 9.47657 6.57277 -5.69194 {wid=1323 normal=(-0.21158 0.098494 -0.972385)} Vertex 496 9.77556 -16.0658 -1.12065 Vertex 497 10.9797 -14.8563 -1.19923 Vertex 498 -1.71357 -25.7669 -3.74938 Vertex 499 1.19771 24.1053 -4.82298 {wid=1332 normal=(0.498938 0.824721 -0.266264)} Vertex 500 -1.93894 16.6495 -3.93417 {wid=1333 normal=(-0.612985 -0.118062 -0.781224)} Vertex 501 6.50885 -40.4057 -1.52082 Vertex 502 6.99561 -40.6767 -2.82018 Vertex 503 -11.4504 -4.11521 -0.375108 Vertex 504 0.987748 19.6746 3.234 {wid=1344 normal=(0.511862 -0.452178 0.730434)} Vertex 505 -0.754679 -21.524 -3.04537 Vertex 506 -9.53379 -16.0122 -0.332581 {wid=1347 normal=(-0.513615 -0.625231 -0.587611)} Vertex 507 11.1701 -14.6158 -0.236384 Vertex 508 5.50706 7.81729 -5.36651 Vertex 509 11.4575 -14.948 -0.521878 Vertex 510 11.0284 -14.7384 -0.823083 Vertex 511 11.3469 -15.4245 -0.168961 Vertex 512 -6.97535 6.25243 -1.62884 {wid=1369 normal=(0.828151 -0.495365 0.262257)} Vertex 513 3.25664 20.3206 -0.701967 Face 1 54 251 132 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 2 62 253 159 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 3 470 158 388 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 4 13 397 20 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5) matid=13} Face 5 388 315 17 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 6 393 11 288 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 7 218 485 365 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 8 470 388 218 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 9 19 17 454 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 10 217 10 12 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 11 139 319 78 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 12 11 374 288 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 13 23 443 396 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5) matid=1} Face 14 439 34 35 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 15 331 32 30 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 16 439 331 30 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 17 31 489 30 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 18 32 31 30 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 19 35 230 31 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 20 32 347 280 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 21 59 33 147 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 22 159 253 503 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 23 234 459 478 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 24 428 166 57 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 25 338 75 119 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 26 24 328 60 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 27 84 338 119 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 28 337 129 29 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 29 103 461 72 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 30 105 5 6 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 31 6 330 52 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 32 6 5 7 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 33 401 180 194 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 34 38 116 350 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 35 114 264 85 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 36 117 251 54 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 37 455 37 63 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 38 186 37 455 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 39 154 48 87 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 40 26 42 426 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 41 298 15 201 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 42 283 284 91 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 43 447 133 39 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 44 160 76 239 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 45 161 141 376 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 46 414 178 376 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 47 56 266 47 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 48 38 381 222 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 49 209 431 42 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 50 65 43 44 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 51 116 38 279 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 52 200 74 101 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 53 200 45 138 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 54 15 45 201 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 55 15 109 505 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 56 26 174 152 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 57 132 251 113 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 58 275 114 205 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 59 273 56 47 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 60 36 49 50 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 61 36 87 48 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 62 48 49 36 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 63 48 377 49 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 64 154 301 48 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 65 154 153 301 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 66 101 435 200 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 67 38 350 51 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 68 107 52 330 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 69 104 6 52 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 70 107 53 52 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 71 107 5 229 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 72 28 54 132 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 73 28 172 54 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 74 149 441 76 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 75 9 86 55 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 76 91 474 172 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 77 199 115 56 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 78 512 131 241 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 79 339 250 57 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 80 202 226 314 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 81 202 32 58 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 82 489 211 30 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 83 415 33 59 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 84 27 183 328 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 85 255 430 60 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 86 24 61 25 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 87 387 188 120 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 88 250 62 64 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 89 250 253 62 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 90 295 303 187 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 91 88 455 63 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 92 503 336 159 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 93 2 1 336 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 94 67 65 44 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 95 66 43 65 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 96 498 324 300 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 97 164 43 66 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 98 324 67 300 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 99 94 108 93 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 100 163 290 189 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 101 44 43 170 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 102 27 69 183 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 103 27 299 69 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 104 111 480 184 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 105 111 193 480 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 106 96 238 145 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3) matid=7} Face 107 9 311 71 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 108 81 72 235 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 109 106 103 392 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 110 26 73 174 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 111 26 28 73 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 112 68 138 45 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 113 122 101 420 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 114 25 302 84 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 115 25 61 75 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 116 196 291 195 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 117 196 92 121 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 118 286 77 225 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 119 212 10 217 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 120 137 78 95 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 121 137 157 289 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 122 193 113 480 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 123 46 227 79 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 124 72 392 103 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 125 207 363 128 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 126 106 81 8 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 127 427 128 363 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 128 189 423 163 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 129 182 83 82 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 130 165 83 170 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 131 165 82 83 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 132 502 84 119 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 133 501 25 84 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 134 9 85 264 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 135 96 179 144 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4) matid=4} Face 136 266 181 268 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 137 39 133 86 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 138 135 87 36 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 139 228 46 87 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 140 70 88 184 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 141 70 117 88 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 142 387 299 27 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 143 24 60 89 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 144 189 90 82 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 145 45 15 326 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 146 150 91 172 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 147 150 287 91 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 148 56 464 199 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 149 414 333 464 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 150 67 93 65 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 151 67 473 93 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 152 324 473 67 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 153 66 108 94 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 154 12 167 139 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 155 444 306 167 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 156 143 232 340 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3) matid=7} Face 157 143 238 232 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3) matid=7} Face 158 178 437 76 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 159 98 96 146 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3) matid=7} Face 160 304 98 438 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3) matid=7} Face 161 41 205 177 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 162 3 99 62 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 163 277 142 278 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 164 75 302 25 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 165 321 29 190 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 166 38 136 381 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 167 38 51 136 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 168 408 283 91 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 169 195 291 141 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 170 5 358 7 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 171 126 305 358 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 172 53 104 52 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 173 53 382 104 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 174 53 105 382 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 175 53 107 417 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 176 7 134 8 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 177 7 103 134 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 178 8 107 330 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 179 305 416 276 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 180 65 108 66 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 181 65 93 108 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 182 279 109 116 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 183 83 182 109 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 184 301 110 48 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 185 112 118 110 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 186 36 295 135 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 187 36 50 493 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 188 301 112 110 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 189 50 118 112 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 190 79 394 193 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 191 409 73 394 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 192 47 114 275 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 193 269 323 114 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 194 39 115 254 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 195 39 86 115 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 196 15 371 109 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 197 352 401 194 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 198 456 352 194 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 199 455 88 352 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 200 49 118 50 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 201 49 377 118 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 202 468 119 75 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 203 386 385 155 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 204 297 386 411 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 205 61 24 120 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 206 376 333 414 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 207 376 141 292 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 208 68 122 420 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 209 223 222 381 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 210 58 245 237 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 211 58 32 280 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 212 62 263 64 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 213 62 99 124 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 214 331 347 32 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 215 35 204 341 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 216 383 126 358 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 217 383 364 126 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 218 59 488 415 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 219 59 147 127 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 220 80 128 427 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 221 80 395 219 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 222 100 129 337 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 223 378 321 190 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 224 40 210 402 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 225 40 51 210 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 226 57 389 339 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 227 57 166 389 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 228 73 132 394 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 229 73 28 132 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 230 441 161 76 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 231 55 86 133 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 232 106 134 103 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 233 106 8 134 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 234 187 135 295 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 235 187 79 227 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 236 101 136 51 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 237 101 122 136 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 238 11 306 374 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 239 158 470 137 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 240 74 138 68 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 241 74 200 138 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 242 471 440 318 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 243 332 169 175 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 244 39 482 447 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 245 39 254 476 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 246 102 270 133 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 247 283 195 271 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 248 336 466 467 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 249 64 234 478 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 250 9 143 85 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 251 9 71 143 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 252 85 340 177 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 253 85 143 340 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 254 97 239 76 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 255 146 96 145 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3) matid=7} Face 256 97 146 145 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 257 438 98 146 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3) matid=7} Face 258 495 147 33 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 259 495 379 147 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 260 54 403 117 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 261 54 172 402 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 262 160 149 76 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 263 208 243 442 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 264 28 150 172 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 265 426 287 150 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 266 433 287 432 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 267 51 436 151 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 268 187 152 79 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 269 37 26 152 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 270 111 153 154 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 271 295 36 493 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 272 46 154 87 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 273 46 111 154 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 274 351 155 188 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 275 351 297 411 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 276 307 156 185 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 277 294 95 486 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 278 470 513 137 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 279 22 296 286 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 280 185 158 308 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 281 262 388 158 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 282 467 445 336 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 283 213 62 445 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 284 257 160 239 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 285 71 311 412 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 286 133 161 55 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 287 133 270 161 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 288 500 162 320 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 289 500 393 162 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 290 300 163 423 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 291 44 170 163 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 292 423 498 300 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 293 82 165 164 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 294 43 165 170 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 295 43 164 165 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 296 241 166 484 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 297 241 131 166 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 298 95 168 486 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 299 319 139 167 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 300 390 168 465 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 301 167 486 168 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 302 424 169 317 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 303 424 197 494 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 304 290 170 83 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 305 290 163 170 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 306 176 171 256 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 307 296 469 384 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 308 40 172 474 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 309 40 402 172 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 310 92 173 121 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 311 474 199 173 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 312 475 409 394 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 313 475 152 174 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 314 197 175 494 {mat="nomaterial" groups="default teeth" rgb=(1 1 1) matid=8} Face 315 197 318 440 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 316 471 220 440 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 317 296 384 429 {mat="nomaterial" groups="default brows" rgb=(0 0 0) matid=2} Face 318 179 206 144 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4) matid=4} Face 319 98 41 274 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 320 273 178 414 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 321 41 98 304 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 322 98 179 96 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3) matid=7} Face 323 98 274 179 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3) matid=7} Face 324 210 180 148 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 325 130 116 180 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 326 508 181 267 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 327 264 114 265 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 328 90 182 82 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 329 90 109 182 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 330 60 463 255 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 331 60 328 463 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 332 63 184 88 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 333 303 491 184 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 334 11 309 306 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 335 500 320 185 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 336 26 186 42 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 337 26 37 186 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 338 37 404 63 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 339 37 152 187 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 340 27 188 387 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 341 27 351 188 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 342 45 189 68 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 343 45 326 421 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 344 129 221 29 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 345 129 378 190 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 346 192 191 478 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 347 99 3 191 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 348 99 310 124 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 349 249 362 192 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 350 46 193 111 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 351 46 79 193 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 352 370 194 180 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 353 370 456 194 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 354 287 380 91 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 355 151 196 380 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 356 436 196 151 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 357 436 92 196 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 358 490 452 424 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 359 490 318 452 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 360 176 198 171 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 361 332 175 405 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 362 91 199 474 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 363 91 284 199 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 364 42 200 209 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 365 201 45 200 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 366 42 201 200 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 367 42 298 201 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 368 342 202 314 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 369 203 32 202 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 370 342 215 216 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 371 31 32 203 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 372 31 204 35 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 373 31 203 204 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 374 85 205 114 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 375 85 177 205 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 376 274 206 179 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3) matid=7} Face 377 177 144 206 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3) matid=7} Face 378 72 207 80 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 379 72 81 207 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 380 160 208 442 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 381 160 257 412 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 382 435 209 200 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 383 51 151 434 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 384 130 210 51 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 385 130 180 210 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 386 272 211 34 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 387 127 147 379 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 388 22 469 296 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 389 22 218 365 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 390 467 213 445 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 391 3 62 213 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 392 3 214 142 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 393 3 231 240 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 394 203 215 204 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 395 343 344 345 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 396 202 216 203 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 397 202 342 216 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 398 458 422 256 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 399 285 212 217 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 400 19 258 21 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0) matid=10} Face 401 393 485 218 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 402 128 219 395 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 403 128 80 219 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 404 198 346 171 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 405 405 175 346 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 406 190 221 129 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 407 190 29 221 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 408 410 222 223 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 409 279 38 222 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 410 68 223 122 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 411 290 83 223 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 412 58 511 202 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 413 248 125 247 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 414 78 225 77 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 415 399 137 289 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 416 511 226 202 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 417 369 367 368 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 418 135 228 87 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 419 135 187 227 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 420 227 228 135 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 421 227 46 228 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 422 105 229 5 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 423 105 53 417 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 424 34 230 35 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 425 34 211 230 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 426 213 231 3 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 427 359 240 360 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 428 96 233 238 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3) matid=7} Face 429 96 144 487 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4) matid=4} Face 430 487 233 96 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4) matid=4} Face 431 232 238 233 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3) matid=7} Face 432 263 234 64 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 433 407 460 234 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 434 8 235 107 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 435 8 81 235 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 436 12 236 167 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 437 12 10 236 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 438 341 237 35 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 439 125 58 237 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 440 71 238 143 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 441 257 145 238 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 442 145 239 97 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 443 145 257 239 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 444 214 240 359 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 445 214 3 240 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 446 2 241 484 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 447 2 4 241 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 448 224 247 125 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 449 244 248 242 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 450 55 243 312 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 451 55 161 441 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 452 224 507 242 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 453 224 248 244 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 454 123 246 58 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 455 348 237 245 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 456 496 449 348 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 457 245 58 246 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 458 242 247 224 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 459 242 248 247 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 460 58 248 224 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 461 58 125 248 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 462 357 249 192 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 463 462 362 249 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 464 428 250 64 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 465 428 57 250 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 466 70 251 117 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 467 252 113 251 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 468 70 252 251 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 469 480 113 252 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 470 4 253 250 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 471 4 2 253 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 472 199 254 115 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 473 199 284 254 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 474 69 255 183 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 475 69 430 255 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 476 169 256 317 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 477 169 176 256 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 478 71 257 238 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 479 71 412 257 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 480 259 258 334 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 481 372 21 258 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0) matid=10} Face 482 372 259 334 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 483 372 258 499 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 484 220 260 171 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 485 477 471 375 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 486 27 261 351 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 487 27 328 261 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 488 185 262 158 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 489 185 388 262 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 490 124 263 62 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 491 124 234 293 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 492 508 264 265 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 493 86 9 264 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 494 322 265 114 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 495 181 508 265 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 496 115 266 56 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 497 115 508 267 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 498 266 267 181 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 499 266 115 267 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 500 269 268 323 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 501 269 266 268 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 502 47 269 114 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 503 47 266 269 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 504 141 271 195 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 505 141 161 270 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 506 270 271 141 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 507 270 102 271 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 508 127 488 59 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 509 127 379 488 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 510 275 273 47 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 511 41 304 451 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 512 177 274 41 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 513 177 206 274 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3) matid=7} Face 514 41 275 205 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 515 41 451 275 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 516 107 276 383 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 517 107 235 276 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 518 3 277 356 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 519 3 142 277 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 520 191 278 142 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 521 353 354 335 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 522 410 279 222 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 523 83 109 279 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 524 281 280 347 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 525 123 58 280 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 526 123 281 347 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 527 123 280 282 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 528 281 349 398 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 529 281 123 282 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 530 102 283 271 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 531 447 140 283 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 532 140 284 283 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 533 476 254 284 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 534 171 316 256 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 535 384 469 285 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 536 157 286 391 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 537 513 22 286 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 538 151 287 433 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 539 151 380 287 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 540 10 288 236 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 541 485 393 288 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 542 391 289 157 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 543 225 399 425 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 544 68 400 223 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 545 68 189 400 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 546 121 291 196 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 547 333 376 292 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 548 291 292 141 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 549 291 121 292 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 550 366 325 234 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 551 263 124 293 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 552 137 308 158 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 553 137 95 294 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 554 491 295 493 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 555 491 303 295 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 556 77 296 375 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 557 77 286 296 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 558 468 297 119 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 559 468 120 297 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 560 186 298 42 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 561 186 455 298 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 562 89 299 387 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 563 430 69 299 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 564 44 300 67 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 565 44 163 300 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 566 50 301 153 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 567 50 112 301 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 568 100 302 481 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 569 100 84 302 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 570 63 303 184 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 571 63 187 303 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 572 178 304 437 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3) matid=7} Face 573 178 451 304 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 574 235 305 276 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 575 461 103 305 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 576 156 306 309 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 577 156 167 306 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 578 294 307 185 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 579 294 486 307 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 580 294 308 137 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 581 294 185 308 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 582 185 457 500 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 583 185 156 309 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 584 192 310 99 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 585 460 407 327 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 586 55 311 9 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 587 55 312 311 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 588 208 312 243 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 589 208 311 312 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 590 125 313 511 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 591 314 226 313 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 592 125 314 313 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 593 125 237 341 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 594 454 315 320 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 595 454 17 315 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 596 285 316 384 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 597 285 217 316 {mat="nomaterial" groups="default brows" rgb=(0 0 0) matid=2} Face 598 217 317 373 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 599 217 12 317 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 600 78 318 490 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 601 78 77 318 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 602 95 465 168 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 603 95 78 319 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 604 388 320 315 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 605 388 185 320 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 606 481 321 100 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 607 481 29 321 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 608 323 322 114 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 609 181 265 322 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 610 181 323 268 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 611 181 322 323 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 612 66 324 164 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 613 66 94 324 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 614 419 418 450 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 615 293 234 325 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 616 505 326 15 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 617 90 189 326 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 618 406 327 407 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 619 310 460 327 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 620 25 328 24 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 621 25 501 328 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 622 444 329 306 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 623 444 472 329 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 624 7 330 6 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 625 7 8 330 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 626 35 331 439 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 627 35 237 331 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 628 176 453 198 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 629 176 169 332 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 630 121 333 292 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 631 121 173 333 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 632 19 334 258 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0) matid=10} Face 633 19 218 334 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0) matid=10} Face 634 278 335 277 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 635 278 353 335 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 636 64 336 1 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 637 64 466 336 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 638 84 337 29 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 639 84 100 337 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 640 29 338 84 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 641 29 481 338 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 642 512 339 131 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 643 512 250 339 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 644 144 340 232 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3) matid=7} Face 645 144 177 340 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3) matid=7} Face 646 314 341 342 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 647 314 125 341 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 648 204 342 341 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 649 204 215 342 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 650 448 343 345 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 651 448 216 343 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 652 216 344 343 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 653 216 215 344 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 654 215 345 344 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 655 215 448 345 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 656 220 346 440 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 657 220 171 346 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 658 237 347 331 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 659 237 123 347 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 660 123 348 246 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 661 123 237 348 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 662 282 349 281 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 663 446 398 349 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 664 130 350 116 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 665 130 51 350 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 666 119 351 261 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 667 119 297 351 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 668 117 352 88 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 669 117 401 352 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 670 356 353 278 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 671 356 354 353 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 672 277 355 356 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 673 277 335 355 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 674 354 355 335 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 675 354 356 355 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 676 191 356 278 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 677 191 3 356 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 678 462 357 192 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 679 462 249 357 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 680 103 358 305 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 681 103 7 358 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 682 213 359 231 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 683 213 467 359 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 684 231 506 240 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 685 231 359 360 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 686 226 361 313 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 687 226 369 361 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 688 191 362 462 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 689 191 192 362 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 690 81 363 207 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 691 81 106 363 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 692 276 364 383 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 693 276 416 364 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 694 212 365 485 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 695 212 22 365 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 696 263 366 234 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 697 263 293 366 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 698 313 367 369 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 699 313 361 367 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 700 361 368 367 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 701 361 369 368 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 702 511 369 226 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 703 511 313 369 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 704 413 370 180 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 705 116 109 371 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 706 370 371 456 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 707 370 413 371 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 708 218 372 334 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0) matid=10} Face 709 218 21 372 {mat="nomaterial" groups="default hairbob" rgb=(1 0 0) matid=10} Face 710 479 458 256 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 711 316 217 373 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 712 329 374 306 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 713 329 472 374 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 714 429 375 296 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 715 504 477 375 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 716 76 376 178 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 717 76 161 376 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 718 110 377 48 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 719 110 118 377 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 720 100 378 129 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 721 100 321 378 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 722 211 379 495 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 723 211 272 379 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 724 195 380 196 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 725 408 91 380 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 726 122 381 136 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 727 122 223 381 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 728 6 382 105 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 729 6 104 382 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 730 5 383 358 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 731 5 107 383 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 732 171 384 316 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 733 171 260 384 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 734 188 385 386 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 735 188 155 385 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 736 120 386 297 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 737 120 188 386 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 738 24 387 120 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 739 24 89 387 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 740 21 388 17 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 741 21 218 388 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 742 131 389 166 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 743 131 339 389 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 744 167 390 319 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 745 167 168 390 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 746 483 391 286 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 747 483 425 391 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 748 80 392 72 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 749 80 427 392 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 750 19 393 218 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 751 19 162 393 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 752 113 394 132 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 753 113 193 394 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 754 207 395 80 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 755 207 128 395 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 756 16 396 443 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5) matid=1} Face 757 14 397 13 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5) matid=13} Face 758 14 20 397 {mat="nomaterial" groups="default eyer" rgb=(.5 .5 .5) matid=13} Face 759 280 398 282 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 760 280 281 398 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 761 78 399 225 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 762 78 137 399 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 763 290 400 189 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 764 290 223 400 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 765 148 401 117 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 766 148 180 401 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 767 148 402 210 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 768 148 54 402 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 769 148 403 54 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 770 148 117 403 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 771 187 404 37 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 772 187 63 404 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 773 198 492 346 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 774 198 453 492 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 775 310 406 407 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 776 310 327 406 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 777 124 407 234 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 778 124 310 407 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 779 195 408 380 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 780 195 283 408 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 781 174 409 475 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 782 174 73 409 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 783 83 410 223 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 784 83 279 410 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 785 155 411 386 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 786 155 351 411 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 787 208 412 311 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 788 208 160 412 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 789 116 413 180 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 790 116 371 413 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 791 56 414 464 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 792 56 273 414 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 793 34 415 272 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 794 34 33 415 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 795 126 416 305 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 796 126 364 416 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 797 229 417 107 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 798 229 105 417 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 799 325 418 293 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 800 325 450 418 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 801 293 419 450 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 802 293 418 419 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 803 74 420 101 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 804 74 68 420 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 805 189 421 326 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 806 189 45 421 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 807 317 422 373 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 808 317 256 422 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 809 82 423 189 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 810 82 498 423 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 811 12 424 317 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 812 12 139 424 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 813 289 425 399 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 814 289 391 425 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 815 28 426 150 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 816 28 26 426 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 817 106 427 363 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 818 106 392 427 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 819 1 428 64 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 820 484 166 428 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 821 260 429 384 {mat="nomaterial" groups="default brows" rgb=(0 0 0) matid=2} Face 822 504 375 429 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 823 89 430 299 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 824 89 60 430 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 825 426 432 287 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 826 426 42 431 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 827 431 432 426 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 828 431 209 432 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 829 209 433 432 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 830 209 435 433 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 831 433 434 151 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 832 433 435 434 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 833 51 435 101 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 834 51 434 435 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 835 40 436 51 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 836 40 92 436 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 837 438 437 304 {mat="nomaterial" groups="default chest2" rgb=(.6 .5 .3) matid=7} Face 838 97 76 437 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 839 97 438 146 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 840 97 437 438 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 841 33 439 495 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 842 33 34 439 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 843 175 440 346 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 844 175 197 440 {mat="nomaterial" groups="default teeth" rgb=(1 1 1) matid=8} Face 845 243 441 149 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 846 243 55 441 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 847 149 442 243 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 848 149 160 442 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 849 18 443 23 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5) matid=1} Face 850 18 16 443 {mat="nomaterial" groups="default eyel" rgb=(.5 .5 .5) matid=1} Face 851 236 444 167 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 852 236 288 444 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 853 159 445 62 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 854 159 336 445 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 855 282 446 349 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 856 282 398 446 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 857 102 447 283 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 858 102 133 447 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 859 203 448 215 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 860 203 216 448 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 861 497 449 496 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 862 246 348 449 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 863 366 450 325 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 864 366 293 450 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 865 273 451 178 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 866 273 275 451 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 867 197 452 318 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 868 197 424 452 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 869 332 453 176 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 870 332 405 453 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 871 162 454 320 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 872 162 19 454 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 873 456 455 352 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 874 456 298 455 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 875 15 456 371 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 876 15 298 456 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 877 309 457 185 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 878 309 11 457 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 879 373 458 479 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 880 373 422 458 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 881 192 459 310 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 882 192 478 459 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 883 459 460 310 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 884 459 234 460 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 885 235 461 305 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 886 235 72 461 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 887 99 462 192 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 888 99 191 462 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 889 183 463 328 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 890 183 255 463 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 891 173 464 333 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 892 173 199 464 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 893 319 465 95 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 894 319 390 465 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 895 142 466 64 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 896 142 214 466 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 897 214 467 466 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 898 214 359 467 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 899 61 468 75 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 900 61 120 468 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 901 212 469 22 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 902 212 285 469 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 903 22 470 218 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 904 22 513 470 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 905 77 471 318 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 906 77 375 471 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 907 288 472 444 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 908 288 374 472 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 909 94 473 324 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 910 94 93 473 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 911 92 474 173 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 912 92 40 474 {mat="nomaterial" groups="default belt" rgb=(.3 .2 .3) matid=5} Face 913 79 475 394 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 914 79 152 475 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 915 140 476 284 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 916 140 39 476 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 917 220 477 260 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 918 220 471 477 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 919 142 478 191 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 920 142 64 478 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 921 316 479 256 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 922 316 373 479 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 923 70 480 252 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 924 70 184 480 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 925 75 481 302 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 926 75 338 481 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 927 140 482 39 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 928 140 447 482 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 929 225 483 286 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 930 225 425 483 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 931 1 484 428 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 932 1 2 484 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 933 10 485 288 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 934 10 212 485 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 935 156 486 167 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 936 156 307 486 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 937 232 487 144 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4) matid=4} Face 938 232 233 487 {mat="nomaterial" groups="default neck3" rgb=(.6 .5 .4) matid=4} Face 939 272 488 379 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 940 272 415 488 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 941 230 489 31 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 942 230 211 489 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 943 139 490 424 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 944 139 78 490 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 945 111 491 153 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 946 111 184 491 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 947 405 492 453 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 948 405 346 492 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 949 153 493 50 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 950 153 491 493 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 951 169 494 175 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 952 169 424 494 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 953 30 495 439 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 954 30 211 495 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 955 245 496 348 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 956 245 246 496 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 957 246 497 496 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 958 246 449 497 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 959 164 498 82 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 960 164 324 498 {mat="nomaterial" groups="default wrap" rgb=(.5 .4 .2) matid=3} Face 961 259 499 258 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 962 259 372 499 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 963 11 500 457 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 964 11 393 500 {mat="nomaterial" groups="default hair" rgb=(0 .2 .2) matid=14} Face 965 502 501 84 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 966 261 328 501 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 967 261 502 119 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 968 261 501 502 {mat="nomaterial" groups="default boot" rgb=(.2 .2 .2) matid=17} Face 969 2 503 253 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 970 2 336 503 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 971 260 504 429 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 972 260 477 504 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 973 90 505 109 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 974 90 326 505 {mat="nomaterial" groups="default cloth" rgb=(.7 .7 .8) matid=11} Face 975 360 506 231 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 976 360 240 506 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 977 509 507 224 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 978 510 242 507 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 979 86 508 115 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 980 86 264 508 {mat="nomaterial" groups="default chest" rgb=(.7 .6 .4) matid=6} Face 981 244 509 224 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 982 510 507 509 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 983 244 510 509 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 984 244 242 510 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 985 224 511 58 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 986 224 125 511 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 987 4 512 241 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 988 4 250 512 {mat="nomaterial" groups="default arm" rgb=(.6 .4 .4) matid=15} Face 989 157 513 286 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Face 990 157 137 513 {mat="nomaterial" groups="default skin" rgb=(.7 .4 .4) matid=16} Corner 54 1 {wid=128 normal=(0.258422 0.118779 0.958702)} Corner 251 1 {wid=52 normal=(0.460284 -0.059013 0.885808)} Corner 132 1 {wid=367 normal=(0.978102 0.204744 -0.0373693)} Corner 62 2 {wid=37 normal=(0.371459 -0.255684 -0.892549)} Corner 253 2 {wid=41 normal=(0.974606 -0.220042 -0.0415301)} Corner 159 2 {wid=40 normal=(0.695748 -8.50411e-005 0.718286)} Corner 158 3 {wid=428 normal=(0.863874 -0.497627 0.0780372)} Corner 11 6 {wid=50 normal=(-0.828352 -0.0345488 0.559142)} Corner 288 6 {wid=799 normal=(-0.69883 -0.707966 -0.102083)} Corner 218 7 {wid=579 normal=(-0.0709034 0.671173 -0.737902)} Corner 485 7 {wid=1303 normal=(-0.534979 0.834261 0.133437)} Corner 365 7 {wid=555 normal=(0 0.999995 -0.00325909)} Corner 218 8 {wid=579 normal=(-0.0709034 0.671173 -0.737902)} Corner 19 9 {wid=19 normal=(-0.151259 0.959982 -0.235702)} Corner 454 9 {wid=1235 normal=(-0.273945 -0.383981 0.881766)} Corner 217 10 {wid=578 normal=(-0.96545 0.188575 0.179844)} Corner 10 10 {wid=48 normal=(-0.683589 0.238787 0.6897)} Corner 11 12 {wid=11 normal=(-0.828352 -0.0345488 0.559142)} Corner 288 12 {wid=10 normal=(-0.69883 -0.707966 -0.102083)} Corner 439 14 {wid=69 normal=(0.662237 -0.194709 -0.723554)} Corner 34 14 {wid=70 normal=(0.648159 0.0211272 0.761212)} Corner 35 14 {wid=71 normal=(0.373135 0.0229888 0.927492)} Corner 331 15 {wid=921 normal=(0.7667 -0.171988 -0.61854)} Corner 32 15 {wid=68 normal=(-0.540482 -0.26169 -0.799623)} Corner 30 15 {wid=66 normal=(-0.379854 -0.255921 -0.888941)} Corner 439 16 {wid=69 normal=(0.662237 -0.194709 -0.723554)} Corner 331 16 {wid=921 normal=(0.7667 -0.171988 -0.61854)} Corner 30 16 {wid=66 normal=(-0.379854 -0.255921 -0.888941)} Corner 31 17 {wid=67 normal=(-0.695748 -8.50387e-005 0.718286)} Corner 489 17 {wid=1314 normal=(-0.892668 -0.251227 -0.374204)} Corner 30 17 {wid=66 normal=(-0.379854 -0.255921 -0.888941)} Corner 32 18 {wid=68 normal=(-0.540482 -0.26169 -0.799623)} Corner 31 18 {wid=67 normal=(-0.695748 -8.50387e-005 0.718286)} Corner 30 18 {wid=66 normal=(-0.379854 -0.255921 -0.888941)} Corner 35 19 {wid=71 normal=(0.373135 0.0229888 0.927492)} Corner 230 19 {wid=615 normal=(-0.0296346 0.0852488 0.995919)} Corner 31 19 {wid=67 normal=(-0.695748 -8.50387e-005 0.718286)} Corner 32 20 {wid=32 normal=(-0.23044 0.156806 -0.960369)} Corner 347 20 {wid=962 normal=(0.647487 0.021701 -0.761767)} Corner 280 20 {wid=31 normal=(-0.610713 -0.106723 -0.784627)} Corner 159 22 {wid=40 normal=(0.695748 -8.50411e-005 0.718286)} Corner 253 22 {wid=41 normal=(0.974606 -0.220042 -0.0415301)} Corner 503 22 {wid=1340 normal=(0.0296358 0.0852481 0.99592)} Corner 234 23 {wid=36 normal=(-0.401139 -0.87131 -0.282678)} Corner 459 23 {wid=1246 normal=(-0.437007 -0.898389 -0.0438495)} Corner 478 23 {wid=38 normal=(-0.520127 -0.61836 0.589152)} Corner 428 24 {wid=1173 normal=(-0.550002 -0.0093556 -0.835111)} Corner 338 25 {wid=65 normal=(0 -1 0)} Corner 75 25 {wid=57 normal=(0 -1 0)} Corner 119 25 {wid=55 normal=(0 -1 0)} Corner 24 26 {wid=54 normal=(-0.962513 0.0685396 0.262437)} Corner 328 26 {wid=56 normal=(0.0988593 0.0704348 0.992606)} Corner 60 26 {wid=61 normal=(-0.479476 -0.00956728 0.877503)} Corner 84 27 {wid=60 normal=(0.894103 0.425578 -0.139507)} Corner 338 27 {wid=64 normal=(0.930445 -0.0305283 -0.365158)} Corner 119 27 {wid=24 normal=(0.908819 -0.00467443 -0.417165)} Corner 337 28 {wid=27 normal=(0.788446 0.539029 -0.29631)} Corner 129 28 {wid=25 normal=(0.954018 0.297262 -0.0385421)} Corner 29 28 {wid=29 normal=(0.946831 0.0160895 -0.321329)} Corner 103 29 {wid=42 normal=(0 -1 0)} Corner 461 29 {wid=45 normal=(0 -1 0)} Corner 72 29 {wid=43 normal=(0 -1 0)} Corner 105 30 {wid=286 normal=(-0.606138 -0.509583 -0.610673)} Corner 5 30 {wid=5 normal=(-0.015093 0.0262476 -0.999542)} Corner 6 30 {wid=6 normal=(-0.865239 -0.0778686 0.495276)} Corner 6 31 {wid=6 normal=(-0.865239 -0.0778686 0.495276)} Corner 330 31 {wid=919 normal=(-0.0988593 0.0704348 0.992606)} Corner 52 31 {wid=8 normal=(-0.0654443 0.149197 0.986639)} Corner 6 32 {wid=6 normal=(-0.865239 -0.0778686 0.495276)} Corner 5 32 {wid=5 normal=(-0.015093 0.0262476 -0.999542)} Corner 7 32 {wid=7 normal=(-0.824241 0.178461 -0.537381)} Corner 401 33 {wid=62 normal=(0.283469 -0.26181 0.922551)} Corner 180 33 {wid=47 normal=(0.0247551 0.0123975 0.999617)} Corner 194 33 {wid=51 normal=(2.09548e-009 -0.395188 0.9186)} Corner 116 34 {wid=317 normal=(0.662786 0.0799745 0.744525)} Corner 350 34 {wid=46 normal=(-0.47972 0.0996945 0.87174)} Corner 114 35 {wid=309 normal=(0.16498 0.98619 0.014546)} Corner 264 35 {wid=726 normal=(-0.190205 0.546764 -0.815397)} Corner 85 35 {wid=224 normal=(0.689266 0.238421 -0.684155)} Corner 117 36 {wid=319 normal=(-0.213802 -0.0586599 0.975114)} Corner 251 36 {wid=693 normal=(-0.159337 -0.206901 0.9653)} Corner 54 36 {wid=76 normal=(0.479719 0.0996946 0.87174)} Corner 455 37 {wid=75 normal=(-0.943824 0.128633 -0.304383)} Corner 37 37 {wid=77 normal=(-0.762401 -0.0852374 -0.641467)} Corner 63 37 {wid=73 normal=(-0.929039 -0.251419 -0.27143)} Corner 186 38 {wid=79 normal=(-0.928126 -0.0819367 -0.363137)} Corner 37 38 {wid=77 normal=(-0.762401 -0.0852374 -0.641467)} Corner 455 38 {wid=75 normal=(-0.943824 0.128633 -0.304383)} Corner 154 39 {wid=80 normal=(0.97635 -0.190004 0.103147)} Corner 48 39 {wid=81 normal=(0.531962 -0.173805 -0.828739)} Corner 87 39 {wid=78 normal=(0.11546 -0.133125 -0.984351)} Corner 26 40 {wid=59 normal=(0.32379 0.188469 -0.927168)} Corner 42 40 {wid=82 normal=(0 -0.139361 -0.990242)} Corner 426 40 {wid=1169 normal=(0.561629 0.298281 -0.771752)} Corner 298 41 {wid=84 normal=(0.24585 -0.951927 -0.182738)} Corner 15 41 {wid=85 normal=(0.343435 -0.934565 -0.0929585)} Corner 201 41 {wid=83 normal=(0.175924 -0.953989 -0.242808)} Corner 283 42 {wid=88 normal=(-0.225944 1.37548e-005 -0.97414)} Corner 284 42 {wid=86 normal=(0.521469 1.20539e-005 -0.85327)} Corner 91 42 {wid=90 normal=(0.850008 7.48799e-006 -0.52677)} Corner 447 43 {wid=89 normal=(-0.434047 -0.393368 -0.810472)} Corner 133 43 {wid=91 normal=(-0.362049 0.0782298 -0.928871)} Corner 39 43 {wid=87 normal=(0.362049 0.0782295 -0.928871)} Corner 160 44 {wid=94 normal=(-0.353175 0.319994 0.879131)} Corner 239 44 {wid=393 normal=(-0.352004 0.565395 0.745939)} Corner 161 45 {wid=95 normal=(-0.984651 0.0846602 -0.152628)} Corner 141 45 {wid=96 normal=(-0.993202 0.0549633 -0.102614)} Corner 376 45 {wid=93 normal=(-0.388515 -0.192575 0.901094)} Corner 414 46 {wid=1140 normal=(0.206474 -0.819079 0.535236)} Corner 178 46 {wid=469 normal=(-0.058053 0.0128031 0.998232)} Corner 376 46 {wid=1049 normal=(-0.206474 -0.819079 0.535236)} Corner 56 47 {wid=97 normal=(0.547319 -0.831191 0.097798)} Corner 266 47 {wid=98 normal=(0.227239 -0.435966 0.870802)} Corner 47 47 {wid=115 normal=(0.353176 0.319994 0.879131)} Corner 381 48 {wid=99 normal=(-0.906912 -0.338567 0.250765)} Corner 222 48 {wid=590 normal=(-0.386485 -0.511135 0.767704)} Corner 209 49 {wid=549 normal=(-0.335349 0.342609 -0.877588)} Corner 431 49 {wid=1181 normal=(0.13043 0.357426 -0.924789)} Corner 42 49 {wid=82 normal=(0 -0.139361 -0.990242)} Corner 65 50 {wid=102 normal=(-0.974624 -0.189857 0.118585)} Corner 43 50 {wid=101 normal=(-0.680891 -0.174538 0.711283)} Corner 44 50 {wid=103 normal=(-0.758315 -0.224429 -0.612039)} Corner 116 51 {wid=317 normal=(0.662786 0.0799745 0.744525)} Corner 279 51 {wid=766 normal=(-0.169868 -0.137751 0.975792)} Corner 200 52 {wid=517 normal=(-0.323791 0.18847 -0.927167)} Corner 74 52 {wid=104 normal=(-0.708389 0.30408 -0.636962)} Corner 101 52 {wid=275 normal=(-0.736123 0.398544 -0.547068)} Corner 200 53 {wid=106 normal=(0.613884 0.105292 -0.782343)} Corner 45 53 {wid=107 normal=(0.326962 0.230981 -0.916375)} Corner 138 53 {wid=105 normal=(0.326963 0.230981 -0.916375)} Corner 15 54 {wid=110 normal=(0.943824 0.128633 -0.304383)} Corner 45 54 {wid=108 normal=(0.762402 -0.0852369 -0.641466)} Corner 201 54 {wid=111 normal=(0.928126 -0.0819367 -0.363137)} Corner 15 55 {wid=15 normal=(0.947637 -0.304113 0.0974711)} Corner 505 55 {wid=1345 normal=(0.758099 -0.608837 0.233671)} Corner 26 56 {wid=59 normal=(0.32379 0.188469 -0.927168)} Corner 174 56 {wid=112 normal=(0.708388 0.30408 -0.636963)} Corner 152 56 {wid=114 normal=(0.345105 0.279656 -0.895933)} Corner 132 57 {wid=367 normal=(0.978102 0.204744 -0.0373693)} Corner 251 57 {wid=52 normal=(0.460284 -0.059013 0.885808)} Corner 113 57 {wid=113 normal=(0.906912 -0.338567 0.250765)} Corner 275 58 {wid=28 normal=(0.34656 0.750953 0.562108)} Corner 114 58 {wid=309 normal=(0.16498 0.98619 0.014546)} Corner 205 58 {wid=535 normal=(0.860041 0.200645 -0.469117)} Corner 273 59 {wid=746 normal=(-0.0385036 0.23259 0.971813)} Corner 56 59 {wid=97 normal=(0.547319 -0.831191 0.097798)} Corner 47 59 {wid=115 normal=(0.353176 0.319994 0.879131)} Corner 36 60 {wid=116 normal=(-0.990214 -0.0617282 -0.125162)} Corner 49 60 {wid=118 normal=(-0.796625 -0.109466 -0.59448)} Corner 50 60 {wid=117 normal=(-0.638923 -0.0807716 0.765018)} Corner 36 61 {wid=116 normal=(-0.990214 -0.0617282 -0.125162)} Corner 87 61 {wid=78 normal=(0.11546 -0.133125 -0.984351)} Corner 48 61 {wid=81 normal=(0.531962 -0.173805 -0.828739)} Corner 48 62 {wid=81 normal=(0.531962 -0.173805 -0.828739)} Corner 49 62 {wid=118 normal=(-0.796625 -0.109466 -0.59448)} Corner 36 62 {wid=116 normal=(-0.990214 -0.0617282 -0.125162)} Corner 48 63 {wid=120 normal=(0.53755 0.292608 -0.790835)} Corner 49 63 {wid=119 normal=(-0.812633 0.230291 -0.535343)} Corner 154 64 {wid=80 normal=(0.97635 -0.190004 0.103147)} Corner 301 64 {wid=835 normal=(0.699632 -0.208878 0.683289)} Corner 48 64 {wid=81 normal=(0.531962 -0.173805 -0.828739)} Corner 154 65 {wid=80 normal=(0.97635 -0.190004 0.103147)} Corner 153 65 {wid=300 normal=(0.162149 -0.146138 0.975885)} Corner 301 65 {wid=835 normal=(0.699632 -0.208878 0.683289)} Corner 101 66 {wid=275 normal=(-0.736123 0.398544 -0.547068)} Corner 435 66 {wid=1190 normal=(-0.844464 0.274691 -0.459812)} Corner 200 66 {wid=517 normal=(-0.323791 0.18847 -0.927167)} Corner 350 67 {wid=123 normal=(-0.258422 0.118779 0.958702)} Corner 51 67 {wid=122 normal=(-0.878715 0.225038 0.420973)} Corner 107 68 {wid=125 normal=(0.984446 -0.0348826 -0.172193)} Corner 52 68 {wid=8 normal=(-0.0654443 0.149197 0.986639)} Corner 330 68 {wid=919 normal=(-0.0988593 0.0704348 0.992606)} Corner 104 69 {wid=126 normal=(0.268312 0.89905 0.346002)} Corner 6 69 {wid=127 normal=(-0.65579 0.646986 -0.389035)} Corner 52 69 {wid=124 normal=(0.182916 0.911737 0.367802)} Corner 107 70 {wid=125 normal=(0.984446 -0.0348826 -0.172193)} Corner 53 70 {wid=44 normal=(0.484084 -0.0675311 0.872412)} Corner 52 70 {wid=8 normal=(-0.0654443 0.149197 0.986639)} Corner 107 71 {wid=125 normal=(0.984446 -0.0348826 -0.172193)} Corner 5 71 {wid=5 normal=(-0.015093 0.0262476 -0.999542)} Corner 229 71 {wid=613 normal=(0.285196 -0.349738 -0.892383)} Corner 28 72 {wid=63 normal=(0.844464 0.27469 -0.459812)} Corner 54 72 {wid=128 normal=(0.258422 0.118779 0.958702)} Corner 132 72 {wid=367 normal=(0.978102 0.204744 -0.0373693)} Corner 28 73 {wid=130 normal=(0.857805 7.30082e-006 -0.513976)} Corner 172 73 {wid=449 normal=(0.824361 -7.99856e-006 0.566065)} Corner 54 73 {wid=129 normal=(0.687627 -1.0239e-005 0.726063)} Corner 149 74 {wid=402 normal=(-0.129889 -0.693318 0.708829)} Corner 441 74 {wid=657 normal=(0.254437 -0.916983 -0.307251)} Corner 9 75 {wid=9 normal=(-0.203103 0.248811 -0.947017)} Corner 55 75 {wid=132 normal=(0.353376 -0.327211 -0.876389)} Corner 91 76 {wid=135 normal=(0.852678 7.3782e-006 -0.522437)} Corner 474 76 {wid=1277 normal=(0.690295 -9.26699e-006 0.723528)} Corner 172 76 {wid=137 normal=(0.824134 -6.81426e-006 0.566395)} Corner 199 77 {wid=136 normal=(0.993201 0.0549632 -0.102614)} Corner 115 77 {wid=138 normal=(0.984651 0.0846602 -0.152628)} Corner 56 77 {wid=134 normal=(0.948439 0.0166693 0.316522)} Corner 250 79 {wid=692 normal=(0.244695 -0.097176 -0.964718)} Corner 202 80 {wid=142 normal=(-0.428192 0.447876 0.784894)} Corner 226 80 {wid=140 normal=(-0.580706 0.285838 0.762284)} Corner 314 80 {wid=144 normal=(-0.201106 0.336165 0.920081)} Corner 202 81 {wid=143 normal=(-0.951888 0.223843 0.209292)} Corner 32 81 {wid=145 normal=(-0.816215 0.268904 -0.511355)} Corner 58 81 {wid=141 normal=(-0.981522 0.182192 0.0584899)} Corner 489 82 {wid=1315 normal=(-0.900996 -0.0910117 -0.424173)} Corner 30 82 {wid=30 normal=(-0.438481 -0.0943603 -0.893773)} Corner 27 84 {wid=148 normal=(0.824242 0.178461 -0.537381)} Corner 183 84 {wid=483 normal=(0.903737 -0.139763 0.404631)} Corner 328 84 {wid=56 normal=(0.0988593 0.0704348 0.992606)} Corner 255 85 {wid=149 normal=(-0.336806 0.574854 -0.745724)} Corner 430 85 {wid=150 normal=(-0.277194 0.756013 -0.592965)} Corner 60 85 {wid=147 normal=(-0.312981 0.618961 -0.720368)} Corner 24 86 {wid=152 normal=(-0.957923 0.0920842 0.27185)} Corner 61 86 {wid=151 normal=(-0.93671 0.042744 0.347486)} Corner 25 86 {wid=153 normal=(0.0189398 0.74245 0.669634)} Corner 387 87 {wid=1073 normal=(-0.105432 0.131005 -0.985759)} Corner 188 87 {wid=154 normal=(0.642382 0.0601608 -0.76402)} Corner 120 87 {wid=325 normal=(-0.729423 0.184251 -0.658782)} Corner 250 88 {wid=691 normal=(0.379854 -0.255921 -0.888941)} Corner 62 88 {wid=37 normal=(0.371459 -0.255684 -0.892549)} Corner 64 88 {wid=156 normal=(-0.482358 -0.205572 -0.851511)} Corner 250 89 {wid=691 normal=(0.379854 -0.255921 -0.888941)} Corner 253 89 {wid=41 normal=(0.974606 -0.220042 -0.0415301)} Corner 62 89 {wid=37 normal=(0.371459 -0.255684 -0.892549)} Corner 295 90 {wid=821 normal=(-0.997054 -0.0676643 0.0361118)} Corner 303 90 {wid=157 normal=(-0.996647 -0.0664181 0.0477801)} Corner 187 90 {wid=160 normal=(-0.425673 -0.201149 -0.882237)} Corner 455 91 {wid=1239 normal=(-0.947636 -0.304113 0.0974719)} Corner 63 91 {wid=158 normal=(-0.7581 -0.608838 0.23367)} Corner 503 92 {wid=1340 normal=(0.0296358 0.0852481 0.99592)} Corner 336 92 {wid=936 normal=(-0.863052 -0.0451684 0.503092)} Corner 159 92 {wid=40 normal=(0.695748 -8.50411e-005 0.718286)} Corner 2 93 {wid=39 normal=(-0.648158 0.0211275 0.761213)} Corner 1 93 {wid=155 normal=(-0.992525 -0.117469 0.0330816)} Corner 336 93 {wid=936 normal=(-0.863052 -0.0451684 0.503092)} Corner 67 94 {wid=163 normal=(-0.0655602 -0.158371 -0.985201)} Corner 65 94 {wid=102 normal=(-0.974624 -0.189857 0.118585)} Corner 44 94 {wid=103 normal=(-0.758315 -0.224429 -0.612039)} Corner 66 95 {wid=161 normal=(0.353673 -0.100818 0.92992)} Corner 43 95 {wid=101 normal=(-0.680891 -0.174538 0.711283)} Corner 65 95 {wid=102 normal=(-0.974624 -0.189857 0.118585)} Corner 498 96 {wid=1331 normal=(0.990214 -0.0617275 -0.125162)} Corner 324 96 {wid=898 normal=(0.987937 -0.0634772 -0.141247)} Corner 300 96 {wid=833 normal=(0.407364 -0.12871 -0.904151)} Corner 164 97 {wid=162 normal=(0.614169 -0.0831513 0.784781)} Corner 43 97 {wid=101 normal=(-0.680891 -0.174538 0.711283)} Corner 66 97 {wid=161 normal=(0.353673 -0.100818 0.92992)} Corner 324 98 {wid=898 normal=(0.987937 -0.0634772 -0.141247)} Corner 67 98 {wid=163 normal=(-0.0655602 -0.158371 -0.985201)} Corner 300 98 {wid=833 normal=(0.407364 -0.12871 -0.904151)} Corner 94 99 {wid=165 normal=(-0.0015627 -0.999938 0.0110636)} Corner 108 99 {wid=166 normal=(-0.0111583 -0.999906 -0.0080223)} Corner 93 99 {wid=164 normal=(-0.0496144 -0.99851 -0.0227029)} Corner 163 100 {wid=169 normal=(-0.0877167 -0.238441 -0.967188)} Corner 290 100 {wid=167 normal=(-0.952866 -0.213026 -0.216022)} Corner 189 100 {wid=171 normal=(0.425673 -0.201149 -0.882236)} Corner 44 101 {wid=170 normal=(-0.749024 -0.226827 -0.622504)} Corner 43 101 {wid=172 normal=(-0.669396 -0.174188 0.722197)} Corner 170 101 {wid=168 normal=(-0.97761 -0.190335 0.0897288)} Corner 27 102 {wid=148 normal=(0.824242 0.178461 -0.537381)} Corner 69 102 {wid=173 normal=(0.606139 -0.509583 -0.610673)} Corner 183 102 {wid=483 normal=(0.903737 -0.139763 0.404631)} Corner 27 103 {wid=148 normal=(0.824242 0.178461 -0.537381)} Corner 299 103 {wid=831 normal=(-0.21561 -0.352229 -0.91074)} Corner 69 103 {wid=173 normal=(0.606139 -0.509583 -0.610673)} Corner 111 104 {wid=159 normal=(0.420084 -0.164547 0.892442)} Corner 480 104 {wid=175 normal=(0.158136 -0.146102 0.976549)} Corner 184 104 {wid=487 normal=(-0.804192 -0.0531573 0.591987)} Corner 111 105 {wid=159 normal=(0.420084 -0.164547 0.892442)} Corner 193 105 {wid=176 normal=(0.976651 -0.190122 0.100034)} Corner 480 105 {wid=175 normal=(0.158136 -0.146102 0.976549)} Corner 96 106 {wid=179 normal=(0 0.493971 0.869479)} Corner 238 106 {wid=177 normal=(0 0.935108 0.354362)} Corner 145 106 {wid=394 normal=(0 0.855328 0.518087)} Corner 9 107 {wid=9 normal=(-0.203103 0.248811 -0.947017)} Corner 311 107 {wid=866 normal=(0.103675 0.746416 -0.657354)} Corner 71 107 {wid=178 normal=(-0.689265 0.238422 -0.684155)} Corner 81 108 {wid=183 normal=(0.955532 0.205096 -0.211883)} Corner 72 108 {wid=181 normal=(0.973367 0.0443024 -0.22493)} Corner 235 108 {wid=631 normal=(0.879032 0.0281601 0.475931)} Corner 106 109 {wid=184 normal=(-0.894104 0.425578 -0.139507)} Corner 103 109 {wid=186 normal=(-0.908819 -0.00467442 -0.417165)} Corner 392 109 {wid=182 normal=(-0.930445 -0.0305283 -0.365158)} Corner 26 110 {wid=59 normal=(0.32379 0.188469 -0.927168)} Corner 73 110 {wid=187 normal=(0.736123 0.398545 -0.547069)} Corner 174 110 {wid=112 normal=(0.708388 0.30408 -0.636963)} Corner 26 111 {wid=59 normal=(0.32379 0.188469 -0.927168)} Corner 28 111 {wid=63 normal=(0.844464 0.27469 -0.459812)} Corner 73 111 {wid=187 normal=(0.736123 0.398545 -0.547069)} Corner 68 112 {wid=190 normal=(-0.483984 -0.841711 -0.239337)} Corner 138 112 {wid=188 normal=(0.228757 -0.450348 -0.863051)} Corner 45 112 {wid=192 normal=(0.228757 -0.450348 -0.863051)} Corner 122 113 {wid=191 normal=(-0.8867 -0.301003 -0.350942)} Corner 101 113 {wid=275 normal=(-0.736123 0.398544 -0.547068)} Corner 420 113 {wid=189 normal=(-0.93082 -0.0244507 -0.36466)} Corner 25 114 {wid=194 normal=(-0.00671065 0.738814 0.673876)} Corner 302 114 {wid=271 normal=(-0.305963 0.863737 0.400432)} Corner 84 114 {wid=195 normal=(0.504899 0.759721 0.409758)} Corner 25 115 {wid=194 normal=(-0.00671065 0.738814 0.673876)} Corner 61 115 {wid=196 normal=(-0.876826 -0.0381892 0.479289)} Corner 75 115 {wid=193 normal=(-0.973367 0.044302 -0.22493)} Corner 196 116 {wid=198 normal=(-0.687546 -1.02436e-005 0.726141)} Corner 291 116 {wid=804 normal=(-0.922822 -5.45893e-006 0.385228)} Corner 195 116 {wid=199 normal=(-0.879861 6.70713e-006 -0.47523)} Corner 196 117 {wid=198 normal=(-0.687546 -1.02436e-005 0.726141)} Corner 92 117 {wid=200 normal=(0.142648 -1.39781e-005 0.989775)} Corner 121 117 {wid=197 normal=(-0.142646 -1.39781e-005 0.989774)} Corner 286 118 {wid=426 normal=(0.677438 0.517632 0.522623)} Corner 10 119 {wid=48 normal=(-0.683589 0.238787 0.6897)} Corner 217 119 {wid=578 normal=(-0.96545 0.188575 0.179844)} Corner 137 120 {wid=372 normal=(0.537093 -0.226403 0.812572)} Corner 95 120 {wid=252 normal=(0.686827 0.296644 -0.663529)} Corner 137 121 {wid=372 normal=(0.537093 -0.226403 0.812572)} Corner 193 122 {wid=206 normal=(0.399457 -0.914021 0.0707083)} Corner 113 122 {wid=204 normal=(0.443806 -0.893067 -0.0739522)} Corner 480 122 {wid=208 normal=(0.200618 -0.886834 0.416266)} Corner 46 123 {wid=207 normal=(0.973771 -0.189492 0.125949)} Corner 227 123 {wid=606 normal=(0.0877167 -0.238441 -0.967188)} Corner 79 123 {wid=205 normal=(0.83286 -0.214419 -0.510263)} Corner 72 124 {wid=43 normal=(0 -1 0)} Corner 392 124 {wid=210 normal=(0 -1 0)} Corner 103 124 {wid=42 normal=(0 -1 0)} Corner 207 125 {wid=212 normal=(0.954761 0.0258756 0.296246)} Corner 363 125 {wid=213 normal=(0.957075 -0.00105636 0.28984)} Corner 128 125 {wid=211 normal=(-0.847783 0.183224 0.497687)} Corner 106 126 {wid=215 normal=(-0.504899 0.759723 0.409758)} Corner 81 126 {wid=183 normal=(0.955532 0.205096 -0.211883)} Corner 8 126 {wid=185 normal=(0.00671065 0.738814 0.673876)} Corner 427 127 {wid=216 normal=(-0.272574 0.961589 -0.0324126)} Corner 128 127 {wid=217 normal=(-0.534997 0.764104 0.360448)} Corner 363 127 {wid=214 normal=(0.765794 0.604494 0.219425)} Corner 189 128 {wid=171 normal=(0.425673 -0.201149 -0.882236)} Corner 423 128 {wid=1164 normal=(0.855577 -0.132652 -0.500392)} Corner 163 128 {wid=169 normal=(-0.0877167 -0.238441 -0.967188)} Corner 182 129 {wid=481 normal=(0.804192 -0.0531578 0.591987)} Corner 83 129 {wid=219 normal=(-0.158136 -0.146102 0.976549)} Corner 82 129 {wid=218 normal=(0.821084 -0.0516671 0.568465)} Corner 165 130 {wid=220 normal=(-0.143713 -0.145342 0.978888)} Corner 83 130 {wid=219 normal=(-0.158136 -0.146102 0.976549)} Corner 170 130 {wid=221 normal=(-0.973771 -0.189491 0.125948)} Corner 165 131 {wid=220 normal=(-0.143713 -0.145342 0.978888)} Corner 82 131 {wid=218 normal=(0.821084 -0.0516671 0.568465)} Corner 83 131 {wid=219 normal=(-0.158136 -0.146102 0.976549)} Corner 502 132 {wid=222 normal=(0.98103 0.0389605 -0.189902)} Corner 84 132 {wid=60 normal=(0.894103 0.425578 -0.139507)} Corner 119 132 {wid=24 normal=(0.908819 -0.00467443 -0.417165)} Corner 501 133 {wid=223 normal=(0.628226 0.6916 0.356401)} Corner 25 133 {wid=194 normal=(-0.00671065 0.738814 0.673876)} Corner 84 133 {wid=195 normal=(0.504899 0.759721 0.409758)} Corner 9 134 {wid=9 normal=(-0.203103 0.248811 -0.947017)} Corner 85 134 {wid=224 normal=(0.689266 0.238421 -0.684155)} Corner 264 134 {wid=726 normal=(-0.190205 0.546764 -0.815397)} Corner 96 135 {wid=226 normal=(-4.02751e-006 0.943551 0.331227)} Corner 179 135 {wid=227 normal=(4.02871e-006 0.943551 0.331227)} Corner 144 135 {wid=225 normal=(4.0136e-006 0.946042 0.324043)} Corner 266 136 {wid=229 normal=(0.802927 -0.420439 0.422538)} Corner 181 136 {wid=228 normal=(0.660614 -0.615839 -0.429338)} Corner 268 136 {wid=231 normal=(0.860323 -0.496588 0.115089)} Corner 39 137 {wid=230 normal=(0.340102 -0.668111 -0.661784)} Corner 133 137 {wid=368 normal=(-0.340102 -0.668111 -0.661784)} Corner 135 138 {wid=233 normal=(-0.410626 -0.129138 -0.902613)} Corner 87 138 {wid=232 normal=(0.0876081 -0.131964 -0.987375)} Corner 36 138 {wid=234 normal=(-0.997081 -0.0668073 -0.0369678)} Corner 228 139 {wid=605 normal=(0.852114 -0.176284 -0.492774)} Corner 46 139 {wid=235 normal=(0.97761 -0.190335 0.0897288)} Corner 87 139 {wid=232 normal=(0.0876081 -0.131964 -0.987375)} Corner 70 140 {wid=72 normal=(-0.121938 -0.561137 0.818692)} Corner 184 140 {wid=237 normal=(-0.331964 -0.857713 0.392592)} Corner 70 141 {wid=72 normal=(-0.121938 -0.561137 0.818692)} Corner 117 141 {wid=319 normal=(-0.213802 -0.0586599 0.975114)} Corner 387 142 {wid=1074 normal=(0.0150934 0.0262485 -0.999542)} Corner 299 142 {wid=831 normal=(-0.21561 -0.352229 -0.91074)} Corner 27 142 {wid=148 normal=(0.824242 0.178461 -0.537381)} Corner 24 143 {wid=54 normal=(-0.962513 0.0685396 0.262437)} Corner 60 143 {wid=61 normal=(-0.479476 -0.00956728 0.877503)} Corner 89 143 {wid=174 normal=(-0.769754 -0.211784 0.602185)} Corner 189 144 {wid=171 normal=(0.425673 -0.201149 -0.882236)} Corner 90 144 {wid=238 normal=(0.996647 -0.0664186 0.0477804)} Corner 82 144 {wid=218 normal=(0.821084 -0.0516671 0.568465)} Corner 45 145 {wid=108 normal=(0.762402 -0.0852369 -0.641466)} Corner 15 145 {wid=110 normal=(0.943824 0.128633 -0.304383)} Corner 326 145 {wid=239 normal=(0.929039 -0.251419 -0.27143)} Corner 150 146 {wid=240 normal=(0.852677 7.37821e-006 -0.522438)} Corner 91 146 {wid=135 normal=(0.852678 7.3782e-006 -0.522437)} Corner 172 146 {wid=137 normal=(0.824134 -6.81426e-006 0.566395)} Corner 150 147 {wid=240 normal=(0.852677 7.37821e-006 -0.522438)} Corner 287 147 {wid=798 normal=(0.0409818 1.41132e-005 -0.99916)} Corner 91 147 {wid=135 normal=(0.852678 7.3782e-006 -0.522437)} Corner 56 148 {wid=134 normal=(0.948439 0.0166693 0.316522)} Corner 464 148 {wid=242 normal=(0.395789 -0.238275 0.886891)} Corner 199 148 {wid=136 normal=(0.993201 0.0549632 -0.102614)} Corner 414 149 {wid=244 normal=(0.466976 -0.0365867 0.883513)} Corner 333 149 {wid=245 normal=(-0.231565 -0.428902 0.873167)} Corner 464 149 {wid=243 normal=(0.899131 0.00922871 0.437583)} Corner 67 150 {wid=247 normal=(-0.0563933 0.313278 -0.947986)} Corner 93 150 {wid=246 normal=(-0.439854 -0.793636 -0.420323)} Corner 65 150 {wid=248 normal=(-0.982786 0.122871 0.137968)} Corner 67 151 {wid=247 normal=(-0.0563933 0.313278 -0.947986)} Corner 93 151 {wid=246 normal=(-0.439854 -0.793636 -0.420323)} Corner 324 152 {wid=899 normal=(0.985658 0.150248 -0.0768383)} Corner 67 152 {wid=247 normal=(-0.0563933 0.313278 -0.947986)} Corner 66 153 {wid=250 normal=(0.331068 -0.0360768 0.942917)} Corner 108 153 {wid=251 normal=(-0.218175 -0.605207 0.765588)} Corner 94 153 {wid=249 normal=(0.522959 -0.815795 -0.246966)} Corner 143 156 {wid=254 normal=(0.0107234 0.499778 -0.866087)} Corner 232 156 {wid=253 normal=(0.00520121 0.69086 -0.72297)} Corner 340 156 {wid=255 normal=(-0.0184147 0.468522 -0.88326)} Corner 143 157 {wid=254 normal=(0.0107234 0.499778 -0.866087)} Corner 238 157 {wid=256 normal=(0 0.941437 -0.337188)} Corner 232 157 {wid=253 normal=(0.00520121 0.69086 -0.72297)} Corner 178 158 {wid=469 normal=(-0.058053 0.0128031 0.998232)} Corner 437 158 {wid=1194 normal=(0.0580514 0.0128031 0.998232)} Corner 98 159 {wid=258 normal=(0 0.433755 0.901031)} Corner 96 159 {wid=179 normal=(0 0.493971 0.869479)} Corner 146 159 {wid=180 normal=(0 0.433755 0.901031)} Corner 304 160 {wid=261 normal=(0 0.524018 0.851707)} Corner 98 160 {wid=259 normal=(0 0.524018 0.851707)} Corner 438 160 {wid=263 normal=(0 0.524018 0.851707)} Corner 41 161 {wid=262 normal=(-0.880324 0.460965 0.111988)} Corner 205 161 {wid=536 normal=(-0.193883 0.953745 -0.22974)} Corner 177 161 {wid=260 normal=(-0.867446 0.465311 0.176136)} Corner 3 162 {wid=267 normal=(0.951888 0.223843 0.209292)} Corner 99 162 {wid=265 normal=(0.708086 -0.416778 -0.570009)} Corner 62 162 {wid=269 normal=(0.816214 0.268905 -0.511356)} Corner 277 163 {wid=268 normal=(0.580706 0.285838 0.762284)} Corner 142 163 {wid=270 normal=(0.201106 0.336165 0.920081)} Corner 278 163 {wid=266 normal=(0.580706 0.285838 0.762284)} Corner 75 164 {wid=193 normal=(-0.973367 0.044302 -0.22493)} Corner 302 164 {wid=271 normal=(-0.305963 0.863737 0.400432)} Corner 25 164 {wid=194 normal=(-0.00671065 0.738814 0.673876)} Corner 321 165 {wid=273 normal=(0 -1 0)} Corner 29 165 {wid=274 normal=(0 -1 0)} Corner 190 165 {wid=272 normal=(0 -1 0)} Corner 136 166 {wid=371 normal=(-0.978102 0.204743 -0.0373688)} Corner 381 166 {wid=99 normal=(-0.906912 -0.338567 0.250765)} Corner 51 167 {wid=122 normal=(-0.878715 0.225038 0.420973)} Corner 136 167 {wid=371 normal=(-0.978102 0.204743 -0.0373688)} Corner 408 168 {wid=1121 normal=(0 1.41228e-005 -1)} Corner 283 168 {wid=88 normal=(-0.225944 1.37548e-005 -0.97414)} Corner 91 168 {wid=90 normal=(0.850008 7.48799e-006 -0.52677)} Corner 195 169 {wid=199 normal=(-0.879861 6.70713e-006 -0.47523)} Corner 291 169 {wid=804 normal=(-0.922822 -5.45893e-006 0.385228)} Corner 141 169 {wid=381 normal=(-0.999937 1.70911e-007 -0.011248)} Corner 5 170 {wid=278 normal=(0.105432 0.131005 -0.985759)} Corner 358 170 {wid=1002 normal=(-0.860201 0.00831142 -0.509888)} Corner 7 170 {wid=280 normal=(-0.836927 0.0674514 -0.543142)} Corner 126 171 {wid=279 normal=(-0.00230553 -0.999998 0.000255022)} Corner 305 171 {wid=281 normal=(-0.00373078 -0.999993 0.000396875)} Corner 358 171 {wid=277 normal=(2.27678e-005 -1 2.32865e-005)} Corner 53 172 {wid=283 normal=(0.916883 0.394348 0.0617615)} Corner 104 172 {wid=126 normal=(0.268312 0.89905 0.346002)} Corner 52 172 {wid=124 normal=(0.182916 0.911737 0.367802)} Corner 53 173 {wid=284 normal=(0.365021 0.395132 -0.842989)} Corner 382 173 {wid=285 normal=(0.325833 0.579534 -0.746976)} Corner 104 173 {wid=282 normal=(0.261087 0.820211 -0.509007)} Corner 53 174 {wid=284 normal=(0.365021 0.395132 -0.842989)} Corner 105 174 {wid=287 normal=(0.284235 0.762056 -0.581792)} Corner 382 174 {wid=285 normal=(0.325833 0.579534 -0.746976)} Corner 53 175 {wid=44 normal=(0.484084 -0.0675311 0.872412)} Corner 107 175 {wid=125 normal=(0.984446 -0.0348826 -0.172193)} Corner 417 175 {wid=1145 normal=(0.906052 -0.272825 0.323476)} Corner 7 176 {wid=280 normal=(-0.836927 0.0674514 -0.543142)} Corner 134 176 {wid=288 normal=(-0.91253 0.395356 -0.104799)} Corner 8 176 {wid=289 normal=(-0.0189398 0.74245 0.669634)} Corner 7 177 {wid=280 normal=(-0.836927 0.0674514 -0.543142)} Corner 103 177 {wid=276 normal=(-0.860201 0.00831142 -0.509888)} Corner 134 177 {wid=288 normal=(-0.91253 0.395356 -0.104799)} Corner 8 178 {wid=289 normal=(-0.0189398 0.74245 0.669634)} Corner 107 178 {wid=290 normal=(0.983031 0.12505 0.134214)} Corner 330 178 {wid=920 normal=(-0.0395833 0.744261 0.666715)} Corner 305 179 {wid=292 normal=(0.78331 -0.612992 0.103274)} Corner 416 179 {wid=293 normal=(0.759173 -0.532975 -0.373624)} Corner 276 179 {wid=291 normal=(0.851956 0.284125 -0.439822)} Corner 65 180 {wid=248 normal=(-0.982786 0.122871 0.137968)} Corner 108 180 {wid=251 normal=(-0.218175 -0.605207 0.765588)} Corner 66 180 {wid=250 normal=(0.331068 -0.0360768 0.942917)} Corner 65 181 {wid=248 normal=(-0.982786 0.122871 0.137968)} Corner 93 181 {wid=246 normal=(-0.439854 -0.793636 -0.420323)} Corner 108 181 {wid=251 normal=(-0.218175 -0.605207 0.765588)} Corner 279 182 {wid=766 normal=(-0.169868 -0.137751 0.975792)} Corner 116 182 {wid=317 normal=(0.662786 0.0799745 0.744525)} Corner 83 183 {wid=100 normal=(0.0640179 -0.877756 0.474812)} Corner 182 183 {wid=295 normal=(0.331964 -0.857713 0.392592)} Corner 301 184 {wid=836 normal=(0.715968 0.0696846 0.694645)} Corner 110 184 {wid=121 normal=(0.879339 -0.474861 0.0356342)} Corner 48 184 {wid=120 normal=(0.53755 0.292608 -0.790835)} Corner 112 185 {wid=298 normal=(-0.00632668 -0.998353 -0.0570122)} Corner 118 185 {wid=299 normal=(0.0205935 -0.999773 -0.00552606)} Corner 110 185 {wid=296 normal=(0.0209979 -0.999646 -0.0163451)} Corner 36 186 {wid=234 normal=(-0.997081 -0.0668073 -0.0369678)} Corner 295 186 {wid=820 normal=(-0.997572 -0.0654858 -0.0237164)} Corner 135 186 {wid=233 normal=(-0.410626 -0.129138 -0.902613)} Corner 36 187 {wid=116 normal=(-0.990214 -0.0617282 -0.125162)} Corner 50 187 {wid=117 normal=(-0.638923 -0.0807716 0.765018)} Corner 493 187 {wid=1320 normal=(-0.833485 -0.0539916 0.549898)} Corner 301 188 {wid=836 normal=(0.715968 0.0696846 0.694645)} Corner 112 188 {wid=302 normal=(0.194745 -0.474158 0.858632)} Corner 110 188 {wid=121 normal=(0.879339 -0.474861 0.0356342)} Corner 50 189 {wid=297 normal=(-0.577613 -0.0155202 0.816162)} Corner 118 189 {wid=303 normal=(-0.606342 -0.750993 0.261453)} Corner 112 189 {wid=302 normal=(0.194745 -0.474158 0.858632)} Corner 79 190 {wid=306 normal=(0.302597 -0.835833 -0.458058)} Corner 394 190 {wid=304 normal=(0.483685 -0.874025 0.0461481)} Corner 193 190 {wid=308 normal=(0.472213 -0.872108 -0.128232)} Corner 409 191 {wid=307 normal=(0.93082 -0.0244507 -0.36466)} Corner 73 191 {wid=187 normal=(0.736123 0.398545 -0.547069)} Corner 394 191 {wid=305 normal=(0.8867 -0.301003 -0.350942)} Corner 47 192 {wid=115 normal=(0.353176 0.319994 0.879131)} Corner 114 192 {wid=309 normal=(0.16498 0.98619 0.014546)} Corner 275 192 {wid=28 normal=(0.34656 0.750953 0.562108)} Corner 269 193 {wid=311 normal=(0.935065 -0.152129 -0.320172)} Corner 323 193 {wid=312 normal=(0.935015 -0.152194 -0.320288)} Corner 114 193 {wid=310 normal=(0.935042 -0.152173 -0.320219)} Corner 39 194 {wid=315 normal=(0.565194 0.0500575 -0.823438)} Corner 115 194 {wid=313 normal=(0.697214 0.191199 -0.690895)} Corner 254 194 {wid=316 normal=(0.696765 -0.303158 -0.650088)} Corner 39 195 {wid=230 normal=(0.340102 -0.668111 -0.661784)} Corner 115 195 {wid=314 normal=(0.829604 -0.447757 -0.333573)} Corner 15 196 {wid=15 normal=(0.947637 -0.304113 0.0974711)} Corner 371 196 {wid=1044 normal=(0.89887 -0.350427 0.263121)} Corner 352 197 {wid=318 normal=(0.00730276 -0.485786 0.874047)} Corner 401 197 {wid=62 normal=(0.283469 -0.26181 0.922551)} Corner 194 197 {wid=51 normal=(2.09548e-009 -0.395188 0.9186)} Corner 456 198 {wid=74 normal=(-0.901057 -0.428475 0.0671155)} Corner 352 198 {wid=976 normal=(-0.384018 -0.8482 0.364811)} Corner 194 198 {wid=320 normal=(-0.468409 -0.591226 0.65654)} Corner 455 199 {wid=1239 normal=(-0.947636 -0.304113 0.0974719)} Corner 352 199 {wid=976 normal=(-0.384018 -0.8482 0.364811)} Corner 49 200 {wid=119 normal=(-0.812633 0.230291 -0.535343)} Corner 118 200 {wid=303 normal=(-0.606342 -0.750993 0.261453)} Corner 50 200 {wid=297 normal=(-0.577613 -0.0155202 0.816162)} Corner 49 201 {wid=119 normal=(-0.812633 0.230291 -0.535343)} Corner 118 201 {wid=303 normal=(-0.606342 -0.750993 0.261453)} Corner 468 202 {wid=322 normal=(0 -1 0)} Corner 119 202 {wid=55 normal=(0 -1 0)} Corner 75 202 {wid=57 normal=(0 -1 0)} Corner 386 203 {wid=323 normal=(-0.451303 0.221246 -0.864509)} Corner 385 203 {wid=324 normal=(-0.451303 0.221246 -0.864509)} Corner 155 203 {wid=321 normal=(-0.371525 -0.377398 -0.848257)} Corner 297 204 {wid=327 normal=(-0.78331 -0.612992 0.103274)} Corner 386 204 {wid=326 normal=(-0.851956 0.284125 -0.439822)} Corner 411 204 {wid=328 normal=(-0.759173 -0.532975 -0.373624)} Corner 61 205 {wid=151 normal=(-0.93671 0.042744 0.347486)} Corner 24 205 {wid=152 normal=(-0.957923 0.0920842 0.27185)} Corner 120 205 {wid=325 normal=(-0.729423 0.184251 -0.658782)} Corner 376 206 {wid=330 normal=(-0.466977 -0.0365867 0.883513)} Corner 333 206 {wid=245 normal=(-0.231565 -0.428902 0.873167)} Corner 414 206 {wid=244 normal=(0.466976 -0.0365867 0.883513)} Corner 376 207 {wid=93 normal=(-0.388515 -0.192575 0.901094)} Corner 141 207 {wid=96 normal=(-0.993202 0.0549633 -0.102614)} Corner 292 207 {wid=329 normal=(-0.395789 -0.238275 0.886891)} Corner 68 208 {wid=332 normal=(-0.8867 -0.301003 -0.350942)} Corner 122 208 {wid=191 normal=(-0.8867 -0.301003 -0.350942)} Corner 420 208 {wid=189 normal=(-0.93082 -0.0244507 -0.36466)} Corner 223 209 {wid=333 normal=(-0.399457 -0.914021 0.0707083)} Corner 222 209 {wid=334 normal=(-0.200618 -0.886834 0.416266)} Corner 381 209 {wid=331 normal=(-0.443806 -0.893066 -0.0739529)} Corner 58 210 {wid=337 normal=(0.437007 -0.898389 -0.0438496)} Corner 245 210 {wid=335 normal=(0.443909 -0.539081 0.715776)} Corner 237 210 {wid=635 normal=(0.544284 -0.838716 -0.0176263)} Corner 58 211 {wid=141 normal=(-0.981522 0.182192 0.0584899)} Corner 32 211 {wid=145 normal=(-0.816215 0.268904 -0.511355)} Corner 280 211 {wid=336 normal=(-0.991112 0.125768 0.0433507)} Corner 62 212 {wid=341 normal=(0.23044 0.156806 -0.960369)} Corner 263 212 {wid=339 normal=(0.610714 -0.106722 -0.784627)} Corner 64 212 {wid=342 normal=(-0.574638 0.117965 -0.809862)} Corner 62 213 {wid=269 normal=(0.816214 0.268905 -0.511356)} Corner 99 213 {wid=265 normal=(0.708086 -0.416778 -0.570009)} Corner 124 213 {wid=340 normal=(0.991112 0.125768 0.0433507)} Corner 331 214 {wid=922 normal=(0.732505 0.0983596 -0.673618)} Corner 347 214 {wid=962 normal=(0.647487 0.021701 -0.761767)} Corner 32 214 {wid=32 normal=(-0.23044 0.156806 -0.960369)} Corner 35 215 {wid=343 normal=(0.849738 0.18401 0.494051)} Corner 204 215 {wid=344 normal=(0.27705 0.461878 0.842563)} Corner 383 216 {wid=347 normal=(-0.389073 0.0869761 -0.917092)} Corner 126 216 {wid=345 normal=(-0.396052 0.0261731 -0.917855)} Corner 358 216 {wid=349 normal=(-0.813757 0.000301535 -0.581206)} Corner 383 217 {wid=348 normal=(0.451303 0.221246 -0.864509)} Corner 364 217 {wid=350 normal=(0.451303 0.221246 -0.864509)} Corner 126 217 {wid=346 normal=(0.345151 -0.49242 -0.798995)} Corner 80 220 {wid=354 normal=(-0.946831 0.0160895 -0.321329)} Corner 128 220 {wid=352 normal=(-0.954017 0.297262 -0.0385421)} Corner 427 220 {wid=356 normal=(-0.788446 0.539029 -0.29631)} Corner 80 221 {wid=355 normal=(0 -1 0)} Corner 395 221 {wid=357 normal=(0 -1 0)} Corner 219 221 {wid=353 normal=(0 -1 0)} Corner 100 222 {wid=360 normal=(-0.355815 0.917834 0.176005)} Corner 129 222 {wid=358 normal=(0.534997 0.764104 0.360448)} Corner 337 222 {wid=362 normal=(0.272574 0.961589 -0.0324126)} Corner 378 223 {wid=361 normal=(-0.957075 -0.00105637 0.28984)} Corner 321 223 {wid=363 normal=(-0.954761 0.0258756 0.296246)} Corner 190 223 {wid=359 normal=(0.0677854 -0.0181222 0.997535)} Corner 40 224 {wid=131 normal=(0.134376 -1.39895e-005 0.99093)} Corner 210 224 {wid=364 normal=(-0.134377 -1.39962e-005 0.99093)} Corner 402 224 {wid=400 normal=(0.134377 -1.39895e-005 0.99093)} Corner 40 225 {wid=131 normal=(0.134376 -1.39895e-005 0.99093)} Corner 51 225 {wid=365 normal=(-0.981946 -2.67981e-006 0.189162)} Corner 210 225 {wid=364 normal=(-0.134377 -1.39962e-005 0.99093)} Corner 73 228 {wid=187 normal=(0.736123 0.398545 -0.547069)} Corner 132 228 {wid=367 normal=(0.978102 0.204744 -0.0373693)} Corner 394 228 {wid=305 normal=(0.8867 -0.301003 -0.350942)} Corner 73 229 {wid=187 normal=(0.736123 0.398545 -0.547069)} Corner 28 229 {wid=63 normal=(0.844464 0.27469 -0.459812)} Corner 132 229 {wid=367 normal=(0.978102 0.204744 -0.0373693)} Corner 441 230 {wid=657 normal=(0.254437 -0.916983 -0.307251)} Corner 161 230 {wid=434 normal=(-0.829604 -0.447757 -0.333573)} Corner 55 231 {wid=132 normal=(0.353376 -0.327211 -0.876389)} Corner 133 231 {wid=368 normal=(-0.340102 -0.668111 -0.661784)} Corner 106 232 {wid=184 normal=(-0.894104 0.425578 -0.139507)} Corner 134 232 {wid=369 normal=(-0.98103 0.0389605 -0.189902)} Corner 103 232 {wid=186 normal=(-0.908819 -0.00467442 -0.417165)} Corner 106 233 {wid=215 normal=(-0.504899 0.759723 0.409758)} Corner 8 233 {wid=185 normal=(0.00671065 0.738814 0.673876)} Corner 134 233 {wid=370 normal=(-0.818872 0.539947 0.194697)} Corner 187 234 {wid=160 normal=(-0.425673 -0.201149 -0.882237)} Corner 135 234 {wid=209 normal=(-0.439117 -0.199548 -0.875989)} Corner 295 234 {wid=821 normal=(-0.997054 -0.0676643 0.0361118)} Corner 187 235 {wid=160 normal=(-0.425673 -0.201149 -0.882237)} Corner 79 235 {wid=205 normal=(0.83286 -0.214419 -0.510263)} Corner 227 235 {wid=606 normal=(0.0877167 -0.238441 -0.967188)} Corner 101 236 {wid=275 normal=(-0.736123 0.398544 -0.547068)} Corner 136 236 {wid=371 normal=(-0.978102 0.204743 -0.0373688)} Corner 51 236 {wid=122 normal=(-0.878715 0.225038 0.420973)} Corner 101 237 {wid=275 normal=(-0.736123 0.398544 -0.547068)} Corner 122 237 {wid=191 normal=(-0.8867 -0.301003 -0.350942)} Corner 136 237 {wid=371 normal=(-0.978102 0.204743 -0.0373688)} Corner 11 238 {wid=11 normal=(-0.828352 -0.0345488 0.559142)} Corner 158 239 {wid=428 normal=(0.863874 -0.497627 0.0780372)} Corner 137 239 {wid=373 normal=(0.537093 -0.226403 0.812572)} Corner 74 240 {wid=376 normal=(-0.64344 -0.40071 -0.65224)} Corner 138 240 {wid=374 normal=(-0.346636 -0.459137 -0.817947)} Corner 68 240 {wid=377 normal=(-0.64344 -0.400709 -0.65224)} Corner 74 241 {wid=104 normal=(-0.708389 0.30408 -0.636962)} Corner 200 241 {wid=517 normal=(-0.323791 0.18847 -0.927167)} Corner 138 241 {wid=375 normal=(-0.345105 0.279656 -0.895933)} Corner 440 242 {wid=1199 normal=(0.0639027 -0.274665 0.959414)} Corner 175 243 {wid=457 normal=(0.0769674 -0.843962 0.530852)} Corner 39 244 {wid=87 normal=(0.362049 0.0782295 -0.928871)} Corner 482 244 {wid=379 normal=(0.434047 -0.393368 -0.810472)} Corner 447 244 {wid=89 normal=(-0.434047 -0.393368 -0.810472)} Corner 39 245 {wid=315 normal=(0.565194 0.0500575 -0.823438)} Corner 254 245 {wid=316 normal=(0.696765 -0.303158 -0.650088)} Corner 476 245 {wid=380 normal=(0.325796 -0.164946 -0.93094)} Corner 102 246 {wid=383 normal=(-0.325796 -0.164946 -0.93094)} Corner 270 246 {wid=382 normal=(-0.696765 -0.303158 -0.650088)} Corner 133 246 {wid=384 normal=(-0.565194 0.0500577 -0.823438)} Corner 283 247 {wid=88 normal=(-0.225944 1.37548e-005 -0.97414)} Corner 195 247 {wid=199 normal=(-0.879861 6.70713e-006 -0.47523)} Corner 271 247 {wid=739 normal=(-0.521469 1.20464e-005 -0.85327)} Corner 336 248 {wid=937 normal=(-0.849738 0.184009 0.494051)} Corner 466 248 {wid=1263 normal=(-0.646524 0.194492 0.737686)} Corner 467 248 {wid=386 normal=(-0.248883 0.548747 0.798081)} Corner 64 249 {wid=342 normal=(-0.574638 0.117965 -0.809862)} Corner 234 249 {wid=629 normal=(-0.935322 -0.188589 -0.299344)} Corner 478 249 {wid=1285 normal=(-0.998142 0.0581908 0.0180403)} Corner 9 250 {wid=388 normal=(0.0202698 0.67308 -0.739292)} Corner 143 250 {wid=387 normal=(0.0215079 0.708354 -0.70553)} Corner 85 250 {wid=389 normal=(0.232514 0.712305 -0.662238)} Corner 9 251 {wid=388 normal=(0.0202698 0.67308 -0.739292)} Corner 71 251 {wid=390 normal=(-0.221294 0.707756 -0.670903)} Corner 143 251 {wid=387 normal=(0.0215079 0.708354 -0.70553)} Corner 85 252 {wid=264 normal=(-0.454583 0.854963 -0.249784)} Corner 340 252 {wid=391 normal=(-0.453887 0.843881 0.286096)} Corner 177 252 {wid=260 normal=(-0.867446 0.465311 0.176136)} Corner 85 253 {wid=264 normal=(-0.454583 0.854963 -0.249784)} Corner 143 253 {wid=392 normal=(0.453887 0.843881 0.286096)} Corner 340 253 {wid=391 normal=(-0.453887 0.843881 0.286096)} Corner 97 254 {wid=257 normal=(0.038502 0.23259 0.971813)} Corner 239 254 {wid=393 normal=(-0.352004 0.565395 0.745939)} Corner 146 255 {wid=180 normal=(0 0.433755 0.901031)} Corner 96 255 {wid=179 normal=(0 0.493971 0.869479)} Corner 145 255 {wid=394 normal=(0 0.855328 0.518087)} Corner 97 256 {wid=397 normal=(0.823243 0.566297 0.0397297)} Corner 146 256 {wid=395 normal=(0.8313 0.554691 -0.0354683)} Corner 145 256 {wid=398 normal=(0.873469 0.477051 0.0973334)} Corner 438 257 {wid=263 normal=(0 0.524018 0.851707)} Corner 98 257 {wid=259 normal=(0 0.524018 0.851707)} Corner 146 257 {wid=396 normal=(0 0.524018 0.851707)} Corner 54 260 {wid=76 normal=(0.479719 0.0996946 0.87174)} Corner 403 260 {wid=401 normal=(-0.161808 0.0720115 0.984191)} Corner 117 260 {wid=319 normal=(-0.213802 -0.0586599 0.975114)} Corner 54 261 {wid=129 normal=(0.687627 -1.0239e-005 0.726063)} Corner 172 261 {wid=449 normal=(0.824361 -7.99856e-006 0.566065)} Corner 402 261 {wid=400 normal=(0.134377 -1.39895e-005 0.99093)} Corner 160 262 {wid=94 normal=(-0.353175 0.319994 0.879131)} Corner 149 262 {wid=402 normal=(-0.129889 -0.693318 0.708829)} Corner 208 263 {wid=404 normal=(-0.935042 -0.152174 -0.320216)} Corner 243 263 {wid=405 normal=(-0.935041 -0.152173 -0.320221)} Corner 442 263 {wid=403 normal=(-0.935039 -0.152138 -0.320243)} Corner 28 264 {wid=130 normal=(0.857805 7.30082e-006 -0.513976)} Corner 150 264 {wid=406 normal=(0.857806 7.3008e-006 -0.513974)} Corner 172 264 {wid=449 normal=(0.824361 -7.99856e-006 0.566065)} Corner 426 265 {wid=1168 normal=(0.526783 1.20048e-005 -0.85)} Corner 287 265 {wid=797 normal=(0.102579 1.40492e-005 -0.994725)} Corner 150 265 {wid=406 normal=(0.857806 7.3008e-006 -0.513974)} Corner 433 266 {wid=550 normal=(-0.342231 1.32704e-005 -0.939615)} Corner 287 266 {wid=797 normal=(0.102579 1.40492e-005 -0.994725)} Corner 432 266 {wid=1180 normal=(0.22411 1.3766e-005 -0.974564)} Corner 51 267 {wid=365 normal=(-0.981946 -2.67981e-006 0.189162)} Corner 436 267 {wid=1192 normal=(-0.687629 -1.0239e-005 0.726063)} Corner 151 267 {wid=407 normal=(-0.857805 7.30093e-006 -0.513975)} Corner 187 268 {wid=410 normal=(-0.0839995 -0.832451 -0.547694)} Corner 152 268 {wid=408 normal=(-0.228757 -0.450348 -0.863051)} Corner 79 268 {wid=412 normal=(0.585519 -0.805486 -0.0914339)} Corner 37 269 {wid=411 normal=(-0.326962 0.230981 -0.916375)} Corner 26 269 {wid=413 normal=(-0.613884 0.105292 -0.782343)} Corner 152 269 {wid=409 normal=(-0.326963 0.230981 -0.916375)} Corner 111 270 {wid=301 normal=(0.439072 -0.16797 0.882611)} Corner 153 270 {wid=414 normal=(0.139682 -0.145153 0.979499)} Corner 154 270 {wid=415 normal=(0.976305 -0.19022 0.103172)} Corner 295 271 {wid=820 normal=(-0.997572 -0.0654858 -0.0237164)} Corner 36 271 {wid=234 normal=(-0.997081 -0.0668073 -0.0369678)} Corner 493 271 {wid=1321 normal=(-0.825323 -0.052926 0.562174)} Corner 46 272 {wid=235 normal=(0.97761 -0.190335 0.0897288)} Corner 154 272 {wid=415 normal=(0.976305 -0.19022 0.103172)} Corner 87 272 {wid=232 normal=(0.0876081 -0.131964 -0.987375)} Corner 46 273 {wid=235 normal=(0.97761 -0.190335 0.0897288)} Corner 111 273 {wid=301 normal=(0.439072 -0.16797 0.882611)} Corner 154 273 {wid=415 normal=(0.976305 -0.19022 0.103172)} Corner 351 274 {wid=418 normal=(0.813757 0.000301535 -0.581206)} Corner 155 274 {wid=416 normal=(0.396052 0.0261731 -0.917855)} Corner 188 274 {wid=420 normal=(0.553129 0.00661669 -0.83307)} Corner 351 275 {wid=419 normal=(0.00198237 -0.999998 0.000241191)} Corner 297 275 {wid=421 normal=(0.00371279 -0.999993 0.000356575)} Corner 411 275 {wid=417 normal=(0.00254064 -0.999997 0.000278416)} Corner 307 276 {wid=854 normal=(-0.297729 -0.393513 0.869773)} Corner 156 276 {wid=423 normal=(0.27638 -0.639914 0.717025)} Corner 185 276 {wid=425 normal=(0 -0.544973 0.838454)} Corner 294 277 {wid=818 normal=(0.578853 0.0194597 -0.815199)} Corner 95 277 {wid=252 normal=(0.686827 0.296644 -0.663529)} Corner 486 277 {wid=1305 normal=(-0.419169 0.132876 -0.898132)} Corner 513 278 {wid=427 normal=(0.765972 -0.625534 0.148303)} Corner 137 278 {wid=373 normal=(0.537093 -0.226403 0.812572)} Corner 22 279 {wid=201 normal=(0.633129 0.771813 0.0587491)} Corner 296 279 {wid=822 normal=(0.933305 0.342152 0.108973)} Corner 286 279 {wid=426 normal=(0.677438 0.517632 0.522623)} Corner 185 280 {wid=425 normal=(0 -0.544973 0.838454)} Corner 158 280 {wid=429 normal=(-0.433532 -0.517833 0.737496)} Corner 308 280 {wid=856 normal=(-0.491351 -0.317371 0.811079)} Corner 262 281 {wid=719 normal=(0.430916 -0.720868 -0.542826)} Corner 158 281 {wid=428 normal=(0.863874 -0.497627 0.0780372)} Corner 467 282 {wid=432 normal=(0.532707 0.611883 0.584656)} Corner 445 282 {wid=430 normal=(0.351847 0.673001 0.650594)} Corner 336 282 {wid=433 normal=(0.130865 0.713508 0.688317)} Corner 213 283 {wid=556 normal=(0.445816 -0.244315 -0.861138)} Corner 62 283 {wid=269 normal=(0.816214 0.268905 -0.511356)} Corner 445 283 {wid=431 normal=(0.964442 -0.0385043 -0.261475)} Corner 257 284 {wid=707 normal=(-0.860041 0.200646 -0.469117)} Corner 160 284 {wid=94 normal=(-0.353175 0.319994 0.879131)} Corner 239 284 {wid=393 normal=(-0.352004 0.565395 0.745939)} Corner 71 285 {wid=178 normal=(-0.689265 0.238422 -0.684155)} Corner 311 285 {wid=866 normal=(0.103675 0.746416 -0.657354)} Corner 412 285 {wid=547 normal=(-0.223275 0.954009 0.200038)} Corner 133 286 {wid=368 normal=(-0.340102 -0.668111 -0.661784)} Corner 161 286 {wid=434 normal=(-0.829604 -0.447757 -0.333573)} Corner 55 286 {wid=132 normal=(0.353376 -0.327211 -0.876389)} Corner 133 287 {wid=384 normal=(-0.565194 0.0500577 -0.823438)} Corner 270 287 {wid=382 normal=(-0.696765 -0.303158 -0.650088)} Corner 161 287 {wid=435 normal=(-0.697214 0.191199 -0.690895)} Corner 162 288 {wid=436 normal=(-0.501228 -0.441033 -0.744487)} Corner 320 288 {wid=885 normal=(0.582796 -0.404103 0.705018)} Corner 162 289 {wid=436 normal=(-0.501228 -0.441033 -0.744487)} Corner 300 290 {wid=834 normal=(0.414419 -0.129161 -0.900874)} Corner 163 290 {wid=437 normal=(-0.110531 -0.132589 -0.984989)} Corner 423 290 {wid=1165 normal=(0.827383 -0.112459 -0.550264)} Corner 44 291 {wid=170 normal=(-0.749024 -0.226827 -0.622504)} Corner 170 291 {wid=168 normal=(-0.97761 -0.190335 0.0897288)} Corner 163 291 {wid=437 normal=(-0.110531 -0.132589 -0.984989)} Corner 423 292 {wid=1165 normal=(0.827383 -0.112459 -0.550264)} Corner 498 292 {wid=1330 normal=(0.9456 -0.0937641 -0.311527)} Corner 300 292 {wid=834 normal=(0.414419 -0.129161 -0.900874)} Corner 82 293 {wid=438 normal=(0.806427 -0.0546584 0.588802)} Corner 165 293 {wid=440 normal=(-0.154454 -0.145935 0.977163)} Corner 164 293 {wid=439 normal=(0.623812 -0.0797057 0.7775)} Corner 43 294 {wid=172 normal=(-0.669396 -0.174188 0.722197)} Corner 165 294 {wid=440 normal=(-0.154454 -0.145935 0.977163)} Corner 170 294 {wid=168 normal=(-0.97761 -0.190335 0.0897288)} Corner 43 295 {wid=172 normal=(-0.669396 -0.174188 0.722197)} Corner 164 295 {wid=439 normal=(0.623812 -0.0797057 0.7775)} Corner 165 295 {wid=440 normal=(-0.154454 -0.145935 0.977163)} Corner 484 296 {wid=1 normal=(-0.962462 0.261098 -0.0741227)} Corner 95 298 {wid=252 normal=(0.686827 0.296644 -0.663529)} Corner 168 298 {wid=443 normal=(-0.474002 0.372686 -0.797764)} Corner 486 298 {wid=1305 normal=(-0.419169 0.132876 -0.898132)} Corner 390 300 {wid=445 normal=(0.0249524 -0.920545 -0.389838)} Corner 168 300 {wid=444 normal=(0.015772 -0.822228 -0.56894)} Corner 465 300 {wid=446 normal=(-0.0248163 -0.920525 -0.389895)} Corner 486 301 {wid=1305 normal=(-0.419169 0.132876 -0.898132)} Corner 168 301 {wid=443 normal=(-0.474002 0.372686 -0.797764)} Corner 197 303 {wid=515 normal=(-0.0923451 0.7469 0.658492)} Corner 494 303 {wid=1322 normal=(-0.122348 0.0806769 0.989203)} Corner 290 304 {wid=167 normal=(-0.952866 -0.213026 -0.216022)} Corner 170 304 {wid=221 normal=(-0.973771 -0.189491 0.125948)} Corner 83 304 {wid=219 normal=(-0.158136 -0.146102 0.976549)} Corner 290 305 {wid=167 normal=(-0.952866 -0.213026 -0.216022)} Corner 163 305 {wid=169 normal=(-0.0877167 -0.238441 -0.967188)} Corner 170 305 {wid=221 normal=(-0.973771 -0.189491 0.125948)} Corner 296 307 {wid=822 normal=(0.933305 0.342152 0.108973)} Corner 384 307 {wid=1066 normal=(-0.212633 0.429771 0.877545)} Corner 40 308 {wid=450 normal=(0.137465 -1.39866e-005 0.990507)} Corner 172 308 {wid=137 normal=(0.824134 -6.81426e-006 0.566395)} Corner 474 308 {wid=1277 normal=(0.690295 -9.26699e-006 0.723528)} Corner 40 309 {wid=131 normal=(0.134376 -1.39895e-005 0.99093)} Corner 402 309 {wid=400 normal=(0.134377 -1.39895e-005 0.99093)} Corner 172 309 {wid=449 normal=(0.824361 -7.99856e-006 0.566065)} Corner 92 310 {wid=200 normal=(0.142648 -1.39781e-005 0.989775)} Corner 173 310 {wid=451 normal=(0.687547 -1.02545e-005 0.72614)} Corner 121 310 {wid=197 normal=(-0.142646 -1.39781e-005 0.989774)} Corner 474 311 {wid=1276 normal=(0.687548 -1.02546e-005 0.726141)} Corner 199 311 {wid=452 normal=(0.999937 1.70911e-007 -0.011248)} Corner 173 311 {wid=451 normal=(0.687547 -1.02545e-005 0.72614)} Corner 475 312 {wid=454 normal=(0.8867 -0.301003 -0.350943)} Corner 409 312 {wid=307 normal=(0.93082 -0.0244507 -0.36466)} Corner 394 312 {wid=305 normal=(0.8867 -0.301003 -0.350942)} Corner 475 313 {wid=455 normal=(0.64344 -0.400709 -0.65224)} Corner 152 313 {wid=456 normal=(0.346636 -0.459137 -0.817947)} Corner 174 313 {wid=453 normal=(0.64344 -0.40071 -0.65224)} Corner 197 314 {wid=459 normal=(-0.0923452 0.7469 0.658493)} Corner 175 314 {wid=458 normal=(0.0769674 -0.843962 0.530852)} Corner 494 314 {wid=460 normal=(-0.122348 0.0806769 0.989203)} Corner 197 315 {wid=515 normal=(-0.0923451 0.7469 0.658492)} Corner 440 315 {wid=1199 normal=(0.0639027 -0.274665 0.959414)} Corner 440 316 {wid=1199 normal=(0.0639027 -0.274665 0.959414)} Corner 296 317 {wid=463 normal=(0.933304 0.342152 0.108973)} Corner 384 317 {wid=464 normal=(-0.212634 0.429772 0.877544)} Corner 429 317 {wid=462 normal=(0.617079 -0.547383 0.565319)} Corner 179 318 {wid=466 normal=(-1 9.86183e-005 -0.000206575)} Corner 206 318 {wid=465 normal=(-1 1.82505e-006 0.000121235)} Corner 144 318 {wid=468 normal=(-1 1.49578e-005 0.000330856)} Corner 98 319 {wid=467 normal=(-0.8313 0.554691 -0.0354682)} Corner 41 319 {wid=262 normal=(-0.880324 0.460965 0.111988)} Corner 274 319 {wid=748 normal=(-0.88147 0.462314 0.0963107)} Corner 273 320 {wid=746 normal=(-0.0385036 0.23259 0.971813)} Corner 178 320 {wid=469 normal=(-0.058053 0.0128031 0.998232)} Corner 414 320 {wid=1140 normal=(0.206474 -0.819079 0.535236)} Corner 41 321 {wid=262 normal=(-0.880324 0.460965 0.111988)} Corner 98 321 {wid=467 normal=(-0.8313 0.554691 -0.0354682)} Corner 304 321 {wid=470 normal=(-0.820134 0.570936 0.037586)} Corner 98 322 {wid=258 normal=(0 0.433755 0.901031)} Corner 179 322 {wid=471 normal=(0 0.493971 0.869479)} Corner 96 322 {wid=179 normal=(0 0.493971 0.869479)} Corner 98 323 {wid=258 normal=(0 0.433755 0.901031)} Corner 274 323 {wid=472 normal=(0 0.717336 0.696728)} Corner 179 323 {wid=471 normal=(0 0.493971 0.869479)} Corner 210 324 {wid=475 normal=(-0.000284401 -0.999998 0.00199279)} Corner 180 324 {wid=473 normal=(-0.0002943 -0.999998 0.00206073)} Corner 148 324 {wid=477 normal=(0.0002943 -0.999998 0.00206073)} Corner 130 325 {wid=476 normal=(-0.676588 0.0929373 0.730473)} Corner 116 325 {wid=478 normal=(-0.196305 -0.727873 0.657012)} Corner 180 325 {wid=474 normal=(-0.281157 0.0446223 0.958624)} Corner 508 326 {wid=479 normal=(0.39285 -0.471953 -0.789259)} Corner 181 326 {wid=228 normal=(0.660614 -0.615839 -0.429338)} Corner 267 326 {wid=729 normal=(0.507567 -0.817401 -0.272452)} Corner 264 327 {wid=725 normal=(0.496832 0.29331 -0.816778)} Corner 114 327 {wid=480 normal=(0.746108 0.633005 -0.206462)} Corner 265 327 {wid=727 normal=(0.628745 -0.192601 -0.753382)} Corner 90 328 {wid=238 normal=(0.996647 -0.0664186 0.0477804)} Corner 182 328 {wid=481 normal=(0.804192 -0.0531578 0.591987)} Corner 82 328 {wid=218 normal=(0.821084 -0.0516671 0.568465)} Corner 90 329 {wid=109 normal=(0.52363 -0.834479 0.171631)} Corner 182 329 {wid=482 normal=(0.52363 -0.834479 0.171631)} Corner 60 330 {wid=485 normal=(-0.725011 0.65665 0.207773)} Corner 463 330 {wid=1257 normal=(0.110271 0.958584 0.262595)} Corner 255 330 {wid=486 normal=(0.663897 0.64944 -0.370767)} Corner 60 331 {wid=61 normal=(-0.479476 -0.00956728 0.877503)} Corner 328 331 {wid=56 normal=(0.0988593 0.0704348 0.992606)} Corner 463 331 {wid=1256 normal=(0.406227 0.128465 0.904697)} Corner 63 332 {wid=158 normal=(-0.7581 -0.608838 0.23367)} Corner 184 332 {wid=488 normal=(-0.52363 -0.834479 0.171631)} Corner 303 333 {wid=157 normal=(-0.996647 -0.0664181 0.0477801)} Corner 491 333 {wid=1318 normal=(-0.381745 -0.0985827 0.918994)} Corner 184 333 {wid=487 normal=(-0.804192 -0.0531573 0.591987)} Corner 11 334 {wid=11 normal=(-0.828352 -0.0345488 0.559142)} Corner 309 334 {wid=490 normal=(0.133989 -0.267693 0.954142)} Corner 320 335 {wid=885 normal=(0.582796 -0.404103 0.705018)} Corner 185 335 {wid=489 normal=(-3.57628e-007 -0.610405 -0.792089)} Corner 26 336 {wid=493 normal=(-0.282464 -0.586945 -0.758755)} Corner 186 336 {wid=491 normal=(-0.31112 -0.619302 -0.720881)} Corner 42 336 {wid=494 normal=(-0.32368 -0.633194 -0.703062)} Corner 26 337 {wid=413 normal=(-0.613884 0.105292 -0.782343)} Corner 37 337 {wid=411 normal=(-0.326962 0.230981 -0.916375)} Corner 186 337 {wid=492 normal=(-0.613884 0.105292 -0.782343)} Corner 37 338 {wid=77 normal=(-0.762401 -0.0852374 -0.641467)} Corner 404 338 {wid=495 normal=(-0.707487 -0.329744 -0.625085)} Corner 63 338 {wid=73 normal=(-0.929039 -0.251419 -0.27143)} Corner 37 339 {wid=496 normal=(-0.228756 -0.450348 -0.863051)} Corner 152 339 {wid=408 normal=(-0.228757 -0.450348 -0.863051)} Corner 187 339 {wid=410 normal=(-0.0839995 -0.832451 -0.547694)} Corner 27 340 {wid=497 normal=(0.836927 0.0674515 -0.543142)} Corner 188 340 {wid=154 normal=(0.642382 0.0601608 -0.76402)} Corner 387 340 {wid=1073 normal=(-0.105432 0.131005 -0.985759)} Corner 27 341 {wid=497 normal=(0.836927 0.0674515 -0.543142)} Corner 351 341 {wid=498 normal=(0.860201 0.00831142 -0.509888)} Corner 188 341 {wid=154 normal=(0.642382 0.0601608 -0.76402)} Corner 45 342 {wid=192 normal=(0.228757 -0.450348 -0.863051)} Corner 189 342 {wid=499 normal=(0.0839995 -0.832451 -0.547694)} Corner 68 342 {wid=190 normal=(-0.483984 -0.841711 -0.239337)} Corner 45 343 {wid=108 normal=(0.762402 -0.0852369 -0.641466)} Corner 326 343 {wid=239 normal=(0.929039 -0.251419 -0.27143)} Corner 421 343 {wid=500 normal=(0.707488 -0.329743 -0.625084)} Corner 129 344 {wid=25 normal=(0.954018 0.297262 -0.0385421)} Corner 221 344 {wid=501 normal=(0.998175 0.0237139 -0.0555331)} Corner 29 344 {wid=29 normal=(0.946831 0.0160895 -0.321329)} Corner 129 345 {wid=502 normal=(0.847783 0.183224 0.497687)} Corner 378 345 {wid=361 normal=(-0.957075 -0.00105637 0.28984)} Corner 190 345 {wid=359 normal=(0.0677854 -0.0181222 0.997535)} Corner 192 346 {wid=3 normal=(0.159692 -0.670057 -0.724929)} Corner 191 346 {wid=503 normal=(-0.40538 -0.633565 0.658985)} Corner 478 346 {wid=38 normal=(-0.520127 -0.61836 0.589152)} Corner 99 347 {wid=265 normal=(0.708086 -0.416778 -0.570009)} Corner 3 347 {wid=267 normal=(0.951888 0.223843 0.209292)} Corner 191 347 {wid=504 normal=(0.85741 0.17342 -0.484535)} Corner 99 348 {wid=507 normal=(0.399374 0.907661 -0.129046)} Corner 310 348 {wid=505 normal=(0.466623 0.88074 -0.0809999)} Corner 124 348 {wid=509 normal=(0.474383 0.858881 0.19309)} Corner 249 349 {wid=508 normal=(0.978851 -0.180923 0.0954862)} Corner 362 349 {wid=510 normal=(0.520022 -0.841048 0.149051)} Corner 192 349 {wid=506 normal=(0.563944 -0.814594 0.135661)} Corner 46 350 {wid=207 normal=(0.973771 -0.189492 0.125949)} Corner 193 350 {wid=176 normal=(0.976651 -0.190122 0.100034)} Corner 111 350 {wid=159 normal=(0.420084 -0.164547 0.892442)} Corner 46 351 {wid=207 normal=(0.973771 -0.189492 0.125949)} Corner 79 351 {wid=205 normal=(0.83286 -0.214419 -0.510263)} Corner 193 351 {wid=176 normal=(0.976651 -0.190122 0.100034)} Corner 370 352 {wid=512 normal=(-0.0525061 -0.448979 0.891998)} Corner 194 352 {wid=51 normal=(2.09548e-009 -0.395188 0.9186)} Corner 180 352 {wid=47 normal=(0.0247551 0.0123975 0.999617)} Corner 370 353 {wid=1042 normal=(0.507817 -0.651272 0.563885)} Corner 456 353 {wid=1241 normal=(0.901058 -0.428474 0.0671149)} Corner 194 353 {wid=511 normal=(0.468409 -0.591225 0.656539)} Corner 287 354 {wid=798 normal=(0.0409818 1.41132e-005 -0.99916)} Corner 380 354 {wid=513 normal=(-0.518116 1.20806e-005 -0.85531)} Corner 91 354 {wid=135 normal=(0.852678 7.3782e-006 -0.522437)} Corner 151 355 {wid=241 normal=(-0.852678 7.38484e-006 -0.522438)} Corner 196 355 {wid=514 normal=(-0.690295 -9.25497e-006 0.723528)} Corner 380 355 {wid=513 normal=(-0.518116 1.20806e-005 -0.85531)} Corner 436 356 {wid=1193 normal=(-0.690295 -9.25497e-006 0.723528)} Corner 196 356 {wid=514 normal=(-0.690295 -9.25497e-006 0.723528)} Corner 151 356 {wid=241 normal=(-0.852678 7.38484e-006 -0.522438)} Corner 436 357 {wid=1193 normal=(-0.690295 -9.25497e-006 0.723528)} Corner 92 357 {wid=133 normal=(0.137464 -1.39866e-005 0.990507)} Corner 196 357 {wid=514 normal=(-0.690295 -9.25497e-006 0.723528)} Corner 175 361 {wid=457 normal=(0.0769674 -0.843962 0.530852)} Corner 91 362 {wid=90 normal=(0.850008 7.48799e-006 -0.52677)} Corner 199 362 {wid=452 normal=(0.999937 1.70911e-007 -0.011248)} Corner 474 362 {wid=1276 normal=(0.687548 -1.02546e-005 0.726141)} Corner 91 363 {wid=90 normal=(0.850008 7.48799e-006 -0.52677)} Corner 284 363 {wid=86 normal=(0.521469 1.20539e-005 -0.85327)} Corner 199 363 {wid=452 normal=(0.999937 1.70911e-007 -0.011248)} Corner 42 364 {wid=82 normal=(0 -0.139361 -0.990242)} Corner 200 364 {wid=517 normal=(-0.323791 0.18847 -0.927167)} Corner 209 364 {wid=549 normal=(-0.335349 0.342609 -0.877588)} Corner 201 365 {wid=518 normal=(0.613884 0.105292 -0.782343)} Corner 45 365 {wid=107 normal=(0.326962 0.230981 -0.916375)} Corner 200 365 {wid=106 normal=(0.613884 0.105292 -0.782343)} Corner 42 366 {wid=520 normal=(0.32368 -0.633194 -0.703062)} Corner 201 366 {wid=519 normal=(0.31112 -0.619302 -0.720881)} Corner 200 366 {wid=521 normal=(0.282464 -0.586945 -0.758755)} Corner 42 367 {wid=520 normal=(0.32368 -0.633194 -0.703062)} Corner 298 367 {wid=522 normal=(0.32368 -0.633194 -0.703062)} Corner 201 367 {wid=519 normal=(0.31112 -0.619302 -0.720881)} Corner 342 368 {wid=523 normal=(-0.428192 0.447876 0.784894)} Corner 202 368 {wid=142 normal=(-0.428192 0.447876 0.784894)} Corner 314 368 {wid=144 normal=(-0.201106 0.336165 0.920081)} Corner 203 369 {wid=524 normal=(-0.651974 0.083435 -0.753637)} Corner 32 369 {wid=145 normal=(-0.816215 0.268904 -0.511355)} Corner 202 369 {wid=143 normal=(-0.951888 0.223843 0.209292)} Corner 342 370 {wid=526 normal=(0.581295 -0.283795 0.762598)} Corner 215 370 {wid=525 normal=(0.670781 -0.324256 0.667016)} Corner 216 370 {wid=528 normal=(0.670781 -0.324256 0.667016)} Corner 31 371 {wid=527 normal=(-0.982907 0.148424 0.108925)} Corner 32 371 {wid=145 normal=(-0.816215 0.268904 -0.511355)} Corner 203 371 {wid=524 normal=(-0.651974 0.083435 -0.753637)} Corner 31 372 {wid=531 normal=(-0.242937 0.697796 0.673841)} Corner 204 372 {wid=529 normal=(-0.532707 0.611883 0.584656)} Corner 35 372 {wid=533 normal=(-0.130865 0.713508 0.688317)} Corner 31 373 {wid=532 normal=(-0.848266 0.441294 -0.292753)} Corner 203 373 {wid=534 normal=(-0.830442 0.545321 -0.113979)} Corner 204 373 {wid=530 normal=(-0.701842 0.706779 0.0887772)} Corner 85 374 {wid=224 normal=(0.689266 0.238421 -0.684155)} Corner 205 374 {wid=535 normal=(0.860041 0.200645 -0.469117)} Corner 114 374 {wid=309 normal=(0.16498 0.98619 0.014546)} Corner 85 375 {wid=264 normal=(-0.454583 0.854963 -0.249784)} Corner 177 375 {wid=260 normal=(-0.867446 0.465311 0.176136)} Corner 205 375 {wid=536 normal=(-0.193883 0.953745 -0.22974)} Corner 274 376 {wid=472 normal=(0 0.717336 0.696728)} Corner 206 376 {wid=537 normal=(0 0.935108 0.354362)} Corner 179 376 {wid=471 normal=(0 0.493971 0.869479)} Corner 177 377 {wid=539 normal=(0 0.941437 -0.337188)} Corner 144 377 {wid=540 normal=(0 0.702883 -0.711305)} Corner 206 377 {wid=538 normal=(0 0.941437 -0.337188)} Corner 72 378 {wid=543 normal=(0 -1 0)} Corner 207 378 {wid=541 normal=(0 -1 0)} Corner 80 378 {wid=545 normal=(0 -1 0)} Corner 72 379 {wid=544 normal=(0.926478 0.0317794 0.375004)} Corner 81 379 {wid=546 normal=(0.936621 -0.000655751 0.350343)} Corner 207 379 {wid=542 normal=(0.926478 0.0317794 0.375004)} Corner 160 380 {wid=548 normal=(-0.93504 -0.152175 -0.320222)} Corner 208 380 {wid=404 normal=(-0.935042 -0.152174 -0.320216)} Corner 442 380 {wid=403 normal=(-0.935039 -0.152138 -0.320243)} Corner 160 381 {wid=94 normal=(-0.353175 0.319994 0.879131)} Corner 257 381 {wid=707 normal=(-0.860041 0.200646 -0.469117)} Corner 412 381 {wid=547 normal=(-0.223275 0.954009 0.200038)} Corner 435 382 {wid=1190 normal=(-0.844464 0.274691 -0.459812)} Corner 209 382 {wid=549 normal=(-0.335349 0.342609 -0.877588)} Corner 200 382 {wid=517 normal=(-0.323791 0.18847 -0.927167)} Corner 51 383 {wid=365 normal=(-0.981946 -2.67981e-006 0.189162)} Corner 151 383 {wid=407 normal=(-0.857805 7.30093e-006 -0.513975)} Corner 434 383 {wid=1188 normal=(-0.857805 7.30072e-006 -0.513975)} Corner 130 384 {wid=551 normal=(-0.00712216 -0.999973 0.00188856)} Corner 210 384 {wid=475 normal=(-0.000284401 -0.999998 0.00199279)} Corner 51 384 {wid=552 normal=(-4.99408e-006 -1 -1.61264e-005)} Corner 130 385 {wid=551 normal=(-0.00712216 -0.999973 0.00188856)} Corner 180 385 {wid=473 normal=(-0.0002943 -0.999998 0.00206073)} Corner 210 385 {wid=475 normal=(-0.000284401 -0.999998 0.00199279)} Corner 34 386 {wid=146 normal=(0.68621 0.250027 0.683082)} Corner 22 388 {wid=201 normal=(0.633129 0.771813 0.0587491)} Corner 296 388 {wid=822 normal=(0.933305 0.342152 0.108973)} Corner 22 389 {wid=53 normal=(0.633129 0.771813 0.0587491)} Corner 218 389 {wid=579 normal=(-0.0709034 0.671173 -0.737902)} Corner 365 389 {wid=555 normal=(0 0.999995 -0.00325909)} Corner 467 390 {wid=558 normal=(0.701841 0.706779 0.0887774)} Corner 213 390 {wid=557 normal=(0.830752 0.546999 -0.103166)} Corner 445 390 {wid=559 normal=(0.848266 0.441294 -0.292753)} Corner 3 391 {wid=267 normal=(0.951888 0.223843 0.209292)} Corner 62 391 {wid=269 normal=(0.816214 0.268905 -0.511356)} Corner 213 391 {wid=556 normal=(0.445816 -0.244315 -0.861138)} Corner 3 392 {wid=562 normal=(0.321811 -0.586166 0.743537)} Corner 214 392 {wid=560 normal=(0.321811 -0.586166 0.743537)} Corner 142 392 {wid=564 normal=(0.321811 -0.586166 0.743537)} Corner 3 393 {wid=563 normal=(-0.573438 -0.818795 0.0272617)} Corner 231 393 {wid=565 normal=(-0.901492 -0.432667 -0.0105772)} Corner 240 393 {wid=561 normal=(-0.886219 -0.463015 -0.0152685)} Corner 203 394 {wid=568 normal=(-0.801792 0.35065 0.483916)} Corner 215 394 {wid=566 normal=(-0.782873 0.498596 0.372174)} Corner 204 394 {wid=570 normal=(-0.801792 0.35065 0.483916)} Corner 343 395 {wid=569 normal=(0.250449 -0.594698 -0.763944)} Corner 344 395 {wid=571 normal=(0.385009 -0.918713 -0.0879471)} Corner 345 395 {wid=567 normal=(-0.960975 0.122341 -0.248112)} Corner 202 396 {wid=574 normal=(0.00877815 -0.60464 -0.79645)} Corner 216 396 {wid=572 normal=(-0.0992823 -0.821214 -0.561916)} Corner 203 396 {wid=576 normal=(-0.331197 -0.369194 -0.868334)} Corner 202 397 {wid=575 normal=(0.573438 -0.818795 0.0272617)} Corner 342 397 {wid=577 normal=(0.642186 -0.765877 -0.0320897)} Corner 216 397 {wid=573 normal=(0.901492 -0.432667 -0.0105772)} Corner 285 399 {wid=794 normal=(-0.12469 0.675132 0.727083)} Corner 217 399 {wid=578 normal=(-0.96545 0.188575 0.179844)} Corner 19 400 {wid=581 normal=(-0.00198819 -0.392589 -0.919711)} Corner 258 400 {wid=580 normal=(0.311888 -0.943783 0.109541)} Corner 21 400 {wid=582 normal=(-0.0213408 -0.365928 -0.930398)} Corner 485 401 {wid=1303 normal=(-0.534979 0.834261 0.133437)} Corner 218 401 {wid=579 normal=(-0.0709034 0.671173 -0.737902)} Corner 128 402 {wid=211 normal=(-0.847783 0.183224 0.497687)} Corner 219 402 {wid=583 normal=(-0.852291 -0.0100937 0.52297)} Corner 395 402 {wid=1088 normal=(-0.0677854 -0.0181222 0.997535)} Corner 128 403 {wid=352 normal=(-0.954017 0.297262 -0.0385421)} Corner 80 403 {wid=354 normal=(-0.946831 0.0160895 -0.321329)} Corner 219 403 {wid=584 normal=(-0.998175 0.0237139 -0.0555331)} Corner 175 405 {wid=457 normal=(0.0769674 -0.843962 0.530852)} Corner 190 406 {wid=359 normal=(0.0677854 -0.0181222 0.997535)} Corner 221 406 {wid=586 normal=(0.852291 -0.0100937 0.52297)} Corner 129 406 {wid=502 normal=(0.847783 0.183224 0.497687)} Corner 190 407 {wid=588 normal=(0.0729118 -0.686081 0.723862)} Corner 29 407 {wid=589 normal=(0.660158 -0.718095 -0.2203)} Corner 221 407 {wid=587 normal=(0.717408 -0.674257 0.175226)} Corner 410 408 {wid=591 normal=(-0.200618 -0.886834 0.416266)} Corner 222 408 {wid=334 normal=(-0.200618 -0.886834 0.416266)} Corner 223 408 {wid=333 normal=(-0.399457 -0.914021 0.0707083)} Corner 279 409 {wid=766 normal=(-0.169868 -0.137751 0.975792)} Corner 222 409 {wid=590 normal=(-0.386485 -0.511135 0.767704)} Corner 68 410 {wid=594 normal=(-0.350995 -0.854014 -0.384008)} Corner 223 410 {wid=592 normal=(-0.472212 -0.872108 -0.128232)} Corner 122 410 {wid=596 normal=(-0.482825 -0.858965 0.170465)} Corner 290 411 {wid=595 normal=(-0.161351 0.986814 -0.0127871)} Corner 83 411 {wid=597 normal=(0.00884043 0.99186 0.127024)} Corner 223 411 {wid=593 normal=(-0.169808 0.984837 0.0355105)} Corner 58 412 {wid=141 normal=(-0.981522 0.182192 0.0584899)} Corner 511 412 {wid=598 normal=(-0.822572 -0.12787 -0.554098)} Corner 202 412 {wid=143 normal=(-0.951888 0.223843 0.209292)} Corner 248 413 {wid=683 normal=(-0.159692 -0.670057 -0.724929)} Corner 125 413 {wid=338 normal=(0.520127 -0.61836 0.589152)} Corner 247 413 {wid=599 normal=(-0.0238278 -0.515418 0.856607)} Corner 137 415 {wid=372 normal=(0.537093 -0.226403 0.812572)} Corner 511 416 {wid=598 normal=(-0.822572 -0.12787 -0.554098)} Corner 226 416 {wid=601 normal=(-0.943845 0.310279 0.113502)} Corner 202 416 {wid=143 normal=(-0.951888 0.223843 0.209292)} Corner 369 417 {wid=1040 normal=(0.0900393 -0.0543206 -0.994456)} Corner 367 417 {wid=1030 normal=(0.113809 -0.135757 -0.984184)} Corner 368 417 {wid=602 normal=(0.603033 0.389804 -0.695991)} Corner 135 418 {wid=233 normal=(-0.410626 -0.129138 -0.902613)} Corner 228 418 {wid=605 normal=(0.852114 -0.176284 -0.492774)} Corner 87 418 {wid=232 normal=(0.0876081 -0.131964 -0.987375)} Corner 135 419 {wid=209 normal=(-0.439117 -0.199548 -0.875989)} Corner 187 419 {wid=160 normal=(-0.425673 -0.201149 -0.882237)} Corner 227 419 {wid=606 normal=(0.0877167 -0.238441 -0.967188)} Corner 227 420 {wid=609 normal=(0.00852037 0.924622 -0.380791)} Corner 228 420 {wid=607 normal=(0.369067 0.904873 -0.212117)} Corner 135 420 {wid=611 normal=(-0.168681 0.926568 -0.336182)} Corner 227 421 {wid=610 normal=(0.121172 -0.133162 -0.983659)} Corner 46 421 {wid=612 normal=(0.976188 -0.190797 0.103213)} Corner 228 421 {wid=608 normal=(0.83913 -0.175972 -0.514679)} Corner 105 422 {wid=286 normal=(-0.606138 -0.509583 -0.610673)} Corner 229 422 {wid=613 normal=(0.285196 -0.349738 -0.892383)} Corner 5 422 {wid=5 normal=(-0.015093 0.0262476 -0.999542)} Corner 105 423 {wid=287 normal=(0.284235 0.762056 -0.581792)} Corner 53 423 {wid=284 normal=(0.365021 0.395132 -0.842989)} Corner 417 423 {wid=614 normal=(0.239118 0.841127 -0.485106)} Corner 34 424 {wid=70 normal=(0.648159 0.0211272 0.761212)} Corner 230 424 {wid=615 normal=(-0.0296346 0.0852488 0.995919)} Corner 35 424 {wid=71 normal=(0.373135 0.0229888 0.927492)} Corner 34 425 {wid=146 normal=(0.68621 0.250027 0.683082)} Corner 230 425 {wid=616 normal=(-0.134954 0.152573 0.979035)} Corner 213 426 {wid=619 normal=(0.289116 0.0549553 -0.955715)} Corner 231 426 {wid=617 normal=(0.449911 -0.353984 -0.819924)} Corner 3 426 {wid=621 normal=(0.289116 0.0549553 -0.955715)} Corner 359 427 {wid=620 normal=(0.494566 -0.301434 0.815194)} Corner 240 427 {wid=622 normal=(0.362274 -0.435406 0.824123)} Corner 360 427 {wid=618 normal=(0.804729 -0.141515 0.576529)} Corner 96 428 {wid=179 normal=(0 0.493971 0.869479)} Corner 233 428 {wid=623 normal=(0 0.935108 0.354362)} Corner 238 428 {wid=177 normal=(0 0.935108 0.354362)} Corner 96 429 {wid=226 normal=(-4.02751e-006 0.943551 0.331227)} Corner 144 429 {wid=225 normal=(4.0136e-006 0.946042 0.324043)} Corner 487 429 {wid=624 normal=(-4.0136e-006 0.946042 0.324043)} Corner 487 430 {wid=627 normal=(1 1.49578e-005 0.000330856)} Corner 233 430 {wid=625 normal=(1 1.82504e-006 0.000121235)} Corner 96 430 {wid=628 normal=(1 9.86184e-005 -0.000206575)} Corner 232 431 {wid=253 normal=(0.00520121 0.69086 -0.72297)} Corner 238 431 {wid=256 normal=(0 0.941437 -0.337188)} Corner 233 431 {wid=626 normal=(0 0.941437 -0.337188)} Corner 263 432 {wid=339 normal=(0.610714 -0.106722 -0.784627)} Corner 234 432 {wid=629 normal=(-0.935322 -0.188589 -0.299344)} Corner 64 432 {wid=342 normal=(-0.574638 0.117965 -0.809862)} Corner 407 433 {wid=630 normal=(-0.304781 -0.563127 -0.768113)} Corner 460 433 {wid=1250 normal=(-0.443909 -0.539081 0.715776)} Corner 234 433 {wid=36 normal=(-0.401139 -0.87131 -0.282678)} Corner 8 434 {wid=289 normal=(-0.0189398 0.74245 0.669634)} Corner 235 434 {wid=632 normal=(0.93671 0.042744 0.347486)} Corner 107 434 {wid=290 normal=(0.983031 0.12505 0.134214)} Corner 8 435 {wid=185 normal=(0.00671065 0.738814 0.673876)} Corner 81 435 {wid=183 normal=(0.955532 0.205096 -0.211883)} Corner 235 435 {wid=631 normal=(0.879032 0.0281601 0.475931)} Corner 236 436 {wid=633 normal=(-0.90941 -0.340812 -0.238371)} Corner 10 437 {wid=48 normal=(-0.683589 0.238787 0.6897)} Corner 236 437 {wid=633 normal=(-0.90941 -0.340812 -0.238371)} Corner 237 438 {wid=634 normal=(0.988649 -0.149506 -0.0148549)} Corner 35 438 {wid=343 normal=(0.849738 0.18401 0.494051)} Corner 125 439 {wid=338 normal=(0.520127 -0.61836 0.589152)} Corner 58 439 {wid=337 normal=(0.437007 -0.898389 -0.0438496)} Corner 237 439 {wid=635 normal=(0.544284 -0.838716 -0.0176263)} Corner 71 440 {wid=638 normal=(0.454583 0.854963 -0.249784)} Corner 238 440 {wid=636 normal=(0.598656 0.800436 -0.030236)} Corner 143 440 {wid=640 normal=(0.453887 0.843881 0.286096)} Corner 257 441 {wid=639 normal=(-0.757738 0.5458 0.357681)} Corner 145 441 {wid=641 normal=(-0.802688 0.393751 0.447942)} Corner 238 441 {wid=637 normal=(-0.757738 0.5458 0.357681)} Corner 145 442 {wid=643 normal=(-0.970526 -0.219695 0.0990595)} Corner 239 442 {wid=642 normal=(-0.958965 -0.276973 0.060602)} Corner 97 442 {wid=644 normal=(-0.689567 -0.31317 0.653009)} Corner 145 443 {wid=643 normal=(-0.970526 -0.219695 0.0990595)} Corner 257 443 {wid=645 normal=(-0.979642 -0.130303 0.152716)} Corner 239 443 {wid=642 normal=(-0.958965 -0.276973 0.060602)} Corner 214 444 {wid=647 normal=(0.0875935 0.128379 0.987849)} Corner 240 444 {wid=646 normal=(-0.104646 0.139044 0.984742)} Corner 359 444 {wid=649 normal=(0.204073 0.368481 0.90696)} Corner 214 445 {wid=648 normal=(-0.642186 -0.765877 -0.0320897)} Corner 3 445 {wid=563 normal=(-0.573438 -0.818795 0.0272617)} Corner 240 445 {wid=561 normal=(-0.886219 -0.463015 -0.0152685)} Corner 2 446 {wid=650 normal=(-0.686211 0.250027 0.683082)} Corner 484 446 {wid=1 normal=(-0.962462 0.261098 -0.0741227)} Corner 2 447 {wid=650 normal=(-0.686211 0.250027 0.683082)} Corner 224 448 {wid=653 normal=(0.183264 0.245187 0.951997)} Corner 247 448 {wid=651 normal=(0.195269 0.281412 0.939509)} Corner 125 448 {wid=655 normal=(-0.016731 0.394151 0.918893)} Corner 244 449 {wid=654 normal=(-0.580177 -0.232197 -0.780692)} Corner 248 449 {wid=656 normal=(-0.677485 -0.310431 -0.666818)} Corner 242 449 {wid=652 normal=(-0.580177 -0.232197 -0.780692)} Corner 55 450 {wid=659 normal=(-0.383541 -0.342221 -0.857777)} Corner 243 450 {wid=658 normal=(-0.660614 -0.615839 -0.429339)} Corner 312 450 {wid=660 normal=(-0.63609 -0.0819 -0.767256)} Corner 55 451 {wid=132 normal=(0.353376 -0.327211 -0.876389)} Corner 161 451 {wid=434 normal=(-0.829604 -0.447757 -0.333573)} Corner 441 451 {wid=657 normal=(0.254437 -0.916983 -0.307251)} Corner 224 452 {wid=663 normal=(-0.264371 0.444318 0.855973)} Corner 507 452 {wid=661 normal=(-0.154442 0.499096 0.852673)} Corner 242 452 {wid=665 normal=(-0.264371 0.444318 0.855973)} Corner 224 453 {wid=664 normal=(0.0919248 0.913597 -0.396094)} Corner 248 453 {wid=666 normal=(0.028191 0.116077 -0.99284)} Corner 244 453 {wid=662 normal=(0.168281 0.0162169 -0.985606)} Corner 123 454 {wid=668 normal=(-0.673642 0.67002 -0.311897)} Corner 246 454 {wid=667 normal=(-0.549976 0.817384 0.171494)} Corner 58 454 {wid=670 normal=(-0.671737 0.735454 -0.088754)} Corner 348 455 {wid=964 normal=(0.316301 -0.702564 -0.637462)} Corner 237 455 {wid=635 normal=(0.544284 -0.838716 -0.0176263)} Corner 245 455 {wid=335 normal=(0.443909 -0.539081 0.715776)} Corner 496 456 {wid=673 normal=(-0.722548 -0.689809 0.0456897)} Corner 449 456 {wid=671 normal=(-0.742335 -0.669847 0.0156202)} Corner 348 456 {wid=675 normal=(-0.506678 -0.84641 0.163914)} Corner 245 457 {wid=674 normal=(0.12264 0.298573 0.946474)} Corner 58 457 {wid=676 normal=(-0.0889453 0.0858136 0.992333)} Corner 246 457 {wid=672 normal=(0.183393 0.167208 0.968715)} Corner 242 458 {wid=679 normal=(-0.430787 -0.164163 0.887397)} Corner 247 458 {wid=677 normal=(-0.494583 -0.253615 0.831305)} Corner 224 458 {wid=681 normal=(-0.458266 -0.15373 0.87542)} Corner 242 459 {wid=680 normal=(-0.978851 -0.180923 0.0954862)} Corner 248 459 {wid=682 normal=(-0.563944 -0.814594 0.135661)} Corner 247 459 {wid=678 normal=(-0.520022 -0.841048 0.149051)} Corner 58 460 {wid=684 normal=(-0.225738 -0.320443 -0.919977)} Corner 248 460 {wid=666 normal=(0.028191 0.116077 -0.99284)} Corner 224 460 {wid=664 normal=(0.0919248 0.913597 -0.396094)} Corner 58 461 {wid=337 normal=(0.437007 -0.898389 -0.0438496)} Corner 125 461 {wid=338 normal=(0.520127 -0.61836 0.589152)} Corner 248 461 {wid=683 normal=(-0.159692 -0.670057 -0.724929)} Corner 357 462 {wid=687 normal=(0.580177 -0.232197 -0.780692)} Corner 249 462 {wid=685 normal=(0.580177 -0.232197 -0.780692)} Corner 192 462 {wid=689 normal=(0.677485 -0.310431 -0.666818)} Corner 462 463 {wid=688 normal=(0.485283 -0.143142 0.862561)} Corner 362 463 {wid=690 normal=(0.494583 -0.253615 0.831305)} Corner 249 463 {wid=686 normal=(0.430787 -0.164163 0.887397)} Corner 428 464 {wid=1172 normal=(-0.424149 -0.208663 -0.881225)} Corner 250 464 {wid=691 normal=(0.379854 -0.255921 -0.888941)} Corner 64 464 {wid=156 normal=(-0.482358 -0.205572 -0.851511)} Corner 428 465 {wid=1173 normal=(-0.550002 -0.0093556 -0.835111)} Corner 250 465 {wid=692 normal=(0.244695 -0.097176 -0.964718)} Corner 70 466 {wid=72 normal=(-0.121938 -0.561137 0.818692)} Corner 251 466 {wid=693 normal=(-0.159337 -0.206901 0.9653)} Corner 117 466 {wid=319 normal=(-0.213802 -0.0586599 0.975114)} Corner 252 467 {wid=694 normal=(0.386485 -0.511135 0.767704)} Corner 113 467 {wid=113 normal=(0.906912 -0.338567 0.250765)} Corner 251 467 {wid=52 normal=(0.460284 -0.059013 0.885808)} Corner 70 468 {wid=697 normal=(-0.315277 -0.54924 0.773909)} Corner 252 468 {wid=695 normal=(-0.373527 -0.649391 0.662397)} Corner 251 468 {wid=698 normal=(-0.230853 -0.390393 0.891235)} Corner 480 469 {wid=208 normal=(0.200618 -0.886834 0.416266)} Corner 113 469 {wid=204 normal=(0.443806 -0.893067 -0.0739522)} Corner 252 469 {wid=696 normal=(0.200618 -0.886834 0.416266)} Corner 253 470 {wid=699 normal=(0.990644 -0.0880863 0.104235)} Corner 250 470 {wid=692 normal=(0.244695 -0.097176 -0.964718)} Corner 2 471 {wid=650 normal=(-0.686211 0.250027 0.683082)} Corner 253 471 {wid=699 normal=(0.990644 -0.0880863 0.104235)} Corner 199 472 {wid=136 normal=(0.993201 0.0549632 -0.102614)} Corner 254 472 {wid=700 normal=(0.998137 -0.0548471 -0.0267104)} Corner 115 472 {wid=138 normal=(0.984651 0.0846602 -0.152628)} Corner 199 473 {wid=702 normal=(0.201293 -0.978403 0.0470054)} Corner 284 473 {wid=703 normal=(0.00114083 -0.985566 -0.16929)} Corner 254 473 {wid=701 normal=(0.0969369 -0.994701 0.0342567)} Corner 69 474 {wid=704 normal=(0.246541 0.288326 -0.925249)} Corner 255 474 {wid=486 normal=(0.663897 0.64944 -0.370767)} Corner 183 474 {wid=484 normal=(0.685062 0.46838 -0.557951)} Corner 69 475 {wid=705 normal=(-0.284235 0.762055 -0.581793)} Corner 430 475 {wid=150 normal=(-0.277194 0.756013 -0.592965)} Corner 255 475 {wid=149 normal=(-0.336806 0.574854 -0.745724)} Corner 71 478 {wid=709 normal=(-0.221294 0.707756 -0.670903)} Corner 257 478 {wid=708 normal=(-0.439471 0.76863 -0.464837)} Corner 238 478 {wid=710 normal=(-0.439471 0.76863 -0.464837)} Corner 71 479 {wid=178 normal=(-0.689265 0.238422 -0.684155)} Corner 412 479 {wid=547 normal=(-0.223275 0.954009 0.200038)} Corner 257 479 {wid=707 normal=(-0.860041 0.200646 -0.469117)} Corner 258 480 {wid=711 normal=(0.311888 -0.943783 0.109541)} Corner 334 480 {wid=714 normal=(-0.475024 -0.827081 0.300481)} Corner 372 481 {wid=713 normal=(0.411303 0.189226 0.891641)} Corner 21 481 {wid=582 normal=(-0.0213408 -0.365928 -0.930398)} Corner 258 481 {wid=580 normal=(0.311888 -0.943783 0.109541)} Corner 372 482 {wid=715 normal=(0.411303 0.189226 0.891641)} Corner 334 482 {wid=714 normal=(-0.475024 -0.827081 0.300481)} Corner 372 483 {wid=715 normal=(0.411303 0.189226 0.891641)} Corner 258 483 {wid=711 normal=(0.311888 -0.943783 0.109541)} Corner 260 484 {wid=716 normal=(0.00429493 -0.830333 0.557252)} Corner 27 486 {wid=497 normal=(0.836927 0.0674515 -0.543142)} Corner 261 486 {wid=717 normal=(0.876333 0.118797 -0.466828)} Corner 351 486 {wid=498 normal=(0.860201 0.00831142 -0.509888)} Corner 27 487 {wid=497 normal=(0.836927 0.0674515 -0.543142)} Corner 328 487 {wid=718 normal=(0.0395833 0.744261 0.666715)} Corner 261 487 {wid=717 normal=(0.876333 0.118797 -0.466828)} Corner 185 488 {wid=425 normal=(0 -0.544973 0.838454)} Corner 262 488 {wid=720 normal=(-0.36581 -0.537275 0.759947)} Corner 158 488 {wid=429 normal=(-0.433532 -0.517833 0.737496)} Corner 185 489 {wid=489 normal=(-3.57628e-007 -0.610405 -0.792089)} Corner 262 489 {wid=719 normal=(0.430916 -0.720868 -0.542826)} Corner 124 490 {wid=340 normal=(0.991112 0.125768 0.0433507)} Corner 263 490 {wid=721 normal=(0.991112 0.125768 0.0433507)} Corner 62 490 {wid=269 normal=(0.816214 0.268905 -0.511356)} Corner 124 491 {wid=723 normal=(0.499556 -0.378578 -0.77918)} Corner 234 491 {wid=724 normal=(0.499556 -0.378578 -0.77918)} Corner 293 491 {wid=722 normal=(0.499556 -0.378578 -0.77918)} Corner 508 492 {wid=479 normal=(0.39285 -0.471953 -0.789259)} Corner 264 492 {wid=725 normal=(0.496832 0.29331 -0.816778)} Corner 265 492 {wid=727 normal=(0.628745 -0.192601 -0.753382)} Corner 9 493 {wid=9 normal=(-0.203103 0.248811 -0.947017)} Corner 264 493 {wid=726 normal=(-0.190205 0.546764 -0.815397)} Corner 322 494 {wid=890 normal=(0.935023 -0.152186 -0.320266)} Corner 265 494 {wid=728 normal=(0.935039 -0.152174 -0.320228)} Corner 114 494 {wid=310 normal=(0.935042 -0.152173 -0.320219)} Corner 181 495 {wid=228 normal=(0.660614 -0.615839 -0.429338)} Corner 508 495 {wid=479 normal=(0.39285 -0.471953 -0.789259)} Corner 265 495 {wid=727 normal=(0.628745 -0.192601 -0.753382)} Corner 115 496 {wid=314 normal=(0.829604 -0.447757 -0.333573)} Corner 266 496 {wid=98 normal=(0.227239 -0.435966 0.870802)} Corner 56 496 {wid=97 normal=(0.547319 -0.831191 0.097798)} Corner 115 497 {wid=314 normal=(0.829604 -0.447757 -0.333573)} Corner 508 497 {wid=1354 normal=(-0.351874 -0.508599 -0.785819)} Corner 267 497 {wid=730 normal=(-0.183368 -0.980586 -0.0694755)} Corner 266 498 {wid=229 normal=(0.802927 -0.420439 0.422538)} Corner 267 498 {wid=729 normal=(0.507567 -0.817401 -0.272452)} Corner 181 498 {wid=228 normal=(0.660614 -0.615839 -0.429338)} Corner 266 499 {wid=98 normal=(0.227239 -0.435966 0.870802)} Corner 115 499 {wid=314 normal=(0.829604 -0.447757 -0.333573)} Corner 267 499 {wid=730 normal=(-0.183368 -0.980586 -0.0694755)} Corner 269 500 {wid=732 normal=(0.179861 0.0640434 -0.981605)} Corner 268 500 {wid=731 normal=(0.334954 0.521678 -0.784638)} Corner 323 500 {wid=734 normal=(0.541818 0.784052 -0.302812)} Corner 269 501 {wid=733 normal=(0.944116 -0.212438 0.252021)} Corner 266 501 {wid=229 normal=(0.802927 -0.420439 0.422538)} Corner 268 501 {wid=231 normal=(0.860323 -0.496588 0.115089)} Corner 47 502 {wid=736 normal=(0.143243 -0.35411 -0.924169)} Corner 269 502 {wid=735 normal=(0.179861 0.0640434 -0.981605)} Corner 114 502 {wid=738 normal=(0.306994 -0.936807 -0.167775)} Corner 47 503 {wid=737 normal=(0.941043 0.0913111 0.325732)} Corner 266 503 {wid=229 normal=(0.802927 -0.420439 0.422538)} Corner 269 503 {wid=733 normal=(0.944116 -0.212438 0.252021)} Corner 141 504 {wid=381 normal=(-0.999937 1.70911e-007 -0.011248)} Corner 271 504 {wid=739 normal=(-0.521469 1.20464e-005 -0.85327)} Corner 195 504 {wid=199 normal=(-0.879861 6.70713e-006 -0.47523)} Corner 141 505 {wid=96 normal=(-0.993202 0.0549633 -0.102614)} Corner 161 505 {wid=95 normal=(-0.984651 0.0846602 -0.152628)} Corner 270 505 {wid=740 normal=(-0.998137 -0.0548471 -0.0267104)} Corner 270 506 {wid=742 normal=(-0.0969369 -0.994701 0.0342567)} Corner 271 506 {wid=741 normal=(-0.00114084 -0.985566 -0.16929)} Corner 141 506 {wid=743 normal=(-0.201293 -0.978403 0.0470054)} Corner 270 507 {wid=742 normal=(-0.0969369 -0.994701 0.0342567)} Corner 102 507 {wid=744 normal=(-0.0219785 -0.962802 -0.269314)} Corner 271 507 {wid=741 normal=(-0.00114084 -0.985566 -0.16929)} Corner 275 510 {wid=28 normal=(0.34656 0.750953 0.562108)} Corner 273 510 {wid=746 normal=(-0.0385036 0.23259 0.971813)} Corner 47 510 {wid=115 normal=(0.353176 0.319994 0.879131)} Corner 41 511 {wid=262 normal=(-0.880324 0.460965 0.111988)} Corner 304 511 {wid=470 normal=(-0.820134 0.570936 0.037586)} Corner 451 511 {wid=747 normal=(-0.823243 0.566297 0.0397297)} Corner 177 512 {wid=260 normal=(-0.867446 0.465311 0.176136)} Corner 274 512 {wid=748 normal=(-0.88147 0.462314 0.0963107)} Corner 41 512 {wid=262 normal=(-0.880324 0.460965 0.111988)} Corner 177 513 {wid=749 normal=(0 0.935108 0.354362)} Corner 206 513 {wid=537 normal=(0 0.935108 0.354362)} Corner 274 513 {wid=472 normal=(0 0.717336 0.696728)} Corner 41 514 {wid=751 normal=(0.117949 0.709169 0.695102)} Corner 275 514 {wid=750 normal=(0.272579 0.779267 0.564309)} Corner 205 514 {wid=752 normal=(0.285218 0.878497 0.383268)} Corner 41 515 {wid=751 normal=(0.117949 0.709169 0.695102)} Corner 451 515 {wid=753 normal=(-0.506792 0.563462 0.652436)} Corner 275 515 {wid=750 normal=(0.272579 0.779267 0.564309)} Corner 107 516 {wid=756 normal=(0.88708 0.201574 -0.415279)} Corner 276 516 {wid=754 normal=(0.88708 0.201574 -0.415279)} Corner 383 516 {wid=757 normal=(0.0218794 0.124831 -0.991937)} Corner 107 517 {wid=290 normal=(0.983031 0.12505 0.134214)} Corner 235 517 {wid=632 normal=(0.93671 0.042744 0.347486)} Corner 276 517 {wid=755 normal=(0.983031 0.12505 0.134214)} Corner 3 518 {wid=267 normal=(0.951888 0.223843 0.209292)} Corner 277 518 {wid=758 normal=(0.943845 0.310279 0.113502)} Corner 356 518 {wid=994 normal=(0.95293 0.267271 0.143147)} Corner 3 519 {wid=759 normal=(0.428192 0.447876 0.784894)} Corner 142 519 {wid=270 normal=(0.201106 0.336165 0.920081)} Corner 277 519 {wid=268 normal=(0.580706 0.285838 0.762284)} Corner 191 520 {wid=762 normal=(-0.205656 -0.975747 0.074986)} Corner 278 520 {wid=760 normal=(-0.584368 -0.811434 -0.00938159)} Corner 142 520 {wid=764 normal=(-0.672534 -0.615184 0.411396)} Corner 353 521 {wid=763 normal=(0.6071 0.792395 -0.0594915)} Corner 354 521 {wid=765 normal=(-0.154651 0.986112 -0.0605445)} Corner 335 521 {wid=761 normal=(0.903478 0.426576 -0.0419504)} Corner 410 522 {wid=768 normal=(0.450216 -0.762915 0.463968)} Corner 279 522 {wid=767 normal=(0.230853 -0.390393 0.891235)} Corner 222 522 {wid=769 normal=(0.373527 -0.649391 0.662397)} Corner 83 523 {wid=100 normal=(0.0640179 -0.877756 0.474812)} Corner 279 523 {wid=766 normal=(-0.169868 -0.137751 0.975792)} Corner 281 524 {wid=770 normal=(-0.259452 -0.51857 -0.814721)} Corner 280 524 {wid=31 normal=(-0.610713 -0.106723 -0.784627)} Corner 347 524 {wid=962 normal=(0.647487 0.021701 -0.761767)} Corner 123 525 {wid=771 normal=(-0.991112 0.125768 0.0433507)} Corner 58 525 {wid=141 normal=(-0.981522 0.182192 0.0584899)} Corner 280 525 {wid=336 normal=(-0.991112 0.125768 0.0433507)} Corner 123 526 {wid=774 normal=(0.599243 -0.625457 0.499711)} Corner 281 526 {wid=772 normal=(0.265128 -0.943324 0.199618)} Corner 347 526 {wid=776 normal=(0.652241 -0.756102 -0.0537736)} Corner 123 527 {wid=775 normal=(-0.317975 0.792042 0.521115)} Corner 280 527 {wid=777 normal=(-0.639075 0.768756 -0.0244405)} Corner 282 527 {wid=773 normal=(-0.489975 0.744847 0.452911)} Corner 281 528 {wid=780 normal=(-0.711218 -0.647359 0.274035)} Corner 349 528 {wid=778 normal=(-0.883645 -0.42114 0.204483)} Corner 398 528 {wid=782 normal=(-0.961738 -0.272502 -0.0283278)} Corner 281 529 {wid=781 normal=(0.43054 0.198616 0.880447)} Corner 123 529 {wid=783 normal=(0.392182 0.238146 0.888527)} Corner 282 529 {wid=779 normal=(0.43039 0.199548 0.88031)} Corner 102 530 {wid=786 normal=(1.493e-006 1 1.40857e-005)} Corner 283 530 {wid=784 normal=(2.84446e-006 1 1.36241e-005)} Corner 271 530 {wid=788 normal=(-2.05145e-006 1 1.57985e-005)} Corner 447 531 {wid=787 normal=(-0.115738 -0.983081 -0.141976)} Corner 140 531 {wid=789 normal=(0.115738 -0.983081 -0.141976)} Corner 283 531 {wid=785 normal=(-0.0422059 -0.99194 -0.119473)} Corner 140 532 {wid=791 normal=(-1.493e-006 1 1.40857e-005)} Corner 284 532 {wid=790 normal=(2.05145e-006 1 1.57985e-005)} Corner 283 532 {wid=793 normal=(2.84446e-006 1 1.36241e-005)} Corner 476 533 {wid=792 normal=(0.0219785 -0.962802 -0.269314)} Corner 254 533 {wid=701 normal=(0.0969369 -0.994701 0.0342567)} Corner 284 533 {wid=703 normal=(0.00114083 -0.985566 -0.16929)} Corner 316 534 {wid=877 normal=(-0.347808 -0.759033 0.550364)} Corner 384 535 {wid=1066 normal=(-0.212633 0.429771 0.877545)} Corner 285 535 {wid=794 normal=(-0.12469 0.675132 0.727083)} Corner 286 536 {wid=795 normal=(0.538335 -0.409545 -0.736524)} Corner 513 537 {wid=427 normal=(0.765972 -0.625534 0.148303)} Corner 22 537 {wid=53 normal=(0.633129 0.771813 0.0587491)} Corner 286 537 {wid=796 normal=(0.981119 0.0872253 -0.172617)} Corner 151 538 {wid=407 normal=(-0.857805 7.30093e-006 -0.513975)} Corner 287 538 {wid=797 normal=(0.102579 1.40492e-005 -0.994725)} Corner 433 538 {wid=550 normal=(-0.342231 1.32704e-005 -0.939615)} Corner 151 539 {wid=241 normal=(-0.852678 7.38484e-006 -0.522438)} Corner 380 539 {wid=513 normal=(-0.518116 1.20806e-005 -0.85531)} Corner 287 539 {wid=798 normal=(0.0409818 1.41132e-005 -0.99916)} Corner 10 540 {wid=49 normal=(-0.683589 0.238787 0.6897)} Corner 288 540 {wid=799 normal=(-0.69883 -0.707966 -0.102083)} Corner 236 540 {wid=800 normal=(-0.90941 -0.340812 -0.238371)} Corner 485 541 {wid=1303 normal=(-0.534979 0.834261 0.133437)} Corner 288 541 {wid=799 normal=(-0.69883 -0.707966 -0.102083)} Corner 68 544 {wid=594 normal=(-0.350995 -0.854014 -0.384008)} Corner 400 544 {wid=802 normal=(-0.302598 -0.835834 -0.458057)} Corner 223 544 {wid=592 normal=(-0.472212 -0.872108 -0.128232)} Corner 68 545 {wid=190 normal=(-0.483984 -0.841711 -0.239337)} Corner 189 545 {wid=499 normal=(0.0839995 -0.832451 -0.547694)} Corner 400 545 {wid=803 normal=(-0.633127 -0.774 -0.00858711)} Corner 121 546 {wid=197 normal=(-0.142646 -1.39781e-005 0.989774)} Corner 291 546 {wid=804 normal=(-0.922822 -5.45893e-006 0.385228)} Corner 196 546 {wid=198 normal=(-0.687546 -1.02436e-005 0.726141)} Corner 333 547 {wid=245 normal=(-0.231565 -0.428902 0.873167)} Corner 376 547 {wid=330 normal=(-0.466977 -0.0365867 0.883513)} Corner 292 547 {wid=805 normal=(-0.899131 0.0092287 0.437583)} Corner 291 548 {wid=808 normal=(-0.179608 -0.983238 0.0313665)} Corner 292 548 {wid=806 normal=(-0.0136195 -0.983052 0.182819)} Corner 141 548 {wid=810 normal=(-0.233455 -0.972363 0.00286952)} Corner 291 549 {wid=809 normal=(2.08877e-006 1 1.74426e-005)} Corner 121 549 {wid=811 normal=(-4.6294e-006 1 1.21104e-005)} Corner 292 549 {wid=807 normal=(1.92502e-006 1 1.58114e-005)} Corner 366 550 {wid=814 normal=(-0.0644327 -0.981412 -0.180773)} Corner 325 550 {wid=812 normal=(-0.416397 -0.729375 0.542794)} Corner 234 550 {wid=816 normal=(-0.625788 -0.664936 0.407738)} Corner 263 551 {wid=815 normal=(0.639075 0.768756 -0.0244405)} Corner 124 551 {wid=817 normal=(0.537594 0.818395 0.203031)} Corner 293 551 {wid=813 normal=(0.317975 0.792042 0.521115)} Corner 137 552 {wid=819 normal=(-0.7761 -0.242131 0.582272)} Corner 308 552 {wid=856 normal=(-0.491351 -0.317371 0.811079)} Corner 158 552 {wid=429 normal=(-0.433532 -0.517833 0.737496)} Corner 137 553 {wid=372 normal=(0.537093 -0.226403 0.812572)} Corner 95 553 {wid=252 normal=(0.686827 0.296644 -0.663529)} Corner 294 553 {wid=818 normal=(0.578853 0.0194597 -0.815199)} Corner 491 554 {wid=1317 normal=(-0.34401 -0.102476 0.933358)} Corner 295 554 {wid=820 normal=(-0.997572 -0.0654858 -0.0237164)} Corner 493 554 {wid=1321 normal=(-0.825323 -0.052926 0.562174)} Corner 491 555 {wid=1318 normal=(-0.381745 -0.0985827 0.918994)} Corner 303 555 {wid=157 normal=(-0.996647 -0.0664181 0.0477801)} Corner 295 555 {wid=821 normal=(-0.997054 -0.0676643 0.0361118)} Corner 296 556 {wid=822 normal=(0.933305 0.342152 0.108973)} Corner 286 557 {wid=426 normal=(0.677438 0.517632 0.522623)} Corner 296 557 {wid=822 normal=(0.933305 0.342152 0.108973)} Corner 468 558 {wid=825 normal=(0.0157145 -0.999852 -0.00695027)} Corner 297 558 {wid=823 normal=(0.0157145 -0.999852 -0.00695027)} Corner 119 558 {wid=826 normal=(0.0157145 -0.999852 -0.00695027)} Corner 468 559 {wid=1269 normal=(-0.710195 -0.657447 0.251767)} Corner 120 559 {wid=325 normal=(-0.729423 0.184251 -0.658782)} Corner 297 559 {wid=824 normal=(-0.710195 -0.657447 0.251767)} Corner 186 560 {wid=491 normal=(-0.31112 -0.619302 -0.720881)} Corner 298 560 {wid=827 normal=(-0.32368 -0.633194 -0.703062)} Corner 42 560 {wid=494 normal=(-0.32368 -0.633194 -0.703062)} Corner 186 561 {wid=829 normal=(-0.175924 -0.953989 -0.242808)} Corner 455 561 {wid=830 normal=(-0.343435 -0.934565 -0.0929585)} Corner 298 561 {wid=828 normal=(-0.24585 -0.951927 -0.182738)} Corner 89 562 {wid=174 normal=(-0.769754 -0.211784 0.602185)} Corner 299 562 {wid=831 normal=(-0.21561 -0.352229 -0.91074)} Corner 387 562 {wid=1074 normal=(0.0150934 0.0262485 -0.999542)} Corner 430 563 {wid=150 normal=(-0.277194 0.756013 -0.592965)} Corner 69 563 {wid=705 normal=(-0.284235 0.762055 -0.581793)} Corner 299 563 {wid=832 normal=(-0.0967323 0.979323 -0.177677)} Corner 44 564 {wid=103 normal=(-0.758315 -0.224429 -0.612039)} Corner 300 564 {wid=833 normal=(0.407364 -0.12871 -0.904151)} Corner 67 564 {wid=163 normal=(-0.0655602 -0.158371 -0.985201)} Corner 44 565 {wid=170 normal=(-0.749024 -0.226827 -0.622504)} Corner 163 565 {wid=437 normal=(-0.110531 -0.132589 -0.984989)} Corner 300 565 {wid=834 normal=(0.414419 -0.129161 -0.900874)} Corner 50 566 {wid=117 normal=(-0.638923 -0.0807716 0.765018)} Corner 301 566 {wid=835 normal=(0.699632 -0.208878 0.683289)} Corner 153 566 {wid=300 normal=(0.162149 -0.146138 0.975885)} Corner 50 567 {wid=297 normal=(-0.577613 -0.0155202 0.816162)} Corner 112 567 {wid=302 normal=(0.194745 -0.474158 0.858632)} Corner 301 567 {wid=836 normal=(0.715968 0.0696846 0.694645)} Corner 100 568 {wid=838 normal=(-0.157891 0.938295 0.30769)} Corner 302 568 {wid=837 normal=(-0.156341 0.93871 0.307215)} Corner 481 568 {wid=839 normal=(-0.926478 0.0317794 0.375004)} Corner 100 569 {wid=838 normal=(-0.157891 0.938295 0.30769)} Corner 84 569 {wid=840 normal=(0.593272 0.804172 -0.0365475)} Corner 302 569 {wid=837 normal=(-0.156341 0.93871 0.307215)} Corner 63 570 {wid=158 normal=(-0.7581 -0.608838 0.23367)} Corner 303 570 {wid=841 normal=(-0.52363 -0.834479 0.171631)} Corner 184 570 {wid=488 normal=(-0.52363 -0.834479 0.171631)} Corner 63 571 {wid=843 normal=(-0.585757 -0.800985 -0.12374)} Corner 187 571 {wid=844 normal=(-0.451581 -0.77522 -0.441711)} Corner 303 571 {wid=842 normal=(-0.585757 -0.800985 -0.12374)} Corner 178 572 {wid=846 normal=(-0.00041185 -0.0515133 0.998672)} Corner 304 572 {wid=845 normal=(0 -0.051026 0.998697)} Corner 437 572 {wid=848 normal=(0.00041185 -0.0515133 0.998672)} Corner 178 573 {wid=847 normal=(-0.80458 0.593225 0.0271322)} Corner 451 573 {wid=747 normal=(-0.823243 0.566297 0.0397297)} Corner 304 573 {wid=470 normal=(-0.820134 0.570936 0.037586)} Corner 235 574 {wid=632 normal=(0.93671 0.042744 0.347486)} Corner 305 574 {wid=849 normal=(0.926878 0.200156 0.317544)} Corner 276 574 {wid=755 normal=(0.983031 0.12505 0.134214)} Corner 461 575 {wid=851 normal=(-0.0157145 -0.999852 -0.00695027)} Corner 103 575 {wid=852 normal=(-0.0157145 -0.999852 -0.00695027)} Corner 305 575 {wid=850 normal=(-0.0157145 -0.999852 -0.00695027)} Corner 156 576 {wid=422 normal=(-0.513976 -0.0141403 -0.857688)} Corner 309 576 {wid=490 normal=(0.133989 -0.267693 0.954142)} Corner 156 577 {wid=422 normal=(-0.513976 -0.0141403 -0.857688)} Corner 294 578 {wid=424 normal=(-0.430439 -0.374061 0.821463)} Corner 307 578 {wid=854 normal=(-0.297729 -0.393513 0.869773)} Corner 185 578 {wid=425 normal=(0 -0.544973 0.838454)} Corner 294 579 {wid=818 normal=(0.578853 0.0194597 -0.815199)} Corner 486 579 {wid=1305 normal=(-0.419169 0.132876 -0.898132)} Corner 307 579 {wid=855 normal=(0.262798 -0.0164802 -0.96471)} Corner 294 580 {wid=818 normal=(0.578853 0.0194597 -0.815199)} Corner 308 580 {wid=857 normal=(0.667057 -0.0582146 -0.742729)} Corner 137 580 {wid=372 normal=(0.537093 -0.226403 0.812572)} Corner 294 581 {wid=424 normal=(-0.430439 -0.374061 0.821463)} Corner 185 581 {wid=425 normal=(0 -0.544973 0.838454)} Corner 308 581 {wid=856 normal=(-0.491351 -0.317371 0.811079)} Corner 185 582 {wid=489 normal=(-3.57628e-007 -0.610405 -0.792089)} Corner 457 582 {wid=858 normal=(-0.794626 -0.589094 -0.14676)} Corner 185 583 {wid=425 normal=(0 -0.544973 0.838454)} Corner 156 583 {wid=423 normal=(0.27638 -0.639914 0.717025)} Corner 309 583 {wid=859 normal=(0.78527 -0.252403 0.56537)} Corner 192 584 {wid=862 normal=(0.61907 0.726321 -0.298682)} Corner 310 584 {wid=860 normal=(0.872592 0.360974 -0.329061)} Corner 99 584 {wid=864 normal=(0.483785 0.84392 0.231844)} Corner 460 585 {wid=863 normal=(0.400346 -0.909307 -0.113507)} Corner 407 585 {wid=865 normal=(0.506678 -0.84641 0.163914)} Corner 327 585 {wid=861 normal=(0.732597 -0.679972 0.0306614)} Corner 55 586 {wid=132 normal=(0.353376 -0.327211 -0.876389)} Corner 311 586 {wid=866 normal=(0.103675 0.746416 -0.657354)} Corner 9 586 {wid=9 normal=(-0.203103 0.248811 -0.947017)} Corner 55 587 {wid=659 normal=(-0.383541 -0.342221 -0.857777)} Corner 312 587 {wid=660 normal=(-0.63609 -0.0819 -0.767256)} Corner 311 587 {wid=867 normal=(-0.57151 0.433009 -0.69705)} Corner 208 588 {wid=404 normal=(-0.935042 -0.152174 -0.320216)} Corner 312 588 {wid=868 normal=(-0.93504 -0.152174 -0.320223)} Corner 243 588 {wid=405 normal=(-0.935041 -0.152173 -0.320221)} Corner 208 589 {wid=869 normal=(-0.902467 0.343409 -0.260044)} Corner 311 589 {wid=867 normal=(-0.57151 0.433009 -0.69705)} Corner 312 589 {wid=660 normal=(-0.63609 -0.0819 -0.767256)} Corner 125 590 {wid=871 normal=(-0.225312 -0.349112 0.909591)} Corner 313 590 {wid=604 normal=(0.0492503 0.0101562 -0.998735)} Corner 511 590 {wid=603 normal=(-0.210646 -0.561168 -0.800449)} Corner 314 591 {wid=144 normal=(-0.201106 0.336165 0.920081)} Corner 226 591 {wid=140 normal=(-0.580706 0.285838 0.762284)} Corner 313 591 {wid=870 normal=(-0.580706 0.285838 0.762284)} Corner 125 592 {wid=873 normal=(0.617653 -0.780622 0.0955695)} Corner 314 592 {wid=872 normal=(0.672534 -0.615184 0.411396)} Corner 313 592 {wid=875 normal=(0.584368 -0.811434 -0.00938159)} Corner 125 593 {wid=874 normal=(0.998142 0.0581908 0.0180403)} Corner 237 593 {wid=634 normal=(0.988649 -0.149506 -0.0148549)} Corner 454 594 {wid=1235 normal=(-0.273945 -0.383981 0.881766)} Corner 320 594 {wid=885 normal=(0.582796 -0.404103 0.705018)} Corner 454 595 {wid=1235 normal=(-0.273945 -0.383981 0.881766)} Corner 285 596 {wid=794 normal=(-0.12469 0.675132 0.727083)} Corner 316 596 {wid=877 normal=(-0.347808 -0.759033 0.550364)} Corner 384 596 {wid=1066 normal=(-0.212633 0.429771 0.877545)} Corner 285 597 {wid=879 normal=(-0.124689 0.675133 0.727082)} Corner 217 597 {wid=880 normal=(-0.965451 0.188576 0.179843)} Corner 316 597 {wid=878 normal=(-0.347809 -0.759032 0.550363)} Corner 217 598 {wid=578 normal=(-0.96545 0.188575 0.179844)} Corner 217 599 {wid=578 normal=(-0.96545 0.188575 0.179844)} Corner 95 602 {wid=884 normal=(-0.0858566 -0.837552 -0.53957)} Corner 465 602 {wid=446 normal=(-0.0248163 -0.920525 -0.389895)} Corner 168 602 {wid=444 normal=(0.015772 -0.822228 -0.56894)} Corner 95 603 {wid=252 normal=(0.686827 0.296644 -0.663529)} Corner 320 604 {wid=885 normal=(0.582796 -0.404103 0.705018)} Corner 185 605 {wid=489 normal=(-3.57628e-007 -0.610405 -0.792089)} Corner 320 605 {wid=885 normal=(0.582796 -0.404103 0.705018)} Corner 481 606 {wid=839 normal=(-0.926478 0.0317794 0.375004)} Corner 321 606 {wid=886 normal=(-0.926478 0.0317794 0.375004)} Corner 100 606 {wid=838 normal=(-0.157891 0.938295 0.30769)} Corner 481 607 {wid=888 normal=(0 -1 0)} Corner 29 607 {wid=889 normal=(0 -1 0)} Corner 321 607 {wid=887 normal=(0 -1 0)} Corner 323 608 {wid=312 normal=(0.935015 -0.152194 -0.320288)} Corner 322 608 {wid=890 normal=(0.935023 -0.152186 -0.320266)} Corner 114 608 {wid=310 normal=(0.935042 -0.152173 -0.320219)} Corner 181 609 {wid=892 normal=(0.684877 0.720019 0.111873)} Corner 265 609 {wid=893 normal=(0.768737 0.0289046 0.638911)} Corner 322 609 {wid=891 normal=(0.682568 0.723341 0.104306)} Corner 181 610 {wid=896 normal=(0.964105 -0.00323172 -0.265502)} Corner 323 610 {wid=894 normal=(0.93832 0.0118371 -0.345564)} Corner 268 610 {wid=897 normal=(0.899963 -0.0375275 -0.434348)} Corner 181 611 {wid=892 normal=(0.684877 0.720019 0.111873)} Corner 322 611 {wid=891 normal=(0.682568 0.723341 0.104306)} Corner 323 611 {wid=895 normal=(0.541818 0.784052 -0.302812)} Corner 66 612 {wid=161 normal=(0.353673 -0.100818 0.92992)} Corner 324 612 {wid=898 normal=(0.987937 -0.0634772 -0.141247)} Corner 164 612 {wid=162 normal=(0.614169 -0.0831513 0.784781)} Corner 66 613 {wid=250 normal=(0.331068 -0.0360768 0.942917)} Corner 94 613 {wid=249 normal=(0.522959 -0.815795 -0.246966)} Corner 324 613 {wid=899 normal=(0.985658 0.150248 -0.0768383)} Corner 419 614 {wid=902 normal=(0.13847 0.985552 -0.097537)} Corner 418 614 {wid=900 normal=(0.378274 0.919649 0.105614)} Corner 450 614 {wid=904 normal=(0.366535 0.921596 0.127722)} Corner 293 615 {wid=903 normal=(-0.473595 -0.0668016 0.878205)} Corner 234 615 {wid=905 normal=(-0.392182 0.238146 0.888527)} Corner 325 615 {wid=901 normal=(-0.43054 0.198616 0.880447)} Corner 505 616 {wid=908 normal=(0.608669 -0.658414 -0.442734)} Corner 326 616 {wid=906 normal=(0.746449 -0.485579 0.455003)} Corner 15 616 {wid=910 normal=(0.905586 -0.108628 0.410016)} Corner 90 617 {wid=909 normal=(0.585757 -0.800985 -0.12374)} Corner 189 617 {wid=911 normal=(0.451581 -0.77522 -0.441711)} Corner 326 617 {wid=907 normal=(0.585757 -0.800985 -0.12374)} Corner 406 618 {wid=914 normal=(-0.482148 -0.0425754 -0.875055)} Corner 327 618 {wid=912 normal=(-0.0970998 0.255476 -0.961927)} Corner 407 618 {wid=916 normal=(0.108579 0.14612 -0.98329)} Corner 310 619 {wid=915 normal=(-0.0477115 0.127817 0.990649)} Corner 460 619 {wid=917 normal=(-0.12264 0.298573 0.946474)} Corner 327 619 {wid=913 normal=(-0.191925 0.150621 0.969782)} Corner 25 620 {wid=153 normal=(0.0189398 0.74245 0.669634)} Corner 328 620 {wid=718 normal=(0.0395833 0.744261 0.666715)} Corner 24 620 {wid=152 normal=(-0.957923 0.0920842 0.27185)} Corner 25 621 {wid=153 normal=(0.0189398 0.74245 0.669634)} Corner 501 621 {wid=1334 normal=(0.537346 0.705587 0.46196)} Corner 328 621 {wid=718 normal=(0.0395833 0.744261 0.666715)} Corner 7 624 {wid=7 normal=(-0.824241 0.178461 -0.537381)} Corner 330 624 {wid=919 normal=(-0.0988593 0.0704348 0.992606)} Corner 6 624 {wid=6 normal=(-0.865239 -0.0778686 0.495276)} Corner 7 625 {wid=280 normal=(-0.836927 0.0674514 -0.543142)} Corner 8 625 {wid=289 normal=(-0.0189398 0.74245 0.669634)} Corner 330 625 {wid=920 normal=(-0.0395833 0.744261 0.666715)} Corner 35 626 {wid=71 normal=(0.373135 0.0229888 0.927492)} Corner 331 626 {wid=921 normal=(0.7667 -0.171988 -0.61854)} Corner 439 626 {wid=69 normal=(0.662237 -0.194709 -0.723554)} Corner 35 627 {wid=343 normal=(0.849738 0.18401 0.494051)} Corner 237 627 {wid=634 normal=(0.988649 -0.149506 -0.0148549)} Corner 331 627 {wid=922 normal=(0.732505 0.0983596 -0.673618)} Corner 121 630 {wid=925 normal=(0.00688992 -0.996321 0.0854212)} Corner 333 630 {wid=924 normal=(-0.0468879 -0.993825 0.100561)} Corner 292 630 {wid=926 normal=(-0.231854 -0.957202 0.173227)} Corner 121 631 {wid=925 normal=(0.00688992 -0.996321 0.0854212)} Corner 173 631 {wid=927 normal=(0.231854 -0.957202 0.173227)} Corner 333 631 {wid=924 normal=(-0.0468879 -0.993825 0.100561)} Corner 19 632 {wid=581 normal=(-0.00198819 -0.392589 -0.919711)} Corner 334 632 {wid=928 normal=(-0.475024 -0.827081 0.300481)} Corner 258 632 {wid=580 normal=(0.311888 -0.943783 0.109541)} Corner 19 633 {wid=581 normal=(-0.00198819 -0.392589 -0.919711)} Corner 218 633 {wid=929 normal=(-0.175241 0.977197 -0.119909)} Corner 334 633 {wid=928 normal=(-0.475024 -0.827081 0.300481)} Corner 278 634 {wid=932 normal=(-0.275376 0.256107 0.926594)} Corner 335 634 {wid=930 normal=(-0.313275 0.264206 0.91217)} Corner 277 634 {wid=934 normal=(-0.135501 0.407122 0.903267)} Corner 278 635 {wid=933 normal=(0.529116 -0.573087 -0.625786)} Corner 353 635 {wid=935 normal=(0.482369 -0.605988 -0.632534)} Corner 335 635 {wid=931 normal=(0.482369 -0.605988 -0.632534)} Corner 64 636 {wid=156 normal=(-0.482358 -0.205572 -0.851511)} Corner 336 636 {wid=936 normal=(-0.863052 -0.0451684 0.503092)} Corner 1 636 {wid=155 normal=(-0.992525 -0.117469 0.0330816)} Corner 64 637 {wid=342 normal=(-0.574638 0.117965 -0.809862)} Corner 466 637 {wid=1263 normal=(-0.646524 0.194492 0.737686)} Corner 336 637 {wid=937 normal=(-0.849738 0.184009 0.494051)} Corner 84 638 {wid=840 normal=(0.593272 0.804172 -0.0365475)} Corner 337 638 {wid=938 normal=(0.64223 0.7633 -0.0701029)} Corner 29 638 {wid=939 normal=(0.93337 0.0302482 -0.357639)} Corner 84 639 {wid=840 normal=(0.593272 0.804172 -0.0365475)} Corner 100 639 {wid=838 normal=(-0.157891 0.938295 0.30769)} Corner 337 639 {wid=938 normal=(0.64223 0.7633 -0.0701029)} Corner 29 640 {wid=939 normal=(0.93337 0.0302482 -0.357639)} Corner 338 640 {wid=940 normal=(0.93337 0.0302482 -0.357639)} Corner 84 640 {wid=840 normal=(0.593272 0.804172 -0.0365475)} Corner 29 641 {wid=889 normal=(0 -1 0)} Corner 481 641 {wid=888 normal=(0 -1 0)} Corner 338 641 {wid=941 normal=(0 -1 0)} Corner 250 643 {wid=692 normal=(0.244695 -0.097176 -0.964718)} Corner 144 644 {wid=540 normal=(0 0.702883 -0.711305)} Corner 340 644 {wid=255 normal=(-0.0184147 0.468522 -0.88326)} Corner 232 644 {wid=253 normal=(0.00520121 0.69086 -0.72297)} Corner 144 645 {wid=540 normal=(0 0.702883 -0.711305)} Corner 177 645 {wid=539 normal=(0 0.941437 -0.337188)} Corner 340 645 {wid=255 normal=(-0.0184147 0.468522 -0.88326)} Corner 314 646 {wid=943 normal=(0.757133 0.280682 0.589889)} Corner 342 646 {wid=944 normal=(0.441329 0.371835 0.816681)} Corner 314 647 {wid=943 normal=(0.757133 0.280682 0.589889)} Corner 125 647 {wid=874 normal=(0.998142 0.0581908 0.0180403)} Corner 204 648 {wid=344 normal=(0.27705 0.461878 0.842563)} Corner 342 648 {wid=945 normal=(0.821176 0.135048 0.554466)} Corner 204 649 {wid=947 normal=(-0.0952917 0.0707151 0.992934)} Corner 215 649 {wid=948 normal=(-0.050699 0.258793 0.964601)} Corner 342 649 {wid=946 normal=(-0.0875934 0.128379 0.987849)} Corner 448 650 {wid=950 normal=(-0.710938 0.608896 -0.35187)} Corner 343 650 {wid=569 normal=(0.250449 -0.594698 -0.763944)} Corner 345 650 {wid=567 normal=(-0.960975 0.122341 -0.248112)} Corner 448 651 {wid=951 normal=(0.473082 0.825278 -0.308399)} Corner 216 651 {wid=952 normal=(0.8433 0.506676 -0.179235)} Corner 343 651 {wid=949 normal=(0.335425 0.0428716 -0.941091)} Corner 216 652 {wid=954 normal=(0.901492 -0.432667 -0.0105772)} Corner 344 652 {wid=571 normal=(0.385009 -0.918713 -0.0879471)} Corner 343 652 {wid=569 normal=(0.250449 -0.594698 -0.763944)} Corner 216 653 {wid=955 normal=(0.323916 -0.74131 0.587825)} Corner 215 653 {wid=956 normal=(0.323916 -0.74131 0.587825)} Corner 344 653 {wid=953 normal=(0.452853 -0.790504 0.412344)} Corner 215 654 {wid=959 normal=(-0.430336 -0.370067 0.823323)} Corner 345 654 {wid=957 normal=(-0.804729 -0.141515 0.576529)} Corner 344 654 {wid=960 normal=(-0.0177075 -0.74342 0.668591)} Corner 215 655 {wid=566 normal=(-0.782873 0.498596 0.372174)} Corner 448 655 {wid=1217 normal=(-0.935025 0.205428 0.289011)} Corner 345 655 {wid=958 normal=(-0.929926 0.275767 0.243292)} Corner 440 656 {wid=1199 normal=(0.0639027 -0.274665 0.959414)} Corner 237 658 {wid=634 normal=(0.988649 -0.149506 -0.0148549)} Corner 347 658 {wid=962 normal=(0.647487 0.021701 -0.761767)} Corner 331 658 {wid=922 normal=(0.732505 0.0983596 -0.673618)} Corner 237 659 {wid=635 normal=(0.544284 -0.838716 -0.0176263)} Corner 123 659 {wid=669 normal=(0.201138 -0.781966 -0.589977)} Corner 347 659 {wid=963 normal=(0.484023 -0.843071 -0.234422)} Corner 123 660 {wid=966 normal=(-0.182516 0.0816396 -0.979808)} Corner 348 660 {wid=965 normal=(-0.108579 0.14612 -0.98329)} Corner 246 660 {wid=967 normal=(0.957973 0.286687 -0.00992233)} Corner 123 661 {wid=669 normal=(0.201138 -0.781966 -0.589977)} Corner 237 661 {wid=635 normal=(0.544284 -0.838716 -0.0176263)} Corner 348 661 {wid=964 normal=(0.316301 -0.702564 -0.637462)} Corner 282 662 {wid=779 normal=(0.43039 0.199548 0.88031)} Corner 349 662 {wid=968 normal=(0.461835 -0.103252 0.880935)} Corner 281 662 {wid=781 normal=(0.43054 0.198616 0.880447)} Corner 446 663 {wid=970 normal=(-0.188212 0.981655 0.0304768)} Corner 398 663 {wid=971 normal=(-0.366535 0.921596 0.127722)} Corner 349 663 {wid=969 normal=(-0.378274 0.919649 0.105614)} Corner 130 664 {wid=973 normal=(0.161809 0.0720117 0.984192)} Corner 350 664 {wid=46 normal=(-0.47972 0.0996945 0.87174)} Corner 116 664 {wid=317 normal=(0.662786 0.0799745 0.744525)} Corner 130 665 {wid=551 normal=(-0.00712216 -0.999973 0.00188856)} Corner 51 665 {wid=552 normal=(-4.99408e-006 -1 -1.61264e-005)} Corner 350 665 {wid=972 normal=(-0.0287352 -0.999134 0.0301066)} Corner 119 666 {wid=975 normal=(0.860201 0.00831142 -0.509888)} Corner 351 666 {wid=498 normal=(0.860201 0.00831142 -0.509888)} Corner 261 666 {wid=717 normal=(0.876333 0.118797 -0.466828)} Corner 119 667 {wid=826 normal=(0.0157145 -0.999852 -0.00695027)} Corner 297 667 {wid=823 normal=(0.0157145 -0.999852 -0.00695027)} Corner 351 667 {wid=974 normal=(0.0157145 -0.999852 -0.00695027)} Corner 117 668 {wid=319 normal=(-0.213802 -0.0586599 0.975114)} Corner 352 668 {wid=976 normal=(-0.384018 -0.8482 0.364811)} Corner 117 669 {wid=978 normal=(0.476997 -0.213336 0.85262)} Corner 401 669 {wid=979 normal=(-0.374561 -0.162978 0.912766)} Corner 352 669 {wid=977 normal=(-0.513577 -0.170239 0.840986)} Corner 356 670 {wid=981 normal=(-0.0673561 0.0188643 -0.997551)} Corner 353 670 {wid=980 normal=(-0.150137 0.0580168 -0.986961)} Corner 278 670 {wid=982 normal=(-0.0492503 0.0101562 -0.998735)} Corner 356 671 {wid=981 normal=(-0.0673561 0.0188643 -0.997551)} Corner 354 671 {wid=983 normal=(-0.666753 0.477185 -0.572482)} Corner 353 671 {wid=980 normal=(-0.150137 0.0580168 -0.986961)} Corner 277 672 {wid=986 normal=(-0.159931 0.984098 0.077287)} Corner 355 672 {wid=984 normal=(-0.363126 0.886933 -0.285464)} Corner 356 672 {wid=987 normal=(-0.485233 0.586755 -0.64828)} Corner 277 673 {wid=934 normal=(-0.135501 0.407122 0.903267)} Corner 335 673 {wid=930 normal=(-0.313275 0.264206 0.91217)} Corner 355 673 {wid=985 normal=(-0.452073 0.543151 0.707543)} Corner 354 674 {wid=990 normal=(-0.641788 0.670921 0.371447)} Corner 355 674 {wid=988 normal=(-0.356261 -0.00658997 0.934363)} Corner 335 674 {wid=992 normal=(-0.356261 -0.00658997 0.934363)} Corner 354 675 {wid=991 normal=(-0.971326 -0.231543 -0.0539855)} Corner 356 675 {wid=993 normal=(-0.529653 -0.826042 -0.192671)} Corner 355 675 {wid=989 normal=(-0.592508 -0.68821 0.418689)} Corner 191 676 {wid=995 normal=(0.385686 -0.65863 0.646106)} Corner 356 676 {wid=981 normal=(-0.0673561 0.0188643 -0.997551)} Corner 278 676 {wid=982 normal=(-0.0492503 0.0101562 -0.998735)} Corner 191 677 {wid=504 normal=(0.85741 0.17342 -0.484535)} Corner 3 677 {wid=267 normal=(0.951888 0.223843 0.209292)} Corner 356 677 {wid=994 normal=(0.95293 0.267271 0.143147)} Corner 462 678 {wid=998 normal=(-0.806095 0.370098 -0.461778)} Corner 357 678 {wid=996 normal=(-0.765716 0.468038 -0.441157)} Corner 192 678 {wid=1000 normal=(-0.837084 0.267847 -0.47702)} Corner 462 679 {wid=999 normal=(-0.419061 0.897434 0.137839)} Corner 249 679 {wid=1001 normal=(0.758185 0.649619 0.0561323)} Corner 357 679 {wid=997 normal=(0.356774 0.93393 0.0220666)} Corner 103 680 {wid=852 normal=(-0.0157145 -0.999852 -0.00695027)} Corner 358 680 {wid=1003 normal=(-0.0157145 -0.999852 -0.00695027)} Corner 305 680 {wid=850 normal=(-0.0157145 -0.999852 -0.00695027)} Corner 103 681 {wid=276 normal=(-0.860201 0.00831142 -0.509888)} Corner 7 681 {wid=280 normal=(-0.836927 0.0674514 -0.543142)} Corner 358 681 {wid=1002 normal=(-0.860201 0.00831142 -0.509888)} Corner 213 682 {wid=1006 normal=(0.860032 0.255452 -0.441689)} Corner 359 682 {wid=1004 normal=(0.71896 0.597288 -0.355449)} Corner 231 682 {wid=1008 normal=(0.710938 0.608896 -0.35187)} Corner 213 683 {wid=1007 normal=(0.801792 0.35065 0.483916)} Corner 467 683 {wid=1009 normal=(0.801792 0.35065 0.483916)} Corner 359 683 {wid=1005 normal=(0.782873 0.498596 0.372173)} Corner 231 684 {wid=565 normal=(-0.901492 -0.432667 -0.0105772)} Corner 240 684 {wid=561 normal=(-0.886219 -0.463015 -0.0152685)} Corner 231 685 {wid=1008 normal=(0.710938 0.608896 -0.35187)} Corner 359 685 {wid=1004 normal=(0.71896 0.597288 -0.355449)} Corner 360 685 {wid=1010 normal=(0.960975 0.122342 -0.248112)} Corner 226 686 {wid=1012 normal=(0.275376 0.256107 0.926594)} Corner 361 686 {wid=1011 normal=(0.28492 0.368305 0.88497)} Corner 313 686 {wid=1013 normal=(0.275376 0.256107 0.926594)} Corner 226 687 {wid=1012 normal=(0.275376 0.256107 0.926594)} Corner 369 687 {wid=1014 normal=(0.400795 0.53787 0.74166)} Corner 361 687 {wid=1011 normal=(0.28492 0.368305 0.88497)} Corner 191 688 {wid=1017 normal=(0.016731 0.394151 0.918893)} Corner 362 688 {wid=1015 normal=(-0.195269 0.281412 0.939509)} Corner 462 688 {wid=1018 normal=(-0.251568 0.201604 0.94661)} Corner 191 689 {wid=503 normal=(-0.40538 -0.633565 0.658985)} Corner 192 689 {wid=3 normal=(0.159692 -0.670057 -0.724929)} Corner 362 689 {wid=1016 normal=(0.0238279 -0.515418 0.856607)} Corner 81 690 {wid=546 normal=(0.936621 -0.000655751 0.350343)} Corner 363 690 {wid=1019 normal=(0.936621 -0.000655751 0.350343)} Corner 207 690 {wid=542 normal=(0.926478 0.0317794 0.375004)} Corner 81 691 {wid=1021 normal=(0.729441 0.585339 0.35397)} Corner 106 691 {wid=1022 normal=(-0.289148 0.946954 0.140253)} Corner 363 691 {wid=1020 normal=(0.729441 0.585339 0.35397)} Corner 276 692 {wid=1025 normal=(-0.0957809 0.975151 0.199764)} Corner 364 692 {wid=1023 normal=(-0.110105 0.978965 0.171769)} Corner 383 692 {wid=1026 normal=(-0.231091 0.954947 0.186206)} Corner 276 693 {wid=291 normal=(0.851956 0.284125 -0.439822)} Corner 416 693 {wid=293 normal=(0.759173 -0.532975 -0.373624)} Corner 364 693 {wid=1024 normal=(0.851956 0.284125 -0.439822)} Corner 365 694 {wid=1027 normal=(0 0.999995 -0.00325906)} Corner 485 694 {wid=1304 normal=(-0.534979 0.834261 0.133437)} Corner 22 695 {wid=201 normal=(0.633129 0.771813 0.0587491)} Corner 365 695 {wid=1027 normal=(0 0.999995 -0.00325906)} Corner 263 696 {wid=339 normal=(0.610714 -0.106722 -0.784627)} Corner 366 696 {wid=1028 normal=(0.259452 -0.51857 -0.81472)} Corner 234 696 {wid=629 normal=(-0.935322 -0.188589 -0.299344)} Corner 263 697 {wid=339 normal=(0.610714 -0.106722 -0.784627)} Corner 293 697 {wid=1029 normal=(-0.405249 -0.873656 0.269255)} Corner 366 697 {wid=1028 normal=(0.259452 -0.51857 -0.81472)} Corner 313 698 {wid=604 normal=(0.0492503 0.0101562 -0.998735)} Corner 367 698 {wid=1030 normal=(0.113809 -0.135757 -0.984184)} Corner 369 698 {wid=1040 normal=(0.0900393 -0.0543206 -0.994456)} Corner 313 699 {wid=1032 normal=(-0.53609 -0.824953 0.179052)} Corner 361 699 {wid=1033 normal=(-0.835613 -0.480955 0.265393)} Corner 367 699 {wid=1031 normal=(-0.841873 -0.506749 0.185623)} Corner 361 700 {wid=1036 normal=(-0.903478 0.426576 -0.0419504)} Corner 368 700 {wid=1034 normal=(-0.6071 0.792395 -0.0594916)} Corner 367 700 {wid=1038 normal=(-0.89479 0.44402 0.0468745)} Corner 361 701 {wid=1037 normal=(0.356261 -0.00658997 0.934363)} Corner 369 701 {wid=1039 normal=(0.356261 -0.00658997 0.934363)} Corner 368 701 {wid=1035 normal=(0.610154 0.759138 0.226765)} Corner 511 702 {wid=598 normal=(-0.822572 -0.12787 -0.554098)} Corner 369 702 {wid=1041 normal=(-0.95293 0.267271 0.143147)} Corner 226 702 {wid=601 normal=(-0.943845 0.310279 0.113502)} Corner 511 703 {wid=603 normal=(-0.210646 -0.561168 -0.800449)} Corner 313 703 {wid=604 normal=(0.0492503 0.0101562 -0.998735)} Corner 369 703 {wid=1040 normal=(0.0900393 -0.0543206 -0.994456)} Corner 413 704 {wid=1043 normal=(-0.00730279 -0.485785 0.874047)} Corner 370 704 {wid=512 normal=(-0.0525061 -0.448979 0.891998)} Corner 180 704 {wid=47 normal=(0.0247551 0.0123975 0.999617)} Corner 116 705 {wid=317 normal=(0.662786 0.0799745 0.744525)} Corner 371 705 {wid=1044 normal=(0.89887 -0.350427 0.263121)} Corner 370 706 {wid=1042 normal=(0.507817 -0.651272 0.563885)} Corner 371 706 {wid=1044 normal=(0.89887 -0.350427 0.263121)} Corner 456 706 {wid=1241 normal=(0.901058 -0.428474 0.0671149)} Corner 370 707 {wid=1042 normal=(0.507817 -0.651272 0.563885)} Corner 413 707 {wid=1045 normal=(0.384018 -0.8482 0.364811)} Corner 371 707 {wid=1044 normal=(0.89887 -0.350427 0.263121)} Corner 218 708 {wid=929 normal=(-0.175241 0.977197 -0.119909)} Corner 372 708 {wid=713 normal=(0.411303 0.189226 0.891641)} Corner 334 708 {wid=928 normal=(-0.475024 -0.827081 0.300481)} Corner 218 709 {wid=929 normal=(-0.175241 0.977197 -0.119909)} Corner 21 709 {wid=582 normal=(-0.0213408 -0.365928 -0.930398)} Corner 372 709 {wid=713 normal=(0.411303 0.189226 0.891641)} Corner 316 711 {wid=877 normal=(-0.347808 -0.759033 0.550364)} Corner 217 711 {wid=578 normal=(-0.96545 0.188575 0.179844)} Corner 429 714 {wid=1174 normal=(0.617079 -0.547384 0.565319)} Corner 296 714 {wid=822 normal=(0.933305 0.342152 0.108973)} Corner 376 716 {wid=1049 normal=(-0.206474 -0.819079 0.535236)} Corner 178 716 {wid=469 normal=(-0.058053 0.0128031 0.998232)} Corner 161 717 {wid=434 normal=(-0.829604 -0.447757 -0.333573)} Corner 376 717 {wid=1049 normal=(-0.206474 -0.819079 0.535236)} Corner 110 718 {wid=121 normal=(0.879339 -0.474861 0.0356342)} Corner 48 718 {wid=120 normal=(0.53755 0.292608 -0.790835)} Corner 110 719 {wid=121 normal=(0.879339 -0.474861 0.0356342)} Corner 118 719 {wid=303 normal=(-0.606342 -0.750993 0.261453)} Corner 100 720 {wid=360 normal=(-0.355815 0.917834 0.176005)} Corner 378 720 {wid=1051 normal=(-0.765794 0.604494 0.219425)} Corner 129 720 {wid=358 normal=(0.534997 0.764104 0.360448)} Corner 100 721 {wid=1053 normal=(-0.442451 0.181772 -0.878178)} Corner 321 721 {wid=1054 normal=(-0.33119 -0.0703699 -0.940936)} Corner 378 721 {wid=1052 normal=(-0.399313 0.0189141 -0.916619)} Corner 195 724 {wid=1057 normal=(-7.26556e-007 -1 -1.46397e-005)} Corner 380 724 {wid=1056 normal=(2.83128e-006 -1 -1.53292e-005)} Corner 196 724 {wid=1058 normal=(-1.59798e-006 -1 -1.66152e-005)} Corner 408 725 {wid=1120 normal=(0 -1 -1.21187e-005)} Corner 91 725 {wid=1059 normal=(1.67919e-007 -1 -1.09642e-005)} Corner 380 725 {wid=1056 normal=(2.83128e-006 -1 -1.53292e-005)} Corner 122 726 {wid=1061 normal=(-0.907933 -0.23706 -0.345629)} Corner 381 726 {wid=1060 normal=(-0.907933 -0.23706 -0.345629)} Corner 136 726 {wid=1063 normal=(-0.881904 0.241906 -0.404631)} Corner 122 727 {wid=1062 normal=(-0.493487 -0.8148 -0.304256)} Corner 223 727 {wid=333 normal=(-0.399457 -0.914021 0.0707083)} Corner 381 727 {wid=331 normal=(-0.443806 -0.893066 -0.0739529)} Corner 6 728 {wid=127 normal=(-0.65579 0.646986 -0.389035)} Corner 382 728 {wid=1064 normal=(-0.663897 0.64944 -0.370767)} Corner 105 728 {wid=1065 normal=(-0.246541 0.288326 -0.925249)} Corner 6 729 {wid=127 normal=(-0.65579 0.646986 -0.389035)} Corner 104 729 {wid=126 normal=(0.268312 0.89905 0.346002)} Corner 382 729 {wid=1064 normal=(-0.663897 0.64944 -0.370767)} Corner 5 730 {wid=278 normal=(0.105432 0.131005 -0.985759)} Corner 383 730 {wid=757 normal=(0.0218794 0.124831 -0.991937)} Corner 358 730 {wid=1002 normal=(-0.860201 0.00831142 -0.509888)} Corner 5 731 {wid=278 normal=(0.105432 0.131005 -0.985759)} Corner 107 731 {wid=756 normal=(0.88708 0.201574 -0.415279)} Corner 383 731 {wid=757 normal=(0.0218794 0.124831 -0.991937)} Corner 384 732 {wid=1066 normal=(-0.212633 0.429771 0.877545)} Corner 316 732 {wid=877 normal=(-0.347808 -0.759033 0.550364)} Corner 260 733 {wid=716 normal=(0.00429493 -0.830333 0.557252)} Corner 384 733 {wid=1066 normal=(-0.212633 0.429771 0.877545)} Corner 188 734 {wid=1069 normal=(0.298057 0.893921 0.334765)} Corner 385 734 {wid=1067 normal=(0.231091 0.954947 0.186206)} Corner 386 734 {wid=1070 normal=(0.110105 0.978965 0.171769)} Corner 188 735 {wid=420 normal=(0.553129 0.00661669 -0.83307)} Corner 155 735 {wid=416 normal=(0.396052 0.0261731 -0.917855)} Corner 385 735 {wid=1068 normal=(0.389073 0.0869761 -0.917092)} Corner 120 736 {wid=1071 normal=(0.117596 0.980577 0.156971)} Corner 386 736 {wid=1070 normal=(0.110105 0.978965 0.171769)} Corner 297 736 {wid=1072 normal=(0.350326 -0.00194418 0.936626)} Corner 120 737 {wid=1071 normal=(0.117596 0.980577 0.156971)} Corner 188 737 {wid=1069 normal=(0.298057 0.893921 0.334765)} Corner 386 737 {wid=1070 normal=(0.110105 0.978965 0.171769)} Corner 24 738 {wid=152 normal=(-0.957923 0.0920842 0.27185)} Corner 387 738 {wid=1073 normal=(-0.105432 0.131005 -0.985759)} Corner 120 738 {wid=325 normal=(-0.729423 0.184251 -0.658782)} Corner 24 739 {wid=54 normal=(-0.962513 0.0685396 0.262437)} Corner 89 739 {wid=174 normal=(-0.769754 -0.211784 0.602185)} Corner 387 739 {wid=1074 normal=(0.0150934 0.0262485 -0.999542)} Corner 21 740 {wid=1075 normal=(0.151259 0.959982 -0.235702)} Corner 21 741 {wid=1075 normal=(0.151259 0.959982 -0.235702)} Corner 218 741 {wid=579 normal=(-0.0709034 0.671173 -0.737902)} Corner 390 744 {wid=1077 normal=(-0.640406 -0.40235 0.654213)} Corner 168 745 {wid=443 normal=(-0.474002 0.372686 -0.797764)} Corner 390 745 {wid=1077 normal=(-0.640406 -0.40235 0.654213)} Corner 286 746 {wid=795 normal=(0.538335 -0.409545 -0.736524)} Corner 80 748 {wid=545 normal=(0 -1 0)} Corner 392 748 {wid=1079 normal=(0 -1 0)} Corner 72 748 {wid=543 normal=(0 -1 0)} Corner 80 749 {wid=1081 normal=(-0.93337 0.0302482 -0.357639)} Corner 427 749 {wid=1082 normal=(-0.840889 0.486077 -0.237981)} Corner 392 749 {wid=1080 normal=(-0.93337 0.0302482 -0.357639)} Corner 19 750 {wid=19 normal=(-0.151259 0.959982 -0.235702)} Corner 218 750 {wid=579 normal=(-0.0709034 0.671173 -0.737902)} Corner 19 751 {wid=19 normal=(-0.151259 0.959982 -0.235702)} Corner 162 751 {wid=436 normal=(-0.501228 -0.441033 -0.744487)} Corner 113 752 {wid=1086 normal=(0.907933 -0.23706 -0.345629)} Corner 394 752 {wid=1084 normal=(0.907933 -0.23706 -0.345629)} Corner 132 752 {wid=1087 normal=(0.881904 0.241906 -0.404631)} Corner 113 753 {wid=204 normal=(0.443806 -0.893067 -0.0739522)} Corner 193 753 {wid=206 normal=(0.399457 -0.914021 0.0707083)} Corner 394 753 {wid=1085 normal=(0.493487 -0.8148 -0.304256)} Corner 207 754 {wid=1089 normal=(0 -1 0)} Corner 395 754 {wid=357 normal=(0 -1 0)} Corner 80 754 {wid=355 normal=(0 -1 0)} Corner 207 755 {wid=212 normal=(0.954761 0.0258756 0.296246)} Corner 128 755 {wid=211 normal=(-0.847783 0.183224 0.497687)} Corner 395 755 {wid=1088 normal=(-0.0677854 -0.0181222 0.997535)} Corner 280 759 {wid=1094 normal=(0.319459 0.920756 -0.223951)} Corner 398 759 {wid=1092 normal=(0.717084 0.681669 -0.145319)} Corner 282 759 {wid=1095 normal=(0.426064 0.89554 0.128362)} Corner 280 760 {wid=31 normal=(-0.610713 -0.106723 -0.784627)} Corner 281 760 {wid=770 normal=(-0.259452 -0.51857 -0.814721)} Corner 398 760 {wid=1093 normal=(0.0236898 0.166605 -0.985739)} Corner 137 762 {wid=372 normal=(0.537093 -0.226403 0.812572)} Corner 290 763 {wid=595 normal=(-0.161351 0.986814 -0.0127871)} Corner 400 763 {wid=1097 normal=(-0.159257 0.983472 -0.0861419)} Corner 189 763 {wid=1098 normal=(0.0921581 0.989073 -0.115074)} Corner 290 764 {wid=595 normal=(-0.161351 0.986814 -0.0127871)} Corner 223 764 {wid=593 normal=(-0.169808 0.984837 0.0355105)} Corner 400 764 {wid=1097 normal=(-0.159257 0.983472 -0.0861419)} Corner 148 765 {wid=1099 normal=(0.281157 0.0446223 0.958624)} Corner 401 765 {wid=979 normal=(-0.374561 -0.162978 0.912766)} Corner 117 765 {wid=978 normal=(0.476997 -0.213336 0.85262)} Corner 148 766 {wid=1100 normal=(-0.024755 0.0123975 0.999617)} Corner 180 766 {wid=47 normal=(0.0247551 0.0123975 0.999617)} Corner 401 766 {wid=62 normal=(0.283469 -0.26181 0.922551)} Corner 148 767 {wid=477 normal=(0.0002943 -0.999998 0.00206073)} Corner 402 767 {wid=1101 normal=(0.000284401 -0.999998 0.00199279)} Corner 210 767 {wid=475 normal=(-0.000284401 -0.999998 0.00199279)} Corner 148 768 {wid=477 normal=(0.0002943 -0.999998 0.00206073)} Corner 54 768 {wid=1102 normal=(0.0252291 -0.999332 0.0264289)} Corner 402 768 {wid=1101 normal=(0.000284401 -0.999998 0.00199279)} Corner 148 769 {wid=477 normal=(0.0002943 -0.999998 0.00206073)} Corner 403 769 {wid=1103 normal=(0.00712203 -0.999973 0.00188856)} Corner 54 769 {wid=1102 normal=(0.0252291 -0.999332 0.0264289)} Corner 148 770 {wid=1099 normal=(0.281157 0.0446223 0.958624)} Corner 117 770 {wid=978 normal=(0.476997 -0.213336 0.85262)} Corner 403 770 {wid=1104 normal=(0.676588 0.0929373 0.730473)} Corner 187 771 {wid=1107 normal=(0.0199924 -0.675713 -0.736893)} Corner 404 771 {wid=1105 normal=(-0.0126334 -0.53062 -0.847516)} Corner 37 771 {wid=1108 normal=(-0.0350127 -0.419273 -0.907185)} Corner 187 772 {wid=844 normal=(-0.451581 -0.77522 -0.441711)} Corner 63 772 {wid=843 normal=(-0.585757 -0.800985 -0.12374)} Corner 404 772 {wid=1106 normal=(-0.451581 -0.77522 -0.441711)} Corner 310 775 {wid=1111 normal=(-0.43829 0.865637 -0.24202)} Corner 406 775 {wid=1110 normal=(-0.846246 -0.341047 -0.409335)} Corner 407 775 {wid=1113 normal=(-0.847538 -0.338438 -0.408826)} Corner 310 776 {wid=1112 normal=(-0.957973 0.286687 -0.00992228)} Corner 327 776 {wid=912 normal=(-0.0970998 0.255476 -0.961927)} Corner 406 776 {wid=914 normal=(-0.482148 -0.0425754 -0.875055)} Corner 124 777 {wid=1116 normal=(0.182516 0.0816397 -0.979808)} Corner 407 777 {wid=1114 normal=(0.108579 0.14612 -0.98329)} Corner 234 777 {wid=1118 normal=(0.182516 0.0816396 -0.979808)} Corner 124 778 {wid=1117 normal=(0.673642 0.67002 -0.311897)} Corner 310 778 {wid=1119 normal=(0.612849 0.76051 0.214572)} Corner 407 778 {wid=1115 normal=(0.578781 0.81427 -0.044461)} Corner 195 779 {wid=1057 normal=(-7.26556e-007 -1 -1.46397e-005)} Corner 408 779 {wid=1120 normal=(0 -1 -1.21187e-005)} Corner 380 779 {wid=1056 normal=(2.83128e-006 -1 -1.53292e-005)} Corner 195 780 {wid=199 normal=(-0.879861 6.70713e-006 -0.47523)} Corner 283 780 {wid=88 normal=(-0.225944 1.37548e-005 -0.97414)} Corner 408 780 {wid=1121 normal=(0 1.41228e-005 -1)} Corner 174 781 {wid=1124 normal=(0.932057 -0.308344 -0.190247)} Corner 409 781 {wid=1122 normal=(0.674988 -0.35259 -0.648129)} Corner 475 781 {wid=1126 normal=(0.782214 -0.349057 -0.516044)} Corner 174 782 {wid=1125 normal=(0.965489 0.214311 -0.14799)} Corner 73 782 {wid=1127 normal=(0.930608 0.351687 0.101412)} Corner 409 782 {wid=1123 normal=(0.965489 0.214311 -0.14799)} Corner 83 783 {wid=597 normal=(0.00884043 0.99186 0.127024)} Corner 410 783 {wid=1128 normal=(-0.0586022 0.987693 0.145012)} Corner 223 783 {wid=593 normal=(-0.169808 0.984837 0.0355105)} Corner 83 784 {wid=1130 normal=(-0.47111 -0.826591 0.307899)} Corner 279 784 {wid=1131 normal=(-0.488681 -0.286407 0.824113)} Corner 410 784 {wid=1129 normal=(-0.47111 -0.826591 0.307899)} Corner 155 785 {wid=321 normal=(-0.371525 -0.377398 -0.848257)} Corner 411 785 {wid=1132 normal=(-0.345151 -0.49242 -0.798995)} Corner 386 785 {wid=323 normal=(-0.451303 0.221246 -0.864509)} Corner 155 786 {wid=1133 normal=(-0.000100061 -1 0.000102336)} Corner 351 786 {wid=419 normal=(0.00198237 -0.999998 0.000241191)} Corner 411 786 {wid=417 normal=(0.00254064 -0.999997 0.000278416)} Corner 208 787 {wid=869 normal=(-0.902467 0.343409 -0.260044)} Corner 412 787 {wid=1134 normal=(-0.791026 0.608201 -0.0661048)} Corner 311 787 {wid=867 normal=(-0.57151 0.433009 -0.69705)} Corner 208 788 {wid=869 normal=(-0.902467 0.343409 -0.260044)} Corner 160 788 {wid=1135 normal=(-0.887285 0.136978 0.440412)} Corner 412 788 {wid=1134 normal=(-0.791026 0.608201 -0.0661048)} Corner 116 789 {wid=478 normal=(-0.196305 -0.727873 0.657012)} Corner 413 789 {wid=1136 normal=(0.513577 -0.170239 0.840986)} Corner 180 789 {wid=474 normal=(-0.281157 0.0446223 0.958624)} Corner 116 790 {wid=1138 normal=(0.640911 -0.707263 0.298349)} Corner 371 790 {wid=1139 normal=(0.833487 -0.40752 0.373131)} Corner 413 790 {wid=1137 normal=(0.91762 -0.088393 0.387505)} Corner 56 791 {wid=134 normal=(0.948439 0.0166693 0.316522)} Corner 414 791 {wid=1141 normal=(0.388515 -0.192574 0.901094)} Corner 464 791 {wid=242 normal=(0.395789 -0.238275 0.886891)} Corner 56 792 {wid=97 normal=(0.547319 -0.831191 0.097798)} Corner 273 792 {wid=746 normal=(-0.0385036 0.23259 0.971813)} Corner 414 792 {wid=1140 normal=(0.206474 -0.819079 0.535236)} Corner 34 793 {wid=146 normal=(0.68621 0.250027 0.683082)} Corner 34 794 {wid=146 normal=(0.68621 0.250027 0.683082)} Corner 126 795 {wid=279 normal=(-0.00230553 -0.999998 0.000255022)} Corner 416 795 {wid=1143 normal=(-0.00787849 -0.999969 0.000809694)} Corner 305 795 {wid=281 normal=(-0.00373078 -0.999993 0.000396875)} Corner 126 796 {wid=346 normal=(0.345151 -0.49242 -0.798995)} Corner 364 796 {wid=350 normal=(0.451303 0.221246 -0.864509)} Corner 416 796 {wid=1144 normal=(0.345151 -0.49242 -0.798995)} Corner 229 797 {wid=613 normal=(0.285196 -0.349738 -0.892383)} Corner 417 797 {wid=1145 normal=(0.906052 -0.272825 0.323476)} Corner 107 797 {wid=125 normal=(0.984446 -0.0348826 -0.172193)} Corner 229 798 {wid=1146 normal=(0.0401659 0.996302 -0.0759506)} Corner 105 798 {wid=287 normal=(0.284235 0.762056 -0.581792)} Corner 417 798 {wid=614 normal=(0.239118 0.841127 -0.485106)} Corner 325 799 {wid=901 normal=(-0.43054 0.198616 0.880447)} Corner 418 799 {wid=1147 normal=(-0.461835 -0.103252 0.880935)} Corner 293 799 {wid=903 normal=(-0.473595 -0.0668016 0.878205)} Corner 325 800 {wid=1149 normal=(0.693478 -0.656899 0.295927)} Corner 450 800 {wid=1150 normal=(0.961738 -0.272502 -0.0283278)} Corner 418 800 {wid=1148 normal=(0.883645 -0.42114 0.204483)} Corner 293 801 {wid=1029 normal=(-0.405249 -0.873656 0.269255)} Corner 419 801 {wid=1151 normal=(-0.666122 0.436009 -0.605126)} Corner 450 801 {wid=1225 normal=(-0.0236898 0.166605 -0.985739)} Corner 293 802 {wid=903 normal=(-0.473595 -0.0668016 0.878205)} Corner 418 802 {wid=1147 normal=(-0.461835 -0.103252 0.880935)} Corner 419 802 {wid=1152 normal=(-0.821859 0.493605 0.284432)} Corner 74 803 {wid=1155 normal=(-0.965489 0.214311 -0.14799)} Corner 420 803 {wid=1153 normal=(-0.965489 0.214311 -0.14799)} Corner 101 803 {wid=1157 normal=(-0.930608 0.351687 0.101412)} Corner 74 804 {wid=1156 normal=(-0.932057 -0.308344 -0.190247)} Corner 68 804 {wid=1158 normal=(-0.932057 -0.308344 -0.190247)} Corner 420 804 {wid=1154 normal=(-0.674988 -0.35259 -0.648129)} Corner 189 805 {wid=911 normal=(0.451581 -0.77522 -0.441711)} Corner 421 805 {wid=1159 normal=(0.451581 -0.77522 -0.441711)} Corner 326 805 {wid=907 normal=(0.585757 -0.800985 -0.12374)} Corner 189 806 {wid=1161 normal=(-0.0199924 -0.675713 -0.736893)} Corner 45 806 {wid=1162 normal=(0.0350127 -0.419273 -0.907185)} Corner 421 806 {wid=1160 normal=(0.0126335 -0.53062 -0.847516)} Corner 82 809 {wid=218 normal=(0.821084 -0.0516671 0.568465)} Corner 423 809 {wid=1164 normal=(0.855577 -0.132652 -0.500392)} Corner 189 809 {wid=171 normal=(0.425673 -0.201149 -0.882236)} Corner 82 810 {wid=438 normal=(0.806427 -0.0546584 0.588802)} Corner 498 810 {wid=1330 normal=(0.9456 -0.0937641 -0.311527)} Corner 423 810 {wid=1165 normal=(0.827383 -0.112459 -0.550264)} Corner 28 815 {wid=130 normal=(0.857805 7.30082e-006 -0.513976)} Corner 426 815 {wid=1168 normal=(0.526783 1.20048e-005 -0.85)} Corner 150 815 {wid=406 normal=(0.857806 7.3008e-006 -0.513974)} Corner 28 816 {wid=63 normal=(0.844464 0.27469 -0.459812)} Corner 26 816 {wid=59 normal=(0.32379 0.188469 -0.927168)} Corner 426 816 {wid=1169 normal=(0.561629 0.298281 -0.771752)} Corner 106 817 {wid=1022 normal=(-0.289148 0.946954 0.140253)} Corner 427 817 {wid=1170 normal=(-0.289148 0.946954 0.140253)} Corner 363 817 {wid=1020 normal=(0.729441 0.585339 0.35397)} Corner 106 818 {wid=1171 normal=(-0.840889 0.486077 -0.237981)} Corner 392 818 {wid=1080 normal=(-0.93337 0.0302482 -0.357639)} Corner 427 818 {wid=1082 normal=(-0.840889 0.486077 -0.237981)} Corner 1 819 {wid=155 normal=(-0.992525 -0.117469 0.0330816)} Corner 428 819 {wid=1172 normal=(-0.424149 -0.208663 -0.881225)} Corner 64 819 {wid=156 normal=(-0.482358 -0.205572 -0.851511)} Corner 484 820 {wid=1 normal=(-0.962462 0.261098 -0.0741227)} Corner 428 820 {wid=1173 normal=(-0.550002 -0.0093556 -0.835111)} Corner 260 821 {wid=1175 normal=(0.00429505 -0.830332 0.557252)} Corner 429 821 {wid=462 normal=(0.617079 -0.547383 0.565319)} Corner 384 821 {wid=464 normal=(-0.212634 0.429772 0.877544)} Corner 429 822 {wid=1174 normal=(0.617079 -0.547384 0.565319)} Corner 89 823 {wid=1177 normal=(-0.902133 0.402011 -0.156661)} Corner 430 823 {wid=1176 normal=(-0.863709 0.446679 -0.23342)} Corner 299 823 {wid=1178 normal=(-0.207635 0.57765 -0.789436)} Corner 89 824 {wid=1177 normal=(-0.902133 0.402011 -0.156661)} Corner 60 824 {wid=1179 normal=(-0.725011 0.65665 0.207773)} Corner 430 824 {wid=1176 normal=(-0.863709 0.446679 -0.23342)} Corner 426 825 {wid=1168 normal=(0.526783 1.20048e-005 -0.85)} Corner 432 825 {wid=1180 normal=(0.22411 1.3766e-005 -0.974564)} Corner 287 825 {wid=797 normal=(0.102579 1.40492e-005 -0.994725)} Corner 426 826 {wid=1169 normal=(0.561629 0.298281 -0.771752)} Corner 42 826 {wid=82 normal=(0 -0.139361 -0.990242)} Corner 431 826 {wid=1181 normal=(0.13043 0.357426 -0.924789)} Corner 431 827 {wid=1183 normal=(5.41513e-006 -1 -1.45493e-005)} Corner 432 827 {wid=1182 normal=(3.55377e-006 -1 -1.69459e-005)} Corner 426 827 {wid=1184 normal=(0.133532 -0.966143 -0.220762)} Corner 431 828 {wid=1183 normal=(5.41513e-006 -1 -1.45493e-005)} Corner 209 828 {wid=1185 normal=(-1.84279e-006 -1 -1.91625e-005)} Corner 432 828 {wid=1182 normal=(3.55377e-006 -1 -1.69459e-005)} Corner 209 829 {wid=1185 normal=(-1.84279e-006 -1 -1.91625e-005)} Corner 433 829 {wid=1186 normal=(-9.2847e-007 -1 -1.11907e-005)} Corner 432 829 {wid=1182 normal=(3.55377e-006 -1 -1.69459e-005)} Corner 209 830 {wid=1185 normal=(-1.84279e-006 -1 -1.91625e-005)} Corner 435 830 {wid=1187 normal=(5.42929e-006 -1 -5.75675e-006)} Corner 433 830 {wid=1186 normal=(-9.2847e-007 -1 -1.11907e-005)} Corner 433 831 {wid=550 normal=(-0.342231 1.32704e-005 -0.939615)} Corner 434 831 {wid=1188 normal=(-0.857805 7.30072e-006 -0.513975)} Corner 151 831 {wid=407 normal=(-0.857805 7.30093e-006 -0.513975)} Corner 433 832 {wid=1186 normal=(-9.2847e-007 -1 -1.11907e-005)} Corner 435 832 {wid=1187 normal=(5.42929e-006 -1 -5.75675e-006)} Corner 434 832 {wid=1189 normal=(3.4853e-006 -1 -6.14065e-006)} Corner 51 833 {wid=122 normal=(-0.878715 0.225038 0.420973)} Corner 435 833 {wid=1190 normal=(-0.844464 0.274691 -0.459812)} Corner 101 833 {wid=275 normal=(-0.736123 0.398544 -0.547068)} Corner 51 834 {wid=1191 normal=(-4.99408e-006 -1 -1.61264e-005)} Corner 434 834 {wid=1189 normal=(3.4853e-006 -1 -6.14065e-006)} Corner 435 834 {wid=1187 normal=(5.42929e-006 -1 -5.75675e-006)} Corner 40 835 {wid=131 normal=(0.134376 -1.39895e-005 0.99093)} Corner 436 835 {wid=1192 normal=(-0.687629 -1.0239e-005 0.726063)} Corner 51 835 {wid=365 normal=(-0.981946 -2.67981e-006 0.189162)} Corner 40 836 {wid=450 normal=(0.137465 -1.39866e-005 0.990507)} Corner 92 836 {wid=133 normal=(0.137464 -1.39866e-005 0.990507)} Corner 436 836 {wid=1193 normal=(-0.690295 -9.25497e-006 0.723528)} Corner 438 837 {wid=1195 normal=(0 -0.051026 0.998697)} Corner 437 837 {wid=848 normal=(0.00041185 -0.0515133 0.998672)} Corner 304 837 {wid=845 normal=(0 -0.051026 0.998697)} Corner 97 838 {wid=257 normal=(0.038502 0.23259 0.971813)} Corner 437 838 {wid=1194 normal=(0.0580514 0.0128031 0.998232)} Corner 97 839 {wid=397 normal=(0.823243 0.566297 0.0397297)} Corner 438 839 {wid=1196 normal=(0.820134 0.570936 0.0375861)} Corner 146 839 {wid=395 normal=(0.8313 0.554691 -0.0354683)} Corner 97 840 {wid=397 normal=(0.823243 0.566297 0.0397297)} Corner 437 840 {wid=1197 normal=(0.80458 0.593225 0.0271322)} Corner 438 840 {wid=1196 normal=(0.820134 0.570936 0.0375861)} Corner 439 841 {wid=1198 normal=(0.855113 0.123779 -0.503448)} Corner 34 842 {wid=146 normal=(0.68621 0.250027 0.683082)} Corner 439 842 {wid=1198 normal=(0.855113 0.123779 -0.503448)} Corner 175 843 {wid=457 normal=(0.0769674 -0.843962 0.530852)} Corner 440 843 {wid=1199 normal=(0.0639027 -0.274665 0.959414)} Corner 175 844 {wid=458 normal=(0.0769674 -0.843962 0.530852)} Corner 197 844 {wid=459 normal=(-0.0923452 0.7469 0.658493)} Corner 440 844 {wid=1200 normal=(0.0639027 -0.274665 0.959414)} Corner 243 845 {wid=658 normal=(-0.660614 -0.615839 -0.429339)} Corner 441 845 {wid=1201 normal=(-0.446972 -0.774972 -0.446805)} Corner 149 845 {wid=1202 normal=(-0.75203 -0.596929 0.279512)} Corner 243 846 {wid=658 normal=(-0.660614 -0.615839 -0.429339)} Corner 55 846 {wid=659 normal=(-0.383541 -0.342221 -0.857777)} Corner 441 846 {wid=1201 normal=(-0.446972 -0.774972 -0.446805)} Corner 149 847 {wid=1202 normal=(-0.75203 -0.596929 0.279512)} Corner 442 847 {wid=1203 normal=(-0.815434 -0.577298 0.0423699)} Corner 243 847 {wid=658 normal=(-0.660614 -0.615839 -0.429339)} Corner 149 848 {wid=1202 normal=(-0.75203 -0.596929 0.279512)} Corner 160 848 {wid=1204 normal=(-0.887285 0.136978 0.440412)} Corner 442 848 {wid=1203 normal=(-0.815434 -0.577298 0.0423699)} Corner 236 851 {wid=633 normal=(-0.90941 -0.340812 -0.238371)} Corner 236 852 {wid=633 normal=(-0.90941 -0.340812 -0.238371)} Corner 288 852 {wid=10 normal=(-0.69883 -0.707966 -0.102083)} Corner 159 853 {wid=1207 normal=(0.982907 0.148424 0.108925)} Corner 445 853 {wid=431 normal=(0.964442 -0.0385043 -0.261475)} Corner 62 853 {wid=269 normal=(0.816214 0.268905 -0.511356)} Corner 159 854 {wid=1208 normal=(0.13447 0.712199 0.688977)} Corner 336 854 {wid=433 normal=(0.130865 0.713508 0.688317)} Corner 445 854 {wid=430 normal=(0.351847 0.673001 0.650594)} Corner 282 855 {wid=779 normal=(0.43039 0.199548 0.88031)} Corner 446 855 {wid=1209 normal=(0.821859 0.493605 0.284432)} Corner 349 855 {wid=968 normal=(0.461835 -0.103252 0.880935)} Corner 282 856 {wid=1211 normal=(0.405249 -0.873656 0.269256)} Corner 398 856 {wid=1212 normal=(0.0236898 0.166605 -0.985739)} Corner 446 856 {wid=1210 normal=(0.803622 0.526692 -0.277106)} Corner 102 857 {wid=1214 normal=(-0.115738 -0.983081 -0.141976)} Corner 447 857 {wid=787 normal=(-0.115738 -0.983081 -0.141976)} Corner 283 857 {wid=785 normal=(-0.0422059 -0.99194 -0.119473)} Corner 102 858 {wid=1215 normal=(-0.99813 0.0208377 0.0574692)} Corner 133 858 {wid=1216 normal=(-0.977059 -0.207437 -0.0482349)} Corner 447 858 {wid=1213 normal=(-0.996035 -0.0888412 0.00458071)} Corner 203 859 {wid=568 normal=(-0.801792 0.35065 0.483916)} Corner 448 859 {wid=1217 normal=(-0.935025 0.205428 0.289011)} Corner 215 859 {wid=566 normal=(-0.782873 0.498596 0.372174)} Corner 203 860 {wid=1219 normal=(-0.289116 0.0549553 -0.955715)} Corner 216 860 {wid=1220 normal=(-0.289116 0.0549553 -0.955715)} Corner 448 860 {wid=1218 normal=(-0.449911 -0.353984 -0.819924)} Corner 497 861 {wid=1223 normal=(-0.229145 0.48856 0.841904)} Corner 449 861 {wid=1221 normal=(-0.554089 0.271437 0.786961)} Corner 496 861 {wid=1224 normal=(-0.538468 0.0768128 0.839138)} Corner 246 862 {wid=967 normal=(0.957973 0.286687 -0.00992233)} Corner 348 862 {wid=965 normal=(-0.108579 0.14612 -0.98329)} Corner 449 862 {wid=1222 normal=(0.0970998 0.255476 -0.961927)} Corner 366 863 {wid=1226 normal=(0.728329 -0.637246 0.251902)} Corner 450 863 {wid=1150 normal=(0.961738 -0.272502 -0.0283278)} Corner 325 863 {wid=1149 normal=(0.693478 -0.656899 0.295927)} Corner 366 864 {wid=1028 normal=(0.259452 -0.51857 -0.81472)} Corner 293 864 {wid=1029 normal=(-0.405249 -0.873656 0.269255)} Corner 450 864 {wid=1225 normal=(-0.0236898 0.166605 -0.985739)} Corner 273 865 {wid=1229 normal=(-0.167569 0.0780136 0.982769)} Corner 451 865 {wid=1227 normal=(-0.167569 0.0780136 0.982769)} Corner 178 865 {wid=1231 normal=(-0.0856723 0.130911 0.987685)} Corner 273 866 {wid=1230 normal=(0.392041 0.312524 0.865236)} Corner 275 866 {wid=1232 normal=(0.801586 0.399196 0.445087)} Corner 451 866 {wid=1228 normal=(0.392041 0.312524 0.865236)} Corner 197 867 {wid=515 normal=(-0.0923451 0.7469 0.658492)} Corner 197 868 {wid=515 normal=(-0.0923451 0.7469 0.658492)} Corner 162 871 {wid=1237 normal=(0.064406 -0.994596 -0.0814278)} Corner 454 871 {wid=1236 normal=(0.0504099 -0.995293 -0.0827718)} Corner 320 871 {wid=1238 normal=(-0.064406 -0.994596 -0.0814278)} Corner 162 872 {wid=436 normal=(-0.501228 -0.441033 -0.744487)} Corner 19 872 {wid=19 normal=(-0.151259 0.959982 -0.235702)} Corner 454 872 {wid=1235 normal=(-0.273945 -0.383981 0.881766)} Corner 456 873 {wid=74 normal=(-0.901057 -0.428475 0.0671155)} Corner 455 873 {wid=1239 normal=(-0.947636 -0.304113 0.0974719)} Corner 352 873 {wid=976 normal=(-0.384018 -0.8482 0.364811)} Corner 456 874 {wid=1240 normal=(-0.343435 -0.934565 -0.0929585)} Corner 298 874 {wid=828 normal=(-0.24585 -0.951927 -0.182738)} Corner 455 874 {wid=830 normal=(-0.343435 -0.934565 -0.0929585)} Corner 15 875 {wid=15 normal=(0.947637 -0.304113 0.0974711)} Corner 456 875 {wid=1241 normal=(0.901058 -0.428474 0.0671149)} Corner 371 875 {wid=1044 normal=(0.89887 -0.350427 0.263121)} Corner 15 876 {wid=85 normal=(0.343435 -0.934565 -0.0929585)} Corner 298 876 {wid=84 normal=(0.24585 -0.951927 -0.182738)} Corner 456 876 {wid=1242 normal=(0.343435 -0.934565 -0.0929585)} Corner 309 877 {wid=859 normal=(0.78527 -0.252403 0.56537)} Corner 457 877 {wid=1243 normal=(0.388951 -0.52054 0.760102)} Corner 185 877 {wid=425 normal=(0 -0.544973 0.838454)} Corner 309 878 {wid=1244 normal=(0.133989 -0.267693 0.954142)} Corner 11 878 {wid=50 normal=(-0.828352 -0.0345488 0.559142)} Corner 457 878 {wid=858 normal=(-0.794626 -0.589094 -0.14676)} Corner 192 881 {wid=1248 normal=(-0.028191 0.116077 -0.99284)} Corner 459 881 {wid=1247 normal=(0.225738 -0.320443 -0.919977)} Corner 310 881 {wid=1249 normal=(0.225738 -0.320443 -0.919977)} Corner 192 882 {wid=3 normal=(0.159692 -0.670057 -0.724929)} Corner 478 882 {wid=38 normal=(-0.520127 -0.61836 0.589152)} Corner 459 882 {wid=1246 normal=(-0.437007 -0.898389 -0.0438495)} Corner 459 883 {wid=1251 normal=(0.0889453 0.0858136 0.992333)} Corner 460 883 {wid=917 normal=(-0.12264 0.298573 0.946474)} Corner 310 883 {wid=915 normal=(-0.0477115 0.127817 0.990649)} Corner 459 884 {wid=1246 normal=(-0.437007 -0.898389 -0.0438495)} Corner 234 884 {wid=36 normal=(-0.401139 -0.87131 -0.282678)} Corner 460 884 {wid=1250 normal=(-0.443909 -0.539081 0.715776)} Corner 235 885 {wid=632 normal=(0.93671 0.042744 0.347486)} Corner 461 885 {wid=1252 normal=(0.926878 0.200156 0.317544)} Corner 305 885 {wid=849 normal=(0.926878 0.200156 0.317544)} Corner 235 886 {wid=631 normal=(0.879032 0.0281601 0.475931)} Corner 72 886 {wid=181 normal=(0.973367 0.0443024 -0.22493)} Corner 461 886 {wid=1253 normal=(0.792612 -0.00310954 0.609719)} Corner 99 887 {wid=864 normal=(0.483785 0.84392 0.231844)} Corner 462 887 {wid=1254 normal=(0.633137 0.773251 0.0349348)} Corner 192 887 {wid=862 normal=(0.61907 0.726321 -0.298682)} Corner 99 888 {wid=864 normal=(0.483785 0.84392 0.231844)} Corner 191 888 {wid=1255 normal=(0.562627 0.806963 0.179616)} Corner 462 888 {wid=1254 normal=(0.633137 0.773251 0.0349348)} Corner 183 889 {wid=483 normal=(0.903737 -0.139763 0.404631)} Corner 463 889 {wid=1256 normal=(0.406227 0.128465 0.904697)} Corner 328 889 {wid=56 normal=(0.0988593 0.0704348 0.992606)} Corner 183 890 {wid=484 normal=(0.685062 0.46838 -0.557951)} Corner 255 890 {wid=486 normal=(0.663897 0.64944 -0.370767)} Corner 463 890 {wid=1257 normal=(0.110271 0.958584 0.262595)} Corner 173 891 {wid=927 normal=(0.231854 -0.957202 0.173227)} Corner 464 891 {wid=1258 normal=(0.506783 -0.837552 0.204152)} Corner 333 891 {wid=924 normal=(-0.0468879 -0.993825 0.100561)} Corner 173 892 {wid=1260 normal=(0.0136195 -0.983052 0.182819)} Corner 199 892 {wid=1261 normal=(0.233455 -0.972363 0.00286952)} Corner 464 892 {wid=1259 normal=(-0.185254 -0.818211 0.544253)} Corner 465 893 {wid=1262 normal=(0.636156 -0.404153 0.65724)} Corner 95 893 {wid=252 normal=(0.686827 0.296644 -0.663529)} Corner 390 894 {wid=1077 normal=(-0.640406 -0.40235 0.654213)} Corner 465 894 {wid=1262 normal=(0.636156 -0.404153 0.65724)} Corner 142 895 {wid=385 normal=(-0.757132 0.280681 0.589889)} Corner 466 895 {wid=1263 normal=(-0.646524 0.194492 0.737686)} Corner 64 895 {wid=342 normal=(-0.574638 0.117965 -0.809862)} Corner 142 896 {wid=1265 normal=(0.145493 0.332305 0.931883)} Corner 214 896 {wid=1266 normal=(0.145493 0.332305 0.931883)} Corner 466 896 {wid=1264 normal=(0.145493 0.332305 0.931883)} Corner 214 897 {wid=1268 normal=(-0.859078 -0.0523962 0.509154)} Corner 467 897 {wid=386 normal=(-0.248883 0.548747 0.798081)} Corner 466 897 {wid=1263 normal=(-0.646524 0.194492 0.737686)} Corner 214 898 {wid=647 normal=(0.0875935 0.128379 0.987849)} Corner 359 898 {wid=649 normal=(0.204073 0.368481 0.90696)} Corner 467 898 {wid=1267 normal=(0.0952917 0.0707151 0.992934)} Corner 61 899 {wid=196 normal=(-0.876826 -0.0381892 0.479289)} Corner 468 899 {wid=1270 normal=(-0.792612 -0.00310947 0.609719)} Corner 75 899 {wid=193 normal=(-0.973367 0.044302 -0.22493)} Corner 61 900 {wid=151 normal=(-0.93671 0.042744 0.347486)} Corner 120 900 {wid=325 normal=(-0.729423 0.184251 -0.658782)} Corner 468 900 {wid=1269 normal=(-0.710195 -0.657447 0.251767)} Corner 22 901 {wid=201 normal=(0.633129 0.771813 0.0587491)} Corner 285 902 {wid=794 normal=(-0.12469 0.675132 0.727083)} Corner 22 903 {wid=53 normal=(0.633129 0.771813 0.0587491)} Corner 218 903 {wid=579 normal=(-0.0709034 0.671173 -0.737902)} Corner 22 904 {wid=53 normal=(0.633129 0.771813 0.0587491)} Corner 513 904 {wid=427 normal=(0.765972 -0.625534 0.148303)} Corner 288 907 {wid=10 normal=(-0.69883 -0.707966 -0.102083)} Corner 288 908 {wid=10 normal=(-0.69883 -0.707966 -0.102083)} Corner 94 909 {wid=249 normal=(0.522959 -0.815795 -0.246966)} Corner 324 909 {wid=899 normal=(0.985658 0.150248 -0.0768383)} Corner 94 910 {wid=249 normal=(0.522959 -0.815795 -0.246966)} Corner 93 910 {wid=246 normal=(-0.439854 -0.793636 -0.420323)} Corner 92 911 {wid=200 normal=(0.142648 -1.39781e-005 0.989775)} Corner 474 911 {wid=1276 normal=(0.687548 -1.02546e-005 0.726141)} Corner 173 911 {wid=451 normal=(0.687547 -1.02545e-005 0.72614)} Corner 92 912 {wid=133 normal=(0.137464 -1.39866e-005 0.990507)} Corner 40 912 {wid=450 normal=(0.137465 -1.39866e-005 0.990507)} Corner 474 912 {wid=1277 normal=(0.690295 -9.26699e-006 0.723528)} Corner 79 913 {wid=306 normal=(0.302597 -0.835833 -0.458058)} Corner 475 913 {wid=1278 normal=(0.39653 -0.865229 -0.306826)} Corner 394 913 {wid=304 normal=(0.483685 -0.874025 0.0461481)} Corner 79 914 {wid=412 normal=(0.585519 -0.805486 -0.0914339)} Corner 152 914 {wid=408 normal=(-0.228757 -0.450348 -0.863051)} Corner 475 914 {wid=1279 normal=(0.564232 -0.816065 -0.125222)} Corner 140 915 {wid=1281 normal=(0.0219785 -0.962802 -0.269314)} Corner 476 915 {wid=792 normal=(0.0219785 -0.962802 -0.269314)} Corner 284 915 {wid=703 normal=(0.00114083 -0.985566 -0.16929)} Corner 140 916 {wid=1282 normal=(-0.459494 -0.478404 -0.748328)} Corner 39 916 {wid=1283 normal=(-0.218376 -0.0499032 -0.974588)} Corner 476 916 {wid=1280 normal=(-0.398693 -0.206427 -0.89355)} Corner 260 917 {wid=716 normal=(0.00429493 -0.830333 0.557252)} Corner 142 919 {wid=764 normal=(-0.672534 -0.615184 0.411396)} Corner 478 919 {wid=1286 normal=(-0.617653 -0.780622 0.0955695)} Corner 191 919 {wid=762 normal=(-0.205656 -0.975747 0.074986)} Corner 142 920 {wid=385 normal=(-0.757132 0.280681 0.589889)} Corner 64 920 {wid=342 normal=(-0.574638 0.117965 -0.809862)} Corner 478 920 {wid=1285 normal=(-0.998142 0.0581908 0.0180403)} Corner 316 921 {wid=877 normal=(-0.347808 -0.759033 0.550364)} Corner 316 922 {wid=877 normal=(-0.347808 -0.759033 0.550364)} Corner 70 923 {wid=697 normal=(-0.315277 -0.54924 0.773909)} Corner 480 923 {wid=1288 normal=(-0.450216 -0.762915 0.463968)} Corner 252 923 {wid=695 normal=(-0.373527 -0.649391 0.662397)} Corner 70 924 {wid=72 normal=(-0.121938 -0.561137 0.818692)} Corner 184 924 {wid=237 normal=(-0.331964 -0.857713 0.392592)} Corner 480 924 {wid=1289 normal=(-0.0640179 -0.877756 0.474812)} Corner 75 925 {wid=1291 normal=(0.37563 -0.108027 0.920452)} Corner 481 925 {wid=1290 normal=(0.920899 -0.0652175 0.384308)} Corner 302 925 {wid=1292 normal=(0.422486 -0.192434 0.885706)} Corner 75 926 {wid=1291 normal=(0.37563 -0.108027 0.920452)} Corner 338 926 {wid=1293 normal=(0.280064 -0.10998 0.953661)} Corner 481 926 {wid=1290 normal=(0.920899 -0.0652175 0.384308)} Corner 140 927 {wid=1296 normal=(0.99813 0.0208377 0.0574692)} Corner 482 927 {wid=1294 normal=(0.996035 -0.0888412 0.0045807)} Corner 39 927 {wid=1297 normal=(0.977059 -0.207437 -0.0482349)} Corner 140 928 {wid=789 normal=(0.115738 -0.983081 -0.141976)} Corner 447 928 {wid=787 normal=(-0.115738 -0.983081 -0.141976)} Corner 482 928 {wid=1295 normal=(0.115738 -0.983081 -0.141976)} Corner 286 929 {wid=795 normal=(0.538335 -0.409545 -0.736524)} Corner 1 931 {wid=1300 normal=(-0.0479454 0.998834 -0.00562707)} Corner 484 931 {wid=1299 normal=(-0.040367 0.998737 -0.02992)} Corner 428 931 {wid=1301 normal=(0.0392202 0.99413 -0.100834)} Corner 1 932 {wid=1300 normal=(-0.0479454 0.998834 -0.00562707)} Corner 2 932 {wid=1302 normal=(-0.0432227 0.986315 0.159107)} Corner 484 932 {wid=1299 normal=(-0.040367 0.998737 -0.02992)} Corner 10 933 {wid=49 normal=(-0.683589 0.238787 0.6897)} Corner 485 933 {wid=1303 normal=(-0.534979 0.834261 0.133437)} Corner 288 933 {wid=799 normal=(-0.69883 -0.707966 -0.102083)} Corner 10 934 {wid=48 normal=(-0.683589 0.238787 0.6897)} Corner 485 934 {wid=1304 normal=(-0.534979 0.834261 0.133437)} Corner 156 935 {wid=422 normal=(-0.513976 -0.0141403 -0.857688)} Corner 486 935 {wid=1305 normal=(-0.419169 0.132876 -0.898132)} Corner 156 936 {wid=1307 normal=(-0.513976 -0.0141403 -0.857688)} Corner 307 936 {wid=1308 normal=(0.262798 -0.0164802 -0.96471)} Corner 486 936 {wid=1306 normal=(-0.419169 0.132876 -0.898132)} Corner 232 937 {wid=1310 normal=(-5.6198e-006 0.419246 0.907873)} Corner 487 937 {wid=1309 normal=(-5.6198e-006 0.419246 0.907873)} Corner 144 937 {wid=1312 normal=(5.6198e-006 0.419246 0.907873)} Corner 232 938 {wid=1311 normal=(1 1.49578e-005 0.000330856)} Corner 233 938 {wid=625 normal=(1 1.82504e-006 0.000121235)} Corner 487 938 {wid=627 normal=(1 1.49578e-005 0.000330856)} Corner 230 941 {wid=615 normal=(-0.0296346 0.0852488 0.995919)} Corner 489 941 {wid=1314 normal=(-0.892668 -0.251227 -0.374204)} Corner 31 941 {wid=67 normal=(-0.695748 -8.50387e-005 0.718286)} Corner 230 942 {wid=616 normal=(-0.134954 0.152573 0.979035)} Corner 489 942 {wid=1315 normal=(-0.900996 -0.0910117 -0.424173)} Corner 111 945 {wid=301 normal=(0.439072 -0.16797 0.882611)} Corner 491 945 {wid=1317 normal=(-0.34401 -0.102476 0.933358)} Corner 153 945 {wid=414 normal=(0.139682 -0.145153 0.979499)} Corner 111 946 {wid=159 normal=(0.420084 -0.164547 0.892442)} Corner 184 946 {wid=487 normal=(-0.804192 -0.0531573 0.591987)} Corner 491 946 {wid=1318 normal=(-0.381745 -0.0985827 0.918994)} Corner 153 949 {wid=300 normal=(0.162149 -0.146138 0.975885)} Corner 493 949 {wid=1320 normal=(-0.833485 -0.0539916 0.549898)} Corner 50 949 {wid=117 normal=(-0.638923 -0.0807716 0.765018)} Corner 153 950 {wid=414 normal=(0.139682 -0.145153 0.979499)} Corner 491 950 {wid=1317 normal=(-0.34401 -0.102476 0.933358)} Corner 493 950 {wid=1321 normal=(-0.825323 -0.052926 0.562174)} Corner 494 951 {wid=1322 normal=(-0.122348 0.0806769 0.989203)} Corner 175 951 {wid=457 normal=(0.0769674 -0.843962 0.530852)} Corner 494 952 {wid=1322 normal=(-0.122348 0.0806769 0.989203)} Corner 30 953 {wid=30 normal=(-0.438481 -0.0943603 -0.893773)} Corner 439 953 {wid=1198 normal=(0.855113 0.123779 -0.503448)} Corner 30 954 {wid=30 normal=(-0.438481 -0.0943603 -0.893773)} Corner 245 955 {wid=1325 normal=(-0.400346 -0.909307 -0.113507)} Corner 496 955 {wid=673 normal=(-0.722548 -0.689809 0.0456897)} Corner 348 955 {wid=675 normal=(-0.506678 -0.84641 0.163914)} Corner 245 956 {wid=674 normal=(0.12264 0.298573 0.946474)} Corner 246 956 {wid=672 normal=(0.183393 0.167208 0.968715)} Corner 496 956 {wid=1324 normal=(0.191925 0.150621 0.969782)} Corner 246 957 {wid=672 normal=(0.183393 0.167208 0.968715)} Corner 497 957 {wid=1326 normal=(0.531554 0.41718 0.737165)} Corner 496 957 {wid=1324 normal=(0.191925 0.150621 0.969782)} Corner 246 958 {wid=1328 normal=(-0.642566 0.724698 -0.24884)} Corner 449 958 {wid=1329 normal=(-0.684322 0.723088 -0.0940578)} Corner 497 958 {wid=1327 normal=(-0.708489 0.702892 0.0631422)} Corner 164 959 {wid=439 normal=(0.623812 -0.0797057 0.7775)} Corner 498 959 {wid=1330 normal=(0.9456 -0.0937641 -0.311527)} Corner 82 959 {wid=438 normal=(0.806427 -0.0546584 0.588802)} Corner 164 960 {wid=162 normal=(0.614169 -0.0831513 0.784781)} Corner 324 960 {wid=898 normal=(0.987937 -0.0634772 -0.141247)} Corner 498 960 {wid=1331 normal=(0.990214 -0.0617275 -0.125162)} Corner 258 961 {wid=711 normal=(0.311888 -0.943783 0.109541)} Corner 372 962 {wid=715 normal=(0.411303 0.189226 0.891641)} Corner 11 963 {wid=50 normal=(-0.828352 -0.0345488 0.559142)} Corner 457 963 {wid=858 normal=(-0.794626 -0.589094 -0.14676)} Corner 11 964 {wid=50 normal=(-0.828352 -0.0345488 0.559142)} Corner 502 965 {wid=1335 normal=(0.818872 0.539945 0.194697)} Corner 501 965 {wid=223 normal=(0.628226 0.6916 0.356401)} Corner 84 965 {wid=195 normal=(0.504899 0.759721 0.409758)} Corner 261 966 {wid=717 normal=(0.876333 0.118797 -0.466828)} Corner 328 966 {wid=718 normal=(0.0395833 0.744261 0.666715)} Corner 501 966 {wid=1334 normal=(0.537346 0.705587 0.46196)} Corner 261 967 {wid=1337 normal=(0.976187 0.0424635 -0.212736)} Corner 502 967 {wid=222 normal=(0.98103 0.0389605 -0.189902)} Corner 119 967 {wid=24 normal=(0.908819 -0.00467443 -0.417165)} Corner 261 968 {wid=1338 normal=(-0.372186 0.735049 -0.566728)} Corner 501 968 {wid=1339 normal=(-0.40927 0.763939 -0.498894)} Corner 502 968 {wid=1336 normal=(-0.426128 0.781047 -0.456487)} Corner 2 969 {wid=1342 normal=(-0.0432227 0.986315 0.159107)} Corner 503 969 {wid=1341 normal=(0.097471 0.988889 0.112245)} Corner 253 969 {wid=1343 normal=(0.242048 0.970157 0.0143965)} Corner 2 970 {wid=39 normal=(-0.648158 0.0211275 0.761213)} Corner 336 970 {wid=936 normal=(-0.863052 -0.0451684 0.503092)} Corner 503 970 {wid=1340 normal=(0.0296358 0.0852481 0.99592)} Corner 260 971 {wid=716 normal=(0.00429493 -0.830333 0.557252)} Corner 429 971 {wid=1174 normal=(0.617079 -0.547384 0.565319)} Corner 260 972 {wid=716 normal=(0.00429493 -0.830333 0.557252)} Corner 90 973 {wid=109 normal=(0.52363 -0.834479 0.171631)} Corner 505 973 {wid=1345 normal=(0.758099 -0.608837 0.233671)} Corner 90 974 {wid=1346 normal=(0.672636 -0.739922 0.00880541)} Corner 326 974 {wid=906 normal=(0.746449 -0.485579 0.455003)} Corner 505 974 {wid=908 normal=(0.608669 -0.658414 -0.442734)} Corner 360 975 {wid=1010 normal=(0.960975 0.122342 -0.248112)} Corner 231 975 {wid=1008 normal=(0.710938 0.608896 -0.35187)} Corner 360 976 {wid=1010 normal=(0.960975 0.122342 -0.248112)} Corner 240 976 {wid=561 normal=(-0.886219 -0.463015 -0.0152685)} Corner 509 977 {wid=1350 normal=(0.923793 0.119347 0.363817)} Corner 507 977 {wid=1348 normal=(0.431871 0.614814 0.659917)} Corner 224 977 {wid=1352 normal=(0.341534 0.0374198 0.939124)} Corner 510 978 {wid=1351 normal=(-0.356774 0.93393 0.0220667)} Corner 242 978 {wid=1353 normal=(-0.758185 0.649619 0.0561323)} Corner 507 978 {wid=1349 normal=(0.419061 0.897434 0.137839)} Corner 508 979 {wid=1354 normal=(-0.351874 -0.508599 -0.785819)} Corner 115 979 {wid=314 normal=(0.829604 -0.447757 -0.333573)} Corner 264 980 {wid=726 normal=(-0.190205 0.546764 -0.815397)} Corner 508 980 {wid=1354 normal=(-0.351874 -0.508599 -0.785819)} Corner 244 981 {wid=1357 normal=(0.321735 -0.849626 -0.417878)} Corner 509 981 {wid=1355 normal=(0.870238 -0.492525 0.010214)} Corner 224 981 {wid=1359 normal=(0.506028 -0.85119 0.139328)} Corner 510 982 {wid=1358 normal=(0.380431 0.316408 -0.868998)} Corner 507 982 {wid=1360 normal=(0.727412 0.558316 -0.398941)} Corner 509 982 {wid=1356 normal=(0.919897 0.0987296 -0.379528)} Corner 244 983 {wid=1362 normal=(0.168281 0.0162169 -0.985606)} Corner 510 983 {wid=1358 normal=(0.380431 0.316408 -0.868998)} Corner 509 983 {wid=1356 normal=(0.919897 0.0987296 -0.379528)} Corner 244 984 {wid=1363 normal=(-0.365922 0.459896 -0.809072)} Corner 242 984 {wid=1364 normal=(-0.365922 0.459896 -0.809072)} Corner 510 984 {wid=1361 normal=(-0.162392 0.450416 -0.877926)} Corner 224 985 {wid=1367 normal=(-0.633137 0.773251 0.0349348)} Corner 511 985 {wid=1365 normal=(-0.562627 0.806963 0.179616)} Corner 58 985 {wid=1368 normal=(-0.872592 0.360974 -0.329061)} Corner 224 986 {wid=653 normal=(0.183264 0.245187 0.951997)} Corner 125 986 {wid=655 normal=(-0.016731 0.394151 0.918893)} Corner 511 986 {wid=1366 normal=(-0.016731 0.394151 0.918893)} Corner 250 988 {wid=692 normal=(0.244695 -0.097176 -0.964718)} Corner 513 989 {wid=1370 normal=(0.765972 -0.625534 0.148303)} Corner 286 989 {wid=795 normal=(0.538335 -0.409545 -0.736524)} Corner 137 990 {wid=372 normal=(0.537093 -0.226403 0.812572)} Corner 513 990 {wid=1370 normal=(0.765972 -0.625534 0.148303)} # (_write_mesh: 0.15) # (FilterPM: 0.17) ================================================ FILE: models/gameguy_color.m ================================================ Vertex 1 -14.2166 -3.8585 -2.81153 Vertex 2 -14.2093 -3.88703 -3.73767 Vertex 3 -13.9084 -3.91663 -4.65365 Vertex 4 -13.8998 -3.85809 -3.18274 Vertex 5 -13.8939 -3.86429 -3.88233 Vertex 6 -13.8829 -3.91081 -1.81014 Vertex 7 -13.778 -3.86076 -2.16002 Vertex 8 -13.574 -3.92145 -4.38341 Vertex 9 -13.5736 -2.10811 -3.96817 Vertex 10 -13.5719 -3.94771 -5.17191 Vertex 11 -13.3528 -11.4309 -2.78944 Vertex 12 -13.3284 -2.1332 -3.24909 Vertex 13 -13.2755 -3.92045 -4.90121 Vertex 14 -13.2647 -2.13805 -2.53271 Vertex 15 -13.2365 -11.1051 -1.65732 Vertex 16 -13.2273 -3.91312 -1.28873 Vertex 17 -13.2132 -3.96835 -1.02144 Vertex 18 -13.1866 -12.2705 -2.19852 Vertex 19 -13.1823 -15.4512 -0.749206 Vertex 20 -13.1636 -14.9335 -0.873964 Vertex 21 -13.1601 -11.3579 -2.28557 Vertex 22 -13.1247 -0.384085 -3.65645 Vertex 23 -13.1091 -14.0454 -1.09586 Vertex 24 -13.0964 -11.6413 -3.40508 Vertex 25 -13.0885 -12.4209 -2.7996 Vertex 26 -13.0882 1.50948 -3.18203 Vertex 27 -13.0808 -2.15287 -5.042 Vertex 28 -13.0708 0.653736 -3.52864 Vertex 29 -13.0692 -12.1111 -1.60546 Vertex 30 -13.0607 -15.4069 -0.42389 Vertex 31 -13.0574 -0.446797 -3.10432 Vertex 32 -13.0529 -11.5229 -2.84846 Vertex 33 -13.0434 2.38388 -3.19151 Vertex 34 -13.0428 -15.5527 -1.06836 Vertex 35 -13.0341 -11.1979 -1.72699 Vertex 36 -13.0305 -14.9534 -0.544583 Vertex 37 -13.0209 -2.1583 -1.83543 Vertex 38 -13.0205 -13.9035 -0.549554 Vertex 39 -13.0201 -2.18379 -4.40473 Vertex 40 -13.0145 -15.0787 -1.15939 Vertex 41 -13.0045 -12.4813 -3.31957 Vertex 42 -12.9762 -15.0122 0.408439 Vertex 43 -12.9736 -15.3536 -0.105384 Vertex 44 -12.9673 0.674524 -3.07725 Vertex 45 -12.9654 -14.464 0.248668 Vertex 46 -12.9612 1.48173 -3.83178 Vertex 47 -12.9552 -14.1652 -1.71735 Vertex 48 -12.9539 -14.8624 -0.299966 Vertex 49 -12.9518 1.49059 -3.34286 Vertex 50 -12.9517 -11.6649 -3.32659 Vertex 51 -12.9428 -15.6583 -2.00614 Vertex 52 -12.9371 -15.0637 -2.12628 Vertex 53 -12.9266 2.4349 -3.41759 Vertex 54 -12.9147 -11.9981 -1.21193 Vertex 55 -12.8946 -14.234 -2.34105 Vertex 56 -12.8794 -11.7767 -3.84397 Vertex 57 -12.8793 0.641095 -3.82312 Vertex 58 -12.8792 -11.0924 -1.35474 Vertex 59 -12.8694 -14.0649 -2.86136 Vertex 60 -12.8619 2.37791 -4.01278 Vertex 61 -12.8502 -14.8982 0.710457 Vertex 62 -12.848 -13.6203 0.034911 Vertex 63 -12.8456 -15.1558 0.143662 Vertex 64 -12.8339 -15.6389 -2.30819 Vertex 65 -12.8322 -10.8359 -0.694152 Vertex 66 -12.8208 -14.6864 0.001691 Vertex 67 -12.8155 -15.1038 -2.37665 Vertex 68 -12.8096 -15.6314 -1.69251 Vertex 69 -12.7903 -15.1108 -1.78169 Vertex 70 -12.7843 -15.6495 -1.3861 Vertex 71 -12.7758 -12.5228 -3.68024 Vertex 72 -12.7722 -15.0902 -1.47382 Vertex 73 -12.7665 1.4201 -2.55286 Vertex 74 -12.7598 -0.360883 -4.5732 Vertex 75 -12.743 3.41511 -2.91249 Vertex 76 -12.7383 3.40037 -3.41662 Vertex 77 -12.7351 -11.7667 -3.66032 Vertex 78 -12.732 -15.2943 -2.73725 Vertex 79 -12.728 -15.8175 -0.648377 Vertex 80 -12.7269 3.4279 -3.60051 Vertex 81 -12.7222 -15.7062 -0.337668 Vertex 82 -12.7204 -14.1419 0.552464 Vertex 83 -12.7175 -3.98985 -5.39489 Vertex 84 -12.7032 -14.0047 -3.47366 Vertex 85 -12.693 -4.02814 -5.90212 Vertex 86 -12.6896 -15.8729 -0.95515 Vertex 87 -12.6833 -0.435565 -4.03055 Vertex 88 -12.6686 3.39306 -4.04017 Vertex 89 -12.6531 0.637841 -2.41103 Vertex 90 -12.6528 -11.8301 -0.768943 Vertex 91 -12.631 0.596058 -4.38827 Vertex 92 -12.6238 -10.9717 -0.925443 Vertex 93 -12.6103 3.35823 -4.47984 Vertex 94 -12.6092 -11.8677 -4.13247 Vertex 95 -12.5946 -14.797 1.02564 Vertex 96 -12.5914 -15.6773 -3.36636 Vertex 97 -12.5877 1.31546 -4.21875 Vertex 98 -12.574 8.30105 -2.36556 Vertex 99 -12.5724 4.9783 -4.37186 Vertex 100 -12.5716 -15.7805 -3.04087 Vertex 101 -12.5491 8.81888 -2.66419 Vertex 102 -12.5459 8.52124 -2.56425 Vertex 103 -12.5336 -15.0717 -3.41853 Vertex 104 -12.5281 -15.2503 0.848337 Vertex 105 -12.5121 -13.8528 -3.65664 Vertex 106 -12.511 8.68854 -1.86261 Vertex 107 -12.5104 -15.2222 -3.06807 Vertex 108 -12.5034 8.27288 -2.05473 Vertex 109 -12.5021 -15.376 0.565035 Vertex 110 -12.4873 -0.552108 -2.16414 Vertex 111 -12.4862 -15.7972 -2.75547 Vertex 112 -12.4817 -10.7163 -0.250181 Vertex 113 -12.4715 9.46644 -2.32582 Vertex 114 -12.4552 1.13583 -2.03142 Vertex 115 -12.4545 -15.9789 -1.82921 Vertex 116 -12.4533 -15.8923 -1.53692 Vertex 117 -12.4457 9.25042 -1.68808 Vertex 118 -12.4446 -12.305 0.017973 Vertex 119 -12.4407 2.34491 -4.33406 Vertex 120 -12.4386 -14.0457 0.833116 Vertex 121 -12.4359 -12.5867 -4.00745 Vertex 122 -12.435 -15.4485 0.270509 Vertex 123 -12.4212 -11.8389 -3.89164 Vertex 124 -12.4111 -16.0125 -2.13623 Vertex 125 -12.4087 9.56463 -2.91148 Vertex 126 -12.3658 2.19166 -2.47457 Vertex 127 -12.356 5.14346 -3.60313 Vertex 128 -12.3508 3.658 -1.41856 Vertex 129 -12.3479 5.15924 -3.41971 Vertex 130 -12.3431 5.24845 -2.7205 Vertex 131 -12.3421 -15.6477 -3.59771 Vertex 132 -12.3411 7.22459 -2.39375 Vertex 133 -12.3389 0.601157 -1.74481 Vertex 134 -12.3385 2.36776 -1.45757 Vertex 135 -12.3344 10.1008 -2.14571 Vertex 136 -12.3315 4.73032 -5.05921 Vertex 137 -12.3267 -15.6914 0.039615 Vertex 138 -12.3198 -15.9654 -1.21536 Vertex 139 -12.3121 10.0612 -2.96147 Vertex 140 -12.3116 3.42665 -2.64554 Vertex 141 -12.3093 -2.22293 -5.61416 Vertex 142 -12.309 -12.9969 0.425631 Vertex 143 -12.2969 9.97666 -1.40516 Vertex 144 -12.2954 7.50564 -2.93177 Vertex 145 -12.2898 -15.0625 -3.6052 Vertex 146 -12.2888 2.29246 -2.27515 Vertex 147 -12.2859 7.15385 -1.93038 Vertex 148 -12.2517 -16.0741 -2.88932 Vertex 149 -12.2341 3.46057 -2.41887 Vertex 150 -12.2239 -13.964 -4.07233 Vertex 151 -12.2233 7.90069 -3.3034 Vertex 152 -12.2232 -15.0992 1.11797 Vertex 153 -12.2169 -11.9245 -4.30735 Vertex 154 -12.2144 -2.23155 -1.06716 Vertex 155 -12.2016 -16.0535 -3.25553 Vertex 156 -12.1824 -13.8478 0.709292 Vertex 157 -12.1767 6.47339 -2.5183 Vertex 158 -12.173 6.75602 -2.46361 Vertex 159 -12.1561 1.04236 -1.77804 Vertex 160 -12.145 -10.7893 -0.283205 Vertex 161 -12.136 -0.406476 -5.22722 Vertex 162 -12.1333 -4.02416 -0.835584 Vertex 163 -12.1252 -11.0006 -0.057117 Vertex 164 -12.109 2.46215 -0.613683 Vertex 165 -12.1068 7.62323 -1.35667 Vertex 166 -12.0986 11.0863 -1.9961 Vertex 167 -12.0792 -10.6409 0.044497 Vertex 168 -12.0786 -16.2229 -0.559301 Vertex 169 -12.0674 8.85264 -3.90827 Vertex 170 -12.0635 -4.06951 -0.517512 Vertex 171 -12.0562 0.430306 -5.04898 Vertex 172 -12.0522 -16.0288 -2.51998 Vertex 173 -12.0449 10.6861 -1.0921 Vertex 174 -12.0439 -16.1654 -0.305275 Vertex 175 -12.0428 5.18181 -2.54117 Vertex 176 -12.0298 6.6407 -1.97261 Vertex 177 -12.0157 -0.540127 -1.58394 Vertex 178 -12.0125 6.05295 -4.52471 Vertex 179 -12.0053 8.53473 -0.901799 Vertex 180 -11.9965 0.971716 -1.33469 Vertex 181 -11.9953 -16.291 -0.805464 Vertex 182 -11.9905 -16.0764 -3.4622 Vertex 183 -11.9769 5.16 -2.30496 Vertex 184 -11.976 5.87936 -5.00302 Vertex 185 -11.9646 3.70072 -0.412197 Vertex 186 -11.9635 -16.2711 -1.70445 Vertex 187 -11.9567 9.13365 -0.662654 Vertex 188 -11.9467 -11.8588 -3.94525 Vertex 189 -11.9451 5.14042 -1.31956 Vertex 190 -11.9415 -12.5996 -4.08569 Vertex 191 -11.9116 -15.7159 0.699502 Vertex 192 -11.9053 -16.2528 -1.44791 Vertex 193 -11.9028 -16.3015 -1.95603 Vertex 194 -11.8969 6.26146 -3.57864 Vertex 195 -11.8919 -11.2679 0.185742 Vertex 196 -11.8909 6.24238 -3.74949 Vertex 197 -11.8894 1.15972 -4.94565 Vertex 198 -11.8848 -15.6597 0.943686 Vertex 199 -11.8829 -15.0816 -3.78264 Vertex 200 -11.8707 -15.562 -3.72178 Vertex 201 -11.8616 6.92034 -3.1044 Vertex 202 -11.8588 11.3491 -2.94042 Vertex 203 -11.8518 7.09864 -1.27433 Vertex 204 -11.8439 -16.3714 -2.67096 Vertex 205 -11.8152 9.97106 -4.12256 Vertex 206 -11.8123 3.39867 -5.12748 Vertex 207 -11.8069 -15.7694 0.450244 Vertex 208 -11.8023 -16.3919 -2.95023 Vertex 209 -11.7965 -15.974 -0.047374 Vertex 210 -11.7839 -14.8969 -1.00311 Vertex 211 -11.7785 4.53781 -5.59161 Vertex 212 -11.7553 -15.335 -0.623129 Vertex 213 -11.751 -4.05887 -5.78443 Vertex 214 -11.7428 1.36648 -0.736056 Vertex 215 -11.7391 2.52511 -4.92307 Vertex 216 -11.7198 -14.2587 -1.35265 Vertex 217 -11.6926 -16.2389 -1.09365 Vertex 218 -11.6845 6.24356 -2.07001 Vertex 219 -11.6766 -16.1171 -2.33609 Vertex 220 -11.6763 9.97247 -0.338218 Vertex 221 -11.6674 -14.9406 -2.24356 Vertex 222 -11.6642 -2.2815 -6.03182 Vertex 223 -11.6509 -11.9104 -4.22488 Vertex 224 -11.6503 -14.7353 -1.54377 Vertex 225 -11.6363 -15.3961 1.10208 Vertex 226 -11.6338 -15.1566 -2.25184 Vertex 227 -11.6231 -14.7672 -2.15108 Vertex 228 -11.6227 -14.9452 -2.38692 Vertex 229 -11.6205 -15.9941 -3.47278 Vertex 230 -11.6146 -16.3906 -3.14493 Vertex 231 -11.6131 -10.6159 0.158918 Vertex 232 -11.6121 -14.1644 0.578828 Vertex 233 -11.6052 6.11762 -1.23264 Vertex 234 -11.6002 -14.8653 -2.2431 Vertex 235 -11.5966 -4.12637 -6.20579 Vertex 236 -11.5957 -14.9972 -2.07351 Vertex 237 -11.594 -14.993 -2.41156 Vertex 238 -11.5932 6.20771 -1.89763 Vertex 239 -11.5855 -15.2001 -2.12791 Vertex 240 -11.5819 -15.4065 -0.351269 Vertex 241 -11.5799 -15.1968 -2.37561 Vertex 242 -11.5795 -16.0353 -1.18026 Vertex 243 -11.5792 -16.1325 -2.24427 Vertex 244 -11.5678 0.328381 -5.44424 Vertex 245 -11.5675 4.97147 -0.359619 Vertex 246 -11.5491 -13.7826 -1.61184 Vertex 247 -11.5463 -13.6625 0.543902 Vertex 248 -11.5453 -15.5176 -1.37737 Vertex 249 -11.5452 -14.2384 -1.86785 Vertex 250 -11.5379 -14.7618 0.85201 Vertex 251 -11.5342 -14.9009 -2.42464 Vertex 252 -11.5337 -14.9112 -2.05298 Vertex 253 -11.5315 -14.7997 -2.24012 Vertex 254 -11.5178 -14.8373 -2.0536 Vertex 255 -11.5171 6.43823 -4.8814 Vertex 256 -11.5138 -14.829 -2.42467 Vertex 257 -11.5095 -15.2379 -2.06001 Vertex 258 -11.5092 -15.5923 -1.95637 Vertex 259 -11.5063 -15.2357 -2.4386 Vertex 260 -11.5005 -14.1902 -2.49444 Vertex 261 -11.4971 5.6358 -5.49496 Vertex 262 -11.497 -15.0316 -2.51499 Vertex 263 -11.4969 -15.0457 -1.97368 Vertex 264 -11.4853 1.17198 -5.19011 Vertex 265 -11.4794 7.85952 -0.759694 Vertex 266 -11.4649 6.71814 -1.14636 Vertex 267 -11.4642 7.32507 -3.69177 Vertex 268 -11.4556 -14.2987 -0.62301 Vertex 269 -11.44 6.54124 -1.12531 Vertex 270 -11.4339 7.00977 -3.97974 Vertex 271 -11.429 7.14219 -3.84169 Vertex 272 -11.4286 -14.5305 -0.43956 Vertex 273 -11.4259 -12.8786 0.852354 Vertex 274 -11.4175 -15.6445 -2.21244 Vertex 275 -11.4129 0.104779 -1.15676 Vertex 276 -11.3967 -15.6828 0.069326 Vertex 277 -11.3953 -15.0347 -2.9148 Vertex 278 -11.3899 -15.6268 -1.23258 Vertex 279 -11.3874 -15.6146 -1.94062 Vertex 280 -11.3657 -14.8991 0.445296 Vertex 281 -11.3629 -12.9147 -2.2641 Vertex 282 -11.3623 -14.9145 -2.55677 Vertex 283 -11.3615 -15.413 -2.47544 Vertex 284 -11.3555 0.396001 -5.58136 Vertex 285 -11.3534 -14.8825 -2.50652 Vertex 286 -11.3532 -14.8954 -1.97322 Vertex 287 -11.345 -14.9334 -1.92578 Vertex 288 -11.3441 -14.9346 -3.43658 Vertex 289 -11.3437 -11.8273 -3.81615 Vertex 290 -11.3437 -14.9225 -0.467114 Vertex 291 -11.3385 -14.9955 0.883968 Vertex 292 -11.3345 12.042 -1.93847 Vertex 293 -11.3324 8.64157 -0.444411 Vertex 294 -11.3252 -15.3504 -0.077584 Vertex 295 -11.3244 11.6914 -0.936978 Vertex 296 -11.3231 -15.6883 -2.31779 Vertex 297 -11.3229 -16.1298 -3.25517 Vertex 298 -11.3201 -13.6075 -0.037681 Vertex 299 -11.3195 -14.692 -0.473394 Vertex 300 -11.3165 -14.081 -3.89894 Vertex 301 -11.3132 -15.5891 -0.24729 Vertex 302 -11.3032 -14.9824 -0.336742 Vertex 303 -11.302 -13.7591 0.972896 Vertex 304 -11.3019 -14.99 -0.593574 Vertex 305 -11.2993 -13.1626 1.29423 Vertex 306 -11.294 -11.8727 -4.1656 Vertex 307 -11.2904 -15.1544 -0.173487 Vertex 308 -11.2867 -16.5628 -2.39795 Vertex 309 -11.2828 -15.349 -1.98084 Vertex 310 -11.2824 -15.3415 -2.52305 Vertex 311 -11.2749 -13.9913 0.167229 Vertex 312 -11.2661 -0.564555 -5.63842 Vertex 313 -11.2599 1.18203 -5.31531 Vertex 314 -11.2554 -14.7618 -0.29562 Vertex 315 -11.2536 -14.7722 -0.6464 Vertex 316 -11.2486 -15.03 -0.27166 Vertex 317 -11.2466 -15.0413 -0.655389 Vertex 318 -11.2452 5.79061 -0.426924 Vertex 319 -11.2424 -15.7842 -1.01411 Vertex 320 -11.2348 -15.0822 -2.62578 Vertex 321 -11.2324 -15.1001 -1.87066 Vertex 322 -11.2317 -16.2788 -2.11918 Vertex 323 -11.2264 -14.1507 -3.46387 Vertex 324 -11.2234 -15.3993 -3.30074 Vertex 325 -11.2208 -14.6527 -0.474016 Vertex 326 -11.2192 -14.1644 -2.85257 Vertex 327 -11.2182 -15.6405 -2.71987 Vertex 328 -11.2168 -15.596 -2.78502 Vertex 329 -11.2127 12.1837 -2.51991 Vertex 330 -11.2082 -16.5797 -2.66788 Vertex 331 -11.208 -15.538 -0.652813 Vertex 332 -11.2044 11.4128 -3.86788 Vertex 333 -11.1955 -13.2825 -1.11614 Vertex 334 -11.1942 -14.2264 0.051637 Vertex 335 -11.1854 -14.5798 -0.475874 Vertex 336 -11.1843 -15.7151 -3.18251 Vertex 337 -11.1807 -15.3073 0.866062 Vertex 338 -11.1789 -14.8236 -0.192706 Vertex 339 -11.1761 -14.8398 -0.745 Vertex 340 -11.1748 -15.7971 -2.20037 Vertex 341 -11.17 -14.7094 -0.280875 Vertex 342 -11.168 -14.7207 -0.663212 Vertex 343 -11.1586 -14.6281 -0.279951 Vertex 344 -11.158 -11.73 -3.47793 Vertex 345 -11.1566 -14.6396 -0.668533 Vertex 346 -11.1565 -15.0708 0.460273 Vertex 347 -11.1552 -12.5531 -2.33756 Vertex 348 -11.152 -15.261 -0.456826 Vertex 349 -11.1448 6.62236 -5.13339 Vertex 350 -11.1427 -13.8584 -0.467892 Vertex 351 -11.1306 -15.7872 -2.14632 Vertex 352 -11.1183 -12.5874 -3.86544 Vertex 353 -11.1167 -15.6203 -1.35304 Vertex 354 -11.1132 -15.6962 -2.13671 Vertex 355 -11.107 -15.5363 -2.63813 Vertex 356 -11.0867 -12.6562 0.903111 Vertex 357 -11.0824 -15.1123 -1.33438 Vertex 358 -11.0818 -14.8644 -1.35063 Vertex 359 -11.0813 -0.426052 -5.7302 Vertex 360 -11.0811 -11.8187 -3.95914 Vertex 361 -11.0768 3.52213 -5.5801 Vertex 362 -11.0737 -14.9358 -2.00814 Vertex 363 -11.0701 -14.9261 -2.47691 Vertex 364 -11.0634 -11.6735 -3.27665 Vertex 365 -11.0628 -16.6754 -1.59999 Vertex 366 -11.0626 -14.1711 1.09935 Vertex 367 -11.0584 -12.6486 -1.53876 Vertex 368 -11.057 -16.5528 -2.89091 Vertex 369 -11.0541 2.74427 -5.47023 Vertex 370 -11.054 4.38983 -5.81123 Vertex 371 -11.0536 -15.8961 -2.12827 Vertex 372 -11.0521 -15.1926 -1.46406 Vertex 373 -11.05 -15.2046 -0.17414 Vertex 374 -11.0471 -15.2213 -0.741196 Vertex 375 -11.0463 -15.5077 -1.76154 Vertex 376 -11.0438 2.44672 -0.137604 Vertex 377 -11.0417 -15.6353 -2.57005 Vertex 378 -11.0342 -14.9531 -1.52806 Vertex 379 -11.0333 -15.657 -3.03296 Vertex 380 -11.0285 -16.6503 -1.32995 Vertex 381 -11.0283 7.33807 -4.52109 Vertex 382 -11.0177 10.9967 -0.088386 Vertex 383 -11.0171 -15.17 -1.21031 Vertex 384 -11.0162 -11.3374 0.051851 Vertex 385 -11.015 -16.7028 -1.86513 Vertex 386 -11.0141 -14.8927 -2.24054 Vertex 387 -11.0111 -14.7373 -0.148298 Vertex 388 -11.0099 -15.7912 -2.09578 Vertex 389 -11.0097 8.43216 -4.33767 Vertex 390 -11.0094 -14.72 -0.199952 Vertex 391 -11.0079 -14.7563 -0.79252 Vertex 392 -11.0066 -14.7359 -0.741896 Vertex 393 -11.002 7.49626 -4.43586 Vertex 394 -11.0019 3.62603 0.05797 Vertex 395 -11.0012 -15.2484 -1.53167 Vertex 396 -10.9997 -15.6564 -2.50629 Vertex 397 -10.9983 -13.9289 -0.199665 Vertex 398 -10.9884 -15.7216 -2.52619 Vertex 399 -10.9882 -14.8158 -1.36632 Vertex 400 -10.9869 -15.427 -2.54073 Vertex 401 -10.9865 -14.9222 -1.18149 Vertex 402 -10.983 -15.538 0.097654 Vertex 403 -10.9819 -15.438 -1.96812 Vertex 404 -10.9799 -12.4648 -2.93526 Vertex 405 -10.9758 -11.5893 -2.975 Vertex 406 -10.9737 -14.9251 -2.52603 Vertex 407 -10.9726 -16.5373 0.688335 Vertex 408 -10.9712 -14.946 -1.95459 Vertex 409 -10.9702 -14.0223 0.047072 Vertex 410 -10.9657 -16.3151 -1.9689 Vertex 411 -10.9657 -15.0234 -1.63395 Vertex 412 -10.9613 -16.536 0.95254 Vertex 413 -10.9596 -14.7406 -1.37632 Vertex 414 -10.9573 -14.8917 -1.55793 Vertex 415 -10.9565 -15.6155 -2.37041 Vertex 416 -10.9539 -14.8092 -1.56813 Vertex 417 -10.9492 -15.3097 0.459072 Vertex 418 -10.949 -15.2146 -1.15255 Vertex 419 -10.9349 -15.8461 -0.527289 Vertex 420 -10.9324 -12.4849 -3.50545 Vertex 421 -10.9309 -10.8519 -0.438323 Vertex 422 -10.9303 -15.1218 -2.66084 Vertex 423 -10.9201 -15.1404 -1.84063 Vertex 424 -10.92 -14.9482 -0.066932 Vertex 425 -10.916 -14.9716 -0.861211 Vertex 426 -10.9148 1.60911 -0.336224 Vertex 427 -10.9125 -10.7331 -0.184582 Vertex 428 -10.9075 -15.6035 -2.39309 Vertex 429 -10.9053 -14.858 -1.18018 Vertex 430 -10.9022 -15.0368 0.246844 Vertex 431 -10.9013 -12.47 -3.27844 Vertex 432 -10.901 9.45982 -0.000788 Vertex 433 -10.901 -14.7751 -1.18422 Vertex 434 -10.897 -16.5672 0.427453 Vertex 435 -10.8951 -15.0804 0.388548 Vertex 436 -10.8905 -14.9748 -1.08829 Vertex 437 -10.8878 -15.6608 1.04154 Vertex 438 -10.8832 0.752879 -0.844994 Vertex 439 -10.8809 -15.5007 -2.05257 Vertex 440 -10.8806 -16.3333 1.20423 Vertex 441 -10.8805 -15.6845 -2.41068 Vertex 442 -10.8791 -4.13804 -0.986501 Vertex 443 -10.8728 -14.8769 -2.24192 Vertex 444 -10.8706 -15.7268 -1.67847 Vertex 445 -10.8702 -15.9098 -0.091778 Vertex 446 -10.8681 -15.135 0.138505 Vertex 447 -10.864 -15.1282 0.466755 Vertex 448 -10.8603 -11.0918 -0.213886 Vertex 449 -10.8545 6.71498 -0.409505 Vertex 450 -10.8532 -15.492 -1.34794 Vertex 451 -10.8501 6.5401 -0.418145 Vertex 452 -10.8481 -15.5361 0.615558 Vertex 453 -10.8456 -11.2438 -1.77865 Vertex 454 -10.8426 -16.3463 -1.08643 Vertex 455 -10.8394 -13.6742 1.35711 Vertex 456 -10.8379 -15.6465 -2.03831 Vertex 457 -10.8361 -12.9673 1.26495 Vertex 458 -10.8361 -12.1674 -1.66008 Vertex 459 -10.8357 -16.6305 -2.13986 Vertex 460 -10.8344 -11.4471 -2.47008 Vertex 461 -10.8332 -15.7729 -2.92082 Vertex 462 -10.8327 -15.8253 -1.24594 Vertex 463 -10.8293 -16.7344 -1.57647 Vertex 464 -10.8277 -2.35746 -1.27515 Vertex 465 -10.8236 -15.2098 0.093167 Vertex 466 -10.8187 -15.4068 0.331408 Vertex 467 -10.8179 -4.18087 -0.639688 Vertex 468 -10.817 -15.5095 -0.44835 Vertex 469 -10.8156 -15.6309 -2.37675 Vertex 470 -10.8149 0.381758 -5.94557 Vertex 471 -10.814 -14.1873 0.185369 Vertex 472 -10.8136 -14.9301 -1.70804 Vertex 473 -10.8131 5.51172 -5.70524 Vertex 474 -10.8119 -14.8261 0.212714 Vertex 475 -10.8072 -14.9043 -1.65857 Vertex 476 -10.8029 -16.7017 -1.23085 Vertex 477 -10.7977 -16.273 -3.03447 Vertex 478 -10.7968 -15.4446 -1.64196 Vertex 479 -10.7955 -16.0007 -0.923008 Vertex 480 -10.7955 -15.9079 -2.07957 Vertex 481 -10.7941 -16.451 -2.14016 Vertex 482 -10.7904 -14.8768 0.405624 Vertex 483 -10.7897 -15.3667 -0.157165 Vertex 484 -10.7895 -0.209263 -6.05512 Vertex 485 -10.787 -19.6814 -3.33927 Vertex 486 -10.7868 -15.3841 -0.746702 Vertex 487 -10.7833 -15.7841 0.509618 Vertex 488 -10.7815 -15.5478 -2.02272 Vertex 489 -10.7792 -11.7079 -3.53787 Vertex 490 -10.7772 -15.8206 -0.511851 Vertex 491 -10.7722 -15.7787 -1.66207 Vertex 492 -10.7715 -16.1306 -1.94264 Vertex 493 -10.7666 -16.7698 -1.91735 Vertex 494 -10.7664 -16.7971 -0.414976 Vertex 495 -10.7629 -11.0447 -1.08783 Vertex 496 -10.7599 -15.7087 0.213064 Vertex 497 -10.7535 -14.9514 0.064113 Vertex 498 -10.7525 -16.3803 -1.04931 Vertex 499 -10.7498 -14.4184 0.589041 Vertex 500 -10.7495 -16.7526 -0.146369 Vertex 501 -10.7467 -14.9368 0.52599 Vertex 502 -10.7437 -19.8397 -2.59471 Vertex 503 -10.7429 -15.9078 -1.22531 Vertex 504 -10.7426 -15.6939 -0.506093 Vertex 505 -10.7413 -16.3522 0.15375 Vertex 506 -10.7382 -16.0004 0.970921 Vertex 507 -10.7362 -15.3288 0.615248 Vertex 508 -10.7335 -14.8566 -1.12313 Vertex 509 -10.7327 -15.8539 -2.86529 Vertex 510 -10.7269 -15.9091 -0.072221 Vertex 511 -10.7259 -14.8734 -1.07157 Vertex 512 -10.7249 -16.6535 -2.46258 Vertex 513 -10.7244 -11.7558 -0.984979 Vertex 514 -10.7226 -12.1474 -0.269684 Vertex 515 -10.7196 -15.3947 -1.08171 Vertex 516 -10.7191 -15.7961 0.527957 Vertex 517 -10.7157 -15.7347 -2.83193 Vertex 518 -10.7148 -15.5037 -2.68454 Vertex 519 -10.7127 1.21392 -5.59313 Vertex 520 -10.71 -15.1684 -1.78481 Vertex 521 -10.7098 -14.8587 -0.222102 Vertex 522 -10.7079 -15.6787 -1.64124 Vertex 523 -10.7073 -14.8731 -0.709271 Vertex 524 -10.7066 -14.8155 0.221239 Vertex 525 -10.7014 -16.8112 -0.679954 Vertex 526 -10.699 -12.519 0.999461 Vertex 527 -10.6982 -15.9909 -2.06029 Vertex 528 -10.6956 -14.8473 0.42543 Vertex 529 -10.6939 -16.4894 -2.14899 Vertex 530 -10.6925 7.13321 0.082106 Vertex 531 -10.6886 -15.0544 -0.011704 Vertex 532 -10.6845 -16.3902 0.084887 Vertex 533 -10.6792 -10.8455 -0.544866 Vertex 534 -10.678 -4.1563 -5.78225 Vertex 535 -10.678 7.94452 0.527652 Vertex 536 -10.6765 -15.4494 0.063173 Vertex 537 -10.6651 -12.9828 -0.666245 Vertex 538 -10.6614 -14.7733 0.416879 Vertex 539 -10.6589 4.60609 0.086972 Vertex 540 -10.6554 -14.9287 0.053196 Vertex 541 -10.6516 -14.7563 0.214658 Vertex 542 -10.6505 -15.6214 -2.71031 Vertex 543 -10.6474 -15.8692 0.973914 Vertex 544 -10.6463 9.76304 -4.7473 Vertex 545 -10.6461 -15.5561 -0.464796 Vertex 546 -10.6423 -15.7912 -1.20308 Vertex 547 -10.6405 -19.7502 -2.96992 Vertex 548 -10.6371 -15.0617 -0.026158 Vertex 549 -10.6354 -14.861 -0.169522 Vertex 550 -10.6334 -0.765666 -2.08109 Vertex 551 -10.6328 -15.0873 -0.892955 Vertex 552 -10.6324 -14.8784 -0.760937 Vertex 553 -10.629 -16.4459 1.13878 Vertex 554 -10.6224 -15.5636 -0.447075 Vertex 555 -10.6205 -14.8559 0.038575 Vertex 556 -10.6188 -15.7534 -0.069459 Vertex 557 -10.6134 -14.5472 1.21956 Vertex 558 -10.6133 2.79154 -5.59136 Vertex 559 -10.6122 -16.127 0.148446 Vertex 560 -10.61 -14.8464 -0.465764 Vertex 561 -10.6048 -15.9776 -0.907205 Vertex 562 -10.6019 -15.0985 -1.00007 Vertex 563 -10.6017 -15.5486 -2.6712 Vertex 564 -10.597 6.45553 -5.50768 Vertex 565 -10.5967 -15.7235 -1.4972 Vertex 566 -10.5902 -16.5051 -0.965312 Vertex 567 -10.5853 -16.7737 1.02883 Vertex 568 -10.5767 -16.837 0.685875 Vertex 569 -10.5727 -15.7302 0.422932 Vertex 570 -10.567 -14.892 0.582293 Vertex 571 -10.566 -16.6071 -2.74803 Vertex 572 -10.5619 -15.592 -0.454099 Vertex 573 -10.56 -1.0925 -5.79057 Vertex 574 -10.5577 -15.7618 -1.45611 Vertex 575 -10.5561 1.24434 -0.551981 Vertex 576 -10.5547 -14.8855 0.52964 Vertex 577 -10.554 -16.2804 -2.90411 Vertex 578 -10.5529 -15.8316 -2.03726 Vertex 579 -10.5516 -15.8172 -0.905828 Vertex 580 -10.5501 -15.1011 0.704146 Vertex 581 -10.55 -15.2231 -2.67935 Vertex 582 -10.5492 -13.4731 1.26807 Vertex 583 -10.548 -15.7557 -1.47685 Vertex 584 -10.548 -15.9902 0.146957 Vertex 585 -10.5439 -15.3174 -1.84967 Vertex 586 -10.5411 -16.2934 -2.09395 Vertex 587 -10.54 -15.5169 -0.087701 Vertex 588 -10.5383 -15.452 -0.100028 Vertex 589 -10.5372 -15.5489 0.692284 Vertex 590 -10.5331 -15.6176 -1.86309 Vertex 591 -10.5329 -2.38423 -5.89145 Vertex 592 -10.5312 -11.4201 -2.49583 Vertex 593 -10.5305 -14.6859 0.651277 Vertex 594 -10.5271 -14.8386 -0.465588 Vertex 595 -10.5195 9.12227 0.911131 Vertex 596 -10.5183 3.54133 -5.62425 Vertex 597 -10.5182 -15.6378 -1.68701 Vertex 598 -10.5039 -0.840393 -5.82585 Vertex 599 -10.5037 -15.4386 -1.85885 Vertex 600 -10.5016 -15.4526 -0.783953 Vertex 601 -10.4992 -15.0291 -0.044895 Vertex 602 -10.4976 -15.0008 0.002019 Vertex 603 -10.4946 -15.0218 -1.6631 Vertex 604 -10.4924 -11.0253 -1.15006 Vertex 605 -10.4923 -16.8496 0.389597 Vertex 606 -10.4884 -15.7835 -1.38983 Vertex 607 -10.4859 -16.3042 0.1161 Vertex 608 -10.4807 -15.7519 -1.12062 Vertex 609 -10.4787 -16.2539 -1.08276 Vertex 610 -10.4773 -16.5984 0.148561 Vertex 611 -10.4752 -15.6743 0.118331 Vertex 612 -10.4743 5.49132 0.03785 Vertex 613 -10.4739 12.3414 -3.34505 Vertex 614 -10.4665 -15.2701 -0.069142 Vertex 615 -10.462 12.7106 -2.03032 Vertex 616 -10.46 -15.5197 -0.811788 Vertex 617 -10.4596 -15.5196 -0.094213 Vertex 618 -10.4525 -16.3158 -2.33928 Vertex 619 -10.4419 -15.642 -1.79093 Vertex 620 -10.4405 -16.2802 1.13673 Vertex 621 -10.44 -15.7404 -1.84434 Vertex 622 -10.4379 -15.586 -1.10456 Vertex 623 -10.4378 7.29163 -5.12198 Vertex 624 -10.4344 -0.524662 -6.01673 Vertex 625 -10.4337 -14.2675 1.51813 Vertex 626 -10.4325 -13.6979 -0.190373 Vertex 627 -10.4287 -4.22971 -5.97208 Vertex 628 -10.4283 -14.9789 -1.18179 Vertex 629 -10.4271 -15.0278 -1.72507 Vertex 630 -10.4232 -15.2761 -1.85305 Vertex 631 -10.4228 -17.6652 -1.96881 Vertex 632 -10.4136 -15.7521 -1.11693 Vertex 633 -10.4136 -15.4701 -0.797937 Vertex 634 -10.4134 -15.7945 0.46378 Vertex 635 -10.4119 -15.6659 -1.1103 Vertex 636 -10.4049 -15.7899 0.465994 Vertex 637 -10.4049 -17.4539 -2.61459 Vertex 638 -10.4033 -16.0661 -2.82281 Vertex 639 -10.3985 -15.0905 -2.0049 Vertex 640 -10.3981 -12.782 1.20435 Vertex 641 -10.3977 -15.0368 -2.4732 Vertex 642 -10.396 -16.4804 -1.56853 Vertex 643 -10.3943 -15.7329 -1.81436 Vertex 644 -10.39 7.47559 -5.08956 Vertex 645 -10.3828 -14.2139 0.30043 Vertex 646 -10.3711 -15.0746 -2.24184 Vertex 647 -10.3704 -16.3094 -2.08445 Vertex 648 -10.368 -14.961 -1.43453 Vertex 649 -10.3604 -16.61 -0.056382 Vertex 650 -10.3498 -15.7605 0.838861 Vertex 651 -10.3471 -16.2631 -2.56731 Vertex 652 -10.3466 -14.9758 -1.14076 Vertex 653 -10.3409 -16.3972 -0.983203 Vertex 654 -10.3406 -15.7759 0.466045 Vertex 655 -10.3349 4.23102 -5.82585 Vertex 656 -10.3252 -16.4802 -1.82208 Vertex 657 -10.3211 8.35868 -5.18312 Vertex 658 -10.3195 -16.6556 -0.4016 Vertex 659 -10.3182 -15.2769 0.801145 Vertex 660 -10.3129 -16.5418 -1.29802 Vertex 661 -10.3126 -16.4159 0.14436 Vertex 662 -10.3119 -15.7251 0.800386 Vertex 663 -10.3082 12.4185 -0.866307 Vertex 664 -10.3073 -15.1012 0.570992 Vertex 665 -10.3052 -15.1998 -0.996663 Vertex 666 -10.3017 -16.1019 0.063706 Vertex 667 -10.2971 6.33747 0.050988 Vertex 668 -10.2905 -17.5936 -2.30108 Vertex 669 -10.2866 -14.9481 -1.44648 Vertex 670 -10.2811 -15.5724 -2.70249 Vertex 671 -10.2795 -13.9457 -0.018693 Vertex 672 -10.2792 -15.7233 0.819898 Vertex 673 -10.2772 -15.9533 0.138717 Vertex 674 -10.2733 -0.053182 -1.91368 Vertex 675 -10.2701 -21.311 -3.44826 Vertex 676 -10.2685 6.5225 0.103263 Vertex 677 -10.2676 -15.4349 -2.6733 Vertex 678 -10.2658 -15.611 -1.98963 Vertex 679 -10.2575 -21.32 -2.89933 Vertex 680 -10.256 -15.2048 0.096699 Vertex 681 -10.2557 0.277446 -5.88806 Vertex 682 -10.2511 -16.6647 -0.743094 Vertex 683 -10.2494 -16.6207 0.69106 Vertex 684 -10.2429 -15.1136 0.633678 Vertex 685 -10.2414 -16.5666 0.948636 Vertex 686 -10.2356 -15.1002 0.797242 Vertex 687 -10.232 -15.882 0.137164 Vertex 688 -10.227 -15.4613 -0.042742 Vertex 689 -10.2212 -16.1784 -0.939108 Vertex 690 -10.2185 -15.266 0.014522 Vertex 691 -10.2165 -15.1736 0.533762 Vertex 692 -10.2162 9.76619 -5.44123 Vertex 693 -10.2152 1.33698 -5.60939 Vertex 694 -10.2094 -15.9057 0.14528 Vertex 695 -10.2058 -13.3561 1.23215 Vertex 696 -10.2043 -14.0961 1.46342 Vertex 697 -10.1922 -16.017 -1.01276 Vertex 698 -10.1908 2.33905 -0.264528 Vertex 699 -10.1903 -15.2376 1.29131 Vertex 700 -10.1867 -14.535 0.336458 Vertex 701 -10.1822 -15.161 0.345594 Vertex 702 -10.1807 -15.2394 0.057896 Vertex 703 -10.1782 -15.545 0.046677 Vertex 704 -10.1756 -16.6364 0.438455 Vertex 705 -10.1721 -15.626 -2.22149 Vertex 706 -10.1711 -15.2668 -0.865934 Vertex 707 -10.1489 -0.004846 -2.15999 Vertex 708 -10.146 -21.2852 -3.17337 Vertex 709 -10.1421 -19.9816 -0.674959 Vertex 710 -10.1388 1.32248 -0.667843 Vertex 711 -10.138 -16.0187 -1.93088 Vertex 712 -10.1335 10.3171 0.35981 Vertex 713 -10.132 -15.5939 -2.45618 Vertex 714 -10.1302 -15.4011 0.024308 Vertex 715 -10.1168 -15.4365 0.946823 Vertex 716 -10.1163 -15.3133 0.355448 Vertex 717 -10.1011 -15.1757 0.356879 Vertex 718 -10.0979 2.70569 -5.68303 Vertex 719 -10.0974 -0.474518 -5.85231 Vertex 720 -10.0877 -15.9294 -1.01747 Vertex 721 -10.077 -15.5485 -0.868527 Vertex 722 -10.0713 -15.6141 -1.9045 Vertex 723 -10.0703 -12.9986 0.337294 Vertex 724 -10.0656 -16.3722 -0.406254 Vertex 725 -10.0628 -13.9021 0.410332 Vertex 726 -10.062 -15.034 -0.18731 Vertex 727 -10.0605 -15.9198 -1.90888 Vertex 728 -10.0548 -15.2401 -1.93361 Vertex 729 -10.0542 -15.3998 -0.865201 Vertex 730 -10.0513 -16.3232 -0.148261 Vertex 731 -10.0497 -15.1603 -2.54581 Vertex 732 -10.0377 -14.9516 1.60192 Vertex 733 -10.0372 -15.0344 -0.64981 Vertex 734 -10.036 -15.6257 -1.02428 Vertex 735 -10.0315 -15.0685 -0.417614 Vertex 736 -10.0298 -16.3056 -1.46581 Vertex 737 -10.0297 0.740176 -1.21487 Vertex 738 -10.0284 -0.933655 -2.35618 Vertex 739 -10.026 5.30314 -5.82455 Vertex 740 -10.0195 -15.2187 -2.24603 Vertex 741 -10.0194 -16.2767 -1.22267 Vertex 742 -10.0175 -15.866 0.997665 Vertex 743 -10.015 -15.6201 0.760091 Vertex 744 -10.01 -16.3625 -0.663164 Vertex 745 -10.0076 -13.4063 -0.144325 Vertex 746 -10.0026 11.1862 -4.56491 Vertex 747 -9.99053 -16.2791 -1.70685 Vertex 748 -9.98007 -14.7642 0.578683 Vertex 749 -9.97415 3.50325 -5.6892 Vertex 750 -9.97122 -14.8082 0.37878 Vertex 751 -9.96899 -15.5808 0.90871 Vertex 752 -9.96338 -4.2212 -5.44755 Vertex 753 -9.94118 -0.772566 -5.41739 Vertex 754 -9.93864 -14.0007 1.39393 Vertex 755 -9.92759 -16.1117 0.112918 Vertex 756 -9.91631 -13.2561 0.680038 Vertex 757 -9.89984 -15.7575 0.961197 Vertex 758 -9.89669 3.36702 -0.11203 Vertex 759 -9.88896 -15.5752 0.09549 Vertex 760 -9.88576 -15.6557 -0.141455 Vertex 761 -9.88332 -2.44321 -2.029 Vertex 762 -9.88307 -2.44324 -5.57819 Vertex 763 -9.88043 -14.9543 0.203369 Vertex 764 -9.8715 0.167996 -5.67131 Vertex 765 -9.87019 11.8408 -0.00659 Vertex 766 -9.8662 -15.7829 0.054908 Vertex 767 -9.86292 -15.6942 -0.382872 Vertex 768 -9.85591 -13.5405 -0.037375 Vertex 769 -9.84828 -15.4341 1.23197 Vertex 770 -9.84366 -13.5396 0.834674 Vertex 771 -9.84129 -15.4283 -1.69507 Vertex 772 -9.84089 -4.23232 -1.97828 Vertex 773 -9.83412 -14.6562 1.63673 Vertex 774 -9.83246 -15.6575 -0.623767 Vertex 775 -9.8301 -15.4674 -1.46372 Vertex 776 -9.82831 4.14704 -5.78171 Vertex 777 -9.82793 -15.3148 -0.080776 Vertex 778 -9.82779 -15.8746 0.416379 Vertex 779 -9.82697 -17.6931 -0.000768 Vertex 780 -9.82394 -0.959323 -5.26112 Vertex 781 -9.8233 1.24077 -5.45815 Vertex 782 -9.82269 -15.4349 -1.23279 Vertex 783 -9.80722 -14.2928 0.470013 Vertex 784 -9.80458 -16.0672 -1.45693 Vertex 785 -9.79645 -16.0396 -1.14011 Vertex 786 -9.7942 -15.3524 -0.39644 Vertex 787 -9.7936 -15.9753 0.100159 Vertex 788 -9.78416 4.38373 -0.036203 Vertex 789 -9.77716 -16.0328 -1.77378 Vertex 790 -9.77394 -15.3139 -0.713082 Vertex 791 -9.76182 5.40737 0.003398 Vertex 792 -9.7604 -21.461 -1.2275 Vertex 793 -9.75612 -15.4313 0.683442 Vertex 794 -9.75577 -19.7527 -6.08434 Vertex 795 -9.74596 -4.28925 -5.4962 Vertex 796 -9.73866 2.44708 -5.66819 Vertex 797 -9.73715 12.8281 -2.73469 Vertex 798 -9.73661 -16.0595 0.850463 Vertex 799 -9.73154 0.01042 -5.26248 Vertex 800 -9.73154 -14.0222 0.985885 Vertex 801 -9.72934 -16.1599 0.625094 Vertex 802 -9.72184 1.3262 -2.23653 Vertex 803 -9.71841 -15.5205 0.468435 Vertex 804 -9.70212 -15.5374 0.234933 Vertex 805 -9.68869 -16.1883 0.384223 Vertex 806 -9.67989 -15.8386 -0.1016 Vertex 807 -9.67962 -15.2565 -0.05794 Vertex 808 -9.67313 -15.6468 0.928454 Vertex 809 -9.66799 7.74706 0.924819 Vertex 810 -9.65546 1.26999 -2.45644 Vertex 811 -9.64369 -16.0826 0.155483 Vertex 812 -9.63894 7.02585 0.456604 Vertex 813 -9.63827 2.09717 -0.490344 Vertex 814 -9.63054 -0.150637 -2.6132 Vertex 815 -9.61605 6.44918 0.13333 Vertex 816 -9.61545 1.08211 -5.16186 Vertex 817 -9.59717 6.00617 -5.57221 Vertex 818 -9.5879 -0.053116 -5.00576 Vertex 819 -9.58468 8.99371 1.34566 Vertex 820 -9.58199 -15.7702 0.867382 Vertex 821 -9.58125 6.28773 0.06475 Vertex 822 -9.57185 -4.29444 -1.54782 Vertex 823 -9.5696 -14.5516 0.682242 Vertex 824 -9.55726 -15.9385 0.526657 Vertex 825 -9.54713 -15.8851 0.56992 Vertex 826 -9.54451 -14.5447 1.49722 Vertex 827 -9.54165 -14.6553 0.45666 Vertex 828 -9.5341 -15.2045 1.24693 Vertex 829 -9.52467 -1.09417 -2.9647 Vertex 830 -9.50647 -15.9251 0.255295 Vertex 831 -9.46959 -15.51 -1.22994 Vertex 832 -9.46207 -14.8063 0.280058 Vertex 833 -9.45522 -15.9969 -0.23507 Vertex 834 -9.44853 3.47707 -5.55829 Vertex 835 -9.44826 -15.3865 -1.76839 Vertex 836 -9.44726 4.77119 -5.7723 Vertex 837 -9.44532 11.2386 -5.18265 Vertex 838 -9.44467 -16.0094 0.412612 Vertex 839 -9.44001 -16.2222 0.175871 Vertex 840 -9.42007 -15.3946 0.986371 Vertex 841 -9.41079 -16.206 -0.042953 Vertex 842 -9.40524 -4.27188 -2.68702 Vertex 843 -9.36658 -15.6872 -0.257401 Vertex 844 -9.36295 12.0082 -3.99928 Vertex 845 -9.36026 -16.2195 0.208991 Vertex 846 -9.34365 -4.27747 -4.70197 Vertex 847 -9.33784 -15.4982 -1.50529 Vertex 848 -9.33232 -14.5438 1.13985 Vertex 849 -9.32171 4.06305 -5.73758 Vertex 850 -9.32017 0.94983 -4.4582 Vertex 851 -9.31843 -16.0043 -0.265824 Vertex 852 -9.31831 2.13904 -5.14951 Vertex 853 -9.30952 -19.7285 -6.43079 Vertex 854 -9.30795 -15.1184 0.014277 Vertex 855 -9.30604 1.628 -1.35177 Vertex 856 -9.29982 -0.208133 -4.24676 Vertex 857 -9.29334 -0.93602 -4.59519 Vertex 858 -9.28865 10.0415 1.28198 Vertex 859 -9.28703 -17.6027 -5.58686 Vertex 860 -9.27918 -15.6482 0.662059 Vertex 861 -9.27479 3.10244 -0.442654 Vertex 862 -9.27318 -21.3452 -5.73709 Vertex 863 -9.25302 -2.50044 -2.70947 Vertex 864 -9.25048 -0.176438 -3.27873 Vertex 865 -9.24875 -2.50084 -4.82542 Vertex 866 -9.24557 2.61353 -2.19345 Vertex 867 -9.24255 -0.993387 -3.47699 Vertex 868 -9.24253 -14.9671 1.16286 Vertex 869 -9.23886 -14.7596 0.84387 Vertex 870 -9.22194 -16.2233 -0.121848 Vertex 871 -9.20513 2.55755 -2.41703 Vertex 872 -9.20505 0.8743 -3.91664 Vertex 873 -9.19965 -16.2701 0.016926 Vertex 874 -9.19829 6.73228 -5.36579 Vertex 875 -9.19167 -15.8061 0.452515 Vertex 876 -9.18908 -19.7174 -6.98808 Vertex 877 -9.16963 -16.2903 0.101243 Vertex 878 -9.16476 -4.33881 -4.65661 Vertex 879 -9.15542 -15.9807 -0.317903 Vertex 880 -9.14724 -45.027 3.87047 Vertex 881 -9.14485 -15.2381 0.870755 Vertex 882 -9.1409 1.04284 -2.6797 Vertex 883 -9.13092 -15.4145 -0.164885 Vertex 884 -9.12588 -44.3663 3.86857 Vertex 885 -9.12383 -4.29743 -3.38804 Vertex 886 -9.12111 -14.9301 0.658219 Vertex 887 -9.10999 6.90209 -5.35687 Vertex 888 -9.09858 -4.33885 -2.40005 Vertex 889 -9.07901 7.93967 -5.49622 Vertex 890 -9.0753 11.1982 0.508086 Vertex 891 -9.07107 -15.833 -0.318259 Vertex 892 -9.05243 -15.6891 -0.281141 Vertex 893 -9.03366 -45.027 1.92883 Vertex 894 -9.02326 -44.3842 1.9165 Vertex 895 -9.01907 5.47591 -5.51982 Vertex 896 -9.00267 5.85447 -0.203232 Vertex 897 -8.99822 -16.1599 -0.172204 Vertex 898 -8.99399 4.18484 -0.408676 Vertex 899 -8.98669 5.18228 -0.208585 Vertex 900 -8.97982 -15.2233 0.317066 Vertex 901 -8.96696 -15.4864 0.456328 Vertex 902 -8.96265 -16.1634 0.09069 Vertex 903 -8.95974 -16.1879 -0.032894 Vertex 904 -8.94586 -15.6253 0.355535 Vertex 905 -8.94565 -15.4831 0.513085 Vertex 906 -8.94353 -22.1882 -3.16712 Vertex 907 -8.94161 -43.3202 3.79385 Vertex 908 -8.93978 -19.9924 0.945029 Vertex 909 -8.92681 -2.49958 -3.49388 Vertex 910 -8.92533 -45.271 3.84484 Vertex 911 -8.92126 -4.35677 -3.23025 Vertex 912 -8.90431 -17.6212 -5.81033 Vertex 913 -8.89958 12.3419 -0.439584 Vertex 914 -8.89332 2.68893 -1.38139 Vertex 915 -8.88844 0.992296 -3.15284 Vertex 916 -8.88696 2.02234 -4.19029 Vertex 917 -8.87638 -15.9571 -0.162388 Vertex 918 -8.87107 -43.3143 1.918 Vertex 919 -8.86626 -15.4825 0.067004 Vertex 920 -8.86187 2.11765 -3.80763 Vertex 921 -8.85424 -21.3421 -5.99528 Vertex 922 -8.84542 9.6329 -6.00456 Vertex 923 -8.84097 -17.4761 -6.22582 Vertex 924 -8.83348 -15.762 -0.109212 Vertex 925 -8.83057 12.0761 -4.63657 Vertex 926 -8.82183 -45.271 2.0883 Vertex 927 -8.81493 -15.9751 -0.026694 Vertex 928 -8.79583 -15.785 0.144167 Vertex 929 -8.79141 -15.9987 0.057748 Vertex 930 -8.79092 2.40505 -2.65504 Vertex 931 -8.7899 11.1911 -5.36334 Vertex 932 -8.78664 12.8215 -1.445 Vertex 933 -8.7794 -15.7098 0.102446 Vertex 934 -8.77833 -45.027 1.1626 Vertex 935 -8.7668 -44.436 1.17209 Vertex 936 -8.76669 -21.352 -6.45892 Vertex 937 -8.71394 7.75887 0.933331 Vertex 938 -8.69749 13.0495 -2.47229 Vertex 939 -8.69484 -22.1384 -3.2422 Vertex 940 -8.68706 3.31266 -5.17191 Vertex 941 -8.67558 6.23456 -0.448852 Vertex 942 -8.67112 12.6136 -3.55732 Vertex 943 -8.66928 6.86513 -0.165417 Vertex 944 -8.66265 -21.4709 0.144578 Vertex 945 -8.65723 2.23391 -3.04478 Vertex 946 -8.65485 4.19353 -1.71193 Vertex 947 -8.64004 -23.7411 -3.16115 Vertex 948 -8.63254 6.77266 -0.327621 Vertex 949 -8.62763 7.16986 0.288609 Vertex 950 -8.62559 -17.8018 1.65954 Vertex 951 -8.6147 -43.3518 1.2424 Vertex 952 -8.60523 4.22854 -1.30917 Vertex 953 -8.59473 -27.9859 -3.52662 Vertex 954 -8.57845 5.19998 -0.725376 Vertex 955 -8.56571 -44.9304 1.31904 Vertex 956 -8.56386 -24.1367 -3.27614 Vertex 957 -8.56337 -45.271 1.31489 Vertex 958 -8.52179 10.9701 1.11311 Vertex 959 -8.50861 -26.9064 -2.8585 Vertex 960 -8.50654 4.58203 -5.16603 Vertex 961 -8.50521 6.42801 -5.05533 Vertex 962 -8.50151 -42.6843 3.20377 Vertex 963 -8.48754 -44.4112 0.423698 Vertex 964 -8.48493 11.0335 1.2752 Vertex 965 -8.4849 -45.027 0.418482 Vertex 966 -8.48024 -44.9365 1.28196 Vertex 967 -8.47776 5.2242 -1.14207 Vertex 968 -8.47363 -27.9028 -3.61108 Vertex 969 -8.46957 8.95833 1.41415 Vertex 970 -8.46614 6.60781 -5.04073 Vertex 971 -8.46009 -44.4595 1.29137 Vertex 972 -8.45587 -42.643 2.10917 Vertex 973 -8.44611 -28.4977 -3.44355 Vertex 974 -8.43062 10.9166 0.966035 Vertex 975 -8.41631 -12.9309 -0.638932 Vertex 976 -8.41438 4.17157 -1.96465 Vertex 977 -8.41045 12.1842 0.211048 Vertex 978 -8.40726 -15.374 -4.54654 Vertex 979 -8.40378 -12.9112 -1.18576 Vertex 980 -8.39982 -44.3648 5.10133 Vertex 981 -8.39821 -27.353 -2.74804 Vertex 982 -8.39419 9.92694 1.40347 Vertex 983 -8.38225 -45.0271 5.06772 Vertex 984 -8.38146 -23.7552 -3.22256 Vertex 985 -8.37739 11.1107 1.46784 Vertex 986 -8.37072 -26.8347 -2.97015 Vertex 987 -8.36886 12.2991 0.334827 Vertex 988 -8.34849 6.61465 -0.694472 Vertex 989 -8.34231 -43.3374 4.82455 Vertex 990 -8.33907 -43.3015 0.493351 Vertex 991 -8.32824 -24.0221 -3.22699 Vertex 992 -8.32492 12.0691 0.109669 Vertex 993 -8.32261 3.3509 -4.13582 Vertex 994 -8.31915 -22.1684 -5.511 Vertex 995 -8.31444 -43.4288 1.3497 Vertex 996 -8.30544 -13.0015 -0.922785 Vertex 997 -8.29881 9.31748 1.24736 Vertex 998 -8.29388 -25.4908 -3.29862 Vertex 999 -8.28326 -30.1194 -4.21108 Vertex 1000 -8.25639 12.4301 0.487534 Vertex 1001 -8.25428 7.52254 -5.24379 Vertex 1002 -8.25409 -44.9304 0.436705 Vertex 1003 -8.25396 11.1308 1.51011 Vertex 1004 -8.25248 9.31063 1.41515 Vertex 1005 -8.25174 -45.271 0.432554 Vertex 1006 -8.23746 -45.271 4.91516 Vertex 1007 -8.22614 -44.3719 -0.295623 Vertex 1008 -8.22038 10.9114 0.935422 Vertex 1009 -8.21893 9.34764 1.09348 Vertex 1010 -8.21509 -43.291 -0.061943 Vertex 1011 -8.21442 -25.8795 -3.19961 Vertex 1012 -8.20447 -22.125 -4.99594 Vertex 1013 -8.1959 12.8479 -0.730817 Vertex 1014 -8.19173 -45.0271 -0.278554 Vertex 1015 -8.18958 -42.5911 1.42024 Vertex 1016 -8.18682 -44.9365 0.537845 Vertex 1017 -8.18082 -44.4346 0.542982 Vertex 1018 -8.18049 6.64974 -4.28675 Vertex 1019 -8.1486 -30.0369 -4.30088 Vertex 1020 -8.14521 12.991 -0.647036 Vertex 1021 -8.13685 10.9443 0.814305 Vertex 1022 -8.13507 9.31474 1.61373 Vertex 1023 -8.13296 12.4502 0.529803 Vertex 1024 -8.12424 -19.7211 -8.09466 Vertex 1025 -8.12124 12.6992 -0.784484 Vertex 1026 -8.11792 12.0286 0.105356 Vertex 1027 -8.1136 -30.5863 -4.13192 Vertex 1028 -8.10949 3.36266 -3.69303 Vertex 1029 -8.10894 -26.5016 -2.12342 Vertex 1030 -8.1075 -15.4977 -4.72907 Vertex 1031 -8.09503 -15.3683 -5.06338 Vertex 1032 -8.08957 -23.7329 -5.22963 Vertex 1033 -8.04387 -24.1321 -5.13846 Vertex 1034 -8.04338 -10.8848 -0.228495 Vertex 1035 -8.04053 -42.6782 3.77032 Vertex 1036 -8.03881 -43.3786 0.600656 Vertex 1037 -8.03752 -26.9019 -2.00118 Vertex 1038 -8.0333 -25.5016 -3.25155 Vertex 1039 -8.02324 13.1514 -0.536025 Vertex 1040 -8.01519 9.39067 1.05896 Vertex 1041 -8.01164 9.33482 1.656 Vertex 1042 -8.0053 -13.0103 1.00777 Vertex 1043 -7.99733 -30.181 -3.65386 Vertex 1044 -7.98766 5.2484 -1.55877 Vertex 1045 -7.98007 -25.7685 -3.25598 Vertex 1046 -7.96631 6.90082 -0.876599 Vertex 1047 -7.96207 -26.4116 -2.25786 Vertex 1048 -7.95283 -42.8053 1.46782 Vertex 1049 -7.95196 -45.271 -0.286458 Vertex 1050 -7.93532 7.94025 0.840468 Vertex 1051 -7.9205 12.6393 -0.761338 Vertex 1052 -7.9124 -42.4073 0.693917 Vertex 1053 -7.90837 -22.1205 -5.57303 Vertex 1054 -7.90535 -27.4298 -3.22534 Vertex 1055 -7.89981 13.1714 -0.493756 Vertex 1056 -7.89086 -22.0812 -5.30726 Vertex 1057 -7.8867 5.53516 -4.62686 Vertex 1058 -7.88002 11.9198 -0.116802 Vertex 1059 -7.87406 -42.3419 0.440428 Vertex 1060 -7.87386 8.04017 0.707204 Vertex 1061 -7.87356 7.87492 0.990975 Vertex 1062 -7.86606 -31.5471 -4.78395 Vertex 1063 -7.86286 -10.9122 1.09587 Vertex 1064 -7.85131 -23.7495 -5.11313 Vertex 1065 -7.83119 -15.6207 1.95268 Vertex 1066 -7.8166 -25.4854 -5.04524 Vertex 1067 -7.81562 3.79219 -2.41983 Vertex 1068 -7.80632 -24.0174 -5.09468 Vertex 1069 -7.79831 13.3084 -2.11062 Vertex 1070 -7.78966 -21.3532 -7.36365 Vertex 1071 -7.76148 4.96266 -4.32859 Vertex 1072 -7.75892 12.9316 -2.48278 Vertex 1073 -7.74719 12.7431 -3.50605 Vertex 1074 -7.74378 13.1363 -2.09439 Vertex 1075 -7.74006 7.81806 1.17155 Vertex 1076 -7.73222 -25.8734 -5.07774 Vertex 1077 -7.73073 13.471 -2.08544 Vertex 1078 -7.71974 -17.4998 -7.56352 Vertex 1079 -7.70332 -31.4477 -4.87229 Vertex 1080 -7.68501 3.53338 -2.93775 Vertex 1081 -7.68071 8.12335 0.68454 Vertex 1082 -7.67565 -42.6215 0.741497 Vertex 1083 -7.67358 -31.9761 -4.70322 Vertex 1084 -7.65852 -27.3814 -3.28275 Vertex 1085 -7.65184 -30.1758 -5.53014 Vertex 1086 -7.63661 -22.3253 -0.783916 Vertex 1087 -7.63149 10.8124 -5.64342 Vertex 1088 -7.62621 9.35865 -5.83151 Vertex 1089 -7.62261 12.036 -4.81852 Vertex 1090 -7.61663 7.83815 1.21381 Vertex 1091 -7.59849 -43.2583 -1.67611 Vertex 1092 -7.59116 13.6518 -2.03551 Vertex 1093 -7.56545 12.5855 -0.899039 Vertex 1094 -7.56263 -42.3769 2.50256 Vertex 1095 -7.55794 -25.4963 -4.9928 Vertex 1096 -7.55463 13.063 -2.03102 Vertex 1097 -7.51897 -44.3451 5.6843 Vertex 1098 -7.51413 -44.4004 -1.75187 Vertex 1099 -7.51296 -25.7642 -4.97435 Vertex 1100 -7.50323 6.99802 0.025754 Vertex 1101 -7.48562 -22.2817 -0.988529 Vertex 1102 -7.48314 -45.0271 -1.79581 Vertex 1103 -7.4719 -27.4234 -4.97097 Vertex 1104 -7.46773 13.6718 -1.99324 Vertex 1105 -7.45504 7.13056 -0.084245 Vertex 1106 -7.43949 -9.01958 0.66656 Vertex 1107 -7.43434 -45.0273 5.69717 Vertex 1108 -7.43035 6.90536 0.156759 Vertex 1109 -7.42978 -23.8644 -0.953655 Vertex 1110 -7.4291 -41.7705 -0.706719 Vertex 1111 -7.42907 -42.3373 -1.50223 Vertex 1112 -7.40119 -45.271 5.47066 Vertex 1113 -7.3915 -9.11913 -0.899686 Vertex 1114 -7.38405 7.43221 2.55887 Vertex 1115 -7.37731 -43.3377 5.39664 Vertex 1116 -7.37725 -24.2586 -0.997458 Vertex 1117 -7.35804 5.8667 -3.90135 Vertex 1118 -7.34724 -32.0742 -3.54329 Vertex 1119 -7.34298 6.36847 2.67728 Vertex 1120 -7.31846 -42.3313 1.79142 Vertex 1121 -7.31193 5.15508 -3.58199 Vertex 1122 -7.30844 -43.2583 -2.57767 Vertex 1123 -7.3006 -45.271 -1.68567 Vertex 1124 -7.28524 6.82002 0.316999 Vertex 1125 -7.27506 -32.6227 -5.37381 Vertex 1126 -7.27034 -23.8838 -1.16521 Vertex 1127 -7.26954 7.23251 -0.093519 Vertex 1128 -7.26897 -41.4482 -1.31473 Vertex 1129 -7.2683 -22.1541 -6.51797 Vertex 1130 -7.2653 -10.881 -2.97793 Vertex 1131 -7.26168 7.2993 -1.87648 Vertex 1132 -7.24208 -27.3771 -4.86325 Vertex 1133 -7.23499 13.0197 -3.61834 Vertex 1134 -7.23428 -24.152 -1.19479 Vertex 1135 -7.22757 -42.6339 1.749 Vertex 1136 -7.21797 -26.2768 -1.33962 Vertex 1137 -7.21482 5.19364 -2.01751 Vertex 1138 -7.20901 12.8624 -3.52573 Vertex 1139 -7.1969 -25.6007 -1.14547 Vertex 1140 -7.19111 -42.3079 -2.54227 Vertex 1141 -7.18781 -26.6616 -1.23954 Vertex 1142 -7.16729 -30.31 -1.77421 Vertex 1143 -7.16181 6.84011 0.359268 Vertex 1144 -7.14481 -45.027 -2.51383 Vertex 1145 -7.14457 -32.0689 -5.459 Vertex 1146 -7.14446 -25.9948 -1.18934 Vertex 1147 -7.14424 5.34338 2.54972 Vertex 1148 -7.14349 13.1701 -3.65718 Vertex 1149 -7.14173 -44.4004 -2.53413 Vertex 1150 -7.13799 -40.9886 -2.19132 Vertex 1151 -7.12399 -23.7202 -6.15428 Vertex 1152 -7.12247 6.24603 -1.71512 Vertex 1153 -7.12112 -22.1146 -6.30932 Vertex 1154 -7.12023 7.79835 -0.347202 Vertex 1155 -7.10766 -26.197 -1.51474 Vertex 1156 -7.09948 -41.8982 0.751682 Vertex 1157 -7.09673 -32.4618 -5.42216 Vertex 1158 -7.07023 -40.6563 -2.82789 Vertex 1159 -7.06988 -35.0264 -4.23679 Vertex 1160 -7.06977 -8.98465 -2.44379 Vertex 1161 -7.06705 -12.9289 -4.08971 Vertex 1162 -7.05698 -33.0271 -5.28221 Vertex 1163 -7.05507 -11.0373 2.1656 Vertex 1164 -7.05203 -35.0229 -3.24765 Vertex 1165 -7.05183 -24.1134 -6.12901 Vertex 1166 -7.05155 -42.1343 1.06901 Vertex 1167 -7.03702 -25.6199 -1.35668 Vertex 1168 -7.03667 -15.3518 -6.24693 Vertex 1169 -7.03628 12.7974 -3.4184 Vertex 1170 -7.0145 9.58546 2.02911 Vertex 1171 -7.00097 -25.8881 -1.38626 Vertex 1172 -6.99251 -32.2059 -1.86392 Vertex 1173 -6.99152 -45.271 -2.34218 Vertex 1174 -6.98442 -13.1871 2.36055 Vertex 1175 -6.98115 -33.4003 -3.24674 Vertex 1176 -6.97899 13.3381 -3.674 Vertex 1177 -6.96941 -23.7437 -5.93948 Vertex 1178 -6.96067 -42.437 1.02659 Vertex 1179 -6.93828 -24.0127 -5.91091 Vertex 1180 -6.93763 -27.5339 -1.35908 Vertex 1181 -6.93323 -30.1706 -6.35018 Vertex 1182 -6.93024 -42.6753 4.42051 Vertex 1183 -6.91636 -41.3607 -0.163031 Vertex 1184 -6.90083 11.1018 1.47198 Vertex 1185 -6.89534 -25.4655 -5.9854 Vertex 1186 -6.89199 5.38138 0.224029 Vertex 1187 -6.88131 -25.8629 -5.92282 Vertex 1188 -6.88025 -41.3396 -3.59481 Vertex 1189 -6.87902 8.8035 0.386456 Vertex 1190 -6.87612 8.19083 0.022637 Vertex 1191 -6.86986 -42.1568 -3.79467 Vertex 1192 -6.86823 6.30921 -1.50033 Vertex 1193 -6.86256 -9.08388 2.00808 Vertex 1194 -6.86083 6.49176 -1.51502 Vertex 1195 -6.86055 2.03823 1.06127 Vertex 1196 -6.85651 4.69352 2.11507 Vertex 1197 -6.85556 13.3582 -3.63173 Vertex 1198 -6.84599 8.19581 -1.28649 Vertex 1199 -6.83329 5.06838 -2.92306 Vertex 1200 -6.82914 -32.0635 -6.53945 Vertex 1201 -6.82564 -43.2598 -3.86012 Vertex 1202 -6.79683 13.4976 -0.269359 Vertex 1203 -6.78568 -27.4902 -1.56294 Vertex 1204 -6.78562 12.5256 0.974956 Vertex 1205 -6.77517 1.21205 0.781024 Vertex 1206 -6.76735 -40.8037 -2.8256 Vertex 1207 -6.76727 8.31049 -3.18002 Vertex 1208 -6.76718 -25.4909 -5.75389 Vertex 1209 -6.76576 -40.8285 -0.850633 Vertex 1210 -6.76116 6.17462 -1.44923 Vertex 1211 -6.7566 7.33689 3.72476 Vertex 1212 -6.73605 -25.7599 -5.72532 Vertex 1213 -6.73365 -40.1227 -3.27867 Vertex 1214 -6.7323 14.1705 -1.95675 Vertex 1215 -6.70624 7.92342 -4.01511 Vertex 1216 -6.7047 3.24627 1.66763 Vertex 1217 -6.70196 -27.4125 -5.75822 Vertex 1218 -6.70125 7.57214 -3.60192 Vertex 1219 -6.69879 6.6225 -1.46944 Vertex 1220 -6.69555 8.75321 -4.53803 Vertex 1221 -6.68899 -33.3956 -4.92897 Vertex 1222 -6.68515 3.24156 1.85189 Vertex 1223 -6.68438 7.35665 -3.20158 Vertex 1224 -6.68011 6.14707 4.02962 Vertex 1225 -6.67727 3.24332 1.76913 Vertex 1226 -6.67587 -33.516 -1.98357 Vertex 1227 -6.67093 -20.0105 2.1196 Vertex 1228 -6.66898 -37.8187 -3.32421 Vertex 1229 -6.66719 -38.6947 -3.32432 Vertex 1230 -6.65892 4.70734 -0.130068 Vertex 1231 -6.65775 5.93729 -3.16594 Vertex 1232 -6.65377 4.53229 1.77602 Vertex 1233 -6.62939 -35.0181 -1.91999 Vertex 1234 -6.61981 -6.3647 -0.69964 Vertex 1235 -6.61716 -34.2156 -3.28398 Vertex 1236 -6.61467 4.52287 2.14453 Vertex 1237 -6.5989 4.52639 1.97901 Vertex 1238 -6.59868 -40.6476 -3.96669 Vertex 1239 -6.58357 -42.1677 -3.62182 Vertex 1240 -6.58061 -44.3777 -3.75025 Vertex 1241 -6.58042 6.04556 -1.37229 Vertex 1242 -6.57996 -41.3874 -3.45416 Vertex 1243 -6.57928 -45.027 -3.75244 Vertex 1244 -6.56011 -43.3325 5.06993 Vertex 1245 -6.55897 -6.28919 -0.115199 Vertex 1246 -6.55853 0.821168 -0.329246 Vertex 1247 -6.54939 -27.3727 -5.55402 Vertex 1248 -6.54444 -37.8216 -4.19285 Vertex 1249 -6.54267 9.7923 0.586904 Vertex 1250 -6.54265 -38.6976 -4.19296 Vertex 1251 -6.54181 -40.339 -1.48537 Vertex 1252 -6.54138 -43.2346 -3.68517 Vertex 1253 -6.53305 11.5787 -4.8895 Vertex 1254 -6.52297 11.6676 -5.05488 Vertex 1255 -6.51848 -6.62575 -2.30468 Vertex 1256 -6.51729 5.23794 3.99098 Vertex 1257 -6.51104 8.60197 -0.420323 Vertex 1258 -6.5054 4.52261 -0.020655 Vertex 1259 -6.50462 -6.34977 -0.408374 Vertex 1260 -6.50445 -21.488 1.17528 Vertex 1261 -6.47728 2.16204 3.06955 Vertex 1262 -6.47605 1.95106 -2.12188 Vertex 1263 -6.46829 -45.271 5.06899 Vertex 1264 -6.45699 6.06565 -1.33002 Vertex 1265 -6.45459 2.29483 -0.139645 Vertex 1266 -6.44519 9.04369 -3.91063 Vertex 1267 -6.44475 -41.0984 -4.3525 Vertex 1268 -6.43659 10.1028 -4.7254 Vertex 1269 -6.43317 3.48004 -0.254737 Vertex 1270 -6.43077 -40.27 -3.27638 Vertex 1271 -6.42047 -45.271 -3.57574 Vertex 1272 -6.42015 1.93037 -2.3071 Vertex 1273 -6.41935 -33.3096 -5.85585 Vertex 1274 -6.41786 1.27036 2.91128 Vertex 1275 -6.416 1.90913 -2.20403 Vertex 1276 -6.41526 -44.3557 5.28254 Vertex 1277 -6.40608 0.818348 -0.855766 Vertex 1278 -6.40123 11.7606 -5.15473 Vertex 1279 -6.39423 11.0366 0.195314 Vertex 1280 -6.39154 -39.8123 -2.07588 Vertex 1281 -6.38792 5.38028 -1.47809 Vertex 1282 -6.38108 11.5532 -4.74029 Vertex 1283 -6.38007 -34.2126 -4.37666 Vertex 1284 -6.37656 1.01116 -2.3548 Vertex 1285 -6.37597 -45.0271 5.24633 Vertex 1286 -6.37416 -19.9011 2.09065 Vertex 1287 -6.36776 2.3148 -0.723716 Vertex 1288 -6.34904 11.5146 -4.02476 Vertex 1289 -6.34225 -0.83396 -0.685627 Vertex 1290 -6.34225 0.584039 -0.685606 Vertex 1291 -6.34091 9.06014 -0.168211 Vertex 1292 -6.33968 -42.1528 -4.60068 Vertex 1293 -6.33793 3.20008 -1.83464 Vertex 1294 -6.33015 -42.3167 3.00224 Vertex 1295 -6.32992 1.38414 -0.288502 Vertex 1296 -6.32948 -3.66996 -0.752633 Vertex 1297 -6.32948 -2.25196 -0.752612 Vertex 1298 -6.32924 4.56952 3.6647 Vertex 1299 -6.32025 -37.8146 -2.12507 Vertex 1300 -6.31846 -38.6906 -2.12518 Vertex 1301 -6.31783 10.5068 0.489034 Vertex 1302 -6.31461 6.74698 -3.23127 Vertex 1303 -6.31436 11.8814 -0.574578 Vertex 1304 -6.30445 -40.5515 -1.59844 Vertex 1305 -6.2984 -40.6954 -3.82604 Vertex 1306 -6.29518 -44.949 -3.59249 Vertex 1307 -6.29485 -44.3273 -3.58288 Vertex 1308 -6.29324 12.1047 -3.23163 Vertex 1309 -6.29287 6.57805 -3.30816 Vertex 1310 -6.29198 9.71615 2.58683 Vertex 1311 -6.28068 -33.0951 -5.82118 Vertex 1312 -6.27652 -43.2598 -4.71564 Vertex 1313 -6.27322 12.3165 -1.57702 Vertex 1314 -6.27143 12.3355 -2.50084 Vertex 1315 -6.27037 3.29993 3.29292 Vertex 1316 -6.25653 -44.9899 -3.48905 Vertex 1317 -6.24917 1.40467 -0.873569 Vertex 1318 -6.24251 10.9961 -4.45964 Vertex 1319 -6.23709 3.16811 -1.96624 Vertex 1320 -6.22696 2.35364 -0.387596 Vertex 1321 -6.22563 4.70799 -1.70401 Vertex 1322 -6.21448 -33.6837 -5.73291 Vertex 1323 -6.20521 11.8687 -5.23514 Vertex 1324 -6.20458 4.44575 3.35634 Vertex 1325 -6.20403 -21.3785 1.13725 Vertex 1326 -6.16935 6.86988 -3.13298 Vertex 1327 -6.16635 -22.2915 -0.400585 Vertex 1328 -6.16136 6.45487 -3.33383 Vertex 1329 -6.15929 -41.1163 -4.17897 Vertex 1330 -6.15861 0.529734 -2.4611 Vertex 1331 -6.15638 9.10637 -1.68459 Vertex 1332 -6.15419 -40.0247 -2.18896 Vertex 1333 -6.15343 9.3637 -2.66082 Vertex 1334 -6.15328 -17.8217 2.94429 Vertex 1335 -6.14736 3.19252 -2.22149 Vertex 1336 -6.14374 11.3101 1.60497 Vertex 1337 -6.14 10.0157 -5.2945 Vertex 1338 -6.12274 4.42306 -1.73434 Vertex 1339 -6.11941 0.620633 2.1421 Vertex 1340 -6.11191 -34.2907 -2.09497 Vertex 1341 -6.10893 10.0212 -5.48149 Vertex 1342 -6.10871 -6.13414 1.51869 Vertex 1343 -6.10574 1.44355 -0.537757 Vertex 1344 -6.10108 -35.0221 -5.50011 Vertex 1345 -6.09971 -20.0135 2.21433 Vertex 1346 -6.0965 4.43579 3.46793 Vertex 1347 -6.08178 11.8888 -5.19287 Vertex 1348 -6.06534 7.54771 -4.33965 Vertex 1349 -6.05492 9.76061 -0.015878 Vertex 1350 -6.05421 -42.1707 -4.42714 Vertex 1351 -6.03363 4.40313 -1.80879 Vertex 1352 -6.03228 -44.3732 -4.67526 Vertex 1353 -6.03095 -45.027 -4.67746 Vertex 1354 -6.0303 7.4215 -4.47569 Vertex 1355 -6.02786 9.41271 -1.21125 Vertex 1356 -6.02166 -19.8563 -8.95316 Vertex 1357 -6.0091 14.7242 -1.76119 Vertex 1358 -6.00741 8.69988 -5.05631 Vertex 1359 -6.0014 -2.25196 -0.657592 Vertex 1360 -6.0014 -0.83396 -0.657572 Vertex 1361 -6.0014 0.584038 -0.657551 Vertex 1362 -6.00009 10.0383 -5.13285 Vertex 1363 -5.9986 4.43593 3.59473 Vertex 1364 -5.99433 9.95947 -4.05303 Vertex 1365 -5.99226 -43.2346 -4.54069 Vertex 1366 -5.99163 -42.5324 2.28711 Vertex 1367 -5.98667 14.9066 -1.79195 Vertex 1368 -5.98105 0.889254 -0.691035 Vertex 1369 -5.97792 4.42493 -2.01676 Vertex 1370 -5.97771 -42.2253 2.36976 Vertex 1371 -5.96962 10.0443 -5.59945 Vertex 1372 -5.96928 8.63516 -5.2306 Vertex 1373 -5.95515 6.33772 -3.33691 Vertex 1374 -5.95223 -34.2095 -4.85423 Vertex 1375 -5.9302 -3.66997 -0.365996 Vertex 1376 -5.92977 -21.4898 1.2608 Vertex 1377 -5.92869 -3.66996 -0.952019 Vertex 1378 -5.92834 -3.66995 -2.37695 Vertex 1379 -5.92834 -2.25195 -2.37693 Vertex 1380 -5.92773 7.64602 -4.20732 Vertex 1381 -5.92537 13.6395 -3.90961 Vertex 1382 -5.92145 -22.3298 -0.028688 Vertex 1383 -5.90908 -21.477 -8.04778 Vertex 1384 -5.88764 7.33415 -4.55093 Vertex 1385 -5.88332 9.87669 -2.86252 Vertex 1386 -5.87664 -22.2386 -0.668153 Vertex 1387 -5.87522 -0.833996 1.29024 Vertex 1388 -5.87522 0.584002 1.29026 Vertex 1389 -5.87513 -0.833947 -2.4805 Vertex 1390 -5.87513 0.584052 -2.48048 Vertex 1391 -5.87158 8.7628 -4.90198 Vertex 1392 -5.86792 -45.2711 -4.58649 Vertex 1393 -5.86702 -33.3909 -5.90739 Vertex 1394 -5.86217 -3.67 1.32148 Vertex 1395 -5.86217 -2.252 1.3215 Vertex 1396 -5.86059 -30.3209 -1.12206 Vertex 1397 -5.83172 6.3578 -3.29464 Vertex 1398 -5.8279 -42.6859 3.88862 Vertex 1399 -5.82766 9.77829 -1.08318 Vertex 1400 -5.82403 8.59933 -5.3379 Vertex 1401 -5.81218 -23.8675 -0.244348 Vertex 1402 -5.80873 10.2514 -0.090255 Vertex 1403 -5.78984 -23.8943 -0.507997 Vertex 1404 -5.78495 -24.2627 -0.299833 Vertex 1405 -5.78207 -32.217 -1.19807 Vertex 1406 -5.77408 -37.8179 -5.31527 Vertex 1407 -5.77229 -38.6939 -5.31538 Vertex 1408 -5.77072 -24.1632 -0.545718 Vertex 1409 -5.75572 -45.271 4.57053 Vertex 1410 -5.75526 10.0795 -5.69875 Vertex 1411 -5.75195 10.6058 -3.85106 Vertex 1412 -5.74685 -44.949 -4.51751 Vertex 1413 -5.74652 -44.3227 -4.50789 Vertex 1414 -5.74572 15.0931 -1.76401 Vertex 1415 -5.73663 -26.6598 -0.434434 Vertex 1416 -5.7354 -30.2473 -6.81719 Vertex 1417 -5.7189 -26.275 -0.507952 Vertex 1418 -5.7043 -22.197 -6.8207 Vertex 1419 -5.70398 -44.99 -4.4998 Vertex 1420 -5.70241 10.0802 -1.16296 Vertex 1421 -5.69107 -3.7011 -0.608438 Vertex 1422 -5.68972 -25.6028 -0.487784 Vertex 1423 -5.68476 10.7311 -0.303523 Vertex 1424 -5.67705 -23.8201 -6.41017 Vertex 1425 -5.6698 7.25433 -4.60571 Vertex 1426 -5.66964 -17.6304 -8.38756 Vertex 1427 -5.66652 -25.6295 -0.751366 Vertex 1428 -5.66641 -24.09 -6.37565 Vertex 1429 -5.66252 -25.998 -0.543273 Vertex 1430 -5.66176 10.2129 -2.69847 Vertex 1431 -5.65774 -26.1975 -0.708506 Vertex 1432 -5.65755 -22.2346 -7.07236 Vertex 1433 -5.65666 -43.3196 4.47069 Vertex 1434 -5.65041 11.0944 -3.51062 Vertex 1435 -5.64741 -25.8985 -0.789087 Vertex 1436 -5.64026 -32.1419 -7.01627 Vertex 1437 -5.63194 -23.794 -6.67481 Vertex 1438 -5.63183 10.0996 -5.65648 Vertex 1439 -5.62406 11.3731 -0.888613 Vertex 1440 -5.62208 -13.4371 -5.64686 Vertex 1441 -5.61914 -24.1909 -6.61883 Vertex 1442 -5.61836 14.0195 0.14405 Vertex 1443 -5.61713 -42.3382 1.599 Vertex 1444 -5.60838 -25.5613 -6.18742 Vertex 1445 -5.60801 11.5428 -2.90787 Vertex 1446 -5.60349 8.57324 -5.4261 Vertex 1447 -5.60321 -42.0311 1.68165 Vertex 1448 -5.60027 -3.66995 -2.28193 Vertex 1449 -5.60027 -2.25195 -2.28191 Vertex 1450 -5.60027 -0.83395 -2.28189 Vertex 1451 -5.60027 0.584049 -2.28187 Vertex 1452 -5.59774 -25.8311 -6.15289 Vertex 1453 -5.59368 -15.6399 3.11395 Vertex 1454 -5.5928 11.7038 -1.65043 Vertex 1455 -5.59144 11.7182 -2.3525 Vertex 1456 -5.58622 -41.8602 1.37018 Vertex 1457 -5.57724 -45.027 4.68656 Vertex 1458 -5.57212 -40.4605 -5.47911 Vertex 1459 -5.56625 13.8445 -0.001265 Vertex 1460 -5.56611 -25.5356 -6.4468 Vertex 1461 -5.56186 5.38039 -3.25141 Vertex 1462 -5.56004 -44.3629 4.66877 Vertex 1463 -5.55324 -27.5357 -0.758933 Vertex 1464 -5.55268 -25.932 -6.39647 Vertex 1465 -5.55256 -22.2926 -0.319962 Vertex 1466 -5.55213 -3.67 1.18242 Vertex 1467 -5.55213 -2.252 1.18245 Vertex 1468 -5.55213 -0.833995 1.18246 Vertex 1469 -5.55213 0.584003 1.18249 Vertex 1470 -5.54637 7.27442 -4.56344 Vertex 1471 -5.54354 12.6985 1.06746 Vertex 1472 -5.53439 -27.4373 -5.9474 Vertex 1473 -5.53364 -27.4993 -1.0136 Vertex 1474 -5.52922 10.4657 -1.63571 Vertex 1475 -5.5227 15.1033 -1.68382 Vertex 1476 -5.52261 -33.5257 -1.39886 Vertex 1477 -5.50332 10.4921 -2.23541 Vertex 1478 -5.49323 -42.8654 2.55611 Vertex 1479 -5.49183 -27.4749 -6.19907 Vertex 1480 -5.48377 -42.6296 3.44 Vertex 1481 -5.48006 8.59332 -5.38383 Vertex 1482 -5.4709 14.2604 0.28676 Vertex 1483 -5.4584 -41.3445 -5.64498 Vertex 1484 -5.44949 -43.2908 -5.88366 Vertex 1485 -5.44897 -9.08938 3.26283 Vertex 1486 -5.39875 -9.56262 -4.59858 Vertex 1487 -5.39807 -33.4598 -6.32609 Vertex 1488 -5.3977 11.4409 1.92598 Vertex 1489 -5.34342 -40.4779 -5.2375 Vertex 1490 -5.34099 -34.2971 -1.71518 Vertex 1491 -5.32684 -33.5901 -6.19562 Vertex 1492 -5.32534 14.7589 -1.74606 Vertex 1493 -5.31601 -42.6252 2.67321 Vertex 1494 -5.30159 -41.3699 0.564513 Vertex 1495 -5.27109 -42.045 -5.7485 Vertex 1496 -5.27059 -45.271 3.60876 Vertex 1497 -5.26009 -34.2542 -5.12619 Vertex 1498 -5.25716 14.3528 0.296421 Vertex 1499 -5.25684 -7.49152 -4.12092 Vertex 1500 -5.24866 -33.3726 -6.10603 Vertex 1501 -5.23547 -44.3783 -5.79089 Vertex 1502 -5.23414 -45.027 -5.79309 Vertex 1503 -5.2297 -41.3618 -5.40337 Vertex 1504 -5.2152 12.9418 1.30627 Vertex 1505 -5.20691 3.27182 -3.51849 Vertex 1506 -5.20261 2.03074 -3.85679 Vertex 1507 -5.19304 -33.9544 -6.04996 Vertex 1508 -5.18213 -15.4691 -6.98895 Vertex 1509 -5.18126 9.74168 2.96163 Vertex 1510 -5.17381 -11.3275 3.17279 Vertex 1511 -5.17206 12.7691 1.16771 Vertex 1512 -5.16693 -9.67127 -4.76261 Vertex 1513 -5.16278 4.70925 -3.60492 Vertex 1514 -5.15434 7.39397 4.47908 Vertex 1515 -5.14865 1.51228 3.34183 Vertex 1516 -5.14812 2.39902 3.53297 Vertex 1517 -5.13382 -44.2869 2.7425 Vertex 1518 -5.13011 6.17703 4.85359 Vertex 1519 -5.11843 -42.8077 1.82997 Vertex 1520 -5.11209 -44.9388 2.74304 Vertex 1521 -5.10928 -43.3669 2.73583 Vertex 1522 -5.10154 -45.2712 -5.67839 Vertex 1523 -5.08428 3.27382 -3.63027 Vertex 1524 -5.07721 -44.3565 3.6494 Vertex 1525 -5.06929 14.0353 0.16341 Vertex 1526 -5.06679 -43.2985 3.65831 Vertex 1527 -5.06304 13.1813 1.4141 Vertex 1528 -5.06023 4.48478 -3.39564 Vertex 1529 -5.05968 1.12404 -3.91608 Vertex 1530 -5.05284 -40.8669 -0.040656 Vertex 1531 -5.04323 -6.28307 2.68218 Vertex 1532 -5.04299 -45.0271 3.62325 Vertex 1533 -5.03416 -44.9304 2.82993 Vertex 1534 -5.03182 -45.271 2.82578 Vertex 1535 -5.02319 -13.1969 3.10061 Vertex 1536 -5.02191 5.24898 4.81932 Vertex 1537 -5.01211 0.729243 3.07933 Vertex 1538 -4.99817 3.2824 -3.74281 Vertex 1539 -4.98869 -9.67015 -5.00347 Vertex 1540 -4.98695 13.9792 -4.02141 Vertex 1541 -4.98507 3.41862 3.87127 Vertex 1542 -4.98179 -7.53615 -4.24421 Vertex 1543 -4.96212 -42.5194 1.60902 Vertex 1544 -4.95323 -11.7906 -5.48958 Vertex 1545 -4.94121 -42.5676 1.94707 Vertex 1546 -4.92916 -45.271 0.012773 Vertex 1547 -4.90062 12.2646 -5.24404 Vertex 1548 -4.8932 0.896571 3.29041 Vertex 1549 -4.89038 4.48092 -3.52633 Vertex 1550 -4.88339 -35.0158 -0.892796 Vertex 1551 -4.86735 14.194 -4.08115 Vertex 1552 -4.86296 13.2774 1.37785 Vertex 1553 -4.85666 -43.3244 2.00333 Vertex 1554 -4.8524 1.59846 3.38413 Vertex 1555 -4.85155 2.48294 3.57381 Vertex 1556 -4.85129 4.58553 4.42604 Vertex 1557 -4.84001 -44.2711 2.01426 Vertex 1558 -4.83678 3.46058 3.89169 Vertex 1559 -4.83434 -43.2387 2.8515 Vertex 1560 -4.8256 -3.67003 2.97433 Vertex 1561 -4.8256 -2.25203 2.97435 Vertex 1562 -4.82477 -44.2895 2.85553 Vertex 1563 -4.82231 -45.271 1.26514 Vertex 1564 -4.82201 4.43822 4.20956 Vertex 1565 -4.81891 -0.834026 2.97957 Vertex 1566 -4.81891 0.583972 2.97959 Vertex 1567 -4.81614 -44.9388 2.01289 Vertex 1568 -4.8129 -45.027 2.85613 Vertex 1569 -4.80725 11.7225 2.32642 Vertex 1570 -4.8025 -7.52484 -4.49775 Vertex 1571 -4.79302 0.586182 -3.85386 Vertex 1572 -4.78895 4.49637 -3.69587 Vertex 1573 -4.77974 -44.4204 0.112964 Vertex 1574 -4.77786 11.5497 2.19269 Vertex 1575 -4.7777 0.890581 3.55255 Vertex 1576 -4.77709 -37.8124 -1.1712 Vertex 1577 -4.7753 -38.6884 -1.17131 Vertex 1578 -4.76989 -45.027 0.088799 Vertex 1579 -4.76249 -3.67002 2.46685 Vertex 1580 -4.75184 -6.32716 2.79893 Vertex 1581 -4.74967 3.41923 4.05976 Vertex 1582 -4.73212 -43.2792 1.476 Vertex 1583 -4.73094 -40.3117 -0.582392 Vertex 1584 -4.72778 -44.9304 1.97401 Vertex 1585 -4.72543 -45.271 1.96986 Vertex 1586 -4.70385 -44.3783 1.44491 Vertex 1587 -4.70377 5.38122 -4.37494 Vertex 1588 -4.68918 13.0009 1.20876 Vertex 1589 -4.68699 -40.5613 -0.806952 Vertex 1590 -4.68298 -39.838 -1.11674 Vertex 1591 -4.67837 1.50848 3.71893 Vertex 1592 -4.67733 2.40024 3.90997 Vertex 1593 -4.66635 -26.8989 -0.309795 Vertex 1594 -4.66416 -35.0191 -6.12998 Vertex 1595 -4.6581 -45.0271 1.4287 Vertex 1596 -4.65329 -41.4931 0.595577 Vertex 1597 -4.64987 -26.399 -0.576924 Vertex 1598 -4.63903 -40.0876 -1.3413 Vertex 1599 -4.63256 11.9667 2.40584 Vertex 1600 -4.62103 14.3687 -3.97251 Vertex 1601 -4.62089 -45.271 -0.75666 Vertex 1602 -4.6084 -26.5058 -0.367619 Vertex 1603 -4.60536 -2.25202 2.72245 Vertex 1604 -4.60536 -0.834022 2.72247 Vertex 1605 -4.60536 0.583976 2.72249 Vertex 1606 -4.58554 -37.8152 -5.88243 Vertex 1607 -4.58375 -38.6912 -5.88253 Vertex 1608 -4.58172 -43.1962 2.11899 Vertex 1609 -4.57663 -6.32902 3.04433 Vertex 1610 -4.54862 -33.7304 -6.32419 Vertex 1611 -4.5456 -40.072 -5.91457 Vertex 1612 -4.53481 -33.5226 -6.19712 Vertex 1613 -4.53096 -44.2737 2.12728 Vertex 1614 -4.51694 -45.027 2.12598 Vertex 1615 -4.50814 -40.1085 -5.58813 Vertex 1616 -4.50055 14.3583 -3.76364 Vertex 1617 -4.47985 -43.2609 0.242264 Vertex 1618 -4.46877 12.058 2.31527 Vertex 1619 -4.467 -45.0273 -6.14099 Vertex 1620 -4.44992 -44.4206 -0.710606 Vertex 1621 -4.44434 -45.027 -0.723774 Vertex 1622 -4.4437 -45.2711 -5.97899 Vertex 1623 -4.44197 -40.9603 -5.99738 Vertex 1624 -4.44005 -41.2177 0.152154 Vertex 1625 -4.43405 -3.68358 2.52432 Vertex 1626 -4.43305 -34.0951 -6.17119 Vertex 1627 -4.41288 -3.66993 -3.30975 Vertex 1628 -4.40451 -40.9968 -5.67094 Vertex 1629 -4.40082 -42.2893 0.277072 Vertex 1630 -4.38725 -0.833926 -3.77448 Vertex 1631 -4.38725 0.584073 -3.77446 Vertex 1632 -4.37255 -44.3802 -6.14642 Vertex 1633 -4.35581 -3.66993 -3.79357 Vertex 1634 -4.35581 -2.25193 -3.79355 Vertex 1635 -4.34243 -3.67003 2.86751 Vertex 1636 -4.33972 14.0406 -3.75157 Vertex 1637 -4.33952 -40.6304 -0.889129 Vertex 1638 -4.33316 -41.9992 -6.18445 Vertex 1639 -4.30907 11.8225 2.11012 Vertex 1640 -4.29247 -34.2941 -1.83348 Vertex 1641 -4.28453 -43.2549 -6.22179 Vertex 1642 -4.24468 -34.3057 -4.9717 Vertex 1643 -4.18597 -2.25193 -3.50615 Vertex 1644 -4.18597 -0.833929 -3.50613 Vertex 1645 -4.18597 0.584069 -3.50611 Vertex 1646 -4.12434 10.3749 -5.79659 Vertex 1647 -4.10725 -3.71535 -3.40232 Vertex 1648 -4.10425 -40.5012 -0.68469 Vertex 1649 -4.10167 -40.0803 -1.4952 Vertex 1650 -4.09808 -43.3268 -0.650871 Vertex 1651 -4.06881 -27.5118 -5.72395 Vertex 1652 -4.02625 -27.5494 -5.97562 Vertex 1653 -3.99554 -30.3357 -6.55192 Vertex 1654 -3.96711 12.9869 -4.95245 Vertex 1655 -3.96221 -42.0763 -0.571919 Vertex 1656 -3.96043 -37.8157 -1.41258 Vertex 1657 -3.95864 -38.6917 -1.41269 Vertex 1658 -3.95429 -25.9126 -5.9099 Vertex 1659 -3.93498 -25.6428 -5.94127 Vertex 1660 -3.93069 -35.0198 -1.15539 Vertex 1661 -3.91627 -26.0134 -6.15422 Vertex 1662 -3.90599 -33.5211 -1.25683 Vertex 1663 -3.90467 -3.66993 -3.61716 Vertex 1664 -3.88568 -25.6172 -6.19991 Vertex 1665 -3.87485 -27.3481 -0.748987 Vertex 1666 -3.8664 -39.9511 -1.29076 Vertex 1667 -3.86232 -32.2322 -6.74542 Vertex 1668 -3.85659 -26.8085 -0.961159 Vertex 1669 -3.84974 -41.0249 -1.62188 Vertex 1670 -3.84438 9.77242 3.41274 Vertex 1671 -3.84228 9.94833 3.54526 Vertex 1672 -3.83364 13.0827 -4.93915 Vertex 1673 -3.83353 -33.539 -6.08826 Vertex 1674 -3.83012 -24.1785 -6.11155 Vertex 1675 -3.8273 -32.2118 -1.24345 Vertex 1676 -3.82627 -26.904 -0.758538 Vertex 1677 -3.81164 4.70619 -4.6926 Vertex 1678 -3.8108 -23.9087 -6.14291 Vertex 1679 -3.79003 -22.2879 -0.503097 Vertex 1680 -3.78988 -24.2794 -6.35547 Vertex 1681 -3.77203 -30.3158 -1.16317 Vertex 1682 -3.76544 -13.7685 -6.78005 Vertex 1683 -3.75965 -23.8831 -6.40122 Vertex 1684 -3.72002 -23.8888 -0.712648 Vertex 1685 -3.71962 -45.0361 -2.35503 Vertex 1686 -3.71774 -40.0178 -5.11773 Vertex 1687 -3.70822 -24.1585 -0.747953 Vertex 1688 -3.70323 10.189 3.55257 Vertex 1689 -3.68882 4.7136 -4.75333 Vertex 1690 -3.67462 -22.311 -0.27351 Vertex 1691 -3.67398 -22.299 -6.45561 Vertex 1692 -3.67097 5.38223 -4.87526 Vertex 1693 -3.6505 8.03122 -5.81563 Vertex 1694 -3.6441 -25.6244 -0.939852 Vertex 1695 -3.63231 -25.8941 -0.975157 Vertex 1696 -3.62736 -22.3367 -6.70651 Vertex 1697 -3.61705 2.41446 -4.51005 Vertex 1698 -3.61548 3.46973 -4.56373 Vertex 1699 -3.61447 -40.8957 -1.41745 Vertex 1700 -3.6139 4.525 -4.61741 Vertex 1701 -3.60737 -23.8486 -0.474778 Vertex 1702 -3.60217 -40.4421 -2.18242 Vertex 1703 -3.59631 2.28685 4.8478 Vertex 1704 -3.59248 -21.6048 -7.39691 Vertex 1705 -3.59208 -33.5417 -5.98628 Vertex 1706 -3.57885 13.295 -4.76504 Vertex 1707 -3.57421 -40.9441 -5.20574 Vertex 1708 -3.56937 -44.3406 -2.3818 Vertex 1709 -3.56584 -34.2877 -2.43025 Vertex 1710 -3.5623 -27.495 -1.18471 Vertex 1711 -3.54276 -24.2452 -0.55738 Vertex 1712 -3.54125 -41.3936 -2.08358 Vertex 1713 -3.53528 10.2807 3.43794 Vertex 1714 -3.53395 19.9427 -0.846049 Vertex 1715 -3.53257 19.9792 -0.681118 Vertex 1716 -3.53173 19.9732 -0.529949 Vertex 1717 -3.53144 19.9245 -0.392541 Vertex 1718 -3.52384 -25.9814 -0.749304 Vertex 1719 -3.52254 19.8646 -0.993864 Vertex 1720 -3.52162 1.25598 4.70198 Vertex 1721 -3.50711 19.8414 -0.28179 Vertex 1722 -3.50641 19.8286 -0.459689 Vertex 1723 -3.50171 20.0627 -0.504071 Vertex 1724 -3.50083 20.0782 -0.680108 Vertex 1725 -3.50044 19.8507 -0.567278 Vertex 1726 -3.49891 -34.0953 -5.99427 Vertex 1727 -3.49834 19.7451 -1.12457 Vertex 1728 -3.49668 -33.7243 -6.11202 Vertex 1729 -3.4966 19.8468 -0.68719 Vertex 1730 -3.49492 19.817 -0.819425 Vertex 1731 -3.49356 19.7715 -0.370696 Vertex 1732 -3.49287 -45.271 -2.27047 Vertex 1733 -3.48872 19.9889 -0.336631 Vertex 1734 -3.4861 20.0354 -0.86474 Vertex 1735 -3.48585 19.7593 -0.933209 Vertex 1736 -3.48418 -25.5847 -0.732716 Vertex 1737 -3.48275 -44.7921 -2.35031 Vertex 1738 -3.47549 -37.8152 -5.27795 Vertex 1739 -3.4737 -38.6912 -5.27822 Vertex 1740 -3.47123 19.9464 -1.03603 Vertex 1741 -3.4695 -6.42517 3.66297 Vertex 1742 -3.46941 19.6737 -1.02854 Vertex 1743 -3.46918 1.49115 -4.4775 Vertex 1744 -3.46772 19.59 -1.21309 Vertex 1745 -3.46189 19.6792 -0.300301 Vertex 1746 -3.45873 19.7236 -0.197696 Vertex 1747 -3.4583 19.8838 -0.206647 Vertex 1748 -3.45685 -12.2219 -6.38517 Vertex 1749 -3.4566 -27.5189 -0.950573 Vertex 1750 -3.45625 19.8111 -1.19399 Vertex 1751 -3.45601 3.40753 4.78684 Vertex 1752 -3.45335 10.0753 2.95122 Vertex 1753 -3.44734 19.5442 -1.09907 Vertex 1754 -3.44686 19.7339 -0.431751 Vertex 1755 -3.44417 -21.5941 -7.10822 Vertex 1756 -3.43405 19.77 -0.584154 Vertex 1757 -3.43376 19.762 -0.68321 Vertex 1758 -3.43317 19.7583 -0.498676 Vertex 1759 -3.43252 19.6357 -1.2974 Vertex 1760 -3.43229 19.7344 -0.795844 Vertex 1761 -3.43067 19.3994 -1.25943 Vertex 1762 -3.42505 -39.9594 -5.26247 Vertex 1763 -3.42503 19.6876 -0.886943 Vertex 1764 -3.42428 19.5706 -0.268911 Vertex 1765 -3.42355 19.6544 -0.368205 Vertex 1766 -3.41963 19.3706 -1.14479 Vertex 1767 -3.41702 19.5928 -0.157033 Vertex 1768 -3.41337 -34.3175 -4.1362 Vertex 1769 -3.41196 19.6215 -0.956503 Vertex 1770 -3.41043 19.7473 -0.114119 Vertex 1771 -3.41036 20.1192 -0.489645 Vertex 1772 -3.40917 0.827907 -4.44123 Vertex 1773 -3.40233 20.1812 -0.468777 Vertex 1774 -3.40174 -41.9441 -2.39168 Vertex 1775 -3.40139 20.1436 -0.684159 Vertex 1776 -3.40004 19.4204 -1.34626 Vertex 1777 -3.39963 3.4923 -4.51652 Vertex 1778 -3.39909 19.5103 -1.01404 Vertex 1779 -3.39569 19.1802 -1.25948 Vertex 1780 -3.39269 -43.2833 -2.35691 Vertex 1781 -3.38825 -19.9735 -8.16416 Vertex 1782 -3.38642 19.354 -1.05955 Vertex 1783 -3.38636 19.1789 -1.15149 Vertex 1784 -3.38301 20.5772 0.01634 Vertex 1785 -3.38231 3.46415 -4.7463 Vertex 1786 -3.38198 19.449 -0.159801 Vertex 1787 -3.38072 19.4455 -0.276528 Vertex 1788 -3.3793 20.1695 -0.505619 Vertex 1789 -3.37826 20.0217 -0.291958 Vertex 1790 -3.37617 19.5784 -0.362015 Vertex 1791 -3.37575 19.3079 -0.838801 Vertex 1792 -3.37404 13.2127 -4.47829 Vertex 1793 -3.3707 19.6031 -0.069744 Vertex 1794 -3.36974 20.6943 -0.262411 Vertex 1795 -3.36948 -7.48904 -5.39941 Vertex 1796 -3.36882 19.1776 -1.34473 Vertex 1797 -3.36829 19.2524 -0.858272 Vertex 1798 -3.3669 -40.3129 -1.97798 Vertex 1799 -3.36621 19.184 -0.896428 Vertex 1800 -3.36593 20.3819 0.265248 Vertex 1801 -3.36424 4.69447 4.91997 Vertex 1802 -3.36297 19.4072 -0.77675 Vertex 1803 -3.36276 18.9325 -1.21324 Vertex 1804 -3.36247 20.2371 -0.514588 Vertex 1805 -3.36127 19.3175 -0.89228 Vertex 1806 -3.36124 19.1818 -1.07244 Vertex 1807 -3.36062 13.1817 -4.29178 Vertex 1808 -3.35924 -37.8189 -1.99606 Vertex 1809 -3.35745 -38.6949 -1.99616 Vertex 1810 -3.35671 10.0236 3.24507 Vertex 1811 -3.35512 20.7659 -0.57664 Vertex 1812 -3.35501 19.1837 -0.923355 Vertex 1813 -3.35486 19.3589 -0.73084 Vertex 1814 -3.3531 0.63495 4.33226 Vertex 1815 -3.35137 20.0952 -0.875498 Vertex 1816 -3.34826 19.4675 -0.724485 Vertex 1817 -3.34802 20.4945 -0.568 Vertex 1818 -3.34778 20.4735 -0.320456 Vertex 1819 -3.34754 18.9691 -1.11917 Vertex 1820 -3.3474 19.3034 -0.75031 Vertex 1821 -3.34714 19.8988 -0.145266 Vertex 1822 -3.34708 19.4244 -0.834293 Vertex 1823 -3.34608 19.6949 -0.775307 Vertex 1824 -3.34418 19.1598 0.524635 Vertex 1825 -3.34404 19.7249 -0.669176 Vertex 1826 -3.34387 19.3142 -0.1896 Vertex 1827 -3.34313 19.8717 -1.23681 Vertex 1828 -3.34174 19.6814 -1.352 Vertex 1829 -3.34076 20.4686 -0.848672 Vertex 1830 -3.34006 19.6494 -0.855067 Vertex 1831 -3.34003 20.4054 -0.106043 Vertex 1832 -3.33952 20.673 0.089084 Vertex 1833 -3.33944 20.2253 -0.55143 Vertex 1834 -3.33915 20.792 -0.926346 Vertex 1835 -3.33912 19.4511 -0.073519 Vertex 1836 -3.33906 19.0298 -0.902933 Vertex 1837 -3.33883 18.9074 -1.29281 Vertex 1838 -3.33861 19.426 -0.677616 Vertex 1839 -3.33803 19.3354 -0.305583 Vertex 1840 -3.33765 20.0603 -0.292809 Vertex 1841 -3.3358 19.3792 0.541624 Vertex 1842 -3.33556 19.5091 -0.782048 Vertex 1843 -3.3355 18.998 0.562747 Vertex 1844 -3.33314 19.185 -0.854631 Vertex 1845 -3.33302 19.4688 -0.364806 Vertex 1846 -3.33259 19.7311 -0.580576 Vertex 1847 -3.33195 20.0045 -1.05971 Vertex 1848 -3.33105 19.1166 -0.892787 Vertex 1849 -3.33103 19.3496 -1.0037 Vertex 1850 -3.33037 7.39789 4.98044 Vertex 1851 -3.33005 19.538 -0.676623 Vertex 1852 -3.32832 19.0231 -0.92752 Vertex 1853 -3.32775 19.4336 -1.40529 Vertex 1854 -3.3267 19.5716 -0.735543 Vertex 1855 -3.32598 19.5884 -0.908457 Vertex 1856 -3.32496 18.7289 -1.14703 Vertex 1857 -3.32357 18.9938 -1.0527 Vertex 1858 -3.32297 19.4885 -0.958001 Vertex 1859 -3.32271 20.279 0.053825 Vertex 1860 -3.32264 19.3375 -0.947944 Vertex 1861 -3.3224 19.6096 0.561051 Vertex 1862 -3.32032 19.189 -1.02231 Vertex 1863 -3.32008 -35.0194 -5.7129 Vertex 1864 -3.31995 20.4445 0.386052 Vertex 1865 -3.31907 19.6195 -0.689574 Vertex 1866 -3.3185 20.1085 0.484315 Vertex 1867 -3.31824 19.1896 -0.972614 Vertex 1868 -3.31734 19.51 -0.62784 Vertex 1869 -3.31699 19.7504 -0.049569 Vertex 1870 -3.31649 20.8115 -0.223744 Vertex 1871 -3.31571 4.52821 4.72588 Vertex 1872 -3.31542 19.6863 -0.449782 Vertex 1873 -3.31291 20.1997 -0.406052 Vertex 1874 -3.3129 19.1524 0.705567 Vertex 1875 -3.31172 19.7136 -0.509505 Vertex 1876 -3.31117 19.6079 -0.634217 Vertex 1877 -3.31047 -45.271 -5.4912 Vertex 1878 -3.31011 20.3775 -1.12855 Vertex 1879 -3.30975 18.8939 0.655959 Vertex 1880 -3.30904 -45.0363 -3.47801 Vertex 1881 -3.30747 19.6573 -0.759032 Vertex 1882 -3.30729 19.6107 -0.8046 Vertex 1883 -3.30647 18.7891 -1.06206 Vertex 1884 -3.30642 19.3036 -0.108023 Vertex 1885 -3.30575 19.1711 -1.40725 Vertex 1886 -3.30563 19.4598 -0.898085 Vertex 1887 -3.30403 17.7149 0.266997 Vertex 1888 -3.30399 19.8511 0.582915 Vertex 1889 -3.30381 19.0042 0.752311 Vertex 1890 -3.30368 19.6885 -0.656154 Vertex 1891 -3.30288 18.8933 -0.894838 Vertex 1892 -3.30268 19.1884 -0.246428 Vertex 1893 -3.30051 19.5509 -0.850304 Vertex 1894 -3.29958 18.6893 -1.22236 Vertex 1895 -3.29622 17.7784 0.390975 Vertex 1896 -3.2962 19.2402 -0.356078 Vertex 1897 -3.29581 20.0943 0.159149 Vertex 1898 -3.29565 20.9068 -0.567151 Vertex 1899 -3.29538 19.358 0.730354 Vertex 1900 -3.29496 18.8487 -1.02179 Vertex 1901 -3.29305 -28.3492 -1.17067 Vertex 1902 -3.29278 19.5869 -0.580943 Vertex 1903 -3.29243 19.0163 -0.9721 Vertex 1904 -3.29215 -9.32543 3.74982 Vertex 1905 -3.29163 19.6771 -0.597264 Vertex 1906 -3.29141 19.3723 -0.390593 Vertex 1907 -3.29085 19.0065 -1.01382 Vertex 1908 -3.29058 -9.97451 -6.16875 Vertex 1909 -3.28659 19.2894 -0.733335 Vertex 1910 -3.28534 19.6015 -0.007041 Vertex 1911 -3.28301 20.7208 -1.26632 Vertex 1912 -3.28227 18.5694 -1.06084 Vertex 1913 -3.28199 19.3934 -0.621834 Vertex 1914 -3.28152 -40.8857 -5.35049 Vertex 1915 -3.27945 20.2049 -0.651923 Vertex 1916 -3.27872 18.7942 -0.825307 Vertex 1917 -3.27859 19.8951 0.213979 Vertex 1918 -3.27743 17.924 0.466778 Vertex 1919 -3.27702 20.959 -0.941135 Vertex 1920 -3.27602 18.737 0.749067 Vertex 1921 -3.27573 18.8938 -1.35787 Vertex 1922 -3.27528 -27.7529 -1.31757 Vertex 1923 -3.27405 20.3417 -0.560044 Vertex 1924 -3.27332 19.4848 -0.570497 Vertex 1925 -3.2727 19.6163 -0.436342 Vertex 1926 -3.27259 19.1606 -0.173256 Vertex 1927 -3.27233 19.1711 -0.837656 Vertex 1928 -3.27175 20.2887 -0.800189 Vertex 1929 -3.27163 19.5872 0.758989 Vertex 1930 -3.27103 19.6813 0.218313 Vertex 1931 -3.27049 18.8595 -0.944758 Vertex 1932 -3.26852 19.5575 -0.540063 Vertex 1933 -3.26813 18.9132 0.870588 Vertex 1934 -3.26718 19.4405 0.222538 Vertex 1935 -3.26702 19.1725 0.226651 Vertex 1936 -3.26634 18.8642 -0.988546 Vertex 1937 -3.26608 20.3483 -0.347785 Vertex 1938 -3.26492 19.6565 -0.536926 Vertex 1939 -3.2634 18.9747 0.248166 Vertex 1940 -3.26315 18.6391 -0.98018 Vertex 1941 -3.26264 18.4369 -0.997359 Vertex 1942 -3.26057 18.148 -0.76292 Vertex 1943 -3.26029 18.0805 -0.543494 Vertex 1944 -3.25985 20.1018 -0.226386 Vertex 1945 -3.25914 17.9817 0.180115 Vertex 1946 -3.25808 18.3157 -0.896969 Vertex 1947 -3.25803 18.0291 -0.702485 Vertex 1948 -3.25776 20.1259 0.66716 Vertex 1949 -3.25743 18.1049 0.606018 Vertex 1950 -3.25733 -44.3833 -2.26356 Vertex 1951 -3.25732 -3.67004 3.46626 Vertex 1952 -3.2563 18.8468 0.287083 Vertex 1953 -3.25607 20.2211 -1.40764 Vertex 1954 -3.256 -45.027 -2.26575 Vertex 1955 -3.25578 19.092 -0.303671 Vertex 1956 -3.25524 18.6909 -0.749573 Vertex 1957 -3.25498 20.1885 -1.04436 Vertex 1958 -3.2546 18.2329 -0.732831 Vertex 1959 -3.25452 19.0126 -0.883095 Vertex 1960 -3.25432 18.1654 -0.513402 Vertex 1961 -3.25322 -34.289 -3.32258 Vertex 1962 -3.25278 18.3215 -0.844462 Vertex 1963 -3.25243 18.7192 -0.890591 Vertex 1964 -3.25221 -27.8381 -1.14416 Vertex 1965 -3.25217 19.4519 -0.01768 Vertex 1966 -3.2521 19.3208 -0.677197 Vertex 1967 -3.25136 19.289 -0.439375 Vertex 1968 -3.25132 18.7033 -0.94206 Vertex 1969 -3.25106 18.5234 -1.13337 Vertex 1970 -3.25101 19.8722 -1.26568 Vertex 1971 -3.25073 19.1611 -0.407207 Vertex 1972 -3.25061 17.6113 0.31685 Vertex 1973 -3.24785 20.3084 -0.163413 Vertex 1974 -3.2475 19.067 -0.231317 Vertex 1975 -3.24729 18.9352 -0.847878 Vertex 1976 -3.24696 18.027 -0.46577 Vertex 1977 -3.24692 18.7059 0.331665 Vertex 1978 -3.24686 19.0948 -0.870731 Vertex 1979 -3.24669 18.3338 -0.761522 Vertex 1980 -3.24656 -21.4863 0.859684 Vertex 1981 -3.24609 18.0934 0.211268 Vertex 1982 -3.24469 17.9756 -0.624762 Vertex 1983 -3.24321 18.5113 -0.918858 Vertex 1984 -3.24165 19.8402 0.791473 Vertex 1985 -3.24146 18.46 -0.787334 Vertex 1986 -3.2411 17.6776 0.455791 Vertex 1987 -3.24078 18.6121 -0.823511 Vertex 1988 -3.23893 18.2522 0.72887 Vertex 1989 -3.23886 19.5187 -0.424636 Vertex 1990 -3.23792 18.517 -0.866352 Vertex 1991 -3.23756 18.2067 0.261209 Vertex 1992 -3.23752 18.4455 -0.722854 Vertex 1993 -3.23657 19.6928 -1.34058 Vertex 1994 -3.2365 19.6273 -0.492515 Vertex 1995 -3.23592 12.9219 -5.0927 Vertex 1996 -3.23554 18.5382 -0.743518 Vertex 1997 -3.23526 18.5521 0.381914 Vertex 1998 -3.23431 18.5274 0.842066 Vertex 1999 -3.23413 18.3686 -0.582123 Vertex 2000 -3.23318 -20.0215 1.78738 Vertex 2001 -3.23244 18.5834 -0.667633 Vertex 2002 -3.23233 18.3163 0.316394 Vertex 2003 -3.23115 19.4294 -1.38958 Vertex 2004 -3.23082 18.1486 -0.399648 Vertex 2005 -3.2304 18.4222 0.376823 Vertex 2006 -3.23032 18.6704 -1.28805 Vertex 2007 -3.2301 20.2183 -0.046999 Vertex 2008 -3.22858 20.1523 -0.853471 Vertex 2009 -3.22837 18.4427 -0.629277 Vertex 2010 -3.22673 20.0038 -1.07902 Vertex 2011 -3.22661 17.9887 -0.775618 Vertex 2012 -3.2257 19.3037 -0.060853 Vertex 2013 -3.22517 18.8626 -0.765079 Vertex 2014 -3.22462 18.3757 -1.03901 Vertex 2015 -3.22407 -41.3635 -1.97742 Vertex 2016 -3.22373 20.0411 -1.29254 Vertex 2017 -3.22348 18.5006 -0.627533 Vertex 2018 -3.22338 17.8191 0.617218 Vertex 2019 -3.22269 6.2201 5.13146 Vertex 2020 -3.22244 -19.9758 -7.85713 Vertex 2021 -3.22195 18.3658 0.835335 Vertex 2022 -3.22156 18.7472 0.985109 Vertex 2023 -3.22092 18.1171 -0.85148 Vertex 2024 -3.22026 18.2461 -0.939277 Vertex 2025 -3.21729 -41.1654 -3.02543 Vertex 2026 -3.21461 19.1638 -1.3917 Vertex 2027 -3.21291 19.9002 -0.072314 Vertex 2028 -3.21285 20.078 0.001454 Vertex 2029 -3.21064 18.3519 -0.468369 Vertex 2030 -3.20956 20.6929 0.112191 Vertex 2031 -3.20906 17.7053 0.200731 Vertex 2032 -3.20811 19.216 -0.497212 Vertex 2033 -3.20806 -0.834043 3.86842 Vertex 2034 -3.20806 0.583956 3.86844 Vertex 2035 -3.20736 18.0362 -0.352014 Vertex 2036 -3.20731 19.5357 -0.473559 Vertex 2037 -3.20723 17.934 -0.452032 Vertex 2038 -3.20594 19.1567 -0.136562 Vertex 2039 -3.20401 19.4249 -0.444627 Vertex 2040 -3.20399 20.0291 -0.111514 Vertex 2041 -3.20382 17.9361 -0.626065 Vertex 2042 -3.20358 18.7692 -0.68319 Vertex 2043 -3.20317 19.025 -0.361331 Vertex 2044 -3.20227 -44.3414 -3.45309 Vertex 2045 -3.20162 19.0982 -0.458968 Vertex 2046 -3.19832 17.9181 -0.685209 Vertex 2047 -3.19798 19.4625 -0.504596 Vertex 2048 -3.19797 -35.0239 -1.79187 Vertex 2049 -3.19744 18.0359 0.80113 Vertex 2050 -3.19365 19.9083 0.03575 Vertex 2051 -3.19313 18.998 -0.291927 Vertex 2052 -3.19121 19.7353 0.007712 Vertex 2053 -3.18801 20.8248 -0.204453 Vertex 2054 -3.18787 19.0612 -0.199863 Vertex 2055 -3.18714 18.4237 -0.448687 Vertex 2056 -3.18696 18.896 -1.34692 Vertex 2057 -3.18671 20.5523 -1.59655 Vertex 2058 -3.18535 2.45959 -4.41563 Vertex 2059 -3.18476 20.4668 0.416238 Vertex 2060 -3.18438 -45.0273 -5.58524 Vertex 2061 -3.18394 18.5499 -0.529639 Vertex 2062 -3.18252 18.6549 -0.602216 Vertex 2063 -3.18204 18.5206 -0.488304 Vertex 2064 -3.17839 19.3697 -0.55714 Vertex 2065 -3.1782 20.2835 -0.476055 Vertex 2066 -3.17651 -17.7867 -7.41635 Vertex 2067 -3.17597 18.5818 -0.551032 Vertex 2068 -3.17509 19.9639 -1.64774 Vertex 2069 -3.17316 19.1503 0.769449 Vertex 2070 -3.17251 19.7092 0.055891 Vertex 2071 -3.1722 18.2046 0.957628 Vertex 2072 -3.1715 19.8073 -1.48368 Vertex 2073 -3.17036 17.9411 -0.343169 Vertex 2074 -3.16961 20.9171 -0.53953 Vertex 2075 -3.16951 18.5009 -1.19777 Vertex 2076 -3.16834 18.993 0.816863 Vertex 2077 -3.16818 19.335 -0.49632 Vertex 2078 -3.16668 19.5649 0.044491 Vertex 2079 -3.16636 17.8945 -0.453336 Vertex 2080 -3.16616 17.9344 0.125657 Vertex 2081 -3.16602 5.30195 5.10544 Vertex 2082 -3.16509 -40.188 -3.96481 Vertex 2083 -3.16443 17.9025 -0.795744 Vertex 2084 -3.16439 20.0504 -1.02667 Vertex 2085 -3.16409 18.5059 1.09587 Vertex 2086 -3.16163 19.1532 -0.564104 Vertex 2087 -3.16062 18.1659 -0.277815 Vertex 2088 -3.15976 18.571 0.142244 Vertex 2089 -3.15934 19.4677 0.073503 Vertex 2090 -3.15831 18.4531 0.133459 Vertex 2091 -3.15765 13.124 -4.85645 Vertex 2092 -3.15719 18.7013 0.122821 Vertex 2093 -3.15689 18.9372 -0.267693 Vertex 2094 -3.15481 18.8353 0.108866 Vertex 2095 -3.15464 18.1562 0.074372 Vertex 2096 -3.15438 20.9696 -0.893036 Vertex 2097 -3.15413 19.1837 0.08859 Vertex 2098 -3.15385 -6.42699 3.65097 Vertex 2099 -3.15284 18.3476 0.096469 Vertex 2100 -3.15262 18.9729 0.100377 Vertex 2101 -3.15162 18.2487 0.076774 Vertex 2102 -3.15071 2.4033 -4.8752 Vertex 2103 -3.14764 18.3251 1.08671 Vertex 2104 -3.14592 19.3769 0.788728 Vertex 2105 -3.14439 18.7992 -0.330651 Vertex 2106 -3.14438 17.8223 -0.689909 Vertex 2107 -3.14415 18.679 -1.2805 Vertex 2108 -3.14368 18.7249 -0.307003 Vertex 2109 -3.14362 18.87 -0.361994 Vertex 2110 -3.14229 18.05 -0.902461 Vertex 2111 -3.142 18.9441 -0.422569 Vertex 2112 -3.1419 21.1066 -1.38976 Vertex 2113 -3.14027 20.2692 -0.363819 Vertex 2114 -3.13989 18.0515 -0.235074 Vertex 2115 -3.13955 -3.67004 3.90811 Vertex 2116 -3.13955 -2.25204 3.90813 Vertex 2117 -3.13953 19.0215 -0.512374 Vertex 2118 -3.13932 19.3888 0.038026 Vertex 2119 -3.13713 18.3431 -1.10343 Vertex 2120 -3.13713 18.2378 -0.258133 Vertex 2121 -3.13682 18.4361 -0.32092 Vertex 2122 -3.13502 20.2618 -0.583401 Vertex 2123 -3.13501 20.7112 0.131225 Vertex 2124 -3.13436 19.2965 -0.613106 Vertex 2125 -3.13321 20.3074 -0.552774 Vertex 2126 -3.13319 18.1969 -1.00502 Vertex 2127 -3.13215 19.8485 -1.19474 Vertex 2128 -3.13213 20.2523 -0.780897 Vertex 2129 -3.13172 18.5329 -0.360538 Vertex 2130 -3.13146 18.9049 0.930968 Vertex 2131 -3.12966 21.0254 -1.58801 Vertex 2132 -3.12791 19.2566 -0.573691 Vertex 2133 -3.12721 -33.5402 -5.6836 Vertex 2134 -3.12541 19.0865 -0.592485 Vertex 2135 -3.12505 19.1965 -0.79037 Vertex 2136 -3.12466 20.3187 -0.344397 Vertex 2137 -3.12401 18.9868 -0.147434 Vertex 2138 -3.12241 18.8407 -0.209509 Vertex 2139 -3.12214 18.584 -0.315212 Vertex 2140 -3.12112 19.2284 0.004268 Vertex 2141 -3.11872 19.6142 0.812128 Vertex 2142 -3.11774 20.2068 -0.798657 Vertex 2143 -3.11763 20.1539 -1.01373 Vertex 2144 -3.11703 19.6697 -1.26314 Vertex 2145 -3.11672 18.6252 -0.416603 Vertex 2146 -3.11646 17.5608 0.317309 Vertex 2147 -3.1162 13.1539 -4.59755 Vertex 2148 -3.11588 20.7278 0.146185 Vertex 2149 -3.11564 -44.7921 -3.4216 Vertex 2150 -3.11535 20.84 -0.18779 Vertex 2151 -3.11359 20.1466 0.707685 Vertex 2152 -3.1134 18.6554 -0.462611 Vertex 2153 -3.11325 17.8763 -0.352182 Vertex 2154 -3.11282 -44.4287 -5.5505 Vertex 2155 -3.11209 19.0839 -0.05678 Vertex 2156 -3.11047 20.2173 -0.176757 Vertex 2157 -3.11023 19.4077 -1.29914 Vertex 2158 -3.11 21.4149 -0.208897 Vertex 2159 -3.10835 17.9522 -0.236016 Vertex 2160 -3.10714 18.6763 -0.371279 Vertex 2161 -3.10651 20.4864 0.438927 Vertex 2162 -3.10647 20.2862 -0.155766 Vertex 2163 -3.10619 19.0521 -0.842463 Vertex 2164 -3.10371 18.9852 -0.803877 Vertex 2165 -3.10355 17.6325 0.486175 Vertex 2166 -3.10299 20.9083 -0.347762 Vertex 2167 -3.10291 1.53595 -4.34686 Vertex 2168 -3.10209 21.3375 -0.113226 Vertex 2169 -3.10022 18.7385 -0.396281 Vertex 2170 -3.10017 17.6022 0.205911 Vertex 2171 -3.09923 19.1249 -0.825664 Vertex 2172 -3.09889 20.9321 -0.521924 Vertex 2173 -3.09853 20.8571 -0.173755 Vertex 2174 -3.09828 19.487 -1.61777 Vertex 2175 -3.09712 18.7217 -0.184613 Vertex 2176 -3.09539 19.1559 -1.29808 Vertex 2177 -3.09507 21.4832 -0.392774 Vertex 2178 -3.09498 18.689 -0.493349 Vertex 2179 -3.09352 -21.6238 -7.0905 Vertex 2180 -3.09316 20.8161 0.22009 Vertex 2181 -3.0918 18.9242 -0.709901 Vertex 2182 -3.09159 21.0947 -0.295767 Vertex 2183 -3.09158 19.8624 0.839648 Vertex 2184 -3.09056 19.2278 -0.734232 Vertex 2185 -3.09043 19.1536 0.814444 Vertex 2186 -3.0897 20.0123 -1.25126 Vertex 2187 -3.08931 20.9741 -0.086473 Vertex 2188 -3.08885 -41.932 -2.26927 Vertex 2189 -3.08879 21.067 -0.258426 Vertex 2190 -3.08812 18.9949 0.861272 Vertex 2191 -3.08811 20.1998 -0.037223 Vertex 2192 -3.0877 21.1912 0.074053 Vertex 2193 -3.08757 20.9285 -0.342364 Vertex 2194 -3.08743 20.1078 -1.00783 Vertex 2195 -3.08732 20.9256 -0.334188 Vertex 2196 -3.08689 19.8993 -1.17151 Vertex 2197 -3.08674 -11.2865 3.18666 Vertex 2198 -3.08617 18.5127 -1.19242 Vertex 2199 -3.08583 18.8468 -0.624364 Vertex 2200 -3.08579 18.7528 -0.547267 Vertex 2201 -3.08547 12.6564 -5.16987 Vertex 2202 -3.08536 20.9846 -0.863001 Vertex 2203 -3.08522 20.5033 0.454121 Vertex 2204 -3.0842 18.7851 -0.430336 Vertex 2205 -3.08393 17.7788 0.662587 Vertex 2206 -3.08391 17.7858 -0.657132 Vertex 2207 -3.08354 18.7364 1.03979 Vertex 2208 -3.08347 20.952 -0.514334 Vertex 2209 -3.08346 17.8689 -0.470985 Vertex 2210 -3.08322 19.1899 -0.676738 Vertex 2211 -3.08229 -45.2711 -3.39345 Vertex 2212 -3.0822 21.1357 -0.471285 Vertex 2213 -3.081 18.5802 -0.193003 Vertex 2214 -3.08033 -43.2994 -2.23312 Vertex 2215 -3.07796 17.8509 -0.530128 Vertex 2216 -3.07499 21.0171 -1.0373 Vertex 2217 -3.07251 18.9141 -1.25996 Vertex 2218 -3.07242 18.4207 -0.178118 Vertex 2219 -3.07229 18.8492 -0.487384 Vertex 2220 -3.07138 18.243 -0.139958 Vertex 2221 -3.06995 21.0038 -0.851028 Vertex 2222 -3.06961 20.0594 0.01123 Vertex 2223 -3.06827 17.8443 -0.745797 Vertex 2224 -3.06719 19.6061 -1.84885 Vertex 2225 -3.06685 20.9759 0.35294 Vertex 2226 -3.06623 20.1677 -0.058187 Vertex 2227 -3.06468 19.1622 0.84055 Vertex 2228 -3.06448 18.9309 -0.567425 Vertex 2229 -3.06376 -0.833912 -4.30515 Vertex 2230 -3.06376 0.584086 -4.30513 Vertex 2231 -3.06315 19.0097 0.885542 Vertex 2232 -3.06121 -41.0922 -4.23682 Vertex 2233 -3.06059 21.1898 -0.784979 Vertex 2234 -3.05986 -41.9279 -5.5235 Vertex 2235 -3.05965 17.8762 -0.259146 Vertex 2236 -3.05958 21.0361 -1.02313 Vertex 2237 -3.05931 19.3858 0.83067 Vertex 2238 -3.05761 17.9996 0.846544 Vertex 2239 -3.0573 21.5425 -0.664855 Vertex 2240 -3.05645 21.0457 -1.0415 Vertex 2241 -3.05629 -15.6303 2.61602 Vertex 2242 -3.0556 19.8879 0.012211 Vertex 2243 -3.05553 18.1252 -0.101187 Vertex 2244 -3.05459 18.3524 -1.09866 Vertex 2245 -3.0526 21.7261 -0.005925 Vertex 2246 -3.05243 20.264 -1.91928 Vertex 2247 -3.0524 18.9096 0.971156 Vertex 2248 -3.05217 20.5803 0.5174 Vertex 2249 -3.04996 -3.66991 -4.3096 Vertex 2250 -3.04996 -2.25192 -4.30958 Vertex 2251 -3.04941 18.1979 -0.999199 Vertex 2252 -3.04918 19.8906 0.048231 Vertex 2253 -3.04862 21.6112 0.133394 Vertex 2254 -3.04788 19.1213 -0.7232 Vertex 2255 -3.04768 18.998 -0.642656 Vertex 2256 -3.0471 20.0274 -0.009733 Vertex 2257 -3.04555 17.491 0.22268 Vertex 2258 -3.04546 18.8461 1.51862 Vertex 2259 -3.04526 18.7078 1.69045 Vertex 2260 -3.04428 17.6561 0.178052 Vertex 2261 -3.04423 17.5233 0.321667 Vertex 2262 -3.04409 19.965 -1.21092 Vertex 2263 -3.04279 18.8948 1.54046 Vertex 2264 -3.04192 21.2211 -0.986897 Vertex 2265 -3.04164 19.7939 -1.4271 Vertex 2266 -3.04105 18.7151 -1.1997 Vertex 2267 -3.04006 -17.8602 -7.10841 Vertex 2268 -3.03847 19.1167 0.909688 Vertex 2269 -3.038 17.9734 -0.149976 Vertex 2270 -3.03605 17.8417 -0.379054 Vertex 2271 -3.03557 19.3847 0.85618 Vertex 2272 -3.03547 17.9849 -0.85095 Vertex 2273 -3.0352 17.8887 0.110841 Vertex 2274 -3.03429 18.8631 -0.032859 Vertex 2275 -3.03385 21.4336 0.329014 Vertex 2276 -3.03307 19.702 0.057723 Vertex 2277 -3.03226 17.4655 0.224608 Vertex 2278 -3.03212 18.1733 1.00267 Vertex 2279 -3.0312 21.8327 -0.212922 Vertex 2280 -3.03101 19.6235 0.851017 Vertex 2281 -3.03096 18.9274 0.991155 Vertex 2282 -3.03091 18.6264 1.62458 Vertex 2283 -3.03086 19.0421 -0.79213 Vertex 2284 -3.03079 18.7775 1.47372 Vertex 2285 -3.03046 18.8005 1.74942 Vertex 2286 -3.02986 20.1658 0.735316 Vertex 2287 -3.0293 21.1144 -1.31737 Vertex 2288 -3.02835 19.624 -1.23287 Vertex 2289 -3.02807 17.5017 0.210685 Vertex 2290 -3.02684 19.6933 0.073783 Vertex 2291 -3.02671 -10.0006 3.60659 Vertex 2292 -3.02623 17.4988 0.329922 Vertex 2293 -3.02618 21.2296 -1.07704 Vertex 2294 -3.02554 17.5984 0.507645 Vertex 2295 -3.02461 18.4877 1.14334 Vertex 2296 -3.02425 19.1102 -0.773111 Vertex 2297 -3.02404 18.9869 -0.692567 Vertex 2298 -3.02241 17.4754 0.204259 Vertex 2299 -3.02196 19.7412 -1.29007 Vertex 2300 -3.02111 17.8818 -0.192219 Vertex 2301 -3.02108 18.5796 1.89687 Vertex 2302 -3.02086 19.3628 -1.26237 Vertex 2303 -3.0201 18.9725 1.56106 Vertex 2304 -3.01929 -43.2789 -5.5188 Vertex 2305 -3.01793 21.5752 -0.917749 Vertex 2306 -3.01759 17.8144 -0.497353 Vertex 2307 -3.01607 17.0405 0.543803 Vertex 2308 -3.01588 17.2795 0.261742 Vertex 2309 -3.01575 12.9848 -4.37449 Vertex 2310 -3.01565 17.3379 0.403967 Vertex 2311 -3.01503 -41.9203 -3.44988 Vertex 2312 -3.01473 19.4933 0.084852 Vertex 2313 -3.01466 18.0857 -0.905655 Vertex 2314 -3.01409 19.3158 0.933712 Vertex 2315 -3.01286 16.9895 0.350843 Vertex 2316 -3.01229 19.4609 0.094523 Vertex 2317 -3.01179 19.0173 1.02186 Vertex 2318 -3.00904 -3.67196 3.38582 Vertex 2319 -3.00851 19.6151 0.875653 Vertex 2320 -3.00829 21.193 0.580934 Vertex 2321 -3.00781 18.5842 0.123053 Vertex 2322 -3.00747 18.3 1.13096 Vertex 2323 -3.00738 20.7174 0.628767 Vertex 2324 -3.00737 18.4725 1.78906 Vertex 2325 -3.00682 18.7231 0.122532 Vertex 2326 -3.00655 20.1836 0.750053 Vertex 2327 -3.00575 18.7399 1.07631 Vertex 2328 -3.00573 17.5752 0.5202 Vertex 2329 -3.0057 18.4586 0.105242 Vertex 2330 -3.00553 19.8668 0.87548 Vertex 2331 -3.00552 19.1933 0.110452 Vertex 2332 -3.00528 18.8593 0.121307 Vertex 2333 -3.00506 1.47742 -4.84007 Vertex 2334 -3.00356 17.7473 0.692657 Vertex 2335 -3.00318 18.9928 0.11938 Vertex 2336 -3.0031 18.1124 0.056089 Vertex 2337 -3.00247 19.0344 1.29032 Vertex 2338 -3.00228 17.3486 0.191148 Vertex 2339 -3.00104 18.5588 -1.11732 Vertex 2340 -3.00073 17.4969 0.154635 Vertex 2341 -3.00058 19.2617 0.093597 Vertex 2342 -3.00055 19.16 -1.69615 Vertex 2343 -3.00049 -34.093 -5.66988 Vertex 2344 -3.00049 18.3462 0.069096 Vertex 2345 -3.00037 19.6402 -1.2806 Vertex 2346 -2.99979 19.0831 1.31216 Vertex 2347 -2.99963 18.2308 0.052713 Vertex 2348 -2.99791 18.7249 1.37258 Vertex 2349 -2.9967 17.5966 0.164886 Vertex 2350 -2.99623 19.8111 -1.35861 Vertex 2351 -2.99488 19.1793 1.06327 Vertex 2352 -2.99451 -2.25204 3.6113 Vertex 2353 -2.99451 -0.834039 3.61132 Vertex 2354 -2.99451 0.583959 3.61134 Vertex 2355 -2.99399 17.8235 -0.304463 Vertex 2356 -2.99361 19.1663 -1.25406 Vertex 2357 -2.99268 19.078 0.087345 Vertex 2358 -2.99259 20.871 -1.91213 Vertex 2359 -2.99104 18.9422 0.066092 Vertex 2360 -2.99044 -17.7994 2.44164 Vertex 2361 -2.98949 18.9824 1.20956 Vertex 2362 -2.98818 18.7575 1.09467 Vertex 2363 -2.98773 19.5267 0.965002 Vertex 2364 -2.9868 18.7299 0.020054 Vertex 2365 -2.9865 18.9046 1.80149 Vertex 2366 -2.98542 -33.7225 -5.77918 Vertex 2367 -2.98469 18.7115 2.00828 Vertex 2368 -2.9844 21.931 -0.487595 Vertex 2369 -2.98362 19.9973 0.893347 Vertex 2370 -2.98351 19.8535 0.898968 Vertex 2371 -2.98329 19.1091 1.54664 Vertex 2372 -2.98276 18.8383 1.13909 Vertex 2373 -2.98227 17.7247 0.707429 Vertex 2374 -2.98175 -9.33591 3.68109 Vertex 2375 -2.98155 18.5873 0.011305 Vertex 2376 -2.9815 17.4301 0.593601 Vertex 2377 -2.97987 16.6937 0.494729 Vertex 2378 -2.97836 16.8163 0.670118 Vertex 2379 -2.97707 18.4478 0.001382 Vertex 2380 -2.97699 18.4035 -1.02469 Vertex 2381 -2.97696 21.5814 -1.15145 Vertex 2382 -2.97664 17.97 0.876703 Vertex 2383 -2.97656 18.4839 1.51494 Vertex 2384 -2.97448 18.4791 2.14688 Vertex 2385 -2.97361 0.793936 -4.64973 Vertex 2386 -2.97344 19.4988 -1.54124 Vertex 2387 -2.97334 18.3113 -0.009712 Vertex 2388 -2.97191 18.3628 2.02422 Vertex 2389 -2.97176 18.9381 -1.21424 Vertex 2390 -2.97161 17.2347 0.13361 Vertex 2391 -2.96892 18.2493 -0.921801 Vertex 2392 -2.96866 19.3584 1.11906 Vertex 2393 -2.96856 -13.0955 2.71639 Vertex 2394 -2.96836 17.8035 -0.418505 Vertex 2395 -2.9678 19.9808 0.913021 Vertex 2396 -2.96719 19.2192 1.31294 Vertex 2397 -2.96713 -43.2615 -3.42964 Vertex 2398 -2.96707 17.53 0.075737 Vertex 2399 -2.96636 20.2669 0.805459 Vertex 2400 -2.96542 21.1309 -1.27932 Vertex 2401 -2.96526 20.0148 0.904617 Vertex 2402 -2.96136 19.9968 0.91781 Vertex 2403 -2.95985 18.0827 0.010697 Vertex 2404 -2.95955 16.9297 0.215619 Vertex 2405 -2.95938 19.7494 1.00356 Vertex 2406 -2.95899 18.0793 0.972486 Vertex 2407 -2.9576 21.2489 -1.24759 Vertex 2408 -2.95715 17.7721 -0.554103 Vertex 2409 -2.95642 17.1629 0.727849 Vertex 2410 -2.95614 18.2141 0.004432 Vertex 2411 -2.95455 17.9472 0.891605 Vertex 2412 -2.9543 19.2482 -1.95203 Vertex 2413 -2.95359 17.7758 0.085283 Vertex 2414 -2.95137 18.5798 1.26137 Vertex 2415 -2.95105 18.3322 1.65031 Vertex 2416 -2.95036 18.1485 1.03412 Vertex 2417 -2.95027 21.1561 -1.27562 Vertex 2418 -2.94834 20.9252 0.827575 Vertex 2419 -2.94818 18.4857 1.17674 Vertex 2420 -2.94759 1.01701 -4.2787 Vertex 2421 -2.9466 17.585 0.780746 Vertex 2422 -2.94572 18.7428 -1.15232 Vertex 2423 -2.94384 17.7423 -0.237242 Vertex 2424 -2.94257 17.8689 -0.087485 Vertex 2425 -2.94146 19.8897 1.0296 Vertex 2426 -2.94044 -3.66992 -3.99761 Vertex 2427 -2.94044 -2.25192 -3.99758 Vertex 2428 -2.94044 -0.833917 -3.99756 Vertex 2429 -2.94044 0.584082 -3.99754 Vertex 2430 -2.93852 17.8141 -0.625776 Vertex 2431 -2.93788 19.3909 -1.27298 Vertex 2432 -2.9365 18.0563 0.987455 Vertex 2433 -2.93516 18.0614 0.991254 Vertex 2434 -2.93479 18.5 1.19609 Vertex 2435 -2.9346 17.7769 -0.348415 Vertex 2436 -2.93396 19.9478 1.04313 Vertex 2437 -2.93313 19.5544 1.18924 Vertex 2438 -2.93273 18.1372 -0.826546 Vertex 2439 -2.93158 19.2938 1.58703 Vertex 2440 -2.93111 19.0523 1.83428 Vertex 2441 -2.93055 19.5285 -1.46277 Vertex 2442 -2.92894 17.3663 -2.05436 Vertex 2443 -2.92852 20.0102 1.02479 Vertex 2444 -2.9284 21.8883 0.481434 Vertex 2445 -2.92775 21.7013 0.678409 Vertex 2446 -2.9269 18.13 1.05199 Vertex 2447 -2.92603 18.2775 1.16111 Vertex 2448 -2.92584 17.4648 -0.014704 Vertex 2449 -2.92546 18.2165 1.91355 Vertex 2450 -2.92514 20.0768 0.974591 Vertex 2451 -2.92454 18.2971 2.33005 Vertex 2452 -2.92386 19.4025 1.38373 Vertex 2453 -2.92227 18.3892 1.36952 Vertex 2454 -2.92058 18.6233 2.2847 Vertex 2455 -2.92002 16.5905 0.32074 Vertex 2456 -2.91941 22.0283 0.313151 Vertex 2457 -2.91747 21.4673 0.904073 Vertex 2458 -2.91551 18.5805 -1.0683 Vertex 2459 -2.91544 16.9581 0.846905 Vertex 2460 -2.91353 17.8028 0.965402 Vertex 2461 -2.9128 -45.2821 -4.66994 Vertex 2462 -2.91038 17.7618 -0.470535 Vertex 2463 -2.9099 19.4071 -1.32071 Vertex 2464 -2.90978 18.3474 1.23268 Vertex 2465 -2.9093 20.4156 0.901536 Vertex 2466 -2.90928 19.195 -1.25964 Vertex 2467 -2.90896 19.4276 -1.4533 Vertex 2468 -2.90819 21.9942 -0.810047 Vertex 2469 -2.90583 17.1618 -0.012849 Vertex 2470 -2.90548 18.4062 2.44049 Vertex 2471 -2.90459 19.7242 1.24308 Vertex 2472 -2.90392 17.7836 -0.005511 Vertex 2473 -2.90332 18.2578 1.17717 Vertex 2474 -2.90225 16.5181 0.613766 Vertex 2475 -2.90159 18.3581 1.24882 Vertex 2476 -2.90046 17.9219 -0.696945 Vertex 2477 -2.90031 17.3284 0.912612 Vertex 2478 -2.90029 16.6652 0.782911 Vertex 2479 -2.9001 -41.1353 -2.91926 Vertex 2480 -2.89821 18.8684 2.1233 Vertex 2481 -2.89799 -6.42017 3.83833 Vertex 2482 -2.89721 18.4231 -0.9742 Vertex 2483 -2.89575 21.5996 -1.39378 Vertex 2484 -2.89333 17.9221 1.06795 Vertex 2485 -2.89082 18.2708 -0.870027 Vertex 2486 -2.89061 19.4407 1.63507 Vertex 2487 -2.89057 22.1841 0.068272 Vertex 2488 -2.89054 18.325 1.24413 Vertex 2489 -2.89039 18.2933 1.38409 Vertex 2490 -2.89028 21.3495 -1.91302 Vertex 2491 -2.89022 -44.384 -3.33485 Vertex 2492 -2.88961 18.1596 2.20613 Vertex 2493 -2.8889 -45.027 -3.33704 Vertex 2494 -2.88858 18.3317 1.25285 Vertex 2495 -2.88765 19.5745 1.4449 Vertex 2496 -2.88702 20.0621 1.5606 Vertex 2497 -2.88589 17.9429 1.08838 Vertex 2498 -2.88472 18.9678 -1.20977 Vertex 2499 -2.88305 19.8678 1.28057 Vertex 2500 -2.88249 20.088 1.53948 Vertex 2501 -2.88123 18.1521 -0.791601 Vertex 2502 -2.88117 17.7365 -0.391005 Vertex 2503 -2.88081 16.7969 0.046449 Vertex 2504 -2.88017 19.8559 -2.23448 Vertex 2505 -2.87832 18.8263 -1.71885 Vertex 2506 -2.87829 20.0154 1.5357 Vertex 2507 -2.87813 19.1844 -1.60966 Vertex 2508 -2.878 18.1417 -1.82615 Vertex 2509 -2.87739 17.5742 -0.201547 Vertex 2510 -2.87722 18.0062 -0.73466 Vertex 2511 -2.87599 -37.7788 -3.30363 Vertex 2512 -2.87586 18.1776 1.57035 Vertex 2513 -2.87506 21.2038 1.11383 Vertex 2514 -2.87478 -20.013 -7.81698 Vertex 2515 -2.87442 18.0105 1.15317 Vertex 2516 -2.87352 17.113 -1.92053 Vertex 2517 -2.8724 -40.1296 -4.10955 Vertex 2518 -2.87095 20.0575 1.50145 Vertex 2519 -2.86938 -38.6938 -3.30424 Vertex 2520 -2.86927 20.0209 1.23397 Vertex 2521 -2.86723 -40.2267 -3.27711 Vertex 2522 -2.86428 19.2436 1.84779 Vertex 2523 -2.86337 17.4277 -2.34323 Vertex 2524 -2.86326 20.1835 1.10327 Vertex 2525 -2.86286 16.8475 -2.39809 Vertex 2526 -2.86189 16.3745 0.443334 Vertex 2527 -2.86055 18.2209 1.34557 Vertex 2528 -2.8604 19.5499 1.69076 Vertex 2529 -2.86028 18.2153 2.58777 Vertex 2530 -2.85943 17.7252 -0.4997 Vertex 2531 -2.85893 18.1249 1.26233 Vertex 2532 -2.85853 19.7352 1.49645 Vertex 2533 -2.85839 17.6108 -0.329164 Vertex 2534 -2.85816 18.7621 -1.13834 Vertex 2535 -2.85617 16.8157 0.950768 Vertex 2536 -2.85456 19.2061 -1.33843 Vertex 2537 -2.8543 18.1951 1.32647 Vertex 2538 -2.85402 20.6302 1.06894 Vertex 2539 -2.85357 17.5368 1.09809 Vertex 2540 -2.85116 17.1266 1.02812 Vertex 2541 -2.85007 21.2915 -2.09364 Vertex 2542 -2.84615 19.3647 1.8227 Vertex 2543 -2.84573 16.4894 0.13968 Vertex 2544 -2.84572 16.5907 0.887409 Vertex 2545 -2.84273 -37.7533 -4.46973 Vertex 2546 -2.84189 22.3555 -0.2532 Vertex 2547 -2.84145 17.379 -0.163082 Vertex 2548 -2.8412 18.0922 2.44638 Vertex 2549 -2.83813 18.5358 2.57866 Vertex 2550 -2.83644 18.8904 -1.95729 Vertex 2551 -2.83612 -38.6683 -4.47035 Vertex 2552 -2.83605 19.9967 1.53417 Vertex 2553 -2.83555 -22.2492 -1.89586 Vertex 2554 -2.8351 18.0404 1.81488 Vertex 2555 -2.83367 -3.67281 3.59712 Vertex 2556 -2.83279 16.3645 0.747485 Vertex 2557 -2.83262 17.7005 -0.41545 Vertex 2558 -2.83027 17.7617 -0.562423 Vertex 2559 -2.82958 18.5777 -1.04536 Vertex 2560 -2.82946 19.1998 -1.49042 Vertex 2561 -2.82835 20.5607 -2.24634 Vertex 2562 -2.82763 20.2066 1.76968 Vertex 2563 -2.82758 20.0451 1.49478 Vertex 2564 -2.82572 18.0211 -0.699714 Vertex 2565 -2.82483 17.9002 -1.69966 Vertex 2566 -2.82276 17.0762 -0.171864 Vertex 2567 -2.82243 17.6671 1.21768 Vertex 2568 -2.8223 16.4909 0.936403 Vertex 2569 -2.82097 17.6322 -0.376616 Vertex 2570 -2.82014 20.246 1.73753 Vertex 2571 -2.81982 19.6799 1.78915 Vertex 2572 -2.81956 20.1569 1.7472 Vertex 2573 -2.81817 18.312 2.70753 Vertex 2574 -2.81786 -29.8672 -1.54866 Vertex 2575 -2.81752 18.0258 1.52695 Vertex 2576 -2.81655 19.8848 1.61865 Vertex 2577 -2.81561 20.272 1.71641 Vertex 2578 -2.8154 19.4481 1.88047 Vertex 2579 -2.81522 18.4111 -0.947201 Vertex 2580 -2.8151 18.2623 -0.843877 Vertex 2581 -2.81168 16.7454 1.0508 Vertex 2582 -2.81064 19.0486 2.17587 Vertex 2583 -2.8102 18.7955 2.43765 Vertex 2584 -2.80953 20.3103 1.68519 Vertex 2585 -2.80863 18.1453 -0.765874 Vertex 2586 -2.80662 20.3718 1.26508 Vertex 2587 -2.80614 20.1499 1.41599 Vertex 2588 -2.80613 18.2836 -2.08769 Vertex 2589 -2.80462 16.5428 -2.25228 Vertex 2590 -2.8045 18.9527 -1.30293 Vertex 2591 -2.80279 17.7194 1.27138 Vertex 2592 -2.80256 22.0221 -1.18027 Vertex 2593 -2.8013 16.1979 0.572681 Vertex 2594 -2.80105 17.9575 1.4797 Vertex 2595 -2.80068 17.9937 2.06872 Vertex 2596 -2.80053 20.9108 1.30767 Vertex 2597 -2.79752 20.2832 1.64445 Vertex 2598 -2.79621 16.9796 1.12726 Vertex 2599 -2.79522 16.7116 -0.133838 Vertex 2600 -2.79475 -29.3108 -1.68521 Vertex 2601 -2.79435 21.3514 -1.81252 Vertex 2602 -2.79335 16.2394 0.266842 Vertex 2603 -2.79293 17.7899 1.33769 Vertex 2604 -2.79286 17.8788 1.41661 Vertex 2605 -2.79063 18.5446 -1.67106 Vertex 2606 -2.79033 17.3652 -0.333941 Vertex 2607 -2.78982 17.3216 1.21375 Vertex 2608 -2.78629 16.9452 -1.73777 Vertex 2609 -2.78385 16.6711 1.11341 Vertex 2610 -2.78154 -29.3563 -1.49686 Vertex 2611 -2.78117 17.838 -0.642591 Vertex 2612 -2.78025 18.0143 2.63432 Vertex 2613 -2.78019 17.6656 -0.467027 Vertex 2614 -2.77913 18.1172 2.79736 Vertex 2615 -2.77863 20.1321 1.7505 Vertex 2616 -2.77251 17.8993 1.72788 Vertex 2617 -2.77076 16.2328 0.895883 Vertex 2618 -2.77069 16.3678 1.06798 Vertex 2619 -2.7692 16.5771 1.13944 Vertex 2620 -2.76887 19.8307 1.93024 Vertex 2621 -2.76852 -41.0338 -4.38157 Vertex 2622 -2.76499 19.5354 1.99348 Vertex 2623 -2.7638 -33.5113 -2.17558 Vertex 2624 -2.76201 18.7263 -1.23555 Vertex 2625 -2.76173 20.0234 1.81152 Vertex 2626 -2.76095 17.9427 2.28338 Vertex 2627 -2.7557 18.8507 -1.63235 Vertex 2628 -2.75522 20.6419 1.46001 Vertex 2629 -2.75503 16.3906 -0.048453 Vertex 2630 -2.75492 16.8656 1.20748 Vertex 2631 -2.75324 20.2775 1.63233 Vertex 2632 -2.75291 17.5367 -0.432151 Vertex 2633 -2.74779 17.4599 1.34982 Vertex 2634 -2.74698 17.9424 -0.72466 Vertex 2635 -2.74672 20.3887 2.02243 Vertex 2636 -2.74452 21.4696 -1.69711 Vertex 2637 -2.74389 17.6869 -0.55574 Vertex 2638 -2.7422 21.3616 -1.75252 Vertex 2639 -2.73938 19.4489 -2.37729 Vertex 2640 -2.73914 20.3971 1.57085 Vertex 2641 -2.73873 17.7384 -1.52057 Vertex 2642 -2.73831 16.0607 0.70878 Vertex 2643 -2.73768 17.7934 1.65255 Vertex 2644 -2.7375 16.4656 1.22508 Vertex 2645 -2.73749 18.3149 -1.5528 Vertex 2646 -2.737 18.4241 2.8482 Vertex 2647 -2.73573 20.4414 1.99199 Vertex 2648 -2.73485 -45.0392 -4.65225 Vertex 2649 -2.73381 21.3802 -1.73304 Vertex 2650 -2.73343 17.0099 -0.310019 Vertex 2651 -2.73302 20.3457 2.03922 Vertex 2652 -2.73185 16.0387 0.396913 Vertex 2653 -2.7311 18.8928 -1.49371 Vertex 2654 -2.72776 18.0749 -0.808631 Vertex 2655 -2.72728 16.7844 1.26877 Vertex 2656 -2.72709 18.5269 -1.1363 Vertex 2657 -2.72574 20.4905 1.96259 Vertex 2658 -2.72554 17.8414 1.94836 Vertex 2659 -2.72548 19.6774 2.09807 Vertex 2660 -2.72298 17.1571 1.31238 Vertex 2661 -2.7228 16.2743 1.16199 Vertex 2662 -2.72247 18.6858 2.74457 Vertex 2663 -2.72199 19.252 2.16602 Vertex 2664 -2.72116 16.3378 -2.06287 Vertex 2665 -2.72019 21.7218 1.31112 Vertex 2666 -2.71711 17.5414 1.43631 Vertex 2667 -2.71703 17.3208 -0.427868 Vertex 2668 -2.71676 20.5359 1.93423 Vertex 2669 -2.71663 16.135 0.999102 Vertex 2670 -2.71602 18.2127 -0.909629 Vertex 2671 -2.71592 17.8876 2.45887 Vertex 2672 -2.71565 17.7008 1.58106 Vertex 2673 -2.71524 21.9483 1.11448 Vertex 2674 -2.71371 17.9147 2.77667 Vertex 2675 -2.7127 22.4781 -0.66379 Vertex 2676 -2.71255 18.1963 2.948 Vertex 2677 -2.71176 18.3557 -1.02766 Vertex 2678 -2.7064 17.6217 1.51339 Vertex 2679 -2.70381 21.4671 1.48556 Vertex 2680 -2.70199 16.6943 1.32983 Vertex 2681 -2.70181 22.1443 0.920609 Vertex 2682 -2.70171 16.3772 1.30143 Vertex 2683 -2.70163 -17.8091 -7.05958 Vertex 2684 -2.69968 -44.4185 -4.63377 Vertex 2685 -2.69688 16.113 0.08429 Vertex 2686 -2.6959 -9.30989 3.83926 Vertex 2687 -2.69464 20.3124 2.04236 Vertex 2688 -2.69402 -41.8967 -3.35468 Vertex 2689 -2.69395 17.9969 2.95227 Vertex 2690 -2.69294 19.3791 2.12925 Vertex 2691 -2.69243 18.1647 -1.42782 Vertex 2692 -2.68995 20.558 1.91187 Vertex 2693 -2.68719 16.6421 -0.284089 Vertex 2694 -2.68467 17.788 2.13377 Vertex 2695 -2.68373 15.9593 0.812778 Vertex 2696 -2.6799 16.2104 1.21842 Vertex 2697 -2.67989 22.3098 0.729512 Vertex 2698 -2.67979 17.7331 -0.687887 Vertex 2699 -2.67979 16.5852 -2.85734 Vertex 2700 -2.67897 16.5953 1.39063 Vertex 2701 -2.67835 -27.5289 -4.51545 Vertex 2702 -2.67834 20.0194 2.14604 Vertex 2703 -2.67681 17.2972 -2.78714 Vertex 2704 -2.67641 20.2037 2.07797 Vertex 2705 -2.6762 17.0274 1.39103 Vertex 2706 -2.67372 21.1773 -2.35437 Vertex 2707 -2.67248 16.071 1.05714 Vertex 2708 -2.67058 17.5206 -0.577197 Vertex 2709 -2.66961 17.8125 2.59321 Vertex 2710 -2.6694 17.3002 1.46435 Vertex 2711 -2.66725 16.863 -1.50606 Vertex 2712 -2.66683 18.5749 -1.58911 Vertex 2713 -2.66611 21.1841 1.63782 Vertex 2714 -2.66419 17.7027 1.84503 Vertex 2715 -2.66242 15.8873 0.529894 Vertex 2716 -2.66224 16.3121 1.3685 Vertex 2717 -2.65729 18.6355 -1.44394 Vertex 2718 -2.65477 -43.2775 -3.30585 Vertex 2719 -2.65432 18.9624 2.5848 Vertex 2720 -2.65205 19.4514 2.23165 Vertex 2721 -2.65199 21.9563 -1.53875 Vertex 2722 -2.6516 16.5118 1.45579 Vertex 2723 -2.65053 -15.6171 -6.12914 Vertex 2724 -2.64988 17.7392 2.28414 Vertex 2725 -2.64893 16.9325 1.4497 Vertex 2726 -2.64698 22.5005 0.431061 Vertex 2727 -2.64531 20.5566 1.89549 Vertex 2728 -2.64189 16.1152 1.30624 Vertex 2729 -2.64158 17.7933 2.87342 Vertex 2730 -2.64119 20.921 1.75729 Vertex 2731 -2.63989 15.8937 0.884676 Vertex 2732 -2.63962 19.8563 2.27449 Vertex 2733 -2.63794 16.3134 -0.200914 Vertex 2734 -2.63693 20.0946 -2.59064 Vertex 2735 -2.63692 16.9631 -0.427312 Vertex 2736 -2.6367 -22.2785 -1.38675 Vertex 2737 -2.63356 17.8308 -0.813758 Vertex 2738 -2.63269 16.2221 1.44832 Vertex 2739 -2.63158 19.5635 2.31502 Vertex 2740 -2.63052 -11.4725 3.13479 Vertex 2741 -2.63007 19.043 -2.34768 Vertex 2742 -2.6299 15.8869 0.220182 Vertex 2743 -2.62906 20.6776 1.84396 Vertex 2744 -2.62886 17.4089 1.58317 Vertex 2745 -2.62728 17.5909 1.75567 Vertex 2746 -2.62724 15.9766 1.15445 Vertex 2747 -2.62699 20.6434 2.39926 Vertex 2748 -2.62587 19.1405 2.43426 Vertex 2749 -2.62266 16.8424 1.50757 Vertex 2750 -2.62216 17.6562 -1.28886 Vertex 2751 -2.62201 17.7174 2.68639 Vertex 2752 -2.61995 16.4437 1.5253 Vertex 2753 -2.61868 20.5817 2.41176 Vertex 2754 -2.61814 16.1898 -2.69491 Vertex 2755 -2.6172 18.2882 3.0933 Vertex 2756 -2.61677 18.5516 3.00978 Vertex 2757 -2.6165 12.4786 -1.75525 Vertex 2758 -2.61636 17.2627 -0.626796 Vertex 2759 -2.61576 17.675 2.40404 Vertex 2760 -2.61546 17.1745 1.55251 Vertex 2761 -2.61482 17.5058 1.68027 Vertex 2762 -2.61288 12.4583 -1.76683 Vertex 2763 -2.61269 16.1074 1.54091 Vertex 2764 -2.61248 16.2325 -1.82985 Vertex 2765 -2.61234 17.628 1.99755 Vertex 2766 -2.61151 18.3572 -1.47995 Vertex 2767 -2.61035 18.0591 3.12002 Vertex 2768 -2.60921 18.3257 -2.48429 Vertex 2769 -2.60902 20.7228 2.37224 Vertex 2770 -2.60873 17.9802 -0.933352 Vertex 2771 -2.60804 18.4278 -1.34112 Vertex 2772 -2.60793 15.9885 1.42547 Vertex 2773 -2.60477 17.8542 3.05248 Vertex 2774 -2.60368 15.7795 0.641156 Vertex 2775 -2.60305 22.7165 0.025255 Vertex 2776 -2.59732 16.757 1.56464 Vertex 2777 -2.59653 16.3548 1.59802 Vertex 2778 -2.59359 18.1221 -1.06729 Vertex 2779 -2.59263 20.7922 2.34741 Vertex 2780 -2.59235 17.5464 -0.773231 Vertex 2781 -2.58839 15.8065 0.992934 Vertex 2782 -2.58681 18.2567 -1.21556 Vertex 2783 -2.58607 17.0827 1.61429 Vertex 2784 -2.58408 20.5375 2.40973 Vertex 2785 -2.58408 16.0237 -0.060493 Vertex 2786 -2.58296 18.8343 2.89304 Vertex 2787 -2.58278 17.5992 2.74792 Vertex 2788 -2.5823 17.5956 2.49348 Vertex 2789 -2.58214 17.569 2.11011 Vertex 2790 -2.58116 16.2451 1.67393 Vertex 2791 -2.58082 17.6472 2.93921 Vertex 2792 -2.57982 12.2693 -1.38885 Vertex 2793 -2.57974 15.8519 1.29102 Vertex 2794 -2.57784 20.8517 2.32476 Vertex 2795 -2.57693 -41.8906 -4.63483 Vertex 2796 -2.57655 12.249 -1.40043 Vertex 2797 -2.57472 16.678 1.62506 Vertex 2798 -2.57339 18.0825 -1.19612 Vertex 2799 -2.57212 12.6898 -1.6739 Vertex 2800 -2.57008 15.9819 1.66138 Vertex 2801 -2.5687 17.3068 1.69191 Vertex 2802 -2.56846 17.5042 1.88749 Vertex 2803 -2.5661 19.2863 2.4123 Vertex 2804 -2.56535 18.2129 -1.35952 Vertex 2805 -2.5606 20.4257 2.41799 Vertex 2806 -2.56024 19.7143 2.46331 Vertex 2807 -2.55959 16.9957 1.67326 Vertex 2808 -2.55948 15.8423 1.56129 Vertex 2809 -2.55856 15.7154 0.730696 Vertex 2810 -2.55698 17.5027 2.55192 Vertex 2811 -2.55636 12.7847 -2.26327 Vertex 2812 -2.55599 16.5884 -0.404305 Vertex 2813 -2.55488 16.6052 1.68884 Vertex 2814 -2.55304 17.4167 1.80357 Vertex 2815 -2.55274 12.7644 -2.27484 Vertex 2816 -2.55218 17.5022 2.20915 Vertex 2817 -2.5519 17.4578 2.7778 Vertex 2818 -2.55014 15.7125 0.359228 Vertex 2819 -2.54825 20.246 2.43654 Vertex 2820 -2.54823 20.8817 2.30371 Vertex 2821 -2.54513 16.1221 1.77984 Vertex 2822 -2.5434 19.4069 2.40731 Vertex 2823 -2.54333 15.9162 -2.49587 Vertex 2824 -2.54318 16.9639 -0.656394 Vertex 2825 -2.54139 -33.5573 -4.80197 Vertex 2826 -2.53978 17.3966 2.57937 Vertex 2827 -2.5392 17.4407 1.9765 Vertex 2828 -2.53662 17.235 1.76255 Vertex 2829 -2.53595 16.9135 1.7294 Vertex 2830 -2.53533 -43.2861 -4.6068 Vertex 2831 -2.53499 16.5131 1.75532 Vertex 2832 -2.53365 12.4805 -1.3075 Vertex 2833 -2.53203 19.4851 2.46193 Vertex 2834 -2.53177 16.6195 -1.59291 Vertex 2835 -2.53143 17.4765 2.97405 Vertex 2836 -2.53056 17.3188 2.78524 Vertex 2837 -2.52887 17.6853 3.10756 Vertex 2838 -2.5281 15.6976 1.13755 Vertex 2839 -2.5267 17.2785 2.5925 Vertex 2840 -2.52613 17.6398 -0.949556 Vertex 2841 -2.52577 -30.3561 -5.11725 Vertex 2842 -2.52525 15.7087 1.44572 Vertex 2843 -2.52318 17.2779 -0.898622 Vertex 2844 -2.52245 17.4276 2.29467 Vertex 2845 -2.52104 17.3544 1.88329 Vertex 2846 -2.52063 15.7903 0.085578 Vertex 2847 -2.51875 17.182 2.77026 Vertex 2848 -2.51773 17.1483 2.59134 Vertex 2849 -2.51561 16.8307 1.78394 Vertex 2850 -2.51493 16.4017 1.82452 Vertex 2851 -2.51226 17.3703 2.05971 Vertex 2852 -2.51169 17.1543 1.82689 Vertex 2853 -2.51158 17.9003 3.22359 Vertex 2854 -2.51088 12.9959 -2.18192 Vertex 2855 -2.50948 17.0267 2.60169 Vertex 2856 -2.50739 20.0721 2.52272 Vertex 2857 -2.50617 18.1271 3.26325 Vertex 2858 -2.505 15.8455 1.80972 Vertex 2859 -2.5038 20.8824 2.28425 Vertex 2860 -2.50342 17.3578 2.35121 Vertex 2861 -2.503 22.5517 -1.1635 Vertex 2862 -2.50285 20.8542 -2.62892 Vertex 2863 -2.50269 15.6349 0.851211 Vertex 2864 -2.49855 16.7473 1.83687 Vertex 2865 -2.4976 17.0121 2.74047 Vertex 2866 -2.49644 15.6766 1.7137 Vertex 2867 -2.49608 17.323 2.98348 Vertex 2868 -2.49601 17.2791 1.95571 Vertex 2869 -2.49521 16.2579 -0.317702 Vertex 2870 -2.49508 17.2929 2.37876 Vertex 2871 -2.49389 17.0646 1.88492 Vertex 2872 -2.49309 18.3928 3.23327 Vertex 2873 -2.48853 15.9856 1.91575 Vertex 2874 -2.48826 17.4991 -1.35206 Vertex 2875 -2.48767 17.2928 2.13712 Vertex 2876 -2.48592 16.263 1.91669 Vertex 2877 -2.4849 21.699 -2.29608 Vertex 2878 -2.48451 17.2021 2.40527 Vertex 2879 -2.48409 -25.9314 -4.5961 Vertex 2880 -2.48331 13.0918 -1.52276 Vertex 2881 -2.48299 15.5955 0.484235 Vertex 2882 -2.48023 16.6466 1.89546 Vertex 2883 -2.47963 18.6968 3.14426 Vertex 2884 -2.47795 17.191 2.02083 Vertex 2885 -2.477 19.6306 -2.75249 Vertex 2886 -2.4769 17.8008 -1.10617 Vertex 2887 -2.4759 20.9915 2.23531 Vertex 2888 -2.47514 17.2571 2.20544 Vertex 2889 -2.47477 17.1866 2.96751 Vertex 2890 -2.47423 16.8292 2.56088 Vertex 2891 -2.47308 16.9698 1.93242 Vertex 2892 -2.47171 17.0855 2.43074 Vertex 2893 -2.47123 17.2127 2.23305 Vertex 2894 -2.46886 19.6056 2.57903 Vertex 2895 -2.46869 17.15 2.083 Vertex 2896 -2.4681 12.1569 -1.16407 Vertex 2897 -2.4676 20.7164 2.76485 Vertex 2898 -2.46742 15.5809 1.31468 Vertex 2899 -2.4671 16.809 2.69587 Vertex 2900 -2.46658 20.6412 2.77232 Vertex 2901 -2.46625 17.4901 3.11752 Vertex 2902 -2.46513 12.1366 -1.17564 Vertex 2903 -2.46453 21.2092 2.1569 Vertex 2904 -2.46405 15.547 1.61857 Vertex 2905 -2.46249 -27.5559 -4.65414 Vertex 2906 -2.46155 16.9707 2.45441 Vertex 2907 -2.46062 16.5286 1.95973 Vertex 2908 -2.46059 17.1328 2.23541 Vertex 2909 -2.45824 19.2511 2.55918 Vertex 2910 -2.45647 21.7966 -1.88546 Vertex 2911 -2.45634 -32.2006 -2.28971 Vertex 2912 -2.45537 15.7644 -2.26022 Vertex 2913 -2.45494 17.0705 2.08291 Vertex 2914 -2.45363 17.0113 2.93344 Vertex 2915 -2.45295 19.124 2.72613 Vertex 2916 -2.45126 -25.6615 -4.60973 Vertex 2917 -2.45082 22.8572 -0.487035 Vertex 2918 -2.45075 21.4503 2.0594 Vertex 2919 -2.45053 19.3447 2.5227 Vertex 2920 -2.44972 16.6241 -0.665994 Vertex 2921 -2.44954 19.3096 2.12694 Vertex 2922 -2.44924 16.87 1.9694 Vertex 2923 -2.44856 15.9717 -0.167505 Vertex 2924 -2.44836 19.3096 1.90957 Vertex 2925 -2.44831 16.394 2.00706 Vertex 2926 -2.44783 16.0969 2.03181 Vertex 2927 -2.44701 20.5256 2.70008 Vertex 2928 -2.4468 17.0122 -0.997265 Vertex 2929 -2.44411 16.7588 2.43201 Vertex 2930 -2.44386 15.6132 0.2373 Vertex 2931 -2.44277 17.0234 2.27174 Vertex 2932 -2.44127 20.8154 2.74016 Vertex 2933 -2.44102 12.8825 -1.15636 Vertex 2934 -2.43905 19.4018 2.52046 Vertex 2935 -2.43822 20.59 2.76255 Vertex 2936 -2.43802 19.9041 2.67653 Vertex 2937 -2.43727 16.8988 2.33728 Vertex 2938 -2.43703 13.5027 -1.37436 Vertex 2939 -2.43542 15.5382 1.0027 Vertex 2940 -2.4351 16.5502 2.44011 Vertex 2941 -2.43458 21.7149 1.94278 Vertex 2942 -2.43379 19.1035 2.13082 Vertex 2943 -2.43379 19.5157 2.13081 Vertex 2944 -2.43357 15.5359 0.595206 Vertex 2945 -2.43282 21.6292 -2.48196 Vertex 2946 -2.43265 16.7969 2.88128 Vertex 2947 -2.43253 16.5678 2.62457 Vertex 2948 -2.432 19.0956 1.9136 Vertex 2949 -2.432 19.5237 1.91359 Vertex 2950 -2.4309 -11.3423 3.0219 Vertex 2951 -2.43089 16.962 2.11436 Vertex 2952 -2.43048 16.7552 2.01844 Vertex 2953 -2.42812 17.3692 -1.13206 Vertex 2954 -2.42751 20.3482 2.69387 Vertex 2955 -2.42691 17.7134 3.25298 Vertex 2956 -2.42683 19.4423 2.53882 Vertex 2957 -2.42637 12.6895 -1.66557 Vertex 2958 -2.42633 14.7589 -1.74606 Vertex 2959 -2.42618 12.1175 -0.013846 Vertex 2960 -2.42616 14.0353 0.16341 Vertex 2961 -2.42613 17.8762 -1.25594 Vertex 2962 -2.42593 11.8018 0.889532 Vertex 2963 -2.42592 13.0009 1.20876 Vertex 2964 -2.42576 13.2844 -3.40238 Vertex 2965 -2.4257 14.0406 -3.75157 Vertex 2966 -2.42568 11.5285 1.66807 Vertex 2967 -2.42568 11.8225 2.11012 Vertex 2968 -2.42234 15.8273 2.0426 Vertex 2969 -2.42194 12.3681 -1.08271 Vertex 2970 -2.4215 17.3248 3.11051 Vertex 2971 -2.4196 18.9814 3.02407 Vertex 2972 -2.41925 16.2132 2.1118 Vertex 2973 -2.41714 20.9017 2.7179 Vertex 2974 -2.41678 16.6257 2.07954 Vertex 2975 -2.41671 19.3097 2.34183 Vertex 2976 -2.41645 16.8393 2.16571 Vertex 2977 -2.41644 21.9564 1.80206 Vertex 2978 -2.4154 13.398 -2.03078 Vertex 2979 -2.41446 15.4838 1.87269 Vertex 2980 -2.41319 19.3096 1.69506 Vertex 2981 -2.41282 19.3352 2.56621 Vertex 2982 -2.41248 15.4049 1.76572 Vertex 2983 -2.41181 15.6667 1.98798 Vertex 2984 -2.4116 16.7024 2.23696 Vertex 2985 -2.41024 16.2728 2.36158 Vertex 2986 -2.40879 16.497 2.255 Vertex 2987 -2.40835 13.9226 -1.22871 Vertex 2988 -2.40802 16.2231 2.21983 Vertex 2989 -2.40766 15.4565 1.52431 Vertex 2990 -2.40704 16.4854 2.12529 Vertex 2991 -2.40562 14.439 -1.07529 Vertex 2992 -2.40561 21.6929 -2.1762 Vertex 2993 -2.40391 17.9407 3.35805 Vertex 2994 -2.40195 19.1166 2.34546 Vertex 2995 -2.40195 19.5027 2.34545 Vertex 2996 -2.40109 16.55 2.80839 Vertex 2997 -2.39663 19.0929 1.69913 Vertex 2998 -2.39663 19.5263 1.69912 Vertex 2999 -2.39653 15.7488 -0.0069 Vertex 3000 -2.39631 22.1747 1.63722 Vertex 3001 -2.39532 14.8428 -0.547725 Vertex 3002 -2.39522 20.9752 2.69806 Vertex 3003 -2.39463 17.1894 3.08652 Vertex 3004 -2.39406 15.0521 -0.914126 Vertex 3005 -2.39388 16.2886 2.52657 Vertex 3006 -2.3934 13.2935 -1.00796 Vertex 3007 -2.39288 12.0844 -0.979927 Vertex 3008 -2.39148 15.9239 2.14826 Vertex 3009 -2.39036 -33.5131 -4.9756 Vertex 3010 -2.39025 16.3144 -0.622332 Vertex 3011 -2.39019 12.0641 -0.991501 Vertex 3012 -2.38938 7.39991 4.99909 Vertex 3013 -2.38907 16.4629 -3.28168 Vertex 3014 -2.38693 18.9025 2.14235 Vertex 3015 -2.38692 19.7168 2.14233 Vertex 3016 -2.3865 11.132 -5.6933 Vertex 3017 -2.38552 -32.2529 -5.28061 Vertex 3018 -2.3836 14.2297 -0.708894 Vertex 3019 -2.38355 17.2575 -3.2152 Vertex 3020 -2.38333 18.8868 1.92557 Vertex 3021 -2.38333 19.7324 1.92555 Vertex 3022 -2.38268 19.3997 2.57875 Vertex 3023 -2.38142 18.2008 3.38196 Vertex 3024 -2.38131 19.3922 2.58178 Vertex 3025 -2.37983 16.2147 -1.99832 Vertex 3026 -2.37958 15.4877 0.373321 Vertex 3027 -2.37773 15.9721 2.22351 Vertex 3028 -2.37364 15.462 0.729283 Vertex 3029 -2.37281 -31.3416 -2.10853 Vertex 3030 -2.37127 17.014 3.04722 Vertex 3031 -2.37053 15.4358 1.19234 Vertex 3032 -2.37004 19.4215 2.57898 Vertex 3033 -2.36949 13.7133 -0.862307 Vertex 3034 -2.36885 22.3794 1.45092 Vertex 3035 -2.36811 15.294 -0.36364 Vertex 3036 -2.36797 13.0508 -2.68051 Vertex 3037 -2.36744 16.0201 2.34359 Vertex 3038 -2.36646 20.2103 2.79921 Vertex 3039 -2.3655 19.5301 2.62167 Vertex 3040 -2.36479 13.0305 -2.69208 Vertex 3041 -2.36455 19.3914 2.59108 Vertex 3042 -2.36415 21.6966 -2.1019 Vertex 3043 -2.36378 19.4121 2.58402 Vertex 3044 -2.36249 21.0142 2.67548 Vertex 3045 -2.36241 19.4046 2.58704 Vertex 3046 -2.36222 16.0345 -0.525407 Vertex 3047 -2.36166 15.4926 -0.744391 Vertex 3048 -2.36053 21.7101 -2.07318 Vertex 3049 -2.36038 16.7494 -1.06916 Vertex 3050 -2.35894 16.2705 2.7148 Vertex 3051 -2.35804 18.9282 2.35626 Vertex 3052 -2.35804 19.6911 2.35624 Vertex 3053 -2.35756 19.3933 2.5966 Vertex 3054 -2.35674 12.0519 -0.836433 Vertex 3055 -2.35655 15.333 1.68986 Vertex 3056 -2.35635 17.4984 3.2082 Vertex 3057 -2.35542 19.4065 2.59256 Vertex 3058 -2.35476 15.7606 -0.566094 Vertex 3059 -2.35474 -30.8039 -2.24334 Vertex 3060 -2.35429 12.0315 -0.848005 Vertex 3061 -2.3542 13.8089 -1.88238 Vertex 3062 -2.35391 19.7684 2.75862 Vertex 3063 -2.35334 19.3997 2.60385 Vertex 3064 -2.35143 16.7983 2.99258 Vertex 3065 -2.35066 19.3097 2.54893 Vertex 3066 -2.34856 19.1688 -2.73188 Vertex 3067 -2.34834 19.3666 2.63376 Vertex 3068 -2.34735 18.8816 1.71125 Vertex 3069 -2.34735 19.7377 1.71123 Vertex 3070 -2.34716 15.5833 -0.156639 Vertex 3071 -2.34571 12.2956 -0.898571 Vertex 3072 -2.34433 18.5497 3.33846 Vertex 3073 -2.34184 19.3236 2.67149 Vertex 3074 -2.33919 -35.0338 -3.30494 Vertex 3075 -2.33784 17.5367 -1.3271 Vertex 3076 -2.33747 20.3223 -2.91731 Vertex 3077 -2.33726 19.1343 2.55223 Vertex 3078 -2.33726 19.485 2.55222 Vertex 3079 -2.33724 19.3852 2.65199 Vertex 3080 -2.33679 15.5892 0.164112 Vertex 3081 -2.33474 15.9937 2.47786 Vertex 3082 -2.33416 15.4141 0.493643 Vertex 3083 -2.33406 22.5705 1.24316 Vertex 3084 -2.33396 15.9939 -3.08556 Vertex 3085 -2.33377 7.56557 5.12066 Vertex 3086 -2.33247 17.1237 -1.27432 Vertex 3087 -2.33131 19.2218 2.82139 Vertex 3088 -2.32818 12.7701 -0.931575 Vertex 3089 -2.32559 18.8597 3.25166 Vertex 3090 -2.32526 -30.3048 -2.1879 Vertex 3091 -2.32193 15.1855 1.90996 Vertex 3092 -2.32021 13.262 -2.59915 Vertex 3093 -2.31896 21.0188 2.65016 Vertex 3094 -2.3174 18.3778 -2.88612 Vertex 3095 -2.31673 17.267 -1.71016 Vertex 3096 -2.31639 17.733 3.36637 Vertex 3097 -2.31596 -30.8593 -2.03129 Vertex 3098 -2.31481 16.5473 2.92496 Vertex 3099 -2.31428 15.2638 2.03824 Vertex 3100 -2.314 -34.0872 -4.97328 Vertex 3101 -2.31245 19.3388 2.73603 Vertex 3102 -2.31073 19.4876 2.64537 Vertex 3103 -2.3101 18.7115 2.16124 Vertex 3104 -2.3101 19.9078 2.16121 Vertex 3105 -2.30978 20.0342 2.90092 Vertex 3106 -2.30933 15.3276 1.42013 Vertex 3107 -2.30863 -23.877 -1.74521 Vertex 3108 -2.30848 19.3809 2.72552 Vertex 3109 -2.30814 12.2631 -0.755078 Vertex 3110 -2.30787 19.086 3.09316 Vertex 3111 -2.30682 17.3241 3.16631 Vertex 3112 -2.30532 14.2287 -1.73672 Vertex 3113 -2.30463 16.0309 2.66512 Vertex 3114 -2.30457 19.4781 2.65015 Vertex 3115 -2.30355 18.6885 1.94519 Vertex 3116 -2.30354 19.9308 1.94516 Vertex 3117 -2.30271 15.3737 0.886465 Vertex 3118 -2.30262 -24.1483 -1.76796 Vertex 3119 -2.30095 19.4693 2.65741 Vertex 3120 -2.3006 16.4828 -1.1148 Vertex 3121 -2.30041 22.7821 0.875445 Vertex 3122 -2.30041 14.7304 -0.322939 Vertex 3123 -2.29985 19.461 2.66714 Vertex 3124 -2.29739 18.9633 2.56203 Vertex 3125 -2.29739 19.656 2.56201 Vertex 3126 -2.29416 15.6057 2.2721 Vertex 3127 -2.29206 15.4456 2.19616 Vertex 3128 -2.28939 19.2559 2.87058 Vertex 3129 -2.28939 -33.5132 -3.54935 Vertex 3130 -2.28828 15.4563 0.308415 Vertex 3131 -2.28778 15.172 -0.149886 Vertex 3132 -2.28675 19.4542 2.7067 Vertex 3133 -2.28617 15.4422 0.035051 Vertex 3134 -2.28607 18.7493 2.37396 Vertex 3135 -2.28606 19.87 2.37393 Vertex 3136 -2.28465 12.0021 -0.670662 Vertex 3137 -2.28249 11.9817 -0.682235 Vertex 3138 -2.28176 17.9757 3.45587 Vertex 3139 -2.28128 15.6539 2.34734 Vertex 3140 -2.27861 15.6648 -2.85336 Vertex 3141 -2.27839 14.7452 -1.58331 Vertex 3142 -2.27833 13.1811 -0.783177 Vertex 3143 -2.27832 17.1904 3.12731 Vertex 3144 -2.27673 20.5244 3.12088 Vertex 3145 -2.27621 14.1173 -0.484108 Vertex 3146 -2.27592 -26.0217 -4.7316 Vertex 3147 -2.27571 16.2122 -1.1342 Vertex 3148 -2.27559 21.1295 2.60413 Vertex 3149 -2.27358 15.3341 0.633656 Vertex 3150 -2.27341 -24.1989 -4.68357 Vertex 3151 -2.2702 20.4037 3.0332 Vertex 3152 -2.27015 -25.6136 -1.89087 Vertex 3153 -2.26854 20.6076 3.1192 Vertex 3154 -2.26789 23.0141 0.347768 Vertex 3155 -2.26657 18.6807 1.73112 Vertex 3156 -2.26656 19.9385 1.73109 Vertex 3157 -2.26589 17.6154 -1.49608 Vertex 3158 -2.26585 19.3432 2.81356 Vertex 3159 -2.26414 -25.8848 -1.91362 Vertex 3160 -2.26162 19.4488 2.7761 Vertex 3161 -2.2614 16.2607 2.84436 Vertex 3162 -2.25874 17.7304 -1.59039 Vertex 3163 -2.25808 19.3885 2.8094 Vertex 3164 -2.25735 15.2036 1.6368 Vertex 3165 -2.25706 20.4698 3.10082 Vertex 3166 -2.25674 15.3499 0.426008 Vertex 3167 -2.25611 22.4791 -1.63011 Vertex 3168 -2.25512 15.683 2.47845 Vertex 3169 -2.25506 13.6009 -0.637521 Vertex 3170 -2.25506 19.665 2.76901 Vertex 3171 -2.25303 19.3097 2.74314 Vertex 3172 -2.25165 15.9739 -1.19331 Vertex 3173 -2.25053 17.0201 3.08181 Vertex 3174 -2.24935 21.4833 -2.73383 Vertex 3175 -2.24919 12.6976 -0.747435 Vertex 3176 -2.24778 19.1484 3.10031 Vertex 3177 -2.2436 17.504 3.2882 Vertex 3178 -2.24329 15.3582 -1.42214 Vertex 3179 -2.24245 -25.6286 -4.77163 Vertex 3180 -2.24132 19.1564 2.74603 Vertex 3181 -2.24132 19.4629 2.74602 Vertex 3182 -2.24058 -23.929 -4.6972 Vertex 3183 -2.24051 19.2803 2.91 Vertex 3184 -2.23816 15.8314 2.65936 Vertex 3185 -2.23773 -33.7206 -5.04736 Vertex 3186 -2.23651 16.9032 -1.37634 Vertex 3187 -2.23644 15.3215 0.192417 Vertex 3188 -2.23475 12.2132 -0.589307 Vertex 3189 -2.23251 15.2732 1.07871 Vertex 3190 -2.23249 20.7193 3.09577 Vertex 3191 -2.23239 21.3462 2.5374 Vertex 3192 -2.23235 19.8915 2.94114 Vertex 3193 -2.23204 18.8009 2.5781 Vertex 3194 -2.23204 19.8185 2.57807 Vertex 3195 -2.22866 -27.4857 -2.0479 Vertex 3196 -2.2239 19.4421 2.83946 Vertex 3197 -2.22345 16.8133 3.0298 Vertex 3198 -2.22299 15.4756 -2.58509 Vertex 3199 -2.22199 14.6579 -0.1388 Vertex 3200 -2.2208 15.7678 -1.29214 Vertex 3201 -2.2205 15.0835 0.025329 Vertex 3202 -2.22008 -22.2766 -1.94615 Vertex 3203 -2.21682 20.2707 3.10395 Vertex 3204 -2.21616 15.0636 1.84234 Vertex 3205 -2.21479 19.3456 2.86844 Vertex 3206 -2.2147 13.664 -2.44802 Vertex 3207 -2.21147 16.0618 2.80064 Vertex 3208 -2.20855 17.2983 -1.48755 Vertex 3209 -2.20838 12.6651 -0.60394 Vertex 3210 -2.20647 19.007 2.7546 Vertex 3211 -2.20647 19.6124 2.75458 Vertex 3212 -2.20598 18.254 3.48179 Vertex 3213 -2.2052 18.5352 2.18703 Vertex 3214 -2.2052 20.084 2.18699 Vertex 3215 -2.20497 15.2214 0.315462 Vertex 3216 -2.20264 19.6084 2.77633 Vertex 3217 -2.20104 19.3914 2.87476 Vertex 3218 -2.19977 15.2515 0.564334 Vertex 3219 -2.19928 20.8189 3.07408 Vertex 3220 -2.19774 15.2479 0.793363 Vertex 3221 -2.19728 17.7443 3.44772 Vertex 3222 -2.19667 19.5987 2.7806 Vertex 3223 -2.195 13.1086 -0.599037 Vertex 3224 -2.195 19.5772 2.79264 Vertex 3225 -2.19461 18.5054 1.97197 Vertex 3226 -2.1946 20.1139 1.97193 Vertex 3227 -2.19412 19.5883 2.78604 Vertex 3228 -2.19214 17.3234 3.22211 Vertex 3229 -2.19158 14.0449 -0.299968 Vertex 3230 -2.19132 18.9711 3.31763 Vertex 3231 -2.19127 19.5586 2.81904 Vertex 3232 -2.19027 22.9227 -1.10581 Vertex 3233 -2.18948 18.4809 3.47171 Vertex 3234 -2.1878 18.5841 2.39812 Vertex 3235 -2.18779 20.0352 2.39808 Vertex 3236 -2.18579 19.3479 2.89498 Vertex 3237 -2.18468 19.2951 2.93966 Vertex 3238 -2.18293 19.5323 2.86524 Vertex 3239 -2.18224 21.5831 2.44988 Vertex 3240 -2.18206 19.1996 3.09872 Vertex 3241 -2.17885 19.3501 2.89318 Vertex 3242 -2.1768 11.935 -0.482614 Vertex 3243 -2.17651 15.0284 0.162007 Vertex 3244 -2.17593 19.3504 2.35203 Vertex 3245 -2.17556 19.351 2.71219 Vertex 3246 -2.17551 20.1046 3.13649 Vertex 3247 -2.17503 11.9146 -0.494187 Vertex 3248 -2.1737 16.5597 2.97428 Vertex 3249 -2.17358 19.4339 2.89678 Vertex 3250 -2.17207 7.80563 5.07598 Vertex 3251 -2.17154 14.6254 0.004696 Vertex 3252 -2.17091 18.759 3.40889 Vertex 3253 -2.16977 19.3925 2.90644 Vertex 3254 -2.16919 13.5284 -0.453381 Vertex 3255 -2.1689 20.9064 3.05414 Vertex 3256 -2.16715 19.7935 -3.07764 Vertex 3257 -2.16664 15.1605 1.30602 Vertex 3258 -2.16503 15.9504 2.7938 Vertex 3259 -2.16428 19.3919 2.90443 Vertex 3260 -2.16396 15.9525 -2.29455 Vertex 3261 -2.16332 19.5038 2.90373 Vertex 3262 -2.16316 19.3892 2.36297 Vertex 3263 -2.16207 19.3908 2.72327 Vertex 3264 -2.16201 17.1913 3.1681 Vertex 3265 -2.15681 16.6679 -1.47148 Vertex 3266 -2.15628 18.4954 1.75824 Vertex 3267 -2.15627 20.1239 1.7582 Vertex 3268 -2.15623 17.0575 3.11865 Vertex 3269 -2.1545 -32.3061 -3.02674 Vertex 3270 -2.1527 19.304 2.95305 Vertex 3271 -2.15024 -32.8637 -2.9009 Vertex 3272 -2.14978 13.076 -0.455543 Vertex 3273 -2.14935 18.865 2.76864 Vertex 3274 -2.14935 19.7544 2.76862 Vertex 3275 -2.14654 15.0562 2.20287 Vertex 3276 -2.14597 19.4287 2.92424 Vertex 3277 -2.14458 19.3071 2.95019 Vertex 3278 -2.14281 18.6509 2.60004 Vertex 3279 -2.14281 19.9684 2.60001 Vertex 3280 -2.14224 15.1281 0.460017 Vertex 3281 -2.14215 19.3094 2.40781 Vertex 3282 -2.14119 19.4219 2.37983 Vertex 3283 -2.14106 19.3088 2.76844 Vertex 3284 -2.14105 19.4264 2.92183 Vertex 3285 -2.14009 14.0123 -0.156473 Vertex 3286 -2.13947 -11.2875 3.18019 Vertex 3287 -2.13946 19.4241 2.74036 Vertex 3288 -2.13852 -24.2354 -1.57445 Vertex 3289 -2.13531 19.0389 3.30479 Vertex 3290 -2.13501 14.0749 -2.29962 Vertex 3291 -2.13415 19.7821 2.91988 Vertex 3292 -2.13274 20.9554 3.02718 Vertex 3293 -2.13242 19.4732 2.93451 Vertex 3294 -2.13197 12.6153 -0.438169 Vertex 3295 -2.12798 17.5067 3.35752 Vertex 3296 -2.12734 17.4561 -1.65197 Vertex 3297 -2.12621 19.3097 2.9197 Vertex 3298 -2.12571 12.1461 -0.401259 Vertex 3299 -2.12553 16.855 3.06795 Vertex 3300 -2.12515 21.8402 2.34155 Vertex 3301 -2.12499 -35.0093 -4.66006 Vertex 3302 -2.12433 -33.3832 -4.43682 Vertex 3303 -2.12255 23.1317 -0.279779 Vertex 3304 -2.12116 -22.2883 -1.48167 Vertex 3305 -2.12004 13.4958 -0.309886 Vertex 3306 -2.11838 15.1482 0.980799 Vertex 3307 -2.11798 15.1609 0.723394 Vertex 3308 -2.11765 15.252 2.37663 Vertex 3309 -2.11673 -33.1107 -3.69455 Vertex 3310 -2.11648 19.1823 2.9221 Vertex 3311 -2.11648 19.437 2.92209 Vertex 3312 -2.11437 19.4564 2.9484 Vertex 3313 -2.1107 19.2398 3.08839 Vertex 3314 -2.11003 19.4487 2.4026 Vertex 3315 -2.10978 18.0238 3.53373 Vertex 3316 -2.10917 19.4534 2.94538 Vertex 3317 -2.10887 -25.5735 -1.68668 Vertex 3318 -2.10772 19.4509 2.76344 Vertex 3319 -2.10747 15.0418 1.50788 Vertex 3320 -2.10416 19.9748 3.1266 Vertex 3321 -2.10206 15.4463 2.54847 Vertex 3322 -2.10151 17.0957 -1.98176 Vertex 3323 -2.10127 16.2594 2.91527 Vertex 3324 -2.09955 14.9641 0.320706 Vertex 3325 -2.09891 16.4177 -1.55974 Vertex 3326 -2.09634 15.6392 2.71839 Vertex 3327 -2.09151 14.8963 2.04352 Vertex 3328 -2.09079 20.966 2.99322 Vertex 3329 -2.08816 21.1173 -2.98346 Vertex 3330 -2.08772 17.5969 -1.76757 Vertex 3331 -2.08752 19.058 2.92922 Vertex 3332 -2.08751 19.5613 2.9292 Vertex 3333 -2.08711 17.0856 -1.58755 Vertex 3334 -2.08709 -23.8256 -1.61062 Vertex 3335 -2.08542 14.5756 0.170467 Vertex 3336 -2.08424 16.5654 2.99983 Vertex 3337 -2.08344 16.8201 3.06475 Vertex 3338 -2.08273 19.7221 2.91099 Vertex 3339 -2.0825 19.1269 3.25832 Vertex 3340 -2.08028 7.90822 4.89768 Vertex 3341 -2.07999 -24.2927 -4.83908 Vertex 3342 -2.07818 -33.679 -3.59156 Vertex 3343 -2.07806 19.7113 2.91446 Vertex 3344 -2.07746 17.3227 3.27791 Vertex 3345 -2.07704 19.6632 2.94151 Vertex 3346 -2.07697 19.6253 2.97265 Vertex 3347 -2.07673 19.6881 2.9235 Vertex 3348 -2.07624 22.0806 2.21092 Vertex 3349 -2.07607 19.7 2.91863 Vertex 3350 -2.07482 18.378 2.21909 Vertex 3351 -2.07481 20.2412 2.21904 Vertex 3352 -2.07136 18.7339 2.78782 Vertex 3353 -2.07136 19.8854 2.78779 Vertex 3354 -2.0705 19.2608 3.08064 Vertex 3355 -2.06883 14.4947 -2.15396 Vertex 3356 -2.06795 13.0262 -0.289771 Vertex 3357 -2.06673 19.5849 2.99489 Vertex 3358 -2.06573 -32.4382 -2.82081 Vertex 3359 -2.06564 18.4369 2.42815 Vertex 3360 -2.06564 20.1824 2.42811 Vertex 3361 -2.06536 13.2767 -3.00697 Vertex 3362 -2.06281 13.2564 -3.01855 Vertex 3363 -2.06184 19.2661 2.53032 Vertex 3364 -2.06175 -27.4876 -3.33859 Vertex 3365 -2.06164 18.8891 3.44123 Vertex 3366 -2.06146 19.2627 3.07545 Vertex 3367 -2.06027 18.7047 3.50347 Vertex 3368 -2.05921 18.3422 2.00527 Vertex 3369 -2.0592 20.2771 2.00522 Vertex 3370 -2.05857 19.2645 2.89201 Vertex 3371 -2.05527 16.0862 2.88443 Vertex 3372 -2.05489 14.917 1.68431 Vertex 3373 -2.05332 -33.9647 -4.37041 Vertex 3374 -2.05185 13.9625 0.009298 Vertex 3375 -2.04864 15.0418 0.626083 Vertex 3376 -2.04856 20.4067 3.38556 Vertex 3377 -2.04854 16.817 3.06417 Vertex 3378 -2.04828 15.7991 2.84817 Vertex 3379 -2.04645 16.5643 3.00162 Vertex 3380 -2.04632 19.5421 3.00823 Vertex 3381 -2.04631 -22.3315 -4.77785 Vertex 3382 -2.0457 17.1922 3.20889 Vertex 3383 -2.04308 11.868 -0.286415 Vertex 3384 -2.04252 16.2022 -1.6426 Vertex 3385 -2.04173 11.8477 -0.297987 Vertex 3386 -2.04003 18.94 2.9409 Vertex 3387 -2.04003 19.6793 2.94088 Vertex 3388 -2.03911 17.0592 3.15193 Vertex 3389 -2.03846 15.035 1.19596 Vertex 3390 -2.03662 20.4937 3.38503 Vertex 3391 -2.03571 16.0401 2.88179 Vertex 3392 -2.03551 22.3044 2.058 Vertex 3393 -2.03429 20.3507 3.36013 Vertex 3394 -2.03406 13.446 -0.144115 Vertex 3395 -2.03342 19.5189 3.01298 Vertex 3396 -2.0319 18.5172 2.62731 Vertex 3397 -2.03189 20.1021 2.62727 Vertex 3398 -2.02943 19.5105 2.46567 Vertex 3399 -2.02895 -25.9603 -1.81046 Vertex 3400 -2.02813 21.0915 2.95041 Vertex 3401 -2.02803 19.5153 3.00914 Vertex 3402 -2.0267 19.5125 2.82671 Vertex 3403 -2.02669 15.0607 0.898606 Vertex 3404 -2.02606 15.0112 -2.00055 Vertex 3405 -2.02388 17.7922 3.51682 Vertex 3406 -2.02068 12.5482 -0.250121 Vertex 3407 -2.01918 18.3301 1.79195 Vertex 3408 -2.01917 20.2892 1.7919 Vertex 3409 -2.01796 13.4879 -2.92562 Vertex 3410 -2.01508 18.4905 3.54399 Vertex 3411 -2.01094 19.1837 3.22366 Vertex 3412 -2.0078 20.2563 3.34013 Vertex 3413 -2.00743 -32.2028 -3.85415 Vertex 3414 -2.00594 7.82099 4.60024 Vertex 3415 -2.003 18.8963 3.47092 Vertex 3416 -2.00279 16.2603 2.95321 Vertex 3417 -2.00278 19.8815 3.07429 Vertex 3418 -2.00046 18.9796 3.42278 Vertex 3419 -2.00039 17.0244 3.14796 Vertex 3420 -1.99973 -23.8937 -4.80727 Vertex 3421 -1.99846 20.612 3.35853 Vertex 3422 -1.99488 -27.4976 -1.93941 Vertex 3423 -1.99467 18.8178 3.52002 Vertex 3424 -1.99368 18.8262 3.51748 Vertex 3425 -1.99365 18.6968 3.5354 Vertex 3426 -1.99189 19.2678 -3.10991 Vertex 3427 -1.99118 12.0792 -0.205059 Vertex 3428 -1.9909 22.5201 1.87003 Vertex 3429 -1.9907 16.4807 -3.6711 Vertex 3430 -1.9887 14.8906 0.501426 Vertex 3431 -1.98542 15.6243 -1.83938 Vertex 3432 -1.98533 18.8134 3.52791 Vertex 3433 -1.98434 18.8218 3.52537 Vertex 3434 -1.98357 17.3087 -3.62741 Vertex 3435 -1.98245 16.0213 -1.72006 Vertex 3436 -1.98194 18.8013 3.53177 Vertex 3437 -1.97985 18.2866 3.56273 Vertex 3438 -1.97798 18.8349 3.52164 Vertex 3439 -1.97709 16.8698 -1.69237 Vertex 3440 -1.9752 18.8311 2.95684 Vertex 3441 -1.9752 19.7883 2.95681 Vertex 3442 -1.97442 18.617 2.81165 Vertex 3443 -1.97442 20.0023 2.81162 Vertex 3444 -1.97334 19.3097 3.07424 Vertex 3445 -1.97223 17.0215 3.14584 Vertex 3446 -1.97202 22.2602 -2.0636 Vertex 3447 -1.97078 19.2131 3.20281 Vertex 3448 -1.96909 20.1235 3.32556 Vertex 3449 -1.9669 20.7222 3.33205 Vertex 3450 -1.96609 16.1024 2.92862 Vertex 3451 -1.96599 16.2635 2.95818 Vertex 3452 -1.96583 19.2113 3.07609 Vertex 3453 -1.96582 19.4081 3.07609 Vertex 3454 -1.96402 -33.2993 -3.565 Vertex 3455 -1.96376 19.2187 2.64949 Vertex 3456 -1.96284 14.9174 1.38324 Vertex 3457 -1.96232 14.5085 0.358514 Vertex 3458 -1.96203 19.2151 3.19577 Vertex 3459 -1.96019 -25.887 -3.31673 Vertex 3460 -1.95997 16.089 2.92806 Vertex 3461 -1.95968 19.2169 3.01133 Vertex 3462 -1.95962 16.5644 2.98442 Vertex 3463 -1.95918 17.2729 -1.77223 Vertex 3464 -1.95789 15.9261 2.93779 Vertex 3465 -1.95333 -33.605 -4.43582 Vertex 3466 -1.95209 15.9554 -3.42424 Vertex 3467 -1.95098 19.8285 3.04934 Vertex 3468 -1.95053 14.7724 1.89858 Vertex 3469 -1.95051 16.8134 3.04239 Vertex 3470 -1.94992 12.9591 -0.101725 Vertex 3471 -1.94925 20.531 -3.23084 Vertex 3472 -1.94875 19.816 3.05174 Vertex 3473 -1.9483 17.1362 3.1968 Vertex 3474 -1.94826 17.5591 3.43109 Vertex 3475 -1.94677 19.8044 3.05521 Vertex 3476 -1.94507 19.7937 3.05973 Vertex 3477 -1.94477 21.3321 2.89878 Vertex 3478 -1.94405 19.7681 3.0741 Vertex 3479 -1.94374 19.7277 3.09832 Vertex 3480 -1.94345 19.1153 3.08159 Vertex 3481 -1.94345 19.504 3.08158 Vertex 3482 -1.94295 -25.6153 -3.31302 Vertex 3483 -1.94242 22.7277 1.64701 Vertex 3484 -1.94197 20.8244 3.30558 Vertex 3485 -1.94183 19.0621 3.3888 Vertex 3486 -1.94158 17.3809 3.34799 Vertex 3487 -1.93925 14.9497 0.801957 Vertex 3488 -1.93415 19.6852 3.11293 Vertex 3489 -1.9307 18.4396 -3.29316 Vertex 3490 -1.92977 16.1077 2.93519 Vertex 3491 -1.92812 14.9509 1.08997 Vertex 3492 -1.92697 15.5838 -3.13535 Vertex 3493 -1.92617 13.8954 0.197345 Vertex 3494 -1.92577 22.155 -2.53895 Vertex 3495 -1.92473 3.46099 4.90409 Vertex 3496 -1.92351 17.1335 3.1939 Vertex 3497 -1.92263 18.3111 2.46332 Vertex 3498 -1.92262 20.3082 2.46327 Vertex 3499 -1.92216 18.2438 2.25662 Vertex 3500 -1.92215 20.3755 2.25657 Vertex 3501 -1.92145 -12.9329 2.61846 Vertex 3502 -1.91665 22.8178 -1.66263 Vertex 3503 -1.91536 15.3659 -2.80445 Vertex 3504 -1.91528 19.6404 3.11792 Vertex 3505 -1.91333 14.8609 2.36657 Vertex 3506 -1.91224 13.89 -2.77448 Vertex 3507 -1.91122 13.3789 0.043932 Vertex 3508 -1.91007 20.8837 3.2716 Vertex 3509 -1.90901 17.2512 3.27146 Vertex 3510 -1.9081 20.0208 3.28393 Vertex 3511 -1.90678 19.0241 3.09061 Vertex 3512 -1.90678 19.5952 3.0906 Vertex 3513 -1.9042 17.1638 3.21703 Vertex 3514 -1.90311 19.616 3.11799 Vertex 3515 -1.90204 18.403 2.65924 Vertex 3516 -1.90203 20.2163 2.65919 Vertex 3517 -1.90067 18.2027 2.04425 Vertex 3518 -1.90066 20.4166 2.04419 Vertex 3519 -1.90049 22.9589 1.24197 Vertex 3520 -1.89939 19.6072 2.56906 Vertex 3521 -1.89923 16.0004 2.98583 Vertex 3522 -1.89918 16.2739 2.95175 Vertex 3523 -1.89762 19.6119 3.11311 Vertex 3524 -1.89638 19.609 2.93014 Vertex 3525 -1.89462 18.7339 2.97665 Vertex 3526 -1.89462 19.8854 2.97662 Vertex 3527 -1.88929 14.7954 1.54263 Vertex 3528 -1.88797 18.0853 3.59162 Vertex 3529 -1.88696 15.0857 2.52937 Vertex 3530 -1.88573 12.4812 -0.053921 Vertex 3531 -1.88538 19.1269 3.34546 Vertex 3532 -1.88491 11.8013 -0.082061 Vertex 3533 -1.88476 14.7017 2.24035 Vertex 3534 -1.88416 15.833 -2.48162 Vertex 3535 -1.88402 11.7809 -0.093635 Vertex 3536 -1.87916 15.4545 2.84222 Vertex 3537 -1.87867 19.4128 2.37497 Vertex 3538 -1.87791 22.0385 -2.75298 Vertex 3539 -1.87678 16.6511 -1.80202 Vertex 3540 -1.87557 15.2836 2.68792 Vertex 3541 -1.87229 16.022 2.99229 Vertex 3542 -1.87183 17.0211 3.12566 Vertex 3543 -1.87121 20.9002 3.2301 Vertex 3544 -1.86984 19.3585 2.37892 Vertex 3545 -1.86513 23.2137 0.654922 Vertex 3546 -1.86436 23.135 -1.0072 Vertex 3547 -1.86307 22.1388 -2.40843 Vertex 3548 -1.86124 15.6079 2.96373 Vertex 3549 -1.86092 18.5172 2.83956 Vertex 3550 -1.86091 20.1021 2.83952 Vertex 3551 -1.86057 21.5826 2.80926 Vertex 3552 -1.85867 18.1889 1.83141 Vertex 3553 -1.85866 20.4304 1.83135 Vertex 3554 -1.85754 2.26245 5.09119 Vertex 3555 -1.85671 18.94 3.10292 Vertex 3556 -1.8567 19.6793 3.10291 Vertex 3557 -1.85537 17.4652 -1.9304 Vertex 3558 -1.85498 14.8153 0.690851 Vertex 3559 -1.85406 -24.2144 -3.29388 Vertex 3560 -1.85353 19.1609 3.31957 Vertex 3561 -1.84836 17.1682 3.21515 Vertex 3562 -1.84791 19.1673 2.76533 Vertex 3563 -1.84628 19.1641 3.31113 Vertex 3564 -1.8444 19.1663 3.12638 Vertex 3565 -1.8443 -6.48107 4.07782 Vertex 3566 -1.84341 17.2558 3.28036 Vertex 3567 -1.83799 17.1982 3.23715 Vertex 3568 -1.83337 16.9852 -2.16686 Vertex 3569 -1.83265 12.0125 -0.000706 Vertex 3570 -1.83128 22.1358 -2.32746 Vertex 3571 -1.83064 18.8397 3.5407 Vertex 3572 -1.83041 22.1458 -2.29606 Vertex 3573 -1.8301 19.459 2.39687 Vertex 3574 -1.82919 18.8278 3.54333 Vertex 3575 -1.82874 -23.8152 -3.28843 Vertex 3576 -1.82666 18.8527 3.53811 Vertex 3577 -1.82496 14.8303 1.26287 Vertex 3578 -1.82482 19.9482 3.21522 Vertex 3579 -1.82374 16.5655 2.94824 Vertex 3580 -1.82231 18.817 3.546 Vertex 3581 -1.82221 14.3009 -2.62608 Vertex 3582 -1.82181 15.7439 3.05243 Vertex 3583 -1.81961 16.0576 2.98864 Vertex 3584 -1.81635 14.852 0.987641 Vertex 3585 -1.81317 -22.3595 -4.88473 Vertex 3586 -1.81255 14.4415 0.554714 Vertex 3587 -1.81147 -27.5065 -3.39832 Vertex 3588 -1.80859 21.034 3.18265 Vertex 3589 -1.80834 12.8922 0.094476 Vertex 3590 -1.80703 17.2714 3.29425 Vertex 3591 -1.80674 18.8945 3.52829 Vertex 3592 -1.80516 18.7172 3.55861 Vertex 3593 -1.80237 16.2916 2.93389 Vertex 3594 -1.80078 14.608 2.15071 Vertex 3595 -1.80028 18.6509 2.99985 Vertex 3596 -1.80027 19.9684 2.99981 Vertex 3597 -1.79818 19.3097 3.20297 Vertex 3598 -1.79616 17.8767 3.57367 Vertex 3599 -1.79447 18.865 3.11823 Vertex 3600 -1.79446 19.7544 3.1182 Vertex 3601 -1.79306 19.2427 3.20423 Vertex 3602 -1.79306 19.3766 3.20422 Vertex 3603 -1.79189 15.8258 3.09935 Vertex 3604 -1.79172 19.9419 -3.38087 Vertex 3605 -1.78935 16.8093 2.99942 Vertex 3606 -1.78892 4.66595 4.768 Vertex 3607 -1.78883 14.6635 1.75923 Vertex 3608 -1.78675 17.2673 3.28907 Vertex 3609 -1.78243 19.9051 3.18142 Vertex 3610 -1.78228 19.8036 3.22073 Vertex 3611 -1.78221 17.0972 -1.91025 Vertex 3612 -1.78208 20.2879 3.56635 Vertex 3613 -1.78112 16.4455 -1.91395 Vertex 3614 -1.78093 19.8916 3.18251 Vertex 3615 -1.78091 17.1485 3.18192 Vertex 3616 -1.77944 19.8798 3.18503 Vertex 3617 -1.77891 19.8443 3.20087 Vertex 3618 -1.77826 19.7611 3.22985 Vertex 3619 -1.77796 19.8697 3.18897 Vertex 3620 -1.77784 19.1774 3.20797 Vertex 3621 -1.77784 19.442 3.20796 Vertex 3622 -1.77771 18.5286 3.58116 Vertex 3623 -1.77551 21.8428 2.68186 Vertex 3624 -1.77519 13.8285 0.393545 Vertex 3625 -1.77184 20.3748 3.56234 Vertex 3626 -1.77147 15.8534 3.10449 Vertex 3627 -1.77105 19.309 2.46677 Vertex 3628 -1.77087 18.965 3.51124 Vertex 3629 -1.77002 -13.8469 -5.28026 Vertex 3630 -1.7699 20.2327 3.54048 Vertex 3631 -1.76685 19.7169 3.22822 Vertex 3632 -1.76445 13.312 0.240132 Vertex 3633 -1.76226 18.2099 2.50275 Vertex 3634 -1.76225 20.4094 2.50269 Vertex 3635 -1.76018 8.04807 -6.14647 Vertex 3636 -1.75865 19.6923 3.22444 Vertex 3637 -1.75643 18.3111 2.69504 Vertex 3638 -1.75642 20.3082 2.69499 Vertex 3639 -1.75575 19.6829 2.67416 Vertex 3640 -1.75391 2.2504 5.03539 Vertex 3641 -1.75365 19.6873 3.21849 Vertex 3642 -1.75287 19.1153 3.21411 Vertex 3643 -1.75287 19.504 3.2141 Vertex 3644 -1.75269 19.6842 3.03506 Vertex 3645 -1.75099 18.1358 2.29871 Vertex 3646 -1.75098 20.4835 2.29865 Vertex 3647 -1.75076 16.566 2.93199 Vertex 3648 -1.7489 16.3024 2.92708 Vertex 3649 -1.74848 14.7207 -2.48043 Vertex 3650 -1.74547 3.45723 4.84657 Vertex 3651 -1.7412 16.107 2.97485 Vertex 3652 -1.74068 16.5659 2.93569 Vertex 3653 -1.73938 20.167 3.50775 Vertex 3654 -1.73917 20.4934 3.52846 Vertex 3655 -1.73878 16.3064 2.9313 Vertex 3656 -1.73365 18.4369 2.87085 Vertex 3657 -1.73365 20.1824 2.87081 Vertex 3658 -1.73154 14.5826 2.38827 Vertex 3659 -1.73123 -22.2784 -3.26744 Vertex 3660 -1.731 19.0325 3.48129 Vertex 3661 -1.73026 1.18158 -5.50375 Vertex 3662 -1.72853 17.2588 3.27161 Vertex 3663 -1.72811 12.4145 0.150431 Vertex 3664 -1.72291 18.3448 3.60811 Vertex 3665 -1.7229 18.0905 2.08795 Vertex 3666 -1.72289 20.5287 2.08789 Vertex 3667 -1.7222 21.2852 3.12926 Vertex 3668 -1.7216 18.8009 3.13614 Vertex 3669 -1.72159 19.8185 3.13612 Vertex 3670 -1.72101 17.2293 3.25187 Vertex 3671 -1.72092 15.9154 3.09509 Vertex 3672 -1.72002 20.6115 3.4918 Vertex 3673 -1.71948 21.7892 -3.05052 Vertex 3674 -1.71879 19.0581 3.22249 Vertex 3675 -1.71879 19.5613 3.22248 Vertex 3676 -1.71808 14.6988 1.4173 Vertex 3677 -1.71441 20.7291 3.45238 Vertex 3678 -1.71396 -25.9697 -3.37733 Vertex 3679 -1.7096 14.7115 2.50578 Vertex 3680 -1.70444 17.6611 3.50888 Vertex 3681 -1.70392 16.8057 2.97947 Vertex 3682 -1.70363 16.5558 2.97955 Vertex 3683 -1.70136 14.7382 0.88898 Vertex 3684 -1.70046 15.2372 -2.32701 Vertex 3685 -1.6996 22.0945 2.53771 Vertex 3686 -1.6992 17.0231 3.08743 Vertex 3687 -1.69761 16.1354 2.96954 Vertex 3688 -1.69448 20.7991 3.40872 Vertex 3689 -1.69448 18.5842 3.02585 Vertex 3690 -1.69448 20.0352 3.02582 Vertex 3691 -1.69422 16.8026 2.98256 Vertex 3692 -1.6939 0.598831 -5.11583 Vertex 3693 -1.69272 19.5291 2.47629 Vertex 3694 -1.69268 14.9517 2.66028 Vertex 3695 -1.69178 16.253 -2.02816 Vertex 3696 -1.69085 16.2828 2.97602 Vertex 3697 -1.69053 20.091 3.46814 Vertex 3698 -1.68988 14.739 1.16265 Vertex 3699 -1.68984 -12.6992 2.5306 Vertex 3700 -1.68971 17.4916 3.43627 Vertex 3701 -1.68885 16.1426 2.97269 Vertex 3702 -1.68829 -10.0787 -6.05037 Vertex 3703 -1.6874 16.764 2.99708 Vertex 3704 -1.68713 19.097 3.43845 Vertex 3705 -1.68623 17.3276 3.3224 Vertex 3706 -1.68444 2.14296 -5.6208 Vertex 3707 -1.68404 -25.5711 -3.3471 Vertex 3708 -1.6805 23.3306 -0.050574 Vertex 3709 -1.67868 18.0753 1.87566 Vertex 3710 -1.67867 20.5439 1.8756 Vertex 3711 -1.67804 14.504 2.32628 Vertex 3712 -1.67774 17.1955 3.21117 Vertex 3713 -1.67642 19.007 3.23291 Vertex 3714 -1.67642 19.6124 3.23289 Vertex 3715 -1.67418 -11.7335 -6.09934 Vertex 3716 -1.67113 15.1583 2.83113 Vertex 3717 -1.66948 14.5215 2.03304 Vertex 3718 -1.66737 15.8502 -2.16584 Vertex 3719 -1.66279 19.1315 3.41236 Vertex 3720 -1.66024 20.8214 3.36082 Vertex 3721 -1.6598 -0.834047 4.44957 Vertex 3722 -1.6598 0.583952 4.44959 Vertex 3723 -1.6592 19.1388 2.85758 Vertex 3724 -1.65877 2.26427 5.11082 Vertex 3725 -1.65798 19.1358 3.40302 Vertex 3726 -1.65679 19.1382 3.2181 Vertex 3727 -1.6542 -0.833917 -4.65355 Vertex 3728 -1.6542 0.584082 -4.65353 Vertex 3729 -1.64632 12.8254 0.298828 Vertex 3730 -1.64495 15.3313 3.01833 Vertex 3731 -1.64415 20.0294 3.41312 Vertex 3732 -1.64308 15.655 3.22924 Vertex 3733 -1.64076 18.1657 3.63946 Vertex 3734 -1.64024 16.0117 3.07113 Vertex 3735 -1.63996 15.7489 3.26876 Vertex 3736 -1.63989 18.7493 3.15623 Vertex 3737 -1.63988 19.87 3.1562 Vertex 3738 -1.63963 16.5357 3.06359 Vertex 3739 -1.63944 14.3748 0.759066 Vertex 3740 -1.63566 17.1391 3.13747 Vertex 3741 -1.6356 15.4969 3.15103 Vertex 3742 -1.63425 16.7594 3.08052 Vertex 3743 -1.63362 22.9724 -1.63633 Vertex 3744 -1.63341 -3.66992 -4.65662 Vertex 3745 -1.63341 -2.25192 -4.6566 Vertex 3746 -1.63283 22.3375 2.37682 Vertex 3747 -1.63182 17.4842 3.43883 Vertex 3748 -1.62996 22.5426 -2.15751 Vertex 3749 -1.62867 21.5434 3.03602 Vertex 3750 -1.62682 18.9633 3.2451 Vertex 3751 -1.62682 19.656 3.24508 Vertex 3752 -1.62657 1.21441 5.00383 Vertex 3753 -1.62625 15.7786 3.26957 Vertex 3754 -1.62552 19.2696 2.56202 Vertex 3755 -1.6208 13.5146 -3.28495 Vertex 3756 -1.61911 13.4943 -3.29652 Vertex 3757 -1.61697 20.9569 3.30085 Vertex 3758 -1.61555 19.35 -3.43355 Vertex 3759 -1.61436 0.612496 4.76566 Vertex 3760 -1.61328 -3.67005 4.45599 Vertex 3761 -1.61328 -2.25205 4.45601 Vertex 3762 -1.61088 17.4757 3.44003 Vertex 3763 -1.60838 17.0215 3.06951 Vertex 3764 -1.60611 4.67001 4.70145 Vertex 3765 -1.60512 16.2316 3.06124 Vertex 3766 -1.60504 19.3097 3.30271 Vertex 3767 -1.60482 14.5695 1.62546 Vertex 3768 -1.60245 19.2758 3.30334 Vertex 3769 -1.60245 19.3436 3.30334 Vertex 3770 -1.60231 13.7617 0.597897 Vertex 3771 -1.60101 19.7713 3.33912 Vertex 3772 -1.60052 -7.48821 -5.80326 Vertex 3773 -1.60034 16.5047 -3.96301 Vertex 3774 -1.60025 19.9823 3.34269 Vertex 3775 -1.60003 19.7476 3.33233 Vertex 3776 -1.5994 17.0164 3.07191 Vertex 3777 -1.59919 -24.2339 -3.32883 Vertex 3778 -1.59907 19.8126 3.34564 Vertex 3779 -1.59873 17.1574 3.14952 Vertex 3780 -1.59866 18.2438 2.73383 Vertex 3781 -1.59865 20.3755 2.73377 Vertex 3782 -1.59851 19.7378 2.78096 Vertex 3783 -1.59832 -9.59247 3.72333 Vertex 3784 -1.59831 17.4596 3.42851 Vertex 3785 -1.59702 13.2452 0.444484 Vertex 3786 -1.59689 16.0648 3.05938 Vertex 3787 -1.59612 19.7415 3.32526 Vertex 3788 -1.59593 5.38226 -5.60642 Vertex 3789 -1.59575 18.3781 2.90475 Vertex 3790 -1.59574 20.2413 2.90471 Vertex 3791 -1.59561 19.7382 3.14147 Vertex 3792 -1.59499 16.9288 -2.06602 Vertex 3793 -1.59474 19.2427 3.30524 Vertex 3794 -1.59474 19.3766 3.30524 Vertex 3795 -1.59294 16.9768 3.08609 Vertex 3796 -1.59281 -13.1294 -4.98923 Vertex 3797 -1.5926 19.8527 3.33987 Vertex 3798 -1.59089 6.31946 4.9391 Vertex 3799 -1.59088 16.0747 3.05984 Vertex 3800 -1.59014 17.3568 -3.94348 Vertex 3801 -1.59004 17.2794 3.37943 Vertex 3802 -1.58849 18.1358 2.54547 Vertex 3803 -1.58848 20.4835 2.5454 Vertex 3804 -1.58427 21.35 -3.30994 Vertex 3805 -1.5821 19.2113 3.30835 Vertex 3806 -1.5821 19.4081 3.30834 Vertex 3807 -1.58161 19.8918 3.32182 Vertex 3808 -1.58119 17.3499 -2.12512 Vertex 3809 -1.57985 18.5353 3.05404 Vertex 3810 -1.57985 20.0841 3.054 Vertex 3811 -1.57909 -3.66992 -4.33347 Vertex 3812 -1.57909 -2.25192 -4.33345 Vertex 3813 -1.57909 -0.833921 -4.33343 Vertex 3814 -1.57909 0.584077 -4.33341 Vertex 3815 -1.57894 15.932 -3.67969 Vertex 3816 -1.57809 13.7258 -3.20359 Vertex 3817 -1.57805 15.8488 3.24238 Vertex 3818 -1.57707 19.9519 3.30724 Vertex 3819 -1.57685 -13.1939 2.41279 Vertex 3820 -1.57543 19.9163 3.31122 Vertex 3821 -1.57518 3.47644 4.9251 Vertex 3822 -1.57478 17.2506 3.36193 Vertex 3823 -1.5746 19.9381 3.30676 Vertex 3824 -1.57415 -3.67004 4.13388 Vertex 3825 -1.57415 -2.25204 4.1339 Vertex 3826 -1.57415 -0.834042 4.13392 Vertex 3827 -1.57415 0.583956 4.13394 Vertex 3828 -1.57405 19.9263 3.30809 Vertex 3829 -1.57184 -23.8351 -3.30151 Vertex 3830 -1.57121 18.9282 3.25878 Vertex 3831 -1.5712 19.6911 3.25876 Vertex 3832 -1.56954 22.3245 -2.84237 Vertex 3833 -1.56795 22.5665 2.17793 Vertex 3834 -1.56713 15.5269 -3.37354 Vertex 3835 -1.56551 18.0566 2.34431 Vertex 3836 -1.5655 20.5627 2.34424 Vertex 3837 -1.56489 15.2895 -3.04454 Vertex 3838 -1.56484 19.1823 3.31259 Vertex 3839 -1.56484 19.437 3.31258 Vertex 3840 -1.56467 21.2055 3.22883 Vertex 3841 -1.56392 22.4278 -2.67225 Vertex 3842 -1.56178 14.6107 1.32698 Vertex 3843 -1.56111 5.41059 4.93892 Vertex 3844 -1.56079 17.1318 3.11535 Vertex 3845 -1.55956 3.34044 -5.5179 Vertex 3846 -1.55902 17.359 3.43395 Vertex 3847 -1.55698 17.1356 3.1188 Vertex 3848 -1.55559 14.6435 1.08259 Vertex 3849 -1.55349 17.9829 3.63558 Vertex 3850 -1.55216 17.1256 3.1174 Vertex 3851 -1.55135 18.7115 3.178 Vertex 3852 -1.55134 19.9078 3.17797 Vertex 3853 -1.54836 18.4883 -3.62108 Vertex 3854 -1.54782 14.4335 2.26505 Vertex 3855 -1.54479 15.7472 -2.71817 Vertex 3856 -1.54408 17.2111 3.31463 Vertex 3857 -1.54368 14.478 2.5058 Vertex 3858 -1.5434 19.1564 3.31786 Vertex 3859 -1.5434 19.4629 3.31785 Vertex 3860 -1.54226 -6.47624 4.00547 Vertex 3861 -1.53984 20.1741 3.70902 Vertex 3862 -1.53474 14.85 2.76936 Vertex 3863 -1.53367 20.2589 3.70935 Vertex 3864 -1.53238 18.887 3.56704 Vertex 3865 -1.53172 14.6079 2.62049 Vertex 3866 -1.53159 18.8741 3.56735 Vertex 3867 -1.53028 18.0084 2.13531 Vertex 3868 -1.53027 20.6109 2.13524 Vertex 3869 -1.52974 20.1226 3.67867 Vertex 3870 -1.52801 21.8087 2.90295 Vertex 3871 -1.52427 18.8635 3.56764 Vertex 3872 -1.52174 19.5614 2.56725 Vertex 3873 -1.52021 11.7368 0.081587 Vertex 3874 -1.51982 11.7165 0.070014 Vertex 3875 -1.51829 19.1344 3.32404 Vertex 3876 -1.51829 19.485 3.32403 Vertex 3877 -1.51743 16.7884 3.19162 Vertex 3878 -1.51631 18.9226 3.56327 Vertex 3879 -1.51231 16.5184 3.18214 Vertex 3880 -1.51122 20.3771 3.67967 Vertex 3881 -1.51094 18.9025 3.27359 Vertex 3882 -1.51094 19.7168 3.27357 Vertex 3883 -1.51062 22.4025 -2.53831 Vertex 3884 -1.51043 18.8554 3.5679 Vertex 3885 -1.50682 16.8999 -2.39442 Vertex 3886 -1.50495 22.7814 1.94106 Vertex 3887 -1.50465 20.6201 3.61062 Vertex 3888 -1.5025 20.0707 3.63454 Vertex 3889 -1.50155 20.4975 3.64675 Vertex 3890 -1.49933 4.98294 4.96264 Vertex 3891 -1.49792 17.1608 3.23754 Vertex 3892 -1.4959 6.47029 5.06669 Vertex 3893 -1.49536 15.9595 3.18719 Vertex 3894 -1.49479 18.766 3.5731 Vertex 3895 -1.4908 14.4422 1.88735 Vertex 3896 -1.49013 19.1166 3.33096 Vertex 3897 -1.49013 19.5028 3.33095 Vertex 3898 -1.48988 20.6943 3.56852 Vertex 3899 -1.48874 15.0706 2.9781 Vertex 3900 -1.48656 21.4657 3.13016 Vertex 3901 -1.48596 22.4012 -2.42155 Vertex 3902 -1.48463 22.3936 -2.45474 Vertex 3903 -1.48441 14.1278 -3.05245 Vertex 3904 -1.48366 17.9921 1.92361 Vertex 3905 -1.48365 20.6271 1.92354 Vertex 3906 -1.48338 17.0069 3.19346 Vertex 3907 -1.48338 18.981 3.55602 Vertex 3908 -1.48174 17.4894 3.52547 Vertex 3909 -1.47736 18.5954 3.58323 Vertex 3910 -1.47558 22.0368 2.76383 Vertex 3911 -1.47433 -22.2983 -3.28052 Vertex 3912 -1.47387 11.948 0.162942 Vertex 3913 -1.47272 17.1308 3.19784 Vertex 3914 -1.47228 20.7208 -3.53124 Vertex 3915 -1.46848 17.1211 3.19554 Vertex 3916 -1.46804 16.1969 3.16502 Vertex 3917 -1.4611 17.7963 3.59646 Vertex 3918 -1.45994 -12.5875 2.70649 Vertex 3919 -1.45963 19.1036 3.33846 Vertex 3920 -1.45962 19.5158 3.33845 Vertex 3921 -1.4592 18.5054 3.0837 Vertex 3922 -1.4592 20.1139 3.08366 Vertex 3923 -1.45816 18.6885 3.20091 Vertex 3924 -1.45816 19.9308 3.20088 Vertex 3925 -1.45812 20.0184 3.57665 Vertex 3926 -1.45789 -21.4916 -0.735368 Vertex 3927 -1.45724 20.72 3.52045 Vertex 3928 -1.45353 4.73062 -5.62246 Vertex 3929 -1.45198 16.0202 3.15881 Vertex 3930 -1.45061 18.3422 2.94043 Vertex 3931 -1.4506 20.2771 2.94039 Vertex 3932 -1.45001 19.0382 3.53581 Vertex 3933 -1.44793 16.0308 3.15725 Vertex 3934 -1.44751 18.8869 3.28919 Vertex 3935 -1.44751 19.7325 3.28916 Vertex 3936 -1.44722 23.031 1.53065 Vertex 3937 -1.44662 14.4936 1.53985 Vertex 3938 -1.44461 16.7321 -2.19873 Vertex 3939 -1.44345 15.7698 3.49405 Vertex 3940 -1.44051 19.7402 2.85416 Vertex 3941 -1.44023 19.7499 3.40663 Vertex 3942 -1.4384 19.7403 3.21442 Vertex 3943 -1.43831 19.7435 3.39858 Vertex 3944 -1.43778 19.7714 3.41598 Vertex 3945 -1.43663 15.7978 3.48753 Vertex 3946 -1.43514 18.4285 3.61794 Vertex 3947 -1.43468 4.53792 -5.415 Vertex 3948 -1.43279 4.6941 4.77574 Vertex 3949 -1.4326 18.2027 2.77465 Vertex 3950 -1.43259 20.4166 2.77459 Vertex 3951 -1.43095 19.8082 3.42663 Vertex 3952 -1.43031 22.6438 -2.16719 Vertex 3953 -1.42752 19.0956 3.34635 Vertex 3954 -1.42751 19.5237 3.34634 Vertex 3955 -1.42716 23.2997 -4.89584 Vertex 3956 -1.42649 19.9789 3.51097 Vertex 3957 -1.42578 20.8576 3.4476 Vertex 3958 -1.42364 22.0236 -3.16275 Vertex 3959 -1.42251 17.26 3.56062 Vertex 3960 -1.4217 15.6591 3.46823 Vertex 3961 -1.42106 14.5312 1.27168 Vertex 3962 -1.42084 19.8442 3.4244 Vertex 3963 -1.41618 19.0943 3.50263 Vertex 3964 -1.41247 14.3995 2.45526 Vertex 3965 -1.40967 17.2322 3.54534 Vertex 3966 -1.40837 17.6929 3.57602 Vertex 3967 -1.40761 19.9522 3.4375 Vertex 3968 -1.40745 19.8793 3.40929 Vertex 3969 -1.40561 18.0905 2.59043 Vertex 3970 -1.40559 20.5288 2.59036 Vertex 3971 -1.40386 22.4184 -2.86419 Vertex 3972 -1.40202 19.2713 2.63387 Vertex 3973 -1.4012 23.397 -5.10793 Vertex 3974 -1.40092 17.3376 3.59945 Vertex 3975 -1.40071 23.2012 -4.6514 Vertex 3976 -1.39984 14.5387 -2.90405 Vertex 3977 -1.39934 22.5175 -2.69597 Vertex 3978 -1.39927 19.9013 3.40042 Vertex 3979 -1.39867 19.3097 3.371 Vertex 3980 -1.39856 19.1249 3.48117 Vertex 3981 -1.39764 19.1331 2.92622 Vertex 3982 -1.39734 19.9327 3.39969 Vertex 3983 -1.39714 19.1302 3.47145 Vertex 3984 -1.39684 19.1329 3.28646 Vertex 3985 -1.3963 19.91 3.39779 Vertex 3986 -1.39579 22.2894 2.59895 Vertex 3987 -1.39566 19.9205 3.39755 Vertex 3988 -1.39549 21.1069 3.34995 Vertex 3989 -1.39527 17.6727 3.57427 Vertex 3990 -1.39475 23.3154 0.946713 Vertex 3991 -1.3946 19.093 3.35445 Vertex 3992 -1.39459 19.5264 3.35443 Vertex 3993 -1.39371 15.2697 3.2467 Vertex 3994 -1.3928 -21.4147 -1.03516 Vertex 3995 -1.39137 -30.307 -3.72014 Vertex 3996 -1.391 15.8579 3.43053 Vertex 3997 -1.38582 17.6223 3.59296 Vertex 3998 -1.38321 12.35 0.31408 Vertex 3999 -1.38265 21.7377 3.00482 Vertex 4000 -1.38248 18.8816 3.30517 Vertex 4001 -1.38248 19.7377 3.30515 Vertex 4002 -1.37991 17.1954 3.49231 Vertex 4003 -1.37203 14.7141 2.91863 Vertex 4004 -1.37137 15.4659 3.41008 Vertex 4005 -1.3703 18.0084 2.3923 Vertex 4006 -1.37029 20.6109 2.39223 Vertex 4007 -1.36814 18.2652 3.67724 Vertex 4008 -1.36803 14.3536 2.12409 Vertex 4009 -1.36465 23.607 -4.60149 Vertex 4010 -1.36262 18.6808 3.2244 Vertex 4011 -1.36262 19.9386 3.22436 Vertex 4012 -1.36168 19.0956 3.36254 Vertex 4013 -1.36167 19.5237 3.36253 Vertex 4014 -1.35535 -11.6515 3.06806 Vertex 4015 -1.35533 14.4973 2.77853 Vertex 4016 -1.35454 19.5229 2.62421 Vertex 4017 -1.35275 23.6603 -4.89928 Vertex 4018 -1.3507 20.0758 -3.66219 Vertex 4019 -1.34909 6.71821 5.02003 Vertex 4020 -1.34893 23.0478 -5.10143 Vertex 4021 -1.34826 22.4838 -2.56583 Vertex 4022 -1.34688 14.3876 1.80127 Vertex 4023 -1.34662 23.3096 -0.874511 Vertex 4024 -1.34493 17.465 3.66181 Vertex 4025 -1.33889 12.5013 -1.62561 Vertex 4026 -1.33551 18.4954 3.11411 Vertex 4027 -1.3355 20.1239 3.11406 Vertex 4028 -1.33323 17.1496 3.40153 Vertex 4029 -1.33299 16.777 3.35632 Vertex 4030 -1.33133 16.5071 -2.3084 Vertex 4031 -1.32958 14.9586 -2.7584 Vertex 4032 -1.32957 19.1036 3.37043 Vertex 4033 -1.32957 19.5158 3.37042 Vertex 4034 -1.3292 23.5204 -4.33204 Vertex 4035 -1.32859 21.9691 2.86957 Vertex 4036 -1.32755 17.9583 2.18515 Vertex 4037 -1.32753 20.661 2.18508 Vertex 4038 -1.32718 22.4764 -2.44965 Vertex 4039 -1.32513 14.9207 3.12934 Vertex 4040 -1.3242 22.4701 -2.48373 Vertex 4041 -1.3234 22.9482 -4.87701 Vertex 4042 -1.32318 21.3686 3.23779 Vertex 4043 -1.32211 20.146 3.82607 Vertex 4044 -1.32185 23.1016 -4.37459 Vertex 4045 -1.32184 20.0651 3.81358 Vertex 4046 -1.3217 16.5039 3.3352 Vertex 4047 -1.31785 23.16 -5.26138 Vertex 4048 -1.31745 18.8869 3.32116 Vertex 4049 -1.31745 19.7325 3.32114 Vertex 4050 -1.31529 14.4359 1.50241 Vertex 4051 -1.31462 20.263 3.81217 Vertex 4052 -1.31381 20.0205 3.77469 Vertex 4053 -1.31348 16.9978 3.35072 Vertex 4054 -1.31267 20.4974 3.78028 Vertex 4055 -1.31147 20.3802 3.7969 Vertex 4056 -1.31131 12.761 0.462476 Vertex 4057 -1.30944 12.361 -1.36256 Vertex 4058 -1.30834 17.122 3.35409 Vertex 4059 -1.30655 15.9503 3.32305 Vertex 4060 -1.30526 17.1128 3.34998 Vertex 4061 -1.30271 14.3103 0.922714 Vertex 4062 -1.30181 18.3301 2.97702 Vertex 4063 -1.3018 20.2892 2.97697 Vertex 4064 -1.29923 -9.53645 3.60708 Vertex 4065 -1.29906 19.1166 3.37793 Vertex 4066 -1.29906 19.5028 3.37792 Vertex 4067 -1.29716 19.9673 3.72052 Vertex 4068 -1.29625 20.5694 3.75098 Vertex 4069 -1.29585 18.1106 3.70253 Vertex 4070 -1.28717 15.475 -2.60498 Vertex 4071 -1.28179 6.82776 4.84247 Vertex 4072 -1.28175 19.6903 2.89376 Vertex 4073 -1.28104 19.6903 3.25392 Vertex 4074 -1.28021 19.6932 3.43845 Vertex 4075 -1.2796 16.1787 3.28736 Vertex 4076 -1.27926 19.699 3.44736 Vertex 4077 -1.2784 17.9414 1.97407 Vertex 4078 -1.27839 20.6779 1.974 Vertex 4079 -1.27716 19.7173 3.45882 Vertex 4080 -1.27437 16.0881 -2.44382 Vertex 4081 -1.2739 19.7481 3.47283 Vertex 4082 -1.27187 19.9058 3.65108 Vertex 4083 -1.2709 19.1344 3.38485 Vertex 4084 -1.2709 19.485 3.38484 Vertex 4085 -1.26961 14.318 2.00957 Vertex 4086 -1.26709 18.6885 3.24788 Vertex 4087 -1.26708 19.9308 3.24785 Vertex 4088 -1.26699 19.778 3.47432 Vertex 4089 -1.26687 17.251 -2.35172 Vertex 4090 -1.26685 13.6972 0.761545 Vertex 4091 -1.26625 -21.6502 -5.13275 Vertex 4092 -1.26421 13.1808 0.608134 Vertex 4093 -1.26289 16.0013 3.26785 Vertex 4094 -1.26235 18.1889 2.81651 Vertex 4095 -1.26234 20.4304 2.81645 Vertex 4096 -1.26221 20.5961 3.70901 Vertex 4097 -1.26 16.0111 3.26491 Vertex 4098 -1.25965 17.5963 3.71472 Vertex 4099 -1.25916 23.8393 -4.4419 Vertex 4100 -1.25779 14.338 2.65833 Vertex 4101 -1.25643 19.807 3.4633 Vertex 4102 -1.25512 19.8693 3.57747 Vertex 4103 -1.25402 18.9025 3.33675 Vertex 4104 -1.25402 19.7168 3.33673 Vertex 4105 -1.25198 14.5685 1.10039 Vertex 4106 -1.24949 19.8247 3.45656 Vertex 4107 -1.24823 -6.50608 4.13236 Vertex 4108 -1.24733 23.8561 -4.77555 Vertex 4109 -1.24718 12.2607 -1.14015 Vertex 4110 -1.2469 19.8578 3.49966 Vertex 4111 -1.24638 23.4006 -4.09093 Vertex 4112 -1.24619 19.8311 3.45412 Vertex 4113 -1.24579 19.1564 3.39103 Vertex 4114 -1.24579 19.4629 3.39102 Vertex 4115 -1.24467 -13.46 2.32892 Vertex 4116 -1.2441 19.8387 3.45486 Vertex 4117 -1.24323 19.8476 3.45879 Vertex 4118 -1.24126 22.8612 -4.58811 Vertex 4119 -1.23778 14.3578 1.77479 Vertex 4120 -1.23753 17.2349 3.75608 Vertex 4121 -1.23598 6.77915 4.54701 Vertex 4122 -1.23554 19.4513 2.65104 Vertex 4123 -1.23501 20.7361 3.62288 Vertex 4124 -1.2305 14.3035 2.33568 Vertex 4125 -1.22687 17.2084 3.74123 Vertex 4126 -1.22543 17.3114 3.78082 Vertex 4127 -1.22434 19.1823 3.3963 Vertex 4128 -1.22434 19.437 3.39629 Vertex 4129 -1.22333 15.796 3.69142 Vertex 4130 -1.22253 23.7643 -4.15932 Vertex 4131 -1.21953 19.4152 -3.70281 Vertex 4132 -1.21879 15.8234 3.68091 Vertex 4133 -1.21825 17.9648 3.6938 Vertex 4134 -1.2181 18.0754 2.63652 Vertex 4135 -1.21809 20.544 2.63646 Vertex 4136 -1.21798 16.5351 -4.15741 Vertex 4137 -1.21508 21.4985 -3.49464 Vertex 4138 -1.21464 20.9895 3.49261 Vertex 4139 -1.21463 15.1169 3.41067 Vertex 4140 -1.21454 15.9239 -3.85193 Vertex 4141 -1.21182 18.5054 3.14452 Vertex 4142 -1.21181 20.1139 3.14447 Vertex 4143 -1.20888 21.6426 3.1111 Vertex 4144 -1.20777 12.7302 -2.01553 Vertex 4145 -1.20762 23.477 -5.33031 Vertex 4146 -1.20709 19.2113 3.40054 Vertex 4147 -1.20709 19.4081 3.40053 Vertex 4148 -1.20589 18.8022 3.57277 Vertex 4149 -1.20479 19.3205 2.65031 Vertex 4150 -1.20454 14.5442 3.10809 Vertex 4151 -1.20326 17.4017 -4.16339 Vertex 4152 -1.20247 18.9753 3.54262 Vertex 4153 -1.20062 18.6514 3.59139 Vertex 4154 -1.19907 15.4944 -3.56792 Vertex 4155 -1.19831 15.6789 3.67411 Vertex 4156 -1.1977 18.9645 3.53953 Vertex 4157 -1.19545 19.0015 3.54576 Vertex 4158 -1.19445 19.2427 3.40364 Vertex 4159 -1.19445 19.3766 3.40364 Vertex 4160 -1.19424 22.0632 -3.23088 Vertex 4161 -1.19376 18.9283 3.35157 Vertex 4162 -1.19376 19.6911 3.35155 Vertex 4163 -1.19058 17.4379 3.81548 Vertex 4164 -1.18984 17.1714 3.67379 Vertex 4165 -1.18935 18.9546 3.53833 Vertex 4166 -1.18675 19.2758 3.40554 Vertex 4167 -1.18675 19.3436 3.40554 Vertex 4168 -1.18415 19.3097 3.40617 Vertex 4169 -1.18236 22.4308 -2.9496 Vertex 4170 -1.18111 20.8314 -3.71129 Vertex 4171 -1.18044 14.3797 2.9799 Vertex 4172 -1.18029 14.7087 3.28486 Vertex 4173 -1.17743 18.9457 3.53903 Vertex 4174 -1.17691 18.5019 3.63473 Vertex 4175 -1.17664 19.043 3.54893 Vertex 4176 -1.1741 23.6721 -5.18989 Vertex 4177 -1.17395 15.8801 3.6063 Vertex 4178 -1.1739 18.7115 3.27079 Vertex 4179 -1.1739 19.9078 3.27076 Vertex 4180 -1.17304 17.882 3.69195 Vertex 4181 -1.17166 14.3021 1.98857 Vertex 4182 -1.17159 15.2465 -3.30537 Vertex 4183 -1.17039 18.5238 -3.86987 Vertex 4184 -1.17016 17.9922 2.4415 Vertex 4185 -1.17014 20.6271 2.44144 Vertex 4186 -1.16647 22.2805 2.66827 Vertex 4187 -1.16579 19.3678 2.65738 Vertex 4188 -1.16097 21.877 -3.38221 Vertex 4189 -1.16023 19.0845 3.53999 Vertex 4190 -1.16021 17.8624 3.69696 Vertex 4191 -1.15664 21.9466 2.92126 Vertex 4192 -1.15389 22.9823 -4.14796 Vertex 4193 -1.153 18.3422 3.0136 Vertex 4194 -1.15299 20.2771 3.01355 Vertex 4195 -1.15089 17.8123 3.71904 Vertex 4196 -1.14994 -21.4987 -1.24995 Vertex 4197 -1.14948 22.8024 -4.35597 Vertex 4198 -1.14624 19.1259 3.51896 Vertex 4199 -1.14585 15.695 -3.00421 Vertex 4200 -1.14521 -12.6054 2.63504 Vertex 4201 -1.14458 22.5651 2.41699 Vertex 4202 -1.14375 15.4721 3.62896 Vertex 4203 -1.14314 14.4718 1.29458 Vertex 4204 -1.14254 19.622 2.91353 Vertex 4205 -1.14254 19.622 3.27363 Vertex 4206 -1.14205 19.1578 2.94925 Vertex 4207 -1.14205 19.1578 3.30935 Vertex 4208 -1.14135 19.155 3.49416 Vertex 4209 -1.14118 19.6246 3.45831 Vertex 4210 -1.13995 19.1494 3.50368 Vertex 4211 -1.13854 21.252 3.35891 Vertex 4212 -1.13846 19.6299 3.46758 Vertex 4213 -1.13814 18.9633 3.36524 Vertex 4214 -1.13814 19.656 3.36522 Vertex 4215 -1.13806 18.9222 3.54242 Vertex 4216 -1.13746 23.6311 -3.92781 Vertex 4217 -1.13478 18.3538 3.70276 Vertex 4218 -1.13453 19.6456 3.47951 Vertex 4219 -1.13387 23.2906 -5.44041 Vertex 4220 -1.13223 20.0379 3.90175 Vertex 4221 -1.13058 20.7976 -4.14715 Vertex 4222 -1.13054 19.9612 3.87784 Vertex 4223 -1.1302 20.1531 3.90348 Vertex 4224 -1.13003 14.2599 2.23184 Vertex 4225 -1.12997 22.8513 -5.21825 Vertex 4226 -1.12938 19.6716 3.4941 Vertex 4227 -1.129 20.2688 3.9048 Vertex 4228 -1.12863 20.3849 3.90569 Vertex 4229 -1.12673 17.6031 3.82859 Vertex 4230 -1.12642 17.1241 3.55376 Vertex 4231 -1.12511 19.9231 3.83174 Vertex 4232 -1.12472 20.1199 -4.35024 Vertex 4233 -1.12469 23.4539 0.20058 Vertex 4234 -1.12185 16.8397 -2.66445 Vertex 4235 -1.12151 19.697 3.49626 Vertex 4236 -1.1197 17.9414 2.23625 Vertex 4237 -1.11968 20.6779 2.23617 Vertex 4238 -1.11907 23.1282 -1.58431 Vertex 4239 -1.11559 19.8711 3.7697 Vertex 4240 -1.1118 20.4584 3.88761 Vertex 4241 -1.11093 19.7218 3.48598 Vertex 4242 -1.11068 23.9965 -4.41706 Vertex 4243 -1.10771 14.8731 3.51022 Vertex 4244 -1.10554 16.7751 3.49899 Vertex 4245 -1.10388 19.7367 3.47956 Vertex 4246 -1.10317 20.1507 -3.8384 Vertex 4247 -1.1027 22.9494 -5.3596 Vertex 4248 -1.102 19.8052 3.69171 Vertex 4249 -1.10151 20.8012 -4.35621 Vertex 4250 -1.10035 19.7416 3.47701 Vertex 4251 -1.0974 19.7472 3.47815 Vertex 4252 -1.09727 22.7614 -5.00888 Vertex 4253 -1.09501 19.7535 3.48297 Vertex 4254 -1.09485 19.7683 3.61088 Vertex 4255 -1.09483 16.9803 3.48885 Vertex 4256 -1.09416 19.7605 3.52722 Vertex 4257 -1.09356 16.5113 3.47571 Vertex 4258 -1.0934 17.0961 3.49125 Vertex 4259 -1.09306 20.1312 -4.58962 Vertex 4260 -1.09245 23.2677 -3.89421 Vertex 4261 -1.0921 18.2027 2.85836 Vertex 4262 -1.09209 20.4166 2.8583 Vertex 4263 -1.09117 18.5353 3.17418 Vertex 4264 -1.09116 20.0841 3.17413 Vertex 4265 -1.09098 22.8003 2.16742 Vertex 4266 -1.09078 17.0873 3.48627 Vertex 4267 -1.08881 15.966 3.4676 Vertex 4268 -1.08854 19.007 3.37743 Vertex 4269 -1.08853 19.6124 3.37742 Vertex 4270 -1.08578 23.8215 -5.09601 Vertex 4271 -1.08536 18.7493 3.29256 Vertex 4272 -1.08536 19.87 3.29253 Vertex 4273 -1.08496 23.9844 -4.73675 Vertex 4274 -1.08477 18.2158 3.74192 Vertex 4275 -1.0838 14.2489 2.87425 Vertex 4276 -1.08123 12.1513 -0.910214 Vertex 4277 -1.08118 -11.5593 2.94872 Vertex 4278 -1.08071 23.9328 -4.13322 Vertex 4279 -1.07942 14.2363 2.55803 Vertex 4280 -1.07852 20.4892 3.85057 Vertex 4281 -1.07594 -13.1685 2.17756 Vertex 4282 -1.07571 20.8629 -3.77099 Vertex 4283 -1.07365 15.3573 3.62561 Vertex 4284 -1.0706 14.3893 1.52017 Vertex 4285 -1.06796 17.9243 2.0258 Vertex 4286 -1.06795 20.6949 2.02573 Vertex 4287 -1.06184 15.328 3.61275 Vertex 4288 -1.06107 15.2065 3.61844 Vertex 4289 -1.0589 16.1889 3.41903 Vertex 4290 -1.05887 20.8516 -3.91628 Vertex 4291 -1.05631 20.1562 -4.08011 Vertex 4292 -1.05163 20.6174 3.77163 Vertex 4293 -1.04912 20.1665 -3.9095 Vertex 4294 -1.04901 23.4883 -3.77377 Vertex 4295 -1.04617 19.0581 3.38785 Vertex 4296 -1.04617 19.5613 3.38783 Vertex 4297 -1.04507 16.0136 3.39636 Vertex 4298 -1.0428 23.0726 1.74578 Vertex 4299 -1.04273 16.023 3.39258 Vertex 4300 -1.0423 13.7644 -3.51443 Vertex 4301 -1.04169 13.744 -3.526 Vertex 4302 -1.04124 17.0622 -2.49695 Vertex 4303 -1.03512 17.2042 3.96579 Vertex 4304 -1.03391 17.8072 3.82015 Vertex 4305 -1.03255 17.2806 3.97808 Vertex 4306 -1.03236 14.3211 1.77717 Vertex 4307 -1.03115 20.8429 3.6508 Vertex 4308 -1.0306 18.0905 2.68262 Vertex 4309 -1.03058 20.5288 2.68256 Vertex 4310 -1.02688 18.088 3.7522 Vertex 4311 -1.02639 17.1791 3.94962 Vertex 4312 -1.02288 19.5352 2.91346 Vertex 4313 -1.02288 19.5352 3.27356 Vertex 4314 -1.0212 19.5377 3.45818 Vertex 4315 -1.01993 -13.4847 2.14227 Vertex 4316 -1.01869 17.4082 3.98648 Vertex 4317 -1.01783 19.5426 3.46731 Vertex 4318 -1.01209 19.1153 3.39622 Vertex 4319 -1.01209 19.504 3.39621 Vertex 4320 -1.0099 13.9755 -3.43307 Vertex 4321 -1.00989 19.5563 3.47807 Vertex 4322 -1.00887 14.3917 3.27809 Vertex 4323 -1.00786 18.3781 3.04928 Vertex 4324 -1.00785 20.2413 3.04923 Vertex 4325 -1.00671 21.5235 3.2218 Vertex 4326 -1.0062 14.5139 3.42066 Vertex 4327 -1.0046 22.6795 -4.73149 Vertex 4328 -1.00365 18.8009 3.31264 Vertex 4329 -1.00364 19.8185 3.31262 Vertex 4330 -1.00004 23.3818 1.15206 Vertex 4331 -0.998805 -9.53699 3.74189 Vertex 4332 -0.997866 22.7864 -2.17998 Vertex 4333 -0.997381 14.2623 2.02183 Vertex 4334 -0.997373 19.5787 3.49046 Vertex 4335 -0.995076 23.7931 -3.88523 Vertex 4336 -0.994924 -12.9984 2.40676 Vertex 4337 -0.992853 18.0139 3.76184 Vertex 4338 -0.989805 -19.9874 -0.37697 Vertex 4339 -0.987792 22.6542 -2.74836 Vertex 4340 -0.987128 19.1774 3.40236 Vertex 4341 -0.987125 19.442 3.40235 Vertex 4342 -0.985686 14.9699 3.68112 Vertex 4343 -0.984394 19.6012 3.49021 Vertex 4344 -0.982692 17.9934 3.77084 Vertex 4345 -0.98185 14.2785 3.1689 Vertex 4346 -0.981284 19.4564 -3.87598 Vertex 4347 -0.981275 17.5621 3.97371 Vertex 4348 -0.980573 21.5628 -3.53756 Vertex 4349 -0.979581 15.8275 3.86088 Vertex 4350 -0.976537 18.5842 3.20235 Vertex 4351 -0.976529 20.0352 3.20232 Vertex 4352 -0.973853 17.1392 3.85909 Vertex 4353 -0.973851 14.645 3.59662 Vertex 4354 -0.973467 21.558 -3.76905 Vertex 4355 -0.972917 15.7142 3.84687 Vertex 4356 -0.972742 15.8556 3.84971 Vertex 4357 -0.971899 19.2427 3.4061 Vertex 4358 -0.971898 19.3766 3.4061 Vertex 4359 -0.971654 20.8624 -4.54346 Vertex 4360 -0.970954 19.6236 3.47732 Vertex 4361 -0.970016 18.0084 2.49071 Vertex 4362 -0.970003 20.6109 2.49064 Vertex 4363 -0.96862 17.9685 3.7937 Vertex 4364 -0.96678 19.3097 3.40736 Vertex 4365 -0.965931 19.8623 3.90179 Vertex 4366 -0.964046 19.9346 3.93639 Vertex 4367 -0.963622 19.8305 3.84983 Vertex 4368 -0.96242 19.6372 3.46941 Vertex 4369 -0.961312 20.19 -4.79822 Vertex 4370 -0.960084 14.2131 2.25414 Vertex 4371 -0.958788 19.6418 3.46648 Vertex 4372 -0.957967 20.0474 3.95362 Vertex 4373 -0.957809 19.7819 3.78207 Vertex 4374 -0.955891 19.5248 -4.37833 Vertex 4375 -0.955538 19.6461 3.46742 Vertex 4376 -0.955067 17.9078 3.84226 Vertex 4377 -0.95413 20.1634 3.97044 Vertex 4378 -0.953293 11.6543 0.192958 Vertex 4379 -0.953293 11.6747 0.20453 Vertex 4380 -0.952852 23.1127 -5.52019 Vertex 4381 -0.952752 15.5157 3.80768 Vertex 4382 -0.95267 19.6503 3.47224 Vertex 4383 -0.952535 20.2826 3.98684 Vertex 4384 -0.952371 -13.4461 -3.2809 Vertex 4385 -0.950309 22.6211 -2.61506 Vertex 4386 -0.950101 21.102 3.50996 Vertex 4387 -0.949385 19.6603 3.52017 Vertex 4388 -0.948489 19.7166 3.69852 Vertex 4389 -0.948483 21.5699 -3.90335 Vertex 4390 -0.948216 18.5651 3.65845 Vertex 4391 -0.947478 18.6965 3.60565 Vertex 4392 -0.945681 19.6761 3.61122 Vertex 4393 -0.942642 23.9251 -5.04869 Vertex 4394 -0.941746 14.3776 -3.28193 Vertex 4395 -0.940664 18.4314 3.71602 Vertex 4396 -0.938449 18.8258 3.55761 Vertex 4397 -0.936545 20.3613 3.9784 Vertex 4398 -0.936424 -12.7659 2.51495 Vertex 4399 -0.935837 22.6128 -2.49546 Vertex 4400 -0.934067 17.4389 -4.31825 Vertex 4401 -0.93299 22.6073 -2.53077 Vertex 4402 -0.930777 18.865 3.33056 Vertex 4403 -0.930773 19.7544 3.33053 Vertex 4404 -0.92928 17.2854 4.08205 Vertex 4405 -0.926925 15.9152 3.7697 Vertex 4406 -0.926039 18.2438 2.89918 Vertex 4407 -0.926029 20.3755 2.89913 Vertex 4408 -0.925917 17.4136 4.07733 Vertex 4409 -0.924916 18.5525 -4.03593 Vertex 4410 -0.923131 19.5597 -4.60358 Vertex 4411 -0.920308 17.7425 3.93976 Vertex 4412 -0.920253 18.2985 3.75376 Vertex 4413 -0.919928 11.8859 0.285886 Vertex 4414 -0.914602 14.1519 2.79114 Vertex 4415 -0.911847 17.9583 2.28734 Vertex 4416 -0.911833 20.661 2.28727 Vertex 4417 -0.908335 19.4435 2.91038 Vertex 4418 -0.908335 19.4435 3.27048 Vertex 4419 -0.907557 22.6232 -4.50509 Vertex 4420 -0.907109 17.4102 4.09573 Vertex 4421 -0.906353 23.647 -3.72296 Vertex 4422 -0.906238 19.4454 3.45509 Vertex 4423 -0.906162 20.3993 3.94512 Vertex 4424 -0.904181 16.7837 -2.56079 Vertex 4425 -0.902047 19.4493 3.46421 Vertex 4426 -0.901436 -12.4844 2.49631 Vertex 4427 -0.900802 19.4737 -3.95306 Vertex 4428 -0.900037 21.5826 -3.62903 Vertex 4429 -0.899847 15.405 3.80731 Vertex 4430 -0.899411 14.1819 3.07855 Vertex 4431 -0.898065 16.5687 -4.29868 Vertex 4432 -0.897828 17.5376 4.05795 Vertex 4433 -0.896805 22.8432 -3.97151 Vertex 4434 -0.892442 19.2129 2.92664 Vertex 4435 -0.892442 19.2129 3.28674 Vertex 4436 -0.892338 19.4965 -4.12051 Vertex 4437 -0.892102 12.9034 -2.28661 Vertex 4438 -0.891147 19.4597 3.47431 Vertex 4439 -0.890607 19.2102 3.47115 Vertex 4440 -0.890209 17.905 3.8949 Vertex 4441 -0.888333 21.8398 3.04437 Vertex 4442 -0.886984 18.1661 3.77166 Vertex 4443 -0.886938 19.2049 3.47988 Vertex 4444 -0.886827 14.7413 3.73469 Vertex 4445 -0.884369 14.7885 -3.13354 Vertex 4446 -0.882921 17.96 3.86165 Vertex 4447 -0.882313 22.6888 -2.84609 Vertex 4448 -0.878233 17.8369 3.93381 Vertex 4449 -0.877506 17.0845 3.69421 Vertex 4450 -0.877295 19.192 3.48745 Vertex 4451 -0.876392 17.5294 4.08131 Vertex 4452 -0.876386 22.6668 -4.16744 Vertex 4453 -0.875765 -21.5005 -3.24821 Vertex 4454 -0.875654 20.5013 3.89383 Vertex 4455 -0.873762 14.1491 2.49111 Vertex 4456 -0.873541 19.4765 3.48542 Vertex 4457 -0.870743 18.6509 3.22836 Vertex 4458 -0.870736 19.9684 3.22833 Vertex 4459 -0.869961 18.4369 3.08318 Vertex 4460 -0.869952 20.1824 3.08313 Vertex 4461 -0.868538 18.94 3.34585 Vertex 4462 -0.868534 19.6793 3.34584 Vertex 4463 -0.867803 18.0886 3.78571 Vertex 4464 -0.867391 23.1217 -3.7419 Vertex 4465 -0.866932 18.0258 4.04017 Vertex 4466 -0.865548 18.6902 -4.54415 Vertex 4467 -0.864426 15.1894 3.75266 Vertex 4468 -0.863465 18.935 3.51255 Vertex 4469 -0.862715 18.0658 3.7959 Vertex 4470 -0.861906 21.9578 -3.41673 Vertex 4471 -0.86168 19.1715 3.49385 Vertex 4472 -0.861276 21.9714 -3.55436 Vertex 4473 -0.860535 17.944 3.97675 Vertex 4474 -0.85884 -20.0577 -5.38738 Vertex 4475 -0.858285 15.3468 3.77413 Vertex 4476 -0.857668 17.9034 3.92718 Vertex 4477 -0.857522 17.9414 2.07754 Vertex 4478 -0.857507 20.6779 2.07747 Vertex 4479 -0.857447 17.9032 3.93908 Vertex 4480 -0.857033 19.4937 3.48398 Vertex 4481 -0.855053 17.8453 3.95586 Vertex 4482 -0.854972 12.2879 0.437024 Vertex 4483 -0.85369 17.6161 -4.84768 Vertex 4484 -0.852613 15.2878 3.75587 Vertex 4485 -0.851178 18.0397 3.81936 Vertex 4486 -0.850634 19.1513 3.48996 Vertex 4487 -0.850161 17.7012 4.01621 Vertex 4488 -0.850039 17.9696 4.07183 Vertex 4489 -0.84771 18.1358 2.72758 Vertex 4490 -0.847697 20.4835 2.72752 Vertex 4491 -0.846475 15.3175 3.76127 Vertex 4492 -0.846421 23.5397 -5.56298 Vertex 4493 -0.845981 21.9821 -3.61898 Vertex 4494 -0.845023 20.6672 3.82453 Vertex 4495 -0.844159 19.1311 3.47576 Vertex 4496 -0.843601 18.1077 4.00712 Vertex 4497 -0.843352 17.8981 4.01384 Vertex 4498 -0.843211 22.5249 -3.00634 Vertex 4499 -0.8426 17.8527 3.97137 Vertex 4500 -0.842275 18.0983 4.10842 Vertex 4501 -0.84213 16.0065 3.62084 Vertex 4502 -0.841621 19.5112 3.47 Vertex 4503 -0.840872 17.8591 3.98035 Vertex 4504 -0.84061 23.5293 0.52043 Vertex 4505 -0.840061 18.0312 3.94688 Vertex 4506 -0.839972 23.3388 -3.63353 Vertex 4507 -0.839312 22.2115 -3.25307 Vertex 4508 -0.838495 15.2083 -2.98788 Vertex 4509 -0.838353 17.6796 -5.07831 Vertex 4510 -0.83823 18.7425 -4.76648 Vertex 4511 -0.837669 17.9941 3.91019 Vertex 4512 -0.83694 19.1177 3.46486 Vertex 4513 -0.836423 17.9963 3.89708 Vertex 4514 -0.836402 12.0577 -0.700179 Vertex 4515 -0.835847 17.0162 -5.27256 Vertex 4516 -0.835082 16.7827 3.61961 Vertex 4517 -0.834912 16.9218 -5.04656 Vertex 4518 -0.833735 17.176 4.11351 Vertex 4519 -0.831882 19.5219 3.46133 Vertex 4520 -0.83071 16.7525 -5.34922 Vertex 4521 -0.830435 17.7915 3.99121 Vertex 4522 -0.829643 16.3379 -2.6733 Vertex 4523 -0.828977 19.111 3.45726 Vertex 4524 -0.828724 23.6424 -5.47334 Vertex 4525 -0.828093 17.8056 3.99796 Vertex 4526 -0.827914 16.5403 3.60367 Vertex 4527 -0.827901 17.053 3.60932 Vertex 4528 -0.827815 19.5257 3.45797 Vertex 4529 -0.82743 16.9546 3.60786 Vertex 4530 -0.827351 18.0363 4.14044 Vertex 4531 -0.826855 17.1518 4.09573 Vertex 4532 -0.826748 17.2486 4.12981 Vertex 4533 -0.825864 17.9142 4.1003 Vertex 4534 -0.825647 18.024 3.87183 Vertex 4535 -0.825084 21.6184 -4.03195 Vertex 4536 -0.825037 17.0447 3.60442 Vertex 4537 -0.824439 19.101 3.45543 Vertex 4538 -0.823982 19.5292 3.45835 Vertex 4539 -0.823472 17.6835 4.04949 Vertex 4540 -0.823325 19.0879 3.45936 Vertex 4541 -0.820754 17.8082 4.00942 Vertex 4542 -0.820382 19.5324 3.4625 Vertex 4543 -0.81991 18.1744 4.06893 Vertex 4544 -0.818464 19.0242 3.35816 Vertex 4545 -0.818462 19.5952 3.35815 Vertex 4546 -0.81833 17.8515 4.04762 Vertex 4547 -0.817788 15.7248 -2.83447 Vertex 4548 -0.816907 15.9419 -3.97719 Vertex 4549 -0.816626 17.8162 4.01733 Vertex 4550 -0.81422 14.9991 3.79755 Vertex 4551 -0.813052 14.4327 3.66987 Vertex 4552 -0.811949 18.5744 -4.11926 Vertex 4553 -0.811083 19.5522 3.5053 Vertex 4554 -0.809211 16.6074 -5.14078 Vertex 4555 -0.808475 21.3945 3.3491 Vertex 4556 -0.807561 12.6988 0.585421 Vertex 4557 -0.805926 16.2275 3.56004 Vertex 4558 -0.805893 17.3696 4.14462 Vertex 4559 -0.805705 17.975 4.16889 Vertex 4560 -0.805351 14.2482 1.04566 Vertex 4561 -0.80534 18.0772 3.83447 Vertex 4562 -0.803581 19.8021 3.92179 Vertex 4563 -0.802854 14.3362 3.53674 Vertex 4564 -0.80149 19.7777 3.86656 Vertex 4565 -0.801117 17.769 4.02946 Vertex 4566 -0.800678 18.131 3.80075 Vertex 4567 -0.798905 19.3468 2.90429 Vertex 4568 -0.798905 19.3468 3.26439 Vertex 4569 -0.798789 19.8635 3.96322 Vertex 4570 -0.798531 16.0569 3.54436 Vertex 4571 -0.798147 22.0524 -3.38713 Vertex 4572 -0.798125 18.1071 3.81153 Vertex 4573 -0.79748 19.7258 3.78608 Vertex 4574 -0.797061 18.3683 3.78154 Vertex 4575 -0.796987 23.4393 -5.63853 Vertex 4576 -0.796302 19.3479 3.44905 Vertex 4577 -0.796132 16.0664 3.54027 Vertex 4578 -0.796085 19.5886 3.58678 Vertex 4579 -0.794408 17.8595 4.12558 Vertex 4580 -0.794057 19.6012 -4.79626 Vertex 4581 -0.79216 18.6203 -4.28866 Vertex 4582 -0.79213 17.7699 4.04131 Vertex 4583 -0.79155 19.6465 3.68037 Vertex 4584 -0.791094 19.3501 3.45826 Vertex 4585 -0.789582 14.514 1.21606 Vertex 4586 -0.789355 19.0623 3.46438 Vertex 4587 -0.787116 19.9621 3.99086 Vertex 4588 -0.787033 16.4849 -5.48485 Vertex 4589 -0.786984 21.9814 -3.45977 Vertex 4590 -0.786565 18.1615 4.18147 Vertex 4591 -0.785596 18.1344 3.81547 Vertex 4592 -0.785469 17.8043 4.0781 Vertex 4593 -0.785021 14.2566 3.42863 Vertex 4594 -0.78471 17.7744 4.05001 Vertex 4595 -0.783415 22.2008 2.82662 Vertex 4596 -0.782565 17.4685 -4.40807 Vertex 4597 -0.782283 -17.856 -4.60472 Vertex 4598 -0.781929 18.16 3.92423 Vertex 4599 -0.78179 19.1153 3.36718 Vertex 4600 -0.781789 19.504 3.36717 Vertex 4601 -0.781535 18.132 3.8937 Vertex 4602 -0.781374 18.1311 3.83348 Vertex 4603 -0.780044 18.2155 3.97267 Vertex 4604 -0.778864 18.1315 3.88108 Vertex 4605 -0.778809 18.1312 3.86101 Vertex 4606 -0.778288 19.3558 3.46824 Vertex 4607 -0.777336 17.9144 4.19376 Vertex 4608 -0.777325 24.0858 -4.43327 Vertex 4609 -0.777287 20.065 4.01618 Vertex 4610 -0.776394 18.7339 3.25155 Vertex 4611 -0.776389 19.8854 3.25152 Vertex 4612 -0.7761 18.2337 3.80326 Vertex 4613 -0.77529 18.0981 4.21967 Vertex 4614 -0.775265 18.4818 3.76523 Vertex 4615 -0.774803 18.0566 2.5387 Vertex 4616 -0.77479 20.5627 2.53863 Vertex 4617 -0.774491 23.7353 -5.4033 Vertex 4618 -0.77403 13.6351 0.884489 Vertex 4619 -0.774019 13.1186 0.731077 Vertex 4620 -0.771035 17.1111 3.99207 Vertex 4621 -0.769356 -11.5418 3.0213 Vertex 4622 -0.769305 20.1724 4.03917 Vertex 4623 -0.768988 18.2312 4.1323 Vertex 4624 -0.768262 18.3111 2.93797 Vertex 4625 -0.768252 20.3082 2.93792 Vertex 4626 -0.766695 -17.7746 0.381241 Vertex 4627 -0.765365 22.7632 -5.31193 Vertex 4628 -0.764492 14.5208 3.77918 Vertex 4629 -0.764469 17.8306 4.13953 Vertex 4630 -0.762632 17.5277 4.13305 Vertex 4631 -0.762128 18.613 3.72161 Vertex 4632 -0.761774 19.2549 2.91181 Vertex 4633 -0.761774 19.2549 3.27191 Vertex 4634 -0.761554 14.1017 3.00703 Vertex 4635 -0.761286 15.4971 -3.70517 Vertex 4636 -0.760253 18.2645 4.02198 Vertex 4637 -0.759552 14.1938 3.34554 Vertex 4638 -0.759418 19.2113 3.37267 Vertex 4639 -0.759417 19.4081 3.37267 Vertex 4640 -0.759395 15.562 3.94887 Vertex 4641 -0.75926 19.2531 3.45624 Vertex 4642 -0.758546 16.3321 -5.30589 Vertex 4643 -0.757957 15.7468 3.97779 Vertex 4644 -0.757883 19.365 3.47897 Vertex 4645 -0.757865 20.9187 3.69092 Vertex 4646 -0.757853 18.0339 4.2534 Vertex 4647 -0.757353 24.0278 -4.15956 Vertex 4648 -0.756553 17.6663 4.09154 Vertex 4649 -0.755772 17.5275 -4.58455 Vertex 4650 -0.75423 19.2496 3.46481 Vertex 4651 -0.754027 17.7884 4.09338 Vertex 4652 -0.753428 15.8534 3.98593 Vertex 4653 -0.75283 24.057 -4.7259 Vertex 4654 -0.751898 19.3097 3.37452 Vertex 4655 -0.751421 20.2453 4.03418 Vertex 4656 -0.750052 19.2839 2.90477 Vertex 4657 -0.750052 19.2839 3.26486 Vertex 4658 -0.749325 18.7423 3.66899 Vertex 4659 -0.749156 17.8759 4.20569 Vertex 4660 -0.747309 19.2838 3.44943 Vertex 4661 -0.746344 22.8544 -5.44599 Vertex 4662 -0.745807 15.8817 3.97329 Vertex 4663 -0.745636 18.2125 3.82554 Vertex 4664 -0.745135 14.8028 3.83488 Vertex 4665 -0.742693 18.5172 3.11446 Vertex 4666 -0.742684 20.1021 3.11442 Vertex 4667 -0.741823 19.2835 3.45846 Vertex 4668 -0.741709 18.1952 3.84364 Vertex 4669 -0.741659 22.6517 -3.7285 Vertex 4670 -0.7398 -15.6092 0.833923 Vertex 4671 -0.739428 19.3746 3.47756 Vertex 4672 -0.738505 15.4331 3.91009 Vertex 4673 -0.738416 14.0705 2.73272 Vertex 4674 -0.73815 22.6763 -5.10651 Vertex 4675 -0.737582 19.2447 3.47007 Vertex 4676 -0.736857 18.8698 3.60737 Vertex 4677 -0.736124 18.2089 3.83739 Vertex 4678 -0.736048 17.8275 4.14214 Vertex 4679 -0.735474 14.4325 1.39568 Vertex 4680 -0.734557 22.9295 -3.50799 Vertex 4681 -0.734254 17.9692 4.28263 Vertex 4682 -0.733469 14.2773 1.80841 Vertex 4683 -0.731203 15.2342 -3.48261 Vertex 4684 -0.729335 14.2074 2.02125 Vertex 4685 -0.727707 18.222 3.86625 Vertex 4686 -0.727636 -21.5569 -3.54963 Vertex 4687 -0.7271 19.2841 3.46682 Vertex 4688 -0.725809 22.0242 -3.71826 Vertex 4689 -0.724005 17.804 4.09347 Vertex 4690 -0.723637 20.2837 4.0012 Vertex 4691 -0.723224 22.076 -3.43017 Vertex 4692 -0.722925 19.3846 3.46401 Vertex 4693 -0.722558 18.3072 4.07217 Vertex 4694 -0.721165 17.8595 4.20467 Vertex 4695 -0.720807 22.5158 2.58719 Vertex 4696 -0.720643 18.2564 3.91252 Vertex 4697 -0.716457 14.3536 1.59313 Vertex 4698 -0.716119 21.6851 3.18107 Vertex 4699 -0.716045 18.3014 3.95507 Vertex 4700 -0.715893 17.8332 4.14796 Vertex 4701 -0.712261 19.3908 3.45532 Vertex 4702 -0.710206 18.7772 -4.95567 Vertex 4703 -0.709783 15.6737 -3.19752 Vertex 4704 -0.70976 17.7179 -5.27645 Vertex 4705 -0.709315 19.2386 3.47202 Vertex 4706 -0.709195 18.2508 3.88334 Vertex 4707 -0.709115 18.0084 2.33718 Vertex 4708 -0.709101 20.6109 2.33711 Vertex 4709 -0.708088 17.9245 4.29186 Vertex 4710 -0.707931 22.0867 -3.49479 Vertex 4711 -0.70792 18.2113 4.25313 Vertex 4712 -0.707444 -15.6751 -3.66791 Vertex 4713 -0.707435 19.3933 3.45149 Vertex 4714 -0.706967 17.0765 -5.46646 Vertex 4715 -0.706854 18.2577 3.89558 Vertex 4716 -0.704817 16.2133 -5.67947 Vertex 4717 -0.704699 15.941 3.88917 Vertex 4718 -0.704639 14.1368 3.27122 Vertex 4719 -0.704165 16.7933 -4.78845 Vertex 4720 -0.704153 18.3283 3.98378 Vertex 4721 -0.703141 19.2857 3.4745 Vertex 4722 -0.703049 17.819 4.09803 Vertex 4723 -0.703003 -21.5335 -2.96162 Vertex 4724 -0.702729 19.3963 3.45096 Vertex 4725 -0.701831 16.853 -5.52568 Vertex 4726 -0.700788 17.6955 4.10674 Vertex 4727 -0.700508 22.7845 2.3261 Vertex 4728 -0.699552 18.2762 4.19376 Vertex 4729 -0.698849 14.144 2.23167 Vertex 4730 -0.698144 19.3998 3.45375 Vertex 4731 -0.697025 16.8156 -2.84991 Vertex 4732 -0.695837 18.1439 4.29676 Vertex 4733 -0.695812 18.8311 3.27136 Vertex 4734 -0.695808 19.7883 3.27134 Vertex 4735 -0.695287 15.3604 3.86145 Vertex 4736 -0.694201 17.8565 4.19603 Vertex 4737 -0.693944 22.6911 -3.19247 Vertex 4738 -0.693811 20.3756 3.96236 Vertex 4739 -0.692914 23.8832 -3.90476 Vertex 4740 -0.691634 17.8478 4.13655 Vertex 4741 -0.688451 22.4076 -3.41895 Vertex 4742 -0.687271 19.0189 3.53854 Vertex 4743 -0.687232 23.0836 1.88735 Vertex 4744 -0.683722 23.8184 -5.35287 Vertex 4745 -0.682919 16.0958 -5.54189 Vertex 4746 -0.682843 15.2795 3.82912 Vertex 4747 -0.680982 23.4129 1.27096 Vertex 4748 -0.680421 23.3413 -5.70001 Vertex 4749 -0.680046 20.9412 -4.66502 Vertex 4750 -0.679354 17.8999 4.28107 Vertex 4751 -0.679254 19.4363 3.48262 Vertex 4752 -0.67905 19.2376 3.45865 Vertex 4753 -0.677767 18.0754 4.33555 Vertex 4754 -0.676732 15.3092 3.83446 Vertex 4755 -0.676528 19.2829 3.46481 Vertex 4756 -0.673942 18.2099 2.7703 Vertex 4757 -0.67393 20.4094 2.77024 Vertex 4758 -0.673071 18.3639 4.02737 Vertex 4759 -0.67158 20.2654 -4.93332 Vertex 4760 -0.671512 16.5929 -5.63521 Vertex 4761 -0.671368 17.7571 4.09753 Vertex 4762 -0.670731 18.3387 4.11866 Vertex 4763 -0.668949 15.1856 3.84497 Vertex 4764 -0.668265 17.8671 4.17977 Vertex 4765 -0.66628 17.0539 3.80255 Vertex 4766 -0.664703 22.5937 -4.82972 Vertex 4767 -0.663775 18.3867 3.858 Vertex 4768 -0.663406 19.223 3.44137 Vertex 4769 -0.661943 20.5208 3.91767 Vertex 4770 -0.661407 19.2959 3.4542 Vertex 4771 -0.657173 14.6006 3.86466 Vertex 4772 -0.65371 18.0057 4.36949 Vertex 4773 -0.653306 23.9826 -5.02644 Vertex 4774 -0.65272 19.1923 3.42534 Vertex 4775 -0.652617 19.2839 3.44398 Vertex 4776 -0.652262 17.9921 2.128 Vertex 4777 -0.652248 20.6271 2.12793 Vertex 4778 -0.652237 19.2369 3.43402 Vertex 4779 -0.651659 18.3202 3.88689 Vertex 4780 -0.651553 -12.3686 2.50251 Vertex 4781 -0.651513 19.3235 3.45113 Vertex 4782 -0.650342 17.889 4.2627 Vertex 4783 -0.649951 17.8443 4.08603 Vertex 4784 -0.649538 19.1163 3.4713 Vertex 4785 -0.646758 23.0343 -5.5855 Vertex 4786 -0.646308 19.3254 3.44706 Vertex 4787 -0.646101 19.3191 3.44555 Vertex 4788 -0.64606 19.506 3.53756 Vertex 4789 -0.644561 17.791 4.09104 Vertex 4790 -0.644388 18.3804 4.05337 Vertex 4791 -0.643577 19.2003 3.41851 Vertex 4792 -0.643483 19.7806 3.93783 Vertex 4793 -0.643162 19.1876 3.41549 Vertex 4794 -0.642881 19.3272 3.44641 Vertex 4795 -0.642673 19.3209 3.4449 Vertex 4796 -0.641939 19.1627 3.42071 Vertex 4797 -0.640817 14.0764 2.45759 Vertex 4798 -0.640598 16.6057 -4.38681 Vertex 4799 -0.640505 18.3409 3.88351 Vertex 4800 -0.63888 18.3585 3.87741 Vertex 4801 -0.638711 19.7647 3.88193 Vertex 4802 -0.638581 18.505 3.8504 Vertex 4803 -0.638537 17.8731 4.12455 Vertex 4804 -0.637802 19.3307 3.44852 Vertex 4805 -0.637649 19.1779 3.41515 Vertex 4806 -0.637334 16.4176 -4.90037 Vertex 4807 -0.637048 23.4465 -0.70775 Vertex 4808 -0.636773 19.1998 3.41733 Vertex 4809 -0.63646 19.8248 3.98227 Vertex 4810 -0.636358 19.1872 3.4143 Vertex 4811 -0.635882 14.2782 3.71387 Vertex 4812 -0.635801 23.6624 -3.72647 Vertex 4813 -0.635047 15.0273 3.88203 Vertex 4814 -0.634914 17.2509 -2.68712 Vertex 4815 -0.634609 19.7028 3.78174 Vertex 4816 -0.633871 22.7252 -2.90825 Vertex 4817 -0.633383 17.1505 4.19925 Vertex 4818 -0.631177 19.5948 3.63727 Vertex 4819 -0.630982 18.94 3.28729 Vertex 4820 -0.630978 19.6793 3.28728 Vertex 4821 -0.630102 16.0316 3.73357 Vertex 4822 -0.629191 18.617 3.14236 Vertex 4823 -0.629183 20.0023 3.14233 Vertex 4824 -0.628261 17.1265 4.17956 Vertex 4825 -0.628005 17.9578 4.37472 Vertex 4826 -0.62742 18.3541 3.90386 Vertex 4827 -0.626912 15.9765 -5.84563 Vertex 4828 -0.626833 17.219 4.21763 Vertex 4829 -0.626795 19.1813 3.42145 Vertex 4830 -0.625503 19.1906 3.42061 Vertex 4831 -0.624788 19.3064 3.45034 Vertex 4832 -0.622651 18.403 2.97376 Vertex 4833 -0.622642 20.2163 2.97372 Vertex 4834 -0.621687 18.3752 3.93267 Vertex 4835 -0.621052 17.8916 4.23674 Vertex 4836 -0.620279 14.0856 3.20569 Vertex 4837 -0.619156 14.0291 2.95338 Vertex 4838 -0.61913 19.2547 3.44111 Vertex 4839 -0.618648 18.6457 3.8242 Vertex 4840 -0.618433 17.8895 4.15477 Vertex 4841 -0.617646 19.8971 4.01522 Vertex 4842 -0.616291 22.5774 -4.52112 Vertex 4843 -0.616013 16.2963 -5.79505 Vertex 4844 -0.615389 14.3507 3.79727 Vertex 4845 -0.614277 14.1724 3.53392 Vertex 4846 -0.614181 21.2559 3.493 Vertex 4847 -0.613625 18.3714 3.91585 Vertex 4848 -0.612579 17.0213 3.70516 Vertex 4849 -0.611601 18.3094 4.25331 Vertex 4850 -0.611298 15.8927 -5.74753 Vertex 4851 -0.609938 17.0132 3.6999 Vertex 4852 -0.609794 18.4021 3.96138 Vertex 4853 -0.608607 17.3322 4.23469 Vertex 4854 -0.608283 19.3426 3.4673 Vertex 4855 -0.608185 16.9339 3.70182 Vertex 4856 -0.607325 16.7836 3.71093 Vertex 4857 -0.606341 18.2477 4.32339 Vertex 4858 -0.606159 18.7887 3.78142 Vertex 4859 -0.606146 17.8369 4.08603 Vertex 4860 -0.605989 14.2084 3.61558 Vertex 4861 -0.60477 18.3591 4.16146 Vertex 4862 -0.603548 19.1755 3.47496 Vertex 4863 -0.602238 16.5553 3.69832 Vertex 4864 -0.601112 18.9341 3.72206 Vertex 4865 -0.600653 17.9317 4.35124 Vertex 4866 -0.600008 17.4955 4.20664 Vertex 4867 -0.598472 19.9736 4.04203 Vertex 4868 -0.594658 19.2569 3.45516 Vertex 4869 -0.592925 16.2489 3.66401 Vertex 4870 -0.592912 22.6275 -4.18071 Vertex 4871 -0.59167 16.0815 3.65353 Vertex 4872 -0.590803 14.8527 3.91407 Vertex 4873 -0.589588 14.1348 3.46388 Vertex 4874 -0.589424 18.3943 4.0878 Vertex 4875 -0.589403 16.091 3.64908 Vertex 4876 -0.589325 18.1358 2.58429 Vertex 4877 -0.589312 20.4835 2.58423 Vertex 4878 -0.588992 18.1739 4.3717 Vertex 4879 -0.587388 18.4102 3.91106 Vertex 4880 -0.586052 16.1345 -5.09833 Vertex 4881 -0.586015 23.3653 -3.6247 Vertex 4882 -0.584644 20.7836 3.79112 Vertex 4883 -0.5835 19.058 3.29896 Vertex 4884 -0.583497 19.5613 3.29895 Vertex 4885 -0.583255 19.0845 3.62641 Vertex 4886 -0.581381 17.0871 4.07273 Vertex 4887 -0.581112 18.4186 3.98738 Vertex 4888 -0.580194 18.4348 3.90783 Vertex 4889 -0.578941 20.0544 4.06268 Vertex 4890 -0.572572 17.9197 4.32185 Vertex 4891 -0.572538 21.6796 -4.10097 Vertex 4892 -0.570019 18.4915 3.90093 Vertex 4893 -0.569543 17.91 4.20688 Vertex 4894 -0.5683 19.3926 3.50056 Vertex 4895 -0.567987 17.634 4.17127 Vertex 4896 -0.567866 18.4327 3.92293 Vertex 4897 -0.565447 18.0993 4.41534 Vertex 4898 -0.563684 15.6108 4.05253 Vertex 4899 -0.563589 16.0357 -5.92805 Vertex 4900 -0.562152 14.11 3.41968 Vertex 4901 -0.560956 13.9435 -3.65347 Vertex 4902 -0.560956 13.9639 -3.64189 Vertex 4903 -0.558908 22.5299 -3.85635 Vertex 4904 -0.557691 18.4894 3.91602 Vertex 4905 -0.556431 20.1106 4.05494 Vertex 4906 -0.555239 14.0047 2.69901 Vertex 4907 -0.554534 19.1823 3.30608 Vertex 4908 -0.554533 19.437 3.30608 Vertex 4909 -0.55383 22.0598 2.98093 Vertex 4910 -0.553433 15.7767 4.06686 Vertex 4911 -0.553319 15.7744 -5.98334 Vertex 4912 -0.551136 19.8014 3.96631 Vertex 4913 -0.550316 15.9439 -5.38234 Vertex 4914 -0.549363 18.3344 4.33192 Vertex 4915 -0.548254 23.0984 -3.4152 Vertex 4916 -0.54714 19.6521 -4.90585 Vertex 4917 -0.546688 18.637 3.88344 Vertex 4918 -0.546601 18.3833 4.24653 Vertex 4919 -0.545544 15.4769 4.00558 Vertex 4920 -0.544868 15.8737 4.06657 Vertex 4921 -0.544799 19.3097 3.30847 Vertex 4922 -0.544508 14.4258 3.8658 Vertex 4923 -0.543993 19.3211 3.50115 Vertex 4924 -0.543886 19.2054 3.55099 Vertex 4925 -0.543764 17.9218 4.28655 Vertex 4926 -0.543683 15.7227 -5.9228 Vertex 4927 -0.543105 23.5687 -5.68444 Vertex 4928 -0.542812 19.7935 3.91536 Vertex 4929 -0.542702 18.2706 4.39458 Vertex 4930 -0.540437 14.1751 -3.56054 Vertex 4931 -0.539813 23.5705 0.627992 Vertex 4932 -0.539159 18.425 4.16108 Vertex 4933 -0.539057 23.6469 -5.6087 Vertex 4934 -0.537987 15.9017 4.05165 Vertex 4935 -0.536215 14.6618 3.94111 Vertex 4936 -0.535705 18.024 4.45433 Vertex 4937 -0.532251 18.7339 3.16619 Vertex 4938 -0.532245 19.8854 3.16616 Vertex 4939 -0.530941 20.1425 4.0188 Vertex 4940 -0.527039 18.4597 4.07556 Vertex 4941 -0.526617 18.1919 4.43451 Vertex 4942 -0.526539 19.8644 4.00722 Vertex 4943 -0.523452 16.9796 -2.70916 Vertex 4944 -0.522518 22.8617 -3.09795 Vertex 4945 -0.521678 19.5179 3.61635 Vertex 4946 -0.520797 21.5687 3.30643 Vertex 4947 -0.518179 17.9299 4.23698 Vertex 4948 -0.517003 18.2801 4.46667 Vertex 4949 -0.516745 15.7844 -5.63376 Vertex 4950 -0.516686 18.5516 4.0133 Vertex 4951 -0.516495 17.7365 4.15197 Vertex 4952 -0.516493 18.0905 2.38453 Vertex 4953 -0.51648 20.5287 2.38447 Vertex 4954 -0.515983 14.0248 3.15309 Vertex 4955 -0.514279 22.2848 -3.54805 Vertex 4956 -0.514244 15.8109 -6.0342 Vertex 4957 -0.513798 19.8641 3.96686 Vertex 4958 -0.513574 18.3111 2.80972 Vertex 4959 -0.513564 20.3082 2.80967 Vertex 4960 -0.51284 18.3513 4.42956 Vertex 4961 -0.512079 22.0771 -3.71268 Vertex 4962 -0.510047 18.1257 4.46165 Vertex 4963 -0.50891 17.9758 4.45428 Vertex 4964 -0.508711 18.1979 4.4852 Vertex 4965 -0.5081 18.701 3.97431 Vertex 4966 -0.507273 15.9574 3.96473 Vertex 4967 -0.506102 20.2402 3.97723 Vertex 4968 -0.504543 14.0733 3.35714 Vertex 4969 -0.504314 19.6321 3.77478 Vertex 4970 -0.5035 17.9344 4.09998 Vertex 4971 -0.500415 19.9328 4.03709 Vertex 4972 -0.499971 18.8516 3.9225 Vertex 4973 -0.499398 14.5771 -3.4094 Vertex 4974 -0.499013 15.3752 3.92602 Vertex 4975 -0.498957 11.6121 0.261136 Vertex 4976 -0.498957 11.6324 0.272709 Vertex 4977 -0.49867 22.1338 -3.50016 Vertex 4978 -0.497717 17.7884 4.13487 Vertex 4979 -0.496222 18.4114 4.37388 Vertex 4980 -0.496038 18.13 4.50164 Vertex 4981 -0.492791 18.5172 3.00568 Vertex 4982 -0.492782 20.1021 3.00564 Vertex 4983 -0.492739 17.0323 3.87878 Vertex 4984 -0.492298 19.0034 3.85787 Vertex 4985 -0.485335 15.6559 -5.85259 Vertex 4986 -0.48506 17.9546 4.41519 Vertex 4987 -0.484836 15.2799 3.87841 Vertex 4988 -0.484645 18.8145 -5.05631 Vertex 4989 -0.484097 17.7527 -5.38471 Vertex 4990 -0.4834 17.9508 4.13019 Vertex 4991 -0.483115 19.9424 4.00136 Vertex 4992 -0.481913 20.4038 3.93023 Vertex 4993 -0.481896 17.1209 -5.57253 Vertex 4994 -0.480467 11.8436 0.354064 Vertex 4995 -0.479093 16.7425 -4.67317 Vertex 4996 -0.478777 15.3096 3.88363 Vertex 4997 -0.478752 23.8626 -5.33489 Vertex 4998 -0.478045 18.4691 4.31817 Vertex 4999 -0.478044 16.9191 -5.61978 Vertex 5000 -0.477608 19.7229 3.87786 Vertex 5001 -0.477463 18.0476 4.50316 Vertex 5002 -0.474782 19.1507 3.77372 Vertex 5003 -0.474633 15.1949 3.89539 Vertex 5004 -0.472762 20.0065 4.05591 Vertex 5005 -0.472217 13.9641 2.91762 Vertex 5006 -0.471405 -13.4333 -1.26545 Vertex 5007 -0.47008 14.988 -3.261 Vertex 5008 -0.466604 23.3031 -5.73047 Vertex 5009 -0.463317 17.8433 4.12455 Vertex 5010 -0.463053 19.4159 3.61761 Vertex 5011 -0.462049 18.305 4.58757 Vertex 5012 -0.461916 21.1642 3.58271 Vertex 5013 -0.461712 16.5374 -2.80076 Vertex 5014 -0.46089 17.9486 4.3735 Vertex 5015 -0.460314 16.6619 -5.71419 Vertex 5016 -0.459697 17.927 4.09998 Vertex 5017 -0.459061 14.4857 3.93301 Vertex 5018 -0.458307 18.5244 4.26243 Vertex 5019 -0.457639 18.2149 4.59382 Vertex 5020 -0.457239 18.0753 2.17594 Vertex 5021 -0.457226 20.5439 2.17588 Vertex 5022 -0.454991 16.7335 -4.49453 Vertex 5023 -0.45426 18.865 3.18536 Vertex 5024 -0.454255 19.7544 3.18534 Vertex 5025 -0.45357 18.3849 4.56082 Vertex 5026 -0.452728 16.0411 3.80579 Vertex 5027 -0.452483 15.4078 -3.11535 Vertex 5028 -0.450767 20.0287 4.01886 Vertex 5029 -0.450629 14.1629 2.03861 Vertex 5030 -0.449693 15.9243 -2.96193 Vertex 5031 -0.448167 15.0546 3.93457 Vertex 5032 -0.447439 17.0008 3.77877 Vertex 5033 -0.447422 19.2935 3.67007 Vertex 5034 -0.446737 18.1255 4.59616 Vertex 5035 -0.446563 18.6284 4.20866 Vertex 5036 -0.445481 16.9928 3.77271 Vertex 5037 -0.44372 14.2373 1.8417 Vertex 5038 -0.443487 12.2456 0.505202 Vertex 5039 -0.442811 18.7811 4.15684 Vertex 5040 -0.442339 14.1817 3.72862 Vertex 5041 -0.441558 19.7902 3.92558 Vertex 5042 -0.439514 14.231 3.78899 Vertex 5043 -0.437091 16.9184 3.77076 Vertex 5044 -0.436402 17.9577 4.32922 Vertex 5045 -0.434728 19.8805 3.96359 Vertex 5046 -0.432442 15.6526 -6.02943 Vertex 5047 -0.432206 18.4547 4.51358 Vertex 5048 -0.432034 17.9708 4.16028 Vertex 5049 -0.430928 14.0949 2.23152 Vertex 5050 -0.430761 18.9309 4.09222 Vertex 5051 -0.430438 20.6969 3.81057 Vertex 5052 -0.430382 -19.9594 -2.99256 Vertex 5053 -0.429341 18.037 4.59459 Vertex 5054 -0.428707 16.3494 -5.85576 Vertex 5055 -0.426549 14.2059 1.11384 Vertex 5056 -0.425836 14.474 1.28091 Vertex 5057 -0.425481 14.1037 3.58896 Vertex 5058 -0.42457 23.7132 -5.5602 Vertex 5059 -0.424486 16.0875 3.72389 Vertex 5060 -0.423829 14.891 3.97227 Vertex 5061 -0.422548 16.0969 3.71901 Vertex 5062 -0.422269 16.7778 3.77294 Vertex 5063 -0.419899 16.253 3.73093 Vertex 5064 -0.419123 17.2965 4.2953 Vertex 5065 -0.418807 14.0312 3.34634 Vertex 5066 -0.418148 18.2438 2.62637 Vertex 5067 -0.418137 20.3755 2.62632 Vertex 5068 -0.417897 23.5195 -5.73171 Vertex 5069 -0.417656 12.6566 0.653598 Vertex 5070 -0.416537 16.556 3.75966 Vertex 5071 -0.41561 14.1304 3.65719 Vertex 5072 -0.413876 17.4319 4.28708 Vertex 5073 -0.413547 16.3433 -4.79865 Vertex 5074 -0.413018 17.9826 4.561 Vertex 5075 -0.412977 17.9693 4.27515 Vertex 5076 -0.410842 18.5244 4.46634 Vertex 5077 -0.410427 14.3181 1.64081 Vertex 5078 -0.410414 19.0778 4.01479 Vertex 5079 -0.407372 17.1807 4.27805 Vertex 5080 -0.407137 14.2784 3.83831 Vertex 5081 -0.406598 19.5137 3.76522 Vertex 5082 -0.404251 14.397 1.45388 Vertex 5083 -0.40297 13.0764 0.799254 Vertex 5084 -0.402798 13.5928 0.952667 Vertex 5085 -0.401615 14.7044 4.00851 Vertex 5086 -0.400032 19.973 3.98043 Vertex 5087 -0.399906 17.1109 4.25906 Vertex 5088 -0.398947 16.0735 -5.97134 Vertex 5089 -0.398659 14.029 2.4433 Vertex 5090 -0.398047 14.079 3.54476 Vertex 5091 -0.397766 17.9624 4.49538 Vertex 5092 -0.397138 19.007 3.1994 Vertex 5093 -0.397134 19.6124 3.19939 Vertex 5094 -0.396724 17.0869 4.23832 Vertex 5095 -0.396179 21.5986 3.31504 Vertex 5096 -0.39175 13.9544 3.11342 Vertex 5097 -0.39163 17.5868 4.25339 Vertex 5098 -0.391091 23.4245 1.35452 Vertex 5099 -0.390032 13.0669 -2.47061 Vertex 5100 -0.389615 19.2271 3.92217 Vertex 5101 -0.389477 18.5941 4.4191 Vertex 5102 -0.388764 17.8375 4.15456 Vertex 5103 -0.387431 22.0867 2.98813 Vertex 5104 -0.386051 15.9861 -4.05547 Vertex 5105 -0.385143 17.9211 4.12999 Vertex 5106 -0.382357 17.9765 4.17396 Vertex 5107 -0.382086 23.0841 1.99238 Vertex 5108 -0.38188 18.6509 3.03295 Vertex 5109 -0.381872 19.9684 3.03291 Vertex 5110 -0.381689 22.4766 2.69633 Vertex 5111 -0.380016 17.9569 4.42882 Vertex 5112 -0.379505 17.6996 4.22024 Vertex 5113 -0.378953 22.7681 2.43965 Vertex 5114 -0.377837 18.3453 4.75726 Vertex 5115 -0.377501 17.7703 4.18764 Vertex 5116 -0.375531 18.7008 4.36335 Vertex 5117 -0.374854 16.0573 -5.01324 Vertex 5118 -0.373404 18.2429 4.76035 Vertex 5119 -0.373025 23.2854 -1.50657 Vertex 5120 -0.371554 18.4354 4.72569 Vertex 5121 -0.371029 15.8342 -6.06092 Vertex 5122 -0.370553 18.4369 2.84487 Vertex 5123 -0.370544 20.1824 2.84483 Vertex 5124 -0.369004 18.8445 4.2991 Vertex 5125 -0.368365 19.3787 3.81435 Vertex 5126 -0.366267 -15.6179 -1.5736 Vertex 5127 -0.364985 15.6862 -6.07089 Vertex 5128 -0.364914 17.0505 4.13331 Vertex 5129 -0.363667 18.1413 4.75803 Vertex 5130 -0.363299 17.975 4.28883 Vertex 5131 -0.363012 15.8846 -5.31692 Vertex 5132 -0.362292 19.1564 3.20797 Vertex 5133 -0.362291 19.4629 3.20796 Vertex 5134 -0.359767 17.9661 4.36134 Vertex 5135 -0.359343 14.3244 3.88978 Vertex 5136 -0.359051 14.5304 3.99889 Vertex 5137 -0.358233 17.9559 4.17665 Vertex 5138 -0.355521 19.5894 3.8538 Vertex 5139 -0.354842 -17.7762 -2.31877 Vertex 5140 -0.354552 18.5132 4.66564 Vertex 5141 -0.354087 18.9876 4.22274 Vertex 5142 -0.353825 13.9652 2.67394 Vertex 5143 -0.353528 15.6095 -5.9818 Vertex 5144 -0.35346 17.9279 4.16278 Vertex 5145 -0.352101 15.7421 -5.58711 Vertex 5146 -0.351679 21.1196 3.61823 Vertex 5147 -0.351638 23.582 0.676545 Vertex 5148 -0.35058 19.3097 3.21084 Vertex 5149 -0.349781 20.1739 3.99692 Vertex 5150 -0.349371 15.6466 4.13339 Vertex 5151 -0.348628 18.0404 4.75027 Vertex 5152 -0.347656 11.988 -0.569456 Vertex 5153 -0.342142 20.3444 3.95272 Vertex 5154 -0.342121 15.6298 -5.82381 Vertex 5155 -0.340328 17.9782 4.69487 Vertex 5156 -0.339659 -13.4311 -1.57917 Vertex 5157 -0.338771 17.9548 4.59181 Vertex 5158 -0.338723 18.2027 2.42823 Vertex 5159 -0.338711 20.4166 2.42817 Vertex 5160 -0.338378 15.7973 4.13902 Vertex 5161 -0.33755 18.591 4.60559 Vertex 5162 -0.336796 15.5071 4.07752 Vertex 5163 -0.333865 20.5782 3.86313 Vertex 5164 -0.332622 22.9704 -2.19588 Vertex 5165 -0.330781 19.13 4.13428 Vertex 5166 -0.33044 15.8865 4.13357 Vertex 5167 -0.329946 17.9445 4.48783 Vertex 5168 -0.329264 22.8378 -2.8294 Vertex 5169 -0.327627 14.0482 3.53314 Vertex 5170 -0.325558 15.9144 4.11704 Vertex 5171 -0.321242 13.9695 3.30389 Vertex 5172 -0.320547 18.6688 4.54554 Vertex 5173 -0.31947 17.9528 4.29169 Vertex 5174 -0.31677 22.8144 -2.68599 Vertex 5175 -0.313858 17.9472 4.38291 Vertex 5176 -0.312966 19.2816 4.02798 Vertex 5177 -0.311945 22.8104 -2.55897 Vertex 5178 -0.310998 22.8053 -2.59584 Vertex 5179 -0.309822 19.643 3.88336 Vertex 5180 -0.307932 17.8136 4.20609 Vertex 5181 -0.30642 15.9675 4.02834 Vertex 5182 -0.306205 19.9678 3.98603 Vertex 5183 -0.304477 17.0018 3.94404 Vertex 5184 -0.303883 13.9239 2.89099 Vertex 5185 -0.303589 18.7688 4.47737 Vertex 5186 -0.300656 15.3789 3.9714 Vertex 5187 -0.300641 19.4423 3.90384 Vertex 5188 -0.298168 19.7263 3.9123 Vertex 5189 -0.296136 14.3691 3.94341 Vertex 5190 -0.295346 17.9322 4.29438 Vertex 5191 -0.294104 22.8372 -2.92034 Vertex 5192 -0.292648 18.8009 3.05488 Vertex 5193 -0.292643 19.8185 3.05485 Vertex 5194 -0.2913 14.1545 3.75204 Vertex 5195 -0.289375 15.2704 3.91069 Vertex 5196 -0.286676 18.8912 4.40108 Vertex 5197 -0.285771 17.9063 4.49378 Vertex 5198 -0.285549 17.9089 4.59877 Vertex 5199 -0.284849 15.3 3.9158 Vertex 5200 -0.283912 17.7366 4.24935 Vertex 5201 -0.283106 15.1923 3.93154 Vertex 5202 -0.277277 19.3096 2.35648 Vertex 5203 -0.277254 18.1889 2.22019 Vertex 5204 -0.277241 20.4304 2.22013 Vertex 5205 -0.27709 21.022 3.67883 Vertex 5206 -0.276249 17.8204 4.23887 Vertex 5207 -0.276085 23.5288 -0.430094 Vertex 5208 -0.275007 17.9139 4.38759 Vertex 5209 -0.274339 17.9216 4.70257 Vertex 5210 -0.273651 16.9735 3.84597 Vertex 5211 -0.27303 16.0461 3.86748 Vertex 5212 -0.27244 16.9655 3.8391 Vertex 5213 -0.270153 14.2029 3.8091 Vertex 5214 -0.269945 19.0216 4.31407 Vertex 5215 -0.269086 -20.0511 -2.71263 Vertex 5216 -0.266803 17.8924 4.2996 Vertex 5217 -0.266146 21.5721 3.35719 Vertex 5218 -0.266141 17.3954 4.33281 Vertex 5219 -0.266045 15.0656 3.97835 Vertex 5220 -0.265489 18.378 2.6639 Vertex 5221 -0.265478 20.2413 2.66385 Vertex 5222 -0.263658 16.8973 3.83218 Vertex 5223 -0.262028 17.8645 4.28572 Vertex 5224 -0.260716 19.5263 2.3524 Vertex 5225 -0.260715 19.0929 2.35241 Vertex 5226 -0.260694 14.0093 3.48904 Vertex 5227 -0.2604 17.6465 4.30234 Vertex 5228 -0.259108 24.1069 -4.49053 Vertex 5229 -0.257942 14.1038 3.68155 Vertex 5230 -0.256735 -19.9197 -3.28034 Vertex 5231 -0.255671 16.09 3.78441 Vertex 5232 -0.255256 14.9151 4.0169 Vertex 5233 -0.255121 22.7834 -5.38247 Vertex 5234 -0.254476 17.5327 4.33016 Vertex 5235 -0.25434 16.0993 3.77913 Vertex 5236 -0.253763 15.535 -3.78528 Vertex 5237 -0.253399 19.16 4.21632 Vertex 5238 -0.252451 24.0495 -4.23832 Vertex 5239 -0.2518 18.3727 4.85374 Vertex 5240 -0.250943 24.0738 -4.74302 Vertex 5241 -0.250737 14.741 4.04721 Vertex 5242 -0.250038 16.2541 3.7878 Vertex 5243 -0.248832 13.9049 3.09444 Vertex 5244 -0.248781 22.8749 -5.52053 Vertex 5245 -0.248464 18.2629 4.85866 Vertex 5246 -0.248401 18.5842 2.8749 Vertex 5247 -0.248395 20.0352 2.87486 Vertex 5248 -0.247909 18.4674 4.81895 Vertex 5249 -0.24749 17.8424 4.44667 Vertex 5250 -0.247304 16.7688 3.82521 Vertex 5251 -0.247066 20.5742 3.8995 Vertex 5252 -0.246113 17.7886 4.29781 Vertex 5253 -0.24605 22.6931 -5.1699 Vertex 5254 -0.244833 19.3143 4.09115 Vertex 5255 -0.244248 19.4843 3.93855 Vertex 5256 -0.243734 15.2525 -3.57626 Vertex 5257 -0.243218 17.8661 4.37536 Vertex 5258 -0.242765 16.5544 3.81041 Vertex 5259 -0.242632 20.3426 3.98513 Vertex 5260 -0.241599 18.153 4.85547 Vertex 5261 -0.2381 17.8247 4.51626 Vertex 5262 -0.237438 17.2624 4.32645 Vertex 5263 -0.236794 18.5471 4.75427 Vertex 5264 -0.236595 15.6833 -3.29809 Vertex 5265 -0.232918 17.8011 4.39853 Vertex 5266 -0.232341 16.8277 -2.95079 Vertex 5267 -0.231893 17.8328 4.34466 Vertex 5268 -0.231785 14.5695 4.03046 Vertex 5269 -0.231432 17.7355 4.32891 Vertex 5270 -0.231202 18.043 4.84419 Vertex 5271 -0.230971 23.9014 -3.98638 Vertex 5272 -0.227295 18.9633 3.07094 Vertex 5273 -0.227291 19.656 3.07092 Vertex 5274 -0.226682 21.0376 -4.72091 Vertex 5275 -0.225677 18.6268 4.68959 Vertex 5276 -0.224847 20.1765 4.02142 Vertex 5277 -0.22386 20.3572 -4.9949 Vertex 5278 -0.221568 22.604 -4.88282 Vertex 5279 -0.220061 17.7669 4.4263 Vertex 5280 -0.217768 23.9941 -5.02929 Vertex 5281 -0.215585 23.0553 -5.63636 Vertex 5282 -0.21505 17.8128 4.58411 Vertex 5283 -0.214562 18.7065 4.62492 Vertex 5284 -0.212275 -15.5639 -1.88101 Vertex 5285 -0.211934 23.69 -3.79719 Vertex 5286 -0.211637 17.2982 -2.76926 Vertex 5287 -0.21144 19.7377 2.34028 Vertex 5288 -0.211435 18.8816 2.34031 Vertex 5289 -0.211415 19.7262 3.92006 Vertex 5290 -0.21129 22.8124 -2.9588 Vertex 5291 -0.211039 23.6941 -5.59144 Vertex 5292 -0.210194 23.5602 -5.69608 Vertex 5293 -0.208981 19.3096 2.56285 Vertex 5294 -0.208779 14.235 3.83776 Vertex 5295 -0.20543 22.5908 -4.56631 Vertex 5296 -0.204344 13.9245 3.28341 Vertex 5297 -0.201551 17.9267 4.76913 Vertex 5298 -0.200713 18.8044 4.55065 Vertex 5299 -0.200598 -13.3633 -1.00287 Vertex 5300 -0.198399 14.4006 3.96665 Vertex 5301 -0.197638 22.6537 -4.22038 Vertex 5302 -0.196986 17.6545 4.38876 Vertex 5303 -0.195338 23.4152 -3.67074 Vertex 5304 -0.192624 19.5237 2.55882 Vertex 5305 -0.192621 19.0956 2.55883 Vertex 5306 -0.191632 14.0847 3.64455 Vertex 5307 -0.190847 21.7535 -4.1104 Vertex 5308 -0.190234 -17.6897 -2.59716 Vertex 5309 -0.18987 21.0829 3.64715 Vertex 5310 -0.189266 17.7238 4.47951 Vertex 5311 -0.187426 19.1343 3.08074 Vertex 5312 -0.187425 19.485 3.08073 Vertex 5313 -0.186303 22.5642 -3.89153 Vertex 5314 -0.184135 18.9206 4.46679 Vertex 5315 -0.182751 23.1584 -3.45014 Vertex 5316 -0.18238 19.7123 -4.93236 Vertex 5317 -0.182192 -17.8652 -2.04799 Vertex 5318 -0.180183 18.3422 2.4672 Vertex 5319 -0.180172 20.2771 2.46715 Vertex 5320 -0.178783 21.4665 3.42663 Vertex 5321 -0.175634 19.9779 4.00873 Vertex 5322 -0.174483 17.0948 -2.75351 Vertex 5323 -0.174173 22.9195 -3.1354 Vertex 5324 -0.174099 -15.6627 -1.30384 Vertex 5325 -0.174026 19.3097 3.08403 Vertex 5326 -0.17384 22.0545 3.02744 Vertex 5327 -0.171426 22.3225 -3.57976 Vertex 5328 -0.170906 19.0474 4.37324 Vertex 5329 -0.170693 22.134 -3.70982 Vertex 5330 -0.170421 13.9828 3.45791 Vertex 5331 -0.168367 17.1338 4.31108 Vertex 5332 -0.167353 20.648 3.87423 Vertex 5333 -0.166223 22.1791 -3.5192 Vertex 5334 -0.162038 19.5175 3.9699 Vertex 5335 -0.161548 18.8546 -5.06843 Vertex 5336 -0.161365 17.7839 -5.4031 Vertex 5337 -0.161262 14.1288 2.07389 Vertex 5338 -0.161031 19.185 4.26999 Vertex 5339 -0.160632 17.1493 -5.59079 Vertex 5340 -0.159697 16.7695 -4.7007 Vertex 5341 -0.159584 23.8678 -5.34936 Vertex 5342 -0.159347 16.9508 -5.63151 Vertex 5343 -0.159007 14.201 1.87705 Vertex 5344 -0.158681 14.0928 -3.67892 Vertex 5345 -0.158681 14.1131 -3.66734 Vertex 5346 -0.158075 19.3417 4.13555 Vertex 5347 -0.15632 14.0659 2.25372 Vertex 5348 -0.155535 23.3246 -5.72994 Vertex 5349 -0.1544 11.5898 0.274548 Vertex 5350 -0.1544 11.6101 0.286121 Vertex 5351 -0.153808 15.6826 -6.06314 Vertex 5352 -0.153438 16.6918 -5.72178 Vertex 5353 -0.153421 14.4485 1.29495 Vertex 5354 -0.152643 17.8041 4.63032 Vertex 5355 -0.151332 14.3243 -3.58599 Vertex 5356 -0.150836 15.6232 -5.99561 Vertex 5357 -0.150128 18.7493 2.89906 Vertex 5358 -0.150121 19.87 2.89903 Vertex 5359 -0.149881 16.6866 -2.82621 Vertex 5360 -0.149549 14.2826 1.66321 Vertex 5361 -0.149323 14.1836 1.12725 Vertex 5362 -0.14729 14.0071 2.44827 Vertex 5363 -0.14719 11.8213 0.367476 Vertex 5364 -0.146804 14.3651 1.46917 Vertex 5365 -0.144657 20.348 4.00229 Vertex 5366 -0.144205 17.368 4.35447 Vertex 5367 -0.143953 19.7324 2.54685 Vertex 5368 -0.143949 18.8868 2.54687 Vertex 5369 -0.142902 16.3723 -5.8616 Vertex 5370 -0.139425 17.4915 4.37142 Vertex 5371 -0.137849 16.3845 -4.83563 Vertex 5372 -0.137377 16.0735 -2.98738 Vertex 5373 -0.136633 14.7263 -3.43485 Vertex 5374 -0.135105 18.5352 2.69595 Vertex 5375 -0.135096 20.084 2.6959 Vertex 5376 -0.134823 17.6007 4.42515 Vertex 5377 -0.134562 13.5705 0.966079 Vertex 5378 -0.134174 13.9521 2.65753 Vertex 5379 -0.133302 17.0572 4.29293 Vertex 5380 -0.132982 16.0899 -5.9755 Vertex 5381 -0.132772 12.2233 0.518614 Vertex 5382 -0.132241 17.0328 4.27201 Vertex 5383 -0.131225 15.5571 -3.14079 Vertex 5384 -0.130659 19.9385 2.32042 Vertex 5385 -0.130653 18.6807 2.32045 Vertex 5386 -0.1304 17.6954 4.51566 Vertex 5387 -0.130364 23.4167 1.40274 Vertex 5388 -0.130308 17.2634 4.34226 Vertex 5389 -0.129931 15.1373 -3.28645 Vertex 5390 -0.127806 13.0541 0.812668 Vertex 5391 -0.127362 23.074 2.06086 Vertex 5392 -0.12723 22.4474 2.7444 Vertex 5393 -0.126317 22.751 2.50808 Vertex 5394 -0.126311 12.6342 0.667011 Vertex 5395 -0.124951 16.1006 -5.05061 Vertex 5396 -0.123677 15.8444 -6.06348 Vertex 5397 -0.121785 20.1831 4.03133 Vertex 5398 -0.121638 17.0012 4.17381 Vertex 5399 -0.121004 15.9179 -5.34565 Vertex 5400 -0.117367 15.7658 -5.6076 Vertex 5401 -0.116737 18.3301 2.25964 Vertex 5402 -0.116727 20.2892 2.25959 Vertex 5403 -0.116457 15.6695 4.19146 Vertex 5404 -0.114198 14.2209 3.80199 Vertex 5405 -0.114154 13.9085 2.87349 Vertex 5406 -0.11404 15.6444 -5.83645 Vertex 5407 -0.113747 16.1175 -4.15826 Vertex 5408 -0.113747 16.7534 -4.51734 Vertex 5409 -0.112793 15.8086 4.19426 Vertex 5410 -0.112265 15.5238 4.12591 Vertex 5411 -0.110757 14.1041 3.65393 Vertex 5412 -0.110146 15.892 4.18693 Vertex 5413 -0.109242 19.3096 2.75599 Vertex 5414 -0.108519 15.9198 4.16946 Vertex 5415 -0.10214 15.9713 4.08003 Vertex 5416 -0.101492 16.9625 3.99833 Vertex 5417 -0.100218 15.3714 3.9976 Vertex 5418 -0.098088 20.0237 4.02734 Vertex 5419 -0.096459 15.251 3.92598 Vertex 5420 -0.094994 19.7465 3.94706 Vertex 5421 -0.094949 15.2805 3.93096 Vertex 5422 -0.094368 15.1776 3.95345 Vertex 5423 -0.093492 19.5157 2.75212 Vertex 5424 -0.093489 19.1035 2.75213 Vertex 5425 -0.091217 16.9392 3.90675 Vertex 5426 -0.09101 16.0466 3.91863 Vertex 5427 -0.090813 16.9314 3.89908 Vertex 5428 -0.088682 15.0603 4.01337 Vertex 5429 -0.08791 23.5403 -0.381542 Vertex 5430 -0.08791 23.5752 0.71464 Vertex 5431 -0.087885 16.8705 3.88608 Vertex 5432 -0.087231 13.8762 3.09614 Vertex 5433 -0.085224 16.0889 3.8351 Vertex 5434 -0.085085 14.925 4.04796 Vertex 5435 -0.084779 16.0982 3.82943 Vertex 5436 -0.083933 18.3872 4.87702 Vertex 5437 -0.08358 14.7717 4.05721 Vertex 5438 -0.083346 16.252 3.83459 Vertex 5439 -0.082822 18.2748 4.88873 Vertex 5440 -0.082636 18.4812 4.84061 Vertex 5441 -0.082436 16.7566 3.86775 Vertex 5442 -0.080921 16.5504 3.85059 Vertex 5443 -0.080532 18.1606 4.8885 Vertex 5444 -0.078931 18.5565 4.77948 Vertex 5445 -0.078149 18.9282 2.91674 Vertex 5446 -0.078146 19.6911 2.91673 Vertex 5447 -0.077262 14.603 4.02773 Vertex 5448 -0.077068 18.0448 4.87633 Vertex 5449 -0.07581 -13.0023 0.423076 Vertex 5450 -0.075226 18.6319 4.71835 Vertex 5451 -0.071521 18.7072 4.65723 Vertex 5452 -0.068115 13.8962 3.2849 Vertex 5453 -0.067184 17.9241 4.79846 Vertex 5454 -0.066905 18.8075 4.58318 Vertex 5455 -0.066132 14.4188 3.95951 Vertex 5456 -0.064168 19.9308 2.52723 Vertex 5457 -0.064161 18.6885 2.52726 Vertex 5458 -0.06329 21.0583 3.6331 Vertex 5459 -0.061378 18.9327 4.49621 Vertex 5460 -0.056969 19.0652 4.40025 Vertex 5461 -0.056807 13.9685 3.43977 Vertex 5462 -0.055784 20.6489 3.87302 Vertex 5463 -0.054012 19.5418 3.99787 Vertex 5464 -0.053677 19.2049 4.29528 Vertex 5465 -0.052692 19.3638 4.16116 Vertex 5466 -0.050881 17.7985 4.65489 Vertex 5467 -0.04822 20.3607 4.0042 Vertex 5468 -0.048069 17.3499 4.35206 Vertex 5469 -0.046626 19.7168 2.74059 Vertex 5470 -0.046622 18.9025 2.74061 Vertex 5471 -0.046475 17.4633 4.37717 Vertex 5472 -0.044941 17.574 4.43807 Vertex 5473 -0.044777 18.5054 2.50049 Vertex 5474 -0.044768 20.1139 2.50045 Vertex 5475 -0.044695 21.4291 3.40616 Vertex 5476 -0.044695 21.9459 3.09546 Vertex 5477 -0.043467 17.6818 4.53476 Vertex 5478 -0.040595 20.1937 4.02663 Vertex 5479 -0.034242 19.1166 2.92754 Vertex 5480 -0.034239 19.5027 2.92753 Vertex 5481 -0.032577 17.1284 4.32783 Vertex 5482 -0.032577 17.2503 4.33577 Vertex 5483 -0.030207 18.7115 2.72173 Vertex 5484 -0.0302 19.9078 2.7217 Vertex 5485 -0.024522 19.7975 3.96782 Vertex 5486 -0.024522 20.0332 4.01934 Vertex 5487 -0.020366 20.1239 2.2933 Vertex 5488 -0.020357 18.4954 2.29334 Vertex 5489 -0.019484 19.3097 2.93116 Vertex 5490 0 -13.2231 -2.00432 Vertex 5491 0 -13.0514 -4.14164 Vertex 5492 0 -12.7555 0.184287 Vertex 5493 0 -11.8938 2.15542 Vertex 5494 0 -11.7856 -5.46618 Vertex 5495 0 -11.3829 2.9253 Vertex 5496 0 -10.3873 -5.9477 Vertex 5497 0 -9.73968 3.77928 Vertex 5498 0 -7.49681 -5.86605 Vertex 5499 0 -6.55576 4.09214 Vertex 5500 0 -3.67003 4.33465 Vertex 5501 0 -3.67003 4.0128 Vertex 5502 0 -3.66993 -4.4091 Vertex 5503 0 -3.66992 -4.73393 Vertex 5504 0 -2.25203 4.33467 Vertex 5505 0 -2.25203 4.01283 Vertex 5506 0 -2.25193 -4.40908 Vertex 5507 0 -2.25192 -4.73391 Vertex 5508 0 -0.834032 4.3285 Vertex 5509 0 -0.834028 4.01285 Vertex 5510 0 -0.833925 -4.40906 Vertex 5511 0 -0.833921 -4.72918 Vertex 5512 0 0.583966 4.32852 Vertex 5513 0 0.583971 4.01287 Vertex 5514 0 0.584074 -4.40904 Vertex 5515 0 0.584078 -4.72916 Vertex 5516 0 0.703731 -5.05308 Vertex 5517 0 0.721301 4.74723 Vertex 5518 0 1.39494 -5.30325 Vertex 5519 0 1.41114 5.06045 Vertex 5520 0 2.31433 5.22469 Vertex 5521 0 2.37276 -5.47608 Vertex 5522 0 3.45529 -5.50295 Vertex 5523 0 3.55283 5.01156 Vertex 5524 0 4.53781 -5.52982 Vertex 5525 0 4.72949 -5.74467 Vertex 5526 0 4.79133 4.79843 Vertex 5527 0 4.98491 4.9385 Vertex 5528 0 5.38226 -5.69874 Vertex 5529 0 5.58705 4.93805 Vertex 5530 0 6.32359 4.93752 Vertex 5531 0 6.47282 5.06542 Vertex 5532 0 6.73449 5.01656 Vertex 5533 0 6.78313 4.54561 Vertex 5534 0 6.83189 4.84103 Vertex 5535 0 7.82099 4.60024 Vertex 5536 0 8.04785 -6.21318 Vertex 5537 0 10.0236 3.24507 Vertex 5538 0 10.0753 2.95122 Vertex 5539 0 11.1452 -5.72641 Vertex 5540 0 11.5285 1.6681 Vertex 5541 0 11.8018 0.889561 Vertex 5542 0 11.8225 2.11012 Vertex 5543 0 12.1175 -0.013817 Vertex 5544 0 12.6615 -5.16946 Vertex 5545 0 12.6895 -1.66554 Vertex 5546 0 12.8945 -4.37406 Vertex 5547 0 12.9177 -5.09135 Vertex 5548 0 13.1562 -4.85618 Vertex 5549 0 13.1698 -4.59738 Vertex 5550 0 13.2844 -3.40235 Vertex 5551 0 14.0406 -3.75157 Vertex 5552 0 22.1597 -3.69346 Vertex 5553 0 22.199 -3.51378 Vertex 5554 0.019484 19.3097 2.93116 Vertex 5555 0.020357 18.4954 2.29334 Vertex 5556 0.020366 20.1239 2.2933 Vertex 5557 0.024522 19.7975 3.96782 Vertex 5558 0.024522 20.0332 4.01934 Vertex 5559 0.0302 19.9078 2.7217 Vertex 5560 0.030207 18.7115 2.72173 Vertex 5561 0.032012 11.9635 -0.538888 Vertex 5562 0.032577 17.1284 4.32783 Vertex 5563 0.032577 17.2503 4.33577 Vertex 5564 0.034239 19.5027 2.92753 Vertex 5565 0.034242 19.1166 2.92754 Vertex 5566 0.040595 20.1937 4.02663 Vertex 5567 0.043013 13.1548 -2.50719 Vertex 5568 0.043467 17.6818 4.53476 Vertex 5569 0.044695 21.4291 3.40616 Vertex 5570 0.044695 21.9459 3.09546 Vertex 5571 0.044768 20.1139 2.50045 Vertex 5572 0.044777 18.5054 2.50049 Vertex 5573 0.044941 17.574 4.43807 Vertex 5574 0.046475 17.4633 4.37717 Vertex 5575 0.046622 18.9025 2.74061 Vertex 5576 0.046626 19.7168 2.74059 Vertex 5577 0.048069 17.3499 4.35206 Vertex 5578 0.04822 20.3607 4.0042 Vertex 5579 0.050881 17.7985 4.65489 Vertex 5580 0.052692 19.3638 4.16116 Vertex 5581 0.053677 19.2049 4.29528 Vertex 5582 0.054012 19.5418 3.99787 Vertex 5583 0.055784 20.6489 3.87302 Vertex 5584 0.056807 13.9685 3.43977 Vertex 5585 0.056969 19.0652 4.40025 Vertex 5586 0.061378 18.9327 4.49621 Vertex 5587 0.06329 21.0583 3.6331 Vertex 5588 0.064161 18.6885 2.52726 Vertex 5589 0.064168 19.9308 2.52723 Vertex 5590 0.066132 14.4188 3.95951 Vertex 5591 0.066905 18.8075 4.58318 Vertex 5592 0.067184 17.9241 4.79846 Vertex 5593 0.068115 13.8962 3.2849 Vertex 5594 0.071521 18.7072 4.65723 Vertex 5595 0.075226 18.6319 4.71835 Vertex 5596 0.07581 -13.0023 0.423076 Vertex 5597 0.077068 18.0448 4.87633 Vertex 5598 0.077262 14.603 4.02773 Vertex 5599 0.077585 13.8762 3.09614 Vertex 5600 0.078146 19.6911 2.91673 Vertex 5601 0.078149 18.9282 2.91674 Vertex 5602 0.078931 18.5565 4.77948 Vertex 5603 0.080532 18.1606 4.8885 Vertex 5604 0.080921 16.5504 3.85059 Vertex 5605 0.082436 16.7566 3.86775 Vertex 5606 0.082636 18.4812 4.84061 Vertex 5607 0.082822 18.2748 4.88873 Vertex 5608 0.083346 16.252 3.83459 Vertex 5609 0.08358 14.7717 4.05721 Vertex 5610 0.083933 18.3872 4.87702 Vertex 5611 0.084779 16.0982 3.82943 Vertex 5612 0.085085 14.925 4.04796 Vertex 5613 0.085219 13.9085 2.87349 Vertex 5614 0.085224 16.0889 3.8351 Vertex 5615 0.087885 16.8705 3.88608 Vertex 5616 0.08791 23.5403 -0.381542 Vertex 5617 0.08791 23.5752 0.71464 Vertex 5618 0.088682 15.0603 4.01337 Vertex 5619 0.090813 16.9314 3.89908 Vertex 5620 0.09101 16.0466 3.91863 Vertex 5621 0.091217 16.9392 3.90675 Vertex 5622 0.093489 19.1035 2.75213 Vertex 5623 0.093492 19.5157 2.75212 Vertex 5624 0.094368 15.1776 3.95345 Vertex 5625 0.094949 15.2805 3.93096 Vertex 5626 0.094994 19.7465 3.94706 Vertex 5627 0.095465 13.9521 2.65753 Vertex 5628 0.096459 15.251 3.92598 Vertex 5629 0.098088 20.0237 4.02734 Vertex 5630 0.100218 15.3714 3.9976 Vertex 5631 0.101492 16.9625 3.99833 Vertex 5632 0.10214 15.9713 4.08003 Vertex 5633 0.107801 14.3651 1.46917 Vertex 5634 0.108326 14.0071 2.44827 Vertex 5635 0.108519 15.9198 4.16946 Vertex 5636 0.109242 19.3096 2.75599 Vertex 5637 0.110146 15.892 4.18693 Vertex 5638 0.110757 14.1041 3.65393 Vertex 5639 0.111972 14.2826 1.66321 Vertex 5640 0.112265 15.5238 4.12591 Vertex 5641 0.11278 14.4485 1.29495 Vertex 5642 0.112793 15.8086 4.19426 Vertex 5643 0.113747 16.1175 -4.15826 Vertex 5644 0.113747 16.7534 -4.51734 Vertex 5645 0.11404 15.6444 -5.83645 Vertex 5646 0.114198 14.2209 3.80199 Vertex 5647 0.116457 15.6695 4.19146 Vertex 5648 0.116727 20.2892 2.25959 Vertex 5649 0.116737 18.3301 2.25964 Vertex 5650 0.117367 15.7658 -5.6076 Vertex 5651 0.119054 14.0659 2.25372 Vertex 5652 0.121004 15.9179 -5.34565 Vertex 5653 0.121278 14.1836 1.12725 Vertex 5654 0.121638 17.0012 4.17381 Vertex 5655 0.121785 20.1831 4.03133 Vertex 5656 0.123677 15.8444 -6.06348 Vertex 5657 0.124951 16.1006 -5.05061 Vertex 5658 0.12529 14.201 1.87705 Vertex 5659 0.126317 22.751 2.50808 Vertex 5660 0.12723 22.4474 2.7444 Vertex 5661 0.127362 23.074 2.06086 Vertex 5662 0.127651 14.1288 2.07389 Vertex 5663 0.130308 17.2634 4.34226 Vertex 5664 0.130364 23.4167 1.40274 Vertex 5665 0.1304 17.6954 4.51566 Vertex 5666 0.130653 18.6807 2.32045 Vertex 5667 0.130659 19.9385 2.32042 Vertex 5668 0.132241 17.0328 4.27201 Vertex 5669 0.132982 16.0899 -5.9755 Vertex 5670 0.133295 13.5705 0.966079 Vertex 5671 0.133302 17.0572 4.29293 Vertex 5672 0.134823 17.6007 4.42515 Vertex 5673 0.135096 20.084 2.6959 Vertex 5674 0.135105 18.5352 2.69595 Vertex 5675 0.137849 16.3845 -4.83563 Vertex 5676 0.139425 17.4915 4.37142 Vertex 5677 0.142902 16.3723 -5.8616 Vertex 5678 0.143949 18.8868 2.54687 Vertex 5679 0.143953 19.7324 2.54685 Vertex 5680 0.144205 17.368 4.35447 Vertex 5681 0.144657 20.348 4.00229 Vertex 5682 0.148166 13.0541 0.812668 Vertex 5683 0.150121 19.87 2.89903 Vertex 5684 0.150128 18.7493 2.89906 Vertex 5685 0.150836 15.6232 -5.99561 Vertex 5686 0.152643 17.8041 4.63032 Vertex 5687 0.153438 16.6918 -5.72178 Vertex 5688 0.153808 15.6826 -6.06314 Vertex 5689 0.155535 23.3246 -5.72994 Vertex 5690 0.158075 19.3417 4.13555 Vertex 5691 0.159347 16.9508 -5.63151 Vertex 5692 0.159584 23.8678 -5.34936 Vertex 5693 0.159697 16.7695 -4.7007 Vertex 5694 0.160632 17.1493 -5.59079 Vertex 5695 0.161031 19.185 4.26999 Vertex 5696 0.161365 17.7839 -5.4031 Vertex 5697 0.161548 18.8546 -5.06843 Vertex 5698 0.162038 19.5175 3.9699 Vertex 5699 0.165889 12.6342 0.667011 Vertex 5700 0.166223 22.1791 -3.5192 Vertex 5701 0.167353 20.648 3.87423 Vertex 5702 0.168367 17.1338 4.31108 Vertex 5703 0.169032 16.6866 -2.82621 Vertex 5704 0.170421 13.9828 3.45791 Vertex 5705 0.170693 22.134 -3.70982 Vertex 5706 0.170906 19.0474 4.37324 Vertex 5707 0.171426 22.3225 -3.57976 Vertex 5708 0.17384 22.0545 3.02744 Vertex 5709 0.174026 19.3097 3.08403 Vertex 5710 0.174099 -15.6627 -1.30384 Vertex 5711 0.174173 22.9195 -3.1354 Vertex 5712 0.175634 19.9779 4.00873 Vertex 5713 0.176147 17.0948 -2.75351 Vertex 5714 0.178783 21.4665 3.42663 Vertex 5715 0.178855 12.2233 0.518614 Vertex 5716 0.180172 20.2771 2.46715 Vertex 5717 0.180183 18.3422 2.4672 Vertex 5718 0.182192 -17.8652 -2.04799 Vertex 5719 0.18238 19.7123 -4.93236 Vertex 5720 0.182751 23.1584 -3.45014 Vertex 5721 0.184135 18.9206 4.46679 Vertex 5722 0.184496 16.0735 -2.98738 Vertex 5723 0.186303 22.5642 -3.89153 Vertex 5724 0.187064 11.8213 0.367476 Vertex 5725 0.187425 19.485 3.08073 Vertex 5726 0.187426 19.1343 3.08074 Vertex 5727 0.189266 17.7238 4.47951 Vertex 5728 0.18987 21.0829 3.64715 Vertex 5729 0.190234 -17.6897 -2.59716 Vertex 5730 0.190847 21.7535 -4.1104 Vertex 5731 0.191168 11.5898 0.274548 Vertex 5732 0.191168 11.6101 0.286121 Vertex 5733 0.191632 14.0847 3.64455 Vertex 5734 0.192621 19.0956 2.55883 Vertex 5735 0.192624 19.5237 2.55882 Vertex 5736 0.195338 23.4152 -3.67074 Vertex 5737 0.195413 15.5571 -3.14079 Vertex 5738 0.196986 17.6545 4.38876 Vertex 5739 0.197638 22.6537 -4.22038 Vertex 5740 0.198399 14.4006 3.96665 Vertex 5741 0.200598 -13.3633 -1.00287 Vertex 5742 0.200713 18.8044 4.55065 Vertex 5743 0.201551 17.9267 4.76913 Vertex 5744 0.204344 13.9245 3.28341 Vertex 5745 0.20543 22.5908 -4.56631 Vertex 5746 0.208779 14.235 3.83775 Vertex 5747 0.208981 19.3096 2.56285 Vertex 5748 0.210194 23.5602 -5.69608 Vertex 5749 0.210528 15.1373 -3.28645 Vertex 5750 0.211039 23.6941 -5.59144 Vertex 5751 0.21129 22.8124 -2.9588 Vertex 5752 0.211415 19.7262 3.92006 Vertex 5753 0.211435 18.8816 2.34031 Vertex 5754 0.21144 19.7377 2.34028 Vertex 5755 0.211637 17.2982 -2.76926 Vertex 5756 0.211934 23.69 -3.79719 Vertex 5757 0.212275 -15.5639 -1.88101 Vertex 5758 0.214562 18.7065 4.62492 Vertex 5759 0.21505 17.8128 4.58411 Vertex 5760 0.215585 23.0553 -5.63636 Vertex 5761 0.217768 23.9941 -5.02929 Vertex 5762 0.220061 17.7669 4.4263 Vertex 5763 0.221568 22.604 -4.88282 Vertex 5764 0.22386 20.3572 -4.9949 Vertex 5765 0.224847 20.1765 4.02142 Vertex 5766 0.225677 18.6268 4.68959 Vertex 5767 0.226132 14.7263 -3.43485 Vertex 5768 0.226682 21.0376 -4.72091 Vertex 5769 0.227291 19.656 3.07092 Vertex 5770 0.227295 18.9633 3.07094 Vertex 5771 0.230971 23.9014 -3.98638 Vertex 5772 0.231202 18.043 4.84419 Vertex 5773 0.231432 17.7355 4.32891 Vertex 5774 0.231785 14.5695 4.03046 Vertex 5775 0.231893 17.8328 4.34466 Vertex 5776 0.232341 16.8277 -2.95079 Vertex 5777 0.232918 17.8011 4.39853 Vertex 5778 0.236595 15.6833 -3.29809 Vertex 5779 0.236794 18.5471 4.75427 Vertex 5780 0.237438 17.2624 4.32645 Vertex 5781 0.237774 14.3243 -3.58599 Vertex 5782 0.2381 17.8247 4.51626 Vertex 5783 0.241599 18.153 4.85547 Vertex 5784 0.242632 20.3426 3.98513 Vertex 5785 0.242765 16.5544 3.81041 Vertex 5786 0.243218 17.8661 4.37536 Vertex 5787 0.243594 14.0928 -3.67892 Vertex 5788 0.243594 14.1131 -3.66734 Vertex 5789 0.243734 15.2525 -3.57626 Vertex 5790 0.244248 19.4843 3.93855 Vertex 5791 0.244833 19.3143 4.09115 Vertex 5792 0.245617 13.9049 3.09444 Vertex 5793 0.24605 22.6931 -5.1699 Vertex 5794 0.246113 17.7886 4.29781 Vertex 5795 0.247066 20.5742 3.8995 Vertex 5796 0.247304 16.7688 3.82521 Vertex 5797 0.247489 17.8424 4.44667 Vertex 5798 0.247909 18.4674 4.81895 Vertex 5799 0.248395 20.0352 2.87486 Vertex 5800 0.248401 18.5842 2.8749 Vertex 5801 0.248464 18.2629 4.85866 Vertex 5802 0.248781 22.8749 -5.52053 Vertex 5803 0.250038 16.2541 3.7878 Vertex 5804 0.250737 14.741 4.04721 Vertex 5805 0.250943 24.0738 -4.74302 Vertex 5806 0.2518 18.3727 4.85374 Vertex 5807 0.252451 24.0495 -4.23832 Vertex 5808 0.253399 19.16 4.21632 Vertex 5809 0.253763 15.535 -3.78528 Vertex 5810 0.25434 16.0993 3.77913 Vertex 5811 0.254476 17.5327 4.33016 Vertex 5812 0.255121 22.7834 -5.38247 Vertex 5813 0.255256 14.9151 4.0169 Vertex 5814 0.255671 16.09 3.78441 Vertex 5815 0.256735 -19.9197 -3.28034 Vertex 5816 0.257942 14.1038 3.68155 Vertex 5817 0.259108 24.1069 -4.49053 Vertex 5818 0.2604 17.6465 4.30234 Vertex 5819 0.260694 14.0093 3.48904 Vertex 5820 0.260715 19.0929 2.35241 Vertex 5821 0.260716 19.5263 2.3524 Vertex 5822 0.262028 17.8645 4.28572 Vertex 5823 0.263658 16.8973 3.83218 Vertex 5824 0.265478 20.2413 2.66385 Vertex 5825 0.265489 18.378 2.6639 Vertex 5826 0.266045 15.0656 3.97835 Vertex 5827 0.266141 17.3954 4.33281 Vertex 5828 0.266146 21.5721 3.35719 Vertex 5829 0.266803 17.8924 4.2996 Vertex 5830 0.269086 -20.0511 -2.71263 Vertex 5831 0.269945 19.0216 4.31407 Vertex 5832 0.270153 14.2029 3.8091 Vertex 5833 0.27244 16.9655 3.8391 Vertex 5834 0.27303 16.0461 3.86748 Vertex 5835 0.273651 16.9735 3.84597 Vertex 5836 0.274339 17.9216 4.70257 Vertex 5837 0.275008 17.9139 4.38759 Vertex 5838 0.276085 23.5288 -0.430094 Vertex 5839 0.276249 17.8204 4.23887 Vertex 5840 0.27709 21.022 3.67883 Vertex 5841 0.277241 20.4304 2.22013 Vertex 5842 0.277254 18.1889 2.22019 Vertex 5843 0.277277 19.3096 2.35648 Vertex 5844 0.283106 15.1923 3.93154 Vertex 5845 0.283912 17.7366 4.24936 Vertex 5846 0.284849 15.3 3.9158 Vertex 5847 0.285549 17.9089 4.59877 Vertex 5848 0.285771 17.9063 4.49378 Vertex 5849 0.286676 18.8912 4.40108 Vertex 5850 0.289375 15.2704 3.91069 Vertex 5851 0.2913 14.1545 3.75204 Vertex 5852 0.292643 19.8185 3.05485 Vertex 5853 0.292648 18.8009 3.05488 Vertex 5854 0.294104 22.8372 -2.92034 Vertex 5855 0.294238 13.9239 2.89099 Vertex 5856 0.295346 17.9322 4.29438 Vertex 5857 0.296136 14.3691 3.94341 Vertex 5858 0.298168 19.7263 3.9123 Vertex 5859 0.300641 19.4423 3.90384 Vertex 5860 0.300656 15.3789 3.9714 Vertex 5861 0.303589 18.7688 4.47737 Vertex 5862 0.304477 17.0018 3.94404 Vertex 5863 0.306205 19.9678 3.98603 Vertex 5864 0.30642 15.9675 4.02834 Vertex 5865 0.307932 17.8136 4.20609 Vertex 5866 0.309822 19.643 3.88336 Vertex 5867 0.310998 22.8053 -2.59584 Vertex 5868 0.311945 22.8104 -2.55897 Vertex 5869 0.312966 19.2816 4.02798 Vertex 5870 0.313858 17.9472 4.38291 Vertex 5871 0.31677 22.8144 -2.68599 Vertex 5872 0.31947 17.9528 4.29169 Vertex 5873 0.320547 18.6688 4.54554 Vertex 5874 0.321242 13.9695 3.30389 Vertex 5875 0.325558 15.9144 4.11704 Vertex 5876 0.327627 14.0482 3.53314 Vertex 5877 0.329264 22.8378 -2.8294 Vertex 5878 0.329946 17.9445 4.48783 Vertex 5879 0.33044 15.8865 4.13357 Vertex 5880 0.330781 19.13 4.13428 Vertex 5881 0.332622 22.9704 -2.19588 Vertex 5882 0.333865 20.5782 3.86313 Vertex 5883 0.335094 13.9652 2.67394 Vertex 5884 0.336796 15.5071 4.07752 Vertex 5885 0.33755 18.591 4.60559 Vertex 5886 0.338378 15.7973 4.13902 Vertex 5887 0.338711 20.4166 2.42817 Vertex 5888 0.338723 18.2027 2.42823 Vertex 5889 0.338771 17.9548 4.59181 Vertex 5890 0.339659 -13.4311 -1.57917 Vertex 5891 0.340328 17.9782 4.69487 Vertex 5892 0.342121 15.6298 -5.82381 Vertex 5893 0.342142 20.3444 3.95272 Vertex 5894 0.348628 18.0404 4.75027 Vertex 5895 0.349371 15.6466 4.13339 Vertex 5896 0.349781 20.1739 3.99692 Vertex 5897 0.35058 19.3097 3.21084 Vertex 5898 0.351638 23.582 0.676545 Vertex 5899 0.351679 21.1196 3.61823 Vertex 5900 0.352101 15.7421 -5.58711 Vertex 5901 0.35346 17.9279 4.16278 Vertex 5902 0.353528 15.6095 -5.9818 Vertex 5903 0.354087 18.9876 4.22274 Vertex 5904 0.354552 18.5132 4.66564 Vertex 5905 0.354842 -17.7762 -2.31877 Vertex 5906 0.355521 19.5894 3.8538 Vertex 5907 0.358233 17.9559 4.17665 Vertex 5908 0.359051 14.5304 3.99889 Vertex 5909 0.359343 14.3244 3.88978 Vertex 5910 0.359767 17.9661 4.36134 Vertex 5911 0.362291 19.4629 3.20796 Vertex 5912 0.362292 19.1564 3.20797 Vertex 5913 0.363012 15.8846 -5.31692 Vertex 5914 0.363299 17.975 4.28883 Vertex 5915 0.363667 18.1413 4.75803 Vertex 5916 0.363696 14.397 1.45388 Vertex 5917 0.364914 17.0505 4.13331 Vertex 5918 0.364985 15.6862 -6.07089 Vertex 5919 0.366267 -15.6179 -1.5736 Vertex 5920 0.368187 14.029 2.4433 Vertex 5921 0.368365 19.3787 3.81435 Vertex 5922 0.369004 18.8445 4.2991 Vertex 5923 0.370544 20.1824 2.84483 Vertex 5924 0.370553 18.4369 2.84487 Vertex 5925 0.371029 15.8342 -6.06092 Vertex 5926 0.371554 18.4354 4.72569 Vertex 5927 0.373025 23.2854 -1.50657 Vertex 5928 0.373404 18.2429 4.76035 Vertex 5929 0.374361 14.3181 1.64081 Vertex 5930 0.374854 16.0573 -5.01324 Vertex 5931 0.375531 18.7008 4.36335 Vertex 5932 0.377173 14.474 1.28091 Vertex 5933 0.377501 17.7703 4.18764 Vertex 5934 0.377837 18.3453 4.75726 Vertex 5935 0.378953 22.7681 2.43965 Vertex 5936 0.379505 17.6996 4.22024 Vertex 5937 0.380016 17.9569 4.42882 Vertex 5938 0.381689 22.4766 2.69633 Vertex 5939 0.381872 19.9684 3.03291 Vertex 5940 0.38188 18.6509 3.03295 Vertex 5941 0.382086 23.0841 1.99238 Vertex 5942 0.382357 17.9765 4.17396 Vertex 5943 0.385143 17.9211 4.12999 Vertex 5944 0.386051 15.9861 -4.05547 Vertex 5945 0.387431 22.0867 2.98813 Vertex 5946 0.388764 17.8375 4.15456 Vertex 5947 0.389477 18.5941 4.4191 Vertex 5948 0.389615 19.2271 3.92217 Vertex 5949 0.389919 14.2059 1.11384 Vertex 5950 0.391091 23.4245 1.35452 Vertex 5951 0.39163 17.5868 4.25339 Vertex 5952 0.39175 13.9544 3.11342 Vertex 5953 0.395192 14.0949 2.23152 Vertex 5954 0.396179 21.5986 3.31504 Vertex 5955 0.396724 17.0869 4.23832 Vertex 5956 0.397134 19.6124 3.19939 Vertex 5957 0.397138 19.007 3.1994 Vertex 5958 0.397766 17.9624 4.49538 Vertex 5959 0.398047 14.079 3.54476 Vertex 5960 0.398947 16.0735 -5.97134 Vertex 5961 0.399906 17.1109 4.25906 Vertex 5962 0.400032 19.973 3.98043 Vertex 5963 0.401615 14.7044 4.00851 Vertex 5964 0.401937 13.5928 0.952667 Vertex 5965 0.406598 19.5137 3.76522 Vertex 5966 0.407137 14.2784 3.83831 Vertex 5967 0.407372 17.1807 4.27805 Vertex 5968 0.409168 14.2373 1.8417 Vertex 5969 0.410414 19.0778 4.01479 Vertex 5970 0.410842 18.5244 4.46634 Vertex 5971 0.412977 17.9693 4.27515 Vertex 5972 0.413018 17.9826 4.561 Vertex 5973 0.413163 11.988 -0.569456 Vertex 5974 0.413547 16.3433 -4.79865 Vertex 5975 0.413876 17.4319 4.28708 Vertex 5976 0.41561 14.1304 3.65719 Vertex 5977 0.416112 14.1629 2.03861 Vertex 5978 0.416537 16.556 3.75966 Vertex 5979 0.417897 23.5195 -5.73171 Vertex 5980 0.418137 20.3755 2.62632 Vertex 5981 0.418148 18.2438 2.62637 Vertex 5982 0.418807 14.0312 3.34634 Vertex 5983 0.419123 17.2965 4.2953 Vertex 5984 0.419899 16.253 3.73093 Vertex 5985 0.422269 16.7778 3.77294 Vertex 5986 0.422548 16.0969 3.71901 Vertex 5987 0.423829 14.891 3.97227 Vertex 5988 0.424486 16.0875 3.72389 Vertex 5989 0.42457 23.7132 -5.5602 Vertex 5990 0.424944 13.0764 0.799254 Vertex 5991 0.425481 14.1037 3.58896 Vertex 5992 0.428707 16.3494 -5.85576 Vertex 5993 0.429341 18.037 4.59459 Vertex 5994 0.430382 -19.9594 -2.99256 Vertex 5995 0.430438 20.6969 3.81057 Vertex 5996 0.430761 18.9309 4.09222 Vertex 5997 0.432035 17.9708 4.16028 Vertex 5998 0.432206 18.4547 4.51358 Vertex 5999 0.432442 15.6526 -6.02943 Vertex 6000 0.434728 19.8805 3.96359 Vertex 6001 0.436402 17.9577 4.32922 Vertex 6002 0.437091 16.9184 3.77076 Vertex 6003 0.439514 14.231 3.78899 Vertex 6004 0.441558 19.7902 3.92558 Vertex 6005 0.442339 14.1817 3.72862 Vertex 6006 0.442811 18.7811 4.15684 Vertex 6007 0.445481 16.9928 3.77271 Vertex 6008 0.446563 18.6284 4.20866 Vertex 6009 0.446737 18.1255 4.59616 Vertex 6010 0.447422 19.2935 3.67007 Vertex 6011 0.447439 17.0008 3.77877 Vertex 6012 0.448167 15.0546 3.93457 Vertex 6013 0.450767 20.0287 4.01886 Vertex 6014 0.452728 16.0411 3.80579 Vertex 6015 0.45357 18.3849 4.56082 Vertex 6016 0.454255 19.7544 3.18534 Vertex 6017 0.45426 18.865 3.18536 Vertex 6018 0.454991 16.7335 -4.49453 Vertex 6019 0.457226 20.5439 2.17588 Vertex 6020 0.457239 18.0753 2.17594 Vertex 6021 0.457639 18.2149 4.59382 Vertex 6022 0.458307 18.5244 4.26243 Vertex 6023 0.458943 12.6566 0.653598 Vertex 6024 0.459061 14.4857 3.93301 Vertex 6025 0.459697 17.927 4.09998 Vertex 6026 0.460314 16.6619 -5.71419 Vertex 6027 0.46089 17.9486 4.3735 Vertex 6028 0.461916 21.1642 3.58271 Vertex 6029 0.462049 18.305 4.58757 Vertex 6030 0.463053 19.4159 3.61761 Vertex 6031 0.463317 17.8433 4.12455 Vertex 6032 0.466604 23.3031 -5.73047 Vertex 6033 0.471405 -13.4333 -1.26545 Vertex 6034 0.472217 13.9641 2.91762 Vertex 6035 0.472762 20.0065 4.05591 Vertex 6036 0.474633 15.1949 3.89539 Vertex 6037 0.474782 19.1507 3.77372 Vertex 6038 0.475942 13.0669 -2.47061 Vertex 6039 0.477463 18.0476 4.50316 Vertex 6040 0.477608 19.7229 3.87786 Vertex 6041 0.478044 16.9191 -5.61978 Vertex 6042 0.478045 18.4691 4.31817 Vertex 6043 0.478752 23.8626 -5.33489 Vertex 6044 0.478777 15.3096 3.88363 Vertex 6045 0.479093 16.7425 -4.67317 Vertex 6046 0.481896 17.1209 -5.57253 Vertex 6047 0.481913 20.4038 3.93024 Vertex 6048 0.483115 19.9424 4.00136 Vertex 6049 0.4834 17.9508 4.13019 Vertex 6050 0.484097 17.7527 -5.38471 Vertex 6051 0.484645 18.8145 -5.05631 Vertex 6052 0.484836 15.2799 3.87841 Vertex 6053 0.48506 17.9546 4.41519 Vertex 6054 0.485335 15.6559 -5.85259 Vertex 6055 0.491392 12.2456 0.505202 Vertex 6056 0.492298 19.0034 3.85787 Vertex 6057 0.492739 17.0323 3.87878 Vertex 6058 0.492782 20.1021 3.00564 Vertex 6059 0.492791 18.5172 3.00568 Vertex 6060 0.496038 18.13 4.50164 Vertex 6061 0.496222 18.4114 4.37388 Vertex 6062 0.497717 17.7884 4.13487 Vertex 6063 0.49867 22.1338 -3.50016 Vertex 6064 0.499013 15.3752 3.92602 Vertex 6065 0.499971 18.8516 3.9225 Vertex 6066 0.500415 19.9328 4.03709 Vertex 6067 0.503502 17.9344 4.09998 Vertex 6068 0.504314 19.6321 3.77478 Vertex 6069 0.504543 14.0733 3.35714 Vertex 6070 0.504907 16.5374 -2.80076 Vertex 6071 0.506102 20.2402 3.97723 Vertex 6072 0.507273 15.9574 3.96473 Vertex 6073 0.5081 18.701 3.97431 Vertex 6074 0.508711 18.1979 4.4852 Vertex 6075 0.50891 17.9758 4.45428 Vertex 6076 0.510047 18.1257 4.46165 Vertex 6077 0.512079 22.0771 -3.71268 Vertex 6078 0.51284 18.3513 4.42956 Vertex 6079 0.513564 20.3082 2.80967 Vertex 6080 0.513574 18.3111 2.80972 Vertex 6081 0.513798 19.8641 3.96686 Vertex 6082 0.514244 15.8109 -6.0342 Vertex 6083 0.514279 22.2848 -3.54805 Vertex 6084 0.515983 14.0248 3.15309 Vertex 6085 0.51648 20.5287 2.38447 Vertex 6086 0.516493 18.0905 2.38453 Vertex 6087 0.516495 17.7365 4.15197 Vertex 6088 0.516686 18.5516 4.0133 Vertex 6089 0.516745 15.7844 -5.63376 Vertex 6090 0.517003 18.2801 4.46667 Vertex 6091 0.518179 17.9299 4.23698 Vertex 6092 0.519204 15.9243 -2.96193 Vertex 6093 0.520797 21.5687 3.30643 Vertex 6094 0.521678 19.5179 3.61635 Vertex 6095 0.522294 11.8436 0.354064 Vertex 6096 0.522518 22.8617 -3.09795 Vertex 6097 0.526539 19.8644 4.00722 Vertex 6098 0.526617 18.1919 4.43451 Vertex 6099 0.527039 18.4597 4.07556 Vertex 6100 0.530941 20.1425 4.0188 Vertex 6101 0.531922 15.4078 -3.11535 Vertex 6102 0.532245 19.8854 3.16616 Vertex 6103 0.532251 18.7339 3.16619 Vertex 6104 0.535705 18.024 4.45433 Vertex 6105 0.536215 14.6618 3.94111 Vertex 6106 0.537745 11.6121 0.261136 Vertex 6107 0.537745 11.6324 0.272709 Vertex 6108 0.537987 15.9017 4.05165 Vertex 6109 0.539057 23.6469 -5.6087 Vertex 6110 0.539159 18.425 4.16108 Vertex 6111 0.539813 23.5705 0.627994 Vertex 6112 0.542702 18.2706 4.39458 Vertex 6113 0.542812 19.7935 3.91536 Vertex 6114 0.543105 23.5687 -5.68444 Vertex 6115 0.543683 15.7227 -5.9228 Vertex 6116 0.543764 17.9218 4.28655 Vertex 6117 0.543886 19.2054 3.55099 Vertex 6118 0.543993 19.3211 3.50115 Vertex 6119 0.544324 16.9796 -2.70916 Vertex 6120 0.544508 14.4258 3.8658 Vertex 6121 0.544799 19.3097 3.30847 Vertex 6122 0.544868 15.8737 4.06657 Vertex 6123 0.545544 15.4769 4.00558 Vertex 6124 0.546601 18.3833 4.24653 Vertex 6125 0.546688 18.637 3.88344 Vertex 6126 0.54714 19.6521 -4.90585 Vertex 6127 0.548254 23.0984 -3.4152 Vertex 6128 0.548682 14.0047 2.69901 Vertex 6129 0.549363 18.3344 4.33192 Vertex 6130 0.550316 15.9439 -5.38234 Vertex 6131 0.551136 19.8014 3.96631 Vertex 6132 0.553319 15.7744 -5.98334 Vertex 6133 0.553433 15.7767 4.06686 Vertex 6134 0.55383 22.0598 2.98093 Vertex 6135 0.554533 19.437 3.30608 Vertex 6136 0.554534 19.1823 3.30608 Vertex 6137 0.556431 20.1106 4.05494 Vertex 6138 0.556959 14.988 -3.261 Vertex 6139 0.557691 18.4894 3.91602 Vertex 6140 0.558908 22.5299 -3.85635 Vertex 6141 0.562152 14.11 3.41968 Vertex 6142 0.563589 16.0357 -5.92805 Vertex 6143 0.563684 15.6108 4.05253 Vertex 6144 0.565447 18.0993 4.41534 Vertex 6145 0.567866 18.4327 3.92293 Vertex 6146 0.567987 17.634 4.17127 Vertex 6147 0.5683 19.3926 3.50056 Vertex 6148 0.569543 17.91 4.20688 Vertex 6149 0.570019 18.4915 3.90093 Vertex 6150 0.572538 21.6796 -4.10097 Vertex 6151 0.572572 17.9197 4.32185 Vertex 6152 0.578941 20.0544 4.06268 Vertex 6153 0.580194 18.4348 3.90783 Vertex 6154 0.581112 18.4186 3.98738 Vertex 6155 0.581379 17.0871 4.07273 Vertex 6156 0.583255 19.0845 3.62641 Vertex 6157 0.583497 19.5613 3.29895 Vertex 6158 0.5835 19.058 3.29896 Vertex 6159 0.584644 20.7836 3.79112 Vertex 6160 0.586015 23.3653 -3.6247 Vertex 6161 0.586052 16.1345 -5.09833 Vertex 6162 0.587388 18.4102 3.91106 Vertex 6163 0.588921 14.5771 -3.4094 Vertex 6164 0.588992 18.1739 4.3717 Vertex 6165 0.589312 20.4835 2.58423 Vertex 6166 0.589325 18.1358 2.58429 Vertex 6167 0.589403 16.091 3.64908 Vertex 6168 0.589424 18.3943 4.0878 Vertex 6169 0.589586 14.1348 3.46388 Vertex 6170 0.590803 14.8527 3.91407 Vertex 6171 0.59167 16.0815 3.65353 Vertex 6172 0.592912 22.6275 -4.18071 Vertex 6173 0.592925 16.2489 3.66401 Vertex 6174 0.594658 19.2569 3.45516 Vertex 6175 0.598472 19.9736 4.04203 Vertex 6176 0.600008 17.4955 4.20664 Vertex 6177 0.600652 17.9317 4.35124 Vertex 6178 0.601112 18.9341 3.72206 Vertex 6179 0.602238 16.5553 3.69832 Vertex 6180 0.603548 19.1755 3.47496 Vertex 6181 0.60477 18.3591 4.16146 Vertex 6182 0.605989 14.2084 3.61558 Vertex 6183 0.606146 17.8369 4.08603 Vertex 6184 0.606159 18.7887 3.78142 Vertex 6185 0.606341 18.2477 4.32339 Vertex 6186 0.607325 16.7836 3.71093 Vertex 6187 0.608185 16.9339 3.70183 Vertex 6188 0.608283 19.3426 3.4673 Vertex 6189 0.608607 17.3322 4.23469 Vertex 6190 0.609794 18.4021 3.96138 Vertex 6191 0.609938 17.0132 3.6999 Vertex 6192 0.611298 15.8927 -5.74753 Vertex 6193 0.611601 18.3094 4.25331 Vertex 6194 0.612579 17.0213 3.70516 Vertex 6195 0.613625 18.3714 3.91585 Vertex 6196 0.614181 21.2559 3.493 Vertex 6197 0.614277 14.1724 3.53392 Vertex 6198 0.615389 14.3507 3.79727 Vertex 6199 0.616013 16.2963 -5.79505 Vertex 6200 0.616291 22.5774 -4.52112 Vertex 6201 0.617646 19.8971 4.01522 Vertex 6202 0.618433 17.8895 4.15477 Vertex 6203 0.618648 18.6457 3.8242 Vertex 6204 0.61913 19.2547 3.44111 Vertex 6205 0.619156 14.0291 2.95338 Vertex 6206 0.620279 14.0856 3.20569 Vertex 6207 0.621052 17.8916 4.23674 Vertex 6208 0.621146 14.0764 2.45759 Vertex 6209 0.621687 18.3752 3.93267 Vertex 6210 0.622642 20.2163 2.97372 Vertex 6211 0.622651 18.403 2.97376 Vertex 6212 0.624788 19.3064 3.45034 Vertex 6213 0.625503 19.1906 3.42061 Vertex 6214 0.626795 19.1813 3.42145 Vertex 6215 0.626833 17.219 4.21763 Vertex 6216 0.626878 14.1751 -3.56054 Vertex 6217 0.626912 15.9765 -5.84563 Vertex 6218 0.62742 18.3541 3.90386 Vertex 6219 0.628005 17.9578 4.37472 Vertex 6220 0.628261 17.1265 4.17956 Vertex 6221 0.629183 20.0023 3.14233 Vertex 6222 0.629191 18.617 3.14236 Vertex 6223 0.630102 16.0316 3.73357 Vertex 6224 0.630978 19.6793 3.28728 Vertex 6225 0.630982 18.94 3.28729 Vertex 6226 0.631177 19.5948 3.63727 Vertex 6227 0.633383 17.1505 4.19925 Vertex 6228 0.633871 22.7252 -2.90825 Vertex 6229 0.634609 19.7028 3.78174 Vertex 6230 0.635047 15.0273 3.88203 Vertex 6231 0.635801 23.6624 -3.72647 Vertex 6232 0.635882 14.2782 3.71387 Vertex 6233 0.636358 19.1872 3.4143 Vertex 6234 0.63646 19.8248 3.98227 Vertex 6235 0.636773 19.1998 3.41733 Vertex 6236 0.637048 23.4465 -0.70775 Vertex 6237 0.637334 16.4176 -4.90037 Vertex 6238 0.63765 19.1779 3.41515 Vertex 6239 0.637802 19.3307 3.44852 Vertex 6240 0.638537 17.8731 4.12455 Vertex 6241 0.638581 18.505 3.8504 Vertex 6242 0.638711 19.7647 3.88193 Vertex 6243 0.63888 18.3585 3.87741 Vertex 6244 0.640505 18.3409 3.88351 Vertex 6245 0.640598 16.6057 -4.38681 Vertex 6246 0.641939 19.1627 3.42071 Vertex 6247 0.642673 19.3209 3.4449 Vertex 6248 0.642881 19.3272 3.44641 Vertex 6249 0.643162 19.1876 3.41549 Vertex 6250 0.643483 19.7806 3.93783 Vertex 6251 0.643577 19.2003 3.41851 Vertex 6252 0.644388 18.3804 4.05337 Vertex 6253 0.644561 17.791 4.09104 Vertex 6254 0.64587 13.9435 -3.65347 Vertex 6255 0.64587 13.9639 -3.64189 Vertex 6256 0.64606 19.506 3.53756 Vertex 6257 0.646101 19.3191 3.44555 Vertex 6258 0.646308 19.3254 3.44706 Vertex 6259 0.646758 23.0343 -5.5855 Vertex 6260 0.649223 17.2509 -2.68712 Vertex 6261 0.649538 19.1163 3.4713 Vertex 6262 0.649951 17.8443 4.08603 Vertex 6263 0.650342 17.889 4.2627 Vertex 6264 0.651514 19.3235 3.45113 Vertex 6265 0.651553 -12.3686 2.50251 Vertex 6266 0.651659 18.3202 3.88689 Vertex 6267 0.652237 19.2369 3.43402 Vertex 6268 0.652248 20.6271 2.12793 Vertex 6269 0.652262 17.9921 2.128 Vertex 6270 0.652616 19.2839 3.44398 Vertex 6271 0.65272 19.1923 3.42534 Vertex 6272 0.653306 23.9826 -5.02644 Vertex 6273 0.65371 18.0057 4.36949 Vertex 6274 0.657173 14.6006 3.86466 Vertex 6275 0.661407 19.2959 3.4542 Vertex 6276 0.661943 20.5208 3.91767 Vertex 6277 0.663406 19.223 3.44137 Vertex 6278 0.663775 18.3867 3.858 Vertex 6279 0.664703 22.5937 -4.82972 Vertex 6280 0.66628 17.0539 3.80255 Vertex 6281 0.668265 17.8671 4.17977 Vertex 6282 0.668949 15.1856 3.84497 Vertex 6283 0.670731 18.3387 4.11866 Vertex 6284 0.671368 17.7571 4.09753 Vertex 6285 0.671512 16.5929 -5.63521 Vertex 6286 0.67158 20.2654 -4.93332 Vertex 6287 0.672623 14.144 2.23167 Vertex 6288 0.673071 18.3639 4.02737 Vertex 6289 0.67393 20.4094 2.77024 Vertex 6290 0.673942 18.2099 2.7703 Vertex 6291 0.676528 19.2829 3.46481 Vertex 6292 0.676732 15.3092 3.83446 Vertex 6293 0.677767 18.0754 4.33555 Vertex 6294 0.67905 19.2376 3.45865 Vertex 6295 0.679254 19.4363 3.48262 Vertex 6296 0.679354 17.8999 4.28107 Vertex 6297 0.680046 20.9412 -4.66502 Vertex 6298 0.680421 23.3413 -5.70001 Vertex 6299 0.680982 23.4129 1.27096 Vertex 6300 0.682843 15.2795 3.82912 Vertex 6301 0.682919 16.0958 -5.54189 Vertex 6302 0.683491 14.3536 1.59313 Vertex 6303 0.683722 23.8184 -5.35287 Vertex 6304 0.687232 23.0836 1.88735 Vertex 6305 0.687271 19.0189 3.53854 Vertex 6306 0.688451 22.4076 -3.41895 Vertex 6307 0.690304 14.4325 1.39568 Vertex 6308 0.691634 17.8478 4.13655 Vertex 6309 0.692914 23.8832 -3.90476 Vertex 6310 0.69381 20.3756 3.96236 Vertex 6311 0.693944 22.6911 -3.19247 Vertex 6312 0.694201 17.8565 4.19603 Vertex 6313 0.695287 15.3604 3.86145 Vertex 6314 0.695808 19.7883 3.27134 Vertex 6315 0.695812 18.8311 3.27136 Vertex 6316 0.695837 18.1439 4.29676 Vertex 6317 0.697025 16.8156 -2.84991 Vertex 6318 0.698144 19.3998 3.45375 Vertex 6319 0.699552 18.2762 4.19376 Vertex 6320 0.700508 22.7845 2.3261 Vertex 6321 0.700788 17.6955 4.10674 Vertex 6322 0.701831 16.853 -5.52568 Vertex 6323 0.702729 19.3963 3.45096 Vertex 6324 0.703003 -21.5335 -2.96162 Vertex 6325 0.703049 17.819 4.09803 Vertex 6326 0.703108 14.2074 2.02125 Vertex 6327 0.703141 19.2857 3.4745 Vertex 6328 0.704153 18.3283 3.98378 Vertex 6329 0.704165 16.7933 -4.78845 Vertex 6330 0.704639 14.1368 3.27122 Vertex 6331 0.704699 15.941 3.88917 Vertex 6332 0.704817 16.2133 -5.67947 Vertex 6333 0.706731 14.2773 1.80841 Vertex 6334 0.706854 18.2577 3.89558 Vertex 6335 0.706967 17.0765 -5.46646 Vertex 6336 0.707435 19.3933 3.45149 Vertex 6337 0.707444 -15.6751 -3.66791 Vertex 6338 0.70792 18.2113 4.25313 Vertex 6339 0.707931 22.0867 -3.49479 Vertex 6340 0.708088 17.9245 4.29186 Vertex 6341 0.709101 20.6109 2.33711 Vertex 6342 0.709115 18.0084 2.33718 Vertex 6343 0.709195 18.2508 3.88334 Vertex 6344 0.709315 19.2386 3.47202 Vertex 6345 0.70976 17.7179 -5.27645 Vertex 6346 0.709783 15.6737 -3.19752 Vertex 6347 0.710206 18.7772 -4.95567 Vertex 6348 0.712261 19.3908 3.45532 Vertex 6349 0.715892 17.8332 4.14796 Vertex 6350 0.716045 18.3014 3.95507 Vertex 6351 0.716119 21.6851 3.18107 Vertex 6352 0.720643 18.2564 3.91252 Vertex 6353 0.720807 22.5158 2.58719 Vertex 6354 0.721165 17.8595 4.20467 Vertex 6355 0.722558 18.3072 4.07217 Vertex 6356 0.722925 19.3846 3.46401 Vertex 6357 0.723224 22.076 -3.43017 Vertex 6358 0.723637 20.2837 4.0012 Vertex 6359 0.724005 17.804 4.09347 Vertex 6360 0.725809 22.0242 -3.71826 Vertex 6361 0.7271 19.2841 3.46682 Vertex 6362 0.727169 14.514 1.21606 Vertex 6363 0.727636 -21.5569 -3.54963 Vertex 6364 0.727707 18.222 3.86625 Vertex 6365 0.731203 15.2342 -3.48261 Vertex 6366 0.734254 17.9692 4.28263 Vertex 6367 0.734557 22.9295 -3.50799 Vertex 6368 0.736048 17.8275 4.14214 Vertex 6369 0.736124 18.2089 3.83739 Vertex 6370 0.73623 14.0705 2.73272 Vertex 6371 0.736857 18.8698 3.60737 Vertex 6372 0.737582 19.2447 3.47007 Vertex 6373 0.73815 22.6763 -5.10651 Vertex 6374 0.738505 15.4331 3.91009 Vertex 6375 0.739428 19.3746 3.47756 Vertex 6376 0.7398 -15.6092 0.833923 Vertex 6377 0.741659 22.6517 -3.7285 Vertex 6378 0.741709 18.1952 3.84364 Vertex 6379 0.741823 19.2835 3.45846 Vertex 6380 0.742684 20.1021 3.11442 Vertex 6381 0.742693 18.5172 3.11446 Vertex 6382 0.745135 14.8028 3.83488 Vertex 6383 0.745636 18.2125 3.82554 Vertex 6384 0.745807 15.8817 3.97329 Vertex 6385 0.746344 22.8544 -5.44599 Vertex 6386 0.747309 19.2838 3.44943 Vertex 6387 0.749156 17.8759 4.20569 Vertex 6388 0.749325 18.7423 3.66899 Vertex 6389 0.750052 19.2839 2.90477 Vertex 6390 0.750052 19.2839 3.26486 Vertex 6391 0.751421 20.2453 4.03418 Vertex 6392 0.751898 19.3097 3.37452 Vertex 6393 0.752447 14.2482 1.04566 Vertex 6394 0.75283 24.057 -4.7259 Vertex 6395 0.753428 15.8534 3.98593 Vertex 6396 0.754027 17.7884 4.09338 Vertex 6397 0.75423 19.2496 3.46481 Vertex 6398 0.755772 17.5275 -4.58455 Vertex 6399 0.756553 17.6663 4.09154 Vertex 6400 0.757353 24.0278 -4.15956 Vertex 6401 0.757853 18.0339 4.2534 Vertex 6402 0.757865 20.9187 3.69092 Vertex 6403 0.757883 19.365 3.47897 Vertex 6404 0.757957 15.7468 3.97779 Vertex 6405 0.758546 16.3321 -5.30589 Vertex 6406 0.75926 19.2531 3.45624 Vertex 6407 0.759395 15.562 3.94887 Vertex 6408 0.759417 19.4081 3.37267 Vertex 6409 0.759418 19.2113 3.37267 Vertex 6410 0.759552 14.1938 3.34554 Vertex 6411 0.760253 18.2645 4.02198 Vertex 6412 0.761286 15.4971 -3.70517 Vertex 6413 0.761554 14.1017 3.00703 Vertex 6414 0.761774 19.2549 2.91181 Vertex 6415 0.761774 19.2549 3.27191 Vertex 6416 0.762128 18.613 3.72161 Vertex 6417 0.762632 17.5277 4.13305 Vertex 6418 0.764469 17.8306 4.13953 Vertex 6419 0.764492 14.5208 3.77918 Vertex 6420 0.765365 22.7632 -5.31193 Vertex 6421 0.766695 -17.7746 0.381241 Vertex 6422 0.768252 20.3082 2.93792 Vertex 6423 0.768262 18.3111 2.93797 Vertex 6424 0.768988 18.2312 4.1323 Vertex 6425 0.769305 20.1724 4.03917 Vertex 6426 0.769356 -11.5418 3.0213 Vertex 6427 0.769639 13.6351 0.884489 Vertex 6428 0.771035 17.1111 3.99207 Vertex 6429 0.774491 23.7353 -5.4033 Vertex 6430 0.77479 20.5627 2.53863 Vertex 6431 0.774803 18.0566 2.5387 Vertex 6432 0.775265 18.4818 3.76523 Vertex 6433 0.77529 18.0981 4.21967 Vertex 6434 0.7761 18.2337 3.80326 Vertex 6435 0.776389 19.8854 3.25152 Vertex 6436 0.776394 18.7339 3.25155 Vertex 6437 0.777287 20.065 4.01618 Vertex 6438 0.777325 24.0858 -4.43327 Vertex 6439 0.777336 17.9144 4.19376 Vertex 6440 0.778288 19.3558 3.46824 Vertex 6441 0.778809 18.1312 3.86101 Vertex 6442 0.778864 18.1315 3.88108 Vertex 6443 0.780044 18.2155 3.97267 Vertex 6444 0.781374 18.1311 3.83348 Vertex 6445 0.781535 18.132 3.8937 Vertex 6446 0.781789 19.504 3.36717 Vertex 6447 0.78179 19.1153 3.36718 Vertex 6448 0.781929 18.16 3.92423 Vertex 6449 0.782283 -17.856 -4.60472 Vertex 6450 0.782565 17.4685 -4.40807 Vertex 6451 0.783415 22.2008 2.82662 Vertex 6452 0.78471 17.7744 4.05001 Vertex 6453 0.785021 14.2566 3.42863 Vertex 6454 0.785469 17.8043 4.0781 Vertex 6455 0.785596 18.1344 3.81547 Vertex 6456 0.786565 18.1615 4.18147 Vertex 6457 0.786984 21.9814 -3.45977 Vertex 6458 0.787033 16.4849 -5.48485 Vertex 6459 0.787116 19.9621 3.99086 Vertex 6460 0.789355 19.0623 3.46438 Vertex 6461 0.791094 19.3501 3.45826 Vertex 6462 0.79155 19.6465 3.68037 Vertex 6463 0.79213 17.7699 4.04131 Vertex 6464 0.79216 18.6203 -4.28866 Vertex 6465 0.794057 19.6012 -4.79626 Vertex 6466 0.794408 17.8595 4.12558 Vertex 6467 0.796085 19.5886 3.58678 Vertex 6468 0.796132 16.0664 3.54027 Vertex 6469 0.796302 19.3479 3.44905 Vertex 6470 0.796987 23.4393 -5.63853 Vertex 6471 0.797061 18.3683 3.78154 Vertex 6472 0.79748 19.7258 3.78608 Vertex 6473 0.798125 18.1071 3.81153 Vertex 6474 0.798147 22.0524 -3.38713 Vertex 6475 0.798531 16.0569 3.54436 Vertex 6476 0.798789 19.8635 3.96322 Vertex 6477 0.798905 19.3468 2.90429 Vertex 6478 0.798905 19.3468 3.26439 Vertex 6479 0.800678 18.131 3.80075 Vertex 6480 0.801117 17.769 4.02946 Vertex 6481 0.80149 19.7777 3.86656 Vertex 6482 0.802854 14.3362 3.53674 Vertex 6483 0.803581 19.8021 3.92179 Vertex 6484 0.805236 13.1186 0.731077 Vertex 6485 0.80534 18.0772 3.83447 Vertex 6486 0.805705 17.975 4.16889 Vertex 6487 0.805893 17.3696 4.14462 Vertex 6488 0.805926 16.2275 3.56004 Vertex 6489 0.808475 21.3945 3.3491 Vertex 6490 0.809211 16.6074 -5.14078 Vertex 6491 0.811083 19.5522 3.5053 Vertex 6492 0.811949 18.5744 -4.11926 Vertex 6493 0.813052 14.4327 3.66987 Vertex 6494 0.81422 14.9991 3.79755 Vertex 6495 0.816626 17.8162 4.01733 Vertex 6496 0.816907 15.9419 -3.97719 Vertex 6497 0.818329 17.8515 4.04762 Vertex 6498 0.818462 19.5952 3.35815 Vertex 6499 0.818464 19.0242 3.35816 Vertex 6500 0.81991 18.1744 4.06893 Vertex 6501 0.820382 19.5324 3.4625 Vertex 6502 0.820754 17.8082 4.00942 Vertex 6503 0.823325 19.0879 3.45936 Vertex 6504 0.823472 17.6835 4.04949 Vertex 6505 0.823982 19.5292 3.45835 Vertex 6506 0.824439 19.101 3.45543 Vertex 6507 0.825037 17.0447 3.60442 Vertex 6508 0.825084 21.6184 -4.03195 Vertex 6509 0.825647 18.024 3.87183 Vertex 6510 0.825864 17.9142 4.1003 Vertex 6511 0.826748 17.2486 4.12981 Vertex 6512 0.826855 17.1518 4.09573 Vertex 6513 0.827351 18.0363 4.14044 Vertex 6514 0.82743 16.9546 3.60786 Vertex 6515 0.827815 19.5257 3.45797 Vertex 6516 0.827901 17.053 3.60932 Vertex 6517 0.827914 16.5403 3.60367 Vertex 6518 0.828093 17.8056 3.99796 Vertex 6519 0.828724 23.6424 -5.47334 Vertex 6520 0.828977 19.111 3.45726 Vertex 6521 0.830435 17.7915 3.99121 Vertex 6522 0.83071 16.7525 -5.34922 Vertex 6523 0.831882 19.5219 3.46133 Vertex 6524 0.833735 17.176 4.11351 Vertex 6525 0.834912 16.9218 -5.04656 Vertex 6526 0.835082 16.7827 3.61961 Vertex 6527 0.835847 17.0162 -5.27256 Vertex 6528 0.836423 17.9963 3.89708 Vertex 6529 0.83694 19.1177 3.46486 Vertex 6530 0.837669 17.9941 3.91019 Vertex 6531 0.83823 18.7425 -4.76648 Vertex 6532 0.838353 17.6796 -5.07831 Vertex 6533 0.839312 22.2115 -3.25307 Vertex 6534 0.839972 23.3388 -3.63353 Vertex 6535 0.840061 18.0312 3.94688 Vertex 6536 0.84061 23.5293 0.52043 Vertex 6537 0.840872 17.8591 3.98035 Vertex 6538 0.841621 19.5112 3.47 Vertex 6539 0.84213 16.0065 3.62084 Vertex 6540 0.842275 18.0983 4.10842 Vertex 6541 0.8426 17.8527 3.97137 Vertex 6542 0.843211 22.5249 -3.00634 Vertex 6543 0.843352 17.8981 4.01384 Vertex 6544 0.843601 18.1077 4.00712 Vertex 6545 0.844159 19.1311 3.47576 Vertex 6546 0.845023 20.6672 3.82453 Vertex 6547 0.845981 21.9821 -3.61898 Vertex 6548 0.846421 23.5397 -5.56298 Vertex 6549 0.846475 15.3175 3.76127 Vertex 6550 0.847697 20.4835 2.72752 Vertex 6551 0.84771 18.1358 2.72758 Vertex 6552 0.850039 17.9696 4.07183 Vertex 6553 0.850161 17.7012 4.01621 Vertex 6554 0.850634 19.1513 3.48996 Vertex 6555 0.851178 18.0397 3.81936 Vertex 6556 0.852613 15.2878 3.75587 Vertex 6557 0.85369 17.6161 -4.84768 Vertex 6558 0.855053 17.8453 3.95586 Vertex 6559 0.857033 19.4937 3.48398 Vertex 6560 0.857447 17.9032 3.93908 Vertex 6561 0.857507 20.6779 2.07747 Vertex 6562 0.857522 17.9414 2.07754 Vertex 6563 0.857668 17.9034 3.92718 Vertex 6564 0.858285 15.3468 3.77413 Vertex 6565 0.85884 -20.0577 -5.38738 Vertex 6566 0.859508 12.6988 0.585421 Vertex 6567 0.860536 17.944 3.97675 Vertex 6568 0.861276 21.9714 -3.55436 Vertex 6569 0.86168 19.1715 3.49385 Vertex 6570 0.861906 21.9578 -3.41673 Vertex 6571 0.862715 18.0658 3.7959 Vertex 6572 0.863465 18.935 3.51255 Vertex 6573 0.864426 15.1894 3.75266 Vertex 6574 0.865548 18.6902 -4.54415 Vertex 6575 0.866932 18.0258 4.04017 Vertex 6576 0.867205 14.1491 2.49111 Vertex 6577 0.867391 23.1217 -3.7419 Vertex 6578 0.867803 18.0886 3.78571 Vertex 6579 0.868534 19.6793 3.34584 Vertex 6580 0.868538 18.94 3.34585 Vertex 6581 0.869952 20.1824 3.08313 Vertex 6582 0.869961 18.4369 3.08318 Vertex 6583 0.870736 19.9684 3.22833 Vertex 6584 0.870743 18.6509 3.22836 Vertex 6585 0.873541 19.4765 3.48542 Vertex 6586 0.875654 20.5013 3.89383 Vertex 6587 0.875765 -21.5005 -3.24821 Vertex 6588 0.876386 22.6668 -4.16744 Vertex 6589 0.876392 17.5294 4.08131 Vertex 6590 0.877295 19.192 3.48745 Vertex 6591 0.877506 17.0845 3.69421 Vertex 6592 0.878233 17.8369 3.93381 Vertex 6593 0.882313 22.6888 -2.84609 Vertex 6594 0.882921 17.96 3.86165 Vertex 6595 0.886827 14.7413 3.73469 Vertex 6596 0.886938 19.2049 3.47988 Vertex 6597 0.886984 18.1661 3.77166 Vertex 6598 0.888333 21.8398 3.04437 Vertex 6599 0.890209 17.905 3.8949 Vertex 6600 0.890607 19.2102 3.47115 Vertex 6601 0.891147 19.4597 3.47431 Vertex 6602 0.892338 19.4965 -4.12051 Vertex 6603 0.892442 19.2129 2.92664 Vertex 6604 0.892442 19.2129 3.28674 Vertex 6605 0.896805 22.8432 -3.97151 Vertex 6606 0.897828 17.5376 4.05795 Vertex 6607 0.898065 16.5687 -4.29868 Vertex 6608 0.899411 14.1819 3.07855 Vertex 6609 0.899847 15.405 3.80731 Vertex 6610 0.900037 21.5826 -3.62903 Vertex 6611 0.900802 19.4737 -3.95306 Vertex 6612 0.901436 -12.4844 2.49631 Vertex 6613 0.902047 19.4493 3.46421 Vertex 6614 0.906162 20.3993 3.94512 Vertex 6615 0.906238 19.4454 3.45509 Vertex 6616 0.906353 23.647 -3.72296 Vertex 6617 0.907109 17.4102 4.09573 Vertex 6618 0.907557 22.6232 -4.50509 Vertex 6619 0.908335 19.4435 2.91038 Vertex 6620 0.908335 19.4435 3.27048 Vertex 6621 0.911833 20.661 2.28727 Vertex 6622 0.911847 17.9583 2.28734 Vertex 6623 0.914204 12.2879 0.437024 Vertex 6624 0.914602 14.1519 2.79114 Vertex 6625 0.915141 12.0577 -0.700179 Vertex 6626 0.920253 18.2985 3.75376 Vertex 6627 0.920308 17.7425 3.93976 Vertex 6628 0.923131 19.5597 -4.60358 Vertex 6629 0.924916 18.5525 -4.03593 Vertex 6630 0.925917 17.4136 4.07733 Vertex 6631 0.925922 16.3379 -2.6733 Vertex 6632 0.926029 20.3755 2.89913 Vertex 6633 0.926039 18.2438 2.89918 Vertex 6634 0.926925 15.9152 3.7697 Vertex 6635 0.92928 17.2854 4.08205 Vertex 6636 0.930773 19.7544 3.33053 Vertex 6637 0.930777 18.865 3.33056 Vertex 6638 0.93299 22.6073 -2.53077 Vertex 6639 0.933409 15.7248 -2.83447 Vertex 6640 0.934067 17.4389 -4.31825 Vertex 6641 0.935837 22.6128 -2.49546 Vertex 6642 0.936424 -12.7659 2.51495 Vertex 6643 0.936545 20.3613 3.9784 Vertex 6644 0.938449 18.8258 3.55761 Vertex 6645 0.940664 18.4314 3.71602 Vertex 6646 0.942642 23.9251 -5.04869 Vertex 6647 0.945681 19.6761 3.61122 Vertex 6648 0.947478 18.6965 3.60565 Vertex 6649 0.948216 18.5651 3.65845 Vertex 6650 0.948483 21.5699 -3.90335 Vertex 6651 0.948489 19.7166 3.69852 Vertex 6652 0.949385 19.6603 3.52017 Vertex 6653 0.950101 21.102 3.50996 Vertex 6654 0.950309 22.6211 -2.61506 Vertex 6655 0.951343 14.2131 2.25414 Vertex 6656 0.951543 15.2083 -2.98788 Vertex 6657 0.952371 -13.4461 -3.2809 Vertex 6658 0.952535 20.2826 3.98684 Vertex 6659 0.95267 19.6503 3.47224 Vertex 6660 0.952752 15.5157 3.80768 Vertex 6661 0.952852 23.1127 -5.52018 Vertex 6662 0.95413 20.1634 3.97044 Vertex 6663 0.955067 17.9078 3.84226 Vertex 6664 0.955538 19.6461 3.46742 Vertex 6665 0.955891 19.5248 -4.37833 Vertex 6666 0.957809 19.7819 3.78207 Vertex 6667 0.957967 20.0474 3.95362 Vertex 6668 0.958788 19.6418 3.46648 Vertex 6669 0.961312 20.19 -4.79822 Vertex 6670 0.96242 19.6372 3.46941 Vertex 6671 0.963622 19.8305 3.84983 Vertex 6672 0.964046 19.9346 3.93639 Vertex 6673 0.965931 19.8623 3.90179 Vertex 6674 0.96678 19.3097 3.40736 Vertex 6675 0.96862 17.9685 3.7937 Vertex 6676 0.970003 20.6109 2.49064 Vertex 6677 0.970016 18.0084 2.49071 Vertex 6678 0.970954 19.6236 3.47732 Vertex 6679 0.971654 20.8624 -4.54346 Vertex 6680 0.971898 19.3766 3.4061 Vertex 6681 0.971899 19.2427 3.4061 Vertex 6682 0.972742 15.8556 3.84971 Vertex 6683 0.972917 15.7142 3.84687 Vertex 6684 0.973467 21.558 -3.76905 Vertex 6685 0.973641 11.8859 0.285886 Vertex 6686 0.973851 14.645 3.59662 Vertex 6687 0.973853 17.1392 3.85909 Vertex 6688 0.976529 20.0352 3.20232 Vertex 6689 0.976537 18.5842 3.20235 Vertex 6690 0.977179 16.7837 -2.56079 Vertex 6691 0.978268 12.9034 -2.28661 Vertex 6692 0.979581 15.8275 3.86088 Vertex 6693 0.980573 21.5628 -3.53756 Vertex 6694 0.981275 17.5621 3.97371 Vertex 6695 0.981284 19.4564 -3.87598 Vertex 6696 0.98185 14.2785 3.1689 Vertex 6697 0.982692 17.9934 3.77084 Vertex 6698 0.984394 19.6012 3.49021 Vertex 6699 0.985686 14.9699 3.68111 Vertex 6700 0.987125 19.442 3.40235 Vertex 6701 0.987128 19.1774 3.40236 Vertex 6702 0.987792 22.6542 -2.74836 Vertex 6703 0.988638 14.2623 2.02183 Vertex 6704 0.989805 -19.9874 -0.37697 Vertex 6705 0.991334 14.7885 -3.13354 Vertex 6706 0.992853 18.0139 3.76184 Vertex 6707 0.994924 -12.9984 2.40676 Vertex 6708 0.995076 23.7931 -3.88523 Vertex 6709 0.997373 19.5787 3.49046 Vertex 6710 0.997866 22.7864 -2.17998 Vertex 6711 0.998805 -9.53699 3.74189 Vertex 6712 1.00004 23.3818 1.15206 Vertex 6713 1.00364 19.8185 3.31262 Vertex 6714 1.00365 18.8009 3.31264 Vertex 6715 1.00437 11.6543 0.192958 Vertex 6716 1.00437 11.6747 0.20453 Vertex 6717 1.0046 22.6795 -4.73149 Vertex 6718 1.0062 14.5139 3.42066 Vertex 6719 1.00671 21.5235 3.2218 Vertex 6720 1.00785 20.2413 3.04923 Vertex 6721 1.00786 18.3781 3.04928 Vertex 6722 1.00887 14.3917 3.27809 Vertex 6723 1.00989 19.5563 3.47807 Vertex 6724 1.01209 19.504 3.39621 Vertex 6725 1.01209 19.1153 3.39622 Vertex 6726 1.01783 19.5426 3.46731 Vertex 6727 1.01798 14.3211 1.77717 Vertex 6728 1.01869 17.4082 3.98648 Vertex 6729 1.01993 -13.4847 2.14227 Vertex 6730 1.0212 19.5377 3.45818 Vertex 6731 1.02288 19.5352 2.91346 Vertex 6732 1.02288 19.5352 3.27356 Vertex 6733 1.02639 17.1791 3.94962 Vertex 6734 1.02688 18.088 3.75221 Vertex 6735 1.03058 20.5288 2.68256 Vertex 6736 1.0306 18.0905 2.68262 Vertex 6737 1.03115 20.8429 3.6508 Vertex 6738 1.03255 17.2806 3.97807 Vertex 6739 1.03391 17.8072 3.82015 Vertex 6740 1.03512 17.2042 3.96579 Vertex 6741 1.03677 14.3776 -3.28193 Vertex 6742 1.03936 14.3893 1.52017 Vertex 6743 1.04273 16.023 3.39258 Vertex 6744 1.0428 23.0726 1.74578 Vertex 6745 1.04507 16.0136 3.39636 Vertex 6746 1.04617 19.5613 3.38783 Vertex 6747 1.04617 19.0581 3.38785 Vertex 6748 1.04901 23.4883 -3.77377 Vertex 6749 1.04912 20.1665 -3.9095 Vertex 6750 1.05163 20.6174 3.77163 Vertex 6751 1.05631 20.1562 -4.08011 Vertex 6752 1.05887 20.8516 -3.91628 Vertex 6753 1.0589 16.1889 3.41903 Vertex 6754 1.06107 15.2065 3.61844 Vertex 6755 1.06184 15.328 3.61275 Vertex 6756 1.06795 20.6949 2.02573 Vertex 6757 1.06796 17.9243 2.0258 Vertex 6758 1.07365 15.3573 3.62561 Vertex 6759 1.07571 20.8629 -3.77099 Vertex 6760 1.07594 -13.1685 2.17756 Vertex 6761 1.07852 20.4892 3.85057 Vertex 6762 1.07942 14.2363 2.55803 Vertex 6763 1.08071 23.9328 -4.13322 Vertex 6764 1.08118 -11.5593 2.94872 Vertex 6765 1.0838 14.2489 2.87425 Vertex 6766 1.08477 18.2158 3.74192 Vertex 6767 1.08496 23.9844 -4.73675 Vertex 6768 1.08536 19.87 3.29253 Vertex 6769 1.08536 18.7493 3.29256 Vertex 6770 1.08578 23.8215 -5.09601 Vertex 6771 1.08762 14.4718 1.29458 Vertex 6772 1.08853 19.6124 3.37742 Vertex 6773 1.08854 19.007 3.37743 Vertex 6774 1.08881 15.966 3.4676 Vertex 6775 1.09078 17.0873 3.48627 Vertex 6776 1.09098 22.8003 2.16742 Vertex 6777 1.09116 20.0841 3.17413 Vertex 6778 1.09117 18.5353 3.17418 Vertex 6779 1.09209 20.4166 2.8583 Vertex 6780 1.0921 18.2027 2.85836 Vertex 6781 1.09245 23.2677 -3.89421 Vertex 6782 1.09306 20.1312 -4.58962 Vertex 6783 1.0934 17.0961 3.49125 Vertex 6784 1.09356 16.5113 3.47571 Vertex 6785 1.09416 19.7605 3.52722 Vertex 6786 1.09483 16.9803 3.48885 Vertex 6787 1.09485 19.7683 3.61088 Vertex 6788 1.09501 19.7535 3.48297 Vertex 6789 1.09727 22.7614 -5.00888 Vertex 6790 1.0974 19.7472 3.47815 Vertex 6791 1.09768 13.9755 -3.43307 Vertex 6792 1.10035 19.7416 3.47701 Vertex 6793 1.10151 20.8012 -4.35621 Vertex 6794 1.102 19.8052 3.69171 Vertex 6795 1.1027 22.9494 -5.3596 Vertex 6796 1.10317 20.1507 -3.8384 Vertex 6797 1.10388 19.7367 3.47956 Vertex 6798 1.10554 16.7751 3.49899 Vertex 6799 1.10596 17.0622 -2.49695 Vertex 6800 1.10771 14.8731 3.51022 Vertex 6801 1.11068 23.9965 -4.41706 Vertex 6802 1.11093 19.7218 3.48598 Vertex 6803 1.1118 20.4584 3.88761 Vertex 6804 1.11559 19.8711 3.7697 Vertex 6805 1.11907 23.1282 -1.58431 Vertex 6806 1.11968 20.6779 2.23617 Vertex 6807 1.1197 17.9414 2.23625 Vertex 6808 1.12151 19.697 3.49626 Vertex 6809 1.12185 16.8397 -2.66445 Vertex 6810 1.12469 23.4539 0.20058 Vertex 6811 1.12472 20.1199 -4.35024 Vertex 6812 1.12511 19.9231 3.83174 Vertex 6813 1.12642 17.1241 3.55376 Vertex 6814 1.12673 17.6031 3.82859 Vertex 6815 1.12755 13.744 -3.526 Vertex 6816 1.12821 13.7644 -3.51443 Vertex 6817 1.12863 20.3849 3.90569 Vertex 6818 1.129 20.2688 3.9048 Vertex 6819 1.12938 19.6716 3.4941 Vertex 6820 1.12997 22.8513 -5.21825 Vertex 6821 1.13003 14.2599 2.23184 Vertex 6822 1.1302 20.1531 3.90348 Vertex 6823 1.13054 19.9612 3.87784 Vertex 6824 1.13058 20.7976 -4.14715 Vertex 6825 1.13223 20.0379 3.90175 Vertex 6826 1.13387 23.2906 -5.44041 Vertex 6827 1.13453 19.6456 3.47951 Vertex 6828 1.13478 18.3538 3.70276 Vertex 6829 1.13746 23.6311 -3.92781 Vertex 6830 1.13806 18.9222 3.54242 Vertex 6831 1.13814 19.656 3.36522 Vertex 6832 1.13814 18.9633 3.36524 Vertex 6833 1.13846 19.6299 3.46758 Vertex 6834 1.13854 21.252 3.35891 Vertex 6835 1.13995 19.1494 3.50368 Vertex 6836 1.14118 19.6246 3.45831 Vertex 6837 1.14135 19.155 3.49416 Vertex 6838 1.14205 19.1578 2.94925 Vertex 6839 1.14205 19.1578 3.30935 Vertex 6840 1.14254 19.622 2.91353 Vertex 6841 1.14254 19.622 3.27363 Vertex 6842 1.14375 15.4721 3.62896 Vertex 6843 1.14458 22.5651 2.41699 Vertex 6844 1.14521 -12.6054 2.63504 Vertex 6845 1.14585 15.695 -3.00421 Vertex 6846 1.14624 19.1259 3.51896 Vertex 6847 1.14948 22.8024 -4.35597 Vertex 6848 1.14994 -21.4987 -1.24995 Vertex 6849 1.15089 17.8123 3.71904 Vertex 6850 1.15299 20.2771 3.01355 Vertex 6851 1.153 18.3422 3.0136 Vertex 6852 1.15389 22.9823 -4.14796 Vertex 6853 1.15664 21.9466 2.92126 Vertex 6854 1.16021 17.8624 3.69696 Vertex 6855 1.16023 19.0845 3.53999 Vertex 6856 1.16097 21.877 -3.38221 Vertex 6857 1.16121 12.1513 -0.910214 Vertex 6858 1.16579 19.3678 2.65738 Vertex 6859 1.1658 14.5685 1.10039 Vertex 6860 1.16647 22.2805 2.66827 Vertex 6861 1.17014 20.6271 2.44144 Vertex 6862 1.17016 17.9922 2.4415 Vertex 6863 1.17039 18.5238 -3.86987 Vertex 6864 1.17073 14.3021 1.98857 Vertex 6865 1.17159 15.2465 -3.30537 Vertex 6866 1.17304 17.882 3.69195 Vertex 6867 1.1739 19.9078 3.27076 Vertex 6868 1.1739 18.7115 3.27079 Vertex 6869 1.17395 15.8801 3.6063 Vertex 6870 1.1741 23.6721 -5.18989 Vertex 6871 1.17664 19.043 3.54893 Vertex 6872 1.17691 18.5019 3.63473 Vertex 6873 1.17743 18.9457 3.53903 Vertex 6874 1.18029 14.7087 3.28486 Vertex 6875 1.18044 14.3797 2.9799 Vertex 6876 1.18111 20.8314 -3.71129 Vertex 6877 1.18236 22.4308 -2.9496 Vertex 6878 1.18415 19.3097 3.40617 Vertex 6879 1.18675 19.2758 3.40554 Vertex 6880 1.18675 19.3436 3.40554 Vertex 6881 1.18935 18.9546 3.53833 Vertex 6882 1.18984 17.1714 3.67379 Vertex 6883 1.19058 17.4379 3.81548 Vertex 6884 1.19376 19.6911 3.35155 Vertex 6885 1.19376 18.9283 3.35157 Vertex 6886 1.19424 22.0632 -3.23088 Vertex 6887 1.19445 19.3766 3.40364 Vertex 6888 1.19445 19.2427 3.40364 Vertex 6889 1.19545 19.0015 3.54576 Vertex 6890 1.1977 18.9645 3.53953 Vertex 6891 1.19831 15.6789 3.67411 Vertex 6892 1.19907 15.4944 -3.56792 Vertex 6893 1.20062 18.6514 3.59139 Vertex 6894 1.20247 18.9753 3.54262 Vertex 6895 1.20326 17.4017 -4.16339 Vertex 6896 1.20454 14.5442 3.10809 Vertex 6897 1.20479 19.3205 2.65031 Vertex 6898 1.20589 18.8022 3.57277 Vertex 6899 1.20709 19.4081 3.40053 Vertex 6900 1.20709 19.2113 3.40054 Vertex 6901 1.20762 23.477 -5.33031 Vertex 6902 1.20888 21.6426 3.1111 Vertex 6903 1.21181 20.1139 3.14447 Vertex 6904 1.21182 18.5054 3.14452 Vertex 6905 1.21454 15.9239 -3.85193 Vertex 6906 1.21463 15.1169 3.41067 Vertex 6907 1.21464 20.9895 3.49261 Vertex 6908 1.21508 21.4985 -3.49464 Vertex 6909 1.21798 16.5351 -4.15741 Vertex 6910 1.21809 20.544 2.63646 Vertex 6911 1.2181 18.0754 2.63652 Vertex 6912 1.21825 17.9648 3.6938 Vertex 6913 1.21879 15.8234 3.68091 Vertex 6914 1.21953 19.4152 -3.70281 Vertex 6915 1.22253 23.7643 -4.15932 Vertex 6916 1.22306 14.3103 0.922714 Vertex 6917 1.22333 15.796 3.69142 Vertex 6918 1.22434 19.437 3.39629 Vertex 6919 1.22434 19.1823 3.3963 Vertex 6920 1.22543 17.3114 3.78082 Vertex 6921 1.22687 17.2084 3.74123 Vertex 6922 1.22756 14.3578 1.77479 Vertex 6923 1.2305 14.3035 2.33568 Vertex 6924 1.23501 20.7361 3.62288 Vertex 6925 1.23554 19.4513 2.65104 Vertex 6926 1.23598 6.77915 4.54701 Vertex 6927 1.23753 17.2349 3.75608 Vertex 6928 1.24126 22.8612 -4.58811 Vertex 6929 1.24323 19.8476 3.45879 Vertex 6930 1.2441 19.8387 3.45486 Vertex 6931 1.24467 -13.46 2.32892 Vertex 6932 1.24579 19.4629 3.39102 Vertex 6933 1.24579 19.1564 3.39103 Vertex 6934 1.24619 19.8311 3.45412 Vertex 6935 1.24638 23.4006 -4.09093 Vertex 6936 1.2469 19.8578 3.49966 Vertex 6937 1.24733 23.8561 -4.77555 Vertex 6938 1.24823 -6.50608 4.13236 Vertex 6939 1.24949 19.8247 3.45656 Vertex 6940 1.25131 13.6972 0.761545 Vertex 6941 1.25402 19.7168 3.33673 Vertex 6942 1.25402 18.9025 3.33675 Vertex 6943 1.25512 19.8693 3.57747 Vertex 6944 1.25643 19.807 3.4633 Vertex 6945 1.25779 14.338 2.65833 Vertex 6946 1.25916 23.8393 -4.4419 Vertex 6947 1.25965 17.5963 3.71472 Vertex 6948 1.26 16.0111 3.26491 Vertex 6949 1.26221 20.5961 3.70901 Vertex 6950 1.26234 20.4304 2.81645 Vertex 6951 1.26235 18.1889 2.81651 Vertex 6952 1.26289 16.0013 3.26785 Vertex 6953 1.26625 -21.6502 -5.13275 Vertex 6954 1.26699 19.778 3.47432 Vertex 6955 1.26708 19.9308 3.24785 Vertex 6956 1.26709 18.6885 3.24788 Vertex 6957 1.26836 14.318 2.00957 Vertex 6958 1.2709 19.485 3.38484 Vertex 6959 1.2709 19.1344 3.38485 Vertex 6960 1.27187 19.9058 3.65108 Vertex 6961 1.2739 19.7481 3.47283 Vertex 6962 1.27716 19.7173 3.45882 Vertex 6963 1.27839 20.6779 1.974 Vertex 6964 1.2784 17.9414 1.97407 Vertex 6965 1.27926 19.699 3.44736 Vertex 6966 1.2796 16.1787 3.28735 Vertex 6967 1.28021 19.6932 3.43845 Vertex 6968 1.28104 19.6903 3.25392 Vertex 6969 1.28155 14.4359 1.50241 Vertex 6970 1.28175 19.6903 2.89376 Vertex 6971 1.28179 6.82776 4.84247 Vertex 6972 1.29298 12.7302 -2.01553 Vertex 6973 1.29585 18.1106 3.70253 Vertex 6974 1.29625 20.5694 3.75098 Vertex 6975 1.29716 19.9673 3.72052 Vertex 6976 1.29906 19.5028 3.37792 Vertex 6977 1.29906 19.1166 3.37793 Vertex 6978 1.29923 -9.53645 3.60708 Vertex 6979 1.3018 20.2892 2.97697 Vertex 6980 1.30181 18.3301 2.97702 Vertex 6981 1.30343 13.1808 0.608134 Vertex 6982 1.30526 17.1128 3.34998 Vertex 6983 1.30655 15.9503 3.32305 Vertex 6984 1.30834 17.122 3.35409 Vertex 6985 1.31147 20.3802 3.7969 Vertex 6986 1.31267 20.4974 3.78028 Vertex 6987 1.31348 16.9978 3.35072 Vertex 6988 1.31381 20.0205 3.77469 Vertex 6989 1.31462 20.263 3.81217 Vertex 6990 1.31745 19.7325 3.32114 Vertex 6991 1.31745 18.8869 3.32116 Vertex 6992 1.31785 23.16 -5.26138 Vertex 6993 1.3217 16.5039 3.3352 Vertex 6994 1.32184 20.0651 3.81358 Vertex 6995 1.32185 23.1016 -4.37459 Vertex 6996 1.32211 20.146 3.82607 Vertex 6997 1.32318 21.3686 3.23779 Vertex 6998 1.3234 22.9482 -4.87701 Vertex 6999 1.3242 22.4701 -2.48373 Vertex 7000 1.32513 14.9207 3.12934 Vertex 7001 1.32718 22.4764 -2.44965 Vertex 7002 1.32753 20.661 2.18508 Vertex 7003 1.32755 17.9583 2.18515 Vertex 7004 1.32839 12.2607 -1.14015 Vertex 7005 1.32859 21.9691 2.86957 Vertex 7006 1.3292 23.5204 -4.33204 Vertex 7007 1.32957 19.5158 3.37042 Vertex 7008 1.32957 19.1036 3.37043 Vertex 7009 1.33299 16.777 3.35632 Vertex 7010 1.33323 17.1496 3.40153 Vertex 7011 1.33548 14.3876 1.80127 Vertex 7012 1.3355 20.1239 3.11406 Vertex 7013 1.33551 18.4954 3.11411 Vertex 7014 1.3378 17.251 -2.35172 Vertex 7015 1.34493 17.465 3.66181 Vertex 7016 1.34662 23.3096 -0.874511 Vertex 7017 1.34826 22.4838 -2.56583 Vertex 7018 1.34893 23.0478 -5.10143 Vertex 7019 1.34909 6.71821 5.02003 Vertex 7020 1.3507 20.0758 -3.66219 Vertex 7021 1.35275 23.6603 -4.89928 Vertex 7022 1.35455 19.5229 2.62421 Vertex 7023 1.35533 14.4973 2.77853 Vertex 7024 1.35535 -11.6515 3.06806 Vertex 7025 1.35634 14.5312 1.27168 Vertex 7026 1.36167 19.5237 3.36253 Vertex 7027 1.36168 19.0956 3.36254 Vertex 7028 1.36262 19.9386 3.22436 Vertex 7029 1.36262 18.6808 3.2244 Vertex 7030 1.36465 23.607 -4.60149 Vertex 7031 1.36784 14.3536 2.12409 Vertex 7032 1.36814 18.2652 3.67724 Vertex 7033 1.37029 20.6109 2.39223 Vertex 7034 1.3703 18.0084 2.3923 Vertex 7035 1.37137 15.4659 3.41008 Vertex 7036 1.37203 14.7141 2.91863 Vertex 7037 1.37991 17.1954 3.49231 Vertex 7038 1.38248 19.7377 3.30515 Vertex 7039 1.38248 18.8816 3.30517 Vertex 7040 1.38265 21.7377 3.00482 Vertex 7041 1.3832 12.761 0.462476 Vertex 7042 1.38582 17.6223 3.59296 Vertex 7043 1.391 15.8579 3.43053 Vertex 7044 1.39137 -30.307 -3.72014 Vertex 7045 1.39194 12.361 -1.36256 Vertex 7046 1.3928 -21.4147 -1.03516 Vertex 7047 1.39371 15.2697 3.2467 Vertex 7048 1.39459 19.5264 3.35443 Vertex 7049 1.3946 19.093 3.35445 Vertex 7050 1.39475 23.3154 0.946713 Vertex 7051 1.39527 17.6727 3.57427 Vertex 7052 1.39549 21.1069 3.34995 Vertex 7053 1.39566 19.9205 3.39755 Vertex 7054 1.39579 22.2894 2.59895 Vertex 7055 1.3963 19.91 3.39779 Vertex 7056 1.39684 19.1329 3.28646 Vertex 7057 1.39714 19.1302 3.47145 Vertex 7058 1.39734 19.9327 3.39969 Vertex 7059 1.39764 19.1331 2.92622 Vertex 7060 1.39856 19.1249 3.48117 Vertex 7061 1.39867 19.3097 3.371 Vertex 7062 1.39927 19.9013 3.40042 Vertex 7063 1.39934 22.5175 -2.69597 Vertex 7064 1.40071 23.2012 -4.6514 Vertex 7065 1.40092 17.3376 3.59945 Vertex 7066 1.4012 23.397 -5.10793 Vertex 7067 1.40202 19.2713 2.63387 Vertex 7068 1.40386 22.4184 -2.86419 Vertex 7069 1.40559 20.5288 2.59036 Vertex 7070 1.40561 18.0905 2.59043 Vertex 7071 1.40745 19.8793 3.40929 Vertex 7072 1.40761 19.9522 3.4375 Vertex 7073 1.40837 17.6929 3.57602 Vertex 7074 1.40967 17.2322 3.54534 Vertex 7075 1.41006 14.4936 1.53985 Vertex 7076 1.41247 14.3995 2.45526 Vertex 7077 1.41618 19.0943 3.50263 Vertex 7078 1.42084 19.8442 3.4244 Vertex 7079 1.4217 15.6591 3.46823 Vertex 7080 1.42251 17.26 3.56063 Vertex 7081 1.4227 12.5013 -1.62561 Vertex 7082 1.42364 22.0236 -3.16275 Vertex 7083 1.42578 20.8576 3.44759 Vertex 7084 1.42649 19.9789 3.51097 Vertex 7085 1.42716 23.2997 -4.89584 Vertex 7086 1.42751 19.5237 3.34634 Vertex 7087 1.42752 19.0956 3.34635 Vertex 7088 1.43031 22.6438 -2.16719 Vertex 7089 1.43095 19.8082 3.42663 Vertex 7090 1.43259 20.4166 2.77459 Vertex 7091 1.4326 18.2027 2.77465 Vertex 7092 1.43279 4.6941 4.77574 Vertex 7093 1.43468 4.53792 -5.415 Vertex 7094 1.43514 18.4285 3.61794 Vertex 7095 1.43663 15.7978 3.48753 Vertex 7096 1.43778 19.7714 3.41598 Vertex 7097 1.43794 16.0881 -2.44382 Vertex 7098 1.43831 19.7435 3.39858 Vertex 7099 1.4384 19.7403 3.21442 Vertex 7100 1.44023 19.7499 3.40663 Vertex 7101 1.44051 19.7402 2.85416 Vertex 7102 1.44345 15.7698 3.49405 Vertex 7103 1.44722 23.031 1.53065 Vertex 7104 1.44751 19.7325 3.28916 Vertex 7105 1.44751 18.8869 3.28919 Vertex 7106 1.44793 16.0308 3.15725 Vertex 7107 1.45001 19.0382 3.53581 Vertex 7108 1.4506 20.2771 2.94039 Vertex 7109 1.45061 18.3422 2.94043 Vertex 7110 1.45198 16.0202 3.15881 Vertex 7111 1.45353 4.73062 -5.62246 Vertex 7112 1.45718 15.475 -2.60498 Vertex 7113 1.45724 20.72 3.52045 Vertex 7114 1.45789 -21.4916 -0.735368 Vertex 7115 1.45805 14.6435 1.08259 Vertex 7116 1.45812 20.0184 3.57665 Vertex 7117 1.45816 19.9308 3.20088 Vertex 7118 1.45816 18.6885 3.20091 Vertex 7119 1.4592 20.1139 3.08366 Vertex 7120 1.4592 18.5054 3.0837 Vertex 7121 1.45962 19.5158 3.33845 Vertex 7122 1.45963 19.1036 3.33846 Vertex 7123 1.45994 -12.5875 2.70649 Vertex 7124 1.4611 17.7963 3.59646 Vertex 7125 1.46361 12.35 0.31408 Vertex 7126 1.46804 16.1969 3.16502 Vertex 7127 1.46848 17.1211 3.19554 Vertex 7128 1.47228 20.7208 -3.53124 Vertex 7129 1.47272 17.1308 3.19784 Vertex 7130 1.47433 -22.2983 -3.28052 Vertex 7131 1.47558 22.0368 2.76383 Vertex 7132 1.47736 18.5954 3.58323 Vertex 7133 1.47947 16.5071 -2.3084 Vertex 7134 1.48093 14.4422 1.88735 Vertex 7135 1.48174 17.4894 3.52547 Vertex 7136 1.48338 17.0069 3.19346 Vertex 7137 1.48338 18.981 3.55602 Vertex 7138 1.48365 20.6271 1.92354 Vertex 7139 1.48366 17.9921 1.92361 Vertex 7140 1.48374 14.9586 -2.7584 Vertex 7141 1.48463 22.3936 -2.45474 Vertex 7142 1.48596 22.4012 -2.42155 Vertex 7143 1.48656 21.4657 3.13016 Vertex 7144 1.48874 15.0706 2.9781 Vertex 7145 1.48988 20.6943 3.56852 Vertex 7146 1.49013 19.5028 3.33095 Vertex 7147 1.49013 19.1166 3.33096 Vertex 7148 1.49448 14.6107 1.32698 Vertex 7149 1.49479 18.766 3.5731 Vertex 7150 1.49536 15.9595 3.18719 Vertex 7151 1.4959 6.47029 5.06669 Vertex 7152 1.49792 17.1608 3.23754 Vertex 7153 1.49933 4.98294 4.96264 Vertex 7154 1.50155 20.4975 3.64675 Vertex 7155 1.5025 20.0707 3.63454 Vertex 7156 1.50465 20.6201 3.61062 Vertex 7157 1.50495 22.7814 1.94106 Vertex 7158 1.50682 16.8999 -2.39442 Vertex 7159 1.51043 18.8554 3.5679 Vertex 7160 1.51062 22.4025 -2.53831 Vertex 7161 1.51094 19.7168 3.27357 Vertex 7162 1.51094 18.9025 3.27359 Vertex 7163 1.51122 20.3771 3.67967 Vertex 7164 1.51231 16.5184 3.18214 Vertex 7165 1.51631 18.9226 3.56327 Vertex 7166 1.51743 16.7884 3.19162 Vertex 7167 1.51829 19.485 3.32403 Vertex 7168 1.51829 19.1344 3.32404 Vertex 7169 1.52174 19.5614 2.56725 Vertex 7170 1.52427 18.8635 3.56764 Vertex 7171 1.52801 21.8087 2.90295 Vertex 7172 1.52974 20.1226 3.67867 Vertex 7173 1.53027 20.6109 2.13524 Vertex 7174 1.53028 18.0084 2.13531 Vertex 7175 1.53159 18.8741 3.56735 Vertex 7176 1.53172 14.6079 2.62049 Vertex 7177 1.53238 18.887 3.56704 Vertex 7178 1.53367 20.2589 3.70935 Vertex 7179 1.53419 14.5387 -2.90405 Vertex 7180 1.53474 14.85 2.76936 Vertex 7181 1.53776 14.3748 0.759066 Vertex 7182 1.53984 20.1741 3.70902 Vertex 7183 1.54226 -6.47624 4.00547 Vertex 7184 1.5434 19.4629 3.31785 Vertex 7185 1.5434 19.1564 3.31786 Vertex 7186 1.54368 14.478 2.5058 Vertex 7187 1.54408 17.2111 3.31463 Vertex 7188 1.54479 15.7472 -2.71817 Vertex 7189 1.54782 14.4335 2.26505 Vertex 7190 1.54836 18.4883 -3.62108 Vertex 7191 1.54992 11.948 0.162942 Vertex 7192 1.55134 19.9078 3.17797 Vertex 7193 1.55135 18.7115 3.178 Vertex 7194 1.55216 17.1256 3.1174 Vertex 7195 1.55349 17.9829 3.63558 Vertex 7196 1.55698 17.1356 3.1188 Vertex 7197 1.55902 17.359 3.43395 Vertex 7198 1.55956 3.34044 -5.5179 Vertex 7199 1.56079 17.1318 3.11535 Vertex 7200 1.56111 5.41059 4.93892 Vertex 7201 1.56392 22.4278 -2.67225 Vertex 7202 1.56467 21.2055 3.22883 Vertex 7203 1.56484 19.1823 3.31259 Vertex 7204 1.56484 19.437 3.31258 Vertex 7205 1.56489 15.2895 -3.04454 Vertex 7206 1.5655 20.5627 2.34424 Vertex 7207 1.56551 18.0566 2.34431 Vertex 7208 1.56713 15.5269 -3.37354 Vertex 7209 1.56735 13.7617 0.597897 Vertex 7210 1.56795 22.5665 2.17793 Vertex 7211 1.56954 22.3245 -2.84237 Vertex 7212 1.56978 14.5695 1.62546 Vertex 7213 1.5712 19.6911 3.25876 Vertex 7214 1.57121 18.9282 3.25878 Vertex 7215 1.57184 -23.8351 -3.30151 Vertex 7216 1.57405 19.9263 3.30809 Vertex 7217 1.57415 -3.67004 4.13388 Vertex 7218 1.57415 -2.25204 4.1339 Vertex 7219 1.57415 -0.834042 4.13392 Vertex 7220 1.57415 0.583956 4.13394 Vertex 7221 1.5746 19.9381 3.30676 Vertex 7222 1.57478 17.2506 3.36193 Vertex 7223 1.57518 3.47644 4.9251 Vertex 7224 1.57543 19.9163 3.31122 Vertex 7225 1.57685 -13.1939 2.41279 Vertex 7226 1.57707 19.9519 3.30724 Vertex 7227 1.57805 15.8488 3.24238 Vertex 7228 1.57894 15.932 -3.67969 Vertex 7229 1.57909 -3.66992 -4.33347 Vertex 7230 1.57909 -2.25192 -4.33345 Vertex 7231 1.57909 -0.833921 -4.33343 Vertex 7232 1.57909 0.584077 -4.33341 Vertex 7233 1.57946 14.7382 0.88898 Vertex 7234 1.57985 20.0841 3.054 Vertex 7235 1.57985 18.5353 3.05404 Vertex 7236 1.58161 19.8918 3.32182 Vertex 7237 1.5821 19.4081 3.30834 Vertex 7238 1.5821 19.2113 3.30835 Vertex 7239 1.58427 21.35 -3.30994 Vertex 7240 1.58848 20.4835 2.5454 Vertex 7241 1.58849 18.1358 2.54547 Vertex 7242 1.58939 14.1278 -3.05245 Vertex 7243 1.59004 17.2794 3.37943 Vertex 7244 1.59014 17.3568 -3.94348 Vertex 7245 1.59082 16.7321 -2.19873 Vertex 7246 1.59088 16.0747 3.05984 Vertex 7247 1.59089 6.31946 4.9391 Vertex 7248 1.5926 19.8527 3.33987 Vertex 7249 1.59278 14.739 1.16265 Vertex 7250 1.59281 -13.1294 -4.98923 Vertex 7251 1.59294 16.9768 3.08609 Vertex 7252 1.5937 11.7165 0.070014 Vertex 7253 1.5941 11.7368 0.081587 Vertex 7254 1.59474 19.2427 3.30524 Vertex 7255 1.59474 19.3766 3.30524 Vertex 7256 1.59561 19.7382 3.14147 Vertex 7257 1.59574 20.2413 2.90471 Vertex 7258 1.59575 18.3781 2.90475 Vertex 7259 1.59593 5.38226 -5.60642 Vertex 7260 1.59612 19.7415 3.32526 Vertex 7261 1.59689 16.0648 3.05938 Vertex 7262 1.59831 17.4596 3.42851 Vertex 7263 1.59832 -9.59247 3.72333 Vertex 7264 1.59851 19.7378 2.78096 Vertex 7265 1.59865 20.3755 2.73377 Vertex 7266 1.59866 18.2438 2.73383 Vertex 7267 1.59873 17.1574 3.14952 Vertex 7268 1.59907 19.8126 3.34564 Vertex 7269 1.59919 -24.2339 -3.32883 Vertex 7270 1.5994 17.0164 3.07191 Vertex 7271 1.60003 19.7476 3.33233 Vertex 7272 1.60025 19.9823 3.34269 Vertex 7273 1.60034 16.5047 -3.96301 Vertex 7274 1.60052 -7.48821 -5.80326 Vertex 7275 1.60101 19.7713 3.33912 Vertex 7276 1.60245 19.2758 3.30334 Vertex 7277 1.60245 19.3436 3.30334 Vertex 7278 1.60504 19.3097 3.30271 Vertex 7279 1.60512 16.2316 3.06124 Vertex 7280 1.60611 4.67001 4.70145 Vertex 7281 1.60838 17.0215 3.06951 Vertex 7282 1.61088 17.4757 3.44003 Vertex 7283 1.61328 -3.67005 4.45599 Vertex 7284 1.61328 -2.25205 4.45601 Vertex 7285 1.61436 0.612496 4.76566 Vertex 7286 1.61555 19.35 -3.43355 Vertex 7287 1.61697 20.9569 3.30085 Vertex 7288 1.62552 19.2696 2.56202 Vertex 7289 1.62625 15.7786 3.26957 Vertex 7290 1.62657 1.21441 5.00383 Vertex 7291 1.62682 19.656 3.24508 Vertex 7292 1.62682 18.9633 3.2451 Vertex 7293 1.62867 21.5434 3.03602 Vertex 7294 1.62996 22.5426 -2.15751 Vertex 7295 1.63002 13.2452 0.444484 Vertex 7296 1.63182 17.4842 3.43883 Vertex 7297 1.63283 22.3375 2.37682 Vertex 7298 1.63341 -3.66992 -4.65662 Vertex 7299 1.63341 -2.25192 -4.6566 Vertex 7300 1.63362 22.9724 -1.63633 Vertex 7301 1.63425 16.7594 3.08052 Vertex 7302 1.6356 15.4969 3.15103 Vertex 7303 1.63566 17.1391 3.13747 Vertex 7304 1.63963 16.5357 3.06359 Vertex 7305 1.63988 19.87 3.1562 Vertex 7306 1.63989 18.7493 3.15623 Vertex 7307 1.63996 15.7489 3.26876 Vertex 7308 1.64024 16.0117 3.07113 Vertex 7309 1.64076 18.1657 3.63946 Vertex 7310 1.64308 15.655 3.22924 Vertex 7311 1.64415 20.0294 3.41312 Vertex 7312 1.64495 15.3313 3.01833 Vertex 7313 1.6536 14.6988 1.4173 Vertex 7314 1.6542 -0.833917 -4.65355 Vertex 7315 1.6542 0.584082 -4.65353 Vertex 7316 1.65679 19.1382 3.2181 Vertex 7317 1.65798 19.1358 3.40302 Vertex 7318 1.65877 2.26427 5.11082 Vertex 7319 1.6592 19.1388 2.85758 Vertex 7320 1.6598 -0.834047 4.44957 Vertex 7321 1.6598 0.583952 4.44959 Vertex 7322 1.66024 20.8214 3.36082 Vertex 7323 1.66279 19.1315 3.41236 Vertex 7324 1.6639 14.5215 2.03304 Vertex 7325 1.66606 13.7258 -3.20359 Vertex 7326 1.67102 17.3499 -2.12512 Vertex 7327 1.67113 15.1583 2.83113 Vertex 7328 1.67418 -11.7335 -6.09934 Vertex 7329 1.67642 19.6124 3.23289 Vertex 7330 1.67642 19.007 3.23291 Vertex 7331 1.67774 17.1955 3.21117 Vertex 7332 1.67804 14.504 2.32628 Vertex 7333 1.67867 20.5439 1.8756 Vertex 7334 1.67868 18.0753 1.87566 Vertex 7335 1.6805 23.3306 -0.050574 Vertex 7336 1.68404 -25.5711 -3.3471 Vertex 7337 1.68444 2.14296 -5.6208 Vertex 7338 1.68623 17.3276 3.3224 Vertex 7339 1.68713 19.097 3.43845 Vertex 7340 1.6874 16.764 2.99708 Vertex 7341 1.68829 -10.0787 -6.05037 Vertex 7342 1.68885 16.1426 2.97269 Vertex 7343 1.68971 17.4916 3.43627 Vertex 7344 1.68984 -12.6992 2.5306 Vertex 7345 1.69053 20.091 3.46814 Vertex 7346 1.69085 16.2828 2.97602 Vertex 7347 1.69268 14.9517 2.66028 Vertex 7348 1.69272 19.5291 2.47629 Vertex 7349 1.6939 0.598831 -5.11583 Vertex 7350 1.69422 16.8026 2.98256 Vertex 7351 1.69448 20.0352 3.02582 Vertex 7352 1.69448 18.5842 3.02585 Vertex 7353 1.69448 20.7991 3.40872 Vertex 7354 1.69482 14.4415 0.554714 Vertex 7355 1.69647 14.852 0.987641 Vertex 7356 1.69761 16.1354 2.96954 Vertex 7357 1.6992 17.0231 3.08743 Vertex 7358 1.6996 22.0945 2.53771 Vertex 7359 1.70363 16.5558 2.97955 Vertex 7360 1.70392 16.8057 2.97947 Vertex 7361 1.70444 17.6611 3.50888 Vertex 7362 1.70515 13.4943 -3.29652 Vertex 7363 1.70687 13.5146 -3.28495 Vertex 7364 1.7096 14.7115 2.50578 Vertex 7365 1.71396 -25.9697 -3.37733 Vertex 7366 1.71441 20.7291 3.45238 Vertex 7367 1.71808 13.8285 0.393545 Vertex 7368 1.71879 19.5613 3.22248 Vertex 7369 1.71879 19.0581 3.22249 Vertex 7370 1.71938 14.8153 0.690851 Vertex 7371 1.71948 21.7892 -3.05052 Vertex 7372 1.72002 20.6115 3.4918 Vertex 7373 1.72092 15.9154 3.09509 Vertex 7374 1.72101 17.2293 3.25187 Vertex 7375 1.72159 19.8185 3.13612 Vertex 7376 1.7216 18.8009 3.13614 Vertex 7377 1.7222 21.2852 3.12926 Vertex 7378 1.72289 20.5287 2.08789 Vertex 7379 1.7229 18.0905 2.08795 Vertex 7380 1.72291 18.3448 3.60811 Vertex 7381 1.72436 12.8254 0.298828 Vertex 7382 1.72853 17.2588 3.27161 Vertex 7383 1.73026 1.18158 -5.50375 Vertex 7384 1.731 19.0325 3.48129 Vertex 7385 1.73123 -22.2784 -3.26744 Vertex 7386 1.73154 14.5826 2.38827 Vertex 7387 1.73349 14.8303 1.26287 Vertex 7388 1.73365 20.1824 2.87081 Vertex 7389 1.73365 18.4369 2.87085 Vertex 7390 1.73726 16.9288 -2.06602 Vertex 7391 1.73878 16.3064 2.9313 Vertex 7392 1.73917 20.4934 3.52846 Vertex 7393 1.73938 20.167 3.50775 Vertex 7394 1.74068 16.5659 2.93569 Vertex 7395 1.7412 16.107 2.97485 Vertex 7396 1.74547 3.45723 4.84657 Vertex 7397 1.7489 16.3024 2.92708 Vertex 7398 1.75076 16.566 2.93199 Vertex 7399 1.75098 20.4835 2.29865 Vertex 7400 1.75099 18.1358 2.29871 Vertex 7401 1.75269 19.6842 3.03506 Vertex 7402 1.75287 19.504 3.2141 Vertex 7403 1.75287 19.1153 3.21411 Vertex 7404 1.75365 19.6873 3.21849 Vertex 7405 1.75391 2.2504 5.03539 Vertex 7406 1.75575 19.6829 2.67416 Vertex 7407 1.75642 20.3082 2.69499 Vertex 7408 1.75643 18.3111 2.69504 Vertex 7409 1.75865 19.6923 3.22444 Vertex 7410 1.76018 8.04807 -6.14647 Vertex 7411 1.7607 14.6635 1.75923 Vertex 7412 1.76225 20.4094 2.50269 Vertex 7413 1.76226 18.2099 2.50275 Vertex 7414 1.76685 19.7169 3.22822 Vertex 7415 1.7699 20.2327 3.54048 Vertex 7416 1.77002 -13.8469 -5.28026 Vertex 7417 1.77087 18.965 3.51124 Vertex 7418 1.77105 19.309 2.46677 Vertex 7419 1.77147 15.8534 3.10449 Vertex 7420 1.77184 20.3748 3.56234 Vertex 7421 1.77551 21.8428 2.68186 Vertex 7422 1.77771 18.5286 3.58116 Vertex 7423 1.77784 19.1774 3.20797 Vertex 7424 1.77784 19.442 3.20796 Vertex 7425 1.77796 19.8697 3.18897 Vertex 7426 1.77826 19.7611 3.22985 Vertex 7427 1.77891 19.8443 3.20087 Vertex 7428 1.77944 19.8798 3.18503 Vertex 7429 1.78091 17.1485 3.18192 Vertex 7430 1.78092 19.8916 3.18251 Vertex 7431 1.78158 13.312 0.240132 Vertex 7432 1.78208 20.2879 3.56635 Vertex 7433 1.78228 19.8036 3.22073 Vertex 7434 1.78243 19.9051 3.18142 Vertex 7435 1.78675 17.2673 3.28907 Vertex 7436 1.78892 4.66595 4.768 Vertex 7437 1.78935 16.8093 2.99942 Vertex 7438 1.79172 19.9419 -3.38087 Vertex 7439 1.79189 15.8258 3.09935 Vertex 7440 1.79306 19.3766 3.20422 Vertex 7441 1.79306 19.2427 3.20423 Vertex 7442 1.79446 19.7544 3.1182 Vertex 7443 1.79447 18.865 3.11823 Vertex 7444 1.79616 17.8767 3.57367 Vertex 7445 1.79816 14.608 2.15071 Vertex 7446 1.79818 19.3097 3.20297 Vertex 7447 1.80027 19.9684 2.99981 Vertex 7448 1.80028 18.6509 2.99985 Vertex 7449 1.80237 16.2916 2.93389 Vertex 7450 1.80516 18.7172 3.55861 Vertex 7451 1.80586 14.9497 0.801957 Vertex 7452 1.80674 18.8945 3.52829 Vertex 7453 1.80703 17.2714 3.29425 Vertex 7454 1.80859 21.034 3.18265 Vertex 7455 1.81147 -27.5065 -3.39832 Vertex 7456 1.81317 -22.3595 -4.88473 Vertex 7457 1.81355 14.9509 1.08997 Vertex 7458 1.81875 12.4145 0.150431 Vertex 7459 1.81961 16.0576 2.98864 Vertex 7460 1.82181 15.7439 3.05243 Vertex 7461 1.82231 18.817 3.546 Vertex 7462 1.82374 16.5655 2.94824 Vertex 7463 1.82482 19.9482 3.21522 Vertex 7464 1.82666 18.8527 3.53811 Vertex 7465 1.82874 -23.8152 -3.28843 Vertex 7466 1.82919 18.8278 3.54333 Vertex 7467 1.8301 19.459 2.39687 Vertex 7468 1.83041 22.1458 -2.29606 Vertex 7469 1.83064 18.8397 3.5407 Vertex 7470 1.83128 22.1358 -2.32746 Vertex 7471 1.83337 16.9852 -2.16686 Vertex 7472 1.83369 14.7954 1.54263 Vertex 7473 1.83799 17.1982 3.23715 Vertex 7474 1.83944 14.5085 0.358514 Vertex 7475 1.84341 17.2558 3.28036 Vertex 7476 1.8443 -6.48107 4.07782 Vertex 7477 1.8444 19.1663 3.12638 Vertex 7478 1.84628 19.1641 3.31113 Vertex 7479 1.84791 19.1673 2.76533 Vertex 7480 1.84836 17.1682 3.21515 Vertex 7481 1.84972 14.8906 0.501427 Vertex 7482 1.85353 19.1609 3.31957 Vertex 7483 1.85406 -24.2144 -3.29388 Vertex 7484 1.8567 19.6793 3.10291 Vertex 7485 1.85671 18.94 3.10292 Vertex 7486 1.85747 13.8954 0.197345 Vertex 7487 1.85754 2.26245 5.09119 Vertex 7488 1.85866 20.4304 1.83135 Vertex 7489 1.85867 18.1889 1.83141 Vertex 7490 1.86057 21.5826 2.80926 Vertex 7491 1.86091 20.1021 2.83952 Vertex 7492 1.86092 18.5172 2.83956 Vertex 7493 1.86124 15.6079 2.96373 Vertex 7494 1.86307 22.1388 -2.40843 Vertex 7495 1.86372 15.8502 -2.16584 Vertex 7496 1.86436 23.135 -1.0072 Vertex 7497 1.86513 23.2137 0.654922 Vertex 7498 1.86984 19.3585 2.37892 Vertex 7499 1.87121 20.9002 3.2301 Vertex 7500 1.87183 17.0211 3.12566 Vertex 7501 1.87229 16.022 2.99229 Vertex 7502 1.87557 15.2836 2.68792 Vertex 7503 1.87791 22.0385 -2.75298 Vertex 7504 1.87867 19.4128 2.37497 Vertex 7505 1.87916 15.4545 2.84222 Vertex 7506 1.87917 16.253 -2.02816 Vertex 7507 1.87996 12.8922 0.094476 Vertex 7508 1.88286 14.9174 1.38324 Vertex 7509 1.88373 14.7017 2.24035 Vertex 7510 1.88416 15.833 -2.48162 Vertex 7511 1.88538 19.1269 3.34546 Vertex 7512 1.88696 15.0857 2.52937 Vertex 7513 1.88728 15.2372 -2.32701 Vertex 7514 1.88797 18.0853 3.59162 Vertex 7515 1.89462 19.8854 2.97662 Vertex 7516 1.89462 18.7339 2.97665 Vertex 7517 1.89638 19.609 2.93014 Vertex 7518 1.89737 15.0607 0.898606 Vertex 7519 1.89762 19.6119 3.11311 Vertex 7520 1.89918 16.2739 2.95175 Vertex 7521 1.89923 16.0004 2.98583 Vertex 7522 1.89939 19.6072 2.56906 Vertex 7523 1.90049 22.9589 1.24197 Vertex 7524 1.90066 20.4166 2.04419 Vertex 7525 1.90067 18.2027 2.04425 Vertex 7526 1.90203 20.2163 2.65919 Vertex 7527 1.90204 18.403 2.65924 Vertex 7528 1.90311 19.616 3.11799 Vertex 7529 1.9042 17.1638 3.21703 Vertex 7530 1.90678 19.5952 3.0906 Vertex 7531 1.90678 19.0241 3.09061 Vertex 7532 1.9081 20.0208 3.28393 Vertex 7533 1.90901 17.2512 3.27146 Vertex 7534 1.91007 20.8837 3.2716 Vertex 7535 1.9108 14.7207 -2.48043 Vertex 7536 1.91121 15.0418 0.626083 Vertex 7537 1.91303 13.3789 0.043932 Vertex 7538 1.91332 14.8609 2.36657 Vertex 7539 1.91528 19.6404 3.11792 Vertex 7540 1.91536 15.3659 -2.80445 Vertex 7541 1.91665 22.8178 -1.66263 Vertex 7542 1.91778 17.0972 -1.91025 Vertex 7543 1.91961 12.0125 -0.000706 Vertex 7544 1.92145 -12.9329 2.61846 Vertex 7545 1.92215 20.3755 2.25657 Vertex 7546 1.92216 18.2438 2.25662 Vertex 7547 1.92262 20.3082 2.46327 Vertex 7548 1.92263 18.3111 2.46332 Vertex 7549 1.92351 17.1335 3.1939 Vertex 7550 1.92473 3.46099 4.90409 Vertex 7551 1.92577 22.155 -2.53895 Vertex 7552 1.92697 15.5838 -3.13535 Vertex 7553 1.92977 16.1077 2.93519 Vertex 7554 1.9307 18.4396 -3.29316 Vertex 7555 1.93101 14.7724 1.89858 Vertex 7556 1.93242 15.035 1.19596 Vertex 7557 1.93415 19.6852 3.11293 Vertex 7558 1.94158 17.3809 3.34799 Vertex 7559 1.94183 19.0621 3.3888 Vertex 7560 1.94197 20.8244 3.30558 Vertex 7561 1.94242 22.7277 1.64701 Vertex 7562 1.94295 -25.6153 -3.31302 Vertex 7563 1.94345 19.504 3.08158 Vertex 7564 1.94345 19.1153 3.08159 Vertex 7565 1.94374 19.7277 3.09832 Vertex 7566 1.94405 19.7681 3.0741 Vertex 7567 1.94477 21.3321 2.89878 Vertex 7568 1.94507 19.7937 3.05973 Vertex 7569 1.94607 17.4652 -1.9304 Vertex 7570 1.94677 19.8044 3.05521 Vertex 7571 1.94826 17.5591 3.43109 Vertex 7572 1.9483 17.1362 3.1968 Vertex 7573 1.94875 19.816 3.05174 Vertex 7574 1.94925 20.531 -3.23084 Vertex 7575 1.95051 16.8134 3.04239 Vertex 7576 1.95098 19.8285 3.04934 Vertex 7577 1.95209 15.9554 -3.42424 Vertex 7578 1.95333 -33.605 -4.43582 Vertex 7579 1.95789 15.9261 2.93779 Vertex 7580 1.95962 16.5644 2.98442 Vertex 7581 1.95968 19.2169 3.01133 Vertex 7582 1.95997 16.089 2.92806 Vertex 7583 1.96019 -25.887 -3.31673 Vertex 7584 1.96203 19.2151 3.19577 Vertex 7585 1.96255 14.3009 -2.62608 Vertex 7586 1.96376 19.2187 2.64949 Vertex 7587 1.96402 -33.2993 -3.565 Vertex 7588 1.9656 14.9641 0.320706 Vertex 7589 1.96578 16.4455 -1.91395 Vertex 7590 1.96582 19.4081 3.07609 Vertex 7591 1.96583 19.2113 3.07609 Vertex 7592 1.96599 16.2635 2.95818 Vertex 7593 1.96609 16.1024 2.92862 Vertex 7594 1.96629 14.5756 0.170467 Vertex 7595 1.9669 20.7222 3.33205 Vertex 7596 1.96909 20.1235 3.32556 Vertex 7597 1.9692 11.7809 -0.093635 Vertex 7598 1.9701 11.8013 -0.082061 Vertex 7599 1.97078 19.2131 3.20281 Vertex 7600 1.97202 22.2602 -2.0636 Vertex 7601 1.97223 17.0215 3.14584 Vertex 7602 1.97334 19.3097 3.07424 Vertex 7603 1.97442 20.0023 2.81162 Vertex 7604 1.97442 18.617 2.81165 Vertex 7605 1.9752 19.7883 2.95681 Vertex 7606 1.9752 18.8311 2.95684 Vertex 7607 1.97622 12.4812 -0.053921 Vertex 7608 1.97798 18.8349 3.52164 Vertex 7609 1.97985 18.2866 3.56273 Vertex 7610 1.98031 13.9625 0.009298 Vertex 7611 1.98194 18.8013 3.53177 Vertex 7612 1.98357 17.3087 -3.62741 Vertex 7613 1.98385 15.1609 0.723394 Vertex 7614 1.98434 18.8218 3.52537 Vertex 7615 1.98533 18.8134 3.52791 Vertex 7616 1.9907 16.4807 -3.6711 Vertex 7617 1.9909 22.5201 1.87003 Vertex 7618 1.99189 19.2678 -3.10991 Vertex 7619 1.99365 18.6968 3.5354 Vertex 7620 1.99368 18.8262 3.51748 Vertex 7621 1.99419 15.1482 0.980799 Vertex 7622 1.99467 18.8178 3.52002 Vertex 7623 1.99488 -27.4976 -1.93941 Vertex 7624 1.99846 20.612 3.35853 Vertex 7625 1.99973 -23.8937 -4.80727 Vertex 7626 2.00039 17.0244 3.14796 Vertex 7627 2.00046 18.9796 3.42278 Vertex 7628 2.00278 19.8815 3.07429 Vertex 7629 2.00279 16.2603 2.95321 Vertex 7630 2.003 18.8963 3.47092 Vertex 7631 2.00594 7.82099 4.60024 Vertex 7632 2.00743 -32.2028 -3.85415 Vertex 7633 2.0078 20.2563 3.34013 Vertex 7634 2.00832 15.1281 0.460017 Vertex 7635 2.01094 19.1837 3.22366 Vertex 7636 2.01193 14.917 1.68431 Vertex 7637 2.01404 12.9591 -0.101724 Vertex 7638 2.01508 18.4905 3.54399 Vertex 7639 2.01917 20.2892 1.7919 Vertex 7640 2.01918 18.3301 1.79195 Vertex 7641 2.02047 13.89 -2.77448 Vertex 7642 2.02388 17.7922 3.51682 Vertex 7643 2.0261 13.446 -0.144115 Vertex 7644 2.0267 19.5125 2.82671 Vertex 7645 2.02803 19.5153 3.00914 Vertex 7646 2.02813 21.0915 2.95041 Vertex 7647 2.02895 -25.9603 -1.81046 Vertex 7648 2.02943 19.5105 2.46567 Vertex 7649 2.03189 20.1021 2.62727 Vertex 7650 2.0319 18.5172 2.62731 Vertex 7651 2.03342 19.5189 3.01298 Vertex 7652 2.03429 20.3507 3.36013 Vertex 7653 2.03551 22.3044 2.058 Vertex 7654 2.03571 16.0401 2.88179 Vertex 7655 2.03662 20.4937 3.38503 Vertex 7656 2.03911 17.0592 3.15193 Vertex 7657 2.04003 19.6793 2.94088 Vertex 7658 2.04003 18.94 2.9409 Vertex 7659 2.04093 15.0418 1.50788 Vertex 7660 2.0457 17.1922 3.20889 Vertex 7661 2.04631 -22.3315 -4.77785 Vertex 7662 2.04632 19.5421 3.00823 Vertex 7663 2.04645 16.5643 3.00162 Vertex 7664 2.04828 15.7991 2.84817 Vertex 7665 2.04854 16.817 3.06417 Vertex 7666 2.04856 20.4067 3.38556 Vertex 7667 2.0522 16.6511 -1.80202 Vertex 7668 2.053 15.0284 0.162007 Vertex 7669 2.05332 -33.9647 -4.37041 Vertex 7670 2.05527 16.0862 2.88443 Vertex 7671 2.05857 19.2645 2.89201 Vertex 7672 2.0592 20.2771 2.00522 Vertex 7673 2.05921 18.3422 2.00527 Vertex 7674 2.06027 18.7047 3.50347 Vertex 7675 2.06146 19.2627 3.07545 Vertex 7676 2.06164 18.8891 3.44123 Vertex 7677 2.06175 -27.4876 -3.33859 Vertex 7678 2.06184 19.2661 2.53032 Vertex 7679 2.06203 14.6254 0.004696 Vertex 7680 2.06564 20.1824 2.42811 Vertex 7681 2.06564 18.4369 2.42815 Vertex 7682 2.06573 -32.4382 -2.82081 Vertex 7683 2.06673 19.5849 2.99489 Vertex 7684 2.0674 15.2479 0.793363 Vertex 7685 2.06818 15.2515 0.564334 Vertex 7686 2.0705 19.2608 3.08064 Vertex 7687 2.07136 19.8854 2.78779 Vertex 7688 2.07136 18.7339 2.78782 Vertex 7689 2.07213 15.1605 1.30602 Vertex 7690 2.07252 14.0123 -0.156473 Vertex 7691 2.07481 20.2412 2.21904 Vertex 7692 2.07482 18.378 2.21909 Vertex 7693 2.07607 19.7 2.91863 Vertex 7694 2.07624 22.0806 2.21092 Vertex 7695 2.07673 19.6881 2.9235 Vertex 7696 2.07697 19.6253 2.97265 Vertex 7697 2.07704 19.6632 2.94151 Vertex 7698 2.07746 17.3227 3.27791 Vertex 7699 2.07796 12.0792 -0.205059 Vertex 7700 2.07806 19.7113 2.91446 Vertex 7701 2.07818 -33.679 -3.59156 Vertex 7702 2.07953 17.2729 -1.77223 Vertex 7703 2.07999 -24.2927 -4.83908 Vertex 7704 2.08026 15.2214 0.315462 Vertex 7705 2.08028 7.90822 4.89768 Vertex 7706 2.08069 14.8963 2.04352 Vertex 7707 2.0825 19.1269 3.25832 Vertex 7708 2.08273 19.7221 2.91099 Vertex 7709 2.08344 16.8201 3.06475 Vertex 7710 2.08424 16.5654 2.99983 Vertex 7711 2.08709 -23.8256 -1.61062 Vertex 7712 2.08718 17.5969 -1.76757 Vertex 7713 2.08751 19.5613 2.9292 Vertex 7714 2.08752 19.058 2.92922 Vertex 7715 2.08816 21.1173 -2.98346 Vertex 7716 2.09079 20.966 2.99322 Vertex 7717 2.09634 15.6392 2.71839 Vertex 7718 2.10127 16.2594 2.91527 Vertex 7719 2.10151 17.0957 -1.98176 Vertex 7720 2.10206 15.4463 2.54847 Vertex 7721 2.10416 19.9748 3.1266 Vertex 7722 2.105 13.4879 -2.92562 Vertex 7723 2.10772 19.4509 2.76344 Vertex 7724 2.10887 -25.5735 -1.68668 Vertex 7725 2.10917 19.4534 2.94538 Vertex 7726 2.10978 18.0238 3.53373 Vertex 7727 2.10985 13.4958 -0.309886 Vertex 7728 2.11003 19.4487 2.4026 Vertex 7729 2.11009 15.0835 0.025329 Vertex 7730 2.11071 19.2398 3.08839 Vertex 7731 2.11084 12.5482 -0.250121 Vertex 7732 2.11437 19.4564 2.9484 Vertex 7733 2.11648 19.437 2.92209 Vertex 7734 2.11648 19.1823 2.9221 Vertex 7735 2.11673 -33.1107 -3.69455 Vertex 7736 2.117 15.2732 1.07871 Vertex 7737 2.11758 15.252 2.37663 Vertex 7738 2.12116 -22.2883 -1.48167 Vertex 7739 2.12255 23.1317 -0.279779 Vertex 7740 2.12433 -33.3832 -4.43682 Vertex 7741 2.12469 14.6579 -0.1388 Vertex 7742 2.12471 15.3215 0.192417 Vertex 7743 2.12471 13.0262 -0.289771 Vertex 7744 2.12499 -35.0093 -4.66006 Vertex 7745 2.12515 21.8402 2.34155 Vertex 7746 2.12553 16.855 3.06795 Vertex 7747 2.12621 19.3097 2.9197 Vertex 7748 2.12677 11.8477 -0.297987 Vertex 7749 2.12798 17.5067 3.35752 Vertex 7750 2.12812 11.868 -0.286415 Vertex 7751 2.13146 14.0449 -0.299968 Vertex 7752 2.13242 19.4732 2.93451 Vertex 7753 2.13274 20.9554 3.02718 Vertex 7754 2.13329 15.3499 0.426008 Vertex 7755 2.13415 19.7821 2.91988 Vertex 7756 2.13531 19.0389 3.30479 Vertex 7757 2.1368 16.8698 -1.69237 Vertex 7758 2.13852 -24.2354 -1.57445 Vertex 7759 2.13946 19.4241 2.74036 Vertex 7760 2.13947 -11.2875 3.18019 Vertex 7761 2.14105 19.4264 2.92183 Vertex 7762 2.14106 19.3088 2.76844 Vertex 7763 2.14119 19.4219 2.37983 Vertex 7764 2.14215 19.3094 2.40781 Vertex 7765 2.14281 19.9684 2.60001 Vertex 7766 2.14281 18.6509 2.60004 Vertex 7767 2.14288 15.0562 2.20287 Vertex 7768 2.14458 19.3071 2.95019 Vertex 7769 2.14496 15.3341 0.633656 Vertex 7770 2.14597 19.4287 2.92424 Vertex 7771 2.148 13.2564 -3.01855 Vertex 7772 2.14935 19.7544 2.76862 Vertex 7773 2.14935 18.865 2.76864 Vertex 7774 2.15024 -32.8637 -2.9009 Vertex 7775 2.15055 13.2767 -3.00697 Vertex 7776 2.1527 19.304 2.95305 Vertex 7777 2.1545 -32.3061 -3.02674 Vertex 7778 2.15623 17.0575 3.11865 Vertex 7779 2.15627 20.1239 1.7582 Vertex 7780 2.15628 18.4954 1.75824 Vertex 7781 2.16114 13.5284 -0.453381 Vertex 7782 2.16201 17.1913 3.1681 Vertex 7783 2.16207 19.3908 2.72327 Vertex 7784 2.16316 19.3892 2.36297 Vertex 7785 2.16332 19.5038 2.90373 Vertex 7786 2.16396 15.9525 -2.29455 Vertex 7787 2.16428 19.3919 2.90443 Vertex 7788 2.16503 15.9504 2.7938 Vertex 7789 2.16715 19.7935 -3.07764 Vertex 7790 2.1689 20.9064 3.05414 Vertex 7791 2.16977 19.3925 2.90644 Vertex 7792 2.17091 18.759 3.40889 Vertex 7793 2.17186 16.0213 -1.72006 Vertex 7794 2.17207 7.80563 5.07598 Vertex 7795 2.17358 19.4339 2.89678 Vertex 7796 2.1737 16.5597 2.97428 Vertex 7797 2.17551 20.1046 3.13649 Vertex 7798 2.17556 19.351 2.71219 Vertex 7799 2.17593 19.3504 2.35203 Vertex 7800 2.17593 15.6243 -1.83938 Vertex 7801 2.17681 15.4563 0.308415 Vertex 7802 2.17885 19.3501 2.89318 Vertex 7803 2.17962 15.3737 0.886465 Vertex 7804 2.18206 19.1996 3.09872 Vertex 7805 2.18224 21.5831 2.44988 Vertex 7806 2.18293 19.5323 2.86524 Vertex 7807 2.18468 19.2951 2.93966 Vertex 7808 2.18579 19.3479 2.89498 Vertex 7809 2.18779 20.0352 2.39808 Vertex 7810 2.1878 18.5841 2.39812 Vertex 7811 2.18832 15.0636 1.84234 Vertex 7812 2.18948 18.4809 3.47171 Vertex 7813 2.19027 22.9227 -1.10581 Vertex 7814 2.19127 19.5586 2.81904 Vertex 7815 2.19132 18.9711 3.31763 Vertex 7816 2.19214 17.3234 3.22211 Vertex 7817 2.19412 19.5883 2.78604 Vertex 7818 2.1946 20.1139 1.97193 Vertex 7819 2.19461 18.5054 1.97197 Vertex 7820 2.195 19.5772 2.79264 Vertex 7821 2.19533 15.0112 -2.00055 Vertex 7822 2.19631 15.4422 0.035051 Vertex 7823 2.19667 19.5987 2.7806 Vertex 7824 2.19728 17.7443 3.44772 Vertex 7825 2.19928 20.8189 3.07408 Vertex 7826 2.20053 15.172 -0.149886 Vertex 7827 2.20104 19.3914 2.87476 Vertex 7828 2.20167 13.076 -0.455543 Vertex 7829 2.20264 19.6084 2.77633 Vertex 7830 2.2052 20.084 2.18699 Vertex 7831 2.2052 18.5352 2.18703 Vertex 7832 2.20598 18.254 3.48179 Vertex 7833 2.20647 19.6124 2.75458 Vertex 7834 2.20647 19.007 2.7546 Vertex 7835 2.20662 15.2036 1.6368 Vertex 7836 2.21147 16.0618 2.80064 Vertex 7837 2.2122 12.1461 -0.401259 Vertex 7838 2.21221 15.4141 0.493643 Vertex 7839 2.21279 14.4947 -2.15396 Vertex 7840 2.21479 19.3456 2.86844 Vertex 7841 2.21682 20.2707 3.10395 Vertex 7842 2.22008 -22.2766 -1.94615 Vertex 7843 2.22096 12.6153 -0.438169 Vertex 7844 2.22299 15.4756 -2.58509 Vertex 7845 2.22345 16.8133 3.0298 Vertex 7846 2.2239 19.4421 2.83946 Vertex 7847 2.22479 14.7304 -0.322939 Vertex 7848 2.22611 17.4561 -1.65197 Vertex 7849 2.22615 17.0856 -1.58755 Vertex 7850 2.22866 -27.4857 -2.0479 Vertex 7851 2.22951 16.2022 -1.6426 Vertex 7852 2.22983 14.1173 -0.484108 Vertex 7853 2.23109 15.3276 1.42013 Vertex 7854 2.23204 19.8185 2.57807 Vertex 7855 2.23204 18.8009 2.5781 Vertex 7856 2.23235 19.8915 2.94114 Vertex 7857 2.23239 21.3462 2.5374 Vertex 7858 2.23249 20.7193 3.09577 Vertex 7859 2.23773 -33.7206 -5.04736 Vertex 7860 2.23816 15.8314 2.65936 Vertex 7861 2.24051 19.2803 2.91 Vertex 7862 2.24058 -23.929 -4.6972 Vertex 7863 2.24132 19.4629 2.74602 Vertex 7864 2.24132 19.1564 2.74603 Vertex 7865 2.24245 -25.6286 -4.77163 Vertex 7866 2.2436 17.504 3.2882 Vertex 7867 2.24474 13.1086 -0.599037 Vertex 7868 2.24534 15.5892 0.164112 Vertex 7869 2.24778 19.1484 3.10031 Vertex 7870 2.24935 21.4833 -2.73383 Vertex 7871 2.25053 17.0201 3.08181 Vertex 7872 2.2514 15.462 0.729283 Vertex 7873 2.25209 13.6009 -0.637521 Vertex 7874 2.25303 19.3097 2.74314 Vertex 7875 2.25506 19.665 2.76901 Vertex 7876 2.25512 15.683 2.47845 Vertex 7877 2.25611 22.4791 -1.63011 Vertex 7878 2.25706 20.4698 3.10082 Vertex 7879 2.25808 19.3885 2.8094 Vertex 7880 2.25981 11.9146 -0.494187 Vertex 7881 2.2614 16.2607 2.84436 Vertex 7882 2.26158 11.935 -0.482614 Vertex 7883 2.26162 19.4488 2.7761 Vertex 7884 2.26193 14.0749 -2.29962 Vertex 7885 2.26414 -25.8848 -1.91362 Vertex 7886 2.26585 19.3432 2.81356 Vertex 7887 2.26656 19.9385 1.73109 Vertex 7888 2.26657 18.6807 1.73112 Vertex 7889 2.26717 15.4877 0.373321 Vertex 7890 2.26789 23.0141 0.347768 Vertex 7891 2.26854 20.6076 3.1192 Vertex 7892 2.26908 15.4358 1.19234 Vertex 7893 2.27015 -25.6136 -1.89087 Vertex 7894 2.2702 20.4037 3.0332 Vertex 7895 2.27341 -24.1989 -4.68357 Vertex 7896 2.27559 21.1295 2.60413 Vertex 7897 2.27592 -26.0217 -4.7316 Vertex 7898 2.27673 20.5244 3.12088 Vertex 7899 2.2778 16.4177 -1.55974 Vertex 7900 2.27832 17.1904 3.12731 Vertex 7901 2.27861 15.6648 -2.85336 Vertex 7902 2.28124 15.6539 2.34734 Vertex 7903 2.28176 17.9757 3.45587 Vertex 7904 2.28606 19.87 2.37393 Vertex 7905 2.28607 18.7493 2.37396 Vertex 7906 2.28675 19.4542 2.7067 Vertex 7907 2.28841 15.4456 2.19616 Vertex 7908 2.28939 -33.5132 -3.54935 Vertex 7909 2.28939 19.2559 2.87058 Vertex 7910 2.29109 15.5833 -0.156639 Vertex 7911 2.29315 15.6057 2.2721 Vertex 7912 2.29621 12.6651 -0.60394 Vertex 7913 2.29739 19.656 2.56201 Vertex 7914 2.29739 18.9633 2.56203 Vertex 7915 2.29985 19.461 2.66714 Vertex 7916 2.30041 22.7821 0.875445 Vertex 7917 2.3005 15.1855 1.90996 Vertex 7918 2.30095 19.4693 2.65741 Vertex 7919 2.3023 15.2638 2.03824 Vertex 7920 2.30262 -24.1483 -1.76796 Vertex 7921 2.30354 19.9308 1.94516 Vertex 7922 2.30355 18.6885 1.94519 Vertex 7923 2.30457 19.4781 2.65015 Vertex 7924 2.30463 16.0309 2.66512 Vertex 7925 2.30682 17.3241 3.16631 Vertex 7926 2.30787 19.086 3.09316 Vertex 7927 2.30848 19.3809 2.72552 Vertex 7928 2.30863 -23.877 -1.74521 Vertex 7929 2.30978 20.0342 2.90092 Vertex 7930 2.3101 19.9078 2.16121 Vertex 7931 2.3101 18.7115 2.16124 Vertex 7932 2.31073 19.4876 2.64537 Vertex 7933 2.31245 19.3388 2.73603 Vertex 7934 2.31344 15.333 1.68986 Vertex 7935 2.314 -34.0872 -4.97328 Vertex 7936 2.31481 16.5473 2.92496 Vertex 7937 2.31596 -30.8593 -2.03129 Vertex 7938 2.31639 17.733 3.36637 Vertex 7939 2.31661 15.5359 0.595206 Vertex 7940 2.31673 17.267 -1.71016 Vertex 7941 2.3174 18.3778 -2.88612 Vertex 7942 2.31829 15.294 -0.36364 Vertex 7943 2.31857 13.664 -2.44802 Vertex 7944 2.31896 21.0188 2.65016 Vertex 7945 2.32049 17.7304 -1.59039 Vertex 7946 2.32066 16.6679 -1.47148 Vertex 7947 2.32092 12.2132 -0.589307 Vertex 7948 2.32317 17.2983 -1.48755 Vertex 7949 2.32472 15.5382 1.0027 Vertex 7950 2.32526 -30.3048 -2.1879 Vertex 7951 2.32559 18.8597 3.25166 Vertex 7952 2.32563 13.1811 -0.783177 Vertex 7953 2.33131 19.2218 2.82139 Vertex 7954 2.33377 7.56557 5.12066 Vertex 7955 2.33396 15.9939 -3.08556 Vertex 7956 2.33406 22.5705 1.24316 Vertex 7957 2.33474 15.9937 2.47786 Vertex 7958 2.33525 15.7488 -0.0069 Vertex 7959 2.33646 12.6976 -0.747435 Vertex 7960 2.33724 19.3852 2.65199 Vertex 7961 2.33726 19.485 2.55222 Vertex 7962 2.33726 19.1343 2.55223 Vertex 7963 2.33747 20.3223 -2.91731 Vertex 7964 2.33919 -35.0338 -3.30494 Vertex 7965 2.34184 19.3236 2.67149 Vertex 7966 2.34338 17.6154 -1.49608 Vertex 7967 2.34433 18.5497 3.33846 Vertex 7968 2.34643 15.4565 1.52431 Vertex 7969 2.34735 19.7377 1.71123 Vertex 7970 2.34735 18.8816 1.71125 Vertex 7971 2.34834 19.3666 2.63376 Vertex 7972 2.34856 19.1688 -2.73188 Vertex 7973 2.3491 15.6132 0.2373 Vertex 7974 2.35066 19.3097 2.54893 Vertex 7975 2.35143 16.7983 2.99258 Vertex 7976 2.35334 19.3997 2.60385 Vertex 7977 2.35391 19.7684 2.75862 Vertex 7978 2.35474 -30.8039 -2.24334 Vertex 7979 2.35498 14.8428 -0.547725 Vertex 7980 2.35542 19.4065 2.59256 Vertex 7981 2.35635 17.4984 3.2082 Vertex 7982 2.35756 19.3933 2.5966 Vertex 7983 2.35804 19.6911 2.35624 Vertex 7984 2.35804 18.9282 2.35626 Vertex 7985 2.35894 16.2705 2.7148 Vertex 7986 2.36053 21.7101 -2.07318 Vertex 7987 2.36119 14.2297 -0.708894 Vertex 7988 2.36241 19.4046 2.58704 Vertex 7989 2.36249 21.0142 2.67548 Vertex 7990 2.36378 19.4121 2.58402 Vertex 7991 2.36412 15.7678 -1.29214 Vertex 7992 2.36415 21.6966 -2.1019 Vertex 7993 2.36455 19.3914 2.59108 Vertex 7994 2.3655 19.5301 2.62167 Vertex 7995 2.36646 20.2103 2.79921 Vertex 7996 2.36698 11.9817 -0.682235 Vertex 7997 2.36744 16.0201 2.34359 Vertex 7998 2.36885 22.3794 1.45092 Vertex 7999 2.36913 12.0021 -0.670662 Vertex 8000 2.37004 19.4215 2.57898 Vertex 8001 2.37127 17.014 3.04722 Vertex 8002 2.37281 -31.3416 -2.10853 Vertex 8003 2.37332 15.5955 0.484235 Vertex 8004 2.37727 15.9721 2.22351 Vertex 8005 2.378 15.7606 -0.566094 Vertex 8006 2.37844 13.7133 -0.862307 Vertex 8007 2.3789 15.4049 1.76572 Vertex 8008 2.37983 16.2147 -1.99832 Vertex 8009 2.37996 15.3582 -1.42214 Vertex 8010 2.38011 16.9032 -1.37634 Vertex 8011 2.38131 19.3922 2.58178 Vertex 8012 2.38142 18.2008 3.38196 Vertex 8013 2.38268 19.3997 2.57875 Vertex 8014 2.38333 19.7324 1.92555 Vertex 8015 2.38333 18.8868 1.92557 Vertex 8016 2.38355 17.2575 -3.2152 Vertex 8017 2.38386 15.5809 1.31468 Vertex 8018 2.38552 -32.2529 -5.28061 Vertex 8019 2.3865 11.132 -5.6933 Vertex 8020 2.38692 19.7168 2.14233 Vertex 8021 2.38693 18.9025 2.14235 Vertex 8022 2.38907 16.4629 -3.28168 Vertex 8023 2.38917 15.9239 2.14826 Vertex 8024 2.38938 7.39991 4.99909 Vertex 8025 2.39036 -33.5131 -4.9756 Vertex 8026 2.39158 15.4838 1.87269 Vertex 8027 2.39191 15.6349 0.851211 Vertex 8028 2.39223 15.9739 -1.19331 Vertex 8029 2.39261 14.7452 -1.58331 Vertex 8030 2.39331 15.4926 -0.744391 Vertex 8031 2.39388 16.2886 2.52657 Vertex 8032 2.39403 12.2631 -0.755078 Vertex 8033 2.39463 17.1894 3.08652 Vertex 8034 2.39522 20.9752 2.69806 Vertex 8035 2.39631 22.1747 1.63722 Vertex 8036 2.39663 19.5263 1.69912 Vertex 8037 2.39663 19.0929 1.69913 Vertex 8038 2.39878 16.0345 -0.525407 Vertex 8039 2.39945 15.6667 1.98798 Vertex 8040 2.40109 16.55 2.80839 Vertex 8041 2.40195 19.5027 2.34545 Vertex 8042 2.40195 19.1166 2.34546 Vertex 8043 2.40391 17.9407 3.35805 Vertex 8044 2.40524 14.2287 -1.73672 Vertex 8045 2.40561 21.6929 -2.1762 Vertex 8046 2.4061 13.262 -2.59915 Vertex 8047 2.40704 16.4854 2.12529 Vertex 8048 2.40802 16.2231 2.21983 Vertex 8049 2.40879 16.497 2.255 Vertex 8050 2.41024 16.2728 2.36158 Vertex 8051 2.4116 16.7024 2.23696 Vertex 8052 2.41282 19.3352 2.56621 Vertex 8053 2.41319 19.3096 1.69506 Vertex 8054 2.41395 12.7701 -0.931575 Vertex 8055 2.41467 16.2122 -1.1342 Vertex 8056 2.41507 15.8273 2.0426 Vertex 8057 2.41644 21.9564 1.80206 Vertex 8058 2.41645 16.8393 2.16571 Vertex 8059 2.41671 19.3097 2.34183 Vertex 8060 2.41678 16.6257 2.07954 Vertex 8061 2.41691 15.547 1.61857 Vertex 8062 2.41714 20.9017 2.7179 Vertex 8063 2.41832 16.2132 2.1118 Vertex 8064 2.4196 18.9814 3.02407 Vertex 8065 2.42123 17.5367 -1.3271 Vertex 8066 2.4215 17.3248 3.11051 Vertex 8067 2.42548 15.9717 -0.167505 Vertex 8068 2.42568 11.5285 1.66807 Vertex 8069 2.42568 11.8225 2.11012 Vertex 8070 2.4257 14.0406 -3.75157 Vertex 8071 2.42576 13.2844 -3.40238 Vertex 8072 2.42592 13.0009 1.20876 Vertex 8073 2.42593 11.8018 0.889532 Vertex 8074 2.42616 14.0353 0.16341 Vertex 8075 2.42618 12.1175 -0.013846 Vertex 8076 2.42633 14.7589 -1.74606 Vertex 8077 2.42637 12.6895 -1.66557 Vertex 8078 2.42644 15.0521 -0.914126 Vertex 8079 2.42683 19.4423 2.53882 Vertex 8080 2.42691 17.7134 3.25298 Vertex 8081 2.42751 20.3482 2.69387 Vertex 8082 2.43048 16.7552 2.01844 Vertex 8083 2.43089 16.962 2.11436 Vertex 8084 2.4309 -11.3423 3.0219 Vertex 8085 2.43145 12.2956 -0.898571 Vertex 8086 2.432 19.5237 1.91359 Vertex 8087 2.432 19.0956 1.9136 Vertex 8088 2.43253 16.5678 2.62457 Vertex 8089 2.43265 16.7969 2.88128 Vertex 8090 2.43282 21.6292 -2.48196 Vertex 8091 2.43379 19.5157 2.13081 Vertex 8092 2.43379 19.1035 2.13082 Vertex 8093 2.4341 15.6976 1.13755 Vertex 8094 2.43458 21.7149 1.94278 Vertex 8095 2.4351 16.5502 2.44011 Vertex 8096 2.43583 14.439 -1.07529 Vertex 8097 2.43727 16.8988 2.33728 Vertex 8098 2.43738 16.4828 -1.1148 Vertex 8099 2.43802 19.9041 2.67653 Vertex 8100 2.43822 20.59 2.76255 Vertex 8101 2.43854 12.0315 -0.848005 Vertex 8102 2.43905 19.4018 2.52046 Vertex 8103 2.44098 12.0519 -0.836433 Vertex 8104 2.44127 20.8154 2.74016 Vertex 8105 2.44203 13.2935 -1.00796 Vertex 8106 2.44277 17.0234 2.27174 Vertex 8107 2.44363 16.0969 2.03181 Vertex 8108 2.44411 16.7588 2.43201 Vertex 8109 2.44691 16.394 2.00706 Vertex 8110 2.44701 20.5256 2.70008 Vertex 8111 2.44836 19.3096 1.90957 Vertex 8112 2.44896 13.0305 -2.69208 Vertex 8113 2.44924 16.87 1.9694 Vertex 8114 2.4494 13.9226 -1.22871 Vertex 8115 2.44954 19.3096 2.12694 Vertex 8116 2.45053 19.3447 2.5227 Vertex 8117 2.45075 21.4503 2.0594 Vertex 8118 2.45082 22.8572 -0.487035 Vertex 8119 2.45126 -25.6615 -4.60973 Vertex 8120 2.45147 13.8089 -1.88238 Vertex 8121 2.45184 15.7154 0.730696 Vertex 8122 2.45213 13.0508 -2.68051 Vertex 8123 2.45256 17.1237 -1.27432 Vertex 8124 2.45295 19.124 2.72613 Vertex 8125 2.45335 15.7903 0.085578 Vertex 8126 2.45363 17.0113 2.93344 Vertex 8127 2.45494 17.0705 2.08291 Vertex 8128 2.45512 15.7125 0.359228 Vertex 8129 2.45537 15.7644 -2.26022 Vertex 8130 2.45624 16.3144 -0.622332 Vertex 8131 2.45634 -32.2006 -2.28971 Vertex 8132 2.45647 21.7966 -1.88546 Vertex 8133 2.45824 19.2511 2.55918 Vertex 8134 2.45965 16.5286 1.95973 Vertex 8135 2.46059 17.1328 2.23541 Vertex 8136 2.46155 16.9707 2.45441 Vertex 8137 2.46249 -27.5559 -4.65414 Vertex 8138 2.4625 15.7087 1.44572 Vertex 8139 2.46262 15.6766 1.7137 Vertex 8140 2.46453 21.2092 2.1569 Vertex 8141 2.46625 17.4901 3.11752 Vertex 8142 2.46658 20.6412 2.77232 Vertex 8143 2.4671 16.809 2.69587 Vertex 8144 2.46745 17.8762 -1.25594 Vertex 8145 2.4676 20.7164 2.76485 Vertex 8146 2.46869 17.15 2.083 Vertex 8147 2.46886 19.6056 2.57903 Vertex 8148 2.47123 17.2127 2.23305 Vertex 8149 2.47171 17.0855 2.43074 Vertex 8150 2.47308 16.9698 1.93242 Vertex 8151 2.47423 16.8292 2.56088 Vertex 8152 2.47431 12.0641 -0.991499 Vertex 8153 2.47477 17.1866 2.96751 Vertex 8154 2.47514 17.2571 2.20544 Vertex 8155 2.4759 20.9915 2.23531 Vertex 8156 2.47698 12.0844 -0.979927 Vertex 8157 2.477 19.6306 -2.75249 Vertex 8158 2.47721 15.9856 1.91575 Vertex 8159 2.47795 17.191 2.02083 Vertex 8160 2.47937 16.6466 1.89546 Vertex 8161 2.47963 18.6968 3.14426 Vertex 8162 2.4799 16.263 1.91669 Vertex 8163 2.48354 15.8455 1.80972 Vertex 8164 2.48409 -25.9314 -4.5961 Vertex 8165 2.48451 17.2021 2.40527 Vertex 8166 2.4849 21.699 -2.29608 Vertex 8167 2.48531 16.7494 -1.06916 Vertex 8168 2.48767 17.2928 2.13712 Vertex 8169 2.4926 15.8065 0.992934 Vertex 8170 2.49309 18.3928 3.23327 Vertex 8171 2.49389 17.0646 1.88492 Vertex 8172 2.49508 17.2929 2.37876 Vertex 8173 2.49601 17.2791 1.95571 Vertex 8174 2.49608 17.323 2.98348 Vertex 8175 2.4976 17.0121 2.74047 Vertex 8176 2.49782 16.7473 1.83687 Vertex 8177 2.49941 13.5027 -1.37436 Vertex 8178 2.50242 15.7795 0.641156 Vertex 8179 2.50285 20.8542 -2.62892 Vertex 8180 2.503 22.5517 -1.1635 Vertex 8181 2.50342 17.3578 2.35121 Vertex 8182 2.5038 20.8824 2.28425 Vertex 8183 2.50617 18.1271 3.26325 Vertex 8184 2.50656 15.8519 1.29102 Vertex 8185 2.50687 13.398 -2.03078 Vertex 8186 2.50733 12.3681 -1.08271 Vertex 8187 2.50739 20.0721 2.52272 Vertex 8188 2.50798 16.4017 1.82452 Vertex 8189 2.50948 17.0267 2.60169 Vertex 8190 2.51158 17.9003 3.22359 Vertex 8191 2.51169 17.1543 1.82689 Vertex 8192 2.51207 16.2579 -0.317702 Vertex 8193 2.51226 17.3703 2.05971 Vertex 8194 2.515 16.8307 1.78394 Vertex 8195 2.51541 15.8423 1.56129 Vertex 8196 2.51773 17.1483 2.59134 Vertex 8197 2.5186 17.3692 -1.13206 Vertex 8198 2.51875 17.182 2.77026 Vertex 8199 2.52104 17.3544 1.88329 Vertex 8200 2.52245 17.4276 2.29467 Vertex 8201 2.52384 17.8008 -1.10617 Vertex 8202 2.52454 12.8825 -1.15636 Vertex 8203 2.52577 -30.3561 -5.11725 Vertex 8204 2.5267 17.2785 2.5925 Vertex 8205 2.52765 16.6241 -0.665994 Vertex 8206 2.52786 16.5131 1.75532 Vertex 8207 2.52885 16.1221 1.77984 Vertex 8208 2.52887 17.6853 3.10756 Vertex 8209 2.53056 17.3188 2.78524 Vertex 8210 2.53143 17.4765 2.97405 Vertex 8211 2.53177 16.6195 -1.59291 Vertex 8212 2.53203 19.4851 2.46193 Vertex 8213 2.53533 -43.2861 -4.6068 Vertex 8214 2.53549 16.9135 1.7294 Vertex 8215 2.53662 17.235 1.76255 Vertex 8216 2.53919 17.4407 1.9765 Vertex 8217 2.53978 17.3966 2.57937 Vertex 8218 2.54068 15.9819 1.66138 Vertex 8219 2.54139 -33.5573 -4.80197 Vertex 8220 2.54333 15.9162 -2.49587 Vertex 8221 2.5434 19.4069 2.40731 Vertex 8222 2.54658 15.8937 0.884676 Vertex 8223 2.54751 16.6052 1.68884 Vertex 8224 2.54823 20.8817 2.30371 Vertex 8225 2.54825 20.246 2.43654 Vertex 8226 2.54894 12.1366 -1.17564 Vertex 8227 2.55027 15.9766 1.15445 Vertex 8228 2.55107 16.0237 -0.060493 Vertex 8229 2.5519 12.1569 -1.16407 Vertex 8230 2.5519 17.4578 2.7778 Vertex 8231 2.55194 17.0122 -0.997265 Vertex 8232 2.55218 17.5022 2.20915 Vertex 8233 2.55304 17.4167 1.80357 Vertex 8234 2.55588 15.9885 1.42547 Vertex 8235 2.55698 17.5027 2.55192 Vertex 8236 2.5582 15.8869 0.220182 Vertex 8237 2.55928 16.9957 1.67326 Vertex 8238 2.56024 19.7143 2.46331 Vertex 8239 2.5606 20.4257 2.41799 Vertex 8240 2.56176 16.2451 1.67393 Vertex 8241 2.56478 13.0918 -1.52276 Vertex 8242 2.5661 19.2863 2.4123 Vertex 8243 2.56694 16.678 1.62506 Vertex 8244 2.56846 17.5042 1.88749 Vertex 8245 2.5687 17.3068 1.69191 Vertex 8246 2.57146 17.4991 -1.35206 Vertex 8247 2.57204 15.8873 0.529894 Vertex 8248 2.57294 18.2129 -1.35952 Vertex 8249 2.57595 16.3548 1.59802 Vertex 8250 2.57693 -41.8906 -4.63483 Vertex 8251 2.57773 16.1074 1.54091 Vertex 8252 2.57784 20.8517 2.32476 Vertex 8253 2.58082 17.6472 2.93921 Vertex 8254 2.58214 17.569 2.11011 Vertex 8255 2.5823 17.5956 2.49348 Vertex 8256 2.5827 17.6398 -0.949556 Vertex 8257 2.58278 17.5992 2.74792 Vertex 8258 2.58296 18.8343 2.89304 Vertex 8259 2.58408 20.5375 2.40973 Vertex 8260 2.58473 16.1152 1.30624 Vertex 8261 2.58594 17.0827 1.61429 Vertex 8262 2.58971 16.757 1.56464 Vertex 8263 2.58982 18.0825 -1.19612 Vertex 8264 2.59181 18.2567 -1.21556 Vertex 8265 2.59263 20.7922 2.34741 Vertex 8266 2.59426 15.9593 0.812778 Vertex 8267 2.59467 16.2221 1.44832 Vertex 8268 2.59579 12.9959 -2.18192 Vertex 8269 2.59637 16.071 1.05714 Vertex 8270 2.59736 16.5884 -0.404305 Vertex 8271 2.59833 16.4437 1.5253 Vertex 8272 2.60305 22.7165 0.025255 Vertex 8273 2.60382 17.2779 -0.898622 Vertex 8274 2.60477 17.8542 3.05248 Vertex 8275 2.60592 18.1221 -1.06729 Vertex 8276 2.60816 18.4278 -1.34112 Vertex 8277 2.60902 20.7228 2.37224 Vertex 8278 2.60921 18.3257 -2.48429 Vertex 8279 2.61035 18.0591 3.12002 Vertex 8280 2.61234 17.628 1.99755 Vertex 8281 2.61248 16.2325 -1.82985 Vertex 8282 2.61259 18.3572 -1.47995 Vertex 8283 2.61482 17.5058 1.68027 Vertex 8284 2.61532 16.9639 -0.656394 Vertex 8285 2.61545 17.1745 1.55251 Vertex 8286 2.61576 17.675 2.40404 Vertex 8287 2.61581 16.8424 1.50757 Vertex 8288 2.61677 18.5516 3.00978 Vertex 8289 2.6172 18.2882 3.0933 Vertex 8290 2.61814 16.1898 -2.69491 Vertex 8291 2.61848 12.4805 -1.3075 Vertex 8292 2.61868 20.5817 2.41176 Vertex 8293 2.62192 16.2104 1.21842 Vertex 8294 2.62201 17.7174 2.68639 Vertex 8295 2.62236 16.3121 1.3685 Vertex 8296 2.62587 19.1405 2.43426 Vertex 8297 2.62699 20.6434 2.39926 Vertex 8298 2.62728 17.5909 1.75567 Vertex 8299 2.62886 17.4089 1.58317 Vertex 8300 2.6289 16.5118 1.45579 Vertex 8301 2.62906 20.6776 1.84396 Vertex 8302 2.63007 19.043 -2.34768 Vertex 8303 2.63052 -11.4725 3.13479 Vertex 8304 2.63084 17.9802 -0.933352 Vertex 8305 2.63158 19.5635 2.31502 Vertex 8306 2.63607 12.7644 -2.27484 Vertex 8307 2.6367 -22.2785 -1.38675 Vertex 8308 2.63693 20.0946 -2.59064 Vertex 8309 2.63962 19.8563 2.27449 Vertex 8310 2.63966 12.7847 -2.26327 Vertex 8311 2.64076 16.3134 -0.200914 Vertex 8312 2.64119 20.921 1.75729 Vertex 8313 2.64158 17.7933 2.87342 Vertex 8314 2.64308 16.135 0.999102 Vertex 8315 2.64315 16.9325 1.4497 Vertex 8316 2.64531 20.5566 1.89549 Vertex 8317 2.64604 17.5464 -0.773231 Vertex 8318 2.64698 22.5005 0.431061 Vertex 8319 2.64988 17.7392 2.28414 Vertex 8320 2.65053 -15.6171 -6.12914 Vertex 8321 2.65199 21.9563 -1.53875 Vertex 8322 2.65205 19.4514 2.23165 Vertex 8323 2.65413 16.113 0.08429 Vertex 8324 2.65432 18.9624 2.5848 Vertex 8325 2.65477 -43.2775 -3.30585 Vertex 8326 2.65651 16.0607 0.70878 Vertex 8327 2.65655 16.5953 1.39063 Vertex 8328 2.6567 12.6898 -1.6739 Vertex 8329 2.65729 18.6355 -1.44394 Vertex 8330 2.65897 16.0387 0.396913 Vertex 8331 2.65989 12.249 -1.40043 Vertex 8332 2.66081 16.3772 1.30143 Vertex 8333 2.66312 12.2693 -1.38885 Vertex 8334 2.66419 17.7027 1.84503 Vertex 8335 2.66603 17.8308 -0.813758 Vertex 8336 2.66605 16.2743 1.16199 Vertex 8337 2.66611 21.1841 1.63782 Vertex 8338 2.66683 18.5749 -1.58911 Vertex 8339 2.66725 16.863 -1.50606 Vertex 8340 2.6694 17.3002 1.46435 Vertex 8341 2.66961 17.8125 2.59321 Vertex 8342 2.67173 17.0274 1.39103 Vertex 8343 2.67372 21.1773 -2.35437 Vertex 8344 2.67489 17.2627 -0.626796 Vertex 8345 2.67641 20.2037 2.07797 Vertex 8346 2.67681 17.2972 -2.78714 Vertex 8347 2.67834 20.0194 2.14604 Vertex 8348 2.67835 -27.5289 -4.51545 Vertex 8349 2.67979 16.5852 -2.85734 Vertex 8350 2.67989 22.3098 0.729512 Vertex 8351 2.68127 16.6943 1.32983 Vertex 8352 2.68236 17.6562 -1.28886 Vertex 8353 2.68341 16.9631 -0.427312 Vertex 8354 2.68467 17.788 2.13377 Vertex 8355 2.68995 20.558 1.91187 Vertex 8356 2.69243 18.1647 -1.42782 Vertex 8357 2.69294 19.3791 2.12925 Vertex 8358 2.69395 17.9969 2.95227 Vertex 8359 2.69402 -41.8967 -3.35468 Vertex 8360 2.69464 20.3124 2.04236 Vertex 8361 2.6959 -9.30989 3.83926 Vertex 8362 2.69596 12.4583 -1.76683 Vertex 8363 2.69698 16.4656 1.22508 Vertex 8364 2.69955 12.4786 -1.75525 Vertex 8365 2.69968 -44.4185 -4.63377 Vertex 8366 2.70163 -17.8091 -7.05958 Vertex 8367 2.70176 16.2328 0.895883 Vertex 8368 2.70181 22.1443 0.920609 Vertex 8369 2.70381 21.4671 1.48556 Vertex 8370 2.7064 17.6217 1.51339 Vertex 8371 2.70827 16.7844 1.26877 Vertex 8372 2.71223 18.3557 -1.02766 Vertex 8373 2.71255 18.1963 2.948 Vertex 8374 2.71268 17.5206 -0.577197 Vertex 8375 2.7127 22.4781 -0.66379 Vertex 8376 2.71316 16.6421 -0.284089 Vertex 8377 2.71371 17.9147 2.77667 Vertex 8378 2.7142 17.7331 -0.687887 Vertex 8379 2.71524 21.9483 1.11448 Vertex 8380 2.71565 17.7008 1.58106 Vertex 8381 2.71586 16.3678 1.06798 Vertex 8382 2.71592 17.8876 2.45887 Vertex 8383 2.71676 20.5359 1.93423 Vertex 8384 2.71711 17.5414 1.43631 Vertex 8385 2.72009 18.2127 -0.909629 Vertex 8386 2.72019 21.7218 1.31112 Vertex 8387 2.72041 17.1571 1.31238 Vertex 8388 2.72116 16.3378 -2.06287 Vertex 8389 2.72199 19.252 2.16602 Vertex 8390 2.72247 18.6858 2.74457 Vertex 8391 2.72548 19.6774 2.09807 Vertex 8392 2.72554 17.8414 1.94836 Vertex 8393 2.72574 20.4905 1.96259 Vertex 8394 2.72709 18.5269 -1.1363 Vertex 8395 2.7309 16.5771 1.13944 Vertex 8396 2.7311 18.8928 -1.49371 Vertex 8397 2.73251 16.1979 0.572681 Vertex 8398 2.73302 20.3457 2.03922 Vertex 8399 2.73381 21.3802 -1.73304 Vertex 8400 2.73485 -45.0392 -4.65225 Vertex 8401 2.73573 20.4414 1.99199 Vertex 8402 2.737 18.4241 2.8482 Vertex 8403 2.73749 18.3149 -1.5528 Vertex 8404 2.73754 16.8656 1.20748 Vertex 8405 2.73768 17.7934 1.65255 Vertex 8406 2.7379 18.0749 -0.808631 Vertex 8407 2.73873 17.7384 -1.52057 Vertex 8408 2.73914 20.3971 1.57085 Vertex 8409 2.73938 19.4489 -2.37729 Vertex 8410 2.7422 21.3616 -1.75252 Vertex 8411 2.74307 16.3906 -0.048453 Vertex 8412 2.74323 16.2394 0.266842 Vertex 8413 2.74452 21.4696 -1.69711 Vertex 8414 2.74672 20.3887 2.02243 Vertex 8415 2.74779 17.4599 1.34982 Vertex 8416 2.75031 16.6711 1.11341 Vertex 8417 2.75324 20.2775 1.63233 Vertex 8418 2.75522 20.6419 1.46001 Vertex 8419 2.7557 18.8507 -1.63235 Vertex 8420 2.75593 17.3208 -0.427868 Vertex 8421 2.76095 17.9427 2.28338 Vertex 8422 2.76173 20.0234 1.81152 Vertex 8423 2.76201 18.7263 -1.23555 Vertex 8424 2.7638 -33.5113 -2.17558 Vertex 8425 2.76467 17.9424 -0.72466 Vertex 8426 2.76499 19.5354 1.99348 Vertex 8427 2.76643 17.0099 -0.310019 Vertex 8428 2.76852 -41.0338 -4.38157 Vertex 8429 2.76887 19.8307 1.93024 Vertex 8430 2.77175 16.4909 0.936403 Vertex 8431 2.77248 16.3645 0.747485 Vertex 8432 2.77251 17.8993 1.72788 Vertex 8433 2.77396 17.6869 -0.55574 Vertex 8434 2.77863 20.1321 1.7505 Vertex 8435 2.77913 18.1172 2.79736 Vertex 8436 2.78025 18.0143 2.63432 Vertex 8437 2.78039 16.7454 1.0508 Vertex 8438 2.78154 -29.3563 -1.49686 Vertex 8439 2.7819 16.9796 1.12726 Vertex 8440 2.78392 17.5367 -0.432151 Vertex 8441 2.78629 16.9452 -1.73777 Vertex 8442 2.7892 17.3216 1.21375 Vertex 8443 2.79063 18.5446 -1.67106 Vertex 8444 2.79286 17.8788 1.41661 Vertex 8445 2.79293 17.7899 1.33769 Vertex 8446 2.79435 21.3514 -1.81252 Vertex 8447 2.79475 -29.3108 -1.68521 Vertex 8448 2.79752 20.2832 1.64445 Vertex 8449 2.80053 20.9108 1.30767 Vertex 8450 2.80068 17.9937 2.06872 Vertex 8451 2.8008 16.5907 0.887409 Vertex 8452 2.80105 17.9575 1.4797 Vertex 8453 2.80256 22.0221 -1.18027 Vertex 8454 2.80279 17.7194 1.27138 Vertex 8455 2.80371 17.838 -0.642591 Vertex 8456 2.8045 18.9527 -1.30293 Vertex 8457 2.80462 16.5428 -2.25228 Vertex 8458 2.80545 16.7116 -0.133838 Vertex 8459 2.80613 18.2836 -2.08769 Vertex 8460 2.80614 20.1499 1.41599 Vertex 8461 2.80652 17.6656 -0.467027 Vertex 8462 2.80662 20.3718 1.26508 Vertex 8463 2.80953 20.3103 1.68519 Vertex 8464 2.8102 18.7955 2.43765 Vertex 8465 2.81054 16.3745 0.443334 Vertex 8466 2.81064 19.0486 2.17587 Vertex 8467 2.81309 18.1453 -0.765874 Vertex 8468 2.81522 18.4111 -0.947201 Vertex 8469 2.8154 19.4481 1.88047 Vertex 8470 2.81561 20.272 1.71641 Vertex 8471 2.81621 18.2623 -0.843877 Vertex 8472 2.81656 19.8848 1.61865 Vertex 8473 2.81752 18.0258 1.52695 Vertex 8474 2.81786 -29.8672 -1.54866 Vertex 8475 2.81817 18.312 2.70753 Vertex 8476 2.81956 20.1569 1.7472 Vertex 8477 2.81982 19.6799 1.78915 Vertex 8478 2.81989 17.3652 -0.333941 Vertex 8479 2.82014 20.246 1.73753 Vertex 8480 2.82091 16.4894 0.13968 Vertex 8481 2.82243 17.6671 1.21768 Vertex 8482 2.82483 17.9002 -1.69966 Vertex 8483 2.8265 16.8157 0.950768 Vertex 8484 2.82758 20.0451 1.49478 Vertex 8485 2.82763 20.2066 1.76968 Vertex 8486 2.82835 20.5607 -2.24634 Vertex 8487 2.82946 19.1998 -1.49042 Vertex 8488 2.82958 18.5777 -1.04536 Vertex 8489 2.83367 -3.67281 3.59712 Vertex 8490 2.8351 18.0404 1.81488 Vertex 8491 2.8354 18.0211 -0.699714 Vertex 8492 2.83555 -22.2492 -1.89586 Vertex 8493 2.83605 19.9967 1.53417 Vertex 8494 2.83612 -38.6683 -4.47035 Vertex 8495 2.83644 18.8904 -1.95729 Vertex 8496 2.83813 18.5358 2.57866 Vertex 8497 2.8412 18.0922 2.44638 Vertex 8498 2.84135 17.1266 1.02812 Vertex 8499 2.84189 22.3555 -0.2532 Vertex 8500 2.84241 17.0762 -0.171864 Vertex 8501 2.84273 -37.7533 -4.46973 Vertex 8502 2.84371 17.6322 -0.376616 Vertex 8503 2.84615 19.3647 1.8227 Vertex 8504 2.85007 21.2915 -2.09364 Vertex 8505 2.85357 17.5368 1.09809 Vertex 8506 2.85377 17.7617 -0.562423 Vertex 8507 2.85378 17.7005 -0.41545 Vertex 8508 2.85402 20.6302 1.06894 Vertex 8509 2.8543 18.1951 1.32647 Vertex 8510 2.85456 19.2061 -1.33843 Vertex 8511 2.85461 16.5181 0.613766 Vertex 8512 2.85816 18.7621 -1.13834 Vertex 8513 2.85853 19.7352 1.49645 Vertex 8514 2.85893 18.1249 1.26233 Vertex 8515 2.85914 17.379 -0.163082 Vertex 8516 2.85997 16.6652 0.782911 Vertex 8517 2.86028 18.2153 2.58777 Vertex 8518 2.8604 19.5499 1.69076 Vertex 8519 2.86055 18.2209 1.34557 Vertex 8520 2.86286 16.8475 -2.39809 Vertex 8521 2.86326 20.1835 1.10327 Vertex 8522 2.86337 17.4277 -2.34323 Vertex 8523 2.86428 19.2436 1.84779 Vertex 8524 2.86723 -40.2267 -3.27711 Vertex 8525 2.86927 20.0209 1.23397 Vertex 8526 2.86938 -38.6938 -3.30424 Vertex 8527 2.87095 20.0575 1.50145 Vertex 8528 2.8724 -40.1296 -4.10955 Vertex 8529 2.87352 17.113 -1.92053 Vertex 8530 2.87442 18.0105 1.15317 Vertex 8531 2.87478 -20.013 -7.81698 Vertex 8532 2.87506 21.2038 1.11383 Vertex 8533 2.87586 18.1776 1.57035 Vertex 8534 2.87599 -37.7788 -3.30363 Vertex 8535 2.87683 16.7969 0.046449 Vertex 8536 2.878 18.1417 -1.82615 Vertex 8537 2.87813 19.1844 -1.60966 Vertex 8538 2.87829 20.0154 1.5357 Vertex 8539 2.87832 18.8263 -1.71885 Vertex 8540 2.87891 17.6108 -0.329164 Vertex 8541 2.88017 19.8559 -2.23448 Vertex 8542 2.8819 17.7252 -0.4997 Vertex 8543 2.88249 20.088 1.53948 Vertex 8544 2.88304 19.8678 1.28057 Vertex 8545 2.88456 18.1521 -0.791601 Vertex 8546 2.88472 18.9678 -1.20977 Vertex 8547 2.88589 17.9429 1.08838 Vertex 8548 2.88702 20.0621 1.5606 Vertex 8549 2.8871 18.0062 -0.73466 Vertex 8550 2.88765 19.5745 1.4449 Vertex 8551 2.88822 16.5905 0.32074 Vertex 8552 2.88858 18.3317 1.25285 Vertex 8553 2.8889 -45.027 -3.33704 Vertex 8554 2.88961 18.1596 2.20613 Vertex 8555 2.89022 -44.384 -3.33485 Vertex 8556 2.89028 21.3495 -1.91302 Vertex 8557 2.89039 18.2933 1.38409 Vertex 8558 2.89054 18.325 1.24413 Vertex 8559 2.89057 22.1841 0.068272 Vertex 8560 2.89061 19.4407 1.63507 Vertex 8561 2.89135 18.2708 -0.870027 Vertex 8562 2.89257 16.9581 0.846903 Vertex 8563 2.89288 17.5742 -0.201547 Vertex 8564 2.89333 17.9221 1.06795 Vertex 8565 2.89575 21.5996 -1.39378 Vertex 8566 2.89621 17.3284 0.912612 Vertex 8567 2.89721 18.4231 -0.9742 Vertex 8568 2.89799 -6.42017 3.83833 Vertex 8569 2.89821 18.8684 2.1233 Vertex 8570 2.89853 17.7365 -0.391005 Vertex 8571 2.9001 -41.1353 -2.91926 Vertex 8572 2.90159 18.3581 1.24882 Vertex 8573 2.90332 18.2578 1.17717 Vertex 8574 2.90459 19.7242 1.24308 Vertex 8575 2.90548 18.4062 2.44049 Vertex 8576 2.90788 17.7836 -0.005511 Vertex 8577 2.90819 21.9942 -0.810047 Vertex 8578 2.90896 19.4276 -1.4533 Vertex 8579 2.90928 19.195 -1.25964 Vertex 8580 2.9093 20.4156 0.901536 Vertex 8581 2.90978 18.3474 1.23268 Vertex 8582 2.9099 19.4071 -1.32071 Vertex 8583 2.9128 -45.2821 -4.66994 Vertex 8584 2.91353 17.8028 0.965402 Vertex 8585 2.91364 17.1618 -0.012849 Vertex 8586 2.91452 17.9219 -0.696945 Vertex 8587 2.91551 18.5805 -1.0683 Vertex 8588 2.91747 21.4673 0.904073 Vertex 8589 2.91941 22.0283 0.313151 Vertex 8590 2.92058 18.6233 2.2847 Vertex 8591 2.92227 18.3892 1.36952 Vertex 8592 2.92386 19.4025 1.38373 Vertex 8593 2.92454 18.2971 2.33005 Vertex 8594 2.92514 20.0768 0.974591 Vertex 8595 2.92546 18.2165 1.91355 Vertex 8596 2.92603 18.2775 1.16111 Vertex 8597 2.9269 18.13 1.05199 Vertex 8598 2.92775 21.7013 0.678409 Vertex 8599 2.9284 21.8883 0.481434 Vertex 8600 2.92846 17.7618 -0.470535 Vertex 8601 2.92852 20.0102 1.02479 Vertex 8602 2.92894 17.3663 -2.05436 Vertex 8603 2.93055 19.5285 -1.46277 Vertex 8604 2.93111 19.0523 1.83428 Vertex 8605 2.93158 19.2938 1.58703 Vertex 8606 2.93313 19.5544 1.18924 Vertex 8607 2.93396 19.9478 1.04313 Vertex 8608 2.93403 17.4648 -0.014704 Vertex 8609 2.93479 18.5 1.19609 Vertex 8610 2.93516 18.0614 0.991254 Vertex 8611 2.93611 18.1372 -0.826546 Vertex 8612 2.9365 18.0563 0.987455 Vertex 8613 2.93788 19.3909 -1.27298 Vertex 8614 2.94044 -3.66992 -3.99761 Vertex 8615 2.94044 -2.25192 -3.99758 Vertex 8616 2.94044 -0.833917 -3.99756 Vertex 8617 2.94044 0.584082 -3.99754 Vertex 8618 2.94146 19.8897 1.0296 Vertex 8619 2.94253 17.1629 0.727849 Vertex 8620 2.94554 17.8689 -0.087485 Vertex 8621 2.94572 18.7428 -1.15232 Vertex 8622 2.94649 17.585 0.780746 Vertex 8623 2.94655 16.6937 0.494729 Vertex 8624 2.94745 17.7769 -0.348415 Vertex 8625 2.94759 1.01701 -4.2787 Vertex 8626 2.94818 18.4857 1.17674 Vertex 8627 2.94819 16.8163 0.670118 Vertex 8628 2.94834 20.9252 0.827575 Vertex 8629 2.94843 16.9297 0.215621 Vertex 8630 2.95027 21.1561 -1.27562 Vertex 8631 2.95036 18.1485 1.03412 Vertex 8632 2.95105 18.3322 1.65031 Vertex 8633 2.95137 18.5798 1.26137 Vertex 8634 2.9543 19.2482 -1.95203 Vertex 8635 2.95443 17.7423 -0.237242 Vertex 8636 2.95455 17.9472 0.891605 Vertex 8637 2.95552 17.7758 0.085283 Vertex 8638 2.95614 18.2141 0.004432 Vertex 8639 2.95728 17.8141 -0.625776 Vertex 8640 2.9576 21.2489 -1.24759 Vertex 8641 2.95899 18.0793 0.972486 Vertex 8642 2.95938 19.7494 1.00356 Vertex 8643 2.95985 18.0827 0.010697 Vertex 8644 2.96136 19.9968 0.91781 Vertex 8645 2.96526 20.0148 0.904617 Vertex 8646 2.96542 21.1309 -1.27932 Vertex 8647 2.96636 20.2669 0.805459 Vertex 8648 2.96713 -43.2615 -3.42964 Vertex 8649 2.96719 19.2192 1.31294 Vertex 8650 2.9678 19.9808 0.913021 Vertex 8651 2.96856 -13.0955 2.71639 Vertex 8652 2.96866 19.3584 1.11906 Vertex 8653 2.96944 18.2493 -0.921801 Vertex 8654 2.97116 17.53 0.075737 Vertex 8655 2.97176 18.9381 -1.21424 Vertex 8656 2.97182 17.2347 0.13361 Vertex 8657 2.97191 18.3628 2.02422 Vertex 8658 2.97334 18.3113 -0.009712 Vertex 8659 2.97344 19.4988 -1.54124 Vertex 8660 2.97361 0.793936 -4.64973 Vertex 8661 2.97448 18.4791 2.14688 Vertex 8662 2.97591 17.7721 -0.554103 Vertex 8663 2.97656 18.4839 1.51494 Vertex 8664 2.97664 17.97 0.876703 Vertex 8665 2.97668 17.4301 0.593601 Vertex 8666 2.97696 21.5814 -1.15145 Vertex 8667 2.97699 18.4035 -1.02469 Vertex 8668 2.97707 18.4478 0.001382 Vertex 8669 2.98115 17.8035 -0.418505 Vertex 8670 2.98155 18.5873 0.011305 Vertex 8671 2.98175 -9.33591 3.68109 Vertex 8672 2.98227 17.7247 0.707429 Vertex 8673 2.98276 18.8383 1.13909 Vertex 8674 2.98329 19.1091 1.54664 Vertex 8675 2.98351 19.8535 0.898968 Vertex 8676 2.98362 19.9973 0.893347 Vertex 8677 2.9844 21.931 -0.487595 Vertex 8678 2.98469 18.7115 2.00828 Vertex 8679 2.98542 -33.7225 -5.77918 Vertex 8680 2.9865 18.9046 1.80149 Vertex 8681 2.9868 18.7299 0.020054 Vertex 8682 2.98773 19.5267 0.965002 Vertex 8683 2.98818 18.7575 1.09467 Vertex 8684 2.98949 18.9824 1.20956 Vertex 8685 2.99044 -17.7994 2.44164 Vertex 8686 2.99104 18.9422 0.066092 Vertex 8687 2.99259 20.871 -1.91213 Vertex 8688 2.99268 19.078 0.087345 Vertex 8689 2.99361 19.1663 -1.25406 Vertex 8690 2.99451 -2.25204 3.6113 Vertex 8691 2.99451 -0.834039 3.61132 Vertex 8692 2.99451 0.583959 3.61134 Vertex 8693 2.99488 19.1793 1.06327 Vertex 8694 2.99623 19.8111 -1.35861 Vertex 8695 2.99782 16.9895 0.350843 Vertex 8696 2.99791 18.7249 1.37258 Vertex 8697 2.99812 17.5966 0.164886 Vertex 8698 2.99821 17.0405 0.543803 Vertex 8699 2.99963 18.2308 0.052713 Vertex 8700 2.99979 19.0831 1.31216 Vertex 8701 3.00037 19.6402 -1.2806 Vertex 8702 3.00049 18.3462 0.069096 Vertex 8703 3.00049 -34.093 -5.66988 Vertex 8704 3.00055 19.16 -1.69615 Vertex 8705 3.00058 19.2617 0.093597 Vertex 8706 3.00104 18.5588 -1.11732 Vertex 8707 3.00157 17.3486 0.191148 Vertex 8708 3.00225 17.4969 0.154635 Vertex 8709 3.00225 17.8235 -0.304463 Vertex 8710 3.00247 19.0344 1.29032 Vertex 8711 3.0031 18.1124 0.056089 Vertex 8712 3.00318 18.9928 0.11938 Vertex 8713 3.00356 17.7473 0.692657 Vertex 8714 3.00429 17.5752 0.5202 Vertex 8715 3.00506 1.47742 -4.84007 Vertex 8716 3.00528 18.8593 0.121307 Vertex 8717 3.00552 19.1933 0.110452 Vertex 8718 3.00553 19.8668 0.875481 Vertex 8719 3.0057 18.4586 0.105242 Vertex 8720 3.00575 18.7399 1.07631 Vertex 8721 3.00655 20.1836 0.750053 Vertex 8722 3.00682 18.7231 0.122532 Vertex 8723 3.00737 18.4725 1.78906 Vertex 8724 3.00738 20.7174 0.628767 Vertex 8725 3.00747 18.3 1.13096 Vertex 8726 3.00781 18.5842 0.123053 Vertex 8727 3.00829 21.193 0.580934 Vertex 8728 3.00851 19.6151 0.875653 Vertex 8729 3.00904 -3.67196 3.38582 Vertex 8730 3.0095 17.3379 0.403967 Vertex 8731 3.01179 19.0173 1.02186 Vertex 8732 3.0118 17.2795 0.261742 Vertex 8733 3.01229 19.4609 0.094523 Vertex 8734 3.01409 19.3158 0.933712 Vertex 8735 3.01473 19.4933 0.084852 Vertex 8736 3.01503 -41.9203 -3.44988 Vertex 8737 3.01575 12.9848 -4.37449 Vertex 8738 3.01793 21.5752 -0.917749 Vertex 8739 3.01922 18.0857 -0.905655 Vertex 8740 3.01929 -43.2789 -5.5188 Vertex 8741 3.0201 18.9725 1.56106 Vertex 8742 3.02086 19.3628 -1.26237 Vertex 8743 3.02108 18.5796 1.89687 Vertex 8744 3.02196 19.7412 -1.29007 Vertex 8745 3.02245 17.4754 0.204259 Vertex 8746 3.02404 18.9869 -0.692567 Vertex 8747 3.02415 17.4988 0.329922 Vertex 8748 3.02425 19.1102 -0.773111 Vertex 8749 3.02427 17.8818 -0.192219 Vertex 8750 3.02461 17.5984 0.507645 Vertex 8751 3.02461 18.4877 1.14334 Vertex 8752 3.02618 21.2296 -1.07704 Vertex 8753 3.02671 -10.0006 3.60659 Vertex 8754 3.02684 19.6933 0.073783 Vertex 8755 3.02812 17.5017 0.210685 Vertex 8756 3.02835 19.624 -1.23287 Vertex 8757 3.0293 21.1144 -1.31737 Vertex 8758 3.02986 20.1658 0.735316 Vertex 8759 3.03046 18.8005 1.74942 Vertex 8760 3.0305 17.8144 -0.497353 Vertex 8761 3.03079 18.7775 1.47372 Vertex 8762 3.03086 19.0421 -0.79213 Vertex 8763 3.03091 18.6264 1.62458 Vertex 8764 3.03096 18.9274 0.991155 Vertex 8765 3.03101 19.6235 0.851015 Vertex 8766 3.0312 21.8327 -0.212922 Vertex 8767 3.03172 17.4655 0.224608 Vertex 8768 3.03212 18.1733 1.00267 Vertex 8769 3.03307 19.702 0.057723 Vertex 8770 3.03385 21.4336 0.329014 Vertex 8771 3.03429 18.8631 -0.032859 Vertex 8772 3.0352 17.8887 0.110841 Vertex 8773 3.03557 19.3847 0.85618 Vertex 8774 3.03845 17.9734 -0.149976 Vertex 8775 3.03847 19.1167 0.909688 Vertex 8776 3.04006 -17.8602 -7.10841 Vertex 8777 3.04105 18.7151 -1.1997 Vertex 8778 3.04164 19.7939 -1.4271 Vertex 8779 3.04192 21.2211 -0.986897 Vertex 8780 3.04259 17.5233 0.321667 Vertex 8781 3.04279 18.8948 1.54046 Vertex 8782 3.04396 17.9849 -0.85095 Vertex 8783 3.04409 19.965 -1.21092 Vertex 8784 3.04421 17.8417 -0.379054 Vertex 8785 3.04517 17.6561 0.178052 Vertex 8786 3.04523 17.491 0.22268 Vertex 8787 3.04526 18.7078 1.69045 Vertex 8788 3.04546 18.8461 1.51862 Vertex 8789 3.0471 20.0274 -0.009733 Vertex 8790 3.04768 18.998 -0.642656 Vertex 8791 3.04788 19.1213 -0.7232 Vertex 8792 3.04862 21.6112 0.133394 Vertex 8793 3.04918 19.8906 0.048231 Vertex 8794 3.04996 -3.66991 -4.3096 Vertex 8795 3.04996 -2.25192 -4.30958 Vertex 8796 3.0504 18.1979 -0.999199 Vertex 8797 3.05217 20.5803 0.5174 Vertex 8798 3.0524 18.9096 0.971156 Vertex 8799 3.05243 20.264 -1.91928 Vertex 8800 3.0526 21.7261 -0.005925 Vertex 8801 3.05459 18.3524 -1.09866 Vertex 8802 3.05553 18.1252 -0.101187 Vertex 8803 3.0556 19.8879 0.012211 Vertex 8804 3.05629 -15.6303 2.61602 Vertex 8805 3.05645 21.0457 -1.0415 Vertex 8806 3.0573 21.5425 -0.664855 Vertex 8807 3.05761 17.9996 0.846544 Vertex 8808 3.05931 19.3858 0.83067 Vertex 8809 3.05958 21.0361 -1.02313 Vertex 8810 3.05986 -41.9279 -5.5235 Vertex 8811 3.06059 21.1898 -0.784979 Vertex 8812 3.06121 -41.0922 -4.23682 Vertex 8813 3.06315 19.0097 0.885542 Vertex 8814 3.06345 17.8762 -0.259146 Vertex 8815 3.06376 -0.833912 -4.30515 Vertex 8816 3.06376 0.584086 -4.30513 Vertex 8817 3.06448 18.9309 -0.567425 Vertex 8818 3.06468 19.1622 0.84055 Vertex 8819 3.06623 20.1677 -0.058187 Vertex 8820 3.06685 20.9759 0.35294 Vertex 8821 3.06719 19.6061 -1.84885 Vertex 8822 3.06961 20.0594 0.01123 Vertex 8823 3.06995 21.0038 -0.851028 Vertex 8824 3.07138 18.243 -0.139958 Vertex 8825 3.07229 18.8492 -0.487384 Vertex 8826 3.07242 18.4207 -0.178118 Vertex 8827 3.07251 18.9141 -1.25996 Vertex 8828 3.07499 21.0171 -1.0373 Vertex 8829 3.08033 -43.2994 -2.23312 Vertex 8830 3.081 18.5802 -0.193003 Vertex 8831 3.0822 21.1357 -0.471285 Vertex 8832 3.08229 -45.2711 -3.39345 Vertex 8833 3.08295 17.8443 -0.745797 Vertex 8834 3.08322 19.1899 -0.676738 Vertex 8835 3.08347 20.952 -0.514334 Vertex 8836 3.08354 18.7364 1.03979 Vertex 8837 3.08393 17.7788 0.662587 Vertex 8838 3.0842 18.7851 -0.430336 Vertex 8839 3.08522 20.5033 0.454121 Vertex 8840 3.08536 20.9846 -0.863001 Vertex 8841 3.08547 12.6564 -5.16987 Vertex 8842 3.08579 18.7528 -0.547267 Vertex 8843 3.08583 18.8468 -0.624364 Vertex 8844 3.08617 18.5127 -1.19242 Vertex 8845 3.08674 -11.2865 3.18666 Vertex 8846 3.08689 19.8993 -1.17151 Vertex 8847 3.08732 20.9256 -0.334188 Vertex 8848 3.08743 20.1078 -1.00783 Vertex 8849 3.08757 20.9285 -0.342364 Vertex 8850 3.0877 17.8509 -0.530128 Vertex 8851 3.0877 21.1912 0.074053 Vertex 8852 3.08811 20.1998 -0.037223 Vertex 8853 3.08812 18.9949 0.861272 Vertex 8854 3.08879 21.067 -0.258426 Vertex 8855 3.08885 -41.932 -2.26927 Vertex 8856 3.08931 20.9741 -0.086473 Vertex 8857 3.0897 20.0123 -1.25126 Vertex 8858 3.09043 19.1536 0.814444 Vertex 8859 3.09056 19.2278 -0.734232 Vertex 8860 3.09093 17.8689 -0.470985 Vertex 8861 3.09158 19.8624 0.839648 Vertex 8862 3.09159 21.0947 -0.295767 Vertex 8863 3.0918 18.9242 -0.709901 Vertex 8864 3.09316 20.8161 0.22009 Vertex 8865 3.09352 -21.6238 -7.0905 Vertex 8866 3.09498 18.689 -0.493349 Vertex 8867 3.09507 21.4832 -0.392774 Vertex 8868 3.09539 19.1559 -1.29808 Vertex 8869 3.09712 18.7217 -0.184613 Vertex 8870 3.09828 19.487 -1.61777 Vertex 8871 3.09853 20.8571 -0.173755 Vertex 8872 3.09889 20.9321 -0.521924 Vertex 8873 3.09923 19.1249 -0.825664 Vertex 8874 3.10017 17.6022 0.205911 Vertex 8875 3.10019 17.7858 -0.657132 Vertex 8876 3.10022 18.7385 -0.396281 Vertex 8877 3.10209 21.3375 -0.113225 Vertex 8878 3.10291 1.53595 -4.34686 Vertex 8879 3.10299 20.9083 -0.347762 Vertex 8880 3.10355 17.6325 0.486175 Vertex 8881 3.10371 18.9852 -0.803877 Vertex 8882 3.10619 19.0521 -0.842463 Vertex 8883 3.10646 20.2862 -0.155766 Vertex 8884 3.10651 20.4864 0.438927 Vertex 8885 3.10714 18.6763 -0.371277 Vertex 8886 3.10922 17.9522 -0.236016 Vertex 8887 3.11 21.4149 -0.208897 Vertex 8888 3.11023 19.4077 -1.29914 Vertex 8889 3.11047 20.2173 -0.176757 Vertex 8890 3.11209 19.0839 -0.05678 Vertex 8891 3.11282 -44.4287 -5.5505 Vertex 8892 3.1134 18.6554 -0.462611 Vertex 8893 3.11359 20.1466 0.707685 Vertex 8894 3.11535 20.84 -0.18779 Vertex 8895 3.11564 -44.7921 -3.4216 Vertex 8896 3.11588 20.7278 0.146185 Vertex 8897 3.1162 13.1539 -4.59755 Vertex 8898 3.11646 17.5608 0.317309 Vertex 8899 3.11672 18.6252 -0.416603 Vertex 8900 3.11703 19.6697 -1.26314 Vertex 8901 3.11758 17.8763 -0.352182 Vertex 8902 3.11763 20.1539 -1.01373 Vertex 8903 3.11774 20.2068 -0.798657 Vertex 8904 3.11872 19.6142 0.812128 Vertex 8905 3.12112 19.2284 0.004268 Vertex 8906 3.12214 18.584 -0.315212 Vertex 8907 3.12241 18.8407 -0.209509 Vertex 8908 3.12401 18.9868 -0.147434 Vertex 8909 3.12466 20.3187 -0.344397 Vertex 8910 3.12505 19.1965 -0.79037 Vertex 8911 3.12541 19.0865 -0.592487 Vertex 8912 3.12721 -33.5402 -5.6836 Vertex 8913 3.12791 19.2566 -0.573691 Vertex 8914 3.12966 21.0254 -1.58801 Vertex 8915 3.13146 18.9049 0.930968 Vertex 8916 3.13173 18.5329 -0.360538 Vertex 8917 3.13213 20.2523 -0.780897 Vertex 8918 3.13215 19.8485 -1.19474 Vertex 8919 3.13321 20.3074 -0.552774 Vertex 8920 3.13356 18.1969 -1.00503 Vertex 8921 3.13436 19.2965 -0.613106 Vertex 8922 3.13501 20.7112 0.131225 Vertex 8923 3.13502 20.2618 -0.583401 Vertex 8924 3.13682 18.4361 -0.32092 Vertex 8925 3.13713 18.2378 -0.258133 Vertex 8926 3.13713 18.3431 -1.10343 Vertex 8927 3.13932 19.3888 0.038026 Vertex 8928 3.13953 19.0215 -0.512374 Vertex 8929 3.13955 -3.67004 3.90811 Vertex 8930 3.13955 -2.25204 3.90813 Vertex 8931 3.13989 18.0515 -0.235074 Vertex 8932 3.14027 20.2692 -0.363819 Vertex 8933 3.1419 21.1066 -1.38976 Vertex 8934 3.142 18.9441 -0.422569 Vertex 8935 3.14362 18.87 -0.361994 Vertex 8936 3.14368 18.7249 -0.307003 Vertex 8937 3.14415 18.679 -1.2805 Vertex 8938 3.14439 18.7992 -0.330651 Vertex 8939 3.14579 18.05 -0.902461 Vertex 8940 3.14592 19.3769 0.788728 Vertex 8941 3.14764 18.3251 1.08671 Vertex 8942 3.15071 2.4033 -4.8752 Vertex 8943 3.15162 18.2487 0.076774 Vertex 8944 3.15262 18.9729 0.100377 Vertex 8945 3.15284 18.3476 0.096469 Vertex 8946 3.15385 -6.42699 3.65097 Vertex 8947 3.15413 19.1837 0.08859 Vertex 8948 3.15438 20.9696 -0.893038 Vertex 8949 3.15464 18.1562 0.074372 Vertex 8950 3.15481 18.8353 0.108866 Vertex 8951 3.1567 17.8223 -0.689909 Vertex 8952 3.15689 18.9372 -0.267693 Vertex 8953 3.15719 18.7013 0.122821 Vertex 8954 3.15765 13.124 -4.85645 Vertex 8955 3.15831 18.4531 0.133459 Vertex 8956 3.15934 19.4677 0.073503 Vertex 8957 3.15976 18.571 0.142244 Vertex 8958 3.16062 18.1659 -0.277815 Vertex 8959 3.16163 19.1532 -0.564104 Vertex 8960 3.16409 18.5059 1.09587 Vertex 8961 3.16439 20.0504 -1.02667 Vertex 8962 3.16509 -40.188 -3.96481 Vertex 8963 3.16602 5.30195 5.10544 Vertex 8964 3.16616 17.9344 0.125657 Vertex 8965 3.16668 19.5649 0.044491 Vertex 8966 3.16818 19.335 -0.49632 Vertex 8967 3.16834 18.993 0.816863 Vertex 8968 3.16951 18.5009 -1.19777 Vertex 8969 3.16961 20.9171 -0.53953 Vertex 8970 3.17048 17.8945 -0.453336 Vertex 8971 3.1715 19.8073 -1.48368 Vertex 8972 3.17175 17.9411 -0.343169 Vertex 8973 3.1722 18.2046 0.957628 Vertex 8974 3.17251 19.7092 0.055891 Vertex 8975 3.17306 17.9025 -0.795744 Vertex 8976 3.17316 19.1503 0.769449 Vertex 8977 3.17509 19.9639 -1.64774 Vertex 8978 3.17597 18.5818 -0.551032 Vertex 8979 3.17651 -17.7867 -7.41635 Vertex 8980 3.1782 20.2835 -0.476055 Vertex 8981 3.17839 19.3697 -0.55714 Vertex 8982 3.18204 18.5206 -0.488304 Vertex 8983 3.18252 18.6549 -0.602216 Vertex 8984 3.18394 18.5499 -0.529639 Vertex 8985 3.18438 -45.0273 -5.58524 Vertex 8986 3.18476 20.4668 0.416238 Vertex 8987 3.18535 2.45959 -4.41563 Vertex 8988 3.18671 20.5523 -1.59655 Vertex 8989 3.18696 18.896 -1.34692 Vertex 8990 3.18714 18.4237 -0.448687 Vertex 8991 3.18787 19.0612 -0.199863 Vertex 8992 3.18801 20.8248 -0.204453 Vertex 8993 3.19121 19.7353 0.007712 Vertex 8994 3.19313 18.998 -0.291927 Vertex 8995 3.19365 19.9083 0.03575 Vertex 8996 3.19744 18.0359 0.80113 Vertex 8997 3.19797 -35.0239 -1.79187 Vertex 8998 3.19798 19.4625 -0.504596 Vertex 8999 3.20162 19.0982 -0.458968 Vertex 9000 3.20227 -44.3414 -3.45309 Vertex 9001 3.20317 19.025 -0.361331 Vertex 9002 3.20359 18.7692 -0.683192 Vertex 9003 3.20389 17.9181 -0.685209 Vertex 9004 3.20399 20.0291 -0.111514 Vertex 9005 3.20401 19.4249 -0.444627 Vertex 9006 3.20594 19.1567 -0.136562 Vertex 9007 3.20731 19.5357 -0.473559 Vertex 9008 3.20738 18.0362 -0.352014 Vertex 9009 3.20785 17.9361 -0.626065 Vertex 9010 3.20806 -0.834043 3.86842 Vertex 9011 3.20806 0.583956 3.86844 Vertex 9012 3.20811 19.216 -0.497212 Vertex 9013 3.20906 17.7053 0.200731 Vertex 9014 3.20936 17.934 -0.452032 Vertex 9015 3.20956 20.6929 0.112191 Vertex 9016 3.21064 18.3519 -0.468369 Vertex 9017 3.21285 20.078 0.001454 Vertex 9018 3.21291 19.9002 -0.072314 Vertex 9019 3.21461 19.1638 -1.3917 Vertex 9020 3.21729 -41.1654 -3.02543 Vertex 9021 3.22026 18.2461 -0.939277 Vertex 9022 3.22145 18.1171 -0.85148 Vertex 9023 3.22156 18.7472 0.985109 Vertex 9024 3.22195 18.3658 0.835335 Vertex 9025 3.22244 -19.9758 -7.85713 Vertex 9026 3.22269 6.2201 5.13146 Vertex 9027 3.22338 17.8191 0.617218 Vertex 9028 3.22348 18.5006 -0.627535 Vertex 9029 3.22373 20.0411 -1.29254 Vertex 9030 3.22407 -41.3635 -1.97742 Vertex 9031 3.22462 18.3757 -1.03901 Vertex 9032 3.22517 18.8626 -0.765079 Vertex 9033 3.2257 19.3037 -0.060854 Vertex 9034 3.22673 20.0038 -1.07902 Vertex 9035 3.22837 18.4427 -0.629277 Vertex 9036 3.22858 20.1523 -0.853471 Vertex 9037 3.22975 17.9887 -0.775618 Vertex 9038 3.2301 20.2183 -0.046999 Vertex 9039 3.23032 18.6704 -1.28805 Vertex 9040 3.2304 18.4222 0.376823 Vertex 9041 3.23082 18.1486 -0.399648 Vertex 9042 3.23115 19.4294 -1.38958 Vertex 9043 3.23233 18.3163 0.316394 Vertex 9044 3.23244 18.5834 -0.667633 Vertex 9045 3.23318 -20.0215 1.78738 Vertex 9046 3.23413 18.3686 -0.582123 Vertex 9047 3.23431 18.5274 0.842066 Vertex 9048 3.23526 18.5521 0.381914 Vertex 9049 3.23554 18.5382 -0.743518 Vertex 9050 3.23592 12.9219 -5.0927 Vertex 9051 3.2365 19.6273 -0.492515 Vertex 9052 3.23657 19.6928 -1.34058 Vertex 9053 3.23752 18.4455 -0.722854 Vertex 9054 3.23756 18.2067 0.261209 Vertex 9055 3.23792 18.517 -0.866352 Vertex 9056 3.23886 19.5187 -0.424634 Vertex 9057 3.23893 18.2522 0.72887 Vertex 9058 3.24078 18.6121 -0.823511 Vertex 9059 3.2411 17.6776 0.455791 Vertex 9060 3.24146 18.46 -0.787334 Vertex 9061 3.24165 19.8402 0.791473 Vertex 9062 3.24321 18.5113 -0.918858 Vertex 9063 3.24608 18.0934 0.211268 Vertex 9064 3.24656 -21.4863 0.859684 Vertex 9065 3.24669 18.3338 -0.761522 Vertex 9066 3.24672 17.9756 -0.624762 Vertex 9067 3.24686 19.0948 -0.870731 Vertex 9068 3.24692 18.7059 0.331665 Vertex 9069 3.24715 18.027 -0.46577 Vertex 9070 3.24729 18.9352 -0.847878 Vertex 9071 3.2475 19.067 -0.231317 Vertex 9072 3.24785 20.3084 -0.163413 Vertex 9073 3.25061 17.6113 0.31685 Vertex 9074 3.25073 19.1611 -0.407207 Vertex 9075 3.25101 19.8722 -1.26568 Vertex 9076 3.25106 18.5234 -1.13337 Vertex 9077 3.25132 18.7033 -0.94206 Vertex 9078 3.25136 19.289 -0.439375 Vertex 9079 3.2521 19.3208 -0.677197 Vertex 9080 3.25217 19.4519 -0.01768 Vertex 9081 3.25221 -27.8381 -1.14416 Vertex 9082 3.25243 18.7192 -0.890591 Vertex 9083 3.25278 18.3215 -0.844462 Vertex 9084 3.25322 -34.289 -3.32258 Vertex 9085 3.25432 18.1654 -0.513402 Vertex 9086 3.25452 19.0126 -0.883095 Vertex 9087 3.2546 18.2329 -0.732831 Vertex 9088 3.25498 20.1885 -1.04436 Vertex 9089 3.25524 18.6909 -0.749573 Vertex 9090 3.25578 19.092 -0.303671 Vertex 9091 3.256 -45.027 -2.26575 Vertex 9092 3.25607 20.2211 -1.40764 Vertex 9093 3.2563 18.8468 0.287083 Vertex 9094 3.25732 -3.67004 3.46626 Vertex 9095 3.25733 -44.3833 -2.26356 Vertex 9096 3.25743 18.1049 0.606018 Vertex 9097 3.25776 20.1259 0.66716 Vertex 9098 3.25808 18.3157 -0.896969 Vertex 9099 3.25914 17.9817 0.180115 Vertex 9100 3.25914 18.0291 -0.702485 Vertex 9101 3.25985 20.1018 -0.226386 Vertex 9102 3.2603 18.0805 -0.543494 Vertex 9103 3.26057 18.148 -0.76292 Vertex 9104 3.26264 18.4369 -0.997359 Vertex 9105 3.26315 18.6391 -0.98018 Vertex 9106 3.2634 18.9747 0.248166 Vertex 9107 3.26492 19.6565 -0.536927 Vertex 9108 3.26608 20.3483 -0.347785 Vertex 9109 3.26634 18.8642 -0.988546 Vertex 9110 3.26702 19.1725 0.226651 Vertex 9111 3.26718 19.4405 0.222538 Vertex 9112 3.26813 18.9132 0.870588 Vertex 9113 3.26852 19.5575 -0.540063 Vertex 9114 3.27049 18.8595 -0.944758 Vertex 9115 3.27103 19.6813 0.218313 Vertex 9116 3.27163 19.5872 0.758989 Vertex 9117 3.27175 20.2887 -0.800189 Vertex 9118 3.27233 19.1711 -0.837656 Vertex 9119 3.27259 19.1606 -0.173256 Vertex 9120 3.2727 19.6163 -0.436342 Vertex 9121 3.27332 19.4848 -0.570497 Vertex 9122 3.27405 20.3417 -0.560044 Vertex 9123 3.27528 -27.7529 -1.31757 Vertex 9124 3.27573 18.8938 -1.35787 Vertex 9125 3.27602 18.737 0.749067 Vertex 9126 3.27702 20.959 -0.941135 Vertex 9127 3.27743 17.924 0.466778 Vertex 9128 3.27859 19.8951 0.213979 Vertex 9129 3.27872 18.7942 -0.825307 Vertex 9130 3.27945 20.2049 -0.651923 Vertex 9131 3.28152 -40.8857 -5.35049 Vertex 9132 3.28199 19.3934 -0.621834 Vertex 9133 3.28227 18.5694 -1.06084 Vertex 9134 3.28301 20.7208 -1.26632 Vertex 9135 3.28534 19.6015 -0.007041 Vertex 9136 3.28659 19.2894 -0.733335 Vertex 9137 3.29058 -9.97451 -6.16875 Vertex 9138 3.29085 19.0065 -1.01382 Vertex 9139 3.29141 19.3723 -0.390593 Vertex 9140 3.29163 19.6771 -0.597263 Vertex 9141 3.29215 -9.32543 3.74982 Vertex 9142 3.29243 19.0163 -0.9721 Vertex 9143 3.29278 19.5869 -0.580943 Vertex 9144 3.29305 -28.3492 -1.17067 Vertex 9145 3.29496 18.8487 -1.02179 Vertex 9146 3.29538 19.358 0.730354 Vertex 9147 3.29566 20.9068 -0.567151 Vertex 9148 3.29581 20.0943 0.159149 Vertex 9149 3.2962 19.2402 -0.356078 Vertex 9150 3.29622 17.7784 0.390975 Vertex 9151 3.29958 18.6893 -1.22236 Vertex 9152 3.30051 19.5509 -0.850304 Vertex 9153 3.30268 19.1884 -0.246428 Vertex 9154 3.30288 18.8933 -0.894838 Vertex 9155 3.30368 19.6885 -0.656154 Vertex 9156 3.30381 19.0042 0.752311 Vertex 9157 3.30399 19.8511 0.582915 Vertex 9158 3.30403 17.7149 0.266997 Vertex 9159 3.30563 19.4598 -0.898085 Vertex 9160 3.30575 19.1711 -1.40725 Vertex 9161 3.30642 19.3036 -0.108023 Vertex 9162 3.30647 18.7891 -1.06206 Vertex 9163 3.30729 19.6107 -0.8046 Vertex 9164 3.30747 19.6573 -0.759032 Vertex 9165 3.30904 -45.0363 -3.47801 Vertex 9166 3.30975 18.8939 0.655959 Vertex 9167 3.31011 20.3775 -1.12855 Vertex 9168 3.31047 -45.271 -5.4912 Vertex 9169 3.31117 19.6079 -0.634217 Vertex 9170 3.31172 19.7136 -0.509505 Vertex 9171 3.3129 19.1524 0.705567 Vertex 9172 3.31291 20.1997 -0.406052 Vertex 9173 3.31542 19.6863 -0.449782 Vertex 9174 3.31571 4.52821 4.72588 Vertex 9175 3.31649 20.8115 -0.223744 Vertex 9176 3.31699 19.7504 -0.049569 Vertex 9177 3.31734 19.51 -0.62784 Vertex 9178 3.31824 19.1896 -0.972614 Vertex 9179 3.3185 20.1085 0.484315 Vertex 9180 3.31907 19.6195 -0.689574 Vertex 9181 3.31995 20.4445 0.386052 Vertex 9182 3.32008 -35.0194 -5.7129 Vertex 9183 3.32032 19.189 -1.02231 Vertex 9184 3.3224 19.6096 0.561051 Vertex 9185 3.32264 19.3375 -0.947944 Vertex 9186 3.32271 20.279 0.053825 Vertex 9187 3.32297 19.4885 -0.958001 Vertex 9188 3.32357 18.9938 -1.0527 Vertex 9189 3.32496 18.7289 -1.14703 Vertex 9190 3.32598 19.5884 -0.908457 Vertex 9191 3.3267 19.5716 -0.735543 Vertex 9192 3.32775 19.4336 -1.40529 Vertex 9193 3.32832 19.0231 -0.92752 Vertex 9194 3.33005 19.538 -0.676623 Vertex 9195 3.33037 7.39789 4.98044 Vertex 9196 3.33103 19.3496 -1.0037 Vertex 9197 3.33105 19.1166 -0.892787 Vertex 9198 3.33195 20.0045 -1.05971 Vertex 9199 3.33259 19.7311 -0.580576 Vertex 9200 3.33302 19.4688 -0.364806 Vertex 9201 3.33314 19.185 -0.854631 Vertex 9202 3.3355 18.998 0.562747 Vertex 9203 3.33556 19.5091 -0.782048 Vertex 9204 3.3358 19.3792 0.541624 Vertex 9205 3.33765 20.0603 -0.292809 Vertex 9206 3.33803 19.3354 -0.305583 Vertex 9207 3.33861 19.426 -0.677616 Vertex 9208 3.33883 18.9074 -1.29281 Vertex 9209 3.33906 19.0298 -0.902933 Vertex 9210 3.33912 19.4511 -0.073519 Vertex 9211 3.33915 20.792 -0.926346 Vertex 9212 3.33944 20.2253 -0.55143 Vertex 9213 3.33952 20.673 0.089084 Vertex 9214 3.34003 20.4054 -0.106043 Vertex 9215 3.34006 19.6494 -0.855067 Vertex 9216 3.34076 20.4686 -0.848672 Vertex 9217 3.34174 19.6814 -1.352 Vertex 9218 3.34314 19.8717 -1.23681 Vertex 9219 3.34387 19.3142 -0.1896 Vertex 9220 3.34404 19.7249 -0.669176 Vertex 9221 3.34418 19.1598 0.524635 Vertex 9222 3.34608 19.6949 -0.775307 Vertex 9223 3.34708 19.4244 -0.834293 Vertex 9224 3.34714 19.8988 -0.145266 Vertex 9225 3.3474 19.3034 -0.75031 Vertex 9226 3.34754 18.9691 -1.11917 Vertex 9227 3.34778 20.4735 -0.320456 Vertex 9228 3.34802 20.4945 -0.568 Vertex 9229 3.34826 19.4675 -0.724485 Vertex 9230 3.35137 20.0952 -0.875498 Vertex 9231 3.3531 0.63495 4.33226 Vertex 9232 3.35486 19.3589 -0.73084 Vertex 9233 3.35501 19.1837 -0.923355 Vertex 9234 3.35512 20.7659 -0.576641 Vertex 9235 3.35671 10.0236 3.24507 Vertex 9236 3.35745 -38.6949 -1.99616 Vertex 9237 3.35924 -37.8189 -1.99606 Vertex 9238 3.36062 13.1817 -4.29178 Vertex 9239 3.36124 19.1818 -1.07244 Vertex 9240 3.36127 19.3175 -0.89228 Vertex 9241 3.36247 20.2371 -0.514588 Vertex 9242 3.36276 18.9325 -1.21324 Vertex 9243 3.36298 19.4072 -0.77675 Vertex 9244 3.36424 4.69447 4.91997 Vertex 9245 3.36593 20.3819 0.265248 Vertex 9246 3.3662 19.184 -0.896428 Vertex 9247 3.3669 -40.3129 -1.97798 Vertex 9248 3.36829 19.2524 -0.858272 Vertex 9249 3.36882 19.1776 -1.34473 Vertex 9250 3.36948 -7.48904 -5.39941 Vertex 9251 3.36974 20.6943 -0.262411 Vertex 9252 3.3707 19.6031 -0.069744 Vertex 9253 3.37404 13.2127 -4.47829 Vertex 9254 3.37575 19.3079 -0.838801 Vertex 9255 3.37617 19.5784 -0.362015 Vertex 9256 3.37826 20.0217 -0.291958 Vertex 9257 3.3793 20.1695 -0.505619 Vertex 9258 3.38073 19.4455 -0.276528 Vertex 9259 3.38198 19.449 -0.159801 Vertex 9260 3.38231 3.46415 -4.7463 Vertex 9261 3.38301 20.5772 0.01634 Vertex 9262 3.38636 19.1789 -1.15149 Vertex 9263 3.38642 19.354 -1.05955 Vertex 9264 3.38825 -19.9735 -8.16416 Vertex 9265 3.39269 -43.2833 -2.35691 Vertex 9266 3.39569 19.1802 -1.25948 Vertex 9267 3.39909 19.5103 -1.01404 Vertex 9268 3.39963 3.4923 -4.51652 Vertex 9269 3.40005 19.4204 -1.34626 Vertex 9270 3.40139 20.1436 -0.684157 Vertex 9271 3.40174 -41.9441 -2.39168 Vertex 9272 3.40234 20.1812 -0.468777 Vertex 9273 3.40917 0.827907 -4.44123 Vertex 9274 3.41036 20.1192 -0.489645 Vertex 9275 3.41043 19.7473 -0.114119 Vertex 9276 3.41196 19.6215 -0.956503 Vertex 9277 3.41337 -34.3175 -4.1362 Vertex 9278 3.41702 19.5928 -0.157033 Vertex 9279 3.41963 19.3706 -1.14479 Vertex 9280 3.42355 19.6544 -0.368205 Vertex 9281 3.42428 19.5706 -0.268911 Vertex 9282 3.42503 19.6876 -0.886943 Vertex 9283 3.42505 -39.9594 -5.26247 Vertex 9284 3.43067 19.3994 -1.25943 Vertex 9285 3.43229 19.7344 -0.795844 Vertex 9286 3.43252 19.6357 -1.2974 Vertex 9287 3.43317 19.7583 -0.498676 Vertex 9288 3.43376 19.762 -0.68321 Vertex 9289 3.43405 19.77 -0.584154 Vertex 9290 3.44417 -21.5941 -7.10822 Vertex 9291 3.44686 19.7339 -0.431751 Vertex 9292 3.44734 19.5442 -1.09907 Vertex 9293 3.45335 10.0753 2.95122 Vertex 9294 3.45601 3.40753 4.78684 Vertex 9295 3.45625 19.8111 -1.19399 Vertex 9296 3.4566 -27.5189 -0.950573 Vertex 9297 3.45685 -12.2219 -6.38517 Vertex 9298 3.4583 19.8838 -0.206647 Vertex 9299 3.45873 19.7236 -0.197696 Vertex 9300 3.46189 19.6792 -0.300301 Vertex 9301 3.46772 19.59 -1.21309 Vertex 9302 3.46918 1.49115 -4.4775 Vertex 9303 3.46941 19.6737 -1.02854 Vertex 9304 3.4695 -6.42517 3.66297 Vertex 9305 3.47124 19.9464 -1.03603 Vertex 9306 3.4737 -38.6912 -5.27822 Vertex 9307 3.47549 -37.8152 -5.27795 Vertex 9308 3.48275 -44.7921 -2.35031 Vertex 9309 3.48418 -25.5847 -0.732716 Vertex 9310 3.48585 19.7593 -0.933209 Vertex 9311 3.4861 20.0354 -0.86474 Vertex 9312 3.48872 19.9889 -0.336631 Vertex 9313 3.49287 -45.271 -2.27047 Vertex 9314 3.49356 19.7715 -0.370696 Vertex 9315 3.49492 19.817 -0.819425 Vertex 9316 3.4966 19.8468 -0.68719 Vertex 9317 3.49668 -33.7243 -6.11202 Vertex 9318 3.49834 19.7451 -1.12457 Vertex 9319 3.49891 -34.0953 -5.99427 Vertex 9320 3.50044 19.8507 -0.567278 Vertex 9321 3.50083 20.0782 -0.680108 Vertex 9322 3.50171 20.0627 -0.504071 Vertex 9323 3.50641 19.8286 -0.459689 Vertex 9324 3.50711 19.8414 -0.28179 Vertex 9325 3.52162 1.25598 4.70198 Vertex 9326 3.52254 19.8646 -0.993864 Vertex 9327 3.52384 -25.9814 -0.749304 Vertex 9328 3.53144 19.9245 -0.392541 Vertex 9329 3.53173 19.9732 -0.529949 Vertex 9330 3.53257 19.9792 -0.681118 Vertex 9331 3.53395 19.9427 -0.846049 Vertex 9332 3.53528 10.2807 3.43794 Vertex 9333 3.54125 -41.3936 -2.08358 Vertex 9334 3.54276 -24.2452 -0.55738 Vertex 9335 3.5623 -27.495 -1.18471 Vertex 9336 3.56584 -34.2877 -2.43025 Vertex 9337 3.56937 -44.3406 -2.3818 Vertex 9338 3.57421 -40.9441 -5.20574 Vertex 9339 3.57885 13.295 -4.76504 Vertex 9340 3.59208 -33.5417 -5.98628 Vertex 9341 3.59248 -21.6048 -7.39691 Vertex 9342 3.59631 2.28685 4.8478 Vertex 9343 3.60217 -40.4421 -2.18242 Vertex 9344 3.60737 -23.8486 -0.474778 Vertex 9345 3.6139 4.525 -4.61741 Vertex 9346 3.61447 -40.8957 -1.41745 Vertex 9347 3.61548 3.46973 -4.56373 Vertex 9348 3.61705 2.41446 -4.51005 Vertex 9349 3.62736 -22.3367 -6.70651 Vertex 9350 3.63231 -25.8941 -0.975157 Vertex 9351 3.6441 -25.6244 -0.939852 Vertex 9352 3.6505 8.03122 -5.81563 Vertex 9353 3.67097 5.38223 -4.87526 Vertex 9354 3.67398 -22.299 -6.45561 Vertex 9355 3.67462 -22.311 -0.27351 Vertex 9356 3.68882 4.7136 -4.75333 Vertex 9357 3.70323 10.189 3.55257 Vertex 9358 3.70822 -24.1585 -0.747953 Vertex 9359 3.71774 -40.0178 -5.11773 Vertex 9360 3.71962 -45.0361 -2.35503 Vertex 9361 3.72002 -23.8888 -0.712648 Vertex 9362 3.75965 -23.8831 -6.40122 Vertex 9363 3.76544 -13.7685 -6.78005 Vertex 9364 3.77203 -30.3158 -1.16317 Vertex 9365 3.78988 -24.2794 -6.35547 Vertex 9366 3.79003 -22.2879 -0.503097 Vertex 9367 3.8108 -23.9087 -6.14291 Vertex 9368 3.81164 4.70619 -4.6926 Vertex 9369 3.82627 -26.904 -0.758538 Vertex 9370 3.8273 -32.2118 -1.24345 Vertex 9371 3.83012 -24.1785 -6.11155 Vertex 9372 3.83353 -33.539 -6.08826 Vertex 9373 3.83364 13.0827 -4.93915 Vertex 9374 3.84228 9.94833 3.54526 Vertex 9375 3.84438 9.77242 3.41274 Vertex 9376 3.84974 -41.0249 -1.62188 Vertex 9377 3.85659 -26.8085 -0.961159 Vertex 9378 3.86232 -32.2322 -6.74542 Vertex 9379 3.8664 -39.9511 -1.29076 Vertex 9380 3.87485 -27.3481 -0.748987 Vertex 9381 3.88568 -25.6172 -6.19991 Vertex 9382 3.90467 -3.66993 -3.61716 Vertex 9383 3.90599 -33.5211 -1.25683 Vertex 9384 3.91627 -26.0134 -6.15422 Vertex 9385 3.93069 -35.0198 -1.15539 Vertex 9386 3.93498 -25.6428 -5.94127 Vertex 9387 3.95429 -25.9126 -5.9099 Vertex 9388 3.95864 -38.6917 -1.41269 Vertex 9389 3.96043 -37.8157 -1.41258 Vertex 9390 3.96221 -42.0763 -0.571919 Vertex 9391 3.96711 12.9869 -4.95245 Vertex 9392 3.99554 -30.3357 -6.55192 Vertex 9393 4.02625 -27.5494 -5.97562 Vertex 9394 4.06881 -27.5118 -5.72395 Vertex 9395 4.09808 -43.3268 -0.650871 Vertex 9396 4.10167 -40.0803 -1.4952 Vertex 9397 4.10425 -40.5012 -0.68469 Vertex 9398 4.10725 -3.71535 -3.40232 Vertex 9399 4.12434 10.3749 -5.79659 Vertex 9400 4.18597 -2.25193 -3.50615 Vertex 9401 4.18597 -0.833929 -3.50613 Vertex 9402 4.18597 0.584069 -3.50611 Vertex 9403 4.24468 -34.3057 -4.9717 Vertex 9404 4.28453 -43.2549 -6.22179 Vertex 9405 4.29247 -34.2941 -1.83348 Vertex 9406 4.30907 11.8225 2.11012 Vertex 9407 4.33316 -41.9992 -6.18445 Vertex 9408 4.33952 -40.6304 -0.889129 Vertex 9409 4.33972 14.0406 -3.75157 Vertex 9410 4.34243 -3.67003 2.86751 Vertex 9411 4.35581 -3.66993 -3.79357 Vertex 9412 4.35581 -2.25193 -3.79355 Vertex 9413 4.37255 -44.3802 -6.14642 Vertex 9414 4.38725 -0.833926 -3.77448 Vertex 9415 4.38725 0.584073 -3.77446 Vertex 9416 4.40082 -42.2893 0.277072 Vertex 9417 4.40451 -40.9968 -5.67094 Vertex 9418 4.41288 -3.66993 -3.30975 Vertex 9419 4.43305 -34.0951 -6.17119 Vertex 9420 4.43405 -3.68358 2.52432 Vertex 9421 4.44005 -41.2177 0.152154 Vertex 9422 4.44197 -40.9603 -5.99738 Vertex 9423 4.4437 -45.2711 -5.97899 Vertex 9424 4.44434 -45.027 -0.723774 Vertex 9425 4.44992 -44.4206 -0.710606 Vertex 9426 4.467 -45.0273 -6.14099 Vertex 9427 4.46877 12.058 2.31527 Vertex 9428 4.47985 -43.2609 0.242264 Vertex 9429 4.50055 14.3583 -3.76364 Vertex 9430 4.50814 -40.1085 -5.58813 Vertex 9431 4.51694 -45.027 2.12598 Vertex 9432 4.53096 -44.2737 2.12728 Vertex 9433 4.53481 -33.5226 -6.19712 Vertex 9434 4.5456 -40.072 -5.91457 Vertex 9435 4.54862 -33.7304 -6.32419 Vertex 9436 4.57663 -6.32902 3.04433 Vertex 9437 4.58172 -43.1962 2.11899 Vertex 9438 4.58375 -38.6912 -5.88253 Vertex 9439 4.58554 -37.8152 -5.88243 Vertex 9440 4.60536 -2.25202 2.72245 Vertex 9441 4.60536 -0.834022 2.72247 Vertex 9442 4.60536 0.583976 2.72249 Vertex 9443 4.6084 -26.5058 -0.367619 Vertex 9444 4.62089 -45.271 -0.75666 Vertex 9445 4.62103 14.3687 -3.97251 Vertex 9446 4.63256 11.9667 2.40584 Vertex 9447 4.63903 -40.0876 -1.3413 Vertex 9448 4.64987 -26.399 -0.576924 Vertex 9449 4.65329 -41.4931 0.595577 Vertex 9450 4.6581 -45.0271 1.4287 Vertex 9451 4.66416 -35.0191 -6.12998 Vertex 9452 4.66635 -26.8989 -0.309795 Vertex 9453 4.67733 2.40024 3.90997 Vertex 9454 4.67837 1.50848 3.71893 Vertex 9455 4.68298 -39.838 -1.11674 Vertex 9456 4.68699 -40.5613 -0.806952 Vertex 9457 4.68918 13.0009 1.20876 Vertex 9458 4.70377 5.38122 -4.37494 Vertex 9459 4.70385 -44.3783 1.44491 Vertex 9460 4.72543 -45.271 1.96986 Vertex 9461 4.72778 -44.9304 1.97401 Vertex 9462 4.73094 -40.3117 -0.582392 Vertex 9463 4.73212 -43.2792 1.476 Vertex 9464 4.74967 3.41923 4.05976 Vertex 9465 4.75184 -6.32716 2.79893 Vertex 9466 4.76249 -3.67002 2.46685 Vertex 9467 4.76989 -45.027 0.088799 Vertex 9468 4.7753 -38.6884 -1.17131 Vertex 9469 4.77709 -37.8124 -1.1712 Vertex 9470 4.7777 0.890581 3.55255 Vertex 9471 4.77786 11.5497 2.19269 Vertex 9472 4.77974 -44.4204 0.112964 Vertex 9473 4.78895 4.49637 -3.69587 Vertex 9474 4.79302 0.586182 -3.85386 Vertex 9475 4.8025 -7.52484 -4.49775 Vertex 9476 4.80725 11.7225 2.32642 Vertex 9477 4.8129 -45.027 2.85613 Vertex 9478 4.81614 -44.9388 2.01289 Vertex 9479 4.81891 -0.834026 2.97957 Vertex 9480 4.81891 0.583972 2.97959 Vertex 9481 4.82201 4.43822 4.20956 Vertex 9482 4.82231 -45.271 1.26514 Vertex 9483 4.82477 -44.2895 2.85553 Vertex 9484 4.8256 -3.67003 2.97433 Vertex 9485 4.8256 -2.25203 2.97435 Vertex 9486 4.83434 -43.2387 2.8515 Vertex 9487 4.83678 3.46058 3.89169 Vertex 9488 4.84001 -44.2711 2.01426 Vertex 9489 4.85129 4.58553 4.42604 Vertex 9490 4.85155 2.48294 3.57381 Vertex 9491 4.8524 1.59846 3.38413 Vertex 9492 4.85666 -43.3244 2.00333 Vertex 9493 4.86296 13.2774 1.37785 Vertex 9494 4.86735 14.194 -4.08115 Vertex 9495 4.88339 -35.0158 -0.892796 Vertex 9496 4.89038 4.48092 -3.52633 Vertex 9497 4.8932 0.896571 3.29041 Vertex 9498 4.90062 12.2646 -5.24404 Vertex 9499 4.92916 -45.271 0.012773 Vertex 9500 4.94121 -42.5676 1.94707 Vertex 9501 4.95323 -11.7906 -5.48958 Vertex 9502 4.96212 -42.5194 1.60902 Vertex 9503 4.98179 -7.53615 -4.24421 Vertex 9504 4.98507 3.41862 3.87127 Vertex 9505 4.98695 13.9792 -4.02141 Vertex 9506 4.98869 -9.67015 -5.00347 Vertex 9507 4.99817 3.2824 -3.74281 Vertex 9508 5.01211 0.729243 3.07933 Vertex 9509 5.02191 5.24898 4.81932 Vertex 9510 5.02319 -13.1969 3.10061 Vertex 9511 5.03182 -45.271 2.82578 Vertex 9512 5.03416 -44.9304 2.82993 Vertex 9513 5.04299 -45.0271 3.62325 Vertex 9514 5.04323 -6.28307 2.68218 Vertex 9515 5.05284 -40.8669 -0.040656 Vertex 9516 5.05968 1.12404 -3.91608 Vertex 9517 5.06023 4.48478 -3.39564 Vertex 9518 5.06304 13.1813 1.4141 Vertex 9519 5.06679 -43.2985 3.65831 Vertex 9520 5.06929 14.0353 0.16341 Vertex 9521 5.07721 -44.3565 3.6494 Vertex 9522 5.08428 3.27382 -3.63027 Vertex 9523 5.10154 -45.2712 -5.67839 Vertex 9524 5.10928 -43.3669 2.73583 Vertex 9525 5.11209 -44.9388 2.74304 Vertex 9526 5.11843 -42.8077 1.82997 Vertex 9527 5.13011 6.17703 4.85359 Vertex 9528 5.13382 -44.2869 2.7425 Vertex 9529 5.14812 2.39902 3.53297 Vertex 9530 5.14865 1.51228 3.34183 Vertex 9531 5.15434 7.39397 4.47908 Vertex 9532 5.16278 4.70925 -3.60492 Vertex 9533 5.16693 -9.67127 -4.76261 Vertex 9534 5.17206 12.7691 1.16771 Vertex 9535 5.17381 -11.3275 3.17279 Vertex 9536 5.18126 9.74168 2.96163 Vertex 9537 5.18213 -15.4691 -6.98895 Vertex 9538 5.19304 -33.9544 -6.04996 Vertex 9539 5.20261 2.03074 -3.85679 Vertex 9540 5.20691 3.27182 -3.51849 Vertex 9541 5.2152 12.9418 1.30627 Vertex 9542 5.2297 -41.3618 -5.40337 Vertex 9543 5.23414 -45.027 -5.79309 Vertex 9544 5.23547 -44.3783 -5.79089 Vertex 9545 5.24866 -33.3726 -6.10603 Vertex 9546 5.25684 -7.49152 -4.12092 Vertex 9547 5.25716 14.3528 0.296421 Vertex 9548 5.26009 -34.2542 -5.12619 Vertex 9549 5.27059 -45.271 3.60876 Vertex 9550 5.27109 -42.045 -5.7485 Vertex 9551 5.30159 -41.3699 0.564513 Vertex 9552 5.31601 -42.6252 2.67321 Vertex 9553 5.32534 14.7589 -1.74606 Vertex 9554 5.32684 -33.5901 -6.19562 Vertex 9555 5.34099 -34.2971 -1.71518 Vertex 9556 5.34342 -40.4779 -5.2375 Vertex 9557 5.3977 11.4409 1.92598 Vertex 9558 5.39807 -33.4598 -6.32609 Vertex 9559 5.39875 -9.56262 -4.59858 Vertex 9560 5.44897 -9.08938 3.26283 Vertex 9561 5.44949 -43.2908 -5.88366 Vertex 9562 5.4584 -41.3445 -5.64498 Vertex 9563 5.4709 14.2604 0.28676 Vertex 9564 5.48006 8.59332 -5.38383 Vertex 9565 5.48377 -42.6296 3.44 Vertex 9566 5.49183 -27.4749 -6.19907 Vertex 9567 5.49323 -42.8654 2.55611 Vertex 9568 5.50332 10.4921 -2.23541 Vertex 9569 5.52261 -33.5257 -1.39886 Vertex 9570 5.5227 15.1033 -1.68382 Vertex 9571 5.52922 10.4657 -1.63571 Vertex 9572 5.53364 -27.4993 -1.0136 Vertex 9573 5.53439 -27.4373 -5.9474 Vertex 9574 5.54354 12.6985 1.06746 Vertex 9575 5.54637 7.27442 -4.56344 Vertex 9576 5.55213 -3.67 1.18242 Vertex 9577 5.55213 -2.252 1.18245 Vertex 9578 5.55213 -0.833995 1.18246 Vertex 9579 5.55213 0.584003 1.18249 Vertex 9580 5.55256 -22.2926 -0.319962 Vertex 9581 5.55268 -25.932 -6.39647 Vertex 9582 5.55324 -27.5357 -0.758933 Vertex 9583 5.56004 -44.3629 4.66877 Vertex 9584 5.56186 5.38039 -3.25141 Vertex 9585 5.56611 -25.5356 -6.4468 Vertex 9586 5.56625 13.8445 -0.001265 Vertex 9587 5.57212 -40.4605 -5.47911 Vertex 9588 5.57724 -45.027 4.68656 Vertex 9589 5.58622 -41.8602 1.37018 Vertex 9590 5.59144 11.7182 -2.3525 Vertex 9591 5.5928 11.7038 -1.65043 Vertex 9592 5.59368 -15.6399 3.11395 Vertex 9593 5.59774 -25.8311 -6.15289 Vertex 9594 5.60027 -3.66995 -2.28193 Vertex 9595 5.60027 -2.25195 -2.28191 Vertex 9596 5.60027 -0.83395 -2.28189 Vertex 9597 5.60027 0.584049 -2.28187 Vertex 9598 5.60321 -42.0311 1.68165 Vertex 9599 5.60349 8.57324 -5.4261 Vertex 9600 5.60801 11.5428 -2.90787 Vertex 9601 5.60838 -25.5613 -6.18742 Vertex 9602 5.61713 -42.3382 1.599 Vertex 9603 5.61836 14.0195 0.14405 Vertex 9604 5.61914 -24.1909 -6.61883 Vertex 9605 5.62208 -13.4371 -5.64686 Vertex 9606 5.62406 11.3731 -0.888613 Vertex 9607 5.63183 10.0996 -5.65648 Vertex 9608 5.63194 -23.794 -6.67481 Vertex 9609 5.64026 -32.1419 -7.01627 Vertex 9610 5.64741 -25.8985 -0.789087 Vertex 9611 5.65041 11.0944 -3.51062 Vertex 9612 5.65666 -43.3196 4.47069 Vertex 9613 5.65755 -22.2346 -7.07236 Vertex 9614 5.65774 -26.1975 -0.708506 Vertex 9615 5.66176 10.2129 -2.69847 Vertex 9616 5.66252 -25.998 -0.543273 Vertex 9617 5.66641 -24.09 -6.37565 Vertex 9618 5.66652 -25.6295 -0.751366 Vertex 9619 5.66964 -17.6304 -8.38756 Vertex 9620 5.6698 7.25433 -4.60571 Vertex 9621 5.67705 -23.8201 -6.41017 Vertex 9622 5.68476 10.7311 -0.303523 Vertex 9623 5.68972 -25.6028 -0.487784 Vertex 9624 5.69107 -3.7011 -0.608438 Vertex 9625 5.70241 10.0802 -1.16296 Vertex 9626 5.70398 -44.99 -4.4998 Vertex 9627 5.7043 -22.197 -6.8207 Vertex 9628 5.7189 -26.275 -0.507952 Vertex 9629 5.7354 -30.2473 -6.81719 Vertex 9630 5.73663 -26.6598 -0.434434 Vertex 9631 5.74572 15.0931 -1.76401 Vertex 9632 5.74652 -44.3227 -4.50789 Vertex 9633 5.74685 -44.949 -4.51751 Vertex 9634 5.75195 10.6058 -3.85106 Vertex 9635 5.75526 10.0795 -5.69875 Vertex 9636 5.75572 -45.271 4.57053 Vertex 9637 5.77072 -24.1632 -0.545718 Vertex 9638 5.77229 -38.6939 -5.31538 Vertex 9639 5.77408 -37.8179 -5.31527 Vertex 9640 5.78207 -32.217 -1.19807 Vertex 9641 5.78495 -24.2627 -0.299833 Vertex 9642 5.78984 -23.8943 -0.507997 Vertex 9643 5.80873 10.2514 -0.090255 Vertex 9644 5.81218 -23.8675 -0.244348 Vertex 9645 5.82403 8.59933 -5.3379 Vertex 9646 5.82766 9.77829 -1.08318 Vertex 9647 5.8279 -42.6859 3.88862 Vertex 9648 5.83172 6.3578 -3.29464 Vertex 9649 5.86059 -30.3209 -1.12206 Vertex 9650 5.86217 -3.67 1.32148 Vertex 9651 5.86217 -2.252 1.3215 Vertex 9652 5.86702 -33.3909 -5.90739 Vertex 9653 5.86792 -45.2711 -4.58649 Vertex 9654 5.87158 8.7628 -4.90198 Vertex 9655 5.87513 -0.833947 -2.4805 Vertex 9656 5.87513 0.584052 -2.48048 Vertex 9657 5.87522 -0.833996 1.29024 Vertex 9658 5.87522 0.584002 1.29026 Vertex 9659 5.87664 -22.2386 -0.668153 Vertex 9660 5.88332 9.87669 -2.86252 Vertex 9661 5.88764 7.33415 -4.55093 Vertex 9662 5.90908 -21.477 -8.04778 Vertex 9663 5.92145 -22.3298 -0.028688 Vertex 9664 5.92537 13.6395 -3.90961 Vertex 9665 5.92773 7.64602 -4.20732 Vertex 9666 5.92834 -3.66995 -2.37695 Vertex 9667 5.92834 -2.25195 -2.37693 Vertex 9668 5.92869 -3.66996 -0.952019 Vertex 9669 5.92977 -21.4898 1.2608 Vertex 9670 5.9302 -3.66997 -0.365996 Vertex 9671 5.95223 -34.2095 -4.85423 Vertex 9672 5.95515 6.33772 -3.33691 Vertex 9673 5.96928 8.63516 -5.2306 Vertex 9674 5.96962 10.0443 -5.59945 Vertex 9675 5.97771 -42.2253 2.36976 Vertex 9676 5.97792 4.42493 -2.01676 Vertex 9677 5.98105 0.889254 -0.691035 Vertex 9678 5.98667 14.9066 -1.79195 Vertex 9679 5.99163 -42.5324 2.28711 Vertex 9680 5.99226 -43.2346 -4.54069 Vertex 9681 5.99433 9.95947 -4.05303 Vertex 9682 5.9986 4.43593 3.59473 Vertex 9683 6.00009 10.0383 -5.13285 Vertex 9684 6.0014 -2.25196 -0.657592 Vertex 9685 6.0014 -0.83396 -0.657572 Vertex 9686 6.0014 0.584038 -0.657551 Vertex 9687 6.00741 8.69988 -5.05631 Vertex 9688 6.0091 14.7242 -1.76119 Vertex 9689 6.02166 -19.8563 -8.95316 Vertex 9690 6.02786 9.41271 -1.21125 Vertex 9691 6.0303 7.4215 -4.47569 Vertex 9692 6.03095 -45.027 -4.67746 Vertex 9693 6.03228 -44.3732 -4.67526 Vertex 9694 6.03363 4.40313 -1.80879 Vertex 9695 6.05421 -42.1707 -4.42714 Vertex 9696 6.05492 9.76061 -0.015878 Vertex 9697 6.06534 7.54771 -4.33965 Vertex 9698 6.08178 11.8888 -5.19287 Vertex 9699 6.0965 4.43579 3.46793 Vertex 9700 6.09971 -20.0135 2.21433 Vertex 9701 6.10108 -35.0221 -5.50011 Vertex 9702 6.10574 1.44355 -0.537757 Vertex 9703 6.10871 -6.13414 1.51869 Vertex 9704 6.10893 10.0212 -5.48149 Vertex 9705 6.11191 -34.2907 -2.09497 Vertex 9706 6.11941 0.620633 2.1421 Vertex 9707 6.12274 4.42306 -1.73434 Vertex 9708 6.14 10.0157 -5.2945 Vertex 9709 6.14374 11.3101 1.60497 Vertex 9710 6.14736 3.19252 -2.22149 Vertex 9711 6.15328 -17.8217 2.94429 Vertex 9712 6.15343 9.3637 -2.66082 Vertex 9713 6.15419 -40.0247 -2.18896 Vertex 9714 6.15638 9.10637 -1.68459 Vertex 9715 6.15861 0.529734 -2.4611 Vertex 9716 6.15929 -41.1163 -4.17897 Vertex 9717 6.16136 6.45487 -3.33383 Vertex 9718 6.16635 -22.2915 -0.400585 Vertex 9719 6.16935 6.86988 -3.13298 Vertex 9720 6.20403 -21.3785 1.13725 Vertex 9721 6.20458 4.44575 3.35634 Vertex 9722 6.20521 11.8687 -5.23514 Vertex 9723 6.21448 -33.6837 -5.73291 Vertex 9724 6.22563 4.70799 -1.70401 Vertex 9725 6.22696 2.35364 -0.387596 Vertex 9726 6.23709 3.16811 -1.96624 Vertex 9727 6.24251 10.9961 -4.45964 Vertex 9728 6.24917 1.40467 -0.873569 Vertex 9729 6.25653 -44.9899 -3.48905 Vertex 9730 6.27037 3.29993 3.29292 Vertex 9731 6.27143 12.3355 -2.50084 Vertex 9732 6.27322 12.3165 -1.57702 Vertex 9733 6.27652 -43.2598 -4.71564 Vertex 9734 6.28068 -33.0951 -5.82118 Vertex 9735 6.29198 9.71615 2.58683 Vertex 9736 6.29287 6.57805 -3.30816 Vertex 9737 6.29324 12.1047 -3.23163 Vertex 9738 6.29485 -44.3273 -3.58288 Vertex 9739 6.29518 -44.949 -3.59249 Vertex 9740 6.2984 -40.6954 -3.82604 Vertex 9741 6.30445 -40.5515 -1.59844 Vertex 9742 6.31436 11.8814 -0.574578 Vertex 9743 6.31461 6.74698 -3.23127 Vertex 9744 6.31783 10.5068 0.489034 Vertex 9745 6.31846 -38.6906 -2.12518 Vertex 9746 6.32025 -37.8146 -2.12507 Vertex 9747 6.32924 4.56952 3.6647 Vertex 9748 6.32948 -3.66996 -0.752633 Vertex 9749 6.32948 -2.25196 -0.752612 Vertex 9750 6.32992 1.38414 -0.288502 Vertex 9751 6.33015 -42.3167 3.00224 Vertex 9752 6.33793 3.20008 -1.83464 Vertex 9753 6.33968 -42.1528 -4.60068 Vertex 9754 6.34091 9.06014 -0.168211 Vertex 9755 6.34225 -0.83396 -0.685627 Vertex 9756 6.34225 0.584039 -0.685606 Vertex 9757 6.34904 11.5146 -4.02476 Vertex 9758 6.36776 2.3148 -0.723716 Vertex 9759 6.37416 -19.9011 2.09065 Vertex 9760 6.37597 -45.0271 5.24633 Vertex 9761 6.37656 1.01116 -2.3548 Vertex 9762 6.38007 -34.2126 -4.37666 Vertex 9763 6.38108 11.5532 -4.74029 Vertex 9764 6.38792 5.38028 -1.47809 Vertex 9765 6.39154 -39.8123 -2.07588 Vertex 9766 6.39423 11.0366 0.195314 Vertex 9767 6.40123 11.7606 -5.15473 Vertex 9768 6.40608 0.818348 -0.855766 Vertex 9769 6.41526 -44.3557 5.28254 Vertex 9770 6.416 1.90913 -2.20403 Vertex 9771 6.41786 1.27036 2.91128 Vertex 9772 6.41935 -33.3096 -5.85585 Vertex 9773 6.42015 1.93037 -2.3071 Vertex 9774 6.42047 -45.271 -3.57574 Vertex 9775 6.43077 -40.27 -3.27638 Vertex 9776 6.43317 3.48004 -0.254737 Vertex 9777 6.43659 10.1028 -4.7254 Vertex 9778 6.44475 -41.0984 -4.3525 Vertex 9779 6.44519 9.04369 -3.91063 Vertex 9780 6.45459 2.29483 -0.139645 Vertex 9781 6.45699 6.06565 -1.33002 Vertex 9782 6.46829 -45.271 5.06899 Vertex 9783 6.47605 1.95106 -2.12188 Vertex 9784 6.47728 2.16204 3.06955 Vertex 9785 6.50445 -21.488 1.17528 Vertex 9786 6.50462 -6.34977 -0.408374 Vertex 9787 6.5054 4.52261 -0.020655 Vertex 9788 6.51104 8.60197 -0.420323 Vertex 9789 6.51729 5.23794 3.99098 Vertex 9790 6.51848 -6.62575 -2.30468 Vertex 9791 6.52297 11.6676 -5.05488 Vertex 9792 6.53305 11.5787 -4.8895 Vertex 9793 6.54138 -43.2346 -3.68517 Vertex 9794 6.54181 -40.339 -1.48537 Vertex 9795 6.54265 -38.6976 -4.19296 Vertex 9796 6.54267 9.7923 0.586904 Vertex 9797 6.54444 -37.8216 -4.19285 Vertex 9798 6.54939 -27.3727 -5.55402 Vertex 9799 6.55853 0.821168 -0.329246 Vertex 9800 6.55897 -6.28919 -0.115199 Vertex 9801 6.56011 -43.3325 5.06993 Vertex 9802 6.57928 -45.027 -3.75244 Vertex 9803 6.57996 -41.3874 -3.45416 Vertex 9804 6.58042 6.04556 -1.37229 Vertex 9805 6.58061 -44.3777 -3.75025 Vertex 9806 6.58357 -42.1677 -3.62182 Vertex 9807 6.59868 -40.6476 -3.96669 Vertex 9808 6.5989 4.52639 1.97901 Vertex 9809 6.61467 4.52287 2.14453 Vertex 9810 6.61716 -34.2156 -3.28398 Vertex 9811 6.61981 -6.3647 -0.69964 Vertex 9812 6.62939 -35.0181 -1.91999 Vertex 9813 6.65377 4.53229 1.77602 Vertex 9814 6.65775 5.93729 -3.16594 Vertex 9815 6.65892 4.70734 -0.130068 Vertex 9816 6.66719 -38.6947 -3.32432 Vertex 9817 6.66898 -37.8187 -3.32421 Vertex 9818 6.67093 -20.0105 2.1196 Vertex 9819 6.67587 -33.516 -1.98357 Vertex 9820 6.67727 3.24332 1.76913 Vertex 9821 6.68011 6.14707 4.02962 Vertex 9822 6.68438 7.35665 -3.20158 Vertex 9823 6.68515 3.24156 1.85189 Vertex 9824 6.68899 -33.3956 -4.92897 Vertex 9825 6.69555 8.75321 -4.53803 Vertex 9826 6.69879 6.6225 -1.46944 Vertex 9827 6.70125 7.57214 -3.60192 Vertex 9828 6.70196 -27.4125 -5.75822 Vertex 9829 6.7047 3.24627 1.66763 Vertex 9830 6.70624 7.92342 -4.01511 Vertex 9831 6.7323 14.1705 -1.95675 Vertex 9832 6.73365 -40.1227 -3.27867 Vertex 9833 6.73605 -25.7599 -5.72532 Vertex 9834 6.7566 7.33689 3.72476 Vertex 9835 6.76116 6.17462 -1.44923 Vertex 9836 6.76576 -40.8285 -0.850633 Vertex 9837 6.76718 -25.4909 -5.75389 Vertex 9838 6.76727 8.31049 -3.18002 Vertex 9839 6.76735 -40.8037 -2.8256 Vertex 9840 6.77517 1.21205 0.781024 Vertex 9841 6.78562 12.5256 0.974956 Vertex 9842 6.78568 -27.4902 -1.56294 Vertex 9843 6.79683 13.4976 -0.269359 Vertex 9844 6.82564 -43.2598 -3.86012 Vertex 9845 6.82914 -32.0635 -6.53945 Vertex 9846 6.83329 5.06838 -2.92306 Vertex 9847 6.84599 8.19581 -1.28649 Vertex 9848 6.85556 13.3582 -3.63173 Vertex 9849 6.85651 4.69352 2.11507 Vertex 9850 6.86055 2.03823 1.06127 Vertex 9851 6.86083 6.49176 -1.51502 Vertex 9852 6.86256 -9.08388 2.00808 Vertex 9853 6.86823 6.30921 -1.50033 Vertex 9854 6.86986 -42.1568 -3.79467 Vertex 9855 6.87612 8.19083 0.022637 Vertex 9856 6.87902 8.8035 0.386456 Vertex 9857 6.88025 -41.3396 -3.59481 Vertex 9858 6.88131 -25.8629 -5.92282 Vertex 9859 6.89199 5.38138 0.224029 Vertex 9860 6.89534 -25.4655 -5.9854 Vertex 9861 6.90083 11.1018 1.47198 Vertex 9862 6.91636 -41.3607 -0.163031 Vertex 9863 6.93024 -42.6753 4.42051 Vertex 9864 6.93323 -30.1706 -6.35018 Vertex 9865 6.93763 -27.5339 -1.35908 Vertex 9866 6.93828 -24.0127 -5.91091 Vertex 9867 6.96067 -42.437 1.02659 Vertex 9868 6.96941 -23.7437 -5.93948 Vertex 9869 6.97899 13.3381 -3.674 Vertex 9870 6.98115 -33.4003 -3.24674 Vertex 9871 6.98442 -13.1871 2.36055 Vertex 9872 6.99152 -45.271 -2.34218 Vertex 9873 6.99251 -32.2059 -1.86392 Vertex 9874 7.00097 -25.8881 -1.38626 Vertex 9875 7.0145 9.58546 2.02911 Vertex 9876 7.03628 12.7974 -3.4184 Vertex 9877 7.03667 -15.3518 -6.24693 Vertex 9878 7.03702 -25.6199 -1.35668 Vertex 9879 7.05155 -42.1343 1.06901 Vertex 9880 7.05183 -24.1134 -6.12901 Vertex 9881 7.05203 -35.0229 -3.24765 Vertex 9882 7.05507 -11.0373 2.1656 Vertex 9883 7.05698 -33.0271 -5.28221 Vertex 9884 7.06705 -12.9289 -4.08971 Vertex 9885 7.06977 -8.98465 -2.44379 Vertex 9886 7.06988 -35.0264 -4.23679 Vertex 9887 7.07023 -40.6563 -2.82789 Vertex 9888 7.09673 -32.4618 -5.42216 Vertex 9889 7.09948 -41.8982 0.751682 Vertex 9890 7.10766 -26.197 -1.51474 Vertex 9891 7.12023 7.79835 -0.347202 Vertex 9892 7.12112 -22.1146 -6.30932 Vertex 9893 7.12247 6.24603 -1.71512 Vertex 9894 7.12399 -23.7202 -6.15428 Vertex 9895 7.13799 -40.9886 -2.19132 Vertex 9896 7.14173 -44.4004 -2.53413 Vertex 9897 7.14349 13.1701 -3.65718 Vertex 9898 7.14424 5.34338 2.54972 Vertex 9899 7.14446 -25.9948 -1.18934 Vertex 9900 7.14457 -32.0689 -5.459 Vertex 9901 7.14481 -45.027 -2.51383 Vertex 9902 7.16181 6.84011 0.359268 Vertex 9903 7.16729 -30.31 -1.77421 Vertex 9904 7.18781 -26.6616 -1.23954 Vertex 9905 7.19111 -42.3079 -2.54227 Vertex 9906 7.1969 -25.6007 -1.14547 Vertex 9907 7.20901 12.8624 -3.52573 Vertex 9908 7.21482 5.19364 -2.01751 Vertex 9909 7.21797 -26.2768 -1.33962 Vertex 9910 7.22757 -42.6339 1.749 Vertex 9911 7.23428 -24.152 -1.19479 Vertex 9912 7.23499 13.0197 -3.61834 Vertex 9913 7.24208 -27.3771 -4.86325 Vertex 9914 7.26168 7.2993 -1.87648 Vertex 9915 7.2653 -10.881 -2.97793 Vertex 9916 7.2683 -22.1541 -6.51797 Vertex 9917 7.26897 -41.4482 -1.31473 Vertex 9918 7.26954 7.23251 -0.093519 Vertex 9919 7.27034 -23.8838 -1.16521 Vertex 9920 7.27506 -32.6227 -5.37381 Vertex 9921 7.28524 6.82002 0.316999 Vertex 9922 7.3006 -45.271 -1.68567 Vertex 9923 7.30844 -43.2583 -2.57767 Vertex 9924 7.31193 5.15508 -3.58199 Vertex 9925 7.31846 -42.3313 1.79142 Vertex 9926 7.34298 6.36847 2.67728 Vertex 9927 7.34724 -32.0742 -3.54329 Vertex 9928 7.35804 5.8667 -3.90135 Vertex 9929 7.37725 -24.2586 -0.997458 Vertex 9930 7.37731 -43.3377 5.39664 Vertex 9931 7.38405 7.43221 2.55887 Vertex 9932 7.3915 -9.11913 -0.899686 Vertex 9933 7.40119 -45.271 5.47066 Vertex 9934 7.42907 -42.3373 -1.50223 Vertex 9935 7.4291 -41.7705 -0.706719 Vertex 9936 7.42978 -23.8644 -0.953655 Vertex 9937 7.43035 6.90536 0.156759 Vertex 9938 7.43434 -45.0273 5.69717 Vertex 9939 7.43949 -9.01958 0.66656 Vertex 9940 7.45504 7.13056 -0.084245 Vertex 9941 7.46773 13.6718 -1.99324 Vertex 9942 7.4719 -27.4234 -4.97097 Vertex 9943 7.48314 -45.0271 -1.79581 Vertex 9944 7.48562 -22.2817 -0.988529 Vertex 9945 7.50323 6.99802 0.025754 Vertex 9946 7.51296 -25.7642 -4.97435 Vertex 9947 7.51413 -44.4004 -1.75187 Vertex 9948 7.51897 -44.3451 5.6843 Vertex 9949 7.55463 13.063 -2.03102 Vertex 9950 7.55794 -25.4963 -4.9928 Vertex 9951 7.56263 -42.3769 2.50256 Vertex 9952 7.56545 12.5855 -0.899039 Vertex 9953 7.59116 13.6518 -2.03551 Vertex 9954 7.59849 -43.2583 -1.67611 Vertex 9955 7.61663 7.83815 1.21381 Vertex 9956 7.62261 12.036 -4.81852 Vertex 9957 7.62621 9.35865 -5.83151 Vertex 9958 7.63149 10.8124 -5.64342 Vertex 9959 7.63661 -22.3253 -0.783916 Vertex 9960 7.65184 -30.1758 -5.53014 Vertex 9961 7.65852 -27.3814 -3.28275 Vertex 9962 7.67358 -31.9761 -4.70322 Vertex 9963 7.67565 -42.6215 0.741497 Vertex 9964 7.68071 8.12335 0.68454 Vertex 9965 7.68501 3.53338 -2.93775 Vertex 9966 7.70332 -31.4477 -4.87229 Vertex 9967 7.71974 -17.4998 -7.56352 Vertex 9968 7.73073 13.471 -2.08544 Vertex 9969 7.73222 -25.8734 -5.07774 Vertex 9970 7.74006 7.81806 1.17155 Vertex 9971 7.74378 13.1363 -2.09439 Vertex 9972 7.74719 12.7431 -3.50605 Vertex 9973 7.75892 12.9316 -2.48278 Vertex 9974 7.76148 4.96266 -4.32859 Vertex 9975 7.78966 -21.3532 -7.36365 Vertex 9976 7.79831 13.3084 -2.11062 Vertex 9977 7.80632 -24.0174 -5.09468 Vertex 9978 7.81562 3.79219 -2.41983 Vertex 9979 7.8166 -25.4854 -5.04524 Vertex 9980 7.83119 -15.6207 1.95268 Vertex 9981 7.85131 -23.7495 -5.11313 Vertex 9982 7.86286 -10.9122 1.09587 Vertex 9983 7.86606 -31.5471 -4.78395 Vertex 9984 7.87356 7.87492 0.990975 Vertex 9985 7.87386 8.04017 0.707204 Vertex 9986 7.87406 -42.3419 0.440428 Vertex 9987 7.88002 11.9198 -0.116802 Vertex 9988 7.8867 5.53516 -4.62686 Vertex 9989 7.89086 -22.0812 -5.30726 Vertex 9990 7.89981 13.1714 -0.493756 Vertex 9991 7.90535 -27.4298 -3.22534 Vertex 9992 7.90837 -22.1205 -5.57303 Vertex 9993 7.9124 -42.4073 0.693917 Vertex 9994 7.9205 12.6393 -0.761338 Vertex 9995 7.93532 7.94025 0.840468 Vertex 9996 7.95196 -45.271 -0.286458 Vertex 9997 7.95283 -42.8053 1.46782 Vertex 9998 7.96207 -26.4116 -2.25786 Vertex 9999 7.96631 6.90082 -0.876599 Vertex 10000 7.98007 -25.7685 -3.25598 Vertex 10001 7.98766 5.2484 -1.55877 Vertex 10002 7.99733 -30.181 -3.65386 Vertex 10003 8.0053 -13.0103 1.00777 Vertex 10004 8.01164 9.33482 1.656 Vertex 10005 8.01519 9.39067 1.05896 Vertex 10006 8.02324 13.1514 -0.536025 Vertex 10007 8.0333 -25.5016 -3.25155 Vertex 10008 8.03752 -26.9019 -2.00118 Vertex 10009 8.03881 -43.3786 0.600656 Vertex 10010 8.04053 -42.6782 3.77032 Vertex 10011 8.04338 -10.8848 -0.228495 Vertex 10012 8.04387 -24.1321 -5.13846 Vertex 10013 8.08957 -23.7329 -5.22963 Vertex 10014 8.09503 -15.3683 -5.06338 Vertex 10015 8.1075 -15.4977 -4.72907 Vertex 10016 8.10894 -26.5016 -2.12342 Vertex 10017 8.10949 3.36266 -3.69303 Vertex 10018 8.1136 -30.5863 -4.13192 Vertex 10019 8.11792 12.0286 0.105356 Vertex 10020 8.12124 12.6992 -0.784484 Vertex 10021 8.12424 -19.7211 -8.09466 Vertex 10022 8.13296 12.4502 0.529803 Vertex 10023 8.13507 9.31474 1.61373 Vertex 10024 8.13685 10.9443 0.814305 Vertex 10025 8.14521 12.991 -0.647036 Vertex 10026 8.1486 -30.0369 -4.30088 Vertex 10027 8.18049 6.64974 -4.28675 Vertex 10028 8.18082 -44.4346 0.542982 Vertex 10029 8.18682 -44.9365 0.537845 Vertex 10030 8.18958 -42.5911 1.42024 Vertex 10031 8.19173 -45.0271 -0.278554 Vertex 10032 8.1959 12.8479 -0.730817 Vertex 10033 8.20447 -22.125 -4.99594 Vertex 10034 8.21442 -25.8795 -3.19961 Vertex 10035 8.21509 -43.291 -0.061943 Vertex 10036 8.21893 9.34764 1.09348 Vertex 10037 8.22038 10.9114 0.935422 Vertex 10038 8.22614 -44.3719 -0.295623 Vertex 10039 8.23746 -45.271 4.91516 Vertex 10040 8.25174 -45.271 0.432554 Vertex 10041 8.25248 9.31063 1.41515 Vertex 10042 8.25396 11.1308 1.51011 Vertex 10043 8.25409 -44.9304 0.436705 Vertex 10044 8.25428 7.52254 -5.24379 Vertex 10045 8.25639 12.4301 0.487534 Vertex 10046 8.28326 -30.1194 -4.21108 Vertex 10047 8.29388 -25.4908 -3.29862 Vertex 10048 8.29881 9.31748 1.24736 Vertex 10049 8.30544 -13.0015 -0.922785 Vertex 10050 8.31444 -43.4288 1.3497 Vertex 10051 8.31915 -22.1684 -5.511 Vertex 10052 8.32261 3.3509 -4.13582 Vertex 10053 8.32492 12.0691 0.109669 Vertex 10054 8.32824 -24.0221 -3.22699 Vertex 10055 8.33907 -43.3015 0.493351 Vertex 10056 8.34231 -43.3374 4.82455 Vertex 10057 8.34849 6.61465 -0.694472 Vertex 10058 8.36886 12.2991 0.334827 Vertex 10059 8.37072 -26.8347 -2.97015 Vertex 10060 8.37739 11.1107 1.46784 Vertex 10061 8.38146 -23.7552 -3.22256 Vertex 10062 8.38225 -45.0271 5.06772 Vertex 10063 8.39419 9.92694 1.40347 Vertex 10064 8.39821 -27.353 -2.74804 Vertex 10065 8.39982 -44.3648 5.10133 Vertex 10066 8.40378 -12.9112 -1.18576 Vertex 10067 8.40726 -15.374 -4.54654 Vertex 10068 8.41045 12.1842 0.211048 Vertex 10069 8.41438 4.17157 -1.96465 Vertex 10070 8.41631 -12.9309 -0.638932 Vertex 10071 8.43062 10.9166 0.966035 Vertex 10072 8.44611 -28.4977 -3.44355 Vertex 10073 8.45587 -42.643 2.10917 Vertex 10074 8.46009 -44.4595 1.29137 Vertex 10075 8.46614 6.60781 -5.04073 Vertex 10076 8.46957 8.95833 1.41415 Vertex 10077 8.47363 -27.9028 -3.61108 Vertex 10078 8.47776 5.2242 -1.14207 Vertex 10079 8.48024 -44.9365 1.28196 Vertex 10080 8.4849 -45.027 0.418482 Vertex 10081 8.48493 11.0335 1.2752 Vertex 10082 8.48754 -44.4112 0.423698 Vertex 10083 8.50151 -42.6843 3.20377 Vertex 10084 8.50521 6.42801 -5.05533 Vertex 10085 8.50654 4.58203 -5.16603 Vertex 10086 8.50861 -26.9064 -2.8585 Vertex 10087 8.52179 10.9701 1.11311 Vertex 10088 8.56337 -45.271 1.31489 Vertex 10089 8.56386 -24.1367 -3.27614 Vertex 10090 8.56571 -44.9304 1.31904 Vertex 10091 8.57845 5.19998 -0.725376 Vertex 10092 8.59473 -27.9859 -3.52662 Vertex 10093 8.60523 4.22854 -1.30917 Vertex 10094 8.6147 -43.3518 1.2424 Vertex 10095 8.62559 -17.8018 1.65954 Vertex 10096 8.62763 7.16986 0.288609 Vertex 10097 8.63254 6.77266 -0.327621 Vertex 10098 8.64004 -23.7411 -3.16115 Vertex 10099 8.65485 4.19353 -1.71193 Vertex 10100 8.65723 2.23391 -3.04478 Vertex 10101 8.66265 -21.4709 0.144578 Vertex 10102 8.66928 6.86513 -0.165417 Vertex 10103 8.67112 12.6136 -3.55732 Vertex 10104 8.67558 6.23456 -0.448852 Vertex 10105 8.68706 3.31266 -5.17191 Vertex 10106 8.69484 -22.1384 -3.2422 Vertex 10107 8.69749 13.0495 -2.47229 Vertex 10108 8.71394 7.75887 0.933331 Vertex 10109 8.76669 -21.352 -6.45892 Vertex 10110 8.7668 -44.436 1.17209 Vertex 10111 8.77833 -45.027 1.1626 Vertex 10112 8.7794 -15.7098 0.102446 Vertex 10113 8.78664 12.8215 -1.445 Vertex 10114 8.7899 11.1911 -5.36334 Vertex 10115 8.79092 2.40505 -2.65504 Vertex 10116 8.79141 -15.9987 0.057748 Vertex 10117 8.79583 -15.785 0.144167 Vertex 10118 8.81493 -15.9751 -0.026694 Vertex 10119 8.82183 -45.271 2.0883 Vertex 10120 8.83057 12.0761 -4.63657 Vertex 10121 8.83348 -15.762 -0.109212 Vertex 10122 8.84097 -17.4761 -6.22582 Vertex 10123 8.84542 9.6329 -6.00456 Vertex 10124 8.85424 -21.3421 -5.99528 Vertex 10125 8.86187 2.11765 -3.80763 Vertex 10126 8.86626 -15.4825 0.067004 Vertex 10127 8.87107 -43.3143 1.918 Vertex 10128 8.87638 -15.9571 -0.162388 Vertex 10129 8.88696 2.02234 -4.19029 Vertex 10130 8.88844 0.992296 -3.15284 Vertex 10131 8.89332 2.68893 -1.38139 Vertex 10132 8.89958 12.3419 -0.439584 Vertex 10133 8.90431 -17.6212 -5.81033 Vertex 10134 8.92126 -4.35677 -3.23025 Vertex 10135 8.92533 -45.271 3.84484 Vertex 10136 8.92681 -2.49958 -3.49388 Vertex 10137 8.93978 -19.9924 0.945029 Vertex 10138 8.94161 -43.3202 3.79385 Vertex 10139 8.94353 -22.1882 -3.16712 Vertex 10140 8.94565 -15.4831 0.513085 Vertex 10141 8.94586 -15.6253 0.355535 Vertex 10142 8.95974 -16.1879 -0.032894 Vertex 10143 8.96265 -16.1634 0.09069 Vertex 10144 8.96696 -15.4864 0.456328 Vertex 10145 8.97982 -15.2233 0.317066 Vertex 10146 8.98669 5.18228 -0.208585 Vertex 10147 8.99399 4.18484 -0.408676 Vertex 10148 8.99822 -16.1599 -0.172204 Vertex 10149 9.00267 5.85447 -0.203232 Vertex 10150 9.01907 5.47591 -5.51982 Vertex 10151 9.02326 -44.3842 1.9165 Vertex 10152 9.03366 -45.027 1.92883 Vertex 10153 9.05243 -15.6891 -0.281141 Vertex 10154 9.07107 -15.833 -0.318259 Vertex 10155 9.0753 11.1982 0.508086 Vertex 10156 9.07901 7.93967 -5.49622 Vertex 10157 9.09858 -4.33885 -2.40005 Vertex 10158 9.10999 6.90209 -5.35687 Vertex 10159 9.12111 -14.9301 0.658219 Vertex 10160 9.12383 -4.29743 -3.38804 Vertex 10161 9.12588 -44.3663 3.86857 Vertex 10162 9.13092 -15.4145 -0.164885 Vertex 10163 9.1409 1.04284 -2.6797 Vertex 10164 9.14485 -15.2381 0.870755 Vertex 10165 9.14724 -45.027 3.87047 Vertex 10166 9.15542 -15.9807 -0.317903 Vertex 10167 9.16476 -4.33881 -4.65661 Vertex 10168 9.16963 -16.2903 0.101243 Vertex 10169 9.18908 -19.7174 -6.98808 Vertex 10170 9.19167 -15.8061 0.452515 Vertex 10171 9.19829 6.73228 -5.36579 Vertex 10172 9.19965 -16.2701 0.016926 Vertex 10173 9.20505 0.8743 -3.91664 Vertex 10174 9.20513 2.55755 -2.41703 Vertex 10175 9.22194 -16.2233 -0.121848 Vertex 10176 9.23886 -14.7596 0.84387 Vertex 10177 9.24253 -14.9671 1.16286 Vertex 10178 9.24255 -0.993387 -3.47699 Vertex 10179 9.24557 2.61353 -2.19345 Vertex 10180 9.24875 -2.50084 -4.82542 Vertex 10181 9.25048 -0.176438 -3.27873 Vertex 10182 9.25302 -2.50044 -2.70947 Vertex 10183 9.27318 -21.3452 -5.73709 Vertex 10184 9.27479 3.10244 -0.442654 Vertex 10185 9.27918 -15.6482 0.662059 Vertex 10186 9.28703 -17.6027 -5.58686 Vertex 10187 9.28865 10.0415 1.28198 Vertex 10188 9.29334 -0.93602 -4.59519 Vertex 10189 9.29982 -0.208133 -4.24676 Vertex 10190 9.30604 1.628 -1.35177 Vertex 10191 9.30795 -15.1184 0.014277 Vertex 10192 9.30952 -19.7285 -6.43079 Vertex 10193 9.31831 2.13904 -5.14951 Vertex 10194 9.31843 -16.0043 -0.265824 Vertex 10195 9.32017 0.94983 -4.4582 Vertex 10196 9.32171 4.06305 -5.73758 Vertex 10197 9.33232 -14.5438 1.13985 Vertex 10198 9.33784 -15.4982 -1.50529 Vertex 10199 9.34365 -4.27747 -4.70197 Vertex 10200 9.36026 -16.2195 0.208991 Vertex 10201 9.36295 12.0082 -3.99928 Vertex 10202 9.36658 -15.6872 -0.257401 Vertex 10203 9.40524 -4.27188 -2.68702 Vertex 10204 9.41079 -16.206 -0.042953 Vertex 10205 9.42007 -15.3946 0.986371 Vertex 10206 9.44001 -16.2222 0.175871 Vertex 10207 9.44467 -16.0094 0.412612 Vertex 10208 9.44532 11.2386 -5.18265 Vertex 10209 9.44726 4.77119 -5.7723 Vertex 10210 9.44826 -15.3865 -1.76839 Vertex 10211 9.44853 3.47707 -5.55829 Vertex 10212 9.45522 -15.9969 -0.23507 Vertex 10213 9.46207 -14.8063 0.280058 Vertex 10214 9.46959 -15.51 -1.22994 Vertex 10215 9.50647 -15.9251 0.255295 Vertex 10216 9.52467 -1.09417 -2.9647 Vertex 10217 9.5341 -15.2045 1.24693 Vertex 10218 9.54165 -14.6553 0.45666 Vertex 10219 9.54451 -14.5447 1.49722 Vertex 10220 9.54713 -15.8851 0.56992 Vertex 10221 9.55726 -15.9385 0.526657 Vertex 10222 9.5696 -14.5516 0.682242 Vertex 10223 9.57185 -4.29444 -1.54782 Vertex 10224 9.58125 6.28773 0.06475 Vertex 10225 9.58199 -15.7702 0.867382 Vertex 10226 9.58468 8.99371 1.34566 Vertex 10227 9.5879 -0.053116 -5.00576 Vertex 10228 9.59717 6.00617 -5.57221 Vertex 10229 9.61545 1.08211 -5.16186 Vertex 10230 9.61605 6.44918 0.13333 Vertex 10231 9.63054 -0.150637 -2.6132 Vertex 10232 9.63827 2.09717 -0.490344 Vertex 10233 9.63894 7.02585 0.456604 Vertex 10234 9.64369 -16.0826 0.155483 Vertex 10235 9.65546 1.26999 -2.45644 Vertex 10236 9.66799 7.74706 0.924819 Vertex 10237 9.67313 -15.6468 0.928454 Vertex 10238 9.67962 -15.2565 -0.05794 Vertex 10239 9.67989 -15.8386 -0.1016 Vertex 10240 9.68869 -16.1883 0.384223 Vertex 10241 9.70212 -15.5374 0.234933 Vertex 10242 9.71841 -15.5205 0.468435 Vertex 10243 9.72184 1.3262 -2.23653 Vertex 10244 9.72934 -16.1599 0.625094 Vertex 10245 9.73154 -14.0222 0.985885 Vertex 10246 9.73154 0.01042 -5.26248 Vertex 10247 9.73661 -16.0595 0.850463 Vertex 10248 9.73715 12.8281 -2.73469 Vertex 10249 9.73866 2.44708 -5.66819 Vertex 10250 9.74596 -4.28925 -5.4962 Vertex 10251 9.75577 -19.7527 -6.08434 Vertex 10252 9.75612 -15.4313 0.683442 Vertex 10253 9.7604 -21.461 -1.2275 Vertex 10254 9.76182 5.40737 0.003398 Vertex 10255 9.77394 -15.3139 -0.713082 Vertex 10256 9.77716 -16.0328 -1.77378 Vertex 10257 9.78416 4.38373 -0.036203 Vertex 10258 9.7936 -15.9753 0.100159 Vertex 10259 9.7942 -15.3524 -0.39644 Vertex 10260 9.79645 -16.0396 -1.14011 Vertex 10261 9.80458 -16.0672 -1.45693 Vertex 10262 9.80722 -14.2928 0.470013 Vertex 10263 9.82269 -15.4349 -1.23279 Vertex 10264 9.8233 1.24077 -5.45815 Vertex 10265 9.82394 -0.959323 -5.26112 Vertex 10266 9.82697 -17.6931 -0.000768 Vertex 10267 9.82779 -15.8746 0.416379 Vertex 10268 9.82793 -15.3148 -0.080776 Vertex 10269 9.82831 4.14704 -5.78171 Vertex 10270 9.8301 -15.4674 -1.46372 Vertex 10271 9.83246 -15.6575 -0.623767 Vertex 10272 9.83412 -14.6562 1.63673 Vertex 10273 9.84089 -4.23232 -1.97828 Vertex 10274 9.84129 -15.4283 -1.69507 Vertex 10275 9.84366 -13.5396 0.834674 Vertex 10276 9.84828 -15.4341 1.23197 Vertex 10277 9.85591 -13.5405 -0.037375 Vertex 10278 9.86292 -15.6942 -0.382872 Vertex 10279 9.8662 -15.7829 0.054908 Vertex 10280 9.87019 11.8408 -0.00659 Vertex 10281 9.8715 0.167996 -5.67131 Vertex 10282 9.88043 -14.9543 0.203369 Vertex 10283 9.88307 -2.44324 -5.57819 Vertex 10284 9.88332 -2.44321 -2.029 Vertex 10285 9.88576 -15.6557 -0.141455 Vertex 10286 9.88896 -15.5752 0.09549 Vertex 10287 9.89669 3.36702 -0.11203 Vertex 10288 9.89984 -15.7575 0.961197 Vertex 10289 9.91631 -13.2561 0.680038 Vertex 10290 9.92759 -16.1117 0.112918 Vertex 10291 9.93864 -14.0007 1.39393 Vertex 10292 9.94118 -0.772566 -5.41739 Vertex 10293 9.96338 -4.2212 -5.44755 Vertex 10294 9.96899 -15.5808 0.90871 Vertex 10295 9.97122 -14.8082 0.37878 Vertex 10296 9.97415 3.50325 -5.6892 Vertex 10297 9.98007 -14.7642 0.578683 Vertex 10298 9.99053 -16.2791 -1.70685 Vertex 10299 10.0026 11.1862 -4.56491 Vertex 10300 10.0076 -13.4063 -0.144325 Vertex 10301 10.01 -16.3625 -0.663164 Vertex 10302 10.015 -15.6201 0.760091 Vertex 10303 10.0175 -15.866 0.997665 Vertex 10304 10.0194 -16.2767 -1.22267 Vertex 10305 10.0195 -15.2187 -2.24603 Vertex 10306 10.026 5.30314 -5.82455 Vertex 10307 10.0284 -0.933655 -2.35618 Vertex 10308 10.0297 0.740176 -1.21487 Vertex 10309 10.0298 -16.3056 -1.46581 Vertex 10310 10.0315 -15.0685 -0.417614 Vertex 10311 10.036 -15.6257 -1.02428 Vertex 10312 10.0372 -15.0344 -0.64981 Vertex 10313 10.0377 -14.9516 1.60192 Vertex 10314 10.0497 -15.1603 -2.54581 Vertex 10315 10.0513 -16.3232 -0.148261 Vertex 10316 10.0542 -15.3998 -0.865201 Vertex 10317 10.0548 -15.2401 -1.93361 Vertex 10318 10.0605 -15.9198 -1.90888 Vertex 10319 10.062 -15.034 -0.18731 Vertex 10320 10.0628 -13.9021 0.410332 Vertex 10321 10.0656 -16.3722 -0.406254 Vertex 10322 10.0703 -12.9986 0.337294 Vertex 10323 10.0713 -15.6141 -1.9045 Vertex 10324 10.077 -15.5485 -0.868527 Vertex 10325 10.0877 -15.9294 -1.01747 Vertex 10326 10.0974 -0.474518 -5.85231 Vertex 10327 10.0979 2.70569 -5.68303 Vertex 10328 10.1011 -15.1757 0.356879 Vertex 10329 10.1163 -15.3133 0.355448 Vertex 10330 10.1168 -15.4365 0.946823 Vertex 10331 10.1302 -15.4011 0.024308 Vertex 10332 10.132 -15.5939 -2.45618 Vertex 10333 10.1335 10.3171 0.35981 Vertex 10334 10.138 -16.0187 -1.93088 Vertex 10335 10.1388 1.32248 -0.667843 Vertex 10336 10.1421 -19.9816 -0.674959 Vertex 10337 10.146 -21.2852 -3.17337 Vertex 10338 10.1489 -0.004846 -2.15999 Vertex 10339 10.1711 -15.2668 -0.865934 Vertex 10340 10.1721 -15.626 -2.22149 Vertex 10341 10.1756 -16.6364 0.438455 Vertex 10342 10.1782 -15.545 0.046677 Vertex 10343 10.1807 -15.2394 0.057896 Vertex 10344 10.1822 -15.161 0.345594 Vertex 10345 10.1867 -14.535 0.336458 Vertex 10346 10.1903 -15.2376 1.29131 Vertex 10347 10.1908 2.33905 -0.264528 Vertex 10348 10.1922 -16.017 -1.01276 Vertex 10349 10.2043 -14.0961 1.46342 Vertex 10350 10.2058 -13.3561 1.23215 Vertex 10351 10.2094 -15.9057 0.14528 Vertex 10352 10.2152 1.33698 -5.60939 Vertex 10353 10.2162 9.76619 -5.44123 Vertex 10354 10.2165 -15.1736 0.533762 Vertex 10355 10.2185 -15.266 0.014522 Vertex 10356 10.2212 -16.1784 -0.939108 Vertex 10357 10.227 -15.4613 -0.042742 Vertex 10358 10.232 -15.882 0.137164 Vertex 10359 10.2356 -15.1002 0.797242 Vertex 10360 10.2414 -16.5666 0.948636 Vertex 10361 10.2429 -15.1136 0.633678 Vertex 10362 10.2494 -16.6207 0.69106 Vertex 10363 10.2511 -16.6647 -0.743094 Vertex 10364 10.2557 0.277446 -5.88806 Vertex 10365 10.256 -15.2048 0.096699 Vertex 10366 10.2575 -21.32 -2.89933 Vertex 10367 10.2658 -15.611 -1.98963 Vertex 10368 10.2676 -15.4349 -2.6733 Vertex 10369 10.2685 6.5225 0.103263 Vertex 10370 10.2701 -21.311 -3.44826 Vertex 10371 10.2733 -0.053182 -1.91368 Vertex 10372 10.2772 -15.9533 0.138717 Vertex 10373 10.2792 -15.7233 0.819898 Vertex 10374 10.2795 -13.9457 -0.018693 Vertex 10375 10.2811 -15.5724 -2.70249 Vertex 10376 10.2866 -14.9481 -1.44648 Vertex 10377 10.2905 -17.5936 -2.30108 Vertex 10378 10.2971 6.33747 0.050988 Vertex 10379 10.3017 -16.1019 0.063706 Vertex 10380 10.3052 -15.1998 -0.996663 Vertex 10381 10.3073 -15.1012 0.570992 Vertex 10382 10.3082 12.4185 -0.866307 Vertex 10383 10.3119 -15.7251 0.800386 Vertex 10384 10.3126 -16.4159 0.14436 Vertex 10385 10.3129 -16.5418 -1.29802 Vertex 10386 10.3182 -15.2769 0.801145 Vertex 10387 10.3195 -16.6556 -0.4016 Vertex 10388 10.3211 8.35868 -5.18312 Vertex 10389 10.3252 -16.4802 -1.82208 Vertex 10390 10.3349 4.23102 -5.82585 Vertex 10391 10.3406 -15.7759 0.466045 Vertex 10392 10.3409 -16.3972 -0.983203 Vertex 10393 10.3466 -14.9758 -1.14076 Vertex 10394 10.3471 -16.2631 -2.56731 Vertex 10395 10.3498 -15.7605 0.838861 Vertex 10396 10.3604 -16.61 -0.056382 Vertex 10397 10.368 -14.961 -1.43453 Vertex 10398 10.3704 -16.3094 -2.08445 Vertex 10399 10.3711 -15.0746 -2.24184 Vertex 10400 10.3828 -14.2139 0.30043 Vertex 10401 10.39 7.47559 -5.08956 Vertex 10402 10.3943 -15.7329 -1.81436 Vertex 10403 10.396 -16.4804 -1.56853 Vertex 10404 10.3977 -15.0368 -2.4732 Vertex 10405 10.3981 -12.782 1.20435 Vertex 10406 10.3985 -15.0905 -2.0049 Vertex 10407 10.4033 -16.0661 -2.82281 Vertex 10408 10.4049 -17.4539 -2.61459 Vertex 10409 10.4049 -15.7899 0.465994 Vertex 10410 10.4119 -15.6659 -1.1103 Vertex 10411 10.4134 -15.7945 0.46378 Vertex 10412 10.4136 -15.4701 -0.797937 Vertex 10413 10.4136 -15.7521 -1.11693 Vertex 10414 10.4228 -17.6652 -1.96881 Vertex 10415 10.4232 -15.2761 -1.85305 Vertex 10416 10.4271 -15.0278 -1.72507 Vertex 10417 10.4283 -14.9789 -1.18179 Vertex 10418 10.4287 -4.22971 -5.97208 Vertex 10419 10.4325 -13.6979 -0.190373 Vertex 10420 10.4337 -14.2675 1.51813 Vertex 10421 10.4344 -0.524662 -6.01673 Vertex 10422 10.4378 7.29163 -5.12198 Vertex 10423 10.4379 -15.586 -1.10456 Vertex 10424 10.44 -15.7404 -1.84434 Vertex 10425 10.4405 -16.2802 1.13673 Vertex 10426 10.4419 -15.642 -1.79093 Vertex 10427 10.4525 -16.3158 -2.33928 Vertex 10428 10.4596 -15.5196 -0.094213 Vertex 10429 10.46 -15.5197 -0.811788 Vertex 10430 10.462 12.7106 -2.03032 Vertex 10431 10.4665 -15.2701 -0.069142 Vertex 10432 10.4739 12.3414 -3.34505 Vertex 10433 10.4743 5.49132 0.03785 Vertex 10434 10.4752 -15.6743 0.118331 Vertex 10435 10.4773 -16.5984 0.148561 Vertex 10436 10.4787 -16.2539 -1.08276 Vertex 10437 10.4807 -15.7519 -1.12062 Vertex 10438 10.4859 -16.3042 0.1161 Vertex 10439 10.4884 -15.7835 -1.38983 Vertex 10440 10.4923 -16.8496 0.389597 Vertex 10441 10.4924 -11.0253 -1.15006 Vertex 10442 10.4946 -15.0218 -1.6631 Vertex 10443 10.4976 -15.0008 0.002019 Vertex 10444 10.4992 -15.0291 -0.044895 Vertex 10445 10.5016 -15.4526 -0.783953 Vertex 10446 10.5037 -15.4386 -1.85885 Vertex 10447 10.5039 -0.840393 -5.82585 Vertex 10448 10.5182 -15.6378 -1.68701 Vertex 10449 10.5183 3.54133 -5.62425 Vertex 10450 10.5195 9.12227 0.911131 Vertex 10451 10.5271 -14.8386 -0.465588 Vertex 10452 10.5305 -14.6859 0.651277 Vertex 10453 10.5312 -11.4201 -2.49583 Vertex 10454 10.5329 -2.38423 -5.89145 Vertex 10455 10.5331 -15.6176 -1.86309 Vertex 10456 10.5372 -15.5489 0.692284 Vertex 10457 10.5383 -15.452 -0.100028 Vertex 10458 10.54 -15.5169 -0.087701 Vertex 10459 10.5411 -16.2934 -2.09395 Vertex 10460 10.5439 -15.3174 -1.84967 Vertex 10461 10.548 -15.9902 0.146957 Vertex 10462 10.548 -15.7557 -1.47685 Vertex 10463 10.5492 -13.4731 1.26807 Vertex 10464 10.55 -15.2231 -2.67935 Vertex 10465 10.5501 -15.1011 0.704146 Vertex 10466 10.5516 -15.8172 -0.905828 Vertex 10467 10.5529 -15.8316 -2.03726 Vertex 10468 10.554 -16.2804 -2.90411 Vertex 10469 10.5547 -14.8855 0.52964 Vertex 10470 10.5561 1.24434 -0.551981 Vertex 10471 10.5577 -15.7618 -1.45611 Vertex 10472 10.56 -1.0925 -5.79057 Vertex 10473 10.5619 -15.592 -0.454099 Vertex 10474 10.566 -16.6071 -2.74803 Vertex 10475 10.567 -14.892 0.582293 Vertex 10476 10.5727 -15.7302 0.422932 Vertex 10477 10.5767 -16.837 0.685875 Vertex 10478 10.5853 -16.7737 1.02883 Vertex 10479 10.5902 -16.5051 -0.965312 Vertex 10480 10.5967 -15.7235 -1.4972 Vertex 10481 10.597 6.45553 -5.50768 Vertex 10482 10.6017 -15.5486 -2.6712 Vertex 10483 10.6019 -15.0985 -1.00007 Vertex 10484 10.6048 -15.9776 -0.907205 Vertex 10485 10.61 -14.8464 -0.465764 Vertex 10486 10.6122 -16.127 0.148446 Vertex 10487 10.6133 2.79154 -5.59136 Vertex 10488 10.6134 -14.5472 1.21956 Vertex 10489 10.6188 -15.7534 -0.069459 Vertex 10490 10.6205 -14.8559 0.038575 Vertex 10491 10.6224 -15.5636 -0.447075 Vertex 10492 10.629 -16.4459 1.13878 Vertex 10493 10.6324 -14.8784 -0.760937 Vertex 10494 10.6328 -15.0873 -0.892955 Vertex 10495 10.6334 -0.765666 -2.08109 Vertex 10496 10.6354 -14.861 -0.169522 Vertex 10497 10.6371 -15.0617 -0.026158 Vertex 10498 10.6405 -19.7502 -2.96992 Vertex 10499 10.6423 -15.7912 -1.20308 Vertex 10500 10.6461 -15.5561 -0.464796 Vertex 10501 10.6463 9.76304 -4.7473 Vertex 10502 10.6474 -15.8692 0.973914 Vertex 10503 10.6505 -15.6214 -2.71031 Vertex 10504 10.6516 -14.7563 0.214658 Vertex 10505 10.6554 -14.9287 0.053196 Vertex 10506 10.6589 4.60609 0.086972 Vertex 10507 10.6614 -14.7733 0.416879 Vertex 10508 10.6651 -12.9828 -0.666245 Vertex 10509 10.6765 -15.4494 0.063173 Vertex 10510 10.678 7.94452 0.527652 Vertex 10511 10.678 -4.1563 -5.78225 Vertex 10512 10.6792 -10.8455 -0.544866 Vertex 10513 10.6845 -16.3902 0.084887 Vertex 10514 10.6886 -15.0544 -0.011704 Vertex 10515 10.6925 7.13321 0.082106 Vertex 10516 10.6939 -16.4894 -2.14899 Vertex 10517 10.6956 -14.8473 0.42543 Vertex 10518 10.6982 -15.9909 -2.06029 Vertex 10519 10.699 -12.519 0.999461 Vertex 10520 10.7014 -16.8112 -0.679954 Vertex 10521 10.7066 -14.8155 0.221239 Vertex 10522 10.7073 -14.8731 -0.709271 Vertex 10523 10.7079 -15.6787 -1.64124 Vertex 10524 10.7098 -14.8587 -0.222102 Vertex 10525 10.71 -15.1684 -1.78481 Vertex 10526 10.7127 1.21392 -5.59313 Vertex 10527 10.7148 -15.5037 -2.68454 Vertex 10528 10.7157 -15.7347 -2.83193 Vertex 10529 10.7191 -15.7961 0.527957 Vertex 10530 10.7196 -15.3947 -1.08171 Vertex 10531 10.7226 -12.1474 -0.269684 Vertex 10532 10.7244 -11.7558 -0.984979 Vertex 10533 10.7249 -16.6535 -2.46258 Vertex 10534 10.7259 -14.8734 -1.07157 Vertex 10535 10.7269 -15.9091 -0.072221 Vertex 10536 10.7327 -15.8539 -2.86529 Vertex 10537 10.7335 -14.8566 -1.12313 Vertex 10538 10.7362 -15.3288 0.615248 Vertex 10539 10.7382 -16.0004 0.970921 Vertex 10540 10.7413 -16.3522 0.15375 Vertex 10541 10.7426 -15.6939 -0.506093 Vertex 10542 10.7429 -15.9078 -1.22531 Vertex 10543 10.7437 -19.8397 -2.59471 Vertex 10544 10.7467 -14.9368 0.52599 Vertex 10545 10.7495 -16.7526 -0.146369 Vertex 10546 10.7498 -14.4184 0.589041 Vertex 10547 10.7525 -16.3803 -1.04931 Vertex 10548 10.7535 -14.9514 0.064113 Vertex 10549 10.7599 -15.7087 0.213064 Vertex 10550 10.7629 -11.0447 -1.08783 Vertex 10551 10.7664 -16.7971 -0.414976 Vertex 10552 10.7666 -16.7698 -1.91735 Vertex 10553 10.7715 -16.1306 -1.94264 Vertex 10554 10.7722 -15.7787 -1.66207 Vertex 10555 10.7772 -15.8206 -0.511851 Vertex 10556 10.7792 -11.7079 -3.53787 Vertex 10557 10.7815 -15.5478 -2.02272 Vertex 10558 10.7833 -15.7841 0.509618 Vertex 10559 10.7868 -15.3841 -0.746702 Vertex 10560 10.787 -19.6814 -3.33927 Vertex 10561 10.7895 -0.209263 -6.05512 Vertex 10562 10.7897 -15.3667 -0.157165 Vertex 10563 10.7904 -14.8768 0.405624 Vertex 10564 10.7941 -16.451 -2.14016 Vertex 10565 10.7955 -15.9079 -2.07957 Vertex 10566 10.7955 -16.0007 -0.923008 Vertex 10567 10.7968 -15.4446 -1.64196 Vertex 10568 10.7977 -16.273 -3.03447 Vertex 10569 10.8029 -16.7017 -1.23085 Vertex 10570 10.8072 -14.9043 -1.65857 Vertex 10571 10.8119 -14.8261 0.212714 Vertex 10572 10.8131 5.51172 -5.70524 Vertex 10573 10.8136 -14.9301 -1.70804 Vertex 10574 10.814 -14.1873 0.185369 Vertex 10575 10.8149 0.381758 -5.94557 Vertex 10576 10.8156 -15.6309 -2.37675 Vertex 10577 10.817 -15.5095 -0.44835 Vertex 10578 10.8179 -4.18087 -0.639688 Vertex 10579 10.8187 -15.4068 0.331408 Vertex 10580 10.8236 -15.2098 0.093167 Vertex 10581 10.8277 -2.35746 -1.27515 Vertex 10582 10.8293 -16.7344 -1.57647 Vertex 10583 10.8327 -15.8253 -1.24594 Vertex 10584 10.8332 -15.7729 -2.92082 Vertex 10585 10.8344 -11.4471 -2.47008 Vertex 10586 10.8357 -16.6305 -2.13986 Vertex 10587 10.8361 -12.1674 -1.66008 Vertex 10588 10.8361 -12.9673 1.26495 Vertex 10589 10.8379 -15.6465 -2.03831 Vertex 10590 10.8394 -13.6742 1.35711 Vertex 10591 10.8426 -16.3463 -1.08643 Vertex 10592 10.8456 -11.2438 -1.77865 Vertex 10593 10.8481 -15.5361 0.615558 Vertex 10594 10.8501 6.5401 -0.418145 Vertex 10595 10.8532 -15.492 -1.34794 Vertex 10596 10.8545 6.71498 -0.409505 Vertex 10597 10.8603 -11.0918 -0.213886 Vertex 10598 10.864 -15.1282 0.466755 Vertex 10599 10.8681 -15.135 0.138505 Vertex 10600 10.8702 -15.9098 -0.091778 Vertex 10601 10.8706 -15.7268 -1.67847 Vertex 10602 10.8728 -14.8769 -2.24192 Vertex 10603 10.8791 -4.13804 -0.986501 Vertex 10604 10.8805 -15.6845 -2.41068 Vertex 10605 10.8806 -16.3333 1.20423 Vertex 10606 10.8809 -15.5007 -2.05257 Vertex 10607 10.8832 0.752879 -0.844994 Vertex 10608 10.8878 -15.6608 1.04154 Vertex 10609 10.8905 -14.9748 -1.08829 Vertex 10610 10.8951 -15.0804 0.388548 Vertex 10611 10.897 -16.5672 0.427453 Vertex 10612 10.901 -14.7751 -1.18422 Vertex 10613 10.901 9.45982 -0.000788 Vertex 10614 10.9013 -12.47 -3.27844 Vertex 10615 10.9022 -15.0368 0.246844 Vertex 10616 10.9053 -14.858 -1.18018 Vertex 10617 10.9075 -15.6035 -2.39309 Vertex 10618 10.9125 -10.7331 -0.184582 Vertex 10619 10.9148 1.60911 -0.336224 Vertex 10620 10.916 -14.9716 -0.861211 Vertex 10621 10.92 -14.9482 -0.066932 Vertex 10622 10.9201 -15.1404 -1.84063 Vertex 10623 10.9303 -15.1218 -2.66084 Vertex 10624 10.9309 -10.8519 -0.438323 Vertex 10625 10.9324 -12.4849 -3.50545 Vertex 10626 10.9349 -15.8461 -0.527289 Vertex 10627 10.949 -15.2146 -1.15255 Vertex 10628 10.9492 -15.3097 0.459072 Vertex 10629 10.9539 -14.8092 -1.56813 Vertex 10630 10.9565 -15.6155 -2.37041 Vertex 10631 10.9573 -14.8917 -1.55793 Vertex 10632 10.9596 -14.7406 -1.37632 Vertex 10633 10.9613 -16.536 0.95254 Vertex 10634 10.9657 -15.0234 -1.63395 Vertex 10635 10.9657 -16.3151 -1.9689 Vertex 10636 10.9702 -14.0223 0.047072 Vertex 10637 10.9712 -14.946 -1.95459 Vertex 10638 10.9726 -16.5373 0.688335 Vertex 10639 10.9737 -14.9251 -2.52603 Vertex 10640 10.9758 -11.5893 -2.975 Vertex 10641 10.9799 -12.4648 -2.93526 Vertex 10642 10.9819 -15.438 -1.96812 Vertex 10643 10.983 -15.538 0.097654 Vertex 10644 10.9865 -14.9222 -1.18149 Vertex 10645 10.9869 -15.427 -2.54073 Vertex 10646 10.9882 -14.8158 -1.36632 Vertex 10647 10.9884 -15.7216 -2.52619 Vertex 10648 10.9983 -13.9289 -0.199665 Vertex 10649 10.9997 -15.6564 -2.50629 Vertex 10650 11.0012 -15.2484 -1.53167 Vertex 10651 11.0019 3.62603 0.05797 Vertex 10652 11.002 7.49626 -4.43586 Vertex 10653 11.0066 -14.7359 -0.741896 Vertex 10654 11.0079 -14.7563 -0.79252 Vertex 10655 11.0094 -14.72 -0.199952 Vertex 10656 11.0097 8.43216 -4.33767 Vertex 10657 11.0099 -15.7912 -2.09578 Vertex 10658 11.0111 -14.7373 -0.148298 Vertex 10659 11.0141 -14.8927 -2.24054 Vertex 10660 11.015 -16.7028 -1.86513 Vertex 10661 11.0162 -11.3374 0.051851 Vertex 10662 11.0171 -15.17 -1.21031 Vertex 10663 11.0177 10.9967 -0.088386 Vertex 10664 11.0283 7.33807 -4.52109 Vertex 10665 11.0285 -16.6503 -1.32995 Vertex 10666 11.0333 -15.657 -3.03296 Vertex 10667 11.0342 -14.9531 -1.52806 Vertex 10668 11.0417 -15.6353 -2.57005 Vertex 10669 11.0438 2.44672 -0.137604 Vertex 10670 11.0463 -15.5077 -1.76154 Vertex 10671 11.0471 -15.2213 -0.741196 Vertex 10672 11.05 -15.2046 -0.17414 Vertex 10673 11.0521 -15.1926 -1.46406 Vertex 10674 11.0536 -15.8961 -2.12827 Vertex 10675 11.054 4.38983 -5.81123 Vertex 10676 11.0541 2.74427 -5.47023 Vertex 10677 11.057 -16.5528 -2.89091 Vertex 10678 11.0584 -12.6486 -1.53876 Vertex 10679 11.0626 -14.1711 1.09935 Vertex 10680 11.0628 -16.6754 -1.59999 Vertex 10681 11.0634 -11.6735 -3.27665 Vertex 10682 11.0701 -14.9261 -2.47691 Vertex 10683 11.0737 -14.9358 -2.00814 Vertex 10684 11.0768 3.52213 -5.5801 Vertex 10685 11.0811 -11.8187 -3.95914 Vertex 10686 11.0813 -0.426052 -5.7302 Vertex 10687 11.0818 -14.8644 -1.35063 Vertex 10688 11.0824 -15.1123 -1.33438 Vertex 10689 11.0867 -12.6562 0.903111 Vertex 10690 11.107 -15.5363 -2.63813 Vertex 10691 11.1132 -15.6962 -2.13671 Vertex 10692 11.1167 -15.6203 -1.35304 Vertex 10693 11.1183 -12.5874 -3.86544 Vertex 10694 11.1306 -15.7872 -2.14632 Vertex 10695 11.1427 -13.8584 -0.467892 Vertex 10696 11.1448 6.62236 -5.13339 Vertex 10697 11.152 -15.261 -0.456826 Vertex 10698 11.1552 -12.5531 -2.33756 Vertex 10699 11.1565 -15.0708 0.460273 Vertex 10700 11.1566 -14.6396 -0.668533 Vertex 10701 11.158 -11.73 -3.47793 Vertex 10702 11.1586 -14.6281 -0.279951 Vertex 10703 11.168 -14.7207 -0.663212 Vertex 10704 11.17 -14.7094 -0.280875 Vertex 10705 11.1748 -15.7971 -2.20037 Vertex 10706 11.1761 -14.8398 -0.745 Vertex 10707 11.1789 -14.8236 -0.192706 Vertex 10708 11.1807 -15.3073 0.866062 Vertex 10709 11.1843 -15.7151 -3.18251 Vertex 10710 11.1854 -14.5798 -0.475874 Vertex 10711 11.1942 -14.2264 0.051637 Vertex 10712 11.1955 -13.2825 -1.11614 Vertex 10713 11.2044 11.4128 -3.86788 Vertex 10714 11.208 -15.538 -0.652813 Vertex 10715 11.2082 -16.5797 -2.66788 Vertex 10716 11.2127 12.1837 -2.51991 Vertex 10717 11.2168 -15.596 -2.78502 Vertex 10718 11.2182 -15.6405 -2.71987 Vertex 10719 11.2192 -14.1644 -2.85257 Vertex 10720 11.2208 -14.6527 -0.474016 Vertex 10721 11.2234 -15.3993 -3.30074 Vertex 10722 11.2264 -14.1507 -3.46387 Vertex 10723 11.2317 -16.2788 -2.11918 Vertex 10724 11.2324 -15.1001 -1.87066 Vertex 10725 11.2348 -15.0822 -2.62578 Vertex 10726 11.2424 -15.7842 -1.01411 Vertex 10727 11.2452 5.79061 -0.426924 Vertex 10728 11.2466 -15.0413 -0.655389 Vertex 10729 11.2486 -15.03 -0.27166 Vertex 10730 11.2536 -14.7722 -0.6464 Vertex 10731 11.2554 -14.7618 -0.29562 Vertex 10732 11.2599 1.18203 -5.31531 Vertex 10733 11.2661 -0.564555 -5.63842 Vertex 10734 11.2749 -13.9913 0.167229 Vertex 10735 11.2824 -15.3415 -2.52305 Vertex 10736 11.2828 -15.349 -1.98084 Vertex 10737 11.2867 -16.5628 -2.39795 Vertex 10738 11.2904 -15.1544 -0.173487 Vertex 10739 11.294 -11.8727 -4.1656 Vertex 10740 11.2993 -13.1626 1.29423 Vertex 10741 11.3019 -14.99 -0.593574 Vertex 10742 11.302 -13.7591 0.972896 Vertex 10743 11.3032 -14.9824 -0.336742 Vertex 10744 11.3132 -15.5891 -0.24729 Vertex 10745 11.3165 -14.081 -3.89894 Vertex 10746 11.3195 -14.692 -0.473394 Vertex 10747 11.3201 -13.6075 -0.037681 Vertex 10748 11.3229 -16.1298 -3.25517 Vertex 10749 11.3231 -15.6883 -2.31779 Vertex 10750 11.3244 11.6914 -0.936978 Vertex 10751 11.3252 -15.3504 -0.077584 Vertex 10752 11.3324 8.64157 -0.444411 Vertex 10753 11.3345 12.042 -1.93847 Vertex 10754 11.3385 -14.9955 0.883968 Vertex 10755 11.3437 -14.9225 -0.467114 Vertex 10756 11.3437 -11.8273 -3.81615 Vertex 10757 11.3441 -14.9346 -3.43658 Vertex 10758 11.345 -14.9334 -1.92578 Vertex 10759 11.3532 -14.8954 -1.97322 Vertex 10760 11.3534 -14.8825 -2.50652 Vertex 10761 11.3555 0.396001 -5.58136 Vertex 10762 11.3615 -15.413 -2.47544 Vertex 10763 11.3623 -14.9145 -2.55677 Vertex 10764 11.3629 -12.9147 -2.2641 Vertex 10765 11.3657 -14.8991 0.445296 Vertex 10766 11.3874 -15.6146 -1.94062 Vertex 10767 11.3899 -15.6268 -1.23258 Vertex 10768 11.3953 -15.0347 -2.9148 Vertex 10769 11.3967 -15.6828 0.069326 Vertex 10770 11.4129 0.104779 -1.15676 Vertex 10771 11.4175 -15.6445 -2.21244 Vertex 10772 11.4259 -12.8786 0.852354 Vertex 10773 11.4286 -14.5305 -0.43956 Vertex 10774 11.429 7.14219 -3.84169 Vertex 10775 11.4339 7.00977 -3.97974 Vertex 10776 11.44 6.54124 -1.12531 Vertex 10777 11.4556 -14.2987 -0.62301 Vertex 10778 11.4642 7.32507 -3.69177 Vertex 10779 11.4649 6.71814 -1.14636 Vertex 10780 11.4794 7.85952 -0.759694 Vertex 10781 11.4853 1.17198 -5.19011 Vertex 10782 11.4969 -15.0457 -1.97368 Vertex 10783 11.497 -15.0316 -2.51499 Vertex 10784 11.4971 5.6358 -5.49496 Vertex 10785 11.5005 -14.1902 -2.49444 Vertex 10786 11.5063 -15.2357 -2.4386 Vertex 10787 11.5092 -15.5923 -1.95637 Vertex 10788 11.5095 -15.2379 -2.06001 Vertex 10789 11.5138 -14.829 -2.42467 Vertex 10790 11.5171 6.43823 -4.8814 Vertex 10791 11.5178 -14.8373 -2.0536 Vertex 10792 11.5315 -14.7997 -2.24012 Vertex 10793 11.5337 -14.9112 -2.05298 Vertex 10794 11.5342 -14.9009 -2.42464 Vertex 10795 11.5379 -14.7618 0.85201 Vertex 10796 11.5452 -14.2384 -1.86785 Vertex 10797 11.5453 -15.5176 -1.37737 Vertex 10798 11.5463 -13.6625 0.543902 Vertex 10799 11.5491 -13.7826 -1.61184 Vertex 10800 11.5675 4.97147 -0.359619 Vertex 10801 11.5678 0.328381 -5.44424 Vertex 10802 11.5792 -16.1325 -2.24427 Vertex 10803 11.5795 -16.0353 -1.18026 Vertex 10804 11.5799 -15.1968 -2.37561 Vertex 10805 11.5819 -15.4065 -0.351269 Vertex 10806 11.5855 -15.2001 -2.12791 Vertex 10807 11.5932 6.20771 -1.89763 Vertex 10808 11.594 -14.993 -2.41156 Vertex 10809 11.5957 -14.9972 -2.07351 Vertex 10810 11.5966 -4.12637 -6.20579 Vertex 10811 11.6002 -14.8653 -2.2431 Vertex 10812 11.6052 6.11762 -1.23264 Vertex 10813 11.6121 -14.1644 0.578828 Vertex 10814 11.6131 -10.6159 0.158918 Vertex 10815 11.6146 -16.3906 -3.14493 Vertex 10816 11.6205 -15.9941 -3.47278 Vertex 10817 11.6227 -14.9452 -2.38692 Vertex 10818 11.6231 -14.7672 -2.15108 Vertex 10819 11.6338 -15.1566 -2.25184 Vertex 10820 11.6363 -15.3961 1.10208 Vertex 10821 11.6503 -14.7353 -1.54377 Vertex 10822 11.6509 -11.9104 -4.22488 Vertex 10823 11.6642 -2.2815 -6.03182 Vertex 10824 11.6674 -14.9406 -2.24356 Vertex 10825 11.6763 9.97247 -0.338218 Vertex 10826 11.6766 -16.1171 -2.33609 Vertex 10827 11.6845 6.24356 -2.07001 Vertex 10828 11.6926 -16.2389 -1.09365 Vertex 10829 11.7198 -14.2587 -1.35265 Vertex 10830 11.7391 2.52511 -4.92307 Vertex 10831 11.7428 1.36648 -0.736056 Vertex 10832 11.751 -4.05887 -5.78443 Vertex 10833 11.7553 -15.335 -0.623129 Vertex 10834 11.7785 4.53781 -5.59161 Vertex 10835 11.7839 -14.8969 -1.00311 Vertex 10836 11.7965 -15.974 -0.047374 Vertex 10837 11.8023 -16.3919 -2.95023 Vertex 10838 11.8069 -15.7694 0.450244 Vertex 10839 11.8123 3.39867 -5.12748 Vertex 10840 11.8152 9.97106 -4.12256 Vertex 10841 11.8439 -16.3714 -2.67096 Vertex 10842 11.8518 7.09864 -1.27433 Vertex 10843 11.8588 11.3491 -2.94042 Vertex 10844 11.8616 6.92034 -3.1044 Vertex 10845 11.8707 -15.562 -3.72178 Vertex 10846 11.8829 -15.0816 -3.78264 Vertex 10847 11.8848 -15.6597 0.943686 Vertex 10848 11.8894 1.15972 -4.94565 Vertex 10849 11.8909 6.24238 -3.74949 Vertex 10850 11.8919 -11.2679 0.185742 Vertex 10851 11.8969 6.26146 -3.57864 Vertex 10852 11.9028 -16.3015 -1.95603 Vertex 10853 11.9053 -16.2528 -1.44791 Vertex 10854 11.9116 -15.7159 0.699502 Vertex 10855 11.9415 -12.5996 -4.08569 Vertex 10856 11.9451 5.14042 -1.31956 Vertex 10857 11.9467 -11.8588 -3.94525 Vertex 10858 11.9567 9.13365 -0.662654 Vertex 10859 11.9635 -16.2711 -1.70445 Vertex 10860 11.9646 3.70072 -0.412197 Vertex 10861 11.976 5.87936 -5.00302 Vertex 10862 11.9769 5.16 -2.30496 Vertex 10863 11.9905 -16.0764 -3.4622 Vertex 10864 11.9953 -16.291 -0.805464 Vertex 10865 11.9965 0.971716 -1.33469 Vertex 10866 12.0053 8.53473 -0.901799 Vertex 10867 12.0125 6.05295 -4.52471 Vertex 10868 12.0157 -0.540127 -1.58394 Vertex 10869 12.0298 6.6407 -1.97261 Vertex 10870 12.0428 5.18181 -2.54117 Vertex 10871 12.0439 -16.1654 -0.305275 Vertex 10872 12.0449 10.6861 -1.0921 Vertex 10873 12.0522 -16.0288 -2.51998 Vertex 10874 12.0562 0.430306 -5.04898 Vertex 10875 12.0635 -4.06951 -0.517512 Vertex 10876 12.0674 8.85264 -3.90827 Vertex 10877 12.0786 -16.2229 -0.559301 Vertex 10878 12.0792 -10.6409 0.044497 Vertex 10879 12.0986 11.0863 -1.9961 Vertex 10880 12.1068 7.62323 -1.35667 Vertex 10881 12.109 2.46215 -0.613683 Vertex 10882 12.1252 -11.0006 -0.057117 Vertex 10883 12.1333 -4.02416 -0.835584 Vertex 10884 12.136 -0.406476 -5.22722 Vertex 10885 12.145 -10.7893 -0.283205 Vertex 10886 12.1561 1.04236 -1.77804 Vertex 10887 12.173 6.75602 -2.46361 Vertex 10888 12.1767 6.47339 -2.5183 Vertex 10889 12.1824 -13.8478 0.709292 Vertex 10890 12.2016 -16.0535 -3.25553 Vertex 10891 12.2144 -2.23155 -1.06716 Vertex 10892 12.2169 -11.9245 -4.30735 Vertex 10893 12.2232 -15.0992 1.11797 Vertex 10894 12.2233 7.90069 -3.3034 Vertex 10895 12.2239 -13.964 -4.07233 Vertex 10896 12.2341 3.46057 -2.41887 Vertex 10897 12.2517 -16.0741 -2.88932 Vertex 10898 12.2859 7.15385 -1.93038 Vertex 10899 12.2888 2.29246 -2.27515 Vertex 10900 12.2898 -15.0625 -3.6052 Vertex 10901 12.2954 7.50564 -2.93177 Vertex 10902 12.2969 9.97666 -1.40516 Vertex 10903 12.309 -12.9969 0.425631 Vertex 10904 12.3093 -2.22293 -5.61416 Vertex 10905 12.3116 3.42665 -2.64554 Vertex 10906 12.3121 10.0612 -2.96147 Vertex 10907 12.3198 -15.9654 -1.21536 Vertex 10908 12.3267 -15.6914 0.039615 Vertex 10909 12.3315 4.73032 -5.05921 Vertex 10910 12.3344 10.1008 -2.14571 Vertex 10911 12.3385 2.36776 -1.45757 Vertex 10912 12.3389 0.601157 -1.74481 Vertex 10913 12.3411 7.22459 -2.39375 Vertex 10914 12.3421 -15.6477 -3.59771 Vertex 10915 12.3431 5.24845 -2.7205 Vertex 10916 12.3479 5.15924 -3.41971 Vertex 10917 12.3508 3.658 -1.41856 Vertex 10918 12.356 5.14346 -3.60313 Vertex 10919 12.3658 2.19166 -2.47457 Vertex 10920 12.4087 9.56463 -2.91148 Vertex 10921 12.4111 -16.0125 -2.13623 Vertex 10922 12.4212 -11.8389 -3.89164 Vertex 10923 12.435 -15.4485 0.270509 Vertex 10924 12.4359 -12.5867 -4.00745 Vertex 10925 12.4386 -14.0457 0.833116 Vertex 10926 12.4407 2.34491 -4.33406 Vertex 10927 12.4446 -12.305 0.017973 Vertex 10928 12.4457 9.25042 -1.68808 Vertex 10929 12.4533 -15.8923 -1.53692 Vertex 10930 12.4545 -15.9789 -1.82921 Vertex 10931 12.4552 1.13583 -2.03142 Vertex 10932 12.4715 9.46644 -2.32582 Vertex 10933 12.4817 -10.7163 -0.250181 Vertex 10934 12.4862 -15.7972 -2.75547 Vertex 10935 12.4873 -0.552108 -2.16414 Vertex 10936 12.5021 -15.376 0.565035 Vertex 10937 12.5034 8.27288 -2.05473 Vertex 10938 12.5104 -15.2222 -3.06807 Vertex 10939 12.511 8.68854 -1.86261 Vertex 10940 12.5121 -13.8528 -3.65664 Vertex 10941 12.5281 -15.2503 0.848337 Vertex 10942 12.5336 -15.0717 -3.41853 Vertex 10943 12.5459 8.52124 -2.56425 Vertex 10944 12.5491 8.81888 -2.66419 Vertex 10945 12.5716 -15.7805 -3.04087 Vertex 10946 12.5724 4.9783 -4.37186 Vertex 10947 12.574 8.30105 -2.36556 Vertex 10948 12.5877 1.31546 -4.21875 Vertex 10949 12.5914 -15.6773 -3.36636 Vertex 10950 12.5946 -14.797 1.02564 Vertex 10951 12.6092 -11.8677 -4.13247 Vertex 10952 12.6103 3.35823 -4.47984 Vertex 10953 12.6238 -10.9717 -0.925443 Vertex 10954 12.631 0.596058 -4.38827 Vertex 10955 12.6528 -11.8301 -0.768943 Vertex 10956 12.6531 0.637841 -2.41103 Vertex 10957 12.6686 3.39306 -4.04017 Vertex 10958 12.6833 -0.435565 -4.03055 Vertex 10959 12.6896 -15.8729 -0.95515 Vertex 10960 12.693 -4.02814 -5.90212 Vertex 10961 12.7032 -14.0047 -3.47366 Vertex 10962 12.7175 -3.98985 -5.39489 Vertex 10963 12.7204 -14.1419 0.552464 Vertex 10964 12.7222 -15.7062 -0.337668 Vertex 10965 12.7269 3.4279 -3.60051 Vertex 10966 12.728 -15.8175 -0.648377 Vertex 10967 12.732 -15.2943 -2.73725 Vertex 10968 12.7351 -11.7667 -3.66032 Vertex 10969 12.7383 3.40037 -3.41662 Vertex 10970 12.743 3.41511 -2.91249 Vertex 10971 12.7598 -0.360883 -4.5732 Vertex 10972 12.7665 1.4201 -2.55286 Vertex 10973 12.7722 -15.0902 -1.47382 Vertex 10974 12.7758 -12.5228 -3.68024 Vertex 10975 12.7843 -15.6495 -1.3861 Vertex 10976 12.7903 -15.1108 -1.78169 Vertex 10977 12.8096 -15.6314 -1.69251 Vertex 10978 12.8155 -15.1038 -2.37665 Vertex 10979 12.8208 -14.6864 0.001691 Vertex 10980 12.8322 -10.8359 -0.694152 Vertex 10981 12.8339 -15.6389 -2.30819 Vertex 10982 12.8456 -15.1558 0.143662 Vertex 10983 12.848 -13.6203 0.034911 Vertex 10984 12.8502 -14.8982 0.710457 Vertex 10985 12.8619 2.37791 -4.01278 Vertex 10986 12.8694 -14.0649 -2.86136 Vertex 10987 12.8792 -11.0924 -1.35474 Vertex 10988 12.8793 0.641095 -3.82312 Vertex 10989 12.8794 -11.7767 -3.84397 Vertex 10990 12.8946 -14.234 -2.34105 Vertex 10991 12.9147 -11.9981 -1.21193 Vertex 10992 12.9266 2.4349 -3.41759 Vertex 10993 12.9371 -15.0637 -2.12628 Vertex 10994 12.9428 -15.6583 -2.00614 Vertex 10995 12.9517 -11.6649 -3.32659 Vertex 10996 12.9518 1.49059 -3.34286 Vertex 10997 12.9539 -14.8624 -0.299966 Vertex 10998 12.9552 -14.1652 -1.71735 Vertex 10999 12.9612 1.48173 -3.83178 Vertex 11000 12.9654 -14.464 0.248668 Vertex 11001 12.9673 0.674524 -3.07725 Vertex 11002 12.9736 -15.3536 -0.105384 Vertex 11003 12.9762 -15.0122 0.408439 Vertex 11004 13.0045 -12.4813 -3.31957 Vertex 11005 13.0145 -15.0787 -1.15939 Vertex 11006 13.0201 -2.18379 -4.40473 Vertex 11007 13.0205 -13.9035 -0.549554 Vertex 11008 13.0209 -2.1583 -1.83543 Vertex 11009 13.0305 -14.9534 -0.544583 Vertex 11010 13.0341 -11.1979 -1.72699 Vertex 11011 13.0428 -15.5527 -1.06836 Vertex 11012 13.0434 2.38388 -3.19151 Vertex 11013 13.0529 -11.5229 -2.84846 Vertex 11014 13.0574 -0.446797 -3.10432 Vertex 11015 13.0607 -15.4069 -0.42389 Vertex 11016 13.0692 -12.1111 -1.60546 Vertex 11017 13.0708 0.653736 -3.52864 Vertex 11018 13.0808 -2.15287 -5.042 Vertex 11019 13.0882 1.50948 -3.18203 Vertex 11020 13.0885 -12.4209 -2.7996 Vertex 11021 13.0964 -11.6413 -3.40508 Vertex 11022 13.1091 -14.0454 -1.09586 Vertex 11023 13.1247 -0.384085 -3.65645 Vertex 11024 13.1601 -11.3579 -2.28557 Vertex 11025 13.1636 -14.9335 -0.873964 Vertex 11026 13.1823 -15.4512 -0.749206 Vertex 11027 13.1866 -12.2705 -2.19852 Vertex 11028 13.2132 -3.96835 -1.02144 Vertex 11029 13.2273 -3.91312 -1.28873 Vertex 11030 13.2365 -11.1051 -1.65732 Vertex 11031 13.2647 -2.13805 -2.53271 Vertex 11032 13.2755 -3.92045 -4.90121 Vertex 11033 13.3284 -2.1332 -3.24909 Vertex 11034 13.3528 -11.4309 -2.78944 Vertex 11035 13.5719 -3.94771 -5.17191 Vertex 11036 13.5736 -2.10811 -3.96817 Vertex 11037 13.574 -3.92145 -4.38341 Vertex 11038 13.778 -3.86076 -2.16002 Vertex 11039 13.8829 -3.91081 -1.81014 Vertex 11040 13.8939 -3.86429 -3.88233 Vertex 11041 13.8998 -3.85809 -3.18274 Vertex 11042 13.9084 -3.91663 -4.65365 Vertex 11043 14.2093 -3.88703 -3.73767 Vertex 11044 14.2166 -3.8585 -2.81153 Vertex 11045 -1.19839 20.6779 2.10525 Vertex 11046 -1.40496 20.6442 2.05447 Vertex 11047 -1.60387 20.5777 2.00557 Vertex 11048 -1.79022 20.4799 1.95976 Vertex 11049 -1.95942 20.3533 1.91816 Vertex 11050 -2.10731 20.201 1.88181 Vertex 11051 -2.23024 20.0268 1.8516 Vertex 11052 -2.3252 19.8349 1.82826 Vertex 11053 -2.38983 19.63 1.81237 Vertex 11054 -2.42254 19.4173 1.80433 Vertex 11055 -2.42254 19.2019 1.80434 Vertex 11056 -2.38983 18.9892 1.81239 Vertex 11057 -2.3252 18.7844 1.82828 Vertex 11058 -2.23025 18.5925 1.85163 Vertex 11059 -2.10732 18.4183 1.88186 Vertex 11060 -1.95943 18.266 1.91822 Vertex 11061 -1.79023 18.1394 1.95982 Vertex 11062 -1.60388 18.0416 2.00563 Vertex 11063 -1.40497 17.975 2.05453 Vertex 11064 -1.1984 17.9413 2.10532 Vertex 11065 -0.989257 17.9413 2.15673 Vertex 11066 -0.782686 17.975 2.20752 Vertex 11067 -0.583777 18.0416 2.25641 Vertex 11068 -0.397427 18.1394 2.30222 Vertex 11069 -0.228224 18.266 2.34382 Vertex 11070 -0.080335 18.4183 2.38017 Vertex 11071 0.0425985 18.5925 2.41038 Vertex 11072 0.137549 18.7844 2.43372 Vertex 11073 0.20218 18.9892 2.44961 Vertex 11074 0.234899 19.2019 2.45764 Vertex 11075 0.234899 19.4173 2.45764 Vertex 11076 0.202183 19.63 2.44959 Vertex 11077 0.137555 19.8349 2.4337 Vertex 11078 0.0426062 20.0268 2.41035 Vertex 11079 -0.0803252 20.201 2.38012 Vertex 11080 -0.228213 20.3533 2.34376 Vertex 11081 -0.397415 20.4799 2.30216 Vertex 11082 -0.583764 20.5777 2.25635 Vertex 11083 -0.782672 20.6442 2.20745 Vertex 11084 -0.989243 20.6779 2.15666 Vertex 11085 -1.24691 20.6442 2.31373 Vertex 11086 -1.4484 20.6114 2.2642 Vertex 11087 -1.64241 20.5464 2.2165 Vertex 11088 -1.82417 20.4511 2.17182 Vertex 11089 -1.98921 20.3276 2.13126 Vertex 11090 -2.13345 20.1791 2.09579 Vertex 11091 -2.25336 20.0091 2.06632 Vertex 11092 -2.34597 19.8219 2.04356 Vertex 11093 -2.40901 19.6222 2.02807 Vertex 11094 -2.44092 19.4146 2.02023 Vertex 11095 -2.44092 19.2046 2.02023 Vertex 11096 -2.40901 18.9971 2.02808 Vertex 11097 -2.34598 18.7973 2.04359 Vertex 11098 -2.25337 18.6102 2.06636 Vertex 11099 -2.13346 18.4402 2.09584 Vertex 11100 -1.98922 18.2917 2.13131 Vertex 11101 -1.82418 18.1682 2.17188 Vertex 11102 -1.64242 18.0728 2.21657 Vertex 11103 -1.44841 18.0079 2.26427 Vertex 11104 -1.24693 17.9751 2.3138 Vertex 11105 -1.04293 17.9751 2.36395 Vertex 11106 -0.841445 18.0079 2.41348 Vertex 11107 -0.647434 18.0728 2.46117 Vertex 11108 -0.465672 18.1682 2.50586 Vertex 11109 -0.300636 18.2917 2.54642 Vertex 11110 -0.156389 18.4402 2.58188 Vertex 11111 -0.036482 18.6101 2.61136 Vertex 11112 0.0561313 18.7973 2.63412 Vertex 11113 0.11917 18.9971 2.64961 Vertex 11114 0.151083 19.2046 2.65745 Vertex 11115 0.151085 19.4146 2.65744 Vertex 11116 0.119174 19.6222 2.6496 Vertex 11117 0.0561367 19.822 2.63409 Vertex 11118 -0.036474 20.0091 2.61132 Vertex 11119 -0.156378 20.1791 2.58184 Vertex 11120 -0.300624 20.3276 2.54637 Vertex 11121 -0.46566 20.4511 2.5058 Vertex 11122 -0.647421 20.5464 2.46111 Vertex 11123 -0.841432 20.6114 2.41341 Vertex 11124 -1.04291 20.6442 2.36388 Vertex 11125 -1.29103 20.5777 2.51512 Vertex 11126 -1.48247 20.5465 2.46806 Vertex 11127 -1.6668 20.4848 2.42274 Vertex 11128 -1.8395 20.3941 2.3803 Vertex 11129 -1.9963 20.2768 2.34175 Vertex 11130 -2.13336 20.1357 2.30805 Vertex 11131 -2.24729 19.9743 2.28005 Vertex 11132 -2.33528 19.7964 2.25843 Vertex 11133 -2.39517 19.6066 2.24371 Vertex 11134 -2.4255 19.4094 2.23626 Vertex 11135 -2.4255 19.2099 2.23626 Vertex 11136 -2.39518 19.0127 2.24372 Vertex 11137 -2.33529 18.8229 2.25845 Vertex 11138 -2.24729 18.645 2.28009 Vertex 11139 -2.13336 18.4835 2.3081 Vertex 11140 -1.99631 18.3424 2.34179 Vertex 11141 -1.83951 18.2252 2.38035 Vertex 11142 -1.66681 18.1345 2.42281 Vertex 11143 -1.48248 18.0728 2.46813 Vertex 11144 -1.29104 18.0416 2.51519 Vertex 11145 -1.09722 18.0416 2.56284 Vertex 11146 -0.905782 18.0728 2.6099 Vertex 11147 -0.721445 18.1345 2.65522 Vertex 11148 -0.548747 18.2252 2.69767 Vertex 11149 -0.391941 18.3424 2.73622 Vertex 11150 -0.254887 18.4836 2.7699 Vertex 11151 -0.14096 18.6451 2.79791 Vertex 11152 -0.0529655 18.8229 2.81953 Vertex 11153 0.00693 19.0127 2.83425 Vertex 11154 0.0372512 19.2099 2.84171 Vertex 11155 0.0372528 19.4094 2.8417 Vertex 11156 0.00693325 19.6066 2.83424 Vertex 11157 -0.0529603 19.7964 2.81951 Vertex 11158 -0.140953 19.9743 2.79787 Vertex 11159 -0.254878 20.1357 2.76986 Vertex 11160 -0.391931 20.2768 2.73617 Vertex 11161 -0.548736 20.3941 2.69761 Vertex 11162 -0.721432 20.4848 2.65516 Vertex 11163 -0.905768 20.5465 2.60984 Vertex 11164 -1.0972 20.5777 2.56277 Vertex 11165 -1.32965 20.4799 2.70446 Vertex 11166 -1.50633 20.4511 2.66103 Vertex 11167 -1.67645 20.3941 2.61921 Vertex 11168 -1.83583 20.3105 2.58003 Vertex 11169 -1.98055 20.2022 2.54446 Vertex 11170 -2.10703 20.072 2.51337 Vertex 11171 -2.21217 19.923 2.48752 Vertex 11172 -2.29338 19.7589 2.46756 Vertex 11173 -2.34866 19.5837 2.45398 Vertex 11174 -2.37665 19.4018 2.44711 Vertex 11175 -2.37665 19.2176 2.44711 Vertex 11176 -2.34866 19.0356 2.45399 Vertex 11177 -2.29339 18.8604 2.46759 Vertex 11178 -2.21218 18.6963 2.48756 Vertex 11179 -2.10704 18.5473 2.5134 Vertex 11180 -1.98055 18.417 2.5445 Vertex 11181 -1.83584 18.3088 2.58009 Vertex 11182 -1.67646 18.2251 2.61927 Vertex 11183 -1.50634 18.1682 2.6611 Vertex 11184 -1.32967 18.1394 2.70453 Vertex 11185 -1.15079 18.1394 2.7485 Vertex 11186 -0.974112 18.1682 2.79193 Vertex 11187 -0.803988 18.2252 2.83376 Vertex 11188 -0.644607 18.3088 2.87294 Vertex 11189 -0.499892 18.417 2.90851 Vertex 11190 -0.373406 18.5473 2.9396 Vertex 11191 -0.268264 18.6963 2.96545 Vertex 11192 -0.187055 18.8604 2.9854 Vertex 11193 -0.131778 19.0356 2.99899 Vertex 11194 -0.103795 19.2176 3.00587 Vertex 11195 -0.103794 19.4018 3.00586 Vertex 11196 -0.131775 19.5837 2.99898 Vertex 11197 -0.18705 19.7589 2.98538 Vertex 11198 -0.268258 19.923 2.96541 Vertex 11199 -0.373398 20.072 2.93956 Vertex 11200 -0.499883 20.2022 2.90846 Vertex 11201 -0.644597 20.3105 2.87289 Vertex 11202 -0.803977 20.3941 2.8337 Vertex 11203 -0.974099 20.4511 2.79188 Vertex 11204 -1.15078 20.4799 2.74844 Vertex 11205 -1.36183 20.3533 2.8771 Vertex 11206 -1.51939 20.3276 2.83836 Vertex 11207 -1.67111 20.2768 2.80107 Vertex 11208 -1.81325 20.2023 2.76613 Vertex 11209 -1.94231 20.1057 2.7344 Vertex 11210 -2.05512 19.9895 2.70667 Vertex 11211 -2.14889 19.8567 2.68362 Vertex 11212 -2.22131 19.7103 2.66582 Vertex 11213 -2.27061 19.5541 2.65371 Vertex 11214 -2.29557 19.3918 2.64758 Vertex 11215 -2.29557 19.2275 2.64758 Vertex 11216 -2.27061 19.0653 2.65372 Vertex 11217 -2.22131 18.909 2.66584 Vertex 11218 -2.14889 18.7627 2.68365 Vertex 11219 -2.05512 18.6297 2.70671 Vertex 11220 -1.94232 18.5136 2.73444 Vertex 11221 -1.81326 18.417 2.76617 Vertex 11222 -1.67112 18.3425 2.80112 Vertex 11223 -1.51941 18.2917 2.83842 Vertex 11224 -1.36184 18.266 2.87715 Vertex 11225 -1.20231 18.266 2.91637 Vertex 11226 -1.04475 18.2917 2.95511 Vertex 11227 -0.89303 18.3425 2.9924 Vertex 11228 -0.750892 18.417 3.02734 Vertex 11229 -0.621831 18.5136 3.05906 Vertex 11230 -0.509028 18.6298 3.0868 Vertex 11231 -0.41526 18.7627 3.10984 Vertex 11232 -0.342835 18.909 3.12765 Vertex 11233 -0.293538 19.0653 3.13976 Vertex 11234 -0.268581 19.2275 3.1459 Vertex 11235 -0.26858 19.3918 3.14589 Vertex 11236 -0.293535 19.5541 3.13975 Vertex 11237 -0.342831 19.7103 3.12762 Vertex 11238 -0.415254 19.8567 3.10982 Vertex 11239 -0.509021 19.9895 3.08676 Vertex 11240 -0.621823 20.1057 3.05903 Vertex 11241 -0.750882 20.2022 3.0273 Vertex 11242 -0.893021 20.2768 2.99235 Vertex 11243 -1.04474 20.3276 2.95505 Vertex 11244 -1.20231 20.3533 2.91632 Vertex 11245 -1.38678 20.201 3.02877 Vertex 11246 -1.52135 20.1791 2.99569 Vertex 11247 -1.65093 20.1357 2.96383 Vertex 11248 -1.77233 20.072 2.93399 Vertex 11249 -1.88256 19.9895 2.90689 Vertex 11250 -1.9789 19.8904 2.88321 Vertex 11251 -2.05899 19.7768 2.86352 Vertex 11252 -2.12084 19.6518 2.84832 Vertex 11253 -2.16295 19.5184 2.83797 Vertex 11254 -2.18426 19.3798 2.83274 Vertex 11255 -2.18426 19.2395 2.83274 Vertex 11256 -2.16295 19.1009 2.83799 Vertex 11257 -2.12084 18.9675 2.84834 Vertex 11258 -2.05898 18.8425 2.86355 Vertex 11259 -1.9789 18.729 2.88324 Vertex 11260 -1.88256 18.6297 2.90693 Vertex 11261 -1.77233 18.5473 2.93403 Vertex 11262 -1.65093 18.4836 2.96387 Vertex 11263 -1.52135 18.4403 2.99573 Vertex 11264 -1.38678 18.4183 3.02882 Vertex 11265 -1.25054 18.4183 3.06231 Vertex 11266 -1.11596 18.4403 3.0954 Vertex 11267 -0.986382 18.4836 3.12725 Vertex 11268 -0.864983 18.5473 3.15709 Vertex 11269 -0.754755 18.6297 3.18418 Vertex 11270 -0.658412 18.729 3.20786 Vertex 11271 -0.578326 18.8425 3.22755 Vertex 11272 -0.51647 18.9675 3.24275 Vertex 11273 -0.474366 19.1009 3.2531 Vertex 11274 -0.453051 19.2395 3.25834 Vertex 11275 -0.453051 19.3798 3.25834 Vertex 11276 -0.474364 19.5184 3.2531 Vertex 11277 -0.516466 19.6518 3.24274 Vertex 11278 -0.578321 19.7768 3.22753 Vertex 11279 -0.658406 19.8904 3.20784 Vertex 11280 -0.754748 19.9896 3.18415 Vertex 11281 -0.864975 20.072 3.15705 Vertex 11282 -0.986373 20.1357 3.1272 Vertex 11283 -1.11595 20.1791 3.09535 Vertex 11284 -1.25052 20.201 3.06226 Vertex 11285 -1.40387 20.0268 3.15574 Vertex 11286 -1.51214 20.0091 3.12913 Vertex 11287 -1.61639 19.9743 3.1035 Vertex 11288 -1.71405 19.923 3.07949 Vertex 11289 -1.80274 19.8567 3.05769 Vertex 11290 -1.88024 19.7768 3.03864 Vertex 11291 -1.94468 19.6855 3.0228 Vertex 11292 -1.99444 19.5849 3.01057 Vertex 11293 -2.02832 19.4776 3.00224 Vertex 11294 -2.04546 19.3661 2.99803 Vertex 11295 -2.04546 19.2533 2.99803 Vertex 11296 -2.02832 19.1417 3.00225 Vertex 11297 -1.99444 19.0344 3.01058 Vertex 11298 -1.94468 18.9338 3.02282 Vertex 11299 -1.88025 18.8425 3.03866 Vertex 11300 -1.80274 18.7627 3.05772 Vertex 11301 -1.71406 18.6963 3.07952 Vertex 11302 -1.61639 18.6451 3.10353 Vertex 11303 -1.51214 18.6102 3.12916 Vertex 11304 -1.40387 18.5925 3.15578 Vertex 11305 -1.29426 18.5925 3.18273 Vertex 11306 -1.18599 18.6102 3.20934 Vertex 11307 -1.08174 18.6451 3.23497 Vertex 11308 -0.984073 18.6963 3.25898 Vertex 11309 -0.895391 18.7627 3.28078 Vertex 11310 -0.81788 18.8425 3.29983 Vertex 11311 -0.753449 18.9338 3.31567 Vertex 11312 -0.703684 19.0344 3.3279 Vertex 11313 -0.669811 19.1417 3.33622 Vertex 11314 -0.652662 19.2533 3.34044 Vertex 11315 -0.652662 19.3661 3.34044 Vertex 11316 -0.669809 19.4776 3.33622 Vertex 11317 -0.703681 19.5849 3.32789 Vertex 11318 -0.753446 19.6855 3.31565 Vertex 11319 -0.817876 19.7768 3.29981 Vertex 11320 -0.895385 19.8567 3.28075 Vertex 11321 -0.984066 19.923 3.25895 Vertex 11322 -1.08174 19.9743 3.23493 Vertex 11323 -1.18599 20.0091 3.2093 Vertex 11324 -1.29425 20.0268 3.18268 Vertex 11325 -1.41269 19.8349 3.25489 Vertex 11326 -1.49199 19.822 3.23539 Vertex 11327 -1.56834 19.7964 3.21663 Vertex 11328 -1.63987 19.7589 3.19904 Vertex 11329 -1.70482 19.7103 3.18307 Vertex 11330 -1.76159 19.6518 3.16912 Vertex 11331 -1.80879 19.5849 3.15752 Vertex 11332 -1.84523 19.5113 3.14856 Vertex 11333 -1.87004 19.4327 3.14246 Vertex 11334 -1.8826 19.351 3.13938 Vertex 11335 -1.8826 19.2684 3.13938 Vertex 11336 -1.87005 19.1867 3.14247 Vertex 11337 -1.84523 19.108 3.14857 Vertex 11338 -1.80879 19.0344 3.15753 Vertex 11339 -1.7616 18.9675 3.16914 Vertex 11340 -1.70483 18.909 3.18309 Vertex 11341 -1.63988 18.8604 3.19906 Vertex 11342 -1.56835 18.8229 3.21665 Vertex 11343 -1.49199 18.7973 3.23542 Vertex 11344 -1.41269 18.7845 3.25492 Vertex 11345 -1.33241 18.7845 3.27465 Vertex 11346 -1.25311 18.7974 3.29415 Vertex 11347 -1.17676 18.8229 3.31292 Vertex 11348 -1.10523 18.8605 3.3305 Vertex 11349 -1.04028 18.909 3.34647 Vertex 11350 -0.983506 18.9675 3.36042 Vertex 11351 -0.936315 19.0344 3.37202 Vertex 11352 -0.899868 19.108 3.38098 Vertex 11353 -0.875059 19.1867 3.38708 Vertex 11354 -0.862499 19.2684 3.39016 Vertex 11355 -0.862498 19.351 3.39016 Vertex 11356 -0.875057 19.4327 3.38707 Vertex 11357 -0.899867 19.5113 3.38097 Vertex 11358 -0.936314 19.5849 3.37201 Vertex 11359 -0.983502 19.6519 3.3604 Vertex 11360 -1.04027 19.7103 3.34645 Vertex 11361 -1.10522 19.7589 3.33048 Vertex 11362 -1.17676 19.7964 3.31289 Vertex 11363 -1.25311 19.822 3.29412 Vertex 11364 -1.33241 19.8349 3.27463 Vertex 11365 -1.41302 19.6301 3.32377 Vertex 11366 -1.4614 19.6222 3.31188 Vertex 11367 -1.50797 19.6066 3.30043 Vertex 11368 -1.55161 19.5837 3.28971 Vertex 11369 -1.59123 19.5541 3.27996 Vertex 11370 -1.62586 19.5184 3.27145 Vertex 11371 -1.65465 19.4776 3.26437 Vertex 11372 -1.67689 19.4327 3.25891 Vertex 11373 -1.69202 19.3847 3.25519 Vertex 11374 -1.69968 19.3349 3.25331 Vertex 11375 -1.69968 19.2845 3.25331 Vertex 11376 -1.69202 19.2346 3.25519 Vertex 11377 -1.67689 19.1867 3.25892 Vertex 11378 -1.65465 19.1418 3.26438 Vertex 11379 -1.62586 19.101 3.27146 Vertex 11380 -1.59123 19.0653 3.27998 Vertex 11381 -1.55161 19.0356 3.28972 Vertex 11382 -1.50798 19.0127 3.30045 Vertex 11383 -1.4614 18.9972 3.3119 Vertex 11384 -1.41303 18.9893 3.32379 Vertex 11385 -1.36405 18.9893 3.33583 Vertex 11386 -1.31568 18.9972 3.34772 Vertex 11387 -1.2691 19.0128 3.35917 Vertex 11388 -1.22547 19.0357 3.3699 Vertex 11389 -1.18584 19.0653 3.37964 Vertex 11390 -1.15121 19.1009 3.38815 Vertex 11391 -1.12242 19.1418 3.39523 Vertex 11392 -1.10019 19.1867 3.40069 Vertex 11393 -1.08506 19.2347 3.40441 Vertex 11394 -1.07739 19.2845 3.40629 Vertex 11395 -1.07739 19.3349 3.40629 Vertex 11396 -1.08506 19.3847 3.40441 Vertex 11397 -1.10019 19.4327 3.40068 Vertex 11398 -1.12242 19.4776 3.39522 Vertex 11399 -1.15121 19.5184 3.38814 Vertex 11400 -1.18584 19.5541 3.37963 Vertex 11401 -1.22546 19.5837 3.36988 Vertex 11402 -1.2691 19.6066 3.35916 Vertex 11403 -1.31568 19.6222 3.3477 Vertex 11404 -1.36405 19.6301 3.33581 Vertex 11405 -0.684054 23.1287 -3.57245 Vertex 11406 -0.692466 22.619 -3.98325 Vertex 11407 -0.687493 22.2477 -3.42871 Vertex 11408 -0.0415558 22.2558 -3.54813 Vertex 11409 0.677199 23.183 -3.54535 Vertex 11410 0.692466 22.619 -3.98325 Vertex 11411 0.640048 22.1792 -3.44902 Vertex 11412 -0.76623 22.4588 -3.21771 Vertex 11413 -0.385463 22.8297 -3.0251 Vertex 11414 -0.33765 22.2301 -3.53679 Vertex 11415 0 22.4433 -3.73565 Vertex 11416 -0.38394 22.5938 -4.03724 Vertex 11417 -0.625824 22.4685 -3.63796 Vertex 11418 -0.624818 22.8952 -3.3034 Vertex 11419 -0.378089 23.2593 -3.54019 Vertex 11420 0 23.0389 -3.29277 Vertex 11421 -0.810103 22.8865 -3.73747 Vertex 11422 0.76623 22.4588 -3.21771 Vertex 11423 0.385463 22.8297 -3.0251 Vertex 11424 0.38394 22.5938 -4.03724 Vertex 11425 0.337649 22.23 -3.53679 Vertex 11426 0.625824 22.4685 -3.63796 Vertex 11427 0.378089 23.2593 -3.54019 Vertex 11428 0.624818 22.8952 -3.3034 Vertex 11429 0.810103 22.8865 -3.73747 Vertex 11430 -0.673386 22.7007 -3.05125 Vertex 11431 0 22.866 -3.0471 Vertex 11432 0.673386 22.7007 -3.05125 Vertex 11433 0 22.6089 -4.05595 Vertex 11434 -3.72529e-009 23.2868 -3.56044 Vertex 11435 0.714653 22.67 -3.46198 Vertex 11436 0.356924 23.0095 -3.27467 Vertex 11437 0.357729 22.4254 -3.71892 Vertex 11438 -0.714653 22.67 -3.46198 Vertex 11439 -0.356924 23.0095 -3.27467 Vertex 11440 -0.357729 22.4254 -3.71892 Vertex 11441 -2.66578 20.6117 2.16856 Vertex 11442 -2.76691 20.4022 1.8246 Vertex 11443 -2.63319 20.7068 2.11864 Vertex 11444 -2.49571 20.8802 2.52203 Vertex 11445 -2.85132 20.167 1.6385 Vertex 11446 -2.84012 20.1847 1.59264 Vertex 11447 -0.69513 19.9744 4.01607 Vertex 11448 -0.863314 20.1709 4.00316 Vertex 11449 -0.664025 20.1457 4.04774 Vertex 11450 -0.537647 19.9918 4.04943 Vertex 11451 -2.32255 20.8138 2.90698 Vertex 11452 -2.26484 20.9628 2.86371 Vertex 11453 -2.06926 20.818 3.19146 Vertex 11454 -1.85614 20.6098 3.42771 Vertex 11455 -1.81523 20.8091 3.35957 Vertex 11456 -1.61016 20.6145 3.55039 Vertex 11457 -1.40971 20.3794 3.73387 Vertex 11458 -1.40086 20.5953 3.6776 Vertex 11459 -1.22044 20.3828 3.84692 Vertex 11460 -1.04282 20.1582 3.93308 Vertex 11461 -1.03238 20.3718 3.93964 Vertex 11462 -2.78256 20.3207 1.88041 Vertex 11463 -2.85313 20.1103 1.6533 Vertex 11464 -2.53622 20.7245 2.56913 Vertex 11465 -2.68135 20.4899 2.21817 Vertex 11466 -2.13403 20.6081 3.23963 Vertex 11467 -2.36986 20.6224 2.94431 Vertex 11468 -1.63898 20.376 3.61996 Vertex 11469 -1.90978 20.3908 3.47482 Vertex 11470 -1.22479 20.15 3.86087 Vertex 11471 -1.42936 20.161 3.76451 Vertex 11472 -0.876979 19.9519 3.96102 Vertex 11473 -1.04819 19.949 3.90444 Vertex 11474 -0.582945 19.8469 3.99275 Vertex 11475 -0.720578 19.8178 3.95128 Vertex 11476 -2.7215 20.4188 1.77103 Vertex 11477 -2.75646 20.2368 1.89482 Vertex 11478 -2.52689 20.5876 2.58909 Vertex 11479 -2.15416 20.4379 3.24185 Vertex 11480 -1.65539 20.2043 3.62363 Vertex 11481 -1.22283 19.9925 3.82446 Vertex 11482 -0.883656 19.8181 3.88499 Vertex 11483 -0.594036 19.7851 3.92536 Vertex 11484 -0.502725 20.0721 4.03713 Vertex 11485 -0.829441 20.3224 3.98973 Vertex 11486 -1.1872 20.5283 3.79954 Vertex 11487 -1.57546 20.7587 3.46463 Vertex 11488 -2.0012 20.9263 3.13053 Vertex 11489 -2.43337 20.9493 2.4784 Vertex 11490 2.63319 20.7068 2.11864 Vertex 11491 2.76691 20.4022 1.82461 Vertex 11492 2.66578 20.6117 2.16856 Vertex 11493 2.49571 20.8802 2.52203 Vertex 11494 2.84012 20.1847 1.59264 Vertex 11495 2.85132 20.167 1.6385 Vertex 11496 0.664024 20.1457 4.04774 Vertex 11497 0.863314 20.1709 4.00316 Vertex 11498 0.69513 19.9745 4.01607 Vertex 11499 0.537647 19.9918 4.04943 Vertex 11500 2.26484 20.9628 2.86371 Vertex 11501 2.32255 20.8138 2.90698 Vertex 11502 2.06926 20.818 3.19146 Vertex 11503 1.81523 20.8091 3.35957 Vertex 11504 1.85614 20.6098 3.42771 Vertex 11505 1.61016 20.6145 3.55039 Vertex 11506 1.40086 20.5953 3.6776 Vertex 11507 1.40971 20.3794 3.73387 Vertex 11508 1.22044 20.3828 3.84692 Vertex 11509 1.03238 20.3718 3.93963 Vertex 11510 1.04282 20.1582 3.93308 Vertex 11511 2.78256 20.3207 1.88041 Vertex 11512 2.85313 20.1103 1.6533 Vertex 11513 2.68135 20.4899 2.21817 Vertex 11514 2.53622 20.7245 2.56913 Vertex 11515 2.36986 20.6224 2.94431 Vertex 11516 2.13403 20.6082 3.23963 Vertex 11517 1.90978 20.3908 3.47482 Vertex 11518 1.63898 20.376 3.61996 Vertex 11519 1.42936 20.161 3.7645 Vertex 11520 1.22479 20.15 3.86087 Vertex 11521 1.04819 19.949 3.90444 Vertex 11522 0.87698 19.9519 3.96102 Vertex 11523 0.720578 19.8178 3.95128 Vertex 11524 0.582945 19.8469 3.99275 Vertex 11525 2.7215 20.4188 1.77104 Vertex 11526 2.75646 20.2368 1.89482 Vertex 11527 2.52689 20.5876 2.58909 Vertex 11528 2.15416 20.4379 3.24185 Vertex 11529 1.65539 20.2043 3.62363 Vertex 11530 1.22283 19.9925 3.82446 Vertex 11531 0.883656 19.8181 3.88499 Vertex 11532 0.594036 19.785 3.92536 Vertex 11533 0.505967 19.9009 4.00313 Vertex 11534 0.502725 20.0721 4.03713 Vertex 11535 0.829441 20.3224 3.98973 Vertex 11536 1.1872 20.5283 3.79954 Vertex 11537 1.57546 20.7587 3.46463 Vertex 11538 2.0012 20.9263 3.13052 Vertex 11539 2.43337 20.9493 2.4784 Vertex 11540 -0.869125 20.0595 3.98277 Vertex 11541 -1.22132 20.2663 3.85434 Vertex 11542 -1.61799 20.4949 3.58667 Vertex 11543 -2.09928 20.7181 3.21511 Vertex 11544 -2.51501 20.808 2.54443 Vertex 11545 -2.7743 20.3625 1.85213 Vertex 11546 -2.75344 20.4218 1.79394 Vertex 11547 -2.87969 20.0558 1.53431 Vertex 11548 -2.78173 20.2745 1.89463 Vertex 11549 -2.54496 20.6457 2.58705 Vertex 11550 -2.15761 20.5081 3.25267 Vertex 11551 -1.65686 20.2739 3.63677 Vertex 11552 -1.22668 20.0526 3.85481 Vertex 11553 -0.883087 19.8656 3.9308 Vertex 11554 -0.560768 19.917 4.02539 Vertex 11555 -0.852451 20.2654 4.00965 Vertex 11556 -1.21234 20.4775 3.83114 Vertex 11557 -1.60085 20.7106 3.51006 Vertex 11558 -2.03842 20.8925 3.16462 Vertex 11559 -2.47094 20.9307 2.5005 Vertex 11560 0.869125 20.0595 3.98277 Vertex 11561 1.22132 20.2663 3.85434 Vertex 11562 1.61799 20.4949 3.58667 Vertex 11563 2.09928 20.7181 3.21511 Vertex 11564 2.51501 20.808 2.54443 Vertex 11565 2.7743 20.3625 1.85213 Vertex 11566 2.75344 20.4219 1.79394 Vertex 11567 2.87969 20.0557 1.53431 Vertex 11568 2.78173 20.2745 1.89463 Vertex 11569 2.54496 20.6457 2.58705 Vertex 11570 2.15761 20.5081 3.25267 Vertex 11571 1.65686 20.2739 3.63676 Vertex 11572 1.22668 20.0526 3.85481 Vertex 11573 0.883087 19.8656 3.9308 Vertex 11574 0.560768 19.917 4.02539 Vertex 11575 0.852451 20.2654 4.00965 Vertex 11576 1.21234 20.4775 3.83114 Vertex 11577 1.60085 20.7106 3.51006 Vertex 11578 2.03842 20.8925 3.16462 Vertex 11579 2.47094 20.9307 2.5005 Vertex 11580 2.59682 20.7197 2.09883 Vertex 11581 2.22624 20.9886 2.83651 Vertex 11582 1.784 20.8511 3.31781 Vertex 11583 1.37639 20.645 3.63724 Vertex 11584 1.00826 20.427 3.91543 Vertex 11585 0.640608 20.1955 4.02728 Vertex 11586 0.476765 19.9776 4.02831 Vertex 11587 0.533571 19.8309 3.96394 Vertex 11588 0.721816 19.7813 3.90203 Vertex 11589 1.0463 19.8943 3.8653 Vertex 11590 1.42631 20.0956 3.74399 Vertex 11591 1.90871 20.3195 3.46313 Vertex 11592 2.35965 20.5564 2.93914 Vertex 11593 2.6576 20.4443 2.22577 Vertex 11594 2.82813 20.0753 1.64189 Vertex 11595 2.81232 20.1658 1.56825 Vertex 11596 0.710003 19.8869 3.98789 Vertex 11597 1.04611 20.0433 3.92381 Vertex 11598 1.42041 20.2612 3.75681 Vertex 11599 1.88652 20.4935 3.45859 Vertex 11600 2.35248 20.7147 2.92999 Vertex 11601 2.67962 20.5491 2.19648 Vertex 11602 1.04107 20.2749 3.94194 Vertex 11603 1.40759 20.4988 3.70864 Vertex 11604 1.83582 20.7218 3.39545 Vertex 11605 2.29514 20.9006 2.88604 Vertex 11606 0.681001 20.0664 4.04001 Vertex 11607 2.65324 20.6676 2.14225 Vertex 11608 -2.59682 20.7197 2.09883 Vertex 11609 -2.22624 20.9886 2.83651 Vertex 11610 -1.784 20.8511 3.31781 Vertex 11611 -1.37639 20.645 3.63724 Vertex 11612 -1.00826 20.427 3.91543 Vertex 11613 -0.640607 20.1955 4.02728 Vertex 11614 -0.721816 19.7813 3.90203 Vertex 11615 -1.0463 19.8943 3.8653 Vertex 11616 -1.42631 20.0956 3.74399 Vertex 11617 -1.90871 20.3195 3.46313 Vertex 11618 -2.35965 20.5564 2.93914 Vertex 11619 -2.6576 20.4443 2.22577 Vertex 11620 -2.82813 20.0753 1.64189 Vertex 11621 -2.81232 20.1658 1.56825 Vertex 11622 -0.710003 19.8869 3.98789 Vertex 11623 -1.04611 20.0433 3.92381 Vertex 11624 -1.42041 20.2612 3.75681 Vertex 11625 -1.88652 20.4935 3.45859 Vertex 11626 -2.35248 20.7147 2.92999 Vertex 11627 -2.67962 20.5491 2.19648 Vertex 11628 -1.04107 20.2749 3.94194 Vertex 11629 -1.40758 20.4988 3.70864 Vertex 11630 -1.83582 20.7218 3.39545 Vertex 11631 -2.29514 20.9006 2.88605 Vertex 11632 -0.681001 20.0664 4.04001 Vertex 11633 -2.65324 20.6676 2.14225 Vertex 11634 -1.52424 17.0576 3.14812 Vertex 11635 1.52424 17.0576 3.14812 Vertex 11636 -0.178699 16.9162 3.86411 Vertex 11637 0 16.8135 3.87691 Vertex 11638 -0.163356 16.6575 3.83849 Vertex 11639 -0.34258 16.8406 3.80027 Vertex 11640 0 16.4012 3.84259 Vertex 11641 -0.168126 16.1759 3.80774 Vertex 11642 -0.33231 16.4044 3.7722 Vertex 11643 -0.525174 16.9646 3.7363 Vertex 11644 -0.512092 16.6682 3.73546 Vertex 11645 -0.719505 16.8637 3.66006 Vertex 11646 -0.506194 16.1725 3.69076 Vertex 11647 -0.707251 16.393 3.63151 Vertex 11648 -0.959519 17.0167 3.54685 Vertex 11649 -0.965524 16.6523 3.54949 Vertex 11650 -1.21171 16.8826 3.42372 Vertex 11651 -0.925922 16.1264 3.47798 Vertex 11652 -1.18844 16.3457 3.37933 Vertex 11653 -1.39265 17.0597 3.27242 Vertex 11654 -1.42111 16.6469 3.26632 Vertex 11655 -1.557 16.8829 3.13792 Vertex 11656 -1.36389 16.1044 3.21864 Vertex 11657 -1.55628 16.3706 3.118 Vertex 11658 -1.64393 16.1829 3.01745 Vertex 11659 -1.71848 16.4277 2.95564 Vertex 11660 -1.66623 16.6537 3.03018 Vertex 11661 -1.64349 16.8899 3.03441 Vertex 11662 -1.51259 17.1283 3.15739 Vertex 11663 -1.58018 17.0738 3.09354 Vertex 11664 -0.359753 16.9831 3.80914 Vertex 11665 0 16.9353 3.90292 Vertex 11666 -0.718864 17.0331 3.6547 Vertex 11667 -1.19945 17.1045 3.4204 Vertex 11668 -1.72239 16.6851 2.95743 Vertex 11669 -1.71853 16.2217 2.95015 Vertex 11670 -1.52192 16.0476 3.10882 Vertex 11671 -1.15267 16.0123 3.33042 Vertex 11672 -0.693934 16.0739 3.59681 Vertex 11673 -0.339261 16.0934 3.75161 Vertex 11674 0 16.0935 3.83227 Vertex 11675 0.163356 16.6576 3.83849 Vertex 11676 0.178699 16.9162 3.86411 Vertex 11677 0.34258 16.8406 3.80027 Vertex 11678 0.168126 16.1759 3.80774 Vertex 11679 0.33231 16.4044 3.7722 Vertex 11680 0.512092 16.6682 3.73546 Vertex 11681 0.525174 16.9646 3.7363 Vertex 11682 0.719506 16.8637 3.66006 Vertex 11683 0.506194 16.1724 3.69076 Vertex 11684 0.707251 16.393 3.63151 Vertex 11685 0.965524 16.6523 3.54949 Vertex 11686 0.959519 17.0167 3.54685 Vertex 11687 1.21171 16.8826 3.42372 Vertex 11688 0.925922 16.1264 3.47798 Vertex 11689 1.18844 16.3457 3.37932 Vertex 11690 1.42111 16.6469 3.26632 Vertex 11691 1.39265 17.0597 3.27242 Vertex 11692 1.557 16.8829 3.13792 Vertex 11693 1.36389 16.1044 3.21863 Vertex 11694 1.55627 16.3706 3.118 Vertex 11695 1.71848 16.4277 2.95564 Vertex 11696 1.64393 16.1829 3.01745 Vertex 11697 1.66623 16.6537 3.03018 Vertex 11698 1.64349 16.8899 3.03441 Vertex 11699 1.58018 17.0738 3.09354 Vertex 11700 1.51259 17.1283 3.15739 Vertex 11701 0.359753 16.9831 3.80914 Vertex 11702 0.718864 17.0331 3.6547 Vertex 11703 1.19945 17.1045 3.4204 Vertex 11704 1.72239 16.6851 2.95743 Vertex 11705 1.71854 16.2217 2.95015 Vertex 11706 1.52192 16.0476 3.10882 Vertex 11707 1.15267 16.0123 3.33043 Vertex 11708 0.693934 16.0739 3.59681 Vertex 11709 0.339261 16.0934 3.75161 Vertex 11710 -0.332219 16.6642 3.79205 Vertex 11711 0 16.6535 3.85917 Vertex 11712 -0.71814 16.6655 3.65813 Vertex 11713 -1.21345 16.6418 3.41656 Vertex 11714 -1.5759 16.6505 3.12947 Vertex 11715 -0.354667 16.9435 3.80369 Vertex 11716 -0.717647 16.9866 3.6535 Vertex 11717 -1.20109 17.0445 3.41895 Vertex 11718 -1.70648 16.6721 2.97372 Vertex 11719 -1.52799 16.1335 3.11084 Vertex 11720 -1.16031 16.1004 3.34097 Vertex 11721 -0.696097 16.1584 3.60335 Vertex 11722 -0.336706 16.1758 3.75422 Vertex 11723 0 16.1751 3.83201 Vertex 11724 0.332219 16.6642 3.79205 Vertex 11725 0.71814 16.6655 3.65813 Vertex 11726 1.21345 16.6418 3.41655 Vertex 11727 1.5759 16.6505 3.12947 Vertex 11728 0 16.901 3.89258 Vertex 11729 0.354667 16.9435 3.80369 Vertex 11730 0.717647 16.9866 3.6535 Vertex 11731 1.20109 17.0445 3.41896 Vertex 11732 1.70648 16.6721 2.97372 Vertex 11733 1.52799 16.1335 3.11084 Vertex 11734 1.16031 16.1004 3.34097 Vertex 11735 0.696097 16.1584 3.60335 Vertex 11736 0.336706 16.1758 3.75422 Vertex 11737 0.170004 16.0941 3.80702 Vertex 11738 0.507027 16.0892 3.68638 Vertex 11739 0.920616 16.04 3.46839 Vertex 11740 1.3557 16.0159 3.2122 Vertex 11741 1.64356 16.1044 3.01536 Vertex 11742 1.74478 16.4352 2.93151 Vertex 11743 1.65148 16.9116 3.02586 Vertex 11744 1.3887 17.1217 3.27436 Vertex 11745 0.95928 17.0703 3.54782 Vertex 11746 0.528859 17.007 3.73914 Vertex 11747 0.18203 16.9524 3.87273 Vertex 11748 1.65981 16.4015 3.0201 Vertex 11749 1.39541 16.3495 3.24243 Vertex 11750 1.41182 16.8925 3.27303 Vertex 11751 0.946575 16.367 3.51461 Vertex 11752 0.965721 16.8732 3.55383 Vertex 11753 0.5079 16.4033 3.71323 Vertex 11754 0.518718 16.8534 3.73911 Vertex 11755 0.164267 16.4027 3.82085 Vertex 11756 0.170321 16.8233 3.85281 Vertex 11757 -0.170004 16.0941 3.80702 Vertex 11758 -0.507027 16.0892 3.68638 Vertex 11759 -0.920616 16.04 3.46839 Vertex 11760 -1.3557 16.0159 3.2122 Vertex 11761 -1.64356 16.1044 3.01536 Vertex 11762 -1.74478 16.4352 2.93151 Vertex 11763 -1.65148 16.9115 3.02586 Vertex 11764 -1.3887 17.1217 3.27436 Vertex 11765 -0.959279 17.0703 3.54782 Vertex 11766 -0.528859 17.007 3.73914 Vertex 11767 -0.18203 16.9524 3.87273 Vertex 11768 -1.65981 16.4015 3.0201 Vertex 11769 -1.39541 16.3495 3.24243 Vertex 11770 -1.41182 16.8925 3.27303 Vertex 11771 -0.946575 16.367 3.51461 Vertex 11772 -0.965721 16.8732 3.55383 Vertex 11773 -0.5079 16.4033 3.71323 Vertex 11774 -0.518718 16.8534 3.73911 Vertex 11775 -0.164267 16.4027 3.82085 Vertex 11776 -0.170321 16.8233 3.8528 Vertex 11777 -1.41995 21.6287 -3.30933 Vertex 11778 -2.82788 18.6362 -1.85872 Vertex 11779 -3.22343 20.9112 -1.29261 Vertex 11780 -1.24334 22.5052 -2.81453 Vertex 11781 0 21.9438 -3.91011 Vertex 11782 -3.14399 20.8725 -0.319884 Vertex 11783 -3.04858 19.9683 0.82904 Vertex 11784 -2.96697 18.3531 1.16702 Vertex 11785 -3.00634 18.0555 0.924601 Vertex 11786 1.41995 21.6287 -3.30933 Vertex 11787 2.84972 18.5355 -1.8975 Vertex 11788 3.22343 20.9112 -1.29261 Vertex 11789 1.24334 22.5052 -2.81453 Vertex 11790 -7.45058e-009 15.7605 -3.92037 Vertex 11791 3.14399 20.8726 -0.319884 Vertex 11792 3.04858 19.9683 0.82904 Vertex 11793 2.96697 18.3531 1.16702 Vertex 11794 3.00634 18.0555 0.924601 Vertex 11795 0.325448 15.6429 -6.01943 Vertex 11796 3.0974 17.7131 0.173884 Vertex 11797 0.429443 23.6557 -5.6112 Vertex 11798 -0.325448 15.6429 -6.01943 Vertex 11799 -3.09718 17.7131 0.173884 Vertex 11800 -0.429443 23.6557 -5.6112 Vertex 11801 -1.36918 17.0851 -2.38393 Vertex 11802 -1.08488 16.4292 -2.49658 Vertex 11803 -0.775947 17.0191 -2.6135 Vertex 11804 0.000415999 17.1965 -2.76138 Vertex 11805 -0.443979 17.0481 -2.81427 Vertex 11806 -0.327382 16.8246 -2.77241 Vertex 11807 -1.74359 15.4415 -3.08947 Vertex 11808 -1.35678 15.4946 -3.01807 Vertex 11809 -0.965787 15.368 -3.51527 Vertex 11810 -1.38992 15.7193 -3.61827 Vertex 11811 -0.480329 15.4609 -3.38862 Vertex 11812 0 15.3938 -3.68077 Vertex 11813 -0.554502 15.74 -3.88078 Vertex 11814 -1.78052 16.2182 -3.68451 Vertex 11815 -1.03687 16.2424 -4.0713 Vertex 11816 -1.40293 16.9496 -4.05682 Vertex 11817 -0.398847 16.3607 -4.27377 Vertex 11818 -0.813824 17.0205 -4.35295 Vertex 11819 -1.89158 19.5883 -3.25049 Vertex 11820 -1.38846 18.9443 -3.65683 Vertex 11821 -1.16367 19.7745 -3.76985 Vertex 11822 -1.64099 20.3174 -3.45128 Vertex 11823 -0.904738 19.0142 -3.99606 Vertex 11824 -0.974643 19.8232 -4.0158 Vertex 11825 -1.10228 20.5029 -3.80754 Vertex 11826 -2.21943 20.7062 -2.94013 Vertex 11827 -1.36318 21.1002 -3.51178 Vertex 11828 -1.91032 21.4349 -3.01944 Vertex 11829 -1.0038 21.215 -3.71347 Vertex 11830 -1.05463 21.724 -3.45778 Vertex 11831 -2.55149 21.3953 -2.41595 Vertex 11832 -1.64764 22.0439 -2.95216 Vertex 11833 -2.18035 21.8804 -2.51749 Vertex 11834 -1.48416 22.4221 -2.7687 Vertex 11835 -1.30103 22.234 -3.05186 Vertex 11836 -0.689327 23.5994 -5.58237 Vertex 11837 -0.609602 23.4672 -5.68867 Vertex 11838 -0.312557 23.4268 -5.72205 Vertex 11839 0 23.6271 -5.64376 Vertex 11840 -0.318486 23.7844 -5.45897 Vertex 11841 -0.60546 23.7284 -5.48127 Vertex 11842 -3.26972 17.9444 0.312284 Vertex 11843 -3.27299 17.6955 0.357653 Vertex 11844 -3.2346 17.8341 0.193375 Vertex 11845 -2.37247 17.5932 -1.47714 Vertex 11846 -2.69679 16.5946 -1.78414 Vertex 11847 -2.49486 16.2078 -1.92033 Vertex 11848 -2.37508 15.7052 -2.54864 Vertex 11849 -2.67181 16.2467 -2.37648 Vertex 11850 -2.86749 16.9674 -2.15632 Vertex 11851 -2.50524 16.3079 -2.97987 Vertex 11852 -2.77071 17.0394 -2.59645 Vertex 11853 -2.9174 19.0312 -1.83108 Vertex 11854 -2.72046 18.6357 -2.21924 Vertex 11855 -2.54875 19.3228 -2.55234 Vertex 11856 -2.91026 19.5398 -2.10316 Vertex 11857 -3.12802 19.7161 -1.64951 Vertex 11858 -2.84947 20.1938 -2.24768 Vertex 11859 -3.16757 20.2503 -1.6428 Vertex 11860 -3.26122 20.2071 -1.21827 Vertex 11861 -3.14799 20.7924 -1.59075 Vertex 11862 -3.31826 20.5897 -1.04247 Vertex 11863 -3.30865 20.3984 -0.694226 Vertex 11864 -3.31673 20.8559 -0.752818 Vertex 11865 -3.35517 20.607 -0.431877 Vertex 11866 -3.30044 20.3839 -0.234424 Vertex 11867 -3.35219 20.689 -0.0951828 Vertex 11868 -3.35292 20.4109 0.0573425 Vertex 11869 -1.96949 17.2858 -1.96165 Vertex 11870 -2.04662 15.6567 -2.54143 Vertex 11871 -2.12291 15.7995 -3.12463 Vertex 11872 -2.18672 16.8774 -3.44885 Vertex 11873 -2.14714 18.8135 -3.00527 Vertex 11874 -2.40464 19.9603 -2.83452 Vertex 11875 -2.74938 20.8658 -2.28544 Vertex 11876 -3.00298 21.1932 -1.74611 Vertex 11877 -3.29922 19.9873 0.36009 Vertex 11878 -3.26537 20.1674 0.0418573 Vertex 11879 -3.31554 20.2652 0.450694 Vertex 11880 -3.2991 19.5276 0.385881 Vertex 11881 -3.22895 19.7985 0.130983 Vertex 11882 -3.28492 19.722 0.673607 Vertex 11883 -3.30253 19.0763 0.39055 Vertex 11884 -3.21192 19.3161 0.15282 Vertex 11885 -3.32206 19.2623 0.625545 Vertex 11886 -3.19748 18.1763 0.155906 Vertex 11887 -3.24156 18.22 0.478123 Vertex 11888 -3.23892 17.971 0.622786 Vertex 11889 -3.19347 18.3848 0.230786 Vertex 11890 -3.23048 18.4669 0.609034 Vertex 11891 -3.19518 18.2869 0.902136 Vertex 11892 -3.27225 18.7959 0.505943 Vertex 11893 -3.20678 18.9074 0.186123 Vertex 11894 -3.3043 18.9523 0.710401 Vertex 11895 -3.19978 18.6326 0.244661 Vertex 11896 -3.22399 18.6294 0.918028 Vertex 11897 -2.65668 17.9104 -1.35834 Vertex 11898 -2.6517 18.2624 -1.45502 Vertex 11899 -2.80774 18.2253 -1.68742 Vertex 11900 -2.77287 18.6991 -1.65284 Vertex 11901 -2.9876 19.3326 -1.6162 Vertex 11902 -3.13164 19.9137 -1.36364 Vertex 11903 -3.19412 20.2208 -0.909794 Vertex 11904 -3.1995 20.329 -0.45125 Vertex 11905 -3.16813 20.2532 -0.10085 Vertex 11906 -3.13132 19.9841 0.0241662 Vertex 11907 -3.08102 18.7797 0.118882 Vertex 11908 -3.0829 18.5167 0.126 Vertex 11909 -3.07614 18.2933 0.073763 Vertex 11910 -3.08978 18.0229 0.0917398 Vertex 11911 -3.16908 17.6199 0.2602 Vertex 11912 -3.05452 17.5627 0.204332 Vertex 11913 -3.07244 17.5788 0.408199 Vertex 11914 -3.16299 17.727 0.555443 Vertex 11915 -3.03044 17.8739 0.769623 Vertex 11916 -3.11484 18.1033 0.901993 Vertex 11917 -2.979 18.2248 1.08221 Vertex 11918 -3.08595 18.4047 1.11422 Vertex 11919 -3.01552 18.6124 1.10905 Vertex 11920 -3.17617 18.8254 0.956614 Vertex 11921 -3.11008 18.9506 0.895065 Vertex 11922 -3.23955 19.075 0.761047 Vertex 11923 -3.1172 19.2666 0.800823 Vertex 11924 -3.20791 19.4841 0.77255 Vertex 11925 -3.06171 19.7417 0.844568 Vertex 11926 -3.17615 19.9938 0.751491 Vertex 11927 -3.10868 20.3164 0.574542 Vertex 11928 -3.26345 20.5693 0.250891 Vertex 11929 -3.16198 20.7672 -0.0372068 Vertex 11930 -3.24244 20.865 -0.38372 Vertex 11931 -3.12706 20.9508 -0.704373 Vertex 11932 -3.15065 21.0374 -1.13533 Vertex 11933 -2.88282 21.2396 -1.54043 Vertex 11934 -2.64378 21.5232 -2.04946 Vertex 11935 -2.11603 21.916 -2.2535 Vertex 11936 -1.71585 22.281 -2.53948 Vertex 11937 -1.41693 22.4375 -2.51065 Vertex 11938 -1.17143 22.5692 -2.65631 Vertex 11939 -0.627767 22.712 -2.60691 Vertex 11940 -0.623368 22.7545 -2.83605 Vertex 11941 0 22.8261 -2.7577 Vertex 11942 0 16.2555 -3.12444 Vertex 11943 -0.918627 16.256 -2.92902 Vertex 11944 -1.69229 16.3663 -2.44027 Vertex 11945 -2.24051 16.6325 -1.9962 Vertex 11946 -2.57736 17.1595 -1.43497 Vertex 11947 -2.80584 17.4242 -1.71963 Vertex 11948 -2.86911 17.8048 -2.07786 Vertex 11949 -2.49674 17.8146 -2.84319 Vertex 11950 -1.76319 17.8983 -3.62128 Vertex 11951 -1.05816 17.9792 -4.09686 Vertex 11952 -0.785612 18.0477 -4.35013 Vertex 11953 -0.792565 22.0169 -3.42345 Vertex 11954 -0.998167 22.051 -3.31332 Vertex 11955 -0.885439 22.5924 -2.92757 Vertex 11956 0 22.8248 -2.93957 Vertex 11957 0 22.6222 -4.39334 Vertex 11958 -0.426998 22.5915 -4.69999 Vertex 11959 -0.748286 22.6237 -4.34359 Vertex 11960 -1.01914 22.8237 -4.16072 Vertex 11961 -1.20364 23.188 -4.12692 Vertex 11962 -0.962206 23.3041 -3.76085 Vertex 11963 -0.742035 23.5034 -3.67692 Vertex 11964 -0.442905 23.7843 -3.8537 Vertex 11965 0 23.5526 -3.73396 Vertex 11966 0 22.6486 -5.02636 Vertex 11967 -0.501171 22.729 -5.2427 Vertex 11968 -0.876181 22.6777 -4.91915 Vertex 11969 -1.32181 23.028 -4.62278 Vertex 11970 -1.38043 23.4071 -4.62019 Vertex 11971 -1.23389 23.5791 -4.12752 Vertex 11972 -0.881513 23.9092 -4.02069 Vertex 11973 -0.511559 24.0675 -4.33042 Vertex 11974 0 23.9754 -4.11235 Vertex 11975 0 22.8291 -5.4515 Vertex 11976 -0.464367 22.9547 -5.5471 Vertex 11977 -0.936095 22.8546 -5.33394 Vertex 11978 -1.37379 23.2261 -5.09165 Vertex 11979 -1.28392 23.5516 -5.13185 Vertex 11980 -1.30597 23.7407 -4.67955 Vertex 11981 -0.931449 24.0309 -4.57825 Vertex 11982 -0.468712 24.0269 -4.88116 Vertex 11983 0 24.0904 -4.61678 Vertex 11984 0 23.1899 -5.68315 Vertex 11985 -0.686659 23.1979 -5.63404 Vertex 11986 -0.996225 23.4366 -5.49306 Vertex 11987 -0.965774 23.7178 -5.29064 Vertex 11988 -0.689605 23.8972 -5.19072 Vertex 11989 0 23.931 -5.18933 Vertex 11990 -1.02197 23.6399 -3.82744 Vertex 11991 -1.16827 23.8832 -4.28788 Vertex 11992 -1.09018 23.8968 -4.91425 Vertex 11993 -1.12682 23.1282 -5.39539 Vertex 11994 -1.22489 22.9022 -5.05139 Vertex 11995 -1.07572 22.7416 -4.54517 Vertex 11996 -0.880441 21.7733 -3.60305 Vertex 11997 -0.784603 22.029 -3.52457 Vertex 11998 -0.76233 21.2754 -4.33535 Vertex 11999 -0.450542 20.6504 -4.82854 Vertex 12000 0 21.3955 -4.41566 Vertex 12001 -0.361539 21.9111 -3.90847 Vertex 12002 -0.743522 19.9272 -4.85841 Vertex 12003 -0.343928 19.2584 -4.99074 Vertex 12004 0 20.0347 -4.96363 Vertex 12005 -0.597177 18.2656 -5.16829 Vertex 12006 -0.321998 17.4517 -5.48778 Vertex 12007 0 18.3193 -5.23576 Vertex 12008 0 16.4355 -4.3378 Vertex 12009 -0.301882 16.7497 -4.59644 Vertex 12010 -0.240131 15.6267 -5.90942 Vertex 12011 0 15.6529 -6.02938 Vertex 12012 -0.253375 15.7619 -6.06461 Vertex 12013 -0.466247 15.731 -6.02946 Vertex 12014 -0.453747 15.6602 -5.94666 Vertex 12015 -0.787135 17.2147 -4.81681 Vertex 12016 -0.848955 18.1821 -4.80915 Vertex 12017 -0.876484 19.083 -4.33291 Vertex 12018 -1.0242 19.8339 -4.48044 Vertex 12019 -1.09262 20.4813 -4.12345 Vertex 12020 -1.03851 21.1817 -4.04394 Vertex 12021 -0.611122 22.0805 -3.60647 Vertex 12022 -0.836339 21.7987 -3.81814 Vertex 12023 -1.03188 20.4962 -4.57188 Vertex 12024 -0.816406 19.1702 -4.7805 Vertex 12025 -0.772732 17.3726 -5.27345 Vertex 12026 0 16.577 -4.76817 Vertex 12027 -0.2628 16.2214 -4.92453 Vertex 12028 -0.558535 16.5742 -4.79016 Vertex 12029 -0.697786 16.3729 -5.11134 Vertex 12030 -0.82767 16.8245 -5.20228 Vertex 12031 -0.747772 16.6708 -5.49874 Vertex 12032 -0.592184 16.9924 -5.54611 Vertex 12033 -0.312786 16.8059 -5.67181 Vertex 12034 0 17.05 -5.61115 Vertex 12035 0 16.0093 -5.19813 Vertex 12036 -0.238371 15.8276 -5.46432 Vertex 12037 -0.468558 16.0051 -5.20271 Vertex 12038 -0.59032 15.9292 -5.57638 Vertex 12039 -0.733329 16.2815 -5.50303 Vertex 12040 -0.627833 16.1304 -5.81205 Vertex 12041 -0.544136 16.4751 -5.75005 Vertex 12042 -0.275885 16.2213 -5.91605 Vertex 12043 0 16.532 -5.79169 Vertex 12044 0 15.7051 -5.72203 Vertex 12045 -0.424075 15.7031 -5.72432 Vertex 12046 -0.583803 15.8416 -5.87483 Vertex 12047 -0.461952 15.9386 -5.99863 Vertex 12048 0 15.9671 -6.01949 Vertex 12049 1.40937 17.0851 -2.38393 Vertex 12050 0.447557 17.0481 -2.81427 Vertex 12051 0.965787 15.368 -3.51527 Vertex 12052 1.35678 15.4945 -3.01807 Vertex 12053 1.74359 15.4415 -3.08947 Vertex 12054 1.38992 15.7193 -3.61827 Vertex 12055 0.480329 15.4609 -3.38862 Vertex 12056 0.554502 15.74 -3.88078 Vertex 12057 1.03687 16.2424 -4.0713 Vertex 12058 1.78052 16.2182 -3.68451 Vertex 12059 1.40293 16.9496 -4.05682 Vertex 12060 0.398847 16.3607 -4.27377 Vertex 12061 0.813824 17.0204 -4.35295 Vertex 12062 1.16367 19.7745 -3.76985 Vertex 12063 1.38846 18.9443 -3.65683 Vertex 12064 1.89158 19.5883 -3.25049 Vertex 12065 1.64099 20.3174 -3.45128 Vertex 12066 0.974643 19.8232 -4.01579 Vertex 12067 0.904738 19.0142 -3.99606 Vertex 12068 1.10228 20.5029 -3.80754 Vertex 12069 1.36319 21.1002 -3.51178 Vertex 12070 2.21943 20.7062 -2.94013 Vertex 12071 1.91032 21.4349 -3.01944 Vertex 12072 1.0038 21.215 -3.71346 Vertex 12073 1.05463 21.724 -3.45778 Vertex 12074 1.64764 22.0439 -2.95216 Vertex 12075 2.55149 21.3953 -2.41595 Vertex 12076 2.18035 21.8804 -2.51749 Vertex 12077 1.48417 22.4221 -2.76869 Vertex 12078 1.30103 22.234 -3.05186 Vertex 12079 0.318486 23.7844 -5.45897 Vertex 12080 0.312557 23.4268 -5.72205 Vertex 12081 0.609603 23.4672 -5.68867 Vertex 12082 0.689327 23.5994 -5.58237 Vertex 12083 0.60546 23.7284 -5.48127 Vertex 12084 3.27299 17.6955 0.357653 Vertex 12085 3.26972 17.9444 0.312284 Vertex 12086 3.2346 17.8341 0.193375 Vertex 12087 2.41903 17.5932 -1.47714 Vertex 12088 2.24429 17.5997 -1.6265 Vertex 12089 2.37507 15.7052 -2.54864 Vertex 12090 2.49486 16.2078 -1.92033 Vertex 12091 2.69679 16.5946 -1.78414 Vertex 12092 2.67181 16.2467 -2.37648 Vertex 12093 2.50524 16.3079 -2.97987 Vertex 12094 2.86748 16.9674 -2.15631 Vertex 12095 2.77071 17.0394 -2.59645 Vertex 12096 2.54875 19.3228 -2.55234 Vertex 12097 2.72046 18.6357 -2.21924 Vertex 12098 2.9174 19.0312 -1.83108 Vertex 12099 2.91026 19.5398 -2.10316 Vertex 12100 2.84947 20.1938 -2.24768 Vertex 12101 3.12802 19.7161 -1.64951 Vertex 12102 3.16757 20.2503 -1.6428 Vertex 12103 3.14799 20.7924 -1.59075 Vertex 12104 3.26122 20.2071 -1.21827 Vertex 12105 3.31826 20.5897 -1.04247 Vertex 12106 3.31674 20.8559 -0.752818 Vertex 12107 3.30864 20.3984 -0.694226 Vertex 12108 3.35517 20.607 -0.431877 Vertex 12109 3.35219 20.689 -0.0951827 Vertex 12110 3.30044 20.3839 -0.234424 Vertex 12111 3.35292 20.4109 0.0573425 Vertex 12112 1.99203 17.2857 -1.96165 Vertex 12113 2.04662 15.6567 -2.54143 Vertex 12114 2.12291 15.7995 -3.12463 Vertex 12115 2.18672 16.8774 -3.44885 Vertex 12116 2.14714 18.8135 -3.00527 Vertex 12117 2.40464 19.9603 -2.83452 Vertex 12118 2.74938 20.8658 -2.28544 Vertex 12119 3.00298 21.1933 -1.74611 Vertex 12120 3.26537 20.1674 0.0418573 Vertex 12121 3.29922 19.9873 0.360089 Vertex 12122 3.31554 20.2652 0.450694 Vertex 12123 3.22895 19.7985 0.130983 Vertex 12124 3.2991 19.5276 0.385881 Vertex 12125 3.28492 19.722 0.673607 Vertex 12126 3.21192 19.3161 0.152821 Vertex 12127 3.30253 19.0763 0.39055 Vertex 12128 3.32206 19.2624 0.625545 Vertex 12129 3.24156 18.22 0.478123 Vertex 12130 3.19747 18.1763 0.155906 Vertex 12131 3.23892 17.971 0.622786 Vertex 12132 3.23048 18.4669 0.609034 Vertex 12133 3.19347 18.3848 0.230786 Vertex 12134 3.19518 18.2869 0.902136 Vertex 12135 3.20678 18.9074 0.186123 Vertex 12136 3.27225 18.7959 0.505944 Vertex 12137 3.3043 18.9523 0.710401 Vertex 12138 3.19978 18.6326 0.244661 Vertex 12139 3.22399 18.6294 0.918028 Vertex 12140 2.67583 17.9104 -1.35834 Vertex 12141 2.65386 18.2624 -1.45502 Vertex 12142 2.80774 18.2253 -1.68742 Vertex 12143 2.77287 18.6991 -1.65284 Vertex 12144 2.9876 19.3326 -1.6162 Vertex 12145 3.13164 19.9137 -1.36364 Vertex 12146 3.19412 20.2208 -0.909794 Vertex 12147 3.1995 20.329 -0.45125 Vertex 12148 3.16813 20.2532 -0.10085 Vertex 12149 3.13132 19.9841 0.0241662 Vertex 12150 3.09275 19.5828 0.074425 Vertex 12151 3.07886 19.0857 0.1047 Vertex 12152 3.08103 18.7798 0.118882 Vertex 12153 3.0829 18.5167 0.126 Vertex 12154 3.07614 18.2933 0.073763 Vertex 12155 3.08978 18.0229 0.0917397 Vertex 12156 3.16908 17.6199 0.2602 Vertex 12157 3.05467 17.5627 0.204332 Vertex 12158 3.0718 17.5788 0.408199 Vertex 12159 3.16299 17.727 0.555443 Vertex 12160 3.03043 17.8739 0.769623 Vertex 12161 3.11484 18.1033 0.901993 Vertex 12162 2.979 18.2248 1.08221 Vertex 12163 3.08595 18.4047 1.11422 Vertex 12164 3.01552 18.6124 1.10905 Vertex 12165 3.17617 18.8254 0.956614 Vertex 12166 3.11008 18.9506 0.895065 Vertex 12167 3.23955 19.075 0.761047 Vertex 12168 3.1172 19.2667 0.800823 Vertex 12169 3.20791 19.4841 0.77255 Vertex 12170 3.06171 19.7417 0.844568 Vertex 12171 3.17614 19.9938 0.751491 Vertex 12172 3.10868 20.3164 0.574542 Vertex 12173 3.26345 20.5693 0.250891 Vertex 12174 3.16198 20.7672 -0.0372068 Vertex 12175 3.24244 20.8651 -0.38372 Vertex 12176 3.12706 20.9509 -0.704373 Vertex 12177 3.15065 21.0374 -1.13533 Vertex 12178 2.88282 21.2396 -1.54043 Vertex 12179 2.64378 21.5232 -2.04946 Vertex 12180 2.11603 21.916 -2.2535 Vertex 12181 1.71585 22.281 -2.53948 Vertex 12182 1.41693 22.4375 -2.51065 Vertex 12183 1.17143 22.5691 -2.65631 Vertex 12184 0.623368 22.7545 -2.83605 Vertex 12185 0.627767 22.712 -2.60691 Vertex 12186 0.918627 16.256 -2.92902 Vertex 12187 1.69229 16.3663 -2.44027 Vertex 12188 2.24051 16.6325 -1.9962 Vertex 12189 2.61321 17.1595 -1.43497 Vertex 12190 2.80584 17.4242 -1.71963 Vertex 12191 2.86911 17.8048 -2.07786 Vertex 12192 2.49674 17.8145 -2.84319 Vertex 12193 1.76319 17.8983 -3.62128 Vertex 12194 1.05816 17.9792 -4.09686 Vertex 12195 0.785612 18.0477 -4.35013 Vertex 12196 0.792565 22.0169 -3.42345 Vertex 12197 0.998167 22.051 -3.31332 Vertex 12198 0.885439 22.5924 -2.92757 Vertex 12199 0.426998 22.5915 -4.69999 Vertex 12200 0.748286 22.6237 -4.34359 Vertex 12201 1.20364 23.1881 -4.12692 Vertex 12202 1.01914 22.8237 -4.16072 Vertex 12203 0.962206 23.3041 -3.76085 Vertex 12204 0.442905 23.7843 -3.8537 Vertex 12205 0.742035 23.5034 -3.67691 Vertex 12206 0.501171 22.729 -5.2427 Vertex 12207 0.876181 22.6777 -4.91915 Vertex 12208 1.38043 23.4071 -4.62019 Vertex 12209 1.32181 23.028 -4.62278 Vertex 12210 1.23389 23.5791 -4.12752 Vertex 12211 0.511559 24.0675 -4.33042 Vertex 12212 0.881513 23.9092 -4.02069 Vertex 12213 0.464367 22.9547 -5.5471 Vertex 12214 0.936095 22.8546 -5.33394 Vertex 12215 1.28392 23.5516 -5.13185 Vertex 12216 1.37378 23.2261 -5.09165 Vertex 12217 1.30597 23.7407 -4.67955 Vertex 12218 0.468712 24.0269 -4.88116 Vertex 12219 0.931449 24.0309 -4.57825 Vertex 12220 0.686659 23.1979 -5.63404 Vertex 12221 0.996225 23.4366 -5.49306 Vertex 12222 0.965774 23.7178 -5.29064 Vertex 12223 0.689605 23.8972 -5.19072 Vertex 12224 1.02197 23.6399 -3.82744 Vertex 12225 1.16827 23.8832 -4.28787 Vertex 12226 1.09018 23.8968 -4.91425 Vertex 12227 1.12682 23.1282 -5.39539 Vertex 12228 1.22489 22.9022 -5.05139 Vertex 12229 1.07572 22.7416 -4.54517 Vertex 12230 0.880441 21.7733 -3.60305 Vertex 12231 0.784603 22.0291 -3.52458 Vertex 12232 0.450542 20.6503 -4.82854 Vertex 12233 0.76233 21.2754 -4.33535 Vertex 12234 0.361539 21.9111 -3.90847 Vertex 12235 0.343928 19.2584 -4.99074 Vertex 12236 0.743522 19.9272 -4.85841 Vertex 12237 0.321997 17.4517 -5.48778 Vertex 12238 0.597177 18.2656 -5.16828 Vertex 12239 0.301882 16.7497 -4.59643 Vertex 12240 0.466247 15.731 -6.02947 Vertex 12241 0.253375 15.7619 -6.06461 Vertex 12242 0.240131 15.6267 -5.90942 Vertex 12243 0.453747 15.6602 -5.94666 Vertex 12244 0.848955 18.1821 -4.80915 Vertex 12245 0.787135 17.2147 -4.81681 Vertex 12246 0.876484 19.083 -4.33291 Vertex 12247 1.0242 19.8339 -4.48044 Vertex 12248 1.09262 20.4813 -4.12345 Vertex 12249 1.03851 21.1817 -4.04394 Vertex 12250 0.611122 22.0805 -3.60647 Vertex 12251 0.836339 21.7987 -3.81814 Vertex 12252 1.03188 20.4962 -4.57188 Vertex 12253 0.816406 19.1702 -4.7805 Vertex 12254 0.772732 17.3725 -5.27345 Vertex 12255 0.2628 16.2214 -4.92453 Vertex 12256 0.558535 16.5742 -4.79016 Vertex 12257 0.697786 16.3729 -5.11134 Vertex 12258 0.82767 16.8245 -5.20228 Vertex 12259 0.747772 16.6708 -5.49874 Vertex 12260 0.592184 16.9924 -5.54611 Vertex 12261 0.312786 16.8059 -5.67181 Vertex 12262 0.238371 15.8276 -5.46432 Vertex 12263 0.468558 16.0051 -5.20271 Vertex 12264 0.59032 15.9292 -5.57638 Vertex 12265 0.733329 16.2815 -5.50303 Vertex 12266 0.627833 16.1305 -5.81205 Vertex 12267 0.544137 16.4751 -5.75005 Vertex 12268 0.275885 16.2213 -5.91605 Vertex 12269 0.424075 15.703 -5.72432 Vertex 12270 0.583803 15.8416 -5.87483 Vertex 12271 0.461952 15.9386 -5.99863 Vertex 12272 -0.679747 16.6597 -2.686 Vertex 12273 -1.75628 15.7495 -3.4032 Vertex 12274 -0.997951 15.7143 -3.77555 Vertex 12275 -1.77162 18.8864 -3.36442 Vertex 12276 -1.07403 18.987 -3.87115 Vertex 12277 -2.0614 20.1472 -3.15166 Vertex 12278 -1.27682 20.4447 -3.68578 Vertex 12279 -2.37852 21.158 -2.67515 Vertex 12280 -1.37458 21.9382 -3.20659 Vertex 12281 -2.44351 15.9412 -2.78242 Vertex 12282 -2.47631 18.7288 -2.61249 Vertex 12283 -2.68337 19.7575 -2.48872 Vertex 12284 -3.01502 20.562 -1.91857 Vertex 12285 -1.69419 17.1751 -2.1542 Vertex 12286 -2.19117 17.4225 -1.76247 Vertex 12287 -2.74837 18.0295 -1.55021 Vertex 12288 -3.03008 19.3753 -1.7787 Vertex 12289 -3.2066 20.0084 -1.4579 Vertex 12290 -3.2944 20.3308 -0.955443 Vertex 12291 -3.30898 20.4145 -0.449071 Vertex 12292 -3.28517 20.3028 -0.0656575 Vertex 12293 -3.24523 19.9939 0.102583 Vertex 12294 -3.21751 19.5747 0.142561 Vertex 12295 -3.20929 19.076 0.165946 Vertex 12296 -3.2038 18.7723 0.212609 Vertex 12297 -3.19593 18.4996 0.25861 Vertex 12298 -3.19359 18.2798 0.187711 Vertex 12299 -3.20651 18.0414 0.147853 Vertex 12300 -3.25953 17.7998 0.482691 Vertex 12301 -3.2165 18.1494 0.773412 Vertex 12302 -3.192 18.431 0.964995 Vertex 12303 -3.26887 18.8228 0.815181 Vertex 12304 -3.3241 19.0786 0.636315 Vertex 12305 -3.3063 19.4835 0.648005 Vertex 12306 -3.28047 19.9814 0.631466 Vertex 12307 -3.3521 20.5191 0.189181 Vertex 12308 -3.33425 20.7946 -0.407486 Vertex 12309 -2.66452 21.4923 -2.19618 Vertex 12310 -1.73429 22.2365 -2.70164 Vertex 12311 -7.45058e-009 22.8375 -2.87487 Vertex 12312 -0.939607 15.4623 -3.24743 Vertex 12313 -1.7273 15.5589 -2.76219 Vertex 12314 -2.30554 15.8518 -2.28454 Vertex 12315 -2.7964 16.7347 -1.99336 Vertex 12316 -2.53231 16.9007 -3.03534 Vertex 12317 -1.79119 16.9127 -3.80125 Vertex 12318 -1.06334 16.9861 -4.23443 Vertex 12319 -3.72529e-009 23.7957 -3.89179 Vertex 12320 0 22.7383 -5.27619 Vertex 12321 0 23.4424 -5.71301 Vertex 12322 0 23.7809 -5.4704 Vertex 12323 -1.13133 23.4469 -3.92168 Vertex 12324 -0.807536 23.7464 -3.80985 Vertex 12325 -1.29388 23.6828 -4.38369 Vertex 12326 -0.931517 24.0107 -4.28578 Vertex 12327 -1.21499 23.7525 -4.99018 Vertex 12328 -0.858434 23.9873 -4.88445 Vertex 12329 -1.26514 23.3312 -5.28501 Vertex 12330 -0.862163 22.9877 -5.47782 Vertex 12331 -1.37505 23.1242 -4.88142 Vertex 12332 -0.932689 22.7631 -5.16139 Vertex 12333 -1.21662 22.9369 -4.36666 Vertex 12334 -0.798288 22.6185 -4.64686 Vertex 12335 -0.882375 21.7712 -3.51077 Vertex 12336 -1.06 20.5093 -3.91922 Vertex 12337 -0.849312 19.0412 -4.12037 Vertex 12338 -0.680399 17.1329 -4.61356 Vertex 12339 3.72529e-009 17.4666 -5.49694 Vertex 12340 0 19.2835 -5.00039 Vertex 12341 -0.907302 21.7703 -3.71144 Vertex 12342 -0.658877 21.8498 -3.89096 Vertex 12343 -1.11247 20.4625 -4.36081 Vertex 12344 -0.821148 20.5648 -4.735 Vertex 12345 -0.8957 19.1293 -4.57313 Vertex 12346 -0.634012 19.2113 -4.92852 Vertex 12347 -0.840701 17.3084 -5.06128 Vertex 12348 -0.59568 17.417 -5.42504 Vertex 12349 -0.502947 16.2382 -4.95265 Vertex 12350 -0.796375 16.5442 -5.32019 Vertex 12351 -0.577925 16.7567 -5.62371 Vertex 12352 0 15.8419 -5.47663 Vertex 12353 -0.445543 15.8387 -5.48003 Vertex 12354 -0.656487 16.0446 -5.70363 Vertex 12355 -0.501814 16.1887 -5.88755 Vertex 12356 -1.13894 22.5456 -2.54885 Vertex 12357 0 22.8098 -2.64091 Vertex 12358 -1.6724 22.2677 -2.43224 Vertex 12359 -2.57658 21.5256 -1.96079 Vertex 12360 -3.15896 20.5893 0.274645 Vertex 12361 -3.08874 19.5001 0.820636 Vertex 12362 -3.13001 19.073 0.815507 Vertex 12363 -3.06829 18.8227 1.00456 Vertex 12364 -3.05415 17.6892 0.587266 Vertex 12365 -3.0766 17.5443 0.266892 Vertex 12366 1.75628 15.7495 -3.4032 Vertex 12367 0.997951 15.7143 -3.77555 Vertex 12368 1.77162 18.8864 -3.36442 Vertex 12369 1.07403 18.987 -3.87115 Vertex 12370 2.0614 20.1472 -3.15166 Vertex 12371 1.27682 20.4447 -3.68578 Vertex 12372 2.37852 21.158 -2.67515 Vertex 12373 1.37458 21.9382 -3.20659 Vertex 12374 2.44351 15.9412 -2.78242 Vertex 12375 2.47631 18.7288 -2.61249 Vertex 12376 2.68337 19.7575 -2.48872 Vertex 12377 3.01502 20.562 -1.91857 Vertex 12378 0 17.063 -2.86002 Vertex 12379 1.73932 17.1751 -2.1542 Vertex 12380 2.20648 17.4225 -1.76247 Vertex 12381 2.74837 18.0295 -1.55021 Vertex 12382 3.03008 19.3753 -1.7787 Vertex 12383 3.2066 20.0084 -1.4579 Vertex 12384 3.2944 20.3308 -0.955443 Vertex 12385 3.30898 20.4145 -0.449071 Vertex 12386 3.28517 20.3028 -0.0656575 Vertex 12387 3.24523 19.9939 0.102583 Vertex 12388 3.21751 19.5747 0.142561 Vertex 12389 3.20929 19.076 0.165946 Vertex 12390 3.2038 18.7723 0.212609 Vertex 12391 3.19593 18.4996 0.25861 Vertex 12392 3.19359 18.2798 0.187711 Vertex 12393 3.20651 18.0414 0.147853 Vertex 12394 3.25953 17.7998 0.482691 Vertex 12395 3.2165 18.1494 0.773412 Vertex 12396 3.192 18.431 0.964995 Vertex 12397 3.26887 18.8228 0.815181 Vertex 12398 3.3241 19.0786 0.636315 Vertex 12399 3.3063 19.4835 0.648004 Vertex 12400 3.28048 19.9814 0.631466 Vertex 12401 3.3521 20.5191 0.189181 Vertex 12402 3.33425 20.7946 -0.407487 Vertex 12403 2.66452 21.4923 -2.19618 Vertex 12404 1.73429 22.2365 -2.70164 Vertex 12405 0 15.4679 -3.43718 Vertex 12406 0.939606 15.4623 -3.24743 Vertex 12407 1.7273 15.5589 -2.76219 Vertex 12408 2.30554 15.8518 -2.28454 Vertex 12409 2.7964 16.7347 -1.99336 Vertex 12410 2.53231 16.9007 -3.03534 Vertex 12411 1.79119 16.9127 -3.80125 Vertex 12412 1.06334 16.9861 -4.23443 Vertex 12413 0 16.7615 -4.60902 Vertex 12414 0 16.0518 -4.10686 Vertex 12415 0 22.5974 -4.72457 Vertex 12416 0 24.0782 -4.36442 Vertex 12417 0 22.9651 -5.57845 Vertex 12418 -3.72529e-009 24.034 -4.88616 Vertex 12419 1.13133 23.4469 -3.92168 Vertex 12420 0.807536 23.7464 -3.80985 Vertex 12421 1.29388 23.6827 -4.38369 Vertex 12422 0.931517 24.0107 -4.28578 Vertex 12423 1.21499 23.7525 -4.99018 Vertex 12424 0.858434 23.9873 -4.88445 Vertex 12425 1.26514 23.3312 -5.28501 Vertex 12426 0.862163 22.9877 -5.47782 Vertex 12427 1.37505 23.1242 -4.88142 Vertex 12428 0.932689 22.7631 -5.16139 Vertex 12429 1.21662 22.9369 -4.36666 Vertex 12430 0.798288 22.6185 -4.64685 Vertex 12431 0.882375 21.7712 -3.51077 Vertex 12432 1.06 20.5093 -3.91922 Vertex 12433 0.849312 19.0412 -4.12037 Vertex 12434 0.680399 17.1329 -4.61356 Vertex 12435 0 20.6974 -4.85791 Vertex 12436 0.907302 21.7704 -3.71143 Vertex 12437 0.658877 21.8498 -3.89096 Vertex 12438 1.11247 20.4625 -4.36081 Vertex 12439 0.821148 20.5648 -4.735 Vertex 12440 0.8957 19.1293 -4.57313 Vertex 12441 0.634012 19.2113 -4.92852 Vertex 12442 0.840701 17.3084 -5.06128 Vertex 12443 0.59568 17.417 -5.42504 Vertex 12444 0 16.8213 -5.67664 Vertex 12445 0 16.2425 -4.94312 Vertex 12446 0.502947 16.2382 -4.95265 Vertex 12447 0.796375 16.5442 -5.32019 Vertex 12448 0.577925 16.7567 -5.62371 Vertex 12449 0 16.2311 -5.91855 Vertex 12450 0.445543 15.8387 -5.48003 Vertex 12451 0.656487 16.0446 -5.70363 Vertex 12452 0.501814 16.1887 -5.88755 Vertex 12453 0 15.7635 -6.06331 Vertex 12454 0 15.6338 -5.91603 Vertex 12455 1.13894 22.5456 -2.54885 Vertex 12456 1.6724 22.2677 -2.43224 Vertex 12457 2.57658 21.5256 -1.96079 Vertex 12458 3.15896 20.5893 0.274645 Vertex 12459 3.08874 19.5001 0.820635 Vertex 12460 3.13001 19.073 0.815507 Vertex 12461 3.06829 18.8227 1.00456 Vertex 12462 3.05391 17.6892 0.587266 Vertex 12463 3.07611 17.5443 0.266892 Vertex 12464 0.256659 15.9605 -6.01781 Vertex 12465 0.564516 15.8994 -5.9478 Vertex 12466 0.539265 15.7639 -5.78917 Vertex 12467 0.231407 15.6955 -5.71374 Vertex 12468 0.29634 16.5188 -5.78833 Vertex 12469 0.694844 16.3969 -5.64864 Vertex 12470 0.644458 16.1266 -5.33211 Vertex 12471 0.245955 15.9901 -5.1816 Vertex 12472 0.31998 17.035 -5.60365 Vertex 12473 0.768839 16.9246 -5.40348 Vertex 12474 0.746405 16.685 -4.96904 Vertex 12475 0.297546 16.5599 -4.75204 Vertex 12476 0.774137 18.2293 -5.01923 Vertex 12477 0.94289 19.8705 -4.69692 Vertex 12478 0.961683 21.213 -4.20874 Vertex 12479 0.336916 22.131 -3.61047 Vertex 12480 1.01574 21.1975 -3.86538 Vertex 12481 1.00731 19.8243 -4.2323 Vertex 12482 0.816792 18.1135 -4.56626 Vertex 12483 0.322914 18.3014 -5.22814 Vertex 12484 0.40624 19.9967 -4.94161 Vertex 12485 0.417528 21.353 -4.39933 Vertex 12486 1.16663 22.8126 -4.80137 Vertex 12487 1.22486 23.0021 -5.23516 Vertex 12488 0.891032 23.296 -5.57478 Vertex 12489 0.871659 23.8251 -5.22522 Vertex 12490 1.17553 23.9191 -4.59281 Vertex 12491 1.10894 23.7803 -4.02639 Vertex 12492 0.377353 23.9268 -5.185 Vertex 12493 1.01422 23.5828 -5.38913 Vertex 12494 0.371121 23.1793 -5.67057 Vertex 12495 0.510051 24.0809 -4.59818 Vertex 12496 1.38644 23.491 -4.87613 Vertex 12497 0.503903 22.819 -5.41523 Vertex 12498 0.483422 23.9655 -4.07226 Vertex 12499 1.32454 23.306 -4.36224 Vertex 12500 0.467618 22.6418 -4.99724 Vertex 12501 0.407272 23.5332 -3.70478 Vertex 12502 1.00263 23.0537 -3.9389 Vertex 12503 0.403068 22.6124 -4.37213 Vertex 12504 0.505395 22.7659 -2.90837 Vertex 12505 1.01478 22.3076 -3.10997 Vertex 12506 0.863374 18.0086 -4.22038 Vertex 12507 1.37804 17.9426 -3.89946 Vertex 12508 2.15381 17.8459 -3.25547 Vertex 12509 2.73888 17.8335 -2.42559 Vertex 12510 2.87632 17.6303 -1.87517 Vertex 12511 2.71866 17.3007 -1.51331 Vertex 12512 2.44995 16.9001 -1.66336 Vertex 12513 1.99575 16.4666 -2.2312 Vertex 12514 1.32983 16.2955 -2.69531 Vertex 12515 0.468936 16.2501 -3.07408 Vertex 12516 0.646034 22.7319 -2.7197 Vertex 12517 1.45554 22.4579 -2.61809 Vertex 12518 2.16984 21.9214 -2.35492 Vertex 12519 2.96396 21.2305 -1.60817 Vertex 12520 3.22417 20.9381 -0.735214 Vertex 12521 3.26339 20.7505 -0.0567305 Vertex 12522 3.21902 20.2959 0.544284 Vertex 12523 3.1809 19.726 0.80056 Vertex 12524 3.23184 19.2594 0.748525 Vertex 12525 3.21794 18.9538 0.842683 Vertex 12526 3.12345 18.6193 1.06603 Vertex 12527 3.08986 18.2507 1.04449 Vertex 12528 3.14059 17.9083 0.73187 Vertex 12529 3.17793 17.6206 0.394031 Vertex 12530 3.07725 18.187 0.064987 Vertex 12531 3.07933 18.4014 0.101066 Vertex 12532 3.0829 18.6449 0.127663 Vertex 12533 3.07897 18.9151 0.112482 Vertex 12534 3.08282 19.3264 0.091767 Vertex 12535 3.11054 19.8004 0.0534137 Vertex 12536 3.15017 20.1389 -0.0178845 Vertex 12537 3.18626 20.3154 -0.25284 Vertex 12538 3.20279 20.2975 -0.673476 Vertex 12539 3.17151 20.0989 -1.15047 Vertex 12540 3.07121 19.6467 -1.51745 Vertex 12541 2.87818 19.0054 -1.66425 Vertex 12542 2.70188 18.4479 -1.57323 Vertex 12543 3.24813 18.6306 0.576178 Vertex 12544 3.29124 18.9284 0.438489 Vertex 12545 3.2309 18.3391 0.564355 Vertex 12546 3.25463 18.0822 0.386318 Vertex 12547 3.30354 19.288 0.378862 Vertex 12548 3.294 19.7593 0.394064 Vertex 12549 3.32574 20.2159 0.240634 Vertex 12550 2.91151 21.0913 -1.98704 Vertex 12551 2.5764 20.458 -2.5958 Vertex 12552 2.24615 19.4652 -2.91798 Vertex 12553 2.16646 16.2232 -3.36564 Vertex 12554 2.08598 15.5225 -2.84456 Vertex 12555 2.08472 17.4478 -1.78054 Vertex 12556 3.36014 20.5376 -0.168142 Vertex 12557 3.34576 20.6302 -0.729915 Vertex 12558 3.25898 20.4679 -1.34977 Vertex 12559 3.04372 19.9225 -1.91259 Vertex 12560 2.79005 19.1576 -2.15857 Vertex 12561 2.74135 16.5413 -2.55066 Vertex 12562 2.58309 16.0627 -2.1622 Vertex 12563 0.345559 23.5856 -5.67592 Vertex 12564 2.06989 21.7351 -2.75482 Vertex 12565 1.11312 21.1889 -3.62862 Vertex 12566 1.77349 20.9298 -3.26387 Vertex 12567 1.00859 19.8118 -3.89424 Vertex 12568 1.49437 19.6957 -3.54486 Vertex 12569 0.685405 16.2756 -4.17954 Vertex 12570 1.40295 16.2239 -3.91301 Vertex 12571 0.497497 15.3797 -3.63733 Vertex 12572 1.37567 15.3893 -3.32284 Vertex 12573 0.395333 17.1559 -2.72976 Vertex 12574 -0.256659 15.9605 -6.01781 Vertex 12575 -0.564516 15.8994 -5.9478 Vertex 12576 -0.539265 15.7639 -5.78917 Vertex 12577 -0.231407 15.6955 -5.71374 Vertex 12578 -0.29634 16.5188 -5.78833 Vertex 12579 -0.694844 16.3969 -5.64864 Vertex 12580 -0.644458 16.1266 -5.33211 Vertex 12581 -0.245955 15.9901 -5.1816 Vertex 12582 -0.31998 17.035 -5.60365 Vertex 12583 -0.768839 16.9245 -5.40348 Vertex 12584 -0.746405 16.685 -4.96904 Vertex 12585 -0.297547 16.5599 -4.75204 Vertex 12586 -0.774137 18.2293 -5.01923 Vertex 12587 -0.94289 19.8705 -4.69692 Vertex 12588 -0.961683 21.213 -4.20874 Vertex 12589 -0.336916 22.131 -3.61047 Vertex 12590 -1.01574 21.1975 -3.86538 Vertex 12591 -1.00731 19.8244 -4.2323 Vertex 12592 -0.816792 18.1135 -4.56626 Vertex 12593 -0.322914 18.3014 -5.22814 Vertex 12594 -0.40624 19.9967 -4.94161 Vertex 12595 -0.417528 21.353 -4.39933 Vertex 12596 -1.16663 22.8126 -4.80137 Vertex 12597 -1.22486 23.0021 -5.23516 Vertex 12598 -0.891032 23.296 -5.57478 Vertex 12599 -0.871659 23.8251 -5.22522 Vertex 12600 -1.17553 23.9191 -4.59281 Vertex 12601 -1.10894 23.7803 -4.02639 Vertex 12602 -0.377353 23.9268 -5.185 Vertex 12603 -1.01422 23.5828 -5.38913 Vertex 12604 -0.371121 23.1793 -5.67057 Vertex 12605 -0.510051 24.0809 -4.59818 Vertex 12606 -1.38644 23.491 -4.87614 Vertex 12607 -0.503903 22.819 -5.41523 Vertex 12608 -0.483422 23.9655 -4.07226 Vertex 12609 -1.32454 23.306 -4.36224 Vertex 12610 -0.467618 22.6418 -4.99724 Vertex 12611 -0.407272 23.5332 -3.70477 Vertex 12612 -1.00263 23.0537 -3.9389 Vertex 12613 -0.403068 22.6124 -4.37213 Vertex 12614 -0.505395 22.7659 -2.90837 Vertex 12615 -1.01478 22.3076 -3.10997 Vertex 12616 -0.863374 18.0086 -4.22038 Vertex 12617 -1.37804 17.9426 -3.89946 Vertex 12618 -2.15381 17.8459 -3.25547 Vertex 12619 -2.73888 17.8335 -2.42559 Vertex 12620 -2.87632 17.6303 -1.87517 Vertex 12621 -2.70361 17.3007 -1.51331 Vertex 12622 -2.42915 16.9001 -1.66336 Vertex 12623 -1.99575 16.4666 -2.2312 Vertex 12624 -1.32983 16.2955 -2.69531 Vertex 12625 -0.468936 16.2501 -3.07408 Vertex 12626 -0.646034 22.7319 -2.7197 Vertex 12627 -1.45554 22.4579 -2.61809 Vertex 12628 -2.16984 21.9214 -2.35492 Vertex 12629 -2.96396 21.2305 -1.60817 Vertex 12630 -3.22417 20.9381 -0.735213 Vertex 12631 -3.26339 20.7505 -0.0567305 Vertex 12632 -3.21902 20.2959 0.544284 Vertex 12633 -3.1809 19.726 0.80056 Vertex 12634 -3.23184 19.2594 0.748524 Vertex 12635 -3.21794 18.9538 0.842683 Vertex 12636 -3.12345 18.6193 1.06603 Vertex 12637 -3.08986 18.2507 1.04449 Vertex 12638 -3.14059 17.9083 0.73187 Vertex 12639 -3.17793 17.6206 0.394031 Vertex 12640 -3.07725 18.187 0.064987 Vertex 12641 -3.07933 18.4014 0.101066 Vertex 12642 -3.0829 18.6449 0.127662 Vertex 12643 -3.11054 19.8004 0.0534137 Vertex 12644 -3.15017 20.1389 -0.0178845 Vertex 12645 -3.18626 20.3154 -0.25284 Vertex 12646 -3.20279 20.2975 -0.673476 Vertex 12647 -3.17151 20.0989 -1.15047 Vertex 12648 -3.07122 19.6467 -1.51745 Vertex 12649 -2.87818 19.0054 -1.66425 Vertex 12650 -2.70162 18.4479 -1.57323 Vertex 12651 -3.24813 18.6306 0.576178 Vertex 12652 -3.29124 18.9284 0.438489 Vertex 12653 -3.2309 18.3391 0.564355 Vertex 12654 -3.25463 18.0822 0.386318 Vertex 12655 -3.30355 19.288 0.378862 Vertex 12656 -3.294 19.7593 0.394064 Vertex 12657 -3.32574 20.2159 0.240634 Vertex 12658 -2.91151 21.0913 -1.98704 Vertex 12659 -2.5764 20.458 -2.5958 Vertex 12660 -2.24615 19.4652 -2.91798 Vertex 12661 -2.16646 16.2232 -3.36564 Vertex 12662 -2.08598 15.5225 -2.84456 Vertex 12663 -3.36014 20.5376 -0.168142 Vertex 12664 -3.34576 20.6302 -0.729914 Vertex 12665 -3.25898 20.4679 -1.34977 Vertex 12666 -3.04372 19.9225 -1.91259 Vertex 12667 -2.79005 19.1576 -2.15857 Vertex 12668 -2.74135 16.5413 -2.55066 Vertex 12669 -2.58309 16.0627 -2.1622 Vertex 12670 -0.345559 23.5856 -5.67592 Vertex 12671 -2.06989 21.7351 -2.75482 Vertex 12672 -1.11312 21.1889 -3.62862 Vertex 12673 -1.77349 20.9298 -3.26387 Vertex 12674 -1.00859 19.8118 -3.89424 Vertex 12675 -1.49437 19.6957 -3.54486 Vertex 12676 -0.685405 16.2756 -4.17954 Vertex 12677 -1.40295 16.2239 -3.91301 Vertex 12678 -0.497496 15.3797 -3.63733 Vertex 12679 -1.37567 15.3893 -3.32284 Vertex 12680 -0.386122 17.1559 -2.72976 Vertex 12681 -1.18034 16.7713 -2.39122 Vertex 12682 -3.1738 18.9761 -0.33588 Vertex 12683 -3.25253 18.6432 -0.932922 Vertex 12684 -3.24722 18.2049 -0.797923 Vertex 12685 -3.23801 18.2501 -0.883047 Vertex 12686 -3.21427 18.4283 -0.552352 Vertex 12687 -3.07245 18.925 -0.636087 Vertex 12688 -3.28325 18.966 -0.888333 Vertex 12689 -3.36269 19.2344 -0.892584 Vertex 12690 -3.28214 19.6709 -0.497182 Vertex 12691 -3.30689 19.3748 -0.676872 Vertex 12692 -3.23486 18.0943 -0.432709 Vertex 12693 -3.11578 18.4934 -0.293697 Vertex 12694 -3.23329 17.9824 -0.682232 Vertex 12695 -3.08668 19.1839 -0.731135 Vertex 12696 -3.38262 20.1644 -0.557713 Vertex 12697 -3.26907 20.0756 -0.953837 Vertex 12698 -3.08489 18.1326 -0.953084 Vertex 12699 -3.03684 17.8344 -0.479243 Vertex 12700 -2.90908 17.7774 -0.553209 Vertex 12701 -2.83759 17.9729 -0.713995 Vertex 12702 -2.86764 16.5662 0.805122 Vertex 12703 -2.38862 15.8346 -0.214113 Vertex 12704 -2.84643 19.8832 1.47261 Vertex 12705 -2.84651 20.0209 1.35633 Vertex 12706 -1.37796 22.4374 2.41 Vertex 12707 -0.609935 22.3132 2.77277 Vertex 12708 -0.459398 20.1463 4.00295 Vertex 12709 -0.268425 21.295 3.52022 Vertex 12710 -0.0546338 22.2238 2.90293 Vertex 12711 -2.18903 15.5088 2.43772 Vertex 12712 -2.21856 15.1005 2.04865 Vertex 12713 -1.42213 14.4803 2.64079 Vertex 12714 -1.07843 14.2372 2.40417 Vertex 12715 -2.39912 16.0831 2.17585 Vertex 12716 -1.53709 14.5813 0.957757 Vertex 12717 -2.45224 16.6891 2.58036 Vertex 12718 -2.47387 17.119 2.01792 Vertex 12719 -0.228967 19.6136 3.9352 Vertex 12720 -0.540229 18.7446 3.89042 Vertex 12721 -0.686536 19.1659 3.42555 Vertex 12722 -0.540861 19.7283 3.86248 Vertex 12723 -0.487855 18.0211 4.50159 Vertex 12724 -0.280427 17.9971 4.76462 Vertex 12725 -0.432674 17.9398 4.12598 Vertex 12726 -0.450323 17.9581 4.1411 Vertex 12727 -0.181427 17.5699 4.37887 Vertex 12728 -2.2803 18.3713 3.41848 Vertex 12729 -0.356665 14.0965 3.61521 Vertex 12730 -2.34564 19.4231 2.60526 Vertex 12731 -2.12899 20.3369 3.22626 Vertex 12732 -2.61362 19.3809 2.29513 Vertex 12733 -2.72526 18.9867 2.40814 Vertex 12734 -2.98453 19.1738 1.25862 Vertex 12735 -2.95882 17.8293 0.025782 Vertex 12736 -2.83298 17.3486 -0.217609 Vertex 12737 -3.14277 20.2929 -0.489157 Vertex 12738 -0.265431 17.7895 4.26792 Vertex 12739 -0.66944 17.8127 4.09214 Vertex 12740 -0.545632 18.4798 3.99806 Vertex 12741 -0.8588 17.9713 3.88136 Vertex 12742 -0.748893 17.781 4.07976 Vertex 12743 -0.613142 18.4545 3.87929 Vertex 12744 -0.80235 18.1858 3.8003 Vertex 12745 -1.01665 17.933 3.77594 Vertex 12746 -1.46843 17.565 3.53318 Vertex 12747 -1.55143 17.6586 3.53005 Vertex 12748 -1.88927 16.1542 2.97271 Vertex 12749 -2.12916 16.7634 3.04058 Vertex 12750 -1.99855 17.1318 3.19506 Vertex 12751 -1.86833 17.0898 3.16714 Vertex 12752 -0.906221 17.2285 4.07279 Vertex 12753 -1.12032 15.2809 3.5677 Vertex 12754 -1.28086 15.3312 3.4241 Vertex 12755 -1.25404 18.859 3.55683 Vertex 12756 -2.07162 18.7948 3.46777 Vertex 12757 -3.00936 18.8469 0.069268 Vertex 12758 -3.11891 18.1072 -0.230249 Vertex 12759 -2.8975 19.3277 -1.52365 Vertex 12760 -3.0911 19.7604 -1.21556 Vertex 12761 -2.52634 17.9448 -1.09069 Vertex 12762 -3.28557 19.9624 -0.155263 Vertex 12763 3.1738 18.9761 -0.33588 Vertex 12764 3.25253 18.6432 -0.932922 Vertex 12765 3.24388 18.2513 -0.797574 Vertex 12766 3.23814 18.2501 -0.883047 Vertex 12767 3.21427 18.4283 -0.552352 Vertex 12768 3.07245 18.925 -0.636087 Vertex 12769 3.28325 18.966 -0.888333 Vertex 12770 3.36269 19.2344 -0.892584 Vertex 12771 3.28214 19.6709 -0.497182 Vertex 12772 3.30689 19.3748 -0.676872 Vertex 12773 3.2382 18.1077 -0.452139 Vertex 12774 3.10549 18.4925 -0.263145 Vertex 12775 3.23586 17.9824 -0.682233 Vertex 12776 3.09951 19.1848 -0.756751 Vertex 12777 3.38262 20.1644 -0.557713 Vertex 12778 3.26907 20.0756 -0.953837 Vertex 12779 3.08724 18.1326 -0.953086 Vertex 12780 3.04757 17.8344 -0.479243 Vertex 12781 2.92885 17.7774 -0.553209 Vertex 12782 2.85042 17.9729 -0.713995 Vertex 12783 2.82178 16.5662 0.805122 Vertex 12784 2.36265 15.8346 -0.214113 Vertex 12785 2.84651 20.0209 1.35633 Vertex 12786 -0.0909987 23.4905 -0.556784 Vertex 12787 1.49012e-008 23.366 -1.10716 Vertex 12788 1.37796 22.4374 2.41 Vertex 12789 0.609935 22.3132 2.77277 Vertex 12790 0.459398 20.1463 4.00295 Vertex 12791 0.268425 21.295 3.52022 Vertex 12792 2.189 15.5088 2.43772 Vertex 12793 2.20659 15.1005 2.04865 Vertex 12794 1.42213 14.4803 2.64079 Vertex 12795 1.07679 14.2372 2.40417 Vertex 12796 2.3982 16.0831 2.17585 Vertex 12797 1.43527 14.5813 0.957757 Vertex 12798 2.45224 16.6891 2.58036 Vertex 12799 2.47387 17.119 2.01792 Vertex 12800 -0.029879 19.6569 3.97765 Vertex 12801 0.228967 19.6136 3.9352 Vertex 12802 0.540229 18.7446 3.89042 Vertex 12803 0.733234 19.1467 3.43562 Vertex 12804 0.540861 19.7283 3.86248 Vertex 12805 0.487855 18.0211 4.50159 Vertex 12806 0.280427 17.9971 4.76462 Vertex 12807 0.399388 17.9487 4.15334 Vertex 12808 0.450323 17.9581 4.1411 Vertex 12809 0.181428 17.5699 4.37887 Vertex 12810 2.30822 18.4193 3.38131 Vertex 12811 0.356665 14.0965 3.61521 Vertex 12812 2.33118 19.4415 2.62103 Vertex 12813 2.12899 20.3369 3.22626 Vertex 12814 2.61362 19.3809 2.29513 Vertex 12815 2.74726 19.005 2.32956 Vertex 12816 2.98453 19.1738 1.25862 Vertex 12817 2.97543 17.8901 0.0616755 Vertex 12818 2.85358 17.3486 -0.217609 Vertex 12819 3.14277 20.2929 -0.489157 Vertex 12820 0.265432 17.7895 4.26792 Vertex 12821 0.650927 17.8228 4.09028 Vertex 12822 0.592571 18.4213 3.94936 Vertex 12823 0.545632 18.4798 3.99806 Vertex 12824 0.8588 17.9713 3.88136 Vertex 12825 0.756248 17.7656 4.08206 Vertex 12826 0.627814 18.4354 3.87169 Vertex 12827 0.80235 18.1858 3.8003 Vertex 12828 1.01665 17.933 3.77594 Vertex 12829 1.46843 17.565 3.53318 Vertex 12830 1.55143 17.6586 3.53005 Vertex 12831 1.88927 16.1542 2.97271 Vertex 12832 2.12916 16.7635 3.04058 Vertex 12833 2.00838 17.103 3.17639 Vertex 12834 1.86833 17.0898 3.16714 Vertex 12835 0.906221 17.2285 4.07279 Vertex 12836 -1.86265e-009 17.1311 4.31946 Vertex 12837 1.16246 15.3755 3.57077 Vertex 12838 1.2602 15.2648 3.42147 Vertex 12839 1.25795 18.8814 3.55553 Vertex 12840 2.05488 18.7769 3.48746 Vertex 12841 3.00936 18.8469 0.069268 Vertex 12842 3.11902 18.1072 -0.23025 Vertex 12843 2.8975 19.3277 -1.52365 Vertex 12844 3.0911 19.7604 -1.21556 Vertex 12845 2.5818 17.7884 -1.24104 Vertex 12846 2.55701 17.9448 -1.09069 Vertex 12847 3.28557 19.9625 -0.155263 Vertex 12848 2.97751 17.7929 -0.195246 Vertex 12849 2.80966 17.4584 -0.380781 Vertex 12850 1.73329 19.4383 2.44374 Vertex 12851 1.65524 19.365 2.50798 Vertex 12852 1.39672 19.3461 2.6176 Vertex 12853 1.24017 19.4156 2.64574 Vertex 12854 0.207621 14.1239 3.69728 Vertex 12855 0.175972 14.1907 3.77569 Vertex 12856 2.97991 17.1256 0.222806 Vertex 12857 2.91627 18.336 1.45973 Vertex 12858 2.47192 19.3043 2.5151 Vertex 12859 2.33398 19.3641 2.67069 Vertex 12860 2.09718 18.9697 3.37161 Vertex 12861 0.69699 17.6309 4.12565 Vertex 12862 0.660697 19.2749 3.44925 Vertex 12863 0.586341 19.3407 3.47984 Vertex 12864 0.621061 19.129 3.50895 Vertex 12865 -2.97009 17.7929 -0.195246 Vertex 12866 -2.77966 17.4584 -0.380781 Vertex 12867 -1.68109 19.3502 2.46774 Vertex 12868 -1.65157 19.4303 2.47461 Vertex 12869 -1.44345 19.4835 2.57951 Vertex 12870 -1.24016 19.4156 2.64574 Vertex 12871 -0.232538 14.1413 3.72415 Vertex 12872 -0.175972 14.1907 3.77569 Vertex 12873 -0.901045 12.1746 -0.951365 Vertex 12874 -0.310343 12.1102 -0.825853 Vertex 12875 0.287656 12.1746 -0.951365 Vertex 12876 0.635662 12.3186 -1.25963 Vertex 12877 0.692183 12.5235 -1.65733 Vertex 12878 0.352075 12.8004 -2.09959 Vertex 12879 -0.302492 12.9475 -2.2685 Vertex 12880 -0.957199 12.8004 -2.09959 Vertex 12881 -2.98658 17.1256 0.222805 Vertex 12882 -2.91627 18.336 1.45973 Vertex 12883 -2.47192 19.3043 2.5151 Vertex 12884 -2.33398 19.3641 2.67069 Vertex 12885 -2.09718 18.9697 3.37161 Vertex 12886 -0.69699 17.6309 4.12565 Vertex 12887 -0.660697 19.2749 3.44925 Vertex 12888 -0.586341 19.3407 3.47984 Vertex 12889 -0.621061 19.129 3.50895 Vertex 12890 -3.28085 19.3776 -0.0650188 Vertex 12891 -3.16621 19.1932 -0.0624817 Vertex 12892 -3.22848 19.1114 -0.185249 Vertex 12893 -3.30639 19.2417 -0.179327 Vertex 12894 -3.34587 19.6756 -0.0601182 Vertex 12895 -3.21088 19.5018 0.014449 Vertex 12896 -3.3772 19.524 -0.115024 Vertex 12897 -3.26706 19.8212 -0.0648592 Vertex 12898 -3.45864 19.799 -0.200063 Vertex 12899 -3.4181 19.9483 -0.245126 Vertex 12900 -3.2249 19.0455 -0.297062 Vertex 12901 -3.16548 18.9958 -0.226729 Vertex 12902 -3.17158 19.0222 -0.438811 Vertex 12903 -3.20552 19.1571 -0.481873 Vertex 12904 -3.27635 19.1704 -0.328346 Vertex 12905 -3.36115 19.386 -0.232878 Vertex 12906 -3.29425 19.3092 -0.372907 Vertex 12907 -3.37855 19.5158 -0.318065 Vertex 12908 -3.44048 19.6416 -0.230985 Vertex 12909 -3.45647 19.7097 -0.367738 Vertex 12910 -3.50963 19.8415 -0.376179 Vertex 12911 -3.5134 19.9873 -0.440798 Vertex 12912 -3.46852 19.8019 -0.527449 Vertex 12913 -3.51533 19.9125 -0.616384 Vertex 12914 -3.51336 20.0089 -0.768004 Vertex 12915 -3.46439 19.79 -0.746417 Vertex 12916 -3.50932 19.8459 -0.898137 Vertex 12917 -3.48709 19.8418 -1.08711 Vertex 12918 -3.44806 19.6855 -0.951299 Vertex 12919 -3.4707 19.6383 -1.11632 Vertex 12920 -3.43274 19.5114 -1.27904 Vertex 12921 -3.41312 19.4448 -1.07936 Vertex 12922 -3.40809 19.2823 -1.2038 Vertex 12923 -3.36653 19.0494 -1.27757 Vertex 12924 -3.35468 19.0809 -1.09895 Vertex 12925 -3.33543 18.8549 -1.13538 Vertex 12926 -3.28947 18.6278 -1.1409 Vertex 12927 -3.27898 18.7451 -1.00152 Vertex 12928 -3.26282 18.5392 -0.989309 Vertex 12929 -3.2414 18.3436 -0.968154 Vertex 12930 -3.248 18.4164 -0.88166 Vertex 12931 -3.24461 18.3902 -0.779043 Vertex 12932 -3.23892 18.5318 -0.805179 Vertex 12933 -3.24095 18.3445 -0.676438 Vertex 12934 -3.23224 18.5169 -0.690385 Vertex 12935 -3.20294 18.5187 -0.58437 Vertex 12936 -3.14902 18.5878 -0.474289 Vertex 12937 -3.13481 18.6696 -0.548466 Vertex 12938 -3.0982 18.717 -0.445644 Vertex 12939 -3.0771 18.8449 -0.55661 Vertex 12940 -3.21844 18.6746 -0.675653 Vertex 12941 -3.15159 18.8507 -0.695634 Vertex 12942 -3.25679 18.7041 -0.822245 Vertex 12943 -3.26351 18.8713 -0.833275 Vertex 12944 -3.26014 18.7866 -0.941489 Vertex 12945 -3.29853 18.948 -0.934804 Vertex 12946 -3.34715 19.1052 -0.912559 Vertex 12947 -3.30546 19.1003 -0.995211 Vertex 12948 -3.33929 19.2571 -0.934048 Vertex 12949 -3.36177 19.3643 -0.835531 Vertex 12950 -3.32057 19.4088 -0.951933 Vertex 12951 -3.3222 19.486 -0.841183 Vertex 12952 -3.33514 19.5215 -0.729675 Vertex 12953 -3.31846 19.5998 -0.854607 Vertex 12954 -3.31513 19.6148 -0.747187 Vertex 12955 -3.30639 19.6483 -0.644302 Vertex 12956 -3.32532 19.6914 -0.714917 Vertex 12957 -3.31283 19.5607 -0.629906 Vertex 12958 -3.30022 19.6946 -0.556068 Vertex 12959 -3.26568 19.607 -0.537612 Vertex 12960 -3.23678 19.5101 -0.522179 Vertex 12961 -3.23884 19.5745 -0.456763 Vertex 12962 -3.30281 19.4536 -0.624447 Vertex 12963 -3.18714 19.398 -0.500671 Vertex 12964 -3.21171 19.3451 -0.617319 Vertex 12965 -3.35118 19.4149 -0.727423 Vertex 12966 -3.36158 19.3056 -0.794556 Vertex 12967 -3.38586 19.6916 -0.82829 Vertex 12968 -3.365 19.5522 -0.95925 Vertex 12969 -3.34975 19.2686 -1.0395 Vertex 12970 -3.29393 18.9283 -1.01921 Vertex 12971 -3.18467 18.1005 -0.316138 Vertex 12972 -3.23248 18.2586 -0.490885 Vertex 12973 -3.17388 18.2948 -0.363251 Vertex 12974 -3.15943 18.4783 -0.404612 Vertex 12975 -3.10444 18.3344 -0.224282 Vertex 12976 -3.11943 18.6046 -0.365908 Vertex 12977 -3.11099 18.6527 -0.249958 Vertex 12978 -3.12386 18.7347 -0.351304 Vertex 12979 -3.07684 17.9647 -0.203321 Vertex 12980 -3.1129 17.9114 -0.297628 Vertex 12981 -3.20798 17.9846 -0.403246 Vertex 12982 -3.25249 18.028 -0.584128 Vertex 12983 -3.20553 17.9351 -0.539049 Vertex 12984 -3.25745 18.1567 -0.638162 Vertex 12985 -3.24153 18.0707 -0.773126 Vertex 12986 -3.38611 19.747 -0.629279 Vertex 12987 -3.10901 19.2427 -0.649442 Vertex 12988 -3.18858 19.2586 -0.733783 Vertex 12989 -3.29287 19.0634 -0.887387 Vertex 12990 -3.18587 19.1468 -0.831105 Vertex 12991 -3.06513 19.0823 -0.808342 Vertex 12992 -3.17793 18.9963 -0.844328 Vertex 12993 -3.0626 18.9846 -0.749619 Vertex 12994 -3.34967 19.1845 -0.875529 Vertex 12995 -3.30987 19.2372 -0.793983 Vertex 12996 -3.37679 19.723 -0.472429 Vertex 12997 -3.34696 19.6339 -0.404086 Vertex 12998 -3.26682 19.4462 -0.406165 Vertex 12999 -3.18889 19.2741 -0.501649 Vertex 13000 -3.10454 19.1377 -0.639132 Vertex 13001 -3.09427 19.0092 -0.578735 Vertex 13002 -3.11053 18.8621 -0.425571 Vertex 13003 -3.03596 19.0541 -0.707883 Vertex 13004 -3.14183 18.8618 -0.292462 Vertex 13005 -3.37639 20.0927 -0.395008 Vertex 13006 -3.45357 20.1009 -0.589496 Vertex 13007 -3.3152 20.149 -0.766263 Vertex 13008 -3.41016 20.0204 -0.958995 Vertex 13009 -3.28821 19.938 -1.16031 Vertex 13010 -3.39341 19.75 -1.27005 Vertex 13011 -3.2843 19.5593 -1.37186 Vertex 13012 -3.35059 19.3007 -1.37588 Vertex 13013 -3.24576 19.0312 -1.37594 Vertex 13014 -3.28611 18.7902 -1.29027 Vertex 13015 -3.15754 18.5907 -1.23969 Vertex 13016 -3.19558 18.4358 -1.1184 Vertex 13017 -3.09358 18.2726 -1.05158 Vertex 13018 -3.17917 18.1525 -0.924559 Vertex 13019 -3.10262 17.9454 -0.823738 Vertex 13020 -3.18343 17.9079 -0.73662 Vertex 13021 -3.08096 17.8183 -0.59363 Vertex 13022 -3.14089 17.8935 -0.578097 Vertex 13023 -3.01196 17.8041 -0.645702 Vertex 13024 -2.96337 17.788 -0.485124 Vertex 13025 -2.87923 18.0791 -0.76313 Vertex 13026 -2.99143 18.1675 -0.9133 Vertex 13027 -2.95695 17.9997 -0.797053 Vertex 13028 -2.84895 18.2076 -0.817845 Vertex 13029 -2.77727 18.0459 -0.74972 Vertex 13030 -2.93349 18.3367 -0.94768 Vertex 13031 -2.76452 18.3104 -0.932092 Vertex 13032 -2.86438 18.4981 -1.00877 Vertex 13033 -3.0297 18.4568 -1.10827 Vertex 13034 -3.11117 18.8011 -1.27177 Vertex 13035 -2.97583 18.6493 -1.13441 Vertex 13036 -2.91509 18.8527 -1.17867 Vertex 13037 -2.79421 18.6483 -1.13889 Vertex 13038 -3.03332 19.0436 -1.25659 Vertex 13039 -2.86327 19.0804 -1.27769 Vertex 13040 -2.96541 19.2787 -1.26226 Vertex 13041 -3.16284 19.2892 -1.34462 Vertex 13042 -3.18419 19.7708 -1.26603 Vertex 13043 -3.06912 19.5161 -1.26438 Vertex 13044 -2.96913 19.5156 -1.27679 Vertex 13045 -3.09978 17.8703 -0.413889 Vertex 13046 -3.00465 17.8309 -0.248268 Vertex 13047 -2.98325 17.8114 -0.362609 Vertex 13048 -2.87378 17.6891 -0.3613 Vertex 13049 -2.8709 17.731 -0.444173 Vertex 13050 -3.15254 19.9505 -1.11799 Vertex 13051 -2.86261 17.8339 -0.631934 Vertex 13052 -2.80345 17.7099 -0.521223 Vertex 13053 -2.79667 17.6338 -0.422811 Vertex 13054 -3.37089 20.2033 -0.510103 Vertex 13055 -3.32819 20.1357 -0.348506 Vertex 13056 -2.89687 18.1917 1.73727 Vertex 13057 -2.92788 18.259 2.11849 Vertex 13058 -2.82311 18.0471 2.25115 Vertex 13059 -2.78346 17.9437 1.88996 Vertex 13060 -2.78219 17.919 1.59677 Vertex 13061 -2.67168 17.74 1.98118 Vertex 13062 -2.6862 17.697 1.70858 Vertex 13063 -2.75196 17.7478 1.46219 Vertex 13064 -2.5909 17.5044 1.78175 Vertex 13065 -2.6668 17.5195 1.55329 Vertex 13066 -2.77253 17.597 1.3188 Vertex 13067 -2.6206 17.2976 1.57299 Vertex 13068 -2.7325 17.3097 1.33508 Vertex 13069 -2.84872 17.3284 1.06314 Vertex 13070 -2.73758 17.0074 1.25954 Vertex 13071 -2.85474 16.97 0.988263 Vertex 13072 -2.96657 16.9944 0.697169 Vertex 13073 -2.85347 16.7043 0.917972 Vertex 13074 -2.94019 16.6733 0.640381 Vertex 13075 -2.96808 16.8009 0.345483 Vertex 13076 -2.84956 16.3638 0.594316 Vertex 13077 -2.85525 16.4235 0.292649 Vertex 13078 -2.8192 16.5971 0.000959499 Vertex 13079 -2.713 16.0695 0.242057 Vertex 13080 -2.66848 16.2102 -0.0563925 Vertex 13081 -2.59408 16.4504 -0.301753 Vertex 13082 -2.48745 15.8836 -0.03733 Vertex 13083 -2.42406 16.1446 -0.408236 Vertex 13084 -2.37524 16.5427 -0.868071 Vertex 13085 -2.31108 15.9953 -0.854753 Vertex 13086 -2.20801 16.4451 -1.32006 Vertex 13087 -2.35792 15.5326 -0.457691 Vertex 13088 -2.30495 15.4177 -1.0932 Vertex 13089 -2.12435 15.9913 -1.46203 Vertex 13090 -2.11438 16.8816 -1.53193 Vertex 13091 -1.94983 16.4291 -1.72958 Vertex 13092 -1.80777 16.8867 -1.86767 Vertex 13093 -1.83175 15.9372 -1.93836 Vertex 13094 -1.56221 16.4844 -2.11231 Vertex 13095 -1.79449 17.2963 -1.9345 Vertex 13096 -1.33693 16.9935 -2.27836 Vertex 13097 -2.68718 21.7055 -1.62878 Vertex 13098 -2.15486 21.9782 -2.07958 Vertex 13099 -1.94369 22.5249 -1.87846 Vertex 13100 -2.55342 22.2523 -1.37816 Vertex 13101 -2.92641 21.7932 -1.01488 Vertex 13102 -2.4642 22.7024 -0.855034 Vertex 13103 -2.86179 22.1897 -0.553658 Vertex 13104 -3.04199 21.6973 -0.439536 Vertex 13105 -2.74562 22.4391 0.067847 Vertex 13106 -2.97344 21.9428 0.040644 Vertex 13107 -3.07833 21.5224 -0.0486635 Vertex 13108 -2.80738 22.0927 0.611176 Vertex 13109 -2.98465 21.6586 0.405563 Vertex 13110 -3.04917 21.1984 0.334235 Vertex 13111 -2.82016 21.7097 1.00202 Vertex 13112 -2.93729 21.1973 0.856603 Vertex 13113 -2.92976 20.6721 0.856705 Vertex 13114 -2.76138 21.1915 1.38622 Vertex 13115 -2.8041 20.6387 1.27543 Vertex 13116 -2.83632 20.1815 1.25458 Vertex 13117 -2.69115 20.6594 1.65803 Vertex 13118 -2.78153 20.2174 1.52849 Vertex 13119 -1.46835 22.516 -2.29897 Vertex 13120 -1.29522 22.8827 -1.89195 Vertex 13121 -1.90122 22.962 -1.35299 Vertex 13122 -0.644567 22.795 -2.35757 Vertex 13123 0 23.1279 -1.85122 Vertex 13124 -0.868941 23.2924 -1.16829 Vertex 13125 -1.75351 23.2267 -0.553016 Vertex 13126 -2.36108 22.9299 -0.0984477 Vertex 13127 -0.719608 23.4896 -0.104209 Vertex 13128 -1.51627 23.3284 0.43791 Vertex 13129 -2.08348 22.9922 0.780026 Vertex 13130 -2.49033 22.5407 0.819795 Vertex 13131 -1.2212 23.2002 1.3438 Vertex 13132 -1.69877 22.8748 1.59017 Vertex 13133 -2.15906 22.5494 1.55278 Vertex 13134 -2.54555 22.1617 1.28081 Vertex 13135 -1.32712 22.6783 2.17585 Vertex 13136 -1.8068 22.4321 2.1207 Vertex 13137 -2.23112 22.129 1.92705 Vertex 13138 -2.56875 21.715 1.63538 Vertex 13139 -1.55095 22.1895 2.56933 Vertex 13140 -1.91913 21.9645 2.44301 Vertex 13141 -2.29818 21.6471 2.1984 Vertex 13142 -2.55564 21.1911 1.90285 Vertex 13143 -1.69819 21.6944 2.85752 Vertex 13144 -2.05499 21.461 2.67383 Vertex 13145 -2.3621 21.1691 2.38344 Vertex 13146 -2.56352 20.777 2.06475 Vertex 13147 -1.87592 21.1857 3.04028 Vertex 13148 -2.17837 21.0514 2.79948 Vertex 13149 -1.73925 20.9281 3.2686 Vertex 13150 -1.60053 21.3749 3.13107 Vertex 13151 -1.50073 21.0317 3.33181 Vertex 13152 -1.42871 21.8881 2.88529 Vertex 13153 -1.35032 21.5536 3.12097 Vertex 13154 -1.26187 22.1214 2.76451 Vertex 13155 -1.34506 20.7274 3.57499 Vertex 13156 -1.26796 21.1793 3.35982 Vertex 13157 -1.13311 20.7965 3.63448 Vertex 13158 -1.06514 21.7381 3.07463 Vertex 13159 -0.975957 21.318 3.35994 Vertex 13160 -0.953818 22.3906 2.62477 Vertex 13161 -0.735424 21.9464 3.00825 Vertex 13162 -0.977992 20.5018 3.86529 Vertex 13163 -0.896035 20.8827 3.66905 Vertex 13164 -0.769108 20.5162 3.8996 Vertex 13165 -0.664893 21.4761 3.3324 Vertex 13166 -0.604652 21.0306 3.63944 Vertex 13167 -0.464559 21.8285 3.14763 Vertex 13168 -0.613623 20.2605 3.9899 Vertex 13169 -0.539734 20.6013 3.8624 Vertex 13170 -0.419985 20.2906 3.96427 Vertex 13171 -0.36898 21.3636 3.46829 Vertex 13172 -0.348268 20.8542 3.74269 Vertex 13173 -0.267547 22.2663 2.86408 Vertex 13174 -0.165866 21.7598 3.22668 Vertex 13175 -0.264117 20.074 4.00327 Vertex 13176 -0.291426 20.4599 3.92512 Vertex 13177 -0.18348 20.2625 4.01004 Vertex 13178 -0.220345 20.8318 3.77493 Vertex 13179 -0.0712475 20.1084 4.02616 Vertex 13180 -0.104003 20.5014 3.93844 Vertex 13181 0 20.2772 4.01542 Vertex 13182 -0.119159 21.2592 3.52826 Vertex 13183 0 20.8536 3.75306 Vertex 13184 0 21.6875 3.25081 Vertex 13185 0 22.5992 2.62624 Vertex 13186 -0.545489 22.6362 2.51232 Vertex 13187 -0.25368 22.9193 2.25024 Vertex 13188 0 23.2453 1.7318 Vertex 13189 -0.535348 23.2513 1.6263 Vertex 13190 -0.240251 23.4996 1.03711 Vertex 13191 0 23.5578 0.166549 Vertex 13192 -0.313861 23.5554 0.123225 Vertex 13193 -0.88038 22.9352 2.03166 Vertex 13194 -0.765361 23.4736 0.89286 Vertex 13195 -2.17292 15.65 2.60117 Vertex 13196 -1.97125 15.6252 2.84313 Vertex 13197 -1.7677 15.3069 2.8449 Vertex 13198 -1.99556 15.2669 2.5356 Vertex 13199 -1.51141 15.391 3.20654 Vertex 13200 -1.35555 15.0945 3.1912 Vertex 13201 -1.59682 15.0077 2.80972 Vertex 13202 -2.21763 15.2544 2.20347 Vertex 13203 -1.80064 14.9025 2.5155 Vertex 13204 -2.00903 14.8788 2.21333 Vertex 13205 -1.44845 14.6673 2.77175 Vertex 13206 -1.62913 14.595 2.50508 Vertex 13207 -2.07827 14.9123 1.86719 Vertex 13208 -1.77378 14.5991 2.2764 Vertex 13209 -1.80241 14.6413 1.96039 Vertex 13210 -1.5455 14.4538 2.3881 Vertex 13211 -1.75025 14.6818 1.58615 Vertex 13212 -1.51903 14.4377 2.07738 Vertex 13213 -1.47228 14.4732 1.71348 Vertex 13214 -1.24504 14.3193 2.50183 Vertex 13215 -1.24954 14.3088 2.1753 Vertex 13216 -1.43619 14.5178 1.41023 Vertex 13217 -1.25648 14.3414 1.89355 Vertex 13218 -1.16401 14.376 1.64364 Vertex 13219 -1.06479 14.2593 2.12409 Vertex 13220 -0.916418 14.4118 1.45089 Vertex 13221 -0.873136 14.267 1.90717 Vertex 13222 -0.576018 14.2966 1.72101 Vertex 13223 -0.793378 14.1457 2.35863 Vertex 13224 -0.577435 14.1523 2.13076 Vertex 13225 -0.277758 14.3407 1.55677 Vertex 13226 -0.303654 14.1825 1.95781 Vertex 13227 -0.0178235 14.2418 1.77013 Vertex 13228 -0.283299 14.0492 2.3442 Vertex 13229 -0.0177193 14.0974 2.16381 Vertex 13230 -2.34805 16.1459 2.59609 Vertex 13231 -2.22982 15.9686 2.72973 Vertex 13232 -2.30964 15.8377 2.41181 Vertex 13233 -2.39086 16.122 2.28713 Vertex 13234 -2.33616 15.7889 2.2478 Vertex 13235 -2.43754 15.9584 2.03461 Vertex 13236 -2.35509 15.6363 2.12471 Vertex 13237 -2.45693 15.6682 1.84602 Vertex 13238 -2.36579 15.3345 1.89665 Vertex 13239 -2.41019 15.4354 1.64961 Vertex 13240 -2.288 15.1964 1.76974 Vertex 13241 -2.2102 15.1834 1.46771 Vertex 13242 -2.00362 14.9179 1.52952 Vertex 13243 -1.9386 14.9334 1.23301 Vertex 13244 -1.69868 14.7197 1.29245 Vertex 13245 -1.69079 14.7432 1.03047 Vertex 13246 -1.34294 14.5538 1.18731 Vertex 13247 -1.03741 14.4102 1.07121 Vertex 13248 -0.588786 14.4544 1.33663 Vertex 13249 -0.288782 14.328 1.20424 Vertex 13250 -0.019911 14.4068 1.38206 Vertex 13251 -2.71987 17.9073 2.61577 Vertex 13252 -2.6635 17.8898 2.91371 Vertex 13253 -2.6068 17.6893 2.81173 Vertex 13254 -2.62242 17.7001 2.54428 Vertex 13255 -2.52684 17.5748 3.03459 Vertex 13256 -2.52749 17.394 2.88014 Vertex 13257 -2.55786 17.4891 2.66425 Vertex 13258 -2.44674 17.256 3.03701 Vertex 13259 -2.48619 17.098 2.85292 Vertex 13260 -2.52344 17.2319 2.68483 Vertex 13261 -2.40225 16.9051 2.96363 Vertex 13262 -2.43334 16.6809 2.75253 Vertex 13263 -2.4871 16.9193 2.64973 Vertex 13264 -2.33406 16.4071 2.82313 Vertex 13265 -2.41794 16.4199 2.48821 Vertex 13266 -2.4249 16.6271 2.34102 Vertex 13267 -2.41078 16.3547 2.17798 Vertex 13268 -2.58754 15.98 1.54726 Vertex 13269 -2.52718 15.9838 1.79167 Vertex 13270 -2.5113 15.6937 1.58482 Vertex 13271 -2.52513 15.7098 1.29724 Vertex 13272 -2.38874 15.4502 1.36286 Vertex 13273 -2.33529 15.4052 1.04005 Vertex 13274 -2.139 15.1542 1.14037 Vertex 13275 -2.1152 15.1544 0.849041 Vertex 13276 -1.9276 14.9533 0.944543 Vertex 13277 -1.95789 14.9244 0.655079 Vertex 13278 -1.75208 14.5924 0.723403 Vertex 13279 -2.034 14.7347 0.337778 Vertex 13280 -2.15582 15.0855 0.314548 Vertex 13281 -2.12716 15.1456 0.593457 Vertex 13282 -2.26606 15.3374 0.52941 Vertex 13283 -2.28692 15.3544 0.760692 Vertex 13284 -2.46711 15.5871 0.726599 Vertex 13285 -2.51365 15.6693 0.996099 Vertex 13286 -2.632 15.9369 1.0223 Vertex 13287 -2.6142 15.9831 1.29429 Vertex 13288 -2.65418 16.215 1.33537 Vertex 13289 -2.60577 16.2323 1.56529 Vertex 13290 -2.53179 16.258 1.79875 Vertex 13291 -2.57659 16.4792 1.64187 Vertex 13292 -2.49769 16.5225 1.85876 Vertex 13293 -2.43319 16.5084 2.04291 Vertex 13294 -2.46462 16.7548 1.93004 Vertex 13295 -2.41883 16.7306 2.12516 Vertex 13296 -2.43184 16.9309 2.22227 Vertex 13297 -2.45429 16.8644 2.44614 Vertex 13298 -2.49012 17.0578 2.51955 Vertex 13299 -2.45033 16.2418 2.01684 Vertex 13300 -2.81521 18.1098 2.61646 Vertex 13301 -2.70286 17.8394 2.29004 Vertex 13302 -2.59999 17.6213 2.25186 Vertex 13303 -2.57553 17.5355 1.99291 Vertex 13304 -2.51713 17.3611 1.9688 Vertex 13305 -2.54485 17.3282 1.78533 Vertex 13306 -2.54849 17.1169 1.71925 Vertex 13307 -2.63166 17.0543 1.50188 Vertex 13308 -2.67522 16.8134 1.38897 Vertex 13309 -2.76943 16.7666 1.16012 Vertex 13310 -2.80527 16.5824 1.01917 Vertex 13311 -2.54129 17.4709 2.42282 Vertex 13312 -2.51864 17.3982 2.17516 Vertex 13313 -2.47736 17.2227 2.1116 Vertex 13314 -2.49488 17.1722 1.92209 Vertex 13315 -2.50463 16.9446 1.83267 Vertex 13316 -2.57888 16.8772 1.61872 Vertex 13317 -2.62565 16.6355 1.50903 Vertex 13318 -2.72192 16.5831 1.27125 Vertex 13319 -2.73318 16.3712 1.18912 Vertex 13320 -2.79914 16.364 0.911938 Vertex 13321 -2.72736 16.0969 0.854136 Vertex 13322 -2.73347 16.0462 0.552067 Vertex 13323 -2.57481 15.7437 0.503628 Vertex 13324 -2.53613 15.7507 0.225572 Vertex 13325 -2.36213 15.5366 0.270787 Vertex 13326 -2.34166 15.5909 0.008906 Vertex 13327 -2.25772 15.2548 0.0257278 Vertex 13328 -2.3379 15.0098 -0.346048 Vertex 13329 -2.19764 14.8488 0.013308 Vertex 13330 -2.24661 15.3373 0.310575 Vertex 13331 -2.40757 15.5083 0.486601 Vertex 13332 -2.62146 15.837 0.767326 Vertex 13333 -2.69795 16.1727 1.10916 Vertex 13334 -2.65887 16.4112 1.41276 Vertex 13335 -2.53594 16.7153 1.73368 Vertex 13336 -2.45204 16.9681 2.02477 Vertex 13337 -2.46386 17.1415 2.15859 Vertex 13338 -2.4649 17.111 2.33579 Vertex 13339 -2.51152 17.2925 2.48898 Vertex 13340 -2.48622 17.2801 2.29212 Vertex 13341 -0.130615 19.633 3.95872 Vertex 13342 0 19.4528 4.07951 Vertex 13343 -0.106369 19.2738 4.2155 Vertex 13344 -0.202298 19.4144 4.03379 Vertex 13345 0 19.1351 4.34776 Vertex 13346 -0.118347 18.9915 4.43412 Vertex 13347 -0.21382 19.1035 4.29341 Vertex 13348 0 18.8701 4.53969 Vertex 13349 -0.138425 18.7564 4.60399 Vertex 13350 -0.243778 18.8463 4.47397 Vertex 13351 -0.302558 19.5397 3.89489 Vertex 13352 -0.285495 19.2215 4.11743 Vertex 13353 -0.342897 19.3324 3.91708 Vertex 13354 -0.319928 18.9362 4.30925 Vertex 13355 -0.381511 19.0316 4.11601 Vertex 13356 -0.347286 18.6831 4.45134 Vertex 13357 -0.408477 18.7387 4.25699 Vertex 13358 -0.42136 19.4004 3.71681 Vertex 13359 -0.441777 19.1147 3.89214 Vertex 13360 -0.512336 19.1835 3.6553 Vertex 13361 -0.470411 18.8162 4.03647 Vertex 13362 -0.549885 18.8944 3.82096 Vertex 13363 -0.487149 18.541 4.13999 Vertex 13364 -0.532291 18.5947 3.94677 Vertex 13365 -0.571521 19.2397 3.49556 Vertex 13366 -0.652124 18.9768 3.62359 Vertex 13367 -0.747407 19.0331 3.49669 Vertex 13368 -0.630455 19.1589 3.4471 Vertex 13369 -0.684065 18.6974 3.74905 Vertex 13370 -0.843027 18.7836 3.6099 Vertex 13371 -0.593484 18.5698 3.86474 Vertex 13372 -0.71867 18.4354 3.81379 Vertex 13373 -0.856568 18.5228 3.71533 Vertex 13374 0 19.9153 3.99358 Vertex 13375 -0.0983095 19.8864 3.98774 Vertex 13376 -0.303955 19.8483 3.9497 Vertex 13377 -0.493944 19.7927 3.92141 Vertex 13378 -0.371069 19.76 3.92121 Vertex 13379 -0.43601 19.6145 3.81791 Vertex 13380 -0.524256 19.4119 3.55892 Vertex 13381 -0.572944 19.6119 3.70254 Vertex 13382 -0.619016 19.2255 3.43355 Vertex 13383 -0.637193 19.2705 3.44236 Vertex 13384 -0.628386 19.3251 3.45276 Vertex 13385 -0.625474 19.4194 3.49701 Vertex 13386 -0.652985 19.2131 3.42981 Vertex 13387 -0.759312 19.1857 3.46643 Vertex 13388 -0.692008 19.2612 3.46749 Vertex 13389 -0.700072 19.3345 3.46515 Vertex 13390 -0.65291 19.3056 3.44871 Vertex 13391 -1.03647 18.8713 3.54634 Vertex 13392 -0.982042 19.0045 3.5013 Vertex 13393 -0.154157 18.5906 4.73542 Vertex 13394 0 18.5189 4.81005 Vertex 13395 -0.16657 18.4271 4.84758 Vertex 13396 -0.302702 18.4908 4.74114 Vertex 13397 -0.383788 18.5208 4.56279 Vertex 13398 -0.416252 18.3676 4.65784 Vertex 13399 -0.473709 18.4006 4.46946 Vertex 13400 -0.515007 18.4222 4.27492 Vertex 13401 -0.530477 18.3091 4.40568 Vertex 13402 -0.578084 18.3465 4.24831 Vertex 13403 -0.627328 18.3681 4.10532 Vertex 13404 -0.656354 18.2612 4.2559 Vertex 13405 -0.715457 18.2883 4.12922 Vertex 13406 -0.715009 18.316 4.02633 Vertex 13407 -0.804435 18.1664 4.12278 Vertex 13408 -0.800952 18.1905 4.01767 Vertex 13409 -0.706098 18.2978 3.84105 Vertex 13410 -0.8451 18.2666 3.77756 Vertex 13411 -0.810299 18.0793 3.91875 Vertex 13412 -0.749665 18.2333 3.94112 Vertex 13413 -0.852782 18.0272 3.99273 Vertex 13414 -0.916301 18.0168 3.79495 Vertex 13415 -0.841272 18.0252 3.84683 Vertex 13416 -0.924204 17.9353 3.84813 Vertex 13417 -0.847953 17.8198 3.96971 Vertex 13418 -0.810524 17.7882 4.01954 Vertex 13419 -0.826296 17.7363 4.02159 Vertex 13420 -0.774593 17.8207 4.10915 Vertex 13421 -0.801284 17.8116 4.04827 Vertex 13422 -0.834396 17.9083 4.0584 Vertex 13423 -0.800828 17.9158 4.14713 Vertex 13424 -0.79155 18.0358 4.1956 Vertex 13425 -0.705896 18.021 4.31027 Vertex 13426 -0.742208 17.921 4.24348 Vertex 13427 -0.632011 18.1231 4.35484 Vertex 13428 -0.522166 18.0742 4.45862 Vertex 13429 -0.581583 17.9908 4.4132 Vertex 13430 -0.510353 18.1614 4.47075 Vertex 13431 -0.462395 18.085 4.54889 Vertex 13432 -0.410362 18.1812 4.67709 Vertex 13433 -0.296274 18.0944 4.80199 Vertex 13434 -0.382829 18.0096 4.65018 Vertex 13435 -0.163354 18.2128 4.87284 Vertex 13436 0 18.1027 4.88241 Vertex 13437 -0.144251 17.9846 4.82203 Vertex 13438 0 17.8613 4.72668 Vertex 13439 -0.0943477 17.7449 4.58391 Vertex 13440 -0.210896 17.8663 4.67153 Vertex 13441 -0.264228 17.8706 4.51387 Vertex 13442 -0.23888 17.8356 4.3913 Vertex 13443 -0.270094 17.9011 4.33923 Vertex 13444 -0.301146 17.928 4.43803 Vertex 13445 0 17.6279 4.48641 Vertex 13446 -0.091416 17.5324 4.40295 Vertex 13447 -0.162869 17.6686 4.45227 Vertex 13448 -0.254071 17.8266 4.29177 Vertex 13449 -0.232631 17.773 4.36289 Vertex 13450 -0.339527 17.7895 4.19941 Vertex 13451 -0.243183 17.6933 4.31734 Vertex 13452 -0.321503 17.6164 4.27653 Vertex 13453 -0.442805 17.7487 4.17368 Vertex 13454 -0.552935 17.8149 4.10912 Vertex 13455 -0.614159 17.7058 4.13188 Vertex 13456 -0.69849 17.7851 4.09385 Vertex 13457 0 17.4066 4.36461 Vertex 13458 -0.0887898 17.3079 4.34614 Vertex 13459 -0.201062 17.4469 4.34721 Vertex 13460 0 17.1894 4.3318 Vertex 13461 -0.142173 17.197 4.32691 Vertex 13462 -0.334145 17.3465 4.31041 Vertex 13463 -0.493375 17.5371 4.22959 Vertex 13464 -0.277237 17.1207 4.28528 Vertex 13465 -0.515484 17.2571 4.25642 Vertex 13466 -0.253879 17.0429 4.20436 Vertex 13467 0 16.9818 4.08607 Vertex 13468 -0.192709 16.9692 3.92377 Vertex 13469 -0.435878 17.0429 4.00721 Vertex 13470 -0.176234 16.0679 3.8514 Vertex 13471 0 16.0089 3.99933 Vertex 13472 -0.210659 15.9433 4.09872 Vertex 13473 -0.384863 16.003 3.91658 Vertex 13474 -0.222939 15.8461 4.16344 Vertex 13475 0 15.739 4.19286 Vertex 13476 -0.228722 15.5868 4.13207 Vertex 13477 -0.451216 15.7079 4.09795 Vertex 13478 -0.694285 17.4312 4.17975 Vertex 13479 -0.804762 17.6017 4.08885 Vertex 13480 -0.758545 17.7265 4.0724 Vertex 13481 -0.730175 17.1985 4.16505 Vertex 13482 -0.867257 17.3285 4.11305 Vertex 13483 -0.701883 17.1191 4.08502 Vertex 13484 -0.554759 17.0271 3.79132 Vertex 13485 -0.822168 17.0972 3.83698 Vertex 13486 -0.524746 16.0604 3.7292 Vertex 13487 -0.623941 15.9205 3.96971 Vertex 13488 -0.775964 15.9736 3.75332 Vertex 13489 -0.652421 15.8126 4.02429 Vertex 13490 -0.651782 15.5207 3.97927 Vertex 13491 -0.860755 15.6347 3.8953 Vertex 13492 -0.912393 17.6359 3.99691 Vertex 13493 -0.901811 17.4727 4.07808 Vertex 13494 -0.976609 17.347 4.03099 Vertex 13495 -1.10424 17.1745 3.80593 Vertex 13496 -0.981307 17.0894 3.58714 Vertex 13497 -1.25735 17.1601 3.53035 Vertex 13498 -0.943635 16.0107 3.50729 Vertex 13499 -1.0731 15.8686 3.72666 Vertex 13500 -1.24008 15.9136 3.45687 Vertex 13501 -1.09353 15.7541 3.76832 Vertex 13502 -1.0175 15.4375 3.71739 Vertex 13503 -1.28378 15.569 3.54535 Vertex 13504 -1.27305 17.7424 3.64581 Vertex 13505 -1.1428 17.7047 3.77063 Vertex 13506 -1.36803 17.5433 3.62374 Vertex 13507 -1.29046 17.388 3.71439 Vertex 13508 -1.49312 17.309 3.49336 Vertex 13509 -1.58132 17.4089 3.42758 Vertex 13510 -1.47711 17.2223 3.42855 Vertex 13511 -1.40305 17.1408 3.29775 Vertex 13512 -1.57962 17.1812 3.22822 Vertex 13513 -1.37919 15.9828 3.23423 Vertex 13514 -1.50798 15.8208 3.3575 Vertex 13515 -1.60864 15.9338 3.14895 Vertex 13516 -1.53705 15.7082 3.36507 Vertex 13517 -1.74043 15.6259 3.09911 Vertex 13518 -1.06831 18.6037 3.62256 Vertex 13519 -1.34467 18.7038 3.58012 Vertex 13520 -1.02012 18.3249 3.72861 Vertex 13521 -1.27874 18.3874 3.65817 Vertex 13522 -1.65817 18.7889 3.5614 Vertex 13523 -1.60328 18.4743 3.59761 Vertex 13524 -1.8979 18.6083 3.55479 Vertex 13525 -1.46456 18.1311 3.6637 Vertex 13526 -1.80787 18.2206 3.60048 Vertex 13527 -2.0976 18.378 3.51506 Vertex 13528 -2.19125 18.6236 3.43063 Vertex 13529 -2.00763 18.7551 3.52266 Vertex 13530 -2.24474 18.1136 3.46334 Vertex 13531 -1.95445 17.9445 3.55396 Vertex 13532 -0.94363 18.0891 3.76785 Vertex 13533 -1.15644 18.0948 3.72261 Vertex 13534 -1.31519 17.834 3.63956 Vertex 13535 -1.6288 17.8293 3.57865 Vertex 13536 -1.821 17.5232 3.43106 Vertex 13537 -2.07435 17.6506 3.43829 Vertex 13538 -2.29983 17.8484 3.407 Vertex 13539 -2.1603 17.4142 3.28643 Vertex 13540 -2.33581 17.6122 3.27894 Vertex 13541 -1.58804 17.141 3.13029 Vertex 13542 -1.7469 17.083 3.13312 Vertex 13543 -1.757 17.1854 3.21503 Vertex 13544 -1.70021 16.9149 3.03396 Vertex 13545 -1.88081 16.6882 2.99362 Vertex 13546 -1.96078 16.9183 3.09451 Vertex 13547 -1.78144 16.4314 2.9353 Vertex 13548 -1.81559 16.1825 2.96228 Vertex 13549 -1.96781 16.4165 2.97399 Vertex 13550 -1.66899 16.0797 3.01872 Vertex 13551 -1.79607 15.9621 3.04513 Vertex 13552 -1.70074 17.3685 3.36296 Vertex 13553 -1.75988 17.263 3.28006 Vertex 13554 -2.10076 17.125 3.16189 Vertex 13555 -2.06212 16.9397 3.10815 Vertex 13556 -2.18894 16.9365 3.07455 Vertex 13557 -2.26585 16.6796 2.9804 Vertex 13558 -2.0905 16.4112 2.96065 Vertex 13559 -2.15735 16.167 2.86118 Vertex 13560 -2.23482 17.2573 3.17096 Vertex 13561 -1.99344 17.2867 3.27656 Vertex 13562 0 15.4476 4.06176 Vertex 13563 -0.195168 15.3327 3.95394 Vertex 13564 -0.420502 15.4345 3.99513 Vertex 13565 -0.587452 15.3386 3.87639 Vertex 13566 -0.797981 15.3863 3.83824 Vertex 13567 -0.960063 15.3374 3.69344 Vertex 13568 -0.190827 15.2228 3.93042 Vertex 13569 0 15.1189 3.98341 Vertex 13570 -0.173767 14.9915 4.01414 Vertex 13571 -0.367988 15.1269 3.93496 Vertex 13572 0 14.8484 4.05258 Vertex 13573 -0.160841 14.6713 4.04065 Vertex 13574 -0.332859 14.8129 4.01122 Vertex 13575 0 14.5109 3.99362 Vertex 13576 -0.146877 14.3188 3.89148 Vertex 13577 -0.271343 14.4674 3.98485 Vertex 13578 -0.577815 15.235 3.86197 Vertex 13579 -0.524462 14.9564 3.92573 Vertex 13580 -0.745661 15.1003 3.8193 Vertex 13581 -0.438985 14.5956 3.97038 Vertex 13582 -0.632331 14.7295 3.88868 Vertex 13583 -0.283603 14.2828 3.87001 Vertex 13584 -0.442512 14.3786 3.88173 Vertex 13585 -0.959987 15.2529 3.68493 Vertex 13586 -0.857967 14.8783 3.76206 Vertex 13587 -1.09227 15.0416 3.55511 Vertex 13588 -0.645391 14.4745 3.82673 Vertex 13589 -0.859555 14.5849 3.69509 Vertex 13590 -0.352026 14.2167 3.79711 Vertex 13591 -0.533281 14.2604 3.75719 Vertex 13592 -1.06701 14.6852 3.45309 Vertex 13593 -1.2705 14.7219 3.11023 Vertex 13594 -0.714444 14.3139 3.63402 Vertex 13595 -0.900736 14.3746 3.41603 Vertex 13596 -0.351798 14.1426 3.70485 Vertex 13597 -0.515339 14.1537 3.59891 Vertex 13598 -1.09392 14.3985 3.13374 Vertex 13599 -1.21934 14.366 2.82275 Vertex 13600 -0.687109 14.1894 3.44299 Vertex 13601 -0.836363 14.1978 3.21605 Vertex 13602 -0.493817 14.1069 3.50432 Vertex 13603 -0.914842 14.1711 2.93774 Vertex 13604 -0.90155 14.152 2.64325 Vertex 13605 -0.597903 14.1014 3.31343 Vertex 13606 -0.629243 14.0603 3.0798 Vertex 13607 -0.412256 14.0579 3.44534 Vertex 13608 -0.596257 14.0171 2.82568 Vertex 13609 -0.487135 14.0188 2.56846 Vertex 13610 -0.411945 13.995 3.22919 Vertex 13611 -0.354171 13.9368 3.00412 Vertex 13612 -0.259474 14.0615 3.58707 Vertex 13613 -0.239175 13.9715 3.38356 Vertex 13614 -0.226509 13.9374 2.77399 Vertex 13615 -0.0194183 13.9796 2.5529 Vertex 13616 -0.15213 13.9004 3.18972 Vertex 13617 -0.00964525 13.8924 2.98482 Vertex 13618 -0.132404 14.035 3.54904 Vertex 13619 0 13.9324 3.36233 Vertex 13620 -1.60881 19.0042 3.52109 Vertex 13621 -1.34294 18.987 3.5535 Vertex 13622 -1.67052 18.8892 3.54918 Vertex 13623 -1.89527 18.9339 3.48331 Vertex 13624 -2.04002 19.0519 3.34367 Vertex 13625 -2.00907 18.8616 3.48782 Vertex 13626 -2.18736 18.8697 3.35485 Vertex 13627 -2.22057 19.0611 3.20397 Vertex 13628 -2.23994 19.2211 2.9949 Vertex 13629 -2.37793 19.1033 2.91619 Vertex 13630 -2.31875 19.285 2.77487 Vertex 13631 -2.29852 19.4173 2.71508 Vertex 13632 -2.28621 19.3629 2.77113 Vertex 13633 -2.39031 19.3191 2.60766 Vertex 13634 -2.34912 19.3862 2.62155 Vertex 13635 -2.0054 19.6558 3.0447 Vertex 13636 -2.13205 19.5949 2.89961 Vertex 13637 -2.01072 19.7283 2.99971 Vertex 13638 -1.86224 19.7859 3.1485 Vertex 13639 -1.84863 19.7009 3.17223 Vertex 13640 -1.68805 19.8075 3.28402 Vertex 13641 -1.5172 19.7909 3.38184 Vertex 13642 -1.34817 19.7946 3.44955 Vertex 13643 -1.50062 19.867 3.37385 Vertex 13644 -1.32816 19.8531 3.43239 Vertex 13645 -1.18897 19.7509 3.47996 Vertex 13646 -1.05816 19.6371 3.49276 Vertex 13647 -1.03705 19.6798 3.47807 Vertex 13648 -0.9135 19.5574 3.48038 Vertex 13649 -0.777172 19.4521 3.46267 Vertex 13650 -0.806971 19.4275 3.48148 Vertex 13651 -0.718072 19.7428 3.82908 Vertex 13652 -0.716218 19.584 3.6105 Vertex 13653 -0.873832 19.7177 3.73676 Vertex 13654 -0.752216 19.4802 3.47604 Vertex 13655 -0.875558 19.6193 3.55587 Vertex 13656 -1.04053 19.8516 3.80833 Vertex 13657 -1.02276 19.7416 3.65308 Vertex 13658 -1.19666 19.8874 3.70825 Vertex 13659 -1.02281 19.7062 3.50065 Vertex 13660 -1.17276 19.814 3.55381 Vertex 13661 -1.4108 20.0453 3.7021 Vertex 13662 -1.3529 19.9431 3.57904 Vertex 13663 -1.59763 20.0868 3.54677 Vertex 13664 -1.32377 19.8976 3.44891 Vertex 13665 -1.51962 19.9857 3.42607 Vertex 13666 -1.88784 20.2517 3.43712 Vertex 13667 -1.80297 20.0662 3.37269 Vertex 13668 -2.0923 20.1888 3.22653 Vertex 13669 -1.69614 19.9469 3.26164 Vertex 13670 -1.95996 19.9563 3.17501 Vertex 13671 -2.32025 20.3082 2.90756 Vertex 13672 -2.20545 20.0013 3.02629 Vertex 13673 -2.40541 20.0552 2.72484 Vertex 13674 -2.04266 19.8036 2.98863 Vertex 13675 -2.24387 19.7768 2.84716 Vertex 13676 -2.5934 20.0485 2.34495 Vertex 13677 -2.45526 19.7481 2.61937 Vertex 13678 -2.63923 19.7029 2.28772 Vertex 13679 -2.28348 19.5728 2.70309 Vertex 13680 -2.4483 19.5158 2.55036 Vertex 13681 -2.76979 19.6809 1.95274 Vertex 13682 -2.58977 19.4767 2.35398 Vertex 13683 -2.73134 19.4535 2.05871 Vertex 13684 -2.40465 19.4163 2.55425 Vertex 13685 -2.49977 19.3599 2.46569 Vertex 13686 -2.85314 19.4509 1.75725 Vertex 13687 -2.78134 19.3099 1.99144 Vertex 13688 -2.54784 19.1195 2.57609 Vertex 13689 -2.68115 19.1819 2.29711 Vertex 13690 -2.4023 19.3659 2.56544 Vertex 13691 -2.90661 18.9685 1.98373 Vertex 13692 -2.92757 19.1747 1.70394 Vertex 13693 -2.45194 18.8431 3.07826 Vertex 13694 -2.69249 18.8195 2.66501 Vertex 13695 -2.508 18.0068 3.24123 Vertex 13696 -2.49947 18.2522 3.24294 Vertex 13697 -2.51803 17.7883 3.15915 Vertex 13698 -2.69899 18.0924 2.95441 Vertex 13699 -2.48345 18.5477 3.18144 Vertex 13700 -2.72123 18.3051 2.89926 Vertex 13701 -2.72859 18.5493 2.7953 Vertex 13702 -2.87712 18.3076 2.51646 Vertex 13703 -2.90967 18.5111 2.36268 Vertex 13704 -2.90342 18.7497 2.21348 Vertex 13705 -2.99371 18.4735 1.96426 Vertex 13706 -3.02037 18.6999 1.83626 Vertex 13707 -3.01996 18.8931 1.66311 Vertex 13708 -2.99147 18.4788 1.64472 Vertex 13709 -3.03811 18.7395 1.57684 Vertex 13710 -2.35312 20.4973 2.89916 Vertex 13711 -2.49584 20.3864 2.56212 Vertex 13712 -2.72134 20.0193 1.99144 Vertex 13713 -2.62893 20.3698 2.23701 Vertex 13714 -2.83882 19.7125 1.64875 Vertex 13715 -2.79824 20.0093 1.67871 Vertex 13716 -2.90843 19.4279 1.51268 Vertex 13717 -2.88346 19.7254 1.36625 Vertex 13718 -2.99259 19.096 1.4332 Vertex 13719 -2.94821 19.3836 1.25124 Vertex 13720 -3.02263 18.9646 1.41539 Vertex 13721 -3.00517 18.8798 1.33654 Vertex 13722 -2.99473 19.0043 1.10845 Vertex 13723 -2.96203 18.5445 1.3796 Vertex 13724 -2.96427 18.6689 1.17281 Vertex 13725 -2.93761 17.6385 0.0352012 Vertex 13726 -3.00744 17.7293 0.134765 Vertex 13727 -3.01198 17.5177 0.183616 Vertex 13728 -2.98542 17.4025 0.138783 Vertex 13729 -2.89133 17.6514 -0.114406 Vertex 13730 -2.87397 17.2705 -0.0906247 Vertex 13731 -2.56133 17.8129 -0.950709 Vertex 13732 -2.51744 17.4583 -0.938367 Vertex 13733 -2.32675 17.332 -1.30526 Vertex 13734 -2.37669 17.7073 -1.29632 Vertex 13735 -2.18492 17.5997 -1.6265 Vertex 13736 -2.86108 18.1794 1.45674 Vertex 13737 -2.90071 18.3431 1.31382 Vertex 13738 -2.82679 18.0391 1.37128 Vertex 13739 -2.87349 18.2682 1.29226 Vertex 13740 -2.89089 18.1308 1.16116 Vertex 13741 -2.83901 17.8657 1.21265 Vertex 13742 -2.87072 17.7322 1.08728 Vertex 13743 -2.91272 17.9957 1.03376 Vertex 13744 -2.94924 17.7649 0.836295 Vertex 13745 -2.94621 17.3766 0.753702 Vertex 13746 -3.00728 17.4605 0.461922 Vertex 13747 -3.01511 17.1618 0.390089 Vertex 13748 -3.01821 17.3923 0.220439 Vertex 13749 -2.92945 17.0308 0.0957072 Vertex 13750 -2.75965 16.86 -0.224952 Vertex 13751 -2.71943 17.1647 -0.374785 Vertex 13752 -2.54645 16.7849 -0.538501 Vertex 13753 -2.53238 17.1292 -0.794769 Vertex 13754 -2.34404 16.9471 -1.17927 Vertex 13755 -2.09555 17.2782 -1.62483 Vertex 13756 -2.84655 21.3137 -1.48834 Vertex 13757 -2.96412 21.4149 -1.21746 Vertex 13758 -3.04444 21.3821 -0.83862 Vertex 13759 -3.04603 21.1331 -1.03214 Vertex 13760 -3.07405 21.0703 -0.655406 Vertex 13761 -3.09471 21.2821 -0.342181 Vertex 13762 -3.09197 21.1425 -0.096018 Vertex 13763 -3.08882 21.004 -0.307686 Vertex 13764 -3.09922 20.8438 0.0265118 Vertex 13765 -3.05489 20.7724 0.429799 Vertex 13766 -3.02758 20.3835 0.631758 Vertex 13767 -2.91602 20.2357 0.946214 Vertex 13768 -2.9037 19.9617 1.14562 Vertex 13769 -2.94507 20.0247 0.955452 Vertex 13770 -2.93464 19.7294 1.11637 Vertex 13771 -2.95114 19.9538 0.97589 Vertex 13772 -2.98478 19.6862 0.935796 Vertex 13773 -2.99134 19.3451 1.02026 Vertex 13774 -3.0382 19.2449 0.885032 Vertex 13775 -3.03609 19.0178 0.952061 Vertex 13776 -1.86771 15.8741 3.01885 Vertex 13777 -2.05173 15.9289 2.86539 Vertex 13778 -2.00426 16.0794 2.90573 Vertex 13779 -0.500789 17.9404 4.18358 Vertex 13780 -0.47783 17.9447 4.28197 Vertex 13781 -0.397667 17.9729 4.22456 Vertex 13782 0 14.1625 3.72796 Vertex 13783 -0.970601 19.3068 2.78107 Vertex 13784 -1.16033 19.2406 2.79002 Vertex 13785 -1.5211 19.2032 2.74492 Vertex 13786 -1.80206 19.2411 2.6109 Vertex 13787 -1.96122 19.3108 2.44596 Vertex 13788 -2.0219 19.3777 2.36722 Vertex 13789 -1.99 19.4356 2.38857 Vertex 13790 -1.86291 19.5264 2.47697 Vertex 13791 -1.64218 19.6278 2.62467 Vertex 13792 -1.39964 19.6287 2.73484 Vertex 13793 -1.18887 19.5329 2.77556 Vertex 13794 -1.02714 19.4023 2.78077 Vertex 13795 -1.01975 19.0564 3.50725 Vertex 13796 -1.0123 19.1126 3.51818 Vertex 13797 -2.24322 19.5128 2.74638 Vertex 13798 -2.20794 19.4818 2.84613 Vertex 13799 -1.26964 19.1454 3.11782 Vertex 13800 -0.827108 19.2339 3.09927 Vertex 13801 -0.774478 19.3153 3.08458 Vertex 13802 -0.965608 19.4893 3.09197 Vertex 13803 -1.21197 19.6562 3.08371 Vertex 13804 -1.51826 19.7391 2.99775 Vertex 13805 -1.82605 19.6458 2.8021 Vertex 13806 -2.06847 19.4806 2.6146 Vertex 13807 -2.15147 19.4065 2.55161 Vertex 13808 -2.15867 19.3299 2.56012 Vertex 13809 -2.01096 19.2416 2.77079 Vertex 13810 -1.75207 19.1526 2.99185 Vertex 13811 -1.20374 19.6957 3.47632 Vertex 13812 -0.942988 19.5178 3.48206 Vertex 13813 -0.741603 19.3227 3.47213 Vertex 13814 -0.796468 19.2117 3.48085 Vertex 13815 -1.29316 19.0857 3.52435 Vertex 13816 -1.81134 19.0796 3.4135 Vertex 13817 -2.09655 19.1875 3.16727 Vertex 13818 -2.22646 19.3161 2.88292 Vertex 13819 -2.21415 19.414 2.8551 Vertex 13820 -2.1022 19.526 2.96034 Vertex 13821 -1.67848 19.8805 3.25572 Vertex 13822 -0.644491 19.3232 3.44598 Vertex 13823 -0.670389 19.3635 3.44991 Vertex 13824 -0.679379 19.3582 3.45125 Vertex 13825 -2.35998 19.399 2.59182 Vertex 13826 -2.32739 19.4341 2.63024 Vertex 13827 -2.37255 19.4022 2.5829 Vertex 13828 -2.33728 19.4498 2.61463 Vertex 13829 -0.888143 19.5895 3.46513 Vertex 13830 -0.76549 19.4611 3.45469 Vertex 13831 -0.895226 19.5816 3.4638 Vertex 13832 -1.16993 19.7968 3.46869 Vertex 13833 -1.02802 19.6942 3.47227 Vertex 13834 -1.17498 19.7835 3.46681 Vertex 13835 -1.48617 19.9358 3.35281 Vertex 13836 -1.32056 19.8751 3.42608 Vertex 13837 -1.48626 19.9135 3.35438 Vertex 13838 -1.86577 19.8603 3.11625 Vertex 13839 -1.67725 19.909 3.2456 Vertex 13840 -1.86231 19.8369 3.12224 Vertex 13841 -2.14003 19.6601 2.84559 Vertex 13842 -2.01241 19.7579 2.98501 Vertex 13843 -2.13548 19.6384 2.8552 Vertex 13844 -2.24908 19.5336 2.71855 Vertex 13845 -2.85322 20.0287 1.51653 Vertex 13846 -0.505967 19.9009 4.00313 Vertex 13847 -0.442161 19.9562 3.99106 Vertex 13848 -0.310131 17.9102 4.23119 Vertex 13849 -0.338852 17.9543 4.23417 Vertex 13850 -0.330696 17.8708 4.18443 Vertex 13851 -0.42423 17.8822 4.12727 Vertex 13852 -0.554824 17.8857 4.093 Vertex 13853 -0.596933 17.9055 4.27696 Vertex 13854 -0.529794 17.9387 4.36545 Vertex 13855 -0.409269 17.9573 4.37322 Vertex 13856 -0.719749 17.8209 4.1204 Vertex 13857 -0.692498 17.8512 4.16508 Vertex 13858 -0.670793 17.8461 4.11129 Vertex 13859 -0.560967 17.9119 4.12737 Vertex 13860 -0.619323 17.8895 4.19454 Vertex 13861 -0.686265 17.8762 4.23612 Vertex 13862 -0.339098 17.9603 4.33119 Vertex 13863 -0.361625 17.9547 4.50096 Vertex 13864 -0.804936 18.0708 3.87775 Vertex 13865 -0.792609 18.1124 3.82374 Vertex 13866 -0.7574 18.1699 3.85109 Vertex 13867 -0.274584 18.6483 4.61641 Vertex 13868 0 18.6695 4.68779 Vertex 13869 -0.434168 18.528 4.36651 Vertex 13870 -0.559183 18.4244 4.07796 Vertex 13871 -0.627091 18.3913 4.00737 Vertex 13872 -0.66292 18.3517 3.95823 Vertex 13873 -0.665702 18.3152 3.91416 Vertex 13874 -0.692499 18.2663 3.86286 Vertex 13875 -0.678995 18.2868 3.88508 Vertex 13876 -0.312876 18.306 4.8075 Vertex 13877 0 18.331 4.88287 Vertex 13878 -0.48635 18.2495 4.53331 Vertex 13879 -0.566163 18.221 4.38104 Vertex 13880 -0.741403 18.1537 4.23776 Vertex 13881 -0.846649 18.0325 4.09022 Vertex 13882 -0.850551 17.9011 3.9775 Vertex 13883 -0.94688 17.8236 3.884 Vertex 13884 -0.861382 17.8766 3.93733 Vertex 13885 -1.07932 17.5028 3.90107 Vertex 13886 -1.13266 17.2578 3.87019 Vertex 13887 -0.215619 17.782 4.50154 Vertex 13888 -0.309747 17.9409 4.64701 Vertex 13889 -0.451189 17.9688 4.48146 Vertex 13890 -0.654025 17.9285 4.32472 Vertex 13891 -0.74271 17.8484 4.17301 Vertex 13892 -0.599075 18.3921 3.91342 Vertex 13893 -0.744112 18.193 3.88842 Vertex 13894 -0.847302 17.9492 3.91838 Vertex 13895 -0.830213 17.834 3.99462 Vertex 13896 -1.76849 17.3707 3.35673 Vertex 13897 -0.767009 18.1717 3.81979 Vertex 13898 -0.83233 18.0981 3.79847 Vertex 13899 -1.0772 17.9379 3.7304 Vertex 13900 -1.51158 17.5814 3.50729 Vertex 13901 -1.87573 17.2068 3.24711 Vertex 13902 -1.87852 17.1659 3.21581 Vertex 13903 -1.96111 17.0789 3.17112 Vertex 13904 -0.611742 18.3861 3.89495 Vertex 13905 -0.568943 18.4621 3.91193 Vertex 13906 -1.91532 16.0548 2.96034 Vertex 13907 -1.96616 16.1835 2.9438 Vertex 13908 -2.06567 16.6917 3.03259 Vertex 13909 -1.65359 17.2545 3.31621 Vertex 13910 -0.930525 17.1778 4.03116 Vertex 13911 -0.514569 17.1187 4.21905 Vertex 13912 -0.434713 15.8941 4.09221 Vertex 13913 0 15.9059 4.17819 Vertex 13914 -0.86289 15.8545 3.91745 Vertex 13915 -1.33055 15.7967 3.58848 Vertex 13916 -1.70739 15.8017 3.18554 Vertex 13917 -1.32414 17.2339 3.65082 Vertex 13918 0 17.045 4.28247 Vertex 13919 -2.38773 17.4094 3.15064 Vertex 13920 -2.32369 17.1035 3.08572 Vertex 13921 -0.384459 15.29 3.89713 Vertex 13922 0 15.2657 3.92847 Vertex 13923 -0.764666 15.2985 3.79518 Vertex 13924 -0.639968 19.1937 3.41641 Vertex 13925 -0.74045 19.1521 3.44074 Vertex 13926 -0.631576 19.1842 3.41788 Vertex 13927 -0.731838 19.1324 3.43766 Vertex 13928 -1.35037 18.9048 3.55323 Vertex 13929 -1.90469 18.8149 3.53725 Vertex 13930 -1.67892 18.8513 3.55476 Vertex 13931 -1.98951 18.8198 3.52269 Vertex 13932 -1.9049 18.8373 3.53146 Vertex 13933 -1.01012 19.0328 3.49764 Vertex 13934 -1.36603 18.9252 3.55413 Vertex 13935 -2.57979 18.1686 -1.20962 Vertex 13936 -2.63592 18.4988 -1.46353 Vertex 13937 -2.7986 19.0319 -1.55654 Vertex 13938 -2.98547 19.6581 -1.44743 Vertex 13939 -3.08471 20.0597 -1.12094 Vertex 13940 -3.12952 20.2571 -0.678932 Vertex 13941 -3.12047 20.2729 -0.260185 Vertex 13942 -3.06776 20.1136 -0.0234783 Vertex 13943 -3.04117 19.7935 0.047987 Vertex 13944 -3.09275 19.5828 0.074425 Vertex 13945 -3.00828 19.3523 0.095856 Vertex 13946 -3.07886 19.0857 0.1047 Vertex 13947 -2.99804 18.9681 0.098531 Vertex 13948 -2.99574 18.6561 0.069236 Vertex 13949 -2.98915 18.391 0.041502 Vertex 13950 -2.97968 18.16 0.0309827 Vertex 13951 -3.01178 21.0875 -1.15843 Vertex 13952 -3.07247 21.0104 -0.943615 Vertex 13953 -3.09323 20.9302 -0.431596 Vertex 13954 -3.10105 20.8828 -0.260874 Vertex 13955 -2.99632 20.0904 0.820833 Vertex 13956 -2.98512 19.9246 0.895204 Vertex 13957 -2.92358 18.4228 1.21358 Vertex 13958 -2.90742 18.3019 1.20377 Vertex 13959 -2.94285 18.1048 1.01246 Vertex 13960 -2.95667 18.0132 0.932062 Vertex 13961 -3.03707 17.4946 0.274719 Vertex 13962 0 22.8078 -2.5774 Vertex 13963 -1.13005 22.5417 -2.4899 Vertex 13964 -1.65807 22.2691 -2.37495 Vertex 13965 -2.55017 21.5371 -1.91516 Vertex 13966 -3.11066 20.6072 0.292614 Vertex 13967 -3.0336 19.5023 0.85338 Vertex 13968 -3.07659 19.0801 0.850452 Vertex 13969 -3.01932 18.8336 1.03332 Vertex 13970 -3.00428 17.6614 0.606983 Vertex 13971 -2.68922 17.4102 -0.516003 Vertex 13972 -2.86749 17.5731 -0.275474 Vertex 13973 -2.99899 18.0126 -0.0819878 Vertex 13974 -3.06016 18.7889 -0.101732 Vertex 13975 -3.06536 18.969 -0.0427452 Vertex 13976 -3.02801 18.509 -0.0896085 Vertex 13977 -3.0141 18.2234 -0.0616063 Vertex 13978 -2.67165 17.6217 -0.648514 Vertex 13979 -3.06343 19.2392 0.055809 Vertex 13980 -2.87572 19.3102 -1.40071 Vertex 13981 -2.73873 18.8018 -1.36903 Vertex 13982 -2.96546 19.5844 -1.37169 Vertex 13983 -3.03729 19.8541 -1.25778 Vertex 13984 -3.14954 20.1293 -0.921657 Vertex 13985 -2.65843 18.3918 -1.18016 Vertex 13986 -2.66153 18.0975 -0.929726 Vertex 13987 -2.71037 17.8361 -0.717224 Vertex 13988 -3.23303 20.2439 -0.565702 Vertex 13989 -3.24846 20.2474 -0.440129 Vertex 13990 -3.16014 20.129 -0.143211 Vertex 13991 -3.1299 19.9611 -0.0453375 Vertex 13992 -3.10142 19.6239 0.0486945 Vertex 13993 3.22848 19.1114 -0.18525 Vertex 13994 3.16621 19.1932 -0.062482 Vertex 13995 3.28085 19.3776 -0.065019 Vertex 13996 3.30639 19.2417 -0.179327 Vertex 13997 3.21088 19.5018 0.014449 Vertex 13998 3.34587 19.6756 -0.0601183 Vertex 13999 3.3772 19.524 -0.115024 Vertex 14000 3.45864 19.799 -0.200063 Vertex 14001 3.26706 19.8212 -0.0648592 Vertex 14002 3.41811 19.9483 -0.245126 Vertex 14003 3.22489 19.0455 -0.297062 Vertex 14004 3.16547 18.9958 -0.226729 Vertex 14005 3.27635 19.1704 -0.328346 Vertex 14006 3.20552 19.1571 -0.481873 Vertex 14007 3.17158 19.0222 -0.43881 Vertex 14008 3.36115 19.386 -0.232878 Vertex 14009 3.29425 19.3092 -0.372907 Vertex 14010 3.37855 19.5158 -0.318065 Vertex 14011 3.44048 19.6416 -0.230985 Vertex 14012 3.45647 19.7098 -0.367738 Vertex 14013 3.50963 19.8415 -0.376179 Vertex 14014 3.46852 19.8019 -0.527449 Vertex 14015 3.5134 19.9873 -0.440798 Vertex 14016 3.51533 19.9125 -0.616384 Vertex 14017 3.46439 19.7901 -0.746417 Vertex 14018 3.51336 20.0089 -0.768004 Vertex 14019 3.50932 19.8459 -0.898137 Vertex 14020 3.44806 19.6855 -0.951299 Vertex 14021 3.48709 19.8418 -1.08711 Vertex 14022 3.4707 19.6382 -1.11632 Vertex 14023 3.41312 19.4448 -1.07936 Vertex 14024 3.43274 19.5114 -1.27904 Vertex 14025 3.40809 19.2823 -1.2038 Vertex 14026 3.35468 19.0809 -1.09895 Vertex 14027 3.36652 19.0494 -1.27757 Vertex 14028 3.33543 18.8549 -1.13538 Vertex 14029 3.27898 18.7451 -1.00152 Vertex 14030 3.28947 18.6278 -1.1409 Vertex 14031 3.26282 18.5392 -0.989309 Vertex 14032 3.2414 18.3436 -0.968154 Vertex 14033 3.248 18.4164 -0.88166 Vertex 14034 3.24461 18.3902 -0.779043 Vertex 14035 3.23892 18.5318 -0.805179 Vertex 14036 3.23224 18.5169 -0.690385 Vertex 14037 3.24095 18.3445 -0.676438 Vertex 14038 3.20294 18.5188 -0.584371 Vertex 14039 3.13481 18.6696 -0.548466 Vertex 14040 3.14902 18.5878 -0.474289 Vertex 14041 3.0982 18.717 -0.445644 Vertex 14042 3.21845 18.6746 -0.675654 Vertex 14043 3.0771 18.8449 -0.55661 Vertex 14044 3.1516 18.8507 -0.695634 Vertex 14045 3.25679 18.7041 -0.822245 Vertex 14046 3.26014 18.7866 -0.941489 Vertex 14047 3.26351 18.8713 -0.833275 Vertex 14048 3.29853 18.948 -0.934804 Vertex 14049 3.30546 19.1003 -0.995211 Vertex 14050 3.34715 19.1052 -0.912559 Vertex 14051 3.33929 19.2571 -0.934048 Vertex 14052 3.32057 19.4089 -0.951932 Vertex 14053 3.36177 19.3643 -0.835531 Vertex 14054 3.3222 19.486 -0.841182 Vertex 14055 3.31846 19.5998 -0.854607 Vertex 14056 3.33514 19.5216 -0.729675 Vertex 14057 3.31513 19.6148 -0.747187 Vertex 14058 3.30639 19.6483 -0.644302 Vertex 14059 3.32532 19.6914 -0.714917 Vertex 14060 3.30022 19.6946 -0.556068 Vertex 14061 3.31283 19.5607 -0.629906 Vertex 14062 3.26568 19.6071 -0.537612 Vertex 14063 3.23678 19.5101 -0.522179 Vertex 14064 3.23884 19.5745 -0.456762 Vertex 14065 3.18714 19.398 -0.500671 Vertex 14066 3.30281 19.4536 -0.624447 Vertex 14067 3.21171 19.3451 -0.617319 Vertex 14068 3.35118 19.4149 -0.727423 Vertex 14069 3.36157 19.3056 -0.794556 Vertex 14070 3.365 19.5522 -0.95925 Vertex 14071 3.38586 19.6916 -0.82829 Vertex 14072 3.34975 19.2686 -1.0395 Vertex 14073 3.29393 18.9283 -1.01921 Vertex 14074 3.23248 18.2586 -0.490885 Vertex 14075 3.18468 18.1005 -0.316138 Vertex 14076 3.17388 18.2948 -0.363251 Vertex 14077 3.10444 18.3344 -0.224282 Vertex 14078 3.15943 18.4783 -0.404612 Vertex 14079 3.11943 18.6046 -0.365907 Vertex 14080 3.11099 18.6527 -0.249958 Vertex 14081 3.12386 18.7347 -0.351303 Vertex 14082 3.1155 17.9114 -0.297628 Vertex 14083 3.07796 17.9647 -0.203321 Vertex 14084 3.20891 17.9846 -0.403246 Vertex 14085 3.25333 18.028 -0.584128 Vertex 14086 3.2086 17.935 -0.539049 Vertex 14087 3.25745 18.1567 -0.638162 Vertex 14088 3.24273 18.0707 -0.773126 Vertex 14089 3.38611 19.747 -0.629279 Vertex 14090 3.18857 19.2586 -0.733783 Vertex 14091 3.10901 19.2427 -0.649442 Vertex 14092 3.06513 19.0823 -0.808342 Vertex 14093 3.18587 19.1468 -0.831105 Vertex 14094 3.29287 19.0634 -0.887387 Vertex 14095 3.17793 18.9963 -0.844328 Vertex 14096 3.0626 18.9846 -0.749619 Vertex 14097 3.34967 19.1845 -0.87553 Vertex 14098 3.30986 19.2372 -0.793983 Vertex 14099 3.37679 19.723 -0.472429 Vertex 14100 3.34696 19.6339 -0.404086 Vertex 14101 3.26683 19.4462 -0.406165 Vertex 14102 3.18889 19.2742 -0.501649 Vertex 14103 3.10453 19.1377 -0.639132 Vertex 14104 3.11053 18.8621 -0.425571 Vertex 14105 3.09427 19.0092 -0.578736 Vertex 14106 3.03596 19.0541 -0.707883 Vertex 14107 3.14183 18.8618 -0.292462 Vertex 14108 3.37639 20.0927 -0.395008 Vertex 14109 3.45357 20.1009 -0.589495 Vertex 14110 3.3152 20.149 -0.766262 Vertex 14111 3.41017 20.0204 -0.958995 Vertex 14112 3.28821 19.938 -1.16031 Vertex 14113 3.39341 19.75 -1.27005 Vertex 14114 3.2843 19.5593 -1.37186 Vertex 14115 3.35059 19.3007 -1.37588 Vertex 14116 3.24576 19.0312 -1.37594 Vertex 14117 3.28612 18.7902 -1.29027 Vertex 14118 3.15754 18.5908 -1.23969 Vertex 14119 3.19558 18.4358 -1.11839 Vertex 14120 3.09392 18.2726 -1.05158 Vertex 14121 3.18026 18.1525 -0.924562 Vertex 14122 3.11144 17.9454 -0.823738 Vertex 14123 3.19085 17.9079 -0.73662 Vertex 14124 3.09377 17.8183 -0.59363 Vertex 14125 3.14759 17.8935 -0.578097 Vertex 14126 3.02908 17.8041 -0.645702 Vertex 14127 2.979 17.788 -0.485124 Vertex 14128 2.99379 18.1675 -0.9133 Vertex 14129 2.88579 18.0792 -0.76313 Vertex 14130 2.9662 17.9997 -0.797053 Vertex 14131 2.8513 18.2076 -0.817845 Vertex 14132 2.78777 18.0459 -0.74972 Vertex 14133 2.76594 18.3104 -0.932092 Vertex 14134 2.93375 18.3367 -0.94768 Vertex 14135 2.86438 18.4981 -1.00877 Vertex 14136 3.0297 18.4568 -1.10827 Vertex 14137 3.11117 18.8011 -1.27177 Vertex 14138 2.97583 18.6493 -1.13441 Vertex 14139 2.91509 18.8527 -1.17867 Vertex 14140 2.79421 18.6483 -1.13889 Vertex 14141 2.86327 19.0804 -1.27769 Vertex 14142 3.03332 19.0436 -1.25659 Vertex 14143 2.96541 19.2787 -1.26226 Vertex 14144 3.16285 19.2892 -1.34462 Vertex 14145 3.18419 19.7708 -1.26603 Vertex 14146 3.06912 19.5161 -1.26438 Vertex 14147 2.96913 19.5155 -1.27679 Vertex 14148 3.1058 17.8703 -0.413889 Vertex 14149 2.99376 17.8114 -0.362609 Vertex 14150 3.0111 17.8309 -0.248268 Vertex 14151 2.89067 17.731 -0.444173 Vertex 14152 2.89215 17.6891 -0.3613 Vertex 14153 3.15254 19.9505 -1.11799 Vertex 14154 2.88232 17.8339 -0.631934 Vertex 14155 2.82904 17.7099 -0.521222 Vertex 14156 2.82198 17.6338 -0.422811 Vertex 14157 3.37089 20.2033 -0.510103 Vertex 14158 3.32819 20.1357 -0.348506 Vertex 14159 2.82311 18.0471 2.25115 Vertex 14160 2.92788 18.259 2.11849 Vertex 14161 2.89687 18.1917 1.73727 Vertex 14162 2.78346 17.9437 1.88996 Vertex 14163 2.67169 17.74 1.98118 Vertex 14164 2.78219 17.919 1.59677 Vertex 14165 2.6862 17.6969 1.70858 Vertex 14166 2.5909 17.5044 1.78175 Vertex 14167 2.75196 17.7478 1.46219 Vertex 14168 2.6668 17.5194 1.55328 Vertex 14169 2.6206 17.2976 1.57298 Vertex 14170 2.77253 17.597 1.3188 Vertex 14171 2.7317 17.3097 1.33507 Vertex 14172 2.7279 17.0074 1.25954 Vertex 14173 2.84508 17.3284 1.06314 Vertex 14174 2.83558 16.97 0.988263 Vertex 14175 2.81692 16.7043 0.917972 Vertex 14176 2.94537 16.9944 0.697168 Vertex 14177 2.90233 16.6733 0.640381 Vertex 14178 2.79253 16.3638 0.594316 Vertex 14179 2.94526 16.8008 0.345483 Vertex 14180 2.81573 16.4235 0.292649 Vertex 14181 2.65363 16.0695 0.242057 Vertex 14182 2.81156 16.5971 0.000959501 Vertex 14183 2.64726 16.2102 -0.0563925 Vertex 14184 2.44129 15.8836 -0.03733 Vertex 14185 2.61584 16.4504 -0.301753 Vertex 14186 2.44814 16.1446 -0.408237 Vertex 14187 2.39592 15.9953 -0.854753 Vertex 14188 2.47664 16.5427 -0.868071 Vertex 14189 2.36263 16.4452 -1.32006 Vertex 14190 2.39096 15.4177 -1.0932 Vertex 14191 2.34517 15.5326 -0.457691 Vertex 14192 2.28943 15.9913 -1.46203 Vertex 14193 2.13132 16.4291 -1.72958 Vertex 14194 2.26593 16.8816 -1.53194 Vertex 14195 1.96101 16.8867 -1.86767 Vertex 14196 2.02267 15.9372 -1.93836 Vertex 14197 1.72881 16.4844 -2.11231 Vertex 14198 1.44296 16.9935 -2.27836 Vertex 14199 1.9036 17.2963 -1.9345 Vertex 14200 1.20513 16.4292 -2.49658 Vertex 14201 0.819171 17.0191 -2.6135 Vertex 14202 0.348603 16.8246 -2.77241 Vertex 14203 1.94369 22.5249 -1.87846 Vertex 14204 2.15486 21.9782 -2.07958 Vertex 14205 2.68718 21.7055 -1.62878 Vertex 14206 2.55342 22.2523 -1.37816 Vertex 14207 2.4642 22.7024 -0.855034 Vertex 14208 2.92641 21.7932 -1.01488 Vertex 14209 2.86179 22.1897 -0.553658 Vertex 14210 2.74562 22.4391 0.067847 Vertex 14211 3.04199 21.6973 -0.439536 Vertex 14212 2.97344 21.9428 0.040644 Vertex 14213 2.80738 22.0927 0.611176 Vertex 14214 3.07833 21.5224 -0.0486632 Vertex 14215 2.98465 21.6586 0.405563 Vertex 14216 2.82016 21.7097 1.00202 Vertex 14217 3.04917 21.1984 0.334235 Vertex 14218 2.93729 21.1973 0.856603 Vertex 14219 2.76138 21.1915 1.38622 Vertex 14220 2.92976 20.6721 0.856704 Vertex 14221 2.8041 20.6387 1.27543 Vertex 14222 2.69115 20.6594 1.65803 Vertex 14223 2.83632 20.1815 1.25458 Vertex 14224 2.78153 20.2174 1.52849 Vertex 14225 1.29522 22.8827 -1.89195 Vertex 14226 1.46835 22.516 -2.29897 Vertex 14227 1.90123 22.962 -1.35299 Vertex 14228 0.644567 22.795 -2.35757 Vertex 14229 0.868941 23.2924 -1.16829 Vertex 14230 1.75351 23.2267 -0.553016 Vertex 14231 2.36108 22.9299 -0.0984478 Vertex 14232 0.719608 23.4896 -0.104208 Vertex 14233 1.51627 23.3284 0.43791 Vertex 14234 2.08348 22.9922 0.780026 Vertex 14235 2.49033 22.5407 0.819794 Vertex 14236 1.2212 23.2002 1.3438 Vertex 14237 1.69877 22.8748 1.59017 Vertex 14238 2.15906 22.5494 1.55278 Vertex 14239 2.54555 22.1617 1.28081 Vertex 14240 1.32712 22.6783 2.17585 Vertex 14241 1.8068 22.4321 2.1207 Vertex 14242 2.23113 22.129 1.92705 Vertex 14243 2.56875 21.715 1.63538 Vertex 14244 1.55095 22.1896 2.56933 Vertex 14245 1.91913 21.9645 2.44301 Vertex 14246 2.29818 21.6471 2.1984 Vertex 14247 2.55564 21.1911 1.90285 Vertex 14248 1.69819 21.6944 2.85752 Vertex 14249 2.05499 21.461 2.67383 Vertex 14250 2.3621 21.1691 2.38344 Vertex 14251 2.56352 20.777 2.06475 Vertex 14252 1.87592 21.1857 3.04028 Vertex 14253 2.17837 21.0514 2.79948 Vertex 14254 1.60052 21.375 3.13107 Vertex 14255 1.73925 20.9281 3.2686 Vertex 14256 1.50073 21.0317 3.3318 Vertex 14257 1.42871 21.8881 2.88529 Vertex 14258 1.35032 21.5536 3.12097 Vertex 14259 1.26187 22.1214 2.76451 Vertex 14260 1.26796 21.1793 3.35982 Vertex 14261 1.34506 20.7274 3.57498 Vertex 14262 1.13311 20.7965 3.63448 Vertex 14263 1.06514 21.7381 3.07463 Vertex 14264 0.975957 21.318 3.35994 Vertex 14265 0.953818 22.3906 2.62477 Vertex 14266 0.735424 21.9464 3.00825 Vertex 14267 0.896035 20.8827 3.66905 Vertex 14268 0.977992 20.5018 3.86529 Vertex 14269 0.769107 20.5162 3.8996 Vertex 14270 0.664893 21.4761 3.3324 Vertex 14271 0.604652 21.0306 3.63944 Vertex 14272 0.464559 21.8284 3.14763 Vertex 14273 0.539735 20.6013 3.8624 Vertex 14274 0.613622 20.2605 3.9899 Vertex 14275 0.419984 20.2906 3.96428 Vertex 14276 0.36898 21.3636 3.46829 Vertex 14277 0.348268 20.8542 3.74269 Vertex 14278 0.267547 22.2663 2.86407 Vertex 14279 0.165866 21.7597 3.22668 Vertex 14280 0.291426 20.4599 3.92512 Vertex 14281 0.264117 20.074 4.00327 Vertex 14282 0.18348 20.2626 4.01004 Vertex 14283 0.220345 20.8318 3.77493 Vertex 14284 0.104004 20.5014 3.93844 Vertex 14285 0.0712475 20.1084 4.02616 Vertex 14286 0.11916 21.2592 3.52826 Vertex 14287 0.545489 22.6363 2.51232 Vertex 14288 0.25368 22.9193 2.25024 Vertex 14289 0.535348 23.2513 1.6263 Vertex 14290 0.240251 23.4996 1.03711 Vertex 14291 0.313861 23.5554 0.123226 Vertex 14292 0.88038 22.9352 2.03166 Vertex 14293 0.765361 23.4736 0.892861 Vertex 14294 1.7677 15.3069 2.8449 Vertex 14295 1.97126 15.6252 2.84313 Vertex 14296 2.17292 15.65 2.60117 Vertex 14297 1.99554 15.2669 2.5356 Vertex 14298 1.35555 15.0945 3.1912 Vertex 14299 1.51141 15.3909 3.20653 Vertex 14300 1.59682 15.0077 2.80972 Vertex 14301 1.80064 14.9025 2.5155 Vertex 14302 2.21279 15.2544 2.20347 Vertex 14303 2.00516 14.8788 2.21333 Vertex 14304 1.44846 14.6673 2.77175 Vertex 14305 1.62913 14.595 2.50508 Vertex 14306 1.77287 14.5991 2.2764 Vertex 14307 2.05299 14.9123 1.86719 Vertex 14308 1.78844 14.6413 1.96039 Vertex 14309 1.5455 14.4538 2.3881 Vertex 14310 1.51512 14.4377 2.07738 Vertex 14311 1.70444 14.6818 1.58615 Vertex 14312 1.44906 14.4732 1.71348 Vertex 14313 1.24504 14.3193 2.50183 Vertex 14314 1.24918 14.3088 2.17529 Vertex 14315 1.25053 14.3414 1.89355 Vertex 14316 1.38561 14.5178 1.41023 Vertex 14317 1.14161 14.376 1.64364 Vertex 14318 1.06019 14.2593 2.12409 Vertex 14319 0.854114 14.267 1.90716 Vertex 14320 0.875194 14.4118 1.45089 Vertex 14321 0.543438 14.2966 1.72101 Vertex 14322 0.778079 14.1457 2.35863 Vertex 14323 0.546759 14.1523 2.13076 Vertex 14324 0.269555 14.1825 1.95781 Vertex 14325 0.239458 14.3407 1.55677 Vertex 14326 0.24769 14.0492 2.3442 Vertex 14327 2.22982 15.9686 2.72973 Vertex 14328 2.34805 16.1459 2.59609 Vertex 14329 2.30964 15.8377 2.41181 Vertex 14330 2.39074 16.122 2.28713 Vertex 14331 2.33521 15.7889 2.2478 Vertex 14332 2.43127 15.9584 2.03461 Vertex 14333 2.34902 15.6363 2.12471 Vertex 14334 2.4343 15.6681 1.84602 Vertex 14335 2.34332 15.3345 1.89665 Vertex 14336 2.36392 15.4354 1.64962 Vertex 14337 2.25222 15.1964 1.76974 Vertex 14338 2.13769 15.1834 1.46771 Vertex 14339 1.94235 14.9179 1.52952 Vertex 14340 1.84058 14.9334 1.23301 Vertex 14341 1.61859 14.7197 1.29245 Vertex 14342 1.58169 14.7432 1.03047 Vertex 14343 1.26695 14.5538 1.18731 Vertex 14344 0.967119 14.4102 1.07121 Vertex 14345 0.539586 14.4544 1.33663 Vertex 14346 0.250288 14.328 1.20424 Vertex 14347 2.6068 17.6893 2.81173 Vertex 14348 2.6635 17.8898 2.91371 Vertex 14349 2.71987 17.9073 2.61577 Vertex 14350 2.62242 17.7001 2.54428 Vertex 14351 2.52749 17.394 2.88014 Vertex 14352 2.52684 17.5748 3.03458 Vertex 14353 2.55786 17.4891 2.66425 Vertex 14354 2.48619 17.098 2.85292 Vertex 14355 2.44674 17.2559 3.037 Vertex 14356 2.52343 17.2319 2.68483 Vertex 14357 2.43334 16.6809 2.75253 Vertex 14358 2.40225 16.9051 2.96363 Vertex 14359 2.4871 16.9193 2.64973 Vertex 14360 2.33406 16.4071 2.82313 Vertex 14361 2.41794 16.4198 2.48821 Vertex 14362 2.4249 16.6271 2.34102 Vertex 14363 2.41054 16.3547 2.17798 Vertex 14364 2.50757 15.9838 1.79167 Vertex 14365 2.54743 15.98 1.54726 Vertex 14366 2.46436 15.6937 1.58482 Vertex 14367 2.44675 15.7098 1.29724 Vertex 14368 2.30761 15.4502 1.36286 Vertex 14369 2.2226 15.4052 1.04005 Vertex 14370 2.02893 15.1542 1.14037 Vertex 14371 1.9857 15.1544 0.849041 Vertex 14372 1.80331 14.9533 0.944543 Vertex 14373 1.82154 14.9244 0.655079 Vertex 14374 1.63285 14.5924 0.723403 Vertex 14375 2.02679 15.0855 0.314548 Vertex 14376 1.90526 14.7347 0.337779 Vertex 14377 1.99289 15.1456 0.593457 Vertex 14378 2.13966 15.3374 0.52941 Vertex 14379 2.16084 15.3544 0.760692 Vertex 14380 2.35294 15.5871 0.726599 Vertex 14381 2.41083 15.6693 0.996099 Vertex 14382 2.54645 15.9369 1.0223 Vertex 14383 2.54936 15.9831 1.2943 Vertex 14384 2.60592 16.215 1.33537 Vertex 14385 2.57753 16.2323 1.56529 Vertex 14386 2.56241 16.4792 1.64187 Vertex 14387 2.51962 16.258 1.79875 Vertex 14388 2.49372 16.5225 1.85876 Vertex 14389 2.46423 16.7548 1.93004 Vertex 14390 2.4326 16.5084 2.04291 Vertex 14391 2.41883 16.7306 2.12516 Vertex 14392 2.43185 16.9309 2.22227 Vertex 14393 2.45429 16.8644 2.44615 Vertex 14394 2.49012 17.0578 2.51955 Vertex 14395 2.44719 16.2418 2.01684 Vertex 14396 2.81522 18.1098 2.61646 Vertex 14397 2.70286 17.8394 2.29004 Vertex 14398 2.59999 17.6213 2.25186 Vertex 14399 2.57553 17.5355 1.99291 Vertex 14400 2.51713 17.3611 1.9688 Vertex 14401 2.54485 17.3282 1.78533 Vertex 14402 2.54838 17.1169 1.71925 Vertex 14403 2.62907 17.0543 1.50188 Vertex 14404 2.66213 16.8134 1.38897 Vertex 14405 2.74413 16.7666 1.16012 Vertex 14406 2.76344 16.5825 1.01917 Vertex 14407 2.54129 17.4709 2.42282 Vertex 14408 2.51864 17.3982 2.17516 Vertex 14409 2.47736 17.2227 2.1116 Vertex 14410 2.49488 17.1723 1.92209 Vertex 14411 2.50436 16.9447 1.83267 Vertex 14412 2.57507 16.8772 1.61872 Vertex 14413 2.61053 16.6355 1.50903 Vertex 14414 2.69142 16.5831 1.27125 Vertex 14415 2.68493 16.3712 1.18912 Vertex 14416 2.74046 16.364 0.911938 Vertex 14417 2.6489 16.097 0.854136 Vertex 14418 2.65501 16.0462 0.552067 Vertex 14419 2.47573 15.7437 0.503628 Vertex 14420 2.45394 15.7507 0.225572 Vertex 14421 2.2596 15.5366 0.270787 Vertex 14422 2.267 15.5909 0.008906 Vertex 14423 2.15791 15.2548 0.0257277 Vertex 14424 2.27465 15.0098 -0.346048 Vertex 14425 2.08745 14.8488 0.013308 Vertex 14426 2.12877 15.3373 0.310575 Vertex 14427 2.29233 15.5083 0.486601 Vertex 14428 2.52377 15.837 0.767326 Vertex 14429 2.63186 16.1727 1.10916 Vertex 14430 2.6276 16.4112 1.41276 Vertex 14431 2.53182 16.7153 1.73368 Vertex 14432 2.45204 16.9681 2.02477 Vertex 14433 2.46386 17.1415 2.15859 Vertex 14434 2.4649 17.111 2.33579 Vertex 14435 2.51152 17.2925 2.48898 Vertex 14436 2.48622 17.2801 2.29212 Vertex 14437 0.106369 19.2738 4.2155 Vertex 14438 0.130615 19.633 3.95872 Vertex 14439 0.202298 19.4144 4.03379 Vertex 14440 0.118347 18.9915 4.43412 Vertex 14441 0.21382 19.1035 4.29341 Vertex 14442 0.138425 18.7564 4.60399 Vertex 14443 0.243778 18.8462 4.47397 Vertex 14444 0.285495 19.2215 4.11743 Vertex 14445 0.302558 19.5398 3.89489 Vertex 14446 0.342897 19.3324 3.91708 Vertex 14447 0.319928 18.9362 4.30925 Vertex 14448 0.381511 19.0316 4.11601 Vertex 14449 0.347286 18.6831 4.45134 Vertex 14450 0.408477 18.7387 4.25699 Vertex 14451 0.441777 19.1147 3.89214 Vertex 14452 0.42136 19.4005 3.71681 Vertex 14453 0.512336 19.1835 3.6553 Vertex 14454 0.470411 18.8162 4.03647 Vertex 14455 0.549885 18.8945 3.82096 Vertex 14456 0.487149 18.541 4.13999 Vertex 14457 0.532291 18.5947 3.94677 Vertex 14458 0.747407 19.0331 3.49669 Vertex 14459 0.652124 18.9768 3.62359 Vertex 14460 0.571521 19.2397 3.49557 Vertex 14461 0.630455 19.159 3.4471 Vertex 14462 0.684065 18.6974 3.74905 Vertex 14463 0.843027 18.7836 3.60991 Vertex 14464 0.71867 18.4354 3.81379 Vertex 14465 0.593484 18.5698 3.86474 Vertex 14466 0.856568 18.5228 3.71533 Vertex 14467 0.0983095 19.8864 3.98774 Vertex 14468 0.303955 19.8483 3.94971 Vertex 14469 0.371069 19.76 3.92121 Vertex 14470 0.493944 19.7927 3.92141 Vertex 14471 0.43601 19.6145 3.81791 Vertex 14472 0.524256 19.4119 3.55892 Vertex 14473 0.572944 19.6119 3.70253 Vertex 14474 0.628386 19.3251 3.45276 Vertex 14475 0.637193 19.2705 3.44236 Vertex 14476 0.619016 19.2255 3.43355 Vertex 14477 0.625474 19.4194 3.49701 Vertex 14478 0.700072 19.3345 3.46515 Vertex 14479 0.692008 19.2612 3.4675 Vertex 14480 0.759312 19.1857 3.46643 Vertex 14481 0.652985 19.2131 3.42981 Vertex 14482 0.65291 19.3056 3.44871 Vertex 14483 0.982043 19.0045 3.5013 Vertex 14484 1.03647 18.8713 3.54634 Vertex 14485 0.16657 18.4271 4.84758 Vertex 14486 0.154157 18.5906 4.73542 Vertex 14487 0.302702 18.4908 4.74114 Vertex 14488 0.416252 18.3676 4.65784 Vertex 14489 0.383788 18.5208 4.56279 Vertex 14490 0.47371 18.4006 4.46946 Vertex 14491 0.530477 18.3091 4.40568 Vertex 14492 0.515007 18.4222 4.27491 Vertex 14493 0.578084 18.3465 4.24831 Vertex 14494 0.656353 18.2612 4.2559 Vertex 14495 0.627328 18.3681 4.10532 Vertex 14496 0.715457 18.2883 4.12922 Vertex 14497 0.804434 18.1663 4.12278 Vertex 14498 0.715009 18.316 4.02632 Vertex 14499 0.800952 18.1905 4.01767 Vertex 14500 0.706098 18.2978 3.84105 Vertex 14501 0.845099 18.2667 3.77755 Vertex 14502 0.749665 18.2333 3.94112 Vertex 14503 0.810299 18.0793 3.91875 Vertex 14504 0.852782 18.0272 3.99273 Vertex 14505 0.841272 18.0252 3.84683 Vertex 14506 0.916301 18.0168 3.79495 Vertex 14507 0.924204 17.9353 3.84813 Vertex 14508 0.810524 17.7882 4.01954 Vertex 14509 0.847953 17.8198 3.96971 Vertex 14510 0.826296 17.7363 4.02159 Vertex 14511 0.834396 17.9083 4.0584 Vertex 14512 0.801283 17.8116 4.04826 Vertex 14513 0.774593 17.8207 4.10915 Vertex 14514 0.800828 17.9158 4.14713 Vertex 14515 0.705896 18.021 4.31027 Vertex 14516 0.79155 18.0358 4.1956 Vertex 14517 0.742208 17.921 4.24348 Vertex 14518 0.522165 18.0742 4.45862 Vertex 14519 0.632011 18.1231 4.35484 Vertex 14520 0.581582 17.9908 4.41321 Vertex 14521 0.510353 18.1614 4.47075 Vertex 14522 0.462395 18.085 4.54889 Vertex 14523 0.296274 18.0944 4.80199 Vertex 14524 0.410362 18.1812 4.67709 Vertex 14525 0.382829 18.0096 4.65018 Vertex 14526 0.163354 18.2128 4.87284 Vertex 14527 0.144251 17.9846 4.82203 Vertex 14528 0.0943477 17.7449 4.58391 Vertex 14529 0.210896 17.8663 4.67153 Vertex 14530 0.270094 17.9011 4.33923 Vertex 14531 0.23888 17.8356 4.3913 Vertex 14532 0.264227 17.8706 4.51387 Vertex 14533 0.301146 17.928 4.43803 Vertex 14534 0.091416 17.5324 4.40295 Vertex 14535 0.162869 17.6686 4.45227 Vertex 14536 0.254071 17.8266 4.29177 Vertex 14537 0.232631 17.773 4.36289 Vertex 14538 0.321503 17.6164 4.27653 Vertex 14539 0.243183 17.6933 4.31734 Vertex 14540 0.339527 17.7895 4.19941 Vertex 14541 0.442805 17.7487 4.17368 Vertex 14542 0.61416 17.7058 4.13188 Vertex 14543 0.552935 17.8149 4.10912 Vertex 14544 0.69849 17.7851 4.09385 Vertex 14545 0.0887898 17.3079 4.34614 Vertex 14546 0.201062 17.4469 4.34721 Vertex 14547 0.142173 17.197 4.32691 Vertex 14548 0.334144 17.3465 4.31041 Vertex 14549 0.493375 17.5371 4.22959 Vertex 14550 0.277237 17.1207 4.28528 Vertex 14551 0.515484 17.2571 4.25642 Vertex 14552 0.192709 16.9692 3.92377 Vertex 14553 0.253879 17.0429 4.20436 Vertex 14554 0.435877 17.0429 4.00722 Vertex 14555 0.210659 15.9433 4.09872 Vertex 14556 0.176234 16.0679 3.85141 Vertex 14557 0.384863 16.003 3.91659 Vertex 14558 0.228722 15.5868 4.13207 Vertex 14559 0.222939 15.8461 4.16344 Vertex 14560 0.451216 15.7078 4.09795 Vertex 14561 0.804762 17.6017 4.08885 Vertex 14562 0.694285 17.4312 4.17975 Vertex 14563 0.758545 17.7265 4.0724 Vertex 14564 0.730175 17.1985 4.16505 Vertex 14565 0.867258 17.3284 4.11305 Vertex 14566 0.554759 17.0271 3.79132 Vertex 14567 0.701882 17.1191 4.08502 Vertex 14568 0.822169 17.0972 3.83698 Vertex 14569 0.623941 15.9205 3.96971 Vertex 14570 0.524746 16.0604 3.7292 Vertex 14571 0.775964 15.9736 3.75332 Vertex 14572 0.651782 15.5207 3.97927 Vertex 14573 0.652421 15.8127 4.02429 Vertex 14574 0.860755 15.6347 3.8953 Vertex 14575 0.912393 17.6358 3.99691 Vertex 14576 0.901812 17.4727 4.07808 Vertex 14577 0.976609 17.347 4.03098 Vertex 14578 0.981307 17.0894 3.58713 Vertex 14579 1.10424 17.1745 3.80593 Vertex 14580 1.25735 17.1601 3.53035 Vertex 14581 1.0731 15.8686 3.72666 Vertex 14582 0.943635 16.0107 3.50729 Vertex 14583 1.24008 15.9136 3.45687 Vertex 14584 1.0175 15.4375 3.71739 Vertex 14585 1.09353 15.7542 3.76832 Vertex 14586 1.28378 15.569 3.54534 Vertex 14587 1.1428 17.7047 3.77063 Vertex 14588 1.27305 17.7424 3.64581 Vertex 14589 1.36803 17.5433 3.62374 Vertex 14590 1.49312 17.309 3.49337 Vertex 14591 1.29046 17.388 3.71439 Vertex 14592 1.58133 17.4089 3.42758 Vertex 14593 1.40305 17.1408 3.29775 Vertex 14594 1.47711 17.2223 3.42855 Vertex 14595 1.57962 17.1812 3.22821 Vertex 14596 1.50798 15.8208 3.3575 Vertex 14597 1.37919 15.9828 3.23422 Vertex 14598 1.60864 15.9338 3.14895 Vertex 14599 1.53705 15.7082 3.36507 Vertex 14600 1.74043 15.6259 3.09911 Vertex 14601 1.06831 18.6037 3.62256 Vertex 14602 1.34467 18.7037 3.58012 Vertex 14603 1.02012 18.3249 3.72862 Vertex 14604 1.27874 18.3873 3.65817 Vertex 14605 1.60328 18.4743 3.59761 Vertex 14606 1.65817 18.7889 3.5614 Vertex 14607 1.8979 18.6083 3.55479 Vertex 14608 1.46456 18.1311 3.6637 Vertex 14609 1.80787 18.2206 3.60048 Vertex 14610 2.19125 18.6236 3.43063 Vertex 14611 2.0976 18.378 3.51505 Vertex 14612 2.00763 18.7551 3.52267 Vertex 14613 2.24474 18.1136 3.46334 Vertex 14614 1.95445 17.9445 3.55396 Vertex 14615 0.94363 18.0891 3.76786 Vertex 14616 1.15644 18.0948 3.72262 Vertex 14617 1.31519 17.834 3.63956 Vertex 14618 1.6288 17.8293 3.57865 Vertex 14619 1.821 17.5232 3.43106 Vertex 14620 2.07435 17.6506 3.43829 Vertex 14621 2.1603 17.4142 3.28644 Vertex 14622 2.29983 17.8484 3.407 Vertex 14623 2.33581 17.6122 3.27894 Vertex 14624 1.7469 17.083 3.13312 Vertex 14625 1.58804 17.141 3.13029 Vertex 14626 1.757 17.1854 3.21503 Vertex 14627 1.88081 16.6882 2.99362 Vertex 14628 1.70021 16.9149 3.03396 Vertex 14629 1.96078 16.9182 3.09451 Vertex 14630 1.81559 16.1825 2.96228 Vertex 14631 1.78144 16.4314 2.9353 Vertex 14632 1.96781 16.4165 2.97399 Vertex 14633 1.66898 16.0797 3.01872 Vertex 14634 1.79607 15.9621 3.04513 Vertex 14635 1.70074 17.3685 3.36297 Vertex 14636 1.75988 17.263 3.28006 Vertex 14637 2.06212 16.9397 3.10815 Vertex 14638 2.10076 17.125 3.16189 Vertex 14639 2.18894 16.9365 3.07455 Vertex 14640 2.15735 16.167 2.86118 Vertex 14641 2.0905 16.4112 2.96065 Vertex 14642 2.26585 16.6797 2.9804 Vertex 14643 1.99344 17.2867 3.27656 Vertex 14644 2.23482 17.2573 3.17096 Vertex 14645 0.195168 15.3327 3.95394 Vertex 14646 0.420502 15.4345 3.99513 Vertex 14647 0.587452 15.3386 3.87639 Vertex 14648 0.797981 15.3863 3.83824 Vertex 14649 0.960063 15.3374 3.69344 Vertex 14650 0.173767 14.9915 4.01414 Vertex 14651 0.190827 15.2228 3.93042 Vertex 14652 0.367988 15.1269 3.93496 Vertex 14653 0.160841 14.6713 4.04065 Vertex 14654 0.332859 14.8129 4.01122 Vertex 14655 0.146877 14.3188 3.89148 Vertex 14656 0.271343 14.4674 3.98485 Vertex 14657 0.524462 14.9564 3.92573 Vertex 14658 0.577815 15.235 3.86197 Vertex 14659 0.74566 15.1003 3.8193 Vertex 14660 0.438985 14.5956 3.97038 Vertex 14661 0.632331 14.7295 3.88868 Vertex 14662 0.283603 14.2829 3.87001 Vertex 14663 0.442512 14.3786 3.88173 Vertex 14664 0.857967 14.8783 3.76206 Vertex 14665 0.959987 15.2529 3.68493 Vertex 14666 1.09227 15.0416 3.55511 Vertex 14667 0.64539 14.4745 3.82673 Vertex 14668 0.859555 14.5849 3.69509 Vertex 14669 0.352026 14.2167 3.79711 Vertex 14670 0.533281 14.2604 3.75719 Vertex 14671 1.06701 14.6852 3.45309 Vertex 14672 1.2705 14.7219 3.11023 Vertex 14673 0.714444 14.3139 3.63401 Vertex 14674 0.900736 14.3746 3.41603 Vertex 14675 0.351798 14.1426 3.70485 Vertex 14676 0.515339 14.1537 3.59891 Vertex 14677 1.09392 14.3985 3.13374 Vertex 14678 1.21934 14.366 2.82275 Vertex 14679 0.687109 14.1894 3.44299 Vertex 14680 0.836363 14.1977 3.21605 Vertex 14681 0.493816 14.1069 3.50432 Vertex 14682 0.914842 14.1711 2.93774 Vertex 14683 0.899364 14.1519 2.64325 Vertex 14684 0.597903 14.1014 3.31343 Vertex 14685 0.629243 14.0603 3.0798 Vertex 14686 0.412256 14.0579 3.44534 Vertex 14687 0.594071 14.0171 2.82568 Vertex 14688 0.468277 14.0188 2.56846 Vertex 14689 0.411946 13.995 3.22919 Vertex 14690 0.350956 13.9368 3.00412 Vertex 14691 0.259474 14.0615 3.58707 Vertex 14692 0.239175 13.9715 3.38356 Vertex 14693 0.202504 13.9374 2.77399 Vertex 14694 0.148915 13.9004 3.18972 Vertex 14695 0.132404 14.035 3.54904 Vertex 14696 1.67052 18.8892 3.54918 Vertex 14697 1.34294 18.987 3.55349 Vertex 14698 1.60881 19.0042 3.52109 Vertex 14699 1.89527 18.9339 3.48331 Vertex 14700 2.18736 18.8697 3.35485 Vertex 14701 2.00907 18.8616 3.48782 Vertex 14702 2.04002 19.0519 3.34367 Vertex 14703 2.22057 19.0611 3.20397 Vertex 14704 2.37793 19.1033 2.91619 Vertex 14705 2.23993 19.2211 2.9949 Vertex 14706 2.31875 19.285 2.77487 Vertex 14707 2.39031 19.3191 2.60766 Vertex 14708 2.28621 19.3629 2.77113 Vertex 14709 2.29852 19.4173 2.71508 Vertex 14710 2.34912 19.3862 2.62155 Vertex 14711 2.01072 19.7283 2.99971 Vertex 14712 2.13205 19.5949 2.89961 Vertex 14713 2.0054 19.6558 3.0447 Vertex 14714 1.86224 19.7859 3.14851 Vertex 14715 1.68805 19.8075 3.28402 Vertex 14716 1.84863 19.7009 3.17223 Vertex 14717 1.5172 19.7909 3.38184 Vertex 14718 1.32816 19.8531 3.43239 Vertex 14719 1.50062 19.867 3.37385 Vertex 14720 1.34817 19.7946 3.44954 Vertex 14721 1.18896 19.7509 3.47996 Vertex 14722 1.03705 19.6798 3.47807 Vertex 14723 1.05816 19.6371 3.49276 Vertex 14724 0.9135 19.5574 3.48038 Vertex 14725 0.806971 19.4275 3.48148 Vertex 14726 0.777172 19.4521 3.46267 Vertex 14727 0.716218 19.584 3.6105 Vertex 14728 0.718072 19.7428 3.82908 Vertex 14729 0.873832 19.7177 3.73676 Vertex 14730 0.752216 19.4802 3.47604 Vertex 14731 0.875558 19.6193 3.55587 Vertex 14732 1.02275 19.7416 3.65308 Vertex 14733 1.04053 19.8517 3.80833 Vertex 14734 1.19666 19.8874 3.70825 Vertex 14735 1.02281 19.7062 3.50065 Vertex 14736 1.17276 19.814 3.55381 Vertex 14737 1.3529 19.9431 3.57904 Vertex 14738 1.4108 20.0453 3.7021 Vertex 14739 1.59763 20.0868 3.54677 Vertex 14740 1.32377 19.8976 3.44891 Vertex 14741 1.51962 19.9857 3.42607 Vertex 14742 1.80297 20.0662 3.37269 Vertex 14743 1.88784 20.2517 3.43712 Vertex 14744 2.0923 20.1888 3.22653 Vertex 14745 1.69614 19.9469 3.26164 Vertex 14746 1.95996 19.9563 3.17501 Vertex 14747 2.20545 20.0013 3.02629 Vertex 14748 2.32025 20.3082 2.90756 Vertex 14749 2.40541 20.0552 2.72484 Vertex 14750 2.04266 19.8036 2.98863 Vertex 14751 2.24387 19.7768 2.84716 Vertex 14752 2.45526 19.7481 2.61937 Vertex 14753 2.5934 20.0485 2.34495 Vertex 14754 2.63923 19.7029 2.28772 Vertex 14755 2.28348 19.5728 2.7031 Vertex 14756 2.4483 19.5158 2.55036 Vertex 14757 2.58977 19.4767 2.35398 Vertex 14758 2.76979 19.6809 1.95273 Vertex 14759 2.73134 19.4535 2.05871 Vertex 14760 2.40465 19.4163 2.55425 Vertex 14761 2.49977 19.3599 2.46569 Vertex 14762 2.85314 19.4509 1.75725 Vertex 14763 2.78134 19.3099 1.99144 Vertex 14764 2.68115 19.1819 2.29711 Vertex 14765 2.54784 19.1195 2.57609 Vertex 14766 2.4023 19.3659 2.56544 Vertex 14767 2.92757 19.1747 1.70394 Vertex 14768 2.90662 18.9685 1.98373 Vertex 14769 2.45194 18.843 3.07826 Vertex 14770 2.69249 18.8195 2.66501 Vertex 14771 2.508 18.0068 3.24123 Vertex 14772 2.49947 18.2522 3.24294 Vertex 14773 2.51803 17.7883 3.15915 Vertex 14774 2.69899 18.0924 2.95441 Vertex 14775 2.72123 18.3051 2.89926 Vertex 14776 2.48346 18.5477 3.18144 Vertex 14777 2.72859 18.5493 2.7953 Vertex 14778 2.87712 18.3077 2.51646 Vertex 14779 2.90967 18.5111 2.36268 Vertex 14780 2.90342 18.7497 2.21348 Vertex 14781 2.99371 18.4735 1.96426 Vertex 14782 3.02037 18.6999 1.83625 Vertex 14783 3.01996 18.8931 1.66311 Vertex 14784 2.99147 18.4787 1.64472 Vertex 14785 3.03811 18.7395 1.57684 Vertex 14786 2.35312 20.4973 2.89916 Vertex 14787 2.49584 20.3864 2.56212 Vertex 14788 2.72134 20.0193 1.99144 Vertex 14789 2.62893 20.3698 2.23701 Vertex 14790 2.83883 19.7125 1.64875 Vertex 14791 2.79824 20.0093 1.67871 Vertex 14792 2.90842 19.4279 1.51268 Vertex 14793 2.88345 19.7254 1.36625 Vertex 14794 2.99259 19.096 1.4332 Vertex 14795 2.94821 19.3836 1.25124 Vertex 14796 3.02263 18.9646 1.41539 Vertex 14797 3.00517 18.8798 1.33654 Vertex 14798 2.96203 18.5445 1.3796 Vertex 14799 2.99473 19.0043 1.10845 Vertex 14800 2.96427 18.6689 1.1728 Vertex 14801 3.01274 17.5177 0.183616 Vertex 14802 3.0085 17.7293 0.134765 Vertex 14803 2.94215 17.6385 0.0352012 Vertex 14804 2.9867 17.4026 0.138783 Vertex 14805 2.90136 17.6514 -0.114406 Vertex 14806 2.88731 17.2705 -0.0906247 Vertex 14807 2.42889 17.332 -1.30526 Vertex 14808 2.58779 17.4583 -0.938367 Vertex 14809 2.60085 17.8129 -0.950709 Vertex 14810 2.43898 17.7073 -1.29632 Vertex 14811 2.86108 18.1794 1.45674 Vertex 14812 2.90071 18.3431 1.31382 Vertex 14813 2.87349 18.2682 1.29226 Vertex 14814 2.82679 18.0391 1.37128 Vertex 14815 2.89089 18.1308 1.16116 Vertex 14816 2.83901 17.8657 1.21265 Vertex 14817 2.91272 17.9957 1.03376 Vertex 14818 2.87071 17.7322 1.08728 Vertex 14819 2.94921 17.7649 0.836295 Vertex 14820 2.94048 17.3766 0.753702 Vertex 14821 3.00366 17.4605 0.461922 Vertex 14822 3.00433 17.1618 0.390089 Vertex 14823 3.01688 17.3923 0.220439 Vertex 14824 2.92768 17.0308 0.0957077 Vertex 14825 2.78186 16.8599 -0.224952 Vertex 14826 2.75641 17.1647 -0.374785 Vertex 14827 2.60593 16.7849 -0.538501 Vertex 14828 2.61149 17.1292 -0.794769 Vertex 14829 2.46748 16.9471 -1.17927 Vertex 14830 2.21374 17.2782 -1.62483 Vertex 14831 2.84655 21.3137 -1.48834 Vertex 14832 2.96412 21.4149 -1.21746 Vertex 14833 3.04603 21.1331 -1.03214 Vertex 14834 3.04444 21.3821 -0.83862 Vertex 14835 3.07405 21.0703 -0.655407 Vertex 14836 3.09471 21.2821 -0.342181 Vertex 14837 3.08882 21.004 -0.307686 Vertex 14838 3.09197 21.1425 -0.0960177 Vertex 14839 3.09922 20.8438 0.0265117 Vertex 14840 3.05489 20.7724 0.429799 Vertex 14841 3.02758 20.3835 0.631758 Vertex 14842 2.91602 20.2357 0.946214 Vertex 14843 2.94507 20.0247 0.955452 Vertex 14844 2.9037 19.9617 1.14562 Vertex 14845 2.95114 19.9538 0.97589 Vertex 14846 2.93464 19.7294 1.11637 Vertex 14847 2.98478 19.6862 0.935796 Vertex 14848 2.99134 19.345 1.02026 Vertex 14849 3.0382 19.2449 0.885032 Vertex 14850 3.03609 19.0178 0.952061 Vertex 14851 1.8677 15.8741 3.01885 Vertex 14852 2.05173 15.9289 2.86539 Vertex 14853 2.00426 16.0794 2.90573 Vertex 14854 0.47783 17.9447 4.28198 Vertex 14855 0.500789 17.9404 4.18358 Vertex 14856 0.397667 17.9729 4.22456 Vertex 14857 1.18888 19.5329 2.77556 Vertex 14858 1.39964 19.6287 2.73485 Vertex 14859 1.64218 19.6278 2.62467 Vertex 14860 1.86291 19.5264 2.47697 Vertex 14861 1.99 19.4356 2.38857 Vertex 14862 2.0219 19.3777 2.36722 Vertex 14863 1.96122 19.3107 2.44596 Vertex 14864 1.80206 19.2411 2.6109 Vertex 14865 1.5211 19.2032 2.74492 Vertex 14866 1.16033 19.2406 2.79002 Vertex 14867 0.970601 19.3068 2.78107 Vertex 14868 1.02714 19.4024 2.78077 Vertex 14869 1.01975 19.0564 3.50725 Vertex 14870 1.0123 19.1126 3.51818 Vertex 14871 2.24322 19.5128 2.74638 Vertex 14872 2.20794 19.4818 2.84613 Vertex 14873 1.26964 19.1454 3.11782 Vertex 14874 0.827108 19.2339 3.09928 Vertex 14875 0.774478 19.3153 3.08458 Vertex 14876 0.965608 19.4893 3.09197 Vertex 14877 1.21197 19.6562 3.08371 Vertex 14878 1.51826 19.7391 2.99775 Vertex 14879 1.82605 19.6458 2.80211 Vertex 14880 2.06847 19.4806 2.61461 Vertex 14881 2.15147 19.4065 2.55161 Vertex 14882 2.15867 19.3299 2.56012 Vertex 14883 2.01096 19.2416 2.77079 Vertex 14884 1.75207 19.1527 2.99185 Vertex 14885 1.20374 19.6957 3.47632 Vertex 14886 0.942988 19.5178 3.48207 Vertex 14887 0.741603 19.3226 3.47213 Vertex 14888 0.796468 19.2117 3.48085 Vertex 14889 1.29316 19.0857 3.52435 Vertex 14890 1.81133 19.0796 3.4135 Vertex 14891 2.09655 19.1875 3.16727 Vertex 14892 2.22646 19.3161 2.88292 Vertex 14893 2.21415 19.414 2.8551 Vertex 14894 2.1022 19.526 2.96034 Vertex 14895 1.67848 19.8805 3.25572 Vertex 14896 0.670389 19.3635 3.44991 Vertex 14897 0.644491 19.3232 3.44598 Vertex 14898 0.67938 19.3582 3.45125 Vertex 14899 2.32739 19.4341 2.63024 Vertex 14900 2.35998 19.3989 2.59182 Vertex 14901 2.37255 19.4021 2.5829 Vertex 14902 2.33728 19.4498 2.61463 Vertex 14903 0.888143 19.5895 3.46513 Vertex 14904 0.76549 19.4611 3.45469 Vertex 14905 0.895226 19.5816 3.4638 Vertex 14906 1.16993 19.7967 3.46869 Vertex 14907 1.02802 19.6942 3.47227 Vertex 14908 1.17498 19.7835 3.46681 Vertex 14909 1.48617 19.9358 3.35281 Vertex 14910 1.32056 19.8751 3.42608 Vertex 14911 1.48626 19.9135 3.35438 Vertex 14912 1.86577 19.8603 3.11625 Vertex 14913 1.67725 19.909 3.2456 Vertex 14914 1.86231 19.8369 3.12224 Vertex 14915 2.14003 19.6601 2.84559 Vertex 14916 2.01241 19.7579 2.98501 Vertex 14917 2.13548 19.6384 2.8552 Vertex 14918 2.24908 19.5336 2.71855 Vertex 14919 2.85322 20.0287 1.51652 Vertex 14920 0.442161 19.9562 3.99106 Vertex 14921 0.310131 17.9102 4.23119 Vertex 14922 0.338851 17.9544 4.23417 Vertex 14923 0.330696 17.8708 4.18443 Vertex 14924 0.42423 17.8822 4.12727 Vertex 14925 0.554824 17.8857 4.09301 Vertex 14926 0.409269 17.9573 4.37322 Vertex 14927 0.529794 17.9387 4.36545 Vertex 14928 0.596933 17.9055 4.27696 Vertex 14929 0.692498 17.8511 4.16508 Vertex 14930 0.719748 17.8209 4.1204 Vertex 14931 0.670793 17.8461 4.11129 Vertex 14932 0.560968 17.9119 4.12737 Vertex 14933 0.619323 17.8895 4.19454 Vertex 14934 0.686265 17.8762 4.23612 Vertex 14935 0.339099 17.9603 4.33119 Vertex 14936 0.361625 17.9547 4.50096 Vertex 14937 0.792609 18.1124 3.82374 Vertex 14938 0.804936 18.0708 3.87775 Vertex 14939 0.7574 18.1699 3.85109 Vertex 14940 0.274584 18.6483 4.61641 Vertex 14941 0.434168 18.528 4.36651 Vertex 14942 0.559183 18.4244 4.07796 Vertex 14943 0.627091 18.3913 4.00738 Vertex 14944 0.66292 18.3517 3.95823 Vertex 14945 0.665702 18.3152 3.91416 Vertex 14946 0.692499 18.2663 3.86286 Vertex 14947 0.678995 18.2868 3.88509 Vertex 14948 0.312876 18.306 4.8075 Vertex 14949 0.486351 18.2495 4.53331 Vertex 14950 0.566163 18.221 4.38104 Vertex 14951 0.741403 18.1537 4.23776 Vertex 14952 0.846649 18.0325 4.09021 Vertex 14953 0.850552 17.9011 3.97751 Vertex 14954 0.94688 17.8236 3.884 Vertex 14955 0.861382 17.8766 3.93733 Vertex 14956 1.07932 17.5028 3.90106 Vertex 14957 1.13266 17.2578 3.87019 Vertex 14958 0.215619 17.782 4.50154 Vertex 14959 0.309747 17.9409 4.64701 Vertex 14960 0.451189 17.9688 4.48146 Vertex 14961 0.654025 17.9285 4.32472 Vertex 14962 0.74271 17.8484 4.17301 Vertex 14963 0.744112 18.193 3.88842 Vertex 14964 0.599075 18.3921 3.91342 Vertex 14965 0.847302 17.9492 3.91838 Vertex 14966 0.830213 17.834 3.99462 Vertex 14967 1.76849 17.3707 3.35673 Vertex 14968 0.767008 18.1717 3.81979 Vertex 14969 0.83233 18.0981 3.79847 Vertex 14970 1.51158 17.5814 3.50729 Vertex 14971 1.0772 17.9379 3.7304 Vertex 14972 1.87573 17.2068 3.24711 Vertex 14973 1.87852 17.1659 3.21581 Vertex 14974 1.96111 17.0789 3.17112 Vertex 14975 0.611742 18.3861 3.89495 Vertex 14976 0.568942 18.4621 3.91193 Vertex 14977 1.91532 16.0548 2.96034 Vertex 14978 1.96616 16.1835 2.9438 Vertex 14979 2.06567 16.6917 3.03259 Vertex 14980 1.65359 17.2545 3.31621 Vertex 14981 0.514569 17.1187 4.21905 Vertex 14982 0.930525 17.1778 4.03116 Vertex 14983 0.434713 15.8941 4.09221 Vertex 14984 0.86289 15.8546 3.91745 Vertex 14985 1.33055 15.7967 3.58848 Vertex 14986 1.70739 15.8017 3.18554 Vertex 14987 1.32415 17.2339 3.65082 Vertex 14988 2.38773 17.4094 3.15064 Vertex 14989 2.32369 17.1035 3.08572 Vertex 14990 0.384459 15.29 3.89713 Vertex 14991 0.764666 15.2985 3.79518 Vertex 14992 0.74045 19.1521 3.44074 Vertex 14993 0.639968 19.1937 3.41641 Vertex 14994 0.631577 19.1842 3.41788 Vertex 14995 0.731838 19.1324 3.43766 Vertex 14996 1.90469 18.8149 3.53725 Vertex 14997 1.35037 18.9048 3.55323 Vertex 14998 1.67892 18.8513 3.55475 Vertex 14999 1.9895 18.8198 3.52269 Vertex 15000 1.90491 18.8373 3.53145 Vertex 15001 1.01012 19.0328 3.49764 Vertex 15002 1.36603 18.9252 3.55413 Vertex 15003 2.59012 18.1686 -1.20962 Vertex 15004 2.63622 18.4988 -1.46353 Vertex 15005 2.7986 19.0319 -1.55654 Vertex 15006 2.98547 19.6581 -1.44743 Vertex 15007 3.08471 20.0597 -1.12094 Vertex 15008 3.12952 20.2571 -0.678932 Vertex 15009 3.12046 20.2729 -0.260185 Vertex 15010 3.06776 20.1136 -0.0234783 Vertex 15011 3.04117 19.7934 0.047987 Vertex 15012 3.00828 19.3523 0.095856 Vertex 15013 2.99805 18.9681 0.098531 Vertex 15014 2.99575 18.6561 0.069236 Vertex 15015 2.98915 18.391 0.041502 Vertex 15016 2.97968 18.16 0.0309827 Vertex 15017 3.01178 21.0874 -1.15844 Vertex 15018 3.07247 21.0104 -0.943615 Vertex 15019 3.09323 20.9302 -0.431596 Vertex 15020 3.10105 20.8827 -0.260874 Vertex 15021 2.99632 20.0904 0.820833 Vertex 15022 2.98512 19.9246 0.895204 Vertex 15023 2.92359 18.4228 1.21358 Vertex 15024 2.90742 18.3019 1.20377 Vertex 15025 2.94285 18.1048 1.01246 Vertex 15026 2.95667 18.0132 0.932062 Vertex 15027 3.03592 17.4946 0.274719 Vertex 15028 1.13005 22.5417 -2.4899 Vertex 15029 1.65807 22.2691 -2.37495 Vertex 15030 2.55017 21.5371 -1.91516 Vertex 15031 3.11066 20.6072 0.292614 Vertex 15032 3.0336 19.5023 0.853379 Vertex 15033 3.07659 19.0801 0.850452 Vertex 15034 3.01932 18.8336 1.03332 Vertex 15035 3.00368 17.6614 0.606983 Vertex 15036 2.88653 17.5731 -0.275474 Vertex 15037 2.73185 17.4102 -0.516003 Vertex 15038 2.99984 18.0126 -0.0819877 Vertex 15039 3.06016 18.7888 -0.101732 Vertex 15040 3.06536 18.969 -0.0427452 Vertex 15041 3.02801 18.509 -0.0896085 Vertex 15042 3.0141 18.2234 -0.0616063 Vertex 15043 2.71172 17.6217 -0.648514 Vertex 15044 3.06343 19.2392 0.055809 Vertex 15045 2.73873 18.8018 -1.36903 Vertex 15046 2.87572 19.3102 -1.40071 Vertex 15047 2.96546 19.5844 -1.37169 Vertex 15048 3.03729 19.8541 -1.25778 Vertex 15049 3.14953 20.1293 -0.921657 Vertex 15050 2.65982 18.3918 -1.18016 Vertex 15051 2.67369 18.0975 -0.929725 Vertex 15052 2.73715 17.8361 -0.717224 Vertex 15053 3.23303 20.2439 -0.565702 Vertex 15054 3.24846 20.2474 -0.440129 Vertex 15055 3.16014 20.129 -0.143211 Vertex 15056 3.1299 19.9611 -0.0453375 Vertex 15057 3.10142 19.6239 0.0486945 Vertex 15058 1.51867 19.7456 3.3657 Vertex 15059 1.82826 19.6519 3.16851 Vertex 15060 1.20978 19.6617 3.45292 Vertex 15061 0.961829 19.4938 3.4612 Vertex 15062 0.769132 19.3163 3.4538 Vertex 15063 0.822759 19.2294 3.46802 Vertex 15064 1.26925 19.1399 3.48761 Vertex 15065 1.75514 19.1481 3.36152 Vertex 15066 2.01619 19.2379 3.13867 Vertex 15067 2.16548 19.3273 2.92285 Vertex 15068 2.15527 19.4099 2.91424 Vertex 15069 2.07125 19.486 2.97898 Vertex 15070 -1.82826 19.6519 3.16851 Vertex 15071 -1.51867 19.7456 3.3657 Vertex 15072 -2.07125 19.486 2.97898 Vertex 15073 -2.15527 19.4099 2.91423 Vertex 15074 -2.16548 19.3273 2.92285 Vertex 15075 -2.01619 19.2379 3.13867 Vertex 15076 -1.75515 19.1481 3.36152 Vertex 15077 -1.26925 19.1399 3.48761 Vertex 15078 -0.822759 19.2294 3.46802 Vertex 15079 -0.769132 19.3163 3.4538 Vertex 15080 -0.961829 19.4938 3.4612 Vertex 15081 -1.20978 19.6617 3.45292 Vertex 15082 1.67452 19.7128 3.18007 Vertex 15083 1.68163 19.732 3.28103 Vertex 15084 1.35861 19.7344 3.4322 Vertex 15085 1.35949 19.7168 3.32634 Vertex 15086 1.07518 19.5936 3.47312 Vertex 15087 1.08195 19.5799 3.36592 Vertex 15088 0.840644 19.4037 3.46626 Vertex 15089 0.852445 19.3959 3.35975 Vertex 15090 0.740184 19.2655 3.46504 Vertex 15091 0.754599 19.2689 3.36061 Vertex 15092 1.01261 19.1681 3.49749 Vertex 15093 1.01661 19.184 3.39035 Vertex 15094 1.54116 19.1119 3.45865 Vertex 15095 1.52719 19.1343 3.34476 Vertex 15096 1.93016 19.1712 3.27288 Vertex 15097 1.9031 19.1906 3.16115 Vertex 15098 2.12965 19.2749 3.01543 Vertex 15099 2.10142 19.2858 2.92152 Vertex 15100 2.19285 19.3694 2.88615 Vertex 15101 2.17019 19.3709 2.80827 Vertex 15102 2.14159 19.448 2.92598 Vertex 15103 2.12435 19.4387 2.84275 Vertex 15104 1.97453 19.5793 3.06428 Vertex 15105 1.96218 19.5622 2.96977 Vertex 15106 -1.67452 19.7128 3.18007 Vertex 15107 -1.68163 19.732 3.28103 Vertex 15108 -1.97453 19.5793 3.06428 Vertex 15109 -1.96218 19.5622 2.96977 Vertex 15110 -2.14158 19.448 2.92598 Vertex 15111 -2.12435 19.4387 2.84275 Vertex 15112 -2.19285 19.3694 2.88615 Vertex 15113 -2.17019 19.3709 2.80827 Vertex 15114 -2.12964 19.2749 3.01543 Vertex 15115 -2.10142 19.2858 2.92152 Vertex 15116 -1.93016 19.1712 3.27287 Vertex 15117 -1.9031 19.1906 3.16115 Vertex 15118 -1.54116 19.1119 3.45865 Vertex 15119 -1.52719 19.1343 3.34476 Vertex 15120 -1.01261 19.1681 3.49749 Vertex 15121 -1.01661 19.184 3.39035 Vertex 15122 -0.740184 19.2655 3.46504 Vertex 15123 -0.754599 19.2689 3.36061 Vertex 15124 -0.840644 19.4037 3.46625 Vertex 15125 -0.852445 19.3959 3.35975 Vertex 15126 -1.07518 19.5936 3.47312 Vertex 15127 -1.08195 19.5799 3.36592 Vertex 15128 -1.35861 19.7344 3.4322 Vertex 15129 -1.35949 19.7168 3.32634 Vertex 15130 -1.48234 15.6626 -2.38541 Vertex 15131 -2.13329 15.1847 -1.71134 Vertex 15132 -1.88596 14.866 -2.24049 Vertex 15133 -2.39465 14.6409 -0.811509 Vertex 15134 -2.34942 14.3339 -1.40601 Vertex 15135 -2.24755 14.3876 -0.311454 Vertex 15136 -2.32109 13.9153 -0.673208 Vertex 15137 -2.11223 14.294 0.006997 Vertex 15138 -2.15523 13.7703 -0.304927 Vertex 15139 -1.86906 14.1685 0.376029 Vertex 15140 -1.98082 13.6707 0.026615 Vertex 15141 -1.45283 14.036 0.760306 Vertex 15142 -1.68474 13.5368 0.419015 Vertex 15143 -0.602182 13.9205 0.999164 Vertex 15144 -1.01978 13.4079 0.746311 Vertex 15145 -0.007328 13.8771 1.04666 Vertex 15146 -0.267034 13.3235 0.882667 Vertex 15147 0.578485 13.9205 0.999164 Vertex 15148 0.277086 13.3235 0.882667 Vertex 15149 1.39487 14.036 0.760305 Vertex 15150 1.0324 13.4079 0.746311 Vertex 15151 1.77745 14.1685 0.376029 Vertex 15152 1.67426 13.5368 0.419015 Vertex 15153 2.02029 14.294 0.006997 Vertex 15154 1.94423 13.6707 0.026615 Vertex 15155 2.17769 14.3876 -0.311454 Vertex 15156 2.11874 13.7703 -0.304927 Vertex 15157 2.39461 14.6409 -0.811509 Vertex 15158 2.30539 13.9153 -0.673208 Vertex 15159 2.28596 15.1847 -1.71134 Vertex 15160 2.42077 14.3339 -1.40601 Vertex 15161 1.66153 15.6626 -2.38541 Vertex 15162 2.05155 14.8659 -2.24049 Vertex 15163 0.72086 16.1311 -2.81762 Vertex 15164 1.20647 15.3417 -2.79643 Vertex 15165 0.0165675 16.3801 -2.9068 Vertex 15166 0.357759 15.7407 -3.05136 Vertex 15167 -0.639709 16.1311 -2.81762 Vertex 15168 -0.292695 15.7407 -3.05136 Vertex 15169 -1.06826 15.3417 -2.79643 Vertex 15170 -1.57503 14.6297 -2.69224 Vertex 15171 -2.21584 14.1518 -2.01817 Vertex 15172 -2.02104 13.9825 -2.53705 Vertex 15173 -2.40207 13.608 -1.11833 Vertex 15174 -2.42248 13.4503 -1.70257 Vertex 15175 -2.2244 13.3547 -0.618279 Vertex 15176 -2.36023 13.0318 -0.969768 Vertex 15177 -2.09296 13.261 -0.299829 Vertex 15178 -2.20059 12.8868 -0.601489 Vertex 15179 -1.85848 13.1355 0.0692037 Vertex 15180 -2.04263 12.7872 -0.269946 Vertex 15181 -1.45472 13.0031 0.45348 Vertex 15182 -1.76712 12.6533 0.122454 Vertex 15183 -0.600551 12.8876 0.692338 Vertex 15184 -1.08926 12.5244 0.44975 Vertex 15185 0.0149845 12.8442 0.73984 Vertex 15186 -0.280056 12.4399 0.586106 Vertex 15187 0.637158 12.8876 0.692338 Vertex 15188 0.32377 12.4399 0.586106 Vertex 15189 1.51025 13.0031 0.45348 Vertex 15190 1.15513 12.5244 0.44975 Vertex 15191 1.89715 13.1355 0.069204 Vertex 15192 1.84982 12.6533 0.122453 Vertex 15193 2.11558 13.261 -0.299829 Vertex 15194 2.11764 12.7872 -0.269946 Vertex 15195 2.2459 13.3547 -0.618279 Vertex 15196 2.26977 12.8868 -0.601489 Vertex 15197 2.44232 13.608 -1.11833 Vertex 15198 2.42654 13.0318 -0.969768 Vertex 15199 2.33286 14.1518 -2.01817 Vertex 15200 2.50563 13.4503 -1.70257 Vertex 15201 1.72282 14.6297 -2.69224 Vertex 15202 2.14088 13.9824 -2.53705 Vertex 15203 0.757939 15.0982 -3.12444 Vertex 15204 1.28792 14.4581 -3.09299 Vertex 15205 0.0361962 15.3472 -3.21362 Vertex 15206 0.395635 14.8572 -3.34792 Vertex 15207 -0.661357 15.0982 -3.12444 Vertex 15208 -0.309011 14.8572 -3.34792 Vertex 15209 -1.17759 14.4581 -3.09299 Vertex 15210 -1.74818 13.8079 -2.98904 Vertex 15211 -2.3653 13.33 -2.31497 Vertex 15212 -2.19287 13.2694 -2.80306 Vertex 15213 -2.50752 12.7861 -1.41513 Vertex 15214 -2.56396 12.7373 -1.96859 Vertex 15215 -2.33626 12.5329 -0.915073 Vertex 15216 -2.50088 12.3187 -1.23578 Vertex 15217 -2.22081 12.4392 -0.596624 Vertex 15218 -2.35087 12.1737 -0.867502 Vertex 15219 -2.00583 12.3137 -0.22759 Vertex 15220 -2.20548 12.0741 -0.53596 Vertex 15221 -1.60446 12.1813 0.156687 Vertex 15222 -1.93795 11.9403 -0.14356 Vertex 15223 -0.674713 12.0657 0.395544 Vertex 15224 -1.21683 11.8113 0.183736 Vertex 15225 0.0214893 12.0223 0.443045 Vertex 15226 -0.320253 11.7268 0.320092 Vertex 15227 0.725383 12.0658 0.395544 Vertex 15228 0.359568 11.7269 0.320092 Vertex 15229 1.68797 12.1812 0.156687 Vertex 15230 1.28051 11.8113 0.183736 Vertex 15231 2.09431 12.3137 -0.22759 Vertex 15232 2.02395 11.9403 -0.14356 Vertex 15233 2.30803 12.4392 -0.596624 Vertex 15234 2.29096 12.0741 -0.53596 Vertex 15235 2.4223 12.5329 -0.915073 Vertex 15236 2.43586 12.1737 -0.867502 Vertex 15237 2.59113 12.7861 -1.41513 Vertex 15238 2.58521 12.3187 -1.23578 Vertex 15239 2.45683 13.33 -2.31497 Vertex 15240 2.64792 12.7373 -1.96859 Vertex 15241 1.84523 13.8079 -2.98903 Vertex 15242 2.27845 13.2694 -2.80306 Vertex 15243 0.837562 14.2763 -3.42123 Vertex 15244 1.39971 13.7451 -3.35901 Vertex 15245 0.0439853 14.5253 -3.51042 Vertex 15246 0.438529 14.1441 -3.61394 Vertex 15247 -0.74787 14.2763 -3.42123 Vertex 15248 -0.352852 14.1441 -3.61394 Vertex 15249 -1.31277 13.7451 -3.35901 Vertex 15250 -1.84202 13.3855 -3.15175 Vertex 15251 -2.46046 12.9076 -2.47767 Vertex 15252 -1.63187 12.9801 -2.50319 Vertex 15253 -2.59644 12.3638 -1.57784 Vertex 15254 -1.92807 12.6136 -1.9207 Vertex 15255 -2.42908 12.1105 -1.07778 Vertex 15256 -1.9225 12.312 -1.39106 Vertex 15257 -2.31954 12.0168 -0.759334 Vertex 15258 -1.82527 12.1793 -1.08555 Vertex 15259 -2.10916 11.8913 -0.390301 Vertex 15260 -1.69648 12.0771 -0.806697 Vertex 15261 -1.70224 11.7589 -0.00602375 Vertex 15262 -1.46085 11.9594 -0.500504 Vertex 15263 -0.726125 11.6434 0.232833 Vertex 15264 -0.914293 11.8541 -0.251666 Vertex 15265 0.018384 11.5999 0.280335 Vertex 15266 -0.24225 11.7883 -0.143165 Vertex 15267 0.771057 11.6434 0.232833 Vertex 15268 0.293522 11.7883 -0.143165 Vertex 15269 1.78177 11.7589 -0.00602375 Vertex 15270 0.981593 11.8541 -0.251666 Vertex 15271 2.19407 11.8913 -0.390301 Vertex 15272 1.54308 11.9594 -0.500504 Vertex 15273 2.40391 12.0168 -0.759334 Vertex 15274 1.7791 12.0771 -0.806696 Vertex 15275 2.51303 12.1105 -1.07778 Vertex 15276 1.9083 12.1793 -1.08555 Vertex 15277 2.67963 12.3638 -1.57784 Vertex 15278 2.00587 12.312 -1.39106 Vertex 15279 2.5442 12.9076 -2.47767 Vertex 15280 2.01193 12.6135 -1.9207 Vertex 15281 1.92764 13.3855 -3.15175 Vertex 15282 1.71705 12.9801 -2.50319 Vertex 15283 0.886875 13.8539 -3.58395 Vertex 15284 1.07173 13.3021 -2.89493 Vertex 15285 0.0424565 14.1029 -3.67313 Vertex 15286 0.352105 13.5645 -3.07755 Vertex 15287 -0.801476 13.854 -3.58395 Vertex 15288 -0.266664 13.5645 -3.07755 Vertex 15289 -0.985734 13.3022 -2.89493 Vertex 15290 -2.9327 17.7384 -0.304821 Vertex 15291 -3.1269 18.7716 -0.257944 Vertex 15292 -3.18458 19.3432 -0.00905975 Vertex 15293 -3.24006 19.663 -0.00110175 Vertex 15294 -3.34285 19.3795 -0.132736 Vertex 15295 -3.26964 19.127 -0.238668 Vertex 15296 -3.41422 19.6667 -0.134648 Vertex 15297 -3.49639 19.9096 -0.304402 Vertex 15298 -3.2516 19.2266 -0.424968 Vertex 15299 -3.15705 19.0898 -0.531983 Vertex 15300 -3.33579 19.4055 -0.334377 Vertex 15301 -3.42147 19.6207 -0.324858 Vertex 15302 -3.47 19.7731 -0.440203 Vertex 15303 -3.51671 20.0233 -0.598812 Vertex 15304 -3.46621 19.8074 -0.630458 Vertex 15305 -3.50345 19.9473 -0.935171 Vertex 15306 -3.45952 19.7496 -0.858855 Vertex 15307 -3.46371 19.6955 -1.20726 Vertex 15308 -3.43195 19.5874 -1.02454 Vertex 15309 -3.3988 19.2944 -1.30247 Vertex 15310 -3.38841 19.2713 -1.10707 Vertex 15311 -3.33153 18.8145 -1.21886 Vertex 15312 -3.31814 18.9002 -1.06393 Vertex 15313 -3.25515 18.4763 -1.05764 Vertex 15314 -3.24359 18.5899 -0.874828 Vertex 15315 -3.19094 18.4615 -0.48375 Vertex 15316 -3.2036 18.5802 -0.612104 Vertex 15317 -3.10937 18.6739 -0.411694 Vertex 15318 -3.08431 18.769 -0.489584 Vertex 15319 -3.24068 18.7792 -0.755787 Vertex 15320 -3.28003 18.9366 -0.979806 Vertex 15321 -3.32306 19.2664 -0.986642 Vertex 15322 -3.34847 19.4521 -0.779394 Vertex 15323 -3.31377 19.5219 -0.903712 Vertex 15324 -3.32175 19.5842 -0.683989 Vertex 15325 -3.32523 19.6531 -0.798501 Vertex 15326 -3.31799 19.7054 -0.625793 Vertex 15327 -3.28799 19.5348 -0.579836 Vertex 15328 -3.21204 19.4855 -0.461854 Vertex 15329 -3.31024 19.3181 -0.72292 Vertex 15330 -3.15221 19.3144 -0.560064 Vertex 15331 -3.1643 17.9115 -0.40018 Vertex 15332 -3.29585 19.1419 -0.863951 Vertex 15333 -3.0741 19.1382 -0.778086 Vertex 15334 -3.29311 19.7795 -1.29877 Vertex 15335 -3.26981 19.2995 -1.39846 Vertex 15336 -3.20929 18.7848 -1.31834 Vertex 15337 -3.11185 18.4273 -1.14807 Vertex 15338 -3.11525 17.8387 -0.722145 Vertex 15339 -2.91843 18.2023 -0.852494 Vertex 15340 -2.94769 18.4915 -1.04613 Vertex 15341 -3.00776 18.8275 -1.20656 Vertex 15342 -2.82735 18.8522 -1.22165 Vertex 15343 -3.05502 19.2732 -1.27841 Vertex 15344 -2.96395 18.346 1.84429 Vertex 15345 -2.82525 18.0358 1.66001 Vertex 15346 -2.74296 17.8915 2.10856 Vertex 15347 -2.87891 18.191 2.39258 Vertex 15348 -2.76181 17.8326 1.53248 Vertex 15349 -2.61807 17.6064 1.87143 Vertex 15350 -2.75481 17.6681 1.38969 Vertex 15351 -2.59136 17.4095 1.68973 Vertex 15352 -2.8034 17.4963 1.21984 Vertex 15353 -2.67101 17.1648 1.43007 Vertex 15354 -2.90583 17.144 0.878872 Vertex 15355 -2.80474 16.8516 1.08408 Vertex 15356 -2.99679 16.885 0.514873 Vertex 15357 -2.90153 16.7016 0.180622 Vertex 15358 -2.7971 16.2126 0.419942 Vertex 15359 -2.71884 16.5144 -0.166824 Vertex 15360 -2.60787 15.9535 0.0823893 Vertex 15361 -2.47279 16.4462 -0.502583 Vertex 15362 -2.26358 16.7008 -1.25794 Vertex 15363 -2.1672 16.2015 -1.38246 Vertex 15364 -2.10799 15.6929 -1.56843 Vertex 15365 -2.37979 15.1704 -0.64247 Vertex 15366 -1.9514 17.0814 -1.7406 Vertex 15367 -1.67437 16.6894 -1.99518 Vertex 15368 -1.49121 16.1746 -2.23656 Vertex 15369 -2.83182 21.7899 -1.31606 Vertex 15370 -2.21651 22.6928 -1.39051 Vertex 15371 -2.99195 21.7607 -0.720062 Vertex 15372 -2.65212 22.6018 -0.344693 Vertex 15373 -3.07222 21.6142 -0.205129 Vertex 15374 -2.78421 22.2557 0.385499 Vertex 15375 -3.06806 21.3934 0.105809 Vertex 15376 -2.8183 21.9206 0.798733 Vertex 15377 -3.00771 20.9529 0.597554 Vertex 15378 -2.80413 21.465 1.20365 Vertex 15379 -2.8583 20.4003 1.08471 Vertex 15380 -2.71576 20.9144 1.5407 Vertex 15381 -2.69169 20.4772 1.73566 Vertex 15382 -1.49092 23.1363 -1.27559 Vertex 15383 -1.98402 23.1725 0.168084 Vertex 15384 -1.09002 23.4201 0.704946 Vertex 15385 -2.11934 22.7598 1.2519 Vertex 15386 -1.27149 22.9213 1.84623 Vertex 15387 -2.19789 22.3446 1.75404 Vertex 15388 -2.2631 21.898 2.07433 Vertex 15389 -1.61967 21.9457 2.72159 Vertex 15390 -2.33248 21.3972 2.30089 Vertex 15391 -1.78905 21.4358 2.96833 Vertex 15392 -2.39356 21.0056 2.44346 Vertex 15393 -1.94968 20.9979 3.08909 Vertex 15394 -1.54006 20.839 3.40743 Vertex 15395 -1.44248 21.2867 3.23668 Vertex 15396 -1.26919 21.824 2.97669 Vertex 15397 -1.15684 20.6097 3.73852 Vertex 15398 -1.08361 21.0466 3.50307 Vertex 15399 -0.854909 21.6107 3.19909 Vertex 15400 -0.799816 20.39 3.95063 Vertex 15401 -0.712369 20.7226 3.80606 Vertex 15402 -0.498268 21.3969 3.42429 Vertex 15403 -0.376696 20.0359 3.99556 Vertex 15404 -0.397089 20.5058 3.88916 Vertex 15405 0.0752675 22.0984 2.99069 Vertex 15406 -0.155088 20.0903 4.0222 Vertex 15407 -0.200427 20.4782 3.94029 Vertex 15408 -0.537195 22.9301 2.16137 Vertex 15409 -0.490881 23.4975 0.982504 Vertex 15410 -2.13695 15.805 2.75493 Vertex 15411 -2.24629 15.4893 2.29806 Vertex 15412 -1.78158 15.1198 2.67718 Vertex 15413 -1.75524 15.4726 2.99383 Vertex 15414 -1.43016 14.8889 2.94886 Vertex 15415 -1.80981 14.7142 2.37524 Vertex 15416 -1.92088 14.7871 1.72119 Vertex 15417 -1.67403 14.5168 2.19377 Vertex 15418 -1.58282 14.5931 1.4774 Vertex 15419 -1.36883 14.3753 1.95557 Vertex 15420 -1.23752 14.4571 1.39721 Vertex 15421 -1.1098 14.3108 1.89059 Vertex 15422 -0.566652 14.3753 1.52087 Vertex 15423 -0.589288 14.2212 1.92749 Vertex 15424 -0.542313 14.0861 2.34102 Vertex 15425 -0.016832 14.1649 1.97547 Vertex 15426 -0.0190575 14.0365 2.351 Vertex 15427 -2.28411 16.156 2.75623 Vertex 15428 -2.37657 16.1438 2.4274 Vertex 15429 -2.45692 15.8313 1.93901 Vertex 15430 -2.44686 15.5281 1.74267 Vertex 15431 -2.33272 15.3302 1.56778 Vertex 15432 -2.06885 15.0387 1.34827 Vertex 15433 -1.81483 14.8431 1.12578 Vertex 15434 -0.61183 14.3605 1.16412 Vertex 15435 -0.0171715 14.316 1.2111 Vertex 15436 -2.74176 18.0108 2.79015 Vertex 15437 -2.66279 17.7786 2.43507 Vertex 15438 -2.58602 17.6037 2.61993 Vertex 15439 -2.58901 17.745 2.99317 Vertex 15440 -2.53724 17.3629 2.68373 Vertex 15441 -2.47881 17.4036 3.04639 Vertex 15442 -2.51089 17.0923 2.67594 Vertex 15443 -2.42357 17.1003 3.00867 Vertex 15444 -2.37499 16.6731 2.9018 Vertex 15445 -2.41105 16.5776 2.1742 Vertex 15446 -2.57726 16.1141 1.66402 Vertex 15447 -2.5681 15.8479 1.43088 Vertex 15448 -2.45037 15.5631 1.16182 Vertex 15449 -2.21284 15.2607 0.934834 Vertex 15450 -2.03314 15.0533 0.76251 Vertex 15451 -1.90464 14.664 0.526376 Vertex 15452 -2.20093 15.2377 0.441455 Vertex 15453 -2.13326 14.7984 0.164469 Vertex 15454 -2.35374 15.4365 0.612947 Vertex 15455 -2.57238 15.7626 0.864879 Vertex 15456 -2.65538 16.0933 1.18406 Vertex 15457 -2.62785 16.3332 1.48504 Vertex 15458 -2.47744 16.3968 1.927 Vertex 15459 -2.51716 16.628 1.79412 Vertex 15460 -2.43177 16.8566 2.06698 Vertex 15461 -2.45333 16.9946 2.37354 Vertex 15462 -2.54644 17.4706 2.08887 Vertex 15463 -2.51634 17.2557 1.85711 Vertex 15464 -2.60431 16.9633 1.5612 Vertex 15465 -2.74558 16.6817 1.21286 Vertex 15466 -2.49717 17.3338 2.24711 Vertex 15467 -2.5559 16.7948 1.67576 Vertex 15468 -2.69245 16.4875 1.34323 Vertex 15469 -2.74522 16.2525 1.03124 Vertex 15470 -2.67203 15.9217 0.673152 Vertex 15471 -2.46414 15.6022 0.363521 Vertex 15472 -2.28692 15.4523 0.174999 Vertex 15473 -2.25767 14.9109 -0.146574 Vertex 15474 -2.47785 17.2101 2.31312 Vertex 15475 -0.204334 19.2502 4.17825 Vertex 15476 0 19.2844 4.22822 Vertex 15477 -0.227916 18.9702 4.38879 Vertex 15478 0 18.999 4.44823 Vertex 15479 -0.259853 18.7371 4.54962 Vertex 15480 0 18.7574 4.6202 Vertex 15481 -0.357781 19.481 3.8343 Vertex 15482 -0.360944 19.1791 4.02481 Vertex 15483 -0.399166 18.886 4.19272 Vertex 15484 -0.41747 18.6119 4.31339 Vertex 15485 -0.499588 19.309 3.58495 Vertex 15486 -0.537862 19.0432 3.74501 Vertex 15487 -0.806511 18.9124 3.55402 Vertex 15488 -0.851787 18.6542 3.66368 Vertex 15489 -0.858311 18.395 3.75414 Vertex 15490 -0.4683 19.8693 3.96435 Vertex 15491 -0.591804 19.5028 3.57294 Vertex 15492 -0.674838 19.3605 3.44898 Vertex 15493 -1.36073 18.9142 3.55321 Vertex 15494 -0.312275 18.4052 4.78891 Vertex 15495 0 18.4342 4.85882 Vertex 15496 -0.486365 18.3303 4.51116 Vertex 15497 -0.577502 18.2905 4.3258 Vertex 15498 -0.740756 18.22 4.19016 Vertex 15499 -0.843179 18.1016 4.05616 Vertex 15500 -0.771342 17.8701 4.16614 Vertex 15501 -0.681014 17.9643 4.32968 Vertex 15502 0 17.9845 4.83739 Vertex 15503 -0.17184 17.759 4.5524 Vertex 15504 0 17.7402 4.59482 Vertex 15505 -0.369798 17.9454 4.16084 Vertex 15506 -0.463904 17.6642 4.19922 Vertex 15507 -0.194523 17.3223 4.339 Vertex 15508 -0.510404 17.389 4.25593 Vertex 15509 -0.448849 15.5604 4.06726 Vertex 15510 0 15.5967 4.15868 Vertex 15511 -0.838007 17.4592 4.11368 Vertex 15512 -0.837625 15.4789 3.86849 Vertex 15513 -1.23047 17.5256 3.75515 Vertex 15514 -1.32251 18.5443 3.60682 Vertex 15515 -1.22089 18.2364 3.70611 Vertex 15516 -1.90737 18.8257 3.53433 Vertex 15517 -1.87389 18.4126 3.574 Vertex 15518 -1.71959 18.0277 3.61008 Vertex 15519 -2.31109 18.9746 3.17163 Vertex 15520 -2.60046 18.6921 2.94791 Vertex 15521 -2.15317 17.884 3.48854 Vertex 15522 -2.02382 17.4424 3.35363 Vertex 15523 -2.4147 17.8218 3.30025 Vertex 15524 -0.348324 14.9816 3.97552 Vertex 15525 0 14.9927 4.03066 Vertex 15526 -0.310797 14.6363 4.02127 Vertex 15527 0 14.3199 3.88075 Vertex 15528 -0.696301 14.9205 3.85713 Vertex 15529 -0.549239 14.5435 3.90114 Vertex 15530 -0.988519 14.8073 3.63066 Vertex 15531 -0.707204 14.3956 3.74005 Vertex 15532 -1.09997 14.5396 3.27292 Vertex 15533 -0.702035 14.2434 3.52872 Vertex 15534 -1.03638 14.2723 3.0254 Vertex 15535 -0.653983 14.1439 3.37508 Vertex 15536 -0.758432 14.0883 2.87107 Vertex 15537 -0.514903 14.0537 3.26556 Vertex 15538 -0.421291 13.9645 2.79539 Vertex 15539 -0.291542 13.9383 3.19879 Vertex 15540 -2.39608 19.2301 2.69455 Vertex 15541 -2.13623 19.6496 2.84993 Vertex 15542 -1.86397 19.8479 3.11862 Vertex 15543 -1.48515 19.9237 3.35255 Vertex 15544 -1.17201 19.7896 3.46603 Vertex 15545 -0.891531 19.5857 3.46255 Vertex 15546 -0.8801 19.779 3.82114 Vertex 15547 -0.870451 19.6569 3.64422 Vertex 15548 -1.21292 19.9455 3.77416 Vertex 15549 -1.18096 19.8372 3.63278 Vertex 15550 -1.63538 20.1483 3.59036 Vertex 15551 -1.55482 20.0294 3.49222 Vertex 15552 -2.03922 20.0559 3.21815 Vertex 15553 -2.4624 20.2192 2.61309 Vertex 15554 -2.33352 19.8996 2.8193 Vertex 15555 -2.70308 19.846 2.11221 Vertex 15556 -2.54818 19.5921 2.45482 Vertex 15557 -2.81515 19.5533 1.83846 Vertex 15558 -2.88316 19.3357 1.72315 Vertex 15559 -2.98025 19.0096 1.68587 Vertex 15560 -2.61157 18.1677 3.10614 Vertex 15561 -2.8247 18.4195 2.64372 Vertex 15562 -2.97521 18.5984 2.08418 Vertex 15563 -3.04099 18.8123 1.62474 Vertex 15564 -3.00904 18.6532 1.49646 Vertex 15565 -2.50748 20.5197 2.57259 Vertex 15566 -2.72785 20.1679 1.92059 Vertex 15567 -2.91231 19.5639 1.31524 Vertex 15568 -2.98888 19.1386 1.17055 Vertex 15569 -2.98518 17.9882 0.0225355 Vertex 15570 -2.94259 17.3478 0.0454485 Vertex 15571 -2.62837 17.1276 -0.534593 Vertex 15572 -2.43264 17.1958 -1.07557 Vertex 15573 -2.23491 17.4766 -1.49067 Vertex 15574 -3.04291 19.8956 -1.31197 Vertex 15575 -1.51086 19.8294 3.38414 Vertex 15576 -1.19794 19.7237 3.48438 Vertex 15577 -0.928085 19.5375 3.48752 Vertex 15578 -0.719245 19.327 3.47396 Vertex 15579 -0.77517 19.1998 3.47862 Vertex 15580 -1.31757 19.0367 3.54519 Vertex 15581 -1.86104 19.0098 3.45103 Vertex 15582 -2.16191 19.1285 3.19054 Vertex 15583 -2.27705 19.3046 2.83254 Vertex 15584 -2.26302 19.4151 2.78762 Vertex 15585 -2.12249 19.5616 2.93413 Vertex 15586 -1.85961 19.7444 3.16546 Vertex 15587 -0.901719 19.5735 3.46951 Vertex 15588 -0.88338 19.5988 3.49005 Vertex 15589 -0.655871 19.3773 3.46305 Vertex 15590 -0.641545 19.3076 3.44619 Vertex 15591 -0.687026 19.3487 3.45616 Vertex 15592 -1.18018 19.7726 3.47135 Vertex 15593 -1.16982 19.8048 3.49216 Vertex 15594 -1.49094 19.8972 3.36069 Vertex 15595 -1.49557 19.9548 3.37178 Vertex 15596 -1.8615 19.8189 3.13092 Vertex 15597 -1.89025 19.8908 3.13007 Vertex 15598 -2.13501 19.6218 2.86917 Vertex 15599 -2.16864 19.6944 2.84405 Vertex 15600 -2.31929 19.425 2.65742 Vertex 15601 -2.37082 19.3716 2.59691 Vertex 15602 -2.41339 19.3846 2.55092 Vertex 15603 -2.36827 19.4704 2.59621 Vertex 15604 -0.393111 17.967 4.31363 Vertex 15605 -0.250986 17.864 4.32633 Vertex 15606 -0.431825 17.8099 4.1504 Vertex 15607 -0.654217 17.8694 4.14891 Vertex 15608 -0.563135 17.9133 4.24179 Vertex 15609 -0.30092 17.9365 4.33914 Vertex 15610 -0.288643 18.5695 4.67877 Vertex 15611 -0.454329 18.4649 4.41799 Vertex 15612 -0.569988 18.3904 4.16422 Vertex 15613 -0.677687 18.3475 4.06789 Vertex 15614 -0.740124 18.2774 3.98338 Vertex 15615 -1.86265e-009 18.2177 4.88862 Vertex 15616 -0.306783 18.2 4.80813 Vertex 15617 -0.477281 18.1671 4.5442 Vertex 15618 -0.547776 18.1477 4.4208 Vertex 15619 -0.726687 18.0878 4.27635 Vertex 15620 -0.82724 17.9738 4.12037 Vertex 15621 -0.869784 17.768 3.97025 Vertex 15622 -0.955927 17.4804 4.02387 Vertex 15623 -0.234642 17.8088 4.44694 Vertex 15624 -0.310009 17.9286 4.54305 Vertex 15625 -0.430933 17.9556 4.42822 Vertex 15626 -0.62573 17.9101 4.30421 Vertex 15627 -0.716827 17.8442 4.1727 Vertex 15628 -0.606555 18.3918 3.94932 Vertex 15629 -0.74774 18.2015 3.90651 Vertex 15630 -0.748644 18.1839 3.87292 Vertex 15631 -0.848928 17.9681 3.94322 Vertex 15632 -0.829795 17.8562 4.01479 Vertex 15633 -0.836625 17.8279 3.98365 Vertex 15634 -0.793318 17.7222 4.05295 Vertex 15635 -0.626743 18.3563 3.89633 Vertex 15636 -0.761201 18.1674 3.83249 Vertex 15637 -0.82934 18.0725 3.81532 Vertex 15638 -1.07502 17.8474 3.7696 Vertex 15639 -1.10276 17.9872 3.72495 Vertex 15640 0 16.9508 3.95254 Vertex 15641 -0.379576 17.0021 3.86189 Vertex 15642 -0.746066 17.0532 3.70281 Vertex 15643 -1.21535 17.1229 3.45016 Vertex 15644 -1.62601 17.0789 3.10244 Vertex 15645 -1.53159 17.1462 3.17593 Vertex 15646 -1.76694 16.6866 2.96478 Vertex 15647 -1.74752 16.2091 2.95134 Vertex 15648 -1.54612 16.014 3.11913 Vertex 15649 -1.17583 15.9828 3.36372 Vertex 15650 -0.715608 16.0441 3.63808 Vertex 15651 -0.351479 16.0662 3.79539 Vertex 15652 -1.86265e-009 16.0677 3.87686 Vertex 15653 -0.44178 15.8335 4.10151 Vertex 15654 -0.419309 15.9353 4.04044 Vertex 15655 -0.865971 15.7855 3.91787 Vertex 15656 -0.837543 15.8984 3.87047 Vertex 15657 -1.3217 15.7259 3.58195 Vertex 15658 -1.30509 15.8398 3.55132 Vertex 15659 -1.72418 15.7434 3.16245 Vertex 15660 -1.67417 15.8491 3.17788 Vertex 15661 -1.9632 16.0139 2.93337 Vertex 15662 -2.03136 16.1771 2.92038 Vertex 15663 -2.00128 16.6898 3.02315 Vertex 15664 -1.83399 17.2252 3.25938 Vertex 15665 -1.64095 17.3062 3.35185 Vertex 15666 -1.6294 17.2216 3.2849 Vertex 15667 -1.3216 17.286 3.67424 Vertex 15668 -1.30157 17.2019 3.61317 Vertex 15669 -0.899533 17.1453 3.97413 Vertex 15670 -0.516874 17.1653 4.2385 Vertex 15671 -0.49282 17.0877 4.15598 Vertex 15672 -2.27473 17.4125 3.2212 Vertex 15673 -2.21177 17.1148 3.12397 Vertex 15674 -1.86265e-009 15.2143 3.93971 Vertex 15675 -0.382987 15.2344 3.90401 Vertex 15676 -0.390824 15.3409 3.92421 Vertex 15677 -0.767208 15.2356 3.79566 Vertex 15678 -0.769195 15.3335 3.80783 Vertex 15679 -0.749306 19.166 3.45183 Vertex 15680 -0.637929 19.2229 3.42774 Vertex 15681 -0.612626 19.2011 3.44304 Vertex 15682 -0.726039 19.1073 3.45394 Vertex 15683 -1.36165 18.9466 3.55467 Vertex 15684 -1.90077 18.7581 3.54294 Vertex 15685 -1.9036 18.8696 3.51474 Vertex 15686 -3.00049 19.1315 0.102693 Vertex 15687 -2.99303 18.5195 0.0602455 Vertex 15688 -1.1728 22.6299 -2.32307 Vertex 15689 -1.72959 22.3375 -2.23468 Vertex 15690 -2.57383 21.5891 -1.8472 Vertex 15691 -2.99763 21.1701 -1.16044 Vertex 15692 -3.05801 21.1127 -0.911509 Vertex 15693 -3.08621 21.0277 -0.405937 Vertex 15694 -3.09099 20.9559 -0.213211 Vertex 15695 -3.08661 20.6569 0.334449 Vertex 15696 -2.96583 20.1355 0.85868 Vertex 15697 -2.96304 19.8684 0.961287 Vertex 15698 -3.01148 19.4606 0.907637 Vertex 15699 -3.00342 18.8851 1.06169 Vertex 15700 -2.92751 18.4568 1.26895 Vertex 15701 -2.87677 18.2257 1.25253 Vertex 15702 -2.90559 18.0362 1.0712 Vertex 15703 -2.92448 17.9321 0.978103 Vertex 15704 -2.97902 17.5788 0.650494 Vertex 15705 -3.02251 17.3954 0.30506 Vertex 15706 -2.9824 18.2756 0.0291322 Vertex 15707 -3.07551 18.1449 -0.162313 Vertex 15708 -2.60796 17.6875 -0.806108 Vertex 15709 -2.73689 17.6024 -0.508029 Vertex 15710 -3.15748 19.0721 -0.13516 Vertex 15711 -2.9029 19.2998 -1.29794 Vertex 15712 -3.03439 19.7262 -1.24376 Vertex 15713 -3.11373 20.1802 -0.900279 Vertex 15714 -2.70273 18.7385 -1.53978 Vertex 15715 -2.59293 18.3137 -1.34904 Vertex 15716 -2.77091 18.4678 -1.03913 Vertex 15717 -2.76688 18.1738 -0.832003 Vertex 15718 -3.09282 20.2178 -0.106983 Vertex 15719 -3.29494 20.0532 -0.230667 Vertex 15720 -3.05537 19.9663 0.0154847 Vertex 15721 -3.02173 19.5874 0.0777203 Vertex 15722 2.94576 17.7384 -0.304821 Vertex 15723 3.1269 18.7716 -0.257944 Vertex 15724 3.18458 19.3432 -0.00906 Vertex 15725 3.24006 19.663 -0.00110175 Vertex 15726 3.34285 19.3795 -0.132736 Vertex 15727 3.26964 19.127 -0.238668 Vertex 15728 3.41422 19.6667 -0.134648 Vertex 15729 3.49639 19.9096 -0.304402 Vertex 15730 3.2516 19.2266 -0.424968 Vertex 15731 3.15705 19.0898 -0.531983 Vertex 15732 3.3358 19.4055 -0.334377 Vertex 15733 3.42147 19.6207 -0.324858 Vertex 15734 3.47 19.7731 -0.440203 Vertex 15735 3.51671 20.0233 -0.598812 Vertex 15736 3.46621 19.8074 -0.630458 Vertex 15737 3.50346 19.9473 -0.935171 Vertex 15738 3.45952 19.7496 -0.858855 Vertex 15739 3.46371 19.6955 -1.20726 Vertex 15740 3.43195 19.5874 -1.02454 Vertex 15741 3.39881 19.2944 -1.30247 Vertex 15742 3.38841 19.2713 -1.10707 Vertex 15743 3.33153 18.8145 -1.21886 Vertex 15744 3.31814 18.9002 -1.06393 Vertex 15745 3.25515 18.4764 -1.05764 Vertex 15746 3.24359 18.5899 -0.874828 Vertex 15747 3.19094 18.4615 -0.48375 Vertex 15748 3.2036 18.5802 -0.612104 Vertex 15749 3.10937 18.6739 -0.411693 Vertex 15750 3.08431 18.769 -0.489584 Vertex 15751 3.24068 18.7792 -0.755788 Vertex 15752 3.28003 18.9366 -0.979806 Vertex 15753 3.32306 19.2664 -0.986642 Vertex 15754 3.34847 19.452 -0.779394 Vertex 15755 3.31377 19.5219 -0.903712 Vertex 15756 3.32175 19.5842 -0.683989 Vertex 15757 3.32523 19.6531 -0.798501 Vertex 15758 3.31799 19.7054 -0.625792 Vertex 15759 3.28799 19.5348 -0.579836 Vertex 15760 3.21204 19.4855 -0.461854 Vertex 15761 3.31024 19.3181 -0.72292 Vertex 15762 3.15221 19.3144 -0.560064 Vertex 15763 3.16729 17.9115 -0.40018 Vertex 15764 3.29585 19.1419 -0.863951 Vertex 15765 3.06364 19.1366 -0.749678 Vertex 15766 3.29311 19.7795 -1.29877 Vertex 15767 3.26981 19.2995 -1.39845 Vertex 15768 3.20929 18.7848 -1.31834 Vertex 15769 3.11185 18.4273 -1.14807 Vertex 15770 3.12823 17.8387 -0.722146 Vertex 15771 2.92036 18.2023 -0.852494 Vertex 15772 2.94769 18.4915 -1.04613 Vertex 15773 3.00776 18.8275 -1.20656 Vertex 15774 2.82735 18.8522 -1.22165 Vertex 15775 3.05502 19.2732 -1.27841 Vertex 15776 2.96395 18.346 1.84429 Vertex 15777 2.82525 18.0358 1.66001 Vertex 15778 2.74296 17.8915 2.10856 Vertex 15779 2.87891 18.191 2.39258 Vertex 15780 2.76181 17.8326 1.53248 Vertex 15781 2.61807 17.6064 1.87144 Vertex 15782 2.75481 17.6681 1.38969 Vertex 15783 2.59135 17.4095 1.68973 Vertex 15784 2.80325 17.4963 1.21984 Vertex 15785 2.66925 17.1648 1.43007 Vertex 15786 2.89317 17.144 0.878871 Vertex 15787 2.78158 16.8516 1.08408 Vertex 15788 2.97269 16.885 0.514873 Vertex 15789 2.8836 16.7016 0.180623 Vertex 15790 2.73631 16.2126 0.419943 Vertex 15791 2.72561 16.5144 -0.166824 Vertex 15792 2.55419 15.9535 0.0823893 Vertex 15793 2.52333 16.4462 -0.502583 Vertex 15794 2.40587 16.7008 -1.25794 Vertex 15795 2.32855 16.2015 -1.38246 Vertex 15796 2.27297 15.6929 -1.56843 Vertex 15797 2.37325 15.1704 -0.64247 Vertex 15798 2.09007 17.0814 -1.7406 Vertex 15799 1.83651 16.6894 -1.99518 Vertex 15800 1.66508 16.1746 -2.23656 Vertex 15801 0.738083 16.6597 -2.686 Vertex 15802 2.83182 21.7899 -1.31606 Vertex 15803 2.21651 22.6928 -1.39051 Vertex 15804 2.99195 21.7607 -0.720061 Vertex 15805 2.65212 22.6018 -0.344693 Vertex 15806 3.07222 21.6142 -0.205129 Vertex 15807 2.78421 22.2557 0.385499 Vertex 15808 3.06806 21.3934 0.105809 Vertex 15809 2.8183 21.9205 0.798733 Vertex 15810 3.00771 20.9529 0.597554 Vertex 15811 2.80413 21.465 1.20365 Vertex 15812 2.8583 20.4003 1.08471 Vertex 15813 2.71576 20.9144 1.5407 Vertex 15814 2.69169 20.4772 1.73566 Vertex 15815 1.49092 23.1363 -1.27559 Vertex 15816 0.228283 23.514 -0.475232 Vertex 15817 1.98402 23.1725 0.168084 Vertex 15818 1.09002 23.4201 0.704946 Vertex 15819 2.11934 22.7598 1.2519 Vertex 15820 1.27149 22.9213 1.84623 Vertex 15821 2.19789 22.3446 1.75404 Vertex 15822 2.2631 21.898 2.07433 Vertex 15823 1.61967 21.9457 2.72159 Vertex 15824 2.33248 21.3972 2.3009 Vertex 15825 1.78905 21.4358 2.96833 Vertex 15826 2.39356 21.0056 2.44346 Vertex 15827 1.94968 20.9979 3.0891 Vertex 15828 1.54006 20.839 3.40743 Vertex 15829 1.44247 21.2867 3.23668 Vertex 15830 1.26919 21.824 2.97669 Vertex 15831 1.15684 20.6097 3.73852 Vertex 15832 1.08361 21.0466 3.50307 Vertex 15833 0.854909 21.6107 3.19908 Vertex 15834 0.799816 20.39 3.95063 Vertex 15835 0.712369 20.7226 3.80606 Vertex 15836 0.498268 21.3969 3.42429 Vertex 15837 0.376696 20.0359 3.99556 Vertex 15838 0.39709 20.5058 3.88916 Vertex 15839 0.155088 20.0903 4.0222 Vertex 15840 0.200427 20.4782 3.94029 Vertex 15841 -9.31323e-010 20.1134 4.02298 Vertex 15842 9.31323e-010 20.5048 3.93861 Vertex 15843 -9.31323e-010 21.2437 3.51963 Vertex 15844 0 22.9125 2.28447 Vertex 15845 0.537195 22.9301 2.16137 Vertex 15846 0 23.4959 1.05869 Vertex 15847 0.490881 23.4975 0.982505 Vertex 15848 2.13695 15.805 2.75493 Vertex 15849 2.2451 15.4893 2.29806 Vertex 15850 1.78158 15.1198 2.67718 Vertex 15851 1.75524 15.4726 2.99383 Vertex 15852 1.43016 14.8888 2.94886 Vertex 15853 1.80955 14.7142 2.37524 Vertex 15854 1.88433 14.7871 1.72119 Vertex 15855 1.67198 14.5168 2.19377 Vertex 15856 1.53198 14.5931 1.4774 Vertex 15857 1.36315 14.3753 1.95557 Vertex 15858 1.19122 14.4571 1.39721 Vertex 15859 1.10123 14.3108 1.89059 Vertex 15860 0.527963 14.3753 1.52087 Vertex 15861 0.55878 14.2212 1.92749 Vertex 15862 0.514287 14.0861 2.34102 Vertex 15863 -0.019145 14.3239 1.56619 Vertex 15864 2.28411 16.156 2.75623 Vertex 15865 2.37657 16.1438 2.4274 Vertex 15866 2.44382 15.8313 1.93901 Vertex 15867 2.4125 15.5281 1.74267 Vertex 15868 2.27439 15.3302 1.56778 Vertex 15869 1.98208 15.0387 1.34827 Vertex 15870 1.70907 14.8431 1.12578 Vertex 15871 0.561677 14.3605 1.16412 Vertex 15872 2.74176 18.0108 2.79015 Vertex 15873 2.66279 17.7786 2.43507 Vertex 15874 2.58602 17.6037 2.61993 Vertex 15875 2.58901 17.745 2.99317 Vertex 15876 2.53724 17.3629 2.68373 Vertex 15877 2.47881 17.4036 3.04639 Vertex 15878 2.51089 17.0923 2.67594 Vertex 15879 2.42357 17.1003 3.00867 Vertex 15880 2.37499 16.6731 2.9018 Vertex 15881 2.41105 16.5776 2.1742 Vertex 15882 2.55225 16.1141 1.66402 Vertex 15883 2.51009 15.8478 1.43087 Vertex 15884 2.35294 15.5631 1.16182 Vertex 15885 2.08955 15.2607 0.934834 Vertex 15886 1.89957 15.0533 0.76251 Vertex 15887 1.77584 14.664 0.526376 Vertex 15888 2.07251 15.2377 0.441455 Vertex 15889 2.01173 14.7984 0.164469 Vertex 15890 2.2313 15.4365 0.612947 Vertex 15891 2.47073 15.7626 0.864879 Vertex 15892 2.58832 16.0933 1.18406 Vertex 15893 2.59783 16.3332 1.48504 Vertex 15894 2.47361 16.3968 1.927 Vertex 15895 2.51314 16.628 1.79412 Vertex 15896 2.43177 16.8566 2.06698 Vertex 15897 2.45333 16.9946 2.37354 Vertex 15898 2.54644 17.4706 2.08887 Vertex 15899 2.51634 17.2557 1.85711 Vertex 15900 2.60104 16.9633 1.56121 Vertex 15901 2.71769 16.6817 1.21286 Vertex 15902 2.49717 17.3338 2.24711 Vertex 15903 2.55179 16.7948 1.67576 Vertex 15904 2.66081 16.4875 1.34323 Vertex 15905 2.68169 16.2525 1.03124 Vertex 15906 2.58131 15.9217 0.673152 Vertex 15907 2.36118 15.6022 0.363521 Vertex 15908 2.18579 15.4523 0.174999 Vertex 15909 2.16503 14.9109 -0.146574 Vertex 15910 2.47785 17.2101 2.31312 Vertex 15911 0.0372515 19.7208 3.97014 Vertex 15912 0.204334 19.2502 4.17825 Vertex 15913 0.227915 18.9702 4.3888 Vertex 15914 0.259853 18.7371 4.54962 Vertex 15915 0.357781 19.481 3.8343 Vertex 15916 0.360944 19.1791 4.02481 Vertex 15917 0.399166 18.886 4.19273 Vertex 15918 0.41747 18.6119 4.31339 Vertex 15919 0.499588 19.309 3.58495 Vertex 15920 0.537862 19.0432 3.74502 Vertex 15921 0.80651 18.9124 3.55402 Vertex 15922 0.851787 18.6542 3.66368 Vertex 15923 0.858311 18.395 3.75414 Vertex 15924 0.4683 19.8693 3.96435 Vertex 15925 0.591804 19.5028 3.57294 Vertex 15926 0.674838 19.3605 3.44898 Vertex 15927 1.36073 18.9142 3.55321 Vertex 15928 0.312275 18.4052 4.78891 Vertex 15929 0.486365 18.3303 4.51116 Vertex 15930 0.577502 18.2905 4.3258 Vertex 15931 0.740756 18.2201 4.19017 Vertex 15932 0.843179 18.1016 4.05616 Vertex 15933 0.771342 17.8701 4.16614 Vertex 15934 0.681014 17.9643 4.32968 Vertex 15935 0.17184 17.759 4.5524 Vertex 15936 0.425451 17.9276 4.12318 Vertex 15937 0 17.5187 4.40762 Vertex 15938 0.463904 17.6642 4.19922 Vertex 15939 0.194523 17.3223 4.339 Vertex 15940 0 17.3001 4.34391 Vertex 15941 0.510404 17.389 4.25593 Vertex 15942 0.448849 15.5604 4.06726 Vertex 15943 0.838006 17.4592 4.11368 Vertex 15944 0.837625 15.479 3.86849 Vertex 15945 1.23047 17.5256 3.75515 Vertex 15946 1.32251 18.5443 3.60682 Vertex 15947 1.22089 18.2363 3.70611 Vertex 15948 1.90737 18.8257 3.53433 Vertex 15949 1.87389 18.4126 3.574 Vertex 15950 1.71959 18.0276 3.61008 Vertex 15951 2.31109 18.9746 3.17163 Vertex 15952 2.60046 18.6921 2.94791 Vertex 15953 2.15317 17.884 3.48853 Vertex 15954 2.02382 17.4424 3.35363 Vertex 15955 2.4147 17.8218 3.30025 Vertex 15956 0.348324 14.9816 3.97552 Vertex 15957 0.310797 14.6363 4.02127 Vertex 15958 0 14.6874 4.04247 Vertex 15959 0.696301 14.9205 3.85713 Vertex 15960 0.549239 14.5435 3.90114 Vertex 15961 0.988518 14.8073 3.63066 Vertex 15962 0.707204 14.3956 3.74005 Vertex 15963 1.09998 14.5396 3.27292 Vertex 15964 0.702035 14.2434 3.52872 Vertex 15965 1.03638 14.2723 3.0254 Vertex 15966 0.653982 14.1438 3.37508 Vertex 15967 0.757885 14.0883 2.87107 Vertex 15968 0.514903 14.0537 3.26556 Vertex 15969 0.412558 13.9645 2.79539 Vertex 15970 0.290738 13.9383 3.19879 Vertex 15971 -0.016911 13.9303 2.76551 Vertex 15972 -0.0024115 13.8862 3.19052 Vertex 15973 -1.86265e-009 14.0363 3.54685 Vertex 15974 2.39609 19.2301 2.69455 Vertex 15975 2.13623 19.6496 2.84993 Vertex 15976 1.86397 19.8479 3.11862 Vertex 15977 1.48515 19.9237 3.35255 Vertex 15978 1.17201 19.7896 3.46603 Vertex 15979 0.891531 19.5857 3.46255 Vertex 15980 0.8801 19.779 3.82113 Vertex 15981 0.870451 19.6569 3.64422 Vertex 15982 1.21292 19.9455 3.77416 Vertex 15983 1.18096 19.8372 3.63279 Vertex 15984 1.63538 20.1483 3.59036 Vertex 15985 1.55482 20.0294 3.49222 Vertex 15986 2.03922 20.0559 3.21815 Vertex 15987 2.4624 20.2192 2.61309 Vertex 15988 2.33351 19.8995 2.8193 Vertex 15989 2.70308 19.846 2.11221 Vertex 15990 2.54818 19.5921 2.45482 Vertex 15991 2.81515 19.5533 1.83847 Vertex 15992 2.88315 19.3357 1.72315 Vertex 15993 2.98025 19.0096 1.68587 Vertex 15994 2.61157 18.1677 3.10614 Vertex 15995 2.82469 18.4195 2.64372 Vertex 15996 2.97521 18.5984 2.08418 Vertex 15997 3.04099 18.8123 1.62474 Vertex 15998 3.00904 18.6532 1.49646 Vertex 15999 2.50748 20.5197 2.57259 Vertex 16000 2.72785 20.1679 1.92059 Vertex 16001 2.91231 19.5639 1.31524 Vertex 16002 2.98888 19.1386 1.17055 Vertex 16003 2.95409 17.9619 -0.0065525 Vertex 16004 2.94766 17.3478 0.0454485 Vertex 16005 2.68239 17.1276 -0.534593 Vertex 16006 2.53173 17.1957 -1.07557 Vertex 16007 2.32847 17.4766 -1.49067 Vertex 16008 3.04292 19.8956 -1.31197 Vertex 16009 0.00520375 16.8907 -2.78986 Vertex 16010 1.51086 19.8294 3.38414 Vertex 16011 1.19794 19.7237 3.48438 Vertex 16012 0.928085 19.5375 3.48752 Vertex 16013 0.719245 19.327 3.47396 Vertex 16014 0.77517 19.1998 3.47862 Vertex 16015 1.31756 19.0367 3.54519 Vertex 16016 1.86104 19.0098 3.45103 Vertex 16017 2.16191 19.1285 3.19054 Vertex 16018 2.27705 19.3046 2.83254 Vertex 16019 2.26302 19.4151 2.78762 Vertex 16020 2.12249 19.5616 2.93413 Vertex 16021 1.85961 19.7444 3.16546 Vertex 16022 0.901719 19.5735 3.46952 Vertex 16023 0.88338 19.5988 3.49005 Vertex 16024 0.655871 19.3773 3.46305 Vertex 16025 0.641545 19.3076 3.44619 Vertex 16026 0.687027 19.3487 3.45616 Vertex 16027 1.18018 19.7726 3.47135 Vertex 16028 1.16982 19.8049 3.49216 Vertex 16029 1.49094 19.8972 3.36069 Vertex 16030 1.49557 19.9548 3.37178 Vertex 16031 1.8615 19.8189 3.13092 Vertex 16032 1.89025 19.8908 3.13007 Vertex 16033 2.13501 19.6218 2.86917 Vertex 16034 2.16864 19.6944 2.84405 Vertex 16035 2.31929 19.425 2.65742 Vertex 16036 2.37082 19.3716 2.59691 Vertex 16037 2.41339 19.3846 2.55092 Vertex 16038 2.36827 19.4704 2.59621 Vertex 16039 0.393111 17.967 4.31363 Vertex 16040 0.250986 17.864 4.32633 Vertex 16041 0.431825 17.8099 4.1504 Vertex 16042 0.654217 17.8694 4.14891 Vertex 16043 0.563135 17.9133 4.24179 Vertex 16044 0.30092 17.9365 4.33914 Vertex 16045 0 18.5942 4.74891 Vertex 16046 0.288643 18.5695 4.67877 Vertex 16047 0.454329 18.4649 4.41799 Vertex 16048 0.569988 18.3904 4.16422 Vertex 16049 0.677687 18.3475 4.06789 Vertex 16050 0.740124 18.2774 3.98338 Vertex 16051 0.306783 18.2 4.80813 Vertex 16052 0.477281 18.1671 4.5442 Vertex 16053 0.547776 18.1477 4.4208 Vertex 16054 0.726687 18.0878 4.27634 Vertex 16055 0.82724 17.9738 4.12037 Vertex 16056 0.869784 17.768 3.97025 Vertex 16057 0.955927 17.4804 4.02387 Vertex 16058 0.234642 17.8088 4.44694 Vertex 16059 0.310009 17.9286 4.54305 Vertex 16060 0.430933 17.9556 4.42822 Vertex 16061 0.62573 17.9101 4.30421 Vertex 16062 0.716826 17.8442 4.1727 Vertex 16063 0.590217 18.4172 3.92187 Vertex 16064 0.74774 18.2015 3.90651 Vertex 16065 0.748644 18.1839 3.87292 Vertex 16066 0.848928 17.9681 3.94323 Vertex 16067 0.829795 17.8562 4.01479 Vertex 16068 0.836625 17.8279 3.98365 Vertex 16069 0.793318 17.7222 4.05295 Vertex 16070 0.626743 18.3563 3.89633 Vertex 16071 0.761201 18.1674 3.83249 Vertex 16072 0.82934 18.0724 3.81532 Vertex 16073 1.07502 17.8474 3.7696 Vertex 16074 1.10276 17.9872 3.72495 Vertex 16075 0.379576 17.0021 3.86189 Vertex 16076 0.746067 17.0532 3.70281 Vertex 16077 1.21535 17.1229 3.45016 Vertex 16078 1.62601 17.0789 3.10244 Vertex 16079 1.53159 17.1462 3.17593 Vertex 16080 1.76694 16.6866 2.96478 Vertex 16081 1.74752 16.2091 2.95134 Vertex 16082 1.54612 16.014 3.11913 Vertex 16083 1.17583 15.9828 3.36371 Vertex 16084 0.715608 16.0441 3.63808 Vertex 16085 0.351479 16.0662 3.79539 Vertex 16086 0 15.9455 4.12474 Vertex 16087 0 15.8503 4.1906 Vertex 16088 0.44178 15.8335 4.10151 Vertex 16089 0.419309 15.9353 4.04044 Vertex 16090 0.865971 15.7855 3.91787 Vertex 16091 0.837543 15.8984 3.87047 Vertex 16092 1.3217 15.726 3.58195 Vertex 16093 1.30509 15.8398 3.55132 Vertex 16094 1.72418 15.7434 3.16245 Vertex 16095 1.67417 15.8491 3.17788 Vertex 16096 1.9632 16.0139 2.93337 Vertex 16097 2.03135 16.1771 2.92038 Vertex 16098 2.00128 16.6898 3.02315 Vertex 16099 1.9366 17.2089 3.23938 Vertex 16100 1.83399 17.2252 3.25938 Vertex 16101 1.64095 17.3062 3.35185 Vertex 16102 1.6294 17.2216 3.2849 Vertex 16103 1.3216 17.286 3.67424 Vertex 16104 1.30157 17.2019 3.61317 Vertex 16105 0.899533 17.1453 3.97413 Vertex 16106 0.516873 17.1653 4.2385 Vertex 16107 0.492819 17.0877 4.15598 Vertex 16108 0 17.0955 4.302 Vertex 16109 -3.72529e-009 17.017 4.22291 Vertex 16110 2.27473 17.4125 3.22121 Vertex 16111 2.21177 17.1148 3.12397 Vertex 16112 0 15.326 3.96428 Vertex 16113 0.382987 15.2344 3.90401 Vertex 16114 0.390824 15.3409 3.92421 Vertex 16115 0.767208 15.2356 3.79566 Vertex 16116 0.769195 15.3335 3.80783 Vertex 16117 0.749306 19.166 3.45183 Vertex 16118 0.637929 19.2229 3.42774 Vertex 16119 0.612626 19.2011 3.44305 Vertex 16120 0.726039 19.1073 3.45394 Vertex 16121 1.36165 18.9466 3.55467 Vertex 16122 1.90076 18.7581 3.54294 Vertex 16123 1.90359 18.8696 3.51474 Vertex 16124 3.00049 19.1315 0.102693 Vertex 16125 2.99303 18.5195 0.0602455 Vertex 16126 1.1728 22.6299 -2.32307 Vertex 16127 -7.45058e-009 22.8904 -2.37742 Vertex 16128 1.72959 22.3375 -2.23468 Vertex 16129 2.57383 21.5891 -1.8472 Vertex 16130 2.99763 21.1701 -1.16044 Vertex 16131 3.05801 21.1127 -0.911508 Vertex 16132 3.08621 21.0277 -0.405937 Vertex 16133 3.09099 20.9559 -0.213211 Vertex 16134 3.08661 20.6569 0.334449 Vertex 16135 2.96583 20.1355 0.85868 Vertex 16136 2.96304 19.8683 0.961287 Vertex 16137 3.01148 19.4606 0.907637 Vertex 16138 3.00342 18.8851 1.06169 Vertex 16139 2.92751 18.4568 1.26895 Vertex 16140 2.87677 18.2257 1.25253 Vertex 16141 2.90559 18.0362 1.0712 Vertex 16142 2.92448 17.9321 0.978103 Vertex 16143 2.97743 17.5788 0.650494 Vertex 16144 3.01929 17.3954 0.30506 Vertex 16145 2.9824 18.2756 0.0291322 Vertex 16146 3.07562 18.1449 -0.162313 Vertex 16147 2.65224 17.6875 -0.806108 Vertex 16148 2.76927 17.6024 -0.508029 Vertex 16149 3.15748 19.0721 -0.13516 Vertex 16150 2.9029 19.2998 -1.29794 Vertex 16151 3.03439 19.7262 -1.24376 Vertex 16152 3.11373 20.1802 -0.900279 Vertex 16153 2.70273 18.7385 -1.53978 Vertex 16154 2.59637 18.3137 -1.34904 Vertex 16155 2.77103 18.4678 -1.03913 Vertex 16156 2.77182 18.1738 -0.832003 Vertex 16157 3.09282 20.2178 -0.106983 Vertex 16158 3.29494 20.0532 -0.230667 Vertex 16159 3.05537 19.9663 0.0154847 Vertex 16160 3.02173 19.5874 0.0777202 Vertex 16161 1.51976 19.76 3.37352 Vertex 16162 1.51711 19.7409 3.26993 Vertex 16163 1.82508 19.6481 3.0742 Vertex 16164 1.83597 19.6664 3.17214 Vertex 16165 1.20735 19.673 3.46332 Vertex 16166 1.21124 19.6575 3.35608 Vertex 16167 0.955229 19.502 3.47097 Vertex 16168 0.964663 19.4904 3.36433 Vertex 16169 0.759576 19.3184 3.46294 Vertex 16170 0.773142 19.3156 3.35693 Vertex 16171 0.814011 19.2228 3.47555 Vertex 16172 0.826021 19.2328 3.37151 Vertex 16173 1.27523 19.1236 3.50161 Vertex 16174 1.26935 19.144 3.39035 Vertex 16175 1.77221 19.1291 3.37896 Vertex 16176 1.75136 19.1511 3.26466 Vertex 16177 2.04073 19.2243 3.14888 Vertex 16178 2.01043 19.2398 3.04364 Vertex 16179 2.18449 19.3232 2.91403 Vertex 16180 2.16001 19.3293 2.831 Vertex 16181 2.17259 19.4116 2.90055 Vertex 16182 2.15172 19.4083 2.82247 Vertex 16183 2.08163 19.4977 2.97603 Vertex 16184 2.0679 19.483 2.88617 Vertex 16185 -1.83597 19.6664 3.17214 Vertex 16186 -1.82508 19.6481 3.0742 Vertex 16187 -1.51711 19.7409 3.26993 Vertex 16188 -1.51976 19.76 3.37352 Vertex 16189 -2.08163 19.4977 2.97603 Vertex 16190 -2.0679 19.483 2.88617 Vertex 16191 -2.17259 19.4116 2.90055 Vertex 16192 -2.15172 19.4083 2.82247 Vertex 16193 -2.18449 19.3232 2.91403 Vertex 16194 -2.16001 19.3293 2.831 Vertex 16195 -2.04073 19.2243 3.14888 Vertex 16196 -2.01044 19.2398 3.04364 Vertex 16197 -1.77221 19.1291 3.37896 Vertex 16198 -1.75136 19.1511 3.26466 Vertex 16199 -1.27523 19.1236 3.50161 Vertex 16200 -1.26935 19.144 3.39035 Vertex 16201 -0.814011 19.2228 3.47555 Vertex 16202 -0.826021 19.2328 3.37151 Vertex 16203 -0.759576 19.3184 3.46294 Vertex 16204 -0.773142 19.3156 3.35693 Vertex 16205 -0.955229 19.502 3.47098 Vertex 16206 -0.964663 19.4905 3.36433 Vertex 16207 -1.20735 19.673 3.46332 Vertex 16208 -1.21124 19.6575 3.35608 Vertex 16209 -1.51642 15.0979 -2.5427 Vertex 16210 -2.16965 14.62 -1.86863 Vertex 16211 -2.39176 14.0761 -0.9688 Vertex 16212 -2.22301 13.8229 -0.468745 Vertex 16213 -2.08651 13.7291 -0.150294 Vertex 16214 -1.84426 13.6037 0.218738 Vertex 16215 -1.4326 13.4712 0.603015 Vertex 16216 -0.588454 13.3557 0.841872 Vertex 16217 0.00477325 13.3123 0.889374 Vertex 16218 0.600439 13.3557 0.841872 Vertex 16219 1.43803 13.4712 0.603015 Vertex 16220 1.81754 13.6037 0.218739 Vertex 16221 2.04719 13.7291 -0.150294 Vertex 16222 2.19363 13.8229 -0.468745 Vertex 16223 2.40621 14.0761 -0.9688 Vertex 16224 2.30149 14.62 -1.86863 Vertex 16225 1.68475 15.0979 -2.5427 Vertex 16226 0.73402 15.5663 -2.97491 Vertex 16227 0.0278267 15.8153 -3.06409 Vertex 16228 -0.639615 15.5663 -2.97491 Vertex 16229 -1.65468 14.2143 -2.83927 Vertex 16230 -2.27983 13.7364 -2.1652 Vertex 16231 -2.43869 13.1926 -1.26536 Vertex 16232 -2.26268 12.9394 -0.765306 Vertex 16233 -2.13952 12.8456 -0.446856 Vertex 16234 -1.91617 12.7202 -0.0778227 Vertex 16235 -1.51724 12.5877 0.306454 Vertex 16236 -0.630919 12.4722 0.545311 Vertex 16237 0.0214152 12.4288 0.592813 Vertex 16238 0.681012 12.4722 0.545311 Vertex 16239 1.59748 12.5877 0.306454 Vertex 16240 1.99527 12.7202 -0.0778225 Vertex 16241 2.21089 12.8456 -0.446856 Vertex 16242 2.33019 12.9394 -0.765306 Vertex 16243 2.50769 13.1926 -1.26536 Vertex 16244 2.38471 13.7365 -2.1652 Vertex 16245 1.77665 14.2143 -2.83927 Vertex 16246 0.793496 14.6828 -3.27147 Vertex 16247 0.042524 14.9318 -3.36065 Vertex 16248 -0.698898 14.6828 -3.27147 Vertex 16249 -1.82055 13.5012 -3.10528 Vertex 16250 -2.43885 13.0233 -2.43121 Vertex 16251 -2.57552 12.4795 -1.53137 Vertex 16252 -2.40716 12.2263 -1.03132 Vertex 16253 -2.29607 12.1326 -0.71287 Vertex 16254 -2.08419 12.0071 -0.343837 Vertex 16255 -1.67791 11.8747 0.0404405 Vertex 16256 -0.713161 11.7591 0.279297 Vertex 16257 0.0191605 11.7157 0.326798 Vertex 16258 0.759512 11.7591 0.279297 Vertex 16259 1.75843 11.8747 0.0404405 Vertex 16260 2.16997 12.0071 -0.343837 Vertex 16261 2.38126 12.1326 -0.71287 Vertex 16262 2.49191 12.2262 -1.03132 Vertex 16263 2.65946 12.4795 -1.53137 Vertex 16264 2.52342 13.0234 -2.43121 Vertex 16265 1.90712 13.5012 -3.10528 Vertex 16266 0.874659 13.9697 -3.53748 Vertex 16267 0.0428387 14.2187 -3.62667 Vertex 16268 -0.788398 13.9697 -3.53748 Vertex 16269 -1.33098 13.6293 -3.40548 Vertex 16270 -0.359819 14.0283 -3.66041 Vertex 16271 0.444732 14.0283 -3.66041 Vertex 16272 1.41694 13.6293 -3.40547 Vertex 16273 2.29991 13.1536 -2.84953 Vertex 16274 2.66781 12.6215 -2.01505 Vertex 16275 2.60596 12.2029 -1.28225 Vertex 16276 2.4577 12.058 -0.913966 Vertex 16277 2.31437 11.9584 -0.582425 Vertex 16278 2.04855 11.8245 -0.190024 Vertex 16279 1.29913 11.6956 0.137272 Vertex 16280 0.364457 11.6111 0.273629 Vertex 16281 -0.326679 11.6111 0.273629 Vertex 16282 -1.23665 11.6956 0.137272 Vertex 16283 -1.96344 11.8245 -0.190025 Vertex 16284 -2.22974 11.9584 -0.582424 Vertex 16285 -2.37352 12.058 -0.913966 Vertex 16286 -2.5224 12.2029 -1.28225 Vertex 16287 -2.58462 12.6215 -2.01505 Vertex 16288 -2.21523 13.1536 -2.84953 Vertex 16289 -1.25354 14.0517 -3.24276 Vertex 16290 -0.33195 14.4507 -3.49769 Vertex 16291 0.419926 14.4507 -3.49769 Vertex 16292 1.34747 14.0517 -3.24276 Vertex 16293 2.21253 13.576 -2.68682 Vertex 16294 2.58103 13.0439 -1.85234 Vertex 16295 2.51607 12.6253 -1.11954 Vertex 16296 2.36454 12.4804 -0.751256 Vertex 16297 2.21623 12.3807 -0.419714 Vertex 16298 1.94814 12.2469 -0.0273138 Vertex 16299 1.22534 12.118 0.299983 Vertex 16300 0.344901 12.0334 0.436339 Vertex 16301 -0.300979 12.0335 0.436339 Vertex 16302 -1.15799 12.1179 0.299983 Vertex 16303 -1.85942 12.2469 -0.0273137 Vertex 16304 -2.12828 12.3807 -0.419714 Vertex 16305 -2.27785 12.4804 -0.751256 Vertex 16306 -2.4312 12.6253 -1.11954 Vertex 16307 -2.49543 13.0439 -1.85234 Vertex 16308 -2.11628 13.576 -2.68682 Vertex 16309 -1.11307 14.8735 -2.94597 Vertex 16310 -0.29593 15.2725 -3.2009 Vertex 16311 0.373706 15.2726 -3.2009 Vertex 16312 1.2402 14.8735 -2.94597 Vertex 16313 2.08702 14.3978 -2.39002 Vertex 16314 2.45138 13.8657 -1.55554 Vertex 16315 2.34955 13.4472 -0.822741 Vertex 16316 2.17935 13.3022 -0.454462 Vertex 16317 2.01947 13.2025 -0.122919 Vertex 16318 1.75398 13.0687 0.26948 Vertex 16319 1.08784 12.9398 0.596777 Vertex 16320 0.299486 12.8553 0.733133 Vertex 16321 -0.268686 12.8553 0.733133 Vertex 16322 -1.03927 12.9398 0.596777 Vertex 16323 -1.70403 13.0687 0.26948 Vertex 16324 -1.99079 13.2025 -0.12292 Vertex 16325 -2.1585 13.3022 -0.454462 Vertex 16326 -2.32407 13.4472 -0.822741 Vertex 16327 -2.37622 13.8657 -1.55554 Vertex 16328 -1.94363 14.3978 -2.39002 Vertex 16329 -1.05224 15.9064 -2.63914 Vertex 16330 -0.299666 16.3055 -2.89407 Vertex 16331 0.34441 16.3055 -2.89407 Vertex 16332 1.18861 15.9065 -2.63914 Vertex 16333 2.03057 15.4307 -2.08319 Vertex 16334 2.40871 14.8986 -1.24872 Vertex 16335 2.2927 14.4801 -0.515917 Vertex 16336 2.09768 14.3351 -0.147636 Vertex 16337 1.91088 14.2355 0.183906 Vertex 16338 1.6295 14.1016 0.576306 Vertex 16339 0.999114 13.9727 0.903602 Vertex 16340 0.261607 13.8882 1.03996 Vertex 16341 -0.278308 13.8882 1.03996 Vertex 16342 -1.03724 13.9727 0.903602 Vertex 16343 -1.70737 14.1016 0.576306 Vertex 16344 -2.00644 14.2355 0.183906 Vertex 16345 -2.1813 14.3351 -0.147636 Vertex 16346 -2.33889 14.4801 -0.515916 Vertex 16347 -2.33034 14.8986 -1.24872 Vertex 16348 -1.84483 15.4307 -2.08319 Vertex 16349 -1.3595 19.7214 3.42276 Vertex 16350 -1.07967 19.5837 3.46284 Vertex 16351 -0.84892 19.3982 3.45665 Vertex 16352 -0.750656 19.2675 3.45723 Vertex 16353 -1.01471 19.1799 3.48722 Vertex 16354 -1.52912 19.1306 3.442 Vertex 16355 -1.90815 19.1883 3.25732 Vertex 16356 -2.10731 19.2836 3.01483 Vertex 16357 -2.17467 19.3706 2.89976 Vertex 16358 -2.12764 19.4412 2.93496 Vertex 16359 -1.96555 19.5655 3.0633 Vertex 16360 -1.67711 19.7172 3.27513 Vertex 16361 1.96555 19.5655 3.0633 Vertex 16362 2.12764 19.4412 2.93496 Vertex 16363 2.17467 19.3706 2.89976 Vertex 16364 2.10731 19.2836 3.01483 Vertex 16365 1.90815 19.1883 3.25732 Vertex 16366 1.52912 19.1306 3.442 Vertex 16367 1.01471 19.1799 3.48722 Vertex 16368 0.750655 19.2675 3.45723 Vertex 16369 0.84892 19.3982 3.45665 Vertex 16370 1.07967 19.5837 3.46284 Vertex 16371 1.3595 19.7214 3.42275 Vertex 16372 1.67711 19.7172 3.27513 Vertex 16373 2.33011 18.7163 3.28582 Vertex 16374 3.08033 19.4272 0.0652415 Vertex 16375 3.1232 19.8063 0.001333 Vertex 16376 3.20587 20.197 -0.293253 Vertex 16377 3.1902 20.2064 -0.721863 Vertex 16378 2.78641 17.7549 -0.61216 Vertex 16379 2.69986 17.9571 -0.8201 Vertex 16380 2.65751 18.2368 -1.05503 Vertex 16381 2.68864 18.5791 -1.28923 Vertex 16382 3.0957 20.0056 -1.10423 Vertex 16383 2.8049 19.0628 -1.40637 Vertex 16384 3.05423 19.0831 0.0252312 Vertex 16385 2.65936 17.4019 -0.718962 Vertex 16386 3.02355 18.3557 -0.0816015 Vertex 16387 3.03662 18.6548 -0.0865643 Vertex 16388 3.1094 18.9069 -0.164374 Vertex 16389 3.02391 17.5489 0.419858 Vertex 16390 2.97925 17.8473 0.792099 Vertex 16391 2.92665 18.2034 1.1061 Vertex 16392 2.96922 18.6208 1.13595 Vertex 16393 3.05866 18.9604 0.927281 Vertex 16394 3.0625 19.2716 0.835461 Vertex 16395 3.00714 19.7397 0.875279 Vertex 16396 3.05703 20.3348 0.594604 Vertex 16397 3.11619 20.784 -0.0210338 Vertex 16398 3.08442 20.9681 -0.687572 Vertex 16399 2.84792 21.2572 -1.51012 Vertex 16400 2.09659 21.9221 -2.19965 Vertex 16401 1.40549 22.4353 -2.45242 Vertex 16402 0.622943 22.709 -2.54526 Vertex 16403 3.03188 17.4834 0.215558 Vertex 16404 2.89762 18.3405 1.24462 Vertex 16405 2.96951 19.9974 0.907199 Vertex 16406 1.68032 18.8634 3.5533 Vertex 16407 1.01652 19.0421 3.50107 Vertex 16408 1.00364 19.0223 3.49804 Vertex 16409 1.67155 18.8409 3.55622 Vertex 16410 0.580797 15.2945 3.85641 Vertex 16411 0.191408 15.2755 3.92086 Vertex 16412 2.29917 16.9114 3.03785 Vertex 16413 2.35032 17.2572 3.12266 Vertex 16414 2.44459 17.5968 3.17157 Vertex 16415 0.265543 17.072 4.26558 Vertex 16416 1.13148 17.2066 3.85318 Vertex 16417 1.49925 17.2556 3.46183 Vertex 16418 2.02487 16.4134 2.97821 Vertex 16419 1.83372 15.9254 3.04549 Vertex 16420 1.53657 15.7738 3.37998 Vertex 16421 1.09861 15.8256 3.77073 Vertex 16422 0.645522 15.8776 4.01936 Vertex 16423 0.218666 15.9032 4.15175 Vertex 16424 0.730559 17.1512 4.14701 Vertex 16425 1.78397 17.2136 3.24395 Vertex 16426 2.02615 16.9207 3.10568 Vertex 16427 0.926516 18.0404 3.77857 Vertex 16428 0.690286 18.2802 3.85596 Vertex 16429 1.72328 17.3718 3.36337 Vertex 16430 1.28422 17.7775 3.6348 Vertex 16431 0.803555 17.7922 4.02952 Vertex 16432 0.849647 17.8796 3.95449 Vertex 16433 0.808623 18.0635 3.89551 Vertex 16434 0.664274 18.3085 3.89966 Vertex 16435 0.744637 17.8126 4.11713 Vertex 16436 0.714441 17.8899 4.24582 Vertex 16437 0.555657 17.955 4.39886 Vertex 16438 0.372471 17.9695 4.58576 Vertex 16439 0.25326 17.867 4.60043 Vertex 16440 0.209436 17.7202 4.40587 Vertex 16441 1.11681 17.3595 3.89021 Vertex 16442 1.01556 17.6787 3.89055 Vertex 16443 0.894641 17.8738 3.90671 Vertex 16444 0.855215 17.9594 4.02565 Vertex 16445 0.80787 18.0986 4.1625 Vertex 16446 0.649773 18.1942 4.31124 Vertex 16447 0.523758 18.2351 4.44524 Vertex 16448 0.417732 18.277 4.67475 Vertex 16449 0.166755 18.3244 4.86954 Vertex 16450 0.500638 18.4695 4.20431 Vertex 16451 0.364604 18.5946 4.50914 Vertex 16452 0.146747 18.6681 4.67252 Vertex 16453 0.797792 18.0909 3.8502 Vertex 16454 0.345897 17.9537 4.41523 Vertex 16455 0.658465 17.8761 4.21881 Vertex 16456 0.503407 17.937 4.32778 Vertex 16457 2.24748 19.524 2.72581 Vertex 16458 2.25365 19.5432 2.71311 Vertex 16459 2.01116 19.7465 2.98927 Vertex 16460 2.01513 19.7695 2.98163 Vertex 16461 1.67672 19.898 3.24833 Vertex 16462 1.67876 19.9217 3.24448 Vertex 16463 1.32281 19.8668 3.42722 Vertex 16464 1.32008 19.8849 3.42772 Vertex 16465 1.03136 19.6893 3.47311 Vertex 16466 1.02515 19.6993 3.47519 Vertex 16467 0.769848 19.4579 3.45653 Vertex 16468 0.761309 19.4644 3.45639 Vertex 16469 1.68385 19.8481 3.27082 Vertex 16470 1.99062 19.6131 3.05849 Vertex 16471 2.17331 19.4632 2.89362 Vertex 16472 2.23494 19.3672 2.84154 Vertex 16473 2.17949 19.2537 3.00919 Vertex 16474 1.98016 19.1249 3.30406 Vertex 16475 1.57108 19.0655 3.48954 Vertex 16476 1.01136 19.1435 3.51006 Vertex 16477 0.719284 19.2633 3.47085 Vertex 16478 0.825215 19.4142 3.47673 Vertex 16479 1.06779 19.613 3.48553 Vertex 16480 1.35495 19.7612 3.44357 Vertex 16481 1.52762 19.1357 3.07209 Vertex 16482 1.90394 19.1923 2.88813 Vertex 16483 2.1009 19.2872 2.64965 Vertex 16484 2.16918 19.3703 2.53762 Vertex 16485 2.1246 19.4364 2.57156 Vertex 16486 1.96298 19.5598 2.6979 Vertex 16487 1.67564 19.7108 2.90791 Vertex 16488 1.36042 19.7153 3.05406 Vertex 16489 1.08271 19.5786 3.09354 Vertex 16490 0.85362 19.3952 3.08738 Vertex 16491 0.755913 19.2694 3.08834 Vertex 16492 1.01725 19.1854 3.118 Vertex 16493 2.23064 19.4985 2.79177 Vertex 16494 1.01672 19.0817 3.5151 Vertex 16495 1.59978 19.5181 2.51616 Vertex 16496 2.11687 16.0346 2.84017 Vertex 16497 1.9223 15.7692 2.95053 Vertex 16498 3.01481 19.1573 0.982133 Vertex 16499 2.96223 19.5472 1.06922 Vertex 16500 2.91576 19.8574 1.1491 Vertex 16501 2.89655 20.0728 1.08416 Vertex 16502 2.9838 20.495 0.713291 Vertex 16503 3.08425 20.9893 0.140152 Vertex 16504 3.09812 21.2285 -0.219079 Vertex 16505 3.07379 21.3378 -0.578473 Vertex 16506 3.01575 21.4018 -1.03328 Vertex 16507 2.3455 17.1027 -1.43144 Vertex 16508 2.54505 16.8374 -0.847203 Vertex 16509 2.69009 16.8009 -0.356431 Vertex 16510 2.85958 16.9366 -0.0680255 Vertex 16511 2.98173 17.2429 0.567305 Vertex 16512 2.90245 17.5632 0.939213 Vertex 16513 2.85111 17.8129 1.16135 Vertex 16514 2.82978 17.951 1.29245 Vertex 16515 2.83335 18.0998 1.41967 Vertex 16516 2.51159 17.5866 -1.12872 Vertex 16517 2.98176 17.5998 0.120135 Vertex 16518 2.98038 18.7813 1.24565 Vertex 16519 2.95148 19.2561 1.45758 Vertex 16520 2.8743 19.5751 1.56679 Vertex 16521 2.79175 19.8547 1.78739 Vertex 16522 2.6159 20.2237 2.26963 Vertex 16523 3.02615 18.5966 1.75024 Vertex 16524 2.97497 18.8213 1.92062 Vertex 16525 2.9441 18.3863 2.23541 Vertex 16526 2.82284 18.6601 2.51139 Vertex 16527 2.79253 18.2102 2.76016 Vertex 16528 2.61601 18.4142 3.04614 Vertex 16529 2.60516 17.9526 3.08709 Vertex 16530 2.39331 18.0611 3.36478 Vertex 16531 2.52746 18.9755 2.80701 Vertex 16532 2.83201 19.1491 2.00599 Vertex 16533 2.48533 19.434 2.48213 Vertex 16534 2.69353 19.5569 2.15955 Vertex 16535 2.36083 19.6423 2.68208 Vertex 16536 2.53632 19.8867 2.48426 Vertex 16537 2.11836 19.8825 3.01548 Vertex 16538 2.26714 20.1549 2.98514 Vertex 16539 1.74433 19.9952 3.31374 Vertex 16540 1.8517 20.1595 3.4104 Vertex 16541 1.33403 19.9146 3.5064 Vertex 16542 1.38241 19.9906 3.6457 Vertex 16543 1.02102 19.7163 3.56737 Vertex 16544 1.03097 19.7937 3.7355 Vertex 16545 0.733121 19.5208 3.52807 Vertex 16546 0.713704 19.6675 3.72136 Vertex 16547 0.790252 19.441 3.47389 Vertex 16548 1.04695 19.6609 3.48744 Vertex 16549 1.33793 19.8271 3.44283 Vertex 16550 1.6863 19.7655 3.28571 Vertex 16551 2.01045 19.6961 3.02165 Vertex 16552 2.29409 19.178 2.97136 Vertex 16553 1.64433 18.9408 3.5397 Vertex 16554 0.124922 13.943 3.3665 Vertex 16555 0.175665 13.9034 2.98877 Vertex 16556 0.226768 13.9883 2.55576 Vertex 16557 0.332093 14.0146 3.4181 Vertex 16558 0.499777 13.9931 3.03438 Vertex 16559 0.693316 14.0752 2.59511 Vertex 16560 0.746471 14.1265 3.14062 Vertex 16561 1.0839 14.2438 2.72044 Vertex 16562 0.883823 14.2801 3.30529 Vertex 16563 1.27808 14.5338 2.94629 Vertex 16564 0.524955 14.1997 3.67881 Vertex 16565 0.898989 14.482 3.55597 Vertex 16566 1.20694 14.9049 3.33377 Vertex 16567 0.501637 14.3215 3.82259 Vertex 16568 0.763407 14.6664 3.80335 Vertex 16569 0.93135 15.0912 3.71244 Vertex 16570 0.368398 14.4274 3.94127 Vertex 16571 0.488115 14.7775 3.95899 Vertex 16572 0.556699 15.1156 3.88924 Vertex 16573 0.143395 14.498 3.99609 Vertex 16574 0.168665 14.8382 4.04232 Vertex 16575 0.18305 15.124 3.96918 Vertex 16576 0.619587 15.4114 3.92578 Vertex 16577 0.212484 15.4453 4.04311 Vertex 16578 2.11933 17.2574 3.21925 Vertex 16579 2.2128 16.4068 2.91472 Vertex 16580 1.73049 16.0229 3.03243 Vertex 16581 1.87123 16.4239 2.95458 Vertex 16582 1.82772 16.9167 3.06372 Vertex 16583 1.67326 17.1601 3.17002 Vertex 16584 2.22131 17.622 3.36495 Vertex 16585 1.86819 17.7223 3.50761 Vertex 16586 1.38217 17.9636 3.65709 Vertex 16587 0.979722 18.1921 3.75489 Vertex 16588 2.0459 18.1624 3.54247 Vertex 16589 2.06462 18.5932 3.51364 Vertex 16590 1.54174 18.3011 3.63569 Vertex 16591 1.63876 18.6518 3.57402 Vertex 16592 1.05014 18.4631 3.67799 Vertex 16593 1.07311 18.744 3.58185 Vertex 16594 1.51794 15.5692 3.31465 Vertex 16595 1.44274 15.9041 3.29579 Vertex 16596 1.43879 17.1792 3.3615 Vertex 16597 1.44665 17.4128 3.55517 Vertex 16598 1.06693 15.5952 3.73941 Vertex 16599 1.00795 15.9419 3.61611 Vertex 16600 1.0419 17.1298 3.69521 Vertex 16601 0.861963 17.6129 4.05124 Vertex 16602 0.658617 15.6741 4.01151 Vertex 16603 0.5737 15.9928 3.84832 Vertex 16604 0.627858 17.0711 3.93653 Vertex 16605 0.71702 17.2924 4.18169 Vertex 16606 0.22925 15.7305 4.16453 Vertex 16607 0.19315 16.0079 3.97362 Vertex 16608 0.22313 17.004 4.06237 Vertex 16609 0.308075 17.2183 4.30272 Vertex 16610 0.331531 17.4867 4.30086 Vertex 16611 0.0945435 17.4182 4.36378 Vertex 16612 0.582535 17.7682 4.11885 Vertex 16613 0.32533 17.7133 4.2399 Vertex 16614 0.0884078 17.638 4.47841 Vertex 16615 0.262872 17.8822 4.42585 Vertex 16616 0.118065 17.8633 4.7132 Vertex 16617 0.1576 18.1003 4.86612 Vertex 16618 0.397093 18.0861 4.67476 Vertex 16619 0.608157 18.0511 4.39368 Vertex 16620 0.768787 17.9731 4.22467 Vertex 16621 0.806018 17.8574 4.0879 Vertex 16622 0.811409 18.1286 3.96273 Vertex 16623 0.767927 18.2443 4.07384 Vertex 16624 0.646664 18.3209 4.1818 Vertex 16625 0.526257 18.3701 4.34547 Vertex 16626 0.402971 18.4471 4.61643 Vertex 16627 0.161567 18.5131 4.79833 Vertex 16628 0.667805 19.2451 3.44971 Vertex 16629 0.595642 19.2848 3.46194 Vertex 16630 0.473911 19.5199 3.69349 Vertex 16631 0.396127 19.6864 3.88515 Vertex 16632 0.197062 19.8546 3.96547 Vertex 16633 0.698655 18.5614 3.79036 Vertex 16634 0.673363 18.8337 3.69496 Vertex 16635 0.47854 18.6655 4.08828 Vertex 16636 0.458361 18.9659 3.97185 Vertex 16637 0.420046 19.2625 3.79508 Vertex 16638 0.3337 18.8013 4.38522 Vertex 16639 0.302053 19.0748 4.22185 Vertex 16640 0.275672 19.3806 3.99038 Vertex 16641 0.128283 18.8663 4.52421 Vertex 16642 0.110646 19.1256 4.33469 Vertex 16643 0.106704 19.4412 4.06612 Vertex 16644 2.52381 17.3875 2.46532 Vertex 16645 2.50016 17.1786 2.50496 Vertex 16646 2.4473 17.0472 2.17611 Vertex 16647 2.48378 16.8545 1.88066 Vertex 16648 2.58542 16.5597 1.57375 Vertex 16649 2.64279 16.2935 1.26259 Vertex 16650 2.59507 16.0147 0.938424 Vertex 16651 2.41105 15.6566 0.612823 Vertex 16652 2.19737 15.427 0.400347 Vertex 16653 2.09202 15.1637 0.173804 Vertex 16654 2.25155 15.3729 -0.158779 Vertex 16655 2.34576 15.6854 0.120023 Vertex 16656 2.56108 15.8813 0.376554 Vertex 16657 2.71582 16.214 0.731207 Vertex 16658 2.72887 16.4753 1.09223 Vertex 16659 2.63583 16.7222 1.44817 Vertex 16660 2.52509 17.032 1.77862 Vertex 16661 2.49347 17.2833 2.04334 Vertex 16662 2.56817 17.5501 2.35034 Vertex 16663 2.69017 16.9025 1.32924 Vertex 16664 2.57668 17.1998 1.65532 Vertex 16665 2.54543 17.429 1.88771 Vertex 16666 2.63226 17.681 2.13139 Vertex 16667 2.77458 17.9842 2.45574 Vertex 16668 2.4824 16.1169 1.91102 Vertex 16669 2.42736 16.7998 2.29299 Vertex 16670 2.44657 16.639 1.98829 Vertex 16671 2.54339 16.3787 1.71295 Vertex 16672 2.57825 16.1083 1.43024 Vertex 16673 2.49588 15.8331 1.14399 Vertex 16674 2.28691 15.5022 0.867415 Vertex 16675 2.0661 15.2486 0.678687 Vertex 16676 1.93371 15.0062 0.477058 Vertex 16677 1.70029 14.8388 0.842357 Vertex 16678 1.90938 15.0487 1.04133 Vertex 16679 2.17233 15.2993 1.2493 Vertex 16680 2.40243 15.5733 1.47582 Vertex 16681 2.50056 15.8366 1.68652 Vertex 16682 2.41554 16.3858 2.31913 Vertex 16683 2.39661 16.4192 2.66858 Vertex 16684 2.46274 16.9073 2.81276 Vertex 16685 2.50504 17.2526 2.87662 Vertex 16686 2.56173 17.5452 2.85975 Vertex 16687 2.66173 17.8095 2.73242 Vertex 16688 0.240362 14.4211 1.37473 Vertex 16689 0.917723 14.4967 1.25168 Vertex 16690 1.47541 14.6311 1.21098 Vertex 16691 1.77591 14.8105 1.40151 Vertex 16692 2.11195 15.0565 1.66783 Vertex 16693 2.34544 15.465 2.02377 Vertex 16694 2.28316 15.8848 2.5702 Vertex 16695 0.264502 14.1131 2.14944 Vertex 16696 0.255198 14.2598 1.75569 Vertex 16697 0.828928 14.2067 2.13222 Vertex 16698 0.861891 14.3353 1.67472 Vertex 16699 1.31366 14.4187 1.65458 Vertex 16700 1.38966 14.3725 2.29502 Vertex 16701 1.61883 14.5492 1.82627 Vertex 16702 1.9234 14.7446 2.08329 Vertex 16703 1.61718 14.7803 2.63898 Vertex 16704 2.01518 15.0637 2.36886 Vertex 16705 1.54963 15.2075 3.01857 Vertex 16706 1.98828 15.4559 2.69925 Vertex 16707 0.852764 23.2377 1.51404 Vertex 16708 0.914219 22.6664 2.37442 Vertex 16709 0.257726 23.2498 1.70263 Vertex 16710 0.253547 22.6108 2.59712 Vertex 16711 0.119074 20.8595 3.75688 Vertex 16712 0.0888143 20.2714 4.01611 Vertex 16713 0.289851 20.2593 3.98905 Vertex 16714 0.305899 21.828 3.17195 Vertex 16715 0.457169 20.9411 3.70066 Vertex 16716 0.585942 20.3851 3.94687 Vertex 16717 0.782655 21.1678 3.51075 Vertex 16718 0.950864 20.6572 3.7852 Vertex 16719 0.998715 22.0669 2.86513 Vertex 16720 1.16933 21.4467 3.2324 Vertex 16721 1.31773 20.9225 3.47826 Vertex 16722 1.50647 21.6389 3.01849 Vertex 16723 1.67811 21.1204 3.2104 Vertex 16724 2.12022 21.2248 2.74768 Vertex 16725 2.55267 20.9498 1.99837 Vertex 16726 1.98587 21.7122 2.57064 Vertex 16727 2.56381 21.4541 1.78139 Vertex 16728 1.86105 22.2043 2.29586 Vertex 16729 2.56205 21.9503 1.46622 Vertex 16730 1.75156 22.6489 1.90901 Vertex 16731 2.52115 22.351 1.08605 Vertex 16732 1.6519 23.1297 1.09356 Vertex 16733 2.45458 22.7533 0.419882 Vertex 16734 1.19721 23.3852 -0.358064 Vertex 16735 2.157 23.0117 -0.719956 Vertex 16736 0.705646 23.0426 -1.86668 Vertex 16737 1.65264 22.7442 -1.90592 Vertex 16738 2.77678 20.3902 1.42798 Vertex 16739 2.86949 20.9175 1.0795 Vertex 16740 2.97184 21.4488 0.623108 Vertex 16741 2.98726 21.8135 0.230513 Vertex 16742 2.93702 22.0758 -0.221361 Vertex 16743 2.73161 22.2615 -0.954402 Vertex 16744 2.33415 22.1231 -1.77948 Vertex 16745 1.28836 16.7713 -2.39122 Vertex 16746 1.66596 17.1567 -2.11328 Vertex 16747 2.06158 16.2305 -1.82619 Vertex 16748 2.19687 16.6516 -1.6314 Vertex 16749 2.38192 15.7487 -0.948984 Vertex 16750 2.42677 16.261 -0.849185 Vertex 16751 2.53234 16.1417 -0.186653 Vertex 16752 2.74033 16.3081 0.11059 Vertex 16753 2.87498 16.5442 0.468142 Vertex 16754 2.88181 16.8138 0.812675 Vertex 16755 2.78322 17.1462 1.17038 Vertex 16756 2.69079 17.4276 1.45841 Vertex 16757 2.66604 17.6048 1.6326 Vertex 16758 2.72498 17.8092 1.79346 Vertex 16759 2.86271 18.1026 2.00082 Vertex 16760 2.99968 17.8913 -0.729867 Vertex 16761 2.9389 17.7697 -0.407115 Vertex 16762 3.05687 17.8544 -0.323711 Vertex 16763 3.17374 19.5499 -1.32311 Vertex 16764 3.14237 19.0324 -1.32416 Vertex 16765 2.93984 19.0668 -1.23443 Vertex 16766 2.88724 18.6658 -1.10108 Vertex 16767 3.0681 18.6164 -1.19748 Vertex 16768 3.01286 18.3008 -1.01109 Vertex 16769 2.855 18.3418 -0.908826 Vertex 16770 3.19251 18.0146 -0.831326 Vertex 16771 3.17889 18.2905 -1.02169 Vertex 16772 3.23762 18.596 -1.21039 Vertex 16773 3.32228 19.0375 -1.35066 Vertex 16774 3.37551 19.5428 -1.35024 Vertex 16775 3.40065 19.9084 -1.13163 Vertex 16776 3.43492 20.0881 -0.776126 Vertex 16777 3.44476 20.0481 -0.405576 Vertex 16778 3.11811 18.7982 -0.379816 Vertex 16779 3.10458 18.9364 -0.497438 Vertex 16780 3.14522 19.2039 -0.577936 Vertex 16781 3.22874 19.3553 -0.442729 Vertex 16782 3.30519 19.5456 -0.396949 Vertex 16783 3.37788 19.7433 -0.543228 Vertex 16784 3.16699 18.9268 -0.781684 Vertex 16785 3.1767 19.0711 -0.855488 Vertex 16786 3.38904 19.729 -0.730884 Vertex 16787 3.15706 17.9953 -0.291568 Vertex 16788 3.324 19.0928 -1.04032 Vertex 16789 3.35988 19.4256 -1.00882 Vertex 16790 3.37576 19.6367 -0.901743 Vertex 16791 3.33356 19.4854 -0.676641 Vertex 16792 3.23292 19.4276 -0.563517 Vertex 16793 3.29012 19.6321 -0.587337 Vertex 16794 3.31751 19.5606 -0.793124 Vertex 16795 3.33416 19.3848 -0.893151 Vertex 16796 3.3235 19.1032 -0.948897 Vertex 16797 3.27613 18.8166 -0.888874 Vertex 16798 3.241 18.6062 -0.746059 Vertex 16799 3.13943 18.7559 -0.61426 Vertex 16800 3.14207 18.619 -0.509158 Vertex 16801 3.23401 18.4306 -0.685297 Vertex 16802 3.29421 18.6816 -1.06253 Vertex 16803 3.37309 19.0652 -1.18584 Vertex 16804 3.44134 19.4761 -1.1791 Vertex 16805 3.49404 19.7607 -1.02005 Vertex 16806 3.51451 19.8964 -0.758446 Vertex 16807 3.5175 19.8942 -0.487364 Vertex 16808 3.48032 19.7539 -0.287621 Vertex 16809 3.401 19.5145 -0.215568 Vertex 16810 3.32019 19.2696 -0.274422 Vertex 16811 3.22783 19.0941 -0.382794 Vertex 16812 3.38321 19.8201 -0.1289 Vertex 16813 3.31183 19.5269 -0.041996 Vertex 16814 3.25266 19.2312 -0.119674 Vertex 16815 -2.33011 18.7163 3.28582 Vertex 16816 -3.08033 19.4272 0.0652415 Vertex 16817 -3.1232 19.8063 0.001333 Vertex 16818 -3.20587 20.197 -0.293253 Vertex 16819 -3.1902 20.2065 -0.721863 Vertex 16820 -2.75878 17.7549 -0.61216 Vertex 16821 -2.67926 17.9571 -0.8201 Vertex 16822 -2.65205 18.2368 -1.05503 Vertex 16823 -2.68861 18.5791 -1.28923 Vertex 16824 -3.0957 20.0056 -1.10423 Vertex 16825 -2.80491 19.0628 -1.40637 Vertex 16826 -3.05423 19.0831 0.0252312 Vertex 16827 -2.60062 17.4019 -0.718962 Vertex 16828 -3.02355 18.3557 -0.0816015 Vertex 16829 -3.03662 18.6548 -0.0865643 Vertex 16830 -3.1094 18.9069 -0.164374 Vertex 16831 -3.02543 17.5489 0.419858 Vertex 16832 -2.97925 17.8473 0.792099 Vertex 16833 -2.92665 18.2034 1.1061 Vertex 16834 -2.96922 18.6208 1.13595 Vertex 16835 -3.05866 18.9604 0.927281 Vertex 16836 -3.0625 19.2716 0.835461 Vertex 16837 -3.00714 19.7397 0.875279 Vertex 16838 -3.05703 20.3348 0.594604 Vertex 16839 -3.11619 20.784 -0.0210338 Vertex 16840 -3.08442 20.9681 -0.687572 Vertex 16841 -2.84792 21.2572 -1.51013 Vertex 16842 -2.09659 21.9221 -2.19965 Vertex 16843 -1.40549 22.4353 -2.45242 Vertex 16844 -0.622943 22.709 -2.54526 Vertex 16845 -3.03207 17.4834 0.215558 Vertex 16846 -2.89762 18.3405 1.24462 Vertex 16847 -2.96951 19.9974 0.907199 Vertex 16848 -3.07897 18.9151 0.112482 Vertex 16849 -3.08282 19.3264 0.091767 Vertex 16850 -1.68032 18.8634 3.5533 Vertex 16851 -1.01652 19.0421 3.50107 Vertex 16852 -1.00364 19.0223 3.49804 Vertex 16853 -1.67155 18.8409 3.55622 Vertex 16854 -0.580797 15.2945 3.85641 Vertex 16855 -0.191408 15.2755 3.92086 Vertex 16856 -2.29917 16.9114 3.03785 Vertex 16857 -2.35032 17.2572 3.12266 Vertex 16858 -2.44459 17.5968 3.17157 Vertex 16859 -0.265543 17.072 4.26558 Vertex 16860 -1.13148 17.2066 3.85318 Vertex 16861 -1.49925 17.2556 3.46183 Vertex 16862 -2.02487 16.4134 2.97821 Vertex 16863 -1.83372 15.9254 3.04549 Vertex 16864 -1.53657 15.7738 3.37998 Vertex 16865 -1.09861 15.8256 3.77073 Vertex 16866 -0.645522 15.8776 4.01936 Vertex 16867 -0.218666 15.9032 4.15175 Vertex 16868 -0.730559 17.1512 4.14701 Vertex 16869 -1.78397 17.2136 3.24395 Vertex 16870 -2.02615 16.9207 3.10568 Vertex 16871 -0.926516 18.0404 3.77857 Vertex 16872 -0.690286 18.2802 3.85596 Vertex 16873 -1.72328 17.3718 3.36337 Vertex 16874 -1.28422 17.7775 3.6348 Vertex 16875 -0.803555 17.7922 4.02952 Vertex 16876 -0.849647 17.8796 3.95449 Vertex 16877 -0.808623 18.0635 3.89551 Vertex 16878 -0.664274 18.3085 3.89966 Vertex 16879 -0.744637 17.8126 4.11713 Vertex 16880 -0.714441 17.8899 4.24582 Vertex 16881 -0.555657 17.955 4.39886 Vertex 16882 -0.372471 17.9695 4.58576 Vertex 16883 -0.25326 17.867 4.60043 Vertex 16884 -0.209436 17.7202 4.40587 Vertex 16885 -1.11681 17.3595 3.89021 Vertex 16886 -1.01556 17.6787 3.89055 Vertex 16887 -0.894641 17.8738 3.90671 Vertex 16888 -0.855215 17.9594 4.02565 Vertex 16889 -0.80787 18.0986 4.1625 Vertex 16890 -0.649773 18.1942 4.31124 Vertex 16891 -0.523758 18.2351 4.44524 Vertex 16892 -0.417732 18.277 4.67475 Vertex 16893 -0.166755 18.3244 4.86954 Vertex 16894 -0.500638 18.4696 4.20431 Vertex 16895 -0.364604 18.5946 4.50914 Vertex 16896 -0.146747 18.6681 4.67252 Vertex 16897 -0.797793 18.0909 3.8502 Vertex 16898 -0.345897 17.9537 4.41523 Vertex 16899 -0.658465 17.8761 4.21881 Vertex 16900 -0.503407 17.937 4.32778 Vertex 16901 -0.476765 19.9776 4.02831 Vertex 16902 -0.533571 19.8309 3.96394 Vertex 16903 -2.24748 19.524 2.72581 Vertex 16904 -2.25365 19.5432 2.71311 Vertex 16905 -2.01116 19.7466 2.98927 Vertex 16906 -2.01513 19.7695 2.98163 Vertex 16907 -1.67672 19.898 3.24833 Vertex 16908 -1.67876 19.9217 3.24448 Vertex 16909 -1.32281 19.8668 3.42722 Vertex 16910 -1.32008 19.8849 3.42772 Vertex 16911 -1.03136 19.6893 3.47311 Vertex 16912 -1.02515 19.6993 3.4752 Vertex 16913 -0.769848 19.4579 3.45653 Vertex 16914 -0.761309 19.4644 3.45639 Vertex 16915 -1.68385 19.8481 3.27082 Vertex 16916 -1.99062 19.6131 3.05849 Vertex 16917 -2.17331 19.4632 2.89362 Vertex 16918 -2.23494 19.3672 2.84154 Vertex 16919 -2.17949 19.2537 3.00919 Vertex 16920 -1.98016 19.1249 3.30406 Vertex 16921 -1.57108 19.0655 3.48954 Vertex 16922 -1.01136 19.1435 3.51006 Vertex 16923 -0.719285 19.2633 3.47085 Vertex 16924 -0.825215 19.4142 3.47674 Vertex 16925 -1.06779 19.613 3.48554 Vertex 16926 -1.35495 19.7612 3.44357 Vertex 16927 -1.52762 19.1357 3.07209 Vertex 16928 -1.90394 19.1923 2.88813 Vertex 16929 -2.1009 19.2872 2.64965 Vertex 16930 -2.16918 19.3703 2.53761 Vertex 16931 -2.1246 19.4364 2.57156 Vertex 16932 -1.96297 19.5598 2.6979 Vertex 16933 -1.67564 19.7108 2.90791 Vertex 16934 -1.36042 19.7153 3.05407 Vertex 16935 -1.08271 19.5786 3.09354 Vertex 16936 -0.85362 19.3952 3.08738 Vertex 16937 -0.755913 19.2694 3.08834 Vertex 16938 -1.01725 19.1854 3.118 Vertex 16939 -2.23064 19.4985 2.79177 Vertex 16940 -1.01672 19.0817 3.5151 Vertex 16941 -1.50084 19.2926 2.57824 Vertex 16942 -1.24419 12.3186 -1.25963 Vertex 16943 -2.11687 16.0346 2.84017 Vertex 16944 -1.92231 15.7692 2.95053 Vertex 16945 -3.01481 19.1573 0.982132 Vertex 16946 -2.96223 19.5472 1.06922 Vertex 16947 -2.91576 19.8574 1.1491 Vertex 16948 -2.89655 20.0728 1.08416 Vertex 16949 -2.9838 20.495 0.713291 Vertex 16950 -3.08425 20.9893 0.140152 Vertex 16951 -3.09812 21.2285 -0.219079 Vertex 16952 -3.07379 21.3378 -0.578473 Vertex 16953 -3.01575 21.4018 -1.03328 Vertex 16954 -2.0074 17.4478 -1.78054 Vertex 16955 -2.21616 17.1027 -1.43144 Vertex 16956 -2.45002 16.8374 -0.847203 Vertex 16957 -2.65338 16.8009 -0.356431 Vertex 16958 -2.85115 16.9366 -0.0680255 Vertex 16959 -2.99241 17.2429 0.567305 Vertex 16960 -2.9035 17.5632 0.939213 Vertex 16961 -2.85111 17.8129 1.16135 Vertex 16962 -2.82978 17.951 1.29245 Vertex 16963 -2.83335 18.0998 1.41967 Vertex 16964 -2.44225 17.5866 -1.12872 Vertex 16965 -2.97952 17.5998 0.120135 Vertex 16966 -2.98038 18.7813 1.24565 Vertex 16967 -2.95148 19.2561 1.45758 Vertex 16968 -2.8743 19.5751 1.56679 Vertex 16969 -2.79174 19.8547 1.78739 Vertex 16970 -2.6159 20.2237 2.26963 Vertex 16971 -3.02615 18.5966 1.75024 Vertex 16972 -2.97497 18.8213 1.92062 Vertex 16973 -2.9441 18.3863 2.23541 Vertex 16974 -2.82284 18.6601 2.51139 Vertex 16975 -2.79253 18.2102 2.76016 Vertex 16976 -2.61601 18.4142 3.04614 Vertex 16977 -2.60516 17.9526 3.08709 Vertex 16978 -2.39332 18.0611 3.36478 Vertex 16979 -2.52746 18.9755 2.80701 Vertex 16980 -2.83201 19.1491 2.00599 Vertex 16981 -2.48533 19.434 2.48213 Vertex 16982 -2.69353 19.5569 2.15955 Vertex 16983 -2.36083 19.6423 2.68208 Vertex 16984 -2.53632 19.8867 2.48426 Vertex 16985 -2.11836 19.8825 3.01548 Vertex 16986 -2.26714 20.1549 2.98514 Vertex 16987 -1.74433 19.9952 3.31374 Vertex 16988 -1.8517 20.1595 3.4104 Vertex 16989 -1.33403 19.9146 3.5064 Vertex 16990 -1.38241 19.9906 3.6457 Vertex 16991 -1.02102 19.7163 3.56737 Vertex 16992 -1.03097 19.7937 3.7355 Vertex 16993 -0.733121 19.5208 3.52807 Vertex 16994 -0.713704 19.6675 3.72136 Vertex 16995 -0.790252 19.441 3.47389 Vertex 16996 -1.04695 19.6609 3.48744 Vertex 16997 -1.33793 19.8271 3.44283 Vertex 16998 -1.6863 19.7655 3.28571 Vertex 16999 -2.01045 19.6961 3.02165 Vertex 17000 -2.29409 19.178 2.97136 Vertex 17001 -1.64432 18.9408 3.53971 Vertex 17002 -0.124922 13.943 3.3665 Vertex 17003 -0.188525 13.9034 2.98877 Vertex 17004 -0.258487 13.9883 2.55576 Vertex 17005 -0.332092 14.0146 3.4181 Vertex 17006 -0.499777 13.9931 3.03438 Vertex 17007 -0.702059 14.0752 2.59511 Vertex 17008 -0.746471 14.1265 3.14062 Vertex 17009 -1.0839 14.2438 2.72044 Vertex 17010 -0.883823 14.2802 3.30529 Vertex 17011 -1.27808 14.5338 2.94629 Vertex 17012 -0.524955 14.1997 3.67882 Vertex 17013 -0.898989 14.4819 3.55597 Vertex 17014 -1.20694 14.9049 3.33377 Vertex 17015 -0.501637 14.3215 3.82259 Vertex 17016 -0.763407 14.6664 3.80335 Vertex 17017 -0.93135 15.0912 3.71244 Vertex 17018 -0.368398 14.4274 3.94127 Vertex 17019 -0.488115 14.7775 3.95899 Vertex 17020 -0.556699 15.1156 3.88924 Vertex 17021 -0.143395 14.498 3.99609 Vertex 17022 -0.168665 14.8382 4.04232 Vertex 17023 -0.18305 15.124 3.96918 Vertex 17024 -0.619587 15.4114 3.92578 Vertex 17025 -0.212484 15.4453 4.04311 Vertex 17026 -2.11933 17.2574 3.21925 Vertex 17027 -2.2128 16.4068 2.91472 Vertex 17028 -1.73049 16.0229 3.03243 Vertex 17029 -1.87123 16.4238 2.95458 Vertex 17030 -1.82772 16.9167 3.06372 Vertex 17031 -1.67326 17.1601 3.17002 Vertex 17032 -2.22131 17.622 3.36495 Vertex 17033 -1.86819 17.7223 3.50762 Vertex 17034 -1.38217 17.9636 3.65709 Vertex 17035 -0.979722 18.1921 3.75488 Vertex 17036 -2.0459 18.1624 3.54247 Vertex 17037 -2.06462 18.5932 3.51364 Vertex 17038 -1.54174 18.3011 3.63569 Vertex 17039 -1.63876 18.6518 3.57402 Vertex 17040 -1.05014 18.463 3.67799 Vertex 17041 -1.07311 18.744 3.58185 Vertex 17042 -1.51794 15.5692 3.31465 Vertex 17043 -1.44274 15.9041 3.29579 Vertex 17044 -1.43878 17.1792 3.3615 Vertex 17045 -1.44665 17.4128 3.55517 Vertex 17046 -1.06693 15.5952 3.73941 Vertex 17047 -1.00795 15.9419 3.61611 Vertex 17048 -1.0419 17.1298 3.69521 Vertex 17049 -0.861963 17.6129 4.05124 Vertex 17050 -0.658617 15.6741 4.01151 Vertex 17051 -0.5737 15.9928 3.84832 Vertex 17052 -0.627859 17.0711 3.93653 Vertex 17053 -0.71702 17.2924 4.18169 Vertex 17054 -0.22925 15.7305 4.16453 Vertex 17055 -0.19315 16.0079 3.97362 Vertex 17056 -0.22313 17.004 4.06237 Vertex 17057 -0.308075 17.2183 4.30272 Vertex 17058 -0.331531 17.4867 4.30086 Vertex 17059 -0.0945435 17.4182 4.36378 Vertex 17060 -0.582535 17.7682 4.11885 Vertex 17061 -0.325329 17.7133 4.23989 Vertex 17062 -0.0884078 17.638 4.47841 Vertex 17063 -0.262872 17.8822 4.42585 Vertex 17064 -0.118065 17.8633 4.7132 Vertex 17065 -0.1576 18.1003 4.86612 Vertex 17066 -0.397093 18.0861 4.67476 Vertex 17067 -0.608157 18.0511 4.39368 Vertex 17068 -0.768787 17.9731 4.22467 Vertex 17069 -0.806018 17.8574 4.0879 Vertex 17070 -0.811409 18.1286 3.96273 Vertex 17071 -0.767927 18.2443 4.07384 Vertex 17072 -0.646663 18.3209 4.1818 Vertex 17073 -0.526257 18.3701 4.34547 Vertex 17074 -0.402971 18.4471 4.61643 Vertex 17075 -0.161567 18.5131 4.79833 Vertex 17076 -0.667805 19.2451 3.44971 Vertex 17077 -0.595642 19.2848 3.46194 Vertex 17078 -0.473911 19.5199 3.69349 Vertex 17079 -0.396127 19.6864 3.88515 Vertex 17080 -0.197062 19.8546 3.96547 Vertex 17081 -0.698655 18.5614 3.79036 Vertex 17082 -0.673363 18.8337 3.69496 Vertex 17083 -0.47854 18.6655 4.08828 Vertex 17084 -0.458361 18.9659 3.97184 Vertex 17085 -0.420046 19.2625 3.79508 Vertex 17086 -0.3337 18.8013 4.38523 Vertex 17087 -0.302053 19.0748 4.22185 Vertex 17088 -0.275672 19.3806 3.99038 Vertex 17089 -0.128283 18.8663 4.52421 Vertex 17090 -0.110646 19.1256 4.33469 Vertex 17091 -0.106704 19.4412 4.06612 Vertex 17092 -2.52381 17.3875 2.46531 Vertex 17093 -2.50016 17.1786 2.50496 Vertex 17094 -2.4473 17.0472 2.17611 Vertex 17095 -2.48412 16.8545 1.88066 Vertex 17096 -2.60029 16.5597 1.57375 Vertex 17097 -2.69166 16.2935 1.26259 Vertex 17098 -2.67818 16.0148 0.938424 Vertex 17099 -2.5197 15.6566 0.612823 Vertex 17100 -2.31469 15.427 0.400347 Vertex 17101 -2.2096 15.1637 0.173804 Vertex 17102 -2.3223 15.3729 -0.158779 Vertex 17103 -2.42445 15.6854 0.120022 Vertex 17104 -2.64358 15.8813 0.376554 Vertex 17105 -2.78579 16.214 0.731207 Vertex 17106 -2.77492 16.4753 1.09223 Vertex 17107 -2.65023 16.7222 1.44817 Vertex 17108 -2.52528 17.032 1.77862 Vertex 17109 -2.49347 17.2833 2.04334 Vertex 17110 -2.56817 17.5501 2.35034 Vertex 17111 -2.70183 16.9025 1.32924 Vertex 17112 -2.57671 17.1998 1.65531 Vertex 17113 -2.54543 17.429 1.88771 Vertex 17114 -2.63226 17.681 2.13139 Vertex 17115 -2.77458 17.9842 2.45574 Vertex 17116 -2.49185 16.1169 1.91102 Vertex 17117 -2.42736 16.7998 2.29299 Vertex 17118 -2.44703 16.639 1.98829 Vertex 17119 -2.5569 16.3787 1.71295 Vertex 17120 -2.6238 16.1083 1.43024 Vertex 17121 -2.58087 15.8331 1.14399 Vertex 17122 -2.40361 15.5022 0.867415 Vertex 17123 -2.19727 15.2486 0.678687 Vertex 17124 -2.06978 15.0061 0.477058 Vertex 17125 -1.82799 14.8388 0.842357 Vertex 17126 -2.02791 15.0487 1.04133 Vertex 17127 -2.26975 15.2993 1.2493 Vertex 17128 -2.46609 15.5733 1.47582 Vertex 17129 -2.53275 15.8366 1.68652 Vertex 17130 -2.41554 16.3858 2.31913 Vertex 17131 -2.39661 16.4192 2.66858 Vertex 17132 -2.46274 16.9073 2.81276 Vertex 17133 -2.50504 17.2526 2.87662 Vertex 17134 -2.56173 17.5452 2.85975 Vertex 17135 -2.66173 17.8095 2.73242 Vertex 17136 -0.282578 14.4211 1.37473 Vertex 17137 -0.980044 14.4967 1.25168 Vertex 17138 -1.55708 14.6311 1.21098 Vertex 17139 -1.84879 14.8105 1.40151 Vertex 17140 -2.15897 15.0565 1.66783 Vertex 17141 -2.35815 15.465 2.02377 Vertex 17142 -2.28316 15.8848 2.5702 Vertex 17143 -0.299785 14.1131 2.14944 Vertex 17144 -0.290676 14.2598 1.75569 Vertex 17145 -0.846412 14.2067 2.13222 Vertex 17146 -0.888222 14.3353 1.67472 Vertex 17147 -1.33664 14.4187 1.65458 Vertex 17148 -1.3897 14.3725 2.29502 Vertex 17149 -1.63848 14.5492 1.82627 Vertex 17150 -1.9319 14.7446 2.08329 Vertex 17151 -1.61718 14.7803 2.63898 Vertex 17152 -2.01612 15.0637 2.36886 Vertex 17153 -1.54963 15.2075 3.01857 Vertex 17154 -1.98828 15.4559 2.69925 Vertex 17155 -0.852764 23.2377 1.51404 Vertex 17156 -0.914219 22.6664 2.37442 Vertex 17157 -0.257726 23.2498 1.70263 Vertex 17158 -0.253547 22.6108 2.59712 Vertex 17159 -0.119074 20.8595 3.75688 Vertex 17160 -0.0888143 20.2714 4.01611 Vertex 17161 -0.289851 20.2593 3.98905 Vertex 17162 -0.305899 21.828 3.17195 Vertex 17163 -0.457169 20.9411 3.70066 Vertex 17164 -0.585942 20.3851 3.94687 Vertex 17165 -0.782655 21.1678 3.51075 Vertex 17166 -0.950864 20.6572 3.7852 Vertex 17167 -0.998715 22.0669 2.86513 Vertex 17168 -1.16933 21.4467 3.2324 Vertex 17169 -1.31773 20.9225 3.47826 Vertex 17170 -1.50647 21.6389 3.01849 Vertex 17171 -1.67811 21.1204 3.2104 Vertex 17172 -2.12022 21.2248 2.74768 Vertex 17173 -2.55267 20.9498 1.99837 Vertex 17174 -1.98587 21.7122 2.57064 Vertex 17175 -2.56381 21.4541 1.78139 Vertex 17176 -1.86105 22.2043 2.29586 Vertex 17177 -2.56205 21.9503 1.46622 Vertex 17178 -1.75155 22.6489 1.90901 Vertex 17179 -2.52115 22.351 1.08605 Vertex 17180 -1.6519 23.1297 1.09356 Vertex 17181 -2.45458 22.7533 0.419882 Vertex 17182 -1.19721 23.3852 -0.358064 Vertex 17183 -2.157 23.0117 -0.719956 Vertex 17184 -0.705646 23.0426 -1.86668 Vertex 17185 -1.65264 22.7442 -1.90592 Vertex 17186 -2.77678 20.3902 1.42798 Vertex 17187 -2.86949 20.9175 1.0795 Vertex 17188 -2.97184 21.4488 0.623107 Vertex 17189 -2.98726 21.8135 0.230513 Vertex 17190 -2.93702 22.0758 -0.221361 Vertex 17191 -2.73161 22.2615 -0.954402 Vertex 17192 -2.33415 22.1231 -1.77948 Vertex 17193 -1.55632 17.1567 -2.11328 Vertex 17194 -1.87447 16.2305 -1.82619 Vertex 17195 -2.0274 16.6516 -1.6314 Vertex 17196 -2.29722 15.7487 -0.948984 Vertex 17197 -2.3322 16.261 -0.849185 Vertex 17198 -2.54145 16.1417 -0.186653 Vertex 17199 -2.77275 16.3081 0.11059 Vertex 17200 -2.91601 16.5442 0.468142 Vertex 17201 -2.91256 16.8138 0.812675 Vertex 17202 -2.79004 17.1462 1.17038 Vertex 17203 -2.69079 17.4276 1.45841 Vertex 17204 -2.66604 17.6048 1.6326 Vertex 17205 -2.72498 17.8092 1.79346 Vertex 17206 -2.86271 18.1026 2.00082 Vertex 17207 -2.98568 17.8913 -0.729867 Vertex 17208 -2.92363 17.7697 -0.407115 Vertex 17209 -3.05073 17.8544 -0.323711 Vertex 17210 -3.17374 19.5499 -1.32311 Vertex 17211 -3.14237 19.0324 -1.32417 Vertex 17212 -2.93984 19.0668 -1.23443 Vertex 17213 -2.88724 18.6658 -1.10108 Vertex 17214 -3.0681 18.6164 -1.19748 Vertex 17215 -3.01248 18.3008 -1.01109 Vertex 17216 -2.85459 18.3418 -0.908826 Vertex 17217 -3.18856 18.0146 -0.831326 Vertex 17218 -3.1788 18.2905 -1.02168 Vertex 17219 -3.23762 18.596 -1.21039 Vertex 17220 -3.32228 19.0375 -1.35066 Vertex 17221 -3.37551 19.5428 -1.35024 Vertex 17222 -3.40064 19.9084 -1.13163 Vertex 17223 -3.43492 20.0881 -0.776126 Vertex 17224 -3.44476 20.0481 -0.405576 Vertex 17225 -3.11811 18.7982 -0.379816 Vertex 17226 -3.10458 18.9364 -0.497438 Vertex 17227 -3.14522 19.2039 -0.577936 Vertex 17228 -3.22874 19.3553 -0.442729 Vertex 17229 -3.30519 19.5456 -0.39695 Vertex 17230 -3.37788 19.7432 -0.543228 Vertex 17231 -3.16699 18.9268 -0.781684 Vertex 17232 -3.1767 19.0711 -0.855488 Vertex 17233 -3.38904 19.729 -0.730884 Vertex 17234 -3.15649 17.9952 -0.291568 Vertex 17235 -3.324 19.0928 -1.04032 Vertex 17236 -3.35988 19.4256 -1.00882 Vertex 17237 -3.37576 19.6367 -0.901743 Vertex 17238 -3.33356 19.4854 -0.676641 Vertex 17239 -3.23292 19.4276 -0.563517 Vertex 17240 -3.29012 19.6321 -0.587337 Vertex 17241 -3.31751 19.5606 -0.793124 Vertex 17242 -3.33415 19.3848 -0.89315 Vertex 17243 -3.3235 19.1032 -0.948897 Vertex 17244 -3.27613 18.8166 -0.888873 Vertex 17245 -3.241 18.6061 -0.746059 Vertex 17246 -3.13943 18.7559 -0.614259 Vertex 17247 -3.14207 18.619 -0.509158 Vertex 17248 -3.23401 18.4306 -0.685296 Vertex 17249 -3.29421 18.6816 -1.06253 Vertex 17250 -3.37309 19.0652 -1.18584 Vertex 17251 -3.44134 19.4761 -1.1791 Vertex 17252 -3.49404 19.7607 -1.02005 Vertex 17253 -3.51451 19.8964 -0.758446 Vertex 17254 -3.5175 19.8942 -0.487364 Vertex 17255 -3.48032 19.7539 -0.287621 Vertex 17256 -3.401 19.5145 -0.215568 Vertex 17257 -3.3202 19.2696 -0.274422 Vertex 17258 -3.22783 19.0941 -0.382794 Vertex 17259 -3.38321 19.8201 -0.1289 Vertex 17260 -3.31183 19.5269 -0.041996 Vertex 17261 -3.25266 19.2312 -0.119674 Vertex 17262 1.19839 20.6779 2.10524 Vertex 17263 1.40496 20.6442 2.05447 Vertex 17264 1.60387 20.5777 2.00557 Vertex 17265 1.79022 20.4799 1.95976 Vertex 17266 1.95942 20.3533 1.91816 Vertex 17267 2.10731 20.201 1.88181 Vertex 17268 2.23024 20.0268 1.8516 Vertex 17269 2.3252 19.8349 1.82826 Vertex 17270 2.38983 19.63 1.81237 Vertex 17271 2.42254 19.4173 1.80433 Vertex 17272 2.42254 19.2019 1.80434 Vertex 17273 2.38983 18.9892 1.81239 Vertex 17274 2.3252 18.7844 1.82828 Vertex 17275 2.23025 18.5925 1.85163 Vertex 17276 2.10732 18.4183 1.88186 Vertex 17277 1.95943 18.266 1.91822 Vertex 17278 1.79023 18.1394 1.95982 Vertex 17279 1.60388 18.0416 2.00563 Vertex 17280 1.40497 17.975 2.05453 Vertex 17281 1.1984 17.9413 2.10532 Vertex 17282 0.989257 17.9413 2.15673 Vertex 17283 0.782686 17.975 2.20752 Vertex 17284 0.583777 18.0416 2.25641 Vertex 17285 0.397427 18.1394 2.30222 Vertex 17286 0.228224 18.266 2.34382 Vertex 17287 0.080335 18.4183 2.38017 Vertex 17288 -0.0425985 18.5925 2.41039 Vertex 17289 -0.137549 18.7844 2.43372 Vertex 17290 -0.20218 18.9892 2.4496 Vertex 17291 -0.234899 19.2019 2.45764 Vertex 17292 -0.234899 19.4173 2.45764 Vertex 17293 -0.202183 19.63 2.44959 Vertex 17294 -0.137555 19.8349 2.4337 Vertex 17295 -0.0426062 20.0268 2.41035 Vertex 17296 0.0803252 20.201 2.38012 Vertex 17297 0.228213 20.3533 2.34376 Vertex 17298 0.397415 20.4799 2.30216 Vertex 17299 0.583764 20.5777 2.25635 Vertex 17300 0.782672 20.6442 2.20745 Vertex 17301 0.989243 20.6779 2.15666 Vertex 17302 1.24691 20.6442 2.31373 Vertex 17303 1.4484 20.6114 2.2642 Vertex 17304 1.64241 20.5464 2.21651 Vertex 17305 1.82417 20.4511 2.17182 Vertex 17306 1.98921 20.3276 2.13125 Vertex 17307 2.13345 20.1791 2.0958 Vertex 17308 2.25336 20.0091 2.06632 Vertex 17309 2.34597 19.822 2.04356 Vertex 17310 2.40901 19.6222 2.02807 Vertex 17311 2.44092 19.4146 2.02023 Vertex 17312 2.44092 19.2046 2.02023 Vertex 17313 2.40901 18.9971 2.02808 Vertex 17314 2.34598 18.7973 2.04359 Vertex 17315 2.25337 18.6101 2.06636 Vertex 17316 2.13346 18.4402 2.09584 Vertex 17317 1.98922 18.2917 2.13131 Vertex 17318 1.82418 18.1682 2.17188 Vertex 17319 1.64242 18.0728 2.21657 Vertex 17320 1.44841 18.0079 2.26427 Vertex 17321 1.24693 17.9751 2.3138 Vertex 17322 1.04293 17.9751 2.36395 Vertex 17323 0.841445 18.0079 2.41348 Vertex 17324 0.647434 18.0728 2.46117 Vertex 17325 0.465672 18.1682 2.50586 Vertex 17326 0.300636 18.2917 2.54642 Vertex 17327 0.156388 18.4402 2.58188 Vertex 17328 0.036482 18.6102 2.61136 Vertex 17329 -0.0561313 18.7973 2.63412 Vertex 17330 -0.11917 18.9971 2.64961 Vertex 17331 -0.151083 19.2046 2.65745 Vertex 17332 -0.151085 19.4146 2.65744 Vertex 17333 -0.119174 19.6222 2.6496 Vertex 17334 -0.0561367 19.8219 2.63409 Vertex 17335 0.036474 20.0091 2.61132 Vertex 17336 0.156378 20.1791 2.58184 Vertex 17337 0.300624 20.3276 2.54637 Vertex 17338 0.46566 20.4511 2.5058 Vertex 17339 0.647421 20.5464 2.46111 Vertex 17340 0.841432 20.6114 2.41341 Vertex 17341 1.04291 20.6442 2.36388 Vertex 17342 1.29103 20.5777 2.51512 Vertex 17343 1.48247 20.5465 2.46806 Vertex 17344 1.6668 20.4848 2.42274 Vertex 17345 1.8395 20.3941 2.3803 Vertex 17346 1.9963 20.2768 2.34175 Vertex 17347 2.13336 20.1357 2.30805 Vertex 17348 2.24729 19.9743 2.28005 Vertex 17349 2.33528 19.7964 2.25843 Vertex 17350 2.39517 19.6066 2.24371 Vertex 17351 2.4255 19.4094 2.23626 Vertex 17352 2.4255 19.2099 2.23626 Vertex 17353 2.39518 19.0127 2.24372 Vertex 17354 2.33529 18.8229 2.25845 Vertex 17355 2.24729 18.645 2.28009 Vertex 17356 2.13337 18.4835 2.3081 Vertex 17357 1.99631 18.3424 2.34179 Vertex 17358 1.83951 18.2252 2.38035 Vertex 17359 1.66681 18.1345 2.42281 Vertex 17360 1.48248 18.0728 2.46813 Vertex 17361 1.29104 18.0416 2.51519 Vertex 17362 1.09722 18.0416 2.56284 Vertex 17363 0.905782 18.0728 2.6099 Vertex 17364 0.721445 18.1345 2.65522 Vertex 17365 0.548747 18.2252 2.69767 Vertex 17366 0.391941 18.3424 2.73621 Vertex 17367 0.254887 18.4836 2.76991 Vertex 17368 0.14096 18.6451 2.79791 Vertex 17369 0.0529655 18.8229 2.81954 Vertex 17370 -0.00693 19.0127 2.83426 Vertex 17371 -0.0372512 19.2099 2.8417 Vertex 17372 -0.0372528 19.4094 2.8417 Vertex 17373 -0.00693325 19.6066 2.83424 Vertex 17374 0.0529603 19.7964 2.81951 Vertex 17375 0.140953 19.9743 2.79787 Vertex 17376 0.254878 20.1357 2.76986 Vertex 17377 0.391931 20.2769 2.73617 Vertex 17378 0.548736 20.3941 2.69762 Vertex 17379 0.721432 20.4848 2.65515 Vertex 17380 0.905768 20.5465 2.60984 Vertex 17381 1.0972 20.5777 2.56277 Vertex 17382 1.32965 20.4799 2.70447 Vertex 17383 1.50633 20.4511 2.66103 Vertex 17384 1.67645 20.3941 2.61921 Vertex 17385 1.83583 20.3105 2.58003 Vertex 17386 1.98055 20.2022 2.54446 Vertex 17387 2.10703 20.072 2.51337 Vertex 17388 2.21217 19.923 2.48752 Vertex 17389 2.29338 19.7589 2.46756 Vertex 17390 2.34866 19.5837 2.45398 Vertex 17391 2.37665 19.4018 2.44711 Vertex 17392 2.37665 19.2176 2.44711 Vertex 17393 2.34866 19.0356 2.45399 Vertex 17394 2.29339 18.8604 2.46759 Vertex 17395 2.21218 18.6963 2.48756 Vertex 17396 2.10704 18.5473 2.5134 Vertex 17397 1.98055 18.417 2.5445 Vertex 17398 1.83584 18.3088 2.58009 Vertex 17399 1.67646 18.2252 2.61927 Vertex 17400 1.50634 18.1682 2.6611 Vertex 17401 1.32966 18.1394 2.70453 Vertex 17402 1.15079 18.1394 2.7485 Vertex 17403 0.974112 18.1682 2.79193 Vertex 17404 0.803988 18.2251 2.83376 Vertex 17405 0.644607 18.3088 2.87294 Vertex 17406 0.499892 18.417 2.90851 Vertex 17407 0.373406 18.5473 2.9396 Vertex 17408 0.268264 18.6963 2.96545 Vertex 17409 0.187055 18.8604 2.9854 Vertex 17410 0.131778 19.0356 2.99899 Vertex 17411 0.103795 19.2176 3.00587 Vertex 17412 0.103794 19.4018 3.00586 Vertex 17413 0.131775 19.5837 2.99898 Vertex 17414 0.18705 19.7589 2.98538 Vertex 17415 0.268258 19.923 2.96541 Vertex 17416 0.373398 20.072 2.93956 Vertex 17417 0.499883 20.2022 2.90846 Vertex 17418 0.644597 20.3105 2.87289 Vertex 17419 0.803977 20.3941 2.8337 Vertex 17420 0.974099 20.4511 2.79188 Vertex 17421 1.15078 20.4799 2.74844 Vertex 17422 1.36183 20.3533 2.8771 Vertex 17423 1.51939 20.3276 2.83837 Vertex 17424 1.67111 20.2768 2.80107 Vertex 17425 1.81325 20.2022 2.76613 Vertex 17426 1.94231 20.1057 2.7344 Vertex 17427 2.05512 19.9895 2.70667 Vertex 17428 2.14889 19.8567 2.68362 Vertex 17429 2.22131 19.7103 2.66582 Vertex 17430 2.27061 19.5541 2.65371 Vertex 17431 2.29557 19.3918 2.64758 Vertex 17432 2.29557 19.2275 2.64758 Vertex 17433 2.27061 19.0653 2.65372 Vertex 17434 2.22131 18.909 2.66584 Vertex 17435 2.14889 18.7627 2.68365 Vertex 17436 2.05512 18.6298 2.7067 Vertex 17437 1.94232 18.5136 2.73444 Vertex 17438 1.81326 18.417 2.76617 Vertex 17439 1.67112 18.3425 2.80112 Vertex 17440 1.51941 18.2917 2.83841 Vertex 17441 1.36184 18.266 2.87715 Vertex 17442 1.20232 18.266 2.91637 Vertex 17443 1.04475 18.2917 2.95511 Vertex 17444 0.89303 18.3425 2.9924 Vertex 17445 0.750892 18.417 3.02734 Vertex 17446 0.621831 18.5136 3.05906 Vertex 17447 0.509028 18.6297 3.08679 Vertex 17448 0.41526 18.7627 3.10984 Vertex 17449 0.342835 18.909 3.12765 Vertex 17450 0.293538 19.0653 3.13976 Vertex 17451 0.268581 19.2275 3.1459 Vertex 17452 0.26858 19.3918 3.14589 Vertex 17453 0.293535 19.5541 3.13975 Vertex 17454 0.342831 19.7103 3.12762 Vertex 17455 0.415254 19.8567 3.10981 Vertex 17456 0.50902 19.9895 3.08676 Vertex 17457 0.621823 20.1057 3.05903 Vertex 17458 0.750883 20.2023 3.0273 Vertex 17459 0.893021 20.2768 2.99235 Vertex 17460 1.04474 20.3276 2.95505 Vertex 17461 1.2023 20.3533 2.91632 Vertex 17462 1.38678 20.201 3.02877 Vertex 17463 1.52135 20.1791 2.99569 Vertex 17464 1.65093 20.1357 2.96384 Vertex 17465 1.77233 20.072 2.93399 Vertex 17466 1.88256 19.9896 2.90689 Vertex 17467 1.9789 19.8904 2.88321 Vertex 17468 2.05898 19.7768 2.86353 Vertex 17469 2.12084 19.6518 2.84832 Vertex 17470 2.16295 19.5184 2.83797 Vertex 17471 2.18426 19.3798 2.83274 Vertex 17472 2.18426 19.2395 2.83274 Vertex 17473 2.16295 19.1009 2.83799 Vertex 17474 2.12084 18.9675 2.84834 Vertex 17475 2.05899 18.8425 2.86355 Vertex 17476 1.9789 18.729 2.88324 Vertex 17477 1.88256 18.6297 2.90693 Vertex 17478 1.77233 18.5473 2.93403 Vertex 17479 1.65093 18.4836 2.96387 Vertex 17480 1.52135 18.4403 2.99573 Vertex 17481 1.38678 18.4183 3.02882 Vertex 17482 1.25054 18.4183 3.06231 Vertex 17483 1.11596 18.4403 3.0954 Vertex 17484 0.986382 18.4836 3.12725 Vertex 17485 0.864983 18.5473 3.15709 Vertex 17486 0.754755 18.6297 3.18418 Vertex 17487 0.658412 18.729 3.20786 Vertex 17488 0.578326 18.8425 3.22755 Vertex 17489 0.51647 18.9675 3.24275 Vertex 17490 0.474366 19.1009 3.2531 Vertex 17491 0.453051 19.2395 3.25834 Vertex 17492 0.453051 19.3798 3.25834 Vertex 17493 0.474364 19.5184 3.25309 Vertex 17494 0.516466 19.6518 3.24274 Vertex 17495 0.578321 19.7768 3.22753 Vertex 17496 0.658406 19.8904 3.20784 Vertex 17497 0.754748 19.9895 3.18415 Vertex 17498 0.864975 20.072 3.15705 Vertex 17499 0.986373 20.1357 3.1272 Vertex 17500 1.11595 20.1791 3.09535 Vertex 17501 1.25052 20.201 3.06226 Vertex 17502 1.40387 20.0268 3.15574 Vertex 17503 1.51214 20.0091 3.12913 Vertex 17504 1.61639 19.9743 3.1035 Vertex 17505 1.71406 19.923 3.07949 Vertex 17506 1.80273 19.8567 3.05769 Vertex 17507 1.88024 19.7768 3.03864 Vertex 17508 1.94468 19.6855 3.0228 Vertex 17509 1.99444 19.5849 3.01057 Vertex 17510 2.02832 19.4776 3.00224 Vertex 17511 2.04546 19.3661 2.99803 Vertex 17512 2.04546 19.2533 2.99803 Vertex 17513 2.02832 19.1417 3.00225 Vertex 17514 1.99444 19.0344 3.01058 Vertex 17515 1.94468 18.9338 3.02282 Vertex 17516 1.88025 18.8425 3.03866 Vertex 17517 1.80274 18.7627 3.05772 Vertex 17518 1.71406 18.6963 3.07952 Vertex 17519 1.61639 18.6451 3.10353 Vertex 17520 1.51214 18.6102 3.12916 Vertex 17521 1.40387 18.5925 3.15578 Vertex 17522 1.29426 18.5925 3.18273 Vertex 17523 1.18599 18.6102 3.20934 Vertex 17524 1.08174 18.6451 3.23497 Vertex 17525 0.984073 18.6963 3.25898 Vertex 17526 0.895391 18.7627 3.28078 Vertex 17527 0.81788 18.8425 3.29983 Vertex 17528 0.753449 18.9338 3.31567 Vertex 17529 0.703684 19.0344 3.3279 Vertex 17530 0.669811 19.1417 3.33622 Vertex 17531 0.652662 19.2533 3.34044 Vertex 17532 0.652662 19.3661 3.34044 Vertex 17533 0.669809 19.4776 3.33622 Vertex 17534 0.703682 19.5849 3.32789 Vertex 17535 0.753446 19.6855 3.31565 Vertex 17536 0.817876 19.7768 3.29981 Vertex 17537 0.895384 19.8567 3.28075 Vertex 17538 0.984066 19.923 3.25895 Vertex 17539 1.08174 19.9743 3.23494 Vertex 17540 1.18599 20.0091 3.2093 Vertex 17541 1.29425 20.0268 3.18268 Vertex 17542 1.41269 19.8349 3.25489 Vertex 17543 1.49199 19.822 3.23539 Vertex 17544 1.56834 19.7964 3.21662 Vertex 17545 1.63987 19.7589 3.19904 Vertex 17546 1.70482 19.7103 3.18307 Vertex 17547 1.76159 19.6519 3.16912 Vertex 17548 1.80878 19.5849 3.15752 Vertex 17549 1.84523 19.5113 3.14856 Vertex 17550 1.87004 19.4327 3.14246 Vertex 17551 1.8826 19.351 3.13938 Vertex 17552 1.8826 19.2684 3.13938 Vertex 17553 1.87004 19.1867 3.14247 Vertex 17554 1.84523 19.108 3.14857 Vertex 17555 1.80879 19.0344 3.15753 Vertex 17556 1.7616 18.9675 3.16914 Vertex 17557 1.70483 18.909 3.18309 Vertex 17558 1.63988 18.8604 3.19906 Vertex 17559 1.56835 18.8229 3.21665 Vertex 17560 1.49199 18.7974 3.23542 Vertex 17561 1.41269 18.7845 3.25492 Vertex 17562 1.33241 18.7845 3.27465 Vertex 17563 1.25311 18.7973 3.29415 Vertex 17564 1.17676 18.8229 3.31292 Vertex 17565 1.10523 18.8604 3.3305 Vertex 17566 1.04028 18.909 3.34647 Vertex 17567 0.983506 18.9675 3.36042 Vertex 17568 0.936315 19.0344 3.37202 Vertex 17569 0.899868 19.1081 3.38098 Vertex 17570 0.875059 19.1867 3.38708 Vertex 17571 0.862499 19.2684 3.39016 Vertex 17572 0.862498 19.351 3.39016 Vertex 17573 0.875057 19.4327 3.38707 Vertex 17574 0.899866 19.5113 3.38097 Vertex 17575 0.936314 19.5849 3.37201 Vertex 17576 0.983502 19.6518 3.3604 Vertex 17577 1.04027 19.7103 3.34645 Vertex 17578 1.10523 19.7589 3.33048 Vertex 17579 1.17676 19.7964 3.31289 Vertex 17580 1.25311 19.822 3.29412 Vertex 17581 1.33241 19.8349 3.27463 Vertex 17582 1.41302 19.6301 3.32377 Vertex 17583 1.4614 19.6222 3.31188 Vertex 17584 1.50797 19.6066 3.30043 Vertex 17585 1.55161 19.5837 3.2897 Vertex 17586 1.59123 19.5541 3.27996 Vertex 17587 1.62586 19.5184 3.27145 Vertex 17588 1.65465 19.4776 3.26437 Vertex 17589 1.67689 19.4327 3.25891 Vertex 17590 1.69202 19.3847 3.25519 Vertex 17591 1.69968 19.3349 3.25331 Vertex 17592 1.69968 19.2845 3.25331 Vertex 17593 1.69202 19.2347 3.25519 Vertex 17594 1.67689 19.1867 3.25892 Vertex 17595 1.65465 19.1418 3.26438 Vertex 17596 1.62586 19.1009 3.27146 Vertex 17597 1.59123 19.0653 3.27998 Vertex 17598 1.55161 19.0356 3.28972 Vertex 17599 1.50798 19.0127 3.30045 Vertex 17600 1.4614 18.9972 3.3119 Vertex 17601 1.41303 18.9893 3.32379 Vertex 17602 1.36405 18.9893 3.33583 Vertex 17603 1.31568 18.9972 3.34772 Vertex 17604 1.2691 19.0127 3.35917 Vertex 17605 1.22546 19.0357 3.3699 Vertex 17606 1.18584 19.0653 3.37964 Vertex 17607 1.15121 19.101 3.38815 Vertex 17608 1.12242 19.1418 3.39523 Vertex 17609 1.10019 19.1867 3.40069 Vertex 17610 1.08506 19.2346 3.40441 Vertex 17611 1.07739 19.2845 3.40629 Vertex 17612 1.07739 19.3349 3.40629 Vertex 17613 1.08506 19.3847 3.40441 Vertex 17614 1.10019 19.4327 3.40068 Vertex 17615 1.12242 19.4776 3.39522 Vertex 17616 1.15121 19.5184 3.38814 Vertex 17617 1.18584 19.5541 3.37962 Vertex 17618 1.22547 19.5837 3.36988 Vertex 17619 1.2691 19.6066 3.35916 Vertex 17620 1.31568 19.6222 3.3477 Vertex 17621 1.36405 19.6301 3.33581 Vertex 17622 12.9469 -14.2126 -0.141485 Vertex 17623 13.0618 -14.4362 -0.704836 Vertex 17624 13 -14.5586 -1.29025 Vertex 17625 12.8898 -14.6383 -1.91462 Vertex 17626 12.8583 -14.6642 -2.51649 Vertex 17627 12.7096 -14.6089 -3.1227 Vertex 17628 11.2824 -14.8619 -2.34556 Vertex 17629 11.3541 -14.8563 -2.12687 Vertex 17630 10.694 -14.8832 -1.51052 Vertex 17631 10.7405 -14.8333 -1.27955 Vertex 17632 10.9148 -14.7347 -0.579861 Vertex 17633 10.9908 -14.6936 -0.355385 Vertex 17634 10.4276 -14.9945 0.173882 Vertex 17635 10.5125 -14.894 0.376693 Vertex 17636 9.19215 -16.0673 0.264265 Vertex 17637 8.93539 -15.9383 0.18628 Vertex 17638 5.76531 9.94082 -1.4232 Vertex 17639 5.96025 9.59372 -1.94802 Vertex 17640 5.80046 9.98635 -2.61431 Vertex 17641 12.5085 8.62822 -1.99274 Vertex 17642 12.5194 8.80145 -2.62637 Vertex 17643 -12.9402 -14.4791 -0.14979 Vertex 17644 -13.0643 -14.6987 -0.703593 Vertex 17645 -12.9764 -14.8169 -1.30613 Vertex 17646 -12.8485 -14.8747 -1.93071 Vertex 17647 -12.6198 -14.8982 -3.17438 Vertex 17648 -11.2378 -14.8826 -2.41216 Vertex 17649 -11.2397 -14.8903 -2.06888 Vertex 17650 -10.6559 -14.9241 -1.58108 Vertex 17651 -10.6077 -14.8929 -1.23092 Vertex 17652 -10.8701 -14.7738 -0.646366 Vertex 17653 -10.872 -14.7633 -0.291942 Vertex 17654 -10.3891 -15.0556 0.120722 Vertex 17655 -10.4264 -14.9802 0.465776 Vertex 17656 -9.29156 -16.0813 0.29384 Vertex 17657 -8.93119 -15.8038 0.252491 Vertex 17658 -5.99986 9.52392 -2.06378 Vertex 17659 -5.80492 9.87103 -1.53896 Vertex 17660 -5.59918 10.3127 -1.93314 Vertex 17661 -12.5006 8.92661 -2.06052 Vertex 17662 -12.5 8.96334 -2.54178 Vertex 17663 13.1025 -7.35784 -0.943978 Vertex 17664 13.542 -7.42758 -1.74329 Vertex 17665 13.7538 -7.57038 -2.74899 Vertex 17666 13.6417 -7.71896 -3.64646 Vertex 17667 13.364 -7.82059 -4.26865 Vertex 17668 12.9384 -7.90506 -4.76262 Vertex 17669 12.0393 -7.99735 -5.16004 Vertex 17670 11.2425 -8.03479 -5.14209 Vertex 17671 10.6374 -8.05259 -4.89826 Vertex 17672 10.1928 -8.03866 -4.41246 Vertex 17673 9.84911 -7.9559 -3.48014 Vertex 17674 9.76086 -7.78526 -2.31905 Vertex 17675 9.96051 -7.62602 -1.4107 Vertex 17676 10.7288 -7.45608 -0.553293 Vertex 17677 11.6434 -7.37679 -0.238446 Vertex 17678 12.4594 -7.34876 -0.436159 Vertex 17679 11.7895 -11.8802 -4.07341 Vertex 17680 11.1491 -11.7737 -3.71983 Vertex 17681 10.9749 -11.6973 -3.43717 Vertex 17682 10.7801 -11.5411 -2.86969 Vertex 17683 10.6759 -11.2841 -1.97365 Vertex 17684 10.695 -11.0398 -1.14035 Vertex 17685 10.8214 -10.8688 -0.5639 Vertex 17686 11.4004 -10.7476 -0.186798 Vertex 17687 12.516 -10.8553 -0.621467 Vertex 17688 12.8068 -10.9606 -1.00652 Vertex 17689 13.0657 -11.1242 -1.59101 Vertex 17690 13.1135 -11.565 -3.09239 Vertex 17691 12.9157 -11.7124 -3.55899 Vertex 17692 12.6612 -11.8125 -3.8821 Vertex 17693 12.2985 -11.8725 -4.06918 Vertex 17694 11.4734 -4.10315 -0.744821 Vertex 17695 10.2774 -4.21142 -1.28807 Vertex 17696 9.47914 -4.28437 -2.15329 Vertex 17697 9.13723 -4.31623 -2.92634 Vertex 17698 9.13838 -4.31762 -3.99422 Vertex 17699 9.55444 -4.28168 -5.07558 Vertex 17700 10.204 -4.22411 -5.67452 Vertex 17701 11.1136 -4.14281 -5.93614 Vertex 17702 12.1895 -4.05081 -5.82181 Vertex 17703 13.0645 -3.97154 -5.34253 Vertex 17704 13.5824 -3.92656 -4.77754 Vertex 17705 13.8964 -3.89735 -4.16426 Vertex 17706 14.0549 -3.86698 -3.40357 Vertex 17707 13.9443 -3.87204 -2.49111 Vertex 17708 13.5253 -3.91326 -1.57008 Vertex 17709 12.6593 -3.99378 -0.915817 Vertex 17710 9.64318 3.7976 -5.69169 Vertex 17711 11.5338 6.14394 -5.12819 Vertex 17712 11.8958 5.19582 -5.2872 Vertex 17713 11.2262 7.59892 -4.07675 Vertex 17714 11.2233 7.24657 -4.19459 Vertex 17715 11.281 6.85211 -4.62891 Vertex 17716 8.37237 5.83045 -0.961041 Vertex 17717 8.38366 4.70942 -1.59436 Vertex 17718 9.35324 0.39072 -4.40684 Vertex 17719 9.56227 -1.70986 -5.06498 Vertex 17720 12.7913 0.078365 -2.68919 Vertex 17721 12.3738 0.0366907 -1.97598 Vertex 17722 12.5715 -1.28579 -5.11415 Vertex 17723 11.8439 -1.36887 -5.62791 Vertex 17724 12.2911 0.875386 -4.65041 Vertex 17725 12.581 4.23568 -3.90392 Vertex 17726 12.796 2.90844 -3.76776 Vertex 17727 11.4171 0.769598 -5.38275 Vertex 17728 11.3177 -0.0665562 -5.59856 Vertex 17729 10.8528 -0.730875 -5.74626 Vertex 17730 10.2073 -0.916196 -5.57373 Vertex 17731 9.77114 -0.443646 -5.23669 Vertex 17732 9.56376 0.497311 -4.97207 Vertex 17733 13.0195 1.08208 -3.2827 Vertex 17734 12.9658 1.06679 -3.6316 Vertex 17735 10.3432 -1.625 -1.93535 Vertex 17736 7.87638 4.20783 -3.93486 Vertex 17737 8.54523 2.71339 -3.95669 Vertex 17738 13.3227 -3.01756 -1.95422 Vertex 17739 11.4228 -1.4737 -1.50183 Vertex 17740 10.271 -0.439337 -2.12773 Vertex 17741 8.87998 3.38404 -2.07176 Vertex 17742 12.4346 -1.37052 -1.66267 Vertex 17743 11.3471 -13.452 -2.39041 Vertex 17744 12.1863 -12.221 -3.98251 Vertex 17745 11.5876 -12.2183 -3.92813 Vertex 17746 11.1381 -12.1574 -3.66624 Vertex 17747 11.0138 -12.0896 -3.38462 Vertex 17748 10.9801 -12.0494 -3.11634 Vertex 17749 10.9863 -12.0136 -2.67947 Vertex 17750 10.9178 -11.8528 -2.06159 Vertex 17751 10.7922 -11.5529 -1.37788 Vertex 17752 10.8196 -11.1861 -0.681255 Vertex 17753 11.5154 -10.9334 -0.248133 Vertex 17754 12.3867 -11.1479 -0.508677 Vertex 17755 12.7676 -11.4731 -1.06526 Vertex 17756 12.9743 -11.5999 -1.47478 Vertex 17757 13.1125 -11.7343 -1.95413 Vertex 17758 13.122 -11.8931 -2.53304 Vertex 17759 13.0244 -12.0225 -3.07356 Vertex 17760 12.8668 -12.1089 -3.49668 Vertex 17761 12.592 -12.1788 -3.80991 Vertex 17762 10.8354 -12.1798 -1.11338 Vertex 17763 12.5097 -14.4979 -3.53851 Vertex 17764 12.2272 -14.4902 -3.7792 Vertex 17765 12.5636 -12.6881 -0.072607 Vertex 17766 11.4734 -11.1744 -0.0083525 Vertex 17767 11.9314 -12.9608 0.459965 Vertex 17768 11.7123 -12.2769 0.489795 Vertex 17769 10.4542 -12.4724 -0.00621599 Vertex 17770 10.457 -13.0586 -0.317657 Vertex 17771 10.9193 -12.0307 0.393587 Vertex 17772 11.4935 -13.881 0.366874 Vertex 17773 11.0004 -13.5132 -0.612486 Vertex 17774 10.9104 -12.7653 -0.897707 Vertex 17775 11.1031 -12.571 -1.95012 Vertex 17776 11.2781 -13.9977 -0.269237 Vertex 17777 11.3357 -13.8056 -0.95472 Vertex 17778 11.2915 -13.1571 -1.63271 Vertex 17779 11.5442 -13.7986 -1.77411 Vertex 17780 11.65 -13.308 -3.9806 Vertex 17781 11.1484 -13.326 -3.68342 Vertex 17782 11.0698 -13.3175 -3.27508 Vertex 17783 11.1502 -13.3223 -2.89018 Vertex 17784 12.859 -12.838 -0.623879 Vertex 17785 13.0284 -13.0145 -1.1157 Vertex 17786 13.08 -13.1481 -1.6543 Vertex 17787 13.0312 -13.2726 -2.26413 Vertex 17788 12.9643 -13.3003 -2.83039 Vertex 17789 12.8382 -13.2684 -3.33371 Vertex 17790 12.6068 -13.2418 -3.7045 Vertex 17791 12.2783 -13.2508 -3.95553 Vertex 17792 11.6919 -14.5153 -3.79762 Vertex 17793 11.3206 -14.5503 -3.42855 Vertex 17794 11.3659 -14.5737 -2.90454 Vertex 17795 11.4914 -14.5167 -2.47125 Vertex 17796 11.5798 -14.4828 -2.01428 Vertex 17797 11.6748 -14.5323 -1.44184 Vertex 17798 11.597 -14.4962 -0.854583 Vertex 17799 11.877 -14.0123 0.572116 Vertex 17800 12.4126 -13.7581 0.630126 Vertex 17801 12.7107 -13.8058 0.315418 Vertex 17802 10.9968 -15.9582 -3.06085 Vertex 17803 11.1981 -16.3365 -3.08137 Vertex 17804 11.0038 -15.6504 -2.79049 Vertex 17805 11.4205 -16.4788 -2.91349 Vertex 17806 10.899 -15.7459 -2.72059 Vertex 17807 10.7294 -16.045 -2.93117 Vertex 17808 10.7437 -16.4283 -2.89438 Vertex 17809 10.889 -16.5983 -2.69235 Vertex 17810 10.4676 -16.3042 -2.76056 Vertex 17811 10.5226 -16.4599 -2.5293 Vertex 17812 10.8591 -15.7417 -2.68242 Vertex 17813 10.6014 -15.9838 -2.85603 Vertex 17814 10.8116 -15.6742 -2.6148 Vertex 17815 10.5127 -15.7486 -2.76689 Vertex 17816 10.2909 -15.8739 -2.6372 Vertex 17817 10.2759 -15.9497 -2.39606 Vertex 17818 10.4502 -15.5443 -2.68932 Vertex 17819 10.1826 -15.4404 -2.59445 Vertex 17820 10.0933 -15.3997 -2.36738 Vertex 17821 10.7371 -15.6213 -2.54223 Vertex 17822 10.2095 -15.1226 -2.37672 Vertex 17823 10.7599 -15.5717 -2.53139 Vertex 17824 10.5335 -15.4276 -2.6771 Vertex 17825 10.3162 -15.2138 -2.59291 Vertex 17826 10.8914 -15.5374 -2.49719 Vertex 17827 10.7955 -15.3189 -2.64137 Vertex 17828 10.7129 -15.0767 -2.58486 Vertex 17829 10.6538 -14.9783 -2.37075 Vertex 17830 11.1253 -15.0109 -2.59236 Vertex 17831 11.1899 -14.9121 -2.51656 Vertex 17832 11.1468 -15.4493 -2.47741 Vertex 17833 11.1086 -15.2431 -2.5876 Vertex 17834 11.4409 -14.8817 -2.47815 Vertex 17835 11.3801 -15.1727 -2.5256 Vertex 17836 11.5443 -15.1143 -2.43519 Vertex 17837 10.9827 -14.9052 -2.37135 Vertex 17838 11.5449 -14.8487 -2.33313 Vertex 17839 11.6188 -15.0717 -2.32064 Vertex 17840 11.599 -14.925 -2.33071 Vertex 17841 11.4969 -14.96 -2.47699 Vertex 17842 11.1357 -15.6372 -2.89337 Vertex 17843 11.9023 -16.2281 -3.20322 Vertex 17844 11.6371 -16.1477 -3.33377 Vertex 17845 11.2903 -15.874 -3.23585 Vertex 17846 11.9561 -16.1479 -2.60409 Vertex 17847 12.0249 -16.2227 -2.94151 Vertex 17848 11.1947 -15.6631 -2.45553 Vertex 17849 11.4928 -14.9719 -2.00649 Vertex 17850 11.5992 -14.9286 -2.15329 Vertex 17851 11.6206 -15.0736 -2.17421 Vertex 17852 11.5458 -14.8534 -2.14745 Vertex 17853 10.983 -14.9128 -2.1113 Vertex 17854 11.5469 -15.1202 -2.05878 Vertex 17855 11.3804 -15.1832 -1.9713 Vertex 17856 11.4374 -14.8943 -2.0014 Vertex 17857 11.1043 -15.2569 -1.91506 Vertex 17858 11.1457 -15.4539 -2.1987 Vertex 17859 11.1858 -14.9276 -1.96543 Vertex 17860 11.1172 -15.03 -1.89792 Vertex 17861 10.6534 -14.997 -2.11081 Vertex 17862 10.7084 -15.1236 -1.91245 Vertex 17863 10.8317 -15.3491 -1.92775 Vertex 17864 10.9317 -15.5394 -2.19605 Vertex 17865 10.3752 -15.2716 -1.91176 Vertex 17866 10.6775 -15.4511 -1.94595 Vertex 17867 10.8464 -15.5707 -2.21128 Vertex 17868 10.211 -15.156 -2.1066 Vertex 17869 10.8289 -15.6274 -2.21212 Vertex 17870 10.128 -15.424 -2.09769 Vertex 17871 10.3393 -15.4768 -1.9113 Vertex 17872 10.6641 -15.5626 -1.94574 Vertex 17873 10.3579 -15.9615 -2.16109 Vertex 17874 10.5279 -15.9131 -1.97233 Vertex 17875 10.7881 -15.7965 -1.98495 Vertex 17876 10.932 -15.6946 -2.26276 Vertex 17877 10.9502 -16.0333 -2.0339 Vertex 17878 11.0129 -15.7663 -2.31413 Vertex 17879 10.6385 -16.4733 -2.25892 Vertex 17880 10.7785 -16.3424 -2.03634 Vertex 17881 11.0139 -16.6066 -2.41707 Vertex 17882 11.08 -16.4468 -2.15647 Vertex 17883 11.1065 -16.0718 -2.10418 Vertex 17884 11.0646 -15.7625 -2.35622 Vertex 17885 11.5353 -16.4764 -2.67176 Vertex 17886 11.1616 -15.6643 -2.43159 Vertex 17887 11.5097 -16.3325 -2.38104 Vertex 17888 11.3516 -15.9703 -2.24336 Vertex 17889 11.9559 -15.8201 -3.56362 Vertex 17890 11.4747 -15.6676 -3.41945 Vertex 17891 11.2107 -15.5877 -2.99704 Vertex 17892 11.2458 -15.6671 -2.46591 Vertex 17893 12.3404 -15.9201 -2.80141 Vertex 17894 12.5751 -15.5236 -2.90041 Vertex 17895 12.5518 -15.4379 -3.22346 Vertex 17896 12.4392 -15.3648 -3.49695 Vertex 17897 12.0964 -15.3385 -3.67683 Vertex 17898 11.5803 -15.2444 -3.56044 Vertex 17899 11.2949 -15.2411 -3.10928 Vertex 17900 11.4131 -15.3051 -2.57479 Vertex 17901 11.5431 -15.2373 -2.1767 Vertex 17902 11.582 -15.1531 -1.75715 Vertex 17903 12.7891 -15.3705 -1.58353 Vertex 17904 12.87 -15.3661 -1.90165 Vertex 17905 12.8823 -15.3662 -2.20432 Vertex 17906 12.7169 -15.4585 -2.54439 Vertex 17907 12.4459 -15.8694 -2.42997 Vertex 17908 11.3612 -15.6597 -2.06394 Vertex 17909 11.458 -15.5878 -1.62673 Vertex 17910 12.5918 -15.7846 -1.45772 Vertex 17911 11.0705 -16.0469 -2.15018 Vertex 17912 11.3228 -16.3969 -2.0514 Vertex 17913 10.9564 -15.7097 -1.91407 Vertex 17914 11.486 -16.4877 -1.7814 Vertex 17915 10.7841 -15.8511 -1.8701 Vertex 17916 10.7454 -16.2098 -2.10725 Vertex 17917 10.8174 -16.6033 -2.01791 Vertex 17918 10.9184 -16.7206 -1.73974 Vertex 17919 10.539 -16.5122 -1.99322 Vertex 17920 10.5793 -16.6162 -1.72111 Vertex 17921 10.6828 -15.82 -1.85022 Vertex 17922 10.5789 -16.1553 -2.08275 Vertex 17923 10.5744 -15.7436 -1.75501 Vertex 17924 10.3753 -15.975 -1.97423 Vertex 17925 10.206 -16.2719 -1.88607 Vertex 17926 10.1854 -16.3863 -1.64082 Vertex 17927 10.2582 -15.8529 -1.87461 Vertex 17928 9.99155 -16.0626 -1.8301 Vertex 17929 9.90052 -16.1712 -1.60084 Vertex 17930 10.4948 -15.7381 -1.65819 Vertex 17931 9.81328 -15.7489 -1.59738 Vertex 17932 10.242 -15.7272 -1.85467 Vertex 17933 9.93756 -15.7488 -1.82056 Vertex 17934 10.5016 -15.7063 -1.58097 Vertex 17935 10.3636 -15.5425 -1.80887 Vertex 17936 10.1907 -15.3366 -1.79442 Vertex 17937 10.0963 -15.2179 -1.58258 Vertex 17938 10.5935 -15.1006 -1.76774 Vertex 17939 10.6356 -14.971 -1.68869 Vertex 17940 10.6642 -15.5895 -1.51669 Vertex 17941 10.6121 -15.3817 -1.74171 Vertex 17942 10.883 -14.8838 -1.62317 Vertex 17943 10.8684 -15.2212 -1.6481 Vertex 17944 11.0133 -15.1044 -1.53943 Vertex 17945 10.3941 -14.9897 -1.5673 Vertex 17946 10.9648 -14.8143 -1.46718 Vertex 17947 11.0626 -15.0306 -1.41928 Vertex 17948 11.0154 -14.8813 -1.45073 Vertex 17949 10.9427 -14.9496 -1.60699 Vertex 17950 11.1694 -15.6514 -1.9963 Vertex 17951 12.183 -16.141 -1.90648 Vertex 17952 11.9863 -16.1188 -2.21413 Vertex 17953 11.6015 -15.812 -1.24531 Vertex 17954 12.0645 -16.0364 -1.34511 Vertex 17955 12.1942 -16.0988 -1.62962 Vertex 17956 11.2351 -15.5924 -1.57194 Vertex 17957 10.877 -14.9071 -1.13038 Vertex 17958 10.9904 -14.8651 -1.26965 Vertex 17959 11.042 -15.0172 -1.2692 Vertex 17960 10.9385 -14.7974 -1.27676 Vertex 17961 10.3574 -14.966 -1.30089 Vertex 17962 10.9608 -15.0704 -1.15816 Vertex 17963 10.7903 -15.1706 -1.08065 Vertex 17964 10.8164 -14.8408 -1.13978 Vertex 17965 10.5161 -15.3197 -1.04575 Vertex 17966 10.6248 -15.5641 -1.23101 Vertex 17967 10.5586 -14.9212 -1.12931 Vertex 17968 10.4949 -15.0369 -1.05227 Vertex 17969 10.0715 -15.2066 -1.32094 Vertex 17970 10.1276 -15.309 -1.09862 Vertex 17971 10.2977 -15.5194 -1.05895 Vertex 17972 9.93571 -15.7574 -1.10366 Vertex 17973 10.2373 -15.7433 -1.06725 Vertex 17974 9.81346 -15.7523 -1.32339 Vertex 17975 10.5098 -15.7458 -1.3029 Vertex 17976 9.91256 -16.1723 -1.32138 Vertex 17977 10.0239 -16.0657 -1.09825 Vertex 17978 10.2936 -15.8626 -1.06695 Vertex 17979 10.1895 -16.4011 -1.38876 Vertex 17980 10.2508 -16.2724 -1.15405 Vertex 17981 10.4485 -15.9535 -1.1048 Vertex 17982 10.6069 -15.7363 -1.36554 Vertex 17983 10.6541 -16.0833 -1.14012 Vertex 17984 10.7163 -15.7891 -1.43292 Vertex 17985 10.5853 -16.6146 -1.41847 Vertex 17986 10.5868 -16.4694 -1.16524 Vertex 17987 10.9309 -16.6904 -1.43431 Vertex 17988 10.8566 -16.5196 -1.17413 Vertex 17989 10.7927 -16.1149 -1.15175 Vertex 17990 10.8046 -15.8097 -1.45295 Vertex 17991 11.49 -16.4624 -1.52057 Vertex 17992 10.9666 -15.67 -1.50975 Vertex 17993 11.339 -16.3212 -1.26114 Vertex 17994 11.0929 -15.9568 -1.21642 Vertex 17995 11.0802 -16.1322 -0.99902 Vertex 17996 11.2449 -16.4615 -0.886095 Vertex 17997 11.0452 -15.7922 -0.779305 Vertex 17998 11.3854 -16.5306 -0.614924 Vertex 17999 10.7781 -15.9112 -0.717338 Vertex 18000 10.5829 -16.2201 -0.944682 Vertex 18001 10.4709 -16.5945 -0.842891 Vertex 18002 10.5096 -16.7321 -0.559906 Vertex 18003 10.2058 -16.4007 -0.832142 Vertex 18004 10.1615 -16.5138 -0.553528 Vertex 18005 10.6691 -15.8273 -0.707744 Vertex 18006 10.4296 -16.0926 -0.933836 Vertex 18007 10.6001 -15.6467 -0.672126 Vertex 18008 10.3274 -15.7659 -0.881313 Vertex 18009 10.0352 -15.9367 -0.773642 Vertex 18010 9.94275 -16.0216 -0.519014 Vertex 18011 10.2512 -15.4845 -0.835863 Vertex 18012 9.9344 -15.4799 -0.767644 Vertex 18013 9.81588 -15.5045 -0.52904 Vertex 18014 10.5204 -15.5345 -0.632155 Vertex 18015 9.90921 -15.1923 -0.544237 Vertex 18016 10.5249 -15.5196 -0.620766 Vertex 18017 10.2851 -15.3973 -0.828256 Vertex 18018 10.0091 -15.2537 -0.773507 Vertex 18019 10.682 -15.4774 -0.60652 Vertex 18020 10.5231 -15.2977 -0.822386 Vertex 18021 10.3684 -15.0667 -0.792409 Vertex 18022 10.3071 -14.955 -0.573487 Vertex 18023 10.7973 -14.9234 -0.826906 Vertex 18024 10.8386 -14.8109 -0.751156 Vertex 18025 10.9507 -15.344 -0.598269 Vertex 18026 10.8457 -15.1661 -0.810516 Vertex 18027 11.0848 -14.7131 -0.71654 Vertex 18028 11.0964 -15.0185 -0.750699 Vertex 18029 11.2445 -14.9108 -0.660091 Vertex 18030 10.6192 -14.8591 -0.60039 Vertex 18031 11.1827 -14.6482 -0.570409 Vertex 18032 11.3047 -14.8442 -0.54512 Vertex 18033 11.2405 -14.7094 -0.564255 Vertex 18034 11.1514 -14.7723 -0.711783 Vertex 18035 12.3729 -16.0511 -0.742073 Vertex 18036 12.1743 -16.092 -1.01741 Vertex 18037 11.6612 -15.9038 -1.13892 Vertex 18038 12.2223 -15.8842 -0.162675 Vertex 18039 12.3932 -15.978 -0.462655 Vertex 18040 11.1539 -14.758 -0.229375 Vertex 18041 11.2414 -14.704 -0.380976 Vertex 18042 11.3055 -14.8397 -0.393218 Vertex 18043 11.1837 -14.6425 -0.377679 Vertex 18044 10.6206 -14.8512 -0.330744 Vertex 18045 11.2465 -14.8994 -0.274182 Vertex 18046 11.0994 -15.0016 -0.17636 Vertex 18047 11.0873 -14.6987 -0.227269 Vertex 18048 10.8492 -15.1453 -0.106099 Vertex 18049 10.9522 -15.3354 -0.30912 Vertex 18050 10.8414 -14.7943 -0.184969 Vertex 18051 10.8009 -14.9021 -0.102727 Vertex 18052 10.314 -14.9505 -0.310008 Vertex 18053 10.3883 -15.0557 -0.092117 Vertex 18054 10.5459 -15.2866 -0.0672073 Vertex 18055 10.6919 -15.4729 -0.288154 Vertex 18056 10.0597 -15.254 -0.057314 Vertex 18057 10.3367 -15.4097 -0.0388528 Vertex 18058 10.5456 -15.5318 -0.273854 Vertex 18059 9.92891 -15.1924 -0.270535 Vertex 18060 10.5519 -15.5461 -0.275202 Vertex 18061 9.8427 -15.5043 -0.250386 Vertex 18062 10.0055 -15.4792 -0.0378115 Vertex 18063 9.9664 -16.0113 -0.26971 Vertex 18064 10.1042 -15.9065 -0.0448332 Vertex 18065 10.4097 -15.7293 -0.0116942 Vertex 18066 10.6369 -15.6301 -0.282012 Vertex 18067 10.5333 -16.0172 0.0095315 Vertex 18068 10.7164 -15.7942 -0.289906 Vertex 18069 10.1992 -16.4902 -0.253124 Vertex 18070 10.2998 -16.3348 -0.00620925 Vertex 18071 10.549 -16.7038 -0.254832 Vertex 18072 10.5701 -16.5142 -0.000441 Vertex 18073 10.6919 -16.1283 0.009247 Vertex 18074 10.8273 -15.8714 -0.300785 Vertex 18075 11.4096 -16.4845 -0.35648 Vertex 18076 11.0816 -15.7208 -0.379793 Vertex 18077 11.3186 -16.3205 -0.103533 Vertex 18078 11.1661 -15.9658 -0.0753888 Vertex 18079 12.7091 -15.7601 -1.15624 Vertex 18080 11.5681 -15.4715 -0.896087 Vertex 18081 11.4882 -15.3116 -0.306367 Vertex 18082 12.7708 -15.5395 -0.206832 Vertex 18083 13.0047 -15.1441 -0.343456 Vertex 18084 13.1093 -15.1862 -0.647911 Vertex 18085 13.1008 -15.254 -0.96273 Vertex 18086 12.9035 -15.3428 -1.27192 Vertex 18087 11.6837 -15.1212 -1.13684 Vertex 18088 11.5646 -14.9792 -0.559822 Vertex 18089 11.3197 -14.7026 -0.0290285 Vertex 18090 11.4275 -14.5129 0.481943 Vertex 18091 12.0458 -14.4422 0.822398 Vertex 18092 12.651 -14.4707 0.780419 Vertex 18093 12.878 -14.6291 0.480007 Vertex 18094 12.902 -14.8296 0.200615 Vertex 18095 12.8985 -15.0146 -0.0649992 Vertex 18096 12.6452 -15.4123 0.0871005 Vertex 18097 11.2845 -15.1187 0.163624 Vertex 18098 11.3496 -14.9318 0.660387 Vertex 18099 11.9235 -14.9134 0.969897 Vertex 18100 12.549 -15.0112 0.925601 Vertex 18101 10.9702 -15.8204 0.133448 Vertex 18102 11.2105 -16.0929 0.275193 Vertex 18103 10.885 -15.5231 0.346337 Vertex 18104 11.397 -16.1474 0.566383 Vertex 18105 10.7509 -15.789 0.371671 Vertex 18106 10.6477 -16.1966 0.165955 Vertex 18107 10.652 -16.5919 0.27984 Vertex 18108 10.7346 -16.6978 0.547815 Vertex 18109 10.3645 -16.6251 0.280243 Vertex 18110 10.3735 -16.7359 0.551247 Vertex 18111 10.6656 -15.9244 0.333244 Vertex 18112 10.4875 -16.2829 0.147081 Vertex 18113 10.4873 -15.8824 0.319906 Vertex 18114 10.2663 -16.1178 0.135738 Vertex 18115 10.0261 -16.3381 0.269989 Vertex 18116 9.96076 -16.4013 0.534708 Vertex 18117 10.0519 -15.9865 0.124268 Vertex 18118 9.72909 -16.0501 0.213149 Vertex 18119 9.61791 -16.0396 0.458633 Vertex 18120 10.308 -15.8562 0.304009 Vertex 18121 9.61853 -15.717 0.382146 Vertex 18122 10.2989 -15.8395 0.303067 Vertex 18123 10.0253 -15.8865 0.109378 Vertex 18124 9.7171 -15.8052 0.161324 Vertex 18125 10.4233 -15.7702 0.285552 Vertex 18126 10.2001 -15.7001 0.0669153 Vertex 18127 9.99401 -15.5052 0.0762488 Vertex 18128 9.92558 -15.3682 0.279536 Vertex 18129 10.3433 -15.25 -0.0247207 Vertex 18130 10.3584 -15.1185 0.0279297 Vertex 18131 10.6358 -15.5652 0.233961 Vertex 18132 10.4613 -15.4638 0.017405 Vertex 18133 10.5682 -14.9536 0.0122238 Vertex 18134 10.6638 -15.2459 0.0188735 Vertex 18135 10.7835 -15.0877 0.0710202 Vertex 18136 10.18 -15.1952 0.214267 Vertex 18137 10.6585 -14.8391 0.131917 Vertex 18138 10.8339 -14.9873 0.165544 Vertex 18139 10.7318 -14.8804 0.137816 Vertex 18140 10.6492 -14.9909 0.0151775 Vertex 18141 11.1035 -15.3172 0.234854 Vertex 18142 12.1639 -15.5774 0.496323 Vertex 18143 11.9913 -15.648 0.207423 Vertex 18144 11.5947 -15.1995 0.99252 Vertex 18145 12.0681 -15.3513 1.00302 Vertex 18146 12.2066 -15.5005 0.76414 Vertex 18147 11.1562 -15.1708 0.667344 Vertex 18148 10.6999 -14.8882 0.484834 Vertex 18149 10.7511 -14.8414 0.316252 Vertex 18150 10.8499 -14.955 0.313433 Vertex 18151 10.6788 -14.7981 0.319551 Vertex 18152 10.2084 -15.1379 0.476786 Vertex 18153 10.824 -15.0056 0.446729 Vertex 18154 10.7243 -15.1237 0.578035 Vertex 18155 10.6197 -14.8495 0.48856 Vertex 18156 10.5354 -15.3139 0.703206 Vertex 18157 10.6662 -15.5037 0.515468 Vertex 18158 10.418 -14.9981 0.579151 Vertex 18159 10.4195 -15.0959 0.680315 Vertex 18160 9.95463 -15.3103 0.535609 Vertex 18161 10.0716 -15.3506 0.756744 Vertex 18162 10.2841 -15.5329 0.800631 Vertex 18163 10.4588 -15.6997 0.594845 Vertex 18164 9.80173 -15.6349 0.855183 Vertex 18165 10.3363 -15.7547 0.637527 Vertex 18166 9.65091 -15.6518 0.647295 Vertex 18167 10.3436 -15.7624 0.647699 Vertex 18168 9.64877 -15.9687 0.728215 Vertex 18169 9.80898 -15.8633 0.919177 Vertex 18170 10.1366 -15.7768 0.904405 Vertex 18171 9.98919 -16.3517 0.778813 Vertex 18172 10.109 -16.1931 0.983373 Vertex 18173 10.3638 -15.944 0.986792 Vertex 18174 10.5303 -15.8039 0.701681 Vertex 18175 10.6138 -16.1489 1.05509 Vertex 18176 10.722 -15.8624 0.745603 Vertex 18177 10.4132 -16.6995 0.8386 Vertex 18178 10.4741 -16.5166 1.06324 Vertex 18179 10.774 -16.671 0.838895 Vertex 18180 10.764 -16.5222 1.08109 Vertex 18181 10.7839 -16.1101 1.08887 Vertex 18182 10.8144 -15.7453 0.784409 Vertex 18183 11.4326 -16.1122 0.821016 Vertex 18184 10.9665 -15.4535 0.745558 Vertex 18185 11.3407 -15.9813 1.05063 Vertex 18186 11.1464 -15.6744 1.05348 Vertex 18187 10.7373 -14.165 1.29854 Vertex 18188 10.5066 -13.8777 1.40168 Vertex 18189 10.2245 -13.7315 1.33939 Vertex 18190 9.92991 -13.7297 1.11166 Vertex 18191 9.86131 -13.9392 0.675226 Vertex 18192 10.1099 -14.236 0.379308 Vertex 18193 10.4625 -14.4633 0.469301 Vertex 18194 10.7391 -14.4557 0.889807 Vertex 18195 10.6241 -13.9633 0.00584375 Vertex 18196 11.1581 -13.9078 0.43731 Vertex 18197 11.3934 -13.3657 0.915846 Vertex 18198 11.162 -12.9162 1.07866 Vertex 18199 11.1258 -13.6917 1.1809 Vertex 18200 10.881 -13.3193 1.29609 Vertex 18201 10.5565 -14.1913 0.264037 Vertex 18202 10.9821 -14.134 0.711664 Vertex 18203 10.2332 -14.7713 0.590915 Vertex 18204 10.3925 -14.8927 0.989847 Vertex 18205 10.3188 -14.751 1.40773 Vertex 18206 10.1275 -14.4928 1.55505 Vertex 18207 10.1898 -15.237 0.892284 Vertex 18208 10.0483 -15.2649 1.26801 Vertex 18209 9.81355 -15.0616 1.42939 Vertex 18210 10.1008 -14.9616 0.572117 Vertex 18211 9.61889 -15.42 1.09843 Vertex 18212 10.0461 -15.0624 0.36784 Vertex 18213 10.1161 -15.3859 0.649031 Vertex 18214 9.9133 -15.5344 0.966834 Vertex 18215 9.89133 -15.2748 0.149092 Vertex 18216 9.96201 -15.5958 0.406852 Vertex 18217 9.7683 -15.77 0.657895 Vertex 18218 9.48241 -15.657 0.775885 Vertex 18219 9.61719 -16.0295 0.318597 Vertex 18220 9.45055 -16.0974 0.331033 Vertex 18221 9.65376 -15.5894 -0.0803627 Vertex 18222 9.76008 -15.8427 0.141438 Vertex 18223 9.29239 -16.2505 0.125758 Vertex 18224 9.5474 -16.031 -0.056035 Vertex 18225 9.35159 -16.1076 -0.166424 Vertex 18226 9.36819 -15.8505 0.513461 Vertex 18227 9.07292 -16.2279 0.0439913 Vertex 18228 9.1735 -16.0921 -0.219445 Vertex 18229 9.09489 -16.2103 -0.077505 Vertex 18230 9.3181 -16.2304 0.006999 Vertex 18231 8.82605 -15.851 -0.048962 Vertex 18232 8.91232 -16.07 -0.098545 Vertex 18233 9.02527 -15.9827 -0.242689 Vertex 18234 8.88218 -16.0813 0.0222125 Vertex 18235 9.09592 -15.6415 0.481609 Vertex 18236 8.95834 -15.8103 -0.21775 Vertex 18237 8.97077 -15.587 -0.122059 Vertex 18238 8.79539 -15.8671 0.0694168 Vertex 18239 9.07124 -15.3097 0.0583655 Vertex 18240 9.37127 -15.3692 -0.116487 Vertex 18241 8.87201 -15.6516 0.264619 Vertex 18242 8.89811 -15.4755 0.235711 Vertex 18243 9.20276 -15.4418 0.743878 Vertex 18244 9.05319 -15.2195 0.575592 Vertex 18245 9.21774 -15.0195 0.317405 Vertex 18246 9.58252 -15.0339 0.109941 Vertex 18247 9.18684 -14.9737 0.883926 Vertex 18248 9.34092 -14.7878 0.559702 Vertex 18249 9.71384 -14.806 0.329717 Vertex 18250 9.33539 -15.2011 1.06673 Vertex 18251 9.76563 -14.6948 0.524091 Vertex 18252 9.53881 -14.8431 1.38594 Vertex 18253 9.33955 -14.7038 1.16095 Vertex 18254 9.42061 -14.6276 0.780656 Vertex 18255 9.88039 -14.3244 1.49783 Vertex 18256 9.63675 -14.2779 1.25422 Vertex 18257 9.61017 -14.3526 0.819498 Vertex 18258 9.8859 -14.5359 0.516849 Vertex 18259 9.91967 -13.5596 0.471917 Vertex 18260 10.1453 -13.9005 0.163674 Vertex 18261 10.4973 -13.1446 1.24238 Vertex 18262 10.091 -13.2334 0.987803 Vertex 18263 10.755 -12.7311 1.09297 Vertex 18264 10.2709 -12.8889 0.805286 Vertex 18265 9.96253 -13.3004 0.208908 Vertex 18266 10.1439 -13.6476 -0.0976915 Vertex 18267 13.1004 -1.27789 -4.01498 Vertex 18268 12.886 -1.28328 -4.51262 Vertex 18269 11.7565 -0.053086 -5.33972 Vertex 18270 11.0058 -1.5807 -5.83807 Vertex 18271 10.2 -1.71982 -5.63033 Vertex 18272 9.17786 -1.73246 -4.09787 Vertex 18273 9.23676 -1.77189 -3.16126 Vertex 18274 13.0344 -1.31754 -2.76257 Vertex 18275 13.271 -1.26805 -3.49451 Vertex 18276 9.67235 -1.74287 -2.51484 Vertex 18277 13.5677 -2.99752 -2.78114 Vertex 18278 13.6739 -2.99092 -3.57058 Vertex 18279 13.5154 -3.01941 -4.15966 Vertex 18280 13.2376 -3.04464 -4.68284 Vertex 18281 12.8458 -3.07153 -5.23806 Vertex 18282 12.1105 -3.13829 -5.70633 Vertex 18283 10.2643 -3.30124 -5.67486 Vertex 18284 11.1565 -3.22022 -5.87249 Vertex 18285 9.60971 -3.36069 -5.13828 Vertex 18286 9.16076 -3.39383 -4.10233 Vertex 18287 9.17723 -3.39233 -3.0696 Vertex 18288 9.59562 -3.36196 -2.35094 Vertex 18289 12.649 -3.08178 -1.25673 Vertex 18290 10.3578 -3.29276 -1.56723 Vertex 18291 11.5136 -3.1878 -1.0411 Vertex 18292 11.8244 5.69827 -2.20344 Vertex 18293 12.3165 1.66558 -2.1398 Vertex 18294 12.1413 4.30726 -2.47763 Vertex 18295 12.3001 2.84283 -2.45353 Vertex 18296 10.6498 0.386163 -1.28258 Vertex 18297 9.457 1.94182 -2.32586 Vertex 18298 9.94987 0.63454 -2.19166 Vertex 18299 8.81991 6.66755 -5.20468 Vertex 18300 9.78402 7.1004 -5.23355 Vertex 18301 12.5423 4.28274 -3.50999 Vertex 18302 12.1229 5.70163 -3.58774 Vertex 18303 10.7145 7.40039 -4.79212 Vertex 18304 11.5456 6.42766 -1.55983 Vertex 18305 11.1524 6.62862 -0.77483 Vertex 18306 9.12478 6.59367 -0.0737395 Vertex 18307 11.6627 6.66395 -3.78739 Vertex 18308 10.5675 6.52876 -0.16835 Vertex 18309 9.94073 6.39922 0.0880828 Vertex 18310 6.11907 9.56089 -3.37175 Vertex 18311 5.82284 10.1637 -3.36627 Vertex 18312 5.60588 10.8355 -2.83809 Vertex 18313 5.5542 11.0949 -1.96851 Vertex 18314 5.63511 10.6625 -0.997702 Vertex 18315 5.84843 9.96762 -0.588068 Vertex 18316 6.06284 9.50294 -0.61963 Vertex 18317 6.38532 8.82922 -1.15066 Vertex 18318 6.48077 8.74409 -2.20298 Vertex 18319 6.88983 7.79056 -2.38614 Vertex 18320 6.65356 8.5077 -3.91095 Vertex 18321 6.39291 9.46479 -4.30677 Vertex 18322 6.10634 10.416 -4.27228 Vertex 18323 5.99848 11.0527 -3.96152 Vertex 18324 5.97517 11.5641 -3.41872 Vertex 18325 5.94103 11.9253 -2.74821 Vertex 18326 5.93222 12.0185 -2.0202 Vertex 18327 5.95111 11.8187 -1.17266 Vertex 18328 6.00435 11.2556 -0.39285 Vertex 18329 6.05139 10.6315 0.0726425 Vertex 18330 6.18104 10.0778 0.242451 Vertex 18331 6.45438 9.35414 0.197318 Vertex 18332 6.65177 8.66411 -0.0448602 Vertex 18333 6.83835 8.19674 -0.507845 Vertex 18334 7.77418 7.98077 0.407758 Vertex 18335 7.82331 7.50604 -0.0503432 Vertex 18336 8.01689 7.02162 -0.561473 Vertex 18337 7.67474 6.7652 -1.29067 Vertex 18338 6.93157 6.70982 -2.48978 Vertex 18339 6.85036 6.6832 -3.4677 Vertex 18340 7.23651 7.003 -3.95128 Vertex 18341 7.45914 7.71223 -4.52092 Vertex 18342 7.25316 8.9343 -5.08468 Vertex 18343 6.9842 10.3175 -5.16499 Vertex 18344 6.96141 11.3398 -4.73659 Vertex 18345 7.00302 12.0996 -3.89524 Vertex 18346 7.0177 12.5287 -2.93033 Vertex 18347 6.96726 12.5423 -1.86492 Vertex 18348 7.00826 12.1758 -0.79186 Vertex 18349 7.18137 11.4455 0.0795598 Vertex 18350 7.31077 10.6037 0.725531 Vertex 18351 7.43107 9.79609 0.97339 Vertex 18352 7.6513 8.82825 0.83021 Vertex 18353 8.20213 12.847 -1.82478 Vertex 18354 8.35509 12.0113 -0.236835 Vertex 18355 9.56358 12.75 -1.70348 Vertex 18356 9.46615 12.3557 -0.68937 Vertex 18357 10.3009 3.13545 -5.64696 Vertex 18358 8.22326 10.2488 -5.71071 Vertex 18359 9.32421 10.4572 -5.49794 Vertex 18360 8.21864 11.5289 -5.11546 Vertex 18361 10.0776 10.4885 -4.98402 Vertex 18362 9.41036 11.6273 -4.59585 Vertex 18363 11.7578 6.67526 -1.61583 Vertex 18364 12.0686 7.12911 -1.6335 Vertex 18365 8.21787 12.3672 -4.12961 Vertex 18366 9.56128 12.4478 -3.40909 Vertex 18367 10.261 11.7371 -3.94428 Vertex 18368 10.9171 10.5833 -4.32566 Vertex 18369 11.7976 10.6985 -3.47308 Vertex 18370 11.1875 11.8218 -3.16831 Vertex 18371 10.4714 12.516 -2.65749 Vertex 18372 10.8573 12.2156 -1.44302 Vertex 18373 10.6301 11.7368 -0.474565 Vertex 18374 10.0242 11.0882 0.19323 Vertex 18375 8.72375 10.5277 1.00196 Vertex 18376 8.93427 9.48012 1.36132 Vertex 18377 9.88158 9.61864 0.974645 Vertex 18378 10.9321 10.1865 -0.0168955 Vertex 18379 11.5158 10.8367 -0.613921 Vertex 18380 11.7006 11.3764 -1.49091 Vertex 18381 11.6261 11.6653 -2.34873 Vertex 18382 12.151 10.6494 -2.51092 Vertex 18383 12.1937 10.4625 -1.65977 Vertex 18384 11.9937 9.94222 -0.874533 Vertex 18385 12.1761 9.22386 -1.16442 Vertex 18386 11.6934 8.54237 -0.69214 Vertex 18387 11.4666 9.30188 -0.361518 Vertex 18388 10.8577 8.79204 0.248396 Vertex 18389 11.0456 7.8947 -0.148587 Vertex 18390 10.1694 7.46266 0.497795 Vertex 18391 10.1125 8.45189 0.927315 Vertex 18392 9.10905 8.36449 1.15449 Vertex 18393 9.16212 7.42541 0.650841 Vertex 18394 9.13797 6.87751 0.178282 Vertex 18395 10.054 6.78269 0.193826 Vertex 18396 11.4127 7.09782 -0.897472 Vertex 18397 11.8608 7.77903 -1.07312 Vertex 18398 12.2672 8.52423 -1.45229 Vertex 18399 7.98261 6.1199 -4.46757 Vertex 18400 7.57954 5.3799 -4.1097 Vertex 18401 7.04025 5.50686 -3.39309 Vertex 18402 9.27155 -0.578494 -3.89942 Vertex 18403 9.06851 1.49103 -4.09319 Vertex 18404 9.62393 1.72725 -5.35943 Vertex 18405 9.29814 2.84396 -5.38697 Vertex 18406 8.99096 3.8587 -5.40845 Vertex 18407 8.31942 4.05206 -4.70059 Vertex 18408 8.80373 2.70623 -4.66188 Vertex 18409 9.28522 1.54833 -4.73996 Vertex 18410 12.3871 9.69858 -1.89119 Vertex 18411 12.3817 9.79827 -2.58612 Vertex 18412 12.1509 9.61238 -3.47594 Vertex 18413 12.3121 8.78421 -3.19684 Vertex 18414 12.4034 8.18661 -2.8659 Vertex 18415 12.4391 7.88813 -2.56383 Vertex 18416 12.4261 7.73809 -2.18611 Vertex 18417 12.3518 7.93463 -1.8011 Vertex 18418 12.016 6.52842 -2.25613 Vertex 18419 12.2074 6.94379 -2.19009 Vertex 18420 12.1678 7.10165 -2.72338 Vertex 18421 11.9611 7.41293 -3.25783 Vertex 18422 11.6912 8.12764 -3.81028 Vertex 18423 11.3847 9.25472 -4.27895 Vertex 18424 10.5483 9.08002 -4.92733 Vertex 18425 9.61543 8.92436 -5.53128 Vertex 18426 8.45123 8.61344 -5.64402 Vertex 18427 8.72736 7.24303 -5.2844 Vertex 18428 9.72503 7.66901 -5.28144 Vertex 18429 10.6807 7.94067 -4.76155 Vertex 18430 10.802 6.9269 -5.07103 Vertex 18431 11.013 6.05635 -5.46032 Vertex 18432 10.2583 5.81914 -5.65242 Vertex 18433 9.95757 6.6214 -5.39191 Vertex 18434 9.07364 4.72304 -5.54893 Vertex 18435 8.29345 5.13894 -4.91033 Vertex 18436 9.07994 6.16059 -5.37829 Vertex 18437 9.52238 5.3891 -5.67222 Vertex 18438 9.90912 4.6131 -5.8011 Vertex 18439 10.1639 3.85566 -5.73025 Vertex 18440 9.81481 3.03327 -5.64968 Vertex 18441 9.96877 1.93263 -5.60469 Vertex 18442 10.4098 2.01203 -5.61923 Vertex 18443 10.91 1.98294 -5.49251 Vertex 18444 10.8156 3.14982 -5.56649 Vertex 18445 10.746 3.92108 -5.71036 Vertex 18446 11.4206 3.04755 -5.27522 Vertex 18447 11.542 1.90027 -5.13227 Vertex 18448 12.1642 1.8363 -4.60538 Vertex 18449 12.1506 2.90673 -4.71611 Vertex 18450 11.4304 3.96211 -5.52761 Vertex 18451 10.557 4.85893 -5.79172 Vertex 18452 11.2857 5.01879 -5.65076 Vertex 18453 12.1331 4.00626 -5.06453 Vertex 18454 12.2231 5.41023 -4.7397 Vertex 18455 11.7136 6.43583 -4.28384 Vertex 18456 11.6629 6.91226 -3.55413 Vertex 18457 12.0271 6.6028 -2.91624 Vertex 18458 12.1911 5.78563 -3.05929 Vertex 18459 12.2079 5.60427 -4.0623 Vertex 18460 12.5457 4.11498 -4.48777 Vertex 18461 12.5431 4.30579 -3.11733 Vertex 18462 13.055 0.124344 -3.34166 Vertex 18463 12.8628 2.90856 -3.23455 Vertex 18464 12.6454 2.86853 -4.21671 Vertex 18465 12.7129 1.88 -4.09934 Vertex 18466 12.7648 1.00859 -4.06548 Vertex 18467 12.9254 1.94628 -3.65125 Vertex 18468 13.0025 1.95471 -3.2835 Vertex 18469 12.8688 1.06049 -2.80579 Vertex 18470 12.6159 2.85432 -2.80603 Vertex 18471 12.3601 4.31801 -2.70493 Vertex 18472 12.0618 5.7868 -2.4625 Vertex 18473 12.1267 4.35475 -1.86549 Vertex 18474 11.7801 5.65644 -1.6887 Vertex 18475 11.2851 6.24739 -0.800755 Vertex 18476 11.5907 5.50503 -0.834686 Vertex 18477 11.957 4.36765 -0.877484 Vertex 18478 12.1907 3.04716 -0.975502 Vertex 18479 12.3031 2.9447 -1.89254 Vertex 18480 12.816 1.87628 -2.85024 Vertex 18481 12.195 1.66857 -1.71136 Vertex 18482 12.0467 1.79203 -1.0355 Vertex 18483 11.4526 1.97112 -0.455892 Vertex 18484 11.5298 3.0589 -0.276378 Vertex 18485 11.2982 4.22608 -0.156718 Vertex 18486 10.9865 5.21487 -0.16543 Vertex 18487 10.7167 6.03987 -0.189058 Vertex 18488 7.48493 4.27988 -3.28396 Vertex 18489 8.3284 2.8119 -3.3708 Vertex 18490 8.90315 1.55454 -3.48047 Vertex 18491 9.16095 0.370506 -3.64874 Vertex 18492 9.22759 0.427015 -2.93112 Vertex 18493 8.86937 1.66852 -2.88309 Vertex 18494 8.2372 2.99113 -2.76435 Vertex 18495 7.38719 4.3969 -2.57454 Vertex 18496 6.95708 5.61133 -2.45541 Vertex 18497 7.66836 5.82568 -1.49647 Vertex 18498 7.85812 4.60145 -1.99019 Vertex 18499 8.57907 4.71156 -1.22214 Vertex 18500 8.68361 5.6283 -0.629883 Vertex 18501 8.97301 6.28735 -0.228739 Vertex 18502 9.38166 4.78956 -0.162517 Vertex 18503 8.79109 4.69891 -0.662952 Vertex 18504 9.33311 5.68296 -0.0859172 Vertex 18505 10.0286 5.88097 0.0392465 Vertex 18506 10.1698 4.97213 0.0230042 Vertex 18507 10.3354 3.99572 -0.000822751 Vertex 18508 10.5333 2.94471 -0.114048 Vertex 18509 10.131 1.75076 -0.493674 Vertex 18510 9.75014 2.72642 -0.327389 Vertex 18511 9.48741 3.75951 -0.249891 Vertex 18512 8.94183 3.55119 -0.885473 Vertex 18513 8.84974 3.43113 -1.64898 Vertex 18514 8.55651 3.23159 -2.36414 Vertex 18515 9.1981 1.81886 -2.55205 Vertex 18516 9.64395 0.539337 -2.47733 Vertex 18517 9.83272 0.910299 -1.67921 Vertex 18518 9.29169 2.06417 -1.79079 Vertex 18519 9.2781 2.37914 -0.91654 Vertex 18520 9.7782 1.44696 -0.931207 Vertex 18521 10.4019 1.01497 -0.819922 Vertex 18522 11.941 0.284381 -1.45505 Vertex 18523 11.5089 0.798964 -1.01812 Vertex 18524 11.0242 1.2432 -0.617314 Vertex 18525 10.6764 1.90981 -0.322584 Vertex 18526 11.7497 0.772597 -5.15725 Vertex 18527 12.3958 0.0647512 -4.80942 Vertex 18528 12.7383 0.110176 -4.20378 Vertex 18529 12.9395 0.118795 -3.75969 Vertex 18530 10.0414 0.755798 -5.65673 Vertex 18531 10.4996 0.802526 -5.75904 Vertex 18532 10.5736 -0.0186803 -5.97637 Vertex 18533 10.1647 -0.138435 -5.8571 Vertex 18534 11.0357 0.793427 -5.60884 Vertex 18535 11.0103 0.035611 -5.82806 Vertex 18536 10.7023 -0.500093 -5.90697 Vertex 18537 10.2442 -0.653035 -5.77807 Vertex 18538 9.76045 0.625324 -5.38845 Vertex 18539 9.91041 -0.267167 -5.55087 Vertex 18540 9.50125 -0.539148 -4.77721 Vertex 18541 9.83313 -0.545827 -2.52352 Vertex 18542 9.41206 -0.603658 -3.08341 Vertex 18543 11.0838 -0.313549 -1.68387 Vertex 18544 12.5534 0.948732 -2.18503 Vertex 18545 -13.1025 -7.35784 -0.943978 Vertex 18546 -13.5421 -7.42758 -1.74329 Vertex 18547 -13.7538 -7.57038 -2.74899 Vertex 18548 -13.6417 -7.71897 -3.64646 Vertex 18549 -13.364 -7.82059 -4.26865 Vertex 18550 -12.9384 -7.90506 -4.76262 Vertex 18551 -12.0394 -7.99735 -5.16004 Vertex 18552 -11.2425 -8.03479 -5.14209 Vertex 18553 -10.6374 -8.05259 -4.89826 Vertex 18554 -10.1928 -8.03866 -4.41246 Vertex 18555 -9.8491 -7.9559 -3.48014 Vertex 18556 -9.76086 -7.78526 -2.31905 Vertex 18557 -9.96051 -7.62602 -1.4107 Vertex 18558 -10.7288 -7.45608 -0.553293 Vertex 18559 -11.6434 -7.37679 -0.238446 Vertex 18560 -12.4594 -7.34876 -0.436159 Vertex 18561 -11.7896 -11.8802 -4.07341 Vertex 18562 -11.1491 -11.7737 -3.71983 Vertex 18563 -10.9749 -11.6973 -3.43716 Vertex 18564 -10.7801 -11.5411 -2.8697 Vertex 18565 -10.6759 -11.2841 -1.97366 Vertex 18566 -10.695 -11.0398 -1.14035 Vertex 18567 -10.8214 -10.8688 -0.5639 Vertex 18568 -11.4004 -10.7475 -0.186798 Vertex 18569 -12.516 -10.8553 -0.621467 Vertex 18570 -12.8068 -10.9606 -1.00652 Vertex 18571 -13.0657 -11.1242 -1.59101 Vertex 18572 -13.1135 -11.565 -3.09239 Vertex 18573 -12.9156 -11.7124 -3.55899 Vertex 18574 -12.6612 -11.8125 -3.8821 Vertex 18575 -12.2985 -11.8725 -4.06918 Vertex 18576 -11.4735 -4.10315 -0.744821 Vertex 18577 -10.2774 -4.21142 -1.28807 Vertex 18578 -9.47914 -4.28437 -2.15329 Vertex 18579 -9.13723 -4.31623 -2.92634 Vertex 18580 -9.13837 -4.31762 -3.99422 Vertex 18581 -9.55444 -4.28168 -5.07558 Vertex 18582 -10.204 -4.22412 -5.67452 Vertex 18583 -11.1136 -4.14281 -5.93614 Vertex 18584 -12.1895 -4.05081 -5.82181 Vertex 18585 -13.0645 -3.97154 -5.34253 Vertex 18586 -13.5825 -3.92656 -4.77754 Vertex 18587 -13.8964 -3.89735 -4.16426 Vertex 18588 -14.0549 -3.86698 -3.40357 Vertex 18589 -13.9443 -3.87204 -2.49111 Vertex 18590 -13.5253 -3.91326 -1.57008 Vertex 18591 -12.6593 -3.99378 -0.915817 Vertex 18592 -9.64318 3.7976 -5.69169 Vertex 18593 -11.5338 6.14394 -5.12819 Vertex 18594 -11.8958 5.19582 -5.2872 Vertex 18595 -11.2262 7.59892 -4.07675 Vertex 18596 -11.2233 7.24657 -4.19459 Vertex 18597 -11.281 6.85211 -4.62891 Vertex 18598 -8.37237 5.83045 -0.961041 Vertex 18599 -8.38366 4.70942 -1.59436 Vertex 18600 -9.35324 0.39072 -4.40684 Vertex 18601 -9.56227 -1.70986 -5.06498 Vertex 18602 -12.7913 0.078365 -2.68918 Vertex 18603 -12.3737 0.0366908 -1.97598 Vertex 18604 -12.5715 -1.28579 -5.11415 Vertex 18605 -11.8439 -1.36887 -5.6279 Vertex 18606 -12.2911 0.875386 -4.65041 Vertex 18607 -12.581 4.23568 -3.90392 Vertex 18608 -12.796 2.90844 -3.76776 Vertex 18609 -11.4171 0.769598 -5.38276 Vertex 18610 -11.3177 -0.0665562 -5.59856 Vertex 18611 -10.8528 -0.730875 -5.74626 Vertex 18612 -10.2073 -0.916196 -5.57373 Vertex 18613 -9.77114 -0.443646 -5.23669 Vertex 18614 -9.56376 0.497311 -4.97207 Vertex 18615 -13.0195 1.08208 -3.28269 Vertex 18616 -12.9658 1.06679 -3.6316 Vertex 18617 -10.3432 -1.625 -1.93535 Vertex 18618 -7.87638 4.20782 -3.93486 Vertex 18619 -8.54523 2.71339 -3.95669 Vertex 18620 -13.3227 -3.01756 -1.95422 Vertex 18621 -11.4228 -1.4737 -1.50183 Vertex 18622 -10.271 -0.439337 -2.12774 Vertex 18623 -8.87998 3.38405 -2.07176 Vertex 18624 -12.4346 -1.37052 -1.66267 Vertex 18625 -11.3471 -13.452 -2.39041 Vertex 18626 -12.1863 -12.221 -3.98251 Vertex 18627 -11.5876 -12.2183 -3.92813 Vertex 18628 -11.1381 -12.1574 -3.66624 Vertex 18629 -11.0138 -12.0896 -3.38462 Vertex 18630 -10.9801 -12.0494 -3.11634 Vertex 18631 -10.9863 -12.0136 -2.67947 Vertex 18632 -10.9178 -11.8528 -2.06159 Vertex 18633 -10.7922 -11.5529 -1.37788 Vertex 18634 -10.8196 -11.1861 -0.681255 Vertex 18635 -11.5154 -10.9334 -0.248133 Vertex 18636 -12.3867 -11.1479 -0.508677 Vertex 18637 -12.7676 -11.4731 -1.06526 Vertex 18638 -12.9743 -11.5999 -1.47478 Vertex 18639 -13.1125 -11.7344 -1.95413 Vertex 18640 -13.122 -11.893 -2.53304 Vertex 18641 -13.0244 -12.0225 -3.07355 Vertex 18642 -12.8668 -12.1089 -3.49668 Vertex 18643 -12.592 -12.1788 -3.80991 Vertex 18644 -10.8354 -12.1798 -1.11338 Vertex 18645 -12.5097 -14.4979 -3.53851 Vertex 18646 -12.2272 -14.4902 -3.7792 Vertex 18647 -12.5636 -12.6881 -0.072607 Vertex 18648 -11.4734 -11.1744 -0.0083525 Vertex 18649 -11.9314 -12.9608 0.459965 Vertex 18650 -11.7123 -12.2769 0.489795 Vertex 18651 -10.4542 -12.4724 -0.00621599 Vertex 18652 -10.4569 -13.0586 -0.317657 Vertex 18653 -10.9194 -12.0307 0.393587 Vertex 18654 -11.4935 -13.881 0.366874 Vertex 18655 -11.0004 -13.5131 -0.612485 Vertex 18656 -10.9104 -12.7653 -0.897707 Vertex 18657 -11.1032 -12.5709 -1.95012 Vertex 18658 -11.2781 -13.9977 -0.269237 Vertex 18659 -11.3357 -13.8055 -0.95472 Vertex 18660 -11.2915 -13.1571 -1.63271 Vertex 18661 -11.5442 -13.7986 -1.77411 Vertex 18662 -11.6501 -13.308 -3.9806 Vertex 18663 -11.1484 -13.326 -3.68343 Vertex 18664 -11.0698 -13.3175 -3.27508 Vertex 18665 -11.1502 -13.3223 -2.89018 Vertex 18666 -12.859 -12.838 -0.623879 Vertex 18667 -13.0284 -13.0145 -1.1157 Vertex 18668 -13.08 -13.148 -1.6543 Vertex 18669 -13.0312 -13.2726 -2.26413 Vertex 18670 -12.9643 -13.3003 -2.83039 Vertex 18671 -12.8382 -13.2684 -3.33371 Vertex 18672 -12.6068 -13.2418 -3.7045 Vertex 18673 -12.2783 -13.2508 -3.95553 Vertex 18674 -11.6919 -14.5153 -3.79762 Vertex 18675 -11.3206 -14.5503 -3.42855 Vertex 18676 -11.3659 -14.5737 -2.90454 Vertex 18677 -11.4914 -14.5168 -2.47125 Vertex 18678 -11.5798 -14.4828 -2.01429 Vertex 18679 -11.6748 -14.5323 -1.44185 Vertex 18680 -11.597 -14.4962 -0.854582 Vertex 18681 -11.877 -14.0123 0.572116 Vertex 18682 -12.4126 -13.7581 0.630126 Vertex 18683 -12.7107 -13.8058 0.315418 Vertex 18684 -10.9968 -15.9582 -3.06085 Vertex 18685 -11.198 -16.3366 -3.08137 Vertex 18686 -11.0038 -15.6504 -2.79049 Vertex 18687 -11.4205 -16.4787 -2.91349 Vertex 18688 -10.899 -15.7459 -2.72059 Vertex 18689 -10.7294 -16.045 -2.93117 Vertex 18690 -10.7437 -16.4283 -2.89438 Vertex 18691 -10.889 -16.5983 -2.69235 Vertex 18692 -10.4676 -16.3042 -2.76057 Vertex 18693 -10.5226 -16.4599 -2.5293 Vertex 18694 -10.8591 -15.7416 -2.68243 Vertex 18695 -10.6014 -15.9838 -2.85603 Vertex 18696 -10.8116 -15.6742 -2.6148 Vertex 18697 -10.5127 -15.7486 -2.76688 Vertex 18698 -10.2909 -15.8739 -2.6372 Vertex 18699 -10.2759 -15.9497 -2.39606 Vertex 18700 -10.4502 -15.5443 -2.68932 Vertex 18701 -10.1826 -15.4404 -2.59444 Vertex 18702 -10.0933 -15.3997 -2.36738 Vertex 18703 -10.7371 -15.6214 -2.54223 Vertex 18704 -10.2095 -15.1226 -2.37672 Vertex 18705 -10.7599 -15.5717 -2.53139 Vertex 18706 -10.5335 -15.4276 -2.6771 Vertex 18707 -10.3162 -15.2138 -2.59292 Vertex 18708 -10.8914 -15.5374 -2.49719 Vertex 18709 -10.7955 -15.3189 -2.64137 Vertex 18710 -10.7129 -15.0767 -2.58486 Vertex 18711 -10.6538 -14.9783 -2.37075 Vertex 18712 -11.1253 -15.0109 -2.59236 Vertex 18713 -11.1899 -14.9121 -2.51656 Vertex 18714 -11.1468 -15.4492 -2.47741 Vertex 18715 -11.1086 -15.2431 -2.5876 Vertex 18716 -11.4409 -14.8817 -2.47815 Vertex 18717 -11.3801 -15.1727 -2.5256 Vertex 18718 -11.5443 -15.1143 -2.43519 Vertex 18719 -10.9827 -14.9052 -2.37135 Vertex 18720 -11.5449 -14.8487 -2.33313 Vertex 18721 -11.6188 -15.0718 -2.32064 Vertex 18722 -11.599 -14.925 -2.33071 Vertex 18723 -11.4969 -14.96 -2.47699 Vertex 18724 -11.1357 -15.6372 -2.89337 Vertex 18725 -11.9023 -16.2281 -3.20322 Vertex 18726 -11.6371 -16.1477 -3.33377 Vertex 18727 -11.2902 -15.874 -3.23586 Vertex 18728 -11.9561 -16.1479 -2.60409 Vertex 18729 -12.0249 -16.2227 -2.94151 Vertex 18730 -11.1947 -15.6631 -2.45553 Vertex 18731 -11.4928 -14.9719 -2.00649 Vertex 18732 -11.5992 -14.9286 -2.15329 Vertex 18733 -11.6206 -15.0736 -2.1742 Vertex 18734 -11.5458 -14.8534 -2.14745 Vertex 18735 -10.9829 -14.9128 -2.1113 Vertex 18736 -11.5469 -15.1202 -2.05878 Vertex 18737 -11.3804 -15.1832 -1.9713 Vertex 18738 -11.4374 -14.8943 -2.00139 Vertex 18739 -11.1043 -15.2569 -1.91506 Vertex 18740 -11.1457 -15.4539 -2.1987 Vertex 18741 -11.1858 -14.9276 -1.96543 Vertex 18742 -11.1172 -15.03 -1.89791 Vertex 18743 -10.6534 -14.997 -2.11081 Vertex 18744 -10.7084 -15.1236 -1.91245 Vertex 18745 -10.8317 -15.3491 -1.92775 Vertex 18746 -10.9317 -15.5394 -2.19605 Vertex 18747 -10.3752 -15.2717 -1.91176 Vertex 18748 -10.6775 -15.4511 -1.94595 Vertex 18749 -10.8464 -15.5707 -2.21128 Vertex 18750 -10.211 -15.156 -2.1066 Vertex 18751 -10.8289 -15.6274 -2.21212 Vertex 18752 -10.128 -15.424 -2.09769 Vertex 18753 -10.3393 -15.4768 -1.9113 Vertex 18754 -10.6641 -15.5626 -1.94574 Vertex 18755 -10.3579 -15.9615 -2.16109 Vertex 18756 -10.5279 -15.9131 -1.97233 Vertex 18757 -10.7881 -15.7965 -1.98495 Vertex 18758 -10.932 -15.6947 -2.26276 Vertex 18759 -10.9502 -16.0333 -2.0339 Vertex 18760 -11.0129 -15.7663 -2.31413 Vertex 18761 -10.6385 -16.4733 -2.25892 Vertex 18762 -10.7785 -16.3424 -2.03634 Vertex 18763 -11.0139 -16.6066 -2.41707 Vertex 18764 -11.08 -16.4468 -2.15647 Vertex 18765 -11.1065 -16.0718 -2.10418 Vertex 18766 -11.0646 -15.7625 -2.35622 Vertex 18767 -11.5353 -16.4764 -2.67175 Vertex 18768 -11.1616 -15.6642 -2.43159 Vertex 18769 -11.5097 -16.3325 -2.38104 Vertex 18770 -11.3516 -15.9703 -2.24336 Vertex 18771 -11.956 -15.8201 -3.56362 Vertex 18772 -11.4747 -15.6676 -3.41945 Vertex 18773 -11.2107 -15.5877 -2.99704 Vertex 18774 -11.2458 -15.6671 -2.46591 Vertex 18775 -12.3404 -15.9201 -2.80141 Vertex 18776 -12.5751 -15.5236 -2.90041 Vertex 18777 -12.5518 -15.4379 -3.22346 Vertex 18778 -12.4392 -15.3648 -3.49695 Vertex 18779 -12.0964 -15.3385 -3.67683 Vertex 18780 -11.5803 -15.2444 -3.56044 Vertex 18781 -11.2949 -15.2411 -3.10928 Vertex 18782 -11.4131 -15.3051 -2.5748 Vertex 18783 -11.5431 -15.2373 -2.1767 Vertex 18784 -11.582 -15.1531 -1.75715 Vertex 18785 -12.7891 -15.3705 -1.58353 Vertex 18786 -12.87 -15.366 -1.90165 Vertex 18787 -12.8823 -15.3662 -2.20431 Vertex 18788 -12.7169 -15.4586 -2.54439 Vertex 18789 -12.4459 -15.8693 -2.42997 Vertex 18790 -11.3612 -15.6596 -2.06394 Vertex 18791 -11.4579 -15.5878 -1.62673 Vertex 18792 -12.5918 -15.7847 -1.45772 Vertex 18793 -11.0705 -16.0469 -2.15018 Vertex 18794 -11.3228 -16.3969 -2.0514 Vertex 18795 -10.9564 -15.7097 -1.91407 Vertex 18796 -11.486 -16.4877 -1.7814 Vertex 18797 -10.7841 -15.8511 -1.8701 Vertex 18798 -10.7454 -16.2098 -2.10725 Vertex 18799 -10.8174 -16.6033 -2.01791 Vertex 18800 -10.9184 -16.7206 -1.73974 Vertex 18801 -10.539 -16.5122 -1.99322 Vertex 18802 -10.5793 -16.6162 -1.72111 Vertex 18803 -10.6828 -15.82 -1.85022 Vertex 18804 -10.5789 -16.1553 -2.08275 Vertex 18805 -10.5744 -15.7435 -1.75501 Vertex 18806 -10.3753 -15.975 -1.97423 Vertex 18807 -10.206 -16.2719 -1.88607 Vertex 18808 -10.1854 -16.3863 -1.64082 Vertex 18809 -10.2582 -15.853 -1.87461 Vertex 18810 -9.99155 -16.0626 -1.8301 Vertex 18811 -9.90052 -16.1712 -1.60084 Vertex 18812 -10.4948 -15.7381 -1.65819 Vertex 18813 -9.81328 -15.7489 -1.59738 Vertex 18814 -10.242 -15.7272 -1.85467 Vertex 18815 -9.93756 -15.7487 -1.82056 Vertex 18816 -10.5015 -15.7063 -1.58097 Vertex 18817 -10.3636 -15.5425 -1.80887 Vertex 18818 -10.1907 -15.3366 -1.79442 Vertex 18819 -10.0963 -15.2179 -1.58259 Vertex 18820 -10.5935 -15.1006 -1.76774 Vertex 18821 -10.6356 -14.971 -1.68869 Vertex 18822 -10.6641 -15.5895 -1.51669 Vertex 18823 -10.612 -15.3817 -1.74171 Vertex 18824 -10.883 -14.8838 -1.62317 Vertex 18825 -10.8684 -15.2212 -1.6481 Vertex 18826 -11.0133 -15.1044 -1.53944 Vertex 18827 -10.3941 -14.9897 -1.5673 Vertex 18828 -10.9647 -14.8143 -1.46718 Vertex 18829 -11.0626 -15.0306 -1.41928 Vertex 18830 -11.0154 -14.8812 -1.45074 Vertex 18831 -10.9427 -14.9496 -1.60699 Vertex 18832 -11.1694 -15.6514 -1.9963 Vertex 18833 -12.183 -16.141 -1.90648 Vertex 18834 -11.9863 -16.1188 -2.21413 Vertex 18835 -11.6015 -15.8119 -1.24531 Vertex 18836 -12.0645 -16.0364 -1.34511 Vertex 18837 -12.1942 -16.0988 -1.62962 Vertex 18838 -11.2351 -15.5924 -1.57194 Vertex 18839 -10.877 -14.9071 -1.13038 Vertex 18840 -10.9905 -14.8651 -1.26965 Vertex 18841 -11.042 -15.0172 -1.2692 Vertex 18842 -10.9385 -14.7974 -1.27676 Vertex 18843 -10.3574 -14.966 -1.30089 Vertex 18844 -10.9608 -15.0704 -1.15816 Vertex 18845 -10.7902 -15.1706 -1.08066 Vertex 18846 -10.8164 -14.8408 -1.13977 Vertex 18847 -10.5161 -15.3197 -1.04575 Vertex 18848 -10.6248 -15.564 -1.23101 Vertex 18849 -10.5586 -14.9212 -1.12931 Vertex 18850 -10.4949 -15.0369 -1.05227 Vertex 18851 -10.0715 -15.2065 -1.32094 Vertex 18852 -10.1276 -15.309 -1.09862 Vertex 18853 -10.2977 -15.5194 -1.05895 Vertex 18854 -9.93571 -15.7574 -1.10366 Vertex 18855 -10.2373 -15.7433 -1.06725 Vertex 18856 -9.81345 -15.7523 -1.32339 Vertex 18857 -10.5098 -15.7458 -1.3029 Vertex 18858 -9.91256 -16.1723 -1.32138 Vertex 18859 -10.0239 -16.0657 -1.09825 Vertex 18860 -10.2935 -15.8626 -1.06694 Vertex 18861 -10.1895 -16.4011 -1.38876 Vertex 18862 -10.2508 -16.2724 -1.15405 Vertex 18863 -10.4485 -15.9535 -1.1048 Vertex 18864 -10.6069 -15.7363 -1.36554 Vertex 18865 -10.6541 -16.0833 -1.14012 Vertex 18866 -10.7163 -15.7891 -1.43293 Vertex 18867 -10.5853 -16.6146 -1.41847 Vertex 18868 -10.5868 -16.4694 -1.16523 Vertex 18869 -10.9309 -16.6904 -1.43431 Vertex 18870 -10.8566 -16.5196 -1.17413 Vertex 18871 -10.7927 -16.1149 -1.15175 Vertex 18872 -10.8046 -15.8097 -1.45295 Vertex 18873 -11.49 -16.4624 -1.52057 Vertex 18874 -10.9666 -15.67 -1.50975 Vertex 18875 -11.339 -16.3212 -1.26114 Vertex 18876 -11.0929 -15.9568 -1.21642 Vertex 18877 -11.0802 -16.1322 -0.99902 Vertex 18878 -11.2449 -16.4615 -0.886095 Vertex 18879 -11.0452 -15.7922 -0.779305 Vertex 18880 -11.3854 -16.5306 -0.614924 Vertex 18881 -10.7781 -15.9113 -0.717338 Vertex 18882 -10.5829 -16.2201 -0.944682 Vertex 18883 -10.4709 -16.5946 -0.842891 Vertex 18884 -10.5096 -16.7321 -0.559906 Vertex 18885 -10.2058 -16.4007 -0.832142 Vertex 18886 -10.1615 -16.5137 -0.553528 Vertex 18887 -10.6691 -15.8273 -0.707744 Vertex 18888 -10.4296 -16.0926 -0.933836 Vertex 18889 -10.6001 -15.6467 -0.672126 Vertex 18890 -10.3274 -15.766 -0.881313 Vertex 18891 -10.0352 -15.9367 -0.773641 Vertex 18892 -9.94275 -16.0216 -0.519014 Vertex 18893 -10.2512 -15.4845 -0.835863 Vertex 18894 -9.9344 -15.4799 -0.767644 Vertex 18895 -9.81588 -15.5045 -0.52904 Vertex 18896 -10.5204 -15.5345 -0.632155 Vertex 18897 -9.90921 -15.1923 -0.544236 Vertex 18898 -10.5249 -15.5196 -0.620766 Vertex 18899 -10.2851 -15.3973 -0.828256 Vertex 18900 -10.0091 -15.2537 -0.773507 Vertex 18901 -10.682 -15.4774 -0.60652 Vertex 18902 -10.5231 -15.2977 -0.822386 Vertex 18903 -10.3684 -15.0667 -0.792409 Vertex 18904 -10.307 -14.955 -0.573487 Vertex 18905 -10.7973 -14.9234 -0.826906 Vertex 18906 -10.8385 -14.8109 -0.751156 Vertex 18907 -10.9507 -15.344 -0.598269 Vertex 18908 -10.8457 -15.1661 -0.810516 Vertex 18909 -11.0848 -14.7131 -0.71654 Vertex 18910 -11.0965 -15.0185 -0.750699 Vertex 18911 -11.2445 -14.9108 -0.660091 Vertex 18912 -10.6192 -14.8591 -0.60039 Vertex 18913 -11.1827 -14.6482 -0.570409 Vertex 18914 -11.3047 -14.8442 -0.54512 Vertex 18915 -11.2405 -14.7094 -0.564255 Vertex 18916 -11.1514 -14.7723 -0.711783 Vertex 18917 -12.3729 -16.0511 -0.742073 Vertex 18918 -12.1743 -16.0921 -1.01741 Vertex 18919 -11.6612 -15.9038 -1.13893 Vertex 18920 -12.2223 -15.8842 -0.162675 Vertex 18921 -12.3932 -15.978 -0.462655 Vertex 18922 -11.1539 -14.758 -0.229375 Vertex 18923 -11.2414 -14.704 -0.380976 Vertex 18924 -11.3054 -14.8397 -0.393218 Vertex 18925 -11.1837 -14.6425 -0.377679 Vertex 18926 -10.6206 -14.8512 -0.330744 Vertex 18927 -11.2465 -14.8995 -0.274182 Vertex 18928 -11.0994 -15.0016 -0.17636 Vertex 18929 -11.0873 -14.6987 -0.227269 Vertex 18930 -10.8492 -15.1453 -0.106099 Vertex 18931 -10.9522 -15.3354 -0.30912 Vertex 18932 -10.8414 -14.7943 -0.184969 Vertex 18933 -10.8009 -14.9021 -0.102727 Vertex 18934 -10.314 -14.9505 -0.310009 Vertex 18935 -10.3883 -15.0557 -0.092117 Vertex 18936 -10.5459 -15.2866 -0.0672072 Vertex 18937 -10.6918 -15.4729 -0.288154 Vertex 18938 -10.0597 -15.254 -0.057314 Vertex 18939 -10.3367 -15.4097 -0.0388528 Vertex 18940 -10.5455 -15.5318 -0.273854 Vertex 18941 -9.92891 -15.1924 -0.270535 Vertex 18942 -10.5519 -15.5461 -0.275202 Vertex 18943 -9.8427 -15.5043 -0.250386 Vertex 18944 -10.0055 -15.4791 -0.0378115 Vertex 18945 -9.9664 -16.0113 -0.26971 Vertex 18946 -10.1042 -15.9065 -0.0448333 Vertex 18947 -10.4097 -15.7293 -0.0116942 Vertex 18948 -10.6369 -15.6301 -0.282012 Vertex 18949 -10.5333 -16.0172 0.0095315 Vertex 18950 -10.7164 -15.7942 -0.289906 Vertex 18951 -10.1992 -16.4902 -0.253124 Vertex 18952 -10.2998 -16.3348 -0.00620925 Vertex 18953 -10.549 -16.7038 -0.254832 Vertex 18954 -10.5701 -16.5142 -0.000441 Vertex 18955 -10.6919 -16.1283 0.009247 Vertex 18956 -10.8273 -15.8714 -0.300785 Vertex 18957 -11.4096 -16.4845 -0.35648 Vertex 18958 -11.0816 -15.7207 -0.379793 Vertex 18959 -11.3186 -16.3205 -0.103533 Vertex 18960 -11.1661 -15.9658 -0.0753888 Vertex 18961 -12.7091 -15.7601 -1.15624 Vertex 18962 -11.5681 -15.4715 -0.896087 Vertex 18963 -11.4882 -15.3116 -0.306367 Vertex 18964 -12.7708 -15.5395 -0.206832 Vertex 18965 -13.0047 -15.1441 -0.343456 Vertex 18966 -13.1093 -15.1863 -0.647911 Vertex 18967 -13.1008 -15.254 -0.96273 Vertex 18968 -12.9035 -15.3428 -1.27192 Vertex 18969 -11.6837 -15.1212 -1.13684 Vertex 18970 -11.5646 -14.9792 -0.559821 Vertex 18971 -11.3197 -14.7026 -0.0290285 Vertex 18972 -11.4275 -14.5129 0.481943 Vertex 18973 -12.0458 -14.4422 0.822399 Vertex 18974 -12.6509 -14.4707 0.780419 Vertex 18975 -12.878 -14.6291 0.480007 Vertex 18976 -12.902 -14.8296 0.200615 Vertex 18977 -12.8985 -15.0146 -0.0649993 Vertex 18978 -12.6452 -15.4123 0.0871005 Vertex 18979 -11.2845 -15.1187 0.163624 Vertex 18980 -11.3496 -14.9318 0.660387 Vertex 18981 -11.9235 -14.9134 0.969897 Vertex 18982 -12.549 -15.0112 0.925601 Vertex 18983 -10.9702 -15.8204 0.133448 Vertex 18984 -11.2105 -16.0929 0.275193 Vertex 18985 -10.885 -15.5231 0.346337 Vertex 18986 -11.397 -16.1474 0.566383 Vertex 18987 -10.7509 -15.789 0.371671 Vertex 18988 -10.6477 -16.1966 0.165955 Vertex 18989 -10.652 -16.5919 0.27984 Vertex 18990 -10.7346 -16.6978 0.547815 Vertex 18991 -10.3645 -16.6251 0.280243 Vertex 18992 -10.3735 -16.7359 0.551247 Vertex 18993 -10.6657 -15.9243 0.333245 Vertex 18994 -10.4875 -16.2829 0.147081 Vertex 18995 -10.4873 -15.8824 0.319906 Vertex 18996 -10.2663 -16.1178 0.135738 Vertex 18997 -10.0261 -16.3381 0.269989 Vertex 18998 -9.96076 -16.4013 0.534708 Vertex 18999 -10.0519 -15.9865 0.124268 Vertex 19000 -9.72909 -16.0501 0.213149 Vertex 19001 -9.61791 -16.0396 0.458633 Vertex 19002 -10.308 -15.8562 0.304009 Vertex 19003 -9.61853 -15.717 0.382146 Vertex 19004 -10.2988 -15.8395 0.303067 Vertex 19005 -10.0253 -15.8865 0.109378 Vertex 19006 -9.7171 -15.8052 0.161324 Vertex 19007 -10.4233 -15.7703 0.285552 Vertex 19008 -10.2001 -15.7001 0.0669152 Vertex 19009 -9.99401 -15.5052 0.0762488 Vertex 19010 -9.92558 -15.3682 0.279536 Vertex 19011 -10.3433 -15.25 -0.0247208 Vertex 19012 -10.3584 -15.1185 0.0279298 Vertex 19013 -10.6358 -15.5652 0.233961 Vertex 19014 -10.4613 -15.4638 0.017405 Vertex 19015 -10.5682 -14.9536 0.0122238 Vertex 19016 -10.6638 -15.2459 0.0188735 Vertex 19017 -10.7835 -15.0877 0.0710203 Vertex 19018 -10.18 -15.1952 0.214267 Vertex 19019 -10.6585 -14.8391 0.131917 Vertex 19020 -10.8339 -14.9873 0.165544 Vertex 19021 -10.7319 -14.8804 0.137816 Vertex 19022 -10.6492 -14.9909 0.0151775 Vertex 19023 -11.1035 -15.3172 0.234854 Vertex 19024 -12.1639 -15.5774 0.496322 Vertex 19025 -11.9913 -15.648 0.207423 Vertex 19026 -11.5947 -15.1995 0.99252 Vertex 19027 -12.0681 -15.3513 1.00302 Vertex 19028 -12.2066 -15.5005 0.76414 Vertex 19029 -11.1562 -15.1708 0.667344 Vertex 19030 -10.6999 -14.8882 0.484834 Vertex 19031 -10.7511 -14.8414 0.316252 Vertex 19032 -10.8499 -14.955 0.313433 Vertex 19033 -10.6788 -14.7981 0.319552 Vertex 19034 -10.2084 -15.1379 0.476786 Vertex 19035 -10.824 -15.0056 0.446729 Vertex 19036 -10.7242 -15.1237 0.578035 Vertex 19037 -10.6197 -14.8495 0.48856 Vertex 19038 -10.5354 -15.3139 0.703206 Vertex 19039 -10.6662 -15.5037 0.515468 Vertex 19040 -10.418 -14.9981 0.579151 Vertex 19041 -10.4195 -15.0959 0.680315 Vertex 19042 -9.95463 -15.3103 0.535608 Vertex 19043 -10.0716 -15.3507 0.756744 Vertex 19044 -10.2841 -15.5329 0.800631 Vertex 19045 -10.4588 -15.6997 0.594845 Vertex 19046 -9.80173 -15.6349 0.855183 Vertex 19047 -10.3363 -15.7547 0.637527 Vertex 19048 -9.65091 -15.6518 0.647295 Vertex 19049 -10.3436 -15.7624 0.647699 Vertex 19050 -9.64877 -15.9687 0.728215 Vertex 19051 -9.80899 -15.8633 0.919177 Vertex 19052 -10.1366 -15.7768 0.904405 Vertex 19053 -9.98919 -16.3517 0.778813 Vertex 19054 -10.109 -16.1931 0.983373 Vertex 19055 -10.3638 -15.944 0.986792 Vertex 19056 -10.5303 -15.8039 0.701681 Vertex 19057 -10.6138 -16.1489 1.05509 Vertex 19058 -10.722 -15.8625 0.745602 Vertex 19059 -10.4132 -16.6995 0.8386 Vertex 19060 -10.4741 -16.5166 1.06324 Vertex 19061 -10.774 -16.671 0.838895 Vertex 19062 -10.764 -16.5222 1.08109 Vertex 19063 -10.7839 -16.1101 1.08887 Vertex 19064 -10.8144 -15.7453 0.784409 Vertex 19065 -11.4326 -16.1122 0.821016 Vertex 19066 -10.9664 -15.4535 0.745558 Vertex 19067 -11.3407 -15.9813 1.05063 Vertex 19068 -11.1464 -15.6744 1.05348 Vertex 19069 -10.7373 -14.165 1.29854 Vertex 19070 -10.5066 -13.8777 1.40168 Vertex 19071 -10.2245 -13.7315 1.33939 Vertex 19072 -9.92991 -13.7297 1.11166 Vertex 19073 -9.86131 -13.9392 0.675226 Vertex 19074 -10.1099 -14.236 0.379308 Vertex 19075 -10.4625 -14.4633 0.469302 Vertex 19076 -10.7391 -14.4557 0.889807 Vertex 19077 -10.624 -13.9633 0.00584375 Vertex 19078 -11.1581 -13.9078 0.43731 Vertex 19079 -11.3934 -13.3657 0.915846 Vertex 19080 -11.162 -12.9162 1.07866 Vertex 19081 -11.1258 -13.6917 1.1809 Vertex 19082 -10.881 -13.3193 1.29609 Vertex 19083 -10.5565 -14.1913 0.264037 Vertex 19084 -10.9821 -14.134 0.711664 Vertex 19085 -10.2332 -14.7713 0.590915 Vertex 19086 -10.3925 -14.8927 0.989847 Vertex 19087 -10.3188 -14.751 1.40773 Vertex 19088 -10.1275 -14.4929 1.55505 Vertex 19089 -10.1898 -15.237 0.892284 Vertex 19090 -10.0483 -15.265 1.26801 Vertex 19091 -9.81355 -15.0616 1.42939 Vertex 19092 -10.1008 -14.9615 0.572117 Vertex 19093 -9.61889 -15.42 1.09843 Vertex 19094 -10.0461 -15.0624 0.36784 Vertex 19095 -10.1161 -15.3859 0.649031 Vertex 19096 -9.9133 -15.5344 0.966834 Vertex 19097 -9.89133 -15.2748 0.149092 Vertex 19098 -9.96201 -15.5958 0.406852 Vertex 19099 -9.76829 -15.77 0.657895 Vertex 19100 -9.48241 -15.657 0.775885 Vertex 19101 -9.61719 -16.0295 0.318597 Vertex 19102 -9.45055 -16.0974 0.331033 Vertex 19103 -9.65376 -15.5894 -0.0803627 Vertex 19104 -9.76008 -15.8427 0.141438 Vertex 19105 -9.29239 -16.2505 0.125758 Vertex 19106 -9.5474 -16.031 -0.056035 Vertex 19107 -9.35159 -16.1076 -0.166424 Vertex 19108 -9.36819 -15.8505 0.513461 Vertex 19109 -9.07292 -16.2279 0.0439912 Vertex 19110 -9.1735 -16.092 -0.219445 Vertex 19111 -9.09489 -16.2103 -0.077505 Vertex 19112 -9.3181 -16.2304 0.006999 Vertex 19113 -8.82605 -15.851 -0.048962 Vertex 19114 -8.91232 -16.07 -0.098545 Vertex 19115 -9.02527 -15.9827 -0.242689 Vertex 19116 -8.88218 -16.0813 0.0222125 Vertex 19117 -9.09592 -15.6415 0.481609 Vertex 19118 -8.95834 -15.8103 -0.21775 Vertex 19119 -8.97077 -15.587 -0.122059 Vertex 19120 -8.79539 -15.8671 0.0694167 Vertex 19121 -9.07124 -15.3097 0.0583655 Vertex 19122 -9.37127 -15.3692 -0.116487 Vertex 19123 -8.87201 -15.6516 0.264619 Vertex 19124 -8.89811 -15.4755 0.235711 Vertex 19125 -9.20276 -15.4418 0.743878 Vertex 19126 -9.05319 -15.2195 0.575592 Vertex 19127 -9.21774 -15.0195 0.317405 Vertex 19128 -9.58252 -15.0339 0.109941 Vertex 19129 -9.18684 -14.9737 0.883926 Vertex 19130 -9.34092 -14.7878 0.559702 Vertex 19131 -9.71384 -14.806 0.329717 Vertex 19132 -9.33539 -15.2011 1.06673 Vertex 19133 -9.76563 -14.6948 0.524091 Vertex 19134 -9.53881 -14.8431 1.38593 Vertex 19135 -9.33956 -14.7038 1.16095 Vertex 19136 -9.42061 -14.6276 0.780656 Vertex 19137 -9.88039 -14.3244 1.49782 Vertex 19138 -9.63675 -14.2779 1.25422 Vertex 19139 -9.61017 -14.3526 0.819497 Vertex 19140 -9.8859 -14.5359 0.516849 Vertex 19141 -9.91967 -13.5596 0.471917 Vertex 19142 -10.1453 -13.9005 0.163673 Vertex 19143 -10.4973 -13.1446 1.24238 Vertex 19144 -10.091 -13.2334 0.987803 Vertex 19145 -10.755 -12.7311 1.09297 Vertex 19146 -10.2709 -12.8889 0.805286 Vertex 19147 -9.96253 -13.3004 0.208908 Vertex 19148 -10.1439 -13.6476 -0.0976915 Vertex 19149 -13.1004 -1.27789 -4.01498 Vertex 19150 -12.886 -1.28328 -4.51262 Vertex 19151 -11.7565 -0.053086 -5.33972 Vertex 19152 -11.0058 -1.5807 -5.83806 Vertex 19153 -10.2 -1.71982 -5.63033 Vertex 19154 -9.17786 -1.73246 -4.09787 Vertex 19155 -9.23676 -1.77189 -3.16126 Vertex 19156 -13.0344 -1.31754 -2.76256 Vertex 19157 -13.271 -1.26805 -3.49451 Vertex 19158 -9.67235 -1.74287 -2.51484 Vertex 19159 -13.5677 -2.99752 -2.78114 Vertex 19160 -13.6739 -2.99092 -3.57058 Vertex 19161 -13.5154 -3.01941 -4.15966 Vertex 19162 -13.2376 -3.04464 -4.68284 Vertex 19163 -12.8458 -3.07153 -5.23806 Vertex 19164 -12.1105 -3.13829 -5.70633 Vertex 19165 -10.2643 -3.30124 -5.67486 Vertex 19166 -11.1565 -3.22022 -5.87249 Vertex 19167 -9.60971 -3.36069 -5.13828 Vertex 19168 -9.16076 -3.39383 -4.10233 Vertex 19169 -9.17723 -3.39233 -3.0696 Vertex 19170 -9.59562 -3.36196 -2.35094 Vertex 19171 -12.649 -3.08178 -1.25673 Vertex 19172 -10.3578 -3.29276 -1.56723 Vertex 19173 -11.5136 -3.1878 -1.0411 Vertex 19174 -11.8244 5.69827 -2.20344 Vertex 19175 -12.3165 1.66558 -2.1398 Vertex 19176 -12.1413 4.30726 -2.47764 Vertex 19177 -12.3001 2.84283 -2.45353 Vertex 19178 -10.6498 0.386163 -1.28258 Vertex 19179 -9.457 1.94182 -2.32586 Vertex 19180 -9.94987 0.63454 -2.19166 Vertex 19181 -8.81991 6.66755 -5.20468 Vertex 19182 -9.78402 7.1004 -5.23355 Vertex 19183 -12.5423 4.28274 -3.50999 Vertex 19184 -12.1229 5.70163 -3.58774 Vertex 19185 -10.7145 7.40039 -4.79212 Vertex 19186 -11.5457 6.42766 -1.55983 Vertex 19187 -11.1524 6.62862 -0.77483 Vertex 19188 -9.12478 6.59368 -0.0737395 Vertex 19189 -11.6627 6.66395 -3.78739 Vertex 19190 -10.5676 6.52876 -0.16835 Vertex 19191 -9.94073 6.39922 0.0880827 Vertex 19192 -6.11907 9.56089 -3.37175 Vertex 19193 -5.82284 10.1637 -3.36627 Vertex 19194 -5.60588 10.8356 -2.83809 Vertex 19195 -5.5542 11.0949 -1.96851 Vertex 19196 -5.63511 10.6625 -0.997702 Vertex 19197 -5.84843 9.96762 -0.588068 Vertex 19198 -6.06284 9.50294 -0.61963 Vertex 19199 -6.38532 8.82922 -1.15066 Vertex 19200 -6.48077 8.74409 -2.20298 Vertex 19201 -6.88983 7.79056 -2.38614 Vertex 19202 -6.65356 8.5077 -3.91095 Vertex 19203 -6.39292 9.46479 -4.30677 Vertex 19204 -6.10634 10.416 -4.27228 Vertex 19205 -5.99848 11.0527 -3.96152 Vertex 19206 -5.97517 11.5641 -3.41872 Vertex 19207 -5.94103 11.9253 -2.74821 Vertex 19208 -5.93222 12.0185 -2.0202 Vertex 19209 -5.95111 11.8187 -1.17266 Vertex 19210 -6.00435 11.2556 -0.39285 Vertex 19211 -6.05139 10.6315 0.0726425 Vertex 19212 -6.18104 10.0778 0.242451 Vertex 19213 -6.45438 9.35414 0.197318 Vertex 19214 -6.65177 8.66411 -0.0448602 Vertex 19215 -6.83835 8.19674 -0.507845 Vertex 19216 -7.77418 7.98077 0.407758 Vertex 19217 -7.82332 7.50604 -0.0503433 Vertex 19218 -8.01689 7.02162 -0.561474 Vertex 19219 -7.67474 6.7652 -1.29067 Vertex 19220 -6.93157 6.70982 -2.48978 Vertex 19221 -6.85036 6.6832 -3.4677 Vertex 19222 -7.2365 7.003 -3.95128 Vertex 19223 -7.45914 7.71223 -4.52092 Vertex 19224 -7.25316 8.9343 -5.08468 Vertex 19225 -6.9842 10.3175 -5.16499 Vertex 19226 -6.96141 11.3398 -4.73659 Vertex 19227 -7.00302 12.0996 -3.89524 Vertex 19228 -7.0177 12.5287 -2.93033 Vertex 19229 -6.96726 12.5423 -1.86492 Vertex 19230 -7.00826 12.1758 -0.79186 Vertex 19231 -7.18137 11.4455 0.0795598 Vertex 19232 -7.31078 10.6037 0.725531 Vertex 19233 -7.43107 9.79609 0.97339 Vertex 19234 -7.6513 8.82825 0.83021 Vertex 19235 -8.20213 12.847 -1.82478 Vertex 19236 -8.35509 12.0113 -0.236835 Vertex 19237 -9.56358 12.75 -1.70348 Vertex 19238 -9.46615 12.3557 -0.68937 Vertex 19239 -10.3009 3.13545 -5.64696 Vertex 19240 -8.22326 10.2488 -5.71071 Vertex 19241 -9.32421 10.4572 -5.49794 Vertex 19242 -8.21864 11.5289 -5.11546 Vertex 19243 -10.0776 10.4885 -4.98402 Vertex 19244 -9.41036 11.6273 -4.59585 Vertex 19245 -11.7577 6.67526 -1.61583 Vertex 19246 -12.0686 7.12911 -1.6335 Vertex 19247 -8.21787 12.3672 -4.12961 Vertex 19248 -9.56128 12.4478 -3.40908 Vertex 19249 -10.261 11.7372 -3.94428 Vertex 19250 -10.9171 10.5833 -4.32566 Vertex 19251 -11.7976 10.6985 -3.47308 Vertex 19252 -11.1874 11.8218 -3.16832 Vertex 19253 -10.4714 12.5159 -2.65749 Vertex 19254 -10.8573 12.2156 -1.44302 Vertex 19255 -10.6301 11.7368 -0.474565 Vertex 19256 -10.0242 11.0882 0.19323 Vertex 19257 -8.72375 10.5277 1.00196 Vertex 19258 -8.93427 9.48012 1.36132 Vertex 19259 -9.88158 9.61864 0.974645 Vertex 19260 -10.9321 10.1865 -0.0168955 Vertex 19261 -11.5158 10.8367 -0.613921 Vertex 19262 -11.7006 11.3764 -1.49091 Vertex 19263 -11.6262 11.6653 -2.34872 Vertex 19264 -12.151 10.6494 -2.51092 Vertex 19265 -12.1937 10.4625 -1.65977 Vertex 19266 -11.9937 9.94222 -0.874533 Vertex 19267 -12.1761 9.22387 -1.16442 Vertex 19268 -11.6934 8.54237 -0.69214 Vertex 19269 -11.4666 9.30188 -0.361518 Vertex 19270 -10.8577 8.79204 0.248396 Vertex 19271 -11.0456 7.8947 -0.148587 Vertex 19272 -10.1694 7.46266 0.497795 Vertex 19273 -10.1125 8.45189 0.927316 Vertex 19274 -9.10905 8.36449 1.15449 Vertex 19275 -9.16212 7.42541 0.650841 Vertex 19276 -9.13798 6.87751 0.178281 Vertex 19277 -10.054 6.78269 0.193826 Vertex 19278 -11.4127 7.09782 -0.897472 Vertex 19279 -11.8608 7.77903 -1.07312 Vertex 19280 -12.2672 8.52423 -1.45229 Vertex 19281 -7.98261 6.1199 -4.46757 Vertex 19282 -7.57954 5.3799 -4.1097 Vertex 19283 -7.04025 5.50686 -3.39309 Vertex 19284 -9.27155 -0.578494 -3.89942 Vertex 19285 -9.06851 1.49103 -4.09319 Vertex 19286 -9.62393 1.72725 -5.35943 Vertex 19287 -9.29814 2.84396 -5.38697 Vertex 19288 -8.99096 3.8587 -5.40845 Vertex 19289 -8.31942 4.05206 -4.70059 Vertex 19290 -8.80373 2.70623 -4.66188 Vertex 19291 -9.28522 1.54833 -4.73996 Vertex 19292 -12.3871 9.69858 -1.89119 Vertex 19293 -12.3817 9.79827 -2.58612 Vertex 19294 -12.1509 9.61238 -3.47594 Vertex 19295 -12.3121 8.78421 -3.19684 Vertex 19296 -12.4034 8.18661 -2.8659 Vertex 19297 -12.4391 7.88813 -2.56383 Vertex 19298 -12.4261 7.73809 -2.18611 Vertex 19299 -12.3518 7.93463 -1.8011 Vertex 19300 -12.016 6.52842 -2.25613 Vertex 19301 -12.2074 6.94379 -2.19009 Vertex 19302 -12.1678 7.10165 -2.72338 Vertex 19303 -11.9611 7.41293 -3.25784 Vertex 19304 -11.6911 8.12764 -3.81028 Vertex 19305 -11.3847 9.25472 -4.27895 Vertex 19306 -10.5483 9.08002 -4.92733 Vertex 19307 -9.61543 8.92436 -5.53128 Vertex 19308 -8.45123 8.61344 -5.64402 Vertex 19309 -8.72736 7.24303 -5.2844 Vertex 19310 -9.72503 7.66901 -5.28144 Vertex 19311 -10.6807 7.94067 -4.76155 Vertex 19312 -10.802 6.9269 -5.07103 Vertex 19313 -11.013 6.05635 -5.46032 Vertex 19314 -10.2583 5.81914 -5.65242 Vertex 19315 -9.95757 6.6214 -5.39191 Vertex 19316 -9.07364 4.72304 -5.54893 Vertex 19317 -8.29345 5.13894 -4.91033 Vertex 19318 -9.07994 6.16059 -5.37829 Vertex 19319 -9.52238 5.3891 -5.67222 Vertex 19320 -9.90912 4.6131 -5.8011 Vertex 19321 -10.1639 3.85566 -5.73025 Vertex 19322 -9.81481 3.03327 -5.64968 Vertex 19323 -9.96877 1.93263 -5.60469 Vertex 19324 -10.4098 2.01203 -5.61923 Vertex 19325 -10.91 1.98294 -5.49251 Vertex 19326 -10.8156 3.14982 -5.56648 Vertex 19327 -10.746 3.92108 -5.71036 Vertex 19328 -11.4206 3.04754 -5.27522 Vertex 19329 -11.542 1.90027 -5.13227 Vertex 19330 -12.1642 1.8363 -4.60538 Vertex 19331 -12.1506 2.90673 -4.71611 Vertex 19332 -11.4304 3.96211 -5.52761 Vertex 19333 -10.557 4.85893 -5.79172 Vertex 19334 -11.2857 5.01879 -5.65076 Vertex 19335 -12.1332 4.00626 -5.06453 Vertex 19336 -12.2231 5.41023 -4.7397 Vertex 19337 -11.7136 6.43583 -4.28383 Vertex 19338 -11.6629 6.91226 -3.55412 Vertex 19339 -12.0271 6.6028 -2.91624 Vertex 19340 -12.1911 5.78563 -3.05929 Vertex 19341 -12.2079 5.60427 -4.0623 Vertex 19342 -12.5457 4.11498 -4.48777 Vertex 19343 -12.5431 4.30579 -3.11733 Vertex 19344 -13.055 0.124344 -3.34167 Vertex 19345 -12.8628 2.90857 -3.23455 Vertex 19346 -12.6454 2.86853 -4.21671 Vertex 19347 -12.7129 1.88 -4.09934 Vertex 19348 -12.7648 1.00859 -4.06548 Vertex 19349 -12.9254 1.94628 -3.65125 Vertex 19350 -13.0025 1.95471 -3.2835 Vertex 19351 -12.8688 1.06049 -2.80579 Vertex 19352 -12.6159 2.85433 -2.80603 Vertex 19353 -12.3601 4.318 -2.70493 Vertex 19354 -12.0618 5.7868 -2.46249 Vertex 19355 -12.1267 4.35475 -1.86549 Vertex 19356 -11.7801 5.65644 -1.6887 Vertex 19357 -11.2851 6.24739 -0.800755 Vertex 19358 -11.5907 5.50503 -0.834686 Vertex 19359 -11.957 4.36765 -0.877484 Vertex 19360 -12.1907 3.04716 -0.975502 Vertex 19361 -12.3031 2.9447 -1.89254 Vertex 19362 -12.816 1.87628 -2.85024 Vertex 19363 -12.195 1.66857 -1.71136 Vertex 19364 -12.0467 1.79203 -1.0355 Vertex 19365 -11.4526 1.97111 -0.455892 Vertex 19366 -11.5298 3.05891 -0.276379 Vertex 19367 -11.2982 4.22608 -0.156719 Vertex 19368 -10.9865 5.21487 -0.16543 Vertex 19369 -10.7167 6.03988 -0.189058 Vertex 19370 -7.48493 4.27987 -3.28396 Vertex 19371 -8.3284 2.8119 -3.3708 Vertex 19372 -8.90315 1.55454 -3.48047 Vertex 19373 -9.16095 0.370506 -3.64874 Vertex 19374 -9.22759 0.427015 -2.93112 Vertex 19375 -8.86937 1.66852 -2.88309 Vertex 19376 -8.2372 2.99113 -2.76435 Vertex 19377 -7.38719 4.3969 -2.57454 Vertex 19378 -6.95708 5.61134 -2.45541 Vertex 19379 -7.66836 5.82568 -1.49647 Vertex 19380 -7.85812 4.60145 -1.99019 Vertex 19381 -8.57907 4.71156 -1.22214 Vertex 19382 -8.68361 5.6283 -0.629883 Vertex 19383 -8.97301 6.28735 -0.228739 Vertex 19384 -9.38166 4.78956 -0.162516 Vertex 19385 -8.79109 4.69891 -0.662952 Vertex 19386 -9.33311 5.68296 -0.0859172 Vertex 19387 -10.0286 5.88097 0.0392465 Vertex 19388 -10.1698 4.97213 0.0230042 Vertex 19389 -10.3354 3.99572 -0.000822751 Vertex 19390 -10.5333 2.94471 -0.114048 Vertex 19391 -10.131 1.75076 -0.493674 Vertex 19392 -9.75014 2.72642 -0.327389 Vertex 19393 -9.48741 3.75951 -0.249891 Vertex 19394 -8.94183 3.55119 -0.885472 Vertex 19395 -8.84974 3.43113 -1.64899 Vertex 19396 -8.55651 3.23159 -2.36414 Vertex 19397 -9.1981 1.81886 -2.55205 Vertex 19398 -9.64395 0.539337 -2.47733 Vertex 19399 -9.83272 0.910299 -1.67921 Vertex 19400 -9.29169 2.06416 -1.79079 Vertex 19401 -9.2781 2.37914 -0.91654 Vertex 19402 -9.7782 1.44696 -0.931207 Vertex 19403 -10.4019 1.01497 -0.819922 Vertex 19404 -11.941 0.284381 -1.45505 Vertex 19405 -11.5088 0.798963 -1.01813 Vertex 19406 -11.0242 1.2432 -0.617314 Vertex 19407 -10.6764 1.9098 -0.322584 Vertex 19408 -11.7497 0.772597 -5.15725 Vertex 19409 -12.3958 0.0647512 -4.80942 Vertex 19410 -12.7383 0.110176 -4.20378 Vertex 19411 -12.9395 0.118795 -3.75969 Vertex 19412 -10.0414 0.755798 -5.65673 Vertex 19413 -10.4996 0.802526 -5.75904 Vertex 19414 -10.5736 -0.0186802 -5.97637 Vertex 19415 -10.1647 -0.138434 -5.8571 Vertex 19416 -11.0358 0.793427 -5.60884 Vertex 19417 -11.0103 0.035611 -5.82806 Vertex 19418 -10.7023 -0.500093 -5.90697 Vertex 19419 -10.2442 -0.653035 -5.77807 Vertex 19420 -9.76045 0.625324 -5.38845 Vertex 19421 -9.9104 -0.267167 -5.55087 Vertex 19422 -9.50125 -0.539148 -4.77721 Vertex 19423 -9.83313 -0.545827 -2.52352 Vertex 19424 -9.41206 -0.603658 -3.08341 Vertex 19425 -11.0838 -0.313549 -1.68387 Vertex 19426 -12.5534 0.948732 -2.18503 Vertex 19427 7.99148 -42.9272 0.632355 Vertex 19428 7.40007 -42.4 0.882754 Vertex 19429 6.30814 -42.2352 1.34406 Vertex 19430 5.31999 -42.4361 1.76442 Vertex 19431 4.87451 -42.974 1.97484 Vertex 19432 4.70234 -43.7663 2.06596 Vertex 19433 4.67601 -44.6277 2.0701 Vertex 19434 6.48976 -45.1007 1.20328 Vertex 19435 8.33502 -44.7023 0.480752 Vertex 19436 8.26156 -43.8815 0.515172 Vertex 19437 8.62136 -44.7148 1.22701 Vertex 19438 6.79877 -45.1007 2.07241 Vertex 19439 4.97089 -44.6356 2.7993 Vertex 19440 4.97555 -43.7955 2.79634 Vertex 19441 5.18822 -43.024 2.70416 Vertex 19442 5.69464 -42.5621 2.47155 Vertex 19443 6.62884 -42.4307 2.04932 Vertex 19444 7.67211 -42.5904 1.60712 Vertex 19445 8.26789 -43.0442 1.37004 Vertex 19446 8.53901 -43.919 1.26389 Vertex 19447 5.46694 -39.9407 -1.68072 Vertex 19448 4.32252 -39.9893 -1.311 Vertex 19449 3.73428 -40.1966 -1.73659 Vertex 19450 3.27162 -40.7639 -2.52627 Vertex 19451 3.03872 -40.6546 -3.50476 Vertex 19452 3.29507 -40.0737 -4.61364 Vertex 19453 4.04913 -40.0394 -5.47073 Vertex 19454 4.99232 -40.2797 -5.55483 Vertex 19455 5.8799 -40.7883 -4.81202 Vertex 19456 6.37528 -40.8894 -4.08105 Vertex 19457 6.51538 -40.4339 -3.58695 Vertex 19458 6.42754 -40.0574 -2.70497 Vertex 19459 2.9286 -43.8161 -3.38086 Vertex 19460 3.02426 -44.6361 -3.38665 Vertex 19461 3.09897 -45.0316 -3.40753 Vertex 19462 4.49081 -45.1421 -3.98944 Vertex 19463 5.83742 -45.0593 -4.57032 Vertex 19464 5.88915 -44.668 -4.59453 Vertex 19465 6.0119 -43.7976 -4.60987 Vertex 19466 6.16567 -42.7045 -4.57104 Vertex 19467 5.7705 -41.7575 -5.01904 Vertex 19468 4.88365 -41.1659 -5.67917 Vertex 19469 3.92555 -40.9467 -5.55614 Vertex 19470 3.17137 -40.9889 -4.79365 Vertex 19471 2.8847 -41.4857 -3.85574 Vertex 19472 2.83274 -42.589 -3.38501 Vertex 19473 3.31398 -41.6583 -2.18049 Vertex 19474 3.55738 -41.1694 -1.77508 Vertex 19475 3.97699 -40.7631 -1.15329 Vertex 19476 4.46543 -40.5012 -0.740791 Vertex 19477 5.56605 -40.4409 -1.11829 Vertex 19478 6.67096 -40.5876 -2.18432 Vertex 19479 6.82445 -41.0467 -3.17561 Vertex 19480 6.72841 -41.7629 -3.61636 Vertex 19481 6.70511 -42.7047 -3.74045 Vertex 19482 6.56062 -43.7999 -3.7196 Vertex 19483 6.43748 -44.6702 -3.66951 Vertex 19484 6.38787 -45.0592 -3.60243 Vertex 19485 4.97237 -45.142 -2.92257 Vertex 19486 3.48781 -45.0315 -2.31039 Vertex 19487 3.39136 -44.6357 -2.31536 Vertex 19488 3.32493 -43.8267 -2.30885 Vertex 19489 3.2409 -42.6147 -2.31274 Vertex 19490 3.40676 -44.9142 -2.90124 Vertex 19491 6.00064 -44.9695 -4.02471 Vertex 19492 8.37172 -44.9334 0.893888 Vertex 19493 4.92254 -44.9346 2.38997 Vertex 19494 3.97327 -40.5444 -1.54716 Vertex 19495 3.37956 -40.5605 -4.63128 Vertex 19496 4.74729 -45.0131 -3.45547 Vertex 19497 4.97551 -44.6089 2.37817 Vertex 19498 4.98494 -43.8123 2.37398 Vertex 19499 5.1444 -43.0911 2.28131 Vertex 19500 5.55511 -42.6359 2.06805 Vertex 19501 6.44925 -42.4854 1.66542 Vertex 19502 7.45418 -42.6244 1.24623 Vertex 19503 7.99543 -43.0586 1.03992 Vertex 19504 8.24854 -43.9254 0.946177 Vertex 19505 8.32699 -44.6918 0.913539 Vertex 19506 4.05115 -40.5168 -5.39564 Vertex 19507 3.55261 -41.0065 -2.22833 Vertex 19508 4.4418 -40.3399 -1.13315 Vertex 19509 6.51912 -40.7891 -3.34554 Vertex 19510 5.44617 -40.3063 -1.48391 Vertex 19511 4.87144 -40.7363 -5.47499 Vertex 19512 6.41419 -40.4125 -2.47235 Vertex 19513 6.29286 -42.7019 -4.06871 Vertex 19514 5.69666 -41.2817 -4.81175 Vertex 19515 6.34426 -41.7105 -3.92052 Vertex 19516 3.11466 -41.0915 -3.66923 Vertex 19517 3.29383 -41.6059 -2.73764 Vertex 19518 3.19415 -42.6023 -2.90703 Vertex 19519 3.28286 -43.8067 -2.90536 Vertex 19520 6.02085 -44.637 -4.05019 Vertex 19521 6.64544 -44.9304 1.63992 Vertex 19522 6.14375 -43.7798 -4.07916 Vertex 19523 3.34251 -44.5665 -2.9017 Vertex 19524 6.79331 -45.271 -1.07538 Vertex 19525 5.63373 -26.5599 -1.30418 Vertex 19526 3.79337 -45.2738 -4.53527 Vertex 19527 6.16426 -45.271 4.48399 Vertex 19528 7.39895 -45.271 4.26411 Vertex 19529 7.83559 -45.271 2.51845 Vertex 19530 6.48879 -45.271 0.356002 Vertex 19531 2.68518 -33.6241 -5.37144 Vertex 19532 3.30035 -33.6322 -5.89027 Vertex 19533 4.04305 -33.6297 -6.1549 Vertex 19534 4.91473 -33.5539 -6.20574 Vertex 19535 2.17644 -33.5555 -4.7239 Vertex 19536 2.0396 -33.3496 -4.03305 Vertex 19537 2.07524 -32.7886 -3.27678 Vertex 19538 2.22273 -31.6019 -2.53054 Vertex 19539 2.56175 -30.0826 -1.86418 Vertex 19540 3.02594 -28.5645 -1.41095 Vertex 19541 5.81888 -33.3419 -5.99467 Vertex 19542 6.76796 -32.8723 -5.61825 Vertex 19543 7.48529 -32.0198 -5.11305 Vertex 19544 8.00031 -30.7878 -4.54205 Vertex 19545 8.37506 -29.0112 -3.91242 Vertex 19546 3.55259 -27.3259 -1.04536 Vertex 19547 8.48692 -27.4075 -3.24159 Vertex 19548 8.23759 -26.6636 -2.55248 Vertex 19549 7.59916 -26.3468 -1.80891 Vertex 19550 6.42557 -26.2366 -1.0177 Vertex 19551 5.15873 -26.3443 -0.54025 Vertex 19552 4.23528 -26.6543 -0.66606 Vertex 19553 4.41216 -32.7434 -4.49116 Vertex 19554 3.57454 -33.4479 -5.42889 Vertex 19555 5.25035 -30.3998 -3.27543 Vertex 19556 5.99405 -27.3247 -2.21499 Vertex 19557 3.56159 -27.6098 -0.955589 Vertex 19558 2.1396 -33.8444 -4.70672 Vertex 19559 2.57204 -30.3561 -1.79633 Vertex 19560 2.06454 -33.0701 -3.21957 Vertex 19561 3.24538 -33.9088 -5.88884 Vertex 19562 4.87539 -33.8425 -6.18524 Vertex 19563 6.74147 -33.1608 -5.56119 Vertex 19564 7.98413 -31.0572 -4.45754 Vertex 19565 5.18257 -26.5849 -0.40495 Vertex 19566 7.63806 -26.5855 -1.67594 Vertex 19567 8.48691 -27.6857 -3.14418 Vertex 19568 2.63441 -33.9058 -5.36742 Vertex 19569 2.01221 -33.637 -3.9907 Vertex 19570 2.22618 -31.8757 -2.46538 Vertex 19571 3.03616 -28.8527 -1.34009 Vertex 19572 4.24397 -26.9142 -0.546235 Vertex 19573 6.46533 -26.4683 -0.880386 Vertex 19574 8.26332 -26.9157 -2.43278 Vertex 19575 8.35942 -29.2973 -3.82829 Vertex 19576 7.46792 -32.2933 -5.0358 Vertex 19577 5.78843 -33.6344 -5.95859 Vertex 19578 3.99432 -33.9113 -6.15042 Vertex 19579 7.27455 -26.4102 -1.86281 Vertex 19580 4.82732 -31.7549 -3.89113 Vertex 19581 5.67307 -28.7509 -2.72868 Vertex 19582 3.41111 -33.5294 -5.71065 Vertex 19583 2.68989 -34.5522 -5.25403 Vertex 19584 2.14892 -34.4217 -3.98174 Vertex 19585 2.51505 -33.5658 -2.52656 Vertex 19586 3.30989 -32.065 -1.41665 Vertex 19587 4.33882 -31.0707 -0.776742 Vertex 19588 6.1093 -30.8388 -1.12169 Vertex 19589 7.52929 -31.074 -2.47921 Vertex 19590 7.6704 -32.2833 -3.76498 Vertex 19591 6.97538 -33.7629 -4.93058 Vertex 19592 5.54319 -34.4198 -5.85324 Vertex 19593 3.97905 -34.5572 -6.00209 Vertex 19594 2.94082 -36.3993 -5.03016 Vertex 19595 2.54572 -36.3938 -3.93459 Vertex 19596 2.9431 -36.4138 -2.59912 Vertex 19597 3.61208 -36.4196 -1.58897 Vertex 19598 4.3879 -36.4159 -1.15799 Vertex 19599 5.65253 -36.4152 -1.52726 Vertex 19600 6.66766 -36.4186 -2.65423 Vertex 19601 6.83383 -36.4224 -3.75038 Vertex 19602 6.37237 -36.422 -4.81125 Vertex 19603 5.28121 -36.4186 -5.70695 Vertex 19604 4.01132 -36.4172 -5.75082 Vertex 19605 3.15701 -38.232 -4.87406 Vertex 19606 2.85606 -38.2236 -3.88699 Vertex 19607 3.11551 -38.2466 -2.65002 Vertex 19608 3.65894 -38.2553 -1.70437 Vertex 19609 4.36787 -38.252 -1.29194 Vertex 19610 5.54778 -38.2515 -1.64819 Vertex 19611 6.49372 -38.2547 -2.72469 Vertex 19612 6.60581 -38.2582 -3.75858 Vertex 19613 6.15836 -38.2578 -4.75412 Vertex 19614 5.17892 -38.2546 -5.5989 Vertex 19615 4.02962 -38.2532 -5.58028 Vertex 19616 6.78402 -45.149 -3.04605 Vertex 19617 7.86381 -45.1491 5.28768 Vertex 19618 8.98202 -45.149 2.93311 Vertex 19619 8.67307 -45.149 4.42455 Vertex 19620 6.91995 -45.1491 5.37079 Vertex 19621 6.0443 -45.149 4.8931 Vertex 19622 5.41163 -45.149 4.12227 Vertex 19623 4.79487 -45.149 0.698853 Vertex 19624 4.69107 -45.149 -0.344715 Vertex 19625 3.95353 -45.149 -1.50416 Vertex 19626 3.85139 -45.1492 -5.7991 Vertex 19627 4.81159 -45.1492 -5.89786 Vertex 19628 5.55864 -45.1491 -5.18386 Vertex 19629 7.23002 -45.149 -2.08437 Vertex 19630 7.73186 -45.149 -1.01162 Vertex 19631 8.7993 -45.149 1.62365 Vertex 19632 8.22008 -45.149 0.071506 Vertex 19633 4.68069 -45.149 1.69742 Vertex 19634 5.03958 -45.149 3.22848 Vertex 19635 3.03562 -45.1549 -5.09966 Vertex 19636 2.90471 -45.1549 -4.01317 Vertex 19637 3.15182 -39.3621 -4.78015 Vertex 19638 2.92171 -41.4345 -4.9726 Vertex 19639 2.79785 -42.5959 -5.07098 Vertex 19640 2.84178 -43.8531 -5.07747 Vertex 19641 2.93293 -44.7284 -5.10544 Vertex 19642 4.68091 -45.2711 -5.43377 Vertex 19643 7.25679 -41.7705 -1.88764 Vertex 19644 5.38144 -45.271 -2.23626 Vertex 19645 5.11844 -39.4794 -5.6479 Vertex 19646 6.12144 -39.6249 -4.73853 Vertex 19647 6.63554 -39.5406 -3.69066 Vertex 19648 6.52771 -39.3301 -2.70101 Vertex 19649 5.54207 -39.2573 -1.62228 Vertex 19650 4.32083 -39.2923 -1.24787 Vertex 19651 3.63735 -39.4126 -1.6694 Vertex 19652 3.11524 -39.4821 -2.63887 Vertex 19653 2.86128 -39.4296 -3.79031 Vertex 19654 4.00702 -39.3535 -5.58445 Vertex 19655 4.58202 -40.7244 -0.288896 Vertex 19656 7.09505 -41.352 -0.758778 Vertex 19657 4.86194 -41.2369 0.317897 Vertex 19658 5.77284 -40.5865 -0.739763 Vertex 19659 6.00914 -41.1065 -0.122452 Vertex 19660 6.92863 -40.9011 -1.46051 Vertex 19661 3.9426 -33.2404 -5.01465 Vertex 19662 3.67421 -42.6152 -5.86213 Vertex 19663 4.83457 -42.6475 -6.0096 Vertex 19664 5.83419 -42.6871 -5.23712 Vertex 19665 7.04876 -42.7457 -3.19368 Vertex 19666 7.38178 -42.7904 -2.07457 Vertex 19667 7.77918 -42.8071 -0.699964 Vertex 19668 4.87615 -41.5872 -5.89383 Vertex 19669 7.06989 -41.3231 -2.78907 Vertex 19670 4.22683 -41.5211 -0.206846 Vertex 19671 3.8519 -44.7145 -1.49092 Vertex 19672 3.72142 -43.8575 -1.46454 Vertex 19673 3.55737 -42.6586 -1.43129 Vertex 19674 7.32095 -44.7137 -2.14891 Vertex 19675 7.3907 -43.8293 -2.13494 Vertex 19676 5.27319 -42.2446 1.65198 Vertex 19677 5.77691 -42.4492 2.8713 Vertex 19678 5.50878 -42.9834 3.86441 Vertex 19679 4.61097 -44.7238 -0.308154 Vertex 19680 4.4519 -43.8572 -0.251562 Vertex 19681 4.23524 -42.7383 -0.175863 Vertex 19682 4.72789 -44.7132 0.768843 Vertex 19683 4.67389 -43.8347 0.819034 Vertex 19684 4.64373 -42.8372 0.901089 Vertex 19685 4.60246 -44.6765 1.78172 Vertex 19686 4.63716 -43.7818 1.7918 Vertex 19687 4.80429 -42.8906 1.78777 Vertex 19688 5.98213 -44.6932 4.97105 Vertex 19689 6.04802 -43.8427 4.87298 Vertex 19690 7.85378 -44.7066 -1.03046 Vertex 19691 7.88846 -43.8304 -0.946387 Vertex 19692 7.32975 -41.8428 0.08059 Vertex 19693 8.45649 -43.005 3.89812 Vertex 19694 8.34758 -44.7093 0.0670008 Vertex 19695 8.31696 -43.8439 0.139871 Vertex 19696 8.08516 -42.8354 0.391438 Vertex 19697 7.48437 -42.1954 0.738759 Vertex 19698 8.90051 -44.7186 1.545 Vertex 19699 8.81896 -43.8716 1.56225 Vertex 19700 8.5328 -42.9751 1.67245 Vertex 19701 7.88164 -42.4856 1.95585 Vertex 19702 6.22591 -41.6222 0.630836 Vertex 19703 5.63321 -44.7014 -5.23417 Vertex 19704 5.31437 -44.6934 4.15699 Vertex 19705 3.78419 -44.7159 -5.85579 Vertex 19706 5.17523 -42.948 3.15576 Vertex 19707 3.77913 -41.4433 -5.76396 Vertex 19708 2.695 -43.8415 -3.97032 Vertex 19709 5.74844 -43.8255 -5.26636 Vertex 19710 4.95078 -43.7958 3.25368 Vertex 19711 7.6726 -43.0071 4.60301 Vertex 19712 4.93947 -44.675 3.24608 Vertex 19713 8.7638 -44.6963 4.47702 Vertex 19714 6.33511 -41.9809 1.21813 Vertex 19715 6.79724 -42.3125 2.41649 Vertex 19716 4.82729 -44.7032 -5.96785 Vertex 19717 9.08251 -44.7011 2.89609 Vertex 19718 6.93613 -44.6888 5.47758 Vertex 19719 2.80341 -44.7172 -3.98948 Vertex 19720 5.34017 -43.8344 4.11179 Vertex 19721 8.70241 -43.8472 4.39708 Vertex 19722 7.9096 -43.8463 5.25171 Vertex 19723 6.24373 -43.0033 4.46244 Vertex 19724 6.96411 -43.8241 -3.18054 Vertex 19725 4.83551 -43.826 -6.01069 Vertex 19726 3.6973 -43.8357 -5.85938 Vertex 19727 2.61526 -42.5877 -3.97554 Vertex 19728 8.69251 -42.9905 2.7562 Vertex 19729 6.96791 -43.8428 5.35835 Vertex 19730 7.93385 -44.6911 5.38763 Vertex 19731 6.86161 -44.708 -3.13766 Vertex 19732 8.99046 -43.8463 2.87423 Vertex 19733 7.21589 -42.5118 3.42391 Vertex 19734 -6.24868 -45.271 -0.157928 Vertex 19735 -6.82426 -26.563 -1.92598 Vertex 19736 -4.62386 -45.2711 -4.90933 Vertex 19737 -8.28184 -45.271 3.88639 Vertex 19738 -7.04714 -45.271 4.10627 Vertex 19739 -6.15538 -45.271 3.07999 Vertex 19740 -7.62395 -45.271 -0.970439 Vertex 19741 -7.99148 -42.9272 0.632355 Vertex 19742 -7.40007 -42.4 0.882753 Vertex 19743 -6.30814 -42.2351 1.34406 Vertex 19744 -5.31999 -42.4361 1.76442 Vertex 19745 -4.87451 -42.974 1.97484 Vertex 19746 -4.70234 -43.7663 2.06597 Vertex 19747 -4.67601 -44.6276 2.0701 Vertex 19748 -6.48976 -45.1007 1.20328 Vertex 19749 -8.33502 -44.7023 0.480752 Vertex 19750 -8.26156 -43.8815 0.515172 Vertex 19751 -8.62136 -44.7148 1.22701 Vertex 19752 -6.79877 -45.1007 2.07241 Vertex 19753 -4.97089 -44.6356 2.7993 Vertex 19754 -4.97555 -43.7955 2.79634 Vertex 19755 -5.18822 -43.0241 2.70416 Vertex 19756 -5.69464 -42.5621 2.47155 Vertex 19757 -6.62884 -42.4307 2.04932 Vertex 19758 -7.67211 -42.5904 1.60712 Vertex 19759 -8.26789 -43.0443 1.37004 Vertex 19760 -8.53901 -43.919 1.26389 Vertex 19761 -5.46694 -39.9407 -1.68072 Vertex 19762 -4.32252 -39.9893 -1.311 Vertex 19763 -3.73428 -40.1966 -1.73659 Vertex 19764 -3.27161 -40.7639 -2.52627 Vertex 19765 -3.03872 -40.6546 -3.50476 Vertex 19766 -3.29507 -40.0737 -4.61364 Vertex 19767 -4.04913 -40.0394 -5.47073 Vertex 19768 -4.99232 -40.2797 -5.55483 Vertex 19769 -5.8799 -40.7883 -4.81202 Vertex 19770 -6.37528 -40.8894 -4.08105 Vertex 19771 -6.51538 -40.4339 -3.58695 Vertex 19772 -6.42754 -40.0574 -2.70497 Vertex 19773 -2.9286 -43.8161 -3.38086 Vertex 19774 -3.02426 -44.6361 -3.38665 Vertex 19775 -3.09897 -45.0316 -3.40753 Vertex 19776 -4.49081 -45.1421 -3.98944 Vertex 19777 -5.83742 -45.0593 -4.57031 Vertex 19778 -5.88915 -44.668 -4.59453 Vertex 19779 -6.0119 -43.7976 -4.60987 Vertex 19780 -6.16567 -42.7045 -4.57104 Vertex 19781 -5.7705 -41.7575 -5.01904 Vertex 19782 -4.88365 -41.1658 -5.67917 Vertex 19783 -3.92555 -40.9467 -5.55614 Vertex 19784 -3.17137 -40.989 -4.79366 Vertex 19785 -2.8847 -41.4857 -3.85574 Vertex 19786 -2.83274 -42.589 -3.38501 Vertex 19787 -3.31398 -41.6583 -2.18049 Vertex 19788 -3.55738 -41.1694 -1.77508 Vertex 19789 -3.97699 -40.7631 -1.15329 Vertex 19790 -4.46542 -40.5012 -0.740791 Vertex 19791 -5.56605 -40.4409 -1.11829 Vertex 19792 -6.67096 -40.5876 -2.18432 Vertex 19793 -6.82445 -41.0467 -3.17561 Vertex 19794 -6.72841 -41.7629 -3.61636 Vertex 19795 -6.70511 -42.7047 -3.74044 Vertex 19796 -6.56062 -43.7999 -3.7196 Vertex 19797 -6.43748 -44.6702 -3.66952 Vertex 19798 -6.38787 -45.0592 -3.60243 Vertex 19799 -4.97237 -45.142 -2.92257 Vertex 19800 -3.48781 -45.0315 -2.31039 Vertex 19801 -3.39136 -44.6357 -2.31536 Vertex 19802 -3.32493 -43.8267 -2.30885 Vertex 19803 -3.2409 -42.6147 -2.31274 Vertex 19804 -2.68518 -33.6241 -5.37143 Vertex 19805 -3.30035 -33.6322 -5.89027 Vertex 19806 -4.04305 -33.6297 -6.1549 Vertex 19807 -4.91473 -33.5539 -6.20574 Vertex 19808 -2.17644 -33.5555 -4.7239 Vertex 19809 -2.0396 -33.3496 -4.03305 Vertex 19810 -2.07524 -32.7886 -3.27677 Vertex 19811 -2.22273 -31.6019 -2.53055 Vertex 19812 -2.56175 -30.0826 -1.86417 Vertex 19813 -3.02594 -28.5645 -1.41095 Vertex 19814 -5.81888 -33.3419 -5.99467 Vertex 19815 -6.76795 -32.8723 -5.61825 Vertex 19816 -7.48529 -32.0198 -5.11305 Vertex 19817 -8.00031 -30.7878 -4.54205 Vertex 19818 -8.37506 -29.0112 -3.91242 Vertex 19819 -3.55259 -27.3259 -1.04536 Vertex 19820 -8.48692 -27.4074 -3.24159 Vertex 19821 -8.23759 -26.6636 -2.55248 Vertex 19822 -7.59916 -26.3468 -1.80891 Vertex 19823 -6.42557 -26.2366 -1.0177 Vertex 19824 -5.15873 -26.3443 -0.54025 Vertex 19825 -4.23528 -26.6543 -0.66606 Vertex 19826 -4.41216 -32.7434 -4.49116 Vertex 19827 -3.57454 -33.4479 -5.42889 Vertex 19828 -5.25035 -30.3998 -3.27543 Vertex 19829 -5.99405 -27.3247 -2.21499 Vertex 19830 -3.56159 -27.6098 -0.955589 Vertex 19831 -2.1396 -33.8444 -4.70672 Vertex 19832 -2.57204 -30.3561 -1.79634 Vertex 19833 -2.06454 -33.0701 -3.21957 Vertex 19834 -3.24538 -33.9088 -5.88884 Vertex 19835 -4.87539 -33.8425 -6.18524 Vertex 19836 -6.74147 -33.1608 -5.56119 Vertex 19837 -7.98413 -31.0572 -4.45754 Vertex 19838 -5.18257 -26.5849 -0.40495 Vertex 19839 -7.63806 -26.5855 -1.67594 Vertex 19840 -8.48691 -27.6858 -3.14418 Vertex 19841 -2.63441 -33.9058 -5.36742 Vertex 19842 -2.01221 -33.637 -3.9907 Vertex 19843 -2.22618 -31.8757 -2.46538 Vertex 19844 -3.03616 -28.8527 -1.34009 Vertex 19845 -4.24397 -26.9142 -0.546235 Vertex 19846 -6.46533 -26.4683 -0.880386 Vertex 19847 -8.26332 -26.9157 -2.43279 Vertex 19848 -8.35942 -29.2973 -3.82829 Vertex 19849 -7.46792 -32.2933 -5.0358 Vertex 19850 -5.78843 -33.6345 -5.95858 Vertex 19851 -3.99432 -33.9113 -6.15042 Vertex 19852 -5.31797 -26.4005 -0.940332 Vertex 19853 -4.82732 -31.7549 -3.89113 Vertex 19854 -5.67307 -28.7508 -2.72868 Vertex 19855 -3.41111 -33.5294 -5.71065 Vertex 19856 -2.68989 -34.5522 -5.25403 Vertex 19857 -2.14892 -34.4217 -3.98174 Vertex 19858 -2.51505 -33.5658 -2.52656 Vertex 19859 -3.30989 -32.065 -1.41665 Vertex 19860 -4.33882 -31.0707 -0.776742 Vertex 19861 -6.10931 -30.8388 -1.12169 Vertex 19862 -7.52929 -31.074 -2.47921 Vertex 19863 -7.6704 -32.2833 -3.76498 Vertex 19864 -6.97538 -33.7629 -4.93058 Vertex 19865 -5.54319 -34.4198 -5.85324 Vertex 19866 -3.97905 -34.5572 -6.00209 Vertex 19867 -2.94082 -36.3993 -5.03016 Vertex 19868 -2.54572 -36.3938 -3.93459 Vertex 19869 -2.9431 -36.4138 -2.59913 Vertex 19870 -3.61208 -36.4196 -1.58898 Vertex 19871 -4.3879 -36.4159 -1.15799 Vertex 19872 -5.65253 -36.4152 -1.52726 Vertex 19873 -6.66766 -36.4186 -2.65423 Vertex 19874 -6.83383 -36.4224 -3.75038 Vertex 19875 -6.37237 -36.422 -4.81125 Vertex 19876 -5.28121 -36.4186 -5.70695 Vertex 19877 -4.01132 -36.4172 -5.75082 Vertex 19878 -3.15701 -38.232 -4.87406 Vertex 19879 -2.85606 -38.2235 -3.88699 Vertex 19880 -3.11552 -38.2466 -2.65002 Vertex 19881 -3.65894 -38.2553 -1.70437 Vertex 19882 -4.36787 -38.2521 -1.29194 Vertex 19883 -5.54778 -38.2515 -1.64819 Vertex 19884 -6.49372 -38.2547 -2.72469 Vertex 19885 -6.60581 -38.2581 -3.75858 Vertex 19886 -6.15837 -38.2578 -4.75412 Vertex 19887 -5.17891 -38.2546 -5.5989 Vertex 19888 -4.02962 -38.2532 -5.58028 Vertex 19889 -6.78402 -45.149 -3.04605 Vertex 19890 -7.86381 -45.1491 5.28768 Vertex 19891 -3.40676 -44.9142 -2.90124 Vertex 19892 -8.98201 -45.149 2.93311 Vertex 19893 -8.67307 -45.149 4.42455 Vertex 19894 -6.91995 -45.1491 5.37079 Vertex 19895 -6.0443 -45.149 4.8931 Vertex 19896 -5.41163 -45.149 4.12227 Vertex 19897 -4.79486 -45.149 0.698853 Vertex 19898 -4.69107 -45.149 -0.344716 Vertex 19899 -3.95353 -45.149 -1.50416 Vertex 19900 -3.85139 -45.1492 -5.7991 Vertex 19901 -4.81159 -45.1491 -5.89787 Vertex 19902 -5.55864 -45.1491 -5.18386 Vertex 19903 -6.00063 -44.9695 -4.02471 Vertex 19904 -7.23002 -45.149 -2.08437 Vertex 19905 -7.73186 -45.149 -1.01162 Vertex 19906 -8.7993 -45.149 1.62366 Vertex 19907 -8.22008 -45.149 0.071506 Vertex 19908 -8.37172 -44.9334 0.893888 Vertex 19909 -4.6807 -45.149 1.69742 Vertex 19910 -5.03958 -45.149 3.22848 Vertex 19911 -4.92254 -44.9346 2.38997 Vertex 19912 -3.03562 -45.1549 -5.09966 Vertex 19913 -2.90471 -45.1549 -4.01317 Vertex 19914 -3.97327 -40.5444 -1.54716 Vertex 19915 -3.15182 -39.3621 -4.78015 Vertex 19916 -3.37956 -40.5605 -4.63128 Vertex 19917 -2.92171 -41.4345 -4.9726 Vertex 19918 -2.79785 -42.5959 -5.07098 Vertex 19919 -2.84178 -43.8531 -5.07747 Vertex 19920 -2.93293 -44.7284 -5.10544 Vertex 19921 -4.74729 -45.0131 -3.45547 Vertex 19922 -3.43731 -45.2738 -4.8834 Vertex 19923 -7.25678 -41.7705 -1.88764 Vertex 19924 -5.38144 -45.271 -2.23626 Vertex 19925 -4.97552 -44.6089 2.37817 Vertex 19926 -4.98494 -43.8123 2.37398 Vertex 19927 -5.1444 -43.0911 2.28131 Vertex 19928 -5.55511 -42.6359 2.06805 Vertex 19929 -6.44925 -42.4854 1.66543 Vertex 19930 -7.45418 -42.6244 1.24623 Vertex 19931 -7.99543 -43.0585 1.03992 Vertex 19932 -8.24854 -43.9254 0.946177 Vertex 19933 -8.32699 -44.6918 0.913539 Vertex 19934 -5.11844 -39.4794 -5.6479 Vertex 19935 -6.12144 -39.6249 -4.73853 Vertex 19936 -6.63554 -39.5406 -3.69066 Vertex 19937 -6.52771 -39.3301 -2.70101 Vertex 19938 -5.54207 -39.2573 -1.62228 Vertex 19939 -4.32083 -39.2923 -1.24787 Vertex 19940 -3.63735 -39.4127 -1.6694 Vertex 19941 -3.11524 -39.4821 -2.63887 Vertex 19942 -2.86128 -39.4296 -3.79031 Vertex 19943 -4.00702 -39.3535 -5.58445 Vertex 19944 -4.05115 -40.5168 -5.39563 Vertex 19945 -3.55261 -41.0065 -2.22833 Vertex 19946 -4.58202 -40.7244 -0.288896 Vertex 19947 -7.09505 -41.352 -0.758778 Vertex 19948 -4.4418 -40.3399 -1.13315 Vertex 19949 -4.86194 -41.2369 0.317897 Vertex 19950 -5.77284 -40.5865 -0.739763 Vertex 19951 -6.51912 -40.7891 -3.34555 Vertex 19952 -6.00914 -41.1065 -0.122452 Vertex 19953 -5.44617 -40.3063 -1.48391 Vertex 19954 -4.87144 -40.7363 -5.47499 Vertex 19955 -6.41419 -40.4125 -2.47235 Vertex 19956 -6.92863 -40.9011 -1.46051 Vertex 19957 -3.9426 -33.2404 -5.01465 Vertex 19958 -3.67421 -42.6152 -5.86213 Vertex 19959 -4.83457 -42.6475 -6.0096 Vertex 19960 -5.8342 -42.6871 -5.23712 Vertex 19961 -6.29285 -42.7019 -4.0687 Vertex 19962 -7.04876 -42.7457 -3.19368 Vertex 19963 -7.38178 -42.7905 -2.07457 Vertex 19964 -7.77918 -42.8071 -0.699964 Vertex 19965 -4.87615 -41.5872 -5.89383 Vertex 19966 -5.69666 -41.2817 -4.81174 Vertex 19967 -6.34426 -41.7105 -3.92052 Vertex 19968 -7.0699 -41.3231 -2.78907 Vertex 19969 -3.11465 -41.0915 -3.66923 Vertex 19970 -3.29383 -41.6059 -2.73764 Vertex 19971 -4.22683 -41.5211 -0.206846 Vertex 19972 -3.8519 -44.7145 -1.49092 Vertex 19973 -3.72142 -43.8575 -1.46454 Vertex 19974 -3.55737 -42.6586 -1.43129 Vertex 19975 -7.32095 -44.7137 -2.14891 Vertex 19976 -7.3907 -43.8293 -2.13495 Vertex 19977 -5.27319 -42.2446 1.65198 Vertex 19978 -5.77691 -42.4492 2.8713 Vertex 19979 -5.50878 -42.9834 3.86441 Vertex 19980 -4.61097 -44.7237 -0.308154 Vertex 19981 -4.4519 -43.8572 -0.251562 Vertex 19982 -4.23524 -42.7383 -0.175864 Vertex 19983 -4.72789 -44.7132 0.768843 Vertex 19984 -4.67389 -43.8347 0.819034 Vertex 19985 -4.64373 -42.8372 0.901089 Vertex 19986 -4.60246 -44.6765 1.78172 Vertex 19987 -4.63716 -43.7819 1.7918 Vertex 19988 -4.80429 -42.8906 1.78777 Vertex 19989 -5.98213 -44.6932 4.97105 Vertex 19990 -6.04802 -43.8427 4.87298 Vertex 19991 -7.85378 -44.7066 -1.03046 Vertex 19992 -7.88846 -43.8304 -0.946387 Vertex 19993 -7.32975 -41.8428 0.08059 Vertex 19994 -8.45649 -43.005 3.89812 Vertex 19995 -8.34758 -44.7093 0.0670007 Vertex 19996 -8.31696 -43.8439 0.139871 Vertex 19997 -8.08515 -42.8354 0.391438 Vertex 19998 -7.48437 -42.1954 0.738759 Vertex 19999 -8.90051 -44.7185 1.54501 Vertex 20000 -8.81896 -43.8716 1.56225 Vertex 20001 -8.5328 -42.9751 1.67245 Vertex 20002 -7.88163 -42.4856 1.95585 Vertex 20003 -6.22591 -41.6222 0.630836 Vertex 20004 -5.63321 -44.7014 -5.23418 Vertex 20005 -5.31437 -44.6934 4.15699 Vertex 20006 -3.78419 -44.7159 -5.85579 Vertex 20007 -5.17523 -42.948 3.15576 Vertex 20008 -3.19415 -42.6023 -2.90703 Vertex 20009 -3.28287 -43.8067 -2.90536 Vertex 20010 -3.77913 -41.4433 -5.76396 Vertex 20011 -2.695 -43.8415 -3.97032 Vertex 20012 -5.74844 -43.8255 -5.26636 Vertex 20013 -4.95078 -43.7958 3.25368 Vertex 20014 -7.6726 -43.0071 4.603 Vertex 20015 -4.93947 -44.675 3.24608 Vertex 20016 -8.7638 -44.6963 4.47702 Vertex 20017 -6.02085 -44.637 -4.05019 Vertex 20018 -6.33511 -41.9809 1.21813 Vertex 20019 -6.79724 -42.3125 2.4165 Vertex 20020 -4.82729 -44.7032 -5.96785 Vertex 20021 -9.08251 -44.7011 2.89609 Vertex 20022 -6.93614 -44.6888 5.47758 Vertex 20023 -2.80341 -44.7172 -3.98948 Vertex 20024 -5.34018 -43.8344 4.11179 Vertex 20025 -8.7024 -43.8472 4.39708 Vertex 20026 -6.64544 -44.9304 1.63992 Vertex 20027 -7.9096 -43.8462 5.2517 Vertex 20028 -6.24373 -43.0033 4.46244 Vertex 20029 -6.9641 -43.8241 -3.18054 Vertex 20030 -4.83551 -43.826 -6.01069 Vertex 20031 -3.6973 -43.8357 -5.85938 Vertex 20032 -2.61526 -42.5877 -3.97554 Vertex 20033 -8.69251 -42.9905 2.7562 Vertex 20034 -6.96791 -43.8427 5.35835 Vertex 20035 -6.14375 -43.7798 -4.07916 Vertex 20036 -3.34251 -44.5666 -2.9017 Vertex 20037 -7.93385 -44.6911 5.38763 Vertex 20038 -6.86161 -44.708 -3.13766 Vertex 20039 -8.99045 -43.8463 2.87423 Vertex 20040 -7.21589 -42.5118 3.42391 Vertex 20041 1.21284 11.6755 1.8891 Vertex 20042 2.4258 12.0384 1.46912 Vertex 20043 2.42605 12.7389 0.561964 Vertex 20044 2.42626 13.4003 -0.815517 Vertex 20045 2.42604 13.6933 -2.6414 Vertex 20046 1.21286 13.6625 -3.57697 Vertex 20047 1.21303 12.9869 -2.53396 Vertex 20048 1.21314 12.4035 -0.839693 Vertex 20049 1.21303 11.9597 0.437858 Vertex 20050 1.2129 11.6651 1.27882 Vertex 20051 -1.21284 11.6755 1.8891 Vertex 20052 -2.4258 12.0384 1.46912 Vertex 20053 -2.42605 12.7389 0.561964 Vertex 20054 -2.42626 13.4003 -0.815516 Vertex 20055 -2.42604 13.6933 -2.6414 Vertex 20056 -1.21286 13.6625 -3.57697 Vertex 20057 -1.21303 12.9869 -2.53396 Vertex 20058 -1.21314 12.4035 -0.839693 Vertex 20059 -1.21303 11.9597 0.437858 Vertex 20060 -1.2129 11.6651 1.27882 Vertex 20061 1.59409 13.2754 -4.19798 Vertex 20062 -2.20052 13.5619 -4.04235 Vertex 20063 1.46976 10.9489 2.53067 Vertex 20064 1.70252 10.0494 3.09815 Vertex 20065 3.65264 13.5181 0.686085 Vertex 20066 3.81178 14.3971 -0.791325 Vertex 20067 3.62927 14.3997 -2.74882 Vertex 20068 1.34066 8.92229 3.92266 Vertex 20069 3.46246 12.4117 1.65944 Vertex 20070 -1.46976 10.9489 2.53067 Vertex 20071 -1.70252 10.0494 3.09815 Vertex 20072 -3.65264 13.5181 0.686085 Vertex 20073 -3.81178 14.3971 -0.791325 Vertex 20074 -3.62927 14.3997 -2.74882 Vertex 20075 -1.34066 8.92229 3.92266 Vertex 20076 -3.46246 12.4117 1.65944 Vertex 20077 5.9185 -3.66998 0.346318 Vertex 20078 5.2506 -3.67001 1.98627 Vertex 20079 0.803125 -2.25192 -4.53326 Vertex 20080 2.30072 -2.25192 -4.3243 Vertex 20081 3.63305 -2.25192 -3.90172 Vertex 20082 5.0176 -2.25194 -2.98963 Vertex 20083 5.96487 -2.25196 -1.51726 Vertex 20084 5.9363 -2.25198 0.273436 Vertex 20085 5.21132 -2.25201 2.05019 Vertex 20086 3.89125 -2.25203 3.30406 Vertex 20087 2.33037 -2.25204 4.02733 Vertex 20088 0.796857 -2.25204 4.23435 Vertex 20089 0.796857 -3.67004 4.23433 Vertex 20090 2.29016 -3.67073 4.02378 Vertex 20091 3.89122 -3.67003 3.30405 Vertex 20092 5.94669 -3.66996 -1.59088 Vertex 20093 5.07433 -3.66994 -2.94055 Vertex 20094 3.56272 -3.66992 -3.92949 Vertex 20095 2.30072 -3.66992 -4.32433 Vertex 20096 0.803125 -3.66992 -4.53328 Vertex 20097 5.95476 0.584045 -1.52638 Vertex 20098 5.94275 0.58402 0.282398 Vertex 20099 5.2129 0.583988 2.04371 Vertex 20100 3.90671 0.583966 3.29546 Vertex 20101 2.35913 0.583956 4.01583 Vertex 20102 0.808488 0.583961 4.23123 Vertex 20103 0.808488 -0.834037 4.23121 Vertex 20104 2.35913 -0.834043 4.01581 Vertex 20105 3.90671 -0.834033 3.29545 Vertex 20106 5.2129 -0.83401 2.04368 Vertex 20107 5.94275 -0.833978 0.282375 Vertex 20108 5.95476 -0.833954 -1.5264 Vertex 20109 5.01216 -0.833938 -3.01075 Vertex 20110 3.64436 -0.833921 -3.89583 Vertex 20111 2.30937 -0.833917 -4.32242 Vertex 20112 0.808322 -0.833921 -4.5313 Vertex 20113 0.808322 0.584078 -4.53129 Vertex 20114 2.30937 0.584082 -4.3224 Vertex 20115 3.64435 0.584077 -3.89581 Vertex 20116 5.01216 0.584061 -3.01073 Vertex 20117 3.79993 -1.54303 3.16688 Vertex 20118 2.28433 -1.54304 3.87261 Vertex 20119 0.787075 -1.54304 4.07338 Vertex 20120 0.80664 -2.96104 4.39533 Vertex 20121 2.37642 -2.96104 4.18206 Vertex 20122 3.98258 -2.96104 3.44123 Vertex 20123 0.789545 -1.54292 -4.37125 Vertex 20124 2.35898 -0.124915 -4.47934 Vertex 20125 3.7255 -0.12492 -4.0398 Vertex 20126 5.13119 -0.124937 -3.12748 Vertex 20127 6.10869 -0.124954 -1.58305 Vertex 20128 6.10874 -0.124979 0.302317 Vertex 20129 5.34706 -0.125012 2.13491 Vertex 20130 5.34389 -2.96102 2.14791 Vertex 20131 6.09583 -2.96098 0.284434 Vertex 20132 6.12891 -2.96095 -1.56478 Vertex 20133 5.14208 -2.96094 -3.08525 Vertex 20134 3.70289 -2.96092 -4.05158 Vertex 20135 2.34168 -2.96092 -4.4831 Vertex 20136 0.816705 -2.96092 -4.69526 Vertex 20137 5.07874 -1.54301 1.95246 Vertex 20138 5.77676 -1.54298 0.262437 Vertex 20139 5.80083 -1.54295 -1.46974 Vertex 20140 4.89312 -1.54294 -2.89402 Vertex 20141 3.56321 -1.54292 -3.75185 Vertex 20142 2.25976 -1.54292 -4.1655 Vertex 20143 0.8271 -0.12492 -4.69136 Vertex 20144 0.8299 -0.12504 4.38905 Vertex 20145 2.43393 -0.125046 4.15901 Vertex 20146 4.01348 -0.125035 3.42401 Vertex 20147 -5.9185 -3.66998 0.346318 Vertex 20148 -5.2506 -3.67001 1.98627 Vertex 20149 -0.803125 -2.25192 -4.53326 Vertex 20150 -2.30072 -2.25192 -4.3243 Vertex 20151 -3.63304 -2.25192 -3.90171 Vertex 20152 -5.0176 -2.25194 -2.98963 Vertex 20153 -5.96487 -2.25196 -1.51726 Vertex 20154 -5.9363 -2.25198 0.273436 Vertex 20155 -5.21132 -2.25201 2.05019 Vertex 20156 -3.89126 -2.25203 3.30406 Vertex 20157 -2.33037 -2.25204 4.02734 Vertex 20158 -0.796857 -2.25204 4.23435 Vertex 20159 -0.796857 -3.67004 4.23433 Vertex 20160 -2.29016 -3.67073 4.02378 Vertex 20161 -3.89122 -3.67003 3.30405 Vertex 20162 -5.9467 -3.66996 -1.59088 Vertex 20163 -5.07432 -3.66994 -2.94055 Vertex 20164 -3.56272 -3.66992 -3.92949 Vertex 20165 -2.30072 -3.66992 -4.32432 Vertex 20166 -0.803125 -3.66992 -4.53328 Vertex 20167 -5.95476 0.584045 -1.52638 Vertex 20168 -5.94275 0.58402 0.282398 Vertex 20169 -5.2129 0.583988 2.04371 Vertex 20170 -3.90671 0.583966 3.29546 Vertex 20171 -2.35913 0.583956 4.01583 Vertex 20172 -0.808488 0.583961 4.23123 Vertex 20173 -0.808488 -0.834037 4.23121 Vertex 20174 -2.35913 -0.834043 4.01581 Vertex 20175 -3.90671 -0.834033 3.29544 Vertex 20176 -5.2129 -0.83401 2.04368 Vertex 20177 -5.94275 -0.833978 0.282375 Vertex 20178 -5.95476 -0.833954 -1.5264 Vertex 20179 -5.01215 -0.833938 -3.01075 Vertex 20180 -3.64435 -0.833921 -3.89583 Vertex 20181 -2.30937 -0.833917 -4.32242 Vertex 20182 -0.808322 -0.833921 -4.5313 Vertex 20183 -0.808322 0.584078 -4.53128 Vertex 20184 -2.30937 0.584082 -4.3224 Vertex 20185 -3.64435 0.584078 -3.89581 Vertex 20186 -5.01216 0.584061 -3.01073 Vertex 20187 -3.79993 -1.54303 3.16689 Vertex 20188 -2.28433 -1.54304 3.87261 Vertex 20189 -0.787075 -1.54303 4.07338 Vertex 20190 -0.80664 -2.96104 4.39533 Vertex 20191 -2.37642 -2.96104 4.18206 Vertex 20192 -3.98258 -2.96104 3.44123 Vertex 20193 -0.789545 -1.54292 -4.37125 Vertex 20194 -2.35898 -0.124915 -4.47934 Vertex 20195 -3.7255 -0.12492 -4.0398 Vertex 20196 -5.13119 -0.124937 -3.12748 Vertex 20197 -6.10869 -0.124954 -1.58305 Vertex 20198 -6.10874 -0.124979 0.302317 Vertex 20199 -5.34706 -0.125012 2.13491 Vertex 20200 -5.34389 -2.96102 2.14791 Vertex 20201 -6.09583 -2.96098 0.284434 Vertex 20202 -6.12891 -2.96096 -1.56478 Vertex 20203 -5.14208 -2.96094 -3.08525 Vertex 20204 -3.70289 -2.96092 -4.05158 Vertex 20205 -2.34168 -2.96092 -4.4831 Vertex 20206 -0.816705 -2.96092 -4.69527 Vertex 20207 -5.07874 -1.54301 1.95246 Vertex 20208 -5.77676 -1.54298 0.262437 Vertex 20209 -5.80083 -1.54296 -1.46974 Vertex 20210 -4.89312 -1.54294 -2.89402 Vertex 20211 -3.56321 -1.54292 -3.75185 Vertex 20212 -2.25976 -1.54292 -4.1655 Vertex 20213 -0.8271 -0.12492 -4.69136 Vertex 20214 -0.8299 -0.12504 4.38905 Vertex 20215 -2.43393 -0.125046 4.15901 Vertex 20216 -4.01348 -0.125035 3.42401 Vertex 20217 5.51854 -34.2463 -4.55903 Vertex 20218 4.38211 -34.282 -3.92862 Vertex 20219 4.43217 -34.2716 -2.71757 Vertex 20220 5.59063 -34.2744 -2.2319 Vertex 20221 3.71364 -9.92548 3.45147 Vertex 20222 -4.30586 -34.2904 -2.42032 Vertex 20223 -4.2558 -34.3007 -3.63136 Vertex 20224 -5.39223 -34.265 -4.26177 Vertex 20225 -6.26534 -34.2321 -3.65246 Vertex 20226 -4.25042 -10.2572 3.34302 Vertex 20227 7.305 -10.0132 1.48403 Vertex 20228 7.47691 -12.0367 1.65745 Vertex 20229 9.04959 -21.8003 -2.08939 Vertex 20230 10.2259 -20.6506 -1.84912 Vertex 20231 10.2839 -18.7949 -1.30981 Vertex 20232 9.66625 -16.5879 -0.671608 Vertex 20233 8.70921 -14.2336 -0.0870043 Vertex 20234 1.45106 -21.8968 -2.35629 Vertex 20235 2.78279 -21.8861 -0.441383 Vertex 20236 9.11065 -21.7299 -4.35587 Vertex 20237 7.89646 -21.7351 -6.42623 Vertex 20238 4.62973 -21.8892 0.324356 Vertex 20239 7.20477 -21.883 -0.017314 Vertex 20240 6.15192 -20.6957 1.67576 Vertex 20241 6.43839 -20.6945 1.63069 Vertex 20242 3.22243 -5.04854 3.5415 Vertex 20243 5.20108 -8.56539 -4.43158 Vertex 20244 4.98498 -8.6006 -4.62701 Vertex 20245 4.44905 -5.61157 -3.94036 Vertex 20246 4.68969 -5.60324 -3.7693 Vertex 20247 6.17122 -5.00251 -0.374502 Vertex 20248 6.18605 -5.02138 -0.667118 Vertex 20249 2.93237 -7.87324 3.75241 Vertex 20250 3.22431 -7.87838 3.68621 Vertex 20251 4.7479 -4.99096 2.61807 Vertex 20252 4.52624 -5.00245 2.80877 Vertex 20253 2.97364 -5.04798 3.61806 Vertex 20254 1.27213 -8.01394 3.8717 Vertex 20255 1.57103 -8.02156 3.85343 Vertex 20256 1.03714 -10.5436 3.32975 Vertex 20257 1.33352 -10.5849 3.3368 Vertex 20258 0.850881 -11.9885 2.74221 Vertex 20259 1.12079 -12.0751 2.78703 Vertex 20260 1.30516 -12.8634 2.45535 Vertex 20261 1.56602 -12.9986 2.43485 Vertex 20262 2.56201 -10.3189 3.43061 Vertex 20263 2.76747 -10.5378 3.36109 Vertex 20264 1.93004 -11.9791 2.8598 Vertex 20265 2.16818 -12.1117 2.82644 Vertex 20266 1.94726 -10.4603 3.45271 Vertex 20267 1.52499 -12.033 2.89745 Vertex 20268 1.13412 -12.7393 2.56581 Vertex 20269 0.303092 -14.5193 -1.28644 Vertex 20270 0.347401 -14.5115 -1.57481 Vertex 20271 0.280905 -16.6619 -2.09264 Vertex 20272 0.26935 -16.7305 -1.81105 Vertex 20273 0.309126 -18.913 -2.51799 Vertex 20274 0.308048 -18.8363 -2.79721 Vertex 20275 0.57263 -20.7341 -3.26768 Vertex 20276 0.569559 -20.7611 -2.97875 Vertex 20277 2.95973 -18.9145 -7.46053 Vertex 20278 3.20682 -18.899 -7.63651 Vertex 20279 3.15873 -20.8017 -7.46821 Vertex 20280 3.41183 -20.7871 -7.6316 Vertex 20281 8.87383 -14.1994 -1.34556 Vertex 20282 8.88229 -14.2351 -1.07424 Vertex 20283 9.88018 -16.5667 -1.75128 Vertex 20284 9.87038 -16.483 -2.04734 Vertex 20285 10.5307 -18.6198 -2.80621 Vertex 20286 10.5244 -18.7122 -2.45863 Vertex 20287 10.4469 -20.5488 -2.90933 Vertex 20288 10.4609 -20.507 -3.23271 Vertex 20289 8.67653 -16.5239 -5.1682 Vertex 20290 8.48695 -16.4908 -5.45715 Vertex 20291 9.06097 -18.6358 -6.36375 Vertex 20292 9.31416 -18.6763 -5.97808 Vertex 20293 9.29818 -20.5421 -6.06188 Vertex 20294 9.02988 -20.535 -6.46827 Vertex 20295 6.57426 3.9453 0.792064 Vertex 20296 6.65866 3.88707 1.79795 Vertex 20297 6.644 3.88353 1.93614 Vertex 20298 0.808488 2.90197 5.06804 Vertex 20299 1.68333 2.86209 4.97947 Vertex 20300 1.82041 2.85777 4.96931 Vertex 20301 2.70865 2.85445 4.90748 Vertex 20302 4.11983 2.87846 4.40109 Vertex 20303 4.77883 2.94075 3.85881 Vertex 20304 4.95538 2.94029 3.71744 Vertex 20305 5.72021 2.8199 3.44168 Vertex 20306 6.57334 2.68544 2.31891 Vertex 20307 6.40373 2.7365 -1.23374 Vertex 20308 6.36677 2.5571 -2.0317 Vertex 20309 6.30515 2.55003 -2.17472 Vertex 20310 5.74426 2.60636 -2.97597 Vertex 20311 4.35833 2.79933 -4.16834 Vertex 20312 3.45438 2.95902 -4.50148 Vertex 20313 3.2795 2.95483 -4.63841 Vertex 20314 2.44425 2.83771 -5.19005 Vertex 20315 0.811 2.82786 -5.52943 Vertex 20316 1.76631 4.06355 4.80503 Vertex 20317 1.58989 4.07444 4.81221 Vertex 20318 6.099 3.79717 -2.00332 Vertex 20319 6.18285 3.79859 -1.836 Vertex 20320 5.06045 3.87783 -3.51768 Vertex 20321 4.94044 3.88338 -3.64882 Vertex 20322 0.751993 4.12867 4.87771 Vertex 20323 2.62134 4.01567 4.7962 Vertex 20324 6.44369 3.87753 2.66142 Vertex 20325 6.61325 2.76484 0.583629 Vertex 20326 6.34981 3.90645 -0.961093 Vertex 20327 5.59811 3.84351 -2.78809 Vertex 20328 4.25412 3.94337 -4.15495 Vertex 20329 6.04159 0.629042 -1.56407 Vertex 20330 0.797127 0.625431 4.41492 Vertex 20331 2.38403 0.60384 4.2108 Vertex 20332 3.93267 0.673367 3.55466 Vertex 20333 5.32225 0.629464 2.2816 Vertex 20334 6.05787 0.652461 0.584448 Vertex 20335 5.18447 0.571009 -3.02573 Vertex 20336 3.83215 0.64556 -3.94968 Vertex 20337 2.29676 0.640231 -4.52413 Vertex 20338 0.818247 0.617678 -4.72784 Vertex 20339 4.97659 1.18414 3.27393 Vertex 20340 4.80042 1.22352 3.48651 Vertex 20341 6.18551 1.13896 -0.739532 Vertex 20342 6.24381 1.13453 -0.461635 Vertex 20343 3.23221 1.218 -4.38607 Vertex 20344 3.00729 1.20608 -4.52884 Vertex 20345 3.11101 1.96906 -4.61944 Vertex 20346 3.34362 1.97529 -4.43751 Vertex 20347 6.23741 1.87917 -0.63066 Vertex 20348 6.2793 1.86904 -0.338375 Vertex 20349 5.00018 1.99817 3.45819 Vertex 20350 4.76491 1.99753 3.64671 Vertex 20351 0.853675 1.77306 -5.47597 Vertex 20352 2.39262 1.80132 -5.20996 Vertex 20353 4.33713 1.7651 -4.1901 Vertex 20354 5.76475 1.52408 -3.10869 Vertex 20355 6.36738 1.67042 -1.51849 Vertex 20356 6.60506 1.73231 0.353537 Vertex 20357 6.63271 1.67067 1.95578 Vertex 20358 5.79798 1.83592 3.21391 Vertex 20359 0.821335 1.80104 5.09995 Vertex 20360 2.65051 1.75492 4.9112 Vertex 20361 4.11841 1.86289 4.29467 Vertex 20362 6.29761 0.940978 -1.63631 Vertex 20363 4.18276 1.00732 -4.17217 Vertex 20364 0.85604 0.96977 -5.24398 Vertex 20365 6.46774 0.981053 1.37629 Vertex 20366 5.67451 1.03313 2.86863 Vertex 20367 4.0827 1.0725 4.07643 Vertex 20368 5.59697 0.812779 -3.14646 Vertex 20369 0.810233 0.989837 4.89429 Vertex 20370 2.35071 1.01294 -5.02734 Vertex 20371 2.52891 0.929459 4.70093 Vertex 20372 7.59739 -18.9066 1.91711 Vertex 20373 9.38361 -18.8672 0.482211 Vertex 20374 10.0587 -18.6227 -4.40627 Vertex 20375 8.46851 -18.6036 -7.21802 Vertex 20376 6.88382 -18.6769 -8.24973 Vertex 20377 4.56401 -18.8117 -8.23031 Vertex 20378 1.80438 -18.934 -6.21716 Vertex 20379 0.522023 -18.8808 -3.9674 Vertex 20380 0.551944 -18.9196 -1.18909 Vertex 20381 1.99503 -18.8957 1.05832 Vertex 20382 4.61915 -18.914 2.34691 Vertex 20383 3.50824 -33.9299 -4.99953 Vertex 20384 4.68409 -33.8897 -5.62806 Vertex 20385 5.61935 -33.8286 -5.55347 Vertex 20386 6.22208 -33.8022 -5.01681 Vertex 20387 6.66684 -33.806 -3.95909 Vertex 20388 6.59652 -33.8557 -2.65231 Vertex 20389 5.91284 -33.9074 -1.79815 Vertex 20390 4.76551 -33.9095 -1.55109 Vertex 20391 3.63203 -33.9035 -1.92404 Vertex 20392 2.96806 -33.9003 -2.86944 Vertex 20393 2.87434 -33.9193 -3.95252 Vertex 20394 3.15569 -32.8954 -5.72906 Vertex 20395 4.68355 -32.8432 -6.54401 Vertex 20396 5.93362 -32.764 -6.4473 Vertex 20397 6.63243 -32.7297 -5.7087 Vertex 20398 7.04049 -32.7347 -4.2945 Vertex 20399 6.99919 -32.7991 -2.65938 Vertex 20400 6.24326 -32.8661 -1.6111 Vertex 20401 4.75949 -32.8689 -1.2743 Vertex 20402 3.23836 -32.8612 -1.74139 Vertex 20403 2.37924 -32.857 -2.9672 Vertex 20404 2.30593 -32.8815 -4.37152 Vertex 20405 3.19229 -31.2942 -5.9238 Vertex 20406 4.80838 -31.2393 -6.7827 Vertex 20407 6.28451 -31.1558 -6.68077 Vertex 20408 7.13969 -31.1197 -5.96969 Vertex 20409 7.53524 -31.125 -4.54657 Vertex 20410 7.37609 -31.1928 -2.70882 Vertex 20411 6.45061 -31.2634 -1.48956 Vertex 20412 4.8105 -31.2664 -1.18169 Vertex 20413 3.09523 -31.2583 -1.72106 Vertex 20414 2.0451 -31.2538 -3.01298 Vertex 20415 2.07752 -31.2797 -4.49304 Vertex 20416 3.31712 -28.9331 -5.47714 Vertex 20417 4.83354 -28.883 -6.26011 Vertex 20418 6.1881 -28.807 -6.1672 Vertex 20419 7.09414 -28.7741 -5.5744 Vertex 20420 7.63744 -28.7788 -4.3325 Vertex 20421 7.4022 -28.8407 -2.56844 Vertex 20422 6.3368 -28.9051 -1.3682 Vertex 20423 4.68214 -28.9077 -1.12088 Vertex 20424 2.97206 -28.9003 -1.64592 Vertex 20425 2.00176 -28.8963 -2.82363 Vertex 20426 2.16431 -28.9199 -4.17286 Vertex 20427 4.71996 -21.8945 -7.18025 Vertex 20428 6.63104 -21.7854 -7.13536 Vertex 20429 8.35504 -21.7239 -5.83362 Vertex 20430 8.55569 -21.7234 -5.50889 Vertex 20431 6.18787 -21.8492 0.310948 Vertex 20432 5.89075 -21.8499 0.352484 Vertex 20433 2.08073 -21.8585 -1.26328 Vertex 20434 1.89959 -21.8598 -1.53178 Vertex 20435 1.44286 -21.9543 -4.18192 Vertex 20436 2.52001 -21.9761 -5.86418 Vertex 20437 4.72787 -20.7279 -8.1405 Vertex 20438 6.96116 -20.6019 -8.11481 Vertex 20439 8.46742 -20.5359 -7.22633 Vertex 20440 10.0215 -20.5226 -4.65224 Vertex 20441 9.37623 -20.7265 -0.203213 Vertex 20442 7.69445 -20.7404 1.09612 Vertex 20443 4.62731 -20.7528 1.53055 Vertex 20444 2.23186 -20.7467 0.383681 Vertex 20445 0.777959 -20.7677 -1.82529 Vertex 20446 0.777365 -20.7961 -4.33752 Vertex 20447 2.02335 -20.8362 -6.3569 Vertex 20448 4.1697 -16.6258 -7.2305 Vertex 20449 6.40204 -16.4878 -7.29674 Vertex 20450 7.9231 -16.424 -6.27491 Vertex 20451 9.38686 -16.4543 -3.6291 Vertex 20452 8.80735 -16.6497 1.03113 Vertex 20453 7.05093 -16.721 2.41761 Vertex 20454 4.44842 -16.7228 2.77898 Vertex 20455 1.88831 -16.7034 1.56821 Vertex 20456 0.465696 -16.7279 -0.534167 Vertex 20457 0.473059 -16.6962 -3.1877 Vertex 20458 1.71047 -16.7393 -5.36534 Vertex 20459 0.552937 -14.529 -2.60225 Vertex 20460 0.323007 -13.2879 -2.75151 Vertex 20461 7.69488 -11.9015 -2.12047 Vertex 20462 7.44249 -9.96739 -1.63748 Vertex 20463 1.51517 -14.546 1.98028 Vertex 20464 4.11281 -8.66463 -5.26734 Vertex 20465 0.840618 -10.9963 -5.8909 Vertex 20466 0.822203 -8.86275 -5.91685 Vertex 20467 4.17234 -10.9143 -5.76174 Vertex 20468 2.52748 -11.0022 -6.17591 Vertex 20469 6.16681 -5.08259 -1.55957 Vertex 20470 6.0375 -4.94082 0.554979 Vertex 20471 6.05912 -12.1872 2.69989 Vertex 20472 2.65182 -12.1968 2.91407 Vertex 20473 3.91147 -5.02356 3.26027 Vertex 20474 0.355227 -11.7968 2.65113 Vertex 20475 0.705595 -5.10048 4.0928 Vertex 20476 2.64628 -13.2417 -5.85868 Vertex 20477 3.34203 -14.6754 -6.2946 Vertex 20478 4.06308 -12.2266 3.04411 Vertex 20479 1.52009 -14.6463 -4.58955 Vertex 20480 5.40158 -14.5066 -6.4157 Vertex 20481 8.08196 -11.9346 0.309053 Vertex 20482 0.181841 -12.505 1.31632 Vertex 20483 2.37238 -5.57927 -4.88344 Vertex 20484 5.44712 -5.36429 -3.00432 Vertex 20485 6.1351 -10.1345 2.65233 Vertex 20486 6.22692 -12.2594 -4.55102 Vertex 20487 5.86587 -7.64762 2.36794 Vertex 20488 6.17176 -10.3047 -3.87747 Vertex 20489 4.4494 -12.8045 -6.07542 Vertex 20490 0.816748 -12.425 -5.1741 Vertex 20491 6.06096 -8.16613 -3.36699 Vertex 20492 2.48722 -8.75762 -5.85545 Vertex 20493 0.794903 -5.58122 -5.10297 Vertex 20494 3.75427 -5.58843 -4.37798 Vertex 20495 6.89989 -7.77356 -1.58695 Vertex 20496 6.74243 -7.6317 1.01953 Vertex 20497 5.36664 -4.93931 1.96253 Vertex 20498 0.069102 -13.0861 -0.599957 Vertex 20499 0.44204 -10.5503 3.36694 Vertex 20500 4.19681 -7.79225 3.42999 Vertex 20501 2.25913 -7.9509 3.86968 Vertex 20502 0.561759 -8.08463 3.93642 Vertex 20503 2.28753 -5.06102 3.91179 Vertex 20504 0.297577 -14.4094 -0.262428 Vertex 20505 2.21159 -13.8449 2.51853 Vertex 20506 4.16043 -14.3906 2.88674 Vertex 20507 6.35812 -14.4111 2.63195 Vertex 20508 7.94164 -14.3253 1.45852 Vertex 20509 8.33159 -14.1502 -2.8976 Vertex 20510 6.95521 -14.2715 -5.26172 Vertex 20511 5.51901 3.89818 3.74212 Vertex 20512 4.08585 3.9483 4.44551 Vertex 20513 0.74856 3.96786 -5.49142 Vertex 20514 2.49761 3.96688 -5.07415 Vertex 20515 -7.305 -10.0132 1.48403 Vertex 20516 -7.47691 -12.0367 1.65745 Vertex 20517 -9.04959 -21.8003 -2.08939 Vertex 20518 -10.2259 -20.6506 -1.84912 Vertex 20519 -10.2839 -18.7949 -1.30981 Vertex 20520 -9.66625 -16.5878 -0.671608 Vertex 20521 -8.70921 -14.2336 -0.0870043 Vertex 20522 -1.45106 -21.8968 -2.35629 Vertex 20523 -2.78279 -21.8861 -0.441383 Vertex 20524 -9.11065 -21.7299 -4.35587 Vertex 20525 -7.89646 -21.7351 -6.42623 Vertex 20526 -4.62973 -21.8892 0.324356 Vertex 20527 -7.20477 -21.883 -0.017314 Vertex 20528 -6.15192 -20.6957 1.67576 Vertex 20529 -6.43839 -20.6945 1.63069 Vertex 20530 -3.22243 -5.04854 3.5415 Vertex 20531 -5.20108 -8.56539 -4.43158 Vertex 20532 -4.98498 -8.6006 -4.62701 Vertex 20533 -4.44905 -5.61157 -3.94036 Vertex 20534 -4.68969 -5.60324 -3.7693 Vertex 20535 -6.17122 -5.00251 -0.374502 Vertex 20536 -6.18605 -5.02138 -0.667118 Vertex 20537 -2.93237 -7.87324 3.75241 Vertex 20538 -3.22431 -7.87837 3.68621 Vertex 20539 -4.7479 -4.99096 2.61807 Vertex 20540 -4.52624 -5.00245 2.80877 Vertex 20541 -2.97364 -5.04798 3.61806 Vertex 20542 -1.27213 -8.01394 3.8717 Vertex 20543 -1.57103 -8.02156 3.85343 Vertex 20544 -1.03714 -10.5436 3.32975 Vertex 20545 -1.33352 -10.5849 3.3368 Vertex 20546 -0.850881 -11.9885 2.74221 Vertex 20547 -1.12079 -12.0752 2.78703 Vertex 20548 -1.30516 -12.8634 2.45535 Vertex 20549 -1.56602 -12.9986 2.43485 Vertex 20550 -2.56201 -10.3189 3.43061 Vertex 20551 -2.76747 -10.5378 3.36109 Vertex 20552 -1.93004 -11.9791 2.8598 Vertex 20553 -2.16818 -12.1117 2.82644 Vertex 20554 -1.94726 -10.4603 3.45271 Vertex 20555 -1.52499 -12.033 2.89744 Vertex 20556 -1.13412 -12.7393 2.56581 Vertex 20557 -0.303092 -14.5193 -1.28644 Vertex 20558 -0.347401 -14.5115 -1.57481 Vertex 20559 -0.280905 -16.6619 -2.09264 Vertex 20560 -0.26935 -16.7305 -1.81105 Vertex 20561 -0.309125 -18.913 -2.51799 Vertex 20562 -0.308048 -18.8363 -2.79721 Vertex 20563 -0.57263 -20.7341 -3.26768 Vertex 20564 -0.569559 -20.7611 -2.97875 Vertex 20565 -2.95973 -18.9145 -7.46053 Vertex 20566 -3.20682 -18.899 -7.63651 Vertex 20567 -3.15873 -20.8017 -7.46821 Vertex 20568 -3.41183 -20.787 -7.63161 Vertex 20569 -8.87383 -14.1993 -1.34556 Vertex 20570 -8.88229 -14.2352 -1.07424 Vertex 20571 -9.88018 -16.5667 -1.75128 Vertex 20572 -9.87037 -16.4831 -2.04734 Vertex 20573 -10.5307 -18.6198 -2.80622 Vertex 20574 -10.5244 -18.7122 -2.45863 Vertex 20575 -10.4469 -20.5488 -2.90933 Vertex 20576 -10.4609 -20.507 -3.2327 Vertex 20577 -8.67653 -16.5239 -5.1682 Vertex 20578 -8.48695 -16.4908 -5.45715 Vertex 20579 -9.06097 -18.6358 -6.36375 Vertex 20580 -9.31416 -18.6763 -5.97808 Vertex 20581 -9.29818 -20.5421 -6.06187 Vertex 20582 -9.02988 -20.535 -6.46827 Vertex 20583 -6.57426 3.9453 0.792065 Vertex 20584 -6.65866 3.88707 1.79795 Vertex 20585 -6.644 3.88353 1.93614 Vertex 20586 -0.808488 2.90197 5.06804 Vertex 20587 -1.68333 2.86208 4.97947 Vertex 20588 -1.82041 2.85777 4.96931 Vertex 20589 -2.70865 2.85445 4.90748 Vertex 20590 -4.11983 2.87846 4.40109 Vertex 20591 -4.77883 2.94075 3.85881 Vertex 20592 -4.95538 2.94029 3.71744 Vertex 20593 -5.72021 2.8199 3.44168 Vertex 20594 -6.57334 2.68544 2.31891 Vertex 20595 -6.40373 2.7365 -1.23374 Vertex 20596 -6.36677 2.5571 -2.0317 Vertex 20597 -6.30515 2.55003 -2.17472 Vertex 20598 -5.74426 2.60636 -2.97597 Vertex 20599 -4.35833 2.79933 -4.16834 Vertex 20600 -3.45438 2.95902 -4.50148 Vertex 20601 -3.2795 2.95483 -4.63841 Vertex 20602 -2.44425 2.83771 -5.19005 Vertex 20603 -0.811 2.82786 -5.52943 Vertex 20604 -1.76631 4.06354 4.80503 Vertex 20605 -1.58989 4.07444 4.81221 Vertex 20606 -6.099 3.79717 -2.00332 Vertex 20607 -6.18285 3.79859 -1.836 Vertex 20608 -5.06045 3.87784 -3.51768 Vertex 20609 -4.94044 3.88338 -3.64882 Vertex 20610 -0.751993 4.12867 4.87771 Vertex 20611 -2.62134 4.01567 4.7962 Vertex 20612 -6.44369 3.87753 2.66142 Vertex 20613 -6.61325 2.76484 0.583629 Vertex 20614 -6.34981 3.90645 -0.961093 Vertex 20615 -5.5981 3.84351 -2.78809 Vertex 20616 -4.25412 3.94338 -4.15495 Vertex 20617 -6.04159 0.629042 -1.56407 Vertex 20618 -0.797127 0.625431 4.41493 Vertex 20619 -2.38403 0.60384 4.2108 Vertex 20620 -3.93267 0.673366 3.55466 Vertex 20621 -5.32225 0.629464 2.2816 Vertex 20622 -6.05787 0.65246 0.584448 Vertex 20623 -5.18447 0.571009 -3.02573 Vertex 20624 -3.83215 0.64556 -3.94969 Vertex 20625 -2.29676 0.640231 -4.52413 Vertex 20626 -0.818247 0.617678 -4.72784 Vertex 20627 -4.97659 1.18414 3.27392 Vertex 20628 -4.80042 1.22352 3.48651 Vertex 20629 -6.18551 1.13896 -0.739532 Vertex 20630 -6.24381 1.13453 -0.461635 Vertex 20631 -3.23221 1.218 -4.38607 Vertex 20632 -3.00729 1.20608 -4.52884 Vertex 20633 -3.11101 1.96906 -4.61944 Vertex 20634 -3.34362 1.97529 -4.43751 Vertex 20635 -6.23741 1.87917 -0.630659 Vertex 20636 -6.2793 1.86904 -0.338375 Vertex 20637 -5.00018 1.99817 3.45819 Vertex 20638 -4.76491 1.99753 3.64671 Vertex 20639 -0.853675 1.77306 -5.47597 Vertex 20640 -2.39262 1.80132 -5.20995 Vertex 20641 -4.33713 1.7651 -4.1901 Vertex 20642 -5.76475 1.52408 -3.10869 Vertex 20643 -6.36738 1.67042 -1.51849 Vertex 20644 -6.60506 1.73231 0.353537 Vertex 20645 -6.63271 1.67067 1.95578 Vertex 20646 -5.79798 1.83592 3.21391 Vertex 20647 -0.821335 1.80104 5.09995 Vertex 20648 -2.65051 1.75492 4.9112 Vertex 20649 -4.11841 1.86289 4.29467 Vertex 20650 -6.29761 0.940978 -1.63631 Vertex 20651 -4.18276 1.00732 -4.17217 Vertex 20652 -0.85604 0.969771 -5.24398 Vertex 20653 -6.46774 0.981053 1.37629 Vertex 20654 -5.67451 1.03313 2.86863 Vertex 20655 -4.0827 1.0725 4.07643 Vertex 20656 -5.59697 0.812779 -3.14646 Vertex 20657 -0.810233 0.989837 4.89429 Vertex 20658 -2.35071 1.01294 -5.02734 Vertex 20659 -2.52891 0.929459 4.70093 Vertex 20660 -7.59739 -18.9066 1.91711 Vertex 20661 -9.38361 -18.8672 0.482211 Vertex 20662 -10.0587 -18.6227 -4.40627 Vertex 20663 -8.46851 -18.6036 -7.21802 Vertex 20664 -6.88382 -18.6769 -8.24973 Vertex 20665 -4.56401 -18.8117 -8.23031 Vertex 20666 -1.80438 -18.934 -6.21716 Vertex 20667 -0.522023 -18.8808 -3.9674 Vertex 20668 -0.551944 -18.9196 -1.18909 Vertex 20669 -1.99503 -18.8957 1.05832 Vertex 20670 -4.61915 -18.914 2.34691 Vertex 20671 -3.50824 -33.9299 -4.99953 Vertex 20672 -4.68409 -33.8897 -5.62806 Vertex 20673 -5.61935 -33.8286 -5.55348 Vertex 20674 -6.22208 -33.8022 -5.01681 Vertex 20675 -6.66684 -33.806 -3.95909 Vertex 20676 -6.59652 -33.8557 -2.65231 Vertex 20677 -5.91284 -33.9074 -1.79814 Vertex 20678 -4.76551 -33.9095 -1.55109 Vertex 20679 -3.63202 -33.9035 -1.92404 Vertex 20680 -2.96806 -33.9003 -2.86944 Vertex 20681 -2.87434 -33.9193 -3.95253 Vertex 20682 -3.15569 -32.8953 -5.72907 Vertex 20683 -4.68355 -32.8432 -6.54401 Vertex 20684 -5.93362 -32.764 -6.4473 Vertex 20685 -6.63243 -32.7297 -5.7087 Vertex 20686 -7.04049 -32.7347 -4.2945 Vertex 20687 -6.99919 -32.7991 -2.65938 Vertex 20688 -6.24327 -32.8661 -1.6111 Vertex 20689 -4.75949 -32.8689 -1.2743 Vertex 20690 -3.23836 -32.8612 -1.74139 Vertex 20691 -2.37924 -32.857 -2.9672 Vertex 20692 -2.30593 -32.8815 -4.37152 Vertex 20693 -3.19229 -31.2942 -5.9238 Vertex 20694 -4.80838 -31.2393 -6.7827 Vertex 20695 -6.28451 -31.1558 -6.68077 Vertex 20696 -7.1397 -31.1197 -5.96969 Vertex 20697 -7.53524 -31.125 -4.54657 Vertex 20698 -7.37609 -31.1928 -2.70882 Vertex 20699 -6.45061 -31.2634 -1.48956 Vertex 20700 -4.8105 -31.2664 -1.18169 Vertex 20701 -3.09523 -31.2582 -1.72106 Vertex 20702 -2.0451 -31.2538 -3.01298 Vertex 20703 -2.07752 -31.2797 -4.49304 Vertex 20704 -3.31712 -28.9331 -5.47714 Vertex 20705 -4.83354 -28.883 -6.26011 Vertex 20706 -6.1881 -28.807 -6.1672 Vertex 20707 -7.09414 -28.774 -5.5744 Vertex 20708 -7.63744 -28.7788 -4.3325 Vertex 20709 -7.40221 -28.8406 -2.56844 Vertex 20710 -6.3368 -28.9051 -1.3682 Vertex 20711 -4.68214 -28.9078 -1.12089 Vertex 20712 -2.97206 -28.9003 -1.64592 Vertex 20713 -2.00176 -28.8963 -2.82363 Vertex 20714 -2.16431 -28.9199 -4.17286 Vertex 20715 -4.71996 -21.8944 -7.18025 Vertex 20716 -6.63104 -21.7854 -7.13536 Vertex 20717 -8.35504 -21.7239 -5.83362 Vertex 20718 -8.55569 -21.7234 -5.50889 Vertex 20719 -6.18787 -21.8491 0.310948 Vertex 20720 -5.89075 -21.8499 0.352484 Vertex 20721 -2.08073 -21.8585 -1.26328 Vertex 20722 -1.89959 -21.8598 -1.53178 Vertex 20723 -1.44286 -21.9543 -4.18192 Vertex 20724 -2.52002 -21.9761 -5.86418 Vertex 20725 -4.72787 -20.7279 -8.1405 Vertex 20726 -6.96116 -20.6019 -8.11481 Vertex 20727 -8.46742 -20.5359 -7.22633 Vertex 20728 -10.0215 -20.5226 -4.65224 Vertex 20729 -9.37623 -20.7265 -0.203213 Vertex 20730 -7.69445 -20.7404 1.09612 Vertex 20731 -4.62731 -20.7528 1.53055 Vertex 20732 -2.23186 -20.7467 0.383681 Vertex 20733 -0.777958 -20.7677 -1.82529 Vertex 20734 -0.777365 -20.7961 -4.33752 Vertex 20735 -2.02335 -20.8362 -6.3569 Vertex 20736 -4.1697 -16.6258 -7.2305 Vertex 20737 -6.40205 -16.4878 -7.29674 Vertex 20738 -7.9231 -16.424 -6.27491 Vertex 20739 -9.38686 -16.4543 -3.6291 Vertex 20740 -8.80735 -16.6497 1.03113 Vertex 20741 -7.05093 -16.721 2.41761 Vertex 20742 -4.44842 -16.7228 2.77898 Vertex 20743 -1.88831 -16.7034 1.56821 Vertex 20744 -0.465696 -16.7279 -0.534167 Vertex 20745 -0.473059 -16.6962 -3.1877 Vertex 20746 -1.71047 -16.7393 -5.36534 Vertex 20747 -0.552937 -14.529 -2.60225 Vertex 20748 -0.323007 -13.2879 -2.75151 Vertex 20749 -7.69488 -11.9015 -2.12047 Vertex 20750 -7.44249 -9.96739 -1.63748 Vertex 20751 -1.51517 -14.5461 1.98028 Vertex 20752 -4.11281 -8.66464 -5.26734 Vertex 20753 -0.840618 -10.9963 -5.8909 Vertex 20754 -0.822203 -8.86275 -5.91685 Vertex 20755 -4.17234 -10.9143 -5.76174 Vertex 20756 -2.52747 -11.0022 -6.17591 Vertex 20757 -6.16681 -5.08259 -1.55957 Vertex 20758 -6.0375 -4.94082 0.554979 Vertex 20759 -6.05912 -12.1872 2.69989 Vertex 20760 -2.65182 -12.1968 2.91407 Vertex 20761 -3.91147 -5.02357 3.26027 Vertex 20762 -0.355227 -11.7968 2.65113 Vertex 20763 -0.705595 -5.10048 4.0928 Vertex 20764 -2.64628 -13.2417 -5.85868 Vertex 20765 -3.34203 -14.6754 -6.2946 Vertex 20766 -4.06307 -12.2266 3.04411 Vertex 20767 -1.52009 -14.6463 -4.58955 Vertex 20768 -5.40158 -14.5066 -6.4157 Vertex 20769 -8.08196 -11.9346 0.309053 Vertex 20770 -0.181841 -12.505 1.31632 Vertex 20771 -2.37238 -5.57927 -4.88344 Vertex 20772 -5.44712 -5.36429 -3.00432 Vertex 20773 -6.1351 -10.1345 2.65233 Vertex 20774 -6.22691 -12.2594 -4.55102 Vertex 20775 -5.86587 -7.64762 2.36795 Vertex 20776 -6.17176 -10.3047 -3.87747 Vertex 20777 -4.4494 -12.8045 -6.07542 Vertex 20778 -0.816748 -12.425 -5.1741 Vertex 20779 -6.06096 -8.16613 -3.36699 Vertex 20780 -2.48722 -8.75762 -5.85545 Vertex 20781 -0.794903 -5.58122 -5.10297 Vertex 20782 -3.75427 -5.58843 -4.37798 Vertex 20783 -6.89989 -7.77356 -1.58695 Vertex 20784 -6.74243 -7.6317 1.01953 Vertex 20785 -5.36664 -4.93931 1.96253 Vertex 20786 -0.069102 -13.0861 -0.599957 Vertex 20787 -0.44204 -10.5503 3.36694 Vertex 20788 -4.19681 -7.79225 3.42999 Vertex 20789 -2.25913 -7.9509 3.86969 Vertex 20790 -0.561759 -8.08463 3.93642 Vertex 20791 -2.28753 -5.06102 3.91179 Vertex 20792 -0.297577 -14.4094 -0.262428 Vertex 20793 -2.21159 -13.8449 2.51853 Vertex 20794 -4.16043 -14.3906 2.88674 Vertex 20795 -6.35812 -14.4111 2.63195 Vertex 20796 -7.94164 -14.3253 1.45852 Vertex 20797 -8.33159 -14.1502 -2.8976 Vertex 20798 -6.95521 -14.2715 -5.26172 Vertex 20799 -5.51901 3.89818 3.74212 Vertex 20800 -4.08585 3.9483 4.44551 Vertex 20801 -0.74856 3.96786 -5.49142 Vertex 20802 -2.49761 3.96688 -5.07415 Vertex 20803 4.37632 6.847 -5.11241 Vertex 20804 6.25124 9.01903 -3.91517 Vertex 20805 6.79349 8.38057 -2.02858 Vertex 20806 7.50043 9.38598 -0.442105 Vertex 20807 7.84744 11.282 -0.329666 Vertex 20808 7.65733 12.6321 -1.52635 Vertex 20809 3.62423 11.607 -5.47595 Vertex 20810 -4.85029 6.6578 -4.79937 Vertex 20811 -7.86773 10.3721 0.161975 Vertex 20812 -7.30092 8.76034 -0.72736 Vertex 20813 -6.58763 8.55035 -2.71019 Vertex 20814 -6.33851 9.87753 -4.06829 Vertex 20815 -6.74302 11.863 -3.83064 Vertex 20816 -4.01938 12.0707 -5.29074 Vertex 20817 2.54773 4.62678 -5.10205 Vertex 20818 0.722052 4.63396 -5.57799 Vertex 20819 4.08831 4.56161 4.57036 Vertex 20820 5.50029 4.5073 3.97376 Vertex 20821 8.12115 12.359 -0.332699 Vertex 20822 8.27346 11.4814 0.529121 Vertex 20823 8.22128 10.1416 1.01347 Vertex 20824 7.94717 8.72546 0.886046 Vertex 20825 7.56979 7.63165 0.303495 Vertex 20826 7.07105 6.86933 -0.790556 Vertex 20827 6.5109 6.68278 -2.33718 Vertex 20828 6.11926 7.20265 -3.72781 Vertex 20829 5.96802 8.1641 -4.62632 Vertex 20830 6.00477 9.37917 -5.09641 Vertex 20831 6.26356 10.7965 -5.01429 Vertex 20832 6.78986 12.1979 -4.14348 Vertex 20833 7.38593 12.9648 -2.76739 Vertex 20834 7.83504 12.8844 -1.41781 Vertex 20835 8.26313 12.4501 -0.298646 Vertex 20836 8.42194 11.535 0.599965 Vertex 20837 8.36754 10.138 1.105 Vertex 20838 8.08173 8.66138 0.972128 Vertex 20839 7.69186 7.52725 0.372295 Vertex 20840 7.17183 6.73239 -0.76846 Vertex 20841 6.58414 6.5315 -2.3887 Vertex 20842 6.17578 7.07356 -3.83869 Vertex 20843 6.01808 8.07606 -4.77556 Vertex 20844 6.05641 9.34299 -5.26573 Vertex 20845 6.32624 10.8208 -5.18009 Vertex 20846 6.87501 12.2821 -4.27211 Vertex 20847 7.49652 13.0817 -2.83727 Vertex 20848 7.96481 12.9979 -1.43008 Vertex 20849 8.28011 12.5806 -0.207995 Vertex 20850 8.44651 11.6217 0.733546 Vertex 20851 8.3895 10.1579 1.2627 Vertex 20852 8.09004 8.61082 1.12349 Vertex 20853 7.68562 7.42964 0.503489 Vertex 20854 7.14074 6.5968 -0.691762 Vertex 20855 6.52091 6.37919 -2.39789 Vertex 20856 6.09304 6.94714 -3.91715 Vertex 20857 5.92781 7.99754 -4.89878 Vertex 20858 5.96797 9.325 -5.41236 Vertex 20859 6.25069 10.8734 -5.32264 Vertex 20860 6.82567 12.4045 -4.37128 Vertex 20861 7.47688 13.2423 -2.8679 Vertex 20862 7.96754 13.1546 -1.39348 Vertex 20863 8.19843 12.7179 -0.090175 Vertex 20864 8.37189 11.7183 0.89135 Vertex 20865 8.31247 10.1924 1.44298 Vertex 20866 8.00029 8.57959 1.29785 Vertex 20867 7.5823 7.35459 0.659071 Vertex 20868 7.01429 6.48639 -0.58694 Vertex 20869 6.36452 6.25319 -2.37306 Vertex 20870 5.91849 6.84527 -3.95685 Vertex 20871 5.74624 7.94026 -4.98016 Vertex 20872 5.7881 9.32409 -5.51555 Vertex 20873 6.08283 10.9383 -5.42202 Vertex 20874 6.68223 12.5344 -4.43026 Vertex 20875 7.36109 13.4078 -2.86303 Vertex 20876 7.87258 13.3163 -1.326 Vertex 20877 8.0781 12.8008 -0.003111 Vertex 20878 8.25517 11.7804 0.998822 Vertex 20879 8.19452 10.2228 1.56192 Vertex 20880 7.87585 8.57644 1.41377 Vertex 20881 7.45094 7.32908 0.765407 Vertex 20882 6.87112 6.44283 -0.506511 Vertex 20883 6.20607 6.20168 -2.33346 Vertex 20884 5.75076 6.80607 -3.95017 Vertex 20885 5.57493 7.92383 -4.99477 Vertex 20886 5.61766 9.33642 -5.54129 Vertex 20887 5.91852 10.9841 -5.44581 Vertex 20888 6.53039 12.6135 -4.43343 Vertex 20889 7.22336 13.505 -2.83362 Vertex 20890 7.74548 13.4116 -1.26463 Vertex 20891 3.21665 13.1333 -4.43553 Vertex 20892 3.30668 13.1964 -4.67433 Vertex 20893 3.45151 13.1059 -4.91333 Vertex 20894 3.53053 12.912 -5.03854 Vertex 20895 4.96965 13.6666 0.76161 Vertex 20896 5.29362 14.5626 -0.742512 Vertex 20897 4.92208 14.5653 -2.73627 Vertex 20898 3.89373 13.6983 -4.07132 Vertex 20899 1.53299 13.0508 -4.48587 Vertex 20900 0.629443 6.80548 4.69403 Vertex 20901 1.651 7.33403 4.72185 Vertex 20902 2.74455 9.00838 4.04523 Vertex 20903 3.94162 11.0591 2.70364 Vertex 20904 4.58249 12.5397 1.753 Vertex 20905 4.24633 10.9566 2.95752 Vertex 20906 3.01284 8.87713 4.32362 Vertex 20907 5.49912 14.7024 -0.716162 Vertex 20908 5.16352 13.768 0.843783 Vertex 20909 4.75683 12.6208 1.87827 Vertex 20910 4.08496 11.1236 2.92791 Vertex 20911 2.87271 9.04589 4.24104 Vertex 20912 1.72081 7.31496 4.95904 Vertex 20913 0.65772 6.77809 4.93002 Vertex 20914 5.34188 13.6007 0.787795 Vertex 20915 4.92951 12.4531 1.86316 Vertex 20916 1.83771 7.13993 5.07084 Vertex 20917 0.711248 6.59895 5.04217 Vertex 20918 1.56846 13.151 -4.72689 Vertex 20919 4.01862 13.8087 -4.24487 Vertex 20920 5.0975 14.7309 -2.79599 Vertex 20921 5.79509 14.3737 -0.852589 Vertex 20922 5.46252 14.451 -2.91393 Vertex 20923 4.41376 13.5607 -4.49854 Vertex 20924 1.58035 12.7894 -5.13085 Vertex 20925 5.39297 13.3937 0.654191 Vertex 20926 5.70541 14.5699 -0.781287 Vertex 20927 5.30519 14.6406 -2.90241 Vertex 20928 4.22522 13.7351 -4.43946 Vertex 20929 1.59839 13.0299 -4.97417 Vertex 20930 0.771698 6.39654 5.00218 Vertex 20931 1.95249 6.93881 5.03138 Vertex 20932 3.10245 8.67156 4.26944 Vertex 20933 4.31794 10.7482 2.86928 Vertex 20934 4.99309 12.2458 1.74827 Vertex 20935 7.4038 12.9112 0.185411 Vertex 20936 7.22417 13.6278 -1.17828 Vertex 20937 6.74524 13.71 -2.87283 Vertex 20938 5.94083 12.7878 -4.49456 Vertex 20939 5.18464 11.157 -5.4725 Vertex 20940 5.22279 12.1145 1.58846 Vertex 20941 6.27612 14.0592 -0.997141 Vertex 20942 0.839028 6.71511 -5.9162 Vertex 20943 2.66939 6.71095 -5.61094 Vertex 20944 5.41093 6.09846 -3.87111 Vertex 20945 6.05962 5.79603 -2.33854 Vertex 20946 3.9688 5.04581 -4.67403 Vertex 20947 4.72168 9.27476 -5.66313 Vertex 20948 4.37759 8.57649 3.95847 Vertex 20949 4.8003 10.6262 2.62326 Vertex 20950 7.13525 5.98334 1.45257 Vertex 20951 6.92115 5.77422 3.3119 Vertex 20952 5.83736 5.70275 4.42338 Vertex 20953 4.13518 5.73702 4.97745 Vertex 20954 2.38518 5.81303 5.02873 Vertex 20955 0.788 5.91017 4.9384 Vertex 20956 7.37637 7.11973 1.70231 Vertex 20957 7.04093 6.82116 3.24763 Vertex 20958 5.93029 6.76374 4.27176 Vertex 20959 4.20938 6.79725 4.86114 Vertex 20960 2.63333 6.83434 5.01252 Vertex 20961 6.37817 4.59025 -0.897268 Vertex 20962 6.32226 10.7879 -4.54838 Vertex 20963 0.73303 4.86332 4.86883 Vertex 20964 5.67993 4.91049 4.22526 Vertex 20965 5.84604 8.54717 3.43808 Vertex 20966 5.75367 10.5522 2.26985 Vertex 20967 7.5067 8.54766 1.86445 Vertex 20968 6.54111 5.04425 -0.772035 Vertex 20969 6.71182 4.96109 3.08012 Vertex 20970 4.10087 4.95773 4.81769 Vertex 20971 5.83455 5.04448 -2.50961 Vertex 20972 4.34432 4.6092 -4.1527 Vertex 20973 5.60664 4.58174 -2.68033 Vertex 20974 2.60231 5.05218 -5.21437 Vertex 20975 4.94501 13.2176 -4.53188 Vertex 20976 7.54523 10.2882 1.6668 Vertex 20977 7.51834 11.8021 1.12171 Vertex 20978 6.88792 5.0314 1.18969 Vertex 20979 6.50125 4.55792 2.82016 Vertex 20980 2.49205 4.71789 4.84412 Vertex 20981 0.76511 5.24137 4.94453 Vertex 20982 2.39768 5.09749 4.98174 Vertex 20983 6.86178 8.51768 2.72489 Vertex 20984 6.66865 4.61394 0.935092 Vertex 20985 6.17306 13.1416 0.442948 Vertex 20986 6.58776 10.4284 1.92322 Vertex 20987 6.72468 5.91685 -0.556203 Vertex 20988 4.81001 5.04426 -3.98097 Vertex 20989 2.98038 9.39655 -5.863 Vertex 20990 5.91343 14.1283 -2.91224 Vertex 20991 1.36799 11.8988 -5.43976 Vertex 20992 0.762365 5.05616 -5.66807 Vertex 20993 1.03667 9.59328 -5.94484 Vertex 20994 -2.54773 4.62678 -5.10205 Vertex 20995 -0.722052 4.63396 -5.57799 Vertex 20996 -4.08831 4.56161 4.57036 Vertex 20997 -5.50028 4.5073 3.97376 Vertex 20998 -8.12115 12.359 -0.332699 Vertex 20999 -8.27346 11.4814 0.529121 Vertex 21000 -8.22128 10.1416 1.01347 Vertex 21001 -7.94717 8.72546 0.886046 Vertex 21002 -7.56979 7.63165 0.303495 Vertex 21003 -7.07105 6.86933 -0.790556 Vertex 21004 -6.51089 6.68278 -2.33718 Vertex 21005 -6.11926 7.20265 -3.72781 Vertex 21006 -5.96802 8.1641 -4.62632 Vertex 21007 -6.00477 9.37917 -5.09641 Vertex 21008 -6.26356 10.7965 -5.01429 Vertex 21009 -6.78986 12.1979 -4.14348 Vertex 21010 -7.38593 12.9648 -2.76739 Vertex 21011 -7.83504 12.8844 -1.41781 Vertex 21012 -8.26313 12.4501 -0.298646 Vertex 21013 -8.42195 11.535 0.599965 Vertex 21014 -8.36754 10.138 1.105 Vertex 21015 -8.08173 8.66138 0.972128 Vertex 21016 -7.69186 7.52725 0.372295 Vertex 21017 -7.17183 6.73239 -0.76846 Vertex 21018 -6.58413 6.5315 -2.3887 Vertex 21019 -6.17578 7.07356 -3.83869 Vertex 21020 -6.01808 8.07606 -4.77556 Vertex 21021 -6.05641 9.34299 -5.26573 Vertex 21022 -6.32624 10.8208 -5.18009 Vertex 21023 -6.875 12.2821 -4.27211 Vertex 21024 -7.49652 13.0817 -2.83727 Vertex 21025 -7.96481 12.9979 -1.43008 Vertex 21026 -8.28011 12.5806 -0.207995 Vertex 21027 -8.44651 11.6217 0.733546 Vertex 21028 -8.3895 10.1579 1.2627 Vertex 21029 -8.09004 8.61082 1.12349 Vertex 21030 -7.68562 7.42964 0.503489 Vertex 21031 -7.14074 6.5968 -0.691762 Vertex 21032 -6.52091 6.37919 -2.39789 Vertex 21033 -6.09304 6.94714 -3.91715 Vertex 21034 -5.92781 7.99753 -4.89878 Vertex 21035 -5.96797 9.325 -5.41236 Vertex 21036 -6.25069 10.8734 -5.32264 Vertex 21037 -6.82567 12.4045 -4.37128 Vertex 21038 -7.47688 13.2423 -2.8679 Vertex 21039 -7.96754 13.1546 -1.39348 Vertex 21040 -8.19843 12.7179 -0.090175 Vertex 21041 -8.37189 11.7183 0.89135 Vertex 21042 -8.31247 10.1924 1.44298 Vertex 21043 -8.00029 8.57959 1.29785 Vertex 21044 -7.5823 7.35459 0.659071 Vertex 21045 -7.01429 6.48639 -0.586941 Vertex 21046 -6.36452 6.25319 -2.37306 Vertex 21047 -5.91849 6.84527 -3.95685 Vertex 21048 -5.74624 7.94026 -4.98016 Vertex 21049 -5.7881 9.32409 -5.51555 Vertex 21050 -6.08283 10.9383 -5.42202 Vertex 21051 -6.68223 12.5344 -4.43026 Vertex 21052 -7.36109 13.4078 -2.86303 Vertex 21053 -7.87259 13.3163 -1.326 Vertex 21054 -8.0781 12.8008 -0.003111 Vertex 21055 -8.25517 11.7805 0.998822 Vertex 21056 -8.19451 10.2228 1.56192 Vertex 21057 -7.87585 8.57644 1.41377 Vertex 21058 -7.45093 7.32909 0.765407 Vertex 21059 -6.87111 6.44283 -0.506511 Vertex 21060 -6.20607 6.20168 -2.33347 Vertex 21061 -5.75076 6.80607 -3.95017 Vertex 21062 -5.57493 7.92383 -4.99477 Vertex 21063 -5.61766 9.33642 -5.54129 Vertex 21064 -5.91852 10.9841 -5.44581 Vertex 21065 -6.53039 12.6135 -4.43343 Vertex 21066 -7.22336 13.505 -2.83362 Vertex 21067 -7.74549 13.4116 -1.26463 Vertex 21068 -3.21665 13.1333 -4.43553 Vertex 21069 -3.30668 13.1964 -4.67433 Vertex 21070 -3.45151 13.1059 -4.91333 Vertex 21071 -3.53053 12.912 -5.03854 Vertex 21072 -4.96965 13.6666 0.76161 Vertex 21073 -5.29362 14.5626 -0.742512 Vertex 21074 -4.92208 14.5653 -2.73627 Vertex 21075 -3.89373 13.6983 -4.07132 Vertex 21076 -1.53299 13.0507 -4.48587 Vertex 21077 -0.629443 6.80548 4.69403 Vertex 21078 -1.651 7.33403 4.72185 Vertex 21079 -2.74455 9.00838 4.04523 Vertex 21080 -3.94162 11.0591 2.70364 Vertex 21081 -4.58249 12.5397 1.753 Vertex 21082 -4.24633 10.9566 2.95752 Vertex 21083 -3.01284 8.87713 4.32362 Vertex 21084 -5.49912 14.7024 -0.716162 Vertex 21085 -5.16352 13.768 0.843783 Vertex 21086 -4.75683 12.6209 1.87827 Vertex 21087 -4.08496 11.1236 2.92791 Vertex 21088 -2.87271 9.04589 4.24104 Vertex 21089 -1.72081 7.31496 4.95904 Vertex 21090 -0.65772 6.77809 4.93002 Vertex 21091 -5.34188 13.6007 0.787795 Vertex 21092 -4.92951 12.4531 1.86316 Vertex 21093 -1.83771 7.13993 5.07084 Vertex 21094 -0.711248 6.59895 5.04217 Vertex 21095 -1.56846 13.151 -4.72689 Vertex 21096 -4.01862 13.8087 -4.24487 Vertex 21097 -5.0975 14.7309 -2.79599 Vertex 21098 -5.79509 14.3737 -0.852589 Vertex 21099 -5.46252 14.451 -2.91393 Vertex 21100 -4.41376 13.5607 -4.49854 Vertex 21101 -1.58035 12.7894 -5.13085 Vertex 21102 -5.39297 13.3937 0.654191 Vertex 21103 -5.70541 14.5699 -0.781287 Vertex 21104 -5.30519 14.6406 -2.90241 Vertex 21105 -4.22522 13.7351 -4.43946 Vertex 21106 -1.59839 13.0299 -4.97417 Vertex 21107 -0.771698 6.39654 5.00218 Vertex 21108 -1.95248 6.93881 5.03138 Vertex 21109 -3.10245 8.67156 4.26944 Vertex 21110 -4.31794 10.7482 2.86928 Vertex 21111 -4.99309 12.2458 1.74827 Vertex 21112 -7.40381 12.9112 0.185411 Vertex 21113 -7.22417 13.6278 -1.17828 Vertex 21114 -6.74524 13.71 -2.87283 Vertex 21115 -5.94083 12.7878 -4.49456 Vertex 21116 -5.18464 11.157 -5.47249 Vertex 21117 -5.22279 12.1146 1.58846 Vertex 21118 -6.27612 14.0592 -0.997141 Vertex 21119 -0.839028 6.71511 -5.9162 Vertex 21120 -2.66939 6.71095 -5.61095 Vertex 21121 -5.41093 6.09846 -3.87111 Vertex 21122 -6.05962 5.79603 -2.33854 Vertex 21123 -3.9688 5.04581 -4.67403 Vertex 21124 -4.72168 9.27476 -5.66313 Vertex 21125 -4.37759 8.57649 3.95847 Vertex 21126 -4.8003 10.6262 2.62326 Vertex 21127 -7.13525 5.98334 1.45257 Vertex 21128 -6.92115 5.77421 3.3119 Vertex 21129 -5.83736 5.70275 4.42338 Vertex 21130 -4.13518 5.73701 4.97745 Vertex 21131 -2.38518 5.81302 5.02873 Vertex 21132 -0.788 5.91017 4.9384 Vertex 21133 -7.37637 7.11973 1.70231 Vertex 21134 -7.04094 6.82116 3.24763 Vertex 21135 -5.93029 6.76374 4.27176 Vertex 21136 -4.20938 6.79725 4.86114 Vertex 21137 -2.63333 6.83434 5.01252 Vertex 21138 -6.37817 4.59025 -0.897268 Vertex 21139 -7.95336 12.1606 -0.437895 Vertex 21140 -0.73303 4.86332 4.86883 Vertex 21141 -5.67993 4.91049 4.22526 Vertex 21142 -5.84604 8.54717 3.43808 Vertex 21143 -5.75367 10.5522 2.26985 Vertex 21144 -7.50671 8.54766 1.86445 Vertex 21145 -6.54112 5.04425 -0.772035 Vertex 21146 -6.71182 4.96109 3.08012 Vertex 21147 -4.10086 4.95773 4.81769 Vertex 21148 -5.83455 5.04448 -2.50961 Vertex 21149 -4.34432 4.6092 -4.1527 Vertex 21150 -5.60664 4.58174 -2.68033 Vertex 21151 -2.60231 5.05218 -5.21437 Vertex 21152 -4.94501 13.2176 -4.53188 Vertex 21153 -7.54523 10.2882 1.6668 Vertex 21154 -7.51834 11.8021 1.12171 Vertex 21155 -6.88792 5.0314 1.18969 Vertex 21156 -6.50125 4.55791 2.82016 Vertex 21157 -2.49205 4.71789 4.84412 Vertex 21158 -0.76511 5.24137 4.94453 Vertex 21159 -2.39768 5.09749 4.98174 Vertex 21160 -6.86178 8.51768 2.72489 Vertex 21161 -6.66865 4.61394 0.935092 Vertex 21162 -6.17306 13.1416 0.442948 Vertex 21163 -6.58776 10.4284 1.92322 Vertex 21164 -6.72468 5.91685 -0.556203 Vertex 21165 -4.81001 5.04426 -3.98097 Vertex 21166 -2.98038 9.39655 -5.863 Vertex 21167 -5.91343 14.1284 -2.91224 Vertex 21168 -1.36799 11.8988 -5.43976 Vertex 21169 -0.762365 5.05616 -5.66807 Vertex 21170 -1.03667 9.59328 -5.94484 Vertex 21171 1.8867 -22.2854 -2.49395 Vertex 21172 3.05563 -22.2914 -0.911257 Vertex 21173 8.5405 -22.155 -4.22906 Vertex 21174 7.65423 -22.1394 -5.97783 Vertex 21175 4.73466 -22.3053 -0.281314 Vertex 21176 6.80251 -22.3071 -0.55043 Vertex 21177 7.14353 -25.6278 -5.36159 Vertex 21178 7.77107 -25.6327 -4.11867 Vertex 21179 7.51284 -25.6945 -2.31262 Vertex 21180 6.33798 -25.759 -1.07085 Vertex 21181 4.64758 -25.7616 -0.863866 Vertex 21182 2.95267 -25.7542 -1.42987 Vertex 21183 2.10936 -25.7502 -2.60856 Vertex 21184 2.20962 -25.7738 -3.95889 Vertex 21185 3.20616 -25.7871 -5.26425 Vertex 21186 4.77385 -25.7369 -6.04787 Vertex 21187 6.17734 -25.6608 -5.95488 Vertex 21188 6.31279 -23.9166 -6.15905 Vertex 21189 4.7461 -23.9993 -6.26007 Vertex 21190 3.03873 -24.0538 -5.40881 Vertex 21191 2.0492 -24.0394 -3.99077 Vertex 21192 2.07351 -24.0137 -2.52387 Vertex 21193 3.00987 -24.0182 -1.24344 Vertex 21194 4.7472 -24.0262 -0.628579 Vertex 21195 6.5163 -24.0233 -0.853429 Vertex 21196 7.80358 -23.9533 -2.20239 Vertex 21197 8.09183 -23.8861 -4.16434 Vertex 21198 7.39133 -23.8808 -5.51455 Vertex 21199 3.15764 -25.9698 -5.34796 Vertex 21200 4.75525 -25.9223 -6.15337 Vertex 21201 6.19195 -25.8465 -6.04937 Vertex 21202 7.21564 -25.8151 -5.42506 Vertex 21203 7.85992 -25.8214 -4.12692 Vertex 21204 7.58498 -25.8827 -2.2578 Vertex 21205 6.36384 -25.9448 -0.97699 Vertex 21206 4.61652 -25.943 -0.764205 Vertex 21207 2.86231 -25.9301 -1.36214 Vertex 21208 1.99181 -25.9255 -2.60454 Vertex 21209 2.10854 -25.9524 -4.00544 Vertex 21210 2.02419 -27.4944 -2.68106 Vertex 21211 2.81061 -27.4993 -1.53065 Vertex 21212 4.52644 -27.5122 -0.976954 Vertex 21213 6.20255 -27.5148 -1.17364 Vertex 21214 7.32179 -27.4588 -2.35753 Vertex 21215 7.56946 -27.4029 -4.08558 Vertex 21216 6.99133 -27.3964 -5.28662 Vertex 21217 6.06939 -27.4244 -5.86468 Vertex 21218 4.78032 -27.4934 -5.96151 Vertex 21219 3.30898 -27.5365 -5.21729 Vertex 21220 2.25352 -27.5197 -3.97662 Vertex 21221 2.08017 -25.6191 -4.01037 Vertex 21222 2.0015 -25.5934 -2.55942 Vertex 21223 2.87683 -25.599 -1.31253 Vertex 21224 4.62113 -25.6103 -0.727929 Vertex 21225 6.39754 -25.6132 -0.935325 Vertex 21226 7.64028 -25.5532 -2.26308 Vertex 21227 7.92543 -25.4935 -4.14705 Vertex 21228 7.25926 -25.4845 -5.44433 Vertex 21229 6.20925 -25.5133 -6.09338 Vertex 21230 4.74879 -25.5892 -6.19385 Vertex 21231 3.12859 -25.6375 -5.38064 Vertex 21232 4.72639 -24.1847 -6.36538 Vertex 21233 6.31891 -24.1017 -6.2586 Vertex 21234 7.46007 -24.0689 -5.56826 Vertex 21235 8.18557 -24.0771 -4.18407 Vertex 21236 7.87591 -24.1424 -2.17384 Vertex 21237 6.5418 -24.2091 -0.75945 Vertex 21238 4.70166 -24.2074 -0.537721 Vertex 21239 2.92303 -24.1968 -1.16194 Vertex 21240 1.9736 -24.208 -2.49128 Vertex 21241 1.95166 -24.235 -4.03634 Vertex 21242 2.99335 -24.2374 -5.49742 Vertex 21243 1.94907 -23.8382 -2.48644 Vertex 21244 2.93078 -23.86 -1.13581 Vertex 21245 4.73235 -23.8748 -0.484943 Vertex 21246 6.57554 -23.8775 -0.717803 Vertex 21247 7.93041 -23.8111 -2.12564 Vertex 21248 8.24059 -23.7447 -4.18162 Vertex 21249 7.50857 -23.7366 -5.60913 Vertex 21250 6.3506 -23.7695 -6.29468 Vertex 21251 4.71986 -23.8515 -6.40728 Vertex 21252 2.95269 -23.9036 -5.51215 Vertex 21253 1.91022 -23.8682 -4.0236 Vertex 21254 2.79021 -22.3317 -5.70618 Vertex 21255 4.6658 -22.2668 -6.76379 Vertex 21256 6.43782 -22.1751 -6.68009 Vertex 21257 8.19015 -22.2334 -2.04544 Vertex 21258 1.76626 -22.3169 -4.05264 Vertex 21259 6.15695 -26.6706 -6.06915 Vertex 21260 6.28311 -24.8264 -6.29501 Vertex 21261 6.51221 -24.9312 -0.732636 Vertex 21262 7.85797 -24.8717 -2.17942 Vertex 21263 8.17955 -24.8112 -4.18961 Vertex 21264 7.45191 -24.7991 -5.57453 Vertex 21265 7.70025 -22.9439 -5.85322 Vertex 21266 8.49807 -22.9577 -4.26722 Vertex 21267 8.16249 -23.0298 -2.01646 Vertex 21268 6.7 -23.0968 -0.502652 Vertex 21269 4.6254 -24.9238 -0.519428 Vertex 21270 2.81858 -24.9097 -1.13781 Vertex 21271 1.88266 -24.9035 -2.48427 Vertex 21272 1.90142 -24.9316 -4.07166 Vertex 21273 2.9995 -24.9545 -5.54152 Vertex 21274 4.7152 -24.9058 -6.40525 Vertex 21275 4.74676 -26.7424 -6.18134 Vertex 21276 3.17023 -26.7851 -5.37889 Vertex 21277 2.06596 -26.7635 -4.04035 Vertex 21278 1.88732 -26.7335 -2.63138 Vertex 21279 2.75107 -26.7396 -1.36244 Vertex 21280 4.54905 -26.7585 -0.750521 Vertex 21281 4.66913 -23.0621 -6.71373 Vertex 21282 6.42044 -22.9757 -6.60486 Vertex 21283 7.19685 -26.643 -5.43244 Vertex 21284 7.83097 -26.6515 -4.11841 Vertex 21285 7.55047 -26.7095 -2.24334 Vertex 21286 6.32446 -26.7656 -0.962656 Vertex 21287 4.7539 -23.0892 -0.255331 Vertex 21288 2.87256 -23.0684 -0.960144 Vertex 21289 1.8136 -23.0618 -2.41858 Vertex 21290 1.71477 -23.0966 -4.06851 Vertex 21291 2.79998 -23.1182 -5.69993 Vertex 21292 -1.8867 -22.2854 -2.49394 Vertex 21293 -3.05563 -22.2914 -0.911257 Vertex 21294 -8.5405 -22.155 -4.22906 Vertex 21295 -7.65423 -22.1394 -5.97783 Vertex 21296 -4.73466 -22.3053 -0.281314 Vertex 21297 -6.80251 -22.3071 -0.550429 Vertex 21298 -7.14353 -25.6278 -5.36159 Vertex 21299 -7.77107 -25.6327 -4.11867 Vertex 21300 -7.51284 -25.6945 -2.31262 Vertex 21301 -6.33798 -25.759 -1.07085 Vertex 21302 -4.64758 -25.7616 -0.863865 Vertex 21303 -2.95268 -25.7542 -1.42987 Vertex 21304 -2.10936 -25.7502 -2.60856 Vertex 21305 -2.20962 -25.7738 -3.95889 Vertex 21306 -3.20615 -25.7871 -5.26425 Vertex 21307 -4.77385 -25.7369 -6.04787 Vertex 21308 -6.17734 -25.6608 -5.95488 Vertex 21309 -6.31279 -23.9166 -6.15905 Vertex 21310 -4.7461 -23.9993 -6.26007 Vertex 21311 -3.03873 -24.0538 -5.40881 Vertex 21312 -2.0492 -24.0394 -3.99077 Vertex 21313 -2.07351 -24.0137 -2.52387 Vertex 21314 -3.00987 -24.0182 -1.24344 Vertex 21315 -4.7472 -24.0262 -0.628579 Vertex 21316 -6.51629 -24.0233 -0.853429 Vertex 21317 -7.80358 -23.9533 -2.20239 Vertex 21318 -8.09183 -23.8861 -4.16434 Vertex 21319 -7.39133 -23.8808 -5.51455 Vertex 21320 -3.15764 -25.9698 -5.34796 Vertex 21321 -4.75525 -25.9223 -6.15337 Vertex 21322 -6.19195 -25.8465 -6.04938 Vertex 21323 -7.21563 -25.8151 -5.42506 Vertex 21324 -7.85992 -25.8214 -4.12692 Vertex 21325 -7.58498 -25.8827 -2.2578 Vertex 21326 -6.36384 -25.9449 -0.97699 Vertex 21327 -4.61652 -25.943 -0.764205 Vertex 21328 -2.86231 -25.9301 -1.36214 Vertex 21329 -1.99181 -25.9254 -2.60454 Vertex 21330 -2.10854 -25.9524 -4.00544 Vertex 21331 -2.02419 -27.4944 -2.68106 Vertex 21332 -2.81061 -27.4993 -1.53065 Vertex 21333 -4.52644 -27.5122 -0.976954 Vertex 21334 -6.20255 -27.5148 -1.17364 Vertex 21335 -7.32179 -27.4588 -2.35753 Vertex 21336 -7.56946 -27.4029 -4.08558 Vertex 21337 -6.99133 -27.3964 -5.28661 Vertex 21338 -6.06939 -27.4243 -5.86468 Vertex 21339 -4.78032 -27.4933 -5.96151 Vertex 21340 -3.30897 -27.5365 -5.21729 Vertex 21341 -2.25352 -27.5197 -3.97663 Vertex 21342 -2.08017 -25.6191 -4.01037 Vertex 21343 -2.0015 -25.5934 -2.55942 Vertex 21344 -2.87682 -25.5991 -1.31253 Vertex 21345 -4.62113 -25.6103 -0.727929 Vertex 21346 -6.39754 -25.6132 -0.935325 Vertex 21347 -7.64028 -25.5532 -2.26308 Vertex 21348 -7.92543 -25.4935 -4.14705 Vertex 21349 -7.25926 -25.4845 -5.44433 Vertex 21350 -6.20925 -25.5133 -6.09338 Vertex 21351 -4.74879 -25.5892 -6.19385 Vertex 21352 -3.12859 -25.6375 -5.38063 Vertex 21353 -4.72639 -24.1847 -6.36538 Vertex 21354 -6.31892 -24.1017 -6.2586 Vertex 21355 -7.46008 -24.0689 -5.56827 Vertex 21356 -8.18557 -24.0771 -4.18407 Vertex 21357 -7.87591 -24.1424 -2.17384 Vertex 21358 -6.5418 -24.2091 -0.75945 Vertex 21359 -4.70166 -24.2074 -0.537721 Vertex 21360 -2.92303 -24.1968 -1.16194 Vertex 21361 -1.9736 -24.208 -2.49128 Vertex 21362 -1.95166 -24.235 -4.03634 Vertex 21363 -2.99335 -24.2374 -5.49742 Vertex 21364 -1.94908 -23.8382 -2.48644 Vertex 21365 -2.93078 -23.86 -1.13581 Vertex 21366 -4.73235 -23.8748 -0.484943 Vertex 21367 -6.57553 -23.8775 -0.717803 Vertex 21368 -7.93041 -23.8111 -2.12564 Vertex 21369 -8.24059 -23.7447 -4.18162 Vertex 21370 -7.50857 -23.7366 -5.60913 Vertex 21371 -6.3506 -23.7695 -6.29468 Vertex 21372 -4.71986 -23.8515 -6.40728 Vertex 21373 -2.95269 -23.9036 -5.51215 Vertex 21374 -1.91022 -23.8682 -4.0236 Vertex 21375 -2.79021 -22.3317 -5.70617 Vertex 21376 -4.6658 -22.2668 -6.76379 Vertex 21377 -6.43782 -22.1751 -6.68009 Vertex 21378 -8.19015 -22.2334 -2.04544 Vertex 21379 -1.76626 -22.3169 -4.05263 Vertex 21380 -6.15694 -26.6706 -6.06915 Vertex 21381 -6.2831 -24.8263 -6.29501 Vertex 21382 -6.51221 -24.9312 -0.732636 Vertex 21383 -7.85797 -24.8717 -2.17942 Vertex 21384 -8.17955 -24.8112 -4.18962 Vertex 21385 -7.45191 -24.7991 -5.57453 Vertex 21386 -7.70025 -22.9439 -5.85322 Vertex 21387 -8.49807 -22.9576 -4.26722 Vertex 21388 -8.16249 -23.0298 -2.01646 Vertex 21389 -6.70001 -23.0968 -0.502652 Vertex 21390 -4.6254 -24.9239 -0.519428 Vertex 21391 -2.81858 -24.9097 -1.13781 Vertex 21392 -1.88266 -24.9035 -2.48426 Vertex 21393 -1.90142 -24.9316 -4.07166 Vertex 21394 -2.9995 -24.9545 -5.54152 Vertex 21395 -4.7152 -24.9058 -6.40525 Vertex 21396 -4.74676 -26.7424 -6.18134 Vertex 21397 -3.17023 -26.7851 -5.3789 Vertex 21398 -2.06596 -26.7635 -4.04035 Vertex 21399 -1.88732 -26.7335 -2.63138 Vertex 21400 -2.75107 -26.7396 -1.36244 Vertex 21401 -4.54905 -26.7585 -0.750521 Vertex 21402 -4.66913 -23.0621 -6.71373 Vertex 21403 -6.42045 -22.9757 -6.60486 Vertex 21404 -7.19685 -26.643 -5.43244 Vertex 21405 -7.83097 -26.6515 -4.11841 Vertex 21406 -7.55047 -26.7095 -2.24334 Vertex 21407 -6.32446 -26.7656 -0.962656 Vertex 21408 -4.7539 -23.0892 -0.255331 Vertex 21409 -2.87256 -23.0684 -0.960145 Vertex 21410 -1.8136 -23.0618 -2.41858 Vertex 21411 -1.71477 -23.0967 -4.06851 Vertex 21412 -2.79998 -23.1183 -5.69993 Face 1 3202 2553 3304 {rgb=(.5 .4 .2)} Face 2 2553 2736 3304 {rgb=(.5 .4 .2)} Face 3 1465 1386 1382 {rgb=(.5 .4 .2)} Face 4 1386 1327 1382 {rgb=(.5 .4 .2)} Face 5 1012 1056 994 {rgb=(.5 .4 .2)} Face 6 1056 1053 994 {rgb=(.5 .4 .2)} Face 7 7738 8492 7842 {rgb=(.5 .4 .2)} Face 8 7738 8307 8492 {rgb=(.5 .4 .2)} Face 9 9663 9659 9580 {rgb=(.5 .4 .2)} Face 10 9663 9718 9659 {rgb=(.5 .4 .2)} Face 11 10051 9989 10033 {rgb=(.5 .4 .2)} Face 12 10051 9992 9989 {rgb=(.5 .4 .2)} Face 13 2201 3016 1646 {rgb=(.7 .6 .4)} Face 14 1204 1184 1336 {rgb=(.7 .6 .4)} Face 15 1471 1511 1459 {rgb=(.7 .6 .4)} Face 16 3012 1670 1850 {rgb=(.7 .6 .4)} Face 17 1481 1693 1692 {rgb=(.7 .6 .4)} Face 18 1336 1488 1471 {rgb=(.7 .6 .4)} Face 19 1471 1204 1336 {rgb=(.7 .6 .4)} Face 20 1810 1752 1713 {rgb=(.7 .6 .4)} Face 21 1677 1689 1700 {rgb=(.7 .6 .4)} Face 22 1363 1298 1324 {rgb=(.7 .6 .4)} Face 23 3948 3890 3606 {rgb=(.7 .6 .4)} Face 24 1236 1196 1232 {rgb=(.7 .6 .4)} Face 25 1338 1321 1369 {rgb=(.7 .6 .4)} Face 26 1528 1513 1572 {rgb=(.7 .6 .4)} Face 27 1572 1549 1528 {rgb=(.7 .6 .4)} Face 28 1369 1351 1338 {rgb=(.7 .6 .4)} Face 29 1232 1237 1236 {rgb=(.7 .6 .4)} Face 30 1324 1346 1363 {rgb=(.7 .6 .4)} Face 31 3606 3764 3948 {rgb=(.7 .6 .4)} Face 32 8841 9391 9498 {rgb=(.7 .6 .4)} Face 33 9709 9861 9841 {rgb=(.7 .6 .4)} Face 34 9586 9534 9574 {rgb=(.7 .6 .4)} Face 35 9195 9375 8024 {rgb=(.7 .6 .4)} Face 36 9564 9575 9458 {rgb=(.7 .6 .4)} Face 37 9574 9557 9709 {rgb=(.7 .6 .4)} Face 38 9709 9841 9574 {rgb=(.7 .6 .4)} Face 39 9332 9293 9235 {rgb=(.7 .6 .4)} Face 40 9345 9356 9368 {rgb=(.7 .6 .4)} Face 41 9721 9747 9682 {rgb=(.7 .6 .4)} Face 42 7436 7153 7092 {rgb=(.7 .6 .4)} Face 43 9813 9849 9809 {rgb=(.7 .6 .4)} Face 44 9676 9724 9707 {rgb=(.7 .6 .4)} Face 45 9473 9532 9517 {rgb=(.7 .6 .4)} Face 46 9517 9496 9473 {rgb=(.7 .6 .4)} Face 47 9707 9694 9676 {rgb=(.7 .6 .4)} Face 48 9809 9808 9813 {rgb=(.7 .6 .4)} Face 49 9682 9699 9721 {rgb=(.7 .6 .4)} Face 50 7092 7280 7436 {rgb=(.7 .6 .4)} Face 51 4670 5449 4315 {rgb=(.7 .7 .8)} Face 52 2740 2291 2197 {rgb=(.7 .7 .8)} Face 53 2197 2291 1904 {rgb=(.7 .7 .8)} Face 54 5491 4384 3796 {rgb=(.7 .7 .8)} Face 55 5449 4398 4336 {rgb=(.7 .7 .8)} Face 56 1748 3715 3796 {rgb=(.7 .7 .8)} Face 57 3501 2393 3819 {rgb=(.7 .7 .8)} Face 58 1034 1063 1106 {rgb=(.7 .7 .8)} Face 59 4384 3629 3796 {rgb=(.7 .7 .8)} Face 60 1640 1490 1340 {rgb=(.7 .7 .8)} Face 61 1101 944 792 {rgb=(.7 .7 .8)} Face 62 1205 1295 1246 {rgb=(.7 .7 .8)} Face 63 1777 1700 1785 {rgb=(.7 .7 .8)} Face 64 1777 1698 1700 {rgb=(.7 .7 .8)} Face 65 1581 1564 1558 {rgb=(.7 .7 .8)} Face 66 1558 1564 1541 {rgb=(.7 .7 .8)} Face 67 2385 2429 2420 {rgb=(.7 .7 .8)} Face 68 2420 2429 1772 {rgb=(.7 .7 .8)} Face 69 1368 1361 1246 {rgb=(.7 .7 .8)} Face 70 1537 1605 1548 {rgb=(.7 .7 .8)} Face 71 1548 1605 1575 {rgb=(.7 .7 .8)} Face 72 1277 1361 1368 {rgb=(.7 .7 .8)} Face 73 1216 1195 1225 {rgb=(.7 .7 .8)} Face 74 1225 1195 1222 {rgb=(.7 .7 .8)} Face 75 1324 1315 1346 {rgb=(.7 .7 .8)} Face 76 1538 1506 1523 {rgb=(.7 .7 .8)} Face 77 1523 1506 1505 {rgb=(.7 .7 .8)} Face 78 1275 1284 1262 {rgb=(.7 .7 .8)} Face 79 1275 1272 1284 {rgb=(.7 .7 .8)} Face 80 1363 1346 1315 {rgb=(.7 .7 .8)} Face 81 3640 3554 3752 {rgb=(.7 .7 .8)} Face 82 3752 3724 3640 {rgb=(.7 .7 .8)} Face 83 1320 1265 1269 {rgb=(.7 .7 .8)} Face 84 1269 1287 1320 {rgb=(.7 .7 .8)} Face 85 996 1034 979 {rgb=(.7 .7 .8)} Face 86 708 675 939 {rgb=(.7 .7 .8)} Face 87 1030 978 1161 {rgb=(.7 .7 .8)} Face 88 1755 1691 1704 {rgb=(.7 .7 .8)} Face 89 2267 2723 2683 {rgb=(.7 .7 .8)} Face 90 5006 5490 5299 {rgb=(.7 .7 .8)} Face 91 4453 3659 4686 {rgb=(.7 .7 .8)} Face 92 5006 5156 5490 {rgb=(.7 .7 .8)} Face 93 4453 4723 3659 {rgb=(.7 .7 .8)} Face 94 2267 2066 2723 {rgb=(.7 .7 .8)} Face 95 1161 1031 1030 {rgb=(.7 .7 .8)} Face 96 939 679 708 {rgb=(.7 .7 .8)} Face 97 996 975 1034 {rgb=(.7 .7 .8)} Face 98 1755 2179 1691 {rgb=(.7 .7 .8)} Face 99 1904 2291 2374 {rgb=(.7 .7 .8)} Face 100 4115 4315 4281 {rgb=(.7 .7 .8)} Face 101 3819 4115 4281 {rgb=(.7 .7 .8)} Face 102 4200 4398 4426 {rgb=(.7 .7 .8)} Face 103 1512 1539 1544 {rgb=(.7 .7 .8)} Face 104 1259 1234 1113 {rgb=(.7 .7 .8)} Face 105 1544 1486 1512 {rgb=(.7 .7 .8)} Face 106 1113 1245 1259 {rgb=(.7 .7 .8)} Face 107 1580 1485 1609 {rgb=(.7 .7 .8)} Face 108 3860 3824 3565 {rgb=(.7 .7 .8)} Face 109 4281 5449 4336 {rgb=(.7 .7 .8)} Face 110 4426 4398 5449 {rgb=(.7 .7 .8)} Face 111 4281 4315 5449 {rgb=(.7 .7 .8)} Face 112 5449 4780 4426 {rgb=(.7 .7 .8)} Face 113 3860 4107 3824 {rgb=(.7 .7 .8)} Face 114 1580 1531 1485 {rgb=(.7 .7 .8)} Face 115 3994 4338 3926 {rgb=(.7 .7 .8)} Face 116 4196 4338 3994 {rgb=(.7 .7 .8)} Face 117 1286 1334 1227 {rgb=(.7 .7 .8)} Face 118 1286 1345 1334 {rgb=(.7 .7 .8)} Face 119 1245 1113 1106 {rgb=(.7 .7 .8)} Face 120 1106 1113 1034 {rgb=(.7 .7 .8)} Face 121 6729 5596 6376 {rgb=(.7 .7 .8)} Face 122 8845 8753 8303 {rgb=(.7 .7 .8)} Face 123 8845 9535 9560 {rgb=(.7 .7 .8)} Face 124 7250 6657 5491 {rgb=(.7 .7 .8)} Face 125 6707 6642 5596 {rgb=(.7 .7 .8)} Face 126 7250 7328 9297 {rgb=(.7 .7 .8)} Face 127 7225 8651 7544 {rgb=(.7 .7 .8)} Face 128 9939 9982 10011 {rgb=(.7 .7 .8)} Face 129 7250 7416 6657 {rgb=(.7 .7 .8)} Face 130 9671 9762 9810 {rgb=(.7 .7 .8)} Face 131 10253 10101 9944 {rgb=(.7 .7 .8)} Face 132 9799 9750 9840 {rgb=(.7 .7 .8)} Face 133 9260 9345 9268 {rgb=(.7 .7 .8)} Face 134 9345 9347 9268 {rgb=(.7 .7 .8)} Face 135 9487 9481 9464 {rgb=(.7 .7 .8)} Face 136 9504 9481 9487 {rgb=(.7 .7 .8)} Face 137 8625 8617 8660 {rgb=(.7 .7 .8)} Face 138 9273 8617 8625 {rgb=(.7 .7 .8)} Face 139 9799 9686 9677 {rgb=(.7 .7 .8)} Face 140 9497 9442 9508 {rgb=(.7 .7 .8)} Face 141 9470 9442 9497 {rgb=(.7 .7 .8)} Face 142 9677 9686 9768 {rgb=(.7 .7 .8)} Face 143 9820 9850 9829 {rgb=(.7 .7 .8)} Face 144 9823 9850 9820 {rgb=(.7 .7 .8)} Face 145 9699 9730 9721 {rgb=(.7 .7 .8)} Face 146 9522 9539 9507 {rgb=(.7 .7 .8)} Face 147 9540 9539 9522 {rgb=(.7 .7 .8)} Face 148 9783 9761 9770 {rgb=(.7 .7 .8)} Face 149 9761 9773 9770 {rgb=(.7 .7 .8)} Face 150 9730 9699 9682 {rgb=(.7 .7 .8)} Face 151 7290 7487 7405 {rgb=(.7 .7 .8)} Face 152 7405 7318 7290 {rgb=(.7 .7 .8)} Face 153 9776 9780 9725 {rgb=(.7 .7 .8)} Face 154 9725 9758 9776 {rgb=(.7 .7 .8)} Face 155 10066 10011 10049 {rgb=(.7 .7 .8)} Face 156 10106 10370 10337 {rgb=(.7 .7 .8)} Face 157 9884 10067 10015 {rgb=(.7 .7 .8)} Face 158 9341 9354 9290 {rgb=(.7 .7 .8)} Face 159 8366 8320 8776 {rgb=(.7 .7 .8)} Face 160 5741 5490 6033 {rgb=(.7 .7 .8)} Face 161 6363 7385 6587 {rgb=(.7 .7 .8)} Face 162 5490 5890 6033 {rgb=(.7 .7 .8)} Face 163 7385 6324 6587 {rgb=(.7 .7 .8)} Face 164 8320 8979 8776 {rgb=(.7 .7 .8)} Face 165 10015 10014 9884 {rgb=(.7 .7 .8)} Face 166 10337 10366 10106 {rgb=(.7 .7 .8)} Face 167 10011 10070 10049 {rgb=(.7 .7 .8)} Face 168 9354 8865 9290 {rgb=(.7 .7 .8)} Face 169 8671 8753 9141 {rgb=(.7 .7 .8)} Face 170 6760 6729 6931 {rgb=(.7 .7 .8)} Face 171 6760 6931 7225 {rgb=(.7 .7 .8)} Face 172 6612 6642 6844 {rgb=(.7 .7 .8)} Face 173 9501 9506 9533 {rgb=(.7 .7 .8)} Face 174 9932 9811 9786 {rgb=(.7 .7 .8)} Face 175 9533 9559 9501 {rgb=(.7 .7 .8)} Face 176 9786 9800 9932 {rgb=(.7 .7 .8)} Face 177 9436 9560 9465 {rgb=(.7 .7 .8)} Face 178 7476 7217 7183 {rgb=(.7 .7 .8)} Face 179 6707 5596 6760 {rgb=(.7 .7 .8)} Face 180 5596 6642 6612 {rgb=(.7 .7 .8)} Face 181 5596 6729 6760 {rgb=(.7 .7 .8)} Face 182 6612 6265 5596 {rgb=(.7 .7 .8)} Face 183 7217 6938 7183 {rgb=(.7 .7 .8)} Face 184 9560 9514 9465 {rgb=(.7 .7 .8)} Face 185 7114 6704 7046 {rgb=(.7 .7 .8)} Face 186 7046 6704 6848 {rgb=(.7 .7 .8)} Face 187 9818 9711 9759 {rgb=(.7 .7 .8)} Face 188 9711 9700 9759 {rgb=(.7 .7 .8)} Face 189 9939 9932 9800 {rgb=(.7 .7 .8)} Face 190 10011 9932 9939 {rgb=(.7 .7 .8)} Face 191 1579 1625 1635 {rgb=(.3 .2 .3)} Face 192 2555 2115 1951 {rgb=(.3 .2 .3)} Face 193 1560 1579 1635 {rgb=(.3 .2 .3)} Face 194 1951 2318 2555 {rgb=(.3 .2 .3)} Face 195 1627 1633 1663 {rgb=(.3 .2 .3)} Face 196 1663 1647 1627 {rgb=(.3 .2 .3)} Face 197 1377 1421 1375 {rgb=(.3 .2 .3)} Face 198 1296 1377 1375 {rgb=(.3 .2 .3)} Face 199 9410 9420 9466 {rgb=(.3 .2 .3)} Face 200 9094 8929 8489 {rgb=(.3 .2 .3)} Face 201 9410 9466 9484 {rgb=(.3 .2 .3)} Face 202 8489 8729 9094 {rgb=(.3 .2 .3)} Face 203 9382 9411 9418 {rgb=(.3 .2 .3)} Face 204 9418 9398 9382 {rgb=(.3 .2 .3)} Face 205 9670 9624 9668 {rgb=(.3 .2 .3)} Face 206 9670 9668 9748 {rgb=(.3 .2 .3)} Face 207 1752 2967 1639 {rgb=(.6 .5 .3)} Face 208 4121 5535 3414 {rgb=(.6 .5 .3)} Face 209 1636 2965 1807 {rgb=(.6 .5 .3)} Face 210 4121 5533 5535 {rgb=(.6 .5 .3)} Face 211 5551 5546 2309 {rgb=(.6 .5 .3)} Face 212 9406 8069 9293 {rgb=(.6 .5 .3)} Face 213 7631 5535 6926 {rgb=(.6 .5 .3)} Face 214 9238 8070 9409 {rgb=(.6 .5 .3)} Face 215 5535 5533 6926 {rgb=(.6 .5 .3)} Face 216 5551 8070 9238 {rgb=(.6 .5 .3)} Face 217 2015 1655 2188 {rgb=(.2 .2 .2)} Face 218 1182 1115 1244 {rgb=(.2 .2 .2)} Face 219 1111 1110 1128 {rgb=(.2 .2 .2)} Face 220 1094 972 962 {rgb=(.2 .2 .2)} Face 221 962 1035 1094 {rgb=(.2 .2 .2)} Face 222 1059 1110 1111 {rgb=(.2 .2 .2)} Face 223 1398 1294 1182 {rgb=(.2 .2 .2)} Face 224 1480 1294 1398 {rgb=(.2 .2 .2)} Face 225 1596 1494 1456 {rgb=(.2 .2 .2)} Face 226 1543 1629 1596 {rgb=(.2 .2 .2)} Face 227 1305 1329 1242 {rgb=(.2 .2 .2)} Face 228 2479 2521 1798 {rgb=(.2 .2 .2)} Face 229 910 926 957 {rgb=(.2 .2 .2)} Face 230 1251 1158 1150 {rgb=(.2 .2 .2)} Face 231 1624 1596 1629 {rgb=(.2 .2 .2)} Face 232 1188 1191 1140 {rgb=(.2 .2 .2)} Face 233 1699 1648 1655 {rgb=(.2 .2 .2)} Face 234 2015 1699 1655 {rgb=(.2 .2 .2)} Face 235 1162 1322 1344 {rgb=(.2 .2 .2)} Face 236 1507 1626 1594 {rgb=(.2 .2 .2)} Face 237 1027 1083 1159 {rgb=(.2 .2 .2)} Face 238 981 973 1164 {rgb=(.2 .2 .2)} Face 239 1726 2343 1863 {rgb=(.2 .2 .2)} Face 240 3100 3373 3301 {rgb=(.2 .2 .2)} Face 241 3342 3271 3074 {rgb=(.2 .2 .2)} Face 242 3029 2574 2048 {rgb=(.2 .2 .2)} Face 243 1901 1665 1660 {rgb=(.2 .2 .2)} Face 244 1593 1415 1550 {rgb=(.2 .2 .2)} Face 245 1141 1037 1233 {rgb=(.2 .2 .2)} Face 246 1483 1495 1292 {rgb=(.2 .2 .2)} Face 247 1267 1238 1458 {rgb=(.2 .2 .2)} Face 248 2688 2795 2621 {rgb=(.2 .2 .2)} Face 249 2517 2521 2479 {rgb=(.2 .2 .2)} Face 250 1534 1533 1520 {rgb=(.2 .2 .2)} Face 251 934 966 957 {rgb=(.2 .2 .2)} Face 252 1005 1002 1016 {rgb=(.2 .2 .2)} Face 253 1614 1567 1585 {rgb=(.2 .2 .2)} Face 254 1543 1596 1456 {rgb=(.2 .2 .2)} Face 255 1567 1584 1585 {rgb=(.2 .2 .2)} Face 256 1016 965 1005 {rgb=(.2 .2 .2)} Face 257 966 955 957 {rgb=(.2 .2 .2)} Face 258 1520 1568 1534 {rgb=(.2 .2 .2)} Face 259 1563 1585 1005 {rgb=(.2 .2 .2)} Face 260 1601 1546 1173 {rgb=(.2 .2 .2)} Face 261 8855 9390 9030 {rgb=(.2 .2 .2)} Face 262 9801 9930 9863 {rgb=(.2 .2 .2)} Face 263 9917 9935 9934 {rgb=(.2 .2 .2)} Face 264 10083 10073 9951 {rgb=(.2 .2 .2)} Face 265 9951 10010 10083 {rgb=(.2 .2 .2)} Face 266 9934 9935 9986 {rgb=(.2 .2 .2)} Face 267 9863 9751 9647 {rgb=(.2 .2 .2)} Face 268 9647 9751 9565 {rgb=(.2 .2 .2)} Face 269 9589 9551 9449 {rgb=(.2 .2 .2)} Face 270 9449 9416 9502 {rgb=(.2 .2 .2)} Face 271 9247 8524 8571 {rgb=(.2 .2 .2)} Face 272 9636 9549 9511 {rgb=(.2 .2 .2)} Face 273 9895 9887 9794 {rgb=(.2 .2 .2)} Face 274 9416 9449 9421 {rgb=(.2 .2 .2)} Face 275 9905 9854 9857 {rgb=(.2 .2 .2)} Face 276 9390 9397 9346 {rgb=(.2 .2 .2)} Face 277 9390 9346 9030 {rgb=(.2 .2 .2)} Face 278 9701 9723 9883 {rgb=(.2 .2 .2)} Face 279 9451 9419 9538 {rgb=(.2 .2 .2)} Face 280 9886 9962 10018 {rgb=(.2 .2 .2)} Face 281 9881 10072 10064 {rgb=(.2 .2 .2)} Face 282 9182 8703 9319 {rgb=(.2 .2 .2)} Face 283 7744 7669 7935 {rgb=(.2 .2 .2)} Face 284 7964 7774 7701 {rgb=(.2 .2 .2)} Face 285 8997 8474 8002 {rgb=(.2 .2 .2)} Face 286 9385 9380 9144 {rgb=(.2 .2 .2)} Face 287 9495 9630 9452 {rgb=(.2 .2 .2)} Face 288 9812 10008 9904 {rgb=(.2 .2 .2)} Face 289 9753 9550 9562 {rgb=(.2 .2 .2)} Face 290 9587 9807 9778 {rgb=(.2 .2 .2)} Face 291 8428 8250 8359 {rgb=(.2 .2 .2)} Face 292 8571 8524 8528 {rgb=(.2 .2 .2)} Face 293 9589 9449 9502 {rgb=(.2 .2 .2)} Face 294 10040 9460 9482 {rgb=(.2 .2 .2)} Face 295 9872 9499 9444 {rgb=(.2 .2 .2)} Face 296 9803 9716 9740 {rgb=(.2 .2 .2)} Face 297 9525 9512 9511 {rgb=(.2 .2 .2)} Face 298 10088 10079 10111 {rgb=(.2 .2 .2)} Face 299 10029 10043 10040 {rgb=(.2 .2 .2)} Face 300 9460 9478 9431 {rgb=(.2 .2 .2)} Face 301 9460 9461 9478 {rgb=(.2 .2 .2)} Face 302 10040 10080 10029 {rgb=(.2 .2 .2)} Face 303 10088 10090 10079 {rgb=(.2 .2 .2)} Face 304 9511 9477 9525 {rgb=(.2 .2 .2)} Face 305 896 899 954 {rgb=(.6 .4 .4)} Face 306 180 159 133 {rgb=(.6 .4 .4)} Face 307 114 126 73 {rgb=(.6 .4 .4)} Face 308 269 238 233 {rgb=(.6 .4 .4)} Face 309 255 184 178 {rgb=(.6 .4 .4)} Face 310 125 101 102 {rgb=(.6 .4 .4)} Face 311 98 108 106 {rgb=(.6 .4 .4)} Face 312 1018 970 1001 {rgb=(.6 .4 .4)} Face 313 265 449 530 {rgb=(.6 .4 .4)} Face 314 449 676 530 {rgb=(.6 .4 .4)} Face 315 432 595 712 {rgb=(.6 .4 .4)} Face 316 890 712 858 {rgb=(.6 .4 .4)} Face 317 615 329 292 {rgb=(.6 .4 .4)} Face 318 942 925 844 {rgb=(.6 .4 .4)} Face 319 931 837 925 {rgb=(.6 .4 .4)} Face 320 1333 1385 1430 {rgb=(.6 .4 .4)} Face 321 797 938 942 {rgb=(.6 .4 .4)} Face 322 1073 938 1072 {rgb=(.6 .4 .4)} Face 323 890 913 765 {rgb=(.6 .4 .4)} Face 324 615 938 797 {rgb=(.6 .4 .4)} Face 325 1021 1058 890 {rgb=(.6 .4 .4)} Face 326 942 938 1073 {rgb=(.6 .4 .4)} Face 327 1198 1154 1046 {rgb=(.6 .4 .4)} Face 328 1207 1218 1215 {rgb=(.6 .4 .4)} Face 329 1207 1223 1218 {rgb=(.6 .4 .4)} Face 330 1198 1046 1131 {rgb=(.6 .4 .4)} Face 331 1355 1291 1257 {rgb=(.6 .4 .4)} Face 332 1420 1423 1402 {rgb=(.6 .4 .4)} Face 333 1474 1454 1439 {rgb=(.6 .4 .4)} Face 334 1477 1445 1455 {rgb=(.6 .4 .4)} Face 335 1430 1411 1434 {rgb=(.6 .4 .4)} Face 336 1333 1207 1266 {rgb=(.6 .4 .4)} Face 337 924 919 933 {rgb=(.6 .4 .4)} Face 338 891 843 892 {rgb=(.6 .4 .4)} Face 339 883 892 843 {rgb=(.6 .4 .4)} Face 340 875 902 929 {rgb=(.6 .4 .4)} Face 341 843 891 879 {rgb=(.6 .4 .4)} Face 342 851 843 879 {rgb=(.6 .4 .4)} Face 343 877 902 875 {rgb=(.6 .4 .4)} Face 344 833 806 843 {rgb=(.6 .4 .4)} Face 345 843 851 833 {rgb=(.6 .4 .4)} Face 346 811 841 839 {rgb=(.6 .4 .4)} Face 347 501 580 570 {rgb=(.6 .4 .4)} Face 348 435 466 447 {rgb=(.6 .4 .4)} Face 349 507 447 466 {rgb=(.6 .4 .4)} Face 350 701 541 538 {rgb=(.6 .4 .4)} Face 351 466 435 430 {rgb=(.6 .4 .4)} Face 352 402 276 294 {rgb=(.6 .4 .4)} Face 353 446 466 430 {rgb=(.6 .4 .4)} Face 354 555 541 701 {rgb=(.6 .4 .4)} Face 355 465 536 466 {rgb=(.6 .4 .4)} Face 356 466 446 465 {rgb=(.6 .4 .4)} Face 357 614 531 601 {rgb=(.6 .4 .4)} Face 358 109 104 61 {rgb=(.6 .4 .4)} Face 359 122 109 63 {rgb=(.6 .4 .4)} Face 360 109 61 42 {rgb=(.6 .4 .4)} Face 361 63 109 42 {rgb=(.6 .4 .4)} Face 362 79 30 19 {rgb=(.6 .4 .4)} Face 363 34 79 19 {rgb=(.6 .4 .4)} Face 364 79 81 30 {rgb=(.6 .4 .4)} Face 365 86 79 34 {rgb=(.6 .4 .4)} Face 366 338 424 387 {rgb=(.6 .4 .4)} Face 367 302 348 316 {rgb=(.6 .4 .4)} Face 368 373 316 348 {rgb=(.6 .4 .4)} Face 369 560 335 343 {rgb=(.6 .4 .4)} Face 370 348 302 290 {rgb=(.6 .4 .4)} Face 371 301 331 240 {rgb=(.6 .4 .4)} Face 372 209 301 294 {rgb=(.6 .4 .4)} Face 373 331 278 240 {rgb=(.6 .4 .4)} Face 374 304 348 290 {rgb=(.6 .4 .4)} Face 375 345 335 560 {rgb=(.6 .4 .4)} Face 376 317 374 348 {rgb=(.6 .4 .4)} Face 377 348 304 317 {rgb=(.6 .4 .4)} Face 378 425 339 391 {rgb=(.6 .4 .4)} Face 379 294 276 137 {rgb=(.6 .4 .4)} Face 380 209 294 137 {rgb=(.6 .4 .4)} Face 381 351 243 172 {rgb=(.6 .4 .4)} Face 382 219 351 172 {rgb=(.6 .4 .4)} Face 383 436 562 511 {rgb=(.6 .4 .4)} Face 384 383 450 418 {rgb=(.6 .4 .4)} Face 385 515 418 450 {rgb=(.6 .4 .4)} Face 386 648 413 433 {rgb=(.6 .4 .4)} Face 387 450 383 357 {rgb=(.6 .4 .4)} Face 388 354 243 351 {rgb=(.6 .4 .4)} Face 389 372 450 357 {rgb=(.6 .4 .4)} Face 390 416 413 648 {rgb=(.6 .4 .4)} Face 391 395 478 450 {rgb=(.6 .4 .4)} Face 392 450 372 395 {rgb=(.6 .4 .4)} Face 393 520 411 472 {rgb=(.6 .4 .4)} Face 394 115 116 68 {rgb=(.6 .4 .4)} Face 395 124 115 64 {rgb=(.6 .4 .4)} Face 396 115 68 51 {rgb=(.6 .4 .4)} Face 397 64 115 51 {rgb=(.6 .4 .4)} Face 398 155 100 96 {rgb=(.6 .4 .4)} Face 399 131 155 96 {rgb=(.6 .4 .4)} Face 400 155 148 100 {rgb=(.6 .4 .4)} Face 401 182 155 131 {rgb=(.6 .4 .4)} Face 402 263 321 287 {rgb=(.6 .4 .4)} Face 403 239 283 257 {rgb=(.6 .4 .4)} Face 404 309 257 283 {rgb=(.6 .4 .4)} Face 405 386 253 254 {rgb=(.6 .4 .4)} Face 406 283 239 226 {rgb=(.6 .4 .4)} Face 407 219 296 351 {rgb=(.6 .4 .4)} Face 408 241 283 226 {rgb=(.6 .4 .4)} Face 409 256 253 386 {rgb=(.6 .4 .4)} Face 410 259 310 283 {rgb=(.6 .4 .4)} Face 411 283 241 259 {rgb=(.6 .4 .4)} Face 412 320 262 282 {rgb=(.6 .4 .4)} Face 413 301 240 294 {rgb=(.6 .4 .4)} Face 414 278 331 319 {rgb=(.6 .4 .4)} Face 415 268 334 272 {rgb=(.6 .4 .4)} Face 416 118 163 90 {rgb=(.6 .4 .4)} Face 417 404 347 281 {rgb=(.6 .4 .4)} Face 418 246 268 216 {rgb=(.6 .4 .4)} Face 419 513 448 514 {rgb=(.6 .4 .4)} Face 420 537 626 397 {rgb=(.6 .4 .4)} Face 421 142 156 247 {rgb=(.6 .4 .4)} Face 422 311 397 409 {rgb=(.6 .4 .4)} Face 423 311 298 397 {rgb=(.6 .4 .4)} Face 424 409 397 626 {rgb=(.6 .4 .4)} Face 425 298 350 397 {rgb=(.6 .4 .4)} Face 426 526 195 356 {rgb=(.6 .4 .4)} Face 427 195 163 118 {rgb=(.6 .4 .4)} Face 428 78 59 84 {rgb=(.6 .4 .4)} Face 429 52 55 59 {rgb=(.6 .4 .4)} Face 430 72 47 55 {rgb=(.6 .4 .4)} Face 431 20 23 47 {rgb=(.6 .4 .4)} Face 432 48 38 23 {rgb=(.6 .4 .4)} Face 433 45 62 38 {rgb=(.6 .4 .4)} Face 434 384 514 448 {rgb=(.6 .4 .4)} Face 435 37 110 14 {rgb=(.6 .4 .4)} Face 436 1057 895 961 {rgb=(.6 .4 .4)} Face 437 1154 943 948 {rgb=(.6 .4 .4)} Face 438 970 1018 961 {rgb=(.6 .4 .4)} Face 439 159 114 133 {rgb=(.6 .4 .4)} Face 440 80 53 76 {rgb=(.6 .4 .4)} Face 441 264 369 313 {rgb=(.6 .4 .4)} Face 442 988 948 941 {rgb=(.6 .4 .4)} Face 443 849 776 836 {rgb=(.6 .4 .4)} Face 444 533 822 427 {rgb=(.6 .4 .4)} Face 445 94 85 153 {rgb=(.6 .4 .4)} Face 446 932 913 1093 {rgb=(.6 .4 .4)} Face 447 10091 10146 10149 {rgb=(.6 .4 .4)} Face 448 10912 10886 10865 {rgb=(.6 .4 .4)} Face 449 10972 10919 10931 {rgb=(.6 .4 .4)} Face 450 10812 10807 10776 {rgb=(.6 .4 .4)} Face 451 10867 10861 10790 {rgb=(.6 .4 .4)} Face 452 10920 10932 10947 {rgb=(.6 .4 .4)} Face 453 10947 10932 10928 {rgb=(.6 .4 .4)} Face 454 10044 10075 10027 {rgb=(.6 .4 .4)} Face 455 10515 10596 10780 {rgb=(.6 .4 .4)} Face 456 10515 10369 10596 {rgb=(.6 .4 .4)} Face 457 10333 10450 10613 {rgb=(.6 .4 .4)} Face 458 10187 10333 10155 {rgb=(.6 .4 .4)} Face 459 10753 10716 10430 {rgb=(.6 .4 .4)} Face 460 10201 10120 10103 {rgb=(.6 .4 .4)} Face 461 10120 10208 10114 {rgb=(.6 .4 .4)} Face 462 9625 9571 9568 {rgb=(.6 .4 .4)} Face 463 10103 10107 10248 {rgb=(.6 .4 .4)} Face 464 9973 10107 9972 {rgb=(.6 .4 .4)} Face 465 10280 10132 10155 {rgb=(.6 .4 .4)} Face 466 10248 10107 10430 {rgb=(.6 .4 .4)} Face 467 10155 9987 10024 {rgb=(.6 .4 .4)} Face 468 9972 10107 10103 {rgb=(.6 .4 .4)} Face 469 9999 9891 9847 {rgb=(.6 .4 .4)} Face 470 9830 9827 9838 {rgb=(.6 .4 .4)} Face 471 9827 9822 9838 {rgb=(.6 .4 .4)} Face 472 9914 9999 9847 {rgb=(.6 .4 .4)} Face 473 9788 9754 9690 {rgb=(.6 .4 .4)} Face 474 9643 9622 9625 {rgb=(.6 .4 .4)} Face 475 9606 9591 9571 {rgb=(.6 .4 .4)} Face 476 9590 9600 9568 {rgb=(.6 .4 .4)} Face 477 9611 9634 9615 {rgb=(.6 .4 .4)} Face 478 9779 9838 9712 {rgb=(.6 .4 .4)} Face 479 10112 10126 10121 {rgb=(.6 .4 .4)} Face 480 10153 10202 10154 {rgb=(.6 .4 .4)} Face 481 10202 10153 10162 {rgb=(.6 .4 .4)} Face 482 10170 10141 10117 {rgb=(.6 .4 .4)} Face 483 10166 10154 10202 {rgb=(.6 .4 .4)} Face 484 10166 10202 10194 {rgb=(.6 .4 .4)} Face 485 10168 10200 10207 {rgb=(.6 .4 .4)} Face 486 10202 10239 10212 {rgb=(.6 .4 .4)} Face 487 10212 10194 10202 {rgb=(.6 .4 .4)} Face 488 10206 10204 10234 {rgb=(.6 .4 .4)} Face 489 10475 10465 10544 {rgb=(.6 .4 .4)} Face 490 10598 10579 10610 {rgb=(.6 .4 .4)} Face 491 10579 10598 10538 {rgb=(.6 .4 .4)} Face 492 10344 10381 10469 {rgb=(.6 .4 .4)} Face 493 10615 10610 10579 {rgb=(.6 .4 .4)} Face 494 10751 10769 10643 {rgb=(.6 .4 .4)} Face 495 10615 10579 10599 {rgb=(.6 .4 .4)} Face 496 10490 10443 10365 {rgb=(.6 .4 .4)} Face 497 10579 10509 10580 {rgb=(.6 .4 .4)} Face 498 10580 10599 10579 {rgb=(.6 .4 .4)} Face 499 10444 10514 10431 {rgb=(.6 .4 .4)} Face 500 10984 10941 10936 {rgb=(.6 .4 .4)} Face 501 10982 10936 10923 {rgb=(.6 .4 .4)} Face 502 11003 10984 10936 {rgb=(.6 .4 .4)} Face 503 11003 10936 10982 {rgb=(.6 .4 .4)} Face 504 11026 11015 10966 {rgb=(.6 .4 .4)} Face 505 11026 10966 11011 {rgb=(.6 .4 .4)} Face 506 11015 10964 10966 {rgb=(.6 .4 .4)} Face 507 11011 10966 10959 {rgb=(.6 .4 .4)} Face 508 10658 10621 10707 {rgb=(.6 .4 .4)} Face 509 10729 10697 10743 {rgb=(.6 .4 .4)} Face 510 10697 10729 10672 {rgb=(.6 .4 .4)} Face 511 10485 10524 10655 {rgb=(.6 .4 .4)} Face 512 10755 10743 10697 {rgb=(.6 .4 .4)} Face 513 10805 10714 10744 {rgb=(.6 .4 .4)} Face 514 10751 10744 10836 {rgb=(.6 .4 .4)} Face 515 10805 10767 10714 {rgb=(.6 .4 .4)} Face 516 10755 10697 10741 {rgb=(.6 .4 .4)} Face 517 10700 10653 10522 {rgb=(.6 .4 .4)} Face 518 10697 10671 10728 {rgb=(.6 .4 .4)} Face 519 10728 10741 10697 {rgb=(.6 .4 .4)} Face 520 10654 10706 10620 {rgb=(.6 .4 .4)} Face 521 10908 10769 10751 {rgb=(.6 .4 .4)} Face 522 10908 10751 10836 {rgb=(.6 .4 .4)} Face 523 10873 10802 10694 {rgb=(.6 .4 .4)} Face 524 10873 10694 10826 {rgb=(.6 .4 .4)} Face 525 10534 10483 10609 {rgb=(.6 .4 .4)} Face 526 10627 10595 10662 {rgb=(.6 .4 .4)} Face 527 10595 10627 10530 {rgb=(.6 .4 .4)} Face 528 10397 10417 10537 {rgb=(.6 .4 .4)} Face 529 10688 10662 10595 {rgb=(.6 .4 .4)} Face 530 10694 10802 10691 {rgb=(.6 .4 .4)} Face 531 10688 10595 10673 {rgb=(.6 .4 .4)} Face 532 10629 10570 10442 {rgb=(.6 .4 .4)} Face 533 10595 10567 10650 {rgb=(.6 .4 .4)} Face 534 10650 10673 10595 {rgb=(.6 .4 .4)} Face 535 10573 10634 10525 {rgb=(.6 .4 .4)} Face 536 10977 10929 10930 {rgb=(.6 .4 .4)} Face 537 10981 10930 10921 {rgb=(.6 .4 .4)} Face 538 10994 10977 10930 {rgb=(.6 .4 .4)} Face 539 10994 10930 10981 {rgb=(.6 .4 .4)} Face 540 10949 10945 10890 {rgb=(.6 .4 .4)} Face 541 10949 10890 10914 {rgb=(.6 .4 .4)} Face 542 10945 10897 10890 {rgb=(.6 .4 .4)} Face 543 10914 10890 10863 {rgb=(.6 .4 .4)} Face 544 10758 10724 10782 {rgb=(.6 .4 .4)} Face 545 10788 10762 10806 {rgb=(.6 .4 .4)} Face 546 10762 10788 10736 {rgb=(.6 .4 .4)} Face 547 10659 10683 10759 {rgb=(.6 .4 .4)} Face 548 10819 10806 10762 {rgb=(.6 .4 .4)} Face 549 10694 10749 10826 {rgb=(.6 .4 .4)} Face 550 10819 10762 10804 {rgb=(.6 .4 .4)} Face 551 10789 10760 10682 {rgb=(.6 .4 .4)} Face 552 10762 10735 10786 {rgb=(.6 .4 .4)} Face 553 10786 10804 10762 {rgb=(.6 .4 .4)} Face 554 10763 10783 10725 {rgb=(.6 .4 .4)} Face 555 10751 10805 10744 {rgb=(.6 .4 .4)} Face 556 10726 10714 10767 {rgb=(.6 .4 .4)} Face 557 10773 10711 10777 {rgb=(.6 .4 .4)} Face 558 10955 10882 10927 {rgb=(.6 .4 .4)} Face 559 10764 10698 10641 {rgb=(.6 .4 .4)} Face 560 10829 10777 10799 {rgb=(.6 .4 .4)} Face 561 10531 10597 10532 {rgb=(.6 .4 .4)} Face 562 10648 10419 10508 {rgb=(.6 .4 .4)} Face 563 10798 10889 10903 {rgb=(.6 .4 .4)} Face 564 10636 10648 10734 {rgb=(.6 .4 .4)} Face 565 10648 10747 10734 {rgb=(.6 .4 .4)} Face 566 10419 10648 10636 {rgb=(.6 .4 .4)} Face 567 10648 10695 10747 {rgb=(.6 .4 .4)} Face 568 10689 10850 10519 {rgb=(.6 .4 .4)} Face 569 10927 10882 10850 {rgb=(.6 .4 .4)} Face 570 10967 10938 10942 {rgb=(.6 .4 .4)} Face 571 10993 10978 10967 {rgb=(.6 .4 .4)} Face 572 10973 10976 10993 {rgb=(.6 .4 .4)} Face 573 11025 11005 10973 {rgb=(.6 .4 .4)} Face 574 10997 11009 11025 {rgb=(.6 .4 .4)} Face 575 11000 10979 10997 {rgb=(.6 .4 .4)} Face 576 10597 10531 10661 {rgb=(.6 .4 .4)} Face 577 11031 10935 11008 {rgb=(.6 .4 .4)} Face 578 10084 10150 9988 {rgb=(.6 .4 .4)} Face 579 10097 10102 9891 {rgb=(.6 .4 .4)} Face 580 10084 10027 10075 {rgb=(.6 .4 .4)} Face 581 10912 10931 10886 {rgb=(.6 .4 .4)} Face 582 10969 10992 10965 {rgb=(.6 .4 .4)} Face 583 10732 10676 10781 {rgb=(.6 .4 .4)} Face 584 10104 10097 10057 {rgb=(.6 .4 .4)} Face 585 10209 10269 10196 {rgb=(.6 .4 .4)} Face 586 10618 10223 10512 {rgb=(.6 .4 .4)} Face 587 10892 10960 10951 {rgb=(.6 .4 .4)} Face 588 9952 10132 10113 {rgb=(.6 .4 .4)} Face 589 7048 7026 7061 {rgb=(0 0 0)} Face 590 7026 7007 7061 {rgb=(0 0 0)} Face 591 7007 6976 7061 {rgb=(0 0 0)} Face 592 6976 6958 7061 {rgb=(0 0 0)} Face 593 6958 6932 7061 {rgb=(0 0 0)} Face 594 6932 6918 7061 {rgb=(0 0 0)} Face 595 6918 6899 7061 {rgb=(0 0 0)} Face 596 6899 6887 7061 {rgb=(0 0 0)} Face 597 6887 6880 7061 {rgb=(0 0 0)} Face 598 6880 6878 7061 {rgb=(0 0 0)} Face 599 6878 6879 7061 {rgb=(0 0 0)} Face 600 6879 6888 7061 {rgb=(0 0 0)} Face 601 6888 6900 7061 {rgb=(0 0 0)} Face 602 6900 6919 7061 {rgb=(0 0 0)} Face 603 6919 6933 7061 {rgb=(0 0 0)} Face 604 6933 6959 7061 {rgb=(0 0 0)} Face 605 6959 6977 7061 {rgb=(0 0 0)} Face 606 6977 7008 7061 {rgb=(0 0 0)} Face 607 7008 7027 7061 {rgb=(0 0 0)} Face 608 7027 7049 7061 {rgb=(0 0 0)} Face 609 7049 7087 7061 {rgb=(0 0 0)} Face 610 7087 7122 7061 {rgb=(0 0 0)} Face 611 7122 7147 7061 {rgb=(0 0 0)} Face 612 7147 7168 7061 {rgb=(0 0 0)} Face 613 7168 7185 7061 {rgb=(0 0 0)} Face 614 7185 7203 7061 {rgb=(0 0 0)} Face 615 7203 7238 7061 {rgb=(0 0 0)} Face 616 7238 7254 7061 {rgb=(0 0 0)} Face 617 7254 7276 7061 {rgb=(0 0 0)} Face 618 7276 7278 7061 {rgb=(0 0 0)} Face 619 7278 7277 7061 {rgb=(0 0 0)} Face 620 7277 7255 7061 {rgb=(0 0 0)} Face 621 7255 7237 7061 {rgb=(0 0 0)} Face 622 7237 7204 7061 {rgb=(0 0 0)} Face 623 7204 7184 7061 {rgb=(0 0 0)} Face 624 7184 7167 7061 {rgb=(0 0 0)} Face 625 7167 7146 7061 {rgb=(0 0 0)} Face 626 7146 7121 7061 {rgb=(0 0 0)} Face 627 7121 7086 7061 {rgb=(0 0 0)} Face 628 7086 7048 7061 {rgb=(0 0 0)} Face 629 2051 2054 1974 {rgb=(.7 .4 .4)} Face 630 1946 1983 1941 {rgb=(.7 .4 .4)} Face 631 1985 1990 1962 {rgb=(.7 .4 .4)} Face 632 1890 1881 1865 {rgb=(.7 .4 .4)} Face 633 2036 1994 1932 {rgb=(.7 .4 .4)} Face 634 1791 1813 1802 {rgb=(.7 .4 .4)} Face 635 1968 1936 1900 {rgb=(.7 .4 .4)} Face 636 2087 2029 2004 {rgb=(.7 .4 .4)} Face 637 2055 2120 2121 {rgb=(.7 .4 .4)} Face 638 2145 2063 2129 {rgb=(.7 .4 .4)} Face 639 2108 2160 2139 {rgb=(.7 .4 .4)} Face 640 1982 2037 1976 {rgb=(.7 .4 .4)} Face 641 1942 1947 1943 {rgb=(.7 .4 .4)} Face 642 1999 1958 1960 {rgb=(.7 .4 .4)} Face 643 2124 1966 2184 {rgb=(.7 .4 .4)} Face 644 1799 1836 1848 {rgb=(.7 .4 .4)} Face 645 1844 1820 1797 {rgb=(.7 .4 .4)} Face 646 1872 1765 1754 {rgb=(.7 .4 .4)} Face 647 2134 2254 2255 {rgb=(.7 .4 .4)} Face 648 2296 2283 2297 {rgb=(.7 .4 .4)} Face 649 2215 2046 2106 {rgb=(.7 .4 .4)} Face 650 2408 2306 2206 {rgb=(.7 .4 .4)} Face 651 2510 2313 2438 {rgb=(.7 .4 .4)} Face 652 2585 2564 2501 {rgb=(.7 .4 .4)} Face 653 2431 2302 2288 {rgb=(.7 .4 .4)} Face 654 2209 2079 2041 {rgb=(.7 .4 .4)} Face 655 2010 2127 1970 {rgb=(.7 .4 .4)} Face 656 2613 2557 2530 {rgb=(.7 .4 .4)} Face 657 1840 1773 1788 {rgb=(.7 .4 .4)} Face 658 2135 1909 1927 {rgb=(.7 .4 .4)} Face 659 4035 3986 3910 {rgb=(.7 .4 .4)} Face 660 4946 4909 4698 {rgb=(.7 .4 .4)} Face 661 5251 5205 5163 {rgb=(.7 .4 .4)} Face 662 5475 5476 5320 {rgb=(.7 .4 .4)} Face 663 5429 5147 5430 {rgb=(.7 .4 .4)} Face 664 5207 4504 4931 {rgb=(.7 .4 .4)} Face 665 3711 3857 3658 {rgb=(.7 .4 .4)} Face 666 4181 4224 4085 {rgb=(.7 .4 .4)} Face 667 3027 3139 3037 {rgb=(.7 .4 .4)} Face 668 2968 3126 3008 {rgb=(.7 .4 .4)} Face 669 3055 3091 2982 {rgb=(.7 .4 .4)} Face 670 2855 2906 2890 {rgb=(.7 .4 .4)} Face 671 2990 2925 2972 {rgb=(.7 .4 .4)} Face 672 2544 2609 2581 {rgb=(.7 .4 .4)} Face 673 2888 2895 2893 {rgb=(.7 .4 .4)} Face 674 4742 4885 4924 {rgb=(.7 .4 .4)} Face 675 5486 5418 5485 {rgb=(.7 .4 .4)} Face 676 4468 4586 4215 {rgb=(.7 .4 .4)} Face 677 4574 4612 4767 {rgb=(.7 .4 .4)} Face 678 4363 4446 4485 {rgb=(.7 .4 .4)} Face 679 4521 4565 4525 {rgb=(.7 .4 .4)} Face 680 5001 4980 4962 {rgb=(.7 .4 .4)} Face 681 5252 5265 5267 {rgb=(.7 .4 .4)} Face 682 5388 5481 5482 {rgb=(.7 .4 .4)} Face 683 4630 4866 4895 {rgb=(.7 .4 .4)} Face 684 4404 4420 4408 {rgb=(.7 .4 .4)} Face 685 3997 4098 4195 {rgb=(.7 .4 .4)} Face 686 3608 3705 3784 {rgb=(.7 .4 .4)} Face 687 3268 3299 3388 {rgb=(.7 .4 .4)} Face 688 4283 4475 4429 {rgb=(.7 .4 .4)} Face 689 4873 5057 4845 {rgb=(.7 .4 .4)} Face 690 4968 5090 4900 {rgb=(.7 .4 .4)} Face 691 3365 3415 3418 {rgb=(.7 .4 .4)} Face 692 3073 3101 3108 {rgb=(.7 .4 .4)} Face 693 2542 2690 2578 {rgb=(.7 .4 .4)} Face 694 2803 2748 2909 {rgb=(.7 .4 .4)} Face 695 2927 2954 3151 {rgb=(.7 .4 .4)} Face 696 2346 2263 2303 {rgb=(.7 .4 .4)} Face 697 2337 2284 2258 {rgb=(.7 .4 .4)} Face 698 2547 2448 2472 {rgb=(.7 .4 .4)} Face 699 3157 2961 3162 {rgb=(.7 .4 .4)} Face 700 2512 2415 2383 {rgb=(.7 .4 .4)} Face 701 2315 2308 2338 {rgb=(.7 .4 .4)} Face 702 2407 2483 2636 {rgb=(.7 .4 .4)} Face 703 5048 5075 4947 {rgb=(.7 .4 .4)} Face 704 5229 5306 5411 {rgb=(.7 .4 .4)} Face 705 4795 4804 4794 {rgb=(.7 .4 .4)} Face 706 4781 4787 4786 {rgb=(.7 .4 .4)} Face 707 3053 3063 3057 {rgb=(.7 .4 .4)} Face 708 3024 3041 3045 {rgb=(.7 .4 .4)} Face 709 3032 3022 3043 {rgb=(.7 .4 .4)} Face 710 5190 5137 5216 {rgb=(.7 .4 .4)} Face 711 5223 5144 5206 {rgb=(.7 .4 .4)} Face 712 5180 5105 5102 {rgb=(.7 .4 .4)} Face 713 5009 5016 4859 {rgb=(.7 .4 .4)} Face 714 4722 4740 4700 {rgb=(.7 .4 .4)} Face 715 4803 4783 4970 {rgb=(.7 .4 .4)} Face 716 4990 4893 4840 {rgb=(.7 .4 .4)} Face 717 5173 5130 5106 {rgb=(.7 .4 .4)} Face 718 4874 4887 4790 {rgb=(.7 .4 .4)} Face 719 4758 4852 4720 {rgb=(.7 .4 .4)} Face 720 4699 4834 4696 {rgb=(.7 .4 .4)} Face 721 4685 4779 4668 {rgb=(.7 .4 .4)} Face 722 3700 3486 3509 {rgb=(.7 .4 .4)} Face 723 4566 4572 4591 {rgb=(.7 .4 .4)} Face 724 3473 3496 3513 {rgb=(.7 .4 .4)} Face 725 4888 4879 4896 {rgb=(.7 .4 .4)} Face 726 4917 4892 4904 {rgb=(.7 .4 .4)} Face 727 3490 3450 3460 {rgb=(.7 .4 .4)} Face 728 4484 4491 4287 {rgb=(.7 .4 .4)} Face 729 4791 4774 4793 {rgb=(.7 .4 .4)} Face 730 4830 4808 4810 {rgb=(.7 .4 .4)} Face 731 4796 4829 4805 {rgb=(.7 .4 .4)} Face 732 3423 3436 3432 {rgb=(.7 .4 .4)} Face 733 3438 3424 3433 {rgb=(.7 .4 .4)} Face 734 5086 5045 5188 {rgb=(.7 .4 .4)} Face 735 2216 2236 2240 {rgb=(.7 .4 .4)} Face 736 2166 2195 2193 {rgb=(.7 .4 .4)} Face 737 2406 2432 2433 {rgb=(.7 .4 .4)} Face 738 2533 2569 2632 {rgb=(.7 .4 .4)} Face 739 2509 2424 2269 {rgb=(.7 .4 .4)} Face 740 2403 2410 2243 {rgb=(.7 .4 .4)} Face 741 2467 2463 2345 {rgb=(.7 .4 .4)} Face 742 2350 2441 2299 {rgb=(.7 .4 .4)} Face 743 2065 1833 1804 {rgb=(.7 .4 .4)} Face 744 2256 2226 2040 {rgb=(.7 .4 .4)} Face 745 8991 8994 9071 {rgb=(.7 .4 .4)} Face 746 9062 9098 9104 {rgb=(.7 .4 .4)} Face 747 9055 9060 9083 {rgb=(.7 .4 .4)} Face 748 9164 9155 9180 {rgb=(.7 .4 .4)} Face 749 9051 9007 9113 {rgb=(.7 .4 .4)} Face 750 9232 9254 9243 {rgb=(.7 .4 .4)} Face 751 9109 9077 9145 {rgb=(.7 .4 .4)} Face 752 9016 8958 9041 {rgb=(.7 .4 .4)} Face 753 8925 8990 8924 {rgb=(.7 .4 .4)} Face 754 8982 8899 8916 {rgb=(.7 .4 .4)} Face 755 8885 8936 8906 {rgb=(.7 .4 .4)} Face 756 9014 9066 9069 {rgb=(.7 .4 .4)} Face 757 9100 9103 9102 {rgb=(.7 .4 .4)} Face 758 9087 9046 9085 {rgb=(.7 .4 .4)} Face 759 9079 8921 8859 {rgb=(.7 .4 .4)} Face 760 9209 9246 9197 {rgb=(.7 .4 .4)} Face 761 9225 9201 9248 {rgb=(.7 .4 .4)} Face 762 9280 9173 9291 {rgb=(.7 .4 .4)} Face 763 8791 8911 8790 {rgb=(.7 .4 .4)} Face 764 8762 8748 8746 {rgb=(.7 .4 .4)} Face 765 9003 8850 8951 {rgb=(.7 .4 .4)} Face 766 8760 8662 8875 {rgb=(.7 .4 .4)} Face 767 8739 8549 8611 {rgb=(.7 .4 .4)} Face 768 8491 8467 8545 {rgb=(.7 .4 .4)} Face 769 8742 8613 8756 {rgb=(.7 .4 .4)} Face 770 8970 8860 9009 {rgb=(.7 .4 .4)} Face 771 8918 9034 9075 {rgb=(.7 .4 .4)} Face 772 8507 8461 8542 {rgb=(.7 .4 .4)} Face 773 9272 9205 9257 {rgb=(.7 .4 .4)} Face 774 9136 8910 9118 {rgb=(.7 .4 .4)} Face 775 7054 7005 7131 {rgb=(.7 .4 .4)} Face 776 6134 6093 6351 {rgb=(.7 .4 .4)} Face 777 5840 5795 5882 {rgb=(.7 .4 .4)} Face 778 5570 5569 5714 {rgb=(.7 .4 .4)} Face 779 5898 5616 5617 {rgb=(.7 .4 .4)} Face 780 6536 5838 6111 {rgb=(.7 .4 .4)} Face 781 7186 7332 7386 {rgb=(.7 .4 .4)} Face 782 6821 6864 6957 {rgb=(.7 .4 .4)} Face 783 7902 8004 7997 {rgb=(.7 .4 .4)} Face 784 7911 8056 8023 {rgb=(.7 .4 .4)} Face 785 7917 7934 8007 {rgb=(.7 .4 .4)} Face 786 8136 8189 8151 {rgb=(.7 .4 .4)} Face 787 8109 8047 8063 {rgb=(.7 .4 .4)} Face 788 8416 8451 8437 {rgb=(.7 .4 .4)} Face 789 8146 8154 8148 {rgb=(.7 .4 .4)} Face 790 6117 6156 6305 {rgb=(.7 .4 .4)} Face 791 5629 5558 5557 {rgb=(.7 .4 .4)} Face 792 6460 6572 6830 {rgb=(.7 .4 .4)} Face 793 6434 6471 6278 {rgb=(.7 .4 .4)} Face 794 6594 6675 6555 {rgb=(.7 .4 .4)} Face 795 6480 6521 6518 {rgb=(.7 .4 .4)} Face 796 6060 6039 6076 {rgb=(.7 .4 .4)} Face 797 5777 5794 5775 {rgb=(.7 .4 .4)} Face 798 5562 5663 5563 {rgb=(.7 .4 .4)} Face 799 6146 6176 6417 {rgb=(.7 .4 .4)} Face 800 6617 6635 6630 {rgb=(.7 .4 .4)} Face 801 6947 7042 6849 {rgb=(.7 .4 .4)} Face 802 7338 7435 7262 {rgb=(.7 .4 .4)} Face 803 7746 7778 7656 {rgb=(.7 .4 .4)} Face 804 6564 6758 6609 {rgb=(.7 .4 .4)} Face 805 5991 6169 6197 {rgb=(.7 .4 .4)} Face 806 5959 6069 6141 {rgb=(.7 .4 .4)} Face 807 7627 7630 7676 {rgb=(.7 .4 .4)} Face 808 7927 7933 7965 {rgb=(.7 .4 .4)} Face 809 8357 8503 8469 {rgb=(.7 .4 .4)} Face 810 8133 8296 8242 {rgb=(.7 .4 .4)} Face 811 8081 8110 7894 {rgb=(.7 .4 .4)} Face 812 8781 8700 8741 {rgb=(.7 .4 .4)} Face 813 8761 8710 8788 {rgb=(.7 .4 .4)} Face 814 8608 8515 8576 {rgb=(.7 .4 .4)} Face 815 8144 7966 7945 {rgb=(.7 .4 .4)} Face 816 8663 8632 8533 {rgb=(.7 .4 .4)} Face 817 8707 8732 8695 {rgb=(.7 .4 .4)} Face 818 8565 8640 8413 {rgb=(.7 .4 .4)} Face 819 5971 5997 6091 {rgb=(.7 .4 .4)} Face 820 5816 5851 5832 {rgb=(.7 .4 .4)} Face 821 6239 6247 6248 {rgb=(.7 .4 .4)} Face 822 6257 6264 6258 {rgb=(.7 .4 .4)} Face 823 7976 7982 7980 {rgb=(.7 .4 .4)} Face 824 7993 8011 7988 {rgb=(.7 .4 .4)} Face 825 8013 8000 7990 {rgb=(.7 .4 .4)} Face 826 5907 5856 5829 {rgb=(.7 .4 .4)} Face 827 5901 5822 5839 {rgb=(.7 .4 .4)} Face 828 5943 5865 5946 {rgb=(.7 .4 .4)} Face 829 6025 6031 6183 {rgb=(.7 .4 .4)} Face 830 6308 6325 6349 {rgb=(.7 .4 .4)} Face 831 6262 6240 6067 {rgb=(.7 .4 .4)} Face 832 6148 6049 6202 {rgb=(.7 .4 .4)} Face 833 5914 5872 5942 {rgb=(.7 .4 .4)} Face 834 6154 6168 6252 {rgb=(.7 .4 .4)} Face 835 6190 6288 6328 {rgb=(.7 .4 .4)} Face 836 6209 6350 6352 {rgb=(.7 .4 .4)} Face 837 6266 6364 6378 {rgb=(.7 .4 .4)} Face 838 7558 7343 7533 {rgb=(.7 .4 .4)} Face 839 6473 6479 6455 {rgb=(.7 .4 .4)} Face 840 7549 7572 7529 {rgb=(.7 .4 .4)} Face 841 6162 6153 6145 {rgb=(.7 .4 .4)} Face 842 6149 6125 6139 {rgb=(.7 .4 .4)} Face 843 7593 7553 7582 {rgb=(.7 .4 .4)} Face 844 6549 6556 6755 {rgb=(.7 .4 .4)} Face 845 6271 6251 6249 {rgb=(.7 .4 .4)} Face 846 6235 6213 6233 {rgb=(.7 .4 .4)} Face 847 6214 6246 6238 {rgb=(.7 .4 .4)} Face 848 7611 7622 7615 {rgb=(.7 .4 .4)} Face 849 7620 7608 7614 {rgb=(.7 .4 .4)} Face 850 6000 5962 5858 {rgb=(.7 .4 .4)} Face 851 8809 8828 8805 {rgb=(.7 .4 .4)} Face 852 8847 8879 8849 {rgb=(.7 .4 .4)} Face 853 8612 8641 8610 {rgb=(.7 .4 .4)} Face 854 8440 8502 8540 {rgb=(.7 .4 .4)} Face 855 8774 8620 8563 {rgb=(.7 .4 .4)} Face 856 8638 8643 8802 {rgb=(.7 .4 .4)} Face 857 8582 8578 8701 {rgb=(.7 .4 .4)} Face 858 8603 8694 8744 {rgb=(.7 .4 .4)} Face 859 9212 8980 9241 {rgb=(.7 .4 .4)} Face 860 8819 8789 9004 {rgb=(.7 .4 .4)} Face 861 4301 4901 5099 {rgb=(.7 .4 .4)} Face 862 5344 5787 5567 {rgb=(.7 .4 .4)} Face 863 6254 6815 6038 {rgb=(.7 .4 .4)} Face 864 7362 7771 6691 {rgb=(.7 .4 .4)} Face 865 8112 8306 6972 {rgb=(.7 .4 .4)} Face 866 8362 8331 7081 {rgb=(.7 .4 .4)} Face 867 8226 8152 7045 {rgb=(.7 .4 .4)} Face 868 8101 7996 7004 {rgb=(.7 .4 .4)} Face 869 7880 7748 6857 {rgb=(.7 .4 .4)} Face 870 7597 7252 6625 {rgb=(.7 .4 .4)} Face 871 6715 6106 5973 {rgb=(.7 .4 .4)} Face 872 5731 5349 5561 {rgb=(.7 .4 .4)} Face 873 4975 4378 5152 {rgb=(.7 .4 .4)} Face 874 3874 3535 4514 {rgb=(.7 .4 .4)} Face 875 3385 3247 4276 {rgb=(.7 .4 .4)} Face 876 3137 3060 4109 {rgb=(.7 .4 .4)} Face 877 3011 2902 4057 {rgb=(.7 .4 .4)} Face 878 2796 2762 4025 {rgb=(.7 .4 .4)} Face 879 2815 3040 4144 {rgb=(.7 .4 .4)} Face 880 3362 3756 4437 {rgb=(.7 .4 .4)} Face 881 8352 8263 8275 {rgb=(.7 .4 .4)} Face 882 8659 8603 8578 {rgb=(.7 .4 .4)} Face 883 8722 8681 8771 {rgb=(.7 .4 .4)} Face 884 8755 8697 8785 {rgb=(.7 .4 .4)} Face 885 8708 8745 8707 {rgb=(.7 .4 .4)} Face 886 8557 8519 8552 {rgb=(.7 .4 .4)} Face 887 8818 8775 8813 {rgb=(.7 .4 .4)} Face 888 8644 8601 8607 {rgb=(.7 .4 .4)} Face 889 7792 7676 7620 {rgb=(.7 .4 .4)} Face 890 6898 7149 7159 {rgb=(.7 .4 .4)} Face 891 6758 6755 6754 {rgb=(.7 .4 .4)} Face 892 6740 6738 6635 {rgb=(.7 .4 .4)} Face 893 7601 7549 7480 {rgb=(.7 .4 .4)} Face 894 7710 7796 7845 {rgb=(.7 .4 .4)} Face 895 7501 7553 7592 {rgb=(.7 .4 .4)} Face 896 7296 7343 7361 {rgb=(.7 .4 .4)} Face 897 7135 7262 7282 {rgb=(.7 .4 .4)} Face 898 6479 6578 6597 {rgb=(.7 .4 .4)} Face 899 6149 6153 6243 {rgb=(.7 .4 .4)} Face 900 6396 6284 6321 {rgb=(.7 .4 .4)} Face 901 6528 6563 6599 {rgb=(.7 .4 .4)} Face 902 6253 6359 6325 {rgb=(.7 .4 .4)} Face 903 5773 5845 5865 {rgb=(.7 .4 .4)} Face 904 7479 7288 7319 {rgb=(.7 .4 .4)} Face 905 7678 7418 7586 {rgb=(.7 .4 .4)} Face 906 7799 7498 7764 {rgb=(.7 .4 .4)} Face 907 7763 7504 7784 {rgb=(.7 .4 .4)} Face 908 7648 7467 7728 {rgb=(.7 .4 .4)} Face 909 7406 7348 7522 {rgb=(.7 .4 .4)} Face 910 7101 7169 7264 {rgb=(.7 .4 .4)} Face 911 6840 7022 6970 {rgb=(.7 .4 .4)} Face 912 6925 6731 6619 {rgb=(.7 .4 .4)} Face 913 6389 6858 6477 {rgb=(.7 .4 .4)} Face 914 6603 6897 6414 {rgb=(.7 .4 .4)} Face 915 7059 7067 6838 {rgb=(.7 .4 .4)} Face 916 8909 8932 8980 {rgb=(.7 .4 .4)} Face 917 8500 8427 8478 {rgb=(.7 .4 .4)} Face 918 8324 8464 8569 {rgb=(.7 .4 .4)} Face 919 8242 8389 8357 {rgb=(.7 .4 .4)} Face 920 7841 7894 7878 {rgb=(.7 .4 .4)} Face 921 7980 7988 7990 {rgb=(.7 .4 .4)} Face 922 5819 5733 5704 {rgb=(.7 .4 .4)} Face 923 5876 5959 5991 {rgb=(.7 .4 .4)} Face 924 6003 5851 6005 {rgb=(.7 .4 .4)} Face 925 5909 5832 5966 {rgb=(.7 .4 .4)} Face 926 5740 5746 5857 {rgb=(.7 .4 .4)} Face 927 7832 8012 8170 {rgb=(.7 .4 .4)} Face 928 5811 5818 5738 {rgb=(.7 .4 .4)} Face 929 5743 5836 5891 {rgb=(.7 .4 .4)} Face 930 5993 5972 6075 {rgb=(.7 .4 .4)} Face 931 6068 6229 6242 {rgb=(.7 .4 .4)} Face 932 6233 6238 6506 {rgb=(.7 .4 .4)} Face 933 6125 6203 6184 {rgb=(.7 .4 .4)} Face 934 5790 5866 5858 {rgb=(.7 .4 .4)} Face 935 8127 8150 8171 {rgb=(.7 .4 .4)} Face 936 8095 8108 8151 {rgb=(.7 .4 .4)} Face 937 6859 6916 7181 {rgb=(.7 .4 .4)} Face 938 8023 8107 8063 {rgb=(.7 .4 .4)} Face 939 6576 6655 6821 {rgb=(.7 .4 .4)} Face 940 6945 7076 7186 {rgb=(.7 .4 .4)} Face 941 7706 7811 7917 {rgb=(.7 .4 .4)} Face 942 5714 5728 5840 {rgb=(.7 .4 .4)} Face 943 5938 5945 6134 {rgb=(.7 .4 .4)} Face 944 6860 7054 7297 {rgb=(.7 .4 .4)} Face 945 8472 8513 8544 {rgb=(.7 .4 .4)} Face 946 7910 8005 8038 {rgb=(.7 .4 .4)} Face 947 8430 8431 8511 {rgb=(.7 .4 .4)} Face 948 9272 9241 9172 {rgb=(.7 .4 .4)} Face 949 8586 8455 8425 {rgb=(.7 .4 .4)} Face 950 8600 8542 8506 {rgb=(.7 .4 .4)} Face 951 8860 8784 8669 {rgb=(.7 .4 .4)} Face 952 8939 8782 8739 {rgb=(.7 .4 .4)} Face 953 9198 9034 8961 {rgb=(.7 .4 .4)} Face 954 9270 9130 9212 {rgb=(.7 .4 .4)} Face 955 8882 8762 8881 {rgb=(.7 .4 .4)} Face 956 9009 9003 9037 {rgb=(.7 .4 .4)} Face 957 8916 8906 8830 {rgb=(.7 .4 .4)} Face 958 9008 9069 9102 {rgb=(.7 .4 .4)} Face 959 9173 9120 9051 {rgb=(.7 .4 .4)} Face 960 9240 9254 9248 {rgb=(.7 .4 .4)} Face 961 9193 9209 9086 {rgb=(.7 .4 .4)} Face 962 8863 8746 8790 {rgb=(.7 .4 .4)} Face 963 9053 9060 9049 {rgb=(.7 .4 .4)} Face 964 9087 9103 9022 {rgb=(.7 .4 .4)} Face 965 8952 8935 8934 {rgb=(.7 .4 .4)} Face 966 8814 8886 8749 {rgb=(.7 .4 .4)} Face 967 8507 8570 8502 {rgb=(.7 .4 .4)} Face 968 2750 2874 2961 {rgb=(.7 .4 .4)} Face 969 2467 2441 2386 {rgb=(.7 .4 .4)} Face 970 2274 2364 2325 {rgb=(.7 .4 .4)} Face 971 2260 2349 2289 {rgb=(.7 .4 .4)} Face 972 2298 2340 2338 {rgb=(.7 .4 .4)} Face 973 2527 2489 2494 {rgb=(.7 .4 .4)} Face 974 2268 2227 2231 {rgb=(.7 .4 .4)} Face 975 2436 2443 2402 {rgb=(.7 .4 .4)} Face 976 3367 3423 3424 {rgb=(.7 .4 .4)} Face 977 4173 3884 3894 {rgb=(.7 .4 .4)} Face 978 4287 4283 4202 {rgb=(.7 .4 .4)} Face 979 4404 4305 4303 {rgb=(.7 .4 .4)} Face 980 3561 3496 3445 {rgb=(.7 .4 .4)} Face 981 3197 3248 3336 {rgb=(.7 .4 .4)} Face 982 3451 3490 3541 {rgb=(.7 .4 .4)} Face 983 3680 3700 3747 {rgb=(.7 .4 .4)} Face 984 3762 3784 3908 {rgb=(.7 .4 .4)} Face 985 4442 4463 4566 {rgb=(.7 .4 .4)} Face 986 4767 4800 4888 {rgb=(.7 .4 .4)} Face 987 4594 4726 4761 {rgb=(.7 .4 .4)} Face 988 4440 4476 4513 {rgb=(.7 .4 .4)} Face 989 4859 4783 4722 {rgb=(.7 .4 .4)} Face 990 5180 5200 5269 {rgb=(.7 .4 .4)} Face 991 3723 3754 3562 {rgb=(.7 .4 .4)} Face 992 3455 3627 3363 {rgb=(.7 .4 .4)} Face 993 3281 3544 3244 {rgb=(.7 .4 .4)} Face 994 3262 3537 3282 {rgb=(.7 .4 .4)} Face 995 3314 3573 3398 {rgb=(.7 .4 .4)} Face 996 3520 3693 3639 {rgb=(.7 .4 .4)} Face 997 3782 3872 3940 {rgb=(.7 .4 .4)} Face 998 4072 4016 4204 {rgb=(.7 .4 .4)} Face 999 4312 4122 4417 {rgb=(.7 .4 .4)} Face 1000 4187 4656 4567 {rgb=(.7 .4 .4)} Face 1001 4632 4149 4434 {rgb=(.7 .4 .4)} Face 1002 4206 3972 3981 {rgb=(.7 .4 .4)} Face 1003 2065 2113 2136 {rgb=(.7 .4 .4)} Face 1004 2606 2650 2566 {rgb=(.7 .4 .4)} Face 1005 2582 2480 2583 {rgb=(.7 .4 .4)} Face 1006 2690 2663 2803 {rgb=(.7 .4 .4)} Face 1007 3165 3151 3203 {rgb=(.7 .4 .4)} Face 1008 3119 3114 3043 {rgb=(.7 .4 .4)} Face 1009 5306 5226 5330 {rgb=(.7 .4 .4)} Face 1010 5057 5090 5169 {rgb=(.7 .4 .4)} Face 1011 5194 5042 5040 {rgb=(.7 .4 .4)} Face 1012 5213 5135 5080 {rgb=(.7 .4 .4)} Face 1013 5294 5300 5189 {rgb=(.7 .4 .4)} Face 1014 3072 2872 3023 {rgb=(.7 .4 .4)} Face 1015 5302 5227 5234 {rgb=(.7 .4 .4)} Face 1016 5155 5209 5297 {rgb=(.7 .4 .4)} Face 1017 4963 5074 5053 {rgb=(.7 .4 .4)} Face 1018 4801 4815 4969 {rgb=(.7 .4 .4)} Face 1019 4523 4537 4805 {rgb=(.7 .4 .4)} Face 1020 4858 4839 4917 {rgb=(.7 .4 .4)} Face 1021 5188 5179 5255 {rgb=(.7 .4 .4)} Face 1022 2871 2891 2913 {rgb=(.7 .4 .4)} Face 1023 2890 2929 2940 {rgb=(.7 .4 .4)} Face 1024 3739 4061 4105 {rgb=(.7 .4 .4)} Face 1025 2972 2926 3008 {rgb=(.7 .4 .4)} Face 1026 4224 4370 4455 {rgb=(.7 .4 .4)} Face 1027 3857 3964 4100 {rgb=(.7 .4 .4)} Face 1028 3091 3204 3327 {rgb=(.7 .4 .4)} Face 1029 5205 5309 5320 {rgb=(.7 .4 .4)} Face 1030 4909 5103 5110 {rgb=(.7 .4 .4)} Face 1031 3746 3986 4186 {rgb=(.7 .4 .4)} Face 1032 2576 2552 2563 {rgb=(.7 .4 .4)} Face 1033 3046 3058 3070 {rgb=(.7 .4 .4)} Face 1034 2474 2556 2568 {rgb=(.7 .4 .4)} Face 1035 1804 1773 1873 {rgb=(.7 .4 .4)} Face 1036 2634 2611 2476 {rgb=(.7 .4 .4)} Face 1037 2558 2530 2462 {rgb=(.7 .4 .4)} Face 1038 2394 2270 2209 {rgb=(.7 .4 .4)} Face 1039 2313 2272 2110 {rgb=(.7 .4 .4)} Face 1040 2084 2010 1847 {rgb=(.7 .4 .4)} Face 1041 1833 1915 1775 {rgb=(.7 .4 .4)} Face 1042 2283 2163 2164 {rgb=(.7 .4 .4)} Face 1043 2011 2046 2041 {rgb=(.7 .4 .4)} Face 1044 2218 2213 2139 {rgb=(.7 .4 .4)} Face 1045 1960 1943 1976 {rgb=(.7 .4 .4)} Face 1046 1994 1925 1872 {rgb=(.7 .4 .4)} Face 1047 1797 1791 1805 {rgb=(.7 .4 .4)} Face 1048 1959 1836 1852 {rgb=(.7 .4 .4)} Face 1049 2255 2297 2181 {rgb=(.7 .4 .4)} Face 1050 1985 1992 1996 {rgb=(.7 .4 .4)} Face 1051 1958 1979 1962 {rgb=(.7 .4 .4)} Face 1052 2111 2109 2093 {rgb=(.7 .4 .4)} Face 1053 2300 2159 2235 {rgb=(.7 .4 .4)} Face 1054 2569 2502 2557 {rgb=(.7 .4 .4)} Face 1055 3971 3958 3832 {rgb=(0 .2 .2)} Face 1056 1945 1887 1895 {rgb=(0 .2 .2)} Face 1057 2804 2691 2798 {rgb=(0 .2 .2)} Face 1058 2031 2080 2273 {rgb=(0 .2 .2)} Face 1059 4188 4571 4470 {rgb=(0 .2 .2)} Face 1060 4506 4421 4294 {rgb=(0 .2 .2)} Face 1061 4452 4197 4419 {rgb=(0 .2 .2)} Face 1062 4691 4472 4589 {rgb=(0 .2 .2)} Face 1063 5022 5408 5407 {rgb=(0 .2 .2)} Face 1064 5127 5351 5356 {rgb=(0 .2 .2)} Face 1065 4710 4688 4493 {rgb=(0 .2 .2)} Face 1066 7082 7068 7211 {rgb=(0 .2 .2)} Face 1067 9158 9099 9150 {rgb=(0 .2 .2)} Face 1068 8356 8248 8263 {rgb=(0 .2 .2)} Face 1069 8772 8964 9013 {rgb=(0 .2 .2)} Face 1070 6474 6856 6570 {rgb=(0 .2 .2)} Face 1071 6616 6534 6748 {rgb=(0 .2 .2)} Face 1072 6847 6588 6618 {rgb=(0 .2 .2)} Face 1073 6568 6357 6457 {rgb=(0 .2 .2)} Face 1074 5644 6018 5643 {rgb=(0 .2 .2)} Face 1075 5685 5688 5918 {rgb=(0 .2 .2)} Face 1076 6360 6339 6547 {rgb=(0 .2 .2)} Face 1077 8768 8631 8641 {rgb=(0 .2 .2)} Face 1078 8751 8626 8581 {rgb=(0 .2 .2)} Face 1079 8893 8758 8676 {rgb=(0 .2 .2)} Face 1080 8969 8872 8879 {rgb=(0 .2 .2)} Face 1081 8757 8646 8828 {rgb=(0 .2 .2)} Face 1082 6082 5918 5925 {rgb=(0 .2 .2)} Face 1083 5999 6132 6115 {rgb=(0 .2 .2)} Face 1084 5892 5902 6054 {rgb=(0 .2 .2)} Face 1085 6470 6114 6548 {rgb=(0 .2 .2)} Face 1086 6032 5979 6298 {rgb=(0 .2 .2)} Face 1087 5989 6043 6303 {rgb=(0 .2 .2)} Face 1088 6519 6109 6429 {rgb=(0 .2 .2)} Face 1089 8602 8520 8522 {rgb=(0 .2 .2)} Face 1090 8211 8281 8339 {rgb=(0 .2 .2)} Face 1091 6877 6593 6702 {rgb=(0 .2 .2)} Face 1092 8933 9126 9211 {rgb=(0 .2 .2)} Face 1093 9158 9073 9013 {rgb=(0 .2 .2)} Face 1094 8539 8443 8536 {rgb=(0 .2 .2)} Face 1095 6260 6317 6809 {rgb=(0 .2 .2)} Face 1096 2406 2416 2278 {rgb=(0 .2 .2)} Face 1097 2464 2419 2295 {rgb=(0 .2 .2)} Face 1098 2369 2286 2151 {rgb=(0 .2 .2)} Face 1099 2166 2172 2074 {rgb=(0 .2 .2)} Face 1100 2216 2400 2287 {rgb=(0 .2 .2)} Face 1101 5121 5127 4956 {rgb=(0 .2 .2)} Face 1102 4911 5046 4926 {rgb=(0 .2 .2)} Face 1103 5143 5154 4985 {rgb=(0 .2 .2)} Face 1104 5552 5705 5329 {rgb=(0 .2 .2)} Face 1105 4492 4927 4575 {rgb=(0 .2 .2)} Face 1106 4748 5068 5008 {rgb=(0 .2 .2)} Face 1107 4997 5058 4744 {rgb=(0 .2 .2)} Face 1108 4933 4524 4617 {rgb=(0 .2 .2)} Face 1109 2525 2442 2523 {rgb=(0 .2 .2)} Face 1110 2711 2764 2834 {rgb=(0 .2 .2)} Face 1111 4339 4447 4169 {rgb=(0 .2 .2)} Face 1112 1834 1919 2112 {rgb=(0 .2 .2)} Face 1113 1972 1887 2031 {rgb=(0 .2 .2)} Face 1114 2588 2508 2605 {rgb=(0 .2 .2)} Face 1115 4234 4731 4814 {rgb=(0 .2 .2)} Face 1116 3742 3795 3703 {rgb=(1 1 1)} Face 1117 3847 3844 3850 {rgb=(1 1 1)} Face 1118 7251 7301 7340 {rgb=(1 1 1)} Face 1119 7199 7196 7194 {rgb=(1 1 1)} Face 1120 7391 7346 7342 {rgb=(1 1 1)} Face 1121 7251 7270 7194 {rgb=(1 1 1)} Face 1122 3701 3696 3655 {rgb=(1 1 1)} Face 1123 3850 3776 3795 {rgb=(1 1 1)} Face 1124 2577 2584 2500 {rgb=(0 0 0)} Face 1125 2496 2562 2570 {rgb=(0 0 0)} Face 1126 8463 8470 8543 {rgb=(0 0 0)} Face 1127 8485 8548 8479 {rgb=(0 0 0)} Face 1128 6152 6137 6035 {rgb=(0 0 0)} Face 1129 6250 6234 6131 {rgb=(0 0 0)} Face 1130 4905 4889 5004 {rgb=(0 0 0)} Face 1131 4912 4809 4792 {rgb=(0 0 0)} Face 1132 6083 6306 6533 {rgb=(1 0 0)} Face 1133 6588 6605 6377 {rgb=(1 0 0)} Face 1134 6367 6577 6534 {rgb=(1 0 0)} Face 1135 5700 5553 5707 {rgb=(1 0 0)} Face 1136 4955 4977 4710 {rgb=(1 0 0)} Face 1137 4669 4433 4452 {rgb=(1 0 0)} Face 1138 4881 4506 4464 {rgb=(1 0 0)} Face 1139 3979 4013 3992 {rgb=(0 0 0)} Face 1140 3979 4033 4013 {rgb=(0 0 0)} Face 1141 3979 4066 4033 {rgb=(0 0 0)} Face 1142 3979 4084 4066 {rgb=(0 0 0)} Face 1143 3979 4114 4084 {rgb=(0 0 0)} Face 1144 3979 4128 4114 {rgb=(0 0 0)} Face 1145 3979 4147 4128 {rgb=(0 0 0)} Face 1146 3979 4159 4147 {rgb=(0 0 0)} Face 1147 3979 4167 4159 {rgb=(0 0 0)} Face 1148 3979 4168 4167 {rgb=(0 0 0)} Face 1149 3979 4166 4168 {rgb=(0 0 0)} Face 1150 3979 4158 4166 {rgb=(0 0 0)} Face 1151 3979 4146 4158 {rgb=(0 0 0)} Face 1152 3979 4127 4146 {rgb=(0 0 0)} Face 1153 3979 4113 4127 {rgb=(0 0 0)} Face 1154 3979 4083 4113 {rgb=(0 0 0)} Face 1155 3979 4065 4083 {rgb=(0 0 0)} Face 1156 3979 4032 4065 {rgb=(0 0 0)} Face 1157 3979 4012 4032 {rgb=(0 0 0)} Face 1158 3979 3991 4012 {rgb=(0 0 0)} Face 1159 3979 3953 3991 {rgb=(0 0 0)} Face 1160 3979 3919 3953 {rgb=(0 0 0)} Face 1161 3979 3896 3919 {rgb=(0 0 0)} Face 1162 3979 3875 3896 {rgb=(0 0 0)} Face 1163 3979 3858 3875 {rgb=(0 0 0)} Face 1164 3979 3838 3858 {rgb=(0 0 0)} Face 1165 3979 3805 3838 {rgb=(0 0 0)} Face 1166 3979 3793 3805 {rgb=(0 0 0)} Face 1167 3979 3768 3793 {rgb=(0 0 0)} Face 1168 3979 3766 3768 {rgb=(0 0 0)} Face 1169 3979 3769 3766 {rgb=(0 0 0)} Face 1170 3979 3794 3769 {rgb=(0 0 0)} Face 1171 3979 3806 3794 {rgb=(0 0 0)} Face 1172 3979 3839 3806 {rgb=(0 0 0)} Face 1173 3979 3859 3839 {rgb=(0 0 0)} Face 1174 3979 3876 3859 {rgb=(0 0 0)} Face 1175 3979 3897 3876 {rgb=(0 0 0)} Face 1176 3979 3920 3897 {rgb=(0 0 0)} Face 1177 3979 3954 3920 {rgb=(0 0 0)} Face 1178 3979 3992 3954 {rgb=(0 0 0)} Face 1179 672 757 751 {rgb=(.6 .4 .4)} Face 1180 751 662 672 {rgb=(.6 .4 .4)} Face 1181 617 587 703 {rgb=(.6 .4 .4)} Face 1182 703 714 617 {rgb=(.6 .4 .4)} Face 1183 583 632 635 {rgb=(.6 .4 .4)} Face 1184 635 574 583 {rgb=(.6 .4 .4)} Face 1185 574 635 622 {rgb=(.6 .4 .4)} Face 1186 622 606 574 {rgb=(.6 .4 .4)} Face 1187 619 643 583 {rgb=(.6 .4 .4)} Face 1188 583 574 619 {rgb=(.6 .4 .4)} Face 1189 334 298 311 {rgb=(.6 .4 .4)} Face 1190 311 232 334 {rgb=(.6 .4 .4)} Face 1191 21 15 11 {rgb=(.6 .4 .4)} Face 1192 11 32 21 {rgb=(.6 .4 .4)} Face 1193 160 231 167 {rgb=(.6 .4 .4)} Face 1194 167 92 160 {rgb=(.6 .4 .4)} Face 1195 289 223 306 {rgb=(.6 .4 .4)} Face 1196 306 344 289 {rgb=(.6 .4 .4)} Face 1197 10373 10383 10294 {rgb=(.6 .4 .4)} Face 1198 10294 10288 10373 {rgb=(.6 .4 .4)} Face 1199 10428 10331 10342 {rgb=(.6 .4 .4)} Face 1200 10342 10458 10428 {rgb=(.6 .4 .4)} Face 1201 10471 10410 10413 {rgb=(.6 .4 .4)} Face 1202 10413 10462 10471 {rgb=(.6 .4 .4)} Face 1203 10439 10423 10410 {rgb=(.6 .4 .4)} Face 1204 10410 10471 10439 {rgb=(.6 .4 .4)} Face 1205 10426 10471 10462 {rgb=(.6 .4 .4)} Face 1206 10462 10402 10426 {rgb=(.6 .4 .4)} Face 1207 10711 10813 10734 {rgb=(.6 .4 .4)} Face 1208 10734 10747 10711 {rgb=(.6 .4 .4)} Face 1209 11024 11013 11034 {rgb=(.6 .4 .4)} Face 1210 11034 11030 11024 {rgb=(.6 .4 .4)} Face 1211 10885 10953 10878 {rgb=(.6 .4 .4)} Face 1212 10878 10814 10885 {rgb=(.6 .4 .4)} Face 1213 10756 10701 10739 {rgb=(.6 .4 .4)} Face 1214 10739 10822 10756 {rgb=(.6 .4 .4)} Face 1215 67 52 59 {rgb=(.6 .4 .4)} Face 1216 59 78 67 {rgb=(.6 .4 .4)} Face 1217 3473 3566 3509 {rgb=(.7 .4 .4)} Face 1218 3509 3419 3473 {rgb=(.7 .4 .4)} Face 1219 8493 8472 8544 {rgb=(.7 .4 .4)} Face 1220 8544 8484 8493 {rgb=(.7 .4 .4)} Face 1221 2798 2750 2961 {rgb=(.7 .4 .4)} Face 1222 2961 2778 2798 {rgb=(.7 .4 .4)} Face 1223 4896 4847 4887 {rgb=(.7 .4 .4)} Face 1224 4887 4904 4896 {rgb=(.7 .4 .4)} Face 1225 8948 8757 8828 {rgb=(0 .2 .2)} Face 1226 8828 8840 8948 {rgb=(0 .2 .2)} Face 1227 6018 6045 6450 {rgb=(0 .2 .2)} Face 1228 6450 6245 6018 {rgb=(0 .2 .2)} Face 1229 6799 6260 6809 {rgb=(0 .2 .2)} Face 1230 6809 7014 6799 {rgb=(0 .2 .2)} Face 1231 2096 2202 2216 {rgb=(0 .2 .2)} Face 1232 2216 2287 2096 {rgb=(0 .2 .2)} Face 1233 5022 4798 4596 {rgb=(0 .2 .2)} Face 1234 4596 4995 5022 {rgb=(0 .2 .2)} Face 1235 4302 4089 4234 {rgb=(0 .2 .2)} Face 1236 4234 4814 4302 {rgb=(0 .2 .2)} Face 1237 6357 6339 6533 {rgb=(1 0 0)} Face 1238 6533 6474 6357 {rgb=(1 0 0)} Face 1239 4691 4571 4507 {rgb=(1 0 0)} Face 1240 4507 4710 4691 {rgb=(1 0 0)} Face 1241 4237 4286 11045 {rgb=(.5 .5 .5)} Face 1242 4286 4078 11045 {rgb=(.5 .5 .5)} Face 1243 4078 4037 11045 {rgb=(.5 .5 .5)} Face 1244 4037 4237 11045 {rgb=(.5 .5 .5)} Face 1245 4037 4078 11046 {rgb=(.5 .5 .5)} Face 1246 4078 3905 11046 {rgb=(.5 .5 .5)} Face 1247 3905 3868 11046 {rgb=(.5 .5 .5)} Face 1248 3868 4037 11046 {rgb=(.5 .5 .5)} Face 1249 3868 3905 11047 {rgb=(.5 .5 .5)} Face 1250 3905 3710 11047 {rgb=(.5 .5 .5)} Face 1251 3710 3666 11047 {rgb=(.5 .5 .5)} Face 1252 3666 3868 11047 {rgb=(.5 .5 .5)} Face 1253 3666 3710 11048 {rgb=(.5 .5 .5)} Face 1254 3710 3553 11048 {rgb=(.5 .5 .5)} Face 1255 3553 3518 11048 {rgb=(.5 .5 .5)} Face 1256 3518 3666 11048 {rgb=(.5 .5 .5)} Face 1257 3518 3553 11049 {rgb=(.5 .5 .5)} Face 1258 3553 3408 11049 {rgb=(.5 .5 .5)} Face 1259 3408 3369 11049 {rgb=(.5 .5 .5)} Face 1260 3369 3518 11049 {rgb=(.5 .5 .5)} Face 1261 3369 3408 11050 {rgb=(.5 .5 .5)} Face 1262 3408 3267 11050 {rgb=(.5 .5 .5)} Face 1263 3267 3226 11050 {rgb=(.5 .5 .5)} Face 1264 3226 3369 11050 {rgb=(.5 .5 .5)} Face 1265 3226 3267 11051 {rgb=(.5 .5 .5)} Face 1266 3267 3156 11051 {rgb=(.5 .5 .5)} Face 1267 3156 3116 11051 {rgb=(.5 .5 .5)} Face 1268 3116 3226 11051 {rgb=(.5 .5 .5)} Face 1269 3116 3156 11052 {rgb=(.5 .5 .5)} Face 1270 3156 3069 11052 {rgb=(.5 .5 .5)} Face 1271 3069 3021 11052 {rgb=(.5 .5 .5)} Face 1272 3021 3116 11052 {rgb=(.5 .5 .5)} Face 1273 3021 3069 11053 {rgb=(.5 .5 .5)} Face 1274 3069 2998 11053 {rgb=(.5 .5 .5)} Face 1275 2998 2949 11053 {rgb=(.5 .5 .5)} Face 1276 2949 3021 11053 {rgb=(.5 .5 .5)} Face 1277 2949 2998 11054 {rgb=(.5 .5 .5)} Face 1278 2998 2980 11054 {rgb=(.5 .5 .5)} Face 1279 2980 2924 11054 {rgb=(.5 .5 .5)} Face 1280 2924 2949 11054 {rgb=(.5 .5 .5)} Face 1281 2924 2980 11055 {rgb=(.5 .5 .5)} Face 1282 2980 2997 11055 {rgb=(.5 .5 .5)} Face 1283 2997 2948 11055 {rgb=(.5 .5 .5)} Face 1284 2948 2924 11055 {rgb=(.5 .5 .5)} Face 1285 2948 2997 11056 {rgb=(.5 .5 .5)} Face 1286 2997 3068 11056 {rgb=(.5 .5 .5)} Face 1287 3068 3020 11056 {rgb=(.5 .5 .5)} Face 1288 3020 2948 11056 {rgb=(.5 .5 .5)} Face 1289 3020 3068 11057 {rgb=(.5 .5 .5)} Face 1290 3068 3155 11057 {rgb=(.5 .5 .5)} Face 1291 3155 3115 11057 {rgb=(.5 .5 .5)} Face 1292 3115 3020 11057 {rgb=(.5 .5 .5)} Face 1293 3115 3155 11058 {rgb=(.5 .5 .5)} Face 1294 3155 3266 11058 {rgb=(.5 .5 .5)} Face 1295 3266 3225 11058 {rgb=(.5 .5 .5)} Face 1296 3225 3115 11058 {rgb=(.5 .5 .5)} Face 1297 3225 3266 11059 {rgb=(.5 .5 .5)} Face 1298 3266 3407 11059 {rgb=(.5 .5 .5)} Face 1299 3407 3368 11059 {rgb=(.5 .5 .5)} Face 1300 3368 3225 11059 {rgb=(.5 .5 .5)} Face 1301 3368 3407 11060 {rgb=(.5 .5 .5)} Face 1302 3407 3552 11060 {rgb=(.5 .5 .5)} Face 1303 3552 3517 11060 {rgb=(.5 .5 .5)} Face 1304 3517 3368 11060 {rgb=(.5 .5 .5)} Face 1305 3517 3552 11061 {rgb=(.5 .5 .5)} Face 1306 3552 3709 11061 {rgb=(.5 .5 .5)} Face 1307 3709 3665 11061 {rgb=(.5 .5 .5)} Face 1308 3665 3517 11061 {rgb=(.5 .5 .5)} Face 1309 3665 3709 11062 {rgb=(.5 .5 .5)} Face 1310 3709 3904 11062 {rgb=(.5 .5 .5)} Face 1311 3904 3867 11062 {rgb=(.5 .5 .5)} Face 1312 3867 3665 11062 {rgb=(.5 .5 .5)} Face 1313 3867 3904 11063 {rgb=(.5 .5 .5)} Face 1314 3904 4077 11063 {rgb=(.5 .5 .5)} Face 1315 4077 4036 11063 {rgb=(.5 .5 .5)} Face 1316 4036 3867 11063 {rgb=(.5 .5 .5)} Face 1317 4036 4077 11064 {rgb=(.5 .5 .5)} Face 1318 4077 4285 11064 {rgb=(.5 .5 .5)} Face 1319 4285 4236 11064 {rgb=(.5 .5 .5)} Face 1320 4236 4036 11064 {rgb=(.5 .5 .5)} Face 1321 4236 4285 11065 {rgb=(.5 .5 .5)} Face 1322 4285 4477 11065 {rgb=(.5 .5 .5)} Face 1323 4477 4415 11065 {rgb=(.5 .5 .5)} Face 1324 4415 4236 11065 {rgb=(.5 .5 .5)} Face 1325 4415 4477 11066 {rgb=(.5 .5 .5)} Face 1326 4477 4776 11066 {rgb=(.5 .5 .5)} Face 1327 4776 4707 11066 {rgb=(.5 .5 .5)} Face 1328 4707 4415 11066 {rgb=(.5 .5 .5)} Face 1329 4707 4776 11067 {rgb=(.5 .5 .5)} Face 1330 4776 5020 11067 {rgb=(.5 .5 .5)} Face 1331 5020 4952 11067 {rgb=(.5 .5 .5)} Face 1332 4952 4707 11067 {rgb=(.5 .5 .5)} Face 1333 4952 5020 11068 {rgb=(.5 .5 .5)} Face 1334 5020 5203 11068 {rgb=(.5 .5 .5)} Face 1335 5203 5158 11068 {rgb=(.5 .5 .5)} Face 1336 5158 4952 11068 {rgb=(.5 .5 .5)} Face 1337 5158 5203 11069 {rgb=(.5 .5 .5)} Face 1338 5203 5401 11069 {rgb=(.5 .5 .5)} Face 1339 5401 5318 11069 {rgb=(.5 .5 .5)} Face 1340 5318 5158 11069 {rgb=(.5 .5 .5)} Face 1341 5318 5401 11070 {rgb=(.5 .5 .5)} Face 1342 5401 5555 11070 {rgb=(.5 .5 .5)} Face 1343 5555 5473 11070 {rgb=(.5 .5 .5)} Face 1344 5473 5318 11070 {rgb=(.5 .5 .5)} Face 1345 5473 5555 11071 {rgb=(.5 .5 .5)} Face 1346 5555 5666 11071 {rgb=(.5 .5 .5)} Face 1347 5666 5588 11071 {rgb=(.5 .5 .5)} Face 1348 5588 5473 11071 {rgb=(.5 .5 .5)} Face 1349 5588 5666 11072 {rgb=(.5 .5 .5)} Face 1350 5666 5753 11072 {rgb=(.5 .5 .5)} Face 1351 5753 5678 11072 {rgb=(.5 .5 .5)} Face 1352 5678 5588 11072 {rgb=(.5 .5 .5)} Face 1353 5678 5753 11073 {rgb=(.5 .5 .5)} Face 1354 5753 5820 11073 {rgb=(.5 .5 .5)} Face 1355 5820 5734 11073 {rgb=(.5 .5 .5)} Face 1356 5734 5678 11073 {rgb=(.5 .5 .5)} Face 1357 5734 5820 11074 {rgb=(.5 .5 .5)} Face 1358 5820 5843 11074 {rgb=(.5 .5 .5)} Face 1359 5843 5747 11074 {rgb=(.5 .5 .5)} Face 1360 5747 5734 11074 {rgb=(.5 .5 .5)} Face 1361 5747 5843 11075 {rgb=(.5 .5 .5)} Face 1362 5843 5821 11075 {rgb=(.5 .5 .5)} Face 1363 5821 5735 11075 {rgb=(.5 .5 .5)} Face 1364 5735 5747 11075 {rgb=(.5 .5 .5)} Face 1365 5735 5821 11076 {rgb=(.5 .5 .5)} Face 1366 5821 5754 11076 {rgb=(.5 .5 .5)} Face 1367 5754 5679 11076 {rgb=(.5 .5 .5)} Face 1368 5679 5735 11076 {rgb=(.5 .5 .5)} Face 1369 5679 5754 11077 {rgb=(.5 .5 .5)} Face 1370 5754 5667 11077 {rgb=(.5 .5 .5)} Face 1371 5667 5589 11077 {rgb=(.5 .5 .5)} Face 1372 5589 5679 11077 {rgb=(.5 .5 .5)} Face 1373 5589 5667 11078 {rgb=(.5 .5 .5)} Face 1374 5667 5556 11078 {rgb=(.5 .5 .5)} Face 1375 5556 5474 11078 {rgb=(.5 .5 .5)} Face 1376 5474 5589 11078 {rgb=(.5 .5 .5)} Face 1377 5474 5556 11079 {rgb=(.5 .5 .5)} Face 1378 5556 5402 11079 {rgb=(.5 .5 .5)} Face 1379 5402 5319 11079 {rgb=(.5 .5 .5)} Face 1380 5319 5474 11079 {rgb=(.5 .5 .5)} Face 1381 5319 5402 11080 {rgb=(.5 .5 .5)} Face 1382 5402 5204 11080 {rgb=(.5 .5 .5)} Face 1383 5204 5159 11080 {rgb=(.5 .5 .5)} Face 1384 5159 5319 11080 {rgb=(.5 .5 .5)} Face 1385 5159 5204 11081 {rgb=(.5 .5 .5)} Face 1386 5204 5021 11081 {rgb=(.5 .5 .5)} Face 1387 5021 4953 11081 {rgb=(.5 .5 .5)} Face 1388 4953 5159 11081 {rgb=(.5 .5 .5)} Face 1389 4953 5021 11082 {rgb=(.5 .5 .5)} Face 1390 5021 4777 11082 {rgb=(.5 .5 .5)} Face 1391 4777 4708 11082 {rgb=(.5 .5 .5)} Face 1392 4708 4953 11082 {rgb=(.5 .5 .5)} Face 1393 4708 4777 11083 {rgb=(.5 .5 .5)} Face 1394 4777 4478 11083 {rgb=(.5 .5 .5)} Face 1395 4478 4416 11083 {rgb=(.5 .5 .5)} Face 1396 4416 4708 11083 {rgb=(.5 .5 .5)} Face 1397 4416 4478 11084 {rgb=(.5 .5 .5)} Face 1398 4478 4286 11084 {rgb=(.5 .5 .5)} Face 1399 4286 4237 11084 {rgb=(.5 .5 .5)} Face 1400 4237 4416 11084 {rgb=(.5 .5 .5)} Face 1401 4185 4237 11085 {rgb=(.5 .5 .5)} Face 1402 4237 4037 11085 {rgb=(.5 .5 .5)} Face 1403 4037 4006 11085 {rgb=(.5 .5 .5)} Face 1404 4006 4185 11085 {rgb=(.5 .5 .5)} Face 1405 4006 4037 11086 {rgb=(.5 .5 .5)} Face 1406 4037 3868 11086 {rgb=(.5 .5 .5)} Face 1407 3868 3836 11086 {rgb=(.5 .5 .5)} Face 1408 3836 4006 11086 {rgb=(.5 .5 .5)} Face 1409 3836 3868 11087 {rgb=(.5 .5 .5)} Face 1410 3868 3666 11087 {rgb=(.5 .5 .5)} Face 1411 3666 3646 11087 {rgb=(.5 .5 .5)} Face 1412 3646 3836 11087 {rgb=(.5 .5 .5)} Face 1413 3646 3666 11088 {rgb=(.5 .5 .5)} Face 1414 3666 3518 11088 {rgb=(.5 .5 .5)} Face 1415 3518 3500 11088 {rgb=(.5 .5 .5)} Face 1416 3500 3646 11088 {rgb=(.5 .5 .5)} Face 1417 3500 3518 11089 {rgb=(.5 .5 .5)} Face 1418 3518 3369 11089 {rgb=(.5 .5 .5)} Face 1419 3369 3351 11089 {rgb=(.5 .5 .5)} Face 1420 3351 3500 11089 {rgb=(.5 .5 .5)} Face 1421 3351 3369 11090 {rgb=(.5 .5 .5)} Face 1422 3369 3226 11090 {rgb=(.5 .5 .5)} Face 1423 3226 3214 11090 {rgb=(.5 .5 .5)} Face 1424 3214 3351 11090 {rgb=(.5 .5 .5)} Face 1425 3214 3226 11091 {rgb=(.5 .5 .5)} Face 1426 3226 3116 11091 {rgb=(.5 .5 .5)} Face 1427 3116 3104 11091 {rgb=(.5 .5 .5)} Face 1428 3104 3214 11091 {rgb=(.5 .5 .5)} Face 1429 3104 3116 11092 {rgb=(.5 .5 .5)} Face 1430 3116 3021 11092 {rgb=(.5 .5 .5)} Face 1431 3021 3015 11092 {rgb=(.5 .5 .5)} Face 1432 3015 3104 11092 {rgb=(.5 .5 .5)} Face 1433 3015 3021 11093 {rgb=(.5 .5 .5)} Face 1434 3021 2949 11093 {rgb=(.5 .5 .5)} Face 1435 2949 2943 11093 {rgb=(.5 .5 .5)} Face 1436 2943 3015 11093 {rgb=(.5 .5 .5)} Face 1437 2943 2949 11094 {rgb=(.5 .5 .5)} Face 1438 2949 2924 11094 {rgb=(.5 .5 .5)} Face 1439 2924 2921 11094 {rgb=(.5 .5 .5)} Face 1440 2921 2943 11094 {rgb=(.5 .5 .5)} Face 1441 2921 2924 11095 {rgb=(.5 .5 .5)} Face 1442 2924 2948 11095 {rgb=(.5 .5 .5)} Face 1443 2948 2942 11095 {rgb=(.5 .5 .5)} Face 1444 2942 2921 11095 {rgb=(.5 .5 .5)} Face 1445 2942 2948 11096 {rgb=(.5 .5 .5)} Face 1446 2948 3020 11096 {rgb=(.5 .5 .5)} Face 1447 3020 3014 11096 {rgb=(.5 .5 .5)} Face 1448 3014 2942 11096 {rgb=(.5 .5 .5)} Face 1449 3014 3020 11097 {rgb=(.5 .5 .5)} Face 1450 3020 3115 11097 {rgb=(.5 .5 .5)} Face 1451 3115 3103 11097 {rgb=(.5 .5 .5)} Face 1452 3103 3014 11097 {rgb=(.5 .5 .5)} Face 1453 3103 3115 11098 {rgb=(.5 .5 .5)} Face 1454 3115 3225 11098 {rgb=(.5 .5 .5)} Face 1455 3225 3213 11098 {rgb=(.5 .5 .5)} Face 1456 3213 3103 11098 {rgb=(.5 .5 .5)} Face 1457 3213 3225 11099 {rgb=(.5 .5 .5)} Face 1458 3225 3368 11099 {rgb=(.5 .5 .5)} Face 1459 3368 3350 11099 {rgb=(.5 .5 .5)} Face 1460 3350 3213 11099 {rgb=(.5 .5 .5)} Face 1461 3350 3368 11100 {rgb=(.5 .5 .5)} Face 1462 3368 3517 11100 {rgb=(.5 .5 .5)} Face 1463 3517 3499 11100 {rgb=(.5 .5 .5)} Face 1464 3499 3350 11100 {rgb=(.5 .5 .5)} Face 1465 3499 3517 11101 {rgb=(.5 .5 .5)} Face 1466 3517 3665 11101 {rgb=(.5 .5 .5)} Face 1467 3665 3645 11101 {rgb=(.5 .5 .5)} Face 1468 3645 3499 11101 {rgb=(.5 .5 .5)} Face 1469 3645 3665 11102 {rgb=(.5 .5 .5)} Face 1470 3665 3867 11102 {rgb=(.5 .5 .5)} Face 1471 3867 3835 11102 {rgb=(.5 .5 .5)} Face 1472 3835 3645 11102 {rgb=(.5 .5 .5)} Face 1473 3835 3867 11103 {rgb=(.5 .5 .5)} Face 1474 3867 4036 11103 {rgb=(.5 .5 .5)} Face 1475 4036 4005 11103 {rgb=(.5 .5 .5)} Face 1476 4005 3835 11103 {rgb=(.5 .5 .5)} Face 1477 4005 4036 11104 {rgb=(.5 .5 .5)} Face 1478 4036 4236 11104 {rgb=(.5 .5 .5)} Face 1479 4236 4184 11104 {rgb=(.5 .5 .5)} Face 1480 4184 4005 11104 {rgb=(.5 .5 .5)} Face 1481 4184 4236 11105 {rgb=(.5 .5 .5)} Face 1482 4236 4415 11105 {rgb=(.5 .5 .5)} Face 1483 4415 4361 11105 {rgb=(.5 .5 .5)} Face 1484 4361 4184 11105 {rgb=(.5 .5 .5)} Face 1485 4361 4415 11106 {rgb=(.5 .5 .5)} Face 1486 4415 4707 11106 {rgb=(.5 .5 .5)} Face 1487 4707 4615 11106 {rgb=(.5 .5 .5)} Face 1488 4615 4361 11106 {rgb=(.5 .5 .5)} Face 1489 4615 4707 11107 {rgb=(.5 .5 .5)} Face 1490 4707 4952 11107 {rgb=(.5 .5 .5)} Face 1491 4952 4876 11107 {rgb=(.5 .5 .5)} Face 1492 4876 4615 11107 {rgb=(.5 .5 .5)} Face 1493 4876 4952 11108 {rgb=(.5 .5 .5)} Face 1494 4952 5158 11108 {rgb=(.5 .5 .5)} Face 1495 5158 5066 11108 {rgb=(.5 .5 .5)} Face 1496 5066 4876 11108 {rgb=(.5 .5 .5)} Face 1497 5066 5158 11109 {rgb=(.5 .5 .5)} Face 1498 5158 5318 11109 {rgb=(.5 .5 .5)} Face 1499 5318 5220 11109 {rgb=(.5 .5 .5)} Face 1500 5220 5066 11109 {rgb=(.5 .5 .5)} Face 1501 5220 5318 11110 {rgb=(.5 .5 .5)} Face 1502 5318 5473 11110 {rgb=(.5 .5 .5)} Face 1503 5473 5374 11110 {rgb=(.5 .5 .5)} Face 1504 5374 5220 11110 {rgb=(.5 .5 .5)} Face 1505 5374 5473 11111 {rgb=(.5 .5 .5)} Face 1506 5473 5588 11111 {rgb=(.5 .5 .5)} Face 1507 5588 5483 11111 {rgb=(.5 .5 .5)} Face 1508 5483 5374 11111 {rgb=(.5 .5 .5)} Face 1509 5483 5588 11112 {rgb=(.5 .5 .5)} Face 1510 5588 5678 11112 {rgb=(.5 .5 .5)} Face 1511 5678 5575 11112 {rgb=(.5 .5 .5)} Face 1512 5575 5483 11112 {rgb=(.5 .5 .5)} Face 1513 5575 5678 11113 {rgb=(.5 .5 .5)} Face 1514 5678 5734 11113 {rgb=(.5 .5 .5)} Face 1515 5734 5622 11113 {rgb=(.5 .5 .5)} Face 1516 5622 5575 11113 {rgb=(.5 .5 .5)} Face 1517 5622 5734 11114 {rgb=(.5 .5 .5)} Face 1518 5734 5747 11114 {rgb=(.5 .5 .5)} Face 1519 5747 5636 11114 {rgb=(.5 .5 .5)} Face 1520 5636 5622 11114 {rgb=(.5 .5 .5)} Face 1521 5636 5747 11115 {rgb=(.5 .5 .5)} Face 1522 5747 5735 11115 {rgb=(.5 .5 .5)} Face 1523 5735 5623 11115 {rgb=(.5 .5 .5)} Face 1524 5623 5636 11115 {rgb=(.5 .5 .5)} Face 1525 5623 5735 11116 {rgb=(.5 .5 .5)} Face 1526 5735 5679 11116 {rgb=(.5 .5 .5)} Face 1527 5679 5576 11116 {rgb=(.5 .5 .5)} Face 1528 5576 5623 11116 {rgb=(.5 .5 .5)} Face 1529 5576 5679 11117 {rgb=(.5 .5 .5)} Face 1530 5679 5589 11117 {rgb=(.5 .5 .5)} Face 1531 5589 5484 11117 {rgb=(.5 .5 .5)} Face 1532 5484 5576 11117 {rgb=(.5 .5 .5)} Face 1533 5484 5589 11118 {rgb=(.5 .5 .5)} Face 1534 5589 5474 11118 {rgb=(.5 .5 .5)} Face 1535 5474 5375 11118 {rgb=(.5 .5 .5)} Face 1536 5375 5484 11118 {rgb=(.5 .5 .5)} Face 1537 5375 5474 11119 {rgb=(.5 .5 .5)} Face 1538 5474 5319 11119 {rgb=(.5 .5 .5)} Face 1539 5319 5221 11119 {rgb=(.5 .5 .5)} Face 1540 5221 5375 11119 {rgb=(.5 .5 .5)} Face 1541 5221 5319 11120 {rgb=(.5 .5 .5)} Face 1542 5319 5159 11120 {rgb=(.5 .5 .5)} Face 1543 5159 5067 11120 {rgb=(.5 .5 .5)} Face 1544 5067 5221 11120 {rgb=(.5 .5 .5)} Face 1545 5067 5159 11121 {rgb=(.5 .5 .5)} Face 1546 5159 4953 11121 {rgb=(.5 .5 .5)} Face 1547 4953 4877 11121 {rgb=(.5 .5 .5)} Face 1548 4877 5067 11121 {rgb=(.5 .5 .5)} Face 1549 4877 4953 11122 {rgb=(.5 .5 .5)} Face 1550 4953 4708 11122 {rgb=(.5 .5 .5)} Face 1551 4708 4616 11122 {rgb=(.5 .5 .5)} Face 1552 4616 4877 11122 {rgb=(.5 .5 .5)} Face 1553 4616 4708 11123 {rgb=(.5 .5 .5)} Face 1554 4708 4416 11123 {rgb=(.5 .5 .5)} Face 1555 4416 4362 11123 {rgb=(.5 .5 .5)} Face 1556 4362 4616 11123 {rgb=(.5 .5 .5)} Face 1557 4362 4416 11124 {rgb=(.5 .5 .5)} Face 1558 4416 4237 11124 {rgb=(.5 .5 .5)} Face 1559 4237 4185 11124 {rgb=(.5 .5 .5)} Face 1560 4185 4362 11124 {rgb=(.5 .5 .5)} Face 1561 4135 4185 11125 {rgb=(.5 .5 .5)} Face 1562 4185 4006 11125 {rgb=(.5 .5 .5)} Face 1563 4006 3970 11125 {rgb=(.5 .5 .5)} Face 1564 3970 4135 11125 {rgb=(.5 .5 .5)} Face 1565 3970 4006 11126 {rgb=(.5 .5 .5)} Face 1566 4006 3836 11126 {rgb=(.5 .5 .5)} Face 1567 3836 3803 11126 {rgb=(.5 .5 .5)} Face 1568 3803 3970 11126 {rgb=(.5 .5 .5)} Face 1569 3803 3836 11127 {rgb=(.5 .5 .5)} Face 1570 3836 3646 11127 {rgb=(.5 .5 .5)} Face 1571 3646 3634 11127 {rgb=(.5 .5 .5)} Face 1572 3634 3803 11127 {rgb=(.5 .5 .5)} Face 1573 3634 3646 11128 {rgb=(.5 .5 .5)} Face 1574 3646 3500 11128 {rgb=(.5 .5 .5)} Face 1575 3500 3498 11128 {rgb=(.5 .5 .5)} Face 1576 3498 3634 11128 {rgb=(.5 .5 .5)} Face 1577 3498 3500 11129 {rgb=(.5 .5 .5)} Face 1578 3500 3351 11129 {rgb=(.5 .5 .5)} Face 1579 3351 3360 11129 {rgb=(.5 .5 .5)} Face 1580 3360 3498 11129 {rgb=(.5 .5 .5)} Face 1581 3360 3351 11130 {rgb=(.5 .5 .5)} Face 1582 3351 3214 11130 {rgb=(.5 .5 .5)} Face 1583 3214 3235 11130 {rgb=(.5 .5 .5)} Face 1584 3235 3360 11130 {rgb=(.5 .5 .5)} Face 1585 3235 3214 11131 {rgb=(.5 .5 .5)} Face 1586 3214 3104 11131 {rgb=(.5 .5 .5)} Face 1587 3104 3135 11131 {rgb=(.5 .5 .5)} Face 1588 3135 3235 11131 {rgb=(.5 .5 .5)} Face 1589 3135 3104 11132 {rgb=(.5 .5 .5)} Face 1590 3104 3015 11132 {rgb=(.5 .5 .5)} Face 1591 3015 3052 11132 {rgb=(.5 .5 .5)} Face 1592 3052 3135 11132 {rgb=(.5 .5 .5)} Face 1593 3052 3015 11133 {rgb=(.5 .5 .5)} Face 1594 3015 2943 11133 {rgb=(.5 .5 .5)} Face 1595 2943 2995 11133 {rgb=(.5 .5 .5)} Face 1596 2995 3052 11133 {rgb=(.5 .5 .5)} Face 1597 2995 2943 11134 {rgb=(.5 .5 .5)} Face 1598 2943 2921 11134 {rgb=(.5 .5 .5)} Face 1599 2921 2975 11134 {rgb=(.5 .5 .5)} Face 1600 2975 2995 11134 {rgb=(.5 .5 .5)} Face 1601 2975 2921 11135 {rgb=(.5 .5 .5)} Face 1602 2921 2942 11135 {rgb=(.5 .5 .5)} Face 1603 2942 2994 11135 {rgb=(.5 .5 .5)} Face 1604 2994 2975 11135 {rgb=(.5 .5 .5)} Face 1605 2994 2942 11136 {rgb=(.5 .5 .5)} Face 1606 2942 3014 11136 {rgb=(.5 .5 .5)} Face 1607 3014 3051 11136 {rgb=(.5 .5 .5)} Face 1608 3051 2994 11136 {rgb=(.5 .5 .5)} Face 1609 3051 3014 11137 {rgb=(.5 .5 .5)} Face 1610 3014 3103 11137 {rgb=(.5 .5 .5)} Face 1611 3103 3134 11137 {rgb=(.5 .5 .5)} Face 1612 3134 3051 11137 {rgb=(.5 .5 .5)} Face 1613 3134 3103 11138 {rgb=(.5 .5 .5)} Face 1614 3103 3213 11138 {rgb=(.5 .5 .5)} Face 1615 3213 3234 11138 {rgb=(.5 .5 .5)} Face 1616 3234 3134 11138 {rgb=(.5 .5 .5)} Face 1617 3234 3213 11139 {rgb=(.5 .5 .5)} Face 1618 3213 3350 11139 {rgb=(.5 .5 .5)} Face 1619 3350 3359 11139 {rgb=(.5 .5 .5)} Face 1620 3359 3234 11139 {rgb=(.5 .5 .5)} Face 1621 3359 3350 11140 {rgb=(.5 .5 .5)} Face 1622 3350 3499 11140 {rgb=(.5 .5 .5)} Face 1623 3499 3497 11140 {rgb=(.5 .5 .5)} Face 1624 3497 3359 11140 {rgb=(.5 .5 .5)} Face 1625 3497 3499 11141 {rgb=(.5 .5 .5)} Face 1626 3499 3645 11141 {rgb=(.5 .5 .5)} Face 1627 3645 3633 11141 {rgb=(.5 .5 .5)} Face 1628 3633 3497 11141 {rgb=(.5 .5 .5)} Face 1629 3633 3645 11142 {rgb=(.5 .5 .5)} Face 1630 3645 3835 11142 {rgb=(.5 .5 .5)} Face 1631 3835 3802 11142 {rgb=(.5 .5 .5)} Face 1632 3802 3633 11142 {rgb=(.5 .5 .5)} Face 1633 3802 3835 11143 {rgb=(.5 .5 .5)} Face 1634 3835 4005 11143 {rgb=(.5 .5 .5)} Face 1635 4005 3969 11143 {rgb=(.5 .5 .5)} Face 1636 3969 3802 11143 {rgb=(.5 .5 .5)} Face 1637 3969 4005 11144 {rgb=(.5 .5 .5)} Face 1638 4005 4184 11144 {rgb=(.5 .5 .5)} Face 1639 4184 4134 11144 {rgb=(.5 .5 .5)} Face 1640 4134 3969 11144 {rgb=(.5 .5 .5)} Face 1641 4134 4184 11145 {rgb=(.5 .5 .5)} Face 1642 4184 4361 11145 {rgb=(.5 .5 .5)} Face 1643 4361 4308 11145 {rgb=(.5 .5 .5)} Face 1644 4308 4134 11145 {rgb=(.5 .5 .5)} Face 1645 4308 4361 11146 {rgb=(.5 .5 .5)} Face 1646 4361 4615 11146 {rgb=(.5 .5 .5)} Face 1647 4615 4489 11146 {rgb=(.5 .5 .5)} Face 1648 4489 4308 11146 {rgb=(.5 .5 .5)} Face 1649 4489 4615 11147 {rgb=(.5 .5 .5)} Face 1650 4615 4876 11147 {rgb=(.5 .5 .5)} Face 1651 4876 4756 11147 {rgb=(.5 .5 .5)} Face 1652 4756 4489 11147 {rgb=(.5 .5 .5)} Face 1653 4756 4876 11148 {rgb=(.5 .5 .5)} Face 1654 4876 5066 11148 {rgb=(.5 .5 .5)} Face 1655 5066 4958 11148 {rgb=(.5 .5 .5)} Face 1656 4958 4756 11148 {rgb=(.5 .5 .5)} Face 1657 4958 5066 11149 {rgb=(.5 .5 .5)} Face 1658 5066 5220 11149 {rgb=(.5 .5 .5)} Face 1659 5220 5122 11149 {rgb=(.5 .5 .5)} Face 1660 5122 4958 11149 {rgb=(.5 .5 .5)} Face 1661 5122 5220 11150 {rgb=(.5 .5 .5)} Face 1662 5220 5374 11150 {rgb=(.5 .5 .5)} Face 1663 5374 5246 11150 {rgb=(.5 .5 .5)} Face 1664 5246 5122 11150 {rgb=(.5 .5 .5)} Face 1665 5246 5374 11151 {rgb=(.5 .5 .5)} Face 1666 5374 5483 11151 {rgb=(.5 .5 .5)} Face 1667 5483 5357 11151 {rgb=(.5 .5 .5)} Face 1668 5357 5246 11151 {rgb=(.5 .5 .5)} Face 1669 5357 5483 11152 {rgb=(.5 .5 .5)} Face 1670 5483 5575 11152 {rgb=(.5 .5 .5)} Face 1671 5575 5445 11152 {rgb=(.5 .5 .5)} Face 1672 5445 5357 11152 {rgb=(.5 .5 .5)} Face 1673 5445 5575 11153 {rgb=(.5 .5 .5)} Face 1674 5575 5622 11153 {rgb=(.5 .5 .5)} Face 1675 5622 5479 11153 {rgb=(.5 .5 .5)} Face 1676 5479 5445 11153 {rgb=(.5 .5 .5)} Face 1677 5479 5622 11154 {rgb=(.5 .5 .5)} Face 1678 5622 5636 11154 {rgb=(.5 .5 .5)} Face 1679 5636 5489 11154 {rgb=(.5 .5 .5)} Face 1680 5489 5479 11154 {rgb=(.5 .5 .5)} Face 1681 5489 5636 11155 {rgb=(.5 .5 .5)} Face 1682 5636 5623 11155 {rgb=(.5 .5 .5)} Face 1683 5623 5480 11155 {rgb=(.5 .5 .5)} Face 1684 5480 5489 11155 {rgb=(.5 .5 .5)} Face 1685 5480 5623 11156 {rgb=(.5 .5 .5)} Face 1686 5623 5576 11156 {rgb=(.5 .5 .5)} Face 1687 5576 5446 11156 {rgb=(.5 .5 .5)} Face 1688 5446 5480 11156 {rgb=(.5 .5 .5)} Face 1689 5446 5576 11157 {rgb=(.5 .5 .5)} Face 1690 5576 5484 11157 {rgb=(.5 .5 .5)} Face 1691 5484 5358 11157 {rgb=(.5 .5 .5)} Face 1692 5358 5446 11157 {rgb=(.5 .5 .5)} Face 1693 5358 5484 11158 {rgb=(.5 .5 .5)} Face 1694 5484 5375 11158 {rgb=(.5 .5 .5)} Face 1695 5375 5247 11158 {rgb=(.5 .5 .5)} Face 1696 5247 5358 11158 {rgb=(.5 .5 .5)} Face 1697 5247 5375 11159 {rgb=(.5 .5 .5)} Face 1698 5375 5221 11159 {rgb=(.5 .5 .5)} Face 1699 5221 5123 11159 {rgb=(.5 .5 .5)} Face 1700 5123 5247 11159 {rgb=(.5 .5 .5)} Face 1701 5123 5221 11160 {rgb=(.5 .5 .5)} Face 1702 5221 5067 11160 {rgb=(.5 .5 .5)} Face 1703 5067 4959 11160 {rgb=(.5 .5 .5)} Face 1704 4959 5123 11160 {rgb=(.5 .5 .5)} Face 1705 4959 5067 11161 {rgb=(.5 .5 .5)} Face 1706 5067 4877 11161 {rgb=(.5 .5 .5)} Face 1707 4877 4757 11161 {rgb=(.5 .5 .5)} Face 1708 4757 4959 11161 {rgb=(.5 .5 .5)} Face 1709 4757 4877 11162 {rgb=(.5 .5 .5)} Face 1710 4877 4616 11162 {rgb=(.5 .5 .5)} Face 1711 4616 4490 11162 {rgb=(.5 .5 .5)} Face 1712 4490 4757 11162 {rgb=(.5 .5 .5)} Face 1713 4490 4616 11163 {rgb=(.5 .5 .5)} Face 1714 4616 4362 11163 {rgb=(.5 .5 .5)} Face 1715 4362 4309 11163 {rgb=(.5 .5 .5)} Face 1716 4309 4490 11163 {rgb=(.5 .5 .5)} Face 1717 4309 4362 11164 {rgb=(.5 .5 .5)} Face 1718 4362 4185 11164 {rgb=(.5 .5 .5)} Face 1719 4185 4135 11164 {rgb=(.5 .5 .5)} Face 1720 4135 4309 11164 {rgb=(.5 .5 .5)} Face 1721 4095 4135 11165 {rgb=(.5 .5 .5)} Face 1722 4135 3970 11165 {rgb=(.5 .5 .5)} Face 1723 3970 3950 11165 {rgb=(.5 .5 .5)} Face 1724 3950 4095 11165 {rgb=(.5 .5 .5)} Face 1725 3950 3970 11166 {rgb=(.5 .5 .5)} Face 1726 3970 3803 11166 {rgb=(.5 .5 .5)} Face 1727 3803 3781 11166 {rgb=(.5 .5 .5)} Face 1728 3781 3950 11166 {rgb=(.5 .5 .5)} Face 1729 3781 3803 11167 {rgb=(.5 .5 .5)} Face 1730 3803 3634 11167 {rgb=(.5 .5 .5)} Face 1731 3634 3638 11167 {rgb=(.5 .5 .5)} Face 1732 3638 3781 11167 {rgb=(.5 .5 .5)} Face 1733 3638 3634 11168 {rgb=(.5 .5 .5)} Face 1734 3634 3498 11168 {rgb=(.5 .5 .5)} Face 1735 3498 3516 11168 {rgb=(.5 .5 .5)} Face 1736 3516 3638 11168 {rgb=(.5 .5 .5)} Face 1737 3516 3498 11169 {rgb=(.5 .5 .5)} Face 1738 3498 3360 11169 {rgb=(.5 .5 .5)} Face 1739 3360 3397 11169 {rgb=(.5 .5 .5)} Face 1740 3397 3516 11169 {rgb=(.5 .5 .5)} Face 1741 3397 3360 11170 {rgb=(.5 .5 .5)} Face 1742 3360 3235 11170 {rgb=(.5 .5 .5)} Face 1743 3235 3279 11170 {rgb=(.5 .5 .5)} Face 1744 3279 3397 11170 {rgb=(.5 .5 .5)} Face 1745 3279 3235 11171 {rgb=(.5 .5 .5)} Face 1746 3235 3135 11171 {rgb=(.5 .5 .5)} Face 1747 3135 3194 11171 {rgb=(.5 .5 .5)} Face 1748 3194 3279 11171 {rgb=(.5 .5 .5)} Face 1749 3194 3135 11172 {rgb=(.5 .5 .5)} Face 1750 3135 3052 11172 {rgb=(.5 .5 .5)} Face 1751 3052 3125 11172 {rgb=(.5 .5 .5)} Face 1752 3125 3194 11172 {rgb=(.5 .5 .5)} Face 1753 3125 3052 11173 {rgb=(.5 .5 .5)} Face 1754 3052 2995 11173 {rgb=(.5 .5 .5)} Face 1755 2995 3078 11173 {rgb=(.5 .5 .5)} Face 1756 3078 3125 11173 {rgb=(.5 .5 .5)} Face 1757 3078 2995 11174 {rgb=(.5 .5 .5)} Face 1758 2995 2975 11174 {rgb=(.5 .5 .5)} Face 1759 2975 3065 11174 {rgb=(.5 .5 .5)} Face 1760 3065 3078 11174 {rgb=(.5 .5 .5)} Face 1761 3065 2975 11175 {rgb=(.5 .5 .5)} Face 1762 2975 2994 11175 {rgb=(.5 .5 .5)} Face 1763 2994 3077 11175 {rgb=(.5 .5 .5)} Face 1764 3077 3065 11175 {rgb=(.5 .5 .5)} Face 1765 3077 2994 11176 {rgb=(.5 .5 .5)} Face 1766 2994 3051 11176 {rgb=(.5 .5 .5)} Face 1767 3051 3124 11176 {rgb=(.5 .5 .5)} Face 1768 3124 3077 11176 {rgb=(.5 .5 .5)} Face 1769 3124 3051 11177 {rgb=(.5 .5 .5)} Face 1770 3051 3134 11177 {rgb=(.5 .5 .5)} Face 1771 3134 3193 11177 {rgb=(.5 .5 .5)} Face 1772 3193 3124 11177 {rgb=(.5 .5 .5)} Face 1773 3193 3134 11178 {rgb=(.5 .5 .5)} Face 1774 3134 3234 11178 {rgb=(.5 .5 .5)} Face 1775 3234 3278 11178 {rgb=(.5 .5 .5)} Face 1776 3278 3193 11178 {rgb=(.5 .5 .5)} Face 1777 3278 3234 11179 {rgb=(.5 .5 .5)} Face 1778 3234 3359 11179 {rgb=(.5 .5 .5)} Face 1779 3359 3396 11179 {rgb=(.5 .5 .5)} Face 1780 3396 3278 11179 {rgb=(.5 .5 .5)} Face 1781 3396 3359 11180 {rgb=(.5 .5 .5)} Face 1782 3359 3497 11180 {rgb=(.5 .5 .5)} Face 1783 3497 3515 11180 {rgb=(.5 .5 .5)} Face 1784 3515 3396 11180 {rgb=(.5 .5 .5)} Face 1785 3515 3497 11181 {rgb=(.5 .5 .5)} Face 1786 3497 3633 11181 {rgb=(.5 .5 .5)} Face 1787 3633 3637 11181 {rgb=(.5 .5 .5)} Face 1788 3637 3515 11181 {rgb=(.5 .5 .5)} Face 1789 3637 3633 11182 {rgb=(.5 .5 .5)} Face 1790 3633 3802 11182 {rgb=(.5 .5 .5)} Face 1791 3802 3780 11182 {rgb=(.5 .5 .5)} Face 1792 3780 3637 11182 {rgb=(.5 .5 .5)} Face 1793 3780 3802 11183 {rgb=(.5 .5 .5)} Face 1794 3802 3969 11183 {rgb=(.5 .5 .5)} Face 1795 3969 3949 11183 {rgb=(.5 .5 .5)} Face 1796 3949 3780 11183 {rgb=(.5 .5 .5)} Face 1797 3949 3969 11184 {rgb=(.5 .5 .5)} Face 1798 3969 4134 11184 {rgb=(.5 .5 .5)} Face 1799 4134 4094 11184 {rgb=(.5 .5 .5)} Face 1800 4094 3949 11184 {rgb=(.5 .5 .5)} Face 1801 4094 4134 11185 {rgb=(.5 .5 .5)} Face 1802 4134 4308 11185 {rgb=(.5 .5 .5)} Face 1803 4308 4261 11185 {rgb=(.5 .5 .5)} Face 1804 4261 4094 11185 {rgb=(.5 .5 .5)} Face 1805 4261 4308 11186 {rgb=(.5 .5 .5)} Face 1806 4308 4489 11186 {rgb=(.5 .5 .5)} Face 1807 4489 4406 11186 {rgb=(.5 .5 .5)} Face 1808 4406 4261 11186 {rgb=(.5 .5 .5)} Face 1809 4406 4489 11187 {rgb=(.5 .5 .5)} Face 1810 4489 4756 11187 {rgb=(.5 .5 .5)} Face 1811 4756 4624 11187 {rgb=(.5 .5 .5)} Face 1812 4624 4406 11187 {rgb=(.5 .5 .5)} Face 1813 4624 4756 11188 {rgb=(.5 .5 .5)} Face 1814 4756 4958 11188 {rgb=(.5 .5 .5)} Face 1815 4958 4832 11188 {rgb=(.5 .5 .5)} Face 1816 4832 4624 11188 {rgb=(.5 .5 .5)} Face 1817 4832 4958 11189 {rgb=(.5 .5 .5)} Face 1818 4958 5122 11189 {rgb=(.5 .5 .5)} Face 1819 5122 4981 11189 {rgb=(.5 .5 .5)} Face 1820 4981 4832 11189 {rgb=(.5 .5 .5)} Face 1821 4981 5122 11190 {rgb=(.5 .5 .5)} Face 1822 5122 5246 11190 {rgb=(.5 .5 .5)} Face 1823 5246 5108 11190 {rgb=(.5 .5 .5)} Face 1824 5108 4981 11190 {rgb=(.5 .5 .5)} Face 1825 5108 5246 11191 {rgb=(.5 .5 .5)} Face 1826 5246 5357 11191 {rgb=(.5 .5 .5)} Face 1827 5357 5192 11191 {rgb=(.5 .5 .5)} Face 1828 5192 5108 11191 {rgb=(.5 .5 .5)} Face 1829 5192 5357 11192 {rgb=(.5 .5 .5)} Face 1830 5357 5445 11192 {rgb=(.5 .5 .5)} Face 1831 5445 5272 11192 {rgb=(.5 .5 .5)} Face 1832 5272 5192 11192 {rgb=(.5 .5 .5)} Face 1833 5272 5445 11193 {rgb=(.5 .5 .5)} Face 1834 5445 5479 11193 {rgb=(.5 .5 .5)} Face 1835 5479 5311 11193 {rgb=(.5 .5 .5)} Face 1836 5311 5272 11193 {rgb=(.5 .5 .5)} Face 1837 5311 5479 11194 {rgb=(.5 .5 .5)} Face 1838 5479 5489 11194 {rgb=(.5 .5 .5)} Face 1839 5489 5325 11194 {rgb=(.5 .5 .5)} Face 1840 5325 5311 11194 {rgb=(.5 .5 .5)} Face 1841 5325 5489 11195 {rgb=(.5 .5 .5)} Face 1842 5489 5480 11195 {rgb=(.5 .5 .5)} Face 1843 5480 5312 11195 {rgb=(.5 .5 .5)} Face 1844 5312 5325 11195 {rgb=(.5 .5 .5)} Face 1845 5312 5480 11196 {rgb=(.5 .5 .5)} Face 1846 5480 5446 11196 {rgb=(.5 .5 .5)} Face 1847 5446 5273 11196 {rgb=(.5 .5 .5)} Face 1848 5273 5312 11196 {rgb=(.5 .5 .5)} Face 1849 5273 5446 11197 {rgb=(.5 .5 .5)} Face 1850 5446 5358 11197 {rgb=(.5 .5 .5)} Face 1851 5358 5193 11197 {rgb=(.5 .5 .5)} Face 1852 5193 5273 11197 {rgb=(.5 .5 .5)} Face 1853 5193 5358 11198 {rgb=(.5 .5 .5)} Face 1854 5358 5247 11198 {rgb=(.5 .5 .5)} Face 1855 5247 5109 11198 {rgb=(.5 .5 .5)} Face 1856 5109 5193 11198 {rgb=(.5 .5 .5)} Face 1857 5109 5247 11199 {rgb=(.5 .5 .5)} Face 1858 5247 5123 11199 {rgb=(.5 .5 .5)} Face 1859 5123 4982 11199 {rgb=(.5 .5 .5)} Face 1860 4982 5109 11199 {rgb=(.5 .5 .5)} Face 1861 4982 5123 11200 {rgb=(.5 .5 .5)} Face 1862 5123 4959 11200 {rgb=(.5 .5 .5)} Face 1863 4959 4833 11200 {rgb=(.5 .5 .5)} Face 1864 4833 4982 11200 {rgb=(.5 .5 .5)} Face 1865 4833 4959 11201 {rgb=(.5 .5 .5)} Face 1866 4959 4757 11201 {rgb=(.5 .5 .5)} Face 1867 4757 4625 11201 {rgb=(.5 .5 .5)} Face 1868 4625 4833 11201 {rgb=(.5 .5 .5)} Face 1869 4625 4757 11202 {rgb=(.5 .5 .5)} Face 1870 4757 4490 11202 {rgb=(.5 .5 .5)} Face 1871 4490 4407 11202 {rgb=(.5 .5 .5)} Face 1872 4407 4625 11202 {rgb=(.5 .5 .5)} Face 1873 4407 4490 11203 {rgb=(.5 .5 .5)} Face 1874 4490 4309 11203 {rgb=(.5 .5 .5)} Face 1875 4309 4262 11203 {rgb=(.5 .5 .5)} Face 1876 4262 4407 11203 {rgb=(.5 .5 .5)} Face 1877 4262 4309 11204 {rgb=(.5 .5 .5)} Face 1878 4309 4135 11204 {rgb=(.5 .5 .5)} Face 1879 4135 4095 11204 {rgb=(.5 .5 .5)} Face 1880 4095 4262 11204 {rgb=(.5 .5 .5)} Face 1881 4063 4095 11205 {rgb=(.5 .5 .5)} Face 1882 4095 3950 11205 {rgb=(.5 .5 .5)} Face 1883 3950 3931 11205 {rgb=(.5 .5 .5)} Face 1884 3931 4063 11205 {rgb=(.5 .5 .5)} Face 1885 3931 3950 11206 {rgb=(.5 .5 .5)} Face 1886 3950 3781 11206 {rgb=(.5 .5 .5)} Face 1887 3781 3790 11206 {rgb=(.5 .5 .5)} Face 1888 3790 3931 11206 {rgb=(.5 .5 .5)} Face 1889 3790 3781 11207 {rgb=(.5 .5 .5)} Face 1890 3781 3638 11207 {rgb=(.5 .5 .5)} Face 1891 3638 3657 11207 {rgb=(.5 .5 .5)} Face 1892 3657 3790 11207 {rgb=(.5 .5 .5)} Face 1893 3657 3638 11208 {rgb=(.5 .5 .5)} Face 1894 3638 3516 11208 {rgb=(.5 .5 .5)} Face 1895 3516 3550 11208 {rgb=(.5 .5 .5)} Face 1896 3550 3657 11208 {rgb=(.5 .5 .5)} Face 1897 3550 3516 11209 {rgb=(.5 .5 .5)} Face 1898 3516 3397 11209 {rgb=(.5 .5 .5)} Face 1899 3397 3443 11209 {rgb=(.5 .5 .5)} Face 1900 3443 3550 11209 {rgb=(.5 .5 .5)} Face 1901 3443 3397 11210 {rgb=(.5 .5 .5)} Face 1902 3397 3279 11210 {rgb=(.5 .5 .5)} Face 1903 3279 3353 11210 {rgb=(.5 .5 .5)} Face 1904 3353 3443 11210 {rgb=(.5 .5 .5)} Face 1905 3353 3279 11211 {rgb=(.5 .5 .5)} Face 1906 3279 3194 11211 {rgb=(.5 .5 .5)} Face 1907 3194 3274 11211 {rgb=(.5 .5 .5)} Face 1908 3274 3353 11211 {rgb=(.5 .5 .5)} Face 1909 3274 3194 11212 {rgb=(.5 .5 .5)} Face 1910 3194 3125 11212 {rgb=(.5 .5 .5)} Face 1911 3125 3211 11212 {rgb=(.5 .5 .5)} Face 1912 3211 3274 11212 {rgb=(.5 .5 .5)} Face 1913 3211 3125 11213 {rgb=(.5 .5 .5)} Face 1914 3125 3078 11213 {rgb=(.5 .5 .5)} Face 1915 3078 3181 11213 {rgb=(.5 .5 .5)} Face 1916 3181 3211 11213 {rgb=(.5 .5 .5)} Face 1917 3181 3078 11214 {rgb=(.5 .5 .5)} Face 1918 3078 3065 11214 {rgb=(.5 .5 .5)} Face 1919 3065 3171 11214 {rgb=(.5 .5 .5)} Face 1920 3171 3181 11214 {rgb=(.5 .5 .5)} Face 1921 3171 3065 11215 {rgb=(.5 .5 .5)} Face 1922 3065 3077 11215 {rgb=(.5 .5 .5)} Face 1923 3077 3180 11215 {rgb=(.5 .5 .5)} Face 1924 3180 3171 11215 {rgb=(.5 .5 .5)} Face 1925 3180 3077 11216 {rgb=(.5 .5 .5)} Face 1926 3077 3124 11216 {rgb=(.5 .5 .5)} Face 1927 3124 3210 11216 {rgb=(.5 .5 .5)} Face 1928 3210 3180 11216 {rgb=(.5 .5 .5)} Face 1929 3210 3124 11217 {rgb=(.5 .5 .5)} Face 1930 3124 3193 11217 {rgb=(.5 .5 .5)} Face 1931 3193 3273 11217 {rgb=(.5 .5 .5)} Face 1932 3273 3210 11217 {rgb=(.5 .5 .5)} Face 1933 3273 3193 11218 {rgb=(.5 .5 .5)} Face 1934 3193 3278 11218 {rgb=(.5 .5 .5)} Face 1935 3278 3352 11218 {rgb=(.5 .5 .5)} Face 1936 3352 3273 11218 {rgb=(.5 .5 .5)} Face 1937 3352 3278 11219 {rgb=(.5 .5 .5)} Face 1938 3278 3396 11219 {rgb=(.5 .5 .5)} Face 1939 3396 3442 11219 {rgb=(.5 .5 .5)} Face 1940 3442 3352 11219 {rgb=(.5 .5 .5)} Face 1941 3442 3396 11220 {rgb=(.5 .5 .5)} Face 1942 3396 3515 11220 {rgb=(.5 .5 .5)} Face 1943 3515 3549 11220 {rgb=(.5 .5 .5)} Face 1944 3549 3442 11220 {rgb=(.5 .5 .5)} Face 1945 3549 3515 11221 {rgb=(.5 .5 .5)} Face 1946 3515 3637 11221 {rgb=(.5 .5 .5)} Face 1947 3637 3656 11221 {rgb=(.5 .5 .5)} Face 1948 3656 3549 11221 {rgb=(.5 .5 .5)} Face 1949 3656 3637 11222 {rgb=(.5 .5 .5)} Face 1950 3637 3780 11222 {rgb=(.5 .5 .5)} Face 1951 3780 3789 11222 {rgb=(.5 .5 .5)} Face 1952 3789 3656 11222 {rgb=(.5 .5 .5)} Face 1953 3789 3780 11223 {rgb=(.5 .5 .5)} Face 1954 3780 3949 11223 {rgb=(.5 .5 .5)} Face 1955 3949 3930 11223 {rgb=(.5 .5 .5)} Face 1956 3930 3789 11223 {rgb=(.5 .5 .5)} Face 1957 3930 3949 11224 {rgb=(.5 .5 .5)} Face 1958 3949 4094 11224 {rgb=(.5 .5 .5)} Face 1959 4094 4062 11224 {rgb=(.5 .5 .5)} Face 1960 4062 3930 11224 {rgb=(.5 .5 .5)} Face 1961 4062 4094 11225 {rgb=(.5 .5 .5)} Face 1962 4094 4261 11225 {rgb=(.5 .5 .5)} Face 1963 4261 4193 11225 {rgb=(.5 .5 .5)} Face 1964 4193 4062 11225 {rgb=(.5 .5 .5)} Face 1965 4193 4261 11226 {rgb=(.5 .5 .5)} Face 1966 4261 4406 11226 {rgb=(.5 .5 .5)} Face 1967 4406 4323 11226 {rgb=(.5 .5 .5)} Face 1968 4323 4193 11226 {rgb=(.5 .5 .5)} Face 1969 4323 4406 11227 {rgb=(.5 .5 .5)} Face 1970 4406 4624 11227 {rgb=(.5 .5 .5)} Face 1971 4624 4459 11227 {rgb=(.5 .5 .5)} Face 1972 4459 4323 11227 {rgb=(.5 .5 .5)} Face 1973 4459 4624 11228 {rgb=(.5 .5 .5)} Face 1974 4624 4832 11228 {rgb=(.5 .5 .5)} Face 1975 4832 4665 11228 {rgb=(.5 .5 .5)} Face 1976 4665 4459 11228 {rgb=(.5 .5 .5)} Face 1977 4665 4832 11229 {rgb=(.5 .5 .5)} Face 1978 4832 4981 11229 {rgb=(.5 .5 .5)} Face 1979 4981 4822 11229 {rgb=(.5 .5 .5)} Face 1980 4822 4665 11229 {rgb=(.5 .5 .5)} Face 1981 4822 4981 11230 {rgb=(.5 .5 .5)} Face 1982 4981 5108 11230 {rgb=(.5 .5 .5)} Face 1983 5108 4937 11230 {rgb=(.5 .5 .5)} Face 1984 4937 4822 11230 {rgb=(.5 .5 .5)} Face 1985 4937 5108 11231 {rgb=(.5 .5 .5)} Face 1986 5108 5192 11231 {rgb=(.5 .5 .5)} Face 1987 5192 5023 11231 {rgb=(.5 .5 .5)} Face 1988 5023 4937 11231 {rgb=(.5 .5 .5)} Face 1989 5023 5192 11232 {rgb=(.5 .5 .5)} Face 1990 5192 5272 11232 {rgb=(.5 .5 .5)} Face 1991 5272 5092 11232 {rgb=(.5 .5 .5)} Face 1992 5092 5023 11232 {rgb=(.5 .5 .5)} Face 1993 5092 5272 11233 {rgb=(.5 .5 .5)} Face 1994 5272 5311 11233 {rgb=(.5 .5 .5)} Face 1995 5311 5132 11233 {rgb=(.5 .5 .5)} Face 1996 5132 5092 11233 {rgb=(.5 .5 .5)} Face 1997 5132 5311 11234 {rgb=(.5 .5 .5)} Face 1998 5311 5325 11234 {rgb=(.5 .5 .5)} Face 1999 5325 5148 11234 {rgb=(.5 .5 .5)} Face 2000 5148 5132 11234 {rgb=(.5 .5 .5)} Face 2001 5148 5325 11235 {rgb=(.5 .5 .5)} Face 2002 5325 5312 11235 {rgb=(.5 .5 .5)} Face 2003 5312 5133 11235 {rgb=(.5 .5 .5)} Face 2004 5133 5148 11235 {rgb=(.5 .5 .5)} Face 2005 5133 5312 11236 {rgb=(.5 .5 .5)} Face 2006 5312 5273 11236 {rgb=(.5 .5 .5)} Face 2007 5273 5093 11236 {rgb=(.5 .5 .5)} Face 2008 5093 5133 11236 {rgb=(.5 .5 .5)} Face 2009 5093 5273 11237 {rgb=(.5 .5 .5)} Face 2010 5273 5193 11237 {rgb=(.5 .5 .5)} Face 2011 5193 5024 11237 {rgb=(.5 .5 .5)} Face 2012 5024 5093 11237 {rgb=(.5 .5 .5)} Face 2013 5024 5193 11238 {rgb=(.5 .5 .5)} Face 2014 5193 5109 11238 {rgb=(.5 .5 .5)} Face 2015 5109 4938 11238 {rgb=(.5 .5 .5)} Face 2016 4938 5024 11238 {rgb=(.5 .5 .5)} Face 2017 4938 5109 11239 {rgb=(.5 .5 .5)} Face 2018 5109 4982 11239 {rgb=(.5 .5 .5)} Face 2019 4982 4823 11239 {rgb=(.5 .5 .5)} Face 2020 4823 4938 11239 {rgb=(.5 .5 .5)} Face 2021 4823 4982 11240 {rgb=(.5 .5 .5)} Face 2022 4982 4833 11240 {rgb=(.5 .5 .5)} Face 2023 4833 4666 11240 {rgb=(.5 .5 .5)} Face 2024 4666 4823 11240 {rgb=(.5 .5 .5)} Face 2025 4666 4833 11241 {rgb=(.5 .5 .5)} Face 2026 4833 4625 11241 {rgb=(.5 .5 .5)} Face 2027 4625 4460 11241 {rgb=(.5 .5 .5)} Face 2028 4460 4666 11241 {rgb=(.5 .5 .5)} Face 2029 4460 4625 11242 {rgb=(.5 .5 .5)} Face 2030 4625 4407 11242 {rgb=(.5 .5 .5)} Face 2031 4407 4324 11242 {rgb=(.5 .5 .5)} Face 2032 4324 4460 11242 {rgb=(.5 .5 .5)} Face 2033 4324 4407 11243 {rgb=(.5 .5 .5)} Face 2034 4407 4262 11243 {rgb=(.5 .5 .5)} Face 2035 4262 4194 11243 {rgb=(.5 .5 .5)} Face 2036 4194 4324 11243 {rgb=(.5 .5 .5)} Face 2037 4194 4262 11244 {rgb=(.5 .5 .5)} Face 2038 4262 4095 11244 {rgb=(.5 .5 .5)} Face 2039 4095 4063 11244 {rgb=(.5 .5 .5)} Face 2040 4063 4194 11244 {rgb=(.5 .5 .5)} Face 2041 4027 4063 11245 {rgb=(.5 .5 .5)} Face 2042 4063 3931 11245 {rgb=(.5 .5 .5)} Face 2043 3931 3922 11245 {rgb=(.5 .5 .5)} Face 2044 3922 4027 11245 {rgb=(.5 .5 .5)} Face 2045 3922 3931 11246 {rgb=(.5 .5 .5)} Face 2046 3931 3790 11246 {rgb=(.5 .5 .5)} Face 2047 3790 3810 11246 {rgb=(.5 .5 .5)} Face 2048 3810 3922 11246 {rgb=(.5 .5 .5)} Face 2049 3810 3790 11247 {rgb=(.5 .5 .5)} Face 2050 3790 3657 11247 {rgb=(.5 .5 .5)} Face 2051 3657 3690 11247 {rgb=(.5 .5 .5)} Face 2052 3690 3810 11247 {rgb=(.5 .5 .5)} Face 2053 3690 3657 11248 {rgb=(.5 .5 .5)} Face 2054 3657 3550 11248 {rgb=(.5 .5 .5)} Face 2055 3550 3596 11248 {rgb=(.5 .5 .5)} Face 2056 3596 3690 11248 {rgb=(.5 .5 .5)} Face 2057 3596 3550 11249 {rgb=(.5 .5 .5)} Face 2058 3550 3443 11249 {rgb=(.5 .5 .5)} Face 2059 3443 3526 11249 {rgb=(.5 .5 .5)} Face 2060 3526 3596 11249 {rgb=(.5 .5 .5)} Face 2061 3526 3443 11250 {rgb=(.5 .5 .5)} Face 2062 3443 3353 11250 {rgb=(.5 .5 .5)} Face 2063 3353 3441 11250 {rgb=(.5 .5 .5)} Face 2064 3441 3526 11250 {rgb=(.5 .5 .5)} Face 2065 3441 3353 11251 {rgb=(.5 .5 .5)} Face 2066 3353 3274 11251 {rgb=(.5 .5 .5)} Face 2067 3274 3387 11251 {rgb=(.5 .5 .5)} Face 2068 3387 3441 11251 {rgb=(.5 .5 .5)} Face 2069 3387 3274 11252 {rgb=(.5 .5 .5)} Face 2070 3274 3211 11252 {rgb=(.5 .5 .5)} Face 2071 3211 3332 11252 {rgb=(.5 .5 .5)} Face 2072 3332 3387 11252 {rgb=(.5 .5 .5)} Face 2073 3332 3211 11253 {rgb=(.5 .5 .5)} Face 2074 3211 3181 11253 {rgb=(.5 .5 .5)} Face 2075 3181 3311 11253 {rgb=(.5 .5 .5)} Face 2076 3311 3332 11253 {rgb=(.5 .5 .5)} Face 2077 3311 3181 11254 {rgb=(.5 .5 .5)} Face 2078 3181 3171 11254 {rgb=(.5 .5 .5)} Face 2079 3171 3297 11254 {rgb=(.5 .5 .5)} Face 2080 3297 3311 11254 {rgb=(.5 .5 .5)} Face 2081 3297 3171 11255 {rgb=(.5 .5 .5)} Face 2082 3171 3180 11255 {rgb=(.5 .5 .5)} Face 2083 3180 3310 11255 {rgb=(.5 .5 .5)} Face 2084 3310 3297 11255 {rgb=(.5 .5 .5)} Face 2085 3310 3180 11256 {rgb=(.5 .5 .5)} Face 2086 3180 3210 11256 {rgb=(.5 .5 .5)} Face 2087 3210 3331 11256 {rgb=(.5 .5 .5)} Face 2088 3331 3310 11256 {rgb=(.5 .5 .5)} Face 2089 3331 3210 11257 {rgb=(.5 .5 .5)} Face 2090 3210 3273 11257 {rgb=(.5 .5 .5)} Face 2091 3273 3386 11257 {rgb=(.5 .5 .5)} Face 2092 3386 3331 11257 {rgb=(.5 .5 .5)} Face 2093 3386 3273 11258 {rgb=(.5 .5 .5)} Face 2094 3273 3352 11258 {rgb=(.5 .5 .5)} Face 2095 3352 3440 11258 {rgb=(.5 .5 .5)} Face 2096 3440 3386 11258 {rgb=(.5 .5 .5)} Face 2097 3440 3352 11259 {rgb=(.5 .5 .5)} Face 2098 3352 3442 11259 {rgb=(.5 .5 .5)} Face 2099 3442 3525 11259 {rgb=(.5 .5 .5)} Face 2100 3525 3440 11259 {rgb=(.5 .5 .5)} Face 2101 3525 3442 11260 {rgb=(.5 .5 .5)} Face 2102 3442 3549 11260 {rgb=(.5 .5 .5)} Face 2103 3549 3595 11260 {rgb=(.5 .5 .5)} Face 2104 3595 3525 11260 {rgb=(.5 .5 .5)} Face 2105 3595 3549 11261 {rgb=(.5 .5 .5)} Face 2106 3549 3656 11261 {rgb=(.5 .5 .5)} Face 2107 3656 3689 11261 {rgb=(.5 .5 .5)} Face 2108 3689 3595 11261 {rgb=(.5 .5 .5)} Face 2109 3689 3656 11262 {rgb=(.5 .5 .5)} Face 2110 3656 3789 11262 {rgb=(.5 .5 .5)} Face 2111 3789 3809 11262 {rgb=(.5 .5 .5)} Face 2112 3809 3689 11262 {rgb=(.5 .5 .5)} Face 2113 3809 3789 11263 {rgb=(.5 .5 .5)} Face 2114 3789 3930 11263 {rgb=(.5 .5 .5)} Face 2115 3930 3921 11263 {rgb=(.5 .5 .5)} Face 2116 3921 3809 11263 {rgb=(.5 .5 .5)} Face 2117 3921 3930 11264 {rgb=(.5 .5 .5)} Face 2118 3930 4062 11264 {rgb=(.5 .5 .5)} Face 2119 4062 4026 11264 {rgb=(.5 .5 .5)} Face 2120 4026 3921 11264 {rgb=(.5 .5 .5)} Face 2121 4026 4062 11265 {rgb=(.5 .5 .5)} Face 2122 4062 4193 11265 {rgb=(.5 .5 .5)} Face 2123 4193 4141 11265 {rgb=(.5 .5 .5)} Face 2124 4141 4026 11265 {rgb=(.5 .5 .5)} Face 2125 4141 4193 11266 {rgb=(.5 .5 .5)} Face 2126 4193 4323 11266 {rgb=(.5 .5 .5)} Face 2127 4323 4263 11266 {rgb=(.5 .5 .5)} Face 2128 4263 4141 11266 {rgb=(.5 .5 .5)} Face 2129 4263 4323 11267 {rgb=(.5 .5 .5)} Face 2130 4323 4459 11267 {rgb=(.5 .5 .5)} Face 2131 4459 4350 11267 {rgb=(.5 .5 .5)} Face 2132 4350 4263 11267 {rgb=(.5 .5 .5)} Face 2133 4350 4459 11268 {rgb=(.5 .5 .5)} Face 2134 4459 4665 11268 {rgb=(.5 .5 .5)} Face 2135 4665 4457 11268 {rgb=(.5 .5 .5)} Face 2136 4457 4350 11268 {rgb=(.5 .5 .5)} Face 2137 4457 4665 11269 {rgb=(.5 .5 .5)} Face 2138 4665 4822 11269 {rgb=(.5 .5 .5)} Face 2139 4822 4610 11269 {rgb=(.5 .5 .5)} Face 2140 4610 4457 11269 {rgb=(.5 .5 .5)} Face 2141 4610 4822 11270 {rgb=(.5 .5 .5)} Face 2142 4822 4937 11270 {rgb=(.5 .5 .5)} Face 2143 4937 4733 11270 {rgb=(.5 .5 .5)} Face 2144 4733 4610 11270 {rgb=(.5 .5 .5)} Face 2145 4733 4937 11271 {rgb=(.5 .5 .5)} Face 2146 4937 5023 11271 {rgb=(.5 .5 .5)} Face 2147 5023 4819 11271 {rgb=(.5 .5 .5)} Face 2148 4819 4733 11271 {rgb=(.5 .5 .5)} Face 2149 4819 5023 11272 {rgb=(.5 .5 .5)} Face 2150 5023 5092 11272 {rgb=(.5 .5 .5)} Face 2151 5092 4883 11272 {rgb=(.5 .5 .5)} Face 2152 4883 4819 11272 {rgb=(.5 .5 .5)} Face 2153 4883 5092 11273 {rgb=(.5 .5 .5)} Face 2154 5092 5132 11273 {rgb=(.5 .5 .5)} Face 2155 5132 4907 11273 {rgb=(.5 .5 .5)} Face 2156 4907 4883 11273 {rgb=(.5 .5 .5)} Face 2157 4907 5132 11274 {rgb=(.5 .5 .5)} Face 2158 5132 5148 11274 {rgb=(.5 .5 .5)} Face 2159 5148 4921 11274 {rgb=(.5 .5 .5)} Face 2160 4921 4907 11274 {rgb=(.5 .5 .5)} Face 2161 4921 5148 11275 {rgb=(.5 .5 .5)} Face 2162 5148 5133 11275 {rgb=(.5 .5 .5)} Face 2163 5133 4908 11275 {rgb=(.5 .5 .5)} Face 2164 4908 4921 11275 {rgb=(.5 .5 .5)} Face 2165 4908 5133 11276 {rgb=(.5 .5 .5)} Face 2166 5133 5093 11276 {rgb=(.5 .5 .5)} Face 2167 5093 4884 11276 {rgb=(.5 .5 .5)} Face 2168 4884 4908 11276 {rgb=(.5 .5 .5)} Face 2169 4884 5093 11277 {rgb=(.5 .5 .5)} Face 2170 5093 5024 11277 {rgb=(.5 .5 .5)} Face 2171 5024 4820 11277 {rgb=(.5 .5 .5)} Face 2172 4820 4884 11277 {rgb=(.5 .5 .5)} Face 2173 4820 5024 11278 {rgb=(.5 .5 .5)} Face 2174 5024 4938 11278 {rgb=(.5 .5 .5)} Face 2175 4938 4734 11278 {rgb=(.5 .5 .5)} Face 2176 4734 4820 11278 {rgb=(.5 .5 .5)} Face 2177 4734 4938 11279 {rgb=(.5 .5 .5)} Face 2178 4938 4823 11279 {rgb=(.5 .5 .5)} Face 2179 4823 4611 11279 {rgb=(.5 .5 .5)} Face 2180 4611 4734 11279 {rgb=(.5 .5 .5)} Face 2181 4611 4823 11280 {rgb=(.5 .5 .5)} Face 2182 4823 4666 11280 {rgb=(.5 .5 .5)} Face 2183 4666 4458 11280 {rgb=(.5 .5 .5)} Face 2184 4458 4611 11280 {rgb=(.5 .5 .5)} Face 2185 4458 4666 11281 {rgb=(.5 .5 .5)} Face 2186 4666 4460 11281 {rgb=(.5 .5 .5)} Face 2187 4460 4351 11281 {rgb=(.5 .5 .5)} Face 2188 4351 4458 11281 {rgb=(.5 .5 .5)} Face 2189 4351 4460 11282 {rgb=(.5 .5 .5)} Face 2190 4460 4324 11282 {rgb=(.5 .5 .5)} Face 2191 4324 4264 11282 {rgb=(.5 .5 .5)} Face 2192 4264 4351 11282 {rgb=(.5 .5 .5)} Face 2193 4264 4324 11283 {rgb=(.5 .5 .5)} Face 2194 4324 4194 11283 {rgb=(.5 .5 .5)} Face 2195 4194 4142 11283 {rgb=(.5 .5 .5)} Face 2196 4142 4264 11283 {rgb=(.5 .5 .5)} Face 2197 4142 4194 11284 {rgb=(.5 .5 .5)} Face 2198 4194 4063 11284 {rgb=(.5 .5 .5)} Face 2199 4063 4027 11284 {rgb=(.5 .5 .5)} Face 2200 4027 4142 11284 {rgb=(.5 .5 .5)} Face 2201 4011 4027 11285 {rgb=(.5 .5 .5)} Face 2202 4027 3922 11285 {rgb=(.5 .5 .5)} Face 2203 3922 3924 11285 {rgb=(.5 .5 .5)} Face 2204 3924 4011 11285 {rgb=(.5 .5 .5)} Face 2205 3924 3922 11286 {rgb=(.5 .5 .5)} Face 2206 3922 3810 11286 {rgb=(.5 .5 .5)} Face 2207 3810 3852 11286 {rgb=(.5 .5 .5)} Face 2208 3852 3924 11286 {rgb=(.5 .5 .5)} Face 2209 3852 3810 11287 {rgb=(.5 .5 .5)} Face 2210 3810 3690 11287 {rgb=(.5 .5 .5)} Face 2211 3690 3737 11287 {rgb=(.5 .5 .5)} Face 2212 3737 3852 11287 {rgb=(.5 .5 .5)} Face 2213 3737 3690 11288 {rgb=(.5 .5 .5)} Face 2214 3690 3596 11288 {rgb=(.5 .5 .5)} Face 2215 3596 3669 11288 {rgb=(.5 .5 .5)} Face 2216 3669 3737 11288 {rgb=(.5 .5 .5)} Face 2217 3669 3596 11289 {rgb=(.5 .5 .5)} Face 2218 3596 3526 11289 {rgb=(.5 .5 .5)} Face 2219 3526 3600 11289 {rgb=(.5 .5 .5)} Face 2220 3600 3669 11289 {rgb=(.5 .5 .5)} Face 2221 3600 3526 11290 {rgb=(.5 .5 .5)} Face 2222 3526 3441 11290 {rgb=(.5 .5 .5)} Face 2223 3441 3556 11290 {rgb=(.5 .5 .5)} Face 2224 3556 3600 11290 {rgb=(.5 .5 .5)} Face 2225 3556 3441 11291 {rgb=(.5 .5 .5)} Face 2226 3441 3387 11291 {rgb=(.5 .5 .5)} Face 2227 3387 3512 11291 {rgb=(.5 .5 .5)} Face 2228 3512 3556 11291 {rgb=(.5 .5 .5)} Face 2229 3512 3387 11292 {rgb=(.5 .5 .5)} Face 2230 3387 3332 11292 {rgb=(.5 .5 .5)} Face 2231 3332 3481 11292 {rgb=(.5 .5 .5)} Face 2232 3481 3512 11292 {rgb=(.5 .5 .5)} Face 2233 3481 3332 11293 {rgb=(.5 .5 .5)} Face 2234 3332 3311 11293 {rgb=(.5 .5 .5)} Face 2235 3311 3453 11293 {rgb=(.5 .5 .5)} Face 2236 3453 3481 11293 {rgb=(.5 .5 .5)} Face 2237 3453 3311 11294 {rgb=(.5 .5 .5)} Face 2238 3311 3297 11294 {rgb=(.5 .5 .5)} Face 2239 3297 3444 11294 {rgb=(.5 .5 .5)} Face 2240 3444 3453 11294 {rgb=(.5 .5 .5)} Face 2241 3444 3297 11295 {rgb=(.5 .5 .5)} Face 2242 3297 3310 11295 {rgb=(.5 .5 .5)} Face 2243 3310 3452 11295 {rgb=(.5 .5 .5)} Face 2244 3452 3444 11295 {rgb=(.5 .5 .5)} Face 2245 3452 3310 11296 {rgb=(.5 .5 .5)} Face 2246 3310 3331 11296 {rgb=(.5 .5 .5)} Face 2247 3331 3480 11296 {rgb=(.5 .5 .5)} Face 2248 3480 3452 11296 {rgb=(.5 .5 .5)} Face 2249 3480 3331 11297 {rgb=(.5 .5 .5)} Face 2250 3331 3386 11297 {rgb=(.5 .5 .5)} Face 2251 3386 3511 11297 {rgb=(.5 .5 .5)} Face 2252 3511 3480 11297 {rgb=(.5 .5 .5)} Face 2253 3511 3386 11298 {rgb=(.5 .5 .5)} Face 2254 3386 3440 11298 {rgb=(.5 .5 .5)} Face 2255 3440 3555 11298 {rgb=(.5 .5 .5)} Face 2256 3555 3511 11298 {rgb=(.5 .5 .5)} Face 2257 3555 3440 11299 {rgb=(.5 .5 .5)} Face 2258 3440 3525 11299 {rgb=(.5 .5 .5)} Face 2259 3525 3599 11299 {rgb=(.5 .5 .5)} Face 2260 3599 3555 11299 {rgb=(.5 .5 .5)} Face 2261 3599 3525 11300 {rgb=(.5 .5 .5)} Face 2262 3525 3595 11300 {rgb=(.5 .5 .5)} Face 2263 3595 3668 11300 {rgb=(.5 .5 .5)} Face 2264 3668 3599 11300 {rgb=(.5 .5 .5)} Face 2265 3668 3595 11301 {rgb=(.5 .5 .5)} Face 2266 3595 3689 11301 {rgb=(.5 .5 .5)} Face 2267 3689 3736 11301 {rgb=(.5 .5 .5)} Face 2268 3736 3668 11301 {rgb=(.5 .5 .5)} Face 2269 3736 3689 11302 {rgb=(.5 .5 .5)} Face 2270 3689 3809 11302 {rgb=(.5 .5 .5)} Face 2271 3809 3851 11302 {rgb=(.5 .5 .5)} Face 2272 3851 3736 11302 {rgb=(.5 .5 .5)} Face 2273 3851 3809 11303 {rgb=(.5 .5 .5)} Face 2274 3809 3921 11303 {rgb=(.5 .5 .5)} Face 2275 3921 3923 11303 {rgb=(.5 .5 .5)} Face 2276 3923 3851 11303 {rgb=(.5 .5 .5)} Face 2277 3923 3921 11304 {rgb=(.5 .5 .5)} Face 2278 3921 4026 11304 {rgb=(.5 .5 .5)} Face 2279 4026 4010 11304 {rgb=(.5 .5 .5)} Face 2280 4010 3923 11304 {rgb=(.5 .5 .5)} Face 2281 4010 4026 11305 {rgb=(.5 .5 .5)} Face 2282 4026 4141 11305 {rgb=(.5 .5 .5)} Face 2283 4141 4086 11305 {rgb=(.5 .5 .5)} Face 2284 4086 4010 11305 {rgb=(.5 .5 .5)} Face 2285 4086 4141 11306 {rgb=(.5 .5 .5)} Face 2286 4141 4263 11306 {rgb=(.5 .5 .5)} Face 2287 4263 4178 11306 {rgb=(.5 .5 .5)} Face 2288 4178 4086 11306 {rgb=(.5 .5 .5)} Face 2289 4178 4263 11307 {rgb=(.5 .5 .5)} Face 2290 4263 4350 11307 {rgb=(.5 .5 .5)} Face 2291 4350 4271 11307 {rgb=(.5 .5 .5)} Face 2292 4271 4178 11307 {rgb=(.5 .5 .5)} Face 2293 4271 4350 11308 {rgb=(.5 .5 .5)} Face 2294 4350 4457 11308 {rgb=(.5 .5 .5)} Face 2295 4457 4328 11308 {rgb=(.5 .5 .5)} Face 2296 4328 4271 11308 {rgb=(.5 .5 .5)} Face 2297 4328 4457 11309 {rgb=(.5 .5 .5)} Face 2298 4457 4610 11309 {rgb=(.5 .5 .5)} Face 2299 4610 4402 11309 {rgb=(.5 .5 .5)} Face 2300 4402 4328 11309 {rgb=(.5 .5 .5)} Face 2301 4402 4610 11310 {rgb=(.5 .5 .5)} Face 2302 4610 4733 11310 {rgb=(.5 .5 .5)} Face 2303 4733 4461 11310 {rgb=(.5 .5 .5)} Face 2304 4461 4402 11310 {rgb=(.5 .5 .5)} Face 2305 4461 4733 11311 {rgb=(.5 .5 .5)} Face 2306 4733 4819 11311 {rgb=(.5 .5 .5)} Face 2307 4819 4544 11311 {rgb=(.5 .5 .5)} Face 2308 4544 4461 11311 {rgb=(.5 .5 .5)} Face 2309 4544 4819 11312 {rgb=(.5 .5 .5)} Face 2310 4819 4883 11312 {rgb=(.5 .5 .5)} Face 2311 4883 4599 11312 {rgb=(.5 .5 .5)} Face 2312 4599 4544 11312 {rgb=(.5 .5 .5)} Face 2313 4599 4883 11313 {rgb=(.5 .5 .5)} Face 2314 4883 4907 11313 {rgb=(.5 .5 .5)} Face 2315 4907 4638 11313 {rgb=(.5 .5 .5)} Face 2316 4638 4599 11313 {rgb=(.5 .5 .5)} Face 2317 4638 4907 11314 {rgb=(.5 .5 .5)} Face 2318 4907 4921 11314 {rgb=(.5 .5 .5)} Face 2319 4921 4654 11314 {rgb=(.5 .5 .5)} Face 2320 4654 4638 11314 {rgb=(.5 .5 .5)} Face 2321 4654 4921 11315 {rgb=(.5 .5 .5)} Face 2322 4921 4908 11315 {rgb=(.5 .5 .5)} Face 2323 4908 4639 11315 {rgb=(.5 .5 .5)} Face 2324 4639 4654 11315 {rgb=(.5 .5 .5)} Face 2325 4639 4908 11316 {rgb=(.5 .5 .5)} Face 2326 4908 4884 11316 {rgb=(.5 .5 .5)} Face 2327 4884 4600 11316 {rgb=(.5 .5 .5)} Face 2328 4600 4639 11316 {rgb=(.5 .5 .5)} Face 2329 4600 4884 11317 {rgb=(.5 .5 .5)} Face 2330 4884 4820 11317 {rgb=(.5 .5 .5)} Face 2331 4820 4545 11317 {rgb=(.5 .5 .5)} Face 2332 4545 4600 11317 {rgb=(.5 .5 .5)} Face 2333 4545 4820 11318 {rgb=(.5 .5 .5)} Face 2334 4820 4734 11318 {rgb=(.5 .5 .5)} Face 2335 4734 4462 11318 {rgb=(.5 .5 .5)} Face 2336 4462 4545 11318 {rgb=(.5 .5 .5)} Face 2337 4462 4734 11319 {rgb=(.5 .5 .5)} Face 2338 4734 4611 11319 {rgb=(.5 .5 .5)} Face 2339 4611 4403 11319 {rgb=(.5 .5 .5)} Face 2340 4403 4462 11319 {rgb=(.5 .5 .5)} Face 2341 4403 4611 11320 {rgb=(.5 .5 .5)} Face 2342 4611 4458 11320 {rgb=(.5 .5 .5)} Face 2343 4458 4329 11320 {rgb=(.5 .5 .5)} Face 2344 4329 4403 11320 {rgb=(.5 .5 .5)} Face 2345 4329 4458 11321 {rgb=(.5 .5 .5)} Face 2346 4458 4351 11321 {rgb=(.5 .5 .5)} Face 2347 4351 4272 11321 {rgb=(.5 .5 .5)} Face 2348 4272 4329 11321 {rgb=(.5 .5 .5)} Face 2349 4272 4351 11322 {rgb=(.5 .5 .5)} Face 2350 4351 4264 11322 {rgb=(.5 .5 .5)} Face 2351 4264 4179 11322 {rgb=(.5 .5 .5)} Face 2352 4179 4272 11322 {rgb=(.5 .5 .5)} Face 2353 4179 4264 11323 {rgb=(.5 .5 .5)} Face 2354 4264 4142 11323 {rgb=(.5 .5 .5)} Face 2355 4142 4087 11323 {rgb=(.5 .5 .5)} Face 2356 4087 4179 11323 {rgb=(.5 .5 .5)} Face 2357 4087 4142 11324 {rgb=(.5 .5 .5)} Face 2358 4142 4027 11324 {rgb=(.5 .5 .5)} Face 2359 4027 4011 11324 {rgb=(.5 .5 .5)} Face 2360 4011 4087 11324 {rgb=(.5 .5 .5)} Face 2361 4001 4011 11325 {rgb=(.5 .5 .5)} Face 2362 4011 3924 11325 {rgb=(.5 .5 .5)} Face 2363 3924 3935 11325 {rgb=(.5 .5 .5)} Face 2364 3935 4001 11325 {rgb=(.5 .5 .5)} Face 2365 3935 3924 11326 {rgb=(.5 .5 .5)} Face 2366 3924 3852 11326 {rgb=(.5 .5 .5)} Face 2367 3852 3882 11326 {rgb=(.5 .5 .5)} Face 2368 3882 3935 11326 {rgb=(.5 .5 .5)} Face 2369 3882 3852 11327 {rgb=(.5 .5 .5)} Face 2370 3852 3737 11327 {rgb=(.5 .5 .5)} Face 2371 3737 3831 11327 {rgb=(.5 .5 .5)} Face 2372 3831 3882 11327 {rgb=(.5 .5 .5)} Face 2373 3831 3737 11328 {rgb=(.5 .5 .5)} Face 2374 3737 3669 11328 {rgb=(.5 .5 .5)} Face 2375 3669 3751 11328 {rgb=(.5 .5 .5)} Face 2376 3751 3831 11328 {rgb=(.5 .5 .5)} Face 2377 3751 3669 11329 {rgb=(.5 .5 .5)} Face 2378 3669 3600 11329 {rgb=(.5 .5 .5)} Face 2379 3600 3714 11329 {rgb=(.5 .5 .5)} Face 2380 3714 3751 11329 {rgb=(.5 .5 .5)} Face 2381 3714 3600 11330 {rgb=(.5 .5 .5)} Face 2382 3600 3556 11330 {rgb=(.5 .5 .5)} Face 2383 3556 3675 11330 {rgb=(.5 .5 .5)} Face 2384 3675 3714 11330 {rgb=(.5 .5 .5)} Face 2385 3675 3556 11331 {rgb=(.5 .5 .5)} Face 2386 3556 3512 11331 {rgb=(.5 .5 .5)} Face 2387 3512 3643 11331 {rgb=(.5 .5 .5)} Face 2388 3643 3675 11331 {rgb=(.5 .5 .5)} Face 2389 3643 3512 11332 {rgb=(.5 .5 .5)} Face 2390 3512 3481 11332 {rgb=(.5 .5 .5)} Face 2391 3481 3621 11332 {rgb=(.5 .5 .5)} Face 2392 3621 3643 11332 {rgb=(.5 .5 .5)} Face 2393 3621 3481 11333 {rgb=(.5 .5 .5)} Face 2394 3481 3453 11333 {rgb=(.5 .5 .5)} Face 2395 3453 3602 11333 {rgb=(.5 .5 .5)} Face 2396 3602 3621 11333 {rgb=(.5 .5 .5)} Face 2397 3602 3453 11334 {rgb=(.5 .5 .5)} Face 2398 3453 3444 11334 {rgb=(.5 .5 .5)} Face 2399 3444 3597 11334 {rgb=(.5 .5 .5)} Face 2400 3597 3602 11334 {rgb=(.5 .5 .5)} Face 2401 3597 3444 11335 {rgb=(.5 .5 .5)} Face 2402 3444 3452 11335 {rgb=(.5 .5 .5)} Face 2403 3452 3601 11335 {rgb=(.5 .5 .5)} Face 2404 3601 3597 11335 {rgb=(.5 .5 .5)} Face 2405 3601 3452 11336 {rgb=(.5 .5 .5)} Face 2406 3452 3480 11336 {rgb=(.5 .5 .5)} Face 2407 3480 3620 11336 {rgb=(.5 .5 .5)} Face 2408 3620 3601 11336 {rgb=(.5 .5 .5)} Face 2409 3620 3480 11337 {rgb=(.5 .5 .5)} Face 2410 3480 3511 11337 {rgb=(.5 .5 .5)} Face 2411 3511 3642 11337 {rgb=(.5 .5 .5)} Face 2412 3642 3620 11337 {rgb=(.5 .5 .5)} Face 2413 3642 3511 11338 {rgb=(.5 .5 .5)} Face 2414 3511 3555 11338 {rgb=(.5 .5 .5)} Face 2415 3555 3674 11338 {rgb=(.5 .5 .5)} Face 2416 3674 3642 11338 {rgb=(.5 .5 .5)} Face 2417 3674 3555 11339 {rgb=(.5 .5 .5)} Face 2418 3555 3599 11339 {rgb=(.5 .5 .5)} Face 2419 3599 3713 11339 {rgb=(.5 .5 .5)} Face 2420 3713 3674 11339 {rgb=(.5 .5 .5)} Face 2421 3713 3599 11340 {rgb=(.5 .5 .5)} Face 2422 3599 3668 11340 {rgb=(.5 .5 .5)} Face 2423 3668 3750 11340 {rgb=(.5 .5 .5)} Face 2424 3750 3713 11340 {rgb=(.5 .5 .5)} Face 2425 3750 3668 11341 {rgb=(.5 .5 .5)} Face 2426 3668 3736 11341 {rgb=(.5 .5 .5)} Face 2427 3736 3830 11341 {rgb=(.5 .5 .5)} Face 2428 3830 3750 11341 {rgb=(.5 .5 .5)} Face 2429 3830 3736 11342 {rgb=(.5 .5 .5)} Face 2430 3736 3851 11342 {rgb=(.5 .5 .5)} Face 2431 3851 3881 11342 {rgb=(.5 .5 .5)} Face 2432 3881 3830 11342 {rgb=(.5 .5 .5)} Face 2433 3881 3851 11343 {rgb=(.5 .5 .5)} Face 2434 3851 3923 11343 {rgb=(.5 .5 .5)} Face 2435 3923 3934 11343 {rgb=(.5 .5 .5)} Face 2436 3934 3881 11343 {rgb=(.5 .5 .5)} Face 2437 3934 3923 11344 {rgb=(.5 .5 .5)} Face 2438 3923 4010 11344 {rgb=(.5 .5 .5)} Face 2439 4010 4000 11344 {rgb=(.5 .5 .5)} Face 2440 4000 3934 11344 {rgb=(.5 .5 .5)} Face 2441 4000 4010 11345 {rgb=(.5 .5 .5)} Face 2442 4010 4086 11345 {rgb=(.5 .5 .5)} Face 2443 4086 4048 11345 {rgb=(.5 .5 .5)} Face 2444 4048 4000 11345 {rgb=(.5 .5 .5)} Face 2445 4048 4086 11346 {rgb=(.5 .5 .5)} Face 2446 4086 4178 11346 {rgb=(.5 .5 .5)} Face 2447 4178 4103 11346 {rgb=(.5 .5 .5)} Face 2448 4103 4048 11346 {rgb=(.5 .5 .5)} Face 2449 4103 4178 11347 {rgb=(.5 .5 .5)} Face 2450 4178 4271 11347 {rgb=(.5 .5 .5)} Face 2451 4271 4161 11347 {rgb=(.5 .5 .5)} Face 2452 4161 4103 11347 {rgb=(.5 .5 .5)} Face 2453 4161 4271 11348 {rgb=(.5 .5 .5)} Face 2454 4271 4328 11348 {rgb=(.5 .5 .5)} Face 2455 4328 4213 11348 {rgb=(.5 .5 .5)} Face 2456 4213 4161 11348 {rgb=(.5 .5 .5)} Face 2457 4213 4328 11349 {rgb=(.5 .5 .5)} Face 2458 4328 4402 11349 {rgb=(.5 .5 .5)} Face 2459 4402 4268 11349 {rgb=(.5 .5 .5)} Face 2460 4268 4213 11349 {rgb=(.5 .5 .5)} Face 2461 4268 4402 11350 {rgb=(.5 .5 .5)} Face 2462 4402 4461 11350 {rgb=(.5 .5 .5)} Face 2463 4461 4295 11350 {rgb=(.5 .5 .5)} Face 2464 4295 4268 11350 {rgb=(.5 .5 .5)} Face 2465 4295 4461 11351 {rgb=(.5 .5 .5)} Face 2466 4461 4544 11351 {rgb=(.5 .5 .5)} Face 2467 4544 4318 11351 {rgb=(.5 .5 .5)} Face 2468 4318 4295 11351 {rgb=(.5 .5 .5)} Face 2469 4318 4544 11352 {rgb=(.5 .5 .5)} Face 2470 4544 4599 11352 {rgb=(.5 .5 .5)} Face 2471 4599 4340 11352 {rgb=(.5 .5 .5)} Face 2472 4340 4318 11352 {rgb=(.5 .5 .5)} Face 2473 4340 4599 11353 {rgb=(.5 .5 .5)} Face 2474 4599 4638 11353 {rgb=(.5 .5 .5)} Face 2475 4638 4357 11353 {rgb=(.5 .5 .5)} Face 2476 4357 4340 11353 {rgb=(.5 .5 .5)} Face 2477 4357 4638 11354 {rgb=(.5 .5 .5)} Face 2478 4638 4654 11354 {rgb=(.5 .5 .5)} Face 2479 4654 4364 11354 {rgb=(.5 .5 .5)} Face 2480 4364 4357 11354 {rgb=(.5 .5 .5)} Face 2481 4364 4654 11355 {rgb=(.5 .5 .5)} Face 2482 4654 4639 11355 {rgb=(.5 .5 .5)} Face 2483 4639 4358 11355 {rgb=(.5 .5 .5)} Face 2484 4358 4364 11355 {rgb=(.5 .5 .5)} Face 2485 4358 4639 11356 {rgb=(.5 .5 .5)} Face 2486 4639 4600 11356 {rgb=(.5 .5 .5)} Face 2487 4600 4341 11356 {rgb=(.5 .5 .5)} Face 2488 4341 4358 11356 {rgb=(.5 .5 .5)} Face 2489 4341 4600 11357 {rgb=(.5 .5 .5)} Face 2490 4600 4545 11357 {rgb=(.5 .5 .5)} Face 2491 4545 4319 11357 {rgb=(.5 .5 .5)} Face 2492 4319 4341 11357 {rgb=(.5 .5 .5)} Face 2493 4319 4545 11358 {rgb=(.5 .5 .5)} Face 2494 4545 4462 11358 {rgb=(.5 .5 .5)} Face 2495 4462 4296 11358 {rgb=(.5 .5 .5)} Face 2496 4296 4319 11358 {rgb=(.5 .5 .5)} Face 2497 4296 4462 11359 {rgb=(.5 .5 .5)} Face 2498 4462 4403 11359 {rgb=(.5 .5 .5)} Face 2499 4403 4269 11359 {rgb=(.5 .5 .5)} Face 2500 4269 4296 11359 {rgb=(.5 .5 .5)} Face 2501 4269 4403 11360 {rgb=(.5 .5 .5)} Face 2502 4403 4329 11360 {rgb=(.5 .5 .5)} Face 2503 4329 4214 11360 {rgb=(.5 .5 .5)} Face 2504 4214 4269 11360 {rgb=(.5 .5 .5)} Face 2505 4214 4329 11361 {rgb=(.5 .5 .5)} Face 2506 4329 4272 11361 {rgb=(.5 .5 .5)} Face 2507 4272 4162 11361 {rgb=(.5 .5 .5)} Face 2508 4162 4214 11361 {rgb=(.5 .5 .5)} Face 2509 4162 4272 11362 {rgb=(.5 .5 .5)} Face 2510 4272 4179 11362 {rgb=(.5 .5 .5)} Face 2511 4179 4104 11362 {rgb=(.5 .5 .5)} Face 2512 4104 4162 11362 {rgb=(.5 .5 .5)} Face 2513 4104 4179 11363 {rgb=(.5 .5 .5)} Face 2514 4179 4087 11363 {rgb=(.5 .5 .5)} Face 2515 4087 4049 11363 {rgb=(.5 .5 .5)} Face 2516 4049 4104 11363 {rgb=(.5 .5 .5)} Face 2517 4049 4087 11364 {rgb=(.5 .5 .5)} Face 2518 4087 4011 11364 {rgb=(.5 .5 .5)} Face 2519 4011 4001 11364 {rgb=(.5 .5 .5)} Face 2520 4001 4049 11364 {rgb=(.5 .5 .5)} Face 2521 3992 4001 11365 {rgb=(1 1 1)} Face 2522 4001 3935 11365 {rgb=(1 1 1)} Face 2523 3935 3954 11365 {rgb=(1 1 1)} Face 2524 3954 3992 11365 {rgb=(1 1 1)} Face 2525 3954 3935 11366 {rgb=(1 1 1)} Face 2526 3935 3882 11366 {rgb=(1 1 1)} Face 2527 3882 3920 11366 {rgb=(1 1 1)} Face 2528 3920 3954 11366 {rgb=(1 1 1)} Face 2529 3920 3882 11367 {rgb=(1 1 1)} Face 2530 3882 3831 11367 {rgb=(1 1 1)} Face 2531 3831 3897 11367 {rgb=(1 1 1)} Face 2532 3897 3920 11367 {rgb=(1 1 1)} Face 2533 3897 3831 11368 {rgb=(1 1 1)} Face 2534 3831 3751 11368 {rgb=(1 1 1)} Face 2535 3751 3876 11368 {rgb=(1 1 1)} Face 2536 3876 3897 11368 {rgb=(1 1 1)} Face 2537 3876 3751 11369 {rgb=(1 1 1)} Face 2538 3751 3714 11369 {rgb=(1 1 1)} Face 2539 3714 3859 11369 {rgb=(1 1 1)} Face 2540 3859 3876 11369 {rgb=(1 1 1)} Face 2541 3859 3714 11370 {rgb=(1 1 1)} Face 2542 3714 3675 11370 {rgb=(1 1 1)} Face 2543 3675 3839 11370 {rgb=(1 1 1)} Face 2544 3839 3859 11370 {rgb=(1 1 1)} Face 2545 3839 3675 11371 {rgb=(1 1 1)} Face 2546 3675 3643 11371 {rgb=(1 1 1)} Face 2547 3643 3806 11371 {rgb=(1 1 1)} Face 2548 3806 3839 11371 {rgb=(1 1 1)} Face 2549 3806 3643 11372 {rgb=(1 1 1)} Face 2550 3643 3621 11372 {rgb=(1 1 1)} Face 2551 3621 3794 11372 {rgb=(1 1 1)} Face 2552 3794 3806 11372 {rgb=(1 1 1)} Face 2553 3794 3621 11373 {rgb=(1 1 1)} Face 2554 3621 3602 11373 {rgb=(1 1 1)} Face 2555 3602 3769 11373 {rgb=(1 1 1)} Face 2556 3769 3794 11373 {rgb=(1 1 1)} Face 2557 3769 3602 11374 {rgb=(1 1 1)} Face 2558 3602 3597 11374 {rgb=(1 1 1)} Face 2559 3597 3766 11374 {rgb=(1 1 1)} Face 2560 3766 3769 11374 {rgb=(1 1 1)} Face 2561 3766 3597 11375 {rgb=(1 1 1)} Face 2562 3597 3601 11375 {rgb=(1 1 1)} Face 2563 3601 3768 11375 {rgb=(1 1 1)} Face 2564 3768 3766 11375 {rgb=(1 1 1)} Face 2565 3768 3601 11376 {rgb=(1 1 1)} Face 2566 3601 3620 11376 {rgb=(1 1 1)} Face 2567 3620 3793 11376 {rgb=(1 1 1)} Face 2568 3793 3768 11376 {rgb=(1 1 1)} Face 2569 3793 3620 11377 {rgb=(1 1 1)} Face 2570 3620 3642 11377 {rgb=(1 1 1)} Face 2571 3642 3805 11377 {rgb=(1 1 1)} Face 2572 3805 3793 11377 {rgb=(1 1 1)} Face 2573 3805 3642 11378 {rgb=(1 1 1)} Face 2574 3642 3674 11378 {rgb=(1 1 1)} Face 2575 3674 3838 11378 {rgb=(1 1 1)} Face 2576 3838 3805 11378 {rgb=(1 1 1)} Face 2577 3838 3674 11379 {rgb=(1 1 1)} Face 2578 3674 3713 11379 {rgb=(1 1 1)} Face 2579 3713 3858 11379 {rgb=(1 1 1)} Face 2580 3858 3838 11379 {rgb=(1 1 1)} Face 2581 3858 3713 11380 {rgb=(1 1 1)} Face 2582 3713 3750 11380 {rgb=(1 1 1)} Face 2583 3750 3875 11380 {rgb=(1 1 1)} Face 2584 3875 3858 11380 {rgb=(1 1 1)} Face 2585 3875 3750 11381 {rgb=(1 1 1)} Face 2586 3750 3830 11381 {rgb=(1 1 1)} Face 2587 3830 3896 11381 {rgb=(1 1 1)} Face 2588 3896 3875 11381 {rgb=(1 1 1)} Face 2589 3896 3830 11382 {rgb=(1 1 1)} Face 2590 3830 3881 11382 {rgb=(1 1 1)} Face 2591 3881 3919 11382 {rgb=(1 1 1)} Face 2592 3919 3896 11382 {rgb=(1 1 1)} Face 2593 3919 3881 11383 {rgb=(1 1 1)} Face 2594 3881 3934 11383 {rgb=(1 1 1)} Face 2595 3934 3953 11383 {rgb=(1 1 1)} Face 2596 3953 3919 11383 {rgb=(1 1 1)} Face 2597 3953 3934 11384 {rgb=(1 1 1)} Face 2598 3934 4000 11384 {rgb=(1 1 1)} Face 2599 4000 3991 11384 {rgb=(1 1 1)} Face 2600 3991 3953 11384 {rgb=(1 1 1)} Face 2601 3991 4000 11385 {rgb=(1 1 1)} Face 2602 4000 4048 11385 {rgb=(1 1 1)} Face 2603 4048 4012 11385 {rgb=(1 1 1)} Face 2604 4012 3991 11385 {rgb=(1 1 1)} Face 2605 4012 4048 11386 {rgb=(1 1 1)} Face 2606 4048 4103 11386 {rgb=(1 1 1)} Face 2607 4103 4032 11386 {rgb=(1 1 1)} Face 2608 4032 4012 11386 {rgb=(1 1 1)} Face 2609 4032 4103 11387 {rgb=(1 1 1)} Face 2610 4103 4161 11387 {rgb=(1 1 1)} Face 2611 4161 4065 11387 {rgb=(1 1 1)} Face 2612 4065 4032 11387 {rgb=(1 1 1)} Face 2613 4065 4161 11388 {rgb=(1 1 1)} Face 2614 4161 4213 11388 {rgb=(1 1 1)} Face 2615 4213 4083 11388 {rgb=(1 1 1)} Face 2616 4083 4065 11388 {rgb=(1 1 1)} Face 2617 4083 4213 11389 {rgb=(1 1 1)} Face 2618 4213 4268 11389 {rgb=(1 1 1)} Face 2619 4268 4113 11389 {rgb=(1 1 1)} Face 2620 4113 4083 11389 {rgb=(1 1 1)} Face 2621 4113 4268 11390 {rgb=(1 1 1)} Face 2622 4268 4295 11390 {rgb=(1 1 1)} Face 2623 4295 4127 11390 {rgb=(1 1 1)} Face 2624 4127 4113 11390 {rgb=(1 1 1)} Face 2625 4127 4295 11391 {rgb=(1 1 1)} Face 2626 4295 4318 11391 {rgb=(1 1 1)} Face 2627 4318 4146 11391 {rgb=(1 1 1)} Face 2628 4146 4127 11391 {rgb=(1 1 1)} Face 2629 4146 4318 11392 {rgb=(1 1 1)} Face 2630 4318 4340 11392 {rgb=(1 1 1)} Face 2631 4340 4158 11392 {rgb=(1 1 1)} Face 2632 4158 4146 11392 {rgb=(1 1 1)} Face 2633 4158 4340 11393 {rgb=(1 1 1)} Face 2634 4340 4357 11393 {rgb=(1 1 1)} Face 2635 4357 4166 11393 {rgb=(1 1 1)} Face 2636 4166 4158 11393 {rgb=(1 1 1)} Face 2637 4166 4357 11394 {rgb=(1 1 1)} Face 2638 4357 4364 11394 {rgb=(1 1 1)} Face 2639 4364 4168 11394 {rgb=(1 1 1)} Face 2640 4168 4166 11394 {rgb=(1 1 1)} Face 2641 4168 4364 11395 {rgb=(1 1 1)} Face 2642 4364 4358 11395 {rgb=(1 1 1)} Face 2643 4358 4167 11395 {rgb=(1 1 1)} Face 2644 4167 4168 11395 {rgb=(1 1 1)} Face 2645 4167 4358 11396 {rgb=(1 1 1)} Face 2646 4358 4341 11396 {rgb=(1 1 1)} Face 2647 4341 4159 11396 {rgb=(1 1 1)} Face 2648 4159 4167 11396 {rgb=(1 1 1)} Face 2649 4159 4341 11397 {rgb=(1 1 1)} Face 2650 4341 4319 11397 {rgb=(1 1 1)} Face 2651 4319 4147 11397 {rgb=(1 1 1)} Face 2652 4147 4159 11397 {rgb=(1 1 1)} Face 2653 4147 4319 11398 {rgb=(1 1 1)} Face 2654 4319 4296 11398 {rgb=(1 1 1)} Face 2655 4296 4128 11398 {rgb=(1 1 1)} Face 2656 4128 4147 11398 {rgb=(1 1 1)} Face 2657 4128 4296 11399 {rgb=(1 1 1)} Face 2658 4296 4269 11399 {rgb=(1 1 1)} Face 2659 4269 4114 11399 {rgb=(1 1 1)} Face 2660 4114 4128 11399 {rgb=(1 1 1)} Face 2661 4114 4269 11400 {rgb=(1 1 1)} Face 2662 4269 4214 11400 {rgb=(1 1 1)} Face 2663 4214 4084 11400 {rgb=(1 1 1)} Face 2664 4084 4114 11400 {rgb=(1 1 1)} Face 2665 4084 4214 11401 {rgb=(1 1 1)} Face 2666 4214 4162 11401 {rgb=(1 1 1)} Face 2667 4162 4066 11401 {rgb=(1 1 1)} Face 2668 4066 4084 11401 {rgb=(1 1 1)} Face 2669 4066 4162 11402 {rgb=(1 1 1)} Face 2670 4162 4104 11402 {rgb=(1 1 1)} Face 2671 4104 4033 11402 {rgb=(1 1 1)} Face 2672 4033 4066 11402 {rgb=(1 1 1)} Face 2673 4033 4104 11403 {rgb=(1 1 1)} Face 2674 4104 4049 11403 {rgb=(1 1 1)} Face 2675 4049 4013 11403 {rgb=(1 1 1)} Face 2676 4013 4033 11403 {rgb=(1 1 1)} Face 2677 4013 4049 11404 {rgb=(1 1 1)} Face 2678 4049 4001 11404 {rgb=(1 1 1)} Face 2679 4001 3992 11404 {rgb=(1 1 1)} Face 2680 3992 4013 11404 {rgb=(1 1 1)} Face 2681 4915 4881 11405 {rgb=(1 0 0)} Face 2682 4881 4464 11405 {rgb=(1 0 0)} Face 2683 4464 4680 11405 {rgb=(1 0 0)} Face 2684 4680 4915 11405 {rgb=(1 0 0)} Face 2685 4903 4669 11406 {rgb=(1 0 0)} Face 2686 4669 4452 11406 {rgb=(1 0 0)} Face 2687 4452 4870 11406 {rgb=(1 0 0)} Face 2688 4870 4903 11406 {rgb=(1 0 0)} Face 2689 4741 4955 11407 {rgb=(1 0 0)} Face 2690 4955 4710 11407 {rgb=(1 0 0)} Face 2691 4710 4507 11407 {rgb=(1 0 0)} Face 2692 4507 4741 11407 {rgb=(1 0 0)} Face 2693 5327 5707 11408 {rgb=(1 0 0)} Face 2694 5707 5553 11408 {rgb=(1 0 0)} Face 2695 5553 5333 11408 {rgb=(1 0 0)} Face 2696 5333 5327 11408 {rgb=(1 0 0)} Face 2697 6127 6367 11409 {rgb=(1 0 0)} Face 2698 6367 6534 11409 {rgb=(1 0 0)} Face 2699 6534 6160 11409 {rgb=(1 0 0)} Face 2700 6160 6127 11409 {rgb=(1 0 0)} Face 2701 6172 6588 11410 {rgb=(1 0 0)} Face 2702 6588 6377 11410 {rgb=(1 0 0)} Face 2703 6377 6140 11410 {rgb=(1 0 0)} Face 2704 6140 6172 11410 {rgb=(1 0 0)} Face 2705 6063 6083 11411 {rgb=(1 0 0)} Face 2706 6083 6533 11411 {rgb=(1 0 0)} Face 2707 6533 6339 11411 {rgb=(1 0 0)} Face 2708 6339 6063 11411 {rgb=(1 0 0)} Face 2709 4741 4507 11412 {rgb=(1 0 0)} Face 2710 4507 4498 11412 {rgb=(1 0 0)} Face 2711 4498 4737 11412 {rgb=(1 0 0)} Face 2712 4737 4741 11412 {rgb=(1 0 0)} Face 2713 4944 4816 11413 {rgb=(1 0 0)} Face 2714 4816 5290 11413 {rgb=(1 0 0)} Face 2715 5290 5323 11413 {rgb=(1 0 0)} Face 2716 5323 4944 11413 {rgb=(1 0 0)} Face 2717 4977 4955 11414 {rgb=(1 0 0)} Face 2718 4955 5327 11414 {rgb=(1 0 0)} Face 2719 5327 5333 11414 {rgb=(1 0 0)} Face 2720 5333 4977 11414 {rgb=(1 0 0)} Face 2721 5707 5327 11415 {rgb=(1 0 0)} Face 2722 5327 5313 11415 {rgb=(1 0 0)} Face 2723 5313 5723 11415 {rgb=(1 0 0)} Face 2724 5723 5707 11415 {rgb=(1 0 0)} Face 2725 5301 5313 11416 {rgb=(1 0 0)} Face 2726 5313 4903 11416 {rgb=(1 0 0)} Face 2727 4903 4870 11416 {rgb=(1 0 0)} Face 2728 4870 5301 11416 {rgb=(1 0 0)} Face 2729 4669 4903 11417 {rgb=(1 0 0)} Face 2730 4903 4955 11417 {rgb=(1 0 0)} Face 2731 4955 4741 11417 {rgb=(1 0 0)} Face 2732 4741 4669 11417 {rgb=(1 0 0)} Face 2733 4737 4944 11418 {rgb=(1 0 0)} Face 2734 4944 4915 11418 {rgb=(1 0 0)} Face 2735 4915 4680 11418 {rgb=(1 0 0)} Face 2736 4680 4737 11418 {rgb=(1 0 0)} Face 2737 4881 4915 11419 {rgb=(1 0 0)} Face 2738 4915 5315 11419 {rgb=(1 0 0)} Face 2739 5315 5303 11419 {rgb=(1 0 0)} Face 2740 5303 4881 11419 {rgb=(1 0 0)} Face 2741 5720 5315 11420 {rgb=(1 0 0)} Face 2742 5315 5323 11420 {rgb=(1 0 0)} Face 2743 5323 5711 11420 {rgb=(1 0 0)} Face 2744 5711 5720 11420 {rgb=(1 0 0)} Face 2745 4680 4464 11421 {rgb=(1 0 0)} Face 2746 4464 4433 11421 {rgb=(1 0 0)} Face 2747 4433 4669 11421 {rgb=(1 0 0)} Face 2748 4669 4680 11421 {rgb=(1 0 0)} Face 2749 6311 6542 11422 {rgb=(1 0 0)} Face 2750 6542 6533 11422 {rgb=(1 0 0)} Face 2751 6533 6306 11422 {rgb=(1 0 0)} Face 2752 6306 6311 11422 {rgb=(1 0 0)} Face 2753 5711 5751 11423 {rgb=(1 0 0)} Face 2754 5751 6228 11423 {rgb=(1 0 0)} Face 2755 6228 6096 11423 {rgb=(1 0 0)} Face 2756 6096 5711 11423 {rgb=(1 0 0)} Face 2757 6172 6140 11424 {rgb=(1 0 0)} Face 2758 6140 5723 11424 {rgb=(1 0 0)} Face 2759 5723 5739 11424 {rgb=(1 0 0)} Face 2760 5739 6172 11424 {rgb=(1 0 0)} Face 2761 5700 5707 11425 {rgb=(1 0 0)} Face 2762 5707 6083 11425 {rgb=(1 0 0)} Face 2763 6083 6063 11425 {rgb=(1 0 0)} Face 2764 6063 5700 11425 {rgb=(1 0 0)} Face 2765 6306 6083 11426 {rgb=(1 0 0)} Face 2766 6083 6140 11426 {rgb=(1 0 0)} Face 2767 6140 6377 11426 {rgb=(1 0 0)} Face 2768 6377 6306 11426 {rgb=(1 0 0)} Face 2769 5736 5720 11427 {rgb=(1 0 0)} Face 2770 5720 6127 11427 {rgb=(1 0 0)} Face 2771 6127 6160 11427 {rgb=(1 0 0)} Face 2772 6160 5736 11427 {rgb=(1 0 0)} Face 2773 6367 6127 11428 {rgb=(1 0 0)} Face 2774 6127 6096 11428 {rgb=(1 0 0)} Face 2775 6096 6311 11428 {rgb=(1 0 0)} Face 2776 6311 6367 11428 {rgb=(1 0 0)} Face 2777 6377 6605 11429 {rgb=(1 0 0)} Face 2778 6605 6577 11429 {rgb=(1 0 0)} Face 2779 6577 6367 11429 {rgb=(1 0 0)} Face 2780 6367 6377 11429 {rgb=(1 0 0)} Face 2781 4737 4498 11430 {rgb=(1 0 0)} Face 2782 4498 4816 11430 {rgb=(1 0 0)} Face 2783 4816 4944 11430 {rgb=(1 0 0)} Face 2784 4944 4737 11430 {rgb=(1 0 0)} Face 2785 5323 5290 11431 {rgb=(1 0 0)} Face 2786 5290 5751 11431 {rgb=(1 0 0)} Face 2787 5751 5711 11431 {rgb=(1 0 0)} Face 2788 5711 5323 11431 {rgb=(1 0 0)} Face 2789 6542 6311 11432 {rgb=(1 0 0)} Face 2790 6311 6096 11432 {rgb=(1 0 0)} Face 2791 6096 6228 11432 {rgb=(1 0 0)} Face 2792 6228 6542 11432 {rgb=(1 0 0)} Face 2793 5723 5313 11433 {rgb=(1 0 0)} Face 2794 5313 5301 11433 {rgb=(1 0 0)} Face 2795 5301 5739 11433 {rgb=(1 0 0)} Face 2796 5739 5723 11433 {rgb=(1 0 0)} Face 2797 5303 5315 11434 {rgb=(1 0 0)} Face 2798 5315 5720 11434 {rgb=(1 0 0)} Face 2799 5720 5736 11434 {rgb=(1 0 0)} Face 2800 5736 5303 11434 {rgb=(1 0 0)} Face 2801 6311 6306 11435 {rgb=(1 0 0)} Face 2802 6306 6377 11435 {rgb=(1 0 0)} Face 2803 6377 6367 11435 {rgb=(1 0 0)} Face 2804 6367 6311 11435 {rgb=(1 0 0)} Face 2805 5720 5711 11436 {rgb=(1 0 0)} Face 2806 5711 6096 11436 {rgb=(1 0 0)} Face 2807 6096 6127 11436 {rgb=(1 0 0)} Face 2808 6127 5720 11436 {rgb=(1 0 0)} Face 2809 6140 6083 11437 {rgb=(1 0 0)} Face 2810 6083 5707 11437 {rgb=(1 0 0)} Face 2811 5707 5723 11437 {rgb=(1 0 0)} Face 2812 5723 6140 11437 {rgb=(1 0 0)} Face 2813 4741 4737 11438 {rgb=(1 0 0)} Face 2814 4737 4680 11438 {rgb=(1 0 0)} Face 2815 4680 4669 11438 {rgb=(1 0 0)} Face 2816 4669 4741 11438 {rgb=(1 0 0)} Face 2817 5323 5315 11439 {rgb=(1 0 0)} Face 2818 5315 4915 11439 {rgb=(1 0 0)} Face 2819 4915 4944 11439 {rgb=(1 0 0)} Face 2820 4944 5323 11439 {rgb=(1 0 0)} Face 2821 4955 4903 11440 {rgb=(1 0 0)} Face 2822 4903 5313 11440 {rgb=(1 0 0)} Face 2823 5313 5327 11440 {rgb=(1 0 0)} Face 2824 5327 4955 11440 {rgb=(1 0 0)} Face 2825 2769 2779 11441 {rgb=(0 0 0)} Face 2826 2779 2657 11441 {rgb=(0 0 0)} Face 2827 2657 2647 11441 {rgb=(0 0 0)} Face 2828 2647 2769 11441 {rgb=(0 0 0)} Face 2829 2577 2657 11442 {rgb=(0 0 0)} Face 2830 2657 2668 11442 {rgb=(0 0 0)} Face 2831 2668 2584 11442 {rgb=(0 0 0)} Face 2832 2584 2577 11442 {rgb=(0 0 0)} Face 2833 2692 2668 11443 {rgb=(0 0 0)} Face 2834 2668 2794 11443 {rgb=(0 0 0)} Face 2835 2794 2820 11443 {rgb=(0 0 0)} Face 2836 2820 2692 11443 {rgb=(0 0 0)} Face 2837 3002 2794 11444 {rgb=(0 0 0)} Face 2838 2794 2779 11444 {rgb=(0 0 0)} Face 2839 2779 2973 11444 {rgb=(0 0 0)} Face 2840 2973 3002 11444 {rgb=(0 0 0)} Face 2841 2570 2577 11445 {rgb=(0 0 0)} Face 2842 2577 2500 11445 {rgb=(0 0 0)} Face 2843 2500 2496 11445 {rgb=(0 0 0)} Face 2844 2496 2570 11445 {rgb=(0 0 0)} Face 2845 2518 2500 11446 {rgb=(0 0 0)} Face 2846 2500 2584 11446 {rgb=(0 0 0)} Face 2847 2584 2597 11446 {rgb=(0 0 0)} Face 2848 2597 2518 11446 {rgb=(0 0 0)} Face 2849 4841 4867 11447 {rgb=(0 0 0)} Face 2850 4867 4609 11447 {rgb=(0 0 0)} Face 2851 4609 4587 11447 {rgb=(0 0 0)} Face 2852 4587 4841 11447 {rgb=(0 0 0)} Face 2853 4377 4609 11448 {rgb=(0 0 0)} Face 2854 4609 4622 11448 {rgb=(0 0 0)} Face 2855 4622 4383 11448 {rgb=(0 0 0)} Face 2856 4383 4377 11448 {rgb=(0 0 0)} Face 2857 4655 4622 11449 {rgb=(0 0 0)} Face 2858 4622 4889 11449 {rgb=(0 0 0)} Face 2859 4889 4905 11449 {rgb=(0 0 0)} Face 2860 4905 4655 11449 {rgb=(0 0 0)} Face 2861 5004 4889 11450 {rgb=(0 0 0)} Face 2862 4889 4867 11450 {rgb=(0 0 0)} Face 2863 4867 4971 11450 {rgb=(0 0 0)} Face 2864 4971 5004 11450 {rgb=(0 0 0)} Face 2865 3190 3219 11451 {rgb=(0 0 0)} Face 2866 3219 2973 11451 {rgb=(0 0 0)} Face 2867 2973 2932 11451 {rgb=(0 0 0)} Face 2868 2932 3190 11451 {rgb=(0 0 0)} Face 2869 3044 3002 11452 {rgb=(0 0 0)} Face 2870 3002 3255 11452 {rgb=(0 0 0)} Face 2871 3255 3292 11452 {rgb=(0 0 0)} Face 2872 3292 3044 11452 {rgb=(0 0 0)} Face 2873 3484 3255 11453 {rgb=(0 0 0)} Face 2874 3255 3219 11453 {rgb=(0 0 0)} Face 2875 3219 3449 11453 {rgb=(0 0 0)} Face 2876 3449 3484 11453 {rgb=(0 0 0)} Face 2877 3654 3672 11454 {rgb=(0 0 0)} Face 2878 3672 3449 11454 {rgb=(0 0 0)} Face 2879 3449 3421 11454 {rgb=(0 0 0)} Face 2880 3421 3654 11454 {rgb=(0 0 0)} Face 2881 3508 3484 11455 {rgb=(0 0 0)} Face 2882 3484 3677 11455 {rgb=(0 0 0)} Face 2883 3677 3688 11455 {rgb=(0 0 0)} Face 2884 3688 3508 11455 {rgb=(0 0 0)} Face 2885 3887 3677 11456 {rgb=(0 0 0)} Face 2886 3677 3672 11456 {rgb=(0 0 0)} Face 2887 3672 3889 11456 {rgb=(0 0 0)} Face 2888 3889 3887 11456 {rgb=(0 0 0)} Face 2889 4051 4055 11457 {rgb=(0 0 0)} Face 2890 4055 3889 11457 {rgb=(0 0 0)} Face 2891 3889 3880 11457 {rgb=(0 0 0)} Face 2892 3880 4051 11457 {rgb=(0 0 0)} Face 2893 3898 3887 11458 {rgb=(0 0 0)} Face 2894 3887 4054 11458 {rgb=(0 0 0)} Face 2895 4054 4068 11458 {rgb=(0 0 0)} Face 2896 4068 3898 11458 {rgb=(0 0 0)} Face 2897 4228 4054 11459 {rgb=(0 0 0)} Face 2898 4054 4055 11459 {rgb=(0 0 0)} Face 2899 4055 4227 11459 {rgb=(0 0 0)} Face 2900 4227 4228 11459 {rgb=(0 0 0)} Face 2901 4372 4377 11460 {rgb=(0 0 0)} Face 2902 4377 4227 11460 {rgb=(0 0 0)} Face 2903 4227 4223 11460 {rgb=(0 0 0)} Face 2904 4223 4372 11460 {rgb=(0 0 0)} Face 2905 4240 4228 11461 {rgb=(0 0 0)} Face 2906 4228 4383 11461 {rgb=(0 0 0)} Face 2907 4383 4397 11461 {rgb=(0 0 0)} Face 2908 4397 4240 11461 {rgb=(0 0 0)} Face 2909 2647 2570 11462 {rgb=(0 0 0)} Face 2910 2570 2562 11462 {rgb=(0 0 0)} Face 2911 2562 2635 11462 {rgb=(0 0 0)} Face 2912 2635 2647 11462 {rgb=(0 0 0)} Face 2913 2572 2562 11463 {rgb=(0 0 0)} Face 2914 2562 2496 11463 {rgb=(0 0 0)} Face 2915 2496 2506 11463 {rgb=(0 0 0)} Face 2916 2506 2572 11463 {rgb=(0 0 0)} Face 2917 2932 2769 11464 {rgb=(0 0 0)} Face 2918 2769 2747 11464 {rgb=(0 0 0)} Face 2919 2747 2897 11464 {rgb=(0 0 0)} Face 2920 2897 2932 11464 {rgb=(0 0 0)} Face 2921 2753 2747 11465 {rgb=(0 0 0)} Face 2922 2747 2635 11465 {rgb=(0 0 0)} Face 2923 2635 2651 11465 {rgb=(0 0 0)} Face 2924 2651 2753 11465 {rgb=(0 0 0)} Face 2925 3421 3190 11466 {rgb=(0 0 0)} Face 2926 3190 3153 11466 {rgb=(0 0 0)} Face 2927 3153 3390 11466 {rgb=(0 0 0)} Face 2928 3390 3421 11466 {rgb=(0 0 0)} Face 2929 3144 3153 11467 {rgb=(0 0 0)} Face 2930 3153 2897 11467 {rgb=(0 0 0)} Face 2931 2897 2900 11467 {rgb=(0 0 0)} Face 2932 2900 3144 11467 {rgb=(0 0 0)} Face 2933 3880 3654 11468 {rgb=(0 0 0)} Face 2934 3654 3625 11468 {rgb=(0 0 0)} Face 2935 3625 3863 11468 {rgb=(0 0 0)} Face 2936 3863 3880 11468 {rgb=(0 0 0)} Face 2937 3612 3625 11469 {rgb=(0 0 0)} Face 2938 3625 3390 11469 {rgb=(0 0 0)} Face 2939 3390 3376 11469 {rgb=(0 0 0)} Face 2940 3376 3612 11469 {rgb=(0 0 0)} Face 2941 4223 4051 11470 {rgb=(0 0 0)} Face 2942 4051 4043 11470 {rgb=(0 0 0)} Face 2943 4043 4220 11470 {rgb=(0 0 0)} Face 2944 4220 4223 11470 {rgb=(0 0 0)} Face 2945 4045 4043 11471 {rgb=(0 0 0)} Face 2946 4043 3863 11471 {rgb=(0 0 0)} Face 2947 3863 3861 11471 {rgb=(0 0 0)} Face 2948 3861 4045 11471 {rgb=(0 0 0)} Face 2949 4587 4372 11472 {rgb=(0 0 0)} Face 2950 4372 4366 11472 {rgb=(0 0 0)} Face 2951 4366 4569 11472 {rgb=(0 0 0)} Face 2952 4569 4587 11472 {rgb=(0 0 0)} Face 2953 4365 4366 11473 {rgb=(0 0 0)} Face 2954 4366 4220 11473 {rgb=(0 0 0)} Face 2955 4220 4222 11473 {rgb=(0 0 0)} Face 2956 4222 4365 11473 {rgb=(0 0 0)} Face 2957 4942 4841 11474 {rgb=(0 0 0)} Face 2958 4841 4809 11474 {rgb=(0 0 0)} Face 2959 4809 4912 11474 {rgb=(0 0 0)} Face 2960 4912 4942 11474 {rgb=(0 0 0)} Face 2961 4792 4809 11475 {rgb=(0 0 0)} Face 2962 4809 4569 11475 {rgb=(0 0 0)} Face 2963 4569 4562 11475 {rgb=(0 0 0)} Face 2964 4562 4792 11475 {rgb=(0 0 0)} Face 2965 2727 2631 11476 {rgb=(0 0 0)} Face 2966 2631 2597 11476 {rgb=(0 0 0)} Face 2967 2597 2692 11476 {rgb=(0 0 0)} Face 2968 2692 2727 11476 {rgb=(0 0 0)} Face 2969 2651 2572 11477 {rgb=(0 0 0)} Face 2970 2572 2615 11477 {rgb=(0 0 0)} Face 2971 2615 2687 11477 {rgb=(0 0 0)} Face 2972 2687 2651 11477 {rgb=(0 0 0)} Face 2973 2900 2753 11478 {rgb=(0 0 0)} Face 2974 2753 2784 11478 {rgb=(0 0 0)} Face 2975 2784 2935 11478 {rgb=(0 0 0)} Face 2976 2935 2900 11478 {rgb=(0 0 0)} Face 2977 3376 3144 11479 {rgb=(0 0 0)} Face 2978 3144 3165 11479 {rgb=(0 0 0)} Face 2979 3165 3393 11479 {rgb=(0 0 0)} Face 2980 3393 3376 11479 {rgb=(0 0 0)} Face 2981 3861 3612 11480 {rgb=(0 0 0)} Face 2982 3612 3630 11480 {rgb=(0 0 0)} Face 2983 3630 3869 11480 {rgb=(0 0 0)} Face 2984 3869 3861 11480 {rgb=(0 0 0)} Face 2985 4222 4045 11481 {rgb=(0 0 0)} Face 2986 4045 4052 11481 {rgb=(0 0 0)} Face 2987 4052 4231 11481 {rgb=(0 0 0)} Face 2988 4231 4222 11481 {rgb=(0 0 0)} Face 2989 4562 4365 11482 {rgb=(0 0 0)} Face 2990 4365 4367 11482 {rgb=(0 0 0)} Face 2991 4367 4564 11482 {rgb=(0 0 0)} Face 2992 4564 4562 11482 {rgb=(0 0 0)} Face 2993 4912 4792 11483 {rgb=(0 0 0)} Face 2994 4792 4801 11483 {rgb=(0 0 0)} Face 2995 4801 4928 11483 {rgb=(0 0 0)} Face 2996 4928 4912 11483 {rgb=(0 0 0)} Face 2997 4905 5004 11484 {rgb=(0 0 0)} Face 2998 5004 5028 11484 {rgb=(0 0 0)} Face 2999 5028 4939 11484 {rgb=(0 0 0)} Face 3000 4939 4905 11484 {rgb=(0 0 0)} Face 3001 4397 4655 11485 {rgb=(0 0 0)} Face 3002 4655 4690 11485 {rgb=(0 0 0)} Face 3003 4690 4423 11485 {rgb=(0 0 0)} Face 3004 4423 4397 11485 {rgb=(0 0 0)} Face 3005 4068 4240 11486 {rgb=(0 0 0)} Face 3006 4240 4280 11486 {rgb=(0 0 0)} Face 3007 4280 4096 11486 {rgb=(0 0 0)} Face 3008 4096 4068 11486 {rgb=(0 0 0)} Face 3009 3688 3898 11487 {rgb=(0 0 0)} Face 3010 3898 3927 11487 {rgb=(0 0 0)} Face 3011 3927 3720 11487 {rgb=(0 0 0)} Face 3012 3720 3688 11487 {rgb=(0 0 0)} Face 3013 3292 3508 11488 {rgb=(0 0 0)} Face 3014 3508 3543 11488 {rgb=(0 0 0)} Face 3015 3543 3328 11488 {rgb=(0 0 0)} Face 3016 3328 3292 11488 {rgb=(0 0 0)} Face 3017 2820 3044 11489 {rgb=(0 0 0)} Face 3018 3044 3093 11489 {rgb=(0 0 0)} Face 3019 3093 2859 11489 {rgb=(0 0 0)} Face 3020 2859 2820 11489 {rgb=(0 0 0)} Face 3021 8224 8252 11490 {rgb=(0 0 0)} Face 3022 8252 8383 11490 {rgb=(0 0 0)} Face 3023 8383 8355 11490 {rgb=(0 0 0)} Face 3024 8355 8224 11490 {rgb=(0 0 0)} Face 3025 8463 8383 11491 {rgb=(0 0 0)} Face 3026 8383 8393 11491 {rgb=(0 0 0)} Face 3027 8393 8470 11491 {rgb=(0 0 0)} Face 3028 8470 8463 11491 {rgb=(0 0 0)} Face 3029 8401 8393 11492 {rgb=(0 0 0)} Face 3030 8393 8265 11492 {rgb=(0 0 0)} Face 3031 8265 8277 11492 {rgb=(0 0 0)} Face 3032 8277 8401 11492 {rgb=(0 0 0)} Face 3033 8062 8265 11493 {rgb=(0 0 0)} Face 3034 8265 8252 11493 {rgb=(0 0 0)} Face 3035 8252 8034 11493 {rgb=(0 0 0)} Face 3036 8034 8062 11493 {rgb=(0 0 0)} Face 3037 8448 8463 11494 {rgb=(0 0 0)} Face 3038 8463 8543 11494 {rgb=(0 0 0)} Face 3039 8543 8527 11494 {rgb=(0 0 0)} Face 3040 8527 8448 11494 {rgb=(0 0 0)} Face 3041 8548 8543 11495 {rgb=(0 0 0)} Face 3042 8543 8470 11495 {rgb=(0 0 0)} Face 3043 8470 8479 11495 {rgb=(0 0 0)} Face 3044 8479 8548 11495 {rgb=(0 0 0)} Face 3045 6137 6152 11496 {rgb=(0 0 0)} Face 3046 6152 6425 11496 {rgb=(0 0 0)} Face 3047 6425 6391 11496 {rgb=(0 0 0)} Face 3048 6391 6137 11496 {rgb=(0 0 0)} Face 3049 6658 6425 11497 {rgb=(0 0 0)} Face 3050 6425 6437 11497 {rgb=(0 0 0)} Face 3051 6437 6662 11497 {rgb=(0 0 0)} Face 3052 6662 6658 11497 {rgb=(0 0 0)} Face 3053 6459 6437 11498 {rgb=(0 0 0)} Face 3054 6437 6175 11498 {rgb=(0 0 0)} Face 3055 6175 6201 11498 {rgb=(0 0 0)} Face 3056 6201 6459 11498 {rgb=(0 0 0)} Face 3057 6066 6175 11499 {rgb=(0 0 0)} Face 3058 6175 6152 11499 {rgb=(0 0 0)} Face 3059 6152 6035 11499 {rgb=(0 0 0)} Face 3060 6035 6066 11499 {rgb=(0 0 0)} Face 3061 7753 7790 11500 {rgb=(0 0 0)} Face 3062 7790 8034 11500 {rgb=(0 0 0)} Face 3063 8034 7989 11500 {rgb=(0 0 0)} Face 3064 7989 7753 11500 {rgb=(0 0 0)} Face 3065 8104 8062 11501 {rgb=(0 0 0)} Face 3066 8062 7825 11501 {rgb=(0 0 0)} Face 3067 7825 7858 11501 {rgb=(0 0 0)} Face 3068 7858 8104 11501 {rgb=(0 0 0)} Face 3069 7595 7825 11502 {rgb=(0 0 0)} Face 3070 7825 7790 11502 {rgb=(0 0 0)} Face 3071 7790 7560 11502 {rgb=(0 0 0)} Face 3072 7560 7595 11502 {rgb=(0 0 0)} Face 3073 7353 7366 11503 {rgb=(0 0 0)} Face 3074 7366 7560 11503 {rgb=(0 0 0)} Face 3075 7560 7534 11503 {rgb=(0 0 0)} Face 3076 7534 7353 11503 {rgb=(0 0 0)} Face 3077 7624 7595 11504 {rgb=(0 0 0)} Face 3078 7595 7372 11504 {rgb=(0 0 0)} Face 3079 7372 7392 11504 {rgb=(0 0 0)} Face 3080 7392 7624 11504 {rgb=(0 0 0)} Face 3081 7154 7372 11505 {rgb=(0 0 0)} Face 3082 7372 7366 11505 {rgb=(0 0 0)} Face 3083 7366 7156 11505 {rgb=(0 0 0)} Face 3084 7156 7154 11505 {rgb=(0 0 0)} Face 3085 6974 6986 11506 {rgb=(0 0 0)} Face 3086 6986 7156 11506 {rgb=(0 0 0)} Face 3087 7156 7145 11506 {rgb=(0 0 0)} Face 3088 7145 6974 11506 {rgb=(0 0 0)} Face 3089 7163 7154 11507 {rgb=(0 0 0)} Face 3090 7154 6985 11507 {rgb=(0 0 0)} Face 3091 6985 6989 11507 {rgb=(0 0 0)} Face 3092 6989 7163 11507 {rgb=(0 0 0)} Face 3093 6818 6985 11508 {rgb=(0 0 0)} Face 3094 6985 6986 11508 {rgb=(0 0 0)} Face 3095 6986 6817 11508 {rgb=(0 0 0)} Face 3096 6817 6818 11508 {rgb=(0 0 0)} Face 3097 6643 6658 11509 {rgb=(0 0 0)} Face 3098 6658 6817 11509 {rgb=(0 0 0)} Face 3099 6817 6803 11509 {rgb=(0 0 0)} Face 3100 6803 6643 11509 {rgb=(0 0 0)} Face 3101 6822 6818 11510 {rgb=(0 0 0)} Face 3102 6818 6662 11510 {rgb=(0 0 0)} Face 3103 6662 6667 11510 {rgb=(0 0 0)} Face 3104 6667 6822 11510 {rgb=(0 0 0)} Face 3105 8414 8485 11511 {rgb=(0 0 0)} Face 3106 8485 8479 11511 {rgb=(0 0 0)} Face 3107 8479 8401 11511 {rgb=(0 0 0)} Face 3108 8401 8414 11511 {rgb=(0 0 0)} Face 3109 8538 8548 11512 {rgb=(0 0 0)} Face 3110 8548 8485 11512 {rgb=(0 0 0)} Face 3111 8485 8476 11512 {rgb=(0 0 0)} Face 3112 8476 8538 11512 {rgb=(0 0 0)} Face 3113 8398 8414 11513 {rgb=(0 0 0)} Face 3114 8414 8297 11513 {rgb=(0 0 0)} Face 3115 8297 8292 11513 {rgb=(0 0 0)} Face 3116 8292 8398 11513 {rgb=(0 0 0)} Face 3117 8145 8297 11514 {rgb=(0 0 0)} Face 3118 8297 8277 11514 {rgb=(0 0 0)} Face 3119 8277 8104 11514 {rgb=(0 0 0)} Face 3120 8104 8145 11514 {rgb=(0 0 0)} Face 3121 8142 8145 11515 {rgb=(0 0 0)} Face 3122 8145 7891 11515 {rgb=(0 0 0)} Face 3123 7891 7898 11515 {rgb=(0 0 0)} Face 3124 7898 8142 11515 {rgb=(0 0 0)} Face 3125 7655 7891 11516 {rgb=(0 0 0)} Face 3126 7891 7858 11516 {rgb=(0 0 0)} Face 3127 7858 7624 11516 {rgb=(0 0 0)} Face 3128 7624 7655 11516 {rgb=(0 0 0)} Face 3129 7666 7655 11517 {rgb=(0 0 0)} Face 3130 7655 7420 11517 {rgb=(0 0 0)} Face 3131 7420 7432 11517 {rgb=(0 0 0)} Face 3132 7432 7666 11517 {rgb=(0 0 0)} Face 3133 7178 7420 11518 {rgb=(0 0 0)} Face 3134 7420 7392 11518 {rgb=(0 0 0)} Face 3135 7392 7163 11518 {rgb=(0 0 0)} Face 3136 7163 7178 11518 {rgb=(0 0 0)} Face 3137 7182 7178 11519 {rgb=(0 0 0)} Face 3138 7178 6996 11519 {rgb=(0 0 0)} Face 3139 6996 6994 11519 {rgb=(0 0 0)} Face 3140 6994 7182 11519 {rgb=(0 0 0)} Face 3141 6825 6996 11520 {rgb=(0 0 0)} Face 3142 6996 6989 11520 {rgb=(0 0 0)} Face 3143 6989 6822 11520 {rgb=(0 0 0)} Face 3144 6822 6825 11520 {rgb=(0 0 0)} Face 3145 6823 6825 11521 {rgb=(0 0 0)} Face 3146 6825 6672 11521 {rgb=(0 0 0)} Face 3147 6672 6673 11521 {rgb=(0 0 0)} Face 3148 6673 6823 11521 {rgb=(0 0 0)} Face 3149 6476 6672 11522 {rgb=(0 0 0)} Face 3150 6672 6667 11522 {rgb=(0 0 0)} Face 3151 6667 6459 11522 {rgb=(0 0 0)} Face 3152 6459 6476 11522 {rgb=(0 0 0)} Face 3153 6483 6476 11523 {rgb=(0 0 0)} Face 3154 6476 6234 11523 {rgb=(0 0 0)} Face 3155 6234 6250 11523 {rgb=(0 0 0)} Face 3156 6250 6483 11523 {rgb=(0 0 0)} Face 3157 6131 6234 11524 {rgb=(0 0 0)} Face 3158 6234 6201 11524 {rgb=(0 0 0)} Face 3159 6201 6097 11524 {rgb=(0 0 0)} Face 3160 6097 6131 11524 {rgb=(0 0 0)} Face 3161 8355 8448 11525 {rgb=(0 0 0)} Face 3162 8448 8417 11525 {rgb=(0 0 0)} Face 3163 8417 8316 11525 {rgb=(0 0 0)} Face 3164 8316 8355 11525 {rgb=(0 0 0)} Face 3165 8360 8434 11526 {rgb=(0 0 0)} Face 3166 8434 8476 11526 {rgb=(0 0 0)} Face 3167 8476 8398 11526 {rgb=(0 0 0)} Face 3168 8398 8360 11526 {rgb=(0 0 0)} Face 3169 8100 8259 11527 {rgb=(0 0 0)} Face 3170 8259 8292 11527 {rgb=(0 0 0)} Face 3171 8292 8142 11527 {rgb=(0 0 0)} Face 3172 8142 8100 11527 {rgb=(0 0 0)} Face 3173 7652 7878 11528 {rgb=(0 0 0)} Face 3174 7878 7898 11528 {rgb=(0 0 0)} Face 3175 7898 7666 11528 {rgb=(0 0 0)} Face 3176 7666 7652 11528 {rgb=(0 0 0)} Face 3177 7172 7415 11529 {rgb=(0 0 0)} Face 3178 7415 7432 11529 {rgb=(0 0 0)} Face 3179 7432 7182 11529 {rgb=(0 0 0)} Face 3180 7182 7172 11529 {rgb=(0 0 0)} Face 3181 6812 6988 11530 {rgb=(0 0 0)} Face 3182 6988 6994 11530 {rgb=(0 0 0)} Face 3183 6994 6823 11530 {rgb=(0 0 0)} Face 3184 6823 6812 11530 {rgb=(0 0 0)} Face 3185 6481 6671 11531 {rgb=(0 0 0)} Face 3186 6671 6673 11531 {rgb=(0 0 0)} Face 3187 6673 6483 11531 {rgb=(0 0 0)} Face 3188 6483 6481 11531 {rgb=(0 0 0)} Face 3189 6113 6242 11532 {rgb=(0 0 0)} Face 3190 6242 6250 11532 {rgb=(0 0 0)} Face 3191 6250 6131 11532 {rgb=(0 0 0)} Face 3192 6131 6113 11532 {rgb=(0 0 0)} Face 3193 6048 6081 11533 {rgb=(0 0 0)} Face 3194 6081 6097 11533 {rgb=(0 0 0)} Face 3195 6097 6066 11533 {rgb=(0 0 0)} Face 3196 6066 6048 11533 {rgb=(0 0 0)} Face 3197 6100 6013 11534 {rgb=(0 0 0)} Face 3198 6013 6035 11534 {rgb=(0 0 0)} Face 3199 6035 6137 11534 {rgb=(0 0 0)} Face 3200 6137 6100 11534 {rgb=(0 0 0)} Face 3201 6614 6358 11535 {rgb=(0 0 0)} Face 3202 6358 6391 11535 {rgb=(0 0 0)} Face 3203 6391 6643 11535 {rgb=(0 0 0)} Face 3204 6643 6614 11535 {rgb=(0 0 0)} Face 3205 6949 6761 11536 {rgb=(0 0 0)} Face 3206 6761 6803 11536 {rgb=(0 0 0)} Face 3207 6803 6974 11536 {rgb=(0 0 0)} Face 3208 6974 6949 11536 {rgb=(0 0 0)} Face 3209 7322 7113 11537 {rgb=(0 0 0)} Face 3210 7113 7145 11537 {rgb=(0 0 0)} Face 3211 7145 7353 11537 {rgb=(0 0 0)} Face 3212 7353 7322 11537 {rgb=(0 0 0)} Face 3213 7716 7499 11538 {rgb=(0 0 0)} Face 3214 7499 7534 11538 {rgb=(0 0 0)} Face 3215 7534 7753 11538 {rgb=(0 0 0)} Face 3216 7753 7716 11538 {rgb=(0 0 0)} Face 3217 8182 7944 11539 {rgb=(0 0 0)} Face 3218 7944 7989 11539 {rgb=(0 0 0)} Face 3219 7989 8224 11539 {rgb=(0 0 0)} Face 3220 8224 8182 11539 {rgb=(0 0 0)} Face 3221 4587 4609 11540 {rgb=(0 0 0)} Face 3222 4609 4377 11540 {rgb=(0 0 0)} Face 3223 4377 4372 11540 {rgb=(0 0 0)} Face 3224 4372 4587 11540 {rgb=(0 0 0)} Face 3225 4055 4051 11541 {rgb=(0 0 0)} Face 3226 4051 4223 11541 {rgb=(0 0 0)} Face 3227 4223 4227 11541 {rgb=(0 0 0)} Face 3228 4227 4055 11541 {rgb=(0 0 0)} Face 3229 3672 3654 11542 {rgb=(0 0 0)} Face 3230 3654 3880 11542 {rgb=(0 0 0)} Face 3231 3880 3889 11542 {rgb=(0 0 0)} Face 3232 3889 3672 11542 {rgb=(0 0 0)} Face 3233 3219 3190 11543 {rgb=(0 0 0)} Face 3234 3190 3421 11543 {rgb=(0 0 0)} Face 3235 3421 3449 11543 {rgb=(0 0 0)} Face 3236 3449 3219 11543 {rgb=(0 0 0)} Face 3237 2779 2769 11544 {rgb=(0 0 0)} Face 3238 2769 2932 11544 {rgb=(0 0 0)} Face 3239 2932 2973 11544 {rgb=(0 0 0)} Face 3240 2973 2779 11544 {rgb=(0 0 0)} Face 3241 2647 2657 11545 {rgb=(0 0 0)} Face 3242 2657 2577 11545 {rgb=(0 0 0)} Face 3243 2577 2570 11545 {rgb=(0 0 0)} Face 3244 2570 2647 11545 {rgb=(0 0 0)} Face 3245 2584 2668 11546 {rgb=(0 0 0)} Face 3246 2668 2692 11546 {rgb=(0 0 0)} Face 3247 2692 2597 11546 {rgb=(0 0 0)} Face 3248 2597 2584 11546 {rgb=(0 0 0)} Face 3249 2496 2500 11547 {rgb=(0 0 0)} Face 3250 2500 2518 11547 {rgb=(0 0 0)} Face 3251 2518 2506 11547 {rgb=(0 0 0)} Face 3252 2506 2496 11547 {rgb=(0 0 0)} Face 3253 2635 2562 11548 {rgb=(0 0 0)} Face 3254 2562 2572 11548 {rgb=(0 0 0)} Face 3255 2572 2651 11548 {rgb=(0 0 0)} Face 3256 2651 2635 11548 {rgb=(0 0 0)} Face 3257 2897 2747 11549 {rgb=(0 0 0)} Face 3258 2747 2753 11549 {rgb=(0 0 0)} Face 3259 2753 2900 11549 {rgb=(0 0 0)} Face 3260 2900 2897 11549 {rgb=(0 0 0)} Face 3261 3390 3153 11550 {rgb=(0 0 0)} Face 3262 3153 3144 11550 {rgb=(0 0 0)} Face 3263 3144 3376 11550 {rgb=(0 0 0)} Face 3264 3376 3390 11550 {rgb=(0 0 0)} Face 3265 3863 3625 11551 {rgb=(0 0 0)} Face 3266 3625 3612 11551 {rgb=(0 0 0)} Face 3267 3612 3861 11551 {rgb=(0 0 0)} Face 3268 3861 3863 11551 {rgb=(0 0 0)} Face 3269 4220 4043 11552 {rgb=(0 0 0)} Face 3270 4043 4045 11552 {rgb=(0 0 0)} Face 3271 4045 4222 11552 {rgb=(0 0 0)} Face 3272 4222 4220 11552 {rgb=(0 0 0)} Face 3273 4569 4366 11553 {rgb=(0 0 0)} Face 3274 4366 4365 11553 {rgb=(0 0 0)} Face 3275 4365 4562 11553 {rgb=(0 0 0)} Face 3276 4562 4569 11553 {rgb=(0 0 0)} Face 3277 4867 4841 11554 {rgb=(0 0 0)} Face 3278 4841 4942 11554 {rgb=(0 0 0)} Face 3279 4942 4971 11554 {rgb=(0 0 0)} Face 3280 4971 4867 11554 {rgb=(0 0 0)} Face 3281 4383 4622 11555 {rgb=(0 0 0)} Face 3282 4622 4655 11555 {rgb=(0 0 0)} Face 3283 4655 4397 11555 {rgb=(0 0 0)} Face 3284 4397 4383 11555 {rgb=(0 0 0)} Face 3285 4068 4054 11556 {rgb=(0 0 0)} Face 3286 4054 4228 11556 {rgb=(0 0 0)} Face 3287 4228 4240 11556 {rgb=(0 0 0)} Face 3288 4240 4068 11556 {rgb=(0 0 0)} Face 3289 3688 3677 11557 {rgb=(0 0 0)} Face 3290 3677 3887 11557 {rgb=(0 0 0)} Face 3291 3887 3898 11557 {rgb=(0 0 0)} Face 3292 3898 3688 11557 {rgb=(0 0 0)} Face 3293 3292 3255 11558 {rgb=(0 0 0)} Face 3294 3255 3484 11558 {rgb=(0 0 0)} Face 3295 3484 3508 11558 {rgb=(0 0 0)} Face 3296 3508 3292 11558 {rgb=(0 0 0)} Face 3297 2820 2794 11559 {rgb=(0 0 0)} Face 3298 2794 3002 11559 {rgb=(0 0 0)} Face 3299 3002 3044 11559 {rgb=(0 0 0)} Face 3300 3044 2820 11559 {rgb=(0 0 0)} Face 3301 6662 6437 11560 {rgb=(0 0 0)} Face 3302 6437 6459 11560 {rgb=(0 0 0)} Face 3303 6459 6667 11560 {rgb=(0 0 0)} Face 3304 6667 6662 11560 {rgb=(0 0 0)} Face 3305 6989 6985 11561 {rgb=(0 0 0)} Face 3306 6985 6818 11561 {rgb=(0 0 0)} Face 3307 6818 6822 11561 {rgb=(0 0 0)} Face 3308 6822 6989 11561 {rgb=(0 0 0)} Face 3309 7392 7372 11562 {rgb=(0 0 0)} Face 3310 7372 7154 11562 {rgb=(0 0 0)} Face 3311 7154 7163 11562 {rgb=(0 0 0)} Face 3312 7163 7392 11562 {rgb=(0 0 0)} Face 3313 7858 7825 11563 {rgb=(0 0 0)} Face 3314 7825 7595 11563 {rgb=(0 0 0)} Face 3315 7595 7624 11563 {rgb=(0 0 0)} Face 3316 7624 7858 11563 {rgb=(0 0 0)} Face 3317 8277 8265 11564 {rgb=(0 0 0)} Face 3318 8265 8062 11564 {rgb=(0 0 0)} Face 3319 8062 8104 11564 {rgb=(0 0 0)} Face 3320 8104 8277 11564 {rgb=(0 0 0)} Face 3321 8470 8393 11565 {rgb=(0 0 0)} Face 3322 8393 8401 11565 {rgb=(0 0 0)} Face 3323 8401 8479 11565 {rgb=(0 0 0)} Face 3324 8479 8470 11565 {rgb=(0 0 0)} Face 3325 8355 8383 11566 {rgb=(0 0 0)} Face 3326 8383 8463 11566 {rgb=(0 0 0)} Face 3327 8463 8448 11566 {rgb=(0 0 0)} Face 3328 8448 8355 11566 {rgb=(0 0 0)} Face 3329 8527 8543 11567 {rgb=(0 0 0)} Face 3330 8543 8548 11567 {rgb=(0 0 0)} Face 3331 8548 8538 11567 {rgb=(0 0 0)} Face 3332 8538 8527 11567 {rgb=(0 0 0)} Face 3333 8485 8414 11568 {rgb=(0 0 0)} Face 3334 8414 8398 11568 {rgb=(0 0 0)} Face 3335 8398 8476 11568 {rgb=(0 0 0)} Face 3336 8476 8485 11568 {rgb=(0 0 0)} Face 3337 8292 8297 11569 {rgb=(0 0 0)} Face 3338 8297 8145 11569 {rgb=(0 0 0)} Face 3339 8145 8142 11569 {rgb=(0 0 0)} Face 3340 8142 8292 11569 {rgb=(0 0 0)} Face 3341 7898 7891 11570 {rgb=(0 0 0)} Face 3342 7891 7655 11570 {rgb=(0 0 0)} Face 3343 7655 7666 11570 {rgb=(0 0 0)} Face 3344 7666 7898 11570 {rgb=(0 0 0)} Face 3345 7432 7420 11571 {rgb=(0 0 0)} Face 3346 7420 7178 11571 {rgb=(0 0 0)} Face 3347 7178 7182 11571 {rgb=(0 0 0)} Face 3348 7182 7432 11571 {rgb=(0 0 0)} Face 3349 6994 6996 11572 {rgb=(0 0 0)} Face 3350 6996 6825 11572 {rgb=(0 0 0)} Face 3351 6825 6823 11572 {rgb=(0 0 0)} Face 3352 6823 6994 11572 {rgb=(0 0 0)} Face 3353 6673 6672 11573 {rgb=(0 0 0)} Face 3354 6672 6476 11573 {rgb=(0 0 0)} Face 3355 6476 6483 11573 {rgb=(0 0 0)} Face 3356 6483 6673 11573 {rgb=(0 0 0)} Face 3357 6201 6175 11574 {rgb=(0 0 0)} Face 3358 6175 6066 11574 {rgb=(0 0 0)} Face 3359 6066 6097 11574 {rgb=(0 0 0)} Face 3360 6097 6201 11574 {rgb=(0 0 0)} Face 3361 6391 6425 11575 {rgb=(0 0 0)} Face 3362 6425 6658 11575 {rgb=(0 0 0)} Face 3363 6658 6643 11575 {rgb=(0 0 0)} Face 3364 6643 6391 11575 {rgb=(0 0 0)} Face 3365 6986 6974 11576 {rgb=(0 0 0)} Face 3366 6974 6803 11576 {rgb=(0 0 0)} Face 3367 6803 6817 11576 {rgb=(0 0 0)} Face 3368 6817 6986 11576 {rgb=(0 0 0)} Face 3369 7366 7353 11577 {rgb=(0 0 0)} Face 3370 7353 7145 11577 {rgb=(0 0 0)} Face 3371 7145 7156 11577 {rgb=(0 0 0)} Face 3372 7156 7366 11577 {rgb=(0 0 0)} Face 3373 7790 7753 11578 {rgb=(0 0 0)} Face 3374 7753 7534 11578 {rgb=(0 0 0)} Face 3375 7534 7560 11578 {rgb=(0 0 0)} Face 3376 7560 7790 11578 {rgb=(0 0 0)} Face 3377 8252 8224 11579 {rgb=(0 0 0)} Face 3378 8224 7989 11579 {rgb=(0 0 0)} Face 3379 7989 8034 11579 {rgb=(0 0 0)} Face 3380 8034 8252 11579 {rgb=(0 0 0)} Face 3381 8355 8316 11580 {rgb=(0 0 0)} Face 3382 8316 8182 11580 {rgb=(0 0 0)} Face 3383 8182 8224 11580 {rgb=(0 0 0)} Face 3384 8224 8355 11580 {rgb=(0 0 0)} Face 3385 7989 7944 11581 {rgb=(0 0 0)} Face 3386 7944 7716 11581 {rgb=(0 0 0)} Face 3387 7716 7753 11581 {rgb=(0 0 0)} Face 3388 7753 7989 11581 {rgb=(0 0 0)} Face 3389 7534 7499 11582 {rgb=(0 0 0)} Face 3390 7499 7322 11582 {rgb=(0 0 0)} Face 3391 7322 7353 11582 {rgb=(0 0 0)} Face 3392 7353 7534 11582 {rgb=(0 0 0)} Face 3393 7145 7113 11583 {rgb=(0 0 0)} Face 3394 7113 6949 11583 {rgb=(0 0 0)} Face 3395 6949 6974 11583 {rgb=(0 0 0)} Face 3396 6974 7145 11583 {rgb=(0 0 0)} Face 3397 6803 6761 11584 {rgb=(0 0 0)} Face 3398 6761 6614 11584 {rgb=(0 0 0)} Face 3399 6614 6643 11584 {rgb=(0 0 0)} Face 3400 6643 6803 11584 {rgb=(0 0 0)} Face 3401 6391 6358 11585 {rgb=(0 0 0)} Face 3402 6358 6100 11585 {rgb=(0 0 0)} Face 3403 6100 6137 11585 {rgb=(0 0 0)} Face 3404 6137 6391 11585 {rgb=(0 0 0)} Face 3405 6035 6013 11586 {rgb=(0 0 0)} Face 3406 6013 6048 11586 {rgb=(0 0 0)} Face 3407 6048 6066 11586 {rgb=(0 0 0)} Face 3408 6066 6035 11586 {rgb=(0 0 0)} Face 3409 6097 6081 11587 {rgb=(0 0 0)} Face 3410 6081 6113 11587 {rgb=(0 0 0)} Face 3411 6113 6131 11587 {rgb=(0 0 0)} Face 3412 6131 6097 11587 {rgb=(0 0 0)} Face 3413 6250 6242 11588 {rgb=(0 0 0)} Face 3414 6242 6481 11588 {rgb=(0 0 0)} Face 3415 6481 6483 11588 {rgb=(0 0 0)} Face 3416 6483 6250 11588 {rgb=(0 0 0)} Face 3417 6673 6671 11589 {rgb=(0 0 0)} Face 3418 6671 6812 11589 {rgb=(0 0 0)} Face 3419 6812 6823 11589 {rgb=(0 0 0)} Face 3420 6823 6673 11589 {rgb=(0 0 0)} Face 3421 6994 6988 11590 {rgb=(0 0 0)} Face 3422 6988 7172 11590 {rgb=(0 0 0)} Face 3423 7172 7182 11590 {rgb=(0 0 0)} Face 3424 7182 6994 11590 {rgb=(0 0 0)} Face 3425 7432 7415 11591 {rgb=(0 0 0)} Face 3426 7415 7652 11591 {rgb=(0 0 0)} Face 3427 7652 7666 11591 {rgb=(0 0 0)} Face 3428 7666 7432 11591 {rgb=(0 0 0)} Face 3429 7898 7878 11592 {rgb=(0 0 0)} Face 3430 7878 8100 11592 {rgb=(0 0 0)} Face 3431 8100 8142 11592 {rgb=(0 0 0)} Face 3432 8142 7898 11592 {rgb=(0 0 0)} Face 3433 8292 8259 11593 {rgb=(0 0 0)} Face 3434 8259 8360 11593 {rgb=(0 0 0)} Face 3435 8360 8398 11593 {rgb=(0 0 0)} Face 3436 8398 8292 11593 {rgb=(0 0 0)} Face 3437 8476 8434 11594 {rgb=(0 0 0)} Face 3438 8434 8493 11594 {rgb=(0 0 0)} Face 3439 8493 8538 11594 {rgb=(0 0 0)} Face 3440 8538 8476 11594 {rgb=(0 0 0)} Face 3441 8527 8484 11595 {rgb=(0 0 0)} Face 3442 8484 8417 11595 {rgb=(0 0 0)} Face 3443 8417 8448 11595 {rgb=(0 0 0)} Face 3444 8448 8527 11595 {rgb=(0 0 0)} Face 3445 6476 6459 11596 {rgb=(0 0 0)} Face 3446 6459 6201 11596 {rgb=(0 0 0)} Face 3447 6201 6234 11596 {rgb=(0 0 0)} Face 3448 6234 6476 11596 {rgb=(0 0 0)} Face 3449 6825 6822 11597 {rgb=(0 0 0)} Face 3450 6822 6667 11597 {rgb=(0 0 0)} Face 3451 6667 6672 11597 {rgb=(0 0 0)} Face 3452 6672 6825 11597 {rgb=(0 0 0)} Face 3453 7178 7163 11598 {rgb=(0 0 0)} Face 3454 7163 6989 11598 {rgb=(0 0 0)} Face 3455 6989 6996 11598 {rgb=(0 0 0)} Face 3456 6996 7178 11598 {rgb=(0 0 0)} Face 3457 7655 7624 11599 {rgb=(0 0 0)} Face 3458 7624 7392 11599 {rgb=(0 0 0)} Face 3459 7392 7420 11599 {rgb=(0 0 0)} Face 3460 7420 7655 11599 {rgb=(0 0 0)} Face 3461 8145 8104 11600 {rgb=(0 0 0)} Face 3462 8104 7858 11600 {rgb=(0 0 0)} Face 3463 7858 7891 11600 {rgb=(0 0 0)} Face 3464 7891 8145 11600 {rgb=(0 0 0)} Face 3465 8414 8401 11601 {rgb=(0 0 0)} Face 3466 8401 8277 11601 {rgb=(0 0 0)} Face 3467 8277 8297 11601 {rgb=(0 0 0)} Face 3468 8297 8414 11601 {rgb=(0 0 0)} Face 3469 6658 6662 11602 {rgb=(0 0 0)} Face 3470 6662 6818 11602 {rgb=(0 0 0)} Face 3471 6818 6817 11602 {rgb=(0 0 0)} Face 3472 6817 6658 11602 {rgb=(0 0 0)} Face 3473 6986 6985 11603 {rgb=(0 0 0)} Face 3474 6985 7154 11603 {rgb=(0 0 0)} Face 3475 7154 7156 11603 {rgb=(0 0 0)} Face 3476 7156 6986 11603 {rgb=(0 0 0)} Face 3477 7366 7372 11604 {rgb=(0 0 0)} Face 3478 7372 7595 11604 {rgb=(0 0 0)} Face 3479 7595 7560 11604 {rgb=(0 0 0)} Face 3480 7560 7366 11604 {rgb=(0 0 0)} Face 3481 7790 7825 11605 {rgb=(0 0 0)} Face 3482 7825 8062 11605 {rgb=(0 0 0)} Face 3483 8062 8034 11605 {rgb=(0 0 0)} Face 3484 8034 7790 11605 {rgb=(0 0 0)} Face 3485 6152 6175 11606 {rgb=(0 0 0)} Face 3486 6175 6437 11606 {rgb=(0 0 0)} Face 3487 6437 6425 11606 {rgb=(0 0 0)} Face 3488 6425 6152 11606 {rgb=(0 0 0)} Face 3489 8252 8265 11607 {rgb=(0 0 0)} Face 3490 8265 8393 11607 {rgb=(0 0 0)} Face 3491 8393 8383 11607 {rgb=(0 0 0)} Face 3492 8383 8252 11607 {rgb=(0 0 0)} Face 3493 2727 2692 11608 {rgb=(0 0 0)} Face 3494 2692 2820 11608 {rgb=(0 0 0)} Face 3495 2820 2859 11608 {rgb=(0 0 0)} Face 3496 2859 2727 11608 {rgb=(0 0 0)} Face 3497 3093 3044 11609 {rgb=(0 0 0)} Face 3498 3044 3292 11609 {rgb=(0 0 0)} Face 3499 3292 3328 11609 {rgb=(0 0 0)} Face 3500 3328 3093 11609 {rgb=(0 0 0)} Face 3501 3543 3508 11610 {rgb=(0 0 0)} Face 3502 3508 3688 11610 {rgb=(0 0 0)} Face 3503 3688 3720 11610 {rgb=(0 0 0)} Face 3504 3720 3543 11610 {rgb=(0 0 0)} Face 3505 3927 3898 11611 {rgb=(0 0 0)} Face 3506 3898 4068 11611 {rgb=(0 0 0)} Face 3507 4068 4096 11611 {rgb=(0 0 0)} Face 3508 4096 3927 11611 {rgb=(0 0 0)} Face 3509 4280 4240 11612 {rgb=(0 0 0)} Face 3510 4240 4397 11612 {rgb=(0 0 0)} Face 3511 4397 4423 11612 {rgb=(0 0 0)} Face 3512 4423 4280 11612 {rgb=(0 0 0)} Face 3513 4690 4655 11613 {rgb=(0 0 0)} Face 3514 4655 4905 11613 {rgb=(0 0 0)} Face 3515 4905 4939 11613 {rgb=(0 0 0)} Face 3516 4939 4690 11613 {rgb=(0 0 0)} Face 3517 4801 4792 11614 {rgb=(0 0 0)} Face 3518 4792 4562 11614 {rgb=(0 0 0)} Face 3519 4562 4564 11614 {rgb=(0 0 0)} Face 3520 4564 4801 11614 {rgb=(0 0 0)} Face 3521 4367 4365 11615 {rgb=(0 0 0)} Face 3522 4365 4222 11615 {rgb=(0 0 0)} Face 3523 4222 4231 11615 {rgb=(0 0 0)} Face 3524 4231 4367 11615 {rgb=(0 0 0)} Face 3525 4052 4045 11616 {rgb=(0 0 0)} Face 3526 4045 3861 11616 {rgb=(0 0 0)} Face 3527 3861 3869 11616 {rgb=(0 0 0)} Face 3528 3869 4052 11616 {rgb=(0 0 0)} Face 3529 3630 3612 11617 {rgb=(0 0 0)} Face 3530 3612 3376 11617 {rgb=(0 0 0)} Face 3531 3376 3393 11617 {rgb=(0 0 0)} Face 3532 3393 3630 11617 {rgb=(0 0 0)} Face 3533 3165 3144 11618 {rgb=(0 0 0)} Face 3534 3144 2900 11618 {rgb=(0 0 0)} Face 3535 2900 2935 11618 {rgb=(0 0 0)} Face 3536 2935 3165 11618 {rgb=(0 0 0)} Face 3537 2784 2753 11619 {rgb=(0 0 0)} Face 3538 2753 2651 11619 {rgb=(0 0 0)} Face 3539 2651 2687 11619 {rgb=(0 0 0)} Face 3540 2687 2784 11619 {rgb=(0 0 0)} Face 3541 2615 2572 11620 {rgb=(0 0 0)} Face 3542 2572 2506 11620 {rgb=(0 0 0)} Face 3543 2506 2552 11620 {rgb=(0 0 0)} Face 3544 2552 2615 11620 {rgb=(0 0 0)} Face 3545 2563 2518 11621 {rgb=(0 0 0)} Face 3546 2518 2597 11621 {rgb=(0 0 0)} Face 3547 2597 2631 11621 {rgb=(0 0 0)} Face 3548 2631 2563 11621 {rgb=(0 0 0)} Face 3549 4587 4569 11622 {rgb=(0 0 0)} Face 3550 4569 4809 11622 {rgb=(0 0 0)} Face 3551 4809 4841 11622 {rgb=(0 0 0)} Face 3552 4841 4587 11622 {rgb=(0 0 0)} Face 3553 4223 4220 11623 {rgb=(0 0 0)} Face 3554 4220 4366 11623 {rgb=(0 0 0)} Face 3555 4366 4372 11623 {rgb=(0 0 0)} Face 3556 4372 4223 11623 {rgb=(0 0 0)} Face 3557 3880 3863 11624 {rgb=(0 0 0)} Face 3558 3863 4043 11624 {rgb=(0 0 0)} Face 3559 4043 4051 11624 {rgb=(0 0 0)} Face 3560 4051 3880 11624 {rgb=(0 0 0)} Face 3561 3421 3390 11625 {rgb=(0 0 0)} Face 3562 3390 3625 11625 {rgb=(0 0 0)} Face 3563 3625 3654 11625 {rgb=(0 0 0)} Face 3564 3654 3421 11625 {rgb=(0 0 0)} Face 3565 2932 2897 11626 {rgb=(0 0 0)} Face 3566 2897 3153 11626 {rgb=(0 0 0)} Face 3567 3153 3190 11626 {rgb=(0 0 0)} Face 3568 3190 2932 11626 {rgb=(0 0 0)} Face 3569 2647 2635 11627 {rgb=(0 0 0)} Face 3570 2635 2747 11627 {rgb=(0 0 0)} Face 3571 2747 2769 11627 {rgb=(0 0 0)} Face 3572 2769 2647 11627 {rgb=(0 0 0)} Face 3573 4377 4383 11628 {rgb=(0 0 0)} Face 3574 4383 4228 11628 {rgb=(0 0 0)} Face 3575 4228 4227 11628 {rgb=(0 0 0)} Face 3576 4227 4377 11628 {rgb=(0 0 0)} Face 3577 4055 4054 11629 {rgb=(0 0 0)} Face 3578 4054 3887 11629 {rgb=(0 0 0)} Face 3579 3887 3889 11629 {rgb=(0 0 0)} Face 3580 3889 4055 11629 {rgb=(0 0 0)} Face 3581 3672 3677 11630 {rgb=(0 0 0)} Face 3582 3677 3484 11630 {rgb=(0 0 0)} Face 3583 3484 3449 11630 {rgb=(0 0 0)} Face 3584 3449 3672 11630 {rgb=(0 0 0)} Face 3585 3219 3255 11631 {rgb=(0 0 0)} Face 3586 3255 3002 11631 {rgb=(0 0 0)} Face 3587 3002 2973 11631 {rgb=(0 0 0)} Face 3588 2973 3219 11631 {rgb=(0 0 0)} Face 3589 4867 4889 11632 {rgb=(0 0 0)} Face 3590 4889 4622 11632 {rgb=(0 0 0)} Face 3591 4622 4609 11632 {rgb=(0 0 0)} Face 3592 4609 4867 11632 {rgb=(0 0 0)} Face 3593 2779 2794 11633 {rgb=(0 0 0)} Face 3594 2794 2668 11633 {rgb=(0 0 0)} Face 3595 2668 2657 11633 {rgb=(0 0 0)} Face 3596 2657 2779 11633 {rgb=(0 0 0)} Face 3597 3915 3850 11634 {rgb=(1 1 1)} Face 3598 3850 3795 11634 {rgb=(1 1 1)} Face 3599 3795 3906 11634 {rgb=(1 1 1)} Face 3600 3906 3915 11634 {rgb=(1 1 1)} Face 3601 7136 7251 11635 {rgb=(1 1 1)} Face 3602 7251 7194 11635 {rgb=(1 1 1)} Face 3603 7194 7127 11635 {rgb=(1 1 1)} Face 3604 7127 7136 11635 {rgb=(1 1 1)} Face 3605 5212 5222 11636 {rgb=(1 1 1)} Face 3606 5222 5431 11636 {rgb=(1 1 1)} Face 3607 5431 5427 11636 {rgb=(1 1 1)} Face 3608 5427 5212 11636 {rgb=(1 1 1)} Face 3609 5615 5431 11637 {rgb=(1 1 1)} Face 3610 5431 5441 11637 {rgb=(1 1 1)} Face 3611 5441 5605 11637 {rgb=(1 1 1)} Face 3612 5605 5615 11637 {rgb=(1 1 1)} Face 3613 5442 5441 11638 {rgb=(1 1 1)} Face 3614 5441 5250 11638 {rgb=(1 1 1)} Face 3615 5250 5258 11638 {rgb=(1 1 1)} Face 3616 5258 5442 11638 {rgb=(1 1 1)} Face 3617 5062 5250 11639 {rgb=(1 1 1)} Face 3618 5250 5222 11639 {rgb=(1 1 1)} Face 3619 5222 5043 11639 {rgb=(1 1 1)} Face 3620 5043 5062 11639 {rgb=(1 1 1)} Face 3621 5604 5442 11640 {rgb=(1 1 1)} Face 3622 5442 5438 11640 {rgb=(1 1 1)} Face 3623 5438 5608 11640 {rgb=(1 1 1)} Face 3624 5608 5604 11640 {rgb=(1 1 1)} Face 3625 5435 5438 11641 {rgb=(1 1 1)} Face 3626 5438 5242 11641 {rgb=(1 1 1)} Face 3627 5242 5235 11641 {rgb=(1 1 1)} Face 3628 5235 5435 11641 {rgb=(1 1 1)} Face 3629 5063 5242 11642 {rgb=(1 1 1)} Face 3630 5242 5258 11642 {rgb=(1 1 1)} Face 3631 5258 5070 11642 {rgb=(1 1 1)} Face 3632 5070 5063 11642 {rgb=(1 1 1)} Face 3633 4851 4855 11643 {rgb=(1 1 1)} Face 3634 4855 5043 11643 {rgb=(1 1 1)} Face 3635 5043 5036 11643 {rgb=(1 1 1)} Face 3636 5036 4851 11643 {rgb=(1 1 1)} Face 3637 5070 5062 11644 {rgb=(1 1 1)} Face 3638 5062 4856 11644 {rgb=(1 1 1)} Face 3639 4856 4863 11644 {rgb=(1 1 1)} Face 3640 4863 5070 11644 {rgb=(1 1 1)} Face 3641 4516 4856 11645 {rgb=(1 1 1)} Face 3642 4856 4855 11645 {rgb=(1 1 1)} Face 3643 4855 4529 11645 {rgb=(1 1 1)} Face 3644 4529 4516 11645 {rgb=(1 1 1)} Face 3645 5061 5063 11646 {rgb=(1 1 1)} Face 3646 5063 4869 11646 {rgb=(1 1 1)} Face 3647 4869 4875 11646 {rgb=(1 1 1)} Face 3648 4875 5061 11646 {rgb=(1 1 1)} Face 3649 4557 4869 11647 {rgb=(1 1 1)} Face 3650 4869 4863 11647 {rgb=(1 1 1)} Face 3651 4863 4526 11647 {rgb=(1 1 1)} Face 3652 4526 4557 11647 {rgb=(1 1 1)} Face 3653 4266 4255 11648 {rgb=(1 1 1)} Face 3654 4255 4529 11648 {rgb=(1 1 1)} Face 3655 4529 4536 11648 {rgb=(1 1 1)} Face 3656 4536 4266 11648 {rgb=(1 1 1)} Face 3657 4526 4516 11649 {rgb=(1 1 1)} Face 3658 4516 4244 11649 {rgb=(1 1 1)} Face 3659 4244 4257 11649 {rgb=(1 1 1)} Face 3660 4257 4526 11649 {rgb=(1 1 1)} Face 3661 4029 4244 11650 {rgb=(1 1 1)} Face 3662 4244 4255 11650 {rgb=(1 1 1)} Face 3663 4255 4053 11650 {rgb=(1 1 1)} Face 3664 4053 4029 11650 {rgb=(1 1 1)} Face 3665 4577 4557 11651 {rgb=(1 1 1)} Face 3666 4557 4289 11651 {rgb=(1 1 1)} Face 3667 4289 4299 11651 {rgb=(1 1 1)} Face 3668 4299 4577 11651 {rgb=(1 1 1)} Face 3669 4075 4289 11652 {rgb=(1 1 1)} Face 3670 4289 4257 11652 {rgb=(1 1 1)} Face 3671 4257 4046 11652 {rgb=(1 1 1)} Face 3672 4046 4075 11652 {rgb=(1 1 1)} Face 3673 3915 3906 11653 {rgb=(1 1 1)} Face 3674 3906 4053 11653 {rgb=(1 1 1)} Face 3675 4053 4060 11653 {rgb=(1 1 1)} Face 3676 4060 3915 11653 {rgb=(1 1 1)} Face 3677 4046 4029 11654 {rgb=(1 1 1)} Face 3678 4029 3877 11654 {rgb=(1 1 1)} Face 3679 3877 3879 11654 {rgb=(1 1 1)} Face 3680 3879 4046 11654 {rgb=(1 1 1)} Face 3681 3742 3877 11655 {rgb=(1 1 1)} Face 3682 3877 3906 11655 {rgb=(1 1 1)} Face 3683 3906 3795 11655 {rgb=(1 1 1)} Face 3684 3795 3742 11655 {rgb=(1 1 1)} Face 3685 4097 4075 11656 {rgb=(1 1 1)} Face 3686 4075 3916 11656 {rgb=(1 1 1)} Face 3687 3916 3933 11656 {rgb=(1 1 1)} Face 3688 3933 4097 11656 {rgb=(1 1 1)} Face 3689 3765 3916 11657 {rgb=(1 1 1)} Face 3690 3916 3879 11657 {rgb=(1 1 1)} Face 3691 3879 3738 11657 {rgb=(1 1 1)} Face 3692 3738 3765 11657 {rgb=(1 1 1)} Face 3693 3799 3765 11658 {rgb=(1 1 1)} Face 3694 3765 3696 11658 {rgb=(1 1 1)} Face 3695 3696 3701 11658 {rgb=(1 1 1)} Face 3696 3701 3799 11658 {rgb=(1 1 1)} Face 3697 3655 3696 11659 {rgb=(1 1 1)} Face 3698 3696 3682 11659 {rgb=(1 1 1)} Face 3699 3682 3652 11659 {rgb=(1 1 1)} Face 3700 3652 3655 11659 {rgb=(1 1 1)} Face 3701 3703 3682 11660 {rgb=(1 1 1)} Face 3702 3682 3738 11660 {rgb=(1 1 1)} Face 3703 3738 3742 11660 {rgb=(1 1 1)} Face 3704 3742 3703 11660 {rgb=(1 1 1)} Face 3705 3691 3703 11661 {rgb=(1 1 1)} Face 3706 3703 3795 11661 {rgb=(1 1 1)} Face 3707 3795 3776 11661 {rgb=(1 1 1)} Face 3708 3776 3691 11661 {rgb=(1 1 1)} Face 3709 3913 3847 11662 {rgb=(1 1 1)} Face 3710 3847 3850 11662 {rgb=(1 1 1)} Face 3711 3850 3915 11662 {rgb=(1 1 1)} Face 3712 3915 3913 11662 {rgb=(1 1 1)} Face 3713 3776 3850 11663 {rgb=(1 1 1)} Face 3714 3850 3844 11663 {rgb=(1 1 1)} Face 3715 3844 3763 11663 {rgb=(1 1 1)} Face 3716 3763 3776 11663 {rgb=(1 1 1)} Face 3717 5036 5212 11664 {rgb=(1 1 1)} Face 3718 5212 5210 11664 {rgb=(1 1 1)} Face 3719 5210 5032 11664 {rgb=(1 1 1)} Face 3720 5032 5036 11664 {rgb=(1 1 1)} Face 3721 5621 5425 11665 {rgb=(1 1 1)} Face 3722 5425 5427 11665 {rgb=(1 1 1)} Face 3723 5427 5619 11665 {rgb=(1 1 1)} Face 3724 5619 5621 11665 {rgb=(1 1 1)} Face 3725 4536 4851 11666 {rgb=(1 1 1)} Face 3726 4851 4848 11666 {rgb=(1 1 1)} Face 3727 4848 4527 11666 {rgb=(1 1 1)} Face 3728 4527 4536 11666 {rgb=(1 1 1)} Face 3729 4060 4266 11667 {rgb=(1 1 1)} Face 3730 4266 4258 11667 {rgb=(1 1 1)} Face 3731 4258 4058 11667 {rgb=(1 1 1)} Face 3732 4058 4060 11667 {rgb=(1 1 1)} Face 3733 3652 3691 11668 {rgb=(1 1 1)} Face 3734 3691 3681 11668 {rgb=(1 1 1)} Face 3735 3681 3647 11668 {rgb=(1 1 1)} Face 3736 3647 3652 11668 {rgb=(1 1 1)} Face 3737 3701 3655 11669 {rgb=(1 1 1)} Face 3738 3655 3648 11669 {rgb=(1 1 1)} Face 3739 3648 3687 11669 {rgb=(1 1 1)} Face 3740 3687 3701 11669 {rgb=(1 1 1)} Face 3741 3933 3799 11670 {rgb=(1 1 1)} Face 3742 3799 3786 11670 {rgb=(1 1 1)} Face 3743 3786 3929 11670 {rgb=(1 1 1)} Face 3744 3929 3933 11670 {rgb=(1 1 1)} Face 3745 4299 4097 11671 {rgb=(1 1 1)} Face 3746 4097 4093 11671 {rgb=(1 1 1)} Face 3747 4093 4297 11671 {rgb=(1 1 1)} Face 3748 4297 4299 11671 {rgb=(1 1 1)} Face 3749 4875 4577 11672 {rgb=(1 1 1)} Face 3750 4577 4570 11672 {rgb=(1 1 1)} Face 3751 4570 4871 11672 {rgb=(1 1 1)} Face 3752 4871 4875 11672 {rgb=(1 1 1)} Face 3753 5235 5061 11673 {rgb=(1 1 1)} Face 3754 5061 5059 11673 {rgb=(1 1 1)} Face 3755 5059 5231 11673 {rgb=(1 1 1)} Face 3756 5231 5235 11673 {rgb=(1 1 1)} Face 3757 5611 5435 11674 {rgb=(1 1 1)} Face 3758 5435 5433 11674 {rgb=(1 1 1)} Face 3759 5433 5614 11674 {rgb=(1 1 1)} Face 3760 5614 5611 11674 {rgb=(1 1 1)} Face 3761 5785 5796 11675 {rgb=(1 1 1)} Face 3762 5796 5605 11675 {rgb=(1 1 1)} Face 3763 5605 5604 11675 {rgb=(1 1 1)} Face 3764 5604 5785 11675 {rgb=(1 1 1)} Face 3765 5619 5615 11676 {rgb=(1 1 1)} Face 3766 5615 5823 11676 {rgb=(1 1 1)} Face 3767 5823 5833 11676 {rgb=(1 1 1)} Face 3768 5833 5619 11676 {rgb=(1 1 1)} Face 3769 6002 5823 11677 {rgb=(1 1 1)} Face 3770 5823 5796 11677 {rgb=(1 1 1)} Face 3771 5796 5985 11677 {rgb=(1 1 1)} Face 3772 5985 6002 11677 {rgb=(1 1 1)} Face 3773 5810 5803 11678 {rgb=(1 1 1)} Face 3774 5803 5608 11678 {rgb=(1 1 1)} Face 3775 5608 5611 11678 {rgb=(1 1 1)} Face 3776 5611 5810 11678 {rgb=(1 1 1)} Face 3777 5978 5785 11679 {rgb=(1 1 1)} Face 3778 5785 5803 11679 {rgb=(1 1 1)} Face 3779 5803 5984 11679 {rgb=(1 1 1)} Face 3780 5984 5978 11679 {rgb=(1 1 1)} Face 3781 6179 6186 11680 {rgb=(1 1 1)} Face 3782 6186 5985 11680 {rgb=(1 1 1)} Face 3783 5985 5978 11680 {rgb=(1 1 1)} Face 3784 5978 6179 11680 {rgb=(1 1 1)} Face 3785 6007 6002 11681 {rgb=(1 1 1)} Face 3786 6002 6187 11681 {rgb=(1 1 1)} Face 3787 6187 6191 11681 {rgb=(1 1 1)} Face 3788 6191 6007 11681 {rgb=(1 1 1)} Face 3789 6514 6187 11682 {rgb=(1 1 1)} Face 3790 6187 6186 11682 {rgb=(1 1 1)} Face 3791 6186 6526 11682 {rgb=(1 1 1)} Face 3792 6526 6514 11682 {rgb=(1 1 1)} Face 3793 6167 6173 11683 {rgb=(1 1 1)} Face 3794 6173 5984 11683 {rgb=(1 1 1)} Face 3795 5984 5986 11683 {rgb=(1 1 1)} Face 3796 5986 6167 11683 {rgb=(1 1 1)} Face 3797 6517 6179 11684 {rgb=(1 1 1)} Face 3798 6179 6173 11684 {rgb=(1 1 1)} Face 3799 6173 6488 11684 {rgb=(1 1 1)} Face 3800 6488 6517 11684 {rgb=(1 1 1)} Face 3801 6784 6798 11685 {rgb=(1 1 1)} Face 3802 6798 6526 11685 {rgb=(1 1 1)} Face 3803 6526 6517 11685 {rgb=(1 1 1)} Face 3804 6517 6784 11685 {rgb=(1 1 1)} Face 3805 6507 6514 11686 {rgb=(1 1 1)} Face 3806 6514 6786 11686 {rgb=(1 1 1)} Face 3807 6786 6775 11686 {rgb=(1 1 1)} Face 3808 6775 6507 11686 {rgb=(1 1 1)} Face 3809 6987 6786 11687 {rgb=(1 1 1)} Face 3810 6786 6798 11687 {rgb=(1 1 1)} Face 3811 6798 7009 11687 {rgb=(1 1 1)} Face 3812 7009 6987 11687 {rgb=(1 1 1)} Face 3813 6743 6753 11688 {rgb=(1 1 1)} Face 3814 6753 6488 11688 {rgb=(1 1 1)} Face 3815 6488 6468 11688 {rgb=(1 1 1)} Face 3816 6468 6743 11688 {rgb=(1 1 1)} Face 3817 6993 6784 11689 {rgb=(1 1 1)} Face 3818 6784 6753 11689 {rgb=(1 1 1)} Face 3819 6753 6966 11689 {rgb=(1 1 1)} Face 3820 6966 6993 11689 {rgb=(1 1 1)} Face 3821 7164 7166 11690 {rgb=(1 1 1)} Face 3822 7166 7009 11690 {rgb=(1 1 1)} Face 3823 7009 6993 11690 {rgb=(1 1 1)} Face 3824 6993 7164 11690 {rgb=(1 1 1)} Face 3825 6982 6987 11691 {rgb=(1 1 1)} Face 3826 6987 7136 11691 {rgb=(1 1 1)} Face 3827 7136 7127 11691 {rgb=(1 1 1)} Face 3828 7127 6982 11691 {rgb=(1 1 1)} Face 3829 7251 7136 11692 {rgb=(1 1 1)} Face 3830 7136 7166 11692 {rgb=(1 1 1)} Face 3831 7166 7301 11692 {rgb=(1 1 1)} Face 3832 7301 7251 11692 {rgb=(1 1 1)} Face 3833 7106 7126 11693 {rgb=(1 1 1)} Face 3834 7126 6966 11693 {rgb=(1 1 1)} Face 3835 6966 6948 11693 {rgb=(1 1 1)} Face 3836 6948 7106 11693 {rgb=(1 1 1)} Face 3837 7304 7164 11694 {rgb=(1 1 1)} Face 3838 7164 7126 11694 {rgb=(1 1 1)} Face 3839 7126 7279 11694 {rgb=(1 1 1)} Face 3840 7279 7304 11694 {rgb=(1 1 1)} Face 3841 7394 7359 11695 {rgb=(1 1 1)} Face 3842 7359 7346 11695 {rgb=(1 1 1)} Face 3843 7346 7391 11695 {rgb=(1 1 1)} Face 3844 7391 7394 11695 {rgb=(1 1 1)} Face 3845 7342 7346 11696 {rgb=(1 1 1)} Face 3846 7346 7279 11696 {rgb=(1 1 1)} Face 3847 7279 7246 11696 {rgb=(1 1 1)} Face 3848 7246 7342 11696 {rgb=(1 1 1)} Face 3849 7301 7304 11697 {rgb=(1 1 1)} Face 3850 7304 7359 11697 {rgb=(1 1 1)} Face 3851 7359 7340 11697 {rgb=(1 1 1)} Face 3852 7340 7301 11697 {rgb=(1 1 1)} Face 3853 7270 7251 11698 {rgb=(1 1 1)} Face 3854 7251 7340 11698 {rgb=(1 1 1)} Face 3855 7340 7350 11698 {rgb=(1 1 1)} Face 3856 7350 7270 11698 {rgb=(1 1 1)} Face 3857 7281 7199 11699 {rgb=(1 1 1)} Face 3858 7199 7194 11699 {rgb=(1 1 1)} Face 3859 7194 7270 11699 {rgb=(1 1 1)} Face 3860 7270 7281 11699 {rgb=(1 1 1)} Face 3861 7127 7194 11700 {rgb=(1 1 1)} Face 3862 7194 7196 11700 {rgb=(1 1 1)} Face 3863 7196 7129 11700 {rgb=(1 1 1)} Face 3864 7129 7127 11700 {rgb=(1 1 1)} Face 3865 6011 5835 11701 {rgb=(1 1 1)} Face 3866 5835 5833 11701 {rgb=(1 1 1)} Face 3867 5833 6007 11701 {rgb=(1 1 1)} Face 3868 6007 6011 11701 {rgb=(1 1 1)} Face 3869 6516 6194 11702 {rgb=(1 1 1)} Face 3870 6194 6191 11702 {rgb=(1 1 1)} Face 3871 6191 6507 11702 {rgb=(1 1 1)} Face 3872 6507 6516 11702 {rgb=(1 1 1)} Face 3873 6984 6783 11703 {rgb=(1 1 1)} Face 3874 6783 6775 11703 {rgb=(1 1 1)} Face 3875 6775 6982 11703 {rgb=(1 1 1)} Face 3876 6982 6984 11703 {rgb=(1 1 1)} Face 3877 7398 7360 11704 {rgb=(1 1 1)} Face 3878 7360 7350 11704 {rgb=(1 1 1)} Face 3879 7350 7394 11704 {rgb=(1 1 1)} Face 3880 7394 7398 11704 {rgb=(1 1 1)} Face 3881 7356 7397 11705 {rgb=(1 1 1)} Face 3882 7397 7391 11705 {rgb=(1 1 1)} Face 3883 7391 7342 11705 {rgb=(1 1 1)} Face 3884 7342 7356 11705 {rgb=(1 1 1)} Face 3885 7110 7261 11706 {rgb=(1 1 1)} Face 3886 7261 7246 11706 {rgb=(1 1 1)} Face 3887 7246 7106 11706 {rgb=(1 1 1)} Face 3888 7106 7110 11706 {rgb=(1 1 1)} Face 3889 6745 6952 11707 {rgb=(1 1 1)} Face 3890 6952 6948 11707 {rgb=(1 1 1)} Face 3891 6948 6743 11707 {rgb=(1 1 1)} Face 3892 6743 6745 11707 {rgb=(1 1 1)} Face 3893 6171 6475 11708 {rgb=(1 1 1)} Face 3894 6475 6468 11708 {rgb=(1 1 1)} Face 3895 6468 6167 11708 {rgb=(1 1 1)} Face 3896 6167 6171 11708 {rgb=(1 1 1)} Face 3897 5814 5988 11709 {rgb=(1 1 1)} Face 3898 5988 5986 11709 {rgb=(1 1 1)} Face 3899 5986 5810 11709 {rgb=(1 1 1)} Face 3900 5810 5814 11709 {rgb=(1 1 1)} Face 3901 5258 5250 11710 {rgb=(1 1 1)} Face 3902 5250 5062 11710 {rgb=(1 1 1)} Face 3903 5062 5070 11710 {rgb=(1 1 1)} Face 3904 5070 5258 11710 {rgb=(1 1 1)} Face 3905 5605 5441 11711 {rgb=(1 1 1)} Face 3906 5441 5442 11711 {rgb=(1 1 1)} Face 3907 5442 5604 11711 {rgb=(1 1 1)} Face 3908 5604 5605 11711 {rgb=(1 1 1)} Face 3909 4863 4856 11712 {rgb=(1 1 1)} Face 3910 4856 4516 11712 {rgb=(1 1 1)} Face 3911 4516 4526 11712 {rgb=(1 1 1)} Face 3912 4526 4863 11712 {rgb=(1 1 1)} Face 3913 4257 4244 11713 {rgb=(1 1 1)} Face 3914 4244 4029 11713 {rgb=(1 1 1)} Face 3915 4029 4046 11713 {rgb=(1 1 1)} Face 3916 4046 4257 11713 {rgb=(1 1 1)} Face 3917 3879 3877 11714 {rgb=(1 1 1)} Face 3918 3877 3742 11714 {rgb=(1 1 1)} Face 3919 3742 3738 11714 {rgb=(1 1 1)} Face 3920 3738 3879 11714 {rgb=(1 1 1)} Face 3921 5222 5212 11715 {rgb=(1 1 1)} Face 3922 5212 5036 11715 {rgb=(1 1 1)} Face 3923 5036 5043 11715 {rgb=(1 1 1)} Face 3924 5043 5222 11715 {rgb=(1 1 1)} Face 3925 4855 4851 11716 {rgb=(1 1 1)} Face 3926 4851 4536 11716 {rgb=(1 1 1)} Face 3927 4536 4529 11716 {rgb=(1 1 1)} Face 3928 4529 4855 11716 {rgb=(1 1 1)} Face 3929 4255 4266 11717 {rgb=(1 1 1)} Face 3930 4266 4060 11717 {rgb=(1 1 1)} Face 3931 4060 4053 11717 {rgb=(1 1 1)} Face 3932 4053 4255 11717 {rgb=(1 1 1)} Face 3933 3652 3682 11718 {rgb=(1 1 1)} Face 3934 3682 3703 11718 {rgb=(1 1 1)} Face 3935 3703 3691 11718 {rgb=(1 1 1)} Face 3936 3691 3652 11718 {rgb=(1 1 1)} Face 3937 3933 3916 11719 {rgb=(1 1 1)} Face 3938 3916 3765 11719 {rgb=(1 1 1)} Face 3939 3765 3799 11719 {rgb=(1 1 1)} Face 3940 3799 3933 11719 {rgb=(1 1 1)} Face 3941 4299 4289 11720 {rgb=(1 1 1)} Face 3942 4289 4075 11720 {rgb=(1 1 1)} Face 3943 4075 4097 11720 {rgb=(1 1 1)} Face 3944 4097 4299 11720 {rgb=(1 1 1)} Face 3945 4875 4869 11721 {rgb=(1 1 1)} Face 3946 4869 4557 11721 {rgb=(1 1 1)} Face 3947 4557 4577 11721 {rgb=(1 1 1)} Face 3948 4577 4875 11721 {rgb=(1 1 1)} Face 3949 5235 5242 11722 {rgb=(1 1 1)} Face 3950 5242 5063 11722 {rgb=(1 1 1)} Face 3951 5063 5061 11722 {rgb=(1 1 1)} Face 3952 5061 5235 11722 {rgb=(1 1 1)} Face 3953 5608 5438 11723 {rgb=(1 1 1)} Face 3954 5438 5435 11723 {rgb=(1 1 1)} Face 3955 5435 5611 11723 {rgb=(1 1 1)} Face 3956 5611 5608 11723 {rgb=(1 1 1)} Face 3957 5796 5785 11724 {rgb=(1 1 1)} Face 3958 5785 5978 11724 {rgb=(1 1 1)} Face 3959 5978 5985 11724 {rgb=(1 1 1)} Face 3960 5985 5796 11724 {rgb=(1 1 1)} Face 3961 6186 6179 11725 {rgb=(1 1 1)} Face 3962 6179 6517 11725 {rgb=(1 1 1)} Face 3963 6517 6526 11725 {rgb=(1 1 1)} Face 3964 6526 6186 11725 {rgb=(1 1 1)} Face 3965 6798 6784 11726 {rgb=(1 1 1)} Face 3966 6784 6993 11726 {rgb=(1 1 1)} Face 3967 6993 7009 11726 {rgb=(1 1 1)} Face 3968 7009 6798 11726 {rgb=(1 1 1)} Face 3969 7166 7164 11727 {rgb=(1 1 1)} Face 3970 7164 7304 11727 {rgb=(1 1 1)} Face 3971 7304 7301 11727 {rgb=(1 1 1)} Face 3972 7301 7166 11727 {rgb=(1 1 1)} Face 3973 5427 5431 11728 {rgb=(1 1 1)} Face 3974 5431 5615 11728 {rgb=(1 1 1)} Face 3975 5615 5619 11728 {rgb=(1 1 1)} Face 3976 5619 5427 11728 {rgb=(1 1 1)} Face 3977 5833 5823 11729 {rgb=(1 1 1)} Face 3978 5823 6002 11729 {rgb=(1 1 1)} Face 3979 6002 6007 11729 {rgb=(1 1 1)} Face 3980 6007 5833 11729 {rgb=(1 1 1)} Face 3981 6191 6187 11730 {rgb=(1 1 1)} Face 3982 6187 6514 11730 {rgb=(1 1 1)} Face 3983 6514 6507 11730 {rgb=(1 1 1)} Face 3984 6507 6191 11730 {rgb=(1 1 1)} Face 3985 6775 6786 11731 {rgb=(1 1 1)} Face 3986 6786 6987 11731 {rgb=(1 1 1)} Face 3987 6987 6982 11731 {rgb=(1 1 1)} Face 3988 6982 6775 11731 {rgb=(1 1 1)} Face 3989 7359 7394 11732 {rgb=(1 1 1)} Face 3990 7394 7350 11732 {rgb=(1 1 1)} Face 3991 7350 7340 11732 {rgb=(1 1 1)} Face 3992 7340 7359 11732 {rgb=(1 1 1)} Face 3993 7126 7106 11733 {rgb=(1 1 1)} Face 3994 7106 7246 11733 {rgb=(1 1 1)} Face 3995 7246 7279 11733 {rgb=(1 1 1)} Face 3996 7279 7126 11733 {rgb=(1 1 1)} Face 3997 6753 6743 11734 {rgb=(1 1 1)} Face 3998 6743 6948 11734 {rgb=(1 1 1)} Face 3999 6948 6966 11734 {rgb=(1 1 1)} Face 4000 6966 6753 11734 {rgb=(1 1 1)} Face 4001 6173 6167 11735 {rgb=(1 1 1)} Face 4002 6167 6468 11735 {rgb=(1 1 1)} Face 4003 6468 6488 11735 {rgb=(1 1 1)} Face 4004 6488 6173 11735 {rgb=(1 1 1)} Face 4005 5803 5810 11736 {rgb=(1 1 1)} Face 4006 5810 5986 11736 {rgb=(1 1 1)} Face 4007 5986 5984 11736 {rgb=(1 1 1)} Face 4008 5984 5803 11736 {rgb=(1 1 1)} Face 4009 5611 5614 11737 {rgb=(1 1 1)} Face 4010 5614 5814 11737 {rgb=(1 1 1)} Face 4011 5814 5810 11737 {rgb=(1 1 1)} Face 4012 5810 5611 11737 {rgb=(1 1 1)} Face 4013 5986 5988 11738 {rgb=(1 1 1)} Face 4014 5988 6171 11738 {rgb=(1 1 1)} Face 4015 6171 6167 11738 {rgb=(1 1 1)} Face 4016 6167 5986 11738 {rgb=(1 1 1)} Face 4017 6468 6475 11739 {rgb=(1 1 1)} Face 4018 6475 6745 11739 {rgb=(1 1 1)} Face 4019 6745 6743 11739 {rgb=(1 1 1)} Face 4020 6743 6468 11739 {rgb=(1 1 1)} Face 4021 6948 6952 11740 {rgb=(1 1 1)} Face 4022 6952 7110 11740 {rgb=(1 1 1)} Face 4023 7110 7106 11740 {rgb=(1 1 1)} Face 4024 7106 6948 11740 {rgb=(1 1 1)} Face 4025 7356 7342 11741 {rgb=(1 1 1)} Face 4026 7342 7246 11741 {rgb=(1 1 1)} Face 4027 7246 7261 11741 {rgb=(1 1 1)} Face 4028 7261 7356 11741 {rgb=(1 1 1)} Face 4029 7398 7394 11742 {rgb=(1 1 1)} Face 4030 7394 7391 11742 {rgb=(1 1 1)} Face 4031 7391 7397 11742 {rgb=(1 1 1)} Face 4032 7397 7398 11742 {rgb=(1 1 1)} Face 4033 7281 7270 11743 {rgb=(1 1 1)} Face 4034 7270 7350 11743 {rgb=(1 1 1)} Face 4035 7350 7360 11743 {rgb=(1 1 1)} Face 4036 7360 7281 11743 {rgb=(1 1 1)} Face 4037 6984 6982 11744 {rgb=(1 1 1)} Face 4038 6982 7127 11744 {rgb=(1 1 1)} Face 4039 7127 7129 11744 {rgb=(1 1 1)} Face 4040 7129 6984 11744 {rgb=(1 1 1)} Face 4041 6516 6507 11745 {rgb=(1 1 1)} Face 4042 6507 6775 11745 {rgb=(1 1 1)} Face 4043 6775 6783 11745 {rgb=(1 1 1)} Face 4044 6783 6516 11745 {rgb=(1 1 1)} Face 4045 6011 6007 11746 {rgb=(1 1 1)} Face 4046 6007 6191 11746 {rgb=(1 1 1)} Face 4047 6191 6194 11746 {rgb=(1 1 1)} Face 4048 6194 6011 11746 {rgb=(1 1 1)} Face 4049 5621 5619 11747 {rgb=(1 1 1)} Face 4050 5619 5833 11747 {rgb=(1 1 1)} Face 4051 5833 5835 11747 {rgb=(1 1 1)} Face 4052 5835 5621 11747 {rgb=(1 1 1)} Face 4053 7359 7304 11748 {rgb=(1 1 1)} Face 4054 7304 7279 11748 {rgb=(1 1 1)} Face 4055 7279 7346 11748 {rgb=(1 1 1)} Face 4056 7346 7359 11748 {rgb=(1 1 1)} Face 4057 7126 7164 11749 {rgb=(1 1 1)} Face 4058 7164 6993 11749 {rgb=(1 1 1)} Face 4059 6993 6966 11749 {rgb=(1 1 1)} Face 4060 6966 7126 11749 {rgb=(1 1 1)} Face 4061 7166 7136 11750 {rgb=(1 1 1)} Face 4062 7136 6987 11750 {rgb=(1 1 1)} Face 4063 6987 7009 11750 {rgb=(1 1 1)} Face 4064 7009 7166 11750 {rgb=(1 1 1)} Face 4065 6753 6784 11751 {rgb=(1 1 1)} Face 4066 6784 6517 11751 {rgb=(1 1 1)} Face 4067 6517 6488 11751 {rgb=(1 1 1)} Face 4068 6488 6753 11751 {rgb=(1 1 1)} Face 4069 6798 6786 11752 {rgb=(1 1 1)} Face 4070 6786 6514 11752 {rgb=(1 1 1)} Face 4071 6514 6526 11752 {rgb=(1 1 1)} Face 4072 6526 6798 11752 {rgb=(1 1 1)} Face 4073 6173 6179 11753 {rgb=(1 1 1)} Face 4074 6179 5978 11753 {rgb=(1 1 1)} Face 4075 5978 5984 11753 {rgb=(1 1 1)} Face 4076 5984 6173 11753 {rgb=(1 1 1)} Face 4077 6186 6187 11754 {rgb=(1 1 1)} Face 4078 6187 6002 11754 {rgb=(1 1 1)} Face 4079 6002 5985 11754 {rgb=(1 1 1)} Face 4080 5985 6186 11754 {rgb=(1 1 1)} Face 4081 5803 5785 11755 {rgb=(1 1 1)} Face 4082 5785 5604 11755 {rgb=(1 1 1)} Face 4083 5604 5608 11755 {rgb=(1 1 1)} Face 4084 5608 5803 11755 {rgb=(1 1 1)} Face 4085 5796 5823 11756 {rgb=(1 1 1)} Face 4086 5823 5615 11756 {rgb=(1 1 1)} Face 4087 5615 5605 11756 {rgb=(1 1 1)} Face 4088 5605 5796 11756 {rgb=(1 1 1)} Face 4089 5433 5435 11757 {rgb=(1 1 1)} Face 4090 5435 5235 11757 {rgb=(1 1 1)} Face 4091 5235 5231 11757 {rgb=(1 1 1)} Face 4092 5231 5433 11757 {rgb=(1 1 1)} Face 4093 5059 5061 11758 {rgb=(1 1 1)} Face 4094 5061 4875 11758 {rgb=(1 1 1)} Face 4095 4875 4871 11758 {rgb=(1 1 1)} Face 4096 4871 5059 11758 {rgb=(1 1 1)} Face 4097 4570 4577 11759 {rgb=(1 1 1)} Face 4098 4577 4299 11759 {rgb=(1 1 1)} Face 4099 4299 4297 11759 {rgb=(1 1 1)} Face 4100 4297 4570 11759 {rgb=(1 1 1)} Face 4101 4093 4097 11760 {rgb=(1 1 1)} Face 4102 4097 3933 11760 {rgb=(1 1 1)} Face 4103 3933 3929 11760 {rgb=(1 1 1)} Face 4104 3929 4093 11760 {rgb=(1 1 1)} Face 4105 3701 3687 11761 {rgb=(1 1 1)} Face 4106 3687 3786 11761 {rgb=(1 1 1)} Face 4107 3786 3799 11761 {rgb=(1 1 1)} Face 4108 3799 3701 11761 {rgb=(1 1 1)} Face 4109 3652 3647 11762 {rgb=(1 1 1)} Face 4110 3647 3648 11762 {rgb=(1 1 1)} Face 4111 3648 3655 11762 {rgb=(1 1 1)} Face 4112 3655 3652 11762 {rgb=(1 1 1)} Face 4113 3776 3763 11763 {rgb=(1 1 1)} Face 4114 3763 3681 11763 {rgb=(1 1 1)} Face 4115 3681 3691 11763 {rgb=(1 1 1)} Face 4116 3691 3776 11763 {rgb=(1 1 1)} Face 4117 4060 4058 11764 {rgb=(1 1 1)} Face 4118 4058 3913 11764 {rgb=(1 1 1)} Face 4119 3913 3915 11764 {rgb=(1 1 1)} Face 4120 3915 4060 11764 {rgb=(1 1 1)} Face 4121 4536 4527 11765 {rgb=(1 1 1)} Face 4122 4527 4258 11765 {rgb=(1 1 1)} Face 4123 4258 4266 11765 {rgb=(1 1 1)} Face 4124 4266 4536 11765 {rgb=(1 1 1)} Face 4125 5036 5032 11766 {rgb=(1 1 1)} Face 4126 5032 4848 11766 {rgb=(1 1 1)} Face 4127 4848 4851 11766 {rgb=(1 1 1)} Face 4128 4851 5036 11766 {rgb=(1 1 1)} Face 4129 5427 5425 11767 {rgb=(1 1 1)} Face 4130 5425 5210 11767 {rgb=(1 1 1)} Face 4131 5210 5212 11767 {rgb=(1 1 1)} Face 4132 5212 5427 11767 {rgb=(1 1 1)} Face 4133 3738 3682 11768 {rgb=(1 1 1)} Face 4134 3682 3696 11768 {rgb=(1 1 1)} Face 4135 3696 3765 11768 {rgb=(1 1 1)} Face 4136 3765 3738 11768 {rgb=(1 1 1)} Face 4137 3879 3916 11769 {rgb=(1 1 1)} Face 4138 3916 4075 11769 {rgb=(1 1 1)} Face 4139 4075 4046 11769 {rgb=(1 1 1)} Face 4140 4046 3879 11769 {rgb=(1 1 1)} Face 4141 3906 3877 11770 {rgb=(1 1 1)} Face 4142 3877 4029 11770 {rgb=(1 1 1)} Face 4143 4029 4053 11770 {rgb=(1 1 1)} Face 4144 4053 3906 11770 {rgb=(1 1 1)} Face 4145 4257 4289 11771 {rgb=(1 1 1)} Face 4146 4289 4557 11771 {rgb=(1 1 1)} Face 4147 4557 4526 11771 {rgb=(1 1 1)} Face 4148 4526 4257 11771 {rgb=(1 1 1)} Face 4149 4255 4244 11772 {rgb=(1 1 1)} Face 4150 4244 4516 11772 {rgb=(1 1 1)} Face 4151 4516 4529 11772 {rgb=(1 1 1)} Face 4152 4529 4255 11772 {rgb=(1 1 1)} Face 4153 4863 4869 11773 {rgb=(1 1 1)} Face 4154 4869 5063 11773 {rgb=(1 1 1)} Face 4155 5063 5070 11773 {rgb=(1 1 1)} Face 4156 5070 4863 11773 {rgb=(1 1 1)} Face 4157 4855 4856 11774 {rgb=(1 1 1)} Face 4158 4856 5062 11774 {rgb=(1 1 1)} Face 4159 5062 5043 11774 {rgb=(1 1 1)} Face 4160 5043 4855 11774 {rgb=(1 1 1)} Face 4161 5258 5242 11775 {rgb=(1 1 1)} Face 4162 5242 5438 11775 {rgb=(1 1 1)} Face 4163 5438 5442 11775 {rgb=(1 1 1)} Face 4164 5442 5258 11775 {rgb=(1 1 1)} Face 4165 5222 5250 11776 {rgb=(1 1 1)} Face 4166 5250 5441 11776 {rgb=(1 1 1)} Face 4167 5441 5431 11776 {rgb=(1 1 1)} Face 4168 5431 5222 11776 {rgb=(1 1 1)} Face 4169 3804 3673 11777 {rgb=(0 .2 .2)} Face 4170 3673 4188 11777 {rgb=(0 .2 .2)} Face 4171 4188 4137 11777 {rgb=(0 .2 .2)} Face 4172 4137 3804 11777 {rgb=(0 .2 .2)} Face 4173 2550 2588 11778 {rgb=(0 .2 .2)} Face 4174 2588 2605 11778 {rgb=(0 .2 .2)} Face 4175 2605 2505 11778 {rgb=(0 .2 .2)} Face 4176 2505 2550 11778 {rgb=(0 .2 .2)} Face 4177 1911 1834 11779 {rgb=(0 .2 .2)} Face 4178 1834 2112 11779 {rgb=(0 .2 .2)} Face 4179 2112 2131 11779 {rgb=(0 .2 .2)} Face 4180 2131 1911 11779 {rgb=(0 .2 .2)} Face 4181 3977 4339 11780 {rgb=(0 .2 .2)} Face 4182 4339 4169 11780 {rgb=(0 .2 .2)} Face 4183 4169 3971 11780 {rgb=(0 .2 .2)} Face 4184 3971 3977 11780 {rgb=(0 .2 .2)} Face 4185 5307 5329 11781 {rgb=(0 .2 .2)} Face 4186 5329 5705 11781 {rgb=(0 .2 .2)} Face 4187 5705 5730 11781 {rgb=(0 .2 .2)} Face 4188 5730 5307 11781 {rgb=(0 .2 .2)} Face 4189 2150 2166 11782 {rgb=(0 .2 .2)} Face 4190 2166 2074 11782 {rgb=(0 .2 .2)} Face 4191 2074 2053 11782 {rgb=(0 .2 .2)} Face 4192 2053 2150 11782 {rgb=(0 .2 .2)} Face 4193 2330 2369 11783 {rgb=(0 .2 .2)} Face 4194 2369 2151 11783 {rgb=(0 .2 .2)} Face 4195 2151 2183 11783 {rgb=(0 .2 .2)} Face 4196 2183 2330 11783 {rgb=(0 .2 .2)} Face 4197 2447 2464 11784 {rgb=(0 .2 .2)} Face 4198 2464 2295 11784 {rgb=(0 .2 .2)} Face 4199 2295 2322 11784 {rgb=(0 .2 .2)} Face 4200 2322 2447 11784 {rgb=(0 .2 .2)} Face 4201 2382 2406 11785 {rgb=(0 .2 .2)} Face 4202 2406 2278 11785 {rgb=(0 .2 .2)} Face 4203 2278 2238 11785 {rgb=(0 .2 .2)} Face 4204 2238 2382 11785 {rgb=(0 .2 .2)} Face 4205 6908 6856 11786 {rgb=(0 .2 .2)} Face 4206 6856 7371 11786 {rgb=(0 .2 .2)} Face 4207 7371 7239 11786 {rgb=(0 .2 .2)} Face 4208 7239 6908 11786 {rgb=(0 .2 .2)} Face 4209 8495 8539 11787 {rgb=(0 .2 .2)} Face 4210 8539 8536 11787 {rgb=(0 .2 .2)} Face 4211 8536 8459 11787 {rgb=(0 .2 .2)} Face 4212 8459 8495 11787 {rgb=(0 .2 .2)} Face 4213 8914 8933 11788 {rgb=(0 .2 .2)} Face 4214 8933 9211 11788 {rgb=(0 .2 .2)} Face 4215 9211 9134 11788 {rgb=(0 .2 .2)} Face 4216 9134 8914 11788 {rgb=(0 .2 .2)} Face 4217 7068 6877 11789 {rgb=(0 .2 .2)} Face 4218 6877 6702 11789 {rgb=(0 .2 .2)} Face 4219 6702 7063 11789 {rgb=(0 .2 .2)} Face 4220 7063 7068 11789 {rgb=(0 .2 .2)} Face 4221 5236 5104 11790 {rgb=(0 .2 .2)} Face 4222 5104 5944 11790 {rgb=(0 .2 .2)} Face 4223 5944 5809 11790 {rgb=(0 .2 .2)} Face 4224 5809 5236 11790 {rgb=(0 .2 .2)} Face 4225 8992 8969 11791 {rgb=(0 .2 .2)} Face 4226 8969 8879 11791 {rgb=(0 .2 .2)} Face 4227 8879 8894 11791 {rgb=(0 .2 .2)} Face 4228 8894 8992 11791 {rgb=(0 .2 .2)} Face 4229 8861 8893 11792 {rgb=(0 .2 .2)} Face 4230 8893 8676 11792 {rgb=(0 .2 .2)} Face 4231 8676 8718 11792 {rgb=(0 .2 .2)} Face 4232 8718 8861 11792 {rgb=(0 .2 .2)} Face 4233 8725 8751 11793 {rgb=(0 .2 .2)} Face 4234 8751 8581 11793 {rgb=(0 .2 .2)} Face 4235 8581 8596 11793 {rgb=(0 .2 .2)} Face 4236 8596 8725 11793 {rgb=(0 .2 .2)} Face 4237 8807 8768 11794 {rgb=(0 .2 .2)} Face 4238 8768 8641 11794 {rgb=(0 .2 .2)} Face 4239 8641 8664 11794 {rgb=(0 .2 .2)} Face 4240 8664 8807 11794 {rgb=(0 .2 .2)} Face 4241 5902 5685 11795 {rgb=(0 .2 .2)} Face 4242 5685 5918 11795 {rgb=(0 .2 .2)} Face 4243 5918 5999 11795 {rgb=(0 .2 .2)} Face 4244 5999 5902 11795 {rgb=(0 .2 .2)} Face 4245 8785 8772 11796 {rgb=(0 .2 .2)} Face 4246 8772 9013 11796 {rgb=(0 .2 .2)} Face 4247 9013 8874 11796 {rgb=(0 .2 .2)} Face 4248 8874 8785 11796 {rgb=(0 .2 .2)} Face 4249 6109 6114 11797 {rgb=(0 .2 .2)} Face 4250 6114 5750 11797 {rgb=(0 .2 .2)} Face 4251 5750 5989 11797 {rgb=(0 .2 .2)} Face 4252 5989 6109 11797 {rgb=(0 .2 .2)} Face 4253 5046 5127 11798 {rgb=(0 .2 .2)} Face 4254 5127 5356 11798 {rgb=(0 .2 .2)} Face 4255 5356 5143 11798 {rgb=(0 .2 .2)} Face 4256 5143 5046 11798 {rgb=(0 .2 .2)} Face 4257 2170 2031 11799 {rgb=(0 .2 .2)} Face 4258 2031 2273 11799 {rgb=(0 .2 .2)} Face 4259 2273 2260 11799 {rgb=(0 .2 .2)} Face 4260 2260 2170 11799 {rgb=(0 .2 .2)} Face 4261 5058 5291 11800 {rgb=(0 .2 .2)} Face 4262 5291 4927 11800 {rgb=(0 .2 .2)} Face 4263 4927 4933 11800 {rgb=(0 .2 .2)} Face 4264 4933 5058 11800 {rgb=(0 .2 .2)} Face 4265 4234 4089 11801 {rgb=(0 .2 .2)} Face 4266 4089 3808 11801 {rgb=(0 .2 .2)} Face 4267 3808 3885 11801 {rgb=(0 .2 .2)} Face 4268 3885 4234 11801 {rgb=(0 .2 .2)} Face 4269 4080 4030 11802 {rgb=(0 .2 .2)} Face 4270 4030 4424 11802 {rgb=(0 .2 .2)} Face 4271 4424 4522 11802 {rgb=(0 .2 .2)} Face 4272 4522 4080 11802 {rgb=(0 .2 .2)} Face 4273 4943 4424 11803 {rgb=(0 .2 .2)} Face 4274 4424 4302 11803 {rgb=(0 .2 .2)} Face 4275 4302 4814 11803 {rgb=(0 .2 .2)} Face 4276 4814 4943 11803 {rgb=(0 .2 .2)} Face 4277 5713 5322 11804 {rgb=(0 .2 .2)} Face 4278 5322 5286 11804 {rgb=(0 .2 .2)} Face 4279 5286 5755 11804 {rgb=(0 .2 .2)} Face 4280 5755 5713 11804 {rgb=(0 .2 .2)} Face 4281 5266 5286 11805 {rgb=(0 .2 .2)} Face 4282 5286 4814 11805 {rgb=(0 .2 .2)} Face 4283 4814 4731 11805 {rgb=(0 .2 .2)} Face 4284 4731 5266 11805 {rgb=(0 .2 .2)} Face 4285 5013 4943 11806 {rgb=(0 .2 .2)} Face 4286 4943 5322 11806 {rgb=(0 .2 .2)} Face 4287 5322 5359 11806 {rgb=(0 .2 .2)} Face 4288 5359 5013 11806 {rgb=(0 .2 .2)} Face 4289 3492 3834 11807 {rgb=(0 .2 .2)} Face 4290 3834 3837 11807 {rgb=(0 .2 .2)} Face 4291 3837 3503 11807 {rgb=(0 .2 .2)} Face 4292 3503 3492 11807 {rgb=(0 .2 .2)} Face 4293 3855 3837 11808 {rgb=(0 .2 .2)} Face 4294 3837 4182 11808 {rgb=(0 .2 .2)} Face 4295 4182 4199 11808 {rgb=(0 .2 .2)} Face 4296 4199 3855 11808 {rgb=(0 .2 .2)} Face 4297 4683 4182 11809 {rgb=(0 .2 .2)} Face 4298 4182 4154 11809 {rgb=(0 .2 .2)} Face 4299 4154 4635 11809 {rgb=(0 .2 .2)} Face 4300 4635 4683 11809 {rgb=(0 .2 .2)} Face 4301 4140 4154 11810 {rgb=(0 .2 .2)} Face 4302 4154 3834 11810 {rgb=(0 .2 .2)} Face 4303 3834 3815 11810 {rgb=(0 .2 .2)} Face 4304 3815 4140 11810 {rgb=(0 .2 .2)} Face 4305 4703 4683 11811 {rgb=(0 .2 .2)} Face 4306 4683 5256 11811 {rgb=(0 .2 .2)} Face 4307 5256 5264 11811 {rgb=(0 .2 .2)} Face 4308 5264 4703 11811 {rgb=(0 .2 .2)} Face 4309 5789 5256 11812 {rgb=(0 .2 .2)} Face 4310 5256 5236 11812 {rgb=(0 .2 .2)} Face 4311 5236 5809 11812 {rgb=(0 .2 .2)} Face 4312 5809 5789 11812 {rgb=(0 .2 .2)} Face 4313 5104 5236 11813 {rgb=(0 .2 .2)} Face 4314 5236 4635 11813 {rgb=(0 .2 .2)} Face 4315 4635 4548 11813 {rgb=(0 .2 .2)} Face 4316 4548 5104 11813 {rgb=(0 .2 .2)} Face 4317 3429 3773 11814 {rgb=(0 .2 .2)} Face 4318 3773 3815 11814 {rgb=(0 .2 .2)} Face 4319 3815 3466 11814 {rgb=(0 .2 .2)} Face 4320 3466 3429 11814 {rgb=(0 .2 .2)} Face 4321 4548 4140 11815 {rgb=(0 .2 .2)} Face 4322 4140 4136 11815 {rgb=(0 .2 .2)} Face 4323 4136 4431 11815 {rgb=(0 .2 .2)} Face 4324 4431 4548 11815 {rgb=(0 .2 .2)} Face 4325 4151 4136 11816 {rgb=(0 .2 .2)} Face 4326 4136 3773 11816 {rgb=(0 .2 .2)} Face 4327 3773 3800 11816 {rgb=(0 .2 .2)} Face 4328 3800 4151 11816 {rgb=(0 .2 .2)} Face 4329 5407 5104 11817 {rgb=(0 .2 .2)} Face 4330 5104 4798 11817 {rgb=(0 .2 .2)} Face 4331 4798 5022 11817 {rgb=(0 .2 .2)} Face 4332 5022 5407 11817 {rgb=(0 .2 .2)} Face 4333 4596 4798 11818 {rgb=(0 .2 .2)} Face 4334 4798 4431 11818 {rgb=(0 .2 .2)} Face 4335 4431 4400 11818 {rgb=(0 .2 .2)} Face 4336 4400 4596 11818 {rgb=(0 .2 .2)} Face 4337 3256 3604 11819 {rgb=(0 .2 .2)} Face 4338 3604 3758 11819 {rgb=(0 .2 .2)} Face 4339 3758 3426 11819 {rgb=(0 .2 .2)} Face 4340 3426 3256 11819 {rgb=(0 .2 .2)} Face 4341 3853 3758 11820 {rgb=(0 .2 .2)} Face 4342 3758 4131 11820 {rgb=(0 .2 .2)} Face 4343 4131 4183 11820 {rgb=(0 .2 .2)} Face 4344 4183 3853 11820 {rgb=(0 .2 .2)} Face 4345 4346 4131 11821 {rgb=(0 .2 .2)} Face 4346 4131 4018 11821 {rgb=(0 .2 .2)} Face 4347 4018 4246 11821 {rgb=(0 .2 .2)} Face 4348 4246 4346 11821 {rgb=(0 .2 .2)} Face 4349 3914 4018 11822 {rgb=(0 .2 .2)} Face 4350 4018 3604 11822 {rgb=(0 .2 .2)} Face 4351 3604 3471 11822 {rgb=(0 .2 .2)} Face 4352 3471 3914 11822 {rgb=(0 .2 .2)} Face 4353 4409 4346 11823 {rgb=(0 .2 .2)} Face 4354 4346 4427 11823 {rgb=(0 .2 .2)} Face 4355 4427 4552 11823 {rgb=(0 .2 .2)} Face 4356 4552 4409 11823 {rgb=(0 .2 .2)} Face 4357 4436 4427 11824 {rgb=(0 .2 .2)} Face 4358 4427 4293 11824 {rgb=(0 .2 .2)} Face 4359 4293 4291 11824 {rgb=(0 .2 .2)} Face 4360 4291 4436 11824 {rgb=(0 .2 .2)} Face 4361 4282 4293 11825 {rgb=(0 .2 .2)} Face 4362 4293 4246 11825 {rgb=(0 .2 .2)} Face 4363 4246 4170 11825 {rgb=(0 .2 .2)} Face 4364 4170 4282 11825 {rgb=(0 .2 .2)} Face 4365 2862 3329 11826 {rgb=(0 .2 .2)} Face 4366 3329 3471 11826 {rgb=(0 .2 .2)} Face 4367 3471 3076 11826 {rgb=(0 .2 .2)} Face 4368 3076 2862 11826 {rgb=(0 .2 .2)} Face 4369 4170 3914 11827 {rgb=(0 .2 .2)} Face 4370 3914 3804 11827 {rgb=(0 .2 .2)} Face 4371 3804 4137 11827 {rgb=(0 .2 .2)} Face 4372 4137 4170 11827 {rgb=(0 .2 .2)} Face 4373 3673 3804 11828 {rgb=(0 .2 .2)} Face 4374 3804 3329 11828 {rgb=(0 .2 .2)} Face 4375 3329 3174 11828 {rgb=(0 .2 .2)} Face 4376 3174 3673 11828 {rgb=(0 .2 .2)} Face 4377 4290 4282 11829 {rgb=(0 .2 .2)} Face 4378 4282 4348 11829 {rgb=(0 .2 .2)} Face 4379 4348 4428 11829 {rgb=(0 .2 .2)} Face 4380 4428 4290 11829 {rgb=(0 .2 .2)} Face 4381 4470 4348 11830 {rgb=(0 .2 .2)} Face 4382 4348 4137 11830 {rgb=(0 .2 .2)} Face 4383 4137 4188 11830 {rgb=(0 .2 .2)} Face 4384 4188 4470 11830 {rgb=(0 .2 .2)} Face 4385 2541 2945 11831 {rgb=(0 .2 .2)} Face 4386 2945 3174 11831 {rgb=(0 .2 .2)} Face 4387 3174 2706 11831 {rgb=(0 .2 .2)} Face 4388 2706 2541 11831 {rgb=(0 .2 .2)} Face 4389 3958 3673 11832 {rgb=(0 .2 .2)} Face 4390 3673 3538 11832 {rgb=(0 .2 .2)} Face 4391 3538 3832 11832 {rgb=(0 .2 .2)} Face 4392 3832 3958 11832 {rgb=(0 .2 .2)} Face 4393 3494 3538 11833 {rgb=(0 .2 .2)} Face 4394 3538 2945 11833 {rgb=(0 .2 .2)} Face 4395 2945 2877 11833 {rgb=(0 .2 .2)} Face 4396 2877 3494 11833 {rgb=(0 .2 .2)} Face 4397 3977 3971 11834 {rgb=(0 .2 .2)} Face 4398 3971 3832 11834 {rgb=(0 .2 .2)} Face 4399 3832 3841 11834 {rgb=(0 .2 .2)} Face 4400 3841 3977 11834 {rgb=(0 .2 .2)} Face 4401 4160 3958 11835 {rgb=(0 .2 .2)} Face 4402 3958 3971 11835 {rgb=(0 .2 .2)} Face 4403 3971 4169 11835 {rgb=(0 .2 .2)} Face 4404 4169 4160 11835 {rgb=(0 .2 .2)} Face 4405 4524 4933 11836 {rgb=(0 .2 .2)} Face 4406 4933 4927 11836 {rgb=(0 .2 .2)} Face 4407 4927 4492 11836 {rgb=(0 .2 .2)} Face 4408 4492 4524 11836 {rgb=(0 .2 .2)} Face 4409 4575 4927 11837 {rgb=(0 .2 .2)} Face 4410 4927 5068 11837 {rgb=(0 .2 .2)} Face 4411 5068 4748 11837 {rgb=(0 .2 .2)} Face 4412 4748 4575 11837 {rgb=(0 .2 .2)} Face 4413 5008 5068 11838 {rgb=(0 .2 .2)} Face 4414 5068 5292 11838 {rgb=(0 .2 .2)} Face 4415 5292 5348 11838 {rgb=(0 .2 .2)} Face 4416 5348 5008 11838 {rgb=(0 .2 .2)} Face 4417 5748 5292 11839 {rgb=(0 .2 .2)} Face 4418 5292 5291 11839 {rgb=(0 .2 .2)} Face 4419 5291 5750 11839 {rgb=(0 .2 .2)} Face 4420 5750 5748 11839 {rgb=(0 .2 .2)} Face 4421 5341 5291 11840 {rgb=(0 .2 .2)} Face 4422 5291 5058 11840 {rgb=(0 .2 .2)} Face 4423 5058 4997 11840 {rgb=(0 .2 .2)} Face 4424 4997 5341 11840 {rgb=(0 .2 .2)} Face 4425 4744 5058 11841 {rgb=(0 .2 .2)} Face 4426 5058 4933 11841 {rgb=(0 .2 .2)} Face 4427 4933 4617 11841 {rgb=(0 .2 .2)} Face 4428 4617 4744 11841 {rgb=(0 .2 .2)} Face 4429 1981 1945 11842 {rgb=(0 .2 .2)} Face 4430 1945 1895 11842 {rgb=(0 .2 .2)} Face 4431 1895 1918 11842 {rgb=(0 .2 .2)} Face 4432 1918 1981 11842 {rgb=(0 .2 .2)} Face 4433 1986 1895 11843 {rgb=(0 .2 .2)} Face 4434 1895 1887 11843 {rgb=(0 .2 .2)} Face 4435 1887 1972 11843 {rgb=(0 .2 .2)} Face 4436 1972 1986 11843 {rgb=(0 .2 .2)} Face 4437 2031 1887 11844 {rgb=(0 .2 .2)} Face 4438 1887 1945 11844 {rgb=(0 .2 .2)} Face 4439 1945 2080 11844 {rgb=(0 .2 .2)} Face 4440 2080 2031 11844 {rgb=(0 .2 .2)} Face 4441 3095 3162 11845 {rgb=(0 .2 .2)} Face 4442 3162 2961 11845 {rgb=(0 .2 .2)} Face 4443 2961 2874 11845 {rgb=(0 .2 .2)} Face 4444 2874 3095 11845 {rgb=(0 .2 .2)} Face 4445 2608 2664 11846 {rgb=(0 .2 .2)} Face 4446 2664 2764 11846 {rgb=(0 .2 .2)} Face 4447 2764 2711 11846 {rgb=(0 .2 .2)} Face 4448 2711 2608 11846 {rgb=(0 .2 .2)} Face 4449 2834 2764 11847 {rgb=(0 .2 .2)} Face 4450 2764 2912 11847 {rgb=(0 .2 .2)} Face 4451 2912 3025 11847 {rgb=(0 .2 .2)} Face 4452 3025 2834 11847 {rgb=(0 .2 .2)} Face 4453 3198 2912 11848 {rgb=(0 .2 .2)} Face 4454 2912 2823 11848 {rgb=(0 .2 .2)} Face 4455 2823 3140 11848 {rgb=(0 .2 .2)} Face 4456 3140 3198 11848 {rgb=(0 .2 .2)} Face 4457 2754 2823 11849 {rgb=(0 .2 .2)} Face 4458 2823 2664 11849 {rgb=(0 .2 .2)} Face 4459 2664 2589 11849 {rgb=(0 .2 .2)} Face 4460 2589 2754 11849 {rgb=(0 .2 .2)} Face 4461 2442 2525 11850 {rgb=(0 .2 .2)} Face 4462 2525 2589 11850 {rgb=(0 .2 .2)} Face 4463 2589 2516 11850 {rgb=(0 .2 .2)} Face 4464 2516 2442 11850 {rgb=(0 .2 .2)} Face 4465 3084 2754 11851 {rgb=(0 .2 .2)} Face 4466 2754 2699 11851 {rgb=(0 .2 .2)} Face 4467 2699 3013 11851 {rgb=(0 .2 .2)} Face 4468 3013 3084 11851 {rgb=(0 .2 .2)} Face 4469 2703 2699 11852 {rgb=(0 .2 .2)} Face 4470 2699 2525 11852 {rgb=(0 .2 .2)} Face 4471 2525 2523 11852 {rgb=(0 .2 .2)} Face 4472 2523 2703 11852 {rgb=(0 .2 .2)} Face 4473 2342 2412 11853 {rgb=(0 .2 .2)} Face 4474 2412 2550 11853 {rgb=(0 .2 .2)} Face 4475 2550 2505 11853 {rgb=(0 .2 .2)} Face 4476 2505 2342 11853 {rgb=(0 .2 .2)} Face 4477 2588 2550 11854 {rgb=(0 .2 .2)} Face 4478 2550 2741 11854 {rgb=(0 .2 .2)} Face 4479 2741 2768 11854 {rgb=(0 .2 .2)} Face 4480 2768 2588 11854 {rgb=(0 .2 .2)} Face 4481 3066 2741 11855 {rgb=(0 .2 .2)} Face 4482 2741 2639 11855 {rgb=(0 .2 .2)} Face 4483 2639 2885 11855 {rgb=(0 .2 .2)} Face 4484 2885 3066 11855 {rgb=(0 .2 .2)} Face 4485 2504 2639 11856 {rgb=(0 .2 .2)} Face 4486 2639 2412 11856 {rgb=(0 .2 .2)} Face 4487 2412 2224 11856 {rgb=(0 .2 .2)} Face 4488 2224 2504 11856 {rgb=(0 .2 .2)} Face 4489 2072 2068 11857 {rgb=(0 .2 .2)} Face 4490 2068 2224 11857 {rgb=(0 .2 .2)} Face 4491 2224 2174 11857 {rgb=(0 .2 .2)} Face 4492 2174 2072 11857 {rgb=(0 .2 .2)} Face 4493 2734 2504 11858 {rgb=(0 .2 .2)} Face 4494 2504 2246 11858 {rgb=(0 .2 .2)} Face 4495 2246 2561 11858 {rgb=(0 .2 .2)} Face 4496 2561 2734 11858 {rgb=(0 .2 .2)} Face 4497 2057 2246 11859 {rgb=(0 .2 .2)} Face 4498 2246 2068 11859 {rgb=(0 .2 .2)} Face 4499 2068 1953 11859 {rgb=(0 .2 .2)} Face 4500 1953 2057 11859 {rgb=(0 .2 .2)} Face 4501 1957 1878 11860 {rgb=(0 .2 .2)} Face 4502 1878 1953 11860 {rgb=(0 .2 .2)} Face 4503 1953 2016 11860 {rgb=(0 .2 .2)} Face 4504 2016 1957 11860 {rgb=(0 .2 .2)} Face 4505 2358 2057 11861 {rgb=(0 .2 .2)} Face 4506 2057 1911 11861 {rgb=(0 .2 .2)} Face 4507 1911 2131 11861 {rgb=(0 .2 .2)} Face 4508 2131 2358 11861 {rgb=(0 .2 .2)} Face 4509 1834 1911 11862 {rgb=(0 .2 .2)} Face 4510 1911 1878 11862 {rgb=(0 .2 .2)} Face 4511 1878 1829 11862 {rgb=(0 .2 .2)} Face 4512 1829 1834 11862 {rgb=(0 .2 .2)} Face 4513 1923 1817 11863 {rgb=(0 .2 .2)} Face 4514 1817 1829 11863 {rgb=(0 .2 .2)} Face 4515 1829 1928 11863 {rgb=(0 .2 .2)} Face 4516 1928 1923 11863 {rgb=(0 .2 .2)} Face 4517 1919 1834 11864 {rgb=(0 .2 .2)} Face 4518 1834 1811 11864 {rgb=(0 .2 .2)} Face 4519 1811 1898 11864 {rgb=(0 .2 .2)} Face 4520 1898 1919 11864 {rgb=(0 .2 .2)} Face 4521 1794 1811 11865 {rgb=(0 .2 .2)} Face 4522 1811 1817 11865 {rgb=(0 .2 .2)} Face 4523 1817 1818 11865 {rgb=(0 .2 .2)} Face 4524 1818 1794 11865 {rgb=(0 .2 .2)} Face 4525 1973 1831 11866 {rgb=(0 .2 .2)} Face 4526 1831 1818 11866 {rgb=(0 .2 .2)} Face 4527 1818 1937 11866 {rgb=(0 .2 .2)} Face 4528 1937 1973 11866 {rgb=(0 .2 .2)} Face 4529 1870 1794 11867 {rgb=(0 .2 .2)} Face 4530 1794 1784 11867 {rgb=(0 .2 .2)} Face 4531 1784 1832 11867 {rgb=(0 .2 .2)} Face 4532 1832 1870 11867 {rgb=(0 .2 .2)} Face 4533 1800 1784 11868 {rgb=(0 .2 .2)} Face 4534 1784 1831 11868 {rgb=(0 .2 .2)} Face 4535 1831 1859 11868 {rgb=(0 .2 .2)} Face 4536 1859 1800 11868 {rgb=(0 .2 .2)} Face 4537 3568 3557 11869 {rgb=(0 .2 .2)} Face 4538 3557 3330 11869 {rgb=(0 .2 .2)} Face 4539 3330 3322 11869 {rgb=(0 .2 .2)} Face 4540 3322 3568 11869 {rgb=(0 .2 .2)} Face 4541 3260 3198 11870 {rgb=(0 .2 .2)} Face 4542 3198 3503 11870 {rgb=(0 .2 .2)} Face 4543 3503 3534 11870 {rgb=(0 .2 .2)} Face 4544 3534 3260 11870 {rgb=(0 .2 .2)} Face 4545 3466 3492 11871 {rgb=(0 .2 .2)} Face 4546 3492 3140 11871 {rgb=(0 .2 .2)} Face 4547 3140 3084 11871 {rgb=(0 .2 .2)} Face 4548 3084 3466 11871 {rgb=(0 .2 .2)} Face 4549 3434 3429 11872 {rgb=(0 .2 .2)} Face 4550 3429 3013 11872 {rgb=(0 .2 .2)} Face 4551 3013 3019 11872 {rgb=(0 .2 .2)} Face 4552 3019 3434 11872 {rgb=(0 .2 .2)} Face 4553 3094 3066 11873 {rgb=(0 .2 .2)} Face 4554 3066 3426 11873 {rgb=(0 .2 .2)} Face 4555 3426 3489 11873 {rgb=(0 .2 .2)} Face 4556 3489 3094 11873 {rgb=(0 .2 .2)} Face 4557 3076 3256 11874 {rgb=(0 .2 .2)} Face 4558 3256 2885 11874 {rgb=(0 .2 .2)} Face 4559 2885 2734 11874 {rgb=(0 .2 .2)} Face 4560 2734 3076 11874 {rgb=(0 .2 .2)} Face 4561 2706 2862 11875 {rgb=(0 .2 .2)} Face 4562 2862 2561 11875 {rgb=(0 .2 .2)} Face 4563 2561 2358 11875 {rgb=(0 .2 .2)} Face 4564 2358 2706 11875 {rgb=(0 .2 .2)} Face 4565 2490 2541 11876 {rgb=(0 .2 .2)} Face 4566 2541 2131 11876 {rgb=(0 .2 .2)} Face 4567 2131 2112 11876 {rgb=(0 .2 .2)} Face 4568 2112 2490 11876 {rgb=(0 .2 .2)} Face 4569 1888 1866 11877 {rgb=(0 .2 .2)} Face 4570 1866 1897 11877 {rgb=(0 .2 .2)} Face 4571 1897 1917 11877 {rgb=(0 .2 .2)} Face 4572 1917 1888 11877 {rgb=(0 .2 .2)} Face 4573 2028 1897 11878 {rgb=(0 .2 .2)} Face 4574 1897 1859 11878 {rgb=(0 .2 .2)} Face 4575 1859 2007 11878 {rgb=(0 .2 .2)} Face 4576 2007 2028 11878 {rgb=(0 .2 .2)} Face 4577 1864 1800 11879 {rgb=(0 .2 .2)} Face 4578 1800 1866 11879 {rgb=(0 .2 .2)} Face 4579 1866 1948 11879 {rgb=(0 .2 .2)} Face 4580 1948 1864 11879 {rgb=(0 .2 .2)} Face 4581 1841 1861 11880 {rgb=(0 .2 .2)} Face 4582 1861 1930 11880 {rgb=(0 .2 .2)} Face 4583 1930 1934 11880 {rgb=(0 .2 .2)} Face 4584 1934 1841 11880 {rgb=(0 .2 .2)} Face 4585 2070 1930 11881 {rgb=(0 .2 .2)} Face 4586 1930 1917 11881 {rgb=(0 .2 .2)} Face 4587 1917 2050 11881 {rgb=(0 .2 .2)} Face 4588 2050 2070 11881 {rgb=(0 .2 .2)} Face 4589 1984 1888 11882 {rgb=(0 .2 .2)} Face 4590 1888 1861 11882 {rgb=(0 .2 .2)} Face 4591 1861 1929 11882 {rgb=(0 .2 .2)} Face 4592 1929 1984 11882 {rgb=(0 .2 .2)} Face 4593 1843 1824 11883 {rgb=(0 .2 .2)} Face 4594 1824 1935 11883 {rgb=(0 .2 .2)} Face 4595 1935 1939 11883 {rgb=(0 .2 .2)} Face 4596 1939 1843 11883 {rgb=(0 .2 .2)} Face 4597 2097 1935 11884 {rgb=(0 .2 .2)} Face 4598 1935 1934 11884 {rgb=(0 .2 .2)} Face 4599 1934 2089 11884 {rgb=(0 .2 .2)} Face 4600 2089 2097 11884 {rgb=(0 .2 .2)} Face 4601 1899 1841 11885 {rgb=(0 .2 .2)} Face 4602 1841 1824 11885 {rgb=(0 .2 .2)} Face 4603 1824 1874 11885 {rgb=(0 .2 .2)} Face 4604 1874 1899 11885 {rgb=(0 .2 .2)} Face 4605 2095 1981 11886 {rgb=(0 .2 .2)} Face 4606 1981 1991 11886 {rgb=(0 .2 .2)} Face 4607 1991 2101 11886 {rgb=(0 .2 .2)} Face 4608 2101 2095 11886 {rgb=(0 .2 .2)} Face 4609 2002 1991 11887 {rgb=(0 .2 .2)} Face 4610 1991 1949 11887 {rgb=(0 .2 .2)} Face 4611 1949 1988 11887 {rgb=(0 .2 .2)} Face 4612 1988 2002 11887 {rgb=(0 .2 .2)} Face 4613 2049 1949 11888 {rgb=(0 .2 .2)} Face 4614 1949 1918 11888 {rgb=(0 .2 .2)} Face 4615 1918 2018 11888 {rgb=(0 .2 .2)} Face 4616 2018 2049 11888 {rgb=(0 .2 .2)} Face 4617 2099 2002 11889 {rgb=(0 .2 .2)} Face 4618 2002 2005 11889 {rgb=(0 .2 .2)} Face 4619 2005 2090 11889 {rgb=(0 .2 .2)} Face 4620 2090 2099 11889 {rgb=(0 .2 .2)} Face 4621 1997 2005 11890 {rgb=(0 .2 .2)} Face 4622 2005 2021 11890 {rgb=(0 .2 .2)} Face 4623 2021 1998 11890 {rgb=(0 .2 .2)} Face 4624 1998 1997 11890 {rgb=(0 .2 .2)} Face 4625 2103 2021 11891 {rgb=(0 .2 .2)} Face 4626 2021 1988 11891 {rgb=(0 .2 .2)} Face 4627 1988 2071 11891 {rgb=(0 .2 .2)} Face 4628 2071 2103 11891 {rgb=(0 .2 .2)} Face 4629 1920 1879 11892 {rgb=(0 .2 .2)} Face 4630 1879 1952 11892 {rgb=(0 .2 .2)} Face 4631 1952 1977 11892 {rgb=(0 .2 .2)} Face 4632 1977 1920 11892 {rgb=(0 .2 .2)} Face 4633 2094 1952 11893 {rgb=(0 .2 .2)} Face 4634 1952 1939 11893 {rgb=(0 .2 .2)} Face 4635 1939 2100 11893 {rgb=(0 .2 .2)} Face 4636 2100 2094 11893 {rgb=(0 .2 .2)} Face 4637 1889 1843 11894 {rgb=(0 .2 .2)} Face 4638 1843 1879 11894 {rgb=(0 .2 .2)} Face 4639 1879 1933 11894 {rgb=(0 .2 .2)} Face 4640 1933 1889 11894 {rgb=(0 .2 .2)} Face 4641 2088 1997 11895 {rgb=(0 .2 .2)} Face 4642 1997 1977 11895 {rgb=(0 .2 .2)} Face 4643 1977 2092 11895 {rgb=(0 .2 .2)} Face 4644 2092 2088 11895 {rgb=(0 .2 .2)} Face 4645 2022 1920 11896 {rgb=(0 .2 .2)} Face 4646 1920 1998 11896 {rgb=(0 .2 .2)} Face 4647 1998 2085 11896 {rgb=(0 .2 .2)} Face 4648 2085 2022 11896 {rgb=(0 .2 .2)} Face 4649 2750 2798 11897 {rgb=(0 .2 .2)} Face 4650 2798 2691 11897 {rgb=(0 .2 .2)} Face 4651 2691 2641 11897 {rgb=(0 .2 .2)} Face 4652 2641 2750 11897 {rgb=(0 .2 .2)} Face 4653 2645 2691 11898 {rgb=(0 .2 .2)} Face 4654 2691 2804 11898 {rgb=(0 .2 .2)} Face 4655 2804 2766 11898 {rgb=(0 .2 .2)} Face 4656 2766 2645 11898 {rgb=(0 .2 .2)} Face 4657 2565 2645 11899 {rgb=(0 .2 .2)} Face 4658 2645 2605 11899 {rgb=(0 .2 .2)} Face 4659 2605 2508 11899 {rgb=(0 .2 .2)} Face 4660 2508 2565 11899 {rgb=(0 .2 .2)} Face 4661 2505 2605 11900 {rgb=(0 .2 .2)} Face 4662 2605 2712 11900 {rgb=(0 .2 .2)} Face 4663 2712 2627 11900 {rgb=(0 .2 .2)} Face 4664 2627 2505 11900 {rgb=(0 .2 .2)} Face 4665 2174 2342 11901 {rgb=(0 .2 .2)} Face 4666 2342 2507 11901 {rgb=(0 .2 .2)} Face 4667 2507 2386 11901 {rgb=(0 .2 .2)} Face 4668 2386 2174 11901 {rgb=(0 .2 .2)} Face 4669 2016 2072 11902 {rgb=(0 .2 .2)} Face 4670 2072 2265 11902 {rgb=(0 .2 .2)} Face 4671 2265 2186 11902 {rgb=(0 .2 .2)} Face 4672 2186 2016 11902 {rgb=(0 .2 .2)} Face 4673 1928 1957 11903 {rgb=(0 .2 .2)} Face 4674 1957 2143 11903 {rgb=(0 .2 .2)} Face 4675 2143 2128 11903 {rgb=(0 .2 .2)} Face 4676 2128 1928 11903 {rgb=(0 .2 .2)} Face 4677 1937 1923 11904 {rgb=(0 .2 .2)} Face 4678 1923 2125 11904 {rgb=(0 .2 .2)} Face 4679 2125 2136 11904 {rgb=(0 .2 .2)} Face 4680 2136 1937 11904 {rgb=(0 .2 .2)} Face 4681 2007 1973 11905 {rgb=(0 .2 .2)} Face 4682 1973 2162 11905 {rgb=(0 .2 .2)} Face 4683 2162 2191 11905 {rgb=(0 .2 .2)} Face 4684 2191 2007 11905 {rgb=(0 .2 .2)} Face 4685 2050 2028 11906 {rgb=(0 .2 .2)} Face 4686 2028 2222 11906 {rgb=(0 .2 .2)} Face 4687 2222 2252 11906 {rgb=(0 .2 .2)} Face 4688 2252 2050 11906 {rgb=(0 .2 .2)} Face 4689 2092 2094 11907 {rgb=(0 .2 .2)} Face 4690 2094 2332 11907 {rgb=(0 .2 .2)} Face 4691 2332 2325 11907 {rgb=(0 .2 .2)} Face 4692 2325 2092 11907 {rgb=(0 .2 .2)} Face 4693 2090 2088 11908 {rgb=(0 .2 .2)} Face 4694 2088 2321 11908 {rgb=(0 .2 .2)} Face 4695 2321 2329 11908 {rgb=(0 .2 .2)} Face 4696 2329 2090 11908 {rgb=(0 .2 .2)} Face 4697 2101 2099 11909 {rgb=(0 .2 .2)} Face 4698 2099 2344 11909 {rgb=(0 .2 .2)} Face 4699 2344 2347 11909 {rgb=(0 .2 .2)} Face 4700 2347 2101 11909 {rgb=(0 .2 .2)} Face 4701 2080 2095 11910 {rgb=(0 .2 .2)} Face 4702 2095 2336 11910 {rgb=(0 .2 .2)} Face 4703 2336 2273 11910 {rgb=(0 .2 .2)} Face 4704 2273 2080 11910 {rgb=(0 .2 .2)} Face 4705 1972 2031 11911 {rgb=(0 .2 .2)} Face 4706 2031 2170 11911 {rgb=(0 .2 .2)} Face 4707 2170 2146 11911 {rgb=(0 .2 .2)} Face 4708 2146 1972 11911 {rgb=(0 .2 .2)} Face 4709 2257 2170 11912 {rgb=(0 .2 .2)} Face 4710 2170 2260 11912 {rgb=(0 .2 .2)} Face 4711 2260 2289 11912 {rgb=(0 .2 .2)} Face 4712 2289 2257 11912 {rgb=(0 .2 .2)} Face 4713 2294 2165 11913 {rgb=(0 .2 .2)} Face 4714 2165 2146 11913 {rgb=(0 .2 .2)} Face 4715 2146 2261 11913 {rgb=(0 .2 .2)} Face 4716 2261 2294 11913 {rgb=(0 .2 .2)} Face 4717 2018 1986 11914 {rgb=(0 .2 .2)} Face 4718 1986 2165 11914 {rgb=(0 .2 .2)} Face 4719 2165 2205 11914 {rgb=(0 .2 .2)} Face 4720 2205 2018 11914 {rgb=(0 .2 .2)} Face 4721 2382 2238 11915 {rgb=(0 .2 .2)} Face 4722 2238 2205 11915 {rgb=(0 .2 .2)} Face 4723 2205 2334 11915 {rgb=(0 .2 .2)} Face 4724 2334 2382 11915 {rgb=(0 .2 .2)} Face 4725 2071 2049 11916 {rgb=(0 .2 .2)} Face 4726 2049 2238 11916 {rgb=(0 .2 .2)} Face 4727 2238 2278 11916 {rgb=(0 .2 .2)} Face 4728 2278 2071 11916 {rgb=(0 .2 .2)} Face 4729 2447 2322 11917 {rgb=(0 .2 .2)} Face 4730 2322 2278 11917 {rgb=(0 .2 .2)} Face 4731 2278 2416 11917 {rgb=(0 .2 .2)} Face 4732 2416 2447 11917 {rgb=(0 .2 .2)} Face 4733 2085 2103 11918 {rgb=(0 .2 .2)} Face 4734 2103 2322 11918 {rgb=(0 .2 .2)} Face 4735 2322 2295 11918 {rgb=(0 .2 .2)} Face 4736 2295 2085 11918 {rgb=(0 .2 .2)} Face 4737 2327 2207 11919 {rgb=(0 .2 .2)} Face 4738 2207 2295 11919 {rgb=(0 .2 .2)} Face 4739 2295 2419 11919 {rgb=(0 .2 .2)} Face 4740 2419 2327 11919 {rgb=(0 .2 .2)} Face 4741 1933 2022 11920 {rgb=(0 .2 .2)} Face 4742 2022 2207 11920 {rgb=(0 .2 .2)} Face 4743 2207 2130 11920 {rgb=(0 .2 .2)} Face 4744 2130 1933 11920 {rgb=(0 .2 .2)} Face 4745 2190 2076 11921 {rgb=(0 .2 .2)} Face 4746 2076 2130 11921 {rgb=(0 .2 .2)} Face 4747 2130 2247 11921 {rgb=(0 .2 .2)} Face 4748 2247 2190 11921 {rgb=(0 .2 .2)} Face 4749 1874 1889 11922 {rgb=(0 .2 .2)} Face 4750 1889 2076 11922 {rgb=(0 .2 .2)} Face 4751 2076 2069 11922 {rgb=(0 .2 .2)} Face 4752 2069 1874 11922 {rgb=(0 .2 .2)} Face 4753 2237 2104 11923 {rgb=(0 .2 .2)} Face 4754 2104 2069 11923 {rgb=(0 .2 .2)} Face 4755 2069 2185 11923 {rgb=(0 .2 .2)} Face 4756 2185 2237 11923 {rgb=(0 .2 .2)} Face 4757 1929 1899 11924 {rgb=(0 .2 .2)} Face 4758 1899 2104 11924 {rgb=(0 .2 .2)} Face 4759 2104 2141 11924 {rgb=(0 .2 .2)} Face 4760 2141 1929 11924 {rgb=(0 .2 .2)} Face 4761 2330 2183 11925 {rgb=(0 .2 .2)} Face 4762 2183 2141 11925 {rgb=(0 .2 .2)} Face 4763 2141 2280 11925 {rgb=(0 .2 .2)} Face 4764 2280 2330 11925 {rgb=(0 .2 .2)} Face 4765 1948 1984 11926 {rgb=(0 .2 .2)} Face 4766 1984 2183 11926 {rgb=(0 .2 .2)} Face 4767 2183 2151 11926 {rgb=(0 .2 .2)} Face 4768 2151 1948 11926 {rgb=(0 .2 .2)} Face 4769 2161 2059 11927 {rgb=(0 .2 .2)} Face 4770 2059 2151 11927 {rgb=(0 .2 .2)} Face 4771 2151 2286 11927 {rgb=(0 .2 .2)} Face 4772 2286 2161 11927 {rgb=(0 .2 .2)} Face 4773 1832 1864 11928 {rgb=(0 .2 .2)} Face 4774 1864 2059 11928 {rgb=(0 .2 .2)} Face 4775 2059 2030 11928 {rgb=(0 .2 .2)} Face 4776 2030 1832 11928 {rgb=(0 .2 .2)} Face 4777 2150 2053 11929 {rgb=(0 .2 .2)} Face 4778 2053 2030 11929 {rgb=(0 .2 .2)} Face 4779 2030 2123 11929 {rgb=(0 .2 .2)} Face 4780 2123 2150 11929 {rgb=(0 .2 .2)} Face 4781 1898 1870 11930 {rgb=(0 .2 .2)} Face 4782 1870 2053 11930 {rgb=(0 .2 .2)} Face 4783 2053 2074 11930 {rgb=(0 .2 .2)} Face 4784 2074 1898 11930 {rgb=(0 .2 .2)} Face 4785 2202 2096 11931 {rgb=(0 .2 .2)} Face 4786 2096 2074 11931 {rgb=(0 .2 .2)} Face 4787 2074 2172 11931 {rgb=(0 .2 .2)} Face 4788 2172 2202 11931 {rgb=(0 .2 .2)} Face 4789 2112 1919 11932 {rgb=(0 .2 .2)} Face 4790 1919 2096 11932 {rgb=(0 .2 .2)} Face 4791 2096 2287 11932 {rgb=(0 .2 .2)} Face 4792 2287 2112 11932 {rgb=(0 .2 .2)} Face 4793 2638 2601 11933 {rgb=(0 .2 .2)} Face 4794 2601 2287 11933 {rgb=(0 .2 .2)} Face 4795 2287 2400 11933 {rgb=(0 .2 .2)} Face 4796 2400 2638 11933 {rgb=(0 .2 .2)} Face 4797 2877 2490 11934 {rgb=(0 .2 .2)} Face 4798 2490 2601 11934 {rgb=(0 .2 .2)} Face 4799 2601 2992 11934 {rgb=(0 .2 .2)} Face 4800 2992 2877 11934 {rgb=(0 .2 .2)} Face 4801 3570 3547 11935 {rgb=(0 .2 .2)} Face 4802 3547 2992 11935 {rgb=(0 .2 .2)} Face 4803 2992 3042 11935 {rgb=(0 .2 .2)} Face 4804 3042 3570 11935 {rgb=(0 .2 .2)} Face 4805 3841 3494 11936 {rgb=(0 .2 .2)} Face 4806 3494 3547 11936 {rgb=(0 .2 .2)} Face 4807 3547 3883 11936 {rgb=(0 .2 .2)} Face 4808 3883 3841 11936 {rgb=(0 .2 .2)} Face 4809 4040 4021 11937 {rgb=(0 .2 .2)} Face 4810 4021 3883 11937 {rgb=(0 .2 .2)} Face 4811 3883 3902 11937 {rgb=(0 .2 .2)} Face 4812 3902 4040 11937 {rgb=(0 .2 .2)} Face 4813 4339 3977 11938 {rgb=(0 .2 .2)} Face 4814 3977 4021 11938 {rgb=(0 .2 .2)} Face 4815 4021 4385 11938 {rgb=(0 .2 .2)} Face 4816 4385 4339 11938 {rgb=(0 .2 .2)} Face 4817 5178 5174 11939 {rgb=(0 .2 .2)} Face 4818 5174 4385 11939 {rgb=(0 .2 .2)} Face 4819 4385 4401 11939 {rgb=(0 .2 .2)} Face 4820 4401 5178 11939 {rgb=(0 .2 .2)} Face 4821 4447 4339 11940 {rgb=(0 .2 .2)} Face 4822 4339 5168 11940 {rgb=(0 .2 .2)} Face 4823 5168 5191 11940 {rgb=(0 .2 .2)} Face 4824 5191 4447 11940 {rgb=(0 .2 .2)} Face 4825 5877 5168 11941 {rgb=(0 .2 .2)} Face 4826 5168 5174 11941 {rgb=(0 .2 .2)} Face 4827 5174 5871 11941 {rgb=(0 .2 .2)} Face 4828 5871 5877 11941 {rgb=(0 .2 .2)} Face 4829 5776 5266 11942 {rgb=(0 .2 .2)} Face 4830 5266 5264 11942 {rgb=(0 .2 .2)} Face 4831 5264 5778 11942 {rgb=(0 .2 .2)} Face 4832 5778 5776 11942 {rgb=(0 .2 .2)} Face 4833 4199 4703 11943 {rgb=(0 .2 .2)} Face 4834 4703 4731 11943 {rgb=(0 .2 .2)} Face 4835 4731 4234 11943 {rgb=(0 .2 .2)} Face 4836 4234 4199 11943 {rgb=(0 .2 .2)} Face 4837 3534 3855 11944 {rgb=(0 .2 .2)} Face 4838 3855 3885 11944 {rgb=(0 .2 .2)} Face 4839 3885 3568 11944 {rgb=(0 .2 .2)} Face 4840 3568 3534 11944 {rgb=(0 .2 .2)} Face 4841 3025 3260 11945 {rgb=(0 .2 .2)} Face 4842 3260 3322 11945 {rgb=(0 .2 .2)} Face 4843 3322 3095 11945 {rgb=(0 .2 .2)} Face 4844 3095 3025 11945 {rgb=(0 .2 .2)} Face 4845 2711 2834 11946 {rgb=(0 .2 .2)} Face 4846 2834 2874 11946 {rgb=(0 .2 .2)} Face 4847 2874 2750 11946 {rgb=(0 .2 .2)} Face 4848 2750 2711 11946 {rgb=(0 .2 .2)} Face 4849 2516 2608 11947 {rgb=(0 .2 .2)} Face 4850 2608 2641 11947 {rgb=(0 .2 .2)} Face 4851 2641 2565 11947 {rgb=(0 .2 .2)} Face 4852 2565 2516 11947 {rgb=(0 .2 .2)} Face 4853 2523 2442 11948 {rgb=(0 .2 .2)} Face 4854 2442 2508 11948 {rgb=(0 .2 .2)} Face 4855 2508 2588 11948 {rgb=(0 .2 .2)} Face 4856 2588 2523 11948 {rgb=(0 .2 .2)} Face 4857 3019 2703 11949 {rgb=(0 .2 .2)} Face 4858 2703 2768 11949 {rgb=(0 .2 .2)} Face 4859 2768 3094 11949 {rgb=(0 .2 .2)} Face 4860 3094 3019 11949 {rgb=(0 .2 .2)} Face 4861 3800 3434 11950 {rgb=(0 .2 .2)} Face 4862 3434 3489 11950 {rgb=(0 .2 .2)} Face 4863 3489 3853 11950 {rgb=(0 .2 .2)} Face 4864 3853 3800 11950 {rgb=(0 .2 .2)} Face 4865 4400 4151 11951 {rgb=(0 .2 .2)} Face 4866 4151 4183 11951 {rgb=(0 .2 .2)} Face 4867 4183 4409 11951 {rgb=(0 .2 .2)} Face 4868 4409 4400 11951 {rgb=(0 .2 .2)} Face 4869 4649 4596 11952 {rgb=(0 .2 .2)} Face 4870 4596 4552 11952 {rgb=(0 .2 .2)} Face 4871 4552 4581 11952 {rgb=(0 .2 .2)} Face 4872 4581 4649 11952 {rgb=(0 .2 .2)} Face 4873 4589 4470 11953 {rgb=(0 .2 .2)} Face 4874 4470 4571 11953 {rgb=(0 .2 .2)} Face 4875 4571 4691 11953 {rgb=(0 .2 .2)} Face 4876 4691 4589 11953 {rgb=(0 .2 .2)} Face 4877 4507 4571 11954 {rgb=(0 .2 .2)} Face 4878 4571 4188 11954 {rgb=(0 .2 .2)} Face 4879 4188 4160 11954 {rgb=(0 .2 .2)} Face 4880 4160 4507 11954 {rgb=(0 .2 .2)} Face 4881 4816 4498 11955 {rgb=(0 .2 .2)} Face 4882 4498 4169 11955 {rgb=(0 .2 .2)} Face 4883 4169 4447 11955 {rgb=(0 .2 .2)} Face 4884 4447 4816 11955 {rgb=(0 .2 .2)} Face 4885 5751 5290 11956 {rgb=(0 .2 .2)} Face 4886 5290 5191 11956 {rgb=(0 .2 .2)} Face 4887 5191 5854 11956 {rgb=(0 .2 .2)} Face 4888 5854 5751 11956 {rgb=(0 .2 .2)} Face 4889 5739 5301 11957 {rgb=(0 .2 .2)} Face 4890 5301 5295 11957 {rgb=(0 .2 .2)} Face 4891 5295 5745 11957 {rgb=(0 .2 .2)} Face 4892 5745 5739 11957 {rgb=(0 .2 .2)} Face 4893 5278 5295 11958 {rgb=(0 .2 .2)} Face 4894 5295 4842 11958 {rgb=(0 .2 .2)} Face 4895 4842 4766 11958 {rgb=(0 .2 .2)} Face 4896 4766 5278 11958 {rgb=(0 .2 .2)} Face 4897 4419 4842 11959 {rgb=(0 .2 .2)} Face 4898 4842 4870 11959 {rgb=(0 .2 .2)} Face 4899 4870 4452 11959 {rgb=(0 .2 .2)} Face 4900 4452 4419 11959 {rgb=(0 .2 .2)} Face 4901 4452 4433 11960 {rgb=(0 .2 .2)} Face 4902 4433 4192 11960 {rgb=(0 .2 .2)} Face 4903 4192 4197 11960 {rgb=(0 .2 .2)} Face 4904 4197 4452 11960 {rgb=(0 .2 .2)} Face 4905 4044 4192 11961 {rgb=(0 .2 .2)} Face 4906 4192 4260 11961 {rgb=(0 .2 .2)} Face 4907 4260 4111 11961 {rgb=(0 .2 .2)} Face 4908 4111 4044 11961 {rgb=(0 .2 .2)} Face 4909 4294 4260 11962 {rgb=(0 .2 .2)} Face 4910 4260 4464 11962 {rgb=(0 .2 .2)} Face 4911 4464 4506 11962 {rgb=(0 .2 .2)} Face 4912 4506 4294 11962 {rgb=(0 .2 .2)} Face 4913 4506 4881 11963 {rgb=(0 .2 .2)} Face 4914 4881 4812 11963 {rgb=(0 .2 .2)} Face 4915 4812 4421 11963 {rgb=(0 .2 .2)} Face 4916 4421 4506 11963 {rgb=(0 .2 .2)} Face 4917 4739 4812 11964 {rgb=(0 .2 .2)} Face 4918 4812 5285 11964 {rgb=(0 .2 .2)} Face 4919 5285 5271 11964 {rgb=(0 .2 .2)} Face 4920 5271 4739 11964 {rgb=(0 .2 .2)} Face 4921 5756 5285 11965 {rgb=(0 .2 .2)} Face 4922 5285 5303 11965 {rgb=(0 .2 .2)} Face 4923 5303 5736 11965 {rgb=(0 .2 .2)} Face 4924 5736 5756 11965 {rgb=(0 .2 .2)} Face 4925 5763 5278 11966 {rgb=(0 .2 .2)} Face 4926 5278 5253 11966 {rgb=(0 .2 .2)} Face 4927 5253 5793 11966 {rgb=(0 .2 .2)} Face 4928 5793 5763 11966 {rgb=(0 .2 .2)} Face 4929 5233 5253 11967 {rgb=(0 .2 .2)} Face 4930 5253 4674 11967 {rgb=(0 .2 .2)} Face 4931 4674 4627 11967 {rgb=(0 .2 .2)} Face 4932 4627 5233 11967 {rgb=(0 .2 .2)} Face 4933 4252 4674 11968 {rgb=(0 .2 .2)} Face 4934 4674 4766 11968 {rgb=(0 .2 .2)} Face 4935 4766 4327 11968 {rgb=(0 .2 .2)} Face 4936 4327 4252 11968 {rgb=(0 .2 .2)} Face 4937 4118 4044 11969 {rgb=(0 .2 .2)} Face 4938 4044 3975 11969 {rgb=(0 .2 .2)} Face 4939 3975 4041 11969 {rgb=(0 .2 .2)} Face 4940 4041 4118 11969 {rgb=(0 .2 .2)} Face 4941 3955 3975 11970 {rgb=(0 .2 .2)} Face 4942 3975 4034 11970 {rgb=(0 .2 .2)} Face 4943 4034 4009 11970 {rgb=(0 .2 .2)} Face 4944 4009 3955 11970 {rgb=(0 .2 .2)} Face 4945 4130 4034 11971 {rgb=(0 .2 .2)} Face 4946 4034 4111 11971 {rgb=(0 .2 .2)} Face 4947 4111 4216 11971 {rgb=(0 .2 .2)} Face 4948 4216 4130 11971 {rgb=(0 .2 .2)} Face 4949 4335 4739 11972 {rgb=(0 .2 .2)} Face 4950 4739 4647 11972 {rgb=(0 .2 .2)} Face 4951 4647 4278 11972 {rgb=(0 .2 .2)} Face 4952 4278 4335 11972 {rgb=(0 .2 .2)} Face 4953 4608 4647 11973 {rgb=(0 .2 .2)} Face 4954 4647 5238 11973 {rgb=(0 .2 .2)} Face 4955 5238 5228 11973 {rgb=(0 .2 .2)} Face 4956 5228 4608 11973 {rgb=(0 .2 .2)} Face 4957 5807 5238 11974 {rgb=(0 .2 .2)} Face 4958 5238 5271 11974 {rgb=(0 .2 .2)} Face 4959 5271 5771 11974 {rgb=(0 .2 .2)} Face 4960 5771 5807 11974 {rgb=(0 .2 .2)} Face 4961 5812 5233 11975 {rgb=(0 .2 .2)} Face 4962 5233 5244 11975 {rgb=(0 .2 .2)} Face 4963 5244 5802 11975 {rgb=(0 .2 .2)} Face 4964 5802 5812 11975 {rgb=(0 .2 .2)} Face 4965 5281 5244 11976 {rgb=(0 .2 .2)} Face 4966 5244 4661 11976 {rgb=(0 .2 .2)} Face 4967 4661 4785 11976 {rgb=(0 .2 .2)} Face 4968 4785 5281 11976 {rgb=(0 .2 .2)} Face 4969 4247 4661 11977 {rgb=(0 .2 .2)} Face 4970 4661 4627 11977 {rgb=(0 .2 .2)} Face 4971 4627 4225 11977 {rgb=(0 .2 .2)} Face 4972 4225 4247 11977 {rgb=(0 .2 .2)} Face 4973 4020 3955 11978 {rgb=(0 .2 .2)} Face 4974 3955 3973 11978 {rgb=(0 .2 .2)} Face 4975 3973 4047 11978 {rgb=(0 .2 .2)} Face 4976 4047 4020 11978 {rgb=(0 .2 .2)} Face 4977 4145 3973 11979 {rgb=(0 .2 .2)} Face 4978 3973 4017 11979 {rgb=(0 .2 .2)} Face 4979 4017 4176 11979 {rgb=(0 .2 .2)} Face 4980 4176 4145 11979 {rgb=(0 .2 .2)} Face 4981 4108 4017 11980 {rgb=(0 .2 .2)} Face 4982 4017 4009 11980 {rgb=(0 .2 .2)} Face 4983 4009 4099 11980 {rgb=(0 .2 .2)} Face 4984 4099 4108 11980 {rgb=(0 .2 .2)} Face 4985 4242 4608 11981 {rgb=(0 .2 .2)} Face 4986 4608 4653 11981 {rgb=(0 .2 .2)} Face 4987 4653 4273 11981 {rgb=(0 .2 .2)} Face 4988 4273 4242 11981 {rgb=(0 .2 .2)} Face 4989 4773 4653 11982 {rgb=(0 .2 .2)} Face 4990 4653 5240 11982 {rgb=(0 .2 .2)} Face 4991 5240 5280 11982 {rgb=(0 .2 .2)} Face 4992 5280 4773 11982 {rgb=(0 .2 .2)} Face 4993 5805 5240 11983 {rgb=(0 .2 .2)} Face 4994 5240 5228 11983 {rgb=(0 .2 .2)} Face 4995 5228 5817 11983 {rgb=(0 .2 .2)} Face 4996 5817 5805 11983 {rgb=(0 .2 .2)} Face 4997 5760 5281 11984 {rgb=(0 .2 .2)} Face 4998 5281 5348 11984 {rgb=(0 .2 .2)} Face 4999 5348 5689 11984 {rgb=(0 .2 .2)} Face 5000 5689 5760 11984 {rgb=(0 .2 .2)} Face 5001 4748 5008 11985 {rgb=(0 .2 .2)} Face 5002 5008 4785 11985 {rgb=(0 .2 .2)} Face 5003 4785 4380 11985 {rgb=(0 .2 .2)} Face 5004 4380 4748 11985 {rgb=(0 .2 .2)} Face 5005 4219 4145 11986 {rgb=(0 .2 .2)} Face 5006 4145 4492 11986 {rgb=(0 .2 .2)} Face 5007 4492 4575 11986 {rgb=(0 .2 .2)} Face 5008 4575 4219 11986 {rgb=(0 .2 .2)} Face 5009 4617 4524 11987 {rgb=(0 .2 .2)} Face 5010 4524 4176 11987 {rgb=(0 .2 .2)} Face 5011 4176 4270 11987 {rgb=(0 .2 .2)} Face 5012 4270 4617 11987 {rgb=(0 .2 .2)} Face 5013 4393 4773 11988 {rgb=(0 .2 .2)} Face 5014 4773 4997 11988 {rgb=(0 .2 .2)} Face 5015 4997 4744 11988 {rgb=(0 .2 .2)} Face 5016 4744 4393 11988 {rgb=(0 .2 .2)} Face 5017 5692 5341 11989 {rgb=(0 .2 .2)} Face 5018 5341 5280 11989 {rgb=(0 .2 .2)} Face 5019 5280 5761 11989 {rgb=(0 .2 .2)} Face 5020 5761 5692 11989 {rgb=(0 .2 .2)} Face 5021 4216 4294 11990 {rgb=(0 .2 .2)} Face 5022 4294 4421 11990 {rgb=(0 .2 .2)} Face 5023 4421 4335 11990 {rgb=(0 .2 .2)} Face 5024 4335 4216 11990 {rgb=(0 .2 .2)} Face 5025 4099 4130 11991 {rgb=(0 .2 .2)} Face 5026 4130 4278 11991 {rgb=(0 .2 .2)} Face 5027 4278 4242 11991 {rgb=(0 .2 .2)} Face 5028 4242 4099 11991 {rgb=(0 .2 .2)} Face 5029 4270 4108 11992 {rgb=(0 .2 .2)} Face 5030 4108 4273 11992 {rgb=(0 .2 .2)} Face 5031 4273 4393 11992 {rgb=(0 .2 .2)} Face 5032 4393 4270 11992 {rgb=(0 .2 .2)} Face 5033 4047 4219 11993 {rgb=(0 .2 .2)} Face 5034 4219 4380 11993 {rgb=(0 .2 .2)} Face 5035 4380 4247 11993 {rgb=(0 .2 .2)} Face 5036 4247 4047 11993 {rgb=(0 .2 .2)} Face 5037 4041 4020 11994 {rgb=(0 .2 .2)} Face 5038 4020 4225 11994 {rgb=(0 .2 .2)} Face 5039 4225 4252 11994 {rgb=(0 .2 .2)} Face 5040 4252 4041 11994 {rgb=(0 .2 .2)} Face 5041 4197 4118 11995 {rgb=(0 .2 .2)} Face 5042 4118 4327 11995 {rgb=(0 .2 .2)} Face 5043 4327 4419 11995 {rgb=(0 .2 .2)} Face 5044 4419 4197 11995 {rgb=(0 .2 .2)} Face 5045 4428 4589 11996 {rgb=(0 .2 .2)} Face 5046 4589 4472 11996 {rgb=(0 .2 .2)} Face 5047 4472 4354 11996 {rgb=(0 .2 .2)} Face 5048 4354 4428 11996 {rgb=(0 .2 .2)} Face 5049 4493 4472 11997 {rgb=(0 .2 .2)} Face 5050 4472 4691 11997 {rgb=(0 .2 .2)} Face 5051 4691 4710 11997 {rgb=(0 .2 .2)} Face 5052 4710 4493 11997 {rgb=(0 .2 .2)} Face 5053 4535 4891 11998 {rgb=(0 .2 .2)} Face 5054 4891 4749 11998 {rgb=(0 .2 .2)} Face 5055 4749 4359 11998 {rgb=(0 .2 .2)} Face 5056 4359 4535 11998 {rgb=(0 .2 .2)} Face 5057 4759 4749 11999 {rgb=(0 .2 .2)} Face 5058 4749 5274 11999 {rgb=(0 .2 .2)} Face 5059 5274 5277 11999 {rgb=(0 .2 .2)} Face 5060 5277 4759 11999 {rgb=(0 .2 .2)} Face 5061 5768 5274 12000 {rgb=(0 .2 .2)} Face 5062 5274 5307 12000 {rgb=(0 .2 .2)} Face 5063 5307 5730 12000 {rgb=(0 .2 .2)} Face 5064 5730 5768 12000 {rgb=(0 .2 .2)} Face 5065 5329 5307 12001 {rgb=(0 .2 .2)} Face 5066 5307 4891 12001 {rgb=(0 .2 .2)} Face 5067 4891 4961 12001 {rgb=(0 .2 .2)} Face 5068 4961 5329 12001 {rgb=(0 .2 .2)} Face 5069 4369 4759 12002 {rgb=(0 .2 .2)} Face 5070 4759 4916 12002 {rgb=(0 .2 .2)} Face 5071 4916 4580 12002 {rgb=(0 .2 .2)} Face 5072 4580 4369 12002 {rgb=(0 .2 .2)} Face 5073 4988 4916 12003 {rgb=(0 .2 .2)} Face 5074 4916 5316 12003 {rgb=(0 .2 .2)} Face 5075 5316 5335 12003 {rgb=(0 .2 .2)} Face 5076 5335 4988 12003 {rgb=(0 .2 .2)} Face 5077 5719 5316 12004 {rgb=(0 .2 .2)} Face 5078 5316 5277 12004 {rgb=(0 .2 .2)} Face 5079 5277 5764 12004 {rgb=(0 .2 .2)} Face 5080 5764 5719 12004 {rgb=(0 .2 .2)} Face 5081 4702 4988 12005 {rgb=(0 .2 .2)} Face 5082 4988 4989 12005 {rgb=(0 .2 .2)} Face 5083 4989 4704 12005 {rgb=(0 .2 .2)} Face 5084 4704 4702 12005 {rgb=(0 .2 .2)} Face 5085 4993 4989 12006 {rgb=(0 .2 .2)} Face 5086 4989 5336 12006 {rgb=(0 .2 .2)} Face 5087 5336 5339 12006 {rgb=(0 .2 .2)} Face 5088 5339 4993 12006 {rgb=(0 .2 .2)} Face 5089 5696 5336 12007 {rgb=(0 .2 .2)} Face 5090 5336 5335 12007 {rgb=(0 .2 .2)} Face 5091 5335 5697 12007 {rgb=(0 .2 .2)} Face 5092 5697 5696 12007 {rgb=(0 .2 .2)} Face 5093 5643 5407 12008 {rgb=(0 .2 .2)} Face 5094 5407 5408 12008 {rgb=(0 .2 .2)} Face 5095 5408 5644 12008 {rgb=(0 .2 .2)} Face 5096 5644 5643 12008 {rgb=(0 .2 .2)} Face 5097 5340 5408 12009 {rgb=(0 .2 .2)} Face 5098 5408 5022 12009 {rgb=(0 .2 .2)} Face 5099 5022 4995 12009 {rgb=(0 .2 .2)} Face 5100 4995 5340 12009 {rgb=(0 .2 .2)} Face 5101 5154 5143 12010 {rgb=(0 .2 .2)} Face 5102 5143 5356 12010 {rgb=(0 .2 .2)} Face 5103 5356 5406 12010 {rgb=(0 .2 .2)} Face 5104 5406 5154 12010 {rgb=(0 .2 .2)} Face 5105 5685 5356 12011 {rgb=(0 .2 .2)} Face 5106 5356 5351 12011 {rgb=(0 .2 .2)} Face 5107 5351 5688 12011 {rgb=(0 .2 .2)} Face 5108 5688 5685 12011 {rgb=(0 .2 .2)} Face 5109 5396 5351 12012 {rgb=(0 .2 .2)} Face 5110 5351 5127 12012 {rgb=(0 .2 .2)} Face 5111 5127 5121 12012 {rgb=(0 .2 .2)} Face 5112 5121 5396 12012 {rgb=(0 .2 .2)} Face 5113 4956 5127 12013 {rgb=(0 .2 .2)} Face 5114 5127 5046 12013 {rgb=(0 .2 .2)} Face 5115 5046 4911 12013 {rgb=(0 .2 .2)} Face 5116 4911 4956 12013 {rgb=(0 .2 .2)} Face 5117 4926 5046 12014 {rgb=(0 .2 .2)} Face 5118 5046 5143 12014 {rgb=(0 .2 .2)} Face 5119 5143 4985 12014 {rgb=(0 .2 .2)} Face 5120 4985 4926 12014 {rgb=(0 .2 .2)} Face 5121 4719 4649 12015 {rgb=(0 .2 .2)} Face 5122 4649 4483 12015 {rgb=(0 .2 .2)} Face 5123 4483 4517 12015 {rgb=(0 .2 .2)} Face 5124 4517 4719 12015 {rgb=(0 .2 .2)} Face 5125 4509 4483 12016 {rgb=(0 .2 .2)} Face 5126 4483 4466 12016 {rgb=(0 .2 .2)} Face 5127 4466 4510 12016 {rgb=(0 .2 .2)} Face 5128 4510 4509 12016 {rgb=(0 .2 .2)} Face 5129 4374 4466 12017 {rgb=(0 .2 .2)} Face 5130 4466 4581 12017 {rgb=(0 .2 .2)} Face 5131 4581 4436 12017 {rgb=(0 .2 .2)} Face 5132 4436 4374 12017 {rgb=(0 .2 .2)} Face 5133 4410 4374 12018 {rgb=(0 .2 .2)} Face 5134 4374 4232 12018 {rgb=(0 .2 .2)} Face 5135 4232 4259 12018 {rgb=(0 .2 .2)} Face 5136 4259 4410 12018 {rgb=(0 .2 .2)} Face 5137 4221 4232 12019 {rgb=(0 .2 .2)} Face 5138 4232 4291 12019 {rgb=(0 .2 .2)} Face 5139 4291 4290 12019 {rgb=(0 .2 .2)} Face 5140 4290 4221 12019 {rgb=(0 .2 .2)} Face 5141 4249 4221 12020 {rgb=(0 .2 .2)} Face 5142 4221 4354 12020 {rgb=(0 .2 .2)} Face 5143 4354 4389 12020 {rgb=(0 .2 .2)} Face 5144 4389 4249 12020 {rgb=(0 .2 .2)} Face 5145 4710 4977 12021 {rgb=(0 .2 .2)} Face 5146 4977 4961 12021 {rgb=(0 .2 .2)} Face 5147 4961 4688 12021 {rgb=(0 .2 .2)} Face 5148 4688 4710 12021 {rgb=(0 .2 .2)} Face 5149 4389 4493 12022 {rgb=(0 .2 .2)} Face 5150 4493 4688 12022 {rgb=(0 .2 .2)} Face 5151 4688 4535 12022 {rgb=(0 .2 .2)} Face 5152 4535 4389 12022 {rgb=(0 .2 .2)} Face 5153 4259 4249 12023 {rgb=(0 .2 .2)} Face 5154 4249 4359 12023 {rgb=(0 .2 .2)} Face 5155 4359 4369 12023 {rgb=(0 .2 .2)} Face 5156 4369 4259 12023 {rgb=(0 .2 .2)} Face 5157 4510 4410 12024 {rgb=(0 .2 .2)} Face 5158 4410 4580 12024 {rgb=(0 .2 .2)} Face 5159 4580 4702 12024 {rgb=(0 .2 .2)} Face 5160 4702 4510 12024 {rgb=(0 .2 .2)} Face 5161 4515 4509 12025 {rgb=(0 .2 .2)} Face 5162 4509 4704 12025 {rgb=(0 .2 .2)} Face 5163 4704 4714 12025 {rgb=(0 .2 .2)} Face 5164 4714 4515 12025 {rgb=(0 .2 .2)} Face 5165 5693 5340 12026 {rgb=(0 .2 .2)} Face 5166 5340 5371 12026 {rgb=(0 .2 .2)} Face 5167 5371 5675 12026 {rgb=(0 .2 .2)} Face 5168 5675 5693 12026 {rgb=(0 .2 .2)} Face 5169 5395 5371 12027 {rgb=(0 .2 .2)} Face 5170 5371 5073 12027 {rgb=(0 .2 .2)} Face 5171 5073 5117 12027 {rgb=(0 .2 .2)} Face 5172 5117 5395 12027 {rgb=(0 .2 .2)} Face 5173 4806 5073 12028 {rgb=(0 .2 .2)} Face 5174 5073 4995 12028 {rgb=(0 .2 .2)} Face 5175 4995 4719 12028 {rgb=(0 .2 .2)} Face 5176 4719 4806 12028 {rgb=(0 .2 .2)} Face 5177 4880 4806 12029 {rgb=(0 .2 .2)} Face 5178 4806 4554 12029 {rgb=(0 .2 .2)} Face 5179 4554 4642 12029 {rgb=(0 .2 .2)} Face 5180 4642 4880 12029 {rgb=(0 .2 .2)} Face 5181 4520 4554 12030 {rgb=(0 .2 .2)} Face 5182 4554 4517 12030 {rgb=(0 .2 .2)} Face 5183 4517 4515 12030 {rgb=(0 .2 .2)} Face 5184 4515 4520 12030 {rgb=(0 .2 .2)} Face 5185 4588 4520 12031 {rgb=(0 .2 .2)} Face 5186 4520 4725 12031 {rgb=(0 .2 .2)} Face 5187 4725 4760 12031 {rgb=(0 .2 .2)} Face 5188 4760 4588 12031 {rgb=(0 .2 .2)} Face 5189 4999 4725 12032 {rgb=(0 .2 .2)} Face 5190 4725 4714 12032 {rgb=(0 .2 .2)} Face 5191 4714 4993 12032 {rgb=(0 .2 .2)} Face 5192 4993 4999 12032 {rgb=(0 .2 .2)} Face 5193 5015 4999 12033 {rgb=(0 .2 .2)} Face 5194 4999 5342 12033 {rgb=(0 .2 .2)} Face 5195 5342 5352 12033 {rgb=(0 .2 .2)} Face 5196 5352 5015 12033 {rgb=(0 .2 .2)} Face 5197 5691 5342 12034 {rgb=(0 .2 .2)} Face 5198 5342 5339 12034 {rgb=(0 .2 .2)} Face 5199 5339 5694 12034 {rgb=(0 .2 .2)} Face 5200 5694 5691 12034 {rgb=(0 .2 .2)} Face 5201 5657 5395 12035 {rgb=(0 .2 .2)} Face 5202 5395 5399 12035 {rgb=(0 .2 .2)} Face 5203 5399 5652 12035 {rgb=(0 .2 .2)} Face 5204 5652 5657 12035 {rgb=(0 .2 .2)} Face 5205 5400 5399 12036 {rgb=(0 .2 .2)} Face 5206 5399 5131 12036 {rgb=(0 .2 .2)} Face 5207 5131 5145 12036 {rgb=(0 .2 .2)} Face 5208 5145 5400 12036 {rgb=(0 .2 .2)} Face 5209 4913 5131 12037 {rgb=(0 .2 .2)} Face 5210 5131 5117 12037 {rgb=(0 .2 .2)} Face 5211 5117 4880 12037 {rgb=(0 .2 .2)} Face 5212 4880 4913 12037 {rgb=(0 .2 .2)} Face 5213 4949 4913 12038 {rgb=(0 .2 .2)} Face 5214 4913 4745 12038 {rgb=(0 .2 .2)} Face 5215 4745 4850 12038 {rgb=(0 .2 .2)} Face 5216 4850 4949 12038 {rgb=(0 .2 .2)} Face 5217 4716 4745 12039 {rgb=(0 .2 .2)} Face 5218 4745 4642 12039 {rgb=(0 .2 .2)} Face 5219 4642 4588 12039 {rgb=(0 .2 .2)} Face 5220 4588 4716 12039 {rgb=(0 .2 .2)} Face 5221 4827 4716 12040 {rgb=(0 .2 .2)} Face 5222 4716 4843 12040 {rgb=(0 .2 .2)} Face 5223 4843 4899 12040 {rgb=(0 .2 .2)} Face 5224 4899 4827 12040 {rgb=(0 .2 .2)} Face 5225 5054 4843 12041 {rgb=(0 .2 .2)} Face 5226 4843 4760 12041 {rgb=(0 .2 .2)} Face 5227 4760 5015 12041 {rgb=(0 .2 .2)} Face 5228 5015 5054 12041 {rgb=(0 .2 .2)} Face 5229 5088 5054 12042 {rgb=(0 .2 .2)} Face 5230 5054 5369 12042 {rgb=(0 .2 .2)} Face 5231 5369 5380 12042 {rgb=(0 .2 .2)} Face 5232 5380 5088 12042 {rgb=(0 .2 .2)} Face 5233 5677 5369 12043 {rgb=(0 .2 .2)} Face 5234 5369 5352 12043 {rgb=(0 .2 .2)} Face 5235 5352 5687 12043 {rgb=(0 .2 .2)} Face 5236 5687 5677 12043 {rgb=(0 .2 .2)} Face 5237 5650 5400 12044 {rgb=(0 .2 .2)} Face 5238 5400 5406 12044 {rgb=(0 .2 .2)} Face 5239 5406 5645 12044 {rgb=(0 .2 .2)} Face 5240 5645 5650 12044 {rgb=(0 .2 .2)} Face 5241 4985 5154 12045 {rgb=(0 .2 .2)} Face 5242 5154 5145 12045 {rgb=(0 .2 .2)} Face 5243 5145 4949 12045 {rgb=(0 .2 .2)} Face 5244 4949 4985 12045 {rgb=(0 .2 .2)} Face 5245 4911 4926 12046 {rgb=(0 .2 .2)} Face 5246 4926 4850 12046 {rgb=(0 .2 .2)} Face 5247 4850 4827 12046 {rgb=(0 .2 .2)} Face 5248 4827 4911 12046 {rgb=(0 .2 .2)} Face 5249 5121 4956 12047 {rgb=(0 .2 .2)} Face 5250 4956 4899 12047 {rgb=(0 .2 .2)} Face 5251 4899 5088 12047 {rgb=(0 .2 .2)} Face 5252 5088 5121 12047 {rgb=(0 .2 .2)} Face 5253 5656 5396 12048 {rgb=(0 .2 .2)} Face 5254 5396 5380 12048 {rgb=(0 .2 .2)} Face 5255 5380 5669 12048 {rgb=(0 .2 .2)} Face 5256 5669 5656 12048 {rgb=(0 .2 .2)} Face 5257 7158 7326 12049 {rgb=(0 .2 .2)} Face 5258 7326 7014 12049 {rgb=(0 .2 .2)} Face 5259 7014 6809 12049 {rgb=(0 .2 .2)} Face 5260 6809 7158 12049 {rgb=(0 .2 .2)} Face 5261 6317 6260 12050 {rgb=(0 .2 .2)} Face 5262 6260 5755 12050 {rgb=(0 .2 .2)} Face 5263 5755 5776 12050 {rgb=(0 .2 .2)} Face 5264 5776 6317 12050 {rgb=(0 .2 .2)} Face 5265 6412 6892 12051 {rgb=(0 .2 .2)} Face 5266 6892 6865 12051 {rgb=(0 .2 .2)} Face 5267 6865 6365 12051 {rgb=(0 .2 .2)} Face 5268 6365 6412 12051 {rgb=(0 .2 .2)} Face 5269 6845 6865 12052 {rgb=(0 .2 .2)} Face 5270 6865 7205 12052 {rgb=(0 .2 .2)} Face 5271 7205 7188 12052 {rgb=(0 .2 .2)} Face 5272 7188 6845 12052 {rgb=(0 .2 .2)} Face 5273 7540 7205 12053 {rgb=(0 .2 .2)} Face 5274 7205 7208 12053 {rgb=(0 .2 .2)} Face 5275 7208 7552 12053 {rgb=(0 .2 .2)} Face 5276 7552 7540 12053 {rgb=(0 .2 .2)} Face 5277 7228 7208 12054 {rgb=(0 .2 .2)} Face 5278 7208 6892 12054 {rgb=(0 .2 .2)} Face 5279 6892 6905 12054 {rgb=(0 .2 .2)} Face 5280 6905 7228 12054 {rgb=(0 .2 .2)} Face 5281 5778 5789 12055 {rgb=(0 .2 .2)} Face 5282 5789 6365 12055 {rgb=(0 .2 .2)} Face 5283 6365 6346 12055 {rgb=(0 .2 .2)} Face 5284 6346 5778 12055 {rgb=(0 .2 .2)} Face 5285 6496 6412 12056 {rgb=(0 .2 .2)} Face 5286 6412 5809 12056 {rgb=(0 .2 .2)} Face 5287 5809 5944 12056 {rgb=(0 .2 .2)} Face 5288 5944 6496 12056 {rgb=(0 .2 .2)} Face 5289 6607 6909 12057 {rgb=(0 .2 .2)} Face 5290 6909 6905 12057 {rgb=(0 .2 .2)} Face 5291 6905 6496 12057 {rgb=(0 .2 .2)} Face 5292 6496 6607 12057 {rgb=(0 .2 .2)} Face 5293 7577 7228 12058 {rgb=(0 .2 .2)} Face 5294 7228 7273 12058 {rgb=(0 .2 .2)} Face 5295 7273 7616 12058 {rgb=(0 .2 .2)} Face 5296 7616 7577 12058 {rgb=(0 .2 .2)} Face 5297 7244 7273 12059 {rgb=(0 .2 .2)} Face 5298 7273 6909 12059 {rgb=(0 .2 .2)} Face 5299 6909 6895 12059 {rgb=(0 .2 .2)} Face 5300 6895 7244 12059 {rgb=(0 .2 .2)} Face 5301 6018 6245 12060 {rgb=(0 .2 .2)} Face 5302 6245 5944 12060 {rgb=(0 .2 .2)} Face 5303 5944 5643 12060 {rgb=(0 .2 .2)} Face 5304 5643 6018 12060 {rgb=(0 .2 .2)} Face 5305 6640 6607 12061 {rgb=(0 .2 .2)} Face 5306 6607 6245 12061 {rgb=(0 .2 .2)} Face 5307 6245 6450 12061 {rgb=(0 .2 .2)} Face 5308 6450 6640 12061 {rgb=(0 .2 .2)} Face 5309 6796 7020 12062 {rgb=(0 .2 .2)} Face 5310 7020 6914 12062 {rgb=(0 .2 .2)} Face 5311 6914 6695 12062 {rgb=(0 .2 .2)} Face 5312 6695 6796 12062 {rgb=(0 .2 .2)} Face 5313 6863 6914 12063 {rgb=(0 .2 .2)} Face 5314 6914 7286 12063 {rgb=(0 .2 .2)} Face 5315 7286 7190 12063 {rgb=(0 .2 .2)} Face 5316 7190 6863 12063 {rgb=(0 .2 .2)} Face 5317 7618 7286 12064 {rgb=(0 .2 .2)} Face 5318 7286 7438 12064 {rgb=(0 .2 .2)} Face 5319 7438 7789 12064 {rgb=(0 .2 .2)} Face 5320 7789 7618 12064 {rgb=(0 .2 .2)} Face 5321 7574 7438 12065 {rgb=(0 .2 .2)} Face 5322 7438 7020 12065 {rgb=(0 .2 .2)} Face 5323 7020 7128 12065 {rgb=(0 .2 .2)} Face 5324 7128 7574 12065 {rgb=(0 .2 .2)} Face 5325 6751 6749 12066 {rgb=(0 .2 .2)} Face 5326 6749 6611 12066 {rgb=(0 .2 .2)} Face 5327 6611 6602 12066 {rgb=(0 .2 .2)} Face 5328 6602 6751 12066 {rgb=(0 .2 .2)} Face 5329 6492 6611 12067 {rgb=(0 .2 .2)} Face 5330 6611 6695 12067 {rgb=(0 .2 .2)} Face 5331 6695 6629 12067 {rgb=(0 .2 .2)} Face 5332 6629 6492 12067 {rgb=(0 .2 .2)} Face 5333 6876 6796 12068 {rgb=(0 .2 .2)} Face 5334 6796 6749 12068 {rgb=(0 .2 .2)} Face 5335 6749 6759 12068 {rgb=(0 .2 .2)} Face 5336 6759 6876 12068 {rgb=(0 .2 .2)} Face 5337 6908 7239 12069 {rgb=(0 .2 .2)} Face 5338 7239 7128 12069 {rgb=(0 .2 .2)} Face 5339 7128 6876 12069 {rgb=(0 .2 .2)} Face 5340 6876 6908 12069 {rgb=(0 .2 .2)} Face 5341 7963 7574 12070 {rgb=(0 .2 .2)} Face 5342 7574 7715 12070 {rgb=(0 .2 .2)} Face 5343 7715 8179 12070 {rgb=(0 .2 .2)} Face 5344 8179 7963 12070 {rgb=(0 .2 .2)} Face 5345 7870 7715 12071 {rgb=(0 .2 .2)} Face 5346 7715 7239 12071 {rgb=(0 .2 .2)} Face 5347 7239 7371 12071 {rgb=(0 .2 .2)} Face 5348 7371 7870 12071 {rgb=(0 .2 .2)} Face 5349 6610 6693 12072 {rgb=(0 .2 .2)} Face 5350 6693 6759 12072 {rgb=(0 .2 .2)} Face 5351 6759 6752 12072 {rgb=(0 .2 .2)} Face 5352 6752 6610 12072 {rgb=(0 .2 .2)} Face 5353 6856 6908 12073 {rgb=(0 .2 .2)} Face 5354 6908 6693 12073 {rgb=(0 .2 .2)} Face 5355 6693 6570 12073 {rgb=(0 .2 .2)} Face 5356 6570 6856 12073 {rgb=(0 .2 .2)} Face 5357 7211 7503 12074 {rgb=(0 .2 .2)} Face 5358 7503 7371 12074 {rgb=(0 .2 .2)} Face 5359 7371 7082 12074 {rgb=(0 .2 .2)} Face 5360 7082 7211 12074 {rgb=(0 .2 .2)} Face 5361 8343 7870 12075 {rgb=(0 .2 .2)} Face 5362 7870 8090 12075 {rgb=(0 .2 .2)} Face 5363 8090 8504 12075 {rgb=(0 .2 .2)} Face 5364 8504 8343 12075 {rgb=(0 .2 .2)} Face 5365 8166 8090 12076 {rgb=(0 .2 .2)} Face 5366 8090 7503 12076 {rgb=(0 .2 .2)} Face 5367 7503 7551 12076 {rgb=(0 .2 .2)} Face 5368 7551 8166 12076 {rgb=(0 .2 .2)} Face 5369 7201 7211 12077 {rgb=(0 .2 .2)} Face 5370 7211 7068 12077 {rgb=(0 .2 .2)} Face 5371 7068 7063 12077 {rgb=(0 .2 .2)} Face 5372 7063 7201 12077 {rgb=(0 .2 .2)} Face 5373 6877 7068 12078 {rgb=(0 .2 .2)} Face 5374 7068 7082 12078 {rgb=(0 .2 .2)} Face 5375 7082 6886 12078 {rgb=(0 .2 .2)} Face 5376 6886 6877 12078 {rgb=(0 .2 .2)} Face 5377 6043 5989 12079 {rgb=(0 .2 .2)} Face 5378 5989 5750 12079 {rgb=(0 .2 .2)} Face 5379 5750 5692 12079 {rgb=(0 .2 .2)} Face 5380 5692 6043 12079 {rgb=(0 .2 .2)} Face 5381 5689 5748 12080 {rgb=(0 .2 .2)} Face 5382 5748 5979 12080 {rgb=(0 .2 .2)} Face 5383 5979 6032 12080 {rgb=(0 .2 .2)} Face 5384 6032 5689 12080 {rgb=(0 .2 .2)} Face 5385 6298 5979 12081 {rgb=(0 .2 .2)} Face 5386 5979 6114 12081 {rgb=(0 .2 .2)} Face 5387 6114 6470 12081 {rgb=(0 .2 .2)} Face 5388 6470 6298 12081 {rgb=(0 .2 .2)} Face 5389 6548 6114 12082 {rgb=(0 .2 .2)} Face 5390 6114 6109 12082 {rgb=(0 .2 .2)} Face 5391 6109 6519 12082 {rgb=(0 .2 .2)} Face 5392 6519 6548 12082 {rgb=(0 .2 .2)} Face 5393 6429 6109 12083 {rgb=(0 .2 .2)} Face 5394 6109 5989 12083 {rgb=(0 .2 .2)} Face 5395 5989 6303 12083 {rgb=(0 .2 .2)} Face 5396 6303 6429 12083 {rgb=(0 .2 .2)} Face 5397 9073 9158 12084 {rgb=(0 .2 .2)} Face 5398 9158 9150 12084 {rgb=(0 .2 .2)} Face 5399 9150 9059 12084 {rgb=(0 .2 .2)} Face 5400 9059 9073 12084 {rgb=(0 .2 .2)} Face 5401 9127 9150 12085 {rgb=(0 .2 .2)} Face 5402 9150 9099 12085 {rgb=(0 .2 .2)} Face 5403 9099 9063 12085 {rgb=(0 .2 .2)} Face 5404 9063 9127 12085 {rgb=(0 .2 .2)} Face 5405 8964 9099 12086 {rgb=(0 .2 .2)} Face 5406 9099 9158 12086 {rgb=(0 .2 .2)} Face 5407 9158 9013 12086 {rgb=(0 .2 .2)} Face 5408 9013 8964 12086 {rgb=(0 .2 .2)} Face 5409 8246 8144 12087 {rgb=(0 .2 .2)} Face 5410 8144 7945 12087 {rgb=(0 .2 .2)} Face 5411 7945 7940 12087 {rgb=(0 .2 .2)} Face 5412 7940 8246 12087 {rgb=(0 .2 .2)} Face 5413 7712 7945 12088 {rgb=(0 .2 .2)} Face 5414 7945 7966 12088 {rgb=(0 .2 .2)} Face 5415 7966 7848 12088 {rgb=(0 .2 .2)} Face 5416 7848 7712 12088 {rgb=(0 .2 .2)} Face 5417 7901 8220 12089 {rgb=(0 .2 .2)} Face 5418 8220 8129 12089 {rgb=(0 .2 .2)} Face 5419 8129 7844 12089 {rgb=(0 .2 .2)} Face 5420 7844 7901 12089 {rgb=(0 .2 .2)} Face 5421 8008 8129 12090 {rgb=(0 .2 .2)} Face 5422 8129 8281 12090 {rgb=(0 .2 .2)} Face 5423 8281 8211 12090 {rgb=(0 .2 .2)} Face 5424 8211 8008 12090 {rgb=(0 .2 .2)} Face 5425 8339 8281 12091 {rgb=(0 .2 .2)} Face 5426 8281 8388 12091 {rgb=(0 .2 .2)} Face 5427 8388 8441 12091 {rgb=(0 .2 .2)} Face 5428 8441 8339 12091 {rgb=(0 .2 .2)} Face 5429 8457 8388 12092 {rgb=(0 .2 .2)} Face 5430 8388 8220 12092 {rgb=(0 .2 .2)} Face 5431 8220 8290 12092 {rgb=(0 .2 .2)} Face 5432 8290 8457 12092 {rgb=(0 .2 .2)} Face 5433 8022 8349 12093 {rgb=(0 .2 .2)} Face 5434 8349 8290 12093 {rgb=(0 .2 .2)} Face 5435 8290 7955 12093 {rgb=(0 .2 .2)} Face 5436 7955 8022 12093 {rgb=(0 .2 .2)} Face 5437 8529 8457 12094 {rgb=(0 .2 .2)} Face 5438 8457 8520 12094 {rgb=(0 .2 .2)} Face 5439 8520 8602 12094 {rgb=(0 .2 .2)} Face 5440 8602 8529 12094 {rgb=(0 .2 .2)} Face 5441 8522 8520 12095 {rgb=(0 .2 .2)} Face 5442 8520 8349 12095 {rgb=(0 .2 .2)} Face 5443 8349 8346 12095 {rgb=(0 .2 .2)} Face 5444 8346 8522 12095 {rgb=(0 .2 .2)} Face 5445 8157 8409 12096 {rgb=(0 .2 .2)} Face 5446 8409 8302 12096 {rgb=(0 .2 .2)} Face 5447 8302 7972 12096 {rgb=(0 .2 .2)} Face 5448 7972 8157 12096 {rgb=(0 .2 .2)} Face 5449 8278 8302 12097 {rgb=(0 .2 .2)} Face 5450 8302 8495 12097 {rgb=(0 .2 .2)} Face 5451 8495 8459 12097 {rgb=(0 .2 .2)} Face 5452 8459 8278 12097 {rgb=(0 .2 .2)} Face 5453 8539 8495 12098 {rgb=(0 .2 .2)} Face 5454 8495 8634 12098 {rgb=(0 .2 .2)} Face 5455 8634 8704 12098 {rgb=(0 .2 .2)} Face 5456 8704 8539 12098 {rgb=(0 .2 .2)} Face 5457 8821 8634 12099 {rgb=(0 .2 .2)} Face 5458 8634 8409 12099 {rgb=(0 .2 .2)} Face 5459 8409 8541 12099 {rgb=(0 .2 .2)} Face 5460 8541 8821 12099 {rgb=(0 .2 .2)} Face 5461 8486 8799 12100 {rgb=(0 .2 .2)} Face 5462 8799 8541 12100 {rgb=(0 .2 .2)} Face 5463 8541 8308 12100 {rgb=(0 .2 .2)} Face 5464 8308 8486 12100 {rgb=(0 .2 .2)} Face 5465 8870 8821 12101 {rgb=(0 .2 .2)} Face 5466 8821 8977 12101 {rgb=(0 .2 .2)} Face 5467 8977 8971 12101 {rgb=(0 .2 .2)} Face 5468 8971 8870 12101 {rgb=(0 .2 .2)} Face 5469 9092 8977 12102 {rgb=(0 .2 .2)} Face 5470 8977 8799 12102 {rgb=(0 .2 .2)} Face 5471 8799 8988 12102 {rgb=(0 .2 .2)} Face 5472 8988 9092 12102 {rgb=(0 .2 .2)} Face 5473 8914 9134 12103 {rgb=(0 .2 .2)} Face 5474 9134 8988 12103 {rgb=(0 .2 .2)} Face 5475 8988 8687 12103 {rgb=(0 .2 .2)} Face 5476 8687 8914 12103 {rgb=(0 .2 .2)} Face 5477 9029 9092 12104 {rgb=(0 .2 .2)} Face 5478 9092 9167 12104 {rgb=(0 .2 .2)} Face 5479 9167 9088 12104 {rgb=(0 .2 .2)} Face 5480 9088 9029 12104 {rgb=(0 .2 .2)} Face 5481 9216 9167 12105 {rgb=(0 .2 .2)} Face 5482 9167 9134 12105 {rgb=(0 .2 .2)} Face 5483 9134 9211 12105 {rgb=(0 .2 .2)} Face 5484 9211 9216 12105 {rgb=(0 .2 .2)} Face 5485 9147 9234 12106 {rgb=(0 .2 .2)} Face 5486 9234 9211 12106 {rgb=(0 .2 .2)} Face 5487 9211 9126 12106 {rgb=(0 .2 .2)} Face 5488 9126 9147 12106 {rgb=(0 .2 .2)} Face 5489 9117 9216 12107 {rgb=(0 .2 .2)} Face 5490 9216 9228 12107 {rgb=(0 .2 .2)} Face 5491 9228 9122 12107 {rgb=(0 .2 .2)} Face 5492 9122 9117 12107 {rgb=(0 .2 .2)} Face 5493 9227 9228 12108 {rgb=(0 .2 .2)} Face 5494 9228 9234 12108 {rgb=(0 .2 .2)} Face 5495 9234 9251 12108 {rgb=(0 .2 .2)} Face 5496 9251 9227 12108 {rgb=(0 .2 .2)} Face 5497 9213 9261 12109 {rgb=(0 .2 .2)} Face 5498 9261 9251 12109 {rgb=(0 .2 .2)} Face 5499 9251 9175 12109 {rgb=(0 .2 .2)} Face 5500 9175 9213 12109 {rgb=(0 .2 .2)} Face 5501 9108 9227 12110 {rgb=(0 .2 .2)} Face 5502 9227 9214 12110 {rgb=(0 .2 .2)} Face 5503 9214 9072 12110 {rgb=(0 .2 .2)} Face 5504 9072 9108 12110 {rgb=(0 .2 .2)} Face 5505 9186 9214 12111 {rgb=(0 .2 .2)} Face 5506 9214 9261 12111 {rgb=(0 .2 .2)} Face 5507 9261 9245 12111 {rgb=(0 .2 .2)} Face 5508 9245 9186 12111 {rgb=(0 .2 .2)} Face 5509 7719 7712 12112 {rgb=(0 .2 .2)} Face 5510 7712 7569 12112 {rgb=(0 .2 .2)} Face 5511 7569 7471 12112 {rgb=(0 .2 .2)} Face 5512 7471 7719 12112 {rgb=(0 .2 .2)} Face 5513 7510 7540 12113 {rgb=(0 .2 .2)} Face 5514 7540 7844 12113 {rgb=(0 .2 .2)} Face 5515 7844 7786 12113 {rgb=(0 .2 .2)} Face 5516 7786 7510 12113 {rgb=(0 .2 .2)} Face 5517 7955 7901 12114 {rgb=(0 .2 .2)} Face 5518 7901 7552 12114 {rgb=(0 .2 .2)} Face 5519 7552 7577 12114 {rgb=(0 .2 .2)} Face 5520 7577 7955 12114 {rgb=(0 .2 .2)} Face 5521 8016 8022 12115 {rgb=(0 .2 .2)} Face 5522 8022 7616 12115 {rgb=(0 .2 .2)} Face 5523 7616 7612 12115 {rgb=(0 .2 .2)} Face 5524 7612 8016 12115 {rgb=(0 .2 .2)} Face 5525 7554 7618 12116 {rgb=(0 .2 .2)} Face 5526 7618 7972 12116 {rgb=(0 .2 .2)} Face 5527 7972 7941 12116 {rgb=(0 .2 .2)} Face 5528 7941 7554 12116 {rgb=(0 .2 .2)} Face 5529 8308 8157 12117 {rgb=(0 .2 .2)} Face 5530 8157 7789 12117 {rgb=(0 .2 .2)} Face 5531 7789 7963 12117 {rgb=(0 .2 .2)} Face 5532 7963 8308 12117 {rgb=(0 .2 .2)} Face 5533 8687 8486 12118 {rgb=(0 .2 .2)} Face 5534 8486 8179 12118 {rgb=(0 .2 .2)} Face 5535 8179 8343 12118 {rgb=(0 .2 .2)} Face 5536 8343 8687 12118 {rgb=(0 .2 .2)} Face 5537 8933 8914 12119 {rgb=(0 .2 .2)} Face 5538 8914 8504 12119 {rgb=(0 .2 .2)} Face 5539 8504 8556 12119 {rgb=(0 .2 .2)} Face 5540 8556 8933 12119 {rgb=(0 .2 .2)} Face 5541 9038 9186 12120 {rgb=(0 .2 .2)} Face 5542 9186 9148 12120 {rgb=(0 .2 .2)} Face 5543 9148 9017 12120 {rgb=(0 .2 .2)} Face 5544 9017 9038 12120 {rgb=(0 .2 .2)} Face 5545 9128 9148 12121 {rgb=(0 .2 .2)} Face 5546 9148 9179 12121 {rgb=(0 .2 .2)} Face 5547 9179 9157 12121 {rgb=(0 .2 .2)} Face 5548 9157 9128 12121 {rgb=(0 .2 .2)} Face 5549 9097 9179 12122 {rgb=(0 .2 .2)} Face 5550 9179 9245 12122 {rgb=(0 .2 .2)} Face 5551 9245 9181 12122 {rgb=(0 .2 .2)} Face 5552 9181 9097 12122 {rgb=(0 .2 .2)} Face 5553 8995 9128 12123 {rgb=(0 .2 .2)} Face 5554 9128 9115 12123 {rgb=(0 .2 .2)} Face 5555 9115 8974 12123 {rgb=(0 .2 .2)} Face 5556 8974 8995 12123 {rgb=(0 .2 .2)} Face 5557 9111 9115 12124 {rgb=(0 .2 .2)} Face 5558 9115 9184 12124 {rgb=(0 .2 .2)} Face 5559 9184 9204 12124 {rgb=(0 .2 .2)} Face 5560 9204 9111 12124 {rgb=(0 .2 .2)} Face 5561 9116 9184 12125 {rgb=(0 .2 .2)} Face 5562 9184 9157 12125 {rgb=(0 .2 .2)} Face 5563 9157 9061 12125 {rgb=(0 .2 .2)} Face 5564 9061 9116 12125 {rgb=(0 .2 .2)} Face 5565 8956 9111 12126 {rgb=(0 .2 .2)} Face 5566 9111 9110 12126 {rgb=(0 .2 .2)} Face 5567 9110 8947 12126 {rgb=(0 .2 .2)} Face 5568 8947 8956 12126 {rgb=(0 .2 .2)} Face 5569 9106 9110 12127 {rgb=(0 .2 .2)} Face 5570 9110 9221 12127 {rgb=(0 .2 .2)} Face 5571 9221 9202 12127 {rgb=(0 .2 .2)} Face 5572 9202 9106 12127 {rgb=(0 .2 .2)} Face 5573 9171 9221 12128 {rgb=(0 .2 .2)} Face 5574 9221 9204 12128 {rgb=(0 .2 .2)} Face 5575 9204 9146 12128 {rgb=(0 .2 .2)} Face 5576 9146 9171 12128 {rgb=(0 .2 .2)} Face 5577 9057 9096 12129 {rgb=(0 .2 .2)} Face 5578 9096 9054 12129 {rgb=(0 .2 .2)} Face 5579 9054 9043 12129 {rgb=(0 .2 .2)} Face 5580 9043 9057 12129 {rgb=(0 .2 .2)} Face 5581 8943 9054 12130 {rgb=(0 .2 .2)} Face 5582 9054 9063 12130 {rgb=(0 .2 .2)} Face 5583 9063 8949 12130 {rgb=(0 .2 .2)} Face 5584 8949 8943 12130 {rgb=(0 .2 .2)} Face 5585 9027 9127 12131 {rgb=(0 .2 .2)} Face 5586 9127 9096 12131 {rgb=(0 .2 .2)} Face 5587 9096 8996 12131 {rgb=(0 .2 .2)} Face 5588 8996 9027 12131 {rgb=(0 .2 .2)} Face 5589 9047 9024 12132 {rgb=(0 .2 .2)} Face 5590 9024 9040 12132 {rgb=(0 .2 .2)} Face 5591 9040 9048 12132 {rgb=(0 .2 .2)} Face 5592 9048 9047 12132 {rgb=(0 .2 .2)} Face 5593 8955 9040 12133 {rgb=(0 .2 .2)} Face 5594 9040 9043 12133 {rgb=(0 .2 .2)} Face 5595 9043 8945 12133 {rgb=(0 .2 .2)} Face 5596 8945 8955 12133 {rgb=(0 .2 .2)} Face 5597 8973 9057 12134 {rgb=(0 .2 .2)} Face 5598 9057 9024 12134 {rgb=(0 .2 .2)} Face 5599 9024 8941 12134 {rgb=(0 .2 .2)} Face 5600 8941 8973 12134 {rgb=(0 .2 .2)} Face 5601 8944 9106 12135 {rgb=(0 .2 .2)} Face 5602 9106 9093 12135 {rgb=(0 .2 .2)} Face 5603 9093 8950 12135 {rgb=(0 .2 .2)} Face 5604 8950 8944 12135 {rgb=(0 .2 .2)} Face 5605 9068 9093 12136 {rgb=(0 .2 .2)} Face 5606 9093 9166 12136 {rgb=(0 .2 .2)} Face 5607 9166 9125 12136 {rgb=(0 .2 .2)} Face 5608 9125 9068 12136 {rgb=(0 .2 .2)} Face 5609 9112 9166 12137 {rgb=(0 .2 .2)} Face 5610 9166 9202 12137 {rgb=(0 .2 .2)} Face 5611 9202 9156 12137 {rgb=(0 .2 .2)} Face 5612 9156 9112 12137 {rgb=(0 .2 .2)} Face 5613 8953 9068 12138 {rgb=(0 .2 .2)} Face 5614 9068 9048 12138 {rgb=(0 .2 .2)} Face 5615 9048 8957 12138 {rgb=(0 .2 .2)} Face 5616 8957 8953 12138 {rgb=(0 .2 .2)} Face 5617 8960 9047 12139 {rgb=(0 .2 .2)} Face 5618 9047 9125 12139 {rgb=(0 .2 .2)} Face 5619 9125 9023 12139 {rgb=(0 .2 .2)} Face 5620 9023 8960 12139 {rgb=(0 .2 .2)} Face 5621 8407 8356 12140 {rgb=(0 .2 .2)} Face 5622 8356 8263 12140 {rgb=(0 .2 .2)} Face 5623 8263 8352 12140 {rgb=(0 .2 .2)} Face 5624 8352 8407 12140 {rgb=(0 .2 .2)} Face 5625 8282 8248 12141 {rgb=(0 .2 .2)} Face 5626 8248 8356 12141 {rgb=(0 .2 .2)} Face 5627 8356 8403 12141 {rgb=(0 .2 .2)} Face 5628 8403 8282 12141 {rgb=(0 .2 .2)} Face 5629 8536 8443 12142 {rgb=(0 .2 .2)} Face 5630 8443 8403 12142 {rgb=(0 .2 .2)} Face 5631 8403 8482 12142 {rgb=(0 .2 .2)} Face 5632 8482 8536 12142 {rgb=(0 .2 .2)} Face 5633 8419 8338 12143 {rgb=(0 .2 .2)} Face 5634 8338 8443 12143 {rgb=(0 .2 .2)} Face 5635 8443 8539 12143 {rgb=(0 .2 .2)} Face 5636 8539 8419 12143 {rgb=(0 .2 .2)} Face 5637 8659 8537 12144 {rgb=(0 .2 .2)} Face 5638 8537 8704 12144 {rgb=(0 .2 .2)} Face 5639 8704 8870 12144 {rgb=(0 .2 .2)} Face 5640 8870 8659 12144 {rgb=(0 .2 .2)} Face 5641 8857 8778 12145 {rgb=(0 .2 .2)} Face 5642 8778 8971 12145 {rgb=(0 .2 .2)} Face 5643 8971 9029 12145 {rgb=(0 .2 .2)} Face 5644 9029 8857 12145 {rgb=(0 .2 .2)} Face 5645 8917 8902 12146 {rgb=(0 .2 .2)} Face 5646 8902 9088 12146 {rgb=(0 .2 .2)} Face 5647 9088 9117 12146 {rgb=(0 .2 .2)} Face 5648 9117 8917 12146 {rgb=(0 .2 .2)} Face 5649 8909 8919 12147 {rgb=(0 .2 .2)} Face 5650 8919 9122 12147 {rgb=(0 .2 .2)} Face 5651 9122 9108 12147 {rgb=(0 .2 .2)} Face 5652 9108 8909 12147 {rgb=(0 .2 .2)} Face 5653 8852 8883 12148 {rgb=(0 .2 .2)} Face 5654 8883 9072 12148 {rgb=(0 .2 .2)} Face 5655 9072 9038 12148 {rgb=(0 .2 .2)} Face 5656 9038 8852 12148 {rgb=(0 .2 .2)} Face 5657 8793 8822 12149 {rgb=(0 .2 .2)} Face 5658 8822 9017 12149 {rgb=(0 .2 .2)} Face 5659 9017 8995 12149 {rgb=(0 .2 .2)} Face 5660 8995 8793 12149 {rgb=(0 .2 .2)} Face 5661 8733 8754 12150 {rgb=(0 .2 .2)} Face 5662 8754 8974 12150 {rgb=(0 .2 .2)} Face 5663 8974 8956 12150 {rgb=(0 .2 .2)} Face 5664 8956 8733 12150 {rgb=(0 .2 .2)} Face 5665 8712 8717 12151 {rgb=(0 .2 .2)} Face 5666 8717 8947 12151 {rgb=(0 .2 .2)} Face 5667 8947 8944 12151 {rgb=(0 .2 .2)} Face 5668 8944 8712 12151 {rgb=(0 .2 .2)} Face 5669 8722 8716 12152 {rgb=(0 .2 .2)} Face 5670 8716 8950 12152 {rgb=(0 .2 .2)} Face 5671 8950 8953 12152 {rgb=(0 .2 .2)} Face 5672 8953 8722 12152 {rgb=(0 .2 .2)} Face 5673 8719 8726 12153 {rgb=(0 .2 .2)} Face 5674 8726 8957 12153 {rgb=(0 .2 .2)} Face 5675 8957 8955 12153 {rgb=(0 .2 .2)} Face 5676 8955 8719 12153 {rgb=(0 .2 .2)} Face 5677 8699 8702 12154 {rgb=(0 .2 .2)} Face 5678 8702 8945 12154 {rgb=(0 .2 .2)} Face 5679 8945 8943 12154 {rgb=(0 .2 .2)} Face 5680 8943 8699 12154 {rgb=(0 .2 .2)} Face 5681 8772 8711 12155 {rgb=(0 .2 .2)} Face 5682 8711 8949 12155 {rgb=(0 .2 .2)} Face 5683 8949 8964 12155 {rgb=(0 .2 .2)} Face 5684 8964 8772 12155 {rgb=(0 .2 .2)} Face 5685 8898 8874 12156 {rgb=(0 .2 .2)} Face 5686 8874 9013 12156 {rgb=(0 .2 .2)} Face 5687 9013 9073 12156 {rgb=(0 .2 .2)} Face 5688 9073 8898 12156 {rgb=(0 .2 .2)} Face 5689 8755 8785 12157 {rgb=(0 .2 .2)} Face 5690 8785 8874 12157 {rgb=(0 .2 .2)} Face 5691 8874 8786 12157 {rgb=(0 .2 .2)} Face 5692 8786 8755 12157 {rgb=(0 .2 .2)} Face 5693 8780 8898 12158 {rgb=(0 .2 .2)} Face 5694 8898 8880 12158 {rgb=(0 .2 .2)} Face 5695 8880 8750 12158 {rgb=(0 .2 .2)} Face 5696 8750 8780 12158 {rgb=(0 .2 .2)} Face 5697 8837 8880 12159 {rgb=(0 .2 .2)} Face 5698 8880 9059 12159 {rgb=(0 .2 .2)} Face 5699 9059 9027 12159 {rgb=(0 .2 .2)} Face 5700 9027 8837 12159 {rgb=(0 .2 .2)} Face 5701 8713 8837 12160 {rgb=(0 .2 .2)} Face 5702 8837 8807 12160 {rgb=(0 .2 .2)} Face 5703 8807 8664 12160 {rgb=(0 .2 .2)} Face 5704 8664 8713 12160 {rgb=(0 .2 .2)} Face 5705 8768 8807 12161 {rgb=(0 .2 .2)} Face 5706 8807 8996 12161 {rgb=(0 .2 .2)} Face 5707 8996 8973 12161 {rgb=(0 .2 .2)} Face 5708 8973 8768 12161 {rgb=(0 .2 .2)} Face 5709 8631 8768 12162 {rgb=(0 .2 .2)} Face 5710 8768 8725 12162 {rgb=(0 .2 .2)} Face 5711 8725 8596 12162 {rgb=(0 .2 .2)} Face 5712 8596 8631 12162 {rgb=(0 .2 .2)} Face 5713 8751 8725 12163 {rgb=(0 .2 .2)} Face 5714 8725 8941 12163 {rgb=(0 .2 .2)} Face 5715 8941 8960 12163 {rgb=(0 .2 .2)} Face 5716 8960 8751 12163 {rgb=(0 .2 .2)} Face 5717 8626 8751 12164 {rgb=(0 .2 .2)} Face 5718 8751 8836 12164 {rgb=(0 .2 .2)} Face 5719 8836 8720 12164 {rgb=(0 .2 .2)} Face 5720 8720 8626 12164 {rgb=(0 .2 .2)} Face 5721 8915 8836 12165 {rgb=(0 .2 .2)} Face 5722 8836 9023 12165 {rgb=(0 .2 .2)} Face 5723 9023 9112 12165 {rgb=(0 .2 .2)} Face 5724 9112 8915 12165 {rgb=(0 .2 .2)} Face 5725 8798 8915 12166 {rgb=(0 .2 .2)} Face 5726 8915 8967 12166 {rgb=(0 .2 .2)} Face 5727 8967 8853 12166 {rgb=(0 .2 .2)} Face 5728 8853 8798 12166 {rgb=(0 .2 .2)} Face 5729 8976 8967 12167 {rgb=(0 .2 .2)} Face 5730 8967 9156 12167 {rgb=(0 .2 .2)} Face 5731 9156 9171 12167 {rgb=(0 .2 .2)} Face 5732 9171 8976 12167 {rgb=(0 .2 .2)} Face 5733 8858 8976 12168 {rgb=(0 .2 .2)} Face 5734 8976 8940 12168 {rgb=(0 .2 .2)} Face 5735 8940 8808 12168 {rgb=(0 .2 .2)} Face 5736 8808 8858 12168 {rgb=(0 .2 .2)} Face 5737 8904 8940 12169 {rgb=(0 .2 .2)} Face 5738 8940 9146 12169 {rgb=(0 .2 .2)} Face 5739 9146 9116 12169 {rgb=(0 .2 .2)} Face 5740 9116 8904 12169 {rgb=(0 .2 .2)} Face 5741 8765 8904 12170 {rgb=(0 .2 .2)} Face 5742 8904 8861 12170 {rgb=(0 .2 .2)} Face 5743 8861 8718 12170 {rgb=(0 .2 .2)} Face 5744 8718 8765 12170 {rgb=(0 .2 .2)} Face 5745 8893 8861 12171 {rgb=(0 .2 .2)} Face 5746 8861 9061 12171 {rgb=(0 .2 .2)} Face 5747 9061 9097 12171 {rgb=(0 .2 .2)} Face 5748 9097 8893 12171 {rgb=(0 .2 .2)} Face 5749 8758 8893 12172 {rgb=(0 .2 .2)} Face 5750 8893 8986 12172 {rgb=(0 .2 .2)} Face 5751 8986 8884 12172 {rgb=(0 .2 .2)} Face 5752 8884 8758 12172 {rgb=(0 .2 .2)} Face 5753 9015 8986 12173 {rgb=(0 .2 .2)} Face 5754 8986 9181 12173 {rgb=(0 .2 .2)} Face 5755 9181 9213 12173 {rgb=(0 .2 .2)} Face 5756 9213 9015 12173 {rgb=(0 .2 .2)} Face 5757 8922 9015 12174 {rgb=(0 .2 .2)} Face 5758 9015 8992 12174 {rgb=(0 .2 .2)} Face 5759 8992 8894 12174 {rgb=(0 .2 .2)} Face 5760 8894 8922 12174 {rgb=(0 .2 .2)} Face 5761 8969 8992 12175 {rgb=(0 .2 .2)} Face 5762 8992 9175 12175 {rgb=(0 .2 .2)} Face 5763 9175 9147 12175 {rgb=(0 .2 .2)} Face 5764 9147 8969 12175 {rgb=(0 .2 .2)} Face 5765 8872 8969 12176 {rgb=(0 .2 .2)} Face 5766 8969 8948 12176 {rgb=(0 .2 .2)} Face 5767 8948 8840 12176 {rgb=(0 .2 .2)} Face 5768 8840 8872 12176 {rgb=(0 .2 .2)} Face 5769 8757 8948 12177 {rgb=(0 .2 .2)} Face 5770 8948 9126 12177 {rgb=(0 .2 .2)} Face 5771 9126 8933 12177 {rgb=(0 .2 .2)} Face 5772 8933 8757 12177 {rgb=(0 .2 .2)} Face 5773 8646 8757 12178 {rgb=(0 .2 .2)} Face 5774 8757 8446 12178 {rgb=(0 .2 .2)} Face 5775 8446 8410 12178 {rgb=(0 .2 .2)} Face 5776 8410 8646 12178 {rgb=(0 .2 .2)} Face 5777 8045 8446 12179 {rgb=(0 .2 .2)} Face 5778 8446 8556 12179 {rgb=(0 .2 .2)} Face 5779 8556 8166 12179 {rgb=(0 .2 .2)} Face 5780 8166 8045 12179 {rgb=(0 .2 .2)} Face 5781 7992 8045 12180 {rgb=(0 .2 .2)} Face 5782 8045 7494 12180 {rgb=(0 .2 .2)} Face 5783 7494 7470 12180 {rgb=(0 .2 .2)} Face 5784 7470 7992 12180 {rgb=(0 .2 .2)} Face 5785 7160 7494 12181 {rgb=(0 .2 .2)} Face 5786 7494 7551 12181 {rgb=(0 .2 .2)} Face 5787 7551 7201 12181 {rgb=(0 .2 .2)} Face 5788 7201 7160 12181 {rgb=(0 .2 .2)} Face 5789 7141 7160 12182 {rgb=(0 .2 .2)} Face 5790 7160 7017 12182 {rgb=(0 .2 .2)} Face 5791 7017 6999 12182 {rgb=(0 .2 .2)} Face 5792 6999 7141 12182 {rgb=(0 .2 .2)} Face 5793 6654 7017 12183 {rgb=(0 .2 .2)} Face 5794 7017 7063 12183 {rgb=(0 .2 .2)} Face 5795 7063 6702 12183 {rgb=(0 .2 .2)} Face 5796 6702 6654 12183 {rgb=(0 .2 .2)} Face 5797 5854 5877 12184 {rgb=(0 .2 .2)} Face 5798 5877 6702 12184 {rgb=(0 .2 .2)} Face 5799 6702 6593 12184 {rgb=(0 .2 .2)} Face 5800 6593 5854 12184 {rgb=(0 .2 .2)} Face 5801 6638 6654 12185 {rgb=(0 .2 .2)} Face 5802 6654 5871 12185 {rgb=(0 .2 .2)} Face 5803 5871 5867 12185 {rgb=(0 .2 .2)} Face 5804 5867 6638 12185 {rgb=(0 .2 .2)} Face 5805 6809 6317 12186 {rgb=(0 .2 .2)} Face 5806 6317 6346 12186 {rgb=(0 .2 .2)} Face 5807 6346 6845 12186 {rgb=(0 .2 .2)} Face 5808 6845 6809 12186 {rgb=(0 .2 .2)} Face 5809 7471 7158 12187 {rgb=(0 .2 .2)} Face 5810 7158 7188 12187 {rgb=(0 .2 .2)} Face 5811 7188 7510 12187 {rgb=(0 .2 .2)} Face 5812 7510 7471 12187 {rgb=(0 .2 .2)} Face 5813 7940 7719 12188 {rgb=(0 .2 .2)} Face 5814 7719 7786 12188 {rgb=(0 .2 .2)} Face 5815 7786 8008 12188 {rgb=(0 .2 .2)} Face 5816 8008 7940 12188 {rgb=(0 .2 .2)} Face 5817 8352 8246 12189 {rgb=(0 .2 .2)} Face 5818 8246 8211 12189 {rgb=(0 .2 .2)} Face 5819 8211 8339 12189 {rgb=(0 .2 .2)} Face 5820 8339 8352 12189 {rgb=(0 .2 .2)} Face 5821 8482 8407 12190 {rgb=(0 .2 .2)} Face 5822 8407 8441 12190 {rgb=(0 .2 .2)} Face 5823 8441 8529 12190 {rgb=(0 .2 .2)} Face 5824 8529 8482 12190 {rgb=(0 .2 .2)} Face 5825 8459 8536 12191 {rgb=(0 .2 .2)} Face 5826 8536 8602 12191 {rgb=(0 .2 .2)} Face 5827 8602 8522 12191 {rgb=(0 .2 .2)} Face 5828 8522 8459 12191 {rgb=(0 .2 .2)} Face 5829 7941 8278 12192 {rgb=(0 .2 .2)} Face 5830 8278 8346 12192 {rgb=(0 .2 .2)} Face 5831 8346 8016 12192 {rgb=(0 .2 .2)} Face 5832 8016 7941 12192 {rgb=(0 .2 .2)} Face 5833 7190 7554 12193 {rgb=(0 .2 .2)} Face 5834 7554 7612 12193 {rgb=(0 .2 .2)} Face 5835 7612 7244 12193 {rgb=(0 .2 .2)} Face 5836 7244 7190 12193 {rgb=(0 .2 .2)} Face 5837 6629 6863 12194 {rgb=(0 .2 .2)} Face 5838 6863 6895 12194 {rgb=(0 .2 .2)} Face 5839 6895 6640 12194 {rgb=(0 .2 .2)} Face 5840 6640 6629 12194 {rgb=(0 .2 .2)} Face 5841 6464 6492 12195 {rgb=(0 .2 .2)} Face 5842 6492 6450 12195 {rgb=(0 .2 .2)} Face 5843 6450 6398 12195 {rgb=(0 .2 .2)} Face 5844 6398 6464 12195 {rgb=(0 .2 .2)} Face 5845 6357 6474 12196 {rgb=(0 .2 .2)} Face 5846 6474 6570 12196 {rgb=(0 .2 .2)} Face 5847 6570 6457 12196 {rgb=(0 .2 .2)} Face 5848 6457 6357 12196 {rgb=(0 .2 .2)} Face 5849 6886 6856 12197 {rgb=(0 .2 .2)} Face 5850 6856 6474 12197 {rgb=(0 .2 .2)} Face 5851 6474 6533 12197 {rgb=(0 .2 .2)} Face 5852 6533 6886 12197 {rgb=(0 .2 .2)} Face 5853 6593 6877 12198 {rgb=(0 .2 .2)} Face 5854 6877 6542 12198 {rgb=(0 .2 .2)} Face 5855 6542 6228 12198 {rgb=(0 .2 .2)} Face 5856 6228 6593 12198 {rgb=(0 .2 .2)} Face 5857 6279 6200 12199 {rgb=(0 .2 .2)} Face 5858 6200 5745 12199 {rgb=(0 .2 .2)} Face 5859 5745 5763 12199 {rgb=(0 .2 .2)} Face 5860 5763 6279 12199 {rgb=(0 .2 .2)} Face 5861 6588 6172 12200 {rgb=(0 .2 .2)} Face 5862 6172 6200 12200 {rgb=(0 .2 .2)} Face 5863 6200 6618 12200 {rgb=(0 .2 .2)} Face 5864 6618 6588 12200 {rgb=(0 .2 .2)} Face 5865 6935 6781 12201 {rgb=(0 .2 .2)} Face 5866 6781 6852 12201 {rgb=(0 .2 .2)} Face 5867 6852 6995 12201 {rgb=(0 .2 .2)} Face 5868 6995 6935 12201 {rgb=(0 .2 .2)} Face 5869 6847 6852 12202 {rgb=(0 .2 .2)} Face 5870 6852 6605 12202 {rgb=(0 .2 .2)} Face 5871 6605 6588 12202 {rgb=(0 .2 .2)} Face 5872 6588 6847 12202 {rgb=(0 .2 .2)} Face 5873 6534 6577 12203 {rgb=(0 .2 .2)} Face 5874 6577 6781 12203 {rgb=(0 .2 .2)} Face 5875 6781 6748 12203 {rgb=(0 .2 .2)} Face 5876 6748 6534 12203 {rgb=(0 .2 .2)} Face 5877 5771 5756 12204 {rgb=(0 .2 .2)} Face 5878 5756 6231 12204 {rgb=(0 .2 .2)} Face 5879 6231 6309 12204 {rgb=(0 .2 .2)} Face 5880 6309 5771 12204 {rgb=(0 .2 .2)} Face 5881 6616 6231 12205 {rgb=(0 .2 .2)} Face 5882 6231 6160 12205 {rgb=(0 .2 .2)} Face 5883 6160 6534 12205 {rgb=(0 .2 .2)} Face 5884 6534 6616 12205 {rgb=(0 .2 .2)} Face 5885 6420 6373 12206 {rgb=(0 .2 .2)} Face 5886 6373 5793 12206 {rgb=(0 .2 .2)} Face 5887 5793 5812 12206 {rgb=(0 .2 .2)} Face 5888 5812 6420 12206 {rgb=(0 .2 .2)} Face 5889 6717 6279 12207 {rgb=(0 .2 .2)} Face 5890 6279 6373 12207 {rgb=(0 .2 .2)} Face 5891 6373 6789 12207 {rgb=(0 .2 .2)} Face 5892 6789 6717 12207 {rgb=(0 .2 .2)} Face 5893 7030 7006 12208 {rgb=(0 .2 .2)} Face 5894 7006 7064 12208 {rgb=(0 .2 .2)} Face 5895 7064 7085 12208 {rgb=(0 .2 .2)} Face 5896 7085 7030 12208 {rgb=(0 .2 .2)} Face 5897 6998 7064 12209 {rgb=(0 .2 .2)} Face 5898 7064 6995 12209 {rgb=(0 .2 .2)} Face 5899 6995 6928 12209 {rgb=(0 .2 .2)} Face 5900 6928 6998 12209 {rgb=(0 .2 .2)} Face 5901 6829 6935 12210 {rgb=(0 .2 .2)} Face 5902 6935 7006 12210 {rgb=(0 .2 .2)} Face 5903 7006 6915 12210 {rgb=(0 .2 .2)} Face 5904 6915 6829 12210 {rgb=(0 .2 .2)} Face 5905 5817 5807 12211 {rgb=(0 .2 .2)} Face 5906 5807 6400 12211 {rgb=(0 .2 .2)} Face 5907 6400 6438 12211 {rgb=(0 .2 .2)} Face 5908 6438 5817 12211 {rgb=(0 .2 .2)} Face 5909 6763 6400 12212 {rgb=(0 .2 .2)} Face 5910 6400 6309 12212 {rgb=(0 .2 .2)} Face 5911 6309 6708 12212 {rgb=(0 .2 .2)} Face 5912 6708 6763 12212 {rgb=(0 .2 .2)} Face 5913 6259 6385 12213 {rgb=(0 .2 .2)} Face 5914 6385 5802 12213 {rgb=(0 .2 .2)} Face 5915 5802 5760 12213 {rgb=(0 .2 .2)} Face 5916 5760 6259 12213 {rgb=(0 .2 .2)} Face 5917 6820 6420 12214 {rgb=(0 .2 .2)} Face 5918 6420 6385 12214 {rgb=(0 .2 .2)} Face 5919 6385 6795 12214 {rgb=(0 .2 .2)} Face 5920 6795 6820 12214 {rgb=(0 .2 .2)} Face 5921 6870 7021 12215 {rgb=(0 .2 .2)} Face 5922 7021 7066 12215 {rgb=(0 .2 .2)} Face 5923 7066 6901 12215 {rgb=(0 .2 .2)} Face 5924 6901 6870 12215 {rgb=(0 .2 .2)} Face 5925 6992 7066 12216 {rgb=(0 .2 .2)} Face 5926 7066 7085 12216 {rgb=(0 .2 .2)} Face 5927 7085 7018 12216 {rgb=(0 .2 .2)} Face 5928 7018 6992 12216 {rgb=(0 .2 .2)} Face 5929 6946 7030 12217 {rgb=(0 .2 .2)} Face 5930 7030 7021 12217 {rgb=(0 .2 .2)} Face 5931 7021 6937 12217 {rgb=(0 .2 .2)} Face 5932 6937 6946 12217 {rgb=(0 .2 .2)} Face 5933 5761 5805 12218 {rgb=(0 .2 .2)} Face 5934 5805 6394 12218 {rgb=(0 .2 .2)} Face 5935 6394 6272 12218 {rgb=(0 .2 .2)} Face 5936 6272 5761 12218 {rgb=(0 .2 .2)} Face 5937 6767 6394 12219 {rgb=(0 .2 .2)} Face 5938 6394 6438 12219 {rgb=(0 .2 .2)} Face 5939 6438 6801 12219 {rgb=(0 .2 .2)} Face 5940 6801 6767 12219 {rgb=(0 .2 .2)} Face 5941 6661 6259 12220 {rgb=(0 .2 .2)} Face 5942 6259 6032 12220 {rgb=(0 .2 .2)} Face 5943 6032 6298 12220 {rgb=(0 .2 .2)} Face 5944 6298 6661 12220 {rgb=(0 .2 .2)} Face 5945 6470 6548 12221 {rgb=(0 .2 .2)} Face 5946 6548 6901 12221 {rgb=(0 .2 .2)} Face 5947 6901 6826 12221 {rgb=(0 .2 .2)} Face 5948 6826 6470 12221 {rgb=(0 .2 .2)} Face 5949 6770 6870 12222 {rgb=(0 .2 .2)} Face 5950 6870 6519 12222 {rgb=(0 .2 .2)} Face 5951 6519 6429 12222 {rgb=(0 .2 .2)} Face 5952 6429 6770 12222 {rgb=(0 .2 .2)} Face 5953 6303 6043 12223 {rgb=(0 .2 .2)} Face 5954 6043 6272 12223 {rgb=(0 .2 .2)} Face 5955 6272 6646 12223 {rgb=(0 .2 .2)} Face 5956 6646 6303 12223 {rgb=(0 .2 .2)} Face 5957 6708 6616 12224 {rgb=(0 .2 .2)} Face 5958 6616 6748 12224 {rgb=(0 .2 .2)} Face 5959 6748 6829 12224 {rgb=(0 .2 .2)} Face 5960 6829 6708 12224 {rgb=(0 .2 .2)} Face 5961 6801 6763 12225 {rgb=(0 .2 .2)} Face 5962 6763 6915 12225 {rgb=(0 .2 .2)} Face 5963 6915 6946 12225 {rgb=(0 .2 .2)} Face 5964 6946 6801 12225 {rgb=(0 .2 .2)} Face 5965 6646 6767 12226 {rgb=(0 .2 .2)} Face 5966 6767 6937 12226 {rgb=(0 .2 .2)} Face 5967 6937 6770 12226 {rgb=(0 .2 .2)} Face 5968 6770 6646 12226 {rgb=(0 .2 .2)} Face 5969 6795 6661 12227 {rgb=(0 .2 .2)} Face 5970 6661 6826 12227 {rgb=(0 .2 .2)} Face 5971 6826 6992 12227 {rgb=(0 .2 .2)} Face 5972 6992 6795 12227 {rgb=(0 .2 .2)} Face 5973 6789 6820 12228 {rgb=(0 .2 .2)} Face 5974 6820 7018 12228 {rgb=(0 .2 .2)} Face 5975 7018 6998 12228 {rgb=(0 .2 .2)} Face 5976 6998 6789 12228 {rgb=(0 .2 .2)} Face 5977 6618 6717 12229 {rgb=(0 .2 .2)} Face 5978 6717 6928 12229 {rgb=(0 .2 .2)} Face 5979 6928 6847 12229 {rgb=(0 .2 .2)} Face 5980 6847 6618 12229 {rgb=(0 .2 .2)} Face 5981 6684 6568 12230 {rgb=(0 .2 .2)} Face 5982 6568 6457 12230 {rgb=(0 .2 .2)} Face 5983 6457 6610 12230 {rgb=(0 .2 .2)} Face 5984 6610 6684 12230 {rgb=(0 .2 .2)} Face 5985 6339 6357 12231 {rgb=(0 .2 .2)} Face 5986 6357 6568 12231 {rgb=(0 .2 .2)} Face 5987 6568 6547 12231 {rgb=(0 .2 .2)} Face 5988 6547 6339 12231 {rgb=(0 .2 .2)} Face 5989 5764 5768 12232 {rgb=(0 .2 .2)} Face 5990 5768 6297 12232 {rgb=(0 .2 .2)} Face 5991 6297 6286 12232 {rgb=(0 .2 .2)} Face 5992 6286 5764 12232 {rgb=(0 .2 .2)} Face 5993 6679 6297 12233 {rgb=(0 .2 .2)} Face 5994 6297 6150 12233 {rgb=(0 .2 .2)} Face 5995 6150 6508 12233 {rgb=(0 .2 .2)} Face 5996 6508 6679 12233 {rgb=(0 .2 .2)} Face 5997 6077 6150 12234 {rgb=(0 .2 .2)} Face 5998 6150 5730 12234 {rgb=(0 .2 .2)} Face 5999 5730 5705 12234 {rgb=(0 .2 .2)} Face 6000 5705 6077 12234 {rgb=(0 .2 .2)} Face 6001 5697 5719 12235 {rgb=(0 .2 .2)} Face 6002 5719 6126 12235 {rgb=(0 .2 .2)} Face 6003 6126 6051 12235 {rgb=(0 .2 .2)} Face 6004 6051 5697 12235 {rgb=(0 .2 .2)} Face 6005 6465 6126 12236 {rgb=(0 .2 .2)} Face 6006 6126 6286 12236 {rgb=(0 .2 .2)} Face 6007 6286 6669 12236 {rgb=(0 .2 .2)} Face 6008 6669 6465 12236 {rgb=(0 .2 .2)} Face 6009 5694 5696 12237 {rgb=(0 .2 .2)} Face 6010 5696 6050 12237 {rgb=(0 .2 .2)} Face 6011 6050 6046 12237 {rgb=(0 .2 .2)} Face 6012 6046 5694 12237 {rgb=(0 .2 .2)} Face 6013 6345 6050 12238 {rgb=(0 .2 .2)} Face 6014 6050 6051 12238 {rgb=(0 .2 .2)} Face 6015 6051 6347 12238 {rgb=(0 .2 .2)} Face 6016 6347 6345 12238 {rgb=(0 .2 .2)} Face 6017 6045 6018 12239 {rgb=(0 .2 .2)} Face 6018 6018 5644 12239 {rgb=(0 .2 .2)} Face 6019 5644 5693 12239 {rgb=(0 .2 .2)} Face 6020 5693 6045 12239 {rgb=(0 .2 .2)} Face 6021 6132 5999 12240 {rgb=(0 .2 .2)} Face 6022 5999 5918 12240 {rgb=(0 .2 .2)} Face 6023 5918 6082 12240 {rgb=(0 .2 .2)} Face 6024 6082 6132 12240 {rgb=(0 .2 .2)} Face 6025 5925 5918 12241 {rgb=(0 .2 .2)} Face 6026 5918 5688 12241 {rgb=(0 .2 .2)} Face 6027 5688 5656 12241 {rgb=(0 .2 .2)} Face 6028 5656 5925 12241 {rgb=(0 .2 .2)} Face 6029 5645 5685 12242 {rgb=(0 .2 .2)} Face 6030 5685 5902 12242 {rgb=(0 .2 .2)} Face 6031 5902 5892 12242 {rgb=(0 .2 .2)} Face 6032 5892 5645 12242 {rgb=(0 .2 .2)} Face 6033 6054 5902 12243 {rgb=(0 .2 .2)} Face 6034 5902 5999 12243 {rgb=(0 .2 .2)} Face 6035 5999 6115 12243 {rgb=(0 .2 .2)} Face 6036 6115 6054 12243 {rgb=(0 .2 .2)} Face 6037 6531 6574 12244 {rgb=(0 .2 .2)} Face 6038 6574 6557 12244 {rgb=(0 .2 .2)} Face 6039 6557 6532 12244 {rgb=(0 .2 .2)} Face 6040 6532 6531 12244 {rgb=(0 .2 .2)} Face 6041 6525 6557 12245 {rgb=(0 .2 .2)} Face 6042 6557 6398 12245 {rgb=(0 .2 .2)} Face 6043 6398 6329 12245 {rgb=(0 .2 .2)} Face 6044 6329 6525 12245 {rgb=(0 .2 .2)} Face 6045 6602 6464 12246 {rgb=(0 .2 .2)} Face 6046 6464 6574 12246 {rgb=(0 .2 .2)} Face 6047 6574 6665 12246 {rgb=(0 .2 .2)} Face 6048 6665 6602 12246 {rgb=(0 .2 .2)} Face 6049 6782 6811 12247 {rgb=(0 .2 .2)} Face 6050 6811 6665 12247 {rgb=(0 .2 .2)} Face 6051 6665 6628 12247 {rgb=(0 .2 .2)} Face 6052 6628 6782 12247 {rgb=(0 .2 .2)} Face 6053 6752 6751 12248 {rgb=(0 .2 .2)} Face 6054 6751 6811 12248 {rgb=(0 .2 .2)} Face 6055 6811 6824 12248 {rgb=(0 .2 .2)} Face 6056 6824 6752 12248 {rgb=(0 .2 .2)} Face 6057 6650 6684 12249 {rgb=(0 .2 .2)} Face 6058 6684 6824 12249 {rgb=(0 .2 .2)} Face 6059 6824 6793 12249 {rgb=(0 .2 .2)} Face 6060 6793 6650 12249 {rgb=(0 .2 .2)} Face 6061 6360 6077 12250 {rgb=(0 .2 .2)} Face 6062 6077 6063 12250 {rgb=(0 .2 .2)} Face 6063 6063 6339 12250 {rgb=(0 .2 .2)} Face 6064 6339 6360 12250 {rgb=(0 .2 .2)} Face 6065 6508 6360 12251 {rgb=(0 .2 .2)} Face 6066 6360 6547 12251 {rgb=(0 .2 .2)} Face 6067 6547 6650 12251 {rgb=(0 .2 .2)} Face 6068 6650 6508 12251 {rgb=(0 .2 .2)} Face 6069 6669 6679 12252 {rgb=(0 .2 .2)} Face 6070 6679 6793 12252 {rgb=(0 .2 .2)} Face 6071 6793 6782 12252 {rgb=(0 .2 .2)} Face 6072 6782 6669 12252 {rgb=(0 .2 .2)} Face 6073 6347 6465 12253 {rgb=(0 .2 .2)} Face 6074 6465 6628 12253 {rgb=(0 .2 .2)} Face 6075 6628 6531 12253 {rgb=(0 .2 .2)} Face 6076 6531 6347 12253 {rgb=(0 .2 .2)} Face 6077 6335 6345 12254 {rgb=(0 .2 .2)} Face 6078 6345 6532 12254 {rgb=(0 .2 .2)} Face 6079 6532 6527 12254 {rgb=(0 .2 .2)} Face 6080 6527 6335 12254 {rgb=(0 .2 .2)} Face 6081 5930 5974 12255 {rgb=(0 .2 .2)} Face 6082 5974 5675 12255 {rgb=(0 .2 .2)} Face 6083 5675 5657 12255 {rgb=(0 .2 .2)} Face 6084 5657 5930 12255 {rgb=(0 .2 .2)} Face 6085 6329 6045 12256 {rgb=(0 .2 .2)} Face 6086 6045 5974 12256 {rgb=(0 .2 .2)} Face 6087 5974 6237 12256 {rgb=(0 .2 .2)} Face 6088 6237 6329 12256 {rgb=(0 .2 .2)} Face 6089 6405 6490 12257 {rgb=(0 .2 .2)} Face 6090 6490 6237 12257 {rgb=(0 .2 .2)} Face 6091 6237 6161 12257 {rgb=(0 .2 .2)} Face 6092 6161 6405 12257 {rgb=(0 .2 .2)} Face 6093 6527 6525 12258 {rgb=(0 .2 .2)} Face 6094 6525 6490 12258 {rgb=(0 .2 .2)} Face 6095 6490 6522 12258 {rgb=(0 .2 .2)} Face 6096 6522 6527 12258 {rgb=(0 .2 .2)} Face 6097 6285 6322 12259 {rgb=(0 .2 .2)} Face 6098 6322 6522 12259 {rgb=(0 .2 .2)} Face 6099 6522 6458 12259 {rgb=(0 .2 .2)} Face 6100 6458 6285 12259 {rgb=(0 .2 .2)} Face 6101 6046 6335 12260 {rgb=(0 .2 .2)} Face 6102 6335 6322 12260 {rgb=(0 .2 .2)} Face 6103 6322 6041 12260 {rgb=(0 .2 .2)} Face 6104 6041 6046 12260 {rgb=(0 .2 .2)} Face 6105 5687 5691 12261 {rgb=(0 .2 .2)} Face 6106 5691 6041 12261 {rgb=(0 .2 .2)} Face 6107 6041 6026 12261 {rgb=(0 .2 .2)} Face 6108 6026 5687 12261 {rgb=(0 .2 .2)} Face 6109 5900 5913 12262 {rgb=(0 .2 .2)} Face 6110 5913 5652 12262 {rgb=(0 .2 .2)} Face 6111 5652 5650 12262 {rgb=(0 .2 .2)} Face 6112 5650 5900 12262 {rgb=(0 .2 .2)} Face 6113 6161 5930 12263 {rgb=(0 .2 .2)} Face 6114 5930 5913 12263 {rgb=(0 .2 .2)} Face 6115 5913 6130 12263 {rgb=(0 .2 .2)} Face 6116 6130 6161 12263 {rgb=(0 .2 .2)} Face 6117 6192 6301 12264 {rgb=(0 .2 .2)} Face 6118 6301 6130 12264 {rgb=(0 .2 .2)} Face 6119 6130 6089 12264 {rgb=(0 .2 .2)} Face 6120 6089 6192 12264 {rgb=(0 .2 .2)} Face 6121 6458 6405 12265 {rgb=(0 .2 .2)} Face 6122 6405 6301 12265 {rgb=(0 .2 .2)} Face 6123 6301 6332 12265 {rgb=(0 .2 .2)} Face 6124 6332 6458 12265 {rgb=(0 .2 .2)} Face 6125 6142 6199 12266 {rgb=(0 .2 .2)} Face 6126 6199 6332 12266 {rgb=(0 .2 .2)} Face 6127 6332 6217 12266 {rgb=(0 .2 .2)} Face 6128 6217 6142 12266 {rgb=(0 .2 .2)} Face 6129 6026 6285 12267 {rgb=(0 .2 .2)} Face 6130 6285 6199 12267 {rgb=(0 .2 .2)} Face 6131 6199 5992 12267 {rgb=(0 .2 .2)} Face 6132 5992 6026 12267 {rgb=(0 .2 .2)} Face 6133 5669 5677 12268 {rgb=(0 .2 .2)} Face 6134 5677 5992 12268 {rgb=(0 .2 .2)} Face 6135 5992 5960 12268 {rgb=(0 .2 .2)} Face 6136 5960 5669 12268 {rgb=(0 .2 .2)} Face 6137 6089 5900 12269 {rgb=(0 .2 .2)} Face 6138 5900 5892 12269 {rgb=(0 .2 .2)} Face 6139 5892 6054 12269 {rgb=(0 .2 .2)} Face 6140 6054 6089 12269 {rgb=(0 .2 .2)} Face 6141 6217 6192 12270 {rgb=(0 .2 .2)} Face 6142 6192 6115 12270 {rgb=(0 .2 .2)} Face 6143 6115 6132 12270 {rgb=(0 .2 .2)} Face 6144 6132 6217 12270 {rgb=(0 .2 .2)} Face 6145 5960 6142 12271 {rgb=(0 .2 .2)} Face 6146 6142 6082 12271 {rgb=(0 .2 .2)} Face 6147 6082 5925 12271 {rgb=(0 .2 .2)} Face 6148 5925 5960 12271 {rgb=(0 .2 .2)} Face 6149 4522 4424 12272 {rgb=(0 .2 .2)} Face 6150 4424 4943 12272 {rgb=(0 .2 .2)} Face 6151 4943 5013 12272 {rgb=(0 .2 .2)} Face 6152 5013 4522 12272 {rgb=(0 .2 .2)} Face 6153 3834 3492 12273 {rgb=(0 .2 .2)} Face 6154 3492 3466 12273 {rgb=(0 .2 .2)} Face 6155 3466 3815 12273 {rgb=(0 .2 .2)} Face 6156 3815 3834 12273 {rgb=(0 .2 .2)} Face 6157 4635 4154 12274 {rgb=(0 .2 .2)} Face 6158 4154 4140 12274 {rgb=(0 .2 .2)} Face 6159 4140 4548 12274 {rgb=(0 .2 .2)} Face 6160 4548 4635 12274 {rgb=(0 .2 .2)} Face 6161 3426 3758 12275 {rgb=(0 .2 .2)} Face 6162 3758 3853 12275 {rgb=(0 .2 .2)} Face 6163 3853 3489 12275 {rgb=(0 .2 .2)} Face 6164 3489 3426 12275 {rgb=(0 .2 .2)} Face 6165 4183 4131 12276 {rgb=(0 .2 .2)} Face 6166 4131 4346 12276 {rgb=(0 .2 .2)} Face 6167 4346 4409 12276 {rgb=(0 .2 .2)} Face 6168 4409 4183 12276 {rgb=(0 .2 .2)} Face 6169 3604 3256 12277 {rgb=(0 .2 .2)} Face 6170 3256 3076 12277 {rgb=(0 .2 .2)} Face 6171 3076 3471 12277 {rgb=(0 .2 .2)} Face 6172 3471 3604 12277 {rgb=(0 .2 .2)} Face 6173 4246 4018 12278 {rgb=(0 .2 .2)} Face 6174 4018 3914 12278 {rgb=(0 .2 .2)} Face 6175 3914 4170 12278 {rgb=(0 .2 .2)} Face 6176 4170 4246 12278 {rgb=(0 .2 .2)} Face 6177 3329 2862 12279 {rgb=(0 .2 .2)} Face 6178 2862 2706 12279 {rgb=(0 .2 .2)} Face 6179 2706 3174 12279 {rgb=(0 .2 .2)} Face 6180 3174 3329 12279 {rgb=(0 .2 .2)} Face 6181 3958 4160 12280 {rgb=(0 .2 .2)} Face 6182 4160 4188 12280 {rgb=(0 .2 .2)} Face 6183 4188 3673 12280 {rgb=(0 .2 .2)} Face 6184 3673 3958 12280 {rgb=(0 .2 .2)} Face 6185 3140 2823 12281 {rgb=(0 .2 .2)} Face 6186 2823 2754 12281 {rgb=(0 .2 .2)} Face 6187 2754 3084 12281 {rgb=(0 .2 .2)} Face 6188 3084 3140 12281 {rgb=(0 .2 .2)} Face 6189 2768 2741 12282 {rgb=(0 .2 .2)} Face 6190 2741 3066 12282 {rgb=(0 .2 .2)} Face 6191 3066 3094 12282 {rgb=(0 .2 .2)} Face 6192 3094 2768 12282 {rgb=(0 .2 .2)} Face 6193 2885 2639 12283 {rgb=(0 .2 .2)} Face 6194 2639 2504 12283 {rgb=(0 .2 .2)} Face 6195 2504 2734 12283 {rgb=(0 .2 .2)} Face 6196 2734 2885 12283 {rgb=(0 .2 .2)} Face 6197 2561 2246 12284 {rgb=(0 .2 .2)} Face 6198 2246 2057 12284 {rgb=(0 .2 .2)} Face 6199 2057 2358 12284 {rgb=(0 .2 .2)} Face 6200 2358 2561 12284 {rgb=(0 .2 .2)} Face 6201 3808 3557 12285 {rgb=(0 .2 .2)} Face 6202 3557 3568 12285 {rgb=(0 .2 .2)} Face 6203 3568 3885 12285 {rgb=(0 .2 .2)} Face 6204 3885 3808 12285 {rgb=(0 .2 .2)} Face 6205 3330 3162 12286 {rgb=(0 .2 .2)} Face 6206 3162 3095 12286 {rgb=(0 .2 .2)} Face 6207 3095 3322 12286 {rgb=(0 .2 .2)} Face 6208 3322 3330 12286 {rgb=(0 .2 .2)} Face 6209 2641 2691 12287 {rgb=(0 .2 .2)} Face 6210 2691 2645 12287 {rgb=(0 .2 .2)} Face 6211 2645 2565 12287 {rgb=(0 .2 .2)} Face 6212 2565 2641 12287 {rgb=(0 .2 .2)} Face 6213 2412 2342 12288 {rgb=(0 .2 .2)} Face 6214 2342 2174 12288 {rgb=(0 .2 .2)} Face 6215 2174 2224 12288 {rgb=(0 .2 .2)} Face 6216 2224 2412 12288 {rgb=(0 .2 .2)} Face 6217 2068 2072 12289 {rgb=(0 .2 .2)} Face 6218 2072 2016 12289 {rgb=(0 .2 .2)} Face 6219 2016 1953 12289 {rgb=(0 .2 .2)} Face 6220 1953 2068 12289 {rgb=(0 .2 .2)} Face 6221 1878 1957 12290 {rgb=(0 .2 .2)} Face 6222 1957 1928 12290 {rgb=(0 .2 .2)} Face 6223 1928 1829 12290 {rgb=(0 .2 .2)} Face 6224 1829 1878 12290 {rgb=(0 .2 .2)} Face 6225 1817 1923 12291 {rgb=(0 .2 .2)} Face 6226 1923 1937 12291 {rgb=(0 .2 .2)} Face 6227 1937 1818 12291 {rgb=(0 .2 .2)} Face 6228 1818 1817 12291 {rgb=(0 .2 .2)} Face 6229 1831 1973 12292 {rgb=(0 .2 .2)} Face 6230 1973 2007 12292 {rgb=(0 .2 .2)} Face 6231 2007 1859 12292 {rgb=(0 .2 .2)} Face 6232 1859 1831 12292 {rgb=(0 .2 .2)} Face 6233 1917 1897 12293 {rgb=(0 .2 .2)} Face 6234 1897 2028 12293 {rgb=(0 .2 .2)} Face 6235 2028 2050 12293 {rgb=(0 .2 .2)} Face 6236 2050 1917 12293 {rgb=(0 .2 .2)} Face 6237 1934 1930 12294 {rgb=(0 .2 .2)} Face 6238 1930 2070 12294 {rgb=(0 .2 .2)} Face 6239 2070 2089 12294 {rgb=(0 .2 .2)} Face 6240 2089 1934 12294 {rgb=(0 .2 .2)} Face 6241 1939 1935 12295 {rgb=(0 .2 .2)} Face 6242 1935 2097 12295 {rgb=(0 .2 .2)} Face 6243 2097 2100 12295 {rgb=(0 .2 .2)} Face 6244 2100 1939 12295 {rgb=(0 .2 .2)} Face 6245 1977 1952 12296 {rgb=(0 .2 .2)} Face 6246 1952 2094 12296 {rgb=(0 .2 .2)} Face 6247 2094 2092 12296 {rgb=(0 .2 .2)} Face 6248 2092 1977 12296 {rgb=(0 .2 .2)} Face 6249 2090 2005 12297 {rgb=(0 .2 .2)} Face 6250 2005 1997 12297 {rgb=(0 .2 .2)} Face 6251 1997 2088 12297 {rgb=(0 .2 .2)} Face 6252 2088 2090 12297 {rgb=(0 .2 .2)} Face 6253 2101 1991 12298 {rgb=(0 .2 .2)} Face 6254 1991 2002 12298 {rgb=(0 .2 .2)} Face 6255 2002 2099 12298 {rgb=(0 .2 .2)} Face 6256 2099 2101 12298 {rgb=(0 .2 .2)} Face 6257 1945 1981 12299 {rgb=(0 .2 .2)} Face 6258 1981 2095 12299 {rgb=(0 .2 .2)} Face 6259 2095 2080 12299 {rgb=(0 .2 .2)} Face 6260 2080 1945 12299 {rgb=(0 .2 .2)} Face 6261 1918 1895 12300 {rgb=(0 .2 .2)} Face 6262 1895 1986 12300 {rgb=(0 .2 .2)} Face 6263 1986 2018 12300 {rgb=(0 .2 .2)} Face 6264 2018 1918 12300 {rgb=(0 .2 .2)} Face 6265 1988 1949 12301 {rgb=(0 .2 .2)} Face 6266 1949 2049 12301 {rgb=(0 .2 .2)} Face 6267 2049 2071 12301 {rgb=(0 .2 .2)} Face 6268 2071 1988 12301 {rgb=(0 .2 .2)} Face 6269 1998 2021 12302 {rgb=(0 .2 .2)} Face 6270 2021 2103 12302 {rgb=(0 .2 .2)} Face 6271 2103 2085 12302 {rgb=(0 .2 .2)} Face 6272 2085 1998 12302 {rgb=(0 .2 .2)} Face 6273 1879 1920 12303 {rgb=(0 .2 .2)} Face 6274 1920 2022 12303 {rgb=(0 .2 .2)} Face 6275 2022 1933 12303 {rgb=(0 .2 .2)} Face 6276 1933 1879 12303 {rgb=(0 .2 .2)} Face 6277 1824 1843 12304 {rgb=(0 .2 .2)} Face 6278 1843 1889 12304 {rgb=(0 .2 .2)} Face 6279 1889 1874 12304 {rgb=(0 .2 .2)} Face 6280 1874 1824 12304 {rgb=(0 .2 .2)} Face 6281 1861 1841 12305 {rgb=(0 .2 .2)} Face 6282 1841 1899 12305 {rgb=(0 .2 .2)} Face 6283 1899 1929 12305 {rgb=(0 .2 .2)} Face 6284 1929 1861 12305 {rgb=(0 .2 .2)} Face 6285 1866 1888 12306 {rgb=(0 .2 .2)} Face 6286 1888 1984 12306 {rgb=(0 .2 .2)} Face 6287 1984 1948 12306 {rgb=(0 .2 .2)} Face 6288 1948 1866 12306 {rgb=(0 .2 .2)} Face 6289 1832 1784 12307 {rgb=(0 .2 .2)} Face 6290 1784 1800 12307 {rgb=(0 .2 .2)} Face 6291 1800 1864 12307 {rgb=(0 .2 .2)} Face 6292 1864 1832 12307 {rgb=(0 .2 .2)} Face 6293 1898 1811 12308 {rgb=(0 .2 .2)} Face 6294 1811 1794 12308 {rgb=(0 .2 .2)} Face 6295 1794 1870 12308 {rgb=(0 .2 .2)} Face 6296 1870 1898 12308 {rgb=(0 .2 .2)} Face 6297 2945 2541 12309 {rgb=(0 .2 .2)} Face 6298 2541 2490 12309 {rgb=(0 .2 .2)} Face 6299 2490 2877 12309 {rgb=(0 .2 .2)} Face 6300 2877 2945 12309 {rgb=(0 .2 .2)} Face 6301 3832 3538 12310 {rgb=(0 .2 .2)} Face 6302 3538 3494 12310 {rgb=(0 .2 .2)} Face 6303 3494 3841 12310 {rgb=(0 .2 .2)} Face 6304 3841 3832 12310 {rgb=(0 .2 .2)} Face 6305 5191 5168 12311 {rgb=(0 .2 .2)} Face 6306 5168 5877 12311 {rgb=(0 .2 .2)} Face 6307 5877 5854 12311 {rgb=(0 .2 .2)} Face 6308 5854 5191 12311 {rgb=(0 .2 .2)} Face 6309 4199 4182 12312 {rgb=(0 .2 .2)} Face 6310 4182 4683 12312 {rgb=(0 .2 .2)} Face 6311 4683 4703 12312 {rgb=(0 .2 .2)} Face 6312 4703 4199 12312 {rgb=(0 .2 .2)} Face 6313 3503 3837 12313 {rgb=(0 .2 .2)} Face 6314 3837 3855 12313 {rgb=(0 .2 .2)} Face 6315 3855 3534 12313 {rgb=(0 .2 .2)} Face 6316 3534 3503 12313 {rgb=(0 .2 .2)} Face 6317 3025 2912 12314 {rgb=(0 .2 .2)} Face 6318 2912 3198 12314 {rgb=(0 .2 .2)} Face 6319 3198 3260 12314 {rgb=(0 .2 .2)} Face 6320 3260 3025 12314 {rgb=(0 .2 .2)} Face 6321 2664 2608 12315 {rgb=(0 .2 .2)} Face 6322 2608 2516 12315 {rgb=(0 .2 .2)} Face 6323 2516 2589 12315 {rgb=(0 .2 .2)} Face 6324 2589 2664 12315 {rgb=(0 .2 .2)} Face 6325 3013 2699 12316 {rgb=(0 .2 .2)} Face 6326 2699 2703 12316 {rgb=(0 .2 .2)} Face 6327 2703 3019 12316 {rgb=(0 .2 .2)} Face 6328 3019 3013 12316 {rgb=(0 .2 .2)} Face 6329 3773 3429 12317 {rgb=(0 .2 .2)} Face 6330 3429 3434 12317 {rgb=(0 .2 .2)} Face 6331 3434 3800 12317 {rgb=(0 .2 .2)} Face 6332 3800 3773 12317 {rgb=(0 .2 .2)} Face 6333 4431 4136 12318 {rgb=(0 .2 .2)} Face 6334 4136 4151 12318 {rgb=(0 .2 .2)} Face 6335 4151 4400 12318 {rgb=(0 .2 .2)} Face 6336 4400 4431 12318 {rgb=(0 .2 .2)} Face 6337 5271 5285 12319 {rgb=(0 .2 .2)} Face 6338 5285 5756 12319 {rgb=(0 .2 .2)} Face 6339 5756 5771 12319 {rgb=(0 .2 .2)} Face 6340 5771 5271 12319 {rgb=(0 .2 .2)} Face 6341 5793 5253 12320 {rgb=(0 .2 .2)} Face 6342 5253 5233 12320 {rgb=(0 .2 .2)} Face 6343 5233 5812 12320 {rgb=(0 .2 .2)} Face 6344 5812 5793 12320 {rgb=(0 .2 .2)} Face 6345 5348 5292 12321 {rgb=(0 .2 .2)} Face 6346 5292 5748 12321 {rgb=(0 .2 .2)} Face 6347 5748 5689 12321 {rgb=(0 .2 .2)} Face 6348 5689 5348 12321 {rgb=(0 .2 .2)} Face 6349 5750 5291 12322 {rgb=(0 .2 .2)} Face 6350 5291 5341 12322 {rgb=(0 .2 .2)} Face 6351 5341 5692 12322 {rgb=(0 .2 .2)} Face 6352 5692 5750 12322 {rgb=(0 .2 .2)} Face 6353 4111 4260 12323 {rgb=(0 .2 .2)} Face 6354 4260 4294 12323 {rgb=(0 .2 .2)} Face 6355 4294 4216 12323 {rgb=(0 .2 .2)} Face 6356 4216 4111 12323 {rgb=(0 .2 .2)} Face 6357 4421 4812 12324 {rgb=(0 .2 .2)} Face 6358 4812 4739 12324 {rgb=(0 .2 .2)} Face 6359 4739 4335 12324 {rgb=(0 .2 .2)} Face 6360 4335 4421 12324 {rgb=(0 .2 .2)} Face 6361 4009 4034 12325 {rgb=(0 .2 .2)} Face 6362 4034 4130 12325 {rgb=(0 .2 .2)} Face 6363 4130 4099 12325 {rgb=(0 .2 .2)} Face 6364 4099 4009 12325 {rgb=(0 .2 .2)} Face 6365 4278 4647 12326 {rgb=(0 .2 .2)} Face 6366 4647 4608 12326 {rgb=(0 .2 .2)} Face 6367 4608 4242 12326 {rgb=(0 .2 .2)} Face 6368 4242 4278 12326 {rgb=(0 .2 .2)} Face 6369 4176 4017 12327 {rgb=(0 .2 .2)} Face 6370 4017 4108 12327 {rgb=(0 .2 .2)} Face 6371 4108 4270 12327 {rgb=(0 .2 .2)} Face 6372 4270 4176 12327 {rgb=(0 .2 .2)} Face 6373 4273 4653 12328 {rgb=(0 .2 .2)} Face 6374 4653 4773 12328 {rgb=(0 .2 .2)} Face 6375 4773 4393 12328 {rgb=(0 .2 .2)} Face 6376 4393 4273 12328 {rgb=(0 .2 .2)} Face 6377 4047 3973 12329 {rgb=(0 .2 .2)} Face 6378 3973 4145 12329 {rgb=(0 .2 .2)} Face 6379 4145 4219 12329 {rgb=(0 .2 .2)} Face 6380 4219 4047 12329 {rgb=(0 .2 .2)} Face 6381 4785 4661 12330 {rgb=(0 .2 .2)} Face 6382 4661 4247 12330 {rgb=(0 .2 .2)} Face 6383 4247 4380 12330 {rgb=(0 .2 .2)} Face 6384 4380 4785 12330 {rgb=(0 .2 .2)} Face 6385 4041 3975 12331 {rgb=(0 .2 .2)} Face 6386 3975 3955 12331 {rgb=(0 .2 .2)} Face 6387 3955 4020 12331 {rgb=(0 .2 .2)} Face 6388 4020 4041 12331 {rgb=(0 .2 .2)} Face 6389 4627 4674 12332 {rgb=(0 .2 .2)} Face 6390 4674 4252 12332 {rgb=(0 .2 .2)} Face 6391 4252 4225 12332 {rgb=(0 .2 .2)} Face 6392 4225 4627 12332 {rgb=(0 .2 .2)} Face 6393 4197 4192 12333 {rgb=(0 .2 .2)} Face 6394 4192 4044 12333 {rgb=(0 .2 .2)} Face 6395 4044 4118 12333 {rgb=(0 .2 .2)} Face 6396 4118 4197 12333 {rgb=(0 .2 .2)} Face 6397 4766 4842 12334 {rgb=(0 .2 .2)} Face 6398 4842 4419 12334 {rgb=(0 .2 .2)} Face 6399 4419 4327 12334 {rgb=(0 .2 .2)} Face 6400 4327 4766 12334 {rgb=(0 .2 .2)} Face 6401 4428 4348 12335 {rgb=(0 .2 .2)} Face 6402 4348 4470 12335 {rgb=(0 .2 .2)} Face 6403 4470 4589 12335 {rgb=(0 .2 .2)} Face 6404 4589 4428 12335 {rgb=(0 .2 .2)} Face 6405 4291 4293 12336 {rgb=(0 .2 .2)} Face 6406 4293 4282 12336 {rgb=(0 .2 .2)} Face 6407 4282 4290 12336 {rgb=(0 .2 .2)} Face 6408 4290 4291 12336 {rgb=(0 .2 .2)} Face 6409 4552 4427 12337 {rgb=(0 .2 .2)} Face 6410 4427 4436 12337 {rgb=(0 .2 .2)} Face 6411 4436 4581 12337 {rgb=(0 .2 .2)} Face 6412 4581 4552 12337 {rgb=(0 .2 .2)} Face 6413 4649 4719 12338 {rgb=(0 .2 .2)} Face 6414 4719 4995 12338 {rgb=(0 .2 .2)} Face 6415 4995 4596 12338 {rgb=(0 .2 .2)} Face 6416 4596 4649 12338 {rgb=(0 .2 .2)} Face 6417 5339 5336 12339 {rgb=(0 .2 .2)} Face 6418 5336 5696 12339 {rgb=(0 .2 .2)} Face 6419 5696 5694 12339 {rgb=(0 .2 .2)} Face 6420 5694 5339 12339 {rgb=(0 .2 .2)} Face 6421 5335 5316 12340 {rgb=(0 .2 .2)} Face 6422 5316 5719 12340 {rgb=(0 .2 .2)} Face 6423 5719 5697 12340 {rgb=(0 .2 .2)} Face 6424 5697 5335 12340 {rgb=(0 .2 .2)} Face 6425 4354 4472 12341 {rgb=(0 .2 .2)} Face 6426 4472 4493 12341 {rgb=(0 .2 .2)} Face 6427 4493 4389 12341 {rgb=(0 .2 .2)} Face 6428 4389 4354 12341 {rgb=(0 .2 .2)} Face 6429 4891 4535 12342 {rgb=(0 .2 .2)} Face 6430 4535 4688 12342 {rgb=(0 .2 .2)} Face 6431 4688 4961 12342 {rgb=(0 .2 .2)} Face 6432 4961 4891 12342 {rgb=(0 .2 .2)} Face 6433 4259 4232 12343 {rgb=(0 .2 .2)} Face 6434 4232 4221 12343 {rgb=(0 .2 .2)} Face 6435 4221 4249 12343 {rgb=(0 .2 .2)} Face 6436 4249 4259 12343 {rgb=(0 .2 .2)} Face 6437 4359 4749 12344 {rgb=(0 .2 .2)} Face 6438 4749 4759 12344 {rgb=(0 .2 .2)} Face 6439 4759 4369 12344 {rgb=(0 .2 .2)} Face 6440 4369 4359 12344 {rgb=(0 .2 .2)} Face 6441 4510 4466 12345 {rgb=(0 .2 .2)} Face 6442 4466 4374 12345 {rgb=(0 .2 .2)} Face 6443 4374 4410 12345 {rgb=(0 .2 .2)} Face 6444 4410 4510 12345 {rgb=(0 .2 .2)} Face 6445 4580 4916 12346 {rgb=(0 .2 .2)} Face 6446 4916 4988 12346 {rgb=(0 .2 .2)} Face 6447 4988 4702 12346 {rgb=(0 .2 .2)} Face 6448 4702 4580 12346 {rgb=(0 .2 .2)} Face 6449 4517 4483 12347 {rgb=(0 .2 .2)} Face 6450 4483 4509 12347 {rgb=(0 .2 .2)} Face 6451 4509 4515 12347 {rgb=(0 .2 .2)} Face 6452 4515 4517 12347 {rgb=(0 .2 .2)} Face 6453 4704 4989 12348 {rgb=(0 .2 .2)} Face 6454 4989 4993 12348 {rgb=(0 .2 .2)} Face 6455 4993 4714 12348 {rgb=(0 .2 .2)} Face 6456 4714 4704 12348 {rgb=(0 .2 .2)} Face 6457 5117 5073 12349 {rgb=(0 .2 .2)} Face 6458 5073 4806 12349 {rgb=(0 .2 .2)} Face 6459 4806 4880 12349 {rgb=(0 .2 .2)} Face 6460 4880 5117 12349 {rgb=(0 .2 .2)} Face 6461 4642 4554 12350 {rgb=(0 .2 .2)} Face 6462 4554 4520 12350 {rgb=(0 .2 .2)} Face 6463 4520 4588 12350 {rgb=(0 .2 .2)} Face 6464 4588 4642 12350 {rgb=(0 .2 .2)} Face 6465 4760 4725 12351 {rgb=(0 .2 .2)} Face 6466 4725 4999 12351 {rgb=(0 .2 .2)} Face 6467 4999 5015 12351 {rgb=(0 .2 .2)} Face 6468 5015 4760 12351 {rgb=(0 .2 .2)} Face 6469 5652 5399 12352 {rgb=(0 .2 .2)} Face 6470 5399 5400 12352 {rgb=(0 .2 .2)} Face 6471 5400 5650 12352 {rgb=(0 .2 .2)} Face 6472 5650 5652 12352 {rgb=(0 .2 .2)} Face 6473 5145 5131 12353 {rgb=(0 .2 .2)} Face 6474 5131 4913 12353 {rgb=(0 .2 .2)} Face 6475 4913 4949 12353 {rgb=(0 .2 .2)} Face 6476 4949 5145 12353 {rgb=(0 .2 .2)} Face 6477 4850 4745 12354 {rgb=(0 .2 .2)} Face 6478 4745 4716 12354 {rgb=(0 .2 .2)} Face 6479 4716 4827 12354 {rgb=(0 .2 .2)} Face 6480 4827 4850 12354 {rgb=(0 .2 .2)} Face 6481 4899 4843 12355 {rgb=(0 .2 .2)} Face 6482 4843 5054 12355 {rgb=(0 .2 .2)} Face 6483 5054 5088 12355 {rgb=(0 .2 .2)} Face 6484 5088 4899 12355 {rgb=(0 .2 .2)} Face 6485 4021 4040 12356 {rgb=(0 .2 .2)} Face 6486 4040 4401 12356 {rgb=(0 .2 .2)} Face 6487 4401 4385 12356 {rgb=(0 .2 .2)} Face 6488 4385 4021 12356 {rgb=(0 .2 .2)} Face 6489 5174 5178 12357 {rgb=(0 .2 .2)} Face 6490 5178 5867 12357 {rgb=(0 .2 .2)} Face 6491 5867 5871 12357 {rgb=(0 .2 .2)} Face 6492 5871 5174 12357 {rgb=(0 .2 .2)} Face 6493 3547 3570 12358 {rgb=(0 .2 .2)} Face 6494 3570 3902 12358 {rgb=(0 .2 .2)} Face 6495 3902 3883 12358 {rgb=(0 .2 .2)} Face 6496 3883 3547 12358 {rgb=(0 .2 .2)} Face 6497 2601 2638 12359 {rgb=(0 .2 .2)} Face 6498 2638 3042 12359 {rgb=(0 .2 .2)} Face 6499 3042 2992 12359 {rgb=(0 .2 .2)} Face 6500 2992 2601 12359 {rgb=(0 .2 .2)} Face 6501 2059 2161 12360 {rgb=(0 .2 .2)} Face 6502 2161 2123 12360 {rgb=(0 .2 .2)} Face 6503 2123 2030 12360 {rgb=(0 .2 .2)} Face 6504 2030 2059 12360 {rgb=(0 .2 .2)} Face 6505 2104 2237 12361 {rgb=(0 .2 .2)} Face 6506 2237 2280 12361 {rgb=(0 .2 .2)} Face 6507 2280 2141 12361 {rgb=(0 .2 .2)} Face 6508 2141 2104 12361 {rgb=(0 .2 .2)} Face 6509 2076 2190 12362 {rgb=(0 .2 .2)} Face 6510 2190 2185 12362 {rgb=(0 .2 .2)} Face 6511 2185 2069 12362 {rgb=(0 .2 .2)} Face 6512 2069 2076 12362 {rgb=(0 .2 .2)} Face 6513 2207 2327 12363 {rgb=(0 .2 .2)} Face 6514 2327 2247 12363 {rgb=(0 .2 .2)} Face 6515 2247 2130 12363 {rgb=(0 .2 .2)} Face 6516 2130 2207 12363 {rgb=(0 .2 .2)} Face 6517 2165 2294 12364 {rgb=(0 .2 .2)} Face 6518 2294 2334 12364 {rgb=(0 .2 .2)} Face 6519 2334 2205 12364 {rgb=(0 .2 .2)} Face 6520 2205 2165 12364 {rgb=(0 .2 .2)} Face 6521 2146 2170 12365 {rgb=(0 .2 .2)} Face 6522 2170 2257 12365 {rgb=(0 .2 .2)} Face 6523 2257 2261 12365 {rgb=(0 .2 .2)} Face 6524 2261 2146 12365 {rgb=(0 .2 .2)} Face 6525 7552 7208 12366 {rgb=(0 .2 .2)} Face 6526 7208 7228 12366 {rgb=(0 .2 .2)} Face 6527 7228 7577 12366 {rgb=(0 .2 .2)} Face 6528 7577 7552 12366 {rgb=(0 .2 .2)} Face 6529 6892 6412 12367 {rgb=(0 .2 .2)} Face 6530 6412 6496 12367 {rgb=(0 .2 .2)} Face 6531 6496 6905 12367 {rgb=(0 .2 .2)} Face 6532 6905 6892 12367 {rgb=(0 .2 .2)} Face 6533 7190 7286 12368 {rgb=(0 .2 .2)} Face 6534 7286 7618 12368 {rgb=(0 .2 .2)} Face 6535 7618 7554 12368 {rgb=(0 .2 .2)} Face 6536 7554 7190 12368 {rgb=(0 .2 .2)} Face 6537 6695 6914 12369 {rgb=(0 .2 .2)} Face 6538 6914 6863 12369 {rgb=(0 .2 .2)} Face 6539 6863 6629 12369 {rgb=(0 .2 .2)} Face 6540 6629 6695 12369 {rgb=(0 .2 .2)} Face 6541 7789 7438 12370 {rgb=(0 .2 .2)} Face 6542 7438 7574 12370 {rgb=(0 .2 .2)} Face 6543 7574 7963 12370 {rgb=(0 .2 .2)} Face 6544 7963 7789 12370 {rgb=(0 .2 .2)} Face 6545 7020 6796 12371 {rgb=(0 .2 .2)} Face 6546 6796 6876 12371 {rgb=(0 .2 .2)} Face 6547 6876 7128 12371 {rgb=(0 .2 .2)} Face 6548 7128 7020 12371 {rgb=(0 .2 .2)} Face 6549 8179 7715 12372 {rgb=(0 .2 .2)} Face 6550 7715 7870 12372 {rgb=(0 .2 .2)} Face 6551 7870 8343 12372 {rgb=(0 .2 .2)} Face 6552 8343 8179 12372 {rgb=(0 .2 .2)} Face 6553 6886 7082 12373 {rgb=(0 .2 .2)} Face 6554 7082 7371 12373 {rgb=(0 .2 .2)} Face 6555 7371 6856 12373 {rgb=(0 .2 .2)} Face 6556 6856 6886 12373 {rgb=(0 .2 .2)} Face 6557 8220 7901 12374 {rgb=(0 .2 .2)} Face 6558 7901 7955 12374 {rgb=(0 .2 .2)} Face 6559 7955 8290 12374 {rgb=(0 .2 .2)} Face 6560 8290 8220 12374 {rgb=(0 .2 .2)} Face 6561 7972 8302 12375 {rgb=(0 .2 .2)} Face 6562 8302 8278 12375 {rgb=(0 .2 .2)} Face 6563 8278 7941 12375 {rgb=(0 .2 .2)} Face 6564 7941 7972 12375 {rgb=(0 .2 .2)} Face 6565 8409 8157 12376 {rgb=(0 .2 .2)} Face 6566 8157 8308 12376 {rgb=(0 .2 .2)} Face 6567 8308 8541 12376 {rgb=(0 .2 .2)} Face 6568 8541 8409 12376 {rgb=(0 .2 .2)} Face 6569 8799 8486 12377 {rgb=(0 .2 .2)} Face 6570 8486 8687 12377 {rgb=(0 .2 .2)} Face 6571 8687 8988 12377 {rgb=(0 .2 .2)} Face 6572 8988 8799 12377 {rgb=(0 .2 .2)} Face 6573 5755 5286 12378 {rgb=(0 .2 .2)} Face 6574 5286 5266 12378 {rgb=(0 .2 .2)} Face 6575 5266 5776 12378 {rgb=(0 .2 .2)} Face 6576 5776 5755 12378 {rgb=(0 .2 .2)} Face 6577 7569 7326 12379 {rgb=(0 .2 .2)} Face 6578 7326 7158 12379 {rgb=(0 .2 .2)} Face 6579 7158 7471 12379 {rgb=(0 .2 .2)} Face 6580 7471 7569 12379 {rgb=(0 .2 .2)} Face 6581 7940 7945 12380 {rgb=(0 .2 .2)} Face 6582 7945 7712 12380 {rgb=(0 .2 .2)} Face 6583 7712 7719 12380 {rgb=(0 .2 .2)} Face 6584 7719 7940 12380 {rgb=(0 .2 .2)} Face 6585 8356 8407 12381 {rgb=(0 .2 .2)} Face 6586 8407 8482 12381 {rgb=(0 .2 .2)} Face 6587 8482 8403 12381 {rgb=(0 .2 .2)} Face 6588 8403 8356 12381 {rgb=(0 .2 .2)} Face 6589 8704 8634 12382 {rgb=(0 .2 .2)} Face 6590 8634 8821 12382 {rgb=(0 .2 .2)} Face 6591 8821 8870 12382 {rgb=(0 .2 .2)} Face 6592 8870 8704 12382 {rgb=(0 .2 .2)} Face 6593 8971 8977 12383 {rgb=(0 .2 .2)} Face 6594 8977 9092 12383 {rgb=(0 .2 .2)} Face 6595 9092 9029 12383 {rgb=(0 .2 .2)} Face 6596 9029 8971 12383 {rgb=(0 .2 .2)} Face 6597 9088 9167 12384 {rgb=(0 .2 .2)} Face 6598 9167 9216 12384 {rgb=(0 .2 .2)} Face 6599 9216 9117 12384 {rgb=(0 .2 .2)} Face 6600 9117 9088 12384 {rgb=(0 .2 .2)} Face 6601 9122 9228 12385 {rgb=(0 .2 .2)} Face 6602 9228 9227 12385 {rgb=(0 .2 .2)} Face 6603 9227 9108 12385 {rgb=(0 .2 .2)} Face 6604 9108 9122 12385 {rgb=(0 .2 .2)} Face 6605 9072 9214 12386 {rgb=(0 .2 .2)} Face 6606 9214 9186 12386 {rgb=(0 .2 .2)} Face 6607 9186 9038 12386 {rgb=(0 .2 .2)} Face 6608 9038 9072 12386 {rgb=(0 .2 .2)} Face 6609 9017 9148 12387 {rgb=(0 .2 .2)} Face 6610 9148 9128 12387 {rgb=(0 .2 .2)} Face 6611 9128 8995 12387 {rgb=(0 .2 .2)} Face 6612 8995 9017 12387 {rgb=(0 .2 .2)} Face 6613 8974 9115 12388 {rgb=(0 .2 .2)} Face 6614 9115 9111 12388 {rgb=(0 .2 .2)} Face 6615 9111 8956 12388 {rgb=(0 .2 .2)} Face 6616 8956 8974 12388 {rgb=(0 .2 .2)} Face 6617 8947 9110 12389 {rgb=(0 .2 .2)} Face 6618 9110 9106 12389 {rgb=(0 .2 .2)} Face 6619 9106 8944 12389 {rgb=(0 .2 .2)} Face 6620 8944 8947 12389 {rgb=(0 .2 .2)} Face 6621 8950 9093 12390 {rgb=(0 .2 .2)} Face 6622 9093 9068 12390 {rgb=(0 .2 .2)} Face 6623 9068 8953 12390 {rgb=(0 .2 .2)} Face 6624 8953 8950 12390 {rgb=(0 .2 .2)} Face 6625 9048 9040 12391 {rgb=(0 .2 .2)} Face 6626 9040 8955 12391 {rgb=(0 .2 .2)} Face 6627 8955 8957 12391 {rgb=(0 .2 .2)} Face 6628 8957 9048 12391 {rgb=(0 .2 .2)} Face 6629 9043 9054 12392 {rgb=(0 .2 .2)} Face 6630 9054 8943 12392 {rgb=(0 .2 .2)} Face 6631 8943 8945 12392 {rgb=(0 .2 .2)} Face 6632 8945 9043 12392 {rgb=(0 .2 .2)} Face 6633 9063 9099 12393 {rgb=(0 .2 .2)} Face 6634 9099 8964 12393 {rgb=(0 .2 .2)} Face 6635 8964 8949 12393 {rgb=(0 .2 .2)} Face 6636 8949 9063 12393 {rgb=(0 .2 .2)} Face 6637 9059 9150 12394 {rgb=(0 .2 .2)} Face 6638 9150 9127 12394 {rgb=(0 .2 .2)} Face 6639 9127 9027 12394 {rgb=(0 .2 .2)} Face 6640 9027 9059 12394 {rgb=(0 .2 .2)} Face 6641 9096 9057 12395 {rgb=(0 .2 .2)} Face 6642 9057 8973 12395 {rgb=(0 .2 .2)} Face 6643 8973 8996 12395 {rgb=(0 .2 .2)} Face 6644 8996 9096 12395 {rgb=(0 .2 .2)} Face 6645 9024 9047 12396 {rgb=(0 .2 .2)} Face 6646 9047 8960 12396 {rgb=(0 .2 .2)} Face 6647 8960 8941 12396 {rgb=(0 .2 .2)} Face 6648 8941 9024 12396 {rgb=(0 .2 .2)} Face 6649 9125 9166 12397 {rgb=(0 .2 .2)} Face 6650 9166 9112 12397 {rgb=(0 .2 .2)} Face 6651 9112 9023 12397 {rgb=(0 .2 .2)} Face 6652 9023 9125 12397 {rgb=(0 .2 .2)} Face 6653 9202 9221 12398 {rgb=(0 .2 .2)} Face 6654 9221 9171 12398 {rgb=(0 .2 .2)} Face 6655 9171 9156 12398 {rgb=(0 .2 .2)} Face 6656 9156 9202 12398 {rgb=(0 .2 .2)} Face 6657 9204 9184 12399 {rgb=(0 .2 .2)} Face 6658 9184 9116 12399 {rgb=(0 .2 .2)} Face 6659 9116 9146 12399 {rgb=(0 .2 .2)} Face 6660 9146 9204 12399 {rgb=(0 .2 .2)} Face 6661 9157 9179 12400 {rgb=(0 .2 .2)} Face 6662 9179 9097 12400 {rgb=(0 .2 .2)} Face 6663 9097 9061 12400 {rgb=(0 .2 .2)} Face 6664 9061 9157 12400 {rgb=(0 .2 .2)} Face 6665 9261 9213 12401 {rgb=(0 .2 .2)} Face 6666 9213 9181 12401 {rgb=(0 .2 .2)} Face 6667 9181 9245 12401 {rgb=(0 .2 .2)} Face 6668 9245 9261 12401 {rgb=(0 .2 .2)} Face 6669 9234 9147 12402 {rgb=(0 .2 .2)} Face 6670 9147 9175 12402 {rgb=(0 .2 .2)} Face 6671 9175 9251 12402 {rgb=(0 .2 .2)} Face 6672 9251 9234 12402 {rgb=(0 .2 .2)} Face 6673 8504 8090 12403 {rgb=(0 .2 .2)} Face 6674 8090 8166 12403 {rgb=(0 .2 .2)} Face 6675 8166 8556 12403 {rgb=(0 .2 .2)} Face 6676 8556 8504 12403 {rgb=(0 .2 .2)} Face 6677 7503 7211 12404 {rgb=(0 .2 .2)} Face 6678 7211 7201 12404 {rgb=(0 .2 .2)} Face 6679 7201 7551 12404 {rgb=(0 .2 .2)} Face 6680 7551 7503 12404 {rgb=(0 .2 .2)} Face 6681 5264 5256 12405 {rgb=(0 .2 .2)} Face 6682 5256 5789 12405 {rgb=(0 .2 .2)} Face 6683 5789 5778 12405 {rgb=(0 .2 .2)} Face 6684 5778 5264 12405 {rgb=(0 .2 .2)} Face 6685 6365 6865 12406 {rgb=(0 .2 .2)} Face 6686 6865 6845 12406 {rgb=(0 .2 .2)} Face 6687 6845 6346 12406 {rgb=(0 .2 .2)} Face 6688 6346 6365 12406 {rgb=(0 .2 .2)} Face 6689 7188 7205 12407 {rgb=(0 .2 .2)} Face 6690 7205 7540 12407 {rgb=(0 .2 .2)} Face 6691 7540 7510 12407 {rgb=(0 .2 .2)} Face 6692 7510 7188 12407 {rgb=(0 .2 .2)} Face 6693 7844 8129 12408 {rgb=(0 .2 .2)} Face 6694 8129 8008 12408 {rgb=(0 .2 .2)} Face 6695 8008 7786 12408 {rgb=(0 .2 .2)} Face 6696 7786 7844 12408 {rgb=(0 .2 .2)} Face 6697 8441 8388 12409 {rgb=(0 .2 .2)} Face 6698 8388 8457 12409 {rgb=(0 .2 .2)} Face 6699 8457 8529 12409 {rgb=(0 .2 .2)} Face 6700 8529 8441 12409 {rgb=(0 .2 .2)} Face 6701 8349 8022 12410 {rgb=(0 .2 .2)} Face 6702 8022 8016 12410 {rgb=(0 .2 .2)} Face 6703 8016 8346 12410 {rgb=(0 .2 .2)} Face 6704 8346 8349 12410 {rgb=(0 .2 .2)} Face 6705 7616 7273 12411 {rgb=(0 .2 .2)} Face 6706 7273 7244 12411 {rgb=(0 .2 .2)} Face 6707 7244 7612 12411 {rgb=(0 .2 .2)} Face 6708 7612 7616 12411 {rgb=(0 .2 .2)} Face 6709 6909 6607 12412 {rgb=(0 .2 .2)} Face 6710 6607 6640 12412 {rgb=(0 .2 .2)} Face 6711 6640 6895 12412 {rgb=(0 .2 .2)} Face 6712 6895 6909 12412 {rgb=(0 .2 .2)} Face 6713 5644 5408 12413 {rgb=(0 .2 .2)} Face 6714 5408 5340 12413 {rgb=(0 .2 .2)} Face 6715 5340 5693 12413 {rgb=(0 .2 .2)} Face 6716 5693 5644 12413 {rgb=(0 .2 .2)} Face 6717 5407 5643 12414 {rgb=(0 .2 .2)} Face 6718 5643 5944 12414 {rgb=(0 .2 .2)} Face 6719 5944 5104 12414 {rgb=(0 .2 .2)} Face 6720 5104 5407 12414 {rgb=(0 .2 .2)} Face 6721 5745 5295 12415 {rgb=(0 .2 .2)} Face 6722 5295 5278 12415 {rgb=(0 .2 .2)} Face 6723 5278 5763 12415 {rgb=(0 .2 .2)} Face 6724 5763 5745 12415 {rgb=(0 .2 .2)} Face 6725 5228 5238 12416 {rgb=(0 .2 .2)} Face 6726 5238 5807 12416 {rgb=(0 .2 .2)} Face 6727 5807 5817 12416 {rgb=(0 .2 .2)} Face 6728 5817 5228 12416 {rgb=(0 .2 .2)} Face 6729 5802 5244 12417 {rgb=(0 .2 .2)} Face 6730 5244 5281 12417 {rgb=(0 .2 .2)} Face 6731 5281 5760 12417 {rgb=(0 .2 .2)} Face 6732 5760 5802 12417 {rgb=(0 .2 .2)} Face 6733 5280 5240 12418 {rgb=(0 .2 .2)} Face 6734 5240 5805 12418 {rgb=(0 .2 .2)} Face 6735 5805 5761 12418 {rgb=(0 .2 .2)} Face 6736 5761 5280 12418 {rgb=(0 .2 .2)} Face 6737 6781 6935 12419 {rgb=(0 .2 .2)} Face 6738 6935 6829 12419 {rgb=(0 .2 .2)} Face 6739 6829 6748 12419 {rgb=(0 .2 .2)} Face 6740 6748 6781 12419 {rgb=(0 .2 .2)} Face 6741 6309 6231 12420 {rgb=(0 .2 .2)} Face 6742 6231 6616 12420 {rgb=(0 .2 .2)} Face 6743 6616 6708 12420 {rgb=(0 .2 .2)} Face 6744 6708 6309 12420 {rgb=(0 .2 .2)} Face 6745 7006 7030 12421 {rgb=(0 .2 .2)} Face 6746 7030 6946 12421 {rgb=(0 .2 .2)} Face 6747 6946 6915 12421 {rgb=(0 .2 .2)} Face 6748 6915 7006 12421 {rgb=(0 .2 .2)} Face 6749 6438 6400 12422 {rgb=(0 .2 .2)} Face 6750 6400 6763 12422 {rgb=(0 .2 .2)} Face 6751 6763 6801 12422 {rgb=(0 .2 .2)} Face 6752 6801 6438 12422 {rgb=(0 .2 .2)} Face 6753 7021 6870 12423 {rgb=(0 .2 .2)} Face 6754 6870 6770 12423 {rgb=(0 .2 .2)} Face 6755 6770 6937 12423 {rgb=(0 .2 .2)} Face 6756 6937 7021 12423 {rgb=(0 .2 .2)} Face 6757 6272 6394 12424 {rgb=(0 .2 .2)} Face 6758 6394 6767 12424 {rgb=(0 .2 .2)} Face 6759 6767 6646 12424 {rgb=(0 .2 .2)} Face 6760 6646 6272 12424 {rgb=(0 .2 .2)} Face 6761 6901 7066 12425 {rgb=(0 .2 .2)} Face 6762 7066 6992 12425 {rgb=(0 .2 .2)} Face 6763 6992 6826 12425 {rgb=(0 .2 .2)} Face 6764 6826 6901 12425 {rgb=(0 .2 .2)} Face 6765 6385 6259 12426 {rgb=(0 .2 .2)} Face 6766 6259 6661 12426 {rgb=(0 .2 .2)} Face 6767 6661 6795 12426 {rgb=(0 .2 .2)} Face 6768 6795 6385 12426 {rgb=(0 .2 .2)} Face 6769 7085 7064 12427 {rgb=(0 .2 .2)} Face 6770 7064 6998 12427 {rgb=(0 .2 .2)} Face 6771 6998 7018 12427 {rgb=(0 .2 .2)} Face 6772 7018 7085 12427 {rgb=(0 .2 .2)} Face 6773 6373 6420 12428 {rgb=(0 .2 .2)} Face 6774 6420 6820 12428 {rgb=(0 .2 .2)} Face 6775 6820 6789 12428 {rgb=(0 .2 .2)} Face 6776 6789 6373 12428 {rgb=(0 .2 .2)} Face 6777 6995 6852 12429 {rgb=(0 .2 .2)} Face 6778 6852 6847 12429 {rgb=(0 .2 .2)} Face 6779 6847 6928 12429 {rgb=(0 .2 .2)} Face 6780 6928 6995 12429 {rgb=(0 .2 .2)} Face 6781 6200 6279 12430 {rgb=(0 .2 .2)} Face 6782 6279 6717 12430 {rgb=(0 .2 .2)} Face 6783 6717 6618 12430 {rgb=(0 .2 .2)} Face 6784 6618 6200 12430 {rgb=(0 .2 .2)} Face 6785 6693 6610 12431 {rgb=(0 .2 .2)} Face 6786 6610 6457 12431 {rgb=(0 .2 .2)} Face 6787 6457 6570 12431 {rgb=(0 .2 .2)} Face 6788 6570 6693 12431 {rgb=(0 .2 .2)} Face 6789 6749 6751 12432 {rgb=(0 .2 .2)} Face 6790 6751 6752 12432 {rgb=(0 .2 .2)} Face 6791 6752 6759 12432 {rgb=(0 .2 .2)} Face 6792 6759 6749 12432 {rgb=(0 .2 .2)} Face 6793 6602 6611 12433 {rgb=(0 .2 .2)} Face 6794 6611 6492 12433 {rgb=(0 .2 .2)} Face 6795 6492 6464 12433 {rgb=(0 .2 .2)} Face 6796 6464 6602 12433 {rgb=(0 .2 .2)} Face 6797 6329 6398 12434 {rgb=(0 .2 .2)} Face 6798 6398 6450 12434 {rgb=(0 .2 .2)} Face 6799 6450 6045 12434 {rgb=(0 .2 .2)} Face 6800 6045 6329 12434 {rgb=(0 .2 .2)} Face 6801 5277 5274 12435 {rgb=(0 .2 .2)} Face 6802 5274 5768 12435 {rgb=(0 .2 .2)} Face 6803 5768 5764 12435 {rgb=(0 .2 .2)} Face 6804 5764 5277 12435 {rgb=(0 .2 .2)} Face 6805 6568 6684 12436 {rgb=(0 .2 .2)} Face 6806 6684 6650 12436 {rgb=(0 .2 .2)} Face 6807 6650 6547 12436 {rgb=(0 .2 .2)} Face 6808 6547 6568 12436 {rgb=(0 .2 .2)} Face 6809 6508 6150 12437 {rgb=(0 .2 .2)} Face 6810 6150 6077 12437 {rgb=(0 .2 .2)} Face 6811 6077 6360 12437 {rgb=(0 .2 .2)} Face 6812 6360 6508 12437 {rgb=(0 .2 .2)} Face 6813 6811 6782 12438 {rgb=(0 .2 .2)} Face 6814 6782 6793 12438 {rgb=(0 .2 .2)} Face 6815 6793 6824 12438 {rgb=(0 .2 .2)} Face 6816 6824 6811 12438 {rgb=(0 .2 .2)} Face 6817 6286 6297 12439 {rgb=(0 .2 .2)} Face 6818 6297 6679 12439 {rgb=(0 .2 .2)} Face 6819 6679 6669 12439 {rgb=(0 .2 .2)} Face 6820 6669 6286 12439 {rgb=(0 .2 .2)} Face 6821 6574 6531 12440 {rgb=(0 .2 .2)} Face 6822 6531 6628 12440 {rgb=(0 .2 .2)} Face 6823 6628 6665 12440 {rgb=(0 .2 .2)} Face 6824 6665 6574 12440 {rgb=(0 .2 .2)} Face 6825 6051 6126 12441 {rgb=(0 .2 .2)} Face 6826 6126 6465 12441 {rgb=(0 .2 .2)} Face 6827 6465 6347 12441 {rgb=(0 .2 .2)} Face 6828 6347 6051 12441 {rgb=(0 .2 .2)} Face 6829 6532 6557 12442 {rgb=(0 .2 .2)} Face 6830 6557 6525 12442 {rgb=(0 .2 .2)} Face 6831 6525 6527 12442 {rgb=(0 .2 .2)} Face 6832 6527 6532 12442 {rgb=(0 .2 .2)} Face 6833 6046 6050 12443 {rgb=(0 .2 .2)} Face 6834 6050 6345 12443 {rgb=(0 .2 .2)} Face 6835 6345 6335 12443 {rgb=(0 .2 .2)} Face 6836 6335 6046 12443 {rgb=(0 .2 .2)} Face 6837 5352 5342 12444 {rgb=(0 .2 .2)} Face 6838 5342 5691 12444 {rgb=(0 .2 .2)} Face 6839 5691 5687 12444 {rgb=(0 .2 .2)} Face 6840 5687 5352 12444 {rgb=(0 .2 .2)} Face 6841 5675 5371 12445 {rgb=(0 .2 .2)} Face 6842 5371 5395 12445 {rgb=(0 .2 .2)} Face 6843 5395 5657 12445 {rgb=(0 .2 .2)} Face 6844 5657 5675 12445 {rgb=(0 .2 .2)} Face 6845 5974 5930 12446 {rgb=(0 .2 .2)} Face 6846 5930 6161 12446 {rgb=(0 .2 .2)} Face 6847 6161 6237 12446 {rgb=(0 .2 .2)} Face 6848 6237 5974 12446 {rgb=(0 .2 .2)} Face 6849 6490 6405 12447 {rgb=(0 .2 .2)} Face 6850 6405 6458 12447 {rgb=(0 .2 .2)} Face 6851 6458 6522 12447 {rgb=(0 .2 .2)} Face 6852 6522 6490 12447 {rgb=(0 .2 .2)} Face 6853 6322 6285 12448 {rgb=(0 .2 .2)} Face 6854 6285 6026 12448 {rgb=(0 .2 .2)} Face 6855 6026 6041 12448 {rgb=(0 .2 .2)} Face 6856 6041 6322 12448 {rgb=(0 .2 .2)} Face 6857 5380 5369 12449 {rgb=(0 .2 .2)} Face 6858 5369 5677 12449 {rgb=(0 .2 .2)} Face 6859 5677 5669 12449 {rgb=(0 .2 .2)} Face 6860 5669 5380 12449 {rgb=(0 .2 .2)} Face 6861 5913 5900 12450 {rgb=(0 .2 .2)} Face 6862 5900 6089 12450 {rgb=(0 .2 .2)} Face 6863 6089 6130 12450 {rgb=(0 .2 .2)} Face 6864 6130 5913 12450 {rgb=(0 .2 .2)} Face 6865 6301 6192 12451 {rgb=(0 .2 .2)} Face 6866 6192 6217 12451 {rgb=(0 .2 .2)} Face 6867 6217 6332 12451 {rgb=(0 .2 .2)} Face 6868 6332 6301 12451 {rgb=(0 .2 .2)} Face 6869 6199 6142 12452 {rgb=(0 .2 .2)} Face 6870 6142 5960 12452 {rgb=(0 .2 .2)} Face 6871 5960 5992 12452 {rgb=(0 .2 .2)} Face 6872 5992 6199 12452 {rgb=(0 .2 .2)} Face 6873 5688 5351 12453 {rgb=(0 .2 .2)} Face 6874 5351 5396 12453 {rgb=(0 .2 .2)} Face 6875 5396 5656 12453 {rgb=(0 .2 .2)} Face 6876 5656 5688 12453 {rgb=(0 .2 .2)} Face 6877 5406 5356 12454 {rgb=(0 .2 .2)} Face 6878 5356 5685 12454 {rgb=(0 .2 .2)} Face 6879 5685 5645 12454 {rgb=(0 .2 .2)} Face 6880 5645 5406 12454 {rgb=(0 .2 .2)} Face 6881 6999 7017 12455 {rgb=(0 .2 .2)} Face 6882 7017 6654 12455 {rgb=(0 .2 .2)} Face 6883 6654 6638 12455 {rgb=(0 .2 .2)} Face 6884 6638 6999 12455 {rgb=(0 .2 .2)} Face 6885 7470 7494 12456 {rgb=(0 .2 .2)} Face 6886 7494 7160 12456 {rgb=(0 .2 .2)} Face 6887 7160 7141 12456 {rgb=(0 .2 .2)} Face 6888 7141 7470 12456 {rgb=(0 .2 .2)} Face 6889 8410 8446 12457 {rgb=(0 .2 .2)} Face 6890 8446 8045 12457 {rgb=(0 .2 .2)} Face 6891 8045 7992 12457 {rgb=(0 .2 .2)} Face 6892 7992 8410 12457 {rgb=(0 .2 .2)} Face 6893 8884 8986 12458 {rgb=(0 .2 .2)} Face 6894 8986 9015 12458 {rgb=(0 .2 .2)} Face 6895 9015 8922 12458 {rgb=(0 .2 .2)} Face 6896 8922 8884 12458 {rgb=(0 .2 .2)} Face 6897 8808 8940 12459 {rgb=(0 .2 .2)} Face 6898 8940 8904 12459 {rgb=(0 .2 .2)} Face 6899 8904 8765 12459 {rgb=(0 .2 .2)} Face 6900 8765 8808 12459 {rgb=(0 .2 .2)} Face 6901 8853 8967 12460 {rgb=(0 .2 .2)} Face 6902 8967 8976 12460 {rgb=(0 .2 .2)} Face 6903 8976 8858 12460 {rgb=(0 .2 .2)} Face 6904 8858 8853 12460 {rgb=(0 .2 .2)} Face 6905 8720 8836 12461 {rgb=(0 .2 .2)} Face 6906 8836 8915 12461 {rgb=(0 .2 .2)} Face 6907 8915 8798 12461 {rgb=(0 .2 .2)} Face 6908 8798 8720 12461 {rgb=(0 .2 .2)} Face 6909 8750 8880 12462 {rgb=(0 .2 .2)} Face 6910 8880 8837 12462 {rgb=(0 .2 .2)} Face 6911 8837 8713 12462 {rgb=(0 .2 .2)} Face 6912 8713 8750 12462 {rgb=(0 .2 .2)} Face 6913 8874 8898 12463 {rgb=(0 .2 .2)} Face 6914 8898 8780 12463 {rgb=(0 .2 .2)} Face 6915 8780 8786 12463 {rgb=(0 .2 .2)} Face 6916 8786 8874 12463 {rgb=(0 .2 .2)} Face 6917 5656 5669 12464 {rgb=(0 .2 .2)} Face 6918 5669 5960 12464 {rgb=(0 .2 .2)} Face 6919 5960 5925 12464 {rgb=(0 .2 .2)} Face 6920 5925 5656 12464 {rgb=(0 .2 .2)} Face 6921 6082 6142 12465 {rgb=(0 .2 .2)} Face 6922 6142 6217 12465 {rgb=(0 .2 .2)} Face 6923 6217 6132 12465 {rgb=(0 .2 .2)} Face 6924 6132 6082 12465 {rgb=(0 .2 .2)} Face 6925 6115 6192 12466 {rgb=(0 .2 .2)} Face 6926 6192 6089 12466 {rgb=(0 .2 .2)} Face 6927 6089 6054 12466 {rgb=(0 .2 .2)} Face 6928 6054 6115 12466 {rgb=(0 .2 .2)} Face 6929 5892 5900 12467 {rgb=(0 .2 .2)} Face 6930 5900 5650 12467 {rgb=(0 .2 .2)} Face 6931 5650 5645 12467 {rgb=(0 .2 .2)} Face 6932 5645 5892 12467 {rgb=(0 .2 .2)} Face 6933 5677 5687 12468 {rgb=(0 .2 .2)} Face 6934 5687 6026 12468 {rgb=(0 .2 .2)} Face 6935 6026 5992 12468 {rgb=(0 .2 .2)} Face 6936 5992 5677 12468 {rgb=(0 .2 .2)} Face 6937 6199 6285 12469 {rgb=(0 .2 .2)} Face 6938 6285 6458 12469 {rgb=(0 .2 .2)} Face 6939 6458 6332 12469 {rgb=(0 .2 .2)} Face 6940 6332 6199 12469 {rgb=(0 .2 .2)} Face 6941 6301 6405 12470 {rgb=(0 .2 .2)} Face 6942 6405 6161 12470 {rgb=(0 .2 .2)} Face 6943 6161 6130 12470 {rgb=(0 .2 .2)} Face 6944 6130 6301 12470 {rgb=(0 .2 .2)} Face 6945 5913 5930 12471 {rgb=(0 .2 .2)} Face 6946 5930 5657 12471 {rgb=(0 .2 .2)} Face 6947 5657 5652 12471 {rgb=(0 .2 .2)} Face 6948 5652 5913 12471 {rgb=(0 .2 .2)} Face 6949 5691 5694 12472 {rgb=(0 .2 .2)} Face 6950 5694 6046 12472 {rgb=(0 .2 .2)} Face 6951 6046 6041 12472 {rgb=(0 .2 .2)} Face 6952 6041 5691 12472 {rgb=(0 .2 .2)} Face 6953 6322 6335 12473 {rgb=(0 .2 .2)} Face 6954 6335 6527 12473 {rgb=(0 .2 .2)} Face 6955 6527 6522 12473 {rgb=(0 .2 .2)} Face 6956 6522 6322 12473 {rgb=(0 .2 .2)} Face 6957 6490 6525 12474 {rgb=(0 .2 .2)} Face 6958 6525 6329 12474 {rgb=(0 .2 .2)} Face 6959 6329 6237 12474 {rgb=(0 .2 .2)} Face 6960 6237 6490 12474 {rgb=(0 .2 .2)} Face 6961 5974 6045 12475 {rgb=(0 .2 .2)} Face 6962 6045 5693 12475 {rgb=(0 .2 .2)} Face 6963 5693 5675 12475 {rgb=(0 .2 .2)} Face 6964 5675 5974 12475 {rgb=(0 .2 .2)} Face 6965 6347 6531 12476 {rgb=(0 .2 .2)} Face 6966 6531 6532 12476 {rgb=(0 .2 .2)} Face 6967 6532 6345 12476 {rgb=(0 .2 .2)} Face 6968 6345 6347 12476 {rgb=(0 .2 .2)} Face 6969 6669 6782 12477 {rgb=(0 .2 .2)} Face 6970 6782 6628 12477 {rgb=(0 .2 .2)} Face 6971 6628 6465 12477 {rgb=(0 .2 .2)} Face 6972 6465 6669 12477 {rgb=(0 .2 .2)} Face 6973 6508 6650 12478 {rgb=(0 .2 .2)} Face 6974 6650 6793 12478 {rgb=(0 .2 .2)} Face 6975 6793 6679 12478 {rgb=(0 .2 .2)} Face 6976 6679 6508 12478 {rgb=(0 .2 .2)} Face 6977 5700 6063 12479 {rgb=(0 .2 .2)} Face 6978 6063 6077 12479 {rgb=(0 .2 .2)} Face 6979 6077 5705 12479 {rgb=(0 .2 .2)} Face 6980 5705 5700 12479 {rgb=(0 .2 .2)} Face 6981 6684 6610 12480 {rgb=(0 .2 .2)} Face 6982 6610 6752 12480 {rgb=(0 .2 .2)} Face 6983 6752 6824 12480 {rgb=(0 .2 .2)} Face 6984 6824 6684 12480 {rgb=(0 .2 .2)} Face 6985 6811 6751 12481 {rgb=(0 .2 .2)} Face 6986 6751 6602 12481 {rgb=(0 .2 .2)} Face 6987 6602 6665 12481 {rgb=(0 .2 .2)} Face 6988 6665 6811 12481 {rgb=(0 .2 .2)} Face 6989 6574 6464 12482 {rgb=(0 .2 .2)} Face 6990 6464 6398 12482 {rgb=(0 .2 .2)} Face 6991 6398 6557 12482 {rgb=(0 .2 .2)} Face 6992 6557 6574 12482 {rgb=(0 .2 .2)} Face 6993 5697 6051 12483 {rgb=(0 .2 .2)} Face 6994 6051 6050 12483 {rgb=(0 .2 .2)} Face 6995 6050 5696 12483 {rgb=(0 .2 .2)} Face 6996 5696 5697 12483 {rgb=(0 .2 .2)} Face 6997 5764 6286 12484 {rgb=(0 .2 .2)} Face 6998 6286 6126 12484 {rgb=(0 .2 .2)} Face 6999 6126 5719 12484 {rgb=(0 .2 .2)} Face 7000 5719 5764 12484 {rgb=(0 .2 .2)} Face 7001 5730 6150 12485 {rgb=(0 .2 .2)} Face 7002 6150 6297 12485 {rgb=(0 .2 .2)} Face 7003 6297 5768 12485 {rgb=(0 .2 .2)} Face 7004 5768 5730 12485 {rgb=(0 .2 .2)} Face 7005 6928 6717 12486 {rgb=(0 .2 .2)} Face 7006 6717 6789 12486 {rgb=(0 .2 .2)} Face 7007 6789 6998 12486 {rgb=(0 .2 .2)} Face 7008 6998 6928 12486 {rgb=(0 .2 .2)} Face 7009 7018 6820 12487 {rgb=(0 .2 .2)} Face 7010 6820 6795 12487 {rgb=(0 .2 .2)} Face 7011 6795 6992 12487 {rgb=(0 .2 .2)} Face 7012 6992 7018 12487 {rgb=(0 .2 .2)} Face 7013 6826 6661 12488 {rgb=(0 .2 .2)} Face 7014 6661 6298 12488 {rgb=(0 .2 .2)} Face 7015 6298 6470 12488 {rgb=(0 .2 .2)} Face 7016 6470 6826 12488 {rgb=(0 .2 .2)} Face 7017 6646 6770 12489 {rgb=(0 .2 .2)} Face 7018 6770 6429 12489 {rgb=(0 .2 .2)} Face 7019 6429 6303 12489 {rgb=(0 .2 .2)} Face 7020 6303 6646 12489 {rgb=(0 .2 .2)} Face 7021 6801 6946 12490 {rgb=(0 .2 .2)} Face 7022 6946 6937 12490 {rgb=(0 .2 .2)} Face 7023 6937 6767 12490 {rgb=(0 .2 .2)} Face 7024 6767 6801 12490 {rgb=(0 .2 .2)} Face 7025 6708 6829 12491 {rgb=(0 .2 .2)} Face 7026 6829 6915 12491 {rgb=(0 .2 .2)} Face 7027 6915 6763 12491 {rgb=(0 .2 .2)} Face 7028 6763 6708 12491 {rgb=(0 .2 .2)} Face 7029 5692 5761 12492 {rgb=(0 .2 .2)} Face 7030 5761 6272 12492 {rgb=(0 .2 .2)} Face 7031 6272 6043 12492 {rgb=(0 .2 .2)} Face 7032 6043 5692 12492 {rgb=(0 .2 .2)} Face 7033 6519 6870 12493 {rgb=(0 .2 .2)} Face 7034 6870 6901 12493 {rgb=(0 .2 .2)} Face 7035 6901 6548 12493 {rgb=(0 .2 .2)} Face 7036 6548 6519 12493 {rgb=(0 .2 .2)} Face 7037 6032 6259 12494 {rgb=(0 .2 .2)} Face 7038 6259 5760 12494 {rgb=(0 .2 .2)} Face 7039 5760 5689 12494 {rgb=(0 .2 .2)} Face 7040 5689 6032 12494 {rgb=(0 .2 .2)} Face 7041 5805 5817 12495 {rgb=(0 .2 .2)} Face 7042 5817 6438 12495 {rgb=(0 .2 .2)} Face 7043 6438 6394 12495 {rgb=(0 .2 .2)} Face 7044 6394 5805 12495 {rgb=(0 .2 .2)} Face 7045 7021 7030 12496 {rgb=(0 .2 .2)} Face 7046 7030 7085 12496 {rgb=(0 .2 .2)} Face 7047 7085 7066 12496 {rgb=(0 .2 .2)} Face 7048 7066 7021 12496 {rgb=(0 .2 .2)} Face 7049 6385 6420 12497 {rgb=(0 .2 .2)} Face 7050 6420 5812 12497 {rgb=(0 .2 .2)} Face 7051 5812 5802 12497 {rgb=(0 .2 .2)} Face 7052 5802 6385 12497 {rgb=(0 .2 .2)} Face 7053 5807 5771 12498 {rgb=(0 .2 .2)} Face 7054 5771 6309 12498 {rgb=(0 .2 .2)} Face 7055 6309 6400 12498 {rgb=(0 .2 .2)} Face 7056 6400 5807 12498 {rgb=(0 .2 .2)} Face 7057 7006 6935 12499 {rgb=(0 .2 .2)} Face 7058 6935 6995 12499 {rgb=(0 .2 .2)} Face 7059 6995 7064 12499 {rgb=(0 .2 .2)} Face 7060 7064 7006 12499 {rgb=(0 .2 .2)} Face 7061 6373 6279 12500 {rgb=(0 .2 .2)} Face 7062 6279 5763 12500 {rgb=(0 .2 .2)} Face 7063 5763 5793 12500 {rgb=(0 .2 .2)} Face 7064 5793 6373 12500 {rgb=(0 .2 .2)} Face 7065 5756 5736 12501 {rgb=(0 .2 .2)} Face 7066 5736 6160 12501 {rgb=(0 .2 .2)} Face 7067 6160 6231 12501 {rgb=(0 .2 .2)} Face 7068 6231 5756 12501 {rgb=(0 .2 .2)} Face 7069 6781 6577 12502 {rgb=(0 .2 .2)} Face 7070 6577 6605 12502 {rgb=(0 .2 .2)} Face 7071 6605 6852 12502 {rgb=(0 .2 .2)} Face 7072 6852 6781 12502 {rgb=(0 .2 .2)} Face 7073 6200 6172 12503 {rgb=(0 .2 .2)} Face 7074 6172 5739 12503 {rgb=(0 .2 .2)} Face 7075 5739 5745 12503 {rgb=(0 .2 .2)} Face 7076 5745 6200 12503 {rgb=(0 .2 .2)} Face 7077 5751 5854 12504 {rgb=(0 .2 .2)} Face 7078 5854 6593 12504 {rgb=(0 .2 .2)} Face 7079 6593 6228 12504 {rgb=(0 .2 .2)} Face 7080 6228 5751 12504 {rgb=(0 .2 .2)} Face 7081 6542 6877 12505 {rgb=(0 .2 .2)} Face 7082 6877 6886 12505 {rgb=(0 .2 .2)} Face 7083 6886 6533 12505 {rgb=(0 .2 .2)} Face 7084 6533 6542 12505 {rgb=(0 .2 .2)} Face 7085 6450 6492 12506 {rgb=(0 .2 .2)} Face 7086 6492 6629 12506 {rgb=(0 .2 .2)} Face 7087 6629 6640 12506 {rgb=(0 .2 .2)} Face 7088 6640 6450 12506 {rgb=(0 .2 .2)} Face 7089 6895 6863 12507 {rgb=(0 .2 .2)} Face 7090 6863 7190 12507 {rgb=(0 .2 .2)} Face 7091 7190 7244 12507 {rgb=(0 .2 .2)} Face 7092 7244 6895 12507 {rgb=(0 .2 .2)} Face 7093 7612 7554 12508 {rgb=(0 .2 .2)} Face 7094 7554 7941 12508 {rgb=(0 .2 .2)} Face 7095 7941 8016 12508 {rgb=(0 .2 .2)} Face 7096 8016 7612 12508 {rgb=(0 .2 .2)} Face 7097 8346 8278 12509 {rgb=(0 .2 .2)} Face 7098 8278 8459 12509 {rgb=(0 .2 .2)} Face 7099 8459 8522 12509 {rgb=(0 .2 .2)} Face 7100 8522 8346 12509 {rgb=(0 .2 .2)} Face 7101 8602 8536 12510 {rgb=(0 .2 .2)} Face 7102 8536 8482 12510 {rgb=(0 .2 .2)} Face 7103 8482 8529 12510 {rgb=(0 .2 .2)} Face 7104 8529 8602 12510 {rgb=(0 .2 .2)} Face 7105 8441 8407 12511 {rgb=(0 .2 .2)} Face 7106 8407 8352 12511 {rgb=(0 .2 .2)} Face 7107 8352 8339 12511 {rgb=(0 .2 .2)} Face 7108 8339 8441 12511 {rgb=(0 .2 .2)} Face 7109 8211 8246 12512 {rgb=(0 .2 .2)} Face 7110 8246 7940 12512 {rgb=(0 .2 .2)} Face 7111 7940 8008 12512 {rgb=(0 .2 .2)} Face 7112 8008 8211 12512 {rgb=(0 .2 .2)} Face 7113 7786 7719 12513 {rgb=(0 .2 .2)} Face 7114 7719 7471 12513 {rgb=(0 .2 .2)} Face 7115 7471 7510 12513 {rgb=(0 .2 .2)} Face 7116 7510 7786 12513 {rgb=(0 .2 .2)} Face 7117 7188 7158 12514 {rgb=(0 .2 .2)} Face 7118 7158 6809 12514 {rgb=(0 .2 .2)} Face 7119 6809 6845 12514 {rgb=(0 .2 .2)} Face 7120 6845 7188 12514 {rgb=(0 .2 .2)} Face 7121 6346 6317 12515 {rgb=(0 .2 .2)} Face 7122 6317 5776 12515 {rgb=(0 .2 .2)} Face 7123 5776 5778 12515 {rgb=(0 .2 .2)} Face 7124 5778 6346 12515 {rgb=(0 .2 .2)} Face 7125 5877 5871 12516 {rgb=(0 .2 .2)} Face 7126 5871 6654 12516 {rgb=(0 .2 .2)} Face 7127 6654 6702 12516 {rgb=(0 .2 .2)} Face 7128 6702 5877 12516 {rgb=(0 .2 .2)} Face 7129 7063 7017 12517 {rgb=(0 .2 .2)} Face 7130 7017 7160 12517 {rgb=(0 .2 .2)} Face 7131 7160 7201 12517 {rgb=(0 .2 .2)} Face 7132 7201 7063 12517 {rgb=(0 .2 .2)} Face 7133 7551 7494 12518 {rgb=(0 .2 .2)} Face 7134 7494 8045 12518 {rgb=(0 .2 .2)} Face 7135 8045 8166 12518 {rgb=(0 .2 .2)} Face 7136 8166 7551 12518 {rgb=(0 .2 .2)} Face 7137 8556 8446 12519 {rgb=(0 .2 .2)} Face 7138 8446 8757 12519 {rgb=(0 .2 .2)} Face 7139 8757 8933 12519 {rgb=(0 .2 .2)} Face 7140 8933 8556 12519 {rgb=(0 .2 .2)} Face 7141 9126 8948 12520 {rgb=(0 .2 .2)} Face 7142 8948 8969 12520 {rgb=(0 .2 .2)} Face 7143 8969 9147 12520 {rgb=(0 .2 .2)} Face 7144 9147 9126 12520 {rgb=(0 .2 .2)} Face 7145 9175 8992 12521 {rgb=(0 .2 .2)} Face 7146 8992 9015 12521 {rgb=(0 .2 .2)} Face 7147 9015 9213 12521 {rgb=(0 .2 .2)} Face 7148 9213 9175 12521 {rgb=(0 .2 .2)} Face 7149 9181 8986 12522 {rgb=(0 .2 .2)} Face 7150 8986 8893 12522 {rgb=(0 .2 .2)} Face 7151 8893 9097 12522 {rgb=(0 .2 .2)} Face 7152 9097 9181 12522 {rgb=(0 .2 .2)} Face 7153 9061 8861 12523 {rgb=(0 .2 .2)} Face 7154 8861 8904 12523 {rgb=(0 .2 .2)} Face 7155 8904 9116 12523 {rgb=(0 .2 .2)} Face 7156 9116 9061 12523 {rgb=(0 .2 .2)} Face 7157 9146 8940 12524 {rgb=(0 .2 .2)} Face 7158 8940 8976 12524 {rgb=(0 .2 .2)} Face 7159 8976 9171 12524 {rgb=(0 .2 .2)} Face 7160 9171 9146 12524 {rgb=(0 .2 .2)} Face 7161 9156 8967 12525 {rgb=(0 .2 .2)} Face 7162 8967 8915 12525 {rgb=(0 .2 .2)} Face 7163 8915 9112 12525 {rgb=(0 .2 .2)} Face 7164 9112 9156 12525 {rgb=(0 .2 .2)} Face 7165 9023 8836 12526 {rgb=(0 .2 .2)} Face 7166 8836 8751 12526 {rgb=(0 .2 .2)} Face 7167 8751 8960 12526 {rgb=(0 .2 .2)} Face 7168 8960 9023 12526 {rgb=(0 .2 .2)} Face 7169 8941 8725 12527 {rgb=(0 .2 .2)} Face 7170 8725 8768 12527 {rgb=(0 .2 .2)} Face 7171 8768 8973 12527 {rgb=(0 .2 .2)} Face 7172 8973 8941 12527 {rgb=(0 .2 .2)} Face 7173 8996 8807 12528 {rgb=(0 .2 .2)} Face 7174 8807 8837 12528 {rgb=(0 .2 .2)} Face 7175 8837 9027 12528 {rgb=(0 .2 .2)} Face 7176 9027 8996 12528 {rgb=(0 .2 .2)} Face 7177 9059 8880 12529 {rgb=(0 .2 .2)} Face 7178 8880 8898 12529 {rgb=(0 .2 .2)} Face 7179 8898 9073 12529 {rgb=(0 .2 .2)} Face 7180 9073 9059 12529 {rgb=(0 .2 .2)} Face 7181 8949 8711 12530 {rgb=(0 .2 .2)} Face 7182 8711 8699 12530 {rgb=(0 .2 .2)} Face 7183 8699 8943 12530 {rgb=(0 .2 .2)} Face 7184 8943 8949 12530 {rgb=(0 .2 .2)} Face 7185 8945 8702 12531 {rgb=(0 .2 .2)} Face 7186 8702 8719 12531 {rgb=(0 .2 .2)} Face 7187 8719 8955 12531 {rgb=(0 .2 .2)} Face 7188 8955 8945 12531 {rgb=(0 .2 .2)} Face 7189 8957 8726 12532 {rgb=(0 .2 .2)} Face 7190 8726 8722 12532 {rgb=(0 .2 .2)} Face 7191 8722 8953 12532 {rgb=(0 .2 .2)} Face 7192 8953 8957 12532 {rgb=(0 .2 .2)} Face 7193 8950 8716 12533 {rgb=(0 .2 .2)} Face 7194 8716 8712 12533 {rgb=(0 .2 .2)} Face 7195 8712 8944 12533 {rgb=(0 .2 .2)} Face 7196 8944 8950 12533 {rgb=(0 .2 .2)} Face 7197 8947 8717 12534 {rgb=(0 .2 .2)} Face 7198 8717 8733 12534 {rgb=(0 .2 .2)} Face 7199 8733 8956 12534 {rgb=(0 .2 .2)} Face 7200 8956 8947 12534 {rgb=(0 .2 .2)} Face 7201 8974 8754 12535 {rgb=(0 .2 .2)} Face 7202 8754 8793 12535 {rgb=(0 .2 .2)} Face 7203 8793 8995 12535 {rgb=(0 .2 .2)} Face 7204 8995 8974 12535 {rgb=(0 .2 .2)} Face 7205 9017 8822 12536 {rgb=(0 .2 .2)} Face 7206 8822 8852 12536 {rgb=(0 .2 .2)} Face 7207 8852 9038 12536 {rgb=(0 .2 .2)} Face 7208 9038 9017 12536 {rgb=(0 .2 .2)} Face 7209 9072 8883 12537 {rgb=(0 .2 .2)} Face 7210 8883 8909 12537 {rgb=(0 .2 .2)} Face 7211 8909 9108 12537 {rgb=(0 .2 .2)} Face 7212 9108 9072 12537 {rgb=(0 .2 .2)} Face 7213 9122 8919 12538 {rgb=(0 .2 .2)} Face 7214 8919 8917 12538 {rgb=(0 .2 .2)} Face 7215 8917 9117 12538 {rgb=(0 .2 .2)} Face 7216 9117 9122 12538 {rgb=(0 .2 .2)} Face 7217 9088 8902 12539 {rgb=(0 .2 .2)} Face 7218 8902 8857 12539 {rgb=(0 .2 .2)} Face 7219 8857 9029 12539 {rgb=(0 .2 .2)} Face 7220 9029 9088 12539 {rgb=(0 .2 .2)} Face 7221 8971 8778 12540 {rgb=(0 .2 .2)} Face 7222 8778 8659 12540 {rgb=(0 .2 .2)} Face 7223 8659 8870 12540 {rgb=(0 .2 .2)} Face 7224 8870 8971 12540 {rgb=(0 .2 .2)} Face 7225 8704 8537 12541 {rgb=(0 .2 .2)} Face 7226 8537 8419 12541 {rgb=(0 .2 .2)} Face 7227 8419 8539 12541 {rgb=(0 .2 .2)} Face 7228 8539 8704 12541 {rgb=(0 .2 .2)} Face 7229 8443 8338 12542 {rgb=(0 .2 .2)} Face 7230 8338 8282 12542 {rgb=(0 .2 .2)} Face 7231 8282 8403 12542 {rgb=(0 .2 .2)} Face 7232 8403 8443 12542 {rgb=(0 .2 .2)} Face 7233 9125 9047 12543 {rgb=(0 .2 .2)} Face 7234 9047 9048 12543 {rgb=(0 .2 .2)} Face 7235 9048 9068 12543 {rgb=(0 .2 .2)} Face 7236 9068 9125 12543 {rgb=(0 .2 .2)} Face 7237 9202 9166 12544 {rgb=(0 .2 .2)} Face 7238 9166 9093 12544 {rgb=(0 .2 .2)} Face 7239 9093 9106 12544 {rgb=(0 .2 .2)} Face 7240 9106 9202 12544 {rgb=(0 .2 .2)} Face 7241 9024 9057 12545 {rgb=(0 .2 .2)} Face 7242 9057 9043 12545 {rgb=(0 .2 .2)} Face 7243 9043 9040 12545 {rgb=(0 .2 .2)} Face 7244 9040 9024 12545 {rgb=(0 .2 .2)} Face 7245 9096 9127 12546 {rgb=(0 .2 .2)} Face 7246 9127 9063 12546 {rgb=(0 .2 .2)} Face 7247 9063 9054 12546 {rgb=(0 .2 .2)} Face 7248 9054 9096 12546 {rgb=(0 .2 .2)} Face 7249 9204 9221 12547 {rgb=(0 .2 .2)} Face 7250 9221 9110 12547 {rgb=(0 .2 .2)} Face 7251 9110 9111 12547 {rgb=(0 .2 .2)} Face 7252 9111 9204 12547 {rgb=(0 .2 .2)} Face 7253 9157 9184 12548 {rgb=(0 .2 .2)} Face 7254 9184 9115 12548 {rgb=(0 .2 .2)} Face 7255 9115 9128 12548 {rgb=(0 .2 .2)} Face 7256 9128 9157 12548 {rgb=(0 .2 .2)} Face 7257 9245 9179 12549 {rgb=(0 .2 .2)} Face 7258 9179 9148 12549 {rgb=(0 .2 .2)} Face 7259 9148 9186 12549 {rgb=(0 .2 .2)} Face 7260 9186 9245 12549 {rgb=(0 .2 .2)} Face 7261 8343 8504 12550 {rgb=(0 .2 .2)} Face 7262 8504 8914 12550 {rgb=(0 .2 .2)} Face 7263 8914 8687 12550 {rgb=(0 .2 .2)} Face 7264 8687 8343 12550 {rgb=(0 .2 .2)} Face 7265 8179 8486 12551 {rgb=(0 .2 .2)} Face 7266 8486 8308 12551 {rgb=(0 .2 .2)} Face 7267 8308 7963 12551 {rgb=(0 .2 .2)} Face 7268 7963 8179 12551 {rgb=(0 .2 .2)} Face 7269 7789 8157 12552 {rgb=(0 .2 .2)} Face 7270 8157 7972 12552 {rgb=(0 .2 .2)} Face 7271 7972 7618 12552 {rgb=(0 .2 .2)} Face 7272 7618 7789 12552 {rgb=(0 .2 .2)} Face 7273 7616 8022 12553 {rgb=(0 .2 .2)} Face 7274 8022 7955 12553 {rgb=(0 .2 .2)} Face 7275 7955 7577 12553 {rgb=(0 .2 .2)} Face 7276 7577 7616 12553 {rgb=(0 .2 .2)} Face 7277 7552 7901 12554 {rgb=(0 .2 .2)} Face 7278 7901 7844 12554 {rgb=(0 .2 .2)} Face 7279 7844 7540 12554 {rgb=(0 .2 .2)} Face 7280 7540 7552 12554 {rgb=(0 .2 .2)} Face 7281 7569 7712 12555 {rgb=(0 .2 .2)} Face 7282 7712 7848 12555 {rgb=(0 .2 .2)} Face 7283 7848 7702 12555 {rgb=(0 .2 .2)} Face 7284 7702 7569 12555 {rgb=(0 .2 .2)} Face 7285 9261 9214 12556 {rgb=(0 .2 .2)} Face 7286 9214 9227 12556 {rgb=(0 .2 .2)} Face 7287 9227 9251 12556 {rgb=(0 .2 .2)} Face 7288 9251 9261 12556 {rgb=(0 .2 .2)} Face 7289 9234 9228 12557 {rgb=(0 .2 .2)} Face 7290 9228 9216 12557 {rgb=(0 .2 .2)} Face 7291 9216 9211 12557 {rgb=(0 .2 .2)} Face 7292 9211 9234 12557 {rgb=(0 .2 .2)} Face 7293 9134 9167 12558 {rgb=(0 .2 .2)} Face 7294 9167 9092 12558 {rgb=(0 .2 .2)} Face 7295 9092 8988 12558 {rgb=(0 .2 .2)} Face 7296 8988 9134 12558 {rgb=(0 .2 .2)} Face 7297 8799 8977 12559 {rgb=(0 .2 .2)} Face 7298 8977 8821 12559 {rgb=(0 .2 .2)} Face 7299 8821 8541 12559 {rgb=(0 .2 .2)} Face 7300 8541 8799 12559 {rgb=(0 .2 .2)} Face 7301 8409 8634 12560 {rgb=(0 .2 .2)} Face 7302 8634 8495 12560 {rgb=(0 .2 .2)} Face 7303 8495 8302 12560 {rgb=(0 .2 .2)} Face 7304 8302 8409 12560 {rgb=(0 .2 .2)} Face 7305 8349 8520 12561 {rgb=(0 .2 .2)} Face 7306 8520 8457 12561 {rgb=(0 .2 .2)} Face 7307 8457 8290 12561 {rgb=(0 .2 .2)} Face 7308 8290 8349 12561 {rgb=(0 .2 .2)} Face 7309 8220 8388 12562 {rgb=(0 .2 .2)} Face 7310 8388 8281 12562 {rgb=(0 .2 .2)} Face 7311 8281 8129 12562 {rgb=(0 .2 .2)} Face 7312 8129 8220 12562 {rgb=(0 .2 .2)} Face 7313 5979 5748 12563 {rgb=(0 .2 .2)} Face 7314 5748 5750 12563 {rgb=(0 .2 .2)} Face 7315 5750 6114 12563 {rgb=(0 .2 .2)} Face 7316 6114 5979 12563 {rgb=(0 .2 .2)} Face 7317 7503 8090 12564 {rgb=(0 .2 .2)} Face 7318 8090 7870 12564 {rgb=(0 .2 .2)} Face 7319 7870 7371 12564 {rgb=(0 .2 .2)} Face 7320 7371 7503 12564 {rgb=(0 .2 .2)} Face 7321 6693 6908 12565 {rgb=(0 .2 .2)} Face 7322 6908 6876 12565 {rgb=(0 .2 .2)} Face 7323 6876 6759 12565 {rgb=(0 .2 .2)} Face 7324 6759 6693 12565 {rgb=(0 .2 .2)} Face 7325 7239 7715 12566 {rgb=(0 .2 .2)} Face 7326 7715 7574 12566 {rgb=(0 .2 .2)} Face 7327 7574 7128 12566 {rgb=(0 .2 .2)} Face 7328 7128 7239 12566 {rgb=(0 .2 .2)} Face 7329 6749 6796 12567 {rgb=(0 .2 .2)} Face 7330 6796 6695 12567 {rgb=(0 .2 .2)} Face 7331 6695 6611 12567 {rgb=(0 .2 .2)} Face 7332 6611 6749 12567 {rgb=(0 .2 .2)} Face 7333 7020 7438 12568 {rgb=(0 .2 .2)} Face 7334 7438 7286 12568 {rgb=(0 .2 .2)} Face 7335 7286 6914 12568 {rgb=(0 .2 .2)} Face 7336 6914 7020 12568 {rgb=(0 .2 .2)} Face 7337 6245 6607 12569 {rgb=(0 .2 .2)} Face 7338 6607 6496 12569 {rgb=(0 .2 .2)} Face 7339 6496 5944 12569 {rgb=(0 .2 .2)} Face 7340 5944 6245 12569 {rgb=(0 .2 .2)} Face 7341 6909 7273 12570 {rgb=(0 .2 .2)} Face 7342 7273 7228 12570 {rgb=(0 .2 .2)} Face 7343 7228 6905 12570 {rgb=(0 .2 .2)} Face 7344 6905 6909 12570 {rgb=(0 .2 .2)} Face 7345 5809 6412 12571 {rgb=(0 .2 .2)} Face 7346 6412 6365 12571 {rgb=(0 .2 .2)} Face 7347 6365 5789 12571 {rgb=(0 .2 .2)} Face 7348 5789 5809 12571 {rgb=(0 .2 .2)} Face 7349 6892 7208 12572 {rgb=(0 .2 .2)} Face 7350 7208 7205 12572 {rgb=(0 .2 .2)} Face 7351 7205 6865 12572 {rgb=(0 .2 .2)} Face 7352 6865 6892 12572 {rgb=(0 .2 .2)} Face 7353 6119 5713 12573 {rgb=(0 .2 .2)} Face 7354 5713 5755 12573 {rgb=(0 .2 .2)} Face 7355 5755 6260 12573 {rgb=(0 .2 .2)} Face 7356 6260 6119 12573 {rgb=(0 .2 .2)} Face 7357 5380 5396 12574 {rgb=(0 .2 .2)} Face 7358 5396 5121 12574 {rgb=(0 .2 .2)} Face 7359 5121 5088 12574 {rgb=(0 .2 .2)} Face 7360 5088 5380 12574 {rgb=(0 .2 .2)} Face 7361 4899 4956 12575 {rgb=(0 .2 .2)} Face 7362 4956 4911 12575 {rgb=(0 .2 .2)} Face 7363 4911 4827 12575 {rgb=(0 .2 .2)} Face 7364 4827 4899 12575 {rgb=(0 .2 .2)} Face 7365 4850 4926 12576 {rgb=(0 .2 .2)} Face 7366 4926 4985 12576 {rgb=(0 .2 .2)} Face 7367 4985 4949 12576 {rgb=(0 .2 .2)} Face 7368 4949 4850 12576 {rgb=(0 .2 .2)} Face 7369 5145 5154 12577 {rgb=(0 .2 .2)} Face 7370 5154 5406 12577 {rgb=(0 .2 .2)} Face 7371 5406 5400 12577 {rgb=(0 .2 .2)} Face 7372 5400 5145 12577 {rgb=(0 .2 .2)} Face 7373 5352 5369 12578 {rgb=(0 .2 .2)} Face 7374 5369 5054 12578 {rgb=(0 .2 .2)} Face 7375 5054 5015 12578 {rgb=(0 .2 .2)} Face 7376 5015 5352 12578 {rgb=(0 .2 .2)} Face 7377 4760 4843 12579 {rgb=(0 .2 .2)} Face 7378 4843 4716 12579 {rgb=(0 .2 .2)} Face 7379 4716 4588 12579 {rgb=(0 .2 .2)} Face 7380 4588 4760 12579 {rgb=(0 .2 .2)} Face 7381 4642 4745 12580 {rgb=(0 .2 .2)} Face 7382 4745 4913 12580 {rgb=(0 .2 .2)} Face 7383 4913 4880 12580 {rgb=(0 .2 .2)} Face 7384 4880 4642 12580 {rgb=(0 .2 .2)} Face 7385 5117 5131 12581 {rgb=(0 .2 .2)} Face 7386 5131 5399 12581 {rgb=(0 .2 .2)} Face 7387 5399 5395 12581 {rgb=(0 .2 .2)} Face 7388 5395 5117 12581 {rgb=(0 .2 .2)} Face 7389 5339 5342 12582 {rgb=(0 .2 .2)} Face 7390 5342 4999 12582 {rgb=(0 .2 .2)} Face 7391 4999 4993 12582 {rgb=(0 .2 .2)} Face 7392 4993 5339 12582 {rgb=(0 .2 .2)} Face 7393 4714 4725 12583 {rgb=(0 .2 .2)} Face 7394 4725 4520 12583 {rgb=(0 .2 .2)} Face 7395 4520 4515 12583 {rgb=(0 .2 .2)} Face 7396 4515 4714 12583 {rgb=(0 .2 .2)} Face 7397 4517 4554 12584 {rgb=(0 .2 .2)} Face 7398 4554 4806 12584 {rgb=(0 .2 .2)} Face 7399 4806 4719 12584 {rgb=(0 .2 .2)} Face 7400 4719 4517 12584 {rgb=(0 .2 .2)} Face 7401 4995 5073 12585 {rgb=(0 .2 .2)} Face 7402 5073 5371 12585 {rgb=(0 .2 .2)} Face 7403 5371 5340 12585 {rgb=(0 .2 .2)} Face 7404 5340 4995 12585 {rgb=(0 .2 .2)} Face 7405 4510 4702 12586 {rgb=(0 .2 .2)} Face 7406 4702 4704 12586 {rgb=(0 .2 .2)} Face 7407 4704 4509 12586 {rgb=(0 .2 .2)} Face 7408 4509 4510 12586 {rgb=(0 .2 .2)} Face 7409 4259 4369 12587 {rgb=(0 .2 .2)} Face 7410 4369 4580 12587 {rgb=(0 .2 .2)} Face 7411 4580 4410 12587 {rgb=(0 .2 .2)} Face 7412 4410 4259 12587 {rgb=(0 .2 .2)} Face 7413 4389 4535 12588 {rgb=(0 .2 .2)} Face 7414 4535 4359 12588 {rgb=(0 .2 .2)} Face 7415 4359 4249 12588 {rgb=(0 .2 .2)} Face 7416 4249 4389 12588 {rgb=(0 .2 .2)} Face 7417 4977 5333 12589 {rgb=(0 .2 .2)} Face 7418 5333 5329 12589 {rgb=(0 .2 .2)} Face 7419 5329 4961 12589 {rgb=(0 .2 .2)} Face 7420 4961 4977 12589 {rgb=(0 .2 .2)} Face 7421 4428 4354 12590 {rgb=(0 .2 .2)} Face 7422 4354 4221 12590 {rgb=(0 .2 .2)} Face 7423 4221 4290 12590 {rgb=(0 .2 .2)} Face 7424 4290 4428 12590 {rgb=(0 .2 .2)} Face 7425 4291 4232 12591 {rgb=(0 .2 .2)} Face 7426 4232 4374 12591 {rgb=(0 .2 .2)} Face 7427 4374 4436 12591 {rgb=(0 .2 .2)} Face 7428 4436 4291 12591 {rgb=(0 .2 .2)} Face 7429 4581 4466 12592 {rgb=(0 .2 .2)} Face 7430 4466 4483 12592 {rgb=(0 .2 .2)} Face 7431 4483 4649 12592 {rgb=(0 .2 .2)} Face 7432 4649 4581 12592 {rgb=(0 .2 .2)} Face 7433 4988 5335 12593 {rgb=(0 .2 .2)} Face 7434 5335 5336 12593 {rgb=(0 .2 .2)} Face 7435 5336 4989 12593 {rgb=(0 .2 .2)} Face 7436 4989 4988 12593 {rgb=(0 .2 .2)} Face 7437 4759 5277 12594 {rgb=(0 .2 .2)} Face 7438 5277 5316 12594 {rgb=(0 .2 .2)} Face 7439 5316 4916 12594 {rgb=(0 .2 .2)} Face 7440 4916 4759 12594 {rgb=(0 .2 .2)} Face 7441 4891 5307 12595 {rgb=(0 .2 .2)} Face 7442 5307 5274 12595 {rgb=(0 .2 .2)} Face 7443 5274 4749 12595 {rgb=(0 .2 .2)} Face 7444 4749 4891 12595 {rgb=(0 .2 .2)} Face 7445 4327 4118 12596 {rgb=(0 .2 .2)} Face 7446 4118 4041 12596 {rgb=(0 .2 .2)} Face 7447 4041 4252 12596 {rgb=(0 .2 .2)} Face 7448 4252 4327 12596 {rgb=(0 .2 .2)} Face 7449 4225 4020 12597 {rgb=(0 .2 .2)} Face 7450 4020 4047 12597 {rgb=(0 .2 .2)} Face 7451 4047 4247 12597 {rgb=(0 .2 .2)} Face 7452 4247 4225 12597 {rgb=(0 .2 .2)} Face 7453 4380 4219 12598 {rgb=(0 .2 .2)} Face 7454 4219 4575 12598 {rgb=(0 .2 .2)} Face 7455 4575 4748 12598 {rgb=(0 .2 .2)} Face 7456 4748 4380 12598 {rgb=(0 .2 .2)} Face 7457 4270 4393 12599 {rgb=(0 .2 .2)} Face 7458 4393 4744 12599 {rgb=(0 .2 .2)} Face 7459 4744 4617 12599 {rgb=(0 .2 .2)} Face 7460 4617 4270 12599 {rgb=(0 .2 .2)} Face 7461 4099 4242 12600 {rgb=(0 .2 .2)} Face 7462 4242 4273 12600 {rgb=(0 .2 .2)} Face 7463 4273 4108 12600 {rgb=(0 .2 .2)} Face 7464 4108 4099 12600 {rgb=(0 .2 .2)} Face 7465 4216 4335 12601 {rgb=(0 .2 .2)} Face 7466 4335 4278 12601 {rgb=(0 .2 .2)} Face 7467 4278 4130 12601 {rgb=(0 .2 .2)} Face 7468 4130 4216 12601 {rgb=(0 .2 .2)} Face 7469 5280 5341 12602 {rgb=(0 .2 .2)} Face 7470 5341 4997 12602 {rgb=(0 .2 .2)} Face 7471 4997 4773 12602 {rgb=(0 .2 .2)} Face 7472 4773 5280 12602 {rgb=(0 .2 .2)} Face 7473 4176 4524 12603 {rgb=(0 .2 .2)} Face 7474 4524 4492 12603 {rgb=(0 .2 .2)} Face 7475 4492 4145 12603 {rgb=(0 .2 .2)} Face 7476 4145 4176 12603 {rgb=(0 .2 .2)} Face 7477 4785 5008 12604 {rgb=(0 .2 .2)} Face 7478 5008 5348 12604 {rgb=(0 .2 .2)} Face 7479 5348 5281 12604 {rgb=(0 .2 .2)} Face 7480 5281 4785 12604 {rgb=(0 .2 .2)} Face 7481 5228 5240 12605 {rgb=(0 .2 .2)} Face 7482 5240 4653 12605 {rgb=(0 .2 .2)} Face 7483 4653 4608 12605 {rgb=(0 .2 .2)} Face 7484 4608 5228 12605 {rgb=(0 .2 .2)} Face 7485 4009 4017 12606 {rgb=(0 .2 .2)} Face 7486 4017 3973 12606 {rgb=(0 .2 .2)} Face 7487 3973 3955 12606 {rgb=(0 .2 .2)} Face 7488 3955 4009 12606 {rgb=(0 .2 .2)} Face 7489 4627 4661 12607 {rgb=(0 .2 .2)} Face 7490 4661 5244 12607 {rgb=(0 .2 .2)} Face 7491 5244 5233 12607 {rgb=(0 .2 .2)} Face 7492 5233 4627 12607 {rgb=(0 .2 .2)} Face 7493 5271 5238 12608 {rgb=(0 .2 .2)} Face 7494 5238 4647 12608 {rgb=(0 .2 .2)} Face 7495 4647 4739 12608 {rgb=(0 .2 .2)} Face 7496 4739 5271 12608 {rgb=(0 .2 .2)} Face 7497 4111 4034 12609 {rgb=(0 .2 .2)} Face 7498 4034 3975 12609 {rgb=(0 .2 .2)} Face 7499 3975 4044 12609 {rgb=(0 .2 .2)} Face 7500 4044 4111 12609 {rgb=(0 .2 .2)} Face 7501 4766 4674 12610 {rgb=(0 .2 .2)} Face 7502 4674 5253 12610 {rgb=(0 .2 .2)} Face 7503 5253 5278 12610 {rgb=(0 .2 .2)} Face 7504 5278 4766 12610 {rgb=(0 .2 .2)} Face 7505 5303 5285 12611 {rgb=(0 .2 .2)} Face 7506 5285 4812 12611 {rgb=(0 .2 .2)} Face 7507 4812 4881 12611 {rgb=(0 .2 .2)} Face 7508 4881 5303 12611 {rgb=(0 .2 .2)} Face 7509 4464 4260 12612 {rgb=(0 .2 .2)} Face 7510 4260 4192 12612 {rgb=(0 .2 .2)} Face 7511 4192 4433 12612 {rgb=(0 .2 .2)} Face 7512 4433 4464 12612 {rgb=(0 .2 .2)} Face 7513 4870 4842 12613 {rgb=(0 .2 .2)} Face 7514 4842 5295 12613 {rgb=(0 .2 .2)} Face 7515 5295 5301 12613 {rgb=(0 .2 .2)} Face 7516 5301 4870 12613 {rgb=(0 .2 .2)} Face 7517 5191 5290 12614 {rgb=(0 .2 .2)} Face 7518 5290 4816 12614 {rgb=(0 .2 .2)} Face 7519 4816 4447 12614 {rgb=(0 .2 .2)} Face 7520 4447 5191 12614 {rgb=(0 .2 .2)} Face 7521 4169 4498 12615 {rgb=(0 .2 .2)} Face 7522 4498 4507 12615 {rgb=(0 .2 .2)} Face 7523 4507 4160 12615 {rgb=(0 .2 .2)} Face 7524 4160 4169 12615 {rgb=(0 .2 .2)} Face 7525 4552 4596 12616 {rgb=(0 .2 .2)} Face 7526 4596 4400 12616 {rgb=(0 .2 .2)} Face 7527 4400 4409 12616 {rgb=(0 .2 .2)} Face 7528 4409 4552 12616 {rgb=(0 .2 .2)} Face 7529 4183 4151 12617 {rgb=(0 .2 .2)} Face 7530 4151 3800 12617 {rgb=(0 .2 .2)} Face 7531 3800 3853 12617 {rgb=(0 .2 .2)} Face 7532 3853 4183 12617 {rgb=(0 .2 .2)} Face 7533 3489 3434 12618 {rgb=(0 .2 .2)} Face 7534 3434 3019 12618 {rgb=(0 .2 .2)} Face 7535 3019 3094 12618 {rgb=(0 .2 .2)} Face 7536 3094 3489 12618 {rgb=(0 .2 .2)} Face 7537 2768 2703 12619 {rgb=(0 .2 .2)} Face 7538 2703 2523 12619 {rgb=(0 .2 .2)} Face 7539 2523 2588 12619 {rgb=(0 .2 .2)} Face 7540 2588 2768 12619 {rgb=(0 .2 .2)} Face 7541 2508 2442 12620 {rgb=(0 .2 .2)} Face 7542 2442 2516 12620 {rgb=(0 .2 .2)} Face 7543 2516 2565 12620 {rgb=(0 .2 .2)} Face 7544 2565 2508 12620 {rgb=(0 .2 .2)} Face 7545 2641 2608 12621 {rgb=(0 .2 .2)} Face 7546 2608 2711 12621 {rgb=(0 .2 .2)} Face 7547 2711 2750 12621 {rgb=(0 .2 .2)} Face 7548 2750 2641 12621 {rgb=(0 .2 .2)} Face 7549 2874 2834 12622 {rgb=(0 .2 .2)} Face 7550 2834 3025 12622 {rgb=(0 .2 .2)} Face 7551 3025 3095 12622 {rgb=(0 .2 .2)} Face 7552 3095 2874 12622 {rgb=(0 .2 .2)} Face 7553 3322 3260 12623 {rgb=(0 .2 .2)} Face 7554 3260 3534 12623 {rgb=(0 .2 .2)} Face 7555 3534 3568 12623 {rgb=(0 .2 .2)} Face 7556 3568 3322 12623 {rgb=(0 .2 .2)} Face 7557 3885 3855 12624 {rgb=(0 .2 .2)} Face 7558 3855 4199 12624 {rgb=(0 .2 .2)} Face 7559 4199 4234 12624 {rgb=(0 .2 .2)} Face 7560 4234 3885 12624 {rgb=(0 .2 .2)} Face 7561 4731 4703 12625 {rgb=(0 .2 .2)} Face 7562 4703 5264 12625 {rgb=(0 .2 .2)} Face 7563 5264 5266 12625 {rgb=(0 .2 .2)} Face 7564 5266 4731 12625 {rgb=(0 .2 .2)} Face 7565 5174 5168 12626 {rgb=(0 .2 .2)} Face 7566 5168 4339 12626 {rgb=(0 .2 .2)} Face 7567 4339 4385 12626 {rgb=(0 .2 .2)} Face 7568 4385 5174 12626 {rgb=(0 .2 .2)} Face 7569 4021 3977 12627 {rgb=(0 .2 .2)} Face 7570 3977 3841 12627 {rgb=(0 .2 .2)} Face 7571 3841 3883 12627 {rgb=(0 .2 .2)} Face 7572 3883 4021 12627 {rgb=(0 .2 .2)} Face 7573 3547 3494 12628 {rgb=(0 .2 .2)} Face 7574 3494 2877 12628 {rgb=(0 .2 .2)} Face 7575 2877 2992 12628 {rgb=(0 .2 .2)} Face 7576 2992 3547 12628 {rgb=(0 .2 .2)} Face 7577 2601 2490 12629 {rgb=(0 .2 .2)} Face 7578 2490 2112 12629 {rgb=(0 .2 .2)} Face 7579 2112 2287 12629 {rgb=(0 .2 .2)} Face 7580 2287 2601 12629 {rgb=(0 .2 .2)} Face 7581 2096 1919 12630 {rgb=(0 .2 .2)} Face 7582 1919 1898 12630 {rgb=(0 .2 .2)} Face 7583 1898 2074 12630 {rgb=(0 .2 .2)} Face 7584 2074 2096 12630 {rgb=(0 .2 .2)} Face 7585 2053 1870 12631 {rgb=(0 .2 .2)} Face 7586 1870 1832 12631 {rgb=(0 .2 .2)} Face 7587 1832 2030 12631 {rgb=(0 .2 .2)} Face 7588 2030 2053 12631 {rgb=(0 .2 .2)} Face 7589 2059 1864 12632 {rgb=(0 .2 .2)} Face 7590 1864 1948 12632 {rgb=(0 .2 .2)} Face 7591 1948 2151 12632 {rgb=(0 .2 .2)} Face 7592 2151 2059 12632 {rgb=(0 .2 .2)} Face 7593 2183 1984 12633 {rgb=(0 .2 .2)} Face 7594 1984 1929 12633 {rgb=(0 .2 .2)} Face 7595 1929 2141 12633 {rgb=(0 .2 .2)} Face 7596 2141 2183 12633 {rgb=(0 .2 .2)} Face 7597 2104 1899 12634 {rgb=(0 .2 .2)} Face 7598 1899 1874 12634 {rgb=(0 .2 .2)} Face 7599 1874 2069 12634 {rgb=(0 .2 .2)} Face 7600 2069 2104 12634 {rgb=(0 .2 .2)} Face 7601 2076 1889 12635 {rgb=(0 .2 .2)} Face 7602 1889 1933 12635 {rgb=(0 .2 .2)} Face 7603 1933 2130 12635 {rgb=(0 .2 .2)} Face 7604 2130 2076 12635 {rgb=(0 .2 .2)} Face 7605 2207 2022 12636 {rgb=(0 .2 .2)} Face 7606 2022 2085 12636 {rgb=(0 .2 .2)} Face 7607 2085 2295 12636 {rgb=(0 .2 .2)} Face 7608 2295 2207 12636 {rgb=(0 .2 .2)} Face 7609 2322 2103 12637 {rgb=(0 .2 .2)} Face 7610 2103 2071 12637 {rgb=(0 .2 .2)} Face 7611 2071 2278 12637 {rgb=(0 .2 .2)} Face 7612 2278 2322 12637 {rgb=(0 .2 .2)} Face 7613 2238 2049 12638 {rgb=(0 .2 .2)} Face 7614 2049 2018 12638 {rgb=(0 .2 .2)} Face 7615 2018 2205 12638 {rgb=(0 .2 .2)} Face 7616 2205 2238 12638 {rgb=(0 .2 .2)} Face 7617 2165 1986 12639 {rgb=(0 .2 .2)} Face 7618 1986 1972 12639 {rgb=(0 .2 .2)} Face 7619 1972 2146 12639 {rgb=(0 .2 .2)} Face 7620 2146 2165 12639 {rgb=(0 .2 .2)} Face 7621 2336 2095 12640 {rgb=(0 .2 .2)} Face 7622 2095 2101 12640 {rgb=(0 .2 .2)} Face 7623 2101 2347 12640 {rgb=(0 .2 .2)} Face 7624 2347 2336 12640 {rgb=(0 .2 .2)} Face 7625 2344 2099 12641 {rgb=(0 .2 .2)} Face 7626 2099 2090 12641 {rgb=(0 .2 .2)} Face 7627 2090 2329 12641 {rgb=(0 .2 .2)} Face 7628 2329 2344 12641 {rgb=(0 .2 .2)} Face 7629 2321 2088 12642 {rgb=(0 .2 .2)} Face 7630 2088 2092 12642 {rgb=(0 .2 .2)} Face 7631 2092 2325 12642 {rgb=(0 .2 .2)} Face 7632 2325 2321 12642 {rgb=(0 .2 .2)} Face 7633 2290 2070 12643 {rgb=(0 .2 .2)} Face 7634 2070 2050 12643 {rgb=(0 .2 .2)} Face 7635 2050 2252 12643 {rgb=(0 .2 .2)} Face 7636 2252 2290 12643 {rgb=(0 .2 .2)} Face 7637 2222 2028 12644 {rgb=(0 .2 .2)} Face 7638 2028 2007 12644 {rgb=(0 .2 .2)} Face 7639 2007 2191 12644 {rgb=(0 .2 .2)} Face 7640 2191 2222 12644 {rgb=(0 .2 .2)} Face 7641 2162 1973 12645 {rgb=(0 .2 .2)} Face 7642 1973 1937 12645 {rgb=(0 .2 .2)} Face 7643 1937 2136 12645 {rgb=(0 .2 .2)} Face 7644 2136 2162 12645 {rgb=(0 .2 .2)} Face 7645 2125 1923 12646 {rgb=(0 .2 .2)} Face 7646 1923 1928 12646 {rgb=(0 .2 .2)} Face 7647 1928 2128 12646 {rgb=(0 .2 .2)} Face 7648 2128 2125 12646 {rgb=(0 .2 .2)} Face 7649 2143 1957 12647 {rgb=(0 .2 .2)} Face 7650 1957 2016 12647 {rgb=(0 .2 .2)} Face 7651 2016 2186 12647 {rgb=(0 .2 .2)} Face 7652 2186 2143 12647 {rgb=(0 .2 .2)} Face 7653 2265 2072 12648 {rgb=(0 .2 .2)} Face 7654 2072 2174 12648 {rgb=(0 .2 .2)} Face 7655 2174 2386 12648 {rgb=(0 .2 .2)} Face 7656 2386 2265 12648 {rgb=(0 .2 .2)} Face 7657 2507 2342 12649 {rgb=(0 .2 .2)} Face 7658 2342 2505 12649 {rgb=(0 .2 .2)} Face 7659 2505 2627 12649 {rgb=(0 .2 .2)} Face 7660 2627 2507 12649 {rgb=(0 .2 .2)} Face 7661 2712 2605 12650 {rgb=(0 .2 .2)} Face 7662 2605 2645 12650 {rgb=(0 .2 .2)} Face 7663 2645 2766 12650 {rgb=(0 .2 .2)} Face 7664 2766 2712 12650 {rgb=(0 .2 .2)} Face 7665 1998 1920 12651 {rgb=(0 .2 .2)} Face 7666 1920 1977 12651 {rgb=(0 .2 .2)} Face 7667 1977 1997 12651 {rgb=(0 .2 .2)} Face 7668 1997 1998 12651 {rgb=(0 .2 .2)} Face 7669 1879 1843 12652 {rgb=(0 .2 .2)} Face 7670 1843 1939 12652 {rgb=(0 .2 .2)} Face 7671 1939 1952 12652 {rgb=(0 .2 .2)} Face 7672 1952 1879 12652 {rgb=(0 .2 .2)} Face 7673 1988 2021 12653 {rgb=(0 .2 .2)} Face 7674 2021 2005 12653 {rgb=(0 .2 .2)} Face 7675 2005 2002 12653 {rgb=(0 .2 .2)} Face 7676 2002 1988 12653 {rgb=(0 .2 .2)} Face 7677 1918 1949 12654 {rgb=(0 .2 .2)} Face 7678 1949 1991 12654 {rgb=(0 .2 .2)} Face 7679 1991 1981 12654 {rgb=(0 .2 .2)} Face 7680 1981 1918 12654 {rgb=(0 .2 .2)} Face 7681 1824 1841 12655 {rgb=(0 .2 .2)} Face 7682 1841 1934 12655 {rgb=(0 .2 .2)} Face 7683 1934 1935 12655 {rgb=(0 .2 .2)} Face 7684 1935 1824 12655 {rgb=(0 .2 .2)} Face 7685 1861 1888 12656 {rgb=(0 .2 .2)} Face 7686 1888 1917 12656 {rgb=(0 .2 .2)} Face 7687 1917 1930 12656 {rgb=(0 .2 .2)} Face 7688 1930 1861 12656 {rgb=(0 .2 .2)} Face 7689 1866 1800 12657 {rgb=(0 .2 .2)} Face 7690 1800 1859 12657 {rgb=(0 .2 .2)} Face 7691 1859 1897 12657 {rgb=(0 .2 .2)} Face 7692 1897 1866 12657 {rgb=(0 .2 .2)} Face 7693 2541 2706 12658 {rgb=(0 .2 .2)} Face 7694 2706 2358 12658 {rgb=(0 .2 .2)} Face 7695 2358 2131 12658 {rgb=(0 .2 .2)} Face 7696 2131 2541 12658 {rgb=(0 .2 .2)} Face 7697 2561 2862 12659 {rgb=(0 .2 .2)} Face 7698 2862 3076 12659 {rgb=(0 .2 .2)} Face 7699 3076 2734 12659 {rgb=(0 .2 .2)} Face 7700 2734 2561 12659 {rgb=(0 .2 .2)} Face 7701 2885 3256 12660 {rgb=(0 .2 .2)} Face 7702 3256 3426 12660 {rgb=(0 .2 .2)} Face 7703 3426 3066 12660 {rgb=(0 .2 .2)} Face 7704 3066 2885 12660 {rgb=(0 .2 .2)} Face 7705 3013 3429 12661 {rgb=(0 .2 .2)} Face 7706 3429 3466 12661 {rgb=(0 .2 .2)} Face 7707 3466 3084 12661 {rgb=(0 .2 .2)} Face 7708 3084 3013 12661 {rgb=(0 .2 .2)} Face 7709 3140 3492 12662 {rgb=(0 .2 .2)} Face 7710 3492 3503 12662 {rgb=(0 .2 .2)} Face 7711 3503 3198 12662 {rgb=(0 .2 .2)} Face 7712 3198 3140 12662 {rgb=(0 .2 .2)} Face 7713 1831 1784 12663 {rgb=(0 .2 .2)} Face 7714 1784 1794 12663 {rgb=(0 .2 .2)} Face 7715 1794 1818 12663 {rgb=(0 .2 .2)} Face 7716 1818 1831 12663 {rgb=(0 .2 .2)} Face 7717 1817 1811 12664 {rgb=(0 .2 .2)} Face 7718 1811 1834 12664 {rgb=(0 .2 .2)} Face 7719 1834 1829 12664 {rgb=(0 .2 .2)} Face 7720 1829 1817 12664 {rgb=(0 .2 .2)} Face 7721 1878 1911 12665 {rgb=(0 .2 .2)} Face 7722 1911 2057 12665 {rgb=(0 .2 .2)} Face 7723 2057 1953 12665 {rgb=(0 .2 .2)} Face 7724 1953 1878 12665 {rgb=(0 .2 .2)} Face 7725 2068 2246 12666 {rgb=(0 .2 .2)} Face 7726 2246 2504 12666 {rgb=(0 .2 .2)} Face 7727 2504 2224 12666 {rgb=(0 .2 .2)} Face 7728 2224 2068 12666 {rgb=(0 .2 .2)} Face 7729 2412 2639 12667 {rgb=(0 .2 .2)} Face 7730 2639 2741 12667 {rgb=(0 .2 .2)} Face 7731 2741 2550 12667 {rgb=(0 .2 .2)} Face 7732 2550 2412 12667 {rgb=(0 .2 .2)} Face 7733 2525 2699 12668 {rgb=(0 .2 .2)} Face 7734 2699 2754 12668 {rgb=(0 .2 .2)} Face 7735 2754 2589 12668 {rgb=(0 .2 .2)} Face 7736 2589 2525 12668 {rgb=(0 .2 .2)} Face 7737 2664 2823 12669 {rgb=(0 .2 .2)} Face 7738 2823 2912 12669 {rgb=(0 .2 .2)} Face 7739 2912 2764 12669 {rgb=(0 .2 .2)} Face 7740 2764 2664 12669 {rgb=(0 .2 .2)} Face 7741 5292 5068 12670 {rgb=(0 .2 .2)} Face 7742 5068 4927 12670 {rgb=(0 .2 .2)} Face 7743 4927 5291 12670 {rgb=(0 .2 .2)} Face 7744 5291 5292 12670 {rgb=(0 .2 .2)} Face 7745 2945 3538 12671 {rgb=(0 .2 .2)} Face 7746 3538 3673 12671 {rgb=(0 .2 .2)} Face 7747 3673 3174 12671 {rgb=(0 .2 .2)} Face 7748 3174 2945 12671 {rgb=(0 .2 .2)} Face 7749 4137 4348 12672 {rgb=(0 .2 .2)} Face 7750 4348 4282 12672 {rgb=(0 .2 .2)} Face 7751 4282 4170 12672 {rgb=(0 .2 .2)} Face 7752 4170 4137 12672 {rgb=(0 .2 .2)} Face 7753 3329 3804 12673 {rgb=(0 .2 .2)} Face 7754 3804 3914 12673 {rgb=(0 .2 .2)} Face 7755 3914 3471 12673 {rgb=(0 .2 .2)} Face 7756 3471 3329 12673 {rgb=(0 .2 .2)} Face 7757 4246 4293 12674 {rgb=(0 .2 .2)} Face 7758 4293 4427 12674 {rgb=(0 .2 .2)} Face 7759 4427 4346 12674 {rgb=(0 .2 .2)} Face 7760 4346 4246 12674 {rgb=(0 .2 .2)} Face 7761 3604 4018 12675 {rgb=(0 .2 .2)} Face 7762 4018 4131 12675 {rgb=(0 .2 .2)} Face 7763 4131 3758 12675 {rgb=(0 .2 .2)} Face 7764 3758 3604 12675 {rgb=(0 .2 .2)} Face 7765 4431 4798 12676 {rgb=(0 .2 .2)} Face 7766 4798 5104 12676 {rgb=(0 .2 .2)} Face 7767 5104 4548 12676 {rgb=(0 .2 .2)} Face 7768 4548 4431 12676 {rgb=(0 .2 .2)} Face 7769 3773 4136 12677 {rgb=(0 .2 .2)} Face 7770 4136 4140 12677 {rgb=(0 .2 .2)} Face 7771 4140 3815 12677 {rgb=(0 .2 .2)} Face 7772 3815 3773 12677 {rgb=(0 .2 .2)} Face 7773 4635 5236 12678 {rgb=(0 .2 .2)} Face 7774 5236 5256 12678 {rgb=(0 .2 .2)} Face 7775 5256 4683 12678 {rgb=(0 .2 .2)} Face 7776 4683 4635 12678 {rgb=(0 .2 .2)} Face 7777 3834 4154 12679 {rgb=(0 .2 .2)} Face 7778 4154 4182 12679 {rgb=(0 .2 .2)} Face 7779 4182 3837 12679 {rgb=(0 .2 .2)} Face 7780 3837 3834 12679 {rgb=(0 .2 .2)} Face 7781 5322 4943 12680 {rgb=(0 .2 .2)} Face 7782 4943 4814 12680 {rgb=(0 .2 .2)} Face 7783 4814 5286 12680 {rgb=(0 .2 .2)} Face 7784 5286 5322 12680 {rgb=(0 .2 .2)} Face 7785 4302 4424 12681 {rgb=(0 .2 .2)} Face 7786 4424 4030 12681 {rgb=(0 .2 .2)} Face 7787 4030 3938 12681 {rgb=(0 .2 .2)} Face 7788 3938 4302 12681 {rgb=(0 .2 .2)} Face 7789 2043 2111 12682 {rgb=(.7 .4 .4)} Face 7790 2111 2093 12682 {rgb=(.7 .4 .4)} Face 7791 2093 2051 12682 {rgb=(.7 .4 .4)} Face 7792 2051 2043 12682 {rgb=(.7 .4 .4)} Face 7793 1940 1983 12683 {rgb=(.7 .4 .4)} Face 7794 1983 1963 12683 {rgb=(.7 .4 .4)} Face 7795 1963 1968 12683 {rgb=(.7 .4 .4)} Face 7796 1968 1940 12683 {rgb=(.7 .4 .4)} Face 7797 1942 1958 12684 {rgb=(.7 .4 .4)} Face 7798 1958 1962 12684 {rgb=(.7 .4 .4)} Face 7799 1962 2023 12684 {rgb=(.7 .4 .4)} Face 7800 2023 1942 12684 {rgb=(.7 .4 .4)} Face 7801 2024 2023 12685 {rgb=(.7 .4 .4)} Face 7802 2023 1962 12685 {rgb=(.7 .4 .4)} Face 7803 1962 1946 12685 {rgb=(.7 .4 .4)} Face 7804 1946 2024 12685 {rgb=(.7 .4 .4)} Face 7805 1999 2029 12686 {rgb=(.7 .4 .4)} Face 7806 2029 2061 12686 {rgb=(.7 .4 .4)} Face 7807 2061 2009 12686 {rgb=(.7 .4 .4)} Face 7808 2009 1999 12686 {rgb=(.7 .4 .4)} Face 7809 2228 2255 12687 {rgb=(.7 .4 .4)} Face 7810 2255 2181 12687 {rgb=(.7 .4 .4)} Face 7811 2181 2199 12687 {rgb=(.7 .4 .4)} Face 7812 2199 2228 12687 {rgb=(.7 .4 .4)} Face 7813 1975 1959 12688 {rgb=(.7 .4 .4)} Face 7814 1959 1852 12688 {rgb=(.7 .4 .4)} Face 7815 1852 1891 12688 {rgb=(.7 .4 .4)} Face 7816 1891 1975 12688 {rgb=(.7 .4 .4)} Face 7817 1799 1797 12689 {rgb=(.7 .4 .4)} Face 7818 1797 1805 12689 {rgb=(.7 .4 .4)} Face 7819 1805 1812 12689 {rgb=(.7 .4 .4)} Face 7820 1812 1799 12689 {rgb=(.7 .4 .4)} Face 7821 1938 1994 12690 {rgb=(.7 .4 .4)} Face 7822 1994 1872 12690 {rgb=(.7 .4 .4)} Face 7823 1872 1875 12690 {rgb=(.7 .4 .4)} Face 7824 1875 1938 12690 {rgb=(.7 .4 .4)} Face 7825 1838 1813 12691 {rgb=(.7 .4 .4)} Face 7826 1813 1966 12691 {rgb=(.7 .4 .4)} Face 7827 1966 1913 12691 {rgb=(.7 .4 .4)} Face 7828 1913 1838 12691 {rgb=(.7 .4 .4)} Face 7829 2004 1960 12692 {rgb=(.7 .4 .4)} Face 7830 1960 1976 12692 {rgb=(.7 .4 .4)} Face 7831 1976 2035 12692 {rgb=(.7 .4 .4)} Face 7832 2035 2004 12692 {rgb=(.7 .4 .4)} Face 7833 2121 2218 12693 {rgb=(.7 .4 .4)} Face 7834 2218 2139 12693 {rgb=(.7 .4 .4)} Face 7835 2139 2129 12693 {rgb=(.7 .4 .4)} Face 7836 2129 2121 12693 {rgb=(.7 .4 .4)} Face 7837 1947 2011 12694 {rgb=(.7 .4 .4)} Face 7838 2011 2041 12694 {rgb=(.7 .4 .4)} Face 7839 2041 1982 12694 {rgb=(.7 .4 .4)} Face 7840 1982 1947 12694 {rgb=(.7 .4 .4)} Face 7841 2184 2135 12695 {rgb=(.7 .4 .4)} Face 7842 2135 2254 12695 {rgb=(.7 .4 .4)} Face 7843 2254 2210 12695 {rgb=(.7 .4 .4)} Face 7844 2210 2184 12695 {rgb=(.7 .4 .4)} Face 7845 1788 1833 12696 {rgb=(.7 .4 .4)} Face 7846 1833 1775 12696 {rgb=(.7 .4 .4)} Face 7847 1775 1771 12696 {rgb=(.7 .4 .4)} Face 7848 1771 1788 12696 {rgb=(.7 .4 .4)} Face 7849 2008 2084 12697 {rgb=(.7 .4 .4)} Face 7850 2084 1847 12697 {rgb=(.7 .4 .4)} Face 7851 1847 1815 12697 {rgb=(.7 .4 .4)} Face 7852 1815 2008 12697 {rgb=(.7 .4 .4)} Face 7853 2251 2313 12698 {rgb=(.7 .4 .4)} Face 7854 2313 2110 12698 {rgb=(.7 .4 .4)} Face 7855 2110 2126 12698 {rgb=(.7 .4 .4)} Face 7856 2126 2251 12698 {rgb=(.7 .4 .4)} Face 7857 2306 2394 12699 {rgb=(.7 .4 .4)} Face 7858 2394 2209 12699 {rgb=(.7 .4 .4)} Face 7859 2209 2215 12699 {rgb=(.7 .4 .4)} Face 7860 2215 2306 12699 {rgb=(.7 .4 .4)} Face 7861 2430 2558 12700 {rgb=(.7 .4 .4)} Face 7862 2558 2462 12700 {rgb=(.7 .4 .4)} Face 7863 2462 2408 12700 {rgb=(.7 .4 .4)} Face 7864 2408 2430 12700 {rgb=(.7 .4 .4)} Face 7865 2564 2634 12701 {rgb=(.7 .4 .4)} Face 7866 2634 2476 12701 {rgb=(.7 .4 .4)} Face 7867 2476 2510 12701 {rgb=(.7 .4 .4)} Face 7868 2510 2564 12701 {rgb=(.7 .4 .4)} Face 7869 2478 2474 12702 {rgb=(.7 .4 .4)} Face 7870 2474 2568 12702 {rgb=(.7 .4 .4)} Face 7871 2568 2544 12702 {rgb=(.7 .4 .4)} Face 7872 2544 2478 12702 {rgb=(.7 .4 .4)} Face 7873 2923 3046 12703 {rgb=(.7 .4 .4)} Face 7874 3046 3070 12703 {rgb=(.7 .4 .4)} Face 7875 3070 2999 12703 {rgb=(.7 .4 .4)} Face 7876 2999 2923 12703 {rgb=(.7 .4 .4)} Face 7877 2532 2576 12704 {rgb=(.7 .4 .4)} Face 7878 2576 2563 12704 {rgb=(.7 .4 .4)} Face 7879 2563 2499 12704 {rgb=(.7 .4 .4)} Face 7880 2499 2532 12704 {rgb=(.7 .4 .4)} Face 7881 2520 2499 12705 {rgb=(.7 .4 .4)} Face 7882 2499 2563 12705 {rgb=(.7 .4 .4)} Face 7883 2563 2587 12705 {rgb=(.7 .4 .4)} Face 7884 2587 2520 12705 {rgb=(.7 .4 .4)} Face 7885 3833 3746 12706 {rgb=(.7 .4 .4)} Face 7886 3746 4186 12706 {rgb=(.7 .4 .4)} Face 7887 4186 4201 12706 {rgb=(.7 .4 .4)} Face 7888 4201 3833 12706 {rgb=(.7 .4 .4)} Face 7889 4595 4909 12707 {rgb=(.7 .4 .4)} Face 7890 4909 5110 12707 {rgb=(.7 .4 .4)} Face 7891 5110 4695 12707 {rgb=(.7 .4 .4)} Face 7892 4695 4595 12707 {rgb=(.7 .4 .4)} Face 7893 4939 5028 12708 {rgb=(.7 .4 .4)} Face 7894 5028 5149 12708 {rgb=(.7 .4 .4)} Face 7895 5149 4967 12708 {rgb=(.7 .4 .4)} Face 7896 4967 4939 12708 {rgb=(.7 .4 .4)} Face 7897 5146 5205 12709 {rgb=(.7 .4 .4)} Face 7898 5205 5320 12709 {rgb=(.7 .4 .4)} Face 7899 5320 5217 12709 {rgb=(.7 .4 .4)} Face 7900 5217 5146 12709 {rgb=(.7 .4 .4)} Face 7901 5326 5476 12710 {rgb=(.7 .4 .4)} Face 7902 5476 5660 12710 {rgb=(.7 .4 .4)} Face 7903 5660 5392 12710 {rgb=(.7 .4 .4)} Face 7904 5392 5326 12710 {rgb=(.7 .4 .4)} Face 7905 3168 3139 12711 {rgb=(.7 .4 .4)} Face 7906 3139 3308 12711 {rgb=(.7 .4 .4)} Face 7907 3308 3321 12711 {rgb=(.7 .4 .4)} Face 7908 3321 3168 12711 {rgb=(.7 .4 .4)} Face 7909 3099 3091 12712 {rgb=(.7 .4 .4)} Face 7910 3091 3327 12712 {rgb=(.7 .4 .4)} Face 7911 3327 3275 12712 {rgb=(.7 .4 .4)} Face 7912 3275 3099 12712 {rgb=(.7 .4 .4)} Face 7913 3865 3857 12713 {rgb=(.7 .4 .4)} Face 7914 3857 4100 12713 {rgb=(.7 .4 .4)} Face 7915 4100 4015 12713 {rgb=(.7 .4 .4)} Face 7916 4015 3865 12713 {rgb=(.7 .4 .4)} Face 7917 4124 4224 12714 {rgb=(.7 .4 .4)} Face 7918 4224 4455 12714 {rgb=(.7 .4 .4)} Face 7919 4455 4279 12714 {rgb=(.7 .4 .4)} Face 7920 4279 4124 12714 {rgb=(.7 .4 .4)} Face 7921 2988 2972 12715 {rgb=(.7 .4 .4)} Face 7922 2972 3008 12715 {rgb=(.7 .4 .4)} Face 7923 3008 3027 12715 {rgb=(.7 .4 .4)} Face 7924 3027 2988 12715 {rgb=(.7 .4 .4)} Face 7925 3683 3739 12716 {rgb=(.7 .4 .4)} Face 7926 3739 4105 12716 {rgb=(.7 .4 .4)} Face 7927 4105 3848 12716 {rgb=(.7 .4 .4)} Face 7928 3848 3683 12716 {rgb=(.7 .4 .4)} Face 7929 2899 2890 12717 {rgb=(.7 .4 .4)} Face 7930 2890 2940 12717 {rgb=(.7 .4 .4)} Face 7931 2940 2947 12717 {rgb=(.7 .4 .4)} Face 7932 2947 2899 12717 {rgb=(.7 .4 .4)} Face 7933 2884 2871 12718 {rgb=(.7 .4 .4)} Face 7934 2871 2913 12718 {rgb=(.7 .4 .4)} Face 7935 2913 2895 12718 {rgb=(.7 .4 .4)} Face 7936 2895 2884 12718 {rgb=(.7 .4 .4)} Face 7937 5289 5188 12719 {rgb=(.7 .4 .4)} Face 7938 5188 5255 12719 {rgb=(.7 .4 .4)} Face 7939 5255 5334 12719 {rgb=(.7 .4 .4)} Face 7940 5334 5289 12719 {rgb=(.7 .4 .4)} Face 7941 4972 4858 12720 {rgb=(.7 .4 .4)} Face 7942 4858 4917 12720 {rgb=(.7 .4 .4)} Face 7943 4917 4965 12720 {rgb=(.7 .4 .4)} Face 7944 4965 4972 12720 {rgb=(.7 .4 .4)} Face 7945 4793 4523 12721 {rgb=(.7 .4 .4)} Face 7946 4523 4805 12721 {rgb=(.7 .4 .4)} Face 7947 4805 4810 12721 {rgb=(.7 .4 .4)} Face 7948 4810 4793 12721 {rgb=(.7 .4 .4)} Face 7949 4928 4801 12722 {rgb=(.7 .4 .4)} Face 7950 4801 4969 12722 {rgb=(.7 .4 .4)} Face 7951 4969 5000 12722 {rgb=(.7 .4 .4)} Face 7952 5000 4928 12722 {rgb=(.7 .4 .4)} Face 7953 4936 4963 12723 {rgb=(.7 .4 .4)} Face 7954 4963 5053 12723 {rgb=(.7 .4 .4)} Face 7955 5053 5001 12723 {rgb=(.7 .4 .4)} Face 7956 5001 4936 12723 {rgb=(.7 .4 .4)} Face 7957 5151 5155 12724 {rgb=(.7 .4 .4)} Face 7958 5155 5297 12724 {rgb=(.7 .4 .4)} Face 7959 5297 5270 12724 {rgb=(.7 .4 .4)} Face 7960 5270 5151 12724 {rgb=(.7 .4 .4)} Face 7961 5016 5105 12725 {rgb=(.7 .4 .4)} Face 7962 5105 5106 12725 {rgb=(.7 .4 .4)} Face 7963 5106 4970 12725 {rgb=(.7 .4 .4)} Face 7964 4970 5016 12725 {rgb=(.7 .4 .4)} Face 7965 4990 4970 12726 {rgb=(.7 .4 .4)} Face 7966 4970 5106 12726 {rgb=(.7 .4 .4)} Face 7967 5106 5048 12726 {rgb=(.7 .4 .4)} Face 7968 5048 4990 12726 {rgb=(.7 .4 .4)} Face 7969 5376 5302 12727 {rgb=(.7 .4 .4)} Face 7970 5302 5234 12727 {rgb=(.7 .4 .4)} Face 7971 5234 5370 12727 {rgb=(.7 .4 .4)} Face 7972 5370 5376 12727 {rgb=(.7 .4 .4)} Face 7973 3233 3072 12728 {rgb=(.7 .4 .4)} Face 7974 3072 3023 12728 {rgb=(.7 .4 .4)} Face 7975 3023 3212 12728 {rgb=(.7 .4 .4)} Face 7976 3212 3233 12728 {rgb=(.7 .4 .4)} Face 7977 5071 5057 12729 {rgb=(.7 .4 .4)} Face 7978 5057 5169 12729 {rgb=(.7 .4 .4)} Face 7979 5169 5229 12729 {rgb=(.7 .4 .4)} Face 7980 5229 5071 12729 {rgb=(.7 .4 .4)} Face 7981 3057 3119 12730 {rgb=(.7 .4 .4)} Face 7982 3119 3043 12730 {rgb=(.7 .4 .4)} Face 7983 3043 3045 12730 {rgb=(.7 .4 .4)} Face 7984 3045 3057 12730 {rgb=(.7 .4 .4)} Face 7985 3393 3165 12731 {rgb=(.7 .4 .4)} Face 7986 3165 3203 12731 {rgb=(.7 .4 .4)} Face 7987 3203 3412 12731 {rgb=(.7 .4 .4)} Face 7988 3412 3393 12731 {rgb=(.7 .4 .4)} Face 7989 2720 2690 12732 {rgb=(.7 .4 .4)} Face 7990 2690 2803 12732 {rgb=(.7 .4 .4)} Face 7991 2803 2822 12732 {rgb=(.7 .4 .4)} Face 7992 2822 2720 12732 {rgb=(.7 .4 .4)} Face 7993 2748 2582 12733 {rgb=(.7 .4 .4)} Face 7994 2582 2583 12733 {rgb=(.7 .4 .4)} Face 7995 2583 2719 12733 {rgb=(.7 .4 .4)} Face 7996 2719 2748 12733 {rgb=(.7 .4 .4)} Face 7997 2396 2392 12734 {rgb=(.7 .4 .4)} Face 7998 2392 2337 12734 {rgb=(.7 .4 .4)} Face 7999 2337 2346 12734 {rgb=(.7 .4 .4)} Face 8000 2346 2396 12734 {rgb=(.7 .4 .4)} Face 8001 2413 2273 12735 {rgb=(.7 .4 .4)} Face 8002 2273 2424 12735 {rgb=(.7 .4 .4)} Face 8003 2424 2472 12735 {rgb=(.7 .4 .4)} Face 8004 2472 2413 12735 {rgb=(.7 .4 .4)} Face 8005 2509 2606 12736 {rgb=(.7 .4 .4)} Face 8006 2606 2566 12736 {rgb=(.7 .4 .4)} Face 8007 2566 2547 12736 {rgb=(.7 .4 .4)} Face 8008 2547 2509 12736 {rgb=(.7 .4 .4)} Face 8009 2122 2065 12737 {rgb=(.7 .4 .4)} Face 8010 2065 2136 12737 {rgb=(.7 .4 .4)} Face 8011 2136 2125 12737 {rgb=(.7 .4 .4)} Face 8012 2125 2122 12737 {rgb=(.7 .4 .4)} Face 8013 5206 5180 12738 {rgb=(.7 .4 .4)} Face 8014 5180 5269 12738 {rgb=(.7 .4 .4)} Face 8015 5269 5252 12738 {rgb=(.7 .4 .4)} Face 8016 5252 5206 12738 {rgb=(.7 .4 .4)} Face 8017 4859 4722 12739 {rgb=(.7 .4 .4)} Face 8018 4722 4689 12739 {rgb=(.7 .4 .4)} Face 8019 4689 4789 12739 {rgb=(.7 .4 .4)} Face 8020 4789 4859 12739 {rgb=(.7 .4 .4)} Face 8021 4950 4904 12740 {rgb=(.7 .4 .4)} Face 8022 4904 4887 12740 {rgb=(.7 .4 .4)} Face 8023 4887 4940 12740 {rgb=(.7 .4 .4)} Face 8024 4940 4950 12740 {rgb=(.7 .4 .4)} Face 8025 4446 4440 12741 {rgb=(.7 .4 .4)} Face 8026 4440 4513 12741 {rgb=(.7 .4 .4)} Face 8027 4513 4534 12741 {rgb=(.7 .4 .4)} Face 8028 4534 4446 12741 {rgb=(.7 .4 .4)} Face 8029 4592 4594 12742 {rgb=(.7 .4 .4)} Face 8030 4594 4761 12742 {rgb=(.7 .4 .4)} Face 8031 4761 4651 12742 {rgb=(.7 .4 .4)} Face 8032 4651 4592 12742 {rgb=(.7 .4 .4)} Face 8033 4802 4767 12743 {rgb=(.7 .4 .4)} Face 8034 4767 4888 12743 {rgb=(.7 .4 .4)} Face 8035 4888 4892 12743 {rgb=(.7 .4 .4)} Face 8036 4892 4802 12743 {rgb=(.7 .4 .4)} Face 8037 4612 4442 12744 {rgb=(.7 .4 .4)} Face 8038 4442 4566 12744 {rgb=(.7 .4 .4)} Face 8039 4566 4663 12744 {rgb=(.7 .4 .4)} Face 8040 4663 4612 12744 {rgb=(.7 .4 .4)} Face 8041 4344 4190 12745 {rgb=(.7 .4 .4)} Face 8042 4190 4376 12745 {rgb=(.7 .4 .4)} Face 8043 4376 4363 12745 {rgb=(.7 .4 .4)} Face 8044 4363 4344 12745 {rgb=(.7 .4 .4)} Face 8045 3989 3762 12746 {rgb=(.7 .4 .4)} Face 8046 3762 3908 12746 {rgb=(.7 .4 .4)} Face 8047 3908 3997 12746 {rgb=(.7 .4 .4)} Face 8048 3997 3989 12746 {rgb=(.7 .4 .4)} Face 8049 3917 3680 12747 {rgb=(.7 .4 .4)} Face 8050 3680 3747 12747 {rgb=(.7 .4 .4)} Face 8051 3747 3966 12747 {rgb=(.7 .4 .4)} Face 8052 3966 3917 12747 {rgb=(.7 .4 .4)} Face 8053 3522 3451 12748 {rgb=(.7 .4 .4)} Face 8054 3451 3541 12748 {rgb=(.7 .4 .4)} Face 8055 3541 3583 12748 {rgb=(.7 .4 .4)} Face 8056 3583 3522 12748 {rgb=(.7 .4 .4)} Face 8057 3299 3197 12749 {rgb=(.7 .4 .4)} Face 8058 3197 3336 12749 {rgb=(.7 .4 .4)} Face 8059 3336 3337 12749 {rgb=(.7 .4 .4)} Face 8060 3337 3299 12749 {rgb=(.7 .4 .4)} Face 8061 3388 3419 12750 {rgb=(.7 .4 .4)} Face 8062 3419 3509 12750 {rgb=(.7 .4 .4)} Face 8063 3509 3382 12750 {rgb=(.7 .4 .4)} Face 8064 3382 3388 12750 {rgb=(.7 .4 .4)} Face 8065 3615 3561 12751 {rgb=(.7 .4 .4)} Face 8066 3561 3445 12751 {rgb=(.7 .4 .4)} Face 8067 3445 3542 12751 {rgb=(.7 .4 .4)} Face 8068 3542 3615 12751 {rgb=(.7 .4 .4)} Face 8069 4532 4404 12752 {rgb=(.7 .4 .4)} Face 8070 4404 4303 12752 {rgb=(.7 .4 .4)} Face 8071 4303 4518 12752 {rgb=(.7 .4 .4)} Face 8072 4518 4532 12752 {rgb=(.7 .4 .4)} Face 8073 4288 4287 12753 {rgb=(.7 .4 .4)} Face 8074 4287 4202 12753 {rgb=(.7 .4 .4)} Face 8075 4202 4139 12753 {rgb=(.7 .4 .4)} Face 8076 4139 4288 12753 {rgb=(.7 .4 .4)} Face 8077 3993 4139 12754 {rgb=(.7 .4 .4)} Face 8078 4139 4202 12754 {rgb=(.7 .4 .4)} Face 8079 4202 4004 12754 {rgb=(.7 .4 .4)} Face 8080 4004 3993 12754 {rgb=(.7 .4 .4)} Face 8081 4215 4173 12755 {rgb=(.7 .4 .4)} Face 8082 4173 3894 12755 {rgb=(.7 .4 .4)} Face 8083 3894 4148 12755 {rgb=(.7 .4 .4)} Face 8084 4148 4215 12755 {rgb=(.7 .4 .4)} Face 8085 3367 3424 12756 {rgb=(.7 .4 .4)} Face 8086 3424 3365 12756 {rgb=(.7 .4 .4)} Face 8087 3365 3252 12756 {rgb=(.7 .4 .4)} Face 8088 3252 3367 12756 {rgb=(.7 .4 .4)} Face 8089 2359 2274 12757 {rgb=(.7 .4 .4)} Face 8090 2274 2325 12757 {rgb=(.7 .4 .4)} Face 8091 2325 2332 12757 {rgb=(.7 .4 .4)} Face 8092 2332 2359 12757 {rgb=(.7 .4 .4)} Face 8093 2114 2269 12758 {rgb=(.7 .4 .4)} Face 8094 2269 2120 12758 {rgb=(.7 .4 .4)} Face 8095 2120 2087 12758 {rgb=(.7 .4 .4)} Face 8096 2087 2114 12758 {rgb=(.7 .4 .4)} Face 8097 2560 2467 12759 {rgb=(.7 .4 .4)} Face 8098 2467 2386 12759 {rgb=(.7 .4 .4)} Face 8099 2386 2507 12759 {rgb=(.7 .4 .4)} Face 8100 2507 2560 12759 {rgb=(.7 .4 .4)} Face 8101 2127 2196 12760 {rgb=(.7 .4 .4)} Face 8102 2196 2288 12760 {rgb=(.7 .4 .4)} Face 8103 2288 2144 12760 {rgb=(.7 .4 .4)} Face 8104 2144 2127 12760 {rgb=(.7 .4 .4)} Face 8105 2770 2778 12761 {rgb=(.7 .4 .4)} Face 8106 2778 2961 12761 {rgb=(.7 .4 .4)} Face 8107 2961 2886 12761 {rgb=(.7 .4 .4)} Face 8108 2886 2770 12761 {rgb=(.7 .4 .4)} Face 8109 2027 2040 12762 {rgb=(.7 .4 .4)} Face 8110 2040 1789 12762 {rgb=(.7 .4 .4)} Face 8111 1789 1821 12762 {rgb=(.7 .4 .4)} Face 8112 1821 2027 12762 {rgb=(.7 .4 .4)} Face 8113 8994 8952 12763 {rgb=(.7 .4 .4)} Face 8114 8952 8934 12763 {rgb=(.7 .4 .4)} Face 8115 8934 9001 12763 {rgb=(.7 .4 .4)} Face 8116 9001 8994 12763 {rgb=(.7 .4 .4)} Face 8117 9077 9082 12764 {rgb=(.7 .4 .4)} Face 8118 9082 9062 12764 {rgb=(.7 .4 .4)} Face 8119 9062 9105 12764 {rgb=(.7 .4 .4)} Face 8120 9105 9077 12764 {rgb=(.7 .4 .4)} Face 8121 9065 9087 12765 {rgb=(.7 .4 .4)} Face 8122 9087 9022 12765 {rgb=(.7 .4 .4)} Face 8123 9022 9083 12765 {rgb=(.7 .4 .4)} Face 8124 9083 9065 12765 {rgb=(.7 .4 .4)} Face 8125 9098 9083 12766 {rgb=(.7 .4 .4)} Face 8126 9083 9022 12766 {rgb=(.7 .4 .4)} Face 8127 9022 9021 12766 {rgb=(.7 .4 .4)} Face 8128 9021 9098 12766 {rgb=(.7 .4 .4)} Face 8129 9035 8984 12767 {rgb=(.7 .4 .4)} Face 8130 8984 9016 12767 {rgb=(.7 .4 .4)} Face 8131 9016 9046 12767 {rgb=(.7 .4 .4)} Face 8132 9046 9035 12767 {rgb=(.7 .4 .4)} Face 8133 8843 8863 12768 {rgb=(.7 .4 .4)} Face 8134 8863 8790 12768 {rgb=(.7 .4 .4)} Face 8135 8790 8817 12768 {rgb=(.7 .4 .4)} Face 8136 8817 8843 12768 {rgb=(.7 .4 .4)} Face 8137 9154 9193 12769 {rgb=(.7 .4 .4)} Face 8138 9193 9086 12769 {rgb=(.7 .4 .4)} Face 8139 9086 9070 12769 {rgb=(.7 .4 .4)} Face 8140 9070 9154 12769 {rgb=(.7 .4 .4)} Face 8141 9233 9240 12770 {rgb=(.7 .4 .4)} Face 8142 9240 9248 12770 {rgb=(.7 .4 .4)} Face 8143 9248 9246 12770 {rgb=(.7 .4 .4)} Face 8144 9246 9233 12770 {rgb=(.7 .4 .4)} Face 8145 9170 9173 12771 {rgb=(.7 .4 .4)} Face 8146 9173 9051 12771 {rgb=(.7 .4 .4)} Face 8147 9051 9107 12771 {rgb=(.7 .4 .4)} Face 8148 9107 9170 12771 {rgb=(.7 .4 .4)} Face 8149 9132 9079 12772 {rgb=(.7 .4 .4)} Face 8150 9079 9232 12772 {rgb=(.7 .4 .4)} Face 8151 9232 9207 12772 {rgb=(.7 .4 .4)} Face 8152 9207 9132 12772 {rgb=(.7 .4 .4)} Face 8153 9041 9008 12773 {rgb=(.7 .4 .4)} Face 8154 9008 9102 12773 {rgb=(.7 .4 .4)} Face 8155 9102 9085 12773 {rgb=(.7 .4 .4)} Face 8156 9085 9041 12773 {rgb=(.7 .4 .4)} Face 8157 8924 8916 12774 {rgb=(.7 .4 .4)} Face 8158 8916 8830 12774 {rgb=(.7 .4 .4)} Face 8159 8830 8826 12774 {rgb=(.7 .4 .4)} Face 8160 8826 8924 12774 {rgb=(.7 .4 .4)} Face 8161 9066 9009 12775 {rgb=(.7 .4 .4)} Face 8162 9009 9037 12775 {rgb=(.7 .4 .4)} Face 8163 9037 9100 12775 {rgb=(.7 .4 .4)} Face 8164 9100 9066 12775 {rgb=(.7 .4 .4)} Face 8165 8859 8834 12776 {rgb=(.7 .4 .4)} Face 8166 8834 8873 12776 {rgb=(.7 .4 .4)} Face 8167 8873 8910 12776 {rgb=(.7 .4 .4)} Face 8168 8910 8859 12776 {rgb=(.7 .4 .4)} Face 8169 9274 9270 12777 {rgb=(.7 .4 .4)} Face 8170 9270 9212 12777 {rgb=(.7 .4 .4)} Face 8171 9212 9257 12777 {rgb=(.7 .4 .4)} Face 8172 9257 9274 12777 {rgb=(.7 .4 .4)} Face 8173 9230 9198 12778 {rgb=(.7 .4 .4)} Face 8174 9198 8961 12778 {rgb=(.7 .4 .4)} Face 8175 8961 9036 12778 {rgb=(.7 .4 .4)} Face 8176 9036 9230 12778 {rgb=(.7 .4 .4)} Face 8177 8920 8939 12779 {rgb=(.7 .4 .4)} Face 8178 8939 8739 12779 {rgb=(.7 .4 .4)} Face 8179 8739 8796 12779 {rgb=(.7 .4 .4)} Face 8180 8796 8920 12779 {rgb=(.7 .4 .4)} Face 8181 8850 8860 12780 {rgb=(.7 .4 .4)} Face 8182 8860 8669 12780 {rgb=(.7 .4 .4)} Face 8183 8669 8760 12780 {rgb=(.7 .4 .4)} Face 8184 8760 8850 12780 {rgb=(.7 .4 .4)} Face 8185 8662 8600 12781 {rgb=(.7 .4 .4)} Face 8186 8600 8506 12781 {rgb=(.7 .4 .4)} Face 8187 8506 8639 12781 {rgb=(.7 .4 .4)} Face 8188 8639 8662 12781 {rgb=(.7 .4 .4)} Face 8189 8549 8586 12782 {rgb=(.7 .4 .4)} Face 8190 8586 8425 12782 {rgb=(.7 .4 .4)} Face 8191 8425 8491 12782 {rgb=(.7 .4 .4)} Face 8192 8491 8549 12782 {rgb=(.7 .4 .4)} Face 8193 8451 8430 12783 {rgb=(.7 .4 .4)} Face 8194 8430 8511 12783 {rgb=(.7 .4 .4)} Face 8195 8511 8516 12783 {rgb=(.7 .4 .4)} Face 8196 8516 8451 12783 {rgb=(.7 .4 .4)} Face 8197 7958 7910 12784 {rgb=(.7 .4 .4)} Face 8198 7910 8038 12784 {rgb=(.7 .4 .4)} Face 8199 8038 8067 12784 {rgb=(.7 .4 .4)} Face 8200 8067 7958 12784 {rgb=(.7 .4 .4)} Face 8201 8460 8484 12785 {rgb=(.7 .4 .4)} Face 8202 8484 8544 12785 {rgb=(.7 .4 .4)} Face 8203 8544 8525 12785 {rgb=(.7 .4 .4)} Face 8204 8525 8460 12785 {rgb=(.7 .4 .4)} Face 8205 5207 5429 12786 {rgb=(.7 .4 .4)} Face 8206 5429 6236 12786 {rgb=(.7 .4 .4)} Face 8207 6236 4807 12786 {rgb=(.7 .4 .4)} Face 8208 4807 5207 12786 {rgb=(.7 .4 .4)} Face 8209 5119 4807 12787 {rgb=(.7 .4 .4)} Face 8210 4807 6236 12787 {rgb=(.7 .4 .4)} Face 8211 6236 5927 12787 {rgb=(.7 .4 .4)} Face 8212 5927 5119 12787 {rgb=(.7 .4 .4)} Face 8213 6843 6860 12788 {rgb=(.7 .4 .4)} Face 8214 6860 7297 12788 {rgb=(.7 .4 .4)} Face 8215 7297 7210 12788 {rgb=(.7 .4 .4)} Face 8216 7210 6843 12788 {rgb=(.7 .4 .4)} Face 8217 6353 5938 12789 {rgb=(.7 .4 .4)} Face 8218 5938 6134 12789 {rgb=(.7 .4 .4)} Face 8219 6134 6451 12789 {rgb=(.7 .4 .4)} Face 8220 6451 6353 12789 {rgb=(.7 .4 .4)} Face 8221 6071 5896 12790 {rgb=(.7 .4 .4)} Face 8222 5896 6013 12790 {rgb=(.7 .4 .4)} Face 8223 6013 6100 12790 {rgb=(.7 .4 .4)} Face 8224 6100 6071 12790 {rgb=(.7 .4 .4)} Face 8225 5828 5714 12791 {rgb=(.7 .4 .4)} Face 8226 5714 5840 12791 {rgb=(.7 .4 .4)} Face 8227 5840 5899 12791 {rgb=(.7 .4 .4)} Face 8228 5899 5828 12791 {rgb=(.7 .4 .4)} Face 8229 7720 7737 12792 {rgb=(.7 .4 .4)} Face 8230 7737 7902 12792 {rgb=(.7 .4 .4)} Face 8231 7902 7876 12792 {rgb=(.7 .4 .4)} Face 8232 7876 7720 12792 {rgb=(.7 .4 .4)} Face 8233 7767 7706 12793 {rgb=(.7 .4 .4)} Face 8234 7706 7917 12793 {rgb=(.7 .4 .4)} Face 8235 7917 7919 12793 {rgb=(.7 .4 .4)} Face 8236 7919 7767 12793 {rgb=(.7 .4 .4)} Face 8237 7023 6945 12794 {rgb=(.7 .4 .4)} Face 8238 6945 7186 12794 {rgb=(.7 .4 .4)} Face 8239 7186 7176 12794 {rgb=(.7 .4 .4)} Face 8240 7176 7023 12794 {rgb=(.7 .4 .4)} Face 8241 6762 6576 12795 {rgb=(.7 .4 .4)} Face 8242 6576 6821 12795 {rgb=(.7 .4 .4)} Face 8243 6821 6923 12795 {rgb=(.7 .4 .4)} Face 8244 6923 6762 12795 {rgb=(.7 .4 .4)} Face 8245 8004 8023 12796 {rgb=(.7 .4 .4)} Face 8246 8023 8063 12796 {rgb=(.7 .4 .4)} Face 8247 8063 8048 12796 {rgb=(.7 .4 .4)} Face 8248 8048 8004 12796 {rgb=(.7 .4 .4)} Face 8249 7115 6859 12797 {rgb=(.7 .4 .4)} Face 8250 6859 7181 12797 {rgb=(.7 .4 .4)} Face 8251 7181 7233 12797 {rgb=(.7 .4 .4)} Face 8252 7233 7115 12797 {rgb=(.7 .4 .4)} Face 8253 8088 8095 12798 {rgb=(.7 .4 .4)} Face 8254 8095 8151 12798 {rgb=(.7 .4 .4)} Face 8255 8151 8143 12798 {rgb=(.7 .4 .4)} Face 8256 8143 8088 12798 {rgb=(.7 .4 .4)} Face 8257 8146 8127 12799 {rgb=(.7 .4 .4)} Face 8258 8127 8171 12799 {rgb=(.7 .4 .4)} Face 8259 8171 8159 12799 {rgb=(.7 .4 .4)} Face 8260 8159 8146 12799 {rgb=(.7 .4 .4)} Face 8261 5463 5582 12800 {rgb=(.7 .4 .4)} Face 8262 5582 5485 12800 {rgb=(.7 .4 .4)} Face 8263 5485 5420 12800 {rgb=(.7 .4 .4)} Face 8264 5420 5463 12800 {rgb=(.7 .4 .4)} Face 8265 5698 5790 12801 {rgb=(.7 .4 .4)} Face 8266 5790 5858 12801 {rgb=(.7 .4 .4)} Face 8267 5858 5752 12801 {rgb=(.7 .4 .4)} Face 8268 5752 5698 12801 {rgb=(.7 .4 .4)} Face 8269 6073 6125 12802 {rgb=(.7 .4 .4)} Face 8270 6125 6184 12802 {rgb=(.7 .4 .4)} Face 8271 6184 6065 12802 {rgb=(.7 .4 .4)} Face 8272 6065 6073 12802 {rgb=(.7 .4 .4)} Face 8273 6249 6233 12803 {rgb=(.7 .4 .4)} Face 8274 6233 6506 12803 {rgb=(.7 .4 .4)} Face 8275 6506 6520 12803 {rgb=(.7 .4 .4)} Face 8276 6520 6249 12803 {rgb=(.7 .4 .4)} Face 8277 6040 6068 12804 {rgb=(.7 .4 .4)} Face 8278 6068 6242 12804 {rgb=(.7 .4 .4)} Face 8279 6242 6113 12804 {rgb=(.7 .4 .4)} Face 8280 6113 6040 12804 {rgb=(.7 .4 .4)} Face 8281 6039 5993 12805 {rgb=(.7 .4 .4)} Face 8282 5993 6075 12805 {rgb=(.7 .4 .4)} Face 8283 6075 6104 12805 {rgb=(.7 .4 .4)} Face 8284 6104 6039 12805 {rgb=(.7 .4 .4)} Face 8285 5772 5743 12806 {rgb=(.7 .4 .4)} Face 8286 5743 5891 12806 {rgb=(.7 .4 .4)} Face 8287 5891 5894 12806 {rgb=(.7 .4 .4)} Face 8288 5894 5772 12806 {rgb=(.7 .4 .4)} Face 8289 5907 5901 12807 {rgb=(.7 .4 .4)} Face 8290 5901 6067 12807 {rgb=(.7 .4 .4)} Face 8291 6067 5942 12807 {rgb=(.7 .4 .4)} Face 8292 5942 5907 12807 {rgb=(.7 .4 .4)} Face 8293 5997 5942 12808 {rgb=(.7 .4 .4)} Face 8294 5942 6067 12808 {rgb=(.7 .4 .4)} Face 8295 6067 6049 12808 {rgb=(.7 .4 .4)} Face 8296 6049 5997 12808 {rgb=(.7 .4 .4)} Face 8297 5676 5811 12809 {rgb=(.7 .4 .4)} Face 8298 5811 5738 12809 {rgb=(.7 .4 .4)} Face 8299 5738 5672 12809 {rgb=(.7 .4 .4)} Face 8300 5672 5676 12809 {rgb=(.7 .4 .4)} Face 8301 7812 7832 12810 {rgb=(.7 .4 .4)} Face 8302 7832 8170 12810 {rgb=(.7 .4 .4)} Face 8303 8170 7967 12810 {rgb=(.7 .4 .4)} Face 8304 7967 7812 12810 {rgb=(.7 .4 .4)} Face 8305 5816 5876 12811 {rgb=(.7 .4 .4)} Face 8306 5876 5991 12811 {rgb=(.7 .4 .4)} Face 8307 5991 5976 12811 {rgb=(.7 .4 .4)} Face 8308 5976 5816 12811 {rgb=(.7 .4 .4)} Face 8309 7980 7990 12812 {rgb=(.7 .4 .4)} Face 8310 7990 7923 12812 {rgb=(.7 .4 .4)} Face 8311 7923 7918 12812 {rgb=(.7 .4 .4)} Face 8312 7918 7980 12812 {rgb=(.7 .4 .4)} Face 8313 7633 7841 12813 {rgb=(.7 .4 .4)} Face 8314 7841 7878 12813 {rgb=(.7 .4 .4)} Face 8315 7878 7652 12813 {rgb=(.7 .4 .4)} Face 8316 7652 7633 12813 {rgb=(.7 .4 .4)} Face 8317 8221 8242 12814 {rgb=(.7 .4 .4)} Face 8318 8242 8357 12814 {rgb=(.7 .4 .4)} Face 8319 8357 8322 12814 {rgb=(.7 .4 .4)} Face 8320 8322 8221 12814 {rgb=(.7 .4 .4)} Face 8321 8296 8324 12815 {rgb=(.7 .4 .4)} Face 8322 8324 8569 12815 {rgb=(.7 .4 .4)} Face 8323 8569 8466 12815 {rgb=(.7 .4 .4)} Face 8324 8466 8296 12815 {rgb=(.7 .4 .4)} Face 8325 8700 8710 12816 {rgb=(.7 .4 .4)} Face 8326 8710 8652 12816 {rgb=(.7 .4 .4)} Face 8327 8652 8649 12816 {rgb=(.7 .4 .4)} Face 8328 8649 8700 12816 {rgb=(.7 .4 .4)} Face 8329 8637 8576 12817 {rgb=(.7 .4 .4)} Face 8330 8576 8711 12817 {rgb=(.7 .4 .4)} Face 8331 8711 8772 12817 {rgb=(.7 .4 .4)} Face 8332 8772 8637 12817 {rgb=(.7 .4 .4)} Face 8333 8515 8500 12818 {rgb=(.7 .4 .4)} Face 8334 8500 8478 12818 {rgb=(.7 .4 .4)} Face 8335 8478 8563 12818 {rgb=(.7 .4 .4)} Face 8336 8563 8515 12818 {rgb=(.7 .4 .4)} Face 8337 8919 8909 12819 {rgb=(.7 .4 .4)} Face 8338 8909 8980 12819 {rgb=(.7 .4 .4)} Face 8339 8980 8923 12819 {rgb=(.7 .4 .4)} Face 8340 8923 8919 12819 {rgb=(.7 .4 .4)} Face 8341 5794 5773 12820 {rgb=(.7 .4 .4)} Face 8342 5773 5865 12820 {rgb=(.7 .4 .4)} Face 8343 5865 5839 12820 {rgb=(.7 .4 .4)} Face 8344 5839 5794 12820 {rgb=(.7 .4 .4)} Face 8345 6253 6325 12821 {rgb=(.7 .4 .4)} Face 8346 6325 6262 12821 {rgb=(.7 .4 .4)} Face 8347 6262 6183 12821 {rgb=(.7 .4 .4)} Face 8348 6183 6253 12821 {rgb=(.7 .4 .4)} Face 8349 6190 6209 12822 {rgb=(.7 .4 .4)} Face 8350 6209 6139 12822 {rgb=(.7 .4 .4)} Face 8351 6139 6154 12822 {rgb=(.7 .4 .4)} Face 8352 6154 6190 12822 {rgb=(.7 .4 .4)} Face 8353 6099 6154 12823 {rgb=(.7 .4 .4)} Face 8354 6154 6139 12823 {rgb=(.7 .4 .4)} Face 8355 6139 6088 12823 {rgb=(.7 .4 .4)} Face 8356 6088 6099 12823 {rgb=(.7 .4 .4)} Face 8357 6509 6528 12824 {rgb=(.7 .4 .4)} Face 8358 6528 6599 12824 {rgb=(.7 .4 .4)} Face 8359 6599 6594 12824 {rgb=(.7 .4 .4)} Face 8360 6594 6509 12824 {rgb=(.7 .4 .4)} Face 8361 6454 6396 12825 {rgb=(.7 .4 .4)} Face 8362 6396 6321 12825 {rgb=(.7 .4 .4)} Face 8363 6321 6452 12825 {rgb=(.7 .4 .4)} Face 8364 6452 6454 12825 {rgb=(.7 .4 .4)} Face 8365 6241 6149 12826 {rgb=(.7 .4 .4)} Face 8366 6149 6243 12826 {rgb=(.7 .4 .4)} Face 8367 6243 6278 12826 {rgb=(.7 .4 .4)} Face 8368 6278 6241 12826 {rgb=(.7 .4 .4)} Face 8369 6383 6479 12827 {rgb=(.7 .4 .4)} Face 8370 6479 6597 12827 {rgb=(.7 .4 .4)} Face 8371 6597 6434 12827 {rgb=(.7 .4 .4)} Face 8372 6434 6383 12827 {rgb=(.7 .4 .4)} Face 8373 6675 6663 12828 {rgb=(.7 .4 .4)} Face 8374 6663 6854 12828 {rgb=(.7 .4 .4)} Face 8375 6854 6697 12828 {rgb=(.7 .4 .4)} Face 8376 6697 6675 12828 {rgb=(.7 .4 .4)} Face 8377 7042 7135 12829 {rgb=(.7 .4 .4)} Face 8378 7135 7282 12829 {rgb=(.7 .4 .4)} Face 8379 7282 7051 12829 {rgb=(.7 .4 .4)} Face 8380 7051 7042 12829 {rgb=(.7 .4 .4)} Face 8381 7073 7296 12830 {rgb=(.7 .4 .4)} Face 8382 7296 7361 12830 {rgb=(.7 .4 .4)} Face 8383 7361 7124 12830 {rgb=(.7 .4 .4)} Face 8384 7124 7073 12830 {rgb=(.7 .4 .4)} Face 8385 7459 7501 12831 {rgb=(.7 .4 .4)} Face 8386 7501 7592 12831 {rgb=(.7 .4 .4)} Face 8387 7592 7520 12831 {rgb=(.7 .4 .4)} Face 8388 7520 7459 12831 {rgb=(.7 .4 .4)} Face 8389 7709 7710 12832 {rgb=(.7 .4 .4)} Face 8390 7710 7845 12832 {rgb=(.7 .4 .4)} Face 8391 7845 7746 12832 {rgb=(.7 .4 .4)} Face 8392 7746 7709 12832 {rgb=(.7 .4 .4)} Face 8393 7656 7660 12833 {rgb=(.7 .4 .4)} Face 8394 7660 7572 12833 {rgb=(.7 .4 .4)} Face 8395 7572 7626 12833 {rgb=(.7 .4 .4)} Face 8396 7626 7656 12833 {rgb=(.7 .4 .4)} Face 8397 7500 7601 12834 {rgb=(.7 .4 .4)} Face 8398 7601 7480 12834 {rgb=(.7 .4 .4)} Face 8399 7480 7429 12834 {rgb=(.7 .4 .4)} Face 8400 7429 7500 12834 {rgb=(.7 .4 .4)} Face 8401 6524 6740 12835 {rgb=(.7 .4 .4)} Face 8402 6740 6635 12835 {rgb=(.7 .4 .4)} Face 8403 6635 6511 12835 {rgb=(.7 .4 .4)} Face 8404 6511 6524 12835 {rgb=(.7 .4 .4)} Face 8405 5481 5331 12836 {rgb=(.7 .4 .4)} Face 8406 5331 5702 12836 {rgb=(.7 .4 .4)} Face 8407 5702 5562 12836 {rgb=(.7 .4 .4)} Face 8408 5562 5481 12836 {rgb=(.7 .4 .4)} Face 8409 6842 6758 12837 {rgb=(.7 .4 .4)} Face 8410 6758 6754 12837 {rgb=(.7 .4 .4)} Face 8411 6754 7035 12837 {rgb=(.7 .4 .4)} Face 8412 7035 6842 12837 {rgb=(.7 .4 .4)} Face 8413 7047 7035 12838 {rgb=(.7 .4 .4)} Face 8414 7035 6754 12838 {rgb=(.7 .4 .4)} Face 8415 6754 6906 12838 {rgb=(.7 .4 .4)} Face 8416 6906 7047 12838 {rgb=(.7 .4 .4)} Face 8417 6830 6898 12839 {rgb=(.7 .4 .4)} Face 8418 6898 7159 12839 {rgb=(.7 .4 .4)} Face 8419 7159 6873 12839 {rgb=(.7 .4 .4)} Face 8420 6873 6830 12839 {rgb=(.7 .4 .4)} Face 8421 7792 7620 12840 {rgb=(.7 .4 .4)} Face 8422 7620 7622 12840 {rgb=(.7 .4 .4)} Face 8423 7622 7674 12840 {rgb=(.7 .4 .4)} Face 8424 7674 7792 12840 {rgb=(.7 .4 .4)} Face 8425 8716 8722 12841 {rgb=(.7 .4 .4)} Face 8426 8722 8771 12841 {rgb=(.7 .4 .4)} Face 8427 8771 8686 12841 {rgb=(.7 .4 .4)} Face 8428 8686 8716 12841 {rgb=(.7 .4 .4)} Face 8429 8958 8925 12842 {rgb=(.7 .4 .4)} Face 8430 8925 8774 12842 {rgb=(.7 .4 .4)} Face 8431 8774 8931 12842 {rgb=(.7 .4 .4)} Face 8432 8931 8958 12842 {rgb=(.7 .4 .4)} Face 8433 8537 8659 12843 {rgb=(.7 .4 .4)} Face 8434 8659 8578 12843 {rgb=(.7 .4 .4)} Face 8435 8578 8487 12843 {rgb=(.7 .4 .4)} Face 8436 8487 8537 12843 {rgb=(.7 .4 .4)} Face 8437 8900 8756 12844 {rgb=(.7 .4 .4)} Face 8438 8756 8846 12844 {rgb=(.7 .4 .4)} Face 8439 8846 8918 12844 {rgb=(.7 .4 .4)} Face 8440 8918 8900 12844 {rgb=(.7 .4 .4)} Face 8441 8246 8352 12845 {rgb=(.7 .4 .4)} Face 8442 8352 8275 12845 {rgb=(.7 .4 .4)} Face 8443 8275 8144 12845 {rgb=(.7 .4 .4)} Face 8444 8144 8246 12845 {rgb=(.7 .4 .4)} Face 8445 8201 8144 12846 {rgb=(.7 .4 .4)} Face 8446 8144 8275 12846 {rgb=(.7 .4 .4)} Face 8447 8275 8304 12846 {rgb=(.7 .4 .4)} Face 8448 8304 8201 12846 {rgb=(.7 .4 .4)} Face 8449 9224 9256 12847 {rgb=(.7 .4 .4)} Face 8450 9256 9004 12847 {rgb=(.7 .4 .4)} Face 8451 9004 9018 12847 {rgb=(.7 .4 .4)} Face 8452 9018 9224 12847 {rgb=(.7 .4 .4)} Face 8453 8749 8774 12848 {rgb=(.7 .4 .4)} Face 8454 8774 8563 12848 {rgb=(.7 .4 .4)} Face 8455 8563 8635 12848 {rgb=(.7 .4 .4)} Face 8456 8635 8749 12848 {rgb=(.7 .4 .4)} Face 8457 8420 8440 12849 {rgb=(.7 .4 .4)} Face 8458 8440 8540 12849 {rgb=(.7 .4 .4)} Face 8459 8540 8478 12849 {rgb=(.7 .4 .4)} Face 8460 8478 8420 12849 {rgb=(.7 .4 .4)} Face 8461 7504 7467 12850 {rgb=(.7 .4 .4)} Face 8462 7467 7022 12850 {rgb=(.7 .4 .4)} Face 8463 7022 7498 12850 {rgb=(.7 .4 .4)} Face 8464 7498 7504 12850 {rgb=(.7 .4 .4)} Face 8465 7418 7498 12851 {rgb=(.7 .4 .4)} Face 8466 7498 7022 12851 {rgb=(.7 .4 .4)} Face 8467 7022 7288 12851 {rgb=(.7 .4 .4)} Face 8468 7288 7418 12851 {rgb=(.7 .4 .4)} Face 8469 7067 7288 12852 {rgb=(.7 .4 .4)} Face 8470 7288 7022 12852 {rgb=(.7 .4 .4)} Face 8471 7022 6897 12852 {rgb=(.7 .4 .4)} Face 8472 6897 7067 12852 {rgb=(.7 .4 .4)} Face 8473 6858 6897 12853 {rgb=(.7 .4 .4)} Face 8474 6897 7022 12853 {rgb=(.7 .4 .4)} Face 8475 7022 6925 12853 {rgb=(.7 .4 .4)} Face 8476 6925 6858 12853 {rgb=(.7 .4 .4)} Face 8477 5733 5816 12854 {rgb=(.7 .4 .4)} Face 8478 5816 5832 12854 {rgb=(.7 .4 .4)} Face 8479 5832 5638 12854 {rgb=(.7 .4 .4)} Face 8480 5638 5733 12854 {rgb=(.7 .4 .4)} Face 8481 5646 5638 12855 {rgb=(.7 .4 .4)} Face 8482 5638 5832 12855 {rgb=(.7 .4 .4)} Face 8483 5832 5746 12855 {rgb=(.7 .4 .4)} Face 8484 5746 5646 12855 {rgb=(.7 .4 .4)} Face 8485 8656 8707 12856 {rgb=(.7 .4 .4)} Face 8486 8707 8695 12856 {rgb=(.7 .4 .4)} Face 8487 8695 8629 12856 {rgb=(.7 .4 .4)} Face 8488 8629 8656 12856 {rgb=(.7 .4 .4)} Face 8489 8591 8663 12857 {rgb=(.7 .4 .4)} Face 8490 8663 8533 12857 {rgb=(.7 .4 .4)} Face 8491 8533 8557 12857 {rgb=(.7 .4 .4)} Face 8492 8557 8591 12857 {rgb=(.7 .4 .4)} Face 8493 8052 8133 12858 {rgb=(.7 .4 .4)} Face 8494 8133 8242 12858 {rgb=(.7 .4 .4)} Face 8495 8242 8116 12858 {rgb=(.7 .4 .4)} Face 8496 8116 8052 12858 {rgb=(.7 .4 .4)} Face 8497 7960 7927 12859 {rgb=(.7 .4 .4)} Face 8498 7927 7965 12859 {rgb=(.7 .4 .4)} Face 8499 7965 7971 12859 {rgb=(.7 .4 .4)} Face 8500 7971 7960 12859 {rgb=(.7 .4 .4)} Face 8501 7756 7627 12860 {rgb=(.7 .4 .4)} Face 8502 7627 7676 12860 {rgb=(.7 .4 .4)} Face 8503 7676 7815 12860 {rgb=(.7 .4 .4)} Face 8504 7815 7756 12860 {rgb=(.7 .4 .4)} Face 8505 6321 6146 12861 {rgb=(.7 .4 .4)} Face 8506 6146 6417 12861 {rgb=(.7 .4 .4)} Face 8507 6417 6399 12861 {rgb=(.7 .4 .4)} Face 8508 6399 6321 12861 {rgb=(.7 .4 .4)} Face 8509 6270 6267 12862 {rgb=(.7 .4 .4)} Face 8510 6267 6291 12862 {rgb=(.7 .4 .4)} Face 8511 6291 6275 12862 {rgb=(.7 .4 .4)} Face 8512 6275 6270 12862 {rgb=(.7 .4 .4)} Face 8513 6147 6118 12863 {rgb=(.7 .4 .4)} Face 8514 6118 6212 12863 {rgb=(.7 .4 .4)} Face 8515 6212 6188 12863 {rgb=(.7 .4 .4)} Face 8516 6188 6147 12863 {rgb=(.7 .4 .4)} Face 8517 6180 6117 12864 {rgb=(.7 .4 .4)} Face 8518 6117 6305 12864 {rgb=(.7 .4 .4)} Face 8519 6305 6261 12864 {rgb=(.7 .4 .4)} Face 8520 6261 6180 12864 {rgb=(.7 .4 .4)} Face 8521 2423 2509 12865 {rgb=(.7 .4 .4)} Face 8522 2509 2269 12865 {rgb=(.7 .4 .4)} Face 8523 2269 2300 12865 {rgb=(.7 .4 .4)} Face 8524 2300 2423 12865 {rgb=(.7 .4 .4)} Face 8525 2606 2533 12866 {rgb=(.7 .4 .4)} Face 8526 2533 2632 12866 {rgb=(.7 .4 .4)} Face 8527 2632 2667 12866 {rgb=(.7 .4 .4)} Face 8528 2667 2606 12866 {rgb=(.7 .4 .4)} Face 8529 3544 3627 12867 {rgb=(.7 .4 .4)} Face 8530 3627 4149 12867 {rgb=(.7 .4 .4)} Face 8531 4149 3537 12867 {rgb=(.7 .4 .4)} Face 8532 3537 3544 12867 {rgb=(.7 .4 .4)} Face 8533 3573 3537 12868 {rgb=(.7 .4 .4)} Face 8534 3537 4149 12868 {rgb=(.7 .4 .4)} Face 8535 4149 3693 12868 {rgb=(.7 .4 .4)} Face 8536 3693 3573 12868 {rgb=(.7 .4 .4)} Face 8537 3872 3693 12869 {rgb=(.7 .4 .4)} Face 8538 3693 4149 12869 {rgb=(.7 .4 .4)} Face 8539 4149 4016 12869 {rgb=(.7 .4 .4)} Face 8540 4016 3872 12869 {rgb=(.7 .4 .4)} Face 8541 4122 4016 12870 {rgb=(.7 .4 .4)} Face 8542 4016 4149 12870 {rgb=(.7 .4 .4)} Face 8543 4149 4187 12870 {rgb=(.7 .4 .4)} Face 8544 4187 4122 12870 {rgb=(.7 .4 .4)} Face 8545 5194 5229 12871 {rgb=(.7 .4 .4)} Face 8546 5229 5411 12871 {rgb=(.7 .4 .4)} Face 8547 5411 5213 12871 {rgb=(.7 .4 .4)} Face 8548 5213 5194 12871 {rgb=(.7 .4 .4)} Face 8549 5294 5213 12872 {rgb=(.7 .4 .4)} Face 8550 5213 5411 12872 {rgb=(.7 .4 .4)} Face 8551 5411 5404 12872 {rgb=(.7 .4 .4)} Face 8552 5404 5294 12872 {rgb=(.7 .4 .4)} Face 8553 4514 4276 12873 {rgb=(.7 .4 .4)} Face 8554 4276 4025 12873 {rgb=(.7 .4 .4)} Face 8555 4025 5152 12873 {rgb=(.7 .4 .4)} Face 8556 5152 4514 12873 {rgb=(.7 .4 .4)} Face 8557 5561 5152 12874 {rgb=(.7 .4 .4)} Face 8558 5152 4025 12874 {rgb=(.7 .4 .4)} Face 8559 4025 5973 12874 {rgb=(.7 .4 .4)} Face 8560 5973 5561 12874 {rgb=(.7 .4 .4)} Face 8561 6625 5973 12875 {rgb=(.7 .4 .4)} Face 8562 5973 4025 12875 {rgb=(.7 .4 .4)} Face 8563 4025 6857 12875 {rgb=(.7 .4 .4)} Face 8564 6857 6625 12875 {rgb=(.7 .4 .4)} Face 8565 7004 6857 12876 {rgb=(.7 .4 .4)} Face 8566 6857 4025 12876 {rgb=(.7 .4 .4)} Face 8567 4025 7045 12876 {rgb=(.7 .4 .4)} Face 8568 7045 7004 12876 {rgb=(.7 .4 .4)} Face 8569 7081 7045 12877 {rgb=(.7 .4 .4)} Face 8570 7045 4025 12877 {rgb=(.7 .4 .4)} Face 8571 4025 6972 12877 {rgb=(.7 .4 .4)} Face 8572 6972 7081 12877 {rgb=(.7 .4 .4)} Face 8573 6691 6972 12878 {rgb=(.7 .4 .4)} Face 8574 6972 4025 12878 {rgb=(.7 .4 .4)} Face 8575 4025 6038 12878 {rgb=(.7 .4 .4)} Face 8576 6038 6691 12878 {rgb=(.7 .4 .4)} Face 8577 5567 6038 12879 {rgb=(.7 .4 .4)} Face 8578 6038 4025 12879 {rgb=(.7 .4 .4)} Face 8579 4025 5099 12879 {rgb=(.7 .4 .4)} Face 8580 5099 5567 12879 {rgb=(.7 .4 .4)} Face 8581 4437 5099 12880 {rgb=(.7 .4 .4)} Face 8582 5099 4025 12880 {rgb=(.7 .4 .4)} Face 8583 4025 4144 12880 {rgb=(.7 .4 .4)} Face 8584 4144 4437 12880 {rgb=(.7 .4 .4)} Face 8585 2404 2315 12881 {rgb=(.7 .4 .4)} Face 8586 2315 2338 12881 {rgb=(.7 .4 .4)} Face 8587 2338 2390 12881 {rgb=(.7 .4 .4)} Face 8588 2390 2404 12881 {rgb=(.7 .4 .4)} Face 8589 2489 2512 12882 {rgb=(.7 .4 .4)} Face 8590 2512 2383 12882 {rgb=(.7 .4 .4)} Face 8591 2383 2453 12882 {rgb=(.7 .4 .4)} Face 8592 2453 2489 12882 {rgb=(.7 .4 .4)} Face 8593 2919 2803 12883 {rgb=(.7 .4 .4)} Face 8594 2803 2909 12883 {rgb=(.7 .4 .4)} Face 8595 2909 2981 12883 {rgb=(.7 .4 .4)} Face 8596 2981 2919 12883 {rgb=(.7 .4 .4)} Face 8597 3067 3073 12884 {rgb=(.7 .4 .4)} Face 8598 3073 3108 12884 {rgb=(.7 .4 .4)} Face 8599 3108 3079 12884 {rgb=(.7 .4 .4)} Face 8600 3079 3067 12884 {rgb=(.7 .4 .4)} Face 8601 3230 3365 12885 {rgb=(.7 .4 .4)} Face 8602 3365 3418 12885 {rgb=(.7 .4 .4)} Face 8603 3418 3289 12885 {rgb=(.7 .4 .4)} Face 8604 3289 3230 12885 {rgb=(.7 .4 .4)} Face 8605 4648 4630 12886 {rgb=(.7 .4 .4)} Face 8606 4630 4895 12886 {rgb=(.7 .4 .4)} Face 8607 4895 4726 12886 {rgb=(.7 .4 .4)} Face 8608 4726 4648 12886 {rgb=(.7 .4 .4)} Face 8609 4770 4755 12887 {rgb=(.7 .4 .4)} Face 8610 4755 4778 12887 {rgb=(.7 .4 .4)} Face 8611 4778 4775 12887 {rgb=(.7 .4 .4)} Face 8612 4775 4770 12887 {rgb=(.7 .4 .4)} Face 8613 4854 4831 12888 {rgb=(.7 .4 .4)} Face 8614 4831 4923 12888 {rgb=(.7 .4 .4)} Face 8615 4923 4894 12888 {rgb=(.7 .4 .4)} Face 8616 4894 4854 12888 {rgb=(.7 .4 .4)} Face 8617 4784 4742 12889 {rgb=(.7 .4 .4)} Face 8618 4742 4924 12889 {rgb=(.7 .4 .4)} Face 8619 4924 4862 12889 {rgb=(.7 .4 .4)} Face 8620 4862 4784 12889 {rgb=(.7 .4 .4)} Face 8621 1835 1884 12890 {rgb=(.7 .4 .4)} Face 8622 1884 2012 12890 {rgb=(.7 .4 .4)} Face 8623 2012 1965 12890 {rgb=(.7 .4 .4)} Face 8624 1965 1835 12890 {rgb=(.7 .4 .4)} Face 8625 2140 2012 12891 {rgb=(.7 .4 .4)} Face 8626 2012 2038 12891 {rgb=(.7 .4 .4)} Face 8627 2038 2155 12891 {rgb=(.7 .4 .4)} Face 8628 2155 2140 12891 {rgb=(.7 .4 .4)} Face 8629 2054 2038 12892 {rgb=(.7 .4 .4)} Face 8630 2038 1926 12892 {rgb=(.7 .4 .4)} Face 8631 1926 1974 12892 {rgb=(.7 .4 .4)} Face 8632 1974 2054 12892 {rgb=(.7 .4 .4)} Face 8633 1892 1926 12893 {rgb=(.7 .4 .4)} Face 8634 1926 1884 12893 {rgb=(.7 .4 .4)} Face 8635 1884 1826 12893 {rgb=(.7 .4 .4)} Face 8636 1826 1892 12893 {rgb=(.7 .4 .4)} Face 8637 1770 1793 12894 {rgb=(.7 .4 .4)} Face 8638 1793 1910 12894 {rgb=(.7 .4 .4)} Face 8639 1910 1869 12894 {rgb=(.7 .4 .4)} Face 8640 1869 1770 12894 {rgb=(.7 .4 .4)} Face 8641 2078 1910 12895 {rgb=(.7 .4 .4)} Face 8642 1910 1965 12895 {rgb=(.7 .4 .4)} Face 8643 1965 2118 12895 {rgb=(.7 .4 .4)} Face 8644 2118 2078 12895 {rgb=(.7 .4 .4)} Face 8645 1786 1835 12896 {rgb=(.7 .4 .4)} Face 8646 1835 1793 12896 {rgb=(.7 .4 .4)} Face 8647 1793 1767 12896 {rgb=(.7 .4 .4)} Face 8648 1767 1786 12896 {rgb=(.7 .4 .4)} Face 8649 2027 1821 12897 {rgb=(.7 .4 .4)} Face 8650 1821 1869 12897 {rgb=(.7 .4 .4)} Face 8651 1869 2052 12897 {rgb=(.7 .4 .4)} Face 8652 2052 2027 12897 {rgb=(.7 .4 .4)} Face 8653 1746 1770 12898 {rgb=(.7 .4 .4)} Face 8654 1770 1747 12898 {rgb=(.7 .4 .4)} Face 8655 1747 1721 12898 {rgb=(.7 .4 .4)} Face 8656 1721 1746 12898 {rgb=(.7 .4 .4)} Face 8657 1733 1747 12899 {rgb=(.7 .4 .4)} Face 8658 1747 1821 12899 {rgb=(.7 .4 .4)} Face 8659 1821 1789 12899 {rgb=(.7 .4 .4)} Face 8660 1789 1733 12899 {rgb=(.7 .4 .4)} Face 8661 2043 2051 12900 {rgb=(.7 .4 .4)} Face 8662 2051 1974 12900 {rgb=(.7 .4 .4)} Face 8663 1974 1955 12900 {rgb=(.7 .4 .4)} Face 8664 1955 2043 12900 {rgb=(.7 .4 .4)} Face 8665 2137 2054 12901 {rgb=(.7 .4 .4)} Face 8666 2054 2051 12901 {rgb=(.7 .4 .4)} Face 8667 2051 2093 12901 {rgb=(.7 .4 .4)} Face 8668 2093 2137 12901 {rgb=(.7 .4 .4)} Face 8669 2111 2043 12902 {rgb=(.7 .4 .4)} Face 8670 2043 2045 12902 {rgb=(.7 .4 .4)} Face 8671 2045 2117 12902 {rgb=(.7 .4 .4)} Face 8672 2117 2111 12902 {rgb=(.7 .4 .4)} Face 8673 2086 2045 12903 {rgb=(.7 .4 .4)} Face 8674 2045 1971 12903 {rgb=(.7 .4 .4)} Face 8675 1971 2032 12903 {rgb=(.7 .4 .4)} Face 8676 2032 2086 12903 {rgb=(.7 .4 .4)} Face 8677 1896 1971 12904 {rgb=(.7 .4 .4)} Face 8678 1971 1955 12904 {rgb=(.7 .4 .4)} Face 8679 1955 1892 12904 {rgb=(.7 .4 .4)} Face 8680 1892 1896 12904 {rgb=(.7 .4 .4)} Face 8681 1787 1839 12905 {rgb=(.7 .4 .4)} Face 8682 1839 1826 12905 {rgb=(.7 .4 .4)} Face 8683 1826 1786 12905 {rgb=(.7 .4 .4)} Face 8684 1786 1787 12905 {rgb=(.7 .4 .4)} Face 8685 1967 1896 12906 {rgb=(.7 .4 .4)} Face 8686 1896 1839 12906 {rgb=(.7 .4 .4)} Face 8687 1839 1906 12906 {rgb=(.7 .4 .4)} Face 8688 1906 1967 12906 {rgb=(.7 .4 .4)} Face 8689 1845 1787 12907 {rgb=(.7 .4 .4)} Face 8690 1787 1764 12907 {rgb=(.7 .4 .4)} Face 8691 1764 1790 12907 {rgb=(.7 .4 .4)} Face 8692 1790 1845 12907 {rgb=(.7 .4 .4)} Face 8693 1745 1764 12908 {rgb=(.7 .4 .4)} Face 8694 1764 1767 12908 {rgb=(.7 .4 .4)} Face 8695 1767 1746 12908 {rgb=(.7 .4 .4)} Face 8696 1746 1745 12908 {rgb=(.7 .4 .4)} Face 8697 1765 1745 12909 {rgb=(.7 .4 .4)} Face 8698 1745 1731 12909 {rgb=(.7 .4 .4)} Face 8699 1731 1754 12909 {rgb=(.7 .4 .4)} Face 8700 1754 1765 12909 {rgb=(.7 .4 .4)} Face 8701 1722 1731 12910 {rgb=(.7 .4 .4)} Face 8702 1731 1721 12910 {rgb=(.7 .4 .4)} Face 8703 1721 1717 12910 {rgb=(.7 .4 .4)} Face 8704 1717 1722 12910 {rgb=(.7 .4 .4)} Face 8705 1723 1716 12911 {rgb=(.7 .4 .4)} Face 8706 1716 1717 12911 {rgb=(.7 .4 .4)} Face 8707 1717 1733 12911 {rgb=(.7 .4 .4)} Face 8708 1733 1723 12911 {rgb=(.7 .4 .4)} Face 8709 1758 1722 12912 {rgb=(.7 .4 .4)} Face 8710 1722 1725 12912 {rgb=(.7 .4 .4)} Face 8711 1725 1756 12912 {rgb=(.7 .4 .4)} Face 8712 1756 1758 12912 {rgb=(.7 .4 .4)} Face 8713 1729 1725 12913 {rgb=(.7 .4 .4)} Face 8714 1725 1716 12913 {rgb=(.7 .4 .4)} Face 8715 1716 1715 12913 {rgb=(.7 .4 .4)} Face 8716 1715 1729 12913 {rgb=(.7 .4 .4)} Face 8717 1734 1714 12914 {rgb=(.7 .4 .4)} Face 8718 1714 1715 12914 {rgb=(.7 .4 .4)} Face 8719 1715 1724 12914 {rgb=(.7 .4 .4)} Face 8720 1724 1734 12914 {rgb=(.7 .4 .4)} Face 8721 1757 1729 12915 {rgb=(.7 .4 .4)} Face 8722 1729 1730 12915 {rgb=(.7 .4 .4)} Face 8723 1730 1760 12915 {rgb=(.7 .4 .4)} Face 8724 1760 1757 12915 {rgb=(.7 .4 .4)} Face 8725 1735 1730 12916 {rgb=(.7 .4 .4)} Face 8726 1730 1714 12916 {rgb=(.7 .4 .4)} Face 8727 1714 1719 12916 {rgb=(.7 .4 .4)} Face 8728 1719 1735 12916 {rgb=(.7 .4 .4)} Face 8729 1750 1727 12917 {rgb=(.7 .4 .4)} Face 8730 1727 1719 12917 {rgb=(.7 .4 .4)} Face 8731 1719 1740 12917 {rgb=(.7 .4 .4)} Face 8732 1740 1750 12917 {rgb=(.7 .4 .4)} Face 8733 1763 1735 12918 {rgb=(.7 .4 .4)} Face 8734 1735 1742 12918 {rgb=(.7 .4 .4)} Face 8735 1742 1769 12918 {rgb=(.7 .4 .4)} Face 8736 1769 1763 12918 {rgb=(.7 .4 .4)} Face 8737 1753 1742 12919 {rgb=(.7 .4 .4)} Face 8738 1742 1727 12919 {rgb=(.7 .4 .4)} Face 8739 1727 1744 12919 {rgb=(.7 .4 .4)} Face 8740 1744 1753 12919 {rgb=(.7 .4 .4)} Face 8741 1776 1761 12920 {rgb=(.7 .4 .4)} Face 8742 1761 1744 12920 {rgb=(.7 .4 .4)} Face 8743 1744 1759 12920 {rgb=(.7 .4 .4)} Face 8744 1759 1776 12920 {rgb=(.7 .4 .4)} Face 8745 1778 1753 12921 {rgb=(.7 .4 .4)} Face 8746 1753 1766 12921 {rgb=(.7 .4 .4)} Face 8747 1766 1782 12921 {rgb=(.7 .4 .4)} Face 8748 1782 1778 12921 {rgb=(.7 .4 .4)} Face 8749 1783 1766 12922 {rgb=(.7 .4 .4)} Face 8750 1766 1761 12922 {rgb=(.7 .4 .4)} Face 8751 1761 1779 12922 {rgb=(.7 .4 .4)} Face 8752 1779 1783 12922 {rgb=(.7 .4 .4)} Face 8753 1837 1803 12923 {rgb=(.7 .4 .4)} Face 8754 1803 1779 12923 {rgb=(.7 .4 .4)} Face 8755 1779 1796 12923 {rgb=(.7 .4 .4)} Face 8756 1796 1837 12923 {rgb=(.7 .4 .4)} Face 8757 1806 1783 12924 {rgb=(.7 .4 .4)} Face 8758 1783 1819 12924 {rgb=(.7 .4 .4)} Face 8759 1819 1857 12924 {rgb=(.7 .4 .4)} Face 8760 1857 1806 12924 {rgb=(.7 .4 .4)} Face 8761 1883 1819 12925 {rgb=(.7 .4 .4)} Face 8762 1819 1803 12925 {rgb=(.7 .4 .4)} Face 8763 1803 1856 12925 {rgb=(.7 .4 .4)} Face 8764 1856 1883 12925 {rgb=(.7 .4 .4)} Face 8765 1969 1912 12926 {rgb=(.7 .4 .4)} Face 8766 1912 1856 12926 {rgb=(.7 .4 .4)} Face 8767 1856 1894 12926 {rgb=(.7 .4 .4)} Face 8768 1894 1969 12926 {rgb=(.7 .4 .4)} Face 8769 1900 1883 12927 {rgb=(.7 .4 .4)} Face 8770 1883 1940 12927 {rgb=(.7 .4 .4)} Face 8771 1940 1968 12927 {rgb=(.7 .4 .4)} Face 8772 1968 1900 12927 {rgb=(.7 .4 .4)} Face 8773 1983 1940 12928 {rgb=(.7 .4 .4)} Face 8774 1940 1912 12928 {rgb=(.7 .4 .4)} Face 8775 1912 1941 12928 {rgb=(.7 .4 .4)} Face 8776 1941 1983 12928 {rgb=(.7 .4 .4)} Face 8777 2024 1946 12929 {rgb=(.7 .4 .4)} Face 8778 1946 1941 12929 {rgb=(.7 .4 .4)} Face 8779 1941 2014 12929 {rgb=(.7 .4 .4)} Face 8780 2014 2024 12929 {rgb=(.7 .4 .4)} Face 8781 1990 1983 12930 {rgb=(.7 .4 .4)} Face 8782 1983 1946 12930 {rgb=(.7 .4 .4)} Face 8783 1946 1962 12930 {rgb=(.7 .4 .4)} Face 8784 1962 1990 12930 {rgb=(.7 .4 .4)} Face 8785 1992 1985 12931 {rgb=(.7 .4 .4)} Face 8786 1985 1962 12931 {rgb=(.7 .4 .4)} Face 8787 1962 1979 12931 {rgb=(.7 .4 .4)} Face 8788 1979 1992 12931 {rgb=(.7 .4 .4)} Face 8789 1987 1990 12932 {rgb=(.7 .4 .4)} Face 8790 1990 1985 12932 {rgb=(.7 .4 .4)} Face 8791 1985 1996 12932 {rgb=(.7 .4 .4)} Face 8792 1996 1987 12932 {rgb=(.7 .4 .4)} Face 8793 1999 2009 12933 {rgb=(.7 .4 .4)} Face 8794 2009 1979 12933 {rgb=(.7 .4 .4)} Face 8795 1979 1958 12933 {rgb=(.7 .4 .4)} Face 8796 1958 1999 12933 {rgb=(.7 .4 .4)} Face 8797 1996 1992 12934 {rgb=(.7 .4 .4)} Face 8798 1992 2017 12934 {rgb=(.7 .4 .4)} Face 8799 2017 2001 12934 {rgb=(.7 .4 .4)} Face 8800 2001 1996 12934 {rgb=(.7 .4 .4)} Face 8801 2067 2017 12935 {rgb=(.7 .4 .4)} Face 8802 2017 2009 12935 {rgb=(.7 .4 .4)} Face 8803 2009 2061 12935 {rgb=(.7 .4 .4)} Face 8804 2061 2067 12935 {rgb=(.7 .4 .4)} Face 8805 2145 2152 12936 {rgb=(.7 .4 .4)} Face 8806 2152 2061 12936 {rgb=(.7 .4 .4)} Face 8807 2061 2063 12936 {rgb=(.7 .4 .4)} Face 8808 2063 2145 12936 {rgb=(.7 .4 .4)} Face 8809 2062 2067 12937 {rgb=(.7 .4 .4)} Face 8810 2067 2178 12937 {rgb=(.7 .4 .4)} Face 8811 2178 2200 12937 {rgb=(.7 .4 .4)} Face 8812 2200 2062 12937 {rgb=(.7 .4 .4)} Face 8813 2204 2178 12938 {rgb=(.7 .4 .4)} Face 8814 2178 2152 12938 {rgb=(.7 .4 .4)} Face 8815 2152 2169 12938 {rgb=(.7 .4 .4)} Face 8816 2169 2204 12938 {rgb=(.7 .4 .4)} Face 8817 2228 2199 12939 {rgb=(.7 .4 .4)} Face 8818 2199 2200 12939 {rgb=(.7 .4 .4)} Face 8819 2200 2219 12939 {rgb=(.7 .4 .4)} Face 8820 2219 2228 12939 {rgb=(.7 .4 .4)} Face 8821 2001 2062 12940 {rgb=(.7 .4 .4)} Face 8822 2062 2042 12940 {rgb=(.7 .4 .4)} Face 8823 2042 1956 12940 {rgb=(.7 .4 .4)} Face 8824 1956 2001 12940 {rgb=(.7 .4 .4)} Face 8825 2013 2042 12941 {rgb=(.7 .4 .4)} Face 8826 2042 2199 12941 {rgb=(.7 .4 .4)} Face 8827 2199 2181 12941 {rgb=(.7 .4 .4)} Face 8828 2181 2013 12941 {rgb=(.7 .4 .4)} Face 8829 1963 1987 12942 {rgb=(.7 .4 .4)} Face 8830 1987 1956 12942 {rgb=(.7 .4 .4)} Face 8831 1956 1916 12942 {rgb=(.7 .4 .4)} Face 8832 1916 1963 12942 {rgb=(.7 .4 .4)} Face 8833 1975 1891 12943 {rgb=(.7 .4 .4)} Face 8834 1891 1916 12943 {rgb=(.7 .4 .4)} Face 8835 1916 2013 12943 {rgb=(.7 .4 .4)} Face 8836 2013 1975 12943 {rgb=(.7 .4 .4)} Face 8837 1968 1963 12944 {rgb=(.7 .4 .4)} Face 8838 1963 1931 12944 {rgb=(.7 .4 .4)} Face 8839 1931 1936 12944 {rgb=(.7 .4 .4)} Face 8840 1936 1968 12944 {rgb=(.7 .4 .4)} Face 8841 1903 1931 12945 {rgb=(.7 .4 .4)} Face 8842 1931 1891 12945 {rgb=(.7 .4 .4)} Face 8843 1891 1852 12945 {rgb=(.7 .4 .4)} Face 8844 1852 1903 12945 {rgb=(.7 .4 .4)} Face 8845 1799 1812 12946 {rgb=(.7 .4 .4)} Face 8846 1812 1852 12946 {rgb=(.7 .4 .4)} Face 8847 1852 1836 12946 {rgb=(.7 .4 .4)} Face 8848 1836 1799 12946 {rgb=(.7 .4 .4)} Face 8849 1907 1903 12947 {rgb=(.7 .4 .4)} Face 8850 1903 1867 12947 {rgb=(.7 .4 .4)} Face 8851 1867 1862 12947 {rgb=(.7 .4 .4)} Face 8852 1862 1907 12947 {rgb=(.7 .4 .4)} Face 8853 1860 1867 12948 {rgb=(.7 .4 .4)} Face 8854 1867 1812 12948 {rgb=(.7 .4 .4)} Face 8855 1812 1805 12948 {rgb=(.7 .4 .4)} Face 8856 1805 1860 12948 {rgb=(.7 .4 .4)} Face 8857 1802 1822 12949 {rgb=(.7 .4 .4)} Face 8858 1822 1805 12949 {rgb=(.7 .4 .4)} Face 8859 1805 1791 12949 {rgb=(.7 .4 .4)} Face 8860 1791 1802 12949 {rgb=(.7 .4 .4)} Face 8861 1849 1860 12950 {rgb=(.7 .4 .4)} Face 8862 1860 1886 12950 {rgb=(.7 .4 .4)} Face 8863 1886 1858 12950 {rgb=(.7 .4 .4)} Face 8864 1858 1849 12950 {rgb=(.7 .4 .4)} Face 8865 1893 1886 12951 {rgb=(.7 .4 .4)} Face 8866 1886 1822 12951 {rgb=(.7 .4 .4)} Face 8867 1822 1842 12951 {rgb=(.7 .4 .4)} Face 8868 1842 1893 12951 {rgb=(.7 .4 .4)} Face 8869 1851 1854 12952 {rgb=(.7 .4 .4)} Face 8870 1854 1842 12952 {rgb=(.7 .4 .4)} Face 8871 1842 1816 12952 {rgb=(.7 .4 .4)} Face 8872 1816 1851 12952 {rgb=(.7 .4 .4)} Face 8873 1855 1893 12953 {rgb=(.7 .4 .4)} Face 8874 1893 1882 12953 {rgb=(.7 .4 .4)} Face 8875 1882 1830 12953 {rgb=(.7 .4 .4)} Face 8876 1830 1855 12953 {rgb=(.7 .4 .4)} Face 8877 1881 1882 12954 {rgb=(.7 .4 .4)} Face 8878 1882 1854 12954 {rgb=(.7 .4 .4)} Face 8879 1854 1865 12954 {rgb=(.7 .4 .4)} Face 8880 1865 1881 12954 {rgb=(.7 .4 .4)} Face 8881 1905 1890 12955 {rgb=(.7 .4 .4)} Face 8882 1890 1865 12955 {rgb=(.7 .4 .4)} Face 8883 1865 1876 12955 {rgb=(.7 .4 .4)} Face 8884 1876 1905 12955 {rgb=(.7 .4 .4)} Face 8885 1823 1881 12956 {rgb=(.7 .4 .4)} Face 8886 1881 1890 12956 {rgb=(.7 .4 .4)} Face 8887 1890 1825 12956 {rgb=(.7 .4 .4)} Face 8888 1825 1823 12956 {rgb=(.7 .4 .4)} Face 8889 1868 1902 12957 {rgb=(.7 .4 .4)} Face 8890 1902 1876 12957 {rgb=(.7 .4 .4)} Face 8891 1876 1851 12957 {rgb=(.7 .4 .4)} Face 8892 1851 1868 12957 {rgb=(.7 .4 .4)} Face 8893 1846 1905 12958 {rgb=(.7 .4 .4)} Face 8894 1905 1938 12958 {rgb=(.7 .4 .4)} Face 8895 1938 1875 12958 {rgb=(.7 .4 .4)} Face 8896 1875 1846 12958 {rgb=(.7 .4 .4)} Face 8897 1994 1938 12959 {rgb=(.7 .4 .4)} Face 8898 1938 1902 12959 {rgb=(.7 .4 .4)} Face 8899 1902 1932 12959 {rgb=(.7 .4 .4)} Face 8900 1932 1994 12959 {rgb=(.7 .4 .4)} Face 8901 2047 2036 12960 {rgb=(.7 .4 .4)} Face 8902 2036 1932 12960 {rgb=(.7 .4 .4)} Face 8903 1932 1924 12960 {rgb=(.7 .4 .4)} Face 8904 1924 2047 12960 {rgb=(.7 .4 .4)} Face 8905 1925 1994 12961 {rgb=(.7 .4 .4)} Face 8906 1994 2036 12961 {rgb=(.7 .4 .4)} Face 8907 2036 1989 12961 {rgb=(.7 .4 .4)} Face 8908 1989 1925 12961 {rgb=(.7 .4 .4)} Face 8909 1838 1913 12962 {rgb=(.7 .4 .4)} Face 8910 1913 1924 12962 {rgb=(.7 .4 .4)} Face 8911 1924 1868 12962 {rgb=(.7 .4 .4)} Face 8912 1868 1838 12962 {rgb=(.7 .4 .4)} Face 8913 2039 2047 12963 {rgb=(.7 .4 .4)} Face 8914 2047 2064 12963 {rgb=(.7 .4 .4)} Face 8915 2064 2077 12963 {rgb=(.7 .4 .4)} Face 8916 2077 2039 12963 {rgb=(.7 .4 .4)} Face 8917 2124 2064 12964 {rgb=(.7 .4 .4)} Face 8918 2064 1913 12964 {rgb=(.7 .4 .4)} Face 8919 1913 1966 12964 {rgb=(.7 .4 .4)} Face 8920 1966 2124 12964 {rgb=(.7 .4 .4)} Face 8921 1813 1838 12965 {rgb=(.7 .4 .4)} Face 8922 1838 1816 12965 {rgb=(.7 .4 .4)} Face 8923 1816 1802 12965 {rgb=(.7 .4 .4)} Face 8924 1802 1813 12965 {rgb=(.7 .4 .4)} Face 8925 1820 1813 12966 {rgb=(.7 .4 .4)} Face 8926 1813 1791 12966 {rgb=(.7 .4 .4)} Face 8927 1791 1797 12966 {rgb=(.7 .4 .4)} Face 8928 1797 1820 12966 {rgb=(.7 .4 .4)} Face 8929 1760 1763 12967 {rgb=(.7 .4 .4)} Face 8930 1763 1830 12967 {rgb=(.7 .4 .4)} Face 8931 1830 1823 12967 {rgb=(.7 .4 .4)} Face 8932 1823 1760 12967 {rgb=(.7 .4 .4)} Face 8933 1858 1855 12968 {rgb=(.7 .4 .4)} Face 8934 1855 1769 12968 {rgb=(.7 .4 .4)} Face 8935 1769 1778 12968 {rgb=(.7 .4 .4)} Face 8936 1778 1858 12968 {rgb=(.7 .4 .4)} Face 8937 1862 1849 12969 {rgb=(.7 .4 .4)} Face 8938 1849 1782 12969 {rgb=(.7 .4 .4)} Face 8939 1782 1806 12969 {rgb=(.7 .4 .4)} Face 8940 1806 1862 12969 {rgb=(.7 .4 .4)} Face 8941 1936 1907 12970 {rgb=(.7 .4 .4)} Face 8942 1907 1857 12970 {rgb=(.7 .4 .4)} Face 8943 1857 1900 12970 {rgb=(.7 .4 .4)} Face 8944 1900 1936 12970 {rgb=(.7 .4 .4)} Face 8945 2114 2087 12971 {rgb=(.7 .4 .4)} Face 8946 2087 2004 12971 {rgb=(.7 .4 .4)} Face 8947 2004 2035 12971 {rgb=(.7 .4 .4)} Face 8948 2035 2114 12971 {rgb=(.7 .4 .4)} Face 8949 1960 2004 12972 {rgb=(.7 .4 .4)} Face 8950 2004 2029 12972 {rgb=(.7 .4 .4)} Face 8951 2029 1999 12972 {rgb=(.7 .4 .4)} Face 8952 1999 1960 12972 {rgb=(.7 .4 .4)} Face 8953 2055 2029 12973 {rgb=(.7 .4 .4)} Face 8954 2029 2087 12973 {rgb=(.7 .4 .4)} Face 8955 2087 2120 12973 {rgb=(.7 .4 .4)} Face 8956 2120 2055 12973 {rgb=(.7 .4 .4)} Face 8957 2063 2055 12974 {rgb=(.7 .4 .4)} Face 8958 2055 2121 12974 {rgb=(.7 .4 .4)} Face 8959 2121 2129 12974 {rgb=(.7 .4 .4)} Face 8960 2129 2063 12974 {rgb=(.7 .4 .4)} Face 8961 2218 2121 12975 {rgb=(.7 .4 .4)} Face 8962 2121 2120 12975 {rgb=(.7 .4 .4)} Face 8963 2120 2220 12975 {rgb=(.7 .4 .4)} Face 8964 2220 2218 12975 {rgb=(.7 .4 .4)} Face 8965 2160 2145 12976 {rgb=(.7 .4 .4)} Face 8966 2145 2129 12976 {rgb=(.7 .4 .4)} Face 8967 2129 2139 12976 {rgb=(.7 .4 .4)} Face 8968 2139 2160 12976 {rgb=(.7 .4 .4)} Face 8969 2175 2108 12977 {rgb=(.7 .4 .4)} Face 8970 2108 2139 12977 {rgb=(.7 .4 .4)} Face 8971 2139 2213 12977 {rgb=(.7 .4 .4)} Face 8972 2213 2175 12977 {rgb=(.7 .4 .4)} Face 8973 2169 2160 12978 {rgb=(.7 .4 .4)} Face 8974 2160 2108 12978 {rgb=(.7 .4 .4)} Face 8975 2108 2105 12978 {rgb=(.7 .4 .4)} Face 8976 2105 2169 12978 {rgb=(.7 .4 .4)} Face 8977 2269 2114 12979 {rgb=(.7 .4 .4)} Face 8978 2114 2159 12979 {rgb=(.7 .4 .4)} Face 8979 2159 2300 12979 {rgb=(.7 .4 .4)} Face 8980 2300 2269 12979 {rgb=(.7 .4 .4)} Face 8981 2235 2159 12980 {rgb=(.7 .4 .4)} Face 8982 2159 2073 12980 {rgb=(.7 .4 .4)} Face 8983 2073 2153 12980 {rgb=(.7 .4 .4)} Face 8984 2153 2235 12980 {rgb=(.7 .4 .4)} Face 8985 2037 2073 12981 {rgb=(.7 .4 .4)} Face 8986 2073 2035 12981 {rgb=(.7 .4 .4)} Face 8987 2035 1976 12981 {rgb=(.7 .4 .4)} Face 8988 1976 2037 12981 {rgb=(.7 .4 .4)} Face 8989 1947 1982 12982 {rgb=(.7 .4 .4)} Face 8990 1982 1976 12982 {rgb=(.7 .4 .4)} Face 8991 1976 1943 12982 {rgb=(.7 .4 .4)} Face 8992 1943 1947 12982 {rgb=(.7 .4 .4)} Face 8993 2079 2037 12983 {rgb=(.7 .4 .4)} Face 8994 2037 1982 12983 {rgb=(.7 .4 .4)} Face 8995 1982 2041 12983 {rgb=(.7 .4 .4)} Face 8996 2041 2079 12983 {rgb=(.7 .4 .4)} Face 8997 1958 1942 12984 {rgb=(.7 .4 .4)} Face 8998 1942 1943 12984 {rgb=(.7 .4 .4)} Face 8999 1943 1960 12984 {rgb=(.7 .4 .4)} Face 9000 1960 1958 12984 {rgb=(.7 .4 .4)} Face 9001 2011 1947 12985 {rgb=(.7 .4 .4)} Face 9002 1947 1942 12985 {rgb=(.7 .4 .4)} Face 9003 1942 2023 12985 {rgb=(.7 .4 .4)} Face 9004 2023 2011 12985 {rgb=(.7 .4 .4)} Face 9005 1756 1757 12986 {rgb=(.7 .4 .4)} Face 9006 1757 1825 12986 {rgb=(.7 .4 .4)} Face 9007 1825 1846 12986 {rgb=(.7 .4 .4)} Face 9008 1846 1756 12986 {rgb=(.7 .4 .4)} Face 9009 2132 2124 12987 {rgb=(.7 .4 .4)} Face 9010 2124 2184 12987 {rgb=(.7 .4 .4)} Face 9011 2184 2210 12987 {rgb=(.7 .4 .4)} Face 9012 2210 2132 12987 {rgb=(.7 .4 .4)} Face 9013 2135 2184 12988 {rgb=(.7 .4 .4)} Face 9014 2184 1966 12988 {rgb=(.7 .4 .4)} Face 9015 1966 1909 12988 {rgb=(.7 .4 .4)} Face 9016 1909 2135 12988 {rgb=(.7 .4 .4)} Face 9017 1836 1959 12989 {rgb=(.7 .4 .4)} Face 9018 1959 1978 12989 {rgb=(.7 .4 .4)} Face 9019 1978 1848 12989 {rgb=(.7 .4 .4)} Face 9020 1848 1836 12989 {rgb=(.7 .4 .4)} Face 9021 1927 1978 12990 {rgb=(.7 .4 .4)} Face 9022 1978 2171 12990 {rgb=(.7 .4 .4)} Face 9023 2171 2135 12990 {rgb=(.7 .4 .4)} Face 9024 2135 1927 12990 {rgb=(.7 .4 .4)} Face 9025 2296 2171 12991 {rgb=(.7 .4 .4)} Face 9026 2171 2163 12991 {rgb=(.7 .4 .4)} Face 9027 2163 2283 12991 {rgb=(.7 .4 .4)} Face 9028 2283 2296 12991 {rgb=(.7 .4 .4)} Face 9029 2164 2163 12992 {rgb=(.7 .4 .4)} Face 9030 2163 1959 12992 {rgb=(.7 .4 .4)} Face 9031 1959 1975 12992 {rgb=(.7 .4 .4)} Face 9032 1975 2164 12992 {rgb=(.7 .4 .4)} Face 9033 2283 2164 12993 {rgb=(.7 .4 .4)} Face 9034 2164 2181 12993 {rgb=(.7 .4 .4)} Face 9035 2181 2297 12993 {rgb=(.7 .4 .4)} Face 9036 2297 2283 12993 {rgb=(.7 .4 .4)} Face 9037 1797 1799 12994 {rgb=(.7 .4 .4)} Face 9038 1799 1848 12994 {rgb=(.7 .4 .4)} Face 9039 1848 1844 12994 {rgb=(.7 .4 .4)} Face 9040 1844 1797 12994 {rgb=(.7 .4 .4)} Face 9041 1909 1820 12995 {rgb=(.7 .4 .4)} Face 9042 1820 1844 12995 {rgb=(.7 .4 .4)} Face 9043 1844 1927 12995 {rgb=(.7 .4 .4)} Face 9044 1927 1909 12995 {rgb=(.7 .4 .4)} Face 9045 1754 1758 12996 {rgb=(.7 .4 .4)} Face 9046 1758 1875 12996 {rgb=(.7 .4 .4)} Face 9047 1875 1872 12996 {rgb=(.7 .4 .4)} Face 9048 1872 1754 12996 {rgb=(.7 .4 .4)} Face 9049 1790 1765 12997 {rgb=(.7 .4 .4)} Face 9050 1765 1872 12997 {rgb=(.7 .4 .4)} Face 9051 1872 1925 12997 {rgb=(.7 .4 .4)} Face 9052 1925 1790 12997 {rgb=(.7 .4 .4)} Face 9053 1906 1845 12998 {rgb=(.7 .4 .4)} Face 9054 1845 1989 12998 {rgb=(.7 .4 .4)} Face 9055 1989 2039 12998 {rgb=(.7 .4 .4)} Face 9056 2039 1906 12998 {rgb=(.7 .4 .4)} Face 9057 2032 1967 12999 {rgb=(.7 .4 .4)} Face 9058 1967 2077 12999 {rgb=(.7 .4 .4)} Face 9059 2077 2132 12999 {rgb=(.7 .4 .4)} Face 9060 2132 2032 12999 {rgb=(.7 .4 .4)} Face 9061 2134 2086 13000 {rgb=(.7 .4 .4)} Face 9062 2086 2210 13000 {rgb=(.7 .4 .4)} Face 9063 2210 2254 13000 {rgb=(.7 .4 .4)} Face 9064 2254 2134 13000 {rgb=(.7 .4 .4)} Face 9065 2255 2228 13001 {rgb=(.7 .4 .4)} Face 9066 2228 2117 13001 {rgb=(.7 .4 .4)} Face 9067 2117 2134 13001 {rgb=(.7 .4 .4)} Face 9068 2134 2255 13001 {rgb=(.7 .4 .4)} Face 9069 2109 2111 13002 {rgb=(.7 .4 .4)} Face 9070 2111 2219 13002 {rgb=(.7 .4 .4)} Face 9071 2219 2204 13002 {rgb=(.7 .4 .4)} Face 9072 2204 2109 13002 {rgb=(.7 .4 .4)} Face 9073 2297 2255 13003 {rgb=(.7 .4 .4)} Face 9074 2255 2254 13003 {rgb=(.7 .4 .4)} Face 9075 2254 2296 13003 {rgb=(.7 .4 .4)} Face 9076 2296 2297 13003 {rgb=(.7 .4 .4)} Face 9077 2093 2109 13004 {rgb=(.7 .4 .4)} Face 9078 2109 2105 13004 {rgb=(.7 .4 .4)} Face 9079 2105 2138 13004 {rgb=(.7 .4 .4)} Face 9080 2138 2093 13004 {rgb=(.7 .4 .4)} Face 9081 1788 1771 13005 {rgb=(.7 .4 .4)} Face 9082 1771 1789 13005 {rgb=(.7 .4 .4)} Face 9083 1789 1840 13005 {rgb=(.7 .4 .4)} Face 9084 1840 1788 13005 {rgb=(.7 .4 .4)} Face 9085 1724 1723 13006 {rgb=(.7 .4 .4)} Face 9086 1723 1771 13006 {rgb=(.7 .4 .4)} Face 9087 1771 1775 13006 {rgb=(.7 .4 .4)} Face 9088 1775 1724 13006 {rgb=(.7 .4 .4)} Face 9089 2008 1815 13007 {rgb=(.7 .4 .4)} Face 9090 1815 1775 13007 {rgb=(.7 .4 .4)} Face 9091 1775 1915 13007 {rgb=(.7 .4 .4)} Face 9092 1915 2008 13007 {rgb=(.7 .4 .4)} Face 9093 1740 1734 13008 {rgb=(.7 .4 .4)} Face 9094 1734 1815 13008 {rgb=(.7 .4 .4)} Face 9095 1815 1847 13008 {rgb=(.7 .4 .4)} Face 9096 1847 1740 13008 {rgb=(.7 .4 .4)} Face 9097 1970 1827 13009 {rgb=(.7 .4 .4)} Face 9098 1827 1847 13009 {rgb=(.7 .4 .4)} Face 9099 1847 2010 13009 {rgb=(.7 .4 .4)} Face 9100 2010 1970 13009 {rgb=(.7 .4 .4)} Face 9101 1759 1750 13010 {rgb=(.7 .4 .4)} Face 9102 1750 1827 13010 {rgb=(.7 .4 .4)} Face 9103 1827 1828 13010 {rgb=(.7 .4 .4)} Face 9104 1828 1759 13010 {rgb=(.7 .4 .4)} Face 9105 2003 1853 13011 {rgb=(.7 .4 .4)} Face 9106 1853 1828 13011 {rgb=(.7 .4 .4)} Face 9107 1828 1993 13011 {rgb=(.7 .4 .4)} Face 9108 1993 2003 13011 {rgb=(.7 .4 .4)} Face 9109 1796 1776 13012 {rgb=(.7 .4 .4)} Face 9110 1776 1853 13012 {rgb=(.7 .4 .4)} Face 9111 1853 1885 13012 {rgb=(.7 .4 .4)} Face 9112 1885 1796 13012 {rgb=(.7 .4 .4)} Face 9113 2056 1921 13013 {rgb=(.7 .4 .4)} Face 9114 1921 1885 13013 {rgb=(.7 .4 .4)} Face 9115 1885 2026 13013 {rgb=(.7 .4 .4)} Face 9116 2026 2056 13013 {rgb=(.7 .4 .4)} Face 9117 1894 1837 13014 {rgb=(.7 .4 .4)} Face 9118 1837 1921 13014 {rgb=(.7 .4 .4)} Face 9119 1921 2006 13014 {rgb=(.7 .4 .4)} Face 9120 2006 1894 13014 {rgb=(.7 .4 .4)} Face 9121 2198 2075 13015 {rgb=(.7 .4 .4)} Face 9122 2075 2006 13015 {rgb=(.7 .4 .4)} Face 9123 2006 2107 13015 {rgb=(.7 .4 .4)} Face 9124 2107 2198 13015 {rgb=(.7 .4 .4)} Face 9125 2014 1969 13016 {rgb=(.7 .4 .4)} Face 9126 1969 2075 13016 {rgb=(.7 .4 .4)} Face 9127 2075 2119 13016 {rgb=(.7 .4 .4)} Face 9128 2119 2014 13016 {rgb=(.7 .4 .4)} Face 9129 2251 2126 13017 {rgb=(.7 .4 .4)} Face 9130 2126 2119 13017 {rgb=(.7 .4 .4)} Face 9131 2119 2244 13017 {rgb=(.7 .4 .4)} Face 9132 2244 2251 13017 {rgb=(.7 .4 .4)} Face 9133 2023 2024 13018 {rgb=(.7 .4 .4)} Face 9134 2024 2126 13018 {rgb=(.7 .4 .4)} Face 9135 2126 2110 13018 {rgb=(.7 .4 .4)} Face 9136 2110 2023 13018 {rgb=(.7 .4 .4)} Face 9137 2223 2083 13019 {rgb=(.7 .4 .4)} Face 9138 2083 2110 13019 {rgb=(.7 .4 .4)} Face 9139 2110 2272 13019 {rgb=(.7 .4 .4)} Face 9140 2272 2223 13019 {rgb=(.7 .4 .4)} Face 9141 2046 2011 13020 {rgb=(.7 .4 .4)} Face 9142 2011 2083 13020 {rgb=(.7 .4 .4)} Face 9143 2083 2106 13020 {rgb=(.7 .4 .4)} Face 9144 2106 2046 13020 {rgb=(.7 .4 .4)} Face 9145 2306 2215 13021 {rgb=(.7 .4 .4)} Face 9146 2215 2106 13021 {rgb=(.7 .4 .4)} Face 9147 2106 2206 13021 {rgb=(.7 .4 .4)} Face 9148 2206 2306 13021 {rgb=(.7 .4 .4)} Face 9149 2041 2046 13022 {rgb=(.7 .4 .4)} Face 9150 2046 2215 13022 {rgb=(.7 .4 .4)} Face 9151 2215 2209 13022 {rgb=(.7 .4 .4)} Face 9152 2209 2041 13022 {rgb=(.7 .4 .4)} Face 9153 2430 2408 13023 {rgb=(.7 .4 .4)} Face 9154 2408 2206 13023 {rgb=(.7 .4 .4)} Face 9155 2206 2223 13023 {rgb=(.7 .4 .4)} Face 9156 2223 2430 13023 {rgb=(.7 .4 .4)} Face 9157 2394 2306 13024 {rgb=(.7 .4 .4)} Face 9158 2306 2408 13024 {rgb=(.7 .4 .4)} Face 9159 2408 2462 13024 {rgb=(.7 .4 .4)} Face 9160 2462 2394 13024 {rgb=(.7 .4 .4)} Face 9161 2564 2510 13025 {rgb=(.7 .4 .4)} Face 9162 2510 2438 13025 {rgb=(.7 .4 .4)} Face 9163 2438 2501 13025 {rgb=(.7 .4 .4)} Face 9164 2501 2564 13025 {rgb=(.7 .4 .4)} Face 9165 2391 2438 13026 {rgb=(.7 .4 .4)} Face 9166 2438 2313 13026 {rgb=(.7 .4 .4)} Face 9167 2313 2251 13026 {rgb=(.7 .4 .4)} Face 9168 2251 2391 13026 {rgb=(.7 .4 .4)} Face 9169 2272 2313 13027 {rgb=(.7 .4 .4)} Face 9170 2313 2510 13027 {rgb=(.7 .4 .4)} Face 9171 2510 2476 13027 {rgb=(.7 .4 .4)} Face 9172 2476 2272 13027 {rgb=(.7 .4 .4)} Face 9173 2580 2585 13028 {rgb=(.7 .4 .4)} Face 9174 2585 2501 13028 {rgb=(.7 .4 .4)} Face 9175 2501 2485 13028 {rgb=(.7 .4 .4)} Face 9176 2485 2580 13028 {rgb=(.7 .4 .4)} Face 9177 2634 2564 13029 {rgb=(.7 .4 .4)} Face 9178 2564 2585 13029 {rgb=(.7 .4 .4)} Face 9179 2585 2654 13029 {rgb=(.7 .4 .4)} Face 9180 2654 2634 13029 {rgb=(.7 .4 .4)} Face 9181 2380 2482 13030 {rgb=(.7 .4 .4)} Face 9182 2482 2485 13030 {rgb=(.7 .4 .4)} Face 9183 2485 2391 13030 {rgb=(.7 .4 .4)} Face 9184 2391 2380 13030 {rgb=(.7 .4 .4)} Face 9185 2670 2580 13031 {rgb=(.7 .4 .4)} Face 9186 2580 2579 13031 {rgb=(.7 .4 .4)} Face 9187 2579 2677 13031 {rgb=(.7 .4 .4)} Face 9188 2677 2670 13031 {rgb=(.7 .4 .4)} Face 9189 2559 2579 13032 {rgb=(.7 .4 .4)} Face 9190 2579 2482 13032 {rgb=(.7 .4 .4)} Face 9191 2482 2458 13032 {rgb=(.7 .4 .4)} Face 9192 2458 2559 13032 {rgb=(.7 .4 .4)} Face 9193 2339 2380 13033 {rgb=(.7 .4 .4)} Face 9194 2380 2244 13033 {rgb=(.7 .4 .4)} Face 9195 2244 2198 13033 {rgb=(.7 .4 .4)} Face 9196 2198 2339 13033 {rgb=(.7 .4 .4)} Face 9197 2217 2266 13034 {rgb=(.7 .4 .4)} Face 9198 2266 2107 13034 {rgb=(.7 .4 .4)} Face 9199 2107 2056 13034 {rgb=(.7 .4 .4)} Face 9200 2056 2217 13034 {rgb=(.7 .4 .4)} Face 9201 2458 2339 13035 {rgb=(.7 .4 .4)} Face 9202 2339 2266 13035 {rgb=(.7 .4 .4)} Face 9203 2266 2422 13035 {rgb=(.7 .4 .4)} Face 9204 2422 2458 13035 {rgb=(.7 .4 .4)} Face 9205 2498 2534 13036 {rgb=(.7 .4 .4)} Face 9206 2534 2422 13036 {rgb=(.7 .4 .4)} Face 9207 2422 2389 13036 {rgb=(.7 .4 .4)} Face 9208 2389 2498 13036 {rgb=(.7 .4 .4)} Face 9209 2656 2559 13037 {rgb=(.7 .4 .4)} Face 9210 2559 2534 13037 {rgb=(.7 .4 .4)} Face 9211 2534 2624 13037 {rgb=(.7 .4 .4)} Face 9212 2624 2656 13037 {rgb=(.7 .4 .4)} Face 9213 2176 2356 13038 {rgb=(.7 .4 .4)} Face 9214 2356 2389 13038 {rgb=(.7 .4 .4)} Face 9215 2389 2217 13038 {rgb=(.7 .4 .4)} Face 9216 2217 2176 13038 {rgb=(.7 .4 .4)} Face 9217 2590 2498 13039 {rgb=(.7 .4 .4)} Face 9218 2498 2466 13039 {rgb=(.7 .4 .4)} Face 9219 2466 2536 13039 {rgb=(.7 .4 .4)} Face 9220 2536 2590 13039 {rgb=(.7 .4 .4)} Face 9221 2431 2466 13040 {rgb=(.7 .4 .4)} Face 9222 2466 2356 13040 {rgb=(.7 .4 .4)} Face 9223 2356 2302 13040 {rgb=(.7 .4 .4)} Face 9224 2302 2431 13040 {rgb=(.7 .4 .4)} Face 9225 2157 2176 13041 {rgb=(.7 .4 .4)} Face 9226 2176 2026 13041 {rgb=(.7 .4 .4)} Face 9227 2026 2003 13041 {rgb=(.7 .4 .4)} Face 9228 2003 2157 13041 {rgb=(.7 .4 .4)} Face 9229 2127 2144 13042 {rgb=(.7 .4 .4)} Face 9230 2144 1993 13042 {rgb=(.7 .4 .4)} Face 9231 1993 1970 13042 {rgb=(.7 .4 .4)} Face 9232 1970 2127 13042 {rgb=(.7 .4 .4)} Face 9233 2302 2157 13043 {rgb=(.7 .4 .4)} Face 9234 2157 2144 13043 {rgb=(.7 .4 .4)} Face 9235 2144 2288 13043 {rgb=(.7 .4 .4)} Face 9236 2288 2302 13043 {rgb=(.7 .4 .4)} Face 9237 2463 2431 13044 {rgb=(.7 .4 .4)} Face 9238 2431 2288 13044 {rgb=(.7 .4 .4)} Face 9239 2288 2345 13044 {rgb=(.7 .4 .4)} Face 9240 2345 2463 13044 {rgb=(.7 .4 .4)} Face 9241 2153 2079 13045 {rgb=(.7 .4 .4)} Face 9242 2079 2209 13045 {rgb=(.7 .4 .4)} Face 9243 2209 2270 13045 {rgb=(.7 .4 .4)} Face 9244 2270 2153 13045 {rgb=(.7 .4 .4)} Face 9245 2300 2235 13046 {rgb=(.7 .4 .4)} Face 9246 2235 2355 13046 {rgb=(.7 .4 .4)} Face 9247 2355 2423 13046 {rgb=(.7 .4 .4)} Face 9248 2423 2300 13046 {rgb=(.7 .4 .4)} Face 9249 2435 2355 13047 {rgb=(.7 .4 .4)} Face 9250 2355 2270 13047 {rgb=(.7 .4 .4)} Face 9251 2270 2394 13047 {rgb=(.7 .4 .4)} Face 9252 2394 2435 13047 {rgb=(.7 .4 .4)} Face 9253 2533 2435 13048 {rgb=(.7 .4 .4)} Face 9254 2435 2502 13048 {rgb=(.7 .4 .4)} Face 9255 2502 2569 13048 {rgb=(.7 .4 .4)} Face 9256 2569 2533 13048 {rgb=(.7 .4 .4)} Face 9257 2557 2502 13049 {rgb=(.7 .4 .4)} Face 9258 2502 2462 13049 {rgb=(.7 .4 .4)} Face 9259 2462 2530 13049 {rgb=(.7 .4 .4)} Face 9260 2530 2557 13049 {rgb=(.7 .4 .4)} Face 9261 2196 2127 13050 {rgb=(.7 .4 .4)} Face 9262 2127 2010 13050 {rgb=(.7 .4 .4)} Face 9263 2010 2084 13050 {rgb=(.7 .4 .4)} Face 9264 2084 2196 13050 {rgb=(.7 .4 .4)} Face 9265 2558 2430 13051 {rgb=(.7 .4 .4)} Face 9266 2430 2476 13051 {rgb=(.7 .4 .4)} Face 9267 2476 2611 13051 {rgb=(.7 .4 .4)} Face 9268 2611 2558 13051 {rgb=(.7 .4 .4)} Face 9269 2637 2613 13052 {rgb=(.7 .4 .4)} Face 9270 2613 2530 13052 {rgb=(.7 .4 .4)} Face 9271 2530 2558 13052 {rgb=(.7 .4 .4)} Face 9272 2558 2637 13052 {rgb=(.7 .4 .4)} Face 9273 2569 2557 13053 {rgb=(.7 .4 .4)} Face 9274 2557 2613 13053 {rgb=(.7 .4 .4)} Face 9275 2613 2632 13053 {rgb=(.7 .4 .4)} Face 9276 2632 2569 13053 {rgb=(.7 .4 .4)} Face 9277 1833 1788 13054 {rgb=(.7 .4 .4)} Face 9278 1788 1773 13054 {rgb=(.7 .4 .4)} Face 9279 1773 1804 13054 {rgb=(.7 .4 .4)} Face 9280 1804 1833 13054 {rgb=(.7 .4 .4)} Face 9281 1873 1773 13055 {rgb=(.7 .4 .4)} Face 9282 1773 1840 13055 {rgb=(.7 .4 .4)} Face 9283 1840 1944 13055 {rgb=(.7 .4 .4)} Face 9284 1944 1873 13055 {rgb=(.7 .4 .4)} Face 9285 2512 2554 13056 {rgb=(.7 .4 .4)} Face 9286 2554 2449 13056 {rgb=(.7 .4 .4)} Face 9287 2449 2415 13056 {rgb=(.7 .4 .4)} Face 9288 2415 2512 13056 {rgb=(.7 .4 .4)} Face 9289 2388 2449 13057 {rgb=(.7 .4 .4)} Face 9290 2449 2492 13057 {rgb=(.7 .4 .4)} Face 9291 2492 2451 13057 {rgb=(.7 .4 .4)} Face 9292 2451 2388 13057 {rgb=(.7 .4 .4)} Face 9293 2548 2492 13058 {rgb=(.7 .4 .4)} Face 9294 2492 2595 13058 {rgb=(.7 .4 .4)} Face 9295 2595 2626 13058 {rgb=(.7 .4 .4)} Face 9296 2626 2548 13058 {rgb=(.7 .4 .4)} Face 9297 2658 2595 13059 {rgb=(.7 .4 .4)} Face 9298 2595 2554 13059 {rgb=(.7 .4 .4)} Face 9299 2554 2616 13059 {rgb=(.7 .4 .4)} Face 9300 2616 2658 13059 {rgb=(.7 .4 .4)} Face 9301 2594 2643 13060 {rgb=(.7 .4 .4)} Face 9302 2643 2616 13060 {rgb=(.7 .4 .4)} Face 9303 2616 2575 13060 {rgb=(.7 .4 .4)} Face 9304 2575 2594 13060 {rgb=(.7 .4 .4)} Face 9305 2694 2658 13061 {rgb=(.7 .4 .4)} Face 9306 2658 2714 13061 {rgb=(.7 .4 .4)} Face 9307 2714 2765 13061 {rgb=(.7 .4 .4)} Face 9308 2765 2694 13061 {rgb=(.7 .4 .4)} Face 9309 2745 2714 13062 {rgb=(.7 .4 .4)} Face 9310 2714 2643 13062 {rgb=(.7 .4 .4)} Face 9311 2643 2672 13062 {rgb=(.7 .4 .4)} Face 9312 2672 2745 13062 {rgb=(.7 .4 .4)} Face 9313 2603 2678 13063 {rgb=(.7 .4 .4)} Face 9314 2678 2672 13063 {rgb=(.7 .4 .4)} Face 9315 2672 2604 13063 {rgb=(.7 .4 .4)} Face 9316 2604 2603 13063 {rgb=(.7 .4 .4)} Face 9317 2802 2745 13064 {rgb=(.7 .4 .4)} Face 9318 2745 2761 13064 {rgb=(.7 .4 .4)} Face 9319 2761 2814 13064 {rgb=(.7 .4 .4)} Face 9320 2814 2802 13064 {rgb=(.7 .4 .4)} Face 9321 2744 2761 13065 {rgb=(.7 .4 .4)} Face 9322 2761 2678 13065 {rgb=(.7 .4 .4)} Face 9323 2678 2666 13065 {rgb=(.7 .4 .4)} Face 9324 2666 2744 13065 {rgb=(.7 .4 .4)} Face 9325 2567 2633 13066 {rgb=(.7 .4 .4)} Face 9326 2633 2666 13066 {rgb=(.7 .4 .4)} Face 9327 2666 2591 13066 {rgb=(.7 .4 .4)} Face 9328 2591 2567 13066 {rgb=(.7 .4 .4)} Face 9329 2801 2744 13067 {rgb=(.7 .4 .4)} Face 9330 2744 2710 13067 {rgb=(.7 .4 .4)} Face 9331 2710 2760 13067 {rgb=(.7 .4 .4)} Face 9332 2760 2801 13067 {rgb=(.7 .4 .4)} Face 9333 2660 2710 13068 {rgb=(.7 .4 .4)} Face 9334 2710 2633 13068 {rgb=(.7 .4 .4)} Face 9335 2633 2607 13068 {rgb=(.7 .4 .4)} Face 9336 2607 2660 13068 {rgb=(.7 .4 .4)} Face 9337 2477 2540 13069 {rgb=(.7 .4 .4)} Face 9338 2540 2607 13069 {rgb=(.7 .4 .4)} Face 9339 2607 2539 13069 {rgb=(.7 .4 .4)} Face 9340 2539 2477 13069 {rgb=(.7 .4 .4)} Face 9341 2705 2660 13070 {rgb=(.7 .4 .4)} Face 9342 2660 2598 13070 {rgb=(.7 .4 .4)} Face 9343 2598 2630 13070 {rgb=(.7 .4 .4)} Face 9344 2630 2705 13070 {rgb=(.7 .4 .4)} Face 9345 2535 2598 13071 {rgb=(.7 .4 .4)} Face 9346 2598 2540 13071 {rgb=(.7 .4 .4)} Face 9347 2540 2459 13071 {rgb=(.7 .4 .4)} Face 9348 2459 2535 13071 {rgb=(.7 .4 .4)} Face 9349 2307 2378 13072 {rgb=(.7 .4 .4)} Face 9350 2378 2459 13072 {rgb=(.7 .4 .4)} Face 9351 2459 2409 13072 {rgb=(.7 .4 .4)} Face 9352 2409 2307 13072 {rgb=(.7 .4 .4)} Face 9353 2581 2535 13073 {rgb=(.7 .4 .4)} Face 9354 2535 2478 13073 {rgb=(.7 .4 .4)} Face 9355 2478 2544 13073 {rgb=(.7 .4 .4)} Face 9356 2544 2581 13073 {rgb=(.7 .4 .4)} Face 9357 2474 2478 13074 {rgb=(.7 .4 .4)} Face 9358 2478 2378 13074 {rgb=(.7 .4 .4)} Face 9359 2378 2377 13074 {rgb=(.7 .4 .4)} Face 9360 2377 2474 13074 {rgb=(.7 .4 .4)} Face 9361 2404 2455 13075 {rgb=(.7 .4 .4)} Face 9362 2455 2377 13075 {rgb=(.7 .4 .4)} Face 9363 2377 2315 13075 {rgb=(.7 .4 .4)} Face 9364 2315 2404 13075 {rgb=(.7 .4 .4)} Face 9365 2556 2474 13076 {rgb=(.7 .4 .4)} Face 9366 2474 2526 13076 {rgb=(.7 .4 .4)} Face 9367 2526 2593 13076 {rgb=(.7 .4 .4)} Face 9368 2593 2556 13076 {rgb=(.7 .4 .4)} Face 9369 2602 2526 13077 {rgb=(.7 .4 .4)} Face 9370 2526 2455 13077 {rgb=(.7 .4 .4)} Face 9371 2455 2543 13077 {rgb=(.7 .4 .4)} Face 9372 2543 2602 13077 {rgb=(.7 .4 .4)} Face 9373 2599 2629 13078 {rgb=(.7 .4 .4)} Face 9374 2629 2543 13078 {rgb=(.7 .4 .4)} Face 9375 2543 2503 13078 {rgb=(.7 .4 .4)} Face 9376 2503 2599 13078 {rgb=(.7 .4 .4)} Face 9377 2652 2602 13079 {rgb=(.7 .4 .4)} Face 9378 2602 2685 13079 {rgb=(.7 .4 .4)} Face 9379 2685 2742 13079 {rgb=(.7 .4 .4)} Face 9380 2742 2652 13079 {rgb=(.7 .4 .4)} Face 9381 2785 2685 13080 {rgb=(.7 .4 .4)} Face 9382 2685 2629 13080 {rgb=(.7 .4 .4)} Face 9383 2629 2733 13080 {rgb=(.7 .4 .4)} Face 9384 2733 2785 13080 {rgb=(.7 .4 .4)} Face 9385 2812 2869 13081 {rgb=(.7 .4 .4)} Face 9386 2869 2733 13081 {rgb=(.7 .4 .4)} Face 9387 2733 2693 13081 {rgb=(.7 .4 .4)} Face 9388 2693 2812 13081 {rgb=(.7 .4 .4)} Face 9389 2846 2785 13082 {rgb=(.7 .4 .4)} Face 9390 2785 2923 13082 {rgb=(.7 .4 .4)} Face 9391 2923 2999 13082 {rgb=(.7 .4 .4)} Face 9392 2999 2846 13082 {rgb=(.7 .4 .4)} Face 9393 3046 2923 13083 {rgb=(.7 .4 .4)} Face 9394 2923 2869 13083 {rgb=(.7 .4 .4)} Face 9395 2869 3010 13083 {rgb=(.7 .4 .4)} Face 9396 3010 3046 13083 {rgb=(.7 .4 .4)} Face 9397 3049 3120 13084 {rgb=(.7 .4 .4)} Face 9398 3120 3010 13084 {rgb=(.7 .4 .4)} Face 9399 3010 2920 13084 {rgb=(.7 .4 .4)} Face 9400 2920 3049 13084 {rgb=(.7 .4 .4)} Face 9401 3058 3046 13085 {rgb=(.7 .4 .4)} Face 9402 3046 3147 13085 {rgb=(.7 .4 .4)} Face 9403 3147 3172 13085 {rgb=(.7 .4 .4)} Face 9404 3172 3058 13085 {rgb=(.7 .4 .4)} Face 9405 3325 3147 13086 {rgb=(.7 .4 .4)} Face 9406 3147 3120 13086 {rgb=(.7 .4 .4)} Face 9407 3120 3265 13086 {rgb=(.7 .4 .4)} Face 9408 3265 3325 13086 {rgb=(.7 .4 .4)} Face 9409 3070 3058 13087 {rgb=(.7 .4 .4)} Face 9410 3058 3047 13087 {rgb=(.7 .4 .4)} Face 9411 3047 3035 13087 {rgb=(.7 .4 .4)} Face 9412 3035 3070 13087 {rgb=(.7 .4 .4)} Face 9413 3004 3047 13088 {rgb=(.7 .4 .4)} Face 9414 3047 3200 13088 {rgb=(.7 .4 .4)} Face 9415 3200 3178 13088 {rgb=(.7 .4 .4)} Face 9416 3178 3004 13088 {rgb=(.7 .4 .4)} Face 9417 3435 3200 13089 {rgb=(.7 .4 .4)} Face 9418 3200 3172 13089 {rgb=(.7 .4 .4)} Face 9419 3172 3384 13089 {rgb=(.7 .4 .4)} Face 9420 3384 3435 13089 {rgb=(.7 .4 .4)} Face 9421 3333 3439 13090 {rgb=(.7 .4 .4)} Face 9422 3439 3265 13090 {rgb=(.7 .4 .4)} Face 9423 3265 3186 13090 {rgb=(.7 .4 .4)} Face 9424 3186 3333 13090 {rgb=(.7 .4 .4)} Face 9425 3384 3325 13091 {rgb=(.7 .4 .4)} Face 9426 3325 3539 13091 {rgb=(.7 .4 .4)} Face 9427 3539 3613 13091 {rgb=(.7 .4 .4)} Face 9428 3613 3384 13091 {rgb=(.7 .4 .4)} Face 9429 3792 3539 13092 {rgb=(.7 .4 .4)} Face 9430 3539 3439 13092 {rgb=(.7 .4 .4)} Face 9431 3439 3611 13092 {rgb=(.7 .4 .4)} Face 9432 3611 3792 13092 {rgb=(.7 .4 .4)} Face 9433 3431 3435 13093 {rgb=(.7 .4 .4)} Face 9434 3435 3695 13093 {rgb=(.7 .4 .4)} Face 9435 3695 3718 13093 {rgb=(.7 .4 .4)} Face 9436 3718 3431 13093 {rgb=(.7 .4 .4)} Face 9437 4030 3695 13094 {rgb=(.7 .4 .4)} Face 9438 3695 3613 13094 {rgb=(.7 .4 .4)} Face 9439 3613 3938 13094 {rgb=(.7 .4 .4)} Face 9440 3938 4030 13094 {rgb=(.7 .4 .4)} Face 9441 3557 3808 13095 {rgb=(.7 .4 .4)} Face 9442 3808 3611 13095 {rgb=(.7 .4 .4)} Face 9443 3611 3463 13095 {rgb=(.7 .4 .4)} Face 9444 3463 3557 13095 {rgb=(.7 .4 .4)} Face 9445 3938 3792 13096 {rgb=(.7 .4 .4)} Face 9446 3792 4089 13096 {rgb=(.7 .4 .4)} Face 9447 4089 4302 13096 {rgb=(.7 .4 .4)} Face 9448 4302 3938 13096 {rgb=(.7 .4 .4)} Face 9449 2483 2721 13097 {rgb=(.7 .4 .4)} Face 9450 2721 2910 13097 {rgb=(.7 .4 .4)} Face 9451 2910 2636 13097 {rgb=(.7 .4 .4)} Face 9452 2636 2483 13097 {rgb=(.7 .4 .4)} Face 9453 3048 2910 13098 {rgb=(.7 .4 .4)} Face 9454 2910 3446 13098 {rgb=(.7 .4 .4)} Face 9455 3446 3572 13098 {rgb=(.7 .4 .4)} Face 9456 3572 3048 13098 {rgb=(.7 .4 .4)} Face 9457 3748 3446 13099 {rgb=(.7 .4 .4)} Face 9458 3446 3167 13099 {rgb=(.7 .4 .4)} Face 9459 3167 3502 13099 {rgb=(.7 .4 .4)} Face 9460 3502 3748 13099 {rgb=(.7 .4 .4)} Face 9461 2861 3167 13100 {rgb=(.7 .4 .4)} Face 9462 3167 2721 13100 {rgb=(.7 .4 .4)} Face 9463 2721 2592 13100 {rgb=(.7 .4 .4)} Face 9464 2592 2861 13100 {rgb=(.7 .4 .4)} Face 9465 2305 2468 13101 {rgb=(.7 .4 .4)} Face 9466 2468 2592 13101 {rgb=(.7 .4 .4)} Face 9467 2592 2381 13101 {rgb=(.7 .4 .4)} Face 9468 2381 2305 13101 {rgb=(.7 .4 .4)} Face 9469 3232 2861 13102 {rgb=(.7 .4 .4)} Face 9470 2861 2675 13102 {rgb=(.7 .4 .4)} Face 9471 2675 2917 13102 {rgb=(.7 .4 .4)} Face 9472 2917 3232 13102 {rgb=(.7 .4 .4)} Face 9473 2546 2675 13103 {rgb=(.7 .4 .4)} Face 9474 2675 2468 13103 {rgb=(.7 .4 .4)} Face 9475 2468 2368 13103 {rgb=(.7 .4 .4)} Face 9476 2368 2546 13103 {rgb=(.7 .4 .4)} Face 9477 2177 2279 13104 {rgb=(.7 .4 .4)} Face 9478 2279 2368 13104 {rgb=(.7 .4 .4)} Face 9479 2368 2239 13104 {rgb=(.7 .4 .4)} Face 9480 2239 2177 13104 {rgb=(.7 .4 .4)} Face 9481 2775 2546 13105 {rgb=(.7 .4 .4)} Face 9482 2546 2487 13105 {rgb=(.7 .4 .4)} Face 9483 2487 2726 13105 {rgb=(.7 .4 .4)} Face 9484 2726 2775 13105 {rgb=(.7 .4 .4)} Face 9485 2456 2487 13106 {rgb=(.7 .4 .4)} Face 9486 2487 2279 13106 {rgb=(.7 .4 .4)} Face 9487 2279 2245 13106 {rgb=(.7 .4 .4)} Face 9488 2245 2456 13106 {rgb=(.7 .4 .4)} Face 9489 2168 2253 13107 {rgb=(.7 .4 .4)} Face 9490 2253 2245 13107 {rgb=(.7 .4 .4)} Face 9491 2245 2158 13107 {rgb=(.7 .4 .4)} Face 9492 2158 2168 13107 {rgb=(.7 .4 .4)} Face 9493 2697 2456 13108 {rgb=(.7 .4 .4)} Face 9494 2456 2444 13108 {rgb=(.7 .4 .4)} Face 9495 2444 2681 13108 {rgb=(.7 .4 .4)} Face 9496 2681 2697 13108 {rgb=(.7 .4 .4)} Face 9497 2445 2444 13109 {rgb=(.7 .4 .4)} Face 9498 2444 2253 13109 {rgb=(.7 .4 .4)} Face 9499 2253 2275 13109 {rgb=(.7 .4 .4)} Face 9500 2275 2445 13109 {rgb=(.7 .4 .4)} Face 9501 2225 2320 13110 {rgb=(.7 .4 .4)} Face 9502 2320 2275 13110 {rgb=(.7 .4 .4)} Face 9503 2275 2192 13110 {rgb=(.7 .4 .4)} Face 9504 2192 2225 13110 {rgb=(.7 .4 .4)} Face 9505 2673 2445 13111 {rgb=(.7 .4 .4)} Face 9506 2445 2457 13111 {rgb=(.7 .4 .4)} Face 9507 2457 2665 13111 {rgb=(.7 .4 .4)} Face 9508 2665 2673 13111 {rgb=(.7 .4 .4)} Face 9509 2513 2457 13112 {rgb=(.7 .4 .4)} Face 9510 2457 2320 13112 {rgb=(.7 .4 .4)} Face 9511 2320 2418 13112 {rgb=(.7 .4 .4)} Face 9512 2418 2513 13112 {rgb=(.7 .4 .4)} Face 9513 2465 2538 13113 {rgb=(.7 .4 .4)} Face 9514 2538 2418 13113 {rgb=(.7 .4 .4)} Face 9515 2418 2323 13113 {rgb=(.7 .4 .4)} Face 9516 2323 2465 13113 {rgb=(.7 .4 .4)} Face 9517 2679 2513 13114 {rgb=(.7 .4 .4)} Face 9518 2513 2596 13114 {rgb=(.7 .4 .4)} Face 9519 2596 2713 13114 {rgb=(.7 .4 .4)} Face 9520 2713 2679 13114 {rgb=(.7 .4 .4)} Face 9521 2628 2596 13115 {rgb=(.7 .4 .4)} Face 9522 2596 2538 13115 {rgb=(.7 .4 .4)} Face 9523 2538 2586 13115 {rgb=(.7 .4 .4)} Face 9524 2586 2628 13115 {rgb=(.7 .4 .4)} Face 9525 2520 2587 13116 {rgb=(.7 .4 .4)} Face 9526 2587 2586 13116 {rgb=(.7 .4 .4)} Face 9527 2586 2524 13116 {rgb=(.7 .4 .4)} Face 9528 2524 2520 13116 {rgb=(.7 .4 .4)} Face 9529 2730 2628 13117 {rgb=(.7 .4 .4)} Face 9530 2628 2640 13117 {rgb=(.7 .4 .4)} Face 9531 2640 2743 13117 {rgb=(.7 .4 .4)} Face 9532 2743 2730 13117 {rgb=(.7 .4 .4)} Face 9533 2631 2640 13118 {rgb=(.7 .4 .4)} Face 9534 2640 2587 13118 {rgb=(.7 .4 .4)} Face 9535 2587 2563 13118 {rgb=(.7 .4 .4)} Face 9536 2563 2631 13118 {rgb=(.7 .4 .4)} Face 9537 3901 3748 13119 {rgb=(.7 .4 .4)} Face 9538 3748 3952 13119 {rgb=(.7 .4 .4)} Face 9539 3952 4038 13119 {rgb=(.7 .4 .4)} Face 9540 4038 3901 13119 {rgb=(.7 .4 .4)} Face 9541 4332 3952 13120 {rgb=(.7 .4 .4)} Face 9542 3952 3743 13120 {rgb=(.7 .4 .4)} Face 9543 3743 4238 13120 {rgb=(.7 .4 .4)} Face 9544 4238 4332 13120 {rgb=(.7 .4 .4)} Face 9545 3546 3743 13121 {rgb=(.7 .4 .4)} Face 9546 3743 3502 13121 {rgb=(.7 .4 .4)} Face 9547 3502 3232 13121 {rgb=(.7 .4 .4)} Face 9548 3232 3546 13121 {rgb=(.7 .4 .4)} Face 9549 4399 4332 13122 {rgb=(.7 .4 .4)} Face 9550 4332 5164 13122 {rgb=(.7 .4 .4)} Face 9551 5164 5177 13122 {rgb=(.7 .4 .4)} Face 9552 5177 4399 13122 {rgb=(.7 .4 .4)} Face 9553 5881 5164 13123 {rgb=(.7 .4 .4)} Face 9554 5164 5119 13123 {rgb=(.7 .4 .4)} Face 9555 5119 5927 13123 {rgb=(.7 .4 .4)} Face 9556 5927 5881 13123 {rgb=(.7 .4 .4)} Face 9557 4807 5119 13124 {rgb=(.7 .4 .4)} Face 9558 5119 4238 13124 {rgb=(.7 .4 .4)} Face 9559 4238 4023 13124 {rgb=(.7 .4 .4)} Face 9560 4023 4807 13124 {rgb=(.7 .4 .4)} Face 9561 4023 3546 13125 {rgb=(.7 .4 .4)} Face 9562 3546 3303 13125 {rgb=(.7 .4 .4)} Face 9563 3303 3708 13125 {rgb=(.7 .4 .4)} Face 9564 3708 4023 13125 {rgb=(.7 .4 .4)} Face 9565 3154 3303 13126 {rgb=(.7 .4 .4)} Face 9566 3303 2917 13126 {rgb=(.7 .4 .4)} Face 9567 2917 2775 13126 {rgb=(.7 .4 .4)} Face 9568 2775 3154 13126 {rgb=(.7 .4 .4)} Face 9569 5207 4807 13127 {rgb=(.7 .4 .4)} Face 9570 4807 4233 13127 {rgb=(.7 .4 .4)} Face 9571 4233 4504 13127 {rgb=(.7 .4 .4)} Face 9572 4504 5207 13127 {rgb=(.7 .4 .4)} Face 9573 3990 4233 13128 {rgb=(.7 .4 .4)} Face 9574 4233 3708 13128 {rgb=(.7 .4 .4)} Face 9575 3708 3545 13128 {rgb=(.7 .4 .4)} Face 9576 3545 3990 13128 {rgb=(.7 .4 .4)} Face 9577 3545 3154 13129 {rgb=(.7 .4 .4)} Face 9578 3154 3121 13129 {rgb=(.7 .4 .4)} Face 9579 3121 3519 13129 {rgb=(.7 .4 .4)} Face 9580 3519 3545 13129 {rgb=(.7 .4 .4)} Face 9581 3083 3121 13130 {rgb=(.7 .4 .4)} Face 9582 3121 2726 13130 {rgb=(.7 .4 .4)} Face 9583 2726 2697 13130 {rgb=(.7 .4 .4)} Face 9584 2697 3083 13130 {rgb=(.7 .4 .4)} Face 9585 4330 3990 13131 {rgb=(.7 .4 .4)} Face 9586 3990 3936 13131 {rgb=(.7 .4 .4)} Face 9587 3936 4298 13131 {rgb=(.7 .4 .4)} Face 9588 4298 4330 13131 {rgb=(.7 .4 .4)} Face 9589 3886 3936 13132 {rgb=(.7 .4 .4)} Face 9590 3936 3519 13132 {rgb=(.7 .4 .4)} Face 9591 3519 3483 13132 {rgb=(.7 .4 .4)} Face 9592 3483 3886 13132 {rgb=(.7 .4 .4)} Face 9593 3483 3083 13133 {rgb=(.7 .4 .4)} Face 9594 3083 3034 13133 {rgb=(.7 .4 .4)} Face 9595 3034 3428 13133 {rgb=(.7 .4 .4)} Face 9596 3428 3483 13133 {rgb=(.7 .4 .4)} Face 9597 3000 3034 13134 {rgb=(.7 .4 .4)} Face 9598 3034 2681 13134 {rgb=(.7 .4 .4)} Face 9599 2681 2673 13134 {rgb=(.7 .4 .4)} Face 9600 2673 3000 13134 {rgb=(.7 .4 .4)} Face 9601 4265 3886 13135 {rgb=(.7 .4 .4)} Face 9602 3886 3833 13135 {rgb=(.7 .4 .4)} Face 9603 3833 4201 13135 {rgb=(.7 .4 .4)} Face 9604 4201 4265 13135 {rgb=(.7 .4 .4)} Face 9605 3746 3833 13136 {rgb=(.7 .4 .4)} Face 9606 3833 3428 13136 {rgb=(.7 .4 .4)} Face 9607 3428 3392 13136 {rgb=(.7 .4 .4)} Face 9608 3392 3746 13136 {rgb=(.7 .4 .4)} Face 9609 3392 3000 13137 {rgb=(.7 .4 .4)} Face 9610 3000 2977 13137 {rgb=(.7 .4 .4)} Face 9611 2977 3348 13137 {rgb=(.7 .4 .4)} Face 9612 3348 3392 13137 {rgb=(.7 .4 .4)} Face 9613 2941 2977 13138 {rgb=(.7 .4 .4)} Face 9614 2977 2665 13138 {rgb=(.7 .4 .4)} Face 9615 2665 2679 13138 {rgb=(.7 .4 .4)} Face 9616 2679 2941 13138 {rgb=(.7 .4 .4)} Face 9617 3986 3746 13139 {rgb=(.7 .4 .4)} Face 9618 3746 3685 13139 {rgb=(.7 .4 .4)} Face 9619 3685 3910 13139 {rgb=(.7 .4 .4)} Face 9620 3910 3986 13139 {rgb=(.7 .4 .4)} Face 9621 3623 3685 13140 {rgb=(.7 .4 .4)} Face 9622 3685 3348 13140 {rgb=(.7 .4 .4)} Face 9623 3348 3300 13140 {rgb=(.7 .4 .4)} Face 9624 3300 3623 13140 {rgb=(.7 .4 .4)} Face 9625 3300 2941 13141 {rgb=(.7 .4 .4)} Face 9626 2941 2918 13141 {rgb=(.7 .4 .4)} Face 9627 2918 3239 13141 {rgb=(.7 .4 .4)} Face 9628 3239 3300 13141 {rgb=(.7 .4 .4)} Face 9629 2903 2918 13142 {rgb=(.7 .4 .4)} Face 9630 2918 2713 13142 {rgb=(.7 .4 .4)} Face 9631 2713 2730 13142 {rgb=(.7 .4 .4)} Face 9632 2730 2903 13142 {rgb=(.7 .4 .4)} Face 9633 3870 3623 13143 {rgb=(.7 .4 .4)} Face 9634 3623 3551 13143 {rgb=(.7 .4 .4)} Face 9635 3551 3749 13143 {rgb=(.7 .4 .4)} Face 9636 3749 3870 13143 {rgb=(.7 .4 .4)} Face 9637 3477 3551 13144 {rgb=(.7 .4 .4)} Face 9638 3551 3239 13144 {rgb=(.7 .4 .4)} Face 9639 3239 3191 13144 {rgb=(.7 .4 .4)} Face 9640 3191 3477 13144 {rgb=(.7 .4 .4)} Face 9641 3191 2903 13145 {rgb=(.7 .4 .4)} Face 9642 2903 2887 13145 {rgb=(.7 .4 .4)} Face 9643 2887 3148 13145 {rgb=(.7 .4 .4)} Face 9644 3148 3191 13145 {rgb=(.7 .4 .4)} Face 9645 2859 2887 13146 {rgb=(.7 .4 .4)} Face 9646 2887 2743 13146 {rgb=(.7 .4 .4)} Face 9647 2743 2727 13146 {rgb=(.7 .4 .4)} Face 9648 2727 2859 13146 {rgb=(.7 .4 .4)} Face 9649 3667 3477 13147 {rgb=(.7 .4 .4)} Face 9650 3477 3400 13147 {rgb=(.7 .4 .4)} Face 9651 3400 3588 13147 {rgb=(.7 .4 .4)} Face 9652 3588 3667 13147 {rgb=(.7 .4 .4)} Face 9653 3328 3400 13148 {rgb=(.7 .4 .4)} Face 9654 3400 3148 13148 {rgb=(.7 .4 .4)} Face 9655 3148 3093 13148 {rgb=(.7 .4 .4)} Face 9656 3093 3328 13148 {rgb=(.7 .4 .4)} Face 9657 3720 3757 13149 {rgb=(.7 .4 .4)} Face 9658 3757 3588 13149 {rgb=(.7 .4 .4)} Face 9659 3588 3543 13149 {rgb=(.7 .4 .4)} Face 9660 3543 3720 13149 {rgb=(.7 .4 .4)} Face 9661 3749 3667 13150 {rgb=(.7 .4 .4)} Face 9662 3667 3840 13150 {rgb=(.7 .4 .4)} Face 9663 3840 3900 13150 {rgb=(.7 .4 .4)} Face 9664 3900 3749 13150 {rgb=(.7 .4 .4)} Face 9665 3988 3840 13151 {rgb=(.7 .4 .4)} Face 9666 3840 3757 13151 {rgb=(.7 .4 .4)} Face 9667 3757 3957 13151 {rgb=(.7 .4 .4)} Face 9668 3957 3988 13151 {rgb=(.7 .4 .4)} Face 9669 3910 3870 13152 {rgb=(.7 .4 .4)} Face 9670 3870 3999 13152 {rgb=(.7 .4 .4)} Face 9671 3999 4035 13152 {rgb=(.7 .4 .4)} Face 9672 4035 3910 13152 {rgb=(.7 .4 .4)} Face 9673 4143 3999 13153 {rgb=(.7 .4 .4)} Face 9674 3999 3900 13153 {rgb=(.7 .4 .4)} Face 9675 3900 4042 13153 {rgb=(.7 .4 .4)} Face 9676 4042 4143 13153 {rgb=(.7 .4 .4)} Face 9677 4186 3986 13154 {rgb=(.7 .4 .4)} Face 9678 3986 4035 13154 {rgb=(.7 .4 .4)} Face 9679 4035 4191 13154 {rgb=(.7 .4 .4)} Face 9680 4191 4186 13154 {rgb=(.7 .4 .4)} Face 9681 4096 4123 13155 {rgb=(.7 .4 .4)} Face 9682 4123 3957 13155 {rgb=(.7 .4 .4)} Face 9683 3957 3927 13155 {rgb=(.7 .4 .4)} Face 9684 3927 4096 13155 {rgb=(.7 .4 .4)} Face 9685 4042 3988 13156 {rgb=(.7 .4 .4)} Face 9686 3988 4138 13156 {rgb=(.7 .4 .4)} Face 9687 4138 4211 13156 {rgb=(.7 .4 .4)} Face 9688 4211 4042 13156 {rgb=(.7 .4 .4)} Face 9689 4307 4138 13157 {rgb=(.7 .4 .4)} Face 9690 4138 4123 13157 {rgb=(.7 .4 .4)} Face 9691 4123 4292 13157 {rgb=(.7 .4 .4)} Face 9692 4292 4307 13157 {rgb=(.7 .4 .4)} Face 9693 4191 4143 13158 {rgb=(.7 .4 .4)} Face 9694 4143 4325 13158 {rgb=(.7 .4 .4)} Face 9695 4325 4441 13158 {rgb=(.7 .4 .4)} Face 9696 4441 4191 13158 {rgb=(.7 .4 .4)} Face 9697 4555 4325 13159 {rgb=(.7 .4 .4)} Face 9698 4325 4211 13159 {rgb=(.7 .4 .4)} Face 9699 4211 4386 13159 {rgb=(.7 .4 .4)} Face 9700 4386 4555 13159 {rgb=(.7 .4 .4)} Face 9701 4201 4186 13160 {rgb=(.7 .4 .4)} Face 9702 4186 4595 13160 {rgb=(.7 .4 .4)} Face 9703 4595 4695 13160 {rgb=(.7 .4 .4)} Face 9704 4695 4201 13160 {rgb=(.7 .4 .4)} Face 9705 4909 4595 13161 {rgb=(.7 .4 .4)} Face 9706 4595 4441 13161 {rgb=(.7 .4 .4)} Face 9707 4441 4698 13161 {rgb=(.7 .4 .4)} Face 9708 4698 4909 13161 {rgb=(.7 .4 .4)} Face 9709 4423 4454 13162 {rgb=(.7 .4 .4)} Face 9710 4454 4292 13162 {rgb=(.7 .4 .4)} Face 9711 4292 4280 13162 {rgb=(.7 .4 .4)} Face 9712 4280 4423 13162 {rgb=(.7 .4 .4)} Face 9713 4386 4307 13163 {rgb=(.7 .4 .4)} Face 9714 4307 4494 13163 {rgb=(.7 .4 .4)} Face 9715 4494 4645 13163 {rgb=(.7 .4 .4)} Face 9716 4645 4386 13163 {rgb=(.7 .4 .4)} Face 9717 4769 4494 13164 {rgb=(.7 .4 .4)} Face 9718 4494 4454 13164 {rgb=(.7 .4 .4)} Face 9719 4454 4738 13164 {rgb=(.7 .4 .4)} Face 9720 4738 4769 13164 {rgb=(.7 .4 .4)} Face 9721 4698 4555 13165 {rgb=(.7 .4 .4)} Face 9722 4555 4846 13165 {rgb=(.7 .4 .4)} Face 9723 4846 4946 13165 {rgb=(.7 .4 .4)} Face 9724 4946 4698 13165 {rgb=(.7 .4 .4)} Face 9725 5012 4846 13166 {rgb=(.7 .4 .4)} Face 9726 4846 4645 13166 {rgb=(.7 .4 .4)} Face 9727 4645 4882 13166 {rgb=(.7 .4 .4)} Face 9728 4882 5012 13166 {rgb=(.7 .4 .4)} Face 9729 5103 4909 13167 {rgb=(.7 .4 .4)} Face 9730 4909 4946 13167 {rgb=(.7 .4 .4)} Face 9731 4946 5095 13167 {rgb=(.7 .4 .4)} Face 9732 5095 5103 13167 {rgb=(.7 .4 .4)} Face 9733 4939 4967 13168 {rgb=(.7 .4 .4)} Face 9734 4967 4738 13168 {rgb=(.7 .4 .4)} Face 9735 4738 4690 13168 {rgb=(.7 .4 .4)} Face 9736 4690 4939 13168 {rgb=(.7 .4 .4)} Face 9737 4882 4769 13169 {rgb=(.7 .4 .4)} Face 9738 4769 4992 13169 {rgb=(.7 .4 .4)} Face 9739 4992 5051 13169 {rgb=(.7 .4 .4)} Face 9740 5051 4882 13169 {rgb=(.7 .4 .4)} Face 9741 5153 4992 13170 {rgb=(.7 .4 .4)} Face 9742 4992 4967 13170 {rgb=(.7 .4 .4)} Face 9743 4967 5149 13170 {rgb=(.7 .4 .4)} Face 9744 5149 5153 13170 {rgb=(.7 .4 .4)} Face 9745 5095 5012 13171 {rgb=(.7 .4 .4)} Face 9746 5012 5146 13171 {rgb=(.7 .4 .4)} Face 9747 5146 5217 13171 {rgb=(.7 .4 .4)} Face 9748 5217 5095 13171 {rgb=(.7 .4 .4)} Face 9749 5205 5146 13172 {rgb=(.7 .4 .4)} Face 9750 5146 5051 13172 {rgb=(.7 .4 .4)} Face 9751 5051 5163 13172 {rgb=(.7 .4 .4)} Face 9752 5163 5205 13172 {rgb=(.7 .4 .4)} Face 9753 5110 5103 13173 {rgb=(.7 .4 .4)} Face 9754 5103 5326 13173 {rgb=(.7 .4 .4)} Face 9755 5326 5392 13173 {rgb=(.7 .4 .4)} Face 9756 5392 5110 13173 {rgb=(.7 .4 .4)} Face 9757 5476 5326 13174 {rgb=(.7 .4 .4)} Face 9758 5326 5217 13174 {rgb=(.7 .4 .4)} Face 9759 5217 5320 13174 {rgb=(.7 .4 .4)} Face 9760 5320 5476 13174 {rgb=(.7 .4 .4)} Face 9761 5321 5276 13175 {rgb=(.7 .4 .4)} Face 9762 5276 5149 13175 {rgb=(.7 .4 .4)} Face 9763 5149 5182 13175 {rgb=(.7 .4 .4)} Face 9764 5182 5321 13175 {rgb=(.7 .4 .4)} Face 9765 5163 5153 13176 {rgb=(.7 .4 .4)} Face 9766 5153 5259 13176 {rgb=(.7 .4 .4)} Face 9767 5259 5251 13176 {rgb=(.7 .4 .4)} Face 9768 5251 5163 13176 {rgb=(.7 .4 .4)} Face 9769 5365 5259 13177 {rgb=(.7 .4 .4)} Face 9770 5259 5276 13177 {rgb=(.7 .4 .4)} Face 9771 5276 5397 13177 {rgb=(.7 .4 .4)} Face 9772 5397 5365 13177 {rgb=(.7 .4 .4)} Face 9773 5309 5205 13178 {rgb=(.7 .4 .4)} Face 9774 5205 5251 13178 {rgb=(.7 .4 .4)} Face 9775 5251 5332 13178 {rgb=(.7 .4 .4)} Face 9776 5332 5309 13178 {rgb=(.7 .4 .4)} Face 9777 5486 5478 13179 {rgb=(.7 .4 .4)} Face 9778 5478 5397 13179 {rgb=(.7 .4 .4)} Face 9779 5397 5418 13179 {rgb=(.7 .4 .4)} Face 9780 5418 5486 13179 {rgb=(.7 .4 .4)} Face 9781 5332 5365 13180 {rgb=(.7 .4 .4)} Face 9782 5365 5467 13180 {rgb=(.7 .4 .4)} Face 9783 5467 5462 13180 {rgb=(.7 .4 .4)} Face 9784 5462 5332 13180 {rgb=(.7 .4 .4)} Face 9785 5578 5467 13181 {rgb=(.7 .4 .4)} Face 9786 5467 5478 13181 {rgb=(.7 .4 .4)} Face 9787 5478 5566 13181 {rgb=(.7 .4 .4)} Face 9788 5566 5578 13181 {rgb=(.7 .4 .4)} Face 9789 5320 5309 13182 {rgb=(.7 .4 .4)} Face 9790 5309 5458 13182 {rgb=(.7 .4 .4)} Face 9791 5458 5475 13182 {rgb=(.7 .4 .4)} Face 9792 5475 5320 13182 {rgb=(.7 .4 .4)} Face 9793 5587 5458 13183 {rgb=(.7 .4 .4)} Face 9794 5458 5462 13183 {rgb=(.7 .4 .4)} Face 9795 5462 5583 13183 {rgb=(.7 .4 .4)} Face 9796 5583 5587 13183 {rgb=(.7 .4 .4)} Face 9797 5570 5476 13184 {rgb=(.7 .4 .4)} Face 9798 5476 5475 13184 {rgb=(.7 .4 .4)} Face 9799 5475 5569 13184 {rgb=(.7 .4 .4)} Face 9800 5569 5570 13184 {rgb=(.7 .4 .4)} Face 9801 5659 5393 13185 {rgb=(.7 .4 .4)} Face 9802 5393 5392 13185 {rgb=(.7 .4 .4)} Face 9803 5392 5660 13185 {rgb=(.7 .4 .4)} Face 9804 5660 5659 13185 {rgb=(.7 .4 .4)} Face 9805 4695 5110 13186 {rgb=(.7 .4 .4)} Face 9806 5110 5113 13186 {rgb=(.7 .4 .4)} Face 9807 5113 4727 13186 {rgb=(.7 .4 .4)} Face 9808 4727 4695 13186 {rgb=(.7 .4 .4)} Face 9809 5107 5113 13187 {rgb=(.7 .4 .4)} Face 9810 5113 5393 13187 {rgb=(.7 .4 .4)} Face 9811 5393 5391 13187 {rgb=(.7 .4 .4)} Face 9812 5391 5107 13187 {rgb=(.7 .4 .4)} Face 9813 5664 5387 13188 {rgb=(.7 .4 .4)} Face 9814 5387 5391 13188 {rgb=(.7 .4 .4)} Face 9815 5391 5661 13188 {rgb=(.7 .4 .4)} Face 9816 5661 5664 13188 {rgb=(.7 .4 .4)} Face 9817 4743 5107 13189 {rgb=(.7 .4 .4)} Face 9818 5107 5098 13189 {rgb=(.7 .4 .4)} Face 9819 5098 4747 13189 {rgb=(.7 .4 .4)} Face 9820 4747 4743 13189 {rgb=(.7 .4 .4)} Face 9821 5147 5098 13190 {rgb=(.7 .4 .4)} Face 9822 5098 5387 13190 {rgb=(.7 .4 .4)} Face 9823 5387 5430 13190 {rgb=(.7 .4 .4)} Face 9824 5430 5147 13190 {rgb=(.7 .4 .4)} Face 9825 5616 5429 13191 {rgb=(.7 .4 .4)} Face 9826 5429 5430 13191 {rgb=(.7 .4 .4)} Face 9827 5430 5617 13191 {rgb=(.7 .4 .4)} Face 9828 5617 5616 13191 {rgb=(.7 .4 .4)} Face 9829 4931 5147 13192 {rgb=(.7 .4 .4)} Face 9830 5147 5429 13192 {rgb=(.7 .4 .4)} Face 9831 5429 5207 13192 {rgb=(.7 .4 .4)} Face 9832 5207 4931 13192 {rgb=(.7 .4 .4)} Face 9833 4298 4265 13193 {rgb=(.7 .4 .4)} Face 9834 4265 4727 13193 {rgb=(.7 .4 .4)} Face 9835 4727 4743 13193 {rgb=(.7 .4 .4)} Face 9836 4743 4298 13193 {rgb=(.7 .4 .4)} Face 9837 4504 4330 13194 {rgb=(.7 .4 .4)} Face 9838 4330 4747 13194 {rgb=(.7 .4 .4)} Face 9839 4747 4931 13194 {rgb=(.7 .4 .4)} Face 9840 4931 4504 13194 {rgb=(.7 .4 .4)} Face 9841 3168 3321 13195 {rgb=(.7 .4 .4)} Face 9842 3321 3326 13195 {rgb=(.7 .4 .4)} Face 9843 3326 3184 13195 {rgb=(.7 .4 .4)} Face 9844 3184 3168 13195 {rgb=(.7 .4 .4)} Face 9845 3378 3326 13196 {rgb=(.7 .4 .4)} Face 9846 3326 3536 13196 {rgb=(.7 .4 .4)} Face 9847 3536 3548 13196 {rgb=(.7 .4 .4)} Face 9848 3548 3378 13196 {rgb=(.7 .4 .4)} Face 9849 3730 3536 13197 {rgb=(.7 .4 .4)} Face 9850 3536 3540 13197 {rgb=(.7 .4 .4)} Face 9851 3540 3716 13197 {rgb=(.7 .4 .4)} Face 9852 3716 3730 13197 {rgb=(.7 .4 .4)} Face 9853 3529 3540 13198 {rgb=(.7 .4 .4)} Face 9854 3540 3321 13198 {rgb=(.7 .4 .4)} Face 9855 3321 3308 13198 {rgb=(.7 .4 .4)} Face 9856 3308 3529 13198 {rgb=(.7 .4 .4)} Face 9857 3741 3730 13199 {rgb=(.7 .4 .4)} Face 9858 3730 3993 13199 {rgb=(.7 .4 .4)} Face 9859 3993 4004 13199 {rgb=(.7 .4 .4)} Face 9860 4004 3741 13199 {rgb=(.7 .4 .4)} Face 9861 4139 3993 13200 {rgb=(.7 .4 .4)} Face 9862 3993 3899 13200 {rgb=(.7 .4 .4)} Face 9863 3899 4039 13200 {rgb=(.7 .4 .4)} Face 9864 4039 4139 13200 {rgb=(.7 .4 .4)} Face 9865 3862 3899 13201 {rgb=(.7 .4 .4)} Face 9866 3899 3716 13201 {rgb=(.7 .4 .4)} Face 9867 3716 3694 13201 {rgb=(.7 .4 .4)} Face 9868 3694 3862 13201 {rgb=(.7 .4 .4)} Face 9869 3099 3275 13202 {rgb=(.7 .4 .4)} Face 9870 3275 3308 13202 {rgb=(.7 .4 .4)} Face 9871 3308 3127 13202 {rgb=(.7 .4 .4)} Face 9872 3127 3099 13202 {rgb=(.7 .4 .4)} Face 9873 3694 3529 13203 {rgb=(.7 .4 .4)} Face 9874 3529 3505 13203 {rgb=(.7 .4 .4)} Face 9875 3505 3679 13203 {rgb=(.7 .4 .4)} Face 9876 3679 3694 13203 {rgb=(.7 .4 .4)} Face 9877 3533 3505 13204 {rgb=(.7 .4 .4)} Face 9878 3505 3275 13204 {rgb=(.7 .4 .4)} Face 9879 3275 3327 13204 {rgb=(.7 .4 .4)} Face 9880 3327 3533 13204 {rgb=(.7 .4 .4)} Face 9881 4003 3862 13205 {rgb=(.7 .4 .4)} Face 9882 3862 3865 13205 {rgb=(.7 .4 .4)} Face 9883 3865 4015 13205 {rgb=(.7 .4 .4)} Face 9884 4015 4003 13205 {rgb=(.7 .4 .4)} Face 9885 3857 3865 13206 {rgb=(.7 .4 .4)} Face 9886 3865 3679 13206 {rgb=(.7 .4 .4)} Face 9887 3679 3658 13206 {rgb=(.7 .4 .4)} Face 9888 3658 3857 13206 {rgb=(.7 .4 .4)} Face 9889 3372 3468 13207 {rgb=(.7 .4 .4)} Face 9890 3468 3327 13207 {rgb=(.7 .4 .4)} Face 9891 3327 3204 13207 {rgb=(.7 .4 .4)} Face 9892 3204 3372 13207 {rgb=(.7 .4 .4)} Face 9893 3658 3533 13208 {rgb=(.7 .4 .4)} Face 9894 3533 3594 13208 {rgb=(.7 .4 .4)} Face 9895 3594 3711 13208 {rgb=(.7 .4 .4)} Face 9896 3711 3658 13208 {rgb=(.7 .4 .4)} Face 9897 3717 3594 13209 {rgb=(.7 .4 .4)} Face 9898 3594 3468 13209 {rgb=(.7 .4 .4)} Face 9899 3468 3607 13209 {rgb=(.7 .4 .4)} Face 9900 3607 3717 13209 {rgb=(.7 .4 .4)} Face 9901 3964 3857 13210 {rgb=(.7 .4 .4)} Face 9902 3857 3711 13210 {rgb=(.7 .4 .4)} Face 9903 3711 3854 13210 {rgb=(.7 .4 .4)} Face 9904 3854 3964 13210 {rgb=(.7 .4 .4)} Face 9905 3676 3767 13211 {rgb=(.7 .4 .4)} Face 9906 3767 3607 13211 {rgb=(.7 .4 .4)} Face 9907 3607 3527 13211 {rgb=(.7 .4 .4)} Face 9908 3527 3676 13211 {rgb=(.7 .4 .4)} Face 9909 3854 3717 13212 {rgb=(.7 .4 .4)} Face 9910 3717 3895 13212 {rgb=(.7 .4 .4)} Face 9911 3895 4008 13212 {rgb=(.7 .4 .4)} Face 9912 4008 3854 13212 {rgb=(.7 .4 .4)} Face 9913 4022 3895 13213 {rgb=(.7 .4 .4)} Face 9914 3895 3767 13213 {rgb=(.7 .4 .4)} Face 9915 3767 3937 13213 {rgb=(.7 .4 .4)} Face 9916 3937 4022 13213 {rgb=(.7 .4 .4)} Face 9917 4100 3964 13214 {rgb=(.7 .4 .4)} Face 9918 3964 4124 13214 {rgb=(.7 .4 .4)} Face 9919 4124 4279 13214 {rgb=(.7 .4 .4)} Face 9920 4279 4100 13214 {rgb=(.7 .4 .4)} Face 9921 4224 4124 13215 {rgb=(.7 .4 .4)} Face 9922 4124 4008 13215 {rgb=(.7 .4 .4)} Face 9923 4008 4085 13215 {rgb=(.7 .4 .4)} Face 9924 4085 4224 13215 {rgb=(.7 .4 .4)} Face 9925 3961 4050 13216 {rgb=(.7 .4 .4)} Face 9926 4050 3937 13216 {rgb=(.7 .4 .4)} Face 9927 3937 3842 13216 {rgb=(.7 .4 .4)} Face 9928 3842 3961 13216 {rgb=(.7 .4 .4)} Face 9929 4085 4022 13217 {rgb=(.7 .4 .4)} Face 9930 4022 4119 13217 {rgb=(.7 .4 .4)} Face 9931 4119 4181 13217 {rgb=(.7 .4 .4)} Face 9932 4181 4085 13217 {rgb=(.7 .4 .4)} Face 9933 4306 4119 13218 {rgb=(.7 .4 .4)} Face 9934 4119 4050 13218 {rgb=(.7 .4 .4)} Face 9935 4050 4284 13218 {rgb=(.7 .4 .4)} Face 9936 4284 4306 13218 {rgb=(.7 .4 .4)} Face 9937 4370 4224 13219 {rgb=(.7 .4 .4)} Face 9938 4224 4181 13219 {rgb=(.7 .4 .4)} Face 9939 4181 4333 13219 {rgb=(.7 .4 .4)} Face 9940 4333 4370 13219 {rgb=(.7 .4 .4)} Face 9941 4679 4697 13220 {rgb=(.7 .4 .4)} Face 9942 4697 4284 13220 {rgb=(.7 .4 .4)} Face 9943 4284 4203 13220 {rgb=(.7 .4 .4)} Face 9944 4203 4679 13220 {rgb=(.7 .4 .4)} Face 9945 4333 4306 13221 {rgb=(.7 .4 .4)} Face 9946 4306 4682 13221 {rgb=(.7 .4 .4)} Face 9947 4682 4684 13221 {rgb=(.7 .4 .4)} Face 9948 4684 4333 13221 {rgb=(.7 .4 .4)} Face 9949 5037 4682 13222 {rgb=(.7 .4 .4)} Face 9950 4682 4697 13222 {rgb=(.7 .4 .4)} Face 9951 4697 5077 13222 {rgb=(.7 .4 .4)} Face 9952 5077 5037 13222 {rgb=(.7 .4 .4)} Face 9953 4455 4370 13223 {rgb=(.7 .4 .4)} Face 9954 4370 4729 13223 {rgb=(.7 .4 .4)} Face 9955 4729 4797 13223 {rgb=(.7 .4 .4)} Face 9956 4797 4455 13223 {rgb=(.7 .4 .4)} Face 9957 5049 4729 13224 {rgb=(.7 .4 .4)} Face 9958 4729 4684 13224 {rgb=(.7 .4 .4)} Face 9959 4684 5029 13224 {rgb=(.7 .4 .4)} Face 9960 5029 5049 13224 {rgb=(.7 .4 .4)} Face 9961 5364 5360 13225 {rgb=(.7 .4 .4)} Face 9962 5360 5077 13225 {rgb=(.7 .4 .4)} Face 9963 5077 5082 13225 {rgb=(.7 .4 .4)} Face 9964 5082 5364 13225 {rgb=(.7 .4 .4)} Face 9965 5029 5037 13226 {rgb=(.7 .4 .4)} Face 9966 5037 5343 13226 {rgb=(.7 .4 .4)} Face 9967 5343 5337 13226 {rgb=(.7 .4 .4)} Face 9968 5337 5029 13226 {rgb=(.7 .4 .4)} Face 9969 5658 5343 13227 {rgb=(.7 .4 .4)} Face 9970 5343 5360 13227 {rgb=(.7 .4 .4)} Face 9971 5360 5639 13227 {rgb=(.7 .4 .4)} Face 9972 5639 5658 13227 {rgb=(.7 .4 .4)} Face 9973 5089 5049 13228 {rgb=(.7 .4 .4)} Face 9974 5049 5347 13228 {rgb=(.7 .4 .4)} Face 9975 5347 5362 13228 {rgb=(.7 .4 .4)} Face 9976 5362 5089 13228 {rgb=(.7 .4 .4)} Face 9977 5651 5347 13229 {rgb=(.7 .4 .4)} Face 9978 5347 5337 13229 {rgb=(.7 .4 .4)} Face 9979 5337 5662 13229 {rgb=(.7 .4 .4)} Face 9980 5662 5651 13229 {rgb=(.7 .4 .4)} Face 9981 3005 3081 13230 {rgb=(.7 .4 .4)} Face 9982 3081 3113 13230 {rgb=(.7 .4 .4)} Face 9983 3113 3050 13230 {rgb=(.7 .4 .4)} Face 9984 3050 3005 13230 {rgb=(.7 .4 .4)} Face 9985 3207 3113 13231 {rgb=(.7 .4 .4)} Face 9986 3113 3184 13231 {rgb=(.7 .4 .4)} Face 9987 3184 3258 13231 {rgb=(.7 .4 .4)} Face 9988 3258 3207 13231 {rgb=(.7 .4 .4)} Face 9989 3139 3168 13232 {rgb=(.7 .4 .4)} Face 9990 3168 3081 13232 {rgb=(.7 .4 .4)} Face 9991 3081 3037 13232 {rgb=(.7 .4 .4)} Face 9992 3037 3139 13232 {rgb=(.7 .4 .4)} Face 9993 2988 3027 13233 {rgb=(.7 .4 .4)} Face 9994 3027 3037 13233 {rgb=(.7 .4 .4)} Face 9995 3037 2985 13233 {rgb=(.7 .4 .4)} Face 9996 2985 2988 13233 {rgb=(.7 .4 .4)} Face 9997 3126 3139 13234 {rgb=(.7 .4 .4)} Face 9998 3139 3027 13234 {rgb=(.7 .4 .4)} Face 9999 3027 3008 13234 {rgb=(.7 .4 .4)} Face 10000 3008 3126 13234 {rgb=(.7 .4 .4)} Face 10001 2873 2968 13235 {rgb=(.7 .4 .4)} Face 10002 2968 3008 13235 {rgb=(.7 .4 .4)} Face 10003 3008 2926 13235 {rgb=(.7 .4 .4)} Face 10004 2926 2873 13235 {rgb=(.7 .4 .4)} Face 10005 3127 3126 13236 {rgb=(.7 .4 .4)} Face 10006 3126 2968 13236 {rgb=(.7 .4 .4)} Face 10007 2968 2983 13236 {rgb=(.7 .4 .4)} Face 10008 2983 3127 13236 {rgb=(.7 .4 .4)} Face 10009 2866 2979 13237 {rgb=(.7 .4 .4)} Face 10010 2979 2983 13237 {rgb=(.7 .4 .4)} Face 10011 2983 2858 13237 {rgb=(.7 .4 .4)} Face 10012 2858 2866 13237 {rgb=(.7 .4 .4)} Face 10013 3091 3099 13238 {rgb=(.7 .4 .4)} Face 10014 3099 2979 13238 {rgb=(.7 .4 .4)} Face 10015 2979 2982 13238 {rgb=(.7 .4 .4)} Face 10016 2982 3091 13238 {rgb=(.7 .4 .4)} Face 10017 2989 3055 13239 {rgb=(.7 .4 .4)} Face 10018 3055 2982 13239 {rgb=(.7 .4 .4)} Face 10019 2982 2904 13239 {rgb=(.7 .4 .4)} Face 10020 2904 2989 13239 {rgb=(.7 .4 .4)} Face 10021 3204 3091 13240 {rgb=(.7 .4 .4)} Face 10022 3091 3055 13240 {rgb=(.7 .4 .4)} Face 10023 3055 3164 13240 {rgb=(.7 .4 .4)} Face 10024 3164 3204 13240 {rgb=(.7 .4 .4)} Face 10025 3257 3319 13241 {rgb=(.7 .4 .4)} Face 10026 3319 3164 13241 {rgb=(.7 .4 .4)} Face 10027 3164 3106 13241 {rgb=(.7 .4 .4)} Face 10028 3106 3257 13241 {rgb=(.7 .4 .4)} Face 10029 3527 3372 13242 {rgb=(.7 .4 .4)} Face 10030 3372 3319 13242 {rgb=(.7 .4 .4)} Face 10031 3319 3456 13242 {rgb=(.7 .4 .4)} Face 10032 3456 3527 13242 {rgb=(.7 .4 .4)} Face 10033 3491 3577 13243 {rgb=(.7 .4 .4)} Face 10034 3577 3456 13243 {rgb=(.7 .4 .4)} Face 10035 3456 3389 13243 {rgb=(.7 .4 .4)} Face 10036 3389 3491 13243 {rgb=(.7 .4 .4)} Face 10037 3842 3676 13244 {rgb=(.7 .4 .4)} Face 10038 3676 3577 13244 {rgb=(.7 .4 .4)} Face 10039 3577 3698 13244 {rgb=(.7 .4 .4)} Face 10040 3698 3842 13244 {rgb=(.7 .4 .4)} Face 10041 3683 3848 13245 {rgb=(.7 .4 .4)} Face 10042 3848 3698 13245 {rgb=(.7 .4 .4)} Face 10043 3698 3584 13245 {rgb=(.7 .4 .4)} Face 10044 3584 3683 13245 {rgb=(.7 .4 .4)} Face 10045 4203 3961 13246 {rgb=(.7 .4 .4)} Face 10046 3961 3848 13246 {rgb=(.7 .4 .4)} Face 10047 3848 4105 13246 {rgb=(.7 .4 .4)} Face 10048 4105 4203 13246 {rgb=(.7 .4 .4)} Face 10049 4560 4585 13247 {rgb=(.7 .4 .4)} Face 10050 4585 4105 13247 {rgb=(.7 .4 .4)} Face 10051 4105 4061 13247 {rgb=(.7 .4 .4)} Face 10052 4061 4560 13247 {rgb=(.7 .4 .4)} Face 10053 5082 4679 13248 {rgb=(.7 .4 .4)} Face 10054 4679 4585 13248 {rgb=(.7 .4 .4)} Face 10055 4585 5056 13248 {rgb=(.7 .4 .4)} Face 10056 5056 5082 13248 {rgb=(.7 .4 .4)} Face 10057 5361 5353 13249 {rgb=(.7 .4 .4)} Face 10058 5353 5056 13249 {rgb=(.7 .4 .4)} Face 10059 5056 5055 13249 {rgb=(.7 .4 .4)} Face 10060 5055 5361 13249 {rgb=(.7 .4 .4)} Face 10061 5633 5364 13250 {rgb=(.7 .4 .4)} Face 10062 5364 5353 13250 {rgb=(.7 .4 .4)} Face 10063 5353 5641 13250 {rgb=(.7 .4 .4)} Face 10064 5641 5633 13250 {rgb=(.7 .4 .4)} Face 10065 2671 2709 13251 {rgb=(.7 .4 .4)} Face 10066 2709 2674 13251 {rgb=(.7 .4 .4)} Face 10067 2674 2612 13251 {rgb=(.7 .4 .4)} Face 10068 2612 2671 13251 {rgb=(.7 .4 .4)} Face 10069 2689 2674 13252 {rgb=(.7 .4 .4)} Face 10070 2674 2729 13252 {rgb=(.7 .4 .4)} Face 10071 2729 2773 13252 {rgb=(.7 .4 .4)} Face 10072 2773 2689 13252 {rgb=(.7 .4 .4)} Face 10073 2791 2729 13253 {rgb=(.7 .4 .4)} Face 10074 2729 2751 13253 {rgb=(.7 .4 .4)} Face 10075 2751 2787 13253 {rgb=(.7 .4 .4)} Face 10076 2787 2791 13253 {rgb=(.7 .4 .4)} Face 10077 2788 2751 13254 {rgb=(.7 .4 .4)} Face 10078 2751 2709 13254 {rgb=(.7 .4 .4)} Face 10079 2709 2759 13254 {rgb=(.7 .4 .4)} Face 10080 2759 2788 13254 {rgb=(.7 .4 .4)} Face 10081 2837 2791 13255 {rgb=(.7 .4 .4)} Face 10082 2791 2835 13255 {rgb=(.7 .4 .4)} Face 10083 2835 2901 13255 {rgb=(.7 .4 .4)} Face 10084 2901 2837 13255 {rgb=(.7 .4 .4)} Face 10085 2867 2835 13256 {rgb=(.7 .4 .4)} Face 10086 2835 2817 13256 {rgb=(.7 .4 .4)} Face 10087 2817 2836 13256 {rgb=(.7 .4 .4)} Face 10088 2836 2867 13256 {rgb=(.7 .4 .4)} Face 10089 2826 2817 13257 {rgb=(.7 .4 .4)} Face 10090 2817 2787 13257 {rgb=(.7 .4 .4)} Face 10091 2787 2810 13257 {rgb=(.7 .4 .4)} Face 10092 2810 2826 13257 {rgb=(.7 .4 .4)} Face 10093 2970 2867 13258 {rgb=(.7 .4 .4)} Face 10094 2867 2889 13258 {rgb=(.7 .4 .4)} Face 10095 2889 3003 13258 {rgb=(.7 .4 .4)} Face 10096 3003 2970 13258 {rgb=(.7 .4 .4)} Face 10097 2914 2889 13259 {rgb=(.7 .4 .4)} Face 10098 2889 2847 13259 {rgb=(.7 .4 .4)} Face 10099 2847 2865 13259 {rgb=(.7 .4 .4)} Face 10100 2865 2914 13259 {rgb=(.7 .4 .4)} Face 10101 2848 2847 13260 {rgb=(.7 .4 .4)} Face 10102 2847 2836 13260 {rgb=(.7 .4 .4)} Face 10103 2836 2839 13260 {rgb=(.7 .4 .4)} Face 10104 2839 2848 13260 {rgb=(.7 .4 .4)} Face 10105 3030 2914 13261 {rgb=(.7 .4 .4)} Face 10106 2914 2946 13261 {rgb=(.7 .4 .4)} Face 10107 2946 3064 13261 {rgb=(.7 .4 .4)} Face 10108 3064 3030 13261 {rgb=(.7 .4 .4)} Face 10109 2996 2946 13262 {rgb=(.7 .4 .4)} Face 10110 2946 2899 13262 {rgb=(.7 .4 .4)} Face 10111 2899 2947 13262 {rgb=(.7 .4 .4)} Face 10112 2947 2996 13262 {rgb=(.7 .4 .4)} Face 10113 2890 2899 13263 {rgb=(.7 .4 .4)} Face 10114 2899 2865 13263 {rgb=(.7 .4 .4)} Face 10115 2865 2855 13263 {rgb=(.7 .4 .4)} Face 10116 2855 2890 13263 {rgb=(.7 .4 .4)} Face 10117 3098 2996 13264 {rgb=(.7 .4 .4)} Face 10118 2996 3050 13264 {rgb=(.7 .4 .4)} Face 10119 3050 3161 13264 {rgb=(.7 .4 .4)} Face 10120 3161 3098 13264 {rgb=(.7 .4 .4)} Face 10121 2985 3005 13265 {rgb=(.7 .4 .4)} Face 10122 3005 2947 13265 {rgb=(.7 .4 .4)} Face 10123 2947 2940 13265 {rgb=(.7 .4 .4)} Face 10124 2940 2985 13265 {rgb=(.7 .4 .4)} Face 10125 2984 2986 13266 {rgb=(.7 .4 .4)} Face 10126 2986 2940 13266 {rgb=(.7 .4 .4)} Face 10127 2940 2929 13266 {rgb=(.7 .4 .4)} Face 10128 2929 2984 13266 {rgb=(.7 .4 .4)} Face 10129 2972 2988 13267 {rgb=(.7 .4 .4)} Face 10130 2988 2986 13267 {rgb=(.7 .4 .4)} Face 10131 2986 2990 13267 {rgb=(.7 .4 .4)} Face 10132 2990 2972 13267 {rgb=(.7 .4 .4)} Face 10133 2772 2808 13268 {rgb=(.7 .4 .4)} Face 10134 2808 2800 13268 {rgb=(.7 .4 .4)} Face 10135 2800 2763 13268 {rgb=(.7 .4 .4)} Face 10136 2763 2772 13268 {rgb=(.7 .4 .4)} Face 10137 2821 2800 13269 {rgb=(.7 .4 .4)} Face 10138 2800 2858 13269 {rgb=(.7 .4 .4)} Face 10139 2858 2873 13269 {rgb=(.7 .4 .4)} Face 10140 2873 2821 13269 {rgb=(.7 .4 .4)} Face 10141 2904 2866 13270 {rgb=(.7 .4 .4)} Face 10142 2866 2808 13270 {rgb=(.7 .4 .4)} Face 10143 2808 2842 13270 {rgb=(.7 .4 .4)} Face 10144 2842 2904 13270 {rgb=(.7 .4 .4)} Face 10145 2838 2898 13271 {rgb=(.7 .4 .4)} Face 10146 2898 2842 13271 {rgb=(.7 .4 .4)} Face 10147 2842 2793 13271 {rgb=(.7 .4 .4)} Face 10148 2793 2838 13271 {rgb=(.7 .4 .4)} Face 10149 3106 2989 13272 {rgb=(.7 .4 .4)} Face 10150 2989 2898 13272 {rgb=(.7 .4 .4)} Face 10151 2898 3031 13272 {rgb=(.7 .4 .4)} Face 10152 3031 3106 13272 {rgb=(.7 .4 .4)} Face 10153 3117 3189 13273 {rgb=(.7 .4 .4)} Face 10154 3189 3031 13273 {rgb=(.7 .4 .4)} Face 10155 3031 2939 13273 {rgb=(.7 .4 .4)} Face 10156 2939 3117 13273 {rgb=(.7 .4 .4)} Face 10157 3389 3257 13274 {rgb=(.7 .4 .4)} Face 10158 3257 3189 13274 {rgb=(.7 .4 .4)} Face 10159 3189 3306 13274 {rgb=(.7 .4 .4)} Face 10160 3306 3389 13274 {rgb=(.7 .4 .4)} Face 10161 3307 3403 13275 {rgb=(.7 .4 .4)} Face 10162 3403 3306 13275 {rgb=(.7 .4 .4)} Face 10163 3306 3220 13275 {rgb=(.7 .4 .4)} Face 10164 3220 3307 13275 {rgb=(.7 .4 .4)} Face 10165 3584 3491 13276 {rgb=(.7 .4 .4)} Face 10166 3491 3403 13276 {rgb=(.7 .4 .4)} Face 10167 3403 3487 13276 {rgb=(.7 .4 .4)} Face 10168 3487 3584 13276 {rgb=(.7 .4 .4)} Face 10169 3430 3558 13277 {rgb=(.7 .4 .4)} Face 10170 3558 3487 13277 {rgb=(.7 .4 .4)} Face 10171 3487 3375 13277 {rgb=(.7 .4 .4)} Face 10172 3375 3430 13277 {rgb=(.7 .4 .4)} Face 10173 3739 3683 13278 {rgb=(.7 .4 .4)} Face 10174 3683 3558 13278 {rgb=(.7 .4 .4)} Face 10175 3558 3586 13278 {rgb=(.7 .4 .4)} Face 10176 3586 3739 13278 {rgb=(.7 .4 .4)} Face 10177 3457 3430 13279 {rgb=(.7 .4 .4)} Face 10178 3430 3324 13279 {rgb=(.7 .4 .4)} Face 10179 3324 3335 13279 {rgb=(.7 .4 .4)} Face 10180 3335 3457 13279 {rgb=(.7 .4 .4)} Face 10181 3243 3324 13280 {rgb=(.7 .4 .4)} Face 10182 3324 3280 13280 {rgb=(.7 .4 .4)} Face 10183 3280 3215 13280 {rgb=(.7 .4 .4)} Face 10184 3215 3243 13280 {rgb=(.7 .4 .4)} Face 10185 3218 3280 13281 {rgb=(.7 .4 .4)} Face 10186 3280 3375 13281 {rgb=(.7 .4 .4)} Face 10187 3375 3307 13281 {rgb=(.7 .4 .4)} Face 10188 3307 3218 13281 {rgb=(.7 .4 .4)} Face 10189 3166 3218 13282 {rgb=(.7 .4 .4)} Face 10190 3218 3149 13282 {rgb=(.7 .4 .4)} Face 10191 3149 3082 13282 {rgb=(.7 .4 .4)} Face 10192 3082 3166 13282 {rgb=(.7 .4 .4)} Face 10193 3028 3149 13283 {rgb=(.7 .4 .4)} Face 10194 3149 3220 13283 {rgb=(.7 .4 .4)} Face 10195 3220 3117 13283 {rgb=(.7 .4 .4)} Face 10196 3117 3028 13283 {rgb=(.7 .4 .4)} Face 10197 2944 3028 13284 {rgb=(.7 .4 .4)} Face 10198 3028 2863 13284 {rgb=(.7 .4 .4)} Face 10199 2863 2809 13284 {rgb=(.7 .4 .4)} Face 10200 2809 2944 13284 {rgb=(.7 .4 .4)} Face 10201 2781 2863 13285 {rgb=(.7 .4 .4)} Face 10202 2863 2939 13285 {rgb=(.7 .4 .4)} Face 10203 2939 2838 13285 {rgb=(.7 .4 .4)} Face 10204 2838 2781 13285 {rgb=(.7 .4 .4)} Face 10205 2731 2781 13286 {rgb=(.7 .4 .4)} Face 10206 2781 2746 13286 {rgb=(.7 .4 .4)} Face 10207 2746 2707 13286 {rgb=(.7 .4 .4)} Face 10208 2707 2731 13286 {rgb=(.7 .4 .4)} Face 10209 2728 2746 13287 {rgb=(.7 .4 .4)} Face 10210 2746 2793 13287 {rgb=(.7 .4 .4)} Face 10211 2793 2772 13287 {rgb=(.7 .4 .4)} Face 10212 2772 2728 13287 {rgb=(.7 .4 .4)} Face 10213 2696 2728 13288 {rgb=(.7 .4 .4)} Face 10214 2728 2738 13288 {rgb=(.7 .4 .4)} Face 10215 2738 2716 13288 {rgb=(.7 .4 .4)} Face 10216 2716 2696 13288 {rgb=(.7 .4 .4)} Face 10217 2777 2738 13289 {rgb=(.7 .4 .4)} Face 10218 2738 2763 13289 {rgb=(.7 .4 .4)} Face 10219 2763 2790 13289 {rgb=(.7 .4 .4)} Face 10220 2790 2777 13289 {rgb=(.7 .4 .4)} Face 10221 2876 2850 13290 {rgb=(.7 .4 .4)} Face 10222 2850 2790 13290 {rgb=(.7 .4 .4)} Face 10223 2790 2821 13290 {rgb=(.7 .4 .4)} Face 10224 2821 2876 13290 {rgb=(.7 .4 .4)} Face 10225 2752 2777 13291 {rgb=(.7 .4 .4)} Face 10226 2777 2831 13291 {rgb=(.7 .4 .4)} Face 10227 2831 2813 13291 {rgb=(.7 .4 .4)} Face 10228 2813 2752 13291 {rgb=(.7 .4 .4)} Face 10229 2882 2831 13292 {rgb=(.7 .4 .4)} Face 10230 2831 2850 13292 {rgb=(.7 .4 .4)} Face 10231 2850 2907 13292 {rgb=(.7 .4 .4)} Face 10232 2907 2882 13292 {rgb=(.7 .4 .4)} Face 10233 2990 2974 13293 {rgb=(.7 .4 .4)} Face 10234 2974 2907 13293 {rgb=(.7 .4 .4)} Face 10235 2907 2925 13293 {rgb=(.7 .4 .4)} Face 10236 2925 2990 13293 {rgb=(.7 .4 .4)} Face 10237 2864 2882 13294 {rgb=(.7 .4 .4)} Face 10238 2882 2952 13294 {rgb=(.7 .4 .4)} Face 10239 2952 2922 13294 {rgb=(.7 .4 .4)} Face 10240 2922 2864 13294 {rgb=(.7 .4 .4)} Face 10241 2976 2952 13295 {rgb=(.7 .4 .4)} Face 10242 2952 2974 13295 {rgb=(.7 .4 .4)} Face 10243 2974 2984 13295 {rgb=(.7 .4 .4)} Face 10244 2984 2976 13295 {rgb=(.7 .4 .4)} Face 10245 2951 2976 13296 {rgb=(.7 .4 .4)} Face 10246 2976 2937 13296 {rgb=(.7 .4 .4)} Face 10247 2937 2931 13296 {rgb=(.7 .4 .4)} Face 10248 2931 2951 13296 {rgb=(.7 .4 .4)} Face 10249 2906 2937 13297 {rgb=(.7 .4 .4)} Face 10250 2937 2929 13297 {rgb=(.7 .4 .4)} Face 10251 2929 2890 13297 {rgb=(.7 .4 .4)} Face 10252 2890 2906 13297 {rgb=(.7 .4 .4)} Face 10253 2892 2906 13298 {rgb=(.7 .4 .4)} Face 10254 2906 2855 13298 {rgb=(.7 .4 .4)} Face 10255 2855 2848 13298 {rgb=(.7 .4 .4)} Face 10256 2848 2892 13298 {rgb=(.7 .4 .4)} Face 10257 2926 2972 13299 {rgb=(.7 .4 .4)} Face 10258 2972 2925 13299 {rgb=(.7 .4 .4)} Face 10259 2925 2876 13299 {rgb=(.7 .4 .4)} Face 10260 2876 2926 13299 {rgb=(.7 .4 .4)} Face 10261 2529 2548 13300 {rgb=(.7 .4 .4)} Face 10262 2548 2612 13300 {rgb=(.7 .4 .4)} Face 10263 2612 2614 13300 {rgb=(.7 .4 .4)} Face 10264 2614 2529 13300 {rgb=(.7 .4 .4)} Face 10265 2724 2671 13301 {rgb=(.7 .4 .4)} Face 10266 2671 2626 13301 {rgb=(.7 .4 .4)} Face 10267 2626 2694 13301 {rgb=(.7 .4 .4)} Face 10268 2694 2724 13301 {rgb=(.7 .4 .4)} Face 10269 2759 2724 13302 {rgb=(.7 .4 .4)} Face 10270 2724 2789 13302 {rgb=(.7 .4 .4)} Face 10271 2789 2816 13302 {rgb=(.7 .4 .4)} Face 10272 2816 2759 13302 {rgb=(.7 .4 .4)} Face 10273 2827 2789 13303 {rgb=(.7 .4 .4)} Face 10274 2789 2765 13303 {rgb=(.7 .4 .4)} Face 10275 2765 2802 13303 {rgb=(.7 .4 .4)} Face 10276 2802 2827 13303 {rgb=(.7 .4 .4)} Face 10277 2851 2827 13304 {rgb=(.7 .4 .4)} Face 10278 2827 2845 13304 {rgb=(.7 .4 .4)} Face 10279 2845 2868 13304 {rgb=(.7 .4 .4)} Face 10280 2868 2851 13304 {rgb=(.7 .4 .4)} Face 10281 2828 2845 13305 {rgb=(.7 .4 .4)} Face 10282 2845 2814 13305 {rgb=(.7 .4 .4)} Face 10283 2814 2801 13305 {rgb=(.7 .4 .4)} Face 10284 2801 2828 13305 {rgb=(.7 .4 .4)} Face 10285 2852 2828 13306 {rgb=(.7 .4 .4)} Face 10286 2828 2783 13306 {rgb=(.7 .4 .4)} Face 10287 2783 2807 13306 {rgb=(.7 .4 .4)} Face 10288 2807 2852 13306 {rgb=(.7 .4 .4)} Face 10289 2725 2783 13307 {rgb=(.7 .4 .4)} Face 10290 2783 2760 13307 {rgb=(.7 .4 .4)} Face 10291 2760 2705 13307 {rgb=(.7 .4 .4)} Face 10292 2705 2725 13307 {rgb=(.7 .4 .4)} Face 10293 2749 2725 13308 {rgb=(.7 .4 .4)} Face 10294 2725 2655 13308 {rgb=(.7 .4 .4)} Face 10295 2655 2680 13308 {rgb=(.7 .4 .4)} Face 10296 2680 2749 13308 {rgb=(.7 .4 .4)} Face 10297 2609 2655 13309 {rgb=(.7 .4 .4)} Face 10298 2655 2630 13309 {rgb=(.7 .4 .4)} Face 10299 2630 2581 13309 {rgb=(.7 .4 .4)} Face 10300 2581 2609 13309 {rgb=(.7 .4 .4)} Face 10301 2619 2609 13310 {rgb=(.7 .4 .4)} Face 10302 2609 2544 13310 {rgb=(.7 .4 .4)} Face 10303 2544 2568 13310 {rgb=(.7 .4 .4)} Face 10304 2568 2619 13310 {rgb=(.7 .4 .4)} Face 10305 2810 2788 13311 {rgb=(.7 .4 .4)} Face 10306 2788 2844 13311 {rgb=(.7 .4 .4)} Face 10307 2844 2860 13311 {rgb=(.7 .4 .4)} Face 10308 2860 2810 13311 {rgb=(.7 .4 .4)} Face 10309 2875 2844 13312 {rgb=(.7 .4 .4)} Face 10310 2844 2816 13312 {rgb=(.7 .4 .4)} Face 10311 2816 2851 13312 {rgb=(.7 .4 .4)} Face 10312 2851 2875 13312 {rgb=(.7 .4 .4)} Face 10313 2888 2875 13313 {rgb=(.7 .4 .4)} Face 10314 2875 2884 13313 {rgb=(.7 .4 .4)} Face 10315 2884 2895 13313 {rgb=(.7 .4 .4)} Face 10316 2895 2888 13313 {rgb=(.7 .4 .4)} Face 10317 2871 2884 13314 {rgb=(.7 .4 .4)} Face 10318 2884 2868 13314 {rgb=(.7 .4 .4)} Face 10319 2868 2852 13314 {rgb=(.7 .4 .4)} Face 10320 2852 2871 13314 {rgb=(.7 .4 .4)} Face 10321 2891 2871 13315 {rgb=(.7 .4 .4)} Face 10322 2871 2829 13315 {rgb=(.7 .4 .4)} Face 10323 2829 2849 13315 {rgb=(.7 .4 .4)} Face 10324 2849 2891 13315 {rgb=(.7 .4 .4)} Face 10325 2776 2829 13316 {rgb=(.7 .4 .4)} Face 10326 2829 2807 13316 {rgb=(.7 .4 .4)} Face 10327 2807 2749 13316 {rgb=(.7 .4 .4)} Face 10328 2749 2776 13316 {rgb=(.7 .4 .4)} Face 10329 2797 2776 13317 {rgb=(.7 .4 .4)} Face 10330 2776 2700 13317 {rgb=(.7 .4 .4)} Face 10331 2700 2722 13317 {rgb=(.7 .4 .4)} Face 10332 2722 2797 13317 {rgb=(.7 .4 .4)} Face 10333 2644 2700 13318 {rgb=(.7 .4 .4)} Face 10334 2700 2680 13318 {rgb=(.7 .4 .4)} Face 10335 2680 2619 13318 {rgb=(.7 .4 .4)} Face 10336 2619 2644 13318 {rgb=(.7 .4 .4)} Face 10337 2682 2644 13319 {rgb=(.7 .4 .4)} Face 10338 2644 2618 13319 {rgb=(.7 .4 .4)} Face 10339 2618 2661 13319 {rgb=(.7 .4 .4)} Face 10340 2661 2682 13319 {rgb=(.7 .4 .4)} Face 10341 2617 2618 13320 {rgb=(.7 .4 .4)} Face 10342 2618 2568 13320 {rgb=(.7 .4 .4)} Face 10343 2568 2556 13320 {rgb=(.7 .4 .4)} Face 10344 2556 2617 13320 {rgb=(.7 .4 .4)} Face 10345 2669 2617 13321 {rgb=(.7 .4 .4)} Face 10346 2617 2642 13321 {rgb=(.7 .4 .4)} Face 10347 2642 2695 13321 {rgb=(.7 .4 .4)} Face 10348 2695 2669 13321 {rgb=(.7 .4 .4)} Face 10349 2715 2642 13322 {rgb=(.7 .4 .4)} Face 10350 2642 2593 13322 {rgb=(.7 .4 .4)} Face 10351 2593 2652 13322 {rgb=(.7 .4 .4)} Face 10352 2652 2715 13322 {rgb=(.7 .4 .4)} Face 10353 2774 2715 13323 {rgb=(.7 .4 .4)} Face 10354 2715 2818 13323 {rgb=(.7 .4 .4)} Face 10355 2818 2881 13323 {rgb=(.7 .4 .4)} Face 10356 2881 2774 13323 {rgb=(.7 .4 .4)} Face 10357 2930 2818 13324 {rgb=(.7 .4 .4)} Face 10358 2818 2742 13324 {rgb=(.7 .4 .4)} Face 10359 2742 2846 13324 {rgb=(.7 .4 .4)} Face 10360 2846 2930 13324 {rgb=(.7 .4 .4)} Face 10361 3026 2930 13325 {rgb=(.7 .4 .4)} Face 10362 2930 3080 13325 {rgb=(.7 .4 .4)} Face 10363 3080 3130 13325 {rgb=(.7 .4 .4)} Face 10364 3130 3026 13325 {rgb=(.7 .4 .4)} Face 10365 3133 3080 13326 {rgb=(.7 .4 .4)} Face 10366 3080 2999 13326 {rgb=(.7 .4 .4)} Face 10367 2999 3070 13326 {rgb=(.7 .4 .4)} Face 10368 3070 3133 13326 {rgb=(.7 .4 .4)} Face 10369 3187 3133 13327 {rgb=(.7 .4 .4)} Face 10370 3133 3131 13327 {rgb=(.7 .4 .4)} Face 10371 3131 3201 13327 {rgb=(.7 .4 .4)} Face 10372 3201 3187 13327 {rgb=(.7 .4 .4)} Face 10373 3122 3131 13328 {rgb=(.7 .4 .4)} Face 10374 3131 3035 13328 {rgb=(.7 .4 .4)} Face 10375 3035 3001 13328 {rgb=(.7 .4 .4)} Face 10376 3001 3122 13328 {rgb=(.7 .4 .4)} Face 10377 3251 3243 13329 {rgb=(.7 .4 .4)} Face 10378 3243 3201 13329 {rgb=(.7 .4 .4)} Face 10379 3201 3199 13329 {rgb=(.7 .4 .4)} Face 10380 3199 3251 13329 {rgb=(.7 .4 .4)} Face 10381 3130 3187 13330 {rgb=(.7 .4 .4)} Face 10382 3187 3215 13330 {rgb=(.7 .4 .4)} Face 10383 3215 3166 13330 {rgb=(.7 .4 .4)} Face 10384 3166 3130 13330 {rgb=(.7 .4 .4)} Face 10385 2881 3026 13331 {rgb=(.7 .4 .4)} Face 10386 3026 3082 13331 {rgb=(.7 .4 .4)} Face 10387 3082 2944 13331 {rgb=(.7 .4 .4)} Face 10388 2944 2881 13331 {rgb=(.7 .4 .4)} Face 10389 2695 2774 13332 {rgb=(.7 .4 .4)} Face 10390 2774 2809 13332 {rgb=(.7 .4 .4)} Face 10391 2809 2731 13332 {rgb=(.7 .4 .4)} Face 10392 2731 2695 13332 {rgb=(.7 .4 .4)} Face 10393 2661 2669 13333 {rgb=(.7 .4 .4)} Face 10394 2669 2707 13333 {rgb=(.7 .4 .4)} Face 10395 2707 2696 13333 {rgb=(.7 .4 .4)} Face 10396 2696 2661 13333 {rgb=(.7 .4 .4)} Face 10397 2722 2682 13334 {rgb=(.7 .4 .4)} Face 10398 2682 2716 13334 {rgb=(.7 .4 .4)} Face 10399 2716 2752 13334 {rgb=(.7 .4 .4)} Face 10400 2752 2722 13334 {rgb=(.7 .4 .4)} Face 10401 2849 2797 13335 {rgb=(.7 .4 .4)} Face 10402 2797 2813 13335 {rgb=(.7 .4 .4)} Face 10403 2813 2864 13335 {rgb=(.7 .4 .4)} Face 10404 2864 2849 13335 {rgb=(.7 .4 .4)} Face 10405 2913 2891 13336 {rgb=(.7 .4 .4)} Face 10406 2891 2922 13336 {rgb=(.7 .4 .4)} Face 10407 2922 2951 13336 {rgb=(.7 .4 .4)} Face 10408 2951 2913 13336 {rgb=(.7 .4 .4)} Face 10409 2895 2913 13337 {rgb=(.7 .4 .4)} Face 10410 2913 2908 13337 {rgb=(.7 .4 .4)} Face 10411 2908 2893 13337 {rgb=(.7 .4 .4)} Face 10412 2893 2895 13337 {rgb=(.7 .4 .4)} Face 10413 2878 2908 13338 {rgb=(.7 .4 .4)} Face 10414 2908 2931 13338 {rgb=(.7 .4 .4)} Face 10415 2931 2892 13338 {rgb=(.7 .4 .4)} Face 10416 2892 2878 13338 {rgb=(.7 .4 .4)} Face 10417 2870 2878 13339 {rgb=(.7 .4 .4)} Face 10418 2878 2839 13339 {rgb=(.7 .4 .4)} Face 10419 2839 2826 13339 {rgb=(.7 .4 .4)} Face 10420 2826 2870 13339 {rgb=(.7 .4 .4)} Face 10421 2893 2870 13340 {rgb=(.7 .4 .4)} Face 10422 2870 2860 13340 {rgb=(.7 .4 .4)} Face 10423 2860 2888 13340 {rgb=(.7 .4 .4)} Face 10424 2888 2893 13340 {rgb=(.7 .4 .4)} Face 10425 5289 5334 13341 {rgb=(.7 .4 .4)} Face 10426 5334 5463 13341 {rgb=(.7 .4 .4)} Face 10427 5463 5420 13341 {rgb=(.7 .4 .4)} Face 10428 5420 5289 13341 {rgb=(.7 .4 .4)} Face 10429 5582 5463 13342 {rgb=(.7 .4 .4)} Face 10430 5463 5465 13342 {rgb=(.7 .4 .4)} Face 10431 5465 5580 13342 {rgb=(.7 .4 .4)} Face 10432 5580 5582 13342 {rgb=(.7 .4 .4)} Face 10433 5464 5465 13343 {rgb=(.7 .4 .4)} Face 10434 5465 5346 13343 {rgb=(.7 .4 .4)} Face 10435 5346 5338 13343 {rgb=(.7 .4 .4)} Face 10436 5338 5464 13343 {rgb=(.7 .4 .4)} Face 10437 5254 5346 13344 {rgb=(.7 .4 .4)} Face 10438 5346 5334 13344 {rgb=(.7 .4 .4)} Face 10439 5334 5255 13344 {rgb=(.7 .4 .4)} Face 10440 5255 5254 13344 {rgb=(.7 .4 .4)} Face 10441 5581 5464 13345 {rgb=(.7 .4 .4)} Face 10442 5464 5460 13345 {rgb=(.7 .4 .4)} Face 10443 5460 5585 13345 {rgb=(.7 .4 .4)} Face 10444 5585 5581 13345 {rgb=(.7 .4 .4)} Face 10445 5459 5460 13346 {rgb=(.7 .4 .4)} Face 10446 5460 5328 13346 {rgb=(.7 .4 .4)} Face 10447 5328 5314 13346 {rgb=(.7 .4 .4)} Face 10448 5314 5459 13346 {rgb=(.7 .4 .4)} Face 10449 5214 5328 13347 {rgb=(.7 .4 .4)} Face 10450 5328 5338 13347 {rgb=(.7 .4 .4)} Face 10451 5338 5237 13347 {rgb=(.7 .4 .4)} Face 10452 5237 5214 13347 {rgb=(.7 .4 .4)} Face 10453 5586 5459 13348 {rgb=(.7 .4 .4)} Face 10454 5459 5454 13348 {rgb=(.7 .4 .4)} Face 10455 5454 5591 13348 {rgb=(.7 .4 .4)} Face 10456 5591 5586 13348 {rgb=(.7 .4 .4)} Face 10457 5451 5454 13349 {rgb=(.7 .4 .4)} Face 10458 5454 5298 13349 {rgb=(.7 .4 .4)} Face 10459 5298 5283 13349 {rgb=(.7 .4 .4)} Face 10460 5283 5451 13349 {rgb=(.7 .4 .4)} Face 10461 5185 5298 13350 {rgb=(.7 .4 .4)} Face 10462 5298 5314 13350 {rgb=(.7 .4 .4)} Face 10463 5314 5196 13350 {rgb=(.7 .4 .4)} Face 10464 5196 5185 13350 {rgb=(.7 .4 .4)} Face 10465 5138 5187 13351 {rgb=(.7 .4 .4)} Face 10466 5187 5255 13351 {rgb=(.7 .4 .4)} Face 10467 5255 5179 13351 {rgb=(.7 .4 .4)} Face 10468 5179 5138 13351 {rgb=(.7 .4 .4)} Face 10469 5237 5254 13352 {rgb=(.7 .4 .4)} Face 10470 5254 5176 13352 {rgb=(.7 .4 .4)} Face 10471 5176 5165 13352 {rgb=(.7 .4 .4)} Face 10472 5165 5237 13352 {rgb=(.7 .4 .4)} Face 10473 5100 5176 13353 {rgb=(.7 .4 .4)} Face 10474 5176 5187 13353 {rgb=(.7 .4 .4)} Face 10475 5187 5125 13353 {rgb=(.7 .4 .4)} Face 10476 5125 5100 13353 {rgb=(.7 .4 .4)} Face 10477 5196 5214 13354 {rgb=(.7 .4 .4)} Face 10478 5214 5141 13354 {rgb=(.7 .4 .4)} Face 10479 5141 5124 13354 {rgb=(.7 .4 .4)} Face 10480 5124 5196 13354 {rgb=(.7 .4 .4)} Face 10481 5050 5141 13355 {rgb=(.7 .4 .4)} Face 10482 5141 5165 13355 {rgb=(.7 .4 .4)} Face 10483 5165 5078 13355 {rgb=(.7 .4 .4)} Face 10484 5078 5050 13355 {rgb=(.7 .4 .4)} Face 10485 5172 5185 13356 {rgb=(.7 .4 .4)} Face 10486 5185 5116 13356 {rgb=(.7 .4 .4)} Face 10487 5116 5101 13356 {rgb=(.7 .4 .4)} Face 10488 5101 5172 13356 {rgb=(.7 .4 .4)} Face 10489 5035 5116 13357 {rgb=(.7 .4 .4)} Face 10490 5116 5124 13357 {rgb=(.7 .4 .4)} Face 10491 5124 5039 13357 {rgb=(.7 .4 .4)} Face 10492 5039 5035 13357 {rgb=(.7 .4 .4)} Face 10493 5010 5033 13358 {rgb=(.7 .4 .4)} Face 10494 5033 5125 13358 {rgb=(.7 .4 .4)} Face 10495 5125 5081 13358 {rgb=(.7 .4 .4)} Face 10496 5081 5010 13358 {rgb=(.7 .4 .4)} Face 10497 5078 5100 13359 {rgb=(.7 .4 .4)} Face 10498 5100 5002 13359 {rgb=(.7 .4 .4)} Face 10499 5002 4984 13359 {rgb=(.7 .4 .4)} Face 10500 4984 5078 13359 {rgb=(.7 .4 .4)} Face 10501 4885 5002 13360 {rgb=(.7 .4 .4)} Face 10502 5002 5033 13360 {rgb=(.7 .4 .4)} Face 10503 5033 4924 13360 {rgb=(.7 .4 .4)} Face 10504 4924 4885 13360 {rgb=(.7 .4 .4)} Face 10505 5039 5050 13361 {rgb=(.7 .4 .4)} Face 10506 5050 4972 13361 {rgb=(.7 .4 .4)} Face 10507 4972 4965 13361 {rgb=(.7 .4 .4)} Face 10508 4965 5039 13361 {rgb=(.7 .4 .4)} Face 10509 4858 4972 13362 {rgb=(.7 .4 .4)} Face 10510 4972 4984 13362 {rgb=(.7 .4 .4)} Face 10511 4984 4864 13362 {rgb=(.7 .4 .4)} Face 10512 4864 4858 13362 {rgb=(.7 .4 .4)} Face 10513 5018 5035 13363 {rgb=(.7 .4 .4)} Face 10514 5035 4950 13363 {rgb=(.7 .4 .4)} Face 10515 4950 4940 13363 {rgb=(.7 .4 .4)} Face 10516 4940 5018 13363 {rgb=(.7 .4 .4)} Face 10517 4904 4950 13364 {rgb=(.7 .4 .4)} Face 10518 4950 4965 13364 {rgb=(.7 .4 .4)} Face 10519 4965 4917 13364 {rgb=(.7 .4 .4)} Face 10520 4917 4904 13364 {rgb=(.7 .4 .4)} Face 10521 4868 4862 13365 {rgb=(.7 .4 .4)} Face 10522 4862 4924 13365 {rgb=(.7 .4 .4)} Face 10523 4924 4923 13365 {rgb=(.7 .4 .4)} Face 10524 4923 4868 13365 {rgb=(.7 .4 .4)} Face 10525 4864 4885 13366 {rgb=(.7 .4 .4)} Face 10526 4885 4742 13366 {rgb=(.7 .4 .4)} Face 10527 4742 4676 13366 {rgb=(.7 .4 .4)} Face 10528 4676 4864 13366 {rgb=(.7 .4 .4)} Face 10529 4468 4742 13367 {rgb=(.7 .4 .4)} Face 10530 4742 4784 13367 {rgb=(.7 .4 .4)} Face 10531 4784 4586 13367 {rgb=(.7 .4 .4)} Face 10532 4586 4468 13367 {rgb=(.7 .4 .4)} Face 10533 4796 4784 13368 {rgb=(.7 .4 .4)} Face 10534 4784 4862 13368 {rgb=(.7 .4 .4)} Face 10535 4862 4829 13368 {rgb=(.7 .4 .4)} Face 10536 4829 4796 13368 {rgb=(.7 .4 .4)} Face 10537 4839 4858 13369 {rgb=(.7 .4 .4)} Face 10538 4858 4658 13369 {rgb=(.7 .4 .4)} Face 10539 4658 4631 13369 {rgb=(.7 .4 .4)} Face 10540 4631 4839 13369 {rgb=(.7 .4 .4)} Face 10541 4391 4658 13370 {rgb=(.7 .4 .4)} Face 10542 4658 4676 13370 {rgb=(.7 .4 .4)} Face 10543 4676 4396 13370 {rgb=(.7 .4 .4)} Face 10544 4396 4391 13370 {rgb=(.7 .4 .4)} Face 10545 4917 4839 13371 {rgb=(.7 .4 .4)} Face 10546 4839 4802 13371 {rgb=(.7 .4 .4)} Face 10547 4802 4892 13371 {rgb=(.7 .4 .4)} Face 10548 4892 4917 13371 {rgb=(.7 .4 .4)} Face 10549 4767 4802 13372 {rgb=(.7 .4 .4)} Face 10550 4802 4614 13372 {rgb=(.7 .4 .4)} Face 10551 4614 4574 13372 {rgb=(.7 .4 .4)} Face 10552 4574 4767 13372 {rgb=(.7 .4 .4)} Face 10553 4395 4614 13373 {rgb=(.7 .4 .4)} Face 10554 4614 4631 13373 {rgb=(.7 .4 .4)} Face 10555 4631 4390 13373 {rgb=(.7 .4 .4)} Face 10556 4390 4395 13373 {rgb=(.7 .4 .4)} Face 10557 5558 5486 13374 {rgb=(.7 .4 .4)} Face 10558 5486 5485 13374 {rgb=(.7 .4 .4)} Face 10559 5485 5557 13374 {rgb=(.7 .4 .4)} Face 10560 5557 5558 13374 {rgb=(.7 .4 .4)} Face 10561 5420 5485 13375 {rgb=(.7 .4 .4)} Face 10562 5485 5418 13375 {rgb=(.7 .4 .4)} Face 10563 5418 5321 13375 {rgb=(.7 .4 .4)} Face 10564 5321 5420 13375 {rgb=(.7 .4 .4)} Face 10565 5188 5289 13376 {rgb=(.7 .4 .4)} Face 10566 5289 5182 13376 {rgb=(.7 .4 .4)} Face 10567 5182 5086 13376 {rgb=(.7 .4 .4)} Face 10568 5086 5188 13376 {rgb=(.7 .4 .4)} Face 10569 4928 5000 13377 {rgb=(.7 .4 .4)} Face 10570 5000 5041 13377 {rgb=(.7 .4 .4)} Face 10571 5041 4957 13377 {rgb=(.7 .4 .4)} Face 10572 4957 4928 13377 {rgb=(.7 .4 .4)} Face 10573 5045 5041 13378 {rgb=(.7 .4 .4)} Face 10574 5041 5179 13378 {rgb=(.7 .4 .4)} Face 10575 5179 5188 13378 {rgb=(.7 .4 .4)} Face 10576 5188 5045 13378 {rgb=(.7 .4 .4)} Face 10577 5081 5138 13379 {rgb=(.7 .4 .4)} Face 10578 5138 5000 13379 {rgb=(.7 .4 .4)} Face 10579 5000 4969 13379 {rgb=(.7 .4 .4)} Face 10580 4969 5081 13379 {rgb=(.7 .4 .4)} Face 10581 4923 5010 13380 {rgb=(.7 .4 .4)} Face 10582 5010 4945 13380 {rgb=(.7 .4 .4)} Face 10583 4945 4894 13380 {rgb=(.7 .4 .4)} Face 10584 4894 4923 13380 {rgb=(.7 .4 .4)} Face 10585 4818 4945 13381 {rgb=(.7 .4 .4)} Face 10586 4945 4969 13381 {rgb=(.7 .4 .4)} Face 10587 4969 4815 13381 {rgb=(.7 .4 .4)} Face 10588 4815 4818 13381 {rgb=(.7 .4 .4)} Face 10589 4830 4868 13382 {rgb=(.7 .4 .4)} Face 10590 4868 4838 13382 {rgb=(.7 .4 .4)} Face 10591 4838 4808 13382 {rgb=(.7 .4 .4)} Face 10592 4808 4830 13382 {rgb=(.7 .4 .4)} Face 10593 4778 4838 13383 {rgb=(.7 .4 .4)} Face 10594 4838 4831 13383 {rgb=(.7 .4 .4)} Face 10595 4831 4775 13383 {rgb=(.7 .4 .4)} Face 10596 4775 4778 13383 {rgb=(.7 .4 .4)} Face 10597 4795 4831 13384 {rgb=(.7 .4 .4)} Face 10598 4831 4854 13384 {rgb=(.7 .4 .4)} Face 10599 4854 4804 13384 {rgb=(.7 .4 .4)} Face 10600 4804 4795 13384 {rgb=(.7 .4 .4)} Face 10601 4751 4854 13385 {rgb=(.7 .4 .4)} Face 10602 4854 4894 13385 {rgb=(.7 .4 .4)} Face 10603 4894 4788 13385 {rgb=(.7 .4 .4)} Face 10604 4788 4751 13385 {rgb=(.7 .4 .4)} Face 10605 4791 4778 13386 {rgb=(.7 .4 .4)} Face 10606 4778 4768 13386 {rgb=(.7 .4 .4)} Face 10607 4768 4774 13386 {rgb=(.7 .4 .4)} Face 10608 4774 4791 13386 {rgb=(.7 .4 .4)} Face 10609 4495 4768 13387 {rgb=(.7 .4 .4)} Face 10610 4768 4752 13387 {rgb=(.7 .4 .4)} Face 10611 4752 4486 13387 {rgb=(.7 .4 .4)} Face 10612 4486 4495 13387 {rgb=(.7 .4 .4)} Face 10613 4705 4752 13388 {rgb=(.7 .4 .4)} Face 10614 4752 4755 13388 {rgb=(.7 .4 .4)} Face 10615 4755 4721 13388 {rgb=(.7 .4 .4)} Face 10616 4721 4705 13388 {rgb=(.7 .4 .4)} Face 10617 4671 4755 13389 {rgb=(.7 .4 .4)} Face 10618 4755 4770 13389 {rgb=(.7 .4 .4)} Face 10619 4770 4692 13389 {rgb=(.7 .4 .4)} Face 10620 4692 4671 13389 {rgb=(.7 .4 .4)} Face 10621 4781 4770 13390 {rgb=(.7 .4 .4)} Face 10622 4770 4775 13390 {rgb=(.7 .4 .4)} Face 10623 4775 4787 13390 {rgb=(.7 .4 .4)} Face 10624 4787 4781 13390 {rgb=(.7 .4 .4)} Face 10625 4396 4468 13391 {rgb=(.7 .4 .4)} Face 10626 4468 4215 13391 {rgb=(.7 .4 .4)} Face 10627 4215 4148 13391 {rgb=(.7 .4 .4)} Face 10628 4148 4396 13391 {rgb=(.7 .4 .4)} Face 10629 4173 4215 13392 {rgb=(.7 .4 .4)} Face 10630 4215 4586 13392 {rgb=(.7 .4 .4)} Face 10631 4586 4540 13392 {rgb=(.7 .4 .4)} Face 10632 4540 4173 13392 {rgb=(.7 .4 .4)} Face 10633 5275 5263 13393 {rgb=(.7 .4 .4)} Face 10634 5263 5444 13393 {rgb=(.7 .4 .4)} Face 10635 5444 5450 13393 {rgb=(.7 .4 .4)} Face 10636 5450 5275 13393 {rgb=(.7 .4 .4)} Face 10637 5602 5444 13394 {rgb=(.7 .4 .4)} Face 10638 5444 5440 13394 {rgb=(.7 .4 .4)} Face 10639 5440 5606 13394 {rgb=(.7 .4 .4)} Face 10640 5606 5602 13394 {rgb=(.7 .4 .4)} Face 10641 5436 5440 13395 {rgb=(.7 .4 .4)} Face 10642 5440 5248 13395 {rgb=(.7 .4 .4)} Face 10643 5248 5239 13395 {rgb=(.7 .4 .4)} Face 10644 5239 5436 13395 {rgb=(.7 .4 .4)} Face 10645 5120 5248 13396 {rgb=(.7 .4 .4)} Face 10646 5248 5263 13396 {rgb=(.7 .4 .4)} Face 10647 5263 5140 13396 {rgb=(.7 .4 .4)} Face 10648 5140 5120 13396 {rgb=(.7 .4 .4)} Face 10649 5076 5047 13397 {rgb=(.7 .4 .4)} Face 10650 5047 5140 13397 {rgb=(.7 .4 .4)} Face 10651 5140 5161 13397 {rgb=(.7 .4 .4)} Face 10652 5161 5076 13397 {rgb=(.7 .4 .4)} Face 10653 5114 5120 13398 {rgb=(.7 .4 .4)} Face 10654 5120 5025 13398 {rgb=(.7 .4 .4)} Face 10655 5025 5011 13398 {rgb=(.7 .4 .4)} Face 10656 5011 5114 13398 {rgb=(.7 .4 .4)} Face 10657 4960 5025 13399 {rgb=(.7 .4 .4)} Face 10658 5025 5047 13399 {rgb=(.7 .4 .4)} Face 10659 5047 4979 13399 {rgb=(.7 .4 .4)} Face 10660 4979 4960 13399 {rgb=(.7 .4 .4)} Face 10661 4932 4918 13400 {rgb=(.7 .4 .4)} Face 10662 4918 4979 13400 {rgb=(.7 .4 .4)} Face 10663 4979 4998 13400 {rgb=(.7 .4 .4)} Face 10664 4998 4932 13400 {rgb=(.7 .4 .4)} Face 10665 4948 4960 13401 {rgb=(.7 .4 .4)} Face 10666 4960 4914 13401 {rgb=(.7 .4 .4)} Face 10667 4914 4929 13401 {rgb=(.7 .4 .4)} Face 10668 4929 4948 13401 {rgb=(.7 .4 .4)} Face 10669 4849 4914 13402 {rgb=(.7 .4 .4)} Face 10670 4914 4918 13402 {rgb=(.7 .4 .4)} Face 10671 4918 4861 13402 {rgb=(.7 .4 .4)} Face 10672 4861 4849 13402 {rgb=(.7 .4 .4)} Face 10673 4790 4762 13403 {rgb=(.7 .4 .4)} Face 10674 4762 4861 13403 {rgb=(.7 .4 .4)} Face 10675 4861 4874 13403 {rgb=(.7 .4 .4)} Face 10676 4874 4790 13403 {rgb=(.7 .4 .4)} Face 10677 4857 4849 13404 {rgb=(.7 .4 .4)} Face 10678 4849 4728 13404 {rgb=(.7 .4 .4)} Face 10679 4728 4711 13404 {rgb=(.7 .4 .4)} Face 10680 4711 4857 13404 {rgb=(.7 .4 .4)} Face 10681 4623 4728 13405 {rgb=(.7 .4 .4)} Face 10682 4728 4762 13405 {rgb=(.7 .4 .4)} Face 10683 4762 4693 13405 {rgb=(.7 .4 .4)} Face 10684 4693 4623 13405 {rgb=(.7 .4 .4)} Face 10685 4720 4636 13406 {rgb=(.7 .4 .4)} Face 10686 4636 4693 13406 {rgb=(.7 .4 .4)} Face 10687 4693 4758 13406 {rgb=(.7 .4 .4)} Face 10688 4758 4720 13406 {rgb=(.7 .4 .4)} Face 10689 4590 4623 13407 {rgb=(.7 .4 .4)} Face 10690 4623 4543 13407 {rgb=(.7 .4 .4)} Face 10691 4543 4500 13407 {rgb=(.7 .4 .4)} Face 10692 4500 4590 13407 {rgb=(.7 .4 .4)} Face 10693 4496 4543 13408 {rgb=(.7 .4 .4)} Face 10694 4543 4636 13408 {rgb=(.7 .4 .4)} Face 10695 4636 4603 13408 {rgb=(.7 .4 .4)} Face 10696 4603 4496 13408 {rgb=(.7 .4 .4)} Face 10697 4800 4767 13409 {rgb=(.7 .4 .4)} Face 10698 4767 4612 13409 {rgb=(.7 .4 .4)} Face 10699 4612 4663 13409 {rgb=(.7 .4 .4)} Face 10700 4663 4800 13409 {rgb=(.7 .4 .4)} Face 10701 4442 4612 13410 {rgb=(.7 .4 .4)} Face 10702 4612 4574 13410 {rgb=(.7 .4 .4)} Face 10703 4574 4412 13410 {rgb=(.7 .4 .4)} Face 10704 4412 4442 13410 {rgb=(.7 .4 .4)} Face 10705 4511 4505 13411 {rgb=(.7 .4 .4)} Face 10706 4505 4598 13411 {rgb=(.7 .4 .4)} Face 10707 4598 4601 13411 {rgb=(.7 .4 .4)} Face 10708 4601 4511 13411 {rgb=(.7 .4 .4)} Face 10709 4696 4598 13412 {rgb=(.7 .4 .4)} Face 10710 4598 4603 13412 {rgb=(.7 .4 .4)} Face 10711 4603 4699 13412 {rgb=(.7 .4 .4)} Face 10712 4699 4696 13412 {rgb=(.7 .4 .4)} Face 10713 4465 4496 13413 {rgb=(.7 .4 .4)} Face 10714 4496 4505 13413 {rgb=(.7 .4 .4)} Face 10715 4505 4473 13413 {rgb=(.7 .4 .4)} Face 10716 4473 4465 13413 {rgb=(.7 .4 .4)} Face 10717 4344 4363 13414 {rgb=(.7 .4 .4)} Face 10718 4363 4485 13414 {rgb=(.7 .4 .4)} Face 10719 4485 4469 13414 {rgb=(.7 .4 .4)} Face 10720 4469 4344 13414 {rgb=(.7 .4 .4)} Face 10721 4561 4485 13415 {rgb=(.7 .4 .4)} Face 10722 4485 4446 13415 {rgb=(.7 .4 .4)} Face 10723 4446 4534 13415 {rgb=(.7 .4 .4)} Face 10724 4534 4561 13415 {rgb=(.7 .4 .4)} Face 10725 4440 4446 13416 {rgb=(.7 .4 .4)} Face 10726 4446 4363 13416 {rgb=(.7 .4 .4)} Face 10727 4363 4376 13416 {rgb=(.7 .4 .4)} Face 10728 4376 4440 13416 {rgb=(.7 .4 .4)} Face 10729 4448 4521 13417 {rgb=(.7 .4 .4)} Face 10730 4521 4525 13417 {rgb=(.7 .4 .4)} Face 10731 4525 4481 13417 {rgb=(.7 .4 .4)} Face 10732 4481 4448 13417 {rgb=(.7 .4 .4)} Face 10733 4541 4525 13418 {rgb=(.7 .4 .4)} Face 10734 4525 4565 13418 {rgb=(.7 .4 .4)} Face 10735 4565 4582 13418 {rgb=(.7 .4 .4)} Face 10736 4582 4541 13418 {rgb=(.7 .4 .4)} Face 10737 4539 4565 13419 {rgb=(.7 .4 .4)} Face 10738 4565 4521 13419 {rgb=(.7 .4 .4)} Face 10739 4521 4487 13419 {rgb=(.7 .4 .4)} Face 10740 4487 4539 13419 {rgb=(.7 .4 .4)} Face 10741 4629 4579 13420 {rgb=(.7 .4 .4)} Face 10742 4579 4592 13420 {rgb=(.7 .4 .4)} Face 10743 4592 4651 13420 {rgb=(.7 .4 .4)} Face 10744 4651 4629 13420 {rgb=(.7 .4 .4)} Face 10745 4594 4592 13421 {rgb=(.7 .4 .4)} Face 10746 4592 4546 13421 {rgb=(.7 .4 .4)} Face 10747 4546 4549 13421 {rgb=(.7 .4 .4)} Face 10748 4549 4594 13421 {rgb=(.7 .4 .4)} Face 10749 4497 4546 13422 {rgb=(.7 .4 .4)} Face 10750 4546 4533 13422 {rgb=(.7 .4 .4)} Face 10751 4533 4488 13422 {rgb=(.7 .4 .4)} Face 10752 4488 4497 13422 {rgb=(.7 .4 .4)} Face 10753 4559 4533 13423 {rgb=(.7 .4 .4)} Face 10754 4533 4579 13423 {rgb=(.7 .4 .4)} Face 10755 4579 4607 13423 {rgb=(.7 .4 .4)} Face 10756 4607 4559 13423 {rgb=(.7 .4 .4)} Face 10757 4530 4559 13424 {rgb=(.7 .4 .4)} Face 10758 4559 4646 13424 {rgb=(.7 .4 .4)} Face 10759 4646 4613 13424 {rgb=(.7 .4 .4)} Face 10760 4613 4530 13424 {rgb=(.7 .4 .4)} Face 10761 4753 4646 13425 {rgb=(.7 .4 .4)} Face 10762 4646 4681 13425 {rgb=(.7 .4 .4)} Face 10763 4681 4772 13425 {rgb=(.7 .4 .4)} Face 10764 4772 4753 13425 {rgb=(.7 .4 .4)} Face 10765 4709 4681 13426 {rgb=(.7 .4 .4)} Face 10766 4681 4607 13426 {rgb=(.7 .4 .4)} Face 10767 4607 4659 13426 {rgb=(.7 .4 .4)} Face 10768 4659 4709 13426 {rgb=(.7 .4 .4)} Face 10769 4732 4753 13427 {rgb=(.7 .4 .4)} Face 10770 4753 4897 13427 {rgb=(.7 .4 .4)} Face 10771 4897 4878 13427 {rgb=(.7 .4 .4)} Face 10772 4878 4732 13427 {rgb=(.7 .4 .4)} Face 10773 4962 4897 13428 {rgb=(.7 .4 .4)} Face 10774 4897 4936 13428 {rgb=(.7 .4 .4)} Face 10775 4936 5001 13428 {rgb=(.7 .4 .4)} Face 10776 5001 4962 13428 {rgb=(.7 .4 .4)} Face 10777 4963 4936 13429 {rgb=(.7 .4 .4)} Face 10778 4936 4772 13429 {rgb=(.7 .4 .4)} Face 10779 4772 4825 13429 {rgb=(.7 .4 .4)} Face 10780 4825 4963 13429 {rgb=(.7 .4 .4)} Face 10781 4941 4962 13430 {rgb=(.7 .4 .4)} Face 10782 4962 4980 13430 {rgb=(.7 .4 .4)} Face 10783 4980 4964 13430 {rgb=(.7 .4 .4)} Face 10784 4964 4941 13430 {rgb=(.7 .4 .4)} Face 10785 5034 4980 13431 {rgb=(.7 .4 .4)} Face 10786 4980 5001 13431 {rgb=(.7 .4 .4)} Face 10787 5001 5053 13431 {rgb=(.7 .4 .4)} Face 10788 5053 5034 13431 {rgb=(.7 .4 .4)} Face 10789 5019 5034 13432 {rgb=(.7 .4 .4)} Face 10790 5034 5129 13432 {rgb=(.7 .4 .4)} Face 10791 5129 5118 13432 {rgb=(.7 .4 .4)} Face 10792 5118 5019 13432 {rgb=(.7 .4 .4)} Face 10793 5260 5129 13433 {rgb=(.7 .4 .4)} Face 10794 5129 5151 13433 {rgb=(.7 .4 .4)} Face 10795 5151 5270 13433 {rgb=(.7 .4 .4)} Face 10796 5270 5260 13433 {rgb=(.7 .4 .4)} Face 10797 5155 5151 13434 {rgb=(.7 .4 .4)} Face 10798 5151 5053 13434 {rgb=(.7 .4 .4)} Face 10799 5053 5074 13434 {rgb=(.7 .4 .4)} Face 10800 5074 5155 13434 {rgb=(.7 .4 .4)} Face 10801 5245 5260 13435 {rgb=(.7 .4 .4)} Face 10802 5260 5443 13435 {rgb=(.7 .4 .4)} Face 10803 5443 5439 13435 {rgb=(.7 .4 .4)} Face 10804 5439 5245 13435 {rgb=(.7 .4 .4)} Face 10805 5603 5443 13436 {rgb=(.7 .4 .4)} Face 10806 5443 5448 13436 {rgb=(.7 .4 .4)} Face 10807 5448 5597 13436 {rgb=(.7 .4 .4)} Face 10808 5597 5603 13436 {rgb=(.7 .4 .4)} Face 10809 5453 5448 13437 {rgb=(.7 .4 .4)} Face 10810 5448 5270 13437 {rgb=(.7 .4 .4)} Face 10811 5270 5297 13437 {rgb=(.7 .4 .4)} Face 10812 5297 5453 13437 {rgb=(.7 .4 .4)} Face 10813 5592 5453 13438 {rgb=(.7 .4 .4)} Face 10814 5453 5466 13438 {rgb=(.7 .4 .4)} Face 10815 5466 5579 13438 {rgb=(.7 .4 .4)} Face 10816 5579 5592 13438 {rgb=(.7 .4 .4)} Face 10817 5477 5466 13439 {rgb=(.7 .4 .4)} Face 10818 5466 5354 13439 {rgb=(.7 .4 .4)} Face 10819 5354 5386 13439 {rgb=(.7 .4 .4)} Face 10820 5386 5477 13439 {rgb=(.7 .4 .4)} Face 10821 5282 5354 13440 {rgb=(.7 .4 .4)} Face 10822 5354 5297 13440 {rgb=(.7 .4 .4)} Face 10823 5297 5209 13440 {rgb=(.7 .4 .4)} Face 10824 5209 5282 13440 {rgb=(.7 .4 .4)} Face 10825 5198 5197 13441 {rgb=(.7 .4 .4)} Face 10826 5197 5249 13441 {rgb=(.7 .4 .4)} Face 10827 5249 5261 13441 {rgb=(.7 .4 .4)} Face 10828 5261 5198 13441 {rgb=(.7 .4 .4)} Face 10829 5265 5249 13442 {rgb=(.7 .4 .4)} Face 10830 5249 5257 13442 {rgb=(.7 .4 .4)} Face 10831 5257 5267 13442 {rgb=(.7 .4 .4)} Face 10832 5267 5265 13442 {rgb=(.7 .4 .4)} Face 10833 5216 5257 13443 {rgb=(.7 .4 .4)} Face 10834 5257 5208 13443 {rgb=(.7 .4 .4)} Face 10835 5208 5190 13443 {rgb=(.7 .4 .4)} Face 10836 5190 5216 13443 {rgb=(.7 .4 .4)} Face 10837 5175 5208 13444 {rgb=(.7 .4 .4)} Face 10838 5208 5197 13444 {rgb=(.7 .4 .4)} Face 10839 5197 5167 13444 {rgb=(.7 .4 .4)} Face 10840 5167 5175 13444 {rgb=(.7 .4 .4)} Face 10841 5568 5477 13445 {rgb=(.7 .4 .4)} Face 10842 5477 5472 13445 {rgb=(.7 .4 .4)} Face 10843 5472 5573 13445 {rgb=(.7 .4 .4)} Face 10844 5573 5568 13445 {rgb=(.7 .4 .4)} Face 10845 5471 5472 13446 {rgb=(.7 .4 .4)} Face 10846 5472 5376 13446 {rgb=(.7 .4 .4)} Face 10847 5376 5370 13446 {rgb=(.7 .4 .4)} Face 10848 5370 5471 13446 {rgb=(.7 .4 .4)} Face 10849 5302 5376 13447 {rgb=(.7 .4 .4)} Face 10850 5376 5386 13447 {rgb=(.7 .4 .4)} Face 10851 5386 5310 13447 {rgb=(.7 .4 .4)} Face 10852 5310 5302 13447 {rgb=(.7 .4 .4)} Face 10853 5206 5252 13448 {rgb=(.7 .4 .4)} Face 10854 5252 5267 13448 {rgb=(.7 .4 .4)} Face 10855 5267 5223 13448 {rgb=(.7 .4 .4)} Face 10856 5223 5206 13448 {rgb=(.7 .4 .4)} Face 10857 5279 5265 13449 {rgb=(.7 .4 .4)} Face 10858 5265 5252 13449 {rgb=(.7 .4 .4)} Face 10859 5252 5269 13449 {rgb=(.7 .4 .4)} Face 10860 5269 5279 13449 {rgb=(.7 .4 .4)} Face 10861 5102 5115 13450 {rgb=(.7 .4 .4)} Face 10862 5115 5200 13450 {rgb=(.7 .4 .4)} Face 10863 5200 5180 13450 {rgb=(.7 .4 .4)} Face 10864 5180 5102 13450 {rgb=(.7 .4 .4)} Face 10865 5269 5200 13451 {rgb=(.7 .4 .4)} Face 10866 5200 5227 13451 {rgb=(.7 .4 .4)} Face 10867 5227 5302 13451 {rgb=(.7 .4 .4)} Face 10868 5302 5269 13451 {rgb=(.7 .4 .4)} Face 10869 5234 5227 13452 {rgb=(.7 .4 .4)} Face 10870 5227 5112 13452 {rgb=(.7 .4 .4)} Face 10871 5112 5097 13452 {rgb=(.7 .4 .4)} Face 10872 5097 5234 13452 {rgb=(.7 .4 .4)} Face 10873 4951 5112 13453 {rgb=(.7 .4 .4)} Face 10874 5112 5115 13453 {rgb=(.7 .4 .4)} Face 10875 5115 4978 13453 {rgb=(.7 .4 .4)} Face 10876 4978 4951 13453 {rgb=(.7 .4 .4)} Face 10877 4859 4789 13454 {rgb=(.7 .4 .4)} Face 10878 4789 4978 13454 {rgb=(.7 .4 .4)} Face 10879 4978 5009 13454 {rgb=(.7 .4 .4)} Face 10880 5009 4859 13454 {rgb=(.7 .4 .4)} Face 10881 4895 4951 13455 {rgb=(.7 .4 .4)} Face 10882 4951 4761 13455 {rgb=(.7 .4 .4)} Face 10883 4761 4726 13455 {rgb=(.7 .4 .4)} Face 10884 4726 4895 13455 {rgb=(.7 .4 .4)} Face 10885 4651 4761 13456 {rgb=(.7 .4 .4)} Face 10886 4761 4789 13456 {rgb=(.7 .4 .4)} Face 10887 4789 4689 13456 {rgb=(.7 .4 .4)} Face 10888 4689 4651 13456 {rgb=(.7 .4 .4)} Face 10889 5574 5471 13457 {rgb=(.7 .4 .4)} Face 10890 5471 5468 13457 {rgb=(.7 .4 .4)} Face 10891 5468 5577 13457 {rgb=(.7 .4 .4)} Face 10892 5577 5574 13457 {rgb=(.7 .4 .4)} Face 10893 5482 5468 13458 {rgb=(.7 .4 .4)} Face 10894 5468 5366 13458 {rgb=(.7 .4 .4)} Face 10895 5366 5388 13458 {rgb=(.7 .4 .4)} Face 10896 5388 5482 13458 {rgb=(.7 .4 .4)} Face 10897 5218 5366 13459 {rgb=(.7 .4 .4)} Face 10898 5366 5370 13459 {rgb=(.7 .4 .4)} Face 10899 5370 5234 13459 {rgb=(.7 .4 .4)} Face 10900 5234 5218 13459 {rgb=(.7 .4 .4)} Face 10901 5563 5482 13460 {rgb=(.7 .4 .4)} Face 10902 5482 5481 13460 {rgb=(.7 .4 .4)} Face 10903 5481 5562 13460 {rgb=(.7 .4 .4)} Face 10904 5562 5563 13460 {rgb=(.7 .4 .4)} Face 10905 5331 5481 13461 {rgb=(.7 .4 .4)} Face 10906 5481 5388 13461 {rgb=(.7 .4 .4)} Face 10907 5388 5262 13461 {rgb=(.7 .4 .4)} Face 10908 5262 5331 13461 {rgb=(.7 .4 .4)} Face 10909 5262 5218 13462 {rgb=(.7 .4 .4)} Face 10910 5218 5072 13462 {rgb=(.7 .4 .4)} Face 10911 5072 5064 13462 {rgb=(.7 .4 .4)} Face 10912 5064 5262 13462 {rgb=(.7 .4 .4)} Face 10913 4866 5072 13463 {rgb=(.7 .4 .4)} Face 10914 5072 5097 13463 {rgb=(.7 .4 .4)} Face 10915 5097 4895 13463 {rgb=(.7 .4 .4)} Face 10916 4895 4866 13463 {rgb=(.7 .4 .4)} Face 10917 5379 5331 13464 {rgb=(.7 .4 .4)} Face 10918 5331 5079 13464 {rgb=(.7 .4 .4)} Face 10919 5079 5087 13464 {rgb=(.7 .4 .4)} Face 10920 5087 5379 13464 {rgb=(.7 .4 .4)} Face 10921 4828 5079 13465 {rgb=(.7 .4 .4)} Face 10922 5079 5064 13465 {rgb=(.7 .4 .4)} Face 10923 5064 4853 13465 {rgb=(.7 .4 .4)} Face 10924 4853 4828 13465 {rgb=(.7 .4 .4)} Face 10925 5094 5128 13466 {rgb=(.7 .4 .4)} Face 10926 5128 5398 13466 {rgb=(.7 .4 .4)} Face 10927 5398 5382 13466 {rgb=(.7 .4 .4)} Face 10928 5382 5094 13466 {rgb=(.7 .4 .4)} Face 10929 5654 5398 13467 {rgb=(.7 .4 .4)} Face 10930 5398 5416 13467 {rgb=(.7 .4 .4)} Face 10931 5416 5631 13467 {rgb=(.7 .4 .4)} Face 10932 5631 5654 13467 {rgb=(.7 .4 .4)} Face 10933 5425 5416 13468 {rgb=(.7 .4 .4)} Face 10934 5416 5183 13468 {rgb=(.7 .4 .4)} Face 10935 5183 5210 13468 {rgb=(.7 .4 .4)} Face 10936 5210 5425 13468 {rgb=(.7 .4 .4)} Face 10937 4983 5183 13469 {rgb=(.7 .4 .4)} Face 10938 5183 5128 13469 {rgb=(.7 .4 .4)} Face 10939 5128 4886 13469 {rgb=(.7 .4 .4)} Face 10940 4886 4983 13469 {rgb=(.7 .4 .4)} Face 10941 5231 5211 13470 {rgb=(.7 .4 .4)} Face 10942 5211 5426 13470 {rgb=(.7 .4 .4)} Face 10943 5426 5433 13470 {rgb=(.7 .4 .4)} Face 10944 5433 5231 13470 {rgb=(.7 .4 .4)} Face 10945 5620 5426 13471 {rgb=(.7 .4 .4)} Face 10946 5426 5415 13471 {rgb=(.7 .4 .4)} Face 10947 5415 5632 13471 {rgb=(.7 .4 .4)} Face 10948 5632 5620 13471 {rgb=(.7 .4 .4)} Face 10949 5414 5415 13472 {rgb=(.7 .4 .4)} Face 10950 5415 5181 13472 {rgb=(.7 .4 .4)} Face 10951 5181 5170 13472 {rgb=(.7 .4 .4)} Face 10952 5170 5414 13472 {rgb=(.7 .4 .4)} Face 10953 4966 5181 13473 {rgb=(.7 .4 .4)} Face 10954 5181 5211 13473 {rgb=(.7 .4 .4)} Face 10955 5211 5026 13473 {rgb=(.7 .4 .4)} Face 10956 5026 4966 13473 {rgb=(.7 .4 .4)} Face 10957 5166 5160 13474 {rgb=(.7 .4 .4)} Face 10958 5160 5409 13474 {rgb=(.7 .4 .4)} Face 10959 5409 5412 13474 {rgb=(.7 .4 .4)} Face 10960 5412 5166 13474 {rgb=(.7 .4 .4)} Face 10961 5642 5409 13475 {rgb=(.7 .4 .4)} Face 10962 5409 5403 13475 {rgb=(.7 .4 .4)} Face 10963 5403 5647 13475 {rgb=(.7 .4 .4)} Face 10964 5647 5642 13475 {rgb=(.7 .4 .4)} Face 10965 5410 5403 13476 {rgb=(.7 .4 .4)} Face 10966 5403 5150 13476 {rgb=(.7 .4 .4)} Face 10967 5150 5162 13476 {rgb=(.7 .4 .4)} Face 10968 5162 5410 13476 {rgb=(.7 .4 .4)} Face 10969 4898 5150 13477 {rgb=(.7 .4 .4)} Face 10970 5150 5160 13477 {rgb=(.7 .4 .4)} Face 10971 5160 4910 13477 {rgb=(.7 .4 .4)} Face 10972 4910 4898 13477 {rgb=(.7 .4 .4)} Face 10973 4853 4866 13478 {rgb=(.7 .4 .4)} Face 10974 4866 4630 13478 {rgb=(.7 .4 .4)} Face 10975 4630 4558 13478 {rgb=(.7 .4 .4)} Face 10976 4558 4853 13478 {rgb=(.7 .4 .4)} Face 10977 4451 4630 13479 {rgb=(.7 .4 .4)} Face 10978 4630 4648 13479 {rgb=(.7 .4 .4)} Face 10979 4648 4539 13479 {rgb=(.7 .4 .4)} Face 10980 4539 4451 13479 {rgb=(.7 .4 .4)} Face 10981 4582 4648 13480 {rgb=(.7 .4 .4)} Face 10982 4648 4726 13480 {rgb=(.7 .4 .4)} Face 10983 4726 4594 13480 {rgb=(.7 .4 .4)} Face 10984 4594 4582 13480 {rgb=(.7 .4 .4)} Face 10985 4817 4828 13481 {rgb=(.7 .4 .4)} Face 10986 4828 4532 13481 {rgb=(.7 .4 .4)} Face 10987 4532 4518 13481 {rgb=(.7 .4 .4)} Face 10988 4518 4817 13481 {rgb=(.7 .4 .4)} Face 10989 4404 4532 13482 {rgb=(.7 .4 .4)} Face 10990 4532 4558 13482 {rgb=(.7 .4 .4)} Face 10991 4558 4420 13482 {rgb=(.7 .4 .4)} Face 10992 4420 4404 13482 {rgb=(.7 .4 .4)} Face 10993 4531 4620 13483 {rgb=(.7 .4 .4)} Face 10994 4620 4886 13483 {rgb=(.7 .4 .4)} Face 10995 4886 4824 13483 {rgb=(.7 .4 .4)} Face 10996 4824 4531 13483 {rgb=(.7 .4 .4)} Face 10997 5032 4983 13484 {rgb=(.7 .4 .4)} Face 10998 4983 4765 13484 {rgb=(.7 .4 .4)} Face 10999 4765 4848 13484 {rgb=(.7 .4 .4)} Face 11000 4848 5032 13484 {rgb=(.7 .4 .4)} Face 11001 4449 4765 13485 {rgb=(.7 .4 .4)} Face 11002 4765 4620 13485 {rgb=(.7 .4 .4)} Face 11003 4620 4352 13485 {rgb=(.7 .4 .4)} Face 11004 4352 4449 13485 {rgb=(.7 .4 .4)} Face 11005 4871 4821 13486 {rgb=(.7 .4 .4)} Face 11006 4821 5026 13486 {rgb=(.7 .4 .4)} Face 11007 5026 5059 13486 {rgb=(.7 .4 .4)} Face 11008 5059 4871 13486 {rgb=(.7 .4 .4)} Face 11009 4934 4966 13487 {rgb=(.7 .4 .4)} Face 11010 4966 4717 13487 {rgb=(.7 .4 .4)} Face 11011 4717 4662 13487 {rgb=(.7 .4 .4)} Face 11012 4662 4934 13487 {rgb=(.7 .4 .4)} Face 11013 4405 4717 13488 {rgb=(.7 .4 .4)} Face 11014 4717 4821 13488 {rgb=(.7 .4 .4)} Face 11015 4821 4501 13488 {rgb=(.7 .4 .4)} Face 11016 4501 4405 13488 {rgb=(.7 .4 .4)} Face 11017 4652 4643 13489 {rgb=(.7 .4 .4)} Face 11018 4643 4910 13489 {rgb=(.7 .4 .4)} Face 11019 4910 4920 13489 {rgb=(.7 .4 .4)} Face 11020 4920 4652 13489 {rgb=(.7 .4 .4)} Face 11021 4919 4898 13490 {rgb=(.7 .4 .4)} Face 11022 4898 4640 13490 {rgb=(.7 .4 .4)} Face 11023 4640 4672 13490 {rgb=(.7 .4 .4)} Face 11024 4672 4919 13490 {rgb=(.7 .4 .4)} Face 11025 4381 4640 13491 {rgb=(.7 .4 .4)} Face 11026 4640 4643 13491 {rgb=(.7 .4 .4)} Face 11027 4643 4355 13491 {rgb=(.7 .4 .4)} Face 11028 4355 4381 13491 {rgb=(.7 .4 .4)} Face 11029 4347 4432 13492 {rgb=(.7 .4 .4)} Face 11030 4432 4487 13492 {rgb=(.7 .4 .4)} Face 11031 4487 4411 13492 {rgb=(.7 .4 .4)} Face 11032 4411 4347 13492 {rgb=(.7 .4 .4)} Face 11033 4420 4451 13493 {rgb=(.7 .4 .4)} Face 11034 4451 4432 13493 {rgb=(.7 .4 .4)} Face 11035 4432 4408 13493 {rgb=(.7 .4 .4)} Face 11036 4408 4420 13493 {rgb=(.7 .4 .4)} Face 11037 4305 4404 13494 {rgb=(.7 .4 .4)} Face 11038 4404 4408 13494 {rgb=(.7 .4 .4)} Face 11039 4408 4316 13494 {rgb=(.7 .4 .4)} Face 11040 4316 4305 13494 {rgb=(.7 .4 .4)} Face 11041 4125 4164 13495 {rgb=(.7 .4 .4)} Face 11042 4164 4352 13495 {rgb=(.7 .4 .4)} Face 11043 4352 4311 13495 {rgb=(.7 .4 .4)} Face 11044 4311 4125 13495 {rgb=(.7 .4 .4)} Face 11045 4527 4449 13496 {rgb=(.7 .4 .4)} Face 11046 4449 4230 13496 {rgb=(.7 .4 .4)} Face 11047 4230 4258 13496 {rgb=(.7 .4 .4)} Face 11048 4258 4527 13496 {rgb=(.7 .4 .4)} Face 11049 4028 4230 13497 {rgb=(.7 .4 .4)} Face 11050 4230 4164 13497 {rgb=(.7 .4 .4)} Face 11051 4164 4002 13497 {rgb=(.7 .4 .4)} Face 11052 4002 4028 13497 {rgb=(.7 .4 .4)} Face 11053 4297 4267 13498 {rgb=(.7 .4 .4)} Face 11054 4267 4501 13498 {rgb=(.7 .4 .4)} Face 11055 4501 4570 13498 {rgb=(.7 .4 .4)} Face 11056 4570 4297 13498 {rgb=(.7 .4 .4)} Face 11057 4356 4405 13499 {rgb=(.7 .4 .4)} Face 11058 4405 4177 13499 {rgb=(.7 .4 .4)} Face 11059 4177 4132 13499 {rgb=(.7 .4 .4)} Face 11060 4132 4356 13499 {rgb=(.7 .4 .4)} Face 11061 3996 4177 13500 {rgb=(.7 .4 .4)} Face 11062 4177 4267 13500 {rgb=(.7 .4 .4)} Face 11063 4267 4059 13500 {rgb=(.7 .4 .4)} Face 11064 4059 3996 13500 {rgb=(.7 .4 .4)} Face 11065 4129 4155 13501 {rgb=(.7 .4 .4)} Face 11066 4155 4355 13501 {rgb=(.7 .4 .4)} Face 11067 4355 4349 13501 {rgb=(.7 .4 .4)} Face 11068 4349 4129 13501 {rgb=(.7 .4 .4)} Face 11069 4429 4381 13502 {rgb=(.7 .4 .4)} Face 11070 4381 4202 13502 {rgb=(.7 .4 .4)} Face 11071 4202 4283 13502 {rgb=(.7 .4 .4)} Face 11072 4283 4429 13502 {rgb=(.7 .4 .4)} Face 11073 4004 4202 13503 {rgb=(.7 .4 .4)} Face 11074 4202 4155 13503 {rgb=(.7 .4 .4)} Face 11075 4155 3960 13503 {rgb=(.7 .4 .4)} Face 11076 3960 4004 13503 {rgb=(.7 .4 .4)} Face 11077 3989 3997 13504 {rgb=(.7 .4 .4)} Face 11078 3997 4195 13504 {rgb=(.7 .4 .4)} Face 11079 4195 4190 13504 {rgb=(.7 .4 .4)} Face 11080 4190 3989 13504 {rgb=(.7 .4 .4)} Face 11081 4304 4195 13505 {rgb=(.7 .4 .4)} Face 11082 4195 4098 13505 {rgb=(.7 .4 .4)} Face 11083 4098 4229 13505 {rgb=(.7 .4 .4)} Face 11084 4229 4304 13505 {rgb=(.7 .4 .4)} Face 11085 4024 4098 13506 {rgb=(.7 .4 .4)} Face 11086 4098 3997 13506 {rgb=(.7 .4 .4)} Face 11087 3997 3908 13506 {rgb=(.7 .4 .4)} Face 11088 3908 4024 13506 {rgb=(.7 .4 .4)} Face 11089 4163 4024 13507 {rgb=(.7 .4 .4)} Face 11090 4024 3974 13507 {rgb=(.7 .4 .4)} Face 11091 3974 4126 13507 {rgb=(.7 .4 .4)} Face 11092 4126 4163 13507 {rgb=(.7 .4 .4)} Face 11093 3959 3974 13508 {rgb=(.7 .4 .4)} Face 11094 3974 3846 13508 {rgb=(.7 .4 .4)} Face 11095 3846 3801 13508 {rgb=(.7 .4 .4)} Face 11096 3801 3959 13508 {rgb=(.7 .4 .4)} Face 11097 3705 3846 13509 {rgb=(.7 .4 .4)} Face 11098 3846 3908 13509 {rgb=(.7 .4 .4)} Face 11099 3908 3784 13509 {rgb=(.7 .4 .4)} Face 11100 3784 3705 13509 {rgb=(.7 .4 .4)} Face 11101 3822 3856 13510 {rgb=(.7 .4 .4)} Face 11102 3856 4002 13510 {rgb=(.7 .4 .4)} Face 11103 4002 3965 13510 {rgb=(.7 .4 .4)} Face 11104 3965 3822 13510 {rgb=(.7 .4 .4)} Face 11105 4058 4028 13511 {rgb=(.7 .4 .4)} Face 11106 4028 3891 13511 {rgb=(.7 .4 .4)} Face 11107 3891 3913 13511 {rgb=(.7 .4 .4)} Face 11108 3913 4058 13511 {rgb=(.7 .4 .4)} Face 11109 3779 3891 13512 {rgb=(.7 .4 .4)} Face 11110 3891 3856 13512 {rgb=(.7 .4 .4)} Face 11111 3856 3712 13512 {rgb=(.7 .4 .4)} Face 11112 3712 3779 13512 {rgb=(.7 .4 .4)} Face 11113 3929 3893 13513 {rgb=(.7 .4 .4)} Face 11114 3893 4059 13513 {rgb=(.7 .4 .4)} Face 11115 4059 4093 13513 {rgb=(.7 .4 .4)} Face 11116 4093 3929 13513 {rgb=(.7 .4 .4)} Face 11117 3945 3996 13514 {rgb=(.7 .4 .4)} Face 11118 3996 3817 13514 {rgb=(.7 .4 .4)} Face 11119 3817 3753 13514 {rgb=(.7 .4 .4)} Face 11120 3753 3945 13514 {rgb=(.7 .4 .4)} Face 11121 3671 3817 13515 {rgb=(.7 .4 .4)} Face 11122 3817 3893 13515 {rgb=(.7 .4 .4)} Face 11123 3893 3734 13515 {rgb=(.7 .4 .4)} Face 11124 3734 3671 13515 {rgb=(.7 .4 .4)} Face 11125 3735 3732 13516 {rgb=(.7 .4 .4)} Face 11126 3732 3960 13516 {rgb=(.7 .4 .4)} Face 11127 3960 3939 13516 {rgb=(.7 .4 .4)} Face 11128 3939 3735 13516 {rgb=(.7 .4 .4)} Face 11129 3548 3741 13517 {rgb=(.7 .4 .4)} Face 11130 3741 3732 13517 {rgb=(.7 .4 .4)} Face 11131 3732 3582 13517 {rgb=(.7 .4 .4)} Face 11132 3582 3548 13517 {rgb=(.7 .4 .4)} Face 11133 4390 4391 13518 {rgb=(.7 .4 .4)} Face 11134 4391 4153 13518 {rgb=(.7 .4 .4)} Face 11135 4153 4174 13518 {rgb=(.7 .4 .4)} Face 11136 4174 4390 13518 {rgb=(.7 .4 .4)} Face 11137 3909 4153 13519 {rgb=(.7 .4 .4)} Face 11138 4153 4148 13519 {rgb=(.7 .4 .4)} Face 11139 4148 3894 13519 {rgb=(.7 .4 .4)} Face 11140 3894 3909 13519 {rgb=(.7 .4 .4)} Face 11141 4412 4395 13520 {rgb=(.7 .4 .4)} Face 11142 4395 4217 13520 {rgb=(.7 .4 .4)} Face 11143 4217 4274 13520 {rgb=(.7 .4 .4)} Face 11144 4274 4412 13520 {rgb=(.7 .4 .4)} Face 11145 4007 4217 13521 {rgb=(.7 .4 .4)} Face 11146 4217 4174 13521 {rgb=(.7 .4 .4)} Face 11147 4174 3946 13521 {rgb=(.7 .4 .4)} Face 11148 3946 4007 13521 {rgb=(.7 .4 .4)} Face 11149 3580 3592 13522 {rgb=(.7 .4 .4)} Face 11150 3592 3894 13522 {rgb=(.7 .4 .4)} Face 11151 3894 3884 13522 {rgb=(.7 .4 .4)} Face 11152 3884 3580 13522 {rgb=(.7 .4 .4)} Face 11153 3946 3909 13523 {rgb=(.7 .4 .4)} Face 11154 3909 3622 13523 {rgb=(.7 .4 .4)} Face 11155 3622 3664 13523 {rgb=(.7 .4 .4)} Face 11156 3664 3946 13523 {rgb=(.7 .4 .4)} Face 11157 3410 3622 13524 {rgb=(.7 .4 .4)} Face 11158 3622 3592 13524 {rgb=(.7 .4 .4)} Face 11159 3592 3425 13524 {rgb=(.7 .4 .4)} Face 11160 3425 3410 13524 {rgb=(.7 .4 .4)} Face 11161 4069 4007 13525 {rgb=(.7 .4 .4)} Face 11162 4007 3733 13525 {rgb=(.7 .4 .4)} Face 11163 3733 3849 13525 {rgb=(.7 .4 .4)} Face 11164 3849 4069 13525 {rgb=(.7 .4 .4)} Face 11165 3528 3733 13526 {rgb=(.7 .4 .4)} Face 11166 3733 3664 13526 {rgb=(.7 .4 .4)} Face 11167 3664 3437 13526 {rgb=(.7 .4 .4)} Face 11168 3437 3528 13526 {rgb=(.7 .4 .4)} Face 11169 3437 3410 13527 {rgb=(.7 .4 .4)} Face 11170 3410 3233 13527 {rgb=(.7 .4 .4)} Face 11171 3233 3212 13527 {rgb=(.7 .4 .4)} Face 11172 3212 3437 13527 {rgb=(.7 .4 .4)} Face 11173 3072 3233 13528 {rgb=(.7 .4 .4)} Face 11174 3233 3367 13528 {rgb=(.7 .4 .4)} Face 11175 3367 3252 13528 {rgb=(.7 .4 .4)} Face 11176 3252 3072 13528 {rgb=(.7 .4 .4)} Face 11177 3423 3367 13529 {rgb=(.7 .4 .4)} Face 11178 3367 3425 13529 {rgb=(.7 .4 .4)} Face 11179 3425 3436 13529 {rgb=(.7 .4 .4)} Face 11180 3436 3423 13529 {rgb=(.7 .4 .4)} Face 11181 3138 3315 13530 {rgb=(.7 .4 .4)} Face 11182 3315 3212 13530 {rgb=(.7 .4 .4)} Face 11183 3212 3023 13530 {rgb=(.7 .4 .4)} Face 11184 3023 3138 13530 {rgb=(.7 .4 .4)} Face 11185 3598 3528 13531 {rgb=(.7 .4 .4)} Face 11186 3528 3315 13531 {rgb=(.7 .4 .4)} Face 11187 3315 3405 13531 {rgb=(.7 .4 .4)} Face 11188 3405 3598 13531 {rgb=(.7 .4 .4)} Face 11189 4463 4442 13532 {rgb=(.7 .4 .4)} Face 11190 4442 4310 13532 {rgb=(.7 .4 .4)} Face 11191 4310 4337 13532 {rgb=(.7 .4 .4)} Face 11192 4337 4463 13532 {rgb=(.7 .4 .4)} Face 11193 4133 4310 13533 {rgb=(.7 .4 .4)} Face 11194 4310 4274 13533 {rgb=(.7 .4 .4)} Face 11195 4274 4069 13533 {rgb=(.7 .4 .4)} Face 11196 4069 4133 13533 {rgb=(.7 .4 .4)} Face 11197 4180 4133 13534 {rgb=(.7 .4 .4)} Face 11198 4133 3917 13534 {rgb=(.7 .4 .4)} Face 11199 3917 3966 13534 {rgb=(.7 .4 .4)} Face 11200 3966 4180 13534 {rgb=(.7 .4 .4)} Face 11201 3680 3917 13535 {rgb=(.7 .4 .4)} Face 11202 3917 3849 13535 {rgb=(.7 .4 .4)} Face 11203 3849 3598 13535 {rgb=(.7 .4 .4)} Face 11204 3598 3680 13535 {rgb=(.7 .4 .4)} Face 11205 3700 3680 13536 {rgb=(.7 .4 .4)} Face 11206 3680 3474 13536 {rgb=(.7 .4 .4)} Face 11207 3474 3486 13536 {rgb=(.7 .4 .4)} Face 11208 3486 3700 13536 {rgb=(.7 .4 .4)} Face 11209 3295 3474 13537 {rgb=(.7 .4 .4)} Face 11210 3474 3405 13537 {rgb=(.7 .4 .4)} Face 11211 3405 3221 13537 {rgb=(.7 .4 .4)} Face 11212 3221 3295 13537 {rgb=(.7 .4 .4)} Face 11213 2993 3096 13538 {rgb=(.7 .4 .4)} Face 11214 3096 3221 13538 {rgb=(.7 .4 .4)} Face 11215 3221 3138 13538 {rgb=(.7 .4 .4)} Face 11216 3138 2993 13538 {rgb=(.7 .4 .4)} Face 11217 3344 3295 13539 {rgb=(.7 .4 .4)} Face 11218 3295 3177 13539 {rgb=(.7 .4 .4)} Face 11219 3177 3228 13539 {rgb=(.7 .4 .4)} Face 11220 3228 3344 13539 {rgb=(.7 .4 .4)} Face 11221 3056 3177 13540 {rgb=(.7 .4 .4)} Face 11222 3177 3096 13540 {rgb=(.7 .4 .4)} Face 11223 3096 2955 13540 {rgb=(.7 .4 .4)} Face 11224 2955 3056 13540 {rgb=(.7 .4 .4)} Face 11225 3847 3779 13541 {rgb=(.7 .4 .4)} Face 11226 3779 3740 13541 {rgb=(.7 .4 .4)} Face 11227 3740 3844 13541 {rgb=(.7 .4 .4)} Face 11228 3844 3847 13541 {rgb=(.7 .4 .4)} Face 11229 3686 3740 13542 {rgb=(.7 .4 .4)} Face 11230 3740 3615 13542 {rgb=(.7 .4 .4)} Face 11231 3615 3542 13542 {rgb=(.7 .4 .4)} Face 11232 3542 3686 13542 {rgb=(.7 .4 .4)} Face 11233 3561 3615 13543 {rgb=(.7 .4 .4)} Face 11234 3615 3712 13543 {rgb=(.7 .4 .4)} Face 11235 3712 3670 13543 {rgb=(.7 .4 .4)} Face 11236 3670 3561 13543 {rgb=(.7 .4 .4)} Face 11237 3763 3686 13544 {rgb=(.7 .4 .4)} Face 11238 3686 3605 13544 {rgb=(.7 .4 .4)} Face 11239 3605 3681 13544 {rgb=(.7 .4 .4)} Face 11240 3681 3763 13544 {rgb=(.7 .4 .4)} Face 11241 3579 3605 13545 {rgb=(.7 .4 .4)} Face 11242 3605 3469 13545 {rgb=(.7 .4 .4)} Face 11243 3469 3462 13545 {rgb=(.7 .4 .4)} Face 11244 3462 3579 13545 {rgb=(.7 .4 .4)} Face 11245 3377 3469 13546 {rgb=(.7 .4 .4)} Face 11246 3469 3542 13546 {rgb=(.7 .4 .4)} Face 11247 3542 3445 13546 {rgb=(.7 .4 .4)} Face 11248 3445 3377 13546 {rgb=(.7 .4 .4)} Face 11249 3647 3579 13547 {rgb=(.7 .4 .4)} Face 11250 3579 3593 13547 {rgb=(.7 .4 .4)} Face 11251 3593 3648 13547 {rgb=(.7 .4 .4)} Face 11252 3648 3647 13547 {rgb=(.7 .4 .4)} Face 11253 3651 3593 13548 {rgb=(.7 .4 .4)} Face 11254 3593 3522 13548 {rgb=(.7 .4 .4)} Face 11255 3522 3583 13548 {rgb=(.7 .4 .4)} Face 11256 3583 3651 13548 {rgb=(.7 .4 .4)} Face 11257 3451 3522 13549 {rgb=(.7 .4 .4)} Face 11258 3522 3462 13549 {rgb=(.7 .4 .4)} Face 11259 3462 3379 13549 {rgb=(.7 .4 .4)} Face 11260 3379 3451 13549 {rgb=(.7 .4 .4)} Face 11261 3687 3651 13550 {rgb=(.7 .4 .4)} Face 11262 3651 3734 13550 {rgb=(.7 .4 .4)} Face 11263 3734 3786 13550 {rgb=(.7 .4 .4)} Face 11264 3786 3687 13550 {rgb=(.7 .4 .4)} Face 11265 3626 3671 13551 {rgb=(.7 .4 .4)} Face 11266 3671 3583 13551 {rgb=(.7 .4 .4)} Face 11267 3583 3541 13551 {rgb=(.7 .4 .4)} Face 11268 3541 3626 13551 {rgb=(.7 .4 .4)} Face 11269 3590 3608 13552 {rgb=(.7 .4 .4)} Face 11270 3608 3784 13552 {rgb=(.7 .4 .4)} Face 11271 3784 3762 13552 {rgb=(.7 .4 .4)} Face 11272 3762 3590 13552 {rgb=(.7 .4 .4)} Face 11273 3662 3705 13553 {rgb=(.7 .4 .4)} Face 11274 3705 3608 13553 {rgb=(.7 .4 .4)} Face 11275 3608 3567 13553 {rgb=(.7 .4 .4)} Face 11276 3567 3662 13553 {rgb=(.7 .4 .4)} Face 11277 3264 3268 13554 {rgb=(.7 .4 .4)} Face 11278 3268 3388 13554 {rgb=(.7 .4 .4)} Face 11279 3388 3382 13554 {rgb=(.7 .4 .4)} Face 11280 3382 3264 13554 {rgb=(.7 .4 .4)} Face 11281 3419 3388 13555 {rgb=(.7 .4 .4)} Face 11282 3388 3299 13555 {rgb=(.7 .4 .4)} Face 11283 3299 3337 13555 {rgb=(.7 .4 .4)} Face 11284 3337 3419 13555 {rgb=(.7 .4 .4)} Face 11285 3197 3299 13556 {rgb=(.7 .4 .4)} Face 11286 3299 3268 13556 {rgb=(.7 .4 .4)} Face 11287 3268 3173 13556 {rgb=(.7 .4 .4)} Face 11288 3173 3197 13556 {rgb=(.7 .4 .4)} Face 11289 3064 3098 13557 {rgb=(.7 .4 .4)} Face 11290 3098 3248 13557 {rgb=(.7 .4 .4)} Face 11291 3248 3197 13557 {rgb=(.7 .4 .4)} Face 11292 3197 3064 13557 {rgb=(.7 .4 .4)} Face 11293 3336 3248 13558 {rgb=(.7 .4 .4)} Face 11294 3248 3323 13558 {rgb=(.7 .4 .4)} Face 11295 3323 3416 13558 {rgb=(.7 .4 .4)} Face 11296 3416 3336 13558 {rgb=(.7 .4 .4)} Face 11297 3371 3323 13559 {rgb=(.7 .4 .4)} Face 11298 3323 3161 13559 {rgb=(.7 .4 .4)} Face 11299 3161 3207 13559 {rgb=(.7 .4 .4)} Face 11300 3207 3371 13559 {rgb=(.7 .4 .4)} Face 11301 3143 3264 13560 {rgb=(.7 .4 .4)} Face 11302 3264 3228 13560 {rgb=(.7 .4 .4)} Face 11303 3228 3111 13560 {rgb=(.7 .4 .4)} Face 11304 3111 3143 13560 {rgb=(.7 .4 .4)} Face 11305 3486 3344 13561 {rgb=(.7 .4 .4)} Face 11306 3344 3382 13561 {rgb=(.7 .4 .4)} Face 11307 3382 3509 13561 {rgb=(.7 .4 .4)} Face 11308 3509 3486 13561 {rgb=(.7 .4 .4)} Face 11309 5640 5410 13562 {rgb=(.7 .4 .4)} Face 11310 5410 5417 13562 {rgb=(.7 .4 .4)} Face 11311 5417 5630 13562 {rgb=(.7 .4 .4)} Face 11312 5630 5640 13562 {rgb=(.7 .4 .4)} Face 11313 5421 5417 13563 {rgb=(.7 .4 .4)} Face 11314 5417 5186 13563 {rgb=(.7 .4 .4)} Face 11315 5186 5199 13563 {rgb=(.7 .4 .4)} Face 11316 5199 5421 13563 {rgb=(.7 .4 .4)} Face 11317 4974 5186 13564 {rgb=(.7 .4 .4)} Face 11318 5186 5162 13564 {rgb=(.7 .4 .4)} Face 11319 5162 4919 13564 {rgb=(.7 .4 .4)} Face 11320 4919 4974 13564 {rgb=(.7 .4 .4)} Face 11321 4996 4974 13565 {rgb=(.7 .4 .4)} Face 11322 4974 4735 13565 {rgb=(.7 .4 .4)} Face 11323 4735 4754 13565 {rgb=(.7 .4 .4)} Face 11324 4754 4996 13565 {rgb=(.7 .4 .4)} Face 11325 4475 4735 13566 {rgb=(.7 .4 .4)} Face 11326 4735 4672 13566 {rgb=(.7 .4 .4)} Face 11327 4672 4429 13566 {rgb=(.7 .4 .4)} Face 11328 4429 4475 13566 {rgb=(.7 .4 .4)} Face 11329 4491 4475 13567 {rgb=(.7 .4 .4)} Face 11330 4475 4283 13567 {rgb=(.7 .4 .4)} Face 11331 4283 4287 13567 {rgb=(.7 .4 .4)} Face 11332 4287 4491 13567 {rgb=(.7 .4 .4)} Face 11333 5195 5201 13568 {rgb=(.7 .4 .4)} Face 11334 5201 5422 13568 {rgb=(.7 .4 .4)} Face 11335 5422 5419 13568 {rgb=(.7 .4 .4)} Face 11336 5419 5195 13568 {rgb=(.7 .4 .4)} Face 11337 5624 5422 13569 {rgb=(.7 .4 .4)} Face 11338 5422 5428 13569 {rgb=(.7 .4 .4)} Face 11339 5428 5618 13569 {rgb=(.7 .4 .4)} Face 11340 5618 5624 13569 {rgb=(.7 .4 .4)} Face 11341 5434 5428 13570 {rgb=(.7 .4 .4)} Face 11342 5428 5219 13570 {rgb=(.7 .4 .4)} Face 11343 5219 5232 13570 {rgb=(.7 .4 .4)} Face 11344 5232 5434 13570 {rgb=(.7 .4 .4)} Face 11345 5031 5219 13571 {rgb=(.7 .4 .4)} Face 11346 5219 5201 13571 {rgb=(.7 .4 .4)} Face 11347 5201 5003 13571 {rgb=(.7 .4 .4)} Face 11348 5003 5031 13571 {rgb=(.7 .4 .4)} Face 11349 5612 5434 13572 {rgb=(.7 .4 .4)} Face 11350 5434 5437 13572 {rgb=(.7 .4 .4)} Face 11351 5437 5609 13572 {rgb=(.7 .4 .4)} Face 11352 5609 5612 13572 {rgb=(.7 .4 .4)} Face 11353 5447 5437 13573 {rgb=(.7 .4 .4)} Face 11354 5437 5241 13573 {rgb=(.7 .4 .4)} Face 11355 5241 5268 13573 {rgb=(.7 .4 .4)} Face 11356 5268 5447 13573 {rgb=(.7 .4 .4)} Face 11357 5085 5241 13574 {rgb=(.7 .4 .4)} Face 11358 5241 5232 13574 {rgb=(.7 .4 .4)} Face 11359 5232 5060 13574 {rgb=(.7 .4 .4)} Face 11360 5060 5085 13574 {rgb=(.7 .4 .4)} Face 11361 5598 5447 13575 {rgb=(.7 .4 .4)} Face 11362 5447 5455 13575 {rgb=(.7 .4 .4)} Face 11363 5455 5590 13575 {rgb=(.7 .4 .4)} Face 11364 5590 5598 13575 {rgb=(.7 .4 .4)} Face 11365 5404 5455 13576 {rgb=(.7 .4 .4)} Face 11366 5455 5300 13576 {rgb=(.7 .4 .4)} Face 11367 5300 5294 13576 {rgb=(.7 .4 .4)} Face 11368 5294 5404 13576 {rgb=(.7 .4 .4)} Face 11369 5189 5300 13577 {rgb=(.7 .4 .4)} Face 11370 5300 5268 13577 {rgb=(.7 .4 .4)} Face 11371 5268 5136 13577 {rgb=(.7 .4 .4)} Face 11372 5136 5189 13577 {rgb=(.7 .4 .4)} Face 11373 4746 4763 13578 {rgb=(.7 .4 .4)} Face 11374 4763 5003 13578 {rgb=(.7 .4 .4)} Face 11375 5003 4987 13578 {rgb=(.7 .4 .4)} Face 11376 4987 4746 13578 {rgb=(.7 .4 .4)} Face 11377 5060 5031 13579 {rgb=(.7 .4 .4)} Face 11378 5031 4813 13579 {rgb=(.7 .4 .4)} Face 11379 4813 4872 13579 {rgb=(.7 .4 .4)} Face 11380 4872 5060 13579 {rgb=(.7 .4 .4)} Face 11381 4550 4813 13580 {rgb=(.7 .4 .4)} Face 11382 4813 4763 13580 {rgb=(.7 .4 .4)} Face 11383 4763 4467 13580 {rgb=(.7 .4 .4)} Face 11384 4467 4550 13580 {rgb=(.7 .4 .4)} Face 11385 5136 5085 13581 {rgb=(.7 .4 .4)} Face 11386 5085 4935 13581 {rgb=(.7 .4 .4)} Face 11387 4935 5017 13581 {rgb=(.7 .4 .4)} Face 11388 5017 5136 13581 {rgb=(.7 .4 .4)} Face 11389 4771 4935 13582 {rgb=(.7 .4 .4)} Face 11390 4935 4872 13582 {rgb=(.7 .4 .4)} Face 11391 4872 4664 13582 {rgb=(.7 .4 .4)} Face 11392 4664 4771 13582 {rgb=(.7 .4 .4)} Face 11393 5294 5189 13583 {rgb=(.7 .4 .4)} Face 11394 5189 5135 13583 {rgb=(.7 .4 .4)} Face 11395 5135 5213 13583 {rgb=(.7 .4 .4)} Face 11396 5213 5294 13583 {rgb=(.7 .4 .4)} Face 11397 5080 5135 13584 {rgb=(.7 .4 .4)} Face 11398 5135 5017 13584 {rgb=(.7 .4 .4)} Face 11399 5017 4922 13584 {rgb=(.7 .4 .4)} Face 11400 4922 5080 13584 {rgb=(.7 .4 .4)} Face 11401 4287 4288 13585 {rgb=(.7 .4 .4)} Face 11402 4288 4467 13585 {rgb=(.7 .4 .4)} Face 11403 4467 4484 13585 {rgb=(.7 .4 .4)} Face 11404 4484 4287 13585 {rgb=(.7 .4 .4)} Face 11405 4664 4550 13586 {rgb=(.7 .4 .4)} Face 11406 4550 4342 13586 {rgb=(.7 .4 .4)} Face 11407 4342 4444 13586 {rgb=(.7 .4 .4)} Face 11408 4444 4664 13586 {rgb=(.7 .4 .4)} Face 11409 4243 4342 13587 {rgb=(.7 .4 .4)} Face 11410 4342 4288 13587 {rgb=(.7 .4 .4)} Face 11411 4288 4139 13587 {rgb=(.7 .4 .4)} Face 11412 4139 4243 13587 {rgb=(.7 .4 .4)} Face 11413 4922 4771 13588 {rgb=(.7 .4 .4)} Face 11414 4771 4628 13588 {rgb=(.7 .4 .4)} Face 11415 4628 4844 13588 {rgb=(.7 .4 .4)} Face 11416 4844 4922 13588 {rgb=(.7 .4 .4)} Face 11417 4551 4628 13589 {rgb=(.7 .4 .4)} Face 11418 4628 4444 13589 {rgb=(.7 .4 .4)} Face 11419 4444 4353 13589 {rgb=(.7 .4 .4)} Face 11420 4353 4551 13589 {rgb=(.7 .4 .4)} Face 11421 5213 5080 13590 {rgb=(.7 .4 .4)} Face 11422 5080 5042 13590 {rgb=(.7 .4 .4)} Face 11423 5042 5194 13590 {rgb=(.7 .4 .4)} Face 11424 5194 5213 13590 {rgb=(.7 .4 .4)} Face 11425 5040 5042 13591 {rgb=(.7 .4 .4)} Face 11426 5042 4844 13591 {rgb=(.7 .4 .4)} Face 11427 4844 4811 13591 {rgb=(.7 .4 .4)} Face 11428 4811 5040 13591 {rgb=(.7 .4 .4)} Face 11429 4353 4243 13592 {rgb=(.7 .4 .4)} Face 11430 4243 4172 13592 {rgb=(.7 .4 .4)} Face 11431 4172 4326 13592 {rgb=(.7 .4 .4)} Face 11432 4326 4353 13592 {rgb=(.7 .4 .4)} Face 11433 4150 4172 13593 {rgb=(.7 .4 .4)} Face 11434 4172 4039 13593 {rgb=(.7 .4 .4)} Face 11435 4039 4003 13593 {rgb=(.7 .4 .4)} Face 11436 4003 4150 13593 {rgb=(.7 .4 .4)} Face 11437 4811 4551 13594 {rgb=(.7 .4 .4)} Face 11438 4551 4563 13594 {rgb=(.7 .4 .4)} Face 11439 4563 4860 13594 {rgb=(.7 .4 .4)} Face 11440 4860 4811 13594 {rgb=(.7 .4 .4)} Face 11441 4593 4563 13595 {rgb=(.7 .4 .4)} Face 11442 4563 4326 13595 {rgb=(.7 .4 .4)} Face 11443 4326 4322 13595 {rgb=(.7 .4 .4)} Face 11444 4322 4593 13595 {rgb=(.7 .4 .4)} Face 11445 5194 5040 13596 {rgb=(.7 .4 .4)} Face 11446 5040 5071 13596 {rgb=(.7 .4 .4)} Face 11447 5071 5229 13596 {rgb=(.7 .4 .4)} Face 11448 5229 5194 13596 {rgb=(.7 .4 .4)} Face 11449 5057 5071 13597 {rgb=(.7 .4 .4)} Face 11450 5071 4860 13597 {rgb=(.7 .4 .4)} Face 11451 4860 4845 13597 {rgb=(.7 .4 .4)} Face 11452 4845 5057 13597 {rgb=(.7 .4 .4)} Face 11453 4322 4150 13598 {rgb=(.7 .4 .4)} Face 11454 4150 4171 13598 {rgb=(.7 .4 .4)} Face 11455 4171 4345 13598 {rgb=(.7 .4 .4)} Face 11456 4345 4322 13598 {rgb=(.7 .4 .4)} Face 11457 4275 4171 13599 {rgb=(.7 .4 .4)} Face 11458 4171 4015 13599 {rgb=(.7 .4 .4)} Face 11459 4015 4100 13599 {rgb=(.7 .4 .4)} Face 11460 4100 4275 13599 {rgb=(.7 .4 .4)} Face 11461 4845 4593 13600 {rgb=(.7 .4 .4)} Face 11462 4593 4637 13600 {rgb=(.7 .4 .4)} Face 11463 4637 4873 13600 {rgb=(.7 .4 .4)} Face 11464 4873 4845 13600 {rgb=(.7 .4 .4)} Face 11465 4718 4637 13601 {rgb=(.7 .4 .4)} Face 11466 4637 4345 13601 {rgb=(.7 .4 .4)} Face 11467 4345 4430 13601 {rgb=(.7 .4 .4)} Face 11468 4430 4718 13601 {rgb=(.7 .4 .4)} Face 11469 5090 5057 13602 {rgb=(.7 .4 .4)} Face 11470 5057 4873 13602 {rgb=(.7 .4 .4)} Face 11471 4873 4900 13602 {rgb=(.7 .4 .4)} Face 11472 4900 5090 13602 {rgb=(.7 .4 .4)} Face 11473 4430 4275 13603 {rgb=(.7 .4 .4)} Face 11474 4275 4414 13603 {rgb=(.7 .4 .4)} Face 11475 4414 4634 13603 {rgb=(.7 .4 .4)} Face 11476 4634 4430 13603 {rgb=(.7 .4 .4)} Face 11477 4673 4414 13604 {rgb=(.7 .4 .4)} Face 11478 4414 4279 13604 {rgb=(.7 .4 .4)} Face 11479 4279 4455 13604 {rgb=(.7 .4 .4)} Face 11480 4455 4673 13604 {rgb=(.7 .4 .4)} Face 11481 4900 4718 13605 {rgb=(.7 .4 .4)} Face 11482 4718 4836 13605 {rgb=(.7 .4 .4)} Face 11483 4836 4968 13605 {rgb=(.7 .4 .4)} Face 11484 4968 4900 13605 {rgb=(.7 .4 .4)} Face 11485 4954 4836 13606 {rgb=(.7 .4 .4)} Face 11486 4836 4634 13606 {rgb=(.7 .4 .4)} Face 11487 4634 4837 13606 {rgb=(.7 .4 .4)} Face 11488 4837 4954 13606 {rgb=(.7 .4 .4)} Face 11489 5169 5090 13607 {rgb=(.7 .4 .4)} Face 11490 5090 4968 13607 {rgb=(.7 .4 .4)} Face 11491 4968 5065 13607 {rgb=(.7 .4 .4)} Face 11492 5065 5169 13607 {rgb=(.7 .4 .4)} Face 11493 4837 4673 13608 {rgb=(.7 .4 .4)} Face 11494 4673 4906 13608 {rgb=(.7 .4 .4)} Face 11495 4906 5005 13608 {rgb=(.7 .4 .4)} Face 11496 5005 4837 13608 {rgb=(.7 .4 .4)} Face 11497 5142 4906 13609 {rgb=(.7 .4 .4)} Face 11498 4906 4797 13609 {rgb=(.7 .4 .4)} Face 11499 4797 5089 13609 {rgb=(.7 .4 .4)} Face 11500 5089 5142 13609 {rgb=(.7 .4 .4)} Face 11501 5065 4954 13610 {rgb=(.7 .4 .4)} Face 11502 4954 5096 13610 {rgb=(.7 .4 .4)} Face 11503 5096 5171 13610 {rgb=(.7 .4 .4)} Face 11504 5171 5065 13610 {rgb=(.7 .4 .4)} Face 11505 5243 5096 13611 {rgb=(.7 .4 .4)} Face 11506 5096 5005 13611 {rgb=(.7 .4 .4)} Face 11507 5005 5184 13611 {rgb=(.7 .4 .4)} Face 11508 5184 5243 13611 {rgb=(.7 .4 .4)} Face 11509 5229 5169 13612 {rgb=(.7 .4 .4)} Face 11510 5169 5226 13612 {rgb=(.7 .4 .4)} Face 11511 5226 5306 13612 {rgb=(.7 .4 .4)} Face 11512 5306 5229 13612 {rgb=(.7 .4 .4)} Face 11513 5330 5226 13613 {rgb=(.7 .4 .4)} Face 11514 5226 5171 13613 {rgb=(.7 .4 .4)} Face 11515 5171 5296 13613 {rgb=(.7 .4 .4)} Face 11516 5296 5330 13613 {rgb=(.7 .4 .4)} Face 11517 5184 5142 13614 {rgb=(.7 .4 .4)} Face 11518 5142 5378 13614 {rgb=(.7 .4 .4)} Face 11519 5378 5405 13614 {rgb=(.7 .4 .4)} Face 11520 5405 5184 13614 {rgb=(.7 .4 .4)} Face 11521 5627 5378 13615 {rgb=(.7 .4 .4)} Face 11522 5378 5362 13615 {rgb=(.7 .4 .4)} Face 11523 5362 5634 13615 {rgb=(.7 .4 .4)} Face 11524 5634 5627 13615 {rgb=(.7 .4 .4)} Face 11525 5296 5243 13616 {rgb=(.7 .4 .4)} Face 11526 5243 5432 13616 {rgb=(.7 .4 .4)} Face 11527 5432 5452 13616 {rgb=(.7 .4 .4)} Face 11528 5452 5296 13616 {rgb=(.7 .4 .4)} Face 11529 5599 5432 13617 {rgb=(.7 .4 .4)} Face 11530 5432 5405 13617 {rgb=(.7 .4 .4)} Face 11531 5405 5613 13617 {rgb=(.7 .4 .4)} Face 11532 5613 5599 13617 {rgb=(.7 .4 .4)} Face 11533 5306 5330 13618 {rgb=(.7 .4 .4)} Face 11534 5330 5461 13618 {rgb=(.7 .4 .4)} Face 11535 5461 5411 13618 {rgb=(.7 .4 .4)} Face 11536 5411 5306 13618 {rgb=(.7 .4 .4)} Face 11537 5584 5461 13619 {rgb=(.7 .4 .4)} Face 11538 5461 5452 13619 {rgb=(.7 .4 .4)} Face 11539 5452 5593 13619 {rgb=(.7 .4 .4)} Face 11540 5593 5584 13619 {rgb=(.7 .4 .4)} Face 11541 3660 3628 13620 {rgb=(.7 .4 .4)} Face 11542 3628 3907 13620 {rgb=(.7 .4 .4)} Face 11543 3907 3932 13620 {rgb=(.7 .4 .4)} Face 11544 3932 3660 13620 {rgb=(.7 .4 .4)} Face 11545 4175 3907 13621 {rgb=(.7 .4 .4)} Face 11546 3907 3878 13621 {rgb=(.7 .4 .4)} Face 11547 3878 4157 13621 {rgb=(.7 .4 .4)} Face 11548 4157 4175 13621 {rgb=(.7 .4 .4)} Face 11549 3864 3878 13622 {rgb=(.7 .4 .4)} Face 11550 3878 3591 13622 {rgb=(.7 .4 .4)} Face 11551 3591 3576 13622 {rgb=(.7 .4 .4)} Face 11552 3576 3864 13622 {rgb=(.7 .4 .4)} Face 11553 3415 3591 13623 {rgb=(.7 .4 .4)} Face 11554 3591 3628 13623 {rgb=(.7 .4 .4)} Face 11555 3628 3418 13623 {rgb=(.7 .4 .4)} Face 11556 3418 3415 13623 {rgb=(.7 .4 .4)} Face 11557 3339 3289 13624 {rgb=(.7 .4 .4)} Face 11558 3289 3418 13624 {rgb=(.7 .4 .4)} Face 11559 3418 3485 13624 {rgb=(.7 .4 .4)} Face 11560 3485 3339 13624 {rgb=(.7 .4 .4)} Face 11561 3438 3415 13625 {rgb=(.7 .4 .4)} Face 11562 3415 3365 13625 {rgb=(.7 .4 .4)} Face 11563 3365 3424 13625 {rgb=(.7 .4 .4)} Face 11564 3424 3438 13625 {rgb=(.7 .4 .4)} Face 11565 3252 3365 13626 {rgb=(.7 .4 .4)} Face 11566 3365 3230 13626 {rgb=(.7 .4 .4)} Face 11567 3230 3089 13626 {rgb=(.7 .4 .4)} Face 11568 3089 3252 13626 {rgb=(.7 .4 .4)} Face 11569 3110 3230 13627 {rgb=(.7 .4 .4)} Face 11570 3230 3289 13627 {rgb=(.7 .4 .4)} Face 11571 3289 3176 13627 {rgb=(.7 .4 .4)} Face 11572 3176 3110 13627 {rgb=(.7 .4 .4)} Face 11573 3183 3128 13628 {rgb=(.7 .4 .4)} Face 11574 3128 3176 13628 {rgb=(.7 .4 .4)} Face 11575 3176 3240 13628 {rgb=(.7 .4 .4)} Face 11576 3240 3183 13628 {rgb=(.7 .4 .4)} Face 11577 2971 3110 13629 {rgb=(.7 .4 .4)} Face 11578 3110 3087 13629 {rgb=(.7 .4 .4)} Face 11579 3087 2915 13629 {rgb=(.7 .4 .4)} Face 11580 2915 2971 13629 {rgb=(.7 .4 .4)} Face 11581 3073 3087 13630 {rgb=(.7 .4 .4)} Face 11582 3087 3128 13630 {rgb=(.7 .4 .4)} Face 11583 3128 3101 13630 {rgb=(.7 .4 .4)} Face 11584 3101 3073 13630 {rgb=(.7 .4 .4)} Face 11585 3132 3079 13631 {rgb=(.7 .4 .4)} Face 11586 3079 3108 13631 {rgb=(.7 .4 .4)} Face 11587 3108 3160 13631 {rgb=(.7 .4 .4)} Face 11588 3160 3132 13631 {rgb=(.7 .4 .4)} Face 11589 3163 3108 13632 {rgb=(.7 .4 .4)} Face 11590 3108 3101 13632 {rgb=(.7 .4 .4)} Face 11591 3101 3158 13632 {rgb=(.7 .4 .4)} Face 11592 3158 3163 13632 {rgb=(.7 .4 .4)} Face 11593 2909 3073 13633 {rgb=(.7 .4 .4)} Face 11594 3073 3067 13633 {rgb=(.7 .4 .4)} Face 11595 3067 2981 13633 {rgb=(.7 .4 .4)} Face 11596 2981 2909 13633 {rgb=(.7 .4 .4)} Face 11597 3053 3067 13634 {rgb=(.7 .4 .4)} Face 11598 3067 3079 13634 {rgb=(.7 .4 .4)} Face 11599 3079 3063 13634 {rgb=(.7 .4 .4)} Face 11600 3063 3053 13634 {rgb=(.7 .4 .4)} Face 11601 3488 3479 13635 {rgb=(.7 .4 .4)} Face 11602 3479 3346 13635 {rgb=(.7 .4 .4)} Face 11603 3346 3357 13635 {rgb=(.7 .4 .4)} Face 11604 3357 3488 13635 {rgb=(.7 .4 .4)} Face 11605 3238 3346 13636 {rgb=(.7 .4 .4)} Face 11606 3346 3345 13636 {rgb=(.7 .4 .4)} Face 11607 3345 3231 13636 {rgb=(.7 .4 .4)} Face 11608 3231 3238 13636 {rgb=(.7 .4 .4)} Face 11609 3347 3345 13637 {rgb=(.7 .4 .4)} Face 11610 3345 3478 13637 {rgb=(.7 .4 .4)} Face 11611 3478 3476 13637 {rgb=(.7 .4 .4)} Face 11612 3476 3347 13637 {rgb=(.7 .4 .4)} Face 11613 3617 3478 13638 {rgb=(.7 .4 .4)} Face 11614 3478 3479 13638 {rgb=(.7 .4 .4)} Face 11615 3479 3610 13638 {rgb=(.7 .4 .4)} Face 11616 3610 3617 13638 {rgb=(.7 .4 .4)} Face 11617 3504 3631 13639 {rgb=(.7 .4 .4)} Face 11618 3631 3618 13639 {rgb=(.7 .4 .4)} Face 11619 3618 3488 13639 {rgb=(.7 .4 .4)} Face 11620 3488 3504 13639 {rgb=(.7 .4 .4)} Face 11621 3610 3618 13640 {rgb=(.7 .4 .4)} Face 11622 3618 3778 13640 {rgb=(.7 .4 .4)} Face 11623 3778 3797 13640 {rgb=(.7 .4 .4)} Face 11624 3797 3610 13640 {rgb=(.7 .4 .4)} Face 11625 3951 3778 13641 {rgb=(.7 .4 .4)} Face 11626 3778 3771 13641 {rgb=(.7 .4 .4)} Face 11627 3771 3944 13641 {rgb=(.7 .4 .4)} Face 11628 3944 3951 13641 {rgb=(.7 .4 .4)} Face 11629 4081 4088 13642 {rgb=(.7 .4 .4)} Face 11630 4088 3962 13642 {rgb=(.7 .4 .4)} Face 11631 3962 3951 13642 {rgb=(.7 .4 .4)} Face 11632 3951 4081 13642 {rgb=(.7 .4 .4)} Face 11633 3797 3962 13643 {rgb=(.7 .4 .4)} Face 11634 3962 3968 13643 {rgb=(.7 .4 .4)} Face 11635 3968 3807 13643 {rgb=(.7 .4 .4)} Face 11636 3807 3797 13643 {rgb=(.7 .4 .4)} Face 11637 3978 3968 13644 {rgb=(.7 .4 .4)} Face 11638 3968 4101 13644 {rgb=(.7 .4 .4)} Face 11639 4101 4106 13644 {rgb=(.7 .4 .4)} Face 11640 4106 3978 13644 {rgb=(.7 .4 .4)} Face 11641 4241 4101 13645 {rgb=(.7 .4 .4)} Face 11642 4101 4088 13645 {rgb=(.7 .4 .4)} Face 11643 4088 4235 13645 {rgb=(.7 .4 .4)} Face 11644 4235 4241 13645 {rgb=(.7 .4 .4)} Face 11645 4334 4343 13646 {rgb=(.7 .4 .4)} Face 11646 4343 4235 13646 {rgb=(.7 .4 .4)} Face 11647 4235 4226 13646 {rgb=(.7 .4 .4)} Face 11648 4226 4334 13646 {rgb=(.7 .4 .4)} Face 11649 4245 4241 13647 {rgb=(.7 .4 .4)} Face 11650 4241 4360 13647 {rgb=(.7 .4 .4)} Face 11651 4360 4368 13647 {rgb=(.7 .4 .4)} Face 11652 4368 4245 13647 {rgb=(.7 .4 .4)} Face 11653 4502 4360 13648 {rgb=(.7 .4 .4)} Face 11654 4360 4343 13648 {rgb=(.7 .4 .4)} Face 11655 4343 4480 13648 {rgb=(.7 .4 .4)} Face 11656 4480 4502 13648 {rgb=(.7 .4 .4)} Face 11657 4519 4502 13649 {rgb=(.7 .4 .4)} Face 11658 4502 4692 13649 {rgb=(.7 .4 .4)} Face 11659 4692 4701 13649 {rgb=(.7 .4 .4)} Face 11660 4701 4519 13649 {rgb=(.7 .4 .4)} Face 11661 4644 4671 13650 {rgb=(.7 .4 .4)} Face 11662 4671 4480 13650 {rgb=(.7 .4 .4)} Face 11663 4480 4456 13650 {rgb=(.7 .4 .4)} Face 11664 4456 4644 13650 {rgb=(.7 .4 .4)} Face 11665 4564 4573 13651 {rgb=(.7 .4 .4)} Face 11666 4573 4815 13651 {rgb=(.7 .4 .4)} Face 11667 4815 4801 13651 {rgb=(.7 .4 .4)} Face 11668 4801 4564 13651 {rgb=(.7 .4 .4)} Face 11669 4788 4818 13652 {rgb=(.7 .4 .4)} Face 11670 4818 4583 13652 {rgb=(.7 .4 .4)} Face 11671 4583 4578 13652 {rgb=(.7 .4 .4)} Face 11672 4578 4788 13652 {rgb=(.7 .4 .4)} Face 11673 4388 4583 13653 {rgb=(.7 .4 .4)} Face 11674 4583 4573 13653 {rgb=(.7 .4 .4)} Face 11675 4573 4373 13653 {rgb=(.7 .4 .4)} Face 11676 4373 4388 13653 {rgb=(.7 .4 .4)} Face 11677 4730 4751 13654 {rgb=(.7 .4 .4)} Face 11678 4751 4553 13654 {rgb=(.7 .4 .4)} Face 11679 4553 4542 13654 {rgb=(.7 .4 .4)} Face 11680 4542 4730 13654 {rgb=(.7 .4 .4)} Face 11681 4387 4553 13655 {rgb=(.7 .4 .4)} Face 11682 4553 4578 13655 {rgb=(.7 .4 .4)} Face 11683 4578 4392 13655 {rgb=(.7 .4 .4)} Face 11684 4392 4387 13655 {rgb=(.7 .4 .4)} Face 11685 4231 4239 13656 {rgb=(.7 .4 .4)} Face 11686 4239 4373 13656 {rgb=(.7 .4 .4)} Face 11687 4373 4367 13656 {rgb=(.7 .4 .4)} Face 11688 4367 4231 13656 {rgb=(.7 .4 .4)} Face 11689 4392 4388 13657 {rgb=(.7 .4 .4)} Face 11690 4388 4248 13657 {rgb=(.7 .4 .4)} Face 11691 4248 4254 13657 {rgb=(.7 .4 .4)} Face 11692 4254 4392 13657 {rgb=(.7 .4 .4)} Face 11693 4082 4248 13658 {rgb=(.7 .4 .4)} Face 11694 4248 4239 13658 {rgb=(.7 .4 .4)} Face 11695 4239 4067 13658 {rgb=(.7 .4 .4)} Face 11696 4067 4082 13658 {rgb=(.7 .4 .4)} Face 11697 4382 4387 13659 {rgb=(.7 .4 .4)} Face 11698 4387 4256 13659 {rgb=(.7 .4 .4)} Face 11699 4256 4253 13659 {rgb=(.7 .4 .4)} Face 11700 4253 4382 13659 {rgb=(.7 .4 .4)} Face 11701 4110 4256 13660 {rgb=(.7 .4 .4)} Face 11702 4256 4254 13660 {rgb=(.7 .4 .4)} Face 11703 4254 4102 13660 {rgb=(.7 .4 .4)} Face 11704 4102 4110 13660 {rgb=(.7 .4 .4)} Face 11705 3869 3888 13661 {rgb=(.7 .4 .4)} Face 11706 3888 4067 13661 {rgb=(.7 .4 .4)} Face 11707 4067 4052 13661 {rgb=(.7 .4 .4)} Face 11708 4052 3869 13661 {rgb=(.7 .4 .4)} Face 11709 4102 4082 13662 {rgb=(.7 .4 .4)} Face 11710 4082 3925 13662 {rgb=(.7 .4 .4)} Face 11711 3925 3956 13662 {rgb=(.7 .4 .4)} Face 11712 3956 4102 13662 {rgb=(.7 .4 .4)} Face 11713 3697 3925 13663 {rgb=(.7 .4 .4)} Face 11714 3925 3888 13663 {rgb=(.7 .4 .4)} Face 11715 3888 3653 13663 {rgb=(.7 .4 .4)} Face 11716 3653 3697 13663 {rgb=(.7 .4 .4)} Face 11717 4117 4110 13664 {rgb=(.7 .4 .4)} Face 11718 4110 3967 13664 {rgb=(.7 .4 .4)} Face 11719 3967 3982 13664 {rgb=(.7 .4 .4)} Face 11720 3982 4117 13664 {rgb=(.7 .4 .4)} Face 11721 3774 3967 13665 {rgb=(.7 .4 .4)} Face 11722 3967 3956 13665 {rgb=(.7 .4 .4)} Face 11723 3956 3731 13665 {rgb=(.7 .4 .4)} Face 11724 3731 3774 13665 {rgb=(.7 .4 .4)} Face 11725 3393 3412 13666 {rgb=(.7 .4 .4)} Face 11726 3412 3653 13666 {rgb=(.7 .4 .4)} Face 11727 3653 3630 13666 {rgb=(.7 .4 .4)} Face 11728 3630 3393 13666 {rgb=(.7 .4 .4)} Face 11729 3731 3697 13667 {rgb=(.7 .4 .4)} Face 11730 3697 3448 13667 {rgb=(.7 .4 .4)} Face 11731 3448 3510 13667 {rgb=(.7 .4 .4)} Face 11732 3510 3731 13667 {rgb=(.7 .4 .4)} Face 11733 3246 3448 13668 {rgb=(.7 .4 .4)} Face 11734 3448 3412 13668 {rgb=(.7 .4 .4)} Face 11735 3412 3203 13668 {rgb=(.7 .4 .4)} Face 11736 3203 3246 13668 {rgb=(.7 .4 .4)} Face 11737 3818 3774 13669 {rgb=(.7 .4 .4)} Face 11738 3774 3578 13669 {rgb=(.7 .4 .4)} Face 11739 3578 3609 13669 {rgb=(.7 .4 .4)} Face 11740 3609 3818 13669 {rgb=(.7 .4 .4)} Face 11741 3417 3578 13670 {rgb=(.7 .4 .4)} Face 11742 3578 3510 13670 {rgb=(.7 .4 .4)} Face 11743 3510 3320 13670 {rgb=(.7 .4 .4)} Face 11744 3320 3417 13670 {rgb=(.7 .4 .4)} Face 11745 2954 3038 13671 {rgb=(.7 .4 .4)} Face 11746 3038 3203 13671 {rgb=(.7 .4 .4)} Face 11747 3203 3151 13671 {rgb=(.7 .4 .4)} Face 11748 3151 2954 13671 {rgb=(.7 .4 .4)} Face 11749 3320 3246 13672 {rgb=(.7 .4 .4)} Face 11750 3246 3105 13672 {rgb=(.7 .4 .4)} Face 11751 3105 3192 13672 {rgb=(.7 .4 .4)} Face 11752 3192 3320 13672 {rgb=(.7 .4 .4)} Face 11753 2936 3105 13673 {rgb=(.7 .4 .4)} Face 11754 3105 3038 13673 {rgb=(.7 .4 .4)} Face 11755 3038 2856 13673 {rgb=(.7 .4 .4)} Face 11756 2856 2936 13673 {rgb=(.7 .4 .4)} Face 11757 3467 3417 13674 {rgb=(.7 .4 .4)} Face 11758 3417 3291 13674 {rgb=(.7 .4 .4)} Face 11759 3291 3338 13674 {rgb=(.7 .4 .4)} Face 11760 3338 3467 13674 {rgb=(.7 .4 .4)} Face 11761 3170 3291 13675 {rgb=(.7 .4 .4)} Face 11762 3291 3192 13675 {rgb=(.7 .4 .4)} Face 11763 3192 3062 13675 {rgb=(.7 .4 .4)} Face 11764 3062 3170 13675 {rgb=(.7 .4 .4)} Face 11765 2702 2732 13676 {rgb=(.7 .4 .4)} Face 11766 2732 2856 13676 {rgb=(.7 .4 .4)} Face 11767 2856 2819 13676 {rgb=(.7 .4 .4)} Face 11768 2819 2702 13676 {rgb=(.7 .4 .4)} Face 11769 3062 2936 13677 {rgb=(.7 .4 .4)} Face 11770 2936 2806 13677 {rgb=(.7 .4 .4)} Face 11771 2806 2894 13677 {rgb=(.7 .4 .4)} Face 11772 2894 3062 13677 {rgb=(.7 .4 .4)} Face 11773 2739 2806 13678 {rgb=(.7 .4 .4)} Face 11774 2806 2732 13678 {rgb=(.7 .4 .4)} Face 11775 2732 2659 13678 {rgb=(.7 .4 .4)} Face 11776 2659 2739 13678 {rgb=(.7 .4 .4)} Face 11777 3216 3170 13679 {rgb=(.7 .4 .4)} Face 11778 3170 3039 13679 {rgb=(.7 .4 .4)} Face 11779 3039 3102 13679 {rgb=(.7 .4 .4)} Face 11780 3102 3216 13679 {rgb=(.7 .4 .4)} Face 11781 2956 3039 13680 {rgb=(.7 .4 .4)} Face 11782 3039 2894 13680 {rgb=(.7 .4 .4)} Face 11783 2894 2833 13680 {rgb=(.7 .4 .4)} Face 11784 2833 2956 13680 {rgb=(.7 .4 .4)} Face 11785 2571 2622 13681 {rgb=(.7 .4 .4)} Face 11786 2622 2659 13681 {rgb=(.7 .4 .4)} Face 11787 2659 2620 13681 {rgb=(.7 .4 .4)} Face 11788 2620 2571 13681 {rgb=(.7 .4 .4)} Face 11789 2833 2739 13682 {rgb=(.7 .4 .4)} Face 11790 2739 2720 13682 {rgb=(.7 .4 .4)} Face 11791 2720 2822 13682 {rgb=(.7 .4 .4)} Face 11792 2822 2833 13682 {rgb=(.7 .4 .4)} Face 11793 2690 2720 13683 {rgb=(.7 .4 .4)} Face 11794 2720 2622 13683 {rgb=(.7 .4 .4)} Face 11795 2622 2578 13683 {rgb=(.7 .4 .4)} Face 11796 2578 2690 13683 {rgb=(.7 .4 .4)} Face 11797 3032 2956 13684 {rgb=(.7 .4 .4)} Face 11798 2956 2934 13684 {rgb=(.7 .4 .4)} Face 11799 2934 3022 13684 {rgb=(.7 .4 .4)} Face 11800 3022 3032 13684 {rgb=(.7 .4 .4)} Face 11801 2919 2934 13685 {rgb=(.7 .4 .4)} Face 11802 2934 2822 13685 {rgb=(.7 .4 .4)} Face 11803 2822 2803 13685 {rgb=(.7 .4 .4)} Face 11804 2803 2919 13685 {rgb=(.7 .4 .4)} Face 11805 2486 2542 13686 {rgb=(.7 .4 .4)} Face 11806 2542 2578 13686 {rgb=(.7 .4 .4)} Face 11807 2578 2528 13686 {rgb=(.7 .4 .4)} Face 11808 2528 2486 13686 {rgb=(.7 .4 .4)} Face 11809 2663 2690 13687 {rgb=(.7 .4 .4)} Face 11810 2690 2542 13687 {rgb=(.7 .4 .4)} Face 11811 2542 2522 13687 {rgb=(.7 .4 .4)} Face 11812 2522 2663 13687 {rgb=(.7 .4 .4)} Face 11813 2915 2909 13688 {rgb=(.7 .4 .4)} Face 11814 2909 2748 13688 {rgb=(.7 .4 .4)} Face 11815 2748 2719 13688 {rgb=(.7 .4 .4)} Face 11816 2719 2915 13688 {rgb=(.7 .4 .4)} Face 11817 2582 2748 13689 {rgb=(.7 .4 .4)} Face 11818 2748 2803 13689 {rgb=(.7 .4 .4)} Face 11819 2803 2663 13689 {rgb=(.7 .4 .4)} Face 11820 2663 2582 13689 {rgb=(.7 .4 .4)} Face 11821 3024 2919 13690 {rgb=(.7 .4 .4)} Face 11822 2919 2981 13690 {rgb=(.7 .4 .4)} Face 11823 2981 3041 13690 {rgb=(.7 .4 .4)} Face 11824 3041 3024 13690 {rgb=(.7 .4 .4)} Face 11825 2480 2582 13691 {rgb=(.7 .4 .4)} Face 11826 2582 2440 13691 {rgb=(.7 .4 .4)} Face 11827 2440 2365 13691 {rgb=(.7 .4 .4)} Face 11828 2365 2480 13691 {rgb=(.7 .4 .4)} Face 11829 2371 2440 13692 {rgb=(.7 .4 .4)} Face 11830 2440 2522 13692 {rgb=(.7 .4 .4)} Face 11831 2522 2439 13692 {rgb=(.7 .4 .4)} Face 11832 2439 2371 13692 {rgb=(.7 .4 .4)} Face 11833 3089 2971 13693 {rgb=(.7 .4 .4)} Face 11834 2971 2786 13693 {rgb=(.7 .4 .4)} Face 11835 2786 2883 13693 {rgb=(.7 .4 .4)} Face 11836 2883 3089 13693 {rgb=(.7 .4 .4)} Face 11837 2662 2786 13694 {rgb=(.7 .4 .4)} Face 11838 2786 2719 13694 {rgb=(.7 .4 .4)} Face 11839 2719 2583 13694 {rgb=(.7 .4 .4)} Face 11840 2583 2662 13694 {rgb=(.7 .4 .4)} Face 11841 2853 2993 13695 {rgb=(.7 .4 .4)} Face 11842 2993 2857 13695 {rgb=(.7 .4 .4)} Face 11843 2857 2767 13695 {rgb=(.7 .4 .4)} Face 11844 2767 2853 13695 {rgb=(.7 .4 .4)} Face 11845 2755 2857 13696 {rgb=(.7 .4 .4)} Face 11846 2857 3023 13696 {rgb=(.7 .4 .4)} Face 11847 3023 2872 13696 {rgb=(.7 .4 .4)} Face 11848 2872 2755 13696 {rgb=(.7 .4 .4)} Face 11849 2955 2853 13697 {rgb=(.7 .4 .4)} Face 11850 2853 2773 13697 {rgb=(.7 .4 .4)} Face 11851 2773 2837 13697 {rgb=(.7 .4 .4)} Face 11852 2837 2955 13697 {rgb=(.7 .4 .4)} Face 11853 2614 2689 13698 {rgb=(.7 .4 .4)} Face 11854 2689 2767 13698 {rgb=(.7 .4 .4)} Face 11855 2767 2676 13698 {rgb=(.7 .4 .4)} Face 11856 2676 2614 13698 {rgb=(.7 .4 .4)} Face 11857 2883 2756 13699 {rgb=(.7 .4 .4)} Face 11858 2756 2872 13699 {rgb=(.7 .4 .4)} Face 11859 2872 3072 13699 {rgb=(.7 .4 .4)} Face 11860 3072 2883 13699 {rgb=(.7 .4 .4)} Face 11861 2676 2755 13700 {rgb=(.7 .4 .4)} Face 11862 2755 2646 13700 {rgb=(.7 .4 .4)} Face 11863 2646 2573 13700 {rgb=(.7 .4 .4)} Face 11864 2573 2676 13700 {rgb=(.7 .4 .4)} Face 11865 2549 2646 13701 {rgb=(.7 .4 .4)} Face 11866 2646 2756 13701 {rgb=(.7 .4 .4)} Face 11867 2756 2662 13701 {rgb=(.7 .4 .4)} Face 11868 2662 2549 13701 {rgb=(.7 .4 .4)} Face 11869 2451 2529 13702 {rgb=(.7 .4 .4)} Face 11870 2529 2573 13702 {rgb=(.7 .4 .4)} Face 11871 2573 2470 13702 {rgb=(.7 .4 .4)} Face 11872 2470 2451 13702 {rgb=(.7 .4 .4)} Face 11873 2470 2549 13703 {rgb=(.7 .4 .4)} Face 11874 2549 2454 13703 {rgb=(.7 .4 .4)} Face 11875 2454 2384 13703 {rgb=(.7 .4 .4)} Face 11876 2384 2470 13703 {rgb=(.7 .4 .4)} Face 11877 2367 2454 13704 {rgb=(.7 .4 .4)} Face 11878 2454 2583 13704 {rgb=(.7 .4 .4)} Face 11879 2583 2480 13704 {rgb=(.7 .4 .4)} Face 11880 2480 2367 13704 {rgb=(.7 .4 .4)} Face 11881 2324 2388 13705 {rgb=(.7 .4 .4)} Face 11882 2388 2384 13705 {rgb=(.7 .4 .4)} Face 11883 2384 2301 13705 {rgb=(.7 .4 .4)} Face 11884 2301 2324 13705 {rgb=(.7 .4 .4)} Face 11885 2301 2367 13706 {rgb=(.7 .4 .4)} Face 11886 2367 2285 13706 {rgb=(.7 .4 .4)} Face 11887 2285 2259 13706 {rgb=(.7 .4 .4)} Face 11888 2259 2301 13706 {rgb=(.7 .4 .4)} Face 11889 2263 2285 13707 {rgb=(.7 .4 .4)} Face 11890 2285 2365 13707 {rgb=(.7 .4 .4)} Face 11891 2365 2303 13707 {rgb=(.7 .4 .4)} Face 11892 2303 2263 13707 {rgb=(.7 .4 .4)} Face 11893 2415 2324 13708 {rgb=(.7 .4 .4)} Face 11894 2324 2282 13708 {rgb=(.7 .4 .4)} Face 11895 2282 2383 13708 {rgb=(.7 .4 .4)} Face 11896 2383 2415 13708 {rgb=(.7 .4 .4)} Face 11897 2284 2282 13709 {rgb=(.7 .4 .4)} Face 11898 2282 2259 13709 {rgb=(.7 .4 .4)} Face 11899 2259 2258 13709 {rgb=(.7 .4 .4)} Face 11900 2258 2284 13709 {rgb=(.7 .4 .4)} Face 11901 2935 2927 13710 {rgb=(.7 .4 .4)} Face 11902 2927 3151 13710 {rgb=(.7 .4 .4)} Face 11903 3151 3165 13710 {rgb=(.7 .4 .4)} Face 11904 3165 2935 13710 {rgb=(.7 .4 .4)} Face 11905 2819 2954 13711 {rgb=(.7 .4 .4)} Face 11906 2954 2927 13711 {rgb=(.7 .4 .4)} Face 11907 2927 2805 13711 {rgb=(.7 .4 .4)} Face 11908 2805 2819 13711 {rgb=(.7 .4 .4)} Face 11909 2620 2702 13712 {rgb=(.7 .4 .4)} Face 11910 2702 2704 13712 {rgb=(.7 .4 .4)} Face 11911 2704 2625 13712 {rgb=(.7 .4 .4)} Face 11912 2625 2620 13712 {rgb=(.7 .4 .4)} Face 11913 2687 2704 13713 {rgb=(.7 .4 .4)} Face 11914 2704 2805 13713 {rgb=(.7 .4 .4)} Face 11915 2805 2784 13713 {rgb=(.7 .4 .4)} Face 11916 2784 2687 13713 {rgb=(.7 .4 .4)} Face 11917 2528 2571 13714 {rgb=(.7 .4 .4)} Face 11918 2571 2576 13714 {rgb=(.7 .4 .4)} Face 11919 2576 2532 13714 {rgb=(.7 .4 .4)} Face 11920 2532 2528 13714 {rgb=(.7 .4 .4)} Face 11921 2552 2576 13715 {rgb=(.7 .4 .4)} Face 11922 2576 2625 13715 {rgb=(.7 .4 .4)} Face 11923 2625 2615 13715 {rgb=(.7 .4 .4)} Face 11924 2615 2552 13715 {rgb=(.7 .4 .4)} Face 11925 2439 2486 13716 {rgb=(.7 .4 .4)} Face 11926 2486 2495 13716 {rgb=(.7 .4 .4)} Face 11927 2495 2452 13716 {rgb=(.7 .4 .4)} Face 11928 2452 2439 13716 {rgb=(.7 .4 .4)} Face 11929 2471 2495 13717 {rgb=(.7 .4 .4)} Face 11930 2495 2532 13717 {rgb=(.7 .4 .4)} Face 11931 2532 2499 13717 {rgb=(.7 .4 .4)} Face 11932 2499 2471 13717 {rgb=(.7 .4 .4)} Face 11933 2303 2371 13718 {rgb=(.7 .4 .4)} Face 11934 2371 2396 13718 {rgb=(.7 .4 .4)} Face 11935 2396 2346 13718 {rgb=(.7 .4 .4)} Face 11936 2346 2303 13718 {rgb=(.7 .4 .4)} Face 11937 2392 2396 13719 {rgb=(.7 .4 .4)} Face 11938 2396 2452 13719 {rgb=(.7 .4 .4)} Face 11939 2452 2437 13719 {rgb=(.7 .4 .4)} Face 11940 2437 2392 13719 {rgb=(.7 .4 .4)} Face 11941 2258 2263 13720 {rgb=(.7 .4 .4)} Face 11942 2263 2346 13720 {rgb=(.7 .4 .4)} Face 11943 2346 2337 13720 {rgb=(.7 .4 .4)} Face 11944 2337 2258 13720 {rgb=(.7 .4 .4)} Face 11945 2348 2284 13721 {rgb=(.7 .4 .4)} Face 11946 2284 2337 13721 {rgb=(.7 .4 .4)} Face 11947 2337 2361 13721 {rgb=(.7 .4 .4)} Face 11948 2361 2348 13721 {rgb=(.7 .4 .4)} Face 11949 2317 2372 13722 {rgb=(.7 .4 .4)} Face 11950 2372 2361 13722 {rgb=(.7 .4 .4)} Face 11951 2361 2351 13722 {rgb=(.7 .4 .4)} Face 11952 2351 2317 13722 {rgb=(.7 .4 .4)} Face 11953 2383 2348 13723 {rgb=(.7 .4 .4)} Face 11954 2348 2414 13723 {rgb=(.7 .4 .4)} Face 11955 2414 2453 13723 {rgb=(.7 .4 .4)} Face 11956 2453 2383 13723 {rgb=(.7 .4 .4)} Face 11957 2434 2414 13724 {rgb=(.7 .4 .4)} Face 11958 2414 2372 13724 {rgb=(.7 .4 .4)} Face 11959 2372 2362 13724 {rgb=(.7 .4 .4)} Face 11960 2362 2434 13724 {rgb=(.7 .4 .4)} Face 11961 2448 2398 13725 {rgb=(.7 .4 .4)} Face 11962 2398 2413 13725 {rgb=(.7 .4 .4)} Face 11963 2413 2472 13725 {rgb=(.7 .4 .4)} Face 11964 2472 2448 13725 {rgb=(.7 .4 .4)} Face 11965 2273 2413 13726 {rgb=(.7 .4 .4)} Face 11966 2413 2349 13726 {rgb=(.7 .4 .4)} Face 11967 2349 2260 13726 {rgb=(.7 .4 .4)} Face 11968 2260 2273 13726 {rgb=(.7 .4 .4)} Face 11969 2289 2349 13727 {rgb=(.7 .4 .4)} Face 11970 2349 2340 13727 {rgb=(.7 .4 .4)} Face 11971 2340 2298 13727 {rgb=(.7 .4 .4)} Face 11972 2298 2289 13727 {rgb=(.7 .4 .4)} Face 11973 2338 2340 13728 {rgb=(.7 .4 .4)} Face 11974 2340 2398 13728 {rgb=(.7 .4 .4)} Face 11975 2398 2390 13728 {rgb=(.7 .4 .4)} Face 11976 2390 2338 13728 {rgb=(.7 .4 .4)} Face 11977 2509 2547 13729 {rgb=(.7 .4 .4)} Face 11978 2547 2472 13729 {rgb=(.7 .4 .4)} Face 11979 2472 2424 13729 {rgb=(.7 .4 .4)} Face 11980 2424 2509 13729 {rgb=(.7 .4 .4)} Face 11981 2469 2448 13730 {rgb=(.7 .4 .4)} Face 11982 2448 2547 13730 {rgb=(.7 .4 .4)} Face 11983 2547 2566 13730 {rgb=(.7 .4 .4)} Face 11984 2566 2469 13730 {rgb=(.7 .4 .4)} Face 11985 2770 2886 13731 {rgb=(.7 .4 .4)} Face 11986 2886 2840 13731 {rgb=(.7 .4 .4)} Face 11987 2840 2737 13731 {rgb=(.7 .4 .4)} Face 11988 2737 2770 13731 {rgb=(.7 .4 .4)} Face 11989 2780 2840 13732 {rgb=(.7 .4 .4)} Face 11990 2840 2953 13732 {rgb=(.7 .4 .4)} Face 11991 2953 2843 13732 {rgb=(.7 .4 .4)} Face 11992 2843 2780 13732 {rgb=(.7 .4 .4)} Face 11993 3086 2953 13733 {rgb=(.7 .4 .4)} Face 11994 2953 3075 13733 {rgb=(.7 .4 .4)} Face 11995 3075 3208 13733 {rgb=(.7 .4 .4)} Face 11996 3208 3086 13733 {rgb=(.7 .4 .4)} Face 11997 3157 3075 13734 {rgb=(.7 .4 .4)} Face 11998 3075 2886 13734 {rgb=(.7 .4 .4)} Face 11999 2886 2961 13734 {rgb=(.7 .4 .4)} Face 12000 2961 3157 13734 {rgb=(.7 .4 .4)} Face 12001 3296 3157 13735 {rgb=(.7 .4 .4)} Face 12002 3157 3162 13735 {rgb=(.7 .4 .4)} Face 12003 3162 3330 13735 {rgb=(.7 .4 .4)} Face 12004 3330 3296 13735 {rgb=(.7 .4 .4)} Face 12005 2575 2512 13736 {rgb=(.7 .4 .4)} Face 12006 2512 2489 13736 {rgb=(.7 .4 .4)} Face 12007 2489 2527 13736 {rgb=(.7 .4 .4)} Face 12008 2527 2575 13736 {rgb=(.7 .4 .4)} Face 12009 2494 2489 13737 {rgb=(.7 .4 .4)} Face 12010 2489 2453 13737 {rgb=(.7 .4 .4)} Face 12011 2453 2475 13737 {rgb=(.7 .4 .4)} Face 12012 2475 2494 13737 {rgb=(.7 .4 .4)} Face 12013 2604 2594 13738 {rgb=(.7 .4 .4)} Face 12014 2594 2537 13738 {rgb=(.7 .4 .4)} Face 12015 2537 2531 13738 {rgb=(.7 .4 .4)} Face 12016 2531 2604 13738 {rgb=(.7 .4 .4)} Face 12017 2488 2537 13739 {rgb=(.7 .4 .4)} Face 12018 2537 2527 13739 {rgb=(.7 .4 .4)} Face 12019 2527 2494 13739 {rgb=(.7 .4 .4)} Face 12020 2494 2488 13739 {rgb=(.7 .4 .4)} Face 12021 2446 2515 13740 {rgb=(.7 .4 .4)} Face 12022 2515 2531 13740 {rgb=(.7 .4 .4)} Face 12023 2531 2473 13740 {rgb=(.7 .4 .4)} Face 12024 2473 2446 13740 {rgb=(.7 .4 .4)} Face 12025 2591 2603 13741 {rgb=(.7 .4 .4)} Face 12026 2603 2515 13741 {rgb=(.7 .4 .4)} Face 12027 2515 2497 13741 {rgb=(.7 .4 .4)} Face 12028 2497 2591 13741 {rgb=(.7 .4 .4)} Face 12029 2539 2567 13742 {rgb=(.7 .4 .4)} Face 12030 2567 2484 13742 {rgb=(.7 .4 .4)} Face 12031 2484 2460 13742 {rgb=(.7 .4 .4)} Face 12032 2460 2539 13742 {rgb=(.7 .4 .4)} Face 12033 2432 2484 13743 {rgb=(.7 .4 .4)} Face 12034 2484 2497 13743 {rgb=(.7 .4 .4)} Face 12035 2497 2433 13743 {rgb=(.7 .4 .4)} Face 12036 2433 2432 13743 {rgb=(.7 .4 .4)} Face 12037 2373 2421 13744 {rgb=(.7 .4 .4)} Face 12038 2421 2460 13744 {rgb=(.7 .4 .4)} Face 12039 2460 2411 13744 {rgb=(.7 .4 .4)} Face 12040 2411 2373 13744 {rgb=(.7 .4 .4)} Face 12041 2409 2477 13745 {rgb=(.7 .4 .4)} Face 12042 2477 2421 13745 {rgb=(.7 .4 .4)} Face 12043 2421 2376 13745 {rgb=(.7 .4 .4)} Face 12044 2376 2409 13745 {rgb=(.7 .4 .4)} Face 12045 2292 2310 13746 {rgb=(.7 .4 .4)} Face 12046 2310 2376 13746 {rgb=(.7 .4 .4)} Face 12047 2376 2328 13746 {rgb=(.7 .4 .4)} Face 12048 2328 2292 13746 {rgb=(.7 .4 .4)} Face 12049 2315 2307 13747 {rgb=(.7 .4 .4)} Face 12050 2307 2310 13747 {rgb=(.7 .4 .4)} Face 12051 2310 2308 13747 {rgb=(.7 .4 .4)} Face 12052 2308 2315 13747 {rgb=(.7 .4 .4)} Face 12053 2298 2338 13748 {rgb=(.7 .4 .4)} Face 12054 2338 2308 13748 {rgb=(.7 .4 .4)} Face 12055 2308 2277 13748 {rgb=(.7 .4 .4)} Face 12056 2277 2298 13748 {rgb=(.7 .4 .4)} Face 12057 2503 2404 13749 {rgb=(.7 .4 .4)} Face 12058 2404 2390 13749 {rgb=(.7 .4 .4)} Face 12059 2390 2469 13749 {rgb=(.7 .4 .4)} Face 12060 2469 2503 13749 {rgb=(.7 .4 .4)} Face 12061 2693 2599 13750 {rgb=(.7 .4 .4)} Face 12062 2599 2566 13750 {rgb=(.7 .4 .4)} Face 12063 2566 2650 13750 {rgb=(.7 .4 .4)} Face 12064 2650 2693 13750 {rgb=(.7 .4 .4)} Face 12065 2667 2735 13751 {rgb=(.7 .4 .4)} Face 12066 2735 2650 13751 {rgb=(.7 .4 .4)} Face 12067 2650 2606 13751 {rgb=(.7 .4 .4)} Face 12068 2606 2667 13751 {rgb=(.7 .4 .4)} Face 12069 2920 2812 13752 {rgb=(.7 .4 .4)} Face 12070 2812 2735 13752 {rgb=(.7 .4 .4)} Face 12071 2735 2824 13752 {rgb=(.7 .4 .4)} Face 12072 2824 2920 13752 {rgb=(.7 .4 .4)} Face 12073 2843 2928 13753 {rgb=(.7 .4 .4)} Face 12074 2928 2824 13753 {rgb=(.7 .4 .4)} Face 12075 2824 2758 13753 {rgb=(.7 .4 .4)} Face 12076 2758 2843 13753 {rgb=(.7 .4 .4)} Face 12077 3186 3049 13754 {rgb=(.7 .4 .4)} Face 12078 3049 2928 13754 {rgb=(.7 .4 .4)} Face 12079 2928 3086 13754 {rgb=(.7 .4 .4)} Face 12080 3086 3186 13754 {rgb=(.7 .4 .4)} Face 12081 3463 3333 13755 {rgb=(.7 .4 .4)} Face 12082 3333 3208 13755 {rgb=(.7 .4 .4)} Face 12083 3208 3296 13755 {rgb=(.7 .4 .4)} Face 12084 3296 3463 13755 {rgb=(.7 .4 .4)} Face 12085 2417 2407 13756 {rgb=(.7 .4 .4)} Face 12086 2407 2636 13756 {rgb=(.7 .4 .4)} Face 12087 2636 2649 13756 {rgb=(.7 .4 .4)} Face 12088 2649 2417 13756 {rgb=(.7 .4 .4)} Face 12089 2381 2483 13757 {rgb=(.7 .4 .4)} Face 12090 2483 2407 13757 {rgb=(.7 .4 .4)} Face 12091 2407 2293 13757 {rgb=(.7 .4 .4)} Face 12092 2293 2381 13757 {rgb=(.7 .4 .4)} Face 12093 2239 2305 13758 {rgb=(.7 .4 .4)} Face 12094 2305 2264 13758 {rgb=(.7 .4 .4)} Face 12095 2264 2233 13758 {rgb=(.7 .4 .4)} Face 12096 2233 2239 13758 {rgb=(.7 .4 .4)} Face 12097 2236 2264 13759 {rgb=(.7 .4 .4)} Face 12098 2264 2293 13759 {rgb=(.7 .4 .4)} Face 12099 2293 2240 13759 {rgb=(.7 .4 .4)} Face 12100 2240 2236 13759 {rgb=(.7 .4 .4)} Face 12101 2208 2212 13760 {rgb=(.7 .4 .4)} Face 12102 2212 2233 13760 {rgb=(.7 .4 .4)} Face 12103 2233 2221 13760 {rgb=(.7 .4 .4)} Face 12104 2221 2208 13760 {rgb=(.7 .4 .4)} Face 12105 2158 2177 13761 {rgb=(.7 .4 .4)} Face 12106 2177 2212 13761 {rgb=(.7 .4 .4)} Face 12107 2212 2182 13761 {rgb=(.7 .4 .4)} Face 12108 2182 2158 13761 {rgb=(.7 .4 .4)} Face 12109 2192 2168 13762 {rgb=(.7 .4 .4)} Face 12110 2168 2189 13762 {rgb=(.7 .4 .4)} Face 12111 2189 2187 13762 {rgb=(.7 .4 .4)} Face 12112 2187 2192 13762 {rgb=(.7 .4 .4)} Face 12113 2195 2189 13763 {rgb=(.7 .4 .4)} Face 12114 2189 2182 13763 {rgb=(.7 .4 .4)} Face 12115 2182 2193 13763 {rgb=(.7 .4 .4)} Face 12116 2193 2195 13763 {rgb=(.7 .4 .4)} Face 12117 2148 2180 13764 {rgb=(.7 .4 .4)} Face 12118 2180 2187 13764 {rgb=(.7 .4 .4)} Face 12119 2187 2173 13764 {rgb=(.7 .4 .4)} Face 12120 2173 2148 13764 {rgb=(.7 .4 .4)} Face 12121 2323 2225 13765 {rgb=(.7 .4 .4)} Face 12122 2225 2180 13765 {rgb=(.7 .4 .4)} Face 12123 2180 2248 13765 {rgb=(.7 .4 .4)} Face 12124 2248 2323 13765 {rgb=(.7 .4 .4)} Face 12125 2326 2399 13766 {rgb=(.7 .4 .4)} Face 12126 2399 2248 13766 {rgb=(.7 .4 .4)} Face 12127 2248 2203 13766 {rgb=(.7 .4 .4)} Face 12128 2203 2326 13766 {rgb=(.7 .4 .4)} Face 12129 2524 2465 13767 {rgb=(.7 .4 .4)} Face 12130 2465 2399 13767 {rgb=(.7 .4 .4)} Face 12131 2399 2450 13767 {rgb=(.7 .4 .4)} Face 12132 2450 2524 13767 {rgb=(.7 .4 .4)} Face 12133 2499 2520 13768 {rgb=(.7 .4 .4)} Face 12134 2520 2443 13768 {rgb=(.7 .4 .4)} Face 12135 2443 2436 13768 {rgb=(.7 .4 .4)} Face 12136 2436 2499 13768 {rgb=(.7 .4 .4)} Face 12137 2402 2443 13769 {rgb=(.7 .4 .4)} Face 12138 2443 2450 13769 {rgb=(.7 .4 .4)} Face 12139 2450 2401 13769 {rgb=(.7 .4 .4)} Face 12140 2401 2402 13769 {rgb=(.7 .4 .4)} Face 12141 2437 2471 13770 {rgb=(.7 .4 .4)} Face 12142 2471 2425 13770 {rgb=(.7 .4 .4)} Face 12143 2425 2405 13770 {rgb=(.7 .4 .4)} Face 12144 2405 2437 13770 {rgb=(.7 .4 .4)} Face 12145 2395 2425 13771 {rgb=(.7 .4 .4)} Face 12146 2425 2436 13771 {rgb=(.7 .4 .4)} Face 12147 2436 2402 13771 {rgb=(.7 .4 .4)} Face 12148 2402 2395 13771 {rgb=(.7 .4 .4)} Face 12149 2319 2363 13772 {rgb=(.7 .4 .4)} Face 12150 2363 2405 13772 {rgb=(.7 .4 .4)} Face 12151 2405 2370 13772 {rgb=(.7 .4 .4)} Face 12152 2370 2319 13772 {rgb=(.7 .4 .4)} Face 12153 2351 2392 13773 {rgb=(.7 .4 .4)} Face 12154 2392 2363 13773 {rgb=(.7 .4 .4)} Face 12155 2363 2314 13773 {rgb=(.7 .4 .4)} Face 12156 2314 2351 13773 {rgb=(.7 .4 .4)} Face 12157 2227 2268 13774 {rgb=(.7 .4 .4)} Face 12158 2268 2314 13774 {rgb=(.7 .4 .4)} Face 12159 2314 2271 13774 {rgb=(.7 .4 .4)} Face 12160 2271 2227 13774 {rgb=(.7 .4 .4)} Face 12161 2281 2317 13775 {rgb=(.7 .4 .4)} Face 12162 2317 2268 13775 {rgb=(.7 .4 .4)} Face 12163 2268 2231 13775 {rgb=(.7 .4 .4)} Face 12164 2231 2281 13775 {rgb=(.7 .4 .4)} Face 12165 3521 3464 13776 {rgb=(.7 .4 .4)} Face 12166 3464 3582 13776 {rgb=(.7 .4 .4)} Face 12167 3582 3603 13776 {rgb=(.7 .4 .4)} Face 12168 3603 3521 13776 {rgb=(.7 .4 .4)} Face 12169 3258 3378 13777 {rgb=(.7 .4 .4)} Face 12170 3378 3464 13777 {rgb=(.7 .4 .4)} Face 12171 3464 3391 13777 {rgb=(.7 .4 .4)} Face 12172 3391 3258 13777 {rgb=(.7 .4 .4)} Face 12173 3450 3371 13778 {rgb=(.7 .4 .4)} Face 12174 3371 3391 13778 {rgb=(.7 .4 .4)} Face 12175 3391 3460 13778 {rgb=(.7 .4 .4)} Face 12176 3460 3450 13778 {rgb=(.7 .4 .4)} Face 12177 4990 5048 13779 {rgb=(.7 .4 .4)} Face 12178 5048 4947 13779 {rgb=(.7 .4 .4)} Face 12179 4947 4893 13779 {rgb=(.7 .4 .4)} Face 12180 4893 4990 13779 {rgb=(.7 .4 .4)} Face 12181 4925 4947 13780 {rgb=(.7 .4 .4)} Face 12182 4947 5075 13780 {rgb=(.7 .4 .4)} Face 12183 5075 5044 13780 {rgb=(.7 .4 .4)} Face 12184 5044 4925 13780 {rgb=(.7 .4 .4)} Face 12185 5130 5075 13781 {rgb=(.7 .4 .4)} Face 12186 5075 5048 13781 {rgb=(.7 .4 .4)} Face 12187 5048 5106 13781 {rgb=(.7 .4 .4)} Face 12188 5106 5130 13781 {rgb=(.7 .4 .4)} Face 12189 5646 5404 13782 {rgb=(.7 .4 .4)} Face 12190 5404 5411 13782 {rgb=(.7 .4 .4)} Face 12191 5411 5638 13782 {rgb=(.7 .4 .4)} Face 12192 5638 5646 13782 {rgb=(.7 .4 .4)} Face 12193 4656 4187 13783 {rgb=(.7 .4 .4)} Face 12194 4187 4149 13783 {rgb=(.7 .4 .4)} Face 12195 4149 4632 13783 {rgb=(.7 .4 .4)} Face 12196 4632 4656 13783 {rgb=(.7 .4 .4)} Face 12197 4434 4149 13784 {rgb=(.7 .4 .4)} Face 12198 4149 3972 13784 {rgb=(.7 .4 .4)} Face 12199 3972 4206 13784 {rgb=(.7 .4 .4)} Face 12200 4206 4434 13784 {rgb=(.7 .4 .4)} Face 12201 3981 3972 13785 {rgb=(.7 .4 .4)} Face 12202 3972 3754 13785 {rgb=(.7 .4 .4)} Face 12203 3754 3723 13785 {rgb=(.7 .4 .4)} Face 12204 3723 3981 13785 {rgb=(.7 .4 .4)} Face 12205 3562 3754 13786 {rgb=(.7 .4 .4)} Face 12206 3754 3627 13786 {rgb=(.7 .4 .4)} Face 12207 3627 3455 13786 {rgb=(.7 .4 .4)} Face 12208 3455 3562 13786 {rgb=(.7 .4 .4)} Face 12209 3363 3627 13787 {rgb=(.7 .4 .4)} Face 12210 3627 3544 13787 {rgb=(.7 .4 .4)} Face 12211 3544 3281 13787 {rgb=(.7 .4 .4)} Face 12212 3281 3363 13787 {rgb=(.7 .4 .4)} Face 12213 3244 3544 13788 {rgb=(.7 .4 .4)} Face 12214 3544 3537 13788 {rgb=(.7 .4 .4)} Face 12215 3537 3262 13788 {rgb=(.7 .4 .4)} Face 12216 3262 3244 13788 {rgb=(.7 .4 .4)} Face 12217 3282 3537 13789 {rgb=(.7 .4 .4)} Face 12218 3537 3573 13789 {rgb=(.7 .4 .4)} Face 12219 3573 3314 13789 {rgb=(.7 .4 .4)} Face 12220 3314 3282 13789 {rgb=(.7 .4 .4)} Face 12221 3398 3573 13790 {rgb=(.7 .4 .4)} Face 12222 3573 3693 13790 {rgb=(.7 .4 .4)} Face 12223 3693 3520 13790 {rgb=(.7 .4 .4)} Face 12224 3520 3398 13790 {rgb=(.7 .4 .4)} Face 12225 3639 3693 13791 {rgb=(.7 .4 .4)} Face 12226 3693 3872 13791 {rgb=(.7 .4 .4)} Face 12227 3872 3782 13791 {rgb=(.7 .4 .4)} Face 12228 3782 3639 13791 {rgb=(.7 .4 .4)} Face 12229 3940 3872 13792 {rgb=(.7 .4 .4)} Face 12230 3872 4016 13792 {rgb=(.7 .4 .4)} Face 12231 4016 4072 13792 {rgb=(.7 .4 .4)} Face 12232 4072 3940 13792 {rgb=(.7 .4 .4)} Face 12233 4204 4016 13793 {rgb=(.7 .4 .4)} Face 12234 4016 4122 13793 {rgb=(.7 .4 .4)} Face 12235 4122 4312 13793 {rgb=(.7 .4 .4)} Face 12236 4312 4204 13793 {rgb=(.7 .4 .4)} Face 12237 4417 4122 13794 {rgb=(.7 .4 .4)} Face 12238 4122 4187 13794 {rgb=(.7 .4 .4)} Face 12239 4187 4567 13794 {rgb=(.7 .4 .4)} Face 12240 4567 4417 13794 {rgb=(.7 .4 .4)} Face 12241 4512 4495 13795 {rgb=(.7 .4 .4)} Face 12242 4495 4157 13795 {rgb=(.7 .4 .4)} Face 12243 4157 4152 13795 {rgb=(.7 .4 .4)} Face 12244 4152 4512 13795 {rgb=(.7 .4 .4)} Face 12245 4189 4175 13796 {rgb=(.7 .4 .4)} Face 12246 4175 4486 13796 {rgb=(.7 .4 .4)} Face 12247 4486 4471 13796 {rgb=(.7 .4 .4)} Face 12248 4471 4189 13796 {rgb=(.7 .4 .4)} Face 12249 3123 3132 13797 {rgb=(.7 .4 .4)} Face 12250 3132 3231 13797 {rgb=(.7 .4 .4)} Face 12251 3231 3224 13797 {rgb=(.7 .4 .4)} Face 12252 3224 3123 13797 {rgb=(.7 .4 .4)} Face 12253 3261 3238 13798 {rgb=(.7 .4 .4)} Face 12254 3238 3160 13798 {rgb=(.7 .4 .4)} Face 12255 3160 3196 13798 {rgb=(.7 .4 .4)} Face 12256 3196 3261 13798 {rgb=(.7 .4 .4)} Face 12257 3984 4207 13799 {rgb=(.7 .4 .4)} Face 12258 4207 4206 13799 {rgb=(.7 .4 .4)} Face 12259 4206 3981 13799 {rgb=(.7 .4 .4)} Face 12260 3981 3984 13799 {rgb=(.7 .4 .4)} Face 12261 4632 4434 13800 {rgb=(.7 .4 .4)} Face 12262 4434 4435 13800 {rgb=(.7 .4 .4)} Face 12263 4435 4633 13800 {rgb=(.7 .4 .4)} Face 12264 4633 4632 13800 {rgb=(.7 .4 .4)} Face 12265 4567 4656 13801 {rgb=(.7 .4 .4)} Face 12266 4656 4657 13801 {rgb=(.7 .4 .4)} Face 12267 4657 4568 13801 {rgb=(.7 .4 .4)} Face 12268 4568 4567 13801 {rgb=(.7 .4 .4)} Face 12269 4312 4417 13802 {rgb=(.7 .4 .4)} Face 12270 4417 4418 13802 {rgb=(.7 .4 .4)} Face 12271 4418 4313 13802 {rgb=(.7 .4 .4)} Face 12272 4313 4312 13802 {rgb=(.7 .4 .4)} Face 12273 4072 4204 13803 {rgb=(.7 .4 .4)} Face 12274 4204 4205 13803 {rgb=(.7 .4 .4)} Face 12275 4205 4073 13803 {rgb=(.7 .4 .4)} Face 12276 4073 4072 13803 {rgb=(.7 .4 .4)} Face 12277 3782 3940 13804 {rgb=(.7 .4 .4)} Face 12278 3940 3942 13804 {rgb=(.7 .4 .4)} Face 12279 3942 3791 13804 {rgb=(.7 .4 .4)} Face 12280 3791 3782 13804 {rgb=(.7 .4 .4)} Face 12281 3520 3639 13805 {rgb=(.7 .4 .4)} Face 12282 3639 3644 13805 {rgb=(.7 .4 .4)} Face 12283 3644 3524 13805 {rgb=(.7 .4 .4)} Face 12284 3524 3520 13805 {rgb=(.7 .4 .4)} Face 12285 3314 3398 13806 {rgb=(.7 .4 .4)} Face 12286 3398 3402 13806 {rgb=(.7 .4 .4)} Face 12287 3402 3318 13806 {rgb=(.7 .4 .4)} Face 12288 3318 3314 13806 {rgb=(.7 .4 .4)} Face 12289 3262 3282 13807 {rgb=(.7 .4 .4)} Face 12290 3282 3287 13807 {rgb=(.7 .4 .4)} Face 12291 3287 3263 13807 {rgb=(.7 .4 .4)} Face 12292 3263 3262 13807 {rgb=(.7 .4 .4)} Face 12293 3281 3244 13808 {rgb=(.7 .4 .4)} Face 12294 3244 3245 13808 {rgb=(.7 .4 .4)} Face 12295 3245 3283 13808 {rgb=(.7 .4 .4)} Face 12296 3283 3281 13808 {rgb=(.7 .4 .4)} Face 12297 3455 3363 13809 {rgb=(.7 .4 .4)} Face 12298 3363 3370 13809 {rgb=(.7 .4 .4)} Face 12299 3370 3461 13809 {rgb=(.7 .4 .4)} Face 12300 3461 3455 13809 {rgb=(.7 .4 .4)} Face 12301 3723 3562 13810 {rgb=(.7 .4 .4)} Face 12302 3562 3564 13810 {rgb=(.7 .4 .4)} Face 12303 3564 3726 13810 {rgb=(.7 .4 .4)} Face 12304 3726 3723 13810 {rgb=(.7 .4 .4)} Face 12305 4226 4081 13811 {rgb=(.7 .4 .4)} Face 12306 4081 4079 13811 {rgb=(.7 .4 .4)} Face 12307 4079 4218 13811 {rgb=(.7 .4 .4)} Face 12308 4218 4226 13811 {rgb=(.7 .4 .4)} Face 12309 4456 4334 13812 {rgb=(.7 .4 .4)} Face 12310 4334 4321 13812 {rgb=(.7 .4 .4)} Face 12311 4321 4438 13812 {rgb=(.7 .4 .4)} Face 12312 4438 4456 13812 {rgb=(.7 .4 .4)} Face 12313 4721 4644 13813 {rgb=(.7 .4 .4)} Face 12314 4644 4606 13813 {rgb=(.7 .4 .4)} Face 12315 4606 4687 13813 {rgb=(.7 .4 .4)} Face 12316 4687 4721 13813 {rgb=(.7 .4 .4)} Face 12317 4471 4705 13814 {rgb=(.7 .4 .4)} Face 12318 4705 4675 13814 {rgb=(.7 .4 .4)} Face 12319 4675 4450 13814 {rgb=(.7 .4 .4)} Face 12320 4450 4471 13814 {rgb=(.7 .4 .4)} Face 12321 3932 4189 13815 {rgb=(.7 .4 .4)} Face 12322 4189 4198 13815 {rgb=(.7 .4 .4)} Face 12323 4198 3963 13815 {rgb=(.7 .4 .4)} Face 12324 3963 3932 13815 {rgb=(.7 .4 .4)} Face 12325 3485 3660 13816 {rgb=(.7 .4 .4)} Face 12326 3660 3704 13816 {rgb=(.7 .4 .4)} Face 12327 3704 3531 13816 {rgb=(.7 .4 .4)} Face 12328 3531 3485 13816 {rgb=(.7 .4 .4)} Face 12329 3240 3339 13817 {rgb=(.7 .4 .4)} Face 12330 3339 3411 13817 {rgb=(.7 .4 .4)} Face 12331 3411 3313 13817 {rgb=(.7 .4 .4)} Face 12332 3313 3240 13817 {rgb=(.7 .4 .4)} Face 12333 3158 3183 13818 {rgb=(.7 .4 .4)} Face 12334 3183 3237 13818 {rgb=(.7 .4 .4)} Face 12335 3237 3205 13818 {rgb=(.7 .4 .4)} Face 12336 3205 3158 13818 {rgb=(.7 .4 .4)} Face 12337 3196 3163 13819 {rgb=(.7 .4 .4)} Face 12338 3163 3217 13819 {rgb=(.7 .4 .4)} Face 12339 3217 3249 13819 {rgb=(.7 .4 .4)} Face 12340 3249 3196 13819 {rgb=(.7 .4 .4)} Face 12341 3357 3261 13820 {rgb=(.7 .4 .4)} Face 12342 3261 3293 13820 {rgb=(.7 .4 .4)} Face 12343 3293 3380 13820 {rgb=(.7 .4 .4)} Face 12344 3380 3357 13820 {rgb=(.7 .4 .4)} Face 12345 3619 3617 13821 {rgb=(.7 .4 .4)} Face 12346 3617 3807 13821 {rgb=(.7 .4 .4)} Face 12347 3807 3820 13821 {rgb=(.7 .4 .4)} Face 12348 3820 3619 13821 {rgb=(.7 .4 .4)} Face 12349 4787 4795 13822 {rgb=(.7 .4 .4)} Face 12350 4795 4794 13822 {rgb=(.7 .4 .4)} Face 12351 4794 4786 13822 {rgb=(.7 .4 .4)} Face 12352 4786 4787 13822 {rgb=(.7 .4 .4)} Face 12353 4724 4794 13823 {rgb=(.7 .4 .4)} Face 12354 4794 4804 13823 {rgb=(.7 .4 .4)} Face 12355 4804 4730 13823 {rgb=(.7 .4 .4)} Face 12356 4730 4724 13823 {rgb=(.7 .4 .4)} Face 12357 4701 4781 13824 {rgb=(.7 .4 .4)} Face 12358 4781 4786 13824 {rgb=(.7 .4 .4)} Face 12359 4786 4713 13824 {rgb=(.7 .4 .4)} Face 12360 4713 4701 13824 {rgb=(.7 .4 .4)} Face 12361 3041 3053 13825 {rgb=(.7 .4 .4)} Face 12362 3053 3057 13825 {rgb=(.7 .4 .4)} Face 12363 3057 3045 13825 {rgb=(.7 .4 .4)} Face 12364 3045 3041 13825 {rgb=(.7 .4 .4)} Face 12365 3119 3057 13826 {rgb=(.7 .4 .4)} Face 12366 3057 3063 13826 {rgb=(.7 .4 .4)} Face 12367 3063 3123 13826 {rgb=(.7 .4 .4)} Face 12368 3123 3119 13826 {rgb=(.7 .4 .4)} Face 12369 3022 3024 13827 {rgb=(.7 .4 .4)} Face 12370 3024 3045 13827 {rgb=(.7 .4 .4)} Face 12371 3045 3043 13827 {rgb=(.7 .4 .4)} Face 12372 3043 3022 13827 {rgb=(.7 .4 .4)} Face 12373 3102 3032 13828 {rgb=(.7 .4 .4)} Face 12374 3032 3043 13828 {rgb=(.7 .4 .4)} Face 12375 3043 3114 13828 {rgb=(.7 .4 .4)} Face 12376 3114 3102 13828 {rgb=(.7 .4 .4)} Face 12377 4375 4538 13829 {rgb=(.7 .4 .4)} Face 12378 4538 4542 13829 {rgb=(.7 .4 .4)} Face 12379 4542 4382 13829 {rgb=(.7 .4 .4)} Face 12380 4382 4375 13829 {rgb=(.7 .4 .4)} Face 12381 4713 4724 13830 {rgb=(.7 .4 .4)} Face 12382 4724 4538 13830 {rgb=(.7 .4 .4)} Face 12383 4538 4528 13830 {rgb=(.7 .4 .4)} Face 12384 4528 4713 13830 {rgb=(.7 .4 .4)} Face 12385 4368 4519 13831 {rgb=(.7 .4 .4)} Face 12386 4519 4528 13831 {rgb=(.7 .4 .4)} Face 12387 4528 4371 13831 {rgb=(.7 .4 .4)} Face 12388 4371 4368 13831 {rgb=(.7 .4 .4)} Face 12389 4116 4251 13832 {rgb=(.7 .4 .4)} Face 12390 4251 4253 13832 {rgb=(.7 .4 .4)} Face 12391 4253 4117 13832 {rgb=(.7 .4 .4)} Face 12392 4117 4116 13832 {rgb=(.7 .4 .4)} Face 12393 4371 4375 13833 {rgb=(.7 .4 .4)} Face 12394 4375 4251 13833 {rgb=(.7 .4 .4)} Face 12395 4251 4250 13833 {rgb=(.7 .4 .4)} Face 12396 4250 4371 13833 {rgb=(.7 .4 .4)} Face 12397 4106 4245 13834 {rgb=(.7 .4 .4)} Face 12398 4245 4250 13834 {rgb=(.7 .4 .4)} Face 12399 4250 4112 13834 {rgb=(.7 .4 .4)} Face 12400 4112 4106 13834 {rgb=(.7 .4 .4)} Face 12401 3823 3987 13835 {rgb=(.7 .4 .4)} Face 12402 3987 3982 13835 {rgb=(.7 .4 .4)} Face 12403 3982 3818 13835 {rgb=(.7 .4 .4)} Face 12404 3818 3823 13835 {rgb=(.7 .4 .4)} Face 12405 4112 4116 13836 {rgb=(.7 .4 .4)} Face 12406 4116 3987 13836 {rgb=(.7 .4 .4)} Face 12407 3987 3985 13836 {rgb=(.7 .4 .4)} Face 12408 3985 4112 13836 {rgb=(.7 .4 .4)} Face 12409 3820 3978 13837 {rgb=(.7 .4 .4)} Face 12410 3978 3985 13837 {rgb=(.7 .4 .4)} Face 12411 3985 3828 13837 {rgb=(.7 .4 .4)} Face 12412 3828 3820 13837 {rgb=(.7 .4 .4)} Face 12413 3472 3614 13838 {rgb=(.7 .4 .4)} Face 12414 3614 3609 13838 {rgb=(.7 .4 .4)} Face 12415 3609 3467 13838 {rgb=(.7 .4 .4)} Face 12416 3467 3472 13838 {rgb=(.7 .4 .4)} Face 12417 3828 3823 13839 {rgb=(.7 .4 .4)} Face 12418 3823 3614 13839 {rgb=(.7 .4 .4)} Face 12419 3614 3616 13839 {rgb=(.7 .4 .4)} Face 12420 3616 3828 13839 {rgb=(.7 .4 .4)} Face 12421 3476 3619 13840 {rgb=(.7 .4 .4)} Face 12422 3619 3616 13840 {rgb=(.7 .4 .4)} Face 12423 3616 3475 13840 {rgb=(.7 .4 .4)} Face 12424 3475 3476 13840 {rgb=(.7 .4 .4)} Face 12425 3222 3343 13841 {rgb=(.7 .4 .4)} Face 12426 3343 3338 13841 {rgb=(.7 .4 .4)} Face 12427 3338 3216 13841 {rgb=(.7 .4 .4)} Face 12428 3216 3222 13841 {rgb=(.7 .4 .4)} Face 12429 3475 3472 13842 {rgb=(.7 .4 .4)} Face 12430 3472 3343 13842 {rgb=(.7 .4 .4)} Face 12431 3343 3349 13842 {rgb=(.7 .4 .4)} Face 12432 3349 3475 13842 {rgb=(.7 .4 .4)} Face 12433 3224 3347 13843 {rgb=(.7 .4 .4)} Face 12434 3347 3349 13843 {rgb=(.7 .4 .4)} Face 12435 3349 3227 13843 {rgb=(.7 .4 .4)} Face 12436 3227 3224 13843 {rgb=(.7 .4 .4)} Face 12437 3227 3222 13844 {rgb=(.7 .4 .4)} Face 12438 3222 3114 13844 {rgb=(.7 .4 .4)} Face 12439 3114 3119 13844 {rgb=(.7 .4 .4)} Face 12440 3119 3227 13844 {rgb=(.7 .4 .4)} Face 12441 2506 2518 13845 {rgb=(.7 .4 .4)} Face 12442 2518 2563 13845 {rgb=(.7 .4 .4)} Face 12443 2563 2552 13845 {rgb=(.7 .4 .4)} Face 12444 2552 2506 13845 {rgb=(.7 .4 .4)} Face 12445 4971 4942 13846 {rgb=(.7 .4 .4)} Face 12446 4942 4957 13846 {rgb=(.7 .4 .4)} Face 12447 4957 4991 13846 {rgb=(.7 .4 .4)} Face 12448 4991 4971 13846 {rgb=(.7 .4 .4)} Face 12449 5086 5028 13847 {rgb=(.7 .4 .4)} Face 12450 5028 4991 13847 {rgb=(.7 .4 .4)} Face 12451 4991 5045 13847 {rgb=(.7 .4 .4)} Face 12452 5045 5086 13847 {rgb=(.7 .4 .4)} Face 12453 5223 5216 13848 {rgb=(.7 .4 .4)} Face 12454 5216 5137 13848 {rgb=(.7 .4 .4)} Face 12455 5137 5144 13848 {rgb=(.7 .4 .4)} Face 12456 5144 5223 13848 {rgb=(.7 .4 .4)} Face 12457 5106 5137 13849 {rgb=(.7 .4 .4)} Face 12458 5137 5190 13849 {rgb=(.7 .4 .4)} Face 12459 5190 5173 13849 {rgb=(.7 .4 .4)} Face 12460 5173 5106 13849 {rgb=(.7 .4 .4)} Face 12461 5180 5206 13850 {rgb=(.7 .4 .4)} Face 12462 5206 5144 13850 {rgb=(.7 .4 .4)} Face 12463 5144 5105 13850 {rgb=(.7 .4 .4)} Face 12464 5105 5180 13850 {rgb=(.7 .4 .4)} Face 12465 5009 5102 13851 {rgb=(.7 .4 .4)} Face 12466 5102 5105 13851 {rgb=(.7 .4 .4)} Face 12467 5105 5016 13851 {rgb=(.7 .4 .4)} Face 12468 5016 5009 13851 {rgb=(.7 .4 .4)} Face 12469 4783 4859 13852 {rgb=(.7 .4 .4)} Face 12470 4859 5016 13852 {rgb=(.7 .4 .4)} Face 12471 5016 4970 13852 {rgb=(.7 .4 .4)} Face 12472 4970 4783 13852 {rgb=(.7 .4 .4)} Face 12473 4835 4925 13853 {rgb=(.7 .4 .4)} Face 12474 4925 4890 13853 {rgb=(.7 .4 .4)} Face 12475 4890 4782 13853 {rgb=(.7 .4 .4)} Face 12476 4782 4835 13853 {rgb=(.7 .4 .4)} Face 12477 4865 4890 13854 {rgb=(.7 .4 .4)} Face 12478 4890 5014 13854 {rgb=(.7 .4 .4)} Face 12479 5014 4986 13854 {rgb=(.7 .4 .4)} Face 12480 4986 4865 13854 {rgb=(.7 .4 .4)} Face 12481 5111 5014 13855 {rgb=(.7 .4 .4)} Face 12482 5014 5044 13855 {rgb=(.7 .4 .4)} Face 12483 5044 5134 13855 {rgb=(.7 .4 .4)} Face 12484 5134 5111 13855 {rgb=(.7 .4 .4)} Face 12485 4689 4722 13856 {rgb=(.7 .4 .4)} Face 12486 4722 4700 13856 {rgb=(.7 .4 .4)} Face 12487 4700 4678 13856 {rgb=(.7 .4 .4)} Face 12488 4678 4689 13856 {rgb=(.7 .4 .4)} Face 12489 4736 4700 13857 {rgb=(.7 .4 .4)} Face 12490 4700 4740 13857 {rgb=(.7 .4 .4)} Face 12491 4740 4764 13857 {rgb=(.7 .4 .4)} Face 12492 4764 4736 13857 {rgb=(.7 .4 .4)} Face 12493 4803 4740 13858 {rgb=(.7 .4 .4)} Face 12494 4740 4722 13858 {rgb=(.7 .4 .4)} Face 12495 4722 4783 13858 {rgb=(.7 .4 .4)} Face 12496 4783 4803 13858 {rgb=(.7 .4 .4)} Face 12497 4840 4803 13859 {rgb=(.7 .4 .4)} Face 12498 4803 4970 13859 {rgb=(.7 .4 .4)} Face 12499 4970 4990 13859 {rgb=(.7 .4 .4)} Face 12500 4990 4840 13859 {rgb=(.7 .4 .4)} Face 12501 4764 4840 13860 {rgb=(.7 .4 .4)} Face 12502 4840 4893 13860 {rgb=(.7 .4 .4)} Face 12503 4893 4835 13860 {rgb=(.7 .4 .4)} Face 12504 4835 4764 13860 {rgb=(.7 .4 .4)} Face 12505 4694 4736 13861 {rgb=(.7 .4 .4)} Face 12506 4736 4782 13861 {rgb=(.7 .4 .4)} Face 12507 4782 4750 13861 {rgb=(.7 .4 .4)} Face 12508 4750 4694 13861 {rgb=(.7 .4 .4)} Face 12509 5173 5175 13862 {rgb=(.7 .4 .4)} Face 12510 5175 5134 13862 {rgb=(.7 .4 .4)} Face 12511 5134 5130 13862 {rgb=(.7 .4 .4)} Face 12512 5130 5173 13862 {rgb=(.7 .4 .4)} Face 12513 5091 5111 13863 {rgb=(.7 .4 .4)} Face 12514 5111 5167 13863 {rgb=(.7 .4 .4)} Face 12515 5167 5157 13863 {rgb=(.7 .4 .4)} Face 12516 5157 5091 13863 {rgb=(.7 .4 .4)} Face 12517 4604 4605 13864 {rgb=(.7 .4 .4)} Face 12518 4605 4534 13864 {rgb=(.7 .4 .4)} Face 12519 4534 4513 13864 {rgb=(.7 .4 .4)} Face 12520 4513 4604 13864 {rgb=(.7 .4 .4)} Face 12521 4572 4561 13865 {rgb=(.7 .4 .4)} Face 12522 4561 4602 13865 {rgb=(.7 .4 .4)} Face 12523 4602 4591 13865 {rgb=(.7 .4 .4)} Face 12524 4591 4572 13865 {rgb=(.7 .4 .4)} Face 12525 4668 4602 13866 {rgb=(.7 .4 .4)} Face 12526 4602 4605 13866 {rgb=(.7 .4 .4)} Face 12527 4605 4685 13866 {rgb=(.7 .4 .4)} Face 12528 4685 4668 13866 {rgb=(.7 .4 .4)} Face 12529 5161 5275 13867 {rgb=(.7 .4 .4)} Face 12530 5275 5283 13867 {rgb=(.7 .4 .4)} Face 12531 5283 5172 13867 {rgb=(.7 .4 .4)} Face 12532 5172 5161 13867 {rgb=(.7 .4 .4)} Face 12533 5594 5451 13868 {rgb=(.7 .4 .4)} Face 12534 5451 5450 13868 {rgb=(.7 .4 .4)} Face 12535 5450 5595 13868 {rgb=(.7 .4 .4)} Face 12536 5595 5594 13868 {rgb=(.7 .4 .4)} Face 12537 4998 5076 13869 {rgb=(.7 .4 .4)} Face 12538 5076 5101 13869 {rgb=(.7 .4 .4)} Face 12539 5101 5018 13869 {rgb=(.7 .4 .4)} Face 12540 5018 4998 13869 {rgb=(.7 .4 .4)} Face 12541 4874 4932 13870 {rgb=(.7 .4 .4)} Face 12542 4932 4940 13870 {rgb=(.7 .4 .4)} Face 12543 4940 4887 13870 {rgb=(.7 .4 .4)} Face 12544 4887 4874 13870 {rgb=(.7 .4 .4)} Face 12545 4758 4790 13871 {rgb=(.7 .4 .4)} Face 12546 4790 4887 13871 {rgb=(.7 .4 .4)} Face 12547 4887 4852 13871 {rgb=(.7 .4 .4)} Face 12548 4852 4758 13871 {rgb=(.7 .4 .4)} Face 12549 4699 4720 13872 {rgb=(.7 .4 .4)} Face 12550 4720 4852 13872 {rgb=(.7 .4 .4)} Face 12551 4852 4834 13872 {rgb=(.7 .4 .4)} Face 12552 4834 4699 13872 {rgb=(.7 .4 .4)} Face 12553 4715 4696 13873 {rgb=(.7 .4 .4)} Face 12554 4696 4834 13873 {rgb=(.7 .4 .4)} Face 12555 4834 4847 13873 {rgb=(.7 .4 .4)} Face 12556 4847 4715 13873 {rgb=(.7 .4 .4)} Face 12557 4677 4668 13874 {rgb=(.7 .4 .4)} Face 12558 4668 4779 13874 {rgb=(.7 .4 .4)} Face 12559 4779 4799 13874 {rgb=(.7 .4 .4)} Face 12560 4799 4677 13874 {rgb=(.7 .4 .4)} Face 12561 4826 4779 13875 {rgb=(.7 .4 .4)} Face 12562 4779 4685 13875 {rgb=(.7 .4 .4)} Face 12563 4685 4706 13875 {rgb=(.7 .4 .4)} Face 12564 4706 4826 13875 {rgb=(.7 .4 .4)} Face 12565 5118 5245 13876 {rgb=(.7 .4 .4)} Face 12566 5245 5239 13876 {rgb=(.7 .4 .4)} Face 12567 5239 5114 13876 {rgb=(.7 .4 .4)} Face 12568 5114 5118 13876 {rgb=(.7 .4 .4)} Face 12569 5610 5436 13877 {rgb=(.7 .4 .4)} Face 12570 5436 5439 13877 {rgb=(.7 .4 .4)} Face 12571 5439 5607 13877 {rgb=(.7 .4 .4)} Face 12572 5607 5610 13877 {rgb=(.7 .4 .4)} Face 12573 4964 5019 13878 {rgb=(.7 .4 .4)} Face 12574 5019 5011 13878 {rgb=(.7 .4 .4)} Face 12575 5011 4948 13878 {rgb=(.7 .4 .4)} Face 12576 4948 4964 13878 {rgb=(.7 .4 .4)} Face 12577 4878 4941 13879 {rgb=(.7 .4 .4)} Face 12578 4941 4929 13879 {rgb=(.7 .4 .4)} Face 12579 4929 4857 13879 {rgb=(.7 .4 .4)} Face 12580 4857 4878 13879 {rgb=(.7 .4 .4)} Face 12581 4613 4732 13880 {rgb=(.7 .4 .4)} Face 12582 4732 4711 13880 {rgb=(.7 .4 .4)} Face 12583 4711 4590 13880 {rgb=(.7 .4 .4)} Face 12584 4590 4613 13880 {rgb=(.7 .4 .4)} Face 12585 4488 4530 13881 {rgb=(.7 .4 .4)} Face 12586 4530 4500 13881 {rgb=(.7 .4 .4)} Face 12587 4500 4465 13881 {rgb=(.7 .4 .4)} Face 12588 4465 4488 13881 {rgb=(.7 .4 .4)} Face 12589 4503 4497 13882 {rgb=(.7 .4 .4)} Face 12590 4497 4473 13882 {rgb=(.7 .4 .4)} Face 12591 4473 4479 13882 {rgb=(.7 .4 .4)} Face 12592 4479 4503 13882 {rgb=(.7 .4 .4)} Face 12593 4411 4448 13883 {rgb=(.7 .4 .4)} Face 12594 4448 4376 13883 {rgb=(.7 .4 .4)} Face 12595 4376 4304 13883 {rgb=(.7 .4 .4)} Face 12596 4304 4411 13883 {rgb=(.7 .4 .4)} Face 12597 4476 4440 13884 {rgb=(.7 .4 .4)} Face 12598 4440 4481 13884 {rgb=(.7 .4 .4)} Face 12599 4481 4499 13884 {rgb=(.7 .4 .4)} Face 12600 4499 4476 13884 {rgb=(.7 .4 .4)} Face 12601 4316 4347 13885 {rgb=(.7 .4 .4)} Face 12602 4347 4229 13885 {rgb=(.7 .4 .4)} Face 12603 4229 4163 13885 {rgb=(.7 .4 .4)} Face 12604 4163 4316 13885 {rgb=(.7 .4 .4)} Face 12605 4303 4305 13886 {rgb=(.7 .4 .4)} Face 12606 4305 4126 13886 {rgb=(.7 .4 .4)} Face 12607 4126 4120 13886 {rgb=(.7 .4 .4)} Face 12608 4120 4303 13886 {rgb=(.7 .4 .4)} Face 12609 5261 5279 13887 {rgb=(.7 .4 .4)} Face 12610 5279 5310 13887 {rgb=(.7 .4 .4)} Face 12611 5310 5282 13887 {rgb=(.7 .4 .4)} Face 12612 5282 5261 13887 {rgb=(.7 .4 .4)} Face 12613 5157 5198 13888 {rgb=(.7 .4 .4)} Face 12614 5198 5209 13888 {rgb=(.7 .4 .4)} Face 12615 5209 5155 13888 {rgb=(.7 .4 .4)} Face 12616 5155 5157 13888 {rgb=(.7 .4 .4)} Face 12617 4986 5091 13889 {rgb=(.7 .4 .4)} Face 12618 5091 5074 13889 {rgb=(.7 .4 .4)} Face 12619 5074 4963 13889 {rgb=(.7 .4 .4)} Face 12620 4963 4986 13889 {rgb=(.7 .4 .4)} Face 12621 4750 4865 13890 {rgb=(.7 .4 .4)} Face 12622 4865 4825 13890 {rgb=(.7 .4 .4)} Face 12623 4825 4709 13890 {rgb=(.7 .4 .4)} Face 12624 4709 4750 13890 {rgb=(.7 .4 .4)} Face 12625 4678 4694 13891 {rgb=(.7 .4 .4)} Face 12626 4694 4659 13891 {rgb=(.7 .4 .4)} Face 12627 4659 4629 13891 {rgb=(.7 .4 .4)} Face 12628 4629 4678 13891 {rgb=(.7 .4 .4)} Face 12629 4879 4826 13892 {rgb=(.7 .4 .4)} Face 12630 4826 4847 13892 {rgb=(.7 .4 .4)} Face 12631 4847 4896 13892 {rgb=(.7 .4 .4)} Face 12632 4896 4879 13892 {rgb=(.7 .4 .4)} Face 12633 4601 4715 13893 {rgb=(.7 .4 .4)} Face 12634 4715 4706 13893 {rgb=(.7 .4 .4)} Face 12635 4706 4604 13893 {rgb=(.7 .4 .4)} Face 12636 4604 4601 13893 {rgb=(.7 .4 .4)} Face 12637 4479 4511 13894 {rgb=(.7 .4 .4)} Face 12638 4511 4513 13894 {rgb=(.7 .4 .4)} Face 12639 4513 4476 13894 {rgb=(.7 .4 .4)} Face 12640 4476 4479 13894 {rgb=(.7 .4 .4)} Face 12641 4549 4503 13895 {rgb=(.7 .4 .4)} Face 12642 4503 4499 13895 {rgb=(.7 .4 .4)} Face 12643 4499 4541 13895 {rgb=(.7 .4 .4)} Face 12644 4541 4549 13895 {rgb=(.7 .4 .4)} Face 12645 3747 3700 13896 {rgb=(.7 .4 .4)} Face 12646 3700 3509 13896 {rgb=(.7 .4 .4)} Face 12647 3509 3566 13896 {rgb=(.7 .4 .4)} Face 12648 3566 3747 13896 {rgb=(.7 .4 .4)} Face 12649 4663 4566 13897 {rgb=(.7 .4 .4)} Face 12650 4566 4591 13897 {rgb=(.7 .4 .4)} Face 12651 4591 4677 13897 {rgb=(.7 .4 .4)} Face 12652 4677 4663 13897 {rgb=(.7 .4 .4)} Face 12653 4469 4572 13898 {rgb=(.7 .4 .4)} Face 12654 4572 4566 13898 {rgb=(.7 .4 .4)} Face 12655 4566 4463 13898 {rgb=(.7 .4 .4)} Face 12656 4463 4469 13898 {rgb=(.7 .4 .4)} Face 12657 4337 4180 13899 {rgb=(.7 .4 .4)} Face 12658 4180 4190 13899 {rgb=(.7 .4 .4)} Face 12659 4190 4344 13899 {rgb=(.7 .4 .4)} Face 12660 4344 4337 13899 {rgb=(.7 .4 .4)} Face 12661 3762 3989 13900 {rgb=(.7 .4 .4)} Face 12662 3989 3966 13900 {rgb=(.7 .4 .4)} Face 12663 3966 3747 13900 {rgb=(.7 .4 .4)} Face 12664 3747 3762 13900 {rgb=(.7 .4 .4)} Face 12665 3513 3590 13901 {rgb=(.7 .4 .4)} Face 12666 3590 3566 13901 {rgb=(.7 .4 .4)} Face 12667 3566 3473 13901 {rgb=(.7 .4 .4)} Face 12668 3473 3513 13901 {rgb=(.7 .4 .4)} Face 12669 3567 3513 13902 {rgb=(.7 .4 .4)} Face 12670 3513 3496 13902 {rgb=(.7 .4 .4)} Face 12671 3496 3561 13902 {rgb=(.7 .4 .4)} Face 12672 3561 3567 13902 {rgb=(.7 .4 .4)} Face 12673 3445 3496 13903 {rgb=(.7 .4 .4)} Face 12674 3496 3473 13903 {rgb=(.7 .4 .4)} Face 12675 3473 3419 13903 {rgb=(.7 .4 .4)} Face 12676 3419 3445 13903 {rgb=(.7 .4 .4)} Face 12677 4888 4800 13904 {rgb=(.7 .4 .4)} Face 12678 4800 4799 13904 {rgb=(.7 .4 .4)} Face 12679 4799 4879 13904 {rgb=(.7 .4 .4)} Face 12680 4879 4888 13904 {rgb=(.7 .4 .4)} Face 12681 4892 4888 13905 {rgb=(.7 .4 .4)} Face 12682 4888 4896 13905 {rgb=(.7 .4 .4)} Face 12683 4896 4904 13905 {rgb=(.7 .4 .4)} Face 12684 4904 4892 13905 {rgb=(.7 .4 .4)} Face 12685 3541 3490 13906 {rgb=(.7 .4 .4)} Face 12686 3490 3460 13906 {rgb=(.7 .4 .4)} Face 12687 3460 3521 13906 {rgb=(.7 .4 .4)} Face 12688 3521 3541 13906 {rgb=(.7 .4 .4)} Face 12689 3416 3450 13907 {rgb=(.7 .4 .4)} Face 12690 3450 3490 13907 {rgb=(.7 .4 .4)} Face 12691 3490 3451 13907 {rgb=(.7 .4 .4)} Face 12692 3451 3416 13907 {rgb=(.7 .4 .4)} Face 12693 3379 3377 13908 {rgb=(.7 .4 .4)} Face 12694 3377 3337 13908 {rgb=(.7 .4 .4)} Face 12695 3337 3336 13908 {rgb=(.7 .4 .4)} Face 12696 3336 3379 13908 {rgb=(.7 .4 .4)} Face 12697 3801 3662 13909 {rgb=(.7 .4 .4)} Face 12698 3662 3670 13909 {rgb=(.7 .4 .4)} Face 12699 3670 3822 13909 {rgb=(.7 .4 .4)} Face 12700 3822 3801 13909 {rgb=(.7 .4 .4)} Face 12701 4311 4531 13910 {rgb=(.7 .4 .4)} Face 12702 4531 4518 13910 {rgb=(.7 .4 .4)} Face 12703 4518 4303 13910 {rgb=(.7 .4 .4)} Face 12704 4303 4311 13910 {rgb=(.7 .4 .4)} Face 12705 5087 4817 13911 {rgb=(.7 .4 .4)} Face 12706 4817 4824 13911 {rgb=(.7 .4 .4)} Face 12707 4824 5094 13911 {rgb=(.7 .4 .4)} Face 12708 5094 5087 13911 {rgb=(.7 .4 .4)} Face 12709 4920 5166 13912 {rgb=(.7 .4 .4)} Face 12710 5166 5170 13912 {rgb=(.7 .4 .4)} Face 12711 5170 4934 13912 {rgb=(.7 .4 .4)} Face 12712 4934 4920 13912 {rgb=(.7 .4 .4)} Face 12713 5635 5414 13913 {rgb=(.7 .4 .4)} Face 12714 5414 5412 13913 {rgb=(.7 .4 .4)} Face 12715 5412 5637 13913 {rgb=(.7 .4 .4)} Face 12716 5637 5635 13913 {rgb=(.7 .4 .4)} Face 12717 4349 4652 13914 {rgb=(.7 .4 .4)} Face 12718 4652 4662 13914 {rgb=(.7 .4 .4)} Face 12719 4662 4356 13914 {rgb=(.7 .4 .4)} Face 12720 4356 4349 13914 {rgb=(.7 .4 .4)} Face 12721 3939 4129 13915 {rgb=(.7 .4 .4)} Face 12722 4129 4132 13915 {rgb=(.7 .4 .4)} Face 12723 4132 3945 13915 {rgb=(.7 .4 .4)} Face 12724 3945 3939 13915 {rgb=(.7 .4 .4)} Face 12725 3603 3735 13916 {rgb=(.7 .4 .4)} Face 12726 3735 3753 13916 {rgb=(.7 .4 .4)} Face 12727 3753 3626 13916 {rgb=(.7 .4 .4)} Face 12728 3626 3603 13916 {rgb=(.7 .4 .4)} Face 12729 4120 3959 13917 {rgb=(.7 .4 .4)} Face 12730 3959 3965 13917 {rgb=(.7 .4 .4)} Face 12731 3965 4125 13917 {rgb=(.7 .4 .4)} Face 12732 4125 4120 13917 {rgb=(.7 .4 .4)} Face 12733 5671 5379 13918 {rgb=(.7 .4 .4)} Face 12734 5379 5382 13918 {rgb=(.7 .4 .4)} Face 12735 5382 5668 13918 {rgb=(.7 .4 .4)} Face 12736 5668 5671 13918 {rgb=(.7 .4 .4)} Face 12737 3111 3056 13919 {rgb=(.7 .4 .4)} Face 12738 3056 2901 13919 {rgb=(.7 .4 .4)} Face 12739 2901 2970 13919 {rgb=(.7 .4 .4)} Face 12740 2970 3111 13919 {rgb=(.7 .4 .4)} Face 12741 3173 3143 13920 {rgb=(.7 .4 .4)} Face 12742 3143 3003 13920 {rgb=(.7 .4 .4)} Face 12743 3003 3030 13920 {rgb=(.7 .4 .4)} Face 12744 3030 3173 13920 {rgb=(.7 .4 .4)} Face 12745 4987 5195 13921 {rgb=(.7 .4 .4)} Face 12746 5195 5199 13921 {rgb=(.7 .4 .4)} Face 12747 5199 4996 13921 {rgb=(.7 .4 .4)} Face 12748 4996 4987 13921 {rgb=(.7 .4 .4)} Face 12749 5625 5421 13922 {rgb=(.7 .4 .4)} Face 12750 5421 5419 13922 {rgb=(.7 .4 .4)} Face 12751 5419 5628 13922 {rgb=(.7 .4 .4)} Face 12752 5628 5625 13922 {rgb=(.7 .4 .4)} Face 12753 4484 4746 13923 {rgb=(.7 .4 .4)} Face 12754 4746 4754 13923 {rgb=(.7 .4 .4)} Face 12755 4754 4491 13923 {rgb=(.7 .4 .4)} Face 12756 4491 4484 13923 {rgb=(.7 .4 .4)} Face 12757 4808 4791 13924 {rgb=(.7 .4 .4)} Face 12758 4791 4793 13924 {rgb=(.7 .4 .4)} Face 12759 4793 4810 13924 {rgb=(.7 .4 .4)} Face 12760 4810 4808 13924 {rgb=(.7 .4 .4)} Face 12761 4523 4793 13925 {rgb=(.7 .4 .4)} Face 12762 4793 4774 13925 {rgb=(.7 .4 .4)} Face 12763 4774 4512 13925 {rgb=(.7 .4 .4)} Face 12764 4512 4523 13925 {rgb=(.7 .4 .4)} Face 12765 4829 4830 13926 {rgb=(.7 .4 .4)} Face 12766 4830 4810 13926 {rgb=(.7 .4 .4)} Face 12767 4810 4805 13926 {rgb=(.7 .4 .4)} Face 12768 4805 4829 13926 {rgb=(.7 .4 .4)} Face 12769 4540 4796 13927 {rgb=(.7 .4 .4)} Face 12770 4796 4805 13927 {rgb=(.7 .4 .4)} Face 12771 4805 4537 13927 {rgb=(.7 .4 .4)} Face 12772 4537 4540 13927 {rgb=(.7 .4 .4)} Face 12773 4165 3871 13928 {rgb=(.7 .4 .4)} Face 12774 3871 3884 13928 {rgb=(.7 .4 .4)} Face 12775 3884 4173 13928 {rgb=(.7 .4 .4)} Face 12776 4173 4165 13928 {rgb=(.7 .4 .4)} Face 12777 3436 3580 13929 {rgb=(.7 .4 .4)} Face 12778 3580 3574 13929 {rgb=(.7 .4 .4)} Face 12779 3574 3432 13929 {rgb=(.7 .4 .4)} Face 12780 3432 3436 13929 {rgb=(.7 .4 .4)} Face 12781 3571 3574 13930 {rgb=(.7 .4 .4)} Face 12782 3574 3871 13930 {rgb=(.7 .4 .4)} Face 12783 3871 3866 13930 {rgb=(.7 .4 .4)} Face 12784 3866 3571 13930 {rgb=(.7 .4 .4)} Face 12785 3424 3423 13931 {rgb=(.7 .4 .4)} Face 12786 3423 3432 13931 {rgb=(.7 .4 .4)} Face 12787 3432 3433 13931 {rgb=(.7 .4 .4)} Face 12788 3433 3424 13931 {rgb=(.7 .4 .4)} Face 12789 3576 3438 13932 {rgb=(.7 .4 .4)} Face 12790 3438 3433 13932 {rgb=(.7 .4 .4)} Face 12791 3433 3571 13932 {rgb=(.7 .4 .4)} Face 12792 3571 3576 13932 {rgb=(.7 .4 .4)} Face 12793 4156 4165 13933 {rgb=(.7 .4 .4)} Face 12794 4165 4537 13933 {rgb=(.7 .4 .4)} Face 12795 4537 4523 13933 {rgb=(.7 .4 .4)} Face 12796 4523 4156 13933 {rgb=(.7 .4 .4)} Face 12797 3866 4156 13934 {rgb=(.7 .4 .4)} Face 12798 4156 4152 13934 {rgb=(.7 .4 .4)} Face 12799 4152 3864 13934 {rgb=(.7 .4 .4)} Face 12800 3864 3866 13934 {rgb=(.7 .4 .4)} Face 12801 2782 2804 13935 {rgb=(.7 .4 .4)} Face 12802 2804 2798 13935 {rgb=(.7 .4 .4)} Face 12803 2798 2778 13935 {rgb=(.7 .4 .4)} Face 12804 2778 2782 13935 {rgb=(.7 .4 .4)} Face 12805 2717 2712 13936 {rgb=(.7 .4 .4)} Face 12806 2712 2766 13936 {rgb=(.7 .4 .4)} Face 12807 2766 2771 13936 {rgb=(.7 .4 .4)} Face 12808 2771 2717 13936 {rgb=(.7 .4 .4)} Face 12809 2560 2507 13937 {rgb=(.7 .4 .4)} Face 12810 2507 2627 13937 {rgb=(.7 .4 .4)} Face 12811 2627 2653 13937 {rgb=(.7 .4 .4)} Face 12812 2653 2560 13937 {rgb=(.7 .4 .4)} Face 12813 2350 2265 13938 {rgb=(.7 .4 .4)} Face 12814 2265 2386 13938 {rgb=(.7 .4 .4)} Face 12815 2386 2441 13938 {rgb=(.7 .4 .4)} Face 12816 2441 2350 13938 {rgb=(.7 .4 .4)} Face 12817 2194 2143 13939 {rgb=(.7 .4 .4)} Face 12818 2143 2186 13939 {rgb=(.7 .4 .4)} Face 12819 2186 2262 13939 {rgb=(.7 .4 .4)} Face 12820 2262 2194 13939 {rgb=(.7 .4 .4)} Face 12821 2122 2125 13940 {rgb=(.7 .4 .4)} Face 12822 2125 2128 13940 {rgb=(.7 .4 .4)} Face 12823 2128 2142 13940 {rgb=(.7 .4 .4)} Face 12824 2142 2122 13940 {rgb=(.7 .4 .4)} Face 12825 2156 2162 13941 {rgb=(.7 .4 .4)} Face 12826 2162 2136 13941 {rgb=(.7 .4 .4)} Face 12827 2136 2113 13941 {rgb=(.7 .4 .4)} Face 12828 2113 2156 13941 {rgb=(.7 .4 .4)} Face 12829 2256 2222 13942 {rgb=(.7 .4 .4)} Face 12830 2222 2191 13942 {rgb=(.7 .4 .4)} Face 12831 2191 2226 13942 {rgb=(.7 .4 .4)} Face 12832 2226 2256 13942 {rgb=(.7 .4 .4)} Face 12833 2276 2290 13943 {rgb=(.7 .4 .4)} Face 12834 2290 2252 13943 {rgb=(.7 .4 .4)} Face 12835 2252 2242 13943 {rgb=(.7 .4 .4)} Face 12836 2242 2276 13943 {rgb=(.7 .4 .4)} Face 12837 2089 2070 13944 {rgb=(.7 .4 .4)} Face 12838 2070 2290 13944 {rgb=(.7 .4 .4)} Face 12839 2290 2316 13944 {rgb=(.7 .4 .4)} Face 12840 2316 2089 13944 {rgb=(.7 .4 .4)} Face 12841 2341 2331 13945 {rgb=(.7 .4 .4)} Face 12842 2331 2316 13945 {rgb=(.7 .4 .4)} Face 12843 2316 2312 13945 {rgb=(.7 .4 .4)} Face 12844 2312 2341 13945 {rgb=(.7 .4 .4)} Face 12845 2100 2097 13946 {rgb=(.7 .4 .4)} Face 12846 2097 2331 13946 {rgb=(.7 .4 .4)} Face 12847 2331 2335 13946 {rgb=(.7 .4 .4)} Face 12848 2335 2100 13946 {rgb=(.7 .4 .4)} Face 12849 2359 2332 13947 {rgb=(.7 .4 .4)} Face 12850 2332 2335 13947 {rgb=(.7 .4 .4)} Face 12851 2335 2357 13947 {rgb=(.7 .4 .4)} Face 12852 2357 2359 13947 {rgb=(.7 .4 .4)} Face 12853 2375 2321 13948 {rgb=(.7 .4 .4)} Face 12854 2321 2325 13948 {rgb=(.7 .4 .4)} Face 12855 2325 2364 13948 {rgb=(.7 .4 .4)} Face 12856 2364 2375 13948 {rgb=(.7 .4 .4)} Face 12857 2387 2344 13949 {rgb=(.7 .4 .4)} Face 12858 2344 2329 13949 {rgb=(.7 .4 .4)} Face 12859 2329 2379 13949 {rgb=(.7 .4 .4)} Face 12860 2379 2387 13949 {rgb=(.7 .4 .4)} Face 12861 2403 2336 13950 {rgb=(.7 .4 .4)} Face 12862 2336 2347 13950 {rgb=(.7 .4 .4)} Face 12863 2347 2410 13950 {rgb=(.7 .4 .4)} Face 12864 2410 2403 13950 {rgb=(.7 .4 .4)} Face 12865 2400 2216 13951 {rgb=(.7 .4 .4)} Face 12866 2216 2240 13951 {rgb=(.7 .4 .4)} Face 12867 2240 2417 13951 {rgb=(.7 .4 .4)} Face 12868 2417 2400 13951 {rgb=(.7 .4 .4)} Face 12869 2221 2236 13952 {rgb=(.7 .4 .4)} Face 12870 2236 2216 13952 {rgb=(.7 .4 .4)} Face 12871 2216 2202 13952 {rgb=(.7 .4 .4)} Face 12872 2202 2221 13952 {rgb=(.7 .4 .4)} Face 12873 2172 2166 13953 {rgb=(.7 .4 .4)} Face 12874 2166 2193 13953 {rgb=(.7 .4 .4)} Face 12875 2193 2208 13953 {rgb=(.7 .4 .4)} Face 12876 2208 2172 13953 {rgb=(.7 .4 .4)} Face 12877 2173 2195 13954 {rgb=(.7 .4 .4)} Face 12878 2195 2166 13954 {rgb=(.7 .4 .4)} Face 12879 2166 2150 13954 {rgb=(.7 .4 .4)} Face 12880 2150 2173 13954 {rgb=(.7 .4 .4)} Face 12881 2286 2369 13955 {rgb=(.7 .4 .4)} Face 12882 2369 2401 13955 {rgb=(.7 .4 .4)} Face 12883 2401 2326 13955 {rgb=(.7 .4 .4)} Face 12884 2326 2286 13955 {rgb=(.7 .4 .4)} Face 12885 2370 2395 13956 {rgb=(.7 .4 .4)} Face 12886 2395 2369 13956 {rgb=(.7 .4 .4)} Face 12887 2369 2330 13956 {rgb=(.7 .4 .4)} Face 12888 2330 2370 13956 {rgb=(.7 .4 .4)} Face 12889 2419 2464 13957 {rgb=(.7 .4 .4)} Face 12890 2464 2475 13957 {rgb=(.7 .4 .4)} Face 12891 2475 2434 13957 {rgb=(.7 .4 .4)} Face 12892 2434 2419 13957 {rgb=(.7 .4 .4)} Face 12893 2473 2488 13958 {rgb=(.7 .4 .4)} Face 12894 2488 2464 13958 {rgb=(.7 .4 .4)} Face 12895 2464 2447 13958 {rgb=(.7 .4 .4)} Face 12896 2447 2473 13958 {rgb=(.7 .4 .4)} Face 12897 2416 2406 13959 {rgb=(.7 .4 .4)} Face 12898 2406 2433 13959 {rgb=(.7 .4 .4)} Face 12899 2433 2446 13959 {rgb=(.7 .4 .4)} Face 12900 2446 2416 13959 {rgb=(.7 .4 .4)} Face 12901 2411 2432 13960 {rgb=(.7 .4 .4)} Face 12902 2432 2406 13960 {rgb=(.7 .4 .4)} Face 12903 2406 2382 13960 {rgb=(.7 .4 .4)} Face 12904 2382 2411 13960 {rgb=(.7 .4 .4)} Face 12905 2261 2257 13961 {rgb=(.7 .4 .4)} Face 12906 2257 2277 13961 {rgb=(.7 .4 .4)} Face 12907 2277 2292 13961 {rgb=(.7 .4 .4)} Face 12908 2292 2261 13961 {rgb=(.7 .4 .4)} Face 12909 5867 5178 13962 {rgb=(.7 .4 .4)} Face 12910 5178 5177 13962 {rgb=(.7 .4 .4)} Face 12911 5177 5868 13962 {rgb=(.7 .4 .4)} Face 12912 5868 5867 13962 {rgb=(.7 .4 .4)} Face 12913 4038 4399 13963 {rgb=(.7 .4 .4)} Face 12914 4399 4401 13963 {rgb=(.7 .4 .4)} Face 12915 4401 4040 13963 {rgb=(.7 .4 .4)} Face 12916 4040 4038 13963 {rgb=(.7 .4 .4)} Face 12917 3572 3901 13964 {rgb=(.7 .4 .4)} Face 12918 3901 3902 13964 {rgb=(.7 .4 .4)} Face 12919 3902 3570 13964 {rgb=(.7 .4 .4)} Face 12920 3570 3572 13964 {rgb=(.7 .4 .4)} Face 12921 2649 3048 13965 {rgb=(.7 .4 .4)} Face 12922 3048 3042 13965 {rgb=(.7 .4 .4)} Face 12923 3042 2638 13965 {rgb=(.7 .4 .4)} Face 12924 2638 2649 13965 {rgb=(.7 .4 .4)} Face 12925 2203 2148 13966 {rgb=(.7 .4 .4)} Face 12926 2148 2123 13966 {rgb=(.7 .4 .4)} Face 12927 2123 2161 13966 {rgb=(.7 .4 .4)} Face 12928 2161 2203 13966 {rgb=(.7 .4 .4)} Face 12929 2271 2319 13967 {rgb=(.7 .4 .4)} Face 12930 2319 2280 13967 {rgb=(.7 .4 .4)} Face 12931 2280 2237 13967 {rgb=(.7 .4 .4)} Face 12932 2237 2271 13967 {rgb=(.7 .4 .4)} Face 12933 2231 2227 13968 {rgb=(.7 .4 .4)} Face 12934 2227 2185 13968 {rgb=(.7 .4 .4)} Face 12935 2185 2190 13968 {rgb=(.7 .4 .4)} Face 12936 2190 2231 13968 {rgb=(.7 .4 .4)} Face 12937 2362 2281 13969 {rgb=(.7 .4 .4)} Face 12938 2281 2247 13969 {rgb=(.7 .4 .4)} Face 12939 2247 2327 13969 {rgb=(.7 .4 .4)} Face 12940 2327 2362 13969 {rgb=(.7 .4 .4)} Face 12941 2328 2373 13970 {rgb=(.7 .4 .4)} Face 12942 2373 2334 13970 {rgb=(.7 .4 .4)} Face 12943 2334 2294 13970 {rgb=(.7 .4 .4)} Face 12944 2294 2328 13970 {rgb=(.7 .4 .4)} Face 12945 2758 2667 13971 {rgb=(.7 .4 .4)} Face 12946 2667 2632 13971 {rgb=(.7 .4 .4)} Face 12947 2632 2708 13971 {rgb=(.7 .4 .4)} Face 12948 2708 2758 13971 {rgb=(.7 .4 .4)} Face 12949 2423 2533 13972 {rgb=(.7 .4 .4)} Face 12950 2533 2606 13972 {rgb=(.7 .4 .4)} Face 12951 2606 2509 13972 {rgb=(.7 .4 .4)} Face 12952 2509 2423 13972 {rgb=(.7 .4 .4)} Face 12953 2243 2269 13973 {rgb=(.7 .4 .4)} Face 12954 2269 2424 13973 {rgb=(.7 .4 .4)} Face 12955 2424 2403 13973 {rgb=(.7 .4 .4)} Face 12956 2403 2243 13973 {rgb=(.7 .4 .4)} Face 12957 2364 2274 13974 {rgb=(.7 .4 .4)} Face 12958 2274 2138 13974 {rgb=(.7 .4 .4)} Face 12959 2138 2175 13974 {rgb=(.7 .4 .4)} Face 12960 2175 2364 13974 {rgb=(.7 .4 .4)} Face 12961 2155 2137 13975 {rgb=(.7 .4 .4)} Face 12962 2137 2274 13975 {rgb=(.7 .4 .4)} Face 12963 2274 2359 13975 {rgb=(.7 .4 .4)} Face 12964 2359 2155 13975 {rgb=(.7 .4 .4)} Face 12965 2379 2375 13976 {rgb=(.7 .4 .4)} Face 12966 2375 2213 13976 {rgb=(.7 .4 .4)} Face 12967 2213 2218 13976 {rgb=(.7 .4 .4)} Face 12968 2218 2379 13976 {rgb=(.7 .4 .4)} Face 12969 2410 2387 13977 {rgb=(.7 .4 .4)} Face 12970 2387 2220 13977 {rgb=(.7 .4 .4)} Face 12971 2220 2243 13977 {rgb=(.7 .4 .4)} Face 12972 2243 2410 13977 {rgb=(.7 .4 .4)} Face 12973 2698 2780 13978 {rgb=(.7 .4 .4)} Face 12974 2780 2708 13978 {rgb=(.7 .4 .4)} Face 12975 2708 2637 13978 {rgb=(.7 .4 .4)} Face 12976 2637 2698 13978 {rgb=(.7 .4 .4)} Face 12977 2118 2140 13979 {rgb=(.7 .4 .4)} Face 12978 2140 2357 13979 {rgb=(.7 .4 .4)} Face 12979 2357 2341 13979 {rgb=(.7 .4 .4)} Face 12980 2341 2118 13979 {rgb=(.7 .4 .4)} Face 12981 2467 2560 13980 {rgb=(.7 .4 .4)} Face 12982 2560 2536 13980 {rgb=(.7 .4 .4)} Face 12983 2536 2463 13980 {rgb=(.7 .4 .4)} Face 12984 2463 2467 13980 {rgb=(.7 .4 .4)} Face 12985 2624 2590 13981 {rgb=(.7 .4 .4)} Face 12986 2590 2653 13981 {rgb=(.7 .4 .4)} Face 12987 2653 2717 13981 {rgb=(.7 .4 .4)} Face 12988 2717 2624 13981 {rgb=(.7 .4 .4)} Face 12989 2441 2467 13982 {rgb=(.7 .4 .4)} Face 12990 2467 2345 13982 {rgb=(.7 .4 .4)} Face 12991 2345 2299 13982 {rgb=(.7 .4 .4)} Face 12992 2299 2441 13982 {rgb=(.7 .4 .4)} Face 12993 2262 2350 13983 {rgb=(.7 .4 .4)} Face 12994 2350 2299 13983 {rgb=(.7 .4 .4)} Face 12995 2299 2196 13983 {rgb=(.7 .4 .4)} Face 12996 2196 2262 13983 {rgb=(.7 .4 .4)} Face 12997 2142 2194 13984 {rgb=(.7 .4 .4)} Face 12998 2194 2084 13984 {rgb=(.7 .4 .4)} Face 12999 2084 2008 13984 {rgb=(.7 .4 .4)} Face 13000 2008 2142 13984 {rgb=(.7 .4 .4)} Face 13001 2677 2656 13985 {rgb=(.7 .4 .4)} Face 13002 2656 2771 13985 {rgb=(.7 .4 .4)} Face 13003 2771 2782 13985 {rgb=(.7 .4 .4)} Face 13004 2782 2677 13985 {rgb=(.7 .4 .4)} Face 13005 2654 2670 13986 {rgb=(.7 .4 .4)} Face 13006 2670 2778 13986 {rgb=(.7 .4 .4)} Face 13007 2778 2770 13986 {rgb=(.7 .4 .4)} Face 13008 2770 2654 13986 {rgb=(.7 .4 .4)} Face 13009 2611 2634 13987 {rgb=(.7 .4 .4)} Face 13010 2634 2737 13987 {rgb=(.7 .4 .4)} Face 13011 2737 2698 13987 {rgb=(.7 .4 .4)} Face 13012 2698 2611 13987 {rgb=(.7 .4 .4)} Face 13013 2065 2122 13988 {rgb=(.7 .4 .4)} Face 13014 2122 1915 13988 {rgb=(.7 .4 .4)} Face 13015 1915 1833 13988 {rgb=(.7 .4 .4)} Face 13016 1833 2065 13988 {rgb=(.7 .4 .4)} Face 13017 2113 2065 13989 {rgb=(.7 .4 .4)} Face 13018 2065 1804 13989 {rgb=(.7 .4 .4)} Face 13019 1804 1873 13989 {rgb=(.7 .4 .4)} Face 13020 1873 2113 13989 {rgb=(.7 .4 .4)} Face 13021 2226 2156 13990 {rgb=(.7 .4 .4)} Face 13022 2156 1944 13990 {rgb=(.7 .4 .4)} Face 13023 1944 2040 13990 {rgb=(.7 .4 .4)} Face 13024 2040 2226 13990 {rgb=(.7 .4 .4)} Face 13025 2242 2256 13991 {rgb=(.7 .4 .4)} Face 13026 2256 2040 13991 {rgb=(.7 .4 .4)} Face 13027 2040 2027 13991 {rgb=(.7 .4 .4)} Face 13028 2027 2242 13991 {rgb=(.7 .4 .4)} Face 13029 2312 2276 13992 {rgb=(.7 .4 .4)} Face 13030 2276 2052 13992 {rgb=(.7 .4 .4)} Face 13031 2052 2078 13992 {rgb=(.7 .4 .4)} Face 13032 2078 2312 13992 {rgb=(.7 .4 .4)} Face 13033 9071 9119 13993 {rgb=(.7 .4 .4)} Face 13034 9119 9006 13993 {rgb=(.7 .4 .4)} Face 13035 9006 8991 13993 {rgb=(.7 .4 .4)} Face 13036 8991 9071 13993 {rgb=(.7 .4 .4)} Face 13037 8890 9006 13994 {rgb=(.7 .4 .4)} Face 13038 9006 9033 13994 {rgb=(.7 .4 .4)} Face 13039 9033 8905 13994 {rgb=(.7 .4 .4)} Face 13040 8905 8890 13994 {rgb=(.7 .4 .4)} Face 13041 9080 9033 13995 {rgb=(.7 .4 .4)} Face 13042 9033 9161 13995 {rgb=(.7 .4 .4)} Face 13043 9161 9210 13995 {rgb=(.7 .4 .4)} Face 13044 9210 9080 13995 {rgb=(.7 .4 .4)} Face 13045 9219 9161 13996 {rgb=(.7 .4 .4)} Face 13046 9161 9119 13996 {rgb=(.7 .4 .4)} Face 13047 9119 9153 13996 {rgb=(.7 .4 .4)} Face 13048 9153 9219 13996 {rgb=(.7 .4 .4)} Face 13049 8927 9080 13997 {rgb=(.7 .4 .4)} Face 13050 9080 9135 13997 {rgb=(.7 .4 .4)} Face 13051 9135 8965 13997 {rgb=(.7 .4 .4)} Face 13052 8965 8927 13997 {rgb=(.7 .4 .4)} Face 13053 9176 9135 13998 {rgb=(.7 .4 .4)} Face 13054 9135 9252 13998 {rgb=(.7 .4 .4)} Face 13055 9252 9275 13998 {rgb=(.7 .4 .4)} Face 13056 9275 9176 13998 {rgb=(.7 .4 .4)} Face 13057 9278 9252 13999 {rgb=(.7 .4 .4)} Face 13058 9252 9210 13999 {rgb=(.7 .4 .4)} Face 13059 9210 9259 13999 {rgb=(.7 .4 .4)} Face 13060 9259 9278 13999 {rgb=(.7 .4 .4)} Face 13061 9324 9298 14000 {rgb=(.7 .4 .4)} Face 13062 9298 9275 14000 {rgb=(.7 .4 .4)} Face 13063 9275 9299 14000 {rgb=(.7 .4 .4)} Face 13064 9299 9324 14000 {rgb=(.7 .4 .4)} Face 13065 8993 9176 14001 {rgb=(.7 .4 .4)} Face 13066 9176 9224 14001 {rgb=(.7 .4 .4)} Face 13067 9224 9018 14001 {rgb=(.7 .4 .4)} Face 13068 9018 8993 14001 {rgb=(.7 .4 .4)} Face 13069 9256 9224 14002 {rgb=(.7 .4 .4)} Face 13070 9224 9298 14002 {rgb=(.7 .4 .4)} Face 13071 9298 9312 14002 {rgb=(.7 .4 .4)} Face 13072 9312 9256 14002 {rgb=(.7 .4 .4)} Face 13073 9090 9071 14003 {rgb=(.7 .4 .4)} Face 13074 9071 8994 14003 {rgb=(.7 .4 .4)} Face 13075 8994 9001 14003 {rgb=(.7 .4 .4)} Face 13076 9001 9090 14003 {rgb=(.7 .4 .4)} Face 13077 8952 8994 14004 {rgb=(.7 .4 .4)} Face 13078 8994 8991 14004 {rgb=(.7 .4 .4)} Face 13079 8991 8908 14004 {rgb=(.7 .4 .4)} Face 13080 8908 8952 14004 {rgb=(.7 .4 .4)} Face 13081 9153 9090 14005 {rgb=(.7 .4 .4)} Face 13082 9090 9074 14005 {rgb=(.7 .4 .4)} Face 13083 9074 9149 14005 {rgb=(.7 .4 .4)} Face 13084 9149 9153 14005 {rgb=(.7 .4 .4)} Face 13085 9012 9074 14006 {rgb=(.7 .4 .4)} Face 13086 9074 8999 14006 {rgb=(.7 .4 .4)} Face 13087 8999 8959 14006 {rgb=(.7 .4 .4)} Face 13088 8959 9012 14006 {rgb=(.7 .4 .4)} Face 13089 8928 8999 14007 {rgb=(.7 .4 .4)} Face 13090 8999 9001 14007 {rgb=(.7 .4 .4)} Face 13091 9001 8934 14007 {rgb=(.7 .4 .4)} Face 13092 8934 8928 14007 {rgb=(.7 .4 .4)} Face 13093 9259 9219 14008 {rgb=(.7 .4 .4)} Face 13094 9219 9206 14008 {rgb=(.7 .4 .4)} Face 13095 9206 9258 14008 {rgb=(.7 .4 .4)} Face 13096 9258 9259 14008 {rgb=(.7 .4 .4)} Face 13097 9139 9206 14009 {rgb=(.7 .4 .4)} Face 13098 9206 9149 14009 {rgb=(.7 .4 .4)} Face 13099 9149 9078 14009 {rgb=(.7 .4 .4)} Face 13100 9078 9139 14009 {rgb=(.7 .4 .4)} Face 13101 9255 9281 14010 {rgb=(.7 .4 .4)} Face 13102 9281 9258 14010 {rgb=(.7 .4 .4)} Face 13103 9258 9200 14010 {rgb=(.7 .4 .4)} Face 13104 9200 9255 14010 {rgb=(.7 .4 .4)} Face 13105 9299 9278 14011 {rgb=(.7 .4 .4)} Face 13106 9278 9281 14011 {rgb=(.7 .4 .4)} Face 13107 9281 9300 14011 {rgb=(.7 .4 .4)} Face 13108 9300 9299 14011 {rgb=(.7 .4 .4)} Face 13109 9291 9314 14012 {rgb=(.7 .4 .4)} Face 13110 9314 9300 14012 {rgb=(.7 .4 .4)} Face 13111 9300 9280 14012 {rgb=(.7 .4 .4)} Face 13112 9280 9291 14012 {rgb=(.7 .4 .4)} Face 13113 9328 9324 14013 {rgb=(.7 .4 .4)} Face 13114 9324 9314 14013 {rgb=(.7 .4 .4)} Face 13115 9314 9323 14013 {rgb=(.7 .4 .4)} Face 13116 9323 9328 14013 {rgb=(.7 .4 .4)} Face 13117 9289 9320 14014 {rgb=(.7 .4 .4)} Face 13118 9320 9323 14014 {rgb=(.7 .4 .4)} Face 13119 9323 9287 14014 {rgb=(.7 .4 .4)} Face 13120 9287 9289 14014 {rgb=(.7 .4 .4)} Face 13121 9312 9328 14015 {rgb=(.7 .4 .4)} Face 13122 9328 9329 14015 {rgb=(.7 .4 .4)} Face 13123 9329 9322 14015 {rgb=(.7 .4 .4)} Face 13124 9322 9312 14015 {rgb=(.7 .4 .4)} Face 13125 9330 9329 14016 {rgb=(.7 .4 .4)} Face 13126 9329 9320 14016 {rgb=(.7 .4 .4)} Face 13127 9320 9316 14016 {rgb=(.7 .4 .4)} Face 13128 9316 9330 14016 {rgb=(.7 .4 .4)} Face 13129 9285 9315 14017 {rgb=(.7 .4 .4)} Face 13130 9315 9316 14017 {rgb=(.7 .4 .4)} Face 13131 9316 9288 14017 {rgb=(.7 .4 .4)} Face 13132 9288 9285 14017 {rgb=(.7 .4 .4)} Face 13133 9321 9330 14018 {rgb=(.7 .4 .4)} Face 13134 9330 9331 14018 {rgb=(.7 .4 .4)} Face 13135 9331 9311 14018 {rgb=(.7 .4 .4)} Face 13136 9311 9321 14018 {rgb=(.7 .4 .4)} Face 13137 9326 9331 14019 {rgb=(.7 .4 .4)} Face 13138 9331 9315 14019 {rgb=(.7 .4 .4)} Face 13139 9315 9310 14019 {rgb=(.7 .4 .4)} Face 13140 9310 9326 14019 {rgb=(.7 .4 .4)} Face 13141 9276 9303 14020 {rgb=(.7 .4 .4)} Face 13142 9303 9310 14020 {rgb=(.7 .4 .4)} Face 13143 9310 9282 14020 {rgb=(.7 .4 .4)} Face 13144 9282 9276 14020 {rgb=(.7 .4 .4)} Face 13145 9305 9326 14021 {rgb=(.7 .4 .4)} Face 13146 9326 9318 14021 {rgb=(.7 .4 .4)} Face 13147 9318 9295 14021 {rgb=(.7 .4 .4)} Face 13148 9295 9305 14021 {rgb=(.7 .4 .4)} Face 13149 9301 9318 14022 {rgb=(.7 .4 .4)} Face 13150 9318 9303 14022 {rgb=(.7 .4 .4)} Face 13151 9303 9292 14022 {rgb=(.7 .4 .4)} Face 13152 9292 9301 14022 {rgb=(.7 .4 .4)} Face 13153 9263 9279 14023 {rgb=(.7 .4 .4)} Face 13154 9279 9292 14023 {rgb=(.7 .4 .4)} Face 13155 9292 9267 14023 {rgb=(.7 .4 .4)} Face 13156 9267 9263 14023 {rgb=(.7 .4 .4)} Face 13157 9286 9301 14024 {rgb=(.7 .4 .4)} Face 13158 9301 9284 14024 {rgb=(.7 .4 .4)} Face 13159 9284 9269 14024 {rgb=(.7 .4 .4)} Face 13160 9269 9286 14024 {rgb=(.7 .4 .4)} Face 13161 9266 9284 14025 {rgb=(.7 .4 .4)} Face 13162 9284 9279 14025 {rgb=(.7 .4 .4)} Face 13163 9279 9262 14025 {rgb=(.7 .4 .4)} Face 13164 9262 9266 14025 {rgb=(.7 .4 .4)} Face 13165 9188 9226 14026 {rgb=(.7 .4 .4)} Face 13166 9226 9262 14026 {rgb=(.7 .4 .4)} Face 13167 9262 9239 14026 {rgb=(.7 .4 .4)} Face 13168 9239 9188 14026 {rgb=(.7 .4 .4)} Face 13169 9249 9266 14027 {rgb=(.7 .4 .4)} Face 13170 9266 9242 14027 {rgb=(.7 .4 .4)} Face 13171 9242 9208 14027 {rgb=(.7 .4 .4)} Face 13172 9208 9249 14027 {rgb=(.7 .4 .4)} Face 13173 9189 9242 14028 {rgb=(.7 .4 .4)} Face 13174 9242 9226 14028 {rgb=(.7 .4 .4)} Face 13175 9226 9162 14028 {rgb=(.7 .4 .4)} Face 13176 9162 9189 14028 {rgb=(.7 .4 .4)} Face 13177 9077 9105 14029 {rgb=(.7 .4 .4)} Face 13178 9105 9162 14029 {rgb=(.7 .4 .4)} Face 13179 9162 9145 14029 {rgb=(.7 .4 .4)} Face 13180 9145 9077 14029 {rgb=(.7 .4 .4)} Face 13181 9151 9189 14030 {rgb=(.7 .4 .4)} Face 13182 9189 9133 14030 {rgb=(.7 .4 .4)} Face 13183 9133 9076 14030 {rgb=(.7 .4 .4)} Face 13184 9076 9151 14030 {rgb=(.7 .4 .4)} Face 13185 9104 9133 14031 {rgb=(.7 .4 .4)} Face 13186 9133 9105 14031 {rgb=(.7 .4 .4)} Face 13187 9105 9062 14031 {rgb=(.7 .4 .4)} Face 13188 9062 9104 14031 {rgb=(.7 .4 .4)} Face 13189 9031 9104 14032 {rgb=(.7 .4 .4)} Face 13190 9104 9098 14032 {rgb=(.7 .4 .4)} Face 13191 9098 9021 14032 {rgb=(.7 .4 .4)} Face 13192 9021 9031 14032 {rgb=(.7 .4 .4)} Face 13193 9083 9098 14033 {rgb=(.7 .4 .4)} Face 13194 9098 9062 14033 {rgb=(.7 .4 .4)} Face 13195 9062 9055 14033 {rgb=(.7 .4 .4)} Face 13196 9055 9083 14033 {rgb=(.7 .4 .4)} Face 13197 9065 9083 14034 {rgb=(.7 .4 .4)} Face 13198 9083 9060 14034 {rgb=(.7 .4 .4)} Face 13199 9060 9053 14034 {rgb=(.7 .4 .4)} Face 13200 9053 9065 14034 {rgb=(.7 .4 .4)} Face 13201 9049 9060 14035 {rgb=(.7 .4 .4)} Face 13202 9060 9055 14035 {rgb=(.7 .4 .4)} Face 13203 9055 9058 14035 {rgb=(.7 .4 .4)} Face 13204 9058 9049 14035 {rgb=(.7 .4 .4)} Face 13205 9044 9028 14036 {rgb=(.7 .4 .4)} Face 13206 9028 9053 14036 {rgb=(.7 .4 .4)} Face 13207 9053 9049 14036 {rgb=(.7 .4 .4)} Face 13208 9049 9044 14036 {rgb=(.7 .4 .4)} Face 13209 9087 9065 14037 {rgb=(.7 .4 .4)} Face 13210 9065 9035 14037 {rgb=(.7 .4 .4)} Face 13211 9035 9046 14037 {rgb=(.7 .4 .4)} Face 13212 9046 9087 14037 {rgb=(.7 .4 .4)} Face 13213 8984 9035 14038 {rgb=(.7 .4 .4)} Face 13214 9035 9028 14038 {rgb=(.7 .4 .4)} Face 13215 9028 8978 14038 {rgb=(.7 .4 .4)} Face 13216 8978 8984 14038 {rgb=(.7 .4 .4)} Face 13217 8842 8866 14039 {rgb=(.7 .4 .4)} Face 13218 8866 8978 14039 {rgb=(.7 .4 .4)} Face 13219 8978 8983 14039 {rgb=(.7 .4 .4)} Face 13220 8983 8842 14039 {rgb=(.7 .4 .4)} Face 13221 8982 8984 14040 {rgb=(.7 .4 .4)} Face 13222 8984 8892 14040 {rgb=(.7 .4 .4)} Face 13223 8892 8899 14040 {rgb=(.7 .4 .4)} Face 13224 8899 8982 14040 {rgb=(.7 .4 .4)} Face 13225 8876 8892 14041 {rgb=(.7 .4 .4)} Face 13226 8892 8866 14041 {rgb=(.7 .4 .4)} Face 13227 8866 8838 14041 {rgb=(.7 .4 .4)} Face 13228 8838 8876 14041 {rgb=(.7 .4 .4)} Face 13229 9089 9002 14042 {rgb=(.7 .4 .4)} Face 13230 9002 8983 14042 {rgb=(.7 .4 .4)} Face 13231 8983 9044 14042 {rgb=(.7 .4 .4)} Face 13232 9044 9089 14042 {rgb=(.7 .4 .4)} Face 13233 8825 8842 14043 {rgb=(.7 .4 .4)} Face 13234 8842 8843 14043 {rgb=(.7 .4 .4)} Face 13235 8843 8817 14043 {rgb=(.7 .4 .4)} Face 13236 8817 8825 14043 {rgb=(.7 .4 .4)} Face 13237 8863 8843 14044 {rgb=(.7 .4 .4)} Face 13238 8843 9002 14044 {rgb=(.7 .4 .4)} Face 13239 9002 9032 14044 {rgb=(.7 .4 .4)} Face 13240 9032 8863 14044 {rgb=(.7 .4 .4)} Face 13241 9129 9089 14045 {rgb=(.7 .4 .4)} Face 13242 9089 9058 14045 {rgb=(.7 .4 .4)} Face 13243 9058 9082 14045 {rgb=(.7 .4 .4)} Face 13244 9082 9129 14045 {rgb=(.7 .4 .4)} Face 13245 9109 9114 14046 {rgb=(.7 .4 .4)} Face 13246 9114 9082 14046 {rgb=(.7 .4 .4)} Face 13247 9082 9077 14046 {rgb=(.7 .4 .4)} Face 13248 9077 9109 14046 {rgb=(.7 .4 .4)} Face 13249 9032 9129 14047 {rgb=(.7 .4 .4)} Face 13250 9129 9154 14047 {rgb=(.7 .4 .4)} Face 13251 9154 9070 14047 {rgb=(.7 .4 .4)} Face 13252 9070 9032 14047 {rgb=(.7 .4 .4)} Face 13253 9193 9154 14048 {rgb=(.7 .4 .4)} Face 13254 9154 9114 14048 {rgb=(.7 .4 .4)} Face 13255 9114 9142 14048 {rgb=(.7 .4 .4)} Face 13256 9142 9193 14048 {rgb=(.7 .4 .4)} Face 13257 9183 9178 14049 {rgb=(.7 .4 .4)} Face 13258 9178 9142 14049 {rgb=(.7 .4 .4)} Face 13259 9142 9138 14049 {rgb=(.7 .4 .4)} Face 13260 9138 9183 14049 {rgb=(.7 .4 .4)} Face 13261 9209 9193 14050 {rgb=(.7 .4 .4)} Face 13262 9193 9233 14050 {rgb=(.7 .4 .4)} Face 13263 9233 9246 14050 {rgb=(.7 .4 .4)} Face 13264 9246 9209 14050 {rgb=(.7 .4 .4)} Face 13265 9240 9233 14051 {rgb=(.7 .4 .4)} Face 13266 9233 9178 14051 {rgb=(.7 .4 .4)} Face 13267 9178 9185 14051 {rgb=(.7 .4 .4)} Face 13268 9185 9240 14051 {rgb=(.7 .4 .4)} Face 13269 9187 9159 14052 {rgb=(.7 .4 .4)} Face 13270 9159 9185 14052 {rgb=(.7 .4 .4)} Face 13271 9185 9196 14052 {rgb=(.7 .4 .4)} Face 13272 9196 9187 14052 {rgb=(.7 .4 .4)} Face 13273 9254 9240 14053 {rgb=(.7 .4 .4)} Face 13274 9240 9223 14053 {rgb=(.7 .4 .4)} Face 13275 9223 9243 14053 {rgb=(.7 .4 .4)} Face 13276 9243 9254 14053 {rgb=(.7 .4 .4)} Face 13277 9203 9223 14054 {rgb=(.7 .4 .4)} Face 13278 9223 9159 14054 {rgb=(.7 .4 .4)} Face 13279 9159 9152 14054 {rgb=(.7 .4 .4)} Face 13280 9152 9203 14054 {rgb=(.7 .4 .4)} Face 13281 9215 9163 14055 {rgb=(.7 .4 .4)} Face 13282 9163 9152 14055 {rgb=(.7 .4 .4)} Face 13283 9152 9190 14055 {rgb=(.7 .4 .4)} Face 13284 9190 9215 14055 {rgb=(.7 .4 .4)} Face 13285 9229 9203 14056 {rgb=(.7 .4 .4)} Face 13286 9203 9191 14056 {rgb=(.7 .4 .4)} Face 13287 9191 9194 14056 {rgb=(.7 .4 .4)} Face 13288 9194 9229 14056 {rgb=(.7 .4 .4)} Face 13289 9180 9191 14057 {rgb=(.7 .4 .4)} Face 13290 9191 9163 14057 {rgb=(.7 .4 .4)} Face 13291 9163 9164 14057 {rgb=(.7 .4 .4)} Face 13292 9164 9180 14057 {rgb=(.7 .4 .4)} Face 13293 9169 9180 14058 {rgb=(.7 .4 .4)} Face 13294 9180 9155 14058 {rgb=(.7 .4 .4)} Face 13295 9155 9140 14058 {rgb=(.7 .4 .4)} Face 13296 9140 9169 14058 {rgb=(.7 .4 .4)} Face 13297 9220 9155 14059 {rgb=(.7 .4 .4)} Face 13298 9155 9164 14059 {rgb=(.7 .4 .4)} Face 13299 9164 9222 14059 {rgb=(.7 .4 .4)} Face 13300 9222 9220 14059 {rgb=(.7 .4 .4)} Face 13301 9170 9107 14060 {rgb=(.7 .4 .4)} Face 13302 9107 9140 14060 {rgb=(.7 .4 .4)} Face 13303 9140 9199 14060 {rgb=(.7 .4 .4)} Face 13304 9199 9170 14060 {rgb=(.7 .4 .4)} Face 13305 9194 9169 14061 {rgb=(.7 .4 .4)} Face 13306 9169 9143 14061 {rgb=(.7 .4 .4)} Face 13307 9143 9177 14061 {rgb=(.7 .4 .4)} Face 13308 9177 9194 14061 {rgb=(.7 .4 .4)} Face 13309 9113 9143 14062 {rgb=(.7 .4 .4)} Face 13310 9143 9107 14062 {rgb=(.7 .4 .4)} Face 13311 9107 9051 14062 {rgb=(.7 .4 .4)} Face 13312 9051 9113 14062 {rgb=(.7 .4 .4)} Face 13313 9121 9113 14063 {rgb=(.7 .4 .4)} Face 13314 9113 9007 14063 {rgb=(.7 .4 .4)} Face 13315 9007 8998 14063 {rgb=(.7 .4 .4)} Face 13316 8998 9121 14063 {rgb=(.7 .4 .4)} Face 13317 9056 9007 14064 {rgb=(.7 .4 .4)} Face 13318 9007 9051 14064 {rgb=(.7 .4 .4)} Face 13319 9051 9120 14064 {rgb=(.7 .4 .4)} Face 13320 9120 9056 14064 {rgb=(.7 .4 .4)} Face 13321 8966 8981 14065 {rgb=(.7 .4 .4)} Face 13322 8981 8998 14065 {rgb=(.7 .4 .4)} Face 13323 8998 9005 14065 {rgb=(.7 .4 .4)} Face 13324 9005 8966 14065 {rgb=(.7 .4 .4)} Face 13325 9177 9121 14066 {rgb=(.7 .4 .4)} Face 13326 9121 9132 14066 {rgb=(.7 .4 .4)} Face 13327 9132 9207 14066 {rgb=(.7 .4 .4)} Face 13328 9207 9177 14066 {rgb=(.7 .4 .4)} Face 13329 9079 9132 14067 {rgb=(.7 .4 .4)} Face 13330 9132 8981 14067 {rgb=(.7 .4 .4)} Face 13331 8981 8921 14067 {rgb=(.7 .4 .4)} Face 13332 8921 9079 14067 {rgb=(.7 .4 .4)} Face 13333 9243 9229 14068 {rgb=(.7 .4 .4)} Face 13334 9229 9207 14068 {rgb=(.7 .4 .4)} Face 13335 9207 9232 14068 {rgb=(.7 .4 .4)} Face 13336 9232 9243 14068 {rgb=(.7 .4 .4)} Face 13337 9248 9254 14069 {rgb=(.7 .4 .4)} Face 13338 9254 9232 14069 {rgb=(.7 .4 .4)} Face 13339 9232 9225 14069 {rgb=(.7 .4 .4)} Face 13340 9225 9248 14069 {rgb=(.7 .4 .4)} Face 13341 9267 9276 14070 {rgb=(.7 .4 .4)} Face 13342 9276 9190 14070 {rgb=(.7 .4 .4)} Face 13343 9190 9187 14070 {rgb=(.7 .4 .4)} Face 13344 9187 9267 14070 {rgb=(.7 .4 .4)} Face 13345 9222 9215 14071 {rgb=(.7 .4 .4)} Face 13346 9215 9282 14071 {rgb=(.7 .4 .4)} Face 13347 9282 9285 14071 {rgb=(.7 .4 .4)} Face 13348 9285 9222 14071 {rgb=(.7 .4 .4)} Face 13349 9239 9263 14072 {rgb=(.7 .4 .4)} Face 13350 9263 9196 14072 {rgb=(.7 .4 .4)} Face 13351 9196 9183 14072 {rgb=(.7 .4 .4)} Face 13352 9183 9239 14072 {rgb=(.7 .4 .4)} Face 13353 9145 9188 14073 {rgb=(.7 .4 .4)} Face 13354 9188 9138 14073 {rgb=(.7 .4 .4)} Face 13355 9138 9109 14073 {rgb=(.7 .4 .4)} Face 13356 9109 9145 14073 {rgb=(.7 .4 .4)} Face 13357 9046 9016 14074 {rgb=(.7 .4 .4)} Face 13358 9016 9041 14074 {rgb=(.7 .4 .4)} Face 13359 9041 9085 14074 {rgb=(.7 .4 .4)} Face 13360 9085 9046 14074 {rgb=(.7 .4 .4)} Face 13361 9008 9041 14075 {rgb=(.7 .4 .4)} Face 13362 9041 8958 14075 {rgb=(.7 .4 .4)} Face 13363 8958 8931 14075 {rgb=(.7 .4 .4)} Face 13364 8931 9008 14075 {rgb=(.7 .4 .4)} Face 13365 8925 8958 14076 {rgb=(.7 .4 .4)} Face 13366 8958 9016 14076 {rgb=(.7 .4 .4)} Face 13367 9016 8990 14076 {rgb=(.7 .4 .4)} Face 13368 8990 8925 14076 {rgb=(.7 .4 .4)} Face 13369 8824 8925 14077 {rgb=(.7 .4 .4)} Face 13370 8925 8924 14077 {rgb=(.7 .4 .4)} Face 13371 8924 8826 14077 {rgb=(.7 .4 .4)} Face 13372 8826 8824 14077 {rgb=(.7 .4 .4)} Face 13373 8916 8924 14078 {rgb=(.7 .4 .4)} Face 13374 8924 8990 14078 {rgb=(.7 .4 .4)} Face 13375 8990 8982 14078 {rgb=(.7 .4 .4)} Face 13376 8982 8916 14078 {rgb=(.7 .4 .4)} Face 13377 8906 8916 14079 {rgb=(.7 .4 .4)} Face 13378 8916 8899 14079 {rgb=(.7 .4 .4)} Face 13379 8899 8885 14079 {rgb=(.7 .4 .4)} Face 13380 8885 8906 14079 {rgb=(.7 .4 .4)} Face 13381 8830 8906 14080 {rgb=(.7 .4 .4)} Face 13382 8906 8936 14080 {rgb=(.7 .4 .4)} Face 13383 8936 8869 14080 {rgb=(.7 .4 .4)} Face 13384 8869 8830 14080 {rgb=(.7 .4 .4)} Face 13385 8938 8936 14081 {rgb=(.7 .4 .4)} Face 13386 8936 8885 14081 {rgb=(.7 .4 .4)} Face 13387 8885 8876 14081 {rgb=(.7 .4 .4)} Face 13388 8876 8938 14081 {rgb=(.7 .4 .4)} Face 13389 8901 8972 14082 {rgb=(.7 .4 .4)} Face 13390 8972 8886 14082 {rgb=(.7 .4 .4)} Face 13391 8886 8814 14082 {rgb=(.7 .4 .4)} Face 13392 8814 8901 14082 {rgb=(.7 .4 .4)} Face 13393 8749 8886 14083 {rgb=(.7 .4 .4)} Face 13394 8886 8931 14083 {rgb=(.7 .4 .4)} Face 13395 8931 8774 14083 {rgb=(.7 .4 .4)} Face 13396 8774 8749 14083 {rgb=(.7 .4 .4)} Face 13397 9069 9008 14084 {rgb=(.7 .4 .4)} Face 13398 9008 8972 14084 {rgb=(.7 .4 .4)} Face 13399 8972 9014 14084 {rgb=(.7 .4 .4)} Face 13400 9014 9069 14084 {rgb=(.7 .4 .4)} Face 13401 9102 9069 14085 {rgb=(.7 .4 .4)} Face 13402 9069 9066 14085 {rgb=(.7 .4 .4)} Face 13403 9066 9100 14085 {rgb=(.7 .4 .4)} Face 13404 9100 9102 14085 {rgb=(.7 .4 .4)} Face 13405 9009 9066 14086 {rgb=(.7 .4 .4)} Face 13406 9066 9014 14086 {rgb=(.7 .4 .4)} Face 13407 9014 8970 14086 {rgb=(.7 .4 .4)} Face 13408 8970 9009 14086 {rgb=(.7 .4 .4)} Face 13409 9085 9102 14087 {rgb=(.7 .4 .4)} Face 13410 9102 9103 14087 {rgb=(.7 .4 .4)} Face 13411 9103 9087 14087 {rgb=(.7 .4 .4)} Face 13412 9087 9085 14087 {rgb=(.7 .4 .4)} Face 13413 9022 9103 14088 {rgb=(.7 .4 .4)} Face 13414 9103 9100 14088 {rgb=(.7 .4 .4)} Face 13415 9100 9037 14088 {rgb=(.7 .4 .4)} Face 13416 9037 9022 14088 {rgb=(.7 .4 .4)} Face 13417 9199 9220 14089 {rgb=(.7 .4 .4)} Face 13418 9220 9288 14089 {rgb=(.7 .4 .4)} Face 13419 9288 9289 14089 {rgb=(.7 .4 .4)} Face 13420 9289 9199 14089 {rgb=(.7 .4 .4)} Face 13421 9136 9079 14090 {rgb=(.7 .4 .4)} Face 13422 9079 8859 14090 {rgb=(.7 .4 .4)} Face 13423 8859 8910 14090 {rgb=(.7 .4 .4)} Face 13424 8910 9136 14090 {rgb=(.7 .4 .4)} Face 13425 8834 8859 14091 {rgb=(.7 .4 .4)} Face 13426 8859 8921 14091 {rgb=(.7 .4 .4)} Face 13427 8921 8913 14091 {rgb=(.7 .4 .4)} Face 13428 8913 8834 14091 {rgb=(.7 .4 .4)} Face 13429 8762 8882 14092 {rgb=(.7 .4 .4)} Face 13430 8882 8873 14092 {rgb=(.7 .4 .4)} Face 13431 8873 8748 14092 {rgb=(.7 .4 .4)} Face 13432 8748 8762 14092 {rgb=(.7 .4 .4)} Face 13433 8910 8873 14093 {rgb=(.7 .4 .4)} Face 13434 8873 9067 14093 {rgb=(.7 .4 .4)} Face 13435 9067 9118 14093 {rgb=(.7 .4 .4)} Face 13436 9118 8910 14093 {rgb=(.7 .4 .4)} Face 13437 9197 9067 14094 {rgb=(.7 .4 .4)} Face 13438 9067 9086 14094 {rgb=(.7 .4 .4)} Face 13439 9086 9209 14094 {rgb=(.7 .4 .4)} Face 13440 9209 9197 14094 {rgb=(.7 .4 .4)} Face 13441 9070 9086 14095 {rgb=(.7 .4 .4)} Face 13442 9086 8882 14095 {rgb=(.7 .4 .4)} Face 13443 8882 8881 14095 {rgb=(.7 .4 .4)} Face 13444 8881 9070 14095 {rgb=(.7 .4 .4)} Face 13445 8746 8863 14096 {rgb=(.7 .4 .4)} Face 13446 8863 8881 14096 {rgb=(.7 .4 .4)} Face 13447 8881 8762 14096 {rgb=(.7 .4 .4)} Face 13448 8762 8746 14096 {rgb=(.7 .4 .4)} Face 13449 9201 9197 14097 {rgb=(.7 .4 .4)} Face 13450 9197 9246 14097 {rgb=(.7 .4 .4)} Face 13451 9246 9248 14097 {rgb=(.7 .4 .4)} Face 13452 9248 9201 14097 {rgb=(.7 .4 .4)} Face 13453 9118 9201 14098 {rgb=(.7 .4 .4)} Face 13454 9201 9225 14098 {rgb=(.7 .4 .4)} Face 13455 9225 9136 14098 {rgb=(.7 .4 .4)} Face 13456 9136 9118 14098 {rgb=(.7 .4 .4)} Face 13457 9173 9170 14099 {rgb=(.7 .4 .4)} Face 13458 9170 9287 14099 {rgb=(.7 .4 .4)} Face 13459 9287 9291 14099 {rgb=(.7 .4 .4)} Face 13460 9291 9173 14099 {rgb=(.7 .4 .4)} Face 13461 9120 9173 14100 {rgb=(.7 .4 .4)} Face 13462 9173 9280 14100 {rgb=(.7 .4 .4)} Face 13463 9280 9255 14100 {rgb=(.7 .4 .4)} Face 13464 9255 9120 14100 {rgb=(.7 .4 .4)} Face 13465 9005 9056 14101 {rgb=(.7 .4 .4)} Face 13466 9056 9200 14101 {rgb=(.7 .4 .4)} Face 13467 9200 9139 14101 {rgb=(.7 .4 .4)} Face 13468 9139 9005 14101 {rgb=(.7 .4 .4)} Face 13469 8913 8966 14102 {rgb=(.7 .4 .4)} Face 13470 8966 9078 14102 {rgb=(.7 .4 .4)} Face 13471 9078 9012 14102 {rgb=(.7 .4 .4)} Face 13472 9012 8913 14102 {rgb=(.7 .4 .4)} Face 13473 8791 8834 14103 {rgb=(.7 .4 .4)} Face 13474 8834 8959 14103 {rgb=(.7 .4 .4)} Face 13475 8959 8911 14103 {rgb=(.7 .4 .4)} Face 13476 8911 8791 14103 {rgb=(.7 .4 .4)} Face 13477 8838 8825 14104 {rgb=(.7 .4 .4)} Face 13478 8825 8934 14104 {rgb=(.7 .4 .4)} Face 13479 8934 8935 14104 {rgb=(.7 .4 .4)} Face 13480 8935 8838 14104 {rgb=(.7 .4 .4)} Face 13481 8911 8928 14105 {rgb=(.7 .4 .4)} Face 13482 8928 8817 14105 {rgb=(.7 .4 .4)} Face 13483 8817 8790 14105 {rgb=(.7 .4 .4)} Face 13484 8790 8911 14105 {rgb=(.7 .4 .4)} Face 13485 8748 8791 14106 {rgb=(.7 .4 .4)} Face 13486 8791 8790 14106 {rgb=(.7 .4 .4)} Face 13487 8790 8746 14106 {rgb=(.7 .4 .4)} Face 13488 8746 8748 14106 {rgb=(.7 .4 .4)} Face 13489 8907 8938 14107 {rgb=(.7 .4 .4)} Face 13490 8938 8935 14107 {rgb=(.7 .4 .4)} Face 13491 8935 8952 14107 {rgb=(.7 .4 .4)} Face 13492 8952 8907 14107 {rgb=(.7 .4 .4)} Face 13493 9205 9256 14108 {rgb=(.7 .4 .4)} Face 13494 9256 9274 14108 {rgb=(.7 .4 .4)} Face 13495 9274 9257 14108 {rgb=(.7 .4 .4)} Face 13496 9257 9205 14108 {rgb=(.7 .4 .4)} Face 13497 9270 9274 14109 {rgb=(.7 .4 .4)} Face 13498 9274 9322 14109 {rgb=(.7 .4 .4)} Face 13499 9322 9321 14109 {rgb=(.7 .4 .4)} Face 13500 9321 9270 14109 {rgb=(.7 .4 .4)} Face 13501 9130 9270 14110 {rgb=(.7 .4 .4)} Face 13502 9270 9230 14110 {rgb=(.7 .4 .4)} Face 13503 9230 9036 14110 {rgb=(.7 .4 .4)} Face 13504 9036 9130 14110 {rgb=(.7 .4 .4)} Face 13505 9198 9230 14111 {rgb=(.7 .4 .4)} Face 13506 9230 9311 14111 {rgb=(.7 .4 .4)} Face 13507 9311 9305 14111 {rgb=(.7 .4 .4)} Face 13508 9305 9198 14111 {rgb=(.7 .4 .4)} Face 13509 9034 9198 14112 {rgb=(.7 .4 .4)} Face 13510 9198 9218 14112 {rgb=(.7 .4 .4)} Face 13511 9218 9075 14112 {rgb=(.7 .4 .4)} Face 13512 9075 9034 14112 {rgb=(.7 .4 .4)} Face 13513 9217 9218 14113 {rgb=(.7 .4 .4)} Face 13514 9218 9295 14113 {rgb=(.7 .4 .4)} Face 13515 9295 9286 14113 {rgb=(.7 .4 .4)} Face 13516 9286 9217 14113 {rgb=(.7 .4 .4)} Face 13517 9052 9217 14114 {rgb=(.7 .4 .4)} Face 13518 9217 9192 14114 {rgb=(.7 .4 .4)} Face 13519 9192 9042 14114 {rgb=(.7 .4 .4)} Face 13520 9042 9052 14114 {rgb=(.7 .4 .4)} Face 13521 9160 9192 14115 {rgb=(.7 .4 .4)} Face 13522 9192 9269 14115 {rgb=(.7 .4 .4)} Face 13523 9269 9249 14115 {rgb=(.7 .4 .4)} Face 13524 9249 9160 14115 {rgb=(.7 .4 .4)} Face 13525 9019 9160 14116 {rgb=(.7 .4 .4)} Face 13526 9160 9124 14116 {rgb=(.7 .4 .4)} Face 13527 9124 8989 14116 {rgb=(.7 .4 .4)} Face 13528 8989 9019 14116 {rgb=(.7 .4 .4)} Face 13529 9039 9124 14117 {rgb=(.7 .4 .4)} Face 13530 9124 9208 14117 {rgb=(.7 .4 .4)} Face 13531 9208 9151 14117 {rgb=(.7 .4 .4)} Face 13532 9151 9039 14117 {rgb=(.7 .4 .4)} Face 13533 8937 9039 14118 {rgb=(.7 .4 .4)} Face 13534 9039 8968 14118 {rgb=(.7 .4 .4)} Face 13535 8968 8844 14118 {rgb=(.7 .4 .4)} Face 13536 8844 8937 14118 {rgb=(.7 .4 .4)} Face 13537 8926 8968 14119 {rgb=(.7 .4 .4)} Face 13538 8968 9076 14119 {rgb=(.7 .4 .4)} Face 13539 9076 9031 14119 {rgb=(.7 .4 .4)} Face 13540 9031 8926 14119 {rgb=(.7 .4 .4)} Face 13541 8801 8926 14120 {rgb=(.7 .4 .4)} Face 13542 8926 8920 14120 {rgb=(.7 .4 .4)} Face 13543 8920 8796 14120 {rgb=(.7 .4 .4)} Face 13544 8796 8801 14120 {rgb=(.7 .4 .4)} Face 13545 8939 8920 14121 {rgb=(.7 .4 .4)} Face 13546 8920 9021 14121 {rgb=(.7 .4 .4)} Face 13547 9021 9022 14121 {rgb=(.7 .4 .4)} Face 13548 9022 8939 14121 {rgb=(.7 .4 .4)} Face 13549 8782 8939 14122 {rgb=(.7 .4 .4)} Face 13550 8939 8975 14122 {rgb=(.7 .4 .4)} Face 13551 8975 8833 14122 {rgb=(.7 .4 .4)} Face 13552 8833 8782 14122 {rgb=(.7 .4 .4)} Face 13553 8951 8975 14123 {rgb=(.7 .4 .4)} Face 13554 8975 9037 14123 {rgb=(.7 .4 .4)} Face 13555 9037 9003 14123 {rgb=(.7 .4 .4)} Face 13556 9003 8951 14123 {rgb=(.7 .4 .4)} Face 13557 8875 8951 14124 {rgb=(.7 .4 .4)} Face 13558 8951 8850 14124 {rgb=(.7 .4 .4)} Face 13559 8850 8760 14124 {rgb=(.7 .4 .4)} Face 13560 8760 8875 14124 {rgb=(.7 .4 .4)} Face 13561 8860 8850 14125 {rgb=(.7 .4 .4)} Face 13562 8850 9003 14125 {rgb=(.7 .4 .4)} Face 13563 9003 9009 14125 {rgb=(.7 .4 .4)} Face 13564 9009 8860 14125 {rgb=(.7 .4 .4)} Face 13565 8833 8875 14126 {rgb=(.7 .4 .4)} Face 13566 8875 8662 14126 {rgb=(.7 .4 .4)} Face 13567 8662 8639 14126 {rgb=(.7 .4 .4)} Face 13568 8639 8833 14126 {rgb=(.7 .4 .4)} Face 13569 8600 8662 14127 {rgb=(.7 .4 .4)} Face 13570 8662 8760 14127 {rgb=(.7 .4 .4)} Face 13571 8760 8669 14127 {rgb=(.7 .4 .4)} Face 13572 8669 8600 14127 {rgb=(.7 .4 .4)} Face 13573 8796 8739 14128 {rgb=(.7 .4 .4)} Face 13574 8739 8611 14128 {rgb=(.7 .4 .4)} Face 13575 8611 8653 14128 {rgb=(.7 .4 .4)} Face 13576 8653 8796 14128 {rgb=(.7 .4 .4)} Face 13577 8545 8611 14129 {rgb=(.7 .4 .4)} Face 13578 8611 8549 14129 {rgb=(.7 .4 .4)} Face 13579 8549 8491 14129 {rgb=(.7 .4 .4)} Face 13580 8491 8545 14129 {rgb=(.7 .4 .4)} Face 13581 8586 8549 14130 {rgb=(.7 .4 .4)} Face 13582 8549 8739 14130 {rgb=(.7 .4 .4)} Face 13583 8739 8782 14130 {rgb=(.7 .4 .4)} Face 13584 8782 8586 14130 {rgb=(.7 .4 .4)} Face 13585 8561 8545 14131 {rgb=(.7 .4 .4)} Face 13586 8545 8467 14131 {rgb=(.7 .4 .4)} Face 13587 8467 8471 14131 {rgb=(.7 .4 .4)} Face 13588 8471 8561 14131 {rgb=(.7 .4 .4)} Face 13589 8406 8467 14132 {rgb=(.7 .4 .4)} Face 13590 8467 8491 14132 {rgb=(.7 .4 .4)} Face 13591 8491 8425 14132 {rgb=(.7 .4 .4)} Face 13592 8425 8406 14132 {rgb=(.7 .4 .4)} Face 13593 8372 8468 14133 {rgb=(.7 .4 .4)} Face 13594 8468 8471 14133 {rgb=(.7 .4 .4)} Face 13595 8471 8385 14133 {rgb=(.7 .4 .4)} Face 13596 8385 8372 14133 {rgb=(.7 .4 .4)} Face 13597 8653 8561 14134 {rgb=(.7 .4 .4)} Face 13598 8561 8567 14134 {rgb=(.7 .4 .4)} Face 13599 8567 8667 14134 {rgb=(.7 .4 .4)} Face 13600 8667 8653 14134 {rgb=(.7 .4 .4)} Face 13601 8587 8567 14135 {rgb=(.7 .4 .4)} Face 13602 8567 8468 14135 {rgb=(.7 .4 .4)} Face 13603 8468 8488 14135 {rgb=(.7 .4 .4)} Face 13604 8488 8587 14135 {rgb=(.7 .4 .4)} Face 13605 8844 8801 14136 {rgb=(.7 .4 .4)} Face 13606 8801 8667 14136 {rgb=(.7 .4 .4)} Face 13607 8667 8706 14136 {rgb=(.7 .4 .4)} Face 13608 8706 8844 14136 {rgb=(.7 .4 .4)} Face 13609 8989 8937 14137 {rgb=(.7 .4 .4)} Face 13610 8937 8777 14137 {rgb=(.7 .4 .4)} Face 13611 8777 8827 14137 {rgb=(.7 .4 .4)} Face 13612 8827 8989 14137 {rgb=(.7 .4 .4)} Face 13613 8621 8777 14138 {rgb=(.7 .4 .4)} Face 13614 8777 8706 14138 {rgb=(.7 .4 .4)} Face 13615 8706 8587 14138 {rgb=(.7 .4 .4)} Face 13616 8587 8621 14138 {rgb=(.7 .4 .4)} Face 13617 8655 8621 14139 {rgb=(.7 .4 .4)} Face 13618 8621 8512 14139 {rgb=(.7 .4 .4)} Face 13619 8512 8546 14139 {rgb=(.7 .4 .4)} Face 13620 8546 8655 14139 {rgb=(.7 .4 .4)} Face 13621 8423 8512 14140 {rgb=(.7 .4 .4)} Face 13622 8512 8488 14140 {rgb=(.7 .4 .4)} Face 13623 8488 8394 14140 {rgb=(.7 .4 .4)} Face 13624 8394 8423 14140 {rgb=(.7 .4 .4)} Face 13625 8510 8579 14141 {rgb=(.7 .4 .4)} Face 13626 8579 8546 14141 {rgb=(.7 .4 .4)} Face 13627 8546 8456 14141 {rgb=(.7 .4 .4)} Face 13628 8456 8510 14141 {rgb=(.7 .4 .4)} Face 13629 8827 8655 14142 {rgb=(.7 .4 .4)} Face 13630 8655 8689 14142 {rgb=(.7 .4 .4)} Face 13631 8689 8868 14142 {rgb=(.7 .4 .4)} Face 13632 8868 8827 14142 {rgb=(.7 .4 .4)} Face 13633 8742 8689 14143 {rgb=(.7 .4 .4)} Face 13634 8689 8579 14143 {rgb=(.7 .4 .4)} Face 13635 8579 8613 14143 {rgb=(.7 .4 .4)} Face 13636 8613 8742 14143 {rgb=(.7 .4 .4)} Face 13637 9042 9019 14144 {rgb=(.7 .4 .4)} Face 13638 9019 8868 14144 {rgb=(.7 .4 .4)} Face 13639 8868 8888 14144 {rgb=(.7 .4 .4)} Face 13640 8888 9042 14144 {rgb=(.7 .4 .4)} Face 13641 9075 9052 14145 {rgb=(.7 .4 .4)} Face 13642 9052 8900 14145 {rgb=(.7 .4 .4)} Face 13643 8900 8918 14145 {rgb=(.7 .4 .4)} Face 13644 8918 9075 14145 {rgb=(.7 .4 .4)} Face 13645 8756 8900 14146 {rgb=(.7 .4 .4)} Face 13646 8900 8888 14146 {rgb=(.7 .4 .4)} Face 13647 8888 8742 14146 {rgb=(.7 .4 .4)} Face 13648 8742 8756 14146 {rgb=(.7 .4 .4)} Face 13649 8701 8756 14147 {rgb=(.7 .4 .4)} Face 13650 8756 8613 14147 {rgb=(.7 .4 .4)} Face 13651 8613 8582 14147 {rgb=(.7 .4 .4)} Face 13652 8582 8701 14147 {rgb=(.7 .4 .4)} Face 13653 8784 8860 14148 {rgb=(.7 .4 .4)} Face 13654 8860 8970 14148 {rgb=(.7 .4 .4)} Face 13655 8970 8901 14148 {rgb=(.7 .4 .4)} Face 13656 8901 8784 14148 {rgb=(.7 .4 .4)} Face 13657 8669 8784 14149 {rgb=(.7 .4 .4)} Face 13658 8784 8709 14149 {rgb=(.7 .4 .4)} Face 13659 8709 8624 14149 {rgb=(.7 .4 .4)} Face 13660 8624 8669 14149 {rgb=(.7 .4 .4)} Face 13661 8635 8709 14150 {rgb=(.7 .4 .4)} Face 13662 8709 8814 14150 {rgb=(.7 .4 .4)} Face 13663 8814 8749 14150 {rgb=(.7 .4 .4)} Face 13664 8749 8635 14150 {rgb=(.7 .4 .4)} Face 13665 8542 8600 14151 {rgb=(.7 .4 .4)} Face 13666 8600 8570 14151 {rgb=(.7 .4 .4)} Face 13667 8570 8507 14151 {rgb=(.7 .4 .4)} Face 13668 8507 8542 14151 {rgb=(.7 .4 .4)} Face 13669 8502 8570 14152 {rgb=(.7 .4 .4)} Face 13670 8570 8624 14152 {rgb=(.7 .4 .4)} Face 13671 8624 8540 14152 {rgb=(.7 .4 .4)} Face 13672 8540 8502 14152 {rgb=(.7 .4 .4)} Face 13673 8961 9034 14153 {rgb=(.7 .4 .4)} Face 13674 9034 8918 14153 {rgb=(.7 .4 .4)} Face 13675 8918 8846 14153 {rgb=(.7 .4 .4)} Face 13676 8846 8961 14153 {rgb=(.7 .4 .4)} Face 13677 8455 8586 14154 {rgb=(.7 .4 .4)} Face 13678 8586 8639 14154 {rgb=(.7 .4 .4)} Face 13679 8639 8506 14154 {rgb=(.7 .4 .4)} Face 13680 8506 8455 14154 {rgb=(.7 .4 .4)} Face 13681 8506 8542 14155 {rgb=(.7 .4 .4)} Face 13682 8542 8461 14155 {rgb=(.7 .4 .4)} Face 13683 8461 8433 14155 {rgb=(.7 .4 .4)} Face 13684 8433 8506 14155 {rgb=(.7 .4 .4)} Face 13685 8440 8461 14156 {rgb=(.7 .4 .4)} Face 13686 8461 8507 14156 {rgb=(.7 .4 .4)} Face 13687 8507 8502 14156 {rgb=(.7 .4 .4)} Face 13688 8502 8440 14156 {rgb=(.7 .4 .4)} Face 13689 9241 9272 14157 {rgb=(.7 .4 .4)} Face 13690 9272 9257 14157 {rgb=(.7 .4 .4)} Face 13691 9257 9212 14157 {rgb=(.7 .4 .4)} Face 13692 9212 9241 14157 {rgb=(.7 .4 .4)} Face 13693 9101 9205 14158 {rgb=(.7 .4 .4)} Face 13694 9205 9272 14158 {rgb=(.7 .4 .4)} Face 13695 9272 9172 14158 {rgb=(.7 .4 .4)} Face 13696 9172 9101 14158 {rgb=(.7 .4 .4)} Face 13697 8421 8450 14159 {rgb=(.7 .4 .4)} Face 13698 8450 8554 14159 {rgb=(.7 .4 .4)} Face 13699 8554 8497 14159 {rgb=(.7 .4 .4)} Face 13700 8497 8421 14159 {rgb=(.7 .4 .4)} Face 13701 8593 8554 14160 {rgb=(.7 .4 .4)} Face 13702 8554 8595 14160 {rgb=(.7 .4 .4)} Face 13703 8595 8657 14160 {rgb=(.7 .4 .4)} Face 13704 8657 8593 14160 {rgb=(.7 .4 .4)} Face 13705 8632 8595 14161 {rgb=(.7 .4 .4)} Face 13706 8595 8490 14161 {rgb=(.7 .4 .4)} Face 13707 8490 8533 14161 {rgb=(.7 .4 .4)} Face 13708 8533 8632 14161 {rgb=(.7 .4 .4)} Face 13709 8432 8490 14162 {rgb=(.7 .4 .4)} Face 13710 8490 8450 14162 {rgb=(.7 .4 .4)} Face 13711 8450 8392 14162 {rgb=(.7 .4 .4)} Face 13712 8392 8432 14162 {rgb=(.7 .4 .4)} Face 13713 8280 8334 14163 {rgb=(.7 .4 .4)} Face 13714 8334 8392 14163 {rgb=(.7 .4 .4)} Face 13715 8392 8354 14163 {rgb=(.7 .4 .4)} Face 13716 8354 8280 14163 {rgb=(.7 .4 .4)} Face 13717 8473 8432 14164 {rgb=(.7 .4 .4)} Face 13718 8432 8405 14164 {rgb=(.7 .4 .4)} Face 13719 8405 8452 14164 {rgb=(.7 .4 .4)} Face 13720 8452 8473 14164 {rgb=(.7 .4 .4)} Face 13721 8380 8405 14165 {rgb=(.7 .4 .4)} Face 13722 8405 8334 14165 {rgb=(.7 .4 .4)} Face 13723 8334 8298 14165 {rgb=(.7 .4 .4)} Face 13724 8298 8380 14165 {rgb=(.7 .4 .4)} Face 13725 8233 8283 14166 {rgb=(.7 .4 .4)} Face 13726 8283 8298 14166 {rgb=(.7 .4 .4)} Face 13727 8298 8244 14166 {rgb=(.7 .4 .4)} Face 13728 8244 8233 14166 {rgb=(.7 .4 .4)} Face 13729 8444 8380 14167 {rgb=(.7 .4 .4)} Face 13730 8380 8370 14167 {rgb=(.7 .4 .4)} Face 13731 8370 8445 14167 {rgb=(.7 .4 .4)} Face 13732 8445 8444 14167 {rgb=(.7 .4 .4)} Face 13733 8384 8370 14168 {rgb=(.7 .4 .4)} Face 13734 8370 8283 14168 {rgb=(.7 .4 .4)} Face 13735 8283 8299 14168 {rgb=(.7 .4 .4)} Face 13736 8299 8384 14168 {rgb=(.7 .4 .4)} Face 13737 8285 8340 14169 {rgb=(.7 .4 .4)} Face 13738 8340 8299 14169 {rgb=(.7 .4 .4)} Face 13739 8299 8245 14169 {rgb=(.7 .4 .4)} Face 13740 8245 8285 14169 {rgb=(.7 .4 .4)} Face 13741 8454 8384 14170 {rgb=(.7 .4 .4)} Face 13742 8384 8415 14170 {rgb=(.7 .4 .4)} Face 13743 8415 8481 14170 {rgb=(.7 .4 .4)} Face 13744 8481 8454 14170 {rgb=(.7 .4 .4)} Face 13745 8442 8415 14171 {rgb=(.7 .4 .4)} Face 13746 8415 8340 14171 {rgb=(.7 .4 .4)} Face 13747 8340 8387 14171 {rgb=(.7 .4 .4)} Face 13748 8387 8442 14171 {rgb=(.7 .4 .4)} Face 13749 8404 8439 14172 {rgb=(.7 .4 .4)} Face 13750 8439 8387 14172 {rgb=(.7 .4 .4)} Face 13751 8387 8342 14172 {rgb=(.7 .4 .4)} Face 13752 8342 8404 14172 {rgb=(.7 .4 .4)} Face 13753 8505 8442 14173 {rgb=(.7 .4 .4)} Face 13754 8442 8498 14173 {rgb=(.7 .4 .4)} Face 13755 8498 8566 14173 {rgb=(.7 .4 .4)} Face 13756 8566 8505 14173 {rgb=(.7 .4 .4)} Face 13757 8562 8498 14174 {rgb=(.7 .4 .4)} Face 13758 8498 8439 14174 {rgb=(.7 .4 .4)} Face 13759 8439 8483 14174 {rgb=(.7 .4 .4)} Face 13760 8483 8562 14174 {rgb=(.7 .4 .4)} Face 13761 8451 8516 14175 {rgb=(.7 .4 .4)} Face 13762 8516 8483 14175 {rgb=(.7 .4 .4)} Face 13763 8483 8437 14175 {rgb=(.7 .4 .4)} Face 13764 8437 8451 14175 {rgb=(.7 .4 .4)} Face 13765 8619 8562 14176 {rgb=(.7 .4 .4)} Face 13766 8562 8627 14176 {rgb=(.7 .4 .4)} Face 13767 8627 8698 14176 {rgb=(.7 .4 .4)} Face 13768 8698 8619 14176 {rgb=(.7 .4 .4)} Face 13769 8623 8627 14177 {rgb=(.7 .4 .4)} Face 13770 8627 8516 14177 {rgb=(.7 .4 .4)} Face 13771 8516 8511 14177 {rgb=(.7 .4 .4)} Face 13772 8511 8623 14177 {rgb=(.7 .4 .4)} Face 13773 8397 8465 14178 {rgb=(.7 .4 .4)} Face 13774 8465 8511 14178 {rgb=(.7 .4 .4)} Face 13775 8511 8431 14178 {rgb=(.7 .4 .4)} Face 13776 8431 8397 14178 {rgb=(.7 .4 .4)} Face 13777 8695 8623 14179 {rgb=(.7 .4 .4)} Face 13778 8623 8551 14179 {rgb=(.7 .4 .4)} Face 13779 8551 8629 14179 {rgb=(.7 .4 .4)} Face 13780 8629 8695 14179 {rgb=(.7 .4 .4)} Face 13781 8480 8551 14180 {rgb=(.7 .4 .4)} Face 13782 8551 8465 14180 {rgb=(.7 .4 .4)} Face 13783 8465 8412 14180 {rgb=(.7 .4 .4)} Face 13784 8412 8480 14180 {rgb=(.7 .4 .4)} Face 13785 8236 8323 14181 {rgb=(.7 .4 .4)} Face 13786 8323 8412 14181 {rgb=(.7 .4 .4)} Face 13787 8412 8330 14181 {rgb=(.7 .4 .4)} Face 13788 8330 8236 14181 {rgb=(.7 .4 .4)} Face 13789 8535 8480 14182 {rgb=(.7 .4 .4)} Face 13790 8480 8411 14182 {rgb=(.7 .4 .4)} Face 13791 8411 8458 14182 {rgb=(.7 .4 .4)} Face 13792 8458 8535 14182 {rgb=(.7 .4 .4)} Face 13793 8311 8411 14183 {rgb=(.7 .4 .4)} Face 13794 8411 8323 14183 {rgb=(.7 .4 .4)} Face 13795 8323 8228 14183 {rgb=(.7 .4 .4)} Face 13796 8228 8311 14183 {rgb=(.7 .4 .4)} Face 13797 7958 8067 14184 {rgb=(.7 .4 .4)} Face 13798 8067 8228 14184 {rgb=(.7 .4 .4)} Face 13799 8228 8125 14184 {rgb=(.7 .4 .4)} Face 13800 8125 7958 14184 {rgb=(.7 .4 .4)} Face 13801 8376 8311 14185 {rgb=(.7 .4 .4)} Face 13802 8311 8192 14185 {rgb=(.7 .4 .4)} Face 13803 8192 8270 14185 {rgb=(.7 .4 .4)} Face 13804 8270 8376 14185 {rgb=(.7 .4 .4)} Face 13805 8130 8192 14186 {rgb=(.7 .4 .4)} Face 13806 8192 8067 14186 {rgb=(.7 .4 .4)} Face 13807 8067 8038 14186 {rgb=(.7 .4 .4)} Face 13808 8038 8130 14186 {rgb=(.7 .4 .4)} Face 13809 8028 8055 14187 {rgb=(.7 .4 .4)} Face 13810 8055 8038 14187 {rgb=(.7 .4 .4)} Face 13811 8038 8005 14187 {rgb=(.7 .4 .4)} Face 13812 8005 8028 14187 {rgb=(.7 .4 .4)} Face 13813 8205 8130 14188 {rgb=(.7 .4 .4)} Face 13814 8130 8098 14188 {rgb=(.7 .4 .4)} Face 13815 8098 8167 14188 {rgb=(.7 .4 .4)} Face 13816 8167 8205 14188 {rgb=(.7 .4 .4)} Face 13817 7946 8098 14189 {rgb=(.7 .4 .4)} Face 13818 8098 8055 14189 {rgb=(.7 .4 .4)} Face 13819 8055 7899 14189 {rgb=(.7 .4 .4)} Face 13820 7899 7946 14189 {rgb=(.7 .4 .4)} Face 13821 8009 7991 14190 {rgb=(.7 .4 .4)} Face 13822 7991 8030 14190 {rgb=(.7 .4 .4)} Face 13823 8030 8078 14190 {rgb=(.7 .4 .4)} Face 13824 8078 8009 14190 {rgb=(.7 .4 .4)} Face 13825 7942 8030 14191 {rgb=(.7 .4 .4)} Face 13826 8030 8005 14191 {rgb=(.7 .4 .4)} Face 13827 8005 7910 14191 {rgb=(.7 .4 .4)} Face 13828 7910 7942 14191 {rgb=(.7 .4 .4)} Face 13829 7851 8028 14192 {rgb=(.7 .4 .4)} Face 13830 8028 7991 14192 {rgb=(.7 .4 .4)} Face 13831 7991 7793 14192 {rgb=(.7 .4 .4)} Face 13832 7793 7851 14192 {rgb=(.7 .4 .4)} Face 13833 7589 7667 14193 {rgb=(.7 .4 .4)} Face 13834 7667 7899 14193 {rgb=(.7 .4 .4)} Face 13835 7899 7851 14193 {rgb=(.7 .4 .4)} Face 13836 7851 7589 14193 {rgb=(.7 .4 .4)} Face 13837 8010 7946 14194 {rgb=(.7 .4 .4)} Face 13838 7946 7757 14194 {rgb=(.7 .4 .4)} Face 13839 7757 7849 14194 {rgb=(.7 .4 .4)} Face 13840 7849 8010 14194 {rgb=(.7 .4 .4)} Face 13841 7542 7757 14195 {rgb=(.7 .4 .4)} Face 13842 7757 7667 14195 {rgb=(.7 .4 .4)} Face 13843 7667 7390 14195 {rgb=(.7 .4 .4)} Face 13844 7390 7542 14195 {rgb=(.7 .4 .4)} Face 13845 7495 7506 14196 {rgb=(.7 .4 .4)} Face 13846 7506 7793 14196 {rgb=(.7 .4 .4)} Face 13847 7793 7800 14196 {rgb=(.7 .4 .4)} Face 13848 7800 7495 14196 {rgb=(.7 .4 .4)} Face 13849 7245 7589 14197 {rgb=(.7 .4 .4)} Face 13850 7589 7506 14197 {rgb=(.7 .4 .4)} Face 13851 7506 7133 14197 {rgb=(.7 .4 .4)} Face 13852 7133 7245 14197 {rgb=(.7 .4 .4)} Face 13853 6799 7014 14198 {rgb=(.7 .4 .4)} Face 13854 7014 7390 14198 {rgb=(.7 .4 .4)} Face 13855 7390 7245 14198 {rgb=(.7 .4 .4)} Face 13856 7245 6799 14198 {rgb=(.7 .4 .4)} Face 13857 7702 7542 14199 {rgb=(.7 .4 .4)} Face 13858 7542 7326 14199 {rgb=(.7 .4 .4)} Face 13859 7326 7569 14199 {rgb=(.7 .4 .4)} Face 13860 7569 7702 14199 {rgb=(.7 .4 .4)} Face 13861 6631 6690 14200 {rgb=(.7 .4 .4)} Face 13862 6690 7133 14200 {rgb=(.7 .4 .4)} Face 13863 7133 7097 14200 {rgb=(.7 .4 .4)} Face 13864 7097 6631 14200 {rgb=(.7 .4 .4)} Face 13865 6260 6799 14201 {rgb=(.7 .4 .4)} Face 13866 6799 6690 14201 {rgb=(.7 .4 .4)} Face 13867 6690 6119 14201 {rgb=(.7 .4 .4)} Face 13868 6119 6260 14201 {rgb=(.7 .4 .4)} Face 13869 5703 5713 14202 {rgb=(.7 .4 .4)} Face 13870 5713 6119 14202 {rgb=(.7 .4 .4)} Face 13871 6119 6070 14202 {rgb=(.7 .4 .4)} Face 13872 6070 5703 14202 {rgb=(.7 .4 .4)} Face 13873 7541 7877 14203 {rgb=(.7 .4 .4)} Face 13874 7877 7600 14203 {rgb=(.7 .4 .4)} Face 13875 7600 7294 14203 {rgb=(.7 .4 .4)} Face 13876 7294 7541 14203 {rgb=(.7 .4 .4)} Face 13877 7468 7600 14204 {rgb=(.7 .4 .4)} Face 13878 7600 8132 14204 {rgb=(.7 .4 .4)} Face 13879 8132 7986 14204 {rgb=(.7 .4 .4)} Face 13880 7986 7468 14204 {rgb=(.7 .4 .4)} Face 13881 8413 8132 14205 {rgb=(.7 .4 .4)} Face 13882 8132 8321 14205 {rgb=(.7 .4 .4)} Face 13883 8321 8565 14205 {rgb=(.7 .4 .4)} Face 13884 8565 8413 14205 {rgb=(.7 .4 .4)} Face 13885 8453 8321 14206 {rgb=(.7 .4 .4)} Face 13886 8321 7877 14206 {rgb=(.7 .4 .4)} Face 13887 7877 8180 14206 {rgb=(.7 .4 .4)} Face 13888 8180 8453 14206 {rgb=(.7 .4 .4)} Face 13889 8118 8375 14207 {rgb=(.7 .4 .4)} Face 13890 8375 8180 14207 {rgb=(.7 .4 .4)} Face 13891 8180 7813 14207 {rgb=(.7 .4 .4)} Face 13892 7813 8118 14207 {rgb=(.7 .4 .4)} Face 13893 8666 8453 14208 {rgb=(.7 .4 .4)} Face 13894 8453 8577 14208 {rgb=(.7 .4 .4)} Face 13895 8577 8738 14208 {rgb=(.7 .4 .4)} Face 13896 8738 8666 14208 {rgb=(.7 .4 .4)} Face 13897 8677 8577 14209 {rgb=(.7 .4 .4)} Face 13898 8577 8375 14209 {rgb=(.7 .4 .4)} Face 13899 8375 8499 14209 {rgb=(.7 .4 .4)} Face 13900 8499 8677 14209 {rgb=(.7 .4 .4)} Face 13901 8318 8559 14210 {rgb=(.7 .4 .4)} Face 13902 8559 8499 14210 {rgb=(.7 .4 .4)} Face 13903 8499 8272 14210 {rgb=(.7 .4 .4)} Face 13904 8272 8318 14210 {rgb=(.7 .4 .4)} Face 13905 8806 8677 14211 {rgb=(.7 .4 .4)} Face 13906 8677 8766 14211 {rgb=(.7 .4 .4)} Face 13907 8766 8867 14211 {rgb=(.7 .4 .4)} Face 13908 8867 8806 14211 {rgb=(.7 .4 .4)} Face 13909 8800 8766 14212 {rgb=(.7 .4 .4)} Face 13910 8766 8559 14212 {rgb=(.7 .4 .4)} Face 13911 8559 8589 14212 {rgb=(.7 .4 .4)} Face 13912 8589 8800 14212 {rgb=(.7 .4 .4)} Face 13913 8368 8599 14213 {rgb=(.7 .4 .4)} Face 13914 8599 8589 14213 {rgb=(.7 .4 .4)} Face 13915 8589 8350 14213 {rgb=(.7 .4 .4)} Face 13916 8350 8368 14213 {rgb=(.7 .4 .4)} Face 13917 8887 8800 14214 {rgb=(.7 .4 .4)} Face 13918 8800 8792 14214 {rgb=(.7 .4 .4)} Face 13919 8792 8877 14214 {rgb=(.7 .4 .4)} Face 13920 8877 8887 14214 {rgb=(.7 .4 .4)} Face 13921 8770 8792 14215 {rgb=(.7 .4 .4)} Face 13922 8792 8599 14215 {rgb=(.7 .4 .4)} Face 13923 8599 8598 14215 {rgb=(.7 .4 .4)} Face 13924 8598 8770 14215 {rgb=(.7 .4 .4)} Face 13925 8386 8588 14216 {rgb=(.7 .4 .4)} Face 13926 8588 8598 14216 {rgb=(.7 .4 .4)} Face 13927 8598 8379 14216 {rgb=(.7 .4 .4)} Face 13928 8379 8386 14216 {rgb=(.7 .4 .4)} Face 13929 8851 8770 14217 {rgb=(.7 .4 .4)} Face 13930 8770 8727 14217 {rgb=(.7 .4 .4)} Face 13931 8727 8820 14217 {rgb=(.7 .4 .4)} Face 13932 8820 8851 14217 {rgb=(.7 .4 .4)} Face 13933 8628 8727 14218 {rgb=(.7 .4 .4)} Face 13934 8727 8588 14218 {rgb=(.7 .4 .4)} Face 13935 8588 8532 14218 {rgb=(.7 .4 .4)} Face 13936 8532 8628 14218 {rgb=(.7 .4 .4)} Face 13937 8337 8449 14219 {rgb=(.7 .4 .4)} Face 13938 8449 8532 14219 {rgb=(.7 .4 .4)} Face 13939 8532 8369 14219 {rgb=(.7 .4 .4)} Face 13940 8369 8337 14219 {rgb=(.7 .4 .4)} Face 13941 8724 8628 14220 {rgb=(.7 .4 .4)} Face 13942 8628 8508 14220 {rgb=(.7 .4 .4)} Face 13943 8508 8580 14220 {rgb=(.7 .4 .4)} Face 13944 8580 8724 14220 {rgb=(.7 .4 .4)} Face 13945 8462 8508 14221 {rgb=(.7 .4 .4)} Face 13946 8508 8449 14221 {rgb=(.7 .4 .4)} Face 13947 8449 8418 14221 {rgb=(.7 .4 .4)} Face 13948 8418 8462 14221 {rgb=(.7 .4 .4)} Face 13949 8301 8408 14222 {rgb=(.7 .4 .4)} Face 13950 8408 8418 14222 {rgb=(.7 .4 .4)} Face 13951 8418 8312 14222 {rgb=(.7 .4 .4)} Face 13952 8312 8301 14222 {rgb=(.7 .4 .4)} Face 13953 8521 8462 14223 {rgb=(.7 .4 .4)} Face 13954 8462 8460 14223 {rgb=(.7 .4 .4)} Face 13955 8460 8525 14223 {rgb=(.7 .4 .4)} Face 13956 8525 8521 14223 {rgb=(.7 .4 .4)} Face 13957 8484 8460 14224 {rgb=(.7 .4 .4)} Face 13958 8460 8408 14224 {rgb=(.7 .4 .4)} Face 13959 8408 8417 14224 {rgb=(.7 .4 .4)} Face 13960 8417 8484 14224 {rgb=(.7 .4 .4)} Face 13961 6805 7300 14225 {rgb=(.7 .4 .4)} Face 13962 7300 7088 14225 {rgb=(.7 .4 .4)} Face 13963 7088 6710 14225 {rgb=(.7 .4 .4)} Face 13964 6710 6805 14225 {rgb=(.7 .4 .4)} Face 13965 7001 7088 14226 {rgb=(.7 .4 .4)} Face 13966 7088 7294 14226 {rgb=(.7 .4 .4)} Face 13967 7294 7142 14226 {rgb=(.7 .4 .4)} Face 13968 7142 7001 14226 {rgb=(.7 .4 .4)} Face 13969 7813 7541 14227 {rgb=(.7 .4 .4)} Face 13970 7541 7300 14227 {rgb=(.7 .4 .4)} Face 13971 7300 7496 14227 {rgb=(.7 .4 .4)} Face 13972 7496 7813 14227 {rgb=(.7 .4 .4)} Face 13973 5868 5881 14228 {rgb=(.7 .4 .4)} Face 13974 5881 6710 14228 {rgb=(.7 .4 .4)} Face 13975 6710 6641 14228 {rgb=(.7 .4 .4)} Face 13976 6641 5868 14228 {rgb=(.7 .4 .4)} Face 13977 7016 6805 14229 {rgb=(.7 .4 .4)} Face 13978 6805 5927 14229 {rgb=(.7 .4 .4)} Face 13979 5927 6236 14229 {rgb=(.7 .4 .4)} Face 13980 6236 7016 14229 {rgb=(.7 .4 .4)} Face 13981 7335 7739 14230 {rgb=(.7 .4 .4)} Face 13982 7739 7496 14230 {rgb=(.7 .4 .4)} Face 13983 7496 7016 14230 {rgb=(.7 .4 .4)} Face 13984 7016 7335 14230 {rgb=(.7 .4 .4)} Face 13985 8272 8118 14231 {rgb=(.7 .4 .4)} Face 13986 8118 7739 14231 {rgb=(.7 .4 .4)} Face 13987 7739 7890 14231 {rgb=(.7 .4 .4)} Face 13988 7890 8272 14231 {rgb=(.7 .4 .4)} Face 13989 6536 6810 14232 {rgb=(.7 .4 .4)} Face 13990 6810 6236 14232 {rgb=(.7 .4 .4)} Face 13991 6236 5838 14232 {rgb=(.7 .4 .4)} Face 13992 5838 6536 14232 {rgb=(.7 .4 .4)} Face 13993 7497 7335 14233 {rgb=(.7 .4 .4)} Face 13994 7335 6810 14233 {rgb=(.7 .4 .4)} Face 13995 6810 7050 14233 {rgb=(.7 .4 .4)} Face 13996 7050 7497 14233 {rgb=(.7 .4 .4)} Face 13997 7523 7916 14234 {rgb=(.7 .4 .4)} Face 13998 7916 7890 14234 {rgb=(.7 .4 .4)} Face 13999 7890 7497 14234 {rgb=(.7 .4 .4)} Face 14000 7497 7523 14234 {rgb=(.7 .4 .4)} Face 14001 8350 8318 14235 {rgb=(.7 .4 .4)} Face 14002 8318 7916 14235 {rgb=(.7 .4 .4)} Face 14003 7916 7956 14235 {rgb=(.7 .4 .4)} Face 14004 7956 8350 14235 {rgb=(.7 .4 .4)} Face 14005 6744 7103 14236 {rgb=(.7 .4 .4)} Face 14006 7103 7050 14236 {rgb=(.7 .4 .4)} Face 14007 7050 6712 14236 {rgb=(.7 .4 .4)} Face 14008 6712 6744 14236 {rgb=(.7 .4 .4)} Face 14009 7561 7523 14237 {rgb=(.7 .4 .4)} Face 14010 7523 7103 14237 {rgb=(.7 .4 .4)} Face 14011 7103 7157 14237 {rgb=(.7 .4 .4)} Face 14012 7157 7561 14237 {rgb=(.7 .4 .4)} Face 14013 7617 7998 14238 {rgb=(.7 .4 .4)} Face 14014 7998 7956 14238 {rgb=(.7 .4 .4)} Face 14015 7956 7561 14238 {rgb=(.7 .4 .4)} Face 14016 7561 7617 14238 {rgb=(.7 .4 .4)} Face 14017 8379 8368 14239 {rgb=(.7 .4 .4)} Face 14018 8368 7998 14239 {rgb=(.7 .4 .4)} Face 14019 7998 8035 14239 {rgb=(.7 .4 .4)} Face 14020 8035 8379 14239 {rgb=(.7 .4 .4)} Face 14021 6843 7210 14240 {rgb=(.7 .4 .4)} Face 14022 7210 7157 14240 {rgb=(.7 .4 .4)} Face 14023 7157 6776 14240 {rgb=(.7 .4 .4)} Face 14024 6776 6843 14240 {rgb=(.7 .4 .4)} Face 14025 7653 7617 14241 {rgb=(.7 .4 .4)} Face 14026 7617 7210 14241 {rgb=(.7 .4 .4)} Face 14027 7210 7297 14241 {rgb=(.7 .4 .4)} Face 14028 7297 7653 14241 {rgb=(.7 .4 .4)} Face 14029 7694 8057 14242 {rgb=(.7 .4 .4)} Face 14030 8057 8035 14242 {rgb=(.7 .4 .4)} Face 14031 8035 7653 14242 {rgb=(.7 .4 .4)} Face 14032 7653 7694 14242 {rgb=(.7 .4 .4)} Face 14033 8369 8386 14243 {rgb=(.7 .4 .4)} Face 14034 8386 8057 14243 {rgb=(.7 .4 .4)} Face 14035 8057 8094 14243 {rgb=(.7 .4 .4)} Face 14036 8094 8369 14243 {rgb=(.7 .4 .4)} Face 14037 7131 7358 14244 {rgb=(.7 .4 .4)} Face 14038 7358 7297 14244 {rgb=(.7 .4 .4)} Face 14039 7297 7054 14244 {rgb=(.7 .4 .4)} Face 14040 7054 7131 14244 {rgb=(.7 .4 .4)} Face 14041 7745 7694 14245 {rgb=(.7 .4 .4)} Face 14042 7694 7358 14245 {rgb=(.7 .4 .4)} Face 14043 7358 7421 14245 {rgb=(.7 .4 .4)} Face 14044 7421 7745 14245 {rgb=(.7 .4 .4)} Face 14045 7805 8117 14246 {rgb=(.7 .4 .4)} Face 14046 8117 8094 14246 {rgb=(.7 .4 .4)} Face 14047 8094 7745 14246 {rgb=(.7 .4 .4)} Face 14048 7745 7805 14246 {rgb=(.7 .4 .4)} Face 14049 8312 8337 14247 {rgb=(.7 .4 .4)} Face 14050 8337 8117 14247 {rgb=(.7 .4 .4)} Face 14051 8117 8140 14247 {rgb=(.7 .4 .4)} Face 14052 8140 8312 14247 {rgb=(.7 .4 .4)} Face 14053 7293 7490 14248 {rgb=(.7 .4 .4)} Face 14054 7490 7421 14248 {rgb=(.7 .4 .4)} Face 14055 7421 7171 14248 {rgb=(.7 .4 .4)} Face 14056 7171 7293 14248 {rgb=(.7 .4 .4)} Face 14057 7857 7805 14249 {rgb=(.7 .4 .4)} Face 14058 7805 7490 14249 {rgb=(.7 .4 .4)} Face 14059 7490 7567 14249 {rgb=(.7 .4 .4)} Face 14060 7567 7857 14249 {rgb=(.7 .4 .4)} Face 14061 7896 8155 14250 {rgb=(.7 .4 .4)} Face 14062 8155 8140 14250 {rgb=(.7 .4 .4)} Face 14063 8140 7857 14250 {rgb=(.7 .4 .4)} Face 14064 7857 7896 14250 {rgb=(.7 .4 .4)} Face 14065 8316 8301 14251 {rgb=(.7 .4 .4)} Face 14066 8301 8155 14251 {rgb=(.7 .4 .4)} Face 14067 8155 8182 14251 {rgb=(.7 .4 .4)} Face 14068 8182 8316 14251 {rgb=(.7 .4 .4)} Face 14069 7454 7646 14252 {rgb=(.7 .4 .4)} Face 14070 7646 7567 14252 {rgb=(.7 .4 .4)} Face 14071 7567 7377 14252 {rgb=(.7 .4 .4)} Face 14072 7377 7454 14252 {rgb=(.7 .4 .4)} Face 14073 7944 7896 14253 {rgb=(.7 .4 .4)} Face 14074 7896 7646 14253 {rgb=(.7 .4 .4)} Face 14075 7646 7716 14253 {rgb=(.7 .4 .4)} Face 14076 7716 7944 14253 {rgb=(.7 .4 .4)} Face 14077 7143 7202 14254 {rgb=(.7 .4 .4)} Face 14078 7202 7377 14254 {rgb=(.7 .4 .4)} Face 14079 7377 7293 14254 {rgb=(.7 .4 .4)} Face 14080 7293 7143 14254 {rgb=(.7 .4 .4)} Face 14081 7499 7454 14255 {rgb=(.7 .4 .4)} Face 14082 7454 7287 14255 {rgb=(.7 .4 .4)} Face 14083 7287 7322 14255 {rgb=(.7 .4 .4)} Face 14084 7322 7499 14255 {rgb=(.7 .4 .4)} Face 14085 7083 7287 14256 {rgb=(.7 .4 .4)} Face 14086 7287 7202 14256 {rgb=(.7 .4 .4)} Face 14087 7202 7052 14256 {rgb=(.7 .4 .4)} Face 14088 7052 7083 14256 {rgb=(.7 .4 .4)} Face 14089 7005 7040 14257 {rgb=(.7 .4 .4)} Face 14090 7040 7171 14257 {rgb=(.7 .4 .4)} Face 14091 7171 7131 14257 {rgb=(.7 .4 .4)} Face 14092 7131 7005 14257 {rgb=(.7 .4 .4)} Face 14093 6997 7143 14258 {rgb=(.7 .4 .4)} Face 14094 7143 7040 14258 {rgb=(.7 .4 .4)} Face 14095 7040 6902 14258 {rgb=(.7 .4 .4)} Face 14096 6902 6997 14258 {rgb=(.7 .4 .4)} Face 14097 6853 7005 14259 {rgb=(.7 .4 .4)} Face 14098 7005 7054 14259 {rgb=(.7 .4 .4)} Face 14099 7054 6860 14259 {rgb=(.7 .4 .4)} Face 14100 6860 6853 14259 {rgb=(.7 .4 .4)} Face 14101 6834 6907 14260 {rgb=(.7 .4 .4)} Face 14102 6907 7052 14260 {rgb=(.7 .4 .4)} Face 14103 7052 6997 14260 {rgb=(.7 .4 .4)} Face 14104 6997 6834 14260 {rgb=(.7 .4 .4)} Face 14105 7113 7083 14261 {rgb=(.7 .4 .4)} Face 14106 7083 6924 14261 {rgb=(.7 .4 .4)} Face 14107 6924 6949 14261 {rgb=(.7 .4 .4)} Face 14108 6949 7113 14261 {rgb=(.7 .4 .4)} Face 14109 6750 6924 14262 {rgb=(.7 .4 .4)} Face 14110 6924 6907 14262 {rgb=(.7 .4 .4)} Face 14111 6907 6737 14262 {rgb=(.7 .4 .4)} Face 14112 6737 6750 14262 {rgb=(.7 .4 .4)} Face 14113 6598 6719 14263 {rgb=(.7 .4 .4)} Face 14114 6719 6902 14263 {rgb=(.7 .4 .4)} Face 14115 6902 6853 14263 {rgb=(.7 .4 .4)} Face 14116 6853 6598 14263 {rgb=(.7 .4 .4)} Face 14117 6653 6834 14264 {rgb=(.7 .4 .4)} Face 14118 6834 6719 14264 {rgb=(.7 .4 .4)} Face 14119 6719 6489 14264 {rgb=(.7 .4 .4)} Face 14120 6489 6653 14264 {rgb=(.7 .4 .4)} Face 14121 6353 6451 14265 {rgb=(.7 .4 .4)} Face 14122 6451 6860 14265 {rgb=(.7 .4 .4)} Face 14123 6860 6843 14265 {rgb=(.7 .4 .4)} Face 14124 6843 6353 14265 {rgb=(.7 .4 .4)} Face 14125 6351 6598 14266 {rgb=(.7 .4 .4)} Face 14126 6598 6451 14266 {rgb=(.7 .4 .4)} Face 14127 6451 6134 14266 {rgb=(.7 .4 .4)} Face 14128 6134 6351 14266 {rgb=(.7 .4 .4)} Face 14129 6402 6546 14267 {rgb=(.7 .4 .4)} Face 14130 6546 6737 14267 {rgb=(.7 .4 .4)} Face 14131 6737 6653 14267 {rgb=(.7 .4 .4)} Face 14132 6653 6402 14267 {rgb=(.7 .4 .4)} Face 14133 6761 6750 14268 {rgb=(.7 .4 .4)} Face 14134 6750 6586 14268 {rgb=(.7 .4 .4)} Face 14135 6586 6614 14268 {rgb=(.7 .4 .4)} Face 14136 6614 6761 14268 {rgb=(.7 .4 .4)} Face 14137 6310 6586 14269 {rgb=(.7 .4 .4)} Face 14138 6586 6546 14269 {rgb=(.7 .4 .4)} Face 14139 6546 6276 14269 {rgb=(.7 .4 .4)} Face 14140 6276 6310 14269 {rgb=(.7 .4 .4)} Face 14141 6093 6196 14270 {rgb=(.7 .4 .4)} Face 14142 6196 6489 14270 {rgb=(.7 .4 .4)} Face 14143 6489 6351 14270 {rgb=(.7 .4 .4)} Face 14144 6351 6093 14270 {rgb=(.7 .4 .4)} Face 14145 6159 6402 14271 {rgb=(.7 .4 .4)} Face 14146 6402 6196 14271 {rgb=(.7 .4 .4)} Face 14147 6196 6028 14271 {rgb=(.7 .4 .4)} Face 14148 6028 6159 14271 {rgb=(.7 .4 .4)} Face 14149 5954 6093 14272 {rgb=(.7 .4 .4)} Face 14150 6093 6134 14272 {rgb=(.7 .4 .4)} Face 14151 6134 5945 14272 {rgb=(.7 .4 .4)} Face 14152 5945 5954 14272 {rgb=(.7 .4 .4)} Face 14153 5995 6047 14273 {rgb=(.7 .4 .4)} Face 14154 6047 6276 14273 {rgb=(.7 .4 .4)} Face 14155 6276 6159 14273 {rgb=(.7 .4 .4)} Face 14156 6159 5995 14273 {rgb=(.7 .4 .4)} Face 14157 6358 6310 14274 {rgb=(.7 .4 .4)} Face 14158 6310 6071 14274 {rgb=(.7 .4 .4)} Face 14159 6071 6100 14274 {rgb=(.7 .4 .4)} Face 14160 6100 6358 14274 {rgb=(.7 .4 .4)} Face 14161 5896 6071 14275 {rgb=(.7 .4 .4)} Face 14162 6071 6047 14275 {rgb=(.7 .4 .4)} Face 14163 6047 5893 14275 {rgb=(.7 .4 .4)} Face 14164 5893 5896 14275 {rgb=(.7 .4 .4)} Face 14165 5828 5899 14276 {rgb=(.7 .4 .4)} Face 14166 5899 6028 14276 {rgb=(.7 .4 .4)} Face 14167 6028 5954 14276 {rgb=(.7 .4 .4)} Face 14168 5954 5828 14276 {rgb=(.7 .4 .4)} Face 14169 5882 5995 14277 {rgb=(.7 .4 .4)} Face 14170 5995 5899 14277 {rgb=(.7 .4 .4)} Face 14171 5899 5840 14277 {rgb=(.7 .4 .4)} Face 14172 5840 5882 14277 {rgb=(.7 .4 .4)} Face 14173 5660 5708 14278 {rgb=(.7 .4 .4)} Face 14174 5708 5945 14278 {rgb=(.7 .4 .4)} Face 14175 5945 5938 14278 {rgb=(.7 .4 .4)} Face 14176 5938 5660 14278 {rgb=(.7 .4 .4)} Face 14177 5714 5828 14279 {rgb=(.7 .4 .4)} Face 14178 5828 5708 14279 {rgb=(.7 .4 .4)} Face 14179 5708 5570 14279 {rgb=(.7 .4 .4)} Face 14180 5570 5714 14279 {rgb=(.7 .4 .4)} Face 14181 5795 5784 14280 {rgb=(.7 .4 .4)} Face 14182 5784 5893 14280 {rgb=(.7 .4 .4)} Face 14183 5893 5882 14280 {rgb=(.7 .4 .4)} Face 14184 5882 5795 14280 {rgb=(.7 .4 .4)} Face 14185 5863 5896 14281 {rgb=(.7 .4 .4)} Face 14186 5896 5765 14281 {rgb=(.7 .4 .4)} Face 14187 5765 5712 14281 {rgb=(.7 .4 .4)} Face 14188 5712 5863 14281 {rgb=(.7 .4 .4)} Face 14189 5655 5765 14282 {rgb=(.7 .4 .4)} Face 14190 5765 5784 14282 {rgb=(.7 .4 .4)} Face 14191 5784 5681 14282 {rgb=(.7 .4 .4)} Face 14192 5681 5655 14282 {rgb=(.7 .4 .4)} Face 14193 5701 5795 14283 {rgb=(.7 .4 .4)} Face 14194 5795 5840 14283 {rgb=(.7 .4 .4)} Face 14195 5840 5728 14283 {rgb=(.7 .4 .4)} Face 14196 5728 5701 14283 {rgb=(.7 .4 .4)} Face 14197 5583 5578 14284 {rgb=(.7 .4 .4)} Face 14198 5578 5681 14284 {rgb=(.7 .4 .4)} Face 14199 5681 5701 14284 {rgb=(.7 .4 .4)} Face 14200 5701 5583 14284 {rgb=(.7 .4 .4)} Face 14201 5629 5655 14285 {rgb=(.7 .4 .4)} Face 14202 5655 5566 14285 {rgb=(.7 .4 .4)} Face 14203 5566 5558 14285 {rgb=(.7 .4 .4)} Face 14204 5558 5629 14285 {rgb=(.7 .4 .4)} Face 14205 5569 5587 14286 {rgb=(.7 .4 .4)} Face 14206 5587 5728 14286 {rgb=(.7 .4 .4)} Face 14207 5728 5714 14286 {rgb=(.7 .4 .4)} Face 14208 5714 5569 14286 {rgb=(.7 .4 .4)} Face 14209 6320 5935 14287 {rgb=(.7 .4 .4)} Face 14210 5935 5938 14287 {rgb=(.7 .4 .4)} Face 14211 5938 6353 14287 {rgb=(.7 .4 .4)} Face 14212 6353 6320 14287 {rgb=(.7 .4 .4)} Face 14213 5661 5659 14288 {rgb=(.7 .4 .4)} Face 14214 5659 5935 14288 {rgb=(.7 .4 .4)} Face 14215 5935 5941 14288 {rgb=(.7 .4 .4)} Face 14216 5941 5661 14288 {rgb=(.7 .4 .4)} Face 14217 6299 5950 14289 {rgb=(.7 .4 .4)} Face 14218 5950 5941 14289 {rgb=(.7 .4 .4)} Face 14219 5941 6304 14289 {rgb=(.7 .4 .4)} Face 14220 6304 6299 14289 {rgb=(.7 .4 .4)} Face 14221 5617 5664 14290 {rgb=(.7 .4 .4)} Face 14222 5664 5950 14290 {rgb=(.7 .4 .4)} Face 14223 5950 5898 14290 {rgb=(.7 .4 .4)} Face 14224 5898 5617 14290 {rgb=(.7 .4 .4)} Face 14225 5838 5616 14291 {rgb=(.7 .4 .4)} Face 14226 5616 5898 14291 {rgb=(.7 .4 .4)} Face 14227 5898 6111 14291 {rgb=(.7 .4 .4)} Face 14228 6111 5838 14291 {rgb=(.7 .4 .4)} Face 14229 6304 6320 14292 {rgb=(.7 .4 .4)} Face 14230 6320 6776 14292 {rgb=(.7 .4 .4)} Face 14231 6776 6744 14292 {rgb=(.7 .4 .4)} Face 14232 6744 6304 14292 {rgb=(.7 .4 .4)} Face 14233 6111 6299 14293 {rgb=(.7 .4 .4)} Face 14234 6299 6712 14293 {rgb=(.7 .4 .4)} Face 14235 6712 6536 14293 {rgb=(.7 .4 .4)} Face 14236 6536 6111 14293 {rgb=(.7 .4 .4)} Face 14237 7327 7502 14294 {rgb=(.7 .4 .4)} Face 14238 7502 7505 14294 {rgb=(.7 .4 .4)} Face 14239 7505 7312 14294 {rgb=(.7 .4 .4)} Face 14240 7312 7327 14294 {rgb=(.7 .4 .4)} Face 14241 7493 7505 14295 {rgb=(.7 .4 .4)} Face 14242 7505 7717 14295 {rgb=(.7 .4 .4)} Face 14243 7717 7664 14295 {rgb=(.7 .4 .4)} Face 14244 7664 7493 14295 {rgb=(.7 .4 .4)} Face 14245 7860 7717 14296 {rgb=(.7 .4 .4)} Face 14246 7717 7720 14296 {rgb=(.7 .4 .4)} Face 14247 7720 7876 14296 {rgb=(.7 .4 .4)} Face 14248 7876 7860 14296 {rgb=(.7 .4 .4)} Face 14249 7737 7720 14297 {rgb=(.7 .4 .4)} Face 14250 7720 7502 14297 {rgb=(.7 .4 .4)} Face 14251 7502 7512 14297 {rgb=(.7 .4 .4)} Face 14252 7512 7737 14297 {rgb=(.7 .4 .4)} Face 14253 7000 7144 14298 {rgb=(.7 .4 .4)} Face 14254 7144 7047 14298 {rgb=(.7 .4 .4)} Face 14255 7047 6906 14298 {rgb=(.7 .4 .4)} Face 14256 6906 7000 14298 {rgb=(.7 .4 .4)} Face 14257 7035 7047 14299 {rgb=(.7 .4 .4)} Face 14258 7047 7312 14299 {rgb=(.7 .4 .4)} Face 14259 7312 7302 14299 {rgb=(.7 .4 .4)} Face 14260 7302 7035 14299 {rgb=(.7 .4 .4)} Face 14261 7347 7327 14300 {rgb=(.7 .4 .4)} Face 14262 7327 7144 14300 {rgb=(.7 .4 .4)} Face 14263 7144 7180 14300 {rgb=(.7 .4 .4)} Face 14264 7180 7347 14300 {rgb=(.7 .4 .4)} Face 14265 7364 7538 14301 {rgb=(.7 .4 .4)} Face 14266 7538 7512 14301 {rgb=(.7 .4 .4)} Face 14267 7512 7347 14301 {rgb=(.7 .4 .4)} Face 14268 7347 7364 14301 {rgb=(.7 .4 .4)} Face 14269 7907 7737 14302 {rgb=(.7 .4 .4)} Face 14270 7737 7767 14302 {rgb=(.7 .4 .4)} Face 14271 7767 7919 14302 {rgb=(.7 .4 .4)} Face 14272 7919 7907 14302 {rgb=(.7 .4 .4)} Face 14273 7706 7767 14303 {rgb=(.7 .4 .4)} Face 14274 7767 7538 14303 {rgb=(.7 .4 .4)} Face 14275 7538 7509 14303 {rgb=(.7 .4 .4)} Face 14276 7509 7706 14303 {rgb=(.7 .4 .4)} Face 14277 7023 7176 14304 {rgb=(.7 .4 .4)} Face 14278 7176 7180 14304 {rgb=(.7 .4 .4)} Face 14279 7180 7036 14304 {rgb=(.7 .4 .4)} Face 14280 7036 7023 14304 {rgb=(.7 .4 .4)} Face 14281 7386 7364 14305 {rgb=(.7 .4 .4)} Face 14282 7364 7176 14305 {rgb=(.7 .4 .4)} Face 14283 7176 7186 14305 {rgb=(.7 .4 .4)} Face 14284 7186 7386 14305 {rgb=(.7 .4 .4)} Face 14285 7332 7445 14306 {rgb=(.7 .4 .4)} Face 14286 7445 7509 14306 {rgb=(.7 .4 .4)} Face 14287 7509 7386 14306 {rgb=(.7 .4 .4)} Face 14288 7386 7332 14306 {rgb=(.7 .4 .4)} Face 14289 7811 7706 14307 {rgb=(.7 .4 .4)} Face 14290 7706 7555 14307 {rgb=(.7 .4 .4)} Face 14291 7555 7636 14307 {rgb=(.7 .4 .4)} Face 14292 7636 7811 14307 {rgb=(.7 .4 .4)} Face 14293 7411 7555 14308 {rgb=(.7 .4 .4)} Face 14294 7555 7445 14308 {rgb=(.7 .4 .4)} Face 14295 7445 7324 14308 {rgb=(.7 .4 .4)} Face 14296 7324 7411 14308 {rgb=(.7 .4 .4)} Face 14297 7189 7332 14309 {rgb=(.7 .4 .4)} Face 14298 7332 7186 14309 {rgb=(.7 .4 .4)} Face 14299 7186 7076 14309 {rgb=(.7 .4 .4)} Face 14300 7076 7189 14309 {rgb=(.7 .4 .4)} Face 14301 7031 7134 14310 {rgb=(.7 .4 .4)} Face 14302 7134 7324 14310 {rgb=(.7 .4 .4)} Face 14303 7324 7189 14310 {rgb=(.7 .4 .4)} Face 14304 7189 7031 14310 {rgb=(.7 .4 .4)} Face 14305 7472 7411 14311 {rgb=(.7 .4 .4)} Face 14306 7411 7212 14311 {rgb=(.7 .4 .4)} Face 14307 7212 7313 14311 {rgb=(.7 .4 .4)} Face 14308 7313 7472 14311 {rgb=(.7 .4 .4)} Face 14309 7075 7212 14312 {rgb=(.7 .4 .4)} Face 14310 7212 7134 14312 {rgb=(.7 .4 .4)} Face 14311 7134 7011 14312 {rgb=(.7 .4 .4)} Face 14312 7011 7075 14312 {rgb=(.7 .4 .4)} Face 14313 6762 6923 14313 {rgb=(.7 .4 .4)} Face 14314 6923 7076 14313 {rgb=(.7 .4 .4)} Face 14315 7076 6945 14313 {rgb=(.7 .4 .4)} Face 14316 6945 6762 14313 {rgb=(.7 .4 .4)} Face 14317 6957 7031 14314 {rgb=(.7 .4 .4)} Face 14318 7031 6923 14314 {rgb=(.7 .4 .4)} Face 14319 6923 6821 14314 {rgb=(.7 .4 .4)} Face 14320 6821 6957 14314 {rgb=(.7 .4 .4)} Face 14321 6864 6922 14315 {rgb=(.7 .4 .4)} Face 14322 6922 7011 14315 {rgb=(.7 .4 .4)} Face 14323 7011 6957 14315 {rgb=(.7 .4 .4)} Face 14324 6957 6864 14315 {rgb=(.7 .4 .4)} Face 14325 7148 7075 14316 {rgb=(.7 .4 .4)} Face 14326 7075 6969 14316 {rgb=(.7 .4 .4)} Face 14327 6969 7025 14316 {rgb=(.7 .4 .4)} Face 14328 7025 7148 14316 {rgb=(.7 .4 .4)} Face 14329 6742 6969 14317 {rgb=(.7 .4 .4)} Face 14330 6969 6922 14317 {rgb=(.7 .4 .4)} Face 14331 6922 6727 14317 {rgb=(.7 .4 .4)} Face 14332 6727 6742 14317 {rgb=(.7 .4 .4)} Face 14333 6703 6864 14318 {rgb=(.7 .4 .4)} Face 14334 6864 6821 14318 {rgb=(.7 .4 .4)} Face 14335 6821 6655 14318 {rgb=(.7 .4 .4)} Face 14336 6655 6703 14318 {rgb=(.7 .4 .4)} Face 14337 6326 6333 14319 {rgb=(.7 .4 .4)} Face 14338 6333 6727 14319 {rgb=(.7 .4 .4)} Face 14339 6727 6703 14319 {rgb=(.7 .4 .4)} Face 14340 6703 6326 14319 {rgb=(.7 .4 .4)} Face 14341 6771 6742 14320 {rgb=(.7 .4 .4)} Face 14342 6742 6302 14320 {rgb=(.7 .4 .4)} Face 14343 6302 6307 14320 {rgb=(.7 .4 .4)} Face 14344 6307 6771 14320 {rgb=(.7 .4 .4)} Face 14345 5929 6302 14321 {rgb=(.7 .4 .4)} Face 14346 6302 6333 14321 {rgb=(.7 .4 .4)} Face 14347 6333 5968 14321 {rgb=(.7 .4 .4)} Face 14348 5968 5929 14321 {rgb=(.7 .4 .4)} Face 14349 6208 6287 14322 {rgb=(.7 .4 .4)} Face 14350 6287 6655 14322 {rgb=(.7 .4 .4)} Face 14351 6655 6576 14322 {rgb=(.7 .4 .4)} Face 14352 6576 6208 14322 {rgb=(.7 .4 .4)} Face 14353 5977 6326 14323 {rgb=(.7 .4 .4)} Face 14354 6326 6287 14323 {rgb=(.7 .4 .4)} Face 14355 6287 5953 14323 {rgb=(.7 .4 .4)} Face 14356 5953 5977 14323 {rgb=(.7 .4 .4)} Face 14357 5662 5658 14324 {rgb=(.7 .4 .4)} Face 14358 5658 5968 14324 {rgb=(.7 .4 .4)} Face 14359 5968 5977 14324 {rgb=(.7 .4 .4)} Face 14360 5977 5662 14324 {rgb=(.7 .4 .4)} Face 14361 5916 5929 14325 {rgb=(.7 .4 .4)} Face 14362 5929 5639 14325 {rgb=(.7 .4 .4)} Face 14363 5639 5633 14325 {rgb=(.7 .4 .4)} Face 14364 5633 5916 14325 {rgb=(.7 .4 .4)} Face 14365 5634 5651 14326 {rgb=(.7 .4 .4)} Face 14366 5651 5953 14326 {rgb=(.7 .4 .4)} Face 14367 5953 5920 14326 {rgb=(.7 .4 .4)} Face 14368 5920 5634 14326 {rgb=(.7 .4 .4)} Face 14369 7788 7860 14327 {rgb=(.7 .4 .4)} Face 14370 7860 7924 14327 {rgb=(.7 .4 .4)} Face 14371 7924 7836 14327 {rgb=(.7 .4 .4)} Face 14372 7836 7788 14327 {rgb=(.7 .4 .4)} Face 14373 7985 7924 14328 {rgb=(.7 .4 .4)} Face 14374 7924 7957 14328 {rgb=(.7 .4 .4)} Face 14375 7957 8031 14328 {rgb=(.7 .4 .4)} Face 14376 8031 7985 14328 {rgb=(.7 .4 .4)} Face 14377 7997 7957 14329 {rgb=(.7 .4 .4)} Face 14378 7957 7876 14329 {rgb=(.7 .4 .4)} Face 14379 7876 7902 14329 {rgb=(.7 .4 .4)} Face 14380 7902 7997 14329 {rgb=(.7 .4 .4)} Face 14381 8050 7997 14330 {rgb=(.7 .4 .4)} Face 14382 7997 8004 14330 {rgb=(.7 .4 .4)} Face 14383 8004 8048 14330 {rgb=(.7 .4 .4)} Face 14384 8048 8050 14330 {rgb=(.7 .4 .4)} Face 14385 8023 8004 14331 {rgb=(.7 .4 .4)} Face 14386 8004 7902 14331 {rgb=(.7 .4 .4)} Face 14387 7902 7911 14331 {rgb=(.7 .4 .4)} Face 14388 7911 8023 14331 {rgb=(.7 .4 .4)} Face 14389 8107 8023 14332 {rgb=(.7 .4 .4)} Face 14390 8023 8056 14332 {rgb=(.7 .4 .4)} Face 14391 8056 8158 14332 {rgb=(.7 .4 .4)} Face 14392 8158 8107 14332 {rgb=(.7 .4 .4)} Face 14393 8039 8056 14333 {rgb=(.7 .4 .4)} Face 14394 8056 7911 14333 {rgb=(.7 .4 .4)} Face 14395 7911 7907 14333 {rgb=(.7 .4 .4)} Face 14396 7907 8039 14333 {rgb=(.7 .4 .4)} Face 14397 8163 8039 14334 {rgb=(.7 .4 .4)} Face 14398 8039 8026 14334 {rgb=(.7 .4 .4)} Face 14399 8026 8139 14334 {rgb=(.7 .4 .4)} Face 14400 8139 8163 14334 {rgb=(.7 .4 .4)} Face 14401 8007 8026 14335 {rgb=(.7 .4 .4)} Face 14402 8026 7919 14335 {rgb=(.7 .4 .4)} Face 14403 7919 7917 14335 {rgb=(.7 .4 .4)} Face 14404 7917 8007 14335 {rgb=(.7 .4 .4)} Face 14405 8061 8007 14336 {rgb=(.7 .4 .4)} Face 14406 8007 7934 14336 {rgb=(.7 .4 .4)} Face 14407 7934 7968 14336 {rgb=(.7 .4 .4)} Face 14408 7968 8061 14336 {rgb=(.7 .4 .4)} Face 14409 7835 7934 14337 {rgb=(.7 .4 .4)} Face 14410 7934 7917 14337 {rgb=(.7 .4 .4)} Face 14411 7917 7811 14337 {rgb=(.7 .4 .4)} Face 14412 7811 7835 14337 {rgb=(.7 .4 .4)} Face 14413 7853 7835 14338 {rgb=(.7 .4 .4)} Face 14414 7835 7659 14338 {rgb=(.7 .4 .4)} Face 14415 7659 7689 14338 {rgb=(.7 .4 .4)} Face 14416 7689 7853 14338 {rgb=(.7 .4 .4)} Face 14417 7508 7659 14339 {rgb=(.7 .4 .4)} Face 14418 7659 7636 14339 {rgb=(.7 .4 .4)} Face 14419 7636 7472 14339 {rgb=(.7 .4 .4)} Face 14420 7472 7508 14339 {rgb=(.7 .4 .4)} Face 14421 7556 7508 14340 {rgb=(.7 .4 .4)} Face 14422 7508 7387 14340 {rgb=(.7 .4 .4)} Face 14423 7387 7457 14340 {rgb=(.7 .4 .4)} Face 14424 7457 7556 14340 {rgb=(.7 .4 .4)} Face 14425 7249 7387 14341 {rgb=(.7 .4 .4)} Face 14426 7387 7313 14341 {rgb=(.7 .4 .4)} Face 14427 7313 7148 14341 {rgb=(.7 .4 .4)} Face 14428 7148 7249 14341 {rgb=(.7 .4 .4)} Face 14429 7355 7249 14342 {rgb=(.7 .4 .4)} Face 14430 7249 7115 14342 {rgb=(.7 .4 .4)} Face 14431 7115 7233 14342 {rgb=(.7 .4 .4)} Face 14432 7233 7355 14342 {rgb=(.7 .4 .4)} Face 14433 6859 7115 14343 {rgb=(.7 .4 .4)} Face 14434 7115 7025 14343 {rgb=(.7 .4 .4)} Face 14435 7025 6771 14343 {rgb=(.7 .4 .4)} Face 14436 6771 6859 14343 {rgb=(.7 .4 .4)} Face 14437 6916 6859 14344 {rgb=(.7 .4 .4)} Face 14438 6859 6362 14344 {rgb=(.7 .4 .4)} Face 14439 6362 6393 14344 {rgb=(.7 .4 .4)} Face 14440 6393 6916 14344 {rgb=(.7 .4 .4)} Face 14441 5932 6362 14345 {rgb=(.7 .4 .4)} Face 14442 6362 6307 14345 {rgb=(.7 .4 .4)} Face 14443 6307 5916 14345 {rgb=(.7 .4 .4)} Face 14444 5916 5932 14345 {rgb=(.7 .4 .4)} Face 14445 5949 5932 14346 {rgb=(.7 .4 .4)} Face 14446 5932 5641 14346 {rgb=(.7 .4 .4)} Face 14447 5641 5653 14346 {rgb=(.7 .4 .4)} Face 14448 5653 5949 14346 {rgb=(.7 .4 .4)} Face 14449 8257 8294 14347 {rgb=(.7 .4 .4)} Face 14450 8294 8313 14347 {rgb=(.7 .4 .4)} Face 14451 8313 8253 14347 {rgb=(.7 .4 .4)} Face 14452 8253 8257 14347 {rgb=(.7 .4 .4)} Face 14453 8274 8313 14348 {rgb=(.7 .4 .4)} Face 14454 8313 8377 14348 {rgb=(.7 .4 .4)} Face 14455 8377 8358 14348 {rgb=(.7 .4 .4)} Face 14456 8358 8274 14348 {rgb=(.7 .4 .4)} Face 14457 8436 8377 14349 {rgb=(.7 .4 .4)} Face 14458 8377 8341 14349 {rgb=(.7 .4 .4)} Face 14459 8341 8382 14349 {rgb=(.7 .4 .4)} Face 14460 8382 8436 14349 {rgb=(.7 .4 .4)} Face 14461 8286 8341 14350 {rgb=(.7 .4 .4)} Face 14462 8341 8294 14350 {rgb=(.7 .4 .4)} Face 14463 8294 8255 14350 {rgb=(.7 .4 .4)} Face 14464 8255 8286 14350 {rgb=(.7 .4 .4)} Face 14465 8209 8230 14351 {rgb=(.7 .4 .4)} Face 14466 8230 8210 14351 {rgb=(.7 .4 .4)} Face 14467 8210 8174 14351 {rgb=(.7 .4 .4)} Face 14468 8174 8209 14351 {rgb=(.7 .4 .4)} Face 14469 8141 8210 14352 {rgb=(.7 .4 .4)} Face 14470 8210 8253 14352 {rgb=(.7 .4 .4)} Face 14471 8253 8208 14352 {rgb=(.7 .4 .4)} Face 14472 8208 8141 14352 {rgb=(.7 .4 .4)} Face 14473 8235 8257 14353 {rgb=(.7 .4 .4)} Face 14474 8257 8230 14353 {rgb=(.7 .4 .4)} Face 14475 8230 8217 14353 {rgb=(.7 .4 .4)} Face 14476 8217 8235 14353 {rgb=(.7 .4 .4)} Face 14477 8175 8198 14354 {rgb=(.7 .4 .4)} Face 14478 8198 8153 14354 {rgb=(.7 .4 .4)} Face 14479 8153 8126 14354 {rgb=(.7 .4 .4)} Face 14480 8126 8175 14354 {rgb=(.7 .4 .4)} Face 14481 8033 8153 14355 {rgb=(.7 .4 .4)} Face 14482 8153 8174 14355 {rgb=(.7 .4 .4)} Face 14483 8174 8066 14355 {rgb=(.7 .4 .4)} Face 14484 8066 8033 14355 {rgb=(.7 .4 .4)} Face 14485 8204 8209 14356 {rgb=(.7 .4 .4)} Face 14486 8209 8198 14356 {rgb=(.7 .4 .4)} Face 14487 8198 8196 14356 {rgb=(.7 .4 .4)} Face 14488 8196 8204 14356 {rgb=(.7 .4 .4)} Face 14489 8088 8143 14357 {rgb=(.7 .4 .4)} Face 14490 8143 8089 14357 {rgb=(.7 .4 .4)} Face 14491 8089 8040 14357 {rgb=(.7 .4 .4)} Face 14492 8040 8088 14357 {rgb=(.7 .4 .4)} Face 14493 7975 8089 14358 {rgb=(.7 .4 .4)} Face 14494 8089 8126 14358 {rgb=(.7 .4 .4)} Face 14495 8126 8001 14358 {rgb=(.7 .4 .4)} Face 14496 8001 7975 14358 {rgb=(.7 .4 .4)} Face 14497 8189 8175 14359 {rgb=(.7 .4 .4)} Face 14498 8175 8143 14359 {rgb=(.7 .4 .4)} Face 14499 8143 8151 14359 {rgb=(.7 .4 .4)} Face 14500 8151 8189 14359 {rgb=(.7 .4 .4)} Face 14501 7881 7985 14360 {rgb=(.7 .4 .4)} Face 14502 7985 8040 14360 {rgb=(.7 .4 .4)} Face 14503 8040 7936 14360 {rgb=(.7 .4 .4)} Face 14504 7936 7881 14360 {rgb=(.7 .4 .4)} Face 14505 8095 8088 14361 {rgb=(.7 .4 .4)} Face 14506 8088 8031 14361 {rgb=(.7 .4 .4)} Face 14507 8031 8050 14361 {rgb=(.7 .4 .4)} Face 14508 8050 8095 14361 {rgb=(.7 .4 .4)} Face 14509 8108 8095 14362 {rgb=(.7 .4 .4)} Face 14510 8095 8049 14362 {rgb=(.7 .4 .4)} Face 14511 8049 8051 14362 {rgb=(.7 .4 .4)} Face 14512 8051 8108 14362 {rgb=(.7 .4 .4)} Face 14513 8047 8049 14363 {rgb=(.7 .4 .4)} Face 14514 8049 8048 14363 {rgb=(.7 .4 .4)} Face 14515 8048 8063 14363 {rgb=(.7 .4 .4)} Face 14516 8063 8047 14363 {rgb=(.7 .4 .4)} Face 14517 8158 8163 14364 {rgb=(.7 .4 .4)} Face 14518 8163 8218 14364 {rgb=(.7 .4 .4)} Face 14519 8218 8207 14364 {rgb=(.7 .4 .4)} Face 14520 8207 8158 14364 {rgb=(.7 .4 .4)} Face 14521 8251 8218 14365 {rgb=(.7 .4 .4)} Face 14522 8218 8195 14365 {rgb=(.7 .4 .4)} Face 14523 8195 8234 14365 {rgb=(.7 .4 .4)} Face 14524 8234 8251 14365 {rgb=(.7 .4 .4)} Face 14525 8138 8195 14366 {rgb=(.7 .4 .4)} Face 14526 8195 8139 14366 {rgb=(.7 .4 .4)} Face 14527 8139 8061 14366 {rgb=(.7 .4 .4)} Face 14528 8061 8138 14366 {rgb=(.7 .4 .4)} Face 14529 8184 8138 14367 {rgb=(.7 .4 .4)} Face 14530 8138 8017 14367 {rgb=(.7 .4 .4)} Face 14531 8017 8093 14367 {rgb=(.7 .4 .4)} Face 14532 8093 8184 14367 {rgb=(.7 .4 .4)} Face 14533 7892 8017 14368 {rgb=(.7 .4 .4)} Face 14534 8017 7968 14368 {rgb=(.7 .4 .4)} Face 14535 7968 7853 14368 {rgb=(.7 .4 .4)} Face 14536 7853 7892 14368 {rgb=(.7 .4 .4)} Face 14537 7949 7892 14369 {rgb=(.7 .4 .4)} Face 14538 7892 7736 14369 {rgb=(.7 .4 .4)} Face 14539 7736 7803 14369 {rgb=(.7 .4 .4)} Face 14540 7803 7949 14369 {rgb=(.7 .4 .4)} Face 14541 7621 7736 14370 {rgb=(.7 .4 .4)} Face 14542 7736 7689 14370 {rgb=(.7 .4 .4)} Face 14543 7689 7556 14370 {rgb=(.7 .4 .4)} Face 14544 7556 7621 14370 {rgb=(.7 .4 .4)} Face 14545 7684 7621 14371 {rgb=(.7 .4 .4)} Face 14546 7621 7518 14371 {rgb=(.7 .4 .4)} Face 14547 7518 7613 14371 {rgb=(.7 .4 .4)} Face 14548 7613 7684 14371 {rgb=(.7 .4 .4)} Face 14549 7451 7518 14372 {rgb=(.7 .4 .4)} Face 14550 7518 7457 14372 {rgb=(.7 .4 .4)} Face 14551 7457 7355 14372 {rgb=(.7 .4 .4)} Face 14552 7355 7451 14372 {rgb=(.7 .4 .4)} Face 14553 7536 7451 14373 {rgb=(.7 .4 .4)} Face 14554 7451 7370 14373 {rgb=(.7 .4 .4)} Face 14555 7370 7481 14373 {rgb=(.7 .4 .4)} Face 14556 7481 7536 14373 {rgb=(.7 .4 .4)} Face 14557 7354 7370 14374 {rgb=(.7 .4 .4)} Face 14558 7370 7233 14374 {rgb=(.7 .4 .4)} Face 14559 7233 7181 14374 {rgb=(.7 .4 .4)} Face 14560 7181 7354 14374 {rgb=(.7 .4 .4)} Face 14561 7704 7634 14375 {rgb=(.7 .4 .4)} Face 14562 7634 7588 14375 {rgb=(.7 .4 .4)} Face 14563 7588 7668 14375 {rgb=(.7 .4 .4)} Face 14564 7668 7704 14375 {rgb=(.7 .4 .4)} Face 14565 7594 7588 14376 {rgb=(.7 .4 .4)} Face 14566 7588 7481 14376 {rgb=(.7 .4 .4)} Face 14567 7481 7474 14376 {rgb=(.7 .4 .4)} Face 14568 7474 7594 14376 {rgb=(.7 .4 .4)} Face 14569 7613 7536 14377 {rgb=(.7 .4 .4)} Face 14570 7536 7634 14377 {rgb=(.7 .4 .4)} Face 14571 7634 7685 14377 {rgb=(.7 .4 .4)} Face 14572 7685 7613 14377 {rgb=(.7 .4 .4)} Face 14573 7838 7769 14378 {rgb=(.7 .4 .4)} Face 14574 7769 7685 14378 {rgb=(.7 .4 .4)} Face 14575 7685 7754 14378 {rgb=(.7 .4 .4)} Face 14576 7754 7838 14378 {rgb=(.7 .4 .4)} Face 14577 7803 7684 14379 {rgb=(.7 .4 .4)} Face 14578 7684 7769 14379 {rgb=(.7 .4 .4)} Face 14579 7769 7872 14379 {rgb=(.7 .4 .4)} Face 14580 7872 7803 14379 {rgb=(.7 .4 .4)} Face 14581 8121 8027 14380 {rgb=(.7 .4 .4)} Face 14582 8027 7872 14380 {rgb=(.7 .4 .4)} Face 14583 7872 7939 14380 {rgb=(.7 .4 .4)} Face 14584 7939 8121 14380 {rgb=(.7 .4 .4)} Face 14585 8093 7949 14381 {rgb=(.7 .4 .4)} Face 14586 7949 8027 14381 {rgb=(.7 .4 .4)} Face 14587 8027 8169 14381 {rgb=(.7 .4 .4)} Face 14588 8169 8093 14381 {rgb=(.7 .4 .4)} Face 14589 8269 8227 14382 {rgb=(.7 .4 .4)} Face 14590 8227 8169 14382 {rgb=(.7 .4 .4)} Face 14591 8169 8222 14382 {rgb=(.7 .4 .4)} Face 14592 8222 8269 14382 {rgb=(.7 .4 .4)} Face 14593 8234 8184 14383 {rgb=(.7 .4 .4)} Face 14594 8184 8227 14383 {rgb=(.7 .4 .4)} Face 14595 8227 8260 14383 {rgb=(.7 .4 .4)} Face 14596 8260 8234 14383 {rgb=(.7 .4 .4)} Face 14597 8295 8267 14384 {rgb=(.7 .4 .4)} Face 14598 8267 8260 14384 {rgb=(.7 .4 .4)} Face 14599 8260 8293 14384 {rgb=(.7 .4 .4)} Face 14600 8293 8295 14384 {rgb=(.7 .4 .4)} Face 14601 8240 8251 14385 {rgb=(.7 .4 .4)} Face 14602 8251 8267 14385 {rgb=(.7 .4 .4)} Face 14603 8267 8249 14385 {rgb=(.7 .4 .4)} Face 14604 8249 8240 14385 {rgb=(.7 .4 .4)} Face 14605 8223 8206 14386 {rgb=(.7 .4 .4)} Face 14606 8206 8249 14386 {rgb=(.7 .4 .4)} Face 14607 8249 8271 14386 {rgb=(.7 .4 .4)} Face 14608 8271 8223 14386 {rgb=(.7 .4 .4)} Face 14609 8207 8240 14387 {rgb=(.7 .4 .4)} Face 14610 8240 8188 14387 {rgb=(.7 .4 .4)} Face 14611 8188 8162 14387 {rgb=(.7 .4 .4)} Face 14612 8162 8207 14387 {rgb=(.7 .4 .4)} Face 14613 8134 8188 14388 {rgb=(.7 .4 .4)} Face 14614 8188 8206 14388 {rgb=(.7 .4 .4)} Face 14615 8206 8160 14388 {rgb=(.7 .4 .4)} Face 14616 8160 8134 14388 {rgb=(.7 .4 .4)} Face 14617 8113 8082 14389 {rgb=(.7 .4 .4)} Face 14618 8082 8160 14389 {rgb=(.7 .4 .4)} Face 14619 8160 8176 14389 {rgb=(.7 .4 .4)} Face 14620 8176 8113 14389 {rgb=(.7 .4 .4)} Face 14621 8109 8134 14390 {rgb=(.7 .4 .4)} Face 14622 8134 8060 14390 {rgb=(.7 .4 .4)} Face 14623 8060 8047 14390 {rgb=(.7 .4 .4)} Face 14624 8047 8109 14390 {rgb=(.7 .4 .4)} Face 14625 8051 8060 14391 {rgb=(.7 .4 .4)} Face 14626 8060 8082 14391 {rgb=(.7 .4 .4)} Face 14627 8082 8058 14391 {rgb=(.7 .4 .4)} Face 14628 8058 8051 14391 {rgb=(.7 .4 .4)} Face 14629 8106 8097 14392 {rgb=(.7 .4 .4)} Face 14630 8097 8058 14392 {rgb=(.7 .4 .4)} Face 14631 8058 8083 14392 {rgb=(.7 .4 .4)} Face 14632 8083 8106 14392 {rgb=(.7 .4 .4)} Face 14633 8151 8108 14393 {rgb=(.7 .4 .4)} Face 14634 8108 8097 14393 {rgb=(.7 .4 .4)} Face 14635 8097 8136 14393 {rgb=(.7 .4 .4)} Face 14636 8136 8151 14393 {rgb=(.7 .4 .4)} Face 14637 8196 8189 14394 {rgb=(.7 .4 .4)} Face 14638 8189 8136 14394 {rgb=(.7 .4 .4)} Face 14639 8136 8149 14394 {rgb=(.7 .4 .4)} Face 14640 8149 8196 14394 {rgb=(.7 .4 .4)} Face 14641 8162 8109 14395 {rgb=(.7 .4 .4)} Face 14642 8109 8063 14395 {rgb=(.7 .4 .4)} Face 14643 8063 8107 14395 {rgb=(.7 .4 .4)} Face 14644 8107 8162 14395 {rgb=(.7 .4 .4)} Face 14645 8435 8436 14396 {rgb=(.7 .4 .4)} Face 14646 8436 8497 14396 {rgb=(.7 .4 .4)} Face 14647 8497 8517 14396 {rgb=(.7 .4 .4)} Face 14648 8517 8435 14396 {rgb=(.7 .4 .4)} Face 14649 8354 8421 14397 {rgb=(.7 .4 .4)} Face 14650 8421 8382 14397 {rgb=(.7 .4 .4)} Face 14651 8382 8319 14397 {rgb=(.7 .4 .4)} Face 14652 8319 8354 14397 {rgb=(.7 .4 .4)} Face 14653 8232 8254 14398 {rgb=(.7 .4 .4)} Face 14654 8254 8319 14398 {rgb=(.7 .4 .4)} Face 14655 8319 8286 14398 {rgb=(.7 .4 .4)} Face 14656 8286 8232 14398 {rgb=(.7 .4 .4)} Face 14657 8244 8280 14399 {rgb=(.7 .4 .4)} Face 14658 8280 8254 14399 {rgb=(.7 .4 .4)} Face 14659 8254 8216 14399 {rgb=(.7 .4 .4)} Face 14660 8216 8244 14399 {rgb=(.7 .4 .4)} Face 14661 8173 8199 14400 {rgb=(.7 .4 .4)} Face 14662 8199 8216 14400 {rgb=(.7 .4 .4)} Face 14663 8216 8193 14400 {rgb=(.7 .4 .4)} Face 14664 8193 8173 14400 {rgb=(.7 .4 .4)} Face 14665 8245 8233 14401 {rgb=(.7 .4 .4)} Face 14666 8233 8199 14401 {rgb=(.7 .4 .4)} Face 14667 8199 8215 14401 {rgb=(.7 .4 .4)} Face 14668 8215 8245 14401 {rgb=(.7 .4 .4)} Face 14669 8237 8261 14402 {rgb=(.7 .4 .4)} Face 14670 8261 8215 14402 {rgb=(.7 .4 .4)} Face 14671 8215 8191 14402 {rgb=(.7 .4 .4)} Face 14672 8191 8237 14402 {rgb=(.7 .4 .4)} Face 14673 8342 8285 14403 {rgb=(.7 .4 .4)} Face 14674 8285 8261 14403 {rgb=(.7 .4 .4)} Face 14675 8261 8315 14403 {rgb=(.7 .4 .4)} Face 14676 8315 8342 14403 {rgb=(.7 .4 .4)} Face 14677 8351 8371 14404 {rgb=(.7 .4 .4)} Face 14678 8371 8315 14404 {rgb=(.7 .4 .4)} Face 14679 8315 8287 14404 {rgb=(.7 .4 .4)} Face 14680 8287 8351 14404 {rgb=(.7 .4 .4)} Face 14681 8437 8404 14405 {rgb=(.7 .4 .4)} Face 14682 8404 8371 14405 {rgb=(.7 .4 .4)} Face 14683 8371 8416 14405 {rgb=(.7 .4 .4)} Face 14684 8416 8437 14405 {rgb=(.7 .4 .4)} Face 14685 8430 8451 14406 {rgb=(.7 .4 .4)} Face 14686 8451 8416 14406 {rgb=(.7 .4 .4)} Face 14687 8416 8395 14406 {rgb=(.7 .4 .4)} Face 14688 8395 8430 14406 {rgb=(.7 .4 .4)} Face 14689 8181 8200 14407 {rgb=(.7 .4 .4)} Face 14690 8200 8255 14407 {rgb=(.7 .4 .4)} Face 14691 8255 8235 14407 {rgb=(.7 .4 .4)} Face 14692 8235 8181 14407 {rgb=(.7 .4 .4)} Face 14693 8193 8232 14408 {rgb=(.7 .4 .4)} Face 14694 8232 8200 14408 {rgb=(.7 .4 .4)} Face 14695 8200 8168 14408 {rgb=(.7 .4 .4)} Face 14696 8168 8193 14408 {rgb=(.7 .4 .4)} Face 14697 8146 8159 14409 {rgb=(.7 .4 .4)} Face 14698 8159 8168 14409 {rgb=(.7 .4 .4)} Face 14699 8168 8154 14409 {rgb=(.7 .4 .4)} Face 14700 8154 8146 14409 {rgb=(.7 .4 .4)} Face 14701 8191 8173 14410 {rgb=(.7 .4 .4)} Face 14702 8173 8159 14410 {rgb=(.7 .4 .4)} Face 14703 8159 8171 14410 {rgb=(.7 .4 .4)} Face 14704 8171 8191 14410 {rgb=(.7 .4 .4)} Face 14705 8194 8214 14411 {rgb=(.7 .4 .4)} Face 14706 8214 8171 14411 {rgb=(.7 .4 .4)} Face 14707 8171 8150 14411 {rgb=(.7 .4 .4)} Face 14708 8150 8194 14411 {rgb=(.7 .4 .4)} Face 14709 8287 8237 14412 {rgb=(.7 .4 .4)} Face 14710 8237 8214 14412 {rgb=(.7 .4 .4)} Face 14711 8214 8262 14412 {rgb=(.7 .4 .4)} Face 14712 8262 8287 14412 {rgb=(.7 .4 .4)} Face 14713 8300 8327 14413 {rgb=(.7 .4 .4)} Face 14714 8327 8262 14413 {rgb=(.7 .4 .4)} Face 14715 8262 8243 14413 {rgb=(.7 .4 .4)} Face 14716 8243 8300 14413 {rgb=(.7 .4 .4)} Face 14717 8395 8351 14414 {rgb=(.7 .4 .4)} Face 14718 8351 8327 14414 {rgb=(.7 .4 .4)} Face 14719 8327 8363 14414 {rgb=(.7 .4 .4)} Face 14720 8363 8395 14414 {rgb=(.7 .4 .4)} Face 14721 8336 8381 14415 {rgb=(.7 .4 .4)} Face 14722 8381 8363 14415 {rgb=(.7 .4 .4)} Face 14723 8363 8332 14415 {rgb=(.7 .4 .4)} Face 14724 8332 8336 14415 {rgb=(.7 .4 .4)} Face 14725 8431 8430 14416 {rgb=(.7 .4 .4)} Face 14726 8430 8381 14416 {rgb=(.7 .4 .4)} Face 14727 8381 8367 14416 {rgb=(.7 .4 .4)} Face 14728 8367 8431 14416 {rgb=(.7 .4 .4)} Face 14729 8266 8326 14417 {rgb=(.7 .4 .4)} Face 14730 8326 8367 14417 {rgb=(.7 .4 .4)} Face 14731 8367 8314 14417 {rgb=(.7 .4 .4)} Face 14732 8314 8266 14417 {rgb=(.7 .4 .4)} Face 14733 8330 8397 14418 {rgb=(.7 .4 .4)} Face 14734 8397 8326 14418 {rgb=(.7 .4 .4)} Face 14735 8326 8247 14418 {rgb=(.7 .4 .4)} Face 14736 8247 8330 14418 {rgb=(.7 .4 .4)} Face 14737 8003 8128 14419 {rgb=(.7 .4 .4)} Face 14738 8128 8247 14419 {rgb=(.7 .4 .4)} Face 14739 8247 8178 14419 {rgb=(.7 .4 .4)} Face 14740 8178 8003 14419 {rgb=(.7 .4 .4)} Face 14741 8125 8236 14420 {rgb=(.7 .4 .4)} Face 14742 8236 8128 14420 {rgb=(.7 .4 .4)} Face 14743 8128 7973 14420 {rgb=(.7 .4 .4)} Face 14744 7973 8125 14420 {rgb=(.7 .4 .4)} Face 14745 7801 7868 14421 {rgb=(.7 .4 .4)} Face 14746 7868 7973 14421 {rgb=(.7 .4 .4)} Face 14747 7973 7889 14421 {rgb=(.7 .4 .4)} Face 14748 7889 7801 14421 {rgb=(.7 .4 .4)} Face 14749 7910 7958 14422 {rgb=(.7 .4 .4)} Face 14750 7958 7868 14422 {rgb=(.7 .4 .4)} Face 14751 7868 7822 14422 {rgb=(.7 .4 .4)} Face 14752 7822 7910 14422 {rgb=(.7 .4 .4)} Face 14753 7729 7826 14423 {rgb=(.7 .4 .4)} Face 14754 7826 7822 14423 {rgb=(.7 .4 .4)} Face 14755 7822 7742 14423 {rgb=(.7 .4 .4)} Face 14756 7742 7729 14423 {rgb=(.7 .4 .4)} Face 14757 7979 7942 14424 {rgb=(.7 .4 .4)} Face 14758 7942 7826 14424 {rgb=(.7 .4 .4)} Face 14759 7826 7847 14424 {rgb=(.7 .4 .4)} Face 14760 7847 7979 14424 {rgb=(.7 .4 .4)} Face 14761 7741 7729 14425 {rgb=(.7 .4 .4)} Face 14762 7729 7668 14425 {rgb=(.7 .4 .4)} Face 14763 7668 7679 14425 {rgb=(.7 .4 .4)} Face 14764 7679 7741 14425 {rgb=(.7 .4 .4)} Face 14765 7754 7704 14426 {rgb=(.7 .4 .4)} Face 14766 7704 7742 14426 {rgb=(.7 .4 .4)} Face 14767 7742 7801 14426 {rgb=(.7 .4 .4)} Face 14768 7801 7754 14426 {rgb=(.7 .4 .4)} Face 14769 7939 7838 14427 {rgb=(.7 .4 .4)} Face 14770 7838 7889 14427 {rgb=(.7 .4 .4)} Face 14771 7889 8003 14427 {rgb=(.7 .4 .4)} Face 14772 8003 7939 14427 {rgb=(.7 .4 .4)} Face 14773 8222 8121 14428 {rgb=(.7 .4 .4)} Face 14774 8121 8178 14428 {rgb=(.7 .4 .4)} Face 14775 8178 8266 14428 {rgb=(.7 .4 .4)} Face 14776 8266 8222 14428 {rgb=(.7 .4 .4)} Face 14777 8293 8269 14429 {rgb=(.7 .4 .4)} Face 14778 8269 8314 14429 {rgb=(.7 .4 .4)} Face 14779 8314 8336 14429 {rgb=(.7 .4 .4)} Face 14780 8336 8293 14429 {rgb=(.7 .4 .4)} Face 14781 8271 8295 14430 {rgb=(.7 .4 .4)} Face 14782 8295 8332 14430 {rgb=(.7 .4 .4)} Face 14783 8332 8300 14430 {rgb=(.7 .4 .4)} Face 14784 8300 8271 14430 {rgb=(.7 .4 .4)} Face 14785 8176 8223 14431 {rgb=(.7 .4 .4)} Face 14786 8223 8243 14431 {rgb=(.7 .4 .4)} Face 14787 8243 8194 14431 {rgb=(.7 .4 .4)} Face 14788 8194 8176 14431 {rgb=(.7 .4 .4)} Face 14789 8083 8113 14432 {rgb=(.7 .4 .4)} Face 14790 8113 8150 14432 {rgb=(.7 .4 .4)} Face 14791 8150 8127 14432 {rgb=(.7 .4 .4)} Face 14792 8127 8083 14432 {rgb=(.7 .4 .4)} Face 14793 8148 8135 14433 {rgb=(.7 .4 .4)} Face 14794 8135 8127 14433 {rgb=(.7 .4 .4)} Face 14795 8127 8146 14433 {rgb=(.7 .4 .4)} Face 14796 8146 8148 14433 {rgb=(.7 .4 .4)} Face 14797 8149 8106 14434 {rgb=(.7 .4 .4)} Face 14798 8106 8135 14434 {rgb=(.7 .4 .4)} Face 14799 8135 8165 14434 {rgb=(.7 .4 .4)} Face 14800 8165 8149 14434 {rgb=(.7 .4 .4)} Face 14801 8217 8204 14435 {rgb=(.7 .4 .4)} Face 14802 8204 8165 14435 {rgb=(.7 .4 .4)} Face 14803 8165 8172 14435 {rgb=(.7 .4 .4)} Face 14804 8172 8217 14435 {rgb=(.7 .4 .4)} Face 14805 8154 8181 14436 {rgb=(.7 .4 .4)} Face 14806 8181 8172 14436 {rgb=(.7 .4 .4)} Face 14807 8172 8148 14436 {rgb=(.7 .4 .4)} Face 14808 8148 8154 14436 {rgb=(.7 .4 .4)} Face 14809 5695 5690 14437 {rgb=(.7 .4 .4)} Face 14810 5690 5580 14437 {rgb=(.7 .4 .4)} Face 14811 5580 5581 14437 {rgb=(.7 .4 .4)} Face 14812 5581 5695 14437 {rgb=(.7 .4 .4)} Face 14813 5626 5582 14438 {rgb=(.7 .4 .4)} Face 14814 5582 5698 14438 {rgb=(.7 .4 .4)} Face 14815 5698 5752 14438 {rgb=(.7 .4 .4)} Face 14816 5752 5626 14438 {rgb=(.7 .4 .4)} Face 14817 5790 5698 14439 {rgb=(.7 .4 .4)} Face 14818 5698 5690 14439 {rgb=(.7 .4 .4)} Face 14819 5690 5791 14439 {rgb=(.7 .4 .4)} Face 14820 5791 5790 14439 {rgb=(.7 .4 .4)} Face 14821 5721 5706 14440 {rgb=(.7 .4 .4)} Face 14822 5706 5585 14440 {rgb=(.7 .4 .4)} Face 14823 5585 5586 14440 {rgb=(.7 .4 .4)} Face 14824 5586 5721 14440 {rgb=(.7 .4 .4)} Face 14825 5808 5695 14441 {rgb=(.7 .4 .4)} Face 14826 5695 5706 14441 {rgb=(.7 .4 .4)} Face 14827 5706 5831 14441 {rgb=(.7 .4 .4)} Face 14828 5831 5808 14441 {rgb=(.7 .4 .4)} Face 14829 5758 5742 14442 {rgb=(.7 .4 .4)} Face 14830 5742 5591 14442 {rgb=(.7 .4 .4)} Face 14831 5591 5594 14442 {rgb=(.7 .4 .4)} Face 14832 5594 5758 14442 {rgb=(.7 .4 .4)} Face 14833 5849 5721 14443 {rgb=(.7 .4 .4)} Face 14834 5721 5742 14443 {rgb=(.7 .4 .4)} Face 14835 5742 5861 14443 {rgb=(.7 .4 .4)} Face 14836 5861 5849 14443 {rgb=(.7 .4 .4)} Face 14837 5880 5869 14444 {rgb=(.7 .4 .4)} Face 14838 5869 5791 14444 {rgb=(.7 .4 .4)} Face 14839 5791 5808 14444 {rgb=(.7 .4 .4)} Face 14840 5808 5880 14444 {rgb=(.7 .4 .4)} Face 14841 5866 5790 14445 {rgb=(.7 .4 .4)} Face 14842 5790 5859 14445 {rgb=(.7 .4 .4)} Face 14843 5859 5906 14445 {rgb=(.7 .4 .4)} Face 14844 5906 5866 14445 {rgb=(.7 .4 .4)} Face 14845 5921 5859 14446 {rgb=(.7 .4 .4)} Face 14846 5859 5869 14446 {rgb=(.7 .4 .4)} Face 14847 5869 5948 14446 {rgb=(.7 .4 .4)} Face 14848 5948 5921 14446 {rgb=(.7 .4 .4)} Face 14849 5922 5903 14447 {rgb=(.7 .4 .4)} Face 14850 5903 5831 14447 {rgb=(.7 .4 .4)} Face 14851 5831 5849 14447 {rgb=(.7 .4 .4)} Face 14852 5849 5922 14447 {rgb=(.7 .4 .4)} Face 14853 5969 5880 14448 {rgb=(.7 .4 .4)} Face 14854 5880 5903 14448 {rgb=(.7 .4 .4)} Face 14855 5903 5996 14448 {rgb=(.7 .4 .4)} Face 14856 5996 5969 14448 {rgb=(.7 .4 .4)} Face 14857 5947 5931 14449 {rgb=(.7 .4 .4)} Face 14858 5931 5861 14449 {rgb=(.7 .4 .4)} Face 14859 5861 5873 14449 {rgb=(.7 .4 .4)} Face 14860 5873 5947 14449 {rgb=(.7 .4 .4)} Face 14861 6006 5922 14450 {rgb=(.7 .4 .4)} Face 14862 5922 5931 14450 {rgb=(.7 .4 .4)} Face 14863 5931 6008 14450 {rgb=(.7 .4 .4)} Face 14864 6008 6006 14450 {rgb=(.7 .4 .4)} Face 14865 6056 6037 14451 {rgb=(.7 .4 .4)} Face 14866 6037 5948 14451 {rgb=(.7 .4 .4)} Face 14867 5948 5969 14451 {rgb=(.7 .4 .4)} Face 14868 5969 6056 14451 {rgb=(.7 .4 .4)} Face 14869 5965 5921 14452 {rgb=(.7 .4 .4)} Face 14870 5921 6010 14452 {rgb=(.7 .4 .4)} Face 14871 6010 6030 14452 {rgb=(.7 .4 .4)} Face 14872 6030 5965 14452 {rgb=(.7 .4 .4)} Face 14873 6117 6010 14453 {rgb=(.7 .4 .4)} Face 14874 6010 6037 14453 {rgb=(.7 .4 .4)} Face 14875 6037 6156 14453 {rgb=(.7 .4 .4)} Face 14876 6156 6117 14453 {rgb=(.7 .4 .4)} Face 14877 6073 6065 14454 {rgb=(.7 .4 .4)} Face 14878 6065 5996 14454 {rgb=(.7 .4 .4)} Face 14879 5996 6006 14454 {rgb=(.7 .4 .4)} Face 14880 6006 6073 14454 {rgb=(.7 .4 .4)} Face 14881 6178 6056 14455 {rgb=(.7 .4 .4)} Face 14882 6056 6065 14455 {rgb=(.7 .4 .4)} Face 14883 6065 6184 14455 {rgb=(.7 .4 .4)} Face 14884 6184 6178 14455 {rgb=(.7 .4 .4)} Face 14885 6099 6088 14456 {rgb=(.7 .4 .4)} Face 14886 6088 6008 14456 {rgb=(.7 .4 .4)} Face 14887 6008 6022 14456 {rgb=(.7 .4 .4)} Face 14888 6022 6099 14456 {rgb=(.7 .4 .4)} Face 14889 6125 6073 14457 {rgb=(.7 .4 .4)} Face 14890 6073 6088 14457 {rgb=(.7 .4 .4)} Face 14891 6088 6139 14457 {rgb=(.7 .4 .4)} Face 14892 6139 6125 14457 {rgb=(.7 .4 .4)} Face 14893 6460 6261 14458 {rgb=(.7 .4 .4)} Face 14894 6261 6305 14458 {rgb=(.7 .4 .4)} Face 14895 6305 6572 14458 {rgb=(.7 .4 .4)} Face 14896 6572 6460 14458 {rgb=(.7 .4 .4)} Face 14897 6371 6305 14459 {rgb=(.7 .4 .4)} Face 14898 6305 6156 14459 {rgb=(.7 .4 .4)} Face 14899 6156 6178 14459 {rgb=(.7 .4 .4)} Face 14900 6178 6371 14459 {rgb=(.7 .4 .4)} Face 14901 6118 6117 14460 {rgb=(.7 .4 .4)} Face 14902 6117 6180 14460 {rgb=(.7 .4 .4)} Face 14903 6180 6174 14460 {rgb=(.7 .4 .4)} Face 14904 6174 6118 14460 {rgb=(.7 .4 .4)} Face 14905 6214 6180 14461 {rgb=(.7 .4 .4)} Face 14906 6180 6261 14461 {rgb=(.7 .4 .4)} Face 14907 6261 6246 14461 {rgb=(.7 .4 .4)} Face 14908 6246 6214 14461 {rgb=(.7 .4 .4)} Face 14909 6416 6388 14462 {rgb=(.7 .4 .4)} Face 14910 6388 6184 14462 {rgb=(.7 .4 .4)} Face 14911 6184 6203 14462 {rgb=(.7 .4 .4)} Face 14912 6203 6416 14462 {rgb=(.7 .4 .4)} Face 14913 6644 6371 14463 {rgb=(.7 .4 .4)} Face 14914 6371 6388 14463 {rgb=(.7 .4 .4)} Face 14915 6388 6648 14463 {rgb=(.7 .4 .4)} Face 14916 6648 6644 14463 {rgb=(.7 .4 .4)} Face 14917 6471 6432 14464 {rgb=(.7 .4 .4)} Face 14918 6432 6241 14464 {rgb=(.7 .4 .4)} Face 14919 6241 6278 14464 {rgb=(.7 .4 .4)} Face 14920 6278 6471 14464 {rgb=(.7 .4 .4)} Face 14921 6149 6241 14465 {rgb=(.7 .4 .4)} Face 14922 6241 6203 14465 {rgb=(.7 .4 .4)} Face 14923 6203 6125 14465 {rgb=(.7 .4 .4)} Face 14924 6125 6149 14465 {rgb=(.7 .4 .4)} Face 14925 6649 6416 14466 {rgb=(.7 .4 .4)} Face 14926 6416 6432 14466 {rgb=(.7 .4 .4)} Face 14927 6432 6645 14466 {rgb=(.7 .4 .4)} Face 14928 6645 6649 14466 {rgb=(.7 .4 .4)} Face 14929 5712 5629 14467 {rgb=(.7 .4 .4)} Face 14930 5629 5557 14467 {rgb=(.7 .4 .4)} Face 14931 5557 5626 14467 {rgb=(.7 .4 .4)} Face 14932 5626 5712 14467 {rgb=(.7 .4 .4)} Face 14933 5962 5863 14468 {rgb=(.7 .4 .4)} Face 14934 5863 5752 14468 {rgb=(.7 .4 .4)} Face 14935 5752 5858 14468 {rgb=(.7 .4 .4)} Face 14936 5858 5962 14468 {rgb=(.7 .4 .4)} Face 14937 5858 5866 14469 {rgb=(.7 .4 .4)} Face 14938 5866 6004 14469 {rgb=(.7 .4 .4)} Face 14939 6004 6000 14469 {rgb=(.7 .4 .4)} Face 14940 6000 5858 14469 {rgb=(.7 .4 .4)} Face 14941 6081 6004 14470 {rgb=(.7 .4 .4)} Face 14942 6004 6040 14470 {rgb=(.7 .4 .4)} Face 14943 6040 6113 14470 {rgb=(.7 .4 .4)} Face 14944 6113 6081 14470 {rgb=(.7 .4 .4)} Face 14945 6068 6040 14471 {rgb=(.7 .4 .4)} Face 14946 6040 5906 14471 {rgb=(.7 .4 .4)} Face 14947 5906 5965 14471 {rgb=(.7 .4 .4)} Face 14948 5965 6068 14471 {rgb=(.7 .4 .4)} Face 14949 6147 6094 14472 {rgb=(.7 .4 .4)} Face 14950 6094 6030 14472 {rgb=(.7 .4 .4)} Face 14951 6030 6118 14472 {rgb=(.7 .4 .4)} Face 14952 6118 6147 14472 {rgb=(.7 .4 .4)} Face 14953 6229 6068 14473 {rgb=(.7 .4 .4)} Face 14954 6068 6094 14473 {rgb=(.7 .4 .4)} Face 14955 6094 6226 14473 {rgb=(.7 .4 .4)} Face 14956 6226 6229 14473 {rgb=(.7 .4 .4)} Face 14957 6239 6188 14474 {rgb=(.7 .4 .4)} Face 14958 6188 6212 14474 {rgb=(.7 .4 .4)} Face 14959 6212 6247 14474 {rgb=(.7 .4 .4)} Face 14960 6247 6239 14474 {rgb=(.7 .4 .4)} Face 14961 6270 6212 14475 {rgb=(.7 .4 .4)} Face 14962 6212 6204 14475 {rgb=(.7 .4 .4)} Face 14963 6204 6267 14475 {rgb=(.7 .4 .4)} Face 14964 6267 6270 14475 {rgb=(.7 .4 .4)} Face 14965 6235 6204 14476 {rgb=(.7 .4 .4)} Face 14966 6204 6174 14476 {rgb=(.7 .4 .4)} Face 14967 6174 6213 14476 {rgb=(.7 .4 .4)} Face 14968 6213 6235 14476 {rgb=(.7 .4 .4)} Face 14969 6256 6147 14477 {rgb=(.7 .4 .4)} Face 14970 6147 6188 14477 {rgb=(.7 .4 .4)} Face 14971 6188 6295 14477 {rgb=(.7 .4 .4)} Face 14972 6295 6256 14477 {rgb=(.7 .4 .4)} Face 14973 6356 6275 14478 {rgb=(.7 .4 .4)} Face 14974 6275 6291 14478 {rgb=(.7 .4 .4)} Face 14975 6291 6375 14478 {rgb=(.7 .4 .4)} Face 14976 6375 6356 14478 {rgb=(.7 .4 .4)} Face 14977 6327 6291 14479 {rgb=(.7 .4 .4)} Face 14978 6291 6294 14479 {rgb=(.7 .4 .4)} Face 14979 6294 6344 14479 {rgb=(.7 .4 .4)} Face 14980 6344 6327 14479 {rgb=(.7 .4 .4)} Face 14981 6554 6294 14480 {rgb=(.7 .4 .4)} Face 14982 6294 6277 14480 {rgb=(.7 .4 .4)} Face 14983 6277 6545 14480 {rgb=(.7 .4 .4)} Face 14984 6545 6554 14480 {rgb=(.7 .4 .4)} Face 14985 6271 6277 14481 {rgb=(.7 .4 .4)} Face 14986 6277 6267 14481 {rgb=(.7 .4 .4)} Face 14987 6267 6251 14481 {rgb=(.7 .4 .4)} Face 14988 6251 6271 14481 {rgb=(.7 .4 .4)} Face 14989 6257 6270 14482 {rgb=(.7 .4 .4)} Face 14990 6270 6275 14482 {rgb=(.7 .4 .4)} Face 14991 6275 6264 14482 {rgb=(.7 .4 .4)} Face 14992 6264 6257 14482 {rgb=(.7 .4 .4)} Face 14993 6503 6460 14483 {rgb=(.7 .4 .4)} Face 14994 6460 6830 14483 {rgb=(.7 .4 .4)} Face 14995 6830 6873 14483 {rgb=(.7 .4 .4)} Face 14996 6873 6503 14483 {rgb=(.7 .4 .4)} Face 14997 6898 6830 14484 {rgb=(.7 .4 .4)} Face 14998 6830 6572 14484 {rgb=(.7 .4 .4)} Face 14999 6572 6644 14484 {rgb=(.7 .4 .4)} Face 15000 6644 6898 14484 {rgb=(.7 .4 .4)} Face 15001 5806 5798 14485 {rgb=(.7 .4 .4)} Face 15002 5798 5606 14485 {rgb=(.7 .4 .4)} Face 15003 5606 5610 14485 {rgb=(.7 .4 .4)} Face 15004 5610 5806 14485 {rgb=(.7 .4 .4)} Face 15005 5595 5602 14486 {rgb=(.7 .4 .4)} Face 15006 5602 5779 14486 {rgb=(.7 .4 .4)} Face 15007 5779 5766 14486 {rgb=(.7 .4 .4)} Face 15008 5766 5595 14486 {rgb=(.7 .4 .4)} Face 15009 5904 5779 14487 {rgb=(.7 .4 .4)} Face 15010 5779 5798 14487 {rgb=(.7 .4 .4)} Face 15011 5798 5926 14487 {rgb=(.7 .4 .4)} Face 15012 5926 5904 14487 {rgb=(.7 .4 .4)} Face 15013 6029 6015 14488 {rgb=(.7 .4 .4)} Face 15014 6015 5926 14488 {rgb=(.7 .4 .4)} Face 15015 5926 5934 14488 {rgb=(.7 .4 .4)} Face 15016 5934 6029 14488 {rgb=(.7 .4 .4)} Face 15017 5885 5904 14489 {rgb=(.7 .4 .4)} Face 15018 5904 5998 14489 {rgb=(.7 .4 .4)} Face 15019 5998 5970 14489 {rgb=(.7 .4 .4)} Face 15020 5970 5885 14489 {rgb=(.7 .4 .4)} Face 15021 6061 5998 14490 {rgb=(.7 .4 .4)} Face 15022 5998 6015 14490 {rgb=(.7 .4 .4)} Face 15023 6015 6078 14490 {rgb=(.7 .4 .4)} Face 15024 6078 6061 14490 {rgb=(.7 .4 .4)} Face 15025 6112 6129 14491 {rgb=(.7 .4 .4)} Face 15026 6129 6078 14491 {rgb=(.7 .4 .4)} Face 15027 6078 6090 14491 {rgb=(.7 .4 .4)} Face 15028 6090 6112 14491 {rgb=(.7 .4 .4)} Face 15029 6042 6061 14492 {rgb=(.7 .4 .4)} Face 15030 6061 6124 14492 {rgb=(.7 .4 .4)} Face 15031 6124 6110 14492 {rgb=(.7 .4 .4)} Face 15032 6110 6042 14492 {rgb=(.7 .4 .4)} Face 15033 6181 6124 14493 {rgb=(.7 .4 .4)} Face 15034 6124 6129 14493 {rgb=(.7 .4 .4)} Face 15035 6129 6193 14493 {rgb=(.7 .4 .4)} Face 15036 6193 6181 14493 {rgb=(.7 .4 .4)} Face 15037 6338 6319 14494 {rgb=(.7 .4 .4)} Face 15038 6319 6193 14494 {rgb=(.7 .4 .4)} Face 15039 6193 6185 14494 {rgb=(.7 .4 .4)} Face 15040 6185 6338 14494 {rgb=(.7 .4 .4)} Face 15041 6168 6181 14495 {rgb=(.7 .4 .4)} Face 15042 6181 6283 14495 {rgb=(.7 .4 .4)} Face 15043 6283 6252 14495 {rgb=(.7 .4 .4)} Face 15044 6252 6168 14495 {rgb=(.7 .4 .4)} Face 15045 6355 6283 14496 {rgb=(.7 .4 .4)} Face 15046 6283 6319 14496 {rgb=(.7 .4 .4)} Face 15047 6319 6424 14496 {rgb=(.7 .4 .4)} Face 15048 6424 6355 14496 {rgb=(.7 .4 .4)} Face 15049 6540 6500 14497 {rgb=(.7 .4 .4)} Face 15050 6500 6424 14497 {rgb=(.7 .4 .4)} Face 15051 6424 6456 14497 {rgb=(.7 .4 .4)} Face 15052 6456 6540 14497 {rgb=(.7 .4 .4)} Face 15053 6288 6355 14498 {rgb=(.7 .4 .4)} Face 15054 6355 6411 14498 {rgb=(.7 .4 .4)} Face 15055 6411 6328 14498 {rgb=(.7 .4 .4)} Face 15056 6328 6288 14498 {rgb=(.7 .4 .4)} Face 15057 6443 6411 14499 {rgb=(.7 .4 .4)} Face 15058 6411 6500 14499 {rgb=(.7 .4 .4)} Face 15059 6500 6544 14499 {rgb=(.7 .4 .4)} Face 15060 6544 6443 14499 {rgb=(.7 .4 .4)} Face 15061 6383 6434 14500 {rgb=(.7 .4 .4)} Face 15062 6434 6278 14500 {rgb=(.7 .4 .4)} Face 15063 6278 6243 14500 {rgb=(.7 .4 .4)} Face 15064 6243 6383 14500 {rgb=(.7 .4 .4)} Face 15065 6626 6471 14501 {rgb=(.7 .4 .4)} Face 15066 6471 6434 14501 {rgb=(.7 .4 .4)} Face 15067 6434 6597 14501 {rgb=(.7 .4 .4)} Face 15068 6597 6626 14501 {rgb=(.7 .4 .4)} Face 15069 6350 6443 14502 {rgb=(.7 .4 .4)} Face 15070 6443 6448 14502 {rgb=(.7 .4 .4)} Face 15071 6448 6352 14502 {rgb=(.7 .4 .4)} Face 15072 6352 6350 14502 {rgb=(.7 .4 .4)} Face 15073 6445 6448 14503 {rgb=(.7 .4 .4)} Face 15074 6448 6535 14503 {rgb=(.7 .4 .4)} Face 15075 6535 6530 14503 {rgb=(.7 .4 .4)} Face 15076 6530 6445 14503 {rgb=(.7 .4 .4)} Face 15077 6567 6535 14504 {rgb=(.7 .4 .4)} Face 15078 6535 6544 14504 {rgb=(.7 .4 .4)} Face 15079 6544 6575 14504 {rgb=(.7 .4 .4)} Face 15080 6575 6567 14504 {rgb=(.7 .4 .4)} Face 15081 6509 6594 14505 {rgb=(.7 .4 .4)} Face 15082 6594 6555 14505 {rgb=(.7 .4 .4)} Face 15083 6555 6485 14505 {rgb=(.7 .4 .4)} Face 15084 6485 6509 14505 {rgb=(.7 .4 .4)} Face 15085 6571 6555 14506 {rgb=(.7 .4 .4)} Face 15086 6555 6675 14506 {rgb=(.7 .4 .4)} Face 15087 6675 6697 14506 {rgb=(.7 .4 .4)} Face 15088 6697 6571 14506 {rgb=(.7 .4 .4)} Face 15089 6663 6675 14507 {rgb=(.7 .4 .4)} Face 15090 6675 6594 14507 {rgb=(.7 .4 .4)} Face 15091 6594 6599 14507 {rgb=(.7 .4 .4)} Face 15092 6599 6663 14507 {rgb=(.7 .4 .4)} Face 15093 6463 6480 14508 {rgb=(.7 .4 .4)} Face 15094 6480 6518 14508 {rgb=(.7 .4 .4)} Face 15095 6518 6502 14508 {rgb=(.7 .4 .4)} Face 15096 6502 6463 14508 {rgb=(.7 .4 .4)} Face 15097 6558 6518 14509 {rgb=(.7 .4 .4)} Face 15098 6518 6521 14509 {rgb=(.7 .4 .4)} Face 15099 6521 6592 14509 {rgb=(.7 .4 .4)} Face 15100 6592 6558 14509 {rgb=(.7 .4 .4)} Face 15101 6553 6521 14510 {rgb=(.7 .4 .4)} Face 15102 6521 6480 14510 {rgb=(.7 .4 .4)} Face 15103 6480 6504 14510 {rgb=(.7 .4 .4)} Face 15104 6504 6553 14510 {rgb=(.7 .4 .4)} Face 15105 6552 6510 14511 {rgb=(.7 .4 .4)} Face 15106 6510 6497 14511 {rgb=(.7 .4 .4)} Face 15107 6497 6543 14511 {rgb=(.7 .4 .4)} Face 15108 6543 6552 14511 {rgb=(.7 .4 .4)} Face 15109 6495 6497 14512 {rgb=(.7 .4 .4)} Face 15110 6497 6454 14512 {rgb=(.7 .4 .4)} Face 15111 6454 6452 14512 {rgb=(.7 .4 .4)} Face 15112 6452 6495 14512 {rgb=(.7 .4 .4)} Face 15113 6396 6454 14513 {rgb=(.7 .4 .4)} Face 15114 6454 6466 14513 {rgb=(.7 .4 .4)} Face 15115 6466 6418 14513 {rgb=(.7 .4 .4)} Face 15116 6418 6396 14513 {rgb=(.7 .4 .4)} Face 15117 6439 6466 14514 {rgb=(.7 .4 .4)} Face 15118 6466 6510 14514 {rgb=(.7 .4 .4)} Face 15119 6510 6486 14514 {rgb=(.7 .4 .4)} Face 15120 6486 6439 14514 {rgb=(.7 .4 .4)} Face 15121 6273 6366 14515 {rgb=(.7 .4 .4)} Face 15122 6366 6401 14515 {rgb=(.7 .4 .4)} Face 15123 6401 6293 14515 {rgb=(.7 .4 .4)} Face 15124 6293 6273 14515 {rgb=(.7 .4 .4)} Face 15125 6433 6401 14516 {rgb=(.7 .4 .4)} Face 15126 6401 6486 14516 {rgb=(.7 .4 .4)} Face 15127 6486 6513 14516 {rgb=(.7 .4 .4)} Face 15128 6513 6433 14516 {rgb=(.7 .4 .4)} Face 15129 6387 6439 14517 {rgb=(.7 .4 .4)} Face 15130 6439 6366 14517 {rgb=(.7 .4 .4)} Face 15131 6366 6340 14517 {rgb=(.7 .4 .4)} Face 15132 6340 6387 14517 {rgb=(.7 .4 .4)} Face 15133 6039 6104 14518 {rgb=(.7 .4 .4)} Face 15134 6104 6144 14518 {rgb=(.7 .4 .4)} Face 15135 6144 6076 14518 {rgb=(.7 .4 .4)} Face 15136 6076 6039 14518 {rgb=(.7 .4 .4)} Face 15137 6164 6144 14519 {rgb=(.7 .4 .4)} Face 15138 6144 6293 14519 {rgb=(.7 .4 .4)} Face 15139 6293 6316 14519 {rgb=(.7 .4 .4)} Face 15140 6316 6164 14519 {rgb=(.7 .4 .4)} Face 15141 6219 6273 14520 {rgb=(.7 .4 .4)} Face 15142 6273 6104 14520 {rgb=(.7 .4 .4)} Face 15143 6104 6075 14520 {rgb=(.7 .4 .4)} Face 15144 6075 6219 14520 {rgb=(.7 .4 .4)} Face 15145 6074 6060 14521 {rgb=(.7 .4 .4)} Face 15146 6060 6076 14521 {rgb=(.7 .4 .4)} Face 15147 6076 6098 14521 {rgb=(.7 .4 .4)} Face 15148 6098 6074 14521 {rgb=(.7 .4 .4)} Face 15149 5993 6039 14522 {rgb=(.7 .4 .4)} Face 15150 6039 6060 14522 {rgb=(.7 .4 .4)} Face 15151 6060 6009 14522 {rgb=(.7 .4 .4)} Face 15152 6009 5993 14522 {rgb=(.7 .4 .4)} Face 15153 5772 5894 14523 {rgb=(.7 .4 .4)} Face 15154 5894 5915 14523 {rgb=(.7 .4 .4)} Face 15155 5915 5783 14523 {rgb=(.7 .4 .4)} Face 15156 5783 5772 14523 {rgb=(.7 .4 .4)} Face 15157 5928 5915 14524 {rgb=(.7 .4 .4)} Face 15158 5915 6009 14524 {rgb=(.7 .4 .4)} Face 15159 6009 6021 14524 {rgb=(.7 .4 .4)} Face 15160 6021 5928 14524 {rgb=(.7 .4 .4)} Face 15161 5972 5993 14525 {rgb=(.7 .4 .4)} Face 15162 5993 5894 14525 {rgb=(.7 .4 .4)} Face 15163 5894 5891 14525 {rgb=(.7 .4 .4)} Face 15164 5891 5972 14525 {rgb=(.7 .4 .4)} Face 15165 5607 5603 14526 {rgb=(.7 .4 .4)} Face 15166 5603 5783 14526 {rgb=(.7 .4 .4)} Face 15167 5783 5801 14526 {rgb=(.7 .4 .4)} Face 15168 5801 5607 14526 {rgb=(.7 .4 .4)} Face 15169 5743 5772 14527 {rgb=(.7 .4 .4)} Face 15170 5772 5597 14527 {rgb=(.7 .4 .4)} Face 15171 5597 5592 14527 {rgb=(.7 .4 .4)} Face 15172 5592 5743 14527 {rgb=(.7 .4 .4)} Face 15173 5665 5686 14528 {rgb=(.7 .4 .4)} Face 15174 5686 5579 14528 {rgb=(.7 .4 .4)} Face 15175 5579 5568 14528 {rgb=(.7 .4 .4)} Face 15176 5568 5665 14528 {rgb=(.7 .4 .4)} Face 15177 5836 5743 14529 {rgb=(.7 .4 .4)} Face 15178 5743 5686 14529 {rgb=(.7 .4 .4)} Face 15179 5686 5759 14529 {rgb=(.7 .4 .4)} Face 15180 5759 5836 14529 {rgb=(.7 .4 .4)} Face 15181 5856 5837 14530 {rgb=(.7 .4 .4)} Face 15182 5837 5786 14530 {rgb=(.7 .4 .4)} Face 15183 5786 5829 14530 {rgb=(.7 .4 .4)} Face 15184 5829 5856 14530 {rgb=(.7 .4 .4)} Face 15185 5775 5786 14531 {rgb=(.7 .4 .4)} Face 15186 5786 5797 14531 {rgb=(.7 .4 .4)} Face 15187 5797 5777 14531 {rgb=(.7 .4 .4)} Face 15188 5777 5775 14531 {rgb=(.7 .4 .4)} Face 15189 5782 5797 14532 {rgb=(.7 .4 .4)} Face 15190 5797 5848 14532 {rgb=(.7 .4 .4)} Face 15191 5848 5847 14532 {rgb=(.7 .4 .4)} Face 15192 5847 5782 14532 {rgb=(.7 .4 .4)} Face 15193 5878 5848 14533 {rgb=(.7 .4 .4)} Face 15194 5848 5837 14533 {rgb=(.7 .4 .4)} Face 15195 5837 5870 14533 {rgb=(.7 .4 .4)} Face 15196 5870 5878 14533 {rgb=(.7 .4 .4)} Face 15197 5676 5672 14534 {rgb=(.7 .4 .4)} Face 15198 5672 5573 14534 {rgb=(.7 .4 .4)} Face 15199 5573 5574 14534 {rgb=(.7 .4 .4)} Face 15200 5574 5676 14534 {rgb=(.7 .4 .4)} Face 15201 5727 5665 14535 {rgb=(.7 .4 .4)} Face 15202 5665 5672 14535 {rgb=(.7 .4 .4)} Face 15203 5672 5738 14535 {rgb=(.7 .4 .4)} Face 15204 5738 5727 14535 {rgb=(.7 .4 .4)} Face 15205 5822 5775 14536 {rgb=(.7 .4 .4)} Face 15206 5775 5794 14536 {rgb=(.7 .4 .4)} Face 15207 5794 5839 14536 {rgb=(.7 .4 .4)} Face 15208 5839 5822 14536 {rgb=(.7 .4 .4)} Face 15209 5773 5794 14537 {rgb=(.7 .4 .4)} Face 15210 5794 5777 14537 {rgb=(.7 .4 .4)} Face 15211 5777 5762 14537 {rgb=(.7 .4 .4)} Face 15212 5762 5773 14537 {rgb=(.7 .4 .4)} Face 15213 5951 5936 14538 {rgb=(.7 .4 .4)} Face 15214 5936 5818 14538 {rgb=(.7 .4 .4)} Face 15215 5818 5811 14538 {rgb=(.7 .4 .4)} Face 15216 5811 5951 14538 {rgb=(.7 .4 .4)} Face 15217 5738 5818 14539 {rgb=(.7 .4 .4)} Face 15218 5818 5845 14539 {rgb=(.7 .4 .4)} Face 15219 5845 5773 14539 {rgb=(.7 .4 .4)} Face 15220 5773 5738 14539 {rgb=(.7 .4 .4)} Face 15221 5865 5845 14540 {rgb=(.7 .4 .4)} Face 15222 5845 5933 14540 {rgb=(.7 .4 .4)} Face 15223 5933 5946 14540 {rgb=(.7 .4 .4)} Face 15224 5946 5865 14540 {rgb=(.7 .4 .4)} Face 15225 6062 5933 14541 {rgb=(.7 .4 .4)} Face 15226 5933 5936 14541 {rgb=(.7 .4 .4)} Face 15227 5936 6087 14541 {rgb=(.7 .4 .4)} Face 15228 6087 6062 14541 {rgb=(.7 .4 .4)} Face 15229 6321 6284 14542 {rgb=(.7 .4 .4)} Face 15230 6284 6087 14542 {rgb=(.7 .4 .4)} Face 15231 6087 6146 14542 {rgb=(.7 .4 .4)} Face 15232 6146 6321 14542 {rgb=(.7 .4 .4)} Face 15233 6031 6062 14543 {rgb=(.7 .4 .4)} Face 15234 6062 6253 14543 {rgb=(.7 .4 .4)} Face 15235 6253 6183 14543 {rgb=(.7 .4 .4)} Face 15236 6183 6031 14543 {rgb=(.7 .4 .4)} Face 15237 6359 6253 14544 {rgb=(.7 .4 .4)} Face 15238 6253 6284 14544 {rgb=(.7 .4 .4)} Face 15239 6284 6396 14544 {rgb=(.7 .4 .4)} Face 15240 6396 6359 14544 {rgb=(.7 .4 .4)} Face 15241 5663 5680 14545 {rgb=(.7 .4 .4)} Face 15242 5680 5577 14545 {rgb=(.7 .4 .4)} Face 15243 5577 5563 14545 {rgb=(.7 .4 .4)} Face 15244 5563 5663 14545 {rgb=(.7 .4 .4)} Face 15245 5811 5676 14546 {rgb=(.7 .4 .4)} Face 15246 5676 5680 14546 {rgb=(.7 .4 .4)} Face 15247 5680 5827 14546 {rgb=(.7 .4 .4)} Face 15248 5827 5811 14546 {rgb=(.7 .4 .4)} Face 15249 5780 5663 14547 {rgb=(.7 .4 .4)} Face 15250 5663 5562 14547 {rgb=(.7 .4 .4)} Face 15251 5562 5702 14547 {rgb=(.7 .4 .4)} Face 15252 5702 5780 14547 {rgb=(.7 .4 .4)} Face 15253 5983 5975 14548 {rgb=(.7 .4 .4)} Face 15254 5975 5827 14548 {rgb=(.7 .4 .4)} Face 15255 5827 5780 14548 {rgb=(.7 .4 .4)} Face 15256 5780 5983 14548 {rgb=(.7 .4 .4)} Face 15257 6146 5951 14549 {rgb=(.7 .4 .4)} Face 15258 5951 5975 14549 {rgb=(.7 .4 .4)} Face 15259 5975 6176 14549 {rgb=(.7 .4 .4)} Face 15260 6176 6146 14549 {rgb=(.7 .4 .4)} Face 15261 5961 5967 14550 {rgb=(.7 .4 .4)} Face 15262 5967 5702 14550 {rgb=(.7 .4 .4)} Face 15263 5702 5671 14550 {rgb=(.7 .4 .4)} Face 15264 5671 5961 14550 {rgb=(.7 .4 .4)} Face 15265 6189 5983 14551 {rgb=(.7 .4 .4)} Face 15266 5983 5967 14551 {rgb=(.7 .4 .4)} Face 15267 5967 6215 14551 {rgb=(.7 .4 .4)} Face 15268 6215 6189 14551 {rgb=(.7 .4 .4)} Face 15269 5835 5862 14552 {rgb=(.7 .4 .4)} Face 15270 5862 5631 14552 {rgb=(.7 .4 .4)} Face 15271 5631 5621 14552 {rgb=(.7 .4 .4)} Face 15272 5621 5835 14552 {rgb=(.7 .4 .4)} Face 15273 5668 5654 14553 {rgb=(.7 .4 .4)} Face 15274 5654 5917 14553 {rgb=(.7 .4 .4)} Face 15275 5917 5955 14553 {rgb=(.7 .4 .4)} Face 15276 5955 5668 14553 {rgb=(.7 .4 .4)} Face 15277 6155 5917 14554 {rgb=(.7 .4 .4)} Face 15278 5917 5862 14554 {rgb=(.7 .4 .4)} Face 15279 5862 6057 14554 {rgb=(.7 .4 .4)} Face 15280 6057 6155 14554 {rgb=(.7 .4 .4)} Face 15281 5875 5864 14555 {rgb=(.7 .4 .4)} Face 15282 5864 5632 14555 {rgb=(.7 .4 .4)} Face 15283 5632 5635 14555 {rgb=(.7 .4 .4)} Face 15284 5635 5875 14555 {rgb=(.7 .4 .4)} Face 15285 5614 5620 14556 {rgb=(.7 .4 .4)} Face 15286 5620 5834 14556 {rgb=(.7 .4 .4)} Face 15287 5834 5814 14556 {rgb=(.7 .4 .4)} Face 15288 5814 5614 14556 {rgb=(.7 .4 .4)} Face 15289 6014 5834 14557 {rgb=(.7 .4 .4)} Face 15290 5834 5864 14557 {rgb=(.7 .4 .4)} Face 15291 5864 6072 14557 {rgb=(.7 .4 .4)} Face 15292 6072 6014 14557 {rgb=(.7 .4 .4)} Face 15293 5884 5895 14558 {rgb=(.7 .4 .4)} Face 15294 5895 5647 14558 {rgb=(.7 .4 .4)} Face 15295 5647 5640 14558 {rgb=(.7 .4 .4)} Face 15296 5640 5884 14558 {rgb=(.7 .4 .4)} Face 15297 5637 5642 14559 {rgb=(.7 .4 .4)} Face 15298 5642 5886 14559 {rgb=(.7 .4 .4)} Face 15299 5886 5879 14559 {rgb=(.7 .4 .4)} Face 15300 5879 5637 14559 {rgb=(.7 .4 .4)} Face 15301 6133 5886 14560 {rgb=(.7 .4 .4)} Face 15302 5886 5895 14560 {rgb=(.7 .4 .4)} Face 15303 5895 6143 14560 {rgb=(.7 .4 .4)} Face 15304 6143 6133 14560 {rgb=(.7 .4 .4)} Face 15305 6504 6399 14561 {rgb=(.7 .4 .4)} Face 15306 6399 6417 14561 {rgb=(.7 .4 .4)} Face 15307 6417 6589 14561 {rgb=(.7 .4 .4)} Face 15308 6589 6504 14561 {rgb=(.7 .4 .4)} Face 15309 6487 6417 14562 {rgb=(.7 .4 .4)} Face 15310 6417 6176 14562 {rgb=(.7 .4 .4)} Face 15311 6176 6189 14562 {rgb=(.7 .4 .4)} Face 15312 6189 6487 14562 {rgb=(.7 .4 .4)} Face 15313 6452 6321 14563 {rgb=(.7 .4 .4)} Face 15314 6321 6399 14563 {rgb=(.7 .4 .4)} Face 15315 6399 6463 14563 {rgb=(.7 .4 .4)} Face 15316 6463 6452 14563 {rgb=(.7 .4 .4)} Face 15317 6524 6511 14564 {rgb=(.7 .4 .4)} Face 15318 6511 6215 14564 {rgb=(.7 .4 .4)} Face 15319 6215 6227 14564 {rgb=(.7 .4 .4)} Face 15320 6227 6524 14564 {rgb=(.7 .4 .4)} Face 15321 6617 6487 14565 {rgb=(.7 .4 .4)} Face 15322 6487 6511 14565 {rgb=(.7 .4 .4)} Face 15323 6511 6635 14565 {rgb=(.7 .4 .4)} Face 15324 6635 6617 14565 {rgb=(.7 .4 .4)} Face 15325 6194 6280 14566 {rgb=(.7 .4 .4)} Face 15326 6280 6057 14566 {rgb=(.7 .4 .4)} Face 15327 6057 6011 14566 {rgb=(.7 .4 .4)} Face 15328 6011 6194 14566 {rgb=(.7 .4 .4)} Face 15329 6220 6155 14567 {rgb=(.7 .4 .4)} Face 15330 6155 6428 14567 {rgb=(.7 .4 .4)} Face 15331 6428 6512 14567 {rgb=(.7 .4 .4)} Face 15332 6512 6220 14567 {rgb=(.7 .4 .4)} Face 15333 6687 6428 14568 {rgb=(.7 .4 .4)} Face 15334 6428 6280 14568 {rgb=(.7 .4 .4)} Face 15335 6280 6591 14568 {rgb=(.7 .4 .4)} Face 15336 6591 6687 14568 {rgb=(.7 .4 .4)} Face 15337 6384 6331 14569 {rgb=(.7 .4 .4)} Face 15338 6331 6072 14569 {rgb=(.7 .4 .4)} Face 15339 6072 6108 14569 {rgb=(.7 .4 .4)} Face 15340 6108 6384 14569 {rgb=(.7 .4 .4)} Face 15341 5988 6014 14570 {rgb=(.7 .4 .4)} Face 15342 6014 6223 14570 {rgb=(.7 .4 .4)} Face 15343 6223 6171 14570 {rgb=(.7 .4 .4)} Face 15344 6171 5988 14570 {rgb=(.7 .4 .4)} Face 15345 6539 6223 14571 {rgb=(.7 .4 .4)} Face 15346 6223 6331 14571 {rgb=(.7 .4 .4)} Face 15347 6331 6634 14571 {rgb=(.7 .4 .4)} Face 15348 6634 6539 14571 {rgb=(.7 .4 .4)} Face 15349 6374 6407 14572 {rgb=(.7 .4 .4)} Face 15350 6407 6143 14572 {rgb=(.7 .4 .4)} Face 15351 6143 6123 14572 {rgb=(.7 .4 .4)} Face 15352 6123 6374 14572 {rgb=(.7 .4 .4)} Face 15353 6122 6133 14573 {rgb=(.7 .4 .4)} Face 15354 6133 6404 14573 {rgb=(.7 .4 .4)} Face 15355 6404 6395 14573 {rgb=(.7 .4 .4)} Face 15356 6395 6122 14573 {rgb=(.7 .4 .4)} Face 15357 6683 6404 14574 {rgb=(.7 .4 .4)} Face 15358 6404 6407 14574 {rgb=(.7 .4 .4)} Face 15359 6407 6660 14574 {rgb=(.7 .4 .4)} Face 15360 6660 6683 14574 {rgb=(.7 .4 .4)} Face 15361 6627 6553 14575 {rgb=(.7 .4 .4)} Face 15362 6553 6606 14575 {rgb=(.7 .4 .4)} Face 15363 6606 6694 14575 {rgb=(.7 .4 .4)} Face 15364 6694 6627 14575 {rgb=(.7 .4 .4)} Face 15365 6630 6606 14576 {rgb=(.7 .4 .4)} Face 15366 6606 6589 14576 {rgb=(.7 .4 .4)} Face 15367 6589 6617 14576 {rgb=(.7 .4 .4)} Face 15368 6617 6630 14576 {rgb=(.7 .4 .4)} Face 15369 6728 6630 14577 {rgb=(.7 .4 .4)} Face 15370 6630 6635 14577 {rgb=(.7 .4 .4)} Face 15371 6635 6738 14577 {rgb=(.7 .4 .4)} Face 15372 6738 6728 14577 {rgb=(.7 .4 .4)} Face 15373 6783 6813 14578 {rgb=(.7 .4 .4)} Face 15374 6813 6591 14578 {rgb=(.7 .4 .4)} Face 15375 6591 6516 14578 {rgb=(.7 .4 .4)} Face 15376 6516 6783 14578 {rgb=(.7 .4 .4)} Face 15377 6733 6687 14579 {rgb=(.7 .4 .4)} Face 15378 6687 6882 14579 {rgb=(.7 .4 .4)} Face 15379 6882 6921 14579 {rgb=(.7 .4 .4)} Face 15380 6921 6733 14579 {rgb=(.7 .4 .4)} Face 15381 7037 6882 14580 {rgb=(.7 .4 .4)} Face 15382 6882 6813 14580 {rgb=(.7 .4 .4)} Face 15383 6813 7010 14580 {rgb=(.7 .4 .4)} Face 15384 7010 7037 14580 {rgb=(.7 .4 .4)} Face 15385 6913 6869 14581 {rgb=(.7 .4 .4)} Face 15386 6869 6634 14581 {rgb=(.7 .4 .4)} Face 15387 6634 6682 14581 {rgb=(.7 .4 .4)} Face 15388 6682 6913 14581 {rgb=(.7 .4 .4)} Face 15389 6475 6539 14582 {rgb=(.7 .4 .4)} Face 15390 6539 6774 14582 {rgb=(.7 .4 .4)} Face 15391 6774 6745 14582 {rgb=(.7 .4 .4)} Face 15392 6745 6475 14582 {rgb=(.7 .4 .4)} Face 15393 6983 6774 14583 {rgb=(.7 .4 .4)} Face 15394 6774 6869 14583 {rgb=(.7 .4 .4)} Face 15395 6869 7043 14583 {rgb=(.7 .4 .4)} Face 15396 7043 6983 14583 {rgb=(.7 .4 .4)} Face 15397 6758 6842 14584 {rgb=(.7 .4 .4)} Face 15398 6842 6660 14584 {rgb=(.7 .4 .4)} Face 15399 6660 6609 14584 {rgb=(.7 .4 .4)} Face 15400 6609 6758 14584 {rgb=(.7 .4 .4)} Face 15401 6692 6683 14585 {rgb=(.7 .4 .4)} Face 15402 6683 6891 14585 {rgb=(.7 .4 .4)} Face 15403 6891 6917 14585 {rgb=(.7 .4 .4)} Face 15404 6917 6692 14585 {rgb=(.7 .4 .4)} Face 15405 7079 6891 14586 {rgb=(.7 .4 .4)} Face 15406 6891 6842 14586 {rgb=(.7 .4 .4)} Face 15407 6842 7035 14586 {rgb=(.7 .4 .4)} Face 15408 7035 7079 14586 {rgb=(.7 .4 .4)} Face 15409 6814 6947 14587 {rgb=(.7 .4 .4)} Face 15410 6947 6849 14587 {rgb=(.7 .4 .4)} Face 15411 6849 6739 14587 {rgb=(.7 .4 .4)} Face 15412 6739 6814 14587 {rgb=(.7 .4 .4)} Face 15413 6854 6849 14588 {rgb=(.7 .4 .4)} Face 15414 6849 7042 14588 {rgb=(.7 .4 .4)} Face 15415 7042 7051 14588 {rgb=(.7 .4 .4)} Face 15416 7051 6854 14588 {rgb=(.7 .4 .4)} Face 15417 7135 7042 14589 {rgb=(.7 .4 .4)} Face 15418 7042 6947 14589 {rgb=(.7 .4 .4)} Face 15419 6947 7015 14589 {rgb=(.7 .4 .4)} Face 15420 7015 7135 14589 {rgb=(.7 .4 .4)} Face 15421 7243 7197 14590 {rgb=(.7 .4 .4)} Face 15422 7197 7065 14590 {rgb=(.7 .4 .4)} Face 15423 7065 7080 14590 {rgb=(.7 .4 .4)} Face 15424 7080 7243 14590 {rgb=(.7 .4 .4)} Face 15425 6920 7065 14591 {rgb=(.7 .4 .4)} Face 15426 7065 7015 14591 {rgb=(.7 .4 .4)} Face 15427 7015 6883 14591 {rgb=(.7 .4 .4)} Face 15428 6883 6920 14591 {rgb=(.7 .4 .4)} Face 15429 7262 7135 14592 {rgb=(.7 .4 .4)} Face 15430 7135 7197 14592 {rgb=(.7 .4 .4)} Face 15431 7197 7338 14592 {rgb=(.7 .4 .4)} Face 15432 7338 7262 14592 {rgb=(.7 .4 .4)} Face 15433 7129 7152 14593 {rgb=(.7 .4 .4)} Face 15434 7152 7010 14593 {rgb=(.7 .4 .4)} Face 15435 7010 6984 14593 {rgb=(.7 .4 .4)} Face 15436 6984 7129 14593 {rgb=(.7 .4 .4)} Face 15437 7074 7037 14594 {rgb=(.7 .4 .4)} Face 15438 7037 7187 14594 {rgb=(.7 .4 .4)} Face 15439 7187 7222 14594 {rgb=(.7 .4 .4)} Face 15440 7222 7074 14594 {rgb=(.7 .4 .4)} Face 15441 7331 7187 14595 {rgb=(.7 .4 .4)} Face 15442 7187 7152 14595 {rgb=(.7 .4 .4)} Face 15443 7152 7267 14595 {rgb=(.7 .4 .4)} Face 15444 7267 7331 14595 {rgb=(.7 .4 .4)} Face 15445 7289 7227 14596 {rgb=(.7 .4 .4)} Face 15446 7227 7043 14596 {rgb=(.7 .4 .4)} Face 15447 7043 7095 14596 {rgb=(.7 .4 .4)} Face 15448 7095 7289 14596 {rgb=(.7 .4 .4)} Face 15449 6952 6983 14597 {rgb=(.7 .4 .4)} Face 15450 6983 7150 14597 {rgb=(.7 .4 .4)} Face 15451 7150 7110 14597 {rgb=(.7 .4 .4)} Face 15452 7110 6952 14597 {rgb=(.7 .4 .4)} Face 15453 7308 7150 14598 {rgb=(.7 .4 .4)} Face 15454 7150 7227 14598 {rgb=(.7 .4 .4)} Face 15455 7227 7373 14598 {rgb=(.7 .4 .4)} Face 15456 7373 7308 14598 {rgb=(.7 .4 .4)} Face 15457 7102 7079 14599 {rgb=(.7 .4 .4)} Face 15458 7079 7310 14599 {rgb=(.7 .4 .4)} Face 15459 7310 7307 14599 {rgb=(.7 .4 .4)} Face 15460 7307 7102 14599 {rgb=(.7 .4 .4)} Face 15461 7460 7310 14600 {rgb=(.7 .4 .4)} Face 15462 7310 7302 14600 {rgb=(.7 .4 .4)} Face 15463 7302 7493 14600 {rgb=(.7 .4 .4)} Face 15464 7493 7460 14600 {rgb=(.7 .4 .4)} Face 15465 6872 6893 14601 {rgb=(.7 .4 .4)} Face 15466 6893 6648 14601 {rgb=(.7 .4 .4)} Face 15467 6648 6649 14601 {rgb=(.7 .4 .4)} Face 15468 6649 6872 14601 {rgb=(.7 .4 .4)} Face 15469 7149 6898 14602 {rgb=(.7 .4 .4)} Face 15470 6898 6893 14602 {rgb=(.7 .4 .4)} Face 15471 6893 7132 14602 {rgb=(.7 .4 .4)} Face 15472 7132 7149 14602 {rgb=(.7 .4 .4)} Face 15473 6766 6828 14603 {rgb=(.7 .4 .4)} Face 15474 6828 6645 14603 {rgb=(.7 .4 .4)} Face 15475 6645 6626 14603 {rgb=(.7 .4 .4)} Face 15476 6626 6766 14603 {rgb=(.7 .4 .4)} Face 15477 7094 6872 14604 {rgb=(.7 .4 .4)} Face 15478 6872 6828 14604 {rgb=(.7 .4 .4)} Face 15479 6828 7032 14604 {rgb=(.7 .4 .4)} Face 15480 7032 7094 14604 {rgb=(.7 .4 .4)} Face 15481 7380 7422 14605 {rgb=(.7 .4 .4)} Face 15482 7422 7132 14605 {rgb=(.7 .4 .4)} Face 15483 7132 7094 14605 {rgb=(.7 .4 .4)} Face 15484 7094 7380 14605 {rgb=(.7 .4 .4)} Face 15485 7159 7149 14606 {rgb=(.7 .4 .4)} Face 15486 7149 7450 14606 {rgb=(.7 .4 .4)} Face 15487 7450 7461 14606 {rgb=(.7 .4 .4)} Face 15488 7461 7159 14606 {rgb=(.7 .4 .4)} Face 15489 7619 7450 14607 {rgb=(.7 .4 .4)} Face 15490 7450 7422 14607 {rgb=(.7 .4 .4)} Face 15491 7422 7638 14607 {rgb=(.7 .4 .4)} Face 15492 7638 7619 14607 {rgb=(.7 .4 .4)} Face 15493 7195 7309 14608 {rgb=(.7 .4 .4)} Face 15494 7309 7032 14608 {rgb=(.7 .4 .4)} Face 15495 7032 6973 14608 {rgb=(.7 .4 .4)} Face 15496 6973 7195 14608 {rgb=(.7 .4 .4)} Face 15497 7609 7380 14609 {rgb=(.7 .4 .4)} Face 15498 7380 7309 14609 {rgb=(.7 .4 .4)} Face 15499 7309 7514 14609 {rgb=(.7 .4 .4)} Face 15500 7514 7609 14609 {rgb=(.7 .4 .4)} Face 15501 7792 7674 14610 {rgb=(.7 .4 .4)} Face 15502 7674 7812 14610 {rgb=(.7 .4 .4)} Face 15503 7812 7967 14610 {rgb=(.7 .4 .4)} Face 15504 7967 7792 14610 {rgb=(.7 .4 .4)} Face 15505 7832 7812 14611 {rgb=(.7 .4 .4)} Face 15506 7812 7638 14611 {rgb=(.7 .4 .4)} Face 15507 7638 7609 14611 {rgb=(.7 .4 .4)} Face 15508 7609 7832 14611 {rgb=(.7 .4 .4)} Face 15509 7611 7619 14612 {rgb=(.7 .4 .4)} Face 15510 7619 7674 14612 {rgb=(.7 .4 .4)} Face 15511 7674 7622 14612 {rgb=(.7 .4 .4)} Face 15512 7622 7611 14612 {rgb=(.7 .4 .4)} Face 15513 8012 7832 14613 {rgb=(.7 .4 .4)} Face 15514 7832 7726 14613 {rgb=(.7 .4 .4)} Face 15515 7726 7903 14613 {rgb=(.7 .4 .4)} Face 15516 7903 8012 14613 {rgb=(.7 .4 .4)} Face 15517 7642 7726 14614 {rgb=(.7 .4 .4)} Face 15518 7726 7514 14614 {rgb=(.7 .4 .4)} Face 15519 7514 7444 14614 {rgb=(.7 .4 .4)} Face 15520 7444 7642 14614 {rgb=(.7 .4 .4)} Face 15521 6706 6734 14615 {rgb=(.7 .4 .4)} Face 15522 6734 6597 14615 {rgb=(.7 .4 .4)} Face 15523 6597 6578 14615 {rgb=(.7 .4 .4)} Face 15524 6578 6706 14615 {rgb=(.7 .4 .4)} Face 15525 6973 6766 14616 {rgb=(.7 .4 .4)} Face 15526 6766 6734 14616 {rgb=(.7 .4 .4)} Face 15527 6734 6912 14616 {rgb=(.7 .4 .4)} Face 15528 6912 6973 14616 {rgb=(.7 .4 .4)} Face 15529 7073 7124 14617 {rgb=(.7 .4 .4)} Face 15530 7124 6912 14617 {rgb=(.7 .4 .4)} Face 15531 6912 6866 14617 {rgb=(.7 .4 .4)} Face 15532 6866 7073 14617 {rgb=(.7 .4 .4)} Face 15533 7444 7195 14618 {rgb=(.7 .4 .4)} Face 15534 7195 7124 14618 {rgb=(.7 .4 .4)} Face 15535 7124 7361 14618 {rgb=(.7 .4 .4)} Face 15536 7361 7444 14618 {rgb=(.7 .4 .4)} Face 15537 7558 7571 14619 {rgb=(.7 .4 .4)} Face 15538 7571 7361 14619 {rgb=(.7 .4 .4)} Face 15539 7361 7343 14619 {rgb=(.7 .4 .4)} Face 15540 7343 7558 14619 {rgb=(.7 .4 .4)} Face 15541 7824 7642 14620 {rgb=(.7 .4 .4)} Face 15542 7642 7571 14620 {rgb=(.7 .4 .4)} Face 15543 7571 7749 14620 {rgb=(.7 .4 .4)} Face 15544 7749 7824 14620 {rgb=(.7 .4 .4)} Face 15545 7816 7866 14621 {rgb=(.7 .4 .4)} Face 15546 7866 7749 14621 {rgb=(.7 .4 .4)} Face 15547 7749 7698 14621 {rgb=(.7 .4 .4)} Face 15548 7698 7816 14621 {rgb=(.7 .4 .4)} Face 15549 7903 7824 14622 {rgb=(.7 .4 .4)} Face 15550 7824 7938 14622 {rgb=(.7 .4 .4)} Face 15551 7938 8043 14622 {rgb=(.7 .4 .4)} Face 15552 8043 7903 14622 {rgb=(.7 .4 .4)} Face 15553 8080 7938 14623 {rgb=(.7 .4 .4)} Face 15554 7938 7866 14623 {rgb=(.7 .4 .4)} Face 15555 7866 7981 14623 {rgb=(.7 .4 .4)} Face 15556 7981 8080 14623 {rgb=(.7 .4 .4)} Face 15557 7500 7429 14624 {rgb=(.7 .4 .4)} Face 15558 7429 7303 14624 {rgb=(.7 .4 .4)} Face 15559 7303 7357 14624 {rgb=(.7 .4 .4)} Face 15560 7357 7500 14624 {rgb=(.7 .4 .4)} Face 15561 7199 7303 14625 {rgb=(.7 .4 .4)} Face 15562 7303 7267 14625 {rgb=(.7 .4 .4)} Face 15563 7267 7196 14625 {rgb=(.7 .4 .4)} Face 15564 7196 7199 14625 {rgb=(.7 .4 .4)} Face 15565 7374 7331 14626 {rgb=(.7 .4 .4)} Face 15566 7331 7429 14626 {rgb=(.7 .4 .4)} Face 15567 7429 7480 14626 {rgb=(.7 .4 .4)} Face 15568 7480 7374 14626 {rgb=(.7 .4 .4)} Face 15569 7580 7575 14627 {rgb=(.7 .4 .4)} Face 15570 7575 7437 14627 {rgb=(.7 .4 .4)} Face 15571 7437 7462 14627 {rgb=(.7 .4 .4)} Face 15572 7462 7580 14627 {rgb=(.7 .4 .4)} Face 15573 7360 7437 14628 {rgb=(.7 .4 .4)} Face 15574 7437 7357 14628 {rgb=(.7 .4 .4)} Face 15575 7357 7281 14628 {rgb=(.7 .4 .4)} Face 15576 7281 7360 14628 {rgb=(.7 .4 .4)} Face 15577 7601 7500 14629 {rgb=(.7 .4 .4)} Face 15578 7500 7575 14629 {rgb=(.7 .4 .4)} Face 15579 7575 7665 14629 {rgb=(.7 .4 .4)} Face 15580 7665 7601 14629 {rgb=(.7 .4 .4)} Face 15581 7459 7520 14630 {rgb=(.7 .4 .4)} Face 15582 7520 7449 14630 {rgb=(.7 .4 .4)} Face 15583 7449 7395 14630 {rgb=(.7 .4 .4)} Face 15584 7395 7459 14630 {rgb=(.7 .4 .4)} Face 15585 7397 7449 14631 {rgb=(.7 .4 .4)} Face 15586 7449 7462 14631 {rgb=(.7 .4 .4)} Face 15587 7462 7398 14631 {rgb=(.7 .4 .4)} Face 15588 7398 7397 14631 {rgb=(.7 .4 .4)} Face 15589 7663 7580 14632 {rgb=(.7 .4 .4)} Face 15590 7580 7520 14632 {rgb=(.7 .4 .4)} Face 15591 7520 7592 14632 {rgb=(.7 .4 .4)} Face 15592 7592 7663 14632 {rgb=(.7 .4 .4)} Face 15593 7261 7308 14633 {rgb=(.7 .4 .4)} Face 15594 7308 7395 14633 {rgb=(.7 .4 .4)} Face 15595 7395 7356 14633 {rgb=(.7 .4 .4)} Face 15596 7356 7261 14633 {rgb=(.7 .4 .4)} Face 15597 7501 7459 14634 {rgb=(.7 .4 .4)} Face 15598 7459 7373 14634 {rgb=(.7 .4 .4)} Face 15599 7373 7419 14634 {rgb=(.7 .4 .4)} Face 15600 7419 7501 14634 {rgb=(.7 .4 .4)} Face 15601 7282 7262 14635 {rgb=(.7 .4 .4)} Face 15602 7262 7435 14635 {rgb=(.7 .4 .4)} Face 15603 7435 7453 14635 {rgb=(.7 .4 .4)} Face 15604 7453 7282 14635 {rgb=(.7 .4 .4)} Face 15605 7473 7435 14636 {rgb=(.7 .4 .4)} Face 15606 7435 7338 14636 {rgb=(.7 .4 .4)} Face 15607 7338 7382 14636 {rgb=(.7 .4 .4)} Face 15608 7382 7473 14636 {rgb=(.7 .4 .4)} Face 15609 7709 7746 14637 {rgb=(.7 .4 .4)} Face 15610 7746 7656 14637 {rgb=(.7 .4 .4)} Face 15611 7656 7626 14637 {rgb=(.7 .4 .4)} Face 15612 7626 7709 14637 {rgb=(.7 .4 .4)} Face 15613 7660 7656 14638 {rgb=(.7 .4 .4)} Face 15614 7656 7778 14638 {rgb=(.7 .4 .4)} Face 15615 7778 7782 14638 {rgb=(.7 .4 .4)} Face 15616 7782 7660 14638 {rgb=(.7 .4 .4)} Face 15617 7871 7778 14639 {rgb=(.7 .4 .4)} Face 15618 7778 7746 14639 {rgb=(.7 .4 .4)} Face 15619 7746 7845 14639 {rgb=(.7 .4 .4)} Face 15620 7845 7871 14639 {rgb=(.7 .4 .4)} Face 15621 7836 7881 14640 {rgb=(.7 .4 .4)} Face 15622 7881 7718 14640 {rgb=(.7 .4 .4)} Face 15623 7718 7670 14640 {rgb=(.7 .4 .4)} Face 15624 7670 7836 14640 {rgb=(.7 .4 .4)} Face 15625 7629 7718 14641 {rgb=(.7 .4 .4)} Face 15626 7718 7796 14641 {rgb=(.7 .4 .4)} Face 15627 7796 7710 14641 {rgb=(.7 .4 .4)} Face 15628 7710 7629 14641 {rgb=(.7 .4 .4)} Face 15629 7845 7796 14642 {rgb=(.7 .4 .4)} Face 15630 7796 7936 14642 {rgb=(.7 .4 .4)} Face 15631 7936 7975 14642 {rgb=(.7 .4 .4)} Face 15632 7975 7845 14642 {rgb=(.7 .4 .4)} Face 15633 7533 7660 14643 {rgb=(.7 .4 .4)} Face 15634 7660 7698 14643 {rgb=(.7 .4 .4)} Face 15635 7698 7558 14643 {rgb=(.7 .4 .4)} Face 15636 7558 7533 14643 {rgb=(.7 .4 .4)} Face 15637 7925 7816 14644 {rgb=(.7 .4 .4)} Face 15638 7816 7782 14644 {rgb=(.7 .4 .4)} Face 15639 7782 7900 14644 {rgb=(.7 .4 .4)} Face 15640 7900 7925 14644 {rgb=(.7 .4 .4)} Face 15641 5846 5860 14645 {rgb=(.7 .4 .4)} Face 15642 5860 5630 14645 {rgb=(.7 .4 .4)} Face 15643 5630 5625 14645 {rgb=(.7 .4 .4)} Face 15644 5625 5846 14645 {rgb=(.7 .4 .4)} Face 15645 6123 5884 14646 {rgb=(.7 .4 .4)} Face 15646 5884 5860 14646 {rgb=(.7 .4 .4)} Face 15647 5860 6064 14646 {rgb=(.7 .4 .4)} Face 15648 6064 6123 14646 {rgb=(.7 .4 .4)} Face 15649 6292 6313 14647 {rgb=(.7 .4 .4)} Face 15650 6313 6064 14647 {rgb=(.7 .4 .4)} Face 15651 6064 6044 14647 {rgb=(.7 .4 .4)} Face 15652 6044 6292 14647 {rgb=(.7 .4 .4)} Face 15653 6609 6374 14648 {rgb=(.7 .4 .4)} Face 15654 6374 6313 14648 {rgb=(.7 .4 .4)} Face 15655 6313 6564 14648 {rgb=(.7 .4 .4)} Face 15656 6564 6609 14648 {rgb=(.7 .4 .4)} Face 15657 6755 6758 14649 {rgb=(.7 .4 .4)} Face 15658 6758 6564 14649 {rgb=(.7 .4 .4)} Face 15659 6564 6549 14649 {rgb=(.7 .4 .4)} Face 15660 6549 6755 14649 {rgb=(.7 .4 .4)} Face 15661 5813 5826 14650 {rgb=(.7 .4 .4)} Face 15662 5826 5618 14650 {rgb=(.7 .4 .4)} Face 15663 5618 5612 14650 {rgb=(.7 .4 .4)} Face 15664 5612 5813 14650 {rgb=(.7 .4 .4)} Face 15665 5628 5624 14651 {rgb=(.7 .4 .4)} Face 15666 5624 5844 14651 {rgb=(.7 .4 .4)} Face 15667 5844 5850 14651 {rgb=(.7 .4 .4)} Face 15668 5850 5628 14651 {rgb=(.7 .4 .4)} Face 15669 6036 5844 14652 {rgb=(.7 .4 .4)} Face 15670 5844 5826 14652 {rgb=(.7 .4 .4)} Face 15671 5826 6012 14652 {rgb=(.7 .4 .4)} Face 15672 6012 6036 14652 {rgb=(.7 .4 .4)} Face 15673 5774 5804 14653 {rgb=(.7 .4 .4)} Face 15674 5804 5609 14653 {rgb=(.7 .4 .4)} Face 15675 5609 5598 14653 {rgb=(.7 .4 .4)} Face 15676 5598 5774 14653 {rgb=(.7 .4 .4)} Face 15677 5987 5813 14654 {rgb=(.7 .4 .4)} Face 15678 5813 5804 14654 {rgb=(.7 .4 .4)} Face 15679 5804 5963 14654 {rgb=(.7 .4 .4)} Face 15680 5963 5987 14654 {rgb=(.7 .4 .4)} Face 15681 5746 5740 14655 {rgb=(.7 .4 .4)} Face 15682 5740 5590 14655 {rgb=(.7 .4 .4)} Face 15683 5590 5646 14655 {rgb=(.7 .4 .4)} Face 15684 5646 5746 14655 {rgb=(.7 .4 .4)} Face 15685 5908 5774 14656 {rgb=(.7 .4 .4)} Face 15686 5774 5740 14656 {rgb=(.7 .4 .4)} Face 15687 5740 5857 14656 {rgb=(.7 .4 .4)} Face 15688 5857 5908 14656 {rgb=(.7 .4 .4)} Face 15689 6170 6230 14657 {rgb=(.7 .4 .4)} Face 15690 6230 6012 14657 {rgb=(.7 .4 .4)} Face 15691 6012 5987 14657 {rgb=(.7 .4 .4)} Face 15692 5987 6170 14657 {rgb=(.7 .4 .4)} Face 15693 6052 6036 14658 {rgb=(.7 .4 .4)} Face 15694 6036 6282 14658 {rgb=(.7 .4 .4)} Face 15695 6282 6300 14658 {rgb=(.7 .4 .4)} Face 15696 6300 6052 14658 {rgb=(.7 .4 .4)} Face 15697 6573 6282 14659 {rgb=(.7 .4 .4)} Face 15698 6282 6230 14659 {rgb=(.7 .4 .4)} Face 15699 6230 6494 14659 {rgb=(.7 .4 .4)} Face 15700 6494 6573 14659 {rgb=(.7 .4 .4)} Face 15701 6024 6105 14660 {rgb=(.7 .4 .4)} Face 15702 6105 5963 14660 {rgb=(.7 .4 .4)} Face 15703 5963 5908 14660 {rgb=(.7 .4 .4)} Face 15704 5908 6024 14660 {rgb=(.7 .4 .4)} Face 15705 6382 6170 14661 {rgb=(.7 .4 .4)} Face 15706 6170 6105 14661 {rgb=(.7 .4 .4)} Face 15707 6105 6274 14661 {rgb=(.7 .4 .4)} Face 15708 6274 6382 14661 {rgb=(.7 .4 .4)} Face 15709 5832 5909 14662 {rgb=(.7 .4 .4)} Face 15710 5909 5857 14662 {rgb=(.7 .4 .4)} Face 15711 5857 5746 14662 {rgb=(.7 .4 .4)} Face 15712 5746 5832 14662 {rgb=(.7 .4 .4)} Face 15713 6120 6024 14663 {rgb=(.7 .4 .4)} Face 15714 6024 5909 14663 {rgb=(.7 .4 .4)} Face 15715 5909 5966 14663 {rgb=(.7 .4 .4)} Face 15716 5966 6120 14663 {rgb=(.7 .4 .4)} Face 15717 6595 6699 14664 {rgb=(.7 .4 .4)} Face 15718 6699 6494 14664 {rgb=(.7 .4 .4)} Face 15719 6494 6382 14664 {rgb=(.7 .4 .4)} Face 15720 6382 6595 14664 {rgb=(.7 .4 .4)} Face 15721 6556 6573 14665 {rgb=(.7 .4 .4)} Face 15722 6573 6754 14665 {rgb=(.7 .4 .4)} Face 15723 6754 6755 14665 {rgb=(.7 .4 .4)} Face 15724 6755 6556 14665 {rgb=(.7 .4 .4)} Face 15725 6906 6754 14666 {rgb=(.7 .4 .4)} Face 15726 6754 6699 14666 {rgb=(.7 .4 .4)} Face 15727 6699 6800 14666 {rgb=(.7 .4 .4)} Face 15728 6800 6906 14666 {rgb=(.7 .4 .4)} Face 15729 6198 6419 14667 {rgb=(.7 .4 .4)} Face 15730 6419 6274 14667 {rgb=(.7 .4 .4)} Face 15731 6274 6120 14667 {rgb=(.7 .4 .4)} Face 15732 6120 6198 14667 {rgb=(.7 .4 .4)} Face 15733 6686 6595 14668 {rgb=(.7 .4 .4)} Face 15734 6595 6419 14668 {rgb=(.7 .4 .4)} Face 15735 6419 6493 14668 {rgb=(.7 .4 .4)} Face 15736 6493 6686 14668 {rgb=(.7 .4 .4)} Face 15737 5851 6003 14669 {rgb=(.7 .4 .4)} Face 15738 6003 5966 14669 {rgb=(.7 .4 .4)} Face 15739 5966 5832 14669 {rgb=(.7 .4 .4)} Face 15740 5832 5851 14669 {rgb=(.7 .4 .4)} Face 15741 6232 6198 14670 {rgb=(.7 .4 .4)} Face 15742 6198 6003 14670 {rgb=(.7 .4 .4)} Face 15743 6003 6005 14670 {rgb=(.7 .4 .4)} Face 15744 6005 6232 14670 {rgb=(.7 .4 .4)} Face 15745 6718 6874 14671 {rgb=(.7 .4 .4)} Face 15746 6874 6800 14671 {rgb=(.7 .4 .4)} Face 15747 6800 6686 14671 {rgb=(.7 .4 .4)} Face 15748 6686 6718 14671 {rgb=(.7 .4 .4)} Face 15749 7036 7000 14672 {rgb=(.7 .4 .4)} Face 15750 7000 6874 14672 {rgb=(.7 .4 .4)} Face 15751 6874 6896 14672 {rgb=(.7 .4 .4)} Face 15752 6896 7036 14672 {rgb=(.7 .4 .4)} Face 15753 6182 6482 14673 {rgb=(.7 .4 .4)} Face 15754 6482 6493 14673 {rgb=(.7 .4 .4)} Face 15755 6493 6232 14673 {rgb=(.7 .4 .4)} Face 15756 6232 6182 14673 {rgb=(.7 .4 .4)} Face 15757 6722 6718 14674 {rgb=(.7 .4 .4)} Face 15758 6718 6482 14674 {rgb=(.7 .4 .4)} Face 15759 6482 6453 14674 {rgb=(.7 .4 .4)} Face 15760 6453 6722 14674 {rgb=(.7 .4 .4)} Face 15761 5816 5976 14675 {rgb=(.7 .4 .4)} Face 15762 5976 6005 14675 {rgb=(.7 .4 .4)} Face 15763 6005 5851 14675 {rgb=(.7 .4 .4)} Face 15764 5851 5816 14675 {rgb=(.7 .4 .4)} Face 15765 6197 6182 14676 {rgb=(.7 .4 .4)} Face 15766 6182 5976 14676 {rgb=(.7 .4 .4)} Face 15767 5976 5991 14676 {rgb=(.7 .4 .4)} Face 15768 5991 6197 14676 {rgb=(.7 .4 .4)} Face 15769 6696 6875 14677 {rgb=(.7 .4 .4)} Face 15770 6875 6896 14677 {rgb=(.7 .4 .4)} Face 15771 6896 6722 14677 {rgb=(.7 .4 .4)} Face 15772 6722 6696 14677 {rgb=(.7 .4 .4)} Face 15773 6945 7023 14678 {rgb=(.7 .4 .4)} Face 15774 7023 6875 14678 {rgb=(.7 .4 .4)} Face 15775 6875 6765 14678 {rgb=(.7 .4 .4)} Face 15776 6765 6945 14678 {rgb=(.7 .4 .4)} Face 15777 6169 6410 14679 {rgb=(.7 .4 .4)} Face 15778 6410 6453 14679 {rgb=(.7 .4 .4)} Face 15779 6453 6197 14679 {rgb=(.7 .4 .4)} Face 15780 6197 6169 14679 {rgb=(.7 .4 .4)} Face 15781 6608 6696 14680 {rgb=(.7 .4 .4)} Face 15782 6696 6410 14680 {rgb=(.7 .4 .4)} Face 15783 6410 6330 14680 {rgb=(.7 .4 .4)} Face 15784 6330 6608 14680 {rgb=(.7 .4 .4)} Face 15785 6141 6169 14681 {rgb=(.7 .4 .4)} Face 15786 6169 5991 14681 {rgb=(.7 .4 .4)} Face 15787 5991 5959 14681 {rgb=(.7 .4 .4)} Face 15788 5959 6141 14681 {rgb=(.7 .4 .4)} Face 15789 6413 6624 14682 {rgb=(.7 .4 .4)} Face 15790 6624 6765 14682 {rgb=(.7 .4 .4)} Face 15791 6765 6608 14682 {rgb=(.7 .4 .4)} Face 15792 6608 6413 14682 {rgb=(.7 .4 .4)} Face 15793 6576 6762 14683 {rgb=(.7 .4 .4)} Face 15794 6762 6624 14683 {rgb=(.7 .4 .4)} Face 15795 6624 6370 14683 {rgb=(.7 .4 .4)} Face 15796 6370 6576 14683 {rgb=(.7 .4 .4)} Face 15797 6069 6206 14684 {rgb=(.7 .4 .4)} Face 15798 6206 6330 14684 {rgb=(.7 .4 .4)} Face 15799 6330 6141 14684 {rgb=(.7 .4 .4)} Face 15800 6141 6069 14684 {rgb=(.7 .4 .4)} Face 15801 6205 6413 14685 {rgb=(.7 .4 .4)} Face 15802 6413 6206 14685 {rgb=(.7 .4 .4)} Face 15803 6206 6084 14685 {rgb=(.7 .4 .4)} Face 15804 6084 6205 14685 {rgb=(.7 .4 .4)} Face 15805 5982 6069 14686 {rgb=(.7 .4 .4)} Face 15806 6069 5959 14686 {rgb=(.7 .4 .4)} Face 15807 5959 5876 14686 {rgb=(.7 .4 .4)} Face 15808 5876 5982 14686 {rgb=(.7 .4 .4)} Face 15809 6034 6128 14687 {rgb=(.7 .4 .4)} Face 15810 6128 6370 14687 {rgb=(.7 .4 .4)} Face 15811 6370 6205 14687 {rgb=(.7 .4 .4)} Face 15812 6205 6034 14687 {rgb=(.7 .4 .4)} Face 15813 5920 6208 14688 {rgb=(.7 .4 .4)} Face 15814 6208 6128 14688 {rgb=(.7 .4 .4)} Face 15815 6128 5883 14688 {rgb=(.7 .4 .4)} Face 15816 5883 5920 14688 {rgb=(.7 .4 .4)} Face 15817 5874 5952 14689 {rgb=(.7 .4 .4)} Face 15818 5952 6084 14689 {rgb=(.7 .4 .4)} Face 15819 6084 5982 14689 {rgb=(.7 .4 .4)} Face 15820 5982 5874 14689 {rgb=(.7 .4 .4)} Face 15821 5855 6034 14690 {rgb=(.7 .4 .4)} Face 15822 6034 5952 14690 {rgb=(.7 .4 .4)} Face 15823 5952 5792 14690 {rgb=(.7 .4 .4)} Face 15824 5792 5855 14690 {rgb=(.7 .4 .4)} Face 15825 5733 5819 14691 {rgb=(.7 .4 .4)} Face 15826 5819 5876 14691 {rgb=(.7 .4 .4)} Face 15827 5876 5816 14691 {rgb=(.7 .4 .4)} Face 15828 5816 5733 14691 {rgb=(.7 .4 .4)} Face 15829 5744 5874 14692 {rgb=(.7 .4 .4)} Face 15830 5874 5819 14692 {rgb=(.7 .4 .4)} Face 15831 5819 5704 14692 {rgb=(.7 .4 .4)} Face 15832 5704 5744 14692 {rgb=(.7 .4 .4)} Face 15833 5613 5627 14693 {rgb=(.7 .4 .4)} Face 15834 5627 5883 14693 {rgb=(.7 .4 .4)} Face 15835 5883 5855 14693 {rgb=(.7 .4 .4)} Face 15836 5855 5613 14693 {rgb=(.7 .4 .4)} Face 15837 5593 5599 14694 {rgb=(.7 .4 .4)} Face 15838 5599 5792 14694 {rgb=(.7 .4 .4)} Face 15839 5792 5744 14694 {rgb=(.7 .4 .4)} Face 15840 5744 5593 14694 {rgb=(.7 .4 .4)} Face 15841 5638 5584 14695 {rgb=(.7 .4 .4)} Face 15842 5584 5704 14695 {rgb=(.7 .4 .4)} Face 15843 5704 5733 14695 {rgb=(.7 .4 .4)} Face 15844 5733 5638 14695 {rgb=(.7 .4 .4)} Face 15845 7464 7452 14696 {rgb=(.7 .4 .4)} Face 15846 7452 7165 14696 {rgb=(.7 .4 .4)} Face 15847 7165 7177 14696 {rgb=(.7 .4 .4)} Face 15848 7177 7464 14696 {rgb=(.7 .4 .4)} Face 15849 6889 7165 14697 {rgb=(.7 .4 .4)} Face 15850 7165 7137 14697 {rgb=(.7 .4 .4)} Face 15851 7137 6871 14697 {rgb=(.7 .4 .4)} Face 15852 6871 6889 14697 {rgb=(.7 .4 .4)} Face 15853 7107 7137 14698 {rgb=(.7 .4 .4)} Face 15854 7137 7417 14698 {rgb=(.7 .4 .4)} Face 15855 7417 7384 14698 {rgb=(.7 .4 .4)} Face 15856 7384 7107 14698 {rgb=(.7 .4 .4)} Face 15857 7627 7417 14699 {rgb=(.7 .4 .4)} Face 15858 7417 7452 14699 {rgb=(.7 .4 .4)} Face 15859 7452 7630 14699 {rgb=(.7 .4 .4)} Face 15860 7630 7627 14699 {rgb=(.7 .4 .4)} Face 15861 7951 7815 14700 {rgb=(.7 .4 .4)} Face 15862 7815 7676 14700 {rgb=(.7 .4 .4)} Face 15863 7676 7792 14700 {rgb=(.7 .4 .4)} Face 15864 7792 7951 14700 {rgb=(.7 .4 .4)} Face 15865 7620 7676 14701 {rgb=(.7 .4 .4)} Face 15866 7676 7630 14701 {rgb=(.7 .4 .4)} Face 15867 7630 7608 14701 {rgb=(.7 .4 .4)} Face 15868 7608 7620 14701 {rgb=(.7 .4 .4)} Face 15869 7559 7627 14702 {rgb=(.7 .4 .4)} Face 15870 7627 7756 14702 {rgb=(.7 .4 .4)} Face 15871 7756 7707 14702 {rgb=(.7 .4 .4)} Face 15872 7707 7559 14702 {rgb=(.7 .4 .4)} Face 15873 7869 7756 14703 {rgb=(.7 .4 .4)} Face 15874 7756 7815 14703 {rgb=(.7 .4 .4)} Face 15875 7815 7926 14703 {rgb=(.7 .4 .4)} Face 15876 7926 7869 14703 {rgb=(.7 .4 .4)} Face 15877 8124 7953 14704 {rgb=(.7 .4 .4)} Face 15878 7953 7926 14704 {rgb=(.7 .4 .4)} Face 15879 7926 8064 14704 {rgb=(.7 .4 .4)} Face 15880 8064 8124 14704 {rgb=(.7 .4 .4)} Face 15881 7804 7869 14705 {rgb=(.7 .4 .4)} Face 15882 7869 7909 14705 {rgb=(.7 .4 .4)} Face 15883 7909 7861 14705 {rgb=(.7 .4 .4)} Face 15884 7861 7804 14705 {rgb=(.7 .4 .4)} Face 15885 7933 7909 14706 {rgb=(.7 .4 .4)} Face 15886 7909 7953 14706 {rgb=(.7 .4 .4)} Face 15887 7953 7965 14706 {rgb=(.7 .4 .4)} Face 15888 7965 7933 14706 {rgb=(.7 .4 .4)} Face 15889 8052 7971 14707 {rgb=(.7 .4 .4)} Face 15890 7971 7965 14707 {rgb=(.7 .4 .4)} Face 15891 7965 8133 14707 {rgb=(.7 .4 .4)} Face 15892 8133 8052 14707 {rgb=(.7 .4 .4)} Face 15893 7886 7933 14708 {rgb=(.7 .4 .4)} Face 15894 7933 7927 14708 {rgb=(.7 .4 .4)} Face 15895 7927 7879 14708 {rgb=(.7 .4 .4)} Face 15896 7879 7886 14708 {rgb=(.7 .4 .4)} Face 15897 7883 7927 14709 {rgb=(.7 .4 .4)} Face 15898 7927 7960 14709 {rgb=(.7 .4 .4)} Face 15899 7960 7906 14709 {rgb=(.7 .4 .4)} Face 15900 7906 7883 14709 {rgb=(.7 .4 .4)} Face 15901 7976 7960 14710 {rgb=(.7 .4 .4)} Face 15902 7960 7971 14710 {rgb=(.7 .4 .4)} Face 15903 7971 7982 14710 {rgb=(.7 .4 .4)} Face 15904 7982 7976 14710 {rgb=(.7 .4 .4)} Face 15905 7568 7566 14711 {rgb=(.7 .4 .4)} Face 15906 7566 7697 14711 {rgb=(.7 .4 .4)} Face 15907 7697 7695 14711 {rgb=(.7 .4 .4)} Face 15908 7695 7568 14711 {rgb=(.7 .4 .4)} Face 15909 7814 7697 14712 {rgb=(.7 .4 .4)} Face 15910 7697 7696 14712 {rgb=(.7 .4 .4)} Face 15911 7696 7806 14712 {rgb=(.7 .4 .4)} Face 15912 7806 7814 14712 {rgb=(.7 .4 .4)} Face 15913 7683 7696 14713 {rgb=(.7 .4 .4)} Face 15914 7696 7565 14713 {rgb=(.7 .4 .4)} Face 15915 7565 7557 14713 {rgb=(.7 .4 .4)} Face 15916 7557 7683 14713 {rgb=(.7 .4 .4)} Face 15917 7433 7565 14714 {rgb=(.7 .4 .4)} Face 15918 7565 7566 14714 {rgb=(.7 .4 .4)} Face 15919 7566 7427 14714 {rgb=(.7 .4 .4)} Face 15920 7427 7433 14714 {rgb=(.7 .4 .4)} Face 15921 7248 7268 14715 {rgb=(.7 .4 .4)} Face 15922 7268 7426 14715 {rgb=(.7 .4 .4)} Face 15923 7426 7433 14715 {rgb=(.7 .4 .4)} Face 15924 7433 7248 14715 {rgb=(.7 .4 .4)} Face 15925 7557 7426 14716 {rgb=(.7 .4 .4)} Face 15926 7426 7414 14716 {rgb=(.7 .4 .4)} Face 15927 7414 7539 14716 {rgb=(.7 .4 .4)} Face 15928 7539 7557 14716 {rgb=(.7 .4 .4)} Face 15929 7096 7275 14717 {rgb=(.7 .4 .4)} Face 15930 7275 7268 14717 {rgb=(.7 .4 .4)} Face 15931 7268 7089 14717 {rgb=(.7 .4 .4)} Face 15932 7089 7096 14717 {rgb=(.7 .4 .4)} Face 15933 6939 6944 14718 {rgb=(.7 .4 .4)} Face 15934 6944 7071 14718 {rgb=(.7 .4 .4)} Face 15935 7071 7062 14718 {rgb=(.7 .4 .4)} Face 15936 7062 6939 14718 {rgb=(.7 .4 .4)} Face 15937 7236 7071 14719 {rgb=(.7 .4 .4)} Face 15938 7071 7078 14719 {rgb=(.7 .4 .4)} Face 15939 7078 7248 14719 {rgb=(.7 .4 .4)} Face 15940 7248 7236 14719 {rgb=(.7 .4 .4)} Face 15941 7089 7078 14720 {rgb=(.7 .4 .4)} Face 15942 7078 6954 14720 {rgb=(.7 .4 .4)} Face 15943 6954 6961 14720 {rgb=(.7 .4 .4)} Face 15944 6961 7089 14720 {rgb=(.7 .4 .4)} Face 15945 6808 6954 14721 {rgb=(.7 .4 .4)} Face 15946 6954 6944 14721 {rgb=(.7 .4 .4)} Face 15947 6944 6802 14721 {rgb=(.7 .4 .4)} Face 15948 6802 6808 14721 {rgb=(.7 .4 .4)} Face 15949 6670 6678 14722 {rgb=(.7 .4 .4)} Face 15950 6678 6802 14722 {rgb=(.7 .4 .4)} Face 15951 6802 6797 14722 {rgb=(.7 .4 .4)} Face 15952 6797 6670 14722 {rgb=(.7 .4 .4)} Face 15953 6819 6808 14723 {rgb=(.7 .4 .4)} Face 15954 6808 6698 14723 {rgb=(.7 .4 .4)} Face 15955 6698 6709 14723 {rgb=(.7 .4 .4)} Face 15956 6709 6819 14723 {rgb=(.7 .4 .4)} Face 15957 6559 6698 14724 {rgb=(.7 .4 .4)} Face 15958 6698 6678 14724 {rgb=(.7 .4 .4)} Face 15959 6678 6538 14724 {rgb=(.7 .4 .4)} Face 15960 6538 6559 14724 {rgb=(.7 .4 .4)} Face 15961 6585 6559 14725 {rgb=(.7 .4 .4)} Face 15962 6559 6375 14725 {rgb=(.7 .4 .4)} Face 15963 6375 6403 14725 {rgb=(.7 .4 .4)} Face 15964 6403 6585 14725 {rgb=(.7 .4 .4)} Face 15965 6348 6356 14726 {rgb=(.7 .4 .4)} Face 15966 6356 6538 14726 {rgb=(.7 .4 .4)} Face 15967 6538 6523 14726 {rgb=(.7 .4 .4)} Face 15968 6523 6348 14726 {rgb=(.7 .4 .4)} Face 15969 6467 6462 14727 {rgb=(.7 .4 .4)} Face 15970 6462 6226 14727 {rgb=(.7 .4 .4)} Face 15971 6226 6256 14727 {rgb=(.7 .4 .4)} Face 15972 6256 6467 14727 {rgb=(.7 .4 .4)} Face 15973 6242 6229 14728 {rgb=(.7 .4 .4)} Face 15974 6229 6472 14728 {rgb=(.7 .4 .4)} Face 15975 6472 6481 14728 {rgb=(.7 .4 .4)} Face 15976 6481 6242 14728 {rgb=(.7 .4 .4)} Face 15977 6666 6472 14729 {rgb=(.7 .4 .4)} Face 15978 6472 6462 14729 {rgb=(.7 .4 .4)} Face 15979 6462 6651 14729 {rgb=(.7 .4 .4)} Face 15980 6651 6666 14729 {rgb=(.7 .4 .4)} Face 15981 6501 6491 14730 {rgb=(.7 .4 .4)} Face 15982 6491 6295 14730 {rgb=(.7 .4 .4)} Face 15983 6295 6318 14730 {rgb=(.7 .4 .4)} Face 15984 6318 6501 14730 {rgb=(.7 .4 .4)} Face 15985 6647 6467 14731 {rgb=(.7 .4 .4)} Face 15986 6467 6491 14731 {rgb=(.7 .4 .4)} Face 15987 6491 6652 14731 {rgb=(.7 .4 .4)} Face 15988 6652 6647 14731 {rgb=(.7 .4 .4)} Face 15989 6787 6794 14732 {rgb=(.7 .4 .4)} Face 15990 6794 6651 14732 {rgb=(.7 .4 .4)} Face 15991 6651 6647 14732 {rgb=(.7 .4 .4)} Face 15992 6647 6787 14732 {rgb=(.7 .4 .4)} Face 15993 6671 6666 14733 {rgb=(.7 .4 .4)} Face 15994 6666 6804 14733 {rgb=(.7 .4 .4)} Face 15995 6804 6812 14733 {rgb=(.7 .4 .4)} Face 15996 6812 6671 14733 {rgb=(.7 .4 .4)} Face 15997 6975 6804 14734 {rgb=(.7 .4 .4)} Face 15998 6804 6794 14734 {rgb=(.7 .4 .4)} Face 15999 6794 6960 14734 {rgb=(.7 .4 .4)} Face 16000 6960 6975 14734 {rgb=(.7 .4 .4)} Face 16001 6788 6785 14735 {rgb=(.7 .4 .4)} Face 16002 6785 6652 14735 {rgb=(.7 .4 .4)} Face 16003 6652 6659 14735 {rgb=(.7 .4 .4)} Face 16004 6659 6788 14735 {rgb=(.7 .4 .4)} Face 16005 6943 6787 14736 {rgb=(.7 .4 .4)} Face 16006 6787 6785 14736 {rgb=(.7 .4 .4)} Face 16007 6785 6936 14736 {rgb=(.7 .4 .4)} Face 16008 6936 6943 14736 {rgb=(.7 .4 .4)} Face 16009 7084 7116 14737 {rgb=(.7 .4 .4)} Face 16010 7116 6960 14737 {rgb=(.7 .4 .4)} Face 16011 6960 6943 14737 {rgb=(.7 .4 .4)} Face 16012 6943 7084 14737 {rgb=(.7 .4 .4)} Face 16013 6988 6975 14738 {rgb=(.7 .4 .4)} Face 16014 6975 7155 14738 {rgb=(.7 .4 .4)} Face 16015 7155 7172 14738 {rgb=(.7 .4 .4)} Face 16016 7172 6988 14738 {rgb=(.7 .4 .4)} Face 16017 7393 7155 14739 {rgb=(.7 .4 .4)} Face 16018 7155 7116 14739 {rgb=(.7 .4 .4)} Face 16019 7116 7345 14739 {rgb=(.7 .4 .4)} Face 16020 7345 7393 14739 {rgb=(.7 .4 .4)} Face 16021 7058 7072 14740 {rgb=(.7 .4 .4)} Face 16022 7072 6936 14740 {rgb=(.7 .4 .4)} Face 16023 6936 6929 14740 {rgb=(.7 .4 .4)} Face 16024 6929 7058 14740 {rgb=(.7 .4 .4)} Face 16025 7311 7084 14741 {rgb=(.7 .4 .4)} Face 16026 7084 7072 14741 {rgb=(.7 .4 .4)} Face 16027 7072 7272 14741 {rgb=(.7 .4 .4)} Face 16028 7272 7311 14741 {rgb=(.7 .4 .4)} Face 16029 7532 7596 14742 {rgb=(.7 .4 .4)} Face 16030 7596 7345 14742 {rgb=(.7 .4 .4)} Face 16031 7345 7311 14742 {rgb=(.7 .4 .4)} Face 16032 7311 7532 14742 {rgb=(.7 .4 .4)} Face 16033 7415 7393 14743 {rgb=(.7 .4 .4)} Face 16034 7393 7633 14743 {rgb=(.7 .4 .4)} Face 16035 7633 7652 14743 {rgb=(.7 .4 .4)} Face 16036 7652 7415 14743 {rgb=(.7 .4 .4)} Face 16037 7841 7633 14744 {rgb=(.7 .4 .4)} Face 16038 7633 7596 14744 {rgb=(.7 .4 .4)} Face 16039 7596 7797 14744 {rgb=(.7 .4 .4)} Face 16040 7797 7841 14744 {rgb=(.7 .4 .4)} Face 16041 7434 7463 14745 {rgb=(.7 .4 .4)} Face 16042 7463 7272 14745 {rgb=(.7 .4 .4)} Face 16043 7272 7226 14745 {rgb=(.7 .4 .4)} Face 16044 7226 7434 14745 {rgb=(.7 .4 .4)} Face 16045 7721 7532 14746 {rgb=(.7 .4 .4)} Face 16046 7532 7463 14746 {rgb=(.7 .4 .4)} Face 16047 7463 7628 14746 {rgb=(.7 .4 .4)} Face 16048 7628 7721 14746 {rgb=(.7 .4 .4)} Face 16049 7856 7929 14747 {rgb=(.7 .4 .4)} Face 16050 7929 7797 14747 {rgb=(.7 .4 .4)} Face 16051 7797 7721 14747 {rgb=(.7 .4 .4)} Face 16052 7721 7856 14747 {rgb=(.7 .4 .4)} Face 16053 7894 7841 14748 {rgb=(.7 .4 .4)} Face 16054 7841 7995 14748 {rgb=(.7 .4 .4)} Face 16055 7995 8081 14748 {rgb=(.7 .4 .4)} Face 16056 8081 7894 14748 {rgb=(.7 .4 .4)} Face 16057 8187 7995 14749 {rgb=(.7 .4 .4)} Face 16058 7995 7929 14749 {rgb=(.7 .4 .4)} Face 16059 7929 8099 14749 {rgb=(.7 .4 .4)} Face 16060 8099 8187 14749 {rgb=(.7 .4 .4)} Face 16061 7708 7755 14750 {rgb=(.7 .4 .4)} Face 16062 7755 7628 14750 {rgb=(.7 .4 .4)} Face 16063 7628 7576 14750 {rgb=(.7 .4 .4)} Face 16064 7576 7708 14750 {rgb=(.7 .4 .4)} Face 16065 7977 7856 14751 {rgb=(.7 .4 .4)} Face 16066 7856 7755 14751 {rgb=(.7 .4 .4)} Face 16067 7755 7875 14751 {rgb=(.7 .4 .4)} Face 16068 7875 7977 14751 {rgb=(.7 .4 .4)} Face 16069 8147 8238 14752 {rgb=(.7 .4 .4)} Face 16070 8238 8099 14752 {rgb=(.7 .4 .4)} Face 16071 8099 7977 14752 {rgb=(.7 .4 .4)} Face 16072 7977 8147 14752 {rgb=(.7 .4 .4)} Face 16073 8225 8187 14753 {rgb=(.7 .4 .4)} Face 16074 8187 8309 14753 {rgb=(.7 .4 .4)} Face 16075 8309 8347 14753 {rgb=(.7 .4 .4)} Face 16076 8347 8225 14753 {rgb=(.7 .4 .4)} Face 16077 8391 8309 14754 {rgb=(.7 .4 .4)} Face 16078 8309 8238 14754 {rgb=(.7 .4 .4)} Face 16079 8238 8305 14754 {rgb=(.7 .4 .4)} Face 16080 8305 8391 14754 {rgb=(.7 .4 .4)} Face 16081 7932 7994 14755 {rgb=(.7 .4 .4)} Face 16082 7994 7875 14755 {rgb=(.7 .4 .4)} Face 16083 7875 7829 14755 {rgb=(.7 .4 .4)} Face 16084 7829 7932 14755 {rgb=(.7 .4 .4)} Face 16085 8212 8147 14756 {rgb=(.7 .4 .4)} Face 16086 8147 7994 14756 {rgb=(.7 .4 .4)} Face 16087 7994 8079 14756 {rgb=(.7 .4 .4)} Face 16088 8079 8212 14756 {rgb=(.7 .4 .4)} Face 16089 8221 8322 14757 {rgb=(.7 .4 .4)} Face 16090 8322 8305 14757 {rgb=(.7 .4 .4)} Face 16091 8305 8212 14757 {rgb=(.7 .4 .4)} Face 16092 8212 8221 14757 {rgb=(.7 .4 .4)} Face 16093 8429 8391 14758 {rgb=(.7 .4 .4)} Face 16094 8391 8426 14758 {rgb=(.7 .4 .4)} Face 16095 8426 8477 14758 {rgb=(.7 .4 .4)} Face 16096 8477 8429 14758 {rgb=(.7 .4 .4)} Face 16097 8469 8426 14759 {rgb=(.7 .4 .4)} Face 16098 8426 8322 14759 {rgb=(.7 .4 .4)} Face 16099 8322 8357 14759 {rgb=(.7 .4 .4)} Face 16100 8357 8469 14759 {rgb=(.7 .4 .4)} Face 16101 8013 8102 14760 {rgb=(.7 .4 .4)} Face 16102 8102 8079 14760 {rgb=(.7 .4 .4)} Face 16103 8079 8000 14760 {rgb=(.7 .4 .4)} Face 16104 8000 8013 14760 {rgb=(.7 .4 .4)} Face 16105 8242 8221 14761 {rgb=(.7 .4 .4)} Face 16106 8221 8102 14761 {rgb=(.7 .4 .4)} Face 16107 8102 8116 14761 {rgb=(.7 .4 .4)} Face 16108 8116 8242 14761 {rgb=(.7 .4 .4)} Face 16109 8518 8469 14762 {rgb=(.7 .4 .4)} Face 16110 8469 8503 14762 {rgb=(.7 .4 .4)} Face 16111 8503 8560 14762 {rgb=(.7 .4 .4)} Face 16112 8560 8518 14762 {rgb=(.7 .4 .4)} Face 16113 8523 8503 14763 {rgb=(.7 .4 .4)} Face 16114 8503 8357 14763 {rgb=(.7 .4 .4)} Face 16115 8357 8389 14763 {rgb=(.7 .4 .4)} Face 16116 8389 8523 14763 {rgb=(.7 .4 .4)} Face 16117 8389 8242 14764 {rgb=(.7 .4 .4)} Face 16118 8242 8296 14764 {rgb=(.7 .4 .4)} Face 16119 8296 8466 14764 {rgb=(.7 .4 .4)} Face 16120 8466 8389 14764 {rgb=(.7 .4 .4)} Face 16121 8324 8296 14765 {rgb=(.7 .4 .4)} Face 16122 8296 8133 14765 {rgb=(.7 .4 .4)} Face 16123 8133 8124 14765 {rgb=(.7 .4 .4)} Face 16124 8124 8324 14765 {rgb=(.7 .4 .4)} Face 16125 7993 8052 14766 {rgb=(.7 .4 .4)} Face 16126 8052 8116 14766 {rgb=(.7 .4 .4)} Face 16127 8116 8011 14766 {rgb=(.7 .4 .4)} Face 16128 8011 7993 14766 {rgb=(.7 .4 .4)} Face 16129 8605 8523 14767 {rgb=(.7 .4 .4)} Face 16130 8523 8604 14767 {rgb=(.7 .4 .4)} Face 16131 8604 8674 14767 {rgb=(.7 .4 .4)} Face 16132 8674 8605 14767 {rgb=(.7 .4 .4)} Face 16133 8680 8604 14768 {rgb=(.7 .4 .4)} Face 16134 8604 8466 14768 {rgb=(.7 .4 .4)} Face 16135 8466 8569 14768 {rgb=(.7 .4 .4)} Face 16136 8569 8680 14768 {rgb=(.7 .4 .4)} Face 16137 8161 8258 14769 {rgb=(.7 .4 .4)} Face 16138 8258 8064 14769 {rgb=(.7 .4 .4)} Face 16139 8064 7951 14769 {rgb=(.7 .4 .4)} Face 16140 7951 8161 14769 {rgb=(.7 .4 .4)} Face 16141 8464 8324 14770 {rgb=(.7 .4 .4)} Face 16142 8324 8258 14770 {rgb=(.7 .4 .4)} Face 16143 8258 8390 14770 {rgb=(.7 .4 .4)} Face 16144 8390 8464 14770 {rgb=(.7 .4 .4)} Face 16145 8279 8183 14771 {rgb=(.7 .4 .4)} Face 16146 8183 8043 14771 {rgb=(.7 .4 .4)} Face 16147 8043 8190 14771 {rgb=(.7 .4 .4)} Face 16148 8190 8279 14771 {rgb=(.7 .4 .4)} Face 16149 8170 8012 14772 {rgb=(.7 .4 .4)} Face 16150 8012 8183 14772 {rgb=(.7 .4 .4)} Face 16151 8183 8289 14772 {rgb=(.7 .4 .4)} Face 16152 8289 8170 14772 {rgb=(.7 .4 .4)} Face 16153 8208 8274 14773 {rgb=(.7 .4 .4)} Face 16154 8274 8190 14773 {rgb=(.7 .4 .4)} Face 16155 8190 8080 14773 {rgb=(.7 .4 .4)} Face 16156 8080 8208 14773 {rgb=(.7 .4 .4)} Face 16157 8373 8279 14774 {rgb=(.7 .4 .4)} Face 16158 8279 8358 14774 {rgb=(.7 .4 .4)} Face 16159 8358 8435 14774 {rgb=(.7 .4 .4)} Face 16160 8435 8373 14774 {rgb=(.7 .4 .4)} Face 16161 8475 8402 14775 {rgb=(.7 .4 .4)} Face 16162 8402 8289 14775 {rgb=(.7 .4 .4)} Face 16163 8289 8373 14775 {rgb=(.7 .4 .4)} Face 16164 8373 8475 14775 {rgb=(.7 .4 .4)} Face 16165 7967 8170 14776 {rgb=(.7 .4 .4)} Face 16166 8170 8288 14776 {rgb=(.7 .4 .4)} Face 16167 8288 8161 14776 {rgb=(.7 .4 .4)} Face 16168 8161 7967 14776 {rgb=(.7 .4 .4)} Face 16169 8390 8288 14777 {rgb=(.7 .4 .4)} Face 16170 8288 8402 14777 {rgb=(.7 .4 .4)} Face 16171 8402 8496 14777 {rgb=(.7 .4 .4)} Face 16172 8496 8390 14777 {rgb=(.7 .4 .4)} Face 16173 8575 8475 14778 {rgb=(.7 .4 .4)} Face 16174 8475 8517 14778 {rgb=(.7 .4 .4)} Face 16175 8517 8593 14778 {rgb=(.7 .4 .4)} Face 16176 8593 8575 14778 {rgb=(.7 .4 .4)} Face 16177 8661 8590 14779 {rgb=(.7 .4 .4)} Face 16178 8590 8496 14779 {rgb=(.7 .4 .4)} Face 16179 8496 8575 14779 {rgb=(.7 .4 .4)} Face 16180 8575 8661 14779 {rgb=(.7 .4 .4)} Face 16181 8569 8464 14780 {rgb=(.7 .4 .4)} Face 16182 8464 8590 14780 {rgb=(.7 .4 .4)} Face 16183 8590 8678 14780 {rgb=(.7 .4 .4)} Face 16184 8678 8569 14780 {rgb=(.7 .4 .4)} Face 16185 8743 8661 14781 {rgb=(.7 .4 .4)} Face 16186 8661 8657 14781 {rgb=(.7 .4 .4)} Face 16187 8657 8723 14781 {rgb=(.7 .4 .4)} Face 16188 8723 8743 14781 {rgb=(.7 .4 .4)} Face 16189 8787 8759 14782 {rgb=(.7 .4 .4)} Face 16190 8759 8678 14782 {rgb=(.7 .4 .4)} Face 16191 8678 8743 14782 {rgb=(.7 .4 .4)} Face 16192 8743 8787 14782 {rgb=(.7 .4 .4)} Face 16193 8741 8680 14783 {rgb=(.7 .4 .4)} Face 16194 8680 8759 14783 {rgb=(.7 .4 .4)} Face 16195 8759 8781 14783 {rgb=(.7 .4 .4)} Face 16196 8781 8741 14783 {rgb=(.7 .4 .4)} Face 16197 8663 8763 14784 {rgb=(.7 .4 .4)} Face 16198 8763 8723 14784 {rgb=(.7 .4 .4)} Face 16199 8723 8632 14784 {rgb=(.7 .4 .4)} Face 16200 8632 8663 14784 {rgb=(.7 .4 .4)} Face 16201 8788 8787 14785 {rgb=(.7 .4 .4)} Face 16202 8787 8763 14785 {rgb=(.7 .4 .4)} Face 16203 8763 8761 14785 {rgb=(.7 .4 .4)} Face 16204 8761 8788 14785 {rgb=(.7 .4 .4)} Face 16205 7878 7894 14786 {rgb=(.7 .4 .4)} Face 16206 7894 8110 14786 {rgb=(.7 .4 .4)} Face 16207 8110 8100 14786 {rgb=(.7 .4 .4)} Face 16208 8100 7878 14786 {rgb=(.7 .4 .4)} Face 16209 8239 8110 14787 {rgb=(.7 .4 .4)} Face 16210 8110 8081 14787 {rgb=(.7 .4 .4)} Face 16211 8081 8225 14787 {rgb=(.7 .4 .4)} Face 16212 8225 8239 14787 {rgb=(.7 .4 .4)} Face 16213 8422 8345 14788 {rgb=(.7 .4 .4)} Face 16214 8345 8347 14788 {rgb=(.7 .4 .4)} Face 16215 8347 8429 14788 {rgb=(.7 .4 .4)} Face 16216 8429 8422 14788 {rgb=(.7 .4 .4)} Face 16217 8259 8239 14789 {rgb=(.7 .4 .4)} Face 16218 8239 8345 14789 {rgb=(.7 .4 .4)} Face 16219 8345 8360 14789 {rgb=(.7 .4 .4)} Face 16220 8360 8259 14789 {rgb=(.7 .4 .4)} Face 16221 8513 8472 14790 {rgb=(.7 .4 .4)} Face 16222 8472 8477 14790 {rgb=(.7 .4 .4)} Face 16223 8477 8518 14790 {rgb=(.7 .4 .4)} Face 16224 8518 8513 14790 {rgb=(.7 .4 .4)} Face 16225 8434 8422 14791 {rgb=(.7 .4 .4)} Face 16226 8422 8472 14791 {rgb=(.7 .4 .4)} Face 16227 8472 8493 14791 {rgb=(.7 .4 .4)} Face 16228 8493 8434 14791 {rgb=(.7 .4 .4)} Face 16229 8592 8550 14792 {rgb=(.7 .4 .4)} Face 16230 8550 8560 14792 {rgb=(.7 .4 .4)} Face 16231 8560 8605 14792 {rgb=(.7 .4 .4)} Face 16232 8605 8592 14792 {rgb=(.7 .4 .4)} Face 16233 8544 8513 14793 {rgb=(.7 .4 .4)} Face 16234 8513 8550 14793 {rgb=(.7 .4 .4)} Face 16235 8550 8574 14793 {rgb=(.7 .4 .4)} Face 16236 8574 8544 14793 {rgb=(.7 .4 .4)} Face 16237 8700 8649 14794 {rgb=(.7 .4 .4)} Face 16238 8649 8674 14794 {rgb=(.7 .4 .4)} Face 16239 8674 8741 14794 {rgb=(.7 .4 .4)} Face 16240 8741 8700 14794 {rgb=(.7 .4 .4)} Face 16241 8606 8592 14795 {rgb=(.7 .4 .4)} Face 16242 8592 8649 14795 {rgb=(.7 .4 .4)} Face 16243 8649 8652 14795 {rgb=(.7 .4 .4)} Face 16244 8652 8606 14795 {rgb=(.7 .4 .4)} Face 16245 8710 8700 14796 {rgb=(.7 .4 .4)} Face 16246 8700 8781 14796 {rgb=(.7 .4 .4)} Face 16247 8781 8788 14796 {rgb=(.7 .4 .4)} Face 16248 8788 8710 14796 {rgb=(.7 .4 .4)} Face 16249 8684 8710 14797 {rgb=(.7 .4 .4)} Face 16250 8710 8761 14797 {rgb=(.7 .4 .4)} Face 16251 8761 8696 14797 {rgb=(.7 .4 .4)} Face 16252 8696 8684 14797 {rgb=(.7 .4 .4)} Face 16253 8591 8633 14798 {rgb=(.7 .4 .4)} Face 16254 8633 8696 14798 {rgb=(.7 .4 .4)} Face 16255 8696 8663 14798 {rgb=(.7 .4 .4)} Face 16256 8663 8591 14798 {rgb=(.7 .4 .4)} Face 16257 8693 8684 14799 {rgb=(.7 .4 .4)} Face 16258 8684 8673 14799 {rgb=(.7 .4 .4)} Face 16259 8673 8731 14799 {rgb=(.7 .4 .4)} Face 16260 8731 8693 14799 {rgb=(.7 .4 .4)} Face 16261 8683 8673 14800 {rgb=(.7 .4 .4)} Face 16262 8673 8633 14800 {rgb=(.7 .4 .4)} Face 16263 8633 8609 14800 {rgb=(.7 .4 .4)} Face 16264 8609 8683 14800 {rgb=(.7 .4 .4)} Face 16265 8745 8708 14801 {rgb=(.7 .4 .4)} Face 16266 8708 8697 14801 {rgb=(.7 .4 .4)} Face 16267 8697 8755 14801 {rgb=(.7 .4 .4)} Face 16268 8755 8745 14801 {rgb=(.7 .4 .4)} Face 16269 8785 8697 14802 {rgb=(.7 .4 .4)} Face 16270 8697 8637 14802 {rgb=(.7 .4 .4)} Face 16271 8637 8772 14802 {rgb=(.7 .4 .4)} Face 16272 8772 8785 14802 {rgb=(.7 .4 .4)} Face 16273 8576 8637 14803 {rgb=(.7 .4 .4)} Face 16274 8637 8654 14803 {rgb=(.7 .4 .4)} Face 16275 8654 8608 14803 {rgb=(.7 .4 .4)} Face 16276 8608 8576 14803 {rgb=(.7 .4 .4)} Face 16277 8656 8654 14804 {rgb=(.7 .4 .4)} Face 16278 8654 8708 14804 {rgb=(.7 .4 .4)} Face 16279 8708 8707 14804 {rgb=(.7 .4 .4)} Face 16280 8707 8656 14804 {rgb=(.7 .4 .4)} Face 16281 8620 8576 14805 {rgb=(.7 .4 .4)} Face 16282 8576 8515 14805 {rgb=(.7 .4 .4)} Face 16283 8515 8563 14805 {rgb=(.7 .4 .4)} Face 16284 8563 8620 14805 {rgb=(.7 .4 .4)} Face 16285 8500 8515 14806 {rgb=(.7 .4 .4)} Face 16286 8515 8608 14806 {rgb=(.7 .4 .4)} Face 16287 8608 8585 14806 {rgb=(.7 .4 .4)} Face 16288 8585 8500 14806 {rgb=(.7 .4 .4)} Face 16289 7948 8065 14807 {rgb=(.7 .4 .4)} Face 16290 8065 8197 14807 {rgb=(.7 .4 .4)} Face 16291 8197 8123 14807 {rgb=(.7 .4 .4)} Face 16292 8123 7948 14807 {rgb=(.7 .4 .4)} Face 16293 8273 8197 14808 {rgb=(.7 .4 .4)} Face 16294 8197 8256 14808 {rgb=(.7 .4 .4)} Face 16295 8256 8317 14808 {rgb=(.7 .4 .4)} Face 16296 8317 8273 14808 {rgb=(.7 .4 .4)} Face 16297 8335 8256 14809 {rgb=(.7 .4 .4)} Face 16298 8256 8201 14809 {rgb=(.7 .4 .4)} Face 16299 8201 8304 14809 {rgb=(.7 .4 .4)} Face 16300 8304 8335 14809 {rgb=(.7 .4 .4)} Face 16301 8144 8201 14810 {rgb=(.7 .4 .4)} Face 16302 8201 8065 14810 {rgb=(.7 .4 .4)} Face 16303 8065 7966 14810 {rgb=(.7 .4 .4)} Face 16304 7966 8144 14810 {rgb=(.7 .4 .4)} Face 16305 8519 8557 14811 {rgb=(.7 .4 .4)} Face 16306 8557 8533 14811 {rgb=(.7 .4 .4)} Face 16307 8533 8473 14811 {rgb=(.7 .4 .4)} Face 16308 8473 8519 14811 {rgb=(.7 .4 .4)} Face 16309 8572 8591 14812 {rgb=(.7 .4 .4)} Face 16310 8591 8557 14812 {rgb=(.7 .4 .4)} Face 16311 8557 8552 14812 {rgb=(.7 .4 .4)} Face 16312 8552 8572 14812 {rgb=(.7 .4 .4)} Face 16313 8552 8519 14813 {rgb=(.7 .4 .4)} Face 16314 8519 8509 14813 {rgb=(.7 .4 .4)} Face 16315 8509 8558 14813 {rgb=(.7 .4 .4)} Face 16316 8558 8552 14813 {rgb=(.7 .4 .4)} Face 16317 8514 8509 14814 {rgb=(.7 .4 .4)} Face 16318 8509 8452 14814 {rgb=(.7 .4 .4)} Face 16319 8452 8444 14814 {rgb=(.7 .4 .4)} Face 16320 8444 8514 14814 {rgb=(.7 .4 .4)} Face 16321 8573 8514 14815 {rgb=(.7 .4 .4)} Face 16322 8514 8530 14815 {rgb=(.7 .4 .4)} Face 16323 8530 8597 14815 {rgb=(.7 .4 .4)} Face 16324 8597 8573 14815 {rgb=(.7 .4 .4)} Face 16325 8547 8530 14816 {rgb=(.7 .4 .4)} Face 16326 8530 8445 14816 {rgb=(.7 .4 .4)} Face 16327 8445 8454 14816 {rgb=(.7 .4 .4)} Face 16328 8454 8547 14816 {rgb=(.7 .4 .4)} Face 16329 8610 8547 14817 {rgb=(.7 .4 .4)} Face 16330 8547 8564 14817 {rgb=(.7 .4 .4)} Face 16331 8564 8612 14817 {rgb=(.7 .4 .4)} Face 16332 8612 8610 14817 {rgb=(.7 .4 .4)} Face 16333 8584 8564 14818 {rgb=(.7 .4 .4)} Face 16334 8564 8481 14818 {rgb=(.7 .4 .4)} Face 16335 8481 8505 14818 {rgb=(.7 .4 .4)} Face 16336 8505 8584 14818 {rgb=(.7 .4 .4)} Face 16337 8636 8584 14819 {rgb=(.7 .4 .4)} Face 16338 8584 8622 14819 {rgb=(.7 .4 .4)} Face 16339 8622 8672 14819 {rgb=(.7 .4 .4)} Face 16340 8672 8636 14819 {rgb=(.7 .4 .4)} Face 16341 8665 8622 14820 {rgb=(.7 .4 .4)} Face 16342 8622 8566 14820 {rgb=(.7 .4 .4)} Face 16343 8566 8619 14820 {rgb=(.7 .4 .4)} Face 16344 8619 8665 14820 {rgb=(.7 .4 .4)} Face 16345 8714 8665 14821 {rgb=(.7 .4 .4)} Face 16346 8665 8730 14821 {rgb=(.7 .4 .4)} Face 16347 8730 8747 14821 {rgb=(.7 .4 .4)} Face 16348 8747 8714 14821 {rgb=(.7 .4 .4)} Face 16349 8732 8730 14822 {rgb=(.7 .4 .4)} Face 16350 8730 8698 14822 {rgb=(.7 .4 .4)} Face 16351 8698 8695 14822 {rgb=(.7 .4 .4)} Face 16352 8695 8732 14822 {rgb=(.7 .4 .4)} Face 16353 8767 8732 14823 {rgb=(.7 .4 .4)} Face 16354 8732 8707 14823 {rgb=(.7 .4 .4)} Face 16355 8707 8745 14823 {rgb=(.7 .4 .4)} Face 16356 8745 8767 14823 {rgb=(.7 .4 .4)} Face 16357 8585 8656 14824 {rgb=(.7 .4 .4)} Face 16358 8656 8629 14824 {rgb=(.7 .4 .4)} Face 16359 8629 8535 14824 {rgb=(.7 .4 .4)} Face 16360 8535 8585 14824 {rgb=(.7 .4 .4)} Face 16361 8427 8500 14825 {rgb=(.7 .4 .4)} Face 16362 8500 8458 14825 {rgb=(.7 .4 .4)} Face 16363 8458 8376 14825 {rgb=(.7 .4 .4)} Face 16364 8376 8427 14825 {rgb=(.7 .4 .4)} Face 16365 8478 8427 14826 {rgb=(.7 .4 .4)} Face 16366 8427 8353 14826 {rgb=(.7 .4 .4)} Face 16367 8353 8420 14826 {rgb=(.7 .4 .4)} Face 16368 8420 8478 14826 {rgb=(.7 .4 .4)} Face 16369 8284 8353 14827 {rgb=(.7 .4 .4)} Face 16370 8353 8270 14827 {rgb=(.7 .4 .4)} Face 16371 8270 8205 14827 {rgb=(.7 .4 .4)} Face 16372 8205 8284 14827 {rgb=(.7 .4 .4)} Face 16373 8344 8284 14828 {rgb=(.7 .4 .4)} Face 16374 8284 8231 14828 {rgb=(.7 .4 .4)} Face 16375 8231 8273 14828 {rgb=(.7 .4 .4)} Face 16376 8273 8344 14828 {rgb=(.7 .4 .4)} Face 16377 8123 8231 14829 {rgb=(.7 .4 .4)} Face 16378 8231 8167 14829 {rgb=(.7 .4 .4)} Face 16379 8167 8010 14829 {rgb=(.7 .4 .4)} Face 16380 8010 8123 14829 {rgb=(.7 .4 .4)} Face 16381 7848 7948 14830 {rgb=(.7 .4 .4)} Face 16382 7948 7849 14830 {rgb=(.7 .4 .4)} Face 16383 7849 7702 14830 {rgb=(.7 .4 .4)} Face 16384 7702 7848 14830 {rgb=(.7 .4 .4)} Face 16385 8399 8413 14831 {rgb=(.7 .4 .4)} Face 16386 8413 8640 14831 {rgb=(.7 .4 .4)} Face 16387 8640 8630 14831 {rgb=(.7 .4 .4)} Face 16388 8630 8399 14831 {rgb=(.7 .4 .4)} Face 16389 8752 8640 14832 {rgb=(.7 .4 .4)} Face 16390 8640 8565 14832 {rgb=(.7 .4 .4)} Face 16391 8565 8666 14832 {rgb=(.7 .4 .4)} Face 16392 8666 8752 14832 {rgb=(.7 .4 .4)} Face 16393 8805 8752 14833 {rgb=(.7 .4 .4)} Face 16394 8752 8779 14833 {rgb=(.7 .4 .4)} Face 16395 8779 8809 14833 {rgb=(.7 .4 .4)} Face 16396 8809 8805 14833 {rgb=(.7 .4 .4)} Face 16397 8811 8779 14834 {rgb=(.7 .4 .4)} Face 16398 8779 8738 14834 {rgb=(.7 .4 .4)} Face 16399 8738 8806 14834 {rgb=(.7 .4 .4)} Face 16400 8806 8811 14834 {rgb=(.7 .4 .4)} Face 16401 8823 8811 14835 {rgb=(.7 .4 .4)} Face 16402 8811 8831 14835 {rgb=(.7 .4 .4)} Face 16403 8831 8835 14835 {rgb=(.7 .4 .4)} Face 16404 8835 8823 14835 {rgb=(.7 .4 .4)} Face 16405 8862 8831 14836 {rgb=(.7 .4 .4)} Face 16406 8831 8867 14836 {rgb=(.7 .4 .4)} Face 16407 8867 8887 14836 {rgb=(.7 .4 .4)} Face 16408 8887 8862 14836 {rgb=(.7 .4 .4)} Face 16409 8849 8862 14837 {rgb=(.7 .4 .4)} Face 16410 8862 8854 14837 {rgb=(.7 .4 .4)} Face 16411 8854 8847 14837 {rgb=(.7 .4 .4)} Face 16412 8847 8849 14837 {rgb=(.7 .4 .4)} Face 16413 8856 8854 14838 {rgb=(.7 .4 .4)} Face 16414 8854 8877 14838 {rgb=(.7 .4 .4)} Face 16415 8877 8851 14838 {rgb=(.7 .4 .4)} Face 16416 8851 8856 14838 {rgb=(.7 .4 .4)} Face 16417 8871 8856 14839 {rgb=(.7 .4 .4)} Face 16418 8856 8864 14839 {rgb=(.7 .4 .4)} Face 16419 8864 8896 14839 {rgb=(.7 .4 .4)} Face 16420 8896 8871 14839 {rgb=(.7 .4 .4)} Face 16421 8797 8864 14840 {rgb=(.7 .4 .4)} Face 16422 8864 8820 14840 {rgb=(.7 .4 .4)} Face 16423 8820 8724 14840 {rgb=(.7 .4 .4)} Face 16424 8724 8797 14840 {rgb=(.7 .4 .4)} Face 16425 8839 8797 14841 {rgb=(.7 .4 .4)} Face 16426 8797 8647 14841 {rgb=(.7 .4 .4)} Face 16427 8647 8721 14841 {rgb=(.7 .4 .4)} Face 16428 8721 8839 14841 {rgb=(.7 .4 .4)} Face 16429 8594 8647 14842 {rgb=(.7 .4 .4)} Face 16430 8647 8580 14842 {rgb=(.7 .4 .4)} Face 16431 8580 8521 14842 {rgb=(.7 .4 .4)} Face 16432 8521 8594 14842 {rgb=(.7 .4 .4)} Face 16433 8645 8594 14843 {rgb=(.7 .4 .4)} Face 16434 8594 8601 14843 {rgb=(.7 .4 .4)} Face 16435 8601 8644 14843 {rgb=(.7 .4 .4)} Face 16436 8644 8645 14843 {rgb=(.7 .4 .4)} Face 16437 8607 8601 14844 {rgb=(.7 .4 .4)} Face 16438 8601 8525 14844 {rgb=(.7 .4 .4)} Face 16439 8525 8544 14844 {rgb=(.7 .4 .4)} Face 16440 8544 8607 14844 {rgb=(.7 .4 .4)} Face 16441 8644 8607 14845 {rgb=(.7 .4 .4)} Face 16442 8607 8618 14845 {rgb=(.7 .4 .4)} Face 16443 8618 8650 14845 {rgb=(.7 .4 .4)} Face 16444 8650 8644 14845 {rgb=(.7 .4 .4)} Face 16445 8642 8618 14846 {rgb=(.7 .4 .4)} Face 16446 8618 8574 14846 {rgb=(.7 .4 .4)} Face 16447 8574 8606 14846 {rgb=(.7 .4 .4)} Face 16448 8606 8642 14846 {rgb=(.7 .4 .4)} Face 16449 8675 8642 14847 {rgb=(.7 .4 .4)} Face 16450 8642 8682 14847 {rgb=(.7 .4 .4)} Face 16451 8682 8728 14847 {rgb=(.7 .4 .4)} Face 16452 8728 8675 14847 {rgb=(.7 .4 .4)} Face 16453 8734 8682 14848 {rgb=(.7 .4 .4)} Face 16454 8682 8652 14848 {rgb=(.7 .4 .4)} Face 16455 8652 8693 14848 {rgb=(.7 .4 .4)} Face 16456 8693 8734 14848 {rgb=(.7 .4 .4)} Face 16457 8773 8734 14849 {rgb=(.7 .4 .4)} Face 16458 8734 8775 14849 {rgb=(.7 .4 .4)} Face 16459 8775 8818 14849 {rgb=(.7 .4 .4)} Face 16460 8818 8773 14849 {rgb=(.7 .4 .4)} Face 16461 8813 8775 14850 {rgb=(.7 .4 .4)} Face 16462 8775 8731 14850 {rgb=(.7 .4 .4)} Face 16463 8731 8764 14850 {rgb=(.7 .4 .4)} Face 16464 8764 8813 14850 {rgb=(.7 .4 .4)} Face 16465 7439 7460 14851 {rgb=(.7 .4 .4)} Face 16466 7460 7579 14851 {rgb=(.7 .4 .4)} Face 16467 7579 7521 14851 {rgb=(.7 .4 .4)} Face 16468 7521 7439 14851 {rgb=(.7 .4 .4)} Face 16469 7654 7579 14852 {rgb=(.7 .4 .4)} Face 16470 7579 7664 14852 {rgb=(.7 .4 .4)} Face 16471 7664 7788 14852 {rgb=(.7 .4 .4)} Face 16472 7788 7654 14852 {rgb=(.7 .4 .4)} Face 16473 7582 7654 14853 {rgb=(.7 .4 .4)} Face 16474 7654 7670 14853 {rgb=(.7 .4 .4)} Face 16475 7670 7593 14853 {rgb=(.7 .4 .4)} Face 16476 7593 7582 14853 {rgb=(.7 .4 .4)} Face 16477 6001 5971 14854 {rgb=(.7 .4 .4)} Face 16478 5971 6091 14854 {rgb=(.7 .4 .4)} Face 16479 6091 6116 14854 {rgb=(.7 .4 .4)} Face 16480 6116 6001 14854 {rgb=(.7 .4 .4)} Face 16481 6148 6091 14855 {rgb=(.7 .4 .4)} Face 16482 6091 5997 14855 {rgb=(.7 .4 .4)} Face 16483 5997 6049 14855 {rgb=(.7 .4 .4)} Face 16484 6049 6148 14855 {rgb=(.7 .4 .4)} Face 16485 5942 5997 14856 {rgb=(.7 .4 .4)} Face 16486 5997 5971 14856 {rgb=(.7 .4 .4)} Face 16487 5971 5914 14856 {rgb=(.7 .4 .4)} Face 16488 5914 5942 14856 {rgb=(.7 .4 .4)} Face 16489 6731 6925 14857 {rgb=(.7 .4 .4)} Face 16490 6925 7022 14857 {rgb=(.7 .4 .4)} Face 16491 7022 6840 14857 {rgb=(.7 .4 .4)} Face 16492 6840 6731 14857 {rgb=(.7 .4 .4)} Face 16493 6970 7022 14858 {rgb=(.7 .4 .4)} Face 16494 7022 7169 14858 {rgb=(.7 .4 .4)} Face 16495 7169 7101 14858 {rgb=(.7 .4 .4)} Face 16496 7101 6970 14858 {rgb=(.7 .4 .4)} Face 16497 7264 7169 14859 {rgb=(.7 .4 .4)} Face 16498 7169 7348 14859 {rgb=(.7 .4 .4)} Face 16499 7348 7406 14859 {rgb=(.7 .4 .4)} Face 16500 7406 7264 14859 {rgb=(.7 .4 .4)} Face 16501 7522 7348 14860 {rgb=(.7 .4 .4)} Face 16502 7348 7467 14860 {rgb=(.7 .4 .4)} Face 16503 7467 7648 14860 {rgb=(.7 .4 .4)} Face 16504 7648 7522 14860 {rgb=(.7 .4 .4)} Face 16505 7728 7467 14861 {rgb=(.7 .4 .4)} Face 16506 7467 7504 14861 {rgb=(.7 .4 .4)} Face 16507 7504 7763 14861 {rgb=(.7 .4 .4)} Face 16508 7763 7728 14861 {rgb=(.7 .4 .4)} Face 16509 7784 7504 14862 {rgb=(.7 .4 .4)} Face 16510 7504 7498 14862 {rgb=(.7 .4 .4)} Face 16511 7498 7799 14862 {rgb=(.7 .4 .4)} Face 16512 7799 7784 14862 {rgb=(.7 .4 .4)} Face 16513 7764 7498 14863 {rgb=(.7 .4 .4)} Face 16514 7498 7418 14863 {rgb=(.7 .4 .4)} Face 16515 7418 7678 14863 {rgb=(.7 .4 .4)} Face 16516 7678 7764 14863 {rgb=(.7 .4 .4)} Face 16517 7586 7418 14864 {rgb=(.7 .4 .4)} Face 16518 7418 7288 14864 {rgb=(.7 .4 .4)} Face 16519 7288 7479 14864 {rgb=(.7 .4 .4)} Face 16520 7479 7586 14864 {rgb=(.7 .4 .4)} Face 16521 7319 7288 14865 {rgb=(.7 .4 .4)} Face 16522 7288 7067 14865 {rgb=(.7 .4 .4)} Face 16523 7067 7059 14865 {rgb=(.7 .4 .4)} Face 16524 7059 7319 14865 {rgb=(.7 .4 .4)} Face 16525 6838 7067 14866 {rgb=(.7 .4 .4)} Face 16526 7067 6897 14866 {rgb=(.7 .4 .4)} Face 16527 6897 6603 14866 {rgb=(.7 .4 .4)} Face 16528 6603 6838 14866 {rgb=(.7 .4 .4)} Face 16529 6414 6897 14867 {rgb=(.7 .4 .4)} Face 16530 6897 6858 14867 {rgb=(.7 .4 .4)} Face 16531 6858 6389 14867 {rgb=(.7 .4 .4)} Face 16532 6389 6414 14867 {rgb=(.7 .4 .4)} Face 16533 6477 6858 14868 {rgb=(.7 .4 .4)} Face 16534 6858 6925 14868 {rgb=(.7 .4 .4)} Face 16535 6925 6619 14868 {rgb=(.7 .4 .4)} Face 16536 6619 6477 14868 {rgb=(.7 .4 .4)} Face 16537 6894 6889 14869 {rgb=(.7 .4 .4)} Face 16538 6889 6545 14869 {rgb=(.7 .4 .4)} Face 16539 6545 6529 14869 {rgb=(.7 .4 .4)} Face 16540 6529 6894 14869 {rgb=(.7 .4 .4)} Face 16541 6569 6554 14870 {rgb=(.7 .4 .4)} Face 16542 6554 6871 14870 {rgb=(.7 .4 .4)} Face 16543 6871 6855 14870 {rgb=(.7 .4 .4)} Face 16544 6855 6569 14870 {rgb=(.7 .4 .4)} Face 16545 7820 7814 14871 {rgb=(.7 .4 .4)} Face 16546 7814 7906 14871 {rgb=(.7 .4 .4)} Face 16547 7906 7915 14871 {rgb=(.7 .4 .4)} Face 16548 7915 7820 14871 {rgb=(.7 .4 .4)} Face 16549 7846 7883 14872 {rgb=(.7 .4 .4)} Face 16550 7883 7806 14872 {rgb=(.7 .4 .4)} Face 16551 7806 7785 14872 {rgb=(.7 .4 .4)} Face 16552 7785 7846 14872 {rgb=(.7 .4 .4)} Face 16553 7059 6838 14873 {rgb=(.7 .4 .4)} Face 16554 6838 6839 14873 {rgb=(.7 .4 .4)} Face 16555 6839 7056 14873 {rgb=(.7 .4 .4)} Face 16556 7056 7059 14873 {rgb=(.7 .4 .4)} Face 16557 6415 6604 14874 {rgb=(.7 .4 .4)} Face 16558 6604 6603 14874 {rgb=(.7 .4 .4)} Face 16559 6603 6414 14874 {rgb=(.7 .4 .4)} Face 16560 6414 6415 14874 {rgb=(.7 .4 .4)} Face 16561 6478 6390 14875 {rgb=(.7 .4 .4)} Face 16562 6390 6389 14875 {rgb=(.7 .4 .4)} Face 16563 6389 6477 14875 {rgb=(.7 .4 .4)} Face 16564 6477 6478 14875 {rgb=(.7 .4 .4)} Face 16565 6732 6620 14876 {rgb=(.7 .4 .4)} Face 16566 6620 6619 14876 {rgb=(.7 .4 .4)} Face 16567 6619 6731 14876 {rgb=(.7 .4 .4)} Face 16568 6731 6732 14876 {rgb=(.7 .4 .4)} Face 16569 6968 6841 14877 {rgb=(.7 .4 .4)} Face 16570 6841 6840 14877 {rgb=(.7 .4 .4)} Face 16571 6840 6970 14877 {rgb=(.7 .4 .4)} Face 16572 6970 6968 14877 {rgb=(.7 .4 .4)} Face 16573 7256 7099 14878 {rgb=(.7 .4 .4)} Face 16574 7099 7101 14878 {rgb=(.7 .4 .4)} Face 16575 7101 7264 14878 {rgb=(.7 .4 .4)} Face 16576 7264 7256 14878 {rgb=(.7 .4 .4)} Face 16577 7517 7401 14879 {rgb=(.7 .4 .4)} Face 16578 7401 7406 14879 {rgb=(.7 .4 .4)} Face 16579 7406 7522 14879 {rgb=(.7 .4 .4)} Face 16580 7522 7517 14879 {rgb=(.7 .4 .4)} Face 16581 7723 7644 14880 {rgb=(.7 .4 .4)} Face 16582 7644 7648 14880 {rgb=(.7 .4 .4)} Face 16583 7648 7728 14880 {rgb=(.7 .4 .4)} Face 16584 7728 7723 14880 {rgb=(.7 .4 .4)} Face 16585 7783 7759 14881 {rgb=(.7 .4 .4)} Face 16586 7759 7763 14881 {rgb=(.7 .4 .4)} Face 16587 7763 7784 14881 {rgb=(.7 .4 .4)} Face 16588 7784 7783 14881 {rgb=(.7 .4 .4)} Face 16589 7762 7798 14882 {rgb=(.7 .4 .4)} Face 16590 7798 7799 14882 {rgb=(.7 .4 .4)} Face 16591 7799 7764 14882 {rgb=(.7 .4 .4)} Face 16592 7764 7762 14882 {rgb=(.7 .4 .4)} Face 16593 7581 7671 14883 {rgb=(.7 .4 .4)} Face 16594 7671 7678 14883 {rgb=(.7 .4 .4)} Face 16595 7678 7586 14883 {rgb=(.7 .4 .4)} Face 16596 7586 7581 14883 {rgb=(.7 .4 .4)} Face 16597 7316 7477 14884 {rgb=(.7 .4 .4)} Face 16598 7477 7479 14884 {rgb=(.7 .4 .4)} Face 16599 7479 7319 14884 {rgb=(.7 .4 .4)} Face 16600 7319 7316 14884 {rgb=(.7 .4 .4)} Face 16601 6827 6962 14885 {rgb=(.7 .4 .4)} Face 16602 6962 6961 14885 {rgb=(.7 .4 .4)} Face 16603 6961 6819 14885 {rgb=(.7 .4 .4)} Face 16604 6819 6827 14885 {rgb=(.7 .4 .4)} Face 16605 6601 6723 14886 {rgb=(.7 .4 .4)} Face 16606 6723 6709 14886 {rgb=(.7 .4 .4)} Face 16607 6709 6585 14886 {rgb=(.7 .4 .4)} Face 16608 6585 6601 14886 {rgb=(.7 .4 .4)} Face 16609 6361 6440 14887 {rgb=(.7 .4 .4)} Face 16610 6440 6403 14887 {rgb=(.7 .4 .4)} Face 16611 6403 6327 14887 {rgb=(.7 .4 .4)} Face 16612 6327 6361 14887 {rgb=(.7 .4 .4)} Face 16613 6590 6372 14888 {rgb=(.7 .4 .4)} Face 16614 6372 6344 14888 {rgb=(.7 .4 .4)} Face 16615 6344 6569 14888 {rgb=(.7 .4 .4)} Face 16616 6569 6590 14888 {rgb=(.7 .4 .4)} Face 16617 7077 6846 14889 {rgb=(.7 .4 .4)} Face 16618 6846 6855 14889 {rgb=(.7 .4 .4)} Face 16619 6855 7107 14889 {rgb=(.7 .4 .4)} Face 16620 7107 7077 14889 {rgb=(.7 .4 .4)} Face 16621 7511 7339 14890 {rgb=(.7 .4 .4)} Face 16622 7339 7384 14890 {rgb=(.7 .4 .4)} Face 16623 7384 7559 14890 {rgb=(.7 .4 .4)} Face 16624 7559 7511 14890 {rgb=(.7 .4 .4)} Face 16625 7730 7635 14891 {rgb=(.7 .4 .4)} Face 16626 7635 7707 14891 {rgb=(.7 .4 .4)} Face 16627 7707 7804 14891 {rgb=(.7 .4 .4)} Face 16628 7804 7730 14891 {rgb=(.7 .4 .4)} Face 16629 7840 7807 14892 {rgb=(.7 .4 .4)} Face 16630 7807 7861 14892 {rgb=(.7 .4 .4)} Face 16631 7861 7886 14892 {rgb=(.7 .4 .4)} Face 16632 7886 7840 14892 {rgb=(.7 .4 .4)} Face 16633 7795 7827 14893 {rgb=(.7 .4 .4)} Face 16634 7827 7879 14893 {rgb=(.7 .4 .4)} Face 16635 7879 7846 14893 {rgb=(.7 .4 .4)} Face 16636 7846 7795 14893 {rgb=(.7 .4 .4)} Face 16637 7662 7752 14894 {rgb=(.7 .4 .4)} Face 16638 7752 7785 14894 {rgb=(.7 .4 .4)} Face 16639 7785 7683 14894 {rgb=(.7 .4 .4)} Face 16640 7683 7662 14894 {rgb=(.7 .4 .4)} Face 16641 7224 7236 14895 {rgb=(.7 .4 .4)} Face 16642 7236 7427 14895 {rgb=(.7 .4 .4)} Face 16643 7427 7425 14895 {rgb=(.7 .4 .4)} Face 16644 7425 7224 14895 {rgb=(.7 .4 .4)} Face 16645 6318 6239 14896 {rgb=(.7 .4 .4)} Face 16646 6239 6248 14896 {rgb=(.7 .4 .4)} Face 16647 6248 6323 14896 {rgb=(.7 .4 .4)} Face 16648 6323 6318 14896 {rgb=(.7 .4 .4)} Face 16649 6258 6248 14897 {rgb=(.7 .4 .4)} Face 16650 6248 6247 14897 {rgb=(.7 .4 .4)} Face 16651 6247 6257 14897 {rgb=(.7 .4 .4)} Face 16652 6257 6258 14897 {rgb=(.7 .4 .4)} Face 16653 6336 6258 14898 {rgb=(.7 .4 .4)} Face 16654 6258 6264 14898 {rgb=(.7 .4 .4)} Face 16655 6264 6348 14898 {rgb=(.7 .4 .4)} Face 16656 6348 6336 14898 {rgb=(.7 .4 .4)} Face 16657 7915 7976 14899 {rgb=(.7 .4 .4)} Face 16658 7976 7980 14899 {rgb=(.7 .4 .4)} Face 16659 7980 7918 14899 {rgb=(.7 .4 .4)} Face 16660 7918 7915 14899 {rgb=(.7 .4 .4)} Face 16661 7988 7980 14900 {rgb=(.7 .4 .4)} Face 16662 7980 7982 14900 {rgb=(.7 .4 .4)} Face 16663 7982 7993 14900 {rgb=(.7 .4 .4)} Face 16664 7993 7988 14900 {rgb=(.7 .4 .4)} Face 16665 7990 7988 14901 {rgb=(.7 .4 .4)} Face 16666 7988 8011 14901 {rgb=(.7 .4 .4)} Face 16667 8011 8013 14901 {rgb=(.7 .4 .4)} Face 16668 8013 7990 14901 {rgb=(.7 .4 .4)} Face 16669 7923 7990 14902 {rgb=(.7 .4 .4)} Face 16670 7990 8000 14902 {rgb=(.7 .4 .4)} Face 16671 8000 7932 14902 {rgb=(.7 .4 .4)} Face 16672 7932 7923 14902 {rgb=(.7 .4 .4)} Face 16673 6659 6501 14903 {rgb=(.7 .4 .4)} Face 16674 6501 6505 14903 {rgb=(.7 .4 .4)} Face 16675 6505 6664 14903 {rgb=(.7 .4 .4)} Face 16676 6664 6659 14903 {rgb=(.7 .4 .4)} Face 16677 6515 6505 14904 {rgb=(.7 .4 .4)} Face 16678 6505 6323 14904 {rgb=(.7 .4 .4)} Face 16679 6323 6336 14904 {rgb=(.7 .4 .4)} Face 16680 6336 6515 14904 {rgb=(.7 .4 .4)} Face 16681 6668 6515 14905 {rgb=(.7 .4 .4)} Face 16682 6515 6523 14905 {rgb=(.7 .4 .4)} Face 16683 6523 6670 14905 {rgb=(.7 .4 .4)} Face 16684 6670 6668 14905 {rgb=(.7 .4 .4)} Face 16685 6929 6788 14906 {rgb=(.7 .4 .4)} Face 16686 6788 6790 14906 {rgb=(.7 .4 .4)} Face 16687 6790 6930 14906 {rgb=(.7 .4 .4)} Face 16688 6930 6929 14906 {rgb=(.7 .4 .4)} Face 16689 6792 6790 14907 {rgb=(.7 .4 .4)} Face 16690 6790 6664 14907 {rgb=(.7 .4 .4)} Face 16691 6664 6668 14907 {rgb=(.7 .4 .4)} Face 16692 6668 6792 14907 {rgb=(.7 .4 .4)} Face 16693 6934 6792 14908 {rgb=(.7 .4 .4)} Face 16694 6792 6797 14908 {rgb=(.7 .4 .4)} Face 16695 6797 6939 14908 {rgb=(.7 .4 .4)} Face 16696 6939 6934 14908 {rgb=(.7 .4 .4)} Face 16697 7226 7058 14909 {rgb=(.7 .4 .4)} Face 16698 7058 7053 14909 {rgb=(.7 .4 .4)} Face 16699 7053 7221 14909 {rgb=(.7 .4 .4)} Face 16700 7221 7226 14909 {rgb=(.7 .4 .4)} Face 16701 7055 7053 14910 {rgb=(.7 .4 .4)} Face 16702 7053 6930 14910 {rgb=(.7 .4 .4)} Face 16703 6930 6934 14910 {rgb=(.7 .4 .4)} Face 16704 6934 7055 14910 {rgb=(.7 .4 .4)} Face 16705 7216 7055 14911 {rgb=(.7 .4 .4)} Face 16706 7055 7062 14911 {rgb=(.7 .4 .4)} Face 16707 7062 7224 14911 {rgb=(.7 .4 .4)} Face 16708 7224 7216 14911 {rgb=(.7 .4 .4)} Face 16709 7576 7434 14912 {rgb=(.7 .4 .4)} Face 16710 7434 7430 14912 {rgb=(.7 .4 .4)} Face 16711 7430 7573 14912 {rgb=(.7 .4 .4)} Face 16712 7573 7576 14912 {rgb=(.7 .4 .4)} Face 16713 7428 7430 14913 {rgb=(.7 .4 .4)} Face 16714 7430 7221 14913 {rgb=(.7 .4 .4)} Face 16715 7221 7216 14913 {rgb=(.7 .4 .4)} Face 16716 7216 7428 14913 {rgb=(.7 .4 .4)} Face 16717 7570 7428 14914 {rgb=(.7 .4 .4)} Face 16718 7428 7425 14914 {rgb=(.7 .4 .4)} Face 16719 7425 7568 14914 {rgb=(.7 .4 .4)} Face 16720 7568 7570 14914 {rgb=(.7 .4 .4)} Face 16721 7829 7708 14915 {rgb=(.7 .4 .4)} Face 16722 7708 7700 14915 {rgb=(.7 .4 .4)} Face 16723 7700 7823 14915 {rgb=(.7 .4 .4)} Face 16724 7823 7829 14915 {rgb=(.7 .4 .4)} Face 16725 7693 7700 14916 {rgb=(.7 .4 .4)} Face 16726 7700 7573 14916 {rgb=(.7 .4 .4)} Face 16727 7573 7570 14916 {rgb=(.7 .4 .4)} Face 16728 7570 7693 14916 {rgb=(.7 .4 .4)} Face 16729 7817 7693 14917 {rgb=(.7 .4 .4)} Face 16730 7693 7695 14917 {rgb=(.7 .4 .4)} Face 16731 7695 7820 14917 {rgb=(.7 .4 .4)} Face 16732 7820 7817 14917 {rgb=(.7 .4 .4)} Face 16733 7918 7923 14918 {rgb=(.7 .4 .4)} Face 16734 7923 7823 14918 {rgb=(.7 .4 .4)} Face 16735 7823 7817 14918 {rgb=(.7 .4 .4)} Face 16736 7817 7918 14918 {rgb=(.7 .4 .4)} Face 16737 8493 8484 14919 {rgb=(.7 .4 .4)} Face 16738 8484 8527 14919 {rgb=(.7 .4 .4)} Face 16739 8527 8538 14919 {rgb=(.7 .4 .4)} Face 16740 8538 8493 14919 {rgb=(.7 .4 .4)} Face 16741 6000 6048 14920 {rgb=(.7 .4 .4)} Face 16742 6048 6013 14920 {rgb=(.7 .4 .4)} Face 16743 6013 5962 14920 {rgb=(.7 .4 .4)} Face 16744 5962 6000 14920 {rgb=(.7 .4 .4)} Face 16745 5901 5907 14921 {rgb=(.7 .4 .4)} Face 16746 5907 5829 14921 {rgb=(.7 .4 .4)} Face 16747 5829 5822 14921 {rgb=(.7 .4 .4)} Face 16748 5822 5901 14921 {rgb=(.7 .4 .4)} Face 16749 5872 5856 14922 {rgb=(.7 .4 .4)} Face 16750 5856 5907 14922 {rgb=(.7 .4 .4)} Face 16751 5907 5942 14922 {rgb=(.7 .4 .4)} Face 16752 5942 5872 14922 {rgb=(.7 .4 .4)} Face 16753 5943 5901 14923 {rgb=(.7 .4 .4)} Face 16754 5901 5839 14923 {rgb=(.7 .4 .4)} Face 16755 5839 5865 14923 {rgb=(.7 .4 .4)} Face 16756 5865 5943 14923 {rgb=(.7 .4 .4)} Face 16757 6025 5943 14924 {rgb=(.7 .4 .4)} Face 16758 5943 5946 14924 {rgb=(.7 .4 .4)} Face 16759 5946 6031 14924 {rgb=(.7 .4 .4)} Face 16760 6031 6025 14924 {rgb=(.7 .4 .4)} Face 16761 6067 6025 14925 {rgb=(.7 .4 .4)} Face 16762 6025 6183 14925 {rgb=(.7 .4 .4)} Face 16763 6183 6262 14925 {rgb=(.7 .4 .4)} Face 16764 6262 6067 14925 {rgb=(.7 .4 .4)} Face 16765 5910 6001 14926 {rgb=(.7 .4 .4)} Face 16766 6001 6027 14926 {rgb=(.7 .4 .4)} Face 16767 6027 5937 14926 {rgb=(.7 .4 .4)} Face 16768 5937 5910 14926 {rgb=(.7 .4 .4)} Face 16769 6053 6027 14927 {rgb=(.7 .4 .4)} Face 16770 6027 6151 14927 {rgb=(.7 .4 .4)} Face 16771 6151 6177 14927 {rgb=(.7 .4 .4)} Face 16772 6177 6053 14927 {rgb=(.7 .4 .4)} Face 16773 6263 6151 14928 {rgb=(.7 .4 .4)} Face 16774 6151 6116 14928 {rgb=(.7 .4 .4)} Face 16775 6116 6207 14928 {rgb=(.7 .4 .4)} Face 16776 6207 6263 14928 {rgb=(.7 .4 .4)} Face 16777 6281 6308 14929 {rgb=(.7 .4 .4)} Face 16778 6308 6349 14929 {rgb=(.7 .4 .4)} Face 16779 6349 6312 14929 {rgb=(.7 .4 .4)} Face 16780 6312 6281 14929 {rgb=(.7 .4 .4)} Face 16781 6368 6349 14930 {rgb=(.7 .4 .4)} Face 16782 6349 6325 14930 {rgb=(.7 .4 .4)} Face 16783 6325 6359 14930 {rgb=(.7 .4 .4)} Face 16784 6359 6368 14930 {rgb=(.7 .4 .4)} Face 16785 6262 6325 14931 {rgb=(.7 .4 .4)} Face 16786 6325 6308 14931 {rgb=(.7 .4 .4)} Face 16787 6308 6240 14931 {rgb=(.7 .4 .4)} Face 16788 6240 6262 14931 {rgb=(.7 .4 .4)} Face 16789 6049 6067 14932 {rgb=(.7 .4 .4)} Face 16790 6067 6240 14932 {rgb=(.7 .4 .4)} Face 16791 6240 6202 14932 {rgb=(.7 .4 .4)} Face 16792 6202 6049 14932 {rgb=(.7 .4 .4)} Face 16793 6207 6148 14933 {rgb=(.7 .4 .4)} Face 16794 6148 6202 14933 {rgb=(.7 .4 .4)} Face 16795 6202 6281 14933 {rgb=(.7 .4 .4)} Face 16796 6281 6207 14933 {rgb=(.7 .4 .4)} Face 16797 6296 6263 14934 {rgb=(.7 .4 .4)} Face 16798 6263 6312 14934 {rgb=(.7 .4 .4)} Face 16799 6312 6354 14934 {rgb=(.7 .4 .4)} Face 16800 6354 6296 14934 {rgb=(.7 .4 .4)} Face 16801 5914 5910 14935 {rgb=(.7 .4 .4)} Face 16802 5910 5870 14935 {rgb=(.7 .4 .4)} Face 16803 5870 5872 14935 {rgb=(.7 .4 .4)} Face 16804 5872 5914 14935 {rgb=(.7 .4 .4)} Face 16805 5889 5878 14936 {rgb=(.7 .4 .4)} Face 16806 5878 5937 14936 {rgb=(.7 .4 .4)} Face 16807 5937 5958 14936 {rgb=(.7 .4 .4)} Face 16808 5958 5889 14936 {rgb=(.7 .4 .4)} Face 16809 6455 6444 14937 {rgb=(.7 .4 .4)} Face 16810 6444 6485 14937 {rgb=(.7 .4 .4)} Face 16811 6485 6473 14937 {rgb=(.7 .4 .4)} Face 16812 6473 6455 14937 {rgb=(.7 .4 .4)} Face 16813 6528 6509 14938 {rgb=(.7 .4 .4)} Face 16814 6509 6441 14938 {rgb=(.7 .4 .4)} Face 16815 6441 6442 14938 {rgb=(.7 .4 .4)} Face 16816 6442 6528 14938 {rgb=(.7 .4 .4)} Face 16817 6364 6441 14939 {rgb=(.7 .4 .4)} Face 16818 6441 6444 14939 {rgb=(.7 .4 .4)} Face 16819 6444 6378 14939 {rgb=(.7 .4 .4)} Face 16820 6378 6364 14939 {rgb=(.7 .4 .4)} Face 16821 5873 5758 14940 {rgb=(.7 .4 .4)} Face 16822 5758 5766 14940 {rgb=(.7 .4 .4)} Face 16823 5766 5885 14940 {rgb=(.7 .4 .4)} Face 16824 5885 5873 14940 {rgb=(.7 .4 .4)} Face 16825 6022 5947 14941 {rgb=(.7 .4 .4)} Face 16826 5947 5970 14941 {rgb=(.7 .4 .4)} Face 16827 5970 6042 14941 {rgb=(.7 .4 .4)} Face 16828 6042 6022 14941 {rgb=(.7 .4 .4)} Face 16829 6154 6099 14942 {rgb=(.7 .4 .4)} Face 16830 6099 6110 14942 {rgb=(.7 .4 .4)} Face 16831 6110 6168 14942 {rgb=(.7 .4 .4)} Face 16832 6168 6154 14942 {rgb=(.7 .4 .4)} Face 16833 6190 6154 14943 {rgb=(.7 .4 .4)} Face 16834 6154 6252 14943 {rgb=(.7 .4 .4)} Face 16835 6252 6288 14943 {rgb=(.7 .4 .4)} Face 16836 6288 6190 14943 {rgb=(.7 .4 .4)} Face 16837 6209 6190 14944 {rgb=(.7 .4 .4)} Face 16838 6190 6328 14944 {rgb=(.7 .4 .4)} Face 16839 6328 6350 14944 {rgb=(.7 .4 .4)} Face 16840 6350 6209 14944 {rgb=(.7 .4 .4)} Face 16841 6195 6209 14945 {rgb=(.7 .4 .4)} Face 16842 6209 6352 14945 {rgb=(.7 .4 .4)} Face 16843 6352 6334 14945 {rgb=(.7 .4 .4)} Face 16844 6334 6195 14945 {rgb=(.7 .4 .4)} Face 16845 6244 6266 14946 {rgb=(.7 .4 .4)} Face 16846 6266 6378 14946 {rgb=(.7 .4 .4)} Face 16847 6378 6369 14946 {rgb=(.7 .4 .4)} Face 16848 6369 6244 14946 {rgb=(.7 .4 .4)} Face 16849 6343 6364 14947 {rgb=(.7 .4 .4)} Face 16850 6364 6266 14947 {rgb=(.7 .4 .4)} Face 16851 6266 6218 14947 {rgb=(.7 .4 .4)} Face 16852 6218 6343 14947 {rgb=(.7 .4 .4)} Face 16853 5934 5806 14948 {rgb=(.7 .4 .4)} Face 16854 5806 5801 14948 {rgb=(.7 .4 .4)} Face 16855 5801 5928 14948 {rgb=(.7 .4 .4)} Face 16856 5928 5934 14948 {rgb=(.7 .4 .4)} Face 16857 6090 6029 14949 {rgb=(.7 .4 .4)} Face 16858 6029 6021 14949 {rgb=(.7 .4 .4)} Face 16859 6021 6074 14949 {rgb=(.7 .4 .4)} Face 16860 6074 6090 14949 {rgb=(.7 .4 .4)} Face 16861 6185 6112 14950 {rgb=(.7 .4 .4)} Face 16862 6112 6098 14950 {rgb=(.7 .4 .4)} Face 16863 6098 6164 14950 {rgb=(.7 .4 .4)} Face 16864 6164 6185 14950 {rgb=(.7 .4 .4)} Face 16865 6456 6338 14951 {rgb=(.7 .4 .4)} Face 16866 6338 6316 14951 {rgb=(.7 .4 .4)} Face 16867 6316 6433 14951 {rgb=(.7 .4 .4)} Face 16868 6433 6456 14951 {rgb=(.7 .4 .4)} Face 16869 6575 6540 14952 {rgb=(.7 .4 .4)} Face 16870 6540 6513 14952 {rgb=(.7 .4 .4)} Face 16871 6513 6552 14952 {rgb=(.7 .4 .4)} Face 16872 6552 6575 14952 {rgb=(.7 .4 .4)} Face 16873 6560 6567 14953 {rgb=(.7 .4 .4)} Face 16874 6567 6543 14953 {rgb=(.7 .4 .4)} Face 16875 6543 6537 14953 {rgb=(.7 .4 .4)} Face 16876 6537 6560 14953 {rgb=(.7 .4 .4)} Face 16877 6739 6663 14954 {rgb=(.7 .4 .4)} Face 16878 6663 6592 14954 {rgb=(.7 .4 .4)} Face 16879 6592 6627 14954 {rgb=(.7 .4 .4)} Face 16880 6627 6739 14954 {rgb=(.7 .4 .4)} Face 16881 6541 6558 14955 {rgb=(.7 .4 .4)} Face 16882 6558 6599 14955 {rgb=(.7 .4 .4)} Face 16883 6599 6563 14955 {rgb=(.7 .4 .4)} Face 16884 6563 6541 14955 {rgb=(.7 .4 .4)} Face 16885 6883 6814 14956 {rgb=(.7 .4 .4)} Face 16886 6814 6694 14956 {rgb=(.7 .4 .4)} Face 16887 6694 6728 14956 {rgb=(.7 .4 .4)} Face 16888 6728 6883 14956 {rgb=(.7 .4 .4)} Face 16889 6927 6920 14957 {rgb=(.7 .4 .4)} Face 16890 6920 6738 14957 {rgb=(.7 .4 .4)} Face 16891 6738 6740 14957 {rgb=(.7 .4 .4)} Face 16892 6740 6927 14957 {rgb=(.7 .4 .4)} Face 16893 5759 5727 14958 {rgb=(.7 .4 .4)} Face 16894 5727 5762 14958 {rgb=(.7 .4 .4)} Face 16895 5762 5782 14958 {rgb=(.7 .4 .4)} Face 16896 5782 5759 14958 {rgb=(.7 .4 .4)} Face 16897 5891 5836 14959 {rgb=(.7 .4 .4)} Face 16898 5836 5847 14959 {rgb=(.7 .4 .4)} Face 16899 5847 5889 14959 {rgb=(.7 .4 .4)} Face 16900 5889 5891 14959 {rgb=(.7 .4 .4)} Face 16901 6075 5972 14960 {rgb=(.7 .4 .4)} Face 16902 5972 5958 14960 {rgb=(.7 .4 .4)} Face 16903 5958 6053 14960 {rgb=(.7 .4 .4)} Face 16904 6053 6075 14960 {rgb=(.7 .4 .4)} Face 16905 6340 6219 14961 {rgb=(.7 .4 .4)} Face 16906 6219 6177 14961 {rgb=(.7 .4 .4)} Face 16907 6177 6296 14961 {rgb=(.7 .4 .4)} Face 16908 6296 6340 14961 {rgb=(.7 .4 .4)} Face 16909 6418 6387 14962 {rgb=(.7 .4 .4)} Face 16910 6387 6354 14962 {rgb=(.7 .4 .4)} Face 16911 6354 6368 14962 {rgb=(.7 .4 .4)} Face 16912 6368 6418 14962 {rgb=(.7 .4 .4)} Face 16913 6442 6343 14963 {rgb=(.7 .4 .4)} Face 16914 6343 6334 14963 {rgb=(.7 .4 .4)} Face 16915 6334 6445 14963 {rgb=(.7 .4 .4)} Face 16916 6445 6442 14963 {rgb=(.7 .4 .4)} Face 16917 6145 6195 14964 {rgb=(.7 .4 .4)} Face 16918 6195 6218 14964 {rgb=(.7 .4 .4)} Face 16919 6218 6162 14964 {rgb=(.7 .4 .4)} Face 16920 6162 6145 14964 {rgb=(.7 .4 .4)} Face 16921 6563 6528 14965 {rgb=(.7 .4 .4)} Face 16922 6528 6530 14965 {rgb=(.7 .4 .4)} Face 16923 6530 6560 14965 {rgb=(.7 .4 .4)} Face 16924 6560 6563 14965 {rgb=(.7 .4 .4)} Face 16925 6502 6541 14966 {rgb=(.7 .4 .4)} Face 16926 6541 6537 14966 {rgb=(.7 .4 .4)} Face 16927 6537 6495 14966 {rgb=(.7 .4 .4)} Face 16928 6495 6502 14966 {rgb=(.7 .4 .4)} Face 16929 7475 7533 14967 {rgb=(.7 .4 .4)} Face 16930 7533 7343 14967 {rgb=(.7 .4 .4)} Face 16931 7343 7296 14967 {rgb=(.7 .4 .4)} Face 16932 7296 7475 14967 {rgb=(.7 .4 .4)} Face 16933 6369 6455 14968 {rgb=(.7 .4 .4)} Face 16934 6455 6479 14968 {rgb=(.7 .4 .4)} Face 16935 6479 6383 14968 {rgb=(.7 .4 .4)} Face 16936 6383 6369 14968 {rgb=(.7 .4 .4)} Face 16937 6578 6479 14969 {rgb=(.7 .4 .4)} Face 16938 6479 6473 14969 {rgb=(.7 .4 .4)} Face 16939 6473 6571 14969 {rgb=(.7 .4 .4)} Face 16940 6571 6578 14969 {rgb=(.7 .4 .4)} Face 16941 7296 7073 14970 {rgb=(.7 .4 .4)} Face 16942 7073 7051 14970 {rgb=(.7 .4 .4)} Face 16943 7051 7282 14970 {rgb=(.7 .4 .4)} Face 16944 7282 7296 14970 {rgb=(.7 .4 .4)} Face 16945 6697 6854 14971 {rgb=(.7 .4 .4)} Face 16946 6854 6866 14971 {rgb=(.7 .4 .4)} Face 16947 6866 6706 14971 {rgb=(.7 .4 .4)} Face 16948 6706 6697 14971 {rgb=(.7 .4 .4)} Face 16949 7572 7475 14972 {rgb=(.7 .4 .4)} Face 16950 7475 7453 14972 {rgb=(.7 .4 .4)} Face 16951 7453 7529 14972 {rgb=(.7 .4 .4)} Face 16952 7529 7572 14972 {rgb=(.7 .4 .4)} Face 16953 7480 7549 14973 {rgb=(.7 .4 .4)} Face 16954 7549 7529 14973 {rgb=(.7 .4 .4)} Face 16955 7529 7473 14973 {rgb=(.7 .4 .4)} Face 16956 7473 7480 14973 {rgb=(.7 .4 .4)} Face 16957 7626 7572 14974 {rgb=(.7 .4 .4)} Face 16958 7572 7549 14974 {rgb=(.7 .4 .4)} Face 16959 7549 7601 14974 {rgb=(.7 .4 .4)} Face 16960 7601 7626 14974 {rgb=(.7 .4 .4)} Face 16961 6162 6244 14975 {rgb=(.7 .4 .4)} Face 16962 6244 6243 14975 {rgb=(.7 .4 .4)} Face 16963 6243 6153 14975 {rgb=(.7 .4 .4)} Face 16964 6153 6162 14975 {rgb=(.7 .4 .4)} Face 16965 6139 6145 14976 {rgb=(.7 .4 .4)} Face 16966 6145 6153 14976 {rgb=(.7 .4 .4)} Face 16967 6153 6149 14976 {rgb=(.7 .4 .4)} Face 16968 6149 6139 14976 {rgb=(.7 .4 .4)} Face 16969 7521 7582 14977 {rgb=(.7 .4 .4)} Face 16970 7582 7553 14977 {rgb=(.7 .4 .4)} Face 16971 7553 7501 14977 {rgb=(.7 .4 .4)} Face 16972 7501 7521 14977 {rgb=(.7 .4 .4)} Face 16973 7592 7553 14978 {rgb=(.7 .4 .4)} Face 16974 7553 7593 14978 {rgb=(.7 .4 .4)} Face 16975 7593 7629 14978 {rgb=(.7 .4 .4)} Face 16976 7629 7592 14978 {rgb=(.7 .4 .4)} Face 16977 7710 7709 14979 {rgb=(.7 .4 .4)} Face 16978 7709 7665 14979 {rgb=(.7 .4 .4)} Face 16979 7665 7663 14979 {rgb=(.7 .4 .4)} Face 16980 7663 7710 14979 {rgb=(.7 .4 .4)} Face 16981 7222 7374 14980 {rgb=(.7 .4 .4)} Face 16982 7374 7382 14980 {rgb=(.7 .4 .4)} Face 16983 7382 7243 14980 {rgb=(.7 .4 .4)} Face 16984 7243 7222 14980 {rgb=(.7 .4 .4)} Face 16985 5955 6220 14981 {rgb=(.7 .4 .4)} Face 16986 6220 6227 14981 {rgb=(.7 .4 .4)} Face 16987 6227 5961 14981 {rgb=(.7 .4 .4)} Face 16988 5961 5955 14981 {rgb=(.7 .4 .4)} Face 16989 6740 6524 14982 {rgb=(.7 .4 .4)} Face 16990 6524 6512 14982 {rgb=(.7 .4 .4)} Face 16991 6512 6733 14982 {rgb=(.7 .4 .4)} Face 16992 6733 6740 14982 {rgb=(.7 .4 .4)} Face 16993 6108 5875 14983 {rgb=(.7 .4 .4)} Face 16994 5875 5879 14983 {rgb=(.7 .4 .4)} Face 16995 5879 6122 14983 {rgb=(.7 .4 .4)} Face 16996 6122 6108 14983 {rgb=(.7 .4 .4)} Face 16997 6682 6384 14984 {rgb=(.7 .4 .4)} Face 16998 6384 6395 14984 {rgb=(.7 .4 .4)} Face 16999 6395 6692 14984 {rgb=(.7 .4 .4)} Face 17000 6692 6682 14984 {rgb=(.7 .4 .4)} Face 17001 7095 6913 14985 {rgb=(.7 .4 .4)} Face 17002 6913 6917 14985 {rgb=(.7 .4 .4)} Face 17003 6917 7102 14985 {rgb=(.7 .4 .4)} Face 17004 7102 7095 14985 {rgb=(.7 .4 .4)} Face 17005 7419 7289 14986 {rgb=(.7 .4 .4)} Face 17006 7289 7307 14986 {rgb=(.7 .4 .4)} Face 17007 7307 7439 14986 {rgb=(.7 .4 .4)} Face 17008 7439 7419 14986 {rgb=(.7 .4 .4)} Face 17009 6921 7074 14987 {rgb=(.7 .4 .4)} Face 17010 7074 7080 14987 {rgb=(.7 .4 .4)} Face 17011 7080 6927 14987 {rgb=(.7 .4 .4)} Face 17012 6927 6921 14987 {rgb=(.7 .4 .4)} Face 17013 8066 8141 14988 {rgb=(.7 .4 .4)} Face 17014 8141 7981 14988 {rgb=(.7 .4 .4)} Face 17015 7981 7925 14988 {rgb=(.7 .4 .4)} Face 17016 7925 8066 14988 {rgb=(.7 .4 .4)} Face 17017 8001 8033 14989 {rgb=(.7 .4 .4)} Face 17018 8033 7900 14989 {rgb=(.7 .4 .4)} Face 17019 7900 7871 14989 {rgb=(.7 .4 .4)} Face 17020 7871 8001 14989 {rgb=(.7 .4 .4)} Face 17021 6044 5846 14990 {rgb=(.7 .4 .4)} Face 17022 5846 5850 14990 {rgb=(.7 .4 .4)} Face 17023 5850 6052 14990 {rgb=(.7 .4 .4)} Face 17024 6052 6044 14990 {rgb=(.7 .4 .4)} Face 17025 6549 6292 14991 {rgb=(.7 .4 .4)} Face 17026 6292 6300 14991 {rgb=(.7 .4 .4)} Face 17027 6300 6556 14991 {rgb=(.7 .4 .4)} Face 17028 6556 6549 14991 {rgb=(.7 .4 .4)} Face 17029 6529 6271 14992 {rgb=(.7 .4 .4)} Face 17030 6271 6249 14992 {rgb=(.7 .4 .4)} Face 17031 6249 6520 14992 {rgb=(.7 .4 .4)} Face 17032 6520 6529 14992 {rgb=(.7 .4 .4)} Face 17033 6233 6249 14993 {rgb=(.7 .4 .4)} Face 17034 6249 6251 14993 {rgb=(.7 .4 .4)} Face 17035 6251 6235 14993 {rgb=(.7 .4 .4)} Face 17036 6235 6233 14993 {rgb=(.7 .4 .4)} Face 17037 6238 6233 14994 {rgb=(.7 .4 .4)} Face 17038 6233 6213 14994 {rgb=(.7 .4 .4)} Face 17039 6213 6214 14994 {rgb=(.7 .4 .4)} Face 17040 6214 6238 14994 {rgb=(.7 .4 .4)} Face 17041 6506 6238 14995 {rgb=(.7 .4 .4)} Face 17042 6238 6246 14995 {rgb=(.7 .4 .4)} Face 17043 6246 6503 14995 {rgb=(.7 .4 .4)} Face 17044 6503 6506 14995 {rgb=(.7 .4 .4)} Face 17045 7615 7466 14996 {rgb=(.7 .4 .4)} Face 17046 7466 7461 14996 {rgb=(.7 .4 .4)} Face 17047 7461 7611 14996 {rgb=(.7 .4 .4)} Face 17048 7611 7615 14996 {rgb=(.7 .4 .4)} Face 17049 6873 7159 14997 {rgb=(.7 .4 .4)} Face 17050 7159 7170 14997 {rgb=(.7 .4 .4)} Face 17051 7170 6881 14997 {rgb=(.7 .4 .4)} Face 17052 6881 6873 14997 {rgb=(.7 .4 .4)} Face 17053 7175 7170 14998 {rgb=(.7 .4 .4)} Face 17054 7170 7466 14998 {rgb=(.7 .4 .4)} Face 17055 7466 7469 14998 {rgb=(.7 .4 .4)} Face 17056 7469 7175 14998 {rgb=(.7 .4 .4)} Face 17057 7614 7615 14999 {rgb=(.7 .4 .4)} Face 17058 7615 7622 14999 {rgb=(.7 .4 .4)} Face 17059 7622 7620 14999 {rgb=(.7 .4 .4)} Face 17060 7620 7614 14999 {rgb=(.7 .4 .4)} Face 17061 7469 7614 15000 {rgb=(.7 .4 .4)} Face 17062 7614 7608 15000 {rgb=(.7 .4 .4)} Face 17063 7608 7464 15000 {rgb=(.7 .4 .4)} Face 17064 7464 7469 15000 {rgb=(.7 .4 .4)} Face 17065 6520 6506 15001 {rgb=(.7 .4 .4)} Face 17066 6506 6881 15001 {rgb=(.7 .4 .4)} Face 17067 6881 6890 15001 {rgb=(.7 .4 .4)} Face 17068 6890 6520 15001 {rgb=(.7 .4 .4)} Face 17069 7177 6894 15002 {rgb=(.7 .4 .4)} Face 17070 6894 6890 15002 {rgb=(.7 .4 .4)} Face 17071 6890 7175 15002 {rgb=(.7 .4 .4)} Face 17072 7175 7177 15002 {rgb=(.7 .4 .4)} Face 17073 8275 8263 15003 {rgb=(.7 .4 .4)} Face 17074 8263 8248 15003 {rgb=(.7 .4 .4)} Face 17075 8248 8264 15003 {rgb=(.7 .4 .4)} Face 17076 8264 8275 15003 {rgb=(.7 .4 .4)} Face 17077 8276 8282 15004 {rgb=(.7 .4 .4)} Face 17078 8282 8338 15004 {rgb=(.7 .4 .4)} Face 17079 8338 8329 15004 {rgb=(.7 .4 .4)} Face 17080 8329 8276 15004 {rgb=(.7 .4 .4)} Face 17081 8396 8419 15005 {rgb=(.7 .4 .4)} Face 17082 8419 8537 15005 {rgb=(.7 .4 .4)} Face 17083 8537 8487 15005 {rgb=(.7 .4 .4)} Face 17084 8487 8396 15005 {rgb=(.7 .4 .4)} Face 17085 8603 8659 15006 {rgb=(.7 .4 .4)} Face 17086 8659 8778 15006 {rgb=(.7 .4 .4)} Face 17087 8778 8694 15006 {rgb=(.7 .4 .4)} Face 17088 8694 8603 15006 {rgb=(.7 .4 .4)} Face 17089 8783 8857 15007 {rgb=(.7 .4 .4)} Face 17090 8857 8902 15007 {rgb=(.7 .4 .4)} Face 17091 8902 8848 15007 {rgb=(.7 .4 .4)} Face 17092 8848 8783 15007 {rgb=(.7 .4 .4)} Face 17093 8903 8917 15008 {rgb=(.7 .4 .4)} Face 17094 8917 8919 15008 {rgb=(.7 .4 .4)} Face 17095 8919 8923 15008 {rgb=(.7 .4 .4)} Face 17096 8923 8903 15008 {rgb=(.7 .4 .4)} Face 17097 8932 8909 15009 {rgb=(.7 .4 .4)} Face 17098 8909 8883 15009 {rgb=(.7 .4 .4)} Face 17099 8883 8889 15009 {rgb=(.7 .4 .4)} Face 17100 8889 8932 15009 {rgb=(.7 .4 .4)} Face 17101 8819 8852 15010 {rgb=(.7 .4 .4)} Face 17102 8852 8822 15010 {rgb=(.7 .4 .4)} Face 17103 8822 8789 15010 {rgb=(.7 .4 .4)} Face 17104 8789 8819 15010 {rgb=(.7 .4 .4)} Face 17105 8803 8793 15011 {rgb=(.7 .4 .4)} Face 17106 8793 8754 15011 {rgb=(.7 .4 .4)} Face 17107 8754 8769 15011 {rgb=(.7 .4 .4)} Face 17108 8769 8803 15011 {rgb=(.7 .4 .4)} Face 17109 8735 8733 15012 {rgb=(.7 .4 .4)} Face 17110 8733 8717 15012 {rgb=(.7 .4 .4)} Face 17111 8717 8705 15012 {rgb=(.7 .4 .4)} Face 17112 8705 8735 15012 {rgb=(.7 .4 .4)} Face 17113 8688 8712 15013 {rgb=(.7 .4 .4)} Face 17114 8712 8716 15013 {rgb=(.7 .4 .4)} Face 17115 8716 8686 15013 {rgb=(.7 .4 .4)} Face 17116 8686 8688 15013 {rgb=(.7 .4 .4)} Face 17117 8681 8722 15014 {rgb=(.7 .4 .4)} Face 17118 8722 8726 15014 {rgb=(.7 .4 .4)} Face 17119 8726 8670 15014 {rgb=(.7 .4 .4)} Face 17120 8670 8681 15014 {rgb=(.7 .4 .4)} Face 17121 8668 8719 15015 {rgb=(.7 .4 .4)} Face 17122 8719 8702 15015 {rgb=(.7 .4 .4)} Face 17123 8702 8658 15015 {rgb=(.7 .4 .4)} Face 17124 8658 8668 15015 {rgb=(.7 .4 .4)} Face 17125 8638 8699 15016 {rgb=(.7 .4 .4)} Face 17126 8699 8711 15016 {rgb=(.7 .4 .4)} Face 17127 8711 8643 15016 {rgb=(.7 .4 .4)} Face 17128 8643 8638 15016 {rgb=(.7 .4 .4)} Face 17129 8630 8805 15017 {rgb=(.7 .4 .4)} Face 17130 8805 8828 15017 {rgb=(.7 .4 .4)} Face 17131 8828 8646 15017 {rgb=(.7 .4 .4)} Face 17132 8646 8630 15017 {rgb=(.7 .4 .4)} Face 17133 8840 8828 15018 {rgb=(.7 .4 .4)} Face 17134 8828 8809 15018 {rgb=(.7 .4 .4)} Face 17135 8809 8823 15018 {rgb=(.7 .4 .4)} Face 17136 8823 8840 15018 {rgb=(.7 .4 .4)} Face 17137 8835 8849 15019 {rgb=(.7 .4 .4)} Face 17138 8849 8879 15019 {rgb=(.7 .4 .4)} Face 17139 8879 8872 15019 {rgb=(.7 .4 .4)} Face 17140 8872 8835 15019 {rgb=(.7 .4 .4)} Face 17141 8894 8879 15020 {rgb=(.7 .4 .4)} Face 17142 8879 8847 15020 {rgb=(.7 .4 .4)} Face 17143 8847 8871 15020 {rgb=(.7 .4 .4)} Face 17144 8871 8894 15020 {rgb=(.7 .4 .4)} Face 17145 8721 8645 15021 {rgb=(.7 .4 .4)} Face 17146 8645 8676 15021 {rgb=(.7 .4 .4)} Face 17147 8676 8758 15021 {rgb=(.7 .4 .4)} Face 17148 8758 8721 15021 {rgb=(.7 .4 .4)} Face 17149 8718 8676 15022 {rgb=(.7 .4 .4)} Face 17150 8676 8650 15022 {rgb=(.7 .4 .4)} Face 17151 8650 8675 15022 {rgb=(.7 .4 .4)} Face 17152 8675 8718 15022 {rgb=(.7 .4 .4)} Face 17153 8609 8572 15023 {rgb=(.7 .4 .4)} Face 17154 8572 8581 15023 {rgb=(.7 .4 .4)} Face 17155 8581 8626 15023 {rgb=(.7 .4 .4)} Face 17156 8626 8609 15023 {rgb=(.7 .4 .4)} Face 17157 8596 8581 15024 {rgb=(.7 .4 .4)} Face 17158 8581 8558 15024 {rgb=(.7 .4 .4)} Face 17159 8558 8573 15024 {rgb=(.7 .4 .4)} Face 17160 8573 8596 15024 {rgb=(.7 .4 .4)} Face 17161 8597 8610 15025 {rgb=(.7 .4 .4)} Face 17162 8610 8641 15025 {rgb=(.7 .4 .4)} Face 17163 8641 8631 15025 {rgb=(.7 .4 .4)} Face 17164 8631 8597 15025 {rgb=(.7 .4 .4)} Face 17165 8664 8641 15026 {rgb=(.7 .4 .4)} Face 17166 8641 8612 15026 {rgb=(.7 .4 .4)} Face 17167 8612 8636 15026 {rgb=(.7 .4 .4)} Face 17168 8636 8664 15026 {rgb=(.7 .4 .4)} Face 17169 8747 8767 15027 {rgb=(.7 .4 .4)} Face 17170 8767 8786 15027 {rgb=(.7 .4 .4)} Face 17171 8786 8780 15027 {rgb=(.7 .4 .4)} Face 17172 8780 8747 15027 {rgb=(.7 .4 .4)} Face 17173 6999 6638 15028 {rgb=(.7 .4 .4)} Face 17174 6638 6641 15028 {rgb=(.7 .4 .4)} Face 17175 6641 7001 15028 {rgb=(.7 .4 .4)} Face 17176 7001 6999 15028 {rgb=(.7 .4 .4)} Face 17177 7470 7141 15029 {rgb=(.7 .4 .4)} Face 17178 7141 7142 15029 {rgb=(.7 .4 .4)} Face 17179 7142 7468 15029 {rgb=(.7 .4 .4)} Face 17180 7468 7470 15029 {rgb=(.7 .4 .4)} Face 17181 8410 7992 15030 {rgb=(.7 .4 .4)} Face 17182 7992 7986 15030 {rgb=(.7 .4 .4)} Face 17183 7986 8399 15030 {rgb=(.7 .4 .4)} Face 17184 8399 8410 15030 {rgb=(.7 .4 .4)} Face 17185 8884 8922 15031 {rgb=(.7 .4 .4)} Face 17186 8922 8896 15031 {rgb=(.7 .4 .4)} Face 17187 8896 8839 15031 {rgb=(.7 .4 .4)} Face 17188 8839 8884 15031 {rgb=(.7 .4 .4)} Face 17189 8808 8765 15032 {rgb=(.7 .4 .4)} Face 17190 8765 8728 15032 {rgb=(.7 .4 .4)} Face 17191 8728 8773 15032 {rgb=(.7 .4 .4)} Face 17192 8773 8808 15032 {rgb=(.7 .4 .4)} Face 17193 8853 8858 15033 {rgb=(.7 .4 .4)} Face 17194 8858 8818 15033 {rgb=(.7 .4 .4)} Face 17195 8818 8813 15033 {rgb=(.7 .4 .4)} Face 17196 8813 8853 15033 {rgb=(.7 .4 .4)} Face 17197 8720 8798 15034 {rgb=(.7 .4 .4)} Face 17198 8798 8764 15034 {rgb=(.7 .4 .4)} Face 17199 8764 8683 15034 {rgb=(.7 .4 .4)} Face 17200 8683 8720 15034 {rgb=(.7 .4 .4)} Face 17201 8750 8713 15035 {rgb=(.7 .4 .4)} Face 17202 8713 8672 15035 {rgb=(.7 .4 .4)} Face 17203 8672 8714 15035 {rgb=(.7 .4 .4)} Face 17204 8714 8750 15035 {rgb=(.7 .4 .4)} Face 17205 8563 8478 15036 {rgb=(.7 .4 .4)} Face 17206 8478 8540 15036 {rgb=(.7 .4 .4)} Face 17207 8540 8635 15036 {rgb=(.7 .4 .4)} Face 17208 8635 8563 15036 {rgb=(.7 .4 .4)} Face 17209 8374 8440 15037 {rgb=(.7 .4 .4)} Face 17210 8440 8420 15037 {rgb=(.7 .4 .4)} Face 17211 8420 8344 15037 {rgb=(.7 .4 .4)} Face 17212 8344 8374 15037 {rgb=(.7 .4 .4)} Face 17213 8643 8620 15038 {rgb=(.7 .4 .4)} Face 17214 8620 8774 15038 {rgb=(.7 .4 .4)} Face 17215 8774 8802 15038 {rgb=(.7 .4 .4)} Face 17216 8802 8643 15038 {rgb=(.7 .4 .4)} Face 17217 8869 8907 15039 {rgb=(.7 .4 .4)} Face 17218 8907 8771 15039 {rgb=(.7 .4 .4)} Face 17219 8771 8681 15039 {rgb=(.7 .4 .4)} Face 17220 8681 8869 15039 {rgb=(.7 .4 .4)} Face 17221 8686 8771 15040 {rgb=(.7 .4 .4)} Face 17222 8771 8908 15040 {rgb=(.7 .4 .4)} Face 17223 8908 8890 15040 {rgb=(.7 .4 .4)} Face 17224 8890 8686 15040 {rgb=(.7 .4 .4)} Face 17225 8826 8830 15041 {rgb=(.7 .4 .4)} Face 17226 8830 8670 15041 {rgb=(.7 .4 .4)} Face 17227 8670 8668 15041 {rgb=(.7 .4 .4)} Face 17228 8668 8826 15041 {rgb=(.7 .4 .4)} Face 17229 8802 8824 15042 {rgb=(.7 .4 .4)} Face 17230 8824 8658 15042 {rgb=(.7 .4 .4)} Face 17231 8658 8638 15042 {rgb=(.7 .4 .4)} Face 17232 8638 8802 15042 {rgb=(.7 .4 .4)} Face 17233 8433 8374 15043 {rgb=(.7 .4 .4)} Face 17234 8374 8317 15043 {rgb=(.7 .4 .4)} Face 17235 8317 8378 15043 {rgb=(.7 .4 .4)} Face 17236 8378 8433 15043 {rgb=(.7 .4 .4)} Face 17237 8705 8688 15044 {rgb=(.7 .4 .4)} Face 17238 8688 8905 15044 {rgb=(.7 .4 .4)} Face 17239 8905 8927 15044 {rgb=(.7 .4 .4)} Face 17240 8927 8705 15044 {rgb=(.7 .4 .4)} Face 17241 8329 8396 15045 {rgb=(.7 .4 .4)} Face 17242 8396 8456 15045 {rgb=(.7 .4 .4)} Face 17243 8456 8423 15045 {rgb=(.7 .4 .4)} Face 17244 8423 8329 15045 {rgb=(.7 .4 .4)} Face 17245 8582 8510 15046 {rgb=(.7 .4 .4)} Face 17246 8510 8487 15046 {rgb=(.7 .4 .4)} Face 17247 8487 8578 15046 {rgb=(.7 .4 .4)} Face 17248 8578 8582 15046 {rgb=(.7 .4 .4)} Face 17249 8744 8701 15047 {rgb=(.7 .4 .4)} Face 17250 8701 8578 15047 {rgb=(.7 .4 .4)} Face 17251 8578 8603 15047 {rgb=(.7 .4 .4)} Face 17252 8603 8744 15047 {rgb=(.7 .4 .4)} Face 17253 8846 8744 15048 {rgb=(.7 .4 .4)} Face 17254 8744 8694 15048 {rgb=(.7 .4 .4)} Face 17255 8694 8783 15048 {rgb=(.7 .4 .4)} Face 17256 8783 8846 15048 {rgb=(.7 .4 .4)} Face 17257 9036 8961 15049 {rgb=(.7 .4 .4)} Face 17258 8961 8848 15049 {rgb=(.7 .4 .4)} Face 17259 8848 8903 15049 {rgb=(.7 .4 .4)} Face 17260 8903 9036 15049 {rgb=(.7 .4 .4)} Face 17261 8264 8276 15050 {rgb=(.7 .4 .4)} Face 17262 8276 8394 15050 {rgb=(.7 .4 .4)} Face 17263 8394 8372 15050 {rgb=(.7 .4 .4)} Face 17264 8372 8264 15050 {rgb=(.7 .4 .4)} Face 17265 8304 8275 15051 {rgb=(.7 .4 .4)} Face 17266 8275 8385 15051 {rgb=(.7 .4 .4)} Face 17267 8385 8406 15051 {rgb=(.7 .4 .4)} Face 17268 8406 8304 15051 {rgb=(.7 .4 .4)} Face 17269 8378 8335 15052 {rgb=(.7 .4 .4)} Face 17270 8335 8425 15052 {rgb=(.7 .4 .4)} Face 17271 8425 8455 15052 {rgb=(.7 .4 .4)} Face 17272 8455 8378 15052 {rgb=(.7 .4 .4)} Face 17273 9212 9130 15053 {rgb=(.7 .4 .4)} Face 17274 9130 8923 15053 {rgb=(.7 .4 .4)} Face 17275 8923 8980 15053 {rgb=(.7 .4 .4)} Face 17276 8980 9212 15053 {rgb=(.7 .4 .4)} Face 17277 9172 9241 15054 {rgb=(.7 .4 .4)} Face 17278 9241 8980 15054 {rgb=(.7 .4 .4)} Face 17279 8980 8932 15054 {rgb=(.7 .4 .4)} Face 17280 8932 9172 15054 {rgb=(.7 .4 .4)} Face 17281 9004 9101 15055 {rgb=(.7 .4 .4)} Face 17282 9101 8889 15055 {rgb=(.7 .4 .4)} Face 17283 8889 8819 15055 {rgb=(.7 .4 .4)} Face 17284 8819 9004 15055 {rgb=(.7 .4 .4)} Face 17285 9018 9004 15056 {rgb=(.7 .4 .4)} Face 17286 9004 8789 15056 {rgb=(.7 .4 .4)} Face 17287 8789 8803 15056 {rgb=(.7 .4 .4)} Face 17288 8803 9018 15056 {rgb=(.7 .4 .4)} Face 17289 8965 8993 15057 {rgb=(.7 .4 .4)} Face 17290 8993 8769 15057 {rgb=(.7 .4 .4)} Face 17291 8769 8735 15057 {rgb=(.7 .4 .4)} Face 17292 8735 8965 15057 {rgb=(.7 .4 .4)} Face 17293 7271 7100 15058 {rgb=(.7 .4 .4)} Face 17294 7100 7098 15058 {rgb=(.7 .4 .4)} Face 17295 7098 7260 15058 {rgb=(.7 .4 .4)} Face 17296 7260 7271 15058 {rgb=(.7 .4 .4)} Face 17297 7404 7519 15059 {rgb=(.7 .4 .4)} Face 17298 7519 7528 15059 {rgb=(.7 .4 .4)} Face 17299 7528 7409 15059 {rgb=(.7 .4 .4)} Face 17300 7409 7404 15059 {rgb=(.7 .4 .4)} Face 17301 6965 6833 15060 {rgb=(.7 .4 .4)} Face 17302 6833 6836 15060 {rgb=(.7 .4 .4)} Face 17303 6836 6967 15060 {rgb=(.7 .4 .4)} Face 17304 6967 6965 15060 {rgb=(.7 .4 .4)} Face 17305 6726 6613 15061 {rgb=(.7 .4 .4)} Face 17306 6613 6615 15061 {rgb=(.7 .4 .4)} Face 17307 6615 6730 15061 {rgb=(.7 .4 .4)} Face 17308 6730 6726 15061 {rgb=(.7 .4 .4)} Face 17309 6461 6379 15062 {rgb=(.7 .4 .4)} Face 17310 6379 6386 15062 {rgb=(.7 .4 .4)} Face 17311 6386 6469 15062 {rgb=(.7 .4 .4)} Face 17312 6469 6461 15062 {rgb=(.7 .4 .4)} Face 17313 6397 6596 15063 {rgb=(.7 .4 .4)} Face 17314 6596 6600 15063 {rgb=(.7 .4 .4)} Face 17315 6600 6406 15063 {rgb=(.7 .4 .4)} Face 17316 6406 6397 15063 {rgb=(.7 .4 .4)} Face 17317 6835 7060 15064 {rgb=(.7 .4 .4)} Face 17318 7060 7057 15064 {rgb=(.7 .4 .4)} Face 17319 7057 6837 15064 {rgb=(.7 .4 .4)} Face 17320 6837 6835 15064 {rgb=(.7 .4 .4)} Face 17321 7323 7482 15065 {rgb=(.7 .4 .4)} Face 17322 7482 7478 15065 {rgb=(.7 .4 .4)} Face 17323 7478 7317 15065 {rgb=(.7 .4 .4)} Face 17324 7317 7323 15065 {rgb=(.7 .4 .4)} Face 17325 7599 7686 15066 {rgb=(.7 .4 .4)} Face 17326 7686 7675 15066 {rgb=(.7 .4 .4)} Face 17327 7675 7584 15066 {rgb=(.7 .4 .4)} Face 17328 7584 7599 15066 {rgb=(.7 .4 .4)} Face 17329 7776 7808 15067 {rgb=(.7 .4 .4)} Face 17330 7808 7802 15067 {rgb=(.7 .4 .4)} Face 17331 7802 7768 15067 {rgb=(.7 .4 .4)} Face 17332 7768 7776 15067 {rgb=(.7 .4 .4)} Face 17333 7791 7770 15068 {rgb=(.7 .4 .4)} Face 17334 7770 7761 15068 {rgb=(.7 .4 .4)} Face 17335 7761 7787 15068 {rgb=(.7 .4 .4)} Face 17336 7787 7791 15068 {rgb=(.7 .4 .4)} Face 17337 7732 7651 15069 {rgb=(.7 .4 .4)} Face 17338 7651 7645 15069 {rgb=(.7 .4 .4)} Face 17339 7645 7725 15069 {rgb=(.7 .4 .4)} Face 17340 7725 7732 15069 {rgb=(.7 .4 .4)} Face 17341 3636 3514 15070 {rgb=(.7 .4 .4)} Face 17342 3514 3523 15070 {rgb=(.7 .4 .4)} Face 17343 3523 3641 15070 {rgb=(.7 .4 .4)} Face 17344 3641 3636 15070 {rgb=(.7 .4 .4)} Face 17345 3787 3943 15071 {rgb=(.7 .4 .4)} Face 17346 3943 3941 15071 {rgb=(.7 .4 .4)} Face 17347 3941 3775 15071 {rgb=(.7 .4 .4)} Face 17348 3775 3787 15071 {rgb=(.7 .4 .4)} Face 17349 3395 3312 15072 {rgb=(.7 .4 .4)} Face 17350 3312 3316 15072 {rgb=(.7 .4 .4)} Face 17351 3316 3401 15072 {rgb=(.7 .4 .4)} Face 17352 3401 3395 15072 {rgb=(.7 .4 .4)} Face 17353 3276 3253 15073 {rgb=(.7 .4 .4)} Face 17354 3253 3259 15073 {rgb=(.7 .4 .4)} Face 17355 3259 3284 15073 {rgb=(.7 .4 .4)} Face 17356 3284 3276 15073 {rgb=(.7 .4 .4)} Face 17357 3236 3270 15074 {rgb=(.7 .4 .4)} Face 17358 3270 3277 15074 {rgb=(.7 .4 .4)} Face 17359 3277 3241 15074 {rgb=(.7 .4 .4)} Face 17360 3241 3236 15074 {rgb=(.7 .4 .4)} Face 17361 3354 3447 15075 {rgb=(.7 .4 .4)} Face 17362 3447 3458 15075 {rgb=(.7 .4 .4)} Face 17363 3458 3366 15075 {rgb=(.7 .4 .4)} Face 17364 3366 3354 15075 {rgb=(.7 .4 .4)} Face 17365 3560 3719 15076 {rgb=(.7 .4 .4)} Face 17366 3719 3725 15076 {rgb=(.7 .4 .4)} Face 17367 3725 3563 15076 {rgb=(.7 .4 .4)} Face 17368 3563 3560 15076 {rgb=(.7 .4 .4)} Face 17369 3980 4210 15077 {rgb=(.7 .4 .4)} Face 17370 4210 4208 15077 {rgb=(.7 .4 .4)} Face 17371 4208 3983 15077 {rgb=(.7 .4 .4)} Face 17372 3983 3980 15077 {rgb=(.7 .4 .4)} Face 17373 4443 4650 15078 {rgb=(.7 .4 .4)} Face 17374 4650 4641 15078 {rgb=(.7 .4 .4)} Face 17375 4641 4439 15078 {rgb=(.7 .4 .4)} Face 17376 4439 4443 15078 {rgb=(.7 .4 .4)} Face 17377 4667 4584 15079 {rgb=(.7 .4 .4)} Face 17378 4584 4576 15079 {rgb=(.7 .4 .4)} Face 17379 4576 4660 15079 {rgb=(.7 .4 .4)} Face 17380 4660 4667 15079 {rgb=(.7 .4 .4)} Face 17381 4425 4317 15080 {rgb=(.7 .4 .4)} Face 17382 4317 4314 15080 {rgb=(.7 .4 .4)} Face 17383 4314 4422 15080 {rgb=(.7 .4 .4)} Face 17384 4422 4425 15080 {rgb=(.7 .4 .4)} Face 17385 4212 4076 15081 {rgb=(.7 .4 .4)} Face 17386 4076 4074 15081 {rgb=(.7 .4 .4)} Face 17387 4074 4209 15081 {rgb=(.7 .4 .4)} Face 17388 4209 4212 15081 {rgb=(.7 .4 .4)} Face 17389 7401 7404 15082 {rgb=(.7 .4 .4)} Face 17390 7404 7260 15082 {rgb=(.7 .4 .4)} Face 17391 7260 7256 15082 {rgb=(.7 .4 .4)} Face 17392 7256 7401 15082 {rgb=(.7 .4 .4)} Face 17393 7275 7271 15083 {rgb=(.7 .4 .4)} Face 17394 7271 7409 15083 {rgb=(.7 .4 .4)} Face 17395 7409 7414 15083 {rgb=(.7 .4 .4)} Face 17396 7414 7275 15083 {rgb=(.7 .4 .4)} Face 17397 6962 6965 15084 {rgb=(.7 .4 .4)} Face 17398 6965 7100 15084 {rgb=(.7 .4 .4)} Face 17399 7100 7096 15084 {rgb=(.7 .4 .4)} Face 17400 7096 6962 15084 {rgb=(.7 .4 .4)} Face 17401 7099 7098 15085 {rgb=(.7 .4 .4)} Face 17402 7098 6967 15085 {rgb=(.7 .4 .4)} Face 17403 6967 6968 15085 {rgb=(.7 .4 .4)} Face 17404 6968 7099 15085 {rgb=(.7 .4 .4)} Face 17405 6723 6726 15086 {rgb=(.7 .4 .4)} Face 17406 6726 6833 15086 {rgb=(.7 .4 .4)} Face 17407 6833 6827 15086 {rgb=(.7 .4 .4)} Face 17408 6827 6723 15086 {rgb=(.7 .4 .4)} Face 17409 6841 6836 15087 {rgb=(.7 .4 .4)} Face 17410 6836 6730 15087 {rgb=(.7 .4 .4)} Face 17411 6730 6732 15087 {rgb=(.7 .4 .4)} Face 17412 6732 6841 15087 {rgb=(.7 .4 .4)} Face 17413 6440 6461 15088 {rgb=(.7 .4 .4)} Face 17414 6461 6613 15088 {rgb=(.7 .4 .4)} Face 17415 6613 6601 15088 {rgb=(.7 .4 .4)} Face 17416 6601 6440 15088 {rgb=(.7 .4 .4)} Face 17417 6620 6615 15089 {rgb=(.7 .4 .4)} Face 17418 6615 6469 15089 {rgb=(.7 .4 .4)} Face 17419 6469 6478 15089 {rgb=(.7 .4 .4)} Face 17420 6478 6620 15089 {rgb=(.7 .4 .4)} Face 17421 6372 6397 15090 {rgb=(.7 .4 .4)} Face 17422 6397 6379 15090 {rgb=(.7 .4 .4)} Face 17423 6379 6361 15090 {rgb=(.7 .4 .4)} Face 17424 6361 6372 15090 {rgb=(.7 .4 .4)} Face 17425 6390 6386 15091 {rgb=(.7 .4 .4)} Face 17426 6386 6406 15091 {rgb=(.7 .4 .4)} Face 17427 6406 6415 15091 {rgb=(.7 .4 .4)} Face 17428 6415 6390 15091 {rgb=(.7 .4 .4)} Face 17429 6846 6835 15092 {rgb=(.7 .4 .4)} Face 17430 6835 6596 15092 {rgb=(.7 .4 .4)} Face 17431 6596 6590 15092 {rgb=(.7 .4 .4)} Face 17432 6590 6846 15092 {rgb=(.7 .4 .4)} Face 17433 6604 6600 15093 {rgb=(.7 .4 .4)} Face 17434 6600 6837 15093 {rgb=(.7 .4 .4)} Face 17435 6837 6839 15093 {rgb=(.7 .4 .4)} Face 17436 6839 6604 15093 {rgb=(.7 .4 .4)} Face 17437 7339 7323 15094 {rgb=(.7 .4 .4)} Face 17438 7323 7060 15094 {rgb=(.7 .4 .4)} Face 17439 7060 7077 15094 {rgb=(.7 .4 .4)} Face 17440 7077 7339 15094 {rgb=(.7 .4 .4)} Face 17441 7056 7057 15095 {rgb=(.7 .4 .4)} Face 17442 7057 7317 15095 {rgb=(.7 .4 .4)} Face 17443 7317 7316 15095 {rgb=(.7 .4 .4)} Face 17444 7316 7056 15095 {rgb=(.7 .4 .4)} Face 17445 7635 7599 15096 {rgb=(.7 .4 .4)} Face 17446 7599 7482 15096 {rgb=(.7 .4 .4)} Face 17447 7482 7511 15096 {rgb=(.7 .4 .4)} Face 17448 7511 7635 15096 {rgb=(.7 .4 .4)} Face 17449 7477 7478 15097 {rgb=(.7 .4 .4)} Face 17450 7478 7584 15097 {rgb=(.7 .4 .4)} Face 17451 7584 7581 15097 {rgb=(.7 .4 .4)} Face 17452 7581 7477 15097 {rgb=(.7 .4 .4)} Face 17453 7807 7776 15098 {rgb=(.7 .4 .4)} Face 17454 7776 7686 15098 {rgb=(.7 .4 .4)} Face 17455 7686 7730 15098 {rgb=(.7 .4 .4)} Face 17456 7730 7807 15098 {rgb=(.7 .4 .4)} Face 17457 7671 7675 15099 {rgb=(.7 .4 .4)} Face 17458 7675 7768 15099 {rgb=(.7 .4 .4)} Face 17459 7768 7762 15099 {rgb=(.7 .4 .4)} Face 17460 7762 7671 15099 {rgb=(.7 .4 .4)} Face 17461 7827 7791 15100 {rgb=(.7 .4 .4)} Face 17462 7791 7808 15100 {rgb=(.7 .4 .4)} Face 17463 7808 7840 15100 {rgb=(.7 .4 .4)} Face 17464 7840 7827 15100 {rgb=(.7 .4 .4)} Face 17465 7798 7802 15101 {rgb=(.7 .4 .4)} Face 17466 7802 7787 15101 {rgb=(.7 .4 .4)} Face 17467 7787 7783 15101 {rgb=(.7 .4 .4)} Face 17468 7783 7798 15101 {rgb=(.7 .4 .4)} Face 17469 7752 7732 15102 {rgb=(.7 .4 .4)} Face 17470 7732 7770 15102 {rgb=(.7 .4 .4)} Face 17471 7770 7795 15102 {rgb=(.7 .4 .4)} Face 17472 7795 7752 15102 {rgb=(.7 .4 .4)} Face 17473 7759 7761 15103 {rgb=(.7 .4 .4)} Face 17474 7761 7725 15103 {rgb=(.7 .4 .4)} Face 17475 7725 7723 15103 {rgb=(.7 .4 .4)} Face 17476 7723 7759 15103 {rgb=(.7 .4 .4)} Face 17477 7539 7528 15104 {rgb=(.7 .4 .4)} Face 17478 7528 7651 15104 {rgb=(.7 .4 .4)} Face 17479 7651 7662 15104 {rgb=(.7 .4 .4)} Face 17480 7662 7539 15104 {rgb=(.7 .4 .4)} Face 17481 7644 7645 15105 {rgb=(.7 .4 .4)} Face 17482 7645 7519 15105 {rgb=(.7 .4 .4)} Face 17483 7519 7517 15105 {rgb=(.7 .4 .4)} Face 17484 7517 7644 15105 {rgb=(.7 .4 .4)} Face 17485 3791 3787 15106 {rgb=(.7 .4 .4)} Face 17486 3787 3641 15106 {rgb=(.7 .4 .4)} Face 17487 3641 3644 15106 {rgb=(.7 .4 .4)} Face 17488 3644 3791 15106 {rgb=(.7 .4 .4)} Face 17489 3631 3636 15107 {rgb=(.7 .4 .4)} Face 17490 3636 3775 15107 {rgb=(.7 .4 .4)} Face 17491 3775 3771 15107 {rgb=(.7 .4 .4)} Face 17492 3771 3631 15107 {rgb=(.7 .4 .4)} Face 17493 3380 3395 15108 {rgb=(.7 .4 .4)} Face 17494 3395 3514 15108 {rgb=(.7 .4 .4)} Face 17495 3514 3504 15108 {rgb=(.7 .4 .4)} Face 17496 3504 3380 15108 {rgb=(.7 .4 .4)} Face 17497 3524 3523 15109 {rgb=(.7 .4 .4)} Face 17498 3523 3401 15109 {rgb=(.7 .4 .4)} Face 17499 3401 3402 15109 {rgb=(.7 .4 .4)} Face 17500 3402 3524 15109 {rgb=(.7 .4 .4)} Face 17501 3249 3276 15110 {rgb=(.7 .4 .4)} Face 17502 3276 3312 15110 {rgb=(.7 .4 .4)} Face 17503 3312 3293 15110 {rgb=(.7 .4 .4)} Face 17504 3293 3249 15110 {rgb=(.7 .4 .4)} Face 17505 3318 3316 15111 {rgb=(.7 .4 .4)} Face 17506 3316 3284 15111 {rgb=(.7 .4 .4)} Face 17507 3284 3287 15111 {rgb=(.7 .4 .4)} Face 17508 3287 3318 15111 {rgb=(.7 .4 .4)} Face 17509 3205 3236 15112 {rgb=(.7 .4 .4)} Face 17510 3236 3253 15112 {rgb=(.7 .4 .4)} Face 17511 3253 3217 15112 {rgb=(.7 .4 .4)} Face 17512 3217 3205 15112 {rgb=(.7 .4 .4)} Face 17513 3263 3259 15113 {rgb=(.7 .4 .4)} Face 17514 3259 3241 15113 {rgb=(.7 .4 .4)} Face 17515 3241 3245 15113 {rgb=(.7 .4 .4)} Face 17516 3245 3263 15113 {rgb=(.7 .4 .4)} Face 17517 3313 3354 15114 {rgb=(.7 .4 .4)} Face 17518 3354 3270 15114 {rgb=(.7 .4 .4)} Face 17519 3270 3237 15114 {rgb=(.7 .4 .4)} Face 17520 3237 3313 15114 {rgb=(.7 .4 .4)} Face 17521 3283 3277 15115 {rgb=(.7 .4 .4)} Face 17522 3277 3366 15115 {rgb=(.7 .4 .4)} Face 17523 3366 3370 15115 {rgb=(.7 .4 .4)} Face 17524 3370 3283 15115 {rgb=(.7 .4 .4)} Face 17525 3531 3560 15116 {rgb=(.7 .4 .4)} Face 17526 3560 3447 15116 {rgb=(.7 .4 .4)} Face 17527 3447 3411 15116 {rgb=(.7 .4 .4)} Face 17528 3411 3531 15116 {rgb=(.7 .4 .4)} Face 17529 3461 3458 15117 {rgb=(.7 .4 .4)} Face 17530 3458 3563 15117 {rgb=(.7 .4 .4)} Face 17531 3563 3564 15117 {rgb=(.7 .4 .4)} Face 17532 3564 3461 15117 {rgb=(.7 .4 .4)} Face 17533 3963 3980 15118 {rgb=(.7 .4 .4)} Face 17534 3980 3719 15118 {rgb=(.7 .4 .4)} Face 17535 3719 3704 15118 {rgb=(.7 .4 .4)} Face 17536 3704 3963 15118 {rgb=(.7 .4 .4)} Face 17537 3726 3725 15119 {rgb=(.7 .4 .4)} Face 17538 3725 3983 15119 {rgb=(.7 .4 .4)} Face 17539 3983 3984 15119 {rgb=(.7 .4 .4)} Face 17540 3984 3726 15119 {rgb=(.7 .4 .4)} Face 17541 4450 4443 15120 {rgb=(.7 .4 .4)} Face 17542 4443 4210 15120 {rgb=(.7 .4 .4)} Face 17543 4210 4198 15120 {rgb=(.7 .4 .4)} Face 17544 4198 4450 15120 {rgb=(.7 .4 .4)} Face 17545 4207 4208 15121 {rgb=(.7 .4 .4)} Face 17546 4208 4439 15121 {rgb=(.7 .4 .4)} Face 17547 4439 4435 15121 {rgb=(.7 .4 .4)} Face 17548 4435 4207 15121 {rgb=(.7 .4 .4)} Face 17549 4687 4667 15122 {rgb=(.7 .4 .4)} Face 17550 4667 4650 15122 {rgb=(.7 .4 .4)} Face 17551 4650 4675 15122 {rgb=(.7 .4 .4)} Face 17552 4675 4687 15122 {rgb=(.7 .4 .4)} Face 17553 4633 4641 15123 {rgb=(.7 .4 .4)} Face 17554 4641 4660 15123 {rgb=(.7 .4 .4)} Face 17555 4660 4657 15123 {rgb=(.7 .4 .4)} Face 17556 4657 4633 15123 {rgb=(.7 .4 .4)} Face 17557 4438 4425 15124 {rgb=(.7 .4 .4)} Face 17558 4425 4584 15124 {rgb=(.7 .4 .4)} Face 17559 4584 4606 15124 {rgb=(.7 .4 .4)} Face 17560 4606 4438 15124 {rgb=(.7 .4 .4)} Face 17561 4568 4576 15125 {rgb=(.7 .4 .4)} Face 17562 4576 4422 15125 {rgb=(.7 .4 .4)} Face 17563 4422 4418 15125 {rgb=(.7 .4 .4)} Face 17564 4418 4568 15125 {rgb=(.7 .4 .4)} Face 17565 4218 4212 15126 {rgb=(.7 .4 .4)} Face 17566 4212 4317 15126 {rgb=(.7 .4 .4)} Face 17567 4317 4321 15126 {rgb=(.7 .4 .4)} Face 17568 4321 4218 15126 {rgb=(.7 .4 .4)} Face 17569 4313 4314 15127 {rgb=(.7 .4 .4)} Face 17570 4314 4209 15127 {rgb=(.7 .4 .4)} Face 17571 4209 4205 15127 {rgb=(.7 .4 .4)} Face 17572 4205 4313 15127 {rgb=(.7 .4 .4)} Face 17573 3944 3941 15128 {rgb=(.7 .4 .4)} Face 17574 3941 4076 15128 {rgb=(.7 .4 .4)} Face 17575 4076 4079 15128 {rgb=(.7 .4 .4)} Face 17576 4079 3944 15128 {rgb=(.7 .4 .4)} Face 17577 4073 4074 15129 {rgb=(.7 .4 .4)} Face 17578 4074 3943 15129 {rgb=(.7 .4 .4)} Face 17579 3943 3942 15129 {rgb=(.7 .4 .4)} Face 17580 3942 4073 15129 {rgb=(.7 .4 .4)} Face 17581 4070 3684 15130 {rgb=(.7 .4 .4)} Face 17582 3684 3718 15130 {rgb=(.7 .4 .4)} Face 17583 3718 4080 15130 {rgb=(.7 .4 .4)} Face 17584 4080 4070 15130 {rgb=(.7 .4 .4)} Face 17585 3404 3141 15131 {rgb=(.7 .4 .4)} Face 17586 3141 3178 15131 {rgb=(.7 .4 .4)} Face 17587 3178 3431 15131 {rgb=(.7 .4 .4)} Face 17588 3431 3404 15131 {rgb=(.7 .4 .4)} Face 17589 3684 3649 15132 {rgb=(.7 .4 .4)} Face 17590 3649 3355 15132 {rgb=(.7 .4 .4)} Face 17591 3355 3404 15132 {rgb=(.7 .4 .4)} Face 17592 3404 3684 15132 {rgb=(.7 .4 .4)} Face 17593 2991 3018 15133 {rgb=(.7 .4 .4)} Face 17594 3018 3001 15133 {rgb=(.7 .4 .4)} Face 17595 3001 3004 15133 {rgb=(.7 .4 .4)} Face 17596 3004 2991 15133 {rgb=(.7 .4 .4)} Face 17597 3141 3112 15134 {rgb=(.7 .4 .4)} Face 17598 3112 2987 15134 {rgb=(.7 .4 .4)} Face 17599 2987 2991 15134 {rgb=(.7 .4 .4)} Face 17600 2991 3141 15134 {rgb=(.7 .4 .4)} Face 17601 3145 3229 15135 {rgb=(.7 .4 .4)} Face 17602 3229 3199 15135 {rgb=(.7 .4 .4)} Face 17603 3199 3122 15135 {rgb=(.7 .4 .4)} Face 17604 3122 3145 15135 {rgb=(.7 .4 .4)} Face 17605 3018 3033 15136 {rgb=(.7 .4 .4)} Face 17606 3033 3169 15136 {rgb=(.7 .4 .4)} Face 17607 3169 3145 15136 {rgb=(.7 .4 .4)} Face 17608 3145 3018 15136 {rgb=(.7 .4 .4)} Face 17609 3285 3374 15137 {rgb=(.7 .4 .4)} Face 17610 3374 3335 15137 {rgb=(.7 .4 .4)} Face 17611 3335 3251 15137 {rgb=(.7 .4 .4)} Face 17612 3251 3285 15137 {rgb=(.7 .4 .4)} Face 17613 3229 3254 15138 {rgb=(.7 .4 .4)} Face 17614 3254 3305 15138 {rgb=(.7 .4 .4)} Face 17615 3305 3285 15138 {rgb=(.7 .4 .4)} Face 17616 3285 3229 15138 {rgb=(.7 .4 .4)} Face 17617 3493 3624 15139 {rgb=(.7 .4 .4)} Face 17618 3624 3586 15139 {rgb=(.7 .4 .4)} Face 17619 3586 3457 15139 {rgb=(.7 .4 .4)} Face 17620 3457 3493 15139 {rgb=(.7 .4 .4)} Face 17621 3374 3394 15140 {rgb=(.7 .4 .4)} Face 17622 3394 3507 15140 {rgb=(.7 .4 .4)} Face 17623 3507 3493 15140 {rgb=(.7 .4 .4)} Face 17624 3493 3374 15140 {rgb=(.7 .4 .4)} Face 17625 3770 4090 15141 {rgb=(.7 .4 .4)} Face 17626 4090 4061 15141 {rgb=(.7 .4 .4)} Face 17627 4061 3739 15141 {rgb=(.7 .4 .4)} Face 17628 3739 3770 15141 {rgb=(.7 .4 .4)} Face 17629 3624 3632 15142 {rgb=(.7 .4 .4)} Face 17630 3632 3785 15142 {rgb=(.7 .4 .4)} Face 17631 3785 3770 15142 {rgb=(.7 .4 .4)} Face 17632 3770 3624 15142 {rgb=(.7 .4 .4)} Face 17633 4618 5084 15143 {rgb=(.7 .4 .4)} Face 17634 5084 5055 15143 {rgb=(.7 .4 .4)} Face 17635 5055 4560 15143 {rgb=(.7 .4 .4)} Face 17636 4560 4618 15143 {rgb=(.7 .4 .4)} Face 17637 4090 4092 15144 {rgb=(.7 .4 .4)} Face 17638 4092 4619 15144 {rgb=(.7 .4 .4)} Face 17639 4619 4618 15144 {rgb=(.7 .4 .4)} Face 17640 4618 4090 15144 {rgb=(.7 .4 .4)} Face 17641 5377 5670 15145 {rgb=(.7 .4 .4)} Face 17642 5670 5653 15145 {rgb=(.7 .4 .4)} Face 17643 5653 5361 15145 {rgb=(.7 .4 .4)} Face 17644 5361 5377 15145 {rgb=(.7 .4 .4)} Face 17645 5084 5083 15146 {rgb=(.7 .4 .4)} Face 17646 5083 5390 15146 {rgb=(.7 .4 .4)} Face 17647 5390 5377 15146 {rgb=(.7 .4 .4)} Face 17648 5377 5084 15146 {rgb=(.7 .4 .4)} Face 17649 5964 6427 15147 {rgb=(.7 .4 .4)} Face 17650 6427 6393 15147 {rgb=(.7 .4 .4)} Face 17651 6393 5949 15147 {rgb=(.7 .4 .4)} Face 17652 5949 5964 15147 {rgb=(.7 .4 .4)} Face 17653 5670 5682 15148 {rgb=(.7 .4 .4)} Face 17654 5682 5990 15148 {rgb=(.7 .4 .4)} Face 17655 5990 5964 15148 {rgb=(.7 .4 .4)} Face 17656 5964 5670 15148 {rgb=(.7 .4 .4)} Face 17657 6940 7209 15149 {rgb=(.7 .4 .4)} Face 17658 7209 7181 15149 {rgb=(.7 .4 .4)} Face 17659 7181 6916 15149 {rgb=(.7 .4 .4)} Face 17660 6916 6940 15149 {rgb=(.7 .4 .4)} Face 17661 6427 6484 15150 {rgb=(.7 .4 .4)} Face 17662 6484 6981 15150 {rgb=(.7 .4 .4)} Face 17663 6981 6940 15150 {rgb=(.7 .4 .4)} Face 17664 6940 6427 15150 {rgb=(.7 .4 .4)} Face 17665 7367 7486 15151 {rgb=(.7 .4 .4)} Face 17666 7486 7474 15151 {rgb=(.7 .4 .4)} Face 17667 7474 7354 15151 {rgb=(.7 .4 .4)} Face 17668 7354 7367 15151 {rgb=(.7 .4 .4)} Face 17669 7209 7295 15152 {rgb=(.7 .4 .4)} Face 17670 7295 7431 15152 {rgb=(.7 .4 .4)} Face 17671 7431 7367 15152 {rgb=(.7 .4 .4)} Face 17672 7367 7209 15152 {rgb=(.7 .4 .4)} Face 17673 7610 7690 15153 {rgb=(.7 .4 .4)} Face 17674 7690 7679 15153 {rgb=(.7 .4 .4)} Face 17675 7679 7594 15153 {rgb=(.7 .4 .4)} Face 17676 7594 7610 15153 {rgb=(.7 .4 .4)} Face 17677 7486 7537 15154 {rgb=(.7 .4 .4)} Face 17678 7537 7643 15154 {rgb=(.7 .4 .4)} Face 17679 7643 7610 15154 {rgb=(.7 .4 .4)} Face 17680 7610 7486 15154 {rgb=(.7 .4 .4)} Face 17681 7751 7852 15155 {rgb=(.7 .4 .4)} Face 17682 7852 7847 15155 {rgb=(.7 .4 .4)} Face 17683 7847 7741 15155 {rgb=(.7 .4 .4)} Face 17684 7741 7751 15155 {rgb=(.7 .4 .4)} Face 17685 7690 7727 15156 {rgb=(.7 .4 .4)} Face 17686 7727 7781 15156 {rgb=(.7 .4 .4)} Face 17687 7781 7751 15156 {rgb=(.7 .4 .4)} Face 17688 7751 7690 15156 {rgb=(.7 .4 .4)} Face 17689 7987 8096 15157 {rgb=(.7 .4 .4)} Face 17690 8096 8078 15157 {rgb=(.7 .4 .4)} Face 17691 8078 7979 15157 {rgb=(.7 .4 .4)} Face 17692 7979 7987 15157 {rgb=(.7 .4 .4)} Face 17693 7852 7873 15158 {rgb=(.7 .4 .4)} Face 17694 7873 8006 15158 {rgb=(.7 .4 .4)} Face 17695 8006 7987 15158 {rgb=(.7 .4 .4)} Face 17696 7987 7852 15158 {rgb=(.7 .4 .4)} Face 17697 8029 7821 15159 {rgb=(.7 .4 .4)} Face 17698 7821 7800 15159 {rgb=(.7 .4 .4)} Face 17699 7800 8009 15159 {rgb=(.7 .4 .4)} Face 17700 8009 8029 15159 {rgb=(.7 .4 .4)} Face 17701 8096 8114 15160 {rgb=(.7 .4 .4)} Face 17702 8114 8044 15160 {rgb=(.7 .4 .4)} Face 17703 8044 8029 15160 {rgb=(.7 .4 .4)} Face 17704 8029 8096 15160 {rgb=(.7 .4 .4)} Face 17705 7513 7112 15161 {rgb=(.7 .4 .4)} Face 17706 7112 7097 15161 {rgb=(.7 .4 .4)} Face 17707 7097 7495 15161 {rgb=(.7 .4 .4)} Face 17708 7495 7513 15161 {rgb=(.7 .4 .4)} Face 17709 7821 7839 15162 {rgb=(.7 .4 .4)} Face 17710 7839 7535 15162 {rgb=(.7 .4 .4)} Face 17711 7535 7513 15162 {rgb=(.7 .4 .4)} Face 17712 7513 7821 15162 {rgb=(.7 .4 .4)} Face 17713 6639 6092 15163 {rgb=(.7 .4 .4)} Face 17714 6092 6070 15163 {rgb=(.7 .4 .4)} Face 17715 6070 6631 15163 {rgb=(.7 .4 .4)} Face 17716 6631 6639 15163 {rgb=(.7 .4 .4)} Face 17717 7112 7140 15164 {rgb=(.7 .4 .4)} Face 17718 7140 6656 15164 {rgb=(.7 .4 .4)} Face 17719 6656 6639 15164 {rgb=(.7 .4 .4)} Face 17720 6639 7112 15164 {rgb=(.7 .4 .4)} Face 17721 5722 5372 15165 {rgb=(.7 .4 .4)} Face 17722 5372 5359 15165 {rgb=(.7 .4 .4)} Face 17723 5359 5703 15165 {rgb=(.7 .4 .4)} Face 17724 5703 5722 15165 {rgb=(.7 .4 .4)} Face 17725 6092 6101 15166 {rgb=(.7 .4 .4)} Face 17726 6101 5737 15166 {rgb=(.7 .4 .4)} Face 17727 5737 5722 15166 {rgb=(.7 .4 .4)} Face 17728 5722 6092 15166 {rgb=(.7 .4 .4)} Face 17729 5030 4547 15167 {rgb=(.7 .4 .4)} Face 17730 4547 4522 15167 {rgb=(.7 .4 .4)} Face 17731 4522 5013 15167 {rgb=(.7 .4 .4)} Face 17732 5013 5030 15167 {rgb=(.7 .4 .4)} Face 17733 5372 5383 15168 {rgb=(.7 .4 .4)} Face 17734 5383 5027 15168 {rgb=(.7 .4 .4)} Face 17735 5027 5030 15168 {rgb=(.7 .4 .4)} Face 17736 5030 5372 15168 {rgb=(.7 .4 .4)} Face 17737 4547 4508 15169 {rgb=(.7 .4 .4)} Face 17738 4508 4031 15169 {rgb=(.7 .4 .4)} Face 17739 4031 4070 15169 {rgb=(.7 .4 .4)} Face 17740 4070 4547 15169 {rgb=(.7 .4 .4)} Face 17741 3976 3581 15170 {rgb=(.7 .4 .4)} Face 17742 3581 3649 15170 {rgb=(.7 .4 .4)} Face 17743 3649 4031 15170 {rgb=(.7 .4 .4)} Face 17744 4031 3976 15170 {rgb=(.7 .4 .4)} Face 17745 3290 3061 15171 {rgb=(.7 .4 .4)} Face 17746 3061 3112 15171 {rgb=(.7 .4 .4)} Face 17747 3112 3355 15171 {rgb=(.7 .4 .4)} Face 17748 3355 3290 15171 {rgb=(.7 .4 .4)} Face 17749 3581 3506 15172 {rgb=(.7 .4 .4)} Face 17750 3506 3206 15172 {rgb=(.7 .4 .4)} Face 17751 3206 3290 15172 {rgb=(.7 .4 .4)} Face 17752 3290 3581 15172 {rgb=(.7 .4 .4)} Face 17753 2938 3006 15173 {rgb=(.7 .4 .4)} Face 17754 3006 3033 15173 {rgb=(.7 .4 .4)} Face 17755 3033 2987 15173 {rgb=(.7 .4 .4)} Face 17756 2987 2938 15173 {rgb=(.7 .4 .4)} Face 17757 3061 2978 15174 {rgb=(.7 .4 .4)} Face 17758 2978 2880 15174 {rgb=(.7 .4 .4)} Face 17759 2880 2938 15174 {rgb=(.7 .4 .4)} Face 17760 2938 3061 15174 {rgb=(.7 .4 .4)} Face 17761 3142 3223 15175 {rgb=(.7 .4 .4)} Face 17762 3223 3254 15175 {rgb=(.7 .4 .4)} Face 17763 3254 3169 15175 {rgb=(.7 .4 .4)} Face 17764 3169 3142 15175 {rgb=(.7 .4 .4)} Face 17765 3006 2933 15176 {rgb=(.7 .4 .4)} Face 17766 2933 3088 15176 {rgb=(.7 .4 .4)} Face 17767 3088 3142 15176 {rgb=(.7 .4 .4)} Face 17768 3142 3006 15176 {rgb=(.7 .4 .4)} Face 17769 3272 3356 15177 {rgb=(.7 .4 .4)} Face 17770 3356 3394 15177 {rgb=(.7 .4 .4)} Face 17771 3394 3305 15177 {rgb=(.7 .4 .4)} Face 17772 3305 3272 15177 {rgb=(.7 .4 .4)} Face 17773 3223 3175 15178 {rgb=(.7 .4 .4)} Face 17774 3175 3209 15178 {rgb=(.7 .4 .4)} Face 17775 3209 3272 15178 {rgb=(.7 .4 .4)} Face 17776 3272 3223 15178 {rgb=(.7 .4 .4)} Face 17777 3470 3589 15179 {rgb=(.7 .4 .4)} Face 17778 3589 3632 15179 {rgb=(.7 .4 .4)} Face 17779 3632 3507 15179 {rgb=(.7 .4 .4)} Face 17780 3507 3470 15179 {rgb=(.7 .4 .4)} Face 17781 3356 3294 15180 {rgb=(.7 .4 .4)} Face 17782 3294 3406 15180 {rgb=(.7 .4 .4)} Face 17783 3406 3470 15180 {rgb=(.7 .4 .4)} Face 17784 3470 3356 15180 {rgb=(.7 .4 .4)} Face 17785 3729 4056 15181 {rgb=(.7 .4 .4)} Face 17786 4056 4092 15181 {rgb=(.7 .4 .4)} Face 17787 4092 3785 15181 {rgb=(.7 .4 .4)} Face 17788 3785 3729 15181 {rgb=(.7 .4 .4)} Face 17789 3589 3530 15182 {rgb=(.7 .4 .4)} Face 17790 3530 3663 15182 {rgb=(.7 .4 .4)} Face 17791 3663 3729 15182 {rgb=(.7 .4 .4)} Face 17792 3729 3589 15182 {rgb=(.7 .4 .4)} Face 17793 4556 5069 15183 {rgb=(.7 .4 .4)} Face 17794 5069 5083 15183 {rgb=(.7 .4 .4)} Face 17795 5083 4619 15183 {rgb=(.7 .4 .4)} Face 17796 4619 4556 15183 {rgb=(.7 .4 .4)} Face 17797 4056 3998 15184 {rgb=(.7 .4 .4)} Face 17798 3998 4482 15184 {rgb=(.7 .4 .4)} Face 17799 4482 4556 15184 {rgb=(.7 .4 .4)} Face 17800 4556 4056 15184 {rgb=(.7 .4 .4)} Face 17801 5394 5699 15185 {rgb=(.7 .4 .4)} Face 17802 5699 5682 15185 {rgb=(.7 .4 .4)} Face 17803 5682 5390 15185 {rgb=(.7 .4 .4)} Face 17804 5390 5394 15185 {rgb=(.7 .4 .4)} Face 17805 5069 5038 15186 {rgb=(.7 .4 .4)} Face 17806 5038 5381 15186 {rgb=(.7 .4 .4)} Face 17807 5381 5394 15186 {rgb=(.7 .4 .4)} Face 17808 5394 5069 15186 {rgb=(.7 .4 .4)} Face 17809 6023 6566 15187 {rgb=(.7 .4 .4)} Face 17810 6566 6484 15187 {rgb=(.7 .4 .4)} Face 17811 6484 5990 15187 {rgb=(.7 .4 .4)} Face 17812 5990 6023 15187 {rgb=(.7 .4 .4)} Face 17813 5699 5715 15188 {rgb=(.7 .4 .4)} Face 17814 5715 6055 15188 {rgb=(.7 .4 .4)} Face 17815 6055 6023 15188 {rgb=(.7 .4 .4)} Face 17816 6023 5699 15188 {rgb=(.7 .4 .4)} Face 17817 7041 7381 15189 {rgb=(.7 .4 .4)} Face 17818 7381 7295 15189 {rgb=(.7 .4 .4)} Face 17819 7295 6981 15189 {rgb=(.7 .4 .4)} Face 17820 6981 7041 15189 {rgb=(.7 .4 .4)} Face 17821 6566 6623 15190 {rgb=(.7 .4 .4)} Face 17822 6623 7125 15190 {rgb=(.7 .4 .4)} Face 17823 7125 7041 15190 {rgb=(.7 .4 .4)} Face 17824 7041 6566 15190 {rgb=(.7 .4 .4)} Face 17825 7507 7637 15191 {rgb=(.7 .4 .4)} Face 17826 7637 7537 15191 {rgb=(.7 .4 .4)} Face 17827 7537 7431 15191 {rgb=(.7 .4 .4)} Face 17828 7431 7507 15191 {rgb=(.7 .4 .4)} Face 17829 7381 7458 15192 {rgb=(.7 .4 .4)} Face 17830 7458 7607 15192 {rgb=(.7 .4 .4)} Face 17831 7607 7507 15192 {rgb=(.7 .4 .4)} Face 17832 7507 7381 15192 {rgb=(.7 .4 .4)} Face 17833 7743 7828 15193 {rgb=(.7 .4 .4)} Face 17834 7828 7727 15193 {rgb=(.7 .4 .4)} Face 17835 7727 7643 15193 {rgb=(.7 .4 .4)} Face 17836 7643 7743 15193 {rgb=(.7 .4 .4)} Face 17837 7637 7731 15194 {rgb=(.7 .4 .4)} Face 17838 7731 7843 15194 {rgb=(.7 .4 .4)} Face 17839 7843 7743 15194 {rgb=(.7 .4 .4)} Face 17840 7743 7637 15194 {rgb=(.7 .4 .4)} Face 17841 7867 7952 15195 {rgb=(.7 .4 .4)} Face 17842 7952 7873 15195 {rgb=(.7 .4 .4)} Face 17843 7873 7781 15195 {rgb=(.7 .4 .4)} Face 17844 7781 7867 15195 {rgb=(.7 .4 .4)} Face 17845 7828 7912 15196 {rgb=(.7 .4 .4)} Face 17846 7912 7959 15196 {rgb=(.7 .4 .4)} Face 17847 7959 7867 15196 {rgb=(.7 .4 .4)} Face 17848 7867 7828 15196 {rgb=(.7 .4 .4)} Face 17849 8105 8177 15197 {rgb=(.7 .4 .4)} Face 17850 8177 8114 15197 {rgb=(.7 .4 .4)} Face 17851 8114 8006 15197 {rgb=(.7 .4 .4)} Face 17852 8006 8105 15197 {rgb=(.7 .4 .4)} Face 17853 7952 8054 15198 {rgb=(.7 .4 .4)} Face 17854 8054 8202 15198 {rgb=(.7 .4 .4)} Face 17855 8202 8105 15198 {rgb=(.7 .4 .4)} Face 17856 8105 7952 15198 {rgb=(.7 .4 .4)} Face 17857 8120 7884 15199 {rgb=(.7 .4 .4)} Face 17858 7884 7839 15199 {rgb=(.7 .4 .4)} Face 17859 7839 8044 15199 {rgb=(.7 .4 .4)} Face 17860 8044 8120 15199 {rgb=(.7 .4 .4)} Face 17861 8177 8241 15200 {rgb=(.7 .4 .4)} Face 17862 8241 8185 15200 {rgb=(.7 .4 .4)} Face 17863 8185 8120 15200 {rgb=(.7 .4 .4)} Face 17864 8120 8177 15200 {rgb=(.7 .4 .4)} Face 17865 7585 7179 15201 {rgb=(.7 .4 .4)} Face 17866 7179 7140 15201 {rgb=(.7 .4 .4)} Face 17867 7140 7535 15201 {rgb=(.7 .4 .4)} Face 17868 7535 7585 15201 {rgb=(.7 .4 .4)} Face 17869 7884 7943 15202 {rgb=(.7 .4 .4)} Face 17870 7943 7641 15202 {rgb=(.7 .4 .4)} Face 17871 7641 7585 15202 {rgb=(.7 .4 .4)} Face 17872 7585 7884 15202 {rgb=(.7 .4 .4)} Face 17873 6705 6138 15203 {rgb=(.7 .4 .4)} Face 17874 6138 6101 15203 {rgb=(.7 .4 .4)} Face 17875 6101 6656 15203 {rgb=(.7 .4 .4)} Face 17876 6656 6705 15203 {rgb=(.7 .4 .4)} Face 17877 7179 7242 15204 {rgb=(.7 .4 .4)} Face 17878 7242 6741 15204 {rgb=(.7 .4 .4)} Face 17879 6741 6705 15204 {rgb=(.7 .4 .4)} Face 17880 6705 7179 15204 {rgb=(.7 .4 .4)} Face 17881 5749 5389 15205 {rgb=(.7 .4 .4)} Face 17882 5389 5383 15205 {rgb=(.7 .4 .4)} Face 17883 5383 5737 15205 {rgb=(.7 .4 .4)} Face 17884 5737 5749 15205 {rgb=(.7 .4 .4)} Face 17885 6138 6163 15206 {rgb=(.7 .4 .4)} Face 17886 6163 5767 15206 {rgb=(.7 .4 .4)} Face 17887 5767 5749 15206 {rgb=(.7 .4 .4)} Face 17888 5749 6138 15206 {rgb=(.7 .4 .4)} Face 17889 5007 4445 15207 {rgb=(.7 .4 .4)} Face 17890 4445 4508 15207 {rgb=(.7 .4 .4)} Face 17891 4508 5027 15207 {rgb=(.7 .4 .4)} Face 17892 5027 5007 15207 {rgb=(.7 .4 .4)} Face 17893 5389 5373 15208 {rgb=(.7 .4 .4)} Face 17894 5373 4973 15208 {rgb=(.7 .4 .4)} Face 17895 4973 5007 15208 {rgb=(.7 .4 .4)} Face 17896 5007 5389 15208 {rgb=(.7 .4 .4)} Face 17897 4445 4394 15209 {rgb=(.7 .4 .4)} Face 17898 4394 3903 15209 {rgb=(.7 .4 .4)} Face 17899 3903 3976 15209 {rgb=(.7 .4 .4)} Face 17900 3976 4445 15209 {rgb=(.7 .4 .4)} Face 17901 3816 3409 15210 {rgb=(.7 .4 .4)} Face 17902 3409 3506 15210 {rgb=(.7 .4 .4)} Face 17903 3506 3903 15210 {rgb=(.7 .4 .4)} Face 17904 3903 3816 15210 {rgb=(.7 .4 .4)} Face 17905 3092 2854 15211 {rgb=(.7 .4 .4)} Face 17906 2854 2978 15211 {rgb=(.7 .4 .4)} Face 17907 2978 3206 15211 {rgb=(.7 .4 .4)} Face 17908 3206 3092 15211 {rgb=(.7 .4 .4)} Face 17909 3409 3361 15212 {rgb=(.7 .4 .4)} Face 17910 3361 3036 15212 {rgb=(.7 .4 .4)} Face 17911 3036 3092 15212 {rgb=(.7 .4 .4)} Face 17912 3092 3409 15212 {rgb=(.7 .4 .4)} Face 17913 2799 2832 15213 {rgb=(.7 .4 .4)} Face 17914 2832 2933 15213 {rgb=(.7 .4 .4)} Face 17915 2933 2880 15213 {rgb=(.7 .4 .4)} Face 17916 2880 2799 15213 {rgb=(.7 .4 .4)} Face 17917 2854 2811 15214 {rgb=(.7 .4 .4)} Face 17918 2811 2757 15214 {rgb=(.7 .4 .4)} Face 17919 2757 2799 15214 {rgb=(.7 .4 .4)} Face 17920 2799 2854 15214 {rgb=(.7 .4 .4)} Face 17921 2969 3071 15215 {rgb=(.7 .4 .4)} Face 17922 3071 3175 15215 {rgb=(.7 .4 .4)} Face 17923 3175 3088 15215 {rgb=(.7 .4 .4)} Face 17924 3088 2969 15215 {rgb=(.7 .4 .4)} Face 17925 2832 2792 15216 {rgb=(.7 .4 .4)} Face 17926 2792 2896 15216 {rgb=(.7 .4 .4)} Face 17927 2896 2969 15216 {rgb=(.7 .4 .4)} Face 17928 2969 2832 15216 {rgb=(.7 .4 .4)} Face 17929 3109 3188 15217 {rgb=(.7 .4 .4)} Face 17930 3188 3294 15217 {rgb=(.7 .4 .4)} Face 17931 3294 3209 15217 {rgb=(.7 .4 .4)} Face 17932 3209 3109 15217 {rgb=(.7 .4 .4)} Face 17933 3071 3007 15218 {rgb=(.7 .4 .4)} Face 17934 3007 3054 15218 {rgb=(.7 .4 .4)} Face 17935 3054 3109 15218 {rgb=(.7 .4 .4)} Face 17936 3109 3071 15218 {rgb=(.7 .4 .4)} Face 17937 3298 3427 15219 {rgb=(.7 .4 .4)} Face 17938 3427 3530 15219 {rgb=(.7 .4 .4)} Face 17939 3530 3406 15219 {rgb=(.7 .4 .4)} Face 17940 3406 3298 15219 {rgb=(.7 .4 .4)} Face 17941 3188 3136 15220 {rgb=(.7 .4 .4)} Face 17942 3136 3242 15220 {rgb=(.7 .4 .4)} Face 17943 3242 3298 15220 {rgb=(.7 .4 .4)} Face 17944 3298 3188 15220 {rgb=(.7 .4 .4)} Face 17945 3569 3912 15221 {rgb=(.7 .4 .4)} Face 17946 3912 3998 15221 {rgb=(.7 .4 .4)} Face 17947 3998 3663 15221 {rgb=(.7 .4 .4)} Face 17948 3663 3569 15221 {rgb=(.7 .4 .4)} Face 17949 3427 3383 15222 {rgb=(.7 .4 .4)} Face 17950 3383 3532 15222 {rgb=(.7 .4 .4)} Face 17951 3532 3569 15222 {rgb=(.7 .4 .4)} Face 17952 3569 3427 15222 {rgb=(.7 .4 .4)} Face 17953 4413 4994 15223 {rgb=(.7 .4 .4)} Face 17954 4994 5038 15223 {rgb=(.7 .4 .4)} Face 17955 5038 4482 15223 {rgb=(.7 .4 .4)} Face 17956 4482 4413 15223 {rgb=(.7 .4 .4)} Face 17957 3912 3873 15224 {rgb=(.7 .4 .4)} Face 17958 3873 4379 15224 {rgb=(.7 .4 .4)} Face 17959 4379 4413 15224 {rgb=(.7 .4 .4)} Face 17960 4413 3912 15224 {rgb=(.7 .4 .4)} Face 17961 5363 5724 15225 {rgb=(.7 .4 .4)} Face 17962 5724 5715 15225 {rgb=(.7 .4 .4)} Face 17963 5715 5381 15225 {rgb=(.7 .4 .4)} Face 17964 5381 5363 15225 {rgb=(.7 .4 .4)} Face 17965 4994 4976 15226 {rgb=(.7 .4 .4)} Face 17966 4976 5350 15226 {rgb=(.7 .4 .4)} Face 17967 5350 5363 15226 {rgb=(.7 .4 .4)} Face 17968 5363 4994 15226 {rgb=(.7 .4 .4)} Face 17969 6095 6685 15227 {rgb=(.7 .4 .4)} Face 17970 6685 6623 15227 {rgb=(.7 .4 .4)} Face 17971 6623 6055 15227 {rgb=(.7 .4 .4)} Face 17972 6055 6095 15227 {rgb=(.7 .4 .4)} Face 17973 5724 5732 15228 {rgb=(.7 .4 .4)} Face 17974 5732 6107 15228 {rgb=(.7 .4 .4)} Face 17975 6107 6095 15228 {rgb=(.7 .4 .4)} Face 17976 6095 5724 15228 {rgb=(.7 .4 .4)} Face 17977 7191 7543 15229 {rgb=(.7 .4 .4)} Face 17978 7543 7458 15229 {rgb=(.7 .4 .4)} Face 17979 7458 7125 15229 {rgb=(.7 .4 .4)} Face 17980 7125 7191 15229 {rgb=(.7 .4 .4)} Face 17981 6685 6716 15230 {rgb=(.7 .4 .4)} Face 17982 6716 7253 15230 {rgb=(.7 .4 .4)} Face 17983 7253 7191 15230 {rgb=(.7 .4 .4)} Face 17984 7191 6685 15230 {rgb=(.7 .4 .4)} Face 17985 7699 7837 15231 {rgb=(.7 .4 .4)} Face 17986 7837 7731 15231 {rgb=(.7 .4 .4)} Face 17987 7731 7607 15231 {rgb=(.7 .4 .4)} Face 17988 7607 7699 15231 {rgb=(.7 .4 .4)} Face 17989 7543 7598 15232 {rgb=(.7 .4 .4)} Face 17990 7598 7750 15232 {rgb=(.7 .4 .4)} Face 17991 7750 7699 15232 {rgb=(.7 .4 .4)} Face 17992 7699 7543 15232 {rgb=(.7 .4 .4)} Face 17993 7947 8032 15233 {rgb=(.7 .4 .4)} Face 17994 8032 7912 15233 {rgb=(.7 .4 .4)} Face 17995 7912 7843 15233 {rgb=(.7 .4 .4)} Face 17996 7843 7947 15233 {rgb=(.7 .4 .4)} Face 17997 7837 7882 15234 {rgb=(.7 .4 .4)} Face 17998 7882 7999 15234 {rgb=(.7 .4 .4)} Face 17999 7999 7947 15234 {rgb=(.7 .4 .4)} Face 18000 7947 7837 15234 {rgb=(.7 .4 .4)} Face 18001 8085 8186 15235 {rgb=(.7 .4 .4)} Face 18002 8186 8054 15235 {rgb=(.7 .4 .4)} Face 18003 8054 7959 15235 {rgb=(.7 .4 .4)} Face 18004 7959 8085 15235 {rgb=(.7 .4 .4)} Face 18005 8032 8103 15236 {rgb=(.7 .4 .4)} Face 18006 8103 8156 15236 {rgb=(.7 .4 .4)} Face 18007 8156 8085 15236 {rgb=(.7 .4 .4)} Face 18008 8085 8032 15236 {rgb=(.7 .4 .4)} Face 18009 8291 8328 15237 {rgb=(.7 .4 .4)} Face 18010 8328 8241 15237 {rgb=(.7 .4 .4)} Face 18011 8241 8202 15237 {rgb=(.7 .4 .4)} Face 18012 8202 8291 15237 {rgb=(.7 .4 .4)} Face 18013 8186 8229 15238 {rgb=(.7 .4 .4)} Face 18014 8229 8333 15238 {rgb=(.7 .4 .4)} Face 18015 8333 8291 15238 {rgb=(.7 .4 .4)} Face 18016 8291 8186 15238 {rgb=(.7 .4 .4)} Face 18017 8268 8046 15239 {rgb=(.7 .4 .4)} Face 18018 8046 7943 15239 {rgb=(.7 .4 .4)} Face 18019 7943 8185 15239 {rgb=(.7 .4 .4)} Face 18020 8185 8268 15239 {rgb=(.7 .4 .4)} Face 18021 8328 8364 15240 {rgb=(.7 .4 .4)} Face 18022 8364 8310 15240 {rgb=(.7 .4 .4)} Face 18023 8310 8268 15240 {rgb=(.7 .4 .4)} Face 18024 8268 8328 15240 {rgb=(.7 .4 .4)} Face 18025 7722 7325 15241 {rgb=(.7 .4 .4)} Face 18026 7325 7242 15241 {rgb=(.7 .4 .4)} Face 18027 7242 7641 15241 {rgb=(.7 .4 .4)} Face 18028 7641 7722 15241 {rgb=(.7 .4 .4)} Face 18029 8046 8122 15242 {rgb=(.7 .4 .4)} Face 18030 8122 7775 15242 {rgb=(.7 .4 .4)} Face 18031 7775 7722 15242 {rgb=(.7 .4 .4)} Face 18032 7722 8046 15242 {rgb=(.7 .4 .4)} Face 18033 6791 6216 15243 {rgb=(.7 .4 .4)} Face 18034 6216 6163 15243 {rgb=(.7 .4 .4)} Face 18035 6163 6741 15243 {rgb=(.7 .4 .4)} Face 18036 6741 6791 15243 {rgb=(.7 .4 .4)} Face 18037 7325 7363 15244 {rgb=(.7 .4 .4)} Face 18038 7363 6816 15244 {rgb=(.7 .4 .4)} Face 18039 6816 6791 15244 {rgb=(.7 .4 .4)} Face 18040 6791 7325 15244 {rgb=(.7 .4 .4)} Face 18041 5781 5355 15245 {rgb=(.7 .4 .4)} Face 18042 5355 5373 15245 {rgb=(.7 .4 .4)} Face 18043 5373 5767 15245 {rgb=(.7 .4 .4)} Face 18044 5767 5781 15245 {rgb=(.7 .4 .4)} Face 18045 6216 6255 15246 {rgb=(.7 .4 .4)} Face 18046 6255 5788 15246 {rgb=(.7 .4 .4)} Face 18047 5788 5781 15246 {rgb=(.7 .4 .4)} Face 18048 5781 6216 15246 {rgb=(.7 .4 .4)} Face 18049 4930 4320 15247 {rgb=(.7 .4 .4)} Face 18050 4320 4394 15247 {rgb=(.7 .4 .4)} Face 18051 4394 4973 15247 {rgb=(.7 .4 .4)} Face 18052 4973 4930 15247 {rgb=(.7 .4 .4)} Face 18053 5355 5345 15248 {rgb=(.7 .4 .4)} Face 18054 5345 4902 15248 {rgb=(.7 .4 .4)} Face 18055 4902 4930 15248 {rgb=(.7 .4 .4)} Face 18056 4930 5355 15248 {rgb=(.7 .4 .4)} Face 18057 4320 4300 15249 {rgb=(.7 .4 .4)} Face 18058 4300 3755 15249 {rgb=(.7 .4 .4)} Face 18059 3755 3816 15249 {rgb=(.7 .4 .4)} Face 18060 3816 4320 15249 {rgb=(.7 .4 .4)} Face 18061 3756 3362 15250 {rgb=(.7 .4 .4)} Face 18062 3362 3361 15250 {rgb=(.7 .4 .4)} Face 18063 3361 3755 15250 {rgb=(.7 .4 .4)} Face 18064 3755 3756 15250 {rgb=(.7 .4 .4)} Face 18065 3040 2815 15251 {rgb=(.7 .4 .4)} Face 18066 2815 2811 15251 {rgb=(.7 .4 .4)} Face 18067 2811 3036 15251 {rgb=(.7 .4 .4)} Face 18068 3036 3040 15251 {rgb=(.7 .4 .4)} Face 18069 3362 4437 15252 {rgb=(.7 .4 .4)} Face 18070 4437 4144 15252 {rgb=(.7 .4 .4)} Face 18071 4144 3040 15252 {rgb=(.7 .4 .4)} Face 18072 3040 3362 15252 {rgb=(.7 .4 .4)} Face 18073 2762 2796 15253 {rgb=(.7 .4 .4)} Face 18074 2796 2792 15253 {rgb=(.7 .4 .4)} Face 18075 2792 2757 15253 {rgb=(.7 .4 .4)} Face 18076 2757 2762 15253 {rgb=(.7 .4 .4)} Face 18077 2815 4144 15254 {rgb=(.7 .4 .4)} Face 18078 4144 4025 15254 {rgb=(.7 .4 .4)} Face 18079 4025 2762 15254 {rgb=(.7 .4 .4)} Face 18080 2762 2815 15254 {rgb=(.7 .4 .4)} Face 18081 2902 3011 15255 {rgb=(.7 .4 .4)} Face 18082 3011 3007 15255 {rgb=(.7 .4 .4)} Face 18083 3007 2896 15255 {rgb=(.7 .4 .4)} Face 18084 2896 2902 15255 {rgb=(.7 .4 .4)} Face 18085 2796 4025 15256 {rgb=(.7 .4 .4)} Face 18086 4025 4057 15256 {rgb=(.7 .4 .4)} Face 18087 4057 2902 15256 {rgb=(.7 .4 .4)} Face 18088 2902 2796 15256 {rgb=(.7 .4 .4)} Face 18089 3060 3137 15257 {rgb=(.7 .4 .4)} Face 18090 3137 3136 15257 {rgb=(.7 .4 .4)} Face 18091 3136 3054 15257 {rgb=(.7 .4 .4)} Face 18092 3054 3060 15257 {rgb=(.7 .4 .4)} Face 18093 3011 4057 15258 {rgb=(.7 .4 .4)} Face 18094 4057 4109 15258 {rgb=(.7 .4 .4)} Face 18095 4109 3060 15258 {rgb=(.7 .4 .4)} Face 18096 3060 3011 15258 {rgb=(.7 .4 .4)} Face 18097 3247 3385 15259 {rgb=(.7 .4 .4)} Face 18098 3385 3383 15259 {rgb=(.7 .4 .4)} Face 18099 3383 3242 15259 {rgb=(.7 .4 .4)} Face 18100 3242 3247 15259 {rgb=(.7 .4 .4)} Face 18101 3137 4109 15260 {rgb=(.7 .4 .4)} Face 18102 4109 4276 15260 {rgb=(.7 .4 .4)} Face 18103 4276 3247 15260 {rgb=(.7 .4 .4)} Face 18104 3247 3137 15260 {rgb=(.7 .4 .4)} Face 18105 3535 3874 15261 {rgb=(.7 .4 .4)} Face 18106 3874 3873 15261 {rgb=(.7 .4 .4)} Face 18107 3873 3532 15261 {rgb=(.7 .4 .4)} Face 18108 3532 3535 15261 {rgb=(.7 .4 .4)} Face 18109 3385 4276 15262 {rgb=(.7 .4 .4)} Face 18110 4276 4514 15262 {rgb=(.7 .4 .4)} Face 18111 4514 3535 15262 {rgb=(.7 .4 .4)} Face 18112 3535 3385 15262 {rgb=(.7 .4 .4)} Face 18113 4378 4975 15263 {rgb=(.7 .4 .4)} Face 18114 4975 4976 15263 {rgb=(.7 .4 .4)} Face 18115 4976 4379 15263 {rgb=(.7 .4 .4)} Face 18116 4379 4378 15263 {rgb=(.7 .4 .4)} Face 18117 3874 4514 15264 {rgb=(.7 .4 .4)} Face 18118 4514 5152 15264 {rgb=(.7 .4 .4)} Face 18119 5152 4378 15264 {rgb=(.7 .4 .4)} Face 18120 4378 3874 15264 {rgb=(.7 .4 .4)} Face 18121 5349 5731 15265 {rgb=(.7 .4 .4)} Face 18122 5731 5732 15265 {rgb=(.7 .4 .4)} Face 18123 5732 5350 15265 {rgb=(.7 .4 .4)} Face 18124 5350 5349 15265 {rgb=(.7 .4 .4)} Face 18125 4975 5152 15266 {rgb=(.7 .4 .4)} Face 18126 5152 5561 15266 {rgb=(.7 .4 .4)} Face 18127 5561 5349 15266 {rgb=(.7 .4 .4)} Face 18128 5349 4975 15266 {rgb=(.7 .4 .4)} Face 18129 6106 6715 15267 {rgb=(.7 .4 .4)} Face 18130 6715 6716 15267 {rgb=(.7 .4 .4)} Face 18131 6716 6107 15267 {rgb=(.7 .4 .4)} Face 18132 6107 6106 15267 {rgb=(.7 .4 .4)} Face 18133 5731 5561 15268 {rgb=(.7 .4 .4)} Face 18134 5561 5973 15268 {rgb=(.7 .4 .4)} Face 18135 5973 6106 15268 {rgb=(.7 .4 .4)} Face 18136 6106 5731 15268 {rgb=(.7 .4 .4)} Face 18137 7252 7597 15269 {rgb=(.7 .4 .4)} Face 18138 7597 7598 15269 {rgb=(.7 .4 .4)} Face 18139 7598 7253 15269 {rgb=(.7 .4 .4)} Face 18140 7253 7252 15269 {rgb=(.7 .4 .4)} Face 18141 6715 5973 15270 {rgb=(.7 .4 .4)} Face 18142 5973 6625 15270 {rgb=(.7 .4 .4)} Face 18143 6625 7252 15270 {rgb=(.7 .4 .4)} Face 18144 7252 6715 15270 {rgb=(.7 .4 .4)} Face 18145 7748 7880 15271 {rgb=(.7 .4 .4)} Face 18146 7880 7882 15271 {rgb=(.7 .4 .4)} Face 18147 7882 7750 15271 {rgb=(.7 .4 .4)} Face 18148 7750 7748 15271 {rgb=(.7 .4 .4)} Face 18149 7597 6625 15272 {rgb=(.7 .4 .4)} Face 18150 6625 6857 15272 {rgb=(.7 .4 .4)} Face 18151 6857 7748 15272 {rgb=(.7 .4 .4)} Face 18152 7748 7597 15272 {rgb=(.7 .4 .4)} Face 18153 7996 8101 15273 {rgb=(.7 .4 .4)} Face 18154 8101 8103 15273 {rgb=(.7 .4 .4)} Face 18155 8103 7999 15273 {rgb=(.7 .4 .4)} Face 18156 7999 7996 15273 {rgb=(.7 .4 .4)} Face 18157 7880 6857 15274 {rgb=(.7 .4 .4)} Face 18158 6857 7004 15274 {rgb=(.7 .4 .4)} Face 18159 7004 7996 15274 {rgb=(.7 .4 .4)} Face 18160 7996 7880 15274 {rgb=(.7 .4 .4)} Face 18161 8152 8226 15275 {rgb=(.7 .4 .4)} Face 18162 8226 8229 15275 {rgb=(.7 .4 .4)} Face 18163 8229 8156 15275 {rgb=(.7 .4 .4)} Face 18164 8156 8152 15275 {rgb=(.7 .4 .4)} Face 18165 8101 7004 15276 {rgb=(.7 .4 .4)} Face 18166 7004 7045 15276 {rgb=(.7 .4 .4)} Face 18167 7045 8152 15276 {rgb=(.7 .4 .4)} Face 18168 8152 8101 15276 {rgb=(.7 .4 .4)} Face 18169 8331 8362 15277 {rgb=(.7 .4 .4)} Face 18170 8362 8364 15277 {rgb=(.7 .4 .4)} Face 18171 8364 8333 15277 {rgb=(.7 .4 .4)} Face 18172 8333 8331 15277 {rgb=(.7 .4 .4)} Face 18173 8226 7045 15278 {rgb=(.7 .4 .4)} Face 18174 7045 7081 15278 {rgb=(.7 .4 .4)} Face 18175 7081 8331 15278 {rgb=(.7 .4 .4)} Face 18176 8331 8226 15278 {rgb=(.7 .4 .4)} Face 18177 8306 8112 15279 {rgb=(.7 .4 .4)} Face 18178 8112 8122 15279 {rgb=(.7 .4 .4)} Face 18179 8122 8310 15279 {rgb=(.7 .4 .4)} Face 18180 8310 8306 15279 {rgb=(.7 .4 .4)} Face 18181 8362 7081 15280 {rgb=(.7 .4 .4)} Face 18182 7081 6972 15280 {rgb=(.7 .4 .4)} Face 18183 6972 8306 15280 {rgb=(.7 .4 .4)} Face 18184 8306 8362 15280 {rgb=(.7 .4 .4)} Face 18185 7771 7362 15281 {rgb=(.7 .4 .4)} Face 18186 7362 7363 15281 {rgb=(.7 .4 .4)} Face 18187 7363 7775 15281 {rgb=(.7 .4 .4)} Face 18188 7775 7771 15281 {rgb=(.7 .4 .4)} Face 18189 8112 6972 15282 {rgb=(.7 .4 .4)} Face 18190 6972 6691 15282 {rgb=(.7 .4 .4)} Face 18191 6691 7771 15282 {rgb=(.7 .4 .4)} Face 18192 7771 8112 15282 {rgb=(.7 .4 .4)} Face 18193 6815 6254 15283 {rgb=(.7 .4 .4)} Face 18194 6254 6255 15283 {rgb=(.7 .4 .4)} Face 18195 6255 6816 15283 {rgb=(.7 .4 .4)} Face 18196 6816 6815 15283 {rgb=(.7 .4 .4)} Face 18197 7362 6691 15284 {rgb=(.7 .4 .4)} Face 18198 6691 6038 15284 {rgb=(.7 .4 .4)} Face 18199 6038 6815 15284 {rgb=(.7 .4 .4)} Face 18200 6815 7362 15284 {rgb=(.7 .4 .4)} Face 18201 5787 5344 15285 {rgb=(.7 .4 .4)} Face 18202 5344 5345 15285 {rgb=(.7 .4 .4)} Face 18203 5345 5788 15285 {rgb=(.7 .4 .4)} Face 18204 5788 5787 15285 {rgb=(.7 .4 .4)} Face 18205 6254 6038 15286 {rgb=(.7 .4 .4)} Face 18206 6038 5567 15286 {rgb=(.7 .4 .4)} Face 18207 5567 5787 15286 {rgb=(.7 .4 .4)} Face 18208 5787 6254 15286 {rgb=(.7 .4 .4)} Face 18209 4901 4301 15287 {rgb=(.7 .4 .4)} Face 18210 4301 4300 15287 {rgb=(.7 .4 .4)} Face 18211 4300 4902 15287 {rgb=(.7 .4 .4)} Face 18212 4902 4901 15287 {rgb=(.7 .4 .4)} Face 18213 5344 5567 15288 {rgb=(.7 .4 .4)} Face 18214 5567 5099 15288 {rgb=(.7 .4 .4)} Face 18215 5099 4901 15288 {rgb=(.7 .4 .4)} Face 18216 4901 5344 15288 {rgb=(.7 .4 .4)} Face 18217 4301 5099 15289 {rgb=(.7 .4 .4)} Face 18218 5099 4437 15289 {rgb=(.7 .4 .4)} Face 18219 4437 3756 15289 {rgb=(.7 .4 .4)} Face 18220 3756 4301 15289 {rgb=(.7 .4 .4)} Face 18221 2423 2355 15290 {rgb=(.7 .4 .4)} Face 18222 2355 2435 15290 {rgb=(.7 .4 .4)} Face 18223 2435 2533 15290 {rgb=(.7 .4 .4)} Face 18224 2533 2423 15290 {rgb=(.7 .4 .4)} Face 18225 2108 2175 15291 {rgb=(.7 .4 .4)} Face 18226 2175 2138 15291 {rgb=(.7 .4 .4)} Face 18227 2138 2105 15291 {rgb=(.7 .4 .4)} Face 18228 2105 2108 15291 {rgb=(.7 .4 .4)} Face 18229 1965 2012 15292 {rgb=(.7 .4 .4)} Face 18230 2012 2140 15292 {rgb=(.7 .4 .4)} Face 18231 2140 2118 15292 {rgb=(.7 .4 .4)} Face 18232 2118 1965 15292 {rgb=(.7 .4 .4)} Face 18233 1869 1910 15293 {rgb=(.7 .4 .4)} Face 18234 1910 2078 15293 {rgb=(.7 .4 .4)} Face 18235 2078 2052 15293 {rgb=(.7 .4 .4)} Face 18236 2052 1869 15293 {rgb=(.7 .4 .4)} Face 18237 1884 1835 15294 {rgb=(.7 .4 .4)} Face 18238 1835 1786 15294 {rgb=(.7 .4 .4)} Face 18239 1786 1826 15294 {rgb=(.7 .4 .4)} Face 18240 1826 1884 15294 {rgb=(.7 .4 .4)} Face 18241 1974 1926 15295 {rgb=(.7 .4 .4)} Face 18242 1926 1892 15295 {rgb=(.7 .4 .4)} Face 18243 1892 1955 15295 {rgb=(.7 .4 .4)} Face 18244 1955 1974 15295 {rgb=(.7 .4 .4)} Face 18245 1793 1770 15296 {rgb=(.7 .4 .4)} Face 18246 1770 1746 15296 {rgb=(.7 .4 .4)} Face 18247 1746 1767 15296 {rgb=(.7 .4 .4)} Face 18248 1767 1793 15296 {rgb=(.7 .4 .4)} Face 18249 1721 1747 15297 {rgb=(.7 .4 .4)} Face 18250 1747 1733 15297 {rgb=(.7 .4 .4)} Face 18251 1733 1717 15297 {rgb=(.7 .4 .4)} Face 18252 1717 1721 15297 {rgb=(.7 .4 .4)} Face 18253 2032 1971 15298 {rgb=(.7 .4 .4)} Face 18254 1971 1896 15298 {rgb=(.7 .4 .4)} Face 18255 1896 1967 15298 {rgb=(.7 .4 .4)} Face 18256 1967 2032 15298 {rgb=(.7 .4 .4)} Face 18257 2117 2045 15299 {rgb=(.7 .4 .4)} Face 18258 2045 2086 15299 {rgb=(.7 .4 .4)} Face 18259 2086 2134 15299 {rgb=(.7 .4 .4)} Face 18260 2134 2117 15299 {rgb=(.7 .4 .4)} Face 18261 1839 1787 15300 {rgb=(.7 .4 .4)} Face 18262 1787 1845 15300 {rgb=(.7 .4 .4)} Face 18263 1845 1906 15300 {rgb=(.7 .4 .4)} Face 18264 1906 1839 15300 {rgb=(.7 .4 .4)} Face 18265 1790 1764 15301 {rgb=(.7 .4 .4)} Face 18266 1764 1745 15301 {rgb=(.7 .4 .4)} Face 18267 1745 1765 15301 {rgb=(.7 .4 .4)} Face 18268 1765 1790 15301 {rgb=(.7 .4 .4)} Face 18269 1754 1731 15302 {rgb=(.7 .4 .4)} Face 18270 1731 1722 15302 {rgb=(.7 .4 .4)} Face 18271 1722 1758 15302 {rgb=(.7 .4 .4)} Face 18272 1758 1754 15302 {rgb=(.7 .4 .4)} Face 18273 1716 1723 15303 {rgb=(.7 .4 .4)} Face 18274 1723 1724 15303 {rgb=(.7 .4 .4)} Face 18275 1724 1715 15303 {rgb=(.7 .4 .4)} Face 18276 1715 1716 15303 {rgb=(.7 .4 .4)} Face 18277 1756 1725 15304 {rgb=(.7 .4 .4)} Face 18278 1725 1729 15304 {rgb=(.7 .4 .4)} Face 18279 1729 1757 15304 {rgb=(.7 .4 .4)} Face 18280 1757 1756 15304 {rgb=(.7 .4 .4)} Face 18281 1714 1734 15305 {rgb=(.7 .4 .4)} Face 18282 1734 1740 15305 {rgb=(.7 .4 .4)} Face 18283 1740 1719 15305 {rgb=(.7 .4 .4)} Face 18284 1719 1714 15305 {rgb=(.7 .4 .4)} Face 18285 1760 1730 15306 {rgb=(.7 .4 .4)} Face 18286 1730 1735 15306 {rgb=(.7 .4 .4)} Face 18287 1735 1763 15306 {rgb=(.7 .4 .4)} Face 18288 1763 1760 15306 {rgb=(.7 .4 .4)} Face 18289 1727 1750 15307 {rgb=(.7 .4 .4)} Face 18290 1750 1759 15307 {rgb=(.7 .4 .4)} Face 18291 1759 1744 15307 {rgb=(.7 .4 .4)} Face 18292 1744 1727 15307 {rgb=(.7 .4 .4)} Face 18293 1769 1742 15308 {rgb=(.7 .4 .4)} Face 18294 1742 1753 15308 {rgb=(.7 .4 .4)} Face 18295 1753 1778 15308 {rgb=(.7 .4 .4)} Face 18296 1778 1769 15308 {rgb=(.7 .4 .4)} Face 18297 1761 1776 15309 {rgb=(.7 .4 .4)} Face 18298 1776 1796 15309 {rgb=(.7 .4 .4)} Face 18299 1796 1779 15309 {rgb=(.7 .4 .4)} Face 18300 1779 1761 15309 {rgb=(.7 .4 .4)} Face 18301 1782 1766 15310 {rgb=(.7 .4 .4)} Face 18302 1766 1783 15310 {rgb=(.7 .4 .4)} Face 18303 1783 1806 15310 {rgb=(.7 .4 .4)} Face 18304 1806 1782 15310 {rgb=(.7 .4 .4)} Face 18305 1803 1837 15311 {rgb=(.7 .4 .4)} Face 18306 1837 1894 15311 {rgb=(.7 .4 .4)} Face 18307 1894 1856 15311 {rgb=(.7 .4 .4)} Face 18308 1856 1803 15311 {rgb=(.7 .4 .4)} Face 18309 1857 1819 15312 {rgb=(.7 .4 .4)} Face 18310 1819 1883 15312 {rgb=(.7 .4 .4)} Face 18311 1883 1900 15312 {rgb=(.7 .4 .4)} Face 18312 1900 1857 15312 {rgb=(.7 .4 .4)} Face 18313 1912 1969 15313 {rgb=(.7 .4 .4)} Face 18314 1969 2014 15313 {rgb=(.7 .4 .4)} Face 18315 2014 1941 15313 {rgb=(.7 .4 .4)} Face 18316 1941 1912 15313 {rgb=(.7 .4 .4)} Face 18317 1990 1987 15314 {rgb=(.7 .4 .4)} Face 18318 1987 1963 15314 {rgb=(.7 .4 .4)} Face 18319 1963 1983 15314 {rgb=(.7 .4 .4)} Face 18320 1983 1990 15314 {rgb=(.7 .4 .4)} Face 18321 2055 2063 15315 {rgb=(.7 .4 .4)} Face 18322 2063 2061 15315 {rgb=(.7 .4 .4)} Face 18323 2061 2029 15315 {rgb=(.7 .4 .4)} Face 18324 2029 2055 15315 {rgb=(.7 .4 .4)} Face 18325 2001 2017 15316 {rgb=(.7 .4 .4)} Face 18326 2017 2067 15316 {rgb=(.7 .4 .4)} Face 18327 2067 2062 15316 {rgb=(.7 .4 .4)} Face 18328 2062 2001 15316 {rgb=(.7 .4 .4)} Face 18329 2152 2145 15317 {rgb=(.7 .4 .4)} Face 18330 2145 2160 15317 {rgb=(.7 .4 .4)} Face 18331 2160 2169 15317 {rgb=(.7 .4 .4)} Face 18332 2169 2152 15317 {rgb=(.7 .4 .4)} Face 18333 2200 2178 15318 {rgb=(.7 .4 .4)} Face 18334 2178 2204 15318 {rgb=(.7 .4 .4)} Face 18335 2204 2219 15318 {rgb=(.7 .4 .4)} Face 18336 2219 2200 15318 {rgb=(.7 .4 .4)} Face 18337 1956 2042 15319 {rgb=(.7 .4 .4)} Face 18338 2042 2013 15319 {rgb=(.7 .4 .4)} Face 18339 2013 1916 15319 {rgb=(.7 .4 .4)} Face 18340 1916 1956 15319 {rgb=(.7 .4 .4)} Face 18341 1936 1931 15320 {rgb=(.7 .4 .4)} Face 18342 1931 1903 15320 {rgb=(.7 .4 .4)} Face 18343 1903 1907 15320 {rgb=(.7 .4 .4)} Face 18344 1907 1936 15320 {rgb=(.7 .4 .4)} Face 18345 1862 1867 15321 {rgb=(.7 .4 .4)} Face 18346 1867 1860 15321 {rgb=(.7 .4 .4)} Face 18347 1860 1849 15321 {rgb=(.7 .4 .4)} Face 18348 1849 1862 15321 {rgb=(.7 .4 .4)} Face 18349 1822 1802 15322 {rgb=(.7 .4 .4)} Face 18350 1802 1816 15322 {rgb=(.7 .4 .4)} Face 18351 1816 1842 15322 {rgb=(.7 .4 .4)} Face 18352 1842 1822 15322 {rgb=(.7 .4 .4)} Face 18353 1858 1886 15323 {rgb=(.7 .4 .4)} Face 18354 1886 1893 15323 {rgb=(.7 .4 .4)} Face 18355 1893 1855 15323 {rgb=(.7 .4 .4)} Face 18356 1855 1858 15323 {rgb=(.7 .4 .4)} Face 18357 1854 1851 15324 {rgb=(.7 .4 .4)} Face 18358 1851 1876 15324 {rgb=(.7 .4 .4)} Face 18359 1876 1865 15324 {rgb=(.7 .4 .4)} Face 18360 1865 1854 15324 {rgb=(.7 .4 .4)} Face 18361 1830 1882 15325 {rgb=(.7 .4 .4)} Face 18362 1882 1881 15325 {rgb=(.7 .4 .4)} Face 18363 1881 1823 15325 {rgb=(.7 .4 .4)} Face 18364 1823 1830 15325 {rgb=(.7 .4 .4)} Face 18365 1890 1905 15326 {rgb=(.7 .4 .4)} Face 18366 1905 1846 15326 {rgb=(.7 .4 .4)} Face 18367 1846 1825 15326 {rgb=(.7 .4 .4)} Face 18368 1825 1890 15326 {rgb=(.7 .4 .4)} Face 18369 1902 1868 15327 {rgb=(.7 .4 .4)} Face 18370 1868 1924 15327 {rgb=(.7 .4 .4)} Face 18371 1924 1932 15327 {rgb=(.7 .4 .4)} Face 18372 1932 1902 15327 {rgb=(.7 .4 .4)} Face 18373 2036 2047 15328 {rgb=(.7 .4 .4)} Face 18374 2047 2039 15328 {rgb=(.7 .4 .4)} Face 18375 2039 1989 15328 {rgb=(.7 .4 .4)} Face 18376 1989 2036 15328 {rgb=(.7 .4 .4)} Face 18377 1820 1909 15329 {rgb=(.7 .4 .4)} Face 18378 1909 1966 15329 {rgb=(.7 .4 .4)} Face 18379 1966 1813 15329 {rgb=(.7 .4 .4)} Face 18380 1813 1820 15329 {rgb=(.7 .4 .4)} Face 18381 2077 2064 15330 {rgb=(.7 .4 .4)} Face 18382 2064 2124 15330 {rgb=(.7 .4 .4)} Face 18383 2124 2132 15330 {rgb=(.7 .4 .4)} Face 18384 2132 2077 15330 {rgb=(.7 .4 .4)} Face 18385 2153 2073 15331 {rgb=(.7 .4 .4)} Face 18386 2073 2037 15331 {rgb=(.7 .4 .4)} Face 18387 2037 2079 15331 {rgb=(.7 .4 .4)} Face 18388 2079 2153 15331 {rgb=(.7 .4 .4)} Face 18389 1848 1978 15332 {rgb=(.7 .4 .4)} Face 18390 1978 1927 15332 {rgb=(.7 .4 .4)} Face 18391 1927 1844 15332 {rgb=(.7 .4 .4)} Face 18392 1844 1848 15332 {rgb=(.7 .4 .4)} Face 18393 2171 2296 15333 {rgb=(.7 .4 .4)} Face 18394 2296 2254 15333 {rgb=(.7 .4 .4)} Face 18395 2254 2135 15333 {rgb=(.7 .4 .4)} Face 18396 2135 2171 15333 {rgb=(.7 .4 .4)} Face 18397 1827 1970 15334 {rgb=(.7 .4 .4)} Face 18398 1970 1993 15334 {rgb=(.7 .4 .4)} Face 18399 1993 1828 15334 {rgb=(.7 .4 .4)} Face 18400 1828 1827 15334 {rgb=(.7 .4 .4)} Face 18401 1853 2003 15335 {rgb=(.7 .4 .4)} Face 18402 2003 2026 15335 {rgb=(.7 .4 .4)} Face 18403 2026 1885 15335 {rgb=(.7 .4 .4)} Face 18404 1885 1853 15335 {rgb=(.7 .4 .4)} Face 18405 1921 2056 15336 {rgb=(.7 .4 .4)} Face 18406 2056 2107 15336 {rgb=(.7 .4 .4)} Face 18407 2107 2006 15336 {rgb=(.7 .4 .4)} Face 18408 2006 1921 15336 {rgb=(.7 .4 .4)} Face 18409 2075 2198 15337 {rgb=(.7 .4 .4)} Face 18410 2198 2244 15337 {rgb=(.7 .4 .4)} Face 18411 2244 2119 15337 {rgb=(.7 .4 .4)} Face 18412 2119 2075 15337 {rgb=(.7 .4 .4)} Face 18413 2083 2223 15338 {rgb=(.7 .4 .4)} Face 18414 2223 2206 15338 {rgb=(.7 .4 .4)} Face 18415 2206 2106 15338 {rgb=(.7 .4 .4)} Face 18416 2106 2083 15338 {rgb=(.7 .4 .4)} Face 18417 2501 2438 15339 {rgb=(.7 .4 .4)} Face 18418 2438 2391 15339 {rgb=(.7 .4 .4)} Face 18419 2391 2485 15339 {rgb=(.7 .4 .4)} Face 18420 2485 2501 15339 {rgb=(.7 .4 .4)} Face 18421 2482 2380 15340 {rgb=(.7 .4 .4)} Face 18422 2380 2339 15340 {rgb=(.7 .4 .4)} Face 18423 2339 2458 15340 {rgb=(.7 .4 .4)} Face 18424 2458 2482 15340 {rgb=(.7 .4 .4)} Face 18425 2266 2217 15341 {rgb=(.7 .4 .4)} Face 18426 2217 2389 15341 {rgb=(.7 .4 .4)} Face 18427 2389 2422 15341 {rgb=(.7 .4 .4)} Face 18428 2422 2266 15341 {rgb=(.7 .4 .4)} Face 18429 2534 2498 15342 {rgb=(.7 .4 .4)} Face 18430 2498 2590 15342 {rgb=(.7 .4 .4)} Face 18431 2590 2624 15342 {rgb=(.7 .4 .4)} Face 18432 2624 2534 15342 {rgb=(.7 .4 .4)} Face 18433 2356 2176 15343 {rgb=(.7 .4 .4)} Face 18434 2176 2157 15343 {rgb=(.7 .4 .4)} Face 18435 2157 2302 15343 {rgb=(.7 .4 .4)} Face 18436 2302 2356 15343 {rgb=(.7 .4 .4)} Face 18437 2415 2449 15344 {rgb=(.7 .4 .4)} Face 18438 2449 2388 15344 {rgb=(.7 .4 .4)} Face 18439 2388 2324 15344 {rgb=(.7 .4 .4)} Face 18440 2324 2415 15344 {rgb=(.7 .4 .4)} Face 18441 2554 2512 15345 {rgb=(.7 .4 .4)} Face 18442 2512 2575 15345 {rgb=(.7 .4 .4)} Face 18443 2575 2616 15345 {rgb=(.7 .4 .4)} Face 18444 2616 2554 15345 {rgb=(.7 .4 .4)} Face 18445 2626 2595 15346 {rgb=(.7 .4 .4)} Face 18446 2595 2658 15346 {rgb=(.7 .4 .4)} Face 18447 2658 2694 15346 {rgb=(.7 .4 .4)} Face 18448 2694 2626 15346 {rgb=(.7 .4 .4)} Face 18449 2451 2492 15347 {rgb=(.7 .4 .4)} Face 18450 2492 2548 15347 {rgb=(.7 .4 .4)} Face 18451 2548 2529 15347 {rgb=(.7 .4 .4)} Face 18452 2529 2451 15347 {rgb=(.7 .4 .4)} Face 18453 2643 2594 15348 {rgb=(.7 .4 .4)} Face 18454 2594 2604 15348 {rgb=(.7 .4 .4)} Face 18455 2604 2672 15348 {rgb=(.7 .4 .4)} Face 18456 2672 2643 15348 {rgb=(.7 .4 .4)} Face 18457 2765 2714 15349 {rgb=(.7 .4 .4)} Face 18458 2714 2745 15349 {rgb=(.7 .4 .4)} Face 18459 2745 2802 15349 {rgb=(.7 .4 .4)} Face 18460 2802 2765 15349 {rgb=(.7 .4 .4)} Face 18461 2678 2603 15350 {rgb=(.7 .4 .4)} Face 18462 2603 2591 15350 {rgb=(.7 .4 .4)} Face 18463 2591 2666 15350 {rgb=(.7 .4 .4)} Face 18464 2666 2678 15350 {rgb=(.7 .4 .4)} Face 18465 2814 2761 15351 {rgb=(.7 .4 .4)} Face 18466 2761 2744 15351 {rgb=(.7 .4 .4)} Face 18467 2744 2801 15351 {rgb=(.7 .4 .4)} Face 18468 2801 2814 15351 {rgb=(.7 .4 .4)} Face 18469 2633 2567 15352 {rgb=(.7 .4 .4)} Face 18470 2567 2539 15352 {rgb=(.7 .4 .4)} Face 18471 2539 2607 15352 {rgb=(.7 .4 .4)} Face 18472 2607 2633 15352 {rgb=(.7 .4 .4)} Face 18473 2760 2710 15353 {rgb=(.7 .4 .4)} Face 18474 2710 2660 15353 {rgb=(.7 .4 .4)} Face 18475 2660 2705 15353 {rgb=(.7 .4 .4)} Face 18476 2705 2760 15353 {rgb=(.7 .4 .4)} Face 18477 2540 2477 15354 {rgb=(.7 .4 .4)} Face 18478 2477 2409 15354 {rgb=(.7 .4 .4)} Face 18479 2409 2459 15354 {rgb=(.7 .4 .4)} Face 18480 2459 2540 15354 {rgb=(.7 .4 .4)} Face 18481 2630 2598 15355 {rgb=(.7 .4 .4)} Face 18482 2598 2535 15355 {rgb=(.7 .4 .4)} Face 18483 2535 2581 15355 {rgb=(.7 .4 .4)} Face 18484 2581 2630 15355 {rgb=(.7 .4 .4)} Face 18485 2378 2307 15356 {rgb=(.7 .4 .4)} Face 18486 2307 2315 15356 {rgb=(.7 .4 .4)} Face 18487 2315 2377 15356 {rgb=(.7 .4 .4)} Face 18488 2377 2378 15356 {rgb=(.7 .4 .4)} Face 18489 2455 2404 15357 {rgb=(.7 .4 .4)} Face 18490 2404 2503 15357 {rgb=(.7 .4 .4)} Face 18491 2503 2543 15357 {rgb=(.7 .4 .4)} Face 18492 2543 2455 15357 {rgb=(.7 .4 .4)} Face 18493 2593 2526 15358 {rgb=(.7 .4 .4)} Face 18494 2526 2602 15358 {rgb=(.7 .4 .4)} Face 18495 2602 2652 15358 {rgb=(.7 .4 .4)} Face 18496 2652 2593 15358 {rgb=(.7 .4 .4)} Face 18497 2629 2599 15359 {rgb=(.7 .4 .4)} Face 18498 2599 2693 15359 {rgb=(.7 .4 .4)} Face 18499 2693 2733 15359 {rgb=(.7 .4 .4)} Face 18500 2733 2629 15359 {rgb=(.7 .4 .4)} Face 18501 2742 2685 15360 {rgb=(.7 .4 .4)} Face 18502 2685 2785 15360 {rgb=(.7 .4 .4)} Face 18503 2785 2846 15360 {rgb=(.7 .4 .4)} Face 18504 2846 2742 15360 {rgb=(.7 .4 .4)} Face 18505 2869 2812 15361 {rgb=(.7 .4 .4)} Face 18506 2812 2920 15361 {rgb=(.7 .4 .4)} Face 18507 2920 3010 15361 {rgb=(.7 .4 .4)} Face 18508 3010 2869 15361 {rgb=(.7 .4 .4)} Face 18509 3120 3049 15362 {rgb=(.7 .4 .4)} Face 18510 3049 3186 15362 {rgb=(.7 .4 .4)} Face 18511 3186 3265 15362 {rgb=(.7 .4 .4)} Face 18512 3265 3120 15362 {rgb=(.7 .4 .4)} Face 18513 3172 3147 15363 {rgb=(.7 .4 .4)} Face 18514 3147 3325 15363 {rgb=(.7 .4 .4)} Face 18515 3325 3384 15363 {rgb=(.7 .4 .4)} Face 18516 3384 3172 15363 {rgb=(.7 .4 .4)} Face 18517 3178 3200 15364 {rgb=(.7 .4 .4)} Face 18518 3200 3435 15364 {rgb=(.7 .4 .4)} Face 18519 3435 3431 15364 {rgb=(.7 .4 .4)} Face 18520 3431 3178 15364 {rgb=(.7 .4 .4)} Face 18521 3035 3047 15365 {rgb=(.7 .4 .4)} Face 18522 3047 3004 15365 {rgb=(.7 .4 .4)} Face 18523 3004 3001 15365 {rgb=(.7 .4 .4)} Face 18524 3001 3035 15365 {rgb=(.7 .4 .4)} Face 18525 3439 3333 15366 {rgb=(.7 .4 .4)} Face 18526 3333 3463 15366 {rgb=(.7 .4 .4)} Face 18527 3463 3611 15366 {rgb=(.7 .4 .4)} Face 18528 3611 3439 15366 {rgb=(.7 .4 .4)} Face 18529 3613 3539 15367 {rgb=(.7 .4 .4)} Face 18530 3539 3792 15367 {rgb=(.7 .4 .4)} Face 18531 3792 3938 15367 {rgb=(.7 .4 .4)} Face 18532 3938 3613 15367 {rgb=(.7 .4 .4)} Face 18533 3718 3695 15368 {rgb=(.7 .4 .4)} Face 18534 3695 4030 15368 {rgb=(.7 .4 .4)} Face 18535 4030 4080 15368 {rgb=(.7 .4 .4)} Face 18536 4080 3718 15368 {rgb=(.7 .4 .4)} Face 18537 2721 2483 15369 {rgb=(.7 .4 .4)} Face 18538 2483 2381 15369 {rgb=(.7 .4 .4)} Face 18539 2381 2592 15369 {rgb=(.7 .4 .4)} Face 18540 2592 2721 15369 {rgb=(.7 .4 .4)} Face 18541 3502 3167 15370 {rgb=(.7 .4 .4)} Face 18542 3167 2861 15370 {rgb=(.7 .4 .4)} Face 18543 2861 3232 15370 {rgb=(.7 .4 .4)} Face 18544 3232 3502 15370 {rgb=(.7 .4 .4)} Face 18545 2468 2305 15371 {rgb=(.7 .4 .4)} Face 18546 2305 2239 15371 {rgb=(.7 .4 .4)} Face 18547 2239 2368 15371 {rgb=(.7 .4 .4)} Face 18548 2368 2468 15371 {rgb=(.7 .4 .4)} Face 18549 2917 2675 15372 {rgb=(.7 .4 .4)} Face 18550 2675 2546 15372 {rgb=(.7 .4 .4)} Face 18551 2546 2775 15372 {rgb=(.7 .4 .4)} Face 18552 2775 2917 15372 {rgb=(.7 .4 .4)} Face 18553 2279 2177 15373 {rgb=(.7 .4 .4)} Face 18554 2177 2158 15373 {rgb=(.7 .4 .4)} Face 18555 2158 2245 15373 {rgb=(.7 .4 .4)} Face 18556 2245 2279 15373 {rgb=(.7 .4 .4)} Face 18557 2726 2487 15374 {rgb=(.7 .4 .4)} Face 18558 2487 2456 15374 {rgb=(.7 .4 .4)} Face 18559 2456 2697 15374 {rgb=(.7 .4 .4)} Face 18560 2697 2726 15374 {rgb=(.7 .4 .4)} Face 18561 2253 2168 15375 {rgb=(.7 .4 .4)} Face 18562 2168 2192 15375 {rgb=(.7 .4 .4)} Face 18563 2192 2275 15375 {rgb=(.7 .4 .4)} Face 18564 2275 2253 15375 {rgb=(.7 .4 .4)} Face 18565 2681 2444 15376 {rgb=(.7 .4 .4)} Face 18566 2444 2445 15376 {rgb=(.7 .4 .4)} Face 18567 2445 2673 15376 {rgb=(.7 .4 .4)} Face 18568 2673 2681 15376 {rgb=(.7 .4 .4)} Face 18569 2320 2225 15377 {rgb=(.7 .4 .4)} Face 18570 2225 2323 15377 {rgb=(.7 .4 .4)} Face 18571 2323 2418 15377 {rgb=(.7 .4 .4)} Face 18572 2418 2320 15377 {rgb=(.7 .4 .4)} Face 18573 2665 2457 15378 {rgb=(.7 .4 .4)} Face 18574 2457 2513 15378 {rgb=(.7 .4 .4)} Face 18575 2513 2679 15378 {rgb=(.7 .4 .4)} Face 18576 2679 2665 15378 {rgb=(.7 .4 .4)} Face 18577 2538 2465 15379 {rgb=(.7 .4 .4)} Face 18578 2465 2524 15379 {rgb=(.7 .4 .4)} Face 18579 2524 2586 15379 {rgb=(.7 .4 .4)} Face 18580 2586 2538 15379 {rgb=(.7 .4 .4)} Face 18581 2713 2596 15380 {rgb=(.7 .4 .4)} Face 18582 2596 2628 15380 {rgb=(.7 .4 .4)} Face 18583 2628 2730 15380 {rgb=(.7 .4 .4)} Face 18584 2730 2713 15380 {rgb=(.7 .4 .4)} Face 18585 2743 2640 15381 {rgb=(.7 .4 .4)} Face 18586 2640 2631 15381 {rgb=(.7 .4 .4)} Face 18587 2631 2727 15381 {rgb=(.7 .4 .4)} Face 18588 2727 2743 15381 {rgb=(.7 .4 .4)} Face 18589 4238 3743 15382 {rgb=(.7 .4 .4)} Face 18590 3743 3546 15382 {rgb=(.7 .4 .4)} Face 18591 3546 4023 15382 {rgb=(.7 .4 .4)} Face 18592 4023 4238 15382 {rgb=(.7 .4 .4)} Face 18593 3708 3303 15383 {rgb=(.7 .4 .4)} Face 18594 3303 3154 15383 {rgb=(.7 .4 .4)} Face 18595 3154 3545 15383 {rgb=(.7 .4 .4)} Face 18596 3545 3708 15383 {rgb=(.7 .4 .4)} Face 18597 4504 4233 15384 {rgb=(.7 .4 .4)} Face 18598 4233 3990 15384 {rgb=(.7 .4 .4)} Face 18599 3990 4330 15384 {rgb=(.7 .4 .4)} Face 18600 4330 4504 15384 {rgb=(.7 .4 .4)} Face 18601 3519 3121 15385 {rgb=(.7 .4 .4)} Face 18602 3121 3083 15385 {rgb=(.7 .4 .4)} Face 18603 3083 3483 15385 {rgb=(.7 .4 .4)} Face 18604 3483 3519 15385 {rgb=(.7 .4 .4)} Face 18605 4298 3936 15386 {rgb=(.7 .4 .4)} Face 18606 3936 3886 15386 {rgb=(.7 .4 .4)} Face 18607 3886 4265 15386 {rgb=(.7 .4 .4)} Face 18608 4265 4298 15386 {rgb=(.7 .4 .4)} Face 18609 3428 3034 15387 {rgb=(.7 .4 .4)} Face 18610 3034 3000 15387 {rgb=(.7 .4 .4)} Face 18611 3000 3392 15387 {rgb=(.7 .4 .4)} Face 18612 3392 3428 15387 {rgb=(.7 .4 .4)} Face 18613 3348 2977 15388 {rgb=(.7 .4 .4)} Face 18614 2977 2941 15388 {rgb=(.7 .4 .4)} Face 18615 2941 3300 15388 {rgb=(.7 .4 .4)} Face 18616 3300 3348 15388 {rgb=(.7 .4 .4)} Face 18617 3910 3685 15389 {rgb=(.7 .4 .4)} Face 18618 3685 3623 15389 {rgb=(.7 .4 .4)} Face 18619 3623 3870 15389 {rgb=(.7 .4 .4)} Face 18620 3870 3910 15389 {rgb=(.7 .4 .4)} Face 18621 3239 2918 15390 {rgb=(.7 .4 .4)} Face 18622 2918 2903 15390 {rgb=(.7 .4 .4)} Face 18623 2903 3191 15390 {rgb=(.7 .4 .4)} Face 18624 3191 3239 15390 {rgb=(.7 .4 .4)} Face 18625 3749 3551 15391 {rgb=(.7 .4 .4)} Face 18626 3551 3477 15391 {rgb=(.7 .4 .4)} Face 18627 3477 3667 15391 {rgb=(.7 .4 .4)} Face 18628 3667 3749 15391 {rgb=(.7 .4 .4)} Face 18629 3148 2887 15392 {rgb=(.7 .4 .4)} Face 18630 2887 2859 15392 {rgb=(.7 .4 .4)} Face 18631 2859 3093 15392 {rgb=(.7 .4 .4)} Face 18632 3093 3148 15392 {rgb=(.7 .4 .4)} Face 18633 3588 3400 15393 {rgb=(.7 .4 .4)} Face 18634 3400 3328 15393 {rgb=(.7 .4 .4)} Face 18635 3328 3543 15393 {rgb=(.7 .4 .4)} Face 18636 3543 3588 15393 {rgb=(.7 .4 .4)} Face 18637 3757 3720 15394 {rgb=(.7 .4 .4)} Face 18638 3720 3927 15394 {rgb=(.7 .4 .4)} Face 18639 3927 3957 15394 {rgb=(.7 .4 .4)} Face 18640 3957 3757 15394 {rgb=(.7 .4 .4)} Face 18641 3900 3840 15395 {rgb=(.7 .4 .4)} Face 18642 3840 3988 15395 {rgb=(.7 .4 .4)} Face 18643 3988 4042 15395 {rgb=(.7 .4 .4)} Face 18644 4042 3900 15395 {rgb=(.7 .4 .4)} Face 18645 4035 3999 15396 {rgb=(.7 .4 .4)} Face 18646 3999 4143 15396 {rgb=(.7 .4 .4)} Face 18647 4143 4191 15396 {rgb=(.7 .4 .4)} Face 18648 4191 4035 15396 {rgb=(.7 .4 .4)} Face 18649 4123 4096 15397 {rgb=(.7 .4 .4)} Face 18650 4096 4280 15397 {rgb=(.7 .4 .4)} Face 18651 4280 4292 15397 {rgb=(.7 .4 .4)} Face 18652 4292 4123 15397 {rgb=(.7 .4 .4)} Face 18653 4211 4138 15398 {rgb=(.7 .4 .4)} Face 18654 4138 4307 15398 {rgb=(.7 .4 .4)} Face 18655 4307 4386 15398 {rgb=(.7 .4 .4)} Face 18656 4386 4211 15398 {rgb=(.7 .4 .4)} Face 18657 4441 4325 15399 {rgb=(.7 .4 .4)} Face 18658 4325 4555 15399 {rgb=(.7 .4 .4)} Face 18659 4555 4698 15399 {rgb=(.7 .4 .4)} Face 18660 4698 4441 15399 {rgb=(.7 .4 .4)} Face 18661 4454 4423 15400 {rgb=(.7 .4 .4)} Face 18662 4423 4690 15400 {rgb=(.7 .4 .4)} Face 18663 4690 4738 15400 {rgb=(.7 .4 .4)} Face 18664 4738 4454 15400 {rgb=(.7 .4 .4)} Face 18665 4645 4494 15401 {rgb=(.7 .4 .4)} Face 18666 4494 4769 15401 {rgb=(.7 .4 .4)} Face 18667 4769 4882 15401 {rgb=(.7 .4 .4)} Face 18668 4882 4645 15401 {rgb=(.7 .4 .4)} Face 18669 4946 4846 15402 {rgb=(.7 .4 .4)} Face 18670 4846 5012 15402 {rgb=(.7 .4 .4)} Face 18671 5012 5095 15402 {rgb=(.7 .4 .4)} Face 18672 5095 4946 15402 {rgb=(.7 .4 .4)} Face 18673 5086 5182 15403 {rgb=(.7 .4 .4)} Face 18674 5182 5149 15403 {rgb=(.7 .4 .4)} Face 18675 5149 5028 15403 {rgb=(.7 .4 .4)} Face 18676 5028 5086 15403 {rgb=(.7 .4 .4)} Face 18677 5051 4992 15404 {rgb=(.7 .4 .4)} Face 18678 4992 5153 15404 {rgb=(.7 .4 .4)} Face 18679 5153 5163 15404 {rgb=(.7 .4 .4)} Face 18680 5163 5051 15404 {rgb=(.7 .4 .4)} Face 18681 5570 5708 15405 {rgb=(.7 .4 .4)} Face 18682 5708 5660 15405 {rgb=(.7 .4 .4)} Face 18683 5660 5476 15405 {rgb=(.7 .4 .4)} Face 18684 5476 5570 15405 {rgb=(.7 .4 .4)} Face 18685 5276 5321 15406 {rgb=(.7 .4 .4)} Face 18686 5321 5418 15406 {rgb=(.7 .4 .4)} Face 18687 5418 5397 15406 {rgb=(.7 .4 .4)} Face 18688 5397 5276 15406 {rgb=(.7 .4 .4)} Face 18689 5251 5259 15407 {rgb=(.7 .4 .4)} Face 18690 5259 5365 15407 {rgb=(.7 .4 .4)} Face 18691 5365 5332 15407 {rgb=(.7 .4 .4)} Face 18692 5332 5251 15407 {rgb=(.7 .4 .4)} Face 18693 4727 5113 15408 {rgb=(.7 .4 .4)} Face 18694 5113 5107 15408 {rgb=(.7 .4 .4)} Face 18695 5107 4743 15408 {rgb=(.7 .4 .4)} Face 18696 4743 4727 15408 {rgb=(.7 .4 .4)} Face 18697 4747 5098 15409 {rgb=(.7 .4 .4)} Face 18698 5098 5147 15409 {rgb=(.7 .4 .4)} Face 18699 5147 4931 15409 {rgb=(.7 .4 .4)} Face 18700 4931 4747 15409 {rgb=(.7 .4 .4)} Face 18701 3184 3326 15410 {rgb=(.7 .4 .4)} Face 18702 3326 3378 15410 {rgb=(.7 .4 .4)} Face 18703 3378 3258 15410 {rgb=(.7 .4 .4)} Face 18704 3258 3184 15410 {rgb=(.7 .4 .4)} Face 18705 3126 3127 15411 {rgb=(.7 .4 .4)} Face 18706 3127 3308 15411 {rgb=(.7 .4 .4)} Face 18707 3308 3139 15411 {rgb=(.7 .4 .4)} Face 18708 3139 3126 15411 {rgb=(.7 .4 .4)} Face 18709 3716 3540 15412 {rgb=(.7 .4 .4)} Face 18710 3540 3529 15412 {rgb=(.7 .4 .4)} Face 18711 3529 3694 15412 {rgb=(.7 .4 .4)} Face 18712 3694 3716 15412 {rgb=(.7 .4 .4)} Face 18713 3548 3536 15413 {rgb=(.7 .4 .4)} Face 18714 3536 3730 15413 {rgb=(.7 .4 .4)} Face 18715 3730 3741 15413 {rgb=(.7 .4 .4)} Face 18716 3741 3548 15413 {rgb=(.7 .4 .4)} Face 18717 4039 3899 15414 {rgb=(.7 .4 .4)} Face 18718 3899 3862 15414 {rgb=(.7 .4 .4)} Face 18719 3862 4003 15414 {rgb=(.7 .4 .4)} Face 18720 4003 4039 15414 {rgb=(.7 .4 .4)} Face 18721 3679 3505 15415 {rgb=(.7 .4 .4)} Face 18722 3505 3533 15415 {rgb=(.7 .4 .4)} Face 18723 3533 3658 15415 {rgb=(.7 .4 .4)} Face 18724 3658 3679 15415 {rgb=(.7 .4 .4)} Face 18725 3468 3372 15416 {rgb=(.7 .4 .4)} Face 18726 3372 3527 15416 {rgb=(.7 .4 .4)} Face 18727 3527 3607 15416 {rgb=(.7 .4 .4)} Face 18728 3607 3468 15416 {rgb=(.7 .4 .4)} Face 18729 3711 3594 15417 {rgb=(.7 .4 .4)} Face 18730 3594 3717 15417 {rgb=(.7 .4 .4)} Face 18731 3717 3854 15417 {rgb=(.7 .4 .4)} Face 18732 3854 3711 15417 {rgb=(.7 .4 .4)} Face 18733 3767 3676 15418 {rgb=(.7 .4 .4)} Face 18734 3676 3842 15418 {rgb=(.7 .4 .4)} Face 18735 3842 3937 15418 {rgb=(.7 .4 .4)} Face 18736 3937 3767 15418 {rgb=(.7 .4 .4)} Face 18737 4008 3895 15419 {rgb=(.7 .4 .4)} Face 18738 3895 4022 15419 {rgb=(.7 .4 .4)} Face 18739 4022 4085 15419 {rgb=(.7 .4 .4)} Face 18740 4085 4008 15419 {rgb=(.7 .4 .4)} Face 18741 4050 3961 15420 {rgb=(.7 .4 .4)} Face 18742 3961 4203 15420 {rgb=(.7 .4 .4)} Face 18743 4203 4284 15420 {rgb=(.7 .4 .4)} Face 18744 4284 4050 15420 {rgb=(.7 .4 .4)} Face 18745 4181 4119 15421 {rgb=(.7 .4 .4)} Face 18746 4119 4306 15421 {rgb=(.7 .4 .4)} Face 18747 4306 4333 15421 {rgb=(.7 .4 .4)} Face 18748 4333 4181 15421 {rgb=(.7 .4 .4)} Face 18749 4697 4679 15422 {rgb=(.7 .4 .4)} Face 18750 4679 5082 15422 {rgb=(.7 .4 .4)} Face 18751 5082 5077 15422 {rgb=(.7 .4 .4)} Face 18752 5077 4697 15422 {rgb=(.7 .4 .4)} Face 18753 4684 4682 15423 {rgb=(.7 .4 .4)} Face 18754 4682 5037 15423 {rgb=(.7 .4 .4)} Face 18755 5037 5029 15423 {rgb=(.7 .4 .4)} Face 18756 5029 4684 15423 {rgb=(.7 .4 .4)} Face 18757 4797 4729 15424 {rgb=(.7 .4 .4)} Face 18758 4729 5049 15424 {rgb=(.7 .4 .4)} Face 18759 5049 5089 15424 {rgb=(.7 .4 .4)} Face 18760 5089 4797 15424 {rgb=(.7 .4 .4)} Face 18761 5337 5343 15425 {rgb=(.7 .4 .4)} Face 18762 5343 5658 15425 {rgb=(.7 .4 .4)} Face 18763 5658 5662 15425 {rgb=(.7 .4 .4)} Face 18764 5662 5337 15425 {rgb=(.7 .4 .4)} Face 18765 5362 5347 15426 {rgb=(.7 .4 .4)} Face 18766 5347 5651 15426 {rgb=(.7 .4 .4)} Face 18767 5651 5634 15426 {rgb=(.7 .4 .4)} Face 18768 5634 5362 15426 {rgb=(.7 .4 .4)} Face 18769 3050 3113 15427 {rgb=(.7 .4 .4)} Face 18770 3113 3207 15427 {rgb=(.7 .4 .4)} Face 18771 3207 3161 15427 {rgb=(.7 .4 .4)} Face 18772 3161 3050 15427 {rgb=(.7 .4 .4)} Face 18773 3081 3005 15428 {rgb=(.7 .4 .4)} Face 18774 3005 2985 15428 {rgb=(.7 .4 .4)} Face 18775 2985 3037 15428 {rgb=(.7 .4 .4)} Face 18776 3037 3081 15428 {rgb=(.7 .4 .4)} Face 18777 2968 2873 15429 {rgb=(.7 .4 .4)} Face 18778 2873 2858 15429 {rgb=(.7 .4 .4)} Face 18779 2858 2983 15429 {rgb=(.7 .4 .4)} Face 18780 2983 2968 15429 {rgb=(.7 .4 .4)} Face 18781 2979 2866 15430 {rgb=(.7 .4 .4)} Face 18782 2866 2904 15430 {rgb=(.7 .4 .4)} Face 18783 2904 2982 15430 {rgb=(.7 .4 .4)} Face 18784 2982 2979 15430 {rgb=(.7 .4 .4)} Face 18785 3055 2989 15431 {rgb=(.7 .4 .4)} Face 18786 2989 3106 15431 {rgb=(.7 .4 .4)} Face 18787 3106 3164 15431 {rgb=(.7 .4 .4)} Face 18788 3164 3055 15431 {rgb=(.7 .4 .4)} Face 18789 3319 3257 15432 {rgb=(.7 .4 .4)} Face 18790 3257 3389 15432 {rgb=(.7 .4 .4)} Face 18791 3389 3456 15432 {rgb=(.7 .4 .4)} Face 18792 3456 3319 15432 {rgb=(.7 .4 .4)} Face 18793 3577 3491 15433 {rgb=(.7 .4 .4)} Face 18794 3491 3584 15433 {rgb=(.7 .4 .4)} Face 18795 3584 3698 15433 {rgb=(.7 .4 .4)} Face 18796 3698 3577 15433 {rgb=(.7 .4 .4)} Face 18797 4585 4560 15434 {rgb=(.7 .4 .4)} Face 18798 4560 5055 15434 {rgb=(.7 .4 .4)} Face 18799 5055 5056 15434 {rgb=(.7 .4 .4)} Face 18800 5056 4585 15434 {rgb=(.7 .4 .4)} Face 18801 5353 5361 15435 {rgb=(.7 .4 .4)} Face 18802 5361 5653 15435 {rgb=(.7 .4 .4)} Face 18803 5653 5641 15435 {rgb=(.7 .4 .4)} Face 18804 5641 5353 15435 {rgb=(.7 .4 .4)} Face 18805 2612 2674 15436 {rgb=(.7 .4 .4)} Face 18806 2674 2689 15436 {rgb=(.7 .4 .4)} Face 18807 2689 2614 15436 {rgb=(.7 .4 .4)} Face 18808 2614 2612 15436 {rgb=(.7 .4 .4)} Face 18809 2709 2671 15437 {rgb=(.7 .4 .4)} Face 18810 2671 2724 15437 {rgb=(.7 .4 .4)} Face 18811 2724 2759 15437 {rgb=(.7 .4 .4)} Face 18812 2759 2709 15437 {rgb=(.7 .4 .4)} Face 18813 2787 2751 15438 {rgb=(.7 .4 .4)} Face 18814 2751 2788 15438 {rgb=(.7 .4 .4)} Face 18815 2788 2810 15438 {rgb=(.7 .4 .4)} Face 18816 2810 2787 15438 {rgb=(.7 .4 .4)} Face 18817 2773 2729 15439 {rgb=(.7 .4 .4)} Face 18818 2729 2791 15439 {rgb=(.7 .4 .4)} Face 18819 2791 2837 15439 {rgb=(.7 .4 .4)} Face 18820 2837 2773 15439 {rgb=(.7 .4 .4)} Face 18821 2836 2817 15440 {rgb=(.7 .4 .4)} Face 18822 2817 2826 15440 {rgb=(.7 .4 .4)} Face 18823 2826 2839 15440 {rgb=(.7 .4 .4)} Face 18824 2839 2836 15440 {rgb=(.7 .4 .4)} Face 18825 2901 2835 15441 {rgb=(.7 .4 .4)} Face 18826 2835 2867 15441 {rgb=(.7 .4 .4)} Face 18827 2867 2970 15441 {rgb=(.7 .4 .4)} Face 18828 2970 2901 15441 {rgb=(.7 .4 .4)} Face 18829 2865 2847 15442 {rgb=(.7 .4 .4)} Face 18830 2847 2848 15442 {rgb=(.7 .4 .4)} Face 18831 2848 2855 15442 {rgb=(.7 .4 .4)} Face 18832 2855 2865 15442 {rgb=(.7 .4 .4)} Face 18833 3003 2889 15443 {rgb=(.7 .4 .4)} Face 18834 2889 2914 15443 {rgb=(.7 .4 .4)} Face 18835 2914 3030 15443 {rgb=(.7 .4 .4)} Face 18836 3030 3003 15443 {rgb=(.7 .4 .4)} Face 18837 3064 2946 15444 {rgb=(.7 .4 .4)} Face 18838 2946 2996 15444 {rgb=(.7 .4 .4)} Face 18839 2996 3098 15444 {rgb=(.7 .4 .4)} Face 18840 3098 3064 15444 {rgb=(.7 .4 .4)} Face 18841 2986 2984 15445 {rgb=(.7 .4 .4)} Face 18842 2984 2974 15445 {rgb=(.7 .4 .4)} Face 18843 2974 2990 15445 {rgb=(.7 .4 .4)} Face 18844 2990 2986 15445 {rgb=(.7 .4 .4)} Face 18845 2763 2800 15446 {rgb=(.7 .4 .4)} Face 18846 2800 2821 15446 {rgb=(.7 .4 .4)} Face 18847 2821 2790 15446 {rgb=(.7 .4 .4)} Face 18848 2790 2763 15446 {rgb=(.7 .4 .4)} Face 18849 2808 2772 15447 {rgb=(.7 .4 .4)} Face 18850 2772 2793 15447 {rgb=(.7 .4 .4)} Face 18851 2793 2842 15447 {rgb=(.7 .4 .4)} Face 18852 2842 2808 15447 {rgb=(.7 .4 .4)} Face 18853 2898 2838 15448 {rgb=(.7 .4 .4)} Face 18854 2838 2939 15448 {rgb=(.7 .4 .4)} Face 18855 2939 3031 15448 {rgb=(.7 .4 .4)} Face 18856 3031 2898 15448 {rgb=(.7 .4 .4)} Face 18857 3189 3117 15449 {rgb=(.7 .4 .4)} Face 18858 3117 3220 15449 {rgb=(.7 .4 .4)} Face 18859 3220 3306 15449 {rgb=(.7 .4 .4)} Face 18860 3306 3189 15449 {rgb=(.7 .4 .4)} Face 18861 3403 3307 15450 {rgb=(.7 .4 .4)} Face 18862 3307 3375 15450 {rgb=(.7 .4 .4)} Face 18863 3375 3487 15450 {rgb=(.7 .4 .4)} Face 18864 3487 3403 15450 {rgb=(.7 .4 .4)} Face 18865 3558 3430 15451 {rgb=(.7 .4 .4)} Face 18866 3430 3457 15451 {rgb=(.7 .4 .4)} Face 18867 3457 3586 15451 {rgb=(.7 .4 .4)} Face 18868 3586 3558 15451 {rgb=(.7 .4 .4)} Face 18869 3215 3280 15452 {rgb=(.7 .4 .4)} Face 18870 3280 3218 15452 {rgb=(.7 .4 .4)} Face 18871 3218 3166 15452 {rgb=(.7 .4 .4)} Face 18872 3166 3215 15452 {rgb=(.7 .4 .4)} Face 18873 3335 3324 15453 {rgb=(.7 .4 .4)} Face 18874 3324 3243 15453 {rgb=(.7 .4 .4)} Face 18875 3243 3251 15453 {rgb=(.7 .4 .4)} Face 18876 3251 3335 15453 {rgb=(.7 .4 .4)} Face 18877 3082 3149 15454 {rgb=(.7 .4 .4)} Face 18878 3149 3028 15454 {rgb=(.7 .4 .4)} Face 18879 3028 2944 15454 {rgb=(.7 .4 .4)} Face 18880 2944 3082 15454 {rgb=(.7 .4 .4)} Face 18881 2809 2863 15455 {rgb=(.7 .4 .4)} Face 18882 2863 2781 15455 {rgb=(.7 .4 .4)} Face 18883 2781 2731 15455 {rgb=(.7 .4 .4)} Face 18884 2731 2809 15455 {rgb=(.7 .4 .4)} Face 18885 2707 2746 15456 {rgb=(.7 .4 .4)} Face 18886 2746 2728 15456 {rgb=(.7 .4 .4)} Face 18887 2728 2696 15456 {rgb=(.7 .4 .4)} Face 18888 2696 2707 15456 {rgb=(.7 .4 .4)} Face 18889 2716 2738 15457 {rgb=(.7 .4 .4)} Face 18890 2738 2777 15457 {rgb=(.7 .4 .4)} Face 18891 2777 2752 15457 {rgb=(.7 .4 .4)} Face 18892 2752 2716 15457 {rgb=(.7 .4 .4)} Face 18893 2850 2876 15458 {rgb=(.7 .4 .4)} Face 18894 2876 2925 15458 {rgb=(.7 .4 .4)} Face 18895 2925 2907 15458 {rgb=(.7 .4 .4)} Face 18896 2907 2850 15458 {rgb=(.7 .4 .4)} Face 18897 2813 2831 15459 {rgb=(.7 .4 .4)} Face 18898 2831 2882 15459 {rgb=(.7 .4 .4)} Face 18899 2882 2864 15459 {rgb=(.7 .4 .4)} Face 18900 2864 2813 15459 {rgb=(.7 .4 .4)} Face 18901 2922 2952 15460 {rgb=(.7 .4 .4)} Face 18902 2952 2976 15460 {rgb=(.7 .4 .4)} Face 18903 2976 2951 15460 {rgb=(.7 .4 .4)} Face 18904 2951 2922 15460 {rgb=(.7 .4 .4)} Face 18905 2931 2937 15461 {rgb=(.7 .4 .4)} Face 18906 2937 2906 15461 {rgb=(.7 .4 .4)} Face 18907 2906 2892 15461 {rgb=(.7 .4 .4)} Face 18908 2892 2931 15461 {rgb=(.7 .4 .4)} Face 18909 2816 2789 15462 {rgb=(.7 .4 .4)} Face 18910 2789 2827 15462 {rgb=(.7 .4 .4)} Face 18911 2827 2851 15462 {rgb=(.7 .4 .4)} Face 18912 2851 2816 15462 {rgb=(.7 .4 .4)} Face 18913 2868 2845 15463 {rgb=(.7 .4 .4)} Face 18914 2845 2828 15463 {rgb=(.7 .4 .4)} Face 18915 2828 2852 15463 {rgb=(.7 .4 .4)} Face 18916 2852 2868 15463 {rgb=(.7 .4 .4)} Face 18917 2807 2783 15464 {rgb=(.7 .4 .4)} Face 18918 2783 2725 15464 {rgb=(.7 .4 .4)} Face 18919 2725 2749 15464 {rgb=(.7 .4 .4)} Face 18920 2749 2807 15464 {rgb=(.7 .4 .4)} Face 18921 2680 2655 15465 {rgb=(.7 .4 .4)} Face 18922 2655 2609 15465 {rgb=(.7 .4 .4)} Face 18923 2609 2619 15465 {rgb=(.7 .4 .4)} Face 18924 2619 2680 15465 {rgb=(.7 .4 .4)} Face 18925 2860 2844 15466 {rgb=(.7 .4 .4)} Face 18926 2844 2875 15466 {rgb=(.7 .4 .4)} Face 18927 2875 2888 15466 {rgb=(.7 .4 .4)} Face 18928 2888 2860 15466 {rgb=(.7 .4 .4)} Face 18929 2849 2829 15467 {rgb=(.7 .4 .4)} Face 18930 2829 2776 15467 {rgb=(.7 .4 .4)} Face 18931 2776 2797 15467 {rgb=(.7 .4 .4)} Face 18932 2797 2849 15467 {rgb=(.7 .4 .4)} Face 18933 2722 2700 15468 {rgb=(.7 .4 .4)} Face 18934 2700 2644 15468 {rgb=(.7 .4 .4)} Face 18935 2644 2682 15468 {rgb=(.7 .4 .4)} Face 18936 2682 2722 15468 {rgb=(.7 .4 .4)} Face 18937 2661 2618 15469 {rgb=(.7 .4 .4)} Face 18938 2618 2617 15469 {rgb=(.7 .4 .4)} Face 18939 2617 2669 15469 {rgb=(.7 .4 .4)} Face 18940 2669 2661 15469 {rgb=(.7 .4 .4)} Face 18941 2695 2642 15470 {rgb=(.7 .4 .4)} Face 18942 2642 2715 15470 {rgb=(.7 .4 .4)} Face 18943 2715 2774 15470 {rgb=(.7 .4 .4)} Face 18944 2774 2695 15470 {rgb=(.7 .4 .4)} Face 18945 2881 2818 15471 {rgb=(.7 .4 .4)} Face 18946 2818 2930 15471 {rgb=(.7 .4 .4)} Face 18947 2930 3026 15471 {rgb=(.7 .4 .4)} Face 18948 3026 2881 15471 {rgb=(.7 .4 .4)} Face 18949 3130 3080 15472 {rgb=(.7 .4 .4)} Face 18950 3080 3133 15472 {rgb=(.7 .4 .4)} Face 18951 3133 3187 15472 {rgb=(.7 .4 .4)} Face 18952 3187 3130 15472 {rgb=(.7 .4 .4)} Face 18953 3201 3131 15473 {rgb=(.7 .4 .4)} Face 18954 3131 3122 15473 {rgb=(.7 .4 .4)} Face 18955 3122 3199 15473 {rgb=(.7 .4 .4)} Face 18956 3199 3201 15473 {rgb=(.7 .4 .4)} Face 18957 2893 2908 15474 {rgb=(.7 .4 .4)} Face 18958 2908 2878 15474 {rgb=(.7 .4 .4)} Face 18959 2878 2870 15474 {rgb=(.7 .4 .4)} Face 18960 2870 2893 15474 {rgb=(.7 .4 .4)} Face 18961 5338 5346 15475 {rgb=(.7 .4 .4)} Face 18962 5346 5254 15475 {rgb=(.7 .4 .4)} Face 18963 5254 5237 15475 {rgb=(.7 .4 .4)} Face 18964 5237 5338 15475 {rgb=(.7 .4 .4)} Face 18965 5580 5465 15476 {rgb=(.7 .4 .4)} Face 18966 5465 5464 15476 {rgb=(.7 .4 .4)} Face 18967 5464 5581 15476 {rgb=(.7 .4 .4)} Face 18968 5581 5580 15476 {rgb=(.7 .4 .4)} Face 18969 5314 5328 15477 {rgb=(.7 .4 .4)} Face 18970 5328 5214 15477 {rgb=(.7 .4 .4)} Face 18971 5214 5196 15477 {rgb=(.7 .4 .4)} Face 18972 5196 5314 15477 {rgb=(.7 .4 .4)} Face 18973 5585 5460 15478 {rgb=(.7 .4 .4)} Face 18974 5460 5459 15478 {rgb=(.7 .4 .4)} Face 18975 5459 5586 15478 {rgb=(.7 .4 .4)} Face 18976 5586 5585 15478 {rgb=(.7 .4 .4)} Face 18977 5283 5298 15479 {rgb=(.7 .4 .4)} Face 18978 5298 5185 15479 {rgb=(.7 .4 .4)} Face 18979 5185 5172 15479 {rgb=(.7 .4 .4)} Face 18980 5172 5283 15479 {rgb=(.7 .4 .4)} Face 18981 5591 5454 15480 {rgb=(.7 .4 .4)} Face 18982 5454 5451 15480 {rgb=(.7 .4 .4)} Face 18983 5451 5594 15480 {rgb=(.7 .4 .4)} Face 18984 5594 5591 15480 {rgb=(.7 .4 .4)} Face 18985 5187 5138 15481 {rgb=(.7 .4 .4)} Face 18986 5138 5081 15481 {rgb=(.7 .4 .4)} Face 18987 5081 5125 15481 {rgb=(.7 .4 .4)} Face 18988 5125 5187 15481 {rgb=(.7 .4 .4)} Face 18989 5165 5176 15482 {rgb=(.7 .4 .4)} Face 18990 5176 5100 15482 {rgb=(.7 .4 .4)} Face 18991 5100 5078 15482 {rgb=(.7 .4 .4)} Face 18992 5078 5165 15482 {rgb=(.7 .4 .4)} Face 18993 5124 5141 15483 {rgb=(.7 .4 .4)} Face 18994 5141 5050 15483 {rgb=(.7 .4 .4)} Face 18995 5050 5039 15483 {rgb=(.7 .4 .4)} Face 18996 5039 5124 15483 {rgb=(.7 .4 .4)} Face 18997 5101 5116 15484 {rgb=(.7 .4 .4)} Face 18998 5116 5035 15484 {rgb=(.7 .4 .4)} Face 18999 5035 5018 15484 {rgb=(.7 .4 .4)} Face 19000 5018 5101 15484 {rgb=(.7 .4 .4)} Face 19001 5033 5010 15485 {rgb=(.7 .4 .4)} Face 19002 5010 4923 15485 {rgb=(.7 .4 .4)} Face 19003 4923 4924 15485 {rgb=(.7 .4 .4)} Face 19004 4924 5033 15485 {rgb=(.7 .4 .4)} Face 19005 4984 5002 15486 {rgb=(.7 .4 .4)} Face 19006 5002 4885 15486 {rgb=(.7 .4 .4)} Face 19007 4885 4864 15486 {rgb=(.7 .4 .4)} Face 19008 4864 4984 15486 {rgb=(.7 .4 .4)} Face 19009 4676 4742 15487 {rgb=(.7 .4 .4)} Face 19010 4742 4468 15487 {rgb=(.7 .4 .4)} Face 19011 4468 4396 15487 {rgb=(.7 .4 .4)} Face 19012 4396 4676 15487 {rgb=(.7 .4 .4)} Face 19013 4631 4658 15488 {rgb=(.7 .4 .4)} Face 19014 4658 4391 15488 {rgb=(.7 .4 .4)} Face 19015 4391 4390 15488 {rgb=(.7 .4 .4)} Face 19016 4390 4631 15488 {rgb=(.7 .4 .4)} Face 19017 4574 4614 15489 {rgb=(.7 .4 .4)} Face 19018 4614 4395 15489 {rgb=(.7 .4 .4)} Face 19019 4395 4412 15489 {rgb=(.7 .4 .4)} Face 19020 4412 4574 15489 {rgb=(.7 .4 .4)} Face 19021 4957 5041 15490 {rgb=(.7 .4 .4)} Face 19022 5041 5045 15490 {rgb=(.7 .4 .4)} Face 19023 5045 4991 15490 {rgb=(.7 .4 .4)} Face 19024 4991 4957 15490 {rgb=(.7 .4 .4)} Face 19025 4894 4945 15491 {rgb=(.7 .4 .4)} Face 19026 4945 4818 15491 {rgb=(.7 .4 .4)} Face 19027 4818 4788 15491 {rgb=(.7 .4 .4)} Face 19028 4788 4894 15491 {rgb=(.7 .4 .4)} Face 19029 4786 4794 15492 {rgb=(.7 .4 .4)} Face 19030 4794 4724 15492 {rgb=(.7 .4 .4)} Face 19031 4724 4713 15492 {rgb=(.7 .4 .4)} Face 19032 4713 4786 15492 {rgb=(.7 .4 .4)} Face 19033 3871 4165 15493 {rgb=(.7 .4 .4)} Face 19034 4165 4156 15493 {rgb=(.7 .4 .4)} Face 19035 4156 3866 15493 {rgb=(.7 .4 .4)} Face 19036 3866 3871 15493 {rgb=(.7 .4 .4)} Face 19037 5239 5248 15494 {rgb=(.7 .4 .4)} Face 19038 5248 5120 15494 {rgb=(.7 .4 .4)} Face 19039 5120 5114 15494 {rgb=(.7 .4 .4)} Face 19040 5114 5239 15494 {rgb=(.7 .4 .4)} Face 19041 5606 5440 15495 {rgb=(.7 .4 .4)} Face 19042 5440 5436 15495 {rgb=(.7 .4 .4)} Face 19043 5436 5610 15495 {rgb=(.7 .4 .4)} Face 19044 5610 5606 15495 {rgb=(.7 .4 .4)} Face 19045 5011 5025 15496 {rgb=(.7 .4 .4)} Face 19046 5025 4960 15496 {rgb=(.7 .4 .4)} Face 19047 4960 4948 15496 {rgb=(.7 .4 .4)} Face 19048 4948 5011 15496 {rgb=(.7 .4 .4)} Face 19049 4929 4914 15497 {rgb=(.7 .4 .4)} Face 19050 4914 4849 15497 {rgb=(.7 .4 .4)} Face 19051 4849 4857 15497 {rgb=(.7 .4 .4)} Face 19052 4857 4929 15497 {rgb=(.7 .4 .4)} Face 19053 4711 4728 15498 {rgb=(.7 .4 .4)} Face 19054 4728 4623 15498 {rgb=(.7 .4 .4)} Face 19055 4623 4590 15498 {rgb=(.7 .4 .4)} Face 19056 4590 4711 15498 {rgb=(.7 .4 .4)} Face 19057 4500 4543 15499 {rgb=(.7 .4 .4)} Face 19058 4543 4496 15499 {rgb=(.7 .4 .4)} Face 19059 4496 4465 15499 {rgb=(.7 .4 .4)} Face 19060 4465 4500 15499 {rgb=(.7 .4 .4)} Face 19061 4579 4629 15500 {rgb=(.7 .4 .4)} Face 19062 4629 4659 15500 {rgb=(.7 .4 .4)} Face 19063 4659 4607 15500 {rgb=(.7 .4 .4)} Face 19064 4607 4579 15500 {rgb=(.7 .4 .4)} Face 19065 4772 4681 15501 {rgb=(.7 .4 .4)} Face 19066 4681 4709 15501 {rgb=(.7 .4 .4)} Face 19067 4709 4825 15501 {rgb=(.7 .4 .4)} Face 19068 4825 4772 15501 {rgb=(.7 .4 .4)} Face 19069 5597 5448 15502 {rgb=(.7 .4 .4)} Face 19070 5448 5453 15502 {rgb=(.7 .4 .4)} Face 19071 5453 5592 15502 {rgb=(.7 .4 .4)} Face 19072 5592 5597 15502 {rgb=(.7 .4 .4)} Face 19073 5386 5354 15503 {rgb=(.7 .4 .4)} Face 19074 5354 5282 15503 {rgb=(.7 .4 .4)} Face 19075 5282 5310 15503 {rgb=(.7 .4 .4)} Face 19076 5310 5386 15503 {rgb=(.7 .4 .4)} Face 19077 5579 5466 15504 {rgb=(.7 .4 .4)} Face 19078 5466 5477 15504 {rgb=(.7 .4 .4)} Face 19079 5477 5568 15504 {rgb=(.7 .4 .4)} Face 19080 5568 5579 15504 {rgb=(.7 .4 .4)} Face 19081 5137 5106 15505 {rgb=(.7 .4 .4)} Face 19082 5106 5105 15505 {rgb=(.7 .4 .4)} Face 19083 5105 5144 15505 {rgb=(.7 .4 .4)} Face 19084 5144 5137 15505 {rgb=(.7 .4 .4)} Face 19085 5097 5112 15506 {rgb=(.7 .4 .4)} Face 19086 5112 4951 15506 {rgb=(.7 .4 .4)} Face 19087 4951 4895 15506 {rgb=(.7 .4 .4)} Face 19088 4895 5097 15506 {rgb=(.7 .4 .4)} Face 19089 5388 5366 15507 {rgb=(.7 .4 .4)} Face 19090 5366 5218 15507 {rgb=(.7 .4 .4)} Face 19091 5218 5262 15507 {rgb=(.7 .4 .4)} Face 19092 5262 5388 15507 {rgb=(.7 .4 .4)} Face 19093 5064 5072 15508 {rgb=(.7 .4 .4)} Face 19094 5072 4866 15508 {rgb=(.7 .4 .4)} Face 19095 4866 4853 15508 {rgb=(.7 .4 .4)} Face 19096 4853 5064 15508 {rgb=(.7 .4 .4)} Face 19097 5162 5150 15509 {rgb=(.7 .4 .4)} Face 19098 5150 4898 15509 {rgb=(.7 .4 .4)} Face 19099 4898 4919 15509 {rgb=(.7 .4 .4)} Face 19100 4919 5162 15509 {rgb=(.7 .4 .4)} Face 19101 5647 5403 15510 {rgb=(.7 .4 .4)} Face 19102 5403 5410 15510 {rgb=(.7 .4 .4)} Face 19103 5410 5640 15510 {rgb=(.7 .4 .4)} Face 19104 5640 5647 15510 {rgb=(.7 .4 .4)} Face 19105 4558 4630 15511 {rgb=(.7 .4 .4)} Face 19106 4630 4451 15511 {rgb=(.7 .4 .4)} Face 19107 4451 4420 15511 {rgb=(.7 .4 .4)} Face 19108 4420 4558 15511 {rgb=(.7 .4 .4)} Face 19109 4672 4640 15512 {rgb=(.7 .4 .4)} Face 19110 4640 4381 15512 {rgb=(.7 .4 .4)} Face 19111 4381 4429 15512 {rgb=(.7 .4 .4)} Face 19112 4429 4672 15512 {rgb=(.7 .4 .4)} Face 19113 4229 4098 15513 {rgb=(.7 .4 .4)} Face 19114 4098 4024 15513 {rgb=(.7 .4 .4)} Face 19115 4024 4163 15513 {rgb=(.7 .4 .4)} Face 19116 4163 4229 15513 {rgb=(.7 .4 .4)} Face 19117 4174 4153 15514 {rgb=(.7 .4 .4)} Face 19118 4153 3909 15514 {rgb=(.7 .4 .4)} Face 19119 3909 3946 15514 {rgb=(.7 .4 .4)} Face 19120 3946 4174 15514 {rgb=(.7 .4 .4)} Face 19121 4274 4217 15515 {rgb=(.7 .4 .4)} Face 19122 4217 4007 15515 {rgb=(.7 .4 .4)} Face 19123 4007 4069 15515 {rgb=(.7 .4 .4)} Face 19124 4069 4274 15515 {rgb=(.7 .4 .4)} Face 19125 3432 3574 15516 {rgb=(.7 .4 .4)} Face 19126 3574 3571 15516 {rgb=(.7 .4 .4)} Face 19127 3571 3433 15516 {rgb=(.7 .4 .4)} Face 19128 3433 3432 15516 {rgb=(.7 .4 .4)} Face 19129 3664 3622 15517 {rgb=(.7 .4 .4)} Face 19130 3622 3410 15517 {rgb=(.7 .4 .4)} Face 19131 3410 3437 15517 {rgb=(.7 .4 .4)} Face 19132 3437 3664 15517 {rgb=(.7 .4 .4)} Face 19133 3849 3733 15518 {rgb=(.7 .4 .4)} Face 19134 3733 3528 15518 {rgb=(.7 .4 .4)} Face 19135 3528 3598 15518 {rgb=(.7 .4 .4)} Face 19136 3598 3849 15518 {rgb=(.7 .4 .4)} Face 19137 3089 3230 15519 {rgb=(.7 .4 .4)} Face 19138 3230 3110 15519 {rgb=(.7 .4 .4)} Face 19139 3110 2971 15519 {rgb=(.7 .4 .4)} Face 19140 2971 3089 15519 {rgb=(.7 .4 .4)} Face 19141 2883 2786 15520 {rgb=(.7 .4 .4)} Face 19142 2786 2662 15520 {rgb=(.7 .4 .4)} Face 19143 2662 2756 15520 {rgb=(.7 .4 .4)} Face 19144 2756 2883 15520 {rgb=(.7 .4 .4)} Face 19145 3315 3138 15521 {rgb=(.7 .4 .4)} Face 19146 3138 3221 15521 {rgb=(.7 .4 .4)} Face 19147 3221 3405 15521 {rgb=(.7 .4 .4)} Face 19148 3405 3315 15521 {rgb=(.7 .4 .4)} Face 19149 3486 3474 15522 {rgb=(.7 .4 .4)} Face 19150 3474 3295 15522 {rgb=(.7 .4 .4)} Face 19151 3295 3344 15522 {rgb=(.7 .4 .4)} Face 19152 3344 3486 15522 {rgb=(.7 .4 .4)} Face 19153 3096 2993 15523 {rgb=(.7 .4 .4)} Face 19154 2993 2853 15523 {rgb=(.7 .4 .4)} Face 19155 2853 2955 15523 {rgb=(.7 .4 .4)} Face 19156 2955 3096 15523 {rgb=(.7 .4 .4)} Face 19157 5232 5219 15524 {rgb=(.7 .4 .4)} Face 19158 5219 5031 15524 {rgb=(.7 .4 .4)} Face 19159 5031 5060 15524 {rgb=(.7 .4 .4)} Face 19160 5060 5232 15524 {rgb=(.7 .4 .4)} Face 19161 5618 5428 15525 {rgb=(.7 .4 .4)} Face 19162 5428 5434 15525 {rgb=(.7 .4 .4)} Face 19163 5434 5612 15525 {rgb=(.7 .4 .4)} Face 19164 5612 5618 15525 {rgb=(.7 .4 .4)} Face 19165 5268 5241 15526 {rgb=(.7 .4 .4)} Face 19166 5241 5085 15526 {rgb=(.7 .4 .4)} Face 19167 5085 5136 15526 {rgb=(.7 .4 .4)} Face 19168 5136 5268 15526 {rgb=(.7 .4 .4)} Face 19169 5590 5455 15527 {rgb=(.7 .4 .4)} Face 19170 5455 5404 15527 {rgb=(.7 .4 .4)} Face 19171 5404 5646 15527 {rgb=(.7 .4 .4)} Face 19172 5646 5590 15527 {rgb=(.7 .4 .4)} Face 19173 4872 4813 15528 {rgb=(.7 .4 .4)} Face 19174 4813 4550 15528 {rgb=(.7 .4 .4)} Face 19175 4550 4664 15528 {rgb=(.7 .4 .4)} Face 19176 4664 4872 15528 {rgb=(.7 .4 .4)} Face 19177 5017 4935 15529 {rgb=(.7 .4 .4)} Face 19178 4935 4771 15529 {rgb=(.7 .4 .4)} Face 19179 4771 4922 15529 {rgb=(.7 .4 .4)} Face 19180 4922 5017 15529 {rgb=(.7 .4 .4)} Face 19181 4444 4342 15530 {rgb=(.7 .4 .4)} Face 19182 4342 4243 15530 {rgb=(.7 .4 .4)} Face 19183 4243 4353 15530 {rgb=(.7 .4 .4)} Face 19184 4353 4444 15530 {rgb=(.7 .4 .4)} Face 19185 4844 4628 15531 {rgb=(.7 .4 .4)} Face 19186 4628 4551 15531 {rgb=(.7 .4 .4)} Face 19187 4551 4811 15531 {rgb=(.7 .4 .4)} Face 19188 4811 4844 15531 {rgb=(.7 .4 .4)} Face 19189 4326 4172 15532 {rgb=(.7 .4 .4)} Face 19190 4172 4150 15532 {rgb=(.7 .4 .4)} Face 19191 4150 4322 15532 {rgb=(.7 .4 .4)} Face 19192 4322 4326 15532 {rgb=(.7 .4 .4)} Face 19193 4860 4563 15533 {rgb=(.7 .4 .4)} Face 19194 4563 4593 15533 {rgb=(.7 .4 .4)} Face 19195 4593 4845 15533 {rgb=(.7 .4 .4)} Face 19196 4845 4860 15533 {rgb=(.7 .4 .4)} Face 19197 4345 4171 15534 {rgb=(.7 .4 .4)} Face 19198 4171 4275 15534 {rgb=(.7 .4 .4)} Face 19199 4275 4430 15534 {rgb=(.7 .4 .4)} Face 19200 4430 4345 15534 {rgb=(.7 .4 .4)} Face 19201 4873 4637 15535 {rgb=(.7 .4 .4)} Face 19202 4637 4718 15535 {rgb=(.7 .4 .4)} Face 19203 4718 4900 15535 {rgb=(.7 .4 .4)} Face 19204 4900 4873 15535 {rgb=(.7 .4 .4)} Face 19205 4634 4414 15536 {rgb=(.7 .4 .4)} Face 19206 4414 4673 15536 {rgb=(.7 .4 .4)} Face 19207 4673 4837 15536 {rgb=(.7 .4 .4)} Face 19208 4837 4634 15536 {rgb=(.7 .4 .4)} Face 19209 4968 4836 15537 {rgb=(.7 .4 .4)} Face 19210 4836 4954 15537 {rgb=(.7 .4 .4)} Face 19211 4954 5065 15537 {rgb=(.7 .4 .4)} Face 19212 5065 4968 15537 {rgb=(.7 .4 .4)} Face 19213 5005 4906 15538 {rgb=(.7 .4 .4)} Face 19214 4906 5142 15538 {rgb=(.7 .4 .4)} Face 19215 5142 5184 15538 {rgb=(.7 .4 .4)} Face 19216 5184 5005 15538 {rgb=(.7 .4 .4)} Face 19217 5171 5096 15539 {rgb=(.7 .4 .4)} Face 19218 5096 5243 15539 {rgb=(.7 .4 .4)} Face 19219 5243 5296 15539 {rgb=(.7 .4 .4)} Face 19220 5296 5171 15539 {rgb=(.7 .4 .4)} Face 19221 2915 3087 15540 {rgb=(.7 .4 .4)} Face 19222 3087 3073 15540 {rgb=(.7 .4 .4)} Face 19223 3073 2909 15540 {rgb=(.7 .4 .4)} Face 19224 2909 2915 15540 {rgb=(.7 .4 .4)} Face 19225 3343 3222 15541 {rgb=(.7 .4 .4)} Face 19226 3222 3227 15541 {rgb=(.7 .4 .4)} Face 19227 3227 3349 15541 {rgb=(.7 .4 .4)} Face 19228 3349 3343 15541 {rgb=(.7 .4 .4)} Face 19229 3614 3472 15542 {rgb=(.7 .4 .4)} Face 19230 3472 3475 15542 {rgb=(.7 .4 .4)} Face 19231 3475 3616 15542 {rgb=(.7 .4 .4)} Face 19232 3616 3614 15542 {rgb=(.7 .4 .4)} Face 19233 3987 3823 15543 {rgb=(.7 .4 .4)} Face 19234 3823 3828 15543 {rgb=(.7 .4 .4)} Face 19235 3828 3985 15543 {rgb=(.7 .4 .4)} Face 19236 3985 3987 15543 {rgb=(.7 .4 .4)} Face 19237 4251 4116 15544 {rgb=(.7 .4 .4)} Face 19238 4116 4112 15544 {rgb=(.7 .4 .4)} Face 19239 4112 4250 15544 {rgb=(.7 .4 .4)} Face 19240 4250 4251 15544 {rgb=(.7 .4 .4)} Face 19241 4538 4375 15545 {rgb=(.7 .4 .4)} Face 19242 4375 4371 15545 {rgb=(.7 .4 .4)} Face 19243 4371 4528 15545 {rgb=(.7 .4 .4)} Face 19244 4528 4538 15545 {rgb=(.7 .4 .4)} Face 19245 4573 4564 15546 {rgb=(.7 .4 .4)} Face 19246 4564 4367 15546 {rgb=(.7 .4 .4)} Face 19247 4367 4373 15546 {rgb=(.7 .4 .4)} Face 19248 4373 4573 15546 {rgb=(.7 .4 .4)} Face 19249 4578 4583 15547 {rgb=(.7 .4 .4)} Face 19250 4583 4388 15547 {rgb=(.7 .4 .4)} Face 19251 4388 4392 15547 {rgb=(.7 .4 .4)} Face 19252 4392 4578 15547 {rgb=(.7 .4 .4)} Face 19253 4239 4231 15548 {rgb=(.7 .4 .4)} Face 19254 4231 4052 15548 {rgb=(.7 .4 .4)} Face 19255 4052 4067 15548 {rgb=(.7 .4 .4)} Face 19256 4067 4239 15548 {rgb=(.7 .4 .4)} Face 19257 4254 4248 15549 {rgb=(.7 .4 .4)} Face 19258 4248 4082 15549 {rgb=(.7 .4 .4)} Face 19259 4082 4102 15549 {rgb=(.7 .4 .4)} Face 19260 4102 4254 15549 {rgb=(.7 .4 .4)} Face 19261 3888 3869 15550 {rgb=(.7 .4 .4)} Face 19262 3869 3630 15550 {rgb=(.7 .4 .4)} Face 19263 3630 3653 15550 {rgb=(.7 .4 .4)} Face 19264 3653 3888 15550 {rgb=(.7 .4 .4)} Face 19265 3956 3925 15551 {rgb=(.7 .4 .4)} Face 19266 3925 3697 15551 {rgb=(.7 .4 .4)} Face 19267 3697 3731 15551 {rgb=(.7 .4 .4)} Face 19268 3731 3956 15551 {rgb=(.7 .4 .4)} Face 19269 3510 3448 15552 {rgb=(.7 .4 .4)} Face 19270 3448 3246 15552 {rgb=(.7 .4 .4)} Face 19271 3246 3320 15552 {rgb=(.7 .4 .4)} Face 19272 3320 3510 15552 {rgb=(.7 .4 .4)} Face 19273 3038 2954 15553 {rgb=(.7 .4 .4)} Face 19274 2954 2819 15553 {rgb=(.7 .4 .4)} Face 19275 2819 2856 15553 {rgb=(.7 .4 .4)} Face 19276 2856 3038 15553 {rgb=(.7 .4 .4)} Face 19277 3192 3105 15554 {rgb=(.7 .4 .4)} Face 19278 3105 2936 15554 {rgb=(.7 .4 .4)} Face 19279 2936 3062 15554 {rgb=(.7 .4 .4)} Face 19280 3062 3192 15554 {rgb=(.7 .4 .4)} Face 19281 2732 2702 15555 {rgb=(.7 .4 .4)} Face 19282 2702 2620 15555 {rgb=(.7 .4 .4)} Face 19283 2620 2659 15555 {rgb=(.7 .4 .4)} Face 19284 2659 2732 15555 {rgb=(.7 .4 .4)} Face 19285 2894 2806 15556 {rgb=(.7 .4 .4)} Face 19286 2806 2739 15556 {rgb=(.7 .4 .4)} Face 19287 2739 2833 15556 {rgb=(.7 .4 .4)} Face 19288 2833 2894 15556 {rgb=(.7 .4 .4)} Face 19289 2622 2571 15557 {rgb=(.7 .4 .4)} Face 19290 2571 2528 15557 {rgb=(.7 .4 .4)} Face 19291 2528 2578 15557 {rgb=(.7 .4 .4)} Face 19292 2578 2622 15557 {rgb=(.7 .4 .4)} Face 19293 2542 2486 15558 {rgb=(.7 .4 .4)} Face 19294 2486 2439 15558 {rgb=(.7 .4 .4)} Face 19295 2439 2522 15558 {rgb=(.7 .4 .4)} Face 19296 2522 2542 15558 {rgb=(.7 .4 .4)} Face 19297 2365 2440 15559 {rgb=(.7 .4 .4)} Face 19298 2440 2371 15559 {rgb=(.7 .4 .4)} Face 19299 2371 2303 15559 {rgb=(.7 .4 .4)} Face 19300 2303 2365 15559 {rgb=(.7 .4 .4)} Face 19301 2767 2857 15560 {rgb=(.7 .4 .4)} Face 19302 2857 2755 15560 {rgb=(.7 .4 .4)} Face 19303 2755 2676 15560 {rgb=(.7 .4 .4)} Face 19304 2676 2767 15560 {rgb=(.7 .4 .4)} Face 19305 2573 2646 15561 {rgb=(.7 .4 .4)} Face 19306 2646 2549 15561 {rgb=(.7 .4 .4)} Face 19307 2549 2470 15561 {rgb=(.7 .4 .4)} Face 19308 2470 2573 15561 {rgb=(.7 .4 .4)} Face 19309 2384 2454 15562 {rgb=(.7 .4 .4)} Face 19310 2454 2367 15562 {rgb=(.7 .4 .4)} Face 19311 2367 2301 15562 {rgb=(.7 .4 .4)} Face 19312 2301 2384 15562 {rgb=(.7 .4 .4)} Face 19313 2259 2285 15563 {rgb=(.7 .4 .4)} Face 19314 2285 2263 15563 {rgb=(.7 .4 .4)} Face 19315 2263 2258 15563 {rgb=(.7 .4 .4)} Face 19316 2258 2259 15563 {rgb=(.7 .4 .4)} Face 19317 2383 2282 15564 {rgb=(.7 .4 .4)} Face 19318 2282 2284 15564 {rgb=(.7 .4 .4)} Face 19319 2284 2348 15564 {rgb=(.7 .4 .4)} Face 19320 2348 2383 15564 {rgb=(.7 .4 .4)} Face 19321 2927 2935 15565 {rgb=(.7 .4 .4)} Face 19322 2935 2784 15565 {rgb=(.7 .4 .4)} Face 19323 2784 2805 15565 {rgb=(.7 .4 .4)} Face 19324 2805 2927 15565 {rgb=(.7 .4 .4)} Face 19325 2625 2704 15566 {rgb=(.7 .4 .4)} Face 19326 2704 2687 15566 {rgb=(.7 .4 .4)} Face 19327 2687 2615 15566 {rgb=(.7 .4 .4)} Face 19328 2615 2625 15566 {rgb=(.7 .4 .4)} Face 19329 2452 2495 15567 {rgb=(.7 .4 .4)} Face 19330 2495 2471 15567 {rgb=(.7 .4 .4)} Face 19331 2471 2437 15567 {rgb=(.7 .4 .4)} Face 19332 2437 2452 15567 {rgb=(.7 .4 .4)} Face 19333 2351 2361 15568 {rgb=(.7 .4 .4)} Face 19334 2361 2337 15568 {rgb=(.7 .4 .4)} Face 19335 2337 2392 15568 {rgb=(.7 .4 .4)} Face 19336 2392 2351 15568 {rgb=(.7 .4 .4)} Face 19337 2336 2403 15569 {rgb=(.7 .4 .4)} Face 19338 2403 2424 15569 {rgb=(.7 .4 .4)} Face 19339 2424 2273 15569 {rgb=(.7 .4 .4)} Face 19340 2273 2336 15569 {rgb=(.7 .4 .4)} Face 19341 2398 2448 15570 {rgb=(.7 .4 .4)} Face 19342 2448 2469 15570 {rgb=(.7 .4 .4)} Face 19343 2469 2390 15570 {rgb=(.7 .4 .4)} Face 19344 2390 2398 15570 {rgb=(.7 .4 .4)} Face 19345 2735 2667 15571 {rgb=(.7 .4 .4)} Face 19346 2667 2758 15571 {rgb=(.7 .4 .4)} Face 19347 2758 2824 15571 {rgb=(.7 .4 .4)} Face 19348 2824 2735 15571 {rgb=(.7 .4 .4)} Face 19349 2843 2953 15572 {rgb=(.7 .4 .4)} Face 19350 2953 3086 15572 {rgb=(.7 .4 .4)} Face 19351 3086 2928 15572 {rgb=(.7 .4 .4)} Face 19352 2928 2843 15572 {rgb=(.7 .4 .4)} Face 19353 3208 3075 15573 {rgb=(.7 .4 .4)} Face 19354 3075 3157 15573 {rgb=(.7 .4 .4)} Face 19355 3157 3296 15573 {rgb=(.7 .4 .4)} Face 19356 3296 3208 15573 {rgb=(.7 .4 .4)} Face 19357 2265 2350 15574 {rgb=(.7 .4 .4)} Face 19358 2350 2262 15574 {rgb=(.7 .4 .4)} Face 19359 2262 2186 15574 {rgb=(.7 .4 .4)} Face 19360 2186 2265 15574 {rgb=(.7 .4 .4)} Face 19361 3797 3778 15575 {rgb=(.7 .4 .4)} Face 19362 3778 3951 15575 {rgb=(.7 .4 .4)} Face 19363 3951 3962 15575 {rgb=(.7 .4 .4)} Face 19364 3962 3797 15575 {rgb=(.7 .4 .4)} Face 19365 4088 4081 15576 {rgb=(.7 .4 .4)} Face 19366 4081 4226 15576 {rgb=(.7 .4 .4)} Face 19367 4226 4235 15576 {rgb=(.7 .4 .4)} Face 19368 4235 4088 15576 {rgb=(.7 .4 .4)} Face 19369 4343 4334 15577 {rgb=(.7 .4 .4)} Face 19370 4334 4456 15577 {rgb=(.7 .4 .4)} Face 19371 4456 4480 15577 {rgb=(.7 .4 .4)} Face 19372 4480 4343 15577 {rgb=(.7 .4 .4)} Face 19373 4721 4755 15578 {rgb=(.7 .4 .4)} Face 19374 4755 4671 15578 {rgb=(.7 .4 .4)} Face 19375 4671 4644 15578 {rgb=(.7 .4 .4)} Face 19376 4644 4721 15578 {rgb=(.7 .4 .4)} Face 19377 4486 4752 15579 {rgb=(.7 .4 .4)} Face 19378 4752 4705 15579 {rgb=(.7 .4 .4)} Face 19379 4705 4471 15579 {rgb=(.7 .4 .4)} Face 19380 4471 4486 15579 {rgb=(.7 .4 .4)} Face 19381 3932 3907 15580 {rgb=(.7 .4 .4)} Face 19382 3907 4175 15580 {rgb=(.7 .4 .4)} Face 19383 4175 4189 15580 {rgb=(.7 .4 .4)} Face 19384 4189 3932 15580 {rgb=(.7 .4 .4)} Face 19385 3628 3660 15581 {rgb=(.7 .4 .4)} Face 19386 3660 3485 15581 {rgb=(.7 .4 .4)} Face 19387 3485 3418 15581 {rgb=(.7 .4 .4)} Face 19388 3418 3628 15581 {rgb=(.7 .4 .4)} Face 19389 3289 3339 15582 {rgb=(.7 .4 .4)} Face 19390 3339 3240 15582 {rgb=(.7 .4 .4)} Face 19391 3240 3176 15582 {rgb=(.7 .4 .4)} Face 19392 3176 3289 15582 {rgb=(.7 .4 .4)} Face 19393 3128 3183 15583 {rgb=(.7 .4 .4)} Face 19394 3183 3158 15583 {rgb=(.7 .4 .4)} Face 19395 3158 3101 15583 {rgb=(.7 .4 .4)} Face 19396 3101 3128 15583 {rgb=(.7 .4 .4)} Face 19397 3160 3108 15584 {rgb=(.7 .4 .4)} Face 19398 3108 3163 15584 {rgb=(.7 .4 .4)} Face 19399 3163 3196 15584 {rgb=(.7 .4 .4)} Face 19400 3196 3160 15584 {rgb=(.7 .4 .4)} Face 19401 3357 3346 15585 {rgb=(.7 .4 .4)} Face 19402 3346 3238 15585 {rgb=(.7 .4 .4)} Face 19403 3238 3261 15585 {rgb=(.7 .4 .4)} Face 19404 3261 3357 15585 {rgb=(.7 .4 .4)} Face 19405 3479 3488 15586 {rgb=(.7 .4 .4)} Face 19406 3488 3618 15586 {rgb=(.7 .4 .4)} Face 19407 3618 3610 15586 {rgb=(.7 .4 .4)} Face 19408 3610 3479 15586 {rgb=(.7 .4 .4)} Face 19409 4368 4360 15587 {rgb=(.7 .4 .4)} Face 19410 4360 4502 15587 {rgb=(.7 .4 .4)} Face 19411 4502 4519 15587 {rgb=(.7 .4 .4)} Face 19412 4519 4368 15587 {rgb=(.7 .4 .4)} Face 19413 4542 4553 15588 {rgb=(.7 .4 .4)} Face 19414 4553 4387 15588 {rgb=(.7 .4 .4)} Face 19415 4387 4382 15588 {rgb=(.7 .4 .4)} Face 19416 4382 4542 15588 {rgb=(.7 .4 .4)} Face 19417 4804 4854 15589 {rgb=(.7 .4 .4)} Face 19418 4854 4751 15589 {rgb=(.7 .4 .4)} Face 19419 4751 4730 15589 {rgb=(.7 .4 .4)} Face 19420 4730 4804 15589 {rgb=(.7 .4 .4)} Face 19421 4775 4831 15590 {rgb=(.7 .4 .4)} Face 19422 4831 4795 15590 {rgb=(.7 .4 .4)} Face 19423 4795 4787 15590 {rgb=(.7 .4 .4)} Face 19424 4787 4775 15590 {rgb=(.7 .4 .4)} Face 19425 4692 4770 15591 {rgb=(.7 .4 .4)} Face 19426 4770 4781 15591 {rgb=(.7 .4 .4)} Face 19427 4781 4701 15591 {rgb=(.7 .4 .4)} Face 19428 4701 4692 15591 {rgb=(.7 .4 .4)} Face 19429 4106 4101 15592 {rgb=(.7 .4 .4)} Face 19430 4101 4241 15592 {rgb=(.7 .4 .4)} Face 19431 4241 4245 15592 {rgb=(.7 .4 .4)} Face 19432 4245 4106 15592 {rgb=(.7 .4 .4)} Face 19433 4253 4256 15593 {rgb=(.7 .4 .4)} Face 19434 4256 4110 15593 {rgb=(.7 .4 .4)} Face 19435 4110 4117 15593 {rgb=(.7 .4 .4)} Face 19436 4117 4253 15593 {rgb=(.7 .4 .4)} Face 19437 3807 3968 15594 {rgb=(.7 .4 .4)} Face 19438 3968 3978 15594 {rgb=(.7 .4 .4)} Face 19439 3978 3820 15594 {rgb=(.7 .4 .4)} Face 19440 3820 3807 15594 {rgb=(.7 .4 .4)} Face 19441 3982 3967 15595 {rgb=(.7 .4 .4)} Face 19442 3967 3774 15595 {rgb=(.7 .4 .4)} Face 19443 3774 3818 15595 {rgb=(.7 .4 .4)} Face 19444 3818 3982 15595 {rgb=(.7 .4 .4)} Face 19445 3476 3478 15596 {rgb=(.7 .4 .4)} Face 19446 3478 3617 15596 {rgb=(.7 .4 .4)} Face 19447 3617 3619 15596 {rgb=(.7 .4 .4)} Face 19448 3619 3476 15596 {rgb=(.7 .4 .4)} Face 19449 3609 3578 15597 {rgb=(.7 .4 .4)} Face 19450 3578 3417 15597 {rgb=(.7 .4 .4)} Face 19451 3417 3467 15597 {rgb=(.7 .4 .4)} Face 19452 3467 3609 15597 {rgb=(.7 .4 .4)} Face 19453 3231 3345 15598 {rgb=(.7 .4 .4)} Face 19454 3345 3347 15598 {rgb=(.7 .4 .4)} Face 19455 3347 3224 15598 {rgb=(.7 .4 .4)} Face 19456 3224 3231 15598 {rgb=(.7 .4 .4)} Face 19457 3338 3291 15599 {rgb=(.7 .4 .4)} Face 19458 3291 3170 15599 {rgb=(.7 .4 .4)} Face 19459 3170 3216 15599 {rgb=(.7 .4 .4)} Face 19460 3216 3338 15599 {rgb=(.7 .4 .4)} Face 19461 3079 3132 15600 {rgb=(.7 .4 .4)} Face 19462 3132 3123 15600 {rgb=(.7 .4 .4)} Face 19463 3123 3063 15600 {rgb=(.7 .4 .4)} Face 19464 3063 3079 15600 {rgb=(.7 .4 .4)} Face 19465 2981 3067 15601 {rgb=(.7 .4 .4)} Face 19466 3067 3053 15601 {rgb=(.7 .4 .4)} Face 19467 3053 3041 15601 {rgb=(.7 .4 .4)} Face 19468 3041 2981 15601 {rgb=(.7 .4 .4)} Face 19469 3022 2934 15602 {rgb=(.7 .4 .4)} Face 19470 2934 2919 15602 {rgb=(.7 .4 .4)} Face 19471 2919 3024 15602 {rgb=(.7 .4 .4)} Face 19472 3024 3022 15602 {rgb=(.7 .4 .4)} Face 19473 3102 3039 15603 {rgb=(.7 .4 .4)} Face 19474 3039 2956 15603 {rgb=(.7 .4 .4)} Face 19475 2956 3032 15603 {rgb=(.7 .4 .4)} Face 19476 3032 3102 15603 {rgb=(.7 .4 .4)} Face 19477 5044 5075 15604 {rgb=(.7 .4 .4)} Face 19478 5075 5130 15604 {rgb=(.7 .4 .4)} Face 19479 5130 5134 15604 {rgb=(.7 .4 .4)} Face 19480 5134 5044 15604 {rgb=(.7 .4 .4)} Face 19481 5267 5257 15605 {rgb=(.7 .4 .4)} Face 19482 5257 5216 15605 {rgb=(.7 .4 .4)} Face 19483 5216 5223 15605 {rgb=(.7 .4 .4)} Face 19484 5223 5267 15605 {rgb=(.7 .4 .4)} Face 19485 5115 5102 15606 {rgb=(.7 .4 .4)} Face 19486 5102 5009 15606 {rgb=(.7 .4 .4)} Face 19487 5009 4978 15606 {rgb=(.7 .4 .4)} Face 19488 4978 5115 15606 {rgb=(.7 .4 .4)} Face 19489 4764 4740 15607 {rgb=(.7 .4 .4)} Face 19490 4740 4803 15607 {rgb=(.7 .4 .4)} Face 19491 4803 4840 15607 {rgb=(.7 .4 .4)} Face 19492 4840 4764 15607 {rgb=(.7 .4 .4)} Face 19493 4893 4947 15608 {rgb=(.7 .4 .4)} Face 19494 4947 4925 15608 {rgb=(.7 .4 .4)} Face 19495 4925 4835 15608 {rgb=(.7 .4 .4)} Face 19496 4835 4893 15608 {rgb=(.7 .4 .4)} Face 19497 5190 5208 15609 {rgb=(.7 .4 .4)} Face 19498 5208 5175 15609 {rgb=(.7 .4 .4)} Face 19499 5175 5173 15609 {rgb=(.7 .4 .4)} Face 19500 5173 5190 15609 {rgb=(.7 .4 .4)} Face 19501 5263 5275 15610 {rgb=(.7 .4 .4)} Face 19502 5275 5161 15610 {rgb=(.7 .4 .4)} Face 19503 5161 5140 15610 {rgb=(.7 .4 .4)} Face 19504 5140 5263 15610 {rgb=(.7 .4 .4)} Face 19505 5047 5076 15611 {rgb=(.7 .4 .4)} Face 19506 5076 4998 15611 {rgb=(.7 .4 .4)} Face 19507 4998 4979 15611 {rgb=(.7 .4 .4)} Face 19508 4979 5047 15611 {rgb=(.7 .4 .4)} Face 19509 4918 4932 15612 {rgb=(.7 .4 .4)} Face 19510 4932 4874 15612 {rgb=(.7 .4 .4)} Face 19511 4874 4861 15612 {rgb=(.7 .4 .4)} Face 19512 4861 4918 15612 {rgb=(.7 .4 .4)} Face 19513 4762 4790 15613 {rgb=(.7 .4 .4)} Face 19514 4790 4758 15613 {rgb=(.7 .4 .4)} Face 19515 4758 4693 15613 {rgb=(.7 .4 .4)} Face 19516 4693 4762 15613 {rgb=(.7 .4 .4)} Face 19517 4636 4720 15614 {rgb=(.7 .4 .4)} Face 19518 4720 4699 15614 {rgb=(.7 .4 .4)} Face 19519 4699 4603 15614 {rgb=(.7 .4 .4)} Face 19520 4603 4636 15614 {rgb=(.7 .4 .4)} Face 19521 5439 5443 15615 {rgb=(.7 .4 .4)} Face 19522 5443 5603 15615 {rgb=(.7 .4 .4)} Face 19523 5603 5607 15615 {rgb=(.7 .4 .4)} Face 19524 5607 5439 15615 {rgb=(.7 .4 .4)} Face 19525 5118 5129 15616 {rgb=(.7 .4 .4)} Face 19526 5129 5260 15616 {rgb=(.7 .4 .4)} Face 19527 5260 5245 15616 {rgb=(.7 .4 .4)} Face 19528 5245 5118 15616 {rgb=(.7 .4 .4)} Face 19529 4964 4980 15617 {rgb=(.7 .4 .4)} Face 19530 4980 5034 15617 {rgb=(.7 .4 .4)} Face 19531 5034 5019 15617 {rgb=(.7 .4 .4)} Face 19532 5019 4964 15617 {rgb=(.7 .4 .4)} Face 19533 4878 4897 15618 {rgb=(.7 .4 .4)} Face 19534 4897 4962 15618 {rgb=(.7 .4 .4)} Face 19535 4962 4941 15618 {rgb=(.7 .4 .4)} Face 19536 4941 4878 15618 {rgb=(.7 .4 .4)} Face 19537 4613 4646 15619 {rgb=(.7 .4 .4)} Face 19538 4646 4753 15619 {rgb=(.7 .4 .4)} Face 19539 4753 4732 15619 {rgb=(.7 .4 .4)} Face 19540 4732 4613 15619 {rgb=(.7 .4 .4)} Face 19541 4488 4533 15620 {rgb=(.7 .4 .4)} Face 19542 4533 4559 15620 {rgb=(.7 .4 .4)} Face 19543 4559 4530 15620 {rgb=(.7 .4 .4)} Face 19544 4530 4488 15620 {rgb=(.7 .4 .4)} Face 19545 4521 4448 15621 {rgb=(.7 .4 .4)} Face 19546 4448 4411 15621 {rgb=(.7 .4 .4)} Face 19547 4411 4487 15621 {rgb=(.7 .4 .4)} Face 19548 4487 4521 15621 {rgb=(.7 .4 .4)} Face 19549 4432 4347 15622 {rgb=(.7 .4 .4)} Face 19550 4347 4316 15622 {rgb=(.7 .4 .4)} Face 19551 4316 4408 15622 {rgb=(.7 .4 .4)} Face 19552 4408 4432 15622 {rgb=(.7 .4 .4)} Face 19553 5261 5249 15623 {rgb=(.7 .4 .4)} Face 19554 5249 5265 15623 {rgb=(.7 .4 .4)} Face 19555 5265 5279 15623 {rgb=(.7 .4 .4)} Face 19556 5279 5261 15623 {rgb=(.7 .4 .4)} Face 19557 5197 5198 15624 {rgb=(.7 .4 .4)} Face 19558 5198 5157 15624 {rgb=(.7 .4 .4)} Face 19559 5157 5167 15624 {rgb=(.7 .4 .4)} Face 19560 5167 5197 15624 {rgb=(.7 .4 .4)} Face 19561 4986 5014 15625 {rgb=(.7 .4 .4)} Face 19562 5014 5111 15625 {rgb=(.7 .4 .4)} Face 19563 5111 5091 15625 {rgb=(.7 .4 .4)} Face 19564 5091 4986 15625 {rgb=(.7 .4 .4)} Face 19565 4782 4890 15626 {rgb=(.7 .4 .4)} Face 19566 4890 4865 15626 {rgb=(.7 .4 .4)} Face 19567 4865 4750 15626 {rgb=(.7 .4 .4)} Face 19568 4750 4782 15626 {rgb=(.7 .4 .4)} Face 19569 4678 4700 15627 {rgb=(.7 .4 .4)} Face 19570 4700 4736 15627 {rgb=(.7 .4 .4)} Face 19571 4736 4694 15627 {rgb=(.7 .4 .4)} Face 19572 4694 4678 15627 {rgb=(.7 .4 .4)} Face 19573 4852 4887 15628 {rgb=(.7 .4 .4)} Face 19574 4887 4847 15628 {rgb=(.7 .4 .4)} Face 19575 4847 4834 15628 {rgb=(.7 .4 .4)} Face 19576 4834 4852 15628 {rgb=(.7 .4 .4)} Face 19577 4601 4598 15629 {rgb=(.7 .4 .4)} Face 19578 4598 4696 15629 {rgb=(.7 .4 .4)} Face 19579 4696 4715 15629 {rgb=(.7 .4 .4)} Face 19580 4715 4601 15629 {rgb=(.7 .4 .4)} Face 19581 4605 4604 15630 {rgb=(.7 .4 .4)} Face 19582 4604 4706 15630 {rgb=(.7 .4 .4)} Face 19583 4706 4685 15630 {rgb=(.7 .4 .4)} Face 19584 4685 4605 15630 {rgb=(.7 .4 .4)} Face 19585 4505 4511 15631 {rgb=(.7 .4 .4)} Face 19586 4511 4479 15631 {rgb=(.7 .4 .4)} Face 19587 4479 4473 15631 {rgb=(.7 .4 .4)} Face 19588 4473 4505 15631 {rgb=(.7 .4 .4)} Face 19589 4549 4546 15632 {rgb=(.7 .4 .4)} Face 19590 4546 4497 15632 {rgb=(.7 .4 .4)} Face 19591 4497 4503 15632 {rgb=(.7 .4 .4)} Face 19592 4503 4549 15632 {rgb=(.7 .4 .4)} Face 19593 4481 4525 15633 {rgb=(.7 .4 .4)} Face 19594 4525 4541 15633 {rgb=(.7 .4 .4)} Face 19595 4541 4499 15633 {rgb=(.7 .4 .4)} Face 19596 4499 4481 15633 {rgb=(.7 .4 .4)} Face 19597 4582 4565 15634 {rgb=(.7 .4 .4)} Face 19598 4565 4539 15634 {rgb=(.7 .4 .4)} Face 19599 4539 4648 15634 {rgb=(.7 .4 .4)} Face 19600 4648 4582 15634 {rgb=(.7 .4 .4)} Face 19601 4799 4779 15635 {rgb=(.7 .4 .4)} Face 19602 4779 4826 15635 {rgb=(.7 .4 .4)} Face 19603 4826 4879 15635 {rgb=(.7 .4 .4)} Face 19604 4879 4799 15635 {rgb=(.7 .4 .4)} Face 19605 4591 4602 15636 {rgb=(.7 .4 .4)} Face 19606 4602 4668 15636 {rgb=(.7 .4 .4)} Face 19607 4668 4677 15636 {rgb=(.7 .4 .4)} Face 19608 4677 4591 15636 {rgb=(.7 .4 .4)} Face 19609 4469 4485 15637 {rgb=(.7 .4 .4)} Face 19610 4485 4561 15637 {rgb=(.7 .4 .4)} Face 19611 4561 4572 15637 {rgb=(.7 .4 .4)} Face 19612 4572 4469 15637 {rgb=(.7 .4 .4)} Face 19613 4195 4304 15638 {rgb=(.7 .4 .4)} Face 19614 4304 4376 15638 {rgb=(.7 .4 .4)} Face 19615 4376 4190 15638 {rgb=(.7 .4 .4)} Face 19616 4190 4195 15638 {rgb=(.7 .4 .4)} Face 19617 4337 4310 15639 {rgb=(.7 .4 .4)} Face 19618 4310 4133 15639 {rgb=(.7 .4 .4)} Face 19619 4133 4180 15639 {rgb=(.7 .4 .4)} Face 19620 4180 4337 15639 {rgb=(.7 .4 .4)} Face 19621 5631 5416 15640 {rgb=(.7 .4 .4)} Face 19622 5416 5425 15640 {rgb=(.7 .4 .4)} Face 19623 5425 5621 15640 {rgb=(.7 .4 .4)} Face 19624 5621 5631 15640 {rgb=(.7 .4 .4)} Face 19625 5210 5183 15641 {rgb=(.7 .4 .4)} Face 19626 5183 4983 15641 {rgb=(.7 .4 .4)} Face 19627 4983 5032 15641 {rgb=(.7 .4 .4)} Face 19628 5032 5210 15641 {rgb=(.7 .4 .4)} Face 19629 4848 4765 15642 {rgb=(.7 .4 .4)} Face 19630 4765 4449 15642 {rgb=(.7 .4 .4)} Face 19631 4449 4527 15642 {rgb=(.7 .4 .4)} Face 19632 4527 4848 15642 {rgb=(.7 .4 .4)} Face 19633 4258 4230 15643 {rgb=(.7 .4 .4)} Face 19634 4230 4028 15643 {rgb=(.7 .4 .4)} Face 19635 4028 4058 15643 {rgb=(.7 .4 .4)} Face 19636 4058 4258 15643 {rgb=(.7 .4 .4)} Face 19637 3844 3740 15644 {rgb=(.7 .4 .4)} Face 19638 3740 3686 15644 {rgb=(.7 .4 .4)} Face 19639 3686 3763 15644 {rgb=(.7 .4 .4)} Face 19640 3763 3844 15644 {rgb=(.7 .4 .4)} Face 19641 3913 3891 15645 {rgb=(.7 .4 .4)} Face 19642 3891 3779 15645 {rgb=(.7 .4 .4)} Face 19643 3779 3847 15645 {rgb=(.7 .4 .4)} Face 19644 3847 3913 15645 {rgb=(.7 .4 .4)} Face 19645 3681 3605 15646 {rgb=(.7 .4 .4)} Face 19646 3605 3579 15646 {rgb=(.7 .4 .4)} Face 19647 3579 3647 15646 {rgb=(.7 .4 .4)} Face 19648 3647 3681 15646 {rgb=(.7 .4 .4)} Face 19649 3648 3593 15647 {rgb=(.7 .4 .4)} Face 19650 3593 3651 15647 {rgb=(.7 .4 .4)} Face 19651 3651 3687 15647 {rgb=(.7 .4 .4)} Face 19652 3687 3648 15647 {rgb=(.7 .4 .4)} Face 19653 3893 3929 15648 {rgb=(.7 .4 .4)} Face 19654 3929 3786 15648 {rgb=(.7 .4 .4)} Face 19655 3786 3734 15648 {rgb=(.7 .4 .4)} Face 19656 3734 3893 15648 {rgb=(.7 .4 .4)} Face 19657 4267 4297 15649 {rgb=(.7 .4 .4)} Face 19658 4297 4093 15649 {rgb=(.7 .4 .4)} Face 19659 4093 4059 15649 {rgb=(.7 .4 .4)} Face 19660 4059 4267 15649 {rgb=(.7 .4 .4)} Face 19661 4821 4871 15650 {rgb=(.7 .4 .4)} Face 19662 4871 4570 15650 {rgb=(.7 .4 .4)} Face 19663 4570 4501 15650 {rgb=(.7 .4 .4)} Face 19664 4501 4821 15650 {rgb=(.7 .4 .4)} Face 19665 5211 5231 15651 {rgb=(.7 .4 .4)} Face 19666 5231 5059 15651 {rgb=(.7 .4 .4)} Face 19667 5059 5026 15651 {rgb=(.7 .4 .4)} Face 19668 5026 5211 15651 {rgb=(.7 .4 .4)} Face 19669 5433 5426 15652 {rgb=(.7 .4 .4)} Face 19670 5426 5620 15652 {rgb=(.7 .4 .4)} Face 19671 5620 5614 15652 {rgb=(.7 .4 .4)} Face 19672 5614 5433 15652 {rgb=(.7 .4 .4)} Face 19673 5160 5166 15653 {rgb=(.7 .4 .4)} Face 19674 5166 4920 15653 {rgb=(.7 .4 .4)} Face 19675 4920 4910 15653 {rgb=(.7 .4 .4)} Face 19676 4910 5160 15653 {rgb=(.7 .4 .4)} Face 19677 5170 5181 15654 {rgb=(.7 .4 .4)} Face 19678 5181 4966 15654 {rgb=(.7 .4 .4)} Face 19679 4966 4934 15654 {rgb=(.7 .4 .4)} Face 19680 4934 5170 15654 {rgb=(.7 .4 .4)} Face 19681 4643 4652 15655 {rgb=(.7 .4 .4)} Face 19682 4652 4349 15655 {rgb=(.7 .4 .4)} Face 19683 4349 4355 15655 {rgb=(.7 .4 .4)} Face 19684 4355 4643 15655 {rgb=(.7 .4 .4)} Face 19685 4662 4717 15656 {rgb=(.7 .4 .4)} Face 19686 4717 4405 15656 {rgb=(.7 .4 .4)} Face 19687 4405 4356 15656 {rgb=(.7 .4 .4)} Face 19688 4356 4662 15656 {rgb=(.7 .4 .4)} Face 19689 4155 4129 15657 {rgb=(.7 .4 .4)} Face 19690 4129 3939 15657 {rgb=(.7 .4 .4)} Face 19691 3939 3960 15657 {rgb=(.7 .4 .4)} Face 19692 3960 4155 15657 {rgb=(.7 .4 .4)} Face 19693 4132 4177 15658 {rgb=(.7 .4 .4)} Face 19694 4177 3996 15658 {rgb=(.7 .4 .4)} Face 19695 3996 3945 15658 {rgb=(.7 .4 .4)} Face 19696 3945 4132 15658 {rgb=(.7 .4 .4)} Face 19697 3732 3735 15659 {rgb=(.7 .4 .4)} Face 19698 3735 3603 15659 {rgb=(.7 .4 .4)} Face 19699 3603 3582 15659 {rgb=(.7 .4 .4)} Face 19700 3582 3732 15659 {rgb=(.7 .4 .4)} Face 19701 3753 3817 15660 {rgb=(.7 .4 .4)} Face 19702 3817 3671 15660 {rgb=(.7 .4 .4)} Face 19703 3671 3626 15660 {rgb=(.7 .4 .4)} Face 19704 3626 3753 15660 {rgb=(.7 .4 .4)} Face 19705 3464 3521 15661 {rgb=(.7 .4 .4)} Face 19706 3521 3460 15661 {rgb=(.7 .4 .4)} Face 19707 3460 3391 15661 {rgb=(.7 .4 .4)} Face 19708 3391 3464 15661 {rgb=(.7 .4 .4)} Face 19709 3416 3323 15662 {rgb=(.7 .4 .4)} Face 19710 3323 3371 15662 {rgb=(.7 .4 .4)} Face 19711 3371 3450 15662 {rgb=(.7 .4 .4)} Face 19712 3450 3416 15662 {rgb=(.7 .4 .4)} Face 19713 3462 3469 15663 {rgb=(.7 .4 .4)} Face 19714 3469 3377 15663 {rgb=(.7 .4 .4)} Face 19715 3377 3379 15663 {rgb=(.7 .4 .4)} Face 19716 3379 3462 15663 {rgb=(.7 .4 .4)} Face 19717 3608 3590 15664 {rgb=(.7 .4 .4)} Face 19718 3590 3513 15664 {rgb=(.7 .4 .4)} Face 19719 3513 3567 15664 {rgb=(.7 .4 .4)} Face 19720 3567 3608 15664 {rgb=(.7 .4 .4)} Face 19721 3801 3846 15665 {rgb=(.7 .4 .4)} Face 19722 3846 3705 15665 {rgb=(.7 .4 .4)} Face 19723 3705 3662 15665 {rgb=(.7 .4 .4)} Face 19724 3662 3801 15665 {rgb=(.7 .4 .4)} Face 19725 3856 3822 15666 {rgb=(.7 .4 .4)} Face 19726 3822 3670 15666 {rgb=(.7 .4 .4)} Face 19727 3670 3712 15666 {rgb=(.7 .4 .4)} Face 19728 3712 3856 15666 {rgb=(.7 .4 .4)} Face 19729 4126 3974 15667 {rgb=(.7 .4 .4)} Face 19730 3974 3959 15667 {rgb=(.7 .4 .4)} Face 19731 3959 4120 15667 {rgb=(.7 .4 .4)} Face 19732 4120 4126 15667 {rgb=(.7 .4 .4)} Face 19733 4164 4125 15668 {rgb=(.7 .4 .4)} Face 19734 4125 3965 15668 {rgb=(.7 .4 .4)} Face 19735 3965 4002 15668 {rgb=(.7 .4 .4)} Face 19736 4002 4164 15668 {rgb=(.7 .4 .4)} Face 19737 4620 4531 15669 {rgb=(.7 .4 .4)} Face 19738 4531 4311 15669 {rgb=(.7 .4 .4)} Face 19739 4311 4352 15669 {rgb=(.7 .4 .4)} Face 19740 4352 4620 15669 {rgb=(.7 .4 .4)} Face 19741 5087 5079 15670 {rgb=(.7 .4 .4)} Face 19742 5079 4828 15670 {rgb=(.7 .4 .4)} Face 19743 4828 4817 15670 {rgb=(.7 .4 .4)} Face 19744 4817 5087 15670 {rgb=(.7 .4 .4)} Face 19745 5128 5094 15671 {rgb=(.7 .4 .4)} Face 19746 5094 4824 15671 {rgb=(.7 .4 .4)} Face 19747 4824 4886 15671 {rgb=(.7 .4 .4)} Face 19748 4886 5128 15671 {rgb=(.7 .4 .4)} Face 19749 3228 3177 15672 {rgb=(.7 .4 .4)} Face 19750 3177 3056 15672 {rgb=(.7 .4 .4)} Face 19751 3056 3111 15672 {rgb=(.7 .4 .4)} Face 19752 3111 3228 15672 {rgb=(.7 .4 .4)} Face 19753 3268 3264 15673 {rgb=(.7 .4 .4)} Face 19754 3264 3143 15673 {rgb=(.7 .4 .4)} Face 19755 3143 3173 15673 {rgb=(.7 .4 .4)} Face 19756 3173 3268 15673 {rgb=(.7 .4 .4)} Face 19757 5419 5422 15674 {rgb=(.7 .4 .4)} Face 19758 5422 5624 15674 {rgb=(.7 .4 .4)} Face 19759 5624 5628 15674 {rgb=(.7 .4 .4)} Face 19760 5628 5419 15674 {rgb=(.7 .4 .4)} Face 19761 5201 5195 15675 {rgb=(.7 .4 .4)} Face 19762 5195 4987 15675 {rgb=(.7 .4 .4)} Face 19763 4987 5003 15675 {rgb=(.7 .4 .4)} Face 19764 5003 5201 15675 {rgb=(.7 .4 .4)} Face 19765 5199 5186 15676 {rgb=(.7 .4 .4)} Face 19766 5186 4974 15676 {rgb=(.7 .4 .4)} Face 19767 4974 4996 15676 {rgb=(.7 .4 .4)} Face 19768 4996 5199 15676 {rgb=(.7 .4 .4)} Face 19769 4763 4746 15677 {rgb=(.7 .4 .4)} Face 19770 4746 4484 15677 {rgb=(.7 .4 .4)} Face 19771 4484 4467 15677 {rgb=(.7 .4 .4)} Face 19772 4467 4763 15677 {rgb=(.7 .4 .4)} Face 19773 4754 4735 15678 {rgb=(.7 .4 .4)} Face 19774 4735 4475 15678 {rgb=(.7 .4 .4)} Face 19775 4475 4491 15678 {rgb=(.7 .4 .4)} Face 19776 4491 4754 15678 {rgb=(.7 .4 .4)} Face 19777 4774 4768 15679 {rgb=(.7 .4 .4)} Face 19778 4768 4495 15679 {rgb=(.7 .4 .4)} Face 19779 4495 4512 15679 {rgb=(.7 .4 .4)} Face 19780 4512 4774 15679 {rgb=(.7 .4 .4)} Face 19781 4808 4838 15680 {rgb=(.7 .4 .4)} Face 19782 4838 4778 15680 {rgb=(.7 .4 .4)} Face 19783 4778 4791 15680 {rgb=(.7 .4 .4)} Face 19784 4791 4808 15680 {rgb=(.7 .4 .4)} Face 19785 4862 4868 15681 {rgb=(.7 .4 .4)} Face 19786 4868 4830 15681 {rgb=(.7 .4 .4)} Face 19787 4830 4829 15681 {rgb=(.7 .4 .4)} Face 19788 4829 4862 15681 {rgb=(.7 .4 .4)} Face 19789 4586 4784 15682 {rgb=(.7 .4 .4)} Face 19790 4784 4796 15682 {rgb=(.7 .4 .4)} Face 19791 4796 4540 15682 {rgb=(.7 .4 .4)} Face 19792 4540 4586 15682 {rgb=(.7 .4 .4)} Face 19793 4157 3878 15683 {rgb=(.7 .4 .4)} Face 19794 3878 3864 15683 {rgb=(.7 .4 .4)} Face 19795 3864 4152 15683 {rgb=(.7 .4 .4)} Face 19796 4152 4157 15683 {rgb=(.7 .4 .4)} Face 19797 3592 3580 15684 {rgb=(.7 .4 .4)} Face 19798 3580 3436 15684 {rgb=(.7 .4 .4)} Face 19799 3436 3425 15684 {rgb=(.7 .4 .4)} Face 19800 3425 3592 15684 {rgb=(.7 .4 .4)} Face 19801 3576 3591 15685 {rgb=(.7 .4 .4)} Face 19802 3591 3415 15685 {rgb=(.7 .4 .4)} Face 19803 3415 3438 15685 {rgb=(.7 .4 .4)} Face 19804 3438 3576 15685 {rgb=(.7 .4 .4)} Face 19805 2331 2341 15686 {rgb=(.7 .4 .4)} Face 19806 2341 2357 15686 {rgb=(.7 .4 .4)} Face 19807 2357 2335 15686 {rgb=(.7 .4 .4)} Face 19808 2335 2331 15686 {rgb=(.7 .4 .4)} Face 19809 2321 2375 15687 {rgb=(.7 .4 .4)} Face 19810 2375 2379 15687 {rgb=(.7 .4 .4)} Face 19811 2379 2329 15687 {rgb=(.7 .4 .4)} Face 19812 2329 2321 15687 {rgb=(.7 .4 .4)} Face 19813 4038 3952 15688 {rgb=(.7 .4 .4)} Face 19814 3952 4332 15688 {rgb=(.7 .4 .4)} Face 19815 4332 4399 15688 {rgb=(.7 .4 .4)} Face 19816 4399 4038 15688 {rgb=(.7 .4 .4)} Face 19817 3572 3446 15689 {rgb=(.7 .4 .4)} Face 19818 3446 3748 15689 {rgb=(.7 .4 .4)} Face 19819 3748 3901 15689 {rgb=(.7 .4 .4)} Face 19820 3901 3572 15689 {rgb=(.7 .4 .4)} Face 19821 2636 2910 15690 {rgb=(.7 .4 .4)} Face 19822 2910 3048 15690 {rgb=(.7 .4 .4)} Face 19823 3048 2649 15690 {rgb=(.7 .4 .4)} Face 19824 2649 2636 15690 {rgb=(.7 .4 .4)} Face 19825 2407 2417 15691 {rgb=(.7 .4 .4)} Face 19826 2417 2240 15691 {rgb=(.7 .4 .4)} Face 19827 2240 2293 15691 {rgb=(.7 .4 .4)} Face 19828 2293 2407 15691 {rgb=(.7 .4 .4)} Face 19829 2233 2264 15692 {rgb=(.7 .4 .4)} Face 19830 2264 2236 15692 {rgb=(.7 .4 .4)} Face 19831 2236 2221 15692 {rgb=(.7 .4 .4)} Face 19832 2221 2233 15692 {rgb=(.7 .4 .4)} Face 19833 2212 2208 15693 {rgb=(.7 .4 .4)} Face 19834 2208 2193 15693 {rgb=(.7 .4 .4)} Face 19835 2193 2182 15693 {rgb=(.7 .4 .4)} Face 19836 2182 2212 15693 {rgb=(.7 .4 .4)} Face 19837 2187 2189 15694 {rgb=(.7 .4 .4)} Face 19838 2189 2195 15694 {rgb=(.7 .4 .4)} Face 19839 2195 2173 15694 {rgb=(.7 .4 .4)} Face 19840 2173 2187 15694 {rgb=(.7 .4 .4)} Face 19841 2180 2148 15695 {rgb=(.7 .4 .4)} Face 19842 2148 2203 15695 {rgb=(.7 .4 .4)} Face 19843 2203 2248 15695 {rgb=(.7 .4 .4)} Face 19844 2248 2180 15695 {rgb=(.7 .4 .4)} Face 19845 2399 2326 15696 {rgb=(.7 .4 .4)} Face 19846 2326 2401 15696 {rgb=(.7 .4 .4)} Face 19847 2401 2450 15696 {rgb=(.7 .4 .4)} Face 19848 2450 2399 15696 {rgb=(.7 .4 .4)} Face 19849 2405 2425 15697 {rgb=(.7 .4 .4)} Face 19850 2425 2395 15697 {rgb=(.7 .4 .4)} Face 19851 2395 2370 15697 {rgb=(.7 .4 .4)} Face 19852 2370 2405 15697 {rgb=(.7 .4 .4)} Face 19853 2363 2319 15698 {rgb=(.7 .4 .4)} Face 19854 2319 2271 15698 {rgb=(.7 .4 .4)} Face 19855 2271 2314 15698 {rgb=(.7 .4 .4)} Face 19856 2314 2363 15698 {rgb=(.7 .4 .4)} Face 19857 2372 2317 15699 {rgb=(.7 .4 .4)} Face 19858 2317 2281 15699 {rgb=(.7 .4 .4)} Face 19859 2281 2362 15699 {rgb=(.7 .4 .4)} Face 19860 2362 2372 15699 {rgb=(.7 .4 .4)} Face 19861 2453 2414 15700 {rgb=(.7 .4 .4)} Face 19862 2414 2434 15700 {rgb=(.7 .4 .4)} Face 19863 2434 2475 15700 {rgb=(.7 .4 .4)} Face 19864 2475 2453 15700 {rgb=(.7 .4 .4)} Face 19865 2531 2537 15701 {rgb=(.7 .4 .4)} Face 19866 2537 2488 15701 {rgb=(.7 .4 .4)} Face 19867 2488 2473 15701 {rgb=(.7 .4 .4)} Face 19868 2473 2531 15701 {rgb=(.7 .4 .4)} Face 19869 2515 2446 15702 {rgb=(.7 .4 .4)} Face 19870 2446 2433 15702 {rgb=(.7 .4 .4)} Face 19871 2433 2497 15702 {rgb=(.7 .4 .4)} Face 19872 2497 2515 15702 {rgb=(.7 .4 .4)} Face 19873 2460 2484 15703 {rgb=(.7 .4 .4)} Face 19874 2484 2432 15703 {rgb=(.7 .4 .4)} Face 19875 2432 2411 15703 {rgb=(.7 .4 .4)} Face 19876 2411 2460 15703 {rgb=(.7 .4 .4)} Face 19877 2421 2373 15704 {rgb=(.7 .4 .4)} Face 19878 2373 2328 15704 {rgb=(.7 .4 .4)} Face 19879 2328 2376 15704 {rgb=(.7 .4 .4)} Face 19880 2376 2421 15704 {rgb=(.7 .4 .4)} Face 19881 2310 2292 15705 {rgb=(.7 .4 .4)} Face 19882 2292 2277 15705 {rgb=(.7 .4 .4)} Face 19883 2277 2308 15705 {rgb=(.7 .4 .4)} Face 19884 2308 2310 15705 {rgb=(.7 .4 .4)} Face 19885 2344 2387 15706 {rgb=(.7 .4 .4)} Face 19886 2387 2410 15706 {rgb=(.7 .4 .4)} Face 19887 2410 2347 15706 {rgb=(.7 .4 .4)} Face 19888 2347 2344 15706 {rgb=(.7 .4 .4)} Face 19889 2243 2220 15707 {rgb=(.7 .4 .4)} Face 19890 2220 2120 15707 {rgb=(.7 .4 .4)} Face 19891 2120 2269 15707 {rgb=(.7 .4 .4)} Face 19892 2269 2243 15707 {rgb=(.7 .4 .4)} Face 19893 2737 2840 15708 {rgb=(.7 .4 .4)} Face 19894 2840 2780 15708 {rgb=(.7 .4 .4)} Face 19895 2780 2698 15708 {rgb=(.7 .4 .4)} Face 19896 2698 2737 15708 {rgb=(.7 .4 .4)} Face 19897 2613 2637 15709 {rgb=(.7 .4 .4)} Face 19898 2637 2708 15709 {rgb=(.7 .4 .4)} Face 19899 2708 2632 15709 {rgb=(.7 .4 .4)} Face 19900 2632 2613 15709 {rgb=(.7 .4 .4)} Face 19901 2155 2038 15710 {rgb=(.7 .4 .4)} Face 19902 2038 2054 15710 {rgb=(.7 .4 .4)} Face 19903 2054 2137 15710 {rgb=(.7 .4 .4)} Face 19904 2137 2155 15710 {rgb=(.7 .4 .4)} Face 19905 2536 2466 15711 {rgb=(.7 .4 .4)} Face 19906 2466 2431 15711 {rgb=(.7 .4 .4)} Face 19907 2431 2463 15711 {rgb=(.7 .4 .4)} Face 19908 2463 2536 15711 {rgb=(.7 .4 .4)} Face 19909 2299 2345 15712 {rgb=(.7 .4 .4)} Face 19910 2345 2288 15712 {rgb=(.7 .4 .4)} Face 19911 2288 2196 15712 {rgb=(.7 .4 .4)} Face 19912 2196 2299 15712 {rgb=(.7 .4 .4)} Face 19913 2143 2194 15713 {rgb=(.7 .4 .4)} Face 19914 2194 2142 15713 {rgb=(.7 .4 .4)} Face 19915 2142 2128 15713 {rgb=(.7 .4 .4)} Face 19916 2128 2143 15713 {rgb=(.7 .4 .4)} Face 19917 2712 2717 15714 {rgb=(.7 .4 .4)} Face 19918 2717 2653 15714 {rgb=(.7 .4 .4)} Face 19919 2653 2627 15714 {rgb=(.7 .4 .4)} Face 19920 2627 2712 15714 {rgb=(.7 .4 .4)} Face 19921 2804 2782 15715 {rgb=(.7 .4 .4)} Face 19922 2782 2771 15715 {rgb=(.7 .4 .4)} Face 19923 2771 2766 15715 {rgb=(.7 .4 .4)} Face 19924 2766 2804 15715 {rgb=(.7 .4 .4)} Face 19925 2677 2579 15716 {rgb=(.7 .4 .4)} Face 19926 2579 2559 15716 {rgb=(.7 .4 .4)} Face 19927 2559 2656 15716 {rgb=(.7 .4 .4)} Face 19928 2656 2677 15716 {rgb=(.7 .4 .4)} Face 19929 2585 2580 15717 {rgb=(.7 .4 .4)} Face 19930 2580 2670 15717 {rgb=(.7 .4 .4)} Face 19931 2670 2654 15717 {rgb=(.7 .4 .4)} Face 19932 2654 2585 15717 {rgb=(.7 .4 .4)} Face 19933 2162 2156 15718 {rgb=(.7 .4 .4)} Face 19934 2156 2226 15718 {rgb=(.7 .4 .4)} Face 19935 2226 2191 15718 {rgb=(.7 .4 .4)} Face 19936 2191 2162 15718 {rgb=(.7 .4 .4)} Face 19937 1944 1840 15719 {rgb=(.7 .4 .4)} Face 19938 1840 1789 15719 {rgb=(.7 .4 .4)} Face 19939 1789 2040 15719 {rgb=(.7 .4 .4)} Face 19940 2040 1944 15719 {rgb=(.7 .4 .4)} Face 19941 2222 2256 15720 {rgb=(.7 .4 .4)} Face 19942 2256 2242 15720 {rgb=(.7 .4 .4)} Face 19943 2242 2252 15720 {rgb=(.7 .4 .4)} Face 19944 2252 2222 15720 {rgb=(.7 .4 .4)} Face 19945 2290 2276 15721 {rgb=(.7 .4 .4)} Face 19946 2276 2312 15721 {rgb=(.7 .4 .4)} Face 19947 2312 2316 15721 {rgb=(.7 .4 .4)} Face 19948 2316 2290 15721 {rgb=(.7 .4 .4)} Face 19949 8624 8709 15722 {rgb=(.7 .4 .4)} Face 19950 8709 8635 15722 {rgb=(.7 .4 .4)} Face 19951 8635 8540 15722 {rgb=(.7 .4 .4)} Face 19952 8540 8624 15722 {rgb=(.7 .4 .4)} Face 19953 8869 8936 15723 {rgb=(.7 .4 .4)} Face 19954 8936 8938 15723 {rgb=(.7 .4 .4)} Face 19955 8938 8907 15723 {rgb=(.7 .4 .4)} Face 19956 8907 8869 15723 {rgb=(.7 .4 .4)} Face 19957 8905 9033 15724 {rgb=(.7 .4 .4)} Face 19958 9033 9080 15724 {rgb=(.7 .4 .4)} Face 19959 9080 8927 15724 {rgb=(.7 .4 .4)} Face 19960 8927 8905 15724 {rgb=(.7 .4 .4)} Face 19961 8965 9135 15725 {rgb=(.7 .4 .4)} Face 19962 9135 9176 15725 {rgb=(.7 .4 .4)} Face 19963 9176 8993 15725 {rgb=(.7 .4 .4)} Face 19964 8993 8965 15725 {rgb=(.7 .4 .4)} Face 19965 9210 9161 15726 {rgb=(.7 .4 .4)} Face 19966 9161 9219 15726 {rgb=(.7 .4 .4)} Face 19967 9219 9259 15726 {rgb=(.7 .4 .4)} Face 19968 9259 9210 15726 {rgb=(.7 .4 .4)} Face 19969 9119 9071 15727 {rgb=(.7 .4 .4)} Face 19970 9071 9090 15727 {rgb=(.7 .4 .4)} Face 19971 9090 9153 15727 {rgb=(.7 .4 .4)} Face 19972 9153 9119 15727 {rgb=(.7 .4 .4)} Face 19973 9275 9252 15728 {rgb=(.7 .4 .4)} Face 19974 9252 9278 15728 {rgb=(.7 .4 .4)} Face 19975 9278 9299 15728 {rgb=(.7 .4 .4)} Face 19976 9299 9275 15728 {rgb=(.7 .4 .4)} Face 19977 9298 9324 15729 {rgb=(.7 .4 .4)} Face 19978 9324 9328 15729 {rgb=(.7 .4 .4)} Face 19979 9328 9312 15729 {rgb=(.7 .4 .4)} Face 19980 9312 9298 15729 {rgb=(.7 .4 .4)} Face 19981 9149 9074 15730 {rgb=(.7 .4 .4)} Face 19982 9074 9012 15730 {rgb=(.7 .4 .4)} Face 19983 9012 9078 15730 {rgb=(.7 .4 .4)} Face 19984 9078 9149 15730 {rgb=(.7 .4 .4)} Face 19985 8959 8999 15731 {rgb=(.7 .4 .4)} Face 19986 8999 8928 15731 {rgb=(.7 .4 .4)} Face 19987 8928 8911 15731 {rgb=(.7 .4 .4)} Face 19988 8911 8959 15731 {rgb=(.7 .4 .4)} Face 19989 9258 9206 15732 {rgb=(.7 .4 .4)} Face 19990 9206 9139 15732 {rgb=(.7 .4 .4)} Face 19991 9139 9200 15732 {rgb=(.7 .4 .4)} Face 19992 9200 9258 15732 {rgb=(.7 .4 .4)} Face 19993 9281 9255 15733 {rgb=(.7 .4 .4)} Face 19994 9255 9280 15733 {rgb=(.7 .4 .4)} Face 19995 9280 9300 15733 {rgb=(.7 .4 .4)} Face 19996 9300 9281 15733 {rgb=(.7 .4 .4)} Face 19997 9314 9291 15734 {rgb=(.7 .4 .4)} Face 19998 9291 9287 15734 {rgb=(.7 .4 .4)} Face 19999 9287 9323 15734 {rgb=(.7 .4 .4)} Face 20000 9323 9314 15734 {rgb=(.7 .4 .4)} Face 20001 9322 9329 15735 {rgb=(.7 .4 .4)} Face 20002 9329 9330 15735 {rgb=(.7 .4 .4)} Face 20003 9330 9321 15735 {rgb=(.7 .4 .4)} Face 20004 9321 9322 15735 {rgb=(.7 .4 .4)} Face 20005 9320 9289 15736 {rgb=(.7 .4 .4)} Face 20006 9289 9288 15736 {rgb=(.7 .4 .4)} Face 20007 9288 9316 15736 {rgb=(.7 .4 .4)} Face 20008 9316 9320 15736 {rgb=(.7 .4 .4)} Face 20009 9311 9331 15737 {rgb=(.7 .4 .4)} Face 20010 9331 9326 15737 {rgb=(.7 .4 .4)} Face 20011 9326 9305 15737 {rgb=(.7 .4 .4)} Face 20012 9305 9311 15737 {rgb=(.7 .4 .4)} Face 20013 9315 9285 15738 {rgb=(.7 .4 .4)} Face 20014 9285 9282 15738 {rgb=(.7 .4 .4)} Face 20015 9282 9310 15738 {rgb=(.7 .4 .4)} Face 20016 9310 9315 15738 {rgb=(.7 .4 .4)} Face 20017 9295 9318 15739 {rgb=(.7 .4 .4)} Face 20018 9318 9301 15739 {rgb=(.7 .4 .4)} Face 20019 9301 9286 15739 {rgb=(.7 .4 .4)} Face 20020 9286 9295 15739 {rgb=(.7 .4 .4)} Face 20021 9303 9276 15740 {rgb=(.7 .4 .4)} Face 20022 9276 9267 15740 {rgb=(.7 .4 .4)} Face 20023 9267 9292 15740 {rgb=(.7 .4 .4)} Face 20024 9292 9303 15740 {rgb=(.7 .4 .4)} Face 20025 9269 9284 15741 {rgb=(.7 .4 .4)} Face 20026 9284 9266 15741 {rgb=(.7 .4 .4)} Face 20027 9266 9249 15741 {rgb=(.7 .4 .4)} Face 20028 9249 9269 15741 {rgb=(.7 .4 .4)} Face 20029 9279 9263 15742 {rgb=(.7 .4 .4)} Face 20030 9263 9239 15742 {rgb=(.7 .4 .4)} Face 20031 9239 9262 15742 {rgb=(.7 .4 .4)} Face 20032 9262 9279 15742 {rgb=(.7 .4 .4)} Face 20033 9208 9242 15743 {rgb=(.7 .4 .4)} Face 20034 9242 9189 15743 {rgb=(.7 .4 .4)} Face 20035 9189 9151 15743 {rgb=(.7 .4 .4)} Face 20036 9151 9208 15743 {rgb=(.7 .4 .4)} Face 20037 9226 9188 15744 {rgb=(.7 .4 .4)} Face 20038 9188 9145 15744 {rgb=(.7 .4 .4)} Face 20039 9145 9162 15744 {rgb=(.7 .4 .4)} Face 20040 9162 9226 15744 {rgb=(.7 .4 .4)} Face 20041 9076 9133 15745 {rgb=(.7 .4 .4)} Face 20042 9133 9104 15745 {rgb=(.7 .4 .4)} Face 20043 9104 9031 15745 {rgb=(.7 .4 .4)} Face 20044 9031 9076 15745 {rgb=(.7 .4 .4)} Face 20045 9058 9055 15746 {rgb=(.7 .4 .4)} Face 20046 9055 9062 15746 {rgb=(.7 .4 .4)} Face 20047 9062 9082 15746 {rgb=(.7 .4 .4)} Face 20048 9082 9058 15746 {rgb=(.7 .4 .4)} Face 20049 8982 8990 15747 {rgb=(.7 .4 .4)} Face 20050 8990 9016 15747 {rgb=(.7 .4 .4)} Face 20051 9016 8984 15747 {rgb=(.7 .4 .4)} Face 20052 8984 8982 15747 {rgb=(.7 .4 .4)} Face 20053 9028 9044 15748 {rgb=(.7 .4 .4)} Face 20054 9044 8983 15748 {rgb=(.7 .4 .4)} Face 20055 8983 8978 15748 {rgb=(.7 .4 .4)} Face 20056 8978 9028 15748 {rgb=(.7 .4 .4)} Face 20057 8899 8892 15749 {rgb=(.7 .4 .4)} Face 20058 8892 8876 15749 {rgb=(.7 .4 .4)} Face 20059 8876 8885 15749 {rgb=(.7 .4 .4)} Face 20060 8885 8899 15749 {rgb=(.7 .4 .4)} Face 20061 8866 8842 15750 {rgb=(.7 .4 .4)} Face 20062 8842 8825 15750 {rgb=(.7 .4 .4)} Face 20063 8825 8838 15750 {rgb=(.7 .4 .4)} Face 20064 8838 8866 15750 {rgb=(.7 .4 .4)} Face 20065 9002 9089 15751 {rgb=(.7 .4 .4)} Face 20066 9089 9129 15751 {rgb=(.7 .4 .4)} Face 20067 9129 9032 15751 {rgb=(.7 .4 .4)} Face 20068 9032 9002 15751 {rgb=(.7 .4 .4)} Face 20069 9114 9109 15752 {rgb=(.7 .4 .4)} Face 20070 9109 9138 15752 {rgb=(.7 .4 .4)} Face 20071 9138 9142 15752 {rgb=(.7 .4 .4)} Face 20072 9142 9114 15752 {rgb=(.7 .4 .4)} Face 20073 9178 9183 15753 {rgb=(.7 .4 .4)} Face 20074 9183 9196 15753 {rgb=(.7 .4 .4)} Face 20075 9196 9185 15753 {rgb=(.7 .4 .4)} Face 20076 9185 9178 15753 {rgb=(.7 .4 .4)} Face 20077 9243 9223 15754 {rgb=(.7 .4 .4)} Face 20078 9223 9203 15754 {rgb=(.7 .4 .4)} Face 20079 9203 9229 15754 {rgb=(.7 .4 .4)} Face 20080 9229 9243 15754 {rgb=(.7 .4 .4)} Face 20081 9159 9187 15755 {rgb=(.7 .4 .4)} Face 20082 9187 9190 15755 {rgb=(.7 .4 .4)} Face 20083 9190 9152 15755 {rgb=(.7 .4 .4)} Face 20084 9152 9159 15755 {rgb=(.7 .4 .4)} Face 20085 9194 9191 15756 {rgb=(.7 .4 .4)} Face 20086 9191 9180 15756 {rgb=(.7 .4 .4)} Face 20087 9180 9169 15756 {rgb=(.7 .4 .4)} Face 20088 9169 9194 15756 {rgb=(.7 .4 .4)} Face 20089 9163 9215 15757 {rgb=(.7 .4 .4)} Face 20090 9215 9222 15757 {rgb=(.7 .4 .4)} Face 20091 9222 9164 15757 {rgb=(.7 .4 .4)} Face 20092 9164 9163 15757 {rgb=(.7 .4 .4)} Face 20093 9140 9155 15758 {rgb=(.7 .4 .4)} Face 20094 9155 9220 15758 {rgb=(.7 .4 .4)} Face 20095 9220 9199 15758 {rgb=(.7 .4 .4)} Face 20096 9199 9140 15758 {rgb=(.7 .4 .4)} Face 20097 9177 9143 15759 {rgb=(.7 .4 .4)} Face 20098 9143 9113 15759 {rgb=(.7 .4 .4)} Face 20099 9113 9121 15759 {rgb=(.7 .4 .4)} Face 20100 9121 9177 15759 {rgb=(.7 .4 .4)} Face 20101 8998 9007 15760 {rgb=(.7 .4 .4)} Face 20102 9007 9056 15760 {rgb=(.7 .4 .4)} Face 20103 9056 9005 15760 {rgb=(.7 .4 .4)} Face 20104 9005 8998 15760 {rgb=(.7 .4 .4)} Face 20105 9136 9225 15761 {rgb=(.7 .4 .4)} Face 20106 9225 9232 15761 {rgb=(.7 .4 .4)} Face 20107 9232 9079 15761 {rgb=(.7 .4 .4)} Face 20108 9079 9136 15761 {rgb=(.7 .4 .4)} Face 20109 8981 8966 15762 {rgb=(.7 .4 .4)} Face 20110 8966 8913 15762 {rgb=(.7 .4 .4)} Face 20111 8913 8921 15762 {rgb=(.7 .4 .4)} Face 20112 8921 8981 15762 {rgb=(.7 .4 .4)} Face 20113 8972 8901 15763 {rgb=(.7 .4 .4)} Face 20114 8901 8970 15763 {rgb=(.7 .4 .4)} Face 20115 8970 9014 15763 {rgb=(.7 .4 .4)} Face 20116 9014 8972 15763 {rgb=(.7 .4 .4)} Face 20117 9118 9067 15764 {rgb=(.7 .4 .4)} Face 20118 9067 9197 15764 {rgb=(.7 .4 .4)} Face 20119 9197 9201 15764 {rgb=(.7 .4 .4)} Face 20120 9201 9118 15764 {rgb=(.7 .4 .4)} Face 20121 8791 8748 15765 {rgb=(.7 .4 .4)} Face 20122 8748 8873 15765 {rgb=(.7 .4 .4)} Face 20123 8873 8834 15765 {rgb=(.7 .4 .4)} Face 20124 8834 8791 15765 {rgb=(.7 .4 .4)} Face 20125 9075 9218 15766 {rgb=(.7 .4 .4)} Face 20126 9218 9217 15766 {rgb=(.7 .4 .4)} Face 20127 9217 9052 15766 {rgb=(.7 .4 .4)} Face 20128 9052 9075 15766 {rgb=(.7 .4 .4)} Face 20129 9042 9192 15767 {rgb=(.7 .4 .4)} Face 20130 9192 9160 15767 {rgb=(.7 .4 .4)} Face 20131 9160 9019 15767 {rgb=(.7 .4 .4)} Face 20132 9019 9042 15767 {rgb=(.7 .4 .4)} Face 20133 8989 9124 15768 {rgb=(.7 .4 .4)} Face 20134 9124 9039 15768 {rgb=(.7 .4 .4)} Face 20135 9039 8937 15768 {rgb=(.7 .4 .4)} Face 20136 8937 8989 15768 {rgb=(.7 .4 .4)} Face 20137 8844 8968 15769 {rgb=(.7 .4 .4)} Face 20138 8968 8926 15769 {rgb=(.7 .4 .4)} Face 20139 8926 8801 15769 {rgb=(.7 .4 .4)} Face 20140 8801 8844 15769 {rgb=(.7 .4 .4)} Face 20141 8833 8975 15770 {rgb=(.7 .4 .4)} Face 20142 8975 8951 15770 {rgb=(.7 .4 .4)} Face 20143 8951 8875 15770 {rgb=(.7 .4 .4)} Face 20144 8875 8833 15770 {rgb=(.7 .4 .4)} Face 20145 8653 8611 15771 {rgb=(.7 .4 .4)} Face 20146 8611 8545 15771 {rgb=(.7 .4 .4)} Face 20147 8545 8561 15771 {rgb=(.7 .4 .4)} Face 20148 8561 8653 15771 {rgb=(.7 .4 .4)} Face 20149 8667 8567 15772 {rgb=(.7 .4 .4)} Face 20150 8567 8587 15772 {rgb=(.7 .4 .4)} Face 20151 8587 8706 15772 {rgb=(.7 .4 .4)} Face 20152 8706 8667 15772 {rgb=(.7 .4 .4)} Face 20153 8827 8777 15773 {rgb=(.7 .4 .4)} Face 20154 8777 8621 15773 {rgb=(.7 .4 .4)} Face 20155 8621 8655 15773 {rgb=(.7 .4 .4)} Face 20156 8655 8827 15773 {rgb=(.7 .4 .4)} Face 20157 8546 8512 15774 {rgb=(.7 .4 .4)} Face 20158 8512 8423 15774 {rgb=(.7 .4 .4)} Face 20159 8423 8456 15774 {rgb=(.7 .4 .4)} Face 20160 8456 8546 15774 {rgb=(.7 .4 .4)} Face 20161 8868 8689 15775 {rgb=(.7 .4 .4)} Face 20162 8689 8742 15775 {rgb=(.7 .4 .4)} Face 20163 8742 8888 15775 {rgb=(.7 .4 .4)} Face 20164 8888 8868 15775 {rgb=(.7 .4 .4)} Face 20165 8657 8595 15776 {rgb=(.7 .4 .4)} Face 20166 8595 8632 15776 {rgb=(.7 .4 .4)} Face 20167 8632 8723 15776 {rgb=(.7 .4 .4)} Face 20168 8723 8657 15776 {rgb=(.7 .4 .4)} Face 20169 8533 8490 15777 {rgb=(.7 .4 .4)} Face 20170 8490 8432 15777 {rgb=(.7 .4 .4)} Face 20171 8432 8473 15777 {rgb=(.7 .4 .4)} Face 20172 8473 8533 15777 {rgb=(.7 .4 .4)} Face 20173 8450 8421 15778 {rgb=(.7 .4 .4)} Face 20174 8421 8354 15778 {rgb=(.7 .4 .4)} Face 20175 8354 8392 15778 {rgb=(.7 .4 .4)} Face 20176 8392 8450 15778 {rgb=(.7 .4 .4)} Face 20177 8497 8554 15779 {rgb=(.7 .4 .4)} Face 20178 8554 8593 15779 {rgb=(.7 .4 .4)} Face 20179 8593 8517 15779 {rgb=(.7 .4 .4)} Face 20180 8517 8497 15779 {rgb=(.7 .4 .4)} Face 20181 8452 8405 15780 {rgb=(.7 .4 .4)} Face 20182 8405 8380 15780 {rgb=(.7 .4 .4)} Face 20183 8380 8444 15780 {rgb=(.7 .4 .4)} Face 20184 8444 8452 15780 {rgb=(.7 .4 .4)} Face 20185 8334 8280 15781 {rgb=(.7 .4 .4)} Face 20186 8280 8244 15781 {rgb=(.7 .4 .4)} Face 20187 8244 8298 15781 {rgb=(.7 .4 .4)} Face 20188 8298 8334 15781 {rgb=(.7 .4 .4)} Face 20189 8445 8370 15782 {rgb=(.7 .4 .4)} Face 20190 8370 8384 15782 {rgb=(.7 .4 .4)} Face 20191 8384 8454 15782 {rgb=(.7 .4 .4)} Face 20192 8454 8445 15782 {rgb=(.7 .4 .4)} Face 20193 8283 8233 15783 {rgb=(.7 .4 .4)} Face 20194 8233 8245 15783 {rgb=(.7 .4 .4)} Face 20195 8245 8299 15783 {rgb=(.7 .4 .4)} Face 20196 8299 8283 15783 {rgb=(.7 .4 .4)} Face 20197 8481 8415 15784 {rgb=(.7 .4 .4)} Face 20198 8415 8442 15784 {rgb=(.7 .4 .4)} Face 20199 8442 8505 15784 {rgb=(.7 .4 .4)} Face 20200 8505 8481 15784 {rgb=(.7 .4 .4)} Face 20201 8340 8285 15785 {rgb=(.7 .4 .4)} Face 20202 8285 8342 15785 {rgb=(.7 .4 .4)} Face 20203 8342 8387 15785 {rgb=(.7 .4 .4)} Face 20204 8387 8340 15785 {rgb=(.7 .4 .4)} Face 20205 8566 8498 15786 {rgb=(.7 .4 .4)} Face 20206 8498 8562 15786 {rgb=(.7 .4 .4)} Face 20207 8562 8619 15786 {rgb=(.7 .4 .4)} Face 20208 8619 8566 15786 {rgb=(.7 .4 .4)} Face 20209 8439 8404 15787 {rgb=(.7 .4 .4)} Face 20210 8404 8437 15787 {rgb=(.7 .4 .4)} Face 20211 8437 8483 15787 {rgb=(.7 .4 .4)} Face 20212 8483 8439 15787 {rgb=(.7 .4 .4)} Face 20213 8698 8627 15788 {rgb=(.7 .4 .4)} Face 20214 8627 8623 15788 {rgb=(.7 .4 .4)} Face 20215 8623 8695 15788 {rgb=(.7 .4 .4)} Face 20216 8695 8698 15788 {rgb=(.7 .4 .4)} Face 20217 8629 8551 15789 {rgb=(.7 .4 .4)} Face 20218 8551 8480 15789 {rgb=(.7 .4 .4)} Face 20219 8480 8535 15789 {rgb=(.7 .4 .4)} Face 20220 8535 8629 15789 {rgb=(.7 .4 .4)} Face 20221 8465 8397 15790 {rgb=(.7 .4 .4)} Face 20222 8397 8330 15790 {rgb=(.7 .4 .4)} Face 20223 8330 8412 15790 {rgb=(.7 .4 .4)} Face 20224 8412 8465 15790 {rgb=(.7 .4 .4)} Face 20225 8458 8411 15791 {rgb=(.7 .4 .4)} Face 20226 8411 8311 15791 {rgb=(.7 .4 .4)} Face 20227 8311 8376 15791 {rgb=(.7 .4 .4)} Face 20228 8376 8458 15791 {rgb=(.7 .4 .4)} Face 20229 8323 8236 15792 {rgb=(.7 .4 .4)} Face 20230 8236 8125 15792 {rgb=(.7 .4 .4)} Face 20231 8125 8228 15792 {rgb=(.7 .4 .4)} Face 20232 8228 8323 15792 {rgb=(.7 .4 .4)} Face 20233 8270 8192 15793 {rgb=(.7 .4 .4)} Face 20234 8192 8130 15793 {rgb=(.7 .4 .4)} Face 20235 8130 8205 15793 {rgb=(.7 .4 .4)} Face 20236 8205 8270 15793 {rgb=(.7 .4 .4)} Face 20237 8167 8098 15794 {rgb=(.7 .4 .4)} Face 20238 8098 7946 15794 {rgb=(.7 .4 .4)} Face 20239 7946 8010 15794 {rgb=(.7 .4 .4)} Face 20240 8010 8167 15794 {rgb=(.7 .4 .4)} Face 20241 8055 8028 15795 {rgb=(.7 .4 .4)} Face 20242 8028 7851 15795 {rgb=(.7 .4 .4)} Face 20243 7851 7899 15795 {rgb=(.7 .4 .4)} Face 20244 7899 8055 15795 {rgb=(.7 .4 .4)} Face 20245 7991 8009 15796 {rgb=(.7 .4 .4)} Face 20246 8009 7800 15796 {rgb=(.7 .4 .4)} Face 20247 7800 7793 15796 {rgb=(.7 .4 .4)} Face 20248 7793 7991 15796 {rgb=(.7 .4 .4)} Face 20249 8078 8030 15797 {rgb=(.7 .4 .4)} Face 20250 8030 7942 15797 {rgb=(.7 .4 .4)} Face 20251 7942 7979 15797 {rgb=(.7 .4 .4)} Face 20252 7979 8078 15797 {rgb=(.7 .4 .4)} Face 20253 7849 7757 15798 {rgb=(.7 .4 .4)} Face 20254 7757 7542 15798 {rgb=(.7 .4 .4)} Face 20255 7542 7702 15798 {rgb=(.7 .4 .4)} Face 20256 7702 7849 15798 {rgb=(.7 .4 .4)} Face 20257 7667 7589 15799 {rgb=(.7 .4 .4)} Face 20258 7589 7245 15799 {rgb=(.7 .4 .4)} Face 20259 7245 7390 15799 {rgb=(.7 .4 .4)} Face 20260 7390 7667 15799 {rgb=(.7 .4 .4)} Face 20261 7506 7495 15800 {rgb=(.7 .4 .4)} Face 20262 7495 7097 15800 {rgb=(.7 .4 .4)} Face 20263 7097 7133 15800 {rgb=(.7 .4 .4)} Face 20264 7133 7506 15800 {rgb=(.7 .4 .4)} Face 20265 6690 6631 15801 {rgb=(.7 .4 .4)} Face 20266 6631 6070 15801 {rgb=(.7 .4 .4)} Face 20267 6070 6119 15801 {rgb=(.7 .4 .4)} Face 20268 6119 6690 15801 {rgb=(.7 .4 .4)} Face 20269 8565 8321 15802 {rgb=(.7 .4 .4)} Face 20270 8321 8453 15802 {rgb=(.7 .4 .4)} Face 20271 8453 8666 15802 {rgb=(.7 .4 .4)} Face 20272 8666 8565 15802 {rgb=(.7 .4 .4)} Face 20273 7877 7541 15803 {rgb=(.7 .4 .4)} Face 20274 7541 7813 15803 {rgb=(.7 .4 .4)} Face 20275 7813 8180 15803 {rgb=(.7 .4 .4)} Face 20276 8180 7877 15803 {rgb=(.7 .4 .4)} Face 20277 8738 8577 15804 {rgb=(.7 .4 .4)} Face 20278 8577 8677 15804 {rgb=(.7 .4 .4)} Face 20279 8677 8806 15804 {rgb=(.7 .4 .4)} Face 20280 8806 8738 15804 {rgb=(.7 .4 .4)} Face 20281 8375 8118 15805 {rgb=(.7 .4 .4)} Face 20282 8118 8272 15805 {rgb=(.7 .4 .4)} Face 20283 8272 8499 15805 {rgb=(.7 .4 .4)} Face 20284 8499 8375 15805 {rgb=(.7 .4 .4)} Face 20285 8867 8766 15806 {rgb=(.7 .4 .4)} Face 20286 8766 8800 15806 {rgb=(.7 .4 .4)} Face 20287 8800 8887 15806 {rgb=(.7 .4 .4)} Face 20288 8887 8867 15806 {rgb=(.7 .4 .4)} Face 20289 8559 8318 15807 {rgb=(.7 .4 .4)} Face 20290 8318 8350 15807 {rgb=(.7 .4 .4)} Face 20291 8350 8589 15807 {rgb=(.7 .4 .4)} Face 20292 8589 8559 15807 {rgb=(.7 .4 .4)} Face 20293 8877 8792 15808 {rgb=(.7 .4 .4)} Face 20294 8792 8770 15808 {rgb=(.7 .4 .4)} Face 20295 8770 8851 15808 {rgb=(.7 .4 .4)} Face 20296 8851 8877 15808 {rgb=(.7 .4 .4)} Face 20297 8599 8368 15809 {rgb=(.7 .4 .4)} Face 20298 8368 8379 15809 {rgb=(.7 .4 .4)} Face 20299 8379 8598 15809 {rgb=(.7 .4 .4)} Face 20300 8598 8599 15809 {rgb=(.7 .4 .4)} Face 20301 8820 8727 15810 {rgb=(.7 .4 .4)} Face 20302 8727 8628 15810 {rgb=(.7 .4 .4)} Face 20303 8628 8724 15810 {rgb=(.7 .4 .4)} Face 20304 8724 8820 15810 {rgb=(.7 .4 .4)} Face 20305 8588 8386 15811 {rgb=(.7 .4 .4)} Face 20306 8386 8369 15811 {rgb=(.7 .4 .4)} Face 20307 8369 8532 15811 {rgb=(.7 .4 .4)} Face 20308 8532 8588 15811 {rgb=(.7 .4 .4)} Face 20309 8580 8508 15812 {rgb=(.7 .4 .4)} Face 20310 8508 8462 15812 {rgb=(.7 .4 .4)} Face 20311 8462 8521 15812 {rgb=(.7 .4 .4)} Face 20312 8521 8580 15812 {rgb=(.7 .4 .4)} Face 20313 8449 8337 15813 {rgb=(.7 .4 .4)} Face 20314 8337 8312 15813 {rgb=(.7 .4 .4)} Face 20315 8312 8418 15813 {rgb=(.7 .4 .4)} Face 20316 8418 8449 15813 {rgb=(.7 .4 .4)} Face 20317 8408 8301 15814 {rgb=(.7 .4 .4)} Face 20318 8301 8316 15814 {rgb=(.7 .4 .4)} Face 20319 8316 8417 15814 {rgb=(.7 .4 .4)} Face 20320 8417 8408 15814 {rgb=(.7 .4 .4)} Face 20321 7300 6805 15815 {rgb=(.7 .4 .4)} Face 20322 6805 7016 15815 {rgb=(.7 .4 .4)} Face 20323 7016 7496 15815 {rgb=(.7 .4 .4)} Face 20324 7496 7300 15815 {rgb=(.7 .4 .4)} Face 20325 5616 5838 15816 {rgb=(.7 .4 .4)} Face 20326 5838 6236 15816 {rgb=(.7 .4 .4)} Face 20327 6236 5429 15816 {rgb=(.7 .4 .4)} Face 20328 5429 5616 15816 {rgb=(.7 .4 .4)} Face 20329 7739 7335 15817 {rgb=(.7 .4 .4)} Face 20330 7335 7497 15817 {rgb=(.7 .4 .4)} Face 20331 7497 7890 15817 {rgb=(.7 .4 .4)} Face 20332 7890 7739 15817 {rgb=(.7 .4 .4)} Face 20333 6810 6536 15818 {rgb=(.7 .4 .4)} Face 20334 6536 6712 15818 {rgb=(.7 .4 .4)} Face 20335 6712 7050 15818 {rgb=(.7 .4 .4)} Face 20336 7050 6810 15818 {rgb=(.7 .4 .4)} Face 20337 7916 7523 15819 {rgb=(.7 .4 .4)} Face 20338 7523 7561 15819 {rgb=(.7 .4 .4)} Face 20339 7561 7956 15819 {rgb=(.7 .4 .4)} Face 20340 7956 7916 15819 {rgb=(.7 .4 .4)} Face 20341 7103 6744 15820 {rgb=(.7 .4 .4)} Face 20342 6744 6776 15820 {rgb=(.7 .4 .4)} Face 20343 6776 7157 15820 {rgb=(.7 .4 .4)} Face 20344 7157 7103 15820 {rgb=(.7 .4 .4)} Face 20345 7998 7617 15821 {rgb=(.7 .4 .4)} Face 20346 7617 7653 15821 {rgb=(.7 .4 .4)} Face 20347 7653 8035 15821 {rgb=(.7 .4 .4)} Face 20348 8035 7998 15821 {rgb=(.7 .4 .4)} Face 20349 8057 7694 15822 {rgb=(.7 .4 .4)} Face 20350 7694 7745 15822 {rgb=(.7 .4 .4)} Face 20351 7745 8094 15822 {rgb=(.7 .4 .4)} Face 20352 8094 8057 15822 {rgb=(.7 .4 .4)} Face 20353 7358 7131 15823 {rgb=(.7 .4 .4)} Face 20354 7131 7171 15823 {rgb=(.7 .4 .4)} Face 20355 7171 7421 15823 {rgb=(.7 .4 .4)} Face 20356 7421 7358 15823 {rgb=(.7 .4 .4)} Face 20357 8117 7805 15824 {rgb=(.7 .4 .4)} Face 20358 7805 7857 15824 {rgb=(.7 .4 .4)} Face 20359 7857 8140 15824 {rgb=(.7 .4 .4)} Face 20360 8140 8117 15824 {rgb=(.7 .4 .4)} Face 20361 7490 7293 15825 {rgb=(.7 .4 .4)} Face 20362 7293 7377 15825 {rgb=(.7 .4 .4)} Face 20363 7377 7567 15825 {rgb=(.7 .4 .4)} Face 20364 7567 7490 15825 {rgb=(.7 .4 .4)} Face 20365 8155 7896 15826 {rgb=(.7 .4 .4)} Face 20366 7896 7944 15826 {rgb=(.7 .4 .4)} Face 20367 7944 8182 15826 {rgb=(.7 .4 .4)} Face 20368 8182 8155 15826 {rgb=(.7 .4 .4)} Face 20369 7646 7454 15827 {rgb=(.7 .4 .4)} Face 20370 7454 7499 15827 {rgb=(.7 .4 .4)} Face 20371 7499 7716 15827 {rgb=(.7 .4 .4)} Face 20372 7716 7646 15827 {rgb=(.7 .4 .4)} Face 20373 7322 7287 15828 {rgb=(.7 .4 .4)} Face 20374 7287 7083 15828 {rgb=(.7 .4 .4)} Face 20375 7083 7113 15828 {rgb=(.7 .4 .4)} Face 20376 7113 7322 15828 {rgb=(.7 .4 .4)} Face 20377 7202 7143 15829 {rgb=(.7 .4 .4)} Face 20378 7143 6997 15829 {rgb=(.7 .4 .4)} Face 20379 6997 7052 15829 {rgb=(.7 .4 .4)} Face 20380 7052 7202 15829 {rgb=(.7 .4 .4)} Face 20381 7040 7005 15830 {rgb=(.7 .4 .4)} Face 20382 7005 6853 15830 {rgb=(.7 .4 .4)} Face 20383 6853 6902 15830 {rgb=(.7 .4 .4)} Face 20384 6902 7040 15830 {rgb=(.7 .4 .4)} Face 20385 6949 6924 15831 {rgb=(.7 .4 .4)} Face 20386 6924 6750 15831 {rgb=(.7 .4 .4)} Face 20387 6750 6761 15831 {rgb=(.7 .4 .4)} Face 20388 6761 6949 15831 {rgb=(.7 .4 .4)} Face 20389 6907 6834 15832 {rgb=(.7 .4 .4)} Face 20390 6834 6653 15832 {rgb=(.7 .4 .4)} Face 20391 6653 6737 15832 {rgb=(.7 .4 .4)} Face 20392 6737 6907 15832 {rgb=(.7 .4 .4)} Face 20393 6719 6598 15833 {rgb=(.7 .4 .4)} Face 20394 6598 6351 15833 {rgb=(.7 .4 .4)} Face 20395 6351 6489 15833 {rgb=(.7 .4 .4)} Face 20396 6489 6719 15833 {rgb=(.7 .4 .4)} Face 20397 6614 6586 15834 {rgb=(.7 .4 .4)} Face 20398 6586 6310 15834 {rgb=(.7 .4 .4)} Face 20399 6310 6358 15834 {rgb=(.7 .4 .4)} Face 20400 6358 6614 15834 {rgb=(.7 .4 .4)} Face 20401 6546 6402 15835 {rgb=(.7 .4 .4)} Face 20402 6402 6159 15835 {rgb=(.7 .4 .4)} Face 20403 6159 6276 15835 {rgb=(.7 .4 .4)} Face 20404 6276 6546 15835 {rgb=(.7 .4 .4)} Face 20405 6196 6093 15836 {rgb=(.7 .4 .4)} Face 20406 6093 5954 15836 {rgb=(.7 .4 .4)} Face 20407 5954 6028 15836 {rgb=(.7 .4 .4)} Face 20408 6028 6196 15836 {rgb=(.7 .4 .4)} Face 20409 5863 5962 15837 {rgb=(.7 .4 .4)} Face 20410 5962 6013 15837 {rgb=(.7 .4 .4)} Face 20411 6013 5896 15837 {rgb=(.7 .4 .4)} Face 20412 5896 5863 15837 {rgb=(.7 .4 .4)} Face 20413 6047 5995 15838 {rgb=(.7 .4 .4)} Face 20414 5995 5882 15838 {rgb=(.7 .4 .4)} Face 20415 5882 5893 15838 {rgb=(.7 .4 .4)} Face 20416 5893 6047 15838 {rgb=(.7 .4 .4)} Face 20417 5712 5765 15839 {rgb=(.7 .4 .4)} Face 20418 5765 5655 15839 {rgb=(.7 .4 .4)} Face 20419 5655 5629 15839 {rgb=(.7 .4 .4)} Face 20420 5629 5712 15839 {rgb=(.7 .4 .4)} Face 20421 5784 5795 15840 {rgb=(.7 .4 .4)} Face 20422 5795 5701 15840 {rgb=(.7 .4 .4)} Face 20423 5701 5681 15840 {rgb=(.7 .4 .4)} Face 20424 5681 5784 15840 {rgb=(.7 .4 .4)} Face 20425 5478 5486 15841 {rgb=(.7 .4 .4)} Face 20426 5486 5558 15841 {rgb=(.7 .4 .4)} Face 20427 5558 5566 15841 {rgb=(.7 .4 .4)} Face 20428 5566 5478 15841 {rgb=(.7 .4 .4)} Face 20429 5462 5467 15842 {rgb=(.7 .4 .4)} Face 20430 5467 5578 15842 {rgb=(.7 .4 .4)} Face 20431 5578 5583 15842 {rgb=(.7 .4 .4)} Face 20432 5583 5462 15842 {rgb=(.7 .4 .4)} Face 20433 5475 5458 15843 {rgb=(.7 .4 .4)} Face 20434 5458 5587 15843 {rgb=(.7 .4 .4)} Face 20435 5587 5569 15843 {rgb=(.7 .4 .4)} Face 20436 5569 5475 15843 {rgb=(.7 .4 .4)} Face 20437 5393 5659 15844 {rgb=(.7 .4 .4)} Face 20438 5659 5661 15844 {rgb=(.7 .4 .4)} Face 20439 5661 5391 15844 {rgb=(.7 .4 .4)} Face 20440 5391 5393 15844 {rgb=(.7 .4 .4)} Face 20441 5935 6320 15845 {rgb=(.7 .4 .4)} Face 20442 6320 6304 15845 {rgb=(.7 .4 .4)} Face 20443 6304 5941 15845 {rgb=(.7 .4 .4)} Face 20444 5941 5935 15845 {rgb=(.7 .4 .4)} Face 20445 5387 5664 15846 {rgb=(.7 .4 .4)} Face 20446 5664 5617 15846 {rgb=(.7 .4 .4)} Face 20447 5617 5430 15846 {rgb=(.7 .4 .4)} Face 20448 5430 5387 15846 {rgb=(.7 .4 .4)} Face 20449 5950 6299 15847 {rgb=(.7 .4 .4)} Face 20450 6299 6111 15847 {rgb=(.7 .4 .4)} Face 20451 6111 5898 15847 {rgb=(.7 .4 .4)} Face 20452 5898 5950 15847 {rgb=(.7 .4 .4)} Face 20453 7664 7717 15848 {rgb=(.7 .4 .4)} Face 20454 7717 7860 15848 {rgb=(.7 .4 .4)} Face 20455 7860 7788 15848 {rgb=(.7 .4 .4)} Face 20456 7788 7664 15848 {rgb=(.7 .4 .4)} Face 20457 7907 7911 15849 {rgb=(.7 .4 .4)} Face 20458 7911 7902 15849 {rgb=(.7 .4 .4)} Face 20459 7902 7737 15849 {rgb=(.7 .4 .4)} Face 20460 7737 7907 15849 {rgb=(.7 .4 .4)} Face 20461 7502 7327 15850 {rgb=(.7 .4 .4)} Face 20462 7327 7347 15850 {rgb=(.7 .4 .4)} Face 20463 7347 7512 15850 {rgb=(.7 .4 .4)} Face 20464 7512 7502 15850 {rgb=(.7 .4 .4)} Face 20465 7312 7505 15851 {rgb=(.7 .4 .4)} Face 20466 7505 7493 15851 {rgb=(.7 .4 .4)} Face 20467 7493 7302 15851 {rgb=(.7 .4 .4)} Face 20468 7302 7312 15851 {rgb=(.7 .4 .4)} Face 20469 7144 7000 15852 {rgb=(.7 .4 .4)} Face 20470 7000 7036 15852 {rgb=(.7 .4 .4)} Face 20471 7036 7180 15852 {rgb=(.7 .4 .4)} Face 20472 7180 7144 15852 {rgb=(.7 .4 .4)} Face 20473 7538 7364 15853 {rgb=(.7 .4 .4)} Face 20474 7364 7386 15853 {rgb=(.7 .4 .4)} Face 20475 7386 7509 15853 {rgb=(.7 .4 .4)} Face 20476 7509 7538 15853 {rgb=(.7 .4 .4)} Face 20477 7636 7555 15854 {rgb=(.7 .4 .4)} Face 20478 7555 7411 15854 {rgb=(.7 .4 .4)} Face 20479 7411 7472 15854 {rgb=(.7 .4 .4)} Face 20480 7472 7636 15854 {rgb=(.7 .4 .4)} Face 20481 7445 7332 15855 {rgb=(.7 .4 .4)} Face 20482 7332 7189 15855 {rgb=(.7 .4 .4)} Face 20483 7189 7324 15855 {rgb=(.7 .4 .4)} Face 20484 7324 7445 15855 {rgb=(.7 .4 .4)} Face 20485 7313 7212 15856 {rgb=(.7 .4 .4)} Face 20486 7212 7075 15856 {rgb=(.7 .4 .4)} Face 20487 7075 7148 15856 {rgb=(.7 .4 .4)} Face 20488 7148 7313 15856 {rgb=(.7 .4 .4)} Face 20489 7134 7031 15857 {rgb=(.7 .4 .4)} Face 20490 7031 6957 15857 {rgb=(.7 .4 .4)} Face 20491 6957 7011 15857 {rgb=(.7 .4 .4)} Face 20492 7011 7134 15857 {rgb=(.7 .4 .4)} Face 20493 7025 6969 15858 {rgb=(.7 .4 .4)} Face 20494 6969 6742 15858 {rgb=(.7 .4 .4)} Face 20495 6742 6771 15858 {rgb=(.7 .4 .4)} Face 20496 6771 7025 15858 {rgb=(.7 .4 .4)} Face 20497 6922 6864 15859 {rgb=(.7 .4 .4)} Face 20498 6864 6703 15859 {rgb=(.7 .4 .4)} Face 20499 6703 6727 15859 {rgb=(.7 .4 .4)} Face 20500 6727 6922 15859 {rgb=(.7 .4 .4)} Face 20501 6307 6302 15860 {rgb=(.7 .4 .4)} Face 20502 6302 5929 15860 {rgb=(.7 .4 .4)} Face 20503 5929 5916 15860 {rgb=(.7 .4 .4)} Face 20504 5916 6307 15860 {rgb=(.7 .4 .4)} Face 20505 6333 6326 15861 {rgb=(.7 .4 .4)} Face 20506 6326 5977 15861 {rgb=(.7 .4 .4)} Face 20507 5977 5968 15861 {rgb=(.7 .4 .4)} Face 20508 5968 6333 15861 {rgb=(.7 .4 .4)} Face 20509 6287 6208 15862 {rgb=(.7 .4 .4)} Face 20510 6208 5920 15862 {rgb=(.7 .4 .4)} Face 20511 5920 5953 15862 {rgb=(.7 .4 .4)} Face 20512 5953 6287 15862 {rgb=(.7 .4 .4)} Face 20513 5360 5364 15863 {rgb=(.7 .4 .4)} Face 20514 5364 5633 15863 {rgb=(.7 .4 .4)} Face 20515 5633 5639 15863 {rgb=(.7 .4 .4)} Face 20516 5639 5360 15863 {rgb=(.7 .4 .4)} Face 20517 7836 7924 15864 {rgb=(.7 .4 .4)} Face 20518 7924 7985 15864 {rgb=(.7 .4 .4)} Face 20519 7985 7881 15864 {rgb=(.7 .4 .4)} Face 20520 7881 7836 15864 {rgb=(.7 .4 .4)} Face 20521 8031 7957 15865 {rgb=(.7 .4 .4)} Face 20522 7957 7997 15865 {rgb=(.7 .4 .4)} Face 20523 7997 8050 15865 {rgb=(.7 .4 .4)} Face 20524 8050 8031 15865 {rgb=(.7 .4 .4)} Face 20525 8158 8056 15866 {rgb=(.7 .4 .4)} Face 20526 8056 8039 15866 {rgb=(.7 .4 .4)} Face 20527 8039 8163 15866 {rgb=(.7 .4 .4)} Face 20528 8163 8158 15866 {rgb=(.7 .4 .4)} Face 20529 8139 8026 15867 {rgb=(.7 .4 .4)} Face 20530 8026 8007 15867 {rgb=(.7 .4 .4)} Face 20531 8007 8061 15867 {rgb=(.7 .4 .4)} Face 20532 8061 8139 15867 {rgb=(.7 .4 .4)} Face 20533 7968 7934 15868 {rgb=(.7 .4 .4)} Face 20534 7934 7835 15868 {rgb=(.7 .4 .4)} Face 20535 7835 7853 15868 {rgb=(.7 .4 .4)} Face 20536 7853 7968 15868 {rgb=(.7 .4 .4)} Face 20537 7689 7659 15869 {rgb=(.7 .4 .4)} Face 20538 7659 7508 15869 {rgb=(.7 .4 .4)} Face 20539 7508 7556 15869 {rgb=(.7 .4 .4)} Face 20540 7556 7689 15869 {rgb=(.7 .4 .4)} Face 20541 7457 7387 15870 {rgb=(.7 .4 .4)} Face 20542 7387 7249 15870 {rgb=(.7 .4 .4)} Face 20543 7249 7355 15870 {rgb=(.7 .4 .4)} Face 20544 7355 7457 15870 {rgb=(.7 .4 .4)} Face 20545 6393 6362 15871 {rgb=(.7 .4 .4)} Face 20546 6362 5932 15871 {rgb=(.7 .4 .4)} Face 20547 5932 5949 15871 {rgb=(.7 .4 .4)} Face 20548 5949 6393 15871 {rgb=(.7 .4 .4)} Face 20549 8358 8377 15872 {rgb=(.7 .4 .4)} Face 20550 8377 8436 15872 {rgb=(.7 .4 .4)} Face 20551 8436 8435 15872 {rgb=(.7 .4 .4)} Face 20552 8435 8358 15872 {rgb=(.7 .4 .4)} Face 20553 8382 8341 15873 {rgb=(.7 .4 .4)} Face 20554 8341 8286 15873 {rgb=(.7 .4 .4)} Face 20555 8286 8319 15873 {rgb=(.7 .4 .4)} Face 20556 8319 8382 15873 {rgb=(.7 .4 .4)} Face 20557 8294 8257 15874 {rgb=(.7 .4 .4)} Face 20558 8257 8235 15874 {rgb=(.7 .4 .4)} Face 20559 8235 8255 15874 {rgb=(.7 .4 .4)} Face 20560 8255 8294 15874 {rgb=(.7 .4 .4)} Face 20561 8253 8313 15875 {rgb=(.7 .4 .4)} Face 20562 8313 8274 15875 {rgb=(.7 .4 .4)} Face 20563 8274 8208 15875 {rgb=(.7 .4 .4)} Face 20564 8208 8253 15875 {rgb=(.7 .4 .4)} Face 20565 8230 8209 15876 {rgb=(.7 .4 .4)} Face 20566 8209 8204 15876 {rgb=(.7 .4 .4)} Face 20567 8204 8217 15876 {rgb=(.7 .4 .4)} Face 20568 8217 8230 15876 {rgb=(.7 .4 .4)} Face 20569 8174 8210 15877 {rgb=(.7 .4 .4)} Face 20570 8210 8141 15877 {rgb=(.7 .4 .4)} Face 20571 8141 8066 15877 {rgb=(.7 .4 .4)} Face 20572 8066 8174 15877 {rgb=(.7 .4 .4)} Face 20573 8198 8175 15878 {rgb=(.7 .4 .4)} Face 20574 8175 8189 15878 {rgb=(.7 .4 .4)} Face 20575 8189 8196 15878 {rgb=(.7 .4 .4)} Face 20576 8196 8198 15878 {rgb=(.7 .4 .4)} Face 20577 8126 8153 15879 {rgb=(.7 .4 .4)} Face 20578 8153 8033 15879 {rgb=(.7 .4 .4)} Face 20579 8033 8001 15879 {rgb=(.7 .4 .4)} Face 20580 8001 8126 15879 {rgb=(.7 .4 .4)} Face 20581 8040 8089 15880 {rgb=(.7 .4 .4)} Face 20582 8089 7975 15880 {rgb=(.7 .4 .4)} Face 20583 7975 7936 15880 {rgb=(.7 .4 .4)} Face 20584 7936 8040 15880 {rgb=(.7 .4 .4)} Face 20585 8051 8049 15881 {rgb=(.7 .4 .4)} Face 20586 8049 8047 15881 {rgb=(.7 .4 .4)} Face 20587 8047 8060 15881 {rgb=(.7 .4 .4)} Face 20588 8060 8051 15881 {rgb=(.7 .4 .4)} Face 20589 8207 8218 15882 {rgb=(.7 .4 .4)} Face 20590 8218 8251 15882 {rgb=(.7 .4 .4)} Face 20591 8251 8240 15882 {rgb=(.7 .4 .4)} Face 20592 8240 8207 15882 {rgb=(.7 .4 .4)} Face 20593 8234 8195 15883 {rgb=(.7 .4 .4)} Face 20594 8195 8138 15883 {rgb=(.7 .4 .4)} Face 20595 8138 8184 15883 {rgb=(.7 .4 .4)} Face 20596 8184 8234 15883 {rgb=(.7 .4 .4)} Face 20597 8093 8017 15884 {rgb=(.7 .4 .4)} Face 20598 8017 7892 15884 {rgb=(.7 .4 .4)} Face 20599 7892 7949 15884 {rgb=(.7 .4 .4)} Face 20600 7949 8093 15884 {rgb=(.7 .4 .4)} Face 20601 7803 7736 15885 {rgb=(.7 .4 .4)} Face 20602 7736 7621 15885 {rgb=(.7 .4 .4)} Face 20603 7621 7684 15885 {rgb=(.7 .4 .4)} Face 20604 7684 7803 15885 {rgb=(.7 .4 .4)} Face 20605 7613 7518 15886 {rgb=(.7 .4 .4)} Face 20606 7518 7451 15886 {rgb=(.7 .4 .4)} Face 20607 7451 7536 15886 {rgb=(.7 .4 .4)} Face 20608 7536 7613 15886 {rgb=(.7 .4 .4)} Face 20609 7481 7370 15887 {rgb=(.7 .4 .4)} Face 20610 7370 7354 15887 {rgb=(.7 .4 .4)} Face 20611 7354 7474 15887 {rgb=(.7 .4 .4)} Face 20612 7474 7481 15887 {rgb=(.7 .4 .4)} Face 20613 7634 7704 15888 {rgb=(.7 .4 .4)} Face 20614 7704 7754 15888 {rgb=(.7 .4 .4)} Face 20615 7754 7685 15888 {rgb=(.7 .4 .4)} Face 20616 7685 7634 15888 {rgb=(.7 .4 .4)} Face 20617 7668 7588 15889 {rgb=(.7 .4 .4)} Face 20618 7588 7594 15889 {rgb=(.7 .4 .4)} Face 20619 7594 7679 15889 {rgb=(.7 .4 .4)} Face 20620 7679 7668 15889 {rgb=(.7 .4 .4)} Face 20621 7769 7838 15890 {rgb=(.7 .4 .4)} Face 20622 7838 7939 15890 {rgb=(.7 .4 .4)} Face 20623 7939 7872 15890 {rgb=(.7 .4 .4)} Face 20624 7872 7769 15890 {rgb=(.7 .4 .4)} Face 20625 8027 8121 15891 {rgb=(.7 .4 .4)} Face 20626 8121 8222 15891 {rgb=(.7 .4 .4)} Face 20627 8222 8169 15891 {rgb=(.7 .4 .4)} Face 20628 8169 8027 15891 {rgb=(.7 .4 .4)} Face 20629 8227 8269 15892 {rgb=(.7 .4 .4)} Face 20630 8269 8293 15892 {rgb=(.7 .4 .4)} Face 20631 8293 8260 15892 {rgb=(.7 .4 .4)} Face 20632 8260 8227 15892 {rgb=(.7 .4 .4)} Face 20633 8267 8295 15893 {rgb=(.7 .4 .4)} Face 20634 8295 8271 15893 {rgb=(.7 .4 .4)} Face 20635 8271 8249 15893 {rgb=(.7 .4 .4)} Face 20636 8249 8267 15893 {rgb=(.7 .4 .4)} Face 20637 8162 8188 15894 {rgb=(.7 .4 .4)} Face 20638 8188 8134 15894 {rgb=(.7 .4 .4)} Face 20639 8134 8109 15894 {rgb=(.7 .4 .4)} Face 20640 8109 8162 15894 {rgb=(.7 .4 .4)} Face 20641 8206 8223 15895 {rgb=(.7 .4 .4)} Face 20642 8223 8176 15895 {rgb=(.7 .4 .4)} Face 20643 8176 8160 15895 {rgb=(.7 .4 .4)} Face 20644 8160 8206 15895 {rgb=(.7 .4 .4)} Face 20645 8082 8113 15896 {rgb=(.7 .4 .4)} Face 20646 8113 8083 15896 {rgb=(.7 .4 .4)} Face 20647 8083 8058 15896 {rgb=(.7 .4 .4)} Face 20648 8058 8082 15896 {rgb=(.7 .4 .4)} Face 20649 8097 8106 15897 {rgb=(.7 .4 .4)} Face 20650 8106 8149 15897 {rgb=(.7 .4 .4)} Face 20651 8149 8136 15897 {rgb=(.7 .4 .4)} Face 20652 8136 8097 15897 {rgb=(.7 .4 .4)} Face 20653 8254 8232 15898 {rgb=(.7 .4 .4)} Face 20654 8232 8193 15898 {rgb=(.7 .4 .4)} Face 20655 8193 8216 15898 {rgb=(.7 .4 .4)} Face 20656 8216 8254 15898 {rgb=(.7 .4 .4)} Face 20657 8199 8173 15899 {rgb=(.7 .4 .4)} Face 20658 8173 8191 15899 {rgb=(.7 .4 .4)} Face 20659 8191 8215 15899 {rgb=(.7 .4 .4)} Face 20660 8215 8199 15899 {rgb=(.7 .4 .4)} Face 20661 8261 8237 15900 {rgb=(.7 .4 .4)} Face 20662 8237 8287 15900 {rgb=(.7 .4 .4)} Face 20663 8287 8315 15900 {rgb=(.7 .4 .4)} Face 20664 8315 8261 15900 {rgb=(.7 .4 .4)} Face 20665 8371 8351 15901 {rgb=(.7 .4 .4)} Face 20666 8351 8395 15901 {rgb=(.7 .4 .4)} Face 20667 8395 8416 15901 {rgb=(.7 .4 .4)} Face 20668 8416 8371 15901 {rgb=(.7 .4 .4)} Face 20669 8200 8181 15902 {rgb=(.7 .4 .4)} Face 20670 8181 8154 15902 {rgb=(.7 .4 .4)} Face 20671 8154 8168 15902 {rgb=(.7 .4 .4)} Face 20672 8168 8200 15902 {rgb=(.7 .4 .4)} Face 20673 8214 8194 15903 {rgb=(.7 .4 .4)} Face 20674 8194 8243 15903 {rgb=(.7 .4 .4)} Face 20675 8243 8262 15903 {rgb=(.7 .4 .4)} Face 20676 8262 8214 15903 {rgb=(.7 .4 .4)} Face 20677 8327 8300 15904 {rgb=(.7 .4 .4)} Face 20678 8300 8332 15904 {rgb=(.7 .4 .4)} Face 20679 8332 8363 15904 {rgb=(.7 .4 .4)} Face 20680 8363 8327 15904 {rgb=(.7 .4 .4)} Face 20681 8381 8336 15905 {rgb=(.7 .4 .4)} Face 20682 8336 8314 15905 {rgb=(.7 .4 .4)} Face 20683 8314 8367 15905 {rgb=(.7 .4 .4)} Face 20684 8367 8381 15905 {rgb=(.7 .4 .4)} Face 20685 8326 8266 15906 {rgb=(.7 .4 .4)} Face 20686 8266 8178 15906 {rgb=(.7 .4 .4)} Face 20687 8178 8247 15906 {rgb=(.7 .4 .4)} Face 20688 8247 8326 15906 {rgb=(.7 .4 .4)} Face 20689 8128 8003 15907 {rgb=(.7 .4 .4)} Face 20690 8003 7889 15907 {rgb=(.7 .4 .4)} Face 20691 7889 7973 15907 {rgb=(.7 .4 .4)} Face 20692 7973 8128 15907 {rgb=(.7 .4 .4)} Face 20693 7868 7801 15908 {rgb=(.7 .4 .4)} Face 20694 7801 7742 15908 {rgb=(.7 .4 .4)} Face 20695 7742 7822 15908 {rgb=(.7 .4 .4)} Face 20696 7822 7868 15908 {rgb=(.7 .4 .4)} Face 20697 7826 7729 15909 {rgb=(.7 .4 .4)} Face 20698 7729 7741 15909 {rgb=(.7 .4 .4)} Face 20699 7741 7847 15909 {rgb=(.7 .4 .4)} Face 20700 7847 7826 15909 {rgb=(.7 .4 .4)} Face 20701 8135 8148 15910 {rgb=(.7 .4 .4)} Face 20702 8148 8172 15910 {rgb=(.7 .4 .4)} Face 20703 8172 8165 15910 {rgb=(.7 .4 .4)} Face 20704 8165 8135 15910 {rgb=(.7 .4 .4)} Face 20705 5626 5557 15911 {rgb=(.7 .4 .4)} Face 20706 5557 5485 15911 {rgb=(.7 .4 .4)} Face 20707 5485 5582 15911 {rgb=(.7 .4 .4)} Face 20708 5582 5626 15911 {rgb=(.7 .4 .4)} Face 20709 5690 5695 15912 {rgb=(.7 .4 .4)} Face 20710 5695 5808 15912 {rgb=(.7 .4 .4)} Face 20711 5808 5791 15912 {rgb=(.7 .4 .4)} Face 20712 5791 5690 15912 {rgb=(.7 .4 .4)} Face 20713 5706 5721 15913 {rgb=(.7 .4 .4)} Face 20714 5721 5849 15913 {rgb=(.7 .4 .4)} Face 20715 5849 5831 15913 {rgb=(.7 .4 .4)} Face 20716 5831 5706 15913 {rgb=(.7 .4 .4)} Face 20717 5742 5758 15914 {rgb=(.7 .4 .4)} Face 20718 5758 5873 15914 {rgb=(.7 .4 .4)} Face 20719 5873 5861 15914 {rgb=(.7 .4 .4)} Face 20720 5861 5742 15914 {rgb=(.7 .4 .4)} Face 20721 5906 5859 15915 {rgb=(.7 .4 .4)} Face 20722 5859 5921 15915 {rgb=(.7 .4 .4)} Face 20723 5921 5965 15915 {rgb=(.7 .4 .4)} Face 20724 5965 5906 15915 {rgb=(.7 .4 .4)} Face 20725 5869 5880 15916 {rgb=(.7 .4 .4)} Face 20726 5880 5969 15916 {rgb=(.7 .4 .4)} Face 20727 5969 5948 15916 {rgb=(.7 .4 .4)} Face 20728 5948 5869 15916 {rgb=(.7 .4 .4)} Face 20729 5903 5922 15917 {rgb=(.7 .4 .4)} Face 20730 5922 6006 15917 {rgb=(.7 .4 .4)} Face 20731 6006 5996 15917 {rgb=(.7 .4 .4)} Face 20732 5996 5903 15917 {rgb=(.7 .4 .4)} Face 20733 5931 5947 15918 {rgb=(.7 .4 .4)} Face 20734 5947 6022 15918 {rgb=(.7 .4 .4)} Face 20735 6022 6008 15918 {rgb=(.7 .4 .4)} Face 20736 6008 5931 15918 {rgb=(.7 .4 .4)} Face 20737 6030 6010 15919 {rgb=(.7 .4 .4)} Face 20738 6010 6117 15919 {rgb=(.7 .4 .4)} Face 20739 6117 6118 15919 {rgb=(.7 .4 .4)} Face 20740 6118 6030 15919 {rgb=(.7 .4 .4)} Face 20741 6037 6056 15920 {rgb=(.7 .4 .4)} Face 20742 6056 6178 15920 {rgb=(.7 .4 .4)} Face 20743 6178 6156 15920 {rgb=(.7 .4 .4)} Face 20744 6156 6037 15920 {rgb=(.7 .4 .4)} Face 20745 6572 6305 15921 {rgb=(.7 .4 .4)} Face 20746 6305 6371 15921 {rgb=(.7 .4 .4)} Face 20747 6371 6644 15921 {rgb=(.7 .4 .4)} Face 20748 6644 6572 15921 {rgb=(.7 .4 .4)} Face 20749 6388 6416 15922 {rgb=(.7 .4 .4)} Face 20750 6416 6649 15922 {rgb=(.7 .4 .4)} Face 20751 6649 6648 15922 {rgb=(.7 .4 .4)} Face 20752 6648 6388 15922 {rgb=(.7 .4 .4)} Face 20753 6432 6471 15923 {rgb=(.7 .4 .4)} Face 20754 6471 6626 15923 {rgb=(.7 .4 .4)} Face 20755 6626 6645 15923 {rgb=(.7 .4 .4)} Face 20756 6645 6432 15923 {rgb=(.7 .4 .4)} Face 20757 6000 6004 15924 {rgb=(.7 .4 .4)} Face 20758 6004 6081 15924 {rgb=(.7 .4 .4)} Face 20759 6081 6048 15924 {rgb=(.7 .4 .4)} Face 20760 6048 6000 15924 {rgb=(.7 .4 .4)} Face 20761 6094 6147 15925 {rgb=(.7 .4 .4)} Face 20762 6147 6256 15925 {rgb=(.7 .4 .4)} Face 20763 6256 6226 15925 {rgb=(.7 .4 .4)} Face 20764 6226 6094 15925 {rgb=(.7 .4 .4)} Face 20765 6323 6248 15926 {rgb=(.7 .4 .4)} Face 20766 6248 6258 15926 {rgb=(.7 .4 .4)} Face 20767 6258 6336 15926 {rgb=(.7 .4 .4)} Face 20768 6336 6323 15926 {rgb=(.7 .4 .4)} Face 20769 6881 7170 15927 {rgb=(.7 .4 .4)} Face 20770 7170 7175 15927 {rgb=(.7 .4 .4)} Face 20771 7175 6890 15927 {rgb=(.7 .4 .4)} Face 20772 6890 6881 15927 {rgb=(.7 .4 .4)} Face 20773 5798 5806 15928 {rgb=(.7 .4 .4)} Face 20774 5806 5934 15928 {rgb=(.7 .4 .4)} Face 20775 5934 5926 15928 {rgb=(.7 .4 .4)} Face 20776 5926 5798 15928 {rgb=(.7 .4 .4)} Face 20777 6015 6029 15929 {rgb=(.7 .4 .4)} Face 20778 6029 6090 15929 {rgb=(.7 .4 .4)} Face 20779 6090 6078 15929 {rgb=(.7 .4 .4)} Face 20780 6078 6015 15929 {rgb=(.7 .4 .4)} Face 20781 6129 6112 15930 {rgb=(.7 .4 .4)} Face 20782 6112 6185 15930 {rgb=(.7 .4 .4)} Face 20783 6185 6193 15930 {rgb=(.7 .4 .4)} Face 20784 6193 6129 15930 {rgb=(.7 .4 .4)} Face 20785 6319 6338 15931 {rgb=(.7 .4 .4)} Face 20786 6338 6456 15931 {rgb=(.7 .4 .4)} Face 20787 6456 6424 15931 {rgb=(.7 .4 .4)} Face 20788 6424 6319 15931 {rgb=(.7 .4 .4)} Face 20789 6500 6540 15932 {rgb=(.7 .4 .4)} Face 20790 6540 6575 15932 {rgb=(.7 .4 .4)} Face 20791 6575 6544 15932 {rgb=(.7 .4 .4)} Face 20792 6544 6500 15932 {rgb=(.7 .4 .4)} Face 20793 6418 6466 15933 {rgb=(.7 .4 .4)} Face 20794 6466 6439 15933 {rgb=(.7 .4 .4)} Face 20795 6439 6387 15933 {rgb=(.7 .4 .4)} Face 20796 6387 6418 15933 {rgb=(.7 .4 .4)} Face 20797 6366 6273 15934 {rgb=(.7 .4 .4)} Face 20798 6273 6219 15934 {rgb=(.7 .4 .4)} Face 20799 6219 6340 15934 {rgb=(.7 .4 .4)} Face 20800 6340 6366 15934 {rgb=(.7 .4 .4)} Face 20801 5686 5665 15935 {rgb=(.7 .4 .4)} Face 20802 5665 5727 15935 {rgb=(.7 .4 .4)} Face 20803 5727 5759 15935 {rgb=(.7 .4 .4)} Face 20804 5759 5686 15935 {rgb=(.7 .4 .4)} Face 20805 5943 6025 15936 {rgb=(.7 .4 .4)} Face 20806 6025 6067 15936 {rgb=(.7 .4 .4)} Face 20807 6067 5901 15936 {rgb=(.7 .4 .4)} Face 20808 5901 5943 15936 {rgb=(.7 .4 .4)} Face 20809 5573 5472 15937 {rgb=(.7 .4 .4)} Face 20810 5472 5471 15937 {rgb=(.7 .4 .4)} Face 20811 5471 5574 15937 {rgb=(.7 .4 .4)} Face 20812 5574 5573 15937 {rgb=(.7 .4 .4)} Face 20813 5936 5951 15938 {rgb=(.7 .4 .4)} Face 20814 5951 6146 15938 {rgb=(.7 .4 .4)} Face 20815 6146 6087 15938 {rgb=(.7 .4 .4)} Face 20816 6087 5936 15938 {rgb=(.7 .4 .4)} Face 20817 5680 5663 15939 {rgb=(.7 .4 .4)} Face 20818 5663 5780 15939 {rgb=(.7 .4 .4)} Face 20819 5780 5827 15939 {rgb=(.7 .4 .4)} Face 20820 5827 5680 15939 {rgb=(.7 .4 .4)} Face 20821 5577 5468 15940 {rgb=(.7 .4 .4)} Face 20822 5468 5482 15940 {rgb=(.7 .4 .4)} Face 20823 5482 5563 15940 {rgb=(.7 .4 .4)} Face 20824 5563 5577 15940 {rgb=(.7 .4 .4)} Face 20825 5975 5983 15941 {rgb=(.7 .4 .4)} Face 20826 5983 6189 15941 {rgb=(.7 .4 .4)} Face 20827 6189 6176 15941 {rgb=(.7 .4 .4)} Face 20828 6176 5975 15941 {rgb=(.7 .4 .4)} Face 20829 5895 5884 15942 {rgb=(.7 .4 .4)} Face 20830 5884 6123 15942 {rgb=(.7 .4 .4)} Face 20831 6123 6143 15942 {rgb=(.7 .4 .4)} Face 20832 6143 5895 15942 {rgb=(.7 .4 .4)} Face 20833 6589 6417 15943 {rgb=(.7 .4 .4)} Face 20834 6417 6487 15943 {rgb=(.7 .4 .4)} Face 20835 6487 6617 15943 {rgb=(.7 .4 .4)} Face 20836 6617 6589 15943 {rgb=(.7 .4 .4)} Face 20837 6407 6374 15944 {rgb=(.7 .4 .4)} Face 20838 6374 6609 15944 {rgb=(.7 .4 .4)} Face 20839 6609 6660 15944 {rgb=(.7 .4 .4)} Face 20840 6660 6407 15944 {rgb=(.7 .4 .4)} Face 20841 6947 6814 15945 {rgb=(.7 .4 .4)} Face 20842 6814 6883 15945 {rgb=(.7 .4 .4)} Face 20843 6883 7015 15945 {rgb=(.7 .4 .4)} Face 20844 7015 6947 15945 {rgb=(.7 .4 .4)} Face 20845 6893 6872 15946 {rgb=(.7 .4 .4)} Face 20846 6872 7094 15946 {rgb=(.7 .4 .4)} Face 20847 7094 7132 15946 {rgb=(.7 .4 .4)} Face 20848 7132 6893 15946 {rgb=(.7 .4 .4)} Face 20849 6828 6766 15947 {rgb=(.7 .4 .4)} Face 20850 6766 6973 15947 {rgb=(.7 .4 .4)} Face 20851 6973 7032 15947 {rgb=(.7 .4 .4)} Face 20852 7032 6828 15947 {rgb=(.7 .4 .4)} Face 20853 7466 7615 15948 {rgb=(.7 .4 .4)} Face 20854 7615 7614 15948 {rgb=(.7 .4 .4)} Face 20855 7614 7469 15948 {rgb=(.7 .4 .4)} Face 20856 7469 7466 15948 {rgb=(.7 .4 .4)} Face 20857 7422 7380 15949 {rgb=(.7 .4 .4)} Face 20858 7380 7609 15949 {rgb=(.7 .4 .4)} Face 20859 7609 7638 15949 {rgb=(.7 .4 .4)} Face 20860 7638 7422 15949 {rgb=(.7 .4 .4)} Face 20861 7309 7195 15950 {rgb=(.7 .4 .4)} Face 20862 7195 7444 15950 {rgb=(.7 .4 .4)} Face 20863 7444 7514 15950 {rgb=(.7 .4 .4)} Face 20864 7514 7309 15950 {rgb=(.7 .4 .4)} Face 20865 7815 7951 15951 {rgb=(.7 .4 .4)} Face 20866 7951 8064 15951 {rgb=(.7 .4 .4)} Face 20867 8064 7926 15951 {rgb=(.7 .4 .4)} Face 20868 7926 7815 15951 {rgb=(.7 .4 .4)} Face 20869 8258 8161 15952 {rgb=(.7 .4 .4)} Face 20870 8161 8288 15952 {rgb=(.7 .4 .4)} Face 20871 8288 8390 15952 {rgb=(.7 .4 .4)} Face 20872 8390 8258 15952 {rgb=(.7 .4 .4)} Face 20873 7903 7726 15953 {rgb=(.7 .4 .4)} Face 20874 7726 7642 15953 {rgb=(.7 .4 .4)} Face 20875 7642 7824 15953 {rgb=(.7 .4 .4)} Face 20876 7824 7903 15953 {rgb=(.7 .4 .4)} Face 20877 7571 7558 15954 {rgb=(.7 .4 .4)} Face 20878 7558 7698 15954 {rgb=(.7 .4 .4)} Face 20879 7698 7749 15954 {rgb=(.7 .4 .4)} Face 20880 7749 7571 15954 {rgb=(.7 .4 .4)} Face 20881 8043 7938 15955 {rgb=(.7 .4 .4)} Face 20882 7938 8080 15955 {rgb=(.7 .4 .4)} Face 20883 8080 8190 15955 {rgb=(.7 .4 .4)} Face 20884 8190 8043 15955 {rgb=(.7 .4 .4)} Face 20885 5826 5813 15956 {rgb=(.7 .4 .4)} Face 20886 5813 5987 15956 {rgb=(.7 .4 .4)} Face 20887 5987 6012 15956 {rgb=(.7 .4 .4)} Face 20888 6012 5826 15956 {rgb=(.7 .4 .4)} Face 20889 5804 5774 15957 {rgb=(.7 .4 .4)} Face 20890 5774 5908 15957 {rgb=(.7 .4 .4)} Face 20891 5908 5963 15957 {rgb=(.7 .4 .4)} Face 20892 5963 5804 15957 {rgb=(.7 .4 .4)} Face 20893 5609 5437 15958 {rgb=(.7 .4 .4)} Face 20894 5437 5447 15958 {rgb=(.7 .4 .4)} Face 20895 5447 5598 15958 {rgb=(.7 .4 .4)} Face 20896 5598 5609 15958 {rgb=(.7 .4 .4)} Face 20897 6230 6170 15959 {rgb=(.7 .4 .4)} Face 20898 6170 6382 15959 {rgb=(.7 .4 .4)} Face 20899 6382 6494 15959 {rgb=(.7 .4 .4)} Face 20900 6494 6230 15959 {rgb=(.7 .4 .4)} Face 20901 6105 6024 15960 {rgb=(.7 .4 .4)} Face 20902 6024 6120 15960 {rgb=(.7 .4 .4)} Face 20903 6120 6274 15960 {rgb=(.7 .4 .4)} Face 20904 6274 6105 15960 {rgb=(.7 .4 .4)} Face 20905 6699 6595 15961 {rgb=(.7 .4 .4)} Face 20906 6595 6686 15961 {rgb=(.7 .4 .4)} Face 20907 6686 6800 15961 {rgb=(.7 .4 .4)} Face 20908 6800 6699 15961 {rgb=(.7 .4 .4)} Face 20909 6419 6198 15962 {rgb=(.7 .4 .4)} Face 20910 6198 6232 15962 {rgb=(.7 .4 .4)} Face 20911 6232 6493 15962 {rgb=(.7 .4 .4)} Face 20912 6493 6419 15962 {rgb=(.7 .4 .4)} Face 20913 6874 6718 15963 {rgb=(.7 .4 .4)} Face 20914 6718 6722 15963 {rgb=(.7 .4 .4)} Face 20915 6722 6896 15963 {rgb=(.7 .4 .4)} Face 20916 6896 6874 15963 {rgb=(.7 .4 .4)} Face 20917 6482 6182 15964 {rgb=(.7 .4 .4)} Face 20918 6182 6197 15964 {rgb=(.7 .4 .4)} Face 20919 6197 6453 15964 {rgb=(.7 .4 .4)} Face 20920 6453 6482 15964 {rgb=(.7 .4 .4)} Face 20921 6875 6696 15965 {rgb=(.7 .4 .4)} Face 20922 6696 6608 15965 {rgb=(.7 .4 .4)} Face 20923 6608 6765 15965 {rgb=(.7 .4 .4)} Face 20924 6765 6875 15965 {rgb=(.7 .4 .4)} Face 20925 6410 6169 15966 {rgb=(.7 .4 .4)} Face 20926 6169 6141 15966 {rgb=(.7 .4 .4)} Face 20927 6141 6330 15966 {rgb=(.7 .4 .4)} Face 20928 6330 6410 15966 {rgb=(.7 .4 .4)} Face 20929 6624 6413 15967 {rgb=(.7 .4 .4)} Face 20930 6413 6205 15967 {rgb=(.7 .4 .4)} Face 20931 6205 6370 15967 {rgb=(.7 .4 .4)} Face 20932 6370 6624 15967 {rgb=(.7 .4 .4)} Face 20933 6206 6069 15968 {rgb=(.7 .4 .4)} Face 20934 6069 5982 15968 {rgb=(.7 .4 .4)} Face 20935 5982 6084 15968 {rgb=(.7 .4 .4)} Face 20936 6084 6206 15968 {rgb=(.7 .4 .4)} Face 20937 6128 6034 15969 {rgb=(.7 .4 .4)} Face 20938 6034 5855 15969 {rgb=(.7 .4 .4)} Face 20939 5855 5883 15969 {rgb=(.7 .4 .4)} Face 20940 5883 6128 15969 {rgb=(.7 .4 .4)} Face 20941 5952 5874 15970 {rgb=(.7 .4 .4)} Face 20942 5874 5744 15970 {rgb=(.7 .4 .4)} Face 20943 5744 5792 15970 {rgb=(.7 .4 .4)} Face 20944 5792 5952 15970 {rgb=(.7 .4 .4)} Face 20945 5405 5378 15971 {rgb=(.7 .4 .4)} Face 20946 5378 5627 15971 {rgb=(.7 .4 .4)} Face 20947 5627 5613 15971 {rgb=(.7 .4 .4)} Face 20948 5613 5405 15971 {rgb=(.7 .4 .4)} Face 20949 5452 5432 15972 {rgb=(.7 .4 .4)} Face 20950 5432 5599 15972 {rgb=(.7 .4 .4)} Face 20951 5599 5593 15972 {rgb=(.7 .4 .4)} Face 20952 5593 5452 15972 {rgb=(.7 .4 .4)} Face 20953 5411 5461 15973 {rgb=(.7 .4 .4)} Face 20954 5461 5584 15973 {rgb=(.7 .4 .4)} Face 20955 5584 5638 15973 {rgb=(.7 .4 .4)} Face 20956 5638 5411 15973 {rgb=(.7 .4 .4)} Face 20957 7953 8124 15974 {rgb=(.7 .4 .4)} Face 20958 8124 8133 15974 {rgb=(.7 .4 .4)} Face 20959 8133 7965 15974 {rgb=(.7 .4 .4)} Face 20960 7965 7953 15974 {rgb=(.7 .4 .4)} Face 20961 7823 7700 15975 {rgb=(.7 .4 .4)} Face 20962 7700 7693 15975 {rgb=(.7 .4 .4)} Face 20963 7693 7817 15975 {rgb=(.7 .4 .4)} Face 20964 7817 7823 15975 {rgb=(.7 .4 .4)} Face 20965 7573 7430 15976 {rgb=(.7 .4 .4)} Face 20966 7430 7428 15976 {rgb=(.7 .4 .4)} Face 20967 7428 7570 15976 {rgb=(.7 .4 .4)} Face 20968 7570 7573 15976 {rgb=(.7 .4 .4)} Face 20969 7221 7053 15977 {rgb=(.7 .4 .4)} Face 20970 7053 7055 15977 {rgb=(.7 .4 .4)} Face 20971 7055 7216 15977 {rgb=(.7 .4 .4)} Face 20972 7216 7221 15977 {rgb=(.7 .4 .4)} Face 20973 6930 6790 15978 {rgb=(.7 .4 .4)} Face 20974 6790 6792 15978 {rgb=(.7 .4 .4)} Face 20975 6792 6934 15978 {rgb=(.7 .4 .4)} Face 20976 6934 6930 15978 {rgb=(.7 .4 .4)} Face 20977 6664 6505 15979 {rgb=(.7 .4 .4)} Face 20978 6505 6515 15979 {rgb=(.7 .4 .4)} Face 20979 6515 6668 15979 {rgb=(.7 .4 .4)} Face 20980 6668 6664 15979 {rgb=(.7 .4 .4)} Face 20981 6481 6472 15980 {rgb=(.7 .4 .4)} Face 20982 6472 6666 15980 {rgb=(.7 .4 .4)} Face 20983 6666 6671 15980 {rgb=(.7 .4 .4)} Face 20984 6671 6481 15980 {rgb=(.7 .4 .4)} Face 20985 6462 6467 15981 {rgb=(.7 .4 .4)} Face 20986 6467 6647 15981 {rgb=(.7 .4 .4)} Face 20987 6647 6651 15981 {rgb=(.7 .4 .4)} Face 20988 6651 6462 15981 {rgb=(.7 .4 .4)} Face 20989 6812 6804 15982 {rgb=(.7 .4 .4)} Face 20990 6804 6975 15982 {rgb=(.7 .4 .4)} Face 20991 6975 6988 15982 {rgb=(.7 .4 .4)} Face 20992 6988 6812 15982 {rgb=(.7 .4 .4)} Face 20993 6794 6787 15983 {rgb=(.7 .4 .4)} Face 20994 6787 6943 15983 {rgb=(.7 .4 .4)} Face 20995 6943 6960 15983 {rgb=(.7 .4 .4)} Face 20996 6960 6794 15983 {rgb=(.7 .4 .4)} Face 20997 7172 7155 15984 {rgb=(.7 .4 .4)} Face 20998 7155 7393 15984 {rgb=(.7 .4 .4)} Face 20999 7393 7415 15984 {rgb=(.7 .4 .4)} Face 21000 7415 7172 15984 {rgb=(.7 .4 .4)} Face 21001 7116 7084 15985 {rgb=(.7 .4 .4)} Face 21002 7084 7311 15985 {rgb=(.7 .4 .4)} Face 21003 7311 7345 15985 {rgb=(.7 .4 .4)} Face 21004 7345 7116 15985 {rgb=(.7 .4 .4)} Face 21005 7596 7532 15986 {rgb=(.7 .4 .4)} Face 21006 7532 7721 15986 {rgb=(.7 .4 .4)} Face 21007 7721 7797 15986 {rgb=(.7 .4 .4)} Face 21008 7797 7596 15986 {rgb=(.7 .4 .4)} Face 21009 8081 7995 15987 {rgb=(.7 .4 .4)} Face 21010 7995 8187 15987 {rgb=(.7 .4 .4)} Face 21011 8187 8225 15987 {rgb=(.7 .4 .4)} Face 21012 8225 8081 15987 {rgb=(.7 .4 .4)} Face 21013 7929 7856 15988 {rgb=(.7 .4 .4)} Face 21014 7856 7977 15988 {rgb=(.7 .4 .4)} Face 21015 7977 8099 15988 {rgb=(.7 .4 .4)} Face 21016 8099 7929 15988 {rgb=(.7 .4 .4)} Face 21017 8347 8309 15989 {rgb=(.7 .4 .4)} Face 21018 8309 8391 15989 {rgb=(.7 .4 .4)} Face 21019 8391 8429 15989 {rgb=(.7 .4 .4)} Face 21020 8429 8347 15989 {rgb=(.7 .4 .4)} Face 21021 8238 8147 15990 {rgb=(.7 .4 .4)} Face 21022 8147 8212 15990 {rgb=(.7 .4 .4)} Face 21023 8212 8305 15990 {rgb=(.7 .4 .4)} Face 21024 8305 8238 15990 {rgb=(.7 .4 .4)} Face 21025 8477 8426 15991 {rgb=(.7 .4 .4)} Face 21026 8426 8469 15991 {rgb=(.7 .4 .4)} Face 21027 8469 8518 15991 {rgb=(.7 .4 .4)} Face 21028 8518 8477 15991 {rgb=(.7 .4 .4)} Face 21029 8560 8503 15992 {rgb=(.7 .4 .4)} Face 21030 8503 8523 15992 {rgb=(.7 .4 .4)} Face 21031 8523 8605 15992 {rgb=(.7 .4 .4)} Face 21032 8605 8560 15992 {rgb=(.7 .4 .4)} Face 21033 8674 8604 15993 {rgb=(.7 .4 .4)} Face 21034 8604 8680 15993 {rgb=(.7 .4 .4)} Face 21035 8680 8741 15993 {rgb=(.7 .4 .4)} Face 21036 8741 8674 15993 {rgb=(.7 .4 .4)} Face 21037 8183 8279 15994 {rgb=(.7 .4 .4)} Face 21038 8279 8373 15994 {rgb=(.7 .4 .4)} Face 21039 8373 8289 15994 {rgb=(.7 .4 .4)} Face 21040 8289 8183 15994 {rgb=(.7 .4 .4)} Face 21041 8402 8475 15995 {rgb=(.7 .4 .4)} Face 21042 8475 8575 15995 {rgb=(.7 .4 .4)} Face 21043 8575 8496 15995 {rgb=(.7 .4 .4)} Face 21044 8496 8402 15995 {rgb=(.7 .4 .4)} Face 21045 8590 8661 15996 {rgb=(.7 .4 .4)} Face 21046 8661 8743 15996 {rgb=(.7 .4 .4)} Face 21047 8743 8678 15996 {rgb=(.7 .4 .4)} Face 21048 8678 8590 15996 {rgb=(.7 .4 .4)} Face 21049 8759 8787 15997 {rgb=(.7 .4 .4)} Face 21050 8787 8788 15997 {rgb=(.7 .4 .4)} Face 21051 8788 8781 15997 {rgb=(.7 .4 .4)} Face 21052 8781 8759 15997 {rgb=(.7 .4 .4)} Face 21053 8763 8663 15998 {rgb=(.7 .4 .4)} Face 21054 8663 8696 15998 {rgb=(.7 .4 .4)} Face 21055 8696 8761 15998 {rgb=(.7 .4 .4)} Face 21056 8761 8763 15998 {rgb=(.7 .4 .4)} Face 21057 8100 8110 15999 {rgb=(.7 .4 .4)} Face 21058 8110 8239 15999 {rgb=(.7 .4 .4)} Face 21059 8239 8259 15999 {rgb=(.7 .4 .4)} Face 21060 8259 8100 15999 {rgb=(.7 .4 .4)} Face 21061 8345 8422 16000 {rgb=(.7 .4 .4)} Face 21062 8422 8434 16000 {rgb=(.7 .4 .4)} Face 21063 8434 8360 16000 {rgb=(.7 .4 .4)} Face 21064 8360 8345 16000 {rgb=(.7 .4 .4)} Face 21065 8550 8592 16001 {rgb=(.7 .4 .4)} Face 21066 8592 8606 16001 {rgb=(.7 .4 .4)} Face 21067 8606 8574 16001 {rgb=(.7 .4 .4)} Face 21068 8574 8550 16001 {rgb=(.7 .4 .4)} Face 21069 8684 8693 16002 {rgb=(.7 .4 .4)} Face 21070 8693 8652 16002 {rgb=(.7 .4 .4)} Face 21071 8652 8710 16002 {rgb=(.7 .4 .4)} Face 21072 8710 8684 16002 {rgb=(.7 .4 .4)} Face 21073 8620 8643 16003 {rgb=(.7 .4 .4)} Face 21074 8643 8711 16003 {rgb=(.7 .4 .4)} Face 21075 8711 8576 16003 {rgb=(.7 .4 .4)} Face 21076 8576 8620 16003 {rgb=(.7 .4 .4)} Face 21077 8608 8654 16004 {rgb=(.7 .4 .4)} Face 21078 8654 8656 16004 {rgb=(.7 .4 .4)} Face 21079 8656 8585 16004 {rgb=(.7 .4 .4)} Face 21080 8585 8608 16004 {rgb=(.7 .4 .4)} Face 21081 8420 8353 16005 {rgb=(.7 .4 .4)} Face 21082 8353 8284 16005 {rgb=(.7 .4 .4)} Face 21083 8284 8344 16005 {rgb=(.7 .4 .4)} Face 21084 8344 8420 16005 {rgb=(.7 .4 .4)} Face 21085 8123 8197 16006 {rgb=(.7 .4 .4)} Face 21086 8197 8273 16006 {rgb=(.7 .4 .4)} Face 21087 8273 8231 16006 {rgb=(.7 .4 .4)} Face 21088 8231 8123 16006 {rgb=(.7 .4 .4)} Face 21089 8065 7948 16007 {rgb=(.7 .4 .4)} Face 21090 7948 7848 16007 {rgb=(.7 .4 .4)} Face 21091 7848 7966 16007 {rgb=(.7 .4 .4)} Face 21092 7966 8065 16007 {rgb=(.7 .4 .4)} Face 21093 8694 8778 16008 {rgb=(.7 .4 .4)} Face 21094 8778 8857 16008 {rgb=(.7 .4 .4)} Face 21095 8857 8783 16008 {rgb=(.7 .4 .4)} Face 21096 8783 8694 16008 {rgb=(.7 .4 .4)} Face 21097 5322 5713 16009 {rgb=(.7 .4 .4)} Face 21098 5713 5703 16009 {rgb=(.7 .4 .4)} Face 21099 5703 5359 16009 {rgb=(.7 .4 .4)} Face 21100 5359 5322 16009 {rgb=(.7 .4 .4)} Face 21101 7268 7248 16010 {rgb=(.7 .4 .4)} Face 21102 7248 7078 16010 {rgb=(.7 .4 .4)} Face 21103 7078 7089 16010 {rgb=(.7 .4 .4)} Face 21104 7089 7268 16010 {rgb=(.7 .4 .4)} Face 21105 6961 6954 16011 {rgb=(.7 .4 .4)} Face 21106 6954 6808 16011 {rgb=(.7 .4 .4)} Face 21107 6808 6819 16011 {rgb=(.7 .4 .4)} Face 21108 6819 6961 16011 {rgb=(.7 .4 .4)} Face 21109 6709 6698 16012 {rgb=(.7 .4 .4)} Face 21110 6698 6559 16012 {rgb=(.7 .4 .4)} Face 21111 6559 6585 16012 {rgb=(.7 .4 .4)} Face 21112 6585 6709 16012 {rgb=(.7 .4 .4)} Face 21113 6375 6291 16013 {rgb=(.7 .4 .4)} Face 21114 6291 6327 16013 {rgb=(.7 .4 .4)} Face 21115 6327 6403 16013 {rgb=(.7 .4 .4)} Face 21116 6403 6375 16013 {rgb=(.7 .4 .4)} Face 21117 6344 6294 16014 {rgb=(.7 .4 .4)} Face 21118 6294 6554 16014 {rgb=(.7 .4 .4)} Face 21119 6554 6569 16014 {rgb=(.7 .4 .4)} Face 21120 6569 6344 16014 {rgb=(.7 .4 .4)} Face 21121 6871 7137 16015 {rgb=(.7 .4 .4)} Face 21122 7137 7107 16015 {rgb=(.7 .4 .4)} Face 21123 7107 6855 16015 {rgb=(.7 .4 .4)} Face 21124 6855 6871 16015 {rgb=(.7 .4 .4)} Face 21125 7384 7417 16016 {rgb=(.7 .4 .4)} Face 21126 7417 7627 16016 {rgb=(.7 .4 .4)} Face 21127 7627 7559 16016 {rgb=(.7 .4 .4)} Face 21128 7559 7384 16016 {rgb=(.7 .4 .4)} Face 21129 7707 7756 16017 {rgb=(.7 .4 .4)} Face 21130 7756 7869 16017 {rgb=(.7 .4 .4)} Face 21131 7869 7804 16017 {rgb=(.7 .4 .4)} Face 21132 7804 7707 16017 {rgb=(.7 .4 .4)} Face 21133 7861 7909 16018 {rgb=(.7 .4 .4)} Face 21134 7909 7933 16018 {rgb=(.7 .4 .4)} Face 21135 7933 7886 16018 {rgb=(.7 .4 .4)} Face 21136 7886 7861 16018 {rgb=(.7 .4 .4)} Face 21137 7879 7927 16019 {rgb=(.7 .4 .4)} Face 21138 7927 7883 16019 {rgb=(.7 .4 .4)} Face 21139 7883 7846 16019 {rgb=(.7 .4 .4)} Face 21140 7846 7879 16019 {rgb=(.7 .4 .4)} Face 21141 7806 7696 16020 {rgb=(.7 .4 .4)} Face 21142 7696 7683 16020 {rgb=(.7 .4 .4)} Face 21143 7683 7785 16020 {rgb=(.7 .4 .4)} Face 21144 7785 7806 16020 {rgb=(.7 .4 .4)} Face 21145 7557 7565 16021 {rgb=(.7 .4 .4)} Face 21146 7565 7433 16021 {rgb=(.7 .4 .4)} Face 21147 7433 7426 16021 {rgb=(.7 .4 .4)} Face 21148 7426 7557 16021 {rgb=(.7 .4 .4)} Face 21149 6678 6670 16022 {rgb=(.7 .4 .4)} Face 21150 6670 6523 16022 {rgb=(.7 .4 .4)} Face 21151 6523 6538 16022 {rgb=(.7 .4 .4)} Face 21152 6538 6678 16022 {rgb=(.7 .4 .4)} Face 21153 6491 6501 16023 {rgb=(.7 .4 .4)} Face 21154 6501 6659 16023 {rgb=(.7 .4 .4)} Face 21155 6659 6652 16023 {rgb=(.7 .4 .4)} Face 21156 6652 6491 16023 {rgb=(.7 .4 .4)} Face 21157 6188 6239 16024 {rgb=(.7 .4 .4)} Face 21158 6239 6318 16024 {rgb=(.7 .4 .4)} Face 21159 6318 6295 16024 {rgb=(.7 .4 .4)} Face 21160 6295 6188 16024 {rgb=(.7 .4 .4)} Face 21161 6247 6212 16025 {rgb=(.7 .4 .4)} Face 21162 6212 6270 16025 {rgb=(.7 .4 .4)} Face 21163 6270 6257 16025 {rgb=(.7 .4 .4)} Face 21164 6257 6247 16025 {rgb=(.7 .4 .4)} Face 21165 6275 6356 16026 {rgb=(.7 .4 .4)} Face 21166 6356 6348 16026 {rgb=(.7 .4 .4)} Face 21167 6348 6264 16026 {rgb=(.7 .4 .4)} Face 21168 6264 6275 16026 {rgb=(.7 .4 .4)} Face 21169 6944 6939 16027 {rgb=(.7 .4 .4)} Face 21170 6939 6797 16027 {rgb=(.7 .4 .4)} Face 21171 6797 6802 16027 {rgb=(.7 .4 .4)} Face 21172 6802 6944 16027 {rgb=(.7 .4 .4)} Face 21173 6785 6788 16028 {rgb=(.7 .4 .4)} Face 21174 6788 6929 16028 {rgb=(.7 .4 .4)} Face 21175 6929 6936 16028 {rgb=(.7 .4 .4)} Face 21176 6936 6785 16028 {rgb=(.7 .4 .4)} Face 21177 7062 7071 16029 {rgb=(.7 .4 .4)} Face 21178 7071 7236 16029 {rgb=(.7 .4 .4)} Face 21179 7236 7224 16029 {rgb=(.7 .4 .4)} Face 21180 7224 7062 16029 {rgb=(.7 .4 .4)} Face 21181 7072 7058 16030 {rgb=(.7 .4 .4)} Face 21182 7058 7226 16030 {rgb=(.7 .4 .4)} Face 21183 7226 7272 16030 {rgb=(.7 .4 .4)} Face 21184 7272 7072 16030 {rgb=(.7 .4 .4)} Face 21185 7566 7568 16031 {rgb=(.7 .4 .4)} Face 21186 7568 7425 16031 {rgb=(.7 .4 .4)} Face 21187 7425 7427 16031 {rgb=(.7 .4 .4)} Face 21188 7427 7566 16031 {rgb=(.7 .4 .4)} Face 21189 7463 7434 16032 {rgb=(.7 .4 .4)} Face 21190 7434 7576 16032 {rgb=(.7 .4 .4)} Face 21191 7576 7628 16032 {rgb=(.7 .4 .4)} Face 21192 7628 7463 16032 {rgb=(.7 .4 .4)} Face 21193 7695 7697 16033 {rgb=(.7 .4 .4)} Face 21194 7697 7814 16033 {rgb=(.7 .4 .4)} Face 21195 7814 7820 16033 {rgb=(.7 .4 .4)} Face 21196 7820 7695 16033 {rgb=(.7 .4 .4)} Face 21197 7755 7708 16034 {rgb=(.7 .4 .4)} Face 21198 7708 7829 16034 {rgb=(.7 .4 .4)} Face 21199 7829 7875 16034 {rgb=(.7 .4 .4)} Face 21200 7875 7755 16034 {rgb=(.7 .4 .4)} Face 21201 7906 7960 16035 {rgb=(.7 .4 .4)} Face 21202 7960 7976 16035 {rgb=(.7 .4 .4)} Face 21203 7976 7915 16035 {rgb=(.7 .4 .4)} Face 21204 7915 7906 16035 {rgb=(.7 .4 .4)} Face 21205 7971 8052 16036 {rgb=(.7 .4 .4)} Face 21206 8052 7993 16036 {rgb=(.7 .4 .4)} Face 21207 7993 7982 16036 {rgb=(.7 .4 .4)} Face 21208 7982 7971 16036 {rgb=(.7 .4 .4)} Face 21209 8102 8013 16037 {rgb=(.7 .4 .4)} Face 21210 8013 8011 16037 {rgb=(.7 .4 .4)} Face 21211 8011 8116 16037 {rgb=(.7 .4 .4)} Face 21212 8116 8102 16037 {rgb=(.7 .4 .4)} Face 21213 7994 7932 16038 {rgb=(.7 .4 .4)} Face 21214 7932 8000 16038 {rgb=(.7 .4 .4)} Face 21215 8000 8079 16038 {rgb=(.7 .4 .4)} Face 21216 8079 7994 16038 {rgb=(.7 .4 .4)} Face 21217 5971 6001 16039 {rgb=(.7 .4 .4)} Face 21218 6001 5910 16039 {rgb=(.7 .4 .4)} Face 21219 5910 5914 16039 {rgb=(.7 .4 .4)} Face 21220 5914 5971 16039 {rgb=(.7 .4 .4)} Face 21221 5829 5786 16040 {rgb=(.7 .4 .4)} Face 21222 5786 5775 16040 {rgb=(.7 .4 .4)} Face 21223 5775 5822 16040 {rgb=(.7 .4 .4)} Face 21224 5822 5829 16040 {rgb=(.7 .4 .4)} Face 21225 5946 5933 16041 {rgb=(.7 .4 .4)} Face 21226 5933 6062 16041 {rgb=(.7 .4 .4)} Face 21227 6062 6031 16041 {rgb=(.7 .4 .4)} Face 21228 6031 5946 16041 {rgb=(.7 .4 .4)} Face 21229 6308 6281 16042 {rgb=(.7 .4 .4)} Face 21230 6281 6202 16042 {rgb=(.7 .4 .4)} Face 21231 6202 6240 16042 {rgb=(.7 .4 .4)} Face 21232 6240 6308 16042 {rgb=(.7 .4 .4)} Face 21233 6116 6091 16043 {rgb=(.7 .4 .4)} Face 21234 6091 6148 16043 {rgb=(.7 .4 .4)} Face 21235 6148 6207 16043 {rgb=(.7 .4 .4)} Face 21236 6207 6116 16043 {rgb=(.7 .4 .4)} Face 21237 5837 5856 16044 {rgb=(.7 .4 .4)} Face 21238 5856 5872 16044 {rgb=(.7 .4 .4)} Face 21239 5872 5870 16044 {rgb=(.7 .4 .4)} Face 21240 5870 5837 16044 {rgb=(.7 .4 .4)} Face 21241 5450 5444 16045 {rgb=(.7 .4 .4)} Face 21242 5444 5602 16045 {rgb=(.7 .4 .4)} Face 21243 5602 5595 16045 {rgb=(.7 .4 .4)} Face 21244 5595 5450 16045 {rgb=(.7 .4 .4)} Face 21245 5766 5779 16046 {rgb=(.7 .4 .4)} Face 21246 5779 5904 16046 {rgb=(.7 .4 .4)} Face 21247 5904 5885 16046 {rgb=(.7 .4 .4)} Face 21248 5885 5766 16046 {rgb=(.7 .4 .4)} Face 21249 5970 5998 16047 {rgb=(.7 .4 .4)} Face 21250 5998 6061 16047 {rgb=(.7 .4 .4)} Face 21251 6061 6042 16047 {rgb=(.7 .4 .4)} Face 21252 6042 5970 16047 {rgb=(.7 .4 .4)} Face 21253 6110 6124 16048 {rgb=(.7 .4 .4)} Face 21254 6124 6181 16048 {rgb=(.7 .4 .4)} Face 21255 6181 6168 16048 {rgb=(.7 .4 .4)} Face 21256 6168 6110 16048 {rgb=(.7 .4 .4)} Face 21257 6252 6283 16049 {rgb=(.7 .4 .4)} Face 21258 6283 6355 16049 {rgb=(.7 .4 .4)} Face 21259 6355 6288 16049 {rgb=(.7 .4 .4)} Face 21260 6288 6252 16049 {rgb=(.7 .4 .4)} Face 21261 6328 6411 16050 {rgb=(.7 .4 .4)} Face 21262 6411 6443 16050 {rgb=(.7 .4 .4)} Face 21263 6443 6350 16050 {rgb=(.7 .4 .4)} Face 21264 6350 6328 16050 {rgb=(.7 .4 .4)} Face 21265 5783 5915 16051 {rgb=(.7 .4 .4)} Face 21266 5915 5928 16051 {rgb=(.7 .4 .4)} Face 21267 5928 5801 16051 {rgb=(.7 .4 .4)} Face 21268 5801 5783 16051 {rgb=(.7 .4 .4)} Face 21269 6060 6074 16052 {rgb=(.7 .4 .4)} Face 21270 6074 6021 16052 {rgb=(.7 .4 .4)} Face 21271 6021 6009 16052 {rgb=(.7 .4 .4)} Face 21272 6009 6060 16052 {rgb=(.7 .4 .4)} Face 21273 6076 6144 16053 {rgb=(.7 .4 .4)} Face 21274 6144 6164 16053 {rgb=(.7 .4 .4)} Face 21275 6164 6098 16053 {rgb=(.7 .4 .4)} Face 21276 6098 6076 16053 {rgb=(.7 .4 .4)} Face 21277 6293 6401 16054 {rgb=(.7 .4 .4)} Face 21278 6401 6433 16054 {rgb=(.7 .4 .4)} Face 21279 6433 6316 16054 {rgb=(.7 .4 .4)} Face 21280 6316 6293 16054 {rgb=(.7 .4 .4)} Face 21281 6510 6552 16055 {rgb=(.7 .4 .4)} Face 21282 6552 6513 16055 {rgb=(.7 .4 .4)} Face 21283 6513 6486 16055 {rgb=(.7 .4 .4)} Face 21284 6486 6510 16055 {rgb=(.7 .4 .4)} Face 21285 6592 6521 16056 {rgb=(.7 .4 .4)} Face 21286 6521 6553 16056 {rgb=(.7 .4 .4)} Face 21287 6553 6627 16056 {rgb=(.7 .4 .4)} Face 21288 6627 6592 16056 {rgb=(.7 .4 .4)} Face 21289 6694 6606 16057 {rgb=(.7 .4 .4)} Face 21290 6606 6630 16057 {rgb=(.7 .4 .4)} Face 21291 6630 6728 16057 {rgb=(.7 .4 .4)} Face 21292 6728 6694 16057 {rgb=(.7 .4 .4)} Face 21293 5777 5797 16058 {rgb=(.7 .4 .4)} Face 21294 5797 5782 16058 {rgb=(.7 .4 .4)} Face 21295 5782 5762 16058 {rgb=(.7 .4 .4)} Face 21296 5762 5777 16058 {rgb=(.7 .4 .4)} Face 21297 5847 5848 16059 {rgb=(.7 .4 .4)} Face 21298 5848 5878 16059 {rgb=(.7 .4 .4)} Face 21299 5878 5889 16059 {rgb=(.7 .4 .4)} Face 21300 5889 5847 16059 {rgb=(.7 .4 .4)} Face 21301 5937 6027 16060 {rgb=(.7 .4 .4)} Face 21302 6027 6053 16060 {rgb=(.7 .4 .4)} Face 21303 6053 5958 16060 {rgb=(.7 .4 .4)} Face 21304 5958 5937 16060 {rgb=(.7 .4 .4)} Face 21305 6177 6151 16061 {rgb=(.7 .4 .4)} Face 21306 6151 6263 16061 {rgb=(.7 .4 .4)} Face 21307 6263 6296 16061 {rgb=(.7 .4 .4)} Face 21308 6296 6177 16061 {rgb=(.7 .4 .4)} Face 21309 6312 6349 16062 {rgb=(.7 .4 .4)} Face 21310 6349 6368 16062 {rgb=(.7 .4 .4)} Face 21311 6368 6354 16062 {rgb=(.7 .4 .4)} Face 21312 6354 6312 16062 {rgb=(.7 .4 .4)} Face 21313 6195 6145 16063 {rgb=(.7 .4 .4)} Face 21314 6145 6139 16063 {rgb=(.7 .4 .4)} Face 21315 6139 6209 16063 {rgb=(.7 .4 .4)} Face 21316 6209 6195 16063 {rgb=(.7 .4 .4)} Face 21317 6352 6448 16064 {rgb=(.7 .4 .4)} Face 21318 6448 6445 16064 {rgb=(.7 .4 .4)} Face 21319 6445 6334 16064 {rgb=(.7 .4 .4)} Face 21320 6334 6352 16064 {rgb=(.7 .4 .4)} Face 21321 6442 6441 16065 {rgb=(.7 .4 .4)} Face 21322 6441 6364 16065 {rgb=(.7 .4 .4)} Face 21323 6364 6343 16065 {rgb=(.7 .4 .4)} Face 21324 6343 6442 16065 {rgb=(.7 .4 .4)} Face 21325 6530 6535 16066 {rgb=(.7 .4 .4)} Face 21326 6535 6567 16066 {rgb=(.7 .4 .4)} Face 21327 6567 6560 16066 {rgb=(.7 .4 .4)} Face 21328 6560 6530 16066 {rgb=(.7 .4 .4)} Face 21329 6543 6497 16067 {rgb=(.7 .4 .4)} Face 21330 6497 6495 16067 {rgb=(.7 .4 .4)} Face 21331 6495 6537 16067 {rgb=(.7 .4 .4)} Face 21332 6537 6543 16067 {rgb=(.7 .4 .4)} Face 21333 6502 6518 16068 {rgb=(.7 .4 .4)} Face 21334 6518 6558 16068 {rgb=(.7 .4 .4)} Face 21335 6558 6541 16068 {rgb=(.7 .4 .4)} Face 21336 6541 6502 16068 {rgb=(.7 .4 .4)} Face 21337 6480 6463 16069 {rgb=(.7 .4 .4)} Face 21338 6463 6399 16069 {rgb=(.7 .4 .4)} Face 21339 6399 6504 16069 {rgb=(.7 .4 .4)} Face 21340 6504 6480 16069 {rgb=(.7 .4 .4)} Face 21341 6266 6244 16070 {rgb=(.7 .4 .4)} Face 21342 6244 6162 16070 {rgb=(.7 .4 .4)} Face 21343 6162 6218 16070 {rgb=(.7 .4 .4)} Face 21344 6218 6266 16070 {rgb=(.7 .4 .4)} Face 21345 6444 6455 16071 {rgb=(.7 .4 .4)} Face 21346 6455 6369 16071 {rgb=(.7 .4 .4)} Face 21347 6369 6378 16071 {rgb=(.7 .4 .4)} Face 21348 6378 6444 16071 {rgb=(.7 .4 .4)} Face 21349 6485 6555 16072 {rgb=(.7 .4 .4)} Face 21350 6555 6571 16072 {rgb=(.7 .4 .4)} Face 21351 6571 6473 16072 {rgb=(.7 .4 .4)} Face 21352 6473 6485 16072 {rgb=(.7 .4 .4)} Face 21353 6739 6849 16073 {rgb=(.7 .4 .4)} Face 21354 6849 6854 16073 {rgb=(.7 .4 .4)} Face 21355 6854 6663 16073 {rgb=(.7 .4 .4)} Face 21356 6663 6739 16073 {rgb=(.7 .4 .4)} Face 21357 6734 6706 16074 {rgb=(.7 .4 .4)} Face 21358 6706 6866 16074 {rgb=(.7 .4 .4)} Face 21359 6866 6912 16074 {rgb=(.7 .4 .4)} Face 21360 6912 6734 16074 {rgb=(.7 .4 .4)} Face 21361 5862 5835 16075 {rgb=(.7 .4 .4)} Face 21362 5835 6011 16075 {rgb=(.7 .4 .4)} Face 21363 6011 6057 16075 {rgb=(.7 .4 .4)} Face 21364 6057 5862 16075 {rgb=(.7 .4 .4)} Face 21365 6280 6194 16076 {rgb=(.7 .4 .4)} Face 21366 6194 6516 16076 {rgb=(.7 .4 .4)} Face 21367 6516 6591 16076 {rgb=(.7 .4 .4)} Face 21368 6591 6280 16076 {rgb=(.7 .4 .4)} Face 21369 6813 6783 16077 {rgb=(.7 .4 .4)} Face 21370 6783 6984 16077 {rgb=(.7 .4 .4)} Face 21371 6984 7010 16077 {rgb=(.7 .4 .4)} Face 21372 7010 6813 16077 {rgb=(.7 .4 .4)} Face 21373 7357 7303 16078 {rgb=(.7 .4 .4)} Face 21374 7303 7199 16078 {rgb=(.7 .4 .4)} Face 21375 7199 7281 16078 {rgb=(.7 .4 .4)} Face 21376 7281 7357 16078 {rgb=(.7 .4 .4)} Face 21377 7152 7129 16079 {rgb=(.7 .4 .4)} Face 21378 7129 7196 16079 {rgb=(.7 .4 .4)} Face 21379 7196 7267 16079 {rgb=(.7 .4 .4)} Face 21380 7267 7152 16079 {rgb=(.7 .4 .4)} Face 21381 7462 7437 16080 {rgb=(.7 .4 .4)} Face 21382 7437 7360 16080 {rgb=(.7 .4 .4)} Face 21383 7360 7398 16080 {rgb=(.7 .4 .4)} Face 21384 7398 7462 16080 {rgb=(.7 .4 .4)} Face 21385 7395 7449 16081 {rgb=(.7 .4 .4)} Face 21386 7449 7397 16081 {rgb=(.7 .4 .4)} Face 21387 7397 7356 16081 {rgb=(.7 .4 .4)} Face 21388 7356 7395 16081 {rgb=(.7 .4 .4)} Face 21389 7110 7150 16082 {rgb=(.7 .4 .4)} Face 21390 7150 7308 16082 {rgb=(.7 .4 .4)} Face 21391 7308 7261 16082 {rgb=(.7 .4 .4)} Face 21392 7261 7110 16082 {rgb=(.7 .4 .4)} Face 21393 6745 6774 16083 {rgb=(.7 .4 .4)} Face 21394 6774 6983 16083 {rgb=(.7 .4 .4)} Face 21395 6983 6952 16083 {rgb=(.7 .4 .4)} Face 21396 6952 6745 16083 {rgb=(.7 .4 .4)} Face 21397 6171 6223 16084 {rgb=(.7 .4 .4)} Face 21398 6223 6539 16084 {rgb=(.7 .4 .4)} Face 21399 6539 6475 16084 {rgb=(.7 .4 .4)} Face 21400 6475 6171 16084 {rgb=(.7 .4 .4)} Face 21401 5814 5834 16085 {rgb=(.7 .4 .4)} Face 21402 5834 6014 16085 {rgb=(.7 .4 .4)} Face 21403 6014 5988 16085 {rgb=(.7 .4 .4)} Face 21404 5988 5814 16085 {rgb=(.7 .4 .4)} Face 21405 5632 5415 16086 {rgb=(.7 .4 .4)} Face 21406 5415 5414 16086 {rgb=(.7 .4 .4)} Face 21407 5414 5635 16086 {rgb=(.7 .4 .4)} Face 21408 5635 5632 16086 {rgb=(.7 .4 .4)} Face 21409 5412 5409 16087 {rgb=(.7 .4 .4)} Face 21410 5409 5642 16087 {rgb=(.7 .4 .4)} Face 21411 5642 5637 16087 {rgb=(.7 .4 .4)} Face 21412 5637 5412 16087 {rgb=(.7 .4 .4)} Face 21413 5879 5886 16088 {rgb=(.7 .4 .4)} Face 21414 5886 6133 16088 {rgb=(.7 .4 .4)} Face 21415 6133 6122 16088 {rgb=(.7 .4 .4)} Face 21416 6122 5879 16088 {rgb=(.7 .4 .4)} Face 21417 5864 5875 16089 {rgb=(.7 .4 .4)} Face 21418 5875 6108 16089 {rgb=(.7 .4 .4)} Face 21419 6108 6072 16089 {rgb=(.7 .4 .4)} Face 21420 6072 5864 16089 {rgb=(.7 .4 .4)} Face 21421 6395 6404 16090 {rgb=(.7 .4 .4)} Face 21422 6404 6683 16090 {rgb=(.7 .4 .4)} Face 21423 6683 6692 16090 {rgb=(.7 .4 .4)} Face 21424 6692 6395 16090 {rgb=(.7 .4 .4)} Face 21425 6331 6384 16091 {rgb=(.7 .4 .4)} Face 21426 6384 6682 16091 {rgb=(.7 .4 .4)} Face 21427 6682 6634 16091 {rgb=(.7 .4 .4)} Face 21428 6634 6331 16091 {rgb=(.7 .4 .4)} Face 21429 6917 6891 16092 {rgb=(.7 .4 .4)} Face 21430 6891 7079 16092 {rgb=(.7 .4 .4)} Face 21431 7079 7102 16092 {rgb=(.7 .4 .4)} Face 21432 7102 6917 16092 {rgb=(.7 .4 .4)} Face 21433 6869 6913 16093 {rgb=(.7 .4 .4)} Face 21434 6913 7095 16093 {rgb=(.7 .4 .4)} Face 21435 7095 7043 16093 {rgb=(.7 .4 .4)} Face 21436 7043 6869 16093 {rgb=(.7 .4 .4)} Face 21437 7307 7310 16094 {rgb=(.7 .4 .4)} Face 21438 7310 7460 16094 {rgb=(.7 .4 .4)} Face 21439 7460 7439 16094 {rgb=(.7 .4 .4)} Face 21440 7439 7307 16094 {rgb=(.7 .4 .4)} Face 21441 7227 7289 16095 {rgb=(.7 .4 .4)} Face 21442 7289 7419 16095 {rgb=(.7 .4 .4)} Face 21443 7419 7373 16095 {rgb=(.7 .4 .4)} Face 21444 7373 7227 16095 {rgb=(.7 .4 .4)} Face 21445 7521 7579 16096 {rgb=(.7 .4 .4)} Face 21446 7579 7654 16096 {rgb=(.7 .4 .4)} Face 21447 7654 7582 16096 {rgb=(.7 .4 .4)} Face 21448 7582 7521 16096 {rgb=(.7 .4 .4)} Face 21449 7670 7718 16097 {rgb=(.7 .4 .4)} Face 21450 7718 7629 16097 {rgb=(.7 .4 .4)} Face 21451 7629 7593 16097 {rgb=(.7 .4 .4)} Face 21452 7593 7670 16097 {rgb=(.7 .4 .4)} Face 21453 7575 7580 16098 {rgb=(.7 .4 .4)} Face 21454 7580 7663 16098 {rgb=(.7 .4 .4)} Face 21455 7663 7665 16098 {rgb=(.7 .4 .4)} Face 21456 7665 7575 16098 {rgb=(.7 .4 .4)} Face 21457 7533 7475 16099 {rgb=(.7 .4 .4)} Face 21458 7475 7572 16099 {rgb=(.7 .4 .4)} Face 21459 7572 7660 16099 {rgb=(.7 .4 .4)} Face 21460 7660 7533 16099 {rgb=(.7 .4 .4)} Face 21461 7453 7435 16100 {rgb=(.7 .4 .4)} Face 21462 7435 7473 16100 {rgb=(.7 .4 .4)} Face 21463 7473 7529 16100 {rgb=(.7 .4 .4)} Face 21464 7529 7453 16100 {rgb=(.7 .4 .4)} Face 21465 7197 7243 16101 {rgb=(.7 .4 .4)} Face 21466 7243 7382 16101 {rgb=(.7 .4 .4)} Face 21467 7382 7338 16101 {rgb=(.7 .4 .4)} Face 21468 7338 7197 16101 {rgb=(.7 .4 .4)} Face 21469 7222 7187 16102 {rgb=(.7 .4 .4)} Face 21470 7187 7331 16102 {rgb=(.7 .4 .4)} Face 21471 7331 7374 16102 {rgb=(.7 .4 .4)} Face 21472 7374 7222 16102 {rgb=(.7 .4 .4)} Face 21473 7080 7065 16103 {rgb=(.7 .4 .4)} Face 21474 7065 6920 16103 {rgb=(.7 .4 .4)} Face 21475 6920 6927 16103 {rgb=(.7 .4 .4)} Face 21476 6927 7080 16103 {rgb=(.7 .4 .4)} Face 21477 6921 6882 16104 {rgb=(.7 .4 .4)} Face 21478 6882 7037 16104 {rgb=(.7 .4 .4)} Face 21479 7037 7074 16104 {rgb=(.7 .4 .4)} Face 21480 7074 6921 16104 {rgb=(.7 .4 .4)} Face 21481 6512 6428 16105 {rgb=(.7 .4 .4)} Face 21482 6428 6687 16105 {rgb=(.7 .4 .4)} Face 21483 6687 6733 16105 {rgb=(.7 .4 .4)} Face 21484 6733 6512 16105 {rgb=(.7 .4 .4)} Face 21485 5967 5961 16106 {rgb=(.7 .4 .4)} Face 21486 5961 6227 16106 {rgb=(.7 .4 .4)} Face 21487 6227 6215 16106 {rgb=(.7 .4 .4)} Face 21488 6215 5967 16106 {rgb=(.7 .4 .4)} Face 21489 5955 5917 16107 {rgb=(.7 .4 .4)} Face 21490 5917 6155 16107 {rgb=(.7 .4 .4)} Face 21491 6155 6220 16107 {rgb=(.7 .4 .4)} Face 21492 6220 5955 16107 {rgb=(.7 .4 .4)} Face 21493 5379 5671 16108 {rgb=(.7 .4 .4)} Face 21494 5671 5702 16108 {rgb=(.7 .4 .4)} Face 21495 5702 5331 16108 {rgb=(.7 .4 .4)} Face 21496 5331 5379 16108 {rgb=(.7 .4 .4)} Face 21497 5382 5398 16109 {rgb=(.7 .4 .4)} Face 21498 5398 5654 16109 {rgb=(.7 .4 .4)} Face 21499 5654 5668 16109 {rgb=(.7 .4 .4)} Face 21500 5668 5382 16109 {rgb=(.7 .4 .4)} Face 21501 7866 7816 16110 {rgb=(.7 .4 .4)} Face 21502 7816 7925 16110 {rgb=(.7 .4 .4)} Face 21503 7925 7981 16110 {rgb=(.7 .4 .4)} Face 21504 7981 7866 16110 {rgb=(.7 .4 .4)} Face 21505 7782 7778 16111 {rgb=(.7 .4 .4)} Face 21506 7778 7871 16111 {rgb=(.7 .4 .4)} Face 21507 7871 7900 16111 {rgb=(.7 .4 .4)} Face 21508 7900 7782 16111 {rgb=(.7 .4 .4)} Face 21509 5630 5417 16112 {rgb=(.7 .4 .4)} Face 21510 5417 5421 16112 {rgb=(.7 .4 .4)} Face 21511 5421 5625 16112 {rgb=(.7 .4 .4)} Face 21512 5625 5630 16112 {rgb=(.7 .4 .4)} Face 21513 5850 5844 16113 {rgb=(.7 .4 .4)} Face 21514 5844 6036 16113 {rgb=(.7 .4 .4)} Face 21515 6036 6052 16113 {rgb=(.7 .4 .4)} Face 21516 6052 5850 16113 {rgb=(.7 .4 .4)} Face 21517 5860 5846 16114 {rgb=(.7 .4 .4)} Face 21518 5846 6044 16114 {rgb=(.7 .4 .4)} Face 21519 6044 6064 16114 {rgb=(.7 .4 .4)} Face 21520 6064 5860 16114 {rgb=(.7 .4 .4)} Face 21521 6300 6282 16115 {rgb=(.7 .4 .4)} Face 21522 6282 6573 16115 {rgb=(.7 .4 .4)} Face 21523 6573 6556 16115 {rgb=(.7 .4 .4)} Face 21524 6556 6300 16115 {rgb=(.7 .4 .4)} Face 21525 6313 6292 16116 {rgb=(.7 .4 .4)} Face 21526 6292 6549 16116 {rgb=(.7 .4 .4)} Face 21527 6549 6564 16116 {rgb=(.7 .4 .4)} Face 21528 6564 6313 16116 {rgb=(.7 .4 .4)} Face 21529 6545 6277 16117 {rgb=(.7 .4 .4)} Face 21530 6277 6271 16117 {rgb=(.7 .4 .4)} Face 21531 6271 6529 16117 {rgb=(.7 .4 .4)} Face 21532 6529 6545 16117 {rgb=(.7 .4 .4)} Face 21533 6267 6204 16118 {rgb=(.7 .4 .4)} Face 21534 6204 6235 16118 {rgb=(.7 .4 .4)} Face 21535 6235 6251 16118 {rgb=(.7 .4 .4)} Face 21536 6251 6267 16118 {rgb=(.7 .4 .4)} Face 21537 6174 6180 16119 {rgb=(.7 .4 .4)} Face 21538 6180 6214 16119 {rgb=(.7 .4 .4)} Face 21539 6214 6213 16119 {rgb=(.7 .4 .4)} Face 21540 6213 6174 16119 {rgb=(.7 .4 .4)} Face 21541 6261 6460 16120 {rgb=(.7 .4 .4)} Face 21542 6460 6503 16120 {rgb=(.7 .4 .4)} Face 21543 6503 6246 16120 {rgb=(.7 .4 .4)} Face 21544 6246 6261 16120 {rgb=(.7 .4 .4)} Face 21545 7177 7165 16121 {rgb=(.7 .4 .4)} Face 21546 7165 6889 16121 {rgb=(.7 .4 .4)} Face 21547 6889 6894 16121 {rgb=(.7 .4 .4)} Face 21548 6894 7177 16121 {rgb=(.7 .4 .4)} Face 21549 7461 7450 16122 {rgb=(.7 .4 .4)} Face 21550 7450 7619 16122 {rgb=(.7 .4 .4)} Face 21551 7619 7611 16122 {rgb=(.7 .4 .4)} Face 21552 7611 7461 16122 {rgb=(.7 .4 .4)} Face 21553 7452 7464 16123 {rgb=(.7 .4 .4)} Face 21554 7464 7608 16123 {rgb=(.7 .4 .4)} Face 21555 7608 7630 16123 {rgb=(.7 .4 .4)} Face 21556 7630 7452 16123 {rgb=(.7 .4 .4)} Face 21557 8705 8717 16124 {rgb=(.7 .4 .4)} Face 21558 8717 8712 16124 {rgb=(.7 .4 .4)} Face 21559 8712 8688 16124 {rgb=(.7 .4 .4)} Face 21560 8688 8705 16124 {rgb=(.7 .4 .4)} Face 21561 8670 8726 16125 {rgb=(.7 .4 .4)} Face 21562 8726 8719 16125 {rgb=(.7 .4 .4)} Face 21563 8719 8668 16125 {rgb=(.7 .4 .4)} Face 21564 8668 8670 16125 {rgb=(.7 .4 .4)} Face 21565 6710 7088 16126 {rgb=(.7 .4 .4)} Face 21566 7088 7001 16126 {rgb=(.7 .4 .4)} Face 21567 7001 6641 16126 {rgb=(.7 .4 .4)} Face 21568 6641 6710 16126 {rgb=(.7 .4 .4)} Face 21569 5177 5164 16127 {rgb=(.7 .4 .4)} Face 21570 5164 5881 16127 {rgb=(.7 .4 .4)} Face 21571 5881 5868 16127 {rgb=(.7 .4 .4)} Face 21572 5868 5177 16127 {rgb=(.7 .4 .4)} Face 21573 7294 7600 16128 {rgb=(.7 .4 .4)} Face 21574 7600 7468 16128 {rgb=(.7 .4 .4)} Face 21575 7468 7142 16128 {rgb=(.7 .4 .4)} Face 21576 7142 7294 16128 {rgb=(.7 .4 .4)} Face 21577 7986 8132 16129 {rgb=(.7 .4 .4)} Face 21578 8132 8413 16129 {rgb=(.7 .4 .4)} Face 21579 8413 8399 16129 {rgb=(.7 .4 .4)} Face 21580 8399 7986 16129 {rgb=(.7 .4 .4)} Face 21581 8630 8640 16130 {rgb=(.7 .4 .4)} Face 21582 8640 8752 16130 {rgb=(.7 .4 .4)} Face 21583 8752 8805 16130 {rgb=(.7 .4 .4)} Face 21584 8805 8630 16130 {rgb=(.7 .4 .4)} Face 21585 8809 8779 16131 {rgb=(.7 .4 .4)} Face 21586 8779 8811 16131 {rgb=(.7 .4 .4)} Face 21587 8811 8823 16131 {rgb=(.7 .4 .4)} Face 21588 8823 8809 16131 {rgb=(.7 .4 .4)} Face 21589 8835 8831 16132 {rgb=(.7 .4 .4)} Face 21590 8831 8862 16132 {rgb=(.7 .4 .4)} Face 21591 8862 8849 16132 {rgb=(.7 .4 .4)} Face 21592 8849 8835 16132 {rgb=(.7 .4 .4)} Face 21593 8847 8854 16133 {rgb=(.7 .4 .4)} Face 21594 8854 8856 16133 {rgb=(.7 .4 .4)} Face 21595 8856 8871 16133 {rgb=(.7 .4 .4)} Face 21596 8871 8847 16133 {rgb=(.7 .4 .4)} Face 21597 8896 8864 16134 {rgb=(.7 .4 .4)} Face 21598 8864 8797 16134 {rgb=(.7 .4 .4)} Face 21599 8797 8839 16134 {rgb=(.7 .4 .4)} Face 21600 8839 8896 16134 {rgb=(.7 .4 .4)} Face 21601 8721 8647 16135 {rgb=(.7 .4 .4)} Face 21602 8647 8594 16135 {rgb=(.7 .4 .4)} Face 21603 8594 8645 16135 {rgb=(.7 .4 .4)} Face 21604 8645 8721 16135 {rgb=(.7 .4 .4)} Face 21605 8650 8618 16136 {rgb=(.7 .4 .4)} Face 21606 8618 8642 16136 {rgb=(.7 .4 .4)} Face 21607 8642 8675 16136 {rgb=(.7 .4 .4)} Face 21608 8675 8650 16136 {rgb=(.7 .4 .4)} Face 21609 8728 8682 16137 {rgb=(.7 .4 .4)} Face 21610 8682 8734 16137 {rgb=(.7 .4 .4)} Face 21611 8734 8773 16137 {rgb=(.7 .4 .4)} Face 21612 8773 8728 16137 {rgb=(.7 .4 .4)} Face 21613 8731 8673 16138 {rgb=(.7 .4 .4)} Face 21614 8673 8683 16138 {rgb=(.7 .4 .4)} Face 21615 8683 8764 16138 {rgb=(.7 .4 .4)} Face 21616 8764 8731 16138 {rgb=(.7 .4 .4)} Face 21617 8633 8591 16139 {rgb=(.7 .4 .4)} Face 21618 8591 8572 16139 {rgb=(.7 .4 .4)} Face 21619 8572 8609 16139 {rgb=(.7 .4 .4)} Face 21620 8609 8633 16139 {rgb=(.7 .4 .4)} Face 21621 8558 8509 16140 {rgb=(.7 .4 .4)} Face 21622 8509 8514 16140 {rgb=(.7 .4 .4)} Face 21623 8514 8573 16140 {rgb=(.7 .4 .4)} Face 21624 8573 8558 16140 {rgb=(.7 .4 .4)} Face 21625 8597 8530 16141 {rgb=(.7 .4 .4)} Face 21626 8530 8547 16141 {rgb=(.7 .4 .4)} Face 21627 8547 8610 16141 {rgb=(.7 .4 .4)} Face 21628 8610 8597 16141 {rgb=(.7 .4 .4)} Face 21629 8612 8564 16142 {rgb=(.7 .4 .4)} Face 21630 8564 8584 16142 {rgb=(.7 .4 .4)} Face 21631 8584 8636 16142 {rgb=(.7 .4 .4)} Face 21632 8636 8612 16142 {rgb=(.7 .4 .4)} Face 21633 8672 8622 16143 {rgb=(.7 .4 .4)} Face 21634 8622 8665 16143 {rgb=(.7 .4 .4)} Face 21635 8665 8714 16143 {rgb=(.7 .4 .4)} Face 21636 8714 8672 16143 {rgb=(.7 .4 .4)} Face 21637 8747 8730 16144 {rgb=(.7 .4 .4)} Face 21638 8730 8732 16144 {rgb=(.7 .4 .4)} Face 21639 8732 8767 16144 {rgb=(.7 .4 .4)} Face 21640 8767 8747 16144 {rgb=(.7 .4 .4)} Face 21641 8658 8702 16145 {rgb=(.7 .4 .4)} Face 21642 8702 8699 16145 {rgb=(.7 .4 .4)} Face 21643 8699 8638 16145 {rgb=(.7 .4 .4)} Face 21644 8638 8658 16145 {rgb=(.7 .4 .4)} Face 21645 8824 8802 16146 {rgb=(.7 .4 .4)} Face 21646 8802 8774 16146 {rgb=(.7 .4 .4)} Face 21647 8774 8925 16146 {rgb=(.7 .4 .4)} Face 21648 8925 8824 16146 {rgb=(.7 .4 .4)} Face 21649 8317 8256 16147 {rgb=(.7 .4 .4)} Face 21650 8256 8335 16147 {rgb=(.7 .4 .4)} Face 21651 8335 8378 16147 {rgb=(.7 .4 .4)} Face 21652 8378 8317 16147 {rgb=(.7 .4 .4)} Face 21653 8433 8461 16148 {rgb=(.7 .4 .4)} Face 21654 8461 8440 16148 {rgb=(.7 .4 .4)} Face 21655 8440 8374 16148 {rgb=(.7 .4 .4)} Face 21656 8374 8433 16148 {rgb=(.7 .4 .4)} Face 21657 8991 9006 16149 {rgb=(.7 .4 .4)} Face 21658 9006 8890 16149 {rgb=(.7 .4 .4)} Face 21659 8890 8908 16149 {rgb=(.7 .4 .4)} Face 21660 8908 8991 16149 {rgb=(.7 .4 .4)} Face 21661 8579 8510 16150 {rgb=(.7 .4 .4)} Face 21662 8510 8582 16150 {rgb=(.7 .4 .4)} Face 21663 8582 8613 16150 {rgb=(.7 .4 .4)} Face 21664 8613 8579 16150 {rgb=(.7 .4 .4)} Face 21665 8701 8744 16151 {rgb=(.7 .4 .4)} Face 21666 8744 8846 16151 {rgb=(.7 .4 .4)} Face 21667 8846 8756 16151 {rgb=(.7 .4 .4)} Face 21668 8756 8701 16151 {rgb=(.7 .4 .4)} Face 21669 8848 8902 16152 {rgb=(.7 .4 .4)} Face 21670 8902 8917 16152 {rgb=(.7 .4 .4)} Face 21671 8917 8903 16152 {rgb=(.7 .4 .4)} Face 21672 8903 8848 16152 {rgb=(.7 .4 .4)} Face 21673 8329 8338 16153 {rgb=(.7 .4 .4)} Face 21674 8338 8419 16153 {rgb=(.7 .4 .4)} Face 21675 8419 8396 16153 {rgb=(.7 .4 .4)} Face 21676 8396 8329 16153 {rgb=(.7 .4 .4)} Face 21677 8264 8248 16154 {rgb=(.7 .4 .4)} Face 21678 8248 8282 16154 {rgb=(.7 .4 .4)} Face 21679 8282 8276 16154 {rgb=(.7 .4 .4)} Face 21680 8276 8264 16154 {rgb=(.7 .4 .4)} Face 21681 8468 8372 16155 {rgb=(.7 .4 .4)} Face 21682 8372 8394 16155 {rgb=(.7 .4 .4)} Face 21683 8394 8488 16155 {rgb=(.7 .4 .4)} Face 21684 8488 8468 16155 {rgb=(.7 .4 .4)} Face 21685 8471 8467 16156 {rgb=(.7 .4 .4)} Face 21686 8467 8406 16156 {rgb=(.7 .4 .4)} Face 21687 8406 8385 16156 {rgb=(.7 .4 .4)} Face 21688 8385 8471 16156 {rgb=(.7 .4 .4)} Face 21689 8889 8883 16157 {rgb=(.7 .4 .4)} Face 21690 8883 8852 16157 {rgb=(.7 .4 .4)} Face 21691 8852 8819 16157 {rgb=(.7 .4 .4)} Face 21692 8819 8889 16157 {rgb=(.7 .4 .4)} Face 21693 9205 9101 16158 {rgb=(.7 .4 .4)} Face 21694 9101 9004 16158 {rgb=(.7 .4 .4)} Face 21695 9004 9256 16158 {rgb=(.7 .4 .4)} Face 21696 9256 9205 16158 {rgb=(.7 .4 .4)} Face 21697 8789 8822 16159 {rgb=(.7 .4 .4)} Face 21698 8822 8793 16159 {rgb=(.7 .4 .4)} Face 21699 8793 8803 16159 {rgb=(.7 .4 .4)} Face 21700 8803 8789 16159 {rgb=(.7 .4 .4)} Face 21701 8769 8754 16160 {rgb=(.7 .4 .4)} Face 21702 8754 8733 16160 {rgb=(.7 .4 .4)} Face 21703 8733 8735 16160 {rgb=(.7 .4 .4)} Face 21704 8735 8769 16160 {rgb=(.7 .4 .4)} Face 21705 7100 7271 16161 {rgb=(.7 .4 .4)} Face 21706 7271 7275 16161 {rgb=(.7 .4 .4)} Face 21707 7275 7096 16161 {rgb=(.7 .4 .4)} Face 21708 7096 7100 16161 {rgb=(.7 .4 .4)} Face 21709 7260 7098 16162 {rgb=(.7 .4 .4)} Face 21710 7098 7099 16162 {rgb=(.7 .4 .4)} Face 21711 7099 7256 16162 {rgb=(.7 .4 .4)} Face 21712 7256 7260 16162 {rgb=(.7 .4 .4)} Face 21713 7519 7404 16163 {rgb=(.7 .4 .4)} Face 21714 7404 7401 16163 {rgb=(.7 .4 .4)} Face 21715 7401 7517 16163 {rgb=(.7 .4 .4)} Face 21716 7517 7519 16163 {rgb=(.7 .4 .4)} Face 21717 7409 7528 16164 {rgb=(.7 .4 .4)} Face 21718 7528 7539 16164 {rgb=(.7 .4 .4)} Face 21719 7539 7414 16164 {rgb=(.7 .4 .4)} Face 21720 7414 7409 16164 {rgb=(.7 .4 .4)} Face 21721 6833 6965 16165 {rgb=(.7 .4 .4)} Face 21722 6965 6962 16165 {rgb=(.7 .4 .4)} Face 21723 6962 6827 16165 {rgb=(.7 .4 .4)} Face 21724 6827 6833 16165 {rgb=(.7 .4 .4)} Face 21725 6967 6836 16166 {rgb=(.7 .4 .4)} Face 21726 6836 6841 16166 {rgb=(.7 .4 .4)} Face 21727 6841 6968 16166 {rgb=(.7 .4 .4)} Face 21728 6968 6967 16166 {rgb=(.7 .4 .4)} Face 21729 6613 6726 16167 {rgb=(.7 .4 .4)} Face 21730 6726 6723 16167 {rgb=(.7 .4 .4)} Face 21731 6723 6601 16167 {rgb=(.7 .4 .4)} Face 21732 6601 6613 16167 {rgb=(.7 .4 .4)} Face 21733 6730 6615 16168 {rgb=(.7 .4 .4)} Face 21734 6615 6620 16168 {rgb=(.7 .4 .4)} Face 21735 6620 6732 16168 {rgb=(.7 .4 .4)} Face 21736 6732 6730 16168 {rgb=(.7 .4 .4)} Face 21737 6379 6461 16169 {rgb=(.7 .4 .4)} Face 21738 6461 6440 16169 {rgb=(.7 .4 .4)} Face 21739 6440 6361 16169 {rgb=(.7 .4 .4)} Face 21740 6361 6379 16169 {rgb=(.7 .4 .4)} Face 21741 6469 6386 16170 {rgb=(.7 .4 .4)} Face 21742 6386 6390 16170 {rgb=(.7 .4 .4)} Face 21743 6390 6478 16170 {rgb=(.7 .4 .4)} Face 21744 6478 6469 16170 {rgb=(.7 .4 .4)} Face 21745 6596 6397 16171 {rgb=(.7 .4 .4)} Face 21746 6397 6372 16171 {rgb=(.7 .4 .4)} Face 21747 6372 6590 16171 {rgb=(.7 .4 .4)} Face 21748 6590 6596 16171 {rgb=(.7 .4 .4)} Face 21749 6406 6600 16172 {rgb=(.7 .4 .4)} Face 21750 6600 6604 16172 {rgb=(.7 .4 .4)} Face 21751 6604 6415 16172 {rgb=(.7 .4 .4)} Face 21752 6415 6406 16172 {rgb=(.7 .4 .4)} Face 21753 7060 6835 16173 {rgb=(.7 .4 .4)} Face 21754 6835 6846 16173 {rgb=(.7 .4 .4)} Face 21755 6846 7077 16173 {rgb=(.7 .4 .4)} Face 21756 7077 7060 16173 {rgb=(.7 .4 .4)} Face 21757 6837 7057 16174 {rgb=(.7 .4 .4)} Face 21758 7057 7056 16174 {rgb=(.7 .4 .4)} Face 21759 7056 6839 16174 {rgb=(.7 .4 .4)} Face 21760 6839 6837 16174 {rgb=(.7 .4 .4)} Face 21761 7482 7323 16175 {rgb=(.7 .4 .4)} Face 21762 7323 7339 16175 {rgb=(.7 .4 .4)} Face 21763 7339 7511 16175 {rgb=(.7 .4 .4)} Face 21764 7511 7482 16175 {rgb=(.7 .4 .4)} Face 21765 7317 7478 16176 {rgb=(.7 .4 .4)} Face 21766 7478 7477 16176 {rgb=(.7 .4 .4)} Face 21767 7477 7316 16176 {rgb=(.7 .4 .4)} Face 21768 7316 7317 16176 {rgb=(.7 .4 .4)} Face 21769 7686 7599 16177 {rgb=(.7 .4 .4)} Face 21770 7599 7635 16177 {rgb=(.7 .4 .4)} Face 21771 7635 7730 16177 {rgb=(.7 .4 .4)} Face 21772 7730 7686 16177 {rgb=(.7 .4 .4)} Face 21773 7584 7675 16178 {rgb=(.7 .4 .4)} Face 21774 7675 7671 16178 {rgb=(.7 .4 .4)} Face 21775 7671 7581 16178 {rgb=(.7 .4 .4)} Face 21776 7581 7584 16178 {rgb=(.7 .4 .4)} Face 21777 7808 7776 16179 {rgb=(.7 .4 .4)} Face 21778 7776 7807 16179 {rgb=(.7 .4 .4)} Face 21779 7807 7840 16179 {rgb=(.7 .4 .4)} Face 21780 7840 7808 16179 {rgb=(.7 .4 .4)} Face 21781 7768 7802 16180 {rgb=(.7 .4 .4)} Face 21782 7802 7798 16180 {rgb=(.7 .4 .4)} Face 21783 7798 7762 16180 {rgb=(.7 .4 .4)} Face 21784 7762 7768 16180 {rgb=(.7 .4 .4)} Face 21785 7770 7791 16181 {rgb=(.7 .4 .4)} Face 21786 7791 7827 16181 {rgb=(.7 .4 .4)} Face 21787 7827 7795 16181 {rgb=(.7 .4 .4)} Face 21788 7795 7770 16181 {rgb=(.7 .4 .4)} Face 21789 7787 7761 16182 {rgb=(.7 .4 .4)} Face 21790 7761 7759 16182 {rgb=(.7 .4 .4)} Face 21791 7759 7783 16182 {rgb=(.7 .4 .4)} Face 21792 7783 7787 16182 {rgb=(.7 .4 .4)} Face 21793 7651 7732 16183 {rgb=(.7 .4 .4)} Face 21794 7732 7752 16183 {rgb=(.7 .4 .4)} Face 21795 7752 7662 16183 {rgb=(.7 .4 .4)} Face 21796 7662 7651 16183 {rgb=(.7 .4 .4)} Face 21797 7725 7645 16184 {rgb=(.7 .4 .4)} Face 21798 7645 7644 16184 {rgb=(.7 .4 .4)} Face 21799 7644 7723 16184 {rgb=(.7 .4 .4)} Face 21800 7723 7725 16184 {rgb=(.7 .4 .4)} Face 21801 3514 3636 16185 {rgb=(.7 .4 .4)} Face 21802 3636 3631 16185 {rgb=(.7 .4 .4)} Face 21803 3631 3504 16185 {rgb=(.7 .4 .4)} Face 21804 3504 3514 16185 {rgb=(.7 .4 .4)} Face 21805 3641 3523 16186 {rgb=(.7 .4 .4)} Face 21806 3523 3524 16186 {rgb=(.7 .4 .4)} Face 21807 3524 3644 16186 {rgb=(.7 .4 .4)} Face 21808 3644 3641 16186 {rgb=(.7 .4 .4)} Face 21809 3943 3787 16187 {rgb=(.7 .4 .4)} Face 21810 3787 3791 16187 {rgb=(.7 .4 .4)} Face 21811 3791 3942 16187 {rgb=(.7 .4 .4)} Face 21812 3942 3943 16187 {rgb=(.7 .4 .4)} Face 21813 3775 3941 16188 {rgb=(.7 .4 .4)} Face 21814 3941 3944 16188 {rgb=(.7 .4 .4)} Face 21815 3944 3771 16188 {rgb=(.7 .4 .4)} Face 21816 3771 3775 16188 {rgb=(.7 .4 .4)} Face 21817 3312 3395 16189 {rgb=(.7 .4 .4)} Face 21818 3395 3380 16189 {rgb=(.7 .4 .4)} Face 21819 3380 3293 16189 {rgb=(.7 .4 .4)} Face 21820 3293 3312 16189 {rgb=(.7 .4 .4)} Face 21821 3401 3316 16190 {rgb=(.7 .4 .4)} Face 21822 3316 3318 16190 {rgb=(.7 .4 .4)} Face 21823 3318 3402 16190 {rgb=(.7 .4 .4)} Face 21824 3402 3401 16190 {rgb=(.7 .4 .4)} Face 21825 3253 3276 16191 {rgb=(.7 .4 .4)} Face 21826 3276 3249 16191 {rgb=(.7 .4 .4)} Face 21827 3249 3217 16191 {rgb=(.7 .4 .4)} Face 21828 3217 3253 16191 {rgb=(.7 .4 .4)} Face 21829 3284 3259 16192 {rgb=(.7 .4 .4)} Face 21830 3259 3263 16192 {rgb=(.7 .4 .4)} Face 21831 3263 3287 16192 {rgb=(.7 .4 .4)} Face 21832 3287 3284 16192 {rgb=(.7 .4 .4)} Face 21833 3270 3236 16193 {rgb=(.7 .4 .4)} Face 21834 3236 3205 16193 {rgb=(.7 .4 .4)} Face 21835 3205 3237 16193 {rgb=(.7 .4 .4)} Face 21836 3237 3270 16193 {rgb=(.7 .4 .4)} Face 21837 3241 3277 16194 {rgb=(.7 .4 .4)} Face 21838 3277 3283 16194 {rgb=(.7 .4 .4)} Face 21839 3283 3245 16194 {rgb=(.7 .4 .4)} Face 21840 3245 3241 16194 {rgb=(.7 .4 .4)} Face 21841 3447 3354 16195 {rgb=(.7 .4 .4)} Face 21842 3354 3313 16195 {rgb=(.7 .4 .4)} Face 21843 3313 3411 16195 {rgb=(.7 .4 .4)} Face 21844 3411 3447 16195 {rgb=(.7 .4 .4)} Face 21845 3366 3458 16196 {rgb=(.7 .4 .4)} Face 21846 3458 3461 16196 {rgb=(.7 .4 .4)} Face 21847 3461 3370 16196 {rgb=(.7 .4 .4)} Face 21848 3370 3366 16196 {rgb=(.7 .4 .4)} Face 21849 3719 3560 16197 {rgb=(.7 .4 .4)} Face 21850 3560 3531 16197 {rgb=(.7 .4 .4)} Face 21851 3531 3704 16197 {rgb=(.7 .4 .4)} Face 21852 3704 3719 16197 {rgb=(.7 .4 .4)} Face 21853 3563 3725 16198 {rgb=(.7 .4 .4)} Face 21854 3725 3726 16198 {rgb=(.7 .4 .4)} Face 21855 3726 3564 16198 {rgb=(.7 .4 .4)} Face 21856 3564 3563 16198 {rgb=(.7 .4 .4)} Face 21857 4210 3980 16199 {rgb=(.7 .4 .4)} Face 21858 3980 3963 16199 {rgb=(.7 .4 .4)} Face 21859 3963 4198 16199 {rgb=(.7 .4 .4)} Face 21860 4198 4210 16199 {rgb=(.7 .4 .4)} Face 21861 3983 4208 16200 {rgb=(.7 .4 .4)} Face 21862 4208 4207 16200 {rgb=(.7 .4 .4)} Face 21863 4207 3984 16200 {rgb=(.7 .4 .4)} Face 21864 3984 3983 16200 {rgb=(.7 .4 .4)} Face 21865 4650 4443 16201 {rgb=(.7 .4 .4)} Face 21866 4443 4450 16201 {rgb=(.7 .4 .4)} Face 21867 4450 4675 16201 {rgb=(.7 .4 .4)} Face 21868 4675 4650 16201 {rgb=(.7 .4 .4)} Face 21869 4439 4641 16202 {rgb=(.7 .4 .4)} Face 21870 4641 4633 16202 {rgb=(.7 .4 .4)} Face 21871 4633 4435 16202 {rgb=(.7 .4 .4)} Face 21872 4435 4439 16202 {rgb=(.7 .4 .4)} Face 21873 4584 4667 16203 {rgb=(.7 .4 .4)} Face 21874 4667 4687 16203 {rgb=(.7 .4 .4)} Face 21875 4687 4606 16203 {rgb=(.7 .4 .4)} Face 21876 4606 4584 16203 {rgb=(.7 .4 .4)} Face 21877 4660 4576 16204 {rgb=(.7 .4 .4)} Face 21878 4576 4568 16204 {rgb=(.7 .4 .4)} Face 21879 4568 4657 16204 {rgb=(.7 .4 .4)} Face 21880 4657 4660 16204 {rgb=(.7 .4 .4)} Face 21881 4317 4425 16205 {rgb=(.7 .4 .4)} Face 21882 4425 4438 16205 {rgb=(.7 .4 .4)} Face 21883 4438 4321 16205 {rgb=(.7 .4 .4)} Face 21884 4321 4317 16205 {rgb=(.7 .4 .4)} Face 21885 4422 4314 16206 {rgb=(.7 .4 .4)} Face 21886 4314 4313 16206 {rgb=(.7 .4 .4)} Face 21887 4313 4418 16206 {rgb=(.7 .4 .4)} Face 21888 4418 4422 16206 {rgb=(.7 .4 .4)} Face 21889 4076 4212 16207 {rgb=(.7 .4 .4)} Face 21890 4212 4218 16207 {rgb=(.7 .4 .4)} Face 21891 4218 4079 16207 {rgb=(.7 .4 .4)} Face 21892 4079 4076 16207 {rgb=(.7 .4 .4)} Face 21893 4209 4074 16208 {rgb=(.7 .4 .4)} Face 21894 4074 4073 16208 {rgb=(.7 .4 .4)} Face 21895 4073 4205 16208 {rgb=(.7 .4 .4)} Face 21896 4205 4209 16208 {rgb=(.7 .4 .4)} Face 21897 3684 4070 16209 {rgb=(.7 .4 .4)} Face 21898 4070 4031 16209 {rgb=(.7 .4 .4)} Face 21899 4031 3649 16209 {rgb=(.7 .4 .4)} Face 21900 3649 3684 16209 {rgb=(.7 .4 .4)} Face 21901 3141 3404 16210 {rgb=(.7 .4 .4)} Face 21902 3404 3355 16210 {rgb=(.7 .4 .4)} Face 21903 3355 3112 16210 {rgb=(.7 .4 .4)} Face 21904 3112 3141 16210 {rgb=(.7 .4 .4)} Face 21905 3018 2991 16211 {rgb=(.7 .4 .4)} Face 21906 2991 2987 16211 {rgb=(.7 .4 .4)} Face 21907 2987 3033 16211 {rgb=(.7 .4 .4)} Face 21908 3033 3018 16211 {rgb=(.7 .4 .4)} Face 21909 3229 3145 16212 {rgb=(.7 .4 .4)} Face 21910 3145 3169 16212 {rgb=(.7 .4 .4)} Face 21911 3169 3254 16212 {rgb=(.7 .4 .4)} Face 21912 3254 3229 16212 {rgb=(.7 .4 .4)} Face 21913 3374 3285 16213 {rgb=(.7 .4 .4)} Face 21914 3285 3305 16213 {rgb=(.7 .4 .4)} Face 21915 3305 3394 16213 {rgb=(.7 .4 .4)} Face 21916 3394 3374 16213 {rgb=(.7 .4 .4)} Face 21917 3624 3493 16214 {rgb=(.7 .4 .4)} Face 21918 3493 3507 16214 {rgb=(.7 .4 .4)} Face 21919 3507 3632 16214 {rgb=(.7 .4 .4)} Face 21920 3632 3624 16214 {rgb=(.7 .4 .4)} Face 21921 4090 3770 16215 {rgb=(.7 .4 .4)} Face 21922 3770 3785 16215 {rgb=(.7 .4 .4)} Face 21923 3785 4092 16215 {rgb=(.7 .4 .4)} Face 21924 4092 4090 16215 {rgb=(.7 .4 .4)} Face 21925 5084 4618 16216 {rgb=(.7 .4 .4)} Face 21926 4618 4619 16216 {rgb=(.7 .4 .4)} Face 21927 4619 5083 16216 {rgb=(.7 .4 .4)} Face 21928 5083 5084 16216 {rgb=(.7 .4 .4)} Face 21929 5670 5377 16217 {rgb=(.7 .4 .4)} Face 21930 5377 5390 16217 {rgb=(.7 .4 .4)} Face 21931 5390 5682 16217 {rgb=(.7 .4 .4)} Face 21932 5682 5670 16217 {rgb=(.7 .4 .4)} Face 21933 6427 5964 16218 {rgb=(.7 .4 .4)} Face 21934 5964 5990 16218 {rgb=(.7 .4 .4)} Face 21935 5990 6484 16218 {rgb=(.7 .4 .4)} Face 21936 6484 6427 16218 {rgb=(.7 .4 .4)} Face 21937 7209 6940 16219 {rgb=(.7 .4 .4)} Face 21938 6940 6981 16219 {rgb=(.7 .4 .4)} Face 21939 6981 7295 16219 {rgb=(.7 .4 .4)} Face 21940 7295 7209 16219 {rgb=(.7 .4 .4)} Face 21941 7486 7367 16220 {rgb=(.7 .4 .4)} Face 21942 7367 7431 16220 {rgb=(.7 .4 .4)} Face 21943 7431 7537 16220 {rgb=(.7 .4 .4)} Face 21944 7537 7486 16220 {rgb=(.7 .4 .4)} Face 21945 7690 7610 16221 {rgb=(.7 .4 .4)} Face 21946 7610 7643 16221 {rgb=(.7 .4 .4)} Face 21947 7643 7727 16221 {rgb=(.7 .4 .4)} Face 21948 7727 7690 16221 {rgb=(.7 .4 .4)} Face 21949 7852 7751 16222 {rgb=(.7 .4 .4)} Face 21950 7751 7781 16222 {rgb=(.7 .4 .4)} Face 21951 7781 7873 16222 {rgb=(.7 .4 .4)} Face 21952 7873 7852 16222 {rgb=(.7 .4 .4)} Face 21953 8096 7987 16223 {rgb=(.7 .4 .4)} Face 21954 7987 8006 16223 {rgb=(.7 .4 .4)} Face 21955 8006 8114 16223 {rgb=(.7 .4 .4)} Face 21956 8114 8096 16223 {rgb=(.7 .4 .4)} Face 21957 7821 8029 16224 {rgb=(.7 .4 .4)} Face 21958 8029 8044 16224 {rgb=(.7 .4 .4)} Face 21959 8044 7839 16224 {rgb=(.7 .4 .4)} Face 21960 7839 7821 16224 {rgb=(.7 .4 .4)} Face 21961 7112 7513 16225 {rgb=(.7 .4 .4)} Face 21962 7513 7535 16225 {rgb=(.7 .4 .4)} Face 21963 7535 7140 16225 {rgb=(.7 .4 .4)} Face 21964 7140 7112 16225 {rgb=(.7 .4 .4)} Face 21965 6092 6639 16226 {rgb=(.7 .4 .4)} Face 21966 6639 6656 16226 {rgb=(.7 .4 .4)} Face 21967 6656 6101 16226 {rgb=(.7 .4 .4)} Face 21968 6101 6092 16226 {rgb=(.7 .4 .4)} Face 21969 5372 5722 16227 {rgb=(.7 .4 .4)} Face 21970 5722 5737 16227 {rgb=(.7 .4 .4)} Face 21971 5737 5383 16227 {rgb=(.7 .4 .4)} Face 21972 5383 5372 16227 {rgb=(.7 .4 .4)} Face 21973 4547 5030 16228 {rgb=(.7 .4 .4)} Face 21974 5030 5027 16228 {rgb=(.7 .4 .4)} Face 21975 5027 4508 16228 {rgb=(.7 .4 .4)} Face 21976 4508 4547 16228 {rgb=(.7 .4 .4)} Face 21977 3581 3976 16229 {rgb=(.7 .4 .4)} Face 21978 3976 3903 16229 {rgb=(.7 .4 .4)} Face 21979 3903 3506 16229 {rgb=(.7 .4 .4)} Face 21980 3506 3581 16229 {rgb=(.7 .4 .4)} Face 21981 3061 3290 16230 {rgb=(.7 .4 .4)} Face 21982 3290 3206 16230 {rgb=(.7 .4 .4)} Face 21983 3206 2978 16230 {rgb=(.7 .4 .4)} Face 21984 2978 3061 16230 {rgb=(.7 .4 .4)} Face 21985 3006 2938 16231 {rgb=(.7 .4 .4)} Face 21986 2938 2880 16231 {rgb=(.7 .4 .4)} Face 21987 2880 2933 16231 {rgb=(.7 .4 .4)} Face 21988 2933 3006 16231 {rgb=(.7 .4 .4)} Face 21989 3223 3142 16232 {rgb=(.7 .4 .4)} Face 21990 3142 3088 16232 {rgb=(.7 .4 .4)} Face 21991 3088 3175 16232 {rgb=(.7 .4 .4)} Face 21992 3175 3223 16232 {rgb=(.7 .4 .4)} Face 21993 3356 3272 16233 {rgb=(.7 .4 .4)} Face 21994 3272 3209 16233 {rgb=(.7 .4 .4)} Face 21995 3209 3294 16233 {rgb=(.7 .4 .4)} Face 21996 3294 3356 16233 {rgb=(.7 .4 .4)} Face 21997 3589 3470 16234 {rgb=(.7 .4 .4)} Face 21998 3470 3406 16234 {rgb=(.7 .4 .4)} Face 21999 3406 3530 16234 {rgb=(.7 .4 .4)} Face 22000 3530 3589 16234 {rgb=(.7 .4 .4)} Face 22001 4056 3729 16235 {rgb=(.7 .4 .4)} Face 22002 3729 3663 16235 {rgb=(.7 .4 .4)} Face 22003 3663 3998 16235 {rgb=(.7 .4 .4)} Face 22004 3998 4056 16235 {rgb=(.7 .4 .4)} Face 22005 5069 4556 16236 {rgb=(.7 .4 .4)} Face 22006 4556 4482 16236 {rgb=(.7 .4 .4)} Face 22007 4482 5038 16236 {rgb=(.7 .4 .4)} Face 22008 5038 5069 16236 {rgb=(.7 .4 .4)} Face 22009 5699 5394 16237 {rgb=(.7 .4 .4)} Face 22010 5394 5381 16237 {rgb=(.7 .4 .4)} Face 22011 5381 5715 16237 {rgb=(.7 .4 .4)} Face 22012 5715 5699 16237 {rgb=(.7 .4 .4)} Face 22013 6566 6023 16238 {rgb=(.7 .4 .4)} Face 22014 6023 6055 16238 {rgb=(.7 .4 .4)} Face 22015 6055 6623 16238 {rgb=(.7 .4 .4)} Face 22016 6623 6566 16238 {rgb=(.7 .4 .4)} Face 22017 7381 7041 16239 {rgb=(.7 .4 .4)} Face 22018 7041 7125 16239 {rgb=(.7 .4 .4)} Face 22019 7125 7458 16239 {rgb=(.7 .4 .4)} Face 22020 7458 7381 16239 {rgb=(.7 .4 .4)} Face 22021 7637 7507 16240 {rgb=(.7 .4 .4)} Face 22022 7507 7607 16240 {rgb=(.7 .4 .4)} Face 22023 7607 7731 16240 {rgb=(.7 .4 .4)} Face 22024 7731 7637 16240 {rgb=(.7 .4 .4)} Face 22025 7828 7743 16241 {rgb=(.7 .4 .4)} Face 22026 7743 7843 16241 {rgb=(.7 .4 .4)} Face 22027 7843 7912 16241 {rgb=(.7 .4 .4)} Face 22028 7912 7828 16241 {rgb=(.7 .4 .4)} Face 22029 7952 7867 16242 {rgb=(.7 .4 .4)} Face 22030 7867 7959 16242 {rgb=(.7 .4 .4)} Face 22031 7959 8054 16242 {rgb=(.7 .4 .4)} Face 22032 8054 7952 16242 {rgb=(.7 .4 .4)} Face 22033 8177 8105 16243 {rgb=(.7 .4 .4)} Face 22034 8105 8202 16243 {rgb=(.7 .4 .4)} Face 22035 8202 8241 16243 {rgb=(.7 .4 .4)} Face 22036 8241 8177 16243 {rgb=(.7 .4 .4)} Face 22037 7884 8120 16244 {rgb=(.7 .4 .4)} Face 22038 8120 8185 16244 {rgb=(.7 .4 .4)} Face 22039 8185 7943 16244 {rgb=(.7 .4 .4)} Face 22040 7943 7884 16244 {rgb=(.7 .4 .4)} Face 22041 7179 7585 16245 {rgb=(.7 .4 .4)} Face 22042 7585 7641 16245 {rgb=(.7 .4 .4)} Face 22043 7641 7242 16245 {rgb=(.7 .4 .4)} Face 22044 7242 7179 16245 {rgb=(.7 .4 .4)} Face 22045 6138 6705 16246 {rgb=(.7 .4 .4)} Face 22046 6705 6741 16246 {rgb=(.7 .4 .4)} Face 22047 6741 6163 16246 {rgb=(.7 .4 .4)} Face 22048 6163 6138 16246 {rgb=(.7 .4 .4)} Face 22049 5389 5749 16247 {rgb=(.7 .4 .4)} Face 22050 5749 5767 16247 {rgb=(.7 .4 .4)} Face 22051 5767 5373 16247 {rgb=(.7 .4 .4)} Face 22052 5373 5389 16247 {rgb=(.7 .4 .4)} Face 22053 4445 5007 16248 {rgb=(.7 .4 .4)} Face 22054 5007 4973 16248 {rgb=(.7 .4 .4)} Face 22055 4973 4394 16248 {rgb=(.7 .4 .4)} Face 22056 4394 4445 16248 {rgb=(.7 .4 .4)} Face 22057 3409 3816 16249 {rgb=(.7 .4 .4)} Face 22058 3816 3755 16249 {rgb=(.7 .4 .4)} Face 22059 3755 3361 16249 {rgb=(.7 .4 .4)} Face 22060 3361 3409 16249 {rgb=(.7 .4 .4)} Face 22061 2854 3092 16250 {rgb=(.7 .4 .4)} Face 22062 3092 3036 16250 {rgb=(.7 .4 .4)} Face 22063 3036 2811 16250 {rgb=(.7 .4 .4)} Face 22064 2811 2854 16250 {rgb=(.7 .4 .4)} Face 22065 2832 2799 16251 {rgb=(.7 .4 .4)} Face 22066 2799 2757 16251 {rgb=(.7 .4 .4)} Face 22067 2757 2792 16251 {rgb=(.7 .4 .4)} Face 22068 2792 2832 16251 {rgb=(.7 .4 .4)} Face 22069 3071 2969 16252 {rgb=(.7 .4 .4)} Face 22070 2969 2896 16252 {rgb=(.7 .4 .4)} Face 22071 2896 3007 16252 {rgb=(.7 .4 .4)} Face 22072 3007 3071 16252 {rgb=(.7 .4 .4)} Face 22073 3188 3109 16253 {rgb=(.7 .4 .4)} Face 22074 3109 3054 16253 {rgb=(.7 .4 .4)} Face 22075 3054 3136 16253 {rgb=(.7 .4 .4)} Face 22076 3136 3188 16253 {rgb=(.7 .4 .4)} Face 22077 3427 3298 16254 {rgb=(.7 .4 .4)} Face 22078 3298 3242 16254 {rgb=(.7 .4 .4)} Face 22079 3242 3383 16254 {rgb=(.7 .4 .4)} Face 22080 3383 3427 16254 {rgb=(.7 .4 .4)} Face 22081 3912 3569 16255 {rgb=(.7 .4 .4)} Face 22082 3569 3532 16255 {rgb=(.7 .4 .4)} Face 22083 3532 3873 16255 {rgb=(.7 .4 .4)} Face 22084 3873 3912 16255 {rgb=(.7 .4 .4)} Face 22085 4994 4413 16256 {rgb=(.7 .4 .4)} Face 22086 4413 4379 16256 {rgb=(.7 .4 .4)} Face 22087 4379 4976 16256 {rgb=(.7 .4 .4)} Face 22088 4976 4994 16256 {rgb=(.7 .4 .4)} Face 22089 5724 5363 16257 {rgb=(.7 .4 .4)} Face 22090 5363 5350 16257 {rgb=(.7 .4 .4)} Face 22091 5350 5732 16257 {rgb=(.7 .4 .4)} Face 22092 5732 5724 16257 {rgb=(.7 .4 .4)} Face 22093 6685 6095 16258 {rgb=(.7 .4 .4)} Face 22094 6095 6107 16258 {rgb=(.7 .4 .4)} Face 22095 6107 6716 16258 {rgb=(.7 .4 .4)} Face 22096 6716 6685 16258 {rgb=(.7 .4 .4)} Face 22097 7543 7191 16259 {rgb=(.7 .4 .4)} Face 22098 7191 7253 16259 {rgb=(.7 .4 .4)} Face 22099 7253 7598 16259 {rgb=(.7 .4 .4)} Face 22100 7598 7543 16259 {rgb=(.7 .4 .4)} Face 22101 7837 7699 16260 {rgb=(.7 .4 .4)} Face 22102 7699 7750 16260 {rgb=(.7 .4 .4)} Face 22103 7750 7882 16260 {rgb=(.7 .4 .4)} Face 22104 7882 7837 16260 {rgb=(.7 .4 .4)} Face 22105 8032 7947 16261 {rgb=(.7 .4 .4)} Face 22106 7947 7999 16261 {rgb=(.7 .4 .4)} Face 22107 7999 8103 16261 {rgb=(.7 .4 .4)} Face 22108 8103 8032 16261 {rgb=(.7 .4 .4)} Face 22109 8186 8085 16262 {rgb=(.7 .4 .4)} Face 22110 8085 8156 16262 {rgb=(.7 .4 .4)} Face 22111 8156 8229 16262 {rgb=(.7 .4 .4)} Face 22112 8229 8186 16262 {rgb=(.7 .4 .4)} Face 22113 8328 8291 16263 {rgb=(.7 .4 .4)} Face 22114 8291 8333 16263 {rgb=(.7 .4 .4)} Face 22115 8333 8364 16263 {rgb=(.7 .4 .4)} Face 22116 8364 8328 16263 {rgb=(.7 .4 .4)} Face 22117 8046 8268 16264 {rgb=(.7 .4 .4)} Face 22118 8268 8310 16264 {rgb=(.7 .4 .4)} Face 22119 8310 8122 16264 {rgb=(.7 .4 .4)} Face 22120 8122 8046 16264 {rgb=(.7 .4 .4)} Face 22121 7325 7722 16265 {rgb=(.7 .4 .4)} Face 22122 7722 7775 16265 {rgb=(.7 .4 .4)} Face 22123 7775 7363 16265 {rgb=(.7 .4 .4)} Face 22124 7363 7325 16265 {rgb=(.7 .4 .4)} Face 22125 6216 6791 16266 {rgb=(.7 .4 .4)} Face 22126 6791 6816 16266 {rgb=(.7 .4 .4)} Face 22127 6816 6255 16266 {rgb=(.7 .4 .4)} Face 22128 6255 6216 16266 {rgb=(.7 .4 .4)} Face 22129 5355 5781 16267 {rgb=(.7 .4 .4)} Face 22130 5781 5788 16267 {rgb=(.7 .4 .4)} Face 22131 5788 5345 16267 {rgb=(.7 .4 .4)} Face 22132 5345 5355 16267 {rgb=(.7 .4 .4)} Face 22133 4320 4930 16268 {rgb=(.7 .4 .4)} Face 22134 4930 4902 16268 {rgb=(.7 .4 .4)} Face 22135 4902 4300 16268 {rgb=(.7 .4 .4)} Face 22136 4300 4320 16268 {rgb=(.7 .4 .4)} Face 22137 4300 4301 16269 {rgb=(.7 .4 .4)} Face 22138 4301 3756 16269 {rgb=(.7 .4 .4)} Face 22139 3756 3755 16269 {rgb=(.7 .4 .4)} Face 22140 3755 4300 16269 {rgb=(.7 .4 .4)} Face 22141 5345 5344 16270 {rgb=(.7 .4 .4)} Face 22142 5344 4901 16270 {rgb=(.7 .4 .4)} Face 22143 4901 4902 16270 {rgb=(.7 .4 .4)} Face 22144 4902 5345 16270 {rgb=(.7 .4 .4)} Face 22145 6255 6254 16271 {rgb=(.7 .4 .4)} Face 22146 6254 5787 16271 {rgb=(.7 .4 .4)} Face 22147 5787 5788 16271 {rgb=(.7 .4 .4)} Face 22148 5788 6255 16271 {rgb=(.7 .4 .4)} Face 22149 7363 7362 16272 {rgb=(.7 .4 .4)} Face 22150 7362 6815 16272 {rgb=(.7 .4 .4)} Face 22151 6815 6816 16272 {rgb=(.7 .4 .4)} Face 22152 6816 7363 16272 {rgb=(.7 .4 .4)} Face 22153 8122 8112 16273 {rgb=(.7 .4 .4)} Face 22154 8112 7771 16273 {rgb=(.7 .4 .4)} Face 22155 7771 7775 16273 {rgb=(.7 .4 .4)} Face 22156 7775 8122 16273 {rgb=(.7 .4 .4)} Face 22157 8364 8362 16274 {rgb=(.7 .4 .4)} Face 22158 8362 8306 16274 {rgb=(.7 .4 .4)} Face 22159 8306 8310 16274 {rgb=(.7 .4 .4)} Face 22160 8310 8364 16274 {rgb=(.7 .4 .4)} Face 22161 8229 8226 16275 {rgb=(.7 .4 .4)} Face 22162 8226 8331 16275 {rgb=(.7 .4 .4)} Face 22163 8331 8333 16275 {rgb=(.7 .4 .4)} Face 22164 8333 8229 16275 {rgb=(.7 .4 .4)} Face 22165 8103 8101 16276 {rgb=(.7 .4 .4)} Face 22166 8101 8152 16276 {rgb=(.7 .4 .4)} Face 22167 8152 8156 16276 {rgb=(.7 .4 .4)} Face 22168 8156 8103 16276 {rgb=(.7 .4 .4)} Face 22169 7882 7880 16277 {rgb=(.7 .4 .4)} Face 22170 7880 7996 16277 {rgb=(.7 .4 .4)} Face 22171 7996 7999 16277 {rgb=(.7 .4 .4)} Face 22172 7999 7882 16277 {rgb=(.7 .4 .4)} Face 22173 7598 7597 16278 {rgb=(.7 .4 .4)} Face 22174 7597 7748 16278 {rgb=(.7 .4 .4)} Face 22175 7748 7750 16278 {rgb=(.7 .4 .4)} Face 22176 7750 7598 16278 {rgb=(.7 .4 .4)} Face 22177 6716 6715 16279 {rgb=(.7 .4 .4)} Face 22178 6715 7252 16279 {rgb=(.7 .4 .4)} Face 22179 7252 7253 16279 {rgb=(.7 .4 .4)} Face 22180 7253 6716 16279 {rgb=(.7 .4 .4)} Face 22181 5732 5731 16280 {rgb=(.7 .4 .4)} Face 22182 5731 6106 16280 {rgb=(.7 .4 .4)} Face 22183 6106 6107 16280 {rgb=(.7 .4 .4)} Face 22184 6107 5732 16280 {rgb=(.7 .4 .4)} Face 22185 4976 4975 16281 {rgb=(.7 .4 .4)} Face 22186 4975 5349 16281 {rgb=(.7 .4 .4)} Face 22187 5349 5350 16281 {rgb=(.7 .4 .4)} Face 22188 5350 4976 16281 {rgb=(.7 .4 .4)} Face 22189 3873 3874 16282 {rgb=(.7 .4 .4)} Face 22190 3874 4378 16282 {rgb=(.7 .4 .4)} Face 22191 4378 4379 16282 {rgb=(.7 .4 .4)} Face 22192 4379 3873 16282 {rgb=(.7 .4 .4)} Face 22193 3383 3385 16283 {rgb=(.7 .4 .4)} Face 22194 3385 3535 16283 {rgb=(.7 .4 .4)} Face 22195 3535 3532 16283 {rgb=(.7 .4 .4)} Face 22196 3532 3383 16283 {rgb=(.7 .4 .4)} Face 22197 3136 3137 16284 {rgb=(.7 .4 .4)} Face 22198 3137 3247 16284 {rgb=(.7 .4 .4)} Face 22199 3247 3242 16284 {rgb=(.7 .4 .4)} Face 22200 3242 3136 16284 {rgb=(.7 .4 .4)} Face 22201 3007 3011 16285 {rgb=(.7 .4 .4)} Face 22202 3011 3060 16285 {rgb=(.7 .4 .4)} Face 22203 3060 3054 16285 {rgb=(.7 .4 .4)} Face 22204 3054 3007 16285 {rgb=(.7 .4 .4)} Face 22205 2792 2796 16286 {rgb=(.7 .4 .4)} Face 22206 2796 2902 16286 {rgb=(.7 .4 .4)} Face 22207 2902 2896 16286 {rgb=(.7 .4 .4)} Face 22208 2896 2792 16286 {rgb=(.7 .4 .4)} Face 22209 2811 2815 16287 {rgb=(.7 .4 .4)} Face 22210 2815 2762 16287 {rgb=(.7 .4 .4)} Face 22211 2762 2757 16287 {rgb=(.7 .4 .4)} Face 22212 2757 2811 16287 {rgb=(.7 .4 .4)} Face 22213 3361 3362 16288 {rgb=(.7 .4 .4)} Face 22214 3362 3040 16288 {rgb=(.7 .4 .4)} Face 22215 3040 3036 16288 {rgb=(.7 .4 .4)} Face 22216 3036 3361 16288 {rgb=(.7 .4 .4)} Face 22217 4394 4320 16289 {rgb=(.7 .4 .4)} Face 22218 4320 3816 16289 {rgb=(.7 .4 .4)} Face 22219 3816 3903 16289 {rgb=(.7 .4 .4)} Face 22220 3903 4394 16289 {rgb=(.7 .4 .4)} Face 22221 5373 5355 16290 {rgb=(.7 .4 .4)} Face 22222 5355 4930 16290 {rgb=(.7 .4 .4)} Face 22223 4930 4973 16290 {rgb=(.7 .4 .4)} Face 22224 4973 5373 16290 {rgb=(.7 .4 .4)} Face 22225 6163 6216 16291 {rgb=(.7 .4 .4)} Face 22226 6216 5781 16291 {rgb=(.7 .4 .4)} Face 22227 5781 5767 16291 {rgb=(.7 .4 .4)} Face 22228 5767 6163 16291 {rgb=(.7 .4 .4)} Face 22229 7242 7325 16292 {rgb=(.7 .4 .4)} Face 22230 7325 6791 16292 {rgb=(.7 .4 .4)} Face 22231 6791 6741 16292 {rgb=(.7 .4 .4)} Face 22232 6741 7242 16292 {rgb=(.7 .4 .4)} Face 22233 7943 8046 16293 {rgb=(.7 .4 .4)} Face 22234 8046 7722 16293 {rgb=(.7 .4 .4)} Face 22235 7722 7641 16293 {rgb=(.7 .4 .4)} Face 22236 7641 7943 16293 {rgb=(.7 .4 .4)} Face 22237 8241 8328 16294 {rgb=(.7 .4 .4)} Face 22238 8328 8268 16294 {rgb=(.7 .4 .4)} Face 22239 8268 8185 16294 {rgb=(.7 .4 .4)} Face 22240 8185 8241 16294 {rgb=(.7 .4 .4)} Face 22241 8054 8186 16295 {rgb=(.7 .4 .4)} Face 22242 8186 8291 16295 {rgb=(.7 .4 .4)} Face 22243 8291 8202 16295 {rgb=(.7 .4 .4)} Face 22244 8202 8054 16295 {rgb=(.7 .4 .4)} Face 22245 7912 8032 16296 {rgb=(.7 .4 .4)} Face 22246 8032 8085 16296 {rgb=(.7 .4 .4)} Face 22247 8085 7959 16296 {rgb=(.7 .4 .4)} Face 22248 7959 7912 16296 {rgb=(.7 .4 .4)} Face 22249 7731 7837 16297 {rgb=(.7 .4 .4)} Face 22250 7837 7947 16297 {rgb=(.7 .4 .4)} Face 22251 7947 7843 16297 {rgb=(.7 .4 .4)} Face 22252 7843 7731 16297 {rgb=(.7 .4 .4)} Face 22253 7458 7543 16298 {rgb=(.7 .4 .4)} Face 22254 7543 7699 16298 {rgb=(.7 .4 .4)} Face 22255 7699 7607 16298 {rgb=(.7 .4 .4)} Face 22256 7607 7458 16298 {rgb=(.7 .4 .4)} Face 22257 6623 6685 16299 {rgb=(.7 .4 .4)} Face 22258 6685 7191 16299 {rgb=(.7 .4 .4)} Face 22259 7191 7125 16299 {rgb=(.7 .4 .4)} Face 22260 7125 6623 16299 {rgb=(.7 .4 .4)} Face 22261 5715 5724 16300 {rgb=(.7 .4 .4)} Face 22262 5724 6095 16300 {rgb=(.7 .4 .4)} Face 22263 6095 6055 16300 {rgb=(.7 .4 .4)} Face 22264 6055 5715 16300 {rgb=(.7 .4 .4)} Face 22265 5038 4994 16301 {rgb=(.7 .4 .4)} Face 22266 4994 5363 16301 {rgb=(.7 .4 .4)} Face 22267 5363 5381 16301 {rgb=(.7 .4 .4)} Face 22268 5381 5038 16301 {rgb=(.7 .4 .4)} Face 22269 3998 3912 16302 {rgb=(.7 .4 .4)} Face 22270 3912 4413 16302 {rgb=(.7 .4 .4)} Face 22271 4413 4482 16302 {rgb=(.7 .4 .4)} Face 22272 4482 3998 16302 {rgb=(.7 .4 .4)} Face 22273 3530 3427 16303 {rgb=(.7 .4 .4)} Face 22274 3427 3569 16303 {rgb=(.7 .4 .4)} Face 22275 3569 3663 16303 {rgb=(.7 .4 .4)} Face 22276 3663 3530 16303 {rgb=(.7 .4 .4)} Face 22277 3294 3188 16304 {rgb=(.7 .4 .4)} Face 22278 3188 3298 16304 {rgb=(.7 .4 .4)} Face 22279 3298 3406 16304 {rgb=(.7 .4 .4)} Face 22280 3406 3294 16304 {rgb=(.7 .4 .4)} Face 22281 3175 3071 16305 {rgb=(.7 .4 .4)} Face 22282 3071 3109 16305 {rgb=(.7 .4 .4)} Face 22283 3109 3209 16305 {rgb=(.7 .4 .4)} Face 22284 3209 3175 16305 {rgb=(.7 .4 .4)} Face 22285 2933 2832 16306 {rgb=(.7 .4 .4)} Face 22286 2832 2969 16306 {rgb=(.7 .4 .4)} Face 22287 2969 3088 16306 {rgb=(.7 .4 .4)} Face 22288 3088 2933 16306 {rgb=(.7 .4 .4)} Face 22289 2978 2854 16307 {rgb=(.7 .4 .4)} Face 22290 2854 2799 16307 {rgb=(.7 .4 .4)} Face 22291 2799 2880 16307 {rgb=(.7 .4 .4)} Face 22292 2880 2978 16307 {rgb=(.7 .4 .4)} Face 22293 3506 3409 16308 {rgb=(.7 .4 .4)} Face 22294 3409 3092 16308 {rgb=(.7 .4 .4)} Face 22295 3092 3206 16308 {rgb=(.7 .4 .4)} Face 22296 3206 3506 16308 {rgb=(.7 .4 .4)} Face 22297 4508 4445 16309 {rgb=(.7 .4 .4)} Face 22298 4445 3976 16309 {rgb=(.7 .4 .4)} Face 22299 3976 4031 16309 {rgb=(.7 .4 .4)} Face 22300 4031 4508 16309 {rgb=(.7 .4 .4)} Face 22301 5383 5389 16310 {rgb=(.7 .4 .4)} Face 22302 5389 5007 16310 {rgb=(.7 .4 .4)} Face 22303 5007 5027 16310 {rgb=(.7 .4 .4)} Face 22304 5027 5383 16310 {rgb=(.7 .4 .4)} Face 22305 6101 6138 16311 {rgb=(.7 .4 .4)} Face 22306 6138 5749 16311 {rgb=(.7 .4 .4)} Face 22307 5749 5737 16311 {rgb=(.7 .4 .4)} Face 22308 5737 6101 16311 {rgb=(.7 .4 .4)} Face 22309 7140 7179 16312 {rgb=(.7 .4 .4)} Face 22310 7179 6705 16312 {rgb=(.7 .4 .4)} Face 22311 6705 6656 16312 {rgb=(.7 .4 .4)} Face 22312 6656 7140 16312 {rgb=(.7 .4 .4)} Face 22313 7839 7884 16313 {rgb=(.7 .4 .4)} Face 22314 7884 7585 16313 {rgb=(.7 .4 .4)} Face 22315 7585 7535 16313 {rgb=(.7 .4 .4)} Face 22316 7535 7839 16313 {rgb=(.7 .4 .4)} Face 22317 8114 8177 16314 {rgb=(.7 .4 .4)} Face 22318 8177 8120 16314 {rgb=(.7 .4 .4)} Face 22319 8120 8044 16314 {rgb=(.7 .4 .4)} Face 22320 8044 8114 16314 {rgb=(.7 .4 .4)} Face 22321 7873 7952 16315 {rgb=(.7 .4 .4)} Face 22322 7952 8105 16315 {rgb=(.7 .4 .4)} Face 22323 8105 8006 16315 {rgb=(.7 .4 .4)} Face 22324 8006 7873 16315 {rgb=(.7 .4 .4)} Face 22325 7727 7828 16316 {rgb=(.7 .4 .4)} Face 22326 7828 7867 16316 {rgb=(.7 .4 .4)} Face 22327 7867 7781 16316 {rgb=(.7 .4 .4)} Face 22328 7781 7727 16316 {rgb=(.7 .4 .4)} Face 22329 7537 7637 16317 {rgb=(.7 .4 .4)} Face 22330 7637 7743 16317 {rgb=(.7 .4 .4)} Face 22331 7743 7643 16317 {rgb=(.7 .4 .4)} Face 22332 7643 7537 16317 {rgb=(.7 .4 .4)} Face 22333 7295 7381 16318 {rgb=(.7 .4 .4)} Face 22334 7381 7507 16318 {rgb=(.7 .4 .4)} Face 22335 7507 7431 16318 {rgb=(.7 .4 .4)} Face 22336 7431 7295 16318 {rgb=(.7 .4 .4)} Face 22337 6484 6566 16319 {rgb=(.7 .4 .4)} Face 22338 6566 7041 16319 {rgb=(.7 .4 .4)} Face 22339 7041 6981 16319 {rgb=(.7 .4 .4)} Face 22340 6981 6484 16319 {rgb=(.7 .4 .4)} Face 22341 5682 5699 16320 {rgb=(.7 .4 .4)} Face 22342 5699 6023 16320 {rgb=(.7 .4 .4)} Face 22343 6023 5990 16320 {rgb=(.7 .4 .4)} Face 22344 5990 5682 16320 {rgb=(.7 .4 .4)} Face 22345 5083 5069 16321 {rgb=(.7 .4 .4)} Face 22346 5069 5394 16321 {rgb=(.7 .4 .4)} Face 22347 5394 5390 16321 {rgb=(.7 .4 .4)} Face 22348 5390 5083 16321 {rgb=(.7 .4 .4)} Face 22349 4092 4056 16322 {rgb=(.7 .4 .4)} Face 22350 4056 4556 16322 {rgb=(.7 .4 .4)} Face 22351 4556 4619 16322 {rgb=(.7 .4 .4)} Face 22352 4619 4092 16322 {rgb=(.7 .4 .4)} Face 22353 3632 3589 16323 {rgb=(.7 .4 .4)} Face 22354 3589 3729 16323 {rgb=(.7 .4 .4)} Face 22355 3729 3785 16323 {rgb=(.7 .4 .4)} Face 22356 3785 3632 16323 {rgb=(.7 .4 .4)} Face 22357 3394 3356 16324 {rgb=(.7 .4 .4)} Face 22358 3356 3470 16324 {rgb=(.7 .4 .4)} Face 22359 3470 3507 16324 {rgb=(.7 .4 .4)} Face 22360 3507 3394 16324 {rgb=(.7 .4 .4)} Face 22361 3254 3223 16325 {rgb=(.7 .4 .4)} Face 22362 3223 3272 16325 {rgb=(.7 .4 .4)} Face 22363 3272 3305 16325 {rgb=(.7 .4 .4)} Face 22364 3305 3254 16325 {rgb=(.7 .4 .4)} Face 22365 3033 3006 16326 {rgb=(.7 .4 .4)} Face 22366 3006 3142 16326 {rgb=(.7 .4 .4)} Face 22367 3142 3169 16326 {rgb=(.7 .4 .4)} Face 22368 3169 3033 16326 {rgb=(.7 .4 .4)} Face 22369 3112 3061 16327 {rgb=(.7 .4 .4)} Face 22370 3061 2938 16327 {rgb=(.7 .4 .4)} Face 22371 2938 2987 16327 {rgb=(.7 .4 .4)} Face 22372 2987 3112 16327 {rgb=(.7 .4 .4)} Face 22373 3649 3581 16328 {rgb=(.7 .4 .4)} Face 22374 3581 3290 16328 {rgb=(.7 .4 .4)} Face 22375 3290 3355 16328 {rgb=(.7 .4 .4)} Face 22376 3355 3649 16328 {rgb=(.7 .4 .4)} Face 22377 4522 4547 16329 {rgb=(.7 .4 .4)} Face 22378 4547 4070 16329 {rgb=(.7 .4 .4)} Face 22379 4070 4080 16329 {rgb=(.7 .4 .4)} Face 22380 4080 4522 16329 {rgb=(.7 .4 .4)} Face 22381 5359 5372 16330 {rgb=(.7 .4 .4)} Face 22382 5372 5030 16330 {rgb=(.7 .4 .4)} Face 22383 5030 5013 16330 {rgb=(.7 .4 .4)} Face 22384 5013 5359 16330 {rgb=(.7 .4 .4)} Face 22385 6070 6092 16331 {rgb=(.7 .4 .4)} Face 22386 6092 5722 16331 {rgb=(.7 .4 .4)} Face 22387 5722 5703 16331 {rgb=(.7 .4 .4)} Face 22388 5703 6070 16331 {rgb=(.7 .4 .4)} Face 22389 7097 7112 16332 {rgb=(.7 .4 .4)} Face 22390 7112 6639 16332 {rgb=(.7 .4 .4)} Face 22391 6639 6631 16332 {rgb=(.7 .4 .4)} Face 22392 6631 7097 16332 {rgb=(.7 .4 .4)} Face 22393 7800 7821 16333 {rgb=(.7 .4 .4)} Face 22394 7821 7513 16333 {rgb=(.7 .4 .4)} Face 22395 7513 7495 16333 {rgb=(.7 .4 .4)} Face 22396 7495 7800 16333 {rgb=(.7 .4 .4)} Face 22397 8078 8096 16334 {rgb=(.7 .4 .4)} Face 22398 8096 8029 16334 {rgb=(.7 .4 .4)} Face 22399 8029 8009 16334 {rgb=(.7 .4 .4)} Face 22400 8009 8078 16334 {rgb=(.7 .4 .4)} Face 22401 7847 7852 16335 {rgb=(.7 .4 .4)} Face 22402 7852 7987 16335 {rgb=(.7 .4 .4)} Face 22403 7987 7979 16335 {rgb=(.7 .4 .4)} Face 22404 7979 7847 16335 {rgb=(.7 .4 .4)} Face 22405 7679 7690 16336 {rgb=(.7 .4 .4)} Face 22406 7690 7751 16336 {rgb=(.7 .4 .4)} Face 22407 7751 7741 16336 {rgb=(.7 .4 .4)} Face 22408 7741 7679 16336 {rgb=(.7 .4 .4)} Face 22409 7474 7486 16337 {rgb=(.7 .4 .4)} Face 22410 7486 7610 16337 {rgb=(.7 .4 .4)} Face 22411 7610 7594 16337 {rgb=(.7 .4 .4)} Face 22412 7594 7474 16337 {rgb=(.7 .4 .4)} Face 22413 7181 7209 16338 {rgb=(.7 .4 .4)} Face 22414 7209 7367 16338 {rgb=(.7 .4 .4)} Face 22415 7367 7354 16338 {rgb=(.7 .4 .4)} Face 22416 7354 7181 16338 {rgb=(.7 .4 .4)} Face 22417 6393 6427 16339 {rgb=(.7 .4 .4)} Face 22418 6427 6940 16339 {rgb=(.7 .4 .4)} Face 22419 6940 6916 16339 {rgb=(.7 .4 .4)} Face 22420 6916 6393 16339 {rgb=(.7 .4 .4)} Face 22421 5653 5670 16340 {rgb=(.7 .4 .4)} Face 22422 5670 5964 16340 {rgb=(.7 .4 .4)} Face 22423 5964 5949 16340 {rgb=(.7 .4 .4)} Face 22424 5949 5653 16340 {rgb=(.7 .4 .4)} Face 22425 5055 5084 16341 {rgb=(.7 .4 .4)} Face 22426 5084 5377 16341 {rgb=(.7 .4 .4)} Face 22427 5377 5361 16341 {rgb=(.7 .4 .4)} Face 22428 5361 5055 16341 {rgb=(.7 .4 .4)} Face 22429 4061 4090 16342 {rgb=(.7 .4 .4)} Face 22430 4090 4618 16342 {rgb=(.7 .4 .4)} Face 22431 4618 4560 16342 {rgb=(.7 .4 .4)} Face 22432 4560 4061 16342 {rgb=(.7 .4 .4)} Face 22433 3586 3624 16343 {rgb=(.7 .4 .4)} Face 22434 3624 3770 16343 {rgb=(.7 .4 .4)} Face 22435 3770 3739 16343 {rgb=(.7 .4 .4)} Face 22436 3739 3586 16343 {rgb=(.7 .4 .4)} Face 22437 3335 3374 16344 {rgb=(.7 .4 .4)} Face 22438 3374 3493 16344 {rgb=(.7 .4 .4)} Face 22439 3493 3457 16344 {rgb=(.7 .4 .4)} Face 22440 3457 3335 16344 {rgb=(.7 .4 .4)} Face 22441 3199 3229 16345 {rgb=(.7 .4 .4)} Face 22442 3229 3285 16345 {rgb=(.7 .4 .4)} Face 22443 3285 3251 16345 {rgb=(.7 .4 .4)} Face 22444 3251 3199 16345 {rgb=(.7 .4 .4)} Face 22445 3001 3018 16346 {rgb=(.7 .4 .4)} Face 22446 3018 3145 16346 {rgb=(.7 .4 .4)} Face 22447 3145 3122 16346 {rgb=(.7 .4 .4)} Face 22448 3122 3001 16346 {rgb=(.7 .4 .4)} Face 22449 3178 3141 16347 {rgb=(.7 .4 .4)} Face 22450 3141 2991 16347 {rgb=(.7 .4 .4)} Face 22451 2991 3004 16347 {rgb=(.7 .4 .4)} Face 22452 3004 3178 16347 {rgb=(.7 .4 .4)} Face 22453 3718 3684 16348 {rgb=(.7 .4 .4)} Face 22454 3684 3404 16348 {rgb=(.7 .4 .4)} Face 22455 3404 3431 16348 {rgb=(.7 .4 .4)} Face 22456 3431 3718 16348 {rgb=(.7 .4 .4)} Face 22457 3941 3943 16349 {rgb=(.7 .4 .4)} Face 22458 3943 4074 16349 {rgb=(.7 .4 .4)} Face 22459 4074 4076 16349 {rgb=(.7 .4 .4)} Face 22460 4076 3941 16349 {rgb=(.7 .4 .4)} Face 22461 4212 4209 16350 {rgb=(.7 .4 .4)} Face 22462 4209 4314 16350 {rgb=(.7 .4 .4)} Face 22463 4314 4317 16350 {rgb=(.7 .4 .4)} Face 22464 4317 4212 16350 {rgb=(.7 .4 .4)} Face 22465 4425 4422 16351 {rgb=(.7 .4 .4)} Face 22466 4422 4576 16351 {rgb=(.7 .4 .4)} Face 22467 4576 4584 16351 {rgb=(.7 .4 .4)} Face 22468 4584 4425 16351 {rgb=(.7 .4 .4)} Face 22469 4667 4660 16352 {rgb=(.7 .4 .4)} Face 22470 4660 4641 16352 {rgb=(.7 .4 .4)} Face 22471 4641 4650 16352 {rgb=(.7 .4 .4)} Face 22472 4650 4667 16352 {rgb=(.7 .4 .4)} Face 22473 4443 4439 16353 {rgb=(.7 .4 .4)} Face 22474 4439 4208 16353 {rgb=(.7 .4 .4)} Face 22475 4208 4210 16353 {rgb=(.7 .4 .4)} Face 22476 4210 4443 16353 {rgb=(.7 .4 .4)} Face 22477 3980 3983 16354 {rgb=(.7 .4 .4)} Face 22478 3983 3725 16354 {rgb=(.7 .4 .4)} Face 22479 3725 3719 16354 {rgb=(.7 .4 .4)} Face 22480 3719 3980 16354 {rgb=(.7 .4 .4)} Face 22481 3560 3563 16355 {rgb=(.7 .4 .4)} Face 22482 3563 3458 16355 {rgb=(.7 .4 .4)} Face 22483 3458 3447 16355 {rgb=(.7 .4 .4)} Face 22484 3447 3560 16355 {rgb=(.7 .4 .4)} Face 22485 3354 3366 16356 {rgb=(.7 .4 .4)} Face 22486 3366 3277 16356 {rgb=(.7 .4 .4)} Face 22487 3277 3270 16356 {rgb=(.7 .4 .4)} Face 22488 3270 3354 16356 {rgb=(.7 .4 .4)} Face 22489 3236 3241 16357 {rgb=(.7 .4 .4)} Face 22490 3241 3259 16357 {rgb=(.7 .4 .4)} Face 22491 3259 3253 16357 {rgb=(.7 .4 .4)} Face 22492 3253 3236 16357 {rgb=(.7 .4 .4)} Face 22493 3276 3284 16358 {rgb=(.7 .4 .4)} Face 22494 3284 3316 16358 {rgb=(.7 .4 .4)} Face 22495 3316 3312 16358 {rgb=(.7 .4 .4)} Face 22496 3312 3276 16358 {rgb=(.7 .4 .4)} Face 22497 3395 3401 16359 {rgb=(.7 .4 .4)} Face 22498 3401 3523 16359 {rgb=(.7 .4 .4)} Face 22499 3523 3514 16359 {rgb=(.7 .4 .4)} Face 22500 3514 3395 16359 {rgb=(.7 .4 .4)} Face 22501 3787 3775 16360 {rgb=(.7 .4 .4)} Face 22502 3775 3636 16360 {rgb=(.7 .4 .4)} Face 22503 3636 3641 16360 {rgb=(.7 .4 .4)} Face 22504 3641 3787 16360 {rgb=(.7 .4 .4)} Face 22505 7528 7519 16361 {rgb=(.7 .4 .4)} Face 22506 7519 7645 16361 {rgb=(.7 .4 .4)} Face 22507 7645 7651 16361 {rgb=(.7 .4 .4)} Face 22508 7651 7528 16361 {rgb=(.7 .4 .4)} Face 22509 7732 7725 16362 {rgb=(.7 .4 .4)} Face 22510 7725 7761 16362 {rgb=(.7 .4 .4)} Face 22511 7761 7770 16362 {rgb=(.7 .4 .4)} Face 22512 7770 7732 16362 {rgb=(.7 .4 .4)} Face 22513 7791 7787 16363 {rgb=(.7 .4 .4)} Face 22514 7787 7802 16363 {rgb=(.7 .4 .4)} Face 22515 7802 7808 16363 {rgb=(.7 .4 .4)} Face 22516 7808 7791 16363 {rgb=(.7 .4 .4)} Face 22517 7776 7768 16364 {rgb=(.7 .4 .4)} Face 22518 7768 7675 16364 {rgb=(.7 .4 .4)} Face 22519 7675 7686 16364 {rgb=(.7 .4 .4)} Face 22520 7686 7776 16364 {rgb=(.7 .4 .4)} Face 22521 7599 7584 16365 {rgb=(.7 .4 .4)} Face 22522 7584 7478 16365 {rgb=(.7 .4 .4)} Face 22523 7478 7482 16365 {rgb=(.7 .4 .4)} Face 22524 7482 7599 16365 {rgb=(.7 .4 .4)} Face 22525 7323 7317 16366 {rgb=(.7 .4 .4)} Face 22526 7317 7057 16366 {rgb=(.7 .4 .4)} Face 22527 7057 7060 16366 {rgb=(.7 .4 .4)} Face 22528 7060 7323 16366 {rgb=(.7 .4 .4)} Face 22529 6835 6837 16367 {rgb=(.7 .4 .4)} Face 22530 6837 6600 16367 {rgb=(.7 .4 .4)} Face 22531 6600 6596 16367 {rgb=(.7 .4 .4)} Face 22532 6596 6835 16367 {rgb=(.7 .4 .4)} Face 22533 6397 6406 16368 {rgb=(.7 .4 .4)} Face 22534 6406 6386 16368 {rgb=(.7 .4 .4)} Face 22535 6386 6379 16368 {rgb=(.7 .4 .4)} Face 22536 6379 6397 16368 {rgb=(.7 .4 .4)} Face 22537 6461 6469 16369 {rgb=(.7 .4 .4)} Face 22538 6469 6615 16369 {rgb=(.7 .4 .4)} Face 22539 6615 6613 16369 {rgb=(.7 .4 .4)} Face 22540 6613 6461 16369 {rgb=(.7 .4 .4)} Face 22541 6726 6730 16370 {rgb=(.7 .4 .4)} Face 22542 6730 6836 16370 {rgb=(.7 .4 .4)} Face 22543 6836 6833 16370 {rgb=(.7 .4 .4)} Face 22544 6833 6726 16370 {rgb=(.7 .4 .4)} Face 22545 6965 6967 16371 {rgb=(.7 .4 .4)} Face 22546 6967 7098 16371 {rgb=(.7 .4 .4)} Face 22547 7098 7100 16371 {rgb=(.7 .4 .4)} Face 22548 7100 6965 16371 {rgb=(.7 .4 .4)} Face 22549 7404 7409 16372 {rgb=(.7 .4 .4)} Face 22550 7409 7271 16372 {rgb=(.7 .4 .4)} Face 22551 7271 7260 16372 {rgb=(.7 .4 .4)} Face 22552 7260 7404 16372 {rgb=(.7 .4 .4)} Face 22553 7792 7967 16373 {rgb=(.7 .4 .4)} Face 22554 7967 8161 16373 {rgb=(.7 .4 .4)} Face 22555 8161 7951 16373 {rgb=(.7 .4 .4)} Face 22556 7951 7792 16373 {rgb=(.7 .4 .4)} Face 22557 8735 8705 16374 {rgb=(.7 .4 .4)} Face 22558 8705 8927 16374 {rgb=(.7 .4 .4)} Face 22559 8927 8965 16374 {rgb=(.7 .4 .4)} Face 22560 8965 8735 16374 {rgb=(.7 .4 .4)} Face 22561 8803 8769 16375 {rgb=(.7 .4 .4)} Face 22562 8769 8993 16375 {rgb=(.7 .4 .4)} Face 22563 8993 9018 16375 {rgb=(.7 .4 .4)} Face 22564 9018 8803 16375 {rgb=(.7 .4 .4)} Face 22565 8932 8889 16376 {rgb=(.7 .4 .4)} Face 22566 8889 9101 16376 {rgb=(.7 .4 .4)} Face 22567 9101 9172 16376 {rgb=(.7 .4 .4)} Face 22568 9172 8932 16376 {rgb=(.7 .4 .4)} Face 22569 8903 8923 16377 {rgb=(.7 .4 .4)} Face 22570 8923 9130 16377 {rgb=(.7 .4 .4)} Face 22571 9130 9036 16377 {rgb=(.7 .4 .4)} Face 22572 9036 8903 16377 {rgb=(.7 .4 .4)} Face 22573 8433 8378 16378 {rgb=(.7 .4 .4)} Face 22574 8378 8455 16378 {rgb=(.7 .4 .4)} Face 22575 8455 8506 16378 {rgb=(.7 .4 .4)} Face 22576 8506 8433 16378 {rgb=(.7 .4 .4)} Face 22577 8335 8304 16379 {rgb=(.7 .4 .4)} Face 22578 8304 8406 16379 {rgb=(.7 .4 .4)} Face 22579 8406 8425 16379 {rgb=(.7 .4 .4)} Face 22580 8425 8335 16379 {rgb=(.7 .4 .4)} Face 22581 8275 8264 16380 {rgb=(.7 .4 .4)} Face 22582 8264 8372 16380 {rgb=(.7 .4 .4)} Face 22583 8372 8385 16380 {rgb=(.7 .4 .4)} Face 22584 8385 8275 16380 {rgb=(.7 .4 .4)} Face 22585 8276 8329 16381 {rgb=(.7 .4 .4)} Face 22586 8329 8423 16381 {rgb=(.7 .4 .4)} Face 22587 8423 8394 16381 {rgb=(.7 .4 .4)} Face 22588 8394 8276 16381 {rgb=(.7 .4 .4)} Face 22589 8783 8848 16382 {rgb=(.7 .4 .4)} Face 22590 8848 8961 16382 {rgb=(.7 .4 .4)} Face 22591 8961 8846 16382 {rgb=(.7 .4 .4)} Face 22592 8846 8783 16382 {rgb=(.7 .4 .4)} Face 22593 8396 8487 16383 {rgb=(.7 .4 .4)} Face 22594 8487 8510 16383 {rgb=(.7 .4 .4)} Face 22595 8510 8456 16383 {rgb=(.7 .4 .4)} Face 22596 8456 8396 16383 {rgb=(.7 .4 .4)} Face 22597 8688 8686 16384 {rgb=(.7 .4 .4)} Face 22598 8686 8890 16384 {rgb=(.7 .4 .4)} Face 22599 8890 8905 16384 {rgb=(.7 .4 .4)} Face 22600 8905 8688 16384 {rgb=(.7 .4 .4)} Face 22601 8273 8317 16385 {rgb=(.7 .4 .4)} Face 22602 8317 8374 16385 {rgb=(.7 .4 .4)} Face 22603 8374 8344 16385 {rgb=(.7 .4 .4)} Face 22604 8344 8273 16385 {rgb=(.7 .4 .4)} Face 22605 8668 8658 16386 {rgb=(.7 .4 .4)} Face 22606 8658 8824 16386 {rgb=(.7 .4 .4)} Face 22607 8824 8826 16386 {rgb=(.7 .4 .4)} Face 22608 8826 8668 16386 {rgb=(.7 .4 .4)} Face 22609 8681 8670 16387 {rgb=(.7 .4 .4)} Face 22610 8670 8830 16387 {rgb=(.7 .4 .4)} Face 22611 8830 8869 16387 {rgb=(.7 .4 .4)} Face 22612 8869 8681 16387 {rgb=(.7 .4 .4)} Face 22613 8908 8771 16388 {rgb=(.7 .4 .4)} Face 22614 8771 8907 16388 {rgb=(.7 .4 .4)} Face 22615 8907 8952 16388 {rgb=(.7 .4 .4)} Face 22616 8952 8908 16388 {rgb=(.7 .4 .4)} Face 22617 8750 8714 16389 {rgb=(.7 .4 .4)} Face 22618 8714 8747 16389 {rgb=(.7 .4 .4)} Face 22619 8747 8780 16389 {rgb=(.7 .4 .4)} Face 22620 8780 8750 16389 {rgb=(.7 .4 .4)} Face 22621 8664 8636 16390 {rgb=(.7 .4 .4)} Face 22622 8636 8672 16390 {rgb=(.7 .4 .4)} Face 22623 8672 8713 16390 {rgb=(.7 .4 .4)} Face 22624 8713 8664 16390 {rgb=(.7 .4 .4)} Face 22625 8596 8573 16391 {rgb=(.7 .4 .4)} Face 22626 8573 8597 16391 {rgb=(.7 .4 .4)} Face 22627 8597 8631 16391 {rgb=(.7 .4 .4)} Face 22628 8631 8596 16391 {rgb=(.7 .4 .4)} Face 22629 8609 8626 16392 {rgb=(.7 .4 .4)} Face 22630 8626 8720 16392 {rgb=(.7 .4 .4)} Face 22631 8720 8683 16392 {rgb=(.7 .4 .4)} Face 22632 8683 8609 16392 {rgb=(.7 .4 .4)} Face 22633 8764 8798 16393 {rgb=(.7 .4 .4)} Face 22634 8798 8853 16393 {rgb=(.7 .4 .4)} Face 22635 8853 8813 16393 {rgb=(.7 .4 .4)} Face 22636 8813 8764 16393 {rgb=(.7 .4 .4)} Face 22637 8818 8858 16394 {rgb=(.7 .4 .4)} Face 22638 8858 8808 16394 {rgb=(.7 .4 .4)} Face 22639 8808 8773 16394 {rgb=(.7 .4 .4)} Face 22640 8773 8818 16394 {rgb=(.7 .4 .4)} Face 22641 8728 8765 16395 {rgb=(.7 .4 .4)} Face 22642 8765 8718 16395 {rgb=(.7 .4 .4)} Face 22643 8718 8675 16395 {rgb=(.7 .4 .4)} Face 22644 8675 8728 16395 {rgb=(.7 .4 .4)} Face 22645 8884 8839 16396 {rgb=(.7 .4 .4)} Face 22646 8839 8721 16396 {rgb=(.7 .4 .4)} Face 22647 8721 8758 16396 {rgb=(.7 .4 .4)} Face 22648 8758 8884 16396 {rgb=(.7 .4 .4)} Face 22649 8894 8871 16397 {rgb=(.7 .4 .4)} Face 22650 8871 8896 16397 {rgb=(.7 .4 .4)} Face 22651 8896 8922 16397 {rgb=(.7 .4 .4)} Face 22652 8922 8894 16397 {rgb=(.7 .4 .4)} Face 22653 8840 8823 16398 {rgb=(.7 .4 .4)} Face 22654 8823 8835 16398 {rgb=(.7 .4 .4)} Face 22655 8835 8872 16398 {rgb=(.7 .4 .4)} Face 22656 8872 8840 16398 {rgb=(.7 .4 .4)} Face 22657 8410 8399 16399 {rgb=(.7 .4 .4)} Face 22658 8399 8630 16399 {rgb=(.7 .4 .4)} Face 22659 8630 8646 16399 {rgb=(.7 .4 .4)} Face 22660 8646 8410 16399 {rgb=(.7 .4 .4)} Face 22661 7470 7468 16400 {rgb=(.7 .4 .4)} Face 22662 7468 7986 16400 {rgb=(.7 .4 .4)} Face 22663 7986 7992 16400 {rgb=(.7 .4 .4)} Face 22664 7992 7470 16400 {rgb=(.7 .4 .4)} Face 22665 7142 7141 16401 {rgb=(.7 .4 .4)} Face 22666 7141 6999 16401 {rgb=(.7 .4 .4)} Face 22667 6999 7001 16401 {rgb=(.7 .4 .4)} Face 22668 7001 7142 16401 {rgb=(.7 .4 .4)} Face 22669 6641 6638 16402 {rgb=(.7 .4 .4)} Face 22670 6638 5867 16402 {rgb=(.7 .4 .4)} Face 22671 5867 5868 16402 {rgb=(.7 .4 .4)} Face 22672 5868 6641 16402 {rgb=(.7 .4 .4)} Face 22673 8755 8786 16403 {rgb=(.7 .4 .4)} Face 22674 8786 8767 16403 {rgb=(.7 .4 .4)} Face 22675 8767 8745 16403 {rgb=(.7 .4 .4)} Face 22676 8745 8755 16403 {rgb=(.7 .4 .4)} Face 22677 8558 8581 16404 {rgb=(.7 .4 .4)} Face 22678 8581 8572 16404 {rgb=(.7 .4 .4)} Face 22679 8572 8552 16404 {rgb=(.7 .4 .4)} Face 22680 8552 8558 16404 {rgb=(.7 .4 .4)} Face 22681 8650 8676 16405 {rgb=(.7 .4 .4)} Face 22682 8676 8645 16405 {rgb=(.7 .4 .4)} Face 22683 8645 8644 16405 {rgb=(.7 .4 .4)} Face 22684 8644 8650 16405 {rgb=(.7 .4 .4)} Face 22685 7175 7469 16406 {rgb=(.7 .4 .4)} Face 22686 7469 7464 16406 {rgb=(.7 .4 .4)} Face 22687 7464 7177 16406 {rgb=(.7 .4 .4)} Face 22688 7177 7175 16406 {rgb=(.7 .4 .4)} Face 22689 6894 6529 16407 {rgb=(.7 .4 .4)} Face 22690 6529 6520 16407 {rgb=(.7 .4 .4)} Face 22691 6520 6890 16407 {rgb=(.7 .4 .4)} Face 22692 6890 6894 16407 {rgb=(.7 .4 .4)} Face 22693 6881 6506 16408 {rgb=(.7 .4 .4)} Face 22694 6506 6503 16408 {rgb=(.7 .4 .4)} Face 22695 6503 6873 16408 {rgb=(.7 .4 .4)} Face 22696 6873 6881 16408 {rgb=(.7 .4 .4)} Face 22697 7466 7170 16409 {rgb=(.7 .4 .4)} Face 22698 7170 7159 16409 {rgb=(.7 .4 .4)} Face 22699 7159 7461 16409 {rgb=(.7 .4 .4)} Face 22700 7461 7466 16409 {rgb=(.7 .4 .4)} Face 22701 6044 6052 16410 {rgb=(.7 .4 .4)} Face 22702 6052 6300 16410 {rgb=(.7 .4 .4)} Face 22703 6300 6292 16410 {rgb=(.7 .4 .4)} Face 22704 6292 6044 16410 {rgb=(.7 .4 .4)} Face 22705 5625 5628 16411 {rgb=(.7 .4 .4)} Face 22706 5628 5850 16411 {rgb=(.7 .4 .4)} Face 22707 5850 5846 16411 {rgb=(.7 .4 .4)} Face 22708 5846 5625 16411 {rgb=(.7 .4 .4)} Face 22709 8001 7871 16412 {rgb=(.7 .4 .4)} Face 22710 7871 7845 16412 {rgb=(.7 .4 .4)} Face 22711 7845 7975 16412 {rgb=(.7 .4 .4)} Face 22712 7975 8001 16412 {rgb=(.7 .4 .4)} Face 22713 8066 7925 16413 {rgb=(.7 .4 .4)} Face 22714 7925 7900 16413 {rgb=(.7 .4 .4)} Face 22715 7900 8033 16413 {rgb=(.7 .4 .4)} Face 22716 8033 8066 16413 {rgb=(.7 .4 .4)} Face 22717 8208 8080 16414 {rgb=(.7 .4 .4)} Face 22718 8080 7981 16414 {rgb=(.7 .4 .4)} Face 22719 7981 8141 16414 {rgb=(.7 .4 .4)} Face 22720 8141 8208 16414 {rgb=(.7 .4 .4)} Face 22721 5671 5668 16415 {rgb=(.7 .4 .4)} Face 22722 5668 5955 16415 {rgb=(.7 .4 .4)} Face 22723 5955 5961 16415 {rgb=(.7 .4 .4)} Face 22724 5961 5671 16415 {rgb=(.7 .4 .4)} Face 22725 6740 6733 16416 {rgb=(.7 .4 .4)} Face 22726 6733 6921 16416 {rgb=(.7 .4 .4)} Face 22727 6921 6927 16416 {rgb=(.7 .4 .4)} Face 22728 6927 6740 16416 {rgb=(.7 .4 .4)} Face 22729 7080 7074 16417 {rgb=(.7 .4 .4)} Face 22730 7074 7222 16417 {rgb=(.7 .4 .4)} Face 22731 7222 7243 16417 {rgb=(.7 .4 .4)} Face 22732 7243 7080 16417 {rgb=(.7 .4 .4)} Face 22733 7592 7629 16418 {rgb=(.7 .4 .4)} Face 22734 7629 7710 16418 {rgb=(.7 .4 .4)} Face 22735 7710 7663 16418 {rgb=(.7 .4 .4)} Face 22736 7663 7592 16418 {rgb=(.7 .4 .4)} Face 22737 7419 7439 16419 {rgb=(.7 .4 .4)} Face 22738 7439 7521 16419 {rgb=(.7 .4 .4)} Face 22739 7521 7501 16419 {rgb=(.7 .4 .4)} Face 22740 7501 7419 16419 {rgb=(.7 .4 .4)} Face 22741 7095 7102 16420 {rgb=(.7 .4 .4)} Face 22742 7102 7307 16420 {rgb=(.7 .4 .4)} Face 22743 7307 7289 16420 {rgb=(.7 .4 .4)} Face 22744 7289 7095 16420 {rgb=(.7 .4 .4)} Face 22745 6682 6692 16421 {rgb=(.7 .4 .4)} Face 22746 6692 6917 16421 {rgb=(.7 .4 .4)} Face 22747 6917 6913 16421 {rgb=(.7 .4 .4)} Face 22748 6913 6682 16421 {rgb=(.7 .4 .4)} Face 22749 6108 6122 16422 {rgb=(.7 .4 .4)} Face 22750 6122 6395 16422 {rgb=(.7 .4 .4)} Face 22751 6395 6384 16422 {rgb=(.7 .4 .4)} Face 22752 6384 6108 16422 {rgb=(.7 .4 .4)} Face 22753 5635 5637 16423 {rgb=(.7 .4 .4)} Face 22754 5637 5879 16423 {rgb=(.7 .4 .4)} Face 22755 5879 5875 16423 {rgb=(.7 .4 .4)} Face 22756 5875 5635 16423 {rgb=(.7 .4 .4)} Face 22757 6220 6512 16424 {rgb=(.7 .4 .4)} Face 22758 6512 6524 16424 {rgb=(.7 .4 .4)} Face 22759 6524 6227 16424 {rgb=(.7 .4 .4)} Face 22760 6227 6220 16424 {rgb=(.7 .4 .4)} Face 22761 7374 7480 16425 {rgb=(.7 .4 .4)} Face 22762 7480 7473 16425 {rgb=(.7 .4 .4)} Face 22763 7473 7382 16425 {rgb=(.7 .4 .4)} Face 22764 7382 7374 16425 {rgb=(.7 .4 .4)} Face 22765 7709 7626 16426 {rgb=(.7 .4 .4)} Face 22766 7626 7601 16426 {rgb=(.7 .4 .4)} Face 22767 7601 7665 16426 {rgb=(.7 .4 .4)} Face 22768 7665 7709 16426 {rgb=(.7 .4 .4)} Face 22769 6697 6706 16427 {rgb=(.7 .4 .4)} Face 22770 6706 6578 16427 {rgb=(.7 .4 .4)} Face 22771 6578 6571 16427 {rgb=(.7 .4 .4)} Face 22772 6571 6697 16427 {rgb=(.7 .4 .4)} Face 22773 6243 6244 16428 {rgb=(.7 .4 .4)} Face 22774 6244 6369 16428 {rgb=(.7 .4 .4)} Face 22775 6369 6383 16428 {rgb=(.7 .4 .4)} Face 22776 6383 6243 16428 {rgb=(.7 .4 .4)} Face 22777 7475 7296 16429 {rgb=(.7 .4 .4)} Face 22778 7296 7282 16429 {rgb=(.7 .4 .4)} Face 22779 7282 7453 16429 {rgb=(.7 .4 .4)} Face 22780 7453 7475 16429 {rgb=(.7 .4 .4)} Face 22781 7073 6866 16430 {rgb=(.7 .4 .4)} Face 22782 6866 6854 16430 {rgb=(.7 .4 .4)} Face 22783 6854 7051 16430 {rgb=(.7 .4 .4)} Face 22784 7051 7073 16430 {rgb=(.7 .4 .4)} Face 22785 6502 6495 16431 {rgb=(.7 .4 .4)} Face 22786 6495 6452 16431 {rgb=(.7 .4 .4)} Face 22787 6452 6463 16431 {rgb=(.7 .4 .4)} Face 22788 6463 6502 16431 {rgb=(.7 .4 .4)} Face 22789 6563 6560 16432 {rgb=(.7 .4 .4)} Face 22790 6560 6537 16432 {rgb=(.7 .4 .4)} Face 22791 6537 6541 16432 {rgb=(.7 .4 .4)} Face 22792 6541 6563 16432 {rgb=(.7 .4 .4)} Face 22793 6445 6530 16433 {rgb=(.7 .4 .4)} Face 22794 6530 6528 16433 {rgb=(.7 .4 .4)} Face 22795 6528 6442 16433 {rgb=(.7 .4 .4)} Face 22796 6442 6445 16433 {rgb=(.7 .4 .4)} Face 22797 6343 6218 16434 {rgb=(.7 .4 .4)} Face 22798 6218 6195 16434 {rgb=(.7 .4 .4)} Face 22799 6195 6334 16434 {rgb=(.7 .4 .4)} Face 22800 6334 6343 16434 {rgb=(.7 .4 .4)} Face 22801 6418 6368 16435 {rgb=(.7 .4 .4)} Face 22802 6368 6359 16435 {rgb=(.7 .4 .4)} Face 22803 6359 6396 16435 {rgb=(.7 .4 .4)} Face 22804 6396 6418 16435 {rgb=(.7 .4 .4)} Face 22805 6340 6296 16436 {rgb=(.7 .4 .4)} Face 22806 6296 6354 16436 {rgb=(.7 .4 .4)} Face 22807 6354 6387 16436 {rgb=(.7 .4 .4)} Face 22808 6387 6340 16436 {rgb=(.7 .4 .4)} Face 22809 6075 6053 16437 {rgb=(.7 .4 .4)} Face 22810 6053 6177 16437 {rgb=(.7 .4 .4)} Face 22811 6177 6219 16437 {rgb=(.7 .4 .4)} Face 22812 6219 6075 16437 {rgb=(.7 .4 .4)} Face 22813 5891 5889 16438 {rgb=(.7 .4 .4)} Face 22814 5889 5958 16438 {rgb=(.7 .4 .4)} Face 22815 5958 5972 16438 {rgb=(.7 .4 .4)} Face 22816 5972 5891 16438 {rgb=(.7 .4 .4)} Face 22817 5759 5782 16439 {rgb=(.7 .4 .4)} Face 22818 5782 5847 16439 {rgb=(.7 .4 .4)} Face 22819 5847 5836 16439 {rgb=(.7 .4 .4)} Face 22820 5836 5759 16439 {rgb=(.7 .4 .4)} Face 22821 5738 5773 16440 {rgb=(.7 .4 .4)} Face 22822 5773 5762 16440 {rgb=(.7 .4 .4)} Face 22823 5762 5727 16440 {rgb=(.7 .4 .4)} Face 22824 5727 5738 16440 {rgb=(.7 .4 .4)} Face 22825 6883 6728 16441 {rgb=(.7 .4 .4)} Face 22826 6728 6738 16441 {rgb=(.7 .4 .4)} Face 22827 6738 6920 16441 {rgb=(.7 .4 .4)} Face 22828 6920 6883 16441 {rgb=(.7 .4 .4)} Face 22829 6739 6627 16442 {rgb=(.7 .4 .4)} Face 22830 6627 6694 16442 {rgb=(.7 .4 .4)} Face 22831 6694 6814 16442 {rgb=(.7 .4 .4)} Face 22832 6814 6739 16442 {rgb=(.7 .4 .4)} Face 22833 6599 6558 16443 {rgb=(.7 .4 .4)} Face 22834 6558 6592 16443 {rgb=(.7 .4 .4)} Face 22835 6592 6663 16443 {rgb=(.7 .4 .4)} Face 22836 6663 6599 16443 {rgb=(.7 .4 .4)} Face 22837 6575 6552 16444 {rgb=(.7 .4 .4)} Face 22838 6552 6543 16444 {rgb=(.7 .4 .4)} Face 22839 6543 6567 16444 {rgb=(.7 .4 .4)} Face 22840 6567 6575 16444 {rgb=(.7 .4 .4)} Face 22841 6456 6433 16445 {rgb=(.7 .4 .4)} Face 22842 6433 6513 16445 {rgb=(.7 .4 .4)} Face 22843 6513 6540 16445 {rgb=(.7 .4 .4)} Face 22844 6540 6456 16445 {rgb=(.7 .4 .4)} Face 22845 6185 6164 16446 {rgb=(.7 .4 .4)} Face 22846 6164 6316 16446 {rgb=(.7 .4 .4)} Face 22847 6316 6338 16446 {rgb=(.7 .4 .4)} Face 22848 6338 6185 16446 {rgb=(.7 .4 .4)} Face 22849 6090 6074 16447 {rgb=(.7 .4 .4)} Face 22850 6074 6098 16447 {rgb=(.7 .4 .4)} Face 22851 6098 6112 16447 {rgb=(.7 .4 .4)} Face 22852 6112 6090 16447 {rgb=(.7 .4 .4)} Face 22853 5934 5928 16448 {rgb=(.7 .4 .4)} Face 22854 5928 6021 16448 {rgb=(.7 .4 .4)} Face 22855 6021 6029 16448 {rgb=(.7 .4 .4)} Face 22856 6029 5934 16448 {rgb=(.7 .4 .4)} Face 22857 5610 5607 16449 {rgb=(.7 .4 .4)} Face 22858 5607 5801 16449 {rgb=(.7 .4 .4)} Face 22859 5801 5806 16449 {rgb=(.7 .4 .4)} Face 22860 5806 5610 16449 {rgb=(.7 .4 .4)} Face 22861 6022 6042 16450 {rgb=(.7 .4 .4)} Face 22862 6042 6110 16450 {rgb=(.7 .4 .4)} Face 22863 6110 6099 16450 {rgb=(.7 .4 .4)} Face 22864 6099 6022 16450 {rgb=(.7 .4 .4)} Face 22865 5873 5885 16451 {rgb=(.7 .4 .4)} Face 22866 5885 5970 16451 {rgb=(.7 .4 .4)} Face 22867 5970 5947 16451 {rgb=(.7 .4 .4)} Face 22868 5947 5873 16451 {rgb=(.7 .4 .4)} Face 22869 5594 5595 16452 {rgb=(.7 .4 .4)} Face 22870 5595 5766 16452 {rgb=(.7 .4 .4)} Face 22871 5766 5758 16452 {rgb=(.7 .4 .4)} Face 22872 5758 5594 16452 {rgb=(.7 .4 .4)} Face 22873 6444 6441 16453 {rgb=(.7 .4 .4)} Face 22874 6441 6509 16453 {rgb=(.7 .4 .4)} Face 22875 6509 6485 16453 {rgb=(.7 .4 .4)} Face 22876 6485 6444 16453 {rgb=(.7 .4 .4)} Face 22877 5937 5878 16454 {rgb=(.7 .4 .4)} Face 22878 5878 5870 16454 {rgb=(.7 .4 .4)} Face 22879 5870 5910 16454 {rgb=(.7 .4 .4)} Face 22880 5910 5937 16454 {rgb=(.7 .4 .4)} Face 22881 6281 6312 16455 {rgb=(.7 .4 .4)} Face 22882 6312 6263 16455 {rgb=(.7 .4 .4)} Face 22883 6263 6207 16455 {rgb=(.7 .4 .4)} Face 22884 6207 6281 16455 {rgb=(.7 .4 .4)} Face 22885 6001 6116 16456 {rgb=(.7 .4 .4)} Face 22886 6116 6151 16456 {rgb=(.7 .4 .4)} Face 22887 6151 6027 16456 {rgb=(.7 .4 .4)} Face 22888 6027 6001 16456 {rgb=(.7 .4 .4)} Face 22889 7820 7915 16457 {rgb=(.7 .4 .4)} Face 22890 7915 7918 16457 {rgb=(.7 .4 .4)} Face 22891 7918 7817 16457 {rgb=(.7 .4 .4)} Face 22892 7817 7820 16457 {rgb=(.7 .4 .4)} Face 22893 7823 7923 16458 {rgb=(.7 .4 .4)} Face 22894 7923 7932 16458 {rgb=(.7 .4 .4)} Face 22895 7932 7829 16458 {rgb=(.7 .4 .4)} Face 22896 7829 7823 16458 {rgb=(.7 .4 .4)} Face 22897 7568 7695 16459 {rgb=(.7 .4 .4)} Face 22898 7695 7693 16459 {rgb=(.7 .4 .4)} Face 22899 7693 7570 16459 {rgb=(.7 .4 .4)} Face 22900 7570 7568 16459 {rgb=(.7 .4 .4)} Face 22901 7573 7700 16460 {rgb=(.7 .4 .4)} Face 22902 7700 7708 16460 {rgb=(.7 .4 .4)} Face 22903 7708 7576 16460 {rgb=(.7 .4 .4)} Face 22904 7576 7573 16460 {rgb=(.7 .4 .4)} Face 22905 7224 7425 16461 {rgb=(.7 .4 .4)} Face 22906 7425 7428 16461 {rgb=(.7 .4 .4)} Face 22907 7428 7216 16461 {rgb=(.7 .4 .4)} Face 22908 7216 7224 16461 {rgb=(.7 .4 .4)} Face 22909 7221 7430 16462 {rgb=(.7 .4 .4)} Face 22910 7430 7434 16462 {rgb=(.7 .4 .4)} Face 22911 7434 7226 16462 {rgb=(.7 .4 .4)} Face 22912 7226 7221 16462 {rgb=(.7 .4 .4)} Face 22913 6939 7062 16463 {rgb=(.7 .4 .4)} Face 22914 7062 7055 16463 {rgb=(.7 .4 .4)} Face 22915 7055 6934 16463 {rgb=(.7 .4 .4)} Face 22916 6934 6939 16463 {rgb=(.7 .4 .4)} Face 22917 6930 7053 16464 {rgb=(.7 .4 .4)} Face 22918 7053 7058 16464 {rgb=(.7 .4 .4)} Face 22919 7058 6929 16464 {rgb=(.7 .4 .4)} Face 22920 6929 6930 16464 {rgb=(.7 .4 .4)} Face 22921 6670 6797 16465 {rgb=(.7 .4 .4)} Face 22922 6797 6792 16465 {rgb=(.7 .4 .4)} Face 22923 6792 6668 16465 {rgb=(.7 .4 .4)} Face 22924 6668 6670 16465 {rgb=(.7 .4 .4)} Face 22925 6664 6790 16466 {rgb=(.7 .4 .4)} Face 22926 6790 6788 16466 {rgb=(.7 .4 .4)} Face 22927 6788 6659 16466 {rgb=(.7 .4 .4)} Face 22928 6659 6664 16466 {rgb=(.7 .4 .4)} Face 22929 6348 6523 16467 {rgb=(.7 .4 .4)} Face 22930 6523 6515 16467 {rgb=(.7 .4 .4)} Face 22931 6515 6336 16467 {rgb=(.7 .4 .4)} Face 22932 6336 6348 16467 {rgb=(.7 .4 .4)} Face 22933 6323 6505 16468 {rgb=(.7 .4 .4)} Face 22934 6505 6501 16468 {rgb=(.7 .4 .4)} Face 22935 6501 6318 16468 {rgb=(.7 .4 .4)} Face 22936 6318 6323 16468 {rgb=(.7 .4 .4)} Face 22937 7236 7248 16469 {rgb=(.7 .4 .4)} Face 22938 7248 7433 16469 {rgb=(.7 .4 .4)} Face 22939 7433 7427 16469 {rgb=(.7 .4 .4)} Face 22940 7427 7236 16469 {rgb=(.7 .4 .4)} Face 22941 7662 7683 16470 {rgb=(.7 .4 .4)} Face 22942 7683 7557 16470 {rgb=(.7 .4 .4)} Face 22943 7557 7539 16470 {rgb=(.7 .4 .4)} Face 22944 7539 7662 16470 {rgb=(.7 .4 .4)} Face 22945 7795 7846 16471 {rgb=(.7 .4 .4)} Face 22946 7846 7785 16471 {rgb=(.7 .4 .4)} Face 22947 7785 7752 16471 {rgb=(.7 .4 .4)} Face 22948 7752 7795 16471 {rgb=(.7 .4 .4)} Face 22949 7840 7886 16472 {rgb=(.7 .4 .4)} Face 22950 7886 7879 16472 {rgb=(.7 .4 .4)} Face 22951 7879 7827 16472 {rgb=(.7 .4 .4)} Face 22952 7827 7840 16472 {rgb=(.7 .4 .4)} Face 22953 7730 7804 16473 {rgb=(.7 .4 .4)} Face 22954 7804 7861 16473 {rgb=(.7 .4 .4)} Face 22955 7861 7807 16473 {rgb=(.7 .4 .4)} Face 22956 7807 7730 16473 {rgb=(.7 .4 .4)} Face 22957 7511 7559 16474 {rgb=(.7 .4 .4)} Face 22958 7559 7707 16474 {rgb=(.7 .4 .4)} Face 22959 7707 7635 16474 {rgb=(.7 .4 .4)} Face 22960 7635 7511 16474 {rgb=(.7 .4 .4)} Face 22961 7077 7107 16475 {rgb=(.7 .4 .4)} Face 22962 7107 7384 16475 {rgb=(.7 .4 .4)} Face 22963 7384 7339 16475 {rgb=(.7 .4 .4)} Face 22964 7339 7077 16475 {rgb=(.7 .4 .4)} Face 22965 6590 6569 16476 {rgb=(.7 .4 .4)} Face 22966 6569 6855 16476 {rgb=(.7 .4 .4)} Face 22967 6855 6846 16476 {rgb=(.7 .4 .4)} Face 22968 6846 6590 16476 {rgb=(.7 .4 .4)} Face 22969 6361 6327 16477 {rgb=(.7 .4 .4)} Face 22970 6327 6344 16477 {rgb=(.7 .4 .4)} Face 22971 6344 6372 16477 {rgb=(.7 .4 .4)} Face 22972 6372 6361 16477 {rgb=(.7 .4 .4)} Face 22973 6601 6585 16478 {rgb=(.7 .4 .4)} Face 22974 6585 6403 16478 {rgb=(.7 .4 .4)} Face 22975 6403 6440 16478 {rgb=(.7 .4 .4)} Face 22976 6440 6601 16478 {rgb=(.7 .4 .4)} Face 22977 6827 6819 16479 {rgb=(.7 .4 .4)} Face 22978 6819 6709 16479 {rgb=(.7 .4 .4)} Face 22979 6709 6723 16479 {rgb=(.7 .4 .4)} Face 22980 6723 6827 16479 {rgb=(.7 .4 .4)} Face 22981 7096 7089 16480 {rgb=(.7 .4 .4)} Face 22982 7089 6961 16480 {rgb=(.7 .4 .4)} Face 22983 6961 6962 16480 {rgb=(.7 .4 .4)} Face 22984 6962 7096 16480 {rgb=(.7 .4 .4)} Face 22985 7059 7056 16481 {rgb=(.7 .4 .4)} Face 22986 7056 7316 16481 {rgb=(.7 .4 .4)} Face 22987 7316 7319 16481 {rgb=(.7 .4 .4)} Face 22988 7319 7059 16481 {rgb=(.7 .4 .4)} Face 22989 7479 7477 16482 {rgb=(.7 .4 .4)} Face 22990 7477 7581 16482 {rgb=(.7 .4 .4)} Face 22991 7581 7586 16482 {rgb=(.7 .4 .4)} Face 22992 7586 7479 16482 {rgb=(.7 .4 .4)} Face 22993 7678 7671 16483 {rgb=(.7 .4 .4)} Face 22994 7671 7762 16483 {rgb=(.7 .4 .4)} Face 22995 7762 7764 16483 {rgb=(.7 .4 .4)} Face 22996 7764 7678 16483 {rgb=(.7 .4 .4)} Face 22997 7799 7798 16484 {rgb=(.7 .4 .4)} Face 22998 7798 7783 16484 {rgb=(.7 .4 .4)} Face 22999 7783 7784 16484 {rgb=(.7 .4 .4)} Face 23000 7784 7799 16484 {rgb=(.7 .4 .4)} Face 23001 7763 7759 16485 {rgb=(.7 .4 .4)} Face 23002 7759 7723 16485 {rgb=(.7 .4 .4)} Face 23003 7723 7728 16485 {rgb=(.7 .4 .4)} Face 23004 7728 7763 16485 {rgb=(.7 .4 .4)} Face 23005 7648 7644 16486 {rgb=(.7 .4 .4)} Face 23006 7644 7517 16486 {rgb=(.7 .4 .4)} Face 23007 7517 7522 16486 {rgb=(.7 .4 .4)} Face 23008 7522 7648 16486 {rgb=(.7 .4 .4)} Face 23009 7406 7401 16487 {rgb=(.7 .4 .4)} Face 23010 7401 7256 16487 {rgb=(.7 .4 .4)} Face 23011 7256 7264 16487 {rgb=(.7 .4 .4)} Face 23012 7264 7406 16487 {rgb=(.7 .4 .4)} Face 23013 7101 7099 16488 {rgb=(.7 .4 .4)} Face 23014 7099 6968 16488 {rgb=(.7 .4 .4)} Face 23015 6968 6970 16488 {rgb=(.7 .4 .4)} Face 23016 6970 7101 16488 {rgb=(.7 .4 .4)} Face 23017 6840 6841 16489 {rgb=(.7 .4 .4)} Face 23018 6841 6732 16489 {rgb=(.7 .4 .4)} Face 23019 6732 6731 16489 {rgb=(.7 .4 .4)} Face 23020 6731 6840 16489 {rgb=(.7 .4 .4)} Face 23021 6619 6620 16490 {rgb=(.7 .4 .4)} Face 23022 6620 6478 16490 {rgb=(.7 .4 .4)} Face 23023 6478 6477 16490 {rgb=(.7 .4 .4)} Face 23024 6477 6619 16490 {rgb=(.7 .4 .4)} Face 23025 6389 6390 16491 {rgb=(.7 .4 .4)} Face 23026 6390 6415 16491 {rgb=(.7 .4 .4)} Face 23027 6415 6414 16491 {rgb=(.7 .4 .4)} Face 23028 6414 6389 16491 {rgb=(.7 .4 .4)} Face 23029 6603 6604 16492 {rgb=(.7 .4 .4)} Face 23030 6604 6839 16492 {rgb=(.7 .4 .4)} Face 23031 6839 6838 16492 {rgb=(.7 .4 .4)} Face 23032 6838 6603 16492 {rgb=(.7 .4 .4)} Face 23033 7806 7883 16493 {rgb=(.7 .4 .4)} Face 23034 7883 7906 16493 {rgb=(.7 .4 .4)} Face 23035 7906 7814 16493 {rgb=(.7 .4 .4)} Face 23036 7814 7806 16493 {rgb=(.7 .4 .4)} Face 23037 6871 6554 16494 {rgb=(.7 .4 .4)} Face 23038 6554 6545 16494 {rgb=(.7 .4 .4)} Face 23039 6545 6889 16494 {rgb=(.7 .4 .4)} Face 23040 6889 6871 16494 {rgb=(.7 .4 .4)} Face 23041 7348 7169 16495 {rgb=(.7 .4 .4)} Face 23042 7169 7022 16495 {rgb=(.7 .4 .4)} Face 23043 7022 7467 16495 {rgb=(.7 .4 .4)} Face 23044 7467 7348 16495 {rgb=(.7 .4 .4)} Face 23045 7788 7836 16496 {rgb=(.7 .4 .4)} Face 23046 7836 7670 16496 {rgb=(.7 .4 .4)} Face 23047 7670 7654 16496 {rgb=(.7 .4 .4)} Face 23048 7654 7788 16496 {rgb=(.7 .4 .4)} Face 23049 7664 7579 16497 {rgb=(.7 .4 .4)} Face 23050 7579 7460 16497 {rgb=(.7 .4 .4)} Face 23051 7460 7493 16497 {rgb=(.7 .4 .4)} Face 23052 7493 7664 16497 {rgb=(.7 .4 .4)} Face 23053 8731 8775 16498 {rgb=(.7 .4 .4)} Face 23054 8775 8734 16498 {rgb=(.7 .4 .4)} Face 23055 8734 8693 16498 {rgb=(.7 .4 .4)} Face 23056 8693 8731 16498 {rgb=(.7 .4 .4)} Face 23057 8652 8682 16499 {rgb=(.7 .4 .4)} Face 23058 8682 8642 16499 {rgb=(.7 .4 .4)} Face 23059 8642 8606 16499 {rgb=(.7 .4 .4)} Face 23060 8606 8652 16499 {rgb=(.7 .4 .4)} Face 23061 8544 8574 16500 {rgb=(.7 .4 .4)} Face 23062 8574 8618 16500 {rgb=(.7 .4 .4)} Face 23063 8618 8607 16500 {rgb=(.7 .4 .4)} Face 23064 8607 8544 16500 {rgb=(.7 .4 .4)} Face 23065 8521 8525 16501 {rgb=(.7 .4 .4)} Face 23066 8525 8601 16501 {rgb=(.7 .4 .4)} Face 23067 8601 8594 16501 {rgb=(.7 .4 .4)} Face 23068 8594 8521 16501 {rgb=(.7 .4 .4)} Face 23069 8580 8647 16502 {rgb=(.7 .4 .4)} Face 23070 8647 8797 16502 {rgb=(.7 .4 .4)} Face 23071 8797 8724 16502 {rgb=(.7 .4 .4)} Face 23072 8724 8580 16502 {rgb=(.7 .4 .4)} Face 23073 8820 8864 16503 {rgb=(.7 .4 .4)} Face 23074 8864 8856 16503 {rgb=(.7 .4 .4)} Face 23075 8856 8851 16503 {rgb=(.7 .4 .4)} Face 23076 8851 8820 16503 {rgb=(.7 .4 .4)} Face 23077 8887 8877 16504 {rgb=(.7 .4 .4)} Face 23078 8877 8854 16504 {rgb=(.7 .4 .4)} Face 23079 8854 8862 16504 {rgb=(.7 .4 .4)} Face 23080 8862 8887 16504 {rgb=(.7 .4 .4)} Face 23081 8867 8831 16505 {rgb=(.7 .4 .4)} Face 23082 8831 8811 16505 {rgb=(.7 .4 .4)} Face 23083 8811 8806 16505 {rgb=(.7 .4 .4)} Face 23084 8806 8867 16505 {rgb=(.7 .4 .4)} Face 23085 8666 8738 16506 {rgb=(.7 .4 .4)} Face 23086 8738 8779 16506 {rgb=(.7 .4 .4)} Face 23087 8779 8752 16506 {rgb=(.7 .4 .4)} Face 23088 8752 8666 16506 {rgb=(.7 .4 .4)} Face 23089 7849 7948 16507 {rgb=(.7 .4 .4)} Face 23090 7948 8123 16507 {rgb=(.7 .4 .4)} Face 23091 8123 8010 16507 {rgb=(.7 .4 .4)} Face 23092 8010 7849 16507 {rgb=(.7 .4 .4)} Face 23093 8167 8231 16508 {rgb=(.7 .4 .4)} Face 23094 8231 8284 16508 {rgb=(.7 .4 .4)} Face 23095 8284 8205 16508 {rgb=(.7 .4 .4)} Face 23096 8205 8167 16508 {rgb=(.7 .4 .4)} Face 23097 8270 8353 16509 {rgb=(.7 .4 .4)} Face 23098 8353 8427 16509 {rgb=(.7 .4 .4)} Face 23099 8427 8376 16509 {rgb=(.7 .4 .4)} Face 23100 8376 8270 16509 {rgb=(.7 .4 .4)} Face 23101 8458 8500 16510 {rgb=(.7 .4 .4)} Face 23102 8500 8585 16510 {rgb=(.7 .4 .4)} Face 23103 8585 8535 16510 {rgb=(.7 .4 .4)} Face 23104 8535 8458 16510 {rgb=(.7 .4 .4)} Face 23105 8698 8730 16511 {rgb=(.7 .4 .4)} Face 23106 8730 8665 16511 {rgb=(.7 .4 .4)} Face 23107 8665 8619 16511 {rgb=(.7 .4 .4)} Face 23108 8619 8698 16511 {rgb=(.7 .4 .4)} Face 23109 8566 8622 16512 {rgb=(.7 .4 .4)} Face 23110 8622 8584 16512 {rgb=(.7 .4 .4)} Face 23111 8584 8505 16512 {rgb=(.7 .4 .4)} Face 23112 8505 8566 16512 {rgb=(.7 .4 .4)} Face 23113 8454 8481 16513 {rgb=(.7 .4 .4)} Face 23114 8481 8564 16513 {rgb=(.7 .4 .4)} Face 23115 8564 8547 16513 {rgb=(.7 .4 .4)} Face 23116 8547 8454 16513 {rgb=(.7 .4 .4)} Face 23117 8445 8530 16514 {rgb=(.7 .4 .4)} Face 23118 8530 8514 16514 {rgb=(.7 .4 .4)} Face 23119 8514 8444 16514 {rgb=(.7 .4 .4)} Face 23120 8444 8445 16514 {rgb=(.7 .4 .4)} Face 23121 8473 8452 16515 {rgb=(.7 .4 .4)} Face 23122 8452 8509 16515 {rgb=(.7 .4 .4)} Face 23123 8509 8519 16515 {rgb=(.7 .4 .4)} Face 23124 8519 8473 16515 {rgb=(.7 .4 .4)} Face 23125 8065 8201 16516 {rgb=(.7 .4 .4)} Face 23126 8201 8256 16516 {rgb=(.7 .4 .4)} Face 23127 8256 8197 16516 {rgb=(.7 .4 .4)} Face 23128 8197 8065 16516 {rgb=(.7 .4 .4)} Face 23129 8708 8654 16517 {rgb=(.7 .4 .4)} Face 23130 8654 8637 16517 {rgb=(.7 .4 .4)} Face 23131 8637 8697 16517 {rgb=(.7 .4 .4)} Face 23132 8697 8708 16517 {rgb=(.7 .4 .4)} Face 23133 8633 8673 16518 {rgb=(.7 .4 .4)} Face 23134 8673 8684 16518 {rgb=(.7 .4 .4)} Face 23135 8684 8696 16518 {rgb=(.7 .4 .4)} Face 23136 8696 8633 16518 {rgb=(.7 .4 .4)} Face 23137 8649 8592 16519 {rgb=(.7 .4 .4)} Face 23138 8592 8605 16519 {rgb=(.7 .4 .4)} Face 23139 8605 8674 16519 {rgb=(.7 .4 .4)} Face 23140 8674 8649 16519 {rgb=(.7 .4 .4)} Face 23141 8550 8513 16520 {rgb=(.7 .4 .4)} Face 23142 8513 8518 16520 {rgb=(.7 .4 .4)} Face 23143 8518 8560 16520 {rgb=(.7 .4 .4)} Face 23144 8560 8550 16520 {rgb=(.7 .4 .4)} Face 23145 8472 8422 16521 {rgb=(.7 .4 .4)} Face 23146 8422 8429 16521 {rgb=(.7 .4 .4)} Face 23147 8429 8477 16521 {rgb=(.7 .4 .4)} Face 23148 8477 8472 16521 {rgb=(.7 .4 .4)} Face 23149 8345 8239 16522 {rgb=(.7 .4 .4)} Face 23150 8239 8225 16522 {rgb=(.7 .4 .4)} Face 23151 8225 8347 16522 {rgb=(.7 .4 .4)} Face 23152 8347 8345 16522 {rgb=(.7 .4 .4)} Face 23153 8763 8787 16523 {rgb=(.7 .4 .4)} Face 23154 8787 8743 16523 {rgb=(.7 .4 .4)} Face 23155 8743 8723 16523 {rgb=(.7 .4 .4)} Face 23156 8723 8763 16523 {rgb=(.7 .4 .4)} Face 23157 8759 8680 16524 {rgb=(.7 .4 .4)} Face 23158 8680 8569 16524 {rgb=(.7 .4 .4)} Face 23159 8569 8678 16524 {rgb=(.7 .4 .4)} Face 23160 8678 8759 16524 {rgb=(.7 .4 .4)} Face 23161 8657 8661 16525 {rgb=(.7 .4 .4)} Face 23162 8661 8575 16525 {rgb=(.7 .4 .4)} Face 23163 8575 8593 16525 {rgb=(.7 .4 .4)} Face 23164 8593 8657 16525 {rgb=(.7 .4 .4)} Face 23165 8590 8464 16526 {rgb=(.7 .4 .4)} Face 23166 8464 8390 16526 {rgb=(.7 .4 .4)} Face 23167 8390 8496 16526 {rgb=(.7 .4 .4)} Face 23168 8496 8590 16526 {rgb=(.7 .4 .4)} Face 23169 8517 8475 16527 {rgb=(.7 .4 .4)} Face 23170 8475 8373 16527 {rgb=(.7 .4 .4)} Face 23171 8373 8435 16527 {rgb=(.7 .4 .4)} Face 23172 8435 8517 16527 {rgb=(.7 .4 .4)} Face 23173 8402 8288 16528 {rgb=(.7 .4 .4)} Face 23174 8288 8170 16528 {rgb=(.7 .4 .4)} Face 23175 8170 8289 16528 {rgb=(.7 .4 .4)} Face 23176 8289 8402 16528 {rgb=(.7 .4 .4)} Face 23177 8358 8279 16529 {rgb=(.7 .4 .4)} Face 23178 8279 8190 16529 {rgb=(.7 .4 .4)} Face 23179 8190 8274 16529 {rgb=(.7 .4 .4)} Face 23180 8274 8358 16529 {rgb=(.7 .4 .4)} Face 23181 8183 8012 16530 {rgb=(.7 .4 .4)} Face 23182 8012 7903 16530 {rgb=(.7 .4 .4)} Face 23183 7903 8043 16530 {rgb=(.7 .4 .4)} Face 23184 8043 8183 16530 {rgb=(.7 .4 .4)} Face 23185 8258 8324 16531 {rgb=(.7 .4 .4)} Face 23186 8324 8124 16531 {rgb=(.7 .4 .4)} Face 23187 8124 8064 16531 {rgb=(.7 .4 .4)} Face 23188 8064 8258 16531 {rgb=(.7 .4 .4)} Face 23189 8523 8389 16532 {rgb=(.7 .4 .4)} Face 23190 8389 8466 16532 {rgb=(.7 .4 .4)} Face 23191 8466 8604 16532 {rgb=(.7 .4 .4)} Face 23192 8604 8523 16532 {rgb=(.7 .4 .4)} Face 23193 8102 8221 16533 {rgb=(.7 .4 .4)} Face 23194 8221 8212 16533 {rgb=(.7 .4 .4)} Face 23195 8212 8079 16533 {rgb=(.7 .4 .4)} Face 23196 8079 8102 16533 {rgb=(.7 .4 .4)} Face 23197 8322 8426 16534 {rgb=(.7 .4 .4)} Face 23198 8426 8391 16534 {rgb=(.7 .4 .4)} Face 23199 8391 8305 16534 {rgb=(.7 .4 .4)} Face 23200 8305 8322 16534 {rgb=(.7 .4 .4)} Face 23201 7994 8147 16535 {rgb=(.7 .4 .4)} Face 23202 8147 7977 16535 {rgb=(.7 .4 .4)} Face 23203 7977 7875 16535 {rgb=(.7 .4 .4)} Face 23204 7875 7994 16535 {rgb=(.7 .4 .4)} Face 23205 8238 8309 16536 {rgb=(.7 .4 .4)} Face 23206 8309 8187 16536 {rgb=(.7 .4 .4)} Face 23207 8187 8099 16536 {rgb=(.7 .4 .4)} Face 23208 8099 8238 16536 {rgb=(.7 .4 .4)} Face 23209 7755 7856 16537 {rgb=(.7 .4 .4)} Face 23210 7856 7721 16537 {rgb=(.7 .4 .4)} Face 23211 7721 7628 16537 {rgb=(.7 .4 .4)} Face 23212 7628 7755 16537 {rgb=(.7 .4 .4)} Face 23213 7929 7995 16538 {rgb=(.7 .4 .4)} Face 23214 7995 7841 16538 {rgb=(.7 .4 .4)} Face 23215 7841 7797 16538 {rgb=(.7 .4 .4)} Face 23216 7797 7929 16538 {rgb=(.7 .4 .4)} Face 23217 7463 7532 16539 {rgb=(.7 .4 .4)} Face 23218 7532 7311 16539 {rgb=(.7 .4 .4)} Face 23219 7311 7272 16539 {rgb=(.7 .4 .4)} Face 23220 7272 7463 16539 {rgb=(.7 .4 .4)} Face 23221 7596 7633 16540 {rgb=(.7 .4 .4)} Face 23222 7633 7393 16540 {rgb=(.7 .4 .4)} Face 23223 7393 7345 16540 {rgb=(.7 .4 .4)} Face 23224 7345 7596 16540 {rgb=(.7 .4 .4)} Face 23225 7072 7084 16541 {rgb=(.7 .4 .4)} Face 23226 7084 6943 16541 {rgb=(.7 .4 .4)} Face 23227 6943 6936 16541 {rgb=(.7 .4 .4)} Face 23228 6936 7072 16541 {rgb=(.7 .4 .4)} Face 23229 7116 7155 16542 {rgb=(.7 .4 .4)} Face 23230 7155 6975 16542 {rgb=(.7 .4 .4)} Face 23231 6975 6960 16542 {rgb=(.7 .4 .4)} Face 23232 6960 7116 16542 {rgb=(.7 .4 .4)} Face 23233 6785 6787 16543 {rgb=(.7 .4 .4)} Face 23234 6787 6647 16543 {rgb=(.7 .4 .4)} Face 23235 6647 6652 16543 {rgb=(.7 .4 .4)} Face 23236 6652 6785 16543 {rgb=(.7 .4 .4)} Face 23237 6794 6804 16544 {rgb=(.7 .4 .4)} Face 23238 6804 6666 16544 {rgb=(.7 .4 .4)} Face 23239 6666 6651 16544 {rgb=(.7 .4 .4)} Face 23240 6651 6794 16544 {rgb=(.7 .4 .4)} Face 23241 6491 6467 16545 {rgb=(.7 .4 .4)} Face 23242 6467 6256 16545 {rgb=(.7 .4 .4)} Face 23243 6256 6295 16545 {rgb=(.7 .4 .4)} Face 23244 6295 6491 16545 {rgb=(.7 .4 .4)} Face 23245 6462 6472 16546 {rgb=(.7 .4 .4)} Face 23246 6472 6229 16546 {rgb=(.7 .4 .4)} Face 23247 6229 6226 16546 {rgb=(.7 .4 .4)} Face 23248 6226 6462 16546 {rgb=(.7 .4 .4)} Face 23249 6559 6538 16547 {rgb=(.7 .4 .4)} Face 23250 6538 6356 16547 {rgb=(.7 .4 .4)} Face 23251 6356 6375 16547 {rgb=(.7 .4 .4)} Face 23252 6375 6559 16547 {rgb=(.7 .4 .4)} Face 23253 6678 6698 16548 {rgb=(.7 .4 .4)} Face 23254 6698 6808 16548 {rgb=(.7 .4 .4)} Face 23255 6808 6802 16548 {rgb=(.7 .4 .4)} Face 23256 6802 6678 16548 {rgb=(.7 .4 .4)} Face 23257 6944 6954 16549 {rgb=(.7 .4 .4)} Face 23258 6954 7078 16549 {rgb=(.7 .4 .4)} Face 23259 7078 7071 16549 {rgb=(.7 .4 .4)} Face 23260 7071 6944 16549 {rgb=(.7 .4 .4)} Face 23261 7268 7275 16550 {rgb=(.7 .4 .4)} Face 23262 7275 7414 16550 {rgb=(.7 .4 .4)} Face 23263 7414 7426 16550 {rgb=(.7 .4 .4)} Face 23264 7426 7268 16550 {rgb=(.7 .4 .4)} Face 23265 7566 7565 16551 {rgb=(.7 .4 .4)} Face 23266 7565 7696 16551 {rgb=(.7 .4 .4)} Face 23267 7696 7697 16551 {rgb=(.7 .4 .4)} Face 23268 7697 7566 16551 {rgb=(.7 .4 .4)} Face 23269 7953 7909 16552 {rgb=(.7 .4 .4)} Face 23270 7909 7869 16552 {rgb=(.7 .4 .4)} Face 23271 7869 7926 16552 {rgb=(.7 .4 .4)} Face 23272 7926 7953 16552 {rgb=(.7 .4 .4)} Face 23273 7452 7417 16553 {rgb=(.7 .4 .4)} Face 23274 7417 7137 16553 {rgb=(.7 .4 .4)} Face 23275 7137 7165 16553 {rgb=(.7 .4 .4)} Face 23276 7165 7452 16553 {rgb=(.7 .4 .4)} Face 23277 5584 5593 16554 {rgb=(.7 .4 .4)} Face 23278 5593 5744 16554 {rgb=(.7 .4 .4)} Face 23279 5744 5704 16554 {rgb=(.7 .4 .4)} Face 23280 5704 5584 16554 {rgb=(.7 .4 .4)} Face 23281 5599 5613 16555 {rgb=(.7 .4 .4)} Face 23282 5613 5855 16555 {rgb=(.7 .4 .4)} Face 23283 5855 5792 16555 {rgb=(.7 .4 .4)} Face 23284 5792 5599 16555 {rgb=(.7 .4 .4)} Face 23285 5627 5634 16556 {rgb=(.7 .4 .4)} Face 23286 5634 5920 16556 {rgb=(.7 .4 .4)} Face 23287 5920 5883 16556 {rgb=(.7 .4 .4)} Face 23288 5883 5627 16556 {rgb=(.7 .4 .4)} Face 23289 5819 5874 16557 {rgb=(.7 .4 .4)} Face 23290 5874 5982 16557 {rgb=(.7 .4 .4)} Face 23291 5982 5876 16557 {rgb=(.7 .4 .4)} Face 23292 5876 5819 16557 {rgb=(.7 .4 .4)} Face 23293 5952 6034 16558 {rgb=(.7 .4 .4)} Face 23294 6034 6205 16558 {rgb=(.7 .4 .4)} Face 23295 6205 6084 16558 {rgb=(.7 .4 .4)} Face 23296 6084 5952 16558 {rgb=(.7 .4 .4)} Face 23297 6128 6208 16559 {rgb=(.7 .4 .4)} Face 23298 6208 6576 16559 {rgb=(.7 .4 .4)} Face 23299 6576 6370 16559 {rgb=(.7 .4 .4)} Face 23300 6370 6128 16559 {rgb=(.7 .4 .4)} Face 23301 6206 6413 16560 {rgb=(.7 .4 .4)} Face 23302 6413 6608 16560 {rgb=(.7 .4 .4)} Face 23303 6608 6330 16560 {rgb=(.7 .4 .4)} Face 23304 6330 6206 16560 {rgb=(.7 .4 .4)} Face 23305 6624 6762 16561 {rgb=(.7 .4 .4)} Face 23306 6762 6945 16561 {rgb=(.7 .4 .4)} Face 23307 6945 6765 16561 {rgb=(.7 .4 .4)} Face 23308 6765 6624 16561 {rgb=(.7 .4 .4)} Face 23309 6410 6696 16562 {rgb=(.7 .4 .4)} Face 23310 6696 6722 16562 {rgb=(.7 .4 .4)} Face 23311 6722 6453 16562 {rgb=(.7 .4 .4)} Face 23312 6453 6410 16562 {rgb=(.7 .4 .4)} Face 23313 6875 7023 16563 {rgb=(.7 .4 .4)} Face 23314 7023 7036 16563 {rgb=(.7 .4 .4)} Face 23315 7036 6896 16563 {rgb=(.7 .4 .4)} Face 23316 6896 6875 16563 {rgb=(.7 .4 .4)} Face 23317 5976 6182 16564 {rgb=(.7 .4 .4)} Face 23318 6182 6232 16564 {rgb=(.7 .4 .4)} Face 23319 6232 6005 16564 {rgb=(.7 .4 .4)} Face 23320 6005 5976 16564 {rgb=(.7 .4 .4)} Face 23321 6482 6718 16565 {rgb=(.7 .4 .4)} Face 23322 6718 6686 16565 {rgb=(.7 .4 .4)} Face 23323 6686 6493 16565 {rgb=(.7 .4 .4)} Face 23324 6493 6482 16565 {rgb=(.7 .4 .4)} Face 23325 6874 7000 16566 {rgb=(.7 .4 .4)} Face 23326 7000 6906 16566 {rgb=(.7 .4 .4)} Face 23327 6906 6800 16566 {rgb=(.7 .4 .4)} Face 23328 6800 6874 16566 {rgb=(.7 .4 .4)} Face 23329 6003 6198 16567 {rgb=(.7 .4 .4)} Face 23330 6198 6120 16567 {rgb=(.7 .4 .4)} Face 23331 6120 5966 16567 {rgb=(.7 .4 .4)} Face 23332 5966 6003 16567 {rgb=(.7 .4 .4)} Face 23333 6419 6595 16568 {rgb=(.7 .4 .4)} Face 23334 6595 6382 16568 {rgb=(.7 .4 .4)} Face 23335 6382 6274 16568 {rgb=(.7 .4 .4)} Face 23336 6274 6419 16568 {rgb=(.7 .4 .4)} Face 23337 6699 6754 16569 {rgb=(.7 .4 .4)} Face 23338 6754 6573 16569 {rgb=(.7 .4 .4)} Face 23339 6573 6494 16569 {rgb=(.7 .4 .4)} Face 23340 6494 6699 16569 {rgb=(.7 .4 .4)} Face 23341 5909 6024 16570 {rgb=(.7 .4 .4)} Face 23342 6024 5908 16570 {rgb=(.7 .4 .4)} Face 23343 5908 5857 16570 {rgb=(.7 .4 .4)} Face 23344 5857 5909 16570 {rgb=(.7 .4 .4)} Face 23345 6105 6170 16571 {rgb=(.7 .4 .4)} Face 23346 6170 5987 16571 {rgb=(.7 .4 .4)} Face 23347 5987 5963 16571 {rgb=(.7 .4 .4)} Face 23348 5963 6105 16571 {rgb=(.7 .4 .4)} Face 23349 6230 6282 16572 {rgb=(.7 .4 .4)} Face 23350 6282 6036 16572 {rgb=(.7 .4 .4)} Face 23351 6036 6012 16572 {rgb=(.7 .4 .4)} Face 23352 6012 6230 16572 {rgb=(.7 .4 .4)} Face 23353 5740 5774 16573 {rgb=(.7 .4 .4)} Face 23354 5774 5598 16573 {rgb=(.7 .4 .4)} Face 23355 5598 5590 16573 {rgb=(.7 .4 .4)} Face 23356 5590 5740 16573 {rgb=(.7 .4 .4)} Face 23357 5804 5813 16574 {rgb=(.7 .4 .4)} Face 23358 5813 5612 16574 {rgb=(.7 .4 .4)} Face 23359 5612 5609 16574 {rgb=(.7 .4 .4)} Face 23360 5609 5804 16574 {rgb=(.7 .4 .4)} Face 23361 5826 5844 16575 {rgb=(.7 .4 .4)} Face 23362 5844 5624 16575 {rgb=(.7 .4 .4)} Face 23363 5624 5618 16575 {rgb=(.7 .4 .4)} Face 23364 5618 5826 16575 {rgb=(.7 .4 .4)} Face 23365 6313 6374 16576 {rgb=(.7 .4 .4)} Face 23366 6374 6123 16576 {rgb=(.7 .4 .4)} Face 23367 6123 6064 16576 {rgb=(.7 .4 .4)} Face 23368 6064 6313 16576 {rgb=(.7 .4 .4)} Face 23369 5860 5884 16577 {rgb=(.7 .4 .4)} Face 23370 5884 5640 16577 {rgb=(.7 .4 .4)} Face 23371 5640 5630 16577 {rgb=(.7 .4 .4)} Face 23372 5630 5860 16577 {rgb=(.7 .4 .4)} Face 23373 7660 7782 16578 {rgb=(.7 .4 .4)} Face 23374 7782 7816 16578 {rgb=(.7 .4 .4)} Face 23375 7816 7698 16578 {rgb=(.7 .4 .4)} Face 23376 7698 7660 16578 {rgb=(.7 .4 .4)} Face 23377 7881 7936 16579 {rgb=(.7 .4 .4)} Face 23378 7936 7796 16579 {rgb=(.7 .4 .4)} Face 23379 7796 7718 16579 {rgb=(.7 .4 .4)} Face 23380 7718 7881 16579 {rgb=(.7 .4 .4)} Face 23381 7373 7459 16580 {rgb=(.7 .4 .4)} Face 23382 7459 7395 16580 {rgb=(.7 .4 .4)} Face 23383 7395 7308 16580 {rgb=(.7 .4 .4)} Face 23384 7308 7373 16580 {rgb=(.7 .4 .4)} Face 23385 7520 7580 16581 {rgb=(.7 .4 .4)} Face 23386 7580 7462 16581 {rgb=(.7 .4 .4)} Face 23387 7462 7449 16581 {rgb=(.7 .4 .4)} Face 23388 7449 7520 16581 {rgb=(.7 .4 .4)} Face 23389 7575 7500 16582 {rgb=(.7 .4 .4)} Face 23390 7500 7357 16582 {rgb=(.7 .4 .4)} Face 23391 7357 7437 16582 {rgb=(.7 .4 .4)} Face 23392 7437 7575 16582 {rgb=(.7 .4 .4)} Face 23393 7429 7331 16583 {rgb=(.7 .4 .4)} Face 23394 7331 7267 16583 {rgb=(.7 .4 .4)} Face 23395 7267 7303 16583 {rgb=(.7 .4 .4)} Face 23396 7303 7429 16583 {rgb=(.7 .4 .4)} Face 23397 7866 7938 16584 {rgb=(.7 .4 .4)} Face 23398 7938 7824 16584 {rgb=(.7 .4 .4)} Face 23399 7824 7749 16584 {rgb=(.7 .4 .4)} Face 23400 7749 7866 16584 {rgb=(.7 .4 .4)} Face 23401 7571 7642 16585 {rgb=(.7 .4 .4)} Face 23402 7642 7444 16585 {rgb=(.7 .4 .4)} Face 23403 7444 7361 16585 {rgb=(.7 .4 .4)} Face 23404 7361 7571 16585 {rgb=(.7 .4 .4)} Face 23405 7124 7195 16586 {rgb=(.7 .4 .4)} Face 23406 7195 6973 16586 {rgb=(.7 .4 .4)} Face 23407 6973 6912 16586 {rgb=(.7 .4 .4)} Face 23408 6912 7124 16586 {rgb=(.7 .4 .4)} Face 23409 6734 6766 16587 {rgb=(.7 .4 .4)} Face 23410 6766 6626 16587 {rgb=(.7 .4 .4)} Face 23411 6626 6597 16587 {rgb=(.7 .4 .4)} Face 23412 6597 6734 16587 {rgb=(.7 .4 .4)} Face 23413 7514 7726 16588 {rgb=(.7 .4 .4)} Face 23414 7726 7832 16588 {rgb=(.7 .4 .4)} Face 23415 7832 7609 16588 {rgb=(.7 .4 .4)} Face 23416 7609 7514 16588 {rgb=(.7 .4 .4)} Face 23417 7674 7619 16589 {rgb=(.7 .4 .4)} Face 23418 7619 7638 16589 {rgb=(.7 .4 .4)} Face 23419 7638 7812 16589 {rgb=(.7 .4 .4)} Face 23420 7812 7674 16589 {rgb=(.7 .4 .4)} Face 23421 7309 7380 16590 {rgb=(.7 .4 .4)} Face 23422 7380 7094 16590 {rgb=(.7 .4 .4)} Face 23423 7094 7032 16590 {rgb=(.7 .4 .4)} Face 23424 7032 7309 16590 {rgb=(.7 .4 .4)} Face 23425 7422 7450 16591 {rgb=(.7 .4 .4)} Face 23426 7450 7149 16591 {rgb=(.7 .4 .4)} Face 23427 7149 7132 16591 {rgb=(.7 .4 .4)} Face 23428 7132 7422 16591 {rgb=(.7 .4 .4)} Face 23429 6828 6872 16592 {rgb=(.7 .4 .4)} Face 23430 6872 6649 16592 {rgb=(.7 .4 .4)} Face 23431 6649 6645 16592 {rgb=(.7 .4 .4)} Face 23432 6645 6828 16592 {rgb=(.7 .4 .4)} Face 23433 6893 6898 16593 {rgb=(.7 .4 .4)} Face 23434 6898 6644 16593 {rgb=(.7 .4 .4)} Face 23435 6644 6648 16593 {rgb=(.7 .4 .4)} Face 23436 6648 6893 16593 {rgb=(.7 .4 .4)} Face 23437 7302 7310 16594 {rgb=(.7 .4 .4)} Face 23438 7310 7079 16594 {rgb=(.7 .4 .4)} Face 23439 7079 7035 16594 {rgb=(.7 .4 .4)} Face 23440 7035 7302 16594 {rgb=(.7 .4 .4)} Face 23441 7227 7150 16595 {rgb=(.7 .4 .4)} Face 23442 7150 6983 16595 {rgb=(.7 .4 .4)} Face 23443 6983 7043 16595 {rgb=(.7 .4 .4)} Face 23444 7043 7227 16595 {rgb=(.7 .4 .4)} Face 23445 7152 7187 16596 {rgb=(.7 .4 .4)} Face 23446 7187 7037 16596 {rgb=(.7 .4 .4)} Face 23447 7037 7010 16596 {rgb=(.7 .4 .4)} Face 23448 7010 7152 16596 {rgb=(.7 .4 .4)} Face 23449 7197 7135 16597 {rgb=(.7 .4 .4)} Face 23450 7135 7015 16597 {rgb=(.7 .4 .4)} Face 23451 7015 7065 16597 {rgb=(.7 .4 .4)} Face 23452 7065 7197 16597 {rgb=(.7 .4 .4)} Face 23453 6842 6891 16598 {rgb=(.7 .4 .4)} Face 23454 6891 6683 16598 {rgb=(.7 .4 .4)} Face 23455 6683 6660 16598 {rgb=(.7 .4 .4)} Face 23456 6660 6842 16598 {rgb=(.7 .4 .4)} Face 23457 6869 6774 16599 {rgb=(.7 .4 .4)} Face 23458 6774 6539 16599 {rgb=(.7 .4 .4)} Face 23459 6539 6634 16599 {rgb=(.7 .4 .4)} Face 23460 6634 6869 16599 {rgb=(.7 .4 .4)} Face 23461 6813 6882 16600 {rgb=(.7 .4 .4)} Face 23462 6882 6687 16600 {rgb=(.7 .4 .4)} Face 23463 6687 6591 16600 {rgb=(.7 .4 .4)} Face 23464 6591 6813 16600 {rgb=(.7 .4 .4)} Face 23465 6589 6606 16601 {rgb=(.7 .4 .4)} Face 23466 6606 6553 16601 {rgb=(.7 .4 .4)} Face 23467 6553 6504 16601 {rgb=(.7 .4 .4)} Face 23468 6504 6589 16601 {rgb=(.7 .4 .4)} Face 23469 6407 6404 16602 {rgb=(.7 .4 .4)} Face 23470 6404 6133 16602 {rgb=(.7 .4 .4)} Face 23471 6133 6143 16602 {rgb=(.7 .4 .4)} Face 23472 6143 6407 16602 {rgb=(.7 .4 .4)} Face 23473 6331 6223 16603 {rgb=(.7 .4 .4)} Face 23474 6223 6014 16603 {rgb=(.7 .4 .4)} Face 23475 6014 6072 16603 {rgb=(.7 .4 .4)} Face 23476 6072 6331 16603 {rgb=(.7 .4 .4)} Face 23477 6280 6428 16604 {rgb=(.7 .4 .4)} Face 23478 6428 6155 16604 {rgb=(.7 .4 .4)} Face 23479 6155 6057 16604 {rgb=(.7 .4 .4)} Face 23480 6057 6280 16604 {rgb=(.7 .4 .4)} Face 23481 6511 6487 16605 {rgb=(.7 .4 .4)} Face 23482 6487 6189 16605 {rgb=(.7 .4 .4)} Face 23483 6189 6215 16605 {rgb=(.7 .4 .4)} Face 23484 6215 6511 16605 {rgb=(.7 .4 .4)} Face 23485 5895 5886 16606 {rgb=(.7 .4 .4)} Face 23486 5886 5642 16606 {rgb=(.7 .4 .4)} Face 23487 5642 5647 16606 {rgb=(.7 .4 .4)} Face 23488 5647 5895 16606 {rgb=(.7 .4 .4)} Face 23489 5864 5834 16607 {rgb=(.7 .4 .4)} Face 23490 5834 5620 16607 {rgb=(.7 .4 .4)} Face 23491 5620 5632 16607 {rgb=(.7 .4 .4)} Face 23492 5632 5864 16607 {rgb=(.7 .4 .4)} Face 23493 5862 5917 16608 {rgb=(.7 .4 .4)} Face 23494 5917 5654 16608 {rgb=(.7 .4 .4)} Face 23495 5654 5631 16608 {rgb=(.7 .4 .4)} Face 23496 5631 5862 16608 {rgb=(.7 .4 .4)} Face 23497 5967 5983 16609 {rgb=(.7 .4 .4)} Face 23498 5983 5780 16609 {rgb=(.7 .4 .4)} Face 23499 5780 5702 16609 {rgb=(.7 .4 .4)} Face 23500 5702 5967 16609 {rgb=(.7 .4 .4)} Face 23501 5975 5951 16610 {rgb=(.7 .4 .4)} Face 23502 5951 5811 16610 {rgb=(.7 .4 .4)} Face 23503 5811 5827 16610 {rgb=(.7 .4 .4)} Face 23504 5827 5975 16610 {rgb=(.7 .4 .4)} Face 23505 5680 5676 16611 {rgb=(.7 .4 .4)} Face 23506 5676 5574 16611 {rgb=(.7 .4 .4)} Face 23507 5574 5577 16611 {rgb=(.7 .4 .4)} Face 23508 5577 5680 16611 {rgb=(.7 .4 .4)} Face 23509 6284 6253 16612 {rgb=(.7 .4 .4)} Face 23510 6253 6062 16612 {rgb=(.7 .4 .4)} Face 23511 6062 6087 16612 {rgb=(.7 .4 .4)} Face 23512 6087 6284 16612 {rgb=(.7 .4 .4)} Face 23513 5936 5933 16613 {rgb=(.7 .4 .4)} Face 23514 5933 5845 16613 {rgb=(.7 .4 .4)} Face 23515 5845 5818 16613 {rgb=(.7 .4 .4)} Face 23516 5818 5936 16613 {rgb=(.7 .4 .4)} Face 23517 5672 5665 16614 {rgb=(.7 .4 .4)} Face 23518 5665 5568 16614 {rgb=(.7 .4 .4)} Face 23519 5568 5573 16614 {rgb=(.7 .4 .4)} Face 23520 5573 5672 16614 {rgb=(.7 .4 .4)} Face 23521 5837 5848 16615 {rgb=(.7 .4 .4)} Face 23522 5848 5797 16615 {rgb=(.7 .4 .4)} Face 23523 5797 5786 16615 {rgb=(.7 .4 .4)} Face 23524 5786 5837 16615 {rgb=(.7 .4 .4)} Face 23525 5686 5743 16616 {rgb=(.7 .4 .4)} Face 23526 5743 5592 16616 {rgb=(.7 .4 .4)} Face 23527 5592 5579 16616 {rgb=(.7 .4 .4)} Face 23528 5579 5686 16616 {rgb=(.7 .4 .4)} Face 23529 5597 5772 16617 {rgb=(.7 .4 .4)} Face 23530 5772 5783 16617 {rgb=(.7 .4 .4)} Face 23531 5783 5603 16617 {rgb=(.7 .4 .4)} Face 23532 5603 5597 16617 {rgb=(.7 .4 .4)} Face 23533 5894 5993 16618 {rgb=(.7 .4 .4)} Face 23534 5993 6009 16618 {rgb=(.7 .4 .4)} Face 23535 6009 5915 16618 {rgb=(.7 .4 .4)} Face 23536 5915 5894 16618 {rgb=(.7 .4 .4)} Face 23537 6104 6273 16619 {rgb=(.7 .4 .4)} Face 23538 6273 6293 16619 {rgb=(.7 .4 .4)} Face 23539 6293 6144 16619 {rgb=(.7 .4 .4)} Face 23540 6144 6104 16619 {rgb=(.7 .4 .4)} Face 23541 6366 6439 16620 {rgb=(.7 .4 .4)} Face 23542 6439 6486 16620 {rgb=(.7 .4 .4)} Face 23543 6486 6401 16620 {rgb=(.7 .4 .4)} Face 23544 6401 6366 16620 {rgb=(.7 .4 .4)} Face 23545 6510 6466 16621 {rgb=(.7 .4 .4)} Face 23546 6466 6454 16621 {rgb=(.7 .4 .4)} Face 23547 6454 6497 16621 {rgb=(.7 .4 .4)} Face 23548 6497 6510 16621 {rgb=(.7 .4 .4)} Face 23549 6544 6535 16622 {rgb=(.7 .4 .4)} Face 23550 6535 6448 16622 {rgb=(.7 .4 .4)} Face 23551 6448 6443 16622 {rgb=(.7 .4 .4)} Face 23552 6443 6544 16622 {rgb=(.7 .4 .4)} Face 23553 6500 6411 16623 {rgb=(.7 .4 .4)} Face 23554 6411 6355 16623 {rgb=(.7 .4 .4)} Face 23555 6355 6424 16623 {rgb=(.7 .4 .4)} Face 23556 6424 6500 16623 {rgb=(.7 .4 .4)} Face 23557 6319 6283 16624 {rgb=(.7 .4 .4)} Face 23558 6283 6181 16624 {rgb=(.7 .4 .4)} Face 23559 6181 6193 16624 {rgb=(.7 .4 .4)} Face 23560 6193 6319 16624 {rgb=(.7 .4 .4)} Face 23561 6129 6124 16625 {rgb=(.7 .4 .4)} Face 23562 6124 6061 16625 {rgb=(.7 .4 .4)} Face 23563 6061 6078 16625 {rgb=(.7 .4 .4)} Face 23564 6078 6129 16625 {rgb=(.7 .4 .4)} Face 23565 6015 5998 16626 {rgb=(.7 .4 .4)} Face 23566 5998 5904 16626 {rgb=(.7 .4 .4)} Face 23567 5904 5926 16626 {rgb=(.7 .4 .4)} Face 23568 5926 6015 16626 {rgb=(.7 .4 .4)} Face 23569 5798 5779 16627 {rgb=(.7 .4 .4)} Face 23570 5779 5602 16627 {rgb=(.7 .4 .4)} Face 23571 5602 5606 16627 {rgb=(.7 .4 .4)} Face 23572 5606 5798 16627 {rgb=(.7 .4 .4)} Face 23573 6277 6294 16628 {rgb=(.7 .4 .4)} Face 23574 6294 6291 16628 {rgb=(.7 .4 .4)} Face 23575 6291 6267 16628 {rgb=(.7 .4 .4)} Face 23576 6267 6277 16628 {rgb=(.7 .4 .4)} Face 23577 6174 6204 16629 {rgb=(.7 .4 .4)} Face 23578 6204 6212 16629 {rgb=(.7 .4 .4)} Face 23579 6212 6118 16629 {rgb=(.7 .4 .4)} Face 23580 6118 6174 16629 {rgb=(.7 .4 .4)} Face 23581 6094 6068 16630 {rgb=(.7 .4 .4)} Face 23582 6068 5965 16630 {rgb=(.7 .4 .4)} Face 23583 5965 6030 16630 {rgb=(.7 .4 .4)} Face 23584 6030 6094 16630 {rgb=(.7 .4 .4)} Face 23585 5906 6040 16631 {rgb=(.7 .4 .4)} Face 23586 6040 6004 16631 {rgb=(.7 .4 .4)} Face 23587 6004 5866 16631 {rgb=(.7 .4 .4)} Face 23588 5866 5906 16631 {rgb=(.7 .4 .4)} Face 23589 5712 5626 16632 {rgb=(.7 .4 .4)} Face 23590 5626 5752 16632 {rgb=(.7 .4 .4)} Face 23591 5752 5863 16632 {rgb=(.7 .4 .4)} Face 23592 5863 5712 16632 {rgb=(.7 .4 .4)} Face 23593 6432 6416 16633 {rgb=(.7 .4 .4)} Face 23594 6416 6203 16633 {rgb=(.7 .4 .4)} Face 23595 6203 6241 16633 {rgb=(.7 .4 .4)} Face 23596 6241 6432 16633 {rgb=(.7 .4 .4)} Face 23597 6388 6371 16634 {rgb=(.7 .4 .4)} Face 23598 6371 6178 16634 {rgb=(.7 .4 .4)} Face 23599 6178 6184 16634 {rgb=(.7 .4 .4)} Face 23600 6184 6388 16634 {rgb=(.7 .4 .4)} Face 23601 6088 6073 16635 {rgb=(.7 .4 .4)} Face 23602 6073 6006 16635 {rgb=(.7 .4 .4)} Face 23603 6006 6008 16635 {rgb=(.7 .4 .4)} Face 23604 6008 6088 16635 {rgb=(.7 .4 .4)} Face 23605 6065 6056 16636 {rgb=(.7 .4 .4)} Face 23606 6056 5969 16636 {rgb=(.7 .4 .4)} Face 23607 5969 5996 16636 {rgb=(.7 .4 .4)} Face 23608 5996 6065 16636 {rgb=(.7 .4 .4)} Face 23609 6037 6010 16637 {rgb=(.7 .4 .4)} Face 23610 6010 5921 16637 {rgb=(.7 .4 .4)} Face 23611 5921 5948 16637 {rgb=(.7 .4 .4)} Face 23612 5948 6037 16637 {rgb=(.7 .4 .4)} Face 23613 5931 5922 16638 {rgb=(.7 .4 .4)} Face 23614 5922 5849 16638 {rgb=(.7 .4 .4)} Face 23615 5849 5861 16638 {rgb=(.7 .4 .4)} Face 23616 5861 5931 16638 {rgb=(.7 .4 .4)} Face 23617 5903 5880 16639 {rgb=(.7 .4 .4)} Face 23618 5880 5808 16639 {rgb=(.7 .4 .4)} Face 23619 5808 5831 16639 {rgb=(.7 .4 .4)} Face 23620 5831 5903 16639 {rgb=(.7 .4 .4)} Face 23621 5869 5859 16640 {rgb=(.7 .4 .4)} Face 23622 5859 5790 16640 {rgb=(.7 .4 .4)} Face 23623 5790 5791 16640 {rgb=(.7 .4 .4)} Face 23624 5791 5869 16640 {rgb=(.7 .4 .4)} Face 23625 5742 5721 16641 {rgb=(.7 .4 .4)} Face 23626 5721 5586 16641 {rgb=(.7 .4 .4)} Face 23627 5586 5591 16641 {rgb=(.7 .4 .4)} Face 23628 5591 5742 16641 {rgb=(.7 .4 .4)} Face 23629 5706 5695 16642 {rgb=(.7 .4 .4)} Face 23630 5695 5581 16642 {rgb=(.7 .4 .4)} Face 23631 5581 5585 16642 {rgb=(.7 .4 .4)} Face 23632 5585 5706 16642 {rgb=(.7 .4 .4)} Face 23633 5690 5698 16643 {rgb=(.7 .4 .4)} Face 23634 5698 5582 16643 {rgb=(.7 .4 .4)} Face 23635 5582 5580 16643 {rgb=(.7 .4 .4)} Face 23636 5580 5690 16643 {rgb=(.7 .4 .4)} Face 23637 8181 8235 16644 {rgb=(.7 .4 .4)} Face 23638 8235 8217 16644 {rgb=(.7 .4 .4)} Face 23639 8217 8172 16644 {rgb=(.7 .4 .4)} Face 23640 8172 8181 16644 {rgb=(.7 .4 .4)} Face 23641 8204 8196 16645 {rgb=(.7 .4 .4)} Face 23642 8196 8149 16645 {rgb=(.7 .4 .4)} Face 23643 8149 8165 16645 {rgb=(.7 .4 .4)} Face 23644 8165 8204 16645 {rgb=(.7 .4 .4)} Face 23645 8135 8106 16646 {rgb=(.7 .4 .4)} Face 23646 8106 8083 16646 {rgb=(.7 .4 .4)} Face 23647 8083 8127 16646 {rgb=(.7 .4 .4)} Face 23648 8127 8135 16646 {rgb=(.7 .4 .4)} Face 23649 8150 8113 16647 {rgb=(.7 .4 .4)} Face 23650 8113 8176 16647 {rgb=(.7 .4 .4)} Face 23651 8176 8194 16647 {rgb=(.7 .4 .4)} Face 23652 8194 8150 16647 {rgb=(.7 .4 .4)} Face 23653 8243 8223 16648 {rgb=(.7 .4 .4)} Face 23654 8223 8271 16648 {rgb=(.7 .4 .4)} Face 23655 8271 8300 16648 {rgb=(.7 .4 .4)} Face 23656 8300 8243 16648 {rgb=(.7 .4 .4)} Face 23657 8332 8295 16649 {rgb=(.7 .4 .4)} Face 23658 8295 8293 16649 {rgb=(.7 .4 .4)} Face 23659 8293 8336 16649 {rgb=(.7 .4 .4)} Face 23660 8336 8332 16649 {rgb=(.7 .4 .4)} Face 23661 8314 8269 16650 {rgb=(.7 .4 .4)} Face 23662 8269 8222 16650 {rgb=(.7 .4 .4)} Face 23663 8222 8266 16650 {rgb=(.7 .4 .4)} Face 23664 8266 8314 16650 {rgb=(.7 .4 .4)} Face 23665 8178 8121 16651 {rgb=(.7 .4 .4)} Face 23666 8121 7939 16651 {rgb=(.7 .4 .4)} Face 23667 7939 8003 16651 {rgb=(.7 .4 .4)} Face 23668 8003 8178 16651 {rgb=(.7 .4 .4)} Face 23669 7889 7838 16652 {rgb=(.7 .4 .4)} Face 23670 7838 7754 16652 {rgb=(.7 .4 .4)} Face 23671 7754 7801 16652 {rgb=(.7 .4 .4)} Face 23672 7801 7889 16652 {rgb=(.7 .4 .4)} Face 23673 7742 7704 16653 {rgb=(.7 .4 .4)} Face 23674 7704 7668 16653 {rgb=(.7 .4 .4)} Face 23675 7668 7729 16653 {rgb=(.7 .4 .4)} Face 23676 7729 7742 16653 {rgb=(.7 .4 .4)} Face 23677 7826 7942 16654 {rgb=(.7 .4 .4)} Face 23678 7942 7910 16654 {rgb=(.7 .4 .4)} Face 23679 7910 7822 16654 {rgb=(.7 .4 .4)} Face 23680 7822 7826 16654 {rgb=(.7 .4 .4)} Face 23681 7868 7958 16655 {rgb=(.7 .4 .4)} Face 23682 7958 8125 16655 {rgb=(.7 .4 .4)} Face 23683 8125 7973 16655 {rgb=(.7 .4 .4)} Face 23684 7973 7868 16655 {rgb=(.7 .4 .4)} Face 23685 8128 8236 16656 {rgb=(.7 .4 .4)} Face 23686 8236 8330 16656 {rgb=(.7 .4 .4)} Face 23687 8330 8247 16656 {rgb=(.7 .4 .4)} Face 23688 8247 8128 16656 {rgb=(.7 .4 .4)} Face 23689 8326 8397 16657 {rgb=(.7 .4 .4)} Face 23690 8397 8431 16657 {rgb=(.7 .4 .4)} Face 23691 8431 8367 16657 {rgb=(.7 .4 .4)} Face 23692 8367 8326 16657 {rgb=(.7 .4 .4)} Face 23693 8381 8430 16658 {rgb=(.7 .4 .4)} Face 23694 8430 8395 16658 {rgb=(.7 .4 .4)} Face 23695 8395 8363 16658 {rgb=(.7 .4 .4)} Face 23696 8363 8381 16658 {rgb=(.7 .4 .4)} Face 23697 8327 8351 16659 {rgb=(.7 .4 .4)} Face 23698 8351 8287 16659 {rgb=(.7 .4 .4)} Face 23699 8287 8262 16659 {rgb=(.7 .4 .4)} Face 23700 8262 8327 16659 {rgb=(.7 .4 .4)} Face 23701 8214 8237 16660 {rgb=(.7 .4 .4)} Face 23702 8237 8191 16660 {rgb=(.7 .4 .4)} Face 23703 8191 8171 16660 {rgb=(.7 .4 .4)} Face 23704 8171 8214 16660 {rgb=(.7 .4 .4)} Face 23705 8159 8173 16661 {rgb=(.7 .4 .4)} Face 23706 8173 8193 16661 {rgb=(.7 .4 .4)} Face 23707 8193 8168 16661 {rgb=(.7 .4 .4)} Face 23708 8168 8159 16661 {rgb=(.7 .4 .4)} Face 23709 8200 8232 16662 {rgb=(.7 .4 .4)} Face 23710 8232 8286 16662 {rgb=(.7 .4 .4)} Face 23711 8286 8255 16662 {rgb=(.7 .4 .4)} Face 23712 8255 8200 16662 {rgb=(.7 .4 .4)} Face 23713 8371 8404 16663 {rgb=(.7 .4 .4)} Face 23714 8404 8342 16663 {rgb=(.7 .4 .4)} Face 23715 8342 8315 16663 {rgb=(.7 .4 .4)} Face 23716 8315 8371 16663 {rgb=(.7 .4 .4)} Face 23717 8261 8285 16664 {rgb=(.7 .4 .4)} Face 23718 8285 8245 16664 {rgb=(.7 .4 .4)} Face 23719 8245 8215 16664 {rgb=(.7 .4 .4)} Face 23720 8215 8261 16664 {rgb=(.7 .4 .4)} Face 23721 8199 8233 16665 {rgb=(.7 .4 .4)} Face 23722 8233 8244 16665 {rgb=(.7 .4 .4)} Face 23723 8244 8216 16665 {rgb=(.7 .4 .4)} Face 23724 8216 8199 16665 {rgb=(.7 .4 .4)} Face 23725 8254 8280 16666 {rgb=(.7 .4 .4)} Face 23726 8280 8354 16666 {rgb=(.7 .4 .4)} Face 23727 8354 8319 16666 {rgb=(.7 .4 .4)} Face 23728 8319 8254 16666 {rgb=(.7 .4 .4)} Face 23729 8382 8421 16667 {rgb=(.7 .4 .4)} Face 23730 8421 8497 16667 {rgb=(.7 .4 .4)} Face 23731 8497 8436 16667 {rgb=(.7 .4 .4)} Face 23732 8436 8382 16667 {rgb=(.7 .4 .4)} Face 23733 8207 8162 16668 {rgb=(.7 .4 .4)} Face 23734 8162 8107 16668 {rgb=(.7 .4 .4)} Face 23735 8107 8158 16668 {rgb=(.7 .4 .4)} Face 23736 8158 8207 16668 {rgb=(.7 .4 .4)} Face 23737 8097 8108 16669 {rgb=(.7 .4 .4)} Face 23738 8108 8051 16669 {rgb=(.7 .4 .4)} Face 23739 8051 8058 16669 {rgb=(.7 .4 .4)} Face 23740 8058 8097 16669 {rgb=(.7 .4 .4)} Face 23741 8082 8060 16670 {rgb=(.7 .4 .4)} Face 23742 8060 8134 16670 {rgb=(.7 .4 .4)} Face 23743 8134 8160 16670 {rgb=(.7 .4 .4)} Face 23744 8160 8082 16670 {rgb=(.7 .4 .4)} Face 23745 8206 8188 16671 {rgb=(.7 .4 .4)} Face 23746 8188 8240 16671 {rgb=(.7 .4 .4)} Face 23747 8240 8249 16671 {rgb=(.7 .4 .4)} Face 23748 8249 8206 16671 {rgb=(.7 .4 .4)} Face 23749 8267 8251 16672 {rgb=(.7 .4 .4)} Face 23750 8251 8234 16672 {rgb=(.7 .4 .4)} Face 23751 8234 8260 16672 {rgb=(.7 .4 .4)} Face 23752 8260 8267 16672 {rgb=(.7 .4 .4)} Face 23753 8227 8184 16673 {rgb=(.7 .4 .4)} Face 23754 8184 8093 16673 {rgb=(.7 .4 .4)} Face 23755 8093 8169 16673 {rgb=(.7 .4 .4)} Face 23756 8169 8227 16673 {rgb=(.7 .4 .4)} Face 23757 8027 7949 16674 {rgb=(.7 .4 .4)} Face 23758 7949 7803 16674 {rgb=(.7 .4 .4)} Face 23759 7803 7872 16674 {rgb=(.7 .4 .4)} Face 23760 7872 8027 16674 {rgb=(.7 .4 .4)} Face 23761 7769 7684 16675 {rgb=(.7 .4 .4)} Face 23762 7684 7613 16675 {rgb=(.7 .4 .4)} Face 23763 7613 7685 16675 {rgb=(.7 .4 .4)} Face 23764 7685 7769 16675 {rgb=(.7 .4 .4)} Face 23765 7634 7536 16676 {rgb=(.7 .4 .4)} Face 23766 7536 7481 16676 {rgb=(.7 .4 .4)} Face 23767 7481 7588 16676 {rgb=(.7 .4 .4)} Face 23768 7588 7634 16676 {rgb=(.7 .4 .4)} Face 23769 7233 7370 16677 {rgb=(.7 .4 .4)} Face 23770 7370 7451 16677 {rgb=(.7 .4 .4)} Face 23771 7451 7355 16677 {rgb=(.7 .4 .4)} Face 23772 7355 7233 16677 {rgb=(.7 .4 .4)} Face 23773 7457 7518 16678 {rgb=(.7 .4 .4)} Face 23774 7518 7621 16678 {rgb=(.7 .4 .4)} Face 23775 7621 7556 16678 {rgb=(.7 .4 .4)} Face 23776 7556 7457 16678 {rgb=(.7 .4 .4)} Face 23777 7689 7736 16679 {rgb=(.7 .4 .4)} Face 23778 7736 7892 16679 {rgb=(.7 .4 .4)} Face 23779 7892 7853 16679 {rgb=(.7 .4 .4)} Face 23780 7853 7689 16679 {rgb=(.7 .4 .4)} Face 23781 7968 8017 16680 {rgb=(.7 .4 .4)} Face 23782 8017 8138 16680 {rgb=(.7 .4 .4)} Face 23783 8138 8061 16680 {rgb=(.7 .4 .4)} Face 23784 8061 7968 16680 {rgb=(.7 .4 .4)} Face 23785 8139 8195 16681 {rgb=(.7 .4 .4)} Face 23786 8195 8218 16681 {rgb=(.7 .4 .4)} Face 23787 8218 8163 16681 {rgb=(.7 .4 .4)} Face 23788 8163 8139 16681 {rgb=(.7 .4 .4)} Face 23789 8048 8049 16682 {rgb=(.7 .4 .4)} Face 23790 8049 8095 16682 {rgb=(.7 .4 .4)} Face 23791 8095 8050 16682 {rgb=(.7 .4 .4)} Face 23792 8050 8048 16682 {rgb=(.7 .4 .4)} Face 23793 8031 8088 16683 {rgb=(.7 .4 .4)} Face 23794 8088 8040 16683 {rgb=(.7 .4 .4)} Face 23795 8040 7985 16683 {rgb=(.7 .4 .4)} Face 23796 7985 8031 16683 {rgb=(.7 .4 .4)} Face 23797 8143 8175 16684 {rgb=(.7 .4 .4)} Face 23798 8175 8126 16684 {rgb=(.7 .4 .4)} Face 23799 8126 8089 16684 {rgb=(.7 .4 .4)} Face 23800 8089 8143 16684 {rgb=(.7 .4 .4)} Face 23801 8198 8209 16685 {rgb=(.7 .4 .4)} Face 23802 8209 8174 16685 {rgb=(.7 .4 .4)} Face 23803 8174 8153 16685 {rgb=(.7 .4 .4)} Face 23804 8153 8198 16685 {rgb=(.7 .4 .4)} Face 23805 8230 8257 16686 {rgb=(.7 .4 .4)} Face 23806 8257 8253 16686 {rgb=(.7 .4 .4)} Face 23807 8253 8210 16686 {rgb=(.7 .4 .4)} Face 23808 8210 8230 16686 {rgb=(.7 .4 .4)} Face 23809 8294 8341 16687 {rgb=(.7 .4 .4)} Face 23810 8341 8377 16687 {rgb=(.7 .4 .4)} Face 23811 8377 8313 16687 {rgb=(.7 .4 .4)} Face 23812 8313 8294 16687 {rgb=(.7 .4 .4)} Face 23813 5633 5641 16688 {rgb=(.7 .4 .4)} Face 23814 5641 5932 16688 {rgb=(.7 .4 .4)} Face 23815 5932 5916 16688 {rgb=(.7 .4 .4)} Face 23816 5916 5633 16688 {rgb=(.7 .4 .4)} Face 23817 6307 6362 16689 {rgb=(.7 .4 .4)} Face 23818 6362 6859 16689 {rgb=(.7 .4 .4)} Face 23819 6859 6771 16689 {rgb=(.7 .4 .4)} Face 23820 6771 6307 16689 {rgb=(.7 .4 .4)} Face 23821 7025 7115 16690 {rgb=(.7 .4 .4)} Face 23822 7115 7249 16690 {rgb=(.7 .4 .4)} Face 23823 7249 7148 16690 {rgb=(.7 .4 .4)} Face 23824 7148 7025 16690 {rgb=(.7 .4 .4)} Face 23825 7313 7387 16691 {rgb=(.7 .4 .4)} Face 23826 7387 7508 16691 {rgb=(.7 .4 .4)} Face 23827 7508 7472 16691 {rgb=(.7 .4 .4)} Face 23828 7472 7313 16691 {rgb=(.7 .4 .4)} Face 23829 7636 7659 16692 {rgb=(.7 .4 .4)} Face 23830 7659 7835 16692 {rgb=(.7 .4 .4)} Face 23831 7835 7811 16692 {rgb=(.7 .4 .4)} Face 23832 7811 7636 16692 {rgb=(.7 .4 .4)} Face 23833 7919 8026 16693 {rgb=(.7 .4 .4)} Face 23834 8026 8039 16693 {rgb=(.7 .4 .4)} Face 23835 8039 7907 16693 {rgb=(.7 .4 .4)} Face 23836 7907 7919 16693 {rgb=(.7 .4 .4)} Face 23837 7876 7957 16694 {rgb=(.7 .4 .4)} Face 23838 7957 7924 16694 {rgb=(.7 .4 .4)} Face 23839 7924 7860 16694 {rgb=(.7 .4 .4)} Face 23840 7860 7876 16694 {rgb=(.7 .4 .4)} Face 23841 5651 5662 16695 {rgb=(.7 .4 .4)} Face 23842 5662 5977 16695 {rgb=(.7 .4 .4)} Face 23843 5977 5953 16695 {rgb=(.7 .4 .4)} Face 23844 5953 5651 16695 {rgb=(.7 .4 .4)} Face 23845 5658 5639 16696 {rgb=(.7 .4 .4)} Face 23846 5639 5929 16696 {rgb=(.7 .4 .4)} Face 23847 5929 5968 16696 {rgb=(.7 .4 .4)} Face 23848 5968 5658 16696 {rgb=(.7 .4 .4)} Face 23849 6287 6326 16697 {rgb=(.7 .4 .4)} Face 23850 6326 6703 16697 {rgb=(.7 .4 .4)} Face 23851 6703 6655 16697 {rgb=(.7 .4 .4)} Face 23852 6655 6287 16697 {rgb=(.7 .4 .4)} Face 23853 6333 6302 16698 {rgb=(.7 .4 .4)} Face 23854 6302 6742 16698 {rgb=(.7 .4 .4)} Face 23855 6742 6727 16698 {rgb=(.7 .4 .4)} Face 23856 6727 6333 16698 {rgb=(.7 .4 .4)} Face 23857 6922 6969 16699 {rgb=(.7 .4 .4)} Face 23858 6969 7075 16699 {rgb=(.7 .4 .4)} Face 23859 7075 7011 16699 {rgb=(.7 .4 .4)} Face 23860 7011 6922 16699 {rgb=(.7 .4 .4)} Face 23861 6923 7031 16700 {rgb=(.7 .4 .4)} Face 23862 7031 7189 16700 {rgb=(.7 .4 .4)} Face 23863 7189 7076 16700 {rgb=(.7 .4 .4)} Face 23864 7076 6923 16700 {rgb=(.7 .4 .4)} Face 23865 7134 7212 16701 {rgb=(.7 .4 .4)} Face 23866 7212 7411 16701 {rgb=(.7 .4 .4)} Face 23867 7411 7324 16701 {rgb=(.7 .4 .4)} Face 23868 7324 7134 16701 {rgb=(.7 .4 .4)} Face 23869 7445 7555 16702 {rgb=(.7 .4 .4)} Face 23870 7555 7706 16702 {rgb=(.7 .4 .4)} Face 23871 7706 7509 16702 {rgb=(.7 .4 .4)} Face 23872 7509 7445 16702 {rgb=(.7 .4 .4)} Face 23873 7176 7364 16703 {rgb=(.7 .4 .4)} Face 23874 7364 7347 16703 {rgb=(.7 .4 .4)} Face 23875 7347 7180 16703 {rgb=(.7 .4 .4)} Face 23876 7180 7176 16703 {rgb=(.7 .4 .4)} Face 23877 7538 7767 16704 {rgb=(.7 .4 .4)} Face 23878 7767 7737 16704 {rgb=(.7 .4 .4)} Face 23879 7737 7512 16704 {rgb=(.7 .4 .4)} Face 23880 7512 7538 16704 {rgb=(.7 .4 .4)} Face 23881 7144 7327 16705 {rgb=(.7 .4 .4)} Face 23882 7327 7312 16705 {rgb=(.7 .4 .4)} Face 23883 7312 7047 16705 {rgb=(.7 .4 .4)} Face 23884 7047 7144 16705 {rgb=(.7 .4 .4)} Face 23885 7502 7720 16706 {rgb=(.7 .4 .4)} Face 23886 7720 7717 16706 {rgb=(.7 .4 .4)} Face 23887 7717 7505 16706 {rgb=(.7 .4 .4)} Face 23888 7505 7502 16706 {rgb=(.7 .4 .4)} Face 23889 6712 6299 16707 {rgb=(.7 .4 .4)} Face 23890 6299 6304 16707 {rgb=(.7 .4 .4)} Face 23891 6304 6744 16707 {rgb=(.7 .4 .4)} Face 23892 6744 6712 16707 {rgb=(.7 .4 .4)} Face 23893 6776 6320 16708 {rgb=(.7 .4 .4)} Face 23894 6320 6353 16708 {rgb=(.7 .4 .4)} Face 23895 6353 6843 16708 {rgb=(.7 .4 .4)} Face 23896 6843 6776 16708 {rgb=(.7 .4 .4)} Face 23897 5950 5664 16709 {rgb=(.7 .4 .4)} Face 23898 5664 5661 16709 {rgb=(.7 .4 .4)} Face 23899 5661 5941 16709 {rgb=(.7 .4 .4)} Face 23900 5941 5950 16709 {rgb=(.7 .4 .4)} Face 23901 5935 5659 16710 {rgb=(.7 .4 .4)} Face 23902 5659 5660 16710 {rgb=(.7 .4 .4)} Face 23903 5660 5938 16710 {rgb=(.7 .4 .4)} Face 23904 5938 5935 16710 {rgb=(.7 .4 .4)} Face 23905 5587 5583 16711 {rgb=(.7 .4 .4)} Face 23906 5583 5701 16711 {rgb=(.7 .4 .4)} Face 23907 5701 5728 16711 {rgb=(.7 .4 .4)} Face 23908 5728 5587 16711 {rgb=(.7 .4 .4)} Face 23909 5578 5566 16712 {rgb=(.7 .4 .4)} Face 23910 5566 5655 16712 {rgb=(.7 .4 .4)} Face 23911 5655 5681 16712 {rgb=(.7 .4 .4)} Face 23912 5681 5578 16712 {rgb=(.7 .4 .4)} Face 23913 5784 5765 16713 {rgb=(.7 .4 .4)} Face 23914 5765 5896 16713 {rgb=(.7 .4 .4)} Face 23915 5896 5893 16713 {rgb=(.7 .4 .4)} Face 23916 5893 5784 16713 {rgb=(.7 .4 .4)} Face 23917 5708 5828 16714 {rgb=(.7 .4 .4)} Face 23918 5828 5954 16714 {rgb=(.7 .4 .4)} Face 23919 5954 5945 16714 {rgb=(.7 .4 .4)} Face 23920 5945 5708 16714 {rgb=(.7 .4 .4)} Face 23921 5899 5995 16715 {rgb=(.7 .4 .4)} Face 23922 5995 6159 16715 {rgb=(.7 .4 .4)} Face 23923 6159 6028 16715 {rgb=(.7 .4 .4)} Face 23924 6028 5899 16715 {rgb=(.7 .4 .4)} Face 23925 6047 6071 16716 {rgb=(.7 .4 .4)} Face 23926 6071 6310 16716 {rgb=(.7 .4 .4)} Face 23927 6310 6276 16716 {rgb=(.7 .4 .4)} Face 23928 6276 6047 16716 {rgb=(.7 .4 .4)} Face 23929 6196 6402 16717 {rgb=(.7 .4 .4)} Face 23930 6402 6653 16717 {rgb=(.7 .4 .4)} Face 23931 6653 6489 16717 {rgb=(.7 .4 .4)} Face 23932 6489 6196 16717 {rgb=(.7 .4 .4)} Face 23933 6546 6586 16718 {rgb=(.7 .4 .4)} Face 23934 6586 6750 16718 {rgb=(.7 .4 .4)} Face 23935 6750 6737 16718 {rgb=(.7 .4 .4)} Face 23936 6737 6546 16718 {rgb=(.7 .4 .4)} Face 23937 6451 6598 16719 {rgb=(.7 .4 .4)} Face 23938 6598 6853 16719 {rgb=(.7 .4 .4)} Face 23939 6853 6860 16719 {rgb=(.7 .4 .4)} Face 23940 6860 6451 16719 {rgb=(.7 .4 .4)} Face 23941 6719 6834 16720 {rgb=(.7 .4 .4)} Face 23942 6834 6997 16720 {rgb=(.7 .4 .4)} Face 23943 6997 6902 16720 {rgb=(.7 .4 .4)} Face 23944 6902 6719 16720 {rgb=(.7 .4 .4)} Face 23945 6907 6924 16721 {rgb=(.7 .4 .4)} Face 23946 6924 7083 16721 {rgb=(.7 .4 .4)} Face 23947 7083 7052 16721 {rgb=(.7 .4 .4)} Face 23948 7052 6907 16721 {rgb=(.7 .4 .4)} Face 23949 7040 7143 16722 {rgb=(.7 .4 .4)} Face 23950 7143 7293 16722 {rgb=(.7 .4 .4)} Face 23951 7293 7171 16722 {rgb=(.7 .4 .4)} Face 23952 7171 7040 16722 {rgb=(.7 .4 .4)} Face 23953 7202 7287 16723 {rgb=(.7 .4 .4)} Face 23954 7287 7454 16723 {rgb=(.7 .4 .4)} Face 23955 7454 7377 16723 {rgb=(.7 .4 .4)} Face 23956 7377 7202 16723 {rgb=(.7 .4 .4)} Face 23957 7646 7896 16724 {rgb=(.7 .4 .4)} Face 23958 7896 7857 16724 {rgb=(.7 .4 .4)} Face 23959 7857 7567 16724 {rgb=(.7 .4 .4)} Face 23960 7567 7646 16724 {rgb=(.7 .4 .4)} Face 23961 8155 8301 16725 {rgb=(.7 .4 .4)} Face 23962 8301 8312 16725 {rgb=(.7 .4 .4)} Face 23963 8312 8140 16725 {rgb=(.7 .4 .4)} Face 23964 8140 8155 16725 {rgb=(.7 .4 .4)} Face 23965 7490 7805 16726 {rgb=(.7 .4 .4)} Face 23966 7805 7745 16726 {rgb=(.7 .4 .4)} Face 23967 7745 7421 16726 {rgb=(.7 .4 .4)} Face 23968 7421 7490 16726 {rgb=(.7 .4 .4)} Face 23969 8117 8337 16727 {rgb=(.7 .4 .4)} Face 23970 8337 8369 16727 {rgb=(.7 .4 .4)} Face 23971 8369 8094 16727 {rgb=(.7 .4 .4)} Face 23972 8094 8117 16727 {rgb=(.7 .4 .4)} Face 23973 7358 7694 16728 {rgb=(.7 .4 .4)} Face 23974 7694 7653 16728 {rgb=(.7 .4 .4)} Face 23975 7653 7297 16728 {rgb=(.7 .4 .4)} Face 23976 7297 7358 16728 {rgb=(.7 .4 .4)} Face 23977 8057 8386 16729 {rgb=(.7 .4 .4)} Face 23978 8386 8379 16729 {rgb=(.7 .4 .4)} Face 23979 8379 8035 16729 {rgb=(.7 .4 .4)} Face 23980 8035 8057 16729 {rgb=(.7 .4 .4)} Face 23981 7210 7617 16730 {rgb=(.7 .4 .4)} Face 23982 7617 7561 16730 {rgb=(.7 .4 .4)} Face 23983 7561 7157 16730 {rgb=(.7 .4 .4)} Face 23984 7157 7210 16730 {rgb=(.7 .4 .4)} Face 23985 7998 8368 16731 {rgb=(.7 .4 .4)} Face 23986 8368 8350 16731 {rgb=(.7 .4 .4)} Face 23987 8350 7956 16731 {rgb=(.7 .4 .4)} Face 23988 7956 7998 16731 {rgb=(.7 .4 .4)} Face 23989 7103 7523 16732 {rgb=(.7 .4 .4)} Face 23990 7523 7497 16732 {rgb=(.7 .4 .4)} Face 23991 7497 7050 16732 {rgb=(.7 .4 .4)} Face 23992 7050 7103 16732 {rgb=(.7 .4 .4)} Face 23993 7916 8318 16733 {rgb=(.7 .4 .4)} Face 23994 8318 8272 16733 {rgb=(.7 .4 .4)} Face 23995 8272 7890 16733 {rgb=(.7 .4 .4)} Face 23996 7890 7916 16733 {rgb=(.7 .4 .4)} Face 23997 6810 7335 16734 {rgb=(.7 .4 .4)} Face 23998 7335 7016 16734 {rgb=(.7 .4 .4)} Face 23999 7016 6236 16734 {rgb=(.7 .4 .4)} Face 24000 6236 6810 16734 {rgb=(.7 .4 .4)} Face 24001 7739 8118 16735 {rgb=(.7 .4 .4)} Face 24002 8118 7813 16735 {rgb=(.7 .4 .4)} Face 24003 7813 7496 16735 {rgb=(.7 .4 .4)} Face 24004 7496 7739 16735 {rgb=(.7 .4 .4)} Face 24005 5927 6805 16736 {rgb=(.7 .4 .4)} Face 24006 6805 6710 16736 {rgb=(.7 .4 .4)} Face 24007 6710 5881 16736 {rgb=(.7 .4 .4)} Face 24008 5881 5927 16736 {rgb=(.7 .4 .4)} Face 24009 7300 7541 16737 {rgb=(.7 .4 .4)} Face 24010 7541 7294 16737 {rgb=(.7 .4 .4)} Face 24011 7294 7088 16737 {rgb=(.7 .4 .4)} Face 24012 7088 7300 16737 {rgb=(.7 .4 .4)} Face 24013 8408 8460 16738 {rgb=(.7 .4 .4)} Face 24014 8460 8462 16738 {rgb=(.7 .4 .4)} Face 24015 8462 8418 16738 {rgb=(.7 .4 .4)} Face 24016 8418 8408 16738 {rgb=(.7 .4 .4)} Face 24017 8449 8508 16739 {rgb=(.7 .4 .4)} Face 24018 8508 8628 16739 {rgb=(.7 .4 .4)} Face 24019 8628 8532 16739 {rgb=(.7 .4 .4)} Face 24020 8532 8449 16739 {rgb=(.7 .4 .4)} Face 24021 8588 8727 16740 {rgb=(.7 .4 .4)} Face 24022 8727 8770 16740 {rgb=(.7 .4 .4)} Face 24023 8770 8598 16740 {rgb=(.7 .4 .4)} Face 24024 8598 8588 16740 {rgb=(.7 .4 .4)} Face 24025 8599 8792 16741 {rgb=(.7 .4 .4)} Face 24026 8792 8800 16741 {rgb=(.7 .4 .4)} Face 24027 8800 8589 16741 {rgb=(.7 .4 .4)} Face 24028 8589 8599 16741 {rgb=(.7 .4 .4)} Face 24029 8559 8766 16742 {rgb=(.7 .4 .4)} Face 24030 8766 8677 16742 {rgb=(.7 .4 .4)} Face 24031 8677 8499 16742 {rgb=(.7 .4 .4)} Face 24032 8499 8559 16742 {rgb=(.7 .4 .4)} Face 24033 8375 8577 16743 {rgb=(.7 .4 .4)} Face 24034 8577 8453 16743 {rgb=(.7 .4 .4)} Face 24035 8453 8180 16743 {rgb=(.7 .4 .4)} Face 24036 8180 8375 16743 {rgb=(.7 .4 .4)} Face 24037 7877 8321 16744 {rgb=(.7 .4 .4)} Face 24038 8321 8132 16744 {rgb=(.7 .4 .4)} Face 24039 8132 7600 16744 {rgb=(.7 .4 .4)} Face 24040 7600 7877 16744 {rgb=(.7 .4 .4)} Face 24041 6690 6799 16745 {rgb=(.7 .4 .4)} Face 24042 6799 7245 16745 {rgb=(.7 .4 .4)} Face 24043 7245 7133 16745 {rgb=(.7 .4 .4)} Face 24044 7133 6690 16745 {rgb=(.7 .4 .4)} Face 24045 7014 7326 16746 {rgb=(.7 .4 .4)} Face 24046 7326 7542 16746 {rgb=(.7 .4 .4)} Face 24047 7542 7390 16746 {rgb=(.7 .4 .4)} Face 24048 7390 7014 16746 {rgb=(.7 .4 .4)} Face 24049 7506 7589 16747 {rgb=(.7 .4 .4)} Face 24050 7589 7851 16747 {rgb=(.7 .4 .4)} Face 24051 7851 7793 16747 {rgb=(.7 .4 .4)} Face 24052 7793 7506 16747 {rgb=(.7 .4 .4)} Face 24053 7667 7757 16748 {rgb=(.7 .4 .4)} Face 24054 7757 7946 16748 {rgb=(.7 .4 .4)} Face 24055 7946 7899 16748 {rgb=(.7 .4 .4)} Face 24056 7899 7667 16748 {rgb=(.7 .4 .4)} Face 24057 7991 8028 16749 {rgb=(.7 .4 .4)} Face 24058 8028 8005 16749 {rgb=(.7 .4 .4)} Face 24059 8005 8030 16749 {rgb=(.7 .4 .4)} Face 24060 8030 7991 16749 {rgb=(.7 .4 .4)} Face 24061 8055 8098 16750 {rgb=(.7 .4 .4)} Face 24062 8098 8130 16750 {rgb=(.7 .4 .4)} Face 24063 8130 8038 16750 {rgb=(.7 .4 .4)} Face 24064 8038 8055 16750 {rgb=(.7 .4 .4)} Face 24065 8067 8192 16751 {rgb=(.7 .4 .4)} Face 24066 8192 8311 16751 {rgb=(.7 .4 .4)} Face 24067 8311 8228 16751 {rgb=(.7 .4 .4)} Face 24068 8228 8067 16751 {rgb=(.7 .4 .4)} Face 24069 8323 8411 16752 {rgb=(.7 .4 .4)} Face 24070 8411 8480 16752 {rgb=(.7 .4 .4)} Face 24071 8480 8412 16752 {rgb=(.7 .4 .4)} Face 24072 8412 8323 16752 {rgb=(.7 .4 .4)} Face 24073 8465 8551 16753 {rgb=(.7 .4 .4)} Face 24074 8551 8623 16753 {rgb=(.7 .4 .4)} Face 24075 8623 8511 16753 {rgb=(.7 .4 .4)} Face 24076 8511 8465 16753 {rgb=(.7 .4 .4)} Face 24077 8516 8627 16754 {rgb=(.7 .4 .4)} Face 24078 8627 8562 16754 {rgb=(.7 .4 .4)} Face 24079 8562 8483 16754 {rgb=(.7 .4 .4)} Face 24080 8483 8516 16754 {rgb=(.7 .4 .4)} Face 24081 8439 8498 16755 {rgb=(.7 .4 .4)} Face 24082 8498 8442 16755 {rgb=(.7 .4 .4)} Face 24083 8442 8387 16755 {rgb=(.7 .4 .4)} Face 24084 8387 8439 16755 {rgb=(.7 .4 .4)} Face 24085 8340 8415 16756 {rgb=(.7 .4 .4)} Face 24086 8415 8384 16756 {rgb=(.7 .4 .4)} Face 24087 8384 8299 16756 {rgb=(.7 .4 .4)} Face 24088 8299 8340 16756 {rgb=(.7 .4 .4)} Face 24089 8283 8370 16757 {rgb=(.7 .4 .4)} Face 24090 8370 8380 16757 {rgb=(.7 .4 .4)} Face 24091 8380 8298 16757 {rgb=(.7 .4 .4)} Face 24092 8298 8283 16757 {rgb=(.7 .4 .4)} Face 24093 8334 8405 16758 {rgb=(.7 .4 .4)} Face 24094 8405 8432 16758 {rgb=(.7 .4 .4)} Face 24095 8432 8392 16758 {rgb=(.7 .4 .4)} Face 24096 8392 8334 16758 {rgb=(.7 .4 .4)} Face 24097 8450 8490 16759 {rgb=(.7 .4 .4)} Face 24098 8490 8595 16759 {rgb=(.7 .4 .4)} Face 24099 8595 8554 16759 {rgb=(.7 .4 .4)} Face 24100 8554 8450 16759 {rgb=(.7 .4 .4)} Face 24101 8586 8782 16760 {rgb=(.7 .4 .4)} Face 24102 8782 8833 16760 {rgb=(.7 .4 .4)} Face 24103 8833 8639 16760 {rgb=(.7 .4 .4)} Face 24104 8639 8586 16760 {rgb=(.7 .4 .4)} Face 24105 8669 8624 16761 {rgb=(.7 .4 .4)} Face 24106 8624 8570 16761 {rgb=(.7 .4 .4)} Face 24107 8570 8600 16761 {rgb=(.7 .4 .4)} Face 24108 8600 8669 16761 {rgb=(.7 .4 .4)} Face 24109 8784 8901 16762 {rgb=(.7 .4 .4)} Face 24110 8901 8814 16762 {rgb=(.7 .4 .4)} Face 24111 8814 8709 16762 {rgb=(.7 .4 .4)} Face 24112 8709 8784 16762 {rgb=(.7 .4 .4)} Face 24113 8888 8900 16763 {rgb=(.7 .4 .4)} Face 24114 8900 9052 16763 {rgb=(.7 .4 .4)} Face 24115 9052 9042 16763 {rgb=(.7 .4 .4)} Face 24116 9042 8888 16763 {rgb=(.7 .4 .4)} Face 24117 9019 8989 16764 {rgb=(.7 .4 .4)} Face 24118 8989 8827 16764 {rgb=(.7 .4 .4)} Face 24119 8827 8868 16764 {rgb=(.7 .4 .4)} Face 24120 8868 9019 16764 {rgb=(.7 .4 .4)} Face 24121 8579 8689 16765 {rgb=(.7 .4 .4)} Face 24122 8689 8655 16765 {rgb=(.7 .4 .4)} Face 24123 8655 8546 16765 {rgb=(.7 .4 .4)} Face 24124 8546 8579 16765 {rgb=(.7 .4 .4)} Face 24125 8488 8512 16766 {rgb=(.7 .4 .4)} Face 24126 8512 8621 16766 {rgb=(.7 .4 .4)} Face 24127 8621 8587 16766 {rgb=(.7 .4 .4)} Face 24128 8587 8488 16766 {rgb=(.7 .4 .4)} Face 24129 8706 8777 16767 {rgb=(.7 .4 .4)} Face 24130 8777 8937 16767 {rgb=(.7 .4 .4)} Face 24131 8937 8844 16767 {rgb=(.7 .4 .4)} Face 24132 8844 8706 16767 {rgb=(.7 .4 .4)} Face 24133 8801 8796 16768 {rgb=(.7 .4 .4)} Face 24134 8796 8653 16768 {rgb=(.7 .4 .4)} Face 24135 8653 8667 16768 {rgb=(.7 .4 .4)} Face 24136 8667 8801 16768 {rgb=(.7 .4 .4)} Face 24137 8468 8567 16769 {rgb=(.7 .4 .4)} Face 24138 8567 8561 16769 {rgb=(.7 .4 .4)} Face 24139 8561 8471 16769 {rgb=(.7 .4 .4)} Face 24140 8471 8468 16769 {rgb=(.7 .4 .4)} Face 24141 9037 8975 16770 {rgb=(.7 .4 .4)} Face 24142 8975 8939 16770 {rgb=(.7 .4 .4)} Face 24143 8939 9022 16770 {rgb=(.7 .4 .4)} Face 24144 9022 9037 16770 {rgb=(.7 .4 .4)} Face 24145 9021 8920 16771 {rgb=(.7 .4 .4)} Face 24146 8920 8926 16771 {rgb=(.7 .4 .4)} Face 24147 8926 9031 16771 {rgb=(.7 .4 .4)} Face 24148 9031 9021 16771 {rgb=(.7 .4 .4)} Face 24149 9076 8968 16772 {rgb=(.7 .4 .4)} Face 24150 8968 9039 16772 {rgb=(.7 .4 .4)} Face 24151 9039 9151 16772 {rgb=(.7 .4 .4)} Face 24152 9151 9076 16772 {rgb=(.7 .4 .4)} Face 24153 9208 9124 16773 {rgb=(.7 .4 .4)} Face 24154 9124 9160 16773 {rgb=(.7 .4 .4)} Face 24155 9160 9249 16773 {rgb=(.7 .4 .4)} Face 24156 9249 9208 16773 {rgb=(.7 .4 .4)} Face 24157 9269 9192 16774 {rgb=(.7 .4 .4)} Face 24158 9192 9217 16774 {rgb=(.7 .4 .4)} Face 24159 9217 9286 16774 {rgb=(.7 .4 .4)} Face 24160 9286 9269 16774 {rgb=(.7 .4 .4)} Face 24161 9295 9218 16775 {rgb=(.7 .4 .4)} Face 24162 9218 9198 16775 {rgb=(.7 .4 .4)} Face 24163 9198 9305 16775 {rgb=(.7 .4 .4)} Face 24164 9305 9295 16775 {rgb=(.7 .4 .4)} Face 24165 9311 9230 16776 {rgb=(.7 .4 .4)} Face 24166 9230 9270 16776 {rgb=(.7 .4 .4)} Face 24167 9270 9321 16776 {rgb=(.7 .4 .4)} Face 24168 9321 9311 16776 {rgb=(.7 .4 .4)} Face 24169 9322 9274 16777 {rgb=(.7 .4 .4)} Face 24170 9274 9256 16777 {rgb=(.7 .4 .4)} Face 24171 9256 9312 16777 {rgb=(.7 .4 .4)} Face 24172 9312 9322 16777 {rgb=(.7 .4 .4)} Face 24173 8838 8935 16778 {rgb=(.7 .4 .4)} Face 24174 8935 8938 16778 {rgb=(.7 .4 .4)} Face 24175 8938 8876 16778 {rgb=(.7 .4 .4)} Face 24176 8876 8838 16778 {rgb=(.7 .4 .4)} Face 24177 8825 8817 16779 {rgb=(.7 .4 .4)} Face 24178 8817 8928 16779 {rgb=(.7 .4 .4)} Face 24179 8928 8934 16779 {rgb=(.7 .4 .4)} Face 24180 8934 8825 16779 {rgb=(.7 .4 .4)} Face 24181 8834 8913 16780 {rgb=(.7 .4 .4)} Face 24182 8913 9012 16780 {rgb=(.7 .4 .4)} Face 24183 9012 8959 16780 {rgb=(.7 .4 .4)} Face 24184 8959 8834 16780 {rgb=(.7 .4 .4)} Face 24185 8966 9005 16781 {rgb=(.7 .4 .4)} Face 24186 9005 9139 16781 {rgb=(.7 .4 .4)} Face 24187 9139 9078 16781 {rgb=(.7 .4 .4)} Face 24188 9078 8966 16781 {rgb=(.7 .4 .4)} Face 24189 9120 9255 16782 {rgb=(.7 .4 .4)} Face 24190 9255 9200 16782 {rgb=(.7 .4 .4)} Face 24191 9200 9056 16782 {rgb=(.7 .4 .4)} Face 24192 9056 9120 16782 {rgb=(.7 .4 .4)} Face 24193 9287 9170 16783 {rgb=(.7 .4 .4)} Face 24194 9170 9199 16783 {rgb=(.7 .4 .4)} Face 24195 9199 9289 16783 {rgb=(.7 .4 .4)} Face 24196 9289 9287 16783 {rgb=(.7 .4 .4)} Face 24197 8863 9032 16784 {rgb=(.7 .4 .4)} Face 24198 9032 9070 16784 {rgb=(.7 .4 .4)} Face 24199 9070 8881 16784 {rgb=(.7 .4 .4)} Face 24200 8881 8863 16784 {rgb=(.7 .4 .4)} Face 24201 8882 9086 16785 {rgb=(.7 .4 .4)} Face 24202 9086 9067 16785 {rgb=(.7 .4 .4)} Face 24203 9067 8873 16785 {rgb=(.7 .4 .4)} Face 24204 8873 8882 16785 {rgb=(.7 .4 .4)} Face 24205 9220 9222 16786 {rgb=(.7 .4 .4)} Face 24206 9222 9285 16786 {rgb=(.7 .4 .4)} Face 24207 9285 9288 16786 {rgb=(.7 .4 .4)} Face 24208 9288 9220 16786 {rgb=(.7 .4 .4)} Face 24209 8972 9008 16787 {rgb=(.7 .4 .4)} Face 24210 9008 8931 16787 {rgb=(.7 .4 .4)} Face 24211 8931 8886 16787 {rgb=(.7 .4 .4)} Face 24212 8886 8972 16787 {rgb=(.7 .4 .4)} Face 24213 9138 9188 16788 {rgb=(.7 .4 .4)} Face 24214 9188 9239 16788 {rgb=(.7 .4 .4)} Face 24215 9239 9183 16788 {rgb=(.7 .4 .4)} Face 24216 9183 9138 16788 {rgb=(.7 .4 .4)} Face 24217 9187 9196 16789 {rgb=(.7 .4 .4)} Face 24218 9196 9263 16789 {rgb=(.7 .4 .4)} Face 24219 9263 9267 16789 {rgb=(.7 .4 .4)} Face 24220 9267 9187 16789 {rgb=(.7 .4 .4)} Face 24221 9276 9282 16790 {rgb=(.7 .4 .4)} Face 24222 9282 9215 16790 {rgb=(.7 .4 .4)} Face 24223 9215 9190 16790 {rgb=(.7 .4 .4)} Face 24224 9190 9276 16790 {rgb=(.7 .4 .4)} Face 24225 9207 9229 16791 {rgb=(.7 .4 .4)} Face 24226 9229 9194 16791 {rgb=(.7 .4 .4)} Face 24227 9194 9177 16791 {rgb=(.7 .4 .4)} Face 24228 9177 9207 16791 {rgb=(.7 .4 .4)} Face 24229 8981 9132 16792 {rgb=(.7 .4 .4)} Face 24230 9132 9121 16792 {rgb=(.7 .4 .4)} Face 24231 9121 8998 16792 {rgb=(.7 .4 .4)} Face 24232 8998 8981 16792 {rgb=(.7 .4 .4)} Face 24233 9107 9143 16793 {rgb=(.7 .4 .4)} Face 24234 9143 9169 16793 {rgb=(.7 .4 .4)} Face 24235 9169 9140 16793 {rgb=(.7 .4 .4)} Face 24236 9140 9107 16793 {rgb=(.7 .4 .4)} Face 24237 9163 9191 16794 {rgb=(.7 .4 .4)} Face 24238 9191 9203 16794 {rgb=(.7 .4 .4)} Face 24239 9203 9152 16794 {rgb=(.7 .4 .4)} Face 24240 9152 9163 16794 {rgb=(.7 .4 .4)} Face 24241 9159 9223 16795 {rgb=(.7 .4 .4)} Face 24242 9223 9240 16795 {rgb=(.7 .4 .4)} Face 24243 9240 9185 16795 {rgb=(.7 .4 .4)} Face 24244 9185 9159 16795 {rgb=(.7 .4 .4)} Face 24245 9178 9233 16796 {rgb=(.7 .4 .4)} Face 24246 9233 9193 16796 {rgb=(.7 .4 .4)} Face 24247 9193 9142 16796 {rgb=(.7 .4 .4)} Face 24248 9142 9178 16796 {rgb=(.7 .4 .4)} Face 24249 9114 9154 16797 {rgb=(.7 .4 .4)} Face 24250 9154 9129 16797 {rgb=(.7 .4 .4)} Face 24251 9129 9082 16797 {rgb=(.7 .4 .4)} Face 24252 9082 9114 16797 {rgb=(.7 .4 .4)} Face 24253 9044 9049 16798 {rgb=(.7 .4 .4)} Face 24254 9049 9058 16798 {rgb=(.7 .4 .4)} Face 24255 9058 9089 16798 {rgb=(.7 .4 .4)} Face 24256 9089 9044 16798 {rgb=(.7 .4 .4)} Face 24257 9002 8843 16799 {rgb=(.7 .4 .4)} Face 24258 8843 8842 16799 {rgb=(.7 .4 .4)} Face 24259 8842 8983 16799 {rgb=(.7 .4 .4)} Face 24260 8983 9002 16799 {rgb=(.7 .4 .4)} Face 24261 8866 8892 16800 {rgb=(.7 .4 .4)} Face 24262 8892 8984 16800 {rgb=(.7 .4 .4)} Face 24263 8984 8978 16800 {rgb=(.7 .4 .4)} Face 24264 8978 8866 16800 {rgb=(.7 .4 .4)} Face 24265 9028 9035 16801 {rgb=(.7 .4 .4)} Face 24266 9035 9065 16801 {rgb=(.7 .4 .4)} Face 24267 9065 9053 16801 {rgb=(.7 .4 .4)} Face 24268 9053 9028 16801 {rgb=(.7 .4 .4)} Face 24269 9105 9133 16802 {rgb=(.7 .4 .4)} Face 24270 9133 9189 16802 {rgb=(.7 .4 .4)} Face 24271 9189 9162 16802 {rgb=(.7 .4 .4)} Face 24272 9162 9105 16802 {rgb=(.7 .4 .4)} Face 24273 9226 9242 16803 {rgb=(.7 .4 .4)} Face 24274 9242 9266 16803 {rgb=(.7 .4 .4)} Face 24275 9266 9262 16803 {rgb=(.7 .4 .4)} Face 24276 9262 9226 16803 {rgb=(.7 .4 .4)} Face 24277 9279 9284 16804 {rgb=(.7 .4 .4)} Face 24278 9284 9301 16804 {rgb=(.7 .4 .4)} Face 24279 9301 9292 16804 {rgb=(.7 .4 .4)} Face 24280 9292 9279 16804 {rgb=(.7 .4 .4)} Face 24281 9303 9318 16805 {rgb=(.7 .4 .4)} Face 24282 9318 9326 16805 {rgb=(.7 .4 .4)} Face 24283 9326 9310 16805 {rgb=(.7 .4 .4)} Face 24284 9310 9303 16805 {rgb=(.7 .4 .4)} Face 24285 9315 9331 16806 {rgb=(.7 .4 .4)} Face 24286 9331 9330 16806 {rgb=(.7 .4 .4)} Face 24287 9330 9316 16806 {rgb=(.7 .4 .4)} Face 24288 9316 9315 16806 {rgb=(.7 .4 .4)} Face 24289 9320 9329 16807 {rgb=(.7 .4 .4)} Face 24290 9329 9328 16807 {rgb=(.7 .4 .4)} Face 24291 9328 9323 16807 {rgb=(.7 .4 .4)} Face 24292 9323 9320 16807 {rgb=(.7 .4 .4)} Face 24293 9314 9324 16808 {rgb=(.7 .4 .4)} Face 24294 9324 9299 16808 {rgb=(.7 .4 .4)} Face 24295 9299 9300 16808 {rgb=(.7 .4 .4)} Face 24296 9300 9314 16808 {rgb=(.7 .4 .4)} Face 24297 9281 9278 16809 {rgb=(.7 .4 .4)} Face 24298 9278 9259 16809 {rgb=(.7 .4 .4)} Face 24299 9259 9258 16809 {rgb=(.7 .4 .4)} Face 24300 9258 9281 16809 {rgb=(.7 .4 .4)} Face 24301 9149 9206 16810 {rgb=(.7 .4 .4)} Face 24302 9206 9219 16810 {rgb=(.7 .4 .4)} Face 24303 9219 9153 16810 {rgb=(.7 .4 .4)} Face 24304 9153 9149 16810 {rgb=(.7 .4 .4)} Face 24305 9090 9001 16811 {rgb=(.7 .4 .4)} Face 24306 9001 8999 16811 {rgb=(.7 .4 .4)} Face 24307 8999 9074 16811 {rgb=(.7 .4 .4)} Face 24308 9074 9090 16811 {rgb=(.7 .4 .4)} Face 24309 9298 9224 16812 {rgb=(.7 .4 .4)} Face 24310 9224 9176 16812 {rgb=(.7 .4 .4)} Face 24311 9176 9275 16812 {rgb=(.7 .4 .4)} Face 24312 9275 9298 16812 {rgb=(.7 .4 .4)} Face 24313 9210 9252 16813 {rgb=(.7 .4 .4)} Face 24314 9252 9135 16813 {rgb=(.7 .4 .4)} Face 24315 9135 9080 16813 {rgb=(.7 .4 .4)} Face 24316 9080 9210 16813 {rgb=(.7 .4 .4)} Face 24317 9119 9161 16814 {rgb=(.7 .4 .4)} Face 24318 9161 9033 16814 {rgb=(.7 .4 .4)} Face 24319 9033 9006 16814 {rgb=(.7 .4 .4)} Face 24320 9006 9119 16814 {rgb=(.7 .4 .4)} Face 24321 3072 3252 16815 {rgb=(.7 .4 .4)} Face 24322 3252 3089 16815 {rgb=(.7 .4 .4)} Face 24323 3089 2883 16815 {rgb=(.7 .4 .4)} Face 24324 2883 3072 16815 {rgb=(.7 .4 .4)} Face 24325 2341 2312 16816 {rgb=(.7 .4 .4)} Face 24326 2312 2078 16816 {rgb=(.7 .4 .4)} Face 24327 2078 2118 16816 {rgb=(.7 .4 .4)} Face 24328 2118 2341 16816 {rgb=(.7 .4 .4)} Face 24329 2276 2242 16817 {rgb=(.7 .4 .4)} Face 24330 2242 2027 16817 {rgb=(.7 .4 .4)} Face 24331 2027 2052 16817 {rgb=(.7 .4 .4)} Face 24332 2052 2276 16817 {rgb=(.7 .4 .4)} Face 24333 2156 2113 16818 {rgb=(.7 .4 .4)} Face 24334 2113 1873 16818 {rgb=(.7 .4 .4)} Face 24335 1873 1944 16818 {rgb=(.7 .4 .4)} Face 24336 1944 2156 16818 {rgb=(.7 .4 .4)} Face 24337 2122 2142 16819 {rgb=(.7 .4 .4)} Face 24338 2142 2008 16819 {rgb=(.7 .4 .4)} Face 24339 2008 1915 16819 {rgb=(.7 .4 .4)} Face 24340 1915 2122 16819 {rgb=(.7 .4 .4)} Face 24341 2698 2637 16820 {rgb=(.7 .4 .4)} Face 24342 2637 2558 16820 {rgb=(.7 .4 .4)} Face 24343 2558 2611 16820 {rgb=(.7 .4 .4)} Face 24344 2611 2698 16820 {rgb=(.7 .4 .4)} Face 24345 2770 2737 16821 {rgb=(.7 .4 .4)} Face 24346 2737 2634 16821 {rgb=(.7 .4 .4)} Face 24347 2634 2654 16821 {rgb=(.7 .4 .4)} Face 24348 2654 2770 16821 {rgb=(.7 .4 .4)} Face 24349 2782 2778 16822 {rgb=(.7 .4 .4)} Face 24350 2778 2670 16822 {rgb=(.7 .4 .4)} Face 24351 2670 2677 16822 {rgb=(.7 .4 .4)} Face 24352 2677 2782 16822 {rgb=(.7 .4 .4)} Face 24353 2717 2771 16823 {rgb=(.7 .4 .4)} Face 24354 2771 2656 16823 {rgb=(.7 .4 .4)} Face 24355 2656 2624 16823 {rgb=(.7 .4 .4)} Face 24356 2624 2717 16823 {rgb=(.7 .4 .4)} Face 24357 2194 2262 16824 {rgb=(.7 .4 .4)} Face 24358 2262 2196 16824 {rgb=(.7 .4 .4)} Face 24359 2196 2084 16824 {rgb=(.7 .4 .4)} Face 24360 2084 2194 16824 {rgb=(.7 .4 .4)} Face 24361 2560 2653 16825 {rgb=(.7 .4 .4)} Face 24362 2653 2590 16825 {rgb=(.7 .4 .4)} Face 24363 2590 2536 16825 {rgb=(.7 .4 .4)} Face 24364 2536 2560 16825 {rgb=(.7 .4 .4)} Face 24365 2359 2357 16826 {rgb=(.7 .4 .4)} Face 24366 2357 2140 16826 {rgb=(.7 .4 .4)} Face 24367 2140 2155 16826 {rgb=(.7 .4 .4)} Face 24368 2155 2359 16826 {rgb=(.7 .4 .4)} Face 24369 2780 2843 16827 {rgb=(.7 .4 .4)} Face 24370 2843 2758 16827 {rgb=(.7 .4 .4)} Face 24371 2758 2708 16827 {rgb=(.7 .4 .4)} Face 24372 2708 2780 16827 {rgb=(.7 .4 .4)} Face 24373 2387 2379 16828 {rgb=(.7 .4 .4)} Face 24374 2379 2218 16828 {rgb=(.7 .4 .4)} Face 24375 2218 2220 16828 {rgb=(.7 .4 .4)} Face 24376 2220 2387 16828 {rgb=(.7 .4 .4)} Face 24377 2375 2364 16829 {rgb=(.7 .4 .4)} Face 24378 2364 2175 16829 {rgb=(.7 .4 .4)} Face 24379 2175 2213 16829 {rgb=(.7 .4 .4)} Face 24380 2213 2375 16829 {rgb=(.7 .4 .4)} Face 24381 2274 2137 16830 {rgb=(.7 .4 .4)} Face 24382 2137 2093 16830 {rgb=(.7 .4 .4)} Face 24383 2093 2138 16830 {rgb=(.7 .4 .4)} Face 24384 2138 2274 16830 {rgb=(.7 .4 .4)} Face 24385 2328 2294 16831 {rgb=(.7 .4 .4)} Face 24386 2294 2261 16831 {rgb=(.7 .4 .4)} Face 24387 2261 2292 16831 {rgb=(.7 .4 .4)} Face 24388 2292 2328 16831 {rgb=(.7 .4 .4)} Face 24389 2411 2382 16832 {rgb=(.7 .4 .4)} Face 24390 2382 2334 16832 {rgb=(.7 .4 .4)} Face 24391 2334 2373 16832 {rgb=(.7 .4 .4)} Face 24392 2373 2411 16832 {rgb=(.7 .4 .4)} Face 24393 2473 2447 16833 {rgb=(.7 .4 .4)} Face 24394 2447 2416 16833 {rgb=(.7 .4 .4)} Face 24395 2416 2446 16833 {rgb=(.7 .4 .4)} Face 24396 2446 2473 16833 {rgb=(.7 .4 .4)} Face 24397 2419 2434 16834 {rgb=(.7 .4 .4)} Face 24398 2434 2362 16834 {rgb=(.7 .4 .4)} Face 24399 2362 2327 16834 {rgb=(.7 .4 .4)} Face 24400 2327 2419 16834 {rgb=(.7 .4 .4)} Face 24401 2247 2281 16835 {rgb=(.7 .4 .4)} Face 24402 2281 2231 16835 {rgb=(.7 .4 .4)} Face 24403 2231 2190 16835 {rgb=(.7 .4 .4)} Face 24404 2190 2247 16835 {rgb=(.7 .4 .4)} Face 24405 2185 2227 16836 {rgb=(.7 .4 .4)} Face 24406 2227 2271 16836 {rgb=(.7 .4 .4)} Face 24407 2271 2237 16836 {rgb=(.7 .4 .4)} Face 24408 2237 2185 16836 {rgb=(.7 .4 .4)} Face 24409 2280 2319 16837 {rgb=(.7 .4 .4)} Face 24410 2319 2370 16837 {rgb=(.7 .4 .4)} Face 24411 2370 2330 16837 {rgb=(.7 .4 .4)} Face 24412 2330 2280 16837 {rgb=(.7 .4 .4)} Face 24413 2203 2161 16838 {rgb=(.7 .4 .4)} Face 24414 2161 2286 16838 {rgb=(.7 .4 .4)} Face 24415 2286 2326 16838 {rgb=(.7 .4 .4)} Face 24416 2326 2203 16838 {rgb=(.7 .4 .4)} Face 24417 2173 2150 16839 {rgb=(.7 .4 .4)} Face 24418 2150 2123 16839 {rgb=(.7 .4 .4)} Face 24419 2123 2148 16839 {rgb=(.7 .4 .4)} Face 24420 2148 2173 16839 {rgb=(.7 .4 .4)} Face 24421 2221 2202 16840 {rgb=(.7 .4 .4)} Face 24422 2202 2172 16840 {rgb=(.7 .4 .4)} Face 24423 2172 2208 16840 {rgb=(.7 .4 .4)} Face 24424 2208 2221 16840 {rgb=(.7 .4 .4)} Face 24425 2649 2638 16841 {rgb=(.7 .4 .4)} Face 24426 2638 2400 16841 {rgb=(.7 .4 .4)} Face 24427 2400 2417 16841 {rgb=(.7 .4 .4)} Face 24428 2417 2649 16841 {rgb=(.7 .4 .4)} Face 24429 3572 3570 16842 {rgb=(.7 .4 .4)} Face 24430 3570 3042 16842 {rgb=(.7 .4 .4)} Face 24431 3042 3048 16842 {rgb=(.7 .4 .4)} Face 24432 3048 3572 16842 {rgb=(.7 .4 .4)} Face 24433 3902 3901 16843 {rgb=(.7 .4 .4)} Face 24434 3901 4038 16843 {rgb=(.7 .4 .4)} Face 24435 4038 4040 16843 {rgb=(.7 .4 .4)} Face 24436 4040 3902 16843 {rgb=(.7 .4 .4)} Face 24437 4401 4399 16844 {rgb=(.7 .4 .4)} Face 24438 4399 5177 16844 {rgb=(.7 .4 .4)} Face 24439 5177 5178 16844 {rgb=(.7 .4 .4)} Face 24440 5178 4401 16844 {rgb=(.7 .4 .4)} Face 24441 2257 2289 16845 {rgb=(.7 .4 .4)} Face 24442 2289 2298 16845 {rgb=(.7 .4 .4)} Face 24443 2298 2277 16845 {rgb=(.7 .4 .4)} Face 24444 2277 2257 16845 {rgb=(.7 .4 .4)} Face 24445 2464 2488 16846 {rgb=(.7 .4 .4)} Face 24446 2488 2494 16846 {rgb=(.7 .4 .4)} Face 24447 2494 2475 16846 {rgb=(.7 .4 .4)} Face 24448 2475 2464 16846 {rgb=(.7 .4 .4)} Face 24449 2369 2395 16847 {rgb=(.7 .4 .4)} Face 24450 2395 2402 16847 {rgb=(.7 .4 .4)} Face 24451 2402 2401 16847 {rgb=(.7 .4 .4)} Face 24452 2401 2369 16847 {rgb=(.7 .4 .4)} Face 24453 2332 2094 16848 {rgb=(.7 .4 .4)} Face 24454 2094 2100 16848 {rgb=(.7 .4 .4)} Face 24455 2100 2335 16848 {rgb=(.7 .4 .4)} Face 24456 2335 2332 16848 {rgb=(.7 .4 .4)} Face 24457 2331 2097 16849 {rgb=(.7 .4 .4)} Face 24458 2097 2089 16849 {rgb=(.7 .4 .4)} Face 24459 2089 2316 16849 {rgb=(.7 .4 .4)} Face 24460 2316 2331 16849 {rgb=(.7 .4 .4)} Face 24461 3571 3866 16850 {rgb=(.7 .4 .4)} Face 24462 3866 3864 16850 {rgb=(.7 .4 .4)} Face 24463 3864 3576 16850 {rgb=(.7 .4 .4)} Face 24464 3576 3571 16850 {rgb=(.7 .4 .4)} Face 24465 4512 4152 16851 {rgb=(.7 .4 .4)} Face 24466 4152 4156 16851 {rgb=(.7 .4 .4)} Face 24467 4156 4523 16851 {rgb=(.7 .4 .4)} Face 24468 4523 4512 16851 {rgb=(.7 .4 .4)} Face 24469 4537 4165 16852 {rgb=(.7 .4 .4)} Face 24470 4165 4173 16852 {rgb=(.7 .4 .4)} Face 24471 4173 4540 16852 {rgb=(.7 .4 .4)} Face 24472 4540 4537 16852 {rgb=(.7 .4 .4)} Face 24473 3871 3574 16853 {rgb=(.7 .4 .4)} Face 24474 3574 3580 16853 {rgb=(.7 .4 .4)} Face 24475 3580 3884 16853 {rgb=(.7 .4 .4)} Face 24476 3884 3871 16853 {rgb=(.7 .4 .4)} Face 24477 4987 4996 16854 {rgb=(.7 .4 .4)} Face 24478 4996 4754 16854 {rgb=(.7 .4 .4)} Face 24479 4754 4746 16854 {rgb=(.7 .4 .4)} Face 24480 4746 4987 16854 {rgb=(.7 .4 .4)} Face 24481 5419 5421 16855 {rgb=(.7 .4 .4)} Face 24482 5421 5199 16855 {rgb=(.7 .4 .4)} Face 24483 5199 5195 16855 {rgb=(.7 .4 .4)} Face 24484 5195 5419 16855 {rgb=(.7 .4 .4)} Face 24485 3173 3030 16856 {rgb=(.7 .4 .4)} Face 24486 3030 3064 16856 {rgb=(.7 .4 .4)} Face 24487 3064 3197 16856 {rgb=(.7 .4 .4)} Face 24488 3197 3173 16856 {rgb=(.7 .4 .4)} Face 24489 3111 2970 16857 {rgb=(.7 .4 .4)} Face 24490 2970 3003 16857 {rgb=(.7 .4 .4)} Face 24491 3003 3143 16857 {rgb=(.7 .4 .4)} Face 24492 3143 3111 16857 {rgb=(.7 .4 .4)} Face 24493 2955 2837 16858 {rgb=(.7 .4 .4)} Face 24494 2837 2901 16858 {rgb=(.7 .4 .4)} Face 24495 2901 3056 16858 {rgb=(.7 .4 .4)} Face 24496 3056 2955 16858 {rgb=(.7 .4 .4)} Face 24497 5382 5379 16859 {rgb=(.7 .4 .4)} Face 24498 5379 5087 16859 {rgb=(.7 .4 .4)} Face 24499 5087 5094 16859 {rgb=(.7 .4 .4)} Face 24500 5094 5382 16859 {rgb=(.7 .4 .4)} Face 24501 4311 4303 16860 {rgb=(.7 .4 .4)} Face 24502 4303 4120 16860 {rgb=(.7 .4 .4)} Face 24503 4120 4125 16860 {rgb=(.7 .4 .4)} Face 24504 4125 4311 16860 {rgb=(.7 .4 .4)} Face 24505 3965 3959 16861 {rgb=(.7 .4 .4)} Face 24506 3959 3801 16861 {rgb=(.7 .4 .4)} Face 24507 3801 3822 16861 {rgb=(.7 .4 .4)} Face 24508 3822 3965 16861 {rgb=(.7 .4 .4)} Face 24509 3416 3451 16862 {rgb=(.7 .4 .4)} Face 24510 3451 3379 16862 {rgb=(.7 .4 .4)} Face 24511 3379 3336 16862 {rgb=(.7 .4 .4)} Face 24512 3336 3416 16862 {rgb=(.7 .4 .4)} Face 24513 3603 3626 16863 {rgb=(.7 .4 .4)} Face 24514 3626 3541 16863 {rgb=(.7 .4 .4)} Face 24515 3541 3521 16863 {rgb=(.7 .4 .4)} Face 24516 3521 3603 16863 {rgb=(.7 .4 .4)} Face 24517 3939 3945 16864 {rgb=(.7 .4 .4)} Face 24518 3945 3753 16864 {rgb=(.7 .4 .4)} Face 24519 3753 3735 16864 {rgb=(.7 .4 .4)} Face 24520 3735 3939 16864 {rgb=(.7 .4 .4)} Face 24521 4349 4356 16865 {rgb=(.7 .4 .4)} Face 24522 4356 4132 16865 {rgb=(.7 .4 .4)} Face 24523 4132 4129 16865 {rgb=(.7 .4 .4)} Face 24524 4129 4349 16865 {rgb=(.7 .4 .4)} Face 24525 4920 4934 16866 {rgb=(.7 .4 .4)} Face 24526 4934 4662 16866 {rgb=(.7 .4 .4)} Face 24527 4662 4652 16866 {rgb=(.7 .4 .4)} Face 24528 4652 4920 16866 {rgb=(.7 .4 .4)} Face 24529 5412 5414 16867 {rgb=(.7 .4 .4)} Face 24530 5414 5170 16867 {rgb=(.7 .4 .4)} Face 24531 5170 5166 16867 {rgb=(.7 .4 .4)} Face 24532 5166 5412 16867 {rgb=(.7 .4 .4)} Face 24533 4531 4824 16868 {rgb=(.7 .4 .4)} Face 24534 4824 4817 16868 {rgb=(.7 .4 .4)} Face 24535 4817 4518 16868 {rgb=(.7 .4 .4)} Face 24536 4518 4531 16868 {rgb=(.7 .4 .4)} Face 24537 3561 3670 16869 {rgb=(.7 .4 .4)} Face 24538 3670 3662 16869 {rgb=(.7 .4 .4)} Face 24539 3662 3567 16869 {rgb=(.7 .4 .4)} Face 24540 3567 3561 16869 {rgb=(.7 .4 .4)} Face 24541 3419 3337 16870 {rgb=(.7 .4 .4)} Face 24542 3337 3377 16870 {rgb=(.7 .4 .4)} Face 24543 3377 3445 16870 {rgb=(.7 .4 .4)} Face 24544 3445 3419 16870 {rgb=(.7 .4 .4)} Face 24545 4337 4344 16871 {rgb=(.7 .4 .4)} Face 24546 4344 4469 16871 {rgb=(.7 .4 .4)} Face 24547 4469 4463 16871 {rgb=(.7 .4 .4)} Face 24548 4463 4337 16871 {rgb=(.7 .4 .4)} Face 24549 4799 4800 16872 {rgb=(.7 .4 .4)} Face 24550 4800 4663 16872 {rgb=(.7 .4 .4)} Face 24551 4663 4677 16872 {rgb=(.7 .4 .4)} Face 24552 4677 4799 16872 {rgb=(.7 .4 .4)} Face 24553 3747 3566 16873 {rgb=(.7 .4 .4)} Face 24554 3566 3590 16873 {rgb=(.7 .4 .4)} Face 24555 3590 3762 16873 {rgb=(.7 .4 .4)} Face 24556 3762 3747 16873 {rgb=(.7 .4 .4)} Face 24557 4180 3966 16874 {rgb=(.7 .4 .4)} Face 24558 3966 3989 16874 {rgb=(.7 .4 .4)} Face 24559 3989 4190 16874 {rgb=(.7 .4 .4)} Face 24560 4190 4180 16874 {rgb=(.7 .4 .4)} Face 24561 4549 4541 16875 {rgb=(.7 .4 .4)} Face 24562 4541 4582 16875 {rgb=(.7 .4 .4)} Face 24563 4582 4594 16875 {rgb=(.7 .4 .4)} Face 24564 4594 4549 16875 {rgb=(.7 .4 .4)} Face 24565 4479 4476 16876 {rgb=(.7 .4 .4)} Face 24566 4476 4499 16876 {rgb=(.7 .4 .4)} Face 24567 4499 4503 16876 {rgb=(.7 .4 .4)} Face 24568 4503 4479 16876 {rgb=(.7 .4 .4)} Face 24569 4511 4601 16877 {rgb=(.7 .4 .4)} Face 24570 4601 4604 16877 {rgb=(.7 .4 .4)} Face 24571 4604 4513 16877 {rgb=(.7 .4 .4)} Face 24572 4513 4511 16877 {rgb=(.7 .4 .4)} Face 24573 4826 4706 16878 {rgb=(.7 .4 .4)} Face 24574 4706 4715 16878 {rgb=(.7 .4 .4)} Face 24575 4715 4847 16878 {rgb=(.7 .4 .4)} Face 24576 4847 4826 16878 {rgb=(.7 .4 .4)} Face 24577 4678 4629 16879 {rgb=(.7 .4 .4)} Face 24578 4629 4651 16879 {rgb=(.7 .4 .4)} Face 24579 4651 4689 16879 {rgb=(.7 .4 .4)} Face 24580 4689 4678 16879 {rgb=(.7 .4 .4)} Face 24581 4750 4709 16880 {rgb=(.7 .4 .4)} Face 24582 4709 4659 16880 {rgb=(.7 .4 .4)} Face 24583 4659 4694 16880 {rgb=(.7 .4 .4)} Face 24584 4694 4750 16880 {rgb=(.7 .4 .4)} Face 24585 4986 4963 16881 {rgb=(.7 .4 .4)} Face 24586 4963 4825 16881 {rgb=(.7 .4 .4)} Face 24587 4825 4865 16881 {rgb=(.7 .4 .4)} Face 24588 4865 4986 16881 {rgb=(.7 .4 .4)} Face 24589 5157 5155 16882 {rgb=(.7 .4 .4)} Face 24590 5155 5074 16882 {rgb=(.7 .4 .4)} Face 24591 5074 5091 16882 {rgb=(.7 .4 .4)} Face 24592 5091 5157 16882 {rgb=(.7 .4 .4)} Face 24593 5261 5282 16883 {rgb=(.7 .4 .4)} Face 24594 5282 5209 16883 {rgb=(.7 .4 .4)} Face 24595 5209 5198 16883 {rgb=(.7 .4 .4)} Face 24596 5198 5261 16883 {rgb=(.7 .4 .4)} Face 24597 5269 5302 16884 {rgb=(.7 .4 .4)} Face 24598 5302 5310 16884 {rgb=(.7 .4 .4)} Face 24599 5310 5279 16884 {rgb=(.7 .4 .4)} Face 24600 5279 5269 16884 {rgb=(.7 .4 .4)} Face 24601 4316 4163 16885 {rgb=(.7 .4 .4)} Face 24602 4163 4126 16885 {rgb=(.7 .4 .4)} Face 24603 4126 4305 16885 {rgb=(.7 .4 .4)} Face 24604 4305 4316 16885 {rgb=(.7 .4 .4)} Face 24605 4411 4304 16886 {rgb=(.7 .4 .4)} Face 24606 4304 4229 16886 {rgb=(.7 .4 .4)} Face 24607 4229 4347 16886 {rgb=(.7 .4 .4)} Face 24608 4347 4411 16886 {rgb=(.7 .4 .4)} Face 24609 4481 4440 16887 {rgb=(.7 .4 .4)} Face 24610 4440 4376 16887 {rgb=(.7 .4 .4)} Face 24611 4376 4448 16887 {rgb=(.7 .4 .4)} Face 24612 4448 4481 16887 {rgb=(.7 .4 .4)} Face 24613 4488 4465 16888 {rgb=(.7 .4 .4)} Face 24614 4465 4473 16888 {rgb=(.7 .4 .4)} Face 24615 4473 4497 16888 {rgb=(.7 .4 .4)} Face 24616 4497 4488 16888 {rgb=(.7 .4 .4)} Face 24617 4613 4590 16889 {rgb=(.7 .4 .4)} Face 24618 4590 4500 16889 {rgb=(.7 .4 .4)} Face 24619 4500 4530 16889 {rgb=(.7 .4 .4)} Face 24620 4530 4613 16889 {rgb=(.7 .4 .4)} Face 24621 4878 4857 16890 {rgb=(.7 .4 .4)} Face 24622 4857 4711 16890 {rgb=(.7 .4 .4)} Face 24623 4711 4732 16890 {rgb=(.7 .4 .4)} Face 24624 4732 4878 16890 {rgb=(.7 .4 .4)} Face 24625 4964 4948 16891 {rgb=(.7 .4 .4)} Face 24626 4948 4929 16891 {rgb=(.7 .4 .4)} Face 24627 4929 4941 16891 {rgb=(.7 .4 .4)} Face 24628 4941 4964 16891 {rgb=(.7 .4 .4)} Face 24629 5118 5114 16892 {rgb=(.7 .4 .4)} Face 24630 5114 5011 16892 {rgb=(.7 .4 .4)} Face 24631 5011 5019 16892 {rgb=(.7 .4 .4)} Face 24632 5019 5118 16892 {rgb=(.7 .4 .4)} Face 24633 5439 5436 16893 {rgb=(.7 .4 .4)} Face 24634 5436 5239 16893 {rgb=(.7 .4 .4)} Face 24635 5239 5245 16893 {rgb=(.7 .4 .4)} Face 24636 5245 5439 16893 {rgb=(.7 .4 .4)} Face 24637 4998 5018 16894 {rgb=(.7 .4 .4)} Face 24638 5018 4940 16894 {rgb=(.7 .4 .4)} Face 24639 4940 4932 16894 {rgb=(.7 .4 .4)} Face 24640 4932 4998 16894 {rgb=(.7 .4 .4)} Face 24641 5161 5172 16895 {rgb=(.7 .4 .4)} Face 24642 5172 5101 16895 {rgb=(.7 .4 .4)} Face 24643 5101 5076 16895 {rgb=(.7 .4 .4)} Face 24644 5076 5161 16895 {rgb=(.7 .4 .4)} Face 24645 5450 5451 16896 {rgb=(.7 .4 .4)} Face 24646 5451 5283 16896 {rgb=(.7 .4 .4)} Face 24647 5283 5275 16896 {rgb=(.7 .4 .4)} Face 24648 5275 5450 16896 {rgb=(.7 .4 .4)} Face 24649 4605 4602 16897 {rgb=(.7 .4 .4)} Face 24650 4602 4561 16897 {rgb=(.7 .4 .4)} Face 24651 4561 4534 16897 {rgb=(.7 .4 .4)} Face 24652 4534 4605 16897 {rgb=(.7 .4 .4)} Face 24653 5167 5111 16898 {rgb=(.7 .4 .4)} Face 24654 5111 5134 16898 {rgb=(.7 .4 .4)} Face 24655 5134 5175 16898 {rgb=(.7 .4 .4)} Face 24656 5175 5167 16898 {rgb=(.7 .4 .4)} Face 24657 4736 4764 16899 {rgb=(.7 .4 .4)} Face 24658 4764 4835 16899 {rgb=(.7 .4 .4)} Face 24659 4835 4782 16899 {rgb=(.7 .4 .4)} Face 24660 4782 4736 16899 {rgb=(.7 .4 .4)} Face 24661 4925 5044 16900 {rgb=(.7 .4 .4)} Face 24662 5044 5014 16900 {rgb=(.7 .4 .4)} Face 24663 5014 4890 16900 {rgb=(.7 .4 .4)} Face 24664 4890 4925 16900 {rgb=(.7 .4 .4)} Face 24665 5028 5004 16901 {rgb=(.7 .4 .4)} Face 24666 5004 4971 16901 {rgb=(.7 .4 .4)} Face 24667 4971 4991 16901 {rgb=(.7 .4 .4)} Face 24668 4991 5028 16901 {rgb=(.7 .4 .4)} Face 24669 4957 4942 16902 {rgb=(.7 .4 .4)} Face 24670 4942 4912 16902 {rgb=(.7 .4 .4)} Face 24671 4912 4928 16902 {rgb=(.7 .4 .4)} Face 24672 4928 4957 16902 {rgb=(.7 .4 .4)} Face 24673 3123 3224 16903 {rgb=(.7 .4 .4)} Face 24674 3224 3227 16903 {rgb=(.7 .4 .4)} Face 24675 3227 3119 16903 {rgb=(.7 .4 .4)} Face 24676 3119 3123 16903 {rgb=(.7 .4 .4)} Face 24677 3114 3222 16904 {rgb=(.7 .4 .4)} Face 24678 3222 3216 16904 {rgb=(.7 .4 .4)} Face 24679 3216 3102 16904 {rgb=(.7 .4 .4)} Face 24680 3102 3114 16904 {rgb=(.7 .4 .4)} Face 24681 3347 3476 16905 {rgb=(.7 .4 .4)} Face 24682 3476 3475 16905 {rgb=(.7 .4 .4)} Face 24683 3475 3349 16905 {rgb=(.7 .4 .4)} Face 24684 3349 3347 16905 {rgb=(.7 .4 .4)} Face 24685 3343 3472 16906 {rgb=(.7 .4 .4)} Face 24686 3472 3467 16906 {rgb=(.7 .4 .4)} Face 24687 3467 3338 16906 {rgb=(.7 .4 .4)} Face 24688 3338 3343 16906 {rgb=(.7 .4 .4)} Face 24689 3619 3820 16907 {rgb=(.7 .4 .4)} Face 24690 3820 3828 16907 {rgb=(.7 .4 .4)} Face 24691 3828 3616 16907 {rgb=(.7 .4 .4)} Face 24692 3616 3619 16907 {rgb=(.7 .4 .4)} Face 24693 3614 3823 16908 {rgb=(.7 .4 .4)} Face 24694 3823 3818 16908 {rgb=(.7 .4 .4)} Face 24695 3818 3609 16908 {rgb=(.7 .4 .4)} Face 24696 3609 3614 16908 {rgb=(.7 .4 .4)} Face 24697 3978 4106 16909 {rgb=(.7 .4 .4)} Face 24698 4106 4112 16909 {rgb=(.7 .4 .4)} Face 24699 4112 3985 16909 {rgb=(.7 .4 .4)} Face 24700 3985 3978 16909 {rgb=(.7 .4 .4)} Face 24701 3987 4116 16910 {rgb=(.7 .4 .4)} Face 24702 4116 4117 16910 {rgb=(.7 .4 .4)} Face 24703 4117 3982 16910 {rgb=(.7 .4 .4)} Face 24704 3982 3987 16910 {rgb=(.7 .4 .4)} Face 24705 4245 4368 16911 {rgb=(.7 .4 .4)} Face 24706 4368 4371 16911 {rgb=(.7 .4 .4)} Face 24707 4371 4250 16911 {rgb=(.7 .4 .4)} Face 24708 4250 4245 16911 {rgb=(.7 .4 .4)} Face 24709 4251 4375 16912 {rgb=(.7 .4 .4)} Face 24710 4375 4382 16912 {rgb=(.7 .4 .4)} Face 24711 4382 4253 16912 {rgb=(.7 .4 .4)} Face 24712 4253 4251 16912 {rgb=(.7 .4 .4)} Face 24713 4519 4701 16913 {rgb=(.7 .4 .4)} Face 24714 4701 4713 16913 {rgb=(.7 .4 .4)} Face 24715 4713 4528 16913 {rgb=(.7 .4 .4)} Face 24716 4528 4519 16913 {rgb=(.7 .4 .4)} Face 24717 4538 4724 16914 {rgb=(.7 .4 .4)} Face 24718 4724 4730 16914 {rgb=(.7 .4 .4)} Face 24719 4730 4542 16914 {rgb=(.7 .4 .4)} Face 24720 4542 4538 16914 {rgb=(.7 .4 .4)} Face 24721 3797 3807 16915 {rgb=(.7 .4 .4)} Face 24722 3807 3617 16915 {rgb=(.7 .4 .4)} Face 24723 3617 3610 16915 {rgb=(.7 .4 .4)} Face 24724 3610 3797 16915 {rgb=(.7 .4 .4)} Face 24725 3357 3380 16916 {rgb=(.7 .4 .4)} Face 24726 3380 3504 16916 {rgb=(.7 .4 .4)} Face 24727 3504 3488 16916 {rgb=(.7 .4 .4)} Face 24728 3488 3357 16916 {rgb=(.7 .4 .4)} Face 24729 3196 3249 16917 {rgb=(.7 .4 .4)} Face 24730 3249 3293 16917 {rgb=(.7 .4 .4)} Face 24731 3293 3261 16917 {rgb=(.7 .4 .4)} Face 24732 3261 3196 16917 {rgb=(.7 .4 .4)} Face 24733 3158 3205 16918 {rgb=(.7 .4 .4)} Face 24734 3205 3217 16918 {rgb=(.7 .4 .4)} Face 24735 3217 3163 16918 {rgb=(.7 .4 .4)} Face 24736 3163 3158 16918 {rgb=(.7 .4 .4)} Face 24737 3240 3313 16919 {rgb=(.7 .4 .4)} Face 24738 3313 3237 16919 {rgb=(.7 .4 .4)} Face 24739 3237 3183 16919 {rgb=(.7 .4 .4)} Face 24740 3183 3240 16919 {rgb=(.7 .4 .4)} Face 24741 3485 3531 16920 {rgb=(.7 .4 .4)} Face 24742 3531 3411 16920 {rgb=(.7 .4 .4)} Face 24743 3411 3339 16920 {rgb=(.7 .4 .4)} Face 24744 3339 3485 16920 {rgb=(.7 .4 .4)} Face 24745 3932 3963 16921 {rgb=(.7 .4 .4)} Face 24746 3963 3704 16921 {rgb=(.7 .4 .4)} Face 24747 3704 3660 16921 {rgb=(.7 .4 .4)} Face 24748 3660 3932 16921 {rgb=(.7 .4 .4)} Face 24749 4471 4450 16922 {rgb=(.7 .4 .4)} Face 24750 4450 4198 16922 {rgb=(.7 .4 .4)} Face 24751 4198 4189 16922 {rgb=(.7 .4 .4)} Face 24752 4189 4471 16922 {rgb=(.7 .4 .4)} Face 24753 4721 4687 16923 {rgb=(.7 .4 .4)} Face 24754 4687 4675 16923 {rgb=(.7 .4 .4)} Face 24755 4675 4705 16923 {rgb=(.7 .4 .4)} Face 24756 4705 4721 16923 {rgb=(.7 .4 .4)} Face 24757 4456 4438 16924 {rgb=(.7 .4 .4)} Face 24758 4438 4606 16924 {rgb=(.7 .4 .4)} Face 24759 4606 4644 16924 {rgb=(.7 .4 .4)} Face 24760 4644 4456 16924 {rgb=(.7 .4 .4)} Face 24761 4226 4218 16925 {rgb=(.7 .4 .4)} Face 24762 4218 4321 16925 {rgb=(.7 .4 .4)} Face 24763 4321 4334 16925 {rgb=(.7 .4 .4)} Face 24764 4334 4226 16925 {rgb=(.7 .4 .4)} Face 24765 3951 3944 16926 {rgb=(.7 .4 .4)} Face 24766 3944 4079 16926 {rgb=(.7 .4 .4)} Face 24767 4079 4081 16926 {rgb=(.7 .4 .4)} Face 24768 4081 3951 16926 {rgb=(.7 .4 .4)} Face 24769 3984 3981 16927 {rgb=(.7 .4 .4)} Face 24770 3981 3723 16927 {rgb=(.7 .4 .4)} Face 24771 3723 3726 16927 {rgb=(.7 .4 .4)} Face 24772 3726 3984 16927 {rgb=(.7 .4 .4)} Face 24773 3564 3562 16928 {rgb=(.7 .4 .4)} Face 24774 3562 3455 16928 {rgb=(.7 .4 .4)} Face 24775 3455 3461 16928 {rgb=(.7 .4 .4)} Face 24776 3461 3564 16928 {rgb=(.7 .4 .4)} Face 24777 3370 3363 16929 {rgb=(.7 .4 .4)} Face 24778 3363 3281 16929 {rgb=(.7 .4 .4)} Face 24779 3281 3283 16929 {rgb=(.7 .4 .4)} Face 24780 3283 3370 16929 {rgb=(.7 .4 .4)} Face 24781 3245 3244 16930 {rgb=(.7 .4 .4)} Face 24782 3244 3262 16930 {rgb=(.7 .4 .4)} Face 24783 3262 3263 16930 {rgb=(.7 .4 .4)} Face 24784 3263 3245 16930 {rgb=(.7 .4 .4)} Face 24785 3287 3282 16931 {rgb=(.7 .4 .4)} Face 24786 3282 3314 16931 {rgb=(.7 .4 .4)} Face 24787 3314 3318 16931 {rgb=(.7 .4 .4)} Face 24788 3318 3287 16931 {rgb=(.7 .4 .4)} Face 24789 3402 3398 16932 {rgb=(.7 .4 .4)} Face 24790 3398 3520 16932 {rgb=(.7 .4 .4)} Face 24791 3520 3524 16932 {rgb=(.7 .4 .4)} Face 24792 3524 3402 16932 {rgb=(.7 .4 .4)} Face 24793 3644 3639 16933 {rgb=(.7 .4 .4)} Face 24794 3639 3782 16933 {rgb=(.7 .4 .4)} Face 24795 3782 3791 16933 {rgb=(.7 .4 .4)} Face 24796 3791 3644 16933 {rgb=(.7 .4 .4)} Face 24797 3942 3940 16934 {rgb=(.7 .4 .4)} Face 24798 3940 4072 16934 {rgb=(.7 .4 .4)} Face 24799 4072 4073 16934 {rgb=(.7 .4 .4)} Face 24800 4073 3942 16934 {rgb=(.7 .4 .4)} Face 24801 4205 4204 16935 {rgb=(.7 .4 .4)} Face 24802 4204 4312 16935 {rgb=(.7 .4 .4)} Face 24803 4312 4313 16935 {rgb=(.7 .4 .4)} Face 24804 4313 4205 16935 {rgb=(.7 .4 .4)} Face 24805 4418 4417 16936 {rgb=(.7 .4 .4)} Face 24806 4417 4567 16936 {rgb=(.7 .4 .4)} Face 24807 4567 4568 16936 {rgb=(.7 .4 .4)} Face 24808 4568 4418 16936 {rgb=(.7 .4 .4)} Face 24809 4657 4656 16937 {rgb=(.7 .4 .4)} Face 24810 4656 4632 16937 {rgb=(.7 .4 .4)} Face 24811 4632 4633 16937 {rgb=(.7 .4 .4)} Face 24812 4633 4657 16937 {rgb=(.7 .4 .4)} Face 24813 4435 4434 16938 {rgb=(.7 .4 .4)} Face 24814 4434 4206 16938 {rgb=(.7 .4 .4)} Face 24815 4206 4207 16938 {rgb=(.7 .4 .4)} Face 24816 4207 4435 16938 {rgb=(.7 .4 .4)} Face 24817 3160 3238 16939 {rgb=(.7 .4 .4)} Face 24818 3238 3231 16939 {rgb=(.7 .4 .4)} Face 24819 3231 3132 16939 {rgb=(.7 .4 .4)} Face 24820 3132 3160 16939 {rgb=(.7 .4 .4)} Face 24821 4486 4175 16940 {rgb=(.7 .4 .4)} Face 24822 4175 4157 16940 {rgb=(.7 .4 .4)} Face 24823 4157 4495 16940 {rgb=(.7 .4 .4)} Face 24824 4495 4486 16940 {rgb=(.7 .4 .4)} Face 24825 3754 3972 16941 {rgb=(.7 .4 .4)} Face 24826 3972 4149 16941 {rgb=(.7 .4 .4)} Face 24827 4149 3627 16941 {rgb=(.7 .4 .4)} Face 24828 3627 3754 16941 {rgb=(.7 .4 .4)} Face 24829 4109 4057 16942 {rgb=(.7 .4 .4)} Face 24830 4057 4025 16942 {rgb=(.7 .4 .4)} Face 24831 4025 4276 16942 {rgb=(.7 .4 .4)} Face 24832 4276 4109 16942 {rgb=(.7 .4 .4)} Face 24833 3207 3258 16943 {rgb=(.7 .4 .4)} Face 24834 3258 3391 16943 {rgb=(.7 .4 .4)} Face 24835 3391 3371 16943 {rgb=(.7 .4 .4)} Face 24836 3371 3207 16943 {rgb=(.7 .4 .4)} Face 24837 3464 3378 16944 {rgb=(.7 .4 .4)} Face 24838 3378 3548 16944 {rgb=(.7 .4 .4)} Face 24839 3548 3582 16944 {rgb=(.7 .4 .4)} Face 24840 3582 3464 16944 {rgb=(.7 .4 .4)} Face 24841 2268 2317 16945 {rgb=(.7 .4 .4)} Face 24842 2317 2351 16945 {rgb=(.7 .4 .4)} Face 24843 2351 2314 16945 {rgb=(.7 .4 .4)} Face 24844 2314 2268 16945 {rgb=(.7 .4 .4)} Face 24845 2363 2392 16946 {rgb=(.7 .4 .4)} Face 24846 2392 2437 16946 {rgb=(.7 .4 .4)} Face 24847 2437 2405 16946 {rgb=(.7 .4 .4)} Face 24848 2405 2363 16946 {rgb=(.7 .4 .4)} Face 24849 2471 2499 16947 {rgb=(.7 .4 .4)} Face 24850 2499 2436 16947 {rgb=(.7 .4 .4)} Face 24851 2436 2425 16947 {rgb=(.7 .4 .4)} Face 24852 2425 2471 16947 {rgb=(.7 .4 .4)} Face 24853 2520 2524 16948 {rgb=(.7 .4 .4)} Face 24854 2524 2450 16948 {rgb=(.7 .4 .4)} Face 24855 2450 2443 16948 {rgb=(.7 .4 .4)} Face 24856 2443 2520 16948 {rgb=(.7 .4 .4)} Face 24857 2399 2465 16949 {rgb=(.7 .4 .4)} Face 24858 2465 2323 16949 {rgb=(.7 .4 .4)} Face 24859 2323 2248 16949 {rgb=(.7 .4 .4)} Face 24860 2248 2399 16949 {rgb=(.7 .4 .4)} Face 24861 2180 2225 16950 {rgb=(.7 .4 .4)} Face 24862 2225 2192 16950 {rgb=(.7 .4 .4)} Face 24863 2192 2187 16950 {rgb=(.7 .4 .4)} Face 24864 2187 2180 16950 {rgb=(.7 .4 .4)} Face 24865 2168 2158 16951 {rgb=(.7 .4 .4)} Face 24866 2158 2182 16951 {rgb=(.7 .4 .4)} Face 24867 2182 2189 16951 {rgb=(.7 .4 .4)} Face 24868 2189 2168 16951 {rgb=(.7 .4 .4)} Face 24869 2212 2177 16952 {rgb=(.7 .4 .4)} Face 24870 2177 2239 16952 {rgb=(.7 .4 .4)} Face 24871 2239 2233 16952 {rgb=(.7 .4 .4)} Face 24872 2233 2212 16952 {rgb=(.7 .4 .4)} Face 24873 2305 2381 16953 {rgb=(.7 .4 .4)} Face 24874 2381 2293 16953 {rgb=(.7 .4 .4)} Face 24875 2293 2264 16953 {rgb=(.7 .4 .4)} Face 24876 2264 2305 16953 {rgb=(.7 .4 .4)} Face 24877 3330 3557 16954 {rgb=(.7 .4 .4)} Face 24878 3557 3463 16954 {rgb=(.7 .4 .4)} Face 24879 3463 3296 16954 {rgb=(.7 .4 .4)} Face 24880 3296 3330 16954 {rgb=(.7 .4 .4)} Face 24881 3208 3333 16955 {rgb=(.7 .4 .4)} Face 24882 3333 3186 16955 {rgb=(.7 .4 .4)} Face 24883 3186 3086 16955 {rgb=(.7 .4 .4)} Face 24884 3086 3208 16955 {rgb=(.7 .4 .4)} Face 24885 2928 3049 16956 {rgb=(.7 .4 .4)} Face 24886 3049 2920 16956 {rgb=(.7 .4 .4)} Face 24887 2920 2824 16956 {rgb=(.7 .4 .4)} Face 24888 2824 2928 16956 {rgb=(.7 .4 .4)} Face 24889 2735 2812 16957 {rgb=(.7 .4 .4)} Face 24890 2812 2693 16957 {rgb=(.7 .4 .4)} Face 24891 2693 2650 16957 {rgb=(.7 .4 .4)} Face 24892 2650 2735 16957 {rgb=(.7 .4 .4)} Face 24893 2566 2599 16958 {rgb=(.7 .4 .4)} Face 24894 2599 2503 16958 {rgb=(.7 .4 .4)} Face 24895 2503 2469 16958 {rgb=(.7 .4 .4)} Face 24896 2469 2566 16958 {rgb=(.7 .4 .4)} Face 24897 2310 2307 16959 {rgb=(.7 .4 .4)} Face 24898 2307 2409 16959 {rgb=(.7 .4 .4)} Face 24899 2409 2376 16959 {rgb=(.7 .4 .4)} Face 24900 2376 2310 16959 {rgb=(.7 .4 .4)} Face 24901 2421 2477 16960 {rgb=(.7 .4 .4)} Face 24902 2477 2539 16960 {rgb=(.7 .4 .4)} Face 24903 2539 2460 16960 {rgb=(.7 .4 .4)} Face 24904 2460 2421 16960 {rgb=(.7 .4 .4)} Face 24905 2567 2591 16961 {rgb=(.7 .4 .4)} Face 24906 2591 2497 16961 {rgb=(.7 .4 .4)} Face 24907 2497 2484 16961 {rgb=(.7 .4 .4)} Face 24908 2484 2567 16961 {rgb=(.7 .4 .4)} Face 24909 2515 2603 16962 {rgb=(.7 .4 .4)} Face 24910 2603 2604 16962 {rgb=(.7 .4 .4)} Face 24911 2604 2531 16962 {rgb=(.7 .4 .4)} Face 24912 2531 2515 16962 {rgb=(.7 .4 .4)} Face 24913 2594 2575 16963 {rgb=(.7 .4 .4)} Face 24914 2575 2527 16963 {rgb=(.7 .4 .4)} Face 24915 2527 2537 16963 {rgb=(.7 .4 .4)} Face 24916 2537 2594 16963 {rgb=(.7 .4 .4)} Face 24917 2886 3075 16964 {rgb=(.7 .4 .4)} Face 24918 3075 2953 16964 {rgb=(.7 .4 .4)} Face 24919 2953 2840 16964 {rgb=(.7 .4 .4)} Face 24920 2840 2886 16964 {rgb=(.7 .4 .4)} Face 24921 2398 2340 16965 {rgb=(.7 .4 .4)} Face 24922 2340 2349 16965 {rgb=(.7 .4 .4)} Face 24923 2349 2413 16965 {rgb=(.7 .4 .4)} Face 24924 2413 2398 16965 {rgb=(.7 .4 .4)} Face 24925 2372 2414 16966 {rgb=(.7 .4 .4)} Face 24926 2414 2348 16966 {rgb=(.7 .4 .4)} Face 24927 2348 2361 16966 {rgb=(.7 .4 .4)} Face 24928 2361 2372 16966 {rgb=(.7 .4 .4)} Face 24929 2452 2396 16967 {rgb=(.7 .4 .4)} Face 24930 2396 2371 16967 {rgb=(.7 .4 .4)} Face 24931 2371 2439 16967 {rgb=(.7 .4 .4)} Face 24932 2439 2452 16967 {rgb=(.7 .4 .4)} Face 24933 2532 2495 16968 {rgb=(.7 .4 .4)} Face 24934 2495 2486 16968 {rgb=(.7 .4 .4)} Face 24935 2486 2528 16968 {rgb=(.7 .4 .4)} Face 24936 2528 2532 16968 {rgb=(.7 .4 .4)} Face 24937 2625 2576 16969 {rgb=(.7 .4 .4)} Face 24938 2576 2571 16969 {rgb=(.7 .4 .4)} Face 24939 2571 2620 16969 {rgb=(.7 .4 .4)} Face 24940 2620 2625 16969 {rgb=(.7 .4 .4)} Face 24941 2805 2704 16970 {rgb=(.7 .4 .4)} Face 24942 2704 2702 16970 {rgb=(.7 .4 .4)} Face 24943 2702 2819 16970 {rgb=(.7 .4 .4)} Face 24944 2819 2805 16970 {rgb=(.7 .4 .4)} Face 24945 2259 2282 16971 {rgb=(.7 .4 .4)} Face 24946 2282 2324 16971 {rgb=(.7 .4 .4)} Face 24947 2324 2301 16971 {rgb=(.7 .4 .4)} Face 24948 2301 2259 16971 {rgb=(.7 .4 .4)} Face 24949 2365 2285 16972 {rgb=(.7 .4 .4)} Face 24950 2285 2367 16972 {rgb=(.7 .4 .4)} Face 24951 2367 2480 16972 {rgb=(.7 .4 .4)} Face 24952 2480 2365 16972 {rgb=(.7 .4 .4)} Face 24953 2384 2388 16973 {rgb=(.7 .4 .4)} Face 24954 2388 2451 16973 {rgb=(.7 .4 .4)} Face 24955 2451 2470 16973 {rgb=(.7 .4 .4)} Face 24956 2470 2384 16973 {rgb=(.7 .4 .4)} Face 24957 2583 2454 16974 {rgb=(.7 .4 .4)} Face 24958 2454 2549 16974 {rgb=(.7 .4 .4)} Face 24959 2549 2662 16974 {rgb=(.7 .4 .4)} Face 24960 2662 2583 16974 {rgb=(.7 .4 .4)} Face 24961 2573 2529 16975 {rgb=(.7 .4 .4)} Face 24962 2529 2614 16975 {rgb=(.7 .4 .4)} Face 24963 2614 2676 16975 {rgb=(.7 .4 .4)} Face 24964 2676 2573 16975 {rgb=(.7 .4 .4)} Face 24965 2756 2646 16976 {rgb=(.7 .4 .4)} Face 24966 2646 2755 16976 {rgb=(.7 .4 .4)} Face 24967 2755 2872 16976 {rgb=(.7 .4 .4)} Face 24968 2872 2756 16976 {rgb=(.7 .4 .4)} Face 24969 2767 2689 16977 {rgb=(.7 .4 .4)} Face 24970 2689 2773 16977 {rgb=(.7 .4 .4)} Face 24971 2773 2853 16977 {rgb=(.7 .4 .4)} Face 24972 2853 2767 16977 {rgb=(.7 .4 .4)} Face 24973 3023 2857 16978 {rgb=(.7 .4 .4)} Face 24974 2857 2993 16978 {rgb=(.7 .4 .4)} Face 24975 2993 3138 16978 {rgb=(.7 .4 .4)} Face 24976 3138 3023 16978 {rgb=(.7 .4 .4)} Face 24977 2719 2786 16979 {rgb=(.7 .4 .4)} Face 24978 2786 2971 16979 {rgb=(.7 .4 .4)} Face 24979 2971 2915 16979 {rgb=(.7 .4 .4)} Face 24980 2915 2719 16979 {rgb=(.7 .4 .4)} Face 24981 2663 2522 16980 {rgb=(.7 .4 .4)} Face 24982 2522 2440 16980 {rgb=(.7 .4 .4)} Face 24983 2440 2582 16980 {rgb=(.7 .4 .4)} Face 24984 2582 2663 16980 {rgb=(.7 .4 .4)} Face 24985 2822 2934 16981 {rgb=(.7 .4 .4)} Face 24986 2934 2956 16981 {rgb=(.7 .4 .4)} Face 24987 2956 2833 16981 {rgb=(.7 .4 .4)} Face 24988 2833 2822 16981 {rgb=(.7 .4 .4)} Face 24989 2622 2720 16982 {rgb=(.7 .4 .4)} Face 24990 2720 2739 16982 {rgb=(.7 .4 .4)} Face 24991 2739 2659 16982 {rgb=(.7 .4 .4)} Face 24992 2659 2622 16982 {rgb=(.7 .4 .4)} Face 24993 2894 3039 16983 {rgb=(.7 .4 .4)} Face 24994 3039 3170 16983 {rgb=(.7 .4 .4)} Face 24995 3170 3062 16983 {rgb=(.7 .4 .4)} Face 24996 3062 2894 16983 {rgb=(.7 .4 .4)} Face 24997 2732 2806 16984 {rgb=(.7 .4 .4)} Face 24998 2806 2936 16984 {rgb=(.7 .4 .4)} Face 24999 2936 2856 16984 {rgb=(.7 .4 .4)} Face 25000 2856 2732 16984 {rgb=(.7 .4 .4)} Face 25001 3192 3291 16985 {rgb=(.7 .4 .4)} Face 25002 3291 3417 16985 {rgb=(.7 .4 .4)} Face 25003 3417 3320 16985 {rgb=(.7 .4 .4)} Face 25004 3320 3192 16985 {rgb=(.7 .4 .4)} Face 25005 3038 3105 16986 {rgb=(.7 .4 .4)} Face 25006 3105 3246 16986 {rgb=(.7 .4 .4)} Face 25007 3246 3203 16986 {rgb=(.7 .4 .4)} Face 25008 3203 3038 16986 {rgb=(.7 .4 .4)} Face 25009 3510 3578 16987 {rgb=(.7 .4 .4)} Face 25010 3578 3774 16987 {rgb=(.7 .4 .4)} Face 25011 3774 3731 16987 {rgb=(.7 .4 .4)} Face 25012 3731 3510 16987 {rgb=(.7 .4 .4)} Face 25013 3412 3448 16988 {rgb=(.7 .4 .4)} Face 25014 3448 3697 16988 {rgb=(.7 .4 .4)} Face 25015 3697 3653 16988 {rgb=(.7 .4 .4)} Face 25016 3653 3412 16988 {rgb=(.7 .4 .4)} Face 25017 3956 3967 16989 {rgb=(.7 .4 .4)} Face 25018 3967 4110 16989 {rgb=(.7 .4 .4)} Face 25019 4110 4102 16989 {rgb=(.7 .4 .4)} Face 25020 4102 3956 16989 {rgb=(.7 .4 .4)} Face 25021 3888 3925 16990 {rgb=(.7 .4 .4)} Face 25022 3925 4082 16990 {rgb=(.7 .4 .4)} Face 25023 4082 4067 16990 {rgb=(.7 .4 .4)} Face 25024 4067 3888 16990 {rgb=(.7 .4 .4)} Face 25025 4254 4256 16991 {rgb=(.7 .4 .4)} Face 25026 4256 4387 16991 {rgb=(.7 .4 .4)} Face 25027 4387 4392 16991 {rgb=(.7 .4 .4)} Face 25028 4392 4254 16991 {rgb=(.7 .4 .4)} Face 25029 4239 4248 16992 {rgb=(.7 .4 .4)} Face 25030 4248 4388 16992 {rgb=(.7 .4 .4)} Face 25031 4388 4373 16992 {rgb=(.7 .4 .4)} Face 25032 4373 4239 16992 {rgb=(.7 .4 .4)} Face 25033 4578 4553 16993 {rgb=(.7 .4 .4)} Face 25034 4553 4751 16993 {rgb=(.7 .4 .4)} Face 25035 4751 4788 16993 {rgb=(.7 .4 .4)} Face 25036 4788 4578 16993 {rgb=(.7 .4 .4)} Face 25037 4573 4583 16994 {rgb=(.7 .4 .4)} Face 25038 4583 4818 16994 {rgb=(.7 .4 .4)} Face 25039 4818 4815 16994 {rgb=(.7 .4 .4)} Face 25040 4815 4573 16994 {rgb=(.7 .4 .4)} Face 25041 4502 4480 16995 {rgb=(.7 .4 .4)} Face 25042 4480 4671 16995 {rgb=(.7 .4 .4)} Face 25043 4671 4692 16995 {rgb=(.7 .4 .4)} Face 25044 4692 4502 16995 {rgb=(.7 .4 .4)} Face 25045 4343 4360 16996 {rgb=(.7 .4 .4)} Face 25046 4360 4241 16996 {rgb=(.7 .4 .4)} Face 25047 4241 4235 16996 {rgb=(.7 .4 .4)} Face 25048 4235 4343 16996 {rgb=(.7 .4 .4)} Face 25049 4088 4101 16997 {rgb=(.7 .4 .4)} Face 25050 4101 3968 16997 {rgb=(.7 .4 .4)} Face 25051 3968 3962 16997 {rgb=(.7 .4 .4)} Face 25052 3962 4088 16997 {rgb=(.7 .4 .4)} Face 25053 3771 3778 16998 {rgb=(.7 .4 .4)} Face 25054 3778 3618 16998 {rgb=(.7 .4 .4)} Face 25055 3618 3631 16998 {rgb=(.7 .4 .4)} Face 25056 3631 3771 16998 {rgb=(.7 .4 .4)} Face 25057 3479 3478 16999 {rgb=(.7 .4 .4)} Face 25058 3478 3345 16999 {rgb=(.7 .4 .4)} Face 25059 3345 3346 16999 {rgb=(.7 .4 .4)} Face 25060 3346 3479 16999 {rgb=(.7 .4 .4)} Face 25061 3128 3087 17000 {rgb=(.7 .4 .4)} Face 25062 3087 3110 17000 {rgb=(.7 .4 .4)} Face 25063 3110 3176 17000 {rgb=(.7 .4 .4)} Face 25064 3176 3128 17000 {rgb=(.7 .4 .4)} Face 25065 3628 3591 17001 {rgb=(.7 .4 .4)} Face 25066 3591 3878 17001 {rgb=(.7 .4 .4)} Face 25067 3878 3907 17001 {rgb=(.7 .4 .4)} Face 25068 3907 3628 17001 {rgb=(.7 .4 .4)} Face 25069 5452 5461 17002 {rgb=(.7 .4 .4)} Face 25070 5461 5330 17002 {rgb=(.7 .4 .4)} Face 25071 5330 5296 17002 {rgb=(.7 .4 .4)} Face 25072 5296 5452 17002 {rgb=(.7 .4 .4)} Face 25073 5405 5432 17003 {rgb=(.7 .4 .4)} Face 25074 5432 5243 17003 {rgb=(.7 .4 .4)} Face 25075 5243 5184 17003 {rgb=(.7 .4 .4)} Face 25076 5184 5405 17003 {rgb=(.7 .4 .4)} Face 25077 5362 5378 17004 {rgb=(.7 .4 .4)} Face 25078 5378 5142 17004 {rgb=(.7 .4 .4)} Face 25079 5142 5089 17004 {rgb=(.7 .4 .4)} Face 25080 5089 5362 17004 {rgb=(.7 .4 .4)} Face 25081 5171 5226 17005 {rgb=(.7 .4 .4)} Face 25082 5226 5169 17005 {rgb=(.7 .4 .4)} Face 25083 5169 5065 17005 {rgb=(.7 .4 .4)} Face 25084 5065 5171 17005 {rgb=(.7 .4 .4)} Face 25085 5005 5096 17006 {rgb=(.7 .4 .4)} Face 25086 5096 4954 17006 {rgb=(.7 .4 .4)} Face 25087 4954 4837 17006 {rgb=(.7 .4 .4)} Face 25088 4837 5005 17006 {rgb=(.7 .4 .4)} Face 25089 4797 4906 17007 {rgb=(.7 .4 .4)} Face 25090 4906 4673 17007 {rgb=(.7 .4 .4)} Face 25091 4673 4455 17007 {rgb=(.7 .4 .4)} Face 25092 4455 4797 17007 {rgb=(.7 .4 .4)} Face 25093 4634 4836 17008 {rgb=(.7 .4 .4)} Face 25094 4836 4718 17008 {rgb=(.7 .4 .4)} Face 25095 4718 4430 17008 {rgb=(.7 .4 .4)} Face 25096 4430 4634 17008 {rgb=(.7 .4 .4)} Face 25097 4279 4414 17009 {rgb=(.7 .4 .4)} Face 25098 4414 4275 17009 {rgb=(.7 .4 .4)} Face 25099 4275 4100 17009 {rgb=(.7 .4 .4)} Face 25100 4100 4279 17009 {rgb=(.7 .4 .4)} Face 25101 4345 4637 17010 {rgb=(.7 .4 .4)} Face 25102 4637 4593 17010 {rgb=(.7 .4 .4)} Face 25103 4593 4322 17010 {rgb=(.7 .4 .4)} Face 25104 4322 4345 17010 {rgb=(.7 .4 .4)} Face 25105 4015 4171 17011 {rgb=(.7 .4 .4)} Face 25106 4171 4150 17011 {rgb=(.7 .4 .4)} Face 25107 4150 4003 17011 {rgb=(.7 .4 .4)} Face 25108 4003 4015 17011 {rgb=(.7 .4 .4)} Face 25109 4860 5071 17012 {rgb=(.7 .4 .4)} Face 25110 5071 5040 17012 {rgb=(.7 .4 .4)} Face 25111 5040 4811 17012 {rgb=(.7 .4 .4)} Face 25112 4811 4860 17012 {rgb=(.7 .4 .4)} Face 25113 4326 4563 17013 {rgb=(.7 .4 .4)} Face 25114 4563 4551 17013 {rgb=(.7 .4 .4)} Face 25115 4551 4353 17013 {rgb=(.7 .4 .4)} Face 25116 4353 4326 17013 {rgb=(.7 .4 .4)} Face 25117 4039 4172 17014 {rgb=(.7 .4 .4)} Face 25118 4172 4243 17014 {rgb=(.7 .4 .4)} Face 25119 4243 4139 17014 {rgb=(.7 .4 .4)} Face 25120 4139 4039 17014 {rgb=(.7 .4 .4)} Face 25121 4844 5042 17015 {rgb=(.7 .4 .4)} Face 25122 5042 5080 17015 {rgb=(.7 .4 .4)} Face 25123 5080 4922 17015 {rgb=(.7 .4 .4)} Face 25124 4922 4844 17015 {rgb=(.7 .4 .4)} Face 25125 4444 4628 17016 {rgb=(.7 .4 .4)} Face 25126 4628 4771 17016 {rgb=(.7 .4 .4)} Face 25127 4771 4664 17016 {rgb=(.7 .4 .4)} Face 25128 4664 4444 17016 {rgb=(.7 .4 .4)} Face 25129 4288 4342 17017 {rgb=(.7 .4 .4)} Face 25130 4342 4550 17017 {rgb=(.7 .4 .4)} Face 25131 4550 4467 17017 {rgb=(.7 .4 .4)} Face 25132 4467 4288 17017 {rgb=(.7 .4 .4)} Face 25133 5017 5135 17018 {rgb=(.7 .4 .4)} Face 25134 5135 5189 17018 {rgb=(.7 .4 .4)} Face 25135 5189 5136 17018 {rgb=(.7 .4 .4)} Face 25136 5136 5017 17018 {rgb=(.7 .4 .4)} Face 25137 4872 4935 17019 {rgb=(.7 .4 .4)} Face 25138 4935 5085 17019 {rgb=(.7 .4 .4)} Face 25139 5085 5060 17019 {rgb=(.7 .4 .4)} Face 25140 5060 4872 17019 {rgb=(.7 .4 .4)} Face 25141 4763 4813 17020 {rgb=(.7 .4 .4)} Face 25142 4813 5031 17020 {rgb=(.7 .4 .4)} Face 25143 5031 5003 17020 {rgb=(.7 .4 .4)} Face 25144 5003 4763 17020 {rgb=(.7 .4 .4)} Face 25145 5268 5300 17021 {rgb=(.7 .4 .4)} Face 25146 5300 5455 17021 {rgb=(.7 .4 .4)} Face 25147 5455 5447 17021 {rgb=(.7 .4 .4)} Face 25148 5447 5268 17021 {rgb=(.7 .4 .4)} Face 25149 5232 5241 17022 {rgb=(.7 .4 .4)} Face 25150 5241 5437 17022 {rgb=(.7 .4 .4)} Face 25151 5437 5434 17022 {rgb=(.7 .4 .4)} Face 25152 5434 5232 17022 {rgb=(.7 .4 .4)} Face 25153 5201 5219 17023 {rgb=(.7 .4 .4)} Face 25154 5219 5428 17023 {rgb=(.7 .4 .4)} Face 25155 5428 5422 17023 {rgb=(.7 .4 .4)} Face 25156 5422 5201 17023 {rgb=(.7 .4 .4)} Face 25157 4672 4735 17024 {rgb=(.7 .4 .4)} Face 25158 4735 4974 17024 {rgb=(.7 .4 .4)} Face 25159 4974 4919 17024 {rgb=(.7 .4 .4)} Face 25160 4919 4672 17024 {rgb=(.7 .4 .4)} Face 25161 5162 5186 17025 {rgb=(.7 .4 .4)} Face 25162 5186 5417 17025 {rgb=(.7 .4 .4)} Face 25163 5417 5410 17025 {rgb=(.7 .4 .4)} Face 25164 5410 5162 17025 {rgb=(.7 .4 .4)} Face 25165 3264 3382 17026 {rgb=(.7 .4 .4)} Face 25166 3382 3344 17026 {rgb=(.7 .4 .4)} Face 25167 3344 3228 17026 {rgb=(.7 .4 .4)} Face 25168 3228 3264 17026 {rgb=(.7 .4 .4)} Face 25169 3098 3161 17027 {rgb=(.7 .4 .4)} Face 25170 3161 3323 17027 {rgb=(.7 .4 .4)} Face 25171 3323 3248 17027 {rgb=(.7 .4 .4)} Face 25172 3248 3098 17027 {rgb=(.7 .4 .4)} Face 25173 3583 3671 17028 {rgb=(.7 .4 .4)} Face 25174 3671 3734 17028 {rgb=(.7 .4 .4)} Face 25175 3734 3651 17028 {rgb=(.7 .4 .4)} Face 25176 3651 3583 17028 {rgb=(.7 .4 .4)} Face 25177 3462 3522 17029 {rgb=(.7 .4 .4)} Face 25178 3522 3593 17029 {rgb=(.7 .4 .4)} Face 25179 3593 3579 17029 {rgb=(.7 .4 .4)} Face 25180 3579 3462 17029 {rgb=(.7 .4 .4)} Face 25181 3542 3469 17030 {rgb=(.7 .4 .4)} Face 25182 3469 3605 17030 {rgb=(.7 .4 .4)} Face 25183 3605 3686 17030 {rgb=(.7 .4 .4)} Face 25184 3686 3542 17030 {rgb=(.7 .4 .4)} Face 25185 3712 3615 17031 {rgb=(.7 .4 .4)} Face 25186 3615 3740 17031 {rgb=(.7 .4 .4)} Face 25187 3740 3779 17031 {rgb=(.7 .4 .4)} Face 25188 3779 3712 17031 {rgb=(.7 .4 .4)} Face 25189 3096 3177 17032 {rgb=(.7 .4 .4)} Face 25190 3177 3295 17032 {rgb=(.7 .4 .4)} Face 25191 3295 3221 17032 {rgb=(.7 .4 .4)} Face 25192 3221 3096 17032 {rgb=(.7 .4 .4)} Face 25193 3405 3474 17033 {rgb=(.7 .4 .4)} Face 25194 3474 3680 17033 {rgb=(.7 .4 .4)} Face 25195 3680 3598 17033 {rgb=(.7 .4 .4)} Face 25196 3598 3405 17033 {rgb=(.7 .4 .4)} Face 25197 3849 3917 17034 {rgb=(.7 .4 .4)} Face 25198 3917 4133 17034 {rgb=(.7 .4 .4)} Face 25199 4133 4069 17034 {rgb=(.7 .4 .4)} Face 25200 4069 3849 17034 {rgb=(.7 .4 .4)} Face 25201 4274 4310 17035 {rgb=(.7 .4 .4)} Face 25202 4310 4442 17035 {rgb=(.7 .4 .4)} Face 25203 4442 4412 17035 {rgb=(.7 .4 .4)} Face 25204 4412 4274 17035 {rgb=(.7 .4 .4)} Face 25205 3315 3528 17036 {rgb=(.7 .4 .4)} Face 25206 3528 3437 17036 {rgb=(.7 .4 .4)} Face 25207 3437 3212 17036 {rgb=(.7 .4 .4)} Face 25208 3212 3315 17036 {rgb=(.7 .4 .4)} Face 25209 3425 3367 17037 {rgb=(.7 .4 .4)} Face 25210 3367 3233 17037 {rgb=(.7 .4 .4)} Face 25211 3233 3410 17037 {rgb=(.7 .4 .4)} Face 25212 3410 3425 17037 {rgb=(.7 .4 .4)} Face 25213 3664 3733 17038 {rgb=(.7 .4 .4)} Face 25214 3733 4007 17038 {rgb=(.7 .4 .4)} Face 25215 4007 3946 17038 {rgb=(.7 .4 .4)} Face 25216 3946 3664 17038 {rgb=(.7 .4 .4)} Face 25217 3592 3622 17039 {rgb=(.7 .4 .4)} Face 25218 3622 3909 17039 {rgb=(.7 .4 .4)} Face 25219 3909 3894 17039 {rgb=(.7 .4 .4)} Face 25220 3894 3592 17039 {rgb=(.7 .4 .4)} Face 25221 4174 4217 17040 {rgb=(.7 .4 .4)} Face 25222 4217 4395 17040 {rgb=(.7 .4 .4)} Face 25223 4395 4390 17040 {rgb=(.7 .4 .4)} Face 25224 4390 4174 17040 {rgb=(.7 .4 .4)} Face 25225 4148 4153 17041 {rgb=(.7 .4 .4)} Face 25226 4153 4391 17041 {rgb=(.7 .4 .4)} Face 25227 4391 4396 17041 {rgb=(.7 .4 .4)} Face 25228 4396 4148 17041 {rgb=(.7 .4 .4)} Face 25229 3732 3741 17042 {rgb=(.7 .4 .4)} Face 25230 3741 4004 17042 {rgb=(.7 .4 .4)} Face 25231 4004 3960 17042 {rgb=(.7 .4 .4)} Face 25232 3960 3732 17042 {rgb=(.7 .4 .4)} Face 25233 3893 3817 17043 {rgb=(.7 .4 .4)} Face 25234 3817 3996 17043 {rgb=(.7 .4 .4)} Face 25235 3996 4059 17043 {rgb=(.7 .4 .4)} Face 25236 4059 3893 17043 {rgb=(.7 .4 .4)} Face 25237 3856 3891 17044 {rgb=(.7 .4 .4)} Face 25238 3891 4028 17044 {rgb=(.7 .4 .4)} Face 25239 4028 4002 17044 {rgb=(.7 .4 .4)} Face 25240 4002 3856 17044 {rgb=(.7 .4 .4)} Face 25241 3908 3846 17045 {rgb=(.7 .4 .4)} Face 25242 3846 3974 17045 {rgb=(.7 .4 .4)} Face 25243 3974 4024 17045 {rgb=(.7 .4 .4)} Face 25244 4024 3908 17045 {rgb=(.7 .4 .4)} Face 25245 4155 4202 17046 {rgb=(.7 .4 .4)} Face 25246 4202 4381 17046 {rgb=(.7 .4 .4)} Face 25247 4381 4355 17046 {rgb=(.7 .4 .4)} Face 25248 4355 4155 17046 {rgb=(.7 .4 .4)} Face 25249 4267 4177 17047 {rgb=(.7 .4 .4)} Face 25250 4177 4405 17047 {rgb=(.7 .4 .4)} Face 25251 4405 4501 17047 {rgb=(.7 .4 .4)} Face 25252 4501 4267 17047 {rgb=(.7 .4 .4)} Face 25253 4164 4230 17048 {rgb=(.7 .4 .4)} Face 25254 4230 4449 17048 {rgb=(.7 .4 .4)} Face 25255 4449 4352 17048 {rgb=(.7 .4 .4)} Face 25256 4352 4164 17048 {rgb=(.7 .4 .4)} Face 25257 4432 4451 17049 {rgb=(.7 .4 .4)} Face 25258 4451 4539 17049 {rgb=(.7 .4 .4)} Face 25259 4539 4487 17049 {rgb=(.7 .4 .4)} Face 25260 4487 4432 17049 {rgb=(.7 .4 .4)} Face 25261 4643 4640 17050 {rgb=(.7 .4 .4)} Face 25262 4640 4898 17050 {rgb=(.7 .4 .4)} Face 25263 4898 4910 17050 {rgb=(.7 .4 .4)} Face 25264 4910 4643 17050 {rgb=(.7 .4 .4)} Face 25265 4821 4717 17051 {rgb=(.7 .4 .4)} Face 25266 4717 4966 17051 {rgb=(.7 .4 .4)} Face 25267 4966 5026 17051 {rgb=(.7 .4 .4)} Face 25268 5026 4821 17051 {rgb=(.7 .4 .4)} Face 25269 4620 4765 17052 {rgb=(.7 .4 .4)} Face 25270 4765 4983 17052 {rgb=(.7 .4 .4)} Face 25271 4983 4886 17052 {rgb=(.7 .4 .4)} Face 25272 4886 4620 17052 {rgb=(.7 .4 .4)} Face 25273 4558 4532 17053 {rgb=(.7 .4 .4)} Face 25274 4532 4828 17053 {rgb=(.7 .4 .4)} Face 25275 4828 4853 17053 {rgb=(.7 .4 .4)} Face 25276 4853 4558 17053 {rgb=(.7 .4 .4)} Face 25277 5160 5150 17054 {rgb=(.7 .4 .4)} Face 25278 5150 5403 17054 {rgb=(.7 .4 .4)} Face 25279 5403 5409 17054 {rgb=(.7 .4 .4)} Face 25280 5409 5160 17054 {rgb=(.7 .4 .4)} Face 25281 5211 5181 17055 {rgb=(.7 .4 .4)} Face 25282 5181 5415 17055 {rgb=(.7 .4 .4)} Face 25283 5415 5426 17055 {rgb=(.7 .4 .4)} Face 25284 5426 5211 17055 {rgb=(.7 .4 .4)} Face 25285 5128 5183 17056 {rgb=(.7 .4 .4)} Face 25286 5183 5416 17056 {rgb=(.7 .4 .4)} Face 25287 5416 5398 17056 {rgb=(.7 .4 .4)} Face 25288 5398 5128 17056 {rgb=(.7 .4 .4)} Face 25289 5064 5079 17057 {rgb=(.7 .4 .4)} Face 25290 5079 5331 17057 {rgb=(.7 .4 .4)} Face 25291 5331 5262 17057 {rgb=(.7 .4 .4)} Face 25292 5262 5064 17057 {rgb=(.7 .4 .4)} Face 25293 5097 5072 17058 {rgb=(.7 .4 .4)} Face 25294 5072 5218 17058 {rgb=(.7 .4 .4)} Face 25295 5218 5234 17058 {rgb=(.7 .4 .4)} Face 25296 5234 5097 17058 {rgb=(.7 .4 .4)} Face 25297 5370 5366 17059 {rgb=(.7 .4 .4)} Face 25298 5366 5468 17059 {rgb=(.7 .4 .4)} Face 25299 5468 5471 17059 {rgb=(.7 .4 .4)} Face 25300 5471 5370 17059 {rgb=(.7 .4 .4)} Face 25301 4789 4761 17060 {rgb=(.7 .4 .4)} Face 25302 4761 4951 17060 {rgb=(.7 .4 .4)} Face 25303 4951 4978 17060 {rgb=(.7 .4 .4)} Face 25304 4978 4789 17060 {rgb=(.7 .4 .4)} Face 25305 5115 5112 17061 {rgb=(.7 .4 .4)} Face 25306 5112 5227 17061 {rgb=(.7 .4 .4)} Face 25307 5227 5200 17061 {rgb=(.7 .4 .4)} Face 25308 5200 5115 17061 {rgb=(.7 .4 .4)} Face 25309 5386 5376 17062 {rgb=(.7 .4 .4)} Face 25310 5376 5472 17062 {rgb=(.7 .4 .4)} Face 25311 5472 5477 17062 {rgb=(.7 .4 .4)} Face 25312 5477 5386 17062 {rgb=(.7 .4 .4)} Face 25313 5197 5208 17063 {rgb=(.7 .4 .4)} Face 25314 5208 5257 17063 {rgb=(.7 .4 .4)} Face 25315 5257 5249 17063 {rgb=(.7 .4 .4)} Face 25316 5249 5197 17063 {rgb=(.7 .4 .4)} Face 25317 5297 5354 17064 {rgb=(.7 .4 .4)} Face 25318 5354 5466 17064 {rgb=(.7 .4 .4)} Face 25319 5466 5453 17064 {rgb=(.7 .4 .4)} Face 25320 5453 5297 17064 {rgb=(.7 .4 .4)} Face 25321 5270 5448 17065 {rgb=(.7 .4 .4)} Face 25322 5448 5443 17065 {rgb=(.7 .4 .4)} Face 25323 5443 5260 17065 {rgb=(.7 .4 .4)} Face 25324 5260 5270 17065 {rgb=(.7 .4 .4)} Face 25325 5053 5151 17066 {rgb=(.7 .4 .4)} Face 25326 5151 5129 17066 {rgb=(.7 .4 .4)} Face 25327 5129 5034 17066 {rgb=(.7 .4 .4)} Face 25328 5034 5053 17066 {rgb=(.7 .4 .4)} Face 25329 4772 4936 17067 {rgb=(.7 .4 .4)} Face 25330 4936 4897 17067 {rgb=(.7 .4 .4)} Face 25331 4897 4753 17067 {rgb=(.7 .4 .4)} Face 25332 4753 4772 17067 {rgb=(.7 .4 .4)} Face 25333 4607 4681 17068 {rgb=(.7 .4 .4)} Face 25334 4681 4646 17068 {rgb=(.7 .4 .4)} Face 25335 4646 4559 17068 {rgb=(.7 .4 .4)} Face 25336 4559 4607 17068 {rgb=(.7 .4 .4)} Face 25337 4579 4533 17069 {rgb=(.7 .4 .4)} Face 25338 4533 4546 17069 {rgb=(.7 .4 .4)} Face 25339 4546 4592 17069 {rgb=(.7 .4 .4)} Face 25340 4592 4579 17069 {rgb=(.7 .4 .4)} Face 25341 4505 4496 17070 {rgb=(.7 .4 .4)} Face 25342 4496 4603 17070 {rgb=(.7 .4 .4)} Face 25343 4603 4598 17070 {rgb=(.7 .4 .4)} Face 25344 4598 4505 17070 {rgb=(.7 .4 .4)} Face 25345 4636 4543 17071 {rgb=(.7 .4 .4)} Face 25346 4543 4623 17071 {rgb=(.7 .4 .4)} Face 25347 4623 4693 17071 {rgb=(.7 .4 .4)} Face 25348 4693 4636 17071 {rgb=(.7 .4 .4)} Face 25349 4762 4728 17072 {rgb=(.7 .4 .4)} Face 25350 4728 4849 17072 {rgb=(.7 .4 .4)} Face 25351 4849 4861 17072 {rgb=(.7 .4 .4)} Face 25352 4861 4762 17072 {rgb=(.7 .4 .4)} Face 25353 4918 4914 17073 {rgb=(.7 .4 .4)} Face 25354 4914 4960 17073 {rgb=(.7 .4 .4)} Face 25355 4960 4979 17073 {rgb=(.7 .4 .4)} Face 25356 4979 4918 17073 {rgb=(.7 .4 .4)} Face 25357 5047 5025 17074 {rgb=(.7 .4 .4)} Face 25358 5025 5120 17074 {rgb=(.7 .4 .4)} Face 25359 5120 5140 17074 {rgb=(.7 .4 .4)} Face 25360 5140 5047 17074 {rgb=(.7 .4 .4)} Face 25361 5263 5248 17075 {rgb=(.7 .4 .4)} Face 25362 5248 5440 17075 {rgb=(.7 .4 .4)} Face 25363 5440 5444 17075 {rgb=(.7 .4 .4)} Face 25364 5444 5263 17075 {rgb=(.7 .4 .4)} Face 25365 4768 4778 17076 {rgb=(.7 .4 .4)} Face 25366 4778 4755 17076 {rgb=(.7 .4 .4)} Face 25367 4755 4752 17076 {rgb=(.7 .4 .4)} Face 25368 4752 4768 17076 {rgb=(.7 .4 .4)} Face 25369 4838 4868 17077 {rgb=(.7 .4 .4)} Face 25370 4868 4923 17077 {rgb=(.7 .4 .4)} Face 25371 4923 4831 17077 {rgb=(.7 .4 .4)} Face 25372 4831 4838 17077 {rgb=(.7 .4 .4)} Face 25373 4969 4945 17078 {rgb=(.7 .4 .4)} Face 25374 4945 5010 17078 {rgb=(.7 .4 .4)} Face 25375 5010 5081 17078 {rgb=(.7 .4 .4)} Face 25376 5081 4969 17078 {rgb=(.7 .4 .4)} Face 25377 5000 5138 17079 {rgb=(.7 .4 .4)} Face 25378 5138 5179 17079 {rgb=(.7 .4 .4)} Face 25379 5179 5041 17079 {rgb=(.7 .4 .4)} Face 25380 5041 5000 17079 {rgb=(.7 .4 .4)} Face 25381 5420 5321 17080 {rgb=(.7 .4 .4)} Face 25382 5321 5182 17080 {rgb=(.7 .4 .4)} Face 25383 5182 5289 17080 {rgb=(.7 .4 .4)} Face 25384 5289 5420 17080 {rgb=(.7 .4 .4)} Face 25385 4631 4614 17081 {rgb=(.7 .4 .4)} Face 25386 4614 4802 17081 {rgb=(.7 .4 .4)} Face 25387 4802 4839 17081 {rgb=(.7 .4 .4)} Face 25388 4839 4631 17081 {rgb=(.7 .4 .4)} Face 25389 4676 4658 17082 {rgb=(.7 .4 .4)} Face 25390 4658 4858 17082 {rgb=(.7 .4 .4)} Face 25391 4858 4864 17082 {rgb=(.7 .4 .4)} Face 25392 4864 4676 17082 {rgb=(.7 .4 .4)} Face 25393 4965 4950 17083 {rgb=(.7 .4 .4)} Face 25394 4950 5035 17083 {rgb=(.7 .4 .4)} Face 25395 5035 5039 17083 {rgb=(.7 .4 .4)} Face 25396 5039 4965 17083 {rgb=(.7 .4 .4)} Face 25397 4984 4972 17084 {rgb=(.7 .4 .4)} Face 25398 4972 5050 17084 {rgb=(.7 .4 .4)} Face 25399 5050 5078 17084 {rgb=(.7 .4 .4)} Face 25400 5078 4984 17084 {rgb=(.7 .4 .4)} Face 25401 5033 5002 17085 {rgb=(.7 .4 .4)} Face 25402 5002 5100 17085 {rgb=(.7 .4 .4)} Face 25403 5100 5125 17085 {rgb=(.7 .4 .4)} Face 25404 5125 5033 17085 {rgb=(.7 .4 .4)} Face 25405 5124 5116 17086 {rgb=(.7 .4 .4)} Face 25406 5116 5185 17086 {rgb=(.7 .4 .4)} Face 25407 5185 5196 17086 {rgb=(.7 .4 .4)} Face 25408 5196 5124 17086 {rgb=(.7 .4 .4)} Face 25409 5165 5141 17087 {rgb=(.7 .4 .4)} Face 25410 5141 5214 17087 {rgb=(.7 .4 .4)} Face 25411 5214 5237 17087 {rgb=(.7 .4 .4)} Face 25412 5237 5165 17087 {rgb=(.7 .4 .4)} Face 25413 5187 5176 17088 {rgb=(.7 .4 .4)} Face 25414 5176 5254 17088 {rgb=(.7 .4 .4)} Face 25415 5254 5255 17088 {rgb=(.7 .4 .4)} Face 25416 5255 5187 17088 {rgb=(.7 .4 .4)} Face 25417 5314 5298 17089 {rgb=(.7 .4 .4)} Face 25418 5298 5454 17089 {rgb=(.7 .4 .4)} Face 25419 5454 5459 17089 {rgb=(.7 .4 .4)} Face 25420 5459 5314 17089 {rgb=(.7 .4 .4)} Face 25421 5338 5328 17090 {rgb=(.7 .4 .4)} Face 25422 5328 5460 17090 {rgb=(.7 .4 .4)} Face 25423 5460 5464 17090 {rgb=(.7 .4 .4)} Face 25424 5464 5338 17090 {rgb=(.7 .4 .4)} Face 25425 5334 5346 17091 {rgb=(.7 .4 .4)} Face 25426 5346 5465 17091 {rgb=(.7 .4 .4)} Face 25427 5465 5463 17091 {rgb=(.7 .4 .4)} Face 25428 5463 5334 17091 {rgb=(.7 .4 .4)} Face 25429 2810 2860 17092 {rgb=(.7 .4 .4)} Face 25430 2860 2870 17092 {rgb=(.7 .4 .4)} Face 25431 2870 2826 17092 {rgb=(.7 .4 .4)} Face 25432 2826 2810 17092 {rgb=(.7 .4 .4)} Face 25433 2848 2839 17093 {rgb=(.7 .4 .4)} Face 25434 2839 2878 17093 {rgb=(.7 .4 .4)} Face 25435 2878 2892 17093 {rgb=(.7 .4 .4)} Face 25436 2892 2848 17093 {rgb=(.7 .4 .4)} Face 25437 2931 2908 17094 {rgb=(.7 .4 .4)} Face 25438 2908 2913 17094 {rgb=(.7 .4 .4)} Face 25439 2913 2951 17094 {rgb=(.7 .4 .4)} Face 25440 2951 2931 17094 {rgb=(.7 .4 .4)} Face 25441 2922 2891 17095 {rgb=(.7 .4 .4)} Face 25442 2891 2849 17095 {rgb=(.7 .4 .4)} Face 25443 2849 2864 17095 {rgb=(.7 .4 .4)} Face 25444 2864 2922 17095 {rgb=(.7 .4 .4)} Face 25445 2813 2797 17096 {rgb=(.7 .4 .4)} Face 25446 2797 2722 17096 {rgb=(.7 .4 .4)} Face 25447 2722 2752 17096 {rgb=(.7 .4 .4)} Face 25448 2752 2813 17096 {rgb=(.7 .4 .4)} Face 25449 2716 2682 17097 {rgb=(.7 .4 .4)} Face 25450 2682 2661 17097 {rgb=(.7 .4 .4)} Face 25451 2661 2696 17097 {rgb=(.7 .4 .4)} Face 25452 2696 2716 17097 {rgb=(.7 .4 .4)} Face 25453 2707 2669 17098 {rgb=(.7 .4 .4)} Face 25454 2669 2695 17098 {rgb=(.7 .4 .4)} Face 25455 2695 2731 17098 {rgb=(.7 .4 .4)} Face 25456 2731 2707 17098 {rgb=(.7 .4 .4)} Face 25457 2809 2774 17099 {rgb=(.7 .4 .4)} Face 25458 2774 2881 17099 {rgb=(.7 .4 .4)} Face 25459 2881 2944 17099 {rgb=(.7 .4 .4)} Face 25460 2944 2809 17099 {rgb=(.7 .4 .4)} Face 25461 3082 3026 17100 {rgb=(.7 .4 .4)} Face 25462 3026 3130 17100 {rgb=(.7 .4 .4)} Face 25463 3130 3166 17100 {rgb=(.7 .4 .4)} Face 25464 3166 3082 17100 {rgb=(.7 .4 .4)} Face 25465 3215 3187 17101 {rgb=(.7 .4 .4)} Face 25466 3187 3201 17101 {rgb=(.7 .4 .4)} Face 25467 3201 3243 17101 {rgb=(.7 .4 .4)} Face 25468 3243 3215 17101 {rgb=(.7 .4 .4)} Face 25469 3035 3131 17102 {rgb=(.7 .4 .4)} Face 25470 3131 3133 17102 {rgb=(.7 .4 .4)} Face 25471 3133 3070 17102 {rgb=(.7 .4 .4)} Face 25472 3070 3035 17102 {rgb=(.7 .4 .4)} Face 25473 2999 3080 17103 {rgb=(.7 .4 .4)} Face 25474 3080 2930 17103 {rgb=(.7 .4 .4)} Face 25475 2930 2846 17103 {rgb=(.7 .4 .4)} Face 25476 2846 2999 17103 {rgb=(.7 .4 .4)} Face 25477 2742 2818 17104 {rgb=(.7 .4 .4)} Face 25478 2818 2715 17104 {rgb=(.7 .4 .4)} Face 25479 2715 2652 17104 {rgb=(.7 .4 .4)} Face 25480 2652 2742 17104 {rgb=(.7 .4 .4)} Face 25481 2593 2642 17105 {rgb=(.7 .4 .4)} Face 25482 2642 2617 17105 {rgb=(.7 .4 .4)} Face 25483 2617 2556 17105 {rgb=(.7 .4 .4)} Face 25484 2556 2593 17105 {rgb=(.7 .4 .4)} Face 25485 2568 2618 17106 {rgb=(.7 .4 .4)} Face 25486 2618 2644 17106 {rgb=(.7 .4 .4)} Face 25487 2644 2619 17106 {rgb=(.7 .4 .4)} Face 25488 2619 2568 17106 {rgb=(.7 .4 .4)} Face 25489 2680 2700 17107 {rgb=(.7 .4 .4)} Face 25490 2700 2776 17107 {rgb=(.7 .4 .4)} Face 25491 2776 2749 17107 {rgb=(.7 .4 .4)} Face 25492 2749 2680 17107 {rgb=(.7 .4 .4)} Face 25493 2807 2829 17108 {rgb=(.7 .4 .4)} Face 25494 2829 2871 17108 {rgb=(.7 .4 .4)} Face 25495 2871 2852 17108 {rgb=(.7 .4 .4)} Face 25496 2852 2807 17108 {rgb=(.7 .4 .4)} Face 25497 2868 2884 17109 {rgb=(.7 .4 .4)} Face 25498 2884 2875 17109 {rgb=(.7 .4 .4)} Face 25499 2875 2851 17109 {rgb=(.7 .4 .4)} Face 25500 2851 2868 17109 {rgb=(.7 .4 .4)} Face 25501 2816 2844 17110 {rgb=(.7 .4 .4)} Face 25502 2844 2788 17110 {rgb=(.7 .4 .4)} Face 25503 2788 2759 17110 {rgb=(.7 .4 .4)} Face 25504 2759 2816 17110 {rgb=(.7 .4 .4)} Face 25505 2630 2655 17111 {rgb=(.7 .4 .4)} Face 25506 2655 2725 17111 {rgb=(.7 .4 .4)} Face 25507 2725 2705 17111 {rgb=(.7 .4 .4)} Face 25508 2705 2630 17111 {rgb=(.7 .4 .4)} Face 25509 2760 2783 17112 {rgb=(.7 .4 .4)} Face 25510 2783 2828 17112 {rgb=(.7 .4 .4)} Face 25511 2828 2801 17112 {rgb=(.7 .4 .4)} Face 25512 2801 2760 17112 {rgb=(.7 .4 .4)} Face 25513 2814 2845 17113 {rgb=(.7 .4 .4)} Face 25514 2845 2827 17113 {rgb=(.7 .4 .4)} Face 25515 2827 2802 17113 {rgb=(.7 .4 .4)} Face 25516 2802 2814 17113 {rgb=(.7 .4 .4)} Face 25517 2765 2789 17114 {rgb=(.7 .4 .4)} Face 25518 2789 2724 17114 {rgb=(.7 .4 .4)} Face 25519 2724 2694 17114 {rgb=(.7 .4 .4)} Face 25520 2694 2765 17114 {rgb=(.7 .4 .4)} Face 25521 2626 2671 17115 {rgb=(.7 .4 .4)} Face 25522 2671 2612 17115 {rgb=(.7 .4 .4)} Face 25523 2612 2548 17115 {rgb=(.7 .4 .4)} Face 25524 2548 2626 17115 {rgb=(.7 .4 .4)} Face 25525 2876 2821 17116 {rgb=(.7 .4 .4)} Face 25526 2821 2873 17116 {rgb=(.7 .4 .4)} Face 25527 2873 2926 17116 {rgb=(.7 .4 .4)} Face 25528 2926 2876 17116 {rgb=(.7 .4 .4)} Face 25529 2929 2937 17117 {rgb=(.7 .4 .4)} Face 25530 2937 2976 17117 {rgb=(.7 .4 .4)} Face 25531 2976 2984 17117 {rgb=(.7 .4 .4)} Face 25532 2984 2929 17117 {rgb=(.7 .4 .4)} Face 25533 2974 2952 17118 {rgb=(.7 .4 .4)} Face 25534 2952 2882 17118 {rgb=(.7 .4 .4)} Face 25535 2882 2907 17118 {rgb=(.7 .4 .4)} Face 25536 2907 2974 17118 {rgb=(.7 .4 .4)} Face 25537 2850 2831 17119 {rgb=(.7 .4 .4)} Face 25538 2831 2777 17119 {rgb=(.7 .4 .4)} Face 25539 2777 2790 17119 {rgb=(.7 .4 .4)} Face 25540 2790 2850 17119 {rgb=(.7 .4 .4)} Face 25541 2763 2738 17120 {rgb=(.7 .4 .4)} Face 25542 2738 2728 17120 {rgb=(.7 .4 .4)} Face 25543 2728 2772 17120 {rgb=(.7 .4 .4)} Face 25544 2772 2763 17120 {rgb=(.7 .4 .4)} Face 25545 2793 2746 17121 {rgb=(.7 .4 .4)} Face 25546 2746 2781 17121 {rgb=(.7 .4 .4)} Face 25547 2781 2838 17121 {rgb=(.7 .4 .4)} Face 25548 2838 2793 17121 {rgb=(.7 .4 .4)} Face 25549 2939 2863 17122 {rgb=(.7 .4 .4)} Face 25550 2863 3028 17122 {rgb=(.7 .4 .4)} Face 25551 3028 3117 17122 {rgb=(.7 .4 .4)} Face 25552 3117 2939 17122 {rgb=(.7 .4 .4)} Face 25553 3220 3149 17123 {rgb=(.7 .4 .4)} Face 25554 3149 3218 17123 {rgb=(.7 .4 .4)} Face 25555 3218 3307 17123 {rgb=(.7 .4 .4)} Face 25556 3307 3220 17123 {rgb=(.7 .4 .4)} Face 25557 3375 3280 17124 {rgb=(.7 .4 .4)} Face 25558 3280 3324 17124 {rgb=(.7 .4 .4)} Face 25559 3324 3430 17124 {rgb=(.7 .4 .4)} Face 25560 3430 3375 17124 {rgb=(.7 .4 .4)} Face 25561 3558 3683 17125 {rgb=(.7 .4 .4)} Face 25562 3683 3584 17125 {rgb=(.7 .4 .4)} Face 25563 3584 3487 17125 {rgb=(.7 .4 .4)} Face 25564 3487 3558 17125 {rgb=(.7 .4 .4)} Face 25565 3403 3491 17126 {rgb=(.7 .4 .4)} Face 25566 3491 3389 17126 {rgb=(.7 .4 .4)} Face 25567 3389 3306 17126 {rgb=(.7 .4 .4)} Face 25568 3306 3403 17126 {rgb=(.7 .4 .4)} Face 25569 3189 3257 17127 {rgb=(.7 .4 .4)} Face 25570 3257 3106 17127 {rgb=(.7 .4 .4)} Face 25571 3106 3031 17127 {rgb=(.7 .4 .4)} Face 25572 3031 3189 17127 {rgb=(.7 .4 .4)} Face 25573 2898 2989 17128 {rgb=(.7 .4 .4)} Face 25574 2989 2904 17128 {rgb=(.7 .4 .4)} Face 25575 2904 2842 17128 {rgb=(.7 .4 .4)} Face 25576 2842 2898 17128 {rgb=(.7 .4 .4)} Face 25577 2808 2866 17129 {rgb=(.7 .4 .4)} Face 25578 2866 2858 17129 {rgb=(.7 .4 .4)} Face 25579 2858 2800 17129 {rgb=(.7 .4 .4)} Face 25580 2800 2808 17129 {rgb=(.7 .4 .4)} Face 25581 2986 2988 17130 {rgb=(.7 .4 .4)} Face 25582 2988 2985 17130 {rgb=(.7 .4 .4)} Face 25583 2985 2940 17130 {rgb=(.7 .4 .4)} Face 25584 2940 2986 17130 {rgb=(.7 .4 .4)} Face 25585 2947 3005 17131 {rgb=(.7 .4 .4)} Face 25586 3005 3050 17131 {rgb=(.7 .4 .4)} Face 25587 3050 2996 17131 {rgb=(.7 .4 .4)} Face 25588 2996 2947 17131 {rgb=(.7 .4 .4)} Face 25589 2865 2899 17132 {rgb=(.7 .4 .4)} Face 25590 2899 2946 17132 {rgb=(.7 .4 .4)} Face 25591 2946 2914 17132 {rgb=(.7 .4 .4)} Face 25592 2914 2865 17132 {rgb=(.7 .4 .4)} Face 25593 2836 2847 17133 {rgb=(.7 .4 .4)} Face 25594 2847 2889 17133 {rgb=(.7 .4 .4)} Face 25595 2889 2867 17133 {rgb=(.7 .4 .4)} Face 25596 2867 2836 17133 {rgb=(.7 .4 .4)} Face 25597 2787 2817 17134 {rgb=(.7 .4 .4)} Face 25598 2817 2835 17134 {rgb=(.7 .4 .4)} Face 25599 2835 2791 17134 {rgb=(.7 .4 .4)} Face 25600 2791 2787 17134 {rgb=(.7 .4 .4)} Face 25601 2709 2751 17135 {rgb=(.7 .4 .4)} Face 25602 2751 2729 17135 {rgb=(.7 .4 .4)} Face 25603 2729 2674 17135 {rgb=(.7 .4 .4)} Face 25604 2674 2709 17135 {rgb=(.7 .4 .4)} Face 25605 5353 5364 17136 {rgb=(.7 .4 .4)} Face 25606 5364 5082 17136 {rgb=(.7 .4 .4)} Face 25607 5082 5056 17136 {rgb=(.7 .4 .4)} Face 25608 5056 5353 17136 {rgb=(.7 .4 .4)} Face 25609 4585 4679 17137 {rgb=(.7 .4 .4)} Face 25610 4679 4203 17137 {rgb=(.7 .4 .4)} Face 25611 4203 4105 17137 {rgb=(.7 .4 .4)} Face 25612 4105 4585 17137 {rgb=(.7 .4 .4)} Face 25613 3848 3961 17138 {rgb=(.7 .4 .4)} Face 25614 3961 3842 17138 {rgb=(.7 .4 .4)} Face 25615 3842 3698 17138 {rgb=(.7 .4 .4)} Face 25616 3698 3848 17138 {rgb=(.7 .4 .4)} Face 25617 3577 3676 17139 {rgb=(.7 .4 .4)} Face 25618 3676 3527 17139 {rgb=(.7 .4 .4)} Face 25619 3527 3456 17139 {rgb=(.7 .4 .4)} Face 25620 3456 3577 17139 {rgb=(.7 .4 .4)} Face 25621 3319 3372 17140 {rgb=(.7 .4 .4)} Face 25622 3372 3204 17140 {rgb=(.7 .4 .4)} Face 25623 3204 3164 17140 {rgb=(.7 .4 .4)} Face 25624 3164 3319 17140 {rgb=(.7 .4 .4)} Face 25625 2979 3099 17141 {rgb=(.7 .4 .4)} Face 25626 3099 3127 17141 {rgb=(.7 .4 .4)} Face 25627 3127 2983 17141 {rgb=(.7 .4 .4)} Face 25628 2983 2979 17141 {rgb=(.7 .4 .4)} Face 25629 3081 3168 17142 {rgb=(.7 .4 .4)} Face 25630 3168 3184 17142 {rgb=(.7 .4 .4)} Face 25631 3184 3113 17142 {rgb=(.7 .4 .4)} Face 25632 3113 3081 17142 {rgb=(.7 .4 .4)} Face 25633 5337 5347 17143 {rgb=(.7 .4 .4)} Face 25634 5347 5049 17143 {rgb=(.7 .4 .4)} Face 25635 5049 5029 17143 {rgb=(.7 .4 .4)} Face 25636 5029 5337 17143 {rgb=(.7 .4 .4)} Face 25637 5360 5343 17144 {rgb=(.7 .4 .4)} Face 25638 5343 5037 17144 {rgb=(.7 .4 .4)} Face 25639 5037 5077 17144 {rgb=(.7 .4 .4)} Face 25640 5077 5360 17144 {rgb=(.7 .4 .4)} Face 25641 4684 4729 17145 {rgb=(.7 .4 .4)} Face 25642 4729 4370 17145 {rgb=(.7 .4 .4)} Face 25643 4370 4333 17145 {rgb=(.7 .4 .4)} Face 25644 4333 4684 17145 {rgb=(.7 .4 .4)} Face 25645 4697 4682 17146 {rgb=(.7 .4 .4)} Face 25646 4682 4306 17146 {rgb=(.7 .4 .4)} Face 25647 4306 4284 17146 {rgb=(.7 .4 .4)} Face 25648 4284 4697 17146 {rgb=(.7 .4 .4)} Face 25649 4050 4119 17147 {rgb=(.7 .4 .4)} Face 25650 4119 4022 17147 {rgb=(.7 .4 .4)} Face 25651 4022 3937 17147 {rgb=(.7 .4 .4)} Face 25652 3937 4050 17147 {rgb=(.7 .4 .4)} Face 25653 4008 4124 17148 {rgb=(.7 .4 .4)} Face 25654 4124 3964 17148 {rgb=(.7 .4 .4)} Face 25655 3964 3854 17148 {rgb=(.7 .4 .4)} Face 25656 3854 4008 17148 {rgb=(.7 .4 .4)} Face 25657 3767 3895 17149 {rgb=(.7 .4 .4)} Face 25658 3895 3717 17149 {rgb=(.7 .4 .4)} Face 25659 3717 3607 17149 {rgb=(.7 .4 .4)} Face 25660 3607 3767 17149 {rgb=(.7 .4 .4)} Face 25661 3468 3594 17150 {rgb=(.7 .4 .4)} Face 25662 3594 3533 17150 {rgb=(.7 .4 .4)} Face 25663 3533 3327 17150 {rgb=(.7 .4 .4)} Face 25664 3327 3468 17150 {rgb=(.7 .4 .4)} Face 25665 3679 3865 17151 {rgb=(.7 .4 .4)} Face 25666 3865 3862 17151 {rgb=(.7 .4 .4)} Face 25667 3862 3694 17151 {rgb=(.7 .4 .4)} Face 25668 3694 3679 17151 {rgb=(.7 .4 .4)} Face 25669 3275 3505 17152 {rgb=(.7 .4 .4)} Face 25670 3505 3529 17152 {rgb=(.7 .4 .4)} Face 25671 3529 3308 17152 {rgb=(.7 .4 .4)} Face 25672 3308 3275 17152 {rgb=(.7 .4 .4)} Face 25673 3716 3899 17153 {rgb=(.7 .4 .4)} Face 25674 3899 3993 17153 {rgb=(.7 .4 .4)} Face 25675 3993 3730 17153 {rgb=(.7 .4 .4)} Face 25676 3730 3716 17153 {rgb=(.7 .4 .4)} Face 25677 3321 3540 17154 {rgb=(.7 .4 .4)} Face 25678 3540 3536 17154 {rgb=(.7 .4 .4)} Face 25679 3536 3326 17154 {rgb=(.7 .4 .4)} Face 25680 3326 3321 17154 {rgb=(.7 .4 .4)} Face 25681 4747 4330 17155 {rgb=(.7 .4 .4)} Face 25682 4330 4298 17155 {rgb=(.7 .4 .4)} Face 25683 4298 4743 17155 {rgb=(.7 .4 .4)} Face 25684 4743 4747 17155 {rgb=(.7 .4 .4)} Face 25685 4727 4265 17156 {rgb=(.7 .4 .4)} Face 25686 4265 4201 17156 {rgb=(.7 .4 .4)} Face 25687 4201 4695 17156 {rgb=(.7 .4 .4)} Face 25688 4695 4727 17156 {rgb=(.7 .4 .4)} Face 25689 5387 5098 17157 {rgb=(.7 .4 .4)} Face 25690 5098 5107 17157 {rgb=(.7 .4 .4)} Face 25691 5107 5391 17157 {rgb=(.7 .4 .4)} Face 25692 5391 5387 17157 {rgb=(.7 .4 .4)} Face 25693 5393 5113 17158 {rgb=(.7 .4 .4)} Face 25694 5113 5110 17158 {rgb=(.7 .4 .4)} Face 25695 5110 5392 17158 {rgb=(.7 .4 .4)} Face 25696 5392 5393 17158 {rgb=(.7 .4 .4)} Face 25697 5462 5458 17159 {rgb=(.7 .4 .4)} Face 25698 5458 5309 17159 {rgb=(.7 .4 .4)} Face 25699 5309 5332 17159 {rgb=(.7 .4 .4)} Face 25700 5332 5462 17159 {rgb=(.7 .4 .4)} Face 25701 5478 5467 17160 {rgb=(.7 .4 .4)} Face 25702 5467 5365 17160 {rgb=(.7 .4 .4)} Face 25703 5365 5397 17160 {rgb=(.7 .4 .4)} Face 25704 5397 5478 17160 {rgb=(.7 .4 .4)} Face 25705 5276 5259 17161 {rgb=(.7 .4 .4)} Face 25706 5259 5153 17161 {rgb=(.7 .4 .4)} Face 25707 5153 5149 17161 {rgb=(.7 .4 .4)} Face 25708 5149 5276 17161 {rgb=(.7 .4 .4)} Face 25709 5217 5326 17162 {rgb=(.7 .4 .4)} Face 25710 5326 5103 17162 {rgb=(.7 .4 .4)} Face 25711 5103 5095 17162 {rgb=(.7 .4 .4)} Face 25712 5095 5217 17162 {rgb=(.7 .4 .4)} Face 25713 5051 5146 17163 {rgb=(.7 .4 .4)} Face 25714 5146 5012 17163 {rgb=(.7 .4 .4)} Face 25715 5012 4882 17163 {rgb=(.7 .4 .4)} Face 25716 4882 5051 17163 {rgb=(.7 .4 .4)} Face 25717 4967 4992 17164 {rgb=(.7 .4 .4)} Face 25718 4992 4769 17164 {rgb=(.7 .4 .4)} Face 25719 4769 4738 17164 {rgb=(.7 .4 .4)} Face 25720 4738 4967 17164 {rgb=(.7 .4 .4)} Face 25721 4645 4846 17165 {rgb=(.7 .4 .4)} Face 25722 4846 4555 17165 {rgb=(.7 .4 .4)} Face 25723 4555 4386 17165 {rgb=(.7 .4 .4)} Face 25724 4386 4645 17165 {rgb=(.7 .4 .4)} Face 25725 4454 4494 17166 {rgb=(.7 .4 .4)} Face 25726 4494 4307 17166 {rgb=(.7 .4 .4)} Face 25727 4307 4292 17166 {rgb=(.7 .4 .4)} Face 25728 4292 4454 17166 {rgb=(.7 .4 .4)} Face 25729 4441 4595 17167 {rgb=(.7 .4 .4)} Face 25730 4595 4186 17167 {rgb=(.7 .4 .4)} Face 25731 4186 4191 17167 {rgb=(.7 .4 .4)} Face 25732 4191 4441 17167 {rgb=(.7 .4 .4)} Face 25733 4211 4325 17168 {rgb=(.7 .4 .4)} Face 25734 4325 4143 17168 {rgb=(.7 .4 .4)} Face 25735 4143 4042 17168 {rgb=(.7 .4 .4)} Face 25736 4042 4211 17168 {rgb=(.7 .4 .4)} Face 25737 4123 4138 17169 {rgb=(.7 .4 .4)} Face 25738 4138 3988 17169 {rgb=(.7 .4 .4)} Face 25739 3988 3957 17169 {rgb=(.7 .4 .4)} Face 25740 3957 4123 17169 {rgb=(.7 .4 .4)} Face 25741 3900 3999 17170 {rgb=(.7 .4 .4)} Face 25742 3999 3870 17170 {rgb=(.7 .4 .4)} Face 25743 3870 3749 17170 {rgb=(.7 .4 .4)} Face 25744 3749 3900 17170 {rgb=(.7 .4 .4)} Face 25745 3757 3840 17171 {rgb=(.7 .4 .4)} Face 25746 3840 3667 17171 {rgb=(.7 .4 .4)} Face 25747 3667 3588 17171 {rgb=(.7 .4 .4)} Face 25748 3588 3757 17171 {rgb=(.7 .4 .4)} Face 25749 3148 3400 17172 {rgb=(.7 .4 .4)} Face 25750 3400 3477 17172 {rgb=(.7 .4 .4)} Face 25751 3477 3191 17172 {rgb=(.7 .4 .4)} Face 25752 3191 3148 17172 {rgb=(.7 .4 .4)} Face 25753 2743 2887 17173 {rgb=(.7 .4 .4)} Face 25754 2887 2903 17173 {rgb=(.7 .4 .4)} Face 25755 2903 2730 17173 {rgb=(.7 .4 .4)} Face 25756 2730 2743 17173 {rgb=(.7 .4 .4)} Face 25757 3239 3551 17174 {rgb=(.7 .4 .4)} Face 25758 3551 3623 17174 {rgb=(.7 .4 .4)} Face 25759 3623 3300 17174 {rgb=(.7 .4 .4)} Face 25760 3300 3239 17174 {rgb=(.7 .4 .4)} Face 25761 2713 2918 17175 {rgb=(.7 .4 .4)} Face 25762 2918 2941 17175 {rgb=(.7 .4 .4)} Face 25763 2941 2679 17175 {rgb=(.7 .4 .4)} Face 25764 2679 2713 17175 {rgb=(.7 .4 .4)} Face 25765 3348 3685 17176 {rgb=(.7 .4 .4)} Face 25766 3685 3746 17176 {rgb=(.7 .4 .4)} Face 25767 3746 3392 17176 {rgb=(.7 .4 .4)} Face 25768 3392 3348 17176 {rgb=(.7 .4 .4)} Face 25769 2665 2977 17177 {rgb=(.7 .4 .4)} Face 25770 2977 3000 17177 {rgb=(.7 .4 .4)} Face 25771 3000 2673 17177 {rgb=(.7 .4 .4)} Face 25772 2673 2665 17177 {rgb=(.7 .4 .4)} Face 25773 3428 3833 17178 {rgb=(.7 .4 .4)} Face 25774 3833 3886 17178 {rgb=(.7 .4 .4)} Face 25775 3886 3483 17178 {rgb=(.7 .4 .4)} Face 25776 3483 3428 17178 {rgb=(.7 .4 .4)} Face 25777 2681 3034 17179 {rgb=(.7 .4 .4)} Face 25778 3034 3083 17179 {rgb=(.7 .4 .4)} Face 25779 3083 2697 17179 {rgb=(.7 .4 .4)} Face 25780 2697 2681 17179 {rgb=(.7 .4 .4)} Face 25781 3519 3936 17180 {rgb=(.7 .4 .4)} Face 25782 3936 3990 17180 {rgb=(.7 .4 .4)} Face 25783 3990 3545 17180 {rgb=(.7 .4 .4)} Face 25784 3545 3519 17180 {rgb=(.7 .4 .4)} Face 25785 2726 3121 17181 {rgb=(.7 .4 .4)} Face 25786 3121 3154 17181 {rgb=(.7 .4 .4)} Face 25787 3154 2775 17181 {rgb=(.7 .4 .4)} Face 25788 2775 2726 17181 {rgb=(.7 .4 .4)} Face 25789 3708 4233 17182 {rgb=(.7 .4 .4)} Face 25790 4233 4807 17182 {rgb=(.7 .4 .4)} Face 25791 4807 4023 17182 {rgb=(.7 .4 .4)} Face 25792 4023 3708 17182 {rgb=(.7 .4 .4)} Face 25793 2917 3303 17183 {rgb=(.7 .4 .4)} Face 25794 3303 3546 17183 {rgb=(.7 .4 .4)} Face 25795 3546 3232 17183 {rgb=(.7 .4 .4)} Face 25796 3232 2917 17183 {rgb=(.7 .4 .4)} Face 25797 4238 5119 17184 {rgb=(.7 .4 .4)} Face 25798 5119 5164 17184 {rgb=(.7 .4 .4)} Face 25799 5164 4332 17184 {rgb=(.7 .4 .4)} Face 25800 4332 4238 17184 {rgb=(.7 .4 .4)} Face 25801 3502 3743 17185 {rgb=(.7 .4 .4)} Face 25802 3743 3952 17185 {rgb=(.7 .4 .4)} Face 25803 3952 3748 17185 {rgb=(.7 .4 .4)} Face 25804 3748 3502 17185 {rgb=(.7 .4 .4)} Face 25805 2587 2640 17186 {rgb=(.7 .4 .4)} Face 25806 2640 2628 17186 {rgb=(.7 .4 .4)} Face 25807 2628 2586 17186 {rgb=(.7 .4 .4)} Face 25808 2586 2587 17186 {rgb=(.7 .4 .4)} Face 25809 2538 2596 17187 {rgb=(.7 .4 .4)} Face 25810 2596 2513 17187 {rgb=(.7 .4 .4)} Face 25811 2513 2418 17187 {rgb=(.7 .4 .4)} Face 25812 2418 2538 17187 {rgb=(.7 .4 .4)} Face 25813 2320 2457 17188 {rgb=(.7 .4 .4)} Face 25814 2457 2445 17188 {rgb=(.7 .4 .4)} Face 25815 2445 2275 17188 {rgb=(.7 .4 .4)} Face 25816 2275 2320 17188 {rgb=(.7 .4 .4)} Face 25817 2253 2444 17189 {rgb=(.7 .4 .4)} Face 25818 2444 2456 17189 {rgb=(.7 .4 .4)} Face 25819 2456 2245 17189 {rgb=(.7 .4 .4)} Face 25820 2245 2253 17189 {rgb=(.7 .4 .4)} Face 25821 2279 2487 17190 {rgb=(.7 .4 .4)} Face 25822 2487 2546 17190 {rgb=(.7 .4 .4)} Face 25823 2546 2368 17190 {rgb=(.7 .4 .4)} Face 25824 2368 2279 17190 {rgb=(.7 .4 .4)} Face 25825 2468 2675 17191 {rgb=(.7 .4 .4)} Face 25826 2675 2861 17191 {rgb=(.7 .4 .4)} Face 25827 2861 2592 17191 {rgb=(.7 .4 .4)} Face 25828 2592 2468 17191 {rgb=(.7 .4 .4)} Face 25829 2721 3167 17192 {rgb=(.7 .4 .4)} Face 25830 3167 3446 17192 {rgb=(.7 .4 .4)} Face 25831 3446 2910 17192 {rgb=(.7 .4 .4)} Face 25832 2910 2721 17192 {rgb=(.7 .4 .4)} Face 25833 3808 4089 17193 {rgb=(.7 .4 .4)} Face 25834 4089 3792 17193 {rgb=(.7 .4 .4)} Face 25835 3792 3611 17193 {rgb=(.7 .4 .4)} Face 25836 3611 3808 17193 {rgb=(.7 .4 .4)} Face 25837 3613 3695 17194 {rgb=(.7 .4 .4)} Face 25838 3695 3435 17194 {rgb=(.7 .4 .4)} Face 25839 3435 3384 17194 {rgb=(.7 .4 .4)} Face 25840 3384 3613 17194 {rgb=(.7 .4 .4)} Face 25841 3439 3539 17195 {rgb=(.7 .4 .4)} Face 25842 3539 3325 17195 {rgb=(.7 .4 .4)} Face 25843 3325 3265 17195 {rgb=(.7 .4 .4)} Face 25844 3265 3439 17195 {rgb=(.7 .4 .4)} Face 25845 3172 3200 17196 {rgb=(.7 .4 .4)} Face 25846 3200 3047 17196 {rgb=(.7 .4 .4)} Face 25847 3047 3058 17196 {rgb=(.7 .4 .4)} Face 25848 3058 3172 17196 {rgb=(.7 .4 .4)} Face 25849 3120 3147 17197 {rgb=(.7 .4 .4)} Face 25850 3147 3046 17197 {rgb=(.7 .4 .4)} Face 25851 3046 3010 17197 {rgb=(.7 .4 .4)} Face 25852 3010 3120 17197 {rgb=(.7 .4 .4)} Face 25853 2869 2923 17198 {rgb=(.7 .4 .4)} Face 25854 2923 2785 17198 {rgb=(.7 .4 .4)} Face 25855 2785 2733 17198 {rgb=(.7 .4 .4)} Face 25856 2733 2869 17198 {rgb=(.7 .4 .4)} Face 25857 2629 2685 17199 {rgb=(.7 .4 .4)} Face 25858 2685 2602 17199 {rgb=(.7 .4 .4)} Face 25859 2602 2543 17199 {rgb=(.7 .4 .4)} Face 25860 2543 2629 17199 {rgb=(.7 .4 .4)} Face 25861 2455 2526 17200 {rgb=(.7 .4 .4)} Face 25862 2526 2474 17200 {rgb=(.7 .4 .4)} Face 25863 2474 2377 17200 {rgb=(.7 .4 .4)} Face 25864 2377 2455 17200 {rgb=(.7 .4 .4)} Face 25865 2378 2478 17201 {rgb=(.7 .4 .4)} Face 25866 2478 2535 17201 {rgb=(.7 .4 .4)} Face 25867 2535 2459 17201 {rgb=(.7 .4 .4)} Face 25868 2459 2378 17201 {rgb=(.7 .4 .4)} Face 25869 2540 2598 17202 {rgb=(.7 .4 .4)} Face 25870 2598 2660 17202 {rgb=(.7 .4 .4)} Face 25871 2660 2607 17202 {rgb=(.7 .4 .4)} Face 25872 2607 2540 17202 {rgb=(.7 .4 .4)} Face 25873 2633 2710 17203 {rgb=(.7 .4 .4)} Face 25874 2710 2744 17203 {rgb=(.7 .4 .4)} Face 25875 2744 2666 17203 {rgb=(.7 .4 .4)} Face 25876 2666 2633 17203 {rgb=(.7 .4 .4)} Face 25877 2678 2761 17204 {rgb=(.7 .4 .4)} Face 25878 2761 2745 17204 {rgb=(.7 .4 .4)} Face 25879 2745 2672 17204 {rgb=(.7 .4 .4)} Face 25880 2672 2678 17204 {rgb=(.7 .4 .4)} Face 25881 2643 2714 17205 {rgb=(.7 .4 .4)} Face 25882 2714 2658 17205 {rgb=(.7 .4 .4)} Face 25883 2658 2616 17205 {rgb=(.7 .4 .4)} Face 25884 2616 2643 17205 {rgb=(.7 .4 .4)} Face 25885 2554 2595 17206 {rgb=(.7 .4 .4)} Face 25886 2595 2492 17206 {rgb=(.7 .4 .4)} Face 25887 2492 2449 17206 {rgb=(.7 .4 .4)} Face 25888 2449 2554 17206 {rgb=(.7 .4 .4)} Face 25889 2272 2476 17207 {rgb=(.7 .4 .4)} Face 25890 2476 2430 17207 {rgb=(.7 .4 .4)} Face 25891 2430 2223 17207 {rgb=(.7 .4 .4)} Face 25892 2223 2272 17207 {rgb=(.7 .4 .4)} Face 25893 2435 2394 17208 {rgb=(.7 .4 .4)} Face 25894 2394 2462 17208 {rgb=(.7 .4 .4)} Face 25895 2462 2502 17208 {rgb=(.7 .4 .4)} Face 25896 2502 2435 17208 {rgb=(.7 .4 .4)} Face 25897 2153 2270 17209 {rgb=(.7 .4 .4)} Face 25898 2270 2355 17209 {rgb=(.7 .4 .4)} Face 25899 2355 2235 17209 {rgb=(.7 .4 .4)} Face 25900 2235 2153 17209 {rgb=(.7 .4 .4)} Face 25901 2144 2157 17210 {rgb=(.7 .4 .4)} Face 25902 2157 2003 17210 {rgb=(.7 .4 .4)} Face 25903 2003 1993 17210 {rgb=(.7 .4 .4)} Face 25904 1993 2144 17210 {rgb=(.7 .4 .4)} Face 25905 2056 2026 17211 {rgb=(.7 .4 .4)} Face 25906 2026 2176 17211 {rgb=(.7 .4 .4)} Face 25907 2176 2217 17211 {rgb=(.7 .4 .4)} Face 25908 2217 2056 17211 {rgb=(.7 .4 .4)} Face 25909 2356 2466 17212 {rgb=(.7 .4 .4)} Face 25910 2466 2498 17212 {rgb=(.7 .4 .4)} Face 25911 2498 2389 17212 {rgb=(.7 .4 .4)} Face 25912 2389 2356 17212 {rgb=(.7 .4 .4)} Face 25913 2534 2559 17213 {rgb=(.7 .4 .4)} Face 25914 2559 2458 17213 {rgb=(.7 .4 .4)} Face 25915 2458 2422 17213 {rgb=(.7 .4 .4)} Face 25916 2422 2534 17213 {rgb=(.7 .4 .4)} Face 25917 2266 2339 17214 {rgb=(.7 .4 .4)} Face 25918 2339 2198 17214 {rgb=(.7 .4 .4)} Face 25919 2198 2107 17214 {rgb=(.7 .4 .4)} Face 25920 2107 2266 17214 {rgb=(.7 .4 .4)} Face 25921 2251 2244 17215 {rgb=(.7 .4 .4)} Face 25922 2244 2380 17215 {rgb=(.7 .4 .4)} Face 25923 2380 2391 17215 {rgb=(.7 .4 .4)} Face 25924 2391 2251 17215 {rgb=(.7 .4 .4)} Face 25925 2482 2579 17216 {rgb=(.7 .4 .4)} Face 25926 2579 2580 17216 {rgb=(.7 .4 .4)} Face 25927 2580 2485 17216 {rgb=(.7 .4 .4)} Face 25928 2485 2482 17216 {rgb=(.7 .4 .4)} Face 25929 2083 2011 17217 {rgb=(.7 .4 .4)} Face 25930 2011 2023 17217 {rgb=(.7 .4 .4)} Face 25931 2023 2110 17217 {rgb=(.7 .4 .4)} Face 25932 2110 2083 17217 {rgb=(.7 .4 .4)} Face 25933 2126 2024 17218 {rgb=(.7 .4 .4)} Face 25934 2024 2014 17218 {rgb=(.7 .4 .4)} Face 25935 2014 2119 17218 {rgb=(.7 .4 .4)} Face 25936 2119 2126 17218 {rgb=(.7 .4 .4)} Face 25937 2075 1969 17219 {rgb=(.7 .4 .4)} Face 25938 1969 1894 17219 {rgb=(.7 .4 .4)} Face 25939 1894 2006 17219 {rgb=(.7 .4 .4)} Face 25940 2006 2075 17219 {rgb=(.7 .4 .4)} Face 25941 1921 1837 17220 {rgb=(.7 .4 .4)} Face 25942 1837 1796 17220 {rgb=(.7 .4 .4)} Face 25943 1796 1885 17220 {rgb=(.7 .4 .4)} Face 25944 1885 1921 17220 {rgb=(.7 .4 .4)} Face 25945 1853 1776 17221 {rgb=(.7 .4 .4)} Face 25946 1776 1759 17221 {rgb=(.7 .4 .4)} Face 25947 1759 1828 17221 {rgb=(.7 .4 .4)} Face 25948 1828 1853 17221 {rgb=(.7 .4 .4)} Face 25949 1827 1750 17222 {rgb=(.7 .4 .4)} Face 25950 1750 1740 17222 {rgb=(.7 .4 .4)} Face 25951 1740 1847 17222 {rgb=(.7 .4 .4)} Face 25952 1847 1827 17222 {rgb=(.7 .4 .4)} Face 25953 1815 1734 17223 {rgb=(.7 .4 .4)} Face 25954 1734 1724 17223 {rgb=(.7 .4 .4)} Face 25955 1724 1775 17223 {rgb=(.7 .4 .4)} Face 25956 1775 1815 17223 {rgb=(.7 .4 .4)} Face 25957 1771 1723 17224 {rgb=(.7 .4 .4)} Face 25958 1723 1733 17224 {rgb=(.7 .4 .4)} Face 25959 1733 1789 17224 {rgb=(.7 .4 .4)} Face 25960 1789 1771 17224 {rgb=(.7 .4 .4)} Face 25961 2109 2204 17225 {rgb=(.7 .4 .4)} Face 25962 2204 2169 17225 {rgb=(.7 .4 .4)} Face 25963 2169 2105 17225 {rgb=(.7 .4 .4)} Face 25964 2105 2109 17225 {rgb=(.7 .4 .4)} Face 25965 2228 2219 17226 {rgb=(.7 .4 .4)} Face 25966 2219 2111 17226 {rgb=(.7 .4 .4)} Face 25967 2111 2117 17226 {rgb=(.7 .4 .4)} Face 25968 2117 2228 17226 {rgb=(.7 .4 .4)} Face 25969 2132 2210 17227 {rgb=(.7 .4 .4)} Face 25970 2210 2086 17227 {rgb=(.7 .4 .4)} Face 25971 2086 2032 17227 {rgb=(.7 .4 .4)} Face 25972 2032 2132 17227 {rgb=(.7 .4 .4)} Face 25973 2039 2077 17228 {rgb=(.7 .4 .4)} Face 25974 2077 1967 17228 {rgb=(.7 .4 .4)} Face 25975 1967 1906 17228 {rgb=(.7 .4 .4)} Face 25976 1906 2039 17228 {rgb=(.7 .4 .4)} Face 25977 1790 1925 17229 {rgb=(.7 .4 .4)} Face 25978 1925 1989 17229 {rgb=(.7 .4 .4)} Face 25979 1989 1845 17229 {rgb=(.7 .4 .4)} Face 25980 1845 1790 17229 {rgb=(.7 .4 .4)} Face 25981 1875 1758 17230 {rgb=(.7 .4 .4)} Face 25982 1758 1756 17230 {rgb=(.7 .4 .4)} Face 25983 1756 1846 17230 {rgb=(.7 .4 .4)} Face 25984 1846 1875 17230 {rgb=(.7 .4 .4)} Face 25985 2013 2181 17231 {rgb=(.7 .4 .4)} Face 25986 2181 2164 17231 {rgb=(.7 .4 .4)} Face 25987 2164 1975 17231 {rgb=(.7 .4 .4)} Face 25988 1975 2013 17231 {rgb=(.7 .4 .4)} Face 25989 1959 2163 17232 {rgb=(.7 .4 .4)} Face 25990 2163 2171 17232 {rgb=(.7 .4 .4)} Face 25991 2171 1978 17232 {rgb=(.7 .4 .4)} Face 25992 1978 1959 17232 {rgb=(.7 .4 .4)} Face 25993 1823 1825 17233 {rgb=(.7 .4 .4)} Face 25994 1825 1757 17233 {rgb=(.7 .4 .4)} Face 25995 1757 1760 17233 {rgb=(.7 .4 .4)} Face 25996 1760 1823 17233 {rgb=(.7 .4 .4)} Face 25997 2035 2073 17234 {rgb=(.7 .4 .4)} Face 25998 2073 2159 17234 {rgb=(.7 .4 .4)} Face 25999 2159 2114 17234 {rgb=(.7 .4 .4)} Face 26000 2114 2035 17234 {rgb=(.7 .4 .4)} Face 26001 1857 1907 17235 {rgb=(.7 .4 .4)} Face 26002 1907 1862 17235 {rgb=(.7 .4 .4)} Face 26003 1862 1806 17235 {rgb=(.7 .4 .4)} Face 26004 1806 1857 17235 {rgb=(.7 .4 .4)} Face 26005 1849 1858 17236 {rgb=(.7 .4 .4)} Face 26006 1858 1778 17236 {rgb=(.7 .4 .4)} Face 26007 1778 1782 17236 {rgb=(.7 .4 .4)} Face 26008 1782 1849 17236 {rgb=(.7 .4 .4)} Face 26009 1763 1769 17237 {rgb=(.7 .4 .4)} Face 26010 1769 1855 17237 {rgb=(.7 .4 .4)} Face 26011 1855 1830 17237 {rgb=(.7 .4 .4)} Face 26012 1830 1763 17237 {rgb=(.7 .4 .4)} Face 26013 1816 1838 17238 {rgb=(.7 .4 .4)} Face 26014 1838 1868 17238 {rgb=(.7 .4 .4)} Face 26015 1868 1851 17238 {rgb=(.7 .4 .4)} Face 26016 1851 1816 17238 {rgb=(.7 .4 .4)} Face 26017 1913 2064 17239 {rgb=(.7 .4 .4)} Face 26018 2064 2047 17239 {rgb=(.7 .4 .4)} Face 26019 2047 1924 17239 {rgb=(.7 .4 .4)} Face 26020 1924 1913 17239 {rgb=(.7 .4 .4)} Face 26021 1902 1938 17240 {rgb=(.7 .4 .4)} Face 26022 1938 1905 17240 {rgb=(.7 .4 .4)} Face 26023 1905 1876 17240 {rgb=(.7 .4 .4)} Face 26024 1876 1902 17240 {rgb=(.7 .4 .4)} Face 26025 1854 1882 17241 {rgb=(.7 .4 .4)} Face 26026 1882 1893 17241 {rgb=(.7 .4 .4)} Face 26027 1893 1842 17241 {rgb=(.7 .4 .4)} Face 26028 1842 1854 17241 {rgb=(.7 .4 .4)} Face 26029 1822 1886 17242 {rgb=(.7 .4 .4)} Face 26030 1886 1860 17242 {rgb=(.7 .4 .4)} Face 26031 1860 1805 17242 {rgb=(.7 .4 .4)} Face 26032 1805 1822 17242 {rgb=(.7 .4 .4)} Face 26033 1812 1867 17243 {rgb=(.7 .4 .4)} Face 26034 1867 1903 17243 {rgb=(.7 .4 .4)} Face 26035 1903 1852 17243 {rgb=(.7 .4 .4)} Face 26036 1852 1812 17243 {rgb=(.7 .4 .4)} Face 26037 1891 1931 17244 {rgb=(.7 .4 .4)} Face 26038 1931 1963 17244 {rgb=(.7 .4 .4)} Face 26039 1963 1916 17244 {rgb=(.7 .4 .4)} Face 26040 1916 1891 17244 {rgb=(.7 .4 .4)} Face 26041 1996 2001 17245 {rgb=(.7 .4 .4)} Face 26042 2001 1956 17245 {rgb=(.7 .4 .4)} Face 26043 1956 1987 17245 {rgb=(.7 .4 .4)} Face 26044 1987 1996 17245 {rgb=(.7 .4 .4)} Face 26045 2199 2042 17246 {rgb=(.7 .4 .4)} Face 26046 2042 2062 17246 {rgb=(.7 .4 .4)} Face 26047 2062 2200 17246 {rgb=(.7 .4 .4)} Face 26048 2200 2199 17246 {rgb=(.7 .4 .4)} Face 26049 2152 2178 17247 {rgb=(.7 .4 .4)} Face 26050 2178 2067 17247 {rgb=(.7 .4 .4)} Face 26051 2067 2061 17247 {rgb=(.7 .4 .4)} Face 26052 2061 2152 17247 {rgb=(.7 .4 .4)} Face 26053 2009 2017 17248 {rgb=(.7 .4 .4)} Face 26054 2017 1992 17248 {rgb=(.7 .4 .4)} Face 26055 1992 1979 17248 {rgb=(.7 .4 .4)} Face 26056 1979 2009 17248 {rgb=(.7 .4 .4)} Face 26057 1912 1940 17249 {rgb=(.7 .4 .4)} Face 26058 1940 1883 17249 {rgb=(.7 .4 .4)} Face 26059 1883 1856 17249 {rgb=(.7 .4 .4)} Face 26060 1856 1912 17249 {rgb=(.7 .4 .4)} Face 26061 1803 1819 17250 {rgb=(.7 .4 .4)} Face 26062 1819 1783 17250 {rgb=(.7 .4 .4)} Face 26063 1783 1779 17250 {rgb=(.7 .4 .4)} Face 26064 1779 1803 17250 {rgb=(.7 .4 .4)} Face 26065 1761 1766 17251 {rgb=(.7 .4 .4)} Face 26066 1766 1753 17251 {rgb=(.7 .4 .4)} Face 26067 1753 1744 17251 {rgb=(.7 .4 .4)} Face 26068 1744 1761 17251 {rgb=(.7 .4 .4)} Face 26069 1727 1742 17252 {rgb=(.7 .4 .4)} Face 26070 1742 1735 17252 {rgb=(.7 .4 .4)} Face 26071 1735 1719 17252 {rgb=(.7 .4 .4)} Face 26072 1719 1727 17252 {rgb=(.7 .4 .4)} Face 26073 1714 1730 17253 {rgb=(.7 .4 .4)} Face 26074 1730 1729 17253 {rgb=(.7 .4 .4)} Face 26075 1729 1715 17253 {rgb=(.7 .4 .4)} Face 26076 1715 1714 17253 {rgb=(.7 .4 .4)} Face 26077 1716 1725 17254 {rgb=(.7 .4 .4)} Face 26078 1725 1722 17254 {rgb=(.7 .4 .4)} Face 26079 1722 1717 17254 {rgb=(.7 .4 .4)} Face 26080 1717 1716 17254 {rgb=(.7 .4 .4)} Face 26081 1721 1731 17255 {rgb=(.7 .4 .4)} Face 26082 1731 1745 17255 {rgb=(.7 .4 .4)} Face 26083 1745 1746 17255 {rgb=(.7 .4 .4)} Face 26084 1746 1721 17255 {rgb=(.7 .4 .4)} Face 26085 1767 1764 17256 {rgb=(.7 .4 .4)} Face 26086 1764 1787 17256 {rgb=(.7 .4 .4)} Face 26087 1787 1786 17256 {rgb=(.7 .4 .4)} Face 26088 1786 1767 17256 {rgb=(.7 .4 .4)} Face 26089 1839 1896 17257 {rgb=(.7 .4 .4)} Face 26090 1896 1892 17257 {rgb=(.7 .4 .4)} Face 26091 1892 1826 17257 {rgb=(.7 .4 .4)} Face 26092 1826 1839 17257 {rgb=(.7 .4 .4)} Face 26093 2043 1955 17258 {rgb=(.7 .4 .4)} Face 26094 1955 1971 17258 {rgb=(.7 .4 .4)} Face 26095 1971 2045 17258 {rgb=(.7 .4 .4)} Face 26096 2045 2043 17258 {rgb=(.7 .4 .4)} Face 26097 1821 1747 17259 {rgb=(.7 .4 .4)} Face 26098 1747 1770 17259 {rgb=(.7 .4 .4)} Face 26099 1770 1869 17259 {rgb=(.7 .4 .4)} Face 26100 1869 1821 17259 {rgb=(.7 .4 .4)} Face 26101 1793 1835 17260 {rgb=(.7 .4 .4)} Face 26102 1835 1965 17260 {rgb=(.7 .4 .4)} Face 26103 1965 1910 17260 {rgb=(.7 .4 .4)} Face 26104 1910 1793 17260 {rgb=(.7 .4 .4)} Face 26105 1884 1926 17261 {rgb=(.7 .4 .4)} Face 26106 1926 2038 17261 {rgb=(.7 .4 .4)} Face 26107 2038 2012 17261 {rgb=(.7 .4 .4)} Face 26108 2012 1884 17261 {rgb=(.7 .4 .4)} Face 26109 7002 6963 17262 {rgb=(.5 .5 .5)} Face 26110 6963 6756 17262 {rgb=(.5 .5 .5)} Face 26111 6756 6806 17262 {rgb=(.5 .5 .5)} Face 26112 6806 7002 17262 {rgb=(.5 .5 .5)} Face 26113 7173 7138 17263 {rgb=(.5 .5 .5)} Face 26114 7138 6963 17263 {rgb=(.5 .5 .5)} Face 26115 6963 7002 17263 {rgb=(.5 .5 .5)} Face 26116 7002 7173 17263 {rgb=(.5 .5 .5)} Face 26117 7378 7333 17264 {rgb=(.5 .5 .5)} Face 26118 7333 7138 17264 {rgb=(.5 .5 .5)} Face 26119 7138 7173 17264 {rgb=(.5 .5 .5)} Face 26120 7173 7378 17264 {rgb=(.5 .5 .5)} Face 26121 7524 7488 17265 {rgb=(.5 .5 .5)} Face 26122 7488 7333 17265 {rgb=(.5 .5 .5)} Face 26123 7333 7378 17265 {rgb=(.5 .5 .5)} Face 26124 7378 7524 17265 {rgb=(.5 .5 .5)} Face 26125 7672 7639 17266 {rgb=(.5 .5 .5)} Face 26126 7639 7488 17266 {rgb=(.5 .5 .5)} Face 26127 7488 7524 17266 {rgb=(.5 .5 .5)} Face 26128 7524 7672 17266 {rgb=(.5 .5 .5)} Face 26129 7818 7779 17267 {rgb=(.5 .5 .5)} Face 26130 7779 7639 17267 {rgb=(.5 .5 .5)} Face 26131 7639 7672 17267 {rgb=(.5 .5 .5)} Face 26132 7672 7818 17267 {rgb=(.5 .5 .5)} Face 26133 7921 7887 17268 {rgb=(.5 .5 .5)} Face 26134 7887 7779 17268 {rgb=(.5 .5 .5)} Face 26135 7779 7818 17268 {rgb=(.5 .5 .5)} Face 26136 7818 7921 17268 {rgb=(.5 .5 .5)} Face 26137 8014 7969 17269 {rgb=(.5 .5 .5)} Face 26138 7969 7887 17269 {rgb=(.5 .5 .5)} Face 26139 7887 7921 17269 {rgb=(.5 .5 .5)} Face 26140 7921 8014 17269 {rgb=(.5 .5 .5)} Face 26141 8086 8036 17270 {rgb=(.5 .5 .5)} Face 26142 8036 7969 17270 {rgb=(.5 .5 .5)} Face 26143 7969 8014 17270 {rgb=(.5 .5 .5)} Face 26144 8014 8086 17270 {rgb=(.5 .5 .5)} Face 26145 8111 8053 17271 {rgb=(.5 .5 .5)} Face 26146 8053 8036 17271 {rgb=(.5 .5 .5)} Face 26147 8036 8086 17271 {rgb=(.5 .5 .5)} Face 26148 8086 8111 17271 {rgb=(.5 .5 .5)} Face 26149 8087 8037 17272 {rgb=(.5 .5 .5)} Face 26150 8037 8053 17272 {rgb=(.5 .5 .5)} Face 26151 8053 8111 17272 {rgb=(.5 .5 .5)} Face 26152 8111 8087 17272 {rgb=(.5 .5 .5)} Face 26153 8015 7970 17273 {rgb=(.5 .5 .5)} Face 26154 7970 8037 17273 {rgb=(.5 .5 .5)} Face 26155 8037 8087 17273 {rgb=(.5 .5 .5)} Face 26156 8087 8015 17273 {rgb=(.5 .5 .5)} Face 26157 7922 7888 17274 {rgb=(.5 .5 .5)} Face 26158 7888 7970 17274 {rgb=(.5 .5 .5)} Face 26159 7970 8015 17274 {rgb=(.5 .5 .5)} Face 26160 8015 7922 17274 {rgb=(.5 .5 .5)} Face 26161 7819 7780 17275 {rgb=(.5 .5 .5)} Face 26162 7780 7888 17275 {rgb=(.5 .5 .5)} Face 26163 7888 7922 17275 {rgb=(.5 .5 .5)} Face 26164 7922 7819 17275 {rgb=(.5 .5 .5)} Face 26165 7673 7640 17276 {rgb=(.5 .5 .5)} Face 26166 7640 7780 17276 {rgb=(.5 .5 .5)} Face 26167 7780 7819 17276 {rgb=(.5 .5 .5)} Face 26168 7819 7673 17276 {rgb=(.5 .5 .5)} Face 26169 7525 7489 17277 {rgb=(.5 .5 .5)} Face 26170 7489 7640 17277 {rgb=(.5 .5 .5)} Face 26171 7640 7673 17277 {rgb=(.5 .5 .5)} Face 26172 7673 7525 17277 {rgb=(.5 .5 .5)} Face 26173 7379 7334 17278 {rgb=(.5 .5 .5)} Face 26174 7334 7489 17278 {rgb=(.5 .5 .5)} Face 26175 7489 7525 17278 {rgb=(.5 .5 .5)} Face 26176 7525 7379 17278 {rgb=(.5 .5 .5)} Face 26177 7174 7139 17279 {rgb=(.5 .5 .5)} Face 26178 7139 7334 17279 {rgb=(.5 .5 .5)} Face 26179 7334 7379 17279 {rgb=(.5 .5 .5)} Face 26180 7379 7174 17279 {rgb=(.5 .5 .5)} Face 26181 7003 6964 17280 {rgb=(.5 .5 .5)} Face 26182 6964 7139 17280 {rgb=(.5 .5 .5)} Face 26183 7139 7174 17280 {rgb=(.5 .5 .5)} Face 26184 7174 7003 17280 {rgb=(.5 .5 .5)} Face 26185 6807 6757 17281 {rgb=(.5 .5 .5)} Face 26186 6757 6964 17281 {rgb=(.5 .5 .5)} Face 26187 6964 7003 17281 {rgb=(.5 .5 .5)} Face 26188 7003 6807 17281 {rgb=(.5 .5 .5)} Face 26189 6622 6562 17282 {rgb=(.5 .5 .5)} Face 26190 6562 6757 17282 {rgb=(.5 .5 .5)} Face 26191 6757 6807 17282 {rgb=(.5 .5 .5)} Face 26192 6807 6622 17282 {rgb=(.5 .5 .5)} Face 26193 6342 6269 17283 {rgb=(.5 .5 .5)} Face 26194 6269 6562 17283 {rgb=(.5 .5 .5)} Face 26195 6562 6622 17283 {rgb=(.5 .5 .5)} Face 26196 6622 6342 17283 {rgb=(.5 .5 .5)} Face 26197 6086 6020 17284 {rgb=(.5 .5 .5)} Face 26198 6020 6269 17284 {rgb=(.5 .5 .5)} Face 26199 6269 6342 17284 {rgb=(.5 .5 .5)} Face 26200 6342 6086 17284 {rgb=(.5 .5 .5)} Face 26201 5888 5842 17285 {rgb=(.5 .5 .5)} Face 26202 5842 6020 17285 {rgb=(.5 .5 .5)} Face 26203 6020 6086 17285 {rgb=(.5 .5 .5)} Face 26204 6086 5888 17285 {rgb=(.5 .5 .5)} Face 26205 5717 5649 17286 {rgb=(.5 .5 .5)} Face 26206 5649 5842 17286 {rgb=(.5 .5 .5)} Face 26207 5842 5888 17286 {rgb=(.5 .5 .5)} Face 26208 5888 5717 17286 {rgb=(.5 .5 .5)} Face 26209 5572 5488 17287 {rgb=(.5 .5 .5)} Face 26210 5488 5649 17287 {rgb=(.5 .5 .5)} Face 26211 5649 5717 17287 {rgb=(.5 .5 .5)} Face 26212 5717 5572 17287 {rgb=(.5 .5 .5)} Face 26213 5457 5385 17288 {rgb=(.5 .5 .5)} Face 26214 5385 5488 17288 {rgb=(.5 .5 .5)} Face 26215 5488 5572 17288 {rgb=(.5 .5 .5)} Face 26216 5572 5457 17288 {rgb=(.5 .5 .5)} Face 26217 5368 5288 17289 {rgb=(.5 .5 .5)} Face 26218 5288 5385 17289 {rgb=(.5 .5 .5)} Face 26219 5385 5457 17289 {rgb=(.5 .5 .5)} Face 26220 5457 5368 17289 {rgb=(.5 .5 .5)} Face 26221 5305 5225 17290 {rgb=(.5 .5 .5)} Face 26222 5225 5288 17290 {rgb=(.5 .5 .5)} Face 26223 5288 5368 17290 {rgb=(.5 .5 .5)} Face 26224 5368 5305 17290 {rgb=(.5 .5 .5)} Face 26225 5293 5202 17291 {rgb=(.5 .5 .5)} Face 26226 5202 5225 17291 {rgb=(.5 .5 .5)} Face 26227 5225 5305 17291 {rgb=(.5 .5 .5)} Face 26228 5305 5293 17291 {rgb=(.5 .5 .5)} Face 26229 5304 5224 17292 {rgb=(.5 .5 .5)} Face 26230 5224 5202 17292 {rgb=(.5 .5 .5)} Face 26231 5202 5293 17292 {rgb=(.5 .5 .5)} Face 26232 5293 5304 17292 {rgb=(.5 .5 .5)} Face 26233 5367 5287 17293 {rgb=(.5 .5 .5)} Face 26234 5287 5224 17293 {rgb=(.5 .5 .5)} Face 26235 5224 5304 17293 {rgb=(.5 .5 .5)} Face 26236 5304 5367 17293 {rgb=(.5 .5 .5)} Face 26237 5456 5384 17294 {rgb=(.5 .5 .5)} Face 26238 5384 5287 17294 {rgb=(.5 .5 .5)} Face 26239 5287 5367 17294 {rgb=(.5 .5 .5)} Face 26240 5367 5456 17294 {rgb=(.5 .5 .5)} Face 26241 5571 5487 17295 {rgb=(.5 .5 .5)} Face 26242 5487 5384 17295 {rgb=(.5 .5 .5)} Face 26243 5384 5456 17295 {rgb=(.5 .5 .5)} Face 26244 5456 5571 17295 {rgb=(.5 .5 .5)} Face 26245 5716 5648 17296 {rgb=(.5 .5 .5)} Face 26246 5648 5487 17296 {rgb=(.5 .5 .5)} Face 26247 5487 5571 17296 {rgb=(.5 .5 .5)} Face 26248 5571 5716 17296 {rgb=(.5 .5 .5)} Face 26249 5887 5841 17297 {rgb=(.5 .5 .5)} Face 26250 5841 5648 17297 {rgb=(.5 .5 .5)} Face 26251 5648 5716 17297 {rgb=(.5 .5 .5)} Face 26252 5716 5887 17297 {rgb=(.5 .5 .5)} Face 26253 6085 6019 17298 {rgb=(.5 .5 .5)} Face 26254 6019 5841 17298 {rgb=(.5 .5 .5)} Face 26255 5841 5887 17298 {rgb=(.5 .5 .5)} Face 26256 5887 6085 17298 {rgb=(.5 .5 .5)} Face 26257 6341 6268 17299 {rgb=(.5 .5 .5)} Face 26258 6268 6019 17299 {rgb=(.5 .5 .5)} Face 26259 6019 6085 17299 {rgb=(.5 .5 .5)} Face 26260 6085 6341 17299 {rgb=(.5 .5 .5)} Face 26261 6621 6561 17300 {rgb=(.5 .5 .5)} Face 26262 6561 6268 17300 {rgb=(.5 .5 .5)} Face 26263 6268 6341 17300 {rgb=(.5 .5 .5)} Face 26264 6341 6621 17300 {rgb=(.5 .5 .5)} Face 26265 6806 6756 17301 {rgb=(.5 .5 .5)} Face 26266 6756 6561 17301 {rgb=(.5 .5 .5)} Face 26267 6561 6621 17301 {rgb=(.5 .5 .5)} Face 26268 6621 6806 17301 {rgb=(.5 .5 .5)} Face 26269 7033 7002 17302 {rgb=(.5 .5 .5)} Face 26270 7002 6806 17302 {rgb=(.5 .5 .5)} Face 26271 6806 6861 17302 {rgb=(.5 .5 .5)} Face 26272 6861 7033 17302 {rgb=(.5 .5 .5)} Face 26273 7206 7173 17303 {rgb=(.5 .5 .5)} Face 26274 7173 7002 17303 {rgb=(.5 .5 .5)} Face 26275 7002 7033 17303 {rgb=(.5 .5 .5)} Face 26276 7033 7206 17303 {rgb=(.5 .5 .5)} Face 26277 7399 7378 17304 {rgb=(.5 .5 .5)} Face 26278 7378 7173 17304 {rgb=(.5 .5 .5)} Face 26279 7173 7206 17304 {rgb=(.5 .5 .5)} Face 26280 7206 7399 17304 {rgb=(.5 .5 .5)} Face 26281 7545 7524 17305 {rgb=(.5 .5 .5)} Face 26282 7524 7378 17305 {rgb=(.5 .5 .5)} Face 26283 7378 7399 17305 {rgb=(.5 .5 .5)} Face 26284 7399 7545 17305 {rgb=(.5 .5 .5)} Face 26285 7691 7672 17306 {rgb=(.5 .5 .5)} Face 26286 7672 7524 17306 {rgb=(.5 .5 .5)} Face 26287 7524 7545 17306 {rgb=(.5 .5 .5)} Face 26288 7545 7691 17306 {rgb=(.5 .5 .5)} Face 26289 7830 7818 17307 {rgb=(.5 .5 .5)} Face 26290 7818 7672 17307 {rgb=(.5 .5 .5)} Face 26291 7672 7691 17307 {rgb=(.5 .5 .5)} Face 26292 7691 7830 17307 {rgb=(.5 .5 .5)} Face 26293 7930 7921 17308 {rgb=(.5 .5 .5)} Face 26294 7921 7818 17308 {rgb=(.5 .5 .5)} Face 26295 7818 7830 17308 {rgb=(.5 .5 .5)} Face 26296 7830 7930 17308 {rgb=(.5 .5 .5)} Face 26297 8020 8014 17309 {rgb=(.5 .5 .5)} Face 26298 8014 7921 17309 {rgb=(.5 .5 .5)} Face 26299 7921 7930 17309 {rgb=(.5 .5 .5)} Face 26300 7930 8020 17309 {rgb=(.5 .5 .5)} Face 26301 8091 8086 17310 {rgb=(.5 .5 .5)} Face 26302 8086 8014 17310 {rgb=(.5 .5 .5)} Face 26303 8014 8020 17310 {rgb=(.5 .5 .5)} Face 26304 8020 8091 17310 {rgb=(.5 .5 .5)} Face 26305 8115 8111 17311 {rgb=(.5 .5 .5)} Face 26306 8111 8086 17311 {rgb=(.5 .5 .5)} Face 26307 8086 8091 17311 {rgb=(.5 .5 .5)} Face 26308 8091 8115 17311 {rgb=(.5 .5 .5)} Face 26309 8092 8087 17312 {rgb=(.5 .5 .5)} Face 26310 8087 8111 17312 {rgb=(.5 .5 .5)} Face 26311 8111 8115 17312 {rgb=(.5 .5 .5)} Face 26312 8115 8092 17312 {rgb=(.5 .5 .5)} Face 26313 8021 8015 17313 {rgb=(.5 .5 .5)} Face 26314 8015 8087 17313 {rgb=(.5 .5 .5)} Face 26315 8087 8092 17313 {rgb=(.5 .5 .5)} Face 26316 8092 8021 17313 {rgb=(.5 .5 .5)} Face 26317 7931 7922 17314 {rgb=(.5 .5 .5)} Face 26318 7922 8015 17314 {rgb=(.5 .5 .5)} Face 26319 8015 8021 17314 {rgb=(.5 .5 .5)} Face 26320 8021 7931 17314 {rgb=(.5 .5 .5)} Face 26321 7831 7819 17315 {rgb=(.5 .5 .5)} Face 26322 7819 7922 17315 {rgb=(.5 .5 .5)} Face 26323 7922 7931 17315 {rgb=(.5 .5 .5)} Face 26324 7931 7831 17315 {rgb=(.5 .5 .5)} Face 26325 7692 7673 17316 {rgb=(.5 .5 .5)} Face 26326 7673 7819 17316 {rgb=(.5 .5 .5)} Face 26327 7819 7831 17316 {rgb=(.5 .5 .5)} Face 26328 7831 7692 17316 {rgb=(.5 .5 .5)} Face 26329 7546 7525 17317 {rgb=(.5 .5 .5)} Face 26330 7525 7673 17317 {rgb=(.5 .5 .5)} Face 26331 7673 7692 17317 {rgb=(.5 .5 .5)} Face 26332 7692 7546 17317 {rgb=(.5 .5 .5)} Face 26333 7400 7379 17318 {rgb=(.5 .5 .5)} Face 26334 7379 7525 17318 {rgb=(.5 .5 .5)} Face 26335 7525 7546 17318 {rgb=(.5 .5 .5)} Face 26336 7546 7400 17318 {rgb=(.5 .5 .5)} Face 26337 7207 7174 17319 {rgb=(.5 .5 .5)} Face 26338 7174 7379 17319 {rgb=(.5 .5 .5)} Face 26339 7379 7400 17319 {rgb=(.5 .5 .5)} Face 26340 7400 7207 17319 {rgb=(.5 .5 .5)} Face 26341 7034 7003 17320 {rgb=(.5 .5 .5)} Face 26342 7003 7174 17320 {rgb=(.5 .5 .5)} Face 26343 7174 7207 17320 {rgb=(.5 .5 .5)} Face 26344 7207 7034 17320 {rgb=(.5 .5 .5)} Face 26345 6862 6807 17321 {rgb=(.5 .5 .5)} Face 26346 6807 7003 17321 {rgb=(.5 .5 .5)} Face 26347 7003 7034 17321 {rgb=(.5 .5 .5)} Face 26348 7034 6862 17321 {rgb=(.5 .5 .5)} Face 26349 6677 6622 17322 {rgb=(.5 .5 .5)} Face 26350 6622 6807 17322 {rgb=(.5 .5 .5)} Face 26351 6807 6862 17322 {rgb=(.5 .5 .5)} Face 26352 6862 6677 17322 {rgb=(.5 .5 .5)} Face 26353 6431 6342 17323 {rgb=(.5 .5 .5)} Face 26354 6342 6622 17323 {rgb=(.5 .5 .5)} Face 26355 6622 6677 17323 {rgb=(.5 .5 .5)} Face 26356 6677 6431 17323 {rgb=(.5 .5 .5)} Face 26357 6166 6086 17324 {rgb=(.5 .5 .5)} Face 26358 6086 6342 17324 {rgb=(.5 .5 .5)} Face 26359 6342 6431 17324 {rgb=(.5 .5 .5)} Face 26360 6431 6166 17324 {rgb=(.5 .5 .5)} Face 26361 5981 5888 17325 {rgb=(.5 .5 .5)} Face 26362 5888 6086 17325 {rgb=(.5 .5 .5)} Face 26363 6086 6166 17325 {rgb=(.5 .5 .5)} Face 26364 6166 5981 17325 {rgb=(.5 .5 .5)} Face 26365 5825 5717 17326 {rgb=(.5 .5 .5)} Face 26366 5717 5888 17326 {rgb=(.5 .5 .5)} Face 26367 5888 5981 17326 {rgb=(.5 .5 .5)} Face 26368 5981 5825 17326 {rgb=(.5 .5 .5)} Face 26369 5674 5572 17327 {rgb=(.5 .5 .5)} Face 26370 5572 5717 17327 {rgb=(.5 .5 .5)} Face 26371 5717 5825 17327 {rgb=(.5 .5 .5)} Face 26372 5825 5674 17327 {rgb=(.5 .5 .5)} Face 26373 5560 5457 17328 {rgb=(.5 .5 .5)} Face 26374 5457 5572 17328 {rgb=(.5 .5 .5)} Face 26375 5572 5674 17328 {rgb=(.5 .5 .5)} Face 26376 5674 5560 17328 {rgb=(.5 .5 .5)} Face 26377 5470 5368 17329 {rgb=(.5 .5 .5)} Face 26378 5368 5457 17329 {rgb=(.5 .5 .5)} Face 26379 5457 5560 17329 {rgb=(.5 .5 .5)} Face 26380 5560 5470 17329 {rgb=(.5 .5 .5)} Face 26381 5424 5305 17330 {rgb=(.5 .5 .5)} Face 26382 5305 5368 17330 {rgb=(.5 .5 .5)} Face 26383 5368 5470 17330 {rgb=(.5 .5 .5)} Face 26384 5470 5424 17330 {rgb=(.5 .5 .5)} Face 26385 5413 5293 17331 {rgb=(.5 .5 .5)} Face 26386 5293 5305 17331 {rgb=(.5 .5 .5)} Face 26387 5305 5424 17331 {rgb=(.5 .5 .5)} Face 26388 5424 5413 17331 {rgb=(.5 .5 .5)} Face 26389 5423 5304 17332 {rgb=(.5 .5 .5)} Face 26390 5304 5293 17332 {rgb=(.5 .5 .5)} Face 26391 5293 5413 17332 {rgb=(.5 .5 .5)} Face 26392 5413 5423 17332 {rgb=(.5 .5 .5)} Face 26393 5469 5367 17333 {rgb=(.5 .5 .5)} Face 26394 5367 5304 17333 {rgb=(.5 .5 .5)} Face 26395 5304 5423 17333 {rgb=(.5 .5 .5)} Face 26396 5423 5469 17333 {rgb=(.5 .5 .5)} Face 26397 5559 5456 17334 {rgb=(.5 .5 .5)} Face 26398 5456 5367 17334 {rgb=(.5 .5 .5)} Face 26399 5367 5469 17334 {rgb=(.5 .5 .5)} Face 26400 5469 5559 17334 {rgb=(.5 .5 .5)} Face 26401 5673 5571 17335 {rgb=(.5 .5 .5)} Face 26402 5571 5456 17335 {rgb=(.5 .5 .5)} Face 26403 5456 5559 17335 {rgb=(.5 .5 .5)} Face 26404 5559 5673 17335 {rgb=(.5 .5 .5)} Face 26405 5824 5716 17336 {rgb=(.5 .5 .5)} Face 26406 5716 5571 17336 {rgb=(.5 .5 .5)} Face 26407 5571 5673 17336 {rgb=(.5 .5 .5)} Face 26408 5673 5824 17336 {rgb=(.5 .5 .5)} Face 26409 5980 5887 17337 {rgb=(.5 .5 .5)} Face 26410 5887 5716 17337 {rgb=(.5 .5 .5)} Face 26411 5716 5824 17337 {rgb=(.5 .5 .5)} Face 26412 5824 5980 17337 {rgb=(.5 .5 .5)} Face 26413 6165 6085 17338 {rgb=(.5 .5 .5)} Face 26414 6085 5887 17338 {rgb=(.5 .5 .5)} Face 26415 5887 5980 17338 {rgb=(.5 .5 .5)} Face 26416 5980 6165 17338 {rgb=(.5 .5 .5)} Face 26417 6430 6341 17339 {rgb=(.5 .5 .5)} Face 26418 6341 6085 17339 {rgb=(.5 .5 .5)} Face 26419 6085 6165 17339 {rgb=(.5 .5 .5)} Face 26420 6165 6430 17339 {rgb=(.5 .5 .5)} Face 26421 6676 6621 17340 {rgb=(.5 .5 .5)} Face 26422 6621 6341 17340 {rgb=(.5 .5 .5)} Face 26423 6341 6430 17340 {rgb=(.5 .5 .5)} Face 26424 6430 6676 17340 {rgb=(.5 .5 .5)} Face 26425 6861 6806 17341 {rgb=(.5 .5 .5)} Face 26426 6806 6621 17341 {rgb=(.5 .5 .5)} Face 26427 6621 6676 17341 {rgb=(.5 .5 .5)} Face 26428 6676 6861 17341 {rgb=(.5 .5 .5)} Face 26429 7069 7033 17342 {rgb=(.5 .5 .5)} Face 26430 7033 6861 17342 {rgb=(.5 .5 .5)} Face 26431 6861 6910 17342 {rgb=(.5 .5 .5)} Face 26432 6910 7069 17342 {rgb=(.5 .5 .5)} Face 26433 7240 7206 17343 {rgb=(.5 .5 .5)} Face 26434 7206 7033 17343 {rgb=(.5 .5 .5)} Face 26435 7033 7069 17343 {rgb=(.5 .5 .5)} Face 26436 7069 7240 17343 {rgb=(.5 .5 .5)} Face 26437 7412 7399 17344 {rgb=(.5 .5 .5)} Face 26438 7399 7206 17344 {rgb=(.5 .5 .5)} Face 26439 7206 7240 17344 {rgb=(.5 .5 .5)} Face 26440 7240 7412 17344 {rgb=(.5 .5 .5)} Face 26441 7547 7545 17345 {rgb=(.5 .5 .5)} Face 26442 7545 7399 17345 {rgb=(.5 .5 .5)} Face 26443 7399 7412 17345 {rgb=(.5 .5 .5)} Face 26444 7412 7547 17345 {rgb=(.5 .5 .5)} Face 26445 7680 7691 17346 {rgb=(.5 .5 .5)} Face 26446 7691 7545 17346 {rgb=(.5 .5 .5)} Face 26447 7545 7547 17346 {rgb=(.5 .5 .5)} Face 26448 7547 7680 17346 {rgb=(.5 .5 .5)} Face 26449 7809 7830 17347 {rgb=(.5 .5 .5)} Face 26450 7830 7691 17347 {rgb=(.5 .5 .5)} Face 26451 7691 7680 17347 {rgb=(.5 .5 .5)} Face 26452 7680 7809 17347 {rgb=(.5 .5 .5)} Face 26453 7904 7930 17348 {rgb=(.5 .5 .5)} Face 26454 7930 7830 17348 {rgb=(.5 .5 .5)} Face 26455 7830 7809 17348 {rgb=(.5 .5 .5)} Face 26456 7809 7904 17348 {rgb=(.5 .5 .5)} Face 26457 7983 8020 17349 {rgb=(.5 .5 .5)} Face 26458 8020 7930 17349 {rgb=(.5 .5 .5)} Face 26459 7930 7904 17349 {rgb=(.5 .5 .5)} Face 26460 7904 7983 17349 {rgb=(.5 .5 .5)} Face 26461 8041 8091 17350 {rgb=(.5 .5 .5)} Face 26462 8091 8020 17350 {rgb=(.5 .5 .5)} Face 26463 8020 7983 17350 {rgb=(.5 .5 .5)} Face 26464 7983 8041 17350 {rgb=(.5 .5 .5)} Face 26465 8059 8115 17351 {rgb=(.5 .5 .5)} Face 26466 8115 8091 17351 {rgb=(.5 .5 .5)} Face 26467 8091 8041 17351 {rgb=(.5 .5 .5)} Face 26468 8041 8059 17351 {rgb=(.5 .5 .5)} Face 26469 8042 8092 17352 {rgb=(.5 .5 .5)} Face 26470 8092 8115 17352 {rgb=(.5 .5 .5)} Face 26471 8115 8059 17352 {rgb=(.5 .5 .5)} Face 26472 8059 8042 17352 {rgb=(.5 .5 .5)} Face 26473 7984 8021 17353 {rgb=(.5 .5 .5)} Face 26474 8021 8092 17353 {rgb=(.5 .5 .5)} Face 26475 8092 8042 17353 {rgb=(.5 .5 .5)} Face 26476 8042 7984 17353 {rgb=(.5 .5 .5)} Face 26477 7905 7931 17354 {rgb=(.5 .5 .5)} Face 26478 7931 8021 17354 {rgb=(.5 .5 .5)} Face 26479 8021 7984 17354 {rgb=(.5 .5 .5)} Face 26480 7984 7905 17354 {rgb=(.5 .5 .5)} Face 26481 7810 7831 17355 {rgb=(.5 .5 .5)} Face 26482 7831 7931 17355 {rgb=(.5 .5 .5)} Face 26483 7931 7905 17355 {rgb=(.5 .5 .5)} Face 26484 7905 7810 17355 {rgb=(.5 .5 .5)} Face 26485 7681 7692 17356 {rgb=(.5 .5 .5)} Face 26486 7692 7831 17356 {rgb=(.5 .5 .5)} Face 26487 7831 7810 17356 {rgb=(.5 .5 .5)} Face 26488 7810 7681 17356 {rgb=(.5 .5 .5)} Face 26489 7548 7546 17357 {rgb=(.5 .5 .5)} Face 26490 7546 7692 17357 {rgb=(.5 .5 .5)} Face 26491 7692 7681 17357 {rgb=(.5 .5 .5)} Face 26492 7681 7548 17357 {rgb=(.5 .5 .5)} Face 26493 7413 7400 17358 {rgb=(.5 .5 .5)} Face 26494 7400 7546 17358 {rgb=(.5 .5 .5)} Face 26495 7546 7548 17358 {rgb=(.5 .5 .5)} Face 26496 7548 7413 17358 {rgb=(.5 .5 .5)} Face 26497 7241 7207 17359 {rgb=(.5 .5 .5)} Face 26498 7207 7400 17359 {rgb=(.5 .5 .5)} Face 26499 7400 7413 17359 {rgb=(.5 .5 .5)} Face 26500 7413 7241 17359 {rgb=(.5 .5 .5)} Face 26501 7070 7034 17360 {rgb=(.5 .5 .5)} Face 26502 7034 7207 17360 {rgb=(.5 .5 .5)} Face 26503 7207 7241 17360 {rgb=(.5 .5 .5)} Face 26504 7241 7070 17360 {rgb=(.5 .5 .5)} Face 26505 6911 6862 17361 {rgb=(.5 .5 .5)} Face 26506 6862 7034 17361 {rgb=(.5 .5 .5)} Face 26507 7034 7070 17361 {rgb=(.5 .5 .5)} Face 26508 7070 6911 17361 {rgb=(.5 .5 .5)} Face 26509 6736 6677 17362 {rgb=(.5 .5 .5)} Face 26510 6677 6862 17362 {rgb=(.5 .5 .5)} Face 26511 6862 6911 17362 {rgb=(.5 .5 .5)} Face 26512 6911 6736 17362 {rgb=(.5 .5 .5)} Face 26513 6551 6431 17363 {rgb=(.5 .5 .5)} Face 26514 6431 6677 17363 {rgb=(.5 .5 .5)} Face 26515 6677 6736 17363 {rgb=(.5 .5 .5)} Face 26516 6736 6551 17363 {rgb=(.5 .5 .5)} Face 26517 6290 6166 17364 {rgb=(.5 .5 .5)} Face 26518 6166 6431 17364 {rgb=(.5 .5 .5)} Face 26519 6431 6551 17364 {rgb=(.5 .5 .5)} Face 26520 6551 6290 17364 {rgb=(.5 .5 .5)} Face 26521 6080 5981 17365 {rgb=(.5 .5 .5)} Face 26522 5981 6166 17365 {rgb=(.5 .5 .5)} Face 26523 6166 6290 17365 {rgb=(.5 .5 .5)} Face 26524 6290 6080 17365 {rgb=(.5 .5 .5)} Face 26525 5924 5825 17366 {rgb=(.5 .5 .5)} Face 26526 5825 5981 17366 {rgb=(.5 .5 .5)} Face 26527 5981 6080 17366 {rgb=(.5 .5 .5)} Face 26528 6080 5924 17366 {rgb=(.5 .5 .5)} Face 26529 5800 5674 17367 {rgb=(.5 .5 .5)} Face 26530 5674 5825 17367 {rgb=(.5 .5 .5)} Face 26531 5825 5924 17367 {rgb=(.5 .5 .5)} Face 26532 5924 5800 17367 {rgb=(.5 .5 .5)} Face 26533 5684 5560 17368 {rgb=(.5 .5 .5)} Face 26534 5560 5674 17368 {rgb=(.5 .5 .5)} Face 26535 5674 5800 17368 {rgb=(.5 .5 .5)} Face 26536 5800 5684 17368 {rgb=(.5 .5 .5)} Face 26537 5601 5470 17369 {rgb=(.5 .5 .5)} Face 26538 5470 5560 17369 {rgb=(.5 .5 .5)} Face 26539 5560 5684 17369 {rgb=(.5 .5 .5)} Face 26540 5684 5601 17369 {rgb=(.5 .5 .5)} Face 26541 5565 5424 17370 {rgb=(.5 .5 .5)} Face 26542 5424 5470 17370 {rgb=(.5 .5 .5)} Face 26543 5470 5601 17370 {rgb=(.5 .5 .5)} Face 26544 5601 5565 17370 {rgb=(.5 .5 .5)} Face 26545 5554 5413 17371 {rgb=(.5 .5 .5)} Face 26546 5413 5424 17371 {rgb=(.5 .5 .5)} Face 26547 5424 5565 17371 {rgb=(.5 .5 .5)} Face 26548 5565 5554 17371 {rgb=(.5 .5 .5)} Face 26549 5564 5423 17372 {rgb=(.5 .5 .5)} Face 26550 5423 5413 17372 {rgb=(.5 .5 .5)} Face 26551 5413 5554 17372 {rgb=(.5 .5 .5)} Face 26552 5554 5564 17372 {rgb=(.5 .5 .5)} Face 26553 5600 5469 17373 {rgb=(.5 .5 .5)} Face 26554 5469 5423 17373 {rgb=(.5 .5 .5)} Face 26555 5423 5564 17373 {rgb=(.5 .5 .5)} Face 26556 5564 5600 17373 {rgb=(.5 .5 .5)} Face 26557 5683 5559 17374 {rgb=(.5 .5 .5)} Face 26558 5559 5469 17374 {rgb=(.5 .5 .5)} Face 26559 5469 5600 17374 {rgb=(.5 .5 .5)} Face 26560 5600 5683 17374 {rgb=(.5 .5 .5)} Face 26561 5799 5673 17375 {rgb=(.5 .5 .5)} Face 26562 5673 5559 17375 {rgb=(.5 .5 .5)} Face 26563 5559 5683 17375 {rgb=(.5 .5 .5)} Face 26564 5683 5799 17375 {rgb=(.5 .5 .5)} Face 26565 5923 5824 17376 {rgb=(.5 .5 .5)} Face 26566 5824 5673 17376 {rgb=(.5 .5 .5)} Face 26567 5673 5799 17376 {rgb=(.5 .5 .5)} Face 26568 5799 5923 17376 {rgb=(.5 .5 .5)} Face 26569 6079 5980 17377 {rgb=(.5 .5 .5)} Face 26570 5980 5824 17377 {rgb=(.5 .5 .5)} Face 26571 5824 5923 17377 {rgb=(.5 .5 .5)} Face 26572 5923 6079 17377 {rgb=(.5 .5 .5)} Face 26573 6289 6165 17378 {rgb=(.5 .5 .5)} Face 26574 6165 5980 17378 {rgb=(.5 .5 .5)} Face 26575 5980 6079 17378 {rgb=(.5 .5 .5)} Face 26576 6079 6289 17378 {rgb=(.5 .5 .5)} Face 26577 6550 6430 17379 {rgb=(.5 .5 .5)} Face 26578 6430 6165 17379 {rgb=(.5 .5 .5)} Face 26579 6165 6289 17379 {rgb=(.5 .5 .5)} Face 26580 6289 6550 17379 {rgb=(.5 .5 .5)} Face 26581 6735 6676 17380 {rgb=(.5 .5 .5)} Face 26582 6676 6430 17380 {rgb=(.5 .5 .5)} Face 26583 6430 6550 17380 {rgb=(.5 .5 .5)} Face 26584 6550 6735 17380 {rgb=(.5 .5 .5)} Face 26585 6910 6861 17381 {rgb=(.5 .5 .5)} Face 26586 6861 6676 17381 {rgb=(.5 .5 .5)} Face 26587 6676 6735 17381 {rgb=(.5 .5 .5)} Face 26588 6735 6910 17381 {rgb=(.5 .5 .5)} Face 26589 7090 7069 17382 {rgb=(.5 .5 .5)} Face 26590 7069 6910 17382 {rgb=(.5 .5 .5)} Face 26591 6910 6950 17382 {rgb=(.5 .5 .5)} Face 26592 6950 7090 17382 {rgb=(.5 .5 .5)} Face 26593 7265 7240 17383 {rgb=(.5 .5 .5)} Face 26594 7240 7069 17383 {rgb=(.5 .5 .5)} Face 26595 7069 7090 17383 {rgb=(.5 .5 .5)} Face 26596 7090 7265 17383 {rgb=(.5 .5 .5)} Face 26597 7407 7412 17384 {rgb=(.5 .5 .5)} Face 26598 7412 7240 17384 {rgb=(.5 .5 .5)} Face 26599 7240 7265 17384 {rgb=(.5 .5 .5)} Face 26600 7265 7407 17384 {rgb=(.5 .5 .5)} Face 26601 7526 7547 17385 {rgb=(.5 .5 .5)} Face 26602 7547 7412 17385 {rgb=(.5 .5 .5)} Face 26603 7412 7407 17385 {rgb=(.5 .5 .5)} Face 26604 7407 7526 17385 {rgb=(.5 .5 .5)} Face 26605 7649 7680 17386 {rgb=(.5 .5 .5)} Face 26606 7680 7547 17386 {rgb=(.5 .5 .5)} Face 26607 7547 7526 17386 {rgb=(.5 .5 .5)} Face 26608 7526 7649 17386 {rgb=(.5 .5 .5)} Face 26609 7765 7809 17387 {rgb=(.5 .5 .5)} Face 26610 7809 7680 17387 {rgb=(.5 .5 .5)} Face 26611 7680 7649 17387 {rgb=(.5 .5 .5)} Face 26612 7649 7765 17387 {rgb=(.5 .5 .5)} Face 26613 7854 7904 17388 {rgb=(.5 .5 .5)} Face 26614 7904 7809 17388 {rgb=(.5 .5 .5)} Face 26615 7809 7765 17388 {rgb=(.5 .5 .5)} Face 26616 7765 7854 17388 {rgb=(.5 .5 .5)} Face 26617 7913 7983 17389 {rgb=(.5 .5 .5)} Face 26618 7983 7904 17389 {rgb=(.5 .5 .5)} Face 26619 7904 7854 17389 {rgb=(.5 .5 .5)} Face 26620 7854 7913 17389 {rgb=(.5 .5 .5)} Face 26621 7961 8041 17390 {rgb=(.5 .5 .5)} Face 26622 8041 7983 17390 {rgb=(.5 .5 .5)} Face 26623 7983 7913 17390 {rgb=(.5 .5 .5)} Face 26624 7913 7961 17390 {rgb=(.5 .5 .5)} Face 26625 7974 8059 17391 {rgb=(.5 .5 .5)} Face 26626 8059 8041 17391 {rgb=(.5 .5 .5)} Face 26627 8041 7961 17391 {rgb=(.5 .5 .5)} Face 26628 7961 7974 17391 {rgb=(.5 .5 .5)} Face 26629 7962 8042 17392 {rgb=(.5 .5 .5)} Face 26630 8042 8059 17392 {rgb=(.5 .5 .5)} Face 26631 8059 7974 17392 {rgb=(.5 .5 .5)} Face 26632 7974 7962 17392 {rgb=(.5 .5 .5)} Face 26633 7914 7984 17393 {rgb=(.5 .5 .5)} Face 26634 7984 8042 17393 {rgb=(.5 .5 .5)} Face 26635 8042 7962 17393 {rgb=(.5 .5 .5)} Face 26636 7962 7914 17393 {rgb=(.5 .5 .5)} Face 26637 7855 7905 17394 {rgb=(.5 .5 .5)} Face 26638 7905 7984 17394 {rgb=(.5 .5 .5)} Face 26639 7984 7914 17394 {rgb=(.5 .5 .5)} Face 26640 7914 7855 17394 {rgb=(.5 .5 .5)} Face 26641 7766 7810 17395 {rgb=(.5 .5 .5)} Face 26642 7810 7905 17395 {rgb=(.5 .5 .5)} Face 26643 7905 7855 17395 {rgb=(.5 .5 .5)} Face 26644 7855 7766 17395 {rgb=(.5 .5 .5)} Face 26645 7650 7681 17396 {rgb=(.5 .5 .5)} Face 26646 7681 7810 17396 {rgb=(.5 .5 .5)} Face 26647 7810 7766 17396 {rgb=(.5 .5 .5)} Face 26648 7766 7650 17396 {rgb=(.5 .5 .5)} Face 26649 7527 7548 17397 {rgb=(.5 .5 .5)} Face 26650 7548 7681 17397 {rgb=(.5 .5 .5)} Face 26651 7681 7650 17397 {rgb=(.5 .5 .5)} Face 26652 7650 7527 17397 {rgb=(.5 .5 .5)} Face 26653 7408 7413 17398 {rgb=(.5 .5 .5)} Face 26654 7413 7548 17398 {rgb=(.5 .5 .5)} Face 26655 7548 7527 17398 {rgb=(.5 .5 .5)} Face 26656 7527 7408 17398 {rgb=(.5 .5 .5)} Face 26657 7266 7241 17399 {rgb=(.5 .5 .5)} Face 26658 7241 7413 17399 {rgb=(.5 .5 .5)} Face 26659 7413 7408 17399 {rgb=(.5 .5 .5)} Face 26660 7408 7266 17399 {rgb=(.5 .5 .5)} Face 26661 7091 7070 17400 {rgb=(.5 .5 .5)} Face 26662 7070 7241 17400 {rgb=(.5 .5 .5)} Face 26663 7241 7266 17400 {rgb=(.5 .5 .5)} Face 26664 7266 7091 17400 {rgb=(.5 .5 .5)} Face 26665 6951 6911 17401 {rgb=(.5 .5 .5)} Face 26666 6911 7070 17401 {rgb=(.5 .5 .5)} Face 26667 7070 7091 17401 {rgb=(.5 .5 .5)} Face 26668 7091 6951 17401 {rgb=(.5 .5 .5)} Face 26669 6780 6736 17402 {rgb=(.5 .5 .5)} Face 26670 6736 6911 17402 {rgb=(.5 .5 .5)} Face 26671 6911 6951 17402 {rgb=(.5 .5 .5)} Face 26672 6951 6780 17402 {rgb=(.5 .5 .5)} Face 26673 6633 6551 17403 {rgb=(.5 .5 .5)} Face 26674 6551 6736 17403 {rgb=(.5 .5 .5)} Face 26675 6736 6780 17403 {rgb=(.5 .5 .5)} Face 26676 6780 6633 17403 {rgb=(.5 .5 .5)} Face 26677 6423 6290 17404 {rgb=(.5 .5 .5)} Face 26678 6290 6551 17404 {rgb=(.5 .5 .5)} Face 26679 6551 6633 17404 {rgb=(.5 .5 .5)} Face 26680 6633 6423 17404 {rgb=(.5 .5 .5)} Face 26681 6211 6080 17405 {rgb=(.5 .5 .5)} Face 26682 6080 6290 17405 {rgb=(.5 .5 .5)} Face 26683 6290 6423 17405 {rgb=(.5 .5 .5)} Face 26684 6423 6211 17405 {rgb=(.5 .5 .5)} Face 26685 6059 5924 17406 {rgb=(.5 .5 .5)} Face 26686 5924 6080 17406 {rgb=(.5 .5 .5)} Face 26687 6080 6211 17406 {rgb=(.5 .5 .5)} Face 26688 6211 6059 17406 {rgb=(.5 .5 .5)} Face 26689 5940 5800 17407 {rgb=(.5 .5 .5)} Face 26690 5800 5924 17407 {rgb=(.5 .5 .5)} Face 26691 5924 6059 17407 {rgb=(.5 .5 .5)} Face 26692 6059 5940 17407 {rgb=(.5 .5 .5)} Face 26693 5853 5684 17408 {rgb=(.5 .5 .5)} Face 26694 5684 5800 17408 {rgb=(.5 .5 .5)} Face 26695 5800 5940 17408 {rgb=(.5 .5 .5)} Face 26696 5940 5853 17408 {rgb=(.5 .5 .5)} Face 26697 5770 5601 17409 {rgb=(.5 .5 .5)} Face 26698 5601 5684 17409 {rgb=(.5 .5 .5)} Face 26699 5684 5853 17409 {rgb=(.5 .5 .5)} Face 26700 5853 5770 17409 {rgb=(.5 .5 .5)} Face 26701 5726 5565 17410 {rgb=(.5 .5 .5)} Face 26702 5565 5601 17410 {rgb=(.5 .5 .5)} Face 26703 5601 5770 17410 {rgb=(.5 .5 .5)} Face 26704 5770 5726 17410 {rgb=(.5 .5 .5)} Face 26705 5709 5554 17411 {rgb=(.5 .5 .5)} Face 26706 5554 5565 17411 {rgb=(.5 .5 .5)} Face 26707 5565 5726 17411 {rgb=(.5 .5 .5)} Face 26708 5726 5709 17411 {rgb=(.5 .5 .5)} Face 26709 5725 5564 17412 {rgb=(.5 .5 .5)} Face 26710 5564 5554 17412 {rgb=(.5 .5 .5)} Face 26711 5554 5709 17412 {rgb=(.5 .5 .5)} Face 26712 5709 5725 17412 {rgb=(.5 .5 .5)} Face 26713 5769 5600 17413 {rgb=(.5 .5 .5)} Face 26714 5600 5564 17413 {rgb=(.5 .5 .5)} Face 26715 5564 5725 17413 {rgb=(.5 .5 .5)} Face 26716 5725 5769 17413 {rgb=(.5 .5 .5)} Face 26717 5852 5683 17414 {rgb=(.5 .5 .5)} Face 26718 5683 5600 17414 {rgb=(.5 .5 .5)} Face 26719 5600 5769 17414 {rgb=(.5 .5 .5)} Face 26720 5769 5852 17414 {rgb=(.5 .5 .5)} Face 26721 5939 5799 17415 {rgb=(.5 .5 .5)} Face 26722 5799 5683 17415 {rgb=(.5 .5 .5)} Face 26723 5683 5852 17415 {rgb=(.5 .5 .5)} Face 26724 5852 5939 17415 {rgb=(.5 .5 .5)} Face 26725 6058 5923 17416 {rgb=(.5 .5 .5)} Face 26726 5923 5799 17416 {rgb=(.5 .5 .5)} Face 26727 5799 5939 17416 {rgb=(.5 .5 .5)} Face 26728 5939 6058 17416 {rgb=(.5 .5 .5)} Face 26729 6210 6079 17417 {rgb=(.5 .5 .5)} Face 26730 6079 5923 17417 {rgb=(.5 .5 .5)} Face 26731 5923 6058 17417 {rgb=(.5 .5 .5)} Face 26732 6058 6210 17417 {rgb=(.5 .5 .5)} Face 26733 6422 6289 17418 {rgb=(.5 .5 .5)} Face 26734 6289 6079 17418 {rgb=(.5 .5 .5)} Face 26735 6079 6210 17418 {rgb=(.5 .5 .5)} Face 26736 6210 6422 17418 {rgb=(.5 .5 .5)} Face 26737 6632 6550 17419 {rgb=(.5 .5 .5)} Face 26738 6550 6289 17419 {rgb=(.5 .5 .5)} Face 26739 6289 6422 17419 {rgb=(.5 .5 .5)} Face 26740 6422 6632 17419 {rgb=(.5 .5 .5)} Face 26741 6779 6735 17420 {rgb=(.5 .5 .5)} Face 26742 6735 6550 17420 {rgb=(.5 .5 .5)} Face 26743 6550 6632 17420 {rgb=(.5 .5 .5)} Face 26744 6632 6779 17420 {rgb=(.5 .5 .5)} Face 26745 6950 6910 17421 {rgb=(.5 .5 .5)} Face 26746 6910 6735 17421 {rgb=(.5 .5 .5)} Face 26747 6735 6779 17421 {rgb=(.5 .5 .5)} Face 26748 6779 6950 17421 {rgb=(.5 .5 .5)} Face 26749 7108 7090 17422 {rgb=(.5 .5 .5)} Face 26750 7090 6950 17422 {rgb=(.5 .5 .5)} Face 26751 6950 6979 17422 {rgb=(.5 .5 .5)} Face 26752 6979 7108 17422 {rgb=(.5 .5 .5)} Face 26753 7257 7265 17423 {rgb=(.5 .5 .5)} Face 26754 7265 7090 17423 {rgb=(.5 .5 .5)} Face 26755 7090 7108 17423 {rgb=(.5 .5 .5)} Face 26756 7108 7257 17423 {rgb=(.5 .5 .5)} Face 26757 7388 7407 17424 {rgb=(.5 .5 .5)} Face 26758 7407 7265 17424 {rgb=(.5 .5 .5)} Face 26759 7265 7257 17424 {rgb=(.5 .5 .5)} Face 26760 7257 7388 17424 {rgb=(.5 .5 .5)} Face 26761 7491 7526 17425 {rgb=(.5 .5 .5)} Face 26762 7526 7407 17425 {rgb=(.5 .5 .5)} Face 26763 7407 7388 17425 {rgb=(.5 .5 .5)} Face 26764 7388 7491 17425 {rgb=(.5 .5 .5)} Face 26765 7603 7649 17426 {rgb=(.5 .5 .5)} Face 26766 7649 7526 17426 {rgb=(.5 .5 .5)} Face 26767 7526 7491 17426 {rgb=(.5 .5 .5)} Face 26768 7491 7603 17426 {rgb=(.5 .5 .5)} Face 26769 7687 7765 17427 {rgb=(.5 .5 .5)} Face 26770 7765 7649 17427 {rgb=(.5 .5 .5)} Face 26771 7649 7603 17427 {rgb=(.5 .5 .5)} Face 26772 7603 7687 17427 {rgb=(.5 .5 .5)} Face 26773 7772 7854 17428 {rgb=(.5 .5 .5)} Face 26774 7854 7765 17428 {rgb=(.5 .5 .5)} Face 26775 7765 7687 17428 {rgb=(.5 .5 .5)} Face 26776 7687 7772 17428 {rgb=(.5 .5 .5)} Face 26777 7833 7913 17429 {rgb=(.5 .5 .5)} Face 26778 7913 7854 17429 {rgb=(.5 .5 .5)} Face 26779 7854 7772 17429 {rgb=(.5 .5 .5)} Face 26780 7772 7833 17429 {rgb=(.5 .5 .5)} Face 26781 7863 7961 17430 {rgb=(.5 .5 .5)} Face 26782 7961 7913 17430 {rgb=(.5 .5 .5)} Face 26783 7913 7833 17430 {rgb=(.5 .5 .5)} Face 26784 7833 7863 17430 {rgb=(.5 .5 .5)} Face 26785 7874 7974 17431 {rgb=(.5 .5 .5)} Face 26786 7974 7961 17431 {rgb=(.5 .5 .5)} Face 26787 7961 7863 17431 {rgb=(.5 .5 .5)} Face 26788 7863 7874 17431 {rgb=(.5 .5 .5)} Face 26789 7864 7962 17432 {rgb=(.5 .5 .5)} Face 26790 7962 7974 17432 {rgb=(.5 .5 .5)} Face 26791 7974 7874 17432 {rgb=(.5 .5 .5)} Face 26792 7874 7864 17432 {rgb=(.5 .5 .5)} Face 26793 7834 7914 17433 {rgb=(.5 .5 .5)} Face 26794 7914 7962 17433 {rgb=(.5 .5 .5)} Face 26795 7962 7864 17433 {rgb=(.5 .5 .5)} Face 26796 7864 7834 17433 {rgb=(.5 .5 .5)} Face 26797 7773 7855 17434 {rgb=(.5 .5 .5)} Face 26798 7855 7914 17434 {rgb=(.5 .5 .5)} Face 26799 7914 7834 17434 {rgb=(.5 .5 .5)} Face 26800 7834 7773 17434 {rgb=(.5 .5 .5)} Face 26801 7688 7766 17435 {rgb=(.5 .5 .5)} Face 26802 7766 7855 17435 {rgb=(.5 .5 .5)} Face 26803 7855 7773 17435 {rgb=(.5 .5 .5)} Face 26804 7773 7688 17435 {rgb=(.5 .5 .5)} Face 26805 7604 7650 17436 {rgb=(.5 .5 .5)} Face 26806 7650 7766 17436 {rgb=(.5 .5 .5)} Face 26807 7766 7688 17436 {rgb=(.5 .5 .5)} Face 26808 7688 7604 17436 {rgb=(.5 .5 .5)} Face 26809 7492 7527 17437 {rgb=(.5 .5 .5)} Face 26810 7527 7650 17437 {rgb=(.5 .5 .5)} Face 26811 7650 7604 17437 {rgb=(.5 .5 .5)} Face 26812 7604 7492 17437 {rgb=(.5 .5 .5)} Face 26813 7389 7408 17438 {rgb=(.5 .5 .5)} Face 26814 7408 7527 17438 {rgb=(.5 .5 .5)} Face 26815 7527 7492 17438 {rgb=(.5 .5 .5)} Face 26816 7492 7389 17438 {rgb=(.5 .5 .5)} Face 26817 7258 7266 17439 {rgb=(.5 .5 .5)} Face 26818 7266 7408 17439 {rgb=(.5 .5 .5)} Face 26819 7408 7389 17439 {rgb=(.5 .5 .5)} Face 26820 7389 7258 17439 {rgb=(.5 .5 .5)} Face 26821 7109 7091 17440 {rgb=(.5 .5 .5)} Face 26822 7091 7266 17440 {rgb=(.5 .5 .5)} Face 26823 7266 7258 17440 {rgb=(.5 .5 .5)} Face 26824 7258 7109 17440 {rgb=(.5 .5 .5)} Face 26825 6980 6951 17441 {rgb=(.5 .5 .5)} Face 26826 6951 7091 17441 {rgb=(.5 .5 .5)} Face 26827 7091 7109 17441 {rgb=(.5 .5 .5)} Face 26828 7109 6980 17441 {rgb=(.5 .5 .5)} Face 26829 6851 6780 17442 {rgb=(.5 .5 .5)} Face 26830 6780 6951 17442 {rgb=(.5 .5 .5)} Face 26831 6951 6980 17442 {rgb=(.5 .5 .5)} Face 26832 6980 6851 17442 {rgb=(.5 .5 .5)} Face 26833 6721 6633 17443 {rgb=(.5 .5 .5)} Face 26834 6633 6780 17443 {rgb=(.5 .5 .5)} Face 26835 6780 6851 17443 {rgb=(.5 .5 .5)} Face 26836 6851 6721 17443 {rgb=(.5 .5 .5)} Face 26837 6582 6423 17444 {rgb=(.5 .5 .5)} Face 26838 6423 6633 17444 {rgb=(.5 .5 .5)} Face 26839 6633 6721 17444 {rgb=(.5 .5 .5)} Face 26840 6721 6582 17444 {rgb=(.5 .5 .5)} Face 26841 6381 6211 17445 {rgb=(.5 .5 .5)} Face 26842 6211 6423 17445 {rgb=(.5 .5 .5)} Face 26843 6423 6582 17445 {rgb=(.5 .5 .5)} Face 26844 6582 6381 17445 {rgb=(.5 .5 .5)} Face 26845 6222 6059 17446 {rgb=(.5 .5 .5)} Face 26846 6059 6211 17446 {rgb=(.5 .5 .5)} Face 26847 6211 6381 17446 {rgb=(.5 .5 .5)} Face 26848 6381 6222 17446 {rgb=(.5 .5 .5)} Face 26849 6103 5940 17447 {rgb=(.5 .5 .5)} Face 26850 5940 6059 17447 {rgb=(.5 .5 .5)} Face 26851 6059 6222 17447 {rgb=(.5 .5 .5)} Face 26852 6222 6103 17447 {rgb=(.5 .5 .5)} Face 26853 6017 5853 17448 {rgb=(.5 .5 .5)} Face 26854 5853 5940 17448 {rgb=(.5 .5 .5)} Face 26855 5940 6103 17448 {rgb=(.5 .5 .5)} Face 26856 6103 6017 17448 {rgb=(.5 .5 .5)} Face 26857 5957 5770 17449 {rgb=(.5 .5 .5)} Face 26858 5770 5853 17449 {rgb=(.5 .5 .5)} Face 26859 5853 6017 17449 {rgb=(.5 .5 .5)} Face 26860 6017 5957 17449 {rgb=(.5 .5 .5)} Face 26861 5912 5726 17450 {rgb=(.5 .5 .5)} Face 26862 5726 5770 17450 {rgb=(.5 .5 .5)} Face 26863 5770 5957 17450 {rgb=(.5 .5 .5)} Face 26864 5957 5912 17450 {rgb=(.5 .5 .5)} Face 26865 5897 5709 17451 {rgb=(.5 .5 .5)} Face 26866 5709 5726 17451 {rgb=(.5 .5 .5)} Face 26867 5726 5912 17451 {rgb=(.5 .5 .5)} Face 26868 5912 5897 17451 {rgb=(.5 .5 .5)} Face 26869 5911 5725 17452 {rgb=(.5 .5 .5)} Face 26870 5725 5709 17452 {rgb=(.5 .5 .5)} Face 26871 5709 5897 17452 {rgb=(.5 .5 .5)} Face 26872 5897 5911 17452 {rgb=(.5 .5 .5)} Face 26873 5956 5769 17453 {rgb=(.5 .5 .5)} Face 26874 5769 5725 17453 {rgb=(.5 .5 .5)} Face 26875 5725 5911 17453 {rgb=(.5 .5 .5)} Face 26876 5911 5956 17453 {rgb=(.5 .5 .5)} Face 26877 6016 5852 17454 {rgb=(.5 .5 .5)} Face 26878 5852 5769 17454 {rgb=(.5 .5 .5)} Face 26879 5769 5956 17454 {rgb=(.5 .5 .5)} Face 26880 5956 6016 17454 {rgb=(.5 .5 .5)} Face 26881 6102 5939 17455 {rgb=(.5 .5 .5)} Face 26882 5939 5852 17455 {rgb=(.5 .5 .5)} Face 26883 5852 6016 17455 {rgb=(.5 .5 .5)} Face 26884 6016 6102 17455 {rgb=(.5 .5 .5)} Face 26885 6221 6058 17456 {rgb=(.5 .5 .5)} Face 26886 6058 5939 17456 {rgb=(.5 .5 .5)} Face 26887 5939 6102 17456 {rgb=(.5 .5 .5)} Face 26888 6102 6221 17456 {rgb=(.5 .5 .5)} Face 26889 6380 6210 17457 {rgb=(.5 .5 .5)} Face 26890 6210 6058 17457 {rgb=(.5 .5 .5)} Face 26891 6058 6221 17457 {rgb=(.5 .5 .5)} Face 26892 6221 6380 17457 {rgb=(.5 .5 .5)} Face 26893 6581 6422 17458 {rgb=(.5 .5 .5)} Face 26894 6422 6210 17458 {rgb=(.5 .5 .5)} Face 26895 6210 6380 17458 {rgb=(.5 .5 .5)} Face 26896 6380 6581 17458 {rgb=(.5 .5 .5)} Face 26897 6720 6632 17459 {rgb=(.5 .5 .5)} Face 26898 6632 6422 17459 {rgb=(.5 .5 .5)} Face 26899 6422 6581 17459 {rgb=(.5 .5 .5)} Face 26900 6581 6720 17459 {rgb=(.5 .5 .5)} Face 26901 6850 6779 17460 {rgb=(.5 .5 .5)} Face 26902 6779 6632 17460 {rgb=(.5 .5 .5)} Face 26903 6632 6720 17460 {rgb=(.5 .5 .5)} Face 26904 6720 6850 17460 {rgb=(.5 .5 .5)} Face 26905 6979 6950 17461 {rgb=(.5 .5 .5)} Face 26906 6950 6779 17461 {rgb=(.5 .5 .5)} Face 26907 6779 6850 17461 {rgb=(.5 .5 .5)} Face 26908 6850 6979 17461 {rgb=(.5 .5 .5)} Face 26909 7119 7108 17462 {rgb=(.5 .5 .5)} Face 26910 7108 6979 17462 {rgb=(.5 .5 .5)} Face 26911 6979 7012 17462 {rgb=(.5 .5 .5)} Face 26912 7012 7119 17462 {rgb=(.5 .5 .5)} Face 26913 7234 7257 17463 {rgb=(.5 .5 .5)} Face 26914 7257 7108 17463 {rgb=(.5 .5 .5)} Face 26915 7108 7119 17463 {rgb=(.5 .5 .5)} Face 26916 7119 7234 17463 {rgb=(.5 .5 .5)} Face 26917 7351 7388 17464 {rgb=(.5 .5 .5)} Face 26918 7388 7257 17464 {rgb=(.5 .5 .5)} Face 26919 7257 7234 17464 {rgb=(.5 .5 .5)} Face 26920 7234 7351 17464 {rgb=(.5 .5 .5)} Face 26921 7447 7491 17465 {rgb=(.5 .5 .5)} Face 26922 7491 7388 17465 {rgb=(.5 .5 .5)} Face 26923 7388 7351 17465 {rgb=(.5 .5 .5)} Face 26924 7351 7447 17465 {rgb=(.5 .5 .5)} Face 26925 7515 7603 17466 {rgb=(.5 .5 .5)} Face 26926 7603 7491 17466 {rgb=(.5 .5 .5)} Face 26927 7491 7447 17466 {rgb=(.5 .5 .5)} Face 26928 7447 7515 17466 {rgb=(.5 .5 .5)} Face 26929 7605 7687 17467 {rgb=(.5 .5 .5)} Face 26930 7687 7603 17467 {rgb=(.5 .5 .5)} Face 26931 7603 7515 17467 {rgb=(.5 .5 .5)} Face 26932 7515 7605 17467 {rgb=(.5 .5 .5)} Face 26933 7657 7772 17468 {rgb=(.5 .5 .5)} Face 26934 7772 7687 17468 {rgb=(.5 .5 .5)} Face 26935 7687 7605 17468 {rgb=(.5 .5 .5)} Face 26936 7605 7657 17468 {rgb=(.5 .5 .5)} Face 26937 7713 7833 17469 {rgb=(.5 .5 .5)} Face 26938 7833 7772 17469 {rgb=(.5 .5 .5)} Face 26939 7772 7657 17469 {rgb=(.5 .5 .5)} Face 26940 7657 7713 17469 {rgb=(.5 .5 .5)} Face 26941 7733 7863 17470 {rgb=(.5 .5 .5)} Face 26942 7863 7833 17470 {rgb=(.5 .5 .5)} Face 26943 7833 7713 17470 {rgb=(.5 .5 .5)} Face 26944 7713 7733 17470 {rgb=(.5 .5 .5)} Face 26945 7747 7874 17471 {rgb=(.5 .5 .5)} Face 26946 7874 7863 17471 {rgb=(.5 .5 .5)} Face 26947 7863 7733 17471 {rgb=(.5 .5 .5)} Face 26948 7733 7747 17471 {rgb=(.5 .5 .5)} Face 26949 7734 7864 17472 {rgb=(.5 .5 .5)} Face 26950 7864 7874 17472 {rgb=(.5 .5 .5)} Face 26951 7874 7747 17472 {rgb=(.5 .5 .5)} Face 26952 7747 7734 17472 {rgb=(.5 .5 .5)} Face 26953 7714 7834 17473 {rgb=(.5 .5 .5)} Face 26954 7834 7864 17473 {rgb=(.5 .5 .5)} Face 26955 7864 7734 17473 {rgb=(.5 .5 .5)} Face 26956 7734 7714 17473 {rgb=(.5 .5 .5)} Face 26957 7658 7773 17474 {rgb=(.5 .5 .5)} Face 26958 7773 7834 17474 {rgb=(.5 .5 .5)} Face 26959 7834 7714 17474 {rgb=(.5 .5 .5)} Face 26960 7714 7658 17474 {rgb=(.5 .5 .5)} Face 26961 7606 7688 17475 {rgb=(.5 .5 .5)} Face 26962 7688 7773 17475 {rgb=(.5 .5 .5)} Face 26963 7773 7658 17475 {rgb=(.5 .5 .5)} Face 26964 7658 7606 17475 {rgb=(.5 .5 .5)} Face 26965 7516 7604 17476 {rgb=(.5 .5 .5)} Face 26966 7604 7688 17476 {rgb=(.5 .5 .5)} Face 26967 7688 7606 17476 {rgb=(.5 .5 .5)} Face 26968 7606 7516 17476 {rgb=(.5 .5 .5)} Face 26969 7448 7492 17477 {rgb=(.5 .5 .5)} Face 26970 7492 7604 17477 {rgb=(.5 .5 .5)} Face 26971 7604 7516 17477 {rgb=(.5 .5 .5)} Face 26972 7516 7448 17477 {rgb=(.5 .5 .5)} Face 26973 7352 7389 17478 {rgb=(.5 .5 .5)} Face 26974 7389 7492 17478 {rgb=(.5 .5 .5)} Face 26975 7492 7448 17478 {rgb=(.5 .5 .5)} Face 26976 7448 7352 17478 {rgb=(.5 .5 .5)} Face 26977 7235 7258 17479 {rgb=(.5 .5 .5)} Face 26978 7258 7389 17479 {rgb=(.5 .5 .5)} Face 26979 7389 7352 17479 {rgb=(.5 .5 .5)} Face 26980 7352 7235 17479 {rgb=(.5 .5 .5)} Face 26981 7120 7109 17480 {rgb=(.5 .5 .5)} Face 26982 7109 7258 17480 {rgb=(.5 .5 .5)} Face 26983 7258 7235 17480 {rgb=(.5 .5 .5)} Face 26984 7235 7120 17480 {rgb=(.5 .5 .5)} Face 26985 7013 6980 17481 {rgb=(.5 .5 .5)} Face 26986 6980 7109 17481 {rgb=(.5 .5 .5)} Face 26987 7109 7120 17481 {rgb=(.5 .5 .5)} Face 26988 7120 7013 17481 {rgb=(.5 .5 .5)} Face 26989 6904 6851 17482 {rgb=(.5 .5 .5)} Face 26990 6851 6980 17482 {rgb=(.5 .5 .5)} Face 26991 6980 7013 17482 {rgb=(.5 .5 .5)} Face 26992 7013 6904 17482 {rgb=(.5 .5 .5)} Face 26993 6778 6721 17483 {rgb=(.5 .5 .5)} Face 26994 6721 6851 17483 {rgb=(.5 .5 .5)} Face 26995 6851 6904 17483 {rgb=(.5 .5 .5)} Face 26996 6904 6778 17483 {rgb=(.5 .5 .5)} Face 26997 6689 6582 17484 {rgb=(.5 .5 .5)} Face 26998 6582 6721 17484 {rgb=(.5 .5 .5)} Face 26999 6721 6778 17484 {rgb=(.5 .5 .5)} Face 27000 6778 6689 17484 {rgb=(.5 .5 .5)} Face 27001 6584 6381 17485 {rgb=(.5 .5 .5)} Face 27002 6381 6582 17485 {rgb=(.5 .5 .5)} Face 27003 6582 6689 17485 {rgb=(.5 .5 .5)} Face 27004 6689 6584 17485 {rgb=(.5 .5 .5)} Face 27005 6436 6222 17486 {rgb=(.5 .5 .5)} Face 27006 6222 6381 17486 {rgb=(.5 .5 .5)} Face 27007 6381 6584 17486 {rgb=(.5 .5 .5)} Face 27008 6584 6436 17486 {rgb=(.5 .5 .5)} Face 27009 6315 6103 17487 {rgb=(.5 .5 .5)} Face 27010 6103 6222 17487 {rgb=(.5 .5 .5)} Face 27011 6222 6436 17487 {rgb=(.5 .5 .5)} Face 27012 6436 6315 17487 {rgb=(.5 .5 .5)} Face 27013 6225 6017 17488 {rgb=(.5 .5 .5)} Face 27014 6017 6103 17488 {rgb=(.5 .5 .5)} Face 27015 6103 6315 17488 {rgb=(.5 .5 .5)} Face 27016 6315 6225 17488 {rgb=(.5 .5 .5)} Face 27017 6158 5957 17489 {rgb=(.5 .5 .5)} Face 27018 5957 6017 17489 {rgb=(.5 .5 .5)} Face 27019 6017 6225 17489 {rgb=(.5 .5 .5)} Face 27020 6225 6158 17489 {rgb=(.5 .5 .5)} Face 27021 6136 5912 17490 {rgb=(.5 .5 .5)} Face 27022 5912 5957 17490 {rgb=(.5 .5 .5)} Face 27023 5957 6158 17490 {rgb=(.5 .5 .5)} Face 27024 6158 6136 17490 {rgb=(.5 .5 .5)} Face 27025 6121 5897 17491 {rgb=(.5 .5 .5)} Face 27026 5897 5912 17491 {rgb=(.5 .5 .5)} Face 27027 5912 6136 17491 {rgb=(.5 .5 .5)} Face 27028 6136 6121 17491 {rgb=(.5 .5 .5)} Face 27029 6135 5911 17492 {rgb=(.5 .5 .5)} Face 27030 5911 5897 17492 {rgb=(.5 .5 .5)} Face 27031 5897 6121 17492 {rgb=(.5 .5 .5)} Face 27032 6121 6135 17492 {rgb=(.5 .5 .5)} Face 27033 6157 5956 17493 {rgb=(.5 .5 .5)} Face 27034 5956 5911 17493 {rgb=(.5 .5 .5)} Face 27035 5911 6135 17493 {rgb=(.5 .5 .5)} Face 27036 6135 6157 17493 {rgb=(.5 .5 .5)} Face 27037 6224 6016 17494 {rgb=(.5 .5 .5)} Face 27038 6016 5956 17494 {rgb=(.5 .5 .5)} Face 27039 5956 6157 17494 {rgb=(.5 .5 .5)} Face 27040 6157 6224 17494 {rgb=(.5 .5 .5)} Face 27041 6314 6102 17495 {rgb=(.5 .5 .5)} Face 27042 6102 6016 17495 {rgb=(.5 .5 .5)} Face 27043 6016 6224 17495 {rgb=(.5 .5 .5)} Face 27044 6224 6314 17495 {rgb=(.5 .5 .5)} Face 27045 6435 6221 17496 {rgb=(.5 .5 .5)} Face 27046 6221 6102 17496 {rgb=(.5 .5 .5)} Face 27047 6102 6314 17496 {rgb=(.5 .5 .5)} Face 27048 6314 6435 17496 {rgb=(.5 .5 .5)} Face 27049 6583 6380 17497 {rgb=(.5 .5 .5)} Face 27050 6380 6221 17497 {rgb=(.5 .5 .5)} Face 27051 6221 6435 17497 {rgb=(.5 .5 .5)} Face 27052 6435 6583 17497 {rgb=(.5 .5 .5)} Face 27053 6688 6581 17498 {rgb=(.5 .5 .5)} Face 27054 6581 6380 17498 {rgb=(.5 .5 .5)} Face 27055 6380 6583 17498 {rgb=(.5 .5 .5)} Face 27056 6583 6688 17498 {rgb=(.5 .5 .5)} Face 27057 6777 6720 17499 {rgb=(.5 .5 .5)} Face 27058 6720 6581 17499 {rgb=(.5 .5 .5)} Face 27059 6581 6688 17499 {rgb=(.5 .5 .5)} Face 27060 6688 6777 17499 {rgb=(.5 .5 .5)} Face 27061 6903 6850 17500 {rgb=(.5 .5 .5)} Face 27062 6850 6720 17500 {rgb=(.5 .5 .5)} Face 27063 6720 6777 17500 {rgb=(.5 .5 .5)} Face 27064 6777 6903 17500 {rgb=(.5 .5 .5)} Face 27065 7012 6979 17501 {rgb=(.5 .5 .5)} Face 27066 6979 6850 17501 {rgb=(.5 .5 .5)} Face 27067 6850 6903 17501 {rgb=(.5 .5 .5)} Face 27068 6903 7012 17501 {rgb=(.5 .5 .5)} Face 27069 7117 7119 17502 {rgb=(.5 .5 .5)} Face 27070 7119 7012 17502 {rgb=(.5 .5 .5)} Face 27071 7012 7028 17502 {rgb=(.5 .5 .5)} Face 27072 7028 7117 17502 {rgb=(.5 .5 .5)} Face 27073 7192 7234 17503 {rgb=(.5 .5 .5)} Face 27074 7234 7119 17503 {rgb=(.5 .5 .5)} Face 27075 7119 7117 17503 {rgb=(.5 .5 .5)} Face 27076 7117 7192 17503 {rgb=(.5 .5 .5)} Face 27077 7305 7351 17504 {rgb=(.5 .5 .5)} Face 27078 7351 7234 17504 {rgb=(.5 .5 .5)} Face 27079 7234 7192 17504 {rgb=(.5 .5 .5)} Face 27080 7192 7305 17504 {rgb=(.5 .5 .5)} Face 27081 7375 7447 17505 {rgb=(.5 .5 .5)} Face 27082 7447 7351 17505 {rgb=(.5 .5 .5)} Face 27083 7351 7305 17505 {rgb=(.5 .5 .5)} Face 27084 7305 7375 17505 {rgb=(.5 .5 .5)} Face 27085 7442 7515 17506 {rgb=(.5 .5 .5)} Face 27086 7515 7447 17506 {rgb=(.5 .5 .5)} Face 27087 7447 7375 17506 {rgb=(.5 .5 .5)} Face 27088 7375 7442 17506 {rgb=(.5 .5 .5)} Face 27089 7484 7605 17507 {rgb=(.5 .5 .5)} Face 27090 7605 7515 17507 {rgb=(.5 .5 .5)} Face 27091 7515 7442 17507 {rgb=(.5 .5 .5)} Face 27092 7442 7484 17507 {rgb=(.5 .5 .5)} Face 27093 7530 7657 17508 {rgb=(.5 .5 .5)} Face 27094 7657 7605 17508 {rgb=(.5 .5 .5)} Face 27095 7605 7484 17508 {rgb=(.5 .5 .5)} Face 27096 7484 7530 17508 {rgb=(.5 .5 .5)} Face 27097 7563 7713 17509 {rgb=(.5 .5 .5)} Face 27098 7713 7657 17509 {rgb=(.5 .5 .5)} Face 27099 7657 7530 17509 {rgb=(.5 .5 .5)} Face 27100 7530 7563 17509 {rgb=(.5 .5 .5)} Face 27101 7590 7733 17510 {rgb=(.5 .5 .5)} Face 27102 7733 7713 17510 {rgb=(.5 .5 .5)} Face 27103 7713 7563 17510 {rgb=(.5 .5 .5)} Face 27104 7563 7590 17510 {rgb=(.5 .5 .5)} Face 27105 7602 7747 17511 {rgb=(.5 .5 .5)} Face 27106 7747 7733 17511 {rgb=(.5 .5 .5)} Face 27107 7733 7590 17511 {rgb=(.5 .5 .5)} Face 27108 7590 7602 17511 {rgb=(.5 .5 .5)} Face 27109 7591 7734 17512 {rgb=(.5 .5 .5)} Face 27110 7734 7747 17512 {rgb=(.5 .5 .5)} Face 27111 7747 7602 17512 {rgb=(.5 .5 .5)} Face 27112 7602 7591 17512 {rgb=(.5 .5 .5)} Face 27113 7564 7714 17513 {rgb=(.5 .5 .5)} Face 27114 7714 7734 17513 {rgb=(.5 .5 .5)} Face 27115 7734 7591 17513 {rgb=(.5 .5 .5)} Face 27116 7591 7564 17513 {rgb=(.5 .5 .5)} Face 27117 7531 7658 17514 {rgb=(.5 .5 .5)} Face 27118 7658 7714 17514 {rgb=(.5 .5 .5)} Face 27119 7714 7564 17514 {rgb=(.5 .5 .5)} Face 27120 7564 7531 17514 {rgb=(.5 .5 .5)} Face 27121 7485 7606 17515 {rgb=(.5 .5 .5)} Face 27122 7606 7658 17515 {rgb=(.5 .5 .5)} Face 27123 7658 7531 17515 {rgb=(.5 .5 .5)} Face 27124 7531 7485 17515 {rgb=(.5 .5 .5)} Face 27125 7443 7516 17516 {rgb=(.5 .5 .5)} Face 27126 7516 7606 17516 {rgb=(.5 .5 .5)} Face 27127 7606 7485 17516 {rgb=(.5 .5 .5)} Face 27128 7485 7443 17516 {rgb=(.5 .5 .5)} Face 27129 7376 7448 17517 {rgb=(.5 .5 .5)} Face 27130 7448 7516 17517 {rgb=(.5 .5 .5)} Face 27131 7516 7443 17517 {rgb=(.5 .5 .5)} Face 27132 7443 7376 17517 {rgb=(.5 .5 .5)} Face 27133 7306 7352 17518 {rgb=(.5 .5 .5)} Face 27134 7352 7448 17518 {rgb=(.5 .5 .5)} Face 27135 7448 7376 17518 {rgb=(.5 .5 .5)} Face 27136 7376 7306 17518 {rgb=(.5 .5 .5)} Face 27137 7193 7235 17519 {rgb=(.5 .5 .5)} Face 27138 7235 7352 17519 {rgb=(.5 .5 .5)} Face 27139 7352 7306 17519 {rgb=(.5 .5 .5)} Face 27140 7306 7193 17519 {rgb=(.5 .5 .5)} Face 27141 7118 7120 17520 {rgb=(.5 .5 .5)} Face 27142 7120 7235 17520 {rgb=(.5 .5 .5)} Face 27143 7235 7193 17520 {rgb=(.5 .5 .5)} Face 27144 7193 7118 17520 {rgb=(.5 .5 .5)} Face 27145 7029 7013 17521 {rgb=(.5 .5 .5)} Face 27146 7013 7120 17521 {rgb=(.5 .5 .5)} Face 27147 7120 7118 17521 {rgb=(.5 .5 .5)} Face 27148 7118 7029 17521 {rgb=(.5 .5 .5)} Face 27149 6956 6904 17522 {rgb=(.5 .5 .5)} Face 27150 6904 7013 17522 {rgb=(.5 .5 .5)} Face 27151 7013 7029 17522 {rgb=(.5 .5 .5)} Face 27152 7029 6956 17522 {rgb=(.5 .5 .5)} Face 27153 6868 6778 17523 {rgb=(.5 .5 .5)} Face 27154 6778 6904 17523 {rgb=(.5 .5 .5)} Face 27155 6904 6956 17523 {rgb=(.5 .5 .5)} Face 27156 6956 6868 17523 {rgb=(.5 .5 .5)} Face 27157 6769 6689 17524 {rgb=(.5 .5 .5)} Face 27158 6689 6778 17524 {rgb=(.5 .5 .5)} Face 27159 6778 6868 17524 {rgb=(.5 .5 .5)} Face 27160 6868 6769 17524 {rgb=(.5 .5 .5)} Face 27161 6714 6584 17525 {rgb=(.5 .5 .5)} Face 27162 6584 6689 17525 {rgb=(.5 .5 .5)} Face 27163 6689 6769 17525 {rgb=(.5 .5 .5)} Face 27164 6769 6714 17525 {rgb=(.5 .5 .5)} Face 27165 6637 6436 17526 {rgb=(.5 .5 .5)} Face 27166 6436 6584 17526 {rgb=(.5 .5 .5)} Face 27167 6584 6714 17526 {rgb=(.5 .5 .5)} Face 27168 6714 6637 17526 {rgb=(.5 .5 .5)} Face 27169 6580 6315 17527 {rgb=(.5 .5 .5)} Face 27170 6315 6436 17527 {rgb=(.5 .5 .5)} Face 27171 6436 6637 17527 {rgb=(.5 .5 .5)} Face 27172 6637 6580 17527 {rgb=(.5 .5 .5)} Face 27173 6499 6225 17528 {rgb=(.5 .5 .5)} Face 27174 6225 6315 17528 {rgb=(.5 .5 .5)} Face 27175 6315 6580 17528 {rgb=(.5 .5 .5)} Face 27176 6580 6499 17528 {rgb=(.5 .5 .5)} Face 27177 6447 6158 17529 {rgb=(.5 .5 .5)} Face 27178 6158 6225 17529 {rgb=(.5 .5 .5)} Face 27179 6225 6499 17529 {rgb=(.5 .5 .5)} Face 27180 6499 6447 17529 {rgb=(.5 .5 .5)} Face 27181 6409 6136 17530 {rgb=(.5 .5 .5)} Face 27182 6136 6158 17530 {rgb=(.5 .5 .5)} Face 27183 6158 6447 17530 {rgb=(.5 .5 .5)} Face 27184 6447 6409 17530 {rgb=(.5 .5 .5)} Face 27185 6392 6121 17531 {rgb=(.5 .5 .5)} Face 27186 6121 6136 17531 {rgb=(.5 .5 .5)} Face 27187 6136 6409 17531 {rgb=(.5 .5 .5)} Face 27188 6409 6392 17531 {rgb=(.5 .5 .5)} Face 27189 6408 6135 17532 {rgb=(.5 .5 .5)} Face 27190 6135 6121 17532 {rgb=(.5 .5 .5)} Face 27191 6121 6392 17532 {rgb=(.5 .5 .5)} Face 27192 6392 6408 17532 {rgb=(.5 .5 .5)} Face 27193 6446 6157 17533 {rgb=(.5 .5 .5)} Face 27194 6157 6135 17533 {rgb=(.5 .5 .5)} Face 27195 6135 6408 17533 {rgb=(.5 .5 .5)} Face 27196 6408 6446 17533 {rgb=(.5 .5 .5)} Face 27197 6498 6224 17534 {rgb=(.5 .5 .5)} Face 27198 6224 6157 17534 {rgb=(.5 .5 .5)} Face 27199 6157 6446 17534 {rgb=(.5 .5 .5)} Face 27200 6446 6498 17534 {rgb=(.5 .5 .5)} Face 27201 6579 6314 17535 {rgb=(.5 .5 .5)} Face 27202 6314 6224 17535 {rgb=(.5 .5 .5)} Face 27203 6224 6498 17535 {rgb=(.5 .5 .5)} Face 27204 6498 6579 17535 {rgb=(.5 .5 .5)} Face 27205 6636 6435 17536 {rgb=(.5 .5 .5)} Face 27206 6435 6314 17536 {rgb=(.5 .5 .5)} Face 27207 6314 6579 17536 {rgb=(.5 .5 .5)} Face 27208 6579 6636 17536 {rgb=(.5 .5 .5)} Face 27209 6713 6583 17537 {rgb=(.5 .5 .5)} Face 27210 6583 6435 17537 {rgb=(.5 .5 .5)} Face 27211 6435 6636 17537 {rgb=(.5 .5 .5)} Face 27212 6636 6713 17537 {rgb=(.5 .5 .5)} Face 27213 6768 6688 17538 {rgb=(.5 .5 .5)} Face 27214 6688 6583 17538 {rgb=(.5 .5 .5)} Face 27215 6583 6713 17538 {rgb=(.5 .5 .5)} Face 27216 6713 6768 17538 {rgb=(.5 .5 .5)} Face 27217 6867 6777 17539 {rgb=(.5 .5 .5)} Face 27218 6777 6688 17539 {rgb=(.5 .5 .5)} Face 27219 6688 6768 17539 {rgb=(.5 .5 .5)} Face 27220 6768 6867 17539 {rgb=(.5 .5 .5)} Face 27221 6955 6903 17540 {rgb=(.5 .5 .5)} Face 27222 6903 6777 17540 {rgb=(.5 .5 .5)} Face 27223 6777 6867 17540 {rgb=(.5 .5 .5)} Face 27224 6867 6955 17540 {rgb=(.5 .5 .5)} Face 27225 7028 7012 17541 {rgb=(.5 .5 .5)} Face 27226 7012 6903 17541 {rgb=(.5 .5 .5)} Face 27227 6903 6955 17541 {rgb=(.5 .5 .5)} Face 27228 6955 7028 17541 {rgb=(.5 .5 .5)} Face 27229 7104 7117 17542 {rgb=(.5 .5 .5)} Face 27230 7117 7028 17542 {rgb=(.5 .5 .5)} Face 27231 7028 7038 17542 {rgb=(.5 .5 .5)} Face 27232 7038 7104 17542 {rgb=(.5 .5 .5)} Face 27233 7161 7192 17543 {rgb=(.5 .5 .5)} Face 27234 7192 7117 17543 {rgb=(.5 .5 .5)} Face 27235 7117 7104 17543 {rgb=(.5 .5 .5)} Face 27236 7104 7161 17543 {rgb=(.5 .5 .5)} Face 27237 7213 7305 17544 {rgb=(.5 .5 .5)} Face 27238 7305 7192 17544 {rgb=(.5 .5 .5)} Face 27239 7192 7161 17544 {rgb=(.5 .5 .5)} Face 27240 7161 7213 17544 {rgb=(.5 .5 .5)} Face 27241 7291 7375 17545 {rgb=(.5 .5 .5)} Face 27242 7375 7305 17545 {rgb=(.5 .5 .5)} Face 27243 7305 7213 17545 {rgb=(.5 .5 .5)} Face 27244 7213 7291 17545 {rgb=(.5 .5 .5)} Face 27245 7329 7442 17546 {rgb=(.5 .5 .5)} Face 27246 7442 7375 17546 {rgb=(.5 .5 .5)} Face 27247 7375 7291 17546 {rgb=(.5 .5 .5)} Face 27248 7291 7329 17546 {rgb=(.5 .5 .5)} Face 27249 7368 7484 17547 {rgb=(.5 .5 .5)} Face 27250 7484 7442 17547 {rgb=(.5 .5 .5)} Face 27251 7442 7329 17547 {rgb=(.5 .5 .5)} Face 27252 7329 7368 17547 {rgb=(.5 .5 .5)} Face 27253 7402 7530 17548 {rgb=(.5 .5 .5)} Face 27254 7530 7484 17548 {rgb=(.5 .5 .5)} Face 27255 7484 7368 17548 {rgb=(.5 .5 .5)} Face 27256 7368 7402 17548 {rgb=(.5 .5 .5)} Face 27257 7424 7563 17549 {rgb=(.5 .5 .5)} Face 27258 7563 7530 17549 {rgb=(.5 .5 .5)} Face 27259 7530 7402 17549 {rgb=(.5 .5 .5)} Face 27260 7402 7424 17549 {rgb=(.5 .5 .5)} Face 27261 7440 7590 17550 {rgb=(.5 .5 .5)} Face 27262 7590 7563 17550 {rgb=(.5 .5 .5)} Face 27263 7563 7424 17550 {rgb=(.5 .5 .5)} Face 27264 7424 7440 17550 {rgb=(.5 .5 .5)} Face 27265 7446 7602 17551 {rgb=(.5 .5 .5)} Face 27266 7602 7590 17551 {rgb=(.5 .5 .5)} Face 27267 7590 7440 17551 {rgb=(.5 .5 .5)} Face 27268 7440 7446 17551 {rgb=(.5 .5 .5)} Face 27269 7441 7591 17552 {rgb=(.5 .5 .5)} Face 27270 7591 7602 17552 {rgb=(.5 .5 .5)} Face 27271 7602 7446 17552 {rgb=(.5 .5 .5)} Face 27272 7446 7441 17552 {rgb=(.5 .5 .5)} Face 27273 7423 7564 17553 {rgb=(.5 .5 .5)} Face 27274 7564 7591 17553 {rgb=(.5 .5 .5)} Face 27275 7591 7441 17553 {rgb=(.5 .5 .5)} Face 27276 7441 7423 17553 {rgb=(.5 .5 .5)} Face 27277 7403 7531 17554 {rgb=(.5 .5 .5)} Face 27278 7531 7564 17554 {rgb=(.5 .5 .5)} Face 27279 7564 7423 17554 {rgb=(.5 .5 .5)} Face 27280 7423 7403 17554 {rgb=(.5 .5 .5)} Face 27281 7369 7485 17555 {rgb=(.5 .5 .5)} Face 27282 7485 7531 17555 {rgb=(.5 .5 .5)} Face 27283 7531 7403 17555 {rgb=(.5 .5 .5)} Face 27284 7403 7369 17555 {rgb=(.5 .5 .5)} Face 27285 7330 7443 17556 {rgb=(.5 .5 .5)} Face 27286 7443 7485 17556 {rgb=(.5 .5 .5)} Face 27287 7485 7369 17556 {rgb=(.5 .5 .5)} Face 27288 7369 7330 17556 {rgb=(.5 .5 .5)} Face 27289 7292 7376 17557 {rgb=(.5 .5 .5)} Face 27290 7376 7443 17557 {rgb=(.5 .5 .5)} Face 27291 7443 7330 17557 {rgb=(.5 .5 .5)} Face 27292 7330 7292 17557 {rgb=(.5 .5 .5)} Face 27293 7214 7306 17558 {rgb=(.5 .5 .5)} Face 27294 7306 7376 17558 {rgb=(.5 .5 .5)} Face 27295 7376 7292 17558 {rgb=(.5 .5 .5)} Face 27296 7292 7214 17558 {rgb=(.5 .5 .5)} Face 27297 7162 7193 17559 {rgb=(.5 .5 .5)} Face 27298 7193 7306 17559 {rgb=(.5 .5 .5)} Face 27299 7306 7214 17559 {rgb=(.5 .5 .5)} Face 27300 7214 7162 17559 {rgb=(.5 .5 .5)} Face 27301 7105 7118 17560 {rgb=(.5 .5 .5)} Face 27302 7118 7193 17560 {rgb=(.5 .5 .5)} Face 27303 7193 7162 17560 {rgb=(.5 .5 .5)} Face 27304 7162 7105 17560 {rgb=(.5 .5 .5)} Face 27305 7039 7029 17561 {rgb=(.5 .5 .5)} Face 27306 7029 7118 17561 {rgb=(.5 .5 .5)} Face 27307 7118 7105 17561 {rgb=(.5 .5 .5)} Face 27308 7105 7039 17561 {rgb=(.5 .5 .5)} Face 27309 6991 6956 17562 {rgb=(.5 .5 .5)} Face 27310 6956 7029 17562 {rgb=(.5 .5 .5)} Face 27311 7029 7039 17562 {rgb=(.5 .5 .5)} Face 27312 7039 6991 17562 {rgb=(.5 .5 .5)} Face 27313 6942 6868 17563 {rgb=(.5 .5 .5)} Face 27314 6868 6956 17563 {rgb=(.5 .5 .5)} Face 27315 6956 6991 17563 {rgb=(.5 .5 .5)} Face 27316 6991 6942 17563 {rgb=(.5 .5 .5)} Face 27317 6885 6769 17564 {rgb=(.5 .5 .5)} Face 27318 6769 6868 17564 {rgb=(.5 .5 .5)} Face 27319 6868 6942 17564 {rgb=(.5 .5 .5)} Face 27320 6942 6885 17564 {rgb=(.5 .5 .5)} Face 27321 6832 6714 17565 {rgb=(.5 .5 .5)} Face 27322 6714 6769 17565 {rgb=(.5 .5 .5)} Face 27323 6769 6885 17565 {rgb=(.5 .5 .5)} Face 27324 6885 6832 17565 {rgb=(.5 .5 .5)} Face 27325 6773 6637 17566 {rgb=(.5 .5 .5)} Face 27326 6637 6714 17566 {rgb=(.5 .5 .5)} Face 27327 6714 6832 17566 {rgb=(.5 .5 .5)} Face 27328 6832 6773 17566 {rgb=(.5 .5 .5)} Face 27329 6747 6580 17567 {rgb=(.5 .5 .5)} Face 27330 6580 6637 17567 {rgb=(.5 .5 .5)} Face 27331 6637 6773 17567 {rgb=(.5 .5 .5)} Face 27332 6773 6747 17567 {rgb=(.5 .5 .5)} Face 27333 6725 6499 17568 {rgb=(.5 .5 .5)} Face 27334 6499 6580 17568 {rgb=(.5 .5 .5)} Face 27335 6580 6747 17568 {rgb=(.5 .5 .5)} Face 27336 6747 6725 17568 {rgb=(.5 .5 .5)} Face 27337 6701 6447 17569 {rgb=(.5 .5 .5)} Face 27338 6447 6499 17569 {rgb=(.5 .5 .5)} Face 27339 6499 6725 17569 {rgb=(.5 .5 .5)} Face 27340 6725 6701 17569 {rgb=(.5 .5 .5)} Face 27341 6681 6409 17570 {rgb=(.5 .5 .5)} Face 27342 6409 6447 17570 {rgb=(.5 .5 .5)} Face 27343 6447 6701 17570 {rgb=(.5 .5 .5)} Face 27344 6701 6681 17570 {rgb=(.5 .5 .5)} Face 27345 6674 6392 17571 {rgb=(.5 .5 .5)} Face 27346 6392 6409 17571 {rgb=(.5 .5 .5)} Face 27347 6409 6681 17571 {rgb=(.5 .5 .5)} Face 27348 6681 6674 17571 {rgb=(.5 .5 .5)} Face 27349 6680 6408 17572 {rgb=(.5 .5 .5)} Face 27350 6408 6392 17572 {rgb=(.5 .5 .5)} Face 27351 6392 6674 17572 {rgb=(.5 .5 .5)} Face 27352 6674 6680 17572 {rgb=(.5 .5 .5)} Face 27353 6700 6446 17573 {rgb=(.5 .5 .5)} Face 27354 6446 6408 17573 {rgb=(.5 .5 .5)} Face 27355 6408 6680 17573 {rgb=(.5 .5 .5)} Face 27356 6680 6700 17573 {rgb=(.5 .5 .5)} Face 27357 6724 6498 17574 {rgb=(.5 .5 .5)} Face 27358 6498 6446 17574 {rgb=(.5 .5 .5)} Face 27359 6446 6700 17574 {rgb=(.5 .5 .5)} Face 27360 6700 6724 17574 {rgb=(.5 .5 .5)} Face 27361 6746 6579 17575 {rgb=(.5 .5 .5)} Face 27362 6579 6498 17575 {rgb=(.5 .5 .5)} Face 27363 6498 6724 17575 {rgb=(.5 .5 .5)} Face 27364 6724 6746 17575 {rgb=(.5 .5 .5)} Face 27365 6772 6636 17576 {rgb=(.5 .5 .5)} Face 27366 6636 6579 17576 {rgb=(.5 .5 .5)} Face 27367 6579 6746 17576 {rgb=(.5 .5 .5)} Face 27368 6746 6772 17576 {rgb=(.5 .5 .5)} Face 27369 6831 6713 17577 {rgb=(.5 .5 .5)} Face 27370 6713 6636 17577 {rgb=(.5 .5 .5)} Face 27371 6636 6772 17577 {rgb=(.5 .5 .5)} Face 27372 6772 6831 17577 {rgb=(.5 .5 .5)} Face 27373 6884 6768 17578 {rgb=(.5 .5 .5)} Face 27374 6768 6713 17578 {rgb=(.5 .5 .5)} Face 27375 6713 6831 17578 {rgb=(.5 .5 .5)} Face 27376 6831 6884 17578 {rgb=(.5 .5 .5)} Face 27377 6941 6867 17579 {rgb=(.5 .5 .5)} Face 27378 6867 6768 17579 {rgb=(.5 .5 .5)} Face 27379 6768 6884 17579 {rgb=(.5 .5 .5)} Face 27380 6884 6941 17579 {rgb=(.5 .5 .5)} Face 27381 6990 6955 17580 {rgb=(.5 .5 .5)} Face 27382 6955 6867 17580 {rgb=(.5 .5 .5)} Face 27383 6867 6941 17580 {rgb=(.5 .5 .5)} Face 27384 6941 6990 17580 {rgb=(.5 .5 .5)} Face 27385 7038 7028 17581 {rgb=(.5 .5 .5)} Face 27386 7028 6955 17581 {rgb=(.5 .5 .5)} Face 27387 6955 6990 17581 {rgb=(.5 .5 .5)} Face 27388 6990 7038 17581 {rgb=(.5 .5 .5)} Face 27389 7086 7104 17582 {rgb=(1 1 1)} Face 27390 7104 7038 17582 {rgb=(1 1 1)} Face 27391 7038 7048 17582 {rgb=(1 1 1)} Face 27392 7048 7086 17582 {rgb=(1 1 1)} Face 27393 7121 7161 17583 {rgb=(1 1 1)} Face 27394 7161 7104 17583 {rgb=(1 1 1)} Face 27395 7104 7086 17583 {rgb=(1 1 1)} Face 27396 7086 7121 17583 {rgb=(1 1 1)} Face 27397 7146 7213 17584 {rgb=(1 1 1)} Face 27398 7213 7161 17584 {rgb=(1 1 1)} Face 27399 7161 7121 17584 {rgb=(1 1 1)} Face 27400 7121 7146 17584 {rgb=(1 1 1)} Face 27401 7167 7291 17585 {rgb=(1 1 1)} Face 27402 7291 7213 17585 {rgb=(1 1 1)} Face 27403 7213 7146 17585 {rgb=(1 1 1)} Face 27404 7146 7167 17585 {rgb=(1 1 1)} Face 27405 7184 7329 17586 {rgb=(1 1 1)} Face 27406 7329 7291 17586 {rgb=(1 1 1)} Face 27407 7291 7167 17586 {rgb=(1 1 1)} Face 27408 7167 7184 17586 {rgb=(1 1 1)} Face 27409 7204 7368 17587 {rgb=(1 1 1)} Face 27410 7368 7329 17587 {rgb=(1 1 1)} Face 27411 7329 7184 17587 {rgb=(1 1 1)} Face 27412 7184 7204 17587 {rgb=(1 1 1)} Face 27413 7237 7402 17588 {rgb=(1 1 1)} Face 27414 7402 7368 17588 {rgb=(1 1 1)} Face 27415 7368 7204 17588 {rgb=(1 1 1)} Face 27416 7204 7237 17588 {rgb=(1 1 1)} Face 27417 7255 7424 17589 {rgb=(1 1 1)} Face 27418 7424 7402 17589 {rgb=(1 1 1)} Face 27419 7402 7237 17589 {rgb=(1 1 1)} Face 27420 7237 7255 17589 {rgb=(1 1 1)} Face 27421 7277 7440 17590 {rgb=(1 1 1)} Face 27422 7440 7424 17590 {rgb=(1 1 1)} Face 27423 7424 7255 17590 {rgb=(1 1 1)} Face 27424 7255 7277 17590 {rgb=(1 1 1)} Face 27425 7278 7446 17591 {rgb=(1 1 1)} Face 27426 7446 7440 17591 {rgb=(1 1 1)} Face 27427 7440 7277 17591 {rgb=(1 1 1)} Face 27428 7277 7278 17591 {rgb=(1 1 1)} Face 27429 7276 7441 17592 {rgb=(1 1 1)} Face 27430 7441 7446 17592 {rgb=(1 1 1)} Face 27431 7446 7278 17592 {rgb=(1 1 1)} Face 27432 7278 7276 17592 {rgb=(1 1 1)} Face 27433 7254 7423 17593 {rgb=(1 1 1)} Face 27434 7423 7441 17593 {rgb=(1 1 1)} Face 27435 7441 7276 17593 {rgb=(1 1 1)} Face 27436 7276 7254 17593 {rgb=(1 1 1)} Face 27437 7238 7403 17594 {rgb=(1 1 1)} Face 27438 7403 7423 17594 {rgb=(1 1 1)} Face 27439 7423 7254 17594 {rgb=(1 1 1)} Face 27440 7254 7238 17594 {rgb=(1 1 1)} Face 27441 7203 7369 17595 {rgb=(1 1 1)} Face 27442 7369 7403 17595 {rgb=(1 1 1)} Face 27443 7403 7238 17595 {rgb=(1 1 1)} Face 27444 7238 7203 17595 {rgb=(1 1 1)} Face 27445 7185 7330 17596 {rgb=(1 1 1)} Face 27446 7330 7369 17596 {rgb=(1 1 1)} Face 27447 7369 7203 17596 {rgb=(1 1 1)} Face 27448 7203 7185 17596 {rgb=(1 1 1)} Face 27449 7168 7292 17597 {rgb=(1 1 1)} Face 27450 7292 7330 17597 {rgb=(1 1 1)} Face 27451 7330 7185 17597 {rgb=(1 1 1)} Face 27452 7185 7168 17597 {rgb=(1 1 1)} Face 27453 7147 7214 17598 {rgb=(1 1 1)} Face 27454 7214 7292 17598 {rgb=(1 1 1)} Face 27455 7292 7168 17598 {rgb=(1 1 1)} Face 27456 7168 7147 17598 {rgb=(1 1 1)} Face 27457 7122 7162 17599 {rgb=(1 1 1)} Face 27458 7162 7214 17599 {rgb=(1 1 1)} Face 27459 7214 7147 17599 {rgb=(1 1 1)} Face 27460 7147 7122 17599 {rgb=(1 1 1)} Face 27461 7087 7105 17600 {rgb=(1 1 1)} Face 27462 7105 7162 17600 {rgb=(1 1 1)} Face 27463 7162 7122 17600 {rgb=(1 1 1)} Face 27464 7122 7087 17600 {rgb=(1 1 1)} Face 27465 7049 7039 17601 {rgb=(1 1 1)} Face 27466 7039 7105 17601 {rgb=(1 1 1)} Face 27467 7105 7087 17601 {rgb=(1 1 1)} Face 27468 7087 7049 17601 {rgb=(1 1 1)} Face 27469 7027 6991 17602 {rgb=(1 1 1)} Face 27470 6991 7039 17602 {rgb=(1 1 1)} Face 27471 7039 7049 17602 {rgb=(1 1 1)} Face 27472 7049 7027 17602 {rgb=(1 1 1)} Face 27473 7008 6942 17603 {rgb=(1 1 1)} Face 27474 6942 6991 17603 {rgb=(1 1 1)} Face 27475 6991 7027 17603 {rgb=(1 1 1)} Face 27476 7027 7008 17603 {rgb=(1 1 1)} Face 27477 6977 6885 17604 {rgb=(1 1 1)} Face 27478 6885 6942 17604 {rgb=(1 1 1)} Face 27479 6942 7008 17604 {rgb=(1 1 1)} Face 27480 7008 6977 17604 {rgb=(1 1 1)} Face 27481 6959 6832 17605 {rgb=(1 1 1)} Face 27482 6832 6885 17605 {rgb=(1 1 1)} Face 27483 6885 6977 17605 {rgb=(1 1 1)} Face 27484 6977 6959 17605 {rgb=(1 1 1)} Face 27485 6933 6773 17606 {rgb=(1 1 1)} Face 27486 6773 6832 17606 {rgb=(1 1 1)} Face 27487 6832 6959 17606 {rgb=(1 1 1)} Face 27488 6959 6933 17606 {rgb=(1 1 1)} Face 27489 6919 6747 17607 {rgb=(1 1 1)} Face 27490 6747 6773 17607 {rgb=(1 1 1)} Face 27491 6773 6933 17607 {rgb=(1 1 1)} Face 27492 6933 6919 17607 {rgb=(1 1 1)} Face 27493 6900 6725 17608 {rgb=(1 1 1)} Face 27494 6725 6747 17608 {rgb=(1 1 1)} Face 27495 6747 6919 17608 {rgb=(1 1 1)} Face 27496 6919 6900 17608 {rgb=(1 1 1)} Face 27497 6888 6701 17609 {rgb=(1 1 1)} Face 27498 6701 6725 17609 {rgb=(1 1 1)} Face 27499 6725 6900 17609 {rgb=(1 1 1)} Face 27500 6900 6888 17609 {rgb=(1 1 1)} Face 27501 6879 6681 17610 {rgb=(1 1 1)} Face 27502 6681 6701 17610 {rgb=(1 1 1)} Face 27503 6701 6888 17610 {rgb=(1 1 1)} Face 27504 6888 6879 17610 {rgb=(1 1 1)} Face 27505 6878 6674 17611 {rgb=(1 1 1)} Face 27506 6674 6681 17611 {rgb=(1 1 1)} Face 27507 6681 6879 17611 {rgb=(1 1 1)} Face 27508 6879 6878 17611 {rgb=(1 1 1)} Face 27509 6880 6680 17612 {rgb=(1 1 1)} Face 27510 6680 6674 17612 {rgb=(1 1 1)} Face 27511 6674 6878 17612 {rgb=(1 1 1)} Face 27512 6878 6880 17612 {rgb=(1 1 1)} Face 27513 6887 6700 17613 {rgb=(1 1 1)} Face 27514 6700 6680 17613 {rgb=(1 1 1)} Face 27515 6680 6880 17613 {rgb=(1 1 1)} Face 27516 6880 6887 17613 {rgb=(1 1 1)} Face 27517 6899 6724 17614 {rgb=(1 1 1)} Face 27518 6724 6700 17614 {rgb=(1 1 1)} Face 27519 6700 6887 17614 {rgb=(1 1 1)} Face 27520 6887 6899 17614 {rgb=(1 1 1)} Face 27521 6918 6746 17615 {rgb=(1 1 1)} Face 27522 6746 6724 17615 {rgb=(1 1 1)} Face 27523 6724 6899 17615 {rgb=(1 1 1)} Face 27524 6899 6918 17615 {rgb=(1 1 1)} Face 27525 6932 6772 17616 {rgb=(1 1 1)} Face 27526 6772 6746 17616 {rgb=(1 1 1)} Face 27527 6746 6918 17616 {rgb=(1 1 1)} Face 27528 6918 6932 17616 {rgb=(1 1 1)} Face 27529 6958 6831 17617 {rgb=(1 1 1)} Face 27530 6831 6772 17617 {rgb=(1 1 1)} Face 27531 6772 6932 17617 {rgb=(1 1 1)} Face 27532 6932 6958 17617 {rgb=(1 1 1)} Face 27533 6976 6884 17618 {rgb=(1 1 1)} Face 27534 6884 6831 17618 {rgb=(1 1 1)} Face 27535 6831 6958 17618 {rgb=(1 1 1)} Face 27536 6958 6976 17618 {rgb=(1 1 1)} Face 27537 7007 6941 17619 {rgb=(1 1 1)} Face 27538 6941 6884 17619 {rgb=(1 1 1)} Face 27539 6884 6976 17619 {rgb=(1 1 1)} Face 27540 6976 7007 17619 {rgb=(1 1 1)} Face 27541 7026 6990 17620 {rgb=(1 1 1)} Face 27542 6990 6941 17620 {rgb=(1 1 1)} Face 27543 6941 7007 17620 {rgb=(1 1 1)} Face 27544 7007 7026 17620 {rgb=(1 1 1)} Face 27545 7048 7038 17621 {rgb=(1 1 1)} Face 27546 7038 6990 17621 {rgb=(1 1 1)} Face 27547 6990 7026 17621 {rgb=(1 1 1)} Face 27548 7026 7048 17621 {rgb=(1 1 1)} Face 27549 10983 11000 17622 {rgb=(.6 .4 .4)} Face 27550 11000 10997 17622 {rgb=(.6 .4 .4)} Face 27551 10997 11007 17622 {rgb=(.6 .4 .4)} Face 27552 11007 10983 17622 {rgb=(.6 .4 .4)} Face 27553 11007 10997 17623 {rgb=(.6 .4 .4)} Face 27554 10997 11025 17623 {rgb=(.6 .4 .4)} Face 27555 11025 11022 17623 {rgb=(.6 .4 .4)} Face 27556 11022 11007 17623 {rgb=(.6 .4 .4)} Face 27557 11022 11025 17624 {rgb=(.6 .4 .4)} Face 27558 11025 10973 17624 {rgb=(.6 .4 .4)} Face 27559 10973 10998 17624 {rgb=(.6 .4 .4)} Face 27560 10998 11022 17624 {rgb=(.6 .4 .4)} Face 27561 10998 10973 17625 {rgb=(.6 .4 .4)} Face 27562 10973 10993 17625 {rgb=(.6 .4 .4)} Face 27563 10993 10990 17625 {rgb=(.6 .4 .4)} Face 27564 10990 10998 17625 {rgb=(.6 .4 .4)} Face 27565 10990 10993 17626 {rgb=(.6 .4 .4)} Face 27566 10993 10967 17626 {rgb=(.6 .4 .4)} Face 27567 10967 10986 17626 {rgb=(.6 .4 .4)} Face 27568 10986 10990 17626 {rgb=(.6 .4 .4)} Face 27569 10986 10967 17627 {rgb=(.6 .4 .4)} Face 27570 10967 10942 17627 {rgb=(.6 .4 .4)} Face 27571 10942 10961 17627 {rgb=(.6 .4 .4)} Face 27572 10961 10986 17627 {rgb=(.6 .4 .4)} Face 27573 10792 10789 17628 {rgb=(.6 .4 .4)} Face 27574 10789 10682 17628 {rgb=(.6 .4 .4)} Face 27575 10682 10659 17628 {rgb=(.6 .4 .4)} Face 27576 10659 10792 17628 {rgb=(.6 .4 .4)} Face 27577 10792 10659 17629 {rgb=(.6 .4 .4)} Face 27578 10659 10759 17629 {rgb=(.6 .4 .4)} Face 27579 10759 10791 17629 {rgb=(.6 .4 .4)} Face 27580 10791 10792 17629 {rgb=(.6 .4 .4)} Face 27581 10632 10629 17630 {rgb=(.6 .4 .4)} Face 27582 10629 10442 17630 {rgb=(.6 .4 .4)} Face 27583 10442 10397 17630 {rgb=(.6 .4 .4)} Face 27584 10397 10632 17630 {rgb=(.6 .4 .4)} Face 27585 10632 10397 17631 {rgb=(.6 .4 .4)} Face 27586 10397 10537 17631 {rgb=(.6 .4 .4)} Face 27587 10537 10612 17631 {rgb=(.6 .4 .4)} Face 27588 10612 10632 17631 {rgb=(.6 .4 .4)} Face 27589 10710 10700 17632 {rgb=(.6 .4 .4)} Face 27590 10700 10522 17632 {rgb=(.6 .4 .4)} Face 27591 10522 10485 17632 {rgb=(.6 .4 .4)} Face 27592 10485 10710 17632 {rgb=(.6 .4 .4)} Face 27593 10710 10485 17633 {rgb=(.6 .4 .4)} Face 27594 10485 10655 17633 {rgb=(.6 .4 .4)} Face 27595 10655 10702 17633 {rgb=(.6 .4 .4)} Face 27596 10702 10710 17633 {rgb=(.6 .4 .4)} Face 27597 10504 10490 17634 {rgb=(.6 .4 .4)} Face 27598 10490 10365 17634 {rgb=(.6 .4 .4)} Face 27599 10365 10344 17634 {rgb=(.6 .4 .4)} Face 27600 10344 10504 17634 {rgb=(.6 .4 .4)} Face 27601 10504 10344 17635 {rgb=(.6 .4 .4)} Face 27602 10344 10469 17635 {rgb=(.6 .4 .4)} Face 27603 10469 10507 17635 {rgb=(.6 .4 .4)} Face 27604 10507 10504 17635 {rgb=(.6 .4 .4)} Face 27605 10143 10168 17636 {rgb=(.6 .4 .4)} Face 27606 10168 10207 17636 {rgb=(.6 .4 .4)} Face 27607 10207 10170 17636 {rgb=(.6 .4 .4)} Face 27608 10170 10143 17636 {rgb=(.6 .4 .4)} Face 27609 10143 10170 17637 {rgb=(.6 .4 .4)} Face 27610 10170 10117 17637 {rgb=(.6 .4 .4)} Face 27611 10117 10116 17637 {rgb=(.6 .4 .4)} Face 27612 10116 10143 17637 {rgb=(.6 .4 .4)} Face 27613 9646 9625 17638 {rgb=(.6 .4 .4)} Face 27614 9625 9568 17638 {rgb=(.6 .4 .4)} Face 27615 9568 9690 17638 {rgb=(.6 .4 .4)} Face 27616 9690 9646 17638 {rgb=(.6 .4 .4)} Face 27617 9714 9690 17639 {rgb=(.6 .4 .4)} Face 27618 9690 9568 17639 {rgb=(.6 .4 .4)} Face 27619 9568 9712 17639 {rgb=(.6 .4 .4)} Face 27620 9712 9714 17639 {rgb=(.6 .4 .4)} Face 27621 9660 9712 17640 {rgb=(.6 .4 .4)} Face 27622 9712 9568 17640 {rgb=(.6 .4 .4)} Face 27623 9568 9615 17640 {rgb=(.6 .4 .4)} Face 27624 9615 9660 17640 {rgb=(.6 .4 .4)} Face 27625 10937 10947 17641 {rgb=(.6 .4 .4)} Face 27626 10947 10928 17641 {rgb=(.6 .4 .4)} Face 27627 10928 10939 17641 {rgb=(.6 .4 .4)} Face 27628 10939 10937 17641 {rgb=(.6 .4 .4)} Face 27629 10944 10920 17642 {rgb=(.6 .4 .4)} Face 27630 10920 10947 17642 {rgb=(.6 .4 .4)} Face 27631 10947 10943 17642 {rgb=(.6 .4 .4)} Face 27632 10943 10944 17642 {rgb=(.6 .4 .4)} Face 27633 66 45 17643 {rgb=(.6 .4 .4)} Face 27634 45 38 17643 {rgb=(.6 .4 .4)} Face 27635 38 48 17643 {rgb=(.6 .4 .4)} Face 27636 48 66 17643 {rgb=(.6 .4 .4)} Face 27637 36 48 17644 {rgb=(.6 .4 .4)} Face 27638 48 23 17644 {rgb=(.6 .4 .4)} Face 27639 23 20 17644 {rgb=(.6 .4 .4)} Face 27640 20 36 17644 {rgb=(.6 .4 .4)} Face 27641 40 20 17645 {rgb=(.6 .4 .4)} Face 27642 20 47 17645 {rgb=(.6 .4 .4)} Face 27643 47 72 17645 {rgb=(.6 .4 .4)} Face 27644 72 40 17645 {rgb=(.6 .4 .4)} Face 27645 69 72 17646 {rgb=(.6 .4 .4)} Face 27646 72 55 17646 {rgb=(.6 .4 .4)} Face 27647 55 52 17646 {rgb=(.6 .4 .4)} Face 27648 52 69 17646 {rgb=(.6 .4 .4)} Face 27649 107 78 17647 {rgb=(.6 .4 .4)} Face 27650 78 84 17647 {rgb=(.6 .4 .4)} Face 27651 84 103 17647 {rgb=(.6 .4 .4)} Face 27652 103 107 17647 {rgb=(.6 .4 .4)} Face 27653 285 256 17648 {rgb=(.6 .4 .4)} Face 27654 256 386 17648 {rgb=(.6 .4 .4)} Face 27655 386 363 17648 {rgb=(.6 .4 .4)} Face 27656 363 285 17648 {rgb=(.6 .4 .4)} Face 27657 362 386 17649 {rgb=(.6 .4 .4)} Face 27658 386 254 17649 {rgb=(.6 .4 .4)} Face 27659 254 286 17649 {rgb=(.6 .4 .4)} Face 27660 286 362 17649 {rgb=(.6 .4 .4)} Face 27661 475 416 17650 {rgb=(.6 .4 .4)} Face 27662 416 648 17650 {rgb=(.6 .4 .4)} Face 27663 648 603 17650 {rgb=(.6 .4 .4)} Face 27664 603 475 17650 {rgb=(.6 .4 .4)} Face 27665 628 648 17651 {rgb=(.6 .4 .4)} Face 27666 648 433 17651 {rgb=(.6 .4 .4)} Face 27667 433 508 17651 {rgb=(.6 .4 .4)} Face 27668 508 628 17651 {rgb=(.6 .4 .4)} Face 27669 392 345 17652 {rgb=(.6 .4 .4)} Face 27670 345 560 17652 {rgb=(.6 .4 .4)} Face 27671 560 523 17652 {rgb=(.6 .4 .4)} Face 27672 523 392 17652 {rgb=(.6 .4 .4)} Face 27673 521 560 17653 {rgb=(.6 .4 .4)} Face 27674 560 343 17653 {rgb=(.6 .4 .4)} Face 27675 343 390 17653 {rgb=(.6 .4 .4)} Face 27676 390 521 17653 {rgb=(.6 .4 .4)} Face 27677 602 555 17654 {rgb=(.6 .4 .4)} Face 27678 555 701 17654 {rgb=(.6 .4 .4)} Face 27679 701 680 17654 {rgb=(.6 .4 .4)} Face 27680 680 602 17654 {rgb=(.6 .4 .4)} Face 27681 664 701 17655 {rgb=(.6 .4 .4)} Face 27682 701 538 17655 {rgb=(.6 .4 .4)} Face 27683 538 576 17655 {rgb=(.6 .4 .4)} Face 27684 576 664 17655 {rgb=(.6 .4 .4)} Face 27685 845 877 17656 {rgb=(.6 .4 .4)} Face 27686 877 875 17656 {rgb=(.6 .4 .4)} Face 27687 875 838 17656 {rgb=(.6 .4 .4)} Face 27688 838 845 17656 {rgb=(.6 .4 .4)} Face 27689 904 875 17657 {rgb=(.6 .4 .4)} Face 27690 875 929 17657 {rgb=(.6 .4 .4)} Face 27691 929 928 17657 {rgb=(.6 .4 .4)} Face 27692 928 904 17657 {rgb=(.6 .4 .4)} Face 27693 1331 1333 17658 {rgb=(.6 .4 .4)} Face 27694 1333 1430 17658 {rgb=(.6 .4 .4)} Face 27695 1430 1355 17658 {rgb=(.6 .4 .4)} Face 27696 1355 1331 17658 {rgb=(.6 .4 .4)} Face 27697 1399 1355 17659 {rgb=(.6 .4 .4)} Face 27698 1355 1430 17659 {rgb=(.6 .4 .4)} Face 27699 1430 1420 17659 {rgb=(.6 .4 .4)} Face 27700 1420 1399 17659 {rgb=(.6 .4 .4)} Face 27701 1474 1420 17660 {rgb=(.6 .4 .4)} Face 27702 1420 1430 17660 {rgb=(.6 .4 .4)} Face 27703 1430 1477 17660 {rgb=(.6 .4 .4)} Face 27704 1477 1474 17660 {rgb=(.6 .4 .4)} Face 27705 113 98 17661 {rgb=(.6 .4 .4)} Face 27706 98 106 17661 {rgb=(.6 .4 .4)} Face 27707 106 117 17661 {rgb=(.6 .4 .4)} Face 27708 117 113 17661 {rgb=(.6 .4 .4)} Face 27709 113 125 17662 {rgb=(.6 .4 .4)} Face 27710 125 102 17662 {rgb=(.6 .4 .4)} Face 27711 102 98 17662 {rgb=(.6 .4 .4)} Face 27712 98 113 17662 {rgb=(.6 .4 .4)} Face 27713 10980 11039 17663 {rgb=(.6 .4 .4)} Face 27714 11039 11028 17663 {rgb=(.6 .4 .4)} Face 27715 11028 10933 17663 {rgb=(.6 .4 .4)} Face 27716 10933 10980 17663 {rgb=(.6 .4 .4)} Face 27717 11030 11044 17664 {rgb=(.6 .4 .4)} Face 27718 11044 11039 17664 {rgb=(.6 .4 .4)} Face 27719 11039 10980 17664 {rgb=(.6 .4 .4)} Face 27720 10980 11030 17664 {rgb=(.6 .4 .4)} Face 27721 11034 11043 17665 {rgb=(.6 .4 .4)} Face 27722 11043 11044 17665 {rgb=(.6 .4 .4)} Face 27723 11044 11030 17665 {rgb=(.6 .4 .4)} Face 27724 11030 11034 17665 {rgb=(.6 .4 .4)} Face 27725 11021 11042 17666 {rgb=(.6 .4 .4)} Face 27726 11042 11043 17666 {rgb=(.6 .4 .4)} Face 27727 11043 11034 17666 {rgb=(.6 .4 .4)} Face 27728 11034 11021 17666 {rgb=(.6 .4 .4)} Face 27729 10989 11035 17667 {rgb=(.6 .4 .4)} Face 27730 11035 11042 17667 {rgb=(.6 .4 .4)} Face 27731 11042 11021 17667 {rgb=(.6 .4 .4)} Face 27732 11021 10989 17667 {rgb=(.6 .4 .4)} Face 27733 10951 10960 17668 {rgb=(.6 .4 .4)} Face 27734 10960 11035 17668 {rgb=(.6 .4 .4)} Face 27735 11035 10989 17668 {rgb=(.6 .4 .4)} Face 27736 10989 10951 17668 {rgb=(.6 .4 .4)} Face 27737 10822 10810 17669 {rgb=(.6 .4 .4)} Face 27738 10810 10960 17669 {rgb=(.6 .4 .4)} Face 27739 10960 10892 17669 {rgb=(.6 .4 .4)} Face 27740 10892 10822 17669 {rgb=(.6 .4 .4)} Face 27741 10822 10739 17670 {rgb=(.6 .4 .4)} Face 27742 10739 10418 17670 {rgb=(.6 .4 .4)} Face 27743 10418 10810 17670 {rgb=(.6 .4 .4)} Face 27744 10810 10822 17670 {rgb=(.6 .4 .4)} Face 27745 10685 10250 17671 {rgb=(.6 .4 .4)} Face 27746 10250 10418 17671 {rgb=(.6 .4 .4)} Face 27747 10418 10739 17671 {rgb=(.6 .4 .4)} Face 27748 10739 10685 17671 {rgb=(.6 .4 .4)} Face 27749 10556 10167 17672 {rgb=(.6 .4 .4)} Face 27750 10167 10250 17672 {rgb=(.6 .4 .4)} Face 27751 10250 10685 17672 {rgb=(.6 .4 .4)} Face 27752 10685 10556 17672 {rgb=(.6 .4 .4)} Face 27753 10453 10134 17673 {rgb=(.6 .4 .4)} Face 27754 10134 10167 17673 {rgb=(.6 .4 .4)} Face 27755 10167 10556 17673 {rgb=(.6 .4 .4)} Face 27756 10556 10453 17673 {rgb=(.6 .4 .4)} Face 27757 10441 10157 17674 {rgb=(.6 .4 .4)} Face 27758 10157 10134 17674 {rgb=(.6 .4 .4)} Face 27759 10134 10453 17674 {rgb=(.6 .4 .4)} Face 27760 10453 10441 17674 {rgb=(.6 .4 .4)} Face 27761 10512 10223 17675 {rgb=(.6 .4 .4)} Face 27762 10223 10157 17675 {rgb=(.6 .4 .4)} Face 27763 10157 10441 17675 {rgb=(.6 .4 .4)} Face 27764 10441 10512 17675 {rgb=(.6 .4 .4)} Face 27765 10814 10578 17676 {rgb=(.6 .4 .4)} Face 27766 10578 10223 17676 {rgb=(.6 .4 .4)} Face 27767 10223 10618 17676 {rgb=(.6 .4 .4)} Face 27768 10618 10814 17676 {rgb=(.6 .4 .4)} Face 27769 10878 10875 17677 {rgb=(.6 .4 .4)} Face 27770 10875 10578 17677 {rgb=(.6 .4 .4)} Face 27771 10578 10814 17677 {rgb=(.6 .4 .4)} Face 27772 10814 10878 17677 {rgb=(.6 .4 .4)} Face 27773 10933 11028 17678 {rgb=(.6 .4 .4)} Face 27774 11028 10875 17678 {rgb=(.6 .4 .4)} Face 27775 10875 10878 17678 {rgb=(.6 .4 .4)} Face 27776 10878 10933 17678 {rgb=(.6 .4 .4)} Face 27777 10857 10756 17679 {rgb=(.6 .4 .4)} Face 27778 10756 10822 17679 {rgb=(.6 .4 .4)} Face 27779 10822 10892 17679 {rgb=(.6 .4 .4)} Face 27780 10892 10857 17679 {rgb=(.6 .4 .4)} Face 27781 10701 10681 17680 {rgb=(.6 .4 .4)} Face 27782 10681 10685 17680 {rgb=(.6 .4 .4)} Face 27783 10685 10739 17680 {rgb=(.6 .4 .4)} Face 27784 10739 10701 17680 {rgb=(.6 .4 .4)} Face 27785 10681 10640 17681 {rgb=(.6 .4 .4)} Face 27786 10640 10556 17681 {rgb=(.6 .4 .4)} Face 27787 10556 10685 17681 {rgb=(.6 .4 .4)} Face 27788 10685 10681 17681 {rgb=(.6 .4 .4)} Face 27789 10640 10585 17682 {rgb=(.6 .4 .4)} Face 27790 10585 10453 17682 {rgb=(.6 .4 .4)} Face 27791 10453 10556 17682 {rgb=(.6 .4 .4)} Face 27792 10556 10640 17682 {rgb=(.6 .4 .4)} Face 27793 10585 10592 17683 {rgb=(.6 .4 .4)} Face 27794 10592 10441 17683 {rgb=(.6 .4 .4)} Face 27795 10441 10453 17683 {rgb=(.6 .4 .4)} Face 27796 10453 10585 17683 {rgb=(.6 .4 .4)} Face 27797 10592 10550 17684 {rgb=(.6 .4 .4)} Face 27798 10550 10512 17684 {rgb=(.6 .4 .4)} Face 27799 10512 10441 17684 {rgb=(.6 .4 .4)} Face 27800 10441 10592 17684 {rgb=(.6 .4 .4)} Face 27801 10550 10624 17685 {rgb=(.6 .4 .4)} Face 27802 10624 10618 17685 {rgb=(.6 .4 .4)} Face 27803 10618 10512 17685 {rgb=(.6 .4 .4)} Face 27804 10512 10550 17685 {rgb=(.6 .4 .4)} Face 27805 10624 10885 17686 {rgb=(.6 .4 .4)} Face 27806 10885 10814 17686 {rgb=(.6 .4 .4)} Face 27807 10814 10618 17686 {rgb=(.6 .4 .4)} Face 27808 10618 10624 17686 {rgb=(.6 .4 .4)} Face 27809 10953 10987 17687 {rgb=(.6 .4 .4)} Face 27810 10987 10933 17687 {rgb=(.6 .4 .4)} Face 27811 10933 10878 17687 {rgb=(.6 .4 .4)} Face 27812 10878 10953 17687 {rgb=(.6 .4 .4)} Face 27813 10987 11010 17688 {rgb=(.6 .4 .4)} Face 27814 11010 10980 17688 {rgb=(.6 .4 .4)} Face 27815 10980 10933 17688 {rgb=(.6 .4 .4)} Face 27816 10933 10987 17688 {rgb=(.6 .4 .4)} Face 27817 11010 11024 17689 {rgb=(.6 .4 .4)} Face 27818 11024 11030 17689 {rgb=(.6 .4 .4)} Face 27819 11030 10980 17689 {rgb=(.6 .4 .4)} Face 27820 10980 11010 17689 {rgb=(.6 .4 .4)} Face 27821 11013 10995 17690 {rgb=(.6 .4 .4)} Face 27822 10995 11021 17690 {rgb=(.6 .4 .4)} Face 27823 11021 11034 17690 {rgb=(.6 .4 .4)} Face 27824 11034 11013 17690 {rgb=(.6 .4 .4)} Face 27825 10995 10968 17691 {rgb=(.6 .4 .4)} Face 27826 10968 10989 17691 {rgb=(.6 .4 .4)} Face 27827 10989 11021 17691 {rgb=(.6 .4 .4)} Face 27828 11021 10995 17691 {rgb=(.6 .4 .4)} Face 27829 10968 10922 17692 {rgb=(.6 .4 .4)} Face 27830 10922 10951 17692 {rgb=(.6 .4 .4)} Face 27831 10951 10989 17692 {rgb=(.6 .4 .4)} Face 27832 10989 10968 17692 {rgb=(.6 .4 .4)} Face 27833 10922 10857 17693 {rgb=(.6 .4 .4)} Face 27834 10857 10892 17693 {rgb=(.6 .4 .4)} Face 27835 10892 10951 17693 {rgb=(.6 .4 .4)} Face 27836 10951 10922 17693 {rgb=(.6 .4 .4)} Face 27837 10883 10603 17694 {rgb=(.6 .4 .4)} Face 27838 10603 10578 17694 {rgb=(.6 .4 .4)} Face 27839 10578 10875 17694 {rgb=(.6 .4 .4)} Face 27840 10875 10883 17694 {rgb=(.6 .4 .4)} Face 27841 10603 10273 17695 {rgb=(.6 .4 .4)} Face 27842 10273 10223 17695 {rgb=(.6 .4 .4)} Face 27843 10223 10578 17695 {rgb=(.6 .4 .4)} Face 27844 10578 10603 17695 {rgb=(.6 .4 .4)} Face 27845 10273 10203 17696 {rgb=(.6 .4 .4)} Face 27846 10203 10157 17696 {rgb=(.6 .4 .4)} Face 27847 10157 10223 17696 {rgb=(.6 .4 .4)} Face 27848 10223 10273 17696 {rgb=(.6 .4 .4)} Face 27849 10203 10160 17697 {rgb=(.6 .4 .4)} Face 27850 10160 10134 17697 {rgb=(.6 .4 .4)} Face 27851 10134 10157 17697 {rgb=(.6 .4 .4)} Face 27852 10157 10203 17697 {rgb=(.6 .4 .4)} Face 27853 10160 10199 17698 {rgb=(.6 .4 .4)} Face 27854 10199 10167 17698 {rgb=(.6 .4 .4)} Face 27855 10167 10134 17698 {rgb=(.6 .4 .4)} Face 27856 10134 10160 17698 {rgb=(.6 .4 .4)} Face 27857 10199 10293 17699 {rgb=(.6 .4 .4)} Face 27858 10293 10250 17699 {rgb=(.6 .4 .4)} Face 27859 10250 10167 17699 {rgb=(.6 .4 .4)} Face 27860 10167 10199 17699 {rgb=(.6 .4 .4)} Face 27861 10293 10511 17700 {rgb=(.6 .4 .4)} Face 27862 10511 10418 17700 {rgb=(.6 .4 .4)} Face 27863 10418 10250 17700 {rgb=(.6 .4 .4)} Face 27864 10250 10293 17700 {rgb=(.6 .4 .4)} Face 27865 10511 10832 17701 {rgb=(.6 .4 .4)} Face 27866 10832 10810 17701 {rgb=(.6 .4 .4)} Face 27867 10810 10418 17701 {rgb=(.6 .4 .4)} Face 27868 10418 10511 17701 {rgb=(.6 .4 .4)} Face 27869 10832 10962 17702 {rgb=(.6 .4 .4)} Face 27870 10962 10960 17702 {rgb=(.6 .4 .4)} Face 27871 10960 10810 17702 {rgb=(.6 .4 .4)} Face 27872 10810 10832 17702 {rgb=(.6 .4 .4)} Face 27873 10962 11032 17703 {rgb=(.6 .4 .4)} Face 27874 11032 11035 17703 {rgb=(.6 .4 .4)} Face 27875 11035 10960 17703 {rgb=(.6 .4 .4)} Face 27876 10960 10962 17703 {rgb=(.6 .4 .4)} Face 27877 11032 11037 17704 {rgb=(.6 .4 .4)} Face 27878 11037 11042 17704 {rgb=(.6 .4 .4)} Face 27879 11042 11035 17704 {rgb=(.6 .4 .4)} Face 27880 11035 11032 17704 {rgb=(.6 .4 .4)} Face 27881 11037 11040 17705 {rgb=(.6 .4 .4)} Face 27882 11040 11043 17705 {rgb=(.6 .4 .4)} Face 27883 11043 11042 17705 {rgb=(.6 .4 .4)} Face 27884 11042 11037 17705 {rgb=(.6 .4 .4)} Face 27885 11040 11041 17706 {rgb=(.6 .4 .4)} Face 27886 11041 11044 17706 {rgb=(.6 .4 .4)} Face 27887 11044 11043 17706 {rgb=(.6 .4 .4)} Face 27888 11043 11040 17706 {rgb=(.6 .4 .4)} Face 27889 11041 11038 17707 {rgb=(.6 .4 .4)} Face 27890 11038 11039 17707 {rgb=(.6 .4 .4)} Face 27891 11039 11044 17707 {rgb=(.6 .4 .4)} Face 27892 11044 11041 17707 {rgb=(.6 .4 .4)} Face 27893 11038 11029 17708 {rgb=(.6 .4 .4)} Face 27894 11029 11028 17708 {rgb=(.6 .4 .4)} Face 27895 11028 11039 17708 {rgb=(.6 .4 .4)} Face 27896 11039 11038 17708 {rgb=(.6 .4 .4)} Face 27897 11029 10883 17709 {rgb=(.6 .4 .4)} Face 27898 10883 10875 17709 {rgb=(.6 .4 .4)} Face 27899 10875 11028 17709 {rgb=(.6 .4 .4)} Face 27900 11028 11029 17709 {rgb=(.6 .4 .4)} Face 27901 10269 10296 17710 {rgb=(.6 .4 .4)} Face 27902 10296 10211 17710 {rgb=(.6 .4 .4)} Face 27903 10211 10196 17710 {rgb=(.6 .4 .4)} Face 27904 10196 10269 17710 {rgb=(.6 .4 .4)} Face 27905 10784 10696 17711 {rgb=(.6 .4 .4)} Face 27906 10696 10790 17711 {rgb=(.6 .4 .4)} Face 27907 10790 10861 17711 {rgb=(.6 .4 .4)} Face 27908 10861 10784 17711 {rgb=(.6 .4 .4)} Face 27909 10834 10784 17712 {rgb=(.6 .4 .4)} Face 27910 10784 10861 17712 {rgb=(.6 .4 .4)} Face 27911 10861 10909 17712 {rgb=(.6 .4 .4)} Face 27912 10909 10834 17712 {rgb=(.6 .4 .4)} Face 27913 10652 10656 17713 {rgb=(.6 .4 .4)} Face 27914 10656 10778 17713 {rgb=(.6 .4 .4)} Face 27915 10778 10774 17713 {rgb=(.6 .4 .4)} Face 27916 10774 10652 17713 {rgb=(.6 .4 .4)} Face 27917 10664 10652 17714 {rgb=(.6 .4 .4)} Face 27918 10652 10774 17714 {rgb=(.6 .4 .4)} Face 27919 10774 10775 17714 {rgb=(.6 .4 .4)} Face 27920 10775 10664 17714 {rgb=(.6 .4 .4)} Face 27921 10696 10664 17715 {rgb=(.6 .4 .4)} Face 27922 10664 10775 17715 {rgb=(.6 .4 .4)} Face 27923 10775 10790 17715 {rgb=(.6 .4 .4)} Face 27924 10790 10696 17715 {rgb=(.6 .4 .4)} Face 27925 10078 10104 17716 {rgb=(.6 .4 .4)} Face 27926 10104 10057 17716 {rgb=(.6 .4 .4)} Face 27927 10057 10001 17716 {rgb=(.6 .4 .4)} Face 27928 10001 10078 17716 {rgb=(.6 .4 .4)} Face 27929 10099 10078 17717 {rgb=(.6 .4 .4)} Face 27930 10078 10001 17717 {rgb=(.6 .4 .4)} Face 27931 10001 10069 17717 {rgb=(.6 .4 .4)} Face 27932 10069 10099 17717 {rgb=(.6 .4 .4)} Face 27933 10227 10189 17718 {rgb=(.6 .4 .4)} Face 27934 10189 10173 17718 {rgb=(.6 .4 .4)} Face 27935 10173 10195 17718 {rgb=(.6 .4 .4)} Face 27936 10195 10227 17718 {rgb=(.6 .4 .4)} Face 27937 10188 10265 17719 {rgb=(.6 .4 .4)} Face 27938 10265 10283 17719 {rgb=(.6 .4 .4)} Face 27939 10283 10180 17719 {rgb=(.6 .4 .4)} Face 27940 10180 10188 17719 {rgb=(.6 .4 .4)} Face 27941 10956 10935 17720 {rgb=(.6 .4 .4)} Face 27942 10935 11014 17720 {rgb=(.6 .4 .4)} Face 27943 11014 11001 17720 {rgb=(.6 .4 .4)} Face 27944 11001 10956 17720 {rgb=(.6 .4 .4)} Face 27945 10956 10912 17721 {rgb=(.6 .4 .4)} Face 27946 10912 10868 17721 {rgb=(.6 .4 .4)} Face 27947 10868 10935 17721 {rgb=(.6 .4 .4)} Face 27948 10935 10956 17721 {rgb=(.6 .4 .4)} Face 27949 10884 10971 17722 {rgb=(.6 .4 .4)} Face 27950 10971 11018 17722 {rgb=(.6 .4 .4)} Face 27951 11018 10904 17722 {rgb=(.6 .4 .4)} Face 27952 10904 10884 17722 {rgb=(.6 .4 .4)} Face 27953 10733 10884 17723 {rgb=(.6 .4 .4)} Face 27954 10884 10904 17723 {rgb=(.6 .4 .4)} Face 27955 10904 10823 17723 {rgb=(.6 .4 .4)} Face 27956 10823 10733 17723 {rgb=(.6 .4 .4)} Face 27957 10954 10874 17724 {rgb=(.6 .4 .4)} Face 27958 10874 10848 17724 {rgb=(.6 .4 .4)} Face 27959 10848 10948 17724 {rgb=(.6 .4 .4)} Face 27960 10948 10954 17724 {rgb=(.6 .4 .4)} Face 27961 10957 10946 17725 {rgb=(.6 .4 .4)} Face 27962 10946 10918 17725 {rgb=(.6 .4 .4)} Face 27963 10918 10965 17725 {rgb=(.6 .4 .4)} Face 27964 10965 10957 17725 {rgb=(.6 .4 .4)} Face 27965 10992 10985 17726 {rgb=(.6 .4 .4)} Face 27966 10985 10957 17726 {rgb=(.6 .4 .4)} Face 27967 10957 10965 17726 {rgb=(.6 .4 .4)} Face 27968 10965 10992 17726 {rgb=(.6 .4 .4)} Face 27969 10781 10801 17727 {rgb=(.6 .4 .4)} Face 27970 10801 10761 17727 {rgb=(.6 .4 .4)} Face 27971 10761 10732 17727 {rgb=(.6 .4 .4)} Face 27972 10732 10781 17727 {rgb=(.6 .4 .4)} Face 27973 10801 10733 17728 {rgb=(.6 .4 .4)} Face 27974 10733 10686 17728 {rgb=(.6 .4 .4)} Face 27975 10686 10761 17728 {rgb=(.6 .4 .4)} Face 27976 10761 10801 17728 {rgb=(.6 .4 .4)} Face 27977 10733 10472 17729 {rgb=(.6 .4 .4)} Face 27978 10472 10447 17729 {rgb=(.6 .4 .4)} Face 27979 10447 10686 17729 {rgb=(.6 .4 .4)} Face 27980 10686 10733 17729 {rgb=(.6 .4 .4)} Face 27981 10472 10265 17730 {rgb=(.6 .4 .4)} Face 27982 10265 10292 17730 {rgb=(.6 .4 .4)} Face 27983 10292 10447 17730 {rgb=(.6 .4 .4)} Face 27984 10447 10472 17730 {rgb=(.6 .4 .4)} Face 27985 10265 10227 17731 {rgb=(.6 .4 .4)} Face 27986 10227 10246 17731 {rgb=(.6 .4 .4)} Face 27987 10246 10292 17731 {rgb=(.6 .4 .4)} Face 27988 10292 10265 17731 {rgb=(.6 .4 .4)} Face 27989 10229 10246 17732 {rgb=(.6 .4 .4)} Face 27990 10246 10227 17732 {rgb=(.6 .4 .4)} Face 27991 10227 10195 17732 {rgb=(.6 .4 .4)} Face 27992 10195 10229 17732 {rgb=(.6 .4 .4)} Face 27993 11019 11001 17733 {rgb=(.6 .4 .4)} Face 27994 11001 11017 17733 {rgb=(.6 .4 .4)} Face 27995 11017 10996 17733 {rgb=(.6 .4 .4)} Face 27996 10996 11019 17733 {rgb=(.6 .4 .4)} Face 27997 10988 10999 17734 {rgb=(.6 .4 .4)} Face 27998 10999 10996 17734 {rgb=(.6 .4 .4)} Face 27999 10996 11017 17734 {rgb=(.6 .4 .4)} Face 28000 11017 10988 17734 {rgb=(.6 .4 .4)} Face 28001 10307 10284 17735 {rgb=(.6 .4 .4)} Face 28002 10284 10581 17735 {rgb=(.6 .4 .4)} Face 28003 10581 10495 17735 {rgb=(.6 .4 .4)} Face 28004 10495 10307 17735 {rgb=(.6 .4 .4)} Face 28005 10017 9924 17736 {rgb=(.6 .4 .4)} Face 28006 9924 9974 17736 {rgb=(.6 .4 .4)} Face 28007 9974 10052 17736 {rgb=(.6 .4 .4)} Face 28008 10052 10017 17736 {rgb=(.6 .4 .4)} Face 28009 10125 10017 17737 {rgb=(.6 .4 .4)} Face 28010 10017 10052 17737 {rgb=(.6 .4 .4)} Face 28011 10052 10129 17737 {rgb=(.6 .4 .4)} Face 28012 10129 10125 17737 {rgb=(.6 .4 .4)} Face 28013 11038 11031 17738 {rgb=(.6 .4 .4)} Face 28014 11031 11008 17738 {rgb=(.6 .4 .4)} Face 28015 11008 11029 17738 {rgb=(.6 .4 .4)} Face 28016 11029 11038 17738 {rgb=(.6 .4 .4)} Face 28017 10495 10581 17739 {rgb=(.6 .4 .4)} Face 28018 10581 10891 17739 {rgb=(.6 .4 .4)} Face 28019 10891 10868 17739 {rgb=(.6 .4 .4)} Face 28020 10868 10495 17739 {rgb=(.6 .4 .4)} Face 28021 10371 10338 17740 {rgb=(.6 .4 .4)} Face 28022 10338 10307 17740 {rgb=(.6 .4 .4)} Face 28023 10307 10495 17740 {rgb=(.6 .4 .4)} Face 28024 10495 10371 17740 {rgb=(.6 .4 .4)} Face 28025 10069 10174 17741 {rgb=(.6 .4 .4)} Face 28026 10174 10179 17741 {rgb=(.6 .4 .4)} Face 28027 10179 10099 17741 {rgb=(.6 .4 .4)} Face 28028 10099 10069 17741 {rgb=(.6 .4 .4)} Face 28029 10868 10891 17742 {rgb=(.6 .4 .4)} Face 28030 10891 11008 17742 {rgb=(.6 .4 .4)} Face 28031 11008 10935 17742 {rgb=(.6 .4 .4)} Face 28032 10935 10868 17742 {rgb=(.6 .4 .4)} Face 28033 10764 10641 17743 {rgb=(.6 .4 .4)} Face 28034 10641 10785 17743 {rgb=(.6 .4 .4)} Face 28035 10785 10796 17743 {rgb=(.6 .4 .4)} Face 28036 10796 10764 17743 {rgb=(.6 .4 .4)} Face 28037 10924 10855 17744 {rgb=(.6 .4 .4)} Face 28038 10855 10857 17744 {rgb=(.6 .4 .4)} Face 28039 10857 10922 17744 {rgb=(.6 .4 .4)} Face 28040 10922 10924 17744 {rgb=(.6 .4 .4)} Face 28041 10855 10693 17745 {rgb=(.6 .4 .4)} Face 28042 10693 10756 17745 {rgb=(.6 .4 .4)} Face 28043 10756 10857 17745 {rgb=(.6 .4 .4)} Face 28044 10857 10855 17745 {rgb=(.6 .4 .4)} Face 28045 10693 10625 17746 {rgb=(.6 .4 .4)} Face 28046 10625 10701 17746 {rgb=(.6 .4 .4)} Face 28047 10701 10756 17746 {rgb=(.6 .4 .4)} Face 28048 10756 10693 17746 {rgb=(.6 .4 .4)} Face 28049 10625 10614 17747 {rgb=(.6 .4 .4)} Face 28050 10614 10681 17747 {rgb=(.6 .4 .4)} Face 28051 10681 10701 17747 {rgb=(.6 .4 .4)} Face 28052 10701 10625 17747 {rgb=(.6 .4 .4)} Face 28053 10614 10641 17748 {rgb=(.6 .4 .4)} Face 28054 10641 10640 17748 {rgb=(.6 .4 .4)} Face 28055 10640 10681 17748 {rgb=(.6 .4 .4)} Face 28056 10681 10614 17748 {rgb=(.6 .4 .4)} Face 28057 10641 10698 17749 {rgb=(.6 .4 .4)} Face 28058 10698 10585 17749 {rgb=(.6 .4 .4)} Face 28059 10585 10640 17749 {rgb=(.6 .4 .4)} Face 28060 10640 10641 17749 {rgb=(.6 .4 .4)} Face 28061 10698 10587 17750 {rgb=(.6 .4 .4)} Face 28062 10587 10592 17750 {rgb=(.6 .4 .4)} Face 28063 10592 10585 17750 {rgb=(.6 .4 .4)} Face 28064 10585 10698 17750 {rgb=(.6 .4 .4)} Face 28065 10587 10532 17751 {rgb=(.6 .4 .4)} Face 28066 10532 10550 17751 {rgb=(.6 .4 .4)} Face 28067 10550 10592 17751 {rgb=(.6 .4 .4)} Face 28068 10592 10587 17751 {rgb=(.6 .4 .4)} Face 28069 10532 10597 17752 {rgb=(.6 .4 .4)} Face 28070 10597 10624 17752 {rgb=(.6 .4 .4)} Face 28071 10624 10550 17752 {rgb=(.6 .4 .4)} Face 28072 10550 10532 17752 {rgb=(.6 .4 .4)} Face 28073 10597 10882 17753 {rgb=(.6 .4 .4)} Face 28074 10882 10885 17753 {rgb=(.6 .4 .4)} Face 28075 10885 10624 17753 {rgb=(.6 .4 .4)} Face 28076 10624 10597 17753 {rgb=(.6 .4 .4)} Face 28077 10882 10955 17754 {rgb=(.6 .4 .4)} Face 28078 10955 10953 17754 {rgb=(.6 .4 .4)} Face 28079 10953 10885 17754 {rgb=(.6 .4 .4)} Face 28080 10885 10882 17754 {rgb=(.6 .4 .4)} Face 28081 10955 10991 17755 {rgb=(.6 .4 .4)} Face 28082 10991 10987 17755 {rgb=(.6 .4 .4)} Face 28083 10987 10953 17755 {rgb=(.6 .4 .4)} Face 28084 10953 10955 17755 {rgb=(.6 .4 .4)} Face 28085 10991 11016 17756 {rgb=(.6 .4 .4)} Face 28086 11016 11010 17756 {rgb=(.6 .4 .4)} Face 28087 11010 10987 17756 {rgb=(.6 .4 .4)} Face 28088 10987 10991 17756 {rgb=(.6 .4 .4)} Face 28089 11016 11027 17757 {rgb=(.6 .4 .4)} Face 28090 11027 11024 17757 {rgb=(.6 .4 .4)} Face 28091 11024 11010 17757 {rgb=(.6 .4 .4)} Face 28092 11010 11016 17757 {rgb=(.6 .4 .4)} Face 28093 11027 11020 17758 {rgb=(.6 .4 .4)} Face 28094 11020 11013 17758 {rgb=(.6 .4 .4)} Face 28095 11013 11024 17758 {rgb=(.6 .4 .4)} Face 28096 11024 11027 17758 {rgb=(.6 .4 .4)} Face 28097 11020 11004 17759 {rgb=(.6 .4 .4)} Face 28098 11004 10995 17759 {rgb=(.6 .4 .4)} Face 28099 10995 11013 17759 {rgb=(.6 .4 .4)} Face 28100 11013 11020 17759 {rgb=(.6 .4 .4)} Face 28101 11004 10974 17760 {rgb=(.6 .4 .4)} Face 28102 10974 10968 17760 {rgb=(.6 .4 .4)} Face 28103 10968 10995 17760 {rgb=(.6 .4 .4)} Face 28104 10995 11004 17760 {rgb=(.6 .4 .4)} Face 28105 10974 10924 17761 {rgb=(.6 .4 .4)} Face 28106 10924 10922 17761 {rgb=(.6 .4 .4)} Face 28107 10922 10968 17761 {rgb=(.6 .4 .4)} Face 28108 10968 10974 17761 {rgb=(.6 .4 .4)} Face 28109 10531 10532 17762 {rgb=(.6 .4 .4)} Face 28110 10532 10587 17762 {rgb=(.6 .4 .4)} Face 28111 10587 10678 17762 {rgb=(.6 .4 .4)} Face 28112 10678 10531 17762 {rgb=(.6 .4 .4)} Face 28113 10940 10961 17763 {rgb=(.6 .4 .4)} Face 28114 10961 10942 17763 {rgb=(.6 .4 .4)} Face 28115 10942 10900 17763 {rgb=(.6 .4 .4)} Face 28116 10900 10940 17763 {rgb=(.6 .4 .4)} Face 28117 10895 10940 17764 {rgb=(.6 .4 .4)} Face 28118 10940 10900 17764 {rgb=(.6 .4 .4)} Face 28119 10900 10846 17764 {rgb=(.6 .4 .4)} Face 28120 10846 10895 17764 {rgb=(.6 .4 .4)} Face 28121 10903 10983 17765 {rgb=(.6 .4 .4)} Face 28122 10983 10955 17765 {rgb=(.6 .4 .4)} Face 28123 10955 10927 17765 {rgb=(.6 .4 .4)} Face 28124 10927 10903 17765 {rgb=(.6 .4 .4)} Face 28125 10882 10597 17766 {rgb=(.6 .4 .4)} Face 28126 10597 10661 17766 {rgb=(.6 .4 .4)} Face 28127 10661 10850 17766 {rgb=(.6 .4 .4)} Face 28128 10850 10882 17766 {rgb=(.6 .4 .4)} Face 28129 10798 10903 17767 {rgb=(.6 .4 .4)} Face 28130 10903 10927 17767 {rgb=(.6 .4 .4)} Face 28131 10927 10772 17767 {rgb=(.6 .4 .4)} Face 28132 10772 10798 17767 {rgb=(.6 .4 .4)} Face 28133 10772 10927 17768 {rgb=(.6 .4 .4)} Face 28134 10927 10850 17768 {rgb=(.6 .4 .4)} Face 28135 10850 10689 17768 {rgb=(.6 .4 .4)} Face 28136 10689 10772 17768 {rgb=(.6 .4 .4)} Face 28137 10322 10661 17769 {rgb=(.6 .4 .4)} Face 28138 10661 10531 17769 {rgb=(.6 .4 .4)} Face 28139 10531 10300 17769 {rgb=(.6 .4 .4)} Face 28140 10300 10322 17769 {rgb=(.6 .4 .4)} Face 28141 10300 10531 17770 {rgb=(.6 .4 .4)} Face 28142 10531 10508 17770 {rgb=(.6 .4 .4)} Face 28143 10508 10419 17770 {rgb=(.6 .4 .4)} Face 28144 10419 10300 17770 {rgb=(.6 .4 .4)} Face 28145 10661 10322 17771 {rgb=(.6 .4 .4)} Face 28146 10322 10519 17771 {rgb=(.6 .4 .4)} Face 28147 10519 10850 17771 {rgb=(.6 .4 .4)} Face 28148 10850 10661 17771 {rgb=(.6 .4 .4)} Face 28149 10889 10798 17772 {rgb=(.6 .4 .4)} Face 28150 10798 10636 17772 {rgb=(.6 .4 .4)} Face 28151 10636 10734 17772 {rgb=(.6 .4 .4)} Face 28152 10734 10889 17772 {rgb=(.6 .4 .4)} Face 28153 10695 10648 17773 {rgb=(.6 .4 .4)} Face 28154 10648 10508 17773 {rgb=(.6 .4 .4)} Face 28155 10508 10712 17773 {rgb=(.6 .4 .4)} Face 28156 10712 10695 17773 {rgb=(.6 .4 .4)} Face 28157 10508 10531 17774 {rgb=(.6 .4 .4)} Face 28158 10531 10678 17774 {rgb=(.6 .4 .4)} Face 28159 10678 10712 17774 {rgb=(.6 .4 .4)} Face 28160 10712 10508 17774 {rgb=(.6 .4 .4)} Face 28161 10698 10764 17775 {rgb=(.6 .4 .4)} Face 28162 10764 10678 17775 {rgb=(.6 .4 .4)} Face 28163 10678 10587 17775 {rgb=(.6 .4 .4)} Face 28164 10587 10698 17775 {rgb=(.6 .4 .4)} Face 28165 10777 10711 17776 {rgb=(.6 .4 .4)} Face 28166 10711 10747 17776 {rgb=(.6 .4 .4)} Face 28167 10747 10695 17776 {rgb=(.6 .4 .4)} Face 28168 10695 10777 17776 {rgb=(.6 .4 .4)} Face 28169 10799 10777 17777 {rgb=(.6 .4 .4)} Face 28170 10777 10695 17777 {rgb=(.6 .4 .4)} Face 28171 10695 10712 17777 {rgb=(.6 .4 .4)} Face 28172 10712 10799 17777 {rgb=(.6 .4 .4)} Face 28173 10764 10799 17778 {rgb=(.6 .4 .4)} Face 28174 10799 10712 17778 {rgb=(.6 .4 .4)} Face 28175 10712 10678 17778 {rgb=(.6 .4 .4)} Face 28176 10678 10764 17778 {rgb=(.6 .4 .4)} Face 28177 10796 10829 17779 {rgb=(.6 .4 .4)} Face 28178 10829 10799 17779 {rgb=(.6 .4 .4)} Face 28179 10799 10764 17779 {rgb=(.6 .4 .4)} Face 28180 10764 10796 17779 {rgb=(.6 .4 .4)} Face 28181 10693 10855 17780 {rgb=(.6 .4 .4)} Face 28182 10855 10895 17780 {rgb=(.6 .4 .4)} Face 28183 10895 10745 17780 {rgb=(.6 .4 .4)} Face 28184 10745 10693 17780 {rgb=(.6 .4 .4)} Face 28185 10625 10693 17781 {rgb=(.6 .4 .4)} Face 28186 10693 10745 17781 {rgb=(.6 .4 .4)} Face 28187 10745 10722 17781 {rgb=(.6 .4 .4)} Face 28188 10722 10625 17781 {rgb=(.6 .4 .4)} Face 28189 10614 10625 17782 {rgb=(.6 .4 .4)} Face 28190 10625 10722 17782 {rgb=(.6 .4 .4)} Face 28191 10722 10719 17782 {rgb=(.6 .4 .4)} Face 28192 10719 10614 17782 {rgb=(.6 .4 .4)} Face 28193 10641 10614 17783 {rgb=(.6 .4 .4)} Face 28194 10614 10719 17783 {rgb=(.6 .4 .4)} Face 28195 10719 10785 17783 {rgb=(.6 .4 .4)} Face 28196 10785 10641 17783 {rgb=(.6 .4 .4)} Face 28197 10983 11007 17784 {rgb=(.6 .4 .4)} Face 28198 11007 10991 17784 {rgb=(.6 .4 .4)} Face 28199 10991 10955 17784 {rgb=(.6 .4 .4)} Face 28200 10955 10983 17784 {rgb=(.6 .4 .4)} Face 28201 11007 11022 17785 {rgb=(.6 .4 .4)} Face 28202 11022 11016 17785 {rgb=(.6 .4 .4)} Face 28203 11016 10991 17785 {rgb=(.6 .4 .4)} Face 28204 10991 11007 17785 {rgb=(.6 .4 .4)} Face 28205 11022 10998 17786 {rgb=(.6 .4 .4)} Face 28206 10998 11027 17786 {rgb=(.6 .4 .4)} Face 28207 11027 11016 17786 {rgb=(.6 .4 .4)} Face 28208 11016 11022 17786 {rgb=(.6 .4 .4)} Face 28209 10998 10990 17787 {rgb=(.6 .4 .4)} Face 28210 10990 11020 17787 {rgb=(.6 .4 .4)} Face 28211 11020 11027 17787 {rgb=(.6 .4 .4)} Face 28212 11027 10998 17787 {rgb=(.6 .4 .4)} Face 28213 10990 10986 17788 {rgb=(.6 .4 .4)} Face 28214 10986 11004 17788 {rgb=(.6 .4 .4)} Face 28215 11004 11020 17788 {rgb=(.6 .4 .4)} Face 28216 11020 10990 17788 {rgb=(.6 .4 .4)} Face 28217 10986 10961 17789 {rgb=(.6 .4 .4)} Face 28218 10961 10974 17789 {rgb=(.6 .4 .4)} Face 28219 10974 11004 17789 {rgb=(.6 .4 .4)} Face 28220 11004 10986 17789 {rgb=(.6 .4 .4)} Face 28221 10924 10974 17790 {rgb=(.6 .4 .4)} Face 28222 10974 10961 17790 {rgb=(.6 .4 .4)} Face 28223 10961 10940 17790 {rgb=(.6 .4 .4)} Face 28224 10940 10924 17790 {rgb=(.6 .4 .4)} Face 28225 10895 10855 17791 {rgb=(.6 .4 .4)} Face 28226 10855 10924 17791 {rgb=(.6 .4 .4)} Face 28227 10924 10940 17791 {rgb=(.6 .4 .4)} Face 28228 10940 10895 17791 {rgb=(.6 .4 .4)} Face 28229 10745 10895 17792 {rgb=(.6 .4 .4)} Face 28230 10895 10846 17792 {rgb=(.6 .4 .4)} Face 28231 10846 10757 17792 {rgb=(.6 .4 .4)} Face 28232 10757 10745 17792 {rgb=(.6 .4 .4)} Face 28233 10722 10745 17793 {rgb=(.6 .4 .4)} Face 28234 10745 10757 17793 {rgb=(.6 .4 .4)} Face 28235 10757 10768 17793 {rgb=(.6 .4 .4)} Face 28236 10768 10722 17793 {rgb=(.6 .4 .4)} Face 28237 10719 10722 17794 {rgb=(.6 .4 .4)} Face 28238 10722 10768 17794 {rgb=(.6 .4 .4)} Face 28239 10768 10817 17794 {rgb=(.6 .4 .4)} Face 28240 10817 10719 17794 {rgb=(.6 .4 .4)} Face 28241 10785 10719 17795 {rgb=(.6 .4 .4)} Face 28242 10719 10817 17795 {rgb=(.6 .4 .4)} Face 28243 10817 10818 17795 {rgb=(.6 .4 .4)} Face 28244 10818 10785 17795 {rgb=(.6 .4 .4)} Face 28245 10796 10785 17796 {rgb=(.6 .4 .4)} Face 28246 10785 10818 17796 {rgb=(.6 .4 .4)} Face 28247 10818 10821 17796 {rgb=(.6 .4 .4)} Face 28248 10821 10796 17796 {rgb=(.6 .4 .4)} Face 28249 10829 10796 17797 {rgb=(.6 .4 .4)} Face 28250 10796 10821 17797 {rgb=(.6 .4 .4)} Face 28251 10821 10835 17797 {rgb=(.6 .4 .4)} Face 28252 10835 10829 17797 {rgb=(.6 .4 .4)} Face 28253 10777 10829 17798 {rgb=(.6 .4 .4)} Face 28254 10829 10835 17798 {rgb=(.6 .4 .4)} Face 28255 10835 10773 17798 {rgb=(.6 .4 .4)} Face 28256 10773 10777 17798 {rgb=(.6 .4 .4)} Face 28257 10925 10889 17799 {rgb=(.6 .4 .4)} Face 28258 10889 10734 17799 {rgb=(.6 .4 .4)} Face 28259 10734 10813 17799 {rgb=(.6 .4 .4)} Face 28260 10813 10925 17799 {rgb=(.6 .4 .4)} Face 28261 10963 10903 17800 {rgb=(.6 .4 .4)} Face 28262 10903 10889 17800 {rgb=(.6 .4 .4)} Face 28263 10889 10925 17800 {rgb=(.6 .4 .4)} Face 28264 10925 10963 17800 {rgb=(.6 .4 .4)} Face 28265 11000 10983 17801 {rgb=(.6 .4 .4)} Face 28266 10983 10903 17801 {rgb=(.6 .4 .4)} Face 28267 10903 10963 17801 {rgb=(.6 .4 .4)} Face 28268 10963 11000 17801 {rgb=(.6 .4 .4)} Face 28269 10568 10584 17802 {rgb=(.6 .4 .4)} Face 28270 10584 10666 17802 {rgb=(.6 .4 .4)} Face 28271 10666 10748 17802 {rgb=(.6 .4 .4)} Face 28272 10748 10568 17802 {rgb=(.6 .4 .4)} Face 28273 10677 10568 17803 {rgb=(.6 .4 .4)} Face 28274 10568 10748 17803 {rgb=(.6 .4 .4)} Face 28275 10748 10815 17803 {rgb=(.6 .4 .4)} Face 28276 10815 10677 17803 {rgb=(.6 .4 .4)} Face 28277 10584 10668 17804 {rgb=(.6 .4 .4)} Face 28278 10668 10690 17804 {rgb=(.6 .4 .4)} Face 28279 10690 10666 17804 {rgb=(.6 .4 .4)} Face 28280 10666 10584 17804 {rgb=(.6 .4 .4)} Face 28281 10837 10715 17805 {rgb=(.6 .4 .4)} Face 28282 10715 10677 17805 {rgb=(.6 .4 .4)} Face 28283 10677 10815 17805 {rgb=(.6 .4 .4)} Face 28284 10815 10837 17805 {rgb=(.6 .4 .4)} Face 28285 10536 10647 17806 {rgb=(.6 .4 .4)} Face 28286 10647 10668 17806 {rgb=(.6 .4 .4)} Face 28287 10668 10584 17806 {rgb=(.6 .4 .4)} Face 28288 10584 10536 17806 {rgb=(.6 .4 .4)} Face 28289 10468 10536 17807 {rgb=(.6 .4 .4)} Face 28290 10536 10584 17807 {rgb=(.6 .4 .4)} Face 28291 10584 10568 17807 {rgb=(.6 .4 .4)} Face 28292 10568 10468 17807 {rgb=(.6 .4 .4)} Face 28293 10474 10468 17808 {rgb=(.6 .4 .4)} Face 28294 10468 10568 17808 {rgb=(.6 .4 .4)} Face 28295 10568 10677 17808 {rgb=(.6 .4 .4)} Face 28296 10677 10474 17808 {rgb=(.6 .4 .4)} Face 28297 10533 10474 17809 {rgb=(.6 .4 .4)} Face 28298 10474 10677 17809 {rgb=(.6 .4 .4)} Face 28299 10677 10715 17809 {rgb=(.6 .4 .4)} Face 28300 10715 10533 17809 {rgb=(.6 .4 .4)} Face 28301 10394 10407 17810 {rgb=(.6 .4 .4)} Face 28302 10407 10468 17810 {rgb=(.6 .4 .4)} Face 28303 10468 10474 17810 {rgb=(.6 .4 .4)} Face 28304 10474 10394 17810 {rgb=(.6 .4 .4)} Face 28305 10427 10394 17811 {rgb=(.6 .4 .4)} Face 28306 10394 10474 17811 {rgb=(.6 .4 .4)} Face 28307 10474 10533 17811 {rgb=(.6 .4 .4)} Face 28308 10533 10427 17811 {rgb=(.6 .4 .4)} Face 28309 10528 10649 17812 {rgb=(.6 .4 .4)} Face 28310 10649 10647 17812 {rgb=(.6 .4 .4)} Face 28311 10647 10536 17812 {rgb=(.6 .4 .4)} Face 28312 10536 10528 17812 {rgb=(.6 .4 .4)} Face 28313 10407 10528 17813 {rgb=(.6 .4 .4)} Face 28314 10528 10536 17813 {rgb=(.6 .4 .4)} Face 28315 10536 10468 17813 {rgb=(.6 .4 .4)} Face 28316 10468 10407 17813 {rgb=(.6 .4 .4)} Face 28317 10503 10604 17814 {rgb=(.6 .4 .4)} Face 28318 10604 10649 17814 {rgb=(.6 .4 .4)} Face 28319 10649 10528 17814 {rgb=(.6 .4 .4)} Face 28320 10528 10503 17814 {rgb=(.6 .4 .4)} Face 28321 10375 10503 17815 {rgb=(.6 .4 .4)} Face 28322 10503 10528 17815 {rgb=(.6 .4 .4)} Face 28323 10528 10407 17815 {rgb=(.6 .4 .4)} Face 28324 10407 10375 17815 {rgb=(.6 .4 .4)} Face 28325 10332 10375 17816 {rgb=(.6 .4 .4)} Face 28326 10375 10407 17816 {rgb=(.6 .4 .4)} Face 28327 10407 10394 17816 {rgb=(.6 .4 .4)} Face 28328 10394 10332 17816 {rgb=(.6 .4 .4)} Face 28329 10340 10332 17817 {rgb=(.6 .4 .4)} Face 28330 10332 10394 17817 {rgb=(.6 .4 .4)} Face 28331 10394 10427 17817 {rgb=(.6 .4 .4)} Face 28332 10427 10340 17817 {rgb=(.6 .4 .4)} Face 28333 10368 10482 17818 {rgb=(.6 .4 .4)} Face 28334 10482 10503 17818 {rgb=(.6 .4 .4)} Face 28335 10503 10375 17818 {rgb=(.6 .4 .4)} Face 28336 10375 10368 17818 {rgb=(.6 .4 .4)} Face 28337 10314 10368 17819 {rgb=(.6 .4 .4)} Face 28338 10368 10375 17819 {rgb=(.6 .4 .4)} Face 28339 10375 10332 17819 {rgb=(.6 .4 .4)} Face 28340 10332 10314 17819 {rgb=(.6 .4 .4)} Face 28341 10305 10314 17820 {rgb=(.6 .4 .4)} Face 28342 10314 10332 17820 {rgb=(.6 .4 .4)} Face 28343 10332 10340 17820 {rgb=(.6 .4 .4)} Face 28344 10340 10305 17820 {rgb=(.6 .4 .4)} Face 28345 10482 10576 17821 {rgb=(.6 .4 .4)} Face 28346 10576 10604 17821 {rgb=(.6 .4 .4)} Face 28347 10604 10503 17821 {rgb=(.6 .4 .4)} Face 28348 10503 10482 17821 {rgb=(.6 .4 .4)} Face 28349 10399 10404 17822 {rgb=(.6 .4 .4)} Face 28350 10404 10314 17822 {rgb=(.6 .4 .4)} Face 28351 10314 10305 17822 {rgb=(.6 .4 .4)} Face 28352 10305 10399 17822 {rgb=(.6 .4 .4)} Face 28353 10527 10617 17823 {rgb=(.6 .4 .4)} Face 28354 10617 10576 17823 {rgb=(.6 .4 .4)} Face 28355 10576 10482 17823 {rgb=(.6 .4 .4)} Face 28356 10482 10527 17823 {rgb=(.6 .4 .4)} Face 28357 10464 10527 17824 {rgb=(.6 .4 .4)} Face 28358 10527 10482 17824 {rgb=(.6 .4 .4)} Face 28359 10482 10368 17824 {rgb=(.6 .4 .4)} Face 28360 10368 10464 17824 {rgb=(.6 .4 .4)} Face 28361 10404 10464 17825 {rgb=(.6 .4 .4)} Face 28362 10464 10368 17825 {rgb=(.6 .4 .4)} Face 28363 10368 10314 17825 {rgb=(.6 .4 .4)} Face 28364 10314 10404 17825 {rgb=(.6 .4 .4)} Face 28365 10645 10630 17826 {rgb=(.6 .4 .4)} Face 28366 10630 10617 17826 {rgb=(.6 .4 .4)} Face 28367 10617 10527 17826 {rgb=(.6 .4 .4)} Face 28368 10527 10645 17826 {rgb=(.6 .4 .4)} Face 28369 10623 10645 17827 {rgb=(.6 .4 .4)} Face 28370 10645 10527 17827 {rgb=(.6 .4 .4)} Face 28371 10527 10464 17827 {rgb=(.6 .4 .4)} Face 28372 10464 10623 17827 {rgb=(.6 .4 .4)} Face 28373 10639 10623 17828 {rgb=(.6 .4 .4)} Face 28374 10623 10464 17828 {rgb=(.6 .4 .4)} Face 28375 10464 10404 17828 {rgb=(.6 .4 .4)} Face 28376 10404 10639 17828 {rgb=(.6 .4 .4)} Face 28377 10602 10639 17829 {rgb=(.6 .4 .4)} Face 28378 10639 10404 17829 {rgb=(.6 .4 .4)} Face 28379 10404 10399 17829 {rgb=(.6 .4 .4)} Face 28380 10399 10602 17829 {rgb=(.6 .4 .4)} Face 28381 10763 10725 17830 {rgb=(.6 .4 .4)} Face 28382 10725 10623 17830 {rgb=(.6 .4 .4)} Face 28383 10623 10639 17830 {rgb=(.6 .4 .4)} Face 28384 10639 10763 17830 {rgb=(.6 .4 .4)} Face 28385 10760 10763 17831 {rgb=(.6 .4 .4)} Face 28386 10763 10639 17831 {rgb=(.6 .4 .4)} Face 28387 10639 10682 17831 {rgb=(.6 .4 .4)} Face 28388 10682 10760 17831 {rgb=(.6 .4 .4)} Face 28389 10735 10762 17832 {rgb=(.6 .4 .4)} Face 28390 10762 10630 17832 {rgb=(.6 .4 .4)} Face 28391 10630 10645 17832 {rgb=(.6 .4 .4)} Face 28392 10645 10735 17832 {rgb=(.6 .4 .4)} Face 28393 10725 10735 17833 {rgb=(.6 .4 .4)} Face 28394 10735 10645 17833 {rgb=(.6 .4 .4)} Face 28395 10645 10623 17833 {rgb=(.6 .4 .4)} Face 28396 10623 10725 17833 {rgb=(.6 .4 .4)} Face 28397 10760 10789 17834 {rgb=(.6 .4 .4)} Face 28398 10789 10794 17834 {rgb=(.6 .4 .4)} Face 28399 10794 10763 17834 {rgb=(.6 .4 .4)} Face 28400 10763 10760 17834 {rgb=(.6 .4 .4)} Face 28401 10725 10783 17835 {rgb=(.6 .4 .4)} Face 28402 10783 10786 17835 {rgb=(.6 .4 .4)} Face 28403 10786 10735 17835 {rgb=(.6 .4 .4)} Face 28404 10735 10725 17835 {rgb=(.6 .4 .4)} Face 28405 10786 10783 17836 {rgb=(.6 .4 .4)} Face 28406 10783 10808 17836 {rgb=(.6 .4 .4)} Face 28407 10808 10804 17836 {rgb=(.6 .4 .4)} Face 28408 10804 10786 17836 {rgb=(.6 .4 .4)} Face 28409 10602 10659 17837 {rgb=(.6 .4 .4)} Face 28410 10659 10682 17837 {rgb=(.6 .4 .4)} Face 28411 10682 10639 17837 {rgb=(.6 .4 .4)} Face 28412 10639 10602 17837 {rgb=(.6 .4 .4)} Face 28413 10789 10792 17838 {rgb=(.6 .4 .4)} Face 28414 10792 10811 17838 {rgb=(.6 .4 .4)} Face 28415 10811 10794 17838 {rgb=(.6 .4 .4)} Face 28416 10794 10789 17838 {rgb=(.6 .4 .4)} Face 28417 10824 10819 17839 {rgb=(.6 .4 .4)} Face 28418 10819 10804 17839 {rgb=(.6 .4 .4)} Face 28419 10804 10808 17839 {rgb=(.6 .4 .4)} Face 28420 10808 10824 17839 {rgb=(.6 .4 .4)} Face 28421 10824 10808 17840 {rgb=(.6 .4 .4)} Face 28422 10808 10794 17840 {rgb=(.6 .4 .4)} Face 28423 10794 10811 17840 {rgb=(.6 .4 .4)} Face 28424 10811 10824 17840 {rgb=(.6 .4 .4)} Face 28425 10808 10783 17841 {rgb=(.6 .4 .4)} Face 28426 10783 10763 17841 {rgb=(.6 .4 .4)} Face 28427 10763 10794 17841 {rgb=(.6 .4 .4)} Face 28428 10794 10808 17841 {rgb=(.6 .4 .4)} Face 28429 10718 10709 17842 {rgb=(.6 .4 .4)} Face 28430 10709 10666 17842 {rgb=(.6 .4 .4)} Face 28431 10666 10690 17842 {rgb=(.6 .4 .4)} Face 28432 10690 10718 17842 {rgb=(.6 .4 .4)} Face 28433 10863 10890 17843 {rgb=(.6 .4 .4)} Face 28434 10890 10837 17843 {rgb=(.6 .4 .4)} Face 28435 10837 10815 17843 {rgb=(.6 .4 .4)} Face 28436 10815 10863 17843 {rgb=(.6 .4 .4)} Face 28437 10816 10863 17844 {rgb=(.6 .4 .4)} Face 28438 10863 10815 17844 {rgb=(.6 .4 .4)} Face 28439 10815 10748 17844 {rgb=(.6 .4 .4)} Face 28440 10748 10816 17844 {rgb=(.6 .4 .4)} Face 28441 10709 10816 17845 {rgb=(.6 .4 .4)} Face 28442 10816 10748 17845 {rgb=(.6 .4 .4)} Face 28443 10748 10666 17845 {rgb=(.6 .4 .4)} Face 28444 10666 10709 17845 {rgb=(.6 .4 .4)} Face 28445 10897 10873 17846 {rgb=(.6 .4 .4)} Face 28446 10873 10826 17846 {rgb=(.6 .4 .4)} Face 28447 10826 10841 17846 {rgb=(.6 .4 .4)} Face 28448 10841 10897 17846 {rgb=(.6 .4 .4)} Face 28449 10890 10897 17847 {rgb=(.6 .4 .4)} Face 28450 10897 10841 17847 {rgb=(.6 .4 .4)} Face 28451 10841 10837 17847 {rgb=(.6 .4 .4)} Face 28452 10837 10890 17847 {rgb=(.6 .4 .4)} Face 28453 10694 10718 17848 {rgb=(.6 .4 .4)} Face 28454 10718 10690 17848 {rgb=(.6 .4 .4)} Face 28455 10690 10749 17848 {rgb=(.6 .4 .4)} Face 28456 10749 10694 17848 {rgb=(.6 .4 .4)} Face 28457 10782 10809 17849 {rgb=(.6 .4 .4)} Face 28458 10809 10793 17849 {rgb=(.6 .4 .4)} Face 28459 10793 10758 17849 {rgb=(.6 .4 .4)} Face 28460 10758 10782 17849 {rgb=(.6 .4 .4)} Face 28461 10809 10824 17850 {rgb=(.6 .4 .4)} Face 28462 10824 10811 17850 {rgb=(.6 .4 .4)} Face 28463 10811 10793 17850 {rgb=(.6 .4 .4)} Face 28464 10793 10809 17850 {rgb=(.6 .4 .4)} Face 28465 10819 10824 17851 {rgb=(.6 .4 .4)} Face 28466 10824 10809 17851 {rgb=(.6 .4 .4)} Face 28467 10809 10806 17851 {rgb=(.6 .4 .4)} Face 28468 10806 10819 17851 {rgb=(.6 .4 .4)} Face 28469 10792 10791 17852 {rgb=(.6 .4 .4)} Face 28470 10791 10793 17852 {rgb=(.6 .4 .4)} Face 28471 10793 10811 17852 {rgb=(.6 .4 .4)} Face 28472 10811 10792 17852 {rgb=(.6 .4 .4)} Face 28473 10659 10602 17853 {rgb=(.6 .4 .4)} Face 28474 10602 10637 17853 {rgb=(.6 .4 .4)} Face 28475 10637 10683 17853 {rgb=(.6 .4 .4)} Face 28476 10683 10659 17853 {rgb=(.6 .4 .4)} Face 28477 10782 10788 17854 {rgb=(.6 .4 .4)} Face 28478 10788 10806 17854 {rgb=(.6 .4 .4)} Face 28479 10806 10809 17854 {rgb=(.6 .4 .4)} Face 28480 10809 10782 17854 {rgb=(.6 .4 .4)} Face 28481 10782 10724 17855 {rgb=(.6 .4 .4)} Face 28482 10724 10736 17855 {rgb=(.6 .4 .4)} Face 28483 10736 10788 17855 {rgb=(.6 .4 .4)} Face 28484 10788 10782 17855 {rgb=(.6 .4 .4)} Face 28485 10791 10759 17856 {rgb=(.6 .4 .4)} Face 28486 10759 10758 17856 {rgb=(.6 .4 .4)} Face 28487 10758 10793 17856 {rgb=(.6 .4 .4)} Face 28488 10793 10791 17856 {rgb=(.6 .4 .4)} Face 28489 10736 10724 17857 {rgb=(.6 .4 .4)} Face 28490 10724 10622 17857 {rgb=(.6 .4 .4)} Face 28491 10622 10642 17857 {rgb=(.6 .4 .4)} Face 28492 10642 10736 17857 {rgb=(.6 .4 .4)} Face 28493 10762 10736 17858 {rgb=(.6 .4 .4)} Face 28494 10736 10642 17858 {rgb=(.6 .4 .4)} Face 28495 10642 10630 17858 {rgb=(.6 .4 .4)} Face 28496 10630 10762 17858 {rgb=(.6 .4 .4)} Face 28497 10758 10759 17859 {rgb=(.6 .4 .4)} Face 28498 10759 10683 17859 {rgb=(.6 .4 .4)} Face 28499 10683 10637 17859 {rgb=(.6 .4 .4)} Face 28500 10637 10758 17859 {rgb=(.6 .4 .4)} Face 28501 10724 10758 17860 {rgb=(.6 .4 .4)} Face 28502 10758 10637 17860 {rgb=(.6 .4 .4)} Face 28503 10637 10622 17860 {rgb=(.6 .4 .4)} Face 28504 10622 10724 17860 {rgb=(.6 .4 .4)} Face 28505 10637 10602 17861 {rgb=(.6 .4 .4)} Face 28506 10602 10399 17861 {rgb=(.6 .4 .4)} Face 28507 10399 10406 17861 {rgb=(.6 .4 .4)} Face 28508 10406 10637 17861 {rgb=(.6 .4 .4)} Face 28509 10622 10637 17862 {rgb=(.6 .4 .4)} Face 28510 10637 10406 17862 {rgb=(.6 .4 .4)} Face 28511 10406 10460 17862 {rgb=(.6 .4 .4)} Face 28512 10460 10622 17862 {rgb=(.6 .4 .4)} Face 28513 10642 10622 17863 {rgb=(.6 .4 .4)} Face 28514 10622 10460 17863 {rgb=(.6 .4 .4)} Face 28515 10460 10606 17863 {rgb=(.6 .4 .4)} Face 28516 10606 10642 17863 {rgb=(.6 .4 .4)} Face 28517 10630 10642 17864 {rgb=(.6 .4 .4)} Face 28518 10642 10606 17864 {rgb=(.6 .4 .4)} Face 28519 10606 10617 17864 {rgb=(.6 .4 .4)} Face 28520 10617 10630 17864 {rgb=(.6 .4 .4)} Face 28521 10460 10406 17865 {rgb=(.6 .4 .4)} Face 28522 10406 10317 17865 {rgb=(.6 .4 .4)} Face 28523 10317 10446 17865 {rgb=(.6 .4 .4)} Face 28524 10446 10460 17865 {rgb=(.6 .4 .4)} Face 28525 10606 10460 17866 {rgb=(.6 .4 .4)} Face 28526 10460 10446 17866 {rgb=(.6 .4 .4)} Face 28527 10446 10557 17866 {rgb=(.6 .4 .4)} Face 28528 10557 10606 17866 {rgb=(.6 .4 .4)} Face 28529 10617 10606 17867 {rgb=(.6 .4 .4)} Face 28530 10606 10557 17867 {rgb=(.6 .4 .4)} Face 28531 10557 10576 17867 {rgb=(.6 .4 .4)} Face 28532 10576 10617 17867 {rgb=(.6 .4 .4)} Face 28533 10406 10399 17868 {rgb=(.6 .4 .4)} Face 28534 10399 10305 17868 {rgb=(.6 .4 .4)} Face 28535 10305 10317 17868 {rgb=(.6 .4 .4)} Face 28536 10317 10406 17868 {rgb=(.6 .4 .4)} Face 28537 10576 10557 17869 {rgb=(.6 .4 .4)} Face 28538 10557 10589 17869 {rgb=(.6 .4 .4)} Face 28539 10589 10604 17869 {rgb=(.6 .4 .4)} Face 28540 10604 10576 17869 {rgb=(.6 .4 .4)} Face 28541 10317 10305 17870 {rgb=(.6 .4 .4)} Face 28542 10305 10340 17870 {rgb=(.6 .4 .4)} Face 28543 10340 10367 17870 {rgb=(.6 .4 .4)} Face 28544 10367 10317 17870 {rgb=(.6 .4 .4)} Face 28545 10446 10317 17871 {rgb=(.6 .4 .4)} Face 28546 10317 10367 17871 {rgb=(.6 .4 .4)} Face 28547 10367 10455 17871 {rgb=(.6 .4 .4)} Face 28548 10455 10446 17871 {rgb=(.6 .4 .4)} Face 28549 10557 10446 17872 {rgb=(.6 .4 .4)} Face 28550 10446 10455 17872 {rgb=(.6 .4 .4)} Face 28551 10455 10589 17872 {rgb=(.6 .4 .4)} Face 28552 10589 10557 17872 {rgb=(.6 .4 .4)} Face 28553 10367 10340 17873 {rgb=(.6 .4 .4)} Face 28554 10340 10427 17873 {rgb=(.6 .4 .4)} Face 28555 10427 10459 17873 {rgb=(.6 .4 .4)} Face 28556 10459 10367 17873 {rgb=(.6 .4 .4)} Face 28557 10455 10367 17874 {rgb=(.6 .4 .4)} Face 28558 10367 10459 17874 {rgb=(.6 .4 .4)} Face 28559 10459 10553 17874 {rgb=(.6 .4 .4)} Face 28560 10553 10455 17874 {rgb=(.6 .4 .4)} Face 28561 10589 10455 17875 {rgb=(.6 .4 .4)} Face 28562 10455 10553 17875 {rgb=(.6 .4 .4)} Face 28563 10553 10657 17875 {rgb=(.6 .4 .4)} Face 28564 10657 10589 17875 {rgb=(.6 .4 .4)} Face 28565 10604 10589 17876 {rgb=(.6 .4 .4)} Face 28566 10589 10657 17876 {rgb=(.6 .4 .4)} Face 28567 10657 10649 17876 {rgb=(.6 .4 .4)} Face 28568 10649 10604 17876 {rgb=(.6 .4 .4)} Face 28569 10657 10553 17877 {rgb=(.6 .4 .4)} Face 28570 10553 10635 17877 {rgb=(.6 .4 .4)} Face 28571 10635 10674 17877 {rgb=(.6 .4 .4)} Face 28572 10674 10657 17877 {rgb=(.6 .4 .4)} Face 28573 10649 10657 17878 {rgb=(.6 .4 .4)} Face 28574 10657 10674 17878 {rgb=(.6 .4 .4)} Face 28575 10674 10647 17878 {rgb=(.6 .4 .4)} Face 28576 10647 10649 17878 {rgb=(.6 .4 .4)} Face 28577 10459 10427 17879 {rgb=(.6 .4 .4)} Face 28578 10427 10533 17879 {rgb=(.6 .4 .4)} Face 28579 10533 10586 17879 {rgb=(.6 .4 .4)} Face 28580 10586 10459 17879 {rgb=(.6 .4 .4)} Face 28581 10553 10459 17880 {rgb=(.6 .4 .4)} Face 28582 10459 10586 17880 {rgb=(.6 .4 .4)} Face 28583 10586 10635 17880 {rgb=(.6 .4 .4)} Face 28584 10635 10553 17880 {rgb=(.6 .4 .4)} Face 28585 10586 10533 17881 {rgb=(.6 .4 .4)} Face 28586 10533 10715 17881 {rgb=(.6 .4 .4)} Face 28587 10715 10737 17881 {rgb=(.6 .4 .4)} Face 28588 10737 10586 17881 {rgb=(.6 .4 .4)} Face 28589 10635 10586 17882 {rgb=(.6 .4 .4)} Face 28590 10586 10737 17882 {rgb=(.6 .4 .4)} Face 28591 10737 10723 17882 {rgb=(.6 .4 .4)} Face 28592 10723 10635 17882 {rgb=(.6 .4 .4)} Face 28593 10674 10635 17883 {rgb=(.6 .4 .4)} Face 28594 10635 10723 17883 {rgb=(.6 .4 .4)} Face 28595 10723 10705 17883 {rgb=(.6 .4 .4)} Face 28596 10705 10674 17883 {rgb=(.6 .4 .4)} Face 28597 10647 10674 17884 {rgb=(.6 .4 .4)} Face 28598 10674 10705 17884 {rgb=(.6 .4 .4)} Face 28599 10705 10668 17884 {rgb=(.6 .4 .4)} Face 28600 10668 10647 17884 {rgb=(.6 .4 .4)} Face 28601 10715 10837 17885 {rgb=(.6 .4 .4)} Face 28602 10837 10841 17885 {rgb=(.6 .4 .4)} Face 28603 10841 10737 17885 {rgb=(.6 .4 .4)} Face 28604 10737 10715 17885 {rgb=(.6 .4 .4)} Face 28605 10668 10705 17886 {rgb=(.6 .4 .4)} Face 28606 10705 10749 17886 {rgb=(.6 .4 .4)} Face 28607 10749 10690 17886 {rgb=(.6 .4 .4)} Face 28608 10690 10668 17886 {rgb=(.6 .4 .4)} Face 28609 10723 10737 17887 {rgb=(.6 .4 .4)} Face 28610 10737 10841 17887 {rgb=(.6 .4 .4)} Face 28611 10841 10826 17887 {rgb=(.6 .4 .4)} Face 28612 10826 10723 17887 {rgb=(.6 .4 .4)} Face 28613 10705 10723 17888 {rgb=(.6 .4 .4)} Face 28614 10723 10826 17888 {rgb=(.6 .4 .4)} Face 28615 10826 10749 17888 {rgb=(.6 .4 .4)} Face 28616 10749 10705 17888 {rgb=(.6 .4 .4)} Face 28617 10845 10914 17889 {rgb=(.6 .4 .4)} Face 28618 10914 10863 17889 {rgb=(.6 .4 .4)} Face 28619 10863 10816 17889 {rgb=(.6 .4 .4)} Face 28620 10816 10845 17889 {rgb=(.6 .4 .4)} Face 28621 10721 10845 17890 {rgb=(.6 .4 .4)} Face 28622 10845 10816 17890 {rgb=(.6 .4 .4)} Face 28623 10816 10709 17890 {rgb=(.6 .4 .4)} Face 28624 10709 10721 17890 {rgb=(.6 .4 .4)} Face 28625 10717 10721 17891 {rgb=(.6 .4 .4)} Face 28626 10721 10709 17891 {rgb=(.6 .4 .4)} Face 28627 10709 10718 17891 {rgb=(.6 .4 .4)} Face 28628 10718 10717 17891 {rgb=(.6 .4 .4)} Face 28629 10771 10717 17892 {rgb=(.6 .4 .4)} Face 28630 10717 10718 17892 {rgb=(.6 .4 .4)} Face 28631 10718 10694 17892 {rgb=(.6 .4 .4)} Face 28632 10694 10771 17892 {rgb=(.6 .4 .4)} Face 28633 10945 10934 17893 {rgb=(.6 .4 .4)} Face 28634 10934 10873 17893 {rgb=(.6 .4 .4)} Face 28635 10873 10897 17893 {rgb=(.6 .4 .4)} Face 28636 10897 10945 17893 {rgb=(.6 .4 .4)} Face 28637 10938 10967 17894 {rgb=(.6 .4 .4)} Face 28638 10967 10934 17894 {rgb=(.6 .4 .4)} Face 28639 10934 10945 17894 {rgb=(.6 .4 .4)} Face 28640 10945 10938 17894 {rgb=(.6 .4 .4)} Face 28641 10942 10938 17895 {rgb=(.6 .4 .4)} Face 28642 10938 10945 17895 {rgb=(.6 .4 .4)} Face 28643 10945 10949 17895 {rgb=(.6 .4 .4)} Face 28644 10949 10942 17895 {rgb=(.6 .4 .4)} Face 28645 10900 10942 17896 {rgb=(.6 .4 .4)} Face 28646 10942 10949 17896 {rgb=(.6 .4 .4)} Face 28647 10949 10914 17896 {rgb=(.6 .4 .4)} Face 28648 10914 10900 17896 {rgb=(.6 .4 .4)} Face 28649 10846 10900 17897 {rgb=(.6 .4 .4)} Face 28650 10900 10914 17897 {rgb=(.6 .4 .4)} Face 28651 10914 10845 17897 {rgb=(.6 .4 .4)} Face 28652 10845 10846 17897 {rgb=(.6 .4 .4)} Face 28653 10757 10846 17898 {rgb=(.6 .4 .4)} Face 28654 10846 10845 17898 {rgb=(.6 .4 .4)} Face 28655 10845 10721 17898 {rgb=(.6 .4 .4)} Face 28656 10721 10757 17898 {rgb=(.6 .4 .4)} Face 28657 10768 10757 17899 {rgb=(.6 .4 .4)} Face 28658 10757 10721 17899 {rgb=(.6 .4 .4)} Face 28659 10721 10717 17899 {rgb=(.6 .4 .4)} Face 28660 10717 10768 17899 {rgb=(.6 .4 .4)} Face 28661 10817 10768 17900 {rgb=(.6 .4 .4)} Face 28662 10768 10717 17900 {rgb=(.6 .4 .4)} Face 28663 10717 10771 17900 {rgb=(.6 .4 .4)} Face 28664 10771 10817 17900 {rgb=(.6 .4 .4)} Face 28665 10818 10817 17901 {rgb=(.6 .4 .4)} Face 28666 10817 10771 17901 {rgb=(.6 .4 .4)} Face 28667 10771 10787 17901 {rgb=(.6 .4 .4)} Face 28668 10787 10818 17901 {rgb=(.6 .4 .4)} Face 28669 10821 10818 17902 {rgb=(.6 .4 .4)} Face 28670 10818 10787 17902 {rgb=(.6 .4 .4)} Face 28671 10787 10797 17902 {rgb=(.6 .4 .4)} Face 28672 10797 10821 17902 {rgb=(.6 .4 .4)} Face 28673 10976 10973 17903 {rgb=(.6 .4 .4)} Face 28674 10973 10975 17903 {rgb=(.6 .4 .4)} Face 28675 10975 10977 17903 {rgb=(.6 .4 .4)} Face 28676 10977 10976 17903 {rgb=(.6 .4 .4)} Face 28677 10993 10976 17904 {rgb=(.6 .4 .4)} Face 28678 10976 10977 17904 {rgb=(.6 .4 .4)} Face 28679 10977 10994 17904 {rgb=(.6 .4 .4)} Face 28680 10994 10993 17904 {rgb=(.6 .4 .4)} Face 28681 10978 10993 17905 {rgb=(.6 .4 .4)} Face 28682 10993 10994 17905 {rgb=(.6 .4 .4)} Face 28683 10994 10981 17905 {rgb=(.6 .4 .4)} Face 28684 10981 10978 17905 {rgb=(.6 .4 .4)} Face 28685 10967 10978 17906 {rgb=(.6 .4 .4)} Face 28686 10978 10981 17906 {rgb=(.6 .4 .4)} Face 28687 10981 10934 17906 {rgb=(.6 .4 .4)} Face 28688 10934 10967 17906 {rgb=(.6 .4 .4)} Face 28689 10934 10981 17907 {rgb=(.6 .4 .4)} Face 28690 10981 10921 17907 {rgb=(.6 .4 .4)} Face 28691 10921 10873 17907 {rgb=(.6 .4 .4)} Face 28692 10873 10934 17907 {rgb=(.6 .4 .4)} Face 28693 10787 10771 17908 {rgb=(.6 .4 .4)} Face 28694 10771 10694 17908 {rgb=(.6 .4 .4)} Face 28695 10694 10766 17908 {rgb=(.6 .4 .4)} Face 28696 10766 10787 17908 {rgb=(.6 .4 .4)} Face 28697 10797 10787 17909 {rgb=(.6 .4 .4)} Face 28698 10787 10766 17909 {rgb=(.6 .4 .4)} Face 28699 10766 10767 17909 {rgb=(.6 .4 .4)} Face 28700 10767 10797 17909 {rgb=(.6 .4 .4)} Face 28701 10977 10975 17910 {rgb=(.6 .4 .4)} Face 28702 10975 10907 17910 {rgb=(.6 .4 .4)} Face 28703 10907 10929 17910 {rgb=(.6 .4 .4)} Face 28704 10929 10977 17910 {rgb=(.6 .4 .4)} Face 28705 10564 10565 17911 {rgb=(.6 .4 .4)} Face 28706 10565 10691 17911 {rgb=(.6 .4 .4)} Face 28707 10691 10802 17911 {rgb=(.6 .4 .4)} Face 28708 10802 10564 17911 {rgb=(.6 .4 .4)} Face 28709 10660 10564 17912 {rgb=(.6 .4 .4)} Face 28710 10564 10802 17912 {rgb=(.6 .4 .4)} Face 28711 10802 10852 17912 {rgb=(.6 .4 .4)} Face 28712 10852 10660 17912 {rgb=(.6 .4 .4)} Face 28713 10565 10601 17913 {rgb=(.6 .4 .4)} Face 28714 10601 10670 17913 {rgb=(.6 .4 .4)} Face 28715 10670 10691 17913 {rgb=(.6 .4 .4)} Face 28716 10691 10565 17913 {rgb=(.6 .4 .4)} Face 28717 10859 10680 17914 {rgb=(.6 .4 .4)} Face 28718 10680 10660 17914 {rgb=(.6 .4 .4)} Face 28719 10660 10852 17914 {rgb=(.6 .4 .4)} Face 28720 10852 10859 17914 {rgb=(.6 .4 .4)} Face 28721 10518 10554 17915 {rgb=(.6 .4 .4)} Face 28722 10554 10601 17915 {rgb=(.6 .4 .4)} Face 28723 10601 10565 17915 {rgb=(.6 .4 .4)} Face 28724 10565 10518 17915 {rgb=(.6 .4 .4)} Face 28725 10516 10518 17916 {rgb=(.6 .4 .4)} Face 28726 10518 10565 17916 {rgb=(.6 .4 .4)} Face 28727 10565 10564 17916 {rgb=(.6 .4 .4)} Face 28728 10564 10516 17916 {rgb=(.6 .4 .4)} Face 28729 10552 10516 17917 {rgb=(.6 .4 .4)} Face 28730 10516 10564 17917 {rgb=(.6 .4 .4)} Face 28731 10564 10660 17917 {rgb=(.6 .4 .4)} Face 28732 10660 10552 17917 {rgb=(.6 .4 .4)} Face 28733 10582 10552 17918 {rgb=(.6 .4 .4)} Face 28734 10552 10660 17918 {rgb=(.6 .4 .4)} Face 28735 10660 10680 17918 {rgb=(.6 .4 .4)} Face 28736 10680 10582 17918 {rgb=(.6 .4 .4)} Face 28737 10389 10398 17919 {rgb=(.6 .4 .4)} Face 28738 10398 10516 17919 {rgb=(.6 .4 .4)} Face 28739 10516 10552 17919 {rgb=(.6 .4 .4)} Face 28740 10552 10389 17919 {rgb=(.6 .4 .4)} Face 28741 10403 10389 17920 {rgb=(.6 .4 .4)} Face 28742 10389 10552 17920 {rgb=(.6 .4 .4)} Face 28743 10552 10582 17920 {rgb=(.6 .4 .4)} Face 28744 10582 10403 17920 {rgb=(.6 .4 .4)} Face 28745 10467 10523 17921 {rgb=(.6 .4 .4)} Face 28746 10523 10554 17921 {rgb=(.6 .4 .4)} Face 28747 10554 10518 17921 {rgb=(.6 .4 .4)} Face 28748 10518 10467 17921 {rgb=(.6 .4 .4)} Face 28749 10398 10467 17922 {rgb=(.6 .4 .4)} Face 28750 10467 10518 17922 {rgb=(.6 .4 .4)} Face 28751 10518 10516 17922 {rgb=(.6 .4 .4)} Face 28752 10516 10398 17922 {rgb=(.6 .4 .4)} Face 28753 10424 10480 17923 {rgb=(.6 .4 .4)} Face 28754 10480 10523 17923 {rgb=(.6 .4 .4)} Face 28755 10523 10467 17923 {rgb=(.6 .4 .4)} Face 28756 10467 10424 17923 {rgb=(.6 .4 .4)} Face 28757 10334 10424 17924 {rgb=(.6 .4 .4)} Face 28758 10424 10467 17924 {rgb=(.6 .4 .4)} Face 28759 10467 10398 17924 {rgb=(.6 .4 .4)} Face 28760 10398 10334 17924 {rgb=(.6 .4 .4)} Face 28761 10298 10334 17925 {rgb=(.6 .4 .4)} Face 28762 10334 10398 17925 {rgb=(.6 .4 .4)} Face 28763 10398 10389 17925 {rgb=(.6 .4 .4)} Face 28764 10389 10298 17925 {rgb=(.6 .4 .4)} Face 28765 10309 10298 17926 {rgb=(.6 .4 .4)} Face 28766 10298 10389 17926 {rgb=(.6 .4 .4)} Face 28767 10389 10403 17926 {rgb=(.6 .4 .4)} Face 28768 10403 10309 17926 {rgb=(.6 .4 .4)} Face 28769 10318 10402 17927 {rgb=(.6 .4 .4)} Face 28770 10402 10424 17927 {rgb=(.6 .4 .4)} Face 28771 10424 10334 17927 {rgb=(.6 .4 .4)} Face 28772 10334 10318 17927 {rgb=(.6 .4 .4)} Face 28773 10256 10318 17928 {rgb=(.6 .4 .4)} Face 28774 10318 10334 17928 {rgb=(.6 .4 .4)} Face 28775 10334 10298 17928 {rgb=(.6 .4 .4)} Face 28776 10298 10256 17928 {rgb=(.6 .4 .4)} Face 28777 10261 10256 17929 {rgb=(.6 .4 .4)} Face 28778 10256 10298 17929 {rgb=(.6 .4 .4)} Face 28779 10298 10309 17929 {rgb=(.6 .4 .4)} Face 28780 10309 10261 17929 {rgb=(.6 .4 .4)} Face 28781 10402 10462 17930 {rgb=(.6 .4 .4)} Face 28782 10462 10480 17930 {rgb=(.6 .4 .4)} Face 28783 10480 10424 17930 {rgb=(.6 .4 .4)} Face 28784 10424 10402 17930 {rgb=(.6 .4 .4)} Face 28785 10270 10274 17931 {rgb=(.6 .4 .4)} Face 28786 10274 10256 17931 {rgb=(.6 .4 .4)} Face 28787 10256 10261 17931 {rgb=(.6 .4 .4)} Face 28788 10261 10270 17931 {rgb=(.6 .4 .4)} Face 28789 10323 10426 17932 {rgb=(.6 .4 .4)} Face 28790 10426 10402 17932 {rgb=(.6 .4 .4)} Face 28791 10402 10318 17932 {rgb=(.6 .4 .4)} Face 28792 10318 10323 17932 {rgb=(.6 .4 .4)} Face 28793 10274 10323 17933 {rgb=(.6 .4 .4)} Face 28794 10323 10318 17933 {rgb=(.6 .4 .4)} Face 28795 10318 10256 17933 {rgb=(.6 .4 .4)} Face 28796 10256 10274 17933 {rgb=(.6 .4 .4)} Face 28797 10448 10439 17934 {rgb=(.6 .4 .4)} Face 28798 10439 10471 17934 {rgb=(.6 .4 .4)} Face 28799 10471 10426 17934 {rgb=(.6 .4 .4)} Face 28800 10426 10448 17934 {rgb=(.6 .4 .4)} Face 28801 10415 10448 17935 {rgb=(.6 .4 .4)} Face 28802 10448 10426 17935 {rgb=(.6 .4 .4)} Face 28803 10426 10323 17935 {rgb=(.6 .4 .4)} Face 28804 10323 10415 17935 {rgb=(.6 .4 .4)} Face 28805 10416 10415 17936 {rgb=(.6 .4 .4)} Face 28806 10415 10323 17936 {rgb=(.6 .4 .4)} Face 28807 10323 10274 17936 {rgb=(.6 .4 .4)} Face 28808 10274 10416 17936 {rgb=(.6 .4 .4)} Face 28809 10376 10416 17937 {rgb=(.6 .4 .4)} Face 28810 10416 10274 17937 {rgb=(.6 .4 .4)} Face 28811 10274 10270 17937 {rgb=(.6 .4 .4)} Face 28812 10270 10376 17937 {rgb=(.6 .4 .4)} Face 28813 10573 10525 17938 {rgb=(.6 .4 .4)} Face 28814 10525 10415 17938 {rgb=(.6 .4 .4)} Face 28815 10415 10416 17938 {rgb=(.6 .4 .4)} Face 28816 10416 10573 17938 {rgb=(.6 .4 .4)} Face 28817 10570 10573 17939 {rgb=(.6 .4 .4)} Face 28818 10573 10416 17939 {rgb=(.6 .4 .4)} Face 28819 10416 10442 17939 {rgb=(.6 .4 .4)} Face 28820 10442 10570 17939 {rgb=(.6 .4 .4)} Face 28821 10567 10595 17940 {rgb=(.6 .4 .4)} Face 28822 10595 10439 17940 {rgb=(.6 .4 .4)} Face 28823 10439 10448 17940 {rgb=(.6 .4 .4)} Face 28824 10448 10567 17940 {rgb=(.6 .4 .4)} Face 28825 10525 10567 17941 {rgb=(.6 .4 .4)} Face 28826 10567 10448 17941 {rgb=(.6 .4 .4)} Face 28827 10448 10415 17941 {rgb=(.6 .4 .4)} Face 28828 10415 10525 17941 {rgb=(.6 .4 .4)} Face 28829 10570 10629 17942 {rgb=(.6 .4 .4)} Face 28830 10629 10631 17942 {rgb=(.6 .4 .4)} Face 28831 10631 10573 17942 {rgb=(.6 .4 .4)} Face 28832 10573 10570 17942 {rgb=(.6 .4 .4)} Face 28833 10525 10634 17943 {rgb=(.6 .4 .4)} Face 28834 10634 10650 17943 {rgb=(.6 .4 .4)} Face 28835 10650 10567 17943 {rgb=(.6 .4 .4)} Face 28836 10567 10525 17943 {rgb=(.6 .4 .4)} Face 28837 10650 10634 17944 {rgb=(.6 .4 .4)} Face 28838 10634 10667 17944 {rgb=(.6 .4 .4)} Face 28839 10667 10673 17944 {rgb=(.6 .4 .4)} Face 28840 10673 10650 17944 {rgb=(.6 .4 .4)} Face 28841 10376 10397 17945 {rgb=(.6 .4 .4)} Face 28842 10397 10442 17945 {rgb=(.6 .4 .4)} Face 28843 10442 10416 17945 {rgb=(.6 .4 .4)} Face 28844 10416 10376 17945 {rgb=(.6 .4 .4)} Face 28845 10629 10632 17946 {rgb=(.6 .4 .4)} Face 28846 10632 10646 17946 {rgb=(.6 .4 .4)} Face 28847 10646 10631 17946 {rgb=(.6 .4 .4)} Face 28848 10631 10629 17946 {rgb=(.6 .4 .4)} Face 28849 10687 10688 17947 {rgb=(.6 .4 .4)} Face 28850 10688 10673 17947 {rgb=(.6 .4 .4)} Face 28851 10673 10667 17947 {rgb=(.6 .4 .4)} Face 28852 10667 10687 17947 {rgb=(.6 .4 .4)} Face 28853 10687 10667 17948 {rgb=(.6 .4 .4)} Face 28854 10667 10631 17948 {rgb=(.6 .4 .4)} Face 28855 10631 10646 17948 {rgb=(.6 .4 .4)} Face 28856 10646 10687 17948 {rgb=(.6 .4 .4)} Face 28857 10667 10634 17949 {rgb=(.6 .4 .4)} Face 28858 10634 10573 17949 {rgb=(.6 .4 .4)} Face 28859 10573 10631 17949 {rgb=(.6 .4 .4)} Face 28860 10631 10667 17949 {rgb=(.6 .4 .4)} Face 28861 10766 10694 17950 {rgb=(.6 .4 .4)} Face 28862 10694 10691 17950 {rgb=(.6 .4 .4)} Face 28863 10691 10670 17950 {rgb=(.6 .4 .4)} Face 28864 10670 10766 17950 {rgb=(.6 .4 .4)} Face 28865 10921 10930 17951 {rgb=(.6 .4 .4)} Face 28866 10930 10859 17951 {rgb=(.6 .4 .4)} Face 28867 10859 10852 17951 {rgb=(.6 .4 .4)} Face 28868 10852 10921 17951 {rgb=(.6 .4 .4)} Face 28869 10873 10921 17952 {rgb=(.6 .4 .4)} Face 28870 10921 10852 17952 {rgb=(.6 .4 .4)} Face 28871 10852 10802 17952 {rgb=(.6 .4 .4)} Face 28872 10802 10873 17952 {rgb=(.6 .4 .4)} Face 28873 10907 10767 17953 {rgb=(.6 .4 .4)} Face 28874 10767 10692 17953 {rgb=(.6 .4 .4)} Face 28875 10692 10803 17953 {rgb=(.6 .4 .4)} Face 28876 10803 10907 17953 {rgb=(.6 .4 .4)} Face 28877 10929 10907 17954 {rgb=(.6 .4 .4)} Face 28878 10907 10803 17954 {rgb=(.6 .4 .4)} Face 28879 10803 10853 17954 {rgb=(.6 .4 .4)} Face 28880 10853 10929 17954 {rgb=(.6 .4 .4)} Face 28881 10930 10929 17955 {rgb=(.6 .4 .4)} Face 28882 10929 10853 17955 {rgb=(.6 .4 .4)} Face 28883 10853 10859 17955 {rgb=(.6 .4 .4)} Face 28884 10859 10930 17955 {rgb=(.6 .4 .4)} Face 28885 10767 10766 17956 {rgb=(.6 .4 .4)} Face 28886 10766 10670 17956 {rgb=(.6 .4 .4)} Face 28887 10670 10692 17956 {rgb=(.6 .4 .4)} Face 28888 10692 10767 17956 {rgb=(.6 .4 .4)} Face 28889 10609 10644 17957 {rgb=(.6 .4 .4)} Face 28890 10644 10616 17957 {rgb=(.6 .4 .4)} Face 28891 10616 10534 17957 {rgb=(.6 .4 .4)} Face 28892 10534 10609 17957 {rgb=(.6 .4 .4)} Face 28893 10644 10687 17958 {rgb=(.6 .4 .4)} Face 28894 10687 10646 17958 {rgb=(.6 .4 .4)} Face 28895 10646 10616 17958 {rgb=(.6 .4 .4)} Face 28896 10616 10644 17958 {rgb=(.6 .4 .4)} Face 28897 10688 10687 17959 {rgb=(.6 .4 .4)} Face 28898 10687 10644 17959 {rgb=(.6 .4 .4)} Face 28899 10644 10662 17959 {rgb=(.6 .4 .4)} Face 28900 10662 10688 17959 {rgb=(.6 .4 .4)} Face 28901 10632 10612 17960 {rgb=(.6 .4 .4)} Face 28902 10612 10616 17960 {rgb=(.6 .4 .4)} Face 28903 10616 10646 17960 {rgb=(.6 .4 .4)} Face 28904 10646 10632 17960 {rgb=(.6 .4 .4)} Face 28905 10397 10376 17961 {rgb=(.6 .4 .4)} Face 28906 10376 10393 17961 {rgb=(.6 .4 .4)} Face 28907 10393 10417 17961 {rgb=(.6 .4 .4)} Face 28908 10417 10397 17961 {rgb=(.6 .4 .4)} Face 28909 10609 10627 17962 {rgb=(.6 .4 .4)} Face 28910 10627 10662 17962 {rgb=(.6 .4 .4)} Face 28911 10662 10644 17962 {rgb=(.6 .4 .4)} Face 28912 10644 10609 17962 {rgb=(.6 .4 .4)} Face 28913 10609 10483 17963 {rgb=(.6 .4 .4)} Face 28914 10483 10530 17963 {rgb=(.6 .4 .4)} Face 28915 10530 10627 17963 {rgb=(.6 .4 .4)} Face 28916 10627 10609 17963 {rgb=(.6 .4 .4)} Face 28917 10612 10537 17964 {rgb=(.6 .4 .4)} Face 28918 10537 10534 17964 {rgb=(.6 .4 .4)} Face 28919 10534 10616 17964 {rgb=(.6 .4 .4)} Face 28920 10616 10612 17964 {rgb=(.6 .4 .4)} Face 28921 10530 10483 17965 {rgb=(.6 .4 .4)} Face 28922 10483 10380 17965 {rgb=(.6 .4 .4)} Face 28923 10380 10423 17965 {rgb=(.6 .4 .4)} Face 28924 10423 10530 17965 {rgb=(.6 .4 .4)} Face 28925 10595 10530 17966 {rgb=(.6 .4 .4)} Face 28926 10530 10423 17966 {rgb=(.6 .4 .4)} Face 28927 10423 10439 17966 {rgb=(.6 .4 .4)} Face 28928 10439 10595 17966 {rgb=(.6 .4 .4)} Face 28929 10534 10537 17967 {rgb=(.6 .4 .4)} Face 28930 10537 10417 17967 {rgb=(.6 .4 .4)} Face 28931 10417 10393 17967 {rgb=(.6 .4 .4)} Face 28932 10393 10534 17967 {rgb=(.6 .4 .4)} Face 28933 10483 10534 17968 {rgb=(.6 .4 .4)} Face 28934 10534 10393 17968 {rgb=(.6 .4 .4)} Face 28935 10393 10380 17968 {rgb=(.6 .4 .4)} Face 28936 10380 10483 17968 {rgb=(.6 .4 .4)} Face 28937 10393 10376 17969 {rgb=(.6 .4 .4)} Face 28938 10376 10270 17969 {rgb=(.6 .4 .4)} Face 28939 10270 10263 17969 {rgb=(.6 .4 .4)} Face 28940 10263 10393 17969 {rgb=(.6 .4 .4)} Face 28941 10380 10393 17970 {rgb=(.6 .4 .4)} Face 28942 10393 10263 17970 {rgb=(.6 .4 .4)} Face 28943 10263 10311 17970 {rgb=(.6 .4 .4)} Face 28944 10311 10380 17970 {rgb=(.6 .4 .4)} Face 28945 10423 10380 17971 {rgb=(.6 .4 .4)} Face 28946 10380 10311 17971 {rgb=(.6 .4 .4)} Face 28947 10311 10410 17971 {rgb=(.6 .4 .4)} Face 28948 10410 10423 17971 {rgb=(.6 .4 .4)} Face 28949 10311 10263 17972 {rgb=(.6 .4 .4)} Face 28950 10263 10260 17972 {rgb=(.6 .4 .4)} Face 28951 10260 10325 17972 {rgb=(.6 .4 .4)} Face 28952 10325 10311 17972 {rgb=(.6 .4 .4)} Face 28953 10410 10311 17973 {rgb=(.6 .4 .4)} Face 28954 10311 10325 17973 {rgb=(.6 .4 .4)} Face 28955 10325 10413 17973 {rgb=(.6 .4 .4)} Face 28956 10413 10410 17973 {rgb=(.6 .4 .4)} Face 28957 10263 10270 17974 {rgb=(.6 .4 .4)} Face 28958 10270 10261 17974 {rgb=(.6 .4 .4)} Face 28959 10261 10260 17974 {rgb=(.6 .4 .4)} Face 28960 10260 10263 17974 {rgb=(.6 .4 .4)} Face 28961 10462 10413 17975 {rgb=(.6 .4 .4)} Face 28962 10413 10437 17975 {rgb=(.6 .4 .4)} Face 28963 10437 10480 17975 {rgb=(.6 .4 .4)} Face 28964 10480 10462 17975 {rgb=(.6 .4 .4)} Face 28965 10260 10261 17976 {rgb=(.6 .4 .4)} Face 28966 10261 10309 17976 {rgb=(.6 .4 .4)} Face 28967 10309 10304 17976 {rgb=(.6 .4 .4)} Face 28968 10304 10260 17976 {rgb=(.6 .4 .4)} Face 28969 10325 10260 17977 {rgb=(.6 .4 .4)} Face 28970 10260 10304 17977 {rgb=(.6 .4 .4)} Face 28971 10304 10348 17977 {rgb=(.6 .4 .4)} Face 28972 10348 10325 17977 {rgb=(.6 .4 .4)} Face 28973 10413 10325 17978 {rgb=(.6 .4 .4)} Face 28974 10325 10348 17978 {rgb=(.6 .4 .4)} Face 28975 10348 10437 17978 {rgb=(.6 .4 .4)} Face 28976 10437 10413 17978 {rgb=(.6 .4 .4)} Face 28977 10304 10309 17979 {rgb=(.6 .4 .4)} Face 28978 10309 10403 17979 {rgb=(.6 .4 .4)} Face 28979 10403 10385 17979 {rgb=(.6 .4 .4)} Face 28980 10385 10304 17979 {rgb=(.6 .4 .4)} Face 28981 10348 10304 17980 {rgb=(.6 .4 .4)} Face 28982 10304 10385 17980 {rgb=(.6 .4 .4)} Face 28983 10385 10436 17980 {rgb=(.6 .4 .4)} Face 28984 10436 10348 17980 {rgb=(.6 .4 .4)} Face 28985 10437 10348 17981 {rgb=(.6 .4 .4)} Face 28986 10348 10436 17981 {rgb=(.6 .4 .4)} Face 28987 10436 10499 17981 {rgb=(.6 .4 .4)} Face 28988 10499 10437 17981 {rgb=(.6 .4 .4)} Face 28989 10480 10437 17982 {rgb=(.6 .4 .4)} Face 28990 10437 10499 17982 {rgb=(.6 .4 .4)} Face 28991 10499 10523 17982 {rgb=(.6 .4 .4)} Face 28992 10523 10480 17982 {rgb=(.6 .4 .4)} Face 28993 10499 10436 17983 {rgb=(.6 .4 .4)} Face 28994 10436 10547 17983 {rgb=(.6 .4 .4)} Face 28995 10547 10542 17983 {rgb=(.6 .4 .4)} Face 28996 10542 10499 17983 {rgb=(.6 .4 .4)} Face 28997 10523 10499 17984 {rgb=(.6 .4 .4)} Face 28998 10499 10542 17984 {rgb=(.6 .4 .4)} Face 28999 10542 10554 17984 {rgb=(.6 .4 .4)} Face 29000 10554 10523 17984 {rgb=(.6 .4 .4)} Face 29001 10385 10403 17985 {rgb=(.6 .4 .4)} Face 29002 10403 10582 17985 {rgb=(.6 .4 .4)} Face 29003 10582 10569 17985 {rgb=(.6 .4 .4)} Face 29004 10569 10385 17985 {rgb=(.6 .4 .4)} Face 29005 10436 10385 17986 {rgb=(.6 .4 .4)} Face 29006 10385 10569 17986 {rgb=(.6 .4 .4)} Face 29007 10569 10547 17986 {rgb=(.6 .4 .4)} Face 29008 10547 10436 17986 {rgb=(.6 .4 .4)} Face 29009 10569 10582 17987 {rgb=(.6 .4 .4)} Face 29010 10582 10680 17987 {rgb=(.6 .4 .4)} Face 29011 10680 10665 17987 {rgb=(.6 .4 .4)} Face 29012 10665 10569 17987 {rgb=(.6 .4 .4)} Face 29013 10547 10569 17988 {rgb=(.6 .4 .4)} Face 29014 10569 10665 17988 {rgb=(.6 .4 .4)} Face 29015 10665 10591 17988 {rgb=(.6 .4 .4)} Face 29016 10591 10547 17988 {rgb=(.6 .4 .4)} Face 29017 10542 10547 17989 {rgb=(.6 .4 .4)} Face 29018 10547 10591 17989 {rgb=(.6 .4 .4)} Face 29019 10591 10583 17989 {rgb=(.6 .4 .4)} Face 29020 10583 10542 17989 {rgb=(.6 .4 .4)} Face 29021 10554 10542 17990 {rgb=(.6 .4 .4)} Face 29022 10542 10583 17990 {rgb=(.6 .4 .4)} Face 29023 10583 10601 17990 {rgb=(.6 .4 .4)} Face 29024 10601 10554 17990 {rgb=(.6 .4 .4)} Face 29025 10680 10859 17991 {rgb=(.6 .4 .4)} Face 29026 10859 10853 17991 {rgb=(.6 .4 .4)} Face 29027 10853 10665 17991 {rgb=(.6 .4 .4)} Face 29028 10665 10680 17991 {rgb=(.6 .4 .4)} Face 29029 10601 10583 17992 {rgb=(.6 .4 .4)} Face 29030 10583 10692 17992 {rgb=(.6 .4 .4)} Face 29031 10692 10670 17992 {rgb=(.6 .4 .4)} Face 29032 10670 10601 17992 {rgb=(.6 .4 .4)} Face 29033 10591 10665 17993 {rgb=(.6 .4 .4)} Face 29034 10665 10853 17993 {rgb=(.6 .4 .4)} Face 29035 10853 10803 17993 {rgb=(.6 .4 .4)} Face 29036 10803 10591 17993 {rgb=(.6 .4 .4)} Face 29037 10583 10591 17994 {rgb=(.6 .4 .4)} Face 29038 10591 10803 17994 {rgb=(.6 .4 .4)} Face 29039 10803 10692 17994 {rgb=(.6 .4 .4)} Face 29040 10692 10583 17994 {rgb=(.6 .4 .4)} Face 29041 10479 10566 17995 {rgb=(.6 .4 .4)} Face 29042 10566 10726 17995 {rgb=(.6 .4 .4)} Face 29043 10726 10828 17995 {rgb=(.6 .4 .4)} Face 29044 10828 10479 17995 {rgb=(.6 .4 .4)} Face 29045 10520 10479 17996 {rgb=(.6 .4 .4)} Face 29046 10479 10828 17996 {rgb=(.6 .4 .4)} Face 29047 10828 10864 17996 {rgb=(.6 .4 .4)} Face 29048 10864 10520 17996 {rgb=(.6 .4 .4)} Face 29049 10566 10626 17997 {rgb=(.6 .4 .4)} Face 29050 10626 10714 17997 {rgb=(.6 .4 .4)} Face 29051 10714 10726 17997 {rgb=(.6 .4 .4)} Face 29052 10726 10566 17997 {rgb=(.6 .4 .4)} Face 29053 10877 10551 17998 {rgb=(.6 .4 .4)} Face 29054 10551 10520 17998 {rgb=(.6 .4 .4)} Face 29055 10520 10864 17998 {rgb=(.6 .4 .4)} Face 29056 10864 10877 17998 {rgb=(.6 .4 .4)} Face 29057 10484 10555 17999 {rgb=(.6 .4 .4)} Face 29058 10555 10626 17999 {rgb=(.6 .4 .4)} Face 29059 10626 10566 17999 {rgb=(.6 .4 .4)} Face 29060 10566 10484 17999 {rgb=(.6 .4 .4)} Face 29061 10392 10484 18000 {rgb=(.6 .4 .4)} Face 29062 10484 10566 18000 {rgb=(.6 .4 .4)} Face 29063 10566 10479 18000 {rgb=(.6 .4 .4)} Face 29064 10479 10392 18000 {rgb=(.6 .4 .4)} Face 29065 10363 10392 18001 {rgb=(.6 .4 .4)} Face 29066 10392 10479 18001 {rgb=(.6 .4 .4)} Face 29067 10479 10520 18001 {rgb=(.6 .4 .4)} Face 29068 10520 10363 18001 {rgb=(.6 .4 .4)} Face 29069 10387 10363 18002 {rgb=(.6 .4 .4)} Face 29070 10363 10520 18002 {rgb=(.6 .4 .4)} Face 29071 10520 10551 18002 {rgb=(.6 .4 .4)} Face 29072 10551 10387 18002 {rgb=(.6 .4 .4)} Face 29073 10301 10356 18003 {rgb=(.6 .4 .4)} Face 29074 10356 10392 18003 {rgb=(.6 .4 .4)} Face 29075 10392 10363 18003 {rgb=(.6 .4 .4)} Face 29076 10363 10301 18003 {rgb=(.6 .4 .4)} Face 29077 10321 10301 18004 {rgb=(.6 .4 .4)} Face 29078 10301 10363 18004 {rgb=(.6 .4 .4)} Face 29079 10363 10387 18004 {rgb=(.6 .4 .4)} Face 29080 10387 10321 18004 {rgb=(.6 .4 .4)} Face 29081 10466 10541 18005 {rgb=(.6 .4 .4)} Face 29082 10541 10555 18005 {rgb=(.6 .4 .4)} Face 29083 10555 10484 18005 {rgb=(.6 .4 .4)} Face 29084 10484 10466 18005 {rgb=(.6 .4 .4)} Face 29085 10356 10466 18006 {rgb=(.6 .4 .4)} Face 29086 10466 10484 18006 {rgb=(.6 .4 .4)} Face 29087 10484 10392 18006 {rgb=(.6 .4 .4)} Face 29088 10392 10356 18006 {rgb=(.6 .4 .4)} Face 29089 10429 10500 18007 {rgb=(.6 .4 .4)} Face 29090 10500 10541 18007 {rgb=(.6 .4 .4)} Face 29091 10541 10466 18007 {rgb=(.6 .4 .4)} Face 29092 10466 10429 18007 {rgb=(.6 .4 .4)} Face 29093 10324 10429 18008 {rgb=(.6 .4 .4)} Face 29094 10429 10466 18008 {rgb=(.6 .4 .4)} Face 29095 10466 10356 18008 {rgb=(.6 .4 .4)} Face 29096 10356 10324 18008 {rgb=(.6 .4 .4)} Face 29097 10271 10324 18009 {rgb=(.6 .4 .4)} Face 29098 10324 10356 18009 {rgb=(.6 .4 .4)} Face 29099 10356 10301 18009 {rgb=(.6 .4 .4)} Face 29100 10301 10271 18009 {rgb=(.6 .4 .4)} Face 29101 10278 10271 18010 {rgb=(.6 .4 .4)} Face 29102 10271 10301 18010 {rgb=(.6 .4 .4)} Face 29103 10301 10321 18010 {rgb=(.6 .4 .4)} Face 29104 10321 10278 18010 {rgb=(.6 .4 .4)} Face 29105 10316 10412 18011 {rgb=(.6 .4 .4)} Face 29106 10412 10429 18011 {rgb=(.6 .4 .4)} Face 29107 10429 10324 18011 {rgb=(.6 .4 .4)} Face 29108 10324 10316 18011 {rgb=(.6 .4 .4)} Face 29109 10255 10316 18012 {rgb=(.6 .4 .4)} Face 29110 10316 10324 18012 {rgb=(.6 .4 .4)} Face 29111 10324 10271 18012 {rgb=(.6 .4 .4)} Face 29112 10271 10255 18012 {rgb=(.6 .4 .4)} Face 29113 10259 10255 18013 {rgb=(.6 .4 .4)} Face 29114 10255 10271 18013 {rgb=(.6 .4 .4)} Face 29115 10271 10278 18013 {rgb=(.6 .4 .4)} Face 29116 10278 10259 18013 {rgb=(.6 .4 .4)} Face 29117 10412 10473 18014 {rgb=(.6 .4 .4)} Face 29118 10473 10500 18014 {rgb=(.6 .4 .4)} Face 29119 10500 10429 18014 {rgb=(.6 .4 .4)} Face 29120 10429 10412 18014 {rgb=(.6 .4 .4)} Face 29121 10310 10312 18015 {rgb=(.6 .4 .4)} Face 29122 10312 10255 18015 {rgb=(.6 .4 .4)} Face 29123 10255 10259 18015 {rgb=(.6 .4 .4)} Face 29124 10259 10310 18015 {rgb=(.6 .4 .4)} Face 29125 10445 10491 18016 {rgb=(.6 .4 .4)} Face 29126 10491 10473 18016 {rgb=(.6 .4 .4)} Face 29127 10473 10412 18016 {rgb=(.6 .4 .4)} Face 29128 10412 10445 18016 {rgb=(.6 .4 .4)} Face 29129 10339 10445 18017 {rgb=(.6 .4 .4)} Face 29130 10445 10412 18017 {rgb=(.6 .4 .4)} Face 29131 10412 10316 18017 {rgb=(.6 .4 .4)} Face 29132 10316 10339 18017 {rgb=(.6 .4 .4)} Face 29133 10312 10339 18018 {rgb=(.6 .4 .4)} Face 29134 10339 10316 18018 {rgb=(.6 .4 .4)} Face 29135 10316 10255 18018 {rgb=(.6 .4 .4)} Face 29136 10255 10312 18018 {rgb=(.6 .4 .4)} Face 29137 10559 10577 18019 {rgb=(.6 .4 .4)} Face 29138 10577 10491 18019 {rgb=(.6 .4 .4)} Face 29139 10491 10445 18019 {rgb=(.6 .4 .4)} Face 29140 10445 10559 18019 {rgb=(.6 .4 .4)} Face 29141 10494 10559 18020 {rgb=(.6 .4 .4)} Face 29142 10559 10445 18020 {rgb=(.6 .4 .4)} Face 29143 10445 10339 18020 {rgb=(.6 .4 .4)} Face 29144 10339 10494 18020 {rgb=(.6 .4 .4)} Face 29145 10493 10494 18021 {rgb=(.6 .4 .4)} Face 29146 10494 10339 18021 {rgb=(.6 .4 .4)} Face 29147 10339 10312 18021 {rgb=(.6 .4 .4)} Face 29148 10312 10493 18021 {rgb=(.6 .4 .4)} Face 29149 10451 10493 18022 {rgb=(.6 .4 .4)} Face 29150 10493 10312 18022 {rgb=(.6 .4 .4)} Face 29151 10312 10310 18022 {rgb=(.6 .4 .4)} Face 29152 10310 10451 18022 {rgb=(.6 .4 .4)} Face 29153 10654 10620 18023 {rgb=(.6 .4 .4)} Face 29154 10620 10494 18023 {rgb=(.6 .4 .4)} Face 29155 10494 10493 18023 {rgb=(.6 .4 .4)} Face 29156 10493 10654 18023 {rgb=(.6 .4 .4)} Face 29157 10653 10654 18024 {rgb=(.6 .4 .4)} Face 29158 10654 10493 18024 {rgb=(.6 .4 .4)} Face 29159 10493 10522 18024 {rgb=(.6 .4 .4)} Face 29160 10522 10653 18024 {rgb=(.6 .4 .4)} Face 29161 10671 10697 18025 {rgb=(.6 .4 .4)} Face 29162 10697 10577 18025 {rgb=(.6 .4 .4)} Face 29163 10577 10559 18025 {rgb=(.6 .4 .4)} Face 29164 10559 10671 18025 {rgb=(.6 .4 .4)} Face 29165 10620 10671 18026 {rgb=(.6 .4 .4)} Face 29166 10671 10559 18026 {rgb=(.6 .4 .4)} Face 29167 10559 10494 18026 {rgb=(.6 .4 .4)} Face 29168 10494 10620 18026 {rgb=(.6 .4 .4)} Face 29169 10653 10700 18027 {rgb=(.6 .4 .4)} Face 29170 10700 10703 18027 {rgb=(.6 .4 .4)} Face 29171 10703 10654 18027 {rgb=(.6 .4 .4)} Face 29172 10654 10653 18027 {rgb=(.6 .4 .4)} Face 29173 10620 10706 18028 {rgb=(.6 .4 .4)} Face 29174 10706 10728 18028 {rgb=(.6 .4 .4)} Face 29175 10728 10671 18028 {rgb=(.6 .4 .4)} Face 29176 10671 10620 18028 {rgb=(.6 .4 .4)} Face 29177 10728 10706 18029 {rgb=(.6 .4 .4)} Face 29178 10706 10730 18029 {rgb=(.6 .4 .4)} Face 29179 10730 10741 18029 {rgb=(.6 .4 .4)} Face 29180 10741 10728 18029 {rgb=(.6 .4 .4)} Face 29181 10451 10485 18030 {rgb=(.6 .4 .4)} Face 29182 10485 10522 18030 {rgb=(.6 .4 .4)} Face 29183 10522 10493 18030 {rgb=(.6 .4 .4)} Face 29184 10493 10451 18030 {rgb=(.6 .4 .4)} Face 29185 10700 10710 18031 {rgb=(.6 .4 .4)} Face 29186 10710 10720 18031 {rgb=(.6 .4 .4)} Face 29187 10720 10703 18031 {rgb=(.6 .4 .4)} Face 29188 10703 10700 18031 {rgb=(.6 .4 .4)} Face 29189 10746 10755 18032 {rgb=(.6 .4 .4)} Face 29190 10755 10741 18032 {rgb=(.6 .4 .4)} Face 29191 10741 10730 18032 {rgb=(.6 .4 .4)} Face 29192 10730 10746 18032 {rgb=(.6 .4 .4)} Face 29193 10746 10730 18033 {rgb=(.6 .4 .4)} Face 29194 10730 10703 18033 {rgb=(.6 .4 .4)} Face 29195 10703 10720 18033 {rgb=(.6 .4 .4)} Face 29196 10720 10746 18033 {rgb=(.6 .4 .4)} Face 29197 10730 10706 18034 {rgb=(.6 .4 .4)} Face 29198 10706 10654 18034 {rgb=(.6 .4 .4)} Face 29199 10654 10703 18034 {rgb=(.6 .4 .4)} Face 29200 10703 10730 18034 {rgb=(.6 .4 .4)} Face 29201 10959 10966 18035 {rgb=(.6 .4 .4)} Face 29202 10966 10877 18035 {rgb=(.6 .4 .4)} Face 29203 10877 10864 18035 {rgb=(.6 .4 .4)} Face 29204 10864 10959 18035 {rgb=(.6 .4 .4)} Face 29205 10907 10959 18036 {rgb=(.6 .4 .4)} Face 29206 10959 10864 18036 {rgb=(.6 .4 .4)} Face 29207 10864 10828 18036 {rgb=(.6 .4 .4)} Face 29208 10828 10907 18036 {rgb=(.6 .4 .4)} Face 29209 10767 10907 18037 {rgb=(.6 .4 .4)} Face 29210 10907 10828 18037 {rgb=(.6 .4 .4)} Face 29211 10828 10726 18037 {rgb=(.6 .4 .4)} Face 29212 10726 10767 18037 {rgb=(.6 .4 .4)} Face 29213 10964 10908 18038 {rgb=(.6 .4 .4)} Face 29214 10908 10836 18038 {rgb=(.6 .4 .4)} Face 29215 10836 10871 18038 {rgb=(.6 .4 .4)} Face 29216 10871 10964 18038 {rgb=(.6 .4 .4)} Face 29217 10966 10964 18039 {rgb=(.6 .4 .4)} Face 29218 10964 10871 18039 {rgb=(.6 .4 .4)} Face 29219 10871 10877 18039 {rgb=(.6 .4 .4)} Face 29220 10877 10966 18039 {rgb=(.6 .4 .4)} Face 29221 10707 10731 18040 {rgb=(.6 .4 .4)} Face 29222 10731 10704 18040 {rgb=(.6 .4 .4)} Face 29223 10704 10658 18040 {rgb=(.6 .4 .4)} Face 29224 10658 10707 18040 {rgb=(.6 .4 .4)} Face 29225 10731 10746 18041 {rgb=(.6 .4 .4)} Face 29226 10746 10720 18041 {rgb=(.6 .4 .4)} Face 29227 10720 10704 18041 {rgb=(.6 .4 .4)} Face 29228 10704 10731 18041 {rgb=(.6 .4 .4)} Face 29229 10755 10746 18042 {rgb=(.6 .4 .4)} Face 29230 10746 10731 18042 {rgb=(.6 .4 .4)} Face 29231 10731 10743 18042 {rgb=(.6 .4 .4)} Face 29232 10743 10755 18042 {rgb=(.6 .4 .4)} Face 29233 10710 10702 18043 {rgb=(.6 .4 .4)} Face 29234 10702 10704 18043 {rgb=(.6 .4 .4)} Face 29235 10704 10720 18043 {rgb=(.6 .4 .4)} Face 29236 10720 10710 18043 {rgb=(.6 .4 .4)} Face 29237 10485 10451 18044 {rgb=(.6 .4 .4)} Face 29238 10451 10496 18044 {rgb=(.6 .4 .4)} Face 29239 10496 10524 18044 {rgb=(.6 .4 .4)} Face 29240 10524 10485 18044 {rgb=(.6 .4 .4)} Face 29241 10707 10729 18045 {rgb=(.6 .4 .4)} Face 29242 10729 10743 18045 {rgb=(.6 .4 .4)} Face 29243 10743 10731 18045 {rgb=(.6 .4 .4)} Face 29244 10731 10707 18045 {rgb=(.6 .4 .4)} Face 29245 10707 10621 18046 {rgb=(.6 .4 .4)} Face 29246 10621 10672 18046 {rgb=(.6 .4 .4)} Face 29247 10672 10729 18046 {rgb=(.6 .4 .4)} Face 29248 10729 10707 18046 {rgb=(.6 .4 .4)} Face 29249 10702 10655 18047 {rgb=(.6 .4 .4)} Face 29250 10655 10658 18047 {rgb=(.6 .4 .4)} Face 29251 10658 10704 18047 {rgb=(.6 .4 .4)} Face 29252 10704 10702 18047 {rgb=(.6 .4 .4)} Face 29253 10672 10621 18048 {rgb=(.6 .4 .4)} Face 29254 10621 10497 18048 {rgb=(.6 .4 .4)} Face 29255 10497 10562 18048 {rgb=(.6 .4 .4)} Face 29256 10562 10672 18048 {rgb=(.6 .4 .4)} Face 29257 10697 10672 18049 {rgb=(.6 .4 .4)} Face 29258 10672 10562 18049 {rgb=(.6 .4 .4)} Face 29259 10562 10577 18049 {rgb=(.6 .4 .4)} Face 29260 10577 10697 18049 {rgb=(.6 .4 .4)} Face 29261 10658 10655 18050 {rgb=(.6 .4 .4)} Face 29262 10655 10524 18050 {rgb=(.6 .4 .4)} Face 29263 10524 10496 18050 {rgb=(.6 .4 .4)} Face 29264 10496 10658 18050 {rgb=(.6 .4 .4)} Face 29265 10621 10658 18051 {rgb=(.6 .4 .4)} Face 29266 10658 10496 18051 {rgb=(.6 .4 .4)} Face 29267 10496 10497 18051 {rgb=(.6 .4 .4)} Face 29268 10497 10621 18051 {rgb=(.6 .4 .4)} Face 29269 10496 10451 18052 {rgb=(.6 .4 .4)} Face 29270 10451 10310 18052 {rgb=(.6 .4 .4)} Face 29271 10310 10319 18052 {rgb=(.6 .4 .4)} Face 29272 10319 10496 18052 {rgb=(.6 .4 .4)} Face 29273 10497 10496 18053 {rgb=(.6 .4 .4)} Face 29274 10496 10319 18053 {rgb=(.6 .4 .4)} Face 29275 10319 10355 18053 {rgb=(.6 .4 .4)} Face 29276 10355 10497 18053 {rgb=(.6 .4 .4)} Face 29277 10562 10497 18054 {rgb=(.6 .4 .4)} Face 29278 10497 10355 18054 {rgb=(.6 .4 .4)} Face 29279 10355 10457 18054 {rgb=(.6 .4 .4)} Face 29280 10457 10562 18054 {rgb=(.6 .4 .4)} Face 29281 10577 10562 18055 {rgb=(.6 .4 .4)} Face 29282 10562 10457 18055 {rgb=(.6 .4 .4)} Face 29283 10457 10491 18055 {rgb=(.6 .4 .4)} Face 29284 10491 10577 18055 {rgb=(.6 .4 .4)} Face 29285 10355 10319 18056 {rgb=(.6 .4 .4)} Face 29286 10319 10268 18056 {rgb=(.6 .4 .4)} Face 29287 10268 10331 18056 {rgb=(.6 .4 .4)} Face 29288 10331 10355 18056 {rgb=(.6 .4 .4)} Face 29289 10457 10355 18057 {rgb=(.6 .4 .4)} Face 29290 10355 10331 18057 {rgb=(.6 .4 .4)} Face 29291 10331 10428 18057 {rgb=(.6 .4 .4)} Face 29292 10428 10457 18057 {rgb=(.6 .4 .4)} Face 29293 10491 10457 18058 {rgb=(.6 .4 .4)} Face 29294 10457 10428 18058 {rgb=(.6 .4 .4)} Face 29295 10428 10473 18058 {rgb=(.6 .4 .4)} Face 29296 10473 10491 18058 {rgb=(.6 .4 .4)} Face 29297 10319 10310 18059 {rgb=(.6 .4 .4)} Face 29298 10310 10259 18059 {rgb=(.6 .4 .4)} Face 29299 10259 10268 18059 {rgb=(.6 .4 .4)} Face 29300 10268 10319 18059 {rgb=(.6 .4 .4)} Face 29301 10473 10428 18060 {rgb=(.6 .4 .4)} Face 29302 10428 10458 18060 {rgb=(.6 .4 .4)} Face 29303 10458 10500 18060 {rgb=(.6 .4 .4)} Face 29304 10500 10473 18060 {rgb=(.6 .4 .4)} Face 29305 10268 10259 18061 {rgb=(.6 .4 .4)} Face 29306 10259 10278 18061 {rgb=(.6 .4 .4)} Face 29307 10278 10285 18061 {rgb=(.6 .4 .4)} Face 29308 10285 10268 18061 {rgb=(.6 .4 .4)} Face 29309 10331 10268 18062 {rgb=(.6 .4 .4)} Face 29310 10268 10285 18062 {rgb=(.6 .4 .4)} Face 29311 10285 10342 18062 {rgb=(.6 .4 .4)} Face 29312 10342 10331 18062 {rgb=(.6 .4 .4)} Face 29313 10285 10278 18063 {rgb=(.6 .4 .4)} Face 29314 10278 10321 18063 {rgb=(.6 .4 .4)} Face 29315 10321 10315 18063 {rgb=(.6 .4 .4)} Face 29316 10315 10285 18063 {rgb=(.6 .4 .4)} Face 29317 10342 10285 18064 {rgb=(.6 .4 .4)} Face 29318 10285 10315 18064 {rgb=(.6 .4 .4)} Face 29319 10315 10379 18064 {rgb=(.6 .4 .4)} Face 29320 10379 10342 18064 {rgb=(.6 .4 .4)} Face 29321 10458 10342 18065 {rgb=(.6 .4 .4)} Face 29322 10342 10379 18065 {rgb=(.6 .4 .4)} Face 29323 10379 10489 18065 {rgb=(.6 .4 .4)} Face 29324 10489 10458 18065 {rgb=(.6 .4 .4)} Face 29325 10500 10458 18066 {rgb=(.6 .4 .4)} Face 29326 10458 10489 18066 {rgb=(.6 .4 .4)} Face 29327 10489 10541 18066 {rgb=(.6 .4 .4)} Face 29328 10541 10500 18066 {rgb=(.6 .4 .4)} Face 29329 10489 10379 18067 {rgb=(.6 .4 .4)} Face 29330 10379 10438 18067 {rgb=(.6 .4 .4)} Face 29331 10438 10535 18067 {rgb=(.6 .4 .4)} Face 29332 10535 10489 18067 {rgb=(.6 .4 .4)} Face 29333 10541 10489 18068 {rgb=(.6 .4 .4)} Face 29334 10489 10535 18068 {rgb=(.6 .4 .4)} Face 29335 10535 10555 18068 {rgb=(.6 .4 .4)} Face 29336 10555 10541 18068 {rgb=(.6 .4 .4)} Face 29337 10315 10321 18069 {rgb=(.6 .4 .4)} Face 29338 10321 10387 18069 {rgb=(.6 .4 .4)} Face 29339 10387 10396 18069 {rgb=(.6 .4 .4)} Face 29340 10396 10315 18069 {rgb=(.6 .4 .4)} Face 29341 10379 10315 18070 {rgb=(.6 .4 .4)} Face 29342 10315 10396 18070 {rgb=(.6 .4 .4)} Face 29343 10396 10438 18070 {rgb=(.6 .4 .4)} Face 29344 10438 10379 18070 {rgb=(.6 .4 .4)} Face 29345 10396 10387 18071 {rgb=(.6 .4 .4)} Face 29346 10387 10551 18071 {rgb=(.6 .4 .4)} Face 29347 10551 10545 18071 {rgb=(.6 .4 .4)} Face 29348 10545 10396 18071 {rgb=(.6 .4 .4)} Face 29349 10438 10396 18072 {rgb=(.6 .4 .4)} Face 29350 10396 10545 18072 {rgb=(.6 .4 .4)} Face 29351 10545 10513 18072 {rgb=(.6 .4 .4)} Face 29352 10513 10438 18072 {rgb=(.6 .4 .4)} Face 29353 10535 10438 18073 {rgb=(.6 .4 .4)} Face 29354 10438 10513 18073 {rgb=(.6 .4 .4)} Face 29355 10513 10600 18073 {rgb=(.6 .4 .4)} Face 29356 10600 10535 18073 {rgb=(.6 .4 .4)} Face 29357 10555 10535 18074 {rgb=(.6 .4 .4)} Face 29358 10535 10600 18074 {rgb=(.6 .4 .4)} Face 29359 10600 10626 18074 {rgb=(.6 .4 .4)} Face 29360 10626 10555 18074 {rgb=(.6 .4 .4)} Face 29361 10551 10877 18075 {rgb=(.6 .4 .4)} Face 29362 10877 10871 18075 {rgb=(.6 .4 .4)} Face 29363 10871 10545 18075 {rgb=(.6 .4 .4)} Face 29364 10545 10551 18075 {rgb=(.6 .4 .4)} Face 29365 10626 10600 18076 {rgb=(.6 .4 .4)} Face 29366 10600 10744 18076 {rgb=(.6 .4 .4)} Face 29367 10744 10714 18076 {rgb=(.6 .4 .4)} Face 29368 10714 10626 18076 {rgb=(.6 .4 .4)} Face 29369 10513 10545 18077 {rgb=(.6 .4 .4)} Face 29370 10545 10871 18077 {rgb=(.6 .4 .4)} Face 29371 10871 10836 18077 {rgb=(.6 .4 .4)} Face 29372 10836 10513 18077 {rgb=(.6 .4 .4)} Face 29373 10600 10513 18078 {rgb=(.6 .4 .4)} Face 29374 10513 10836 18078 {rgb=(.6 .4 .4)} Face 29375 10836 10744 18078 {rgb=(.6 .4 .4)} Face 29376 10744 10600 18078 {rgb=(.6 .4 .4)} Face 29377 10975 11011 18079 {rgb=(.6 .4 .4)} Face 29378 11011 10959 18079 {rgb=(.6 .4 .4)} Face 29379 10959 10907 18079 {rgb=(.6 .4 .4)} Face 29380 10907 10975 18079 {rgb=(.6 .4 .4)} Face 29381 10833 10797 18080 {rgb=(.6 .4 .4)} Face 29382 10797 10767 18080 {rgb=(.6 .4 .4)} Face 29383 10767 10805 18080 {rgb=(.6 .4 .4)} Face 29384 10805 10833 18080 {rgb=(.6 .4 .4)} Face 29385 10738 10833 18081 {rgb=(.6 .4 .4)} Face 29386 10833 10805 18081 {rgb=(.6 .4 .4)} Face 29387 10805 10751 18081 {rgb=(.6 .4 .4)} Face 29388 10751 10738 18081 {rgb=(.6 .4 .4)} Face 29389 11015 11002 18082 {rgb=(.6 .4 .4)} Face 29390 11002 10908 18082 {rgb=(.6 .4 .4)} Face 29391 10908 10964 18082 {rgb=(.6 .4 .4)} Face 29392 10964 11015 18082 {rgb=(.6 .4 .4)} Face 29393 11009 10997 18083 {rgb=(.6 .4 .4)} Face 29394 10997 11002 18083 {rgb=(.6 .4 .4)} Face 29395 11002 11015 18083 {rgb=(.6 .4 .4)} Face 29396 11015 11009 18083 {rgb=(.6 .4 .4)} Face 29397 11025 11009 18084 {rgb=(.6 .4 .4)} Face 29398 11009 11015 18084 {rgb=(.6 .4 .4)} Face 29399 11015 11026 18084 {rgb=(.6 .4 .4)} Face 29400 11026 11025 18084 {rgb=(.6 .4 .4)} Face 29401 11005 11025 18085 {rgb=(.6 .4 .4)} Face 29402 11025 11026 18085 {rgb=(.6 .4 .4)} Face 29403 11026 11011 18085 {rgb=(.6 .4 .4)} Face 29404 11011 11005 18085 {rgb=(.6 .4 .4)} Face 29405 10973 11005 18086 {rgb=(.6 .4 .4)} Face 29406 11005 11011 18086 {rgb=(.6 .4 .4)} Face 29407 11011 10975 18086 {rgb=(.6 .4 .4)} Face 29408 10975 10973 18086 {rgb=(.6 .4 .4)} Face 29409 10835 10821 18087 {rgb=(.6 .4 .4)} Face 29410 10821 10797 18087 {rgb=(.6 .4 .4)} Face 29411 10797 10833 18087 {rgb=(.6 .4 .4)} Face 29412 10833 10835 18087 {rgb=(.6 .4 .4)} Face 29413 10773 10835 18088 {rgb=(.6 .4 .4)} Face 29414 10835 10833 18088 {rgb=(.6 .4 .4)} Face 29415 10833 10738 18088 {rgb=(.6 .4 .4)} Face 29416 10738 10773 18088 {rgb=(.6 .4 .4)} Face 29417 10711 10773 18089 {rgb=(.6 .4 .4)} Face 29418 10773 10738 18089 {rgb=(.6 .4 .4)} Face 29419 10738 10765 18089 {rgb=(.6 .4 .4)} Face 29420 10765 10711 18089 {rgb=(.6 .4 .4)} Face 29421 10813 10711 18090 {rgb=(.6 .4 .4)} Face 29422 10711 10765 18090 {rgb=(.6 .4 .4)} Face 29423 10765 10795 18090 {rgb=(.6 .4 .4)} Face 29424 10795 10813 18090 {rgb=(.6 .4 .4)} Face 29425 10925 10813 18091 {rgb=(.6 .4 .4)} Face 29426 10813 10795 18091 {rgb=(.6 .4 .4)} Face 29427 10795 10950 18091 {rgb=(.6 .4 .4)} Face 29428 10950 10925 18091 {rgb=(.6 .4 .4)} Face 29429 10963 10925 18092 {rgb=(.6 .4 .4)} Face 29430 10925 10950 18092 {rgb=(.6 .4 .4)} Face 29431 10950 10984 18092 {rgb=(.6 .4 .4)} Face 29432 10984 10963 18092 {rgb=(.6 .4 .4)} Face 29433 11000 10963 18093 {rgb=(.6 .4 .4)} Face 29434 10963 10984 18093 {rgb=(.6 .4 .4)} Face 29435 10984 11003 18093 {rgb=(.6 .4 .4)} Face 29436 11003 11000 18093 {rgb=(.6 .4 .4)} Face 29437 10979 11000 18094 {rgb=(.6 .4 .4)} Face 29438 11000 11003 18094 {rgb=(.6 .4 .4)} Face 29439 11003 10982 18094 {rgb=(.6 .4 .4)} Face 29440 10982 10979 18094 {rgb=(.6 .4 .4)} Face 29441 10997 10979 18095 {rgb=(.6 .4 .4)} Face 29442 10979 10982 18095 {rgb=(.6 .4 .4)} Face 29443 10982 11002 18095 {rgb=(.6 .4 .4)} Face 29444 11002 10997 18095 {rgb=(.6 .4 .4)} Face 29445 11002 10982 18096 {rgb=(.6 .4 .4)} Face 29446 10982 10923 18096 {rgb=(.6 .4 .4)} Face 29447 10923 10908 18096 {rgb=(.6 .4 .4)} Face 29448 10908 11002 18096 {rgb=(.6 .4 .4)} Face 29449 10765 10738 18097 {rgb=(.6 .4 .4)} Face 29450 10738 10751 18097 {rgb=(.6 .4 .4)} Face 29451 10751 10699 18097 {rgb=(.6 .4 .4)} Face 29452 10699 10765 18097 {rgb=(.6 .4 .4)} Face 29453 10795 10765 18098 {rgb=(.6 .4 .4)} Face 29454 10765 10699 18098 {rgb=(.6 .4 .4)} Face 29455 10699 10754 18098 {rgb=(.6 .4 .4)} Face 29456 10754 10795 18098 {rgb=(.6 .4 .4)} Face 29457 10950 10795 18099 {rgb=(.6 .4 .4)} Face 29458 10795 10754 18099 {rgb=(.6 .4 .4)} Face 29459 10754 10893 18099 {rgb=(.6 .4 .4)} Face 29460 10893 10950 18099 {rgb=(.6 .4 .4)} Face 29461 10984 10950 18100 {rgb=(.6 .4 .4)} Face 29462 10950 10893 18100 {rgb=(.6 .4 .4)} Face 29463 10893 10941 18100 {rgb=(.6 .4 .4)} Face 29464 10941 10984 18100 {rgb=(.6 .4 .4)} Face 29465 10540 10549 18101 {rgb=(.6 .4 .4)} Face 29466 10549 10643 18101 {rgb=(.6 .4 .4)} Face 29467 10643 10769 18101 {rgb=(.6 .4 .4)} Face 29468 10769 10540 18101 {rgb=(.6 .4 .4)} Face 29469 10611 10540 18102 {rgb=(.6 .4 .4)} Face 29470 10540 10769 18102 {rgb=(.6 .4 .4)} Face 29471 10769 10838 18102 {rgb=(.6 .4 .4)} Face 29472 10838 10611 18102 {rgb=(.6 .4 .4)} Face 29473 10549 10593 18103 {rgb=(.6 .4 .4)} Face 29474 10593 10628 18103 {rgb=(.6 .4 .4)} Face 29475 10628 10643 18103 {rgb=(.6 .4 .4)} Face 29476 10643 10549 18103 {rgb=(.6 .4 .4)} Face 29477 10854 10638 18104 {rgb=(.6 .4 .4)} Face 29478 10638 10611 18104 {rgb=(.6 .4 .4)} Face 29479 10611 10838 18104 {rgb=(.6 .4 .4)} Face 29480 10838 10854 18104 {rgb=(.6 .4 .4)} Face 29481 10486 10558 18105 {rgb=(.6 .4 .4)} Face 29482 10558 10593 18105 {rgb=(.6 .4 .4)} Face 29483 10593 10549 18105 {rgb=(.6 .4 .4)} Face 29484 10549 10486 18105 {rgb=(.6 .4 .4)} Face 29485 10435 10486 18106 {rgb=(.6 .4 .4)} Face 29486 10486 10549 18106 {rgb=(.6 .4 .4)} Face 29487 10549 10540 18106 {rgb=(.6 .4 .4)} Face 29488 10540 10435 18106 {rgb=(.6 .4 .4)} Face 29489 10440 10435 18107 {rgb=(.6 .4 .4)} Face 29490 10435 10540 18107 {rgb=(.6 .4 .4)} Face 29491 10540 10611 18107 {rgb=(.6 .4 .4)} Face 29492 10611 10440 18107 {rgb=(.6 .4 .4)} Face 29493 10477 10440 18108 {rgb=(.6 .4 .4)} Face 29494 10440 10611 18108 {rgb=(.6 .4 .4)} Face 29495 10611 10638 18108 {rgb=(.6 .4 .4)} Face 29496 10638 10477 18108 {rgb=(.6 .4 .4)} Face 29497 10341 10384 18109 {rgb=(.6 .4 .4)} Face 29498 10384 10435 18109 {rgb=(.6 .4 .4)} Face 29499 10435 10440 18109 {rgb=(.6 .4 .4)} Face 29500 10440 10341 18109 {rgb=(.6 .4 .4)} Face 29501 10362 10341 18110 {rgb=(.6 .4 .4)} Face 29502 10341 10440 18110 {rgb=(.6 .4 .4)} Face 29503 10440 10477 18110 {rgb=(.6 .4 .4)} Face 29504 10477 10362 18110 {rgb=(.6 .4 .4)} Face 29505 10461 10529 18111 {rgb=(.6 .4 .4)} Face 29506 10529 10558 18111 {rgb=(.6 .4 .4)} Face 29507 10558 10486 18111 {rgb=(.6 .4 .4)} Face 29508 10486 10461 18111 {rgb=(.6 .4 .4)} Face 29509 10384 10461 18112 {rgb=(.6 .4 .4)} Face 29510 10461 10486 18112 {rgb=(.6 .4 .4)} Face 29511 10486 10435 18112 {rgb=(.6 .4 .4)} Face 29512 10435 10384 18112 {rgb=(.6 .4 .4)} Face 29513 10372 10409 18113 {rgb=(.6 .4 .4)} Face 29514 10409 10529 18113 {rgb=(.6 .4 .4)} Face 29515 10529 10461 18113 {rgb=(.6 .4 .4)} Face 29516 10461 10372 18113 {rgb=(.6 .4 .4)} Face 29517 10290 10372 18114 {rgb=(.6 .4 .4)} Face 29518 10372 10461 18114 {rgb=(.6 .4 .4)} Face 29519 10461 10384 18114 {rgb=(.6 .4 .4)} Face 29520 10384 10290 18114 {rgb=(.6 .4 .4)} Face 29521 10240 10290 18115 {rgb=(.6 .4 .4)} Face 29522 10290 10384 18115 {rgb=(.6 .4 .4)} Face 29523 10384 10341 18115 {rgb=(.6 .4 .4)} Face 29524 10341 10240 18115 {rgb=(.6 .4 .4)} Face 29525 10244 10240 18116 {rgb=(.6 .4 .4)} Face 29526 10240 10341 18116 {rgb=(.6 .4 .4)} Face 29527 10341 10362 18116 {rgb=(.6 .4 .4)} Face 29528 10362 10244 18116 {rgb=(.6 .4 .4)} Face 29529 10258 10351 18117 {rgb=(.6 .4 .4)} Face 29530 10351 10372 18117 {rgb=(.6 .4 .4)} Face 29531 10372 10290 18117 {rgb=(.6 .4 .4)} Face 29532 10290 10258 18117 {rgb=(.6 .4 .4)} Face 29533 10215 10258 18118 {rgb=(.6 .4 .4)} Face 29534 10258 10290 18118 {rgb=(.6 .4 .4)} Face 29535 10290 10240 18118 {rgb=(.6 .4 .4)} Face 29536 10240 10215 18118 {rgb=(.6 .4 .4)} Face 29537 10220 10215 18119 {rgb=(.6 .4 .4)} Face 29538 10215 10240 18119 {rgb=(.6 .4 .4)} Face 29539 10240 10244 18119 {rgb=(.6 .4 .4)} Face 29540 10244 10220 18119 {rgb=(.6 .4 .4)} Face 29541 10351 10391 18120 {rgb=(.6 .4 .4)} Face 29542 10391 10409 18120 {rgb=(.6 .4 .4)} Face 29543 10409 10372 18120 {rgb=(.6 .4 .4)} Face 29544 10372 10351 18120 {rgb=(.6 .4 .4)} Face 29545 10242 10241 18121 {rgb=(.6 .4 .4)} Face 29546 10241 10215 18121 {rgb=(.6 .4 .4)} Face 29547 10215 10220 18121 {rgb=(.6 .4 .4)} Face 29548 10220 10242 18121 {rgb=(.6 .4 .4)} Face 29549 10358 10411 18122 {rgb=(.6 .4 .4)} Face 29550 10411 10391 18122 {rgb=(.6 .4 .4)} Face 29551 10391 10351 18122 {rgb=(.6 .4 .4)} Face 29552 10351 10358 18122 {rgb=(.6 .4 .4)} Face 29553 10279 10358 18123 {rgb=(.6 .4 .4)} Face 29554 10358 10351 18123 {rgb=(.6 .4 .4)} Face 29555 10351 10258 18123 {rgb=(.6 .4 .4)} Face 29556 10258 10279 18123 {rgb=(.6 .4 .4)} Face 29557 10241 10279 18124 {rgb=(.6 .4 .4)} Face 29558 10279 10258 18124 {rgb=(.6 .4 .4)} Face 29559 10258 10215 18124 {rgb=(.6 .4 .4)} Face 29560 10215 10241 18124 {rgb=(.6 .4 .4)} Face 29561 10434 10476 18125 {rgb=(.6 .4 .4)} Face 29562 10476 10411 18125 {rgb=(.6 .4 .4)} Face 29563 10411 10358 18125 {rgb=(.6 .4 .4)} Face 29564 10358 10434 18125 {rgb=(.6 .4 .4)} Face 29565 10357 10434 18126 {rgb=(.6 .4 .4)} Face 29566 10434 10358 18126 {rgb=(.6 .4 .4)} Face 29567 10358 10279 18126 {rgb=(.6 .4 .4)} Face 29568 10279 10357 18126 {rgb=(.6 .4 .4)} Face 29569 10343 10357 18127 {rgb=(.6 .4 .4)} Face 29570 10357 10279 18127 {rgb=(.6 .4 .4)} Face 29571 10279 10241 18127 {rgb=(.6 .4 .4)} Face 29572 10241 10343 18127 {rgb=(.6 .4 .4)} Face 29573 10328 10343 18128 {rgb=(.6 .4 .4)} Face 29574 10343 10241 18128 {rgb=(.6 .4 .4)} Face 29575 10241 10242 18128 {rgb=(.6 .4 .4)} Face 29576 10242 10328 18128 {rgb=(.6 .4 .4)} Face 29577 10444 10431 18129 {rgb=(.6 .4 .4)} Face 29578 10431 10357 18129 {rgb=(.6 .4 .4)} Face 29579 10357 10343 18129 {rgb=(.6 .4 .4)} Face 29580 10343 10444 18129 {rgb=(.6 .4 .4)} Face 29581 10443 10444 18130 {rgb=(.6 .4 .4)} Face 29582 10444 10343 18130 {rgb=(.6 .4 .4)} Face 29583 10343 10365 18130 {rgb=(.6 .4 .4)} Face 29584 10365 10443 18130 {rgb=(.6 .4 .4)} Face 29585 10509 10579 18131 {rgb=(.6 .4 .4)} Face 29586 10579 10476 18131 {rgb=(.6 .4 .4)} Face 29587 10476 10434 18131 {rgb=(.6 .4 .4)} Face 29588 10434 10509 18131 {rgb=(.6 .4 .4)} Face 29589 10431 10509 18132 {rgb=(.6 .4 .4)} Face 29590 10509 10434 18132 {rgb=(.6 .4 .4)} Face 29591 10434 10357 18132 {rgb=(.6 .4 .4)} Face 29592 10357 10431 18132 {rgb=(.6 .4 .4)} Face 29593 10443 10490 18133 {rgb=(.6 .4 .4)} Face 29594 10490 10505 18133 {rgb=(.6 .4 .4)} Face 29595 10505 10444 18133 {rgb=(.6 .4 .4)} Face 29596 10444 10443 18133 {rgb=(.6 .4 .4)} Face 29597 10431 10514 18134 {rgb=(.6 .4 .4)} Face 29598 10514 10580 18134 {rgb=(.6 .4 .4)} Face 29599 10580 10509 18134 {rgb=(.6 .4 .4)} Face 29600 10509 10431 18134 {rgb=(.6 .4 .4)} Face 29601 10580 10514 18135 {rgb=(.6 .4 .4)} Face 29602 10514 10548 18135 {rgb=(.6 .4 .4)} Face 29603 10548 10599 18135 {rgb=(.6 .4 .4)} Face 29604 10599 10580 18135 {rgb=(.6 .4 .4)} Face 29605 10328 10344 18136 {rgb=(.6 .4 .4)} Face 29606 10344 10365 18136 {rgb=(.6 .4 .4)} Face 29607 10365 10343 18136 {rgb=(.6 .4 .4)} Face 29608 10343 10328 18136 {rgb=(.6 .4 .4)} Face 29609 10490 10504 18137 {rgb=(.6 .4 .4)} Face 29610 10504 10521 18137 {rgb=(.6 .4 .4)} Face 29611 10521 10505 18137 {rgb=(.6 .4 .4)} Face 29612 10505 10490 18137 {rgb=(.6 .4 .4)} Face 29613 10571 10615 18138 {rgb=(.6 .4 .4)} Face 29614 10615 10599 18138 {rgb=(.6 .4 .4)} Face 29615 10599 10548 18138 {rgb=(.6 .4 .4)} Face 29616 10548 10571 18138 {rgb=(.6 .4 .4)} Face 29617 10571 10548 18139 {rgb=(.6 .4 .4)} Face 29618 10548 10505 18139 {rgb=(.6 .4 .4)} Face 29619 10505 10521 18139 {rgb=(.6 .4 .4)} Face 29620 10521 10571 18139 {rgb=(.6 .4 .4)} Face 29621 10548 10514 18140 {rgb=(.6 .4 .4)} Face 29622 10514 10444 18140 {rgb=(.6 .4 .4)} Face 29623 10444 10505 18140 {rgb=(.6 .4 .4)} Face 29624 10505 10548 18140 {rgb=(.6 .4 .4)} Face 29625 10699 10751 18141 {rgb=(.6 .4 .4)} Face 29626 10751 10643 18141 {rgb=(.6 .4 .4)} Face 29627 10643 10628 18141 {rgb=(.6 .4 .4)} Face 29628 10628 10699 18141 {rgb=(.6 .4 .4)} Face 29629 10923 10936 18142 {rgb=(.6 .4 .4)} Face 29630 10936 10854 18142 {rgb=(.6 .4 .4)} Face 29631 10854 10838 18142 {rgb=(.6 .4 .4)} Face 29632 10838 10923 18142 {rgb=(.6 .4 .4)} Face 29633 10908 10923 18143 {rgb=(.6 .4 .4)} Face 29634 10923 10838 18143 {rgb=(.6 .4 .4)} Face 29635 10838 10769 18143 {rgb=(.6 .4 .4)} Face 29636 10769 10908 18143 {rgb=(.6 .4 .4)} Face 29637 10893 10754 18144 {rgb=(.6 .4 .4)} Face 29638 10754 10708 18144 {rgb=(.6 .4 .4)} Face 29639 10708 10820 18144 {rgb=(.6 .4 .4)} Face 29640 10820 10893 18144 {rgb=(.6 .4 .4)} Face 29641 10941 10893 18145 {rgb=(.6 .4 .4)} Face 29642 10893 10820 18145 {rgb=(.6 .4 .4)} Face 29643 10820 10847 18145 {rgb=(.6 .4 .4)} Face 29644 10847 10941 18145 {rgb=(.6 .4 .4)} Face 29645 10936 10941 18146 {rgb=(.6 .4 .4)} Face 29646 10941 10847 18146 {rgb=(.6 .4 .4)} Face 29647 10847 10854 18146 {rgb=(.6 .4 .4)} Face 29648 10854 10936 18146 {rgb=(.6 .4 .4)} Face 29649 10754 10699 18147 {rgb=(.6 .4 .4)} Face 29650 10699 10628 18147 {rgb=(.6 .4 .4)} Face 29651 10628 10708 18147 {rgb=(.6 .4 .4)} Face 29652 10708 10754 18147 {rgb=(.6 .4 .4)} Face 29653 10544 10563 18148 {rgb=(.6 .4 .4)} Face 29654 10563 10517 18148 {rgb=(.6 .4 .4)} Face 29655 10517 10475 18148 {rgb=(.6 .4 .4)} Face 29656 10475 10544 18148 {rgb=(.6 .4 .4)} Face 29657 10563 10571 18149 {rgb=(.6 .4 .4)} Face 29658 10571 10521 18149 {rgb=(.6 .4 .4)} Face 29659 10521 10517 18149 {rgb=(.6 .4 .4)} Face 29660 10517 10563 18149 {rgb=(.6 .4 .4)} Face 29661 10615 10571 18150 {rgb=(.6 .4 .4)} Face 29662 10571 10563 18150 {rgb=(.6 .4 .4)} Face 29663 10563 10610 18150 {rgb=(.6 .4 .4)} Face 29664 10610 10615 18150 {rgb=(.6 .4 .4)} Face 29665 10504 10507 18151 {rgb=(.6 .4 .4)} Face 29666 10507 10517 18151 {rgb=(.6 .4 .4)} Face 29667 10517 10521 18151 {rgb=(.6 .4 .4)} Face 29668 10521 10504 18151 {rgb=(.6 .4 .4)} Face 29669 10344 10328 18152 {rgb=(.6 .4 .4)} Face 29670 10328 10361 18152 {rgb=(.6 .4 .4)} Face 29671 10361 10381 18152 {rgb=(.6 .4 .4)} Face 29672 10381 10344 18152 {rgb=(.6 .4 .4)} Face 29673 10544 10598 18153 {rgb=(.6 .4 .4)} Face 29674 10598 10610 18153 {rgb=(.6 .4 .4)} Face 29675 10610 10563 18153 {rgb=(.6 .4 .4)} Face 29676 10563 10544 18153 {rgb=(.6 .4 .4)} Face 29677 10544 10465 18154 {rgb=(.6 .4 .4)} Face 29678 10465 10538 18154 {rgb=(.6 .4 .4)} Face 29679 10538 10598 18154 {rgb=(.6 .4 .4)} Face 29680 10598 10544 18154 {rgb=(.6 .4 .4)} Face 29681 10507 10469 18155 {rgb=(.6 .4 .4)} Face 29682 10469 10475 18155 {rgb=(.6 .4 .4)} Face 29683 10475 10517 18155 {rgb=(.6 .4 .4)} Face 29684 10517 10507 18155 {rgb=(.6 .4 .4)} Face 29685 10538 10465 18156 {rgb=(.6 .4 .4)} Face 29686 10465 10386 18156 {rgb=(.6 .4 .4)} Face 29687 10386 10456 18156 {rgb=(.6 .4 .4)} Face 29688 10456 10538 18156 {rgb=(.6 .4 .4)} Face 29689 10579 10538 18157 {rgb=(.6 .4 .4)} Face 29690 10538 10456 18157 {rgb=(.6 .4 .4)} Face 29691 10456 10476 18157 {rgb=(.6 .4 .4)} Face 29692 10476 10579 18157 {rgb=(.6 .4 .4)} Face 29693 10475 10469 18158 {rgb=(.6 .4 .4)} Face 29694 10469 10381 18158 {rgb=(.6 .4 .4)} Face 29695 10381 10361 18158 {rgb=(.6 .4 .4)} Face 29696 10361 10475 18158 {rgb=(.6 .4 .4)} Face 29697 10465 10475 18159 {rgb=(.6 .4 .4)} Face 29698 10475 10361 18159 {rgb=(.6 .4 .4)} Face 29699 10361 10386 18159 {rgb=(.6 .4 .4)} Face 29700 10386 10465 18159 {rgb=(.6 .4 .4)} Face 29701 10361 10328 18160 {rgb=(.6 .4 .4)} Face 29702 10328 10242 18160 {rgb=(.6 .4 .4)} Face 29703 10242 10252 18160 {rgb=(.6 .4 .4)} Face 29704 10252 10361 18160 {rgb=(.6 .4 .4)} Face 29705 10386 10361 18161 {rgb=(.6 .4 .4)} Face 29706 10361 10252 18161 {rgb=(.6 .4 .4)} Face 29707 10252 10294 18161 {rgb=(.6 .4 .4)} Face 29708 10294 10386 18161 {rgb=(.6 .4 .4)} Face 29709 10456 10386 18162 {rgb=(.6 .4 .4)} Face 29710 10386 10294 18162 {rgb=(.6 .4 .4)} Face 29711 10294 10383 18162 {rgb=(.6 .4 .4)} Face 29712 10383 10456 18162 {rgb=(.6 .4 .4)} Face 29713 10476 10456 18163 {rgb=(.6 .4 .4)} Face 29714 10456 10383 18163 {rgb=(.6 .4 .4)} Face 29715 10383 10411 18163 {rgb=(.6 .4 .4)} Face 29716 10411 10476 18163 {rgb=(.6 .4 .4)} Face 29717 10294 10252 18164 {rgb=(.6 .4 .4)} Face 29718 10252 10225 18164 {rgb=(.6 .4 .4)} Face 29719 10225 10288 18164 {rgb=(.6 .4 .4)} Face 29720 10288 10294 18164 {rgb=(.6 .4 .4)} Face 29721 10411 10383 18165 {rgb=(.6 .4 .4)} Face 29722 10383 10373 18165 {rgb=(.6 .4 .4)} Face 29723 10373 10391 18165 {rgb=(.6 .4 .4)} Face 29724 10391 10411 18165 {rgb=(.6 .4 .4)} Face 29725 10252 10242 18166 {rgb=(.6 .4 .4)} Face 29726 10242 10220 18166 {rgb=(.6 .4 .4)} Face 29727 10220 10225 18166 {rgb=(.6 .4 .4)} Face 29728 10225 10252 18166 {rgb=(.6 .4 .4)} Face 29729 10391 10373 18167 {rgb=(.6 .4 .4)} Face 29730 10373 10395 18167 {rgb=(.6 .4 .4)} Face 29731 10395 10409 18167 {rgb=(.6 .4 .4)} Face 29732 10409 10391 18167 {rgb=(.6 .4 .4)} Face 29733 10225 10220 18168 {rgb=(.6 .4 .4)} Face 29734 10220 10244 18168 {rgb=(.6 .4 .4)} Face 29735 10244 10247 18168 {rgb=(.6 .4 .4)} Face 29736 10247 10225 18168 {rgb=(.6 .4 .4)} Face 29737 10288 10225 18169 {rgb=(.6 .4 .4)} Face 29738 10225 10247 18169 {rgb=(.6 .4 .4)} Face 29739 10247 10303 18169 {rgb=(.6 .4 .4)} Face 29740 10303 10288 18169 {rgb=(.6 .4 .4)} Face 29741 10373 10288 18170 {rgb=(.6 .4 .4)} Face 29742 10288 10303 18170 {rgb=(.6 .4 .4)} Face 29743 10303 10395 18170 {rgb=(.6 .4 .4)} Face 29744 10395 10373 18170 {rgb=(.6 .4 .4)} Face 29745 10247 10244 18171 {rgb=(.6 .4 .4)} Face 29746 10244 10362 18171 {rgb=(.6 .4 .4)} Face 29747 10362 10360 18171 {rgb=(.6 .4 .4)} Face 29748 10360 10247 18171 {rgb=(.6 .4 .4)} Face 29749 10303 10247 18172 {rgb=(.6 .4 .4)} Face 29750 10247 10360 18172 {rgb=(.6 .4 .4)} Face 29751 10360 10425 18172 {rgb=(.6 .4 .4)} Face 29752 10425 10303 18172 {rgb=(.6 .4 .4)} Face 29753 10395 10303 18173 {rgb=(.6 .4 .4)} Face 29754 10303 10425 18173 {rgb=(.6 .4 .4)} Face 29755 10425 10502 18173 {rgb=(.6 .4 .4)} Face 29756 10502 10395 18173 {rgb=(.6 .4 .4)} Face 29757 10409 10395 18174 {rgb=(.6 .4 .4)} Face 29758 10395 10502 18174 {rgb=(.6 .4 .4)} Face 29759 10502 10529 18174 {rgb=(.6 .4 .4)} Face 29760 10529 10409 18174 {rgb=(.6 .4 .4)} Face 29761 10502 10425 18175 {rgb=(.6 .4 .4)} Face 29762 10425 10492 18175 {rgb=(.6 .4 .4)} Face 29763 10492 10539 18175 {rgb=(.6 .4 .4)} Face 29764 10539 10502 18175 {rgb=(.6 .4 .4)} Face 29765 10529 10502 18176 {rgb=(.6 .4 .4)} Face 29766 10502 10539 18176 {rgb=(.6 .4 .4)} Face 29767 10539 10558 18176 {rgb=(.6 .4 .4)} Face 29768 10558 10529 18176 {rgb=(.6 .4 .4)} Face 29769 10360 10362 18177 {rgb=(.6 .4 .4)} Face 29770 10362 10477 18177 {rgb=(.6 .4 .4)} Face 29771 10477 10478 18177 {rgb=(.6 .4 .4)} Face 29772 10478 10360 18177 {rgb=(.6 .4 .4)} Face 29773 10425 10360 18178 {rgb=(.6 .4 .4)} Face 29774 10360 10478 18178 {rgb=(.6 .4 .4)} Face 29775 10478 10492 18178 {rgb=(.6 .4 .4)} Face 29776 10492 10425 18178 {rgb=(.6 .4 .4)} Face 29777 10478 10477 18179 {rgb=(.6 .4 .4)} Face 29778 10477 10638 18179 {rgb=(.6 .4 .4)} Face 29779 10638 10633 18179 {rgb=(.6 .4 .4)} Face 29780 10633 10478 18179 {rgb=(.6 .4 .4)} Face 29781 10492 10478 18180 {rgb=(.6 .4 .4)} Face 29782 10478 10633 18180 {rgb=(.6 .4 .4)} Face 29783 10633 10605 18180 {rgb=(.6 .4 .4)} Face 29784 10605 10492 18180 {rgb=(.6 .4 .4)} Face 29785 10539 10492 18181 {rgb=(.6 .4 .4)} Face 29786 10492 10605 18181 {rgb=(.6 .4 .4)} Face 29787 10605 10608 18181 {rgb=(.6 .4 .4)} Face 29788 10608 10539 18181 {rgb=(.6 .4 .4)} Face 29789 10558 10539 18182 {rgb=(.6 .4 .4)} Face 29790 10539 10608 18182 {rgb=(.6 .4 .4)} Face 29791 10608 10593 18182 {rgb=(.6 .4 .4)} Face 29792 10593 10558 18182 {rgb=(.6 .4 .4)} Face 29793 10638 10854 18183 {rgb=(.6 .4 .4)} Face 29794 10854 10847 18183 {rgb=(.6 .4 .4)} Face 29795 10847 10633 18183 {rgb=(.6 .4 .4)} Face 29796 10633 10638 18183 {rgb=(.6 .4 .4)} Face 29797 10593 10608 18184 {rgb=(.6 .4 .4)} Face 29798 10608 10708 18184 {rgb=(.6 .4 .4)} Face 29799 10708 10628 18184 {rgb=(.6 .4 .4)} Face 29800 10628 10593 18184 {rgb=(.6 .4 .4)} Face 29801 10605 10633 18185 {rgb=(.6 .4 .4)} Face 29802 10633 10847 18185 {rgb=(.6 .4 .4)} Face 29803 10847 10820 18185 {rgb=(.6 .4 .4)} Face 29804 10820 10605 18185 {rgb=(.6 .4 .4)} Face 29805 10608 10605 18186 {rgb=(.6 .4 .4)} Face 29806 10605 10820 18186 {rgb=(.6 .4 .4)} Face 29807 10820 10708 18186 {rgb=(.6 .4 .4)} Face 29808 10708 10608 18186 {rgb=(.6 .4 .4)} Face 29809 10679 10590 18187 {rgb=(.6 .4 .4)} Face 29810 10590 10420 18187 {rgb=(.6 .4 .4)} Face 29811 10420 10488 18187 {rgb=(.6 .4 .4)} Face 29812 10488 10679 18187 {rgb=(.6 .4 .4)} Face 29813 10590 10463 18188 {rgb=(.6 .4 .4)} Face 29814 10463 10349 18188 {rgb=(.6 .4 .4)} Face 29815 10349 10420 18188 {rgb=(.6 .4 .4)} Face 29816 10420 10590 18188 {rgb=(.6 .4 .4)} Face 29817 10463 10350 18189 {rgb=(.6 .4 .4)} Face 29818 10350 10291 18189 {rgb=(.6 .4 .4)} Face 29819 10291 10349 18189 {rgb=(.6 .4 .4)} Face 29820 10349 10463 18189 {rgb=(.6 .4 .4)} Face 29821 10350 10275 18190 {rgb=(.6 .4 .4)} Face 29822 10275 10245 18190 {rgb=(.6 .4 .4)} Face 29823 10245 10291 18190 {rgb=(.6 .4 .4)} Face 29824 10291 10350 18190 {rgb=(.6 .4 .4)} Face 29825 10275 10320 18191 {rgb=(.6 .4 .4)} Face 29826 10320 10262 18191 {rgb=(.6 .4 .4)} Face 29827 10262 10245 18191 {rgb=(.6 .4 .4)} Face 29828 10245 10275 18191 {rgb=(.6 .4 .4)} Face 29829 10320 10400 18192 {rgb=(.6 .4 .4)} Face 29830 10400 10345 18192 {rgb=(.6 .4 .4)} Face 29831 10345 10262 18192 {rgb=(.6 .4 .4)} Face 29832 10262 10320 18192 {rgb=(.6 .4 .4)} Face 29833 10400 10546 18193 {rgb=(.6 .4 .4)} Face 29834 10546 10452 18193 {rgb=(.6 .4 .4)} Face 29835 10452 10345 18193 {rgb=(.6 .4 .4)} Face 29836 10345 10400 18193 {rgb=(.6 .4 .4)} Face 29837 10546 10679 18194 {rgb=(.6 .4 .4)} Face 29838 10679 10488 18194 {rgb=(.6 .4 .4)} Face 29839 10488 10452 18194 {rgb=(.6 .4 .4)} Face 29840 10452 10546 18194 {rgb=(.6 .4 .4)} Face 29841 10574 10374 18195 {rgb=(.6 .4 .4)} Face 29842 10374 10419 18195 {rgb=(.6 .4 .4)} Face 29843 10419 10636 18195 {rgb=(.6 .4 .4)} Face 29844 10636 10574 18195 {rgb=(.6 .4 .4)} Face 29845 10742 10574 18196 {rgb=(.6 .4 .4)} Face 29846 10574 10636 18196 {rgb=(.6 .4 .4)} Face 29847 10636 10798 18196 {rgb=(.6 .4 .4)} Face 29848 10798 10742 18196 {rgb=(.6 .4 .4)} Face 29849 10740 10742 18197 {rgb=(.6 .4 .4)} Face 29850 10742 10798 18197 {rgb=(.6 .4 .4)} Face 29851 10798 10772 18197 {rgb=(.6 .4 .4)} Face 29852 10772 10740 18197 {rgb=(.6 .4 .4)} Face 29853 10588 10740 18198 {rgb=(.6 .4 .4)} Face 29854 10740 10772 18198 {rgb=(.6 .4 .4)} Face 29855 10772 10689 18198 {rgb=(.6 .4 .4)} Face 29856 10689 10588 18198 {rgb=(.6 .4 .4)} Face 29857 10590 10679 18199 {rgb=(.6 .4 .4)} Face 29858 10679 10742 18199 {rgb=(.6 .4 .4)} Face 29859 10742 10740 18199 {rgb=(.6 .4 .4)} Face 29860 10740 10590 18199 {rgb=(.6 .4 .4)} Face 29861 10463 10590 18200 {rgb=(.6 .4 .4)} Face 29862 10590 10740 18200 {rgb=(.6 .4 .4)} Face 29863 10740 10588 18200 {rgb=(.6 .4 .4)} Face 29864 10588 10463 18200 {rgb=(.6 .4 .4)} Face 29865 10546 10400 18201 {rgb=(.6 .4 .4)} Face 29866 10400 10374 18201 {rgb=(.6 .4 .4)} Face 29867 10374 10574 18201 {rgb=(.6 .4 .4)} Face 29868 10574 10546 18201 {rgb=(.6 .4 .4)} Face 29869 10679 10546 18202 {rgb=(.6 .4 .4)} Face 29870 10546 10574 18202 {rgb=(.6 .4 .4)} Face 29871 10574 10742 18202 {rgb=(.6 .4 .4)} Face 29872 10742 10679 18202 {rgb=(.6 .4 .4)} Face 29873 10359 10297 18203 {rgb=(.6 .4 .4)} Face 29874 10297 10345 18203 {rgb=(.6 .4 .4)} Face 29875 10345 10452 18203 {rgb=(.6 .4 .4)} Face 29876 10452 10359 18203 {rgb=(.6 .4 .4)} Face 29877 10346 10359 18204 {rgb=(.6 .4 .4)} Face 29878 10359 10452 18204 {rgb=(.6 .4 .4)} Face 29879 10452 10488 18204 {rgb=(.6 .4 .4)} Face 29880 10488 10346 18204 {rgb=(.6 .4 .4)} Face 29881 10313 10346 18205 {rgb=(.6 .4 .4)} Face 29882 10346 10488 18205 {rgb=(.6 .4 .4)} Face 29883 10488 10420 18205 {rgb=(.6 .4 .4)} Face 29884 10420 10313 18205 {rgb=(.6 .4 .4)} Face 29885 10272 10313 18206 {rgb=(.6 .4 .4)} Face 29886 10313 10420 18206 {rgb=(.6 .4 .4)} Face 29887 10420 10349 18206 {rgb=(.6 .4 .4)} Face 29888 10349 10272 18206 {rgb=(.6 .4 .4)} Face 29889 10330 10354 18207 {rgb=(.6 .4 .4)} Face 29890 10354 10359 18207 {rgb=(.6 .4 .4)} Face 29891 10359 10346 18207 {rgb=(.6 .4 .4)} Face 29892 10346 10330 18207 {rgb=(.6 .4 .4)} Face 29893 10276 10330 18208 {rgb=(.6 .4 .4)} Face 29894 10330 10346 18208 {rgb=(.6 .4 .4)} Face 29895 10346 10313 18208 {rgb=(.6 .4 .4)} Face 29896 10313 10276 18208 {rgb=(.6 .4 .4)} Face 29897 10217 10276 18209 {rgb=(.6 .4 .4)} Face 29898 10276 10313 18209 {rgb=(.6 .4 .4)} Face 29899 10313 10272 18209 {rgb=(.6 .4 .4)} Face 29900 10272 10217 18209 {rgb=(.6 .4 .4)} Face 29901 10354 10295 18210 {rgb=(.6 .4 .4)} Face 29902 10295 10297 18210 {rgb=(.6 .4 .4)} Face 29903 10297 10359 18210 {rgb=(.6 .4 .4)} Face 29904 10359 10354 18210 {rgb=(.6 .4 .4)} Face 29905 10205 10237 18211 {rgb=(.6 .4 .4)} Face 29906 10237 10276 18211 {rgb=(.6 .4 .4)} Face 29907 10276 10217 18211 {rgb=(.6 .4 .4)} Face 29908 10217 10205 18211 {rgb=(.6 .4 .4)} Face 29909 10329 10282 18212 {rgb=(.6 .4 .4)} Face 29910 10282 10295 18212 {rgb=(.6 .4 .4)} Face 29911 10295 10354 18212 {rgb=(.6 .4 .4)} Face 29912 10354 10329 18212 {rgb=(.6 .4 .4)} Face 29913 10302 10329 18213 {rgb=(.6 .4 .4)} Face 29914 10329 10354 18213 {rgb=(.6 .4 .4)} Face 29915 10354 10330 18213 {rgb=(.6 .4 .4)} Face 29916 10330 10302 18213 {rgb=(.6 .4 .4)} Face 29917 10237 10302 18214 {rgb=(.6 .4 .4)} Face 29918 10302 10330 18214 {rgb=(.6 .4 .4)} Face 29919 10330 10276 18214 {rgb=(.6 .4 .4)} Face 29920 10276 10237 18214 {rgb=(.6 .4 .4)} Face 29921 10286 10238 18215 {rgb=(.6 .4 .4)} Face 29922 10238 10282 18215 {rgb=(.6 .4 .4)} Face 29923 10282 10329 18215 {rgb=(.6 .4 .4)} Face 29924 10329 10286 18215 {rgb=(.6 .4 .4)} Face 29925 10267 10286 18216 {rgb=(.6 .4 .4)} Face 29926 10286 10329 18216 {rgb=(.6 .4 .4)} Face 29927 10329 10302 18216 {rgb=(.6 .4 .4)} Face 29928 10302 10267 18216 {rgb=(.6 .4 .4)} Face 29929 10221 10267 18217 {rgb=(.6 .4 .4)} Face 29930 10267 10302 18217 {rgb=(.6 .4 .4)} Face 29931 10302 10237 18217 {rgb=(.6 .4 .4)} Face 29932 10237 10221 18217 {rgb=(.6 .4 .4)} Face 29933 10185 10221 18218 {rgb=(.6 .4 .4)} Face 29934 10221 10237 18218 {rgb=(.6 .4 .4)} Face 29935 10237 10205 18218 {rgb=(.6 .4 .4)} Face 29936 10205 10185 18218 {rgb=(.6 .4 .4)} Face 29937 10206 10234 18219 {rgb=(.6 .4 .4)} Face 29938 10234 10267 18219 {rgb=(.6 .4 .4)} Face 29939 10267 10221 18219 {rgb=(.6 .4 .4)} Face 29940 10221 10206 18219 {rgb=(.6 .4 .4)} Face 29941 10200 10206 18220 {rgb=(.6 .4 .4)} Face 29942 10206 10221 18220 {rgb=(.6 .4 .4)} Face 29943 10221 10207 18220 {rgb=(.6 .4 .4)} Face 29944 10207 10200 18220 {rgb=(.6 .4 .4)} Face 29945 10239 10202 18221 {rgb=(.6 .4 .4)} Face 29946 10202 10238 18221 {rgb=(.6 .4 .4)} Face 29947 10238 10286 18221 {rgb=(.6 .4 .4)} Face 29948 10286 10239 18221 {rgb=(.6 .4 .4)} Face 29949 10234 10239 18222 {rgb=(.6 .4 .4)} Face 29950 10239 10286 18222 {rgb=(.6 .4 .4)} Face 29951 10286 10267 18222 {rgb=(.6 .4 .4)} Face 29952 10267 10234 18222 {rgb=(.6 .4 .4)} Face 29953 10200 10168 18223 {rgb=(.6 .4 .4)} Face 29954 10168 10172 18223 {rgb=(.6 .4 .4)} Face 29955 10172 10206 18223 {rgb=(.6 .4 .4)} Face 29956 10206 10200 18223 {rgb=(.6 .4 .4)} Face 29957 10234 10204 18224 {rgb=(.6 .4 .4)} Face 29958 10204 10212 18224 {rgb=(.6 .4 .4)} Face 29959 10212 10239 18224 {rgb=(.6 .4 .4)} Face 29960 10239 10234 18224 {rgb=(.6 .4 .4)} Face 29961 10212 10204 18225 {rgb=(.6 .4 .4)} Face 29962 10204 10175 18225 {rgb=(.6 .4 .4)} Face 29963 10175 10194 18225 {rgb=(.6 .4 .4)} Face 29964 10194 10212 18225 {rgb=(.6 .4 .4)} Face 29965 10185 10170 18226 {rgb=(.6 .4 .4)} Face 29966 10170 10207 18226 {rgb=(.6 .4 .4)} Face 29967 10207 10221 18226 {rgb=(.6 .4 .4)} Face 29968 10221 10185 18226 {rgb=(.6 .4 .4)} Face 29969 10168 10143 18227 {rgb=(.6 .4 .4)} Face 29970 10143 10142 18227 {rgb=(.6 .4 .4)} Face 29971 10142 10172 18227 {rgb=(.6 .4 .4)} Face 29972 10172 10168 18227 {rgb=(.6 .4 .4)} Face 29973 10148 10166 18228 {rgb=(.6 .4 .4)} Face 29974 10166 10194 18228 {rgb=(.6 .4 .4)} Face 29975 10194 10175 18228 {rgb=(.6 .4 .4)} Face 29976 10175 10148 18228 {rgb=(.6 .4 .4)} Face 29977 10148 10175 18229 {rgb=(.6 .4 .4)} Face 29978 10175 10172 18229 {rgb=(.6 .4 .4)} Face 29979 10172 10142 18229 {rgb=(.6 .4 .4)} Face 29980 10142 10148 18229 {rgb=(.6 .4 .4)} Face 29981 10175 10204 18230 {rgb=(.6 .4 .4)} Face 29982 10204 10206 18230 {rgb=(.6 .4 .4)} Face 29983 10206 10172 18230 {rgb=(.6 .4 .4)} Face 29984 10172 10175 18230 {rgb=(.6 .4 .4)} Face 29985 10121 10128 18231 {rgb=(.6 .4 .4)} Face 29986 10128 10118 18231 {rgb=(.6 .4 .4)} Face 29987 10118 10112 18231 {rgb=(.6 .4 .4)} Face 29988 10112 10121 18231 {rgb=(.6 .4 .4)} Face 29989 10128 10148 18232 {rgb=(.6 .4 .4)} Face 29990 10148 10142 18232 {rgb=(.6 .4 .4)} Face 29991 10142 10118 18232 {rgb=(.6 .4 .4)} Face 29992 10118 10128 18232 {rgb=(.6 .4 .4)} Face 29993 10166 10148 18233 {rgb=(.6 .4 .4)} Face 29994 10148 10128 18233 {rgb=(.6 .4 .4)} Face 29995 10128 10154 18233 {rgb=(.6 .4 .4)} Face 29996 10154 10166 18233 {rgb=(.6 .4 .4)} Face 29997 10143 10116 18234 {rgb=(.6 .4 .4)} Face 29998 10116 10118 18234 {rgb=(.6 .4 .4)} Face 29999 10118 10142 18234 {rgb=(.6 .4 .4)} Face 30000 10142 10143 18234 {rgb=(.6 .4 .4)} Face 30001 10170 10185 18235 {rgb=(.6 .4 .4)} Face 30002 10185 10144 18235 {rgb=(.6 .4 .4)} Face 30003 10144 10141 18235 {rgb=(.6 .4 .4)} Face 30004 10141 10170 18235 {rgb=(.6 .4 .4)} Face 30005 10121 10153 18236 {rgb=(.6 .4 .4)} Face 30006 10153 10154 18236 {rgb=(.6 .4 .4)} Face 30007 10154 10128 18236 {rgb=(.6 .4 .4)} Face 30008 10128 10121 18236 {rgb=(.6 .4 .4)} Face 30009 10121 10126 18237 {rgb=(.6 .4 .4)} Face 30010 10126 10162 18237 {rgb=(.6 .4 .4)} Face 30011 10162 10153 18237 {rgb=(.6 .4 .4)} Face 30012 10153 10121 18237 {rgb=(.6 .4 .4)} Face 30013 10116 10117 18238 {rgb=(.6 .4 .4)} Face 30014 10117 10112 18238 {rgb=(.6 .4 .4)} Face 30015 10112 10118 18238 {rgb=(.6 .4 .4)} Face 30016 10118 10116 18238 {rgb=(.6 .4 .4)} Face 30017 10162 10126 18239 {rgb=(.6 .4 .4)} Face 30018 10126 10145 18239 {rgb=(.6 .4 .4)} Face 30019 10145 10191 18239 {rgb=(.6 .4 .4)} Face 30020 10191 10162 18239 {rgb=(.6 .4 .4)} Face 30021 10202 10162 18240 {rgb=(.6 .4 .4)} Face 30022 10162 10191 18240 {rgb=(.6 .4 .4)} Face 30023 10191 10238 18240 {rgb=(.6 .4 .4)} Face 30024 10238 10202 18240 {rgb=(.6 .4 .4)} Face 30025 10112 10117 18241 {rgb=(.6 .4 .4)} Face 30026 10117 10141 18241 {rgb=(.6 .4 .4)} Face 30027 10141 10144 18241 {rgb=(.6 .4 .4)} Face 30028 10144 10112 18241 {rgb=(.6 .4 .4)} Face 30029 10126 10112 18242 {rgb=(.6 .4 .4)} Face 30030 10112 10144 18242 {rgb=(.6 .4 .4)} Face 30031 10144 10145 18242 {rgb=(.6 .4 .4)} Face 30032 10145 10126 18242 {rgb=(.6 .4 .4)} Face 30033 10144 10185 18243 {rgb=(.6 .4 .4)} Face 30034 10185 10205 18243 {rgb=(.6 .4 .4)} Face 30035 10205 10164 18243 {rgb=(.6 .4 .4)} Face 30036 10164 10144 18243 {rgb=(.6 .4 .4)} Face 30037 10145 10144 18244 {rgb=(.6 .4 .4)} Face 30038 10144 10164 18244 {rgb=(.6 .4 .4)} Face 30039 10164 10159 18244 {rgb=(.6 .4 .4)} Face 30040 10159 10145 18244 {rgb=(.6 .4 .4)} Face 30041 10191 10145 18245 {rgb=(.6 .4 .4)} Face 30042 10145 10159 18245 {rgb=(.6 .4 .4)} Face 30043 10159 10213 18245 {rgb=(.6 .4 .4)} Face 30044 10213 10191 18245 {rgb=(.6 .4 .4)} Face 30045 10238 10191 18246 {rgb=(.6 .4 .4)} Face 30046 10191 10213 18246 {rgb=(.6 .4 .4)} Face 30047 10213 10282 18246 {rgb=(.6 .4 .4)} Face 30048 10282 10238 18246 {rgb=(.6 .4 .4)} Face 30049 10159 10164 18247 {rgb=(.6 .4 .4)} Face 30050 10164 10177 18247 {rgb=(.6 .4 .4)} Face 30051 10177 10176 18247 {rgb=(.6 .4 .4)} Face 30052 10176 10159 18247 {rgb=(.6 .4 .4)} Face 30053 10213 10159 18248 {rgb=(.6 .4 .4)} Face 30054 10159 10176 18248 {rgb=(.6 .4 .4)} Face 30055 10176 10218 18248 {rgb=(.6 .4 .4)} Face 30056 10218 10213 18248 {rgb=(.6 .4 .4)} Face 30057 10282 10213 18249 {rgb=(.6 .4 .4)} Face 30058 10213 10218 18249 {rgb=(.6 .4 .4)} Face 30059 10218 10295 18249 {rgb=(.6 .4 .4)} Face 30060 10295 10282 18249 {rgb=(.6 .4 .4)} Face 30061 10164 10205 18250 {rgb=(.6 .4 .4)} Face 30062 10205 10217 18250 {rgb=(.6 .4 .4)} Face 30063 10217 10177 18250 {rgb=(.6 .4 .4)} Face 30064 10177 10164 18250 {rgb=(.6 .4 .4)} Face 30065 10295 10218 18251 {rgb=(.6 .4 .4)} Face 30066 10218 10222 18251 {rgb=(.6 .4 .4)} Face 30067 10222 10297 18251 {rgb=(.6 .4 .4)} Face 30068 10297 10295 18251 {rgb=(.6 .4 .4)} Face 30069 10177 10217 18252 {rgb=(.6 .4 .4)} Face 30070 10217 10272 18252 {rgb=(.6 .4 .4)} Face 30071 10272 10219 18252 {rgb=(.6 .4 .4)} Face 30072 10219 10177 18252 {rgb=(.6 .4 .4)} Face 30073 10176 10177 18253 {rgb=(.6 .4 .4)} Face 30074 10177 10219 18253 {rgb=(.6 .4 .4)} Face 30075 10219 10197 18253 {rgb=(.6 .4 .4)} Face 30076 10197 10176 18253 {rgb=(.6 .4 .4)} Face 30077 10218 10176 18254 {rgb=(.6 .4 .4)} Face 30078 10176 10197 18254 {rgb=(.6 .4 .4)} Face 30079 10197 10222 18254 {rgb=(.6 .4 .4)} Face 30080 10222 10218 18254 {rgb=(.6 .4 .4)} Face 30081 10219 10272 18255 {rgb=(.6 .4 .4)} Face 30082 10272 10349 18255 {rgb=(.6 .4 .4)} Face 30083 10349 10291 18255 {rgb=(.6 .4 .4)} Face 30084 10291 10219 18255 {rgb=(.6 .4 .4)} Face 30085 10197 10219 18256 {rgb=(.6 .4 .4)} Face 30086 10219 10291 18256 {rgb=(.6 .4 .4)} Face 30087 10291 10245 18256 {rgb=(.6 .4 .4)} Face 30088 10245 10197 18256 {rgb=(.6 .4 .4)} Face 30089 10222 10197 18257 {rgb=(.6 .4 .4)} Face 30090 10197 10245 18257 {rgb=(.6 .4 .4)} Face 30091 10245 10262 18257 {rgb=(.6 .4 .4)} Face 30092 10262 10222 18257 {rgb=(.6 .4 .4)} Face 30093 10297 10222 18258 {rgb=(.6 .4 .4)} Face 30094 10222 10262 18258 {rgb=(.6 .4 .4)} Face 30095 10262 10345 18258 {rgb=(.6 .4 .4)} Face 30096 10345 10297 18258 {rgb=(.6 .4 .4)} Face 30097 10320 10275 18259 {rgb=(.6 .4 .4)} Face 30098 10275 10289 18259 {rgb=(.6 .4 .4)} Face 30099 10289 10277 18259 {rgb=(.6 .4 .4)} Face 30100 10277 10320 18259 {rgb=(.6 .4 .4)} Face 30101 10400 10320 18260 {rgb=(.6 .4 .4)} Face 30102 10320 10277 18260 {rgb=(.6 .4 .4)} Face 30103 10277 10374 18260 {rgb=(.6 .4 .4)} Face 30104 10374 10400 18260 {rgb=(.6 .4 .4)} Face 30105 10350 10463 18261 {rgb=(.6 .4 .4)} Face 30106 10463 10588 18261 {rgb=(.6 .4 .4)} Face 30107 10588 10405 18261 {rgb=(.6 .4 .4)} Face 30108 10405 10350 18261 {rgb=(.6 .4 .4)} Face 30109 10275 10350 18262 {rgb=(.6 .4 .4)} Face 30110 10350 10405 18262 {rgb=(.6 .4 .4)} Face 30111 10405 10289 18262 {rgb=(.6 .4 .4)} Face 30112 10289 10275 18262 {rgb=(.6 .4 .4)} Face 30113 10405 10588 18263 {rgb=(.6 .4 .4)} Face 30114 10588 10689 18263 {rgb=(.6 .4 .4)} Face 30115 10689 10519 18263 {rgb=(.6 .4 .4)} Face 30116 10519 10405 18263 {rgb=(.6 .4 .4)} Face 30117 10289 10405 18264 {rgb=(.6 .4 .4)} Face 30118 10405 10519 18264 {rgb=(.6 .4 .4)} Face 30119 10519 10322 18264 {rgb=(.6 .4 .4)} Face 30120 10322 10289 18264 {rgb=(.6 .4 .4)} Face 30121 10277 10289 18265 {rgb=(.6 .4 .4)} Face 30122 10289 10322 18265 {rgb=(.6 .4 .4)} Face 30123 10322 10300 18265 {rgb=(.6 .4 .4)} Face 30124 10300 10277 18265 {rgb=(.6 .4 .4)} Face 30125 10374 10277 18266 {rgb=(.6 .4 .4)} Face 30126 10277 10300 18266 {rgb=(.6 .4 .4)} Face 30127 10300 10419 18266 {rgb=(.6 .4 .4)} Face 30128 10419 10374 18266 {rgb=(.6 .4 .4)} Face 30129 10958 11023 18267 {rgb=(.6 .4 .4)} Face 30130 11023 11036 18267 {rgb=(.6 .4 .4)} Face 30131 11036 11006 18267 {rgb=(.6 .4 .4)} Face 30132 11006 10958 18267 {rgb=(.6 .4 .4)} Face 30133 10971 10958 18268 {rgb=(.6 .4 .4)} Face 30134 10958 11006 18268 {rgb=(.6 .4 .4)} Face 30135 11006 11018 18268 {rgb=(.6 .4 .4)} Face 30136 11018 10971 18268 {rgb=(.6 .4 .4)} Face 30137 10801 10874 18269 {rgb=(.6 .4 .4)} Face 30138 10874 10884 18269 {rgb=(.6 .4 .4)} Face 30139 10884 10733 18269 {rgb=(.6 .4 .4)} Face 30140 10733 10801 18269 {rgb=(.6 .4 .4)} Face 30141 10472 10733 18270 {rgb=(.6 .4 .4)} Face 30142 10733 10823 18270 {rgb=(.6 .4 .4)} Face 30143 10823 10454 18270 {rgb=(.6 .4 .4)} Face 30144 10454 10472 18270 {rgb=(.6 .4 .4)} Face 30145 10265 10472 18271 {rgb=(.6 .4 .4)} Face 30146 10472 10454 18271 {rgb=(.6 .4 .4)} Face 30147 10454 10283 18271 {rgb=(.6 .4 .4)} Face 30148 10283 10265 18271 {rgb=(.6 .4 .4)} Face 30149 10178 10188 18272 {rgb=(.6 .4 .4)} Face 30150 10188 10180 18272 {rgb=(.6 .4 .4)} Face 30151 10180 10136 18272 {rgb=(.6 .4 .4)} Face 30152 10136 10178 18272 {rgb=(.6 .4 .4)} Face 30153 10216 10178 18273 {rgb=(.6 .4 .4)} Face 30154 10178 10136 18273 {rgb=(.6 .4 .4)} Face 30155 10136 10182 18273 {rgb=(.6 .4 .4)} Face 30156 10182 10216 18273 {rgb=(.6 .4 .4)} Face 30157 10935 11031 18274 {rgb=(.6 .4 .4)} Face 30158 11031 11033 18274 {rgb=(.6 .4 .4)} Face 30159 11033 11014 18274 {rgb=(.6 .4 .4)} Face 30160 11014 10935 18274 {rgb=(.6 .4 .4)} Face 30161 11014 11033 18275 {rgb=(.6 .4 .4)} Face 30162 11033 11036 18275 {rgb=(.6 .4 .4)} Face 30163 11036 11023 18275 {rgb=(.6 .4 .4)} Face 30164 11023 11014 18275 {rgb=(.6 .4 .4)} Face 30165 10307 10216 18276 {rgb=(.6 .4 .4)} Face 30166 10216 10182 18276 {rgb=(.6 .4 .4)} Face 30167 10182 10284 18276 {rgb=(.6 .4 .4)} Face 30168 10284 10307 18276 {rgb=(.6 .4 .4)} Face 30169 11031 11038 18277 {rgb=(.6 .4 .4)} Face 30170 11038 11041 18277 {rgb=(.6 .4 .4)} Face 30171 11041 11033 18277 {rgb=(.6 .4 .4)} Face 30172 11033 11031 18277 {rgb=(.6 .4 .4)} Face 30173 11036 11033 18278 {rgb=(.6 .4 .4)} Face 30174 11033 11041 18278 {rgb=(.6 .4 .4)} Face 30175 11041 11040 18278 {rgb=(.6 .4 .4)} Face 30176 11040 11036 18278 {rgb=(.6 .4 .4)} Face 30177 11006 11036 18279 {rgb=(.6 .4 .4)} Face 30178 11036 11040 18279 {rgb=(.6 .4 .4)} Face 30179 11040 11037 18279 {rgb=(.6 .4 .4)} Face 30180 11037 11006 18279 {rgb=(.6 .4 .4)} Face 30181 11018 11006 18280 {rgb=(.6 .4 .4)} Face 30182 11006 11037 18280 {rgb=(.6 .4 .4)} Face 30183 11037 11032 18280 {rgb=(.6 .4 .4)} Face 30184 11032 11018 18280 {rgb=(.6 .4 .4)} Face 30185 10904 11018 18281 {rgb=(.6 .4 .4)} Face 30186 11018 11032 18281 {rgb=(.6 .4 .4)} Face 30187 11032 10962 18281 {rgb=(.6 .4 .4)} Face 30188 10962 10904 18281 {rgb=(.6 .4 .4)} Face 30189 10832 10823 18282 {rgb=(.6 .4 .4)} Face 30190 10823 10904 18282 {rgb=(.6 .4 .4)} Face 30191 10904 10962 18282 {rgb=(.6 .4 .4)} Face 30192 10962 10832 18282 {rgb=(.6 .4 .4)} Face 30193 10454 10511 18283 {rgb=(.6 .4 .4)} Face 30194 10511 10293 18283 {rgb=(.6 .4 .4)} Face 30195 10293 10283 18283 {rgb=(.6 .4 .4)} Face 30196 10283 10454 18283 {rgb=(.6 .4 .4)} Face 30197 10823 10832 18284 {rgb=(.6 .4 .4)} Face 30198 10832 10511 18284 {rgb=(.6 .4 .4)} Face 30199 10511 10454 18284 {rgb=(.6 .4 .4)} Face 30200 10454 10823 18284 {rgb=(.6 .4 .4)} Face 30201 10180 10283 18285 {rgb=(.6 .4 .4)} Face 30202 10283 10293 18285 {rgb=(.6 .4 .4)} Face 30203 10293 10199 18285 {rgb=(.6 .4 .4)} Face 30204 10199 10180 18285 {rgb=(.6 .4 .4)} Face 30205 10180 10199 18286 {rgb=(.6 .4 .4)} Face 30206 10199 10160 18286 {rgb=(.6 .4 .4)} Face 30207 10160 10136 18286 {rgb=(.6 .4 .4)} Face 30208 10136 10180 18286 {rgb=(.6 .4 .4)} Face 30209 10136 10160 18287 {rgb=(.6 .4 .4)} Face 30210 10160 10203 18287 {rgb=(.6 .4 .4)} Face 30211 10203 10182 18287 {rgb=(.6 .4 .4)} Face 30212 10182 10136 18287 {rgb=(.6 .4 .4)} Face 30213 10182 10203 18288 {rgb=(.6 .4 .4)} Face 30214 10203 10273 18288 {rgb=(.6 .4 .4)} Face 30215 10273 10284 18288 {rgb=(.6 .4 .4)} Face 30216 10284 10182 18288 {rgb=(.6 .4 .4)} Face 30217 10883 11029 18289 {rgb=(.6 .4 .4)} Face 30218 11029 11008 18289 {rgb=(.6 .4 .4)} Face 30219 11008 10891 18289 {rgb=(.6 .4 .4)} Face 30220 10891 10883 18289 {rgb=(.6 .4 .4)} Face 30221 10273 10603 18290 {rgb=(.6 .4 .4)} Face 30222 10603 10581 18290 {rgb=(.6 .4 .4)} Face 30223 10581 10284 18290 {rgb=(.6 .4 .4)} Face 30224 10284 10273 18290 {rgb=(.6 .4 .4)} Face 30225 10581 10603 18291 {rgb=(.6 .4 .4)} Face 30226 10603 10883 18291 {rgb=(.6 .4 .4)} Face 30227 10883 10891 18291 {rgb=(.6 .4 .4)} Face 30228 10891 10581 18291 {rgb=(.6 .4 .4)} Face 30229 10827 10807 18292 {rgb=(.6 .4 .4)} Face 30230 10807 10862 18292 {rgb=(.6 .4 .4)} Face 30231 10862 10870 18292 {rgb=(.6 .4 .4)} Face 30232 10870 10827 18292 {rgb=(.6 .4 .4)} Face 30233 10931 10919 18293 {rgb=(.6 .4 .4)} Face 30234 10919 10899 18293 {rgb=(.6 .4 .4)} Face 30235 10899 10886 18293 {rgb=(.6 .4 .4)} Face 30236 10886 10931 18293 {rgb=(.6 .4 .4)} Face 30237 10905 10870 18294 {rgb=(.6 .4 .4)} Face 30238 10870 10862 18294 {rgb=(.6 .4 .4)} Face 30239 10862 10896 18294 {rgb=(.6 .4 .4)} Face 30240 10896 10905 18294 {rgb=(.6 .4 .4)} Face 30241 10899 10919 18295 {rgb=(.6 .4 .4)} Face 30242 10919 10905 18295 {rgb=(.6 .4 .4)} Face 30243 10905 10896 18295 {rgb=(.6 .4 .4)} Face 30244 10896 10899 18295 {rgb=(.6 .4 .4)} Face 30245 10770 10607 18296 {rgb=(.6 .4 .4)} Face 30246 10607 10308 18296 {rgb=(.6 .4 .4)} Face 30247 10308 10371 18296 {rgb=(.6 .4 .4)} Face 30248 10371 10770 18296 {rgb=(.6 .4 .4)} Face 30249 10174 10235 18297 {rgb=(.6 .4 .4)} Face 30250 10235 10243 18297 {rgb=(.6 .4 .4)} Face 30251 10243 10179 18297 {rgb=(.6 .4 .4)} Face 30252 10179 10174 18297 {rgb=(.6 .4 .4)} Face 30253 10235 10338 18298 {rgb=(.6 .4 .4)} Face 30254 10338 10371 18298 {rgb=(.6 .4 .4)} Face 30255 10371 10243 18298 {rgb=(.6 .4 .4)} Face 30256 10243 10235 18298 {rgb=(.6 .4 .4)} Face 30257 10075 10158 18299 {rgb=(.6 .4 .4)} Face 30258 10158 10171 18299 {rgb=(.6 .4 .4)} Face 30259 10171 10084 18299 {rgb=(.6 .4 .4)} Face 30260 10084 10075 18299 {rgb=(.6 .4 .4)} Face 30261 10158 10401 18300 {rgb=(.6 .4 .4)} Face 30262 10401 10422 18300 {rgb=(.6 .4 .4)} Face 30263 10422 10171 18300 {rgb=(.6 .4 .4)} Face 30264 10171 10158 18300 {rgb=(.6 .4 .4)} Face 30265 10965 10918 18301 {rgb=(.6 .4 .4)} Face 30266 10918 10916 18301 {rgb=(.6 .4 .4)} Face 30267 10916 10969 18301 {rgb=(.6 .4 .4)} Face 30268 10969 10965 18301 {rgb=(.6 .4 .4)} Face 30269 10851 10916 18302 {rgb=(.6 .4 .4)} Face 30270 10916 10918 18302 {rgb=(.6 .4 .4)} Face 30271 10918 10849 18302 {rgb=(.6 .4 .4)} Face 30272 10849 10851 18302 {rgb=(.6 .4 .4)} Face 30273 10401 10652 18303 {rgb=(.6 .4 .4)} Face 30274 10652 10664 18303 {rgb=(.6 .4 .4)} Face 30275 10664 10422 18303 {rgb=(.6 .4 .4)} Face 30276 10422 10401 18303 {rgb=(.6 .4 .4)} Face 30277 10827 10779 18304 {rgb=(.6 .4 .4)} Face 30278 10779 10776 18304 {rgb=(.6 .4 .4)} Face 30279 10776 10807 18304 {rgb=(.6 .4 .4)} Face 30280 10807 10827 18304 {rgb=(.6 .4 .4)} Face 30281 10779 10596 18305 {rgb=(.6 .4 .4)} Face 30282 10596 10594 18305 {rgb=(.6 .4 .4)} Face 30283 10594 10776 18305 {rgb=(.6 .4 .4)} Face 30284 10776 10779 18305 {rgb=(.6 .4 .4)} Face 30285 10230 10102 18306 {rgb=(.6 .4 .4)} Face 30286 10102 10097 18306 {rgb=(.6 .4 .4)} Face 30287 10097 10224 18306 {rgb=(.6 .4 .4)} Face 30288 10224 10230 18306 {rgb=(.6 .4 .4)} Face 30289 10775 10774 18307 {rgb=(.6 .4 .4)} Face 30290 10774 10851 18307 {rgb=(.6 .4 .4)} Face 30291 10851 10849 18307 {rgb=(.6 .4 .4)} Face 30292 10849 10775 18307 {rgb=(.6 .4 .4)} Face 30293 10594 10596 18308 {rgb=(.6 .4 .4)} Face 30294 10596 10369 18308 {rgb=(.6 .4 .4)} Face 30295 10369 10378 18308 {rgb=(.6 .4 .4)} Face 30296 10378 10594 18308 {rgb=(.6 .4 .4)} Face 30297 10230 10224 18309 {rgb=(.6 .4 .4)} Face 30298 10224 10378 18309 {rgb=(.6 .4 .4)} Face 30299 10378 10369 18309 {rgb=(.6 .4 .4)} Face 30300 10369 10230 18309 {rgb=(.6 .4 .4)} Face 30301 9681 9779 18310 {rgb=(.6 .4 .4)} Face 30302 9779 9712 18310 {rgb=(.6 .4 .4)} Face 30303 9712 9660 18310 {rgb=(.6 .4 .4)} Face 30304 9660 9681 18310 {rgb=(.6 .4 .4)} Face 30305 9634 9681 18311 {rgb=(.6 .4 .4)} Face 30306 9681 9660 18311 {rgb=(.6 .4 .4)} Face 30307 9660 9615 18311 {rgb=(.6 .4 .4)} Face 30308 9615 9634 18311 {rgb=(.6 .4 .4)} Face 30309 9600 9611 18312 {rgb=(.6 .4 .4)} Face 30310 9611 9615 18312 {rgb=(.6 .4 .4)} Face 30311 9615 9568 18312 {rgb=(.6 .4 .4)} Face 30312 9568 9600 18312 {rgb=(.6 .4 .4)} Face 30313 9591 9590 18313 {rgb=(.6 .4 .4)} Face 30314 9590 9568 18313 {rgb=(.6 .4 .4)} Face 30315 9568 9571 18313 {rgb=(.6 .4 .4)} Face 30316 9571 9591 18313 {rgb=(.6 .4 .4)} Face 30317 9622 9606 18314 {rgb=(.6 .4 .4)} Face 30318 9606 9571 18314 {rgb=(.6 .4 .4)} Face 30319 9571 9625 18314 {rgb=(.6 .4 .4)} Face 30320 9625 9622 18314 {rgb=(.6 .4 .4)} Face 30321 9696 9643 18315 {rgb=(.6 .4 .4)} Face 30322 9643 9625 18315 {rgb=(.6 .4 .4)} Face 30323 9625 9646 18315 {rgb=(.6 .4 .4)} Face 30324 9646 9696 18315 {rgb=(.6 .4 .4)} Face 30325 9754 9696 18316 {rgb=(.6 .4 .4)} Face 30326 9696 9646 18316 {rgb=(.6 .4 .4)} Face 30327 9646 9690 18316 {rgb=(.6 .4 .4)} Face 30328 9690 9754 18316 {rgb=(.6 .4 .4)} Face 30329 9847 9788 18317 {rgb=(.6 .4 .4)} Face 30330 9788 9690 18317 {rgb=(.6 .4 .4)} Face 30331 9690 9714 18317 {rgb=(.6 .4 .4)} Face 30332 9714 9847 18317 {rgb=(.6 .4 .4)} Face 30333 9712 9838 18318 {rgb=(.6 .4 .4)} Face 30334 9838 9847 18318 {rgb=(.6 .4 .4)} Face 30335 9847 9714 18318 {rgb=(.6 .4 .4)} Face 30336 9714 9712 18318 {rgb=(.6 .4 .4)} Face 30337 9822 9914 18319 {rgb=(.6 .4 .4)} Face 30338 9914 9847 18319 {rgb=(.6 .4 .4)} Face 30339 9847 9838 18319 {rgb=(.6 .4 .4)} Face 30340 9838 9822 18319 {rgb=(.6 .4 .4)} Face 30341 9825 9830 18320 {rgb=(.6 .4 .4)} Face 30342 9830 9838 18320 {rgb=(.6 .4 .4)} Face 30343 9838 9779 18320 {rgb=(.6 .4 .4)} Face 30344 9779 9825 18320 {rgb=(.6 .4 .4)} Face 30345 9777 9825 18321 {rgb=(.6 .4 .4)} Face 30346 9825 9779 18321 {rgb=(.6 .4 .4)} Face 30347 9779 9681 18321 {rgb=(.6 .4 .4)} Face 30348 9681 9777 18321 {rgb=(.6 .4 .4)} Face 30349 9727 9777 18322 {rgb=(.6 .4 .4)} Face 30350 9777 9681 18322 {rgb=(.6 .4 .4)} Face 30351 9681 9634 18322 {rgb=(.6 .4 .4)} Face 30352 9634 9727 18322 {rgb=(.6 .4 .4)} Face 30353 9757 9727 18323 {rgb=(.6 .4 .4)} Face 30354 9727 9634 18323 {rgb=(.6 .4 .4)} Face 30355 9634 9611 18323 {rgb=(.6 .4 .4)} Face 30356 9611 9757 18323 {rgb=(.6 .4 .4)} Face 30357 9737 9757 18324 {rgb=(.6 .4 .4)} Face 30358 9757 9611 18324 {rgb=(.6 .4 .4)} Face 30359 9611 9600 18324 {rgb=(.6 .4 .4)} Face 30360 9600 9737 18324 {rgb=(.6 .4 .4)} Face 30361 9731 9737 18325 {rgb=(.6 .4 .4)} Face 30362 9737 9600 18325 {rgb=(.6 .4 .4)} Face 30363 9600 9590 18325 {rgb=(.6 .4 .4)} Face 30364 9590 9731 18325 {rgb=(.6 .4 .4)} Face 30365 9732 9731 18326 {rgb=(.6 .4 .4)} Face 30366 9731 9590 18326 {rgb=(.6 .4 .4)} Face 30367 9590 9591 18326 {rgb=(.6 .4 .4)} Face 30368 9591 9732 18326 {rgb=(.6 .4 .4)} Face 30369 9742 9732 18327 {rgb=(.6 .4 .4)} Face 30370 9732 9591 18327 {rgb=(.6 .4 .4)} Face 30371 9591 9606 18327 {rgb=(.6 .4 .4)} Face 30372 9606 9742 18327 {rgb=(.6 .4 .4)} Face 30373 9766 9742 18328 {rgb=(.6 .4 .4)} Face 30374 9742 9606 18328 {rgb=(.6 .4 .4)} Face 30375 9606 9622 18328 {rgb=(.6 .4 .4)} Face 30376 9622 9766 18328 {rgb=(.6 .4 .4)} Face 30377 9744 9766 18329 {rgb=(.6 .4 .4)} Face 30378 9766 9622 18329 {rgb=(.6 .4 .4)} Face 30379 9622 9643 18329 {rgb=(.6 .4 .4)} Face 30380 9643 9744 18329 {rgb=(.6 .4 .4)} Face 30381 9796 9744 18330 {rgb=(.6 .4 .4)} Face 30382 9744 9643 18330 {rgb=(.6 .4 .4)} Face 30383 9643 9696 18330 {rgb=(.6 .4 .4)} Face 30384 9696 9796 18330 {rgb=(.6 .4 .4)} Face 30385 9856 9796 18331 {rgb=(.6 .4 .4)} Face 30386 9796 9696 18331 {rgb=(.6 .4 .4)} Face 30387 9696 9754 18331 {rgb=(.6 .4 .4)} Face 30388 9754 9856 18331 {rgb=(.6 .4 .4)} Face 30389 9855 9856 18332 {rgb=(.6 .4 .4)} Face 30390 9856 9754 18332 {rgb=(.6 .4 .4)} Face 30391 9754 9788 18332 {rgb=(.6 .4 .4)} Face 30392 9788 9855 18332 {rgb=(.6 .4 .4)} Face 30393 9891 9855 18333 {rgb=(.6 .4 .4)} Face 30394 9855 9788 18333 {rgb=(.6 .4 .4)} Face 30395 9788 9847 18333 {rgb=(.6 .4 .4)} Face 30396 9847 9891 18333 {rgb=(.6 .4 .4)} Face 30397 10096 10108 18334 {rgb=(.6 .4 .4)} Face 30398 10108 9856 18334 {rgb=(.6 .4 .4)} Face 30399 9856 9855 18334 {rgb=(.6 .4 .4)} Face 30400 9855 10096 18334 {rgb=(.6 .4 .4)} Face 30401 10096 9855 18335 {rgb=(.6 .4 .4)} Face 30402 9855 9891 18335 {rgb=(.6 .4 .4)} Face 30403 9891 10102 18335 {rgb=(.6 .4 .4)} Face 30404 10102 10096 18335 {rgb=(.6 .4 .4)} Face 30405 9999 10057 18336 {rgb=(.6 .4 .4)} Face 30406 10057 10097 18336 {rgb=(.6 .4 .4)} Face 30407 10097 9891 18336 {rgb=(.6 .4 .4)} Face 30408 9891 9999 18336 {rgb=(.6 .4 .4)} Face 30409 9893 10057 18337 {rgb=(.6 .4 .4)} Face 30410 10057 9999 18337 {rgb=(.6 .4 .4)} Face 30411 9999 9914 18337 {rgb=(.6 .4 .4)} Face 30412 9914 9893 18337 {rgb=(.6 .4 .4)} Face 30413 9814 9893 18338 {rgb=(.6 .4 .4)} Face 30414 9893 9914 18338 {rgb=(.6 .4 .4)} Face 30415 9914 9822 18338 {rgb=(.6 .4 .4)} Face 30416 9822 9814 18338 {rgb=(.6 .4 .4)} Face 30417 9928 9814 18339 {rgb=(.6 .4 .4)} Face 30418 9814 9822 18339 {rgb=(.6 .4 .4)} Face 30419 9822 9827 18339 {rgb=(.6 .4 .4)} Face 30420 9827 9928 18339 {rgb=(.6 .4 .4)} Face 30421 10027 9928 18340 {rgb=(.6 .4 .4)} Face 30422 9928 9827 18340 {rgb=(.6 .4 .4)} Face 30423 9827 9830 18340 {rgb=(.6 .4 .4)} Face 30424 9830 10027 18340 {rgb=(.6 .4 .4)} Face 30425 10044 10027 18341 {rgb=(.6 .4 .4)} Face 30426 10027 9830 18341 {rgb=(.6 .4 .4)} Face 30427 9830 9825 18341 {rgb=(.6 .4 .4)} Face 30428 9825 10044 18341 {rgb=(.6 .4 .4)} Face 30429 9957 10044 18342 {rgb=(.6 .4 .4)} Face 30430 10044 9825 18342 {rgb=(.6 .4 .4)} Face 30431 9825 9777 18342 {rgb=(.6 .4 .4)} Face 30432 9777 9957 18342 {rgb=(.6 .4 .4)} Face 30433 9958 9957 18343 {rgb=(.6 .4 .4)} Face 30434 9957 9777 18343 {rgb=(.6 .4 .4)} Face 30435 9777 9727 18343 {rgb=(.6 .4 .4)} Face 30436 9727 9958 18343 {rgb=(.6 .4 .4)} Face 30437 9956 9958 18344 {rgb=(.6 .4 .4)} Face 30438 9958 9727 18344 {rgb=(.6 .4 .4)} Face 30439 9727 9757 18344 {rgb=(.6 .4 .4)} Face 30440 9757 9956 18344 {rgb=(.6 .4 .4)} Face 30441 9972 9956 18345 {rgb=(.6 .4 .4)} Face 30442 9956 9757 18345 {rgb=(.6 .4 .4)} Face 30443 9757 9737 18345 {rgb=(.6 .4 .4)} Face 30444 9737 9972 18345 {rgb=(.6 .4 .4)} Face 30445 9973 9972 18346 {rgb=(.6 .4 .4)} Face 30446 9972 9737 18346 {rgb=(.6 .4 .4)} Face 30447 9737 9731 18346 {rgb=(.6 .4 .4)} Face 30448 9731 9973 18346 {rgb=(.6 .4 .4)} Face 30449 9952 9973 18347 {rgb=(.6 .4 .4)} Face 30450 9973 9731 18347 {rgb=(.6 .4 .4)} Face 30451 9731 9732 18347 {rgb=(.6 .4 .4)} Face 30452 9732 9952 18347 {rgb=(.6 .4 .4)} Face 30453 9987 9952 18348 {rgb=(.6 .4 .4)} Face 30454 9952 9732 18348 {rgb=(.6 .4 .4)} Face 30455 9732 9742 18348 {rgb=(.6 .4 .4)} Face 30456 9742 9987 18348 {rgb=(.6 .4 .4)} Face 30457 10024 9987 18349 {rgb=(.6 .4 .4)} Face 30458 9987 9742 18349 {rgb=(.6 .4 .4)} Face 30459 9742 9766 18349 {rgb=(.6 .4 .4)} Face 30460 9766 10024 18349 {rgb=(.6 .4 .4)} Face 30461 10063 10024 18350 {rgb=(.6 .4 .4)} Face 30462 10024 9766 18350 {rgb=(.6 .4 .4)} Face 30463 9766 9744 18350 {rgb=(.6 .4 .4)} Face 30464 9744 10063 18350 {rgb=(.6 .4 .4)} Face 30465 10076 10063 18351 {rgb=(.6 .4 .4)} Face 30466 10063 9744 18351 {rgb=(.6 .4 .4)} Face 30467 9744 9796 18351 {rgb=(.6 .4 .4)} Face 30468 9796 10076 18351 {rgb=(.6 .4 .4)} Face 30469 10108 10076 18352 {rgb=(.6 .4 .4)} Face 30470 10076 9796 18352 {rgb=(.6 .4 .4)} Face 30471 9796 9856 18352 {rgb=(.6 .4 .4)} Face 30472 9856 10108 18352 {rgb=(.6 .4 .4)} Face 30473 10113 10107 18353 {rgb=(.6 .4 .4)} Face 30474 10107 9973 18353 {rgb=(.6 .4 .4)} Face 30475 9973 9952 18353 {rgb=(.6 .4 .4)} Face 30476 9952 10113 18353 {rgb=(.6 .4 .4)} Face 30477 9952 9987 18354 {rgb=(.6 .4 .4)} Face 30478 9987 10155 18354 {rgb=(.6 .4 .4)} Face 30479 10155 10132 18354 {rgb=(.6 .4 .4)} Face 30480 10132 9952 18354 {rgb=(.6 .4 .4)} Face 30481 10107 10113 18355 {rgb=(.6 .4 .4)} Face 30482 10113 10382 18355 {rgb=(.6 .4 .4)} Face 30483 10382 10430 18355 {rgb=(.6 .4 .4)} Face 30484 10430 10107 18355 {rgb=(.6 .4 .4)} Face 30485 10113 10132 18356 {rgb=(.6 .4 .4)} Face 30486 10132 10280 18356 {rgb=(.6 .4 .4)} Face 30487 10280 10382 18356 {rgb=(.6 .4 .4)} Face 30488 10382 10113 18356 {rgb=(.6 .4 .4)} Face 30489 10487 10327 18357 {rgb=(.6 .4 .4)} Face 30490 10327 10296 18357 {rgb=(.6 .4 .4)} Face 30491 10296 10449 18357 {rgb=(.6 .4 .4)} Face 30492 10449 10487 18357 {rgb=(.6 .4 .4)} Face 30493 10123 9957 18358 {rgb=(.6 .4 .4)} Face 30494 9957 9958 18358 {rgb=(.6 .4 .4)} Face 30495 9958 10114 18358 {rgb=(.6 .4 .4)} Face 30496 10114 10123 18358 {rgb=(.6 .4 .4)} Face 30497 10353 10123 18359 {rgb=(.6 .4 .4)} Face 30498 10123 10114 18359 {rgb=(.6 .4 .4)} Face 30499 10114 10208 18359 {rgb=(.6 .4 .4)} Face 30500 10208 10353 18359 {rgb=(.6 .4 .4)} Face 30501 9956 10120 18360 {rgb=(.6 .4 .4)} Face 30502 10120 10114 18360 {rgb=(.6 .4 .4)} Face 30503 10114 9958 18360 {rgb=(.6 .4 .4)} Face 30504 9958 9956 18360 {rgb=(.6 .4 .4)} Face 30505 10501 10353 18361 {rgb=(.6 .4 .4)} Face 30506 10353 10208 18361 {rgb=(.6 .4 .4)} Face 30507 10208 10299 18361 {rgb=(.6 .4 .4)} Face 30508 10299 10501 18361 {rgb=(.6 .4 .4)} Face 30509 10299 10208 18362 {rgb=(.6 .4 .4)} Face 30510 10208 10120 18362 {rgb=(.6 .4 .4)} Face 30511 10120 10201 18362 {rgb=(.6 .4 .4)} Face 30512 10201 10299 18362 {rgb=(.6 .4 .4)} Face 30513 10827 10869 18363 {rgb=(.6 .4 .4)} Face 30514 10869 10842 18363 {rgb=(.6 .4 .4)} Face 30515 10842 10779 18363 {rgb=(.6 .4 .4)} Face 30516 10779 10827 18363 {rgb=(.6 .4 .4)} Face 30517 10869 10898 18364 {rgb=(.6 .4 .4)} Face 30518 10898 10880 18364 {rgb=(.6 .4 .4)} Face 30519 10880 10842 18364 {rgb=(.6 .4 .4)} Face 30520 10842 10869 18364 {rgb=(.6 .4 .4)} Face 30521 9956 9972 18365 {rgb=(.6 .4 .4)} Face 30522 9972 10103 18365 {rgb=(.6 .4 .4)} Face 30523 10103 10120 18365 {rgb=(.6 .4 .4)} Face 30524 10120 9956 18365 {rgb=(.6 .4 .4)} Face 30525 10103 10248 18366 {rgb=(.6 .4 .4)} Face 30526 10248 10432 18366 {rgb=(.6 .4 .4)} Face 30527 10432 10201 18366 {rgb=(.6 .4 .4)} Face 30528 10201 10103 18366 {rgb=(.6 .4 .4)} Face 30529 10201 10432 18367 {rgb=(.6 .4 .4)} Face 30530 10432 10713 18367 {rgb=(.6 .4 .4)} Face 30531 10713 10299 18367 {rgb=(.6 .4 .4)} Face 30532 10299 10201 18367 {rgb=(.6 .4 .4)} Face 30533 10299 10713 18368 {rgb=(.6 .4 .4)} Face 30534 10713 10840 18368 {rgb=(.6 .4 .4)} Face 30535 10840 10501 18368 {rgb=(.6 .4 .4)} Face 30536 10501 10299 18368 {rgb=(.6 .4 .4)} Face 30537 10906 10840 18369 {rgb=(.6 .4 .4)} Face 30538 10840 10713 18369 {rgb=(.6 .4 .4)} Face 30539 10713 10843 18369 {rgb=(.6 .4 .4)} Face 30540 10843 10906 18369 {rgb=(.6 .4 .4)} Face 30541 10843 10713 18370 {rgb=(.6 .4 .4)} Face 30542 10713 10432 18370 {rgb=(.6 .4 .4)} Face 30543 10432 10716 18370 {rgb=(.6 .4 .4)} Face 30544 10716 10843 18370 {rgb=(.6 .4 .4)} Face 30545 10432 10248 18371 {rgb=(.6 .4 .4)} Face 30546 10248 10430 18371 {rgb=(.6 .4 .4)} Face 30547 10430 10716 18371 {rgb=(.6 .4 .4)} Face 30548 10716 10432 18371 {rgb=(.6 .4 .4)} Face 30549 10753 10430 18372 {rgb=(.6 .4 .4)} Face 30550 10430 10382 18372 {rgb=(.6 .4 .4)} Face 30551 10382 10750 18372 {rgb=(.6 .4 .4)} Face 30552 10750 10753 18372 {rgb=(.6 .4 .4)} Face 30553 10750 10382 18373 {rgb=(.6 .4 .4)} Face 30554 10382 10280 18373 {rgb=(.6 .4 .4)} Face 30555 10280 10663 18373 {rgb=(.6 .4 .4)} Face 30556 10663 10750 18373 {rgb=(.6 .4 .4)} Face 30557 10663 10280 18374 {rgb=(.6 .4 .4)} Face 30558 10280 10155 18374 {rgb=(.6 .4 .4)} Face 30559 10155 10333 18374 {rgb=(.6 .4 .4)} Face 30560 10333 10663 18374 {rgb=(.6 .4 .4)} Face 30561 10187 10155 18375 {rgb=(.6 .4 .4)} Face 30562 10155 10024 18375 {rgb=(.6 .4 .4)} Face 30563 10024 10063 18375 {rgb=(.6 .4 .4)} Face 30564 10063 10187 18375 {rgb=(.6 .4 .4)} Face 30565 10063 10076 18376 {rgb=(.6 .4 .4)} Face 30566 10076 10226 18376 {rgb=(.6 .4 .4)} Face 30567 10226 10187 18376 {rgb=(.6 .4 .4)} Face 30568 10187 10063 18376 {rgb=(.6 .4 .4)} Face 30569 10187 10226 18377 {rgb=(.6 .4 .4)} Face 30570 10226 10450 18377 {rgb=(.6 .4 .4)} Face 30571 10450 10333 18377 {rgb=(.6 .4 .4)} Face 30572 10333 10187 18377 {rgb=(.6 .4 .4)} Face 30573 10333 10613 18378 {rgb=(.6 .4 .4)} Face 30574 10613 10825 18378 {rgb=(.6 .4 .4)} Face 30575 10825 10663 18378 {rgb=(.6 .4 .4)} Face 30576 10663 10333 18378 {rgb=(.6 .4 .4)} Face 30577 10663 10825 18379 {rgb=(.6 .4 .4)} Face 30578 10825 10872 18379 {rgb=(.6 .4 .4)} Face 30579 10872 10750 18379 {rgb=(.6 .4 .4)} Face 30580 10750 10663 18379 {rgb=(.6 .4 .4)} Face 30581 10750 10872 18380 {rgb=(.6 .4 .4)} Face 30582 10872 10879 18380 {rgb=(.6 .4 .4)} Face 30583 10879 10753 18380 {rgb=(.6 .4 .4)} Face 30584 10753 10750 18380 {rgb=(.6 .4 .4)} Face 30585 10716 10753 18381 {rgb=(.6 .4 .4)} Face 30586 10753 10879 18381 {rgb=(.6 .4 .4)} Face 30587 10879 10843 18381 {rgb=(.6 .4 .4)} Face 30588 10843 10716 18381 {rgb=(.6 .4 .4)} Face 30589 10906 10843 18382 {rgb=(.6 .4 .4)} Face 30590 10843 10879 18382 {rgb=(.6 .4 .4)} Face 30591 10879 10910 18382 {rgb=(.6 .4 .4)} Face 30592 10910 10906 18382 {rgb=(.6 .4 .4)} Face 30593 10910 10879 18383 {rgb=(.6 .4 .4)} Face 30594 10879 10872 18383 {rgb=(.6 .4 .4)} Face 30595 10872 10902 18383 {rgb=(.6 .4 .4)} Face 30596 10902 10910 18383 {rgb=(.6 .4 .4)} Face 30597 10902 10872 18384 {rgb=(.6 .4 .4)} Face 30598 10872 10825 18384 {rgb=(.6 .4 .4)} Face 30599 10825 10858 18384 {rgb=(.6 .4 .4)} Face 30600 10858 10902 18384 {rgb=(.6 .4 .4)} Face 30601 10928 10902 18385 {rgb=(.6 .4 .4)} Face 30602 10902 10858 18385 {rgb=(.6 .4 .4)} Face 30603 10858 10866 18385 {rgb=(.6 .4 .4)} Face 30604 10866 10928 18385 {rgb=(.6 .4 .4)} Face 30605 10780 10866 18386 {rgb=(.6 .4 .4)} Face 30606 10866 10858 18386 {rgb=(.6 .4 .4)} Face 30607 10858 10752 18386 {rgb=(.6 .4 .4)} Face 30608 10752 10780 18386 {rgb=(.6 .4 .4)} Face 30609 10858 10825 18387 {rgb=(.6 .4 .4)} Face 30610 10825 10613 18387 {rgb=(.6 .4 .4)} Face 30611 10613 10752 18387 {rgb=(.6 .4 .4)} Face 30612 10752 10858 18387 {rgb=(.6 .4 .4)} Face 30613 10613 10450 18388 {rgb=(.6 .4 .4)} Face 30614 10450 10510 18388 {rgb=(.6 .4 .4)} Face 30615 10510 10752 18388 {rgb=(.6 .4 .4)} Face 30616 10752 10613 18388 {rgb=(.6 .4 .4)} Face 30617 10780 10752 18389 {rgb=(.6 .4 .4)} Face 30618 10752 10510 18389 {rgb=(.6 .4 .4)} Face 30619 10510 10515 18389 {rgb=(.6 .4 .4)} Face 30620 10515 10780 18389 {rgb=(.6 .4 .4)} Face 30621 10233 10515 18390 {rgb=(.6 .4 .4)} Face 30622 10515 10510 18390 {rgb=(.6 .4 .4)} Face 30623 10510 10236 18390 {rgb=(.6 .4 .4)} Face 30624 10236 10233 18390 {rgb=(.6 .4 .4)} Face 30625 10510 10450 18391 {rgb=(.6 .4 .4)} Face 30626 10450 10226 18391 {rgb=(.6 .4 .4)} Face 30627 10226 10236 18391 {rgb=(.6 .4 .4)} Face 30628 10236 10510 18391 {rgb=(.6 .4 .4)} Face 30629 10226 10076 18392 {rgb=(.6 .4 .4)} Face 30630 10076 10108 18392 {rgb=(.6 .4 .4)} Face 30631 10108 10236 18392 {rgb=(.6 .4 .4)} Face 30632 10236 10226 18392 {rgb=(.6 .4 .4)} Face 30633 10236 10108 18393 {rgb=(.6 .4 .4)} Face 30634 10108 10096 18393 {rgb=(.6 .4 .4)} Face 30635 10096 10233 18393 {rgb=(.6 .4 .4)} Face 30636 10233 10236 18393 {rgb=(.6 .4 .4)} Face 30637 10096 10102 18394 {rgb=(.6 .4 .4)} Face 30638 10102 10230 18394 {rgb=(.6 .4 .4)} Face 30639 10230 10233 18394 {rgb=(.6 .4 .4)} Face 30640 10233 10096 18394 {rgb=(.6 .4 .4)} Face 30641 10233 10230 18395 {rgb=(.6 .4 .4)} Face 30642 10230 10369 18395 {rgb=(.6 .4 .4)} Face 30643 10369 10515 18395 {rgb=(.6 .4 .4)} Face 30644 10515 10233 18395 {rgb=(.6 .4 .4)} Face 30645 10596 10779 18396 {rgb=(.6 .4 .4)} Face 30646 10779 10842 18396 {rgb=(.6 .4 .4)} Face 30647 10842 10780 18396 {rgb=(.6 .4 .4)} Face 30648 10780 10596 18396 {rgb=(.6 .4 .4)} Face 30649 10780 10842 18397 {rgb=(.6 .4 .4)} Face 30650 10842 10880 18397 {rgb=(.6 .4 .4)} Face 30651 10880 10866 18397 {rgb=(.6 .4 .4)} Face 30652 10866 10780 18397 {rgb=(.6 .4 .4)} Face 30653 10866 10880 18398 {rgb=(.6 .4 .4)} Face 30654 10880 10939 18398 {rgb=(.6 .4 .4)} Face 30655 10939 10928 18398 {rgb=(.6 .4 .4)} Face 30656 10928 10866 18398 {rgb=(.6 .4 .4)} Face 30657 9988 9928 18399 {rgb=(.6 .4 .4)} Face 30658 9928 10027 18399 {rgb=(.6 .4 .4)} Face 30659 10027 10084 18399 {rgb=(.6 .4 .4)} Face 30660 10084 9988 18399 {rgb=(.6 .4 .4)} Face 30661 9988 9974 18400 {rgb=(.6 .4 .4)} Face 30662 9974 9924 18400 {rgb=(.6 .4 .4)} Face 30663 9924 9928 18400 {rgb=(.6 .4 .4)} Face 30664 9928 9988 18400 {rgb=(.6 .4 .4)} Face 30665 9928 9924 18401 {rgb=(.6 .4 .4)} Face 30666 9924 9846 18401 {rgb=(.6 .4 .4)} Face 30667 9846 9814 18401 {rgb=(.6 .4 .4)} Face 30668 9814 9928 18401 {rgb=(.6 .4 .4)} Face 30669 10178 10181 18402 {rgb=(.6 .4 .4)} Face 30670 10181 10189 18402 {rgb=(.6 .4 .4)} Face 30671 10189 10188 18402 {rgb=(.6 .4 .4)} Face 30672 10188 10178 18402 {rgb=(.6 .4 .4)} Face 30673 10125 10129 18403 {rgb=(.6 .4 .4)} Face 30674 10129 10195 18403 {rgb=(.6 .4 .4)} Face 30675 10195 10173 18403 {rgb=(.6 .4 .4)} Face 30676 10173 10125 18403 {rgb=(.6 .4 .4)} Face 30677 10264 10229 18404 {rgb=(.6 .4 .4)} Face 30678 10229 10193 18404 {rgb=(.6 .4 .4)} Face 30679 10193 10249 18404 {rgb=(.6 .4 .4)} Face 30680 10249 10264 18404 {rgb=(.6 .4 .4)} Face 30681 10249 10193 18405 {rgb=(.6 .4 .4)} Face 30682 10193 10105 18405 {rgb=(.6 .4 .4)} Face 30683 10105 10211 18405 {rgb=(.6 .4 .4)} Face 30684 10211 10249 18405 {rgb=(.6 .4 .4)} Face 30685 10196 10211 18406 {rgb=(.6 .4 .4)} Face 30686 10211 10105 18406 {rgb=(.6 .4 .4)} Face 30687 10105 10085 18406 {rgb=(.6 .4 .4)} Face 30688 10085 10196 18406 {rgb=(.6 .4 .4)} Face 30689 9974 10085 18407 {rgb=(.6 .4 .4)} Face 30690 10085 10105 18407 {rgb=(.6 .4 .4)} Face 30691 10105 10052 18407 {rgb=(.6 .4 .4)} Face 30692 10052 9974 18407 {rgb=(.6 .4 .4)} Face 30693 10105 10193 18408 {rgb=(.6 .4 .4)} Face 30694 10193 10129 18408 {rgb=(.6 .4 .4)} Face 30695 10129 10052 18408 {rgb=(.6 .4 .4)} Face 30696 10052 10105 18408 {rgb=(.6 .4 .4)} Face 30697 10129 10193 18409 {rgb=(.6 .4 .4)} Face 30698 10193 10229 18409 {rgb=(.6 .4 .4)} Face 30699 10229 10195 18409 {rgb=(.6 .4 .4)} Face 30700 10195 10129 18409 {rgb=(.6 .4 .4)} Face 30701 10910 10902 18410 {rgb=(.6 .4 .4)} Face 30702 10902 10928 18410 {rgb=(.6 .4 .4)} Face 30703 10928 10932 18410 {rgb=(.6 .4 .4)} Face 30704 10932 10910 18410 {rgb=(.6 .4 .4)} Face 30705 10910 10932 18411 {rgb=(.6 .4 .4)} Face 30706 10932 10920 18411 {rgb=(.6 .4 .4)} Face 30707 10920 10906 18411 {rgb=(.6 .4 .4)} Face 30708 10906 10910 18411 {rgb=(.6 .4 .4)} Face 30709 10840 10906 18412 {rgb=(.6 .4 .4)} Face 30710 10906 10920 18412 {rgb=(.6 .4 .4)} Face 30711 10920 10876 18412 {rgb=(.6 .4 .4)} Face 30712 10876 10840 18412 {rgb=(.6 .4 .4)} Face 30713 10876 10920 18413 {rgb=(.6 .4 .4)} Face 30714 10920 10944 18413 {rgb=(.6 .4 .4)} Face 30715 10944 10894 18413 {rgb=(.6 .4 .4)} Face 30716 10894 10876 18413 {rgb=(.6 .4 .4)} Face 30717 10894 10944 18414 {rgb=(.6 .4 .4)} Face 30718 10944 10943 18414 {rgb=(.6 .4 .4)} Face 30719 10943 10901 18414 {rgb=(.6 .4 .4)} Face 30720 10901 10894 18414 {rgb=(.6 .4 .4)} Face 30721 10901 10943 18415 {rgb=(.6 .4 .4)} Face 30722 10943 10947 18415 {rgb=(.6 .4 .4)} Face 30723 10947 10913 18415 {rgb=(.6 .4 .4)} Face 30724 10913 10901 18415 {rgb=(.6 .4 .4)} Face 30725 10913 10947 18416 {rgb=(.6 .4 .4)} Face 30726 10947 10937 18416 {rgb=(.6 .4 .4)} Face 30727 10937 10898 18416 {rgb=(.6 .4 .4)} Face 30728 10898 10913 18416 {rgb=(.6 .4 .4)} Face 30729 10937 10939 18417 {rgb=(.6 .4 .4)} Face 30730 10939 10880 18417 {rgb=(.6 .4 .4)} Face 30731 10880 10898 18417 {rgb=(.6 .4 .4)} Face 30732 10898 10937 18417 {rgb=(.6 .4 .4)} Face 30733 10827 10888 18418 {rgb=(.6 .4 .4)} Face 30734 10888 10887 18418 {rgb=(.6 .4 .4)} Face 30735 10887 10869 18418 {rgb=(.6 .4 .4)} Face 30736 10869 10827 18418 {rgb=(.6 .4 .4)} Face 30737 10898 10869 18419 {rgb=(.6 .4 .4)} Face 30738 10869 10887 18419 {rgb=(.6 .4 .4)} Face 30739 10887 10913 18419 {rgb=(.6 .4 .4)} Face 30740 10913 10898 18419 {rgb=(.6 .4 .4)} Face 30741 10913 10887 18420 {rgb=(.6 .4 .4)} Face 30742 10887 10844 18420 {rgb=(.6 .4 .4)} Face 30743 10844 10901 18420 {rgb=(.6 .4 .4)} Face 30744 10901 10913 18420 {rgb=(.6 .4 .4)} Face 30745 10901 10844 18421 {rgb=(.6 .4 .4)} Face 30746 10844 10778 18421 {rgb=(.6 .4 .4)} Face 30747 10778 10894 18421 {rgb=(.6 .4 .4)} Face 30748 10894 10901 18421 {rgb=(.6 .4 .4)} Face 30749 10894 10778 18422 {rgb=(.6 .4 .4)} Face 30750 10778 10656 18422 {rgb=(.6 .4 .4)} Face 30751 10656 10876 18422 {rgb=(.6 .4 .4)} Face 30752 10876 10894 18422 {rgb=(.6 .4 .4)} Face 30753 10840 10876 18423 {rgb=(.6 .4 .4)} Face 30754 10876 10656 18423 {rgb=(.6 .4 .4)} Face 30755 10656 10501 18423 {rgb=(.6 .4 .4)} Face 30756 10501 10840 18423 {rgb=(.6 .4 .4)} Face 30757 10501 10656 18424 {rgb=(.6 .4 .4)} Face 30758 10656 10388 18424 {rgb=(.6 .4 .4)} Face 30759 10388 10353 18424 {rgb=(.6 .4 .4)} Face 30760 10353 10501 18424 {rgb=(.6 .4 .4)} Face 30761 10353 10388 18425 {rgb=(.6 .4 .4)} Face 30762 10388 10156 18425 {rgb=(.6 .4 .4)} Face 30763 10156 10123 18425 {rgb=(.6 .4 .4)} Face 30764 10123 10353 18425 {rgb=(.6 .4 .4)} Face 30765 9957 10123 18426 {rgb=(.6 .4 .4)} Face 30766 10123 10156 18426 {rgb=(.6 .4 .4)} Face 30767 10156 10044 18426 {rgb=(.6 .4 .4)} Face 30768 10044 9957 18426 {rgb=(.6 .4 .4)} Face 30769 10075 10044 18427 {rgb=(.6 .4 .4)} Face 30770 10044 10156 18427 {rgb=(.6 .4 .4)} Face 30771 10156 10158 18427 {rgb=(.6 .4 .4)} Face 30772 10158 10075 18427 {rgb=(.6 .4 .4)} Face 30773 10158 10156 18428 {rgb=(.6 .4 .4)} Face 30774 10156 10388 18428 {rgb=(.6 .4 .4)} Face 30775 10388 10401 18428 {rgb=(.6 .4 .4)} Face 30776 10401 10158 18428 {rgb=(.6 .4 .4)} Face 30777 10656 10652 18429 {rgb=(.6 .4 .4)} Face 30778 10652 10401 18429 {rgb=(.6 .4 .4)} Face 30779 10401 10388 18429 {rgb=(.6 .4 .4)} Face 30780 10388 10656 18429 {rgb=(.6 .4 .4)} Face 30781 10664 10696 18430 {rgb=(.6 .4 .4)} Face 30782 10696 10481 18430 {rgb=(.6 .4 .4)} Face 30783 10481 10422 18430 {rgb=(.6 .4 .4)} Face 30784 10422 10664 18430 {rgb=(.6 .4 .4)} Face 30785 10481 10696 18431 {rgb=(.6 .4 .4)} Face 30786 10696 10784 18431 {rgb=(.6 .4 .4)} Face 30787 10784 10572 18431 {rgb=(.6 .4 .4)} Face 30788 10572 10481 18431 {rgb=(.6 .4 .4)} Face 30789 10481 10572 18432 {rgb=(.6 .4 .4)} Face 30790 10572 10306 18432 {rgb=(.6 .4 .4)} Face 30791 10306 10228 18432 {rgb=(.6 .4 .4)} Face 30792 10228 10481 18432 {rgb=(.6 .4 .4)} Face 30793 10422 10481 18433 {rgb=(.6 .4 .4)} Face 30794 10481 10228 18433 {rgb=(.6 .4 .4)} Face 30795 10228 10171 18433 {rgb=(.6 .4 .4)} Face 30796 10171 10422 18433 {rgb=(.6 .4 .4)} Face 30797 10209 10196 18434 {rgb=(.6 .4 .4)} Face 30798 10196 10085 18434 {rgb=(.6 .4 .4)} Face 30799 10085 10150 18434 {rgb=(.6 .4 .4)} Face 30800 10150 10209 18434 {rgb=(.6 .4 .4)} Face 30801 9974 9988 18435 {rgb=(.6 .4 .4)} Face 30802 9988 10150 18435 {rgb=(.6 .4 .4)} Face 30803 10150 10085 18435 {rgb=(.6 .4 .4)} Face 30804 10085 9974 18435 {rgb=(.6 .4 .4)} Face 30805 10084 10171 18436 {rgb=(.6 .4 .4)} Face 30806 10171 10228 18436 {rgb=(.6 .4 .4)} Face 30807 10228 10150 18436 {rgb=(.6 .4 .4)} Face 30808 10150 10084 18436 {rgb=(.6 .4 .4)} Face 30809 10150 10228 18437 {rgb=(.6 .4 .4)} Face 30810 10228 10306 18437 {rgb=(.6 .4 .4)} Face 30811 10306 10209 18437 {rgb=(.6 .4 .4)} Face 30812 10209 10150 18437 {rgb=(.6 .4 .4)} Face 30813 10269 10209 18438 {rgb=(.6 .4 .4)} Face 30814 10209 10306 18438 {rgb=(.6 .4 .4)} Face 30815 10306 10390 18438 {rgb=(.6 .4 .4)} Face 30816 10390 10269 18438 {rgb=(.6 .4 .4)} Face 30817 10269 10390 18439 {rgb=(.6 .4 .4)} Face 30818 10390 10449 18439 {rgb=(.6 .4 .4)} Face 30819 10449 10296 18439 {rgb=(.6 .4 .4)} Face 30820 10296 10269 18439 {rgb=(.6 .4 .4)} Face 30821 10211 10296 18440 {rgb=(.6 .4 .4)} Face 30822 10296 10327 18440 {rgb=(.6 .4 .4)} Face 30823 10327 10249 18440 {rgb=(.6 .4 .4)} Face 30824 10249 10211 18440 {rgb=(.6 .4 .4)} Face 30825 10264 10249 18441 {rgb=(.6 .4 .4)} Face 30826 10249 10327 18441 {rgb=(.6 .4 .4)} Face 30827 10327 10352 18441 {rgb=(.6 .4 .4)} Face 30828 10352 10264 18441 {rgb=(.6 .4 .4)} Face 30829 10352 10327 18442 {rgb=(.6 .4 .4)} Face 30830 10327 10487 18442 {rgb=(.6 .4 .4)} Face 30831 10487 10526 18442 {rgb=(.6 .4 .4)} Face 30832 10526 10352 18442 {rgb=(.6 .4 .4)} Face 30833 10526 10487 18443 {rgb=(.6 .4 .4)} Face 30834 10487 10676 18443 {rgb=(.6 .4 .4)} Face 30835 10676 10732 18443 {rgb=(.6 .4 .4)} Face 30836 10732 10526 18443 {rgb=(.6 .4 .4)} Face 30837 10676 10487 18444 {rgb=(.6 .4 .4)} Face 30838 10487 10449 18444 {rgb=(.6 .4 .4)} Face 30839 10449 10684 18444 {rgb=(.6 .4 .4)} Face 30840 10684 10676 18444 {rgb=(.6 .4 .4)} Face 30841 10684 10449 18445 {rgb=(.6 .4 .4)} Face 30842 10449 10390 18445 {rgb=(.6 .4 .4)} Face 30843 10390 10675 18445 {rgb=(.6 .4 .4)} Face 30844 10675 10684 18445 {rgb=(.6 .4 .4)} Face 30845 10684 10839 18446 {rgb=(.6 .4 .4)} Face 30846 10839 10830 18446 {rgb=(.6 .4 .4)} Face 30847 10830 10676 18446 {rgb=(.6 .4 .4)} Face 30848 10676 10684 18446 {rgb=(.6 .4 .4)} Face 30849 10781 10676 18447 {rgb=(.6 .4 .4)} Face 30850 10676 10830 18447 {rgb=(.6 .4 .4)} Face 30851 10830 10848 18447 {rgb=(.6 .4 .4)} Face 30852 10848 10781 18447 {rgb=(.6 .4 .4)} Face 30853 10948 10848 18448 {rgb=(.6 .4 .4)} Face 30854 10848 10830 18448 {rgb=(.6 .4 .4)} Face 30855 10830 10926 18448 {rgb=(.6 .4 .4)} Face 30856 10926 10948 18448 {rgb=(.6 .4 .4)} Face 30857 10926 10830 18449 {rgb=(.6 .4 .4)} Face 30858 10830 10839 18449 {rgb=(.6 .4 .4)} Face 30859 10839 10952 18449 {rgb=(.6 .4 .4)} Face 30860 10952 10926 18449 {rgb=(.6 .4 .4)} Face 30861 10684 10675 18450 {rgb=(.6 .4 .4)} Face 30862 10675 10834 18450 {rgb=(.6 .4 .4)} Face 30863 10834 10839 18450 {rgb=(.6 .4 .4)} Face 30864 10839 10684 18450 {rgb=(.6 .4 .4)} Face 30865 10572 10675 18451 {rgb=(.6 .4 .4)} Face 30866 10675 10390 18451 {rgb=(.6 .4 .4)} Face 30867 10390 10306 18451 {rgb=(.6 .4 .4)} Face 30868 10306 10572 18451 {rgb=(.6 .4 .4)} Face 30869 10784 10834 18452 {rgb=(.6 .4 .4)} Face 30870 10834 10675 18452 {rgb=(.6 .4 .4)} Face 30871 10675 10572 18452 {rgb=(.6 .4 .4)} Face 30872 10572 10784 18452 {rgb=(.6 .4 .4)} Face 30873 10909 10952 18453 {rgb=(.6 .4 .4)} Face 30874 10952 10839 18453 {rgb=(.6 .4 .4)} Face 30875 10839 10834 18453 {rgb=(.6 .4 .4)} Face 30876 10834 10909 18453 {rgb=(.6 .4 .4)} Face 30877 10946 10909 18454 {rgb=(.6 .4 .4)} Face 30878 10909 10861 18454 {rgb=(.6 .4 .4)} Face 30879 10861 10867 18454 {rgb=(.6 .4 .4)} Face 30880 10867 10946 18454 {rgb=(.6 .4 .4)} Face 30881 10867 10790 18455 {rgb=(.6 .4 .4)} Face 30882 10790 10775 18455 {rgb=(.6 .4 .4)} Face 30883 10775 10849 18455 {rgb=(.6 .4 .4)} Face 30884 10849 10867 18455 {rgb=(.6 .4 .4)} Face 30885 10774 10778 18456 {rgb=(.6 .4 .4)} Face 30886 10778 10844 18456 {rgb=(.6 .4 .4)} Face 30887 10844 10851 18456 {rgb=(.6 .4 .4)} Face 30888 10851 10774 18456 {rgb=(.6 .4 .4)} Face 30889 10851 10844 18457 {rgb=(.6 .4 .4)} Face 30890 10844 10887 18457 {rgb=(.6 .4 .4)} Face 30891 10887 10888 18457 {rgb=(.6 .4 .4)} Face 30892 10888 10851 18457 {rgb=(.6 .4 .4)} Face 30893 10888 10915 18458 {rgb=(.6 .4 .4)} Face 30894 10915 10916 18458 {rgb=(.6 .4 .4)} Face 30895 10916 10851 18458 {rgb=(.6 .4 .4)} Face 30896 10851 10888 18458 {rgb=(.6 .4 .4)} Face 30897 10867 10849 18459 {rgb=(.6 .4 .4)} Face 30898 10849 10918 18459 {rgb=(.6 .4 .4)} Face 30899 10918 10946 18459 {rgb=(.6 .4 .4)} Face 30900 10946 10867 18459 {rgb=(.6 .4 .4)} Face 30901 10957 10952 18460 {rgb=(.6 .4 .4)} Face 30902 10952 10909 18460 {rgb=(.6 .4 .4)} Face 30903 10909 10946 18460 {rgb=(.6 .4 .4)} Face 30904 10946 10957 18460 {rgb=(.6 .4 .4)} Face 30905 10916 10915 18461 {rgb=(.6 .4 .4)} Face 30906 10915 10970 18461 {rgb=(.6 .4 .4)} Face 30907 10970 10969 18461 {rgb=(.6 .4 .4)} Face 30908 10969 10916 18461 {rgb=(.6 .4 .4)} Face 30909 11014 11023 18462 {rgb=(.6 .4 .4)} Face 30910 11023 11017 18462 {rgb=(.6 .4 .4)} Face 30911 11017 11001 18462 {rgb=(.6 .4 .4)} Face 30912 11001 11014 18462 {rgb=(.6 .4 .4)} Face 30913 10992 10969 18463 {rgb=(.6 .4 .4)} Face 30914 10969 10970 18463 {rgb=(.6 .4 .4)} Face 30915 10970 11012 18463 {rgb=(.6 .4 .4)} Face 30916 11012 10992 18463 {rgb=(.6 .4 .4)} Face 30917 10985 10926 18464 {rgb=(.6 .4 .4)} Face 30918 10926 10952 18464 {rgb=(.6 .4 .4)} Face 30919 10952 10957 18464 {rgb=(.6 .4 .4)} Face 30920 10957 10985 18464 {rgb=(.6 .4 .4)} Face 30921 10985 10999 18465 {rgb=(.6 .4 .4)} Face 30922 10999 10948 18465 {rgb=(.6 .4 .4)} Face 30923 10948 10926 18465 {rgb=(.6 .4 .4)} Face 30924 10926 10985 18465 {rgb=(.6 .4 .4)} Face 30925 10999 10988 18466 {rgb=(.6 .4 .4)} Face 30926 10988 10954 18466 {rgb=(.6 .4 .4)} Face 30927 10954 10948 18466 {rgb=(.6 .4 .4)} Face 30928 10948 10999 18466 {rgb=(.6 .4 .4)} Face 30929 10985 10992 18467 {rgb=(.6 .4 .4)} Face 30930 10992 10996 18467 {rgb=(.6 .4 .4)} Face 30931 10996 10999 18467 {rgb=(.6 .4 .4)} Face 30932 10999 10985 18467 {rgb=(.6 .4 .4)} Face 30933 11012 11019 18468 {rgb=(.6 .4 .4)} Face 30934 11019 10996 18468 {rgb=(.6 .4 .4)} Face 30935 10996 10992 18468 {rgb=(.6 .4 .4)} Face 30936 10992 11012 18468 {rgb=(.6 .4 .4)} Face 30937 11019 10972 18469 {rgb=(.6 .4 .4)} Face 30938 10972 10956 18469 {rgb=(.6 .4 .4)} Face 30939 10956 11001 18469 {rgb=(.6 .4 .4)} Face 30940 11001 11019 18469 {rgb=(.6 .4 .4)} Face 30941 10919 11012 18470 {rgb=(.6 .4 .4)} Face 30942 11012 10970 18470 {rgb=(.6 .4 .4)} Face 30943 10970 10905 18470 {rgb=(.6 .4 .4)} Face 30944 10905 10919 18470 {rgb=(.6 .4 .4)} Face 30945 10905 10970 18471 {rgb=(.6 .4 .4)} Face 30946 10970 10915 18471 {rgb=(.6 .4 .4)} Face 30947 10915 10870 18471 {rgb=(.6 .4 .4)} Face 30948 10870 10905 18471 {rgb=(.6 .4 .4)} Face 30949 10915 10888 18472 {rgb=(.6 .4 .4)} Face 30950 10888 10827 18472 {rgb=(.6 .4 .4)} Face 30951 10827 10870 18472 {rgb=(.6 .4 .4)} Face 30952 10870 10915 18472 {rgb=(.6 .4 .4)} Face 30953 10917 10896 18473 {rgb=(.6 .4 .4)} Face 30954 10896 10862 18473 {rgb=(.6 .4 .4)} Face 30955 10862 10856 18473 {rgb=(.6 .4 .4)} Face 30956 10856 10917 18473 {rgb=(.6 .4 .4)} Face 30957 10856 10862 18474 {rgb=(.6 .4 .4)} Face 30958 10862 10807 18474 {rgb=(.6 .4 .4)} Face 30959 10807 10812 18474 {rgb=(.6 .4 .4)} Face 30960 10812 10856 18474 {rgb=(.6 .4 .4)} Face 30961 10776 10594 18475 {rgb=(.6 .4 .4)} Face 30962 10594 10727 18475 {rgb=(.6 .4 .4)} Face 30963 10727 10812 18475 {rgb=(.6 .4 .4)} Face 30964 10812 10776 18475 {rgb=(.6 .4 .4)} Face 30965 10812 10727 18476 {rgb=(.6 .4 .4)} Face 30966 10727 10800 18476 {rgb=(.6 .4 .4)} Face 30967 10800 10856 18476 {rgb=(.6 .4 .4)} Face 30968 10856 10812 18476 {rgb=(.6 .4 .4)} Face 30969 10856 10800 18477 {rgb=(.6 .4 .4)} Face 30970 10800 10860 18477 {rgb=(.6 .4 .4)} Face 30971 10860 10917 18477 {rgb=(.6 .4 .4)} Face 30972 10917 10856 18477 {rgb=(.6 .4 .4)} Face 30973 10860 10881 18478 {rgb=(.6 .4 .4)} Face 30974 10881 10911 18478 {rgb=(.6 .4 .4)} Face 30975 10911 10917 18478 {rgb=(.6 .4 .4)} Face 30976 10917 10860 18478 {rgb=(.6 .4 .4)} Face 30977 10917 10911 18479 {rgb=(.6 .4 .4)} Face 30978 10911 10899 18479 {rgb=(.6 .4 .4)} Face 30979 10899 10896 18479 {rgb=(.6 .4 .4)} Face 30980 10896 10917 18479 {rgb=(.6 .4 .4)} Face 30981 11012 10919 18480 {rgb=(.6 .4 .4)} Face 30982 10919 10972 18480 {rgb=(.6 .4 .4)} Face 30983 10972 11019 18480 {rgb=(.6 .4 .4)} Face 30984 11019 11012 18480 {rgb=(.6 .4 .4)} Face 30985 10886 10899 18481 {rgb=(.6 .4 .4)} Face 30986 10899 10911 18481 {rgb=(.6 .4 .4)} Face 30987 10911 10865 18481 {rgb=(.6 .4 .4)} Face 30988 10865 10886 18481 {rgb=(.6 .4 .4)} Face 30989 10865 10911 18482 {rgb=(.6 .4 .4)} Face 30990 10911 10881 18482 {rgb=(.6 .4 .4)} Face 30991 10881 10831 18482 {rgb=(.6 .4 .4)} Face 30992 10831 10865 18482 {rgb=(.6 .4 .4)} Face 30993 10619 10831 18483 {rgb=(.6 .4 .4)} Face 30994 10831 10881 18483 {rgb=(.6 .4 .4)} Face 30995 10881 10669 18483 {rgb=(.6 .4 .4)} Face 30996 10669 10619 18483 {rgb=(.6 .4 .4)} Face 30997 10669 10881 18484 {rgb=(.6 .4 .4)} Face 30998 10881 10860 18484 {rgb=(.6 .4 .4)} Face 30999 10860 10651 18484 {rgb=(.6 .4 .4)} Face 31000 10651 10669 18484 {rgb=(.6 .4 .4)} Face 31001 10651 10860 18485 {rgb=(.6 .4 .4)} Face 31002 10860 10800 18485 {rgb=(.6 .4 .4)} Face 31003 10800 10506 18485 {rgb=(.6 .4 .4)} Face 31004 10506 10651 18485 {rgb=(.6 .4 .4)} Face 31005 10506 10800 18486 {rgb=(.6 .4 .4)} Face 31006 10800 10727 18486 {rgb=(.6 .4 .4)} Face 31007 10727 10433 18486 {rgb=(.6 .4 .4)} Face 31008 10433 10506 18486 {rgb=(.6 .4 .4)} Face 31009 10727 10594 18487 {rgb=(.6 .4 .4)} Face 31010 10594 10378 18487 {rgb=(.6 .4 .4)} Face 31011 10378 10433 18487 {rgb=(.6 .4 .4)} Face 31012 10433 10727 18487 {rgb=(.6 .4 .4)} Face 31013 9924 10017 18488 {rgb=(.6 .4 .4)} Face 31014 10017 9965 18488 {rgb=(.6 .4 .4)} Face 31015 9965 9846 18488 {rgb=(.6 .4 .4)} Face 31016 9846 9924 18488 {rgb=(.6 .4 .4)} Face 31017 10017 10125 18489 {rgb=(.6 .4 .4)} Face 31018 10125 10100 18489 {rgb=(.6 .4 .4)} Face 31019 10100 9965 18489 {rgb=(.6 .4 .4)} Face 31020 9965 10017 18489 {rgb=(.6 .4 .4)} Face 31021 10100 10125 18490 {rgb=(.6 .4 .4)} Face 31022 10125 10173 18490 {rgb=(.6 .4 .4)} Face 31023 10173 10130 18490 {rgb=(.6 .4 .4)} Face 31024 10130 10100 18490 {rgb=(.6 .4 .4)} Face 31025 10130 10173 18491 {rgb=(.6 .4 .4)} Face 31026 10173 10189 18491 {rgb=(.6 .4 .4)} Face 31027 10189 10181 18491 {rgb=(.6 .4 .4)} Face 31028 10181 10130 18491 {rgb=(.6 .4 .4)} Face 31029 10181 10231 18492 {rgb=(.6 .4 .4)} Face 31030 10231 10163 18492 {rgb=(.6 .4 .4)} Face 31031 10163 10130 18492 {rgb=(.6 .4 .4)} Face 31032 10130 10181 18492 {rgb=(.6 .4 .4)} Face 31033 10130 10163 18493 {rgb=(.6 .4 .4)} Face 31034 10163 10115 18493 {rgb=(.6 .4 .4)} Face 31035 10115 10100 18493 {rgb=(.6 .4 .4)} Face 31036 10100 10130 18493 {rgb=(.6 .4 .4)} Face 31037 10100 10115 18494 {rgb=(.6 .4 .4)} Face 31038 10115 9978 18494 {rgb=(.6 .4 .4)} Face 31039 9978 9965 18494 {rgb=(.6 .4 .4)} Face 31040 9965 10100 18494 {rgb=(.6 .4 .4)} Face 31041 9965 9978 18495 {rgb=(.6 .4 .4)} Face 31042 9978 9908 18495 {rgb=(.6 .4 .4)} Face 31043 9908 9846 18495 {rgb=(.6 .4 .4)} Face 31044 9846 9965 18495 {rgb=(.6 .4 .4)} Face 31045 9814 9846 18496 {rgb=(.6 .4 .4)} Face 31046 9846 9908 18496 {rgb=(.6 .4 .4)} Face 31047 9908 9893 18496 {rgb=(.6 .4 .4)} Face 31048 9893 9814 18496 {rgb=(.6 .4 .4)} Face 31049 10057 9893 18497 {rgb=(.6 .4 .4)} Face 31050 9893 9908 18497 {rgb=(.6 .4 .4)} Face 31051 9908 10001 18497 {rgb=(.6 .4 .4)} Face 31052 10001 10057 18497 {rgb=(.6 .4 .4)} Face 31053 9908 9978 18498 {rgb=(.6 .4 .4)} Face 31054 9978 10069 18498 {rgb=(.6 .4 .4)} Face 31055 10069 10001 18498 {rgb=(.6 .4 .4)} Face 31056 10001 9908 18498 {rgb=(.6 .4 .4)} Face 31057 10078 10099 18499 {rgb=(.6 .4 .4)} Face 31058 10099 10093 18499 {rgb=(.6 .4 .4)} Face 31059 10093 10091 18499 {rgb=(.6 .4 .4)} Face 31060 10091 10078 18499 {rgb=(.6 .4 .4)} Face 31061 10078 10091 18500 {rgb=(.6 .4 .4)} Face 31062 10091 10149 18500 {rgb=(.6 .4 .4)} Face 31063 10149 10104 18500 {rgb=(.6 .4 .4)} Face 31064 10104 10078 18500 {rgb=(.6 .4 .4)} Face 31065 10149 10224 18501 {rgb=(.6 .4 .4)} Face 31066 10224 10097 18501 {rgb=(.6 .4 .4)} Face 31067 10097 10104 18501 {rgb=(.6 .4 .4)} Face 31068 10104 10149 18501 {rgb=(.6 .4 .4)} Face 31069 10254 10146 18502 {rgb=(.6 .4 .4)} Face 31070 10146 10147 18502 {rgb=(.6 .4 .4)} Face 31071 10147 10257 18502 {rgb=(.6 .4 .4)} Face 31072 10257 10254 18502 {rgb=(.6 .4 .4)} Face 31073 10093 10147 18503 {rgb=(.6 .4 .4)} Face 31074 10147 10146 18503 {rgb=(.6 .4 .4)} Face 31075 10146 10091 18503 {rgb=(.6 .4 .4)} Face 31076 10091 10093 18503 {rgb=(.6 .4 .4)} Face 31077 10146 10254 18504 {rgb=(.6 .4 .4)} Face 31078 10254 10224 18504 {rgb=(.6 .4 .4)} Face 31079 10224 10149 18504 {rgb=(.6 .4 .4)} Face 31080 10149 10146 18504 {rgb=(.6 .4 .4)} Face 31081 10378 10224 18505 {rgb=(.6 .4 .4)} Face 31082 10224 10254 18505 {rgb=(.6 .4 .4)} Face 31083 10254 10433 18505 {rgb=(.6 .4 .4)} Face 31084 10433 10378 18505 {rgb=(.6 .4 .4)} Face 31085 10433 10254 18506 {rgb=(.6 .4 .4)} Face 31086 10254 10257 18506 {rgb=(.6 .4 .4)} Face 31087 10257 10506 18506 {rgb=(.6 .4 .4)} Face 31088 10506 10433 18506 {rgb=(.6 .4 .4)} Face 31089 10506 10257 18507 {rgb=(.6 .4 .4)} Face 31090 10257 10287 18507 {rgb=(.6 .4 .4)} Face 31091 10287 10651 18507 {rgb=(.6 .4 .4)} Face 31092 10651 10506 18507 {rgb=(.6 .4 .4)} Face 31093 10651 10287 18508 {rgb=(.6 .4 .4)} Face 31094 10287 10347 18508 {rgb=(.6 .4 .4)} Face 31095 10347 10669 18508 {rgb=(.6 .4 .4)} Face 31096 10669 10651 18508 {rgb=(.6 .4 .4)} Face 31097 10335 10470 18509 {rgb=(.6 .4 .4)} Face 31098 10470 10347 18509 {rgb=(.6 .4 .4)} Face 31099 10347 10232 18509 {rgb=(.6 .4 .4)} Face 31100 10232 10335 18509 {rgb=(.6 .4 .4)} Face 31101 10232 10347 18510 {rgb=(.6 .4 .4)} Face 31102 10347 10287 18510 {rgb=(.6 .4 .4)} Face 31103 10287 10184 18510 {rgb=(.6 .4 .4)} Face 31104 10184 10232 18510 {rgb=(.6 .4 .4)} Face 31105 10287 10257 18511 {rgb=(.6 .4 .4)} Face 31106 10257 10147 18511 {rgb=(.6 .4 .4)} Face 31107 10147 10184 18511 {rgb=(.6 .4 .4)} Face 31108 10184 10287 18511 {rgb=(.6 .4 .4)} Face 31109 10184 10147 18512 {rgb=(.6 .4 .4)} Face 31110 10147 10093 18512 {rgb=(.6 .4 .4)} Face 31111 10093 10131 18512 {rgb=(.6 .4 .4)} Face 31112 10131 10184 18512 {rgb=(.6 .4 .4)} Face 31113 10131 10093 18513 {rgb=(.6 .4 .4)} Face 31114 10093 10099 18513 {rgb=(.6 .4 .4)} Face 31115 10099 10179 18513 {rgb=(.6 .4 .4)} Face 31116 10179 10131 18513 {rgb=(.6 .4 .4)} Face 31117 10069 9978 18514 {rgb=(.6 .4 .4)} Face 31118 9978 10115 18514 {rgb=(.6 .4 .4)} Face 31119 10115 10174 18514 {rgb=(.6 .4 .4)} Face 31120 10174 10069 18514 {rgb=(.6 .4 .4)} Face 31121 10174 10115 18515 {rgb=(.6 .4 .4)} Face 31122 10115 10163 18515 {rgb=(.6 .4 .4)} Face 31123 10163 10235 18515 {rgb=(.6 .4 .4)} Face 31124 10235 10174 18515 {rgb=(.6 .4 .4)} Face 31125 10163 10231 18516 {rgb=(.6 .4 .4)} Face 31126 10231 10338 18516 {rgb=(.6 .4 .4)} Face 31127 10338 10235 18516 {rgb=(.6 .4 .4)} Face 31128 10235 10163 18516 {rgb=(.6 .4 .4)} Face 31129 10371 10308 18517 {rgb=(.6 .4 .4)} Face 31130 10308 10190 18517 {rgb=(.6 .4 .4)} Face 31131 10190 10243 18517 {rgb=(.6 .4 .4)} Face 31132 10243 10371 18517 {rgb=(.6 .4 .4)} Face 31133 10179 10243 18518 {rgb=(.6 .4 .4)} Face 31134 10243 10190 18518 {rgb=(.6 .4 .4)} Face 31135 10190 10131 18518 {rgb=(.6 .4 .4)} Face 31136 10131 10179 18518 {rgb=(.6 .4 .4)} Face 31137 10184 10131 18519 {rgb=(.6 .4 .4)} Face 31138 10131 10190 18519 {rgb=(.6 .4 .4)} Face 31139 10190 10232 18519 {rgb=(.6 .4 .4)} Face 31140 10232 10184 18519 {rgb=(.6 .4 .4)} Face 31141 10232 10190 18520 {rgb=(.6 .4 .4)} Face 31142 10190 10308 18520 {rgb=(.6 .4 .4)} Face 31143 10308 10335 18520 {rgb=(.6 .4 .4)} Face 31144 10335 10232 18520 {rgb=(.6 .4 .4)} Face 31145 10607 10470 18521 {rgb=(.6 .4 .4)} Face 31146 10470 10335 18521 {rgb=(.6 .4 .4)} Face 31147 10335 10308 18521 {rgb=(.6 .4 .4)} Face 31148 10308 10607 18521 {rgb=(.6 .4 .4)} Face 31149 10912 10865 18522 {rgb=(.6 .4 .4)} Face 31150 10865 10770 18522 {rgb=(.6 .4 .4)} Face 31151 10770 10868 18522 {rgb=(.6 .4 .4)} Face 31152 10868 10912 18522 {rgb=(.6 .4 .4)} Face 31153 10770 10865 18523 {rgb=(.6 .4 .4)} Face 31154 10865 10831 18523 {rgb=(.6 .4 .4)} Face 31155 10831 10607 18523 {rgb=(.6 .4 .4)} Face 31156 10607 10770 18523 {rgb=(.6 .4 .4)} Face 31157 10607 10831 18524 {rgb=(.6 .4 .4)} Face 31158 10831 10619 18524 {rgb=(.6 .4 .4)} Face 31159 10619 10470 18524 {rgb=(.6 .4 .4)} Face 31160 10470 10607 18524 {rgb=(.6 .4 .4)} Face 31161 10619 10669 18525 {rgb=(.6 .4 .4)} Face 31162 10669 10347 18525 {rgb=(.6 .4 .4)} Face 31163 10347 10470 18525 {rgb=(.6 .4 .4)} Face 31164 10470 10619 18525 {rgb=(.6 .4 .4)} Face 31165 10801 10781 18526 {rgb=(.6 .4 .4)} Face 31166 10781 10848 18526 {rgb=(.6 .4 .4)} Face 31167 10848 10874 18526 {rgb=(.6 .4 .4)} Face 31168 10874 10801 18526 {rgb=(.6 .4 .4)} Face 31169 10874 10954 18527 {rgb=(.6 .4 .4)} Face 31170 10954 10971 18527 {rgb=(.6 .4 .4)} Face 31171 10971 10884 18527 {rgb=(.6 .4 .4)} Face 31172 10884 10874 18527 {rgb=(.6 .4 .4)} Face 31173 10954 10988 18528 {rgb=(.6 .4 .4)} Face 31174 10988 10958 18528 {rgb=(.6 .4 .4)} Face 31175 10958 10971 18528 {rgb=(.6 .4 .4)} Face 31176 10971 10954 18528 {rgb=(.6 .4 .4)} Face 31177 10958 10988 18529 {rgb=(.6 .4 .4)} Face 31178 10988 11017 18529 {rgb=(.6 .4 .4)} Face 31179 11017 11023 18529 {rgb=(.6 .4 .4)} Face 31180 11023 10958 18529 {rgb=(.6 .4 .4)} Face 31181 10281 10264 18530 {rgb=(.6 .4 .4)} Face 31182 10264 10352 18530 {rgb=(.6 .4 .4)} Face 31183 10352 10364 18530 {rgb=(.6 .4 .4)} Face 31184 10364 10281 18530 {rgb=(.6 .4 .4)} Face 31185 10352 10526 18531 {rgb=(.6 .4 .4)} Face 31186 10526 10575 18531 {rgb=(.6 .4 .4)} Face 31187 10575 10364 18531 {rgb=(.6 .4 .4)} Face 31188 10364 10352 18531 {rgb=(.6 .4 .4)} Face 31189 10364 10575 18532 {rgb=(.6 .4 .4)} Face 31190 10575 10561 18532 {rgb=(.6 .4 .4)} Face 31191 10561 10421 18532 {rgb=(.6 .4 .4)} Face 31192 10421 10364 18532 {rgb=(.6 .4 .4)} Face 31193 10364 10421 18533 {rgb=(.6 .4 .4)} Face 31194 10421 10326 18533 {rgb=(.6 .4 .4)} Face 31195 10326 10281 18533 {rgb=(.6 .4 .4)} Face 31196 10281 10364 18533 {rgb=(.6 .4 .4)} Face 31197 10526 10732 18534 {rgb=(.6 .4 .4)} Face 31198 10732 10761 18534 {rgb=(.6 .4 .4)} Face 31199 10761 10575 18534 {rgb=(.6 .4 .4)} Face 31200 10575 10526 18534 {rgb=(.6 .4 .4)} Face 31201 10575 10761 18535 {rgb=(.6 .4 .4)} Face 31202 10761 10686 18535 {rgb=(.6 .4 .4)} Face 31203 10686 10561 18535 {rgb=(.6 .4 .4)} Face 31204 10561 10575 18535 {rgb=(.6 .4 .4)} Face 31205 10421 10561 18536 {rgb=(.6 .4 .4)} Face 31206 10561 10686 18536 {rgb=(.6 .4 .4)} Face 31207 10686 10447 18536 {rgb=(.6 .4 .4)} Face 31208 10447 10421 18536 {rgb=(.6 .4 .4)} Face 31209 10326 10421 18537 {rgb=(.6 .4 .4)} Face 31210 10421 10447 18537 {rgb=(.6 .4 .4)} Face 31211 10447 10292 18537 {rgb=(.6 .4 .4)} Face 31212 10292 10326 18537 {rgb=(.6 .4 .4)} Face 31213 10229 10264 18538 {rgb=(.6 .4 .4)} Face 31214 10264 10281 18538 {rgb=(.6 .4 .4)} Face 31215 10281 10246 18538 {rgb=(.6 .4 .4)} Face 31216 10246 10229 18538 {rgb=(.6 .4 .4)} Face 31217 10281 10326 18539 {rgb=(.6 .4 .4)} Face 31218 10326 10292 18539 {rgb=(.6 .4 .4)} Face 31219 10292 10246 18539 {rgb=(.6 .4 .4)} Face 31220 10246 10281 18539 {rgb=(.6 .4 .4)} Face 31221 10265 10188 18540 {rgb=(.6 .4 .4)} Face 31222 10188 10189 18540 {rgb=(.6 .4 .4)} Face 31223 10189 10227 18540 {rgb=(.6 .4 .4)} Face 31224 10227 10265 18540 {rgb=(.6 .4 .4)} Face 31225 10231 10216 18541 {rgb=(.6 .4 .4)} Face 31226 10216 10307 18541 {rgb=(.6 .4 .4)} Face 31227 10307 10338 18541 {rgb=(.6 .4 .4)} Face 31228 10338 10231 18541 {rgb=(.6 .4 .4)} Face 31229 10181 10178 18542 {rgb=(.6 .4 .4)} Face 31230 10178 10216 18542 {rgb=(.6 .4 .4)} Face 31231 10216 10231 18542 {rgb=(.6 .4 .4)} Face 31232 10231 10181 18542 {rgb=(.6 .4 .4)} Face 31233 10495 10868 18543 {rgb=(.6 .4 .4)} Face 31234 10868 10770 18543 {rgb=(.6 .4 .4)} Face 31235 10770 10371 18543 {rgb=(.6 .4 .4)} Face 31236 10371 10495 18543 {rgb=(.6 .4 .4)} Face 31237 10912 10956 18544 {rgb=(.6 .4 .4)} Face 31238 10956 10972 18544 {rgb=(.6 .4 .4)} Face 31239 10972 10931 18544 {rgb=(.6 .4 .4)} Face 31240 10931 10912 18544 {rgb=(.6 .4 .4)} Face 31241 112 17 18545 {rgb=(.6 .4 .4)} Face 31242 17 6 18545 {rgb=(.6 .4 .4)} Face 31243 6 65 18545 {rgb=(.6 .4 .4)} Face 31244 65 112 18545 {rgb=(.6 .4 .4)} Face 31245 65 6 18546 {rgb=(.6 .4 .4)} Face 31246 6 1 18546 {rgb=(.6 .4 .4)} Face 31247 1 15 18546 {rgb=(.6 .4 .4)} Face 31248 15 65 18546 {rgb=(.6 .4 .4)} Face 31249 15 1 18547 {rgb=(.6 .4 .4)} Face 31250 1 2 18547 {rgb=(.6 .4 .4)} Face 31251 2 11 18547 {rgb=(.6 .4 .4)} Face 31252 11 15 18547 {rgb=(.6 .4 .4)} Face 31253 11 2 18548 {rgb=(.6 .4 .4)} Face 31254 2 3 18548 {rgb=(.6 .4 .4)} Face 31255 3 24 18548 {rgb=(.6 .4 .4)} Face 31256 24 11 18548 {rgb=(.6 .4 .4)} Face 31257 24 3 18549 {rgb=(.6 .4 .4)} Face 31258 3 10 18549 {rgb=(.6 .4 .4)} Face 31259 10 56 18549 {rgb=(.6 .4 .4)} Face 31260 56 24 18549 {rgb=(.6 .4 .4)} Face 31261 56 10 18550 {rgb=(.6 .4 .4)} Face 31262 10 85 18550 {rgb=(.6 .4 .4)} Face 31263 85 94 18550 {rgb=(.6 .4 .4)} Face 31264 94 56 18550 {rgb=(.6 .4 .4)} Face 31265 153 85 18551 {rgb=(.6 .4 .4)} Face 31266 85 235 18551 {rgb=(.6 .4 .4)} Face 31267 235 223 18551 {rgb=(.6 .4 .4)} Face 31268 223 153 18551 {rgb=(.6 .4 .4)} Face 31269 235 627 18552 {rgb=(.6 .4 .4)} Face 31270 627 306 18552 {rgb=(.6 .4 .4)} Face 31271 306 223 18552 {rgb=(.6 .4 .4)} Face 31272 223 235 18552 {rgb=(.6 .4 .4)} Face 31273 306 627 18553 {rgb=(.6 .4 .4)} Face 31274 627 795 18553 {rgb=(.6 .4 .4)} Face 31275 795 360 18553 {rgb=(.6 .4 .4)} Face 31276 360 306 18553 {rgb=(.6 .4 .4)} Face 31277 360 795 18554 {rgb=(.6 .4 .4)} Face 31278 795 878 18554 {rgb=(.6 .4 .4)} Face 31279 878 489 18554 {rgb=(.6 .4 .4)} Face 31280 489 360 18554 {rgb=(.6 .4 .4)} Face 31281 489 878 18555 {rgb=(.6 .4 .4)} Face 31282 878 911 18555 {rgb=(.6 .4 .4)} Face 31283 911 592 18555 {rgb=(.6 .4 .4)} Face 31284 592 489 18555 {rgb=(.6 .4 .4)} Face 31285 592 911 18556 {rgb=(.6 .4 .4)} Face 31286 911 888 18556 {rgb=(.6 .4 .4)} Face 31287 888 604 18556 {rgb=(.6 .4 .4)} Face 31288 604 592 18556 {rgb=(.6 .4 .4)} Face 31289 604 888 18557 {rgb=(.6 .4 .4)} Face 31290 888 822 18557 {rgb=(.6 .4 .4)} Face 31291 822 533 18557 {rgb=(.6 .4 .4)} Face 31292 533 604 18557 {rgb=(.6 .4 .4)} Face 31293 427 822 18558 {rgb=(.6 .4 .4)} Face 31294 822 467 18558 {rgb=(.6 .4 .4)} Face 31295 467 231 18558 {rgb=(.6 .4 .4)} Face 31296 231 427 18558 {rgb=(.6 .4 .4)} Face 31297 231 467 18559 {rgb=(.6 .4 .4)} Face 31298 467 170 18559 {rgb=(.6 .4 .4)} Face 31299 170 167 18559 {rgb=(.6 .4 .4)} Face 31300 167 231 18559 {rgb=(.6 .4 .4)} Face 31301 167 170 18560 {rgb=(.6 .4 .4)} Face 31302 170 17 18560 {rgb=(.6 .4 .4)} Face 31303 17 112 18560 {rgb=(.6 .4 .4)} Face 31304 112 167 18560 {rgb=(.6 .4 .4)} Face 31305 153 223 18561 {rgb=(.6 .4 .4)} Face 31306 223 289 18561 {rgb=(.6 .4 .4)} Face 31307 289 188 18561 {rgb=(.6 .4 .4)} Face 31308 188 153 18561 {rgb=(.6 .4 .4)} Face 31309 306 360 18562 {rgb=(.6 .4 .4)} Face 31310 360 364 18562 {rgb=(.6 .4 .4)} Face 31311 364 344 18562 {rgb=(.6 .4 .4)} Face 31312 344 306 18562 {rgb=(.6 .4 .4)} Face 31313 360 489 18563 {rgb=(.6 .4 .4)} Face 31314 489 405 18563 {rgb=(.6 .4 .4)} Face 31315 405 364 18563 {rgb=(.6 .4 .4)} Face 31316 364 360 18563 {rgb=(.6 .4 .4)} Face 31317 489 592 18564 {rgb=(.6 .4 .4)} Face 31318 592 460 18564 {rgb=(.6 .4 .4)} Face 31319 460 405 18564 {rgb=(.6 .4 .4)} Face 31320 405 489 18564 {rgb=(.6 .4 .4)} Face 31321 592 604 18565 {rgb=(.6 .4 .4)} Face 31322 604 453 18565 {rgb=(.6 .4 .4)} Face 31323 453 460 18565 {rgb=(.6 .4 .4)} Face 31324 460 592 18565 {rgb=(.6 .4 .4)} Face 31325 604 533 18566 {rgb=(.6 .4 .4)} Face 31326 533 495 18566 {rgb=(.6 .4 .4)} Face 31327 495 453 18566 {rgb=(.6 .4 .4)} Face 31328 453 604 18566 {rgb=(.6 .4 .4)} Face 31329 533 427 18567 {rgb=(.6 .4 .4)} Face 31330 427 421 18567 {rgb=(.6 .4 .4)} Face 31331 421 495 18567 {rgb=(.6 .4 .4)} Face 31332 495 533 18567 {rgb=(.6 .4 .4)} Face 31333 427 231 18568 {rgb=(.6 .4 .4)} Face 31334 231 160 18568 {rgb=(.6 .4 .4)} Face 31335 160 421 18568 {rgb=(.6 .4 .4)} Face 31336 421 427 18568 {rgb=(.6 .4 .4)} Face 31337 167 112 18569 {rgb=(.6 .4 .4)} Face 31338 112 58 18569 {rgb=(.6 .4 .4)} Face 31339 58 92 18569 {rgb=(.6 .4 .4)} Face 31340 92 167 18569 {rgb=(.6 .4 .4)} Face 31341 112 65 18570 {rgb=(.6 .4 .4)} Face 31342 65 35 18570 {rgb=(.6 .4 .4)} Face 31343 35 58 18570 {rgb=(.6 .4 .4)} Face 31344 58 112 18570 {rgb=(.6 .4 .4)} Face 31345 65 15 18571 {rgb=(.6 .4 .4)} Face 31346 15 21 18571 {rgb=(.6 .4 .4)} Face 31347 21 35 18571 {rgb=(.6 .4 .4)} Face 31348 35 65 18571 {rgb=(.6 .4 .4)} Face 31349 11 24 18572 {rgb=(.6 .4 .4)} Face 31350 24 50 18572 {rgb=(.6 .4 .4)} Face 31351 50 32 18572 {rgb=(.6 .4 .4)} Face 31352 32 11 18572 {rgb=(.6 .4 .4)} Face 31353 24 56 18573 {rgb=(.6 .4 .4)} Face 31354 56 77 18573 {rgb=(.6 .4 .4)} Face 31355 77 50 18573 {rgb=(.6 .4 .4)} Face 31356 50 24 18573 {rgb=(.6 .4 .4)} Face 31357 56 94 18574 {rgb=(.6 .4 .4)} Face 31358 94 123 18574 {rgb=(.6 .4 .4)} Face 31359 123 77 18574 {rgb=(.6 .4 .4)} Face 31360 77 56 18574 {rgb=(.6 .4 .4)} Face 31361 94 153 18575 {rgb=(.6 .4 .4)} Face 31362 153 188 18575 {rgb=(.6 .4 .4)} Face 31363 188 123 18575 {rgb=(.6 .4 .4)} Face 31364 123 94 18575 {rgb=(.6 .4 .4)} Face 31365 170 467 18576 {rgb=(.6 .4 .4)} Face 31366 467 442 18576 {rgb=(.6 .4 .4)} Face 31367 442 162 18576 {rgb=(.6 .4 .4)} Face 31368 162 170 18576 {rgb=(.6 .4 .4)} Face 31369 467 822 18577 {rgb=(.6 .4 .4)} Face 31370 822 772 18577 {rgb=(.6 .4 .4)} Face 31371 772 442 18577 {rgb=(.6 .4 .4)} Face 31372 442 467 18577 {rgb=(.6 .4 .4)} Face 31373 822 888 18578 {rgb=(.6 .4 .4)} Face 31374 888 842 18578 {rgb=(.6 .4 .4)} Face 31375 842 772 18578 {rgb=(.6 .4 .4)} Face 31376 772 822 18578 {rgb=(.6 .4 .4)} Face 31377 888 911 18579 {rgb=(.6 .4 .4)} Face 31378 911 885 18579 {rgb=(.6 .4 .4)} Face 31379 885 842 18579 {rgb=(.6 .4 .4)} Face 31380 842 888 18579 {rgb=(.6 .4 .4)} Face 31381 911 878 18580 {rgb=(.6 .4 .4)} Face 31382 878 846 18580 {rgb=(.6 .4 .4)} Face 31383 846 885 18580 {rgb=(.6 .4 .4)} Face 31384 885 911 18580 {rgb=(.6 .4 .4)} Face 31385 878 795 18581 {rgb=(.6 .4 .4)} Face 31386 795 752 18581 {rgb=(.6 .4 .4)} Face 31387 752 846 18581 {rgb=(.6 .4 .4)} Face 31388 846 878 18581 {rgb=(.6 .4 .4)} Face 31389 795 627 18582 {rgb=(.6 .4 .4)} Face 31390 627 534 18582 {rgb=(.6 .4 .4)} Face 31391 534 752 18582 {rgb=(.6 .4 .4)} Face 31392 752 795 18582 {rgb=(.6 .4 .4)} Face 31393 627 235 18583 {rgb=(.6 .4 .4)} Face 31394 235 213 18583 {rgb=(.6 .4 .4)} Face 31395 213 534 18583 {rgb=(.6 .4 .4)} Face 31396 534 627 18583 {rgb=(.6 .4 .4)} Face 31397 235 85 18584 {rgb=(.6 .4 .4)} Face 31398 85 83 18584 {rgb=(.6 .4 .4)} Face 31399 83 213 18584 {rgb=(.6 .4 .4)} Face 31400 213 235 18584 {rgb=(.6 .4 .4)} Face 31401 85 10 18585 {rgb=(.6 .4 .4)} Face 31402 10 13 18585 {rgb=(.6 .4 .4)} Face 31403 13 83 18585 {rgb=(.6 .4 .4)} Face 31404 83 85 18585 {rgb=(.6 .4 .4)} Face 31405 10 3 18586 {rgb=(.6 .4 .4)} Face 31406 3 8 18586 {rgb=(.6 .4 .4)} Face 31407 8 13 18586 {rgb=(.6 .4 .4)} Face 31408 13 10 18586 {rgb=(.6 .4 .4)} Face 31409 3 2 18587 {rgb=(.6 .4 .4)} Face 31410 2 5 18587 {rgb=(.6 .4 .4)} Face 31411 5 8 18587 {rgb=(.6 .4 .4)} Face 31412 8 3 18587 {rgb=(.6 .4 .4)} Face 31413 2 1 18588 {rgb=(.6 .4 .4)} Face 31414 1 4 18588 {rgb=(.6 .4 .4)} Face 31415 4 5 18588 {rgb=(.6 .4 .4)} Face 31416 5 2 18588 {rgb=(.6 .4 .4)} Face 31417 1 6 18589 {rgb=(.6 .4 .4)} Face 31418 6 7 18589 {rgb=(.6 .4 .4)} Face 31419 7 4 18589 {rgb=(.6 .4 .4)} Face 31420 4 1 18589 {rgb=(.6 .4 .4)} Face 31421 6 17 18590 {rgb=(.6 .4 .4)} Face 31422 17 16 18590 {rgb=(.6 .4 .4)} Face 31423 16 7 18590 {rgb=(.6 .4 .4)} Face 31424 7 6 18590 {rgb=(.6 .4 .4)} Face 31425 17 170 18591 {rgb=(.6 .4 .4)} Face 31426 170 162 18591 {rgb=(.6 .4 .4)} Face 31427 162 16 18591 {rgb=(.6 .4 .4)} Face 31428 16 17 18591 {rgb=(.6 .4 .4)} Face 31429 849 834 18592 {rgb=(.6 .4 .4)} Face 31430 834 749 18592 {rgb=(.6 .4 .4)} Face 31431 749 776 18592 {rgb=(.6 .4 .4)} Face 31432 776 849 18592 {rgb=(.6 .4 .4)} Face 31433 184 255 18593 {rgb=(.6 .4 .4)} Face 31434 255 349 18593 {rgb=(.6 .4 .4)} Face 31435 349 261 18593 {rgb=(.6 .4 .4)} Face 31436 261 184 18593 {rgb=(.6 .4 .4)} Face 31437 136 184 18594 {rgb=(.6 .4 .4)} Face 31438 184 261 18594 {rgb=(.6 .4 .4)} Face 31439 261 211 18594 {rgb=(.6 .4 .4)} Face 31440 211 136 18594 {rgb=(.6 .4 .4)} Face 31441 271 267 18595 {rgb=(.6 .4 .4)} Face 31442 267 389 18595 {rgb=(.6 .4 .4)} Face 31443 389 393 18595 {rgb=(.6 .4 .4)} Face 31444 393 271 18595 {rgb=(.6 .4 .4)} Face 31445 270 271 18596 {rgb=(.6 .4 .4)} Face 31446 271 393 18596 {rgb=(.6 .4 .4)} Face 31447 393 381 18596 {rgb=(.6 .4 .4)} Face 31448 381 270 18596 {rgb=(.6 .4 .4)} Face 31449 255 270 18597 {rgb=(.6 .4 .4)} Face 31450 270 381 18597 {rgb=(.6 .4 .4)} Face 31451 381 349 18597 {rgb=(.6 .4 .4)} Face 31452 349 255 18597 {rgb=(.6 .4 .4)} Face 31453 1044 988 18598 {rgb=(.6 .4 .4)} Face 31454 988 941 18598 {rgb=(.6 .4 .4)} Face 31455 941 967 18598 {rgb=(.6 .4 .4)} Face 31456 967 1044 18598 {rgb=(.6 .4 .4)} Face 31457 976 1044 18599 {rgb=(.6 .4 .4)} Face 31458 1044 967 18599 {rgb=(.6 .4 .4)} Face 31459 967 946 18599 {rgb=(.6 .4 .4)} Face 31460 946 976 18599 {rgb=(.6 .4 .4)} Face 31461 850 872 18600 {rgb=(.6 .4 .4)} Face 31462 872 856 18600 {rgb=(.6 .4 .4)} Face 31463 856 818 18600 {rgb=(.6 .4 .4)} Face 31464 818 850 18600 {rgb=(.6 .4 .4)} Face 31465 865 762 18601 {rgb=(.6 .4 .4)} Face 31466 762 780 18601 {rgb=(.6 .4 .4)} Face 31467 780 857 18601 {rgb=(.6 .4 .4)} Face 31468 857 865 18601 {rgb=(.6 .4 .4)} Face 31469 44 31 18602 {rgb=(.6 .4 .4)} Face 31470 31 110 18602 {rgb=(.6 .4 .4)} Face 31471 110 89 18602 {rgb=(.6 .4 .4)} Face 31472 89 44 18602 {rgb=(.6 .4 .4)} Face 31473 110 177 18603 {rgb=(.6 .4 .4)} Face 31474 177 133 18603 {rgb=(.6 .4 .4)} Face 31475 133 89 18603 {rgb=(.6 .4 .4)} Face 31476 89 110 18603 {rgb=(.6 .4 .4)} Face 31477 141 27 18604 {rgb=(.6 .4 .4)} Face 31478 27 74 18604 {rgb=(.6 .4 .4)} Face 31479 74 161 18604 {rgb=(.6 .4 .4)} Face 31480 161 141 18604 {rgb=(.6 .4 .4)} Face 31481 222 141 18605 {rgb=(.6 .4 .4)} Face 31482 141 161 18605 {rgb=(.6 .4 .4)} Face 31483 161 312 18605 {rgb=(.6 .4 .4)} Face 31484 312 222 18605 {rgb=(.6 .4 .4)} Face 31485 97 197 18606 {rgb=(.6 .4 .4)} Face 31486 197 171 18606 {rgb=(.6 .4 .4)} Face 31487 171 91 18606 {rgb=(.6 .4 .4)} Face 31488 91 97 18606 {rgb=(.6 .4 .4)} Face 31489 80 127 18607 {rgb=(.6 .4 .4)} Face 31490 127 99 18607 {rgb=(.6 .4 .4)} Face 31491 99 88 18607 {rgb=(.6 .4 .4)} Face 31492 88 80 18607 {rgb=(.6 .4 .4)} Face 31493 80 88 18608 {rgb=(.6 .4 .4)} Face 31494 88 60 18608 {rgb=(.6 .4 .4)} Face 31495 60 53 18608 {rgb=(.6 .4 .4)} Face 31496 53 80 18608 {rgb=(.6 .4 .4)} Face 31497 313 284 18609 {rgb=(.6 .4 .4)} Face 31498 284 244 18609 {rgb=(.6 .4 .4)} Face 31499 244 264 18609 {rgb=(.6 .4 .4)} Face 31500 264 313 18609 {rgb=(.6 .4 .4)} Face 31501 284 359 18610 {rgb=(.6 .4 .4)} Face 31502 359 312 18610 {rgb=(.6 .4 .4)} Face 31503 312 244 18610 {rgb=(.6 .4 .4)} Face 31504 244 284 18610 {rgb=(.6 .4 .4)} Face 31505 359 598 18611 {rgb=(.6 .4 .4)} Face 31506 598 573 18611 {rgb=(.6 .4 .4)} Face 31507 573 312 18611 {rgb=(.6 .4 .4)} Face 31508 312 359 18611 {rgb=(.6 .4 .4)} Face 31509 598 753 18612 {rgb=(.6 .4 .4)} Face 31510 753 780 18612 {rgb=(.6 .4 .4)} Face 31511 780 573 18612 {rgb=(.6 .4 .4)} Face 31512 573 598 18612 {rgb=(.6 .4 .4)} Face 31513 753 799 18613 {rgb=(.6 .4 .4)} Face 31514 799 818 18613 {rgb=(.6 .4 .4)} Face 31515 818 780 18613 {rgb=(.6 .4 .4)} Face 31516 780 753 18613 {rgb=(.6 .4 .4)} Face 31517 850 818 18614 {rgb=(.6 .4 .4)} Face 31518 818 799 18614 {rgb=(.6 .4 .4)} Face 31519 799 816 18614 {rgb=(.6 .4 .4)} Face 31520 816 850 18614 {rgb=(.6 .4 .4)} Face 31521 49 28 18615 {rgb=(.6 .4 .4)} Face 31522 28 44 18615 {rgb=(.6 .4 .4)} Face 31523 44 26 18615 {rgb=(.6 .4 .4)} Face 31524 26 49 18615 {rgb=(.6 .4 .4)} Face 31525 28 49 18616 {rgb=(.6 .4 .4)} Face 31526 49 46 18616 {rgb=(.6 .4 .4)} Face 31527 46 57 18616 {rgb=(.6 .4 .4)} Face 31528 57 28 18616 {rgb=(.6 .4 .4)} Face 31529 550 464 18617 {rgb=(.6 .4 .4)} Face 31530 464 761 18617 {rgb=(.6 .4 .4)} Face 31531 761 738 18617 {rgb=(.6 .4 .4)} Face 31532 738 550 18617 {rgb=(.6 .4 .4)} Face 31533 993 1071 18618 {rgb=(.6 .4 .4)} Face 31534 1071 1121 18618 {rgb=(.6 .4 .4)} Face 31535 1121 1028 18618 {rgb=(.6 .4 .4)} Face 31536 1028 993 18618 {rgb=(.6 .4 .4)} Face 31537 916 993 18619 {rgb=(.6 .4 .4)} Face 31538 993 1028 18619 {rgb=(.6 .4 .4)} Face 31539 1028 920 18619 {rgb=(.6 .4 .4)} Face 31540 920 916 18619 {rgb=(.6 .4 .4)} Face 31541 16 37 18620 {rgb=(.6 .4 .4)} Face 31542 37 14 18620 {rgb=(.6 .4 .4)} Face 31543 14 7 18620 {rgb=(.6 .4 .4)} Face 31544 7 16 18620 {rgb=(.6 .4 .4)} Face 31545 177 154 18621 {rgb=(.6 .4 .4)} Face 31546 154 464 18621 {rgb=(.6 .4 .4)} Face 31547 464 550 18621 {rgb=(.6 .4 .4)} Face 31548 550 177 18621 {rgb=(.6 .4 .4)} Face 31549 550 738 18622 {rgb=(.6 .4 .4)} Face 31550 738 707 18622 {rgb=(.6 .4 .4)} Face 31551 707 674 18622 {rgb=(.6 .4 .4)} Face 31552 674 550 18622 {rgb=(.6 .4 .4)} Face 31553 946 866 18623 {rgb=(.6 .4 .4)} Face 31554 866 871 18623 {rgb=(.6 .4 .4)} Face 31555 871 976 18623 {rgb=(.6 .4 .4)} Face 31556 976 946 18623 {rgb=(.6 .4 .4)} Face 31557 110 37 18624 {rgb=(.6 .4 .4)} Face 31558 37 154 18624 {rgb=(.6 .4 .4)} Face 31559 154 177 18624 {rgb=(.6 .4 .4)} Face 31560 177 110 18624 {rgb=(.6 .4 .4)} Face 31561 249 260 18625 {rgb=(.6 .4 .4)} Face 31562 260 404 18625 {rgb=(.6 .4 .4)} Face 31563 404 281 18625 {rgb=(.6 .4 .4)} Face 31564 281 249 18625 {rgb=(.6 .4 .4)} Face 31565 123 188 18626 {rgb=(.6 .4 .4)} Face 31566 188 190 18626 {rgb=(.6 .4 .4)} Face 31567 190 121 18626 {rgb=(.6 .4 .4)} Face 31568 121 123 18626 {rgb=(.6 .4 .4)} Face 31569 188 289 18627 {rgb=(.6 .4 .4)} Face 31570 289 352 18627 {rgb=(.6 .4 .4)} Face 31571 352 190 18627 {rgb=(.6 .4 .4)} Face 31572 190 188 18627 {rgb=(.6 .4 .4)} Face 31573 289 344 18628 {rgb=(.6 .4 .4)} Face 31574 344 420 18628 {rgb=(.6 .4 .4)} Face 31575 420 352 18628 {rgb=(.6 .4 .4)} Face 31576 352 289 18628 {rgb=(.6 .4 .4)} Face 31577 344 364 18629 {rgb=(.6 .4 .4)} Face 31578 364 431 18629 {rgb=(.6 .4 .4)} Face 31579 431 420 18629 {rgb=(.6 .4 .4)} Face 31580 420 344 18629 {rgb=(.6 .4 .4)} Face 31581 364 405 18630 {rgb=(.6 .4 .4)} Face 31582 405 404 18630 {rgb=(.6 .4 .4)} Face 31583 404 431 18630 {rgb=(.6 .4 .4)} Face 31584 431 364 18630 {rgb=(.6 .4 .4)} Face 31585 405 460 18631 {rgb=(.6 .4 .4)} Face 31586 460 347 18631 {rgb=(.6 .4 .4)} Face 31587 347 404 18631 {rgb=(.6 .4 .4)} Face 31588 404 405 18631 {rgb=(.6 .4 .4)} Face 31589 460 453 18632 {rgb=(.6 .4 .4)} Face 31590 453 458 18632 {rgb=(.6 .4 .4)} Face 31591 458 347 18632 {rgb=(.6 .4 .4)} Face 31592 347 460 18632 {rgb=(.6 .4 .4)} Face 31593 453 495 18633 {rgb=(.6 .4 .4)} Face 31594 495 513 18633 {rgb=(.6 .4 .4)} Face 31595 513 458 18633 {rgb=(.6 .4 .4)} Face 31596 458 453 18633 {rgb=(.6 .4 .4)} Face 31597 495 421 18634 {rgb=(.6 .4 .4)} Face 31598 421 448 18634 {rgb=(.6 .4 .4)} Face 31599 448 513 18634 {rgb=(.6 .4 .4)} Face 31600 513 495 18634 {rgb=(.6 .4 .4)} Face 31601 421 160 18635 {rgb=(.6 .4 .4)} Face 31602 160 163 18635 {rgb=(.6 .4 .4)} Face 31603 163 448 18635 {rgb=(.6 .4 .4)} Face 31604 448 421 18635 {rgb=(.6 .4 .4)} Face 31605 160 92 18636 {rgb=(.6 .4 .4)} Face 31606 92 90 18636 {rgb=(.6 .4 .4)} Face 31607 90 163 18636 {rgb=(.6 .4 .4)} Face 31608 163 160 18636 {rgb=(.6 .4 .4)} Face 31609 92 58 18637 {rgb=(.6 .4 .4)} Face 31610 58 54 18637 {rgb=(.6 .4 .4)} Face 31611 54 90 18637 {rgb=(.6 .4 .4)} Face 31612 90 92 18637 {rgb=(.6 .4 .4)} Face 31613 58 35 18638 {rgb=(.6 .4 .4)} Face 31614 35 29 18638 {rgb=(.6 .4 .4)} Face 31615 29 54 18638 {rgb=(.6 .4 .4)} Face 31616 54 58 18638 {rgb=(.6 .4 .4)} Face 31617 35 21 18639 {rgb=(.6 .4 .4)} Face 31618 21 18 18639 {rgb=(.6 .4 .4)} Face 31619 18 29 18639 {rgb=(.6 .4 .4)} Face 31620 29 35 18639 {rgb=(.6 .4 .4)} Face 31621 21 32 18640 {rgb=(.6 .4 .4)} Face 31622 32 25 18640 {rgb=(.6 .4 .4)} Face 31623 25 18 18640 {rgb=(.6 .4 .4)} Face 31624 18 21 18640 {rgb=(.6 .4 .4)} Face 31625 32 50 18641 {rgb=(.6 .4 .4)} Face 31626 50 41 18641 {rgb=(.6 .4 .4)} Face 31627 41 25 18641 {rgb=(.6 .4 .4)} Face 31628 25 32 18641 {rgb=(.6 .4 .4)} Face 31629 50 77 18642 {rgb=(.6 .4 .4)} Face 31630 77 71 18642 {rgb=(.6 .4 .4)} Face 31631 71 41 18642 {rgb=(.6 .4 .4)} Face 31632 41 50 18642 {rgb=(.6 .4 .4)} Face 31633 77 123 18643 {rgb=(.6 .4 .4)} Face 31634 123 121 18643 {rgb=(.6 .4 .4)} Face 31635 121 71 18643 {rgb=(.6 .4 .4)} Face 31636 71 77 18643 {rgb=(.6 .4 .4)} Face 31637 367 458 18644 {rgb=(.6 .4 .4)} Face 31638 458 513 18644 {rgb=(.6 .4 .4)} Face 31639 513 514 18644 {rgb=(.6 .4 .4)} Face 31640 514 367 18644 {rgb=(.6 .4 .4)} Face 31641 145 103 18645 {rgb=(.6 .4 .4)} Face 31642 103 84 18645 {rgb=(.6 .4 .4)} Face 31643 84 105 18645 {rgb=(.6 .4 .4)} Face 31644 105 145 18645 {rgb=(.6 .4 .4)} Face 31645 199 145 18646 {rgb=(.6 .4 .4)} Face 31646 145 105 18646 {rgb=(.6 .4 .4)} Face 31647 105 150 18646 {rgb=(.6 .4 .4)} Face 31648 150 199 18646 {rgb=(.6 .4 .4)} Face 31649 118 90 18647 {rgb=(.6 .4 .4)} Face 31650 90 62 18647 {rgb=(.6 .4 .4)} Face 31651 62 142 18647 {rgb=(.6 .4 .4)} Face 31652 142 118 18647 {rgb=(.6 .4 .4)} Face 31653 195 384 18648 {rgb=(.6 .4 .4)} Face 31654 384 448 18648 {rgb=(.6 .4 .4)} Face 31655 448 163 18648 {rgb=(.6 .4 .4)} Face 31656 163 195 18648 {rgb=(.6 .4 .4)} Face 31657 273 118 18649 {rgb=(.6 .4 .4)} Face 31658 118 142 18649 {rgb=(.6 .4 .4)} Face 31659 142 247 18649 {rgb=(.6 .4 .4)} Face 31660 247 273 18649 {rgb=(.6 .4 .4)} Face 31661 356 195 18650 {rgb=(.6 .4 .4)} Face 31662 195 118 18650 {rgb=(.6 .4 .4)} Face 31663 118 273 18650 {rgb=(.6 .4 .4)} Face 31664 273 356 18650 {rgb=(.6 .4 .4)} Face 31665 745 514 18651 {rgb=(.6 .4 .4)} Face 31666 514 384 18651 {rgb=(.6 .4 .4)} Face 31667 384 723 18651 {rgb=(.6 .4 .4)} Face 31668 723 745 18651 {rgb=(.6 .4 .4)} Face 31669 626 537 18652 {rgb=(.6 .4 .4)} Face 31670 537 514 18652 {rgb=(.6 .4 .4)} Face 31671 514 745 18652 {rgb=(.6 .4 .4)} Face 31672 745 626 18652 {rgb=(.6 .4 .4)} Face 31673 195 526 18653 {rgb=(.6 .4 .4)} Face 31674 526 723 18653 {rgb=(.6 .4 .4)} Face 31675 723 384 18653 {rgb=(.6 .4 .4)} Face 31676 384 195 18653 {rgb=(.6 .4 .4)} Face 31677 311 409 18654 {rgb=(.6 .4 .4)} Face 31678 409 247 18654 {rgb=(.6 .4 .4)} Face 31679 247 156 18654 {rgb=(.6 .4 .4)} Face 31680 156 311 18654 {rgb=(.6 .4 .4)} Face 31681 333 537 18655 {rgb=(.6 .4 .4)} Face 31682 537 397 18655 {rgb=(.6 .4 .4)} Face 31683 397 350 18655 {rgb=(.6 .4 .4)} Face 31684 350 333 18655 {rgb=(.6 .4 .4)} Face 31685 333 367 18656 {rgb=(.6 .4 .4)} Face 31686 367 514 18656 {rgb=(.6 .4 .4)} Face 31687 514 537 18656 {rgb=(.6 .4 .4)} Face 31688 537 333 18656 {rgb=(.6 .4 .4)} Face 31689 458 367 18657 {rgb=(.6 .4 .4)} Face 31690 367 281 18657 {rgb=(.6 .4 .4)} Face 31691 281 347 18657 {rgb=(.6 .4 .4)} Face 31692 347 458 18657 {rgb=(.6 .4 .4)} Face 31693 350 298 18658 {rgb=(.6 .4 .4)} Face 31694 298 334 18658 {rgb=(.6 .4 .4)} Face 31695 334 268 18658 {rgb=(.6 .4 .4)} Face 31696 268 350 18658 {rgb=(.6 .4 .4)} Face 31697 333 350 18659 {rgb=(.6 .4 .4)} Face 31698 350 268 18659 {rgb=(.6 .4 .4)} Face 31699 268 246 18659 {rgb=(.6 .4 .4)} Face 31700 246 333 18659 {rgb=(.6 .4 .4)} Face 31701 367 333 18660 {rgb=(.6 .4 .4)} Face 31702 333 246 18660 {rgb=(.6 .4 .4)} Face 31703 246 281 18660 {rgb=(.6 .4 .4)} Face 31704 281 367 18660 {rgb=(.6 .4 .4)} Face 31705 281 246 18661 {rgb=(.6 .4 .4)} Face 31706 246 216 18661 {rgb=(.6 .4 .4)} Face 31707 216 249 18661 {rgb=(.6 .4 .4)} Face 31708 249 281 18661 {rgb=(.6 .4 .4)} Face 31709 300 150 18662 {rgb=(.6 .4 .4)} Face 31710 150 190 18662 {rgb=(.6 .4 .4)} Face 31711 190 352 18662 {rgb=(.6 .4 .4)} Face 31712 352 300 18662 {rgb=(.6 .4 .4)} Face 31713 323 300 18663 {rgb=(.6 .4 .4)} Face 31714 300 352 18663 {rgb=(.6 .4 .4)} Face 31715 352 420 18663 {rgb=(.6 .4 .4)} Face 31716 420 323 18663 {rgb=(.6 .4 .4)} Face 31717 326 323 18664 {rgb=(.6 .4 .4)} Face 31718 323 420 18664 {rgb=(.6 .4 .4)} Face 31719 420 431 18664 {rgb=(.6 .4 .4)} Face 31720 431 326 18664 {rgb=(.6 .4 .4)} Face 31721 260 326 18665 {rgb=(.6 .4 .4)} Face 31722 326 431 18665 {rgb=(.6 .4 .4)} Face 31723 431 404 18665 {rgb=(.6 .4 .4)} Face 31724 404 260 18665 {rgb=(.6 .4 .4)} Face 31725 90 54 18666 {rgb=(.6 .4 .4)} Face 31726 54 38 18666 {rgb=(.6 .4 .4)} Face 31727 38 62 18666 {rgb=(.6 .4 .4)} Face 31728 62 90 18666 {rgb=(.6 .4 .4)} Face 31729 54 29 18667 {rgb=(.6 .4 .4)} Face 31730 29 23 18667 {rgb=(.6 .4 .4)} Face 31731 23 38 18667 {rgb=(.6 .4 .4)} Face 31732 38 54 18667 {rgb=(.6 .4 .4)} Face 31733 29 18 18668 {rgb=(.6 .4 .4)} Face 31734 18 47 18668 {rgb=(.6 .4 .4)} Face 31735 47 23 18668 {rgb=(.6 .4 .4)} Face 31736 23 29 18668 {rgb=(.6 .4 .4)} Face 31737 18 25 18669 {rgb=(.6 .4 .4)} Face 31738 25 55 18669 {rgb=(.6 .4 .4)} Face 31739 55 47 18669 {rgb=(.6 .4 .4)} Face 31740 47 18 18669 {rgb=(.6 .4 .4)} Face 31741 25 41 18670 {rgb=(.6 .4 .4)} Face 31742 41 59 18670 {rgb=(.6 .4 .4)} Face 31743 59 55 18670 {rgb=(.6 .4 .4)} Face 31744 55 25 18670 {rgb=(.6 .4 .4)} Face 31745 41 71 18671 {rgb=(.6 .4 .4)} Face 31746 71 84 18671 {rgb=(.6 .4 .4)} Face 31747 84 59 18671 {rgb=(.6 .4 .4)} Face 31748 59 41 18671 {rgb=(.6 .4 .4)} Face 31749 105 84 18672 {rgb=(.6 .4 .4)} Face 31750 84 71 18672 {rgb=(.6 .4 .4)} Face 31751 71 121 18672 {rgb=(.6 .4 .4)} Face 31752 121 105 18672 {rgb=(.6 .4 .4)} Face 31753 105 121 18673 {rgb=(.6 .4 .4)} Face 31754 121 190 18673 {rgb=(.6 .4 .4)} Face 31755 190 150 18673 {rgb=(.6 .4 .4)} Face 31756 150 105 18673 {rgb=(.6 .4 .4)} Face 31757 288 199 18674 {rgb=(.6 .4 .4)} Face 31758 199 150 18674 {rgb=(.6 .4 .4)} Face 31759 150 300 18674 {rgb=(.6 .4 .4)} Face 31760 300 288 18674 {rgb=(.6 .4 .4)} Face 31761 277 288 18675 {rgb=(.6 .4 .4)} Face 31762 288 300 18675 {rgb=(.6 .4 .4)} Face 31763 300 323 18675 {rgb=(.6 .4 .4)} Face 31764 323 277 18675 {rgb=(.6 .4 .4)} Face 31765 228 277 18676 {rgb=(.6 .4 .4)} Face 31766 277 323 18676 {rgb=(.6 .4 .4)} Face 31767 323 326 18676 {rgb=(.6 .4 .4)} Face 31768 326 228 18676 {rgb=(.6 .4 .4)} Face 31769 227 228 18677 {rgb=(.6 .4 .4)} Face 31770 228 326 18677 {rgb=(.6 .4 .4)} Face 31771 326 260 18677 {rgb=(.6 .4 .4)} Face 31772 260 227 18677 {rgb=(.6 .4 .4)} Face 31773 224 227 18678 {rgb=(.6 .4 .4)} Face 31774 227 260 18678 {rgb=(.6 .4 .4)} Face 31775 260 249 18678 {rgb=(.6 .4 .4)} Face 31776 249 224 18678 {rgb=(.6 .4 .4)} Face 31777 210 224 18679 {rgb=(.6 .4 .4)} Face 31778 224 249 18679 {rgb=(.6 .4 .4)} Face 31779 249 216 18679 {rgb=(.6 .4 .4)} Face 31780 216 210 18679 {rgb=(.6 .4 .4)} Face 31781 272 210 18680 {rgb=(.6 .4 .4)} Face 31782 210 216 18680 {rgb=(.6 .4 .4)} Face 31783 216 268 18680 {rgb=(.6 .4 .4)} Face 31784 268 272 18680 {rgb=(.6 .4 .4)} Face 31785 232 311 18681 {rgb=(.6 .4 .4)} Face 31786 311 156 18681 {rgb=(.6 .4 .4)} Face 31787 156 120 18681 {rgb=(.6 .4 .4)} Face 31788 120 232 18681 {rgb=(.6 .4 .4)} Face 31789 120 156 18682 {rgb=(.6 .4 .4)} Face 31790 156 142 18682 {rgb=(.6 .4 .4)} Face 31791 142 82 18682 {rgb=(.6 .4 .4)} Face 31792 82 120 18682 {rgb=(.6 .4 .4)} Face 31793 82 142 18683 {rgb=(.6 .4 .4)} Face 31794 142 62 18683 {rgb=(.6 .4 .4)} Face 31795 62 45 18683 {rgb=(.6 .4 .4)} Face 31796 45 82 18683 {rgb=(.6 .4 .4)} Face 31797 297 379 18684 {rgb=(.6 .4 .4)} Face 31798 379 461 18684 {rgb=(.6 .4 .4)} Face 31799 461 477 18684 {rgb=(.6 .4 .4)} Face 31800 477 297 18684 {rgb=(.6 .4 .4)} Face 31801 230 297 18685 {rgb=(.6 .4 .4)} Face 31802 297 477 18685 {rgb=(.6 .4 .4)} Face 31803 477 368 18685 {rgb=(.6 .4 .4)} Face 31804 368 230 18685 {rgb=(.6 .4 .4)} Face 31805 379 355 18686 {rgb=(.6 .4 .4)} Face 31806 355 377 18686 {rgb=(.6 .4 .4)} Face 31807 377 461 18686 {rgb=(.6 .4 .4)} Face 31808 461 379 18686 {rgb=(.6 .4 .4)} Face 31809 230 368 18687 {rgb=(.6 .4 .4)} Face 31810 368 330 18687 {rgb=(.6 .4 .4)} Face 31811 330 208 18687 {rgb=(.6 .4 .4)} Face 31812 208 230 18687 {rgb=(.6 .4 .4)} Face 31813 461 377 18688 {rgb=(.6 .4 .4)} Face 31814 377 398 18688 {rgb=(.6 .4 .4)} Face 31815 398 509 18688 {rgb=(.6 .4 .4)} Face 31816 509 461 18688 {rgb=(.6 .4 .4)} Face 31817 477 461 18689 {rgb=(.6 .4 .4)} Face 31818 461 509 18689 {rgb=(.6 .4 .4)} Face 31819 509 577 18689 {rgb=(.6 .4 .4)} Face 31820 577 477 18689 {rgb=(.6 .4 .4)} Face 31821 368 477 18690 {rgb=(.6 .4 .4)} Face 31822 477 577 18690 {rgb=(.6 .4 .4)} Face 31823 577 571 18690 {rgb=(.6 .4 .4)} Face 31824 571 368 18690 {rgb=(.6 .4 .4)} Face 31825 330 368 18691 {rgb=(.6 .4 .4)} Face 31826 368 571 18691 {rgb=(.6 .4 .4)} Face 31827 571 512 18691 {rgb=(.6 .4 .4)} Face 31828 512 330 18691 {rgb=(.6 .4 .4)} Face 31829 571 577 18692 {rgb=(.6 .4 .4)} Face 31830 577 638 18692 {rgb=(.6 .4 .4)} Face 31831 638 651 18692 {rgb=(.6 .4 .4)} Face 31832 651 571 18692 {rgb=(.6 .4 .4)} Face 31833 512 571 18693 {rgb=(.6 .4 .4)} Face 31834 571 651 18693 {rgb=(.6 .4 .4)} Face 31835 651 618 18693 {rgb=(.6 .4 .4)} Face 31836 618 512 18693 {rgb=(.6 .4 .4)} Face 31837 509 398 18694 {rgb=(.6 .4 .4)} Face 31838 398 396 18694 {rgb=(.6 .4 .4)} Face 31839 396 517 18694 {rgb=(.6 .4 .4)} Face 31840 517 509 18694 {rgb=(.6 .4 .4)} Face 31841 577 509 18695 {rgb=(.6 .4 .4)} Face 31842 509 517 18695 {rgb=(.6 .4 .4)} Face 31843 517 638 18695 {rgb=(.6 .4 .4)} Face 31844 638 577 18695 {rgb=(.6 .4 .4)} Face 31845 517 396 18696 {rgb=(.6 .4 .4)} Face 31846 396 441 18696 {rgb=(.6 .4 .4)} Face 31847 441 542 18696 {rgb=(.6 .4 .4)} Face 31848 542 517 18696 {rgb=(.6 .4 .4)} Face 31849 638 517 18697 {rgb=(.6 .4 .4)} Face 31850 517 542 18697 {rgb=(.6 .4 .4)} Face 31851 542 670 18697 {rgb=(.6 .4 .4)} Face 31852 670 638 18697 {rgb=(.6 .4 .4)} Face 31853 651 638 18698 {rgb=(.6 .4 .4)} Face 31854 638 670 18698 {rgb=(.6 .4 .4)} Face 31855 670 713 18698 {rgb=(.6 .4 .4)} Face 31856 713 651 18698 {rgb=(.6 .4 .4)} Face 31857 618 651 18699 {rgb=(.6 .4 .4)} Face 31858 651 713 18699 {rgb=(.6 .4 .4)} Face 31859 713 705 18699 {rgb=(.6 .4 .4)} Face 31860 705 618 18699 {rgb=(.6 .4 .4)} Face 31861 670 542 18700 {rgb=(.6 .4 .4)} Face 31862 542 563 18700 {rgb=(.6 .4 .4)} Face 31863 563 677 18700 {rgb=(.6 .4 .4)} Face 31864 677 670 18700 {rgb=(.6 .4 .4)} Face 31865 713 670 18701 {rgb=(.6 .4 .4)} Face 31866 670 677 18701 {rgb=(.6 .4 .4)} Face 31867 677 731 18701 {rgb=(.6 .4 .4)} Face 31868 731 713 18701 {rgb=(.6 .4 .4)} Face 31869 705 713 18702 {rgb=(.6 .4 .4)} Face 31870 713 731 18702 {rgb=(.6 .4 .4)} Face 31871 731 740 18702 {rgb=(.6 .4 .4)} Face 31872 740 705 18702 {rgb=(.6 .4 .4)} Face 31873 542 441 18703 {rgb=(.6 .4 .4)} Face 31874 441 469 18703 {rgb=(.6 .4 .4)} Face 31875 469 563 18703 {rgb=(.6 .4 .4)} Face 31876 563 542 18703 {rgb=(.6 .4 .4)} Face 31877 740 731 18704 {rgb=(.6 .4 .4)} Face 31878 731 641 18704 {rgb=(.6 .4 .4)} Face 31879 641 646 18704 {rgb=(.6 .4 .4)} Face 31880 646 740 18704 {rgb=(.6 .4 .4)} Face 31881 563 469 18705 {rgb=(.6 .4 .4)} Face 31882 469 428 18705 {rgb=(.6 .4 .4)} Face 31883 428 518 18705 {rgb=(.6 .4 .4)} Face 31884 518 563 18705 {rgb=(.6 .4 .4)} Face 31885 677 563 18706 {rgb=(.6 .4 .4)} Face 31886 563 518 18706 {rgb=(.6 .4 .4)} Face 31887 518 581 18706 {rgb=(.6 .4 .4)} Face 31888 581 677 18706 {rgb=(.6 .4 .4)} Face 31889 731 677 18707 {rgb=(.6 .4 .4)} Face 31890 677 581 18707 {rgb=(.6 .4 .4)} Face 31891 581 641 18707 {rgb=(.6 .4 .4)} Face 31892 641 731 18707 {rgb=(.6 .4 .4)} Face 31893 518 428 18708 {rgb=(.6 .4 .4)} Face 31894 428 415 18708 {rgb=(.6 .4 .4)} Face 31895 415 400 18708 {rgb=(.6 .4 .4)} Face 31896 400 518 18708 {rgb=(.6 .4 .4)} Face 31897 581 518 18709 {rgb=(.6 .4 .4)} Face 31898 518 400 18709 {rgb=(.6 .4 .4)} Face 31899 400 422 18709 {rgb=(.6 .4 .4)} Face 31900 422 581 18709 {rgb=(.6 .4 .4)} Face 31901 641 581 18710 {rgb=(.6 .4 .4)} Face 31902 581 422 18710 {rgb=(.6 .4 .4)} Face 31903 422 406 18710 {rgb=(.6 .4 .4)} Face 31904 406 641 18710 {rgb=(.6 .4 .4)} Face 31905 646 641 18711 {rgb=(.6 .4 .4)} Face 31906 641 406 18711 {rgb=(.6 .4 .4)} Face 31907 406 443 18711 {rgb=(.6 .4 .4)} Face 31908 443 646 18711 {rgb=(.6 .4 .4)} Face 31909 406 422 18712 {rgb=(.6 .4 .4)} Face 31910 422 320 18712 {rgb=(.6 .4 .4)} Face 31911 320 282 18712 {rgb=(.6 .4 .4)} Face 31912 282 406 18712 {rgb=(.6 .4 .4)} Face 31913 363 406 18713 {rgb=(.6 .4 .4)} Face 31914 406 282 18713 {rgb=(.6 .4 .4)} Face 31915 282 285 18713 {rgb=(.6 .4 .4)} Face 31916 285 363 18713 {rgb=(.6 .4 .4)} Face 31917 400 415 18714 {rgb=(.6 .4 .4)} Face 31918 415 283 18714 {rgb=(.6 .4 .4)} Face 31919 283 310 18714 {rgb=(.6 .4 .4)} Face 31920 310 400 18714 {rgb=(.6 .4 .4)} Face 31921 422 400 18715 {rgb=(.6 .4 .4)} Face 31922 400 310 18715 {rgb=(.6 .4 .4)} Face 31923 310 320 18715 {rgb=(.6 .4 .4)} Face 31924 320 422 18715 {rgb=(.6 .4 .4)} Face 31925 282 251 18716 {rgb=(.6 .4 .4)} Face 31926 251 256 18716 {rgb=(.6 .4 .4)} Face 31927 256 285 18716 {rgb=(.6 .4 .4)} Face 31928 285 282 18716 {rgb=(.6 .4 .4)} Face 31929 310 259 18717 {rgb=(.6 .4 .4)} Face 31930 259 262 18717 {rgb=(.6 .4 .4)} Face 31931 262 320 18717 {rgb=(.6 .4 .4)} Face 31932 320 310 18717 {rgb=(.6 .4 .4)} Face 31933 241 237 18718 {rgb=(.6 .4 .4)} Face 31934 237 262 18718 {rgb=(.6 .4 .4)} Face 31935 262 259 18718 {rgb=(.6 .4 .4)} Face 31936 259 241 18718 {rgb=(.6 .4 .4)} Face 31937 406 363 18719 {rgb=(.6 .4 .4)} Face 31938 363 386 18719 {rgb=(.6 .4 .4)} Face 31939 386 443 18719 {rgb=(.6 .4 .4)} Face 31940 443 406 18719 {rgb=(.6 .4 .4)} Face 31941 251 234 18720 {rgb=(.6 .4 .4)} Face 31942 234 253 18720 {rgb=(.6 .4 .4)} Face 31943 253 256 18720 {rgb=(.6 .4 .4)} Face 31944 256 251 18720 {rgb=(.6 .4 .4)} Face 31945 237 241 18721 {rgb=(.6 .4 .4)} Face 31946 241 226 18721 {rgb=(.6 .4 .4)} Face 31947 226 221 18721 {rgb=(.6 .4 .4)} Face 31948 221 237 18721 {rgb=(.6 .4 .4)} Face 31949 234 251 18722 {rgb=(.6 .4 .4)} Face 31950 251 237 18722 {rgb=(.6 .4 .4)} Face 31951 237 221 18722 {rgb=(.6 .4 .4)} Face 31952 221 234 18722 {rgb=(.6 .4 .4)} Face 31953 251 282 18723 {rgb=(.6 .4 .4)} Face 31954 282 262 18723 {rgb=(.6 .4 .4)} Face 31955 262 237 18723 {rgb=(.6 .4 .4)} Face 31956 237 251 18723 {rgb=(.6 .4 .4)} Face 31957 355 379 18724 {rgb=(.6 .4 .4)} Face 31958 379 336 18724 {rgb=(.6 .4 .4)} Face 31959 336 327 18724 {rgb=(.6 .4 .4)} Face 31960 327 355 18724 {rgb=(.6 .4 .4)} Face 31961 230 208 18725 {rgb=(.6 .4 .4)} Face 31962 208 155 18725 {rgb=(.6 .4 .4)} Face 31963 155 182 18725 {rgb=(.6 .4 .4)} Face 31964 182 230 18725 {rgb=(.6 .4 .4)} Face 31965 297 230 18726 {rgb=(.6 .4 .4)} Face 31966 230 182 18726 {rgb=(.6 .4 .4)} Face 31967 182 229 18726 {rgb=(.6 .4 .4)} Face 31968 229 297 18726 {rgb=(.6 .4 .4)} Face 31969 379 297 18727 {rgb=(.6 .4 .4)} Face 31970 297 229 18727 {rgb=(.6 .4 .4)} Face 31971 229 336 18727 {rgb=(.6 .4 .4)} Face 31972 336 379 18727 {rgb=(.6 .4 .4)} Face 31973 204 219 18728 {rgb=(.6 .4 .4)} Face 31974 219 172 18728 {rgb=(.6 .4 .4)} Face 31975 172 148 18728 {rgb=(.6 .4 .4)} Face 31976 148 204 18728 {rgb=(.6 .4 .4)} Face 31977 208 204 18729 {rgb=(.6 .4 .4)} Face 31978 204 148 18729 {rgb=(.6 .4 .4)} Face 31979 148 155 18729 {rgb=(.6 .4 .4)} Face 31980 155 208 18729 {rgb=(.6 .4 .4)} Face 31981 296 355 18730 {rgb=(.6 .4 .4)} Face 31982 355 327 18730 {rgb=(.6 .4 .4)} Face 31983 327 351 18730 {rgb=(.6 .4 .4)} Face 31984 351 296 18730 {rgb=(.6 .4 .4)} Face 31985 287 252 18731 {rgb=(.6 .4 .4)} Face 31986 252 236 18731 {rgb=(.6 .4 .4)} Face 31987 236 263 18731 {rgb=(.6 .4 .4)} Face 31988 263 287 18731 {rgb=(.6 .4 .4)} Face 31989 252 234 18732 {rgb=(.6 .4 .4)} Face 31990 234 221 18732 {rgb=(.6 .4 .4)} Face 31991 221 236 18732 {rgb=(.6 .4 .4)} Face 31992 236 252 18732 {rgb=(.6 .4 .4)} Face 31993 239 236 18733 {rgb=(.6 .4 .4)} Face 31994 236 221 18733 {rgb=(.6 .4 .4)} Face 31995 221 226 18733 {rgb=(.6 .4 .4)} Face 31996 226 239 18733 {rgb=(.6 .4 .4)} Face 31997 234 252 18734 {rgb=(.6 .4 .4)} Face 31998 252 254 18734 {rgb=(.6 .4 .4)} Face 31999 254 253 18734 {rgb=(.6 .4 .4)} Face 32000 253 234 18734 {rgb=(.6 .4 .4)} Face 32001 362 408 18735 {rgb=(.6 .4 .4)} Face 32002 408 443 18735 {rgb=(.6 .4 .4)} Face 32003 443 386 18735 {rgb=(.6 .4 .4)} Face 32004 386 362 18735 {rgb=(.6 .4 .4)} Face 32005 236 239 18736 {rgb=(.6 .4 .4)} Face 32006 239 257 18736 {rgb=(.6 .4 .4)} Face 32007 257 263 18736 {rgb=(.6 .4 .4)} Face 32008 263 236 18736 {rgb=(.6 .4 .4)} Face 32009 257 309 18737 {rgb=(.6 .4 .4)} Face 32010 309 321 18737 {rgb=(.6 .4 .4)} Face 32011 321 263 18737 {rgb=(.6 .4 .4)} Face 32012 263 257 18737 {rgb=(.6 .4 .4)} Face 32013 252 287 18738 {rgb=(.6 .4 .4)} Face 32014 287 286 18738 {rgb=(.6 .4 .4)} Face 32015 286 254 18738 {rgb=(.6 .4 .4)} Face 32016 254 252 18738 {rgb=(.6 .4 .4)} Face 32017 403 423 18739 {rgb=(.6 .4 .4)} Face 32018 423 321 18739 {rgb=(.6 .4 .4)} Face 32019 321 309 18739 {rgb=(.6 .4 .4)} Face 32020 309 403 18739 {rgb=(.6 .4 .4)} Face 32021 415 403 18740 {rgb=(.6 .4 .4)} Face 32022 403 309 18740 {rgb=(.6 .4 .4)} Face 32023 309 283 18740 {rgb=(.6 .4 .4)} Face 32024 283 415 18740 {rgb=(.6 .4 .4)} Face 32025 408 362 18741 {rgb=(.6 .4 .4)} Face 32026 362 286 18741 {rgb=(.6 .4 .4)} Face 32027 286 287 18741 {rgb=(.6 .4 .4)} Face 32028 287 408 18741 {rgb=(.6 .4 .4)} Face 32029 423 408 18742 {rgb=(.6 .4 .4)} Face 32030 408 287 18742 {rgb=(.6 .4 .4)} Face 32031 287 321 18742 {rgb=(.6 .4 .4)} Face 32032 321 423 18742 {rgb=(.6 .4 .4)} Face 32033 639 646 18743 {rgb=(.6 .4 .4)} Face 32034 646 443 18743 {rgb=(.6 .4 .4)} Face 32035 443 408 18743 {rgb=(.6 .4 .4)} Face 32036 408 639 18743 {rgb=(.6 .4 .4)} Face 32037 585 639 18744 {rgb=(.6 .4 .4)} Face 32038 639 408 18744 {rgb=(.6 .4 .4)} Face 32039 408 423 18744 {rgb=(.6 .4 .4)} Face 32040 423 585 18744 {rgb=(.6 .4 .4)} Face 32041 439 585 18745 {rgb=(.6 .4 .4)} Face 32042 585 423 18745 {rgb=(.6 .4 .4)} Face 32043 423 403 18745 {rgb=(.6 .4 .4)} Face 32044 403 439 18745 {rgb=(.6 .4 .4)} Face 32045 428 439 18746 {rgb=(.6 .4 .4)} Face 32046 439 403 18746 {rgb=(.6 .4 .4)} Face 32047 403 415 18746 {rgb=(.6 .4 .4)} Face 32048 415 428 18746 {rgb=(.6 .4 .4)} Face 32049 599 728 18747 {rgb=(.6 .4 .4)} Face 32050 728 639 18747 {rgb=(.6 .4 .4)} Face 32051 639 585 18747 {rgb=(.6 .4 .4)} Face 32052 585 599 18747 {rgb=(.6 .4 .4)} Face 32053 488 599 18748 {rgb=(.6 .4 .4)} Face 32054 599 585 18748 {rgb=(.6 .4 .4)} Face 32055 585 439 18748 {rgb=(.6 .4 .4)} Face 32056 439 488 18748 {rgb=(.6 .4 .4)} Face 32057 469 488 18749 {rgb=(.6 .4 .4)} Face 32058 488 439 18749 {rgb=(.6 .4 .4)} Face 32059 439 428 18749 {rgb=(.6 .4 .4)} Face 32060 428 469 18749 {rgb=(.6 .4 .4)} Face 32061 728 740 18750 {rgb=(.6 .4 .4)} Face 32062 740 646 18750 {rgb=(.6 .4 .4)} Face 32063 646 639 18750 {rgb=(.6 .4 .4)} Face 32064 639 728 18750 {rgb=(.6 .4 .4)} Face 32065 441 456 18751 {rgb=(.6 .4 .4)} Face 32066 456 488 18751 {rgb=(.6 .4 .4)} Face 32067 488 469 18751 {rgb=(.6 .4 .4)} Face 32068 469 441 18751 {rgb=(.6 .4 .4)} Face 32069 678 705 18752 {rgb=(.6 .4 .4)} Face 32070 705 740 18752 {rgb=(.6 .4 .4)} Face 32071 740 728 18752 {rgb=(.6 .4 .4)} Face 32072 728 678 18752 {rgb=(.6 .4 .4)} Face 32073 590 678 18753 {rgb=(.6 .4 .4)} Face 32074 678 728 18753 {rgb=(.6 .4 .4)} Face 32075 728 599 18753 {rgb=(.6 .4 .4)} Face 32076 599 590 18753 {rgb=(.6 .4 .4)} Face 32077 456 590 18754 {rgb=(.6 .4 .4)} Face 32078 590 599 18754 {rgb=(.6 .4 .4)} Face 32079 599 488 18754 {rgb=(.6 .4 .4)} Face 32080 488 456 18754 {rgb=(.6 .4 .4)} Face 32081 586 618 18755 {rgb=(.6 .4 .4)} Face 32082 618 705 18755 {rgb=(.6 .4 .4)} Face 32083 705 678 18755 {rgb=(.6 .4 .4)} Face 32084 678 586 18755 {rgb=(.6 .4 .4)} Face 32085 492 586 18756 {rgb=(.6 .4 .4)} Face 32086 586 678 18756 {rgb=(.6 .4 .4)} Face 32087 678 590 18756 {rgb=(.6 .4 .4)} Face 32088 590 492 18756 {rgb=(.6 .4 .4)} Face 32089 388 492 18757 {rgb=(.6 .4 .4)} Face 32090 492 590 18757 {rgb=(.6 .4 .4)} Face 32091 590 456 18757 {rgb=(.6 .4 .4)} Face 32092 456 388 18757 {rgb=(.6 .4 .4)} Face 32093 396 388 18758 {rgb=(.6 .4 .4)} Face 32094 388 456 18758 {rgb=(.6 .4 .4)} Face 32095 456 441 18758 {rgb=(.6 .4 .4)} Face 32096 441 396 18758 {rgb=(.6 .4 .4)} Face 32097 371 410 18759 {rgb=(.6 .4 .4)} Face 32098 410 492 18759 {rgb=(.6 .4 .4)} Face 32099 492 388 18759 {rgb=(.6 .4 .4)} Face 32100 388 371 18759 {rgb=(.6 .4 .4)} Face 32101 398 371 18760 {rgb=(.6 .4 .4)} Face 32102 371 388 18760 {rgb=(.6 .4 .4)} Face 32103 388 396 18760 {rgb=(.6 .4 .4)} Face 32104 396 398 18760 {rgb=(.6 .4 .4)} Face 32105 459 512 18761 {rgb=(.6 .4 .4)} Face 32106 512 618 18761 {rgb=(.6 .4 .4)} Face 32107 618 586 18761 {rgb=(.6 .4 .4)} Face 32108 586 459 18761 {rgb=(.6 .4 .4)} Face 32109 410 459 18762 {rgb=(.6 .4 .4)} Face 32110 459 586 18762 {rgb=(.6 .4 .4)} Face 32111 586 492 18762 {rgb=(.6 .4 .4)} Face 32112 492 410 18762 {rgb=(.6 .4 .4)} Face 32113 308 330 18763 {rgb=(.6 .4 .4)} Face 32114 330 512 18763 {rgb=(.6 .4 .4)} Face 32115 512 459 18763 {rgb=(.6 .4 .4)} Face 32116 459 308 18763 {rgb=(.6 .4 .4)} Face 32117 322 308 18764 {rgb=(.6 .4 .4)} Face 32118 308 459 18764 {rgb=(.6 .4 .4)} Face 32119 459 410 18764 {rgb=(.6 .4 .4)} Face 32120 410 322 18764 {rgb=(.6 .4 .4)} Face 32121 340 322 18765 {rgb=(.6 .4 .4)} Face 32122 322 410 18765 {rgb=(.6 .4 .4)} Face 32123 410 371 18765 {rgb=(.6 .4 .4)} Face 32124 371 340 18765 {rgb=(.6 .4 .4)} Face 32125 377 340 18766 {rgb=(.6 .4 .4)} Face 32126 340 371 18766 {rgb=(.6 .4 .4)} Face 32127 371 398 18766 {rgb=(.6 .4 .4)} Face 32128 398 377 18766 {rgb=(.6 .4 .4)} Face 32129 308 204 18767 {rgb=(.6 .4 .4)} Face 32130 204 208 18767 {rgb=(.6 .4 .4)} Face 32131 208 330 18767 {rgb=(.6 .4 .4)} Face 32132 330 308 18767 {rgb=(.6 .4 .4)} Face 32133 355 296 18768 {rgb=(.6 .4 .4)} Face 32134 296 340 18768 {rgb=(.6 .4 .4)} Face 32135 340 377 18768 {rgb=(.6 .4 .4)} Face 32136 377 355 18768 {rgb=(.6 .4 .4)} Face 32137 219 204 18769 {rgb=(.6 .4 .4)} Face 32138 204 308 18769 {rgb=(.6 .4 .4)} Face 32139 308 322 18769 {rgb=(.6 .4 .4)} Face 32140 322 219 18769 {rgb=(.6 .4 .4)} Face 32141 296 219 18770 {rgb=(.6 .4 .4)} Face 32142 219 322 18770 {rgb=(.6 .4 .4)} Face 32143 322 340 18770 {rgb=(.6 .4 .4)} Face 32144 340 296 18770 {rgb=(.6 .4 .4)} Face 32145 229 182 18771 {rgb=(.6 .4 .4)} Face 32146 182 131 18771 {rgb=(.6 .4 .4)} Face 32147 131 200 18771 {rgb=(.6 .4 .4)} Face 32148 200 229 18771 {rgb=(.6 .4 .4)} Face 32149 336 229 18772 {rgb=(.6 .4 .4)} Face 32150 229 200 18772 {rgb=(.6 .4 .4)} Face 32151 200 324 18772 {rgb=(.6 .4 .4)} Face 32152 324 336 18772 {rgb=(.6 .4 .4)} Face 32153 327 336 18773 {rgb=(.6 .4 .4)} Face 32154 336 324 18773 {rgb=(.6 .4 .4)} Face 32155 324 328 18773 {rgb=(.6 .4 .4)} Face 32156 328 327 18773 {rgb=(.6 .4 .4)} Face 32157 351 327 18774 {rgb=(.6 .4 .4)} Face 32158 327 328 18774 {rgb=(.6 .4 .4)} Face 32159 328 274 18774 {rgb=(.6 .4 .4)} Face 32160 274 351 18774 {rgb=(.6 .4 .4)} Face 32161 148 172 18775 {rgb=(.6 .4 .4)} Face 32162 172 111 18775 {rgb=(.6 .4 .4)} Face 32163 111 100 18775 {rgb=(.6 .4 .4)} Face 32164 100 148 18775 {rgb=(.6 .4 .4)} Face 32165 100 111 18776 {rgb=(.6 .4 .4)} Face 32166 111 78 18776 {rgb=(.6 .4 .4)} Face 32167 78 107 18776 {rgb=(.6 .4 .4)} Face 32168 107 100 18776 {rgb=(.6 .4 .4)} Face 32169 96 100 18777 {rgb=(.6 .4 .4)} Face 32170 100 107 18777 {rgb=(.6 .4 .4)} Face 32171 107 103 18777 {rgb=(.6 .4 .4)} Face 32172 103 96 18777 {rgb=(.6 .4 .4)} Face 32173 131 96 18778 {rgb=(.6 .4 .4)} Face 32174 96 103 18778 {rgb=(.6 .4 .4)} Face 32175 103 145 18778 {rgb=(.6 .4 .4)} Face 32176 145 131 18778 {rgb=(.6 .4 .4)} Face 32177 200 131 18779 {rgb=(.6 .4 .4)} Face 32178 131 145 18779 {rgb=(.6 .4 .4)} Face 32179 145 199 18779 {rgb=(.6 .4 .4)} Face 32180 199 200 18779 {rgb=(.6 .4 .4)} Face 32181 324 200 18780 {rgb=(.6 .4 .4)} Face 32182 200 199 18780 {rgb=(.6 .4 .4)} Face 32183 199 288 18780 {rgb=(.6 .4 .4)} Face 32184 288 324 18780 {rgb=(.6 .4 .4)} Face 32185 328 324 18781 {rgb=(.6 .4 .4)} Face 32186 324 288 18781 {rgb=(.6 .4 .4)} Face 32187 288 277 18781 {rgb=(.6 .4 .4)} Face 32188 277 328 18781 {rgb=(.6 .4 .4)} Face 32189 274 328 18782 {rgb=(.6 .4 .4)} Face 32190 328 277 18782 {rgb=(.6 .4 .4)} Face 32191 277 228 18782 {rgb=(.6 .4 .4)} Face 32192 228 274 18782 {rgb=(.6 .4 .4)} Face 32193 258 274 18783 {rgb=(.6 .4 .4)} Face 32194 274 228 18783 {rgb=(.6 .4 .4)} Face 32195 228 227 18783 {rgb=(.6 .4 .4)} Face 32196 227 258 18783 {rgb=(.6 .4 .4)} Face 32197 248 258 18784 {rgb=(.6 .4 .4)} Face 32198 258 227 18784 {rgb=(.6 .4 .4)} Face 32199 227 224 18784 {rgb=(.6 .4 .4)} Face 32200 224 248 18784 {rgb=(.6 .4 .4)} Face 32201 68 70 18785 {rgb=(.6 .4 .4)} Face 32202 70 72 18785 {rgb=(.6 .4 .4)} Face 32203 72 69 18785 {rgb=(.6 .4 .4)} Face 32204 69 68 18785 {rgb=(.6 .4 .4)} Face 32205 51 68 18786 {rgb=(.6 .4 .4)} Face 32206 68 69 18786 {rgb=(.6 .4 .4)} Face 32207 69 52 18786 {rgb=(.6 .4 .4)} Face 32208 52 51 18786 {rgb=(.6 .4 .4)} Face 32209 64 51 18787 {rgb=(.6 .4 .4)} Face 32210 51 52 18787 {rgb=(.6 .4 .4)} Face 32211 52 67 18787 {rgb=(.6 .4 .4)} Face 32212 67 64 18787 {rgb=(.6 .4 .4)} Face 32213 111 64 18788 {rgb=(.6 .4 .4)} Face 32214 64 67 18788 {rgb=(.6 .4 .4)} Face 32215 67 78 18788 {rgb=(.6 .4 .4)} Face 32216 78 111 18788 {rgb=(.6 .4 .4)} Face 32217 172 124 18789 {rgb=(.6 .4 .4)} Face 32218 124 64 18789 {rgb=(.6 .4 .4)} Face 32219 64 111 18789 {rgb=(.6 .4 .4)} Face 32220 111 172 18789 {rgb=(.6 .4 .4)} Face 32221 279 351 18790 {rgb=(.6 .4 .4)} Face 32222 351 274 18790 {rgb=(.6 .4 .4)} Face 32223 274 258 18790 {rgb=(.6 .4 .4)} Face 32224 258 279 18790 {rgb=(.6 .4 .4)} Face 32225 278 279 18791 {rgb=(.6 .4 .4)} Face 32226 279 258 18791 {rgb=(.6 .4 .4)} Face 32227 258 248 18791 {rgb=(.6 .4 .4)} Face 32228 248 278 18791 {rgb=(.6 .4 .4)} Face 32229 116 138 18792 {rgb=(.6 .4 .4)} Face 32230 138 70 18792 {rgb=(.6 .4 .4)} Face 32231 70 68 18792 {rgb=(.6 .4 .4)} Face 32232 68 116 18792 {rgb=(.6 .4 .4)} Face 32233 243 354 18793 {rgb=(.6 .4 .4)} Face 32234 354 480 18793 {rgb=(.6 .4 .4)} Face 32235 480 481 18793 {rgb=(.6 .4 .4)} Face 32236 481 243 18793 {rgb=(.6 .4 .4)} Face 32237 193 243 18794 {rgb=(.6 .4 .4)} Face 32238 243 481 18794 {rgb=(.6 .4 .4)} Face 32239 481 385 18794 {rgb=(.6 .4 .4)} Face 32240 385 193 18794 {rgb=(.6 .4 .4)} Face 32241 354 375 18795 {rgb=(.6 .4 .4)} Face 32242 375 444 18795 {rgb=(.6 .4 .4)} Face 32243 444 480 18795 {rgb=(.6 .4 .4)} Face 32244 480 354 18795 {rgb=(.6 .4 .4)} Face 32245 193 385 18796 {rgb=(.6 .4 .4)} Face 32246 385 365 18796 {rgb=(.6 .4 .4)} Face 32247 365 186 18796 {rgb=(.6 .4 .4)} Face 32248 186 193 18796 {rgb=(.6 .4 .4)} Face 32249 480 444 18797 {rgb=(.6 .4 .4)} Face 32250 444 491 18797 {rgb=(.6 .4 .4)} Face 32251 491 527 18797 {rgb=(.6 .4 .4)} Face 32252 527 480 18797 {rgb=(.6 .4 .4)} Face 32253 481 480 18798 {rgb=(.6 .4 .4)} Face 32254 480 527 18798 {rgb=(.6 .4 .4)} Face 32255 527 529 18798 {rgb=(.6 .4 .4)} Face 32256 529 481 18798 {rgb=(.6 .4 .4)} Face 32257 385 481 18799 {rgb=(.6 .4 .4)} Face 32258 481 529 18799 {rgb=(.6 .4 .4)} Face 32259 529 493 18799 {rgb=(.6 .4 .4)} Face 32260 493 385 18799 {rgb=(.6 .4 .4)} Face 32261 365 385 18800 {rgb=(.6 .4 .4)} Face 32262 385 493 18800 {rgb=(.6 .4 .4)} Face 32263 493 463 18800 {rgb=(.6 .4 .4)} Face 32264 463 365 18800 {rgb=(.6 .4 .4)} Face 32265 493 529 18801 {rgb=(.6 .4 .4)} Face 32266 529 647 18801 {rgb=(.6 .4 .4)} Face 32267 647 656 18801 {rgb=(.6 .4 .4)} Face 32268 656 493 18801 {rgb=(.6 .4 .4)} Face 32269 463 493 18802 {rgb=(.6 .4 .4)} Face 32270 493 656 18802 {rgb=(.6 .4 .4)} Face 32271 656 642 18802 {rgb=(.6 .4 .4)} Face 32272 642 463 18802 {rgb=(.6 .4 .4)} Face 32273 527 491 18803 {rgb=(.6 .4 .4)} Face 32274 491 522 18803 {rgb=(.6 .4 .4)} Face 32275 522 578 18803 {rgb=(.6 .4 .4)} Face 32276 578 527 18803 {rgb=(.6 .4 .4)} Face 32277 529 527 18804 {rgb=(.6 .4 .4)} Face 32278 527 578 18804 {rgb=(.6 .4 .4)} Face 32279 578 647 18804 {rgb=(.6 .4 .4)} Face 32280 647 529 18804 {rgb=(.6 .4 .4)} Face 32281 578 522 18805 {rgb=(.6 .4 .4)} Face 32282 522 565 18805 {rgb=(.6 .4 .4)} Face 32283 565 621 18805 {rgb=(.6 .4 .4)} Face 32284 621 578 18805 {rgb=(.6 .4 .4)} Face 32285 647 578 18806 {rgb=(.6 .4 .4)} Face 32286 578 621 18806 {rgb=(.6 .4 .4)} Face 32287 621 711 18806 {rgb=(.6 .4 .4)} Face 32288 711 647 18806 {rgb=(.6 .4 .4)} Face 32289 656 647 18807 {rgb=(.6 .4 .4)} Face 32290 647 711 18807 {rgb=(.6 .4 .4)} Face 32291 711 747 18807 {rgb=(.6 .4 .4)} Face 32292 747 656 18807 {rgb=(.6 .4 .4)} Face 32293 642 656 18808 {rgb=(.6 .4 .4)} Face 32294 656 747 18808 {rgb=(.6 .4 .4)} Face 32295 747 736 18808 {rgb=(.6 .4 .4)} Face 32296 736 642 18808 {rgb=(.6 .4 .4)} Face 32297 711 621 18809 {rgb=(.6 .4 .4)} Face 32298 621 643 18809 {rgb=(.6 .4 .4)} Face 32299 643 727 18809 {rgb=(.6 .4 .4)} Face 32300 727 711 18809 {rgb=(.6 .4 .4)} Face 32301 747 711 18810 {rgb=(.6 .4 .4)} Face 32302 711 727 18810 {rgb=(.6 .4 .4)} Face 32303 727 789 18810 {rgb=(.6 .4 .4)} Face 32304 789 747 18810 {rgb=(.6 .4 .4)} Face 32305 736 747 18811 {rgb=(.6 .4 .4)} Face 32306 747 789 18811 {rgb=(.6 .4 .4)} Face 32307 789 784 18811 {rgb=(.6 .4 .4)} Face 32308 784 736 18811 {rgb=(.6 .4 .4)} Face 32309 621 565 18812 {rgb=(.6 .4 .4)} Face 32310 565 583 18812 {rgb=(.6 .4 .4)} Face 32311 583 643 18812 {rgb=(.6 .4 .4)} Face 32312 643 621 18812 {rgb=(.6 .4 .4)} Face 32313 784 789 18813 {rgb=(.6 .4 .4)} Face 32314 789 771 18813 {rgb=(.6 .4 .4)} Face 32315 771 775 18813 {rgb=(.6 .4 .4)} Face 32316 775 784 18813 {rgb=(.6 .4 .4)} Face 32317 727 643 18814 {rgb=(.6 .4 .4)} Face 32318 643 619 18814 {rgb=(.6 .4 .4)} Face 32319 619 722 18814 {rgb=(.6 .4 .4)} Face 32320 722 727 18814 {rgb=(.6 .4 .4)} Face 32321 789 727 18815 {rgb=(.6 .4 .4)} Face 32322 727 722 18815 {rgb=(.6 .4 .4)} Face 32323 722 771 18815 {rgb=(.6 .4 .4)} Face 32324 771 789 18815 {rgb=(.6 .4 .4)} Face 32325 619 574 18816 {rgb=(.6 .4 .4)} Face 32326 574 606 18816 {rgb=(.6 .4 .4)} Face 32327 606 597 18816 {rgb=(.6 .4 .4)} Face 32328 597 619 18816 {rgb=(.6 .4 .4)} Face 32329 722 619 18817 {rgb=(.6 .4 .4)} Face 32330 619 597 18817 {rgb=(.6 .4 .4)} Face 32331 597 630 18817 {rgb=(.6 .4 .4)} Face 32332 630 722 18817 {rgb=(.6 .4 .4)} Face 32333 771 722 18818 {rgb=(.6 .4 .4)} Face 32334 722 630 18818 {rgb=(.6 .4 .4)} Face 32335 630 629 18818 {rgb=(.6 .4 .4)} Face 32336 629 771 18818 {rgb=(.6 .4 .4)} Face 32337 775 771 18819 {rgb=(.6 .4 .4)} Face 32338 771 629 18819 {rgb=(.6 .4 .4)} Face 32339 629 669 18819 {rgb=(.6 .4 .4)} Face 32340 669 775 18819 {rgb=(.6 .4 .4)} Face 32341 629 630 18820 {rgb=(.6 .4 .4)} Face 32342 630 520 18820 {rgb=(.6 .4 .4)} Face 32343 520 472 18820 {rgb=(.6 .4 .4)} Face 32344 472 629 18820 {rgb=(.6 .4 .4)} Face 32345 603 629 18821 {rgb=(.6 .4 .4)} Face 32346 629 472 18821 {rgb=(.6 .4 .4)} Face 32347 472 475 18821 {rgb=(.6 .4 .4)} Face 32348 475 603 18821 {rgb=(.6 .4 .4)} Face 32349 597 606 18822 {rgb=(.6 .4 .4)} Face 32350 606 450 18822 {rgb=(.6 .4 .4)} Face 32351 450 478 18822 {rgb=(.6 .4 .4)} Face 32352 478 597 18822 {rgb=(.6 .4 .4)} Face 32353 630 597 18823 {rgb=(.6 .4 .4)} Face 32354 597 478 18823 {rgb=(.6 .4 .4)} Face 32355 478 520 18823 {rgb=(.6 .4 .4)} Face 32356 520 630 18823 {rgb=(.6 .4 .4)} Face 32357 472 414 18824 {rgb=(.6 .4 .4)} Face 32358 414 416 18824 {rgb=(.6 .4 .4)} Face 32359 416 475 18824 {rgb=(.6 .4 .4)} Face 32360 475 472 18824 {rgb=(.6 .4 .4)} Face 32361 478 395 18825 {rgb=(.6 .4 .4)} Face 32362 395 411 18825 {rgb=(.6 .4 .4)} Face 32363 411 520 18825 {rgb=(.6 .4 .4)} Face 32364 520 478 18825 {rgb=(.6 .4 .4)} Face 32365 372 378 18826 {rgb=(.6 .4 .4)} Face 32366 378 411 18826 {rgb=(.6 .4 .4)} Face 32367 411 395 18826 {rgb=(.6 .4 .4)} Face 32368 395 372 18826 {rgb=(.6 .4 .4)} Face 32369 629 603 18827 {rgb=(.6 .4 .4)} Face 32370 603 648 18827 {rgb=(.6 .4 .4)} Face 32371 648 669 18827 {rgb=(.6 .4 .4)} Face 32372 669 629 18827 {rgb=(.6 .4 .4)} Face 32373 414 399 18828 {rgb=(.6 .4 .4)} Face 32374 399 413 18828 {rgb=(.6 .4 .4)} Face 32375 413 416 18828 {rgb=(.6 .4 .4)} Face 32376 416 414 18828 {rgb=(.6 .4 .4)} Face 32377 378 372 18829 {rgb=(.6 .4 .4)} Face 32378 372 357 18829 {rgb=(.6 .4 .4)} Face 32379 357 358 18829 {rgb=(.6 .4 .4)} Face 32380 358 378 18829 {rgb=(.6 .4 .4)} Face 32381 399 414 18830 {rgb=(.6 .4 .4)} Face 32382 414 378 18830 {rgb=(.6 .4 .4)} Face 32383 378 358 18830 {rgb=(.6 .4 .4)} Face 32384 358 399 18830 {rgb=(.6 .4 .4)} Face 32385 414 472 18831 {rgb=(.6 .4 .4)} Face 32386 472 411 18831 {rgb=(.6 .4 .4)} Face 32387 411 378 18831 {rgb=(.6 .4 .4)} Face 32388 378 414 18831 {rgb=(.6 .4 .4)} Face 32389 375 354 18832 {rgb=(.6 .4 .4)} Face 32390 354 351 18832 {rgb=(.6 .4 .4)} Face 32391 351 279 18832 {rgb=(.6 .4 .4)} Face 32392 279 375 18832 {rgb=(.6 .4 .4)} Face 32393 193 186 18833 {rgb=(.6 .4 .4)} Face 32394 186 115 18833 {rgb=(.6 .4 .4)} Face 32395 115 124 18833 {rgb=(.6 .4 .4)} Face 32396 124 193 18833 {rgb=(.6 .4 .4)} Face 32397 243 193 18834 {rgb=(.6 .4 .4)} Face 32398 193 124 18834 {rgb=(.6 .4 .4)} Face 32399 124 172 18834 {rgb=(.6 .4 .4)} Face 32400 172 243 18834 {rgb=(.6 .4 .4)} Face 32401 242 353 18835 {rgb=(.6 .4 .4)} Face 32402 353 278 18835 {rgb=(.6 .4 .4)} Face 32403 278 138 18835 {rgb=(.6 .4 .4)} Face 32404 138 242 18835 {rgb=(.6 .4 .4)} Face 32405 192 242 18836 {rgb=(.6 .4 .4)} Face 32406 242 138 18836 {rgb=(.6 .4 .4)} Face 32407 138 116 18836 {rgb=(.6 .4 .4)} Face 32408 116 192 18836 {rgb=(.6 .4 .4)} Face 32409 186 192 18837 {rgb=(.6 .4 .4)} Face 32410 192 116 18837 {rgb=(.6 .4 .4)} Face 32411 116 115 18837 {rgb=(.6 .4 .4)} Face 32412 115 186 18837 {rgb=(.6 .4 .4)} Face 32413 353 375 18838 {rgb=(.6 .4 .4)} Face 32414 375 279 18838 {rgb=(.6 .4 .4)} Face 32415 279 278 18838 {rgb=(.6 .4 .4)} Face 32416 278 353 18838 {rgb=(.6 .4 .4)} Face 32417 511 429 18839 {rgb=(.6 .4 .4)} Face 32418 429 401 18839 {rgb=(.6 .4 .4)} Face 32419 401 436 18839 {rgb=(.6 .4 .4)} Face 32420 436 511 18839 {rgb=(.6 .4 .4)} Face 32421 429 399 18840 {rgb=(.6 .4 .4)} Face 32422 399 358 18840 {rgb=(.6 .4 .4)} Face 32423 358 401 18840 {rgb=(.6 .4 .4)} Face 32424 401 429 18840 {rgb=(.6 .4 .4)} Face 32425 383 401 18841 {rgb=(.6 .4 .4)} Face 32426 401 358 18841 {rgb=(.6 .4 .4)} Face 32427 358 357 18841 {rgb=(.6 .4 .4)} Face 32428 357 383 18841 {rgb=(.6 .4 .4)} Face 32429 399 429 18842 {rgb=(.6 .4 .4)} Face 32430 429 433 18842 {rgb=(.6 .4 .4)} Face 32431 433 413 18842 {rgb=(.6 .4 .4)} Face 32432 413 399 18842 {rgb=(.6 .4 .4)} Face 32433 628 652 18843 {rgb=(.6 .4 .4)} Face 32434 652 669 18843 {rgb=(.6 .4 .4)} Face 32435 669 648 18843 {rgb=(.6 .4 .4)} Face 32436 648 628 18843 {rgb=(.6 .4 .4)} Face 32437 401 383 18844 {rgb=(.6 .4 .4)} Face 32438 383 418 18844 {rgb=(.6 .4 .4)} Face 32439 418 436 18844 {rgb=(.6 .4 .4)} Face 32440 436 401 18844 {rgb=(.6 .4 .4)} Face 32441 418 515 18845 {rgb=(.6 .4 .4)} Face 32442 515 562 18845 {rgb=(.6 .4 .4)} Face 32443 562 436 18845 {rgb=(.6 .4 .4)} Face 32444 436 418 18845 {rgb=(.6 .4 .4)} Face 32445 429 511 18846 {rgb=(.6 .4 .4)} Face 32446 511 508 18846 {rgb=(.6 .4 .4)} Face 32447 508 433 18846 {rgb=(.6 .4 .4)} Face 32448 433 429 18846 {rgb=(.6 .4 .4)} Face 32449 622 665 18847 {rgb=(.6 .4 .4)} Face 32450 665 562 18847 {rgb=(.6 .4 .4)} Face 32451 562 515 18847 {rgb=(.6 .4 .4)} Face 32452 515 622 18847 {rgb=(.6 .4 .4)} Face 32453 606 622 18848 {rgb=(.6 .4 .4)} Face 32454 622 515 18848 {rgb=(.6 .4 .4)} Face 32455 515 450 18848 {rgb=(.6 .4 .4)} Face 32456 450 606 18848 {rgb=(.6 .4 .4)} Face 32457 652 628 18849 {rgb=(.6 .4 .4)} Face 32458 628 508 18849 {rgb=(.6 .4 .4)} Face 32459 508 511 18849 {rgb=(.6 .4 .4)} Face 32460 511 652 18849 {rgb=(.6 .4 .4)} Face 32461 665 652 18850 {rgb=(.6 .4 .4)} Face 32462 652 511 18850 {rgb=(.6 .4 .4)} Face 32463 511 562 18850 {rgb=(.6 .4 .4)} Face 32464 562 665 18850 {rgb=(.6 .4 .4)} Face 32465 782 775 18851 {rgb=(.6 .4 .4)} Face 32466 775 669 18851 {rgb=(.6 .4 .4)} Face 32467 669 652 18851 {rgb=(.6 .4 .4)} Face 32468 652 782 18851 {rgb=(.6 .4 .4)} Face 32469 734 782 18852 {rgb=(.6 .4 .4)} Face 32470 782 652 18852 {rgb=(.6 .4 .4)} Face 32471 652 665 18852 {rgb=(.6 .4 .4)} Face 32472 665 734 18852 {rgb=(.6 .4 .4)} Face 32473 635 734 18853 {rgb=(.6 .4 .4)} Face 32474 734 665 18853 {rgb=(.6 .4 .4)} Face 32475 665 622 18853 {rgb=(.6 .4 .4)} Face 32476 622 635 18853 {rgb=(.6 .4 .4)} Face 32477 720 785 18854 {rgb=(.6 .4 .4)} Face 32478 785 782 18854 {rgb=(.6 .4 .4)} Face 32479 782 734 18854 {rgb=(.6 .4 .4)} Face 32480 734 720 18854 {rgb=(.6 .4 .4)} Face 32481 632 720 18855 {rgb=(.6 .4 .4)} Face 32482 720 734 18855 {rgb=(.6 .4 .4)} Face 32483 734 635 18855 {rgb=(.6 .4 .4)} Face 32484 635 632 18855 {rgb=(.6 .4 .4)} Face 32485 785 784 18856 {rgb=(.6 .4 .4)} Face 32486 784 775 18856 {rgb=(.6 .4 .4)} Face 32487 775 782 18856 {rgb=(.6 .4 .4)} Face 32488 782 785 18856 {rgb=(.6 .4 .4)} Face 32489 565 608 18857 {rgb=(.6 .4 .4)} Face 32490 608 632 18857 {rgb=(.6 .4 .4)} Face 32491 632 583 18857 {rgb=(.6 .4 .4)} Face 32492 583 565 18857 {rgb=(.6 .4 .4)} Face 32493 741 736 18858 {rgb=(.6 .4 .4)} Face 32494 736 784 18858 {rgb=(.6 .4 .4)} Face 32495 784 785 18858 {rgb=(.6 .4 .4)} Face 32496 785 741 18858 {rgb=(.6 .4 .4)} Face 32497 697 741 18859 {rgb=(.6 .4 .4)} Face 32498 741 785 18859 {rgb=(.6 .4 .4)} Face 32499 785 720 18859 {rgb=(.6 .4 .4)} Face 32500 720 697 18859 {rgb=(.6 .4 .4)} Face 32501 608 697 18860 {rgb=(.6 .4 .4)} Face 32502 697 720 18860 {rgb=(.6 .4 .4)} Face 32503 720 632 18860 {rgb=(.6 .4 .4)} Face 32504 632 608 18860 {rgb=(.6 .4 .4)} Face 32505 660 642 18861 {rgb=(.6 .4 .4)} Face 32506 642 736 18861 {rgb=(.6 .4 .4)} Face 32507 736 741 18861 {rgb=(.6 .4 .4)} Face 32508 741 660 18861 {rgb=(.6 .4 .4)} Face 32509 609 660 18862 {rgb=(.6 .4 .4)} Face 32510 660 741 18862 {rgb=(.6 .4 .4)} Face 32511 741 697 18862 {rgb=(.6 .4 .4)} Face 32512 697 609 18862 {rgb=(.6 .4 .4)} Face 32513 546 609 18863 {rgb=(.6 .4 .4)} Face 32514 609 697 18863 {rgb=(.6 .4 .4)} Face 32515 697 608 18863 {rgb=(.6 .4 .4)} Face 32516 608 546 18863 {rgb=(.6 .4 .4)} Face 32517 522 546 18864 {rgb=(.6 .4 .4)} Face 32518 546 608 18864 {rgb=(.6 .4 .4)} Face 32519 608 565 18864 {rgb=(.6 .4 .4)} Face 32520 565 522 18864 {rgb=(.6 .4 .4)} Face 32521 503 498 18865 {rgb=(.6 .4 .4)} Face 32522 498 609 18865 {rgb=(.6 .4 .4)} Face 32523 609 546 18865 {rgb=(.6 .4 .4)} Face 32524 546 503 18865 {rgb=(.6 .4 .4)} Face 32525 491 503 18866 {rgb=(.6 .4 .4)} Face 32526 503 546 18866 {rgb=(.6 .4 .4)} Face 32527 546 522 18866 {rgb=(.6 .4 .4)} Face 32528 522 491 18866 {rgb=(.6 .4 .4)} Face 32529 476 463 18867 {rgb=(.6 .4 .4)} Face 32530 463 642 18867 {rgb=(.6 .4 .4)} Face 32531 642 660 18867 {rgb=(.6 .4 .4)} Face 32532 660 476 18867 {rgb=(.6 .4 .4)} Face 32533 498 476 18868 {rgb=(.6 .4 .4)} Face 32534 476 660 18868 {rgb=(.6 .4 .4)} Face 32535 660 609 18868 {rgb=(.6 .4 .4)} Face 32536 609 498 18868 {rgb=(.6 .4 .4)} Face 32537 380 365 18869 {rgb=(.6 .4 .4)} Face 32538 365 463 18869 {rgb=(.6 .4 .4)} Face 32539 463 476 18869 {rgb=(.6 .4 .4)} Face 32540 476 380 18869 {rgb=(.6 .4 .4)} Face 32541 454 380 18870 {rgb=(.6 .4 .4)} Face 32542 380 476 18870 {rgb=(.6 .4 .4)} Face 32543 476 498 18870 {rgb=(.6 .4 .4)} Face 32544 498 454 18870 {rgb=(.6 .4 .4)} Face 32545 462 454 18871 {rgb=(.6 .4 .4)} Face 32546 454 498 18871 {rgb=(.6 .4 .4)} Face 32547 498 503 18871 {rgb=(.6 .4 .4)} Face 32548 503 462 18871 {rgb=(.6 .4 .4)} Face 32549 444 462 18872 {rgb=(.6 .4 .4)} Face 32550 462 503 18872 {rgb=(.6 .4 .4)} Face 32551 503 491 18872 {rgb=(.6 .4 .4)} Face 32552 491 444 18872 {rgb=(.6 .4 .4)} Face 32553 380 192 18873 {rgb=(.6 .4 .4)} Face 32554 192 186 18873 {rgb=(.6 .4 .4)} Face 32555 186 365 18873 {rgb=(.6 .4 .4)} Face 32556 365 380 18873 {rgb=(.6 .4 .4)} Face 32557 375 353 18874 {rgb=(.6 .4 .4)} Face 32558 353 462 18874 {rgb=(.6 .4 .4)} Face 32559 462 444 18874 {rgb=(.6 .4 .4)} Face 32560 444 375 18874 {rgb=(.6 .4 .4)} Face 32561 242 192 18875 {rgb=(.6 .4 .4)} Face 32562 192 380 18875 {rgb=(.6 .4 .4)} Face 32563 380 454 18875 {rgb=(.6 .4 .4)} Face 32564 454 242 18875 {rgb=(.6 .4 .4)} Face 32565 353 242 18876 {rgb=(.6 .4 .4)} Face 32566 242 454 18876 {rgb=(.6 .4 .4)} Face 32567 454 462 18876 {rgb=(.6 .4 .4)} Face 32568 462 353 18876 {rgb=(.6 .4 .4)} Face 32569 217 319 18877 {rgb=(.6 .4 .4)} Face 32570 319 479 18877 {rgb=(.6 .4 .4)} Face 32571 479 566 18877 {rgb=(.6 .4 .4)} Face 32572 566 217 18877 {rgb=(.6 .4 .4)} Face 32573 181 217 18878 {rgb=(.6 .4 .4)} Face 32574 217 566 18878 {rgb=(.6 .4 .4)} Face 32575 566 525 18878 {rgb=(.6 .4 .4)} Face 32576 525 181 18878 {rgb=(.6 .4 .4)} Face 32577 319 331 18879 {rgb=(.6 .4 .4)} Face 32578 331 419 18879 {rgb=(.6 .4 .4)} Face 32579 419 479 18879 {rgb=(.6 .4 .4)} Face 32580 479 319 18879 {rgb=(.6 .4 .4)} Face 32581 181 525 18880 {rgb=(.6 .4 .4)} Face 32582 525 494 18880 {rgb=(.6 .4 .4)} Face 32583 494 168 18880 {rgb=(.6 .4 .4)} Face 32584 168 181 18880 {rgb=(.6 .4 .4)} Face 32585 479 419 18881 {rgb=(.6 .4 .4)} Face 32586 419 490 18881 {rgb=(.6 .4 .4)} Face 32587 490 561 18881 {rgb=(.6 .4 .4)} Face 32588 561 479 18881 {rgb=(.6 .4 .4)} Face 32589 566 479 18882 {rgb=(.6 .4 .4)} Face 32590 479 561 18882 {rgb=(.6 .4 .4)} Face 32591 561 653 18882 {rgb=(.6 .4 .4)} Face 32592 653 566 18882 {rgb=(.6 .4 .4)} Face 32593 525 566 18883 {rgb=(.6 .4 .4)} Face 32594 566 653 18883 {rgb=(.6 .4 .4)} Face 32595 653 682 18883 {rgb=(.6 .4 .4)} Face 32596 682 525 18883 {rgb=(.6 .4 .4)} Face 32597 494 525 18884 {rgb=(.6 .4 .4)} Face 32598 525 682 18884 {rgb=(.6 .4 .4)} Face 32599 682 658 18884 {rgb=(.6 .4 .4)} Face 32600 658 494 18884 {rgb=(.6 .4 .4)} Face 32601 682 653 18885 {rgb=(.6 .4 .4)} Face 32602 653 689 18885 {rgb=(.6 .4 .4)} Face 32603 689 744 18885 {rgb=(.6 .4 .4)} Face 32604 744 682 18885 {rgb=(.6 .4 .4)} Face 32605 658 682 18886 {rgb=(.6 .4 .4)} Face 32606 682 744 18886 {rgb=(.6 .4 .4)} Face 32607 744 724 18886 {rgb=(.6 .4 .4)} Face 32608 724 658 18886 {rgb=(.6 .4 .4)} Face 32609 561 490 18887 {rgb=(.6 .4 .4)} Face 32610 490 504 18887 {rgb=(.6 .4 .4)} Face 32611 504 579 18887 {rgb=(.6 .4 .4)} Face 32612 579 561 18887 {rgb=(.6 .4 .4)} Face 32613 653 561 18888 {rgb=(.6 .4 .4)} Face 32614 561 579 18888 {rgb=(.6 .4 .4)} Face 32615 579 689 18888 {rgb=(.6 .4 .4)} Face 32616 689 653 18888 {rgb=(.6 .4 .4)} Face 32617 579 504 18889 {rgb=(.6 .4 .4)} Face 32618 504 545 18889 {rgb=(.6 .4 .4)} Face 32619 545 616 18889 {rgb=(.6 .4 .4)} Face 32620 616 579 18889 {rgb=(.6 .4 .4)} Face 32621 689 579 18890 {rgb=(.6 .4 .4)} Face 32622 579 616 18890 {rgb=(.6 .4 .4)} Face 32623 616 721 18890 {rgb=(.6 .4 .4)} Face 32624 721 689 18890 {rgb=(.6 .4 .4)} Face 32625 744 689 18891 {rgb=(.6 .4 .4)} Face 32626 689 721 18891 {rgb=(.6 .4 .4)} Face 32627 721 774 18891 {rgb=(.6 .4 .4)} Face 32628 774 744 18891 {rgb=(.6 .4 .4)} Face 32629 724 744 18892 {rgb=(.6 .4 .4)} Face 32630 744 774 18892 {rgb=(.6 .4 .4)} Face 32631 774 767 18892 {rgb=(.6 .4 .4)} Face 32632 767 724 18892 {rgb=(.6 .4 .4)} Face 32633 721 616 18893 {rgb=(.6 .4 .4)} Face 32634 616 633 18893 {rgb=(.6 .4 .4)} Face 32635 633 729 18893 {rgb=(.6 .4 .4)} Face 32636 729 721 18893 {rgb=(.6 .4 .4)} Face 32637 774 721 18894 {rgb=(.6 .4 .4)} Face 32638 721 729 18894 {rgb=(.6 .4 .4)} Face 32639 729 790 18894 {rgb=(.6 .4 .4)} Face 32640 790 774 18894 {rgb=(.6 .4 .4)} Face 32641 767 774 18895 {rgb=(.6 .4 .4)} Face 32642 774 790 18895 {rgb=(.6 .4 .4)} Face 32643 790 786 18895 {rgb=(.6 .4 .4)} Face 32644 786 767 18895 {rgb=(.6 .4 .4)} Face 32645 616 545 18896 {rgb=(.6 .4 .4)} Face 32646 545 572 18896 {rgb=(.6 .4 .4)} Face 32647 572 633 18896 {rgb=(.6 .4 .4)} Face 32648 633 616 18896 {rgb=(.6 .4 .4)} Face 32649 786 790 18897 {rgb=(.6 .4 .4)} Face 32650 790 733 18897 {rgb=(.6 .4 .4)} Face 32651 733 735 18897 {rgb=(.6 .4 .4)} Face 32652 735 786 18897 {rgb=(.6 .4 .4)} Face 32653 633 572 18898 {rgb=(.6 .4 .4)} Face 32654 572 554 18898 {rgb=(.6 .4 .4)} Face 32655 554 600 18898 {rgb=(.6 .4 .4)} Face 32656 600 633 18898 {rgb=(.6 .4 .4)} Face 32657 729 633 18899 {rgb=(.6 .4 .4)} Face 32658 633 600 18899 {rgb=(.6 .4 .4)} Face 32659 600 706 18899 {rgb=(.6 .4 .4)} Face 32660 706 729 18899 {rgb=(.6 .4 .4)} Face 32661 790 729 18900 {rgb=(.6 .4 .4)} Face 32662 729 706 18900 {rgb=(.6 .4 .4)} Face 32663 706 733 18900 {rgb=(.6 .4 .4)} Face 32664 733 790 18900 {rgb=(.6 .4 .4)} Face 32665 600 554 18901 {rgb=(.6 .4 .4)} Face 32666 554 468 18901 {rgb=(.6 .4 .4)} Face 32667 468 486 18901 {rgb=(.6 .4 .4)} Face 32668 486 600 18901 {rgb=(.6 .4 .4)} Face 32669 706 600 18902 {rgb=(.6 .4 .4)} Face 32670 600 486 18902 {rgb=(.6 .4 .4)} Face 32671 486 551 18902 {rgb=(.6 .4 .4)} Face 32672 551 706 18902 {rgb=(.6 .4 .4)} Face 32673 733 706 18903 {rgb=(.6 .4 .4)} Face 32674 706 551 18903 {rgb=(.6 .4 .4)} Face 32675 551 552 18903 {rgb=(.6 .4 .4)} Face 32676 552 733 18903 {rgb=(.6 .4 .4)} Face 32677 735 733 18904 {rgb=(.6 .4 .4)} Face 32678 733 552 18904 {rgb=(.6 .4 .4)} Face 32679 552 594 18904 {rgb=(.6 .4 .4)} Face 32680 594 735 18904 {rgb=(.6 .4 .4)} Face 32681 552 551 18905 {rgb=(.6 .4 .4)} Face 32682 551 425 18905 {rgb=(.6 .4 .4)} Face 32683 425 391 18905 {rgb=(.6 .4 .4)} Face 32684 391 552 18905 {rgb=(.6 .4 .4)} Face 32685 523 552 18906 {rgb=(.6 .4 .4)} Face 32686 552 391 18906 {rgb=(.6 .4 .4)} Face 32687 391 392 18906 {rgb=(.6 .4 .4)} Face 32688 392 523 18906 {rgb=(.6 .4 .4)} Face 32689 486 468 18907 {rgb=(.6 .4 .4)} Face 32690 468 348 18907 {rgb=(.6 .4 .4)} Face 32691 348 374 18907 {rgb=(.6 .4 .4)} Face 32692 374 486 18907 {rgb=(.6 .4 .4)} Face 32693 551 486 18908 {rgb=(.6 .4 .4)} Face 32694 486 374 18908 {rgb=(.6 .4 .4)} Face 32695 374 425 18908 {rgb=(.6 .4 .4)} Face 32696 425 551 18908 {rgb=(.6 .4 .4)} Face 32697 391 342 18909 {rgb=(.6 .4 .4)} Face 32698 342 345 18909 {rgb=(.6 .4 .4)} Face 32699 345 392 18909 {rgb=(.6 .4 .4)} Face 32700 392 391 18909 {rgb=(.6 .4 .4)} Face 32701 374 317 18910 {rgb=(.6 .4 .4)} Face 32702 317 339 18910 {rgb=(.6 .4 .4)} Face 32703 339 425 18910 {rgb=(.6 .4 .4)} Face 32704 425 374 18910 {rgb=(.6 .4 .4)} Face 32705 304 315 18911 {rgb=(.6 .4 .4)} Face 32706 315 339 18911 {rgb=(.6 .4 .4)} Face 32707 339 317 18911 {rgb=(.6 .4 .4)} Face 32708 317 304 18911 {rgb=(.6 .4 .4)} Face 32709 552 523 18912 {rgb=(.6 .4 .4)} Face 32710 523 560 18912 {rgb=(.6 .4 .4)} Face 32711 560 594 18912 {rgb=(.6 .4 .4)} Face 32712 594 552 18912 {rgb=(.6 .4 .4)} Face 32713 342 325 18913 {rgb=(.6 .4 .4)} Face 32714 325 335 18913 {rgb=(.6 .4 .4)} Face 32715 335 345 18913 {rgb=(.6 .4 .4)} Face 32716 345 342 18913 {rgb=(.6 .4 .4)} Face 32717 315 304 18914 {rgb=(.6 .4 .4)} Face 32718 304 290 18914 {rgb=(.6 .4 .4)} Face 32719 290 299 18914 {rgb=(.6 .4 .4)} Face 32720 299 315 18914 {rgb=(.6 .4 .4)} Face 32721 325 342 18915 {rgb=(.6 .4 .4)} Face 32722 342 315 18915 {rgb=(.6 .4 .4)} Face 32723 315 299 18915 {rgb=(.6 .4 .4)} Face 32724 299 325 18915 {rgb=(.6 .4 .4)} Face 32725 342 391 18916 {rgb=(.6 .4 .4)} Face 32726 391 339 18916 {rgb=(.6 .4 .4)} Face 32727 339 315 18916 {rgb=(.6 .4 .4)} Face 32728 315 342 18916 {rgb=(.6 .4 .4)} Face 32729 181 168 18917 {rgb=(.6 .4 .4)} Face 32730 168 79 18917 {rgb=(.6 .4 .4)} Face 32731 79 86 18917 {rgb=(.6 .4 .4)} Face 32732 86 181 18917 {rgb=(.6 .4 .4)} Face 32733 217 181 18918 {rgb=(.6 .4 .4)} Face 32734 181 86 18918 {rgb=(.6 .4 .4)} Face 32735 86 138 18918 {rgb=(.6 .4 .4)} Face 32736 138 217 18918 {rgb=(.6 .4 .4)} Face 32737 319 217 18919 {rgb=(.6 .4 .4)} Face 32738 217 138 18919 {rgb=(.6 .4 .4)} Face 32739 138 278 18919 {rgb=(.6 .4 .4)} Face 32740 278 319 18919 {rgb=(.6 .4 .4)} Face 32741 174 209 18920 {rgb=(.6 .4 .4)} Face 32742 209 137 18920 {rgb=(.6 .4 .4)} Face 32743 137 81 18920 {rgb=(.6 .4 .4)} Face 32744 81 174 18920 {rgb=(.6 .4 .4)} Face 32745 168 174 18921 {rgb=(.6 .4 .4)} Face 32746 174 81 18921 {rgb=(.6 .4 .4)} Face 32747 81 79 18921 {rgb=(.6 .4 .4)} Face 32748 79 168 18921 {rgb=(.6 .4 .4)} Face 32749 387 341 18922 {rgb=(.6 .4 .4)} Face 32750 341 314 18922 {rgb=(.6 .4 .4)} Face 32751 314 338 18922 {rgb=(.6 .4 .4)} Face 32752 338 387 18922 {rgb=(.6 .4 .4)} Face 32753 341 325 18923 {rgb=(.6 .4 .4)} Face 32754 325 299 18923 {rgb=(.6 .4 .4)} Face 32755 299 314 18923 {rgb=(.6 .4 .4)} Face 32756 314 341 18923 {rgb=(.6 .4 .4)} Face 32757 302 314 18924 {rgb=(.6 .4 .4)} Face 32758 314 299 18924 {rgb=(.6 .4 .4)} Face 32759 299 290 18924 {rgb=(.6 .4 .4)} Face 32760 290 302 18924 {rgb=(.6 .4 .4)} Face 32761 325 341 18925 {rgb=(.6 .4 .4)} Face 32762 341 343 18925 {rgb=(.6 .4 .4)} Face 32763 343 335 18925 {rgb=(.6 .4 .4)} Face 32764 335 325 18925 {rgb=(.6 .4 .4)} Face 32765 521 549 18926 {rgb=(.6 .4 .4)} Face 32766 549 594 18926 {rgb=(.6 .4 .4)} Face 32767 594 560 18926 {rgb=(.6 .4 .4)} Face 32768 560 521 18926 {rgb=(.6 .4 .4)} Face 32769 314 302 18927 {rgb=(.6 .4 .4)} Face 32770 302 316 18927 {rgb=(.6 .4 .4)} Face 32771 316 338 18927 {rgb=(.6 .4 .4)} Face 32772 338 314 18927 {rgb=(.6 .4 .4)} Face 32773 316 373 18928 {rgb=(.6 .4 .4)} Face 32774 373 424 18928 {rgb=(.6 .4 .4)} Face 32775 424 338 18928 {rgb=(.6 .4 .4)} Face 32776 338 316 18928 {rgb=(.6 .4 .4)} Face 32777 341 387 18929 {rgb=(.6 .4 .4)} Face 32778 387 390 18929 {rgb=(.6 .4 .4)} Face 32779 390 343 18929 {rgb=(.6 .4 .4)} Face 32780 343 341 18929 {rgb=(.6 .4 .4)} Face 32781 483 548 18930 {rgb=(.6 .4 .4)} Face 32782 548 424 18930 {rgb=(.6 .4 .4)} Face 32783 424 373 18930 {rgb=(.6 .4 .4)} Face 32784 373 483 18930 {rgb=(.6 .4 .4)} Face 32785 468 483 18931 {rgb=(.6 .4 .4)} Face 32786 483 373 18931 {rgb=(.6 .4 .4)} Face 32787 373 348 18931 {rgb=(.6 .4 .4)} Face 32788 348 468 18931 {rgb=(.6 .4 .4)} Face 32789 549 521 18932 {rgb=(.6 .4 .4)} Face 32790 521 390 18932 {rgb=(.6 .4 .4)} Face 32791 390 387 18932 {rgb=(.6 .4 .4)} Face 32792 387 549 18932 {rgb=(.6 .4 .4)} Face 32793 548 549 18933 {rgb=(.6 .4 .4)} Face 32794 549 387 18933 {rgb=(.6 .4 .4)} Face 32795 387 424 18933 {rgb=(.6 .4 .4)} Face 32796 424 548 18933 {rgb=(.6 .4 .4)} Face 32797 726 735 18934 {rgb=(.6 .4 .4)} Face 32798 735 594 18934 {rgb=(.6 .4 .4)} Face 32799 594 549 18934 {rgb=(.6 .4 .4)} Face 32800 549 726 18934 {rgb=(.6 .4 .4)} Face 32801 690 726 18935 {rgb=(.6 .4 .4)} Face 32802 726 549 18935 {rgb=(.6 .4 .4)} Face 32803 549 548 18935 {rgb=(.6 .4 .4)} Face 32804 548 690 18935 {rgb=(.6 .4 .4)} Face 32805 588 690 18936 {rgb=(.6 .4 .4)} Face 32806 690 548 18936 {rgb=(.6 .4 .4)} Face 32807 548 483 18936 {rgb=(.6 .4 .4)} Face 32808 483 588 18936 {rgb=(.6 .4 .4)} Face 32809 554 588 18937 {rgb=(.6 .4 .4)} Face 32810 588 483 18937 {rgb=(.6 .4 .4)} Face 32811 483 468 18937 {rgb=(.6 .4 .4)} Face 32812 468 554 18937 {rgb=(.6 .4 .4)} Face 32813 714 777 18938 {rgb=(.6 .4 .4)} Face 32814 777 726 18938 {rgb=(.6 .4 .4)} Face 32815 726 690 18938 {rgb=(.6 .4 .4)} Face 32816 690 714 18938 {rgb=(.6 .4 .4)} Face 32817 617 714 18939 {rgb=(.6 .4 .4)} Face 32818 714 690 18939 {rgb=(.6 .4 .4)} Face 32819 690 588 18939 {rgb=(.6 .4 .4)} Face 32820 588 617 18939 {rgb=(.6 .4 .4)} Face 32821 572 617 18940 {rgb=(.6 .4 .4)} Face 32822 617 588 18940 {rgb=(.6 .4 .4)} Face 32823 588 554 18940 {rgb=(.6 .4 .4)} Face 32824 554 572 18940 {rgb=(.6 .4 .4)} Face 32825 777 786 18941 {rgb=(.6 .4 .4)} Face 32826 786 735 18941 {rgb=(.6 .4 .4)} Face 32827 735 726 18941 {rgb=(.6 .4 .4)} Face 32828 726 777 18941 {rgb=(.6 .4 .4)} Face 32829 545 587 18942 {rgb=(.6 .4 .4)} Face 32830 587 617 18942 {rgb=(.6 .4 .4)} Face 32831 617 572 18942 {rgb=(.6 .4 .4)} Face 32832 572 545 18942 {rgb=(.6 .4 .4)} Face 32833 760 767 18943 {rgb=(.6 .4 .4)} Face 32834 767 786 18943 {rgb=(.6 .4 .4)} Face 32835 786 777 18943 {rgb=(.6 .4 .4)} Face 32836 777 760 18943 {rgb=(.6 .4 .4)} Face 32837 703 760 18944 {rgb=(.6 .4 .4)} Face 32838 760 777 18944 {rgb=(.6 .4 .4)} Face 32839 777 714 18944 {rgb=(.6 .4 .4)} Face 32840 714 703 18944 {rgb=(.6 .4 .4)} Face 32841 730 724 18945 {rgb=(.6 .4 .4)} Face 32842 724 767 18945 {rgb=(.6 .4 .4)} Face 32843 767 760 18945 {rgb=(.6 .4 .4)} Face 32844 760 730 18945 {rgb=(.6 .4 .4)} Face 32845 666 730 18946 {rgb=(.6 .4 .4)} Face 32846 730 760 18946 {rgb=(.6 .4 .4)} Face 32847 760 703 18946 {rgb=(.6 .4 .4)} Face 32848 703 666 18946 {rgb=(.6 .4 .4)} Face 32849 556 666 18947 {rgb=(.6 .4 .4)} Face 32850 666 703 18947 {rgb=(.6 .4 .4)} Face 32851 703 587 18947 {rgb=(.6 .4 .4)} Face 32852 587 556 18947 {rgb=(.6 .4 .4)} Face 32853 504 556 18948 {rgb=(.6 .4 .4)} Face 32854 556 587 18948 {rgb=(.6 .4 .4)} Face 32855 587 545 18948 {rgb=(.6 .4 .4)} Face 32856 545 504 18948 {rgb=(.6 .4 .4)} Face 32857 510 607 18949 {rgb=(.6 .4 .4)} Face 32858 607 666 18949 {rgb=(.6 .4 .4)} Face 32859 666 556 18949 {rgb=(.6 .4 .4)} Face 32860 556 510 18949 {rgb=(.6 .4 .4)} Face 32861 490 510 18950 {rgb=(.6 .4 .4)} Face 32862 510 556 18950 {rgb=(.6 .4 .4)} Face 32863 556 504 18950 {rgb=(.6 .4 .4)} Face 32864 504 490 18950 {rgb=(.6 .4 .4)} Face 32865 649 658 18951 {rgb=(.6 .4 .4)} Face 32866 658 724 18951 {rgb=(.6 .4 .4)} Face 32867 724 730 18951 {rgb=(.6 .4 .4)} Face 32868 730 649 18951 {rgb=(.6 .4 .4)} Face 32869 607 649 18952 {rgb=(.6 .4 .4)} Face 32870 649 730 18952 {rgb=(.6 .4 .4)} Face 32871 730 666 18952 {rgb=(.6 .4 .4)} Face 32872 666 607 18952 {rgb=(.6 .4 .4)} Face 32873 500 494 18953 {rgb=(.6 .4 .4)} Face 32874 494 658 18953 {rgb=(.6 .4 .4)} Face 32875 658 649 18953 {rgb=(.6 .4 .4)} Face 32876 649 500 18953 {rgb=(.6 .4 .4)} Face 32877 532 500 18954 {rgb=(.6 .4 .4)} Face 32878 500 649 18954 {rgb=(.6 .4 .4)} Face 32879 649 607 18954 {rgb=(.6 .4 .4)} Face 32880 607 532 18954 {rgb=(.6 .4 .4)} Face 32881 445 532 18955 {rgb=(.6 .4 .4)} Face 32882 532 607 18955 {rgb=(.6 .4 .4)} Face 32883 607 510 18955 {rgb=(.6 .4 .4)} Face 32884 510 445 18955 {rgb=(.6 .4 .4)} Face 32885 419 445 18956 {rgb=(.6 .4 .4)} Face 32886 445 510 18956 {rgb=(.6 .4 .4)} Face 32887 510 490 18956 {rgb=(.6 .4 .4)} Face 32888 490 419 18956 {rgb=(.6 .4 .4)} Face 32889 500 174 18957 {rgb=(.6 .4 .4)} Face 32890 174 168 18957 {rgb=(.6 .4 .4)} Face 32891 168 494 18957 {rgb=(.6 .4 .4)} Face 32892 494 500 18957 {rgb=(.6 .4 .4)} Face 32893 331 301 18958 {rgb=(.6 .4 .4)} Face 32894 301 445 18958 {rgb=(.6 .4 .4)} Face 32895 445 419 18958 {rgb=(.6 .4 .4)} Face 32896 419 331 18958 {rgb=(.6 .4 .4)} Face 32897 209 174 18959 {rgb=(.6 .4 .4)} Face 32898 174 500 18959 {rgb=(.6 .4 .4)} Face 32899 500 532 18959 {rgb=(.6 .4 .4)} Face 32900 532 209 18959 {rgb=(.6 .4 .4)} Face 32901 301 209 18960 {rgb=(.6 .4 .4)} Face 32902 209 532 18960 {rgb=(.6 .4 .4)} Face 32903 532 445 18960 {rgb=(.6 .4 .4)} Face 32904 445 301 18960 {rgb=(.6 .4 .4)} Face 32905 138 86 18961 {rgb=(.6 .4 .4)} Face 32906 86 34 18961 {rgb=(.6 .4 .4)} Face 32907 34 70 18961 {rgb=(.6 .4 .4)} Face 32908 70 138 18961 {rgb=(.6 .4 .4)} Face 32909 240 278 18962 {rgb=(.6 .4 .4)} Face 32910 278 248 18962 {rgb=(.6 .4 .4)} Face 32911 248 212 18962 {rgb=(.6 .4 .4)} Face 32912 212 240 18962 {rgb=(.6 .4 .4)} Face 32913 294 240 18963 {rgb=(.6 .4 .4)} Face 32914 240 212 18963 {rgb=(.6 .4 .4)} Face 32915 212 307 18963 {rgb=(.6 .4 .4)} Face 32916 307 294 18963 {rgb=(.6 .4 .4)} Face 32917 81 137 18964 {rgb=(.6 .4 .4)} Face 32918 137 43 18964 {rgb=(.6 .4 .4)} Face 32919 43 30 18964 {rgb=(.6 .4 .4)} Face 32920 30 81 18964 {rgb=(.6 .4 .4)} Face 32921 30 43 18965 {rgb=(.6 .4 .4)} Face 32922 43 48 18965 {rgb=(.6 .4 .4)} Face 32923 48 36 18965 {rgb=(.6 .4 .4)} Face 32924 36 30 18965 {rgb=(.6 .4 .4)} Face 32925 19 30 18966 {rgb=(.6 .4 .4)} Face 32926 30 36 18966 {rgb=(.6 .4 .4)} Face 32927 36 20 18966 {rgb=(.6 .4 .4)} Face 32928 20 19 18966 {rgb=(.6 .4 .4)} Face 32929 34 19 18967 {rgb=(.6 .4 .4)} Face 32930 19 20 18967 {rgb=(.6 .4 .4)} Face 32931 20 40 18967 {rgb=(.6 .4 .4)} Face 32932 40 34 18967 {rgb=(.6 .4 .4)} Face 32933 70 34 18968 {rgb=(.6 .4 .4)} Face 32934 34 40 18968 {rgb=(.6 .4 .4)} Face 32935 40 72 18968 {rgb=(.6 .4 .4)} Face 32936 72 70 18968 {rgb=(.6 .4 .4)} Face 32937 212 248 18969 {rgb=(.6 .4 .4)} Face 32938 248 224 18969 {rgb=(.6 .4 .4)} Face 32939 224 210 18969 {rgb=(.6 .4 .4)} Face 32940 210 212 18969 {rgb=(.6 .4 .4)} Face 32941 307 212 18970 {rgb=(.6 .4 .4)} Face 32942 212 210 18970 {rgb=(.6 .4 .4)} Face 32943 210 272 18970 {rgb=(.6 .4 .4)} Face 32944 272 307 18970 {rgb=(.6 .4 .4)} Face 32945 280 307 18971 {rgb=(.6 .4 .4)} Face 32946 307 272 18971 {rgb=(.6 .4 .4)} Face 32947 272 334 18971 {rgb=(.6 .4 .4)} Face 32948 334 280 18971 {rgb=(.6 .4 .4)} Face 32949 250 280 18972 {rgb=(.6 .4 .4)} Face 32950 280 334 18972 {rgb=(.6 .4 .4)} Face 32951 334 232 18972 {rgb=(.6 .4 .4)} Face 32952 232 250 18972 {rgb=(.6 .4 .4)} Face 32953 95 250 18973 {rgb=(.6 .4 .4)} Face 32954 250 232 18973 {rgb=(.6 .4 .4)} Face 32955 232 120 18973 {rgb=(.6 .4 .4)} Face 32956 120 95 18973 {rgb=(.6 .4 .4)} Face 32957 61 95 18974 {rgb=(.6 .4 .4)} Face 32958 95 120 18974 {rgb=(.6 .4 .4)} Face 32959 120 82 18974 {rgb=(.6 .4 .4)} Face 32960 82 61 18974 {rgb=(.6 .4 .4)} Face 32961 42 61 18975 {rgb=(.6 .4 .4)} Face 32962 61 82 18975 {rgb=(.6 .4 .4)} Face 32963 82 45 18975 {rgb=(.6 .4 .4)} Face 32964 45 42 18975 {rgb=(.6 .4 .4)} Face 32965 63 42 18976 {rgb=(.6 .4 .4)} Face 32966 42 45 18976 {rgb=(.6 .4 .4)} Face 32967 45 66 18976 {rgb=(.6 .4 .4)} Face 32968 66 63 18976 {rgb=(.6 .4 .4)} Face 32969 43 63 18977 {rgb=(.6 .4 .4)} Face 32970 63 66 18977 {rgb=(.6 .4 .4)} Face 32971 66 48 18977 {rgb=(.6 .4 .4)} Face 32972 48 43 18977 {rgb=(.6 .4 .4)} Face 32973 137 122 18978 {rgb=(.6 .4 .4)} Face 32974 122 63 18978 {rgb=(.6 .4 .4)} Face 32975 63 43 18978 {rgb=(.6 .4 .4)} Face 32976 43 137 18978 {rgb=(.6 .4 .4)} Face 32977 346 294 18979 {rgb=(.6 .4 .4)} Face 32978 294 307 18979 {rgb=(.6 .4 .4)} Face 32979 307 280 18979 {rgb=(.6 .4 .4)} Face 32980 280 346 18979 {rgb=(.6 .4 .4)} Face 32981 291 346 18980 {rgb=(.6 .4 .4)} Face 32982 346 280 18980 {rgb=(.6 .4 .4)} Face 32983 280 250 18980 {rgb=(.6 .4 .4)} Face 32984 250 291 18980 {rgb=(.6 .4 .4)} Face 32985 152 291 18981 {rgb=(.6 .4 .4)} Face 32986 291 250 18981 {rgb=(.6 .4 .4)} Face 32987 250 95 18981 {rgb=(.6 .4 .4)} Face 32988 95 152 18981 {rgb=(.6 .4 .4)} Face 32989 104 152 18982 {rgb=(.6 .4 .4)} Face 32990 152 95 18982 {rgb=(.6 .4 .4)} Face 32991 95 61 18982 {rgb=(.6 .4 .4)} Face 32992 61 104 18982 {rgb=(.6 .4 .4)} Face 32993 276 402 18983 {rgb=(.6 .4 .4)} Face 32994 402 496 18983 {rgb=(.6 .4 .4)} Face 32995 496 505 18983 {rgb=(.6 .4 .4)} Face 32996 505 276 18983 {rgb=(.6 .4 .4)} Face 32997 207 276 18984 {rgb=(.6 .4 .4)} Face 32998 276 505 18984 {rgb=(.6 .4 .4)} Face 32999 505 434 18984 {rgb=(.6 .4 .4)} Face 33000 434 207 18984 {rgb=(.6 .4 .4)} Face 33001 402 417 18985 {rgb=(.6 .4 .4)} Face 33002 417 452 18985 {rgb=(.6 .4 .4)} Face 33003 452 496 18985 {rgb=(.6 .4 .4)} Face 33004 496 402 18985 {rgb=(.6 .4 .4)} Face 33005 207 434 18986 {rgb=(.6 .4 .4)} Face 33006 434 407 18986 {rgb=(.6 .4 .4)} Face 33007 407 191 18986 {rgb=(.6 .4 .4)} Face 33008 191 207 18986 {rgb=(.6 .4 .4)} Face 33009 496 452 18987 {rgb=(.6 .4 .4)} Face 33010 452 487 18987 {rgb=(.6 .4 .4)} Face 33011 487 559 18987 {rgb=(.6 .4 .4)} Face 33012 559 496 18987 {rgb=(.6 .4 .4)} Face 33013 505 496 18988 {rgb=(.6 .4 .4)} Face 33014 496 559 18988 {rgb=(.6 .4 .4)} Face 33015 559 610 18988 {rgb=(.6 .4 .4)} Face 33016 610 505 18988 {rgb=(.6 .4 .4)} Face 33017 434 505 18989 {rgb=(.6 .4 .4)} Face 33018 505 610 18989 {rgb=(.6 .4 .4)} Face 33019 610 605 18989 {rgb=(.6 .4 .4)} Face 33020 605 434 18989 {rgb=(.6 .4 .4)} Face 33021 407 434 18990 {rgb=(.6 .4 .4)} Face 33022 434 605 18990 {rgb=(.6 .4 .4)} Face 33023 605 568 18990 {rgb=(.6 .4 .4)} Face 33024 568 407 18990 {rgb=(.6 .4 .4)} Face 33025 605 610 18991 {rgb=(.6 .4 .4)} Face 33026 610 661 18991 {rgb=(.6 .4 .4)} Face 33027 661 704 18991 {rgb=(.6 .4 .4)} Face 33028 704 605 18991 {rgb=(.6 .4 .4)} Face 33029 568 605 18992 {rgb=(.6 .4 .4)} Face 33030 605 704 18992 {rgb=(.6 .4 .4)} Face 33031 704 683 18992 {rgb=(.6 .4 .4)} Face 33032 683 568 18992 {rgb=(.6 .4 .4)} Face 33033 559 487 18993 {rgb=(.6 .4 .4)} Face 33034 487 516 18993 {rgb=(.6 .4 .4)} Face 33035 516 584 18993 {rgb=(.6 .4 .4)} Face 33036 584 559 18993 {rgb=(.6 .4 .4)} Face 33037 610 559 18994 {rgb=(.6 .4 .4)} Face 33038 559 584 18994 {rgb=(.6 .4 .4)} Face 33039 584 661 18994 {rgb=(.6 .4 .4)} Face 33040 661 610 18994 {rgb=(.6 .4 .4)} Face 33041 584 516 18995 {rgb=(.6 .4 .4)} Face 33042 516 636 18995 {rgb=(.6 .4 .4)} Face 33043 636 673 18995 {rgb=(.6 .4 .4)} Face 33044 673 584 18995 {rgb=(.6 .4 .4)} Face 33045 661 584 18996 {rgb=(.6 .4 .4)} Face 33046 584 673 18996 {rgb=(.6 .4 .4)} Face 33047 673 755 18996 {rgb=(.6 .4 .4)} Face 33048 755 661 18996 {rgb=(.6 .4 .4)} Face 33049 704 661 18997 {rgb=(.6 .4 .4)} Face 33050 661 755 18997 {rgb=(.6 .4 .4)} Face 33051 755 805 18997 {rgb=(.6 .4 .4)} Face 33052 805 704 18997 {rgb=(.6 .4 .4)} Face 33053 683 704 18998 {rgb=(.6 .4 .4)} Face 33054 704 805 18998 {rgb=(.6 .4 .4)} Face 33055 805 801 18998 {rgb=(.6 .4 .4)} Face 33056 801 683 18998 {rgb=(.6 .4 .4)} Face 33057 755 673 18999 {rgb=(.6 .4 .4)} Face 33058 673 694 18999 {rgb=(.6 .4 .4)} Face 33059 694 787 18999 {rgb=(.6 .4 .4)} Face 33060 787 755 18999 {rgb=(.6 .4 .4)} Face 33061 805 755 19000 {rgb=(.6 .4 .4)} Face 33062 755 787 19000 {rgb=(.6 .4 .4)} Face 33063 787 830 19000 {rgb=(.6 .4 .4)} Face 33064 830 805 19000 {rgb=(.6 .4 .4)} Face 33065 801 805 19001 {rgb=(.6 .4 .4)} Face 33066 805 830 19001 {rgb=(.6 .4 .4)} Face 33067 830 825 19001 {rgb=(.6 .4 .4)} Face 33068 825 801 19001 {rgb=(.6 .4 .4)} Face 33069 673 636 19002 {rgb=(.6 .4 .4)} Face 33070 636 654 19002 {rgb=(.6 .4 .4)} Face 33071 654 694 19002 {rgb=(.6 .4 .4)} Face 33072 694 673 19002 {rgb=(.6 .4 .4)} Face 33073 825 830 19003 {rgb=(.6 .4 .4)} Face 33074 830 804 19003 {rgb=(.6 .4 .4)} Face 33075 804 803 19003 {rgb=(.6 .4 .4)} Face 33076 803 825 19003 {rgb=(.6 .4 .4)} Face 33077 694 654 19004 {rgb=(.6 .4 .4)} Face 33078 654 634 19004 {rgb=(.6 .4 .4)} Face 33079 634 687 19004 {rgb=(.6 .4 .4)} Face 33080 687 694 19004 {rgb=(.6 .4 .4)} Face 33081 787 694 19005 {rgb=(.6 .4 .4)} Face 33082 694 687 19005 {rgb=(.6 .4 .4)} Face 33083 687 766 19005 {rgb=(.6 .4 .4)} Face 33084 766 787 19005 {rgb=(.6 .4 .4)} Face 33085 830 787 19006 {rgb=(.6 .4 .4)} Face 33086 787 766 19006 {rgb=(.6 .4 .4)} Face 33087 766 804 19006 {rgb=(.6 .4 .4)} Face 33088 804 830 19006 {rgb=(.6 .4 .4)} Face 33089 687 634 19007 {rgb=(.6 .4 .4)} Face 33090 634 569 19007 {rgb=(.6 .4 .4)} Face 33091 569 611 19007 {rgb=(.6 .4 .4)} Face 33092 611 687 19007 {rgb=(.6 .4 .4)} Face 33093 766 687 19008 {rgb=(.6 .4 .4)} Face 33094 687 611 19008 {rgb=(.6 .4 .4)} Face 33095 611 688 19008 {rgb=(.6 .4 .4)} Face 33096 688 766 19008 {rgb=(.6 .4 .4)} Face 33097 804 766 19009 {rgb=(.6 .4 .4)} Face 33098 766 688 19009 {rgb=(.6 .4 .4)} Face 33099 688 702 19009 {rgb=(.6 .4 .4)} Face 33100 702 804 19009 {rgb=(.6 .4 .4)} Face 33101 803 804 19010 {rgb=(.6 .4 .4)} Face 33102 804 702 19010 {rgb=(.6 .4 .4)} Face 33103 702 717 19010 {rgb=(.6 .4 .4)} Face 33104 717 803 19010 {rgb=(.6 .4 .4)} Face 33105 702 688 19011 {rgb=(.6 .4 .4)} Face 33106 688 614 19011 {rgb=(.6 .4 .4)} Face 33107 614 601 19011 {rgb=(.6 .4 .4)} Face 33108 601 702 19011 {rgb=(.6 .4 .4)} Face 33109 680 702 19012 {rgb=(.6 .4 .4)} Face 33110 702 601 19012 {rgb=(.6 .4 .4)} Face 33111 601 602 19012 {rgb=(.6 .4 .4)} Face 33112 602 680 19012 {rgb=(.6 .4 .4)} Face 33113 611 569 19013 {rgb=(.6 .4 .4)} Face 33114 569 466 19013 {rgb=(.6 .4 .4)} Face 33115 466 536 19013 {rgb=(.6 .4 .4)} Face 33116 536 611 19013 {rgb=(.6 .4 .4)} Face 33117 688 611 19014 {rgb=(.6 .4 .4)} Face 33118 611 536 19014 {rgb=(.6 .4 .4)} Face 33119 536 614 19014 {rgb=(.6 .4 .4)} Face 33120 614 688 19014 {rgb=(.6 .4 .4)} Face 33121 601 540 19015 {rgb=(.6 .4 .4)} Face 33122 540 555 19015 {rgb=(.6 .4 .4)} Face 33123 555 602 19015 {rgb=(.6 .4 .4)} Face 33124 602 601 19015 {rgb=(.6 .4 .4)} Face 33125 536 465 19016 {rgb=(.6 .4 .4)} Face 33126 465 531 19016 {rgb=(.6 .4 .4)} Face 33127 531 614 19016 {rgb=(.6 .4 .4)} Face 33128 614 536 19016 {rgb=(.6 .4 .4)} Face 33129 446 497 19017 {rgb=(.6 .4 .4)} Face 33130 497 531 19017 {rgb=(.6 .4 .4)} Face 33131 531 465 19017 {rgb=(.6 .4 .4)} Face 33132 465 446 19017 {rgb=(.6 .4 .4)} Face 33133 702 680 19018 {rgb=(.6 .4 .4)} Face 33134 680 701 19018 {rgb=(.6 .4 .4)} Face 33135 701 717 19018 {rgb=(.6 .4 .4)} Face 33136 717 702 19018 {rgb=(.6 .4 .4)} Face 33137 540 524 19019 {rgb=(.6 .4 .4)} Face 33138 524 541 19019 {rgb=(.6 .4 .4)} Face 33139 541 555 19019 {rgb=(.6 .4 .4)} Face 33140 555 540 19019 {rgb=(.6 .4 .4)} Face 33141 497 446 19020 {rgb=(.6 .4 .4)} Face 33142 446 430 19020 {rgb=(.6 .4 .4)} Face 33143 430 474 19020 {rgb=(.6 .4 .4)} Face 33144 474 497 19020 {rgb=(.6 .4 .4)} Face 33145 524 540 19021 {rgb=(.6 .4 .4)} Face 33146 540 497 19021 {rgb=(.6 .4 .4)} Face 33147 497 474 19021 {rgb=(.6 .4 .4)} Face 33148 474 524 19021 {rgb=(.6 .4 .4)} Face 33149 540 601 19022 {rgb=(.6 .4 .4)} Face 33150 601 531 19022 {rgb=(.6 .4 .4)} Face 33151 531 497 19022 {rgb=(.6 .4 .4)} Face 33152 497 540 19022 {rgb=(.6 .4 .4)} Face 33153 417 402 19023 {rgb=(.6 .4 .4)} Face 33154 402 294 19023 {rgb=(.6 .4 .4)} Face 33155 294 346 19023 {rgb=(.6 .4 .4)} Face 33156 346 417 19023 {rgb=(.6 .4 .4)} Face 33157 207 191 19024 {rgb=(.6 .4 .4)} Face 33158 191 109 19024 {rgb=(.6 .4 .4)} Face 33159 109 122 19024 {rgb=(.6 .4 .4)} Face 33160 122 207 19024 {rgb=(.6 .4 .4)} Face 33161 276 207 19025 {rgb=(.6 .4 .4)} Face 33162 207 122 19025 {rgb=(.6 .4 .4)} Face 33163 122 137 19025 {rgb=(.6 .4 .4)} Face 33164 137 276 19025 {rgb=(.6 .4 .4)} Face 33165 225 337 19026 {rgb=(.6 .4 .4)} Face 33166 337 291 19026 {rgb=(.6 .4 .4)} Face 33167 291 152 19026 {rgb=(.6 .4 .4)} Face 33168 152 225 19026 {rgb=(.6 .4 .4)} Face 33169 198 225 19027 {rgb=(.6 .4 .4)} Face 33170 225 152 19027 {rgb=(.6 .4 .4)} Face 33171 152 104 19027 {rgb=(.6 .4 .4)} Face 33172 104 198 19027 {rgb=(.6 .4 .4)} Face 33173 191 198 19028 {rgb=(.6 .4 .4)} Face 33174 198 104 19028 {rgb=(.6 .4 .4)} Face 33175 104 109 19028 {rgb=(.6 .4 .4)} Face 33176 109 191 19028 {rgb=(.6 .4 .4)} Face 33177 337 417 19029 {rgb=(.6 .4 .4)} Face 33178 417 346 19029 {rgb=(.6 .4 .4)} Face 33179 346 291 19029 {rgb=(.6 .4 .4)} Face 33180 291 337 19029 {rgb=(.6 .4 .4)} Face 33181 570 528 19030 {rgb=(.6 .4 .4)} Face 33182 528 482 19030 {rgb=(.6 .4 .4)} Face 33183 482 501 19030 {rgb=(.6 .4 .4)} Face 33184 501 570 19030 {rgb=(.6 .4 .4)} Face 33185 528 524 19031 {rgb=(.6 .4 .4)} Face 33186 524 474 19031 {rgb=(.6 .4 .4)} Face 33187 474 482 19031 {rgb=(.6 .4 .4)} Face 33188 482 528 19031 {rgb=(.6 .4 .4)} Face 33189 435 482 19032 {rgb=(.6 .4 .4)} Face 33190 482 474 19032 {rgb=(.6 .4 .4)} Face 33191 474 430 19032 {rgb=(.6 .4 .4)} Face 33192 430 435 19032 {rgb=(.6 .4 .4)} Face 33193 524 528 19033 {rgb=(.6 .4 .4)} Face 33194 528 538 19033 {rgb=(.6 .4 .4)} Face 33195 538 541 19033 {rgb=(.6 .4 .4)} Face 33196 541 524 19033 {rgb=(.6 .4 .4)} Face 33197 664 684 19034 {rgb=(.6 .4 .4)} Face 33198 684 717 19034 {rgb=(.6 .4 .4)} Face 33199 717 701 19034 {rgb=(.6 .4 .4)} Face 33200 701 664 19034 {rgb=(.6 .4 .4)} Face 33201 482 435 19035 {rgb=(.6 .4 .4)} Face 33202 435 447 19035 {rgb=(.6 .4 .4)} Face 33203 447 501 19035 {rgb=(.6 .4 .4)} Face 33204 501 482 19035 {rgb=(.6 .4 .4)} Face 33205 447 507 19036 {rgb=(.6 .4 .4)} Face 33206 507 580 19036 {rgb=(.6 .4 .4)} Face 33207 580 501 19036 {rgb=(.6 .4 .4)} Face 33208 501 447 19036 {rgb=(.6 .4 .4)} Face 33209 528 570 19037 {rgb=(.6 .4 .4)} Face 33210 570 576 19037 {rgb=(.6 .4 .4)} Face 33211 576 538 19037 {rgb=(.6 .4 .4)} Face 33212 538 528 19037 {rgb=(.6 .4 .4)} Face 33213 589 659 19038 {rgb=(.6 .4 .4)} Face 33214 659 580 19038 {rgb=(.6 .4 .4)} Face 33215 580 507 19038 {rgb=(.6 .4 .4)} Face 33216 507 589 19038 {rgb=(.6 .4 .4)} Face 33217 569 589 19039 {rgb=(.6 .4 .4)} Face 33218 589 507 19039 {rgb=(.6 .4 .4)} Face 33219 507 466 19039 {rgb=(.6 .4 .4)} Face 33220 466 569 19039 {rgb=(.6 .4 .4)} Face 33221 684 664 19040 {rgb=(.6 .4 .4)} Face 33222 664 576 19040 {rgb=(.6 .4 .4)} Face 33223 576 570 19040 {rgb=(.6 .4 .4)} Face 33224 570 684 19040 {rgb=(.6 .4 .4)} Face 33225 659 684 19041 {rgb=(.6 .4 .4)} Face 33226 684 570 19041 {rgb=(.6 .4 .4)} Face 33227 570 580 19041 {rgb=(.6 .4 .4)} Face 33228 580 659 19041 {rgb=(.6 .4 .4)} Face 33229 793 803 19042 {rgb=(.6 .4 .4)} Face 33230 803 717 19042 {rgb=(.6 .4 .4)} Face 33231 717 684 19042 {rgb=(.6 .4 .4)} Face 33232 684 793 19042 {rgb=(.6 .4 .4)} Face 33233 751 793 19043 {rgb=(.6 .4 .4)} Face 33234 793 684 19043 {rgb=(.6 .4 .4)} Face 33235 684 659 19043 {rgb=(.6 .4 .4)} Face 33236 659 751 19043 {rgb=(.6 .4 .4)} Face 33237 662 751 19044 {rgb=(.6 .4 .4)} Face 33238 751 659 19044 {rgb=(.6 .4 .4)} Face 33239 659 589 19044 {rgb=(.6 .4 .4)} Face 33240 589 662 19044 {rgb=(.6 .4 .4)} Face 33241 634 662 19045 {rgb=(.6 .4 .4)} Face 33242 662 589 19045 {rgb=(.6 .4 .4)} Face 33243 589 569 19045 {rgb=(.6 .4 .4)} Face 33244 569 634 19045 {rgb=(.6 .4 .4)} Face 33245 757 820 19046 {rgb=(.6 .4 .4)} Face 33246 820 793 19046 {rgb=(.6 .4 .4)} Face 33247 793 751 19046 {rgb=(.6 .4 .4)} Face 33248 751 757 19046 {rgb=(.6 .4 .4)} Face 33249 654 672 19047 {rgb=(.6 .4 .4)} Face 33250 672 662 19047 {rgb=(.6 .4 .4)} Face 33251 662 634 19047 {rgb=(.6 .4 .4)} Face 33252 634 654 19047 {rgb=(.6 .4 .4)} Face 33253 820 825 19048 {rgb=(.6 .4 .4)} Face 33254 825 803 19048 {rgb=(.6 .4 .4)} Face 33255 803 793 19048 {rgb=(.6 .4 .4)} Face 33256 793 820 19048 {rgb=(.6 .4 .4)} Face 33257 636 650 19049 {rgb=(.6 .4 .4)} Face 33258 650 672 19049 {rgb=(.6 .4 .4)} Face 33259 672 654 19049 {rgb=(.6 .4 .4)} Face 33260 654 636 19049 {rgb=(.6 .4 .4)} Face 33261 798 801 19050 {rgb=(.6 .4 .4)} Face 33262 801 825 19050 {rgb=(.6 .4 .4)} Face 33263 825 820 19050 {rgb=(.6 .4 .4)} Face 33264 820 798 19050 {rgb=(.6 .4 .4)} Face 33265 742 798 19051 {rgb=(.6 .4 .4)} Face 33266 798 820 19051 {rgb=(.6 .4 .4)} Face 33267 820 757 19051 {rgb=(.6 .4 .4)} Face 33268 757 742 19051 {rgb=(.6 .4 .4)} Face 33269 650 742 19052 {rgb=(.6 .4 .4)} Face 33270 742 757 19052 {rgb=(.6 .4 .4)} Face 33271 757 672 19052 {rgb=(.6 .4 .4)} Face 33272 672 650 19052 {rgb=(.6 .4 .4)} Face 33273 685 683 19053 {rgb=(.6 .4 .4)} Face 33274 683 801 19053 {rgb=(.6 .4 .4)} Face 33275 801 798 19053 {rgb=(.6 .4 .4)} Face 33276 798 685 19053 {rgb=(.6 .4 .4)} Face 33277 620 685 19054 {rgb=(.6 .4 .4)} Face 33278 685 798 19054 {rgb=(.6 .4 .4)} Face 33279 798 742 19054 {rgb=(.6 .4 .4)} Face 33280 742 620 19054 {rgb=(.6 .4 .4)} Face 33281 543 620 19055 {rgb=(.6 .4 .4)} Face 33282 620 742 19055 {rgb=(.6 .4 .4)} Face 33283 742 650 19055 {rgb=(.6 .4 .4)} Face 33284 650 543 19055 {rgb=(.6 .4 .4)} Face 33285 516 543 19056 {rgb=(.6 .4 .4)} Face 33286 543 650 19056 {rgb=(.6 .4 .4)} Face 33287 650 636 19056 {rgb=(.6 .4 .4)} Face 33288 636 516 19056 {rgb=(.6 .4 .4)} Face 33289 506 553 19057 {rgb=(.6 .4 .4)} Face 33290 553 620 19057 {rgb=(.6 .4 .4)} Face 33291 620 543 19057 {rgb=(.6 .4 .4)} Face 33292 543 506 19057 {rgb=(.6 .4 .4)} Face 33293 487 506 19058 {rgb=(.6 .4 .4)} Face 33294 506 543 19058 {rgb=(.6 .4 .4)} Face 33295 543 516 19058 {rgb=(.6 .4 .4)} Face 33296 516 487 19058 {rgb=(.6 .4 .4)} Face 33297 567 568 19059 {rgb=(.6 .4 .4)} Face 33298 568 683 19059 {rgb=(.6 .4 .4)} Face 33299 683 685 19059 {rgb=(.6 .4 .4)} Face 33300 685 567 19059 {rgb=(.6 .4 .4)} Face 33301 553 567 19060 {rgb=(.6 .4 .4)} Face 33302 567 685 19060 {rgb=(.6 .4 .4)} Face 33303 685 620 19060 {rgb=(.6 .4 .4)} Face 33304 620 553 19060 {rgb=(.6 .4 .4)} Face 33305 412 407 19061 {rgb=(.6 .4 .4)} Face 33306 407 568 19061 {rgb=(.6 .4 .4)} Face 33307 568 567 19061 {rgb=(.6 .4 .4)} Face 33308 567 412 19061 {rgb=(.6 .4 .4)} Face 33309 440 412 19062 {rgb=(.6 .4 .4)} Face 33310 412 567 19062 {rgb=(.6 .4 .4)} Face 33311 567 553 19062 {rgb=(.6 .4 .4)} Face 33312 553 440 19062 {rgb=(.6 .4 .4)} Face 33313 437 440 19063 {rgb=(.6 .4 .4)} Face 33314 440 553 19063 {rgb=(.6 .4 .4)} Face 33315 553 506 19063 {rgb=(.6 .4 .4)} Face 33316 506 437 19063 {rgb=(.6 .4 .4)} Face 33317 452 437 19064 {rgb=(.6 .4 .4)} Face 33318 437 506 19064 {rgb=(.6 .4 .4)} Face 33319 506 487 19064 {rgb=(.6 .4 .4)} Face 33320 487 452 19064 {rgb=(.6 .4 .4)} Face 33321 412 198 19065 {rgb=(.6 .4 .4)} Face 33322 198 191 19065 {rgb=(.6 .4 .4)} Face 33323 191 407 19065 {rgb=(.6 .4 .4)} Face 33324 407 412 19065 {rgb=(.6 .4 .4)} Face 33325 417 337 19066 {rgb=(.6 .4 .4)} Face 33326 337 437 19066 {rgb=(.6 .4 .4)} Face 33327 437 452 19066 {rgb=(.6 .4 .4)} Face 33328 452 417 19066 {rgb=(.6 .4 .4)} Face 33329 225 198 19067 {rgb=(.6 .4 .4)} Face 33330 198 412 19067 {rgb=(.6 .4 .4)} Face 33331 412 440 19067 {rgb=(.6 .4 .4)} Face 33332 440 225 19067 {rgb=(.6 .4 .4)} Face 33333 337 225 19068 {rgb=(.6 .4 .4)} Face 33334 225 440 19068 {rgb=(.6 .4 .4)} Face 33335 440 437 19068 {rgb=(.6 .4 .4)} Face 33336 437 337 19068 {rgb=(.6 .4 .4)} Face 33337 557 625 19069 {rgb=(.6 .4 .4)} Face 33338 625 455 19069 {rgb=(.6 .4 .4)} Face 33339 455 366 19069 {rgb=(.6 .4 .4)} Face 33340 366 557 19069 {rgb=(.6 .4 .4)} Face 33341 625 696 19070 {rgb=(.6 .4 .4)} Face 33342 696 582 19070 {rgb=(.6 .4 .4)} Face 33343 582 455 19070 {rgb=(.6 .4 .4)} Face 33344 455 625 19070 {rgb=(.6 .4 .4)} Face 33345 696 754 19071 {rgb=(.6 .4 .4)} Face 33346 754 695 19071 {rgb=(.6 .4 .4)} Face 33347 695 582 19071 {rgb=(.6 .4 .4)} Face 33348 582 696 19071 {rgb=(.6 .4 .4)} Face 33349 754 800 19072 {rgb=(.6 .4 .4)} Face 33350 800 770 19072 {rgb=(.6 .4 .4)} Face 33351 770 695 19072 {rgb=(.6 .4 .4)} Face 33352 695 754 19072 {rgb=(.6 .4 .4)} Face 33353 800 783 19073 {rgb=(.6 .4 .4)} Face 33354 783 725 19073 {rgb=(.6 .4 .4)} Face 33355 725 770 19073 {rgb=(.6 .4 .4)} Face 33356 770 800 19073 {rgb=(.6 .4 .4)} Face 33357 783 700 19074 {rgb=(.6 .4 .4)} Face 33358 700 645 19074 {rgb=(.6 .4 .4)} Face 33359 645 725 19074 {rgb=(.6 .4 .4)} Face 33360 725 783 19074 {rgb=(.6 .4 .4)} Face 33361 700 593 19075 {rgb=(.6 .4 .4)} Face 33362 593 499 19075 {rgb=(.6 .4 .4)} Face 33363 499 645 19075 {rgb=(.6 .4 .4)} Face 33364 645 700 19075 {rgb=(.6 .4 .4)} Face 33365 593 557 19076 {rgb=(.6 .4 .4)} Face 33366 557 366 19076 {rgb=(.6 .4 .4)} Face 33367 366 499 19076 {rgb=(.6 .4 .4)} Face 33368 499 593 19076 {rgb=(.6 .4 .4)} Face 33369 409 626 19077 {rgb=(.6 .4 .4)} Face 33370 626 671 19077 {rgb=(.6 .4 .4)} Face 33371 671 471 19077 {rgb=(.6 .4 .4)} Face 33372 471 409 19077 {rgb=(.6 .4 .4)} Face 33373 247 409 19078 {rgb=(.6 .4 .4)} Face 33374 409 471 19078 {rgb=(.6 .4 .4)} Face 33375 471 303 19078 {rgb=(.6 .4 .4)} Face 33376 303 247 19078 {rgb=(.6 .4 .4)} Face 33377 273 247 19079 {rgb=(.6 .4 .4)} Face 33378 247 303 19079 {rgb=(.6 .4 .4)} Face 33379 303 305 19079 {rgb=(.6 .4 .4)} Face 33380 305 273 19079 {rgb=(.6 .4 .4)} Face 33381 356 273 19080 {rgb=(.6 .4 .4)} Face 33382 273 305 19080 {rgb=(.6 .4 .4)} Face 33383 305 457 19080 {rgb=(.6 .4 .4)} Face 33384 457 356 19080 {rgb=(.6 .4 .4)} Face 33385 305 303 19081 {rgb=(.6 .4 .4)} Face 33386 303 366 19081 {rgb=(.6 .4 .4)} Face 33387 366 455 19081 {rgb=(.6 .4 .4)} Face 33388 455 305 19081 {rgb=(.6 .4 .4)} Face 33389 457 305 19082 {rgb=(.6 .4 .4)} Face 33390 305 455 19082 {rgb=(.6 .4 .4)} Face 33391 455 582 19082 {rgb=(.6 .4 .4)} Face 33392 582 457 19082 {rgb=(.6 .4 .4)} Face 33393 471 671 19083 {rgb=(.6 .4 .4)} Face 33394 671 645 19083 {rgb=(.6 .4 .4)} Face 33395 645 499 19083 {rgb=(.6 .4 .4)} Face 33396 499 471 19083 {rgb=(.6 .4 .4)} Face 33397 303 471 19084 {rgb=(.6 .4 .4)} Face 33398 471 499 19084 {rgb=(.6 .4 .4)} Face 33399 499 366 19084 {rgb=(.6 .4 .4)} Face 33400 366 303 19084 {rgb=(.6 .4 .4)} Face 33401 593 700 19085 {rgb=(.6 .4 .4)} Face 33402 700 748 19085 {rgb=(.6 .4 .4)} Face 33403 748 686 19085 {rgb=(.6 .4 .4)} Face 33404 686 593 19085 {rgb=(.6 .4 .4)} Face 33405 557 593 19086 {rgb=(.6 .4 .4)} Face 33406 593 686 19086 {rgb=(.6 .4 .4)} Face 33407 686 699 19086 {rgb=(.6 .4 .4)} Face 33408 699 557 19086 {rgb=(.6 .4 .4)} Face 33409 625 557 19087 {rgb=(.6 .4 .4)} Face 33410 557 699 19087 {rgb=(.6 .4 .4)} Face 33411 699 732 19087 {rgb=(.6 .4 .4)} Face 33412 732 625 19087 {rgb=(.6 .4 .4)} Face 33413 696 625 19088 {rgb=(.6 .4 .4)} Face 33414 625 732 19088 {rgb=(.6 .4 .4)} Face 33415 732 773 19088 {rgb=(.6 .4 .4)} Face 33416 773 696 19088 {rgb=(.6 .4 .4)} Face 33417 699 686 19089 {rgb=(.6 .4 .4)} Face 33418 686 691 19089 {rgb=(.6 .4 .4)} Face 33419 691 715 19089 {rgb=(.6 .4 .4)} Face 33420 715 699 19089 {rgb=(.6 .4 .4)} Face 33421 732 699 19090 {rgb=(.6 .4 .4)} Face 33422 699 715 19090 {rgb=(.6 .4 .4)} Face 33423 715 769 19090 {rgb=(.6 .4 .4)} Face 33424 769 732 19090 {rgb=(.6 .4 .4)} Face 33425 773 732 19091 {rgb=(.6 .4 .4)} Face 33426 732 769 19091 {rgb=(.6 .4 .4)} Face 33427 769 828 19091 {rgb=(.6 .4 .4)} Face 33428 828 773 19091 {rgb=(.6 .4 .4)} Face 33429 686 748 19092 {rgb=(.6 .4 .4)} Face 33430 748 750 19092 {rgb=(.6 .4 .4)} Face 33431 750 691 19092 {rgb=(.6 .4 .4)} Face 33432 691 686 19092 {rgb=(.6 .4 .4)} Face 33433 828 769 19093 {rgb=(.6 .4 .4)} Face 33434 769 808 19093 {rgb=(.6 .4 .4)} Face 33435 808 840 19093 {rgb=(.6 .4 .4)} Face 33436 840 828 19093 {rgb=(.6 .4 .4)} Face 33437 691 750 19094 {rgb=(.6 .4 .4)} Face 33438 750 763 19094 {rgb=(.6 .4 .4)} Face 33439 763 716 19094 {rgb=(.6 .4 .4)} Face 33440 716 691 19094 {rgb=(.6 .4 .4)} Face 33441 715 691 19095 {rgb=(.6 .4 .4)} Face 33442 691 716 19095 {rgb=(.6 .4 .4)} Face 33443 716 743 19095 {rgb=(.6 .4 .4)} Face 33444 743 715 19095 {rgb=(.6 .4 .4)} Face 33445 769 715 19096 {rgb=(.6 .4 .4)} Face 33446 715 743 19096 {rgb=(.6 .4 .4)} Face 33447 743 808 19096 {rgb=(.6 .4 .4)} Face 33448 808 769 19096 {rgb=(.6 .4 .4)} Face 33449 716 763 19097 {rgb=(.6 .4 .4)} Face 33450 763 807 19097 {rgb=(.6 .4 .4)} Face 33451 807 759 19097 {rgb=(.6 .4 .4)} Face 33452 759 716 19097 {rgb=(.6 .4 .4)} Face 33453 743 716 19098 {rgb=(.6 .4 .4)} Face 33454 716 759 19098 {rgb=(.6 .4 .4)} Face 33455 759 778 19098 {rgb=(.6 .4 .4)} Face 33456 778 743 19098 {rgb=(.6 .4 .4)} Face 33457 808 743 19099 {rgb=(.6 .4 .4)} Face 33458 743 778 19099 {rgb=(.6 .4 .4)} Face 33459 778 824 19099 {rgb=(.6 .4 .4)} Face 33460 824 808 19099 {rgb=(.6 .4 .4)} Face 33461 840 808 19100 {rgb=(.6 .4 .4)} Face 33462 808 824 19100 {rgb=(.6 .4 .4)} Face 33463 824 860 19100 {rgb=(.6 .4 .4)} Face 33464 860 840 19100 {rgb=(.6 .4 .4)} Face 33465 824 778 19101 {rgb=(.6 .4 .4)} Face 33466 778 811 19101 {rgb=(.6 .4 .4)} Face 33467 811 839 19101 {rgb=(.6 .4 .4)} Face 33468 839 824 19101 {rgb=(.6 .4 .4)} Face 33469 838 824 19102 {rgb=(.6 .4 .4)} Face 33470 824 839 19102 {rgb=(.6 .4 .4)} Face 33471 839 845 19102 {rgb=(.6 .4 .4)} Face 33472 845 838 19102 {rgb=(.6 .4 .4)} Face 33473 759 807 19103 {rgb=(.6 .4 .4)} Face 33474 807 843 19103 {rgb=(.6 .4 .4)} Face 33475 843 806 19103 {rgb=(.6 .4 .4)} Face 33476 806 759 19103 {rgb=(.6 .4 .4)} Face 33477 778 759 19104 {rgb=(.6 .4 .4)} Face 33478 759 806 19104 {rgb=(.6 .4 .4)} Face 33479 806 811 19104 {rgb=(.6 .4 .4)} Face 33480 811 778 19104 {rgb=(.6 .4 .4)} Face 33481 839 873 19105 {rgb=(.6 .4 .4)} Face 33482 873 877 19105 {rgb=(.6 .4 .4)} Face 33483 877 845 19105 {rgb=(.6 .4 .4)} Face 33484 845 839 19105 {rgb=(.6 .4 .4)} Face 33485 806 833 19106 {rgb=(.6 .4 .4)} Face 33486 833 841 19106 {rgb=(.6 .4 .4)} Face 33487 841 811 19106 {rgb=(.6 .4 .4)} Face 33488 811 806 19106 {rgb=(.6 .4 .4)} Face 33489 851 870 19107 {rgb=(.6 .4 .4)} Face 33490 870 841 19107 {rgb=(.6 .4 .4)} Face 33491 841 833 19107 {rgb=(.6 .4 .4)} Face 33492 833 851 19107 {rgb=(.6 .4 .4)} Face 33493 824 838 19108 {rgb=(.6 .4 .4)} Face 33494 838 875 19108 {rgb=(.6 .4 .4)} Face 33495 875 860 19108 {rgb=(.6 .4 .4)} Face 33496 860 824 19108 {rgb=(.6 .4 .4)} Face 33497 873 903 19109 {rgb=(.6 .4 .4)} Face 33498 903 902 19109 {rgb=(.6 .4 .4)} Face 33499 902 877 19109 {rgb=(.6 .4 .4)} Face 33500 877 873 19109 {rgb=(.6 .4 .4)} Face 33501 870 851 19110 {rgb=(.6 .4 .4)} Face 33502 851 879 19110 {rgb=(.6 .4 .4)} Face 33503 879 897 19110 {rgb=(.6 .4 .4)} Face 33504 897 870 19110 {rgb=(.6 .4 .4)} Face 33505 903 873 19111 {rgb=(.6 .4 .4)} Face 33506 873 870 19111 {rgb=(.6 .4 .4)} Face 33507 870 897 19111 {rgb=(.6 .4 .4)} Face 33508 897 903 19111 {rgb=(.6 .4 .4)} Face 33509 873 839 19112 {rgb=(.6 .4 .4)} Face 33510 839 841 19112 {rgb=(.6 .4 .4)} Face 33511 841 870 19112 {rgb=(.6 .4 .4)} Face 33512 870 873 19112 {rgb=(.6 .4 .4)} Face 33513 933 927 19113 {rgb=(.6 .4 .4)} Face 33514 927 917 19113 {rgb=(.6 .4 .4)} Face 33515 917 924 19113 {rgb=(.6 .4 .4)} Face 33516 924 933 19113 {rgb=(.6 .4 .4)} Face 33517 927 903 19114 {rgb=(.6 .4 .4)} Face 33518 903 897 19114 {rgb=(.6 .4 .4)} Face 33519 897 917 19114 {rgb=(.6 .4 .4)} Face 33520 917 927 19114 {rgb=(.6 .4 .4)} Face 33521 891 917 19115 {rgb=(.6 .4 .4)} Face 33522 917 897 19115 {rgb=(.6 .4 .4)} Face 33523 897 879 19115 {rgb=(.6 .4 .4)} Face 33524 879 891 19115 {rgb=(.6 .4 .4)} Face 33525 903 927 19116 {rgb=(.6 .4 .4)} Face 33526 927 929 19116 {rgb=(.6 .4 .4)} Face 33527 929 902 19116 {rgb=(.6 .4 .4)} Face 33528 902 903 19116 {rgb=(.6 .4 .4)} Face 33529 904 901 19117 {rgb=(.6 .4 .4)} Face 33530 901 860 19117 {rgb=(.6 .4 .4)} Face 33531 860 875 19117 {rgb=(.6 .4 .4)} Face 33532 875 904 19117 {rgb=(.6 .4 .4)} Face 33533 917 891 19118 {rgb=(.6 .4 .4)} Face 33534 891 892 19118 {rgb=(.6 .4 .4)} Face 33535 892 924 19118 {rgb=(.6 .4 .4)} Face 33536 924 917 19118 {rgb=(.6 .4 .4)} Face 33537 892 883 19119 {rgb=(.6 .4 .4)} Face 33538 883 919 19119 {rgb=(.6 .4 .4)} Face 33539 919 924 19119 {rgb=(.6 .4 .4)} Face 33540 924 892 19119 {rgb=(.6 .4 .4)} Face 33541 927 933 19120 {rgb=(.6 .4 .4)} Face 33542 933 928 19120 {rgb=(.6 .4 .4)} Face 33543 928 929 19120 {rgb=(.6 .4 .4)} Face 33544 929 927 19120 {rgb=(.6 .4 .4)} Face 33545 854 900 19121 {rgb=(.6 .4 .4)} Face 33546 900 919 19121 {rgb=(.6 .4 .4)} Face 33547 919 883 19121 {rgb=(.6 .4 .4)} Face 33548 883 854 19121 {rgb=(.6 .4 .4)} Face 33549 807 854 19122 {rgb=(.6 .4 .4)} Face 33550 854 883 19122 {rgb=(.6 .4 .4)} Face 33551 883 843 19122 {rgb=(.6 .4 .4)} Face 33552 843 807 19122 {rgb=(.6 .4 .4)} Face 33553 901 904 19123 {rgb=(.6 .4 .4)} Face 33554 904 928 19123 {rgb=(.6 .4 .4)} Face 33555 928 933 19123 {rgb=(.6 .4 .4)} Face 33556 933 901 19123 {rgb=(.6 .4 .4)} Face 33557 900 901 19124 {rgb=(.6 .4 .4)} Face 33558 901 933 19124 {rgb=(.6 .4 .4)} Face 33559 933 919 19124 {rgb=(.6 .4 .4)} Face 33560 919 900 19124 {rgb=(.6 .4 .4)} Face 33561 881 840 19125 {rgb=(.6 .4 .4)} Face 33562 840 860 19125 {rgb=(.6 .4 .4)} Face 33563 860 901 19125 {rgb=(.6 .4 .4)} Face 33564 901 881 19125 {rgb=(.6 .4 .4)} Face 33565 886 881 19126 {rgb=(.6 .4 .4)} Face 33566 881 901 19126 {rgb=(.6 .4 .4)} Face 33567 901 900 19126 {rgb=(.6 .4 .4)} Face 33568 900 886 19126 {rgb=(.6 .4 .4)} Face 33569 832 886 19127 {rgb=(.6 .4 .4)} Face 33570 886 900 19127 {rgb=(.6 .4 .4)} Face 33571 900 854 19127 {rgb=(.6 .4 .4)} Face 33572 854 832 19127 {rgb=(.6 .4 .4)} Face 33573 763 832 19128 {rgb=(.6 .4 .4)} Face 33574 832 854 19128 {rgb=(.6 .4 .4)} Face 33575 854 807 19128 {rgb=(.6 .4 .4)} Face 33576 807 763 19128 {rgb=(.6 .4 .4)} Face 33577 869 868 19129 {rgb=(.6 .4 .4)} Face 33578 868 881 19129 {rgb=(.6 .4 .4)} Face 33579 881 886 19129 {rgb=(.6 .4 .4)} Face 33580 886 869 19129 {rgb=(.6 .4 .4)} Face 33581 827 869 19130 {rgb=(.6 .4 .4)} Face 33582 869 886 19130 {rgb=(.6 .4 .4)} Face 33583 886 832 19130 {rgb=(.6 .4 .4)} Face 33584 832 827 19130 {rgb=(.6 .4 .4)} Face 33585 750 827 19131 {rgb=(.6 .4 .4)} Face 33586 827 832 19131 {rgb=(.6 .4 .4)} Face 33587 832 763 19131 {rgb=(.6 .4 .4)} Face 33588 763 750 19131 {rgb=(.6 .4 .4)} Face 33589 868 828 19132 {rgb=(.6 .4 .4)} Face 33590 828 840 19132 {rgb=(.6 .4 .4)} Face 33591 840 881 19132 {rgb=(.6 .4 .4)} Face 33592 881 868 19132 {rgb=(.6 .4 .4)} Face 33593 748 823 19133 {rgb=(.6 .4 .4)} Face 33594 823 827 19133 {rgb=(.6 .4 .4)} Face 33595 827 750 19133 {rgb=(.6 .4 .4)} Face 33596 750 748 19133 {rgb=(.6 .4 .4)} Face 33597 826 773 19134 {rgb=(.6 .4 .4)} Face 33598 773 828 19134 {rgb=(.6 .4 .4)} Face 33599 828 868 19134 {rgb=(.6 .4 .4)} Face 33600 868 826 19134 {rgb=(.6 .4 .4)} Face 33601 848 826 19135 {rgb=(.6 .4 .4)} Face 33602 826 868 19135 {rgb=(.6 .4 .4)} Face 33603 868 869 19135 {rgb=(.6 .4 .4)} Face 33604 869 848 19135 {rgb=(.6 .4 .4)} Face 33605 823 848 19136 {rgb=(.6 .4 .4)} Face 33606 848 869 19136 {rgb=(.6 .4 .4)} Face 33607 869 827 19136 {rgb=(.6 .4 .4)} Face 33608 827 823 19136 {rgb=(.6 .4 .4)} Face 33609 754 696 19137 {rgb=(.6 .4 .4)} Face 33610 696 773 19137 {rgb=(.6 .4 .4)} Face 33611 773 826 19137 {rgb=(.6 .4 .4)} Face 33612 826 754 19137 {rgb=(.6 .4 .4)} Face 33613 800 754 19138 {rgb=(.6 .4 .4)} Face 33614 754 826 19138 {rgb=(.6 .4 .4)} Face 33615 826 848 19138 {rgb=(.6 .4 .4)} Face 33616 848 800 19138 {rgb=(.6 .4 .4)} Face 33617 783 800 19139 {rgb=(.6 .4 .4)} Face 33618 800 848 19139 {rgb=(.6 .4 .4)} Face 33619 848 823 19139 {rgb=(.6 .4 .4)} Face 33620 823 783 19139 {rgb=(.6 .4 .4)} Face 33621 700 783 19140 {rgb=(.6 .4 .4)} Face 33622 783 823 19140 {rgb=(.6 .4 .4)} Face 33623 823 748 19140 {rgb=(.6 .4 .4)} Face 33624 748 700 19140 {rgb=(.6 .4 .4)} Face 33625 768 756 19141 {rgb=(.6 .4 .4)} Face 33626 756 770 19141 {rgb=(.6 .4 .4)} Face 33627 770 725 19141 {rgb=(.6 .4 .4)} Face 33628 725 768 19141 {rgb=(.6 .4 .4)} Face 33629 671 768 19142 {rgb=(.6 .4 .4)} Face 33630 768 725 19142 {rgb=(.6 .4 .4)} Face 33631 725 645 19142 {rgb=(.6 .4 .4)} Face 33632 645 671 19142 {rgb=(.6 .4 .4)} Face 33633 640 457 19143 {rgb=(.6 .4 .4)} Face 33634 457 582 19143 {rgb=(.6 .4 .4)} Face 33635 582 695 19143 {rgb=(.6 .4 .4)} Face 33636 695 640 19143 {rgb=(.6 .4 .4)} Face 33637 756 640 19144 {rgb=(.6 .4 .4)} Face 33638 640 695 19144 {rgb=(.6 .4 .4)} Face 33639 695 770 19144 {rgb=(.6 .4 .4)} Face 33640 770 756 19144 {rgb=(.6 .4 .4)} Face 33641 526 356 19145 {rgb=(.6 .4 .4)} Face 33642 356 457 19145 {rgb=(.6 .4 .4)} Face 33643 457 640 19145 {rgb=(.6 .4 .4)} Face 33644 640 526 19145 {rgb=(.6 .4 .4)} Face 33645 723 526 19146 {rgb=(.6 .4 .4)} Face 33646 526 640 19146 {rgb=(.6 .4 .4)} Face 33647 640 756 19146 {rgb=(.6 .4 .4)} Face 33648 756 723 19146 {rgb=(.6 .4 .4)} Face 33649 745 723 19147 {rgb=(.6 .4 .4)} Face 33650 723 756 19147 {rgb=(.6 .4 .4)} Face 33651 756 768 19147 {rgb=(.6 .4 .4)} Face 33652 768 745 19147 {rgb=(.6 .4 .4)} Face 33653 626 745 19148 {rgb=(.6 .4 .4)} Face 33654 745 768 19148 {rgb=(.6 .4 .4)} Face 33655 768 671 19148 {rgb=(.6 .4 .4)} Face 33656 671 626 19148 {rgb=(.6 .4 .4)} Face 33657 39 9 19149 {rgb=(.6 .4 .4)} Face 33658 9 22 19149 {rgb=(.6 .4 .4)} Face 33659 22 87 19149 {rgb=(.6 .4 .4)} Face 33660 87 39 19149 {rgb=(.6 .4 .4)} Face 33661 27 39 19150 {rgb=(.6 .4 .4)} Face 33662 39 87 19150 {rgb=(.6 .4 .4)} Face 33663 87 74 19150 {rgb=(.6 .4 .4)} Face 33664 74 27 19150 {rgb=(.6 .4 .4)} Face 33665 312 161 19151 {rgb=(.6 .4 .4)} Face 33666 161 171 19151 {rgb=(.6 .4 .4)} Face 33667 171 244 19151 {rgb=(.6 .4 .4)} Face 33668 244 312 19151 {rgb=(.6 .4 .4)} Face 33669 591 222 19152 {rgb=(.6 .4 .4)} Face 33670 222 312 19152 {rgb=(.6 .4 .4)} Face 33671 312 573 19152 {rgb=(.6 .4 .4)} Face 33672 573 591 19152 {rgb=(.6 .4 .4)} Face 33673 762 591 19153 {rgb=(.6 .4 .4)} Face 33674 591 573 19153 {rgb=(.6 .4 .4)} Face 33675 573 780 19153 {rgb=(.6 .4 .4)} Face 33676 780 762 19153 {rgb=(.6 .4 .4)} Face 33677 909 865 19154 {rgb=(.6 .4 .4)} Face 33678 865 857 19154 {rgb=(.6 .4 .4)} Face 33679 857 867 19154 {rgb=(.6 .4 .4)} Face 33680 867 909 19154 {rgb=(.6 .4 .4)} Face 33681 863 909 19155 {rgb=(.6 .4 .4)} Face 33682 909 867 19155 {rgb=(.6 .4 .4)} Face 33683 867 829 19155 {rgb=(.6 .4 .4)} Face 33684 829 863 19155 {rgb=(.6 .4 .4)} Face 33685 31 12 19156 {rgb=(.6 .4 .4)} Face 33686 12 14 19156 {rgb=(.6 .4 .4)} Face 33687 14 110 19156 {rgb=(.6 .4 .4)} Face 33688 110 31 19156 {rgb=(.6 .4 .4)} Face 33689 22 9 19157 {rgb=(.6 .4 .4)} Face 33690 9 12 19157 {rgb=(.6 .4 .4)} Face 33691 12 31 19157 {rgb=(.6 .4 .4)} Face 33692 31 22 19157 {rgb=(.6 .4 .4)} Face 33693 761 863 19158 {rgb=(.6 .4 .4)} Face 33694 863 829 19158 {rgb=(.6 .4 .4)} Face 33695 829 738 19158 {rgb=(.6 .4 .4)} Face 33696 738 761 19158 {rgb=(.6 .4 .4)} Face 33697 12 4 19159 {rgb=(.6 .4 .4)} Face 33698 4 7 19159 {rgb=(.6 .4 .4)} Face 33699 7 14 19159 {rgb=(.6 .4 .4)} Face 33700 14 12 19159 {rgb=(.6 .4 .4)} Face 33701 5 4 19160 {rgb=(.6 .4 .4)} Face 33702 4 12 19160 {rgb=(.6 .4 .4)} Face 33703 12 9 19160 {rgb=(.6 .4 .4)} Face 33704 9 5 19160 {rgb=(.6 .4 .4)} Face 33705 8 5 19161 {rgb=(.6 .4 .4)} Face 33706 5 9 19161 {rgb=(.6 .4 .4)} Face 33707 9 39 19161 {rgb=(.6 .4 .4)} Face 33708 39 8 19161 {rgb=(.6 .4 .4)} Face 33709 13 8 19162 {rgb=(.6 .4 .4)} Face 33710 8 39 19162 {rgb=(.6 .4 .4)} Face 33711 39 27 19162 {rgb=(.6 .4 .4)} Face 33712 27 13 19162 {rgb=(.6 .4 .4)} Face 33713 83 13 19163 {rgb=(.6 .4 .4)} Face 33714 13 27 19163 {rgb=(.6 .4 .4)} Face 33715 27 141 19163 {rgb=(.6 .4 .4)} Face 33716 141 83 19163 {rgb=(.6 .4 .4)} Face 33717 83 141 19164 {rgb=(.6 .4 .4)} Face 33718 141 222 19164 {rgb=(.6 .4 .4)} Face 33719 222 213 19164 {rgb=(.6 .4 .4)} Face 33720 213 83 19164 {rgb=(.6 .4 .4)} Face 33721 762 752 19165 {rgb=(.6 .4 .4)} Face 33722 752 534 19165 {rgb=(.6 .4 .4)} Face 33723 534 591 19165 {rgb=(.6 .4 .4)} Face 33724 591 762 19165 {rgb=(.6 .4 .4)} Face 33725 591 534 19166 {rgb=(.6 .4 .4)} Face 33726 534 213 19166 {rgb=(.6 .4 .4)} Face 33727 213 222 19166 {rgb=(.6 .4 .4)} Face 33728 222 591 19166 {rgb=(.6 .4 .4)} Face 33729 846 752 19167 {rgb=(.6 .4 .4)} Face 33730 752 762 19167 {rgb=(.6 .4 .4)} Face 33731 762 865 19167 {rgb=(.6 .4 .4)} Face 33732 865 846 19167 {rgb=(.6 .4 .4)} Face 33733 909 885 19168 {rgb=(.6 .4 .4)} Face 33734 885 846 19168 {rgb=(.6 .4 .4)} Face 33735 846 865 19168 {rgb=(.6 .4 .4)} Face 33736 865 909 19168 {rgb=(.6 .4 .4)} Face 33737 863 842 19169 {rgb=(.6 .4 .4)} Face 33738 842 885 19169 {rgb=(.6 .4 .4)} Face 33739 885 909 19169 {rgb=(.6 .4 .4)} Face 33740 909 863 19169 {rgb=(.6 .4 .4)} Face 33741 761 772 19170 {rgb=(.6 .4 .4)} Face 33742 772 842 19170 {rgb=(.6 .4 .4)} Face 33743 842 863 19170 {rgb=(.6 .4 .4)} Face 33744 863 761 19170 {rgb=(.6 .4 .4)} Face 33745 154 37 19171 {rgb=(.6 .4 .4)} Face 33746 37 16 19171 {rgb=(.6 .4 .4)} Face 33747 16 162 19171 {rgb=(.6 .4 .4)} Face 33748 162 154 19171 {rgb=(.6 .4 .4)} Face 33749 761 464 19172 {rgb=(.6 .4 .4)} Face 33750 464 442 19172 {rgb=(.6 .4 .4)} Face 33751 442 772 19172 {rgb=(.6 .4 .4)} Face 33752 772 761 19172 {rgb=(.6 .4 .4)} Face 33753 154 162 19173 {rgb=(.6 .4 .4)} Face 33754 162 442 19173 {rgb=(.6 .4 .4)} Face 33755 442 464 19173 {rgb=(.6 .4 .4)} Face 33756 464 154 19173 {rgb=(.6 .4 .4)} Face 33757 175 183 19174 {rgb=(.6 .4 .4)} Face 33758 183 238 19174 {rgb=(.6 .4 .4)} Face 33759 238 218 19174 {rgb=(.6 .4 .4)} Face 33760 218 175 19174 {rgb=(.6 .4 .4)} Face 33761 159 146 19175 {rgb=(.6 .4 .4)} Face 33762 146 126 19175 {rgb=(.6 .4 .4)} Face 33763 126 114 19175 {rgb=(.6 .4 .4)} Face 33764 114 159 19175 {rgb=(.6 .4 .4)} Face 33765 149 183 19176 {rgb=(.6 .4 .4)} Face 33766 183 175 19176 {rgb=(.6 .4 .4)} Face 33767 175 140 19176 {rgb=(.6 .4 .4)} Face 33768 140 149 19176 {rgb=(.6 .4 .4)} Face 33769 149 140 19177 {rgb=(.6 .4 .4)} Face 33770 140 126 19177 {rgb=(.6 .4 .4)} Face 33771 126 146 19177 {rgb=(.6 .4 .4)} Face 33772 146 149 19177 {rgb=(.6 .4 .4)} Face 33773 674 737 19178 {rgb=(.6 .4 .4)} Face 33774 737 438 19178 {rgb=(.6 .4 .4)} Face 33775 438 275 19178 {rgb=(.6 .4 .4)} Face 33776 275 674 19178 {rgb=(.6 .4 .4)} Face 33777 866 802 19179 {rgb=(.6 .4 .4)} Face 33778 802 810 19179 {rgb=(.6 .4 .4)} Face 33779 810 871 19179 {rgb=(.6 .4 .4)} Face 33780 871 866 19179 {rgb=(.6 .4 .4)} Face 33781 802 674 19180 {rgb=(.6 .4 .4)} Face 33782 674 707 19180 {rgb=(.6 .4 .4)} Face 33783 707 810 19180 {rgb=(.6 .4 .4)} Face 33784 810 802 19180 {rgb=(.6 .4 .4)} Face 33785 961 874 19181 {rgb=(.6 .4 .4)} Face 33786 874 887 19181 {rgb=(.6 .4 .4)} Face 33787 887 970 19181 {rgb=(.6 .4 .4)} Face 33788 970 961 19181 {rgb=(.6 .4 .4)} Face 33789 874 623 19182 {rgb=(.6 .4 .4)} Face 33790 623 644 19182 {rgb=(.6 .4 .4)} Face 33791 644 887 19182 {rgb=(.6 .4 .4)} Face 33792 887 874 19182 {rgb=(.6 .4 .4)} Face 33793 76 129 19183 {rgb=(.6 .4 .4)} Face 33794 129 127 19183 {rgb=(.6 .4 .4)} Face 33795 127 80 19183 {rgb=(.6 .4 .4)} Face 33796 80 76 19183 {rgb=(.6 .4 .4)} Face 33797 196 127 19184 {rgb=(.6 .4 .4)} Face 33798 127 129 19184 {rgb=(.6 .4 .4)} Face 33799 129 194 19184 {rgb=(.6 .4 .4)} Face 33800 194 196 19184 {rgb=(.6 .4 .4)} Face 33801 623 381 19185 {rgb=(.6 .4 .4)} Face 33802 381 393 19185 {rgb=(.6 .4 .4)} Face 33803 393 644 19185 {rgb=(.6 .4 .4)} Face 33804 644 623 19185 {rgb=(.6 .4 .4)} Face 33805 238 269 19186 {rgb=(.6 .4 .4)} Face 33806 269 266 19186 {rgb=(.6 .4 .4)} Face 33807 266 218 19186 {rgb=(.6 .4 .4)} Face 33808 218 238 19186 {rgb=(.6 .4 .4)} Face 33809 269 451 19187 {rgb=(.6 .4 .4)} Face 33810 451 449 19187 {rgb=(.6 .4 .4)} Face 33811 449 266 19187 {rgb=(.6 .4 .4)} Face 33812 266 269 19187 {rgb=(.6 .4 .4)} Face 33813 821 948 19188 {rgb=(.6 .4 .4)} Face 33814 948 943 19188 {rgb=(.6 .4 .4)} Face 33815 943 815 19188 {rgb=(.6 .4 .4)} Face 33816 815 821 19188 {rgb=(.6 .4 .4)} Face 33817 196 194 19189 {rgb=(.6 .4 .4)} Face 33818 194 271 19189 {rgb=(.6 .4 .4)} Face 33819 271 270 19189 {rgb=(.6 .4 .4)} Face 33820 270 196 19189 {rgb=(.6 .4 .4)} Face 33821 667 676 19190 {rgb=(.6 .4 .4)} Face 33822 676 449 19190 {rgb=(.6 .4 .4)} Face 33823 449 451 19190 {rgb=(.6 .4 .4)} Face 33824 451 667 19190 {rgb=(.6 .4 .4)} Face 33825 676 667 19191 {rgb=(.6 .4 .4)} Face 33826 667 821 19191 {rgb=(.6 .4 .4)} Face 33827 821 815 19191 {rgb=(.6 .4 .4)} Face 33828 815 676 19191 {rgb=(.6 .4 .4)} Face 33829 1385 1333 19192 {rgb=(.6 .4 .4)} Face 33830 1333 1266 19192 {rgb=(.6 .4 .4)} Face 33831 1266 1364 19192 {rgb=(.6 .4 .4)} Face 33832 1364 1385 19192 {rgb=(.6 .4 .4)} Face 33833 1430 1385 19193 {rgb=(.6 .4 .4)} Face 33834 1385 1364 19193 {rgb=(.6 .4 .4)} Face 33835 1364 1411 19193 {rgb=(.6 .4 .4)} Face 33836 1411 1430 19193 {rgb=(.6 .4 .4)} Face 33837 1477 1430 19194 {rgb=(.6 .4 .4)} Face 33838 1430 1434 19194 {rgb=(.6 .4 .4)} Face 33839 1434 1445 19194 {rgb=(.6 .4 .4)} Face 33840 1445 1477 19194 {rgb=(.6 .4 .4)} Face 33841 1474 1477 19195 {rgb=(.6 .4 .4)} Face 33842 1477 1455 19195 {rgb=(.6 .4 .4)} Face 33843 1455 1454 19195 {rgb=(.6 .4 .4)} Face 33844 1454 1474 19195 {rgb=(.6 .4 .4)} Face 33845 1420 1474 19196 {rgb=(.6 .4 .4)} Face 33846 1474 1439 19196 {rgb=(.6 .4 .4)} Face 33847 1439 1423 19196 {rgb=(.6 .4 .4)} Face 33848 1423 1420 19196 {rgb=(.6 .4 .4)} Face 33849 1399 1420 19197 {rgb=(.6 .4 .4)} Face 33850 1420 1402 19197 {rgb=(.6 .4 .4)} Face 33851 1402 1349 19197 {rgb=(.6 .4 .4)} Face 33852 1349 1399 19197 {rgb=(.6 .4 .4)} Face 33853 1355 1399 19198 {rgb=(.6 .4 .4)} Face 33854 1399 1349 19198 {rgb=(.6 .4 .4)} Face 33855 1349 1291 19198 {rgb=(.6 .4 .4)} Face 33856 1291 1355 19198 {rgb=(.6 .4 .4)} Face 33857 1331 1355 19199 {rgb=(.6 .4 .4)} Face 33858 1355 1257 19199 {rgb=(.6 .4 .4)} Face 33859 1257 1198 19199 {rgb=(.6 .4 .4)} Face 33860 1198 1331 19199 {rgb=(.6 .4 .4)} Face 33861 1331 1198 19200 {rgb=(.6 .4 .4)} Face 33862 1198 1207 19200 {rgb=(.6 .4 .4)} Face 33863 1207 1333 19200 {rgb=(.6 .4 .4)} Face 33864 1333 1331 19200 {rgb=(.6 .4 .4)} Face 33865 1207 1198 19201 {rgb=(.6 .4 .4)} Face 33866 1198 1131 19201 {rgb=(.6 .4 .4)} Face 33867 1131 1223 19201 {rgb=(.6 .4 .4)} Face 33868 1223 1207 19201 {rgb=(.6 .4 .4)} Face 33869 1266 1207 19202 {rgb=(.6 .4 .4)} Face 33870 1207 1215 19202 {rgb=(.6 .4 .4)} Face 33871 1215 1220 19202 {rgb=(.6 .4 .4)} Face 33872 1220 1266 19202 {rgb=(.6 .4 .4)} Face 33873 1364 1266 19203 {rgb=(.6 .4 .4)} Face 33874 1266 1220 19203 {rgb=(.6 .4 .4)} Face 33875 1220 1268 19203 {rgb=(.6 .4 .4)} Face 33876 1268 1364 19203 {rgb=(.6 .4 .4)} Face 33877 1411 1364 19204 {rgb=(.6 .4 .4)} Face 33878 1364 1268 19204 {rgb=(.6 .4 .4)} Face 33879 1268 1318 19204 {rgb=(.6 .4 .4)} Face 33880 1318 1411 19204 {rgb=(.6 .4 .4)} Face 33881 1434 1411 19205 {rgb=(.6 .4 .4)} Face 33882 1411 1318 19205 {rgb=(.6 .4 .4)} Face 33883 1318 1288 19205 {rgb=(.6 .4 .4)} Face 33884 1288 1434 19205 {rgb=(.6 .4 .4)} Face 33885 1445 1434 19206 {rgb=(.6 .4 .4)} Face 33886 1434 1288 19206 {rgb=(.6 .4 .4)} Face 33887 1288 1308 19206 {rgb=(.6 .4 .4)} Face 33888 1308 1445 19206 {rgb=(.6 .4 .4)} Face 33889 1455 1445 19207 {rgb=(.6 .4 .4)} Face 33890 1445 1308 19207 {rgb=(.6 .4 .4)} Face 33891 1308 1314 19207 {rgb=(.6 .4 .4)} Face 33892 1314 1455 19207 {rgb=(.6 .4 .4)} Face 33893 1454 1455 19208 {rgb=(.6 .4 .4)} Face 33894 1455 1314 19208 {rgb=(.6 .4 .4)} Face 33895 1314 1313 19208 {rgb=(.6 .4 .4)} Face 33896 1313 1454 19208 {rgb=(.6 .4 .4)} Face 33897 1439 1454 19209 {rgb=(.6 .4 .4)} Face 33898 1454 1313 19209 {rgb=(.6 .4 .4)} Face 33899 1313 1303 19209 {rgb=(.6 .4 .4)} Face 33900 1303 1439 19209 {rgb=(.6 .4 .4)} Face 33901 1423 1439 19210 {rgb=(.6 .4 .4)} Face 33902 1439 1303 19210 {rgb=(.6 .4 .4)} Face 33903 1303 1279 19210 {rgb=(.6 .4 .4)} Face 33904 1279 1423 19210 {rgb=(.6 .4 .4)} Face 33905 1402 1423 19211 {rgb=(.6 .4 .4)} Face 33906 1423 1279 19211 {rgb=(.6 .4 .4)} Face 33907 1279 1301 19211 {rgb=(.6 .4 .4)} Face 33908 1301 1402 19211 {rgb=(.6 .4 .4)} Face 33909 1349 1402 19212 {rgb=(.6 .4 .4)} Face 33910 1402 1301 19212 {rgb=(.6 .4 .4)} Face 33911 1301 1249 19212 {rgb=(.6 .4 .4)} Face 33912 1249 1349 19212 {rgb=(.6 .4 .4)} Face 33913 1291 1349 19213 {rgb=(.6 .4 .4)} Face 33914 1349 1249 19213 {rgb=(.6 .4 .4)} Face 33915 1249 1189 19213 {rgb=(.6 .4 .4)} Face 33916 1189 1291 19213 {rgb=(.6 .4 .4)} Face 33917 1257 1291 19214 {rgb=(.6 .4 .4)} Face 33918 1291 1189 19214 {rgb=(.6 .4 .4)} Face 33919 1189 1190 19214 {rgb=(.6 .4 .4)} Face 33920 1190 1257 19214 {rgb=(.6 .4 .4)} Face 33921 1198 1257 19215 {rgb=(.6 .4 .4)} Face 33922 1257 1190 19215 {rgb=(.6 .4 .4)} Face 33923 1190 1154 19215 {rgb=(.6 .4 .4)} Face 33924 1154 1198 19215 {rgb=(.6 .4 .4)} Face 33925 1190 1189 19216 {rgb=(.6 .4 .4)} Face 33926 1189 937 19216 {rgb=(.6 .4 .4)} Face 33927 937 949 19216 {rgb=(.6 .4 .4)} Face 33928 949 1190 19216 {rgb=(.6 .4 .4)} Face 33929 943 1154 19217 {rgb=(.6 .4 .4)} Face 33930 1154 1190 19217 {rgb=(.6 .4 .4)} Face 33931 1190 949 19217 {rgb=(.6 .4 .4)} Face 33932 949 943 19217 {rgb=(.6 .4 .4)} Face 33933 1154 948 19218 {rgb=(.6 .4 .4)} Face 33934 948 988 19218 {rgb=(.6 .4 .4)} Face 33935 988 1046 19218 {rgb=(.6 .4 .4)} Face 33936 1046 1154 19218 {rgb=(.6 .4 .4)} Face 33937 1131 1046 19219 {rgb=(.6 .4 .4)} Face 33938 1046 988 19219 {rgb=(.6 .4 .4)} Face 33939 988 1152 19219 {rgb=(.6 .4 .4)} Face 33940 1152 1131 19219 {rgb=(.6 .4 .4)} Face 33941 1223 1131 19220 {rgb=(.6 .4 .4)} Face 33942 1131 1152 19220 {rgb=(.6 .4 .4)} Face 33943 1152 1231 19220 {rgb=(.6 .4 .4)} Face 33944 1231 1223 19220 {rgb=(.6 .4 .4)} Face 33945 1218 1223 19221 {rgb=(.6 .4 .4)} Face 33946 1223 1231 19221 {rgb=(.6 .4 .4)} Face 33947 1231 1117 19221 {rgb=(.6 .4 .4)} Face 33948 1117 1218 19221 {rgb=(.6 .4 .4)} Face 33949 1215 1218 19222 {rgb=(.6 .4 .4)} Face 33950 1218 1117 19222 {rgb=(.6 .4 .4)} Face 33951 1117 1018 19222 {rgb=(.6 .4 .4)} Face 33952 1018 1215 19222 {rgb=(.6 .4 .4)} Face 33953 1220 1215 19223 {rgb=(.6 .4 .4)} Face 33954 1215 1018 19223 {rgb=(.6 .4 .4)} Face 33955 1018 1001 19223 {rgb=(.6 .4 .4)} Face 33956 1001 1220 19223 {rgb=(.6 .4 .4)} Face 33957 1268 1220 19224 {rgb=(.6 .4 .4)} Face 33958 1220 1001 19224 {rgb=(.6 .4 .4)} Face 33959 1001 1088 19224 {rgb=(.6 .4 .4)} Face 33960 1088 1268 19224 {rgb=(.6 .4 .4)} Face 33961 1318 1268 19225 {rgb=(.6 .4 .4)} Face 33962 1268 1088 19225 {rgb=(.6 .4 .4)} Face 33963 1088 1087 19225 {rgb=(.6 .4 .4)} Face 33964 1087 1318 19225 {rgb=(.6 .4 .4)} Face 33965 1288 1318 19226 {rgb=(.6 .4 .4)} Face 33966 1318 1087 19226 {rgb=(.6 .4 .4)} Face 33967 1087 1089 19226 {rgb=(.6 .4 .4)} Face 33968 1089 1288 19226 {rgb=(.6 .4 .4)} Face 33969 1308 1288 19227 {rgb=(.6 .4 .4)} Face 33970 1288 1089 19227 {rgb=(.6 .4 .4)} Face 33971 1089 1073 19227 {rgb=(.6 .4 .4)} Face 33972 1073 1308 19227 {rgb=(.6 .4 .4)} Face 33973 1314 1308 19228 {rgb=(.6 .4 .4)} Face 33974 1308 1073 19228 {rgb=(.6 .4 .4)} Face 33975 1073 1072 19228 {rgb=(.6 .4 .4)} Face 33976 1072 1314 19228 {rgb=(.6 .4 .4)} Face 33977 1313 1314 19229 {rgb=(.6 .4 .4)} Face 33978 1314 1072 19229 {rgb=(.6 .4 .4)} Face 33979 1072 1093 19229 {rgb=(.6 .4 .4)} Face 33980 1093 1313 19229 {rgb=(.6 .4 .4)} Face 33981 1303 1313 19230 {rgb=(.6 .4 .4)} Face 33982 1313 1093 19230 {rgb=(.6 .4 .4)} Face 33983 1093 1058 19230 {rgb=(.6 .4 .4)} Face 33984 1058 1303 19230 {rgb=(.6 .4 .4)} Face 33985 1279 1303 19231 {rgb=(.6 .4 .4)} Face 33986 1303 1058 19231 {rgb=(.6 .4 .4)} Face 33987 1058 1021 19231 {rgb=(.6 .4 .4)} Face 33988 1021 1279 19231 {rgb=(.6 .4 .4)} Face 33989 1301 1279 19232 {rgb=(.6 .4 .4)} Face 33990 1279 1021 19232 {rgb=(.6 .4 .4)} Face 33991 1021 982 19232 {rgb=(.6 .4 .4)} Face 33992 982 1301 19232 {rgb=(.6 .4 .4)} Face 33993 1249 1301 19233 {rgb=(.6 .4 .4)} Face 33994 1301 982 19233 {rgb=(.6 .4 .4)} Face 33995 982 969 19233 {rgb=(.6 .4 .4)} Face 33996 969 1249 19233 {rgb=(.6 .4 .4)} Face 33997 1189 1249 19234 {rgb=(.6 .4 .4)} Face 33998 1249 969 19234 {rgb=(.6 .4 .4)} Face 33999 969 937 19234 {rgb=(.6 .4 .4)} Face 34000 937 1189 19234 {rgb=(.6 .4 .4)} Face 34001 1093 1072 19235 {rgb=(.6 .4 .4)} Face 34002 1072 938 19235 {rgb=(.6 .4 .4)} Face 34003 938 932 19235 {rgb=(.6 .4 .4)} Face 34004 932 1093 19235 {rgb=(.6 .4 .4)} Face 34005 913 890 19236 {rgb=(.6 .4 .4)} Face 34006 890 1058 19236 {rgb=(.6 .4 .4)} Face 34007 1058 1093 19236 {rgb=(.6 .4 .4)} Face 34008 1093 913 19236 {rgb=(.6 .4 .4)} Face 34009 615 663 19237 {rgb=(.6 .4 .4)} Face 34010 663 932 19237 {rgb=(.6 .4 .4)} Face 34011 932 938 19237 {rgb=(.6 .4 .4)} Face 34012 938 615 19237 {rgb=(.6 .4 .4)} Face 34013 663 765 19238 {rgb=(.6 .4 .4)} Face 34014 765 913 19238 {rgb=(.6 .4 .4)} Face 34015 913 932 19238 {rgb=(.6 .4 .4)} Face 34016 932 663 19238 {rgb=(.6 .4 .4)} Face 34017 596 749 19239 {rgb=(.6 .4 .4)} Face 34018 749 718 19239 {rgb=(.6 .4 .4)} Face 34019 718 558 19239 {rgb=(.6 .4 .4)} Face 34020 558 596 19239 {rgb=(.6 .4 .4)} Face 34021 931 1087 19240 {rgb=(.6 .4 .4)} Face 34022 1087 1088 19240 {rgb=(.6 .4 .4)} Face 34023 1088 922 19240 {rgb=(.6 .4 .4)} Face 34024 922 931 19240 {rgb=(.6 .4 .4)} Face 34025 837 931 19241 {rgb=(.6 .4 .4)} Face 34026 931 922 19241 {rgb=(.6 .4 .4)} Face 34027 922 692 19241 {rgb=(.6 .4 .4)} Face 34028 692 837 19241 {rgb=(.6 .4 .4)} Face 34029 1087 931 19242 {rgb=(.6 .4 .4)} Face 34030 931 925 19242 {rgb=(.6 .4 .4)} Face 34031 925 1089 19242 {rgb=(.6 .4 .4)} Face 34032 1089 1087 19242 {rgb=(.6 .4 .4)} Face 34033 746 837 19243 {rgb=(.6 .4 .4)} Face 34034 837 692 19243 {rgb=(.6 .4 .4)} Face 34035 692 544 19243 {rgb=(.6 .4 .4)} Face 34036 544 746 19243 {rgb=(.6 .4 .4)} Face 34037 844 925 19244 {rgb=(.6 .4 .4)} Face 34038 925 837 19244 {rgb=(.6 .4 .4)} Face 34039 837 746 19244 {rgb=(.6 .4 .4)} Face 34040 746 844 19244 {rgb=(.6 .4 .4)} Face 34041 266 203 19245 {rgb=(.6 .4 .4)} Face 34042 203 176 19245 {rgb=(.6 .4 .4)} Face 34043 176 218 19245 {rgb=(.6 .4 .4)} Face 34044 218 266 19245 {rgb=(.6 .4 .4)} Face 34045 203 165 19246 {rgb=(.6 .4 .4)} Face 34046 165 147 19246 {rgb=(.6 .4 .4)} Face 34047 147 176 19246 {rgb=(.6 .4 .4)} Face 34048 176 203 19246 {rgb=(.6 .4 .4)} Face 34049 925 942 19247 {rgb=(.6 .4 .4)} Face 34050 942 1073 19247 {rgb=(.6 .4 .4)} Face 34051 1073 1089 19247 {rgb=(.6 .4 .4)} Face 34052 1089 925 19247 {rgb=(.6 .4 .4)} Face 34053 844 613 19248 {rgb=(.6 .4 .4)} Face 34054 613 797 19248 {rgb=(.6 .4 .4)} Face 34055 797 942 19248 {rgb=(.6 .4 .4)} Face 34056 942 844 19248 {rgb=(.6 .4 .4)} Face 34057 746 332 19249 {rgb=(.6 .4 .4)} Face 34058 332 613 19249 {rgb=(.6 .4 .4)} Face 34059 613 844 19249 {rgb=(.6 .4 .4)} Face 34060 844 746 19249 {rgb=(.6 .4 .4)} Face 34061 544 205 19250 {rgb=(.6 .4 .4)} Face 34062 205 332 19250 {rgb=(.6 .4 .4)} Face 34063 332 746 19250 {rgb=(.6 .4 .4)} Face 34064 746 544 19250 {rgb=(.6 .4 .4)} Face 34065 202 332 19251 {rgb=(.6 .4 .4)} Face 34066 332 205 19251 {rgb=(.6 .4 .4)} Face 34067 205 139 19251 {rgb=(.6 .4 .4)} Face 34068 139 202 19251 {rgb=(.6 .4 .4)} Face 34069 329 613 19252 {rgb=(.6 .4 .4)} Face 34070 613 332 19252 {rgb=(.6 .4 .4)} Face 34071 332 202 19252 {rgb=(.6 .4 .4)} Face 34072 202 329 19252 {rgb=(.6 .4 .4)} Face 34073 329 615 19253 {rgb=(.6 .4 .4)} Face 34074 615 797 19253 {rgb=(.6 .4 .4)} Face 34075 797 613 19253 {rgb=(.6 .4 .4)} Face 34076 613 329 19253 {rgb=(.6 .4 .4)} Face 34077 295 663 19254 {rgb=(.6 .4 .4)} Face 34078 663 615 19254 {rgb=(.6 .4 .4)} Face 34079 615 292 19254 {rgb=(.6 .4 .4)} Face 34080 292 295 19254 {rgb=(.6 .4 .4)} Face 34081 382 765 19255 {rgb=(.6 .4 .4)} Face 34082 765 663 19255 {rgb=(.6 .4 .4)} Face 34083 663 295 19255 {rgb=(.6 .4 .4)} Face 34084 295 382 19255 {rgb=(.6 .4 .4)} Face 34085 712 890 19256 {rgb=(.6 .4 .4)} Face 34086 890 765 19256 {rgb=(.6 .4 .4)} Face 34087 765 382 19256 {rgb=(.6 .4 .4)} Face 34088 382 712 19256 {rgb=(.6 .4 .4)} Face 34089 982 1021 19257 {rgb=(.6 .4 .4)} Face 34090 1021 890 19257 {rgb=(.6 .4 .4)} Face 34091 890 858 19257 {rgb=(.6 .4 .4)} Face 34092 858 982 19257 {rgb=(.6 .4 .4)} Face 34093 858 819 19258 {rgb=(.6 .4 .4)} Face 34094 819 969 19258 {rgb=(.6 .4 .4)} Face 34095 969 982 19258 {rgb=(.6 .4 .4)} Face 34096 982 858 19258 {rgb=(.6 .4 .4)} Face 34097 712 595 19259 {rgb=(.6 .4 .4)} Face 34098 595 819 19259 {rgb=(.6 .4 .4)} Face 34099 819 858 19259 {rgb=(.6 .4 .4)} Face 34100 858 712 19259 {rgb=(.6 .4 .4)} Face 34101 382 220 19260 {rgb=(.6 .4 .4)} Face 34102 220 432 19260 {rgb=(.6 .4 .4)} Face 34103 432 712 19260 {rgb=(.6 .4 .4)} Face 34104 712 382 19260 {rgb=(.6 .4 .4)} Face 34105 295 173 19261 {rgb=(.6 .4 .4)} Face 34106 173 220 19261 {rgb=(.6 .4 .4)} Face 34107 220 382 19261 {rgb=(.6 .4 .4)} Face 34108 382 295 19261 {rgb=(.6 .4 .4)} Face 34109 292 166 19262 {rgb=(.6 .4 .4)} Face 34110 166 173 19262 {rgb=(.6 .4 .4)} Face 34111 173 295 19262 {rgb=(.6 .4 .4)} Face 34112 295 292 19262 {rgb=(.6 .4 .4)} Face 34113 202 166 19263 {rgb=(.6 .4 .4)} Face 34114 166 292 19263 {rgb=(.6 .4 .4)} Face 34115 292 329 19263 {rgb=(.6 .4 .4)} Face 34116 329 202 19263 {rgb=(.6 .4 .4)} Face 34117 135 166 19264 {rgb=(.6 .4 .4)} Face 34118 166 202 19264 {rgb=(.6 .4 .4)} Face 34119 202 139 19264 {rgb=(.6 .4 .4)} Face 34120 139 135 19264 {rgb=(.6 .4 .4)} Face 34121 143 173 19265 {rgb=(.6 .4 .4)} Face 34122 173 166 19265 {rgb=(.6 .4 .4)} Face 34123 166 135 19265 {rgb=(.6 .4 .4)} Face 34124 135 143 19265 {rgb=(.6 .4 .4)} Face 34125 187 220 19266 {rgb=(.6 .4 .4)} Face 34126 220 173 19266 {rgb=(.6 .4 .4)} Face 34127 173 143 19266 {rgb=(.6 .4 .4)} Face 34128 143 187 19266 {rgb=(.6 .4 .4)} Face 34129 179 187 19267 {rgb=(.6 .4 .4)} Face 34130 187 143 19267 {rgb=(.6 .4 .4)} Face 34131 143 117 19267 {rgb=(.6 .4 .4)} Face 34132 117 179 19267 {rgb=(.6 .4 .4)} Face 34133 293 187 19268 {rgb=(.6 .4 .4)} Face 34134 187 179 19268 {rgb=(.6 .4 .4)} Face 34135 179 265 19268 {rgb=(.6 .4 .4)} Face 34136 265 293 19268 {rgb=(.6 .4 .4)} Face 34137 293 432 19269 {rgb=(.6 .4 .4)} Face 34138 432 220 19269 {rgb=(.6 .4 .4)} Face 34139 220 187 19269 {rgb=(.6 .4 .4)} Face 34140 187 293 19269 {rgb=(.6 .4 .4)} Face 34141 293 535 19270 {rgb=(.6 .4 .4)} Face 34142 535 595 19270 {rgb=(.6 .4 .4)} Face 34143 595 432 19270 {rgb=(.6 .4 .4)} Face 34144 432 293 19270 {rgb=(.6 .4 .4)} Face 34145 530 535 19271 {rgb=(.6 .4 .4)} Face 34146 535 293 19271 {rgb=(.6 .4 .4)} Face 34147 293 265 19271 {rgb=(.6 .4 .4)} Face 34148 265 530 19271 {rgb=(.6 .4 .4)} Face 34149 809 535 19272 {rgb=(.6 .4 .4)} Face 34150 535 530 19272 {rgb=(.6 .4 .4)} Face 34151 530 812 19272 {rgb=(.6 .4 .4)} Face 34152 812 809 19272 {rgb=(.6 .4 .4)} Face 34153 809 819 19273 {rgb=(.6 .4 .4)} Face 34154 819 595 19273 {rgb=(.6 .4 .4)} Face 34155 595 535 19273 {rgb=(.6 .4 .4)} Face 34156 535 809 19273 {rgb=(.6 .4 .4)} Face 34157 809 937 19274 {rgb=(.6 .4 .4)} Face 34158 937 969 19274 {rgb=(.6 .4 .4)} Face 34159 969 819 19274 {rgb=(.6 .4 .4)} Face 34160 819 809 19274 {rgb=(.6 .4 .4)} Face 34161 812 949 19275 {rgb=(.6 .4 .4)} Face 34162 949 937 19275 {rgb=(.6 .4 .4)} Face 34163 937 809 19275 {rgb=(.6 .4 .4)} Face 34164 809 812 19275 {rgb=(.6 .4 .4)} Face 34165 812 815 19276 {rgb=(.6 .4 .4)} Face 34166 815 943 19276 {rgb=(.6 .4 .4)} Face 34167 943 949 19276 {rgb=(.6 .4 .4)} Face 34168 949 812 19276 {rgb=(.6 .4 .4)} Face 34169 530 676 19277 {rgb=(.6 .4 .4)} Face 34170 676 815 19277 {rgb=(.6 .4 .4)} Face 34171 815 812 19277 {rgb=(.6 .4 .4)} Face 34172 812 530 19277 {rgb=(.6 .4 .4)} Face 34173 265 203 19278 {rgb=(.6 .4 .4)} Face 34174 203 266 19278 {rgb=(.6 .4 .4)} Face 34175 266 449 19278 {rgb=(.6 .4 .4)} Face 34176 449 265 19278 {rgb=(.6 .4 .4)} Face 34177 179 165 19279 {rgb=(.6 .4 .4)} Face 34178 165 203 19279 {rgb=(.6 .4 .4)} Face 34179 203 265 19279 {rgb=(.6 .4 .4)} Face 34180 265 179 19279 {rgb=(.6 .4 .4)} Face 34181 117 106 19280 {rgb=(.6 .4 .4)} Face 34182 106 165 19280 {rgb=(.6 .4 .4)} Face 34183 165 179 19280 {rgb=(.6 .4 .4)} Face 34184 179 117 19280 {rgb=(.6 .4 .4)} Face 34185 961 1018 19281 {rgb=(.6 .4 .4)} Face 34186 1018 1117 19281 {rgb=(.6 .4 .4)} Face 34187 1117 1057 19281 {rgb=(.6 .4 .4)} Face 34188 1057 961 19281 {rgb=(.6 .4 .4)} Face 34189 1117 1121 19282 {rgb=(.6 .4 .4)} Face 34190 1121 1071 19282 {rgb=(.6 .4 .4)} Face 34191 1071 1057 19282 {rgb=(.6 .4 .4)} Face 34192 1057 1117 19282 {rgb=(.6 .4 .4)} Face 34193 1231 1199 19283 {rgb=(.6 .4 .4)} Face 34194 1199 1121 19283 {rgb=(.6 .4 .4)} Face 34195 1121 1117 19283 {rgb=(.6 .4 .4)} Face 34196 1117 1231 19283 {rgb=(.6 .4 .4)} Face 34197 857 856 19284 {rgb=(.6 .4 .4)} Face 34198 856 864 19284 {rgb=(.6 .4 .4)} Face 34199 864 867 19284 {rgb=(.6 .4 .4)} Face 34200 867 857 19284 {rgb=(.6 .4 .4)} Face 34201 872 850 19285 {rgb=(.6 .4 .4)} Face 34202 850 916 19285 {rgb=(.6 .4 .4)} Face 34203 916 920 19285 {rgb=(.6 .4 .4)} Face 34204 920 872 19285 {rgb=(.6 .4 .4)} Face 34205 796 852 19286 {rgb=(.6 .4 .4)} Face 34206 852 816 19286 {rgb=(.6 .4 .4)} Face 34207 816 781 19286 {rgb=(.6 .4 .4)} Face 34208 781 796 19286 {rgb=(.6 .4 .4)} Face 34209 834 940 19287 {rgb=(.6 .4 .4)} Face 34210 940 852 19287 {rgb=(.6 .4 .4)} Face 34211 852 796 19287 {rgb=(.6 .4 .4)} Face 34212 796 834 19287 {rgb=(.6 .4 .4)} Face 34213 960 940 19288 {rgb=(.6 .4 .4)} Face 34214 940 834 19288 {rgb=(.6 .4 .4)} Face 34215 834 849 19288 {rgb=(.6 .4 .4)} Face 34216 849 960 19288 {rgb=(.6 .4 .4)} Face 34217 993 940 19289 {rgb=(.6 .4 .4)} Face 34218 940 960 19289 {rgb=(.6 .4 .4)} Face 34219 960 1071 19289 {rgb=(.6 .4 .4)} Face 34220 1071 993 19289 {rgb=(.6 .4 .4)} Face 34221 993 916 19290 {rgb=(.6 .4 .4)} Face 34222 916 852 19290 {rgb=(.6 .4 .4)} Face 34223 852 940 19290 {rgb=(.6 .4 .4)} Face 34224 940 993 19290 {rgb=(.6 .4 .4)} Face 34225 850 816 19291 {rgb=(.6 .4 .4)} Face 34226 816 852 19291 {rgb=(.6 .4 .4)} Face 34227 852 916 19291 {rgb=(.6 .4 .4)} Face 34228 916 850 19291 {rgb=(.6 .4 .4)} Face 34229 113 117 19292 {rgb=(.6 .4 .4)} Face 34230 117 143 19292 {rgb=(.6 .4 .4)} Face 34231 143 135 19292 {rgb=(.6 .4 .4)} Face 34232 135 113 19292 {rgb=(.6 .4 .4)} Face 34233 139 125 19293 {rgb=(.6 .4 .4)} Face 34234 125 113 19293 {rgb=(.6 .4 .4)} Face 34235 113 135 19293 {rgb=(.6 .4 .4)} Face 34236 135 139 19293 {rgb=(.6 .4 .4)} Face 34237 169 125 19294 {rgb=(.6 .4 .4)} Face 34238 125 139 19294 {rgb=(.6 .4 .4)} Face 34239 139 205 19294 {rgb=(.6 .4 .4)} Face 34240 205 169 19294 {rgb=(.6 .4 .4)} Face 34241 151 101 19295 {rgb=(.6 .4 .4)} Face 34242 101 125 19295 {rgb=(.6 .4 .4)} Face 34243 125 169 19295 {rgb=(.6 .4 .4)} Face 34244 169 151 19295 {rgb=(.6 .4 .4)} Face 34245 144 102 19296 {rgb=(.6 .4 .4)} Face 34246 102 101 19296 {rgb=(.6 .4 .4)} Face 34247 101 151 19296 {rgb=(.6 .4 .4)} Face 34248 151 144 19296 {rgb=(.6 .4 .4)} Face 34249 132 98 19297 {rgb=(.6 .4 .4)} Face 34250 98 102 19297 {rgb=(.6 .4 .4)} Face 34251 102 144 19297 {rgb=(.6 .4 .4)} Face 34252 144 132 19297 {rgb=(.6 .4 .4)} Face 34253 147 108 19298 {rgb=(.6 .4 .4)} Face 34254 108 98 19298 {rgb=(.6 .4 .4)} Face 34255 98 132 19298 {rgb=(.6 .4 .4)} Face 34256 132 147 19298 {rgb=(.6 .4 .4)} Face 34257 147 165 19299 {rgb=(.6 .4 .4)} Face 34258 165 106 19299 {rgb=(.6 .4 .4)} Face 34259 106 108 19299 {rgb=(.6 .4 .4)} Face 34260 108 147 19299 {rgb=(.6 .4 .4)} Face 34261 176 158 19300 {rgb=(.6 .4 .4)} Face 34262 158 157 19300 {rgb=(.6 .4 .4)} Face 34263 157 218 19300 {rgb=(.6 .4 .4)} Face 34264 218 176 19300 {rgb=(.6 .4 .4)} Face 34265 132 158 19301 {rgb=(.6 .4 .4)} Face 34266 158 176 19301 {rgb=(.6 .4 .4)} Face 34267 176 147 19301 {rgb=(.6 .4 .4)} Face 34268 147 132 19301 {rgb=(.6 .4 .4)} Face 34269 144 201 19302 {rgb=(.6 .4 .4)} Face 34270 201 158 19302 {rgb=(.6 .4 .4)} Face 34271 158 132 19302 {rgb=(.6 .4 .4)} Face 34272 132 144 19302 {rgb=(.6 .4 .4)} Face 34273 151 267 19303 {rgb=(.6 .4 .4)} Face 34274 267 201 19303 {rgb=(.6 .4 .4)} Face 34275 201 144 19303 {rgb=(.6 .4 .4)} Face 34276 144 151 19303 {rgb=(.6 .4 .4)} Face 34277 169 389 19304 {rgb=(.6 .4 .4)} Face 34278 389 267 19304 {rgb=(.6 .4 .4)} Face 34279 267 151 19304 {rgb=(.6 .4 .4)} Face 34280 151 169 19304 {rgb=(.6 .4 .4)} Face 34281 544 389 19305 {rgb=(.6 .4 .4)} Face 34282 389 169 19305 {rgb=(.6 .4 .4)} Face 34283 169 205 19305 {rgb=(.6 .4 .4)} Face 34284 205 544 19305 {rgb=(.6 .4 .4)} Face 34285 692 657 19306 {rgb=(.6 .4 .4)} Face 34286 657 389 19306 {rgb=(.6 .4 .4)} Face 34287 389 544 19306 {rgb=(.6 .4 .4)} Face 34288 544 692 19306 {rgb=(.6 .4 .4)} Face 34289 922 889 19307 {rgb=(.6 .4 .4)} Face 34290 889 657 19307 {rgb=(.6 .4 .4)} Face 34291 657 692 19307 {rgb=(.6 .4 .4)} Face 34292 692 922 19307 {rgb=(.6 .4 .4)} Face 34293 1001 889 19308 {rgb=(.6 .4 .4)} Face 34294 889 922 19308 {rgb=(.6 .4 .4)} Face 34295 922 1088 19308 {rgb=(.6 .4 .4)} Face 34296 1088 1001 19308 {rgb=(.6 .4 .4)} Face 34297 887 889 19309 {rgb=(.6 .4 .4)} Face 34298 889 1001 19309 {rgb=(.6 .4 .4)} Face 34299 1001 970 19309 {rgb=(.6 .4 .4)} Face 34300 970 887 19309 {rgb=(.6 .4 .4)} Face 34301 644 657 19310 {rgb=(.6 .4 .4)} Face 34302 657 889 19310 {rgb=(.6 .4 .4)} Face 34303 889 887 19310 {rgb=(.6 .4 .4)} Face 34304 887 644 19310 {rgb=(.6 .4 .4)} Face 34305 657 644 19311 {rgb=(.6 .4 .4)} Face 34306 644 393 19311 {rgb=(.6 .4 .4)} Face 34307 393 389 19311 {rgb=(.6 .4 .4)} Face 34308 389 657 19311 {rgb=(.6 .4 .4)} Face 34309 623 564 19312 {rgb=(.6 .4 .4)} Face 34310 564 349 19312 {rgb=(.6 .4 .4)} Face 34311 349 381 19312 {rgb=(.6 .4 .4)} Face 34312 381 623 19312 {rgb=(.6 .4 .4)} Face 34313 473 261 19313 {rgb=(.6 .4 .4)} Face 34314 261 349 19313 {rgb=(.6 .4 .4)} Face 34315 349 564 19313 {rgb=(.6 .4 .4)} Face 34316 564 473 19313 {rgb=(.6 .4 .4)} Face 34317 817 739 19314 {rgb=(.6 .4 .4)} Face 34318 739 473 19314 {rgb=(.6 .4 .4)} Face 34319 473 564 19314 {rgb=(.6 .4 .4)} Face 34320 564 817 19314 {rgb=(.6 .4 .4)} Face 34321 874 817 19315 {rgb=(.6 .4 .4)} Face 34322 817 564 19315 {rgb=(.6 .4 .4)} Face 34323 564 623 19315 {rgb=(.6 .4 .4)} Face 34324 623 874 19315 {rgb=(.6 .4 .4)} Face 34325 895 960 19316 {rgb=(.6 .4 .4)} Face 34326 960 849 19316 {rgb=(.6 .4 .4)} Face 34327 849 836 19316 {rgb=(.6 .4 .4)} Face 34328 836 895 19316 {rgb=(.6 .4 .4)} Face 34329 960 895 19317 {rgb=(.6 .4 .4)} Face 34330 895 1057 19317 {rgb=(.6 .4 .4)} Face 34331 1057 1071 19317 {rgb=(.6 .4 .4)} Face 34332 1071 960 19317 {rgb=(.6 .4 .4)} Face 34333 895 817 19318 {rgb=(.6 .4 .4)} Face 34334 817 874 19318 {rgb=(.6 .4 .4)} Face 34335 874 961 19318 {rgb=(.6 .4 .4)} Face 34336 961 895 19318 {rgb=(.6 .4 .4)} Face 34337 836 739 19319 {rgb=(.6 .4 .4)} Face 34338 739 817 19319 {rgb=(.6 .4 .4)} Face 34339 817 895 19319 {rgb=(.6 .4 .4)} Face 34340 895 836 19319 {rgb=(.6 .4 .4)} Face 34341 655 739 19320 {rgb=(.6 .4 .4)} Face 34342 739 836 19320 {rgb=(.6 .4 .4)} Face 34343 836 776 19320 {rgb=(.6 .4 .4)} Face 34344 776 655 19320 {rgb=(.6 .4 .4)} Face 34345 749 596 19321 {rgb=(.6 .4 .4)} Face 34346 596 655 19321 {rgb=(.6 .4 .4)} Face 34347 655 776 19321 {rgb=(.6 .4 .4)} Face 34348 776 749 19321 {rgb=(.6 .4 .4)} Face 34349 796 718 19322 {rgb=(.6 .4 .4)} Face 34350 718 749 19322 {rgb=(.6 .4 .4)} Face 34351 749 834 19322 {rgb=(.6 .4 .4)} Face 34352 834 796 19322 {rgb=(.6 .4 .4)} Face 34353 693 718 19323 {rgb=(.6 .4 .4)} Face 34354 718 796 19323 {rgb=(.6 .4 .4)} Face 34355 796 781 19323 {rgb=(.6 .4 .4)} Face 34356 781 693 19323 {rgb=(.6 .4 .4)} Face 34357 519 558 19324 {rgb=(.6 .4 .4)} Face 34358 558 718 19324 {rgb=(.6 .4 .4)} Face 34359 718 693 19324 {rgb=(.6 .4 .4)} Face 34360 693 519 19324 {rgb=(.6 .4 .4)} Face 34361 313 369 19325 {rgb=(.6 .4 .4)} Face 34362 369 558 19325 {rgb=(.6 .4 .4)} Face 34363 558 519 19325 {rgb=(.6 .4 .4)} Face 34364 519 313 19325 {rgb=(.6 .4 .4)} Face 34365 361 596 19326 {rgb=(.6 .4 .4)} Face 34366 596 558 19326 {rgb=(.6 .4 .4)} Face 34367 558 369 19326 {rgb=(.6 .4 .4)} Face 34368 369 361 19326 {rgb=(.6 .4 .4)} Face 34369 370 655 19327 {rgb=(.6 .4 .4)} Face 34370 655 596 19327 {rgb=(.6 .4 .4)} Face 34371 596 361 19327 {rgb=(.6 .4 .4)} Face 34372 361 370 19327 {rgb=(.6 .4 .4)} Face 34373 369 215 19328 {rgb=(.6 .4 .4)} Face 34374 215 206 19328 {rgb=(.6 .4 .4)} Face 34375 206 361 19328 {rgb=(.6 .4 .4)} Face 34376 361 369 19328 {rgb=(.6 .4 .4)} Face 34377 197 215 19329 {rgb=(.6 .4 .4)} Face 34378 215 369 19329 {rgb=(.6 .4 .4)} Face 34379 369 264 19329 {rgb=(.6 .4 .4)} Face 34380 264 197 19329 {rgb=(.6 .4 .4)} Face 34381 119 215 19330 {rgb=(.6 .4 .4)} Face 34382 215 197 19330 {rgb=(.6 .4 .4)} Face 34383 197 97 19330 {rgb=(.6 .4 .4)} Face 34384 97 119 19330 {rgb=(.6 .4 .4)} Face 34385 93 206 19331 {rgb=(.6 .4 .4)} Face 34386 206 215 19331 {rgb=(.6 .4 .4)} Face 34387 215 119 19331 {rgb=(.6 .4 .4)} Face 34388 119 93 19331 {rgb=(.6 .4 .4)} Face 34389 206 211 19332 {rgb=(.6 .4 .4)} Face 34390 211 370 19332 {rgb=(.6 .4 .4)} Face 34391 370 361 19332 {rgb=(.6 .4 .4)} Face 34392 361 206 19332 {rgb=(.6 .4 .4)} Face 34393 739 655 19333 {rgb=(.6 .4 .4)} Face 34394 655 370 19333 {rgb=(.6 .4 .4)} Face 34395 370 473 19333 {rgb=(.6 .4 .4)} Face 34396 473 739 19333 {rgb=(.6 .4 .4)} Face 34397 473 370 19334 {rgb=(.6 .4 .4)} Face 34398 370 211 19334 {rgb=(.6 .4 .4)} Face 34399 211 261 19334 {rgb=(.6 .4 .4)} Face 34400 261 473 19334 {rgb=(.6 .4 .4)} Face 34401 211 206 19335 {rgb=(.6 .4 .4)} Face 34402 206 93 19335 {rgb=(.6 .4 .4)} Face 34403 93 136 19335 {rgb=(.6 .4 .4)} Face 34404 136 211 19335 {rgb=(.6 .4 .4)} Face 34405 178 184 19336 {rgb=(.6 .4 .4)} Face 34406 184 136 19336 {rgb=(.6 .4 .4)} Face 34407 136 99 19336 {rgb=(.6 .4 .4)} Face 34408 99 178 19336 {rgb=(.6 .4 .4)} Face 34409 196 270 19337 {rgb=(.6 .4 .4)} Face 34410 270 255 19337 {rgb=(.6 .4 .4)} Face 34411 255 178 19337 {rgb=(.6 .4 .4)} Face 34412 178 196 19337 {rgb=(.6 .4 .4)} Face 34413 194 201 19338 {rgb=(.6 .4 .4)} Face 34414 201 267 19338 {rgb=(.6 .4 .4)} Face 34415 267 271 19338 {rgb=(.6 .4 .4)} Face 34416 271 194 19338 {rgb=(.6 .4 .4)} Face 34417 157 158 19339 {rgb=(.6 .4 .4)} Face 34418 158 201 19339 {rgb=(.6 .4 .4)} Face 34419 201 194 19339 {rgb=(.6 .4 .4)} Face 34420 194 157 19339 {rgb=(.6 .4 .4)} Face 34421 194 129 19340 {rgb=(.6 .4 .4)} Face 34422 129 130 19340 {rgb=(.6 .4 .4)} Face 34423 130 157 19340 {rgb=(.6 .4 .4)} Face 34424 157 194 19340 {rgb=(.6 .4 .4)} Face 34425 99 127 19341 {rgb=(.6 .4 .4)} Face 34426 127 196 19341 {rgb=(.6 .4 .4)} Face 34427 196 178 19341 {rgb=(.6 .4 .4)} Face 34428 178 99 19341 {rgb=(.6 .4 .4)} Face 34429 99 136 19342 {rgb=(.6 .4 .4)} Face 34430 136 93 19342 {rgb=(.6 .4 .4)} Face 34431 93 88 19342 {rgb=(.6 .4 .4)} Face 34432 88 99 19342 {rgb=(.6 .4 .4)} Face 34433 76 75 19343 {rgb=(.6 .4 .4)} Face 34434 75 130 19343 {rgb=(.6 .4 .4)} Face 34435 130 129 19343 {rgb=(.6 .4 .4)} Face 34436 129 76 19343 {rgb=(.6 .4 .4)} Face 34437 44 28 19344 {rgb=(.6 .4 .4)} Face 34438 28 22 19344 {rgb=(.6 .4 .4)} Face 34439 22 31 19344 {rgb=(.6 .4 .4)} Face 34440 31 44 19344 {rgb=(.6 .4 .4)} Face 34441 33 75 19345 {rgb=(.6 .4 .4)} Face 34442 75 76 19345 {rgb=(.6 .4 .4)} Face 34443 76 53 19345 {rgb=(.6 .4 .4)} Face 34444 53 33 19345 {rgb=(.6 .4 .4)} Face 34445 88 93 19346 {rgb=(.6 .4 .4)} Face 34446 93 119 19346 {rgb=(.6 .4 .4)} Face 34447 119 60 19346 {rgb=(.6 .4 .4)} Face 34448 60 88 19346 {rgb=(.6 .4 .4)} Face 34449 119 97 19347 {rgb=(.6 .4 .4)} Face 34450 97 46 19347 {rgb=(.6 .4 .4)} Face 34451 46 60 19347 {rgb=(.6 .4 .4)} Face 34452 60 119 19347 {rgb=(.6 .4 .4)} Face 34453 97 91 19348 {rgb=(.6 .4 .4)} Face 34454 91 57 19348 {rgb=(.6 .4 .4)} Face 34455 57 46 19348 {rgb=(.6 .4 .4)} Face 34456 46 97 19348 {rgb=(.6 .4 .4)} Face 34457 46 49 19349 {rgb=(.6 .4 .4)} Face 34458 49 53 19349 {rgb=(.6 .4 .4)} Face 34459 53 60 19349 {rgb=(.6 .4 .4)} Face 34460 60 46 19349 {rgb=(.6 .4 .4)} Face 34461 53 49 19350 {rgb=(.6 .4 .4)} Face 34462 49 26 19350 {rgb=(.6 .4 .4)} Face 34463 26 33 19350 {rgb=(.6 .4 .4)} Face 34464 33 53 19350 {rgb=(.6 .4 .4)} Face 34465 44 89 19351 {rgb=(.6 .4 .4)} Face 34466 89 73 19351 {rgb=(.6 .4 .4)} Face 34467 73 26 19351 {rgb=(.6 .4 .4)} Face 34468 26 44 19351 {rgb=(.6 .4 .4)} Face 34469 140 75 19352 {rgb=(.6 .4 .4)} Face 34470 75 33 19352 {rgb=(.6 .4 .4)} Face 34471 33 126 19352 {rgb=(.6 .4 .4)} Face 34472 126 140 19352 {rgb=(.6 .4 .4)} Face 34473 175 130 19353 {rgb=(.6 .4 .4)} Face 34474 130 75 19353 {rgb=(.6 .4 .4)} Face 34475 75 140 19353 {rgb=(.6 .4 .4)} Face 34476 140 175 19353 {rgb=(.6 .4 .4)} Face 34477 175 218 19354 {rgb=(.6 .4 .4)} Face 34478 218 157 19354 {rgb=(.6 .4 .4)} Face 34479 157 130 19354 {rgb=(.6 .4 .4)} Face 34480 130 175 19354 {rgb=(.6 .4 .4)} Face 34481 189 183 19355 {rgb=(.6 .4 .4)} Face 34482 183 149 19355 {rgb=(.6 .4 .4)} Face 34483 149 128 19355 {rgb=(.6 .4 .4)} Face 34484 128 189 19355 {rgb=(.6 .4 .4)} Face 34485 233 238 19356 {rgb=(.6 .4 .4)} Face 34486 238 183 19356 {rgb=(.6 .4 .4)} Face 34487 183 189 19356 {rgb=(.6 .4 .4)} Face 34488 189 233 19356 {rgb=(.6 .4 .4)} Face 34489 233 318 19357 {rgb=(.6 .4 .4)} Face 34490 318 451 19357 {rgb=(.6 .4 .4)} Face 34491 451 269 19357 {rgb=(.6 .4 .4)} Face 34492 269 233 19357 {rgb=(.6 .4 .4)} Face 34493 189 245 19358 {rgb=(.6 .4 .4)} Face 34494 245 318 19358 {rgb=(.6 .4 .4)} Face 34495 318 233 19358 {rgb=(.6 .4 .4)} Face 34496 233 189 19358 {rgb=(.6 .4 .4)} Face 34497 128 185 19359 {rgb=(.6 .4 .4)} Face 34498 185 245 19359 {rgb=(.6 .4 .4)} Face 34499 245 189 19359 {rgb=(.6 .4 .4)} Face 34500 189 128 19359 {rgb=(.6 .4 .4)} Face 34501 128 134 19360 {rgb=(.6 .4 .4)} Face 34502 134 164 19360 {rgb=(.6 .4 .4)} Face 34503 164 185 19360 {rgb=(.6 .4 .4)} Face 34504 185 128 19360 {rgb=(.6 .4 .4)} Face 34505 149 146 19361 {rgb=(.6 .4 .4)} Face 34506 146 134 19361 {rgb=(.6 .4 .4)} Face 34507 134 128 19361 {rgb=(.6 .4 .4)} Face 34508 128 149 19361 {rgb=(.6 .4 .4)} Face 34509 26 73 19362 {rgb=(.6 .4 .4)} Face 34510 73 126 19362 {rgb=(.6 .4 .4)} Face 34511 126 33 19362 {rgb=(.6 .4 .4)} Face 34512 33 26 19362 {rgb=(.6 .4 .4)} Face 34513 180 134 19363 {rgb=(.6 .4 .4)} Face 34514 134 146 19363 {rgb=(.6 .4 .4)} Face 34515 146 159 19363 {rgb=(.6 .4 .4)} Face 34516 159 180 19363 {rgb=(.6 .4 .4)} Face 34517 214 164 19364 {rgb=(.6 .4 .4)} Face 34518 164 134 19364 {rgb=(.6 .4 .4)} Face 34519 134 180 19364 {rgb=(.6 .4 .4)} Face 34520 180 214 19364 {rgb=(.6 .4 .4)} Face 34521 376 164 19365 {rgb=(.6 .4 .4)} Face 34522 164 214 19365 {rgb=(.6 .4 .4)} Face 34523 214 426 19365 {rgb=(.6 .4 .4)} Face 34524 426 376 19365 {rgb=(.6 .4 .4)} Face 34525 394 185 19366 {rgb=(.6 .4 .4)} Face 34526 185 164 19366 {rgb=(.6 .4 .4)} Face 34527 164 376 19366 {rgb=(.6 .4 .4)} Face 34528 376 394 19366 {rgb=(.6 .4 .4)} Face 34529 539 245 19367 {rgb=(.6 .4 .4)} Face 34530 245 185 19367 {rgb=(.6 .4 .4)} Face 34531 185 394 19367 {rgb=(.6 .4 .4)} Face 34532 394 539 19367 {rgb=(.6 .4 .4)} Face 34533 612 318 19368 {rgb=(.6 .4 .4)} Face 34534 318 245 19368 {rgb=(.6 .4 .4)} Face 34535 245 539 19368 {rgb=(.6 .4 .4)} Face 34536 539 612 19368 {rgb=(.6 .4 .4)} Face 34537 612 667 19369 {rgb=(.6 .4 .4)} Face 34538 667 451 19369 {rgb=(.6 .4 .4)} Face 34539 451 318 19369 {rgb=(.6 .4 .4)} Face 34540 318 612 19369 {rgb=(.6 .4 .4)} Face 34541 1199 1080 19370 {rgb=(.6 .4 .4)} Face 34542 1080 1028 19370 {rgb=(.6 .4 .4)} Face 34543 1028 1121 19370 {rgb=(.6 .4 .4)} Face 34544 1121 1199 19370 {rgb=(.6 .4 .4)} Face 34545 1080 945 19371 {rgb=(.6 .4 .4)} Face 34546 945 920 19371 {rgb=(.6 .4 .4)} Face 34547 920 1028 19371 {rgb=(.6 .4 .4)} Face 34548 1028 1080 19371 {rgb=(.6 .4 .4)} Face 34549 915 872 19372 {rgb=(.6 .4 .4)} Face 34550 872 920 19372 {rgb=(.6 .4 .4)} Face 34551 920 945 19372 {rgb=(.6 .4 .4)} Face 34552 945 915 19372 {rgb=(.6 .4 .4)} Face 34553 864 856 19373 {rgb=(.6 .4 .4)} Face 34554 856 872 19373 {rgb=(.6 .4 .4)} Face 34555 872 915 19373 {rgb=(.6 .4 .4)} Face 34556 915 864 19373 {rgb=(.6 .4 .4)} Face 34557 915 882 19374 {rgb=(.6 .4 .4)} Face 34558 882 814 19374 {rgb=(.6 .4 .4)} Face 34559 814 864 19374 {rgb=(.6 .4 .4)} Face 34560 864 915 19374 {rgb=(.6 .4 .4)} Face 34561 945 930 19375 {rgb=(.6 .4 .4)} Face 34562 930 882 19375 {rgb=(.6 .4 .4)} Face 34563 882 915 19375 {rgb=(.6 .4 .4)} Face 34564 915 945 19375 {rgb=(.6 .4 .4)} Face 34565 1080 1067 19376 {rgb=(.6 .4 .4)} Face 34566 1067 930 19376 {rgb=(.6 .4 .4)} Face 34567 930 945 19376 {rgb=(.6 .4 .4)} Face 34568 945 1080 19376 {rgb=(.6 .4 .4)} Face 34569 1199 1137 19377 {rgb=(.6 .4 .4)} Face 34570 1137 1067 19377 {rgb=(.6 .4 .4)} Face 34571 1067 1080 19377 {rgb=(.6 .4 .4)} Face 34572 1080 1199 19377 {rgb=(.6 .4 .4)} Face 34573 1152 1137 19378 {rgb=(.6 .4 .4)} Face 34574 1137 1199 19378 {rgb=(.6 .4 .4)} Face 34575 1199 1231 19378 {rgb=(.6 .4 .4)} Face 34576 1231 1152 19378 {rgb=(.6 .4 .4)} Face 34577 1044 1137 19379 {rgb=(.6 .4 .4)} Face 34578 1137 1152 19379 {rgb=(.6 .4 .4)} Face 34579 1152 988 19379 {rgb=(.6 .4 .4)} Face 34580 988 1044 19379 {rgb=(.6 .4 .4)} Face 34581 1044 976 19380 {rgb=(.6 .4 .4)} Face 34582 976 1067 19380 {rgb=(.6 .4 .4)} Face 34583 1067 1137 19380 {rgb=(.6 .4 .4)} Face 34584 1137 1044 19380 {rgb=(.6 .4 .4)} Face 34585 954 952 19381 {rgb=(.6 .4 .4)} Face 34586 952 946 19381 {rgb=(.6 .4 .4)} Face 34587 946 967 19381 {rgb=(.6 .4 .4)} Face 34588 967 954 19381 {rgb=(.6 .4 .4)} Face 34589 941 896 19382 {rgb=(.6 .4 .4)} Face 34590 896 954 19382 {rgb=(.6 .4 .4)} Face 34591 954 967 19382 {rgb=(.6 .4 .4)} Face 34592 967 941 19382 {rgb=(.6 .4 .4)} Face 34593 941 948 19383 {rgb=(.6 .4 .4)} Face 34594 948 821 19383 {rgb=(.6 .4 .4)} Face 34595 821 896 19383 {rgb=(.6 .4 .4)} Face 34596 896 941 19383 {rgb=(.6 .4 .4)} Face 34597 788 898 19384 {rgb=(.6 .4 .4)} Face 34598 898 899 19384 {rgb=(.6 .4 .4)} Face 34599 899 791 19384 {rgb=(.6 .4 .4)} Face 34600 791 788 19384 {rgb=(.6 .4 .4)} Face 34601 954 899 19385 {rgb=(.6 .4 .4)} Face 34602 899 898 19385 {rgb=(.6 .4 .4)} Face 34603 898 952 19385 {rgb=(.6 .4 .4)} Face 34604 952 954 19385 {rgb=(.6 .4 .4)} Face 34605 896 821 19386 {rgb=(.6 .4 .4)} Face 34606 821 791 19386 {rgb=(.6 .4 .4)} Face 34607 791 899 19386 {rgb=(.6 .4 .4)} Face 34608 899 896 19386 {rgb=(.6 .4 .4)} Face 34609 612 791 19387 {rgb=(.6 .4 .4)} Face 34610 791 821 19387 {rgb=(.6 .4 .4)} Face 34611 821 667 19387 {rgb=(.6 .4 .4)} Face 34612 667 612 19387 {rgb=(.6 .4 .4)} Face 34613 539 788 19388 {rgb=(.6 .4 .4)} Face 34614 788 791 19388 {rgb=(.6 .4 .4)} Face 34615 791 612 19388 {rgb=(.6 .4 .4)} Face 34616 612 539 19388 {rgb=(.6 .4 .4)} Face 34617 394 758 19389 {rgb=(.6 .4 .4)} Face 34618 758 788 19389 {rgb=(.6 .4 .4)} Face 34619 788 539 19389 {rgb=(.6 .4 .4)} Face 34620 539 394 19389 {rgb=(.6 .4 .4)} Face 34621 376 698 19390 {rgb=(.6 .4 .4)} Face 34622 698 758 19390 {rgb=(.6 .4 .4)} Face 34623 758 394 19390 {rgb=(.6 .4 .4)} Face 34624 394 376 19390 {rgb=(.6 .4 .4)} Face 34625 813 698 19391 {rgb=(.6 .4 .4)} Face 34626 698 575 19391 {rgb=(.6 .4 .4)} Face 34627 575 710 19391 {rgb=(.6 .4 .4)} Face 34628 710 813 19391 {rgb=(.6 .4 .4)} Face 34629 861 758 19392 {rgb=(.6 .4 .4)} Face 34630 758 698 19392 {rgb=(.6 .4 .4)} Face 34631 698 813 19392 {rgb=(.6 .4 .4)} Face 34632 813 861 19392 {rgb=(.6 .4 .4)} Face 34633 861 898 19393 {rgb=(.6 .4 .4)} Face 34634 898 788 19393 {rgb=(.6 .4 .4)} Face 34635 788 758 19393 {rgb=(.6 .4 .4)} Face 34636 758 861 19393 {rgb=(.6 .4 .4)} Face 34637 914 952 19394 {rgb=(.6 .4 .4)} Face 34638 952 898 19394 {rgb=(.6 .4 .4)} Face 34639 898 861 19394 {rgb=(.6 .4 .4)} Face 34640 861 914 19394 {rgb=(.6 .4 .4)} Face 34641 866 946 19395 {rgb=(.6 .4 .4)} Face 34642 946 952 19395 {rgb=(.6 .4 .4)} Face 34643 952 914 19395 {rgb=(.6 .4 .4)} Face 34644 914 866 19395 {rgb=(.6 .4 .4)} Face 34645 871 930 19396 {rgb=(.6 .4 .4)} Face 34646 930 1067 19396 {rgb=(.6 .4 .4)} Face 34647 1067 976 19396 {rgb=(.6 .4 .4)} Face 34648 976 871 19396 {rgb=(.6 .4 .4)} Face 34649 810 882 19397 {rgb=(.6 .4 .4)} Face 34650 882 930 19397 {rgb=(.6 .4 .4)} Face 34651 930 871 19397 {rgb=(.6 .4 .4)} Face 34652 871 810 19397 {rgb=(.6 .4 .4)} Face 34653 810 707 19398 {rgb=(.6 .4 .4)} Face 34654 707 814 19398 {rgb=(.6 .4 .4)} Face 34655 814 882 19398 {rgb=(.6 .4 .4)} Face 34656 882 810 19398 {rgb=(.6 .4 .4)} Face 34657 802 855 19399 {rgb=(.6 .4 .4)} Face 34658 855 737 19399 {rgb=(.6 .4 .4)} Face 34659 737 674 19399 {rgb=(.6 .4 .4)} Face 34660 674 802 19399 {rgb=(.6 .4 .4)} Face 34661 914 855 19400 {rgb=(.6 .4 .4)} Face 34662 855 802 19400 {rgb=(.6 .4 .4)} Face 34663 802 866 19400 {rgb=(.6 .4 .4)} Face 34664 866 914 19400 {rgb=(.6 .4 .4)} Face 34665 813 855 19401 {rgb=(.6 .4 .4)} Face 34666 855 914 19401 {rgb=(.6 .4 .4)} Face 34667 914 861 19401 {rgb=(.6 .4 .4)} Face 34668 861 813 19401 {rgb=(.6 .4 .4)} Face 34669 710 737 19402 {rgb=(.6 .4 .4)} Face 34670 737 855 19402 {rgb=(.6 .4 .4)} Face 34671 855 813 19402 {rgb=(.6 .4 .4)} Face 34672 813 710 19402 {rgb=(.6 .4 .4)} Face 34673 737 710 19403 {rgb=(.6 .4 .4)} Face 34674 710 575 19403 {rgb=(.6 .4 .4)} Face 34675 575 438 19403 {rgb=(.6 .4 .4)} Face 34676 438 737 19403 {rgb=(.6 .4 .4)} Face 34677 177 275 19404 {rgb=(.6 .4 .4)} Face 34678 275 180 19404 {rgb=(.6 .4 .4)} Face 34679 180 133 19404 {rgb=(.6 .4 .4)} Face 34680 133 177 19404 {rgb=(.6 .4 .4)} Face 34681 438 214 19405 {rgb=(.6 .4 .4)} Face 34682 214 180 19405 {rgb=(.6 .4 .4)} Face 34683 180 275 19405 {rgb=(.6 .4 .4)} Face 34684 275 438 19405 {rgb=(.6 .4 .4)} Face 34685 575 426 19406 {rgb=(.6 .4 .4)} Face 34686 426 214 19406 {rgb=(.6 .4 .4)} Face 34687 214 438 19406 {rgb=(.6 .4 .4)} Face 34688 438 575 19406 {rgb=(.6 .4 .4)} Face 34689 575 698 19407 {rgb=(.6 .4 .4)} Face 34690 698 376 19407 {rgb=(.6 .4 .4)} Face 34691 376 426 19407 {rgb=(.6 .4 .4)} Face 34692 426 575 19407 {rgb=(.6 .4 .4)} Face 34693 171 197 19408 {rgb=(.6 .4 .4)} Face 34694 197 264 19408 {rgb=(.6 .4 .4)} Face 34695 264 244 19408 {rgb=(.6 .4 .4)} Face 34696 244 171 19408 {rgb=(.6 .4 .4)} Face 34697 161 74 19409 {rgb=(.6 .4 .4)} Face 34698 74 91 19409 {rgb=(.6 .4 .4)} Face 34699 91 171 19409 {rgb=(.6 .4 .4)} Face 34700 171 161 19409 {rgb=(.6 .4 .4)} Face 34701 74 87 19410 {rgb=(.6 .4 .4)} Face 34702 87 57 19410 {rgb=(.6 .4 .4)} Face 34703 57 91 19410 {rgb=(.6 .4 .4)} Face 34704 91 74 19410 {rgb=(.6 .4 .4)} Face 34705 22 28 19411 {rgb=(.6 .4 .4)} Face 34706 28 57 19411 {rgb=(.6 .4 .4)} Face 34707 57 87 19411 {rgb=(.6 .4 .4)} Face 34708 87 22 19411 {rgb=(.6 .4 .4)} Face 34709 681 693 19412 {rgb=(.6 .4 .4)} Face 34710 693 781 19412 {rgb=(.6 .4 .4)} Face 34711 781 764 19412 {rgb=(.6 .4 .4)} Face 34712 764 681 19412 {rgb=(.6 .4 .4)} Face 34713 681 470 19413 {rgb=(.6 .4 .4)} Face 34714 470 519 19413 {rgb=(.6 .4 .4)} Face 34715 519 693 19413 {rgb=(.6 .4 .4)} Face 34716 693 681 19413 {rgb=(.6 .4 .4)} Face 34717 624 484 19414 {rgb=(.6 .4 .4)} Face 34718 484 470 19414 {rgb=(.6 .4 .4)} Face 34719 470 681 19414 {rgb=(.6 .4 .4)} Face 34720 681 624 19414 {rgb=(.6 .4 .4)} Face 34721 764 719 19415 {rgb=(.6 .4 .4)} Face 34722 719 624 19415 {rgb=(.6 .4 .4)} Face 34723 624 681 19415 {rgb=(.6 .4 .4)} Face 34724 681 764 19415 {rgb=(.6 .4 .4)} Face 34725 470 284 19416 {rgb=(.6 .4 .4)} Face 34726 284 313 19416 {rgb=(.6 .4 .4)} Face 34727 313 519 19416 {rgb=(.6 .4 .4)} Face 34728 519 470 19416 {rgb=(.6 .4 .4)} Face 34729 484 359 19417 {rgb=(.6 .4 .4)} Face 34730 359 284 19417 {rgb=(.6 .4 .4)} Face 34731 284 470 19417 {rgb=(.6 .4 .4)} Face 34732 470 484 19417 {rgb=(.6 .4 .4)} Face 34733 598 359 19418 {rgb=(.6 .4 .4)} Face 34734 359 484 19418 {rgb=(.6 .4 .4)} Face 34735 484 624 19418 {rgb=(.6 .4 .4)} Face 34736 624 598 19418 {rgb=(.6 .4 .4)} Face 34737 753 598 19419 {rgb=(.6 .4 .4)} Face 34738 598 624 19419 {rgb=(.6 .4 .4)} Face 34739 624 719 19419 {rgb=(.6 .4 .4)} Face 34740 719 753 19419 {rgb=(.6 .4 .4)} Face 34741 799 764 19420 {rgb=(.6 .4 .4)} Face 34742 764 781 19420 {rgb=(.6 .4 .4)} Face 34743 781 816 19420 {rgb=(.6 .4 .4)} Face 34744 816 799 19420 {rgb=(.6 .4 .4)} Face 34745 799 753 19421 {rgb=(.6 .4 .4)} Face 34746 753 719 19421 {rgb=(.6 .4 .4)} Face 34747 719 764 19421 {rgb=(.6 .4 .4)} Face 34748 764 799 19421 {rgb=(.6 .4 .4)} Face 34749 818 856 19422 {rgb=(.6 .4 .4)} Face 34750 856 857 19422 {rgb=(.6 .4 .4)} Face 34751 857 780 19422 {rgb=(.6 .4 .4)} Face 34752 780 818 19422 {rgb=(.6 .4 .4)} Face 34753 707 738 19423 {rgb=(.6 .4 .4)} Face 34754 738 829 19423 {rgb=(.6 .4 .4)} Face 34755 829 814 19423 {rgb=(.6 .4 .4)} Face 34756 814 707 19423 {rgb=(.6 .4 .4)} Face 34757 814 829 19424 {rgb=(.6 .4 .4)} Face 34758 829 867 19424 {rgb=(.6 .4 .4)} Face 34759 867 864 19424 {rgb=(.6 .4 .4)} Face 34760 864 814 19424 {rgb=(.6 .4 .4)} Face 34761 674 275 19425 {rgb=(.6 .4 .4)} Face 34762 275 177 19425 {rgb=(.6 .4 .4)} Face 34763 177 550 19425 {rgb=(.6 .4 .4)} Face 34764 550 674 19425 {rgb=(.6 .4 .4)} Face 34765 114 73 19426 {rgb=(.6 .4 .4)} Face 34766 73 89 19426 {rgb=(.6 .4 .4)} Face 34767 89 133 19426 {rgb=(.6 .4 .4)} Face 34768 133 114 19426 {rgb=(.6 .4 .4)} Face 34769 9993 9963 19427 {rgb=(.2 .2 .2)} Face 34770 9963 10009 19427 {rgb=(.2 .2 .2)} Face 34771 10009 10055 19427 {rgb=(.2 .2 .2)} Face 34772 10055 9993 19427 {rgb=(.2 .2 .2)} Face 34773 9879 9867 19428 {rgb=(.2 .2 .2)} Face 34774 9867 9963 19428 {rgb=(.2 .2 .2)} Face 34775 9963 9993 19428 {rgb=(.2 .2 .2)} Face 34776 9993 9879 19428 {rgb=(.2 .2 .2)} Face 34777 9598 9602 19429 {rgb=(.2 .2 .2)} Face 34778 9602 9867 19429 {rgb=(.2 .2 .2)} Face 34779 9867 9879 19429 {rgb=(.2 .2 .2)} Face 34780 9879 9598 19429 {rgb=(.2 .2 .2)} Face 34781 9500 9526 19430 {rgb=(.2 .2 .2)} Face 34782 9526 9602 19430 {rgb=(.2 .2 .2)} Face 34783 9602 9598 19430 {rgb=(.2 .2 .2)} Face 34784 9598 9500 19430 {rgb=(.2 .2 .2)} Face 34785 9437 9492 19431 {rgb=(.2 .2 .2)} Face 34786 9492 9526 19431 {rgb=(.2 .2 .2)} Face 34787 9526 9500 19431 {rgb=(.2 .2 .2)} Face 34788 9500 9437 19431 {rgb=(.2 .2 .2)} Face 34789 9432 9488 19432 {rgb=(.2 .2 .2)} Face 34790 9488 9492 19432 {rgb=(.2 .2 .2)} Face 34791 9492 9437 19432 {rgb=(.2 .2 .2)} Face 34792 9437 9432 19432 {rgb=(.2 .2 .2)} Face 34793 9431 9478 19433 {rgb=(.2 .2 .2)} Face 34794 9478 9488 19433 {rgb=(.2 .2 .2)} Face 34795 9488 9432 19433 {rgb=(.2 .2 .2)} Face 34796 9432 9431 19433 {rgb=(.2 .2 .2)} Face 34797 10040 10043 19434 {rgb=(.2 .2 .2)} Face 34798 10043 9461 19434 {rgb=(.2 .2 .2)} Face 34799 9461 9460 19434 {rgb=(.2 .2 .2)} Face 34800 9460 10040 19434 {rgb=(.2 .2 .2)} Face 34801 10082 10028 19435 {rgb=(.2 .2 .2)} Face 34802 10028 10029 19435 {rgb=(.2 .2 .2)} Face 34803 10029 10080 19435 {rgb=(.2 .2 .2)} Face 34804 10080 10082 19435 {rgb=(.2 .2 .2)} Face 34805 10055 10009 19436 {rgb=(.2 .2 .2)} Face 34806 10009 10028 19436 {rgb=(.2 .2 .2)} Face 34807 10028 10082 19436 {rgb=(.2 .2 .2)} Face 34808 10082 10055 19436 {rgb=(.2 .2 .2)} Face 34809 10111 10079 19437 {rgb=(.2 .2 .2)} Face 34810 10079 10074 19437 {rgb=(.2 .2 .2)} Face 34811 10074 10110 19437 {rgb=(.2 .2 .2)} Face 34812 10110 10111 19437 {rgb=(.2 .2 .2)} Face 34813 9511 9512 19438 {rgb=(.2 .2 .2)} Face 34814 9512 10090 19438 {rgb=(.2 .2 .2)} Face 34815 10090 10088 19438 {rgb=(.2 .2 .2)} Face 34816 10088 9511 19438 {rgb=(.2 .2 .2)} Face 34817 9483 9528 19439 {rgb=(.2 .2 .2)} Face 34818 9528 9525 19439 {rgb=(.2 .2 .2)} Face 34819 9525 9477 19439 {rgb=(.2 .2 .2)} Face 34820 9477 9483 19439 {rgb=(.2 .2 .2)} Face 34821 9486 9524 19440 {rgb=(.2 .2 .2)} Face 34822 9524 9528 19440 {rgb=(.2 .2 .2)} Face 34823 9528 9483 19440 {rgb=(.2 .2 .2)} Face 34824 9483 9486 19440 {rgb=(.2 .2 .2)} Face 34825 9552 9567 19441 {rgb=(.2 .2 .2)} Face 34826 9567 9524 19441 {rgb=(.2 .2 .2)} Face 34827 9524 9486 19441 {rgb=(.2 .2 .2)} Face 34828 9486 9552 19441 {rgb=(.2 .2 .2)} Face 34829 9675 9679 19442 {rgb=(.2 .2 .2)} Face 34830 9679 9567 19442 {rgb=(.2 .2 .2)} Face 34831 9567 9552 19442 {rgb=(.2 .2 .2)} Face 34832 9552 9675 19442 {rgb=(.2 .2 .2)} Face 34833 9925 9910 19443 {rgb=(.2 .2 .2)} Face 34834 9910 9679 19443 {rgb=(.2 .2 .2)} Face 34835 9679 9675 19443 {rgb=(.2 .2 .2)} Face 34836 9675 9925 19443 {rgb=(.2 .2 .2)} Face 34837 10030 9997 19444 {rgb=(.2 .2 .2)} Face 34838 9997 9910 19444 {rgb=(.2 .2 .2)} Face 34839 9910 9925 19444 {rgb=(.2 .2 .2)} Face 34840 9925 10030 19444 {rgb=(.2 .2 .2)} Face 34841 10094 10050 19445 {rgb=(.2 .2 .2)} Face 34842 10050 9997 19445 {rgb=(.2 .2 .2)} Face 34843 9997 10030 19445 {rgb=(.2 .2 .2)} Face 34844 10030 10094 19445 {rgb=(.2 .2 .2)} Face 34845 10110 10074 19446 {rgb=(.2 .2 .2)} Face 34846 10074 10050 19446 {rgb=(.2 .2 .2)} Face 34847 10050 10094 19446 {rgb=(.2 .2 .2)} Face 34848 10094 10110 19446 {rgb=(.2 .2 .2)} Face 34849 9455 9447 19447 {rgb=(.2 .2 .2)} Face 34850 9447 9713 19447 {rgb=(.2 .2 .2)} Face 34851 9713 9765 19447 {rgb=(.2 .2 .2)} Face 34852 9765 9455 19447 {rgb=(.2 .2 .2)} Face 34853 9379 9396 19448 {rgb=(.2 .2 .2)} Face 34854 9396 9447 19448 {rgb=(.2 .2 .2)} Face 34855 9447 9455 19448 {rgb=(.2 .2 .2)} Face 34856 9455 9379 19448 {rgb=(.2 .2 .2)} Face 34857 9247 9343 19449 {rgb=(.2 .2 .2)} Face 34858 9343 9396 19449 {rgb=(.2 .2 .2)} Face 34859 9396 9379 19449 {rgb=(.2 .2 .2)} Face 34860 9379 9247 19449 {rgb=(.2 .2 .2)} Face 34861 8571 9020 19450 {rgb=(.2 .2 .2)} Face 34862 9020 9343 19450 {rgb=(.2 .2 .2)} Face 34863 9343 9247 19450 {rgb=(.2 .2 .2)} Face 34864 9247 8571 19450 {rgb=(.2 .2 .2)} Face 34865 8528 8962 19451 {rgb=(.2 .2 .2)} Face 34866 8962 9020 19451 {rgb=(.2 .2 .2)} Face 34867 9020 8571 19451 {rgb=(.2 .2 .2)} Face 34868 8571 8528 19451 {rgb=(.2 .2 .2)} Face 34869 9283 9359 19452 {rgb=(.2 .2 .2)} Face 34870 9359 8962 19452 {rgb=(.2 .2 .2)} Face 34871 8962 8528 19452 {rgb=(.2 .2 .2)} Face 34872 8528 9283 19452 {rgb=(.2 .2 .2)} Face 34873 9434 9430 19453 {rgb=(.2 .2 .2)} Face 34874 9430 9359 19453 {rgb=(.2 .2 .2)} Face 34875 9359 9283 19453 {rgb=(.2 .2 .2)} Face 34876 9283 9434 19453 {rgb=(.2 .2 .2)} Face 34877 9587 9556 19454 {rgb=(.2 .2 .2)} Face 34878 9556 9430 19454 {rgb=(.2 .2 .2)} Face 34879 9430 9434 19454 {rgb=(.2 .2 .2)} Face 34880 9434 9587 19454 {rgb=(.2 .2 .2)} Face 34881 9778 9716 19455 {rgb=(.2 .2 .2)} Face 34882 9716 9556 19455 {rgb=(.2 .2 .2)} Face 34883 9556 9587 19455 {rgb=(.2 .2 .2)} Face 34884 9587 9778 19455 {rgb=(.2 .2 .2)} Face 34885 9807 9740 19456 {rgb=(.2 .2 .2)} Face 34886 9740 9716 19456 {rgb=(.2 .2 .2)} Face 34887 9716 9778 19456 {rgb=(.2 .2 .2)} Face 34888 9778 9807 19456 {rgb=(.2 .2 .2)} Face 34889 9832 9775 19457 {rgb=(.2 .2 .2)} Face 34890 9775 9740 19457 {rgb=(.2 .2 .2)} Face 34891 9740 9807 19457 {rgb=(.2 .2 .2)} Face 34892 9807 9832 19457 {rgb=(.2 .2 .2)} Face 34893 9765 9713 19458 {rgb=(.2 .2 .2)} Face 34894 9713 9775 19458 {rgb=(.2 .2 .2)} Face 34895 9775 9832 19458 {rgb=(.2 .2 .2)} Face 34896 9832 9765 19458 {rgb=(.2 .2 .2)} Face 34897 8555 9000 19459 {rgb=(.2 .2 .2)} Face 34898 9000 8648 19459 {rgb=(.2 .2 .2)} Face 34899 8648 8325 19459 {rgb=(.2 .2 .2)} Face 34900 8325 8555 19459 {rgb=(.2 .2 .2)} Face 34901 8553 8895 19460 {rgb=(.2 .2 .2)} Face 34902 8895 9000 19460 {rgb=(.2 .2 .2)} Face 34903 9000 8555 19460 {rgb=(.2 .2 .2)} Face 34904 8555 8553 19460 {rgb=(.2 .2 .2)} Face 34905 8832 9165 19461 {rgb=(.2 .2 .2)} Face 34906 9165 8895 19461 {rgb=(.2 .2 .2)} Face 34907 8895 8553 19461 {rgb=(.2 .2 .2)} Face 34908 8553 8832 19461 {rgb=(.2 .2 .2)} Face 34909 9653 9626 19462 {rgb=(.2 .2 .2)} Face 34910 9626 9165 19462 {rgb=(.2 .2 .2)} Face 34911 9165 8832 19462 {rgb=(.2 .2 .2)} Face 34912 8832 9653 19462 {rgb=(.2 .2 .2)} Face 34913 9692 9633 19463 {rgb=(.2 .2 .2)} Face 34914 9633 9626 19463 {rgb=(.2 .2 .2)} Face 34915 9626 9653 19463 {rgb=(.2 .2 .2)} Face 34916 9653 9692 19463 {rgb=(.2 .2 .2)} Face 34917 9693 9632 19464 {rgb=(.2 .2 .2)} Face 34918 9632 9633 19464 {rgb=(.2 .2 .2)} Face 34919 9633 9692 19464 {rgb=(.2 .2 .2)} Face 34920 9692 9693 19464 {rgb=(.2 .2 .2)} Face 34921 9733 9680 19465 {rgb=(.2 .2 .2)} Face 34922 9680 9632 19465 {rgb=(.2 .2 .2)} Face 34923 9632 9693 19465 {rgb=(.2 .2 .2)} Face 34924 9693 9733 19465 {rgb=(.2 .2 .2)} Face 34925 9753 9695 19466 {rgb=(.2 .2 .2)} Face 34926 9695 9680 19466 {rgb=(.2 .2 .2)} Face 34927 9680 9733 19466 {rgb=(.2 .2 .2)} Face 34928 9733 9753 19466 {rgb=(.2 .2 .2)} Face 34929 9562 9542 19467 {rgb=(.2 .2 .2)} Face 34930 9542 9695 19467 {rgb=(.2 .2 .2)} Face 34931 9695 9753 19467 {rgb=(.2 .2 .2)} Face 34932 9753 9562 19467 {rgb=(.2 .2 .2)} Face 34933 9422 9417 19468 {rgb=(.2 .2 .2)} Face 34934 9417 9542 19468 {rgb=(.2 .2 .2)} Face 34935 9542 9562 19468 {rgb=(.2 .2 .2)} Face 34936 9562 9422 19468 {rgb=(.2 .2 .2)} Face 34937 9131 9338 19469 {rgb=(.2 .2 .2)} Face 34938 9338 9417 19469 {rgb=(.2 .2 .2)} Face 34939 9417 9422 19469 {rgb=(.2 .2 .2)} Face 34940 9422 9131 19469 {rgb=(.2 .2 .2)} Face 34941 8428 8812 19470 {rgb=(.2 .2 .2)} Face 34942 8812 9338 19470 {rgb=(.2 .2 .2)} Face 34943 9338 9131 19470 {rgb=(.2 .2 .2)} Face 34944 9131 8428 19470 {rgb=(.2 .2 .2)} Face 34945 8359 8736 19471 {rgb=(.2 .2 .2)} Face 34946 8736 8812 19471 {rgb=(.2 .2 .2)} Face 34947 8812 8428 19471 {rgb=(.2 .2 .2)} Face 34948 8428 8359 19471 {rgb=(.2 .2 .2)} Face 34949 8325 8648 19472 {rgb=(.2 .2 .2)} Face 34950 8648 8736 19472 {rgb=(.2 .2 .2)} Face 34951 8736 8359 19472 {rgb=(.2 .2 .2)} Face 34952 8359 8325 19472 {rgb=(.2 .2 .2)} Face 34953 9030 9333 19473 {rgb=(.2 .2 .2)} Face 34954 9333 9271 19473 {rgb=(.2 .2 .2)} Face 34955 9271 8855 19473 {rgb=(.2 .2 .2)} Face 34956 8855 9030 19473 {rgb=(.2 .2 .2)} Face 34957 9346 9376 19474 {rgb=(.2 .2 .2)} Face 34958 9376 9333 19474 {rgb=(.2 .2 .2)} Face 34959 9333 9030 19474 {rgb=(.2 .2 .2)} Face 34960 9030 9346 19474 {rgb=(.2 .2 .2)} Face 34961 9397 9408 19475 {rgb=(.2 .2 .2)} Face 34962 9408 9376 19475 {rgb=(.2 .2 .2)} Face 34963 9376 9346 19475 {rgb=(.2 .2 .2)} Face 34964 9346 9397 19475 {rgb=(.2 .2 .2)} Face 34965 9462 9456 19476 {rgb=(.2 .2 .2)} Face 34966 9456 9408 19476 {rgb=(.2 .2 .2)} Face 34967 9408 9397 19476 {rgb=(.2 .2 .2)} Face 34968 9397 9462 19476 {rgb=(.2 .2 .2)} Face 34969 9794 9741 19477 {rgb=(.2 .2 .2)} Face 34970 9741 9456 19477 {rgb=(.2 .2 .2)} Face 34971 9456 9462 19477 {rgb=(.2 .2 .2)} Face 34972 9462 9794 19477 {rgb=(.2 .2 .2)} Face 34973 9887 9839 19478 {rgb=(.2 .2 .2)} Face 34974 9839 9741 19478 {rgb=(.2 .2 .2)} Face 34975 9741 9794 19478 {rgb=(.2 .2 .2)} Face 34976 9794 9887 19478 {rgb=(.2 .2 .2)} Face 34977 9857 9803 19479 {rgb=(.2 .2 .2)} Face 34978 9803 9839 19479 {rgb=(.2 .2 .2)} Face 34979 9839 9887 19479 {rgb=(.2 .2 .2)} Face 34980 9887 9857 19479 {rgb=(.2 .2 .2)} Face 34981 9854 9806 19480 {rgb=(.2 .2 .2)} Face 34982 9806 9803 19480 {rgb=(.2 .2 .2)} Face 34983 9803 9857 19480 {rgb=(.2 .2 .2)} Face 34984 9857 9854 19480 {rgb=(.2 .2 .2)} Face 34985 9844 9793 19481 {rgb=(.2 .2 .2)} Face 34986 9793 9806 19481 {rgb=(.2 .2 .2)} Face 34987 9806 9854 19481 {rgb=(.2 .2 .2)} Face 34988 9854 9844 19481 {rgb=(.2 .2 .2)} Face 34989 9805 9738 19482 {rgb=(.2 .2 .2)} Face 34990 9738 9793 19482 {rgb=(.2 .2 .2)} Face 34991 9793 9844 19482 {rgb=(.2 .2 .2)} Face 34992 9844 9805 19482 {rgb=(.2 .2 .2)} Face 34993 9802 9739 19483 {rgb=(.2 .2 .2)} Face 34994 9739 9738 19483 {rgb=(.2 .2 .2)} Face 34995 9738 9805 19483 {rgb=(.2 .2 .2)} Face 34996 9805 9802 19483 {rgb=(.2 .2 .2)} Face 34997 9774 9729 19484 {rgb=(.2 .2 .2)} Face 34998 9729 9739 19484 {rgb=(.2 .2 .2)} Face 34999 9739 9802 19484 {rgb=(.2 .2 .2)} Face 35000 9802 9774 19484 {rgb=(.2 .2 .2)} Face 35001 9313 9360 19485 {rgb=(.2 .2 .2)} Face 35002 9360 9729 19485 {rgb=(.2 .2 .2)} Face 35003 9729 9774 19485 {rgb=(.2 .2 .2)} Face 35004 9774 9313 19485 {rgb=(.2 .2 .2)} Face 35005 9091 9308 19486 {rgb=(.2 .2 .2)} Face 35006 9308 9360 19486 {rgb=(.2 .2 .2)} Face 35007 9360 9313 19486 {rgb=(.2 .2 .2)} Face 35008 9313 9091 19486 {rgb=(.2 .2 .2)} Face 35009 9095 9337 19487 {rgb=(.2 .2 .2)} Face 35010 9337 9308 19487 {rgb=(.2 .2 .2)} Face 35011 9308 9091 19487 {rgb=(.2 .2 .2)} Face 35012 9091 9095 19487 {rgb=(.2 .2 .2)} Face 35013 8829 9265 19488 {rgb=(.2 .2 .2)} Face 35014 9265 9337 19488 {rgb=(.2 .2 .2)} Face 35015 9337 9095 19488 {rgb=(.2 .2 .2)} Face 35016 9095 8829 19488 {rgb=(.2 .2 .2)} Face 35017 8855 9271 19489 {rgb=(.2 .2 .2)} Face 35018 9271 9265 19489 {rgb=(.2 .2 .2)} Face 35019 9265 8829 19489 {rgb=(.2 .2 .2)} Face 35020 8829 8855 19489 {rgb=(.2 .2 .2)} Face 35021 9360 9308 19490 {rgb=(.2 .2 .2)} Face 35022 9308 8895 19490 {rgb=(.2 .2 .2)} Face 35023 8895 9165 19490 {rgb=(.2 .2 .2)} Face 35024 9165 9360 19490 {rgb=(.2 .2 .2)} Face 35025 9739 9729 19491 {rgb=(.2 .2 .2)} Face 35026 9729 9626 19491 {rgb=(.2 .2 .2)} Face 35027 9626 9633 19491 {rgb=(.2 .2 .2)} Face 35028 9633 9739 19491 {rgb=(.2 .2 .2)} Face 35029 10079 10090 19492 {rgb=(.2 .2 .2)} Face 35030 10090 10043 19492 {rgb=(.2 .2 .2)} Face 35031 10043 10029 19492 {rgb=(.2 .2 .2)} Face 35032 10029 10079 19492 {rgb=(.2 .2 .2)} Face 35033 9478 9461 19493 {rgb=(.2 .2 .2)} Face 35034 9461 9512 19493 {rgb=(.2 .2 .2)} Face 35035 9512 9525 19493 {rgb=(.2 .2 .2)} Face 35036 9525 9478 19493 {rgb=(.2 .2 .2)} Face 35037 9376 9408 19494 {rgb=(.2 .2 .2)} Face 35038 9408 9396 19494 {rgb=(.2 .2 .2)} Face 35039 9396 9343 19494 {rgb=(.2 .2 .2)} Face 35040 9343 9376 19494 {rgb=(.2 .2 .2)} Face 35041 8962 9359 19495 {rgb=(.2 .2 .2)} Face 35042 9359 9338 19495 {rgb=(.2 .2 .2)} Face 35043 9338 8812 19495 {rgb=(.2 .2 .2)} Face 35044 8812 8962 19495 {rgb=(.2 .2 .2)} Face 35045 9360 9165 19496 {rgb=(.2 .2 .2)} Face 35046 9165 9626 19496 {rgb=(.2 .2 .2)} Face 35047 9626 9729 19496 {rgb=(.2 .2 .2)} Face 35048 9729 9360 19496 {rgb=(.2 .2 .2)} Face 35049 9478 9525 19497 {rgb=(.2 .2 .2)} Face 35050 9525 9528 19497 {rgb=(.2 .2 .2)} Face 35051 9528 9488 19497 {rgb=(.2 .2 .2)} Face 35052 9488 9478 19497 {rgb=(.2 .2 .2)} Face 35053 9488 9528 19498 {rgb=(.2 .2 .2)} Face 35054 9528 9524 19498 {rgb=(.2 .2 .2)} Face 35055 9524 9492 19498 {rgb=(.2 .2 .2)} Face 35056 9492 9488 19498 {rgb=(.2 .2 .2)} Face 35057 9492 9524 19499 {rgb=(.2 .2 .2)} Face 35058 9524 9567 19499 {rgb=(.2 .2 .2)} Face 35059 9567 9526 19499 {rgb=(.2 .2 .2)} Face 35060 9526 9492 19499 {rgb=(.2 .2 .2)} Face 35061 9602 9526 19500 {rgb=(.2 .2 .2)} Face 35062 9526 9567 19500 {rgb=(.2 .2 .2)} Face 35063 9567 9679 19500 {rgb=(.2 .2 .2)} Face 35064 9679 9602 19500 {rgb=(.2 .2 .2)} Face 35065 9602 9679 19501 {rgb=(.2 .2 .2)} Face 35066 9679 9910 19501 {rgb=(.2 .2 .2)} Face 35067 9910 9867 19501 {rgb=(.2 .2 .2)} Face 35068 9867 9602 19501 {rgb=(.2 .2 .2)} Face 35069 9867 9910 19502 {rgb=(.2 .2 .2)} Face 35070 9910 9997 19502 {rgb=(.2 .2 .2)} Face 35071 9997 9963 19502 {rgb=(.2 .2 .2)} Face 35072 9963 9867 19502 {rgb=(.2 .2 .2)} Face 35073 9963 9997 19503 {rgb=(.2 .2 .2)} Face 35074 9997 10050 19503 {rgb=(.2 .2 .2)} Face 35075 10050 10009 19503 {rgb=(.2 .2 .2)} Face 35076 10009 9963 19503 {rgb=(.2 .2 .2)} Face 35077 10009 10050 19504 {rgb=(.2 .2 .2)} Face 35078 10050 10074 19504 {rgb=(.2 .2 .2)} Face 35079 10074 10028 19504 {rgb=(.2 .2 .2)} Face 35080 10028 10009 19504 {rgb=(.2 .2 .2)} Face 35081 10028 10074 19505 {rgb=(.2 .2 .2)} Face 35082 10074 10079 19505 {rgb=(.2 .2 .2)} Face 35083 10079 10029 19505 {rgb=(.2 .2 .2)} Face 35084 10029 10028 19505 {rgb=(.2 .2 .2)} Face 35085 9359 9430 19506 {rgb=(.2 .2 .2)} Face 35086 9430 9417 19506 {rgb=(.2 .2 .2)} Face 35087 9417 9338 19506 {rgb=(.2 .2 .2)} Face 35088 9338 9359 19506 {rgb=(.2 .2 .2)} Face 35089 9343 9020 19507 {rgb=(.2 .2 .2)} Face 35090 9020 9333 19507 {rgb=(.2 .2 .2)} Face 35091 9333 9376 19507 {rgb=(.2 .2 .2)} Face 35092 9376 9343 19507 {rgb=(.2 .2 .2)} Face 35093 9456 9447 19508 {rgb=(.2 .2 .2)} Face 35094 9447 9396 19508 {rgb=(.2 .2 .2)} Face 35095 9396 9408 19508 {rgb=(.2 .2 .2)} Face 35096 9408 9456 19508 {rgb=(.2 .2 .2)} Face 35097 9803 9740 19509 {rgb=(.2 .2 .2)} Face 35098 9740 9775 19509 {rgb=(.2 .2 .2)} Face 35099 9775 9839 19509 {rgb=(.2 .2 .2)} Face 35100 9839 9803 19509 {rgb=(.2 .2 .2)} Face 35101 9456 9741 19510 {rgb=(.2 .2 .2)} Face 35102 9741 9713 19510 {rgb=(.2 .2 .2)} Face 35103 9713 9447 19510 {rgb=(.2 .2 .2)} Face 35104 9447 9456 19510 {rgb=(.2 .2 .2)} Face 35105 9542 9417 19511 {rgb=(.2 .2 .2)} Face 35106 9417 9430 19511 {rgb=(.2 .2 .2)} Face 35107 9430 9556 19511 {rgb=(.2 .2 .2)} Face 35108 9556 9542 19511 {rgb=(.2 .2 .2)} Face 35109 9839 9775 19512 {rgb=(.2 .2 .2)} Face 35110 9775 9713 19512 {rgb=(.2 .2 .2)} Face 35111 9713 9741 19512 {rgb=(.2 .2 .2)} Face 35112 9741 9839 19512 {rgb=(.2 .2 .2)} Face 35113 9793 9680 19513 {rgb=(.2 .2 .2)} Face 35114 9680 9695 19513 {rgb=(.2 .2 .2)} Face 35115 9695 9806 19513 {rgb=(.2 .2 .2)} Face 35116 9806 9793 19513 {rgb=(.2 .2 .2)} Face 35117 9695 9542 19514 {rgb=(.2 .2 .2)} Face 35118 9542 9556 19514 {rgb=(.2 .2 .2)} Face 35119 9556 9716 19514 {rgb=(.2 .2 .2)} Face 35120 9716 9695 19514 {rgb=(.2 .2 .2)} Face 35121 9806 9695 19515 {rgb=(.2 .2 .2)} Face 35122 9695 9716 19515 {rgb=(.2 .2 .2)} Face 35123 9716 9803 19515 {rgb=(.2 .2 .2)} Face 35124 9803 9806 19515 {rgb=(.2 .2 .2)} Face 35125 9020 8962 19516 {rgb=(.2 .2 .2)} Face 35126 8962 8812 19516 {rgb=(.2 .2 .2)} Face 35127 8812 8736 19516 {rgb=(.2 .2 .2)} Face 35128 8736 9020 19516 {rgb=(.2 .2 .2)} Face 35129 9333 9020 19517 {rgb=(.2 .2 .2)} Face 35130 9020 8736 19517 {rgb=(.2 .2 .2)} Face 35131 8736 9271 19517 {rgb=(.2 .2 .2)} Face 35132 9271 9333 19517 {rgb=(.2 .2 .2)} Face 35133 8648 9265 19518 {rgb=(.2 .2 .2)} Face 35134 9265 9271 19518 {rgb=(.2 .2 .2)} Face 35135 9271 8736 19518 {rgb=(.2 .2 .2)} Face 35136 8736 8648 19518 {rgb=(.2 .2 .2)} Face 35137 9000 9337 19519 {rgb=(.2 .2 .2)} Face 35138 9337 9265 19519 {rgb=(.2 .2 .2)} Face 35139 9265 8648 19519 {rgb=(.2 .2 .2)} Face 35140 8648 9000 19519 {rgb=(.2 .2 .2)} Face 35141 9632 9738 19520 {rgb=(.2 .2 .2)} Face 35142 9738 9739 19520 {rgb=(.2 .2 .2)} Face 35143 9739 9633 19520 {rgb=(.2 .2 .2)} Face 35144 9633 9632 19520 {rgb=(.2 .2 .2)} Face 35145 10043 10090 19521 {rgb=(.2 .2 .2)} Face 35146 10090 9512 19521 {rgb=(.2 .2 .2)} Face 35147 9512 9461 19521 {rgb=(.2 .2 .2)} Face 35148 9461 10043 19521 {rgb=(.2 .2 .2)} Face 35149 9738 9632 19522 {rgb=(.2 .2 .2)} Face 35150 9632 9680 19522 {rgb=(.2 .2 .2)} Face 35151 9680 9793 19522 {rgb=(.2 .2 .2)} Face 35152 9793 9738 19522 {rgb=(.2 .2 .2)} Face 35153 9337 9000 19523 {rgb=(.2 .2 .2)} Face 35154 9000 8895 19523 {rgb=(.2 .2 .2)} Face 35155 8895 9308 19523 {rgb=(.2 .2 .2)} Face 35156 9308 9337 19523 {rgb=(.2 .2 .2)} Face 35157 9922 9996 19524 {rgb=(.2 .2 .2)} Face 35158 9996 9499 19524 {rgb=(.2 .2 .2)} Face 35159 9499 9872 19524 {rgb=(.2 .2 .2)} Face 35160 9872 9922 19524 {rgb=(.2 .2 .2)} Face 35161 9448 9614 19525 {rgb=(.2 .2 .2)} Face 35162 9614 10059 19525 {rgb=(.2 .2 .2)} Face 35163 10059 9377 19525 {rgb=(.2 .2 .2)} Face 35164 9377 9448 19525 {rgb=(.2 .2 .2)} Face 35165 8583 9168 19526 {rgb=(.2 .2 .2)} Face 35166 9168 9653 19526 {rgb=(.2 .2 .2)} Face 35167 9653 8832 19526 {rgb=(.2 .2 .2)} Face 35168 8832 8583 19526 {rgb=(.2 .2 .2)} Face 35169 9782 9636 19527 {rgb=(.2 .2 .2)} Face 35170 9636 9511 19527 {rgb=(.2 .2 .2)} Face 35171 9511 9933 19527 {rgb=(.2 .2 .2)} Face 35172 9933 9782 19527 {rgb=(.2 .2 .2)} Face 35173 10039 9933 19528 {rgb=(.2 .2 .2)} Face 35174 9933 9511 19528 {rgb=(.2 .2 .2)} Face 35175 9511 10135 19528 {rgb=(.2 .2 .2)} Face 35176 10135 10039 19528 {rgb=(.2 .2 .2)} Face 35177 10119 10135 19529 {rgb=(.2 .2 .2)} Face 35178 10135 9511 19529 {rgb=(.2 .2 .2)} Face 35179 9511 10088 19529 {rgb=(.2 .2 .2)} Face 35180 10088 10119 19529 {rgb=(.2 .2 .2)} Face 35181 10040 9482 19530 {rgb=(.2 .2 .2)} Face 35182 9482 9499 19530 {rgb=(.2 .2 .2)} Face 35183 9499 9996 19530 {rgb=(.2 .2 .2)} Face 35184 9996 10040 19530 {rgb=(.2 .2 .2)} Face 35185 7859 8025 19531 {rgb=(.2 .2 .2)} Face 35186 8025 8912 19531 {rgb=(.2 .2 .2)} Face 35187 8912 8679 19531 {rgb=(.2 .2 .2)} Face 35188 8679 7859 19531 {rgb=(.2 .2 .2)} Face 35189 8679 8912 19532 {rgb=(.2 .2 .2)} Face 35190 8912 9340 19532 {rgb=(.2 .2 .2)} Face 35191 9340 9317 19532 {rgb=(.2 .2 .2)} Face 35192 9317 8679 19532 {rgb=(.2 .2 .2)} Face 35193 9317 9340 19533 {rgb=(.2 .2 .2)} Face 35194 9340 9433 19533 {rgb=(.2 .2 .2)} Face 35195 9433 9435 19533 {rgb=(.2 .2 .2)} Face 35196 9435 9317 19533 {rgb=(.2 .2 .2)} Face 35197 9545 9554 19534 {rgb=(.2 .2 .2)} Face 35198 9554 9435 19534 {rgb=(.2 .2 .2)} Face 35199 9435 9433 19534 {rgb=(.2 .2 .2)} Face 35200 9433 9545 19534 {rgb=(.2 .2 .2)} Face 35201 7578 7740 19535 {rgb=(.2 .2 .2)} Face 35202 7740 8025 19535 {rgb=(.2 .2 .2)} Face 35203 8025 7859 19535 {rgb=(.2 .2 .2)} Face 35204 7859 7578 19535 {rgb=(.2 .2 .2)} Face 35205 7587 7735 19536 {rgb=(.2 .2 .2)} Face 35206 7735 7740 19536 {rgb=(.2 .2 .2)} Face 35207 7740 7578 19536 {rgb=(.2 .2 .2)} Face 35208 7578 7587 19536 {rgb=(.2 .2 .2)} Face 35209 7735 7587 19537 {rgb=(.2 .2 .2)} Face 35210 7587 7682 19537 {rgb=(.2 .2 .2)} Face 35211 7682 7777 19537 {rgb=(.2 .2 .2)} Face 35212 7777 7735 19537 {rgb=(.2 .2 .2)} Face 35213 7937 7978 19538 {rgb=(.2 .2 .2)} Face 35214 7978 7777 19538 {rgb=(.2 .2 .2)} Face 35215 7777 7682 19538 {rgb=(.2 .2 .2)} Face 35216 7682 7937 19538 {rgb=(.2 .2 .2)} Face 35217 8438 8447 19539 {rgb=(.2 .2 .2)} Face 35218 8447 7978 19539 {rgb=(.2 .2 .2)} Face 35219 7978 7937 19539 {rgb=(.2 .2 .2)} Face 35220 7937 8438 19539 {rgb=(.2 .2 .2)} Face 35221 9081 9123 19540 {rgb=(.2 .2 .2)} Face 35222 9123 8447 19540 {rgb=(.2 .2 .2)} Face 35223 8447 8438 19540 {rgb=(.2 .2 .2)} Face 35224 8438 9081 19540 {rgb=(.2 .2 .2)} Face 35225 9554 9545 19541 {rgb=(.2 .2 .2)} Face 35226 9545 9734 19541 {rgb=(.2 .2 .2)} Face 35227 9734 9772 19541 {rgb=(.2 .2 .2)} Face 35228 9772 9554 19541 {rgb=(.2 .2 .2)} Face 35229 9772 9734 19542 {rgb=(.2 .2 .2)} Face 35230 9734 9888 19542 {rgb=(.2 .2 .2)} Face 35231 9888 9920 19542 {rgb=(.2 .2 .2)} Face 35232 9920 9772 19542 {rgb=(.2 .2 .2)} Face 35233 9920 9888 19543 {rgb=(.2 .2 .2)} Face 35234 9888 9966 19543 {rgb=(.2 .2 .2)} Face 35235 9966 9983 19543 {rgb=(.2 .2 .2)} Face 35236 9983 9920 19543 {rgb=(.2 .2 .2)} Face 35237 10026 10046 19544 {rgb=(.2 .2 .2)} Face 35238 10046 9983 19544 {rgb=(.2 .2 .2)} Face 35239 9983 9966 19544 {rgb=(.2 .2 .2)} Face 35240 9966 10026 19544 {rgb=(.2 .2 .2)} Face 35241 10046 10026 19545 {rgb=(.2 .2 .2)} Face 35242 10026 10077 19545 {rgb=(.2 .2 .2)} Face 35243 10077 10092 19545 {rgb=(.2 .2 .2)} Face 35244 10092 10046 19545 {rgb=(.2 .2 .2)} Face 35245 9123 9081 19546 {rgb=(.2 .2 .2)} Face 35246 9081 9369 19546 {rgb=(.2 .2 .2)} Face 35247 9369 9377 19546 {rgb=(.2 .2 .2)} Face 35248 9377 9123 19546 {rgb=(.2 .2 .2)} Face 35249 10092 10077 19547 {rgb=(.2 .2 .2)} Face 35250 10077 10059 19547 {rgb=(.2 .2 .2)} Face 35251 10059 10086 19547 {rgb=(.2 .2 .2)} Face 35252 10086 10092 19547 {rgb=(.2 .2 .2)} Face 35253 10086 10059 19548 {rgb=(.2 .2 .2)} Face 35254 10059 9998 19548 {rgb=(.2 .2 .2)} Face 35255 9998 10016 19548 {rgb=(.2 .2 .2)} Face 35256 10016 10086 19548 {rgb=(.2 .2 .2)} Face 35257 10016 9998 19549 {rgb=(.2 .2 .2)} Face 35258 9998 9890 19549 {rgb=(.2 .2 .2)} Face 35259 9890 9909 19549 {rgb=(.2 .2 .2)} Face 35260 9909 10016 19549 {rgb=(.2 .2 .2)} Face 35261 9909 9890 19550 {rgb=(.2 .2 .2)} Face 35262 9890 9614 19550 {rgb=(.2 .2 .2)} Face 35263 9614 9628 19550 {rgb=(.2 .2 .2)} Face 35264 9628 9909 19550 {rgb=(.2 .2 .2)} Face 35265 9628 9614 19551 {rgb=(.2 .2 .2)} Face 35266 9614 9448 19551 {rgb=(.2 .2 .2)} Face 35267 9448 9443 19551 {rgb=(.2 .2 .2)} Face 35268 9443 9628 19551 {rgb=(.2 .2 .2)} Face 35269 9443 9448 19552 {rgb=(.2 .2 .2)} Face 35270 9448 9377 19552 {rgb=(.2 .2 .2)} Face 35271 9377 9369 19552 {rgb=(.2 .2 .2)} Face 35272 9369 9443 19552 {rgb=(.2 .2 .2)} Face 35273 7777 9888 19553 {rgb=(.2 .2 .2)} Face 35274 9888 9734 19553 {rgb=(.2 .2 .2)} Face 35275 9734 7735 19553 {rgb=(.2 .2 .2)} Face 35276 7735 7777 19553 {rgb=(.2 .2 .2)} Face 35277 9433 8025 19554 {rgb=(.2 .2 .2)} Face 35278 8025 7740 19554 {rgb=(.2 .2 .2)} Face 35279 7740 9545 19554 {rgb=(.2 .2 .2)} Face 35280 9545 9433 19554 {rgb=(.2 .2 .2)} Face 35281 10026 9966 19555 {rgb=(.2 .2 .2)} Face 35282 9966 7978 19555 {rgb=(.2 .2 .2)} Face 35283 7978 8447 19555 {rgb=(.2 .2 .2)} Face 35284 8447 10026 19555 {rgb=(.2 .2 .2)} Face 35285 9377 10059 19556 {rgb=(.2 .2 .2)} Face 35286 10059 10077 19556 {rgb=(.2 .2 .2)} Face 35287 10077 9123 19556 {rgb=(.2 .2 .2)} Face 35288 9123 9377 19556 {rgb=(.2 .2 .2)} Face 35289 9369 9081 19557 {rgb=(.2 .2 .2)} Face 35290 9081 9144 19557 {rgb=(.2 .2 .2)} Face 35291 9144 9380 19557 {rgb=(.2 .2 .2)} Face 35292 9380 9369 19557 {rgb=(.2 .2 .2)} Face 35293 7578 7859 19558 {rgb=(.2 .2 .2)} Face 35294 7859 7935 19558 {rgb=(.2 .2 .2)} Face 35295 7935 7669 19558 {rgb=(.2 .2 .2)} Face 35296 7669 7578 19558 {rgb=(.2 .2 .2)} Face 35297 8438 7937 19559 {rgb=(.2 .2 .2)} Face 35298 7937 8002 19559 {rgb=(.2 .2 .2)} Face 35299 8002 8474 19559 {rgb=(.2 .2 .2)} Face 35300 8474 8438 19559 {rgb=(.2 .2 .2)} Face 35301 7682 7587 19560 {rgb=(.2 .2 .2)} Face 35302 7587 7701 19560 {rgb=(.2 .2 .2)} Face 35303 7701 7774 19560 {rgb=(.2 .2 .2)} Face 35304 7774 7682 19560 {rgb=(.2 .2 .2)} Face 35305 8679 9317 19561 {rgb=(.2 .2 .2)} Face 35306 9317 9319 19561 {rgb=(.2 .2 .2)} Face 35307 9319 8703 19561 {rgb=(.2 .2 .2)} Face 35308 8703 8679 19561 {rgb=(.2 .2 .2)} Face 35309 9435 9554 19562 {rgb=(.2 .2 .2)} Face 35310 9554 9538 19562 {rgb=(.2 .2 .2)} Face 35311 9538 9419 19562 {rgb=(.2 .2 .2)} Face 35312 9419 9435 19562 {rgb=(.2 .2 .2)} Face 35313 9772 9920 19563 {rgb=(.2 .2 .2)} Face 35314 9920 9883 19563 {rgb=(.2 .2 .2)} Face 35315 9883 9723 19563 {rgb=(.2 .2 .2)} Face 35316 9723 9772 19563 {rgb=(.2 .2 .2)} Face 35317 9983 10046 19564 {rgb=(.2 .2 .2)} Face 35318 10046 10018 19564 {rgb=(.2 .2 .2)} Face 35319 10018 9962 19564 {rgb=(.2 .2 .2)} Face 35320 9962 9983 19564 {rgb=(.2 .2 .2)} Face 35321 9628 9443 19565 {rgb=(.2 .2 .2)} Face 35322 9443 9452 19565 {rgb=(.2 .2 .2)} Face 35323 9452 9630 19565 {rgb=(.2 .2 .2)} Face 35324 9630 9628 19565 {rgb=(.2 .2 .2)} Face 35325 10016 9909 19566 {rgb=(.2 .2 .2)} Face 35326 9909 9904 19566 {rgb=(.2 .2 .2)} Face 35327 9904 10008 19566 {rgb=(.2 .2 .2)} Face 35328 10008 10016 19566 {rgb=(.2 .2 .2)} Face 35329 10092 10086 19567 {rgb=(.2 .2 .2)} Face 35330 10086 10064 19567 {rgb=(.2 .2 .2)} Face 35331 10064 10072 19567 {rgb=(.2 .2 .2)} Face 35332 10072 10092 19567 {rgb=(.2 .2 .2)} Face 35333 7935 7859 19568 {rgb=(.2 .2 .2)} Face 35334 7859 8679 19568 {rgb=(.2 .2 .2)} Face 35335 8679 8703 19568 {rgb=(.2 .2 .2)} Face 35336 8703 7935 19568 {rgb=(.2 .2 .2)} Face 35337 7701 7587 19569 {rgb=(.2 .2 .2)} Face 35338 7587 7578 19569 {rgb=(.2 .2 .2)} Face 35339 7578 7669 19569 {rgb=(.2 .2 .2)} Face 35340 7669 7701 19569 {rgb=(.2 .2 .2)} Face 35341 8002 7937 19570 {rgb=(.2 .2 .2)} Face 35342 7937 7682 19570 {rgb=(.2 .2 .2)} Face 35343 7682 7774 19570 {rgb=(.2 .2 .2)} Face 35344 7774 8002 19570 {rgb=(.2 .2 .2)} Face 35345 9144 9081 19571 {rgb=(.2 .2 .2)} Face 35346 9081 8438 19571 {rgb=(.2 .2 .2)} Face 35347 8438 8474 19571 {rgb=(.2 .2 .2)} Face 35348 8474 9144 19571 {rgb=(.2 .2 .2)} Face 35349 9452 9443 19572 {rgb=(.2 .2 .2)} Face 35350 9443 9369 19572 {rgb=(.2 .2 .2)} Face 35351 9369 9380 19572 {rgb=(.2 .2 .2)} Face 35352 9380 9452 19572 {rgb=(.2 .2 .2)} Face 35353 9904 9909 19573 {rgb=(.2 .2 .2)} Face 35354 9909 9628 19573 {rgb=(.2 .2 .2)} Face 35355 9628 9630 19573 {rgb=(.2 .2 .2)} Face 35356 9630 9904 19573 {rgb=(.2 .2 .2)} Face 35357 10064 10086 19574 {rgb=(.2 .2 .2)} Face 35358 10086 10016 19574 {rgb=(.2 .2 .2)} Face 35359 10016 10008 19574 {rgb=(.2 .2 .2)} Face 35360 10008 10064 19574 {rgb=(.2 .2 .2)} Face 35361 10018 10046 19575 {rgb=(.2 .2 .2)} Face 35362 10046 10092 19575 {rgb=(.2 .2 .2)} Face 35363 10092 10072 19575 {rgb=(.2 .2 .2)} Face 35364 10072 10018 19575 {rgb=(.2 .2 .2)} Face 35365 9883 9920 19576 {rgb=(.2 .2 .2)} Face 35366 9920 9983 19576 {rgb=(.2 .2 .2)} Face 35367 9983 9962 19576 {rgb=(.2 .2 .2)} Face 35368 9962 9883 19576 {rgb=(.2 .2 .2)} Face 35369 9538 9554 19577 {rgb=(.2 .2 .2)} Face 35370 9554 9772 19577 {rgb=(.2 .2 .2)} Face 35371 9772 9723 19577 {rgb=(.2 .2 .2)} Face 35372 9723 9538 19577 {rgb=(.2 .2 .2)} Face 35373 9319 9317 19578 {rgb=(.2 .2 .2)} Face 35374 9317 9435 19578 {rgb=(.2 .2 .2)} Face 35375 9435 9419 19578 {rgb=(.2 .2 .2)} Face 35376 9419 9319 19578 {rgb=(.2 .2 .2)} Face 35377 9890 9998 19579 {rgb=(.2 .2 .2)} Face 35378 9998 10059 19579 {rgb=(.2 .2 .2)} Face 35379 10059 9614 19579 {rgb=(.2 .2 .2)} Face 35380 9614 9890 19579 {rgb=(.2 .2 .2)} Face 35381 9966 9888 19580 {rgb=(.2 .2 .2)} Face 35382 9888 7777 19580 {rgb=(.2 .2 .2)} Face 35383 7777 7978 19580 {rgb=(.2 .2 .2)} Face 35384 7978 9966 19580 {rgb=(.2 .2 .2)} Face 35385 8447 9123 19581 {rgb=(.2 .2 .2)} Face 35386 9123 10077 19581 {rgb=(.2 .2 .2)} Face 35387 10077 10026 19581 {rgb=(.2 .2 .2)} Face 35388 10026 8447 19581 {rgb=(.2 .2 .2)} Face 35389 9433 9340 19582 {rgb=(.2 .2 .2)} Face 35390 9340 8912 19582 {rgb=(.2 .2 .2)} Face 35391 8912 8025 19582 {rgb=(.2 .2 .2)} Face 35392 8025 9433 19582 {rgb=(.2 .2 .2)} Face 35393 7744 7935 19583 {rgb=(.2 .2 .2)} Face 35394 7935 8703 19583 {rgb=(.2 .2 .2)} Face 35395 8703 9182 19583 {rgb=(.2 .2 .2)} Face 35396 9182 7744 19583 {rgb=(.2 .2 .2)} Face 35397 7964 7701 19584 {rgb=(.2 .2 .2)} Face 35398 7701 7669 19584 {rgb=(.2 .2 .2)} Face 35399 7669 7744 19584 {rgb=(.2 .2 .2)} Face 35400 7744 7964 19584 {rgb=(.2 .2 .2)} Face 35401 8997 8002 19585 {rgb=(.2 .2 .2)} Face 35402 8002 7774 19585 {rgb=(.2 .2 .2)} Face 35403 7774 7964 19585 {rgb=(.2 .2 .2)} Face 35404 7964 8997 19585 {rgb=(.2 .2 .2)} Face 35405 9385 9144 19586 {rgb=(.2 .2 .2)} Face 35406 9144 8474 19586 {rgb=(.2 .2 .2)} Face 35407 8474 8997 19586 {rgb=(.2 .2 .2)} Face 35408 8997 9385 19586 {rgb=(.2 .2 .2)} Face 35409 9495 9452 19587 {rgb=(.2 .2 .2)} Face 35410 9452 9380 19587 {rgb=(.2 .2 .2)} Face 35411 9380 9385 19587 {rgb=(.2 .2 .2)} Face 35412 9385 9495 19587 {rgb=(.2 .2 .2)} Face 35413 9812 9904 19588 {rgb=(.2 .2 .2)} Face 35414 9904 9630 19588 {rgb=(.2 .2 .2)} Face 35415 9630 9495 19588 {rgb=(.2 .2 .2)} Face 35416 9495 9812 19588 {rgb=(.2 .2 .2)} Face 35417 9881 10064 19589 {rgb=(.2 .2 .2)} Face 35418 10064 10008 19589 {rgb=(.2 .2 .2)} Face 35419 10008 9812 19589 {rgb=(.2 .2 .2)} Face 35420 9812 9881 19589 {rgb=(.2 .2 .2)} Face 35421 9886 10018 19590 {rgb=(.2 .2 .2)} Face 35422 10018 10072 19590 {rgb=(.2 .2 .2)} Face 35423 10072 9881 19590 {rgb=(.2 .2 .2)} Face 35424 9881 9886 19590 {rgb=(.2 .2 .2)} Face 35425 9701 9883 19591 {rgb=(.2 .2 .2)} Face 35426 9883 9962 19591 {rgb=(.2 .2 .2)} Face 35427 9962 9886 19591 {rgb=(.2 .2 .2)} Face 35428 9886 9701 19591 {rgb=(.2 .2 .2)} Face 35429 9451 9538 19592 {rgb=(.2 .2 .2)} Face 35430 9538 9723 19592 {rgb=(.2 .2 .2)} Face 35431 9723 9701 19592 {rgb=(.2 .2 .2)} Face 35432 9701 9451 19592 {rgb=(.2 .2 .2)} Face 35433 9182 9319 19593 {rgb=(.2 .2 .2)} Face 35434 9319 9419 19593 {rgb=(.2 .2 .2)} Face 35435 9419 9451 19593 {rgb=(.2 .2 .2)} Face 35436 9451 9182 19593 {rgb=(.2 .2 .2)} Face 35437 8501 7744 19594 {rgb=(.2 .2 .2)} Face 35438 7744 9182 19594 {rgb=(.2 .2 .2)} Face 35439 9182 9307 19594 {rgb=(.2 .2 .2)} Face 35440 9307 8501 19594 {rgb=(.2 .2 .2)} Face 35441 8534 7964 19595 {rgb=(.2 .2 .2)} Face 35442 7964 7744 19595 {rgb=(.2 .2 .2)} Face 35443 7744 8501 19595 {rgb=(.2 .2 .2)} Face 35444 8501 8534 19595 {rgb=(.2 .2 .2)} Face 35445 9237 8997 19596 {rgb=(.2 .2 .2)} Face 35446 8997 7964 19596 {rgb=(.2 .2 .2)} Face 35447 7964 8534 19596 {rgb=(.2 .2 .2)} Face 35448 8534 9237 19596 {rgb=(.2 .2 .2)} Face 35449 9389 9385 19597 {rgb=(.2 .2 .2)} Face 35450 9385 8997 19597 {rgb=(.2 .2 .2)} Face 35451 8997 9237 19597 {rgb=(.2 .2 .2)} Face 35452 9237 9389 19597 {rgb=(.2 .2 .2)} Face 35453 9469 9495 19598 {rgb=(.2 .2 .2)} Face 35454 9495 9385 19598 {rgb=(.2 .2 .2)} Face 35455 9385 9389 19598 {rgb=(.2 .2 .2)} Face 35456 9389 9469 19598 {rgb=(.2 .2 .2)} Face 35457 9746 9812 19599 {rgb=(.2 .2 .2)} Face 35458 9812 9495 19599 {rgb=(.2 .2 .2)} Face 35459 9495 9469 19599 {rgb=(.2 .2 .2)} Face 35460 9469 9746 19599 {rgb=(.2 .2 .2)} Face 35461 9817 9881 19600 {rgb=(.2 .2 .2)} Face 35462 9881 9812 19600 {rgb=(.2 .2 .2)} Face 35463 9812 9746 19600 {rgb=(.2 .2 .2)} Face 35464 9746 9817 19600 {rgb=(.2 .2 .2)} Face 35465 9797 9886 19601 {rgb=(.2 .2 .2)} Face 35466 9886 9881 19601 {rgb=(.2 .2 .2)} Face 35467 9881 9817 19601 {rgb=(.2 .2 .2)} Face 35468 9817 9797 19601 {rgb=(.2 .2 .2)} Face 35469 9639 9701 19602 {rgb=(.2 .2 .2)} Face 35470 9701 9886 19602 {rgb=(.2 .2 .2)} Face 35471 9886 9797 19602 {rgb=(.2 .2 .2)} Face 35472 9797 9639 19602 {rgb=(.2 .2 .2)} Face 35473 9439 9451 19603 {rgb=(.2 .2 .2)} Face 35474 9451 9701 19603 {rgb=(.2 .2 .2)} Face 35475 9701 9639 19603 {rgb=(.2 .2 .2)} Face 35476 9639 9439 19603 {rgb=(.2 .2 .2)} Face 35477 9307 9182 19604 {rgb=(.2 .2 .2)} Face 35478 9182 9451 19604 {rgb=(.2 .2 .2)} Face 35479 9451 9439 19604 {rgb=(.2 .2 .2)} Face 35480 9439 9307 19604 {rgb=(.2 .2 .2)} Face 35481 8494 8501 19605 {rgb=(.2 .2 .2)} Face 35482 8501 9307 19605 {rgb=(.2 .2 .2)} Face 35483 9307 9306 19605 {rgb=(.2 .2 .2)} Face 35484 9306 8494 19605 {rgb=(.2 .2 .2)} Face 35485 8526 8534 19606 {rgb=(.2 .2 .2)} Face 35486 8534 8501 19606 {rgb=(.2 .2 .2)} Face 35487 8501 8494 19606 {rgb=(.2 .2 .2)} Face 35488 8494 8526 19606 {rgb=(.2 .2 .2)} Face 35489 9236 9237 19607 {rgb=(.2 .2 .2)} Face 35490 9237 8534 19607 {rgb=(.2 .2 .2)} Face 35491 8534 8526 19607 {rgb=(.2 .2 .2)} Face 35492 8526 9236 19607 {rgb=(.2 .2 .2)} Face 35493 9388 9389 19608 {rgb=(.2 .2 .2)} Face 35494 9389 9237 19608 {rgb=(.2 .2 .2)} Face 35495 9237 9236 19608 {rgb=(.2 .2 .2)} Face 35496 9236 9388 19608 {rgb=(.2 .2 .2)} Face 35497 9468 9469 19609 {rgb=(.2 .2 .2)} Face 35498 9469 9389 19609 {rgb=(.2 .2 .2)} Face 35499 9389 9388 19609 {rgb=(.2 .2 .2)} Face 35500 9388 9468 19609 {rgb=(.2 .2 .2)} Face 35501 9745 9746 19610 {rgb=(.2 .2 .2)} Face 35502 9746 9469 19610 {rgb=(.2 .2 .2)} Face 35503 9469 9468 19610 {rgb=(.2 .2 .2)} Face 35504 9468 9745 19610 {rgb=(.2 .2 .2)} Face 35505 9816 9817 19611 {rgb=(.2 .2 .2)} Face 35506 9817 9746 19611 {rgb=(.2 .2 .2)} Face 35507 9746 9745 19611 {rgb=(.2 .2 .2)} Face 35508 9745 9816 19611 {rgb=(.2 .2 .2)} Face 35509 9795 9797 19612 {rgb=(.2 .2 .2)} Face 35510 9797 9817 19612 {rgb=(.2 .2 .2)} Face 35511 9817 9816 19612 {rgb=(.2 .2 .2)} Face 35512 9816 9795 19612 {rgb=(.2 .2 .2)} Face 35513 9638 9639 19613 {rgb=(.2 .2 .2)} Face 35514 9639 9797 19613 {rgb=(.2 .2 .2)} Face 35515 9797 9795 19613 {rgb=(.2 .2 .2)} Face 35516 9795 9638 19613 {rgb=(.2 .2 .2)} Face 35517 9438 9439 19614 {rgb=(.2 .2 .2)} Face 35518 9439 9639 19614 {rgb=(.2 .2 .2)} Face 35519 9639 9638 19614 {rgb=(.2 .2 .2)} Face 35520 9638 9438 19614 {rgb=(.2 .2 .2)} Face 35521 9306 9307 19615 {rgb=(.2 .2 .2)} Face 35522 9307 9439 19615 {rgb=(.2 .2 .2)} Face 35523 9439 9438 19615 {rgb=(.2 .2 .2)} Face 35524 9438 9306 19615 {rgb=(.2 .2 .2)} Face 35525 9774 9802 19616 {rgb=(.2 .2 .2)} Face 35526 9802 9901 19616 {rgb=(.2 .2 .2)} Face 35527 9901 9872 19616 {rgb=(.2 .2 .2)} Face 35528 9872 9774 19616 {rgb=(.2 .2 .2)} Face 35529 10039 10062 19617 {rgb=(.2 .2 .2)} Face 35530 10062 9938 19617 {rgb=(.2 .2 .2)} Face 35531 9938 9933 19617 {rgb=(.2 .2 .2)} Face 35532 9933 10039 19617 {rgb=(.2 .2 .2)} Face 35533 10165 10135 19618 {rgb=(.2 .2 .2)} Face 35534 10135 10119 19618 {rgb=(.2 .2 .2)} Face 35535 10119 10152 19618 {rgb=(.2 .2 .2)} Face 35536 10152 10165 19618 {rgb=(.2 .2 .2)} Face 35537 10062 10039 19619 {rgb=(.2 .2 .2)} Face 35538 10039 10135 19619 {rgb=(.2 .2 .2)} Face 35539 10135 10165 19619 {rgb=(.2 .2 .2)} Face 35540 10165 10062 19619 {rgb=(.2 .2 .2)} Face 35541 9760 9782 19620 {rgb=(.2 .2 .2)} Face 35542 9782 9933 19620 {rgb=(.2 .2 .2)} Face 35543 9933 9938 19620 {rgb=(.2 .2 .2)} Face 35544 9938 9760 19620 {rgb=(.2 .2 .2)} Face 35545 9588 9636 19621 {rgb=(.2 .2 .2)} Face 35546 9636 9782 19621 {rgb=(.2 .2 .2)} Face 35547 9782 9760 19621 {rgb=(.2 .2 .2)} Face 35548 9760 9588 19621 {rgb=(.2 .2 .2)} Face 35549 9513 9549 19622 {rgb=(.2 .2 .2)} Face 35550 9549 9636 19622 {rgb=(.2 .2 .2)} Face 35551 9636 9588 19622 {rgb=(.2 .2 .2)} Face 35552 9588 9513 19622 {rgb=(.2 .2 .2)} Face 35553 9467 9499 19623 {rgb=(.2 .2 .2)} Face 35554 9499 9482 19623 {rgb=(.2 .2 .2)} Face 35555 9482 9450 19623 {rgb=(.2 .2 .2)} Face 35556 9450 9467 19623 {rgb=(.2 .2 .2)} Face 35557 9424 9444 19624 {rgb=(.2 .2 .2)} Face 35558 9444 9499 19624 {rgb=(.2 .2 .2)} Face 35559 9499 9467 19624 {rgb=(.2 .2 .2)} Face 35560 9467 9424 19624 {rgb=(.2 .2 .2)} Face 35561 9091 9313 19625 {rgb=(.2 .2 .2)} Face 35562 9313 9444 19625 {rgb=(.2 .2 .2)} Face 35563 9444 9424 19625 {rgb=(.2 .2 .2)} Face 35564 9424 9091 19625 {rgb=(.2 .2 .2)} Face 35565 9426 9423 19626 {rgb=(.2 .2 .2)} Face 35566 9423 9168 19626 {rgb=(.2 .2 .2)} Face 35567 9168 8985 19626 {rgb=(.2 .2 .2)} Face 35568 8985 9426 19626 {rgb=(.2 .2 .2)} Face 35569 9543 9523 19627 {rgb=(.2 .2 .2)} Face 35570 9523 9423 19627 {rgb=(.2 .2 .2)} Face 35571 9423 9426 19627 {rgb=(.2 .2 .2)} Face 35572 9426 9543 19627 {rgb=(.2 .2 .2)} Face 35573 9692 9653 19628 {rgb=(.2 .2 .2)} Face 35574 9653 9523 19628 {rgb=(.2 .2 .2)} Face 35575 9523 9543 19628 {rgb=(.2 .2 .2)} Face 35576 9543 9692 19628 {rgb=(.2 .2 .2)} Face 35577 9943 9922 19629 {rgb=(.2 .2 .2)} Face 35578 9922 9872 19629 {rgb=(.2 .2 .2)} Face 35579 9872 9901 19629 {rgb=(.2 .2 .2)} Face 35580 9901 9943 19629 {rgb=(.2 .2 .2)} Face 35581 10031 9996 19630 {rgb=(.2 .2 .2)} Face 35582 9996 9922 19630 {rgb=(.2 .2 .2)} Face 35583 9922 9943 19630 {rgb=(.2 .2 .2)} Face 35584 9943 10031 19630 {rgb=(.2 .2 .2)} Face 35585 10152 10119 19631 {rgb=(.2 .2 .2)} Face 35586 10119 10088 19631 {rgb=(.2 .2 .2)} Face 35587 10088 10111 19631 {rgb=(.2 .2 .2)} Face 35588 10111 10152 19631 {rgb=(.2 .2 .2)} Face 35589 10080 10040 19632 {rgb=(.2 .2 .2)} Face 35590 10040 9996 19632 {rgb=(.2 .2 .2)} Face 35591 9996 10031 19632 {rgb=(.2 .2 .2)} Face 35592 10031 10080 19632 {rgb=(.2 .2 .2)} Face 35593 9450 9482 19633 {rgb=(.2 .2 .2)} Face 35594 9482 9460 19633 {rgb=(.2 .2 .2)} Face 35595 9460 9431 19633 {rgb=(.2 .2 .2)} Face 35596 9431 9450 19633 {rgb=(.2 .2 .2)} Face 35597 9477 9511 19634 {rgb=(.2 .2 .2)} Face 35598 9511 9549 19634 {rgb=(.2 .2 .2)} Face 35599 9549 9513 19634 {rgb=(.2 .2 .2)} Face 35600 9513 9477 19634 {rgb=(.2 .2 .2)} Face 35601 8985 9168 19635 {rgb=(.2 .2 .2)} Face 35602 9168 8583 19635 {rgb=(.2 .2 .2)} Face 35603 8583 8400 19635 {rgb=(.2 .2 .2)} Face 35604 8400 8985 19635 {rgb=(.2 .2 .2)} Face 35605 8400 8583 19636 {rgb=(.2 .2 .2)} Face 35606 8583 8832 19636 {rgb=(.2 .2 .2)} Face 35607 8832 8553 19636 {rgb=(.2 .2 .2)} Face 35608 8553 8400 19636 {rgb=(.2 .2 .2)} Face 35609 8494 9306 19637 {rgb=(.2 .2 .2)} Face 35610 9306 9283 19637 {rgb=(.2 .2 .2)} Face 35611 9283 8528 19637 {rgb=(.2 .2 .2)} Face 35612 8528 8494 19637 {rgb=(.2 .2 .2)} Face 35613 8428 9131 19638 {rgb=(.2 .2 .2)} Face 35614 9131 8810 19638 {rgb=(.2 .2 .2)} Face 35615 8810 8250 19638 {rgb=(.2 .2 .2)} Face 35616 8250 8428 19638 {rgb=(.2 .2 .2)} Face 35617 8250 8810 19639 {rgb=(.2 .2 .2)} Face 35618 8810 8740 19639 {rgb=(.2 .2 .2)} Face 35619 8740 8213 19639 {rgb=(.2 .2 .2)} Face 35620 8213 8250 19639 {rgb=(.2 .2 .2)} Face 35621 8213 8740 19640 {rgb=(.2 .2 .2)} Face 35622 8740 8891 19640 {rgb=(.2 .2 .2)} Face 35623 8891 8365 19640 {rgb=(.2 .2 .2)} Face 35624 8365 8213 19640 {rgb=(.2 .2 .2)} Face 35625 8365 8891 19641 {rgb=(.2 .2 .2)} Face 35626 8891 8985 19641 {rgb=(.2 .2 .2)} Face 35627 8985 8400 19641 {rgb=(.2 .2 .2)} Face 35628 8400 8365 19641 {rgb=(.2 .2 .2)} Face 35629 9423 9523 19642 {rgb=(.2 .2 .2)} Face 35630 9523 9653 19642 {rgb=(.2 .2 .2)} Face 35631 9653 9168 19642 {rgb=(.2 .2 .2)} Face 35632 9168 9423 19642 {rgb=(.2 .2 .2)} Face 35633 9934 9905 19643 {rgb=(.2 .2 .2)} Face 35634 9905 9895 19643 {rgb=(.2 .2 .2)} Face 35635 9895 9917 19643 {rgb=(.2 .2 .2)} Face 35636 9917 9934 19643 {rgb=(.2 .2 .2)} Face 35637 9444 9313 19644 {rgb=(.2 .2 .2)} Face 35638 9313 9774 19644 {rgb=(.2 .2 .2)} Face 35639 9774 9872 19644 {rgb=(.2 .2 .2)} Face 35640 9872 9444 19644 {rgb=(.2 .2 .2)} Face 35641 9438 9638 19645 {rgb=(.2 .2 .2)} Face 35642 9638 9587 19645 {rgb=(.2 .2 .2)} Face 35643 9587 9434 19645 {rgb=(.2 .2 .2)} Face 35644 9434 9438 19645 {rgb=(.2 .2 .2)} Face 35645 9638 9795 19646 {rgb=(.2 .2 .2)} Face 35646 9795 9807 19646 {rgb=(.2 .2 .2)} Face 35647 9807 9587 19646 {rgb=(.2 .2 .2)} Face 35648 9587 9638 19646 {rgb=(.2 .2 .2)} Face 35649 9795 9816 19647 {rgb=(.2 .2 .2)} Face 35650 9816 9832 19647 {rgb=(.2 .2 .2)} Face 35651 9832 9807 19647 {rgb=(.2 .2 .2)} Face 35652 9807 9795 19647 {rgb=(.2 .2 .2)} Face 35653 9816 9745 19648 {rgb=(.2 .2 .2)} Face 35654 9745 9765 19648 {rgb=(.2 .2 .2)} Face 35655 9765 9832 19648 {rgb=(.2 .2 .2)} Face 35656 9832 9816 19648 {rgb=(.2 .2 .2)} Face 35657 9745 9468 19649 {rgb=(.2 .2 .2)} Face 35658 9468 9455 19649 {rgb=(.2 .2 .2)} Face 35659 9455 9765 19649 {rgb=(.2 .2 .2)} Face 35660 9765 9745 19649 {rgb=(.2 .2 .2)} Face 35661 9468 9388 19650 {rgb=(.2 .2 .2)} Face 35662 9388 9379 19650 {rgb=(.2 .2 .2)} Face 35663 9379 9455 19650 {rgb=(.2 .2 .2)} Face 35664 9455 9468 19650 {rgb=(.2 .2 .2)} Face 35665 9388 9236 19651 {rgb=(.2 .2 .2)} Face 35666 9236 9247 19651 {rgb=(.2 .2 .2)} Face 35667 9247 9379 19651 {rgb=(.2 .2 .2)} Face 35668 9379 9388 19651 {rgb=(.2 .2 .2)} Face 35669 9236 8526 19652 {rgb=(.2 .2 .2)} Face 35670 8526 8524 19652 {rgb=(.2 .2 .2)} Face 35671 8524 9247 19652 {rgb=(.2 .2 .2)} Face 35672 9247 9236 19652 {rgb=(.2 .2 .2)} Face 35673 8526 8494 19653 {rgb=(.2 .2 .2)} Face 35674 8494 8528 19653 {rgb=(.2 .2 .2)} Face 35675 8528 8524 19653 {rgb=(.2 .2 .2)} Face 35676 8524 8526 19653 {rgb=(.2 .2 .2)} Face 35677 9306 9438 19654 {rgb=(.2 .2 .2)} Face 35678 9438 9434 19654 {rgb=(.2 .2 .2)} Face 35679 9434 9283 19654 {rgb=(.2 .2 .2)} Face 35680 9283 9306 19654 {rgb=(.2 .2 .2)} Face 35681 9462 9397 19655 {rgb=(.2 .2 .2)} Face 35682 9397 9421 19655 {rgb=(.2 .2 .2)} Face 35683 9421 9515 19655 {rgb=(.2 .2 .2)} Face 35684 9515 9462 19655 {rgb=(.2 .2 .2)} Face 35685 9862 9935 19656 {rgb=(.2 .2 .2)} Face 35686 9935 9917 19656 {rgb=(.2 .2 .2)} Face 35687 9917 9836 19656 {rgb=(.2 .2 .2)} Face 35688 9836 9862 19656 {rgb=(.2 .2 .2)} Face 35689 9449 9551 19657 {rgb=(.2 .2 .2)} Face 35690 9551 9515 19657 {rgb=(.2 .2 .2)} Face 35691 9515 9421 19657 {rgb=(.2 .2 .2)} Face 35692 9421 9449 19657 {rgb=(.2 .2 .2)} Face 35693 9515 9836 19658 {rgb=(.2 .2 .2)} Face 35694 9836 9794 19658 {rgb=(.2 .2 .2)} Face 35695 9794 9462 19658 {rgb=(.2 .2 .2)} Face 35696 9462 9515 19658 {rgb=(.2 .2 .2)} Face 35697 9551 9862 19659 {rgb=(.2 .2 .2)} Face 35698 9862 9836 19659 {rgb=(.2 .2 .2)} Face 35699 9836 9515 19659 {rgb=(.2 .2 .2)} Face 35700 9515 9551 19659 {rgb=(.2 .2 .2)} Face 35701 9836 9917 19660 {rgb=(.2 .2 .2)} Face 35702 9917 9895 19660 {rgb=(.2 .2 .2)} Face 35703 9895 9794 19660 {rgb=(.2 .2 .2)} Face 35704 9794 9836 19660 {rgb=(.2 .2 .2)} Face 35705 9545 7740 19661 {rgb=(.2 .2 .2)} Face 35706 7740 7735 19661 {rgb=(.2 .2 .2)} Face 35707 7735 9734 19661 {rgb=(.2 .2 .2)} Face 35708 9734 9545 19661 {rgb=(.2 .2 .2)} Face 35709 9404 8740 19662 {rgb=(.2 .2 .2)} Face 35710 8740 8810 19662 {rgb=(.2 .2 .2)} Face 35711 8810 9407 19662 {rgb=(.2 .2 .2)} Face 35712 9407 9404 19662 {rgb=(.2 .2 .2)} Face 35713 9561 9404 19663 {rgb=(.2 .2 .2)} Face 35714 9404 9407 19663 {rgb=(.2 .2 .2)} Face 35715 9407 9550 19663 {rgb=(.2 .2 .2)} Face 35716 9550 9561 19663 {rgb=(.2 .2 .2)} Face 35717 9733 9561 19664 {rgb=(.2 .2 .2)} Face 35718 9561 9550 19664 {rgb=(.2 .2 .2)} Face 35719 9550 9753 19664 {rgb=(.2 .2 .2)} Face 35720 9753 9733 19664 {rgb=(.2 .2 .2)} Face 35721 9923 9844 19665 {rgb=(.2 .2 .2)} Face 35722 9844 9854 19665 {rgb=(.2 .2 .2)} Face 35723 9854 9905 19665 {rgb=(.2 .2 .2)} Face 35724 9905 9923 19665 {rgb=(.2 .2 .2)} Face 35725 9954 9923 19666 {rgb=(.2 .2 .2)} Face 35726 9923 9905 19666 {rgb=(.2 .2 .2)} Face 35727 9905 9934 19666 {rgb=(.2 .2 .2)} Face 35728 9934 9954 19666 {rgb=(.2 .2 .2)} Face 35729 10035 9954 19667 {rgb=(.2 .2 .2)} Face 35730 9954 9934 19667 {rgb=(.2 .2 .2)} Face 35731 9934 9986 19667 {rgb=(.2 .2 .2)} Face 35732 9986 10035 19667 {rgb=(.2 .2 .2)} Face 35733 9550 9407 19668 {rgb=(.2 .2 .2)} Face 35734 9407 9422 19668 {rgb=(.2 .2 .2)} Face 35735 9422 9562 19668 {rgb=(.2 .2 .2)} Face 35736 9562 9550 19668 {rgb=(.2 .2 .2)} Face 35737 9887 9895 19669 {rgb=(.2 .2 .2)} Face 35738 9895 9905 19669 {rgb=(.2 .2 .2)} Face 35739 9905 9857 19669 {rgb=(.2 .2 .2)} Face 35740 9857 9887 19669 {rgb=(.2 .2 .2)} Face 35741 9421 9397 19670 {rgb=(.2 .2 .2)} Face 35742 9397 9390 19670 {rgb=(.2 .2 .2)} Face 35743 9390 9416 19670 {rgb=(.2 .2 .2)} Face 35744 9416 9421 19670 {rgb=(.2 .2 .2)} Face 35745 9095 9091 19671 {rgb=(.2 .2 .2)} Face 35746 9091 9424 19671 {rgb=(.2 .2 .2)} Face 35747 9424 9425 19671 {rgb=(.2 .2 .2)} Face 35748 9425 9095 19671 {rgb=(.2 .2 .2)} Face 35749 8829 9095 19672 {rgb=(.2 .2 .2)} Face 35750 9095 9425 19672 {rgb=(.2 .2 .2)} Face 35751 9425 9395 19672 {rgb=(.2 .2 .2)} Face 35752 9395 8829 19672 {rgb=(.2 .2 .2)} Face 35753 8855 8829 19673 {rgb=(.2 .2 .2)} Face 35754 8829 9395 19673 {rgb=(.2 .2 .2)} Face 35755 9395 9390 19673 {rgb=(.2 .2 .2)} Face 35756 9390 8855 19673 {rgb=(.2 .2 .2)} Face 35757 9947 9943 19674 {rgb=(.2 .2 .2)} Face 35758 9943 9901 19674 {rgb=(.2 .2 .2)} Face 35759 9901 9896 19674 {rgb=(.2 .2 .2)} Face 35760 9896 9947 19674 {rgb=(.2 .2 .2)} Face 35761 9954 9947 19675 {rgb=(.2 .2 .2)} Face 35762 9947 9896 19675 {rgb=(.2 .2 .2)} Face 35763 9896 9923 19675 {rgb=(.2 .2 .2)} Face 35764 9923 9954 19675 {rgb=(.2 .2 .2)} Face 35765 9589 9502 19676 {rgb=(.2 .2 .2)} Face 35766 9502 9500 19676 {rgb=(.2 .2 .2)} Face 35767 9500 9598 19676 {rgb=(.2 .2 .2)} Face 35768 9598 9589 19676 {rgb=(.2 .2 .2)} Face 35769 9565 9751 19677 {rgb=(.2 .2 .2)} Face 35770 9751 9675 19677 {rgb=(.2 .2 .2)} Face 35771 9675 9552 19677 {rgb=(.2 .2 .2)} Face 35772 9552 9565 19677 {rgb=(.2 .2 .2)} Face 35773 9565 9519 19678 {rgb=(.2 .2 .2)} Face 35774 9519 9612 19678 {rgb=(.2 .2 .2)} Face 35775 9612 9647 19678 {rgb=(.2 .2 .2)} Face 35776 9647 9565 19678 {rgb=(.2 .2 .2)} Face 35777 9425 9424 19679 {rgb=(.2 .2 .2)} Face 35778 9424 9467 19679 {rgb=(.2 .2 .2)} Face 35779 9467 9472 19679 {rgb=(.2 .2 .2)} Face 35780 9472 9425 19679 {rgb=(.2 .2 .2)} Face 35781 9395 9425 19680 {rgb=(.2 .2 .2)} Face 35782 9425 9472 19680 {rgb=(.2 .2 .2)} Face 35783 9472 9428 19680 {rgb=(.2 .2 .2)} Face 35784 9428 9395 19680 {rgb=(.2 .2 .2)} Face 35785 9390 9395 19681 {rgb=(.2 .2 .2)} Face 35786 9395 9428 19681 {rgb=(.2 .2 .2)} Face 35787 9428 9416 19681 {rgb=(.2 .2 .2)} Face 35788 9416 9390 19681 {rgb=(.2 .2 .2)} Face 35789 9472 9467 19682 {rgb=(.2 .2 .2)} Face 35790 9467 9450 19682 {rgb=(.2 .2 .2)} Face 35791 9450 9459 19682 {rgb=(.2 .2 .2)} Face 35792 9459 9472 19682 {rgb=(.2 .2 .2)} Face 35793 9428 9472 19683 {rgb=(.2 .2 .2)} Face 35794 9472 9459 19683 {rgb=(.2 .2 .2)} Face 35795 9459 9463 19683 {rgb=(.2 .2 .2)} Face 35796 9463 9428 19683 {rgb=(.2 .2 .2)} Face 35797 9416 9428 19684 {rgb=(.2 .2 .2)} Face 35798 9428 9463 19684 {rgb=(.2 .2 .2)} Face 35799 9463 9502 19684 {rgb=(.2 .2 .2)} Face 35800 9502 9416 19684 {rgb=(.2 .2 .2)} Face 35801 9459 9450 19685 {rgb=(.2 .2 .2)} Face 35802 9450 9431 19685 {rgb=(.2 .2 .2)} Face 35803 9431 9432 19685 {rgb=(.2 .2 .2)} Face 35804 9432 9459 19685 {rgb=(.2 .2 .2)} Face 35805 9463 9459 19686 {rgb=(.2 .2 .2)} Face 35806 9459 9432 19686 {rgb=(.2 .2 .2)} Face 35807 9432 9437 19686 {rgb=(.2 .2 .2)} Face 35808 9437 9463 19686 {rgb=(.2 .2 .2)} Face 35809 9502 9463 19687 {rgb=(.2 .2 .2)} Face 35810 9463 9437 19687 {rgb=(.2 .2 .2)} Face 35811 9437 9500 19687 {rgb=(.2 .2 .2)} Face 35812 9500 9502 19687 {rgb=(.2 .2 .2)} Face 35813 9583 9588 19688 {rgb=(.2 .2 .2)} Face 35814 9588 9760 19688 {rgb=(.2 .2 .2)} Face 35815 9760 9769 19688 {rgb=(.2 .2 .2)} Face 35816 9769 9583 19688 {rgb=(.2 .2 .2)} Face 35817 9612 9583 19689 {rgb=(.2 .2 .2)} Face 35818 9583 9769 19689 {rgb=(.2 .2 .2)} Face 35819 9769 9801 19689 {rgb=(.2 .2 .2)} Face 35820 9801 9612 19689 {rgb=(.2 .2 .2)} Face 35821 10038 10031 19690 {rgb=(.2 .2 .2)} Face 35822 10031 9943 19690 {rgb=(.2 .2 .2)} Face 35823 9943 9947 19690 {rgb=(.2 .2 .2)} Face 35824 9947 10038 19690 {rgb=(.2 .2 .2)} Face 35825 10035 10038 19691 {rgb=(.2 .2 .2)} Face 35826 10038 9947 19691 {rgb=(.2 .2 .2)} Face 35827 9947 9954 19691 {rgb=(.2 .2 .2)} Face 35828 9954 10035 19691 {rgb=(.2 .2 .2)} Face 35829 9889 9986 19692 {rgb=(.2 .2 .2)} Face 35830 9986 9935 19692 {rgb=(.2 .2 .2)} Face 35831 9935 9862 19692 {rgb=(.2 .2 .2)} Face 35832 9862 9889 19692 {rgb=(.2 .2 .2)} Face 35833 10010 10056 19693 {rgb=(.2 .2 .2)} Face 35834 10056 10138 19693 {rgb=(.2 .2 .2)} Face 35835 10138 10083 19693 {rgb=(.2 .2 .2)} Face 35836 10083 10010 19693 {rgb=(.2 .2 .2)} Face 35837 10082 10080 19694 {rgb=(.2 .2 .2)} Face 35838 10080 10031 19694 {rgb=(.2 .2 .2)} Face 35839 10031 10038 19694 {rgb=(.2 .2 .2)} Face 35840 10038 10082 19694 {rgb=(.2 .2 .2)} Face 35841 10055 10082 19695 {rgb=(.2 .2 .2)} Face 35842 10082 10038 19695 {rgb=(.2 .2 .2)} Face 35843 10038 10035 19695 {rgb=(.2 .2 .2)} Face 35844 10035 10055 19695 {rgb=(.2 .2 .2)} Face 35845 9993 10055 19696 {rgb=(.2 .2 .2)} Face 35846 10055 10035 19696 {rgb=(.2 .2 .2)} Face 35847 10035 9986 19696 {rgb=(.2 .2 .2)} Face 35848 9986 9993 19696 {rgb=(.2 .2 .2)} Face 35849 9879 9993 19697 {rgb=(.2 .2 .2)} Face 35850 9993 9986 19697 {rgb=(.2 .2 .2)} Face 35851 9986 9889 19697 {rgb=(.2 .2 .2)} Face 35852 9889 9879 19697 {rgb=(.2 .2 .2)} Face 35853 10151 10152 19698 {rgb=(.2 .2 .2)} Face 35854 10152 10111 19698 {rgb=(.2 .2 .2)} Face 35855 10111 10110 19698 {rgb=(.2 .2 .2)} Face 35856 10110 10151 19698 {rgb=(.2 .2 .2)} Face 35857 10127 10151 19699 {rgb=(.2 .2 .2)} Face 35858 10151 10110 19699 {rgb=(.2 .2 .2)} Face 35859 10110 10094 19699 {rgb=(.2 .2 .2)} Face 35860 10094 10127 19699 {rgb=(.2 .2 .2)} Face 35861 10073 10127 19700 {rgb=(.2 .2 .2)} Face 35862 10127 10094 19700 {rgb=(.2 .2 .2)} Face 35863 10094 10030 19700 {rgb=(.2 .2 .2)} Face 35864 10030 10073 19700 {rgb=(.2 .2 .2)} Face 35865 9951 10073 19701 {rgb=(.2 .2 .2)} Face 35866 10073 10030 19701 {rgb=(.2 .2 .2)} Face 35867 10030 9925 19701 {rgb=(.2 .2 .2)} Face 35868 9925 9951 19701 {rgb=(.2 .2 .2)} Face 35869 9589 9889 19702 {rgb=(.2 .2 .2)} Face 35870 9889 9862 19702 {rgb=(.2 .2 .2)} Face 35871 9862 9551 19702 {rgb=(.2 .2 .2)} Face 35872 9551 9589 19702 {rgb=(.2 .2 .2)} Face 35873 9544 9693 19703 {rgb=(.2 .2 .2)} Face 35874 9693 9692 19703 {rgb=(.2 .2 .2)} Face 35875 9692 9543 19703 {rgb=(.2 .2 .2)} Face 35876 9543 9544 19703 {rgb=(.2 .2 .2)} Face 35877 9583 9521 19704 {rgb=(.2 .2 .2)} Face 35878 9521 9513 19704 {rgb=(.2 .2 .2)} Face 35879 9513 9588 19704 {rgb=(.2 .2 .2)} Face 35880 9588 9583 19704 {rgb=(.2 .2 .2)} Face 35881 8891 9413 19705 {rgb=(.2 .2 .2)} Face 35882 9413 9426 19705 {rgb=(.2 .2 .2)} Face 35883 9426 8985 19705 {rgb=(.2 .2 .2)} Face 35884 8985 8891 19705 {rgb=(.2 .2 .2)} Face 35885 9519 9565 19706 {rgb=(.2 .2 .2)} Face 35886 9565 9552 19706 {rgb=(.2 .2 .2)} Face 35887 9552 9486 19706 {rgb=(.2 .2 .2)} Face 35888 9486 9519 19706 {rgb=(.2 .2 .2)} Face 35889 9407 8810 19707 {rgb=(.2 .2 .2)} Face 35890 8810 9131 19707 {rgb=(.2 .2 .2)} Face 35891 9131 9422 19707 {rgb=(.2 .2 .2)} Face 35892 9422 9407 19707 {rgb=(.2 .2 .2)} Face 35893 8365 8555 19708 {rgb=(.2 .2 .2)} Face 35894 8555 8325 19708 {rgb=(.2 .2 .2)} Face 35895 8325 8213 19708 {rgb=(.2 .2 .2)} Face 35896 8213 8365 19708 {rgb=(.2 .2 .2)} Face 35897 9693 9544 19709 {rgb=(.2 .2 .2)} Face 35898 9544 9561 19709 {rgb=(.2 .2 .2)} Face 35899 9561 9733 19709 {rgb=(.2 .2 .2)} Face 35900 9733 9693 19709 {rgb=(.2 .2 .2)} Face 35901 9486 9483 19710 {rgb=(.2 .2 .2)} Face 35902 9483 9521 19710 {rgb=(.2 .2 .2)} Face 35903 9521 9519 19710 {rgb=(.2 .2 .2)} Face 35904 9519 9486 19710 {rgb=(.2 .2 .2)} Face 35905 9863 9930 19711 {rgb=(.2 .2 .2)} Face 35906 9930 10056 19711 {rgb=(.2 .2 .2)} Face 35907 10056 10010 19711 {rgb=(.2 .2 .2)} Face 35908 10010 9863 19711 {rgb=(.2 .2 .2)} Face 35909 9513 9521 19712 {rgb=(.2 .2 .2)} Face 35910 9521 9483 19712 {rgb=(.2 .2 .2)} Face 35911 9483 9477 19712 {rgb=(.2 .2 .2)} Face 35912 9477 9513 19712 {rgb=(.2 .2 .2)} Face 35913 10161 10065 19713 {rgb=(.2 .2 .2)} Face 35914 10065 10062 19713 {rgb=(.2 .2 .2)} Face 35915 10062 10165 19713 {rgb=(.2 .2 .2)} Face 35916 10165 10161 19713 {rgb=(.2 .2 .2)} Face 35917 9598 9879 19714 {rgb=(.2 .2 .2)} Face 35918 9879 9889 19714 {rgb=(.2 .2 .2)} Face 35919 9889 9589 19714 {rgb=(.2 .2 .2)} Face 35920 9589 9598 19714 {rgb=(.2 .2 .2)} Face 35921 9751 9951 19715 {rgb=(.2 .2 .2)} Face 35922 9951 9925 19715 {rgb=(.2 .2 .2)} Face 35923 9925 9675 19715 {rgb=(.2 .2 .2)} Face 35924 9675 9751 19715 {rgb=(.2 .2 .2)} Face 35925 9413 9544 19716 {rgb=(.2 .2 .2)} Face 35926 9544 9543 19716 {rgb=(.2 .2 .2)} Face 35927 9543 9426 19716 {rgb=(.2 .2 .2)} Face 35928 9426 9413 19716 {rgb=(.2 .2 .2)} Face 35929 10151 10161 19717 {rgb=(.2 .2 .2)} Face 35930 10161 10165 19717 {rgb=(.2 .2 .2)} Face 35931 10165 10152 19717 {rgb=(.2 .2 .2)} Face 35932 10152 10151 19717 {rgb=(.2 .2 .2)} Face 35933 9948 9769 19718 {rgb=(.2 .2 .2)} Face 35934 9769 9760 19718 {rgb=(.2 .2 .2)} Face 35935 9760 9938 19718 {rgb=(.2 .2 .2)} Face 35936 9938 9948 19718 {rgb=(.2 .2 .2)} Face 35937 8555 8365 19719 {rgb=(.2 .2 .2)} Face 35938 8365 8400 19719 {rgb=(.2 .2 .2)} Face 35939 8400 8553 19719 {rgb=(.2 .2 .2)} Face 35940 8553 8555 19719 {rgb=(.2 .2 .2)} Face 35941 9612 9519 19720 {rgb=(.2 .2 .2)} Face 35942 9519 9521 19720 {rgb=(.2 .2 .2)} Face 35943 9521 9583 19720 {rgb=(.2 .2 .2)} Face 35944 9583 9612 19720 {rgb=(.2 .2 .2)} Face 35945 10056 10065 19721 {rgb=(.2 .2 .2)} Face 35946 10065 10161 19721 {rgb=(.2 .2 .2)} Face 35947 10161 10138 19721 {rgb=(.2 .2 .2)} Face 35948 10138 10056 19721 {rgb=(.2 .2 .2)} Face 35949 9948 10065 19722 {rgb=(.2 .2 .2)} Face 35950 10065 10056 19722 {rgb=(.2 .2 .2)} Face 35951 10056 9930 19722 {rgb=(.2 .2 .2)} Face 35952 9930 9948 19722 {rgb=(.2 .2 .2)} Face 35953 9612 9801 19723 {rgb=(.2 .2 .2)} Face 35954 9801 9863 19723 {rgb=(.2 .2 .2)} Face 35955 9863 9647 19723 {rgb=(.2 .2 .2)} Face 35956 9647 9612 19723 {rgb=(.2 .2 .2)} Face 35957 9923 9896 19724 {rgb=(.2 .2 .2)} Face 35958 9896 9805 19724 {rgb=(.2 .2 .2)} Face 35959 9805 9844 19724 {rgb=(.2 .2 .2)} Face 35960 9844 9923 19724 {rgb=(.2 .2 .2)} Face 35961 9544 9413 19725 {rgb=(.2 .2 .2)} Face 35962 9413 9404 19725 {rgb=(.2 .2 .2)} Face 35963 9404 9561 19725 {rgb=(.2 .2 .2)} Face 35964 9561 9544 19725 {rgb=(.2 .2 .2)} Face 35965 9404 9413 19726 {rgb=(.2 .2 .2)} Face 35966 9413 8891 19726 {rgb=(.2 .2 .2)} Face 35967 8891 8740 19726 {rgb=(.2 .2 .2)} Face 35968 8740 9404 19726 {rgb=(.2 .2 .2)} Face 35969 8213 8325 19727 {rgb=(.2 .2 .2)} Face 35970 8325 8359 19727 {rgb=(.2 .2 .2)} Face 35971 8359 8250 19727 {rgb=(.2 .2 .2)} Face 35972 8250 8213 19727 {rgb=(.2 .2 .2)} Face 35973 10073 10083 19728 {rgb=(.2 .2 .2)} Face 35974 10083 10138 19728 {rgb=(.2 .2 .2)} Face 35975 10138 10127 19728 {rgb=(.2 .2 .2)} Face 35976 10127 10073 19728 {rgb=(.2 .2 .2)} Face 35977 9769 9948 19729 {rgb=(.2 .2 .2)} Face 35978 9948 9930 19729 {rgb=(.2 .2 .2)} Face 35979 9930 9801 19729 {rgb=(.2 .2 .2)} Face 35980 9801 9769 19729 {rgb=(.2 .2 .2)} Face 35981 10065 9948 19730 {rgb=(.2 .2 .2)} Face 35982 9948 9938 19730 {rgb=(.2 .2 .2)} Face 35983 9938 10062 19730 {rgb=(.2 .2 .2)} Face 35984 10062 10065 19730 {rgb=(.2 .2 .2)} Face 35985 9802 9805 19731 {rgb=(.2 .2 .2)} Face 35986 9805 9896 19731 {rgb=(.2 .2 .2)} Face 35987 9896 9901 19731 {rgb=(.2 .2 .2)} Face 35988 9901 9802 19731 {rgb=(.2 .2 .2)} Face 35989 10127 10138 19732 {rgb=(.2 .2 .2)} Face 35990 10138 10161 19732 {rgb=(.2 .2 .2)} Face 35991 10161 10151 19732 {rgb=(.2 .2 .2)} Face 35992 10151 10127 19732 {rgb=(.2 .2 .2)} Face 35993 9951 9751 19733 {rgb=(.2 .2 .2)} Face 35994 9751 9863 19733 {rgb=(.2 .2 .2)} Face 35995 9863 10010 19733 {rgb=(.2 .2 .2)} Face 35996 10010 9951 19733 {rgb=(.2 .2 .2)} Face 35997 1563 1005 19734 {rgb=(.2 .2 .2)} Face 35998 1005 1173 19734 {rgb=(.2 .2 .2)} Face 35999 1173 1546 19734 {rgb=(.2 .2 .2)} Face 36000 1546 1563 19734 {rgb=(.2 .2 .2)} Face 36001 1047 1155 19735 {rgb=(.2 .2 .2)} Face 36002 1155 1668 19735 {rgb=(.2 .2 .2)} Face 36003 1668 986 19735 {rgb=(.2 .2 .2)} Face 36004 986 1047 19735 {rgb=(.2 .2 .2)} Face 36005 1522 1622 19736 {rgb=(.2 .2 .2)} Face 36006 1622 2211 19736 {rgb=(.2 .2 .2)} Face 36007 2211 1392 19736 {rgb=(.2 .2 .2)} Face 36008 1392 1522 19736 {rgb=(.2 .2 .2)} Face 36009 1006 910 19737 {rgb=(.2 .2 .2)} Face 36010 910 957 19737 {rgb=(.2 .2 .2)} Face 36011 957 1112 19737 {rgb=(.2 .2 .2)} Face 36012 1112 1006 19737 {rgb=(.2 .2 .2)} Face 36013 1263 1112 19738 {rgb=(.2 .2 .2)} Face 36014 1112 957 19738 {rgb=(.2 .2 .2)} Face 36015 957 1409 19738 {rgb=(.2 .2 .2)} Face 36016 1409 1263 19738 {rgb=(.2 .2 .2)} Face 36017 1496 1409 19739 {rgb=(.2 .2 .2)} Face 36018 1409 957 19739 {rgb=(.2 .2 .2)} Face 36019 957 1534 19739 {rgb=(.2 .2 .2)} Face 36020 1534 1496 19739 {rgb=(.2 .2 .2)} Face 36021 1049 1123 19740 {rgb=(.2 .2 .2)} Face 36022 1123 1173 19740 {rgb=(.2 .2 .2)} Face 36023 1173 1005 19740 {rgb=(.2 .2 .2)} Face 36024 1005 1049 19740 {rgb=(.2 .2 .2)} Face 36025 990 1036 19741 {rgb=(.2 .2 .2)} Face 36026 1036 1082 19741 {rgb=(.2 .2 .2)} Face 36027 1082 1052 19741 {rgb=(.2 .2 .2)} Face 36028 1052 990 19741 {rgb=(.2 .2 .2)} Face 36029 1052 1082 19742 {rgb=(.2 .2 .2)} Face 36030 1082 1178 19742 {rgb=(.2 .2 .2)} Face 36031 1178 1166 19742 {rgb=(.2 .2 .2)} Face 36032 1166 1052 19742 {rgb=(.2 .2 .2)} Face 36033 1166 1178 19743 {rgb=(.2 .2 .2)} Face 36034 1178 1443 19743 {rgb=(.2 .2 .2)} Face 36035 1443 1447 19743 {rgb=(.2 .2 .2)} Face 36036 1447 1166 19743 {rgb=(.2 .2 .2)} Face 36037 1447 1443 19744 {rgb=(.2 .2 .2)} Face 36038 1443 1519 19744 {rgb=(.2 .2 .2)} Face 36039 1519 1545 19744 {rgb=(.2 .2 .2)} Face 36040 1545 1447 19744 {rgb=(.2 .2 .2)} Face 36041 1545 1519 19745 {rgb=(.2 .2 .2)} Face 36042 1519 1553 19745 {rgb=(.2 .2 .2)} Face 36043 1553 1608 19745 {rgb=(.2 .2 .2)} Face 36044 1608 1545 19745 {rgb=(.2 .2 .2)} Face 36045 1608 1553 19746 {rgb=(.2 .2 .2)} Face 36046 1553 1557 19746 {rgb=(.2 .2 .2)} Face 36047 1557 1613 19746 {rgb=(.2 .2 .2)} Face 36048 1613 1608 19746 {rgb=(.2 .2 .2)} Face 36049 1613 1557 19747 {rgb=(.2 .2 .2)} Face 36050 1557 1567 19747 {rgb=(.2 .2 .2)} Face 36051 1567 1614 19747 {rgb=(.2 .2 .2)} Face 36052 1614 1613 19747 {rgb=(.2 .2 .2)} Face 36053 1585 1584 19748 {rgb=(.2 .2 .2)} Face 36054 1584 1002 19748 {rgb=(.2 .2 .2)} Face 36055 1002 1005 19748 {rgb=(.2 .2 .2)} Face 36056 1005 1585 19748 {rgb=(.2 .2 .2)} Face 36057 965 1016 19749 {rgb=(.2 .2 .2)} Face 36058 1016 1017 19749 {rgb=(.2 .2 .2)} Face 36059 1017 963 19749 {rgb=(.2 .2 .2)} Face 36060 963 965 19749 {rgb=(.2 .2 .2)} Face 36061 963 1017 19750 {rgb=(.2 .2 .2)} Face 36062 1017 1036 19750 {rgb=(.2 .2 .2)} Face 36063 1036 990 19750 {rgb=(.2 .2 .2)} Face 36064 990 963 19750 {rgb=(.2 .2 .2)} Face 36065 935 971 19751 {rgb=(.2 .2 .2)} Face 36066 971 966 19751 {rgb=(.2 .2 .2)} Face 36067 966 934 19751 {rgb=(.2 .2 .2)} Face 36068 934 935 19751 {rgb=(.2 .2 .2)} Face 36069 957 955 19752 {rgb=(.2 .2 .2)} Face 36070 955 1533 19752 {rgb=(.2 .2 .2)} Face 36071 1533 1534 19752 {rgb=(.2 .2 .2)} Face 36072 1534 957 19752 {rgb=(.2 .2 .2)} Face 36073 1568 1520 19753 {rgb=(.2 .2 .2)} Face 36074 1520 1517 19753 {rgb=(.2 .2 .2)} Face 36075 1517 1562 19753 {rgb=(.2 .2 .2)} Face 36076 1562 1568 19753 {rgb=(.2 .2 .2)} Face 36077 1562 1517 19754 {rgb=(.2 .2 .2)} Face 36078 1517 1521 19754 {rgb=(.2 .2 .2)} Face 36079 1521 1559 19754 {rgb=(.2 .2 .2)} Face 36080 1559 1562 19754 {rgb=(.2 .2 .2)} Face 36081 1559 1521 19755 {rgb=(.2 .2 .2)} Face 36082 1521 1478 19755 {rgb=(.2 .2 .2)} Face 36083 1478 1493 19755 {rgb=(.2 .2 .2)} Face 36084 1493 1559 19755 {rgb=(.2 .2 .2)} Face 36085 1493 1478 19756 {rgb=(.2 .2 .2)} Face 36086 1478 1366 19756 {rgb=(.2 .2 .2)} Face 36087 1366 1370 19756 {rgb=(.2 .2 .2)} Face 36088 1370 1493 19756 {rgb=(.2 .2 .2)} Face 36089 1370 1366 19757 {rgb=(.2 .2 .2)} Face 36090 1366 1135 19757 {rgb=(.2 .2 .2)} Face 36091 1135 1120 19757 {rgb=(.2 .2 .2)} Face 36092 1120 1370 19757 {rgb=(.2 .2 .2)} Face 36093 1120 1135 19758 {rgb=(.2 .2 .2)} Face 36094 1135 1048 19758 {rgb=(.2 .2 .2)} Face 36095 1048 1015 19758 {rgb=(.2 .2 .2)} Face 36096 1015 1120 19758 {rgb=(.2 .2 .2)} Face 36097 1015 1048 19759 {rgb=(.2 .2 .2)} Face 36098 1048 995 19759 {rgb=(.2 .2 .2)} Face 36099 995 951 19759 {rgb=(.2 .2 .2)} Face 36100 951 1015 19759 {rgb=(.2 .2 .2)} Face 36101 951 995 19760 {rgb=(.2 .2 .2)} Face 36102 995 971 19760 {rgb=(.2 .2 .2)} Face 36103 971 935 19760 {rgb=(.2 .2 .2)} Face 36104 935 951 19760 {rgb=(.2 .2 .2)} Face 36105 1280 1332 19761 {rgb=(.2 .2 .2)} Face 36106 1332 1598 19761 {rgb=(.2 .2 .2)} Face 36107 1598 1590 19761 {rgb=(.2 .2 .2)} Face 36108 1590 1280 19761 {rgb=(.2 .2 .2)} Face 36109 1590 1598 19762 {rgb=(.2 .2 .2)} Face 36110 1598 1649 19762 {rgb=(.2 .2 .2)} Face 36111 1649 1666 19762 {rgb=(.2 .2 .2)} Face 36112 1666 1590 19762 {rgb=(.2 .2 .2)} Face 36113 1666 1649 19763 {rgb=(.2 .2 .2)} Face 36114 1649 1702 19763 {rgb=(.2 .2 .2)} Face 36115 1702 1798 19763 {rgb=(.2 .2 .2)} Face 36116 1798 1666 19763 {rgb=(.2 .2 .2)} Face 36117 1798 1702 19764 {rgb=(.2 .2 .2)} Face 36118 1702 2025 19764 {rgb=(.2 .2 .2)} Face 36119 2025 2479 19764 {rgb=(.2 .2 .2)} Face 36120 2479 1798 19764 {rgb=(.2 .2 .2)} Face 36121 2479 2025 19765 {rgb=(.2 .2 .2)} Face 36122 2025 2082 19765 {rgb=(.2 .2 .2)} Face 36123 2082 2517 19765 {rgb=(.2 .2 .2)} Face 36124 2517 2479 19765 {rgb=(.2 .2 .2)} Face 36125 2517 2082 19766 {rgb=(.2 .2 .2)} Face 36126 2082 1686 19766 {rgb=(.2 .2 .2)} Face 36127 1686 1762 19766 {rgb=(.2 .2 .2)} Face 36128 1762 2517 19766 {rgb=(.2 .2 .2)} Face 36129 1762 1686 19767 {rgb=(.2 .2 .2)} Face 36130 1686 1615 19767 {rgb=(.2 .2 .2)} Face 36131 1615 1611 19767 {rgb=(.2 .2 .2)} Face 36132 1611 1762 19767 {rgb=(.2 .2 .2)} Face 36133 1611 1615 19768 {rgb=(.2 .2 .2)} Face 36134 1615 1489 19768 {rgb=(.2 .2 .2)} Face 36135 1489 1458 19768 {rgb=(.2 .2 .2)} Face 36136 1458 1611 19768 {rgb=(.2 .2 .2)} Face 36137 1458 1489 19769 {rgb=(.2 .2 .2)} Face 36138 1489 1329 19769 {rgb=(.2 .2 .2)} Face 36139 1329 1267 19769 {rgb=(.2 .2 .2)} Face 36140 1267 1458 19769 {rgb=(.2 .2 .2)} Face 36141 1267 1329 19770 {rgb=(.2 .2 .2)} Face 36142 1329 1305 19770 {rgb=(.2 .2 .2)} Face 36143 1305 1238 19770 {rgb=(.2 .2 .2)} Face 36144 1238 1267 19770 {rgb=(.2 .2 .2)} Face 36145 1238 1305 19771 {rgb=(.2 .2 .2)} Face 36146 1305 1270 19771 {rgb=(.2 .2 .2)} Face 36147 1270 1213 19771 {rgb=(.2 .2 .2)} Face 36148 1213 1238 19771 {rgb=(.2 .2 .2)} Face 36149 1213 1270 19772 {rgb=(.2 .2 .2)} Face 36150 1270 1332 19772 {rgb=(.2 .2 .2)} Face 36151 1332 1280 19772 {rgb=(.2 .2 .2)} Face 36152 1280 1213 19772 {rgb=(.2 .2 .2)} Face 36153 2718 2397 19773 {rgb=(.2 .2 .2)} Face 36154 2397 2044 19773 {rgb=(.2 .2 .2)} Face 36155 2044 2491 19773 {rgb=(.2 .2 .2)} Face 36156 2491 2718 19773 {rgb=(.2 .2 .2)} Face 36157 2491 2044 19774 {rgb=(.2 .2 .2)} Face 36158 2044 2149 19774 {rgb=(.2 .2 .2)} Face 36159 2149 2493 19774 {rgb=(.2 .2 .2)} Face 36160 2493 2491 19774 {rgb=(.2 .2 .2)} Face 36161 2493 2149 19775 {rgb=(.2 .2 .2)} Face 36162 2149 1880 19775 {rgb=(.2 .2 .2)} Face 36163 1880 2211 19775 {rgb=(.2 .2 .2)} Face 36164 2211 2493 19775 {rgb=(.2 .2 .2)} Face 36165 2211 1880 19776 {rgb=(.2 .2 .2)} Face 36166 1880 1419 19776 {rgb=(.2 .2 .2)} Face 36167 1419 1392 19776 {rgb=(.2 .2 .2)} Face 36168 1392 2211 19776 {rgb=(.2 .2 .2)} Face 36169 1392 1419 19777 {rgb=(.2 .2 .2)} Face 36170 1419 1412 19777 {rgb=(.2 .2 .2)} Face 36171 1412 1353 19777 {rgb=(.2 .2 .2)} Face 36172 1353 1392 19777 {rgb=(.2 .2 .2)} Face 36173 1353 1412 19778 {rgb=(.2 .2 .2)} Face 36174 1412 1413 19778 {rgb=(.2 .2 .2)} Face 36175 1413 1352 19778 {rgb=(.2 .2 .2)} Face 36176 1352 1353 19778 {rgb=(.2 .2 .2)} Face 36177 1352 1413 19779 {rgb=(.2 .2 .2)} Face 36178 1413 1365 19779 {rgb=(.2 .2 .2)} Face 36179 1365 1312 19779 {rgb=(.2 .2 .2)} Face 36180 1312 1352 19779 {rgb=(.2 .2 .2)} Face 36181 1312 1365 19780 {rgb=(.2 .2 .2)} Face 36182 1365 1350 19780 {rgb=(.2 .2 .2)} Face 36183 1350 1292 19780 {rgb=(.2 .2 .2)} Face 36184 1292 1312 19780 {rgb=(.2 .2 .2)} Face 36185 1292 1350 19781 {rgb=(.2 .2 .2)} Face 36186 1350 1503 19781 {rgb=(.2 .2 .2)} Face 36187 1503 1483 19781 {rgb=(.2 .2 .2)} Face 36188 1483 1292 19781 {rgb=(.2 .2 .2)} Face 36189 1483 1503 19782 {rgb=(.2 .2 .2)} Face 36190 1503 1628 19782 {rgb=(.2 .2 .2)} Face 36191 1628 1623 19782 {rgb=(.2 .2 .2)} Face 36192 1623 1483 19782 {rgb=(.2 .2 .2)} Face 36193 1623 1628 19783 {rgb=(.2 .2 .2)} Face 36194 1628 1707 19783 {rgb=(.2 .2 .2)} Face 36195 1707 1914 19783 {rgb=(.2 .2 .2)} Face 36196 1914 1623 19783 {rgb=(.2 .2 .2)} Face 36197 1914 1707 19784 {rgb=(.2 .2 .2)} Face 36198 1707 2232 19784 {rgb=(.2 .2 .2)} Face 36199 2232 2621 19784 {rgb=(.2 .2 .2)} Face 36200 2621 1914 19784 {rgb=(.2 .2 .2)} Face 36201 2621 2232 19785 {rgb=(.2 .2 .2)} Face 36202 2232 2311 19785 {rgb=(.2 .2 .2)} Face 36203 2311 2688 19785 {rgb=(.2 .2 .2)} Face 36204 2688 2621 19785 {rgb=(.2 .2 .2)} Face 36205 2688 2311 19786 {rgb=(.2 .2 .2)} Face 36206 2311 2397 19786 {rgb=(.2 .2 .2)} Face 36207 2397 2718 19786 {rgb=(.2 .2 .2)} Face 36208 2718 2688 19786 {rgb=(.2 .2 .2)} Face 36209 2188 1774 19787 {rgb=(.2 .2 .2)} Face 36210 1774 1712 19787 {rgb=(.2 .2 .2)} Face 36211 1712 2015 19787 {rgb=(.2 .2 .2)} Face 36212 2015 2188 19787 {rgb=(.2 .2 .2)} Face 36213 2015 1712 19788 {rgb=(.2 .2 .2)} Face 36214 1712 1669 19788 {rgb=(.2 .2 .2)} Face 36215 1669 1699 19788 {rgb=(.2 .2 .2)} Face 36216 1699 2015 19788 {rgb=(.2 .2 .2)} Face 36217 1699 1669 19789 {rgb=(.2 .2 .2)} Face 36218 1669 1637 19789 {rgb=(.2 .2 .2)} Face 36219 1637 1648 19789 {rgb=(.2 .2 .2)} Face 36220 1648 1699 19789 {rgb=(.2 .2 .2)} Face 36221 1648 1637 19790 {rgb=(.2 .2 .2)} Face 36222 1637 1589 19790 {rgb=(.2 .2 .2)} Face 36223 1589 1583 19790 {rgb=(.2 .2 .2)} Face 36224 1583 1648 19790 {rgb=(.2 .2 .2)} Face 36225 1583 1589 19791 {rgb=(.2 .2 .2)} Face 36226 1589 1304 19791 {rgb=(.2 .2 .2)} Face 36227 1304 1251 19791 {rgb=(.2 .2 .2)} Face 36228 1251 1583 19791 {rgb=(.2 .2 .2)} Face 36229 1251 1304 19792 {rgb=(.2 .2 .2)} Face 36230 1304 1206 19792 {rgb=(.2 .2 .2)} Face 36231 1206 1158 19792 {rgb=(.2 .2 .2)} Face 36232 1158 1251 19792 {rgb=(.2 .2 .2)} Face 36233 1158 1206 19793 {rgb=(.2 .2 .2)} Face 36234 1206 1242 19793 {rgb=(.2 .2 .2)} Face 36235 1242 1188 19793 {rgb=(.2 .2 .2)} Face 36236 1188 1158 19793 {rgb=(.2 .2 .2)} Face 36237 1188 1242 19794 {rgb=(.2 .2 .2)} Face 36238 1242 1239 19794 {rgb=(.2 .2 .2)} Face 36239 1239 1191 19794 {rgb=(.2 .2 .2)} Face 36240 1191 1188 19794 {rgb=(.2 .2 .2)} Face 36241 1191 1239 19795 {rgb=(.2 .2 .2)} Face 36242 1239 1252 19795 {rgb=(.2 .2 .2)} Face 36243 1252 1201 19795 {rgb=(.2 .2 .2)} Face 36244 1201 1191 19795 {rgb=(.2 .2 .2)} Face 36245 1201 1252 19796 {rgb=(.2 .2 .2)} Face 36246 1252 1307 19796 {rgb=(.2 .2 .2)} Face 36247 1307 1240 19796 {rgb=(.2 .2 .2)} Face 36248 1240 1201 19796 {rgb=(.2 .2 .2)} Face 36249 1240 1307 19797 {rgb=(.2 .2 .2)} Face 36250 1307 1306 19797 {rgb=(.2 .2 .2)} Face 36251 1306 1243 19797 {rgb=(.2 .2 .2)} Face 36252 1243 1240 19797 {rgb=(.2 .2 .2)} Face 36253 1243 1306 19798 {rgb=(.2 .2 .2)} Face 36254 1306 1316 19798 {rgb=(.2 .2 .2)} Face 36255 1316 1271 19798 {rgb=(.2 .2 .2)} Face 36256 1271 1243 19798 {rgb=(.2 .2 .2)} Face 36257 1271 1316 19799 {rgb=(.2 .2 .2)} Face 36258 1316 1685 19799 {rgb=(.2 .2 .2)} Face 36259 1685 1732 19799 {rgb=(.2 .2 .2)} Face 36260 1732 1271 19799 {rgb=(.2 .2 .2)} Face 36261 1732 1685 19800 {rgb=(.2 .2 .2)} Face 36262 1685 1737 19800 {rgb=(.2 .2 .2)} Face 36263 1737 1954 19800 {rgb=(.2 .2 .2)} Face 36264 1954 1732 19800 {rgb=(.2 .2 .2)} Face 36265 1954 1737 19801 {rgb=(.2 .2 .2)} Face 36266 1737 1708 19801 {rgb=(.2 .2 .2)} Face 36267 1708 1950 19801 {rgb=(.2 .2 .2)} Face 36268 1950 1954 19801 {rgb=(.2 .2 .2)} Face 36269 1950 1708 19802 {rgb=(.2 .2 .2)} Face 36270 1708 1780 19802 {rgb=(.2 .2 .2)} Face 36271 1780 2214 19802 {rgb=(.2 .2 .2)} Face 36272 2214 1950 19802 {rgb=(.2 .2 .2)} Face 36273 2214 1780 19803 {rgb=(.2 .2 .2)} Face 36274 1780 1774 19803 {rgb=(.2 .2 .2)} Face 36275 1774 2188 19803 {rgb=(.2 .2 .2)} Face 36276 2188 2214 19803 {rgb=(.2 .2 .2)} Face 36277 2366 2133 19804 {rgb=(.2 .2 .2)} Face 36278 2133 3009 19804 {rgb=(.2 .2 .2)} Face 36279 3009 3185 19804 {rgb=(.2 .2 .2)} Face 36280 3185 2366 19804 {rgb=(.2 .2 .2)} Face 36281 1728 1705 19805 {rgb=(.2 .2 .2)} Face 36282 1705 2133 19805 {rgb=(.2 .2 .2)} Face 36283 2133 2366 19805 {rgb=(.2 .2 .2)} Face 36284 2366 1728 19805 {rgb=(.2 .2 .2)} Face 36285 1610 1612 19806 {rgb=(.2 .2 .2)} Face 36286 1612 1705 19806 {rgb=(.2 .2 .2)} Face 36287 1705 1728 19806 {rgb=(.2 .2 .2)} Face 36288 1728 1610 19806 {rgb=(.2 .2 .2)} Face 36289 1612 1610 19807 {rgb=(.2 .2 .2)} Face 36290 1610 1491 19807 {rgb=(.2 .2 .2)} Face 36291 1491 1500 19807 {rgb=(.2 .2 .2)} Face 36292 1500 1612 19807 {rgb=(.2 .2 .2)} Face 36293 3185 3009 19808 {rgb=(.2 .2 .2)} Face 36294 3009 3302 19808 {rgb=(.2 .2 .2)} Face 36295 3302 3465 19808 {rgb=(.2 .2 .2)} Face 36296 3465 3185 19808 {rgb=(.2 .2 .2)} Face 36297 3465 3302 19809 {rgb=(.2 .2 .2)} Face 36298 3302 3309 19809 {rgb=(.2 .2 .2)} Face 36299 3309 3454 19809 {rgb=(.2 .2 .2)} Face 36300 3454 3465 19809 {rgb=(.2 .2 .2)} Face 36301 3269 3358 19810 {rgb=(.2 .2 .2)} Face 36302 3358 3454 19810 {rgb=(.2 .2 .2)} Face 36303 3454 3309 19810 {rgb=(.2 .2 .2)} Face 36304 3309 3269 19810 {rgb=(.2 .2 .2)} Face 36305 3358 3269 19811 {rgb=(.2 .2 .2)} Face 36306 3269 3059 19811 {rgb=(.2 .2 .2)} Face 36307 3059 3097 19811 {rgb=(.2 .2 .2)} Face 36308 3097 3358 19811 {rgb=(.2 .2 .2)} Face 36309 3097 3059 19812 {rgb=(.2 .2 .2)} Face 36310 3059 2600 19812 {rgb=(.2 .2 .2)} Face 36311 2600 2610 19812 {rgb=(.2 .2 .2)} Face 36312 2610 3097 19812 {rgb=(.2 .2 .2)} Face 36313 2610 2600 19813 {rgb=(.2 .2 .2)} Face 36314 2600 1922 19813 {rgb=(.2 .2 .2)} Face 36315 1922 1964 19813 {rgb=(.2 .2 .2)} Face 36316 1964 2610 19813 {rgb=(.2 .2 .2)} Face 36317 1273 1311 19814 {rgb=(.2 .2 .2)} Face 36318 1311 1500 19814 {rgb=(.2 .2 .2)} Face 36319 1500 1491 19814 {rgb=(.2 .2 .2)} Face 36320 1491 1273 19814 {rgb=(.2 .2 .2)} Face 36321 1125 1157 19815 {rgb=(.2 .2 .2)} Face 36322 1157 1311 19815 {rgb=(.2 .2 .2)} Face 36323 1311 1273 19815 {rgb=(.2 .2 .2)} Face 36324 1273 1125 19815 {rgb=(.2 .2 .2)} Face 36325 1062 1079 19816 {rgb=(.2 .2 .2)} Face 36326 1079 1157 19816 {rgb=(.2 .2 .2)} Face 36327 1157 1125 19816 {rgb=(.2 .2 .2)} Face 36328 1125 1062 19816 {rgb=(.2 .2 .2)} Face 36329 1079 1062 19817 {rgb=(.2 .2 .2)} Face 36330 1062 999 19817 {rgb=(.2 .2 .2)} Face 36331 999 1019 19817 {rgb=(.2 .2 .2)} Face 36332 1019 1079 19817 {rgb=(.2 .2 .2)} Face 36333 953 968 19818 {rgb=(.2 .2 .2)} Face 36334 968 1019 19818 {rgb=(.2 .2 .2)} Face 36335 1019 999 19818 {rgb=(.2 .2 .2)} Face 36336 999 953 19818 {rgb=(.2 .2 .2)} Face 36337 1668 1676 19819 {rgb=(.2 .2 .2)} Face 36338 1676 1964 19819 {rgb=(.2 .2 .2)} Face 36339 1964 1922 19819 {rgb=(.2 .2 .2)} Face 36340 1922 1668 19819 {rgb=(.2 .2 .2)} Face 36341 959 986 19820 {rgb=(.2 .2 .2)} Face 36342 986 968 19820 {rgb=(.2 .2 .2)} Face 36343 968 953 19820 {rgb=(.2 .2 .2)} Face 36344 953 959 19820 {rgb=(.2 .2 .2)} Face 36345 1029 1047 19821 {rgb=(.2 .2 .2)} Face 36346 1047 986 19821 {rgb=(.2 .2 .2)} Face 36347 986 959 19821 {rgb=(.2 .2 .2)} Face 36348 959 1029 19821 {rgb=(.2 .2 .2)} Face 36349 1136 1155 19822 {rgb=(.2 .2 .2)} Face 36350 1155 1047 19822 {rgb=(.2 .2 .2)} Face 36351 1047 1029 19822 {rgb=(.2 .2 .2)} Face 36352 1029 1136 19822 {rgb=(.2 .2 .2)} Face 36353 1417 1431 19823 {rgb=(.2 .2 .2)} Face 36354 1431 1155 19823 {rgb=(.2 .2 .2)} Face 36355 1155 1136 19823 {rgb=(.2 .2 .2)} Face 36356 1136 1417 19823 {rgb=(.2 .2 .2)} Face 36357 1602 1597 19824 {rgb=(.2 .2 .2)} Face 36358 1597 1431 19824 {rgb=(.2 .2 .2)} Face 36359 1431 1417 19824 {rgb=(.2 .2 .2)} Face 36360 1417 1602 19824 {rgb=(.2 .2 .2)} Face 36361 1676 1668 19825 {rgb=(.2 .2 .2)} Face 36362 1668 1597 19825 {rgb=(.2 .2 .2)} Face 36363 1597 1602 19825 {rgb=(.2 .2 .2)} Face 36364 1602 1676 19825 {rgb=(.2 .2 .2)} Face 36365 3309 1311 19826 {rgb=(.2 .2 .2)} Face 36366 1311 1157 19826 {rgb=(.2 .2 .2)} Face 36367 1157 3269 19826 {rgb=(.2 .2 .2)} Face 36368 3269 3309 19826 {rgb=(.2 .2 .2)} Face 36369 1500 3302 19827 {rgb=(.2 .2 .2)} Face 36370 3302 3009 19827 {rgb=(.2 .2 .2)} Face 36371 3009 1612 19827 {rgb=(.2 .2 .2)} Face 36372 1612 1500 19827 {rgb=(.2 .2 .2)} Face 36373 2600 3059 19828 {rgb=(.2 .2 .2)} Face 36374 3059 1079 19828 {rgb=(.2 .2 .2)} Face 36375 1079 1019 19828 {rgb=(.2 .2 .2)} Face 36376 1019 2600 19828 {rgb=(.2 .2 .2)} Face 36377 1922 968 19829 {rgb=(.2 .2 .2)} Face 36378 968 986 19829 {rgb=(.2 .2 .2)} Face 36379 986 1668 19829 {rgb=(.2 .2 .2)} Face 36380 1668 1922 19829 {rgb=(.2 .2 .2)} Face 36381 1665 1901 19830 {rgb=(.2 .2 .2)} Face 36382 1901 1964 19830 {rgb=(.2 .2 .2)} Face 36383 1964 1676 19830 {rgb=(.2 .2 .2)} Face 36384 1676 1665 19830 {rgb=(.2 .2 .2)} Face 36385 3373 3100 19831 {rgb=(.2 .2 .2)} Face 36386 3100 3185 19831 {rgb=(.2 .2 .2)} Face 36387 3185 3465 19831 {rgb=(.2 .2 .2)} Face 36388 3465 3373 19831 {rgb=(.2 .2 .2)} Face 36389 2574 3029 19832 {rgb=(.2 .2 .2)} Face 36390 3029 3097 19832 {rgb=(.2 .2 .2)} Face 36391 3097 2610 19832 {rgb=(.2 .2 .2)} Face 36392 2610 2574 19832 {rgb=(.2 .2 .2)} Face 36393 3271 3342 19833 {rgb=(.2 .2 .2)} Face 36394 3342 3454 19833 {rgb=(.2 .2 .2)} Face 36395 3454 3358 19833 {rgb=(.2 .2 .2)} Face 36396 3358 3271 19833 {rgb=(.2 .2 .2)} Face 36397 2343 1726 19834 {rgb=(.2 .2 .2)} Face 36398 1726 1728 19834 {rgb=(.2 .2 .2)} Face 36399 1728 2366 19834 {rgb=(.2 .2 .2)} Face 36400 2366 2343 19834 {rgb=(.2 .2 .2)} Face 36401 1626 1507 19835 {rgb=(.2 .2 .2)} Face 36402 1507 1491 19835 {rgb=(.2 .2 .2)} Face 36403 1491 1610 19835 {rgb=(.2 .2 .2)} Face 36404 1610 1626 19835 {rgb=(.2 .2 .2)} Face 36405 1322 1162 19836 {rgb=(.2 .2 .2)} Face 36406 1162 1125 19836 {rgb=(.2 .2 .2)} Face 36407 1125 1273 19836 {rgb=(.2 .2 .2)} Face 36408 1273 1322 19836 {rgb=(.2 .2 .2)} Face 36409 1083 1027 19837 {rgb=(.2 .2 .2)} Face 36410 1027 999 19837 {rgb=(.2 .2 .2)} Face 36411 999 1062 19837 {rgb=(.2 .2 .2)} Face 36412 1062 1083 19837 {rgb=(.2 .2 .2)} Face 36413 1415 1593 19838 {rgb=(.2 .2 .2)} Face 36414 1593 1602 19838 {rgb=(.2 .2 .2)} Face 36415 1602 1417 19838 {rgb=(.2 .2 .2)} Face 36416 1417 1415 19838 {rgb=(.2 .2 .2)} Face 36417 1037 1141 19839 {rgb=(.2 .2 .2)} Face 36418 1141 1136 19839 {rgb=(.2 .2 .2)} Face 36419 1136 1029 19839 {rgb=(.2 .2 .2)} Face 36420 1029 1037 19839 {rgb=(.2 .2 .2)} Face 36421 973 981 19840 {rgb=(.2 .2 .2)} Face 36422 981 959 19840 {rgb=(.2 .2 .2)} Face 36423 959 953 19840 {rgb=(.2 .2 .2)} Face 36424 953 973 19840 {rgb=(.2 .2 .2)} Face 36425 2343 2366 19841 {rgb=(.2 .2 .2)} Face 36426 2366 3185 19841 {rgb=(.2 .2 .2)} Face 36427 3185 3100 19841 {rgb=(.2 .2 .2)} Face 36428 3100 2343 19841 {rgb=(.2 .2 .2)} Face 36429 3373 3465 19842 {rgb=(.2 .2 .2)} Face 36430 3465 3454 19842 {rgb=(.2 .2 .2)} Face 36431 3454 3342 19842 {rgb=(.2 .2 .2)} Face 36432 3342 3373 19842 {rgb=(.2 .2 .2)} Face 36433 3271 3358 19843 {rgb=(.2 .2 .2)} Face 36434 3358 3097 19843 {rgb=(.2 .2 .2)} Face 36435 3097 3029 19843 {rgb=(.2 .2 .2)} Face 36436 3029 3271 19843 {rgb=(.2 .2 .2)} Face 36437 2574 2610 19844 {rgb=(.2 .2 .2)} Face 36438 2610 1964 19844 {rgb=(.2 .2 .2)} Face 36439 1964 1901 19844 {rgb=(.2 .2 .2)} Face 36440 1901 2574 19844 {rgb=(.2 .2 .2)} Face 36441 1665 1676 19845 {rgb=(.2 .2 .2)} Face 36442 1676 1602 19845 {rgb=(.2 .2 .2)} Face 36443 1602 1593 19845 {rgb=(.2 .2 .2)} Face 36444 1593 1665 19845 {rgb=(.2 .2 .2)} Face 36445 1415 1417 19846 {rgb=(.2 .2 .2)} Face 36446 1417 1136 19846 {rgb=(.2 .2 .2)} Face 36447 1136 1141 19846 {rgb=(.2 .2 .2)} Face 36448 1141 1415 19846 {rgb=(.2 .2 .2)} Face 36449 1037 1029 19847 {rgb=(.2 .2 .2)} Face 36450 1029 959 19847 {rgb=(.2 .2 .2)} Face 36451 959 981 19847 {rgb=(.2 .2 .2)} Face 36452 981 1037 19847 {rgb=(.2 .2 .2)} Face 36453 973 953 19848 {rgb=(.2 .2 .2)} Face 36454 953 999 19848 {rgb=(.2 .2 .2)} Face 36455 999 1027 19848 {rgb=(.2 .2 .2)} Face 36456 1027 973 19848 {rgb=(.2 .2 .2)} Face 36457 1083 1062 19849 {rgb=(.2 .2 .2)} Face 36458 1062 1125 19849 {rgb=(.2 .2 .2)} Face 36459 1125 1162 19849 {rgb=(.2 .2 .2)} Face 36460 1162 1083 19849 {rgb=(.2 .2 .2)} Face 36461 1322 1273 19850 {rgb=(.2 .2 .2)} Face 36462 1273 1491 19850 {rgb=(.2 .2 .2)} Face 36463 1491 1507 19850 {rgb=(.2 .2 .2)} Face 36464 1507 1322 19850 {rgb=(.2 .2 .2)} Face 36465 1626 1610 19851 {rgb=(.2 .2 .2)} Face 36466 1610 1728 19851 {rgb=(.2 .2 .2)} Face 36467 1728 1726 19851 {rgb=(.2 .2 .2)} Face 36468 1726 1626 19851 {rgb=(.2 .2 .2)} Face 36469 1431 1597 19852 {rgb=(.2 .2 .2)} Face 36470 1597 1668 19852 {rgb=(.2 .2 .2)} Face 36471 1668 1155 19852 {rgb=(.2 .2 .2)} Face 36472 1155 1431 19852 {rgb=(.2 .2 .2)} Face 36473 3059 3269 19853 {rgb=(.2 .2 .2)} Face 36474 3269 1157 19853 {rgb=(.2 .2 .2)} Face 36475 1157 1079 19853 {rgb=(.2 .2 .2)} Face 36476 1079 3059 19853 {rgb=(.2 .2 .2)} Face 36477 1019 968 19854 {rgb=(.2 .2 .2)} Face 36478 968 1922 19854 {rgb=(.2 .2 .2)} Face 36479 1922 2600 19854 {rgb=(.2 .2 .2)} Face 36480 2600 1019 19854 {rgb=(.2 .2 .2)} Face 36481 3009 2133 19855 {rgb=(.2 .2 .2)} Face 36482 2133 1705 19855 {rgb=(.2 .2 .2)} Face 36483 1705 1612 19855 {rgb=(.2 .2 .2)} Face 36484 1612 3009 19855 {rgb=(.2 .2 .2)} Face 36485 1863 2343 19856 {rgb=(.2 .2 .2)} Face 36486 2343 3100 19856 {rgb=(.2 .2 .2)} Face 36487 3100 3301 19856 {rgb=(.2 .2 .2)} Face 36488 3301 1863 19856 {rgb=(.2 .2 .2)} Face 36489 3301 3373 19857 {rgb=(.2 .2 .2)} Face 36490 3373 3342 19857 {rgb=(.2 .2 .2)} Face 36491 3342 3074 19857 {rgb=(.2 .2 .2)} Face 36492 3074 3301 19857 {rgb=(.2 .2 .2)} Face 36493 3074 3271 19858 {rgb=(.2 .2 .2)} Face 36494 3271 3029 19858 {rgb=(.2 .2 .2)} Face 36495 3029 2048 19858 {rgb=(.2 .2 .2)} Face 36496 2048 3074 19858 {rgb=(.2 .2 .2)} Face 36497 2048 2574 19859 {rgb=(.2 .2 .2)} Face 36498 2574 1901 19859 {rgb=(.2 .2 .2)} Face 36499 1901 1660 19859 {rgb=(.2 .2 .2)} Face 36500 1660 2048 19859 {rgb=(.2 .2 .2)} Face 36501 1660 1665 19860 {rgb=(.2 .2 .2)} Face 36502 1665 1593 19860 {rgb=(.2 .2 .2)} Face 36503 1593 1550 19860 {rgb=(.2 .2 .2)} Face 36504 1550 1660 19860 {rgb=(.2 .2 .2)} Face 36505 1550 1415 19861 {rgb=(.2 .2 .2)} Face 36506 1415 1141 19861 {rgb=(.2 .2 .2)} Face 36507 1141 1233 19861 {rgb=(.2 .2 .2)} Face 36508 1233 1550 19861 {rgb=(.2 .2 .2)} Face 36509 1233 1037 19862 {rgb=(.2 .2 .2)} Face 36510 1037 981 19862 {rgb=(.2 .2 .2)} Face 36511 981 1164 19862 {rgb=(.2 .2 .2)} Face 36512 1164 1233 19862 {rgb=(.2 .2 .2)} Face 36513 1164 973 19863 {rgb=(.2 .2 .2)} Face 36514 973 1027 19863 {rgb=(.2 .2 .2)} Face 36515 1027 1159 19863 {rgb=(.2 .2 .2)} Face 36516 1159 1164 19863 {rgb=(.2 .2 .2)} Face 36517 1159 1083 19864 {rgb=(.2 .2 .2)} Face 36518 1083 1162 19864 {rgb=(.2 .2 .2)} Face 36519 1162 1344 19864 {rgb=(.2 .2 .2)} Face 36520 1344 1159 19864 {rgb=(.2 .2 .2)} Face 36521 1344 1322 19865 {rgb=(.2 .2 .2)} Face 36522 1322 1507 19865 {rgb=(.2 .2 .2)} Face 36523 1507 1594 19865 {rgb=(.2 .2 .2)} Face 36524 1594 1344 19865 {rgb=(.2 .2 .2)} Face 36525 1594 1626 19866 {rgb=(.2 .2 .2)} Face 36526 1626 1726 19866 {rgb=(.2 .2 .2)} Face 36527 1726 1863 19866 {rgb=(.2 .2 .2)} Face 36528 1863 1594 19866 {rgb=(.2 .2 .2)} Face 36529 1738 1863 19867 {rgb=(.2 .2 .2)} Face 36530 1863 3301 19867 {rgb=(.2 .2 .2)} Face 36531 3301 2545 19867 {rgb=(.2 .2 .2)} Face 36532 2545 1738 19867 {rgb=(.2 .2 .2)} Face 36533 2545 3301 19868 {rgb=(.2 .2 .2)} Face 36534 3301 3074 19868 {rgb=(.2 .2 .2)} Face 36535 3074 2511 19868 {rgb=(.2 .2 .2)} Face 36536 2511 2545 19868 {rgb=(.2 .2 .2)} Face 36537 2511 3074 19869 {rgb=(.2 .2 .2)} Face 36538 3074 2048 19869 {rgb=(.2 .2 .2)} Face 36539 2048 1808 19869 {rgb=(.2 .2 .2)} Face 36540 1808 2511 19869 {rgb=(.2 .2 .2)} Face 36541 1808 2048 19870 {rgb=(.2 .2 .2)} Face 36542 2048 1660 19870 {rgb=(.2 .2 .2)} Face 36543 1660 1656 19870 {rgb=(.2 .2 .2)} Face 36544 1656 1808 19870 {rgb=(.2 .2 .2)} Face 36545 1656 1660 19871 {rgb=(.2 .2 .2)} Face 36546 1660 1550 19871 {rgb=(.2 .2 .2)} Face 36547 1550 1576 19871 {rgb=(.2 .2 .2)} Face 36548 1576 1656 19871 {rgb=(.2 .2 .2)} Face 36549 1576 1550 19872 {rgb=(.2 .2 .2)} Face 36550 1550 1233 19872 {rgb=(.2 .2 .2)} Face 36551 1233 1299 19872 {rgb=(.2 .2 .2)} Face 36552 1299 1576 19872 {rgb=(.2 .2 .2)} Face 36553 1299 1233 19873 {rgb=(.2 .2 .2)} Face 36554 1233 1164 19873 {rgb=(.2 .2 .2)} Face 36555 1164 1228 19873 {rgb=(.2 .2 .2)} Face 36556 1228 1299 19873 {rgb=(.2 .2 .2)} Face 36557 1228 1164 19874 {rgb=(.2 .2 .2)} Face 36558 1164 1159 19874 {rgb=(.2 .2 .2)} Face 36559 1159 1248 19874 {rgb=(.2 .2 .2)} Face 36560 1248 1228 19874 {rgb=(.2 .2 .2)} Face 36561 1248 1159 19875 {rgb=(.2 .2 .2)} Face 36562 1159 1344 19875 {rgb=(.2 .2 .2)} Face 36563 1344 1406 19875 {rgb=(.2 .2 .2)} Face 36564 1406 1248 19875 {rgb=(.2 .2 .2)} Face 36565 1406 1344 19876 {rgb=(.2 .2 .2)} Face 36566 1344 1594 19876 {rgb=(.2 .2 .2)} Face 36567 1594 1606 19876 {rgb=(.2 .2 .2)} Face 36568 1606 1406 19876 {rgb=(.2 .2 .2)} Face 36569 1606 1594 19877 {rgb=(.2 .2 .2)} Face 36570 1594 1863 19877 {rgb=(.2 .2 .2)} Face 36571 1863 1738 19877 {rgb=(.2 .2 .2)} Face 36572 1738 1606 19877 {rgb=(.2 .2 .2)} Face 36573 1739 1738 19878 {rgb=(.2 .2 .2)} Face 36574 1738 2545 19878 {rgb=(.2 .2 .2)} Face 36575 2545 2551 19878 {rgb=(.2 .2 .2)} Face 36576 2551 1739 19878 {rgb=(.2 .2 .2)} Face 36577 2551 2545 19879 {rgb=(.2 .2 .2)} Face 36578 2545 2511 19879 {rgb=(.2 .2 .2)} Face 36579 2511 2519 19879 {rgb=(.2 .2 .2)} Face 36580 2519 2551 19879 {rgb=(.2 .2 .2)} Face 36581 2519 2511 19880 {rgb=(.2 .2 .2)} Face 36582 2511 1808 19880 {rgb=(.2 .2 .2)} Face 36583 1808 1809 19880 {rgb=(.2 .2 .2)} Face 36584 1809 2519 19880 {rgb=(.2 .2 .2)} Face 36585 1809 1808 19881 {rgb=(.2 .2 .2)} Face 36586 1808 1656 19881 {rgb=(.2 .2 .2)} Face 36587 1656 1657 19881 {rgb=(.2 .2 .2)} Face 36588 1657 1809 19881 {rgb=(.2 .2 .2)} Face 36589 1657 1656 19882 {rgb=(.2 .2 .2)} Face 36590 1656 1576 19882 {rgb=(.2 .2 .2)} Face 36591 1576 1577 19882 {rgb=(.2 .2 .2)} Face 36592 1577 1657 19882 {rgb=(.2 .2 .2)} Face 36593 1577 1576 19883 {rgb=(.2 .2 .2)} Face 36594 1576 1299 19883 {rgb=(.2 .2 .2)} Face 36595 1299 1300 19883 {rgb=(.2 .2 .2)} Face 36596 1300 1577 19883 {rgb=(.2 .2 .2)} Face 36597 1300 1299 19884 {rgb=(.2 .2 .2)} Face 36598 1299 1228 19884 {rgb=(.2 .2 .2)} Face 36599 1228 1229 19884 {rgb=(.2 .2 .2)} Face 36600 1229 1300 19884 {rgb=(.2 .2 .2)} Face 36601 1229 1228 19885 {rgb=(.2 .2 .2)} Face 36602 1228 1248 19885 {rgb=(.2 .2 .2)} Face 36603 1248 1250 19885 {rgb=(.2 .2 .2)} Face 36604 1250 1229 19885 {rgb=(.2 .2 .2)} Face 36605 1250 1248 19886 {rgb=(.2 .2 .2)} Face 36606 1248 1406 19886 {rgb=(.2 .2 .2)} Face 36607 1406 1407 19886 {rgb=(.2 .2 .2)} Face 36608 1407 1250 19886 {rgb=(.2 .2 .2)} Face 36609 1407 1406 19887 {rgb=(.2 .2 .2)} Face 36610 1406 1606 19887 {rgb=(.2 .2 .2)} Face 36611 1606 1607 19887 {rgb=(.2 .2 .2)} Face 36612 1607 1407 19887 {rgb=(.2 .2 .2)} Face 36613 1607 1606 19888 {rgb=(.2 .2 .2)} Face 36614 1606 1738 19888 {rgb=(.2 .2 .2)} Face 36615 1738 1739 19888 {rgb=(.2 .2 .2)} Face 36616 1739 1607 19888 {rgb=(.2 .2 .2)} Face 36617 1173 1144 19889 {rgb=(.2 .2 .2)} Face 36618 1144 1243 19889 {rgb=(.2 .2 .2)} Face 36619 1243 1271 19889 {rgb=(.2 .2 .2)} Face 36620 1271 1173 19889 {rgb=(.2 .2 .2)} Face 36621 1112 1107 19890 {rgb=(.2 .2 .2)} Face 36622 1107 983 19890 {rgb=(.2 .2 .2)} Face 36623 983 1006 19890 {rgb=(.2 .2 .2)} Face 36624 1006 1112 19890 {rgb=(.2 .2 .2)} Face 36625 1880 2149 19891 {rgb=(.2 .2 .2)} Face 36626 2149 1737 19891 {rgb=(.2 .2 .2)} Face 36627 1737 1685 19891 {rgb=(.2 .2 .2)} Face 36628 1685 1880 19891 {rgb=(.2 .2 .2)} Face 36629 893 926 19892 {rgb=(.2 .2 .2)} Face 36630 926 910 19892 {rgb=(.2 .2 .2)} Face 36631 910 880 19892 {rgb=(.2 .2 .2)} Face 36632 880 893 19892 {rgb=(.2 .2 .2)} Face 36633 880 910 19893 {rgb=(.2 .2 .2)} Face 36634 910 1006 19893 {rgb=(.2 .2 .2)} Face 36635 1006 983 19893 {rgb=(.2 .2 .2)} Face 36636 983 880 19893 {rgb=(.2 .2 .2)} Face 36637 1107 1112 19894 {rgb=(.2 .2 .2)} Face 36638 1112 1263 19894 {rgb=(.2 .2 .2)} Face 36639 1263 1285 19894 {rgb=(.2 .2 .2)} Face 36640 1285 1107 19894 {rgb=(.2 .2 .2)} Face 36641 1285 1263 19895 {rgb=(.2 .2 .2)} Face 36642 1263 1409 19895 {rgb=(.2 .2 .2)} Face 36643 1409 1457 19895 {rgb=(.2 .2 .2)} Face 36644 1457 1285 19895 {rgb=(.2 .2 .2)} Face 36645 1457 1409 19896 {rgb=(.2 .2 .2)} Face 36646 1409 1496 19896 {rgb=(.2 .2 .2)} Face 36647 1496 1532 19896 {rgb=(.2 .2 .2)} Face 36648 1532 1457 19896 {rgb=(.2 .2 .2)} Face 36649 1595 1563 19897 {rgb=(.2 .2 .2)} Face 36650 1563 1546 19897 {rgb=(.2 .2 .2)} Face 36651 1546 1578 19897 {rgb=(.2 .2 .2)} Face 36652 1578 1595 19897 {rgb=(.2 .2 .2)} Face 36653 1578 1546 19898 {rgb=(.2 .2 .2)} Face 36654 1546 1601 19898 {rgb=(.2 .2 .2)} Face 36655 1601 1621 19898 {rgb=(.2 .2 .2)} Face 36656 1621 1578 19898 {rgb=(.2 .2 .2)} Face 36657 1621 1601 19899 {rgb=(.2 .2 .2)} Face 36658 1601 1732 19899 {rgb=(.2 .2 .2)} Face 36659 1732 1954 19899 {rgb=(.2 .2 .2)} Face 36660 1954 1621 19899 {rgb=(.2 .2 .2)} Face 36661 2060 1877 19900 {rgb=(.2 .2 .2)} Face 36662 1877 1622 19900 {rgb=(.2 .2 .2)} Face 36663 1622 1619 19900 {rgb=(.2 .2 .2)} Face 36664 1619 2060 19900 {rgb=(.2 .2 .2)} Face 36665 1619 1622 19901 {rgb=(.2 .2 .2)} Face 36666 1622 1522 19901 {rgb=(.2 .2 .2)} Face 36667 1522 1502 19901 {rgb=(.2 .2 .2)} Face 36668 1502 1619 19901 {rgb=(.2 .2 .2)} Face 36669 1502 1522 19902 {rgb=(.2 .2 .2)} Face 36670 1522 1392 19902 {rgb=(.2 .2 .2)} Face 36671 1392 1353 19902 {rgb=(.2 .2 .2)} Face 36672 1353 1502 19902 {rgb=(.2 .2 .2)} Face 36673 1412 1419 19903 {rgb=(.2 .2 .2)} Face 36674 1419 1316 19903 {rgb=(.2 .2 .2)} Face 36675 1316 1306 19903 {rgb=(.2 .2 .2)} Face 36676 1306 1412 19903 {rgb=(.2 .2 .2)} Face 36677 1144 1173 19904 {rgb=(.2 .2 .2)} Face 36678 1173 1123 19904 {rgb=(.2 .2 .2)} Face 36679 1123 1102 19904 {rgb=(.2 .2 .2)} Face 36680 1102 1144 19904 {rgb=(.2 .2 .2)} Face 36681 1102 1123 19905 {rgb=(.2 .2 .2)} Face 36682 1123 1049 19905 {rgb=(.2 .2 .2)} Face 36683 1049 1014 19905 {rgb=(.2 .2 .2)} Face 36684 1014 1102 19905 {rgb=(.2 .2 .2)} Face 36685 934 957 19906 {rgb=(.2 .2 .2)} Face 36686 957 926 19906 {rgb=(.2 .2 .2)} Face 36687 926 893 19906 {rgb=(.2 .2 .2)} Face 36688 893 934 19906 {rgb=(.2 .2 .2)} Face 36689 1014 1049 19907 {rgb=(.2 .2 .2)} Face 36690 1049 1005 19907 {rgb=(.2 .2 .2)} Face 36691 1005 965 19907 {rgb=(.2 .2 .2)} Face 36692 965 1014 19907 {rgb=(.2 .2 .2)} Face 36693 1016 1002 19908 {rgb=(.2 .2 .2)} Face 36694 1002 955 19908 {rgb=(.2 .2 .2)} Face 36695 955 966 19908 {rgb=(.2 .2 .2)} Face 36696 966 1016 19908 {rgb=(.2 .2 .2)} Face 36697 1614 1585 19909 {rgb=(.2 .2 .2)} Face 36698 1585 1563 19909 {rgb=(.2 .2 .2)} Face 36699 1563 1595 19909 {rgb=(.2 .2 .2)} Face 36700 1595 1614 19909 {rgb=(.2 .2 .2)} Face 36701 1532 1496 19910 {rgb=(.2 .2 .2)} Face 36702 1496 1534 19910 {rgb=(.2 .2 .2)} Face 36703 1534 1568 19910 {rgb=(.2 .2 .2)} Face 36704 1568 1532 19910 {rgb=(.2 .2 .2)} Face 36705 1520 1533 19911 {rgb=(.2 .2 .2)} Face 36706 1533 1584 19911 {rgb=(.2 .2 .2)} Face 36707 1584 1567 19911 {rgb=(.2 .2 .2)} Face 36708 1567 1520 19911 {rgb=(.2 .2 .2)} Face 36709 2648 2461 19912 {rgb=(.2 .2 .2)} Face 36710 2461 1877 19912 {rgb=(.2 .2 .2)} Face 36711 1877 2060 19912 {rgb=(.2 .2 .2)} Face 36712 2060 2648 19912 {rgb=(.2 .2 .2)} Face 36713 2493 2211 19913 {rgb=(.2 .2 .2)} Face 36714 2211 2461 19913 {rgb=(.2 .2 .2)} Face 36715 2461 2648 19913 {rgb=(.2 .2 .2)} Face 36716 2648 2493 19913 {rgb=(.2 .2 .2)} Face 36717 1702 1649 19914 {rgb=(.2 .2 .2)} Face 36718 1649 1637 19914 {rgb=(.2 .2 .2)} Face 36719 1637 1669 19914 {rgb=(.2 .2 .2)} Face 36720 1669 1702 19914 {rgb=(.2 .2 .2)} Face 36721 2517 1762 19915 {rgb=(.2 .2 .2)} Face 36722 1762 1739 19915 {rgb=(.2 .2 .2)} Face 36723 1739 2551 19915 {rgb=(.2 .2 .2)} Face 36724 2551 2517 19915 {rgb=(.2 .2 .2)} Face 36725 2232 1707 19916 {rgb=(.2 .2 .2)} Face 36726 1707 1686 19916 {rgb=(.2 .2 .2)} Face 36727 1686 2082 19916 {rgb=(.2 .2 .2)} Face 36728 2082 2232 19916 {rgb=(.2 .2 .2)} Face 36729 2795 2234 19917 {rgb=(.2 .2 .2)} Face 36730 2234 1914 19917 {rgb=(.2 .2 .2)} Face 36731 1914 2621 19917 {rgb=(.2 .2 .2)} Face 36732 2621 2795 19917 {rgb=(.2 .2 .2)} Face 36733 2830 2304 19918 {rgb=(.2 .2 .2)} Face 36734 2304 2234 19918 {rgb=(.2 .2 .2)} Face 36735 2234 2795 19918 {rgb=(.2 .2 .2)} Face 36736 2795 2830 19918 {rgb=(.2 .2 .2)} Face 36737 2684 2154 19919 {rgb=(.2 .2 .2)} Face 36738 2154 2304 19919 {rgb=(.2 .2 .2)} Face 36739 2304 2830 19919 {rgb=(.2 .2 .2)} Face 36740 2830 2684 19919 {rgb=(.2 .2 .2)} Face 36741 2648 2060 19920 {rgb=(.2 .2 .2)} Face 36742 2060 2154 19920 {rgb=(.2 .2 .2)} Face 36743 2154 2684 19920 {rgb=(.2 .2 .2)} Face 36744 2684 2648 19920 {rgb=(.2 .2 .2)} Face 36745 1316 1419 19921 {rgb=(.2 .2 .2)} Face 36746 1419 1880 19921 {rgb=(.2 .2 .2)} Face 36747 1880 1685 19921 {rgb=(.2 .2 .2)} Face 36748 1685 1316 19921 {rgb=(.2 .2 .2)} Face 36749 1877 2461 19922 {rgb=(.2 .2 .2)} Face 36750 2461 2211 19922 {rgb=(.2 .2 .2)} Face 36751 2211 1622 19922 {rgb=(.2 .2 .2)} Face 36752 1622 1877 19922 {rgb=(.2 .2 .2)} Face 36753 1128 1150 19923 {rgb=(.2 .2 .2)} Face 36754 1150 1140 19923 {rgb=(.2 .2 .2)} Face 36755 1140 1111 19923 {rgb=(.2 .2 .2)} Face 36756 1111 1128 19923 {rgb=(.2 .2 .2)} Face 36757 1173 1271 19924 {rgb=(.2 .2 .2)} Face 36758 1271 1732 19924 {rgb=(.2 .2 .2)} Face 36759 1732 1601 19924 {rgb=(.2 .2 .2)} Face 36760 1601 1173 19924 {rgb=(.2 .2 .2)} Face 36761 1557 1517 19925 {rgb=(.2 .2 .2)} Face 36762 1517 1520 19925 {rgb=(.2 .2 .2)} Face 36763 1520 1567 19925 {rgb=(.2 .2 .2)} Face 36764 1567 1557 19925 {rgb=(.2 .2 .2)} Face 36765 1553 1521 19926 {rgb=(.2 .2 .2)} Face 36766 1521 1517 19926 {rgb=(.2 .2 .2)} Face 36767 1517 1557 19926 {rgb=(.2 .2 .2)} Face 36768 1557 1553 19926 {rgb=(.2 .2 .2)} Face 36769 1519 1478 19927 {rgb=(.2 .2 .2)} Face 36770 1478 1521 19927 {rgb=(.2 .2 .2)} Face 36771 1521 1553 19927 {rgb=(.2 .2 .2)} Face 36772 1553 1519 19927 {rgb=(.2 .2 .2)} Face 36773 1366 1478 19928 {rgb=(.2 .2 .2)} Face 36774 1478 1519 19928 {rgb=(.2 .2 .2)} Face 36775 1519 1443 19928 {rgb=(.2 .2 .2)} Face 36776 1443 1366 19928 {rgb=(.2 .2 .2)} Face 36777 1178 1135 19929 {rgb=(.2 .2 .2)} Face 36778 1135 1366 19929 {rgb=(.2 .2 .2)} Face 36779 1366 1443 19929 {rgb=(.2 .2 .2)} Face 36780 1443 1178 19929 {rgb=(.2 .2 .2)} Face 36781 1082 1048 19930 {rgb=(.2 .2 .2)} Face 36782 1048 1135 19930 {rgb=(.2 .2 .2)} Face 36783 1135 1178 19930 {rgb=(.2 .2 .2)} Face 36784 1178 1082 19930 {rgb=(.2 .2 .2)} Face 36785 1036 995 19931 {rgb=(.2 .2 .2)} Face 36786 995 1048 19931 {rgb=(.2 .2 .2)} Face 36787 1048 1082 19931 {rgb=(.2 .2 .2)} Face 36788 1082 1036 19931 {rgb=(.2 .2 .2)} Face 36789 1017 971 19932 {rgb=(.2 .2 .2)} Face 36790 971 995 19932 {rgb=(.2 .2 .2)} Face 36791 995 1036 19932 {rgb=(.2 .2 .2)} Face 36792 1036 1017 19932 {rgb=(.2 .2 .2)} Face 36793 1016 966 19933 {rgb=(.2 .2 .2)} Face 36794 966 971 19933 {rgb=(.2 .2 .2)} Face 36795 971 1017 19933 {rgb=(.2 .2 .2)} Face 36796 1017 1016 19933 {rgb=(.2 .2 .2)} Face 36797 1611 1458 19934 {rgb=(.2 .2 .2)} Face 36798 1458 1407 19934 {rgb=(.2 .2 .2)} Face 36799 1407 1607 19934 {rgb=(.2 .2 .2)} Face 36800 1607 1611 19934 {rgb=(.2 .2 .2)} Face 36801 1458 1238 19935 {rgb=(.2 .2 .2)} Face 36802 1238 1250 19935 {rgb=(.2 .2 .2)} Face 36803 1250 1407 19935 {rgb=(.2 .2 .2)} Face 36804 1407 1458 19935 {rgb=(.2 .2 .2)} Face 36805 1238 1213 19936 {rgb=(.2 .2 .2)} Face 36806 1213 1229 19936 {rgb=(.2 .2 .2)} Face 36807 1229 1250 19936 {rgb=(.2 .2 .2)} Face 36808 1250 1238 19936 {rgb=(.2 .2 .2)} Face 36809 1213 1280 19937 {rgb=(.2 .2 .2)} Face 36810 1280 1300 19937 {rgb=(.2 .2 .2)} Face 36811 1300 1229 19937 {rgb=(.2 .2 .2)} Face 36812 1229 1213 19937 {rgb=(.2 .2 .2)} Face 36813 1280 1590 19938 {rgb=(.2 .2 .2)} Face 36814 1590 1577 19938 {rgb=(.2 .2 .2)} Face 36815 1577 1300 19938 {rgb=(.2 .2 .2)} Face 36816 1300 1280 19938 {rgb=(.2 .2 .2)} Face 36817 1590 1666 19939 {rgb=(.2 .2 .2)} Face 36818 1666 1657 19939 {rgb=(.2 .2 .2)} Face 36819 1657 1577 19939 {rgb=(.2 .2 .2)} Face 36820 1577 1590 19939 {rgb=(.2 .2 .2)} Face 36821 1666 1798 19940 {rgb=(.2 .2 .2)} Face 36822 1798 1809 19940 {rgb=(.2 .2 .2)} Face 36823 1809 1657 19940 {rgb=(.2 .2 .2)} Face 36824 1657 1666 19940 {rgb=(.2 .2 .2)} Face 36825 1798 2521 19941 {rgb=(.2 .2 .2)} Face 36826 2521 2519 19941 {rgb=(.2 .2 .2)} Face 36827 2519 1809 19941 {rgb=(.2 .2 .2)} Face 36828 1809 1798 19941 {rgb=(.2 .2 .2)} Face 36829 2521 2517 19942 {rgb=(.2 .2 .2)} Face 36830 2517 2551 19942 {rgb=(.2 .2 .2)} Face 36831 2551 2519 19942 {rgb=(.2 .2 .2)} Face 36832 2519 2521 19942 {rgb=(.2 .2 .2)} Face 36833 1762 1611 19943 {rgb=(.2 .2 .2)} Face 36834 1611 1607 19943 {rgb=(.2 .2 .2)} Face 36835 1607 1739 19943 {rgb=(.2 .2 .2)} Face 36836 1739 1762 19943 {rgb=(.2 .2 .2)} Face 36837 1707 1628 19944 {rgb=(.2 .2 .2)} Face 36838 1628 1615 19944 {rgb=(.2 .2 .2)} Face 36839 1615 1686 19944 {rgb=(.2 .2 .2)} Face 36840 1686 1707 19944 {rgb=(.2 .2 .2)} Face 36841 1669 1712 19945 {rgb=(.2 .2 .2)} Face 36842 1712 2025 19945 {rgb=(.2 .2 .2)} Face 36843 2025 1702 19945 {rgb=(.2 .2 .2)} Face 36844 1702 1669 19945 {rgb=(.2 .2 .2)} Face 36845 1530 1624 19946 {rgb=(.2 .2 .2)} Face 36846 1624 1648 19946 {rgb=(.2 .2 .2)} Face 36847 1648 1583 19946 {rgb=(.2 .2 .2)} Face 36848 1583 1530 19946 {rgb=(.2 .2 .2)} Face 36849 1209 1128 19947 {rgb=(.2 .2 .2)} Face 36850 1128 1110 19947 {rgb=(.2 .2 .2)} Face 36851 1110 1183 19947 {rgb=(.2 .2 .2)} Face 36852 1183 1209 19947 {rgb=(.2 .2 .2)} Face 36853 1637 1649 19948 {rgb=(.2 .2 .2)} Face 36854 1649 1598 19948 {rgb=(.2 .2 .2)} Face 36855 1598 1589 19948 {rgb=(.2 .2 .2)} Face 36856 1589 1637 19948 {rgb=(.2 .2 .2)} Face 36857 1624 1530 19949 {rgb=(.2 .2 .2)} Face 36858 1530 1494 19949 {rgb=(.2 .2 .2)} Face 36859 1494 1596 19949 {rgb=(.2 .2 .2)} Face 36860 1596 1624 19949 {rgb=(.2 .2 .2)} Face 36861 1583 1251 19950 {rgb=(.2 .2 .2)} Face 36862 1251 1209 19950 {rgb=(.2 .2 .2)} Face 36863 1209 1530 19950 {rgb=(.2 .2 .2)} Face 36864 1530 1583 19950 {rgb=(.2 .2 .2)} Face 36865 1206 1270 19951 {rgb=(.2 .2 .2)} Face 36866 1270 1305 19951 {rgb=(.2 .2 .2)} Face 36867 1305 1242 19951 {rgb=(.2 .2 .2)} Face 36868 1242 1206 19951 {rgb=(.2 .2 .2)} Face 36869 1530 1209 19952 {rgb=(.2 .2 .2)} Face 36870 1209 1183 19952 {rgb=(.2 .2 .2)} Face 36871 1183 1494 19952 {rgb=(.2 .2 .2)} Face 36872 1494 1530 19952 {rgb=(.2 .2 .2)} Face 36873 1598 1332 19953 {rgb=(.2 .2 .2)} Face 36874 1332 1304 19953 {rgb=(.2 .2 .2)} Face 36875 1304 1589 19953 {rgb=(.2 .2 .2)} Face 36876 1589 1598 19953 {rgb=(.2 .2 .2)} Face 36877 1489 1615 19954 {rgb=(.2 .2 .2)} Face 36878 1615 1628 19954 {rgb=(.2 .2 .2)} Face 36879 1628 1503 19954 {rgb=(.2 .2 .2)} Face 36880 1503 1489 19954 {rgb=(.2 .2 .2)} Face 36881 1304 1332 19955 {rgb=(.2 .2 .2)} Face 36882 1332 1270 19955 {rgb=(.2 .2 .2)} Face 36883 1270 1206 19955 {rgb=(.2 .2 .2)} Face 36884 1206 1304 19955 {rgb=(.2 .2 .2)} Face 36885 1251 1150 19956 {rgb=(.2 .2 .2)} Face 36886 1150 1128 19956 {rgb=(.2 .2 .2)} Face 36887 1128 1209 19956 {rgb=(.2 .2 .2)} Face 36888 1209 1251 19956 {rgb=(.2 .2 .2)} Face 36889 1311 3309 19957 {rgb=(.2 .2 .2)} Face 36890 3309 3302 19957 {rgb=(.2 .2 .2)} Face 36891 3302 1500 19957 {rgb=(.2 .2 .2)} Face 36892 1500 1311 19957 {rgb=(.2 .2 .2)} Face 36893 1638 2234 19958 {rgb=(.2 .2 .2)} Face 36894 2234 2304 19958 {rgb=(.2 .2 .2)} Face 36895 2304 1641 19958 {rgb=(.2 .2 .2)} Face 36896 1641 1638 19958 {rgb=(.2 .2 .2)} Face 36897 1495 1638 19959 {rgb=(.2 .2 .2)} Face 36898 1638 1641 19959 {rgb=(.2 .2 .2)} Face 36899 1641 1484 19959 {rgb=(.2 .2 .2)} Face 36900 1484 1495 19959 {rgb=(.2 .2 .2)} Face 36901 1292 1495 19960 {rgb=(.2 .2 .2)} Face 36902 1495 1484 19960 {rgb=(.2 .2 .2)} Face 36903 1484 1312 19960 {rgb=(.2 .2 .2)} Face 36904 1312 1292 19960 {rgb=(.2 .2 .2)} Face 36905 1239 1350 19961 {rgb=(.2 .2 .2)} Face 36906 1350 1365 19961 {rgb=(.2 .2 .2)} Face 36907 1365 1252 19961 {rgb=(.2 .2 .2)} Face 36908 1252 1239 19961 {rgb=(.2 .2 .2)} Face 36909 1140 1191 19962 {rgb=(.2 .2 .2)} Face 36910 1191 1201 19962 {rgb=(.2 .2 .2)} Face 36911 1201 1122 19962 {rgb=(.2 .2 .2)} Face 36912 1122 1140 19962 {rgb=(.2 .2 .2)} Face 36913 1111 1140 19963 {rgb=(.2 .2 .2)} Face 36914 1140 1122 19963 {rgb=(.2 .2 .2)} Face 36915 1122 1091 19963 {rgb=(.2 .2 .2)} Face 36916 1091 1111 19963 {rgb=(.2 .2 .2)} Face 36917 1059 1111 19964 {rgb=(.2 .2 .2)} Face 36918 1111 1091 19964 {rgb=(.2 .2 .2)} Face 36919 1091 1010 19964 {rgb=(.2 .2 .2)} Face 36920 1010 1059 19964 {rgb=(.2 .2 .2)} Face 36921 1483 1623 19965 {rgb=(.2 .2 .2)} Face 36922 1623 1638 19965 {rgb=(.2 .2 .2)} Face 36923 1638 1495 19965 {rgb=(.2 .2 .2)} Face 36924 1495 1483 19965 {rgb=(.2 .2 .2)} Face 36925 1329 1489 19966 {rgb=(.2 .2 .2)} Face 36926 1489 1503 19966 {rgb=(.2 .2 .2)} Face 36927 1503 1350 19966 {rgb=(.2 .2 .2)} Face 36928 1350 1329 19966 {rgb=(.2 .2 .2)} Face 36929 1242 1329 19967 {rgb=(.2 .2 .2)} Face 36930 1329 1350 19967 {rgb=(.2 .2 .2)} Face 36931 1350 1239 19967 {rgb=(.2 .2 .2)} Face 36932 1239 1242 19967 {rgb=(.2 .2 .2)} Face 36933 1188 1140 19968 {rgb=(.2 .2 .2)} Face 36934 1140 1150 19968 {rgb=(.2 .2 .2)} Face 36935 1150 1158 19968 {rgb=(.2 .2 .2)} Face 36936 1158 1188 19968 {rgb=(.2 .2 .2)} Face 36937 2311 2232 19969 {rgb=(.2 .2 .2)} Face 36938 2232 2082 19969 {rgb=(.2 .2 .2)} Face 36939 2082 2025 19969 {rgb=(.2 .2 .2)} Face 36940 2025 2311 19969 {rgb=(.2 .2 .2)} Face 36941 1774 2311 19970 {rgb=(.2 .2 .2)} Face 36942 2311 2025 19970 {rgb=(.2 .2 .2)} Face 36943 2025 1712 19970 {rgb=(.2 .2 .2)} Face 36944 1712 1774 19970 {rgb=(.2 .2 .2)} Face 36945 1629 1655 19971 {rgb=(.2 .2 .2)} Face 36946 1655 1648 19971 {rgb=(.2 .2 .2)} Face 36947 1648 1624 19971 {rgb=(.2 .2 .2)} Face 36948 1624 1629 19971 {rgb=(.2 .2 .2)} Face 36949 1620 1621 19972 {rgb=(.2 .2 .2)} Face 36950 1621 1954 19972 {rgb=(.2 .2 .2)} Face 36951 1954 1950 19972 {rgb=(.2 .2 .2)} Face 36952 1950 1620 19972 {rgb=(.2 .2 .2)} Face 36953 1650 1620 19973 {rgb=(.2 .2 .2)} Face 36954 1620 1950 19973 {rgb=(.2 .2 .2)} Face 36955 1950 2214 19973 {rgb=(.2 .2 .2)} Face 36956 2214 1650 19973 {rgb=(.2 .2 .2)} Face 36957 1655 1650 19974 {rgb=(.2 .2 .2)} Face 36958 1650 2214 19974 {rgb=(.2 .2 .2)} Face 36959 2214 2188 19974 {rgb=(.2 .2 .2)} Face 36960 2188 1655 19974 {rgb=(.2 .2 .2)} Face 36961 1149 1144 19975 {rgb=(.2 .2 .2)} Face 36962 1144 1102 19975 {rgb=(.2 .2 .2)} Face 36963 1102 1098 19975 {rgb=(.2 .2 .2)} Face 36964 1098 1149 19975 {rgb=(.2 .2 .2)} Face 36965 1122 1149 19976 {rgb=(.2 .2 .2)} Face 36966 1149 1098 19976 {rgb=(.2 .2 .2)} Face 36967 1098 1091 19976 {rgb=(.2 .2 .2)} Face 36968 1091 1122 19976 {rgb=(.2 .2 .2)} Face 36969 1447 1545 19977 {rgb=(.2 .2 .2)} Face 36970 1545 1543 19977 {rgb=(.2 .2 .2)} Face 36971 1543 1456 19977 {rgb=(.2 .2 .2)} Face 36972 1456 1447 19977 {rgb=(.2 .2 .2)} Face 36973 1493 1370 19978 {rgb=(.2 .2 .2)} Face 36974 1370 1294 19978 {rgb=(.2 .2 .2)} Face 36975 1294 1480 19978 {rgb=(.2 .2 .2)} Face 36976 1480 1493 19978 {rgb=(.2 .2 .2)} Face 36977 1398 1433 19979 {rgb=(.2 .2 .2)} Face 36978 1433 1526 19979 {rgb=(.2 .2 .2)} Face 36979 1526 1480 19979 {rgb=(.2 .2 .2)} Face 36980 1480 1398 19979 {rgb=(.2 .2 .2)} Face 36981 1573 1578 19980 {rgb=(.2 .2 .2)} Face 36982 1578 1621 19980 {rgb=(.2 .2 .2)} Face 36983 1621 1620 19980 {rgb=(.2 .2 .2)} Face 36984 1620 1573 19980 {rgb=(.2 .2 .2)} Face 36985 1617 1573 19981 {rgb=(.2 .2 .2)} Face 36986 1573 1620 19981 {rgb=(.2 .2 .2)} Face 36987 1620 1650 19981 {rgb=(.2 .2 .2)} Face 36988 1650 1617 19981 {rgb=(.2 .2 .2)} Face 36989 1629 1617 19982 {rgb=(.2 .2 .2)} Face 36990 1617 1650 19982 {rgb=(.2 .2 .2)} Face 36991 1650 1655 19982 {rgb=(.2 .2 .2)} Face 36992 1655 1629 19982 {rgb=(.2 .2 .2)} Face 36993 1586 1595 19983 {rgb=(.2 .2 .2)} Face 36994 1595 1578 19983 {rgb=(.2 .2 .2)} Face 36995 1578 1573 19983 {rgb=(.2 .2 .2)} Face 36996 1573 1586 19983 {rgb=(.2 .2 .2)} Face 36997 1582 1586 19984 {rgb=(.2 .2 .2)} Face 36998 1586 1573 19984 {rgb=(.2 .2 .2)} Face 36999 1573 1617 19984 {rgb=(.2 .2 .2)} Face 37000 1617 1582 19984 {rgb=(.2 .2 .2)} Face 37001 1543 1582 19985 {rgb=(.2 .2 .2)} Face 37002 1582 1617 19985 {rgb=(.2 .2 .2)} Face 37003 1617 1629 19985 {rgb=(.2 .2 .2)} Face 37004 1629 1543 19985 {rgb=(.2 .2 .2)} Face 37005 1613 1614 19986 {rgb=(.2 .2 .2)} Face 37006 1614 1595 19986 {rgb=(.2 .2 .2)} Face 37007 1595 1586 19986 {rgb=(.2 .2 .2)} Face 37008 1586 1613 19986 {rgb=(.2 .2 .2)} Face 37009 1608 1613 19987 {rgb=(.2 .2 .2)} Face 37010 1613 1586 19987 {rgb=(.2 .2 .2)} Face 37011 1586 1582 19987 {rgb=(.2 .2 .2)} Face 37012 1582 1608 19987 {rgb=(.2 .2 .2)} Face 37013 1545 1608 19988 {rgb=(.2 .2 .2)} Face 37014 1608 1582 19988 {rgb=(.2 .2 .2)} Face 37015 1582 1543 19988 {rgb=(.2 .2 .2)} Face 37016 1543 1545 19988 {rgb=(.2 .2 .2)} Face 37017 1276 1285 19989 {rgb=(.2 .2 .2)} Face 37018 1285 1457 19989 {rgb=(.2 .2 .2)} Face 37019 1457 1462 19989 {rgb=(.2 .2 .2)} Face 37020 1462 1276 19989 {rgb=(.2 .2 .2)} Face 37021 1244 1276 19990 {rgb=(.2 .2 .2)} Face 37022 1276 1462 19990 {rgb=(.2 .2 .2)} Face 37023 1462 1433 19990 {rgb=(.2 .2 .2)} Face 37024 1433 1244 19990 {rgb=(.2 .2 .2)} Face 37025 1098 1102 19991 {rgb=(.2 .2 .2)} Face 37026 1102 1014 19991 {rgb=(.2 .2 .2)} Face 37027 1014 1007 19991 {rgb=(.2 .2 .2)} Face 37028 1007 1098 19991 {rgb=(.2 .2 .2)} Face 37029 1091 1098 19992 {rgb=(.2 .2 .2)} Face 37030 1098 1007 19992 {rgb=(.2 .2 .2)} Face 37031 1007 1010 19992 {rgb=(.2 .2 .2)} Face 37032 1010 1091 19992 {rgb=(.2 .2 .2)} Face 37033 1183 1110 19993 {rgb=(.2 .2 .2)} Face 37034 1110 1059 19993 {rgb=(.2 .2 .2)} Face 37035 1059 1156 19993 {rgb=(.2 .2 .2)} Face 37036 1156 1183 19993 {rgb=(.2 .2 .2)} Face 37037 962 907 19994 {rgb=(.2 .2 .2)} Face 37038 907 989 19994 {rgb=(.2 .2 .2)} Face 37039 989 1035 19994 {rgb=(.2 .2 .2)} Face 37040 1035 962 19994 {rgb=(.2 .2 .2)} Face 37041 1007 1014 19995 {rgb=(.2 .2 .2)} Face 37042 1014 965 19995 {rgb=(.2 .2 .2)} Face 37043 965 963 19995 {rgb=(.2 .2 .2)} Face 37044 963 1007 19995 {rgb=(.2 .2 .2)} Face 37045 1010 1007 19996 {rgb=(.2 .2 .2)} Face 37046 1007 963 19996 {rgb=(.2 .2 .2)} Face 37047 963 990 19996 {rgb=(.2 .2 .2)} Face 37048 990 1010 19996 {rgb=(.2 .2 .2)} Face 37049 1059 1010 19997 {rgb=(.2 .2 .2)} Face 37050 1010 990 19997 {rgb=(.2 .2 .2)} Face 37051 990 1052 19997 {rgb=(.2 .2 .2)} Face 37052 1052 1059 19997 {rgb=(.2 .2 .2)} Face 37053 1156 1059 19998 {rgb=(.2 .2 .2)} Face 37054 1059 1052 19998 {rgb=(.2 .2 .2)} Face 37055 1052 1166 19998 {rgb=(.2 .2 .2)} Face 37056 1166 1156 19998 {rgb=(.2 .2 .2)} Face 37057 935 934 19999 {rgb=(.2 .2 .2)} Face 37058 934 893 19999 {rgb=(.2 .2 .2)} Face 37059 893 894 19999 {rgb=(.2 .2 .2)} Face 37060 894 935 19999 {rgb=(.2 .2 .2)} Face 37061 951 935 20000 {rgb=(.2 .2 .2)} Face 37062 935 894 20000 {rgb=(.2 .2 .2)} Face 37063 894 918 20000 {rgb=(.2 .2 .2)} Face 37064 918 951 20000 {rgb=(.2 .2 .2)} Face 37065 1015 951 20001 {rgb=(.2 .2 .2)} Face 37066 951 918 20001 {rgb=(.2 .2 .2)} Face 37067 918 972 20001 {rgb=(.2 .2 .2)} Face 37068 972 1015 20001 {rgb=(.2 .2 .2)} Face 37069 1120 1015 20002 {rgb=(.2 .2 .2)} Face 37070 1015 972 20002 {rgb=(.2 .2 .2)} Face 37071 972 1094 20002 {rgb=(.2 .2 .2)} Face 37072 1094 1120 20002 {rgb=(.2 .2 .2)} Face 37073 1494 1183 20003 {rgb=(.2 .2 .2)} Face 37074 1183 1156 20003 {rgb=(.2 .2 .2)} Face 37075 1156 1456 20003 {rgb=(.2 .2 .2)} Face 37076 1456 1494 20003 {rgb=(.2 .2 .2)} Face 37077 1502 1353 20004 {rgb=(.2 .2 .2)} Face 37078 1353 1352 20004 {rgb=(.2 .2 .2)} Face 37079 1352 1501 20004 {rgb=(.2 .2 .2)} Face 37080 1501 1502 20004 {rgb=(.2 .2 .2)} Face 37081 1457 1532 20005 {rgb=(.2 .2 .2)} Face 37082 1532 1524 20005 {rgb=(.2 .2 .2)} Face 37083 1524 1462 20005 {rgb=(.2 .2 .2)} Face 37084 1462 1457 20005 {rgb=(.2 .2 .2)} Face 37085 2060 1619 20006 {rgb=(.2 .2 .2)} Face 37086 1619 1632 20006 {rgb=(.2 .2 .2)} Face 37087 1632 2154 20006 {rgb=(.2 .2 .2)} Face 37088 2154 2060 20006 {rgb=(.2 .2 .2)} Face 37089 1559 1493 20007 {rgb=(.2 .2 .2)} Face 37090 1493 1480 20007 {rgb=(.2 .2 .2)} Face 37091 1480 1526 20007 {rgb=(.2 .2 .2)} Face 37092 1526 1559 20007 {rgb=(.2 .2 .2)} Face 37093 2311 1774 20008 {rgb=(.2 .2 .2)} Face 37094 1774 1780 20008 {rgb=(.2 .2 .2)} Face 37095 1780 2397 20008 {rgb=(.2 .2 .2)} Face 37096 2397 2311 20008 {rgb=(.2 .2 .2)} Face 37097 2397 1780 20009 {rgb=(.2 .2 .2)} Face 37098 1780 1708 20009 {rgb=(.2 .2 .2)} Face 37099 1708 2044 20009 {rgb=(.2 .2 .2)} Face 37100 2044 2397 20009 {rgb=(.2 .2 .2)} Face 37101 1623 1914 20010 {rgb=(.2 .2 .2)} Face 37102 1914 2234 20010 {rgb=(.2 .2 .2)} Face 37103 2234 1638 20010 {rgb=(.2 .2 .2)} Face 37104 1638 1623 20010 {rgb=(.2 .2 .2)} Face 37105 2830 2718 20011 {rgb=(.2 .2 .2)} Face 37106 2718 2491 20011 {rgb=(.2 .2 .2)} Face 37107 2491 2684 20011 {rgb=(.2 .2 .2)} Face 37108 2684 2830 20011 {rgb=(.2 .2 .2)} Face 37109 1312 1484 20012 {rgb=(.2 .2 .2)} Face 37110 1484 1501 20012 {rgb=(.2 .2 .2)} Face 37111 1501 1352 20012 {rgb=(.2 .2 .2)} Face 37112 1352 1312 20012 {rgb=(.2 .2 .2)} Face 37113 1526 1524 20013 {rgb=(.2 .2 .2)} Face 37114 1524 1562 20013 {rgb=(.2 .2 .2)} Face 37115 1562 1559 20013 {rgb=(.2 .2 .2)} Face 37116 1559 1526 20013 {rgb=(.2 .2 .2)} Face 37117 1035 989 20014 {rgb=(.2 .2 .2)} Face 37118 989 1115 20014 {rgb=(.2 .2 .2)} Face 37119 1115 1182 20014 {rgb=(.2 .2 .2)} Face 37120 1182 1035 20014 {rgb=(.2 .2 .2)} Face 37121 1568 1562 20015 {rgb=(.2 .2 .2)} Face 37122 1562 1524 20015 {rgb=(.2 .2 .2)} Face 37123 1524 1532 20015 {rgb=(.2 .2 .2)} Face 37124 1532 1568 20015 {rgb=(.2 .2 .2)} Face 37125 880 983 20016 {rgb=(.2 .2 .2)} Face 37126 983 980 20016 {rgb=(.2 .2 .2)} Face 37127 980 884 20016 {rgb=(.2 .2 .2)} Face 37128 884 880 20016 {rgb=(.2 .2 .2)} Face 37129 1412 1306 20017 {rgb=(.2 .2 .2)} Face 37130 1306 1307 20017 {rgb=(.2 .2 .2)} Face 37131 1307 1413 20017 {rgb=(.2 .2 .2)} Face 37132 1413 1412 20017 {rgb=(.2 .2 .2)} Face 37133 1456 1156 20018 {rgb=(.2 .2 .2)} Face 37134 1156 1166 20018 {rgb=(.2 .2 .2)} Face 37135 1166 1447 20018 {rgb=(.2 .2 .2)} Face 37136 1447 1456 20018 {rgb=(.2 .2 .2)} Face 37137 1370 1120 20019 {rgb=(.2 .2 .2)} Face 37138 1120 1094 20019 {rgb=(.2 .2 .2)} Face 37139 1094 1294 20019 {rgb=(.2 .2 .2)} Face 37140 1294 1370 20019 {rgb=(.2 .2 .2)} Face 37141 1619 1502 20020 {rgb=(.2 .2 .2)} Face 37142 1502 1501 20020 {rgb=(.2 .2 .2)} Face 37143 1501 1632 20020 {rgb=(.2 .2 .2)} Face 37144 1632 1619 20020 {rgb=(.2 .2 .2)} Face 37145 893 880 20021 {rgb=(.2 .2 .2)} Face 37146 880 884 20021 {rgb=(.2 .2 .2)} Face 37147 884 894 20021 {rgb=(.2 .2 .2)} Face 37148 894 893 20021 {rgb=(.2 .2 .2)} Face 37149 1107 1285 20022 {rgb=(.2 .2 .2)} Face 37150 1285 1276 20022 {rgb=(.2 .2 .2)} Face 37151 1276 1097 20022 {rgb=(.2 .2 .2)} Face 37152 1097 1107 20022 {rgb=(.2 .2 .2)} Face 37153 2493 2648 20023 {rgb=(.2 .2 .2)} Face 37154 2648 2684 20023 {rgb=(.2 .2 .2)} Face 37155 2684 2491 20023 {rgb=(.2 .2 .2)} Face 37156 2491 2493 20023 {rgb=(.2 .2 .2)} Face 37157 1462 1524 20024 {rgb=(.2 .2 .2)} Face 37158 1524 1526 20024 {rgb=(.2 .2 .2)} Face 37159 1526 1433 20024 {rgb=(.2 .2 .2)} Face 37160 1433 1462 20024 {rgb=(.2 .2 .2)} Face 37161 907 884 20025 {rgb=(.2 .2 .2)} Face 37162 884 980 20025 {rgb=(.2 .2 .2)} Face 37163 980 989 20025 {rgb=(.2 .2 .2)} Face 37164 989 907 20025 {rgb=(.2 .2 .2)} Face 37165 1584 1533 20026 {rgb=(.2 .2 .2)} Face 37166 1533 955 20026 {rgb=(.2 .2 .2)} Face 37167 955 1002 20026 {rgb=(.2 .2 .2)} Face 37168 1002 1584 20026 {rgb=(.2 .2 .2)} Face 37169 1115 989 20027 {rgb=(.2 .2 .2)} Face 37170 989 980 20027 {rgb=(.2 .2 .2)} Face 37171 980 1097 20027 {rgb=(.2 .2 .2)} Face 37172 1097 1115 20027 {rgb=(.2 .2 .2)} Face 37173 1398 1182 20028 {rgb=(.2 .2 .2)} Face 37174 1182 1244 20028 {rgb=(.2 .2 .2)} Face 37175 1244 1433 20028 {rgb=(.2 .2 .2)} Face 37176 1433 1398 20028 {rgb=(.2 .2 .2)} Face 37177 1201 1240 20029 {rgb=(.2 .2 .2)} Face 37178 1240 1149 20029 {rgb=(.2 .2 .2)} Face 37179 1149 1122 20029 {rgb=(.2 .2 .2)} Face 37180 1122 1201 20029 {rgb=(.2 .2 .2)} Face 37181 1484 1641 20030 {rgb=(.2 .2 .2)} Face 37182 1641 1632 20030 {rgb=(.2 .2 .2)} Face 37183 1632 1501 20030 {rgb=(.2 .2 .2)} Face 37184 1501 1484 20030 {rgb=(.2 .2 .2)} Face 37185 2304 2154 20031 {rgb=(.2 .2 .2)} Face 37186 2154 1632 20031 {rgb=(.2 .2 .2)} Face 37187 1632 1641 20031 {rgb=(.2 .2 .2)} Face 37188 1641 2304 20031 {rgb=(.2 .2 .2)} Face 37189 2795 2688 20032 {rgb=(.2 .2 .2)} Face 37190 2688 2718 20032 {rgb=(.2 .2 .2)} Face 37191 2718 2830 20032 {rgb=(.2 .2 .2)} Face 37192 2830 2795 20032 {rgb=(.2 .2 .2)} Face 37193 918 907 20033 {rgb=(.2 .2 .2)} Face 37194 907 962 20033 {rgb=(.2 .2 .2)} Face 37195 962 972 20033 {rgb=(.2 .2 .2)} Face 37196 972 918 20033 {rgb=(.2 .2 .2)} Face 37197 1244 1115 20034 {rgb=(.2 .2 .2)} Face 37198 1115 1097 20034 {rgb=(.2 .2 .2)} Face 37199 1097 1276 20034 {rgb=(.2 .2 .2)} Face 37200 1276 1244 20034 {rgb=(.2 .2 .2)} Face 37201 1252 1365 20035 {rgb=(.2 .2 .2)} Face 37202 1365 1413 20035 {rgb=(.2 .2 .2)} Face 37203 1413 1307 20035 {rgb=(.2 .2 .2)} Face 37204 1307 1252 20035 {rgb=(.2 .2 .2)} Face 37205 1737 2149 20036 {rgb=(.2 .2 .2)} Face 37206 2149 2044 20036 {rgb=(.2 .2 .2)} Face 37207 2044 1708 20036 {rgb=(.2 .2 .2)} Face 37208 1708 1737 20036 {rgb=(.2 .2 .2)} Face 37209 983 1107 20037 {rgb=(.2 .2 .2)} Face 37210 1107 1097 20037 {rgb=(.2 .2 .2)} Face 37211 1097 980 20037 {rgb=(.2 .2 .2)} Face 37212 980 983 20037 {rgb=(.2 .2 .2)} Face 37213 1144 1149 20038 {rgb=(.2 .2 .2)} Face 37214 1149 1240 20038 {rgb=(.2 .2 .2)} Face 37215 1240 1243 20038 {rgb=(.2 .2 .2)} Face 37216 1243 1144 20038 {rgb=(.2 .2 .2)} Face 37217 894 884 20039 {rgb=(.2 .2 .2)} Face 37218 884 907 20039 {rgb=(.2 .2 .2)} Face 37219 907 918 20039 {rgb=(.2 .2 .2)} Face 37220 918 894 20039 {rgb=(.2 .2 .2)} Face 37221 1035 1182 20040 {rgb=(.2 .2 .2)} Face 37222 1182 1294 20040 {rgb=(.2 .2 .2)} Face 37223 1294 1094 20040 {rgb=(.2 .2 .2)} Face 37224 1094 1035 20040 {rgb=(.2 .2 .2)} Face 37225 8069 8068 20041 {rgb=(.6 .5 .4)} Face 37226 8068 5540 20041 {rgb=(.6 .5 .4)} Face 37227 5540 5542 20041 {rgb=(.6 .5 .4)} Face 37228 5542 8069 20041 {rgb=(.6 .5 .4)} Face 37229 8072 8073 20042 {rgb=(.6 .5 .4)} Face 37230 8073 8068 20042 {rgb=(.6 .5 .4)} Face 37231 8068 8069 20042 {rgb=(.6 .5 .4)} Face 37232 8069 8072 20042 {rgb=(.6 .5 .4)} Face 37233 8074 8075 20043 {rgb=(.6 .5 .4)} Face 37234 8075 8073 20043 {rgb=(.6 .5 .4)} Face 37235 8073 8072 20043 {rgb=(.6 .5 .4)} Face 37236 8072 8074 20043 {rgb=(.6 .5 .4)} Face 37237 8076 8077 20044 {rgb=(.6 .5 .4)} Face 37238 8077 8075 20044 {rgb=(.6 .5 .4)} Face 37239 8075 8074 20044 {rgb=(.6 .5 .4)} Face 37240 8074 8076 20044 {rgb=(.6 .5 .4)} Face 37241 8070 8071 20045 {rgb=(.6 .5 .4)} Face 37242 8071 8077 20045 {rgb=(.6 .5 .4)} Face 37243 8077 8076 20045 {rgb=(.6 .5 .4)} Face 37244 8076 8070 20045 {rgb=(.6 .5 .4)} Face 37245 5551 5550 20046 {rgb=(.6 .5 .4)} Face 37246 5550 8071 20046 {rgb=(.6 .5 .4)} Face 37247 8071 8070 20046 {rgb=(.6 .5 .4)} Face 37248 8070 5551 20046 {rgb=(.6 .5 .4)} Face 37249 8071 5550 20047 {rgb=(.6 .5 .4)} Face 37250 5550 5545 20047 {rgb=(.6 .5 .4)} Face 37251 5545 8077 20047 {rgb=(.6 .5 .4)} Face 37252 8077 8071 20047 {rgb=(.6 .5 .4)} Face 37253 8077 5545 20048 {rgb=(.6 .5 .4)} Face 37254 5545 5543 20048 {rgb=(.6 .5 .4)} Face 37255 5543 8075 20048 {rgb=(.6 .5 .4)} Face 37256 8075 8077 20048 {rgb=(.6 .5 .4)} Face 37257 8075 5543 20049 {rgb=(.6 .5 .4)} Face 37258 5543 5541 20049 {rgb=(.6 .5 .4)} Face 37259 5541 8073 20049 {rgb=(.6 .5 .4)} Face 37260 8073 8075 20049 {rgb=(.6 .5 .4)} Face 37261 8073 5541 20050 {rgb=(.6 .5 .4)} Face 37262 5541 5540 20050 {rgb=(.6 .5 .4)} Face 37263 5540 8068 20050 {rgb=(.6 .5 .4)} Face 37264 8068 8073 20050 {rgb=(.6 .5 .4)} Face 37265 5542 5540 20051 {rgb=(.6 .5 .4)} Face 37266 5540 2966 20051 {rgb=(.6 .5 .4)} Face 37267 2966 2967 20051 {rgb=(.6 .5 .4)} Face 37268 2967 5542 20051 {rgb=(.6 .5 .4)} Face 37269 2967 2966 20052 {rgb=(.6 .5 .4)} Face 37270 2966 2962 20052 {rgb=(.6 .5 .4)} Face 37271 2962 2963 20052 {rgb=(.6 .5 .4)} Face 37272 2963 2967 20052 {rgb=(.6 .5 .4)} Face 37273 2963 2962 20053 {rgb=(.6 .5 .4)} Face 37274 2962 2959 20053 {rgb=(.6 .5 .4)} Face 37275 2959 2960 20053 {rgb=(.6 .5 .4)} Face 37276 2960 2963 20053 {rgb=(.6 .5 .4)} Face 37277 2960 2959 20054 {rgb=(.6 .5 .4)} Face 37278 2959 2957 20054 {rgb=(.6 .5 .4)} Face 37279 2957 2958 20054 {rgb=(.6 .5 .4)} Face 37280 2958 2960 20054 {rgb=(.6 .5 .4)} Face 37281 2958 2957 20055 {rgb=(.6 .5 .4)} Face 37282 2957 2964 20055 {rgb=(.6 .5 .4)} Face 37283 2964 2965 20055 {rgb=(.6 .5 .4)} Face 37284 2965 2958 20055 {rgb=(.6 .5 .4)} Face 37285 2965 2964 20056 {rgb=(.6 .5 .4)} Face 37286 2964 5550 20056 {rgb=(.6 .5 .4)} Face 37287 5550 5551 20056 {rgb=(.6 .5 .4)} Face 37288 5551 2965 20056 {rgb=(.6 .5 .4)} Face 37289 2957 5545 20057 {rgb=(.6 .5 .4)} Face 37290 5545 5550 20057 {rgb=(.6 .5 .4)} Face 37291 5550 2964 20057 {rgb=(.6 .5 .4)} Face 37292 2964 2957 20057 {rgb=(.6 .5 .4)} Face 37293 2959 5543 20058 {rgb=(.6 .5 .4)} Face 37294 5543 5545 20058 {rgb=(.6 .5 .4)} Face 37295 5545 2957 20058 {rgb=(.6 .5 .4)} Face 37296 2957 2959 20058 {rgb=(.6 .5 .4)} Face 37297 2962 5541 20059 {rgb=(.6 .5 .4)} Face 37298 5541 5543 20059 {rgb=(.6 .5 .4)} Face 37299 5543 2959 20059 {rgb=(.6 .5 .4)} Face 37300 2959 2962 20059 {rgb=(.6 .5 .4)} Face 37301 2966 5540 20060 {rgb=(.6 .5 .4)} Face 37302 5540 5541 20060 {rgb=(.6 .5 .4)} Face 37303 5541 2962 20060 {rgb=(.6 .5 .4)} Face 37304 2962 2966 20060 {rgb=(.6 .5 .4)} Face 37305 5546 5551 20061 {rgb=(.6 .5 .3)} Face 37306 5551 9238 20061 {rgb=(.6 .5 .3)} Face 37307 9238 8737 20061 {rgb=(.6 .5 .3)} Face 37308 8737 5546 20061 {rgb=(.6 .5 .3)} Face 37309 2965 5551 20062 {rgb=(.6 .5 .3)} Face 37310 5551 2309 20062 {rgb=(.6 .5 .3)} Face 37311 2309 1807 20062 {rgb=(.6 .5 .3)} Face 37312 1807 2965 20062 {rgb=(.6 .5 .3)} Face 37313 8069 5542 20063 {rgb=(.6 .5 .3)} Face 37314 5542 5538 20063 {rgb=(.6 .5 .3)} Face 37315 5538 9293 20063 {rgb=(.6 .5 .3)} Face 37316 9293 8069 20063 {rgb=(.6 .5 .3)} Face 37317 5538 5537 20064 {rgb=(.6 .5 .3)} Face 37318 5537 9235 20064 {rgb=(.6 .5 .3)} Face 37319 9235 9293 20064 {rgb=(.6 .5 .3)} Face 37320 9293 5538 20064 {rgb=(.6 .5 .3)} Face 37321 9520 8074 20065 {rgb=(.6 .5 .3)} Face 37322 8074 8072 20065 {rgb=(.6 .5 .3)} Face 37323 8072 9457 20065 {rgb=(.6 .5 .3)} Face 37324 9457 9520 20065 {rgb=(.6 .5 .3)} Face 37325 9553 8076 20066 {rgb=(.6 .5 .3)} Face 37326 8076 8074 20066 {rgb=(.6 .5 .3)} Face 37327 8074 9520 20066 {rgb=(.6 .5 .3)} Face 37328 9520 9553 20066 {rgb=(.6 .5 .3)} Face 37329 9409 8070 20067 {rgb=(.6 .5 .3)} Face 37330 8070 8076 20067 {rgb=(.6 .5 .3)} Face 37331 8076 9553 20067 {rgb=(.6 .5 .3)} Face 37332 9553 9409 20067 {rgb=(.6 .5 .3)} Face 37333 9235 5537 20068 {rgb=(.6 .5 .3)} Face 37334 5537 5535 20068 {rgb=(.6 .5 .3)} Face 37335 5535 7631 20068 {rgb=(.6 .5 .3)} Face 37336 7631 9235 20068 {rgb=(.6 .5 .3)} Face 37337 9457 8072 20069 {rgb=(.6 .5 .3)} Face 37338 8072 8069 20069 {rgb=(.6 .5 .3)} Face 37339 8069 9406 20069 {rgb=(.6 .5 .3)} Face 37340 9406 9457 20069 {rgb=(.6 .5 .3)} Face 37341 1752 5538 20070 {rgb=(.6 .5 .3)} Face 37342 5538 5542 20070 {rgb=(.6 .5 .3)} Face 37343 5542 2967 20070 {rgb=(.6 .5 .3)} Face 37344 2967 1752 20070 {rgb=(.6 .5 .3)} Face 37345 1752 1810 20071 {rgb=(.6 .5 .3)} Face 37346 1810 5537 20071 {rgb=(.6 .5 .3)} Face 37347 5537 5538 20071 {rgb=(.6 .5 .3)} Face 37348 5538 1752 20071 {rgb=(.6 .5 .3)} Face 37349 1588 2963 20072 {rgb=(.6 .5 .3)} Face 37350 2963 2960 20072 {rgb=(.6 .5 .3)} Face 37351 2960 1525 20072 {rgb=(.6 .5 .3)} Face 37352 1525 1588 20072 {rgb=(.6 .5 .3)} Face 37353 1525 2960 20073 {rgb=(.6 .5 .3)} Face 37354 2960 2958 20073 {rgb=(.6 .5 .3)} Face 37355 2958 1492 20073 {rgb=(.6 .5 .3)} Face 37356 1492 1525 20073 {rgb=(.6 .5 .3)} Face 37357 1492 2958 20074 {rgb=(.6 .5 .3)} Face 37358 2958 2965 20074 {rgb=(.6 .5 .3)} Face 37359 2965 1636 20074 {rgb=(.6 .5 .3)} Face 37360 1636 1492 20074 {rgb=(.6 .5 .3)} Face 37361 3414 5535 20075 {rgb=(.6 .5 .3)} Face 37362 5535 5537 20075 {rgb=(.6 .5 .3)} Face 37363 5537 1810 20075 {rgb=(.6 .5 .3)} Face 37364 1810 3414 20075 {rgb=(.6 .5 .3)} Face 37365 1639 2967 20076 {rgb=(.6 .5 .3)} Face 37366 2967 2963 20076 {rgb=(.6 .5 .3)} Face 37367 2963 1588 20076 {rgb=(.6 .5 .3)} Face 37368 1588 1639 20076 {rgb=(.6 .5 .3)} Face 37369 9748 9650 20077 {rgb=(.3 .2 .3)} Face 37370 9650 9576 20077 {rgb=(.3 .2 .3)} Face 37371 9576 9670 20077 {rgb=(.3 .2 .3)} Face 37372 9670 9748 20077 {rgb=(.3 .2 .3)} Face 37373 9466 9576 20078 {rgb=(.3 .2 .3)} Face 37374 9576 9650 20078 {rgb=(.3 .2 .3)} Face 37375 9650 9484 20078 {rgb=(.3 .2 .3)} Face 37376 9484 9466 20078 {rgb=(.3 .2 .3)} Face 37377 7299 5507 20079 {rgb=(.3 .2 .3)} Face 37378 5507 5506 20079 {rgb=(.3 .2 .3)} Face 37379 5506 7230 20079 {rgb=(.3 .2 .3)} Face 37380 7230 7299 20079 {rgb=(.3 .2 .3)} Face 37381 8795 7299 20080 {rgb=(.3 .2 .3)} Face 37382 7299 7230 20080 {rgb=(.3 .2 .3)} Face 37383 7230 8615 20080 {rgb=(.3 .2 .3)} Face 37384 8615 8795 20080 {rgb=(.3 .2 .3)} Face 37385 9412 8795 20081 {rgb=(.3 .2 .3)} Face 37386 8795 8615 20081 {rgb=(.3 .2 .3)} Face 37387 8615 9400 20081 {rgb=(.3 .2 .3)} Face 37388 9400 9412 20081 {rgb=(.3 .2 .3)} Face 37389 9667 9412 20082 {rgb=(.3 .2 .3)} Face 37390 9412 9400 20082 {rgb=(.3 .2 .3)} Face 37391 9400 9595 20082 {rgb=(.3 .2 .3)} Face 37392 9595 9667 20082 {rgb=(.3 .2 .3)} Face 37393 9749 9667 20083 {rgb=(.3 .2 .3)} Face 37394 9667 9595 20083 {rgb=(.3 .2 .3)} Face 37395 9595 9684 20083 {rgb=(.3 .2 .3)} Face 37396 9684 9749 20083 {rgb=(.3 .2 .3)} Face 37397 9651 9749 20084 {rgb=(.3 .2 .3)} Face 37398 9749 9684 20084 {rgb=(.3 .2 .3)} Face 37399 9684 9577 20084 {rgb=(.3 .2 .3)} Face 37400 9577 9651 20084 {rgb=(.3 .2 .3)} Face 37401 9485 9651 20085 {rgb=(.3 .2 .3)} Face 37402 9651 9577 20085 {rgb=(.3 .2 .3)} Face 37403 9577 9440 20085 {rgb=(.3 .2 .3)} Face 37404 9440 9485 20085 {rgb=(.3 .2 .3)} Face 37405 8930 9485 20086 {rgb=(.3 .2 .3)} Face 37406 9485 9440 20086 {rgb=(.3 .2 .3)} Face 37407 9440 8690 20086 {rgb=(.3 .2 .3)} Face 37408 8690 8930 20086 {rgb=(.3 .2 .3)} Face 37409 7284 8930 20087 {rgb=(.3 .2 .3)} Face 37410 8930 8690 20087 {rgb=(.3 .2 .3)} Face 37411 8690 7218 20087 {rgb=(.3 .2 .3)} Face 37412 7218 7284 20087 {rgb=(.3 .2 .3)} Face 37413 5504 7284 20088 {rgb=(.3 .2 .3)} Face 37414 7284 7218 20088 {rgb=(.3 .2 .3)} Face 37415 7218 5505 20088 {rgb=(.3 .2 .3)} Face 37416 5505 5504 20088 {rgb=(.3 .2 .3)} Face 37417 7283 5500 20089 {rgb=(.3 .2 .3)} Face 37418 5500 5501 20089 {rgb=(.3 .2 .3)} Face 37419 5501 7217 20089 {rgb=(.3 .2 .3)} Face 37420 7217 7283 20089 {rgb=(.3 .2 .3)} Face 37421 8929 7283 20090 {rgb=(.3 .2 .3)} Face 37422 7283 7217 20090 {rgb=(.3 .2 .3)} Face 37423 7217 8489 20090 {rgb=(.3 .2 .3)} Face 37424 8489 8929 20090 {rgb=(.3 .2 .3)} Face 37425 9484 8929 20091 {rgb=(.3 .2 .3)} Face 37426 8929 9094 20091 {rgb=(.3 .2 .3)} Face 37427 9094 9410 20091 {rgb=(.3 .2 .3)} Face 37428 9410 9484 20091 {rgb=(.3 .2 .3)} Face 37429 9666 9748 20092 {rgb=(.3 .2 .3)} Face 37430 9748 9668 20092 {rgb=(.3 .2 .3)} Face 37431 9668 9594 20092 {rgb=(.3 .2 .3)} Face 37432 9594 9666 20092 {rgb=(.3 .2 .3)} Face 37433 9411 9666 20093 {rgb=(.3 .2 .3)} Face 37434 9666 9594 20093 {rgb=(.3 .2 .3)} Face 37435 9594 9418 20093 {rgb=(.3 .2 .3)} Face 37436 9418 9411 20093 {rgb=(.3 .2 .3)} Face 37437 8794 9411 20094 {rgb=(.3 .2 .3)} Face 37438 9411 9382 20094 {rgb=(.3 .2 .3)} Face 37439 9382 8614 20094 {rgb=(.3 .2 .3)} Face 37440 8614 8794 20094 {rgb=(.3 .2 .3)} Face 37441 7298 8794 20095 {rgb=(.3 .2 .3)} Face 37442 8794 8614 20095 {rgb=(.3 .2 .3)} Face 37443 8614 7229 20095 {rgb=(.3 .2 .3)} Face 37444 7229 7298 20095 {rgb=(.3 .2 .3)} Face 37445 5503 7298 20096 {rgb=(.3 .2 .3)} Face 37446 7298 7229 20096 {rgb=(.3 .2 .3)} Face 37447 7229 5502 20096 {rgb=(.3 .2 .3)} Face 37448 5502 5503 20096 {rgb=(.3 .2 .3)} Face 37449 9756 9656 20097 {rgb=(.3 .2 .3)} Face 37450 9656 9597 20097 {rgb=(.3 .2 .3)} Face 37451 9597 9686 20097 {rgb=(.3 .2 .3)} Face 37452 9686 9756 20097 {rgb=(.3 .2 .3)} Face 37453 9658 9756 20098 {rgb=(.3 .2 .3)} Face 37454 9756 9686 20098 {rgb=(.3 .2 .3)} Face 37455 9686 9579 20098 {rgb=(.3 .2 .3)} Face 37456 9579 9658 20098 {rgb=(.3 .2 .3)} Face 37457 9480 9658 20099 {rgb=(.3 .2 .3)} Face 37458 9658 9579 20099 {rgb=(.3 .2 .3)} Face 37459 9579 9442 20099 {rgb=(.3 .2 .3)} Face 37460 9442 9480 20099 {rgb=(.3 .2 .3)} Face 37461 9011 9480 20100 {rgb=(.3 .2 .3)} Face 37462 9480 9442 20100 {rgb=(.3 .2 .3)} Face 37463 9442 8692 20100 {rgb=(.3 .2 .3)} Face 37464 8692 9011 20100 {rgb=(.3 .2 .3)} Face 37465 7321 9011 20101 {rgb=(.3 .2 .3)} Face 37466 9011 8692 20101 {rgb=(.3 .2 .3)} Face 37467 8692 7220 20101 {rgb=(.3 .2 .3)} Face 37468 7220 7321 20101 {rgb=(.3 .2 .3)} Face 37469 5512 7321 20102 {rgb=(.3 .2 .3)} Face 37470 7321 7220 20102 {rgb=(.3 .2 .3)} Face 37471 7220 5513 20102 {rgb=(.3 .2 .3)} Face 37472 5513 5512 20102 {rgb=(.3 .2 .3)} Face 37473 7320 5508 20103 {rgb=(.3 .2 .3)} Face 37474 5508 5509 20103 {rgb=(.3 .2 .3)} Face 37475 5509 7219 20103 {rgb=(.3 .2 .3)} Face 37476 7219 7320 20103 {rgb=(.3 .2 .3)} Face 37477 9010 7320 20104 {rgb=(.3 .2 .3)} Face 37478 7320 7219 20104 {rgb=(.3 .2 .3)} Face 37479 7219 8691 20104 {rgb=(.3 .2 .3)} Face 37480 8691 9010 20104 {rgb=(.3 .2 .3)} Face 37481 9479 9010 20105 {rgb=(.3 .2 .3)} Face 37482 9010 8691 20105 {rgb=(.3 .2 .3)} Face 37483 8691 9441 20105 {rgb=(.3 .2 .3)} Face 37484 9441 9479 20105 {rgb=(.3 .2 .3)} Face 37485 9657 9479 20106 {rgb=(.3 .2 .3)} Face 37486 9479 9441 20106 {rgb=(.3 .2 .3)} Face 37487 9441 9578 20106 {rgb=(.3 .2 .3)} Face 37488 9578 9657 20106 {rgb=(.3 .2 .3)} Face 37489 9755 9657 20107 {rgb=(.3 .2 .3)} Face 37490 9657 9578 20107 {rgb=(.3 .2 .3)} Face 37491 9578 9685 20107 {rgb=(.3 .2 .3)} Face 37492 9685 9755 20107 {rgb=(.3 .2 .3)} Face 37493 9655 9755 20108 {rgb=(.3 .2 .3)} Face 37494 9755 9685 20108 {rgb=(.3 .2 .3)} Face 37495 9685 9596 20108 {rgb=(.3 .2 .3)} Face 37496 9596 9655 20108 {rgb=(.3 .2 .3)} Face 37497 9414 9655 20109 {rgb=(.3 .2 .3)} Face 37498 9655 9596 20109 {rgb=(.3 .2 .3)} Face 37499 9596 9401 20109 {rgb=(.3 .2 .3)} Face 37500 9401 9414 20109 {rgb=(.3 .2 .3)} Face 37501 8815 9414 20110 {rgb=(.3 .2 .3)} Face 37502 9414 9401 20110 {rgb=(.3 .2 .3)} Face 37503 9401 8616 20110 {rgb=(.3 .2 .3)} Face 37504 8616 8815 20110 {rgb=(.3 .2 .3)} Face 37505 7314 8815 20111 {rgb=(.3 .2 .3)} Face 37506 8815 8616 20111 {rgb=(.3 .2 .3)} Face 37507 8616 7231 20111 {rgb=(.3 .2 .3)} Face 37508 7231 7314 20111 {rgb=(.3 .2 .3)} Face 37509 5511 7314 20112 {rgb=(.3 .2 .3)} Face 37510 7314 7231 20112 {rgb=(.3 .2 .3)} Face 37511 7231 5510 20112 {rgb=(.3 .2 .3)} Face 37512 5510 5511 20112 {rgb=(.3 .2 .3)} Face 37513 7315 5515 20113 {rgb=(.3 .2 .3)} Face 37514 5515 5514 20113 {rgb=(.3 .2 .3)} Face 37515 5514 7232 20113 {rgb=(.3 .2 .3)} Face 37516 7232 7315 20113 {rgb=(.3 .2 .3)} Face 37517 8816 7315 20114 {rgb=(.3 .2 .3)} Face 37518 7315 7232 20114 {rgb=(.3 .2 .3)} Face 37519 7232 8617 20114 {rgb=(.3 .2 .3)} Face 37520 8617 8816 20114 {rgb=(.3 .2 .3)} Face 37521 9415 8816 20115 {rgb=(.3 .2 .3)} Face 37522 8816 8617 20115 {rgb=(.3 .2 .3)} Face 37523 8617 9402 20115 {rgb=(.3 .2 .3)} Face 37524 9402 9415 20115 {rgb=(.3 .2 .3)} Face 37525 9656 9415 20116 {rgb=(.3 .2 .3)} Face 37526 9415 9402 20116 {rgb=(.3 .2 .3)} Face 37527 9402 9597 20116 {rgb=(.3 .2 .3)} Face 37528 9597 9656 20116 {rgb=(.3 .2 .3)} Face 37529 9441 8691 20117 {rgb=(.3 .2 .3)} Face 37530 8691 8690 20117 {rgb=(.3 .2 .3)} Face 37531 8690 9440 20117 {rgb=(.3 .2 .3)} Face 37532 9440 9441 20117 {rgb=(.3 .2 .3)} Face 37533 8691 7219 20118 {rgb=(.3 .2 .3)} Face 37534 7219 7218 20118 {rgb=(.3 .2 .3)} Face 37535 7218 8690 20118 {rgb=(.3 .2 .3)} Face 37536 8690 8691 20118 {rgb=(.3 .2 .3)} Face 37537 7219 5509 20119 {rgb=(.3 .2 .3)} Face 37538 5509 5505 20119 {rgb=(.3 .2 .3)} Face 37539 5505 7218 20119 {rgb=(.3 .2 .3)} Face 37540 7218 7219 20119 {rgb=(.3 .2 .3)} Face 37541 5500 7283 20120 {rgb=(.3 .2 .3)} Face 37542 7283 7284 20120 {rgb=(.3 .2 .3)} Face 37543 7284 5504 20120 {rgb=(.3 .2 .3)} Face 37544 5504 5500 20120 {rgb=(.3 .2 .3)} Face 37545 7283 8929 20121 {rgb=(.3 .2 .3)} Face 37546 8929 8930 20121 {rgb=(.3 .2 .3)} Face 37547 8930 7284 20121 {rgb=(.3 .2 .3)} Face 37548 7284 7283 20121 {rgb=(.3 .2 .3)} Face 37549 8929 9484 20122 {rgb=(.3 .2 .3)} Face 37550 9484 9485 20122 {rgb=(.3 .2 .3)} Face 37551 9485 8930 20122 {rgb=(.3 .2 .3)} Face 37552 8930 8929 20122 {rgb=(.3 .2 .3)} Face 37553 7230 5506 20123 {rgb=(.3 .2 .3)} Face 37554 5506 5510 20123 {rgb=(.3 .2 .3)} Face 37555 5510 7231 20123 {rgb=(.3 .2 .3)} Face 37556 7231 7230 20123 {rgb=(.3 .2 .3)} Face 37557 7315 8816 20124 {rgb=(.3 .2 .3)} Face 37558 8816 8815 20124 {rgb=(.3 .2 .3)} Face 37559 8815 7314 20124 {rgb=(.3 .2 .3)} Face 37560 7314 7315 20124 {rgb=(.3 .2 .3)} Face 37561 8816 9415 20125 {rgb=(.3 .2 .3)} Face 37562 9415 9414 20125 {rgb=(.3 .2 .3)} Face 37563 9414 8815 20125 {rgb=(.3 .2 .3)} Face 37564 8815 8816 20125 {rgb=(.3 .2 .3)} Face 37565 9415 9656 20126 {rgb=(.3 .2 .3)} Face 37566 9656 9655 20126 {rgb=(.3 .2 .3)} Face 37567 9655 9414 20126 {rgb=(.3 .2 .3)} Face 37568 9414 9415 20126 {rgb=(.3 .2 .3)} Face 37569 9656 9756 20127 {rgb=(.3 .2 .3)} Face 37570 9756 9755 20127 {rgb=(.3 .2 .3)} Face 37571 9755 9655 20127 {rgb=(.3 .2 .3)} Face 37572 9655 9656 20127 {rgb=(.3 .2 .3)} Face 37573 9756 9658 20128 {rgb=(.3 .2 .3)} Face 37574 9658 9657 20128 {rgb=(.3 .2 .3)} Face 37575 9657 9755 20128 {rgb=(.3 .2 .3)} Face 37576 9755 9756 20128 {rgb=(.3 .2 .3)} Face 37577 9658 9480 20129 {rgb=(.3 .2 .3)} Face 37578 9480 9479 20129 {rgb=(.3 .2 .3)} Face 37579 9479 9657 20129 {rgb=(.3 .2 .3)} Face 37580 9657 9658 20129 {rgb=(.3 .2 .3)} Face 37581 9484 9650 20130 {rgb=(.3 .2 .3)} Face 37582 9650 9651 20130 {rgb=(.3 .2 .3)} Face 37583 9651 9485 20130 {rgb=(.3 .2 .3)} Face 37584 9485 9484 20130 {rgb=(.3 .2 .3)} Face 37585 9650 9748 20131 {rgb=(.3 .2 .3)} Face 37586 9748 9749 20131 {rgb=(.3 .2 .3)} Face 37587 9749 9651 20131 {rgb=(.3 .2 .3)} Face 37588 9651 9650 20131 {rgb=(.3 .2 .3)} Face 37589 9748 9666 20132 {rgb=(.3 .2 .3)} Face 37590 9666 9667 20132 {rgb=(.3 .2 .3)} Face 37591 9667 9749 20132 {rgb=(.3 .2 .3)} Face 37592 9749 9748 20132 {rgb=(.3 .2 .3)} Face 37593 9666 9411 20133 {rgb=(.3 .2 .3)} Face 37594 9411 9412 20133 {rgb=(.3 .2 .3)} Face 37595 9412 9667 20133 {rgb=(.3 .2 .3)} Face 37596 9667 9666 20133 {rgb=(.3 .2 .3)} Face 37597 9411 8794 20134 {rgb=(.3 .2 .3)} Face 37598 8794 8795 20134 {rgb=(.3 .2 .3)} Face 37599 8795 9412 20134 {rgb=(.3 .2 .3)} Face 37600 9412 9411 20134 {rgb=(.3 .2 .3)} Face 37601 8794 7298 20135 {rgb=(.3 .2 .3)} Face 37602 7298 7299 20135 {rgb=(.3 .2 .3)} Face 37603 7299 8795 20135 {rgb=(.3 .2 .3)} Face 37604 8795 8794 20135 {rgb=(.3 .2 .3)} Face 37605 7298 5503 20136 {rgb=(.3 .2 .3)} Face 37606 5503 5507 20136 {rgb=(.3 .2 .3)} Face 37607 5507 7299 20136 {rgb=(.3 .2 .3)} Face 37608 7299 7298 20136 {rgb=(.3 .2 .3)} Face 37609 9578 9441 20137 {rgb=(.3 .2 .3)} Face 37610 9441 9440 20137 {rgb=(.3 .2 .3)} Face 37611 9440 9577 20137 {rgb=(.3 .2 .3)} Face 37612 9577 9578 20137 {rgb=(.3 .2 .3)} Face 37613 9685 9578 20138 {rgb=(.3 .2 .3)} Face 37614 9578 9577 20138 {rgb=(.3 .2 .3)} Face 37615 9577 9684 20138 {rgb=(.3 .2 .3)} Face 37616 9684 9685 20138 {rgb=(.3 .2 .3)} Face 37617 9596 9685 20139 {rgb=(.3 .2 .3)} Face 37618 9685 9684 20139 {rgb=(.3 .2 .3)} Face 37619 9684 9595 20139 {rgb=(.3 .2 .3)} Face 37620 9595 9596 20139 {rgb=(.3 .2 .3)} Face 37621 9401 9596 20140 {rgb=(.3 .2 .3)} Face 37622 9596 9595 20140 {rgb=(.3 .2 .3)} Face 37623 9595 9400 20140 {rgb=(.3 .2 .3)} Face 37624 9400 9401 20140 {rgb=(.3 .2 .3)} Face 37625 8616 9401 20141 {rgb=(.3 .2 .3)} Face 37626 9401 9400 20141 {rgb=(.3 .2 .3)} Face 37627 9400 8615 20141 {rgb=(.3 .2 .3)} Face 37628 8615 8616 20141 {rgb=(.3 .2 .3)} Face 37629 7231 8616 20142 {rgb=(.3 .2 .3)} Face 37630 8616 8615 20142 {rgb=(.3 .2 .3)} Face 37631 8615 7230 20142 {rgb=(.3 .2 .3)} Face 37632 7230 7231 20142 {rgb=(.3 .2 .3)} Face 37633 5515 7315 20143 {rgb=(.3 .2 .3)} Face 37634 7315 7314 20143 {rgb=(.3 .2 .3)} Face 37635 7314 5511 20143 {rgb=(.3 .2 .3)} Face 37636 5511 5515 20143 {rgb=(.3 .2 .3)} Face 37637 7321 5512 20144 {rgb=(.3 .2 .3)} Face 37638 5512 5508 20144 {rgb=(.3 .2 .3)} Face 37639 5508 7320 20144 {rgb=(.3 .2 .3)} Face 37640 7320 7321 20144 {rgb=(.3 .2 .3)} Face 37641 9011 7321 20145 {rgb=(.3 .2 .3)} Face 37642 7321 7320 20145 {rgb=(.3 .2 .3)} Face 37643 7320 9010 20145 {rgb=(.3 .2 .3)} Face 37644 9010 9011 20145 {rgb=(.3 .2 .3)} Face 37645 9480 9011 20146 {rgb=(.3 .2 .3)} Face 37646 9011 9010 20146 {rgb=(.3 .2 .3)} Face 37647 9010 9479 20146 {rgb=(.3 .2 .3)} Face 37648 9479 9480 20146 {rgb=(.3 .2 .3)} Face 37649 1375 1466 20147 {rgb=(.3 .2 .3)} Face 37650 1466 1394 20147 {rgb=(.3 .2 .3)} Face 37651 1394 1296 20147 {rgb=(.3 .2 .3)} Face 37652 1296 1375 20147 {rgb=(.3 .2 .3)} Face 37653 1560 1394 20148 {rgb=(.3 .2 .3)} Face 37654 1394 1466 20148 {rgb=(.3 .2 .3)} Face 37655 1466 1579 20148 {rgb=(.3 .2 .3)} Face 37656 1579 1560 20148 {rgb=(.3 .2 .3)} Face 37657 3812 5506 20149 {rgb=(.3 .2 .3)} Face 37658 5506 5507 20149 {rgb=(.3 .2 .3)} Face 37659 5507 3745 20149 {rgb=(.3 .2 .3)} Face 37660 3745 3812 20149 {rgb=(.3 .2 .3)} Face 37661 2427 3812 20150 {rgb=(.3 .2 .3)} Face 37662 3812 3745 20150 {rgb=(.3 .2 .3)} Face 37663 3745 2250 20150 {rgb=(.3 .2 .3)} Face 37664 2250 2427 20150 {rgb=(.3 .2 .3)} Face 37665 1643 2427 20151 {rgb=(.3 .2 .3)} Face 37666 2427 2250 20151 {rgb=(.3 .2 .3)} Face 37667 2250 1634 20151 {rgb=(.3 .2 .3)} Face 37668 1634 1643 20151 {rgb=(.3 .2 .3)} Face 37669 1449 1643 20152 {rgb=(.3 .2 .3)} Face 37670 1643 1634 20152 {rgb=(.3 .2 .3)} Face 37671 1634 1379 20152 {rgb=(.3 .2 .3)} Face 37672 1379 1449 20152 {rgb=(.3 .2 .3)} Face 37673 1359 1449 20153 {rgb=(.3 .2 .3)} Face 37674 1449 1379 20153 {rgb=(.3 .2 .3)} Face 37675 1379 1297 20153 {rgb=(.3 .2 .3)} Face 37676 1297 1359 20153 {rgb=(.3 .2 .3)} Face 37677 1467 1359 20154 {rgb=(.3 .2 .3)} Face 37678 1359 1297 20154 {rgb=(.3 .2 .3)} Face 37679 1297 1395 20154 {rgb=(.3 .2 .3)} Face 37680 1395 1467 20154 {rgb=(.3 .2 .3)} Face 37681 1603 1467 20155 {rgb=(.3 .2 .3)} Face 37682 1467 1395 20155 {rgb=(.3 .2 .3)} Face 37683 1395 1561 20155 {rgb=(.3 .2 .3)} Face 37684 1561 1603 20155 {rgb=(.3 .2 .3)} Face 37685 2352 1603 20156 {rgb=(.3 .2 .3)} Face 37686 1603 1561 20156 {rgb=(.3 .2 .3)} Face 37687 1561 2116 20156 {rgb=(.3 .2 .3)} Face 37688 2116 2352 20156 {rgb=(.3 .2 .3)} Face 37689 3825 2352 20157 {rgb=(.3 .2 .3)} Face 37690 2352 2116 20157 {rgb=(.3 .2 .3)} Face 37691 2116 3761 20157 {rgb=(.3 .2 .3)} Face 37692 3761 3825 20157 {rgb=(.3 .2 .3)} Face 37693 5505 3825 20158 {rgb=(.3 .2 .3)} Face 37694 3825 3761 20158 {rgb=(.3 .2 .3)} Face 37695 3761 5504 20158 {rgb=(.3 .2 .3)} Face 37696 5504 5505 20158 {rgb=(.3 .2 .3)} Face 37697 3824 5501 20159 {rgb=(.3 .2 .3)} Face 37698 5501 5500 20159 {rgb=(.3 .2 .3)} Face 37699 5500 3760 20159 {rgb=(.3 .2 .3)} Face 37700 3760 3824 20159 {rgb=(.3 .2 .3)} Face 37701 2555 3824 20160 {rgb=(.3 .2 .3)} Face 37702 3824 3760 20160 {rgb=(.3 .2 .3)} Face 37703 3760 2115 20160 {rgb=(.3 .2 .3)} Face 37704 2115 2555 20160 {rgb=(.3 .2 .3)} Face 37705 1635 1951 20161 {rgb=(.3 .2 .3)} Face 37706 1951 2115 20161 {rgb=(.3 .2 .3)} Face 37707 2115 1560 20161 {rgb=(.3 .2 .3)} Face 37708 1560 1635 20161 {rgb=(.3 .2 .3)} Face 37709 1448 1377 20162 {rgb=(.3 .2 .3)} Face 37710 1377 1296 20162 {rgb=(.3 .2 .3)} Face 37711 1296 1378 20162 {rgb=(.3 .2 .3)} Face 37712 1378 1448 20162 {rgb=(.3 .2 .3)} Face 37713 1627 1448 20163 {rgb=(.3 .2 .3)} Face 37714 1448 1378 20163 {rgb=(.3 .2 .3)} Face 37715 1378 1633 20163 {rgb=(.3 .2 .3)} Face 37716 1633 1627 20163 {rgb=(.3 .2 .3)} Face 37717 2426 1663 20164 {rgb=(.3 .2 .3)} Face 37718 1663 1633 20164 {rgb=(.3 .2 .3)} Face 37719 1633 2249 20164 {rgb=(.3 .2 .3)} Face 37720 2249 2426 20164 {rgb=(.3 .2 .3)} Face 37721 3811 2426 20165 {rgb=(.3 .2 .3)} Face 37722 2426 2249 20165 {rgb=(.3 .2 .3)} Face 37723 2249 3744 20165 {rgb=(.3 .2 .3)} Face 37724 3744 3811 20165 {rgb=(.3 .2 .3)} Face 37725 5502 3811 20166 {rgb=(.3 .2 .3)} Face 37726 3811 3744 20166 {rgb=(.3 .2 .3)} Face 37727 3744 5503 20166 {rgb=(.3 .2 .3)} Face 37728 5503 5502 20166 {rgb=(.3 .2 .3)} Face 37729 1361 1451 20167 {rgb=(.3 .2 .3)} Face 37730 1451 1390 20167 {rgb=(.3 .2 .3)} Face 37731 1390 1290 20167 {rgb=(.3 .2 .3)} Face 37732 1290 1361 20167 {rgb=(.3 .2 .3)} Face 37733 1469 1361 20168 {rgb=(.3 .2 .3)} Face 37734 1361 1290 20168 {rgb=(.3 .2 .3)} Face 37735 1290 1388 20168 {rgb=(.3 .2 .3)} Face 37736 1388 1469 20168 {rgb=(.3 .2 .3)} Face 37737 1605 1469 20169 {rgb=(.3 .2 .3)} Face 37738 1469 1388 20169 {rgb=(.3 .2 .3)} Face 37739 1388 1566 20169 {rgb=(.3 .2 .3)} Face 37740 1566 1605 20169 {rgb=(.3 .2 .3)} Face 37741 2354 1605 20170 {rgb=(.3 .2 .3)} Face 37742 1605 1566 20170 {rgb=(.3 .2 .3)} Face 37743 1566 2034 20170 {rgb=(.3 .2 .3)} Face 37744 2034 2354 20170 {rgb=(.3 .2 .3)} Face 37745 3827 2354 20171 {rgb=(.3 .2 .3)} Face 37746 2354 2034 20171 {rgb=(.3 .2 .3)} Face 37747 2034 3722 20171 {rgb=(.3 .2 .3)} Face 37748 3722 3827 20171 {rgb=(.3 .2 .3)} Face 37749 5513 3827 20172 {rgb=(.3 .2 .3)} Face 37750 3827 3722 20172 {rgb=(.3 .2 .3)} Face 37751 3722 5512 20172 {rgb=(.3 .2 .3)} Face 37752 5512 5513 20172 {rgb=(.3 .2 .3)} Face 37753 3826 5509 20173 {rgb=(.3 .2 .3)} Face 37754 5509 5508 20173 {rgb=(.3 .2 .3)} Face 37755 5508 3721 20173 {rgb=(.3 .2 .3)} Face 37756 3721 3826 20173 {rgb=(.3 .2 .3)} Face 37757 2353 3826 20174 {rgb=(.3 .2 .3)} Face 37758 3826 3721 20174 {rgb=(.3 .2 .3)} Face 37759 3721 2033 20174 {rgb=(.3 .2 .3)} Face 37760 2033 2353 20174 {rgb=(.3 .2 .3)} Face 37761 1604 2353 20175 {rgb=(.3 .2 .3)} Face 37762 2353 2033 20175 {rgb=(.3 .2 .3)} Face 37763 2033 1565 20175 {rgb=(.3 .2 .3)} Face 37764 1565 1604 20175 {rgb=(.3 .2 .3)} Face 37765 1468 1604 20176 {rgb=(.3 .2 .3)} Face 37766 1604 1565 20176 {rgb=(.3 .2 .3)} Face 37767 1565 1387 20176 {rgb=(.3 .2 .3)} Face 37768 1387 1468 20176 {rgb=(.3 .2 .3)} Face 37769 1360 1468 20177 {rgb=(.3 .2 .3)} Face 37770 1468 1387 20177 {rgb=(.3 .2 .3)} Face 37771 1387 1289 20177 {rgb=(.3 .2 .3)} Face 37772 1289 1360 20177 {rgb=(.3 .2 .3)} Face 37773 1450 1360 20178 {rgb=(.3 .2 .3)} Face 37774 1360 1289 20178 {rgb=(.3 .2 .3)} Face 37775 1289 1389 20178 {rgb=(.3 .2 .3)} Face 37776 1389 1450 20178 {rgb=(.3 .2 .3)} Face 37777 1644 1450 20179 {rgb=(.3 .2 .3)} Face 37778 1450 1389 20179 {rgb=(.3 .2 .3)} Face 37779 1389 1630 20179 {rgb=(.3 .2 .3)} Face 37780 1630 1644 20179 {rgb=(.3 .2 .3)} Face 37781 2428 1644 20180 {rgb=(.3 .2 .3)} Face 37782 1644 1630 20180 {rgb=(.3 .2 .3)} Face 37783 1630 2229 20180 {rgb=(.3 .2 .3)} Face 37784 2229 2428 20180 {rgb=(.3 .2 .3)} Face 37785 3813 2428 20181 {rgb=(.3 .2 .3)} Face 37786 2428 2229 20181 {rgb=(.3 .2 .3)} Face 37787 2229 3727 20181 {rgb=(.3 .2 .3)} Face 37788 3727 3813 20181 {rgb=(.3 .2 .3)} Face 37789 5510 3813 20182 {rgb=(.3 .2 .3)} Face 37790 3813 3727 20182 {rgb=(.3 .2 .3)} Face 37791 3727 5511 20182 {rgb=(.3 .2 .3)} Face 37792 5511 5510 20182 {rgb=(.3 .2 .3)} Face 37793 3814 5514 20183 {rgb=(.3 .2 .3)} Face 37794 5514 5515 20183 {rgb=(.3 .2 .3)} Face 37795 5515 3728 20183 {rgb=(.3 .2 .3)} Face 37796 3728 3814 20183 {rgb=(.3 .2 .3)} Face 37797 2429 3814 20184 {rgb=(.3 .2 .3)} Face 37798 3814 3728 20184 {rgb=(.3 .2 .3)} Face 37799 3728 2230 20184 {rgb=(.3 .2 .3)} Face 37800 2230 2429 20184 {rgb=(.3 .2 .3)} Face 37801 1645 2429 20185 {rgb=(.3 .2 .3)} Face 37802 2429 2230 20185 {rgb=(.3 .2 .3)} Face 37803 2230 1631 20185 {rgb=(.3 .2 .3)} Face 37804 1631 1645 20185 {rgb=(.3 .2 .3)} Face 37805 1451 1645 20186 {rgb=(.3 .2 .3)} Face 37806 1645 1631 20186 {rgb=(.3 .2 .3)} Face 37807 1631 1390 20186 {rgb=(.3 .2 .3)} Face 37808 1390 1451 20186 {rgb=(.3 .2 .3)} Face 37809 1603 2352 20187 {rgb=(.3 .2 .3)} Face 37810 2352 2353 20187 {rgb=(.3 .2 .3)} Face 37811 2353 1604 20187 {rgb=(.3 .2 .3)} Face 37812 1604 1603 20187 {rgb=(.3 .2 .3)} Face 37813 2352 3825 20188 {rgb=(.3 .2 .3)} Face 37814 3825 3826 20188 {rgb=(.3 .2 .3)} Face 37815 3826 2353 20188 {rgb=(.3 .2 .3)} Face 37816 2353 2352 20188 {rgb=(.3 .2 .3)} Face 37817 3825 5505 20189 {rgb=(.3 .2 .3)} Face 37818 5505 5509 20189 {rgb=(.3 .2 .3)} Face 37819 5509 3826 20189 {rgb=(.3 .2 .3)} Face 37820 3826 3825 20189 {rgb=(.3 .2 .3)} Face 37821 5504 3761 20190 {rgb=(.3 .2 .3)} Face 37822 3761 3760 20190 {rgb=(.3 .2 .3)} Face 37823 3760 5500 20190 {rgb=(.3 .2 .3)} Face 37824 5500 5504 20190 {rgb=(.3 .2 .3)} Face 37825 3761 2116 20191 {rgb=(.3 .2 .3)} Face 37826 2116 2115 20191 {rgb=(.3 .2 .3)} Face 37827 2115 3760 20191 {rgb=(.3 .2 .3)} Face 37828 3760 3761 20191 {rgb=(.3 .2 .3)} Face 37829 2116 1561 20192 {rgb=(.3 .2 .3)} Face 37830 1561 1560 20192 {rgb=(.3 .2 .3)} Face 37831 1560 2115 20192 {rgb=(.3 .2 .3)} Face 37832 2115 2116 20192 {rgb=(.3 .2 .3)} Face 37833 3813 5510 20193 {rgb=(.3 .2 .3)} Face 37834 5510 5506 20193 {rgb=(.3 .2 .3)} Face 37835 5506 3812 20193 {rgb=(.3 .2 .3)} Face 37836 3812 3813 20193 {rgb=(.3 .2 .3)} Face 37837 3727 2229 20194 {rgb=(.3 .2 .3)} Face 37838 2229 2230 20194 {rgb=(.3 .2 .3)} Face 37839 2230 3728 20194 {rgb=(.3 .2 .3)} Face 37840 3728 3727 20194 {rgb=(.3 .2 .3)} Face 37841 2229 1630 20195 {rgb=(.3 .2 .3)} Face 37842 1630 1631 20195 {rgb=(.3 .2 .3)} Face 37843 1631 2230 20195 {rgb=(.3 .2 .3)} Face 37844 2230 2229 20195 {rgb=(.3 .2 .3)} Face 37845 1630 1389 20196 {rgb=(.3 .2 .3)} Face 37846 1389 1390 20196 {rgb=(.3 .2 .3)} Face 37847 1390 1631 20196 {rgb=(.3 .2 .3)} Face 37848 1631 1630 20196 {rgb=(.3 .2 .3)} Face 37849 1389 1289 20197 {rgb=(.3 .2 .3)} Face 37850 1289 1290 20197 {rgb=(.3 .2 .3)} Face 37851 1290 1390 20197 {rgb=(.3 .2 .3)} Face 37852 1390 1389 20197 {rgb=(.3 .2 .3)} Face 37853 1289 1387 20198 {rgb=(.3 .2 .3)} Face 37854 1387 1388 20198 {rgb=(.3 .2 .3)} Face 37855 1388 1290 20198 {rgb=(.3 .2 .3)} Face 37856 1290 1289 20198 {rgb=(.3 .2 .3)} Face 37857 1387 1565 20199 {rgb=(.3 .2 .3)} Face 37858 1565 1566 20199 {rgb=(.3 .2 .3)} Face 37859 1566 1388 20199 {rgb=(.3 .2 .3)} Face 37860 1388 1387 20199 {rgb=(.3 .2 .3)} Face 37861 1561 1395 20200 {rgb=(.3 .2 .3)} Face 37862 1395 1394 20200 {rgb=(.3 .2 .3)} Face 37863 1394 1560 20200 {rgb=(.3 .2 .3)} Face 37864 1560 1561 20200 {rgb=(.3 .2 .3)} Face 37865 1395 1297 20201 {rgb=(.3 .2 .3)} Face 37866 1297 1296 20201 {rgb=(.3 .2 .3)} Face 37867 1296 1394 20201 {rgb=(.3 .2 .3)} Face 37868 1394 1395 20201 {rgb=(.3 .2 .3)} Face 37869 1297 1379 20202 {rgb=(.3 .2 .3)} Face 37870 1379 1378 20202 {rgb=(.3 .2 .3)} Face 37871 1378 1296 20202 {rgb=(.3 .2 .3)} Face 37872 1296 1297 20202 {rgb=(.3 .2 .3)} Face 37873 1379 1634 20203 {rgb=(.3 .2 .3)} Face 37874 1634 1633 20203 {rgb=(.3 .2 .3)} Face 37875 1633 1378 20203 {rgb=(.3 .2 .3)} Face 37876 1378 1379 20203 {rgb=(.3 .2 .3)} Face 37877 1634 2250 20204 {rgb=(.3 .2 .3)} Face 37878 2250 2249 20204 {rgb=(.3 .2 .3)} Face 37879 2249 1633 20204 {rgb=(.3 .2 .3)} Face 37880 1633 1634 20204 {rgb=(.3 .2 .3)} Face 37881 2250 3745 20205 {rgb=(.3 .2 .3)} Face 37882 3745 3744 20205 {rgb=(.3 .2 .3)} Face 37883 3744 2249 20205 {rgb=(.3 .2 .3)} Face 37884 2249 2250 20205 {rgb=(.3 .2 .3)} Face 37885 3745 5507 20206 {rgb=(.3 .2 .3)} Face 37886 5507 5503 20206 {rgb=(.3 .2 .3)} Face 37887 5503 3744 20206 {rgb=(.3 .2 .3)} Face 37888 3744 3745 20206 {rgb=(.3 .2 .3)} Face 37889 1467 1603 20207 {rgb=(.3 .2 .3)} Face 37890 1603 1604 20207 {rgb=(.3 .2 .3)} Face 37891 1604 1468 20207 {rgb=(.3 .2 .3)} Face 37892 1468 1467 20207 {rgb=(.3 .2 .3)} Face 37893 1359 1467 20208 {rgb=(.3 .2 .3)} Face 37894 1467 1468 20208 {rgb=(.3 .2 .3)} Face 37895 1468 1360 20208 {rgb=(.3 .2 .3)} Face 37896 1360 1359 20208 {rgb=(.3 .2 .3)} Face 37897 1449 1359 20209 {rgb=(.3 .2 .3)} Face 37898 1359 1360 20209 {rgb=(.3 .2 .3)} Face 37899 1360 1450 20209 {rgb=(.3 .2 .3)} Face 37900 1450 1449 20209 {rgb=(.3 .2 .3)} Face 37901 1643 1449 20210 {rgb=(.3 .2 .3)} Face 37902 1449 1450 20210 {rgb=(.3 .2 .3)} Face 37903 1450 1644 20210 {rgb=(.3 .2 .3)} Face 37904 1644 1643 20210 {rgb=(.3 .2 .3)} Face 37905 2427 1643 20211 {rgb=(.3 .2 .3)} Face 37906 1643 1644 20211 {rgb=(.3 .2 .3)} Face 37907 1644 2428 20211 {rgb=(.3 .2 .3)} Face 37908 2428 2427 20211 {rgb=(.3 .2 .3)} Face 37909 3812 2427 20212 {rgb=(.3 .2 .3)} Face 37910 2427 2428 20212 {rgb=(.3 .2 .3)} Face 37911 2428 3813 20212 {rgb=(.3 .2 .3)} Face 37912 3813 3812 20212 {rgb=(.3 .2 .3)} Face 37913 5511 3727 20213 {rgb=(.3 .2 .3)} Face 37914 3727 3728 20213 {rgb=(.3 .2 .3)} Face 37915 3728 5515 20213 {rgb=(.3 .2 .3)} Face 37916 5515 5511 20213 {rgb=(.3 .2 .3)} Face 37917 3721 5508 20214 {rgb=(.3 .2 .3)} Face 37918 5508 5512 20214 {rgb=(.3 .2 .3)} Face 37919 5512 3722 20214 {rgb=(.3 .2 .3)} Face 37920 3722 3721 20214 {rgb=(.3 .2 .3)} Face 37921 2033 3721 20215 {rgb=(.3 .2 .3)} Face 37922 3721 3722 20215 {rgb=(.3 .2 .3)} Face 37923 3722 2034 20215 {rgb=(.3 .2 .3)} Face 37924 2034 2033 20215 {rgb=(.3 .2 .3)} Face 37925 1565 2033 20216 {rgb=(.3 .2 .3)} Face 37926 2033 2034 20216 {rgb=(.3 .2 .3)} Face 37927 2034 1566 20216 {rgb=(.3 .2 .3)} Face 37928 1566 1565 20216 {rgb=(.3 .2 .3)} Face 37929 9548 9671 20217 {rgb=(.7 .7 .8)} Face 37930 9671 9810 20217 {rgb=(.7 .7 .8)} Face 37931 9810 9403 20217 {rgb=(.7 .7 .8)} Face 37932 9403 9548 20217 {rgb=(.7 .7 .8)} Face 37933 9277 9403 20218 {rgb=(.7 .7 .8)} Face 37934 9403 9810 20218 {rgb=(.7 .7 .8)} Face 37935 9810 9084 20218 {rgb=(.7 .7 .8)} Face 37936 9084 9277 20218 {rgb=(.7 .7 .8)} Face 37937 9336 9084 20219 {rgb=(.7 .7 .8)} Face 37938 9084 9810 20219 {rgb=(.7 .7 .8)} Face 37939 9810 9405 20219 {rgb=(.7 .7 .8)} Face 37940 9405 9336 20219 {rgb=(.7 .7 .8)} Face 37941 9555 9405 20220 {rgb=(.7 .7 .8)} Face 37942 9405 9810 20220 {rgb=(.7 .7 .8)} Face 37943 9810 9705 20220 {rgb=(.7 .7 .8)} Face 37944 9705 9555 20220 {rgb=(.7 .7 .8)} Face 37945 8753 8845 20221 {rgb=(.7 .7 .8)} Face 37946 8845 9560 20221 {rgb=(.7 .7 .8)} Face 37947 9560 9141 20221 {rgb=(.7 .7 .8)} Face 37948 9141 8753 20221 {rgb=(.7 .7 .8)} Face 37949 1709 1640 20222 {rgb=(.7 .7 .8)} Face 37950 1640 1340 20222 {rgb=(.7 .7 .8)} Face 37951 1340 1961 20222 {rgb=(.7 .7 .8)} Face 37952 1961 1709 20222 {rgb=(.7 .7 .8)} Face 37953 1768 1961 20223 {rgb=(.7 .7 .8)} Face 37954 1961 1340 20223 {rgb=(.7 .7 .8)} Face 37955 1340 1642 20223 {rgb=(.7 .7 .8)} Face 37956 1642 1768 20223 {rgb=(.7 .7 .8)} Face 37957 1497 1642 20224 {rgb=(.7 .7 .8)} Face 37958 1642 1340 20224 {rgb=(.7 .7 .8)} Face 37959 1340 1374 20224 {rgb=(.7 .7 .8)} Face 37960 1374 1497 20224 {rgb=(.7 .7 .8)} Face 37961 1283 1374 20225 {rgb=(.7 .7 .8)} Face 37962 1374 1340 20225 {rgb=(.7 .7 .8)} Face 37963 1340 1235 20225 {rgb=(.7 .7 .8)} Face 37964 1235 1283 20225 {rgb=(.7 .7 .8)} Face 37965 1510 2197 20226 {rgb=(.7 .7 .8)} Face 37966 2197 1904 20226 {rgb=(.7 .7 .8)} Face 37967 1904 1485 20226 {rgb=(.7 .7 .8)} Face 37968 1485 1510 20226 {rgb=(.7 .7 .8)} Face 37969 9939 9852 20227 {rgb=(.7 .7 .8)} Face 37970 9852 9882 20227 {rgb=(.7 .7 .8)} Face 37971 9882 9982 20227 {rgb=(.7 .7 .8)} Face 37972 9982 9939 20227 {rgb=(.7 .7 .8)} Face 37973 9982 9882 20228 {rgb=(.7 .7 .8)} Face 37974 9882 9871 20228 {rgb=(.7 .7 .8)} Face 37975 9871 10003 20228 {rgb=(.7 .7 .8)} Face 37976 10003 9982 20228 {rgb=(.7 .7 .8)} Face 37977 9944 10106 20229 {rgb=(.7 .7 .8)} Face 37978 10106 10366 20229 {rgb=(.7 .7 .8)} Face 37979 10366 10253 20229 {rgb=(.7 .7 .8)} Face 37980 10253 9944 20229 {rgb=(.7 .7 .8)} Face 37981 10253 10366 20230 {rgb=(.7 .7 .8)} Face 37982 10366 10543 20230 {rgb=(.7 .7 .8)} Face 37983 10543 10336 20230 {rgb=(.7 .7 .8)} Face 37984 10336 10253 20230 {rgb=(.7 .7 .8)} Face 37985 10336 10543 20231 {rgb=(.7 .7 .8)} Face 37986 10543 10414 20231 {rgb=(.7 .7 .8)} Face 37987 10414 10266 20231 {rgb=(.7 .7 .8)} Face 37988 10266 10336 20231 {rgb=(.7 .7 .8)} Face 37989 10266 10414 20232 {rgb=(.7 .7 .8)} Face 37990 10414 10214 20232 {rgb=(.7 .7 .8)} Face 37991 10214 10140 20232 {rgb=(.7 .7 .8)} Face 37992 10140 10266 20232 {rgb=(.7 .7 .8)} Face 37993 10140 10214 20233 {rgb=(.7 .7 .8)} Face 37994 10214 10070 20233 {rgb=(.7 .7 .8)} Face 37995 10070 10003 20233 {rgb=(.7 .7 .8)} Face 37996 10003 10140 20233 {rgb=(.7 .7 .8)} Face 37997 6848 6324 20234 {rgb=(.7 .7 .8)} Face 37998 6324 7385 20234 {rgb=(.7 .7 .8)} Face 37999 7385 7842 20234 {rgb=(.7 .7 .8)} Face 38000 7842 6848 20234 {rgb=(.7 .7 .8)} Face 38001 8307 9366 20235 {rgb=(.7 .7 .8)} Face 38002 9366 9064 20235 {rgb=(.7 .7 .8)} Face 38003 9064 7114 20235 {rgb=(.7 .7 .8)} Face 38004 7114 8307 20235 {rgb=(.7 .7 .8)} Face 38005 10183 10370 20236 {rgb=(.7 .7 .8)} Face 38006 10370 10106 20236 {rgb=(.7 .7 .8)} Face 38007 10106 10033 20236 {rgb=(.7 .7 .8)} Face 38008 10033 10183 20236 {rgb=(.7 .7 .8)} Face 38009 9992 9892 20237 {rgb=(.7 .7 .8)} Face 38010 9892 9975 20237 {rgb=(.7 .7 .8)} Face 38011 9975 10109 20237 {rgb=(.7 .7 .8)} Face 38012 10109 9992 20237 {rgb=(.7 .7 .8)} Face 38013 9669 9064 20238 {rgb=(.7 .7 .8)} Face 38014 9064 9366 20238 {rgb=(.7 .7 .8)} Face 38015 9366 9580 20238 {rgb=(.7 .7 .8)} Face 38016 9580 9669 20238 {rgb=(.7 .7 .8)} Face 38017 9718 9944 20239 {rgb=(.7 .7 .8)} Face 38018 9944 10101 20239 {rgb=(.7 .7 .8)} Face 38019 10101 9785 20239 {rgb=(.7 .7 .8)} Face 38020 9785 9718 20239 {rgb=(.7 .7 .8)} Face 38021 9720 9759 20240 {rgb=(.7 .7 .8)} Face 38022 9759 9700 20240 {rgb=(.7 .7 .8)} Face 38023 9700 9669 20240 {rgb=(.7 .7 .8)} Face 38024 9669 9720 20240 {rgb=(.7 .7 .8)} Face 38025 9785 9818 20241 {rgb=(.7 .7 .8)} Face 38026 9818 9759 20241 {rgb=(.7 .7 .8)} Face 38027 9759 9720 20241 {rgb=(.7 .7 .8)} Face 38028 9720 9785 20241 {rgb=(.7 .7 .8)} Face 38029 8946 9304 20242 {rgb=(.7 .7 .8)} Face 38030 9304 9094 20242 {rgb=(.7 .7 .8)} Face 38031 9094 8729 20242 {rgb=(.7 .7 .8)} Face 38032 8729 8946 20242 {rgb=(.7 .7 .8)} Face 38033 9533 9503 20243 {rgb=(.7 .7 .8)} Face 38034 9503 9546 20243 {rgb=(.7 .7 .8)} Face 38035 9546 9559 20243 {rgb=(.7 .7 .8)} Face 38036 9559 9533 20243 {rgb=(.7 .7 .8)} Face 38037 9506 9475 20244 {rgb=(.7 .7 .8)} Face 38038 9475 9503 20244 {rgb=(.7 .7 .8)} Face 38039 9503 9533 20244 {rgb=(.7 .7 .8)} Face 38040 9533 9506 20244 {rgb=(.7 .7 .8)} Face 38041 9398 9503 20245 {rgb=(.7 .7 .8)} Face 38042 9503 9475 20245 {rgb=(.7 .7 .8)} Face 38043 9475 9382 20245 {rgb=(.7 .7 .8)} Face 38044 9382 9398 20245 {rgb=(.7 .7 .8)} Face 38045 9418 9546 20246 {rgb=(.7 .7 .8)} Face 38046 9546 9503 20246 {rgb=(.7 .7 .8)} Face 38047 9503 9398 20246 {rgb=(.7 .7 .8)} Face 38048 9398 9418 20246 {rgb=(.7 .7 .8)} Face 38049 9786 9624 20247 {rgb=(.7 .7 .8)} Face 38050 9624 9670 20247 {rgb=(.7 .7 .8)} Face 38051 9670 9800 20247 {rgb=(.7 .7 .8)} Face 38052 9800 9786 20247 {rgb=(.7 .7 .8)} Face 38053 9811 9668 20248 {rgb=(.7 .7 .8)} Face 38054 9668 9624 20248 {rgb=(.7 .7 .8)} Face 38055 9624 9786 20248 {rgb=(.7 .7 .8)} Face 38056 9786 9811 20248 {rgb=(.7 .7 .8)} Face 38057 8671 8946 20249 {rgb=(.7 .7 .8)} Face 38058 8946 8568 20249 {rgb=(.7 .7 .8)} Face 38059 8568 8361 20249 {rgb=(.7 .7 .8)} Face 38060 8361 8671 20249 {rgb=(.7 .7 .8)} Face 38061 9141 9304 20250 {rgb=(.7 .7 .8)} Face 38062 9304 8946 20250 {rgb=(.7 .7 .8)} Face 38063 8946 8671 20250 {rgb=(.7 .7 .8)} Face 38064 8671 9141 20250 {rgb=(.7 .7 .8)} Face 38065 9420 9465 20251 {rgb=(.7 .7 .8)} Face 38066 9465 9514 20251 {rgb=(.7 .7 .8)} Face 38067 9514 9466 20251 {rgb=(.7 .7 .8)} Face 38068 9466 9420 20251 {rgb=(.7 .7 .8)} Face 38069 9410 9436 20252 {rgb=(.7 .7 .8)} Face 38070 9436 9465 20252 {rgb=(.7 .7 .8)} Face 38071 9465 9420 20252 {rgb=(.7 .7 .8)} Face 38072 9420 9410 20252 {rgb=(.7 .7 .8)} Face 38073 8729 8489 20253 {rgb=(.7 .7 .8)} Face 38074 8489 8568 20253 {rgb=(.7 .7 .8)} Face 38075 8568 8946 20253 {rgb=(.7 .7 .8)} Face 38076 8946 8729 20253 {rgb=(.7 .7 .8)} Face 38077 6978 7183 20254 {rgb=(.7 .7 .8)} Face 38078 7183 6938 20254 {rgb=(.7 .7 .8)} Face 38079 6938 6711 20254 {rgb=(.7 .7 .8)} Face 38080 6711 6978 20254 {rgb=(.7 .7 .8)} Face 38081 7263 7476 20255 {rgb=(.7 .7 .8)} Face 38082 7476 7183 20255 {rgb=(.7 .7 .8)} Face 38083 7183 6978 20255 {rgb=(.7 .7 .8)} Face 38084 6978 7263 20255 {rgb=(.7 .7 .8)} Face 38085 6764 6978 20256 {rgb=(.7 .7 .8)} Face 38086 6978 6711 20256 {rgb=(.7 .7 .8)} Face 38087 6711 6426 20256 {rgb=(.7 .7 .8)} Face 38088 6426 6764 20256 {rgb=(.7 .7 .8)} Face 38089 7024 7263 20257 {rgb=(.7 .7 .8)} Face 38090 7263 6978 20257 {rgb=(.7 .7 .8)} Face 38091 6978 6764 20257 {rgb=(.7 .7 .8)} Face 38092 6764 7024 20257 {rgb=(.7 .7 .8)} Face 38093 6612 6764 20258 {rgb=(.7 .7 .8)} Face 38094 6764 6426 20258 {rgb=(.7 .7 .8)} Face 38095 6426 6265 20258 {rgb=(.7 .7 .8)} Face 38096 6265 6612 20258 {rgb=(.7 .7 .8)} Face 38097 6844 7024 20259 {rgb=(.7 .7 .8)} Face 38098 7024 6764 20259 {rgb=(.7 .7 .8)} Face 38099 6764 6612 20259 {rgb=(.7 .7 .8)} Face 38100 6612 6844 20259 {rgb=(.7 .7 .8)} Face 38101 6760 7344 20260 {rgb=(.7 .7 .8)} Face 38102 7344 7123 20260 {rgb=(.7 .7 .8)} Face 38103 7123 6707 20260 {rgb=(.7 .7 .8)} Face 38104 6707 6760 20260 {rgb=(.7 .7 .8)} Face 38105 7225 7544 20261 {rgb=(.7 .7 .8)} Face 38106 7544 7344 20261 {rgb=(.7 .7 .8)} Face 38107 7344 6760 20261 {rgb=(.7 .7 .8)} Face 38108 6760 7225 20261 {rgb=(.7 .7 .8)} Face 38109 8084 8671 20262 {rgb=(.7 .7 .8)} Face 38110 8671 8361 20262 {rgb=(.7 .7 .8)} Face 38111 8361 7760 20262 {rgb=(.7 .7 .8)} Face 38112 7760 8084 20262 {rgb=(.7 .7 .8)} Face 38113 8303 8753 20263 {rgb=(.7 .7 .8)} Face 38114 8753 8671 20263 {rgb=(.7 .7 .8)} Face 38115 8671 8084 20263 {rgb=(.7 .7 .8)} Face 38116 8084 8303 20263 {rgb=(.7 .7 .8)} Face 38117 7344 8084 20264 {rgb=(.7 .7 .8)} Face 38118 8084 7760 20264 {rgb=(.7 .7 .8)} Face 38119 7760 7123 20264 {rgb=(.7 .7 .8)} Face 38120 7123 7344 20264 {rgb=(.7 .7 .8)} Face 38121 7544 8303 20265 {rgb=(.7 .7 .8)} Face 38122 8303 8084 20265 {rgb=(.7 .7 .8)} Face 38123 8084 7344 20265 {rgb=(.7 .7 .8)} Face 38124 7344 7544 20265 {rgb=(.7 .7 .8)} Face 38125 8361 7263 20266 {rgb=(.7 .7 .8)} Face 38126 7263 7024 20266 {rgb=(.7 .7 .8)} Face 38127 7024 7760 20266 {rgb=(.7 .7 .8)} Face 38128 7760 8361 20266 {rgb=(.7 .7 .8)} Face 38129 7760 7024 20267 {rgb=(.7 .7 .8)} Face 38130 7024 6844 20267 {rgb=(.7 .7 .8)} Face 38131 6844 7123 20267 {rgb=(.7 .7 .8)} Face 38132 7123 7760 20267 {rgb=(.7 .7 .8)} Face 38133 7123 6844 20268 {rgb=(.7 .7 .8)} Face 38134 6844 6642 20268 {rgb=(.7 .7 .8)} Face 38135 6642 6707 20268 {rgb=(.7 .7 .8)} Face 38136 6707 7123 20268 {rgb=(.7 .7 .8)} Face 38137 6033 5919 20269 {rgb=(.7 .7 .8)} Face 38138 5919 5710 20269 {rgb=(.7 .7 .8)} Face 38139 5710 5741 20269 {rgb=(.7 .7 .8)} Face 38140 5741 6033 20269 {rgb=(.7 .7 .8)} Face 38141 5890 5757 20270 {rgb=(.7 .7 .8)} Face 38142 5757 5919 20270 {rgb=(.7 .7 .8)} Face 38143 5919 6033 20270 {rgb=(.7 .7 .8)} Face 38144 6033 5890 20270 {rgb=(.7 .7 .8)} Face 38145 5905 5919 20271 {rgb=(.7 .7 .8)} Face 38146 5919 5757 20271 {rgb=(.7 .7 .8)} Face 38147 5757 5729 20271 {rgb=(.7 .7 .8)} Face 38148 5729 5905 20271 {rgb=(.7 .7 .8)} Face 38149 5718 5710 20272 {rgb=(.7 .7 .8)} Face 38150 5710 5919 20272 {rgb=(.7 .7 .8)} Face 38151 5919 5905 20272 {rgb=(.7 .7 .8)} Face 38152 5905 5718 20272 {rgb=(.7 .7 .8)} Face 38153 5905 5994 20273 {rgb=(.7 .7 .8)} Face 38154 5994 5830 20273 {rgb=(.7 .7 .8)} Face 38155 5830 5718 20273 {rgb=(.7 .7 .8)} Face 38156 5718 5905 20273 {rgb=(.7 .7 .8)} Face 38157 5729 5815 20274 {rgb=(.7 .7 .8)} Face 38158 5815 5994 20274 {rgb=(.7 .7 .8)} Face 38159 5994 5905 20274 {rgb=(.7 .7 .8)} Face 38160 5905 5729 20274 {rgb=(.7 .7 .8)} Face 38161 6587 5994 20275 {rgb=(.7 .7 .8)} Face 38162 5994 5815 20275 {rgb=(.7 .7 .8)} Face 38163 5815 6363 20275 {rgb=(.7 .7 .8)} Face 38164 6363 6587 20275 {rgb=(.7 .7 .8)} Face 38165 6324 5830 20276 {rgb=(.7 .7 .8)} Face 38166 5830 5994 20276 {rgb=(.7 .7 .8)} Face 38167 5994 6587 20276 {rgb=(.7 .7 .8)} Face 38168 6587 6324 20276 {rgb=(.7 .7 .8)} Face 38169 8776 9025 20277 {rgb=(.7 .7 .8)} Face 38170 9025 8531 20277 {rgb=(.7 .7 .8)} Face 38171 8531 8366 20277 {rgb=(.7 .7 .8)} Face 38172 8366 8776 20277 {rgb=(.7 .7 .8)} Face 38173 8979 9264 20278 {rgb=(.7 .7 .8)} Face 38174 9264 9025 20278 {rgb=(.7 .7 .8)} Face 38175 9025 8776 20278 {rgb=(.7 .7 .8)} Face 38176 8776 8979 20278 {rgb=(.7 .7 .8)} Face 38177 9025 9290 20279 {rgb=(.7 .7 .8)} Face 38178 9290 8865 20279 {rgb=(.7 .7 .8)} Face 38179 8865 8531 20279 {rgb=(.7 .7 .8)} Face 38180 8531 9025 20279 {rgb=(.7 .7 .8)} Face 38181 9264 9341 20280 {rgb=(.7 .7 .8)} Face 38182 9341 9290 20280 {rgb=(.7 .7 .8)} Face 38183 9290 9025 20280 {rgb=(.7 .7 .8)} Face 38184 9025 9264 20280 {rgb=(.7 .7 .8)} Face 38185 10049 10198 20281 {rgb=(.7 .7 .8)} Face 38186 10198 10210 20281 {rgb=(.7 .7 .8)} Face 38187 10210 10066 20281 {rgb=(.7 .7 .8)} Face 38188 10066 10049 20281 {rgb=(.7 .7 .8)} Face 38189 10070 10214 20282 {rgb=(.7 .7 .8)} Face 38190 10214 10198 20282 {rgb=(.7 .7 .8)} Face 38191 10198 10049 20282 {rgb=(.7 .7 .8)} Face 38192 10049 10070 20282 {rgb=(.7 .7 .8)} Face 38193 10377 10198 20283 {rgb=(.7 .7 .8)} Face 38194 10198 10214 20283 {rgb=(.7 .7 .8)} Face 38195 10214 10414 20283 {rgb=(.7 .7 .8)} Face 38196 10414 10377 20283 {rgb=(.7 .7 .8)} Face 38197 10408 10210 20284 {rgb=(.7 .7 .8)} Face 38198 10210 10198 20284 {rgb=(.7 .7 .8)} Face 38199 10198 10377 20284 {rgb=(.7 .7 .8)} Face 38200 10377 10408 20284 {rgb=(.7 .7 .8)} Face 38201 10377 10498 20285 {rgb=(.7 .7 .8)} Face 38202 10498 10560 20285 {rgb=(.7 .7 .8)} Face 38203 10560 10408 20285 {rgb=(.7 .7 .8)} Face 38204 10408 10377 20285 {rgb=(.7 .7 .8)} Face 38205 10414 10543 20286 {rgb=(.7 .7 .8)} Face 38206 10543 10498 20286 {rgb=(.7 .7 .8)} Face 38207 10498 10377 20286 {rgb=(.7 .7 .8)} Face 38208 10377 10414 20286 {rgb=(.7 .7 .8)} Face 38209 10337 10498 20287 {rgb=(.7 .7 .8)} Face 38210 10498 10543 20287 {rgb=(.7 .7 .8)} Face 38211 10543 10366 20287 {rgb=(.7 .7 .8)} Face 38212 10366 10337 20287 {rgb=(.7 .7 .8)} Face 38213 10370 10560 20288 {rgb=(.7 .7 .8)} Face 38214 10560 10498 20288 {rgb=(.7 .7 .8)} Face 38215 10498 10337 20288 {rgb=(.7 .7 .8)} Face 38216 10337 10370 20288 {rgb=(.7 .7 .8)} Face 38217 10133 10015 20289 {rgb=(.7 .7 .8)} Face 38218 10015 10067 20289 {rgb=(.7 .7 .8)} Face 38219 10067 10186 20289 {rgb=(.7 .7 .8)} Face 38220 10186 10133 20289 {rgb=(.7 .7 .8)} Face 38221 10122 10014 20290 {rgb=(.7 .7 .8)} Face 38222 10014 10015 20290 {rgb=(.7 .7 .8)} Face 38223 10015 10133 20290 {rgb=(.7 .7 .8)} Face 38224 10133 10122 20290 {rgb=(.7 .7 .8)} Face 38225 10133 10192 20291 {rgb=(.7 .7 .8)} Face 38226 10192 10169 20291 {rgb=(.7 .7 .8)} Face 38227 10169 10122 20291 {rgb=(.7 .7 .8)} Face 38228 10122 10133 20291 {rgb=(.7 .7 .8)} Face 38229 10186 10251 20292 {rgb=(.7 .7 .8)} Face 38230 10251 10192 20292 {rgb=(.7 .7 .8)} Face 38231 10192 10133 20292 {rgb=(.7 .7 .8)} Face 38232 10133 10186 20292 {rgb=(.7 .7 .8)} Face 38233 10124 10192 20293 {rgb=(.7 .7 .8)} Face 38234 10192 10251 20293 {rgb=(.7 .7 .8)} Face 38235 10251 10183 20293 {rgb=(.7 .7 .8)} Face 38236 10183 10124 20293 {rgb=(.7 .7 .8)} Face 38237 10109 10169 20294 {rgb=(.7 .7 .8)} Face 38238 10169 10192 20294 {rgb=(.7 .7 .8)} Face 38239 10192 10124 20294 {rgb=(.7 .7 .8)} Face 38240 10124 10109 20294 {rgb=(.7 .7 .8)} Face 38241 9776 9787 20295 {rgb=(.7 .7 .8)} Face 38242 9787 9813 20295 {rgb=(.7 .7 .8)} Face 38243 9813 9829 20295 {rgb=(.7 .7 .8)} Face 38244 9829 9776 20295 {rgb=(.7 .7 .8)} Face 38245 9829 9813 20296 {rgb=(.7 .7 .8)} Face 38246 9813 9808 20296 {rgb=(.7 .7 .8)} Face 38247 9808 9820 20296 {rgb=(.7 .7 .8)} Face 38248 9820 9829 20296 {rgb=(.7 .7 .8)} Face 38249 9820 9808 20297 {rgb=(.7 .7 .8)} Face 38250 9808 9809 20297 {rgb=(.7 .7 .8)} Face 38251 9809 9823 20297 {rgb=(.7 .7 .8)} Face 38252 9823 9820 20297 {rgb=(.7 .7 .8)} Face 38253 5523 5520 20298 {rgb=(.7 .7 .8)} Face 38254 5520 7318 20298 {rgb=(.7 .7 .8)} Face 38255 7318 7223 20298 {rgb=(.7 .7 .8)} Face 38256 7223 5523 20298 {rgb=(.7 .7 .8)} Face 38257 7223 7318 20299 {rgb=(.7 .7 .8)} Face 38258 7318 7405 20299 {rgb=(.7 .7 .8)} Face 38259 7405 7396 20299 {rgb=(.7 .7 .8)} Face 38260 7396 7223 20299 {rgb=(.7 .7 .8)} Face 38261 7396 7405 20300 {rgb=(.7 .7 .8)} Face 38262 7405 7487 20300 {rgb=(.7 .7 .8)} Face 38263 7487 7550 20300 {rgb=(.7 .7 .8)} Face 38264 7550 7396 20300 {rgb=(.7 .7 .8)} Face 38265 7550 7487 20301 {rgb=(.7 .7 .8)} Face 38266 7487 9342 20301 {rgb=(.7 .7 .8)} Face 38267 9342 9294 20301 {rgb=(.7 .7 .8)} Face 38268 9294 7550 20301 {rgb=(.7 .7 .8)} Face 38269 9294 9342 20302 {rgb=(.7 .7 .8)} Face 38270 9342 9453 20302 {rgb=(.7 .7 .8)} Face 38271 9453 9464 20302 {rgb=(.7 .7 .8)} Face 38272 9464 9294 20302 {rgb=(.7 .7 .8)} Face 38273 9464 9453 20303 {rgb=(.7 .7 .8)} Face 38274 9453 9490 20303 {rgb=(.7 .7 .8)} Face 38275 9490 9487 20303 {rgb=(.7 .7 .8)} Face 38276 9487 9464 20303 {rgb=(.7 .7 .8)} Face 38277 9487 9490 20304 {rgb=(.7 .7 .8)} Face 38278 9490 9529 20304 {rgb=(.7 .7 .8)} Face 38279 9529 9504 20304 {rgb=(.7 .7 .8)} Face 38280 9504 9487 20304 {rgb=(.7 .7 .8)} Face 38281 9504 9529 20305 {rgb=(.7 .7 .8)} Face 38282 9529 9784 20305 {rgb=(.7 .7 .8)} Face 38283 9784 9730 20305 {rgb=(.7 .7 .8)} Face 38284 9730 9504 20305 {rgb=(.7 .7 .8)} Face 38285 9730 9784 20306 {rgb=(.7 .7 .8)} Face 38286 9784 9850 20306 {rgb=(.7 .7 .8)} Face 38287 9850 9823 20306 {rgb=(.7 .7 .8)} Face 38288 9823 9730 20306 {rgb=(.7 .7 .8)} Face 38289 9776 9758 20307 {rgb=(.7 .7 .8)} Face 38290 9758 9783 20307 {rgb=(.7 .7 .8)} Face 38291 9783 9752 20307 {rgb=(.7 .7 .8)} Face 38292 9752 9776 20307 {rgb=(.7 .7 .8)} Face 38293 9752 9783 20308 {rgb=(.7 .7 .8)} Face 38294 9783 9770 20308 {rgb=(.7 .7 .8)} Face 38295 9770 9726 20308 {rgb=(.7 .7 .8)} Face 38296 9726 9752 20308 {rgb=(.7 .7 .8)} Face 38297 9726 9770 20309 {rgb=(.7 .7 .8)} Face 38298 9770 9773 20309 {rgb=(.7 .7 .8)} Face 38299 9773 9710 20309 {rgb=(.7 .7 .8)} Face 38300 9710 9726 20309 {rgb=(.7 .7 .8)} Face 38301 9710 9773 20310 {rgb=(.7 .7 .8)} Face 38302 9773 9539 20310 {rgb=(.7 .7 .8)} Face 38303 9539 9540 20310 {rgb=(.7 .7 .8)} Face 38304 9540 9710 20310 {rgb=(.7 .7 .8)} Face 38305 9507 9539 20311 {rgb=(.7 .7 .8)} Face 38306 9539 9348 20311 {rgb=(.7 .7 .8)} Face 38307 9348 9347 20311 {rgb=(.7 .7 .8)} Face 38308 9347 9507 20311 {rgb=(.7 .7 .8)} Face 38309 9347 9348 20312 {rgb=(.7 .7 .8)} Face 38310 9348 8987 20312 {rgb=(.7 .7 .8)} Face 38311 8987 9268 20312 {rgb=(.7 .7 .8)} Face 38312 9268 9347 20312 {rgb=(.7 .7 .8)} Face 38313 9268 8987 20313 {rgb=(.7 .7 .8)} Face 38314 8987 8942 20313 {rgb=(.7 .7 .8)} Face 38315 8942 9260 20313 {rgb=(.7 .7 .8)} Face 38316 9260 9268 20313 {rgb=(.7 .7 .8)} Face 38317 9260 8942 20314 {rgb=(.7 .7 .8)} Face 38318 8942 7337 20314 {rgb=(.7 .7 .8)} Face 38319 7337 7198 20314 {rgb=(.7 .7 .8)} Face 38320 7198 9260 20314 {rgb=(.7 .7 .8)} Face 38321 7198 7337 20315 {rgb=(.7 .7 .8)} Face 38322 7337 5521 20315 {rgb=(.7 .7 .8)} Face 38323 5521 5522 20315 {rgb=(.7 .7 .8)} Face 38324 5522 7198 20315 {rgb=(.7 .7 .8)} Face 38325 7280 7396 20316 {rgb=(.7 .7 .8)} Face 38326 7396 7550 20316 {rgb=(.7 .7 .8)} Face 38327 7550 7436 20316 {rgb=(.7 .7 .8)} Face 38328 7436 7280 20316 {rgb=(.7 .7 .8)} Face 38329 7092 7223 20317 {rgb=(.7 .7 .8)} Face 38330 7223 7396 20317 {rgb=(.7 .7 .8)} Face 38331 7396 7280 20317 {rgb=(.7 .7 .8)} Face 38332 7280 7092 20317 {rgb=(.7 .7 .8)} Face 38333 9694 9726 20318 {rgb=(.7 .7 .8)} Face 38334 9726 9710 20318 {rgb=(.7 .7 .8)} Face 38335 9710 9676 20318 {rgb=(.7 .7 .8)} Face 38336 9676 9694 20318 {rgb=(.7 .7 .8)} Face 38337 9707 9752 20319 {rgb=(.7 .7 .8)} Face 38338 9752 9726 20319 {rgb=(.7 .7 .8)} Face 38339 9726 9694 20319 {rgb=(.7 .7 .8)} Face 38340 9694 9707 20319 {rgb=(.7 .7 .8)} Face 38341 9540 9522 20320 {rgb=(.7 .7 .8)} Face 38342 9522 9496 20320 {rgb=(.7 .7 .8)} Face 38343 9496 9517 20320 {rgb=(.7 .7 .8)} Face 38344 9517 9540 20320 {rgb=(.7 .7 .8)} Face 38345 9522 9507 20321 {rgb=(.7 .7 .8)} Face 38346 9507 9473 20321 {rgb=(.7 .7 .8)} Face 38347 9473 9496 20321 {rgb=(.7 .7 .8)} Face 38348 9496 9522 20321 {rgb=(.7 .7 .8)} Face 38349 5526 5523 20322 {rgb=(.7 .7 .8)} Face 38350 5523 7223 20322 {rgb=(.7 .7 .8)} Face 38351 7223 7092 20322 {rgb=(.7 .7 .8)} Face 38352 7092 5526 20322 {rgb=(.7 .7 .8)} Face 38353 7436 7550 20323 {rgb=(.7 .7 .8)} Face 38354 7550 9294 20323 {rgb=(.7 .7 .8)} Face 38355 9294 9174 20323 {rgb=(.7 .7 .8)} Face 38356 9174 7436 20323 {rgb=(.7 .7 .8)} Face 38357 9721 9730 20324 {rgb=(.7 .7 .8)} Face 38358 9730 9823 20324 {rgb=(.7 .7 .8)} Face 38359 9823 9809 20324 {rgb=(.7 .7 .8)} Face 38360 9809 9721 20324 {rgb=(.7 .7 .8)} Face 38361 9829 9850 20325 {rgb=(.7 .7 .8)} Face 38362 9850 9780 20325 {rgb=(.7 .7 .8)} Face 38363 9780 9776 20325 {rgb=(.7 .7 .8)} Face 38364 9776 9829 20325 {rgb=(.7 .7 .8)} Face 38365 9787 9776 20326 {rgb=(.7 .7 .8)} Face 38366 9776 9752 20326 {rgb=(.7 .7 .8)} Face 38367 9752 9707 20326 {rgb=(.7 .7 .8)} Face 38368 9707 9787 20326 {rgb=(.7 .7 .8)} Face 38369 9676 9710 20327 {rgb=(.7 .7 .8)} Face 38370 9710 9540 20327 {rgb=(.7 .7 .8)} Face 38371 9540 9517 20327 {rgb=(.7 .7 .8)} Face 38372 9517 9676 20327 {rgb=(.7 .7 .8)} Face 38373 9473 9507 20328 {rgb=(.7 .7 .8)} Face 38374 9507 9347 20328 {rgb=(.7 .7 .8)} Face 38375 9347 9345 20328 {rgb=(.7 .7 .8)} Face 38376 9345 9473 20328 {rgb=(.7 .7 .8)} Face 38377 9768 9686 20329 {rgb=(.7 .7 .8)} Face 38378 9686 9597 20329 {rgb=(.7 .7 .8)} Face 38379 9597 9715 20329 {rgb=(.7 .7 .8)} Face 38380 9715 9768 20329 {rgb=(.7 .7 .8)} Face 38381 5517 5513 20330 {rgb=(.7 .7 .8)} Face 38382 5513 7220 20330 {rgb=(.7 .7 .8)} Face 38383 7220 7285 20330 {rgb=(.7 .7 .8)} Face 38384 7285 5517 20330 {rgb=(.7 .7 .8)} Face 38385 7285 7220 20331 {rgb=(.7 .7 .8)} Face 38386 7220 8692 20331 {rgb=(.7 .7 .8)} Face 38387 8692 9231 20331 {rgb=(.7 .7 .8)} Face 38388 9231 7285 20331 {rgb=(.7 .7 .8)} Face 38389 9231 8692 20332 {rgb=(.7 .7 .8)} Face 38390 8692 9442 20332 {rgb=(.7 .7 .8)} Face 38391 9442 9470 20332 {rgb=(.7 .7 .8)} Face 38392 9470 9231 20332 {rgb=(.7 .7 .8)} Face 38393 9508 9442 20333 {rgb=(.7 .7 .8)} Face 38394 9442 9579 20333 {rgb=(.7 .7 .8)} Face 38395 9579 9706 20333 {rgb=(.7 .7 .8)} Face 38396 9706 9508 20333 {rgb=(.7 .7 .8)} Face 38397 9706 9579 20334 {rgb=(.7 .7 .8)} Face 38398 9579 9686 20334 {rgb=(.7 .7 .8)} Face 38399 9686 9799 20334 {rgb=(.7 .7 .8)} Face 38400 9799 9706 20334 {rgb=(.7 .7 .8)} Face 38401 9715 9597 20335 {rgb=(.7 .7 .8)} Face 38402 9597 9402 20335 {rgb=(.7 .7 .8)} Face 38403 9402 9474 20335 {rgb=(.7 .7 .8)} Face 38404 9474 9715 20335 {rgb=(.7 .7 .8)} Face 38405 9474 9402 20336 {rgb=(.7 .7 .8)} Face 38406 9402 8617 20336 {rgb=(.7 .7 .8)} Face 38407 8617 9273 20336 {rgb=(.7 .7 .8)} Face 38408 9273 9474 20336 {rgb=(.7 .7 .8)} Face 38409 8660 8617 20337 {rgb=(.7 .7 .8)} Face 38410 8617 7232 20337 {rgb=(.7 .7 .8)} Face 38411 7232 7349 20337 {rgb=(.7 .7 .8)} Face 38412 7349 8660 20337 {rgb=(.7 .7 .8)} Face 38413 7349 7232 20338 {rgb=(.7 .7 .8)} Face 38414 7232 5514 20338 {rgb=(.7 .7 .8)} Face 38415 5514 5516 20338 {rgb=(.7 .7 .8)} Face 38416 5516 7349 20338 {rgb=(.7 .7 .8)} Face 38417 9508 9530 20339 {rgb=(.7 .7 .8)} Face 38418 9530 9491 20339 {rgb=(.7 .7 .8)} Face 38419 9491 9497 20339 {rgb=(.7 .7 .8)} Face 38420 9497 9508 20339 {rgb=(.7 .7 .8)} Face 38421 9454 9470 20340 {rgb=(.7 .7 .8)} Face 38422 9470 9497 20340 {rgb=(.7 .7 .8)} Face 38423 9497 9491 20340 {rgb=(.7 .7 .8)} Face 38424 9491 9454 20340 {rgb=(.7 .7 .8)} Face 38425 9768 9728 20341 {rgb=(.7 .7 .8)} Face 38426 9728 9702 20341 {rgb=(.7 .7 .8)} Face 38427 9702 9677 20341 {rgb=(.7 .7 .8)} Face 38428 9677 9768 20341 {rgb=(.7 .7 .8)} Face 38429 9750 9799 20342 {rgb=(.7 .7 .8)} Face 38430 9799 9677 20342 {rgb=(.7 .7 .8)} Face 38431 9677 9702 20342 {rgb=(.7 .7 .8)} Face 38432 9702 9750 20342 {rgb=(.7 .7 .8)} Face 38433 8878 9302 20343 {rgb=(.7 .7 .8)} Face 38434 9302 9273 20343 {rgb=(.7 .7 .8)} Face 38435 9273 8625 20343 {rgb=(.7 .7 .8)} Face 38436 8625 8878 20343 {rgb=(.7 .7 .8)} Face 38437 8625 8660 20344 {rgb=(.7 .7 .8)} Face 38438 8660 8715 20344 {rgb=(.7 .7 .8)} Face 38439 8715 8878 20344 {rgb=(.7 .7 .8)} Face 38440 8878 8625 20344 {rgb=(.7 .7 .8)} Face 38441 8987 8878 20345 {rgb=(.7 .7 .8)} Face 38442 8878 8715 20345 {rgb=(.7 .7 .8)} Face 38443 8715 8942 20345 {rgb=(.7 .7 .8)} Face 38444 8942 8987 20345 {rgb=(.7 .7 .8)} Face 38445 9348 9302 20346 {rgb=(.7 .7 .8)} Face 38446 9302 8878 20346 {rgb=(.7 .7 .8)} Face 38447 8878 8987 20346 {rgb=(.7 .7 .8)} Face 38448 8987 9348 20346 {rgb=(.7 .7 .8)} Face 38449 9725 9702 20347 {rgb=(.7 .7 .8)} Face 38450 9702 9728 20347 {rgb=(.7 .7 .8)} Face 38451 9728 9758 20347 {rgb=(.7 .7 .8)} Face 38452 9758 9725 20347 {rgb=(.7 .7 .8)} Face 38453 9780 9750 20348 {rgb=(.7 .7 .8)} Face 38454 9750 9702 20348 {rgb=(.7 .7 .8)} Face 38455 9702 9725 20348 {rgb=(.7 .7 .8)} Face 38456 9725 9780 20348 {rgb=(.7 .7 .8)} Face 38457 9490 9491 20349 {rgb=(.7 .7 .8)} Face 38458 9491 9530 20349 {rgb=(.7 .7 .8)} Face 38459 9530 9529 20349 {rgb=(.7 .7 .8)} Face 38460 9529 9490 20349 {rgb=(.7 .7 .8)} Face 38461 9453 9454 20350 {rgb=(.7 .7 .8)} Face 38462 9454 9491 20350 {rgb=(.7 .7 .8)} Face 38463 9491 9490 20350 {rgb=(.7 .7 .8)} Face 38464 9490 9453 20350 {rgb=(.7 .7 .8)} Face 38465 5518 5521 20351 {rgb=(.7 .7 .8)} Face 38466 5521 7337 20351 {rgb=(.7 .7 .8)} Face 38467 7337 7383 20351 {rgb=(.7 .7 .8)} Face 38468 7383 5518 20351 {rgb=(.7 .7 .8)} Face 38469 7383 7337 20352 {rgb=(.7 .7 .8)} Face 38470 7337 8942 20352 {rgb=(.7 .7 .8)} Face 38471 8942 8715 20352 {rgb=(.7 .7 .8)} Face 38472 8715 7383 20352 {rgb=(.7 .7 .8)} Face 38473 9302 9348 20353 {rgb=(.7 .7 .8)} Face 38474 9348 9539 20353 {rgb=(.7 .7 .8)} Face 38475 9539 9516 20353 {rgb=(.7 .7 .8)} Face 38476 9516 9302 20353 {rgb=(.7 .7 .8)} Face 38477 9516 9539 20354 {rgb=(.7 .7 .8)} Face 38478 9539 9773 20354 {rgb=(.7 .7 .8)} Face 38479 9773 9761 20354 {rgb=(.7 .7 .8)} Face 38480 9761 9516 20354 {rgb=(.7 .7 .8)} Face 38481 9761 9783 20355 {rgb=(.7 .7 .8)} Face 38482 9783 9758 20355 {rgb=(.7 .7 .8)} Face 38483 9758 9728 20355 {rgb=(.7 .7 .8)} Face 38484 9728 9761 20355 {rgb=(.7 .7 .8)} Face 38485 9750 9780 20356 {rgb=(.7 .7 .8)} Face 38486 9780 9850 20356 {rgb=(.7 .7 .8)} Face 38487 9850 9840 20356 {rgb=(.7 .7 .8)} Face 38488 9840 9750 20356 {rgb=(.7 .7 .8)} Face 38489 9840 9850 20357 {rgb=(.7 .7 .8)} Face 38490 9850 9784 20357 {rgb=(.7 .7 .8)} Face 38491 9784 9771 20357 {rgb=(.7 .7 .8)} Face 38492 9771 9840 20357 {rgb=(.7 .7 .8)} Face 38493 9771 9784 20358 {rgb=(.7 .7 .8)} Face 38494 9784 9529 20358 {rgb=(.7 .7 .8)} Face 38495 9529 9530 20358 {rgb=(.7 .7 .8)} Face 38496 9530 9771 20358 {rgb=(.7 .7 .8)} Face 38497 7290 7318 20359 {rgb=(.7 .7 .8)} Face 38498 7318 5520 20359 {rgb=(.7 .7 .8)} Face 38499 5520 5519 20359 {rgb=(.7 .7 .8)} Face 38500 5519 7290 20359 {rgb=(.7 .7 .8)} Face 38501 9325 9342 20360 {rgb=(.7 .7 .8)} Face 38502 9342 7487 20360 {rgb=(.7 .7 .8)} Face 38503 7487 7290 20360 {rgb=(.7 .7 .8)} Face 38504 7290 9325 20360 {rgb=(.7 .7 .8)} Face 38505 9454 9453 20361 {rgb=(.7 .7 .8)} Face 38506 9453 9342 20361 {rgb=(.7 .7 .8)} Face 38507 9342 9325 20361 {rgb=(.7 .7 .8)} Face 38508 9325 9454 20361 {rgb=(.7 .7 .8)} Face 38509 9728 9768 20362 {rgb=(.7 .7 .8)} Face 38510 9768 9715 20362 {rgb=(.7 .7 .8)} Face 38511 9715 9761 20362 {rgb=(.7 .7 .8)} Face 38512 9761 9728 20362 {rgb=(.7 .7 .8)} Face 38513 9474 9273 20363 {rgb=(.7 .7 .8)} Face 38514 9273 9302 20363 {rgb=(.7 .7 .8)} Face 38515 9302 9516 20363 {rgb=(.7 .7 .8)} Face 38516 9516 9474 20363 {rgb=(.7 .7 .8)} Face 38517 5516 5518 20364 {rgb=(.7 .7 .8)} Face 38518 5518 7383 20364 {rgb=(.7 .7 .8)} Face 38519 7383 7349 20364 {rgb=(.7 .7 .8)} Face 38520 7349 5516 20364 {rgb=(.7 .7 .8)} Face 38521 9799 9840 20365 {rgb=(.7 .7 .8)} Face 38522 9840 9771 20365 {rgb=(.7 .7 .8)} Face 38523 9771 9706 20365 {rgb=(.7 .7 .8)} Face 38524 9706 9799 20365 {rgb=(.7 .7 .8)} Face 38525 9771 9530 20366 {rgb=(.7 .7 .8)} Face 38526 9530 9508 20366 {rgb=(.7 .7 .8)} Face 38527 9508 9706 20366 {rgb=(.7 .7 .8)} Face 38528 9706 9771 20366 {rgb=(.7 .7 .8)} Face 38529 9231 9470 20367 {rgb=(.7 .7 .8)} Face 38530 9470 9454 20367 {rgb=(.7 .7 .8)} Face 38531 9454 9325 20367 {rgb=(.7 .7 .8)} Face 38532 9325 9231 20367 {rgb=(.7 .7 .8)} Face 38533 9474 9516 20368 {rgb=(.7 .7 .8)} Face 38534 9516 9761 20368 {rgb=(.7 .7 .8)} Face 38535 9761 9715 20368 {rgb=(.7 .7 .8)} Face 38536 9715 9474 20368 {rgb=(.7 .7 .8)} Face 38537 7285 7290 20369 {rgb=(.7 .7 .8)} Face 38538 7290 5519 20369 {rgb=(.7 .7 .8)} Face 38539 5519 5517 20369 {rgb=(.7 .7 .8)} Face 38540 5517 7285 20369 {rgb=(.7 .7 .8)} Face 38541 7349 7383 20370 {rgb=(.7 .7 .8)} Face 38542 7383 8715 20370 {rgb=(.7 .7 .8)} Face 38543 8715 8660 20370 {rgb=(.7 .7 .8)} Face 38544 8660 7349 20370 {rgb=(.7 .7 .8)} Face 38545 9231 9325 20371 {rgb=(.7 .7 .8)} Face 38546 9325 7290 20371 {rgb=(.7 .7 .8)} Face 38547 7290 7285 20371 {rgb=(.7 .7 .8)} Face 38548 7285 9231 20371 {rgb=(.7 .7 .8)} Face 38549 10095 9711 20372 {rgb=(.7 .7 .8)} Face 38550 9711 9818 20372 {rgb=(.7 .7 .8)} Face 38551 9818 10137 20372 {rgb=(.7 .7 .8)} Face 38552 10137 10095 20372 {rgb=(.7 .7 .8)} Face 38553 10266 10095 20373 {rgb=(.7 .7 .8)} Face 38554 10095 10137 20373 {rgb=(.7 .7 .8)} Face 38555 10137 10336 20373 {rgb=(.7 .7 .8)} Face 38556 10336 10266 20373 {rgb=(.7 .7 .8)} Face 38557 10186 10408 20374 {rgb=(.7 .7 .8)} Face 38558 10408 10560 20374 {rgb=(.7 .7 .8)} Face 38559 10560 10251 20374 {rgb=(.7 .7 .8)} Face 38560 10251 10186 20374 {rgb=(.7 .7 .8)} Face 38561 9967 10122 20375 {rgb=(.7 .7 .8)} Face 38562 10122 10169 20375 {rgb=(.7 .7 .8)} Face 38563 10169 10021 20375 {rgb=(.7 .7 .8)} Face 38564 10021 9967 20375 {rgb=(.7 .7 .8)} Face 38565 9619 9967 20376 {rgb=(.7 .7 .8)} Face 38566 9967 10021 20376 {rgb=(.7 .7 .8)} Face 38567 10021 9689 20376 {rgb=(.7 .7 .8)} Face 38568 9689 9619 20376 {rgb=(.7 .7 .8)} Face 38569 8979 9619 20377 {rgb=(.7 .7 .8)} Face 38570 9619 9689 20377 {rgb=(.7 .7 .8)} Face 38571 9689 9264 20377 {rgb=(.7 .7 .8)} Face 38572 9264 8979 20377 {rgb=(.7 .7 .8)} Face 38573 6449 8366 20378 {rgb=(.7 .7 .8)} Face 38574 8366 8531 20378 {rgb=(.7 .7 .8)} Face 38575 8531 6565 20378 {rgb=(.7 .7 .8)} Face 38576 6565 6449 20378 {rgb=(.7 .7 .8)} Face 38577 5729 6449 20379 {rgb=(.7 .7 .8)} Face 38578 6449 6565 20379 {rgb=(.7 .7 .8)} Face 38579 6565 5815 20379 {rgb=(.7 .7 .8)} Face 38580 5815 5729 20379 {rgb=(.7 .7 .8)} Face 38581 6704 6421 20380 {rgb=(.7 .7 .8)} Face 38582 6421 5718 20380 {rgb=(.7 .7 .8)} Face 38583 5718 5830 20380 {rgb=(.7 .7 .8)} Face 38584 5830 6704 20380 {rgb=(.7 .7 .8)} Face 38585 8685 6421 20381 {rgb=(.7 .7 .8)} Face 38586 6421 6704 20381 {rgb=(.7 .7 .8)} Face 38587 6704 9045 20381 {rgb=(.7 .7 .8)} Face 38588 9045 8685 20381 {rgb=(.7 .7 .8)} Face 38589 9711 8685 20382 {rgb=(.7 .7 .8)} Face 38590 8685 9045 20382 {rgb=(.7 .7 .8)} Face 38591 9045 9700 20382 {rgb=(.7 .7 .8)} Face 38592 9700 9711 20382 {rgb=(.7 .7 .8)} Face 38593 9372 9403 20383 {rgb=(.7 .7 .8)} Face 38594 9403 9277 20383 {rgb=(.7 .7 .8)} Face 38595 9277 8219 20383 {rgb=(.7 .7 .8)} Face 38596 8219 9372 20383 {rgb=(.7 .7 .8)} Face 38597 9558 9548 20384 {rgb=(.7 .7 .8)} Face 38598 9548 9403 20384 {rgb=(.7 .7 .8)} Face 38599 9403 9372 20384 {rgb=(.7 .7 .8)} Face 38600 9372 9558 20384 {rgb=(.7 .7 .8)} Face 38601 9652 9671 20385 {rgb=(.7 .7 .8)} Face 38602 9671 9548 20385 {rgb=(.7 .7 .8)} Face 38603 9548 9558 20385 {rgb=(.7 .7 .8)} Face 38604 9558 9652 20385 {rgb=(.7 .7 .8)} Face 38605 9824 9762 20386 {rgb=(.7 .7 .8)} Face 38606 9762 9671 20386 {rgb=(.7 .7 .8)} Face 38607 9671 9652 20386 {rgb=(.7 .7 .8)} Face 38608 9652 9824 20386 {rgb=(.7 .7 .8)} Face 38609 9870 9810 20387 {rgb=(.7 .7 .8)} Face 38610 9810 9762 20387 {rgb=(.7 .7 .8)} Face 38611 9762 9824 20387 {rgb=(.7 .7 .8)} Face 38612 9824 9870 20387 {rgb=(.7 .7 .8)} Face 38613 9819 9705 20388 {rgb=(.7 .7 .8)} Face 38614 9705 9810 20388 {rgb=(.7 .7 .8)} Face 38615 9810 9870 20388 {rgb=(.7 .7 .8)} Face 38616 9870 9819 20388 {rgb=(.7 .7 .8)} Face 38617 9569 9555 20389 {rgb=(.7 .7 .8)} Face 38618 9555 9705 20389 {rgb=(.7 .7 .8)} Face 38619 9705 9819 20389 {rgb=(.7 .7 .8)} Face 38620 9819 9569 20389 {rgb=(.7 .7 .8)} Face 38621 9383 9405 20390 {rgb=(.7 .7 .8)} Face 38622 9405 9555 20390 {rgb=(.7 .7 .8)} Face 38623 9555 9569 20390 {rgb=(.7 .7 .8)} Face 38624 9569 9383 20390 {rgb=(.7 .7 .8)} Face 38625 8424 9336 20391 {rgb=(.7 .7 .8)} Face 38626 9336 9405 20391 {rgb=(.7 .7 .8)} Face 38627 9405 9383 20391 {rgb=(.7 .7 .8)} Face 38628 9383 8424 20391 {rgb=(.7 .7 .8)} Face 38629 7908 9084 20392 {rgb=(.7 .7 .8)} Face 38630 9084 9336 20392 {rgb=(.7 .7 .8)} Face 38631 9336 8424 20392 {rgb=(.7 .7 .8)} Face 38632 8424 7908 20392 {rgb=(.7 .7 .8)} Face 38633 8219 9277 20393 {rgb=(.7 .7 .8)} Face 38634 9277 9084 20393 {rgb=(.7 .7 .8)} Face 38635 9084 7908 20393 {rgb=(.7 .7 .8)} Face 38636 7908 8219 20393 {rgb=(.7 .7 .8)} Face 38637 9378 9372 20394 {rgb=(.7 .7 .8)} Face 38638 9372 8219 20394 {rgb=(.7 .7 .8)} Face 38639 8219 8018 20394 {rgb=(.7 .7 .8)} Face 38640 8018 9378 20394 {rgb=(.7 .7 .8)} Face 38641 9609 9558 20395 {rgb=(.7 .7 .8)} Face 38642 9558 9372 20395 {rgb=(.7 .7 .8)} Face 38643 9372 9378 20395 {rgb=(.7 .7 .8)} Face 38644 9378 9609 20395 {rgb=(.7 .7 .8)} Face 38645 9845 9652 20396 {rgb=(.7 .7 .8)} Face 38646 9652 9558 20396 {rgb=(.7 .7 .8)} Face 38647 9558 9609 20396 {rgb=(.7 .7 .8)} Face 38648 9609 9845 20396 {rgb=(.7 .7 .8)} Face 38649 9900 9824 20397 {rgb=(.7 .7 .8)} Face 38650 9824 9652 20397 {rgb=(.7 .7 .8)} Face 38651 9652 9845 20397 {rgb=(.7 .7 .8)} Face 38652 9845 9900 20397 {rgb=(.7 .7 .8)} Face 38653 9927 9870 20398 {rgb=(.7 .7 .8)} Face 38654 9870 9824 20398 {rgb=(.7 .7 .8)} Face 38655 9824 9900 20398 {rgb=(.7 .7 .8)} Face 38656 9900 9927 20398 {rgb=(.7 .7 .8)} Face 38657 9873 9819 20399 {rgb=(.7 .7 .8)} Face 38658 9819 9870 20399 {rgb=(.7 .7 .8)} Face 38659 9870 9927 20399 {rgb=(.7 .7 .8)} Face 38660 9927 9873 20399 {rgb=(.7 .7 .8)} Face 38661 9640 9569 20400 {rgb=(.7 .7 .8)} Face 38662 9569 9819 20400 {rgb=(.7 .7 .8)} Face 38663 9819 9873 20400 {rgb=(.7 .7 .8)} Face 38664 9873 9640 20400 {rgb=(.7 .7 .8)} Face 38665 9370 9383 20401 {rgb=(.7 .7 .8)} Face 38666 9383 9569 20401 {rgb=(.7 .7 .8)} Face 38667 9569 9640 20401 {rgb=(.7 .7 .8)} Face 38668 9640 9370 20401 {rgb=(.7 .7 .8)} Face 38669 8131 8424 20402 {rgb=(.7 .7 .8)} Face 38670 8424 9383 20402 {rgb=(.7 .7 .8)} Face 38671 9383 9370 20402 {rgb=(.7 .7 .8)} Face 38672 9370 8131 20402 {rgb=(.7 .7 .8)} Face 38673 7632 7908 20403 {rgb=(.7 .7 .8)} Face 38674 7908 8424 20403 {rgb=(.7 .7 .8)} Face 38675 8424 8131 20403 {rgb=(.7 .7 .8)} Face 38676 8131 7632 20403 {rgb=(.7 .7 .8)} Face 38677 8018 8219 20404 {rgb=(.7 .7 .8)} Face 38678 8219 7908 20404 {rgb=(.7 .7 .8)} Face 38679 7908 7632 20404 {rgb=(.7 .7 .8)} Face 38680 7632 8018 20404 {rgb=(.7 .7 .8)} Face 38681 9392 9378 20405 {rgb=(.7 .7 .8)} Face 38682 9378 8018 20405 {rgb=(.7 .7 .8)} Face 38683 8018 8203 20405 {rgb=(.7 .7 .8)} Face 38684 8203 9392 20405 {rgb=(.7 .7 .8)} Face 38685 9629 9609 20406 {rgb=(.7 .7 .8)} Face 38686 9609 9378 20406 {rgb=(.7 .7 .8)} Face 38687 9378 9392 20406 {rgb=(.7 .7 .8)} Face 38688 9392 9629 20406 {rgb=(.7 .7 .8)} Face 38689 9864 9845 20407 {rgb=(.7 .7 .8)} Face 38690 9845 9609 20407 {rgb=(.7 .7 .8)} Face 38691 9609 9629 20407 {rgb=(.7 .7 .8)} Face 38692 9629 9864 20407 {rgb=(.7 .7 .8)} Face 38693 9960 9900 20408 {rgb=(.7 .7 .8)} Face 38694 9900 9845 20408 {rgb=(.7 .7 .8)} Face 38695 9845 9864 20408 {rgb=(.7 .7 .8)} Face 38696 9864 9960 20408 {rgb=(.7 .7 .8)} Face 38697 10002 9927 20409 {rgb=(.7 .7 .8)} Face 38698 9927 9900 20409 {rgb=(.7 .7 .8)} Face 38699 9900 9960 20409 {rgb=(.7 .7 .8)} Face 38700 9960 10002 20409 {rgb=(.7 .7 .8)} Face 38701 9903 9873 20410 {rgb=(.7 .7 .8)} Face 38702 9873 9927 20410 {rgb=(.7 .7 .8)} Face 38703 9927 10002 20410 {rgb=(.7 .7 .8)} Face 38704 10002 9903 20410 {rgb=(.7 .7 .8)} Face 38705 9649 9640 20411 {rgb=(.7 .7 .8)} Face 38706 9640 9873 20411 {rgb=(.7 .7 .8)} Face 38707 9873 9903 20411 {rgb=(.7 .7 .8)} Face 38708 9903 9649 20411 {rgb=(.7 .7 .8)} Face 38709 9364 9370 20412 {rgb=(.7 .7 .8)} Face 38710 9370 9640 20412 {rgb=(.7 .7 .8)} Face 38711 9640 9649 20412 {rgb=(.7 .7 .8)} Face 38712 9649 9364 20412 {rgb=(.7 .7 .8)} Face 38713 7950 8131 20413 {rgb=(.7 .7 .8)} Face 38714 8131 9370 20413 {rgb=(.7 .7 .8)} Face 38715 9370 9364 20413 {rgb=(.7 .7 .8)} Face 38716 9364 7950 20413 {rgb=(.7 .7 .8)} Face 38717 7044 7632 20414 {rgb=(.7 .7 .8)} Face 38718 7632 8131 20414 {rgb=(.7 .7 .8)} Face 38719 8131 7950 20414 {rgb=(.7 .7 .8)} Face 38720 7950 7044 20414 {rgb=(.7 .7 .8)} Face 38721 8203 8018 20415 {rgb=(.7 .7 .8)} Face 38722 8018 7632 20415 {rgb=(.7 .7 .8)} Face 38723 7632 7044 20415 {rgb=(.7 .7 .8)} Face 38724 7044 8203 20415 {rgb=(.7 .7 .8)} Face 38725 9394 9392 20416 {rgb=(.7 .7 .8)} Face 38726 9392 8203 20416 {rgb=(.7 .7 .8)} Face 38727 8203 8348 20416 {rgb=(.7 .7 .8)} Face 38728 8348 9394 20416 {rgb=(.7 .7 .8)} Face 38729 9573 9629 20417 {rgb=(.7 .7 .8)} Face 38730 9629 9392 20417 {rgb=(.7 .7 .8)} Face 38731 9392 9394 20417 {rgb=(.7 .7 .8)} Face 38732 9394 9573 20417 {rgb=(.7 .7 .8)} Face 38733 9798 9864 20418 {rgb=(.7 .7 .8)} Face 38734 9864 9629 20418 {rgb=(.7 .7 .8)} Face 38735 9629 9573 20418 {rgb=(.7 .7 .8)} Face 38736 9573 9798 20418 {rgb=(.7 .7 .8)} Face 38737 9913 9960 20419 {rgb=(.7 .7 .8)} Face 38738 9960 9864 20419 {rgb=(.7 .7 .8)} Face 38739 9864 9798 20419 {rgb=(.7 .7 .8)} Face 38740 9798 9913 20419 {rgb=(.7 .7 .8)} Face 38741 9961 10002 20420 {rgb=(.7 .7 .8)} Face 38742 10002 9960 20420 {rgb=(.7 .7 .8)} Face 38743 9960 9913 20420 {rgb=(.7 .7 .8)} Face 38744 9913 9961 20420 {rgb=(.7 .7 .8)} Face 38745 9842 9903 20421 {rgb=(.7 .7 .8)} Face 38746 9903 10002 20421 {rgb=(.7 .7 .8)} Face 38747 10002 9961 20421 {rgb=(.7 .7 .8)} Face 38748 9961 9842 20421 {rgb=(.7 .7 .8)} Face 38749 9572 9649 20422 {rgb=(.7 .7 .8)} Face 38750 9649 9903 20422 {rgb=(.7 .7 .8)} Face 38751 9903 9842 20422 {rgb=(.7 .7 .8)} Face 38752 9842 9572 20422 {rgb=(.7 .7 .8)} Face 38753 9335 9364 20423 {rgb=(.7 .7 .8)} Face 38754 9364 9649 20423 {rgb=(.7 .7 .8)} Face 38755 9649 9572 20423 {rgb=(.7 .7 .8)} Face 38756 9572 9335 20423 {rgb=(.7 .7 .8)} Face 38757 7850 7950 20424 {rgb=(.7 .7 .8)} Face 38758 7950 9364 20424 {rgb=(.7 .7 .8)} Face 38759 9364 9335 20424 {rgb=(.7 .7 .8)} Face 38760 9335 7850 20424 {rgb=(.7 .7 .8)} Face 38761 7677 7044 20425 {rgb=(.7 .7 .8)} Face 38762 7044 7950 20425 {rgb=(.7 .7 .8)} Face 38763 7950 7850 20425 {rgb=(.7 .7 .8)} Face 38764 7850 7677 20425 {rgb=(.7 .7 .8)} Face 38765 8348 8203 20426 {rgb=(.7 .7 .8)} Face 38766 8203 7044 20426 {rgb=(.7 .7 .8)} Face 38767 7044 7677 20426 {rgb=(.7 .7 .8)} Face 38768 7677 8348 20426 {rgb=(.7 .7 .8)} Face 38769 9341 9662 20427 {rgb=(.7 .7 .8)} Face 38770 9662 9627 20427 {rgb=(.7 .7 .8)} Face 38771 9627 9354 20427 {rgb=(.7 .7 .8)} Face 38772 9354 9341 20427 {rgb=(.7 .7 .8)} Face 38773 9662 9975 20428 {rgb=(.7 .7 .8)} Face 38774 9975 9892 20428 {rgb=(.7 .7 .8)} Face 38775 9892 9627 20428 {rgb=(.7 .7 .8)} Face 38776 9627 9662 20428 {rgb=(.7 .7 .8)} Face 38777 10109 10124 20429 {rgb=(.7 .7 .8)} Face 38778 10124 9989 20429 {rgb=(.7 .7 .8)} Face 38779 9989 9992 20429 {rgb=(.7 .7 .8)} Face 38780 9992 10109 20429 {rgb=(.7 .7 .8)} Face 38781 9989 10124 20430 {rgb=(.7 .7 .8)} Face 38782 10124 10183 20430 {rgb=(.7 .7 .8)} Face 38783 10183 10033 20430 {rgb=(.7 .7 .8)} Face 38784 10033 9989 20430 {rgb=(.7 .7 .8)} Face 38785 9785 9720 20431 {rgb=(.7 .7 .8)} Face 38786 9720 9659 20431 {rgb=(.7 .7 .8)} Face 38787 9659 9718 20431 {rgb=(.7 .7 .8)} Face 38788 9718 9785 20431 {rgb=(.7 .7 .8)} Face 38789 9580 9659 20432 {rgb=(.7 .7 .8)} Face 38790 9659 9720 20432 {rgb=(.7 .7 .8)} Face 38791 9720 9669 20432 {rgb=(.7 .7 .8)} Face 38792 9669 9580 20432 {rgb=(.7 .7 .8)} Face 38793 7114 7046 20433 {rgb=(.7 .7 .8)} Face 38794 7046 8492 20433 {rgb=(.7 .7 .8)} Face 38795 8492 8307 20433 {rgb=(.7 .7 .8)} Face 38796 8307 7114 20433 {rgb=(.7 .7 .8)} Face 38797 8492 7046 20434 {rgb=(.7 .7 .8)} Face 38798 7046 6848 20434 {rgb=(.7 .7 .8)} Face 38799 6848 7842 20434 {rgb=(.7 .7 .8)} Face 38800 7842 8492 20434 {rgb=(.7 .7 .8)} Face 38801 6363 6953 20435 {rgb=(.7 .7 .8)} Face 38802 6953 7661 20435 {rgb=(.7 .7 .8)} Face 38803 7661 7385 20435 {rgb=(.7 .7 .8)} Face 38804 7385 6363 20435 {rgb=(.7 .7 .8)} Face 38805 6953 8865 20436 {rgb=(.7 .7 .8)} Face 38806 8865 9354 20436 {rgb=(.7 .7 .8)} Face 38807 9354 7661 20436 {rgb=(.7 .7 .8)} Face 38808 7661 6953 20436 {rgb=(.7 .7 .8)} Face 38809 9264 9689 20437 {rgb=(.7 .7 .8)} Face 38810 9689 9662 20437 {rgb=(.7 .7 .8)} Face 38811 9662 9341 20437 {rgb=(.7 .7 .8)} Face 38812 9341 9264 20437 {rgb=(.7 .7 .8)} Face 38813 9689 10021 20438 {rgb=(.7 .7 .8)} Face 38814 10021 9975 20438 {rgb=(.7 .7 .8)} Face 38815 9975 9662 20438 {rgb=(.7 .7 .8)} Face 38816 9662 9689 20438 {rgb=(.7 .7 .8)} Face 38817 10021 10169 20439 {rgb=(.7 .7 .8)} Face 38818 10169 10109 20439 {rgb=(.7 .7 .8)} Face 38819 10109 9975 20439 {rgb=(.7 .7 .8)} Face 38820 9975 10021 20439 {rgb=(.7 .7 .8)} Face 38821 10251 10560 20440 {rgb=(.7 .7 .8)} Face 38822 10560 10370 20440 {rgb=(.7 .7 .8)} Face 38823 10370 10183 20440 {rgb=(.7 .7 .8)} Face 38824 10183 10251 20440 {rgb=(.7 .7 .8)} Face 38825 10336 10137 20441 {rgb=(.7 .7 .8)} Face 38826 10137 10101 20441 {rgb=(.7 .7 .8)} Face 38827 10101 10253 20441 {rgb=(.7 .7 .8)} Face 38828 10253 10336 20441 {rgb=(.7 .7 .8)} Face 38829 10137 9818 20442 {rgb=(.7 .7 .8)} Face 38830 9818 9785 20442 {rgb=(.7 .7 .8)} Face 38831 9785 10101 20442 {rgb=(.7 .7 .8)} Face 38832 10101 10137 20442 {rgb=(.7 .7 .8)} Face 38833 9045 9064 20443 {rgb=(.7 .7 .8)} Face 38834 9064 9669 20443 {rgb=(.7 .7 .8)} Face 38835 9669 9700 20443 {rgb=(.7 .7 .8)} Face 38836 9700 9045 20443 {rgb=(.7 .7 .8)} Face 38837 9045 6704 20444 {rgb=(.7 .7 .8)} Face 38838 6704 7114 20444 {rgb=(.7 .7 .8)} Face 38839 7114 9064 20444 {rgb=(.7 .7 .8)} Face 38840 9064 9045 20444 {rgb=(.7 .7 .8)} Face 38841 6704 5830 20445 {rgb=(.7 .7 .8)} Face 38842 5830 6324 20445 {rgb=(.7 .7 .8)} Face 38843 6324 6848 20445 {rgb=(.7 .7 .8)} Face 38844 6848 6704 20445 {rgb=(.7 .7 .8)} Face 38845 5815 6565 20446 {rgb=(.7 .7 .8)} Face 38846 6565 6953 20446 {rgb=(.7 .7 .8)} Face 38847 6953 6363 20446 {rgb=(.7 .7 .8)} Face 38848 6363 5815 20446 {rgb=(.7 .7 .8)} Face 38849 6565 8531 20447 {rgb=(.7 .7 .8)} Face 38850 8531 8865 20447 {rgb=(.7 .7 .8)} Face 38851 8865 6953 20447 {rgb=(.7 .7 .8)} Face 38852 6953 6565 20447 {rgb=(.7 .7 .8)} Face 38853 8320 9537 20448 {rgb=(.7 .7 .8)} Face 38854 9537 9619 20448 {rgb=(.7 .7 .8)} Face 38855 9619 8979 20448 {rgb=(.7 .7 .8)} Face 38856 8979 8320 20448 {rgb=(.7 .7 .8)} Face 38857 9537 9877 20449 {rgb=(.7 .7 .8)} Face 38858 9877 9967 20449 {rgb=(.7 .7 .8)} Face 38859 9967 9619 20449 {rgb=(.7 .7 .8)} Face 38860 9619 9537 20449 {rgb=(.7 .7 .8)} Face 38861 9877 10014 20450 {rgb=(.7 .7 .8)} Face 38862 10014 10122 20450 {rgb=(.7 .7 .8)} Face 38863 10122 9967 20450 {rgb=(.7 .7 .8)} Face 38864 9967 9877 20450 {rgb=(.7 .7 .8)} Face 38865 10067 10210 20451 {rgb=(.7 .7 .8)} Face 38866 10210 10408 20451 {rgb=(.7 .7 .8)} Face 38867 10408 10186 20451 {rgb=(.7 .7 .8)} Face 38868 10186 10067 20451 {rgb=(.7 .7 .8)} Face 38869 10140 9980 20452 {rgb=(.7 .7 .8)} Face 38870 9980 10095 20452 {rgb=(.7 .7 .8)} Face 38871 10095 10266 20452 {rgb=(.7 .7 .8)} Face 38872 10266 10140 20452 {rgb=(.7 .7 .8)} Face 38873 9980 9592 20453 {rgb=(.7 .7 .8)} Face 38874 9592 9711 20453 {rgb=(.7 .7 .8)} Face 38875 9711 10095 20453 {rgb=(.7 .7 .8)} Face 38876 10095 9980 20453 {rgb=(.7 .7 .8)} Face 38877 8804 8685 20454 {rgb=(.7 .7 .8)} Face 38878 8685 9711 20454 {rgb=(.7 .7 .8)} Face 38879 9711 9592 20454 {rgb=(.7 .7 .8)} Face 38880 9592 8804 20454 {rgb=(.7 .7 .8)} Face 38881 8804 6376 20455 {rgb=(.7 .7 .8)} Face 38882 6376 6421 20455 {rgb=(.7 .7 .8)} Face 38883 6421 8685 20455 {rgb=(.7 .7 .8)} Face 38884 8685 8804 20455 {rgb=(.7 .7 .8)} Face 38885 6376 5710 20456 {rgb=(.7 .7 .8)} Face 38886 5710 5718 20456 {rgb=(.7 .7 .8)} Face 38887 5718 6421 20456 {rgb=(.7 .7 .8)} Face 38888 6421 6376 20456 {rgb=(.7 .7 .8)} Face 38889 5757 6337 20457 {rgb=(.7 .7 .8)} Face 38890 6337 6449 20457 {rgb=(.7 .7 .8)} Face 38891 6449 5729 20457 {rgb=(.7 .7 .8)} Face 38892 5729 5757 20457 {rgb=(.7 .7 .8)} Face 38893 6337 8320 20458 {rgb=(.7 .7 .8)} Face 38894 8320 8366 20458 {rgb=(.7 .7 .8)} Face 38895 8366 6449 20458 {rgb=(.7 .7 .8)} Face 38896 6449 6337 20458 {rgb=(.7 .7 .8)} Face 38897 6657 6337 20459 {rgb=(.7 .7 .8)} Face 38898 6337 5757 20459 {rgb=(.7 .7 .8)} Face 38899 5757 5890 20459 {rgb=(.7 .7 .8)} Face 38900 5890 6657 20459 {rgb=(.7 .7 .8)} Face 38901 5491 6657 20460 {rgb=(.7 .7 .8)} Face 38902 6657 5890 20460 {rgb=(.7 .7 .8)} Face 38903 5890 5490 20460 {rgb=(.7 .7 .8)} Face 38904 5490 5491 20460 {rgb=(.7 .7 .8)} Face 38905 9915 10011 20461 {rgb=(.7 .7 .8)} Face 38906 10011 10066 20461 {rgb=(.7 .7 .8)} Face 38907 10066 9884 20461 {rgb=(.7 .7 .8)} Face 38908 9884 9915 20461 {rgb=(.7 .7 .8)} Face 38909 9932 10011 20462 {rgb=(.7 .7 .8)} Face 38910 10011 9915 20462 {rgb=(.7 .7 .8)} Face 38911 9915 9885 20462 {rgb=(.7 .7 .8)} Face 38912 9885 9932 20462 {rgb=(.7 .7 .8)} Face 38913 6376 8804 20463 {rgb=(.7 .7 .8)} Face 38914 8804 6931 20463 {rgb=(.7 .7 .8)} Face 38915 6931 6729 20463 {rgb=(.7 .7 .8)} Face 38916 6729 6376 20463 {rgb=(.7 .7 .8)} Face 38917 9475 9506 20464 {rgb=(.7 .7 .8)} Face 38918 9506 9137 20464 {rgb=(.7 .7 .8)} Face 38919 9137 9250 20464 {rgb=(.7 .7 .8)} Face 38920 9250 9475 20464 {rgb=(.7 .7 .8)} Face 38921 5494 5496 20465 {rgb=(.7 .7 .8)} Face 38922 5496 7341 20465 {rgb=(.7 .7 .8)} Face 38923 7341 7328 20465 {rgb=(.7 .7 .8)} Face 38924 7328 5494 20465 {rgb=(.7 .7 .8)} Face 38925 5498 7274 20466 {rgb=(.7 .7 .8)} Face 38926 7274 7341 20466 {rgb=(.7 .7 .8)} Face 38927 7341 5496 20466 {rgb=(.7 .7 .8)} Face 38928 5496 5498 20466 {rgb=(.7 .7 .8)} Face 38929 9297 9137 20467 {rgb=(.7 .7 .8)} Face 38930 9137 9506 20467 {rgb=(.7 .7 .8)} Face 38931 9506 9501 20467 {rgb=(.7 .7 .8)} Face 38932 9501 9297 20467 {rgb=(.7 .7 .8)} Face 38933 7328 7341 20468 {rgb=(.7 .7 .8)} Face 38934 7341 9137 20468 {rgb=(.7 .7 .8)} Face 38935 9137 9297 20468 {rgb=(.7 .7 .8)} Face 38936 9297 7328 20468 {rgb=(.7 .7 .8)} Face 38937 9594 9668 20469 {rgb=(.7 .7 .8)} Face 38938 9668 9811 20469 {rgb=(.7 .7 .8)} Face 38939 9811 9790 20469 {rgb=(.7 .7 .8)} Face 38940 9790 9594 20469 {rgb=(.7 .7 .8)} Face 38941 9576 9703 20470 {rgb=(.7 .7 .8)} Face 38942 9703 9800 20470 {rgb=(.7 .7 .8)} Face 38943 9800 9670 20470 {rgb=(.7 .7 .8)} Face 38944 9670 9576 20470 {rgb=(.7 .7 .8)} Face 38945 9510 9871 20471 {rgb=(.7 .7 .8)} Face 38946 9871 9882 20471 {rgb=(.7 .7 .8)} Face 38947 9882 9535 20471 {rgb=(.7 .7 .8)} Face 38948 9535 9510 20471 {rgb=(.7 .7 .8)} Face 38949 8845 8303 20472 {rgb=(.7 .7 .8)} Face 38950 8303 7544 20472 {rgb=(.7 .7 .8)} Face 38951 7544 8651 20472 {rgb=(.7 .7 .8)} Face 38952 8651 8845 20472 {rgb=(.7 .7 .8)} Face 38953 9410 9094 20473 {rgb=(.7 .7 .8)} Face 38954 9094 9304 20473 {rgb=(.7 .7 .8)} Face 38955 9304 9436 20473 {rgb=(.7 .7 .8)} Face 38956 9436 9410 20473 {rgb=(.7 .7 .8)} Face 38957 5495 5493 20474 {rgb=(.7 .7 .8)} Face 38958 5493 6265 20474 {rgb=(.7 .7 .8)} Face 38959 6265 6426 20474 {rgb=(.7 .7 .8)} Face 38960 6426 5495 20474 {rgb=(.7 .7 .8)} Face 38961 6938 7217 20475 {rgb=(.7 .7 .8)} Face 38962 7217 5501 20475 {rgb=(.7 .7 .8)} Face 38963 5501 5499 20475 {rgb=(.7 .7 .8)} Face 38964 5499 6938 20475 {rgb=(.7 .7 .8)} Face 38965 9363 7416 20476 {rgb=(.7 .7 .8)} Face 38966 7416 7250 20476 {rgb=(.7 .7 .8)} Face 38967 7250 9297 20476 {rgb=(.7 .7 .8)} Face 38968 9297 9363 20476 {rgb=(.7 .7 .8)} Face 38969 8320 7416 20477 {rgb=(.7 .7 .8)} Face 38970 7416 9363 20477 {rgb=(.7 .7 .8)} Face 38971 9363 9537 20477 {rgb=(.7 .7 .8)} Face 38972 9537 8320 20477 {rgb=(.7 .7 .8)} Face 38973 8651 9510 20478 {rgb=(.7 .7 .8)} Face 38974 9510 9535 20478 {rgb=(.7 .7 .8)} Face 38975 9535 8845 20478 {rgb=(.7 .7 .8)} Face 38976 8845 8651 20478 {rgb=(.7 .7 .8)} Face 38977 8320 6337 20479 {rgb=(.7 .7 .8)} Face 38978 6337 6657 20479 {rgb=(.7 .7 .8)} Face 38979 6657 7416 20479 {rgb=(.7 .7 .8)} Face 38980 7416 8320 20479 {rgb=(.7 .7 .8)} Face 38981 9363 9605 20480 {rgb=(.7 .7 .8)} Face 38982 9605 9877 20480 {rgb=(.7 .7 .8)} Face 38983 9877 9537 20480 {rgb=(.7 .7 .8)} Face 38984 9537 9363 20480 {rgb=(.7 .7 .8)} Face 38985 10003 10070 20481 {rgb=(.7 .7 .8)} Face 38986 10070 10011 20481 {rgb=(.7 .7 .8)} Face 38987 10011 9982 20481 {rgb=(.7 .7 .8)} Face 38988 9982 10003 20481 {rgb=(.7 .7 .8)} Face 38989 5596 6265 20482 {rgb=(.7 .7 .8)} Face 38990 6265 5493 20482 {rgb=(.7 .7 .8)} Face 38991 5493 5492 20482 {rgb=(.7 .7 .8)} Face 38992 5492 5596 20482 {rgb=(.7 .7 .8)} Face 38993 7229 8614 20483 {rgb=(.7 .7 .8)} Face 38994 8614 9250 20483 {rgb=(.7 .7 .8)} Face 38995 9250 7274 20483 {rgb=(.7 .7 .8)} Face 38996 7274 7229 20483 {rgb=(.7 .7 .8)} Face 38997 9418 9594 20484 {rgb=(.7 .7 .8)} Face 38998 9594 9790 20484 {rgb=(.7 .7 .8)} Face 38999 9790 9546 20484 {rgb=(.7 .7 .8)} Face 39000 9546 9418 20484 {rgb=(.7 .7 .8)} Face 39001 9560 9535 20485 {rgb=(.7 .7 .8)} Face 39002 9535 9882 20485 {rgb=(.7 .7 .8)} Face 39003 9882 9852 20485 {rgb=(.7 .7 .8)} Face 39004 9852 9560 20485 {rgb=(.7 .7 .8)} Face 39005 9605 9501 20486 {rgb=(.7 .7 .8)} Face 39006 9501 9915 20486 {rgb=(.7 .7 .8)} Face 39007 9915 9884 20486 {rgb=(.7 .7 .8)} Face 39008 9884 9605 20486 {rgb=(.7 .7 .8)} Face 39009 9852 9703 20487 {rgb=(.7 .7 .8)} Face 39010 9703 9514 20487 {rgb=(.7 .7 .8)} Face 39011 9514 9560 20487 {rgb=(.7 .7 .8)} Face 39012 9560 9852 20487 {rgb=(.7 .7 .8)} Face 39013 9501 9559 20488 {rgb=(.7 .7 .8)} Face 39014 9559 9885 20488 {rgb=(.7 .7 .8)} Face 39015 9885 9915 20488 {rgb=(.7 .7 .8)} Face 39016 9915 9501 20488 {rgb=(.7 .7 .8)} Face 39017 9297 9501 20489 {rgb=(.7 .7 .8)} Face 39018 9501 9605 20489 {rgb=(.7 .7 .8)} Face 39019 9605 9363 20489 {rgb=(.7 .7 .8)} Face 39020 9363 9297 20489 {rgb=(.7 .7 .8)} Face 39021 5491 5494 20490 {rgb=(.7 .7 .8)} Face 39022 5494 7328 20490 {rgb=(.7 .7 .8)} Face 39023 7328 7250 20490 {rgb=(.7 .7 .8)} Face 39024 7250 5491 20490 {rgb=(.7 .7 .8)} Face 39025 9546 9790 20491 {rgb=(.7 .7 .8)} Face 39026 9790 9885 20491 {rgb=(.7 .7 .8)} Face 39027 9885 9559 20491 {rgb=(.7 .7 .8)} Face 39028 9559 9546 20491 {rgb=(.7 .7 .8)} Face 39029 7274 9250 20492 {rgb=(.7 .7 .8)} Face 39030 9250 9137 20492 {rgb=(.7 .7 .8)} Face 39031 9137 7341 20492 {rgb=(.7 .7 .8)} Face 39032 7341 7274 20492 {rgb=(.7 .7 .8)} Face 39033 7274 5498 20493 {rgb=(.7 .7 .8)} Face 39034 5498 5502 20493 {rgb=(.7 .7 .8)} Face 39035 5502 7229 20493 {rgb=(.7 .7 .8)} Face 39036 7229 7274 20493 {rgb=(.7 .7 .8)} Face 39037 8614 9382 20494 {rgb=(.7 .7 .8)} Face 39038 9382 9475 20494 {rgb=(.7 .7 .8)} Face 39039 9475 9250 20494 {rgb=(.7 .7 .8)} Face 39040 9250 8614 20494 {rgb=(.7 .7 .8)} Face 39041 9790 9811 20495 {rgb=(.7 .7 .8)} Face 39042 9811 9932 20495 {rgb=(.7 .7 .8)} Face 39043 9932 9885 20495 {rgb=(.7 .7 .8)} Face 39044 9885 9790 20495 {rgb=(.7 .7 .8)} Face 39045 9800 9703 20496 {rgb=(.7 .7 .8)} Face 39046 9703 9852 20496 {rgb=(.7 .7 .8)} Face 39047 9852 9939 20496 {rgb=(.7 .7 .8)} Face 39048 9939 9800 20496 {rgb=(.7 .7 .8)} Face 39049 9466 9514 20497 {rgb=(.7 .7 .8)} Face 39050 9514 9703 20497 {rgb=(.7 .7 .8)} Face 39051 9703 9576 20497 {rgb=(.7 .7 .8)} Face 39052 9576 9466 20497 {rgb=(.7 .7 .8)} Face 39053 5596 5492 20498 {rgb=(.7 .7 .8)} Face 39054 5492 5490 20498 {rgb=(.7 .7 .8)} Face 39055 5490 5741 20498 {rgb=(.7 .7 .8)} Face 39056 5741 5596 20498 {rgb=(.7 .7 .8)} Face 39057 5495 6426 20499 {rgb=(.7 .7 .8)} Face 39058 6426 6711 20499 {rgb=(.7 .7 .8)} Face 39059 6711 5497 20499 {rgb=(.7 .7 .8)} Face 39060 5497 5495 20499 {rgb=(.7 .7 .8)} Face 39061 9436 9304 20500 {rgb=(.7 .7 .8)} Face 39062 9304 9141 20500 {rgb=(.7 .7 .8)} Face 39063 9141 9560 20500 {rgb=(.7 .7 .8)} Face 39064 9560 9436 20500 {rgb=(.7 .7 .8)} Face 39065 7263 8361 20501 {rgb=(.7 .7 .8)} Face 39066 8361 8568 20501 {rgb=(.7 .7 .8)} Face 39067 8568 7476 20501 {rgb=(.7 .7 .8)} Face 39068 7476 7263 20501 {rgb=(.7 .7 .8)} Face 39069 5499 5497 20502 {rgb=(.7 .7 .8)} Face 39070 5497 6711 20502 {rgb=(.7 .7 .8)} Face 39071 6711 6938 20502 {rgb=(.7 .7 .8)} Face 39072 6938 5499 20502 {rgb=(.7 .7 .8)} Face 39073 8489 7217 20503 {rgb=(.7 .7 .8)} Face 39074 7217 7476 20503 {rgb=(.7 .7 .8)} Face 39075 7476 8568 20503 {rgb=(.7 .7 .8)} Face 39076 8568 8489 20503 {rgb=(.7 .7 .8)} Face 39077 5710 6376 20504 {rgb=(.7 .7 .8)} Face 39078 6376 5596 20504 {rgb=(.7 .7 .8)} Face 39079 5596 5741 20504 {rgb=(.7 .7 .8)} Face 39080 5741 5710 20504 {rgb=(.7 .7 .8)} Face 39081 7225 6931 20505 {rgb=(.7 .7 .8)} Face 39082 6931 8804 20505 {rgb=(.7 .7 .8)} Face 39083 8804 8651 20505 {rgb=(.7 .7 .8)} Face 39084 8651 7225 20505 {rgb=(.7 .7 .8)} Face 39085 8804 9592 20506 {rgb=(.7 .7 .8)} Face 39086 9592 9510 20506 {rgb=(.7 .7 .8)} Face 39087 9510 8651 20506 {rgb=(.7 .7 .8)} Face 39088 8651 8804 20506 {rgb=(.7 .7 .8)} Face 39089 9510 9592 20507 {rgb=(.7 .7 .8)} Face 39090 9592 9980 20507 {rgb=(.7 .7 .8)} Face 39091 9980 9871 20507 {rgb=(.7 .7 .8)} Face 39092 9871 9510 20507 {rgb=(.7 .7 .8)} Face 39093 10003 9871 20508 {rgb=(.7 .7 .8)} Face 39094 9871 9980 20508 {rgb=(.7 .7 .8)} Face 39095 9980 10140 20508 {rgb=(.7 .7 .8)} Face 39096 10140 10003 20508 {rgb=(.7 .7 .8)} Face 39097 10066 10210 20509 {rgb=(.7 .7 .8)} Face 39098 10210 10067 20509 {rgb=(.7 .7 .8)} Face 39099 10067 9884 20509 {rgb=(.7 .7 .8)} Face 39100 9884 10066 20509 {rgb=(.7 .7 .8)} Face 39101 9877 9605 20510 {rgb=(.7 .7 .8)} Face 39102 9605 9884 20510 {rgb=(.7 .7 .8)} Face 39103 9884 10014 20510 {rgb=(.7 .7 .8)} Face 39104 10014 9877 20510 {rgb=(.7 .7 .8)} Face 39105 9730 9682 20511 {rgb=(.7 .7 .8)} Face 39106 9682 9481 20511 {rgb=(.7 .7 .8)} Face 39107 9481 9504 20511 {rgb=(.7 .7 .8)} Face 39108 9504 9730 20511 {rgb=(.7 .7 .8)} Face 39109 9294 9464 20512 {rgb=(.7 .7 .8)} Face 39110 9464 9481 20512 {rgb=(.7 .7 .8)} Face 39111 9481 9174 20512 {rgb=(.7 .7 .8)} Face 39112 9174 9294 20512 {rgb=(.7 .7 .8)} Face 39113 5524 7093 20513 {rgb=(.7 .7 .8)} Face 39114 7093 7198 20513 {rgb=(.7 .7 .8)} Face 39115 7198 5522 20513 {rgb=(.7 .7 .8)} Face 39116 5522 5524 20513 {rgb=(.7 .7 .8)} Face 39117 7198 7093 20514 {rgb=(.7 .7 .8)} Face 39118 7093 9345 20514 {rgb=(.7 .7 .8)} Face 39119 9345 9260 20514 {rgb=(.7 .7 .8)} Face 39120 9260 7198 20514 {rgb=(.7 .7 .8)} Face 39121 1063 1163 20515 {rgb=(.7 .7 .8)} Face 39122 1163 1193 20515 {rgb=(.7 .7 .8)} Face 39123 1193 1106 20515 {rgb=(.7 .7 .8)} Face 39124 1106 1063 20515 {rgb=(.7 .7 .8)} Face 39125 1042 1174 20516 {rgb=(.7 .7 .8)} Face 39126 1174 1163 20516 {rgb=(.7 .7 .8)} Face 39127 1163 1063 20516 {rgb=(.7 .7 .8)} Face 39128 1063 1042 20516 {rgb=(.7 .7 .8)} Face 39129 792 679 20517 {rgb=(.7 .7 .8)} Face 39130 679 939 20517 {rgb=(.7 .7 .8)} Face 39131 939 1101 20517 {rgb=(.7 .7 .8)} Face 39132 1101 792 20517 {rgb=(.7 .7 .8)} Face 39133 709 502 20518 {rgb=(.7 .7 .8)} Face 39134 502 679 20518 {rgb=(.7 .7 .8)} Face 39135 679 792 20518 {rgb=(.7 .7 .8)} Face 39136 792 709 20518 {rgb=(.7 .7 .8)} Face 39137 779 631 20519 {rgb=(.7 .7 .8)} Face 39138 631 502 20519 {rgb=(.7 .7 .8)} Face 39139 502 709 20519 {rgb=(.7 .7 .8)} Face 39140 709 779 20519 {rgb=(.7 .7 .8)} Face 39141 905 831 20520 {rgb=(.7 .7 .8)} Face 39142 831 631 20520 {rgb=(.7 .7 .8)} Face 39143 631 779 20520 {rgb=(.7 .7 .8)} Face 39144 779 905 20520 {rgb=(.7 .7 .8)} Face 39145 1042 975 20521 {rgb=(.7 .7 .8)} Face 39146 975 831 20521 {rgb=(.7 .7 .8)} Face 39147 831 905 20521 {rgb=(.7 .7 .8)} Face 39148 905 1042 20521 {rgb=(.7 .7 .8)} Face 39149 3202 3659 20522 {rgb=(.7 .7 .8)} Face 39150 3659 4723 20522 {rgb=(.7 .7 .8)} Face 39151 4723 4196 20522 {rgb=(.7 .7 .8)} Face 39152 4196 3202 20522 {rgb=(.7 .7 .8)} Face 39153 3926 1980 20523 {rgb=(.7 .7 .8)} Face 39154 1980 1679 20523 {rgb=(.7 .7 .8)} Face 39155 1679 2736 20523 {rgb=(.7 .7 .8)} Face 39156 2736 3926 20523 {rgb=(.7 .7 .8)} Face 39157 1012 939 20524 {rgb=(.7 .7 .8)} Face 39158 939 675 20524 {rgb=(.7 .7 .8)} Face 39159 675 862 20524 {rgb=(.7 .7 .8)} Face 39160 862 1012 20524 {rgb=(.7 .7 .8)} Face 39161 936 1070 20525 {rgb=(.7 .7 .8)} Face 39162 1070 1153 20525 {rgb=(.7 .7 .8)} Face 39163 1153 1053 20525 {rgb=(.7 .7 .8)} Face 39164 1053 936 20525 {rgb=(.7 .7 .8)} Face 39165 1465 1679 20526 {rgb=(.7 .7 .8)} Face 39166 1679 1980 20526 {rgb=(.7 .7 .8)} Face 39167 1980 1376 20526 {rgb=(.7 .7 .8)} Face 39168 1376 1465 20526 {rgb=(.7 .7 .8)} Face 39169 1260 944 20527 {rgb=(.7 .7 .8)} Face 39170 944 1101 20527 {rgb=(.7 .7 .8)} Face 39171 1101 1327 20527 {rgb=(.7 .7 .8)} Face 39172 1327 1260 20527 {rgb=(.7 .7 .8)} Face 39173 1376 1345 20528 {rgb=(.7 .7 .8)} Face 39174 1345 1286 20528 {rgb=(.7 .7 .8)} Face 39175 1286 1325 20528 {rgb=(.7 .7 .8)} Face 39176 1325 1376 20528 {rgb=(.7 .7 .8)} Face 39177 1325 1286 20529 {rgb=(.7 .7 .8)} Face 39178 1286 1227 20529 {rgb=(.7 .7 .8)} Face 39179 1227 1260 20529 {rgb=(.7 .7 .8)} Face 39180 1260 1325 20529 {rgb=(.7 .7 .8)} Face 39181 2318 1951 20530 {rgb=(.7 .7 .8)} Face 39182 1951 1741 20530 {rgb=(.7 .7 .8)} Face 39183 1741 2098 20530 {rgb=(.7 .7 .8)} Face 39184 2098 2318 20530 {rgb=(.7 .7 .8)} Face 39185 1486 1499 20531 {rgb=(.7 .7 .8)} Face 39186 1499 1542 20531 {rgb=(.7 .7 .8)} Face 39187 1542 1512 20531 {rgb=(.7 .7 .8)} Face 39188 1512 1486 20531 {rgb=(.7 .7 .8)} Face 39189 1512 1542 20532 {rgb=(.7 .7 .8)} Face 39190 1542 1570 20532 {rgb=(.7 .7 .8)} Face 39191 1570 1539 20532 {rgb=(.7 .7 .8)} Face 39192 1539 1512 20532 {rgb=(.7 .7 .8)} Face 39193 1663 1570 20533 {rgb=(.7 .7 .8)} Face 39194 1570 1542 20533 {rgb=(.7 .7 .8)} Face 39195 1542 1647 20533 {rgb=(.7 .7 .8)} Face 39196 1647 1663 20533 {rgb=(.7 .7 .8)} Face 39197 1647 1542 20534 {rgb=(.7 .7 .8)} Face 39198 1542 1499 20534 {rgb=(.7 .7 .8)} Face 39199 1499 1627 20534 {rgb=(.7 .7 .8)} Face 39200 1627 1647 20534 {rgb=(.7 .7 .8)} Face 39201 1245 1375 20535 {rgb=(.7 .7 .8)} Face 39202 1375 1421 20535 {rgb=(.7 .7 .8)} Face 39203 1421 1259 20535 {rgb=(.7 .7 .8)} Face 39204 1259 1245 20535 {rgb=(.7 .7 .8)} Face 39205 1259 1421 20536 {rgb=(.7 .7 .8)} Face 39206 1421 1377 20536 {rgb=(.7 .7 .8)} Face 39207 1377 1234 20536 {rgb=(.7 .7 .8)} Face 39208 1234 1259 20536 {rgb=(.7 .7 .8)} Face 39209 2686 2481 20537 {rgb=(.7 .7 .8)} Face 39210 2481 2098 20537 {rgb=(.7 .7 .8)} Face 39211 2098 2374 20537 {rgb=(.7 .7 .8)} Face 39212 2374 2686 20537 {rgb=(.7 .7 .8)} Face 39213 2374 2098 20538 {rgb=(.7 .7 .8)} Face 39214 2098 1741 20538 {rgb=(.7 .7 .8)} Face 39215 1741 1904 20538 {rgb=(.7 .7 .8)} Face 39216 1904 2374 20538 {rgb=(.7 .7 .8)} Face 39217 1579 1531 20539 {rgb=(.7 .7 .8)} Face 39218 1531 1580 20539 {rgb=(.7 .7 .8)} Face 39219 1580 1625 20539 {rgb=(.7 .7 .8)} Face 39220 1625 1579 20539 {rgb=(.7 .7 .8)} Face 39221 1625 1580 20540 {rgb=(.7 .7 .8)} Face 39222 1580 1609 20540 {rgb=(.7 .7 .8)} Face 39223 1609 1635 20540 {rgb=(.7 .7 .8)} Face 39224 1635 1625 20540 {rgb=(.7 .7 .8)} Face 39225 2098 2481 20541 {rgb=(.7 .7 .8)} Face 39226 2481 2555 20541 {rgb=(.7 .7 .8)} Face 39227 2555 2318 20541 {rgb=(.7 .7 .8)} Face 39228 2318 2098 20541 {rgb=(.7 .7 .8)} Face 39229 4331 4107 20542 {rgb=(.7 .7 .8)} Face 39230 4107 3860 20542 {rgb=(.7 .7 .8)} Face 39231 3860 4064 20542 {rgb=(.7 .7 .8)} Face 39232 4064 4331 20542 {rgb=(.7 .7 .8)} Face 39233 4064 3860 20543 {rgb=(.7 .7 .8)} Face 39234 3860 3565 20543 {rgb=(.7 .7 .8)} Face 39235 3565 3783 20543 {rgb=(.7 .7 .8)} Face 39236 3783 4064 20543 {rgb=(.7 .7 .8)} Face 39237 4621 4331 20544 {rgb=(.7 .7 .8)} Face 39238 4331 4064 20544 {rgb=(.7 .7 .8)} Face 39239 4064 4277 20544 {rgb=(.7 .7 .8)} Face 39240 4277 4621 20544 {rgb=(.7 .7 .8)} Face 39241 4277 4064 20545 {rgb=(.7 .7 .8)} Face 39242 4064 3783 20545 {rgb=(.7 .7 .8)} Face 39243 3783 4014 20545 {rgb=(.7 .7 .8)} Face 39244 4014 4277 20545 {rgb=(.7 .7 .8)} Face 39245 4780 4621 20546 {rgb=(.7 .7 .8)} Face 39246 4621 4277 20546 {rgb=(.7 .7 .8)} Face 39247 4277 4426 20546 {rgb=(.7 .7 .8)} Face 39248 4426 4780 20546 {rgb=(.7 .7 .8)} Face 39249 4426 4277 20547 {rgb=(.7 .7 .8)} Face 39250 4277 4014 20547 {rgb=(.7 .7 .8)} Face 39251 4014 4200 20547 {rgb=(.7 .7 .8)} Face 39252 4200 4426 20547 {rgb=(.7 .7 .8)} Face 39253 4336 3918 20548 {rgb=(.7 .7 .8)} Face 39254 3918 3699 20548 {rgb=(.7 .7 .8)} Face 39255 3699 4281 20548 {rgb=(.7 .7 .8)} Face 39256 4281 4336 20548 {rgb=(.7 .7 .8)} Face 39257 4281 3699 20549 {rgb=(.7 .7 .8)} Face 39258 3699 3501 20549 {rgb=(.7 .7 .8)} Face 39259 3501 3819 20549 {rgb=(.7 .7 .8)} Face 39260 3819 4281 20549 {rgb=(.7 .7 .8)} Face 39261 3286 2686 20550 {rgb=(.7 .7 .8)} Face 39262 2686 2374 20550 {rgb=(.7 .7 .8)} Face 39263 2374 2950 20550 {rgb=(.7 .7 .8)} Face 39264 2950 3286 20550 {rgb=(.7 .7 .8)} Face 39265 2950 2374 20551 {rgb=(.7 .7 .8)} Face 39266 2374 2291 20551 {rgb=(.7 .7 .8)} Face 39267 2291 2740 20551 {rgb=(.7 .7 .8)} Face 39268 2740 2950 20551 {rgb=(.7 .7 .8)} Face 39269 3918 3286 20552 {rgb=(.7 .7 .8)} Face 39270 3286 2950 20552 {rgb=(.7 .7 .8)} Face 39271 2950 3699 20552 {rgb=(.7 .7 .8)} Face 39272 3699 3918 20552 {rgb=(.7 .7 .8)} Face 39273 3699 2950 20553 {rgb=(.7 .7 .8)} Face 39274 2950 2740 20553 {rgb=(.7 .7 .8)} Face 39275 2740 3501 20553 {rgb=(.7 .7 .8)} Face 39276 3501 3699 20553 {rgb=(.7 .7 .8)} Face 39277 3286 4014 20554 {rgb=(.7 .7 .8)} Face 39278 4014 3783 20554 {rgb=(.7 .7 .8)} Face 39279 3783 2686 20554 {rgb=(.7 .7 .8)} Face 39280 2686 3286 20554 {rgb=(.7 .7 .8)} Face 39281 3918 4200 20555 {rgb=(.7 .7 .8)} Face 39282 4200 4014 20555 {rgb=(.7 .7 .8)} Face 39283 4014 3286 20555 {rgb=(.7 .7 .8)} Face 39284 3286 3918 20555 {rgb=(.7 .7 .8)} Face 39285 4336 4398 20556 {rgb=(.7 .7 .8)} Face 39286 4398 4200 20556 {rgb=(.7 .7 .8)} Face 39287 4200 3918 20556 {rgb=(.7 .7 .8)} Face 39288 3918 4336 20556 {rgb=(.7 .7 .8)} Face 39289 5299 5324 20557 {rgb=(.7 .7 .8)} Face 39290 5324 5126 20557 {rgb=(.7 .7 .8)} Face 39291 5126 5006 20557 {rgb=(.7 .7 .8)} Face 39292 5006 5299 20557 {rgb=(.7 .7 .8)} Face 39293 5006 5126 20558 {rgb=(.7 .7 .8)} Face 39294 5126 5284 20558 {rgb=(.7 .7 .8)} Face 39295 5284 5156 20558 {rgb=(.7 .7 .8)} Face 39296 5156 5006 20558 {rgb=(.7 .7 .8)} Face 39297 5308 5284 20559 {rgb=(.7 .7 .8)} Face 39298 5284 5126 20559 {rgb=(.7 .7 .8)} Face 39299 5126 5139 20559 {rgb=(.7 .7 .8)} Face 39300 5139 5308 20559 {rgb=(.7 .7 .8)} Face 39301 5139 5126 20560 {rgb=(.7 .7 .8)} Face 39302 5126 5324 20560 {rgb=(.7 .7 .8)} Face 39303 5324 5317 20560 {rgb=(.7 .7 .8)} Face 39304 5317 5139 20560 {rgb=(.7 .7 .8)} Face 39305 5317 5215 20561 {rgb=(.7 .7 .8)} Face 39306 5215 5052 20561 {rgb=(.7 .7 .8)} Face 39307 5052 5139 20561 {rgb=(.7 .7 .8)} Face 39308 5139 5317 20561 {rgb=(.7 .7 .8)} Face 39309 5139 5052 20562 {rgb=(.7 .7 .8)} Face 39310 5052 5230 20562 {rgb=(.7 .7 .8)} Face 39311 5230 5308 20562 {rgb=(.7 .7 .8)} Face 39312 5308 5139 20562 {rgb=(.7 .7 .8)} Face 39313 4686 5230 20563 {rgb=(.7 .7 .8)} Face 39314 5230 5052 20563 {rgb=(.7 .7 .8)} Face 39315 5052 4453 20563 {rgb=(.7 .7 .8)} Face 39316 4453 4686 20563 {rgb=(.7 .7 .8)} Face 39317 4453 5052 20564 {rgb=(.7 .7 .8)} Face 39318 5052 5215 20564 {rgb=(.7 .7 .8)} Face 39319 5215 4723 20564 {rgb=(.7 .7 .8)} Face 39320 4723 4453 20564 {rgb=(.7 .7 .8)} Face 39321 2683 2514 20565 {rgb=(.7 .7 .8)} Face 39322 2514 2020 20565 {rgb=(.7 .7 .8)} Face 39323 2020 2267 20565 {rgb=(.7 .7 .8)} Face 39324 2267 2683 20565 {rgb=(.7 .7 .8)} Face 39325 2267 2020 20566 {rgb=(.7 .7 .8)} Face 39326 2020 1781 20566 {rgb=(.7 .7 .8)} Face 39327 1781 2066 20566 {rgb=(.7 .7 .8)} Face 39328 2066 2267 20566 {rgb=(.7 .7 .8)} Face 39329 2514 2179 20567 {rgb=(.7 .7 .8)} Face 39330 2179 1755 20567 {rgb=(.7 .7 .8)} Face 39331 1755 2020 20567 {rgb=(.7 .7 .8)} Face 39332 2020 2514 20567 {rgb=(.7 .7 .8)} Face 39333 2020 1755 20568 {rgb=(.7 .7 .8)} Face 39334 1755 1704 20568 {rgb=(.7 .7 .8)} Face 39335 1704 1781 20568 {rgb=(.7 .7 .8)} Face 39336 1781 2020 20568 {rgb=(.7 .7 .8)} Face 39337 979 835 20569 {rgb=(.7 .7 .8)} Face 39338 835 847 20569 {rgb=(.7 .7 .8)} Face 39339 847 996 20569 {rgb=(.7 .7 .8)} Face 39340 996 979 20569 {rgb=(.7 .7 .8)} Face 39341 996 847 20570 {rgb=(.7 .7 .8)} Face 39342 847 831 20570 {rgb=(.7 .7 .8)} Face 39343 831 975 20570 {rgb=(.7 .7 .8)} Face 39344 975 996 20570 {rgb=(.7 .7 .8)} Face 39345 631 831 20571 {rgb=(.7 .7 .8)} Face 39346 831 847 20571 {rgb=(.7 .7 .8)} Face 39347 847 668 20571 {rgb=(.7 .7 .8)} Face 39348 668 631 20571 {rgb=(.7 .7 .8)} Face 39349 668 847 20572 {rgb=(.7 .7 .8)} Face 39350 847 835 20572 {rgb=(.7 .7 .8)} Face 39351 835 637 20572 {rgb=(.7 .7 .8)} Face 39352 637 668 20572 {rgb=(.7 .7 .8)} Face 39353 637 485 20573 {rgb=(.7 .7 .8)} Face 39354 485 547 20573 {rgb=(.7 .7 .8)} Face 39355 547 668 20573 {rgb=(.7 .7 .8)} Face 39356 668 637 20573 {rgb=(.7 .7 .8)} Face 39357 668 547 20574 {rgb=(.7 .7 .8)} Face 39358 547 502 20574 {rgb=(.7 .7 .8)} Face 39359 502 631 20574 {rgb=(.7 .7 .8)} Face 39360 631 668 20574 {rgb=(.7 .7 .8)} Face 39361 679 502 20575 {rgb=(.7 .7 .8)} Face 39362 502 547 20575 {rgb=(.7 .7 .8)} Face 39363 547 708 20575 {rgb=(.7 .7 .8)} Face 39364 708 679 20575 {rgb=(.7 .7 .8)} Face 39365 708 547 20576 {rgb=(.7 .7 .8)} Face 39366 547 485 20576 {rgb=(.7 .7 .8)} Face 39367 485 675 20576 {rgb=(.7 .7 .8)} Face 39368 675 708 20576 {rgb=(.7 .7 .8)} Face 39369 859 978 20577 {rgb=(.7 .7 .8)} Face 39370 978 1030 20577 {rgb=(.7 .7 .8)} Face 39371 1030 912 20577 {rgb=(.7 .7 .8)} Face 39372 912 859 20577 {rgb=(.7 .7 .8)} Face 39373 912 1030 20578 {rgb=(.7 .7 .8)} Face 39374 1030 1031 20578 {rgb=(.7 .7 .8)} Face 39375 1031 923 20578 {rgb=(.7 .7 .8)} Face 39376 923 912 20578 {rgb=(.7 .7 .8)} Face 39377 923 876 20579 {rgb=(.7 .7 .8)} Face 39378 876 853 20579 {rgb=(.7 .7 .8)} Face 39379 853 912 20579 {rgb=(.7 .7 .8)} Face 39380 912 923 20579 {rgb=(.7 .7 .8)} Face 39381 912 853 20580 {rgb=(.7 .7 .8)} Face 39382 853 794 20580 {rgb=(.7 .7 .8)} Face 39383 794 859 20580 {rgb=(.7 .7 .8)} Face 39384 859 912 20580 {rgb=(.7 .7 .8)} Face 39385 862 794 20581 {rgb=(.7 .7 .8)} Face 39386 794 853 20581 {rgb=(.7 .7 .8)} Face 39387 853 921 20581 {rgb=(.7 .7 .8)} Face 39388 921 862 20581 {rgb=(.7 .7 .8)} Face 39389 921 853 20582 {rgb=(.7 .7 .8)} Face 39390 853 876 20582 {rgb=(.7 .7 .8)} Face 39391 876 936 20582 {rgb=(.7 .7 .8)} Face 39392 936 921 20582 {rgb=(.7 .7 .8)} Face 39393 1216 1232 20583 {rgb=(.7 .7 .8)} Face 39394 1232 1258 20583 {rgb=(.7 .7 .8)} Face 39395 1258 1269 20583 {rgb=(.7 .7 .8)} Face 39396 1269 1216 20583 {rgb=(.7 .7 .8)} Face 39397 1225 1237 20584 {rgb=(.7 .7 .8)} Face 39398 1237 1232 20584 {rgb=(.7 .7 .8)} Face 39399 1232 1216 20584 {rgb=(.7 .7 .8)} Face 39400 1216 1225 20584 {rgb=(.7 .7 .8)} Face 39401 1222 1236 20585 {rgb=(.7 .7 .8)} Face 39402 1236 1237 20585 {rgb=(.7 .7 .8)} Face 39403 1237 1225 20585 {rgb=(.7 .7 .8)} Face 39404 1225 1222 20585 {rgb=(.7 .7 .8)} Face 39405 3821 3724 20586 {rgb=(.7 .7 .8)} Face 39406 3724 5520 20586 {rgb=(.7 .7 .8)} Face 39407 5520 5523 20586 {rgb=(.7 .7 .8)} Face 39408 5523 3821 20586 {rgb=(.7 .7 .8)} Face 39409 3650 3640 20587 {rgb=(.7 .7 .8)} Face 39410 3640 3724 20587 {rgb=(.7 .7 .8)} Face 39411 3724 3821 20587 {rgb=(.7 .7 .8)} Face 39412 3821 3650 20587 {rgb=(.7 .7 .8)} Face 39413 3495 3554 20588 {rgb=(.7 .7 .8)} Face 39414 3554 3640 20588 {rgb=(.7 .7 .8)} Face 39415 3640 3650 20588 {rgb=(.7 .7 .8)} Face 39416 3650 3495 20588 {rgb=(.7 .7 .8)} Face 39417 1751 1703 20589 {rgb=(.7 .7 .8)} Face 39418 1703 3554 20589 {rgb=(.7 .7 .8)} Face 39419 3554 3495 20589 {rgb=(.7 .7 .8)} Face 39420 3495 1751 20589 {rgb=(.7 .7 .8)} Face 39421 1581 1592 20590 {rgb=(.7 .7 .8)} Face 39422 1592 1703 20590 {rgb=(.7 .7 .8)} Face 39423 1703 1751 20590 {rgb=(.7 .7 .8)} Face 39424 1751 1581 20590 {rgb=(.7 .7 .8)} Face 39425 1558 1555 20591 {rgb=(.7 .7 .8)} Face 39426 1555 1592 20591 {rgb=(.7 .7 .8)} Face 39427 1592 1581 20591 {rgb=(.7 .7 .8)} Face 39428 1581 1558 20591 {rgb=(.7 .7 .8)} Face 39429 1541 1516 20592 {rgb=(.7 .7 .8)} Face 39430 1516 1555 20592 {rgb=(.7 .7 .8)} Face 39431 1555 1558 20592 {rgb=(.7 .7 .8)} Face 39432 1558 1541 20592 {rgb=(.7 .7 .8)} Face 39433 1315 1261 20593 {rgb=(.7 .7 .8)} Face 39434 1261 1516 20593 {rgb=(.7 .7 .8)} Face 39435 1516 1541 20593 {rgb=(.7 .7 .8)} Face 39436 1541 1315 20593 {rgb=(.7 .7 .8)} Face 39437 1222 1195 20594 {rgb=(.7 .7 .8)} Face 39438 1195 1261 20594 {rgb=(.7 .7 .8)} Face 39439 1261 1315 20594 {rgb=(.7 .7 .8)} Face 39440 1315 1222 20594 {rgb=(.7 .7 .8)} Face 39441 1293 1262 20595 {rgb=(.7 .7 .8)} Face 39442 1262 1287 20595 {rgb=(.7 .7 .8)} Face 39443 1287 1269 20595 {rgb=(.7 .7 .8)} Face 39444 1269 1293 20595 {rgb=(.7 .7 .8)} Face 39445 1319 1275 20596 {rgb=(.7 .7 .8)} Face 39446 1275 1262 20596 {rgb=(.7 .7 .8)} Face 39447 1262 1293 20596 {rgb=(.7 .7 .8)} Face 39448 1293 1319 20596 {rgb=(.7 .7 .8)} Face 39449 1335 1272 20597 {rgb=(.7 .7 .8)} Face 39450 1272 1275 20597 {rgb=(.7 .7 .8)} Face 39451 1275 1319 20597 {rgb=(.7 .7 .8)} Face 39452 1319 1335 20597 {rgb=(.7 .7 .8)} Face 39453 1505 1506 20598 {rgb=(.7 .7 .8)} Face 39454 1506 1272 20598 {rgb=(.7 .7 .8)} Face 39455 1272 1335 20598 {rgb=(.7 .7 .8)} Face 39456 1335 1505 20598 {rgb=(.7 .7 .8)} Face 39457 1698 1697 20599 {rgb=(.7 .7 .8)} Face 39458 1697 1506 20599 {rgb=(.7 .7 .8)} Face 39459 1506 1538 20599 {rgb=(.7 .7 .8)} Face 39460 1538 1698 20599 {rgb=(.7 .7 .8)} Face 39461 1777 2058 20600 {rgb=(.7 .7 .8)} Face 39462 2058 1697 20600 {rgb=(.7 .7 .8)} Face 39463 1697 1698 20600 {rgb=(.7 .7 .8)} Face 39464 1698 1777 20600 {rgb=(.7 .7 .8)} Face 39465 1785 2102 20601 {rgb=(.7 .7 .8)} Face 39466 2102 2058 20601 {rgb=(.7 .7 .8)} Face 39467 2058 1777 20601 {rgb=(.7 .7 .8)} Face 39468 1777 1785 20601 {rgb=(.7 .7 .8)} Face 39469 3845 3706 20602 {rgb=(.7 .7 .8)} Face 39470 3706 2102 20602 {rgb=(.7 .7 .8)} Face 39471 2102 1785 20602 {rgb=(.7 .7 .8)} Face 39472 1785 3845 20602 {rgb=(.7 .7 .8)} Face 39473 5522 5521 20603 {rgb=(.7 .7 .8)} Face 39474 5521 3706 20603 {rgb=(.7 .7 .8)} Face 39475 3706 3845 20603 {rgb=(.7 .7 .8)} Face 39476 3845 5522 20603 {rgb=(.7 .7 .8)} Face 39477 3606 3495 20604 {rgb=(.7 .7 .8)} Face 39478 3495 3650 20604 {rgb=(.7 .7 .8)} Face 39479 3650 3764 20604 {rgb=(.7 .7 .8)} Face 39480 3764 3606 20604 {rgb=(.7 .7 .8)} Face 39481 3764 3650 20605 {rgb=(.7 .7 .8)} Face 39482 3650 3821 20605 {rgb=(.7 .7 .8)} Face 39483 3821 3948 20605 {rgb=(.7 .7 .8)} Face 39484 3948 3764 20605 {rgb=(.7 .7 .8)} Face 39485 1369 1335 20606 {rgb=(.7 .7 .8)} Face 39486 1335 1319 20606 {rgb=(.7 .7 .8)} Face 39487 1319 1351 20606 {rgb=(.7 .7 .8)} Face 39488 1351 1369 20606 {rgb=(.7 .7 .8)} Face 39489 1351 1319 20607 {rgb=(.7 .7 .8)} Face 39490 1319 1293 20607 {rgb=(.7 .7 .8)} Face 39491 1293 1338 20607 {rgb=(.7 .7 .8)} Face 39492 1338 1351 20607 {rgb=(.7 .7 .8)} Face 39493 1528 1549 20608 {rgb=(.7 .7 .8)} Face 39494 1549 1523 20608 {rgb=(.7 .7 .8)} Face 39495 1523 1505 20608 {rgb=(.7 .7 .8)} Face 39496 1505 1528 20608 {rgb=(.7 .7 .8)} Face 39497 1549 1572 20609 {rgb=(.7 .7 .8)} Face 39498 1572 1538 20609 {rgb=(.7 .7 .8)} Face 39499 1538 1523 20609 {rgb=(.7 .7 .8)} Face 39500 1523 1549 20609 {rgb=(.7 .7 .8)} Face 39501 3948 3821 20610 {rgb=(.7 .7 .8)} Face 39502 3821 5523 20610 {rgb=(.7 .7 .8)} Face 39503 5523 5526 20610 {rgb=(.7 .7 .8)} Face 39504 5526 3948 20610 {rgb=(.7 .7 .8)} Face 39505 1871 1751 20611 {rgb=(.7 .7 .8)} Face 39506 1751 3495 20611 {rgb=(.7 .7 .8)} Face 39507 3495 3606 20611 {rgb=(.7 .7 .8)} Face 39508 3606 1871 20611 {rgb=(.7 .7 .8)} Face 39509 1236 1222 20612 {rgb=(.7 .7 .8)} Face 39510 1222 1315 20612 {rgb=(.7 .7 .8)} Face 39511 1315 1324 20612 {rgb=(.7 .7 .8)} Face 39512 1324 1236 20612 {rgb=(.7 .7 .8)} Face 39513 1269 1265 20613 {rgb=(.7 .7 .8)} Face 39514 1265 1195 20613 {rgb=(.7 .7 .8)} Face 39515 1195 1216 20613 {rgb=(.7 .7 .8)} Face 39516 1216 1269 20613 {rgb=(.7 .7 .8)} Face 39517 1338 1293 20614 {rgb=(.7 .7 .8)} Face 39518 1293 1269 20614 {rgb=(.7 .7 .8)} Face 39519 1269 1258 20614 {rgb=(.7 .7 .8)} Face 39520 1258 1338 20614 {rgb=(.7 .7 .8)} Face 39521 1528 1505 20615 {rgb=(.7 .7 .8)} Face 39522 1505 1335 20615 {rgb=(.7 .7 .8)} Face 39523 1335 1369 20615 {rgb=(.7 .7 .8)} Face 39524 1369 1528 20615 {rgb=(.7 .7 .8)} Face 39525 1700 1698 20616 {rgb=(.7 .7 .8)} Face 39526 1698 1538 20616 {rgb=(.7 .7 .8)} Face 39527 1538 1572 20616 {rgb=(.7 .7 .8)} Face 39528 1572 1700 20616 {rgb=(.7 .7 .8)} Face 39529 1330 1451 20617 {rgb=(.7 .7 .8)} Face 39530 1451 1361 20617 {rgb=(.7 .7 .8)} Face 39531 1361 1277 20617 {rgb=(.7 .7 .8)} Face 39532 1277 1330 20617 {rgb=(.7 .7 .8)} Face 39533 3759 3827 20618 {rgb=(.7 .7 .8)} Face 39534 3827 5513 20618 {rgb=(.7 .7 .8)} Face 39535 5513 5517 20618 {rgb=(.7 .7 .8)} Face 39536 5517 3759 20618 {rgb=(.7 .7 .8)} Face 39537 1814 2354 20619 {rgb=(.7 .7 .8)} Face 39538 2354 3827 20619 {rgb=(.7 .7 .8)} Face 39539 3827 3759 20619 {rgb=(.7 .7 .8)} Face 39540 3759 1814 20619 {rgb=(.7 .7 .8)} Face 39541 1575 1605 20620 {rgb=(.7 .7 .8)} Face 39542 1605 2354 20620 {rgb=(.7 .7 .8)} Face 39543 2354 1814 20620 {rgb=(.7 .7 .8)} Face 39544 1814 1575 20620 {rgb=(.7 .7 .8)} Face 39545 1339 1469 20621 {rgb=(.7 .7 .8)} Face 39546 1469 1605 20621 {rgb=(.7 .7 .8)} Face 39547 1605 1537 20621 {rgb=(.7 .7 .8)} Face 39548 1537 1339 20621 {rgb=(.7 .7 .8)} Face 39549 1246 1361 20622 {rgb=(.7 .7 .8)} Face 39550 1361 1469 20622 {rgb=(.7 .7 .8)} Face 39551 1469 1339 20622 {rgb=(.7 .7 .8)} Face 39552 1339 1246 20622 {rgb=(.7 .7 .8)} Face 39553 1571 1645 20623 {rgb=(.7 .7 .8)} Face 39554 1645 1451 20623 {rgb=(.7 .7 .8)} Face 39555 1451 1330 20623 {rgb=(.7 .7 .8)} Face 39556 1330 1571 20623 {rgb=(.7 .7 .8)} Face 39557 1772 2429 20624 {rgb=(.7 .7 .8)} Face 39558 2429 1645 20624 {rgb=(.7 .7 .8)} Face 39559 1645 1571 20624 {rgb=(.7 .7 .8)} Face 39560 1571 1772 20624 {rgb=(.7 .7 .8)} Face 39561 3692 3814 20625 {rgb=(.7 .7 .8)} Face 39562 3814 2429 20625 {rgb=(.7 .7 .8)} Face 39563 2429 2385 20625 {rgb=(.7 .7 .8)} Face 39564 2385 3692 20625 {rgb=(.7 .7 .8)} Face 39565 5516 5514 20626 {rgb=(.7 .7 .8)} Face 39566 5514 3814 20626 {rgb=(.7 .7 .8)} Face 39567 3814 3692 20626 {rgb=(.7 .7 .8)} Face 39568 3692 5516 20626 {rgb=(.7 .7 .8)} Face 39569 1548 1554 20627 {rgb=(.7 .7 .8)} Face 39570 1554 1515 20627 {rgb=(.7 .7 .8)} Face 39571 1515 1537 20627 {rgb=(.7 .7 .8)} Face 39572 1537 1548 20627 {rgb=(.7 .7 .8)} Face 39573 1554 1548 20628 {rgb=(.7 .7 .8)} Face 39574 1548 1575 20628 {rgb=(.7 .7 .8)} Face 39575 1575 1591 20628 {rgb=(.7 .7 .8)} Face 39576 1591 1554 20628 {rgb=(.7 .7 .8)} Face 39577 1368 1343 20629 {rgb=(.7 .7 .8)} Face 39578 1343 1317 20629 {rgb=(.7 .7 .8)} Face 39579 1317 1277 20629 {rgb=(.7 .7 .8)} Face 39580 1277 1368 20629 {rgb=(.7 .7 .8)} Face 39581 1343 1368 20630 {rgb=(.7 .7 .8)} Face 39582 1368 1246 20630 {rgb=(.7 .7 .8)} Face 39583 1246 1295 20630 {rgb=(.7 .7 .8)} Face 39584 1295 1343 20630 {rgb=(.7 .7 .8)} Face 39585 2420 1772 20631 {rgb=(.7 .7 .8)} Face 39586 1772 1743 20631 {rgb=(.7 .7 .8)} Face 39587 1743 2167 20631 {rgb=(.7 .7 .8)} Face 39588 2167 2420 20631 {rgb=(.7 .7 .8)} Face 39589 2167 2333 20632 {rgb=(.7 .7 .8)} Face 39590 2333 2385 20632 {rgb=(.7 .7 .8)} Face 39591 2385 2420 20632 {rgb=(.7 .7 .8)} Face 39592 2420 2167 20632 {rgb=(.7 .7 .8)} Face 39593 2102 2333 20633 {rgb=(.7 .7 .8)} Face 39594 2333 2167 20633 {rgb=(.7 .7 .8)} Face 39595 2167 2058 20633 {rgb=(.7 .7 .8)} Face 39596 2058 2102 20633 {rgb=(.7 .7 .8)} Face 39597 2058 2167 20634 {rgb=(.7 .7 .8)} Face 39598 2167 1743 20634 {rgb=(.7 .7 .8)} Face 39599 1743 1697 20634 {rgb=(.7 .7 .8)} Face 39600 1697 2058 20634 {rgb=(.7 .7 .8)} Face 39601 1287 1317 20635 {rgb=(.7 .7 .8)} Face 39602 1317 1343 20635 {rgb=(.7 .7 .8)} Face 39603 1343 1320 20635 {rgb=(.7 .7 .8)} Face 39604 1320 1287 20635 {rgb=(.7 .7 .8)} Face 39605 1320 1343 20636 {rgb=(.7 .7 .8)} Face 39606 1343 1295 20636 {rgb=(.7 .7 .8)} Face 39607 1295 1265 20636 {rgb=(.7 .7 .8)} Face 39608 1265 1320 20636 {rgb=(.7 .7 .8)} Face 39609 1516 1515 20637 {rgb=(.7 .7 .8)} Face 39610 1515 1554 20637 {rgb=(.7 .7 .8)} Face 39611 1554 1555 20637 {rgb=(.7 .7 .8)} Face 39612 1555 1516 20637 {rgb=(.7 .7 .8)} Face 39613 1555 1554 20638 {rgb=(.7 .7 .8)} Face 39614 1554 1591 20638 {rgb=(.7 .7 .8)} Face 39615 1591 1592 20638 {rgb=(.7 .7 .8)} Face 39616 1592 1555 20638 {rgb=(.7 .7 .8)} Face 39617 3661 3706 20639 {rgb=(.7 .7 .8)} Face 39618 3706 5521 20639 {rgb=(.7 .7 .8)} Face 39619 5521 5518 20639 {rgb=(.7 .7 .8)} Face 39620 5518 3661 20639 {rgb=(.7 .7 .8)} Face 39621 2333 2102 20640 {rgb=(.7 .7 .8)} Face 39622 2102 3706 20640 {rgb=(.7 .7 .8)} Face 39623 3706 3661 20640 {rgb=(.7 .7 .8)} Face 39624 3661 2333 20640 {rgb=(.7 .7 .8)} Face 39625 1529 1506 20641 {rgb=(.7 .7 .8)} Face 39626 1506 1697 20641 {rgb=(.7 .7 .8)} Face 39627 1697 1743 20641 {rgb=(.7 .7 .8)} Face 39628 1743 1529 20641 {rgb=(.7 .7 .8)} Face 39629 1284 1272 20642 {rgb=(.7 .7 .8)} Face 39630 1272 1506 20642 {rgb=(.7 .7 .8)} Face 39631 1506 1529 20642 {rgb=(.7 .7 .8)} Face 39632 1529 1284 20642 {rgb=(.7 .7 .8)} Face 39633 1317 1287 20643 {rgb=(.7 .7 .8)} Face 39634 1287 1262 20643 {rgb=(.7 .7 .8)} Face 39635 1262 1284 20643 {rgb=(.7 .7 .8)} Face 39636 1284 1317 20643 {rgb=(.7 .7 .8)} Face 39637 1205 1195 20644 {rgb=(.7 .7 .8)} Face 39638 1195 1265 20644 {rgb=(.7 .7 .8)} Face 39639 1265 1295 20644 {rgb=(.7 .7 .8)} Face 39640 1295 1205 20644 {rgb=(.7 .7 .8)} Face 39641 1274 1261 20645 {rgb=(.7 .7 .8)} Face 39642 1261 1195 20645 {rgb=(.7 .7 .8)} Face 39643 1195 1205 20645 {rgb=(.7 .7 .8)} Face 39644 1205 1274 20645 {rgb=(.7 .7 .8)} Face 39645 1515 1516 20646 {rgb=(.7 .7 .8)} Face 39646 1516 1261 20646 {rgb=(.7 .7 .8)} Face 39647 1261 1274 20646 {rgb=(.7 .7 .8)} Face 39648 1274 1515 20646 {rgb=(.7 .7 .8)} Face 39649 5519 5520 20647 {rgb=(.7 .7 .8)} Face 39650 5520 3724 20647 {rgb=(.7 .7 .8)} Face 39651 3724 3752 20647 {rgb=(.7 .7 .8)} Face 39652 3752 5519 20647 {rgb=(.7 .7 .8)} Face 39653 3752 3554 20648 {rgb=(.7 .7 .8)} Face 39654 3554 1703 20648 {rgb=(.7 .7 .8)} Face 39655 1703 1720 20648 {rgb=(.7 .7 .8)} Face 39656 1720 3752 20648 {rgb=(.7 .7 .8)} Face 39657 1720 1703 20649 {rgb=(.7 .7 .8)} Face 39658 1703 1592 20649 {rgb=(.7 .7 .8)} Face 39659 1592 1591 20649 {rgb=(.7 .7 .8)} Face 39660 1591 1720 20649 {rgb=(.7 .7 .8)} Face 39661 1284 1330 20650 {rgb=(.7 .7 .8)} Face 39662 1330 1277 20650 {rgb=(.7 .7 .8)} Face 39663 1277 1317 20650 {rgb=(.7 .7 .8)} Face 39664 1317 1284 20650 {rgb=(.7 .7 .8)} Face 39665 1529 1743 20651 {rgb=(.7 .7 .8)} Face 39666 1743 1772 20651 {rgb=(.7 .7 .8)} Face 39667 1772 1571 20651 {rgb=(.7 .7 .8)} Face 39668 1571 1529 20651 {rgb=(.7 .7 .8)} Face 39669 3692 3661 20652 {rgb=(.7 .7 .8)} Face 39670 3661 5518 20652 {rgb=(.7 .7 .8)} Face 39671 5518 5516 20652 {rgb=(.7 .7 .8)} Face 39672 5516 3692 20652 {rgb=(.7 .7 .8)} Face 39673 1339 1274 20653 {rgb=(.7 .7 .8)} Face 39674 1274 1205 20653 {rgb=(.7 .7 .8)} Face 39675 1205 1246 20653 {rgb=(.7 .7 .8)} Face 39676 1246 1339 20653 {rgb=(.7 .7 .8)} Face 39677 1339 1537 20654 {rgb=(.7 .7 .8)} Face 39678 1537 1515 20654 {rgb=(.7 .7 .8)} Face 39679 1515 1274 20654 {rgb=(.7 .7 .8)} Face 39680 1274 1339 20654 {rgb=(.7 .7 .8)} Face 39681 1720 1591 20655 {rgb=(.7 .7 .8)} Face 39682 1591 1575 20655 {rgb=(.7 .7 .8)} Face 39683 1575 1814 20655 {rgb=(.7 .7 .8)} Face 39684 1814 1720 20655 {rgb=(.7 .7 .8)} Face 39685 1330 1284 20656 {rgb=(.7 .7 .8)} Face 39686 1284 1529 20656 {rgb=(.7 .7 .8)} Face 39687 1529 1571 20656 {rgb=(.7 .7 .8)} Face 39688 1571 1330 20656 {rgb=(.7 .7 .8)} Face 39689 5517 5519 20657 {rgb=(.7 .7 .8)} Face 39690 5519 3752 20657 {rgb=(.7 .7 .8)} Face 39691 3752 3759 20657 {rgb=(.7 .7 .8)} Face 39692 3759 5517 20657 {rgb=(.7 .7 .8)} Face 39693 2385 2333 20658 {rgb=(.7 .7 .8)} Face 39694 2333 3661 20658 {rgb=(.7 .7 .8)} Face 39695 3661 3692 20658 {rgb=(.7 .7 .8)} Face 39696 3692 2385 20658 {rgb=(.7 .7 .8)} Face 39697 3759 3752 20659 {rgb=(.7 .7 .8)} Face 39698 3752 1720 20659 {rgb=(.7 .7 .8)} Face 39699 1720 1814 20659 {rgb=(.7 .7 .8)} Face 39700 1814 3759 20659 {rgb=(.7 .7 .8)} Face 39701 908 1227 20660 {rgb=(.7 .7 .8)} Face 39702 1227 1334 20660 {rgb=(.7 .7 .8)} Face 39703 1334 950 20660 {rgb=(.7 .7 .8)} Face 39704 950 908 20660 {rgb=(.7 .7 .8)} Face 39705 709 908 20661 {rgb=(.7 .7 .8)} Face 39706 908 950 20661 {rgb=(.7 .7 .8)} Face 39707 950 779 20661 {rgb=(.7 .7 .8)} Face 39708 779 709 20661 {rgb=(.7 .7 .8)} Face 39709 794 485 20662 {rgb=(.7 .7 .8)} Face 39710 485 637 20662 {rgb=(.7 .7 .8)} Face 39711 637 859 20662 {rgb=(.7 .7 .8)} Face 39712 859 794 20662 {rgb=(.7 .7 .8)} Face 39713 1024 876 20663 {rgb=(.7 .7 .8)} Face 39714 876 923 20663 {rgb=(.7 .7 .8)} Face 39715 923 1078 20663 {rgb=(.7 .7 .8)} Face 39716 1078 1024 20663 {rgb=(.7 .7 .8)} Face 39717 1356 1024 20664 {rgb=(.7 .7 .8)} Face 39718 1024 1078 20664 {rgb=(.7 .7 .8)} Face 39719 1078 1426 20664 {rgb=(.7 .7 .8)} Face 39720 1426 1356 20664 {rgb=(.7 .7 .8)} Face 39721 1781 1356 20665 {rgb=(.7 .7 .8)} Face 39722 1356 1426 20665 {rgb=(.7 .7 .8)} Face 39723 1426 2066 20665 {rgb=(.7 .7 .8)} Face 39724 2066 1781 20665 {rgb=(.7 .7 .8)} Face 39725 4474 2514 20666 {rgb=(.7 .7 .8)} Face 39726 2514 2683 20666 {rgb=(.7 .7 .8)} Face 39727 2683 4597 20666 {rgb=(.7 .7 .8)} Face 39728 4597 4474 20666 {rgb=(.7 .7 .8)} Face 39729 5230 4474 20667 {rgb=(.7 .7 .8)} Face 39730 4474 4597 20667 {rgb=(.7 .7 .8)} Face 39731 4597 5308 20667 {rgb=(.7 .7 .8)} Face 39732 5308 5230 20667 {rgb=(.7 .7 .8)} Face 39733 5215 5317 20668 {rgb=(.7 .7 .8)} Face 39734 5317 4626 20668 {rgb=(.7 .7 .8)} Face 39735 4626 4338 20668 {rgb=(.7 .7 .8)} Face 39736 4338 5215 20668 {rgb=(.7 .7 .8)} Face 39737 2000 4338 20669 {rgb=(.7 .7 .8)} Face 39738 4338 4626 20669 {rgb=(.7 .7 .8)} Face 39739 4626 2360 20669 {rgb=(.7 .7 .8)} Face 39740 2360 2000 20669 {rgb=(.7 .7 .8)} Face 39741 1345 2000 20670 {rgb=(.7 .7 .8)} Face 39742 2000 2360 20670 {rgb=(.7 .7 .8)} Face 39743 2360 1334 20670 {rgb=(.7 .7 .8)} Face 39744 1334 1345 20670 {rgb=(.7 .7 .8)} Face 39745 2825 1768 20671 {rgb=(.7 .7 .8)} Face 39746 1768 1642 20671 {rgb=(.7 .7 .8)} Face 39747 1642 1673 20671 {rgb=(.7 .7 .8)} Face 39748 1673 2825 20671 {rgb=(.7 .7 .8)} Face 39749 1673 1642 20672 {rgb=(.7 .7 .8)} Face 39750 1642 1497 20672 {rgb=(.7 .7 .8)} Face 39751 1497 1487 20672 {rgb=(.7 .7 .8)} Face 39752 1487 1673 20672 {rgb=(.7 .7 .8)} Face 39753 1487 1497 20673 {rgb=(.7 .7 .8)} Face 39754 1497 1374 20673 {rgb=(.7 .7 .8)} Face 39755 1374 1393 20673 {rgb=(.7 .7 .8)} Face 39756 1393 1487 20673 {rgb=(.7 .7 .8)} Face 39757 1393 1374 20674 {rgb=(.7 .7 .8)} Face 39758 1374 1283 20674 {rgb=(.7 .7 .8)} Face 39759 1283 1221 20674 {rgb=(.7 .7 .8)} Face 39760 1221 1393 20674 {rgb=(.7 .7 .8)} Face 39761 1221 1283 20675 {rgb=(.7 .7 .8)} Face 39762 1283 1235 20675 {rgb=(.7 .7 .8)} Face 39763 1235 1175 20675 {rgb=(.7 .7 .8)} Face 39764 1175 1221 20675 {rgb=(.7 .7 .8)} Face 39765 1175 1235 20676 {rgb=(.7 .7 .8)} Face 39766 1235 1340 20676 {rgb=(.7 .7 .8)} Face 39767 1340 1226 20676 {rgb=(.7 .7 .8)} Face 39768 1226 1175 20676 {rgb=(.7 .7 .8)} Face 39769 1226 1340 20677 {rgb=(.7 .7 .8)} Face 39770 1340 1490 20677 {rgb=(.7 .7 .8)} Face 39771 1490 1476 20677 {rgb=(.7 .7 .8)} Face 39772 1476 1226 20677 {rgb=(.7 .7 .8)} Face 39773 1476 1490 20678 {rgb=(.7 .7 .8)} Face 39774 1490 1640 20678 {rgb=(.7 .7 .8)} Face 39775 1640 1662 20678 {rgb=(.7 .7 .8)} Face 39776 1662 1476 20678 {rgb=(.7 .7 .8)} Face 39777 1662 1640 20679 {rgb=(.7 .7 .8)} Face 39778 1640 1709 20679 {rgb=(.7 .7 .8)} Face 39779 1709 2623 20679 {rgb=(.7 .7 .8)} Face 39780 2623 1662 20679 {rgb=(.7 .7 .8)} Face 39781 2623 1709 20680 {rgb=(.7 .7 .8)} Face 39782 1709 1961 20680 {rgb=(.7 .7 .8)} Face 39783 1961 3129 20680 {rgb=(.7 .7 .8)} Face 39784 3129 2623 20680 {rgb=(.7 .7 .8)} Face 39785 3129 1961 20681 {rgb=(.7 .7 .8)} Face 39786 1961 1768 20681 {rgb=(.7 .7 .8)} Face 39787 1768 2825 20681 {rgb=(.7 .7 .8)} Face 39788 2825 3129 20681 {rgb=(.7 .7 .8)} Face 39789 3017 2825 20682 {rgb=(.7 .7 .8)} Face 39790 2825 1673 20682 {rgb=(.7 .7 .8)} Face 39791 1673 1667 20682 {rgb=(.7 .7 .8)} Face 39792 1667 3017 20682 {rgb=(.7 .7 .8)} Face 39793 1667 1673 20683 {rgb=(.7 .7 .8)} Face 39794 1673 1487 20683 {rgb=(.7 .7 .8)} Face 39795 1487 1436 20683 {rgb=(.7 .7 .8)} Face 39796 1436 1667 20683 {rgb=(.7 .7 .8)} Face 39797 1436 1487 20684 {rgb=(.7 .7 .8)} Face 39798 1487 1393 20684 {rgb=(.7 .7 .8)} Face 39799 1393 1200 20684 {rgb=(.7 .7 .8)} Face 39800 1200 1436 20684 {rgb=(.7 .7 .8)} Face 39801 1200 1393 20685 {rgb=(.7 .7 .8)} Face 39802 1393 1221 20685 {rgb=(.7 .7 .8)} Face 39803 1221 1145 20685 {rgb=(.7 .7 .8)} Face 39804 1145 1200 20685 {rgb=(.7 .7 .8)} Face 39805 1145 1221 20686 {rgb=(.7 .7 .8)} Face 39806 1221 1175 20686 {rgb=(.7 .7 .8)} Face 39807 1175 1118 20686 {rgb=(.7 .7 .8)} Face 39808 1118 1145 20686 {rgb=(.7 .7 .8)} Face 39809 1118 1175 20687 {rgb=(.7 .7 .8)} Face 39810 1175 1226 20687 {rgb=(.7 .7 .8)} Face 39811 1226 1172 20687 {rgb=(.7 .7 .8)} Face 39812 1172 1118 20687 {rgb=(.7 .7 .8)} Face 39813 1172 1226 20688 {rgb=(.7 .7 .8)} Face 39814 1226 1476 20688 {rgb=(.7 .7 .8)} Face 39815 1476 1405 20688 {rgb=(.7 .7 .8)} Face 39816 1405 1172 20688 {rgb=(.7 .7 .8)} Face 39817 1405 1476 20689 {rgb=(.7 .7 .8)} Face 39818 1476 1662 20689 {rgb=(.7 .7 .8)} Face 39819 1662 1675 20689 {rgb=(.7 .7 .8)} Face 39820 1675 1405 20689 {rgb=(.7 .7 .8)} Face 39821 1675 1662 20690 {rgb=(.7 .7 .8)} Face 39822 1662 2623 20690 {rgb=(.7 .7 .8)} Face 39823 2623 2911 20690 {rgb=(.7 .7 .8)} Face 39824 2911 1675 20690 {rgb=(.7 .7 .8)} Face 39825 2911 2623 20691 {rgb=(.7 .7 .8)} Face 39826 2623 3129 20691 {rgb=(.7 .7 .8)} Face 39827 3129 3413 20691 {rgb=(.7 .7 .8)} Face 39828 3413 2911 20691 {rgb=(.7 .7 .8)} Face 39829 3413 3129 20692 {rgb=(.7 .7 .8)} Face 39830 3129 2825 20692 {rgb=(.7 .7 .8)} Face 39831 2825 3017 20692 {rgb=(.7 .7 .8)} Face 39832 3017 3413 20692 {rgb=(.7 .7 .8)} Face 39833 2841 3017 20693 {rgb=(.7 .7 .8)} Face 39834 3017 1667 20693 {rgb=(.7 .7 .8)} Face 39835 1667 1653 20693 {rgb=(.7 .7 .8)} Face 39836 1653 2841 20693 {rgb=(.7 .7 .8)} Face 39837 1653 1667 20694 {rgb=(.7 .7 .8)} Face 39838 1667 1436 20694 {rgb=(.7 .7 .8)} Face 39839 1436 1416 20694 {rgb=(.7 .7 .8)} Face 39840 1416 1653 20694 {rgb=(.7 .7 .8)} Face 39841 1416 1436 20695 {rgb=(.7 .7 .8)} Face 39842 1436 1200 20695 {rgb=(.7 .7 .8)} Face 39843 1200 1181 20695 {rgb=(.7 .7 .8)} Face 39844 1181 1416 20695 {rgb=(.7 .7 .8)} Face 39845 1181 1200 20696 {rgb=(.7 .7 .8)} Face 39846 1200 1145 20696 {rgb=(.7 .7 .8)} Face 39847 1145 1085 20696 {rgb=(.7 .7 .8)} Face 39848 1085 1181 20696 {rgb=(.7 .7 .8)} Face 39849 1085 1145 20697 {rgb=(.7 .7 .8)} Face 39850 1145 1118 20697 {rgb=(.7 .7 .8)} Face 39851 1118 1043 20697 {rgb=(.7 .7 .8)} Face 39852 1043 1085 20697 {rgb=(.7 .7 .8)} Face 39853 1043 1118 20698 {rgb=(.7 .7 .8)} Face 39854 1118 1172 20698 {rgb=(.7 .7 .8)} Face 39855 1172 1142 20698 {rgb=(.7 .7 .8)} Face 39856 1142 1043 20698 {rgb=(.7 .7 .8)} Face 39857 1142 1172 20699 {rgb=(.7 .7 .8)} Face 39858 1172 1405 20699 {rgb=(.7 .7 .8)} Face 39859 1405 1396 20699 {rgb=(.7 .7 .8)} Face 39860 1396 1142 20699 {rgb=(.7 .7 .8)} Face 39861 1396 1405 20700 {rgb=(.7 .7 .8)} Face 39862 1405 1675 20700 {rgb=(.7 .7 .8)} Face 39863 1675 1681 20700 {rgb=(.7 .7 .8)} Face 39864 1681 1396 20700 {rgb=(.7 .7 .8)} Face 39865 1681 1675 20701 {rgb=(.7 .7 .8)} Face 39866 1675 2911 20701 {rgb=(.7 .7 .8)} Face 39867 2911 3090 20701 {rgb=(.7 .7 .8)} Face 39868 3090 1681 20701 {rgb=(.7 .7 .8)} Face 39869 3090 2911 20702 {rgb=(.7 .7 .8)} Face 39870 2911 3413 20702 {rgb=(.7 .7 .8)} Face 39871 3413 3995 20702 {rgb=(.7 .7 .8)} Face 39872 3995 3090 20702 {rgb=(.7 .7 .8)} Face 39873 3995 3413 20703 {rgb=(.7 .7 .8)} Face 39874 3413 3017 20703 {rgb=(.7 .7 .8)} Face 39875 3017 2841 20703 {rgb=(.7 .7 .8)} Face 39876 2841 3995 20703 {rgb=(.7 .7 .8)} Face 39877 2701 2841 20704 {rgb=(.7 .7 .8)} Face 39878 2841 1653 20704 {rgb=(.7 .7 .8)} Face 39879 1653 1651 20704 {rgb=(.7 .7 .8)} Face 39880 1651 2701 20704 {rgb=(.7 .7 .8)} Face 39881 1651 1653 20705 {rgb=(.7 .7 .8)} Face 39882 1653 1416 20705 {rgb=(.7 .7 .8)} Face 39883 1416 1472 20705 {rgb=(.7 .7 .8)} Face 39884 1472 1651 20705 {rgb=(.7 .7 .8)} Face 39885 1472 1416 20706 {rgb=(.7 .7 .8)} Face 39886 1416 1181 20706 {rgb=(.7 .7 .8)} Face 39887 1181 1247 20706 {rgb=(.7 .7 .8)} Face 39888 1247 1472 20706 {rgb=(.7 .7 .8)} Face 39889 1247 1181 20707 {rgb=(.7 .7 .8)} Face 39890 1181 1085 20707 {rgb=(.7 .7 .8)} Face 39891 1085 1132 20707 {rgb=(.7 .7 .8)} Face 39892 1132 1247 20707 {rgb=(.7 .7 .8)} Face 39893 1132 1085 20708 {rgb=(.7 .7 .8)} Face 39894 1085 1043 20708 {rgb=(.7 .7 .8)} Face 39895 1043 1084 20708 {rgb=(.7 .7 .8)} Face 39896 1084 1132 20708 {rgb=(.7 .7 .8)} Face 39897 1084 1043 20709 {rgb=(.7 .7 .8)} Face 39898 1043 1142 20709 {rgb=(.7 .7 .8)} Face 39899 1142 1203 20709 {rgb=(.7 .7 .8)} Face 39900 1203 1084 20709 {rgb=(.7 .7 .8)} Face 39901 1203 1142 20710 {rgb=(.7 .7 .8)} Face 39902 1142 1396 20710 {rgb=(.7 .7 .8)} Face 39903 1396 1473 20710 {rgb=(.7 .7 .8)} Face 39904 1473 1203 20710 {rgb=(.7 .7 .8)} Face 39905 1473 1396 20711 {rgb=(.7 .7 .8)} Face 39906 1396 1681 20711 {rgb=(.7 .7 .8)} Face 39907 1681 1710 20711 {rgb=(.7 .7 .8)} Face 39908 1710 1473 20711 {rgb=(.7 .7 .8)} Face 39909 1710 1681 20712 {rgb=(.7 .7 .8)} Face 39910 1681 3090 20712 {rgb=(.7 .7 .8)} Face 39911 3090 3195 20712 {rgb=(.7 .7 .8)} Face 39912 3195 1710 20712 {rgb=(.7 .7 .8)} Face 39913 3195 3090 20713 {rgb=(.7 .7 .8)} Face 39914 3090 3995 20713 {rgb=(.7 .7 .8)} Face 39915 3995 3364 20713 {rgb=(.7 .7 .8)} Face 39916 3364 3195 20713 {rgb=(.7 .7 .8)} Face 39917 3364 3995 20714 {rgb=(.7 .7 .8)} Face 39918 3995 2841 20714 {rgb=(.7 .7 .8)} Face 39919 2841 2701 20714 {rgb=(.7 .7 .8)} Face 39920 2701 3364 20714 {rgb=(.7 .7 .8)} Face 39921 1691 1418 20715 {rgb=(.7 .7 .8)} Face 39922 1418 1383 20715 {rgb=(.7 .7 .8)} Face 39923 1383 1704 20715 {rgb=(.7 .7 .8)} Face 39924 1704 1691 20715 {rgb=(.7 .7 .8)} Face 39925 1418 1153 20716 {rgb=(.7 .7 .8)} Face 39926 1153 1070 20716 {rgb=(.7 .7 .8)} Face 39927 1070 1383 20716 {rgb=(.7 .7 .8)} Face 39928 1383 1418 20716 {rgb=(.7 .7 .8)} Face 39929 1053 1056 20717 {rgb=(.7 .7 .8)} Face 39930 1056 921 20717 {rgb=(.7 .7 .8)} Face 39931 921 936 20717 {rgb=(.7 .7 .8)} Face 39932 936 1053 20717 {rgb=(.7 .7 .8)} Face 39933 1012 862 20718 {rgb=(.7 .7 .8)} Face 39934 862 921 20718 {rgb=(.7 .7 .8)} Face 39935 921 1056 20718 {rgb=(.7 .7 .8)} Face 39936 1056 1012 20718 {rgb=(.7 .7 .8)} Face 39937 1327 1386 20719 {rgb=(.7 .7 .8)} Face 39938 1386 1325 20719 {rgb=(.7 .7 .8)} Face 39939 1325 1260 20719 {rgb=(.7 .7 .8)} Face 39940 1260 1327 20719 {rgb=(.7 .7 .8)} Face 39941 1376 1325 20720 {rgb=(.7 .7 .8)} Face 39942 1325 1386 20720 {rgb=(.7 .7 .8)} Face 39943 1386 1465 20720 {rgb=(.7 .7 .8)} Face 39944 1465 1376 20720 {rgb=(.7 .7 .8)} Face 39945 2736 2553 20721 {rgb=(.7 .7 .8)} Face 39946 2553 3994 20721 {rgb=(.7 .7 .8)} Face 39947 3994 3926 20721 {rgb=(.7 .7 .8)} Face 39948 3926 2736 20721 {rgb=(.7 .7 .8)} Face 39949 3202 4196 20722 {rgb=(.7 .7 .8)} Face 39950 4196 3994 20722 {rgb=(.7 .7 .8)} Face 39951 3994 2553 20722 {rgb=(.7 .7 .8)} Face 39952 2553 3202 20722 {rgb=(.7 .7 .8)} Face 39953 3659 3381 20723 {rgb=(.7 .7 .8)} Face 39954 3381 4091 20723 {rgb=(.7 .7 .8)} Face 39955 4091 4686 20723 {rgb=(.7 .7 .8)} Face 39956 4686 3659 20723 {rgb=(.7 .7 .8)} Face 39957 3381 1691 20724 {rgb=(.7 .7 .8)} Face 39958 1691 2179 20724 {rgb=(.7 .7 .8)} Face 39959 2179 4091 20724 {rgb=(.7 .7 .8)} Face 39960 4091 3381 20724 {rgb=(.7 .7 .8)} Face 39961 1704 1383 20725 {rgb=(.7 .7 .8)} Face 39962 1383 1356 20725 {rgb=(.7 .7 .8)} Face 39963 1356 1781 20725 {rgb=(.7 .7 .8)} Face 39964 1781 1704 20725 {rgb=(.7 .7 .8)} Face 39965 1383 1070 20726 {rgb=(.7 .7 .8)} Face 39966 1070 1024 20726 {rgb=(.7 .7 .8)} Face 39967 1024 1356 20726 {rgb=(.7 .7 .8)} Face 39968 1356 1383 20726 {rgb=(.7 .7 .8)} Face 39969 1070 936 20727 {rgb=(.7 .7 .8)} Face 39970 936 876 20727 {rgb=(.7 .7 .8)} Face 39971 876 1024 20727 {rgb=(.7 .7 .8)} Face 39972 1024 1070 20727 {rgb=(.7 .7 .8)} Face 39973 862 675 20728 {rgb=(.7 .7 .8)} Face 39974 675 485 20728 {rgb=(.7 .7 .8)} Face 39975 485 794 20728 {rgb=(.7 .7 .8)} Face 39976 794 862 20728 {rgb=(.7 .7 .8)} Face 39977 792 944 20729 {rgb=(.7 .7 .8)} Face 39978 944 908 20729 {rgb=(.7 .7 .8)} Face 39979 908 709 20729 {rgb=(.7 .7 .8)} Face 39980 709 792 20729 {rgb=(.7 .7 .8)} Face 39981 944 1260 20730 {rgb=(.7 .7 .8)} Face 39982 1260 1227 20730 {rgb=(.7 .7 .8)} Face 39983 1227 908 20730 {rgb=(.7 .7 .8)} Face 39984 908 944 20730 {rgb=(.7 .7 .8)} Face 39985 1345 1376 20731 {rgb=(.7 .7 .8)} Face 39986 1376 1980 20731 {rgb=(.7 .7 .8)} Face 39987 1980 2000 20731 {rgb=(.7 .7 .8)} Face 39988 2000 1345 20731 {rgb=(.7 .7 .8)} Face 39989 1980 3926 20732 {rgb=(.7 .7 .8)} Face 39990 3926 4338 20732 {rgb=(.7 .7 .8)} Face 39991 4338 2000 20732 {rgb=(.7 .7 .8)} Face 39992 2000 1980 20732 {rgb=(.7 .7 .8)} Face 39993 4196 4723 20733 {rgb=(.7 .7 .8)} Face 39994 4723 5215 20733 {rgb=(.7 .7 .8)} Face 39995 5215 4338 20733 {rgb=(.7 .7 .8)} Face 39996 4338 4196 20733 {rgb=(.7 .7 .8)} Face 39997 4686 4091 20734 {rgb=(.7 .7 .8)} Face 39998 4091 4474 20734 {rgb=(.7 .7 .8)} Face 39999 4474 5230 20734 {rgb=(.7 .7 .8)} Face 40000 5230 4686 20734 {rgb=(.7 .7 .8)} Face 40001 4091 2179 20735 {rgb=(.7 .7 .8)} Face 40002 2179 2514 20735 {rgb=(.7 .7 .8)} Face 40003 2514 4474 20735 {rgb=(.7 .7 .8)} Face 40004 4474 4091 20735 {rgb=(.7 .7 .8)} Face 40005 2066 1426 20736 {rgb=(.7 .7 .8)} Face 40006 1426 1508 20736 {rgb=(.7 .7 .8)} Face 40007 1508 2723 20736 {rgb=(.7 .7 .8)} Face 40008 2723 2066 20736 {rgb=(.7 .7 .8)} Face 40009 1426 1078 20737 {rgb=(.7 .7 .8)} Face 40010 1078 1168 20737 {rgb=(.7 .7 .8)} Face 40011 1168 1508 20737 {rgb=(.7 .7 .8)} Face 40012 1508 1426 20737 {rgb=(.7 .7 .8)} Face 40013 1078 923 20738 {rgb=(.7 .7 .8)} Face 40014 923 1031 20738 {rgb=(.7 .7 .8)} Face 40015 1031 1168 20738 {rgb=(.7 .7 .8)} Face 40016 1168 1078 20738 {rgb=(.7 .7 .8)} Face 40017 859 637 20739 {rgb=(.7 .7 .8)} Face 40018 637 835 20739 {rgb=(.7 .7 .8)} Face 40019 835 978 20739 {rgb=(.7 .7 .8)} Face 40020 978 859 20739 {rgb=(.7 .7 .8)} Face 40021 779 950 20740 {rgb=(.7 .7 .8)} Face 40022 950 1065 20740 {rgb=(.7 .7 .8)} Face 40023 1065 905 20740 {rgb=(.7 .7 .8)} Face 40024 905 779 20740 {rgb=(.7 .7 .8)} Face 40025 950 1334 20741 {rgb=(.7 .7 .8)} Face 40026 1334 1453 20741 {rgb=(.7 .7 .8)} Face 40027 1453 1065 20741 {rgb=(.7 .7 .8)} Face 40028 1065 950 20741 {rgb=(.7 .7 .8)} Face 40029 1453 1334 20742 {rgb=(.7 .7 .8)} Face 40030 1334 2360 20742 {rgb=(.7 .7 .8)} Face 40031 2360 2241 20742 {rgb=(.7 .7 .8)} Face 40032 2241 1453 20742 {rgb=(.7 .7 .8)} Face 40033 2360 4626 20743 {rgb=(.7 .7 .8)} Face 40034 4626 4670 20743 {rgb=(.7 .7 .8)} Face 40035 4670 2241 20743 {rgb=(.7 .7 .8)} Face 40036 2241 2360 20743 {rgb=(.7 .7 .8)} Face 40037 4626 5317 20744 {rgb=(.7 .7 .8)} Face 40038 5317 5324 20744 {rgb=(.7 .7 .8)} Face 40039 5324 4670 20744 {rgb=(.7 .7 .8)} Face 40040 4670 4626 20744 {rgb=(.7 .7 .8)} Face 40041 5308 4597 20745 {rgb=(.7 .7 .8)} Face 40042 4597 4712 20745 {rgb=(.7 .7 .8)} Face 40043 4712 5284 20745 {rgb=(.7 .7 .8)} Face 40044 5284 5308 20745 {rgb=(.7 .7 .8)} Face 40045 4597 2683 20746 {rgb=(.7 .7 .8)} Face 40046 2683 2723 20746 {rgb=(.7 .7 .8)} Face 40047 2723 4712 20746 {rgb=(.7 .7 .8)} Face 40048 4712 4597 20746 {rgb=(.7 .7 .8)} Face 40049 5156 5284 20747 {rgb=(.7 .7 .8)} Face 40050 5284 4712 20747 {rgb=(.7 .7 .8)} Face 40051 4712 4384 20747 {rgb=(.7 .7 .8)} Face 40052 4384 5156 20747 {rgb=(.7 .7 .8)} Face 40053 5490 5156 20748 {rgb=(.7 .7 .8)} Face 40054 5156 4384 20748 {rgb=(.7 .7 .8)} Face 40055 4384 5491 20748 {rgb=(.7 .7 .8)} Face 40056 5491 5490 20748 {rgb=(.7 .7 .8)} Face 40057 1161 979 20749 {rgb=(.7 .7 .8)} Face 40058 979 1034 20749 {rgb=(.7 .7 .8)} Face 40059 1034 1130 20749 {rgb=(.7 .7 .8)} Face 40060 1130 1161 20749 {rgb=(.7 .7 .8)} Face 40061 1160 1130 20750 {rgb=(.7 .7 .8)} Face 40062 1130 1034 20750 {rgb=(.7 .7 .8)} Face 40063 1034 1113 20750 {rgb=(.7 .7 .8)} Face 40064 1113 1160 20750 {rgb=(.7 .7 .8)} Face 40065 4315 4115 20751 {rgb=(.7 .7 .8)} Face 40066 4115 2241 20751 {rgb=(.7 .7 .8)} Face 40067 2241 4670 20751 {rgb=(.7 .7 .8)} Face 40068 4670 4315 20751 {rgb=(.7 .7 .8)} Face 40069 1795 1908 20752 {rgb=(.7 .7 .8)} Face 40070 1908 1539 20752 {rgb=(.7 .7 .8)} Face 40071 1539 1570 20752 {rgb=(.7 .7 .8)} Face 40072 1570 1795 20752 {rgb=(.7 .7 .8)} Face 40073 3715 3702 20753 {rgb=(.7 .7 .8)} Face 40074 3702 5496 20753 {rgb=(.7 .7 .8)} Face 40075 5496 5494 20753 {rgb=(.7 .7 .8)} Face 40076 5494 3715 20753 {rgb=(.7 .7 .8)} Face 40077 5496 3702 20754 {rgb=(.7 .7 .8)} Face 40078 3702 3772 20754 {rgb=(.7 .7 .8)} Face 40079 3772 5498 20754 {rgb=(.7 .7 .8)} Face 40080 5498 5496 20754 {rgb=(.7 .7 .8)} Face 40081 1544 1539 20755 {rgb=(.7 .7 .8)} Face 40082 1539 1908 20755 {rgb=(.7 .7 .8)} Face 40083 1908 1748 20755 {rgb=(.7 .7 .8)} Face 40084 1748 1544 20755 {rgb=(.7 .7 .8)} Face 40085 1748 1908 20756 {rgb=(.7 .7 .8)} Face 40086 1908 3702 20756 {rgb=(.7 .7 .8)} Face 40087 3702 3715 20756 {rgb=(.7 .7 .8)} Face 40088 3715 1748 20756 {rgb=(.7 .7 .8)} Face 40089 1255 1234 20757 {rgb=(.7 .7 .8)} Face 40090 1234 1377 20757 {rgb=(.7 .7 .8)} Face 40091 1377 1448 20757 {rgb=(.7 .7 .8)} Face 40092 1448 1255 20757 {rgb=(.7 .7 .8)} Face 40093 1375 1245 20758 {rgb=(.7 .7 .8)} Face 40094 1245 1342 20758 {rgb=(.7 .7 .8)} Face 40095 1342 1466 20758 {rgb=(.7 .7 .8)} Face 40096 1466 1375 20758 {rgb=(.7 .7 .8)} Face 40097 1510 1163 20759 {rgb=(.7 .7 .8)} Face 40098 1163 1174 20759 {rgb=(.7 .7 .8)} Face 40099 1174 1535 20759 {rgb=(.7 .7 .8)} Face 40100 1535 1510 20759 {rgb=(.7 .7 .8)} Face 40101 2393 3501 20760 {rgb=(.7 .7 .8)} Face 40102 3501 2740 20760 {rgb=(.7 .7 .8)} Face 40103 2740 2197 20760 {rgb=(.7 .7 .8)} Face 40104 2197 2393 20760 {rgb=(.7 .7 .8)} Face 40105 1609 1741 20761 {rgb=(.7 .7 .8)} Face 40106 1741 1951 20761 {rgb=(.7 .7 .8)} Face 40107 1951 1635 20761 {rgb=(.7 .7 .8)} Face 40108 1635 1609 20761 {rgb=(.7 .7 .8)} Face 40109 4621 4780 20762 {rgb=(.7 .7 .8)} Face 40110 4780 5493 20762 {rgb=(.7 .7 .8)} Face 40111 5493 5495 20762 {rgb=(.7 .7 .8)} Face 40112 5495 4621 20762 {rgb=(.7 .7 .8)} Face 40113 5499 5501 20763 {rgb=(.7 .7 .8)} Face 40114 5501 3824 20763 {rgb=(.7 .7 .8)} Face 40115 3824 4107 20763 {rgb=(.7 .7 .8)} Face 40116 4107 5499 20763 {rgb=(.7 .7 .8)} Face 40117 1748 3796 20764 {rgb=(.7 .7 .8)} Face 40118 3796 3629 20764 {rgb=(.7 .7 .8)} Face 40119 3629 1682 20764 {rgb=(.7 .7 .8)} Face 40120 1682 1748 20764 {rgb=(.7 .7 .8)} Face 40121 1508 1682 20765 {rgb=(.7 .7 .8)} Face 40122 1682 3629 20765 {rgb=(.7 .7 .8)} Face 40123 3629 2723 20765 {rgb=(.7 .7 .8)} Face 40124 2723 1508 20765 {rgb=(.7 .7 .8)} Face 40125 2197 1510 20766 {rgb=(.7 .7 .8)} Face 40126 1510 1535 20766 {rgb=(.7 .7 .8)} Face 40127 1535 2393 20766 {rgb=(.7 .7 .8)} Face 40128 2393 2197 20766 {rgb=(.7 .7 .8)} Face 40129 3629 4384 20767 {rgb=(.7 .7 .8)} Face 40130 4384 4712 20767 {rgb=(.7 .7 .8)} Face 40131 4712 2723 20767 {rgb=(.7 .7 .8)} Face 40132 2723 3629 20767 {rgb=(.7 .7 .8)} Face 40133 1508 1168 20768 {rgb=(.7 .7 .8)} Face 40134 1168 1440 20768 {rgb=(.7 .7 .8)} Face 40135 1440 1682 20768 {rgb=(.7 .7 .8)} Face 40136 1682 1508 20768 {rgb=(.7 .7 .8)} Face 40137 1063 1034 20769 {rgb=(.7 .7 .8)} Face 40138 1034 975 20769 {rgb=(.7 .7 .8)} Face 40139 975 1042 20769 {rgb=(.7 .7 .8)} Face 40140 1042 1063 20769 {rgb=(.7 .7 .8)} Face 40141 5492 5493 20770 {rgb=(.7 .7 .8)} Face 40142 5493 4780 20770 {rgb=(.7 .7 .8)} Face 40143 4780 5449 20770 {rgb=(.7 .7 .8)} Face 40144 5449 5492 20770 {rgb=(.7 .7 .8)} Face 40145 3772 1795 20771 {rgb=(.7 .7 .8)} Face 40146 1795 2426 20771 {rgb=(.7 .7 .8)} Face 40147 2426 3811 20771 {rgb=(.7 .7 .8)} Face 40148 3811 3772 20771 {rgb=(.7 .7 .8)} Face 40149 1499 1255 20772 {rgb=(.7 .7 .8)} Face 40150 1255 1448 20772 {rgb=(.7 .7 .8)} Face 40151 1448 1627 20772 {rgb=(.7 .7 .8)} Face 40152 1627 1499 20772 {rgb=(.7 .7 .8)} Face 40153 1193 1163 20773 {rgb=(.7 .7 .8)} Face 40154 1163 1510 20773 {rgb=(.7 .7 .8)} Face 40155 1510 1485 20773 {rgb=(.7 .7 .8)} Face 40156 1485 1193 20773 {rgb=(.7 .7 .8)} Face 40157 1161 1130 20774 {rgb=(.7 .7 .8)} Face 40158 1130 1544 20774 {rgb=(.7 .7 .8)} Face 40159 1544 1440 20774 {rgb=(.7 .7 .8)} Face 40160 1440 1161 20774 {rgb=(.7 .7 .8)} Face 40161 1485 1531 20775 {rgb=(.7 .7 .8)} Face 40162 1531 1342 20775 {rgb=(.7 .7 .8)} Face 40163 1342 1193 20775 {rgb=(.7 .7 .8)} Face 40164 1193 1485 20775 {rgb=(.7 .7 .8)} Face 40165 1130 1160 20776 {rgb=(.7 .7 .8)} Face 40166 1160 1486 20776 {rgb=(.7 .7 .8)} Face 40167 1486 1544 20776 {rgb=(.7 .7 .8)} Face 40168 1544 1130 20776 {rgb=(.7 .7 .8)} Face 40169 1682 1440 20777 {rgb=(.7 .7 .8)} Face 40170 1440 1544 20777 {rgb=(.7 .7 .8)} Face 40171 1544 1748 20777 {rgb=(.7 .7 .8)} Face 40172 1748 1682 20777 {rgb=(.7 .7 .8)} Face 40173 3796 3715 20778 {rgb=(.7 .7 .8)} Face 40174 3715 5494 20778 {rgb=(.7 .7 .8)} Face 40175 5494 5491 20778 {rgb=(.7 .7 .8)} Face 40176 5491 3796 20778 {rgb=(.7 .7 .8)} Face 40177 1486 1160 20779 {rgb=(.7 .7 .8)} Face 40178 1160 1255 20779 {rgb=(.7 .7 .8)} Face 40179 1255 1499 20779 {rgb=(.7 .7 .8)} Face 40180 1499 1486 20779 {rgb=(.7 .7 .8)} Face 40181 3702 1908 20780 {rgb=(.7 .7 .8)} Face 40182 1908 1795 20780 {rgb=(.7 .7 .8)} Face 40183 1795 3772 20780 {rgb=(.7 .7 .8)} Face 40184 3772 3702 20780 {rgb=(.7 .7 .8)} Face 40185 3811 5502 20781 {rgb=(.7 .7 .8)} Face 40186 5502 5498 20781 {rgb=(.7 .7 .8)} Face 40187 5498 3772 20781 {rgb=(.7 .7 .8)} Face 40188 3772 3811 20781 {rgb=(.7 .7 .8)} Face 40189 1795 1570 20782 {rgb=(.7 .7 .8)} Face 40190 1570 1663 20782 {rgb=(.7 .7 .8)} Face 40191 1663 2426 20782 {rgb=(.7 .7 .8)} Face 40192 2426 1795 20782 {rgb=(.7 .7 .8)} Face 40193 1160 1113 20783 {rgb=(.7 .7 .8)} Face 40194 1113 1234 20783 {rgb=(.7 .7 .8)} Face 40195 1234 1255 20783 {rgb=(.7 .7 .8)} Face 40196 1255 1160 20783 {rgb=(.7 .7 .8)} Face 40197 1106 1193 20784 {rgb=(.7 .7 .8)} Face 40198 1193 1342 20784 {rgb=(.7 .7 .8)} Face 40199 1342 1245 20784 {rgb=(.7 .7 .8)} Face 40200 1245 1106 20784 {rgb=(.7 .7 .8)} Face 40201 1466 1342 20785 {rgb=(.7 .7 .8)} Face 40202 1342 1531 20785 {rgb=(.7 .7 .8)} Face 40203 1531 1579 20785 {rgb=(.7 .7 .8)} Face 40204 1579 1466 20785 {rgb=(.7 .7 .8)} Face 40205 5299 5490 20786 {rgb=(.7 .7 .8)} Face 40206 5490 5492 20786 {rgb=(.7 .7 .8)} Face 40207 5492 5449 20786 {rgb=(.7 .7 .8)} Face 40208 5449 5299 20786 {rgb=(.7 .7 .8)} Face 40209 5497 4331 20787 {rgb=(.7 .7 .8)} Face 40210 4331 4621 20787 {rgb=(.7 .7 .8)} Face 40211 4621 5495 20787 {rgb=(.7 .7 .8)} Face 40212 5495 5497 20787 {rgb=(.7 .7 .8)} Face 40213 1485 1904 20788 {rgb=(.7 .7 .8)} Face 40214 1904 1741 20788 {rgb=(.7 .7 .8)} Face 40215 1741 1609 20788 {rgb=(.7 .7 .8)} Face 40216 1609 1485 20788 {rgb=(.7 .7 .8)} Face 40217 3565 2481 20789 {rgb=(.7 .7 .8)} Face 40218 2481 2686 20789 {rgb=(.7 .7 .8)} Face 40219 2686 3783 20789 {rgb=(.7 .7 .8)} Face 40220 3783 3565 20789 {rgb=(.7 .7 .8)} Face 40221 4107 4331 20790 {rgb=(.7 .7 .8)} Face 40222 4331 5497 20790 {rgb=(.7 .7 .8)} Face 40223 5497 5499 20790 {rgb=(.7 .7 .8)} Face 40224 5499 4107 20790 {rgb=(.7 .7 .8)} Face 40225 2481 3565 20791 {rgb=(.7 .7 .8)} Face 40226 3565 3824 20791 {rgb=(.7 .7 .8)} Face 40227 3824 2555 20791 {rgb=(.7 .7 .8)} Face 40228 2555 2481 20791 {rgb=(.7 .7 .8)} Face 40229 5299 5449 20792 {rgb=(.7 .7 .8)} Face 40230 5449 4670 20792 {rgb=(.7 .7 .8)} Face 40231 4670 5324 20792 {rgb=(.7 .7 .8)} Face 40232 5324 5299 20792 {rgb=(.7 .7 .8)} Face 40233 2393 2241 20793 {rgb=(.7 .7 .8)} Face 40234 2241 4115 20793 {rgb=(.7 .7 .8)} Face 40235 4115 3819 20793 {rgb=(.7 .7 .8)} Face 40236 3819 2393 20793 {rgb=(.7 .7 .8)} Face 40237 2393 1535 20794 {rgb=(.7 .7 .8)} Face 40238 1535 1453 20794 {rgb=(.7 .7 .8)} Face 40239 1453 2241 20794 {rgb=(.7 .7 .8)} Face 40240 2241 2393 20794 {rgb=(.7 .7 .8)} Face 40241 1174 1065 20795 {rgb=(.7 .7 .8)} Face 40242 1065 1453 20795 {rgb=(.7 .7 .8)} Face 40243 1453 1535 20795 {rgb=(.7 .7 .8)} Face 40244 1535 1174 20795 {rgb=(.7 .7 .8)} Face 40245 905 1065 20796 {rgb=(.7 .7 .8)} Face 40246 1065 1174 20796 {rgb=(.7 .7 .8)} Face 40247 1174 1042 20796 {rgb=(.7 .7 .8)} Face 40248 1042 905 20796 {rgb=(.7 .7 .8)} Face 40249 1161 978 20797 {rgb=(.7 .7 .8)} Face 40250 978 835 20797 {rgb=(.7 .7 .8)} Face 40251 835 979 20797 {rgb=(.7 .7 .8)} Face 40252 979 1161 20797 {rgb=(.7 .7 .8)} Face 40253 1031 1161 20798 {rgb=(.7 .7 .8)} Face 40254 1161 1440 20798 {rgb=(.7 .7 .8)} Face 40255 1440 1168 20798 {rgb=(.7 .7 .8)} Face 40256 1168 1031 20798 {rgb=(.7 .7 .8)} Face 40257 1541 1564 20799 {rgb=(.7 .7 .8)} Face 40258 1564 1363 20799 {rgb=(.7 .7 .8)} Face 40259 1363 1315 20799 {rgb=(.7 .7 .8)} Face 40260 1315 1541 20799 {rgb=(.7 .7 .8)} Face 40261 1871 1564 20800 {rgb=(.7 .7 .8)} Face 40262 1564 1581 20800 {rgb=(.7 .7 .8)} Face 40263 1581 1751 20800 {rgb=(.7 .7 .8)} Face 40264 1751 1871 20800 {rgb=(.7 .7 .8)} Face 40265 5522 3845 20801 {rgb=(.7 .7 .8)} Face 40266 3845 3947 20801 {rgb=(.7 .7 .8)} Face 40267 3947 5524 20801 {rgb=(.7 .7 .8)} Face 40268 5524 5522 20801 {rgb=(.7 .7 .8)} Face 40269 1785 1700 20802 {rgb=(.7 .7 .8)} Face 40270 1700 3947 20802 {rgb=(.7 .7 .8)} Face 40271 3947 3845 20802 {rgb=(.7 .7 .8)} Face 40272 3845 1785 20802 {rgb=(.7 .7 .8)} Face 40273 9352 9564 20803 {rgb=(.7 .6 .4)} Face 40274 9564 9458 20803 {rgb=(.7 .6 .4)} Face 40275 9458 9353 20803 {rgb=(.7 .6 .4)} Face 40276 9353 9352 20803 {rgb=(.7 .6 .4)} Face 40277 9665 9654 20804 {rgb=(.7 .6 .4)} Face 40278 9654 9876 20804 {rgb=(.7 .6 .4)} Face 40279 9876 9719 20804 {rgb=(.7 .6 .4)} Face 40280 9719 9665 20804 {rgb=(.7 .6 .4)} Face 40281 9826 9719 20805 {rgb=(.7 .6 .4)} Face 40282 9719 9876 20805 {rgb=(.7 .6 .4)} Face 40283 9876 9918 20805 {rgb=(.7 .6 .4)} Face 40284 9918 9826 20805 {rgb=(.7 .6 .4)} Face 40285 9964 9918 20806 {rgb=(.7 .6 .4)} Face 40286 9918 9876 20806 {rgb=(.7 .6 .4)} Face 40287 9876 10005 20806 {rgb=(.7 .6 .4)} Face 40288 10005 9964 20806 {rgb=(.7 .6 .4)} Face 40289 10037 10005 20807 {rgb=(.7 .6 .4)} Face 40290 10005 9876 20807 {rgb=(.7 .6 .4)} Face 40291 9876 10019 20807 {rgb=(.7 .6 .4)} Face 40292 10019 10037 20807 {rgb=(.7 .6 .4)} Face 40293 9994 10019 20808 {rgb=(.7 .6 .4)} Face 40294 10019 9876 20808 {rgb=(.7 .6 .4)} Face 40295 9876 9949 20808 {rgb=(.7 .6 .4)} Face 40296 9949 9994 20808 {rgb=(.7 .6 .4)} Face 40297 8019 8841 20809 {rgb=(.7 .6 .4)} Face 40298 8841 9498 20809 {rgb=(.7 .6 .4)} Face 40299 9498 9399 20809 {rgb=(.7 .6 .4)} Face 40300 9399 8019 20809 {rgb=(.7 .6 .4)} Face 40301 1470 1481 20810 {rgb=(.7 .6 .4)} Face 40302 1481 1692 20810 {rgb=(.7 .6 .4)} Face 40303 1692 1587 20810 {rgb=(.7 .6 .4)} Face 40304 1587 1470 20810 {rgb=(.7 .6 .4)} Face 40305 1040 1008 20811 {rgb=(.7 .6 .4)} Face 40306 1008 1096 20811 {rgb=(.7 .6 .4)} Face 40307 1096 1081 20811 {rgb=(.7 .6 .4)} Face 40308 1081 1040 20811 {rgb=(.7 .6 .4)} Face 40309 1127 1081 20812 {rgb=(.7 .6 .4)} Face 40310 1081 1096 20812 {rgb=(.7 .6 .4)} Face 40311 1096 1219 20812 {rgb=(.7 .6 .4)} Face 40312 1219 1127 20812 {rgb=(.7 .6 .4)} Face 40313 1326 1219 20813 {rgb=(.7 .6 .4)} Face 40314 1219 1096 20813 {rgb=(.7 .6 .4)} Face 40315 1096 1380 20813 {rgb=(.7 .6 .4)} Face 40316 1380 1326 20813 {rgb=(.7 .6 .4)} Face 40317 1391 1380 20814 {rgb=(.7 .6 .4)} Face 40318 1380 1096 20814 {rgb=(.7 .6 .4)} Face 40319 1096 1362 20814 {rgb=(.7 .6 .4)} Face 40320 1362 1391 20814 {rgb=(.7 .6 .4)} Face 40321 1282 1362 20815 {rgb=(.7 .6 .4)} Face 40322 1362 1096 20815 {rgb=(.7 .6 .4)} Face 40323 1096 1169 20815 {rgb=(.7 .6 .4)} Face 40324 1169 1282 20815 {rgb=(.7 .6 .4)} Face 40325 1654 2201 20816 {rgb=(.7 .6 .4)} Face 40326 2201 1646 20816 {rgb=(.7 .6 .4)} Face 40327 1646 1547 20816 {rgb=(.7 .6 .4)} Face 40328 1547 1654 20816 {rgb=(.7 .6 .4)} Face 40329 9345 7093 20817 {rgb=(.7 .6 .4)} Face 40330 7093 7111 20817 {rgb=(.7 .6 .4)} Face 40331 7111 9356 20817 {rgb=(.7 .6 .4)} Face 40332 9356 9345 20817 {rgb=(.7 .6 .4)} Face 40333 5524 5525 20818 {rgb=(.7 .6 .4)} Face 40334 5525 7111 20818 {rgb=(.7 .6 .4)} Face 40335 7111 7093 20818 {rgb=(.7 .6 .4)} Face 40336 7093 5524 20818 {rgb=(.7 .6 .4)} Face 40337 9244 9174 20819 {rgb=(.7 .6 .4)} Face 40338 9174 9481 20819 {rgb=(.7 .6 .4)} Face 40339 9481 9489 20819 {rgb=(.7 .6 .4)} Face 40340 9489 9244 20819 {rgb=(.7 .6 .4)} Face 40341 9489 9481 20820 {rgb=(.7 .6 .4)} Face 40342 9481 9682 20820 {rgb=(.7 .6 .4)} Face 40343 9682 9747 20820 {rgb=(.7 .6 .4)} Face 40344 9747 9489 20820 {rgb=(.7 .6 .4)} Face 40345 10053 10019 20821 {rgb=(.7 .6 .4)} Face 40346 10019 9994 20821 {rgb=(.7 .6 .4)} Face 40347 9994 10020 20821 {rgb=(.7 .6 .4)} Face 40348 10020 10053 20821 {rgb=(.7 .6 .4)} Face 40349 10071 10037 20822 {rgb=(.7 .6 .4)} Face 40350 10037 10019 20822 {rgb=(.7 .6 .4)} Face 40351 10019 10053 20822 {rgb=(.7 .6 .4)} Face 40352 10053 10071 20822 {rgb=(.7 .6 .4)} Face 40353 10036 10005 20823 {rgb=(.7 .6 .4)} Face 40354 10005 10037 20823 {rgb=(.7 .6 .4)} Face 40355 10037 10071 20823 {rgb=(.7 .6 .4)} Face 40356 10071 10036 20823 {rgb=(.7 .6 .4)} Face 40357 9985 9964 20824 {rgb=(.7 .6 .4)} Face 40358 9964 10005 20824 {rgb=(.7 .6 .4)} Face 40359 10005 10036 20824 {rgb=(.7 .6 .4)} Face 40360 10036 9985 20824 {rgb=(.7 .6 .4)} Face 40361 9940 9918 20825 {rgb=(.7 .6 .4)} Face 40362 9918 9964 20825 {rgb=(.7 .6 .4)} Face 40363 9964 9985 20825 {rgb=(.7 .6 .4)} Face 40364 9985 9940 20825 {rgb=(.7 .6 .4)} Face 40365 9851 9826 20826 {rgb=(.7 .6 .4)} Face 40366 9826 9918 20826 {rgb=(.7 .6 .4)} Face 40367 9918 9940 20826 {rgb=(.7 .6 .4)} Face 40368 9940 9851 20826 {rgb=(.7 .6 .4)} Face 40369 9743 9719 20827 {rgb=(.7 .6 .4)} Face 40370 9719 9826 20827 {rgb=(.7 .6 .4)} Face 40371 9826 9851 20827 {rgb=(.7 .6 .4)} Face 40372 9851 9743 20827 {rgb=(.7 .6 .4)} Face 40373 9697 9665 20828 {rgb=(.7 .6 .4)} Face 40374 9665 9719 20828 {rgb=(.7 .6 .4)} Face 40375 9719 9743 20828 {rgb=(.7 .6 .4)} Face 40376 9743 9697 20828 {rgb=(.7 .6 .4)} Face 40377 9687 9654 20829 {rgb=(.7 .6 .4)} Face 40378 9654 9665 20829 {rgb=(.7 .6 .4)} Face 40379 9665 9697 20829 {rgb=(.7 .6 .4)} Face 40380 9697 9687 20829 {rgb=(.7 .6 .4)} Face 40381 9708 9683 20830 {rgb=(.7 .6 .4)} Face 40382 9683 9654 20830 {rgb=(.7 .6 .4)} Face 40383 9654 9687 20830 {rgb=(.7 .6 .4)} Face 40384 9687 9708 20830 {rgb=(.7 .6 .4)} Face 40385 9792 9763 20831 {rgb=(.7 .6 .4)} Face 40386 9763 9683 20831 {rgb=(.7 .6 .4)} Face 40387 9683 9708 20831 {rgb=(.7 .6 .4)} Face 40388 9708 9792 20831 {rgb=(.7 .6 .4)} Face 40389 9907 9876 20832 {rgb=(.7 .6 .4)} Face 40390 9876 9763 20832 {rgb=(.7 .6 .4)} Face 40391 9763 9792 20832 {rgb=(.7 .6 .4)} Face 40392 9792 9907 20832 {rgb=(.7 .6 .4)} Face 40393 9971 9949 20833 {rgb=(.7 .6 .4)} Face 40394 9949 9876 20833 {rgb=(.7 .6 .4)} Face 40395 9876 9907 20833 {rgb=(.7 .6 .4)} Face 40396 9907 9971 20833 {rgb=(.7 .6 .4)} Face 40397 10020 9994 20834 {rgb=(.7 .6 .4)} Face 40398 9994 9949 20834 {rgb=(.7 .6 .4)} Face 40399 9949 9971 20834 {rgb=(.7 .6 .4)} Face 40400 9971 10020 20834 {rgb=(.7 .6 .4)} Face 40401 10068 10053 20835 {rgb=(.7 .6 .4)} Face 40402 10053 10020 20835 {rgb=(.7 .6 .4)} Face 40403 10020 10032 20835 {rgb=(.7 .6 .4)} Face 40404 10032 10068 20835 {rgb=(.7 .6 .4)} Face 40405 10087 10071 20836 {rgb=(.7 .6 .4)} Face 40406 10071 10053 20836 {rgb=(.7 .6 .4)} Face 40407 10053 10068 20836 {rgb=(.7 .6 .4)} Face 40408 10068 10087 20836 {rgb=(.7 .6 .4)} Face 40409 10048 10036 20837 {rgb=(.7 .6 .4)} Face 40410 10036 10071 20837 {rgb=(.7 .6 .4)} Face 40411 10071 10087 20837 {rgb=(.7 .6 .4)} Face 40412 10087 10048 20837 {rgb=(.7 .6 .4)} Face 40413 9995 9985 20838 {rgb=(.7 .6 .4)} Face 40414 9985 10036 20838 {rgb=(.7 .6 .4)} Face 40415 10036 10048 20838 {rgb=(.7 .6 .4)} Face 40416 10048 9995 20838 {rgb=(.7 .6 .4)} Face 40417 9945 9940 20839 {rgb=(.7 .6 .4)} Face 40418 9940 9985 20839 {rgb=(.7 .6 .4)} Face 40419 9985 9995 20839 {rgb=(.7 .6 .4)} Face 40420 9995 9945 20839 {rgb=(.7 .6 .4)} Face 40421 9853 9851 20840 {rgb=(.7 .6 .4)} Face 40422 9851 9940 20840 {rgb=(.7 .6 .4)} Face 40423 9940 9945 20840 {rgb=(.7 .6 .4)} Face 40424 9945 9853 20840 {rgb=(.7 .6 .4)} Face 40425 9736 9743 20841 {rgb=(.7 .6 .4)} Face 40426 9743 9851 20841 {rgb=(.7 .6 .4)} Face 40427 9851 9853 20841 {rgb=(.7 .6 .4)} Face 40428 9853 9736 20841 {rgb=(.7 .6 .4)} Face 40429 9691 9697 20842 {rgb=(.7 .6 .4)} Face 40430 9697 9743 20842 {rgb=(.7 .6 .4)} Face 40431 9743 9736 20842 {rgb=(.7 .6 .4)} Face 40432 9736 9691 20842 {rgb=(.7 .6 .4)} Face 40433 9673 9687 20843 {rgb=(.7 .6 .4)} Face 40434 9687 9697 20843 {rgb=(.7 .6 .4)} Face 40435 9697 9691 20843 {rgb=(.7 .6 .4)} Face 40436 9691 9673 20843 {rgb=(.7 .6 .4)} Face 40437 9704 9708 20844 {rgb=(.7 .6 .4)} Face 40438 9708 9687 20844 {rgb=(.7 .6 .4)} Face 40439 9687 9673 20844 {rgb=(.7 .6 .4)} Face 40440 9673 9704 20844 {rgb=(.7 .6 .4)} Face 40441 9791 9792 20845 {rgb=(.7 .6 .4)} Face 40442 9792 9708 20845 {rgb=(.7 .6 .4)} Face 40443 9708 9704 20845 {rgb=(.7 .6 .4)} Face 40444 9704 9791 20845 {rgb=(.7 .6 .4)} Face 40445 9912 9907 20846 {rgb=(.7 .6 .4)} Face 40446 9907 9792 20846 {rgb=(.7 .6 .4)} Face 40447 9792 9791 20846 {rgb=(.7 .6 .4)} Face 40448 9791 9912 20846 {rgb=(.7 .6 .4)} Face 40449 9976 9971 20847 {rgb=(.7 .6 .4)} Face 40450 9971 9907 20847 {rgb=(.7 .6 .4)} Face 40451 9907 9912 20847 {rgb=(.7 .6 .4)} Face 40452 9912 9976 20847 {rgb=(.7 .6 .4)} Face 40453 10032 10020 20848 {rgb=(.7 .6 .4)} Face 40454 10020 9971 20848 {rgb=(.7 .6 .4)} Face 40455 9971 9976 20848 {rgb=(.7 .6 .4)} Face 40456 9976 10032 20848 {rgb=(.7 .6 .4)} Face 40457 10058 10068 20849 {rgb=(.7 .6 .4)} Face 40458 10068 10032 20849 {rgb=(.7 .6 .4)} Face 40459 10032 10025 20849 {rgb=(.7 .6 .4)} Face 40460 10025 10058 20849 {rgb=(.7 .6 .4)} Face 40461 10081 10087 20850 {rgb=(.7 .6 .4)} Face 40462 10087 10068 20850 {rgb=(.7 .6 .4)} Face 40463 10068 10058 20850 {rgb=(.7 .6 .4)} Face 40464 10058 10081 20850 {rgb=(.7 .6 .4)} Face 40465 10041 10048 20851 {rgb=(.7 .6 .4)} Face 40466 10048 10087 20851 {rgb=(.7 .6 .4)} Face 40467 10087 10081 20851 {rgb=(.7 .6 .4)} Face 40468 10081 10041 20851 {rgb=(.7 .6 .4)} Face 40469 9984 9995 20852 {rgb=(.7 .6 .4)} Face 40470 9995 10048 20852 {rgb=(.7 .6 .4)} Face 40471 10048 10041 20852 {rgb=(.7 .6 .4)} Face 40472 10041 9984 20852 {rgb=(.7 .6 .4)} Face 40473 9937 9945 20853 {rgb=(.7 .6 .4)} Face 40474 9945 9995 20853 {rgb=(.7 .6 .4)} Face 40475 9995 9984 20853 {rgb=(.7 .6 .4)} Face 40476 9984 9937 20853 {rgb=(.7 .6 .4)} Face 40477 9835 9853 20854 {rgb=(.7 .6 .4)} Face 40478 9853 9945 20854 {rgb=(.7 .6 .4)} Face 40479 9945 9937 20854 {rgb=(.7 .6 .4)} Face 40480 9937 9835 20854 {rgb=(.7 .6 .4)} Face 40481 9717 9736 20855 {rgb=(.7 .6 .4)} Face 40482 9736 9853 20855 {rgb=(.7 .6 .4)} Face 40483 9853 9835 20855 {rgb=(.7 .6 .4)} Face 40484 9835 9717 20855 {rgb=(.7 .6 .4)} Face 40485 9661 9691 20856 {rgb=(.7 .6 .4)} Face 40486 9691 9736 20856 {rgb=(.7 .6 .4)} Face 40487 9736 9717 20856 {rgb=(.7 .6 .4)} Face 40488 9717 9661 20856 {rgb=(.7 .6 .4)} Face 40489 9645 9673 20857 {rgb=(.7 .6 .4)} Face 40490 9673 9691 20857 {rgb=(.7 .6 .4)} Face 40491 9691 9661 20857 {rgb=(.7 .6 .4)} Face 40492 9661 9645 20857 {rgb=(.7 .6 .4)} Face 40493 9674 9704 20858 {rgb=(.7 .6 .4)} Face 40494 9704 9673 20858 {rgb=(.7 .6 .4)} Face 40495 9673 9645 20858 {rgb=(.7 .6 .4)} Face 40496 9645 9674 20858 {rgb=(.7 .6 .4)} Face 40497 9767 9791 20859 {rgb=(.7 .6 .4)} Face 40498 9791 9704 20859 {rgb=(.7 .6 .4)} Face 40499 9704 9674 20859 {rgb=(.7 .6 .4)} Face 40500 9674 9767 20859 {rgb=(.7 .6 .4)} Face 40501 9897 9912 20860 {rgb=(.7 .6 .4)} Face 40502 9912 9791 20860 {rgb=(.7 .6 .4)} Face 40503 9791 9767 20860 {rgb=(.7 .6 .4)} Face 40504 9767 9897 20860 {rgb=(.7 .6 .4)} Face 40505 9968 9976 20861 {rgb=(.7 .6 .4)} Face 40506 9976 9912 20861 {rgb=(.7 .6 .4)} Face 40507 9912 9897 20861 {rgb=(.7 .6 .4)} Face 40508 9897 9968 20861 {rgb=(.7 .6 .4)} Face 40509 10025 10032 20862 {rgb=(.7 .6 .4)} Face 40510 10032 9976 20862 {rgb=(.7 .6 .4)} Face 40511 9976 9968 20862 {rgb=(.7 .6 .4)} Face 40512 9968 10025 20862 {rgb=(.7 .6 .4)} Face 40513 10045 10058 20863 {rgb=(.7 .6 .4)} Face 40514 10058 10025 20863 {rgb=(.7 .6 .4)} Face 40515 10025 10006 20863 {rgb=(.7 .6 .4)} Face 40516 10006 10045 20863 {rgb=(.7 .6 .4)} Face 40517 10060 10081 20864 {rgb=(.7 .6 .4)} Face 40518 10081 10058 20864 {rgb=(.7 .6 .4)} Face 40519 10058 10045 20864 {rgb=(.7 .6 .4)} Face 40520 10045 10060 20864 {rgb=(.7 .6 .4)} Face 40521 10023 10041 20865 {rgb=(.7 .6 .4)} Face 40522 10041 10081 20865 {rgb=(.7 .6 .4)} Face 40523 10081 10060 20865 {rgb=(.7 .6 .4)} Face 40524 10060 10023 20865 {rgb=(.7 .6 .4)} Face 40525 9970 9984 20866 {rgb=(.7 .6 .4)} Face 40526 9984 10041 20866 {rgb=(.7 .6 .4)} Face 40527 10041 10023 20866 {rgb=(.7 .6 .4)} Face 40528 10023 9970 20866 {rgb=(.7 .6 .4)} Face 40529 9921 9937 20867 {rgb=(.7 .6 .4)} Face 40530 9937 9984 20867 {rgb=(.7 .6 .4)} Face 40531 9984 9970 20867 {rgb=(.7 .6 .4)} Face 40532 9970 9921 20867 {rgb=(.7 .6 .4)} Face 40533 9804 9835 20868 {rgb=(.7 .6 .4)} Face 40534 9835 9937 20868 {rgb=(.7 .6 .4)} Face 40535 9937 9921 20868 {rgb=(.7 .6 .4)} Face 40536 9921 9804 20868 {rgb=(.7 .6 .4)} Face 40537 9672 9717 20869 {rgb=(.7 .6 .4)} Face 40538 9717 9835 20869 {rgb=(.7 .6 .4)} Face 40539 9835 9804 20869 {rgb=(.7 .6 .4)} Face 40540 9804 9672 20869 {rgb=(.7 .6 .4)} Face 40541 9620 9661 20870 {rgb=(.7 .6 .4)} Face 40542 9661 9717 20870 {rgb=(.7 .6 .4)} Face 40543 9717 9672 20870 {rgb=(.7 .6 .4)} Face 40544 9672 9620 20870 {rgb=(.7 .6 .4)} Face 40545 9599 9645 20871 {rgb=(.7 .6 .4)} Face 40546 9645 9661 20871 {rgb=(.7 .6 .4)} Face 40547 9661 9620 20871 {rgb=(.7 .6 .4)} Face 40548 9620 9599 20871 {rgb=(.7 .6 .4)} Face 40549 9635 9674 20872 {rgb=(.7 .6 .4)} Face 40550 9674 9645 20872 {rgb=(.7 .6 .4)} Face 40551 9645 9599 20872 {rgb=(.7 .6 .4)} Face 40552 9599 9635 20872 {rgb=(.7 .6 .4)} Face 40553 9722 9767 20873 {rgb=(.7 .6 .4)} Face 40554 9767 9674 20873 {rgb=(.7 .6 .4)} Face 40555 9674 9635 20873 {rgb=(.7 .6 .4)} Face 40556 9635 9722 20873 {rgb=(.7 .6 .4)} Face 40557 9869 9897 20874 {rgb=(.7 .6 .4)} Face 40558 9897 9767 20874 {rgb=(.7 .6 .4)} Face 40559 9767 9722 20874 {rgb=(.7 .6 .4)} Face 40560 9722 9869 20874 {rgb=(.7 .6 .4)} Face 40561 9953 9968 20875 {rgb=(.7 .6 .4)} Face 40562 9968 9897 20875 {rgb=(.7 .6 .4)} Face 40563 9897 9869 20875 {rgb=(.7 .6 .4)} Face 40564 9869 9953 20875 {rgb=(.7 .6 .4)} Face 40565 10006 10025 20876 {rgb=(.7 .6 .4)} Face 40566 10025 9968 20876 {rgb=(.7 .6 .4)} Face 40567 9968 9953 20876 {rgb=(.7 .6 .4)} Face 40568 9953 10006 20876 {rgb=(.7 .6 .4)} Face 40569 10022 10045 20877 {rgb=(.7 .6 .4)} Face 40570 10045 10006 20877 {rgb=(.7 .6 .4)} Face 40571 10006 9990 20877 {rgb=(.7 .6 .4)} Face 40572 9990 10022 20877 {rgb=(.7 .6 .4)} Face 40573 10042 10060 20878 {rgb=(.7 .6 .4)} Face 40574 10060 10045 20878 {rgb=(.7 .6 .4)} Face 40575 10045 10022 20878 {rgb=(.7 .6 .4)} Face 40576 10022 10042 20878 {rgb=(.7 .6 .4)} Face 40577 10004 10023 20879 {rgb=(.7 .6 .4)} Face 40578 10023 10060 20879 {rgb=(.7 .6 .4)} Face 40579 10060 10042 20879 {rgb=(.7 .6 .4)} Face 40580 10042 10004 20879 {rgb=(.7 .6 .4)} Face 40581 9955 9970 20880 {rgb=(.7 .6 .4)} Face 40582 9970 10023 20880 {rgb=(.7 .6 .4)} Face 40583 10023 10004 20880 {rgb=(.7 .6 .4)} Face 40584 10004 9955 20880 {rgb=(.7 .6 .4)} Face 40585 9902 9921 20881 {rgb=(.7 .6 .4)} Face 40586 9921 9970 20881 {rgb=(.7 .6 .4)} Face 40587 9970 9955 20881 {rgb=(.7 .6 .4)} Face 40588 9955 9902 20881 {rgb=(.7 .6 .4)} Face 40589 9781 9804 20882 {rgb=(.7 .6 .4)} Face 40590 9804 9921 20882 {rgb=(.7 .6 .4)} Face 40591 9921 9902 20882 {rgb=(.7 .6 .4)} Face 40592 9902 9781 20882 {rgb=(.7 .6 .4)} Face 40593 9648 9672 20883 {rgb=(.7 .6 .4)} Face 40594 9672 9804 20883 {rgb=(.7 .6 .4)} Face 40595 9804 9781 20883 {rgb=(.7 .6 .4)} Face 40596 9781 9648 20883 {rgb=(.7 .6 .4)} Face 40597 9575 9620 20884 {rgb=(.7 .6 .4)} Face 40598 9620 9672 20884 {rgb=(.7 .6 .4)} Face 40599 9672 9648 20884 {rgb=(.7 .6 .4)} Face 40600 9648 9575 20884 {rgb=(.7 .6 .4)} Face 40601 9564 9599 20885 {rgb=(.7 .6 .4)} Face 40602 9599 9620 20885 {rgb=(.7 .6 .4)} Face 40603 9620 9575 20885 {rgb=(.7 .6 .4)} Face 40604 9575 9564 20885 {rgb=(.7 .6 .4)} Face 40605 9607 9635 20886 {rgb=(.7 .6 .4)} Face 40606 9635 9599 20886 {rgb=(.7 .6 .4)} Face 40607 9599 9564 20886 {rgb=(.7 .6 .4)} Face 40608 9564 9607 20886 {rgb=(.7 .6 .4)} Face 40609 9698 9722 20887 {rgb=(.7 .6 .4)} Face 40610 9722 9635 20887 {rgb=(.7 .6 .4)} Face 40611 9635 9607 20887 {rgb=(.7 .6 .4)} Face 40612 9607 9698 20887 {rgb=(.7 .6 .4)} Face 40613 9848 9869 20888 {rgb=(.7 .6 .4)} Face 40614 9869 9722 20888 {rgb=(.7 .6 .4)} Face 40615 9722 9698 20888 {rgb=(.7 .6 .4)} Face 40616 9698 9848 20888 {rgb=(.7 .6 .4)} Face 40617 9941 9953 20889 {rgb=(.7 .6 .4)} Face 40618 9953 9869 20889 {rgb=(.7 .6 .4)} Face 40619 9869 9848 20889 {rgb=(.7 .6 .4)} Face 40620 9848 9941 20889 {rgb=(.7 .6 .4)} Face 40621 9990 10006 20890 {rgb=(.7 .6 .4)} Face 40622 10006 9953 20890 {rgb=(.7 .6 .4)} Face 40623 9953 9941 20890 {rgb=(.7 .6 .4)} Face 40624 9941 9990 20890 {rgb=(.7 .6 .4)} Face 40625 8737 9238 20891 {rgb=(.7 .6 .4)} Face 40626 9238 9253 20891 {rgb=(.7 .6 .4)} Face 40627 9253 8897 20891 {rgb=(.7 .6 .4)} Face 40628 8897 8737 20891 {rgb=(.7 .6 .4)} Face 40629 8897 9253 20892 {rgb=(.7 .6 .4)} Face 40630 9253 9339 20892 {rgb=(.7 .6 .4)} Face 40631 9339 8954 20892 {rgb=(.7 .6 .4)} Face 40632 8954 8897 20892 {rgb=(.7 .6 .4)} Face 40633 8954 9339 20893 {rgb=(.7 .6 .4)} Face 40634 9339 9373 20893 {rgb=(.7 .6 .4)} Face 40635 9373 9050 20893 {rgb=(.7 .6 .4)} Face 40636 9050 8954 20893 {rgb=(.7 .6 .4)} Face 40637 9050 9373 20894 {rgb=(.7 .6 .4)} Face 40638 9373 9391 20894 {rgb=(.7 .6 .4)} Face 40639 9391 8841 20894 {rgb=(.7 .6 .4)} Face 40640 8841 9050 20894 {rgb=(.7 .6 .4)} Face 40641 9547 9520 20895 {rgb=(.7 .6 .4)} Face 40642 9520 9457 20895 {rgb=(.7 .6 .4)} Face 40643 9457 9493 20895 {rgb=(.7 .6 .4)} Face 40644 9493 9547 20895 {rgb=(.7 .6 .4)} Face 40645 9570 9553 20896 {rgb=(.7 .6 .4)} Face 40646 9553 9520 20896 {rgb=(.7 .6 .4)} Face 40647 9520 9547 20896 {rgb=(.7 .6 .4)} Face 40648 9547 9570 20896 {rgb=(.7 .6 .4)} Face 40649 9429 9409 20897 {rgb=(.7 .6 .4)} Face 40650 9409 9553 20897 {rgb=(.7 .6 .4)} Face 40651 9553 9570 20897 {rgb=(.7 .6 .4)} Face 40652 9570 9429 20897 {rgb=(.7 .6 .4)} Face 40653 9253 9238 20898 {rgb=(.7 .6 .4)} Face 40654 9238 9409 20898 {rgb=(.7 .6 .4)} Face 40655 9409 9429 20898 {rgb=(.7 .6 .4)} Face 40656 9429 9253 20898 {rgb=(.7 .6 .4)} Face 40657 5549 5546 20899 {rgb=(.7 .6 .4)} Face 40658 5546 8737 20899 {rgb=(.7 .6 .4)} Face 40659 8737 8897 20899 {rgb=(.7 .6 .4)} Face 40660 8897 5549 20899 {rgb=(.7 .6 .4)} Face 40661 6971 6926 20900 {rgb=(.7 .6 .4)} Face 40662 6926 5533 20900 {rgb=(.7 .6 .4)} Face 40663 5533 5534 20900 {rgb=(.7 .6 .4)} Face 40664 5534 6971 20900 {rgb=(.7 .6 .4)} Face 40665 7705 7631 20901 {rgb=(.7 .6 .4)} Face 40666 7631 6926 20901 {rgb=(.7 .6 .4)} Face 40667 6926 6971 20901 {rgb=(.7 .6 .4)} Face 40668 6971 7705 20901 {rgb=(.7 .6 .4)} Face 40669 9332 9235 20902 {rgb=(.7 .6 .4)} Face 40670 9235 7631 20902 {rgb=(.7 .6 .4)} Face 40671 7631 7705 20902 {rgb=(.7 .6 .4)} Face 40672 7705 9332 20902 {rgb=(.7 .6 .4)} Face 40673 9427 9406 20903 {rgb=(.7 .6 .4)} Face 40674 9406 9293 20903 {rgb=(.7 .6 .4)} Face 40675 9293 9332 20903 {rgb=(.7 .6 .4)} Face 40676 9332 9427 20903 {rgb=(.7 .6 .4)} Face 40677 9493 9457 20904 {rgb=(.7 .6 .4)} Face 40678 9457 9406 20904 {rgb=(.7 .6 .4)} Face 40679 9406 9427 20904 {rgb=(.7 .6 .4)} Face 40680 9427 9493 20904 {rgb=(.7 .6 .4)} Face 40681 9476 9446 20905 {rgb=(.7 .6 .4)} Face 40682 9446 9357 20905 {rgb=(.7 .6 .4)} Face 40683 9357 9374 20905 {rgb=(.7 .6 .4)} Face 40684 9374 9476 20905 {rgb=(.7 .6 .4)} Face 40685 9374 9357 20906 {rgb=(.7 .6 .4)} Face 40686 9357 7794 20906 {rgb=(.7 .6 .4)} Face 40687 7794 7954 20906 {rgb=(.7 .6 .4)} Face 40688 7954 9374 20906 {rgb=(.7 .6 .4)} Face 40689 9631 9570 20907 {rgb=(.7 .6 .4)} Face 40690 9570 9547 20907 {rgb=(.7 .6 .4)} Face 40691 9547 9563 20907 {rgb=(.7 .6 .4)} Face 40692 9563 9631 20907 {rgb=(.7 .6 .4)} Face 40693 9563 9547 20908 {rgb=(.7 .6 .4)} Face 40694 9547 9493 20908 {rgb=(.7 .6 .4)} Face 40695 9493 9518 20908 {rgb=(.7 .6 .4)} Face 40696 9518 9563 20908 {rgb=(.7 .6 .4)} Face 40697 9518 9493 20909 {rgb=(.7 .6 .4)} Face 40698 9493 9427 20909 {rgb=(.7 .6 .4)} Face 40699 9427 9446 20909 {rgb=(.7 .6 .4)} Face 40700 9446 9518 20909 {rgb=(.7 .6 .4)} Face 40701 9446 9427 20910 {rgb=(.7 .6 .4)} Face 40702 9427 9332 20910 {rgb=(.7 .6 .4)} Face 40703 9332 9357 20910 {rgb=(.7 .6 .4)} Face 40704 9357 9446 20910 {rgb=(.7 .6 .4)} Face 40705 9357 9332 20911 {rgb=(.7 .6 .4)} Face 40706 9332 7705 20911 {rgb=(.7 .6 .4)} Face 40707 7705 7794 20911 {rgb=(.7 .6 .4)} Face 40708 7794 9357 20911 {rgb=(.7 .6 .4)} Face 40709 7794 7705 20912 {rgb=(.7 .6 .4)} Face 40710 7705 6971 20912 {rgb=(.7 .6 .4)} Face 40711 6971 7019 20912 {rgb=(.7 .6 .4)} Face 40712 7019 7794 20912 {rgb=(.7 .6 .4)} Face 40713 7019 6971 20913 {rgb=(.7 .6 .4)} Face 40714 6971 5534 20913 {rgb=(.7 .6 .4)} Face 40715 5534 5532 20913 {rgb=(.7 .6 .4)} Face 40716 5532 7019 20913 {rgb=(.7 .6 .4)} Face 40717 9603 9563 20914 {rgb=(.7 .6 .4)} Face 40718 9563 9518 20914 {rgb=(.7 .6 .4)} Face 40719 9518 9541 20914 {rgb=(.7 .6 .4)} Face 40720 9541 9603 20914 {rgb=(.7 .6 .4)} Face 40721 9541 9518 20915 {rgb=(.7 .6 .4)} Face 40722 9518 9446 20915 {rgb=(.7 .6 .4)} Face 40723 9446 9476 20915 {rgb=(.7 .6 .4)} Face 40724 9476 9541 20915 {rgb=(.7 .6 .4)} Face 40725 7954 7794 20916 {rgb=(.7 .6 .4)} Face 40726 7794 7019 20916 {rgb=(.7 .6 .4)} Face 40727 7019 7151 20916 {rgb=(.7 .6 .4)} Face 40728 7151 7954 20916 {rgb=(.7 .6 .4)} Face 40729 7151 7019 20917 {rgb=(.7 .6 .4)} Face 40730 7019 5532 20917 {rgb=(.7 .6 .4)} Face 40731 5532 5531 20917 {rgb=(.7 .6 .4)} Face 40732 5531 7151 20917 {rgb=(.7 .6 .4)} Face 40733 5548 5549 20918 {rgb=(.7 .6 .4)} Face 40734 5549 8897 20918 {rgb=(.7 .6 .4)} Face 40735 8897 8954 20918 {rgb=(.7 .6 .4)} Face 40736 8954 5548 20918 {rgb=(.7 .6 .4)} Face 40737 9339 9253 20919 {rgb=(.7 .6 .4)} Face 40738 9253 9429 20919 {rgb=(.7 .6 .4)} Face 40739 9429 9445 20919 {rgb=(.7 .6 .4)} Face 40740 9445 9339 20919 {rgb=(.7 .6 .4)} Face 40741 9445 9429 20920 {rgb=(.7 .6 .4)} Face 40742 9429 9570 20920 {rgb=(.7 .6 .4)} Face 40743 9570 9631 20920 {rgb=(.7 .6 .4)} Face 40744 9631 9445 20920 {rgb=(.7 .6 .4)} Face 40745 9603 9586 20921 {rgb=(.7 .6 .4)} Face 40746 9586 9688 20921 {rgb=(.7 .6 .4)} Face 40747 9688 9678 20921 {rgb=(.7 .6 .4)} Face 40748 9678 9603 20921 {rgb=(.7 .6 .4)} Face 40749 9678 9688 20922 {rgb=(.7 .6 .4)} Face 40750 9688 9505 20922 {rgb=(.7 .6 .4)} Face 40751 9505 9494 20922 {rgb=(.7 .6 .4)} Face 40752 9494 9678 20922 {rgb=(.7 .6 .4)} Face 40753 9494 9505 20923 {rgb=(.7 .6 .4)} Face 40754 9505 9391 20923 {rgb=(.7 .6 .4)} Face 40755 9391 9373 20923 {rgb=(.7 .6 .4)} Face 40756 9373 9494 20923 {rgb=(.7 .6 .4)} Face 40757 9050 8841 20924 {rgb=(.7 .6 .4)} Face 40758 8841 5544 20924 {rgb=(.7 .6 .4)} Face 40759 5544 5547 20924 {rgb=(.7 .6 .4)} Face 40760 5547 9050 20924 {rgb=(.7 .6 .4)} Face 40761 9541 9534 20925 {rgb=(.7 .6 .4)} Face 40762 9534 9586 20925 {rgb=(.7 .6 .4)} Face 40763 9586 9603 20925 {rgb=(.7 .6 .4)} Face 40764 9603 9541 20925 {rgb=(.7 .6 .4)} Face 40765 9678 9631 20926 {rgb=(.7 .6 .4)} Face 40766 9631 9563 20926 {rgb=(.7 .6 .4)} Face 40767 9563 9603 20926 {rgb=(.7 .6 .4)} Face 40768 9603 9678 20926 {rgb=(.7 .6 .4)} Face 40769 9494 9445 20927 {rgb=(.7 .6 .4)} Face 40770 9445 9631 20927 {rgb=(.7 .6 .4)} Face 40771 9631 9678 20927 {rgb=(.7 .6 .4)} Face 40772 9678 9494 20927 {rgb=(.7 .6 .4)} Face 40773 9373 9339 20928 {rgb=(.7 .6 .4)} Face 40774 9339 9445 20928 {rgb=(.7 .6 .4)} Face 40775 9445 9494 20928 {rgb=(.7 .6 .4)} Face 40776 9494 9373 20928 {rgb=(.7 .6 .4)} Face 40777 5547 5548 20929 {rgb=(.7 .6 .4)} Face 40778 5548 8954 20929 {rgb=(.7 .6 .4)} Face 40779 8954 9050 20929 {rgb=(.7 .6 .4)} Face 40780 9050 5547 20929 {rgb=(.7 .6 .4)} Face 40781 7247 7151 20930 {rgb=(.7 .6 .4)} Face 40782 7151 5531 20930 {rgb=(.7 .6 .4)} Face 40783 5531 5530 20930 {rgb=(.7 .6 .4)} Face 40784 5530 7247 20930 {rgb=(.7 .6 .4)} Face 40785 8024 7954 20931 {rgb=(.7 .6 .4)} Face 40786 7954 7151 20931 {rgb=(.7 .6 .4)} Face 40787 7151 7247 20931 {rgb=(.7 .6 .4)} Face 40788 7247 8024 20931 {rgb=(.7 .6 .4)} Face 40789 9375 9374 20932 {rgb=(.7 .6 .4)} Face 40790 9374 7954 20932 {rgb=(.7 .6 .4)} Face 40791 7954 8024 20932 {rgb=(.7 .6 .4)} Face 40792 8024 9375 20932 {rgb=(.7 .6 .4)} Face 40793 9471 9476 20933 {rgb=(.7 .6 .4)} Face 40794 9476 9374 20933 {rgb=(.7 .6 .4)} Face 40795 9374 9375 20933 {rgb=(.7 .6 .4)} Face 40796 9375 9471 20933 {rgb=(.7 .6 .4)} Face 40797 9534 9541 20934 {rgb=(.7 .6 .4)} Face 40798 9541 9476 20934 {rgb=(.7 .6 .4)} Face 40799 9476 9471 20934 {rgb=(.7 .6 .4)} Face 40800 9471 9534 20934 {rgb=(.7 .6 .4)} Face 40801 9841 10022 20935 {rgb=(.7 .6 .4)} Face 40802 10022 9990 20935 {rgb=(.7 .6 .4)} Face 40803 9990 9843 20935 {rgb=(.7 .6 .4)} Face 40804 9843 9841 20935 {rgb=(.7 .6 .4)} Face 40805 9843 9990 20936 {rgb=(.7 .6 .4)} Face 40806 9990 9941 20936 {rgb=(.7 .6 .4)} Face 40807 9941 9831 20936 {rgb=(.7 .6 .4)} Face 40808 9831 9843 20936 {rgb=(.7 .6 .4)} Face 40809 9831 9941 20937 {rgb=(.7 .6 .4)} Face 40810 9941 9848 20937 {rgb=(.7 .6 .4)} Face 40811 9848 9664 20937 {rgb=(.7 .6 .4)} Face 40812 9664 9831 20937 {rgb=(.7 .6 .4)} Face 40813 9664 9848 20938 {rgb=(.7 .6 .4)} Face 40814 9848 9698 20938 {rgb=(.7 .6 .4)} Face 40815 9698 9498 20938 {rgb=(.7 .6 .4)} Face 40816 9498 9664 20938 {rgb=(.7 .6 .4)} Face 40817 9498 9698 20939 {rgb=(.7 .6 .4)} Face 40818 9698 9607 20939 {rgb=(.7 .6 .4)} Face 40819 9607 9399 20939 {rgb=(.7 .6 .4)} Face 40820 9399 9498 20939 {rgb=(.7 .6 .4)} Face 40821 9534 9471 20940 {rgb=(.7 .6 .4)} Face 40822 9471 9557 20940 {rgb=(.7 .6 .4)} Face 40823 9557 9574 20940 {rgb=(.7 .6 .4)} Face 40824 9574 9534 20940 {rgb=(.7 .6 .4)} Face 40825 9831 9688 20941 {rgb=(.7 .6 .4)} Face 40826 9688 9586 20941 {rgb=(.7 .6 .4)} Face 40827 9586 9843 20941 {rgb=(.7 .6 .4)} Face 40828 9843 9831 20941 {rgb=(.7 .6 .4)} Face 40829 5528 5536 20942 {rgb=(.7 .6 .4)} Face 40830 5536 7410 20942 {rgb=(.7 .6 .4)} Face 40831 7410 7259 20942 {rgb=(.7 .6 .4)} Face 40832 7259 5528 20942 {rgb=(.7 .6 .4)} Face 40833 7259 7410 20943 {rgb=(.7 .6 .4)} Face 40834 7410 9352 20943 {rgb=(.7 .6 .4)} Face 40835 9352 9353 20943 {rgb=(.7 .6 .4)} Face 40836 9353 7259 20943 {rgb=(.7 .6 .4)} Face 40837 9458 9575 20944 {rgb=(.7 .6 .4)} Face 40838 9575 9648 20944 {rgb=(.7 .6 .4)} Face 40839 9648 9584 20944 {rgb=(.7 .6 .4)} Face 40840 9584 9458 20944 {rgb=(.7 .6 .4)} Face 40841 9584 9648 20945 {rgb=(.7 .6 .4)} Face 40842 9648 9781 20945 {rgb=(.7 .6 .4)} Face 40843 9781 9764 20945 {rgb=(.7 .6 .4)} Face 40844 9764 9584 20945 {rgb=(.7 .6 .4)} Face 40845 9368 9356 20946 {rgb=(.7 .6 .4)} Face 40846 9356 9353 20946 {rgb=(.7 .6 .4)} Face 40847 9353 9458 20946 {rgb=(.7 .6 .4)} Face 40848 9458 9368 20946 {rgb=(.7 .6 .4)} Face 40849 9399 9607 20947 {rgb=(.7 .6 .4)} Face 40850 9607 9564 20947 {rgb=(.7 .6 .4)} Face 40851 9564 9352 20947 {rgb=(.7 .6 .4)} Face 40852 9352 9399 20947 {rgb=(.7 .6 .4)} Face 40853 9195 9531 20948 {rgb=(.7 .6 .4)} Face 40854 9531 9536 20948 {rgb=(.7 .6 .4)} Face 40855 9536 9375 20948 {rgb=(.7 .6 .4)} Face 40856 9375 9195 20948 {rgb=(.7 .6 .4)} Face 40857 9557 9471 20949 {rgb=(.7 .6 .4)} Face 40858 9471 9375 20949 {rgb=(.7 .6 .4)} Face 40859 9375 9536 20949 {rgb=(.7 .6 .4)} Face 40860 9536 9557 20949 {rgb=(.7 .6 .4)} Face 40861 9859 9902 20950 {rgb=(.7 .6 .4)} Face 40862 9902 9926 20950 {rgb=(.7 .6 .4)} Face 40863 9926 9898 20950 {rgb=(.7 .6 .4)} Face 40864 9898 9859 20950 {rgb=(.7 .6 .4)} Face 40865 9898 9926 20951 {rgb=(.7 .6 .4)} Face 40866 9926 9821 20951 {rgb=(.7 .6 .4)} Face 40867 9821 9789 20951 {rgb=(.7 .6 .4)} Face 40868 9789 9898 20951 {rgb=(.7 .6 .4)} Face 40869 9789 9821 20952 {rgb=(.7 .6 .4)} Face 40870 9821 9527 20952 {rgb=(.7 .6 .4)} Face 40871 9527 9509 20952 {rgb=(.7 .6 .4)} Face 40872 9509 9789 20952 {rgb=(.7 .6 .4)} Face 40873 9509 9527 20953 {rgb=(.7 .6 .4)} Face 40874 9527 9026 20953 {rgb=(.7 .6 .4)} Face 40875 9026 8963 20953 {rgb=(.7 .6 .4)} Face 40876 8963 9509 20953 {rgb=(.7 .6 .4)} Face 40877 8963 9026 20954 {rgb=(.7 .6 .4)} Face 40878 9026 7247 20954 {rgb=(.7 .6 .4)} Face 40879 7247 7200 20954 {rgb=(.7 .6 .4)} Face 40880 7200 8963 20954 {rgb=(.7 .6 .4)} Face 40881 7200 7247 20955 {rgb=(.7 .6 .4)} Face 40882 7247 5530 20955 {rgb=(.7 .6 .4)} Face 40883 5530 5529 20955 {rgb=(.7 .6 .4)} Face 40884 5529 7200 20955 {rgb=(.7 .6 .4)} Face 40885 9902 9955 20956 {rgb=(.7 .6 .4)} Face 40886 9955 9931 20956 {rgb=(.7 .6 .4)} Face 40887 9931 9926 20956 {rgb=(.7 .6 .4)} Face 40888 9926 9902 20956 {rgb=(.7 .6 .4)} Face 40889 9926 9931 20957 {rgb=(.7 .6 .4)} Face 40890 9931 9834 20957 {rgb=(.7 .6 .4)} Face 40891 9834 9821 20957 {rgb=(.7 .6 .4)} Face 40892 9821 9926 20957 {rgb=(.7 .6 .4)} Face 40893 9821 9834 20958 {rgb=(.7 .6 .4)} Face 40894 9834 9531 20958 {rgb=(.7 .6 .4)} Face 40895 9531 9527 20958 {rgb=(.7 .6 .4)} Face 40896 9527 9821 20958 {rgb=(.7 .6 .4)} Face 40897 9527 9531 20959 {rgb=(.7 .6 .4)} Face 40898 9531 9195 20959 {rgb=(.7 .6 .4)} Face 40899 9195 9026 20959 {rgb=(.7 .6 .4)} Face 40900 9026 9527 20959 {rgb=(.7 .6 .4)} Face 40901 9026 9195 20960 {rgb=(.7 .6 .4)} Face 40902 9195 8024 20960 {rgb=(.7 .6 .4)} Face 40903 8024 7247 20960 {rgb=(.7 .6 .4)} Face 40904 7247 9026 20960 {rgb=(.7 .6 .4)} Face 40905 9707 9724 20961 {rgb=(.7 .6 .4)} Face 40906 9724 9815 20961 {rgb=(.7 .6 .4)} Face 40907 9815 9787 20961 {rgb=(.7 .6 .4)} Face 40908 9787 9707 20961 {rgb=(.7 .6 .4)} Face 40909 9683 9763 20962 {rgb=(.7 .6 .4)} Face 40910 9763 9876 20962 {rgb=(.7 .6 .4)} Face 40911 9876 9654 20962 {rgb=(.7 .6 .4)} Face 40912 9654 9683 20962 {rgb=(.7 .6 .4)} Face 40913 7092 7153 20963 {rgb=(.7 .6 .4)} Face 40914 7153 5527 20963 {rgb=(.7 .6 .4)} Face 40915 5527 5526 20963 {rgb=(.7 .6 .4)} Face 40916 5526 7092 20963 {rgb=(.7 .6 .4)} Face 40917 9509 9489 20964 {rgb=(.7 .6 .4)} Face 40918 9489 9747 20964 {rgb=(.7 .6 .4)} Face 40919 9747 9789 20964 {rgb=(.7 .6 .4)} Face 40920 9789 9509 20964 {rgb=(.7 .6 .4)} Face 40921 9536 9531 20965 {rgb=(.7 .6 .4)} Face 40922 9531 9834 20965 {rgb=(.7 .6 .4)} Face 40923 9834 9735 20965 {rgb=(.7 .6 .4)} Face 40924 9735 9536 20965 {rgb=(.7 .6 .4)} Face 40925 9709 9557 20966 {rgb=(.7 .6 .4)} Face 40926 9557 9536 20966 {rgb=(.7 .6 .4)} Face 40927 9536 9735 20966 {rgb=(.7 .6 .4)} Face 40928 9735 9709 20966 {rgb=(.7 .6 .4)} Face 40929 9955 10004 20967 {rgb=(.7 .6 .4)} Face 40930 10004 9875 20967 {rgb=(.7 .6 .4)} Face 40931 9875 9931 20967 {rgb=(.7 .6 .4)} Face 40932 9931 9955 20967 {rgb=(.7 .6 .4)} Face 40933 9764 9859 20968 {rgb=(.7 .6 .4)} Face 40934 9859 9815 20968 {rgb=(.7 .6 .4)} Face 40935 9815 9724 20968 {rgb=(.7 .6 .4)} Face 40936 9724 9764 20968 {rgb=(.7 .6 .4)} Face 40937 9849 9898 20969 {rgb=(.7 .6 .4)} Face 40938 9898 9789 20969 {rgb=(.7 .6 .4)} Face 40939 9789 9747 20969 {rgb=(.7 .6 .4)} Face 40940 9747 9849 20969 {rgb=(.7 .6 .4)} Face 40941 9489 9509 20970 {rgb=(.7 .6 .4)} Face 40942 9509 8963 20970 {rgb=(.7 .6 .4)} Face 40943 8963 9244 20970 {rgb=(.7 .6 .4)} Face 40944 9244 9489 20970 {rgb=(.7 .6 .4)} Face 40945 9584 9764 20971 {rgb=(.7 .6 .4)} Face 40946 9764 9724 20971 {rgb=(.7 .6 .4)} Face 40947 9724 9532 20971 {rgb=(.7 .6 .4)} Face 40948 9532 9584 20971 {rgb=(.7 .6 .4)} Face 40949 9345 9368 20972 {rgb=(.7 .6 .4)} Face 40950 9368 9532 20972 {rgb=(.7 .6 .4)} Face 40951 9532 9473 20972 {rgb=(.7 .6 .4)} Face 40952 9473 9345 20972 {rgb=(.7 .6 .4)} Face 40953 9517 9532 20973 {rgb=(.7 .6 .4)} Face 40954 9532 9724 20973 {rgb=(.7 .6 .4)} Face 40955 9724 9676 20973 {rgb=(.7 .6 .4)} Face 40956 9676 9517 20973 {rgb=(.7 .6 .4)} Face 40957 9353 9356 20974 {rgb=(.7 .6 .4)} Face 40958 9356 7111 20974 {rgb=(.7 .6 .4)} Face 40959 7111 7259 20974 {rgb=(.7 .6 .4)} Face 40960 7259 9353 20974 {rgb=(.7 .6 .4)} Face 40961 9664 9498 20975 {rgb=(.7 .6 .4)} Face 40962 9498 9391 20975 {rgb=(.7 .6 .4)} Face 40963 9391 9505 20975 {rgb=(.7 .6 .4)} Face 40964 9505 9664 20975 {rgb=(.7 .6 .4)} Face 40965 9875 10004 20976 {rgb=(.7 .6 .4)} Face 40966 10004 10042 20976 {rgb=(.7 .6 .4)} Face 40967 10042 9861 20976 {rgb=(.7 .6 .4)} Face 40968 9861 9875 20976 {rgb=(.7 .6 .4)} Face 40969 10042 10022 20977 {rgb=(.7 .6 .4)} Face 40970 10022 9841 20977 {rgb=(.7 .6 .4)} Face 40971 9841 9861 20977 {rgb=(.7 .6 .4)} Face 40972 9861 10042 20977 {rgb=(.7 .6 .4)} Face 40973 9815 9859 20978 {rgb=(.7 .6 .4)} Face 40974 9859 9898 20978 {rgb=(.7 .6 .4)} Face 40975 9898 9849 20978 {rgb=(.7 .6 .4)} Face 40976 9849 9815 20978 {rgb=(.7 .6 .4)} Face 40977 9809 9849 20979 {rgb=(.7 .6 .4)} Face 40978 9849 9747 20979 {rgb=(.7 .6 .4)} Face 40979 9747 9721 20979 {rgb=(.7 .6 .4)} Face 40980 9721 9809 20979 {rgb=(.7 .6 .4)} Face 40981 9174 9244 20980 {rgb=(.7 .6 .4)} Face 40982 9244 7153 20980 {rgb=(.7 .6 .4)} Face 40983 7153 7436 20980 {rgb=(.7 .6 .4)} Face 40984 7436 9174 20980 {rgb=(.7 .6 .4)} Face 40985 7200 5529 20981 {rgb=(.7 .6 .4)} Face 40986 5529 5527 20981 {rgb=(.7 .6 .4)} Face 40987 5527 7153 20981 {rgb=(.7 .6 .4)} Face 40988 7153 7200 20981 {rgb=(.7 .6 .4)} Face 40989 9244 8963 20982 {rgb=(.7 .6 .4)} Face 40990 8963 7200 20982 {rgb=(.7 .6 .4)} Face 40991 7200 7153 20982 {rgb=(.7 .6 .4)} Face 40992 7153 9244 20982 {rgb=(.7 .6 .4)} Face 40993 9834 9931 20983 {rgb=(.7 .6 .4)} Face 40994 9931 9875 20983 {rgb=(.7 .6 .4)} Face 40995 9875 9735 20983 {rgb=(.7 .6 .4)} Face 40996 9735 9834 20983 {rgb=(.7 .6 .4)} Face 40997 9787 9815 20984 {rgb=(.7 .6 .4)} Face 40998 9815 9849 20984 {rgb=(.7 .6 .4)} Face 40999 9849 9813 20984 {rgb=(.7 .6 .4)} Face 41000 9813 9787 20984 {rgb=(.7 .6 .4)} Face 41001 9841 9843 20985 {rgb=(.7 .6 .4)} Face 41002 9843 9586 20985 {rgb=(.7 .6 .4)} Face 41003 9586 9574 20985 {rgb=(.7 .6 .4)} Face 41004 9574 9841 20985 {rgb=(.7 .6 .4)} Face 41005 9875 9861 20986 {rgb=(.7 .6 .4)} Face 41006 9861 9709 20986 {rgb=(.7 .6 .4)} Face 41007 9709 9735 20986 {rgb=(.7 .6 .4)} Face 41008 9735 9875 20986 {rgb=(.7 .6 .4)} Face 41009 9902 9859 20987 {rgb=(.7 .6 .4)} Face 41010 9859 9764 20987 {rgb=(.7 .6 .4)} Face 41011 9764 9781 20987 {rgb=(.7 .6 .4)} Face 41012 9781 9902 20987 {rgb=(.7 .6 .4)} Face 41013 9458 9584 20988 {rgb=(.7 .6 .4)} Face 41014 9584 9532 20988 {rgb=(.7 .6 .4)} Face 41015 9532 9368 20988 {rgb=(.7 .6 .4)} Face 41016 9368 9458 20988 {rgb=(.7 .6 .4)} Face 41017 7410 8019 20989 {rgb=(.7 .6 .4)} Face 41018 8019 9399 20989 {rgb=(.7 .6 .4)} Face 41019 9399 9352 20989 {rgb=(.7 .6 .4)} Face 41020 9352 7410 20989 {rgb=(.7 .6 .4)} Face 41021 9688 9831 20990 {rgb=(.7 .6 .4)} Face 41022 9831 9664 20990 {rgb=(.7 .6 .4)} Face 41023 9664 9505 20990 {rgb=(.7 .6 .4)} Face 41024 9505 9688 20990 {rgb=(.7 .6 .4)} Face 41025 8019 5539 20991 {rgb=(.7 .6 .4)} Face 41026 5539 5544 20991 {rgb=(.7 .6 .4)} Face 41027 5544 8841 20991 {rgb=(.7 .6 .4)} Face 41028 8841 8019 20991 {rgb=(.7 .6 .4)} Face 41029 7111 5525 20992 {rgb=(.7 .6 .4)} Face 41030 5525 5528 20992 {rgb=(.7 .6 .4)} Face 41031 5528 7259 20992 {rgb=(.7 .6 .4)} Face 41032 7259 7111 20992 {rgb=(.7 .6 .4)} Face 41033 8019 7410 20993 {rgb=(.7 .6 .4)} Face 41034 7410 5536 20993 {rgb=(.7 .6 .4)} Face 41035 5536 5539 20993 {rgb=(.7 .6 .4)} Face 41036 5539 8019 20993 {rgb=(.7 .6 .4)} Face 41037 1689 3928 20994 {rgb=(.7 .6 .4)} Face 41038 3928 3947 20994 {rgb=(.7 .6 .4)} Face 41039 3947 1700 20994 {rgb=(.7 .6 .4)} Face 41040 1700 1689 20994 {rgb=(.7 .6 .4)} Face 41041 3947 3928 20995 {rgb=(.7 .6 .4)} Face 41042 3928 5525 20995 {rgb=(.7 .6 .4)} Face 41043 5525 5524 20995 {rgb=(.7 .6 .4)} Face 41044 5524 3947 20995 {rgb=(.7 .6 .4)} Face 41045 1556 1564 20996 {rgb=(.7 .6 .4)} Face 41046 1564 1871 20996 {rgb=(.7 .6 .4)} Face 41047 1871 1801 20996 {rgb=(.7 .6 .4)} Face 41048 1801 1556 20996 {rgb=(.7 .6 .4)} Face 41049 1298 1363 20997 {rgb=(.7 .6 .4)} Face 41050 1363 1564 20997 {rgb=(.7 .6 .4)} Face 41051 1564 1556 20997 {rgb=(.7 .6 .4)} Face 41052 1556 1298 20997 {rgb=(.7 .6 .4)} Face 41053 1025 1051 20998 {rgb=(.7 .6 .4)} Face 41054 1051 1026 20998 {rgb=(.7 .6 .4)} Face 41055 1026 992 20998 {rgb=(.7 .6 .4)} Face 41056 992 1025 20998 {rgb=(.7 .6 .4)} Face 41057 992 1026 20999 {rgb=(.7 .6 .4)} Face 41058 1026 1008 20999 {rgb=(.7 .6 .4)} Face 41059 1008 974 20999 {rgb=(.7 .6 .4)} Face 41060 974 992 20999 {rgb=(.7 .6 .4)} Face 41061 974 1008 21000 {rgb=(.7 .6 .4)} Face 41062 1008 1040 21000 {rgb=(.7 .6 .4)} Face 41063 1040 1009 21000 {rgb=(.7 .6 .4)} Face 41064 1009 974 21000 {rgb=(.7 .6 .4)} Face 41065 1009 1040 21001 {rgb=(.7 .6 .4)} Face 41066 1040 1081 21001 {rgb=(.7 .6 .4)} Face 41067 1081 1060 21001 {rgb=(.7 .6 .4)} Face 41068 1060 1009 21001 {rgb=(.7 .6 .4)} Face 41069 1060 1081 21002 {rgb=(.7 .6 .4)} Face 41070 1081 1127 21002 {rgb=(.7 .6 .4)} Face 41071 1127 1105 21002 {rgb=(.7 .6 .4)} Face 41072 1105 1060 21002 {rgb=(.7 .6 .4)} Face 41073 1105 1127 21003 {rgb=(.7 .6 .4)} Face 41074 1127 1219 21003 {rgb=(.7 .6 .4)} Face 41075 1219 1194 21003 {rgb=(.7 .6 .4)} Face 41076 1194 1105 21003 {rgb=(.7 .6 .4)} Face 41077 1194 1219 21004 {rgb=(.7 .6 .4)} Face 41078 1219 1326 21004 {rgb=(.7 .6 .4)} Face 41079 1326 1302 21004 {rgb=(.7 .6 .4)} Face 41080 1302 1194 21004 {rgb=(.7 .6 .4)} Face 41081 1302 1326 21005 {rgb=(.7 .6 .4)} Face 41082 1326 1380 21005 {rgb=(.7 .6 .4)} Face 41083 1380 1348 21005 {rgb=(.7 .6 .4)} Face 41084 1348 1302 21005 {rgb=(.7 .6 .4)} Face 41085 1348 1380 21006 {rgb=(.7 .6 .4)} Face 41086 1380 1391 21006 {rgb=(.7 .6 .4)} Face 41087 1391 1358 21006 {rgb=(.7 .6 .4)} Face 41088 1358 1348 21006 {rgb=(.7 .6 .4)} Face 41089 1358 1391 21007 {rgb=(.7 .6 .4)} Face 41090 1391 1362 21007 {rgb=(.7 .6 .4)} Face 41091 1362 1337 21007 {rgb=(.7 .6 .4)} Face 41092 1337 1358 21007 {rgb=(.7 .6 .4)} Face 41093 1337 1362 21008 {rgb=(.7 .6 .4)} Face 41094 1362 1282 21008 {rgb=(.7 .6 .4)} Face 41095 1282 1253 21008 {rgb=(.7 .6 .4)} Face 41096 1253 1337 21008 {rgb=(.7 .6 .4)} Face 41097 1253 1282 21009 {rgb=(.7 .6 .4)} Face 41098 1282 1169 21009 {rgb=(.7 .6 .4)} Face 41099 1169 1138 21009 {rgb=(.7 .6 .4)} Face 41100 1138 1253 21009 {rgb=(.7 .6 .4)} Face 41101 1138 1169 21010 {rgb=(.7 .6 .4)} Face 41102 1169 1096 21010 {rgb=(.7 .6 .4)} Face 41103 1096 1074 21010 {rgb=(.7 .6 .4)} Face 41104 1074 1138 21010 {rgb=(.7 .6 .4)} Face 41105 1074 1096 21011 {rgb=(.7 .6 .4)} Face 41106 1096 1051 21011 {rgb=(.7 .6 .4)} Face 41107 1051 1025 21011 {rgb=(.7 .6 .4)} Face 41108 1025 1074 21011 {rgb=(.7 .6 .4)} Face 41109 1013 1025 21012 {rgb=(.7 .6 .4)} Face 41110 1025 992 21012 {rgb=(.7 .6 .4)} Face 41111 992 977 21012 {rgb=(.7 .6 .4)} Face 41112 977 1013 21012 {rgb=(.7 .6 .4)} Face 41113 977 992 21013 {rgb=(.7 .6 .4)} Face 41114 992 974 21013 {rgb=(.7 .6 .4)} Face 41115 974 958 21013 {rgb=(.7 .6 .4)} Face 41116 958 977 21013 {rgb=(.7 .6 .4)} Face 41117 958 974 21014 {rgb=(.7 .6 .4)} Face 41118 974 1009 21014 {rgb=(.7 .6 .4)} Face 41119 1009 997 21014 {rgb=(.7 .6 .4)} Face 41120 997 958 21014 {rgb=(.7 .6 .4)} Face 41121 997 1009 21015 {rgb=(.7 .6 .4)} Face 41122 1009 1060 21015 {rgb=(.7 .6 .4)} Face 41123 1060 1050 21015 {rgb=(.7 .6 .4)} Face 41124 1050 997 21015 {rgb=(.7 .6 .4)} Face 41125 1050 1060 21016 {rgb=(.7 .6 .4)} Face 41126 1060 1105 21016 {rgb=(.7 .6 .4)} Face 41127 1105 1100 21016 {rgb=(.7 .6 .4)} Face 41128 1100 1050 21016 {rgb=(.7 .6 .4)} Face 41129 1100 1105 21017 {rgb=(.7 .6 .4)} Face 41130 1105 1194 21017 {rgb=(.7 .6 .4)} Face 41131 1194 1192 21017 {rgb=(.7 .6 .4)} Face 41132 1192 1100 21017 {rgb=(.7 .6 .4)} Face 41133 1192 1194 21018 {rgb=(.7 .6 .4)} Face 41134 1194 1302 21018 {rgb=(.7 .6 .4)} Face 41135 1302 1309 21018 {rgb=(.7 .6 .4)} Face 41136 1309 1192 21018 {rgb=(.7 .6 .4)} Face 41137 1309 1302 21019 {rgb=(.7 .6 .4)} Face 41138 1302 1348 21019 {rgb=(.7 .6 .4)} Face 41139 1348 1354 21019 {rgb=(.7 .6 .4)} Face 41140 1354 1309 21019 {rgb=(.7 .6 .4)} Face 41141 1354 1348 21020 {rgb=(.7 .6 .4)} Face 41142 1348 1358 21020 {rgb=(.7 .6 .4)} Face 41143 1358 1372 21020 {rgb=(.7 .6 .4)} Face 41144 1372 1354 21020 {rgb=(.7 .6 .4)} Face 41145 1372 1358 21021 {rgb=(.7 .6 .4)} Face 41146 1358 1337 21021 {rgb=(.7 .6 .4)} Face 41147 1337 1341 21021 {rgb=(.7 .6 .4)} Face 41148 1341 1372 21021 {rgb=(.7 .6 .4)} Face 41149 1341 1337 21022 {rgb=(.7 .6 .4)} Face 41150 1337 1253 21022 {rgb=(.7 .6 .4)} Face 41151 1253 1254 21022 {rgb=(.7 .6 .4)} Face 41152 1254 1341 21022 {rgb=(.7 .6 .4)} Face 41153 1254 1253 21023 {rgb=(.7 .6 .4)} Face 41154 1253 1138 21023 {rgb=(.7 .6 .4)} Face 41155 1138 1133 21023 {rgb=(.7 .6 .4)} Face 41156 1133 1254 21023 {rgb=(.7 .6 .4)} Face 41157 1133 1138 21024 {rgb=(.7 .6 .4)} Face 41158 1138 1074 21024 {rgb=(.7 .6 .4)} Face 41159 1074 1069 21024 {rgb=(.7 .6 .4)} Face 41160 1069 1133 21024 {rgb=(.7 .6 .4)} Face 41161 1069 1074 21025 {rgb=(.7 .6 .4)} Face 41162 1074 1025 21025 {rgb=(.7 .6 .4)} Face 41163 1025 1013 21025 {rgb=(.7 .6 .4)} Face 41164 1013 1069 21025 {rgb=(.7 .6 .4)} Face 41165 1020 1013 21026 {rgb=(.7 .6 .4)} Face 41166 1013 977 21026 {rgb=(.7 .6 .4)} Face 41167 977 987 21026 {rgb=(.7 .6 .4)} Face 41168 987 1020 21026 {rgb=(.7 .6 .4)} Face 41169 987 977 21027 {rgb=(.7 .6 .4)} Face 41170 977 958 21027 {rgb=(.7 .6 .4)} Face 41171 958 964 21027 {rgb=(.7 .6 .4)} Face 41172 964 987 21027 {rgb=(.7 .6 .4)} Face 41173 964 958 21028 {rgb=(.7 .6 .4)} Face 41174 958 997 21028 {rgb=(.7 .6 .4)} Face 41175 997 1004 21028 {rgb=(.7 .6 .4)} Face 41176 1004 964 21028 {rgb=(.7 .6 .4)} Face 41177 1004 997 21029 {rgb=(.7 .6 .4)} Face 41178 997 1050 21029 {rgb=(.7 .6 .4)} Face 41179 1050 1061 21029 {rgb=(.7 .6 .4)} Face 41180 1061 1004 21029 {rgb=(.7 .6 .4)} Face 41181 1061 1050 21030 {rgb=(.7 .6 .4)} Face 41182 1050 1100 21030 {rgb=(.7 .6 .4)} Face 41183 1100 1108 21030 {rgb=(.7 .6 .4)} Face 41184 1108 1061 21030 {rgb=(.7 .6 .4)} Face 41185 1108 1100 21031 {rgb=(.7 .6 .4)} Face 41186 1100 1192 21031 {rgb=(.7 .6 .4)} Face 41187 1192 1210 21031 {rgb=(.7 .6 .4)} Face 41188 1210 1108 21031 {rgb=(.7 .6 .4)} Face 41189 1210 1192 21032 {rgb=(.7 .6 .4)} Face 41190 1192 1309 21032 {rgb=(.7 .6 .4)} Face 41191 1309 1328 21032 {rgb=(.7 .6 .4)} Face 41192 1328 1210 21032 {rgb=(.7 .6 .4)} Face 41193 1328 1309 21033 {rgb=(.7 .6 .4)} Face 41194 1309 1354 21033 {rgb=(.7 .6 .4)} Face 41195 1354 1384 21033 {rgb=(.7 .6 .4)} Face 41196 1384 1328 21033 {rgb=(.7 .6 .4)} Face 41197 1384 1354 21034 {rgb=(.7 .6 .4)} Face 41198 1354 1372 21034 {rgb=(.7 .6 .4)} Face 41199 1372 1400 21034 {rgb=(.7 .6 .4)} Face 41200 1400 1384 21034 {rgb=(.7 .6 .4)} Face 41201 1400 1372 21035 {rgb=(.7 .6 .4)} Face 41202 1372 1341 21035 {rgb=(.7 .6 .4)} Face 41203 1341 1371 21035 {rgb=(.7 .6 .4)} Face 41204 1371 1400 21035 {rgb=(.7 .6 .4)} Face 41205 1371 1341 21036 {rgb=(.7 .6 .4)} Face 41206 1341 1254 21036 {rgb=(.7 .6 .4)} Face 41207 1254 1278 21036 {rgb=(.7 .6 .4)} Face 41208 1278 1371 21036 {rgb=(.7 .6 .4)} Face 41209 1278 1254 21037 {rgb=(.7 .6 .4)} Face 41210 1254 1133 21037 {rgb=(.7 .6 .4)} Face 41211 1133 1148 21037 {rgb=(.7 .6 .4)} Face 41212 1148 1278 21037 {rgb=(.7 .6 .4)} Face 41213 1148 1133 21038 {rgb=(.7 .6 .4)} Face 41214 1133 1069 21038 {rgb=(.7 .6 .4)} Face 41215 1069 1077 21038 {rgb=(.7 .6 .4)} Face 41216 1077 1148 21038 {rgb=(.7 .6 .4)} Face 41217 1077 1069 21039 {rgb=(.7 .6 .4)} Face 41218 1069 1013 21039 {rgb=(.7 .6 .4)} Face 41219 1013 1020 21039 {rgb=(.7 .6 .4)} Face 41220 1020 1077 21039 {rgb=(.7 .6 .4)} Face 41221 1039 1020 21040 {rgb=(.7 .6 .4)} Face 41222 1020 987 21040 {rgb=(.7 .6 .4)} Face 41223 987 1000 21040 {rgb=(.7 .6 .4)} Face 41224 1000 1039 21040 {rgb=(.7 .6 .4)} Face 41225 1000 987 21041 {rgb=(.7 .6 .4)} Face 41226 987 964 21041 {rgb=(.7 .6 .4)} Face 41227 964 985 21041 {rgb=(.7 .6 .4)} Face 41228 985 1000 21041 {rgb=(.7 .6 .4)} Face 41229 985 964 21042 {rgb=(.7 .6 .4)} Face 41230 964 1004 21042 {rgb=(.7 .6 .4)} Face 41231 1004 1022 21042 {rgb=(.7 .6 .4)} Face 41232 1022 985 21042 {rgb=(.7 .6 .4)} Face 41233 1022 1004 21043 {rgb=(.7 .6 .4)} Face 41234 1004 1061 21043 {rgb=(.7 .6 .4)} Face 41235 1061 1075 21043 {rgb=(.7 .6 .4)} Face 41236 1075 1022 21043 {rgb=(.7 .6 .4)} Face 41237 1075 1061 21044 {rgb=(.7 .6 .4)} Face 41238 1061 1108 21044 {rgb=(.7 .6 .4)} Face 41239 1108 1124 21044 {rgb=(.7 .6 .4)} Face 41240 1124 1075 21044 {rgb=(.7 .6 .4)} Face 41241 1124 1108 21045 {rgb=(.7 .6 .4)} Face 41242 1108 1210 21045 {rgb=(.7 .6 .4)} Face 41243 1210 1241 21045 {rgb=(.7 .6 .4)} Face 41244 1241 1124 21045 {rgb=(.7 .6 .4)} Face 41245 1241 1210 21046 {rgb=(.7 .6 .4)} Face 41246 1210 1328 21046 {rgb=(.7 .6 .4)} Face 41247 1328 1373 21046 {rgb=(.7 .6 .4)} Face 41248 1373 1241 21046 {rgb=(.7 .6 .4)} Face 41249 1373 1328 21047 {rgb=(.7 .6 .4)} Face 41250 1328 1384 21047 {rgb=(.7 .6 .4)} Face 41251 1384 1425 21047 {rgb=(.7 .6 .4)} Face 41252 1425 1373 21047 {rgb=(.7 .6 .4)} Face 41253 1425 1384 21048 {rgb=(.7 .6 .4)} Face 41254 1384 1400 21048 {rgb=(.7 .6 .4)} Face 41255 1400 1446 21048 {rgb=(.7 .6 .4)} Face 41256 1446 1425 21048 {rgb=(.7 .6 .4)} Face 41257 1446 1400 21049 {rgb=(.7 .6 .4)} Face 41258 1400 1371 21049 {rgb=(.7 .6 .4)} Face 41259 1371 1410 21049 {rgb=(.7 .6 .4)} Face 41260 1410 1446 21049 {rgb=(.7 .6 .4)} Face 41261 1410 1371 21050 {rgb=(.7 .6 .4)} Face 41262 1371 1278 21050 {rgb=(.7 .6 .4)} Face 41263 1278 1323 21050 {rgb=(.7 .6 .4)} Face 41264 1323 1410 21050 {rgb=(.7 .6 .4)} Face 41265 1323 1278 21051 {rgb=(.7 .6 .4)} Face 41266 1278 1148 21051 {rgb=(.7 .6 .4)} Face 41267 1148 1176 21051 {rgb=(.7 .6 .4)} Face 41268 1176 1323 21051 {rgb=(.7 .6 .4)} Face 41269 1176 1148 21052 {rgb=(.7 .6 .4)} Face 41270 1148 1077 21052 {rgb=(.7 .6 .4)} Face 41271 1077 1092 21052 {rgb=(.7 .6 .4)} Face 41272 1092 1176 21052 {rgb=(.7 .6 .4)} Face 41273 1092 1077 21053 {rgb=(.7 .6 .4)} Face 41274 1077 1020 21053 {rgb=(.7 .6 .4)} Face 41275 1020 1039 21053 {rgb=(.7 .6 .4)} Face 41276 1039 1092 21053 {rgb=(.7 .6 .4)} Face 41277 1055 1039 21054 {rgb=(.7 .6 .4)} Face 41278 1039 1000 21054 {rgb=(.7 .6 .4)} Face 41279 1000 1023 21054 {rgb=(.7 .6 .4)} Face 41280 1023 1055 21054 {rgb=(.7 .6 .4)} Face 41281 1023 1000 21055 {rgb=(.7 .6 .4)} Face 41282 1000 985 21055 {rgb=(.7 .6 .4)} Face 41283 985 1003 21055 {rgb=(.7 .6 .4)} Face 41284 1003 1023 21055 {rgb=(.7 .6 .4)} Face 41285 1003 985 21056 {rgb=(.7 .6 .4)} Face 41286 985 1022 21056 {rgb=(.7 .6 .4)} Face 41287 1022 1041 21056 {rgb=(.7 .6 .4)} Face 41288 1041 1003 21056 {rgb=(.7 .6 .4)} Face 41289 1041 1022 21057 {rgb=(.7 .6 .4)} Face 41290 1022 1075 21057 {rgb=(.7 .6 .4)} Face 41291 1075 1090 21057 {rgb=(.7 .6 .4)} Face 41292 1090 1041 21057 {rgb=(.7 .6 .4)} Face 41293 1090 1075 21058 {rgb=(.7 .6 .4)} Face 41294 1075 1124 21058 {rgb=(.7 .6 .4)} Face 41295 1124 1143 21058 {rgb=(.7 .6 .4)} Face 41296 1143 1090 21058 {rgb=(.7 .6 .4)} Face 41297 1143 1124 21059 {rgb=(.7 .6 .4)} Face 41298 1124 1241 21059 {rgb=(.7 .6 .4)} Face 41299 1241 1264 21059 {rgb=(.7 .6 .4)} Face 41300 1264 1143 21059 {rgb=(.7 .6 .4)} Face 41301 1264 1241 21060 {rgb=(.7 .6 .4)} Face 41302 1241 1373 21060 {rgb=(.7 .6 .4)} Face 41303 1373 1397 21060 {rgb=(.7 .6 .4)} Face 41304 1397 1264 21060 {rgb=(.7 .6 .4)} Face 41305 1397 1373 21061 {rgb=(.7 .6 .4)} Face 41306 1373 1425 21061 {rgb=(.7 .6 .4)} Face 41307 1425 1470 21061 {rgb=(.7 .6 .4)} Face 41308 1470 1397 21061 {rgb=(.7 .6 .4)} Face 41309 1470 1425 21062 {rgb=(.7 .6 .4)} Face 41310 1425 1446 21062 {rgb=(.7 .6 .4)} Face 41311 1446 1481 21062 {rgb=(.7 .6 .4)} Face 41312 1481 1470 21062 {rgb=(.7 .6 .4)} Face 41313 1481 1446 21063 {rgb=(.7 .6 .4)} Face 41314 1446 1410 21063 {rgb=(.7 .6 .4)} Face 41315 1410 1438 21063 {rgb=(.7 .6 .4)} Face 41316 1438 1481 21063 {rgb=(.7 .6 .4)} Face 41317 1438 1410 21064 {rgb=(.7 .6 .4)} Face 41318 1410 1323 21064 {rgb=(.7 .6 .4)} Face 41319 1323 1347 21064 {rgb=(.7 .6 .4)} Face 41320 1347 1438 21064 {rgb=(.7 .6 .4)} Face 41321 1347 1323 21065 {rgb=(.7 .6 .4)} Face 41322 1323 1176 21065 {rgb=(.7 .6 .4)} Face 41323 1176 1197 21065 {rgb=(.7 .6 .4)} Face 41324 1197 1347 21065 {rgb=(.7 .6 .4)} Face 41325 1197 1176 21066 {rgb=(.7 .6 .4)} Face 41326 1176 1092 21066 {rgb=(.7 .6 .4)} Face 41327 1092 1104 21066 {rgb=(.7 .6 .4)} Face 41328 1104 1197 21066 {rgb=(.7 .6 .4)} Face 41329 1104 1092 21067 {rgb=(.7 .6 .4)} Face 41330 1092 1039 21067 {rgb=(.7 .6 .4)} Face 41331 1039 1055 21067 {rgb=(.7 .6 .4)} Face 41332 1055 1104 21067 {rgb=(.7 .6 .4)} Face 41333 2147 1792 21068 {rgb=(.7 .6 .4)} Face 41334 1792 1807 21068 {rgb=(.7 .6 .4)} Face 41335 1807 2309 21068 {rgb=(.7 .6 .4)} Face 41336 2309 2147 21068 {rgb=(.7 .6 .4)} Face 41337 2091 1706 21069 {rgb=(.7 .6 .4)} Face 41338 1706 1792 21069 {rgb=(.7 .6 .4)} Face 41339 1792 2147 21069 {rgb=(.7 .6 .4)} Face 41340 2147 2091 21069 {rgb=(.7 .6 .4)} Face 41341 1995 1672 21070 {rgb=(.7 .6 .4)} Face 41342 1672 1706 21070 {rgb=(.7 .6 .4)} Face 41343 1706 2091 21070 {rgb=(.7 .6 .4)} Face 41344 2091 1995 21070 {rgb=(.7 .6 .4)} Face 41345 2201 1654 21071 {rgb=(.7 .6 .4)} Face 41346 1654 1672 21071 {rgb=(.7 .6 .4)} Face 41347 1672 1995 21071 {rgb=(.7 .6 .4)} Face 41348 1995 2201 21071 {rgb=(.7 .6 .4)} Face 41349 1552 1588 21072 {rgb=(.7 .6 .4)} Face 41350 1588 1525 21072 {rgb=(.7 .6 .4)} Face 41351 1525 1498 21072 {rgb=(.7 .6 .4)} Face 41352 1498 1552 21072 {rgb=(.7 .6 .4)} Face 41353 1498 1525 21073 {rgb=(.7 .6 .4)} Face 41354 1525 1492 21073 {rgb=(.7 .6 .4)} Face 41355 1492 1475 21073 {rgb=(.7 .6 .4)} Face 41356 1475 1498 21073 {rgb=(.7 .6 .4)} Face 41357 1475 1492 21074 {rgb=(.7 .6 .4)} Face 41358 1492 1636 21074 {rgb=(.7 .6 .4)} Face 41359 1636 1616 21074 {rgb=(.7 .6 .4)} Face 41360 1616 1475 21074 {rgb=(.7 .6 .4)} Face 41361 1616 1636 21075 {rgb=(.7 .6 .4)} Face 41362 1636 1807 21075 {rgb=(.7 .6 .4)} Face 41363 1807 1792 21075 {rgb=(.7 .6 .4)} Face 41364 1792 1616 21075 {rgb=(.7 .6 .4)} Face 41365 2147 2309 21076 {rgb=(.7 .6 .4)} Face 41366 2309 5546 21076 {rgb=(.7 .6 .4)} Face 41367 5546 5549 21076 {rgb=(.7 .6 .4)} Face 41368 5549 2147 21076 {rgb=(.7 .6 .4)} Face 41369 5534 5533 21077 {rgb=(.7 .6 .4)} Face 41370 5533 4121 21077 {rgb=(.7 .6 .4)} Face 41371 4121 4071 21077 {rgb=(.7 .6 .4)} Face 41372 4071 5534 21077 {rgb=(.7 .6 .4)} Face 41373 4071 4121 21078 {rgb=(.7 .6 .4)} Face 41374 4121 3414 21078 {rgb=(.7 .6 .4)} Face 41375 3414 3340 21078 {rgb=(.7 .6 .4)} Face 41376 3340 4071 21078 {rgb=(.7 .6 .4)} Face 41377 3340 3414 21079 {rgb=(.7 .6 .4)} Face 41378 3414 1810 21079 {rgb=(.7 .6 .4)} Face 41379 1810 1713 21079 {rgb=(.7 .6 .4)} Face 41380 1713 3340 21079 {rgb=(.7 .6 .4)} Face 41381 1713 1752 21080 {rgb=(.7 .6 .4)} Face 41382 1752 1639 21080 {rgb=(.7 .6 .4)} Face 41383 1639 1618 21080 {rgb=(.7 .6 .4)} Face 41384 1618 1713 21080 {rgb=(.7 .6 .4)} Face 41385 1618 1639 21081 {rgb=(.7 .6 .4)} Face 41386 1639 1588 21081 {rgb=(.7 .6 .4)} Face 41387 1588 1552 21081 {rgb=(.7 .6 .4)} Face 41388 1552 1618 21081 {rgb=(.7 .6 .4)} Face 41389 1671 1688 21082 {rgb=(.7 .6 .4)} Face 41390 1688 1599 21082 {rgb=(.7 .6 .4)} Face 41391 1599 1569 21082 {rgb=(.7 .6 .4)} Face 41392 1569 1671 21082 {rgb=(.7 .6 .4)} Face 41393 3085 3250 21083 {rgb=(.7 .6 .4)} Face 41394 3250 1688 21083 {rgb=(.7 .6 .4)} Face 41395 1688 1671 21083 {rgb=(.7 .6 .4)} Face 41396 1671 3085 21083 {rgb=(.7 .6 .4)} Face 41397 1482 1498 21084 {rgb=(.7 .6 .4)} Face 41398 1498 1475 21084 {rgb=(.7 .6 .4)} Face 41399 1475 1414 21084 {rgb=(.7 .6 .4)} Face 41400 1414 1482 21084 {rgb=(.7 .6 .4)} Face 41401 1527 1552 21085 {rgb=(.7 .6 .4)} Face 41402 1552 1498 21085 {rgb=(.7 .6 .4)} Face 41403 1498 1482 21085 {rgb=(.7 .6 .4)} Face 41404 1482 1527 21085 {rgb=(.7 .6 .4)} Face 41405 1599 1618 21086 {rgb=(.7 .6 .4)} Face 41406 1618 1552 21086 {rgb=(.7 .6 .4)} Face 41407 1552 1527 21086 {rgb=(.7 .6 .4)} Face 41408 1527 1599 21086 {rgb=(.7 .6 .4)} Face 41409 1688 1713 21087 {rgb=(.7 .6 .4)} Face 41410 1713 1618 21087 {rgb=(.7 .6 .4)} Face 41411 1618 1599 21087 {rgb=(.7 .6 .4)} Face 41412 1599 1688 21087 {rgb=(.7 .6 .4)} Face 41413 3250 3340 21088 {rgb=(.7 .6 .4)} Face 41414 3340 1713 21088 {rgb=(.7 .6 .4)} Face 41415 1713 1688 21088 {rgb=(.7 .6 .4)} Face 41416 1688 3250 21088 {rgb=(.7 .6 .4)} Face 41417 4019 4071 21089 {rgb=(.7 .6 .4)} Face 41418 4071 3340 21089 {rgb=(.7 .6 .4)} Face 41419 3340 3250 21089 {rgb=(.7 .6 .4)} Face 41420 3250 4019 21089 {rgb=(.7 .6 .4)} Face 41421 5532 5534 21090 {rgb=(.7 .6 .4)} Face 41422 5534 4071 21090 {rgb=(.7 .6 .4)} Face 41423 4071 4019 21090 {rgb=(.7 .6 .4)} Face 41424 4019 5532 21090 {rgb=(.7 .6 .4)} Face 41425 1504 1527 21091 {rgb=(.7 .6 .4)} Face 41426 1527 1482 21091 {rgb=(.7 .6 .4)} Face 41427 1482 1442 21091 {rgb=(.7 .6 .4)} Face 41428 1442 1504 21091 {rgb=(.7 .6 .4)} Face 41429 1569 1599 21092 {rgb=(.7 .6 .4)} Face 41430 1599 1527 21092 {rgb=(.7 .6 .4)} Face 41431 1527 1504 21092 {rgb=(.7 .6 .4)} Face 41432 1504 1569 21092 {rgb=(.7 .6 .4)} Face 41433 3892 4019 21093 {rgb=(.7 .6 .4)} Face 41434 4019 3250 21093 {rgb=(.7 .6 .4)} Face 41435 3250 3085 21093 {rgb=(.7 .6 .4)} Face 41436 3085 3892 21093 {rgb=(.7 .6 .4)} Face 41437 5531 5532 21094 {rgb=(.7 .6 .4)} Face 41438 5532 4019 21094 {rgb=(.7 .6 .4)} Face 41439 4019 3892 21094 {rgb=(.7 .6 .4)} Face 41440 3892 5531 21094 {rgb=(.7 .6 .4)} Face 41441 2091 2147 21095 {rgb=(.7 .6 .4)} Face 41442 2147 5549 21095 {rgb=(.7 .6 .4)} Face 41443 5549 5548 21095 {rgb=(.7 .6 .4)} Face 41444 5548 2091 21095 {rgb=(.7 .6 .4)} Face 41445 1600 1616 21096 {rgb=(.7 .6 .4)} Face 41446 1616 1792 21096 {rgb=(.7 .6 .4)} Face 41447 1792 1706 21096 {rgb=(.7 .6 .4)} Face 41448 1706 1600 21096 {rgb=(.7 .6 .4)} Face 41449 1414 1475 21097 {rgb=(.7 .6 .4)} Face 41450 1475 1616 21097 {rgb=(.7 .6 .4)} Face 41451 1616 1600 21097 {rgb=(.7 .6 .4)} Face 41452 1600 1414 21097 {rgb=(.7 .6 .4)} Face 41453 1367 1357 21098 {rgb=(.7 .6 .4)} Face 41454 1357 1459 21098 {rgb=(.7 .6 .4)} Face 41455 1459 1442 21098 {rgb=(.7 .6 .4)} Face 41456 1442 1367 21098 {rgb=(.7 .6 .4)} Face 41457 1551 1540 21099 {rgb=(.7 .6 .4)} Face 41458 1540 1357 21099 {rgb=(.7 .6 .4)} Face 41459 1357 1367 21099 {rgb=(.7 .6 .4)} Face 41460 1367 1551 21099 {rgb=(.7 .6 .4)} Face 41461 1672 1654 21100 {rgb=(.7 .6 .4)} Face 41462 1654 1540 21100 {rgb=(.7 .6 .4)} Face 41463 1540 1551 21100 {rgb=(.7 .6 .4)} Face 41464 1551 1672 21100 {rgb=(.7 .6 .4)} Face 41465 5547 5544 21101 {rgb=(.7 .6 .4)} Face 41466 5544 2201 21101 {rgb=(.7 .6 .4)} Face 41467 2201 1995 21101 {rgb=(.7 .6 .4)} Face 41468 1995 5547 21101 {rgb=(.7 .6 .4)} Face 41469 1442 1459 21102 {rgb=(.7 .6 .4)} Face 41470 1459 1511 21102 {rgb=(.7 .6 .4)} Face 41471 1511 1504 21102 {rgb=(.7 .6 .4)} Face 41472 1504 1442 21102 {rgb=(.7 .6 .4)} Face 41473 1442 1482 21103 {rgb=(.7 .6 .4)} Face 41474 1482 1414 21103 {rgb=(.7 .6 .4)} Face 41475 1414 1367 21103 {rgb=(.7 .6 .4)} Face 41476 1367 1442 21103 {rgb=(.7 .6 .4)} Face 41477 1367 1414 21104 {rgb=(.7 .6 .4)} Face 41478 1414 1600 21104 {rgb=(.7 .6 .4)} Face 41479 1600 1551 21104 {rgb=(.7 .6 .4)} Face 41480 1551 1367 21104 {rgb=(.7 .6 .4)} Face 41481 1551 1600 21105 {rgb=(.7 .6 .4)} Face 41482 1600 1706 21105 {rgb=(.7 .6 .4)} Face 41483 1706 1672 21105 {rgb=(.7 .6 .4)} Face 41484 1672 1551 21105 {rgb=(.7 .6 .4)} Face 41485 1995 2091 21106 {rgb=(.7 .6 .4)} Face 41486 2091 5548 21106 {rgb=(.7 .6 .4)} Face 41487 5548 5547 21106 {rgb=(.7 .6 .4)} Face 41488 5547 1995 21106 {rgb=(.7 .6 .4)} Face 41489 5530 5531 21107 {rgb=(.7 .6 .4)} Face 41490 5531 3892 21107 {rgb=(.7 .6 .4)} Face 41491 3892 3798 21107 {rgb=(.7 .6 .4)} Face 41492 3798 5530 21107 {rgb=(.7 .6 .4)} Face 41493 3798 3892 21108 {rgb=(.7 .6 .4)} Face 41494 3892 3085 21108 {rgb=(.7 .6 .4)} Face 41495 3085 3012 21108 {rgb=(.7 .6 .4)} Face 41496 3012 3798 21108 {rgb=(.7 .6 .4)} Face 41497 3012 3085 21109 {rgb=(.7 .6 .4)} Face 41498 3085 1671 21109 {rgb=(.7 .6 .4)} Face 41499 1671 1670 21109 {rgb=(.7 .6 .4)} Face 41500 1670 3012 21109 {rgb=(.7 .6 .4)} Face 41501 1670 1671 21110 {rgb=(.7 .6 .4)} Face 41502 1671 1569 21110 {rgb=(.7 .6 .4)} Face 41503 1569 1574 21110 {rgb=(.7 .6 .4)} Face 41504 1574 1670 21110 {rgb=(.7 .6 .4)} Face 41505 1574 1569 21111 {rgb=(.7 .6 .4)} Face 41506 1569 1504 21111 {rgb=(.7 .6 .4)} Face 41507 1504 1511 21111 {rgb=(.7 .6 .4)} Face 41508 1511 1574 21111 {rgb=(.7 .6 .4)} Face 41509 1202 1055 21112 {rgb=(.7 .6 .4)} Face 41510 1055 1023 21112 {rgb=(.7 .6 .4)} Face 41511 1023 1204 21112 {rgb=(.7 .6 .4)} Face 41512 1204 1202 21112 {rgb=(.7 .6 .4)} Face 41513 1214 1104 21113 {rgb=(.7 .6 .4)} Face 41514 1104 1055 21113 {rgb=(.7 .6 .4)} Face 41515 1055 1202 21113 {rgb=(.7 .6 .4)} Face 41516 1202 1214 21113 {rgb=(.7 .6 .4)} Face 41517 1381 1197 21114 {rgb=(.7 .6 .4)} Face 41518 1197 1104 21114 {rgb=(.7 .6 .4)} Face 41519 1104 1214 21114 {rgb=(.7 .6 .4)} Face 41520 1214 1381 21114 {rgb=(.7 .6 .4)} Face 41521 1547 1347 21115 {rgb=(.7 .6 .4)} Face 41522 1347 1197 21115 {rgb=(.7 .6 .4)} Face 41523 1197 1381 21115 {rgb=(.7 .6 .4)} Face 41524 1381 1547 21115 {rgb=(.7 .6 .4)} Face 41525 1646 1438 21116 {rgb=(.7 .6 .4)} Face 41526 1438 1347 21116 {rgb=(.7 .6 .4)} Face 41527 1347 1547 21116 {rgb=(.7 .6 .4)} Face 41528 1547 1646 21116 {rgb=(.7 .6 .4)} Face 41529 1471 1488 21117 {rgb=(.7 .6 .4)} Face 41530 1488 1574 21117 {rgb=(.7 .6 .4)} Face 41531 1574 1511 21117 {rgb=(.7 .6 .4)} Face 41532 1511 1471 21117 {rgb=(.7 .6 .4)} Face 41533 1202 1459 21118 {rgb=(.7 .6 .4)} Face 41534 1459 1357 21118 {rgb=(.7 .6 .4)} Face 41535 1357 1214 21118 {rgb=(.7 .6 .4)} Face 41536 1214 1202 21118 {rgb=(.7 .6 .4)} Face 41537 3788 3635 21119 {rgb=(.7 .6 .4)} Face 41538 3635 5536 21119 {rgb=(.7 .6 .4)} Face 41539 5536 5528 21119 {rgb=(.7 .6 .4)} Face 41540 5528 3788 21119 {rgb=(.7 .6 .4)} Face 41541 1692 1693 21120 {rgb=(.7 .6 .4)} Face 41542 1693 3635 21120 {rgb=(.7 .6 .4)} Face 41543 3635 3788 21120 {rgb=(.7 .6 .4)} Face 41544 3788 1692 21120 {rgb=(.7 .6 .4)} Face 41545 1461 1397 21121 {rgb=(.7 .6 .4)} Face 41546 1397 1470 21121 {rgb=(.7 .6 .4)} Face 41547 1470 1587 21121 {rgb=(.7 .6 .4)} Face 41548 1587 1461 21121 {rgb=(.7 .6 .4)} Face 41549 1281 1264 21122 {rgb=(.7 .6 .4)} Face 41550 1264 1397 21122 {rgb=(.7 .6 .4)} Face 41551 1397 1461 21122 {rgb=(.7 .6 .4)} Face 41552 1461 1281 21122 {rgb=(.7 .6 .4)} Face 41553 1587 1692 21123 {rgb=(.7 .6 .4)} Face 41554 1692 1689 21123 {rgb=(.7 .6 .4)} Face 41555 1689 1677 21123 {rgb=(.7 .6 .4)} Face 41556 1677 1587 21123 {rgb=(.7 .6 .4)} Face 41557 1693 1481 21124 {rgb=(.7 .6 .4)} Face 41558 1481 1438 21124 {rgb=(.7 .6 .4)} Face 41559 1438 1646 21124 {rgb=(.7 .6 .4)} Face 41560 1646 1693 21124 {rgb=(.7 .6 .4)} Face 41561 1670 1509 21125 {rgb=(.7 .6 .4)} Face 41562 1509 1514 21125 {rgb=(.7 .6 .4)} Face 41563 1514 1850 21125 {rgb=(.7 .6 .4)} Face 41564 1850 1670 21125 {rgb=(.7 .6 .4)} Face 41565 1509 1670 21126 {rgb=(.7 .6 .4)} Face 41566 1670 1574 21126 {rgb=(.7 .6 .4)} Face 41567 1574 1488 21126 {rgb=(.7 .6 .4)} Face 41568 1488 1509 21126 {rgb=(.7 .6 .4)} Face 41569 1147 1119 21127 {rgb=(.7 .6 .4)} Face 41570 1119 1143 21127 {rgb=(.7 .6 .4)} Face 41571 1143 1186 21127 {rgb=(.7 .6 .4)} Face 41572 1186 1147 21127 {rgb=(.7 .6 .4)} Face 41573 1256 1224 21128 {rgb=(.7 .6 .4)} Face 41574 1224 1119 21128 {rgb=(.7 .6 .4)} Face 41575 1119 1147 21128 {rgb=(.7 .6 .4)} Face 41576 1147 1256 21128 {rgb=(.7 .6 .4)} Face 41577 1536 1518 21129 {rgb=(.7 .6 .4)} Face 41578 1518 1224 21129 {rgb=(.7 .6 .4)} Face 41579 1224 1256 21129 {rgb=(.7 .6 .4)} Face 41580 1256 1536 21129 {rgb=(.7 .6 .4)} Face 41581 2081 2019 21130 {rgb=(.7 .6 .4)} Face 41582 2019 1518 21130 {rgb=(.7 .6 .4)} Face 41583 1518 1536 21130 {rgb=(.7 .6 .4)} Face 41584 1536 2081 21130 {rgb=(.7 .6 .4)} Face 41585 3843 3798 21131 {rgb=(.7 .6 .4)} Face 41586 3798 2019 21131 {rgb=(.7 .6 .4)} Face 41587 2019 2081 21131 {rgb=(.7 .6 .4)} Face 41588 2081 3843 21131 {rgb=(.7 .6 .4)} Face 41589 5529 5530 21132 {rgb=(.7 .6 .4)} Face 41590 5530 3798 21132 {rgb=(.7 .6 .4)} Face 41591 3798 3843 21132 {rgb=(.7 .6 .4)} Face 41592 3843 5529 21132 {rgb=(.7 .6 .4)} Face 41593 1119 1114 21133 {rgb=(.7 .6 .4)} Face 41594 1114 1090 21133 {rgb=(.7 .6 .4)} Face 41595 1090 1143 21133 {rgb=(.7 .6 .4)} Face 41596 1143 1119 21133 {rgb=(.7 .6 .4)} Face 41597 1224 1211 21134 {rgb=(.7 .6 .4)} Face 41598 1211 1114 21134 {rgb=(.7 .6 .4)} Face 41599 1114 1119 21134 {rgb=(.7 .6 .4)} Face 41600 1119 1224 21134 {rgb=(.7 .6 .4)} Face 41601 1518 1514 21135 {rgb=(.7 .6 .4)} Face 41602 1514 1211 21135 {rgb=(.7 .6 .4)} Face 41603 1211 1224 21135 {rgb=(.7 .6 .4)} Face 41604 1224 1518 21135 {rgb=(.7 .6 .4)} Face 41605 2019 1850 21136 {rgb=(.7 .6 .4)} Face 41606 1850 1514 21136 {rgb=(.7 .6 .4)} Face 41607 1514 1518 21136 {rgb=(.7 .6 .4)} Face 41608 1518 2019 21136 {rgb=(.7 .6 .4)} Face 41609 3798 3012 21137 {rgb=(.7 .6 .4)} Face 41610 3012 1850 21137 {rgb=(.7 .6 .4)} Face 41611 1850 2019 21137 {rgb=(.7 .6 .4)} Face 41612 2019 3798 21137 {rgb=(.7 .6 .4)} Face 41613 1258 1230 21138 {rgb=(.7 .6 .4)} Face 41614 1230 1321 21138 {rgb=(.7 .6 .4)} Face 41615 1321 1338 21138 {rgb=(.7 .6 .4)} Face 41616 1338 1258 21138 {rgb=(.7 .6 .4)} Face 41617 1026 1051 21139 {rgb=(.7 .6 .4)} Face 41618 1051 1096 21139 {rgb=(.7 .6 .4)} Face 41619 1096 1008 21139 {rgb=(.7 .6 .4)} Face 41620 1008 1026 21139 {rgb=(.7 .6 .4)} Face 41621 5526 5527 21140 {rgb=(.7 .6 .4)} Face 41622 5527 3890 21140 {rgb=(.7 .6 .4)} Face 41623 3890 3948 21140 {rgb=(.7 .6 .4)} Face 41624 3948 5526 21140 {rgb=(.7 .6 .4)} Face 41625 1256 1298 21141 {rgb=(.7 .6 .4)} Face 41626 1298 1556 21141 {rgb=(.7 .6 .4)} Face 41627 1556 1536 21141 {rgb=(.7 .6 .4)} Face 41628 1536 1256 21141 {rgb=(.7 .6 .4)} Face 41629 1310 1211 21142 {rgb=(.7 .6 .4)} Face 41630 1211 1514 21142 {rgb=(.7 .6 .4)} Face 41631 1514 1509 21142 {rgb=(.7 .6 .4)} Face 41632 1509 1310 21142 {rgb=(.7 .6 .4)} Face 41633 1310 1509 21143 {rgb=(.7 .6 .4)} Face 41634 1509 1488 21143 {rgb=(.7 .6 .4)} Face 41635 1488 1336 21143 {rgb=(.7 .6 .4)} Face 41636 1336 1310 21143 {rgb=(.7 .6 .4)} Face 41637 1114 1170 21144 {rgb=(.7 .6 .4)} Face 41638 1170 1041 21144 {rgb=(.7 .6 .4)} Face 41639 1041 1090 21144 {rgb=(.7 .6 .4)} Face 41640 1090 1114 21144 {rgb=(.7 .6 .4)} Face 41641 1321 1230 21145 {rgb=(.7 .6 .4)} Face 41642 1230 1186 21145 {rgb=(.7 .6 .4)} Face 41643 1186 1281 21145 {rgb=(.7 .6 .4)} Face 41644 1281 1321 21145 {rgb=(.7 .6 .4)} Face 41645 1298 1256 21146 {rgb=(.7 .6 .4)} Face 41646 1256 1147 21146 {rgb=(.7 .6 .4)} Face 41647 1147 1196 21146 {rgb=(.7 .6 .4)} Face 41648 1196 1298 21146 {rgb=(.7 .6 .4)} Face 41649 1801 2081 21147 {rgb=(.7 .6 .4)} Face 41650 2081 1536 21147 {rgb=(.7 .6 .4)} Face 41651 1536 1556 21147 {rgb=(.7 .6 .4)} Face 41652 1556 1801 21147 {rgb=(.7 .6 .4)} Face 41653 1513 1321 21148 {rgb=(.7 .6 .4)} Face 41654 1321 1281 21148 {rgb=(.7 .6 .4)} Face 41655 1281 1461 21148 {rgb=(.7 .6 .4)} Face 41656 1461 1513 21148 {rgb=(.7 .6 .4)} Face 41657 1572 1513 21149 {rgb=(.7 .6 .4)} Face 41658 1513 1677 21149 {rgb=(.7 .6 .4)} Face 41659 1677 1700 21149 {rgb=(.7 .6 .4)} Face 41660 1700 1572 21149 {rgb=(.7 .6 .4)} Face 41661 1369 1321 21150 {rgb=(.7 .6 .4)} Face 41662 1321 1513 21150 {rgb=(.7 .6 .4)} Face 41663 1513 1528 21150 {rgb=(.7 .6 .4)} Face 41664 1528 1369 21150 {rgb=(.7 .6 .4)} Face 41665 3788 3928 21151 {rgb=(.7 .6 .4)} Face 41666 3928 1689 21151 {rgb=(.7 .6 .4)} Face 41667 1689 1692 21151 {rgb=(.7 .6 .4)} Face 41668 1692 3788 21151 {rgb=(.7 .6 .4)} Face 41669 1540 1654 21152 {rgb=(.7 .6 .4)} Face 41670 1654 1547 21152 {rgb=(.7 .6 .4)} Face 41671 1547 1381 21152 {rgb=(.7 .6 .4)} Face 41672 1381 1540 21152 {rgb=(.7 .6 .4)} Face 41673 1184 1003 21153 {rgb=(.7 .6 .4)} Face 41674 1003 1041 21153 {rgb=(.7 .6 .4)} Face 41675 1041 1170 21153 {rgb=(.7 .6 .4)} Face 41676 1170 1184 21153 {rgb=(.7 .6 .4)} Face 41677 1184 1204 21154 {rgb=(.7 .6 .4)} Face 41678 1204 1023 21154 {rgb=(.7 .6 .4)} Face 41679 1023 1003 21154 {rgb=(.7 .6 .4)} Face 41680 1003 1184 21154 {rgb=(.7 .6 .4)} Face 41681 1196 1147 21155 {rgb=(.7 .6 .4)} Face 41682 1147 1186 21155 {rgb=(.7 .6 .4)} Face 41683 1186 1230 21155 {rgb=(.7 .6 .4)} Face 41684 1230 1196 21155 {rgb=(.7 .6 .4)} Face 41685 1324 1298 21156 {rgb=(.7 .6 .4)} Face 41686 1298 1196 21156 {rgb=(.7 .6 .4)} Face 41687 1196 1236 21156 {rgb=(.7 .6 .4)} Face 41688 1236 1324 21156 {rgb=(.7 .6 .4)} Face 41689 3606 3890 21157 {rgb=(.7 .6 .4)} Face 41690 3890 1801 21157 {rgb=(.7 .6 .4)} Face 41691 1801 1871 21157 {rgb=(.7 .6 .4)} Face 41692 1871 3606 21157 {rgb=(.7 .6 .4)} Face 41693 3890 5527 21158 {rgb=(.7 .6 .4)} Face 41694 5527 5529 21158 {rgb=(.7 .6 .4)} Face 41695 5529 3843 21158 {rgb=(.7 .6 .4)} Face 41696 3843 3890 21158 {rgb=(.7 .6 .4)} Face 41697 3890 3843 21159 {rgb=(.7 .6 .4)} Face 41698 3843 2081 21159 {rgb=(.7 .6 .4)} Face 41699 2081 1801 21159 {rgb=(.7 .6 .4)} Face 41700 1801 3890 21159 {rgb=(.7 .6 .4)} Face 41701 1310 1170 21160 {rgb=(.7 .6 .4)} Face 41702 1170 1114 21160 {rgb=(.7 .6 .4)} Face 41703 1114 1211 21160 {rgb=(.7 .6 .4)} Face 41704 1211 1310 21160 {rgb=(.7 .6 .4)} Face 41705 1232 1196 21161 {rgb=(.7 .6 .4)} Face 41706 1196 1230 21161 {rgb=(.7 .6 .4)} Face 41707 1230 1258 21161 {rgb=(.7 .6 .4)} Face 41708 1258 1232 21161 {rgb=(.7 .6 .4)} Face 41709 1471 1459 21162 {rgb=(.7 .6 .4)} Face 41710 1459 1202 21162 {rgb=(.7 .6 .4)} Face 41711 1202 1204 21162 {rgb=(.7 .6 .4)} Face 41712 1204 1471 21162 {rgb=(.7 .6 .4)} Face 41713 1310 1336 21163 {rgb=(.7 .6 .4)} Face 41714 1336 1184 21163 {rgb=(.7 .6 .4)} Face 41715 1184 1170 21163 {rgb=(.7 .6 .4)} Face 41716 1170 1310 21163 {rgb=(.7 .6 .4)} Face 41717 1264 1281 21164 {rgb=(.7 .6 .4)} Face 41718 1281 1186 21164 {rgb=(.7 .6 .4)} Face 41719 1186 1143 21164 {rgb=(.7 .6 .4)} Face 41720 1143 1264 21164 {rgb=(.7 .6 .4)} Face 41721 1677 1513 21165 {rgb=(.7 .6 .4)} Face 41722 1513 1461 21165 {rgb=(.7 .6 .4)} Face 41723 1461 1587 21165 {rgb=(.7 .6 .4)} Face 41724 1587 1677 21165 {rgb=(.7 .6 .4)} Face 41725 1693 1646 21166 {rgb=(.7 .6 .4)} Face 41726 1646 3016 21166 {rgb=(.7 .6 .4)} Face 41727 3016 3635 21166 {rgb=(.7 .6 .4)} Face 41728 3635 1693 21166 {rgb=(.7 .6 .4)} Face 41729 1540 1381 21167 {rgb=(.7 .6 .4)} Face 41730 1381 1214 21167 {rgb=(.7 .6 .4)} Face 41731 1214 1357 21167 {rgb=(.7 .6 .4)} Face 41732 1357 1540 21167 {rgb=(.7 .6 .4)} Face 41733 2201 5544 21168 {rgb=(.7 .6 .4)} Face 41734 5544 5539 21168 {rgb=(.7 .6 .4)} Face 41735 5539 3016 21168 {rgb=(.7 .6 .4)} Face 41736 3016 2201 21168 {rgb=(.7 .6 .4)} Face 41737 3788 5528 21169 {rgb=(.7 .6 .4)} Face 41738 5528 5525 21169 {rgb=(.7 .6 .4)} Face 41739 5525 3928 21169 {rgb=(.7 .6 .4)} Face 41740 3928 3788 21169 {rgb=(.7 .6 .4)} Face 41741 5539 5536 21170 {rgb=(.7 .6 .4)} Face 41742 5536 3635 21170 {rgb=(.7 .6 .4)} Face 41743 3635 3016 21170 {rgb=(.7 .6 .4)} Face 41744 3016 5539 21170 {rgb=(.7 .6 .4)} Face 41745 7842 7385 21171 {rgb=(.5 .4 .2)} Face 41746 7385 7130 21171 {rgb=(.5 .4 .2)} Face 41747 7130 7738 21171 {rgb=(.5 .4 .2)} Face 41748 7738 7842 21171 {rgb=(.5 .4 .2)} Face 41749 7738 9355 21172 {rgb=(.5 .4 .2)} Face 41750 9355 9366 21172 {rgb=(.5 .4 .2)} Face 41751 9366 8307 21172 {rgb=(.5 .4 .2)} Face 41752 8307 7738 21172 {rgb=(.5 .4 .2)} Face 41753 10033 10106 21173 {rgb=(.5 .4 .2)} Face 41754 10106 10139 21173 {rgb=(.5 .4 .2)} Face 41755 10139 10051 21173 {rgb=(.5 .4 .2)} Face 41756 10051 10033 21173 {rgb=(.5 .4 .2)} Face 41757 10051 9916 21174 {rgb=(.5 .4 .2)} Face 41758 9916 9892 21174 {rgb=(.5 .4 .2)} Face 41759 9892 9992 21174 {rgb=(.5 .4 .2)} Face 41760 9992 10051 21174 {rgb=(.5 .4 .2)} Face 41761 9580 9366 21175 {rgb=(.5 .4 .2)} Face 41762 9366 9355 21175 {rgb=(.5 .4 .2)} Face 41763 9355 9663 21175 {rgb=(.5 .4 .2)} Face 41764 9663 9580 21175 {rgb=(.5 .4 .2)} Face 41765 9663 9959 21176 {rgb=(.5 .4 .2)} Face 41766 9959 9944 21176 {rgb=(.5 .4 .2)} Face 41767 9944 9718 21176 {rgb=(.5 .4 .2)} Face 41768 9718 9663 21176 {rgb=(.5 .4 .2)} Face 41769 9837 9950 21177 {rgb=(.5 .4 .2)} Face 41770 9950 9946 21177 {rgb=(.5 .4 .2)} Face 41771 9946 9833 21177 {rgb=(.5 .4 .2)} Face 41772 9833 9837 21177 {rgb=(.5 .4 .2)} Face 41773 9950 10007 21178 {rgb=(.5 .4 .2)} Face 41774 10007 10000 21178 {rgb=(.5 .4 .2)} Face 41775 10000 9946 21178 {rgb=(.5 .4 .2)} Face 41776 9946 9950 21178 {rgb=(.5 .4 .2)} Face 41777 10007 9878 21179 {rgb=(.5 .4 .2)} Face 41778 9878 9874 21179 {rgb=(.5 .4 .2)} Face 41779 9874 10000 21179 {rgb=(.5 .4 .2)} Face 41780 10000 10007 21179 {rgb=(.5 .4 .2)} Face 41781 9878 9618 21180 {rgb=(.5 .4 .2)} Face 41782 9618 9610 21180 {rgb=(.5 .4 .2)} Face 41783 9610 9874 21180 {rgb=(.5 .4 .2)} Face 41784 9874 9878 21180 {rgb=(.5 .4 .2)} Face 41785 9618 9351 21181 {rgb=(.5 .4 .2)} Face 41786 9351 9350 21181 {rgb=(.5 .4 .2)} Face 41787 9350 9610 21181 {rgb=(.5 .4 .2)} Face 41788 9610 9618 21181 {rgb=(.5 .4 .2)} Face 41789 9351 7893 21182 {rgb=(.5 .4 .2)} Face 41790 7893 7885 21182 {rgb=(.5 .4 .2)} Face 41791 7885 9350 21182 {rgb=(.5 .4 .2)} Face 41792 9350 9351 21182 {rgb=(.5 .4 .2)} Face 41793 7893 7562 21183 {rgb=(.5 .4 .2)} Face 41794 7562 7583 21183 {rgb=(.5 .4 .2)} Face 41795 7583 7885 21183 {rgb=(.5 .4 .2)} Face 41796 7885 7893 21183 {rgb=(.5 .4 .2)} Face 41797 7562 8119 21184 {rgb=(.5 .4 .2)} Face 41798 8119 8164 21184 {rgb=(.5 .4 .2)} Face 41799 8164 7583 21184 {rgb=(.5 .4 .2)} Face 41800 7583 7562 21184 {rgb=(.5 .4 .2)} Face 41801 8119 9386 21185 {rgb=(.5 .4 .2)} Face 41802 9386 9387 21185 {rgb=(.5 .4 .2)} Face 41803 9387 8164 21185 {rgb=(.5 .4 .2)} Face 41804 8164 8119 21185 {rgb=(.5 .4 .2)} Face 41805 9386 9601 21186 {rgb=(.5 .4 .2)} Face 41806 9601 9593 21186 {rgb=(.5 .4 .2)} Face 41807 9593 9387 21186 {rgb=(.5 .4 .2)} Face 41808 9387 9386 21186 {rgb=(.5 .4 .2)} Face 41809 9833 9593 21187 {rgb=(.5 .4 .2)} Face 41810 9593 9601 21187 {rgb=(.5 .4 .2)} Face 41811 9601 9837 21187 {rgb=(.5 .4 .2)} Face 41812 9837 9833 21187 {rgb=(.5 .4 .2)} Face 41813 9866 9617 21188 {rgb=(.5 .4 .2)} Face 41814 9617 9621 21188 {rgb=(.5 .4 .2)} Face 41815 9621 9868 21188 {rgb=(.5 .4 .2)} Face 41816 9868 9866 21188 {rgb=(.5 .4 .2)} Face 41817 9617 9371 21189 {rgb=(.5 .4 .2)} Face 41818 9371 9367 21189 {rgb=(.5 .4 .2)} Face 41819 9367 9621 21189 {rgb=(.5 .4 .2)} Face 41820 9621 9617 21189 {rgb=(.5 .4 .2)} Face 41821 9371 7895 21190 {rgb=(.5 .4 .2)} Face 41822 7895 7862 21190 {rgb=(.5 .4 .2)} Face 41823 7862 9367 21190 {rgb=(.5 .4 .2)} Face 41824 9367 9371 21190 {rgb=(.5 .4 .2)} Face 41825 7895 7483 21191 {rgb=(.5 .4 .2)} Face 41826 7483 7465 21191 {rgb=(.5 .4 .2)} Face 41827 7465 7862 21191 {rgb=(.5 .4 .2)} Face 41828 7862 7895 21191 {rgb=(.5 .4 .2)} Face 41829 7483 7920 21192 {rgb=(.5 .4 .2)} Face 41830 7920 7928 21192 {rgb=(.5 .4 .2)} Face 41831 7928 7465 21192 {rgb=(.5 .4 .2)} Face 41832 7465 7483 21192 {rgb=(.5 .4 .2)} Face 41833 7920 9358 21193 {rgb=(.5 .4 .2)} Face 41834 9358 9361 21193 {rgb=(.5 .4 .2)} Face 41835 9361 7928 21193 {rgb=(.5 .4 .2)} Face 41836 7928 7920 21193 {rgb=(.5 .4 .2)} Face 41837 9358 9637 21194 {rgb=(.5 .4 .2)} Face 41838 9637 9642 21194 {rgb=(.5 .4 .2)} Face 41839 9642 9361 21194 {rgb=(.5 .4 .2)} Face 41840 9361 9358 21194 {rgb=(.5 .4 .2)} Face 41841 9637 9911 21195 {rgb=(.5 .4 .2)} Face 41842 9911 9919 21195 {rgb=(.5 .4 .2)} Face 41843 9919 9642 21195 {rgb=(.5 .4 .2)} Face 41844 9642 9637 21195 {rgb=(.5 .4 .2)} Face 41845 9911 10054 21196 {rgb=(.5 .4 .2)} Face 41846 10054 10061 21196 {rgb=(.5 .4 .2)} Face 41847 10061 9919 21196 {rgb=(.5 .4 .2)} Face 41848 9919 9911 21196 {rgb=(.5 .4 .2)} Face 41849 10054 9977 21197 {rgb=(.5 .4 .2)} Face 41850 9977 9981 21197 {rgb=(.5 .4 .2)} Face 41851 9981 10061 21197 {rgb=(.5 .4 .2)} Face 41852 10061 10054 21197 {rgb=(.5 .4 .2)} Face 41853 9977 9866 21198 {rgb=(.5 .4 .2)} Face 41854 9866 9868 21198 {rgb=(.5 .4 .2)} Face 41855 9868 9981 21198 {rgb=(.5 .4 .2)} Face 41856 9981 9977 21198 {rgb=(.5 .4 .2)} Face 41857 9384 7897 21199 {rgb=(.5 .4 .2)} Face 41858 7897 8164 21199 {rgb=(.5 .4 .2)} Face 41859 8164 9387 21199 {rgb=(.5 .4 .2)} Face 41860 9387 9384 21199 {rgb=(.5 .4 .2)} Face 41861 9581 9384 21200 {rgb=(.5 .4 .2)} Face 41862 9384 9387 21200 {rgb=(.5 .4 .2)} Face 41863 9387 9593 21200 {rgb=(.5 .4 .2)} Face 41864 9593 9581 21200 {rgb=(.5 .4 .2)} Face 41865 9858 9581 21201 {rgb=(.5 .4 .2)} Face 41866 9581 9593 21201 {rgb=(.5 .4 .2)} Face 41867 9593 9833 21201 {rgb=(.5 .4 .2)} Face 41868 9833 9858 21201 {rgb=(.5 .4 .2)} Face 41869 9969 9858 21202 {rgb=(.5 .4 .2)} Face 41870 9858 9833 21202 {rgb=(.5 .4 .2)} Face 41871 9833 9946 21202 {rgb=(.5 .4 .2)} Face 41872 9946 9969 21202 {rgb=(.5 .4 .2)} Face 41873 10034 9969 21203 {rgb=(.5 .4 .2)} Face 41874 9969 9946 21203 {rgb=(.5 .4 .2)} Face 41875 9946 10000 21203 {rgb=(.5 .4 .2)} Face 41876 10000 10034 21203 {rgb=(.5 .4 .2)} Face 41877 9899 10034 21204 {rgb=(.5 .4 .2)} Face 41878 10034 10000 21204 {rgb=(.5 .4 .2)} Face 41879 10000 9874 21204 {rgb=(.5 .4 .2)} Face 41880 9874 9899 21204 {rgb=(.5 .4 .2)} Face 41881 9616 9899 21205 {rgb=(.5 .4 .2)} Face 41882 9899 9874 21205 {rgb=(.5 .4 .2)} Face 41883 9874 9610 21205 {rgb=(.5 .4 .2)} Face 41884 9610 9616 21205 {rgb=(.5 .4 .2)} Face 41885 9327 9616 21206 {rgb=(.5 .4 .2)} Face 41886 9616 9610 21206 {rgb=(.5 .4 .2)} Face 41887 9610 9350 21206 {rgb=(.5 .4 .2)} Face 41888 9350 9327 21206 {rgb=(.5 .4 .2)} Face 41889 7647 9327 21207 {rgb=(.5 .4 .2)} Face 41890 9327 9350 21207 {rgb=(.5 .4 .2)} Face 41891 9350 7885 21207 {rgb=(.5 .4 .2)} Face 41892 7885 7647 21207 {rgb=(.5 .4 .2)} Face 41893 7365 7647 21208 {rgb=(.5 .4 .2)} Face 41894 7647 7885 21208 {rgb=(.5 .4 .2)} Face 41895 7885 7583 21208 {rgb=(.5 .4 .2)} Face 41896 7583 7365 21208 {rgb=(.5 .4 .2)} Face 41897 7897 7365 21209 {rgb=(.5 .4 .2)} Face 41898 7365 7583 21209 {rgb=(.5 .4 .2)} Face 41899 7583 8164 21209 {rgb=(.5 .4 .2)} Face 41900 8164 7897 21209 {rgb=(.5 .4 .2)} Face 41901 7623 7455 21210 {rgb=(.5 .4 .2)} Face 41902 7455 7677 21210 {rgb=(.5 .4 .2)} Face 41903 7677 7850 21210 {rgb=(.5 .4 .2)} Face 41904 7850 7623 21210 {rgb=(.5 .4 .2)} Face 41905 9296 7623 21211 {rgb=(.5 .4 .2)} Face 41906 7623 7850 21211 {rgb=(.5 .4 .2)} Face 41907 7850 9335 21211 {rgb=(.5 .4 .2)} Face 41908 9335 9296 21211 {rgb=(.5 .4 .2)} Face 41909 9582 9296 21212 {rgb=(.5 .4 .2)} Face 41910 9296 9335 21212 {rgb=(.5 .4 .2)} Face 41911 9335 9572 21212 {rgb=(.5 .4 .2)} Face 41912 9572 9582 21212 {rgb=(.5 .4 .2)} Face 41913 9865 9582 21213 {rgb=(.5 .4 .2)} Face 41914 9582 9572 21213 {rgb=(.5 .4 .2)} Face 41915 9572 9842 21213 {rgb=(.5 .4 .2)} Face 41916 9842 9865 21213 {rgb=(.5 .4 .2)} Face 41917 9991 9865 21214 {rgb=(.5 .4 .2)} Face 41918 9865 9842 21214 {rgb=(.5 .4 .2)} Face 41919 9842 9961 21214 {rgb=(.5 .4 .2)} Face 41920 9961 9991 21214 {rgb=(.5 .4 .2)} Face 41921 9942 9991 21215 {rgb=(.5 .4 .2)} Face 41922 9991 9961 21215 {rgb=(.5 .4 .2)} Face 41923 9961 9913 21215 {rgb=(.5 .4 .2)} Face 41924 9913 9942 21215 {rgb=(.5 .4 .2)} Face 41925 9828 9942 21216 {rgb=(.5 .4 .2)} Face 41926 9942 9913 21216 {rgb=(.5 .4 .2)} Face 41927 9913 9798 21216 {rgb=(.5 .4 .2)} Face 41928 9798 9828 21216 {rgb=(.5 .4 .2)} Face 41929 9566 9828 21217 {rgb=(.5 .4 .2)} Face 41930 9828 9798 21217 {rgb=(.5 .4 .2)} Face 41931 9798 9573 21217 {rgb=(.5 .4 .2)} Face 41932 9573 9566 21217 {rgb=(.5 .4 .2)} Face 41933 9393 9566 21218 {rgb=(.5 .4 .2)} Face 41934 9566 9573 21218 {rgb=(.5 .4 .2)} Face 41935 9573 9394 21218 {rgb=(.5 .4 .2)} Face 41936 9394 9393 21218 {rgb=(.5 .4 .2)} Face 41937 8137 9393 21219 {rgb=(.5 .4 .2)} Face 41938 9393 9394 21219 {rgb=(.5 .4 .2)} Face 41939 9394 8348 21219 {rgb=(.5 .4 .2)} Face 41940 8348 8137 21219 {rgb=(.5 .4 .2)} Face 41941 7455 8137 21220 {rgb=(.5 .4 .2)} Face 41942 8137 8348 21220 {rgb=(.5 .4 .2)} Face 41943 8348 7677 21220 {rgb=(.5 .4 .2)} Face 41944 7677 7455 21220 {rgb=(.5 .4 .2)} Face 41945 7336 7865 21221 {rgb=(.5 .4 .2)} Face 41946 7865 8119 21221 {rgb=(.5 .4 .2)} Face 41947 8119 7562 21221 {rgb=(.5 .4 .2)} Face 41948 7562 7336 21221 {rgb=(.5 .4 .2)} Face 41949 7724 7336 21222 {rgb=(.5 .4 .2)} Face 41950 7336 7562 21222 {rgb=(.5 .4 .2)} Face 41951 7562 7893 21222 {rgb=(.5 .4 .2)} Face 41952 7893 7724 21222 {rgb=(.5 .4 .2)} Face 41953 9309 7724 21223 {rgb=(.5 .4 .2)} Face 41954 7724 7893 21223 {rgb=(.5 .4 .2)} Face 41955 7893 9351 21223 {rgb=(.5 .4 .2)} Face 41956 9351 9309 21223 {rgb=(.5 .4 .2)} Face 41957 9623 9309 21224 {rgb=(.5 .4 .2)} Face 41958 9309 9351 21224 {rgb=(.5 .4 .2)} Face 41959 9351 9618 21224 {rgb=(.5 .4 .2)} Face 41960 9618 9623 21224 {rgb=(.5 .4 .2)} Face 41961 9906 9623 21225 {rgb=(.5 .4 .2)} Face 41962 9623 9618 21225 {rgb=(.5 .4 .2)} Face 41963 9618 9878 21225 {rgb=(.5 .4 .2)} Face 41964 9878 9906 21225 {rgb=(.5 .4 .2)} Face 41965 10047 9906 21226 {rgb=(.5 .4 .2)} Face 41966 9906 9878 21226 {rgb=(.5 .4 .2)} Face 41967 9878 10007 21226 {rgb=(.5 .4 .2)} Face 41968 10007 10047 21226 {rgb=(.5 .4 .2)} Face 41969 9979 10047 21227 {rgb=(.5 .4 .2)} Face 41970 10047 10007 21227 {rgb=(.5 .4 .2)} Face 41971 10007 9950 21227 {rgb=(.5 .4 .2)} Face 41972 9950 9979 21227 {rgb=(.5 .4 .2)} Face 41973 9860 9979 21228 {rgb=(.5 .4 .2)} Face 41974 9979 9950 21228 {rgb=(.5 .4 .2)} Face 41975 9950 9837 21228 {rgb=(.5 .4 .2)} Face 41976 9837 9860 21228 {rgb=(.5 .4 .2)} Face 41977 9585 9860 21229 {rgb=(.5 .4 .2)} Face 41978 9860 9837 21229 {rgb=(.5 .4 .2)} Face 41979 9837 9601 21229 {rgb=(.5 .4 .2)} Face 41980 9601 9585 21229 {rgb=(.5 .4 .2)} Face 41981 9381 9585 21230 {rgb=(.5 .4 .2)} Face 41982 9585 9601 21230 {rgb=(.5 .4 .2)} Face 41983 9601 9386 21230 {rgb=(.5 .4 .2)} Face 41984 9386 9381 21230 {rgb=(.5 .4 .2)} Face 41985 7865 9381 21231 {rgb=(.5 .4 .2)} Face 41986 9381 9386 21231 {rgb=(.5 .4 .2)} Face 41987 9386 8119 21231 {rgb=(.5 .4 .2)} Face 41988 8119 7865 21231 {rgb=(.5 .4 .2)} Face 41989 9604 9365 21232 {rgb=(.5 .4 .2)} Face 41990 9365 9371 21232 {rgb=(.5 .4 .2)} Face 41991 9371 9617 21232 {rgb=(.5 .4 .2)} Face 41992 9617 9604 21232 {rgb=(.5 .4 .2)} Face 41993 9880 9604 21233 {rgb=(.5 .4 .2)} Face 41994 9604 9617 21233 {rgb=(.5 .4 .2)} Face 41995 9617 9866 21233 {rgb=(.5 .4 .2)} Face 41996 9866 9880 21233 {rgb=(.5 .4 .2)} Face 41997 10012 9880 21234 {rgb=(.5 .4 .2)} Face 41998 9880 9866 21234 {rgb=(.5 .4 .2)} Face 41999 9866 9977 21234 {rgb=(.5 .4 .2)} Face 42000 9977 10012 21234 {rgb=(.5 .4 .2)} Face 42001 10089 10012 21235 {rgb=(.5 .4 .2)} Face 42002 10012 9977 21235 {rgb=(.5 .4 .2)} Face 42003 9977 10054 21235 {rgb=(.5 .4 .2)} Face 42004 10054 10089 21235 {rgb=(.5 .4 .2)} Face 42005 9929 10089 21236 {rgb=(.5 .4 .2)} Face 42006 10089 10054 21236 {rgb=(.5 .4 .2)} Face 42007 10054 9911 21236 {rgb=(.5 .4 .2)} Face 42008 9911 9929 21236 {rgb=(.5 .4 .2)} Face 42009 9641 9929 21237 {rgb=(.5 .4 .2)} Face 42010 9929 9911 21237 {rgb=(.5 .4 .2)} Face 42011 9911 9637 21237 {rgb=(.5 .4 .2)} Face 42012 9637 9641 21237 {rgb=(.5 .4 .2)} Face 42013 9334 9641 21238 {rgb=(.5 .4 .2)} Face 42014 9641 9637 21238 {rgb=(.5 .4 .2)} Face 42015 9637 9358 21238 {rgb=(.5 .4 .2)} Face 42016 9358 9334 21238 {rgb=(.5 .4 .2)} Face 42017 7758 9334 21239 {rgb=(.5 .4 .2)} Face 42018 9334 9358 21239 {rgb=(.5 .4 .2)} Face 42019 9358 7920 21239 {rgb=(.5 .4 .2)} Face 42020 7920 7758 21239 {rgb=(.5 .4 .2)} Face 42021 7269 7758 21240 {rgb=(.5 .4 .2)} Face 42022 7758 7920 21240 {rgb=(.5 .4 .2)} Face 42023 7920 7483 21240 {rgb=(.5 .4 .2)} Face 42024 7483 7269 21240 {rgb=(.5 .4 .2)} Face 42025 7703 7269 21241 {rgb=(.5 .4 .2)} Face 42026 7269 7483 21241 {rgb=(.5 .4 .2)} Face 42027 7483 7895 21241 {rgb=(.5 .4 .2)} Face 42028 7895 7703 21241 {rgb=(.5 .4 .2)} Face 42029 9365 7703 21242 {rgb=(.5 .4 .2)} Face 42030 7703 7895 21242 {rgb=(.5 .4 .2)} Face 42031 7895 9371 21242 {rgb=(.5 .4 .2)} Face 42032 9371 9365 21242 {rgb=(.5 .4 .2)} Face 42033 7711 7215 21243 {rgb=(.5 .4 .2)} Face 42034 7215 7465 21243 {rgb=(.5 .4 .2)} Face 42035 7465 7928 21243 {rgb=(.5 .4 .2)} Face 42036 7928 7711 21243 {rgb=(.5 .4 .2)} Face 42037 9344 7711 21244 {rgb=(.5 .4 .2)} Face 42038 7711 7928 21244 {rgb=(.5 .4 .2)} Face 42039 7928 9361 21244 {rgb=(.5 .4 .2)} Face 42040 9361 9344 21244 {rgb=(.5 .4 .2)} Face 42041 9644 9344 21245 {rgb=(.5 .4 .2)} Face 42042 9344 9361 21245 {rgb=(.5 .4 .2)} Face 42043 9361 9642 21245 {rgb=(.5 .4 .2)} Face 42044 9642 9644 21245 {rgb=(.5 .4 .2)} Face 42045 9936 9644 21246 {rgb=(.5 .4 .2)} Face 42046 9644 9642 21246 {rgb=(.5 .4 .2)} Face 42047 9642 9919 21246 {rgb=(.5 .4 .2)} Face 42048 9919 9936 21246 {rgb=(.5 .4 .2)} Face 42049 10098 9936 21247 {rgb=(.5 .4 .2)} Face 42050 9936 9919 21247 {rgb=(.5 .4 .2)} Face 42051 9919 10061 21247 {rgb=(.5 .4 .2)} Face 42052 10061 10098 21247 {rgb=(.5 .4 .2)} Face 42053 10013 10098 21248 {rgb=(.5 .4 .2)} Face 42054 10098 10061 21248 {rgb=(.5 .4 .2)} Face 42055 10061 9981 21248 {rgb=(.5 .4 .2)} Face 42056 9981 10013 21248 {rgb=(.5 .4 .2)} Face 42057 9894 10013 21249 {rgb=(.5 .4 .2)} Face 42058 10013 9981 21249 {rgb=(.5 .4 .2)} Face 42059 9981 9868 21249 {rgb=(.5 .4 .2)} Face 42060 9868 9894 21249 {rgb=(.5 .4 .2)} Face 42061 9608 9894 21250 {rgb=(.5 .4 .2)} Face 42062 9894 9868 21250 {rgb=(.5 .4 .2)} Face 42063 9868 9621 21250 {rgb=(.5 .4 .2)} Face 42064 9621 9608 21250 {rgb=(.5 .4 .2)} Face 42065 9362 9608 21251 {rgb=(.5 .4 .2)} Face 42066 9608 9621 21251 {rgb=(.5 .4 .2)} Face 42067 9621 9367 21251 {rgb=(.5 .4 .2)} Face 42068 9367 9362 21251 {rgb=(.5 .4 .2)} Face 42069 7625 9362 21252 {rgb=(.5 .4 .2)} Face 42070 9362 9367 21252 {rgb=(.5 .4 .2)} Face 42071 9367 7862 21252 {rgb=(.5 .4 .2)} Face 42072 7862 7625 21252 {rgb=(.5 .4 .2)} Face 42073 7215 7625 21253 {rgb=(.5 .4 .2)} Face 42074 7625 7862 21253 {rgb=(.5 .4 .2)} Face 42075 7862 7465 21253 {rgb=(.5 .4 .2)} Face 42076 7465 7215 21253 {rgb=(.5 .4 .2)} Face 42077 9349 7456 21254 {rgb=(.5 .4 .2)} Face 42078 7456 7661 21254 {rgb=(.5 .4 .2)} Face 42079 7661 9354 21254 {rgb=(.5 .4 .2)} Face 42080 9354 9349 21254 {rgb=(.5 .4 .2)} Face 42081 9613 9349 21255 {rgb=(.5 .4 .2)} Face 42082 9349 9354 21255 {rgb=(.5 .4 .2)} Face 42083 9354 9627 21255 {rgb=(.5 .4 .2)} Face 42084 9627 9613 21255 {rgb=(.5 .4 .2)} Face 42085 9916 9613 21256 {rgb=(.5 .4 .2)} Face 42086 9613 9627 21256 {rgb=(.5 .4 .2)} Face 42087 9627 9892 21256 {rgb=(.5 .4 .2)} Face 42088 9892 9916 21256 {rgb=(.5 .4 .2)} Face 42089 9959 10139 21257 {rgb=(.5 .4 .2)} Face 42090 10139 10106 21257 {rgb=(.5 .4 .2)} Face 42091 10106 9944 21257 {rgb=(.5 .4 .2)} Face 42092 9944 9959 21257 {rgb=(.5 .4 .2)} Face 42093 7456 7130 21258 {rgb=(.5 .4 .2)} Face 42094 7130 7385 21258 {rgb=(.5 .4 .2)} Face 42095 7385 7661 21258 {rgb=(.5 .4 .2)} Face 42096 7661 7456 21258 {rgb=(.5 .4 .2)} Face 42097 9828 9566 21259 {rgb=(.5 .4 .2)} Face 42098 9566 9581 21259 {rgb=(.5 .4 .2)} Face 42099 9581 9858 21259 {rgb=(.5 .4 .2)} Face 42100 9858 9828 21259 {rgb=(.5 .4 .2)} Face 42101 9860 9585 21260 {rgb=(.5 .4 .2)} Face 42102 9585 9604 21260 {rgb=(.5 .4 .2)} Face 42103 9604 9880 21260 {rgb=(.5 .4 .2)} Face 42104 9880 9860 21260 {rgb=(.5 .4 .2)} Face 42105 9623 9906 21261 {rgb=(.5 .4 .2)} Face 42106 9906 9929 21261 {rgb=(.5 .4 .2)} Face 42107 9929 9641 21261 {rgb=(.5 .4 .2)} Face 42108 9641 9623 21261 {rgb=(.5 .4 .2)} Face 42109 9906 10047 21262 {rgb=(.5 .4 .2)} Face 42110 10047 10089 21262 {rgb=(.5 .4 .2)} Face 42111 10089 9929 21262 {rgb=(.5 .4 .2)} Face 42112 9929 9906 21262 {rgb=(.5 .4 .2)} Face 42113 10047 9979 21263 {rgb=(.5 .4 .2)} Face 42114 9979 10012 21263 {rgb=(.5 .4 .2)} Face 42115 10012 10089 21263 {rgb=(.5 .4 .2)} Face 42116 10089 10047 21263 {rgb=(.5 .4 .2)} Face 42117 9979 9860 21264 {rgb=(.5 .4 .2)} Face 42118 9860 9880 21264 {rgb=(.5 .4 .2)} Face 42119 9880 10012 21264 {rgb=(.5 .4 .2)} Face 42120 10012 9979 21264 {rgb=(.5 .4 .2)} Face 42121 9916 10051 21265 {rgb=(.5 .4 .2)} Face 42122 10051 10013 21265 {rgb=(.5 .4 .2)} Face 42123 10013 9894 21265 {rgb=(.5 .4 .2)} Face 42124 9894 9916 21265 {rgb=(.5 .4 .2)} Face 42125 10051 10139 21266 {rgb=(.5 .4 .2)} Face 42126 10139 10098 21266 {rgb=(.5 .4 .2)} Face 42127 10098 10013 21266 {rgb=(.5 .4 .2)} Face 42128 10013 10051 21266 {rgb=(.5 .4 .2)} Face 42129 10139 9959 21267 {rgb=(.5 .4 .2)} Face 42130 9959 9936 21267 {rgb=(.5 .4 .2)} Face 42131 9936 10098 21267 {rgb=(.5 .4 .2)} Face 42132 10098 10139 21267 {rgb=(.5 .4 .2)} Face 42133 9959 9663 21268 {rgb=(.5 .4 .2)} Face 42134 9663 9644 21268 {rgb=(.5 .4 .2)} Face 42135 9644 9936 21268 {rgb=(.5 .4 .2)} Face 42136 9936 9959 21268 {rgb=(.5 .4 .2)} Face 42137 9641 9334 21269 {rgb=(.5 .4 .2)} Face 42138 9334 9309 21269 {rgb=(.5 .4 .2)} Face 42139 9309 9623 21269 {rgb=(.5 .4 .2)} Face 42140 9623 9641 21269 {rgb=(.5 .4 .2)} Face 42141 9334 7758 21270 {rgb=(.5 .4 .2)} Face 42142 7758 7724 21270 {rgb=(.5 .4 .2)} Face 42143 7724 9309 21270 {rgb=(.5 .4 .2)} Face 42144 9309 9334 21270 {rgb=(.5 .4 .2)} Face 42145 7758 7269 21271 {rgb=(.5 .4 .2)} Face 42146 7269 7336 21271 {rgb=(.5 .4 .2)} Face 42147 7336 7724 21271 {rgb=(.5 .4 .2)} Face 42148 7724 7758 21271 {rgb=(.5 .4 .2)} Face 42149 7269 7703 21272 {rgb=(.5 .4 .2)} Face 42150 7703 7865 21272 {rgb=(.5 .4 .2)} Face 42151 7865 7336 21272 {rgb=(.5 .4 .2)} Face 42152 7336 7269 21272 {rgb=(.5 .4 .2)} Face 42153 7703 9365 21273 {rgb=(.5 .4 .2)} Face 42154 9365 9381 21273 {rgb=(.5 .4 .2)} Face 42155 9381 7865 21273 {rgb=(.5 .4 .2)} Face 42156 7865 7703 21273 {rgb=(.5 .4 .2)} Face 42157 9365 9604 21274 {rgb=(.5 .4 .2)} Face 42158 9604 9585 21274 {rgb=(.5 .4 .2)} Face 42159 9585 9381 21274 {rgb=(.5 .4 .2)} Face 42160 9381 9365 21274 {rgb=(.5 .4 .2)} Face 42161 9566 9393 21275 {rgb=(.5 .4 .2)} Face 42162 9393 9384 21275 {rgb=(.5 .4 .2)} Face 42163 9384 9581 21275 {rgb=(.5 .4 .2)} Face 42164 9581 9566 21275 {rgb=(.5 .4 .2)} Face 42165 9393 8137 21276 {rgb=(.5 .4 .2)} Face 42166 8137 7897 21276 {rgb=(.5 .4 .2)} Face 42167 7897 9384 21276 {rgb=(.5 .4 .2)} Face 42168 9384 9393 21276 {rgb=(.5 .4 .2)} Face 42169 8137 7455 21277 {rgb=(.5 .4 .2)} Face 42170 7455 7365 21277 {rgb=(.5 .4 .2)} Face 42171 7365 7897 21277 {rgb=(.5 .4 .2)} Face 42172 7897 8137 21277 {rgb=(.5 .4 .2)} Face 42173 7455 7623 21278 {rgb=(.5 .4 .2)} Face 42174 7623 7647 21278 {rgb=(.5 .4 .2)} Face 42175 7647 7365 21278 {rgb=(.5 .4 .2)} Face 42176 7365 7455 21278 {rgb=(.5 .4 .2)} Face 42177 7623 9296 21279 {rgb=(.5 .4 .2)} Face 42178 9296 9327 21279 {rgb=(.5 .4 .2)} Face 42179 9327 7647 21279 {rgb=(.5 .4 .2)} Face 42180 7647 7623 21279 {rgb=(.5 .4 .2)} Face 42181 9296 9582 21280 {rgb=(.5 .4 .2)} Face 42182 9582 9616 21280 {rgb=(.5 .4 .2)} Face 42183 9616 9327 21280 {rgb=(.5 .4 .2)} Face 42184 9327 9296 21280 {rgb=(.5 .4 .2)} Face 42185 9349 9613 21281 {rgb=(.5 .4 .2)} Face 42186 9613 9608 21281 {rgb=(.5 .4 .2)} Face 42187 9608 9362 21281 {rgb=(.5 .4 .2)} Face 42188 9362 9349 21281 {rgb=(.5 .4 .2)} Face 42189 9613 9916 21282 {rgb=(.5 .4 .2)} Face 42190 9916 9894 21282 {rgb=(.5 .4 .2)} Face 42191 9894 9608 21282 {rgb=(.5 .4 .2)} Face 42192 9608 9613 21282 {rgb=(.5 .4 .2)} Face 42193 9858 9969 21283 {rgb=(.5 .4 .2)} Face 42194 9969 9942 21283 {rgb=(.5 .4 .2)} Face 42195 9942 9828 21283 {rgb=(.5 .4 .2)} Face 42196 9828 9858 21283 {rgb=(.5 .4 .2)} Face 42197 9969 10034 21284 {rgb=(.5 .4 .2)} Face 42198 10034 9991 21284 {rgb=(.5 .4 .2)} Face 42199 9991 9942 21284 {rgb=(.5 .4 .2)} Face 42200 9942 9969 21284 {rgb=(.5 .4 .2)} Face 42201 10034 9899 21285 {rgb=(.5 .4 .2)} Face 42202 9899 9865 21285 {rgb=(.5 .4 .2)} Face 42203 9865 9991 21285 {rgb=(.5 .4 .2)} Face 42204 9991 10034 21285 {rgb=(.5 .4 .2)} Face 42205 9899 9616 21286 {rgb=(.5 .4 .2)} Face 42206 9616 9582 21286 {rgb=(.5 .4 .2)} Face 42207 9582 9865 21286 {rgb=(.5 .4 .2)} Face 42208 9865 9899 21286 {rgb=(.5 .4 .2)} Face 42209 9663 9355 21287 {rgb=(.5 .4 .2)} Face 42210 9355 9344 21287 {rgb=(.5 .4 .2)} Face 42211 9344 9644 21287 {rgb=(.5 .4 .2)} Face 42212 9644 9663 21287 {rgb=(.5 .4 .2)} Face 42213 9355 7738 21288 {rgb=(.5 .4 .2)} Face 42214 7738 7711 21288 {rgb=(.5 .4 .2)} Face 42215 7711 9344 21288 {rgb=(.5 .4 .2)} Face 42216 9344 9355 21288 {rgb=(.5 .4 .2)} Face 42217 7738 7130 21289 {rgb=(.5 .4 .2)} Face 42218 7130 7215 21289 {rgb=(.5 .4 .2)} Face 42219 7215 7711 21289 {rgb=(.5 .4 .2)} Face 42220 7711 7738 21289 {rgb=(.5 .4 .2)} Face 42221 7130 7456 21290 {rgb=(.5 .4 .2)} Face 42222 7456 7625 21290 {rgb=(.5 .4 .2)} Face 42223 7625 7215 21290 {rgb=(.5 .4 .2)} Face 42224 7215 7130 21290 {rgb=(.5 .4 .2)} Face 42225 7456 9349 21291 {rgb=(.5 .4 .2)} Face 42226 9349 9362 21291 {rgb=(.5 .4 .2)} Face 42227 9362 7625 21291 {rgb=(.5 .4 .2)} Face 42228 7625 7456 21291 {rgb=(.5 .4 .2)} Face 42229 3304 3911 21292 {rgb=(.5 .4 .2)} Face 42230 3911 3659 21292 {rgb=(.5 .4 .2)} Face 42231 3659 3202 21292 {rgb=(.5 .4 .2)} Face 42232 3202 3304 21292 {rgb=(.5 .4 .2)} Face 42233 2736 1679 21293 {rgb=(.5 .4 .2)} Face 42234 1679 1690 21293 {rgb=(.5 .4 .2)} Face 42235 1690 3304 21293 {rgb=(.5 .4 .2)} Face 42236 3304 2736 21293 {rgb=(.5 .4 .2)} Face 42237 994 906 21294 {rgb=(.5 .4 .2)} Face 42238 906 939 21294 {rgb=(.5 .4 .2)} Face 42239 939 1012 21294 {rgb=(.5 .4 .2)} Face 42240 1012 994 21294 {rgb=(.5 .4 .2)} Face 42241 1053 1153 21295 {rgb=(.5 .4 .2)} Face 42242 1153 1129 21295 {rgb=(.5 .4 .2)} Face 42243 1129 994 21295 {rgb=(.5 .4 .2)} Face 42244 994 1053 21295 {rgb=(.5 .4 .2)} Face 42245 1382 1690 21296 {rgb=(.5 .4 .2)} Face 42246 1690 1679 21296 {rgb=(.5 .4 .2)} Face 42247 1679 1465 21296 {rgb=(.5 .4 .2)} Face 42248 1465 1382 21296 {rgb=(.5 .4 .2)} Face 42249 1327 1101 21297 {rgb=(.5 .4 .2)} Face 42250 1101 1086 21297 {rgb=(.5 .4 .2)} Face 42251 1086 1382 21297 {rgb=(.5 .4 .2)} Face 42252 1382 1327 21297 {rgb=(.5 .4 .2)} Face 42253 1212 1099 21298 {rgb=(.5 .4 .2)} Face 42254 1099 1095 21298 {rgb=(.5 .4 .2)} Face 42255 1095 1208 21298 {rgb=(.5 .4 .2)} Face 42256 1208 1212 21298 {rgb=(.5 .4 .2)} Face 42257 1099 1045 21299 {rgb=(.5 .4 .2)} Face 42258 1045 1038 21299 {rgb=(.5 .4 .2)} Face 42259 1038 1095 21299 {rgb=(.5 .4 .2)} Face 42260 1095 1099 21299 {rgb=(.5 .4 .2)} Face 42261 1045 1171 21300 {rgb=(.5 .4 .2)} Face 42262 1171 1167 21300 {rgb=(.5 .4 .2)} Face 42263 1167 1038 21300 {rgb=(.5 .4 .2)} Face 42264 1038 1045 21300 {rgb=(.5 .4 .2)} Face 42265 1171 1435 21301 {rgb=(.5 .4 .2)} Face 42266 1435 1427 21301 {rgb=(.5 .4 .2)} Face 42267 1427 1167 21301 {rgb=(.5 .4 .2)} Face 42268 1167 1171 21301 {rgb=(.5 .4 .2)} Face 42269 1435 1695 21302 {rgb=(.5 .4 .2)} Face 42270 1695 1694 21302 {rgb=(.5 .4 .2)} Face 42271 1694 1427 21302 {rgb=(.5 .4 .2)} Face 42272 1427 1435 21302 {rgb=(.5 .4 .2)} Face 42273 1695 3159 21303 {rgb=(.5 .4 .2)} Face 42274 3159 3152 21303 {rgb=(.5 .4 .2)} Face 42275 3152 1694 21303 {rgb=(.5 .4 .2)} Face 42276 1694 1695 21303 {rgb=(.5 .4 .2)} Face 42277 3159 3459 21304 {rgb=(.5 .4 .2)} Face 42278 3459 3482 21304 {rgb=(.5 .4 .2)} Face 42279 3482 3152 21304 {rgb=(.5 .4 .2)} Face 42280 3152 3159 21304 {rgb=(.5 .4 .2)} Face 42281 3459 2879 21305 {rgb=(.5 .4 .2)} Face 42282 2879 2916 21305 {rgb=(.5 .4 .2)} Face 42283 2916 3482 21305 {rgb=(.5 .4 .2)} Face 42284 3482 3459 21305 {rgb=(.5 .4 .2)} Face 42285 2879 1658 21306 {rgb=(.5 .4 .2)} Face 42286 1658 1659 21306 {rgb=(.5 .4 .2)} Face 42287 1659 2916 21306 {rgb=(.5 .4 .2)} Face 42288 2916 2879 21306 {rgb=(.5 .4 .2)} Face 42289 1658 1452 21307 {rgb=(.5 .4 .2)} Face 42290 1452 1444 21307 {rgb=(.5 .4 .2)} Face 42291 1444 1659 21307 {rgb=(.5 .4 .2)} Face 42292 1659 1658 21307 {rgb=(.5 .4 .2)} Face 42293 1208 1444 21308 {rgb=(.5 .4 .2)} Face 42294 1444 1452 21308 {rgb=(.5 .4 .2)} Face 42295 1452 1212 21308 {rgb=(.5 .4 .2)} Face 42296 1212 1208 21308 {rgb=(.5 .4 .2)} Face 42297 1177 1424 21309 {rgb=(.5 .4 .2)} Face 42298 1424 1428 21309 {rgb=(.5 .4 .2)} Face 42299 1428 1179 21309 {rgb=(.5 .4 .2)} Face 42300 1179 1177 21309 {rgb=(.5 .4 .2)} Face 42301 1424 1678 21310 {rgb=(.5 .4 .2)} Face 42302 1678 1674 21310 {rgb=(.5 .4 .2)} Face 42303 1674 1428 21310 {rgb=(.5 .4 .2)} Face 42304 1428 1424 21310 {rgb=(.5 .4 .2)} Face 42305 1678 3182 21311 {rgb=(.5 .4 .2)} Face 42306 3182 3150 21311 {rgb=(.5 .4 .2)} Face 42307 3150 1674 21311 {rgb=(.5 .4 .2)} Face 42308 1674 1678 21311 {rgb=(.5 .4 .2)} Face 42309 3182 3575 21312 {rgb=(.5 .4 .2)} Face 42310 3575 3559 21312 {rgb=(.5 .4 .2)} Face 42311 3559 3150 21312 {rgb=(.5 .4 .2)} Face 42312 3150 3182 21312 {rgb=(.5 .4 .2)} Face 42313 3575 3107 21313 {rgb=(.5 .4 .2)} Face 42314 3107 3118 21313 {rgb=(.5 .4 .2)} Face 42315 3118 3559 21313 {rgb=(.5 .4 .2)} Face 42316 3559 3575 21313 {rgb=(.5 .4 .2)} Face 42317 3107 1684 21314 {rgb=(.5 .4 .2)} Face 42318 1684 1687 21314 {rgb=(.5 .4 .2)} Face 42319 1687 3118 21314 {rgb=(.5 .4 .2)} Face 42320 3118 3107 21314 {rgb=(.5 .4 .2)} Face 42321 1684 1403 21315 {rgb=(.5 .4 .2)} Face 42322 1403 1408 21315 {rgb=(.5 .4 .2)} Face 42323 1408 1687 21315 {rgb=(.5 .4 .2)} Face 42324 1687 1684 21315 {rgb=(.5 .4 .2)} Face 42325 1403 1126 21316 {rgb=(.5 .4 .2)} Face 42326 1126 1134 21316 {rgb=(.5 .4 .2)} Face 42327 1134 1408 21316 {rgb=(.5 .4 .2)} Face 42328 1408 1403 21316 {rgb=(.5 .4 .2)} Face 42329 1126 984 21317 {rgb=(.5 .4 .2)} Face 42330 984 991 21317 {rgb=(.5 .4 .2)} Face 42331 991 1134 21317 {rgb=(.5 .4 .2)} Face 42332 1134 1126 21317 {rgb=(.5 .4 .2)} Face 42333 984 1064 21318 {rgb=(.5 .4 .2)} Face 42334 1064 1068 21318 {rgb=(.5 .4 .2)} Face 42335 1068 991 21318 {rgb=(.5 .4 .2)} Face 42336 991 984 21318 {rgb=(.5 .4 .2)} Face 42337 1064 1177 21319 {rgb=(.5 .4 .2)} Face 42338 1177 1179 21319 {rgb=(.5 .4 .2)} Face 42339 1179 1068 21319 {rgb=(.5 .4 .2)} Face 42340 1068 1064 21319 {rgb=(.5 .4 .2)} Face 42341 1658 2879 21320 {rgb=(.5 .4 .2)} Face 42342 2879 3146 21320 {rgb=(.5 .4 .2)} Face 42343 3146 1661 21320 {rgb=(.5 .4 .2)} Face 42344 1661 1658 21320 {rgb=(.5 .4 .2)} Face 42345 1452 1658 21321 {rgb=(.5 .4 .2)} Face 42346 1658 1661 21321 {rgb=(.5 .4 .2)} Face 42347 1661 1464 21321 {rgb=(.5 .4 .2)} Face 42348 1464 1452 21321 {rgb=(.5 .4 .2)} Face 42349 1212 1452 21322 {rgb=(.5 .4 .2)} Face 42350 1452 1464 21322 {rgb=(.5 .4 .2)} Face 42351 1464 1187 21322 {rgb=(.5 .4 .2)} Face 42352 1187 1212 21322 {rgb=(.5 .4 .2)} Face 42353 1099 1212 21323 {rgb=(.5 .4 .2)} Face 42354 1212 1187 21323 {rgb=(.5 .4 .2)} Face 42355 1187 1076 21323 {rgb=(.5 .4 .2)} Face 42356 1076 1099 21323 {rgb=(.5 .4 .2)} Face 42357 1045 1099 21324 {rgb=(.5 .4 .2)} Face 42358 1099 1076 21324 {rgb=(.5 .4 .2)} Face 42359 1076 1011 21324 {rgb=(.5 .4 .2)} Face 42360 1011 1045 21324 {rgb=(.5 .4 .2)} Face 42361 1171 1045 21325 {rgb=(.5 .4 .2)} Face 42362 1045 1011 21325 {rgb=(.5 .4 .2)} Face 42363 1011 1146 21325 {rgb=(.5 .4 .2)} Face 42364 1146 1171 21325 {rgb=(.5 .4 .2)} Face 42365 1435 1171 21326 {rgb=(.5 .4 .2)} Face 42366 1171 1146 21326 {rgb=(.5 .4 .2)} Face 42367 1146 1429 21326 {rgb=(.5 .4 .2)} Face 42368 1429 1435 21326 {rgb=(.5 .4 .2)} Face 42369 1695 1435 21327 {rgb=(.5 .4 .2)} Face 42370 1435 1429 21327 {rgb=(.5 .4 .2)} Face 42371 1429 1718 21327 {rgb=(.5 .4 .2)} Face 42372 1718 1695 21327 {rgb=(.5 .4 .2)} Face 42373 3159 1695 21328 {rgb=(.5 .4 .2)} Face 42374 1695 1718 21328 {rgb=(.5 .4 .2)} Face 42375 1718 3399 21328 {rgb=(.5 .4 .2)} Face 42376 3399 3159 21328 {rgb=(.5 .4 .2)} Face 42377 3459 3159 21329 {rgb=(.5 .4 .2)} Face 42378 3159 3399 21329 {rgb=(.5 .4 .2)} Face 42379 3399 3678 21329 {rgb=(.5 .4 .2)} Face 42380 3678 3459 21329 {rgb=(.5 .4 .2)} Face 42381 2879 3459 21330 {rgb=(.5 .4 .2)} Face 42382 3459 3678 21330 {rgb=(.5 .4 .2)} Face 42383 3678 3146 21330 {rgb=(.5 .4 .2)} Face 42384 3146 2879 21330 {rgb=(.5 .4 .2)} Face 42385 3195 3364 21331 {rgb=(.5 .4 .2)} Face 42386 3364 3587 21331 {rgb=(.5 .4 .2)} Face 42387 3587 3422 21331 {rgb=(.5 .4 .2)} Face 42388 3422 3195 21331 {rgb=(.5 .4 .2)} Face 42389 1710 3195 21332 {rgb=(.5 .4 .2)} Face 42390 3195 3422 21332 {rgb=(.5 .4 .2)} Face 42391 3422 1749 21332 {rgb=(.5 .4 .2)} Face 42392 1749 1710 21332 {rgb=(.5 .4 .2)} Face 42393 1473 1710 21333 {rgb=(.5 .4 .2)} Face 42394 1710 1749 21333 {rgb=(.5 .4 .2)} Face 42395 1749 1463 21333 {rgb=(.5 .4 .2)} Face 42396 1463 1473 21333 {rgb=(.5 .4 .2)} Face 42397 1203 1473 21334 {rgb=(.5 .4 .2)} Face 42398 1473 1463 21334 {rgb=(.5 .4 .2)} Face 42399 1463 1180 21334 {rgb=(.5 .4 .2)} Face 42400 1180 1203 21334 {rgb=(.5 .4 .2)} Face 42401 1084 1203 21335 {rgb=(.5 .4 .2)} Face 42402 1203 1180 21335 {rgb=(.5 .4 .2)} Face 42403 1180 1054 21335 {rgb=(.5 .4 .2)} Face 42404 1054 1084 21335 {rgb=(.5 .4 .2)} Face 42405 1132 1084 21336 {rgb=(.5 .4 .2)} Face 42406 1084 1054 21336 {rgb=(.5 .4 .2)} Face 42407 1054 1103 21336 {rgb=(.5 .4 .2)} Face 42408 1103 1132 21336 {rgb=(.5 .4 .2)} Face 42409 1247 1132 21337 {rgb=(.5 .4 .2)} Face 42410 1132 1103 21337 {rgb=(.5 .4 .2)} Face 42411 1103 1217 21337 {rgb=(.5 .4 .2)} Face 42412 1217 1247 21337 {rgb=(.5 .4 .2)} Face 42413 1472 1247 21338 {rgb=(.5 .4 .2)} Face 42414 1247 1217 21338 {rgb=(.5 .4 .2)} Face 42415 1217 1479 21338 {rgb=(.5 .4 .2)} Face 42416 1479 1472 21338 {rgb=(.5 .4 .2)} Face 42417 1651 1472 21339 {rgb=(.5 .4 .2)} Face 42418 1472 1479 21339 {rgb=(.5 .4 .2)} Face 42419 1479 1652 21339 {rgb=(.5 .4 .2)} Face 42420 1652 1651 21339 {rgb=(.5 .4 .2)} Face 42421 2701 1651 21340 {rgb=(.5 .4 .2)} Face 42422 1651 1652 21340 {rgb=(.5 .4 .2)} Face 42423 1652 2905 21340 {rgb=(.5 .4 .2)} Face 42424 2905 2701 21340 {rgb=(.5 .4 .2)} Face 42425 3364 2701 21341 {rgb=(.5 .4 .2)} Face 42426 2701 2905 21341 {rgb=(.5 .4 .2)} Face 42427 2905 3587 21341 {rgb=(.5 .4 .2)} Face 42428 3587 3364 21341 {rgb=(.5 .4 .2)} Face 42429 3482 2916 21342 {rgb=(.5 .4 .2)} Face 42430 2916 3179 21342 {rgb=(.5 .4 .2)} Face 42431 3179 3707 21342 {rgb=(.5 .4 .2)} Face 42432 3707 3482 21342 {rgb=(.5 .4 .2)} Face 42433 3152 3482 21343 {rgb=(.5 .4 .2)} Face 42434 3482 3707 21343 {rgb=(.5 .4 .2)} Face 42435 3707 3317 21343 {rgb=(.5 .4 .2)} Face 42436 3317 3152 21343 {rgb=(.5 .4 .2)} Face 42437 1694 3152 21344 {rgb=(.5 .4 .2)} Face 42438 3152 3317 21344 {rgb=(.5 .4 .2)} Face 42439 3317 1736 21344 {rgb=(.5 .4 .2)} Face 42440 1736 1694 21344 {rgb=(.5 .4 .2)} Face 42441 1427 1694 21345 {rgb=(.5 .4 .2)} Face 42442 1694 1736 21345 {rgb=(.5 .4 .2)} Face 42443 1736 1422 21345 {rgb=(.5 .4 .2)} Face 42444 1422 1427 21345 {rgb=(.5 .4 .2)} Face 42445 1167 1427 21346 {rgb=(.5 .4 .2)} Face 42446 1427 1422 21346 {rgb=(.5 .4 .2)} Face 42447 1422 1139 21346 {rgb=(.5 .4 .2)} Face 42448 1139 1167 21346 {rgb=(.5 .4 .2)} Face 42449 1038 1167 21347 {rgb=(.5 .4 .2)} Face 42450 1167 1139 21347 {rgb=(.5 .4 .2)} Face 42451 1139 998 21347 {rgb=(.5 .4 .2)} Face 42452 998 1038 21347 {rgb=(.5 .4 .2)} Face 42453 1095 1038 21348 {rgb=(.5 .4 .2)} Face 42454 1038 998 21348 {rgb=(.5 .4 .2)} Face 42455 998 1066 21348 {rgb=(.5 .4 .2)} Face 42456 1066 1095 21348 {rgb=(.5 .4 .2)} Face 42457 1208 1095 21349 {rgb=(.5 .4 .2)} Face 42458 1095 1066 21349 {rgb=(.5 .4 .2)} Face 42459 1066 1185 21349 {rgb=(.5 .4 .2)} Face 42460 1185 1208 21349 {rgb=(.5 .4 .2)} Face 42461 1444 1208 21350 {rgb=(.5 .4 .2)} Face 42462 1208 1185 21350 {rgb=(.5 .4 .2)} Face 42463 1185 1460 21350 {rgb=(.5 .4 .2)} Face 42464 1460 1444 21350 {rgb=(.5 .4 .2)} Face 42465 1659 1444 21351 {rgb=(.5 .4 .2)} Face 42466 1444 1460 21351 {rgb=(.5 .4 .2)} Face 42467 1460 1664 21351 {rgb=(.5 .4 .2)} Face 42468 1664 1659 21351 {rgb=(.5 .4 .2)} Face 42469 2916 1659 21352 {rgb=(.5 .4 .2)} Face 42470 1659 1664 21352 {rgb=(.5 .4 .2)} Face 42471 1664 3179 21352 {rgb=(.5 .4 .2)} Face 42472 3179 2916 21352 {rgb=(.5 .4 .2)} Face 42473 1428 1674 21353 {rgb=(.5 .4 .2)} Face 42474 1674 1680 21353 {rgb=(.5 .4 .2)} Face 42475 1680 1441 21353 {rgb=(.5 .4 .2)} Face 42476 1441 1428 21353 {rgb=(.5 .4 .2)} Face 42477 1179 1428 21354 {rgb=(.5 .4 .2)} Face 42478 1428 1441 21354 {rgb=(.5 .4 .2)} Face 42479 1441 1165 21354 {rgb=(.5 .4 .2)} Face 42480 1165 1179 21354 {rgb=(.5 .4 .2)} Face 42481 1068 1179 21355 {rgb=(.5 .4 .2)} Face 42482 1179 1165 21355 {rgb=(.5 .4 .2)} Face 42483 1165 1033 21355 {rgb=(.5 .4 .2)} Face 42484 1033 1068 21355 {rgb=(.5 .4 .2)} Face 42485 991 1068 21356 {rgb=(.5 .4 .2)} Face 42486 1068 1033 21356 {rgb=(.5 .4 .2)} Face 42487 1033 956 21356 {rgb=(.5 .4 .2)} Face 42488 956 991 21356 {rgb=(.5 .4 .2)} Face 42489 1134 991 21357 {rgb=(.5 .4 .2)} Face 42490 991 956 21357 {rgb=(.5 .4 .2)} Face 42491 956 1116 21357 {rgb=(.5 .4 .2)} Face 42492 1116 1134 21357 {rgb=(.5 .4 .2)} Face 42493 1408 1134 21358 {rgb=(.5 .4 .2)} Face 42494 1134 1116 21358 {rgb=(.5 .4 .2)} Face 42495 1116 1404 21358 {rgb=(.5 .4 .2)} Face 42496 1404 1408 21358 {rgb=(.5 .4 .2)} Face 42497 1687 1408 21359 {rgb=(.5 .4 .2)} Face 42498 1408 1404 21359 {rgb=(.5 .4 .2)} Face 42499 1404 1711 21359 {rgb=(.5 .4 .2)} Face 42500 1711 1687 21359 {rgb=(.5 .4 .2)} Face 42501 3118 1687 21360 {rgb=(.5 .4 .2)} Face 42502 1687 1711 21360 {rgb=(.5 .4 .2)} Face 42503 1711 3288 21360 {rgb=(.5 .4 .2)} Face 42504 3288 3118 21360 {rgb=(.5 .4 .2)} Face 42505 3559 3118 21361 {rgb=(.5 .4 .2)} Face 42506 3118 3288 21361 {rgb=(.5 .4 .2)} Face 42507 3288 3777 21361 {rgb=(.5 .4 .2)} Face 42508 3777 3559 21361 {rgb=(.5 .4 .2)} Face 42509 3150 3559 21362 {rgb=(.5 .4 .2)} Face 42510 3559 3777 21362 {rgb=(.5 .4 .2)} Face 42511 3777 3341 21362 {rgb=(.5 .4 .2)} Face 42512 3341 3150 21362 {rgb=(.5 .4 .2)} Face 42513 1674 3150 21363 {rgb=(.5 .4 .2)} Face 42514 3150 3341 21363 {rgb=(.5 .4 .2)} Face 42515 3341 1680 21363 {rgb=(.5 .4 .2)} Face 42516 1680 1674 21363 {rgb=(.5 .4 .2)} Face 42517 3107 3575 21364 {rgb=(.5 .4 .2)} Face 42518 3575 3829 21364 {rgb=(.5 .4 .2)} Face 42519 3829 3334 21364 {rgb=(.5 .4 .2)} Face 42520 3334 3107 21364 {rgb=(.5 .4 .2)} Face 42521 1684 3107 21365 {rgb=(.5 .4 .2)} Face 42522 3107 3334 21365 {rgb=(.5 .4 .2)} Face 42523 3334 1701 21365 {rgb=(.5 .4 .2)} Face 42524 1701 1684 21365 {rgb=(.5 .4 .2)} Face 42525 1403 1684 21366 {rgb=(.5 .4 .2)} Face 42526 1684 1701 21366 {rgb=(.5 .4 .2)} Face 42527 1701 1401 21366 {rgb=(.5 .4 .2)} Face 42528 1401 1403 21366 {rgb=(.5 .4 .2)} Face 42529 1126 1403 21367 {rgb=(.5 .4 .2)} Face 42530 1403 1401 21367 {rgb=(.5 .4 .2)} Face 42531 1401 1109 21367 {rgb=(.5 .4 .2)} Face 42532 1109 1126 21367 {rgb=(.5 .4 .2)} Face 42533 984 1126 21368 {rgb=(.5 .4 .2)} Face 42534 1126 1109 21368 {rgb=(.5 .4 .2)} Face 42535 1109 947 21368 {rgb=(.5 .4 .2)} Face 42536 947 984 21368 {rgb=(.5 .4 .2)} Face 42537 1064 984 21369 {rgb=(.5 .4 .2)} Face 42538 984 947 21369 {rgb=(.5 .4 .2)} Face 42539 947 1032 21369 {rgb=(.5 .4 .2)} Face 42540 1032 1064 21369 {rgb=(.5 .4 .2)} Face 42541 1177 1064 21370 {rgb=(.5 .4 .2)} Face 42542 1064 1032 21370 {rgb=(.5 .4 .2)} Face 42543 1032 1151 21370 {rgb=(.5 .4 .2)} Face 42544 1151 1177 21370 {rgb=(.5 .4 .2)} Face 42545 1424 1177 21371 {rgb=(.5 .4 .2)} Face 42546 1177 1151 21371 {rgb=(.5 .4 .2)} Face 42547 1151 1437 21371 {rgb=(.5 .4 .2)} Face 42548 1437 1424 21371 {rgb=(.5 .4 .2)} Face 42549 1678 1424 21372 {rgb=(.5 .4 .2)} Face 42550 1424 1437 21372 {rgb=(.5 .4 .2)} Face 42551 1437 1683 21372 {rgb=(.5 .4 .2)} Face 42552 1683 1678 21372 {rgb=(.5 .4 .2)} Face 42553 3182 1678 21373 {rgb=(.5 .4 .2)} Face 42554 1678 1683 21373 {rgb=(.5 .4 .2)} Face 42555 1683 3420 21373 {rgb=(.5 .4 .2)} Face 42556 3420 3182 21373 {rgb=(.5 .4 .2)} Face 42557 3575 3182 21374 {rgb=(.5 .4 .2)} Face 42558 3182 3420 21374 {rgb=(.5 .4 .2)} Face 42559 3420 3829 21374 {rgb=(.5 .4 .2)} Face 42560 3829 3575 21374 {rgb=(.5 .4 .2)} Face 42561 1691 3381 21375 {rgb=(.5 .4 .2)} Face 42562 3381 3585 21375 {rgb=(.5 .4 .2)} Face 42563 3585 1696 21375 {rgb=(.5 .4 .2)} Face 42564 1696 1691 21375 {rgb=(.5 .4 .2)} Face 42565 1418 1691 21376 {rgb=(.5 .4 .2)} Face 42566 1691 1696 21376 {rgb=(.5 .4 .2)} Face 42567 1696 1432 21376 {rgb=(.5 .4 .2)} Face 42568 1432 1418 21376 {rgb=(.5 .4 .2)} Face 42569 1153 1418 21377 {rgb=(.5 .4 .2)} Face 42570 1418 1432 21377 {rgb=(.5 .4 .2)} Face 42571 1432 1129 21377 {rgb=(.5 .4 .2)} Face 42572 1129 1153 21377 {rgb=(.5 .4 .2)} Face 42573 1101 939 21378 {rgb=(.5 .4 .2)} Face 42574 939 906 21378 {rgb=(.5 .4 .2)} Face 42575 906 1086 21378 {rgb=(.5 .4 .2)} Face 42576 1086 1101 21378 {rgb=(.5 .4 .2)} Face 42577 3381 3659 21379 {rgb=(.5 .4 .2)} Face 42578 3659 3911 21379 {rgb=(.5 .4 .2)} Face 42579 3911 3585 21379 {rgb=(.5 .4 .2)} Face 42580 3585 3381 21379 {rgb=(.5 .4 .2)} Face 42581 1187 1464 21380 {rgb=(.5 .4 .2)} Face 42582 1464 1479 21380 {rgb=(.5 .4 .2)} Face 42583 1479 1217 21380 {rgb=(.5 .4 .2)} Face 42584 1217 1187 21380 {rgb=(.5 .4 .2)} Face 42585 1165 1441 21381 {rgb=(.5 .4 .2)} Face 42586 1441 1460 21381 {rgb=(.5 .4 .2)} Face 42587 1460 1185 21381 {rgb=(.5 .4 .2)} Face 42588 1185 1165 21381 {rgb=(.5 .4 .2)} Face 42589 1404 1116 21382 {rgb=(.5 .4 .2)} Face 42590 1116 1139 21382 {rgb=(.5 .4 .2)} Face 42591 1139 1422 21382 {rgb=(.5 .4 .2)} Face 42592 1422 1404 21382 {rgb=(.5 .4 .2)} Face 42593 1116 956 21383 {rgb=(.5 .4 .2)} Face 42594 956 998 21383 {rgb=(.5 .4 .2)} Face 42595 998 1139 21383 {rgb=(.5 .4 .2)} Face 42596 1139 1116 21383 {rgb=(.5 .4 .2)} Face 42597 956 1033 21384 {rgb=(.5 .4 .2)} Face 42598 1033 1066 21384 {rgb=(.5 .4 .2)} Face 42599 1066 998 21384 {rgb=(.5 .4 .2)} Face 42600 998 956 21384 {rgb=(.5 .4 .2)} Face 42601 1033 1165 21385 {rgb=(.5 .4 .2)} Face 42602 1165 1185 21385 {rgb=(.5 .4 .2)} Face 42603 1185 1066 21385 {rgb=(.5 .4 .2)} Face 42604 1066 1033 21385 {rgb=(.5 .4 .2)} Face 42605 1151 1032 21386 {rgb=(.5 .4 .2)} Face 42606 1032 994 21386 {rgb=(.5 .4 .2)} Face 42607 994 1129 21386 {rgb=(.5 .4 .2)} Face 42608 1129 1151 21386 {rgb=(.5 .4 .2)} Face 42609 1032 947 21387 {rgb=(.5 .4 .2)} Face 42610 947 906 21387 {rgb=(.5 .4 .2)} Face 42611 906 994 21387 {rgb=(.5 .4 .2)} Face 42612 994 1032 21387 {rgb=(.5 .4 .2)} Face 42613 947 1109 21388 {rgb=(.5 .4 .2)} Face 42614 1109 1086 21388 {rgb=(.5 .4 .2)} Face 42615 1086 906 21388 {rgb=(.5 .4 .2)} Face 42616 906 947 21388 {rgb=(.5 .4 .2)} Face 42617 1109 1401 21389 {rgb=(.5 .4 .2)} Face 42618 1401 1382 21389 {rgb=(.5 .4 .2)} Face 42619 1382 1086 21389 {rgb=(.5 .4 .2)} Face 42620 1086 1109 21389 {rgb=(.5 .4 .2)} Face 42621 1422 1736 21390 {rgb=(.5 .4 .2)} Face 42622 1736 1711 21390 {rgb=(.5 .4 .2)} Face 42623 1711 1404 21390 {rgb=(.5 .4 .2)} Face 42624 1404 1422 21390 {rgb=(.5 .4 .2)} Face 42625 1736 3317 21391 {rgb=(.5 .4 .2)} Face 42626 3317 3288 21391 {rgb=(.5 .4 .2)} Face 42627 3288 1711 21391 {rgb=(.5 .4 .2)} Face 42628 1711 1736 21391 {rgb=(.5 .4 .2)} Face 42629 3317 3707 21392 {rgb=(.5 .4 .2)} Face 42630 3707 3777 21392 {rgb=(.5 .4 .2)} Face 42631 3777 3288 21392 {rgb=(.5 .4 .2)} Face 42632 3288 3317 21392 {rgb=(.5 .4 .2)} Face 42633 3707 3179 21393 {rgb=(.5 .4 .2)} Face 42634 3179 3341 21393 {rgb=(.5 .4 .2)} Face 42635 3341 3777 21393 {rgb=(.5 .4 .2)} Face 42636 3777 3707 21393 {rgb=(.5 .4 .2)} Face 42637 3179 1664 21394 {rgb=(.5 .4 .2)} Face 42638 1664 1680 21394 {rgb=(.5 .4 .2)} Face 42639 1680 3341 21394 {rgb=(.5 .4 .2)} Face 42640 3341 3179 21394 {rgb=(.5 .4 .2)} Face 42641 1664 1460 21395 {rgb=(.5 .4 .2)} Face 42642 1460 1441 21395 {rgb=(.5 .4 .2)} Face 42643 1441 1680 21395 {rgb=(.5 .4 .2)} Face 42644 1680 1664 21395 {rgb=(.5 .4 .2)} Face 42645 1464 1661 21396 {rgb=(.5 .4 .2)} Face 42646 1661 1652 21396 {rgb=(.5 .4 .2)} Face 42647 1652 1479 21396 {rgb=(.5 .4 .2)} Face 42648 1479 1464 21396 {rgb=(.5 .4 .2)} Face 42649 1661 3146 21397 {rgb=(.5 .4 .2)} Face 42650 3146 2905 21397 {rgb=(.5 .4 .2)} Face 42651 2905 1652 21397 {rgb=(.5 .4 .2)} Face 42652 1652 1661 21397 {rgb=(.5 .4 .2)} Face 42653 3146 3678 21398 {rgb=(.5 .4 .2)} Face 42654 3678 3587 21398 {rgb=(.5 .4 .2)} Face 42655 3587 2905 21398 {rgb=(.5 .4 .2)} Face 42656 2905 3146 21398 {rgb=(.5 .4 .2)} Face 42657 3678 3399 21399 {rgb=(.5 .4 .2)} Face 42658 3399 3422 21399 {rgb=(.5 .4 .2)} Face 42659 3422 3587 21399 {rgb=(.5 .4 .2)} Face 42660 3587 3678 21399 {rgb=(.5 .4 .2)} Face 42661 3399 1718 21400 {rgb=(.5 .4 .2)} Face 42662 1718 1749 21400 {rgb=(.5 .4 .2)} Face 42663 1749 3422 21400 {rgb=(.5 .4 .2)} Face 42664 3422 3399 21400 {rgb=(.5 .4 .2)} Face 42665 1718 1429 21401 {rgb=(.5 .4 .2)} Face 42666 1429 1463 21401 {rgb=(.5 .4 .2)} Face 42667 1463 1749 21401 {rgb=(.5 .4 .2)} Face 42668 1749 1718 21401 {rgb=(.5 .4 .2)} Face 42669 1683 1437 21402 {rgb=(.5 .4 .2)} Face 42670 1437 1432 21402 {rgb=(.5 .4 .2)} Face 42671 1432 1696 21402 {rgb=(.5 .4 .2)} Face 42672 1696 1683 21402 {rgb=(.5 .4 .2)} Face 42673 1437 1151 21403 {rgb=(.5 .4 .2)} Face 42674 1151 1129 21403 {rgb=(.5 .4 .2)} Face 42675 1129 1432 21403 {rgb=(.5 .4 .2)} Face 42676 1432 1437 21403 {rgb=(.5 .4 .2)} Face 42677 1217 1103 21404 {rgb=(.5 .4 .2)} Face 42678 1103 1076 21404 {rgb=(.5 .4 .2)} Face 42679 1076 1187 21404 {rgb=(.5 .4 .2)} Face 42680 1187 1217 21404 {rgb=(.5 .4 .2)} Face 42681 1103 1054 21405 {rgb=(.5 .4 .2)} Face 42682 1054 1011 21405 {rgb=(.5 .4 .2)} Face 42683 1011 1076 21405 {rgb=(.5 .4 .2)} Face 42684 1076 1103 21405 {rgb=(.5 .4 .2)} Face 42685 1054 1180 21406 {rgb=(.5 .4 .2)} Face 42686 1180 1146 21406 {rgb=(.5 .4 .2)} Face 42687 1146 1011 21406 {rgb=(.5 .4 .2)} Face 42688 1011 1054 21406 {rgb=(.5 .4 .2)} Face 42689 1180 1463 21407 {rgb=(.5 .4 .2)} Face 42690 1463 1429 21407 {rgb=(.5 .4 .2)} Face 42691 1429 1146 21407 {rgb=(.5 .4 .2)} Face 42692 1146 1180 21407 {rgb=(.5 .4 .2)} Face 42693 1401 1701 21408 {rgb=(.5 .4 .2)} Face 42694 1701 1690 21408 {rgb=(.5 .4 .2)} Face 42695 1690 1382 21408 {rgb=(.5 .4 .2)} Face 42696 1382 1401 21408 {rgb=(.5 .4 .2)} Face 42697 1701 3334 21409 {rgb=(.5 .4 .2)} Face 42698 3334 3304 21409 {rgb=(.5 .4 .2)} Face 42699 3304 1690 21409 {rgb=(.5 .4 .2)} Face 42700 1690 1701 21409 {rgb=(.5 .4 .2)} Face 42701 3334 3829 21410 {rgb=(.5 .4 .2)} Face 42702 3829 3911 21410 {rgb=(.5 .4 .2)} Face 42703 3911 3304 21410 {rgb=(.5 .4 .2)} Face 42704 3304 3334 21410 {rgb=(.5 .4 .2)} Face 42705 3829 3420 21411 {rgb=(.5 .4 .2)} Face 42706 3420 3585 21411 {rgb=(.5 .4 .2)} Face 42707 3585 3911 21411 {rgb=(.5 .4 .2)} Face 42708 3911 3829 21411 {rgb=(.5 .4 .2)} Face 42709 3420 1683 21412 {rgb=(.5 .4 .2)} Face 42710 1683 1696 21412 {rgb=(.5 .4 .2)} Face 42711 1696 3585 21412 {rgb=(.5 .4 .2)} Face 42712 3585 3420 21412 {rgb=(.5 .4 .2)} ================================================ FILE: models/gameguy_noinfo_20k.m ================================================ # Created on 2003/11/20 18:23:23 using: # C:\cygwin\home\Zoe\hh_src\bin\filtermesh.exe gameguy_noinfo_20k.m # -renumber # (Timing on cpu=x86-L6-R0806 host=BUTTERCUP) # (_readmesh: 0.93) # (_renumber: 0.10) # (Filtermesh: 1.03) Vertex 1 -14.2166 -3.8585 -2.81153 Vertex 2 -14.2093 -3.88703 -3.73767 Vertex 3 -13.9084 -3.91663 -4.65365 Vertex 4 -13.8998 -3.85809 -3.18274 Vertex 5 -13.8939 -3.86429 -3.88233 Vertex 6 -13.8829 -3.91081 -1.81014 Vertex 7 -13.778 -3.86076 -2.16002 Vertex 8 -13.574 -3.92145 -4.38341 Vertex 9 -13.5736 -2.10811 -3.96817 Vertex 10 -13.5719 -3.94771 -5.17191 Vertex 11 -13.3528 -11.4309 -2.78944 Vertex 12 -13.3284 -2.1332 -3.24909 Vertex 13 -13.2755 -3.92045 -4.90121 Vertex 14 -13.2647 -2.13805 -2.53271 Vertex 15 -13.2365 -11.1051 -1.65732 Vertex 16 -13.2273 -3.91312 -1.28873 Vertex 17 -13.2132 -3.96835 -1.02144 Vertex 18 -13.1866 -12.2705 -2.19852 Vertex 19 -13.1823 -15.4512 -0.749206 Vertex 20 -13.1636 -14.9335 -0.873964 Vertex 21 -13.1601 -11.3579 -2.28557 Vertex 22 -13.1247 -0.384085 -3.65645 Vertex 23 -13.1091 -14.0454 -1.09586 Vertex 24 -13.0964 -11.6413 -3.40508 Vertex 25 -13.0885 -12.4209 -2.7996 Vertex 26 -13.0882 1.50948 -3.18203 Vertex 27 -13.0808 -2.15287 -5.042 Vertex 28 -13.0708 0.653736 -3.52864 Vertex 29 -13.0692 -12.1111 -1.60546 Vertex 30 -13.0607 -15.4069 -0.42389 Vertex 31 -13.0574 -0.446797 -3.10432 Vertex 32 -13.0529 -11.5229 -2.84846 Vertex 33 -13.0434 2.38388 -3.19151 Vertex 34 -13.0428 -15.5527 -1.06836 Vertex 35 -13.0341 -11.1979 -1.72699 Vertex 36 -13.0305 -14.9534 -0.544583 Vertex 37 -13.0209 -2.1583 -1.83543 Vertex 38 -13.0205 -13.9035 -0.549554 Vertex 39 -13.0201 -2.18379 -4.40473 Vertex 40 -13.0145 -15.0787 -1.15939 Vertex 41 -13.0045 -12.4813 -3.31957 Vertex 42 -12.9762 -15.0122 0.408439 Vertex 43 -12.9736 -15.3536 -0.105384 Vertex 44 -12.9673 0.674524 -3.07725 Vertex 45 -12.9654 -14.464 0.248668 Vertex 46 -12.9612 1.48173 -3.83178 Vertex 47 -12.9552 -14.1652 -1.71735 Vertex 48 -12.9539 -14.8624 -0.299966 Vertex 49 -12.9518 1.49059 -3.34286 Vertex 50 -12.9517 -11.6649 -3.32659 Vertex 51 -12.9428 -15.6583 -2.00614 Vertex 52 -12.9371 -15.0637 -2.12628 Vertex 53 -12.9266 2.4349 -3.41759 Vertex 54 -12.9147 -11.9981 -1.21193 Vertex 55 -12.8946 -14.234 -2.34105 Vertex 56 -12.8794 -11.7767 -3.84397 Vertex 57 -12.8793 0.641095 -3.82312 Vertex 58 -12.8792 -11.0924 -1.35474 Vertex 59 -12.8694 -14.0649 -2.86136 Vertex 60 -12.8619 2.37791 -4.01278 Vertex 61 -12.8502 -14.8982 0.710457 Vertex 62 -12.848 -13.6203 0.034911 Vertex 63 -12.8456 -15.1558 0.143662 Vertex 64 -12.8339 -15.6389 -2.30819 Vertex 65 -12.8322 -10.8359 -0.694152 Vertex 66 -12.8208 -14.6864 0.001691 Vertex 67 -12.8155 -15.1038 -2.37665 Vertex 68 -12.8096 -15.6314 -1.69251 Vertex 69 -12.7903 -15.1108 -1.78169 Vertex 70 -12.7843 -15.6495 -1.3861 Vertex 71 -12.7758 -12.5228 -3.68024 Vertex 72 -12.7722 -15.0902 -1.47382 Vertex 73 -12.7665 1.4201 -2.55286 Vertex 74 -12.7598 -0.360883 -4.5732 Vertex 75 -12.743 3.41511 -2.91249 Vertex 76 -12.7383 3.40037 -3.41662 Vertex 77 -12.7351 -11.7667 -3.66032 Vertex 78 -12.732 -15.2943 -2.73725 Vertex 79 -12.728 -15.8175 -0.648377 Vertex 80 -12.7269 3.4279 -3.60051 Vertex 81 -12.7222 -15.7062 -0.337668 Vertex 82 -12.7204 -14.1419 0.552464 Vertex 83 -12.7175 -3.98985 -5.39489 Vertex 84 -12.7032 -14.0047 -3.47366 Vertex 85 -12.693 -4.02814 -5.90212 Vertex 86 -12.6896 -15.8729 -0.95515 Vertex 87 -12.6833 -0.435565 -4.03055 Vertex 88 -12.6686 3.39306 -4.04017 Vertex 89 -12.6531 0.637841 -2.41103 Vertex 90 -12.6528 -11.8301 -0.768943 Vertex 91 -12.631 0.596058 -4.38827 Vertex 92 -12.6238 -10.9717 -0.925443 Vertex 93 -12.6103 3.35823 -4.47984 Vertex 94 -12.6092 -11.8677 -4.13247 Vertex 95 -12.5946 -14.797 1.02564 Vertex 96 -12.5914 -15.6773 -3.36636 Vertex 97 -12.5877 1.31546 -4.21875 Vertex 98 -12.574 8.30105 -2.36556 Vertex 99 -12.5724 4.9783 -4.37186 Vertex 100 -12.5716 -15.7805 -3.04087 Vertex 101 -12.5491 8.81888 -2.66419 Vertex 102 -12.5459 8.52124 -2.56425 Vertex 103 -12.5336 -15.0717 -3.41853 Vertex 104 -12.5281 -15.2503 0.848337 Vertex 105 -12.5121 -13.8528 -3.65664 Vertex 106 -12.511 8.68854 -1.86261 Vertex 107 -12.5104 -15.2222 -3.06807 Vertex 108 -12.5034 8.27288 -2.05473 Vertex 109 -12.5021 -15.376 0.565035 Vertex 110 -12.4873 -0.552108 -2.16414 Vertex 111 -12.4862 -15.7972 -2.75547 Vertex 112 -12.4817 -10.7163 -0.250181 Vertex 113 -12.4715 9.46644 -2.32582 Vertex 114 -12.4552 1.13583 -2.03142 Vertex 115 -12.4545 -15.9789 -1.82921 Vertex 116 -12.4533 -15.8923 -1.53692 Vertex 117 -12.4457 9.25042 -1.68808 Vertex 118 -12.4446 -12.305 0.017973 Vertex 119 -12.4407 2.34491 -4.33406 Vertex 120 -12.4386 -14.0457 0.833116 Vertex 121 -12.4359 -12.5867 -4.00745 Vertex 122 -12.435 -15.4485 0.270509 Vertex 123 -12.4212 -11.8389 -3.89164 Vertex 124 -12.4111 -16.0125 -2.13623 Vertex 125 -12.4087 9.56463 -2.91148 Vertex 126 -12.3658 2.19166 -2.47457 Vertex 127 -12.356 5.14346 -3.60313 Vertex 128 -12.3508 3.658 -1.41856 Vertex 129 -12.3479 5.15924 -3.41971 Vertex 130 -12.3431 5.24845 -2.7205 Vertex 131 -12.3421 -15.6477 -3.59771 Vertex 132 -12.3411 7.22459 -2.39375 Vertex 133 -12.3389 0.601157 -1.74481 Vertex 134 -12.3385 2.36776 -1.45757 Vertex 135 -12.3344 10.1008 -2.14571 Vertex 136 -12.3315 4.73032 -5.05921 Vertex 137 -12.3267 -15.6914 0.039615 Vertex 138 -12.3198 -15.9654 -1.21536 Vertex 139 -12.3121 10.0612 -2.96147 Vertex 140 -12.3116 3.42665 -2.64554 Vertex 141 -12.3093 -2.22293 -5.61416 Vertex 142 -12.309 -12.9969 0.425631 Vertex 143 -12.2969 9.97666 -1.40516 Vertex 144 -12.2954 7.50564 -2.93177 Vertex 145 -12.2898 -15.0625 -3.6052 Vertex 146 -12.2888 2.29246 -2.27515 Vertex 147 -12.2859 7.15385 -1.93038 Vertex 148 -12.2517 -16.0741 -2.88932 Vertex 149 -12.2341 3.46057 -2.41887 Vertex 150 -12.2239 -13.964 -4.07233 Vertex 151 -12.2233 7.90069 -3.3034 Vertex 152 -12.2232 -15.0992 1.11797 Vertex 153 -12.2169 -11.9245 -4.30735 Vertex 154 -12.2144 -2.23155 -1.06716 Vertex 155 -12.2016 -16.0535 -3.25553 Vertex 156 -12.1824 -13.8478 0.709292 Vertex 157 -12.1767 6.47339 -2.5183 Vertex 158 -12.173 6.75602 -2.46361 Vertex 159 -12.1561 1.04236 -1.77804 Vertex 160 -12.145 -10.7893 -0.283205 Vertex 161 -12.136 -0.406476 -5.22722 Vertex 162 -12.1333 -4.02416 -0.835584 Vertex 163 -12.1252 -11.0006 -0.057117 Vertex 164 -12.109 2.46215 -0.613683 Vertex 165 -12.1068 7.62323 -1.35667 Vertex 166 -12.0986 11.0863 -1.9961 Vertex 167 -12.0792 -10.6409 0.044497 Vertex 168 -12.0786 -16.2229 -0.559301 Vertex 169 -12.0674 8.85264 -3.90827 Vertex 170 -12.0635 -4.06951 -0.517512 Vertex 171 -12.0562 0.430306 -5.04898 Vertex 172 -12.0522 -16.0288 -2.51998 Vertex 173 -12.0449 10.6861 -1.0921 Vertex 174 -12.0439 -16.1654 -0.305275 Vertex 175 -12.0428 5.18181 -2.54117 Vertex 176 -12.0298 6.6407 -1.97261 Vertex 177 -12.0157 -0.540127 -1.58394 Vertex 178 -12.0125 6.05295 -4.52471 Vertex 179 -12.0053 8.53473 -0.901799 Vertex 180 -11.9965 0.971716 -1.33469 Vertex 181 -11.9953 -16.291 -0.805464 Vertex 182 -11.9905 -16.0764 -3.4622 Vertex 183 -11.9769 5.16 -2.30496 Vertex 184 -11.976 5.87936 -5.00302 Vertex 185 -11.9646 3.70072 -0.412197 Vertex 186 -11.9635 -16.2711 -1.70445 Vertex 187 -11.9567 9.13365 -0.662654 Vertex 188 -11.9467 -11.8588 -3.94525 Vertex 189 -11.9451 5.14042 -1.31956 Vertex 190 -11.9415 -12.5996 -4.08569 Vertex 191 -11.9116 -15.7159 0.699502 Vertex 192 -11.9053 -16.2528 -1.44791 Vertex 193 -11.9028 -16.3015 -1.95603 Vertex 194 -11.8969 6.26146 -3.57864 Vertex 195 -11.8919 -11.2679 0.185742 Vertex 196 -11.8909 6.24238 -3.74949 Vertex 197 -11.8894 1.15972 -4.94565 Vertex 198 -11.8848 -15.6597 0.943686 Vertex 199 -11.8829 -15.0816 -3.78264 Vertex 200 -11.8707 -15.562 -3.72178 Vertex 201 -11.8616 6.92034 -3.1044 Vertex 202 -11.8588 11.3491 -2.94042 Vertex 203 -11.8518 7.09864 -1.27433 Vertex 204 -11.8439 -16.3714 -2.67096 Vertex 205 -11.8152 9.97106 -4.12256 Vertex 206 -11.8123 3.39867 -5.12748 Vertex 207 -11.8069 -15.7694 0.450244 Vertex 208 -11.8023 -16.3919 -2.95023 Vertex 209 -11.7965 -15.974 -0.047374 Vertex 210 -11.7839 -14.8969 -1.00311 Vertex 211 -11.7785 4.53781 -5.59161 Vertex 212 -11.7553 -15.335 -0.623129 Vertex 213 -11.751 -4.05887 -5.78443 Vertex 214 -11.7428 1.36648 -0.736056 Vertex 215 -11.7391 2.52511 -4.92307 Vertex 216 -11.7198 -14.2587 -1.35265 Vertex 217 -11.6926 -16.2389 -1.09365 Vertex 218 -11.6845 6.24356 -2.07001 Vertex 219 -11.6766 -16.1171 -2.33609 Vertex 220 -11.6763 9.97247 -0.338218 Vertex 221 -11.6674 -14.9406 -2.24356 Vertex 222 -11.6642 -2.2815 -6.03182 Vertex 223 -11.6509 -11.9104 -4.22488 Vertex 224 -11.6503 -14.7353 -1.54377 Vertex 225 -11.6363 -15.3961 1.10208 Vertex 226 -11.6338 -15.1566 -2.25184 Vertex 227 -11.6231 -14.7672 -2.15108 Vertex 228 -11.6227 -14.9452 -2.38692 Vertex 229 -11.6205 -15.9941 -3.47278 Vertex 230 -11.6146 -16.3906 -3.14493 Vertex 231 -11.6131 -10.6159 0.158918 Vertex 232 -11.6121 -14.1644 0.578828 Vertex 233 -11.6052 6.11762 -1.23264 Vertex 234 -11.6002 -14.8653 -2.2431 Vertex 235 -11.5966 -4.12637 -6.20579 Vertex 236 -11.5957 -14.9972 -2.07351 Vertex 237 -11.594 -14.993 -2.41156 Vertex 238 -11.5932 6.20771 -1.89763 Vertex 239 -11.5855 -15.2001 -2.12791 Vertex 240 -11.5819 -15.4065 -0.351269 Vertex 241 -11.5799 -15.1968 -2.37561 Vertex 242 -11.5795 -16.0353 -1.18026 Vertex 243 -11.5792 -16.1325 -2.24427 Vertex 244 -11.5678 0.328381 -5.44424 Vertex 245 -11.5675 4.97147 -0.359619 Vertex 246 -11.5491 -13.7826 -1.61184 Vertex 247 -11.5463 -13.6625 0.543902 Vertex 248 -11.5453 -15.5176 -1.37737 Vertex 249 -11.5452 -14.2384 -1.86785 Vertex 250 -11.5379 -14.7618 0.85201 Vertex 251 -11.5342 -14.9009 -2.42464 Vertex 252 -11.5337 -14.9112 -2.05298 Vertex 253 -11.5315 -14.7997 -2.24012 Vertex 254 -11.5178 -14.8373 -2.0536 Vertex 255 -11.5171 6.43823 -4.8814 Vertex 256 -11.5138 -14.829 -2.42467 Vertex 257 -11.5095 -15.2379 -2.06001 Vertex 258 -11.5092 -15.5923 -1.95637 Vertex 259 -11.5063 -15.2357 -2.4386 Vertex 260 -11.5005 -14.1902 -2.49444 Vertex 261 -11.4971 5.6358 -5.49496 Vertex 262 -11.497 -15.0316 -2.51499 Vertex 263 -11.4969 -15.0457 -1.97368 Vertex 264 -11.4853 1.17198 -5.19011 Vertex 265 -11.4794 7.85952 -0.759694 Vertex 266 -11.4649 6.71814 -1.14636 Vertex 267 -11.4642 7.32507 -3.69177 Vertex 268 -11.4556 -14.2987 -0.62301 Vertex 269 -11.44 6.54124 -1.12531 Vertex 270 -11.4339 7.00977 -3.97974 Vertex 271 -11.429 7.14219 -3.84169 Vertex 272 -11.4286 -14.5305 -0.43956 Vertex 273 -11.4259 -12.8786 0.852354 Vertex 274 -11.4175 -15.6445 -2.21244 Vertex 275 -11.4129 0.104779 -1.15676 Vertex 276 -11.3967 -15.6828 0.069326 Vertex 277 -11.3953 -15.0347 -2.9148 Vertex 278 -11.3899 -15.6268 -1.23258 Vertex 279 -11.3874 -15.6146 -1.94062 Vertex 280 -11.3657 -14.8991 0.445296 Vertex 281 -11.3629 -12.9147 -2.2641 Vertex 282 -11.3623 -14.9145 -2.55677 Vertex 283 -11.3615 -15.413 -2.47544 Vertex 284 -11.3555 0.396001 -5.58136 Vertex 285 -11.3534 -14.8825 -2.50652 Vertex 286 -11.3532 -14.8954 -1.97322 Vertex 287 -11.345 -14.9334 -1.92578 Vertex 288 -11.3441 -14.9346 -3.43658 Vertex 289 -11.3437 -11.8273 -3.81615 Vertex 290 -11.3437 -14.9225 -0.467114 Vertex 291 -11.3385 -14.9955 0.883968 Vertex 292 -11.3345 12.042 -1.93847 Vertex 293 -11.3324 8.64157 -0.444411 Vertex 294 -11.3252 -15.3504 -0.077584 Vertex 295 -11.3244 11.6914 -0.936978 Vertex 296 -11.3231 -15.6883 -2.31779 Vertex 297 -11.3229 -16.1298 -3.25517 Vertex 298 -11.3201 -13.6075 -0.037681 Vertex 299 -11.3195 -14.692 -0.473394 Vertex 300 -11.3165 -14.081 -3.89894 Vertex 301 -11.3132 -15.5891 -0.24729 Vertex 302 -11.3032 -14.9824 -0.336742 Vertex 303 -11.302 -13.7591 0.972896 Vertex 304 -11.3019 -14.99 -0.593574 Vertex 305 -11.2993 -13.1626 1.29423 Vertex 306 -11.294 -11.8727 -4.1656 Vertex 307 -11.2904 -15.1544 -0.173487 Vertex 308 -11.2867 -16.5628 -2.39795 Vertex 309 -11.2828 -15.349 -1.98084 Vertex 310 -11.2824 -15.3415 -2.52305 Vertex 311 -11.2749 -13.9913 0.167229 Vertex 312 -11.2661 -0.564555 -5.63842 Vertex 313 -11.2599 1.18203 -5.31531 Vertex 314 -11.2554 -14.7618 -0.29562 Vertex 315 -11.2536 -14.7722 -0.6464 Vertex 316 -11.2486 -15.03 -0.27166 Vertex 317 -11.2466 -15.0413 -0.655389 Vertex 318 -11.2452 5.79061 -0.426924 Vertex 319 -11.2424 -15.7842 -1.01411 Vertex 320 -11.2348 -15.0822 -2.62578 Vertex 321 -11.2324 -15.1001 -1.87066 Vertex 322 -11.2317 -16.2788 -2.11918 Vertex 323 -11.2264 -14.1507 -3.46387 Vertex 324 -11.2234 -15.3993 -3.30074 Vertex 325 -11.2208 -14.6527 -0.474016 Vertex 326 -11.2192 -14.1644 -2.85257 Vertex 327 -11.2182 -15.6405 -2.71987 Vertex 328 -11.2168 -15.596 -2.78502 Vertex 329 -11.2127 12.1837 -2.51991 Vertex 330 -11.2082 -16.5797 -2.66788 Vertex 331 -11.208 -15.538 -0.652813 Vertex 332 -11.2044 11.4128 -3.86788 Vertex 333 -11.1955 -13.2825 -1.11614 Vertex 334 -11.1942 -14.2264 0.051637 Vertex 335 -11.1854 -14.5798 -0.475874 Vertex 336 -11.1843 -15.7151 -3.18251 Vertex 337 -11.1807 -15.3073 0.866062 Vertex 338 -11.1789 -14.8236 -0.192706 Vertex 339 -11.1761 -14.8398 -0.745 Vertex 340 -11.1748 -15.7971 -2.20037 Vertex 341 -11.17 -14.7094 -0.280875 Vertex 342 -11.168 -14.7207 -0.663212 Vertex 343 -11.1586 -14.6281 -0.279951 Vertex 344 -11.158 -11.73 -3.47793 Vertex 345 -11.1566 -14.6396 -0.668533 Vertex 346 -11.1565 -15.0708 0.460273 Vertex 347 -11.1552 -12.5531 -2.33756 Vertex 348 -11.152 -15.261 -0.456826 Vertex 349 -11.1448 6.62236 -5.13339 Vertex 350 -11.1427 -13.8584 -0.467892 Vertex 351 -11.1306 -15.7872 -2.14632 Vertex 352 -11.1183 -12.5874 -3.86544 Vertex 353 -11.1167 -15.6203 -1.35304 Vertex 354 -11.1132 -15.6962 -2.13671 Vertex 355 -11.107 -15.5363 -2.63813 Vertex 356 -11.0867 -12.6562 0.903111 Vertex 357 -11.0824 -15.1123 -1.33438 Vertex 358 -11.0818 -14.8644 -1.35063 Vertex 359 -11.0813 -0.426052 -5.7302 Vertex 360 -11.0811 -11.8187 -3.95914 Vertex 361 -11.0768 3.52213 -5.5801 Vertex 362 -11.0737 -14.9358 -2.00814 Vertex 363 -11.0701 -14.9261 -2.47691 Vertex 364 -11.0634 -11.6735 -3.27665 Vertex 365 -11.0628 -16.6754 -1.59999 Vertex 366 -11.0626 -14.1711 1.09935 Vertex 367 -11.0584 -12.6486 -1.53876 Vertex 368 -11.057 -16.5528 -2.89091 Vertex 369 -11.0541 2.74427 -5.47023 Vertex 370 -11.054 4.38983 -5.81123 Vertex 371 -11.0536 -15.8961 -2.12827 Vertex 372 -11.0521 -15.1926 -1.46406 Vertex 373 -11.05 -15.2046 -0.17414 Vertex 374 -11.0471 -15.2213 -0.741196 Vertex 375 -11.0463 -15.5077 -1.76154 Vertex 376 -11.0438 2.44672 -0.137604 Vertex 377 -11.0417 -15.6353 -2.57005 Vertex 378 -11.0342 -14.9531 -1.52806 Vertex 379 -11.0333 -15.657 -3.03296 Vertex 380 -11.0285 -16.6503 -1.32995 Vertex 381 -11.0283 7.33807 -4.52109 Vertex 382 -11.0177 10.9967 -0.088386 Vertex 383 -11.0171 -15.17 -1.21031 Vertex 384 -11.0162 -11.3374 0.051851 Vertex 385 -11.015 -16.7028 -1.86513 Vertex 386 -11.0141 -14.8927 -2.24054 Vertex 387 -11.0111 -14.7373 -0.148298 Vertex 388 -11.0099 -15.7912 -2.09578 Vertex 389 -11.0097 8.43216 -4.33767 Vertex 390 -11.0094 -14.72 -0.199952 Vertex 391 -11.0079 -14.7563 -0.79252 Vertex 392 -11.0066 -14.7359 -0.741896 Vertex 393 -11.002 7.49626 -4.43586 Vertex 394 -11.0019 3.62603 0.05797 Vertex 395 -11.0012 -15.2484 -1.53167 Vertex 396 -10.9997 -15.6564 -2.50629 Vertex 397 -10.9983 -13.9289 -0.199665 Vertex 398 -10.9884 -15.7216 -2.52619 Vertex 399 -10.9882 -14.8158 -1.36632 Vertex 400 -10.9869 -15.427 -2.54073 Vertex 401 -10.9865 -14.9222 -1.18149 Vertex 402 -10.983 -15.538 0.097654 Vertex 403 -10.9819 -15.438 -1.96812 Vertex 404 -10.9799 -12.4648 -2.93526 Vertex 405 -10.9758 -11.5893 -2.975 Vertex 406 -10.9737 -14.9251 -2.52603 Vertex 407 -10.9726 -16.5373 0.688335 Vertex 408 -10.9712 -14.946 -1.95459 Vertex 409 -10.9702 -14.0223 0.047072 Vertex 410 -10.9657 -16.3151 -1.9689 Vertex 411 -10.9657 -15.0234 -1.63395 Vertex 412 -10.9613 -16.536 0.95254 Vertex 413 -10.9596 -14.7406 -1.37632 Vertex 414 -10.9573 -14.8917 -1.55793 Vertex 415 -10.9565 -15.6155 -2.37041 Vertex 416 -10.9539 -14.8092 -1.56813 Vertex 417 -10.9492 -15.3097 0.459072 Vertex 418 -10.949 -15.2146 -1.15255 Vertex 419 -10.9349 -15.8461 -0.527289 Vertex 420 -10.9324 -12.4849 -3.50545 Vertex 421 -10.9309 -10.8519 -0.438323 Vertex 422 -10.9303 -15.1218 -2.66084 Vertex 423 -10.9201 -15.1404 -1.84063 Vertex 424 -10.92 -14.9482 -0.066932 Vertex 425 -10.916 -14.9716 -0.861211 Vertex 426 -10.9148 1.60911 -0.336224 Vertex 427 -10.9125 -10.7331 -0.184582 Vertex 428 -10.9075 -15.6035 -2.39309 Vertex 429 -10.9053 -14.858 -1.18018 Vertex 430 -10.9022 -15.0368 0.246844 Vertex 431 -10.9013 -12.47 -3.27844 Vertex 432 -10.901 9.45982 -0.000788 Vertex 433 -10.901 -14.7751 -1.18422 Vertex 434 -10.897 -16.5672 0.427453 Vertex 435 -10.8951 -15.0804 0.388548 Vertex 436 -10.8905 -14.9748 -1.08829 Vertex 437 -10.8878 -15.6608 1.04154 Vertex 438 -10.8832 0.752879 -0.844994 Vertex 439 -10.8809 -15.5007 -2.05257 Vertex 440 -10.8806 -16.3333 1.20423 Vertex 441 -10.8805 -15.6845 -2.41068 Vertex 442 -10.8791 -4.13804 -0.986501 Vertex 443 -10.8728 -14.8769 -2.24192 Vertex 444 -10.8706 -15.7268 -1.67847 Vertex 445 -10.8702 -15.9098 -0.091778 Vertex 446 -10.8681 -15.135 0.138505 Vertex 447 -10.864 -15.1282 0.466755 Vertex 448 -10.8603 -11.0918 -0.213886 Vertex 449 -10.8545 6.71498 -0.409505 Vertex 450 -10.8532 -15.492 -1.34794 Vertex 451 -10.8501 6.5401 -0.418145 Vertex 452 -10.8481 -15.5361 0.615558 Vertex 453 -10.8456 -11.2438 -1.77865 Vertex 454 -10.8426 -16.3463 -1.08643 Vertex 455 -10.8394 -13.6742 1.35711 Vertex 456 -10.8379 -15.6465 -2.03831 Vertex 457 -10.8361 -12.9673 1.26495 Vertex 458 -10.8361 -12.1674 -1.66008 Vertex 459 -10.8357 -16.6305 -2.13986 Vertex 460 -10.8344 -11.4471 -2.47008 Vertex 461 -10.8332 -15.7729 -2.92082 Vertex 462 -10.8327 -15.8253 -1.24594 Vertex 463 -10.8293 -16.7344 -1.57647 Vertex 464 -10.8277 -2.35746 -1.27515 Vertex 465 -10.8236 -15.2098 0.093167 Vertex 466 -10.8187 -15.4068 0.331408 Vertex 467 -10.8179 -4.18087 -0.639688 Vertex 468 -10.817 -15.5095 -0.44835 Vertex 469 -10.8156 -15.6309 -2.37675 Vertex 470 -10.8149 0.381758 -5.94557 Vertex 471 -10.814 -14.1873 0.185369 Vertex 472 -10.8136 -14.9301 -1.70804 Vertex 473 -10.8131 5.51172 -5.70524 Vertex 474 -10.8119 -14.8261 0.212714 Vertex 475 -10.8072 -14.9043 -1.65857 Vertex 476 -10.8029 -16.7017 -1.23085 Vertex 477 -10.7977 -16.273 -3.03447 Vertex 478 -10.7968 -15.4446 -1.64196 Vertex 479 -10.7955 -16.0007 -0.923008 Vertex 480 -10.7955 -15.9079 -2.07957 Vertex 481 -10.7941 -16.451 -2.14016 Vertex 482 -10.7904 -14.8768 0.405624 Vertex 483 -10.7897 -15.3667 -0.157165 Vertex 484 -10.7895 -0.209263 -6.05512 Vertex 485 -10.787 -19.6814 -3.33927 Vertex 486 -10.7868 -15.3841 -0.746702 Vertex 487 -10.7833 -15.7841 0.509618 Vertex 488 -10.7815 -15.5478 -2.02272 Vertex 489 -10.7792 -11.7079 -3.53787 Vertex 490 -10.7772 -15.8206 -0.511851 Vertex 491 -10.7722 -15.7787 -1.66207 Vertex 492 -10.7715 -16.1306 -1.94264 Vertex 493 -10.7666 -16.7698 -1.91735 Vertex 494 -10.7664 -16.7971 -0.414976 Vertex 495 -10.7629 -11.0447 -1.08783 Vertex 496 -10.7599 -15.7087 0.213064 Vertex 497 -10.7535 -14.9514 0.064113 Vertex 498 -10.7525 -16.3803 -1.04931 Vertex 499 -10.7498 -14.4184 0.589041 Vertex 500 -10.7495 -16.7526 -0.146369 Vertex 501 -10.7467 -14.9368 0.52599 Vertex 502 -10.7437 -19.8397 -2.59471 Vertex 503 -10.7429 -15.9078 -1.22531 Vertex 504 -10.7426 -15.6939 -0.506093 Vertex 505 -10.7413 -16.3522 0.15375 Vertex 506 -10.7382 -16.0004 0.970921 Vertex 507 -10.7362 -15.3288 0.615248 Vertex 508 -10.7335 -14.8566 -1.12313 Vertex 509 -10.7327 -15.8539 -2.86529 Vertex 510 -10.7269 -15.9091 -0.072221 Vertex 511 -10.7259 -14.8734 -1.07157 Vertex 512 -10.7249 -16.6535 -2.46258 Vertex 513 -10.7244 -11.7558 -0.984979 Vertex 514 -10.7226 -12.1474 -0.269684 Vertex 515 -10.7196 -15.3947 -1.08171 Vertex 516 -10.7191 -15.7961 0.527957 Vertex 517 -10.7157 -15.7347 -2.83193 Vertex 518 -10.7148 -15.5037 -2.68454 Vertex 519 -10.7127 1.21392 -5.59313 Vertex 520 -10.71 -15.1684 -1.78481 Vertex 521 -10.7098 -14.8587 -0.222102 Vertex 522 -10.7079 -15.6787 -1.64124 Vertex 523 -10.7073 -14.8731 -0.709271 Vertex 524 -10.7066 -14.8155 0.221239 Vertex 525 -10.7014 -16.8112 -0.679954 Vertex 526 -10.699 -12.519 0.999461 Vertex 527 -10.6982 -15.9909 -2.06029 Vertex 528 -10.6956 -14.8473 0.42543 Vertex 529 -10.6939 -16.4894 -2.14899 Vertex 530 -10.6925 7.13321 0.082106 Vertex 531 -10.6886 -15.0544 -0.011704 Vertex 532 -10.6845 -16.3902 0.084887 Vertex 533 -10.6792 -10.8455 -0.544866 Vertex 534 -10.678 -4.1563 -5.78225 Vertex 535 -10.678 7.94452 0.527652 Vertex 536 -10.6765 -15.4494 0.063173 Vertex 537 -10.6651 -12.9828 -0.666245 Vertex 538 -10.6614 -14.7733 0.416879 Vertex 539 -10.6589 4.60609 0.086972 Vertex 540 -10.6554 -14.9287 0.053196 Vertex 541 -10.6516 -14.7563 0.214658 Vertex 542 -10.6505 -15.6214 -2.71031 Vertex 543 -10.6474 -15.8692 0.973914 Vertex 544 -10.6463 9.76304 -4.7473 Vertex 545 -10.6461 -15.5561 -0.464796 Vertex 546 -10.6423 -15.7912 -1.20308 Vertex 547 -10.6405 -19.7502 -2.96992 Vertex 548 -10.6371 -15.0617 -0.026158 Vertex 549 -10.6354 -14.861 -0.169522 Vertex 550 -10.6334 -0.765666 -2.08109 Vertex 551 -10.6328 -15.0873 -0.892955 Vertex 552 -10.6324 -14.8784 -0.760937 Vertex 553 -10.629 -16.4459 1.13878 Vertex 554 -10.6224 -15.5636 -0.447075 Vertex 555 -10.6205 -14.8559 0.038575 Vertex 556 -10.6188 -15.7534 -0.069459 Vertex 557 -10.6134 -14.5472 1.21956 Vertex 558 -10.6133 2.79154 -5.59136 Vertex 559 -10.6122 -16.127 0.148446 Vertex 560 -10.61 -14.8464 -0.465764 Vertex 561 -10.6048 -15.9776 -0.907205 Vertex 562 -10.6019 -15.0985 -1.00007 Vertex 563 -10.6017 -15.5486 -2.6712 Vertex 564 -10.597 6.45553 -5.50768 Vertex 565 -10.5967 -15.7235 -1.4972 Vertex 566 -10.5902 -16.5051 -0.965312 Vertex 567 -10.5853 -16.7737 1.02883 Vertex 568 -10.5767 -16.837 0.685875 Vertex 569 -10.5727 -15.7302 0.422932 Vertex 570 -10.567 -14.892 0.582293 Vertex 571 -10.566 -16.6071 -2.74803 Vertex 572 -10.5619 -15.592 -0.454099 Vertex 573 -10.56 -1.0925 -5.79057 Vertex 574 -10.5577 -15.7618 -1.45611 Vertex 575 -10.5561 1.24434 -0.551981 Vertex 576 -10.5547 -14.8855 0.52964 Vertex 577 -10.554 -16.2804 -2.90411 Vertex 578 -10.5529 -15.8316 -2.03726 Vertex 579 -10.5516 -15.8172 -0.905828 Vertex 580 -10.5501 -15.1011 0.704146 Vertex 581 -10.55 -15.2231 -2.67935 Vertex 582 -10.5492 -13.4731 1.26807 Vertex 583 -10.548 -15.7557 -1.47685 Vertex 584 -10.548 -15.9902 0.146957 Vertex 585 -10.5439 -15.3174 -1.84967 Vertex 586 -10.5411 -16.2934 -2.09395 Vertex 587 -10.54 -15.5169 -0.087701 Vertex 588 -10.5383 -15.452 -0.100028 Vertex 589 -10.5372 -15.5489 0.692284 Vertex 590 -10.5331 -15.6176 -1.86309 Vertex 591 -10.5329 -2.38423 -5.89145 Vertex 592 -10.5312 -11.4201 -2.49583 Vertex 593 -10.5305 -14.6859 0.651277 Vertex 594 -10.5271 -14.8386 -0.465588 Vertex 595 -10.5195 9.12227 0.911131 Vertex 596 -10.5183 3.54133 -5.62425 Vertex 597 -10.5182 -15.6378 -1.68701 Vertex 598 -10.5039 -0.840393 -5.82585 Vertex 599 -10.5037 -15.4386 -1.85885 Vertex 600 -10.5016 -15.4526 -0.783953 Vertex 601 -10.4992 -15.0291 -0.044895 Vertex 602 -10.4976 -15.0008 0.002019 Vertex 603 -10.4946 -15.0218 -1.6631 Vertex 604 -10.4924 -11.0253 -1.15006 Vertex 605 -10.4923 -16.8496 0.389597 Vertex 606 -10.4884 -15.7835 -1.38983 Vertex 607 -10.4859 -16.3042 0.1161 Vertex 608 -10.4807 -15.7519 -1.12062 Vertex 609 -10.4787 -16.2539 -1.08276 Vertex 610 -10.4773 -16.5984 0.148561 Vertex 611 -10.4752 -15.6743 0.118331 Vertex 612 -10.4743 5.49132 0.03785 Vertex 613 -10.4739 12.3414 -3.34505 Vertex 614 -10.4665 -15.2701 -0.069142 Vertex 615 -10.462 12.7106 -2.03032 Vertex 616 -10.46 -15.5197 -0.811788 Vertex 617 -10.4596 -15.5196 -0.094213 Vertex 618 -10.4525 -16.3158 -2.33928 Vertex 619 -10.4419 -15.642 -1.79093 Vertex 620 -10.4405 -16.2802 1.13673 Vertex 621 -10.44 -15.7404 -1.84434 Vertex 622 -10.4379 -15.586 -1.10456 Vertex 623 -10.4378 7.29163 -5.12198 Vertex 624 -10.4344 -0.524662 -6.01673 Vertex 625 -10.4337 -14.2675 1.51813 Vertex 626 -10.4325 -13.6979 -0.190373 Vertex 627 -10.4287 -4.22971 -5.97208 Vertex 628 -10.4283 -14.9789 -1.18179 Vertex 629 -10.4271 -15.0278 -1.72507 Vertex 630 -10.4232 -15.2761 -1.85305 Vertex 631 -10.4228 -17.6652 -1.96881 Vertex 632 -10.4136 -15.7521 -1.11693 Vertex 633 -10.4136 -15.4701 -0.797937 Vertex 634 -10.4134 -15.7945 0.46378 Vertex 635 -10.4119 -15.6659 -1.1103 Vertex 636 -10.4049 -15.7899 0.465994 Vertex 637 -10.4049 -17.4539 -2.61459 Vertex 638 -10.4033 -16.0661 -2.82281 Vertex 639 -10.3985 -15.0905 -2.0049 Vertex 640 -10.3981 -12.782 1.20435 Vertex 641 -10.3977 -15.0368 -2.4732 Vertex 642 -10.396 -16.4804 -1.56853 Vertex 643 -10.3943 -15.7329 -1.81436 Vertex 644 -10.39 7.47559 -5.08956 Vertex 645 -10.3828 -14.2139 0.30043 Vertex 646 -10.3711 -15.0746 -2.24184 Vertex 647 -10.3704 -16.3094 -2.08445 Vertex 648 -10.368 -14.961 -1.43453 Vertex 649 -10.3604 -16.61 -0.056382 Vertex 650 -10.3498 -15.7605 0.838861 Vertex 651 -10.3471 -16.2631 -2.56731 Vertex 652 -10.3466 -14.9758 -1.14076 Vertex 653 -10.3409 -16.3972 -0.983203 Vertex 654 -10.3406 -15.7759 0.466045 Vertex 655 -10.3349 4.23102 -5.82585 Vertex 656 -10.3252 -16.4802 -1.82208 Vertex 657 -10.3211 8.35868 -5.18312 Vertex 658 -10.3195 -16.6556 -0.4016 Vertex 659 -10.3182 -15.2769 0.801145 Vertex 660 -10.3129 -16.5418 -1.29802 Vertex 661 -10.3126 -16.4159 0.14436 Vertex 662 -10.3119 -15.7251 0.800386 Vertex 663 -10.3082 12.4185 -0.866307 Vertex 664 -10.3073 -15.1012 0.570992 Vertex 665 -10.3052 -15.1998 -0.996663 Vertex 666 -10.3017 -16.1019 0.063706 Vertex 667 -10.2971 6.33747 0.050988 Vertex 668 -10.2905 -17.5936 -2.30108 Vertex 669 -10.2866 -14.9481 -1.44648 Vertex 670 -10.2811 -15.5724 -2.70249 Vertex 671 -10.2795 -13.9457 -0.018693 Vertex 672 -10.2792 -15.7233 0.819898 Vertex 673 -10.2772 -15.9533 0.138717 Vertex 674 -10.2733 -0.053182 -1.91368 Vertex 675 -10.2701 -21.311 -3.44826 Vertex 676 -10.2685 6.5225 0.103263 Vertex 677 -10.2676 -15.4349 -2.6733 Vertex 678 -10.2658 -15.611 -1.98963 Vertex 679 -10.2575 -21.32 -2.89933 Vertex 680 -10.256 -15.2048 0.096699 Vertex 681 -10.2557 0.277446 -5.88806 Vertex 682 -10.2511 -16.6647 -0.743094 Vertex 683 -10.2494 -16.6207 0.69106 Vertex 684 -10.2429 -15.1136 0.633678 Vertex 685 -10.2414 -16.5666 0.948636 Vertex 686 -10.2356 -15.1002 0.797242 Vertex 687 -10.232 -15.882 0.137164 Vertex 688 -10.227 -15.4613 -0.042742 Vertex 689 -10.2212 -16.1784 -0.939108 Vertex 690 -10.2185 -15.266 0.014522 Vertex 691 -10.2165 -15.1736 0.533762 Vertex 692 -10.2162 9.76619 -5.44123 Vertex 693 -10.2152 1.33698 -5.60939 Vertex 694 -10.2094 -15.9057 0.14528 Vertex 695 -10.2058 -13.3561 1.23215 Vertex 696 -10.2043 -14.0961 1.46342 Vertex 697 -10.1922 -16.017 -1.01276 Vertex 698 -10.1908 2.33905 -0.264528 Vertex 699 -10.1903 -15.2376 1.29131 Vertex 700 -10.1867 -14.535 0.336458 Vertex 701 -10.1822 -15.161 0.345594 Vertex 702 -10.1807 -15.2394 0.057896 Vertex 703 -10.1782 -15.545 0.046677 Vertex 704 -10.1756 -16.6364 0.438455 Vertex 705 -10.1721 -15.626 -2.22149 Vertex 706 -10.1711 -15.2668 -0.865934 Vertex 707 -10.1489 -0.004846 -2.15999 Vertex 708 -10.146 -21.2852 -3.17337 Vertex 709 -10.1421 -19.9816 -0.674959 Vertex 710 -10.1388 1.32248 -0.667843 Vertex 711 -10.138 -16.0187 -1.93088 Vertex 712 -10.1335 10.3171 0.35981 Vertex 713 -10.132 -15.5939 -2.45618 Vertex 714 -10.1302 -15.4011 0.024308 Vertex 715 -10.1168 -15.4365 0.946823 Vertex 716 -10.1163 -15.3133 0.355448 Vertex 717 -10.1011 -15.1757 0.356879 Vertex 718 -10.0979 2.70569 -5.68303 Vertex 719 -10.0974 -0.474518 -5.85231 Vertex 720 -10.0877 -15.9294 -1.01747 Vertex 721 -10.077 -15.5485 -0.868527 Vertex 722 -10.0713 -15.6141 -1.9045 Vertex 723 -10.0703 -12.9986 0.337294 Vertex 724 -10.0656 -16.3722 -0.406254 Vertex 725 -10.0628 -13.9021 0.410332 Vertex 726 -10.062 -15.034 -0.18731 Vertex 727 -10.0605 -15.9198 -1.90888 Vertex 728 -10.0548 -15.2401 -1.93361 Vertex 729 -10.0542 -15.3998 -0.865201 Vertex 730 -10.0513 -16.3232 -0.148261 Vertex 731 -10.0497 -15.1603 -2.54581 Vertex 732 -10.0377 -14.9516 1.60192 Vertex 733 -10.0372 -15.0344 -0.64981 Vertex 734 -10.036 -15.6257 -1.02428 Vertex 735 -10.0315 -15.0685 -0.417614 Vertex 736 -10.0298 -16.3056 -1.46581 Vertex 737 -10.0297 0.740176 -1.21487 Vertex 738 -10.0284 -0.933655 -2.35618 Vertex 739 -10.026 5.30314 -5.82455 Vertex 740 -10.0195 -15.2187 -2.24603 Vertex 741 -10.0194 -16.2767 -1.22267 Vertex 742 -10.0175 -15.866 0.997665 Vertex 743 -10.015 -15.6201 0.760091 Vertex 744 -10.01 -16.3625 -0.663164 Vertex 745 -10.0076 -13.4063 -0.144325 Vertex 746 -10.0026 11.1862 -4.56491 Vertex 747 -9.99053 -16.2791 -1.70685 Vertex 748 -9.98007 -14.7642 0.578683 Vertex 749 -9.97415 3.50325 -5.6892 Vertex 750 -9.97122 -14.8082 0.37878 Vertex 751 -9.96899 -15.5808 0.90871 Vertex 752 -9.96338 -4.2212 -5.44755 Vertex 753 -9.94118 -0.772566 -5.41739 Vertex 754 -9.93864 -14.0007 1.39393 Vertex 755 -9.92759 -16.1117 0.112918 Vertex 756 -9.91631 -13.2561 0.680038 Vertex 757 -9.89984 -15.7575 0.961197 Vertex 758 -9.89669 3.36702 -0.11203 Vertex 759 -9.88896 -15.5752 0.09549 Vertex 760 -9.88576 -15.6557 -0.141455 Vertex 761 -9.88332 -2.44321 -2.029 Vertex 762 -9.88307 -2.44324 -5.57819 Vertex 763 -9.88043 -14.9543 0.203369 Vertex 764 -9.8715 0.167996 -5.67131 Vertex 765 -9.87019 11.8408 -0.00659 Vertex 766 -9.8662 -15.7829 0.054908 Vertex 767 -9.86292 -15.6942 -0.382872 Vertex 768 -9.85591 -13.5405 -0.037375 Vertex 769 -9.84828 -15.4341 1.23197 Vertex 770 -9.84366 -13.5396 0.834674 Vertex 771 -9.84129 -15.4283 -1.69507 Vertex 772 -9.84089 -4.23232 -1.97828 Vertex 773 -9.83412 -14.6562 1.63673 Vertex 774 -9.83246 -15.6575 -0.623767 Vertex 775 -9.8301 -15.4674 -1.46372 Vertex 776 -9.82831 4.14704 -5.78171 Vertex 777 -9.82793 -15.3148 -0.080776 Vertex 778 -9.82779 -15.8746 0.416379 Vertex 779 -9.82697 -17.6931 -0.000768 Vertex 780 -9.82394 -0.959323 -5.26112 Vertex 781 -9.8233 1.24077 -5.45815 Vertex 782 -9.82269 -15.4349 -1.23279 Vertex 783 -9.80722 -14.2928 0.470013 Vertex 784 -9.80458 -16.0672 -1.45693 Vertex 785 -9.79645 -16.0396 -1.14011 Vertex 786 -9.7942 -15.3524 -0.39644 Vertex 787 -9.7936 -15.9753 0.100159 Vertex 788 -9.78416 4.38373 -0.036203 Vertex 789 -9.77716 -16.0328 -1.77378 Vertex 790 -9.77394 -15.3139 -0.713082 Vertex 791 -9.76182 5.40737 0.003398 Vertex 792 -9.7604 -21.461 -1.2275 Vertex 793 -9.75612 -15.4313 0.683442 Vertex 794 -9.75577 -19.7527 -6.08434 Vertex 795 -9.74596 -4.28925 -5.4962 Vertex 796 -9.73866 2.44708 -5.66819 Vertex 797 -9.73715 12.8281 -2.73469 Vertex 798 -9.73661 -16.0595 0.850463 Vertex 799 -9.73154 0.01042 -5.26248 Vertex 800 -9.73154 -14.0222 0.985885 Vertex 801 -9.72934 -16.1599 0.625094 Vertex 802 -9.72184 1.3262 -2.23653 Vertex 803 -9.71841 -15.5205 0.468435 Vertex 804 -9.70212 -15.5374 0.234933 Vertex 805 -9.68869 -16.1883 0.384223 Vertex 806 -9.67989 -15.8386 -0.1016 Vertex 807 -9.67962 -15.2565 -0.05794 Vertex 808 -9.67313 -15.6468 0.928454 Vertex 809 -9.66799 7.74706 0.924819 Vertex 810 -9.65546 1.26999 -2.45644 Vertex 811 -9.64369 -16.0826 0.155483 Vertex 812 -9.63894 7.02585 0.456604 Vertex 813 -9.63827 2.09717 -0.490344 Vertex 814 -9.63054 -0.150637 -2.6132 Vertex 815 -9.61605 6.44918 0.13333 Vertex 816 -9.61545 1.08211 -5.16186 Vertex 817 -9.59717 6.00617 -5.57221 Vertex 818 -9.5879 -0.053116 -5.00576 Vertex 819 -9.58468 8.99371 1.34566 Vertex 820 -9.58199 -15.7702 0.867382 Vertex 821 -9.58125 6.28773 0.06475 Vertex 822 -9.57185 -4.29444 -1.54782 Vertex 823 -9.5696 -14.5516 0.682242 Vertex 824 -9.55726 -15.9385 0.526657 Vertex 825 -9.54713 -15.8851 0.56992 Vertex 826 -9.54451 -14.5447 1.49722 Vertex 827 -9.54165 -14.6553 0.45666 Vertex 828 -9.5341 -15.2045 1.24693 Vertex 829 -9.52467 -1.09417 -2.9647 Vertex 830 -9.50647 -15.9251 0.255295 Vertex 831 -9.46959 -15.51 -1.22994 Vertex 832 -9.46207 -14.8063 0.280058 Vertex 833 -9.45522 -15.9969 -0.23507 Vertex 834 -9.44853 3.47707 -5.55829 Vertex 835 -9.44826 -15.3865 -1.76839 Vertex 836 -9.44726 4.77119 -5.7723 Vertex 837 -9.44532 11.2386 -5.18265 Vertex 838 -9.44467 -16.0094 0.412612 Vertex 839 -9.44001 -16.2222 0.175871 Vertex 840 -9.42007 -15.3946 0.986371 Vertex 841 -9.41079 -16.206 -0.042953 Vertex 842 -9.40524 -4.27188 -2.68702 Vertex 843 -9.36658 -15.6872 -0.257401 Vertex 844 -9.36295 12.0082 -3.99928 Vertex 845 -9.36026 -16.2195 0.208991 Vertex 846 -9.34365 -4.27747 -4.70197 Vertex 847 -9.33784 -15.4982 -1.50529 Vertex 848 -9.33232 -14.5438 1.13985 Vertex 849 -9.32171 4.06305 -5.73758 Vertex 850 -9.32017 0.94983 -4.4582 Vertex 851 -9.31843 -16.0043 -0.265824 Vertex 852 -9.31831 2.13904 -5.14951 Vertex 853 -9.30952 -19.7285 -6.43079 Vertex 854 -9.30795 -15.1184 0.014277 Vertex 855 -9.30604 1.628 -1.35177 Vertex 856 -9.29982 -0.208133 -4.24676 Vertex 857 -9.29334 -0.93602 -4.59519 Vertex 858 -9.28865 10.0415 1.28198 Vertex 859 -9.28703 -17.6027 -5.58686 Vertex 860 -9.27918 -15.6482 0.662059 Vertex 861 -9.27479 3.10244 -0.442654 Vertex 862 -9.27318 -21.3452 -5.73709 Vertex 863 -9.25302 -2.50044 -2.70947 Vertex 864 -9.25048 -0.176438 -3.27873 Vertex 865 -9.24875 -2.50084 -4.82542 Vertex 866 -9.24557 2.61353 -2.19345 Vertex 867 -9.24255 -0.993387 -3.47699 Vertex 868 -9.24253 -14.9671 1.16286 Vertex 869 -9.23886 -14.7596 0.84387 Vertex 870 -9.22194 -16.2233 -0.121848 Vertex 871 -9.20513 2.55755 -2.41703 Vertex 872 -9.20505 0.8743 -3.91664 Vertex 873 -9.19965 -16.2701 0.016926 Vertex 874 -9.19829 6.73228 -5.36579 Vertex 875 -9.19167 -15.8061 0.452515 Vertex 876 -9.18908 -19.7174 -6.98808 Vertex 877 -9.16963 -16.2903 0.101243 Vertex 878 -9.16476 -4.33881 -4.65661 Vertex 879 -9.15542 -15.9807 -0.317903 Vertex 880 -9.14724 -45.027 3.87047 Vertex 881 -9.14485 -15.2381 0.870755 Vertex 882 -9.1409 1.04284 -2.6797 Vertex 883 -9.13092 -15.4145 -0.164885 Vertex 884 -9.12588 -44.3663 3.86857 Vertex 885 -9.12383 -4.29743 -3.38804 Vertex 886 -9.12111 -14.9301 0.658219 Vertex 887 -9.10999 6.90209 -5.35687 Vertex 888 -9.09858 -4.33885 -2.40005 Vertex 889 -9.07901 7.93967 -5.49622 Vertex 890 -9.0753 11.1982 0.508086 Vertex 891 -9.07107 -15.833 -0.318259 Vertex 892 -9.05243 -15.6891 -0.281141 Vertex 893 -9.03366 -45.027 1.92883 Vertex 894 -9.02326 -44.3842 1.9165 Vertex 895 -9.01907 5.47591 -5.51982 Vertex 896 -9.00267 5.85447 -0.203232 Vertex 897 -8.99822 -16.1599 -0.172204 Vertex 898 -8.99399 4.18484 -0.408676 Vertex 899 -8.98669 5.18228 -0.208585 Vertex 900 -8.97982 -15.2233 0.317066 Vertex 901 -8.96696 -15.4864 0.456328 Vertex 902 -8.96265 -16.1634 0.09069 Vertex 903 -8.95974 -16.1879 -0.032894 Vertex 904 -8.94586 -15.6253 0.355535 Vertex 905 -8.94565 -15.4831 0.513085 Vertex 906 -8.94353 -22.1882 -3.16712 Vertex 907 -8.94161 -43.3202 3.79385 Vertex 908 -8.93978 -19.9924 0.945029 Vertex 909 -8.92681 -2.49958 -3.49388 Vertex 910 -8.92533 -45.271 3.84484 Vertex 911 -8.92126 -4.35677 -3.23025 Vertex 912 -8.90431 -17.6212 -5.81033 Vertex 913 -8.89958 12.3419 -0.439584 Vertex 914 -8.89332 2.68893 -1.38139 Vertex 915 -8.88844 0.992296 -3.15284 Vertex 916 -8.88696 2.02234 -4.19029 Vertex 917 -8.87638 -15.9571 -0.162388 Vertex 918 -8.87107 -43.3143 1.918 Vertex 919 -8.86626 -15.4825 0.067004 Vertex 920 -8.86187 2.11765 -3.80763 Vertex 921 -8.85424 -21.3421 -5.99528 Vertex 922 -8.84542 9.6329 -6.00456 Vertex 923 -8.84097 -17.4761 -6.22582 Vertex 924 -8.83348 -15.762 -0.109212 Vertex 925 -8.83057 12.0761 -4.63657 Vertex 926 -8.82183 -45.271 2.0883 Vertex 927 -8.81493 -15.9751 -0.026694 Vertex 928 -8.79583 -15.785 0.144167 Vertex 929 -8.79141 -15.9987 0.057748 Vertex 930 -8.79092 2.40505 -2.65504 Vertex 931 -8.7899 11.1911 -5.36334 Vertex 932 -8.78664 12.8215 -1.445 Vertex 933 -8.7794 -15.7098 0.102446 Vertex 934 -8.77833 -45.027 1.1626 Vertex 935 -8.7668 -44.436 1.17209 Vertex 936 -8.76669 -21.352 -6.45892 Vertex 937 -8.71394 7.75887 0.933331 Vertex 938 -8.69749 13.0495 -2.47229 Vertex 939 -8.69484 -22.1384 -3.2422 Vertex 940 -8.68706 3.31266 -5.17191 Vertex 941 -8.67558 6.23456 -0.448852 Vertex 942 -8.67112 12.6136 -3.55732 Vertex 943 -8.66928 6.86513 -0.165417 Vertex 944 -8.66265 -21.4709 0.144578 Vertex 945 -8.65723 2.23391 -3.04478 Vertex 946 -8.65485 4.19353 -1.71193 Vertex 947 -8.64004 -23.7411 -3.16115 Vertex 948 -8.63254 6.77266 -0.327621 Vertex 949 -8.62763 7.16986 0.288609 Vertex 950 -8.62559 -17.8018 1.65954 Vertex 951 -8.6147 -43.3518 1.2424 Vertex 952 -8.60523 4.22854 -1.30917 Vertex 953 -8.59473 -27.9859 -3.52662 Vertex 954 -8.57845 5.19998 -0.725376 Vertex 955 -8.56571 -44.9304 1.31904 Vertex 956 -8.56386 -24.1367 -3.27614 Vertex 957 -8.56337 -45.271 1.31489 Vertex 958 -8.52179 10.9701 1.11311 Vertex 959 -8.50861 -26.9064 -2.8585 Vertex 960 -8.50654 4.58203 -5.16603 Vertex 961 -8.50521 6.42801 -5.05533 Vertex 962 -8.50151 -42.6843 3.20377 Vertex 963 -8.48754 -44.4112 0.423698 Vertex 964 -8.48493 11.0335 1.2752 Vertex 965 -8.4849 -45.027 0.418482 Vertex 966 -8.48024 -44.9365 1.28196 Vertex 967 -8.47776 5.2242 -1.14207 Vertex 968 -8.47363 -27.9028 -3.61108 Vertex 969 -8.46957 8.95833 1.41415 Vertex 970 -8.46614 6.60781 -5.04073 Vertex 971 -8.46009 -44.4595 1.29137 Vertex 972 -8.45587 -42.643 2.10917 Vertex 973 -8.44611 -28.4977 -3.44355 Vertex 974 -8.43062 10.9166 0.966035 Vertex 975 -8.41631 -12.9309 -0.638932 Vertex 976 -8.41438 4.17157 -1.96465 Vertex 977 -8.41045 12.1842 0.211048 Vertex 978 -8.40726 -15.374 -4.54654 Vertex 979 -8.40378 -12.9112 -1.18576 Vertex 980 -8.39982 -44.3648 5.10133 Vertex 981 -8.39821 -27.353 -2.74804 Vertex 982 -8.39419 9.92694 1.40347 Vertex 983 -8.38225 -45.0271 5.06772 Vertex 984 -8.38146 -23.7552 -3.22256 Vertex 985 -8.37739 11.1107 1.46784 Vertex 986 -8.37072 -26.8347 -2.97015 Vertex 987 -8.36886 12.2991 0.334827 Vertex 988 -8.34849 6.61465 -0.694472 Vertex 989 -8.34231 -43.3374 4.82455 Vertex 990 -8.33907 -43.3015 0.493351 Vertex 991 -8.32824 -24.0221 -3.22699 Vertex 992 -8.32492 12.0691 0.109669 Vertex 993 -8.32261 3.3509 -4.13582 Vertex 994 -8.31915 -22.1684 -5.511 Vertex 995 -8.31444 -43.4288 1.3497 Vertex 996 -8.30544 -13.0015 -0.922785 Vertex 997 -8.29881 9.31748 1.24736 Vertex 998 -8.29388 -25.4908 -3.29862 Vertex 999 -8.28326 -30.1194 -4.21108 Vertex 1000 -8.25639 12.4301 0.487534 Vertex 1001 -8.25428 7.52254 -5.24379 Vertex 1002 -8.25409 -44.9304 0.436705 Vertex 1003 -8.25396 11.1308 1.51011 Vertex 1004 -8.25248 9.31063 1.41515 Vertex 1005 -8.25174 -45.271 0.432554 Vertex 1006 -8.23746 -45.271 4.91516 Vertex 1007 -8.22614 -44.3719 -0.295623 Vertex 1008 -8.22038 10.9114 0.935422 Vertex 1009 -8.21893 9.34764 1.09348 Vertex 1010 -8.21509 -43.291 -0.061943 Vertex 1011 -8.21442 -25.8795 -3.19961 Vertex 1012 -8.20447 -22.125 -4.99594 Vertex 1013 -8.1959 12.8479 -0.730817 Vertex 1014 -8.19173 -45.0271 -0.278554 Vertex 1015 -8.18958 -42.5911 1.42024 Vertex 1016 -8.18682 -44.9365 0.537845 Vertex 1017 -8.18082 -44.4346 0.542982 Vertex 1018 -8.18049 6.64974 -4.28675 Vertex 1019 -8.1486 -30.0369 -4.30088 Vertex 1020 -8.14521 12.991 -0.647036 Vertex 1021 -8.13685 10.9443 0.814305 Vertex 1022 -8.13507 9.31474 1.61373 Vertex 1023 -8.13296 12.4502 0.529803 Vertex 1024 -8.12424 -19.7211 -8.09466 Vertex 1025 -8.12124 12.6992 -0.784484 Vertex 1026 -8.11792 12.0286 0.105356 Vertex 1027 -8.1136 -30.5863 -4.13192 Vertex 1028 -8.10949 3.36266 -3.69303 Vertex 1029 -8.10894 -26.5016 -2.12342 Vertex 1030 -8.1075 -15.4977 -4.72907 Vertex 1031 -8.09503 -15.3683 -5.06338 Vertex 1032 -8.08957 -23.7329 -5.22963 Vertex 1033 -8.04387 -24.1321 -5.13846 Vertex 1034 -8.04338 -10.8848 -0.228495 Vertex 1035 -8.04053 -42.6782 3.77032 Vertex 1036 -8.03881 -43.3786 0.600656 Vertex 1037 -8.03752 -26.9019 -2.00118 Vertex 1038 -8.0333 -25.5016 -3.25155 Vertex 1039 -8.02324 13.1514 -0.536025 Vertex 1040 -8.01519 9.39067 1.05896 Vertex 1041 -8.01164 9.33482 1.656 Vertex 1042 -8.0053 -13.0103 1.00777 Vertex 1043 -7.99733 -30.181 -3.65386 Vertex 1044 -7.98766 5.2484 -1.55877 Vertex 1045 -7.98007 -25.7685 -3.25598 Vertex 1046 -7.96631 6.90082 -0.876599 Vertex 1047 -7.96207 -26.4116 -2.25786 Vertex 1048 -7.95283 -42.8053 1.46782 Vertex 1049 -7.95196 -45.271 -0.286458 Vertex 1050 -7.93532 7.94025 0.840468 Vertex 1051 -7.9205 12.6393 -0.761338 Vertex 1052 -7.9124 -42.4073 0.693917 Vertex 1053 -7.90837 -22.1205 -5.57303 Vertex 1054 -7.90535 -27.4298 -3.22534 Vertex 1055 -7.89981 13.1714 -0.493756 Vertex 1056 -7.89086 -22.0812 -5.30726 Vertex 1057 -7.8867 5.53516 -4.62686 Vertex 1058 -7.88002 11.9198 -0.116802 Vertex 1059 -7.87406 -42.3419 0.440428 Vertex 1060 -7.87386 8.04017 0.707204 Vertex 1061 -7.87356 7.87492 0.990975 Vertex 1062 -7.86606 -31.5471 -4.78395 Vertex 1063 -7.86286 -10.9122 1.09587 Vertex 1064 -7.85131 -23.7495 -5.11313 Vertex 1065 -7.83119 -15.6207 1.95268 Vertex 1066 -7.8166 -25.4854 -5.04524 Vertex 1067 -7.81562 3.79219 -2.41983 Vertex 1068 -7.80632 -24.0174 -5.09468 Vertex 1069 -7.79831 13.3084 -2.11062 Vertex 1070 -7.78966 -21.3532 -7.36365 Vertex 1071 -7.76148 4.96266 -4.32859 Vertex 1072 -7.75892 12.9316 -2.48278 Vertex 1073 -7.74719 12.7431 -3.50605 Vertex 1074 -7.74378 13.1363 -2.09439 Vertex 1075 -7.74006 7.81806 1.17155 Vertex 1076 -7.73222 -25.8734 -5.07774 Vertex 1077 -7.73073 13.471 -2.08544 Vertex 1078 -7.71974 -17.4998 -7.56352 Vertex 1079 -7.70332 -31.4477 -4.87229 Vertex 1080 -7.68501 3.53338 -2.93775 Vertex 1081 -7.68071 8.12335 0.68454 Vertex 1082 -7.67565 -42.6215 0.741497 Vertex 1083 -7.67358 -31.9761 -4.70322 Vertex 1084 -7.65852 -27.3814 -3.28275 Vertex 1085 -7.65184 -30.1758 -5.53014 Vertex 1086 -7.63661 -22.3253 -0.783916 Vertex 1087 -7.63149 10.8124 -5.64342 Vertex 1088 -7.62621 9.35865 -5.83151 Vertex 1089 -7.62261 12.036 -4.81852 Vertex 1090 -7.61663 7.83815 1.21381 Vertex 1091 -7.59849 -43.2583 -1.67611 Vertex 1092 -7.59116 13.6518 -2.03551 Vertex 1093 -7.56545 12.5855 -0.899039 Vertex 1094 -7.56263 -42.3769 2.50256 Vertex 1095 -7.55794 -25.4963 -4.9928 Vertex 1096 -7.55463 13.063 -2.03102 Vertex 1097 -7.51897 -44.3451 5.6843 Vertex 1098 -7.51413 -44.4004 -1.75187 Vertex 1099 -7.51296 -25.7642 -4.97435 Vertex 1100 -7.50323 6.99802 0.025754 Vertex 1101 -7.48562 -22.2817 -0.988529 Vertex 1102 -7.48314 -45.0271 -1.79581 Vertex 1103 -7.4719 -27.4234 -4.97097 Vertex 1104 -7.46773 13.6718 -1.99324 Vertex 1105 -7.45504 7.13056 -0.084245 Vertex 1106 -7.43949 -9.01958 0.66656 Vertex 1107 -7.43434 -45.0273 5.69717 Vertex 1108 -7.43035 6.90536 0.156759 Vertex 1109 -7.42978 -23.8644 -0.953655 Vertex 1110 -7.4291 -41.7705 -0.706719 Vertex 1111 -7.42907 -42.3373 -1.50223 Vertex 1112 -7.40119 -45.271 5.47066 Vertex 1113 -7.3915 -9.11913 -0.899686 Vertex 1114 -7.38405 7.43221 2.55887 Vertex 1115 -7.37731 -43.3377 5.39664 Vertex 1116 -7.37725 -24.2586 -0.997458 Vertex 1117 -7.35804 5.8667 -3.90135 Vertex 1118 -7.34724 -32.0742 -3.54329 Vertex 1119 -7.34298 6.36847 2.67728 Vertex 1120 -7.31846 -42.3313 1.79142 Vertex 1121 -7.31193 5.15508 -3.58199 Vertex 1122 -7.30844 -43.2583 -2.57767 Vertex 1123 -7.3006 -45.271 -1.68567 Vertex 1124 -7.28524 6.82002 0.316999 Vertex 1125 -7.27506 -32.6227 -5.37381 Vertex 1126 -7.27034 -23.8838 -1.16521 Vertex 1127 -7.26954 7.23251 -0.093519 Vertex 1128 -7.26897 -41.4482 -1.31473 Vertex 1129 -7.2683 -22.1541 -6.51797 Vertex 1130 -7.2653 -10.881 -2.97793 Vertex 1131 -7.26168 7.2993 -1.87648 Vertex 1132 -7.24208 -27.3771 -4.86325 Vertex 1133 -7.23499 13.0197 -3.61834 Vertex 1134 -7.23428 -24.152 -1.19479 Vertex 1135 -7.22757 -42.6339 1.749 Vertex 1136 -7.21797 -26.2768 -1.33962 Vertex 1137 -7.21482 5.19364 -2.01751 Vertex 1138 -7.20901 12.8624 -3.52573 Vertex 1139 -7.1969 -25.6007 -1.14547 Vertex 1140 -7.19111 -42.3079 -2.54227 Vertex 1141 -7.18781 -26.6616 -1.23954 Vertex 1142 -7.16729 -30.31 -1.77421 Vertex 1143 -7.16181 6.84011 0.359268 Vertex 1144 -7.14481 -45.027 -2.51383 Vertex 1145 -7.14457 -32.0689 -5.459 Vertex 1146 -7.14446 -25.9948 -1.18934 Vertex 1147 -7.14424 5.34338 2.54972 Vertex 1148 -7.14349 13.1701 -3.65718 Vertex 1149 -7.14173 -44.4004 -2.53413 Vertex 1150 -7.13799 -40.9886 -2.19132 Vertex 1151 -7.12399 -23.7202 -6.15428 Vertex 1152 -7.12247 6.24603 -1.71512 Vertex 1153 -7.12112 -22.1146 -6.30932 Vertex 1154 -7.12023 7.79835 -0.347202 Vertex 1155 -7.10766 -26.197 -1.51474 Vertex 1156 -7.09948 -41.8982 0.751682 Vertex 1157 -7.09673 -32.4618 -5.42216 Vertex 1158 -7.07023 -40.6563 -2.82789 Vertex 1159 -7.06988 -35.0264 -4.23679 Vertex 1160 -7.06977 -8.98465 -2.44379 Vertex 1161 -7.06705 -12.9289 -4.08971 Vertex 1162 -7.05698 -33.0271 -5.28221 Vertex 1163 -7.05507 -11.0373 2.1656 Vertex 1164 -7.05203 -35.0229 -3.24765 Vertex 1165 -7.05183 -24.1134 -6.12901 Vertex 1166 -7.05155 -42.1343 1.06901 Vertex 1167 -7.03702 -25.6199 -1.35668 Vertex 1168 -7.03667 -15.3518 -6.24693 Vertex 1169 -7.03628 12.7974 -3.4184 Vertex 1170 -7.0145 9.58546 2.02911 Vertex 1171 -7.00097 -25.8881 -1.38626 Vertex 1172 -6.99251 -32.2059 -1.86392 Vertex 1173 -6.99152 -45.271 -2.34218 Vertex 1174 -6.98442 -13.1871 2.36055 Vertex 1175 -6.98115 -33.4003 -3.24674 Vertex 1176 -6.97899 13.3381 -3.674 Vertex 1177 -6.96941 -23.7437 -5.93948 Vertex 1178 -6.96067 -42.437 1.02659 Vertex 1179 -6.93828 -24.0127 -5.91091 Vertex 1180 -6.93763 -27.5339 -1.35908 Vertex 1181 -6.93323 -30.1706 -6.35018 Vertex 1182 -6.93024 -42.6753 4.42051 Vertex 1183 -6.91636 -41.3607 -0.163031 Vertex 1184 -6.90083 11.1018 1.47198 Vertex 1185 -6.89534 -25.4655 -5.9854 Vertex 1186 -6.89199 5.38138 0.224029 Vertex 1187 -6.88131 -25.8629 -5.92282 Vertex 1188 -6.88025 -41.3396 -3.59481 Vertex 1189 -6.87902 8.8035 0.386456 Vertex 1190 -6.87612 8.19083 0.022637 Vertex 1191 -6.86986 -42.1568 -3.79467 Vertex 1192 -6.86823 6.30921 -1.50033 Vertex 1193 -6.86256 -9.08388 2.00808 Vertex 1194 -6.86083 6.49176 -1.51502 Vertex 1195 -6.86055 2.03823 1.06127 Vertex 1196 -6.85651 4.69352 2.11507 Vertex 1197 -6.85556 13.3582 -3.63173 Vertex 1198 -6.84599 8.19581 -1.28649 Vertex 1199 -6.83329 5.06838 -2.92306 Vertex 1200 -6.82914 -32.0635 -6.53945 Vertex 1201 -6.82564 -43.2598 -3.86012 Vertex 1202 -6.79683 13.4976 -0.269359 Vertex 1203 -6.78568 -27.4902 -1.56294 Vertex 1204 -6.78562 12.5256 0.974956 Vertex 1205 -6.77517 1.21205 0.781024 Vertex 1206 -6.76735 -40.8037 -2.8256 Vertex 1207 -6.76727 8.31049 -3.18002 Vertex 1208 -6.76718 -25.4909 -5.75389 Vertex 1209 -6.76576 -40.8285 -0.850633 Vertex 1210 -6.76116 6.17462 -1.44923 Vertex 1211 -6.7566 7.33689 3.72476 Vertex 1212 -6.73605 -25.7599 -5.72532 Vertex 1213 -6.73365 -40.1227 -3.27867 Vertex 1214 -6.7323 14.1705 -1.95675 Vertex 1215 -6.70624 7.92342 -4.01511 Vertex 1216 -6.7047 3.24627 1.66763 Vertex 1217 -6.70196 -27.4125 -5.75822 Vertex 1218 -6.70125 7.57214 -3.60192 Vertex 1219 -6.69879 6.6225 -1.46944 Vertex 1220 -6.69555 8.75321 -4.53803 Vertex 1221 -6.68899 -33.3956 -4.92897 Vertex 1222 -6.68515 3.24156 1.85189 Vertex 1223 -6.68438 7.35665 -3.20158 Vertex 1224 -6.68011 6.14707 4.02962 Vertex 1225 -6.67727 3.24332 1.76913 Vertex 1226 -6.67587 -33.516 -1.98357 Vertex 1227 -6.67093 -20.0105 2.1196 Vertex 1228 -6.66898 -37.8187 -3.32421 Vertex 1229 -6.66719 -38.6947 -3.32432 Vertex 1230 -6.65892 4.70734 -0.130068 Vertex 1231 -6.65775 5.93729 -3.16594 Vertex 1232 -6.65377 4.53229 1.77602 Vertex 1233 -6.62939 -35.0181 -1.91999 Vertex 1234 -6.61981 -6.3647 -0.69964 Vertex 1235 -6.61716 -34.2156 -3.28398 Vertex 1236 -6.61467 4.52287 2.14453 Vertex 1237 -6.5989 4.52639 1.97901 Vertex 1238 -6.59868 -40.6476 -3.96669 Vertex 1239 -6.58357 -42.1677 -3.62182 Vertex 1240 -6.58061 -44.3777 -3.75025 Vertex 1241 -6.58042 6.04556 -1.37229 Vertex 1242 -6.57996 -41.3874 -3.45416 Vertex 1243 -6.57928 -45.027 -3.75244 Vertex 1244 -6.56011 -43.3325 5.06993 Vertex 1245 -6.55897 -6.28919 -0.115199 Vertex 1246 -6.55853 0.821168 -0.329246 Vertex 1247 -6.54939 -27.3727 -5.55402 Vertex 1248 -6.54444 -37.8216 -4.19285 Vertex 1249 -6.54267 9.7923 0.586904 Vertex 1250 -6.54265 -38.6976 -4.19296 Vertex 1251 -6.54181 -40.339 -1.48537 Vertex 1252 -6.54138 -43.2346 -3.68517 Vertex 1253 -6.53305 11.5787 -4.8895 Vertex 1254 -6.52297 11.6676 -5.05488 Vertex 1255 -6.51848 -6.62575 -2.30468 Vertex 1256 -6.51729 5.23794 3.99098 Vertex 1257 -6.51104 8.60197 -0.420323 Vertex 1258 -6.5054 4.52261 -0.020655 Vertex 1259 -6.50462 -6.34977 -0.408374 Vertex 1260 -6.50445 -21.488 1.17528 Vertex 1261 -6.47728 2.16204 3.06955 Vertex 1262 -6.47605 1.95106 -2.12188 Vertex 1263 -6.46829 -45.271 5.06899 Vertex 1264 -6.45699 6.06565 -1.33002 Vertex 1265 -6.45459 2.29483 -0.139645 Vertex 1266 -6.44519 9.04369 -3.91063 Vertex 1267 -6.44475 -41.0984 -4.3525 Vertex 1268 -6.43659 10.1028 -4.7254 Vertex 1269 -6.43317 3.48004 -0.254737 Vertex 1270 -6.43077 -40.27 -3.27638 Vertex 1271 -6.42047 -45.271 -3.57574 Vertex 1272 -6.42015 1.93037 -2.3071 Vertex 1273 -6.41935 -33.3096 -5.85585 Vertex 1274 -6.41786 1.27036 2.91128 Vertex 1275 -6.416 1.90913 -2.20403 Vertex 1276 -6.41526 -44.3557 5.28254 Vertex 1277 -6.40608 0.818348 -0.855766 Vertex 1278 -6.40123 11.7606 -5.15473 Vertex 1279 -6.39423 11.0366 0.195314 Vertex 1280 -6.39154 -39.8123 -2.07588 Vertex 1281 -6.38792 5.38028 -1.47809 Vertex 1282 -6.38108 11.5532 -4.74029 Vertex 1283 -6.38007 -34.2126 -4.37666 Vertex 1284 -6.37656 1.01116 -2.3548 Vertex 1285 -6.37597 -45.0271 5.24633 Vertex 1286 -6.37416 -19.9011 2.09065 Vertex 1287 -6.36776 2.3148 -0.723716 Vertex 1288 -6.34904 11.5146 -4.02476 Vertex 1289 -6.34225 -0.83396 -0.685627 Vertex 1290 -6.34225 0.584039 -0.685606 Vertex 1291 -6.34091 9.06014 -0.168211 Vertex 1292 -6.33968 -42.1528 -4.60068 Vertex 1293 -6.33793 3.20008 -1.83464 Vertex 1294 -6.33015 -42.3167 3.00224 Vertex 1295 -6.32992 1.38414 -0.288502 Vertex 1296 -6.32948 -3.66996 -0.752633 Vertex 1297 -6.32948 -2.25196 -0.752612 Vertex 1298 -6.32924 4.56952 3.6647 Vertex 1299 -6.32025 -37.8146 -2.12507 Vertex 1300 -6.31846 -38.6906 -2.12518 Vertex 1301 -6.31783 10.5068 0.489034 Vertex 1302 -6.31461 6.74698 -3.23127 Vertex 1303 -6.31436 11.8814 -0.574578 Vertex 1304 -6.30445 -40.5515 -1.59844 Vertex 1305 -6.2984 -40.6954 -3.82604 Vertex 1306 -6.29518 -44.949 -3.59249 Vertex 1307 -6.29485 -44.3273 -3.58288 Vertex 1308 -6.29324 12.1047 -3.23163 Vertex 1309 -6.29287 6.57805 -3.30816 Vertex 1310 -6.29198 9.71615 2.58683 Vertex 1311 -6.28068 -33.0951 -5.82118 Vertex 1312 -6.27652 -43.2598 -4.71564 Vertex 1313 -6.27322 12.3165 -1.57702 Vertex 1314 -6.27143 12.3355 -2.50084 Vertex 1315 -6.27037 3.29993 3.29292 Vertex 1316 -6.25653 -44.9899 -3.48905 Vertex 1317 -6.24917 1.40467 -0.873569 Vertex 1318 -6.24251 10.9961 -4.45964 Vertex 1319 -6.23709 3.16811 -1.96624 Vertex 1320 -6.22696 2.35364 -0.387596 Vertex 1321 -6.22563 4.70799 -1.70401 Vertex 1322 -6.21448 -33.6837 -5.73291 Vertex 1323 -6.20521 11.8687 -5.23514 Vertex 1324 -6.20458 4.44575 3.35634 Vertex 1325 -6.20403 -21.3785 1.13725 Vertex 1326 -6.16935 6.86988 -3.13298 Vertex 1327 -6.16635 -22.2915 -0.400585 Vertex 1328 -6.16136 6.45487 -3.33383 Vertex 1329 -6.15929 -41.1163 -4.17897 Vertex 1330 -6.15861 0.529734 -2.4611 Vertex 1331 -6.15638 9.10637 -1.68459 Vertex 1332 -6.15419 -40.0247 -2.18896 Vertex 1333 -6.15343 9.3637 -2.66082 Vertex 1334 -6.15328 -17.8217 2.94429 Vertex 1335 -6.14736 3.19252 -2.22149 Vertex 1336 -6.14374 11.3101 1.60497 Vertex 1337 -6.14 10.0157 -5.2945 Vertex 1338 -6.12274 4.42306 -1.73434 Vertex 1339 -6.11941 0.620633 2.1421 Vertex 1340 -6.11191 -34.2907 -2.09497 Vertex 1341 -6.10893 10.0212 -5.48149 Vertex 1342 -6.10871 -6.13414 1.51869 Vertex 1343 -6.10574 1.44355 -0.537757 Vertex 1344 -6.10108 -35.0221 -5.50011 Vertex 1345 -6.09971 -20.0135 2.21433 Vertex 1346 -6.0965 4.43579 3.46793 Vertex 1347 -6.08178 11.8888 -5.19287 Vertex 1348 -6.06534 7.54771 -4.33965 Vertex 1349 -6.05492 9.76061 -0.015878 Vertex 1350 -6.05421 -42.1707 -4.42714 Vertex 1351 -6.03363 4.40313 -1.80879 Vertex 1352 -6.03228 -44.3732 -4.67526 Vertex 1353 -6.03095 -45.027 -4.67746 Vertex 1354 -6.0303 7.4215 -4.47569 Vertex 1355 -6.02786 9.41271 -1.21125 Vertex 1356 -6.02166 -19.8563 -8.95316 Vertex 1357 -6.0091 14.7242 -1.76119 Vertex 1358 -6.00741 8.69988 -5.05631 Vertex 1359 -6.0014 -2.25196 -0.657592 Vertex 1360 -6.0014 -0.83396 -0.657572 Vertex 1361 -6.0014 0.584038 -0.657551 Vertex 1362 -6.00009 10.0383 -5.13285 Vertex 1363 -5.9986 4.43593 3.59473 Vertex 1364 -5.99433 9.95947 -4.05303 Vertex 1365 -5.99226 -43.2346 -4.54069 Vertex 1366 -5.99163 -42.5324 2.28711 Vertex 1367 -5.98667 14.9066 -1.79195 Vertex 1368 -5.98105 0.889254 -0.691035 Vertex 1369 -5.97792 4.42493 -2.01676 Vertex 1370 -5.97771 -42.2253 2.36976 Vertex 1371 -5.96962 10.0443 -5.59945 Vertex 1372 -5.96928 8.63516 -5.2306 Vertex 1373 -5.95515 6.33772 -3.33691 Vertex 1374 -5.95223 -34.2095 -4.85423 Vertex 1375 -5.9302 -3.66997 -0.365996 Vertex 1376 -5.92977 -21.4898 1.2608 Vertex 1377 -5.92869 -3.66996 -0.952019 Vertex 1378 -5.92834 -3.66995 -2.37695 Vertex 1379 -5.92834 -2.25195 -2.37693 Vertex 1380 -5.92773 7.64602 -4.20732 Vertex 1381 -5.92537 13.6395 -3.90961 Vertex 1382 -5.92145 -22.3298 -0.028688 Vertex 1383 -5.90908 -21.477 -8.04778 Vertex 1384 -5.88764 7.33415 -4.55093 Vertex 1385 -5.88332 9.87669 -2.86252 Vertex 1386 -5.87664 -22.2386 -0.668153 Vertex 1387 -5.87522 -0.833996 1.29024 Vertex 1388 -5.87522 0.584002 1.29026 Vertex 1389 -5.87513 -0.833947 -2.4805 Vertex 1390 -5.87513 0.584052 -2.48048 Vertex 1391 -5.87158 8.7628 -4.90198 Vertex 1392 -5.86792 -45.2711 -4.58649 Vertex 1393 -5.86702 -33.3909 -5.90739 Vertex 1394 -5.86217 -3.67 1.32148 Vertex 1395 -5.86217 -2.252 1.3215 Vertex 1396 -5.86059 -30.3209 -1.12206 Vertex 1397 -5.83172 6.3578 -3.29464 Vertex 1398 -5.8279 -42.6859 3.88862 Vertex 1399 -5.82766 9.77829 -1.08318 Vertex 1400 -5.82403 8.59933 -5.3379 Vertex 1401 -5.81218 -23.8675 -0.244348 Vertex 1402 -5.80873 10.2514 -0.090255 Vertex 1403 -5.78984 -23.8943 -0.507997 Vertex 1404 -5.78495 -24.2627 -0.299833 Vertex 1405 -5.78207 -32.217 -1.19807 Vertex 1406 -5.77408 -37.8179 -5.31527 Vertex 1407 -5.77229 -38.6939 -5.31538 Vertex 1408 -5.77072 -24.1632 -0.545718 Vertex 1409 -5.75572 -45.271 4.57053 Vertex 1410 -5.75526 10.0795 -5.69875 Vertex 1411 -5.75195 10.6058 -3.85106 Vertex 1412 -5.74685 -44.949 -4.51751 Vertex 1413 -5.74652 -44.3227 -4.50789 Vertex 1414 -5.74572 15.0931 -1.76401 Vertex 1415 -5.73663 -26.6598 -0.434434 Vertex 1416 -5.7354 -30.2473 -6.81719 Vertex 1417 -5.7189 -26.275 -0.507952 Vertex 1418 -5.7043 -22.197 -6.8207 Vertex 1419 -5.70398 -44.99 -4.4998 Vertex 1420 -5.70241 10.0802 -1.16296 Vertex 1421 -5.69107 -3.7011 -0.608438 Vertex 1422 -5.68972 -25.6028 -0.487784 Vertex 1423 -5.68476 10.7311 -0.303523 Vertex 1424 -5.67705 -23.8201 -6.41017 Vertex 1425 -5.6698 7.25433 -4.60571 Vertex 1426 -5.66964 -17.6304 -8.38756 Vertex 1427 -5.66652 -25.6295 -0.751366 Vertex 1428 -5.66641 -24.09 -6.37565 Vertex 1429 -5.66252 -25.998 -0.543273 Vertex 1430 -5.66176 10.2129 -2.69847 Vertex 1431 -5.65774 -26.1975 -0.708506 Vertex 1432 -5.65755 -22.2346 -7.07236 Vertex 1433 -5.65666 -43.3196 4.47069 Vertex 1434 -5.65041 11.0944 -3.51062 Vertex 1435 -5.64741 -25.8985 -0.789087 Vertex 1436 -5.64026 -32.1419 -7.01627 Vertex 1437 -5.63194 -23.794 -6.67481 Vertex 1438 -5.63183 10.0996 -5.65648 Vertex 1439 -5.62406 11.3731 -0.888613 Vertex 1440 -5.62208 -13.4371 -5.64686 Vertex 1441 -5.61914 -24.1909 -6.61883 Vertex 1442 -5.61836 14.0195 0.14405 Vertex 1443 -5.61713 -42.3382 1.599 Vertex 1444 -5.60838 -25.5613 -6.18742 Vertex 1445 -5.60801 11.5428 -2.90787 Vertex 1446 -5.60349 8.57324 -5.4261 Vertex 1447 -5.60321 -42.0311 1.68165 Vertex 1448 -5.60027 -3.66995 -2.28193 Vertex 1449 -5.60027 -2.25195 -2.28191 Vertex 1450 -5.60027 -0.83395 -2.28189 Vertex 1451 -5.60027 0.584049 -2.28187 Vertex 1452 -5.59774 -25.8311 -6.15289 Vertex 1453 -5.59368 -15.6399 3.11395 Vertex 1454 -5.5928 11.7038 -1.65043 Vertex 1455 -5.59144 11.7182 -2.3525 Vertex 1456 -5.58622 -41.8602 1.37018 Vertex 1457 -5.57724 -45.027 4.68656 Vertex 1458 -5.57212 -40.4605 -5.47911 Vertex 1459 -5.56625 13.8445 -0.001265 Vertex 1460 -5.56611 -25.5356 -6.4468 Vertex 1461 -5.56186 5.38039 -3.25141 Vertex 1462 -5.56004 -44.3629 4.66877 Vertex 1463 -5.55324 -27.5357 -0.758933 Vertex 1464 -5.55268 -25.932 -6.39647 Vertex 1465 -5.55256 -22.2926 -0.319962 Vertex 1466 -5.55213 -3.67 1.18242 Vertex 1467 -5.55213 -2.252 1.18245 Vertex 1468 -5.55213 -0.833995 1.18246 Vertex 1469 -5.55213 0.584003 1.18249 Vertex 1470 -5.54637 7.27442 -4.56344 Vertex 1471 -5.54354 12.6985 1.06746 Vertex 1472 -5.53439 -27.4373 -5.9474 Vertex 1473 -5.53364 -27.4993 -1.0136 Vertex 1474 -5.52922 10.4657 -1.63571 Vertex 1475 -5.5227 15.1033 -1.68382 Vertex 1476 -5.52261 -33.5257 -1.39886 Vertex 1477 -5.50332 10.4921 -2.23541 Vertex 1478 -5.49323 -42.8654 2.55611 Vertex 1479 -5.49183 -27.4749 -6.19907 Vertex 1480 -5.48377 -42.6296 3.44 Vertex 1481 -5.48006 8.59332 -5.38383 Vertex 1482 -5.4709 14.2604 0.28676 Vertex 1483 -5.4584 -41.3445 -5.64498 Vertex 1484 -5.44949 -43.2908 -5.88366 Vertex 1485 -5.44897 -9.08938 3.26283 Vertex 1486 -5.39875 -9.56262 -4.59858 Vertex 1487 -5.39807 -33.4598 -6.32609 Vertex 1488 -5.3977 11.4409 1.92598 Vertex 1489 -5.34342 -40.4779 -5.2375 Vertex 1490 -5.34099 -34.2971 -1.71518 Vertex 1491 -5.32684 -33.5901 -6.19562 Vertex 1492 -5.32534 14.7589 -1.74606 Vertex 1493 -5.31601 -42.6252 2.67321 Vertex 1494 -5.30159 -41.3699 0.564513 Vertex 1495 -5.27109 -42.045 -5.7485 Vertex 1496 -5.27059 -45.271 3.60876 Vertex 1497 -5.26009 -34.2542 -5.12619 Vertex 1498 -5.25716 14.3528 0.296421 Vertex 1499 -5.25684 -7.49152 -4.12092 Vertex 1500 -5.24866 -33.3726 -6.10603 Vertex 1501 -5.23547 -44.3783 -5.79089 Vertex 1502 -5.23414 -45.027 -5.79309 Vertex 1503 -5.2297 -41.3618 -5.40337 Vertex 1504 -5.2152 12.9418 1.30627 Vertex 1505 -5.20691 3.27182 -3.51849 Vertex 1506 -5.20261 2.03074 -3.85679 Vertex 1507 -5.19304 -33.9544 -6.04996 Vertex 1508 -5.18213 -15.4691 -6.98895 Vertex 1509 -5.18126 9.74168 2.96163 Vertex 1510 -5.17381 -11.3275 3.17279 Vertex 1511 -5.17206 12.7691 1.16771 Vertex 1512 -5.16693 -9.67127 -4.76261 Vertex 1513 -5.16278 4.70925 -3.60492 Vertex 1514 -5.15434 7.39397 4.47908 Vertex 1515 -5.14865 1.51228 3.34183 Vertex 1516 -5.14812 2.39902 3.53297 Vertex 1517 -5.13382 -44.2869 2.7425 Vertex 1518 -5.13011 6.17703 4.85359 Vertex 1519 -5.11843 -42.8077 1.82997 Vertex 1520 -5.11209 -44.9388 2.74304 Vertex 1521 -5.10928 -43.3669 2.73583 Vertex 1522 -5.10154 -45.2712 -5.67839 Vertex 1523 -5.08428 3.27382 -3.63027 Vertex 1524 -5.07721 -44.3565 3.6494 Vertex 1525 -5.06929 14.0353 0.16341 Vertex 1526 -5.06679 -43.2985 3.65831 Vertex 1527 -5.06304 13.1813 1.4141 Vertex 1528 -5.06023 4.48478 -3.39564 Vertex 1529 -5.05968 1.12404 -3.91608 Vertex 1530 -5.05284 -40.8669 -0.040656 Vertex 1531 -5.04323 -6.28307 2.68218 Vertex 1532 -5.04299 -45.0271 3.62325 Vertex 1533 -5.03416 -44.9304 2.82993 Vertex 1534 -5.03182 -45.271 2.82578 Vertex 1535 -5.02319 -13.1969 3.10061 Vertex 1536 -5.02191 5.24898 4.81932 Vertex 1537 -5.01211 0.729243 3.07933 Vertex 1538 -4.99817 3.2824 -3.74281 Vertex 1539 -4.98869 -9.67015 -5.00347 Vertex 1540 -4.98695 13.9792 -4.02141 Vertex 1541 -4.98507 3.41862 3.87127 Vertex 1542 -4.98179 -7.53615 -4.24421 Vertex 1543 -4.96212 -42.5194 1.60902 Vertex 1544 -4.95323 -11.7906 -5.48958 Vertex 1545 -4.94121 -42.5676 1.94707 Vertex 1546 -4.92916 -45.271 0.012773 Vertex 1547 -4.90062 12.2646 -5.24404 Vertex 1548 -4.8932 0.896571 3.29041 Vertex 1549 -4.89038 4.48092 -3.52633 Vertex 1550 -4.88339 -35.0158 -0.892796 Vertex 1551 -4.86735 14.194 -4.08115 Vertex 1552 -4.86296 13.2774 1.37785 Vertex 1553 -4.85666 -43.3244 2.00333 Vertex 1554 -4.8524 1.59846 3.38413 Vertex 1555 -4.85155 2.48294 3.57381 Vertex 1556 -4.85129 4.58553 4.42604 Vertex 1557 -4.84001 -44.2711 2.01426 Vertex 1558 -4.83678 3.46058 3.89169 Vertex 1559 -4.83434 -43.2387 2.8515 Vertex 1560 -4.8256 -3.67003 2.97433 Vertex 1561 -4.8256 -2.25203 2.97435 Vertex 1562 -4.82477 -44.2895 2.85553 Vertex 1563 -4.82231 -45.271 1.26514 Vertex 1564 -4.82201 4.43822 4.20956 Vertex 1565 -4.81891 -0.834026 2.97957 Vertex 1566 -4.81891 0.583972 2.97959 Vertex 1567 -4.81614 -44.9388 2.01289 Vertex 1568 -4.8129 -45.027 2.85613 Vertex 1569 -4.80725 11.7225 2.32642 Vertex 1570 -4.8025 -7.52484 -4.49775 Vertex 1571 -4.79302 0.586182 -3.85386 Vertex 1572 -4.78895 4.49637 -3.69587 Vertex 1573 -4.77974 -44.4204 0.112964 Vertex 1574 -4.77786 11.5497 2.19269 Vertex 1575 -4.7777 0.890581 3.55255 Vertex 1576 -4.77709 -37.8124 -1.1712 Vertex 1577 -4.7753 -38.6884 -1.17131 Vertex 1578 -4.76989 -45.027 0.088799 Vertex 1579 -4.76249 -3.67002 2.46685 Vertex 1580 -4.75184 -6.32716 2.79893 Vertex 1581 -4.74967 3.41923 4.05976 Vertex 1582 -4.73212 -43.2792 1.476 Vertex 1583 -4.73094 -40.3117 -0.582392 Vertex 1584 -4.72778 -44.9304 1.97401 Vertex 1585 -4.72543 -45.271 1.96986 Vertex 1586 -4.70385 -44.3783 1.44491 Vertex 1587 -4.70377 5.38122 -4.37494 Vertex 1588 -4.68918 13.0009 1.20876 Vertex 1589 -4.68699 -40.5613 -0.806952 Vertex 1590 -4.68298 -39.838 -1.11674 Vertex 1591 -4.67837 1.50848 3.71893 Vertex 1592 -4.67733 2.40024 3.90997 Vertex 1593 -4.66635 -26.8989 -0.309795 Vertex 1594 -4.66416 -35.0191 -6.12998 Vertex 1595 -4.6581 -45.0271 1.4287 Vertex 1596 -4.65329 -41.4931 0.595577 Vertex 1597 -4.64987 -26.399 -0.576924 Vertex 1598 -4.63903 -40.0876 -1.3413 Vertex 1599 -4.63256 11.9667 2.40584 Vertex 1600 -4.62103 14.3687 -3.97251 Vertex 1601 -4.62089 -45.271 -0.75666 Vertex 1602 -4.6084 -26.5058 -0.367619 Vertex 1603 -4.60536 -2.25202 2.72245 Vertex 1604 -4.60536 -0.834022 2.72247 Vertex 1605 -4.60536 0.583976 2.72249 Vertex 1606 -4.58554 -37.8152 -5.88243 Vertex 1607 -4.58375 -38.6912 -5.88253 Vertex 1608 -4.58172 -43.1962 2.11899 Vertex 1609 -4.57663 -6.32902 3.04433 Vertex 1610 -4.54862 -33.7304 -6.32419 Vertex 1611 -4.5456 -40.072 -5.91457 Vertex 1612 -4.53481 -33.5226 -6.19712 Vertex 1613 -4.53096 -44.2737 2.12728 Vertex 1614 -4.51694 -45.027 2.12598 Vertex 1615 -4.50814 -40.1085 -5.58813 Vertex 1616 -4.50055 14.3583 -3.76364 Vertex 1617 -4.47985 -43.2609 0.242264 Vertex 1618 -4.46877 12.058 2.31527 Vertex 1619 -4.467 -45.0273 -6.14099 Vertex 1620 -4.44992 -44.4206 -0.710606 Vertex 1621 -4.44434 -45.027 -0.723774 Vertex 1622 -4.4437 -45.2711 -5.97899 Vertex 1623 -4.44197 -40.9603 -5.99738 Vertex 1624 -4.44005 -41.2177 0.152154 Vertex 1625 -4.43405 -3.68358 2.52432 Vertex 1626 -4.43305 -34.0951 -6.17119 Vertex 1627 -4.41288 -3.66993 -3.30975 Vertex 1628 -4.40451 -40.9968 -5.67094 Vertex 1629 -4.40082 -42.2893 0.277072 Vertex 1630 -4.38725 -0.833926 -3.77448 Vertex 1631 -4.38725 0.584073 -3.77446 Vertex 1632 -4.37255 -44.3802 -6.14642 Vertex 1633 -4.35581 -3.66993 -3.79357 Vertex 1634 -4.35581 -2.25193 -3.79355 Vertex 1635 -4.34243 -3.67003 2.86751 Vertex 1636 -4.33972 14.0406 -3.75157 Vertex 1637 -4.33952 -40.6304 -0.889129 Vertex 1638 -4.33316 -41.9992 -6.18445 Vertex 1639 -4.30907 11.8225 2.11012 Vertex 1640 -4.29247 -34.2941 -1.83348 Vertex 1641 -4.28453 -43.2549 -6.22179 Vertex 1642 -4.24468 -34.3057 -4.9717 Vertex 1643 -4.18597 -2.25193 -3.50615 Vertex 1644 -4.18597 -0.833929 -3.50613 Vertex 1645 -4.18597 0.584069 -3.50611 Vertex 1646 -4.12434 10.3749 -5.79659 Vertex 1647 -4.10725 -3.71535 -3.40232 Vertex 1648 -4.10425 -40.5012 -0.68469 Vertex 1649 -4.10167 -40.0803 -1.4952 Vertex 1650 -4.09808 -43.3268 -0.650871 Vertex 1651 -4.06881 -27.5118 -5.72395 Vertex 1652 -4.02625 -27.5494 -5.97562 Vertex 1653 -3.99554 -30.3357 -6.55192 Vertex 1654 -3.96711 12.9869 -4.95245 Vertex 1655 -3.96221 -42.0763 -0.571919 Vertex 1656 -3.96043 -37.8157 -1.41258 Vertex 1657 -3.95864 -38.6917 -1.41269 Vertex 1658 -3.95429 -25.9126 -5.9099 Vertex 1659 -3.93498 -25.6428 -5.94127 Vertex 1660 -3.93069 -35.0198 -1.15539 Vertex 1661 -3.91627 -26.0134 -6.15422 Vertex 1662 -3.90599 -33.5211 -1.25683 Vertex 1663 -3.90467 -3.66993 -3.61716 Vertex 1664 -3.88568 -25.6172 -6.19991 Vertex 1665 -3.87485 -27.3481 -0.748987 Vertex 1666 -3.8664 -39.9511 -1.29076 Vertex 1667 -3.86232 -32.2322 -6.74542 Vertex 1668 -3.85659 -26.8085 -0.961159 Vertex 1669 -3.84974 -41.0249 -1.62188 Vertex 1670 -3.84438 9.77242 3.41274 Vertex 1671 -3.84228 9.94833 3.54526 Vertex 1672 -3.83364 13.0827 -4.93915 Vertex 1673 -3.83353 -33.539 -6.08826 Vertex 1674 -3.83012 -24.1785 -6.11155 Vertex 1675 -3.8273 -32.2118 -1.24345 Vertex 1676 -3.82627 -26.904 -0.758538 Vertex 1677 -3.81164 4.70619 -4.6926 Vertex 1678 -3.8108 -23.9087 -6.14291 Vertex 1679 -3.79003 -22.2879 -0.503097 Vertex 1680 -3.78988 -24.2794 -6.35547 Vertex 1681 -3.77203 -30.3158 -1.16317 Vertex 1682 -3.76544 -13.7685 -6.78005 Vertex 1683 -3.75965 -23.8831 -6.40122 Vertex 1684 -3.72002 -23.8888 -0.712648 Vertex 1685 -3.71962 -45.0361 -2.35503 Vertex 1686 -3.71774 -40.0178 -5.11773 Vertex 1687 -3.70822 -24.1585 -0.747953 Vertex 1688 -3.70323 10.189 3.55257 Vertex 1689 -3.68882 4.7136 -4.75333 Vertex 1690 -3.67462 -22.311 -0.27351 Vertex 1691 -3.67398 -22.299 -6.45561 Vertex 1692 -3.67097 5.38223 -4.87526 Vertex 1693 -3.6505 8.03122 -5.81563 Vertex 1694 -3.6441 -25.6244 -0.939852 Vertex 1695 -3.63231 -25.8941 -0.975157 Vertex 1696 -3.62736 -22.3367 -6.70651 Vertex 1697 -3.61705 2.41446 -4.51005 Vertex 1698 -3.61548 3.46973 -4.56373 Vertex 1699 -3.61447 -40.8957 -1.41745 Vertex 1700 -3.6139 4.525 -4.61741 Vertex 1701 -3.60737 -23.8486 -0.474778 Vertex 1702 -3.60217 -40.4421 -2.18242 Vertex 1703 -3.59631 2.28685 4.8478 Vertex 1704 -3.59248 -21.6048 -7.39691 Vertex 1705 -3.59208 -33.5417 -5.98628 Vertex 1706 -3.57885 13.295 -4.76504 Vertex 1707 -3.57421 -40.9441 -5.20574 Vertex 1708 -3.56937 -44.3406 -2.3818 Vertex 1709 -3.56584 -34.2877 -2.43025 Vertex 1710 -3.5623 -27.495 -1.18471 Vertex 1711 -3.54276 -24.2452 -0.55738 Vertex 1712 -3.54125 -41.3936 -2.08358 Vertex 1713 -3.53528 10.2807 3.43794 Vertex 1714 -3.53395 19.9427 -0.846049 Vertex 1715 -3.53257 19.9792 -0.681118 Vertex 1716 -3.53173 19.9732 -0.529949 Vertex 1717 -3.53144 19.9245 -0.392541 Vertex 1718 -3.52384 -25.9814 -0.749304 Vertex 1719 -3.52254 19.8646 -0.993864 Vertex 1720 -3.52162 1.25598 4.70198 Vertex 1721 -3.50711 19.8414 -0.28179 Vertex 1722 -3.50641 19.8286 -0.459689 Vertex 1723 -3.50171 20.0627 -0.504071 Vertex 1724 -3.50083 20.0782 -0.680108 Vertex 1725 -3.50044 19.8507 -0.567278 Vertex 1726 -3.49891 -34.0953 -5.99427 Vertex 1727 -3.49834 19.7451 -1.12457 Vertex 1728 -3.49668 -33.7243 -6.11202 Vertex 1729 -3.4966 19.8468 -0.68719 Vertex 1730 -3.49492 19.817 -0.819425 Vertex 1731 -3.49356 19.7715 -0.370696 Vertex 1732 -3.49287 -45.271 -2.27047 Vertex 1733 -3.48872 19.9889 -0.336631 Vertex 1734 -3.4861 20.0354 -0.86474 Vertex 1735 -3.48585 19.7593 -0.933209 Vertex 1736 -3.48418 -25.5847 -0.732716 Vertex 1737 -3.48275 -44.7921 -2.35031 Vertex 1738 -3.47549 -37.8152 -5.27795 Vertex 1739 -3.4737 -38.6912 -5.27822 Vertex 1740 -3.47123 19.9464 -1.03603 Vertex 1741 -3.4695 -6.42517 3.66297 Vertex 1742 -3.46941 19.6737 -1.02854 Vertex 1743 -3.46918 1.49115 -4.4775 Vertex 1744 -3.46772 19.59 -1.21309 Vertex 1745 -3.46189 19.6792 -0.300301 Vertex 1746 -3.45873 19.7236 -0.197696 Vertex 1747 -3.4583 19.8838 -0.206647 Vertex 1748 -3.45685 -12.2219 -6.38517 Vertex 1749 -3.4566 -27.5189 -0.950573 Vertex 1750 -3.45625 19.8111 -1.19399 Vertex 1751 -3.45601 3.40753 4.78684 Vertex 1752 -3.45335 10.0753 2.95122 Vertex 1753 -3.44734 19.5442 -1.09907 Vertex 1754 -3.44686 19.7339 -0.431751 Vertex 1755 -3.44417 -21.5941 -7.10822 Vertex 1756 -3.43405 19.77 -0.584154 Vertex 1757 -3.43376 19.762 -0.68321 Vertex 1758 -3.43317 19.7583 -0.498676 Vertex 1759 -3.43252 19.6357 -1.2974 Vertex 1760 -3.43229 19.7344 -0.795844 Vertex 1761 -3.43067 19.3994 -1.25943 Vertex 1762 -3.42505 -39.9594 -5.26247 Vertex 1763 -3.42503 19.6876 -0.886943 Vertex 1764 -3.42428 19.5706 -0.268911 Vertex 1765 -3.42355 19.6544 -0.368205 Vertex 1766 -3.41963 19.3706 -1.14479 Vertex 1767 -3.41702 19.5928 -0.157033 Vertex 1768 -3.41337 -34.3175 -4.1362 Vertex 1769 -3.41196 19.6215 -0.956503 Vertex 1770 -3.41043 19.7473 -0.114119 Vertex 1771 -3.41036 20.1192 -0.489645 Vertex 1772 -3.40917 0.827907 -4.44123 Vertex 1773 -3.40233 20.1812 -0.468777 Vertex 1774 -3.40174 -41.9441 -2.39168 Vertex 1775 -3.40139 20.1436 -0.684159 Vertex 1776 -3.40004 19.4204 -1.34626 Vertex 1777 -3.39963 3.4923 -4.51652 Vertex 1778 -3.39909 19.5103 -1.01404 Vertex 1779 -3.39569 19.1802 -1.25948 Vertex 1780 -3.39269 -43.2833 -2.35691 Vertex 1781 -3.38825 -19.9735 -8.16416 Vertex 1782 -3.38642 19.354 -1.05955 Vertex 1783 -3.38636 19.1789 -1.15149 Vertex 1784 -3.38301 20.5772 0.01634 Vertex 1785 -3.38231 3.46415 -4.7463 Vertex 1786 -3.38198 19.449 -0.159801 Vertex 1787 -3.38072 19.4455 -0.276528 Vertex 1788 -3.3793 20.1695 -0.505619 Vertex 1789 -3.37826 20.0217 -0.291958 Vertex 1790 -3.37617 19.5784 -0.362015 Vertex 1791 -3.37575 19.3079 -0.838801 Vertex 1792 -3.37404 13.2127 -4.47829 Vertex 1793 -3.3707 19.6031 -0.069744 Vertex 1794 -3.36974 20.6943 -0.262411 Vertex 1795 -3.36948 -7.48904 -5.39941 Vertex 1796 -3.36882 19.1776 -1.34473 Vertex 1797 -3.36829 19.2524 -0.858272 Vertex 1798 -3.3669 -40.3129 -1.97798 Vertex 1799 -3.36621 19.184 -0.896428 Vertex 1800 -3.36593 20.3819 0.265248 Vertex 1801 -3.36424 4.69447 4.91997 Vertex 1802 -3.36297 19.4072 -0.77675 Vertex 1803 -3.36276 18.9325 -1.21324 Vertex 1804 -3.36247 20.2371 -0.514588 Vertex 1805 -3.36127 19.3175 -0.89228 Vertex 1806 -3.36124 19.1818 -1.07244 Vertex 1807 -3.36062 13.1817 -4.29178 Vertex 1808 -3.35924 -37.8189 -1.99606 Vertex 1809 -3.35745 -38.6949 -1.99616 Vertex 1810 -3.35671 10.0236 3.24507 Vertex 1811 -3.35512 20.7659 -0.57664 Vertex 1812 -3.35501 19.1837 -0.923355 Vertex 1813 -3.35486 19.3589 -0.73084 Vertex 1814 -3.3531 0.63495 4.33226 Vertex 1815 -3.35137 20.0952 -0.875498 Vertex 1816 -3.34826 19.4675 -0.724485 Vertex 1817 -3.34802 20.4945 -0.568 Vertex 1818 -3.34778 20.4735 -0.320456 Vertex 1819 -3.34754 18.9691 -1.11917 Vertex 1820 -3.3474 19.3034 -0.75031 Vertex 1821 -3.34714 19.8988 -0.145266 Vertex 1822 -3.34708 19.4244 -0.834293 Vertex 1823 -3.34608 19.6949 -0.775307 Vertex 1824 -3.34418 19.1598 0.524635 Vertex 1825 -3.34404 19.7249 -0.669176 Vertex 1826 -3.34387 19.3142 -0.1896 Vertex 1827 -3.34313 19.8717 -1.23681 Vertex 1828 -3.34174 19.6814 -1.352 Vertex 1829 -3.34076 20.4686 -0.848672 Vertex 1830 -3.34006 19.6494 -0.855067 Vertex 1831 -3.34003 20.4054 -0.106043 Vertex 1832 -3.33952 20.673 0.089084 Vertex 1833 -3.33944 20.2253 -0.55143 Vertex 1834 -3.33915 20.792 -0.926346 Vertex 1835 -3.33912 19.4511 -0.073519 Vertex 1836 -3.33906 19.0298 -0.902933 Vertex 1837 -3.33883 18.9074 -1.29281 Vertex 1838 -3.33861 19.426 -0.677616 Vertex 1839 -3.33803 19.3354 -0.305583 Vertex 1840 -3.33765 20.0603 -0.292809 Vertex 1841 -3.3358 19.3792 0.541624 Vertex 1842 -3.33556 19.5091 -0.782048 Vertex 1843 -3.3355 18.998 0.562747 Vertex 1844 -3.33314 19.185 -0.854631 Vertex 1845 -3.33302 19.4688 -0.364806 Vertex 1846 -3.33259 19.7311 -0.580576 Vertex 1847 -3.33195 20.0045 -1.05971 Vertex 1848 -3.33105 19.1166 -0.892787 Vertex 1849 -3.33103 19.3496 -1.0037 Vertex 1850 -3.33037 7.39789 4.98044 Vertex 1851 -3.33005 19.538 -0.676623 Vertex 1852 -3.32832 19.0231 -0.92752 Vertex 1853 -3.32775 19.4336 -1.40529 Vertex 1854 -3.3267 19.5716 -0.735543 Vertex 1855 -3.32598 19.5884 -0.908457 Vertex 1856 -3.32496 18.7289 -1.14703 Vertex 1857 -3.32357 18.9938 -1.0527 Vertex 1858 -3.32297 19.4885 -0.958001 Vertex 1859 -3.32271 20.279 0.053825 Vertex 1860 -3.32264 19.3375 -0.947944 Vertex 1861 -3.3224 19.6096 0.561051 Vertex 1862 -3.32032 19.189 -1.02231 Vertex 1863 -3.32008 -35.0194 -5.7129 Vertex 1864 -3.31995 20.4445 0.386052 Vertex 1865 -3.31907 19.6195 -0.689574 Vertex 1866 -3.3185 20.1085 0.484315 Vertex 1867 -3.31824 19.1896 -0.972614 Vertex 1868 -3.31734 19.51 -0.62784 Vertex 1869 -3.31699 19.7504 -0.049569 Vertex 1870 -3.31649 20.8115 -0.223744 Vertex 1871 -3.31571 4.52821 4.72588 Vertex 1872 -3.31542 19.6863 -0.449782 Vertex 1873 -3.31291 20.1997 -0.406052 Vertex 1874 -3.3129 19.1524 0.705567 Vertex 1875 -3.31172 19.7136 -0.509505 Vertex 1876 -3.31117 19.6079 -0.634217 Vertex 1877 -3.31047 -45.271 -5.4912 Vertex 1878 -3.31011 20.3775 -1.12855 Vertex 1879 -3.30975 18.8939 0.655959 Vertex 1880 -3.30904 -45.0363 -3.47801 Vertex 1881 -3.30747 19.6573 -0.759032 Vertex 1882 -3.30729 19.6107 -0.8046 Vertex 1883 -3.30647 18.7891 -1.06206 Vertex 1884 -3.30642 19.3036 -0.108023 Vertex 1885 -3.30575 19.1711 -1.40725 Vertex 1886 -3.30563 19.4598 -0.898085 Vertex 1887 -3.30403 17.7149 0.266997 Vertex 1888 -3.30399 19.8511 0.582915 Vertex 1889 -3.30381 19.0042 0.752311 Vertex 1890 -3.30368 19.6885 -0.656154 Vertex 1891 -3.30288 18.8933 -0.894838 Vertex 1892 -3.30268 19.1884 -0.246428 Vertex 1893 -3.30051 19.5509 -0.850304 Vertex 1894 -3.29958 18.6893 -1.22236 Vertex 1895 -3.29622 17.7784 0.390975 Vertex 1896 -3.2962 19.2402 -0.356078 Vertex 1897 -3.29581 20.0943 0.159149 Vertex 1898 -3.29565 20.9068 -0.567151 Vertex 1899 -3.29538 19.358 0.730354 Vertex 1900 -3.29496 18.8487 -1.02179 Vertex 1901 -3.29305 -28.3492 -1.17067 Vertex 1902 -3.29278 19.5869 -0.580943 Vertex 1903 -3.29243 19.0163 -0.9721 Vertex 1904 -3.29215 -9.32543 3.74982 Vertex 1905 -3.29163 19.6771 -0.597264 Vertex 1906 -3.29141 19.3723 -0.390593 Vertex 1907 -3.29085 19.0065 -1.01382 Vertex 1908 -3.29058 -9.97451 -6.16875 Vertex 1909 -3.28659 19.2894 -0.733335 Vertex 1910 -3.28534 19.6015 -0.007041 Vertex 1911 -3.28301 20.7208 -1.26632 Vertex 1912 -3.28227 18.5694 -1.06084 Vertex 1913 -3.28199 19.3934 -0.621834 Vertex 1914 -3.28152 -40.8857 -5.35049 Vertex 1915 -3.27945 20.2049 -0.651923 Vertex 1916 -3.27872 18.7942 -0.825307 Vertex 1917 -3.27859 19.8951 0.213979 Vertex 1918 -3.27743 17.924 0.466778 Vertex 1919 -3.27702 20.959 -0.941135 Vertex 1920 -3.27602 18.737 0.749067 Vertex 1921 -3.27573 18.8938 -1.35787 Vertex 1922 -3.27528 -27.7529 -1.31757 Vertex 1923 -3.27405 20.3417 -0.560044 Vertex 1924 -3.27332 19.4848 -0.570497 Vertex 1925 -3.2727 19.6163 -0.436342 Vertex 1926 -3.27259 19.1606 -0.173256 Vertex 1927 -3.27233 19.1711 -0.837656 Vertex 1928 -3.27175 20.2887 -0.800189 Vertex 1929 -3.27163 19.5872 0.758989 Vertex 1930 -3.27103 19.6813 0.218313 Vertex 1931 -3.27049 18.8595 -0.944758 Vertex 1932 -3.26852 19.5575 -0.540063 Vertex 1933 -3.26813 18.9132 0.870588 Vertex 1934 -3.26718 19.4405 0.222538 Vertex 1935 -3.26702 19.1725 0.226651 Vertex 1936 -3.26634 18.8642 -0.988546 Vertex 1937 -3.26608 20.3483 -0.347785 Vertex 1938 -3.26492 19.6565 -0.536926 Vertex 1939 -3.2634 18.9747 0.248166 Vertex 1940 -3.26315 18.6391 -0.98018 Vertex 1941 -3.26264 18.4369 -0.997359 Vertex 1942 -3.26057 18.148 -0.76292 Vertex 1943 -3.26029 18.0805 -0.543494 Vertex 1944 -3.25985 20.1018 -0.226386 Vertex 1945 -3.25914 17.9817 0.180115 Vertex 1946 -3.25808 18.3157 -0.896969 Vertex 1947 -3.25803 18.0291 -0.702485 Vertex 1948 -3.25776 20.1259 0.66716 Vertex 1949 -3.25743 18.1049 0.606018 Vertex 1950 -3.25733 -44.3833 -2.26356 Vertex 1951 -3.25732 -3.67004 3.46626 Vertex 1952 -3.2563 18.8468 0.287083 Vertex 1953 -3.25607 20.2211 -1.40764 Vertex 1954 -3.256 -45.027 -2.26575 Vertex 1955 -3.25578 19.092 -0.303671 Vertex 1956 -3.25524 18.6909 -0.749573 Vertex 1957 -3.25498 20.1885 -1.04436 Vertex 1958 -3.2546 18.2329 -0.732831 Vertex 1959 -3.25452 19.0126 -0.883095 Vertex 1960 -3.25432 18.1654 -0.513402 Vertex 1961 -3.25322 -34.289 -3.32258 Vertex 1962 -3.25278 18.3215 -0.844462 Vertex 1963 -3.25243 18.7192 -0.890591 Vertex 1964 -3.25221 -27.8381 -1.14416 Vertex 1965 -3.25217 19.4519 -0.01768 Vertex 1966 -3.2521 19.3208 -0.677197 Vertex 1967 -3.25136 19.289 -0.439375 Vertex 1968 -3.25132 18.7033 -0.94206 Vertex 1969 -3.25106 18.5234 -1.13337 Vertex 1970 -3.25101 19.8722 -1.26568 Vertex 1971 -3.25073 19.1611 -0.407207 Vertex 1972 -3.25061 17.6113 0.31685 Vertex 1973 -3.24785 20.3084 -0.163413 Vertex 1974 -3.2475 19.067 -0.231317 Vertex 1975 -3.24729 18.9352 -0.847878 Vertex 1976 -3.24696 18.027 -0.46577 Vertex 1977 -3.24692 18.7059 0.331665 Vertex 1978 -3.24686 19.0948 -0.870731 Vertex 1979 -3.24669 18.3338 -0.761522 Vertex 1980 -3.24656 -21.4863 0.859684 Vertex 1981 -3.24609 18.0934 0.211268 Vertex 1982 -3.24469 17.9756 -0.624762 Vertex 1983 -3.24321 18.5113 -0.918858 Vertex 1984 -3.24165 19.8402 0.791473 Vertex 1985 -3.24146 18.46 -0.787334 Vertex 1986 -3.2411 17.6776 0.455791 Vertex 1987 -3.24078 18.6121 -0.823511 Vertex 1988 -3.23893 18.2522 0.72887 Vertex 1989 -3.23886 19.5187 -0.424636 Vertex 1990 -3.23792 18.517 -0.866352 Vertex 1991 -3.23756 18.2067 0.261209 Vertex 1992 -3.23752 18.4455 -0.722854 Vertex 1993 -3.23657 19.6928 -1.34058 Vertex 1994 -3.2365 19.6273 -0.492515 Vertex 1995 -3.23592 12.9219 -5.0927 Vertex 1996 -3.23554 18.5382 -0.743518 Vertex 1997 -3.23526 18.5521 0.381914 Vertex 1998 -3.23431 18.5274 0.842066 Vertex 1999 -3.23413 18.3686 -0.582123 Vertex 2000 -3.23318 -20.0215 1.78738 Vertex 2001 -3.23244 18.5834 -0.667633 Vertex 2002 -3.23233 18.3163 0.316394 Vertex 2003 -3.23115 19.4294 -1.38958 Vertex 2004 -3.23082 18.1486 -0.399648 Vertex 2005 -3.2304 18.4222 0.376823 Vertex 2006 -3.23032 18.6704 -1.28805 Vertex 2007 -3.2301 20.2183 -0.046999 Vertex 2008 -3.22858 20.1523 -0.853471 Vertex 2009 -3.22837 18.4427 -0.629277 Vertex 2010 -3.22673 20.0038 -1.07902 Vertex 2011 -3.22661 17.9887 -0.775618 Vertex 2012 -3.2257 19.3037 -0.060853 Vertex 2013 -3.22517 18.8626 -0.765079 Vertex 2014 -3.22462 18.3757 -1.03901 Vertex 2015 -3.22407 -41.3635 -1.97742 Vertex 2016 -3.22373 20.0411 -1.29254 Vertex 2017 -3.22348 18.5006 -0.627533 Vertex 2018 -3.22338 17.8191 0.617218 Vertex 2019 -3.22269 6.2201 5.13146 Vertex 2020 -3.22244 -19.9758 -7.85713 Vertex 2021 -3.22195 18.3658 0.835335 Vertex 2022 -3.22156 18.7472 0.985109 Vertex 2023 -3.22092 18.1171 -0.85148 Vertex 2024 -3.22026 18.2461 -0.939277 Vertex 2025 -3.21729 -41.1654 -3.02543 Vertex 2026 -3.21461 19.1638 -1.3917 Vertex 2027 -3.21291 19.9002 -0.072314 Vertex 2028 -3.21285 20.078 0.001454 Vertex 2029 -3.21064 18.3519 -0.468369 Vertex 2030 -3.20956 20.6929 0.112191 Vertex 2031 -3.20906 17.7053 0.200731 Vertex 2032 -3.20811 19.216 -0.497212 Vertex 2033 -3.20806 -0.834043 3.86842 Vertex 2034 -3.20806 0.583956 3.86844 Vertex 2035 -3.20736 18.0362 -0.352014 Vertex 2036 -3.20731 19.5357 -0.473559 Vertex 2037 -3.20723 17.934 -0.452032 Vertex 2038 -3.20594 19.1567 -0.136562 Vertex 2039 -3.20401 19.4249 -0.444627 Vertex 2040 -3.20399 20.0291 -0.111514 Vertex 2041 -3.20382 17.9361 -0.626065 Vertex 2042 -3.20358 18.7692 -0.68319 Vertex 2043 -3.20317 19.025 -0.361331 Vertex 2044 -3.20227 -44.3414 -3.45309 Vertex 2045 -3.20162 19.0982 -0.458968 Vertex 2046 -3.19832 17.9181 -0.685209 Vertex 2047 -3.19798 19.4625 -0.504596 Vertex 2048 -3.19797 -35.0239 -1.79187 Vertex 2049 -3.19744 18.0359 0.80113 Vertex 2050 -3.19365 19.9083 0.03575 Vertex 2051 -3.19313 18.998 -0.291927 Vertex 2052 -3.19121 19.7353 0.007712 Vertex 2053 -3.18801 20.8248 -0.204453 Vertex 2054 -3.18787 19.0612 -0.199863 Vertex 2055 -3.18714 18.4237 -0.448687 Vertex 2056 -3.18696 18.896 -1.34692 Vertex 2057 -3.18671 20.5523 -1.59655 Vertex 2058 -3.18535 2.45959 -4.41563 Vertex 2059 -3.18476 20.4668 0.416238 Vertex 2060 -3.18438 -45.0273 -5.58524 Vertex 2061 -3.18394 18.5499 -0.529639 Vertex 2062 -3.18252 18.6549 -0.602216 Vertex 2063 -3.18204 18.5206 -0.488304 Vertex 2064 -3.17839 19.3697 -0.55714 Vertex 2065 -3.1782 20.2835 -0.476055 Vertex 2066 -3.17651 -17.7867 -7.41635 Vertex 2067 -3.17597 18.5818 -0.551032 Vertex 2068 -3.17509 19.9639 -1.64774 Vertex 2069 -3.17316 19.1503 0.769449 Vertex 2070 -3.17251 19.7092 0.055891 Vertex 2071 -3.1722 18.2046 0.957628 Vertex 2072 -3.1715 19.8073 -1.48368 Vertex 2073 -3.17036 17.9411 -0.343169 Vertex 2074 -3.16961 20.9171 -0.53953 Vertex 2075 -3.16951 18.5009 -1.19777 Vertex 2076 -3.16834 18.993 0.816863 Vertex 2077 -3.16818 19.335 -0.49632 Vertex 2078 -3.16668 19.5649 0.044491 Vertex 2079 -3.16636 17.8945 -0.453336 Vertex 2080 -3.16616 17.9344 0.125657 Vertex 2081 -3.16602 5.30195 5.10544 Vertex 2082 -3.16509 -40.188 -3.96481 Vertex 2083 -3.16443 17.9025 -0.795744 Vertex 2084 -3.16439 20.0504 -1.02667 Vertex 2085 -3.16409 18.5059 1.09587 Vertex 2086 -3.16163 19.1532 -0.564104 Vertex 2087 -3.16062 18.1659 -0.277815 Vertex 2088 -3.15976 18.571 0.142244 Vertex 2089 -3.15934 19.4677 0.073503 Vertex 2090 -3.15831 18.4531 0.133459 Vertex 2091 -3.15765 13.124 -4.85645 Vertex 2092 -3.15719 18.7013 0.122821 Vertex 2093 -3.15689 18.9372 -0.267693 Vertex 2094 -3.15481 18.8353 0.108866 Vertex 2095 -3.15464 18.1562 0.074372 Vertex 2096 -3.15438 20.9696 -0.893036 Vertex 2097 -3.15413 19.1837 0.08859 Vertex 2098 -3.15385 -6.42699 3.65097 Vertex 2099 -3.15284 18.3476 0.096469 Vertex 2100 -3.15262 18.9729 0.100377 Vertex 2101 -3.15162 18.2487 0.076774 Vertex 2102 -3.15071 2.4033 -4.8752 Vertex 2103 -3.14764 18.3251 1.08671 Vertex 2104 -3.14592 19.3769 0.788728 Vertex 2105 -3.14439 18.7992 -0.330651 Vertex 2106 -3.14438 17.8223 -0.689909 Vertex 2107 -3.14415 18.679 -1.2805 Vertex 2108 -3.14368 18.7249 -0.307003 Vertex 2109 -3.14362 18.87 -0.361994 Vertex 2110 -3.14229 18.05 -0.902461 Vertex 2111 -3.142 18.9441 -0.422569 Vertex 2112 -3.1419 21.1066 -1.38976 Vertex 2113 -3.14027 20.2692 -0.363819 Vertex 2114 -3.13989 18.0515 -0.235074 Vertex 2115 -3.13955 -3.67004 3.90811 Vertex 2116 -3.13955 -2.25204 3.90813 Vertex 2117 -3.13953 19.0215 -0.512374 Vertex 2118 -3.13932 19.3888 0.038026 Vertex 2119 -3.13713 18.3431 -1.10343 Vertex 2120 -3.13713 18.2378 -0.258133 Vertex 2121 -3.13682 18.4361 -0.32092 Vertex 2122 -3.13502 20.2618 -0.583401 Vertex 2123 -3.13501 20.7112 0.131225 Vertex 2124 -3.13436 19.2965 -0.613106 Vertex 2125 -3.13321 20.3074 -0.552774 Vertex 2126 -3.13319 18.1969 -1.00502 Vertex 2127 -3.13215 19.8485 -1.19474 Vertex 2128 -3.13213 20.2523 -0.780897 Vertex 2129 -3.13172 18.5329 -0.360538 Vertex 2130 -3.13146 18.9049 0.930968 Vertex 2131 -3.12966 21.0254 -1.58801 Vertex 2132 -3.12791 19.2566 -0.573691 Vertex 2133 -3.12721 -33.5402 -5.6836 Vertex 2134 -3.12541 19.0865 -0.592485 Vertex 2135 -3.12505 19.1965 -0.79037 Vertex 2136 -3.12466 20.3187 -0.344397 Vertex 2137 -3.12401 18.9868 -0.147434 Vertex 2138 -3.12241 18.8407 -0.209509 Vertex 2139 -3.12214 18.584 -0.315212 Vertex 2140 -3.12112 19.2284 0.004268 Vertex 2141 -3.11872 19.6142 0.812128 Vertex 2142 -3.11774 20.2068 -0.798657 Vertex 2143 -3.11763 20.1539 -1.01373 Vertex 2144 -3.11703 19.6697 -1.26314 Vertex 2145 -3.11672 18.6252 -0.416603 Vertex 2146 -3.11646 17.5608 0.317309 Vertex 2147 -3.1162 13.1539 -4.59755 Vertex 2148 -3.11588 20.7278 0.146185 Vertex 2149 -3.11564 -44.7921 -3.4216 Vertex 2150 -3.11535 20.84 -0.18779 Vertex 2151 -3.11359 20.1466 0.707685 Vertex 2152 -3.1134 18.6554 -0.462611 Vertex 2153 -3.11325 17.8763 -0.352182 Vertex 2154 -3.11282 -44.4287 -5.5505 Vertex 2155 -3.11209 19.0839 -0.05678 Vertex 2156 -3.11047 20.2173 -0.176757 Vertex 2157 -3.11023 19.4077 -1.29914 Vertex 2158 -3.11 21.4149 -0.208897 Vertex 2159 -3.10835 17.9522 -0.236016 Vertex 2160 -3.10714 18.6763 -0.371279 Vertex 2161 -3.10651 20.4864 0.438927 Vertex 2162 -3.10647 20.2862 -0.155766 Vertex 2163 -3.10619 19.0521 -0.842463 Vertex 2164 -3.10371 18.9852 -0.803877 Vertex 2165 -3.10355 17.6325 0.486175 Vertex 2166 -3.10299 20.9083 -0.347762 Vertex 2167 -3.10291 1.53595 -4.34686 Vertex 2168 -3.10209 21.3375 -0.113226 Vertex 2169 -3.10022 18.7385 -0.396281 Vertex 2170 -3.10017 17.6022 0.205911 Vertex 2171 -3.09923 19.1249 -0.825664 Vertex 2172 -3.09889 20.9321 -0.521924 Vertex 2173 -3.09853 20.8571 -0.173755 Vertex 2174 -3.09828 19.487 -1.61777 Vertex 2175 -3.09712 18.7217 -0.184613 Vertex 2176 -3.09539 19.1559 -1.29808 Vertex 2177 -3.09507 21.4832 -0.392774 Vertex 2178 -3.09498 18.689 -0.493349 Vertex 2179 -3.09352 -21.6238 -7.0905 Vertex 2180 -3.09316 20.8161 0.22009 Vertex 2181 -3.0918 18.9242 -0.709901 Vertex 2182 -3.09159 21.0947 -0.295767 Vertex 2183 -3.09158 19.8624 0.839648 Vertex 2184 -3.09056 19.2278 -0.734232 Vertex 2185 -3.09043 19.1536 0.814444 Vertex 2186 -3.0897 20.0123 -1.25126 Vertex 2187 -3.08931 20.9741 -0.086473 Vertex 2188 -3.08885 -41.932 -2.26927 Vertex 2189 -3.08879 21.067 -0.258426 Vertex 2190 -3.08812 18.9949 0.861272 Vertex 2191 -3.08811 20.1998 -0.037223 Vertex 2192 -3.0877 21.1912 0.074053 Vertex 2193 -3.08757 20.9285 -0.342364 Vertex 2194 -3.08743 20.1078 -1.00783 Vertex 2195 -3.08732 20.9256 -0.334188 Vertex 2196 -3.08689 19.8993 -1.17151 Vertex 2197 -3.08674 -11.2865 3.18666 Vertex 2198 -3.08617 18.5127 -1.19242 Vertex 2199 -3.08583 18.8468 -0.624364 Vertex 2200 -3.08579 18.7528 -0.547267 Vertex 2201 -3.08547 12.6564 -5.16987 Vertex 2202 -3.08536 20.9846 -0.863001 Vertex 2203 -3.08522 20.5033 0.454121 Vertex 2204 -3.0842 18.7851 -0.430336 Vertex 2205 -3.08393 17.7788 0.662587 Vertex 2206 -3.08391 17.7858 -0.657132 Vertex 2207 -3.08354 18.7364 1.03979 Vertex 2208 -3.08347 20.952 -0.514334 Vertex 2209 -3.08346 17.8689 -0.470985 Vertex 2210 -3.08322 19.1899 -0.676738 Vertex 2211 -3.08229 -45.2711 -3.39345 Vertex 2212 -3.0822 21.1357 -0.471285 Vertex 2213 -3.081 18.5802 -0.193003 Vertex 2214 -3.08033 -43.2994 -2.23312 Vertex 2215 -3.07796 17.8509 -0.530128 Vertex 2216 -3.07499 21.0171 -1.0373 Vertex 2217 -3.07251 18.9141 -1.25996 Vertex 2218 -3.07242 18.4207 -0.178118 Vertex 2219 -3.07229 18.8492 -0.487384 Vertex 2220 -3.07138 18.243 -0.139958 Vertex 2221 -3.06995 21.0038 -0.851028 Vertex 2222 -3.06961 20.0594 0.01123 Vertex 2223 -3.06827 17.8443 -0.745797 Vertex 2224 -3.06719 19.6061 -1.84885 Vertex 2225 -3.06685 20.9759 0.35294 Vertex 2226 -3.06623 20.1677 -0.058187 Vertex 2227 -3.06468 19.1622 0.84055 Vertex 2228 -3.06448 18.9309 -0.567425 Vertex 2229 -3.06376 -0.833912 -4.30515 Vertex 2230 -3.06376 0.584086 -4.30513 Vertex 2231 -3.06315 19.0097 0.885542 Vertex 2232 -3.06121 -41.0922 -4.23682 Vertex 2233 -3.06059 21.1898 -0.784979 Vertex 2234 -3.05986 -41.9279 -5.5235 Vertex 2235 -3.05965 17.8762 -0.259146 Vertex 2236 -3.05958 21.0361 -1.02313 Vertex 2237 -3.05931 19.3858 0.83067 Vertex 2238 -3.05761 17.9996 0.846544 Vertex 2239 -3.0573 21.5425 -0.664855 Vertex 2240 -3.05645 21.0457 -1.0415 Vertex 2241 -3.05629 -15.6303 2.61602 Vertex 2242 -3.0556 19.8879 0.012211 Vertex 2243 -3.05553 18.1252 -0.101187 Vertex 2244 -3.05459 18.3524 -1.09866 Vertex 2245 -3.0526 21.7261 -0.005925 Vertex 2246 -3.05243 20.264 -1.91928 Vertex 2247 -3.0524 18.9096 0.971156 Vertex 2248 -3.05217 20.5803 0.5174 Vertex 2249 -3.04996 -3.66991 -4.3096 Vertex 2250 -3.04996 -2.25192 -4.30958 Vertex 2251 -3.04941 18.1979 -0.999199 Vertex 2252 -3.04918 19.8906 0.048231 Vertex 2253 -3.04862 21.6112 0.133394 Vertex 2254 -3.04788 19.1213 -0.7232 Vertex 2255 -3.04768 18.998 -0.642656 Vertex 2256 -3.0471 20.0274 -0.009733 Vertex 2257 -3.04555 17.491 0.22268 Vertex 2258 -3.04546 18.8461 1.51862 Vertex 2259 -3.04526 18.7078 1.69045 Vertex 2260 -3.04428 17.6561 0.178052 Vertex 2261 -3.04423 17.5233 0.321667 Vertex 2262 -3.04409 19.965 -1.21092 Vertex 2263 -3.04279 18.8948 1.54046 Vertex 2264 -3.04192 21.2211 -0.986897 Vertex 2265 -3.04164 19.7939 -1.4271 Vertex 2266 -3.04105 18.7151 -1.1997 Vertex 2267 -3.04006 -17.8602 -7.10841 Vertex 2268 -3.03847 19.1167 0.909688 Vertex 2269 -3.038 17.9734 -0.149976 Vertex 2270 -3.03605 17.8417 -0.379054 Vertex 2271 -3.03557 19.3847 0.85618 Vertex 2272 -3.03547 17.9849 -0.85095 Vertex 2273 -3.0352 17.8887 0.110841 Vertex 2274 -3.03429 18.8631 -0.032859 Vertex 2275 -3.03385 21.4336 0.329014 Vertex 2276 -3.03307 19.702 0.057723 Vertex 2277 -3.03226 17.4655 0.224608 Vertex 2278 -3.03212 18.1733 1.00267 Vertex 2279 -3.0312 21.8327 -0.212922 Vertex 2280 -3.03101 19.6235 0.851017 Vertex 2281 -3.03096 18.9274 0.991155 Vertex 2282 -3.03091 18.6264 1.62458 Vertex 2283 -3.03086 19.0421 -0.79213 Vertex 2284 -3.03079 18.7775 1.47372 Vertex 2285 -3.03046 18.8005 1.74942 Vertex 2286 -3.02986 20.1658 0.735316 Vertex 2287 -3.0293 21.1144 -1.31737 Vertex 2288 -3.02835 19.624 -1.23287 Vertex 2289 -3.02807 17.5017 0.210685 Vertex 2290 -3.02684 19.6933 0.073783 Vertex 2291 -3.02671 -10.0006 3.60659 Vertex 2292 -3.02623 17.4988 0.329922 Vertex 2293 -3.02618 21.2296 -1.07704 Vertex 2294 -3.02554 17.5984 0.507645 Vertex 2295 -3.02461 18.4877 1.14334 Vertex 2296 -3.02425 19.1102 -0.773111 Vertex 2297 -3.02404 18.9869 -0.692567 Vertex 2298 -3.02241 17.4754 0.204259 Vertex 2299 -3.02196 19.7412 -1.29007 Vertex 2300 -3.02111 17.8818 -0.192219 Vertex 2301 -3.02108 18.5796 1.89687 Vertex 2302 -3.02086 19.3628 -1.26237 Vertex 2303 -3.0201 18.9725 1.56106 Vertex 2304 -3.01929 -43.2789 -5.5188 Vertex 2305 -3.01793 21.5752 -0.917749 Vertex 2306 -3.01759 17.8144 -0.497353 Vertex 2307 -3.01607 17.0405 0.543803 Vertex 2308 -3.01588 17.2795 0.261742 Vertex 2309 -3.01575 12.9848 -4.37449 Vertex 2310 -3.01565 17.3379 0.403967 Vertex 2311 -3.01503 -41.9203 -3.44988 Vertex 2312 -3.01473 19.4933 0.084852 Vertex 2313 -3.01466 18.0857 -0.905655 Vertex 2314 -3.01409 19.3158 0.933712 Vertex 2315 -3.01286 16.9895 0.350843 Vertex 2316 -3.01229 19.4609 0.094523 Vertex 2317 -3.01179 19.0173 1.02186 Vertex 2318 -3.00904 -3.67196 3.38582 Vertex 2319 -3.00851 19.6151 0.875653 Vertex 2320 -3.00829 21.193 0.580934 Vertex 2321 -3.00781 18.5842 0.123053 Vertex 2322 -3.00747 18.3 1.13096 Vertex 2323 -3.00738 20.7174 0.628767 Vertex 2324 -3.00737 18.4725 1.78906 Vertex 2325 -3.00682 18.7231 0.122532 Vertex 2326 -3.00655 20.1836 0.750053 Vertex 2327 -3.00575 18.7399 1.07631 Vertex 2328 -3.00573 17.5752 0.5202 Vertex 2329 -3.0057 18.4586 0.105242 Vertex 2330 -3.00553 19.8668 0.87548 Vertex 2331 -3.00552 19.1933 0.110452 Vertex 2332 -3.00528 18.8593 0.121307 Vertex 2333 -3.00506 1.47742 -4.84007 Vertex 2334 -3.00356 17.7473 0.692657 Vertex 2335 -3.00318 18.9928 0.11938 Vertex 2336 -3.0031 18.1124 0.056089 Vertex 2337 -3.00247 19.0344 1.29032 Vertex 2338 -3.00228 17.3486 0.191148 Vertex 2339 -3.00104 18.5588 -1.11732 Vertex 2340 -3.00073 17.4969 0.154635 Vertex 2341 -3.00058 19.2617 0.093597 Vertex 2342 -3.00055 19.16 -1.69615 Vertex 2343 -3.00049 -34.093 -5.66988 Vertex 2344 -3.00049 18.3462 0.069096 Vertex 2345 -3.00037 19.6402 -1.2806 Vertex 2346 -2.99979 19.0831 1.31216 Vertex 2347 -2.99963 18.2308 0.052713 Vertex 2348 -2.99791 18.7249 1.37258 Vertex 2349 -2.9967 17.5966 0.164886 Vertex 2350 -2.99623 19.8111 -1.35861 Vertex 2351 -2.99488 19.1793 1.06327 Vertex 2352 -2.99451 -2.25204 3.6113 Vertex 2353 -2.99451 -0.834039 3.61132 Vertex 2354 -2.99451 0.583959 3.61134 Vertex 2355 -2.99399 17.8235 -0.304463 Vertex 2356 -2.99361 19.1663 -1.25406 Vertex 2357 -2.99268 19.078 0.087345 Vertex 2358 -2.99259 20.871 -1.91213 Vertex 2359 -2.99104 18.9422 0.066092 Vertex 2360 -2.99044 -17.7994 2.44164 Vertex 2361 -2.98949 18.9824 1.20956 Vertex 2362 -2.98818 18.7575 1.09467 Vertex 2363 -2.98773 19.5267 0.965002 Vertex 2364 -2.9868 18.7299 0.020054 Vertex 2365 -2.9865 18.9046 1.80149 Vertex 2366 -2.98542 -33.7225 -5.77918 Vertex 2367 -2.98469 18.7115 2.00828 Vertex 2368 -2.9844 21.931 -0.487595 Vertex 2369 -2.98362 19.9973 0.893347 Vertex 2370 -2.98351 19.8535 0.898968 Vertex 2371 -2.98329 19.1091 1.54664 Vertex 2372 -2.98276 18.8383 1.13909 Vertex 2373 -2.98227 17.7247 0.707429 Vertex 2374 -2.98175 -9.33591 3.68109 Vertex 2375 -2.98155 18.5873 0.011305 Vertex 2376 -2.9815 17.4301 0.593601 Vertex 2377 -2.97987 16.6937 0.494729 Vertex 2378 -2.97836 16.8163 0.670118 Vertex 2379 -2.97707 18.4478 0.001382 Vertex 2380 -2.97699 18.4035 -1.02469 Vertex 2381 -2.97696 21.5814 -1.15145 Vertex 2382 -2.97664 17.97 0.876703 Vertex 2383 -2.97656 18.4839 1.51494 Vertex 2384 -2.97448 18.4791 2.14688 Vertex 2385 -2.97361 0.793936 -4.64973 Vertex 2386 -2.97344 19.4988 -1.54124 Vertex 2387 -2.97334 18.3113 -0.009712 Vertex 2388 -2.97191 18.3628 2.02422 Vertex 2389 -2.97176 18.9381 -1.21424 Vertex 2390 -2.97161 17.2347 0.13361 Vertex 2391 -2.96892 18.2493 -0.921801 Vertex 2392 -2.96866 19.3584 1.11906 Vertex 2393 -2.96856 -13.0955 2.71639 Vertex 2394 -2.96836 17.8035 -0.418505 Vertex 2395 -2.9678 19.9808 0.913021 Vertex 2396 -2.96719 19.2192 1.31294 Vertex 2397 -2.96713 -43.2615 -3.42964 Vertex 2398 -2.96707 17.53 0.075737 Vertex 2399 -2.96636 20.2669 0.805459 Vertex 2400 -2.96542 21.1309 -1.27932 Vertex 2401 -2.96526 20.0148 0.904617 Vertex 2402 -2.96136 19.9968 0.91781 Vertex 2403 -2.95985 18.0827 0.010697 Vertex 2404 -2.95955 16.9297 0.215619 Vertex 2405 -2.95938 19.7494 1.00356 Vertex 2406 -2.95899 18.0793 0.972486 Vertex 2407 -2.9576 21.2489 -1.24759 Vertex 2408 -2.95715 17.7721 -0.554103 Vertex 2409 -2.95642 17.1629 0.727849 Vertex 2410 -2.95614 18.2141 0.004432 Vertex 2411 -2.95455 17.9472 0.891605 Vertex 2412 -2.9543 19.2482 -1.95203 Vertex 2413 -2.95359 17.7758 0.085283 Vertex 2414 -2.95137 18.5798 1.26137 Vertex 2415 -2.95105 18.3322 1.65031 Vertex 2416 -2.95036 18.1485 1.03412 Vertex 2417 -2.95027 21.1561 -1.27562 Vertex 2418 -2.94834 20.9252 0.827575 Vertex 2419 -2.94818 18.4857 1.17674 Vertex 2420 -2.94759 1.01701 -4.2787 Vertex 2421 -2.9466 17.585 0.780746 Vertex 2422 -2.94572 18.7428 -1.15232 Vertex 2423 -2.94384 17.7423 -0.237242 Vertex 2424 -2.94257 17.8689 -0.087485 Vertex 2425 -2.94146 19.8897 1.0296 Vertex 2426 -2.94044 -3.66992 -3.99761 Vertex 2427 -2.94044 -2.25192 -3.99758 Vertex 2428 -2.94044 -0.833917 -3.99756 Vertex 2429 -2.94044 0.584082 -3.99754 Vertex 2430 -2.93852 17.8141 -0.625776 Vertex 2431 -2.93788 19.3909 -1.27298 Vertex 2432 -2.9365 18.0563 0.987455 Vertex 2433 -2.93516 18.0614 0.991254 Vertex 2434 -2.93479 18.5 1.19609 Vertex 2435 -2.9346 17.7769 -0.348415 Vertex 2436 -2.93396 19.9478 1.04313 Vertex 2437 -2.93313 19.5544 1.18924 Vertex 2438 -2.93273 18.1372 -0.826546 Vertex 2439 -2.93158 19.2938 1.58703 Vertex 2440 -2.93111 19.0523 1.83428 Vertex 2441 -2.93055 19.5285 -1.46277 Vertex 2442 -2.92894 17.3663 -2.05436 Vertex 2443 -2.92852 20.0102 1.02479 Vertex 2444 -2.9284 21.8883 0.481434 Vertex 2445 -2.92775 21.7013 0.678409 Vertex 2446 -2.9269 18.13 1.05199 Vertex 2447 -2.92603 18.2775 1.16111 Vertex 2448 -2.92584 17.4648 -0.014704 Vertex 2449 -2.92546 18.2165 1.91355 Vertex 2450 -2.92514 20.0768 0.974591 Vertex 2451 -2.92454 18.2971 2.33005 Vertex 2452 -2.92386 19.4025 1.38373 Vertex 2453 -2.92227 18.3892 1.36952 Vertex 2454 -2.92058 18.6233 2.2847 Vertex 2455 -2.92002 16.5905 0.32074 Vertex 2456 -2.91941 22.0283 0.313151 Vertex 2457 -2.91747 21.4673 0.904073 Vertex 2458 -2.91551 18.5805 -1.0683 Vertex 2459 -2.91544 16.9581 0.846905 Vertex 2460 -2.91353 17.8028 0.965402 Vertex 2461 -2.9128 -45.2821 -4.66994 Vertex 2462 -2.91038 17.7618 -0.470535 Vertex 2463 -2.9099 19.4071 -1.32071 Vertex 2464 -2.90978 18.3474 1.23268 Vertex 2465 -2.9093 20.4156 0.901536 Vertex 2466 -2.90928 19.195 -1.25964 Vertex 2467 -2.90896 19.4276 -1.4533 Vertex 2468 -2.90819 21.9942 -0.810047 Vertex 2469 -2.90583 17.1618 -0.012849 Vertex 2470 -2.90548 18.4062 2.44049 Vertex 2471 -2.90459 19.7242 1.24308 Vertex 2472 -2.90392 17.7836 -0.005511 Vertex 2473 -2.90332 18.2578 1.17717 Vertex 2474 -2.90225 16.5181 0.613766 Vertex 2475 -2.90159 18.3581 1.24882 Vertex 2476 -2.90046 17.9219 -0.696945 Vertex 2477 -2.90031 17.3284 0.912612 Vertex 2478 -2.90029 16.6652 0.782911 Vertex 2479 -2.9001 -41.1353 -2.91926 Vertex 2480 -2.89821 18.8684 2.1233 Vertex 2481 -2.89799 -6.42017 3.83833 Vertex 2482 -2.89721 18.4231 -0.9742 Vertex 2483 -2.89575 21.5996 -1.39378 Vertex 2484 -2.89333 17.9221 1.06795 Vertex 2485 -2.89082 18.2708 -0.870027 Vertex 2486 -2.89061 19.4407 1.63507 Vertex 2487 -2.89057 22.1841 0.068272 Vertex 2488 -2.89054 18.325 1.24413 Vertex 2489 -2.89039 18.2933 1.38409 Vertex 2490 -2.89028 21.3495 -1.91302 Vertex 2491 -2.89022 -44.384 -3.33485 Vertex 2492 -2.88961 18.1596 2.20613 Vertex 2493 -2.8889 -45.027 -3.33704 Vertex 2494 -2.88858 18.3317 1.25285 Vertex 2495 -2.88765 19.5745 1.4449 Vertex 2496 -2.88702 20.0621 1.5606 Vertex 2497 -2.88589 17.9429 1.08838 Vertex 2498 -2.88472 18.9678 -1.20977 Vertex 2499 -2.88305 19.8678 1.28057 Vertex 2500 -2.88249 20.088 1.53948 Vertex 2501 -2.88123 18.1521 -0.791601 Vertex 2502 -2.88117 17.7365 -0.391005 Vertex 2503 -2.88081 16.7969 0.046449 Vertex 2504 -2.88017 19.8559 -2.23448 Vertex 2505 -2.87832 18.8263 -1.71885 Vertex 2506 -2.87829 20.0154 1.5357 Vertex 2507 -2.87813 19.1844 -1.60966 Vertex 2508 -2.878 18.1417 -1.82615 Vertex 2509 -2.87739 17.5742 -0.201547 Vertex 2510 -2.87722 18.0062 -0.73466 Vertex 2511 -2.87599 -37.7788 -3.30363 Vertex 2512 -2.87586 18.1776 1.57035 Vertex 2513 -2.87506 21.2038 1.11383 Vertex 2514 -2.87478 -20.013 -7.81698 Vertex 2515 -2.87442 18.0105 1.15317 Vertex 2516 -2.87352 17.113 -1.92053 Vertex 2517 -2.8724 -40.1296 -4.10955 Vertex 2518 -2.87095 20.0575 1.50145 Vertex 2519 -2.86938 -38.6938 -3.30424 Vertex 2520 -2.86927 20.0209 1.23397 Vertex 2521 -2.86723 -40.2267 -3.27711 Vertex 2522 -2.86428 19.2436 1.84779 Vertex 2523 -2.86337 17.4277 -2.34323 Vertex 2524 -2.86326 20.1835 1.10327 Vertex 2525 -2.86286 16.8475 -2.39809 Vertex 2526 -2.86189 16.3745 0.443334 Vertex 2527 -2.86055 18.2209 1.34557 Vertex 2528 -2.8604 19.5499 1.69076 Vertex 2529 -2.86028 18.2153 2.58777 Vertex 2530 -2.85943 17.7252 -0.4997 Vertex 2531 -2.85893 18.1249 1.26233 Vertex 2532 -2.85853 19.7352 1.49645 Vertex 2533 -2.85839 17.6108 -0.329164 Vertex 2534 -2.85816 18.7621 -1.13834 Vertex 2535 -2.85617 16.8157 0.950768 Vertex 2536 -2.85456 19.2061 -1.33843 Vertex 2537 -2.8543 18.1951 1.32647 Vertex 2538 -2.85402 20.6302 1.06894 Vertex 2539 -2.85357 17.5368 1.09809 Vertex 2540 -2.85116 17.1266 1.02812 Vertex 2541 -2.85007 21.2915 -2.09364 Vertex 2542 -2.84615 19.3647 1.8227 Vertex 2543 -2.84573 16.4894 0.13968 Vertex 2544 -2.84572 16.5907 0.887409 Vertex 2545 -2.84273 -37.7533 -4.46973 Vertex 2546 -2.84189 22.3555 -0.2532 Vertex 2547 -2.84145 17.379 -0.163082 Vertex 2548 -2.8412 18.0922 2.44638 Vertex 2549 -2.83813 18.5358 2.57866 Vertex 2550 -2.83644 18.8904 -1.95729 Vertex 2551 -2.83612 -38.6683 -4.47035 Vertex 2552 -2.83605 19.9967 1.53417 Vertex 2553 -2.83555 -22.2492 -1.89586 Vertex 2554 -2.8351 18.0404 1.81488 Vertex 2555 -2.83367 -3.67281 3.59712 Vertex 2556 -2.83279 16.3645 0.747485 Vertex 2557 -2.83262 17.7005 -0.41545 Vertex 2558 -2.83027 17.7617 -0.562423 Vertex 2559 -2.82958 18.5777 -1.04536 Vertex 2560 -2.82946 19.1998 -1.49042 Vertex 2561 -2.82835 20.5607 -2.24634 Vertex 2562 -2.82763 20.2066 1.76968 Vertex 2563 -2.82758 20.0451 1.49478 Vertex 2564 -2.82572 18.0211 -0.699714 Vertex 2565 -2.82483 17.9002 -1.69966 Vertex 2566 -2.82276 17.0762 -0.171864 Vertex 2567 -2.82243 17.6671 1.21768 Vertex 2568 -2.8223 16.4909 0.936403 Vertex 2569 -2.82097 17.6322 -0.376616 Vertex 2570 -2.82014 20.246 1.73753 Vertex 2571 -2.81982 19.6799 1.78915 Vertex 2572 -2.81956 20.1569 1.7472 Vertex 2573 -2.81817 18.312 2.70753 Vertex 2574 -2.81786 -29.8672 -1.54866 Vertex 2575 -2.81752 18.0258 1.52695 Vertex 2576 -2.81655 19.8848 1.61865 Vertex 2577 -2.81561 20.272 1.71641 Vertex 2578 -2.8154 19.4481 1.88047 Vertex 2579 -2.81522 18.4111 -0.947201 Vertex 2580 -2.8151 18.2623 -0.843877 Vertex 2581 -2.81168 16.7454 1.0508 Vertex 2582 -2.81064 19.0486 2.17587 Vertex 2583 -2.8102 18.7955 2.43765 Vertex 2584 -2.80953 20.3103 1.68519 Vertex 2585 -2.80863 18.1453 -0.765874 Vertex 2586 -2.80662 20.3718 1.26508 Vertex 2587 -2.80614 20.1499 1.41599 Vertex 2588 -2.80613 18.2836 -2.08769 Vertex 2589 -2.80462 16.5428 -2.25228 Vertex 2590 -2.8045 18.9527 -1.30293 Vertex 2591 -2.80279 17.7194 1.27138 Vertex 2592 -2.80256 22.0221 -1.18027 Vertex 2593 -2.8013 16.1979 0.572681 Vertex 2594 -2.80105 17.9575 1.4797 Vertex 2595 -2.80068 17.9937 2.06872 Vertex 2596 -2.80053 20.9108 1.30767 Vertex 2597 -2.79752 20.2832 1.64445 Vertex 2598 -2.79621 16.9796 1.12726 Vertex 2599 -2.79522 16.7116 -0.133838 Vertex 2600 -2.79475 -29.3108 -1.68521 Vertex 2601 -2.79435 21.3514 -1.81252 Vertex 2602 -2.79335 16.2394 0.266842 Vertex 2603 -2.79293 17.7899 1.33769 Vertex 2604 -2.79286 17.8788 1.41661 Vertex 2605 -2.79063 18.5446 -1.67106 Vertex 2606 -2.79033 17.3652 -0.333941 Vertex 2607 -2.78982 17.3216 1.21375 Vertex 2608 -2.78629 16.9452 -1.73777 Vertex 2609 -2.78385 16.6711 1.11341 Vertex 2610 -2.78154 -29.3563 -1.49686 Vertex 2611 -2.78117 17.838 -0.642591 Vertex 2612 -2.78025 18.0143 2.63432 Vertex 2613 -2.78019 17.6656 -0.467027 Vertex 2614 -2.77913 18.1172 2.79736 Vertex 2615 -2.77863 20.1321 1.7505 Vertex 2616 -2.77251 17.8993 1.72788 Vertex 2617 -2.77076 16.2328 0.895883 Vertex 2618 -2.77069 16.3678 1.06798 Vertex 2619 -2.7692 16.5771 1.13944 Vertex 2620 -2.76887 19.8307 1.93024 Vertex 2621 -2.76852 -41.0338 -4.38157 Vertex 2622 -2.76499 19.5354 1.99348 Vertex 2623 -2.7638 -33.5113 -2.17558 Vertex 2624 -2.76201 18.7263 -1.23555 Vertex 2625 -2.76173 20.0234 1.81152 Vertex 2626 -2.76095 17.9427 2.28338 Vertex 2627 -2.7557 18.8507 -1.63235 Vertex 2628 -2.75522 20.6419 1.46001 Vertex 2629 -2.75503 16.3906 -0.048453 Vertex 2630 -2.75492 16.8656 1.20748 Vertex 2631 -2.75324 20.2775 1.63233 Vertex 2632 -2.75291 17.5367 -0.432151 Vertex 2633 -2.74779 17.4599 1.34982 Vertex 2634 -2.74698 17.9424 -0.72466 Vertex 2635 -2.74672 20.3887 2.02243 Vertex 2636 -2.74452 21.4696 -1.69711 Vertex 2637 -2.74389 17.6869 -0.55574 Vertex 2638 -2.7422 21.3616 -1.75252 Vertex 2639 -2.73938 19.4489 -2.37729 Vertex 2640 -2.73914 20.3971 1.57085 Vertex 2641 -2.73873 17.7384 -1.52057 Vertex 2642 -2.73831 16.0607 0.70878 Vertex 2643 -2.73768 17.7934 1.65255 Vertex 2644 -2.7375 16.4656 1.22508 Vertex 2645 -2.73749 18.3149 -1.5528 Vertex 2646 -2.737 18.4241 2.8482 Vertex 2647 -2.73573 20.4414 1.99199 Vertex 2648 -2.73485 -45.0392 -4.65225 Vertex 2649 -2.73381 21.3802 -1.73304 Vertex 2650 -2.73343 17.0099 -0.310019 Vertex 2651 -2.73302 20.3457 2.03922 Vertex 2652 -2.73185 16.0387 0.396913 Vertex 2653 -2.7311 18.8928 -1.49371 Vertex 2654 -2.72776 18.0749 -0.808631 Vertex 2655 -2.72728 16.7844 1.26877 Vertex 2656 -2.72709 18.5269 -1.1363 Vertex 2657 -2.72574 20.4905 1.96259 Vertex 2658 -2.72554 17.8414 1.94836 Vertex 2659 -2.72548 19.6774 2.09807 Vertex 2660 -2.72298 17.1571 1.31238 Vertex 2661 -2.7228 16.2743 1.16199 Vertex 2662 -2.72247 18.6858 2.74457 Vertex 2663 -2.72199 19.252 2.16602 Vertex 2664 -2.72116 16.3378 -2.06287 Vertex 2665 -2.72019 21.7218 1.31112 Vertex 2666 -2.71711 17.5414 1.43631 Vertex 2667 -2.71703 17.3208 -0.427868 Vertex 2668 -2.71676 20.5359 1.93423 Vertex 2669 -2.71663 16.135 0.999102 Vertex 2670 -2.71602 18.2127 -0.909629 Vertex 2671 -2.71592 17.8876 2.45887 Vertex 2672 -2.71565 17.7008 1.58106 Vertex 2673 -2.71524 21.9483 1.11448 Vertex 2674 -2.71371 17.9147 2.77667 Vertex 2675 -2.7127 22.4781 -0.66379 Vertex 2676 -2.71255 18.1963 2.948 Vertex 2677 -2.71176 18.3557 -1.02766 Vertex 2678 -2.7064 17.6217 1.51339 Vertex 2679 -2.70381 21.4671 1.48556 Vertex 2680 -2.70199 16.6943 1.32983 Vertex 2681 -2.70181 22.1443 0.920609 Vertex 2682 -2.70171 16.3772 1.30143 Vertex 2683 -2.70163 -17.8091 -7.05958 Vertex 2684 -2.69968 -44.4185 -4.63377 Vertex 2685 -2.69688 16.113 0.08429 Vertex 2686 -2.6959 -9.30989 3.83926 Vertex 2687 -2.69464 20.3124 2.04236 Vertex 2688 -2.69402 -41.8967 -3.35468 Vertex 2689 -2.69395 17.9969 2.95227 Vertex 2690 -2.69294 19.3791 2.12925 Vertex 2691 -2.69243 18.1647 -1.42782 Vertex 2692 -2.68995 20.558 1.91187 Vertex 2693 -2.68719 16.6421 -0.284089 Vertex 2694 -2.68467 17.788 2.13377 Vertex 2695 -2.68373 15.9593 0.812778 Vertex 2696 -2.6799 16.2104 1.21842 Vertex 2697 -2.67989 22.3098 0.729512 Vertex 2698 -2.67979 17.7331 -0.687887 Vertex 2699 -2.67979 16.5852 -2.85734 Vertex 2700 -2.67897 16.5953 1.39063 Vertex 2701 -2.67835 -27.5289 -4.51545 Vertex 2702 -2.67834 20.0194 2.14604 Vertex 2703 -2.67681 17.2972 -2.78714 Vertex 2704 -2.67641 20.2037 2.07797 Vertex 2705 -2.6762 17.0274 1.39103 Vertex 2706 -2.67372 21.1773 -2.35437 Vertex 2707 -2.67248 16.071 1.05714 Vertex 2708 -2.67058 17.5206 -0.577197 Vertex 2709 -2.66961 17.8125 2.59321 Vertex 2710 -2.6694 17.3002 1.46435 Vertex 2711 -2.66725 16.863 -1.50606 Vertex 2712 -2.66683 18.5749 -1.58911 Vertex 2713 -2.66611 21.1841 1.63782 Vertex 2714 -2.66419 17.7027 1.84503 Vertex 2715 -2.66242 15.8873 0.529894 Vertex 2716 -2.66224 16.3121 1.3685 Vertex 2717 -2.65729 18.6355 -1.44394 Vertex 2718 -2.65477 -43.2775 -3.30585 Vertex 2719 -2.65432 18.9624 2.5848 Vertex 2720 -2.65205 19.4514 2.23165 Vertex 2721 -2.65199 21.9563 -1.53875 Vertex 2722 -2.6516 16.5118 1.45579 Vertex 2723 -2.65053 -15.6171 -6.12914 Vertex 2724 -2.64988 17.7392 2.28414 Vertex 2725 -2.64893 16.9325 1.4497 Vertex 2726 -2.64698 22.5005 0.431061 Vertex 2727 -2.64531 20.5566 1.89549 Vertex 2728 -2.64189 16.1152 1.30624 Vertex 2729 -2.64158 17.7933 2.87342 Vertex 2730 -2.64119 20.921 1.75729 Vertex 2731 -2.63989 15.8937 0.884676 Vertex 2732 -2.63962 19.8563 2.27449 Vertex 2733 -2.63794 16.3134 -0.200914 Vertex 2734 -2.63693 20.0946 -2.59064 Vertex 2735 -2.63692 16.9631 -0.427312 Vertex 2736 -2.6367 -22.2785 -1.38675 Vertex 2737 -2.63356 17.8308 -0.813758 Vertex 2738 -2.63269 16.2221 1.44832 Vertex 2739 -2.63158 19.5635 2.31502 Vertex 2740 -2.63052 -11.4725 3.13479 Vertex 2741 -2.63007 19.043 -2.34768 Vertex 2742 -2.6299 15.8869 0.220182 Vertex 2743 -2.62906 20.6776 1.84396 Vertex 2744 -2.62886 17.4089 1.58317 Vertex 2745 -2.62728 17.5909 1.75567 Vertex 2746 -2.62724 15.9766 1.15445 Vertex 2747 -2.62699 20.6434 2.39926 Vertex 2748 -2.62587 19.1405 2.43426 Vertex 2749 -2.62266 16.8424 1.50757 Vertex 2750 -2.62216 17.6562 -1.28886 Vertex 2751 -2.62201 17.7174 2.68639 Vertex 2752 -2.61995 16.4437 1.5253 Vertex 2753 -2.61868 20.5817 2.41176 Vertex 2754 -2.61814 16.1898 -2.69491 Vertex 2755 -2.6172 18.2882 3.0933 Vertex 2756 -2.61677 18.5516 3.00978 Vertex 2757 -2.6165 12.4786 -1.75525 Vertex 2758 -2.61636 17.2627 -0.626796 Vertex 2759 -2.61576 17.675 2.40404 Vertex 2760 -2.61546 17.1745 1.55251 Vertex 2761 -2.61482 17.5058 1.68027 Vertex 2762 -2.61288 12.4583 -1.76683 Vertex 2763 -2.61269 16.1074 1.54091 Vertex 2764 -2.61248 16.2325 -1.82985 Vertex 2765 -2.61234 17.628 1.99755 Vertex 2766 -2.61151 18.3572 -1.47995 Vertex 2767 -2.61035 18.0591 3.12002 Vertex 2768 -2.60921 18.3257 -2.48429 Vertex 2769 -2.60902 20.7228 2.37224 Vertex 2770 -2.60873 17.9802 -0.933352 Vertex 2771 -2.60804 18.4278 -1.34112 Vertex 2772 -2.60793 15.9885 1.42547 Vertex 2773 -2.60477 17.8542 3.05248 Vertex 2774 -2.60368 15.7795 0.641156 Vertex 2775 -2.60305 22.7165 0.025255 Vertex 2776 -2.59732 16.757 1.56464 Vertex 2777 -2.59653 16.3548 1.59802 Vertex 2778 -2.59359 18.1221 -1.06729 Vertex 2779 -2.59263 20.7922 2.34741 Vertex 2780 -2.59235 17.5464 -0.773231 Vertex 2781 -2.58839 15.8065 0.992934 Vertex 2782 -2.58681 18.2567 -1.21556 Vertex 2783 -2.58607 17.0827 1.61429 Vertex 2784 -2.58408 20.5375 2.40973 Vertex 2785 -2.58408 16.0237 -0.060493 Vertex 2786 -2.58296 18.8343 2.89304 Vertex 2787 -2.58278 17.5992 2.74792 Vertex 2788 -2.5823 17.5956 2.49348 Vertex 2789 -2.58214 17.569 2.11011 Vertex 2790 -2.58116 16.2451 1.67393 Vertex 2791 -2.58082 17.6472 2.93921 Vertex 2792 -2.57982 12.2693 -1.38885 Vertex 2793 -2.57974 15.8519 1.29102 Vertex 2794 -2.57784 20.8517 2.32476 Vertex 2795 -2.57693 -41.8906 -4.63483 Vertex 2796 -2.57655 12.249 -1.40043 Vertex 2797 -2.57472 16.678 1.62506 Vertex 2798 -2.57339 18.0825 -1.19612 Vertex 2799 -2.57212 12.6898 -1.6739 Vertex 2800 -2.57008 15.9819 1.66138 Vertex 2801 -2.5687 17.3068 1.69191 Vertex 2802 -2.56846 17.5042 1.88749 Vertex 2803 -2.5661 19.2863 2.4123 Vertex 2804 -2.56535 18.2129 -1.35952 Vertex 2805 -2.5606 20.4257 2.41799 Vertex 2806 -2.56024 19.7143 2.46331 Vertex 2807 -2.55959 16.9957 1.67326 Vertex 2808 -2.55948 15.8423 1.56129 Vertex 2809 -2.55856 15.7154 0.730696 Vertex 2810 -2.55698 17.5027 2.55192 Vertex 2811 -2.55636 12.7847 -2.26327 Vertex 2812 -2.55599 16.5884 -0.404305 Vertex 2813 -2.55488 16.6052 1.68884 Vertex 2814 -2.55304 17.4167 1.80357 Vertex 2815 -2.55274 12.7644 -2.27484 Vertex 2816 -2.55218 17.5022 2.20915 Vertex 2817 -2.5519 17.4578 2.7778 Vertex 2818 -2.55014 15.7125 0.359228 Vertex 2819 -2.54825 20.246 2.43654 Vertex 2820 -2.54823 20.8817 2.30371 Vertex 2821 -2.54513 16.1221 1.77984 Vertex 2822 -2.5434 19.4069 2.40731 Vertex 2823 -2.54333 15.9162 -2.49587 Vertex 2824 -2.54318 16.9639 -0.656394 Vertex 2825 -2.54139 -33.5573 -4.80197 Vertex 2826 -2.53978 17.3966 2.57937 Vertex 2827 -2.5392 17.4407 1.9765 Vertex 2828 -2.53662 17.235 1.76255 Vertex 2829 -2.53595 16.9135 1.7294 Vertex 2830 -2.53533 -43.2861 -4.6068 Vertex 2831 -2.53499 16.5131 1.75532 Vertex 2832 -2.53365 12.4805 -1.3075 Vertex 2833 -2.53203 19.4851 2.46193 Vertex 2834 -2.53177 16.6195 -1.59291 Vertex 2835 -2.53143 17.4765 2.97405 Vertex 2836 -2.53056 17.3188 2.78524 Vertex 2837 -2.52887 17.6853 3.10756 Vertex 2838 -2.5281 15.6976 1.13755 Vertex 2839 -2.5267 17.2785 2.5925 Vertex 2840 -2.52613 17.6398 -0.949556 Vertex 2841 -2.52577 -30.3561 -5.11725 Vertex 2842 -2.52525 15.7087 1.44572 Vertex 2843 -2.52318 17.2779 -0.898622 Vertex 2844 -2.52245 17.4276 2.29467 Vertex 2845 -2.52104 17.3544 1.88329 Vertex 2846 -2.52063 15.7903 0.085578 Vertex 2847 -2.51875 17.182 2.77026 Vertex 2848 -2.51773 17.1483 2.59134 Vertex 2849 -2.51561 16.8307 1.78394 Vertex 2850 -2.51493 16.4017 1.82452 Vertex 2851 -2.51226 17.3703 2.05971 Vertex 2852 -2.51169 17.1543 1.82689 Vertex 2853 -2.51158 17.9003 3.22359 Vertex 2854 -2.51088 12.9959 -2.18192 Vertex 2855 -2.50948 17.0267 2.60169 Vertex 2856 -2.50739 20.0721 2.52272 Vertex 2857 -2.50617 18.1271 3.26325 Vertex 2858 -2.505 15.8455 1.80972 Vertex 2859 -2.5038 20.8824 2.28425 Vertex 2860 -2.50342 17.3578 2.35121 Vertex 2861 -2.503 22.5517 -1.1635 Vertex 2862 -2.50285 20.8542 -2.62892 Vertex 2863 -2.50269 15.6349 0.851211 Vertex 2864 -2.49855 16.7473 1.83687 Vertex 2865 -2.4976 17.0121 2.74047 Vertex 2866 -2.49644 15.6766 1.7137 Vertex 2867 -2.49608 17.323 2.98348 Vertex 2868 -2.49601 17.2791 1.95571 Vertex 2869 -2.49521 16.2579 -0.317702 Vertex 2870 -2.49508 17.2929 2.37876 Vertex 2871 -2.49389 17.0646 1.88492 Vertex 2872 -2.49309 18.3928 3.23327 Vertex 2873 -2.48853 15.9856 1.91575 Vertex 2874 -2.48826 17.4991 -1.35206 Vertex 2875 -2.48767 17.2928 2.13712 Vertex 2876 -2.48592 16.263 1.91669 Vertex 2877 -2.4849 21.699 -2.29608 Vertex 2878 -2.48451 17.2021 2.40527 Vertex 2879 -2.48409 -25.9314 -4.5961 Vertex 2880 -2.48331 13.0918 -1.52276 Vertex 2881 -2.48299 15.5955 0.484235 Vertex 2882 -2.48023 16.6466 1.89546 Vertex 2883 -2.47963 18.6968 3.14426 Vertex 2884 -2.47795 17.191 2.02083 Vertex 2885 -2.477 19.6306 -2.75249 Vertex 2886 -2.4769 17.8008 -1.10617 Vertex 2887 -2.4759 20.9915 2.23531 Vertex 2888 -2.47514 17.2571 2.20544 Vertex 2889 -2.47477 17.1866 2.96751 Vertex 2890 -2.47423 16.8292 2.56088 Vertex 2891 -2.47308 16.9698 1.93242 Vertex 2892 -2.47171 17.0855 2.43074 Vertex 2893 -2.47123 17.2127 2.23305 Vertex 2894 -2.46886 19.6056 2.57903 Vertex 2895 -2.46869 17.15 2.083 Vertex 2896 -2.4681 12.1569 -1.16407 Vertex 2897 -2.4676 20.7164 2.76485 Vertex 2898 -2.46742 15.5809 1.31468 Vertex 2899 -2.4671 16.809 2.69587 Vertex 2900 -2.46658 20.6412 2.77232 Vertex 2901 -2.46625 17.4901 3.11752 Vertex 2902 -2.46513 12.1366 -1.17564 Vertex 2903 -2.46453 21.2092 2.1569 Vertex 2904 -2.46405 15.547 1.61857 Vertex 2905 -2.46249 -27.5559 -4.65414 Vertex 2906 -2.46155 16.9707 2.45441 Vertex 2907 -2.46062 16.5286 1.95973 Vertex 2908 -2.46059 17.1328 2.23541 Vertex 2909 -2.45824 19.2511 2.55918 Vertex 2910 -2.45647 21.7966 -1.88546 Vertex 2911 -2.45634 -32.2006 -2.28971 Vertex 2912 -2.45537 15.7644 -2.26022 Vertex 2913 -2.45494 17.0705 2.08291 Vertex 2914 -2.45363 17.0113 2.93344 Vertex 2915 -2.45295 19.124 2.72613 Vertex 2916 -2.45126 -25.6615 -4.60973 Vertex 2917 -2.45082 22.8572 -0.487035 Vertex 2918 -2.45075 21.4503 2.0594 Vertex 2919 -2.45053 19.3447 2.5227 Vertex 2920 -2.44972 16.6241 -0.665994 Vertex 2921 -2.44954 19.3096 2.12694 Vertex 2922 -2.44924 16.87 1.9694 Vertex 2923 -2.44856 15.9717 -0.167505 Vertex 2924 -2.44836 19.3096 1.90957 Vertex 2925 -2.44831 16.394 2.00706 Vertex 2926 -2.44783 16.0969 2.03181 Vertex 2927 -2.44701 20.5256 2.70008 Vertex 2928 -2.4468 17.0122 -0.997265 Vertex 2929 -2.44411 16.7588 2.43201 Vertex 2930 -2.44386 15.6132 0.2373 Vertex 2931 -2.44277 17.0234 2.27174 Vertex 2932 -2.44127 20.8154 2.74016 Vertex 2933 -2.44102 12.8825 -1.15636 Vertex 2934 -2.43905 19.4018 2.52046 Vertex 2935 -2.43822 20.59 2.76255 Vertex 2936 -2.43802 19.9041 2.67653 Vertex 2937 -2.43727 16.8988 2.33728 Vertex 2938 -2.43703 13.5027 -1.37436 Vertex 2939 -2.43542 15.5382 1.0027 Vertex 2940 -2.4351 16.5502 2.44011 Vertex 2941 -2.43458 21.7149 1.94278 Vertex 2942 -2.43379 19.1035 2.13082 Vertex 2943 -2.43379 19.5157 2.13081 Vertex 2944 -2.43357 15.5359 0.595206 Vertex 2945 -2.43282 21.6292 -2.48196 Vertex 2946 -2.43265 16.7969 2.88128 Vertex 2947 -2.43253 16.5678 2.62457 Vertex 2948 -2.432 19.0956 1.9136 Vertex 2949 -2.432 19.5237 1.91359 Vertex 2950 -2.4309 -11.3423 3.0219 Vertex 2951 -2.43089 16.962 2.11436 Vertex 2952 -2.43048 16.7552 2.01844 Vertex 2953 -2.42812 17.3692 -1.13206 Vertex 2954 -2.42751 20.3482 2.69387 Vertex 2955 -2.42691 17.7134 3.25298 Vertex 2956 -2.42683 19.4423 2.53882 Vertex 2957 -2.42637 12.6895 -1.66557 Vertex 2958 -2.42633 14.7589 -1.74606 Vertex 2959 -2.42618 12.1175 -0.013846 Vertex 2960 -2.42616 14.0353 0.16341 Vertex 2961 -2.42613 17.8762 -1.25594 Vertex 2962 -2.42593 11.8018 0.889532 Vertex 2963 -2.42592 13.0009 1.20876 Vertex 2964 -2.42576 13.2844 -3.40238 Vertex 2965 -2.4257 14.0406 -3.75157 Vertex 2966 -2.42568 11.5285 1.66807 Vertex 2967 -2.42568 11.8225 2.11012 Vertex 2968 -2.42234 15.8273 2.0426 Vertex 2969 -2.42194 12.3681 -1.08271 Vertex 2970 -2.4215 17.3248 3.11051 Vertex 2971 -2.4196 18.9814 3.02407 Vertex 2972 -2.41925 16.2132 2.1118 Vertex 2973 -2.41714 20.9017 2.7179 Vertex 2974 -2.41678 16.6257 2.07954 Vertex 2975 -2.41671 19.3097 2.34183 Vertex 2976 -2.41645 16.8393 2.16571 Vertex 2977 -2.41644 21.9564 1.80206 Vertex 2978 -2.4154 13.398 -2.03078 Vertex 2979 -2.41446 15.4838 1.87269 Vertex 2980 -2.41319 19.3096 1.69506 Vertex 2981 -2.41282 19.3352 2.56621 Vertex 2982 -2.41248 15.4049 1.76572 Vertex 2983 -2.41181 15.6667 1.98798 Vertex 2984 -2.4116 16.7024 2.23696 Vertex 2985 -2.41024 16.2728 2.36158 Vertex 2986 -2.40879 16.497 2.255 Vertex 2987 -2.40835 13.9226 -1.22871 Vertex 2988 -2.40802 16.2231 2.21983 Vertex 2989 -2.40766 15.4565 1.52431 Vertex 2990 -2.40704 16.4854 2.12529 Vertex 2991 -2.40562 14.439 -1.07529 Vertex 2992 -2.40561 21.6929 -2.1762 Vertex 2993 -2.40391 17.9407 3.35805 Vertex 2994 -2.40195 19.1166 2.34546 Vertex 2995 -2.40195 19.5027 2.34545 Vertex 2996 -2.40109 16.55 2.80839 Vertex 2997 -2.39663 19.0929 1.69913 Vertex 2998 -2.39663 19.5263 1.69912 Vertex 2999 -2.39653 15.7488 -0.0069 Vertex 3000 -2.39631 22.1747 1.63722 Vertex 3001 -2.39532 14.8428 -0.547725 Vertex 3002 -2.39522 20.9752 2.69806 Vertex 3003 -2.39463 17.1894 3.08652 Vertex 3004 -2.39406 15.0521 -0.914126 Vertex 3005 -2.39388 16.2886 2.52657 Vertex 3006 -2.3934 13.2935 -1.00796 Vertex 3007 -2.39288 12.0844 -0.979927 Vertex 3008 -2.39148 15.9239 2.14826 Vertex 3009 -2.39036 -33.5131 -4.9756 Vertex 3010 -2.39025 16.3144 -0.622332 Vertex 3011 -2.39019 12.0641 -0.991501 Vertex 3012 -2.38938 7.39991 4.99909 Vertex 3013 -2.38907 16.4629 -3.28168 Vertex 3014 -2.38693 18.9025 2.14235 Vertex 3015 -2.38692 19.7168 2.14233 Vertex 3016 -2.3865 11.132 -5.6933 Vertex 3017 -2.38552 -32.2529 -5.28061 Vertex 3018 -2.3836 14.2297 -0.708894 Vertex 3019 -2.38355 17.2575 -3.2152 Vertex 3020 -2.38333 18.8868 1.92557 Vertex 3021 -2.38333 19.7324 1.92555 Vertex 3022 -2.38268 19.3997 2.57875 Vertex 3023 -2.38142 18.2008 3.38196 Vertex 3024 -2.38131 19.3922 2.58178 Vertex 3025 -2.37983 16.2147 -1.99832 Vertex 3026 -2.37958 15.4877 0.373321 Vertex 3027 -2.37773 15.9721 2.22351 Vertex 3028 -2.37364 15.462 0.729283 Vertex 3029 -2.37281 -31.3416 -2.10853 Vertex 3030 -2.37127 17.014 3.04722 Vertex 3031 -2.37053 15.4358 1.19234 Vertex 3032 -2.37004 19.4215 2.57898 Vertex 3033 -2.36949 13.7133 -0.862307 Vertex 3034 -2.36885 22.3794 1.45092 Vertex 3035 -2.36811 15.294 -0.36364 Vertex 3036 -2.36797 13.0508 -2.68051 Vertex 3037 -2.36744 16.0201 2.34359 Vertex 3038 -2.36646 20.2103 2.79921 Vertex 3039 -2.3655 19.5301 2.62167 Vertex 3040 -2.36479 13.0305 -2.69208 Vertex 3041 -2.36455 19.3914 2.59108 Vertex 3042 -2.36415 21.6966 -2.1019 Vertex 3043 -2.36378 19.4121 2.58402 Vertex 3044 -2.36249 21.0142 2.67548 Vertex 3045 -2.36241 19.4046 2.58704 Vertex 3046 -2.36222 16.0345 -0.525407 Vertex 3047 -2.36166 15.4926 -0.744391 Vertex 3048 -2.36053 21.7101 -2.07318 Vertex 3049 -2.36038 16.7494 -1.06916 Vertex 3050 -2.35894 16.2705 2.7148 Vertex 3051 -2.35804 18.9282 2.35626 Vertex 3052 -2.35804 19.6911 2.35624 Vertex 3053 -2.35756 19.3933 2.5966 Vertex 3054 -2.35674 12.0519 -0.836433 Vertex 3055 -2.35655 15.333 1.68986 Vertex 3056 -2.35635 17.4984 3.2082 Vertex 3057 -2.35542 19.4065 2.59256 Vertex 3058 -2.35476 15.7606 -0.566094 Vertex 3059 -2.35474 -30.8039 -2.24334 Vertex 3060 -2.35429 12.0315 -0.848005 Vertex 3061 -2.3542 13.8089 -1.88238 Vertex 3062 -2.35391 19.7684 2.75862 Vertex 3063 -2.35334 19.3997 2.60385 Vertex 3064 -2.35143 16.7983 2.99258 Vertex 3065 -2.35066 19.3097 2.54893 Vertex 3066 -2.34856 19.1688 -2.73188 Vertex 3067 -2.34834 19.3666 2.63376 Vertex 3068 -2.34735 18.8816 1.71125 Vertex 3069 -2.34735 19.7377 1.71123 Vertex 3070 -2.34716 15.5833 -0.156639 Vertex 3071 -2.34571 12.2956 -0.898571 Vertex 3072 -2.34433 18.5497 3.33846 Vertex 3073 -2.34184 19.3236 2.67149 Vertex 3074 -2.33919 -35.0338 -3.30494 Vertex 3075 -2.33784 17.5367 -1.3271 Vertex 3076 -2.33747 20.3223 -2.91731 Vertex 3077 -2.33726 19.1343 2.55223 Vertex 3078 -2.33726 19.485 2.55222 Vertex 3079 -2.33724 19.3852 2.65199 Vertex 3080 -2.33679 15.5892 0.164112 Vertex 3081 -2.33474 15.9937 2.47786 Vertex 3082 -2.33416 15.4141 0.493643 Vertex 3083 -2.33406 22.5705 1.24316 Vertex 3084 -2.33396 15.9939 -3.08556 Vertex 3085 -2.33377 7.56557 5.12066 Vertex 3086 -2.33247 17.1237 -1.27432 Vertex 3087 -2.33131 19.2218 2.82139 Vertex 3088 -2.32818 12.7701 -0.931575 Vertex 3089 -2.32559 18.8597 3.25166 Vertex 3090 -2.32526 -30.3048 -2.1879 Vertex 3091 -2.32193 15.1855 1.90996 Vertex 3092 -2.32021 13.262 -2.59915 Vertex 3093 -2.31896 21.0188 2.65016 Vertex 3094 -2.3174 18.3778 -2.88612 Vertex 3095 -2.31673 17.267 -1.71016 Vertex 3096 -2.31639 17.733 3.36637 Vertex 3097 -2.31596 -30.8593 -2.03129 Vertex 3098 -2.31481 16.5473 2.92496 Vertex 3099 -2.31428 15.2638 2.03824 Vertex 3100 -2.314 -34.0872 -4.97328 Vertex 3101 -2.31245 19.3388 2.73603 Vertex 3102 -2.31073 19.4876 2.64537 Vertex 3103 -2.3101 18.7115 2.16124 Vertex 3104 -2.3101 19.9078 2.16121 Vertex 3105 -2.30978 20.0342 2.90092 Vertex 3106 -2.30933 15.3276 1.42013 Vertex 3107 -2.30863 -23.877 -1.74521 Vertex 3108 -2.30848 19.3809 2.72552 Vertex 3109 -2.30814 12.2631 -0.755078 Vertex 3110 -2.30787 19.086 3.09316 Vertex 3111 -2.30682 17.3241 3.16631 Vertex 3112 -2.30532 14.2287 -1.73672 Vertex 3113 -2.30463 16.0309 2.66512 Vertex 3114 -2.30457 19.4781 2.65015 Vertex 3115 -2.30355 18.6885 1.94519 Vertex 3116 -2.30354 19.9308 1.94516 Vertex 3117 -2.30271 15.3737 0.886465 Vertex 3118 -2.30262 -24.1483 -1.76796 Vertex 3119 -2.30095 19.4693 2.65741 Vertex 3120 -2.3006 16.4828 -1.1148 Vertex 3121 -2.30041 22.7821 0.875445 Vertex 3122 -2.30041 14.7304 -0.322939 Vertex 3123 -2.29985 19.461 2.66714 Vertex 3124 -2.29739 18.9633 2.56203 Vertex 3125 -2.29739 19.656 2.56201 Vertex 3126 -2.29416 15.6057 2.2721 Vertex 3127 -2.29206 15.4456 2.19616 Vertex 3128 -2.28939 19.2559 2.87058 Vertex 3129 -2.28939 -33.5132 -3.54935 Vertex 3130 -2.28828 15.4563 0.308415 Vertex 3131 -2.28778 15.172 -0.149886 Vertex 3132 -2.28675 19.4542 2.7067 Vertex 3133 -2.28617 15.4422 0.035051 Vertex 3134 -2.28607 18.7493 2.37396 Vertex 3135 -2.28606 19.87 2.37393 Vertex 3136 -2.28465 12.0021 -0.670662 Vertex 3137 -2.28249 11.9817 -0.682235 Vertex 3138 -2.28176 17.9757 3.45587 Vertex 3139 -2.28128 15.6539 2.34734 Vertex 3140 -2.27861 15.6648 -2.85336 Vertex 3141 -2.27839 14.7452 -1.58331 Vertex 3142 -2.27833 13.1811 -0.783177 Vertex 3143 -2.27832 17.1904 3.12731 Vertex 3144 -2.27673 20.5244 3.12088 Vertex 3145 -2.27621 14.1173 -0.484108 Vertex 3146 -2.27592 -26.0217 -4.7316 Vertex 3147 -2.27571 16.2122 -1.1342 Vertex 3148 -2.27559 21.1295 2.60413 Vertex 3149 -2.27358 15.3341 0.633656 Vertex 3150 -2.27341 -24.1989 -4.68357 Vertex 3151 -2.2702 20.4037 3.0332 Vertex 3152 -2.27015 -25.6136 -1.89087 Vertex 3153 -2.26854 20.6076 3.1192 Vertex 3154 -2.26789 23.0141 0.347768 Vertex 3155 -2.26657 18.6807 1.73112 Vertex 3156 -2.26656 19.9385 1.73109 Vertex 3157 -2.26589 17.6154 -1.49608 Vertex 3158 -2.26585 19.3432 2.81356 Vertex 3159 -2.26414 -25.8848 -1.91362 Vertex 3160 -2.26162 19.4488 2.7761 Vertex 3161 -2.2614 16.2607 2.84436 Vertex 3162 -2.25874 17.7304 -1.59039 Vertex 3163 -2.25808 19.3885 2.8094 Vertex 3164 -2.25735 15.2036 1.6368 Vertex 3165 -2.25706 20.4698 3.10082 Vertex 3166 -2.25674 15.3499 0.426008 Vertex 3167 -2.25611 22.4791 -1.63011 Vertex 3168 -2.25512 15.683 2.47845 Vertex 3169 -2.25506 13.6009 -0.637521 Vertex 3170 -2.25506 19.665 2.76901 Vertex 3171 -2.25303 19.3097 2.74314 Vertex 3172 -2.25165 15.9739 -1.19331 Vertex 3173 -2.25053 17.0201 3.08181 Vertex 3174 -2.24935 21.4833 -2.73383 Vertex 3175 -2.24919 12.6976 -0.747435 Vertex 3176 -2.24778 19.1484 3.10031 Vertex 3177 -2.2436 17.504 3.2882 Vertex 3178 -2.24329 15.3582 -1.42214 Vertex 3179 -2.24245 -25.6286 -4.77163 Vertex 3180 -2.24132 19.1564 2.74603 Vertex 3181 -2.24132 19.4629 2.74602 Vertex 3182 -2.24058 -23.929 -4.6972 Vertex 3183 -2.24051 19.2803 2.91 Vertex 3184 -2.23816 15.8314 2.65936 Vertex 3185 -2.23773 -33.7206 -5.04736 Vertex 3186 -2.23651 16.9032 -1.37634 Vertex 3187 -2.23644 15.3215 0.192417 Vertex 3188 -2.23475 12.2132 -0.589307 Vertex 3189 -2.23251 15.2732 1.07871 Vertex 3190 -2.23249 20.7193 3.09577 Vertex 3191 -2.23239 21.3462 2.5374 Vertex 3192 -2.23235 19.8915 2.94114 Vertex 3193 -2.23204 18.8009 2.5781 Vertex 3194 -2.23204 19.8185 2.57807 Vertex 3195 -2.22866 -27.4857 -2.0479 Vertex 3196 -2.2239 19.4421 2.83946 Vertex 3197 -2.22345 16.8133 3.0298 Vertex 3198 -2.22299 15.4756 -2.58509 Vertex 3199 -2.22199 14.6579 -0.1388 Vertex 3200 -2.2208 15.7678 -1.29214 Vertex 3201 -2.2205 15.0835 0.025329 Vertex 3202 -2.22008 -22.2766 -1.94615 Vertex 3203 -2.21682 20.2707 3.10395 Vertex 3204 -2.21616 15.0636 1.84234 Vertex 3205 -2.21479 19.3456 2.86844 Vertex 3206 -2.2147 13.664 -2.44802 Vertex 3207 -2.21147 16.0618 2.80064 Vertex 3208 -2.20855 17.2983 -1.48755 Vertex 3209 -2.20838 12.6651 -0.60394 Vertex 3210 -2.20647 19.007 2.7546 Vertex 3211 -2.20647 19.6124 2.75458 Vertex 3212 -2.20598 18.254 3.48179 Vertex 3213 -2.2052 18.5352 2.18703 Vertex 3214 -2.2052 20.084 2.18699 Vertex 3215 -2.20497 15.2214 0.315462 Vertex 3216 -2.20264 19.6084 2.77633 Vertex 3217 -2.20104 19.3914 2.87476 Vertex 3218 -2.19977 15.2515 0.564334 Vertex 3219 -2.19928 20.8189 3.07408 Vertex 3220 -2.19774 15.2479 0.793363 Vertex 3221 -2.19728 17.7443 3.44772 Vertex 3222 -2.19667 19.5987 2.7806 Vertex 3223 -2.195 13.1086 -0.599037 Vertex 3224 -2.195 19.5772 2.79264 Vertex 3225 -2.19461 18.5054 1.97197 Vertex 3226 -2.1946 20.1139 1.97193 Vertex 3227 -2.19412 19.5883 2.78604 Vertex 3228 -2.19214 17.3234 3.22211 Vertex 3229 -2.19158 14.0449 -0.299968 Vertex 3230 -2.19132 18.9711 3.31763 Vertex 3231 -2.19127 19.5586 2.81904 Vertex 3232 -2.19027 22.9227 -1.10581 Vertex 3233 -2.18948 18.4809 3.47171 Vertex 3234 -2.1878 18.5841 2.39812 Vertex 3235 -2.18779 20.0352 2.39808 Vertex 3236 -2.18579 19.3479 2.89498 Vertex 3237 -2.18468 19.2951 2.93966 Vertex 3238 -2.18293 19.5323 2.86524 Vertex 3239 -2.18224 21.5831 2.44988 Vertex 3240 -2.18206 19.1996 3.09872 Vertex 3241 -2.17885 19.3501 2.89318 Vertex 3242 -2.1768 11.935 -0.482614 Vertex 3243 -2.17651 15.0284 0.162007 Vertex 3244 -2.17593 19.3504 2.35203 Vertex 3245 -2.17556 19.351 2.71219 Vertex 3246 -2.17551 20.1046 3.13649 Vertex 3247 -2.17503 11.9146 -0.494187 Vertex 3248 -2.1737 16.5597 2.97428 Vertex 3249 -2.17358 19.4339 2.89678 Vertex 3250 -2.17207 7.80563 5.07598 Vertex 3251 -2.17154 14.6254 0.004696 Vertex 3252 -2.17091 18.759 3.40889 Vertex 3253 -2.16977 19.3925 2.90644 Vertex 3254 -2.16919 13.5284 -0.453381 Vertex 3255 -2.1689 20.9064 3.05414 Vertex 3256 -2.16715 19.7935 -3.07764 Vertex 3257 -2.16664 15.1605 1.30602 Vertex 3258 -2.16503 15.9504 2.7938 Vertex 3259 -2.16428 19.3919 2.90443 Vertex 3260 -2.16396 15.9525 -2.29455 Vertex 3261 -2.16332 19.5038 2.90373 Vertex 3262 -2.16316 19.3892 2.36297 Vertex 3263 -2.16207 19.3908 2.72327 Vertex 3264 -2.16201 17.1913 3.1681 Vertex 3265 -2.15681 16.6679 -1.47148 Vertex 3266 -2.15628 18.4954 1.75824 Vertex 3267 -2.15627 20.1239 1.7582 Vertex 3268 -2.15623 17.0575 3.11865 Vertex 3269 -2.1545 -32.3061 -3.02674 Vertex 3270 -2.1527 19.304 2.95305 Vertex 3271 -2.15024 -32.8637 -2.9009 Vertex 3272 -2.14978 13.076 -0.455543 Vertex 3273 -2.14935 18.865 2.76864 Vertex 3274 -2.14935 19.7544 2.76862 Vertex 3275 -2.14654 15.0562 2.20287 Vertex 3276 -2.14597 19.4287 2.92424 Vertex 3277 -2.14458 19.3071 2.95019 Vertex 3278 -2.14281 18.6509 2.60004 Vertex 3279 -2.14281 19.9684 2.60001 Vertex 3280 -2.14224 15.1281 0.460017 Vertex 3281 -2.14215 19.3094 2.40781 Vertex 3282 -2.14119 19.4219 2.37983 Vertex 3283 -2.14106 19.3088 2.76844 Vertex 3284 -2.14105 19.4264 2.92183 Vertex 3285 -2.14009 14.0123 -0.156473 Vertex 3286 -2.13947 -11.2875 3.18019 Vertex 3287 -2.13946 19.4241 2.74036 Vertex 3288 -2.13852 -24.2354 -1.57445 Vertex 3289 -2.13531 19.0389 3.30479 Vertex 3290 -2.13501 14.0749 -2.29962 Vertex 3291 -2.13415 19.7821 2.91988 Vertex 3292 -2.13274 20.9554 3.02718 Vertex 3293 -2.13242 19.4732 2.93451 Vertex 3294 -2.13197 12.6153 -0.438169 Vertex 3295 -2.12798 17.5067 3.35752 Vertex 3296 -2.12734 17.4561 -1.65197 Vertex 3297 -2.12621 19.3097 2.9197 Vertex 3298 -2.12571 12.1461 -0.401259 Vertex 3299 -2.12553 16.855 3.06795 Vertex 3300 -2.12515 21.8402 2.34155 Vertex 3301 -2.12499 -35.0093 -4.66006 Vertex 3302 -2.12433 -33.3832 -4.43682 Vertex 3303 -2.12255 23.1317 -0.279779 Vertex 3304 -2.12116 -22.2883 -1.48167 Vertex 3305 -2.12004 13.4958 -0.309886 Vertex 3306 -2.11838 15.1482 0.980799 Vertex 3307 -2.11798 15.1609 0.723394 Vertex 3308 -2.11765 15.252 2.37663 Vertex 3309 -2.11673 -33.1107 -3.69455 Vertex 3310 -2.11648 19.1823 2.9221 Vertex 3311 -2.11648 19.437 2.92209 Vertex 3312 -2.11437 19.4564 2.9484 Vertex 3313 -2.1107 19.2398 3.08839 Vertex 3314 -2.11003 19.4487 2.4026 Vertex 3315 -2.10978 18.0238 3.53373 Vertex 3316 -2.10917 19.4534 2.94538 Vertex 3317 -2.10887 -25.5735 -1.68668 Vertex 3318 -2.10772 19.4509 2.76344 Vertex 3319 -2.10747 15.0418 1.50788 Vertex 3320 -2.10416 19.9748 3.1266 Vertex 3321 -2.10206 15.4463 2.54847 Vertex 3322 -2.10151 17.0957 -1.98176 Vertex 3323 -2.10127 16.2594 2.91527 Vertex 3324 -2.09955 14.9641 0.320706 Vertex 3325 -2.09891 16.4177 -1.55974 Vertex 3326 -2.09634 15.6392 2.71839 Vertex 3327 -2.09151 14.8963 2.04352 Vertex 3328 -2.09079 20.966 2.99322 Vertex 3329 -2.08816 21.1173 -2.98346 Vertex 3330 -2.08772 17.5969 -1.76757 Vertex 3331 -2.08752 19.058 2.92922 Vertex 3332 -2.08751 19.5613 2.9292 Vertex 3333 -2.08711 17.0856 -1.58755 Vertex 3334 -2.08709 -23.8256 -1.61062 Vertex 3335 -2.08542 14.5756 0.170467 Vertex 3336 -2.08424 16.5654 2.99983 Vertex 3337 -2.08344 16.8201 3.06475 Vertex 3338 -2.08273 19.7221 2.91099 Vertex 3339 -2.0825 19.1269 3.25832 Vertex 3340 -2.08028 7.90822 4.89768 Vertex 3341 -2.07999 -24.2927 -4.83908 Vertex 3342 -2.07818 -33.679 -3.59156 Vertex 3343 -2.07806 19.7113 2.91446 Vertex 3344 -2.07746 17.3227 3.27791 Vertex 3345 -2.07704 19.6632 2.94151 Vertex 3346 -2.07697 19.6253 2.97265 Vertex 3347 -2.07673 19.6881 2.9235 Vertex 3348 -2.07624 22.0806 2.21092 Vertex 3349 -2.07607 19.7 2.91863 Vertex 3350 -2.07482 18.378 2.21909 Vertex 3351 -2.07481 20.2412 2.21904 Vertex 3352 -2.07136 18.7339 2.78782 Vertex 3353 -2.07136 19.8854 2.78779 Vertex 3354 -2.0705 19.2608 3.08064 Vertex 3355 -2.06883 14.4947 -2.15396 Vertex 3356 -2.06795 13.0262 -0.289771 Vertex 3357 -2.06673 19.5849 2.99489 Vertex 3358 -2.06573 -32.4382 -2.82081 Vertex 3359 -2.06564 18.4369 2.42815 Vertex 3360 -2.06564 20.1824 2.42811 Vertex 3361 -2.06536 13.2767 -3.00697 Vertex 3362 -2.06281 13.2564 -3.01855 Vertex 3363 -2.06184 19.2661 2.53032 Vertex 3364 -2.06175 -27.4876 -3.33859 Vertex 3365 -2.06164 18.8891 3.44123 Vertex 3366 -2.06146 19.2627 3.07545 Vertex 3367 -2.06027 18.7047 3.50347 Vertex 3368 -2.05921 18.3422 2.00527 Vertex 3369 -2.0592 20.2771 2.00522 Vertex 3370 -2.05857 19.2645 2.89201 Vertex 3371 -2.05527 16.0862 2.88443 Vertex 3372 -2.05489 14.917 1.68431 Vertex 3373 -2.05332 -33.9647 -4.37041 Vertex 3374 -2.05185 13.9625 0.009298 Vertex 3375 -2.04864 15.0418 0.626083 Vertex 3376 -2.04856 20.4067 3.38556 Vertex 3377 -2.04854 16.817 3.06417 Vertex 3378 -2.04828 15.7991 2.84817 Vertex 3379 -2.04645 16.5643 3.00162 Vertex 3380 -2.04632 19.5421 3.00823 Vertex 3381 -2.04631 -22.3315 -4.77785 Vertex 3382 -2.0457 17.1922 3.20889 Vertex 3383 -2.04308 11.868 -0.286415 Vertex 3384 -2.04252 16.2022 -1.6426 Vertex 3385 -2.04173 11.8477 -0.297987 Vertex 3386 -2.04003 18.94 2.9409 Vertex 3387 -2.04003 19.6793 2.94088 Vertex 3388 -2.03911 17.0592 3.15193 Vertex 3389 -2.03846 15.035 1.19596 Vertex 3390 -2.03662 20.4937 3.38503 Vertex 3391 -2.03571 16.0401 2.88179 Vertex 3392 -2.03551 22.3044 2.058 Vertex 3393 -2.03429 20.3507 3.36013 Vertex 3394 -2.03406 13.446 -0.144115 Vertex 3395 -2.03342 19.5189 3.01298 Vertex 3396 -2.0319 18.5172 2.62731 Vertex 3397 -2.03189 20.1021 2.62727 Vertex 3398 -2.02943 19.5105 2.46567 Vertex 3399 -2.02895 -25.9603 -1.81046 Vertex 3400 -2.02813 21.0915 2.95041 Vertex 3401 -2.02803 19.5153 3.00914 Vertex 3402 -2.0267 19.5125 2.82671 Vertex 3403 -2.02669 15.0607 0.898606 Vertex 3404 -2.02606 15.0112 -2.00055 Vertex 3405 -2.02388 17.7922 3.51682 Vertex 3406 -2.02068 12.5482 -0.250121 Vertex 3407 -2.01918 18.3301 1.79195 Vertex 3408 -2.01917 20.2892 1.7919 Vertex 3409 -2.01796 13.4879 -2.92562 Vertex 3410 -2.01508 18.4905 3.54399 Vertex 3411 -2.01094 19.1837 3.22366 Vertex 3412 -2.0078 20.2563 3.34013 Vertex 3413 -2.00743 -32.2028 -3.85415 Vertex 3414 -2.00594 7.82099 4.60024 Vertex 3415 -2.003 18.8963 3.47092 Vertex 3416 -2.00279 16.2603 2.95321 Vertex 3417 -2.00278 19.8815 3.07429 Vertex 3418 -2.00046 18.9796 3.42278 Vertex 3419 -2.00039 17.0244 3.14796 Vertex 3420 -1.99973 -23.8937 -4.80727 Vertex 3421 -1.99846 20.612 3.35853 Vertex 3422 -1.99488 -27.4976 -1.93941 Vertex 3423 -1.99467 18.8178 3.52002 Vertex 3424 -1.99368 18.8262 3.51748 Vertex 3425 -1.99365 18.6968 3.5354 Vertex 3426 -1.99189 19.2678 -3.10991 Vertex 3427 -1.99118 12.0792 -0.205059 Vertex 3428 -1.9909 22.5201 1.87003 Vertex 3429 -1.9907 16.4807 -3.6711 Vertex 3430 -1.9887 14.8906 0.501426 Vertex 3431 -1.98542 15.6243 -1.83938 Vertex 3432 -1.98533 18.8134 3.52791 Vertex 3433 -1.98434 18.8218 3.52537 Vertex 3434 -1.98357 17.3087 -3.62741 Vertex 3435 -1.98245 16.0213 -1.72006 Vertex 3436 -1.98194 18.8013 3.53177 Vertex 3437 -1.97985 18.2866 3.56273 Vertex 3438 -1.97798 18.8349 3.52164 Vertex 3439 -1.97709 16.8698 -1.69237 Vertex 3440 -1.9752 18.8311 2.95684 Vertex 3441 -1.9752 19.7883 2.95681 Vertex 3442 -1.97442 18.617 2.81165 Vertex 3443 -1.97442 20.0023 2.81162 Vertex 3444 -1.97334 19.3097 3.07424 Vertex 3445 -1.97223 17.0215 3.14584 Vertex 3446 -1.97202 22.2602 -2.0636 Vertex 3447 -1.97078 19.2131 3.20281 Vertex 3448 -1.96909 20.1235 3.32556 Vertex 3449 -1.9669 20.7222 3.33205 Vertex 3450 -1.96609 16.1024 2.92862 Vertex 3451 -1.96599 16.2635 2.95818 Vertex 3452 -1.96583 19.2113 3.07609 Vertex 3453 -1.96582 19.4081 3.07609 Vertex 3454 -1.96402 -33.2993 -3.565 Vertex 3455 -1.96376 19.2187 2.64949 Vertex 3456 -1.96284 14.9174 1.38324 Vertex 3457 -1.96232 14.5085 0.358514 Vertex 3458 -1.96203 19.2151 3.19577 Vertex 3459 -1.96019 -25.887 -3.31673 Vertex 3460 -1.95997 16.089 2.92806 Vertex 3461 -1.95968 19.2169 3.01133 Vertex 3462 -1.95962 16.5644 2.98442 Vertex 3463 -1.95918 17.2729 -1.77223 Vertex 3464 -1.95789 15.9261 2.93779 Vertex 3465 -1.95333 -33.605 -4.43582 Vertex 3466 -1.95209 15.9554 -3.42424 Vertex 3467 -1.95098 19.8285 3.04934 Vertex 3468 -1.95053 14.7724 1.89858 Vertex 3469 -1.95051 16.8134 3.04239 Vertex 3470 -1.94992 12.9591 -0.101725 Vertex 3471 -1.94925 20.531 -3.23084 Vertex 3472 -1.94875 19.816 3.05174 Vertex 3473 -1.9483 17.1362 3.1968 Vertex 3474 -1.94826 17.5591 3.43109 Vertex 3475 -1.94677 19.8044 3.05521 Vertex 3476 -1.94507 19.7937 3.05973 Vertex 3477 -1.94477 21.3321 2.89878 Vertex 3478 -1.94405 19.7681 3.0741 Vertex 3479 -1.94374 19.7277 3.09832 Vertex 3480 -1.94345 19.1153 3.08159 Vertex 3481 -1.94345 19.504 3.08158 Vertex 3482 -1.94295 -25.6153 -3.31302 Vertex 3483 -1.94242 22.7277 1.64701 Vertex 3484 -1.94197 20.8244 3.30558 Vertex 3485 -1.94183 19.0621 3.3888 Vertex 3486 -1.94158 17.3809 3.34799 Vertex 3487 -1.93925 14.9497 0.801957 Vertex 3488 -1.93415 19.6852 3.11293 Vertex 3489 -1.9307 18.4396 -3.29316 Vertex 3490 -1.92977 16.1077 2.93519 Vertex 3491 -1.92812 14.9509 1.08997 Vertex 3492 -1.92697 15.5838 -3.13535 Vertex 3493 -1.92617 13.8954 0.197345 Vertex 3494 -1.92577 22.155 -2.53895 Vertex 3495 -1.92473 3.46099 4.90409 Vertex 3496 -1.92351 17.1335 3.1939 Vertex 3497 -1.92263 18.3111 2.46332 Vertex 3498 -1.92262 20.3082 2.46327 Vertex 3499 -1.92216 18.2438 2.25662 Vertex 3500 -1.92215 20.3755 2.25657 Vertex 3501 -1.92145 -12.9329 2.61846 Vertex 3502 -1.91665 22.8178 -1.66263 Vertex 3503 -1.91536 15.3659 -2.80445 Vertex 3504 -1.91528 19.6404 3.11792 Vertex 3505 -1.91333 14.8609 2.36657 Vertex 3506 -1.91224 13.89 -2.77448 Vertex 3507 -1.91122 13.3789 0.043932 Vertex 3508 -1.91007 20.8837 3.2716 Vertex 3509 -1.90901 17.2512 3.27146 Vertex 3510 -1.9081 20.0208 3.28393 Vertex 3511 -1.90678 19.0241 3.09061 Vertex 3512 -1.90678 19.5952 3.0906 Vertex 3513 -1.9042 17.1638 3.21703 Vertex 3514 -1.90311 19.616 3.11799 Vertex 3515 -1.90204 18.403 2.65924 Vertex 3516 -1.90203 20.2163 2.65919 Vertex 3517 -1.90067 18.2027 2.04425 Vertex 3518 -1.90066 20.4166 2.04419 Vertex 3519 -1.90049 22.9589 1.24197 Vertex 3520 -1.89939 19.6072 2.56906 Vertex 3521 -1.89923 16.0004 2.98583 Vertex 3522 -1.89918 16.2739 2.95175 Vertex 3523 -1.89762 19.6119 3.11311 Vertex 3524 -1.89638 19.609 2.93014 Vertex 3525 -1.89462 18.7339 2.97665 Vertex 3526 -1.89462 19.8854 2.97662 Vertex 3527 -1.88929 14.7954 1.54263 Vertex 3528 -1.88797 18.0853 3.59162 Vertex 3529 -1.88696 15.0857 2.52937 Vertex 3530 -1.88573 12.4812 -0.053921 Vertex 3531 -1.88538 19.1269 3.34546 Vertex 3532 -1.88491 11.8013 -0.082061 Vertex 3533 -1.88476 14.7017 2.24035 Vertex 3534 -1.88416 15.833 -2.48162 Vertex 3535 -1.88402 11.7809 -0.093635 Vertex 3536 -1.87916 15.4545 2.84222 Vertex 3537 -1.87867 19.4128 2.37497 Vertex 3538 -1.87791 22.0385 -2.75298 Vertex 3539 -1.87678 16.6511 -1.80202 Vertex 3540 -1.87557 15.2836 2.68792 Vertex 3541 -1.87229 16.022 2.99229 Vertex 3542 -1.87183 17.0211 3.12566 Vertex 3543 -1.87121 20.9002 3.2301 Vertex 3544 -1.86984 19.3585 2.37892 Vertex 3545 -1.86513 23.2137 0.654922 Vertex 3546 -1.86436 23.135 -1.0072 Vertex 3547 -1.86307 22.1388 -2.40843 Vertex 3548 -1.86124 15.6079 2.96373 Vertex 3549 -1.86092 18.5172 2.83956 Vertex 3550 -1.86091 20.1021 2.83952 Vertex 3551 -1.86057 21.5826 2.80926 Vertex 3552 -1.85867 18.1889 1.83141 Vertex 3553 -1.85866 20.4304 1.83135 Vertex 3554 -1.85754 2.26245 5.09119 Vertex 3555 -1.85671 18.94 3.10292 Vertex 3556 -1.8567 19.6793 3.10291 Vertex 3557 -1.85537 17.4652 -1.9304 Vertex 3558 -1.85498 14.8153 0.690851 Vertex 3559 -1.85406 -24.2144 -3.29388 Vertex 3560 -1.85353 19.1609 3.31957 Vertex 3561 -1.84836 17.1682 3.21515 Vertex 3562 -1.84791 19.1673 2.76533 Vertex 3563 -1.84628 19.1641 3.31113 Vertex 3564 -1.8444 19.1663 3.12638 Vertex 3565 -1.8443 -6.48107 4.07782 Vertex 3566 -1.84341 17.2558 3.28036 Vertex 3567 -1.83799 17.1982 3.23715 Vertex 3568 -1.83337 16.9852 -2.16686 Vertex 3569 -1.83265 12.0125 -0.000706 Vertex 3570 -1.83128 22.1358 -2.32746 Vertex 3571 -1.83064 18.8397 3.5407 Vertex 3572 -1.83041 22.1458 -2.29606 Vertex 3573 -1.8301 19.459 2.39687 Vertex 3574 -1.82919 18.8278 3.54333 Vertex 3575 -1.82874 -23.8152 -3.28843 Vertex 3576 -1.82666 18.8527 3.53811 Vertex 3577 -1.82496 14.8303 1.26287 Vertex 3578 -1.82482 19.9482 3.21522 Vertex 3579 -1.82374 16.5655 2.94824 Vertex 3580 -1.82231 18.817 3.546 Vertex 3581 -1.82221 14.3009 -2.62608 Vertex 3582 -1.82181 15.7439 3.05243 Vertex 3583 -1.81961 16.0576 2.98864 Vertex 3584 -1.81635 14.852 0.987641 Vertex 3585 -1.81317 -22.3595 -4.88473 Vertex 3586 -1.81255 14.4415 0.554714 Vertex 3587 -1.81147 -27.5065 -3.39832 Vertex 3588 -1.80859 21.034 3.18265 Vertex 3589 -1.80834 12.8922 0.094476 Vertex 3590 -1.80703 17.2714 3.29425 Vertex 3591 -1.80674 18.8945 3.52829 Vertex 3592 -1.80516 18.7172 3.55861 Vertex 3593 -1.80237 16.2916 2.93389 Vertex 3594 -1.80078 14.608 2.15071 Vertex 3595 -1.80028 18.6509 2.99985 Vertex 3596 -1.80027 19.9684 2.99981 Vertex 3597 -1.79818 19.3097 3.20297 Vertex 3598 -1.79616 17.8767 3.57367 Vertex 3599 -1.79447 18.865 3.11823 Vertex 3600 -1.79446 19.7544 3.1182 Vertex 3601 -1.79306 19.2427 3.20423 Vertex 3602 -1.79306 19.3766 3.20422 Vertex 3603 -1.79189 15.8258 3.09935 Vertex 3604 -1.79172 19.9419 -3.38087 Vertex 3605 -1.78935 16.8093 2.99942 Vertex 3606 -1.78892 4.66595 4.768 Vertex 3607 -1.78883 14.6635 1.75923 Vertex 3608 -1.78675 17.2673 3.28907 Vertex 3609 -1.78243 19.9051 3.18142 Vertex 3610 -1.78228 19.8036 3.22073 Vertex 3611 -1.78221 17.0972 -1.91025 Vertex 3612 -1.78208 20.2879 3.56635 Vertex 3613 -1.78112 16.4455 -1.91395 Vertex 3614 -1.78093 19.8916 3.18251 Vertex 3615 -1.78091 17.1485 3.18192 Vertex 3616 -1.77944 19.8798 3.18503 Vertex 3617 -1.77891 19.8443 3.20087 Vertex 3618 -1.77826 19.7611 3.22985 Vertex 3619 -1.77796 19.8697 3.18897 Vertex 3620 -1.77784 19.1774 3.20797 Vertex 3621 -1.77784 19.442 3.20796 Vertex 3622 -1.77771 18.5286 3.58116 Vertex 3623 -1.77551 21.8428 2.68186 Vertex 3624 -1.77519 13.8285 0.393545 Vertex 3625 -1.77184 20.3748 3.56234 Vertex 3626 -1.77147 15.8534 3.10449 Vertex 3627 -1.77105 19.309 2.46677 Vertex 3628 -1.77087 18.965 3.51124 Vertex 3629 -1.77002 -13.8469 -5.28026 Vertex 3630 -1.7699 20.2327 3.54048 Vertex 3631 -1.76685 19.7169 3.22822 Vertex 3632 -1.76445 13.312 0.240132 Vertex 3633 -1.76226 18.2099 2.50275 Vertex 3634 -1.76225 20.4094 2.50269 Vertex 3635 -1.76018 8.04807 -6.14647 Vertex 3636 -1.75865 19.6923 3.22444 Vertex 3637 -1.75643 18.3111 2.69504 Vertex 3638 -1.75642 20.3082 2.69499 Vertex 3639 -1.75575 19.6829 2.67416 Vertex 3640 -1.75391 2.2504 5.03539 Vertex 3641 -1.75365 19.6873 3.21849 Vertex 3642 -1.75287 19.1153 3.21411 Vertex 3643 -1.75287 19.504 3.2141 Vertex 3644 -1.75269 19.6842 3.03506 Vertex 3645 -1.75099 18.1358 2.29871 Vertex 3646 -1.75098 20.4835 2.29865 Vertex 3647 -1.75076 16.566 2.93199 Vertex 3648 -1.7489 16.3024 2.92708 Vertex 3649 -1.74848 14.7207 -2.48043 Vertex 3650 -1.74547 3.45723 4.84657 Vertex 3651 -1.7412 16.107 2.97485 Vertex 3652 -1.74068 16.5659 2.93569 Vertex 3653 -1.73938 20.167 3.50775 Vertex 3654 -1.73917 20.4934 3.52846 Vertex 3655 -1.73878 16.3064 2.9313 Vertex 3656 -1.73365 18.4369 2.87085 Vertex 3657 -1.73365 20.1824 2.87081 Vertex 3658 -1.73154 14.5826 2.38827 Vertex 3659 -1.73123 -22.2784 -3.26744 Vertex 3660 -1.731 19.0325 3.48129 Vertex 3661 -1.73026 1.18158 -5.50375 Vertex 3662 -1.72853 17.2588 3.27161 Vertex 3663 -1.72811 12.4145 0.150431 Vertex 3664 -1.72291 18.3448 3.60811 Vertex 3665 -1.7229 18.0905 2.08795 Vertex 3666 -1.72289 20.5287 2.08789 Vertex 3667 -1.7222 21.2852 3.12926 Vertex 3668 -1.7216 18.8009 3.13614 Vertex 3669 -1.72159 19.8185 3.13612 Vertex 3670 -1.72101 17.2293 3.25187 Vertex 3671 -1.72092 15.9154 3.09509 Vertex 3672 -1.72002 20.6115 3.4918 Vertex 3673 -1.71948 21.7892 -3.05052 Vertex 3674 -1.71879 19.0581 3.22249 Vertex 3675 -1.71879 19.5613 3.22248 Vertex 3676 -1.71808 14.6988 1.4173 Vertex 3677 -1.71441 20.7291 3.45238 Vertex 3678 -1.71396 -25.9697 -3.37733 Vertex 3679 -1.7096 14.7115 2.50578 Vertex 3680 -1.70444 17.6611 3.50888 Vertex 3681 -1.70392 16.8057 2.97947 Vertex 3682 -1.70363 16.5558 2.97955 Vertex 3683 -1.70136 14.7382 0.88898 Vertex 3684 -1.70046 15.2372 -2.32701 Vertex 3685 -1.6996 22.0945 2.53771 Vertex 3686 -1.6992 17.0231 3.08743 Vertex 3687 -1.69761 16.1354 2.96954 Vertex 3688 -1.69448 20.7991 3.40872 Vertex 3689 -1.69448 18.5842 3.02585 Vertex 3690 -1.69448 20.0352 3.02582 Vertex 3691 -1.69422 16.8026 2.98256 Vertex 3692 -1.6939 0.598831 -5.11583 Vertex 3693 -1.69272 19.5291 2.47629 Vertex 3694 -1.69268 14.9517 2.66028 Vertex 3695 -1.69178 16.253 -2.02816 Vertex 3696 -1.69085 16.2828 2.97602 Vertex 3697 -1.69053 20.091 3.46814 Vertex 3698 -1.68988 14.739 1.16265 Vertex 3699 -1.68984 -12.6992 2.5306 Vertex 3700 -1.68971 17.4916 3.43627 Vertex 3701 -1.68885 16.1426 2.97269 Vertex 3702 -1.68829 -10.0787 -6.05037 Vertex 3703 -1.6874 16.764 2.99708 Vertex 3704 -1.68713 19.097 3.43845 Vertex 3705 -1.68623 17.3276 3.3224 Vertex 3706 -1.68444 2.14296 -5.6208 Vertex 3707 -1.68404 -25.5711 -3.3471 Vertex 3708 -1.6805 23.3306 -0.050574 Vertex 3709 -1.67868 18.0753 1.87566 Vertex 3710 -1.67867 20.5439 1.8756 Vertex 3711 -1.67804 14.504 2.32628 Vertex 3712 -1.67774 17.1955 3.21117 Vertex 3713 -1.67642 19.007 3.23291 Vertex 3714 -1.67642 19.6124 3.23289 Vertex 3715 -1.67418 -11.7335 -6.09934 Vertex 3716 -1.67113 15.1583 2.83113 Vertex 3717 -1.66948 14.5215 2.03304 Vertex 3718 -1.66737 15.8502 -2.16584 Vertex 3719 -1.66279 19.1315 3.41236 Vertex 3720 -1.66024 20.8214 3.36082 Vertex 3721 -1.6598 -0.834047 4.44957 Vertex 3722 -1.6598 0.583952 4.44959 Vertex 3723 -1.6592 19.1388 2.85758 Vertex 3724 -1.65877 2.26427 5.11082 Vertex 3725 -1.65798 19.1358 3.40302 Vertex 3726 -1.65679 19.1382 3.2181 Vertex 3727 -1.6542 -0.833917 -4.65355 Vertex 3728 -1.6542 0.584082 -4.65353 Vertex 3729 -1.64632 12.8254 0.298828 Vertex 3730 -1.64495 15.3313 3.01833 Vertex 3731 -1.64415 20.0294 3.41312 Vertex 3732 -1.64308 15.655 3.22924 Vertex 3733 -1.64076 18.1657 3.63946 Vertex 3734 -1.64024 16.0117 3.07113 Vertex 3735 -1.63996 15.7489 3.26876 Vertex 3736 -1.63989 18.7493 3.15623 Vertex 3737 -1.63988 19.87 3.1562 Vertex 3738 -1.63963 16.5357 3.06359 Vertex 3739 -1.63944 14.3748 0.759066 Vertex 3740 -1.63566 17.1391 3.13747 Vertex 3741 -1.6356 15.4969 3.15103 Vertex 3742 -1.63425 16.7594 3.08052 Vertex 3743 -1.63362 22.9724 -1.63633 Vertex 3744 -1.63341 -3.66992 -4.65662 Vertex 3745 -1.63341 -2.25192 -4.6566 Vertex 3746 -1.63283 22.3375 2.37682 Vertex 3747 -1.63182 17.4842 3.43883 Vertex 3748 -1.62996 22.5426 -2.15751 Vertex 3749 -1.62867 21.5434 3.03602 Vertex 3750 -1.62682 18.9633 3.2451 Vertex 3751 -1.62682 19.656 3.24508 Vertex 3752 -1.62657 1.21441 5.00383 Vertex 3753 -1.62625 15.7786 3.26957 Vertex 3754 -1.62552 19.2696 2.56202 Vertex 3755 -1.6208 13.5146 -3.28495 Vertex 3756 -1.61911 13.4943 -3.29652 Vertex 3757 -1.61697 20.9569 3.30085 Vertex 3758 -1.61555 19.35 -3.43355 Vertex 3759 -1.61436 0.612496 4.76566 Vertex 3760 -1.61328 -3.67005 4.45599 Vertex 3761 -1.61328 -2.25205 4.45601 Vertex 3762 -1.61088 17.4757 3.44003 Vertex 3763 -1.60838 17.0215 3.06951 Vertex 3764 -1.60611 4.67001 4.70145 Vertex 3765 -1.60512 16.2316 3.06124 Vertex 3766 -1.60504 19.3097 3.30271 Vertex 3767 -1.60482 14.5695 1.62546 Vertex 3768 -1.60245 19.2758 3.30334 Vertex 3769 -1.60245 19.3436 3.30334 Vertex 3770 -1.60231 13.7617 0.597897 Vertex 3771 -1.60101 19.7713 3.33912 Vertex 3772 -1.60052 -7.48821 -5.80326 Vertex 3773 -1.60034 16.5047 -3.96301 Vertex 3774 -1.60025 19.9823 3.34269 Vertex 3775 -1.60003 19.7476 3.33233 Vertex 3776 -1.5994 17.0164 3.07191 Vertex 3777 -1.59919 -24.2339 -3.32883 Vertex 3778 -1.59907 19.8126 3.34564 Vertex 3779 -1.59873 17.1574 3.14952 Vertex 3780 -1.59866 18.2438 2.73383 Vertex 3781 -1.59865 20.3755 2.73377 Vertex 3782 -1.59851 19.7378 2.78096 Vertex 3783 -1.59832 -9.59247 3.72333 Vertex 3784 -1.59831 17.4596 3.42851 Vertex 3785 -1.59702 13.2452 0.444484 Vertex 3786 -1.59689 16.0648 3.05938 Vertex 3787 -1.59612 19.7415 3.32526 Vertex 3788 -1.59593 5.38226 -5.60642 Vertex 3789 -1.59575 18.3781 2.90475 Vertex 3790 -1.59574 20.2413 2.90471 Vertex 3791 -1.59561 19.7382 3.14147 Vertex 3792 -1.59499 16.9288 -2.06602 Vertex 3793 -1.59474 19.2427 3.30524 Vertex 3794 -1.59474 19.3766 3.30524 Vertex 3795 -1.59294 16.9768 3.08609 Vertex 3796 -1.59281 -13.1294 -4.98923 Vertex 3797 -1.5926 19.8527 3.33987 Vertex 3798 -1.59089 6.31946 4.9391 Vertex 3799 -1.59088 16.0747 3.05984 Vertex 3800 -1.59014 17.3568 -3.94348 Vertex 3801 -1.59004 17.2794 3.37943 Vertex 3802 -1.58849 18.1358 2.54547 Vertex 3803 -1.58848 20.4835 2.5454 Vertex 3804 -1.58427 21.35 -3.30994 Vertex 3805 -1.5821 19.2113 3.30835 Vertex 3806 -1.5821 19.4081 3.30834 Vertex 3807 -1.58161 19.8918 3.32182 Vertex 3808 -1.58119 17.3499 -2.12512 Vertex 3809 -1.57985 18.5353 3.05404 Vertex 3810 -1.57985 20.0841 3.054 Vertex 3811 -1.57909 -3.66992 -4.33347 Vertex 3812 -1.57909 -2.25192 -4.33345 Vertex 3813 -1.57909 -0.833921 -4.33343 Vertex 3814 -1.57909 0.584077 -4.33341 Vertex 3815 -1.57894 15.932 -3.67969 Vertex 3816 -1.57809 13.7258 -3.20359 Vertex 3817 -1.57805 15.8488 3.24238 Vertex 3818 -1.57707 19.9519 3.30724 Vertex 3819 -1.57685 -13.1939 2.41279 Vertex 3820 -1.57543 19.9163 3.31122 Vertex 3821 -1.57518 3.47644 4.9251 Vertex 3822 -1.57478 17.2506 3.36193 Vertex 3823 -1.5746 19.9381 3.30676 Vertex 3824 -1.57415 -3.67004 4.13388 Vertex 3825 -1.57415 -2.25204 4.1339 Vertex 3826 -1.57415 -0.834042 4.13392 Vertex 3827 -1.57415 0.583956 4.13394 Vertex 3828 -1.57405 19.9263 3.30809 Vertex 3829 -1.57184 -23.8351 -3.30151 Vertex 3830 -1.57121 18.9282 3.25878 Vertex 3831 -1.5712 19.6911 3.25876 Vertex 3832 -1.56954 22.3245 -2.84237 Vertex 3833 -1.56795 22.5665 2.17793 Vertex 3834 -1.56713 15.5269 -3.37354 Vertex 3835 -1.56551 18.0566 2.34431 Vertex 3836 -1.5655 20.5627 2.34424 Vertex 3837 -1.56489 15.2895 -3.04454 Vertex 3838 -1.56484 19.1823 3.31259 Vertex 3839 -1.56484 19.437 3.31258 Vertex 3840 -1.56467 21.2055 3.22883 Vertex 3841 -1.56392 22.4278 -2.67225 Vertex 3842 -1.56178 14.6107 1.32698 Vertex 3843 -1.56111 5.41059 4.93892 Vertex 3844 -1.56079 17.1318 3.11535 Vertex 3845 -1.55956 3.34044 -5.5179 Vertex 3846 -1.55902 17.359 3.43395 Vertex 3847 -1.55698 17.1356 3.1188 Vertex 3848 -1.55559 14.6435 1.08259 Vertex 3849 -1.55349 17.9829 3.63558 Vertex 3850 -1.55216 17.1256 3.1174 Vertex 3851 -1.55135 18.7115 3.178 Vertex 3852 -1.55134 19.9078 3.17797 Vertex 3853 -1.54836 18.4883 -3.62108 Vertex 3854 -1.54782 14.4335 2.26505 Vertex 3855 -1.54479 15.7472 -2.71817 Vertex 3856 -1.54408 17.2111 3.31463 Vertex 3857 -1.54368 14.478 2.5058 Vertex 3858 -1.5434 19.1564 3.31786 Vertex 3859 -1.5434 19.4629 3.31785 Vertex 3860 -1.54226 -6.47624 4.00547 Vertex 3861 -1.53984 20.1741 3.70902 Vertex 3862 -1.53474 14.85 2.76936 Vertex 3863 -1.53367 20.2589 3.70935 Vertex 3864 -1.53238 18.887 3.56704 Vertex 3865 -1.53172 14.6079 2.62049 Vertex 3866 -1.53159 18.8741 3.56735 Vertex 3867 -1.53028 18.0084 2.13531 Vertex 3868 -1.53027 20.6109 2.13524 Vertex 3869 -1.52974 20.1226 3.67867 Vertex 3870 -1.52801 21.8087 2.90295 Vertex 3871 -1.52427 18.8635 3.56764 Vertex 3872 -1.52174 19.5614 2.56725 Vertex 3873 -1.52021 11.7368 0.081587 Vertex 3874 -1.51982 11.7165 0.070014 Vertex 3875 -1.51829 19.1344 3.32404 Vertex 3876 -1.51829 19.485 3.32403 Vertex 3877 -1.51743 16.7884 3.19162 Vertex 3878 -1.51631 18.9226 3.56327 Vertex 3879 -1.51231 16.5184 3.18214 Vertex 3880 -1.51122 20.3771 3.67967 Vertex 3881 -1.51094 18.9025 3.27359 Vertex 3882 -1.51094 19.7168 3.27357 Vertex 3883 -1.51062 22.4025 -2.53831 Vertex 3884 -1.51043 18.8554 3.5679 Vertex 3885 -1.50682 16.8999 -2.39442 Vertex 3886 -1.50495 22.7814 1.94106 Vertex 3887 -1.50465 20.6201 3.61062 Vertex 3888 -1.5025 20.0707 3.63454 Vertex 3889 -1.50155 20.4975 3.64675 Vertex 3890 -1.49933 4.98294 4.96264 Vertex 3891 -1.49792 17.1608 3.23754 Vertex 3892 -1.4959 6.47029 5.06669 Vertex 3893 -1.49536 15.9595 3.18719 Vertex 3894 -1.49479 18.766 3.5731 Vertex 3895 -1.4908 14.4422 1.88735 Vertex 3896 -1.49013 19.1166 3.33096 Vertex 3897 -1.49013 19.5028 3.33095 Vertex 3898 -1.48988 20.6943 3.56852 Vertex 3899 -1.48874 15.0706 2.9781 Vertex 3900 -1.48656 21.4657 3.13016 Vertex 3901 -1.48596 22.4012 -2.42155 Vertex 3902 -1.48463 22.3936 -2.45474 Vertex 3903 -1.48441 14.1278 -3.05245 Vertex 3904 -1.48366 17.9921 1.92361 Vertex 3905 -1.48365 20.6271 1.92354 Vertex 3906 -1.48338 17.0069 3.19346 Vertex 3907 -1.48338 18.981 3.55602 Vertex 3908 -1.48174 17.4894 3.52547 Vertex 3909 -1.47736 18.5954 3.58323 Vertex 3910 -1.47558 22.0368 2.76383 Vertex 3911 -1.47433 -22.2983 -3.28052 Vertex 3912 -1.47387 11.948 0.162942 Vertex 3913 -1.47272 17.1308 3.19784 Vertex 3914 -1.47228 20.7208 -3.53124 Vertex 3915 -1.46848 17.1211 3.19554 Vertex 3916 -1.46804 16.1969 3.16502 Vertex 3917 -1.4611 17.7963 3.59646 Vertex 3918 -1.45994 -12.5875 2.70649 Vertex 3919 -1.45963 19.1036 3.33846 Vertex 3920 -1.45962 19.5158 3.33845 Vertex 3921 -1.4592 18.5054 3.0837 Vertex 3922 -1.4592 20.1139 3.08366 Vertex 3923 -1.45816 18.6885 3.20091 Vertex 3924 -1.45816 19.9308 3.20088 Vertex 3925 -1.45812 20.0184 3.57665 Vertex 3926 -1.45789 -21.4916 -0.735368 Vertex 3927 -1.45724 20.72 3.52045 Vertex 3928 -1.45353 4.73062 -5.62246 Vertex 3929 -1.45198 16.0202 3.15881 Vertex 3930 -1.45061 18.3422 2.94043 Vertex 3931 -1.4506 20.2771 2.94039 Vertex 3932 -1.45001 19.0382 3.53581 Vertex 3933 -1.44793 16.0308 3.15725 Vertex 3934 -1.44751 18.8869 3.28919 Vertex 3935 -1.44751 19.7325 3.28916 Vertex 3936 -1.44722 23.031 1.53065 Vertex 3937 -1.44662 14.4936 1.53985 Vertex 3938 -1.44461 16.7321 -2.19873 Vertex 3939 -1.44345 15.7698 3.49405 Vertex 3940 -1.44051 19.7402 2.85416 Vertex 3941 -1.44023 19.7499 3.40663 Vertex 3942 -1.4384 19.7403 3.21442 Vertex 3943 -1.43831 19.7435 3.39858 Vertex 3944 -1.43778 19.7714 3.41598 Vertex 3945 -1.43663 15.7978 3.48753 Vertex 3946 -1.43514 18.4285 3.61794 Vertex 3947 -1.43468 4.53792 -5.415 Vertex 3948 -1.43279 4.6941 4.77574 Vertex 3949 -1.4326 18.2027 2.77465 Vertex 3950 -1.43259 20.4166 2.77459 Vertex 3951 -1.43095 19.8082 3.42663 Vertex 3952 -1.43031 22.6438 -2.16719 Vertex 3953 -1.42752 19.0956 3.34635 Vertex 3954 -1.42751 19.5237 3.34634 Vertex 3955 -1.42716 23.2997 -4.89584 Vertex 3956 -1.42649 19.9789 3.51097 Vertex 3957 -1.42578 20.8576 3.4476 Vertex 3958 -1.42364 22.0236 -3.16275 Vertex 3959 -1.42251 17.26 3.56062 Vertex 3960 -1.4217 15.6591 3.46823 Vertex 3961 -1.42106 14.5312 1.27168 Vertex 3962 -1.42084 19.8442 3.4244 Vertex 3963 -1.41618 19.0943 3.50263 Vertex 3964 -1.41247 14.3995 2.45526 Vertex 3965 -1.40967 17.2322 3.54534 Vertex 3966 -1.40837 17.6929 3.57602 Vertex 3967 -1.40761 19.9522 3.4375 Vertex 3968 -1.40745 19.8793 3.40929 Vertex 3969 -1.40561 18.0905 2.59043 Vertex 3970 -1.40559 20.5288 2.59036 Vertex 3971 -1.40386 22.4184 -2.86419 Vertex 3972 -1.40202 19.2713 2.63387 Vertex 3973 -1.4012 23.397 -5.10793 Vertex 3974 -1.40092 17.3376 3.59945 Vertex 3975 -1.40071 23.2012 -4.6514 Vertex 3976 -1.39984 14.5387 -2.90405 Vertex 3977 -1.39934 22.5175 -2.69597 Vertex 3978 -1.39927 19.9013 3.40042 Vertex 3979 -1.39867 19.3097 3.371 Vertex 3980 -1.39856 19.1249 3.48117 Vertex 3981 -1.39764 19.1331 2.92622 Vertex 3982 -1.39734 19.9327 3.39969 Vertex 3983 -1.39714 19.1302 3.47145 Vertex 3984 -1.39684 19.1329 3.28646 Vertex 3985 -1.3963 19.91 3.39779 Vertex 3986 -1.39579 22.2894 2.59895 Vertex 3987 -1.39566 19.9205 3.39755 Vertex 3988 -1.39549 21.1069 3.34995 Vertex 3989 -1.39527 17.6727 3.57427 Vertex 3990 -1.39475 23.3154 0.946713 Vertex 3991 -1.3946 19.093 3.35445 Vertex 3992 -1.39459 19.5264 3.35443 Vertex 3993 -1.39371 15.2697 3.2467 Vertex 3994 -1.3928 -21.4147 -1.03516 Vertex 3995 -1.39137 -30.307 -3.72014 Vertex 3996 -1.391 15.8579 3.43053 Vertex 3997 -1.38582 17.6223 3.59296 Vertex 3998 -1.38321 12.35 0.31408 Vertex 3999 -1.38265 21.7377 3.00482 Vertex 4000 -1.38248 18.8816 3.30517 Vertex 4001 -1.38248 19.7377 3.30515 Vertex 4002 -1.37991 17.1954 3.49231 Vertex 4003 -1.37203 14.7141 2.91863 Vertex 4004 -1.37137 15.4659 3.41008 Vertex 4005 -1.3703 18.0084 2.3923 Vertex 4006 -1.37029 20.6109 2.39223 Vertex 4007 -1.36814 18.2652 3.67724 Vertex 4008 -1.36803 14.3536 2.12409 Vertex 4009 -1.36465 23.607 -4.60149 Vertex 4010 -1.36262 18.6808 3.2244 Vertex 4011 -1.36262 19.9386 3.22436 Vertex 4012 -1.36168 19.0956 3.36254 Vertex 4013 -1.36167 19.5237 3.36253 Vertex 4014 -1.35535 -11.6515 3.06806 Vertex 4015 -1.35533 14.4973 2.77853 Vertex 4016 -1.35454 19.5229 2.62421 Vertex 4017 -1.35275 23.6603 -4.89928 Vertex 4018 -1.3507 20.0758 -3.66219 Vertex 4019 -1.34909 6.71821 5.02003 Vertex 4020 -1.34893 23.0478 -5.10143 Vertex 4021 -1.34826 22.4838 -2.56583 Vertex 4022 -1.34688 14.3876 1.80127 Vertex 4023 -1.34662 23.3096 -0.874511 Vertex 4024 -1.34493 17.465 3.66181 Vertex 4025 -1.33889 12.5013 -1.62561 Vertex 4026 -1.33551 18.4954 3.11411 Vertex 4027 -1.3355 20.1239 3.11406 Vertex 4028 -1.33323 17.1496 3.40153 Vertex 4029 -1.33299 16.777 3.35632 Vertex 4030 -1.33133 16.5071 -2.3084 Vertex 4031 -1.32958 14.9586 -2.7584 Vertex 4032 -1.32957 19.1036 3.37043 Vertex 4033 -1.32957 19.5158 3.37042 Vertex 4034 -1.3292 23.5204 -4.33204 Vertex 4035 -1.32859 21.9691 2.86957 Vertex 4036 -1.32755 17.9583 2.18515 Vertex 4037 -1.32753 20.661 2.18508 Vertex 4038 -1.32718 22.4764 -2.44965 Vertex 4039 -1.32513 14.9207 3.12934 Vertex 4040 -1.3242 22.4701 -2.48373 Vertex 4041 -1.3234 22.9482 -4.87701 Vertex 4042 -1.32318 21.3686 3.23779 Vertex 4043 -1.32211 20.146 3.82607 Vertex 4044 -1.32185 23.1016 -4.37459 Vertex 4045 -1.32184 20.0651 3.81358 Vertex 4046 -1.3217 16.5039 3.3352 Vertex 4047 -1.31785 23.16 -5.26138 Vertex 4048 -1.31745 18.8869 3.32116 Vertex 4049 -1.31745 19.7325 3.32114 Vertex 4050 -1.31529 14.4359 1.50241 Vertex 4051 -1.31462 20.263 3.81217 Vertex 4052 -1.31381 20.0205 3.77469 Vertex 4053 -1.31348 16.9978 3.35072 Vertex 4054 -1.31267 20.4974 3.78028 Vertex 4055 -1.31147 20.3802 3.7969 Vertex 4056 -1.31131 12.761 0.462476 Vertex 4057 -1.30944 12.361 -1.36256 Vertex 4058 -1.30834 17.122 3.35409 Vertex 4059 -1.30655 15.9503 3.32305 Vertex 4060 -1.30526 17.1128 3.34998 Vertex 4061 -1.30271 14.3103 0.922714 Vertex 4062 -1.30181 18.3301 2.97702 Vertex 4063 -1.3018 20.2892 2.97697 Vertex 4064 -1.29923 -9.53645 3.60708 Vertex 4065 -1.29906 19.1166 3.37793 Vertex 4066 -1.29906 19.5028 3.37792 Vertex 4067 -1.29716 19.9673 3.72052 Vertex 4068 -1.29625 20.5694 3.75098 Vertex 4069 -1.29585 18.1106 3.70253 Vertex 4070 -1.28717 15.475 -2.60498 Vertex 4071 -1.28179 6.82776 4.84247 Vertex 4072 -1.28175 19.6903 2.89376 Vertex 4073 -1.28104 19.6903 3.25392 Vertex 4074 -1.28021 19.6932 3.43845 Vertex 4075 -1.2796 16.1787 3.28736 Vertex 4076 -1.27926 19.699 3.44736 Vertex 4077 -1.2784 17.9414 1.97407 Vertex 4078 -1.27839 20.6779 1.974 Vertex 4079 -1.27716 19.7173 3.45882 Vertex 4080 -1.27437 16.0881 -2.44382 Vertex 4081 -1.2739 19.7481 3.47283 Vertex 4082 -1.27187 19.9058 3.65108 Vertex 4083 -1.2709 19.1344 3.38485 Vertex 4084 -1.2709 19.485 3.38484 Vertex 4085 -1.26961 14.318 2.00957 Vertex 4086 -1.26709 18.6885 3.24788 Vertex 4087 -1.26708 19.9308 3.24785 Vertex 4088 -1.26699 19.778 3.47432 Vertex 4089 -1.26687 17.251 -2.35172 Vertex 4090 -1.26685 13.6972 0.761545 Vertex 4091 -1.26625 -21.6502 -5.13275 Vertex 4092 -1.26421 13.1808 0.608134 Vertex 4093 -1.26289 16.0013 3.26785 Vertex 4094 -1.26235 18.1889 2.81651 Vertex 4095 -1.26234 20.4304 2.81645 Vertex 4096 -1.26221 20.5961 3.70901 Vertex 4097 -1.26 16.0111 3.26491 Vertex 4098 -1.25965 17.5963 3.71472 Vertex 4099 -1.25916 23.8393 -4.4419 Vertex 4100 -1.25779 14.338 2.65833 Vertex 4101 -1.25643 19.807 3.4633 Vertex 4102 -1.25512 19.8693 3.57747 Vertex 4103 -1.25402 18.9025 3.33675 Vertex 4104 -1.25402 19.7168 3.33673 Vertex 4105 -1.25198 14.5685 1.10039 Vertex 4106 -1.24949 19.8247 3.45656 Vertex 4107 -1.24823 -6.50608 4.13236 Vertex 4108 -1.24733 23.8561 -4.77555 Vertex 4109 -1.24718 12.2607 -1.14015 Vertex 4110 -1.2469 19.8578 3.49966 Vertex 4111 -1.24638 23.4006 -4.09093 Vertex 4112 -1.24619 19.8311 3.45412 Vertex 4113 -1.24579 19.1564 3.39103 Vertex 4114 -1.24579 19.4629 3.39102 Vertex 4115 -1.24467 -13.46 2.32892 Vertex 4116 -1.2441 19.8387 3.45486 Vertex 4117 -1.24323 19.8476 3.45879 Vertex 4118 -1.24126 22.8612 -4.58811 Vertex 4119 -1.23778 14.3578 1.77479 Vertex 4120 -1.23753 17.2349 3.75608 Vertex 4121 -1.23598 6.77915 4.54701 Vertex 4122 -1.23554 19.4513 2.65104 Vertex 4123 -1.23501 20.7361 3.62288 Vertex 4124 -1.2305 14.3035 2.33568 Vertex 4125 -1.22687 17.2084 3.74123 Vertex 4126 -1.22543 17.3114 3.78082 Vertex 4127 -1.22434 19.1823 3.3963 Vertex 4128 -1.22434 19.437 3.39629 Vertex 4129 -1.22333 15.796 3.69142 Vertex 4130 -1.22253 23.7643 -4.15932 Vertex 4131 -1.21953 19.4152 -3.70281 Vertex 4132 -1.21879 15.8234 3.68091 Vertex 4133 -1.21825 17.9648 3.6938 Vertex 4134 -1.2181 18.0754 2.63652 Vertex 4135 -1.21809 20.544 2.63646 Vertex 4136 -1.21798 16.5351 -4.15741 Vertex 4137 -1.21508 21.4985 -3.49464 Vertex 4138 -1.21464 20.9895 3.49261 Vertex 4139 -1.21463 15.1169 3.41067 Vertex 4140 -1.21454 15.9239 -3.85193 Vertex 4141 -1.21182 18.5054 3.14452 Vertex 4142 -1.21181 20.1139 3.14447 Vertex 4143 -1.20888 21.6426 3.1111 Vertex 4144 -1.20777 12.7302 -2.01553 Vertex 4145 -1.20762 23.477 -5.33031 Vertex 4146 -1.20709 19.2113 3.40054 Vertex 4147 -1.20709 19.4081 3.40053 Vertex 4148 -1.20589 18.8022 3.57277 Vertex 4149 -1.20479 19.3205 2.65031 Vertex 4150 -1.20454 14.5442 3.10809 Vertex 4151 -1.20326 17.4017 -4.16339 Vertex 4152 -1.20247 18.9753 3.54262 Vertex 4153 -1.20062 18.6514 3.59139 Vertex 4154 -1.19907 15.4944 -3.56792 Vertex 4155 -1.19831 15.6789 3.67411 Vertex 4156 -1.1977 18.9645 3.53953 Vertex 4157 -1.19545 19.0015 3.54576 Vertex 4158 -1.19445 19.2427 3.40364 Vertex 4159 -1.19445 19.3766 3.40364 Vertex 4160 -1.19424 22.0632 -3.23088 Vertex 4161 -1.19376 18.9283 3.35157 Vertex 4162 -1.19376 19.6911 3.35155 Vertex 4163 -1.19058 17.4379 3.81548 Vertex 4164 -1.18984 17.1714 3.67379 Vertex 4165 -1.18935 18.9546 3.53833 Vertex 4166 -1.18675 19.2758 3.40554 Vertex 4167 -1.18675 19.3436 3.40554 Vertex 4168 -1.18415 19.3097 3.40617 Vertex 4169 -1.18236 22.4308 -2.9496 Vertex 4170 -1.18111 20.8314 -3.71129 Vertex 4171 -1.18044 14.3797 2.9799 Vertex 4172 -1.18029 14.7087 3.28486 Vertex 4173 -1.17743 18.9457 3.53903 Vertex 4174 -1.17691 18.5019 3.63473 Vertex 4175 -1.17664 19.043 3.54893 Vertex 4176 -1.1741 23.6721 -5.18989 Vertex 4177 -1.17395 15.8801 3.6063 Vertex 4178 -1.1739 18.7115 3.27079 Vertex 4179 -1.1739 19.9078 3.27076 Vertex 4180 -1.17304 17.882 3.69195 Vertex 4181 -1.17166 14.3021 1.98857 Vertex 4182 -1.17159 15.2465 -3.30537 Vertex 4183 -1.17039 18.5238 -3.86987 Vertex 4184 -1.17016 17.9922 2.4415 Vertex 4185 -1.17014 20.6271 2.44144 Vertex 4186 -1.16647 22.2805 2.66827 Vertex 4187 -1.16579 19.3678 2.65738 Vertex 4188 -1.16097 21.877 -3.38221 Vertex 4189 -1.16023 19.0845 3.53999 Vertex 4190 -1.16021 17.8624 3.69696 Vertex 4191 -1.15664 21.9466 2.92126 Vertex 4192 -1.15389 22.9823 -4.14796 Vertex 4193 -1.153 18.3422 3.0136 Vertex 4194 -1.15299 20.2771 3.01355 Vertex 4195 -1.15089 17.8123 3.71904 Vertex 4196 -1.14994 -21.4987 -1.24995 Vertex 4197 -1.14948 22.8024 -4.35597 Vertex 4198 -1.14624 19.1259 3.51896 Vertex 4199 -1.14585 15.695 -3.00421 Vertex 4200 -1.14521 -12.6054 2.63504 Vertex 4201 -1.14458 22.5651 2.41699 Vertex 4202 -1.14375 15.4721 3.62896 Vertex 4203 -1.14314 14.4718 1.29458 Vertex 4204 -1.14254 19.622 2.91353 Vertex 4205 -1.14254 19.622 3.27363 Vertex 4206 -1.14205 19.1578 2.94925 Vertex 4207 -1.14205 19.1578 3.30935 Vertex 4208 -1.14135 19.155 3.49416 Vertex 4209 -1.14118 19.6246 3.45831 Vertex 4210 -1.13995 19.1494 3.50368 Vertex 4211 -1.13854 21.252 3.35891 Vertex 4212 -1.13846 19.6299 3.46758 Vertex 4213 -1.13814 18.9633 3.36524 Vertex 4214 -1.13814 19.656 3.36522 Vertex 4215 -1.13806 18.9222 3.54242 Vertex 4216 -1.13746 23.6311 -3.92781 Vertex 4217 -1.13478 18.3538 3.70276 Vertex 4218 -1.13453 19.6456 3.47951 Vertex 4219 -1.13387 23.2906 -5.44041 Vertex 4220 -1.13223 20.0379 3.90175 Vertex 4221 -1.13058 20.7976 -4.14715 Vertex 4222 -1.13054 19.9612 3.87784 Vertex 4223 -1.1302 20.1531 3.90348 Vertex 4224 -1.13003 14.2599 2.23184 Vertex 4225 -1.12997 22.8513 -5.21825 Vertex 4226 -1.12938 19.6716 3.4941 Vertex 4227 -1.129 20.2688 3.9048 Vertex 4228 -1.12863 20.3849 3.90569 Vertex 4229 -1.12673 17.6031 3.82859 Vertex 4230 -1.12642 17.1241 3.55376 Vertex 4231 -1.12511 19.9231 3.83174 Vertex 4232 -1.12472 20.1199 -4.35024 Vertex 4233 -1.12469 23.4539 0.20058 Vertex 4234 -1.12185 16.8397 -2.66445 Vertex 4235 -1.12151 19.697 3.49626 Vertex 4236 -1.1197 17.9414 2.23625 Vertex 4237 -1.11968 20.6779 2.23617 Vertex 4238 -1.11907 23.1282 -1.58431 Vertex 4239 -1.11559 19.8711 3.7697 Vertex 4240 -1.1118 20.4584 3.88761 Vertex 4241 -1.11093 19.7218 3.48598 Vertex 4242 -1.11068 23.9965 -4.41706 Vertex 4243 -1.10771 14.8731 3.51022 Vertex 4244 -1.10554 16.7751 3.49899 Vertex 4245 -1.10388 19.7367 3.47956 Vertex 4246 -1.10317 20.1507 -3.8384 Vertex 4247 -1.1027 22.9494 -5.3596 Vertex 4248 -1.102 19.8052 3.69171 Vertex 4249 -1.10151 20.8012 -4.35621 Vertex 4250 -1.10035 19.7416 3.47701 Vertex 4251 -1.0974 19.7472 3.47815 Vertex 4252 -1.09727 22.7614 -5.00888 Vertex 4253 -1.09501 19.7535 3.48297 Vertex 4254 -1.09485 19.7683 3.61088 Vertex 4255 -1.09483 16.9803 3.48885 Vertex 4256 -1.09416 19.7605 3.52722 Vertex 4257 -1.09356 16.5113 3.47571 Vertex 4258 -1.0934 17.0961 3.49125 Vertex 4259 -1.09306 20.1312 -4.58962 Vertex 4260 -1.09245 23.2677 -3.89421 Vertex 4261 -1.0921 18.2027 2.85836 Vertex 4262 -1.09209 20.4166 2.8583 Vertex 4263 -1.09117 18.5353 3.17418 Vertex 4264 -1.09116 20.0841 3.17413 Vertex 4265 -1.09098 22.8003 2.16742 Vertex 4266 -1.09078 17.0873 3.48627 Vertex 4267 -1.08881 15.966 3.4676 Vertex 4268 -1.08854 19.007 3.37743 Vertex 4269 -1.08853 19.6124 3.37742 Vertex 4270 -1.08578 23.8215 -5.09601 Vertex 4271 -1.08536 18.7493 3.29256 Vertex 4272 -1.08536 19.87 3.29253 Vertex 4273 -1.08496 23.9844 -4.73675 Vertex 4274 -1.08477 18.2158 3.74192 Vertex 4275 -1.0838 14.2489 2.87425 Vertex 4276 -1.08123 12.1513 -0.910214 Vertex 4277 -1.08118 -11.5593 2.94872 Vertex 4278 -1.08071 23.9328 -4.13322 Vertex 4279 -1.07942 14.2363 2.55803 Vertex 4280 -1.07852 20.4892 3.85057 Vertex 4281 -1.07594 -13.1685 2.17756 Vertex 4282 -1.07571 20.8629 -3.77099 Vertex 4283 -1.07365 15.3573 3.62561 Vertex 4284 -1.0706 14.3893 1.52017 Vertex 4285 -1.06796 17.9243 2.0258 Vertex 4286 -1.06795 20.6949 2.02573 Vertex 4287 -1.06184 15.328 3.61275 Vertex 4288 -1.06107 15.2065 3.61844 Vertex 4289 -1.0589 16.1889 3.41903 Vertex 4290 -1.05887 20.8516 -3.91628 Vertex 4291 -1.05631 20.1562 -4.08011 Vertex 4292 -1.05163 20.6174 3.77163 Vertex 4293 -1.04912 20.1665 -3.9095 Vertex 4294 -1.04901 23.4883 -3.77377 Vertex 4295 -1.04617 19.0581 3.38785 Vertex 4296 -1.04617 19.5613 3.38783 Vertex 4297 -1.04507 16.0136 3.39636 Vertex 4298 -1.0428 23.0726 1.74578 Vertex 4299 -1.04273 16.023 3.39258 Vertex 4300 -1.0423 13.7644 -3.51443 Vertex 4301 -1.04169 13.744 -3.526 Vertex 4302 -1.04124 17.0622 -2.49695 Vertex 4303 -1.03512 17.2042 3.96579 Vertex 4304 -1.03391 17.8072 3.82015 Vertex 4305 -1.03255 17.2806 3.97808 Vertex 4306 -1.03236 14.3211 1.77717 Vertex 4307 -1.03115 20.8429 3.6508 Vertex 4308 -1.0306 18.0905 2.68262 Vertex 4309 -1.03058 20.5288 2.68256 Vertex 4310 -1.02688 18.088 3.7522 Vertex 4311 -1.02639 17.1791 3.94962 Vertex 4312 -1.02288 19.5352 2.91346 Vertex 4313 -1.02288 19.5352 3.27356 Vertex 4314 -1.0212 19.5377 3.45818 Vertex 4315 -1.01993 -13.4847 2.14227 Vertex 4316 -1.01869 17.4082 3.98648 Vertex 4317 -1.01783 19.5426 3.46731 Vertex 4318 -1.01209 19.1153 3.39622 Vertex 4319 -1.01209 19.504 3.39621 Vertex 4320 -1.0099 13.9755 -3.43307 Vertex 4321 -1.00989 19.5563 3.47807 Vertex 4322 -1.00887 14.3917 3.27809 Vertex 4323 -1.00786 18.3781 3.04928 Vertex 4324 -1.00785 20.2413 3.04923 Vertex 4325 -1.00671 21.5235 3.2218 Vertex 4326 -1.0062 14.5139 3.42066 Vertex 4327 -1.0046 22.6795 -4.73149 Vertex 4328 -1.00365 18.8009 3.31264 Vertex 4329 -1.00364 19.8185 3.31262 Vertex 4330 -1.00004 23.3818 1.15206 Vertex 4331 -0.998805 -9.53699 3.74189 Vertex 4332 -0.997866 22.7864 -2.17998 Vertex 4333 -0.997381 14.2623 2.02183 Vertex 4334 -0.997373 19.5787 3.49046 Vertex 4335 -0.995076 23.7931 -3.88523 Vertex 4336 -0.994924 -12.9984 2.40676 Vertex 4337 -0.992853 18.0139 3.76184 Vertex 4338 -0.989805 -19.9874 -0.37697 Vertex 4339 -0.987792 22.6542 -2.74836 Vertex 4340 -0.987128 19.1774 3.40236 Vertex 4341 -0.987125 19.442 3.40235 Vertex 4342 -0.985686 14.9699 3.68112 Vertex 4343 -0.984394 19.6012 3.49021 Vertex 4344 -0.982692 17.9934 3.77084 Vertex 4345 -0.98185 14.2785 3.1689 Vertex 4346 -0.981284 19.4564 -3.87598 Vertex 4347 -0.981275 17.5621 3.97371 Vertex 4348 -0.980573 21.5628 -3.53756 Vertex 4349 -0.979581 15.8275 3.86088 Vertex 4350 -0.976537 18.5842 3.20235 Vertex 4351 -0.976529 20.0352 3.20232 Vertex 4352 -0.973853 17.1392 3.85909 Vertex 4353 -0.973851 14.645 3.59662 Vertex 4354 -0.973467 21.558 -3.76905 Vertex 4355 -0.972917 15.7142 3.84687 Vertex 4356 -0.972742 15.8556 3.84971 Vertex 4357 -0.971899 19.2427 3.4061 Vertex 4358 -0.971898 19.3766 3.4061 Vertex 4359 -0.971654 20.8624 -4.54346 Vertex 4360 -0.970954 19.6236 3.47732 Vertex 4361 -0.970016 18.0084 2.49071 Vertex 4362 -0.970003 20.6109 2.49064 Vertex 4363 -0.96862 17.9685 3.7937 Vertex 4364 -0.96678 19.3097 3.40736 Vertex 4365 -0.965931 19.8623 3.90179 Vertex 4366 -0.964046 19.9346 3.93639 Vertex 4367 -0.963622 19.8305 3.84983 Vertex 4368 -0.96242 19.6372 3.46941 Vertex 4369 -0.961312 20.19 -4.79822 Vertex 4370 -0.960084 14.2131 2.25414 Vertex 4371 -0.958788 19.6418 3.46648 Vertex 4372 -0.957967 20.0474 3.95362 Vertex 4373 -0.957809 19.7819 3.78207 Vertex 4374 -0.955891 19.5248 -4.37833 Vertex 4375 -0.955538 19.6461 3.46742 Vertex 4376 -0.955067 17.9078 3.84226 Vertex 4377 -0.95413 20.1634 3.97044 Vertex 4378 -0.953293 11.6543 0.192958 Vertex 4379 -0.953293 11.6747 0.20453 Vertex 4380 -0.952852 23.1127 -5.52019 Vertex 4381 -0.952752 15.5157 3.80768 Vertex 4382 -0.95267 19.6503 3.47224 Vertex 4383 -0.952535 20.2826 3.98684 Vertex 4384 -0.952371 -13.4461 -3.2809 Vertex 4385 -0.950309 22.6211 -2.61506 Vertex 4386 -0.950101 21.102 3.50996 Vertex 4387 -0.949385 19.6603 3.52017 Vertex 4388 -0.948489 19.7166 3.69852 Vertex 4389 -0.948483 21.5699 -3.90335 Vertex 4390 -0.948216 18.5651 3.65845 Vertex 4391 -0.947478 18.6965 3.60565 Vertex 4392 -0.945681 19.6761 3.61122 Vertex 4393 -0.942642 23.9251 -5.04869 Vertex 4394 -0.941746 14.3776 -3.28193 Vertex 4395 -0.940664 18.4314 3.71602 Vertex 4396 -0.938449 18.8258 3.55761 Vertex 4397 -0.936545 20.3613 3.9784 Vertex 4398 -0.936424 -12.7659 2.51495 Vertex 4399 -0.935837 22.6128 -2.49546 Vertex 4400 -0.934067 17.4389 -4.31825 Vertex 4401 -0.93299 22.6073 -2.53077 Vertex 4402 -0.930777 18.865 3.33056 Vertex 4403 -0.930773 19.7544 3.33053 Vertex 4404 -0.92928 17.2854 4.08205 Vertex 4405 -0.926925 15.9152 3.7697 Vertex 4406 -0.926039 18.2438 2.89918 Vertex 4407 -0.926029 20.3755 2.89913 Vertex 4408 -0.925917 17.4136 4.07733 Vertex 4409 -0.924916 18.5525 -4.03593 Vertex 4410 -0.923131 19.5597 -4.60358 Vertex 4411 -0.920308 17.7425 3.93976 Vertex 4412 -0.920253 18.2985 3.75376 Vertex 4413 -0.919928 11.8859 0.285886 Vertex 4414 -0.914602 14.1519 2.79114 Vertex 4415 -0.911847 17.9583 2.28734 Vertex 4416 -0.911833 20.661 2.28727 Vertex 4417 -0.908335 19.4435 2.91038 Vertex 4418 -0.908335 19.4435 3.27048 Vertex 4419 -0.907557 22.6232 -4.50509 Vertex 4420 -0.907109 17.4102 4.09573 Vertex 4421 -0.906353 23.647 -3.72296 Vertex 4422 -0.906238 19.4454 3.45509 Vertex 4423 -0.906162 20.3993 3.94512 Vertex 4424 -0.904181 16.7837 -2.56079 Vertex 4425 -0.902047 19.4493 3.46421 Vertex 4426 -0.901436 -12.4844 2.49631 Vertex 4427 -0.900802 19.4737 -3.95306 Vertex 4428 -0.900037 21.5826 -3.62903 Vertex 4429 -0.899847 15.405 3.80731 Vertex 4430 -0.899411 14.1819 3.07855 Vertex 4431 -0.898065 16.5687 -4.29868 Vertex 4432 -0.897828 17.5376 4.05795 Vertex 4433 -0.896805 22.8432 -3.97151 Vertex 4434 -0.892442 19.2129 2.92664 Vertex 4435 -0.892442 19.2129 3.28674 Vertex 4436 -0.892338 19.4965 -4.12051 Vertex 4437 -0.892102 12.9034 -2.28661 Vertex 4438 -0.891147 19.4597 3.47431 Vertex 4439 -0.890607 19.2102 3.47115 Vertex 4440 -0.890209 17.905 3.8949 Vertex 4441 -0.888333 21.8398 3.04437 Vertex 4442 -0.886984 18.1661 3.77166 Vertex 4443 -0.886938 19.2049 3.47988 Vertex 4444 -0.886827 14.7413 3.73469 Vertex 4445 -0.884369 14.7885 -3.13354 Vertex 4446 -0.882921 17.96 3.86165 Vertex 4447 -0.882313 22.6888 -2.84609 Vertex 4448 -0.878233 17.8369 3.93381 Vertex 4449 -0.877506 17.0845 3.69421 Vertex 4450 -0.877295 19.192 3.48745 Vertex 4451 -0.876392 17.5294 4.08131 Vertex 4452 -0.876386 22.6668 -4.16744 Vertex 4453 -0.875765 -21.5005 -3.24821 Vertex 4454 -0.875654 20.5013 3.89383 Vertex 4455 -0.873762 14.1491 2.49111 Vertex 4456 -0.873541 19.4765 3.48542 Vertex 4457 -0.870743 18.6509 3.22836 Vertex 4458 -0.870736 19.9684 3.22833 Vertex 4459 -0.869961 18.4369 3.08318 Vertex 4460 -0.869952 20.1824 3.08313 Vertex 4461 -0.868538 18.94 3.34585 Vertex 4462 -0.868534 19.6793 3.34584 Vertex 4463 -0.867803 18.0886 3.78571 Vertex 4464 -0.867391 23.1217 -3.7419 Vertex 4465 -0.866932 18.0258 4.04017 Vertex 4466 -0.865548 18.6902 -4.54415 Vertex 4467 -0.864426 15.1894 3.75266 Vertex 4468 -0.863465 18.935 3.51255 Vertex 4469 -0.862715 18.0658 3.7959 Vertex 4470 -0.861906 21.9578 -3.41673 Vertex 4471 -0.86168 19.1715 3.49385 Vertex 4472 -0.861276 21.9714 -3.55436 Vertex 4473 -0.860535 17.944 3.97675 Vertex 4474 -0.85884 -20.0577 -5.38738 Vertex 4475 -0.858285 15.3468 3.77413 Vertex 4476 -0.857668 17.9034 3.92718 Vertex 4477 -0.857522 17.9414 2.07754 Vertex 4478 -0.857507 20.6779 2.07747 Vertex 4479 -0.857447 17.9032 3.93908 Vertex 4480 -0.857033 19.4937 3.48398 Vertex 4481 -0.855053 17.8453 3.95586 Vertex 4482 -0.854972 12.2879 0.437024 Vertex 4483 -0.85369 17.6161 -4.84768 Vertex 4484 -0.852613 15.2878 3.75587 Vertex 4485 -0.851178 18.0397 3.81936 Vertex 4486 -0.850634 19.1513 3.48996 Vertex 4487 -0.850161 17.7012 4.01621 Vertex 4488 -0.850039 17.9696 4.07183 Vertex 4489 -0.84771 18.1358 2.72758 Vertex 4490 -0.847697 20.4835 2.72752 Vertex 4491 -0.846475 15.3175 3.76127 Vertex 4492 -0.846421 23.5397 -5.56298 Vertex 4493 -0.845981 21.9821 -3.61898 Vertex 4494 -0.845023 20.6672 3.82453 Vertex 4495 -0.844159 19.1311 3.47576 Vertex 4496 -0.843601 18.1077 4.00712 Vertex 4497 -0.843352 17.8981 4.01384 Vertex 4498 -0.843211 22.5249 -3.00634 Vertex 4499 -0.8426 17.8527 3.97137 Vertex 4500 -0.842275 18.0983 4.10842 Vertex 4501 -0.84213 16.0065 3.62084 Vertex 4502 -0.841621 19.5112 3.47 Vertex 4503 -0.840872 17.8591 3.98035 Vertex 4504 -0.84061 23.5293 0.52043 Vertex 4505 -0.840061 18.0312 3.94688 Vertex 4506 -0.839972 23.3388 -3.63353 Vertex 4507 -0.839312 22.2115 -3.25307 Vertex 4508 -0.838495 15.2083 -2.98788 Vertex 4509 -0.838353 17.6796 -5.07831 Vertex 4510 -0.83823 18.7425 -4.76648 Vertex 4511 -0.837669 17.9941 3.91019 Vertex 4512 -0.83694 19.1177 3.46486 Vertex 4513 -0.836423 17.9963 3.89708 Vertex 4514 -0.836402 12.0577 -0.700179 Vertex 4515 -0.835847 17.0162 -5.27256 Vertex 4516 -0.835082 16.7827 3.61961 Vertex 4517 -0.834912 16.9218 -5.04656 Vertex 4518 -0.833735 17.176 4.11351 Vertex 4519 -0.831882 19.5219 3.46133 Vertex 4520 -0.83071 16.7525 -5.34922 Vertex 4521 -0.830435 17.7915 3.99121 Vertex 4522 -0.829643 16.3379 -2.6733 Vertex 4523 -0.828977 19.111 3.45726 Vertex 4524 -0.828724 23.6424 -5.47334 Vertex 4525 -0.828093 17.8056 3.99796 Vertex 4526 -0.827914 16.5403 3.60367 Vertex 4527 -0.827901 17.053 3.60932 Vertex 4528 -0.827815 19.5257 3.45797 Vertex 4529 -0.82743 16.9546 3.60786 Vertex 4530 -0.827351 18.0363 4.14044 Vertex 4531 -0.826855 17.1518 4.09573 Vertex 4532 -0.826748 17.2486 4.12981 Vertex 4533 -0.825864 17.9142 4.1003 Vertex 4534 -0.825647 18.024 3.87183 Vertex 4535 -0.825084 21.6184 -4.03195 Vertex 4536 -0.825037 17.0447 3.60442 Vertex 4537 -0.824439 19.101 3.45543 Vertex 4538 -0.823982 19.5292 3.45835 Vertex 4539 -0.823472 17.6835 4.04949 Vertex 4540 -0.823325 19.0879 3.45936 Vertex 4541 -0.820754 17.8082 4.00942 Vertex 4542 -0.820382 19.5324 3.4625 Vertex 4543 -0.81991 18.1744 4.06893 Vertex 4544 -0.818464 19.0242 3.35816 Vertex 4545 -0.818462 19.5952 3.35815 Vertex 4546 -0.81833 17.8515 4.04762 Vertex 4547 -0.817788 15.7248 -2.83447 Vertex 4548 -0.816907 15.9419 -3.97719 Vertex 4549 -0.816626 17.8162 4.01733 Vertex 4550 -0.81422 14.9991 3.79755 Vertex 4551 -0.813052 14.4327 3.66987 Vertex 4552 -0.811949 18.5744 -4.11926 Vertex 4553 -0.811083 19.5522 3.5053 Vertex 4554 -0.809211 16.6074 -5.14078 Vertex 4555 -0.808475 21.3945 3.3491 Vertex 4556 -0.807561 12.6988 0.585421 Vertex 4557 -0.805926 16.2275 3.56004 Vertex 4558 -0.805893 17.3696 4.14462 Vertex 4559 -0.805705 17.975 4.16889 Vertex 4560 -0.805351 14.2482 1.04566 Vertex 4561 -0.80534 18.0772 3.83447 Vertex 4562 -0.803581 19.8021 3.92179 Vertex 4563 -0.802854 14.3362 3.53674 Vertex 4564 -0.80149 19.7777 3.86656 Vertex 4565 -0.801117 17.769 4.02946 Vertex 4566 -0.800678 18.131 3.80075 Vertex 4567 -0.798905 19.3468 2.90429 Vertex 4568 -0.798905 19.3468 3.26439 Vertex 4569 -0.798789 19.8635 3.96322 Vertex 4570 -0.798531 16.0569 3.54436 Vertex 4571 -0.798147 22.0524 -3.38713 Vertex 4572 -0.798125 18.1071 3.81153 Vertex 4573 -0.79748 19.7258 3.78608 Vertex 4574 -0.797061 18.3683 3.78154 Vertex 4575 -0.796987 23.4393 -5.63853 Vertex 4576 -0.796302 19.3479 3.44905 Vertex 4577 -0.796132 16.0664 3.54027 Vertex 4578 -0.796085 19.5886 3.58678 Vertex 4579 -0.794408 17.8595 4.12558 Vertex 4580 -0.794057 19.6012 -4.79626 Vertex 4581 -0.79216 18.6203 -4.28866 Vertex 4582 -0.79213 17.7699 4.04131 Vertex 4583 -0.79155 19.6465 3.68037 Vertex 4584 -0.791094 19.3501 3.45826 Vertex 4585 -0.789582 14.514 1.21606 Vertex 4586 -0.789355 19.0623 3.46438 Vertex 4587 -0.787116 19.9621 3.99086 Vertex 4588 -0.787033 16.4849 -5.48485 Vertex 4589 -0.786984 21.9814 -3.45977 Vertex 4590 -0.786565 18.1615 4.18147 Vertex 4591 -0.785596 18.1344 3.81547 Vertex 4592 -0.785469 17.8043 4.0781 Vertex 4593 -0.785021 14.2566 3.42863 Vertex 4594 -0.78471 17.7744 4.05001 Vertex 4595 -0.783415 22.2008 2.82662 Vertex 4596 -0.782565 17.4685 -4.40807 Vertex 4597 -0.782283 -17.856 -4.60472 Vertex 4598 -0.781929 18.16 3.92423 Vertex 4599 -0.78179 19.1153 3.36718 Vertex 4600 -0.781789 19.504 3.36717 Vertex 4601 -0.781535 18.132 3.8937 Vertex 4602 -0.781374 18.1311 3.83348 Vertex 4603 -0.780044 18.2155 3.97267 Vertex 4604 -0.778864 18.1315 3.88108 Vertex 4605 -0.778809 18.1312 3.86101 Vertex 4606 -0.778288 19.3558 3.46824 Vertex 4607 -0.777336 17.9144 4.19376 Vertex 4608 -0.777325 24.0858 -4.43327 Vertex 4609 -0.777287 20.065 4.01618 Vertex 4610 -0.776394 18.7339 3.25155 Vertex 4611 -0.776389 19.8854 3.25152 Vertex 4612 -0.7761 18.2337 3.80326 Vertex 4613 -0.77529 18.0981 4.21967 Vertex 4614 -0.775265 18.4818 3.76523 Vertex 4615 -0.774803 18.0566 2.5387 Vertex 4616 -0.77479 20.5627 2.53863 Vertex 4617 -0.774491 23.7353 -5.4033 Vertex 4618 -0.77403 13.6351 0.884489 Vertex 4619 -0.774019 13.1186 0.731077 Vertex 4620 -0.771035 17.1111 3.99207 Vertex 4621 -0.769356 -11.5418 3.0213 Vertex 4622 -0.769305 20.1724 4.03917 Vertex 4623 -0.768988 18.2312 4.1323 Vertex 4624 -0.768262 18.3111 2.93797 Vertex 4625 -0.768252 20.3082 2.93792 Vertex 4626 -0.766695 -17.7746 0.381241 Vertex 4627 -0.765365 22.7632 -5.31193 Vertex 4628 -0.764492 14.5208 3.77918 Vertex 4629 -0.764469 17.8306 4.13953 Vertex 4630 -0.762632 17.5277 4.13305 Vertex 4631 -0.762128 18.613 3.72161 Vertex 4632 -0.761774 19.2549 2.91181 Vertex 4633 -0.761774 19.2549 3.27191 Vertex 4634 -0.761554 14.1017 3.00703 Vertex 4635 -0.761286 15.4971 -3.70517 Vertex 4636 -0.760253 18.2645 4.02198 Vertex 4637 -0.759552 14.1938 3.34554 Vertex 4638 -0.759418 19.2113 3.37267 Vertex 4639 -0.759417 19.4081 3.37267 Vertex 4640 -0.759395 15.562 3.94887 Vertex 4641 -0.75926 19.2531 3.45624 Vertex 4642 -0.758546 16.3321 -5.30589 Vertex 4643 -0.757957 15.7468 3.97779 Vertex 4644 -0.757883 19.365 3.47897 Vertex 4645 -0.757865 20.9187 3.69092 Vertex 4646 -0.757853 18.0339 4.2534 Vertex 4647 -0.757353 24.0278 -4.15956 Vertex 4648 -0.756553 17.6663 4.09154 Vertex 4649 -0.755772 17.5275 -4.58455 Vertex 4650 -0.75423 19.2496 3.46481 Vertex 4651 -0.754027 17.7884 4.09338 Vertex 4652 -0.753428 15.8534 3.98593 Vertex 4653 -0.75283 24.057 -4.7259 Vertex 4654 -0.751898 19.3097 3.37452 Vertex 4655 -0.751421 20.2453 4.03418 Vertex 4656 -0.750052 19.2839 2.90477 Vertex 4657 -0.750052 19.2839 3.26486 Vertex 4658 -0.749325 18.7423 3.66899 Vertex 4659 -0.749156 17.8759 4.20569 Vertex 4660 -0.747309 19.2838 3.44943 Vertex 4661 -0.746344 22.8544 -5.44599 Vertex 4662 -0.745807 15.8817 3.97329 Vertex 4663 -0.745636 18.2125 3.82554 Vertex 4664 -0.745135 14.8028 3.83488 Vertex 4665 -0.742693 18.5172 3.11446 Vertex 4666 -0.742684 20.1021 3.11442 Vertex 4667 -0.741823 19.2835 3.45846 Vertex 4668 -0.741709 18.1952 3.84364 Vertex 4669 -0.741659 22.6517 -3.7285 Vertex 4670 -0.7398 -15.6092 0.833923 Vertex 4671 -0.739428 19.3746 3.47756 Vertex 4672 -0.738505 15.4331 3.91009 Vertex 4673 -0.738416 14.0705 2.73272 Vertex 4674 -0.73815 22.6763 -5.10651 Vertex 4675 -0.737582 19.2447 3.47007 Vertex 4676 -0.736857 18.8698 3.60737 Vertex 4677 -0.736124 18.2089 3.83739 Vertex 4678 -0.736048 17.8275 4.14214 Vertex 4679 -0.735474 14.4325 1.39568 Vertex 4680 -0.734557 22.9295 -3.50799 Vertex 4681 -0.734254 17.9692 4.28263 Vertex 4682 -0.733469 14.2773 1.80841 Vertex 4683 -0.731203 15.2342 -3.48261 Vertex 4684 -0.729335 14.2074 2.02125 Vertex 4685 -0.727707 18.222 3.86625 Vertex 4686 -0.727636 -21.5569 -3.54963 Vertex 4687 -0.7271 19.2841 3.46682 Vertex 4688 -0.725809 22.0242 -3.71826 Vertex 4689 -0.724005 17.804 4.09347 Vertex 4690 -0.723637 20.2837 4.0012 Vertex 4691 -0.723224 22.076 -3.43017 Vertex 4692 -0.722925 19.3846 3.46401 Vertex 4693 -0.722558 18.3072 4.07217 Vertex 4694 -0.721165 17.8595 4.20467 Vertex 4695 -0.720807 22.5158 2.58719 Vertex 4696 -0.720643 18.2564 3.91252 Vertex 4697 -0.716457 14.3536 1.59313 Vertex 4698 -0.716119 21.6851 3.18107 Vertex 4699 -0.716045 18.3014 3.95507 Vertex 4700 -0.715893 17.8332 4.14796 Vertex 4701 -0.712261 19.3908 3.45532 Vertex 4702 -0.710206 18.7772 -4.95567 Vertex 4703 -0.709783 15.6737 -3.19752 Vertex 4704 -0.70976 17.7179 -5.27645 Vertex 4705 -0.709315 19.2386 3.47202 Vertex 4706 -0.709195 18.2508 3.88334 Vertex 4707 -0.709115 18.0084 2.33718 Vertex 4708 -0.709101 20.6109 2.33711 Vertex 4709 -0.708088 17.9245 4.29186 Vertex 4710 -0.707931 22.0867 -3.49479 Vertex 4711 -0.70792 18.2113 4.25313 Vertex 4712 -0.707444 -15.6751 -3.66791 Vertex 4713 -0.707435 19.3933 3.45149 Vertex 4714 -0.706967 17.0765 -5.46646 Vertex 4715 -0.706854 18.2577 3.89558 Vertex 4716 -0.704817 16.2133 -5.67947 Vertex 4717 -0.704699 15.941 3.88917 Vertex 4718 -0.704639 14.1368 3.27122 Vertex 4719 -0.704165 16.7933 -4.78845 Vertex 4720 -0.704153 18.3283 3.98378 Vertex 4721 -0.703141 19.2857 3.4745 Vertex 4722 -0.703049 17.819 4.09803 Vertex 4723 -0.703003 -21.5335 -2.96162 Vertex 4724 -0.702729 19.3963 3.45096 Vertex 4725 -0.701831 16.853 -5.52568 Vertex 4726 -0.700788 17.6955 4.10674 Vertex 4727 -0.700508 22.7845 2.3261 Vertex 4728 -0.699552 18.2762 4.19376 Vertex 4729 -0.698849 14.144 2.23167 Vertex 4730 -0.698144 19.3998 3.45375 Vertex 4731 -0.697025 16.8156 -2.84991 Vertex 4732 -0.695837 18.1439 4.29676 Vertex 4733 -0.695812 18.8311 3.27136 Vertex 4734 -0.695808 19.7883 3.27134 Vertex 4735 -0.695287 15.3604 3.86145 Vertex 4736 -0.694201 17.8565 4.19603 Vertex 4737 -0.693944 22.6911 -3.19247 Vertex 4738 -0.693811 20.3756 3.96236 Vertex 4739 -0.692914 23.8832 -3.90476 Vertex 4740 -0.691634 17.8478 4.13655 Vertex 4741 -0.688451 22.4076 -3.41895 Vertex 4742 -0.687271 19.0189 3.53854 Vertex 4743 -0.687232 23.0836 1.88735 Vertex 4744 -0.683722 23.8184 -5.35287 Vertex 4745 -0.682919 16.0958 -5.54189 Vertex 4746 -0.682843 15.2795 3.82912 Vertex 4747 -0.680982 23.4129 1.27096 Vertex 4748 -0.680421 23.3413 -5.70001 Vertex 4749 -0.680046 20.9412 -4.66502 Vertex 4750 -0.679354 17.8999 4.28107 Vertex 4751 -0.679254 19.4363 3.48262 Vertex 4752 -0.67905 19.2376 3.45865 Vertex 4753 -0.677767 18.0754 4.33555 Vertex 4754 -0.676732 15.3092 3.83446 Vertex 4755 -0.676528 19.2829 3.46481 Vertex 4756 -0.673942 18.2099 2.7703 Vertex 4757 -0.67393 20.4094 2.77024 Vertex 4758 -0.673071 18.3639 4.02737 Vertex 4759 -0.67158 20.2654 -4.93332 Vertex 4760 -0.671512 16.5929 -5.63521 Vertex 4761 -0.671368 17.7571 4.09753 Vertex 4762 -0.670731 18.3387 4.11866 Vertex 4763 -0.668949 15.1856 3.84497 Vertex 4764 -0.668265 17.8671 4.17977 Vertex 4765 -0.66628 17.0539 3.80255 Vertex 4766 -0.664703 22.5937 -4.82972 Vertex 4767 -0.663775 18.3867 3.858 Vertex 4768 -0.663406 19.223 3.44137 Vertex 4769 -0.661943 20.5208 3.91767 Vertex 4770 -0.661407 19.2959 3.4542 Vertex 4771 -0.657173 14.6006 3.86466 Vertex 4772 -0.65371 18.0057 4.36949 Vertex 4773 -0.653306 23.9826 -5.02644 Vertex 4774 -0.65272 19.1923 3.42534 Vertex 4775 -0.652617 19.2839 3.44398 Vertex 4776 -0.652262 17.9921 2.128 Vertex 4777 -0.652248 20.6271 2.12793 Vertex 4778 -0.652237 19.2369 3.43402 Vertex 4779 -0.651659 18.3202 3.88689 Vertex 4780 -0.651553 -12.3686 2.50251 Vertex 4781 -0.651513 19.3235 3.45113 Vertex 4782 -0.650342 17.889 4.2627 Vertex 4783 -0.649951 17.8443 4.08603 Vertex 4784 -0.649538 19.1163 3.4713 Vertex 4785 -0.646758 23.0343 -5.5855 Vertex 4786 -0.646308 19.3254 3.44706 Vertex 4787 -0.646101 19.3191 3.44555 Vertex 4788 -0.64606 19.506 3.53756 Vertex 4789 -0.644561 17.791 4.09104 Vertex 4790 -0.644388 18.3804 4.05337 Vertex 4791 -0.643577 19.2003 3.41851 Vertex 4792 -0.643483 19.7806 3.93783 Vertex 4793 -0.643162 19.1876 3.41549 Vertex 4794 -0.642881 19.3272 3.44641 Vertex 4795 -0.642673 19.3209 3.4449 Vertex 4796 -0.641939 19.1627 3.42071 Vertex 4797 -0.640817 14.0764 2.45759 Vertex 4798 -0.640598 16.6057 -4.38681 Vertex 4799 -0.640505 18.3409 3.88351 Vertex 4800 -0.63888 18.3585 3.87741 Vertex 4801 -0.638711 19.7647 3.88193 Vertex 4802 -0.638581 18.505 3.8504 Vertex 4803 -0.638537 17.8731 4.12455 Vertex 4804 -0.637802 19.3307 3.44852 Vertex 4805 -0.637649 19.1779 3.41515 Vertex 4806 -0.637334 16.4176 -4.90037 Vertex 4807 -0.637048 23.4465 -0.70775 Vertex 4808 -0.636773 19.1998 3.41733 Vertex 4809 -0.63646 19.8248 3.98227 Vertex 4810 -0.636358 19.1872 3.4143 Vertex 4811 -0.635882 14.2782 3.71387 Vertex 4812 -0.635801 23.6624 -3.72647 Vertex 4813 -0.635047 15.0273 3.88203 Vertex 4814 -0.634914 17.2509 -2.68712 Vertex 4815 -0.634609 19.7028 3.78174 Vertex 4816 -0.633871 22.7252 -2.90825 Vertex 4817 -0.633383 17.1505 4.19925 Vertex 4818 -0.631177 19.5948 3.63727 Vertex 4819 -0.630982 18.94 3.28729 Vertex 4820 -0.630978 19.6793 3.28728 Vertex 4821 -0.630102 16.0316 3.73357 Vertex 4822 -0.629191 18.617 3.14236 Vertex 4823 -0.629183 20.0023 3.14233 Vertex 4824 -0.628261 17.1265 4.17956 Vertex 4825 -0.628005 17.9578 4.37472 Vertex 4826 -0.62742 18.3541 3.90386 Vertex 4827 -0.626912 15.9765 -5.84563 Vertex 4828 -0.626833 17.219 4.21763 Vertex 4829 -0.626795 19.1813 3.42145 Vertex 4830 -0.625503 19.1906 3.42061 Vertex 4831 -0.624788 19.3064 3.45034 Vertex 4832 -0.622651 18.403 2.97376 Vertex 4833 -0.622642 20.2163 2.97372 Vertex 4834 -0.621687 18.3752 3.93267 Vertex 4835 -0.621052 17.8916 4.23674 Vertex 4836 -0.620279 14.0856 3.20569 Vertex 4837 -0.619156 14.0291 2.95338 Vertex 4838 -0.61913 19.2547 3.44111 Vertex 4839 -0.618648 18.6457 3.8242 Vertex 4840 -0.618433 17.8895 4.15477 Vertex 4841 -0.617646 19.8971 4.01522 Vertex 4842 -0.616291 22.5774 -4.52112 Vertex 4843 -0.616013 16.2963 -5.79505 Vertex 4844 -0.615389 14.3507 3.79727 Vertex 4845 -0.614277 14.1724 3.53392 Vertex 4846 -0.614181 21.2559 3.493 Vertex 4847 -0.613625 18.3714 3.91585 Vertex 4848 -0.612579 17.0213 3.70516 Vertex 4849 -0.611601 18.3094 4.25331 Vertex 4850 -0.611298 15.8927 -5.74753 Vertex 4851 -0.609938 17.0132 3.6999 Vertex 4852 -0.609794 18.4021 3.96138 Vertex 4853 -0.608607 17.3322 4.23469 Vertex 4854 -0.608283 19.3426 3.4673 Vertex 4855 -0.608185 16.9339 3.70182 Vertex 4856 -0.607325 16.7836 3.71093 Vertex 4857 -0.606341 18.2477 4.32339 Vertex 4858 -0.606159 18.7887 3.78142 Vertex 4859 -0.606146 17.8369 4.08603 Vertex 4860 -0.605989 14.2084 3.61558 Vertex 4861 -0.60477 18.3591 4.16146 Vertex 4862 -0.603548 19.1755 3.47496 Vertex 4863 -0.602238 16.5553 3.69832 Vertex 4864 -0.601112 18.9341 3.72206 Vertex 4865 -0.600653 17.9317 4.35124 Vertex 4866 -0.600008 17.4955 4.20664 Vertex 4867 -0.598472 19.9736 4.04203 Vertex 4868 -0.594658 19.2569 3.45516 Vertex 4869 -0.592925 16.2489 3.66401 Vertex 4870 -0.592912 22.6275 -4.18071 Vertex 4871 -0.59167 16.0815 3.65353 Vertex 4872 -0.590803 14.8527 3.91407 Vertex 4873 -0.589588 14.1348 3.46388 Vertex 4874 -0.589424 18.3943 4.0878 Vertex 4875 -0.589403 16.091 3.64908 Vertex 4876 -0.589325 18.1358 2.58429 Vertex 4877 -0.589312 20.4835 2.58423 Vertex 4878 -0.588992 18.1739 4.3717 Vertex 4879 -0.587388 18.4102 3.91106 Vertex 4880 -0.586052 16.1345 -5.09833 Vertex 4881 -0.586015 23.3653 -3.6247 Vertex 4882 -0.584644 20.7836 3.79112 Vertex 4883 -0.5835 19.058 3.29896 Vertex 4884 -0.583497 19.5613 3.29895 Vertex 4885 -0.583255 19.0845 3.62641 Vertex 4886 -0.581381 17.0871 4.07273 Vertex 4887 -0.581112 18.4186 3.98738 Vertex 4888 -0.580194 18.4348 3.90783 Vertex 4889 -0.578941 20.0544 4.06268 Vertex 4890 -0.572572 17.9197 4.32185 Vertex 4891 -0.572538 21.6796 -4.10097 Vertex 4892 -0.570019 18.4915 3.90093 Vertex 4893 -0.569543 17.91 4.20688 Vertex 4894 -0.5683 19.3926 3.50056 Vertex 4895 -0.567987 17.634 4.17127 Vertex 4896 -0.567866 18.4327 3.92293 Vertex 4897 -0.565447 18.0993 4.41534 Vertex 4898 -0.563684 15.6108 4.05253 Vertex 4899 -0.563589 16.0357 -5.92805 Vertex 4900 -0.562152 14.11 3.41968 Vertex 4901 -0.560956 13.9435 -3.65347 Vertex 4902 -0.560956 13.9639 -3.64189 Vertex 4903 -0.558908 22.5299 -3.85635 Vertex 4904 -0.557691 18.4894 3.91602 Vertex 4905 -0.556431 20.1106 4.05494 Vertex 4906 -0.555239 14.0047 2.69901 Vertex 4907 -0.554534 19.1823 3.30608 Vertex 4908 -0.554533 19.437 3.30608 Vertex 4909 -0.55383 22.0598 2.98093 Vertex 4910 -0.553433 15.7767 4.06686 Vertex 4911 -0.553319 15.7744 -5.98334 Vertex 4912 -0.551136 19.8014 3.96631 Vertex 4913 -0.550316 15.9439 -5.38234 Vertex 4914 -0.549363 18.3344 4.33192 Vertex 4915 -0.548254 23.0984 -3.4152 Vertex 4916 -0.54714 19.6521 -4.90585 Vertex 4917 -0.546688 18.637 3.88344 Vertex 4918 -0.546601 18.3833 4.24653 Vertex 4919 -0.545544 15.4769 4.00558 Vertex 4920 -0.544868 15.8737 4.06657 Vertex 4921 -0.544799 19.3097 3.30847 Vertex 4922 -0.544508 14.4258 3.8658 Vertex 4923 -0.543993 19.3211 3.50115 Vertex 4924 -0.543886 19.2054 3.55099 Vertex 4925 -0.543764 17.9218 4.28655 Vertex 4926 -0.543683 15.7227 -5.9228 Vertex 4927 -0.543105 23.5687 -5.68444 Vertex 4928 -0.542812 19.7935 3.91536 Vertex 4929 -0.542702 18.2706 4.39458 Vertex 4930 -0.540437 14.1751 -3.56054 Vertex 4931 -0.539813 23.5705 0.627992 Vertex 4932 -0.539159 18.425 4.16108 Vertex 4933 -0.539057 23.6469 -5.6087 Vertex 4934 -0.537987 15.9017 4.05165 Vertex 4935 -0.536215 14.6618 3.94111 Vertex 4936 -0.535705 18.024 4.45433 Vertex 4937 -0.532251 18.7339 3.16619 Vertex 4938 -0.532245 19.8854 3.16616 Vertex 4939 -0.530941 20.1425 4.0188 Vertex 4940 -0.527039 18.4597 4.07556 Vertex 4941 -0.526617 18.1919 4.43451 Vertex 4942 -0.526539 19.8644 4.00722 Vertex 4943 -0.523452 16.9796 -2.70916 Vertex 4944 -0.522518 22.8617 -3.09795 Vertex 4945 -0.521678 19.5179 3.61635 Vertex 4946 -0.520797 21.5687 3.30643 Vertex 4947 -0.518179 17.9299 4.23698 Vertex 4948 -0.517003 18.2801 4.46667 Vertex 4949 -0.516745 15.7844 -5.63376 Vertex 4950 -0.516686 18.5516 4.0133 Vertex 4951 -0.516495 17.7365 4.15197 Vertex 4952 -0.516493 18.0905 2.38453 Vertex 4953 -0.51648 20.5287 2.38447 Vertex 4954 -0.515983 14.0248 3.15309 Vertex 4955 -0.514279 22.2848 -3.54805 Vertex 4956 -0.514244 15.8109 -6.0342 Vertex 4957 -0.513798 19.8641 3.96686 Vertex 4958 -0.513574 18.3111 2.80972 Vertex 4959 -0.513564 20.3082 2.80967 Vertex 4960 -0.51284 18.3513 4.42956 Vertex 4961 -0.512079 22.0771 -3.71268 Vertex 4962 -0.510047 18.1257 4.46165 Vertex 4963 -0.50891 17.9758 4.45428 Vertex 4964 -0.508711 18.1979 4.4852 Vertex 4965 -0.5081 18.701 3.97431 Vertex 4966 -0.507273 15.9574 3.96473 Vertex 4967 -0.506102 20.2402 3.97723 Vertex 4968 -0.504543 14.0733 3.35714 Vertex 4969 -0.504314 19.6321 3.77478 Vertex 4970 -0.5035 17.9344 4.09998 Vertex 4971 -0.500415 19.9328 4.03709 Vertex 4972 -0.499971 18.8516 3.9225 Vertex 4973 -0.499398 14.5771 -3.4094 Vertex 4974 -0.499013 15.3752 3.92602 Vertex 4975 -0.498957 11.6121 0.261136 Vertex 4976 -0.498957 11.6324 0.272709 Vertex 4977 -0.49867 22.1338 -3.50016 Vertex 4978 -0.497717 17.7884 4.13487 Vertex 4979 -0.496222 18.4114 4.37388 Vertex 4980 -0.496038 18.13 4.50164 Vertex 4981 -0.492791 18.5172 3.00568 Vertex 4982 -0.492782 20.1021 3.00564 Vertex 4983 -0.492739 17.0323 3.87878 Vertex 4984 -0.492298 19.0034 3.85787 Vertex 4985 -0.485335 15.6559 -5.85259 Vertex 4986 -0.48506 17.9546 4.41519 Vertex 4987 -0.484836 15.2799 3.87841 Vertex 4988 -0.484645 18.8145 -5.05631 Vertex 4989 -0.484097 17.7527 -5.38471 Vertex 4990 -0.4834 17.9508 4.13019 Vertex 4991 -0.483115 19.9424 4.00136 Vertex 4992 -0.481913 20.4038 3.93023 Vertex 4993 -0.481896 17.1209 -5.57253 Vertex 4994 -0.480467 11.8436 0.354064 Vertex 4995 -0.479093 16.7425 -4.67317 Vertex 4996 -0.478777 15.3096 3.88363 Vertex 4997 -0.478752 23.8626 -5.33489 Vertex 4998 -0.478045 18.4691 4.31817 Vertex 4999 -0.478044 16.9191 -5.61978 Vertex 5000 -0.477608 19.7229 3.87786 Vertex 5001 -0.477463 18.0476 4.50316 Vertex 5002 -0.474782 19.1507 3.77372 Vertex 5003 -0.474633 15.1949 3.89539 Vertex 5004 -0.472762 20.0065 4.05591 Vertex 5005 -0.472217 13.9641 2.91762 Vertex 5006 -0.471405 -13.4333 -1.26545 Vertex 5007 -0.47008 14.988 -3.261 Vertex 5008 -0.466604 23.3031 -5.73047 Vertex 5009 -0.463317 17.8433 4.12455 Vertex 5010 -0.463053 19.4159 3.61761 Vertex 5011 -0.462049 18.305 4.58757 Vertex 5012 -0.461916 21.1642 3.58271 Vertex 5013 -0.461712 16.5374 -2.80076 Vertex 5014 -0.46089 17.9486 4.3735 Vertex 5015 -0.460314 16.6619 -5.71419 Vertex 5016 -0.459697 17.927 4.09998 Vertex 5017 -0.459061 14.4857 3.93301 Vertex 5018 -0.458307 18.5244 4.26243 Vertex 5019 -0.457639 18.2149 4.59382 Vertex 5020 -0.457239 18.0753 2.17594 Vertex 5021 -0.457226 20.5439 2.17588 Vertex 5022 -0.454991 16.7335 -4.49453 Vertex 5023 -0.45426 18.865 3.18536 Vertex 5024 -0.454255 19.7544 3.18534 Vertex 5025 -0.45357 18.3849 4.56082 Vertex 5026 -0.452728 16.0411 3.80579 Vertex 5027 -0.452483 15.4078 -3.11535 Vertex 5028 -0.450767 20.0287 4.01886 Vertex 5029 -0.450629 14.1629 2.03861 Vertex 5030 -0.449693 15.9243 -2.96193 Vertex 5031 -0.448167 15.0546 3.93457 Vertex 5032 -0.447439 17.0008 3.77877 Vertex 5033 -0.447422 19.2935 3.67007 Vertex 5034 -0.446737 18.1255 4.59616 Vertex 5035 -0.446563 18.6284 4.20866 Vertex 5036 -0.445481 16.9928 3.77271 Vertex 5037 -0.44372 14.2373 1.8417 Vertex 5038 -0.443487 12.2456 0.505202 Vertex 5039 -0.442811 18.7811 4.15684 Vertex 5040 -0.442339 14.1817 3.72862 Vertex 5041 -0.441558 19.7902 3.92558 Vertex 5042 -0.439514 14.231 3.78899 Vertex 5043 -0.437091 16.9184 3.77076 Vertex 5044 -0.436402 17.9577 4.32922 Vertex 5045 -0.434728 19.8805 3.96359 Vertex 5046 -0.432442 15.6526 -6.02943 Vertex 5047 -0.432206 18.4547 4.51358 Vertex 5048 -0.432034 17.9708 4.16028 Vertex 5049 -0.430928 14.0949 2.23152 Vertex 5050 -0.430761 18.9309 4.09222 Vertex 5051 -0.430438 20.6969 3.81057 Vertex 5052 -0.430382 -19.9594 -2.99256 Vertex 5053 -0.429341 18.037 4.59459 Vertex 5054 -0.428707 16.3494 -5.85576 Vertex 5055 -0.426549 14.2059 1.11384 Vertex 5056 -0.425836 14.474 1.28091 Vertex 5057 -0.425481 14.1037 3.58896 Vertex 5058 -0.42457 23.7132 -5.5602 Vertex 5059 -0.424486 16.0875 3.72389 Vertex 5060 -0.423829 14.891 3.97227 Vertex 5061 -0.422548 16.0969 3.71901 Vertex 5062 -0.422269 16.7778 3.77294 Vertex 5063 -0.419899 16.253 3.73093 Vertex 5064 -0.419123 17.2965 4.2953 Vertex 5065 -0.418807 14.0312 3.34634 Vertex 5066 -0.418148 18.2438 2.62637 Vertex 5067 -0.418137 20.3755 2.62632 Vertex 5068 -0.417897 23.5195 -5.73171 Vertex 5069 -0.417656 12.6566 0.653598 Vertex 5070 -0.416537 16.556 3.75966 Vertex 5071 -0.41561 14.1304 3.65719 Vertex 5072 -0.413876 17.4319 4.28708 Vertex 5073 -0.413547 16.3433 -4.79865 Vertex 5074 -0.413018 17.9826 4.561 Vertex 5075 -0.412977 17.9693 4.27515 Vertex 5076 -0.410842 18.5244 4.46634 Vertex 5077 -0.410427 14.3181 1.64081 Vertex 5078 -0.410414 19.0778 4.01479 Vertex 5079 -0.407372 17.1807 4.27805 Vertex 5080 -0.407137 14.2784 3.83831 Vertex 5081 -0.406598 19.5137 3.76522 Vertex 5082 -0.404251 14.397 1.45388 Vertex 5083 -0.40297 13.0764 0.799254 Vertex 5084 -0.402798 13.5928 0.952667 Vertex 5085 -0.401615 14.7044 4.00851 Vertex 5086 -0.400032 19.973 3.98043 Vertex 5087 -0.399906 17.1109 4.25906 Vertex 5088 -0.398947 16.0735 -5.97134 Vertex 5089 -0.398659 14.029 2.4433 Vertex 5090 -0.398047 14.079 3.54476 Vertex 5091 -0.397766 17.9624 4.49538 Vertex 5092 -0.397138 19.007 3.1994 Vertex 5093 -0.397134 19.6124 3.19939 Vertex 5094 -0.396724 17.0869 4.23832 Vertex 5095 -0.396179 21.5986 3.31504 Vertex 5096 -0.39175 13.9544 3.11342 Vertex 5097 -0.39163 17.5868 4.25339 Vertex 5098 -0.391091 23.4245 1.35452 Vertex 5099 -0.390032 13.0669 -2.47061 Vertex 5100 -0.389615 19.2271 3.92217 Vertex 5101 -0.389477 18.5941 4.4191 Vertex 5102 -0.388764 17.8375 4.15456 Vertex 5103 -0.387431 22.0867 2.98813 Vertex 5104 -0.386051 15.9861 -4.05547 Vertex 5105 -0.385143 17.9211 4.12999 Vertex 5106 -0.382357 17.9765 4.17396 Vertex 5107 -0.382086 23.0841 1.99238 Vertex 5108 -0.38188 18.6509 3.03295 Vertex 5109 -0.381872 19.9684 3.03291 Vertex 5110 -0.381689 22.4766 2.69633 Vertex 5111 -0.380016 17.9569 4.42882 Vertex 5112 -0.379505 17.6996 4.22024 Vertex 5113 -0.378953 22.7681 2.43965 Vertex 5114 -0.377837 18.3453 4.75726 Vertex 5115 -0.377501 17.7703 4.18764 Vertex 5116 -0.375531 18.7008 4.36335 Vertex 5117 -0.374854 16.0573 -5.01324 Vertex 5118 -0.373404 18.2429 4.76035 Vertex 5119 -0.373025 23.2854 -1.50657 Vertex 5120 -0.371554 18.4354 4.72569 Vertex 5121 -0.371029 15.8342 -6.06092 Vertex 5122 -0.370553 18.4369 2.84487 Vertex 5123 -0.370544 20.1824 2.84483 Vertex 5124 -0.369004 18.8445 4.2991 Vertex 5125 -0.368365 19.3787 3.81435 Vertex 5126 -0.366267 -15.6179 -1.5736 Vertex 5127 -0.364985 15.6862 -6.07089 Vertex 5128 -0.364914 17.0505 4.13331 Vertex 5129 -0.363667 18.1413 4.75803 Vertex 5130 -0.363299 17.975 4.28883 Vertex 5131 -0.363012 15.8846 -5.31692 Vertex 5132 -0.362292 19.1564 3.20797 Vertex 5133 -0.362291 19.4629 3.20796 Vertex 5134 -0.359767 17.9661 4.36134 Vertex 5135 -0.359343 14.3244 3.88978 Vertex 5136 -0.359051 14.5304 3.99889 Vertex 5137 -0.358233 17.9559 4.17665 Vertex 5138 -0.355521 19.5894 3.8538 Vertex 5139 -0.354842 -17.7762 -2.31877 Vertex 5140 -0.354552 18.5132 4.66564 Vertex 5141 -0.354087 18.9876 4.22274 Vertex 5142 -0.353825 13.9652 2.67394 Vertex 5143 -0.353528 15.6095 -5.9818 Vertex 5144 -0.35346 17.9279 4.16278 Vertex 5145 -0.352101 15.7421 -5.58711 Vertex 5146 -0.351679 21.1196 3.61823 Vertex 5147 -0.351638 23.582 0.676545 Vertex 5148 -0.35058 19.3097 3.21084 Vertex 5149 -0.349781 20.1739 3.99692 Vertex 5150 -0.349371 15.6466 4.13339 Vertex 5151 -0.348628 18.0404 4.75027 Vertex 5152 -0.347656 11.988 -0.569456 Vertex 5153 -0.342142 20.3444 3.95272 Vertex 5154 -0.342121 15.6298 -5.82381 Vertex 5155 -0.340328 17.9782 4.69487 Vertex 5156 -0.339659 -13.4311 -1.57917 Vertex 5157 -0.338771 17.9548 4.59181 Vertex 5158 -0.338723 18.2027 2.42823 Vertex 5159 -0.338711 20.4166 2.42817 Vertex 5160 -0.338378 15.7973 4.13902 Vertex 5161 -0.33755 18.591 4.60559 Vertex 5162 -0.336796 15.5071 4.07752 Vertex 5163 -0.333865 20.5782 3.86313 Vertex 5164 -0.332622 22.9704 -2.19588 Vertex 5165 -0.330781 19.13 4.13428 Vertex 5166 -0.33044 15.8865 4.13357 Vertex 5167 -0.329946 17.9445 4.48783 Vertex 5168 -0.329264 22.8378 -2.8294 Vertex 5169 -0.327627 14.0482 3.53314 Vertex 5170 -0.325558 15.9144 4.11704 Vertex 5171 -0.321242 13.9695 3.30389 Vertex 5172 -0.320547 18.6688 4.54554 Vertex 5173 -0.31947 17.9528 4.29169 Vertex 5174 -0.31677 22.8144 -2.68599 Vertex 5175 -0.313858 17.9472 4.38291 Vertex 5176 -0.312966 19.2816 4.02798 Vertex 5177 -0.311945 22.8104 -2.55897 Vertex 5178 -0.310998 22.8053 -2.59584 Vertex 5179 -0.309822 19.643 3.88336 Vertex 5180 -0.307932 17.8136 4.20609 Vertex 5181 -0.30642 15.9675 4.02834 Vertex 5182 -0.306205 19.9678 3.98603 Vertex 5183 -0.304477 17.0018 3.94404 Vertex 5184 -0.303883 13.9239 2.89099 Vertex 5185 -0.303589 18.7688 4.47737 Vertex 5186 -0.300656 15.3789 3.9714 Vertex 5187 -0.300641 19.4423 3.90384 Vertex 5188 -0.298168 19.7263 3.9123 Vertex 5189 -0.296136 14.3691 3.94341 Vertex 5190 -0.295346 17.9322 4.29438 Vertex 5191 -0.294104 22.8372 -2.92034 Vertex 5192 -0.292648 18.8009 3.05488 Vertex 5193 -0.292643 19.8185 3.05485 Vertex 5194 -0.2913 14.1545 3.75204 Vertex 5195 -0.289375 15.2704 3.91069 Vertex 5196 -0.286676 18.8912 4.40108 Vertex 5197 -0.285771 17.9063 4.49378 Vertex 5198 -0.285549 17.9089 4.59877 Vertex 5199 -0.284849 15.3 3.9158 Vertex 5200 -0.283912 17.7366 4.24935 Vertex 5201 -0.283106 15.1923 3.93154 Vertex 5202 -0.277277 19.3096 2.35648 Vertex 5203 -0.277254 18.1889 2.22019 Vertex 5204 -0.277241 20.4304 2.22013 Vertex 5205 -0.27709 21.022 3.67883 Vertex 5206 -0.276249 17.8204 4.23887 Vertex 5207 -0.276085 23.5288 -0.430094 Vertex 5208 -0.275007 17.9139 4.38759 Vertex 5209 -0.274339 17.9216 4.70257 Vertex 5210 -0.273651 16.9735 3.84597 Vertex 5211 -0.27303 16.0461 3.86748 Vertex 5212 -0.27244 16.9655 3.8391 Vertex 5213 -0.270153 14.2029 3.8091 Vertex 5214 -0.269945 19.0216 4.31407 Vertex 5215 -0.269086 -20.0511 -2.71263 Vertex 5216 -0.266803 17.8924 4.2996 Vertex 5217 -0.266146 21.5721 3.35719 Vertex 5218 -0.266141 17.3954 4.33281 Vertex 5219 -0.266045 15.0656 3.97835 Vertex 5220 -0.265489 18.378 2.6639 Vertex 5221 -0.265478 20.2413 2.66385 Vertex 5222 -0.263658 16.8973 3.83218 Vertex 5223 -0.262028 17.8645 4.28572 Vertex 5224 -0.260716 19.5263 2.3524 Vertex 5225 -0.260715 19.0929 2.35241 Vertex 5226 -0.260694 14.0093 3.48904 Vertex 5227 -0.2604 17.6465 4.30234 Vertex 5228 -0.259108 24.1069 -4.49053 Vertex 5229 -0.257942 14.1038 3.68155 Vertex 5230 -0.256735 -19.9197 -3.28034 Vertex 5231 -0.255671 16.09 3.78441 Vertex 5232 -0.255256 14.9151 4.0169 Vertex 5233 -0.255121 22.7834 -5.38247 Vertex 5234 -0.254476 17.5327 4.33016 Vertex 5235 -0.25434 16.0993 3.77913 Vertex 5236 -0.253763 15.535 -3.78528 Vertex 5237 -0.253399 19.16 4.21632 Vertex 5238 -0.252451 24.0495 -4.23832 Vertex 5239 -0.2518 18.3727 4.85374 Vertex 5240 -0.250943 24.0738 -4.74302 Vertex 5241 -0.250737 14.741 4.04721 Vertex 5242 -0.250038 16.2541 3.7878 Vertex 5243 -0.248832 13.9049 3.09444 Vertex 5244 -0.248781 22.8749 -5.52053 Vertex 5245 -0.248464 18.2629 4.85866 Vertex 5246 -0.248401 18.5842 2.8749 Vertex 5247 -0.248395 20.0352 2.87486 Vertex 5248 -0.247909 18.4674 4.81895 Vertex 5249 -0.24749 17.8424 4.44667 Vertex 5250 -0.247304 16.7688 3.82521 Vertex 5251 -0.247066 20.5742 3.8995 Vertex 5252 -0.246113 17.7886 4.29781 Vertex 5253 -0.24605 22.6931 -5.1699 Vertex 5254 -0.244833 19.3143 4.09115 Vertex 5255 -0.244248 19.4843 3.93855 Vertex 5256 -0.243734 15.2525 -3.57626 Vertex 5257 -0.243218 17.8661 4.37536 Vertex 5258 -0.242765 16.5544 3.81041 Vertex 5259 -0.242632 20.3426 3.98513 Vertex 5260 -0.241599 18.153 4.85547 Vertex 5261 -0.2381 17.8247 4.51626 Vertex 5262 -0.237438 17.2624 4.32645 Vertex 5263 -0.236794 18.5471 4.75427 Vertex 5264 -0.236595 15.6833 -3.29809 Vertex 5265 -0.232918 17.8011 4.39853 Vertex 5266 -0.232341 16.8277 -2.95079 Vertex 5267 -0.231893 17.8328 4.34466 Vertex 5268 -0.231785 14.5695 4.03046 Vertex 5269 -0.231432 17.7355 4.32891 Vertex 5270 -0.231202 18.043 4.84419 Vertex 5271 -0.230971 23.9014 -3.98638 Vertex 5272 -0.227295 18.9633 3.07094 Vertex 5273 -0.227291 19.656 3.07092 Vertex 5274 -0.226682 21.0376 -4.72091 Vertex 5275 -0.225677 18.6268 4.68959 Vertex 5276 -0.224847 20.1765 4.02142 Vertex 5277 -0.22386 20.3572 -4.9949 Vertex 5278 -0.221568 22.604 -4.88282 Vertex 5279 -0.220061 17.7669 4.4263 Vertex 5280 -0.217768 23.9941 -5.02929 Vertex 5281 -0.215585 23.0553 -5.63636 Vertex 5282 -0.21505 17.8128 4.58411 Vertex 5283 -0.214562 18.7065 4.62492 Vertex 5284 -0.212275 -15.5639 -1.88101 Vertex 5285 -0.211934 23.69 -3.79719 Vertex 5286 -0.211637 17.2982 -2.76926 Vertex 5287 -0.21144 19.7377 2.34028 Vertex 5288 -0.211435 18.8816 2.34031 Vertex 5289 -0.211415 19.7262 3.92006 Vertex 5290 -0.21129 22.8124 -2.9588 Vertex 5291 -0.211039 23.6941 -5.59144 Vertex 5292 -0.210194 23.5602 -5.69608 Vertex 5293 -0.208981 19.3096 2.56285 Vertex 5294 -0.208779 14.235 3.83776 Vertex 5295 -0.20543 22.5908 -4.56631 Vertex 5296 -0.204344 13.9245 3.28341 Vertex 5297 -0.201551 17.9267 4.76913 Vertex 5298 -0.200713 18.8044 4.55065 Vertex 5299 -0.200598 -13.3633 -1.00287 Vertex 5300 -0.198399 14.4006 3.96665 Vertex 5301 -0.197638 22.6537 -4.22038 Vertex 5302 -0.196986 17.6545 4.38876 Vertex 5303 -0.195338 23.4152 -3.67074 Vertex 5304 -0.192624 19.5237 2.55882 Vertex 5305 -0.192621 19.0956 2.55883 Vertex 5306 -0.191632 14.0847 3.64455 Vertex 5307 -0.190847 21.7535 -4.1104 Vertex 5308 -0.190234 -17.6897 -2.59716 Vertex 5309 -0.18987 21.0829 3.64715 Vertex 5310 -0.189266 17.7238 4.47951 Vertex 5311 -0.187426 19.1343 3.08074 Vertex 5312 -0.187425 19.485 3.08073 Vertex 5313 -0.186303 22.5642 -3.89153 Vertex 5314 -0.184135 18.9206 4.46679 Vertex 5315 -0.182751 23.1584 -3.45014 Vertex 5316 -0.18238 19.7123 -4.93236 Vertex 5317 -0.182192 -17.8652 -2.04799 Vertex 5318 -0.180183 18.3422 2.4672 Vertex 5319 -0.180172 20.2771 2.46715 Vertex 5320 -0.178783 21.4665 3.42663 Vertex 5321 -0.175634 19.9779 4.00873 Vertex 5322 -0.174483 17.0948 -2.75351 Vertex 5323 -0.174173 22.9195 -3.1354 Vertex 5324 -0.174099 -15.6627 -1.30384 Vertex 5325 -0.174026 19.3097 3.08403 Vertex 5326 -0.17384 22.0545 3.02744 Vertex 5327 -0.171426 22.3225 -3.57976 Vertex 5328 -0.170906 19.0474 4.37324 Vertex 5329 -0.170693 22.134 -3.70982 Vertex 5330 -0.170421 13.9828 3.45791 Vertex 5331 -0.168367 17.1338 4.31108 Vertex 5332 -0.167353 20.648 3.87423 Vertex 5333 -0.166223 22.1791 -3.5192 Vertex 5334 -0.162038 19.5175 3.9699 Vertex 5335 -0.161548 18.8546 -5.06843 Vertex 5336 -0.161365 17.7839 -5.4031 Vertex 5337 -0.161262 14.1288 2.07389 Vertex 5338 -0.161031 19.185 4.26999 Vertex 5339 -0.160632 17.1493 -5.59079 Vertex 5340 -0.159697 16.7695 -4.7007 Vertex 5341 -0.159584 23.8678 -5.34936 Vertex 5342 -0.159347 16.9508 -5.63151 Vertex 5343 -0.159007 14.201 1.87705 Vertex 5344 -0.158681 14.0928 -3.67892 Vertex 5345 -0.158681 14.1131 -3.66734 Vertex 5346 -0.158075 19.3417 4.13555 Vertex 5347 -0.15632 14.0659 2.25372 Vertex 5348 -0.155535 23.3246 -5.72994 Vertex 5349 -0.1544 11.5898 0.274548 Vertex 5350 -0.1544 11.6101 0.286121 Vertex 5351 -0.153808 15.6826 -6.06314 Vertex 5352 -0.153438 16.6918 -5.72178 Vertex 5353 -0.153421 14.4485 1.29495 Vertex 5354 -0.152643 17.8041 4.63032 Vertex 5355 -0.151332 14.3243 -3.58599 Vertex 5356 -0.150836 15.6232 -5.99561 Vertex 5357 -0.150128 18.7493 2.89906 Vertex 5358 -0.150121 19.87 2.89903 Vertex 5359 -0.149881 16.6866 -2.82621 Vertex 5360 -0.149549 14.2826 1.66321 Vertex 5361 -0.149323 14.1836 1.12725 Vertex 5362 -0.14729 14.0071 2.44827 Vertex 5363 -0.14719 11.8213 0.367476 Vertex 5364 -0.146804 14.3651 1.46917 Vertex 5365 -0.144657 20.348 4.00229 Vertex 5366 -0.144205 17.368 4.35447 Vertex 5367 -0.143953 19.7324 2.54685 Vertex 5368 -0.143949 18.8868 2.54687 Vertex 5369 -0.142902 16.3723 -5.8616 Vertex 5370 -0.139425 17.4915 4.37142 Vertex 5371 -0.137849 16.3845 -4.83563 Vertex 5372 -0.137377 16.0735 -2.98738 Vertex 5373 -0.136633 14.7263 -3.43485 Vertex 5374 -0.135105 18.5352 2.69595 Vertex 5375 -0.135096 20.084 2.6959 Vertex 5376 -0.134823 17.6007 4.42515 Vertex 5377 -0.134562 13.5705 0.966079 Vertex 5378 -0.134174 13.9521 2.65753 Vertex 5379 -0.133302 17.0572 4.29293 Vertex 5380 -0.132982 16.0899 -5.9755 Vertex 5381 -0.132772 12.2233 0.518614 Vertex 5382 -0.132241 17.0328 4.27201 Vertex 5383 -0.131225 15.5571 -3.14079 Vertex 5384 -0.130659 19.9385 2.32042 Vertex 5385 -0.130653 18.6807 2.32045 Vertex 5386 -0.1304 17.6954 4.51566 Vertex 5387 -0.130364 23.4167 1.40274 Vertex 5388 -0.130308 17.2634 4.34226 Vertex 5389 -0.129931 15.1373 -3.28645 Vertex 5390 -0.127806 13.0541 0.812668 Vertex 5391 -0.127362 23.074 2.06086 Vertex 5392 -0.12723 22.4474 2.7444 Vertex 5393 -0.126317 22.751 2.50808 Vertex 5394 -0.126311 12.6342 0.667011 Vertex 5395 -0.124951 16.1006 -5.05061 Vertex 5396 -0.123677 15.8444 -6.06348 Vertex 5397 -0.121785 20.1831 4.03133 Vertex 5398 -0.121638 17.0012 4.17381 Vertex 5399 -0.121004 15.9179 -5.34565 Vertex 5400 -0.117367 15.7658 -5.6076 Vertex 5401 -0.116737 18.3301 2.25964 Vertex 5402 -0.116727 20.2892 2.25959 Vertex 5403 -0.116457 15.6695 4.19146 Vertex 5404 -0.114198 14.2209 3.80199 Vertex 5405 -0.114154 13.9085 2.87349 Vertex 5406 -0.11404 15.6444 -5.83645 Vertex 5407 -0.113747 16.1175 -4.15826 Vertex 5408 -0.113747 16.7534 -4.51734 Vertex 5409 -0.112793 15.8086 4.19426 Vertex 5410 -0.112265 15.5238 4.12591 Vertex 5411 -0.110757 14.1041 3.65393 Vertex 5412 -0.110146 15.892 4.18693 Vertex 5413 -0.109242 19.3096 2.75599 Vertex 5414 -0.108519 15.9198 4.16946 Vertex 5415 -0.10214 15.9713 4.08003 Vertex 5416 -0.101492 16.9625 3.99833 Vertex 5417 -0.100218 15.3714 3.9976 Vertex 5418 -0.098088 20.0237 4.02734 Vertex 5419 -0.096459 15.251 3.92598 Vertex 5420 -0.094994 19.7465 3.94706 Vertex 5421 -0.094949 15.2805 3.93096 Vertex 5422 -0.094368 15.1776 3.95345 Vertex 5423 -0.093492 19.5157 2.75212 Vertex 5424 -0.093489 19.1035 2.75213 Vertex 5425 -0.091217 16.9392 3.90675 Vertex 5426 -0.09101 16.0466 3.91863 Vertex 5427 -0.090813 16.9314 3.89908 Vertex 5428 -0.088682 15.0603 4.01337 Vertex 5429 -0.08791 23.5403 -0.381542 Vertex 5430 -0.08791 23.5752 0.71464 Vertex 5431 -0.087885 16.8705 3.88608 Vertex 5432 -0.087231 13.8762 3.09614 Vertex 5433 -0.085224 16.0889 3.8351 Vertex 5434 -0.085085 14.925 4.04796 Vertex 5435 -0.084779 16.0982 3.82943 Vertex 5436 -0.083933 18.3872 4.87702 Vertex 5437 -0.08358 14.7717 4.05721 Vertex 5438 -0.083346 16.252 3.83459 Vertex 5439 -0.082822 18.2748 4.88873 Vertex 5440 -0.082636 18.4812 4.84061 Vertex 5441 -0.082436 16.7566 3.86775 Vertex 5442 -0.080921 16.5504 3.85059 Vertex 5443 -0.080532 18.1606 4.8885 Vertex 5444 -0.078931 18.5565 4.77948 Vertex 5445 -0.078149 18.9282 2.91674 Vertex 5446 -0.078146 19.6911 2.91673 Vertex 5447 -0.077262 14.603 4.02773 Vertex 5448 -0.077068 18.0448 4.87633 Vertex 5449 -0.07581 -13.0023 0.423076 Vertex 5450 -0.075226 18.6319 4.71835 Vertex 5451 -0.071521 18.7072 4.65723 Vertex 5452 -0.068115 13.8962 3.2849 Vertex 5453 -0.067184 17.9241 4.79846 Vertex 5454 -0.066905 18.8075 4.58318 Vertex 5455 -0.066132 14.4188 3.95951 Vertex 5456 -0.064168 19.9308 2.52723 Vertex 5457 -0.064161 18.6885 2.52726 Vertex 5458 -0.06329 21.0583 3.6331 Vertex 5459 -0.061378 18.9327 4.49621 Vertex 5460 -0.056969 19.0652 4.40025 Vertex 5461 -0.056807 13.9685 3.43977 Vertex 5462 -0.055784 20.6489 3.87302 Vertex 5463 -0.054012 19.5418 3.99787 Vertex 5464 -0.053677 19.2049 4.29528 Vertex 5465 -0.052692 19.3638 4.16116 Vertex 5466 -0.050881 17.7985 4.65489 Vertex 5467 -0.04822 20.3607 4.0042 Vertex 5468 -0.048069 17.3499 4.35206 Vertex 5469 -0.046626 19.7168 2.74059 Vertex 5470 -0.046622 18.9025 2.74061 Vertex 5471 -0.046475 17.4633 4.37717 Vertex 5472 -0.044941 17.574 4.43807 Vertex 5473 -0.044777 18.5054 2.50049 Vertex 5474 -0.044768 20.1139 2.50045 Vertex 5475 -0.044695 21.4291 3.40616 Vertex 5476 -0.044695 21.9459 3.09546 Vertex 5477 -0.043467 17.6818 4.53476 Vertex 5478 -0.040595 20.1937 4.02663 Vertex 5479 -0.034242 19.1166 2.92754 Vertex 5480 -0.034239 19.5027 2.92753 Vertex 5481 -0.032577 17.1284 4.32783 Vertex 5482 -0.032577 17.2503 4.33577 Vertex 5483 -0.030207 18.7115 2.72173 Vertex 5484 -0.0302 19.9078 2.7217 Vertex 5485 -0.024522 19.7975 3.96782 Vertex 5486 -0.024522 20.0332 4.01934 Vertex 5487 -0.020366 20.1239 2.2933 Vertex 5488 -0.020357 18.4954 2.29334 Vertex 5489 -0.019484 19.3097 2.93116 Vertex 5490 0 -13.2231 -2.00432 Vertex 5491 0 -13.0514 -4.14164 Vertex 5492 0 -12.7555 0.184287 Vertex 5493 0 -11.8938 2.15542 Vertex 5494 0 -11.7856 -5.46618 Vertex 5495 0 -11.3829 2.9253 Vertex 5496 0 -10.3873 -5.9477 Vertex 5497 0 -9.73968 3.77928 Vertex 5498 0 -7.49681 -5.86605 Vertex 5499 0 -6.55576 4.09214 Vertex 5500 0 -3.67003 4.33465 Vertex 5501 0 -3.67003 4.0128 Vertex 5502 0 -3.66993 -4.4091 Vertex 5503 0 -3.66992 -4.73393 Vertex 5504 0 -2.25203 4.33467 Vertex 5505 0 -2.25203 4.01283 Vertex 5506 0 -2.25193 -4.40908 Vertex 5507 0 -2.25192 -4.73391 Vertex 5508 0 -0.834032 4.3285 Vertex 5509 0 -0.834028 4.01285 Vertex 5510 0 -0.833925 -4.40906 Vertex 5511 0 -0.833921 -4.72918 Vertex 5512 0 0.583966 4.32852 Vertex 5513 0 0.583971 4.01287 Vertex 5514 0 0.584074 -4.40904 Vertex 5515 0 0.584078 -4.72916 Vertex 5516 0 0.703731 -5.05308 Vertex 5517 0 0.721301 4.74723 Vertex 5518 0 1.39494 -5.30325 Vertex 5519 0 1.41114 5.06045 Vertex 5520 0 2.31433 5.22469 Vertex 5521 0 2.37276 -5.47608 Vertex 5522 0 3.45529 -5.50295 Vertex 5523 0 3.55283 5.01156 Vertex 5524 0 4.53781 -5.52982 Vertex 5525 0 4.72949 -5.74467 Vertex 5526 0 4.79133 4.79843 Vertex 5527 0 4.98491 4.9385 Vertex 5528 0 5.38226 -5.69874 Vertex 5529 0 5.58705 4.93805 Vertex 5530 0 6.32359 4.93752 Vertex 5531 0 6.47282 5.06542 Vertex 5532 0 6.73449 5.01656 Vertex 5533 0 6.78313 4.54561 Vertex 5534 0 6.83189 4.84103 Vertex 5535 0 7.82099 4.60024 Vertex 5536 0 8.04785 -6.21318 Vertex 5537 0 10.0236 3.24507 Vertex 5538 0 10.0753 2.95122 Vertex 5539 0 11.1452 -5.72641 Vertex 5540 0 11.5285 1.6681 Vertex 5541 0 11.8018 0.889561 Vertex 5542 0 11.8225 2.11012 Vertex 5543 0 12.1175 -0.013817 Vertex 5544 0 12.6615 -5.16946 Vertex 5545 0 12.6895 -1.66554 Vertex 5546 0 12.8945 -4.37406 Vertex 5547 0 12.9177 -5.09135 Vertex 5548 0 13.1562 -4.85618 Vertex 5549 0 13.1698 -4.59738 Vertex 5550 0 13.2844 -3.40235 Vertex 5551 0 14.0406 -3.75157 Vertex 5552 0 22.1597 -3.69346 Vertex 5553 0 22.199 -3.51378 Vertex 5554 0.019484 19.3097 2.93116 Vertex 5555 0.020357 18.4954 2.29334 Vertex 5556 0.020366 20.1239 2.2933 Vertex 5557 0.024522 19.7975 3.96782 Vertex 5558 0.024522 20.0332 4.01934 Vertex 5559 0.0302 19.9078 2.7217 Vertex 5560 0.030207 18.7115 2.72173 Vertex 5561 0.032012 11.9635 -0.538888 Vertex 5562 0.032577 17.1284 4.32783 Vertex 5563 0.032577 17.2503 4.33577 Vertex 5564 0.034239 19.5027 2.92753 Vertex 5565 0.034242 19.1166 2.92754 Vertex 5566 0.040595 20.1937 4.02663 Vertex 5567 0.043013 13.1548 -2.50719 Vertex 5568 0.043467 17.6818 4.53476 Vertex 5569 0.044695 21.4291 3.40616 Vertex 5570 0.044695 21.9459 3.09546 Vertex 5571 0.044768 20.1139 2.50045 Vertex 5572 0.044777 18.5054 2.50049 Vertex 5573 0.044941 17.574 4.43807 Vertex 5574 0.046475 17.4633 4.37717 Vertex 5575 0.046622 18.9025 2.74061 Vertex 5576 0.046626 19.7168 2.74059 Vertex 5577 0.048069 17.3499 4.35206 Vertex 5578 0.04822 20.3607 4.0042 Vertex 5579 0.050881 17.7985 4.65489 Vertex 5580 0.052692 19.3638 4.16116 Vertex 5581 0.053677 19.2049 4.29528 Vertex 5582 0.054012 19.5418 3.99787 Vertex 5583 0.055784 20.6489 3.87302 Vertex 5584 0.056807 13.9685 3.43977 Vertex 5585 0.056969 19.0652 4.40025 Vertex 5586 0.061378 18.9327 4.49621 Vertex 5587 0.06329 21.0583 3.6331 Vertex 5588 0.064161 18.6885 2.52726 Vertex 5589 0.064168 19.9308 2.52723 Vertex 5590 0.066132 14.4188 3.95951 Vertex 5591 0.066905 18.8075 4.58318 Vertex 5592 0.067184 17.9241 4.79846 Vertex 5593 0.068115 13.8962 3.2849 Vertex 5594 0.071521 18.7072 4.65723 Vertex 5595 0.075226 18.6319 4.71835 Vertex 5596 0.07581 -13.0023 0.423076 Vertex 5597 0.077068 18.0448 4.87633 Vertex 5598 0.077262 14.603 4.02773 Vertex 5599 0.077585 13.8762 3.09614 Vertex 5600 0.078146 19.6911 2.91673 Vertex 5601 0.078149 18.9282 2.91674 Vertex 5602 0.078931 18.5565 4.77948 Vertex 5603 0.080532 18.1606 4.8885 Vertex 5604 0.080921 16.5504 3.85059 Vertex 5605 0.082436 16.7566 3.86775 Vertex 5606 0.082636 18.4812 4.84061 Vertex 5607 0.082822 18.2748 4.88873 Vertex 5608 0.083346 16.252 3.83459 Vertex 5609 0.08358 14.7717 4.05721 Vertex 5610 0.083933 18.3872 4.87702 Vertex 5611 0.084779 16.0982 3.82943 Vertex 5612 0.085085 14.925 4.04796 Vertex 5613 0.085219 13.9085 2.87349 Vertex 5614 0.085224 16.0889 3.8351 Vertex 5615 0.087885 16.8705 3.88608 Vertex 5616 0.08791 23.5403 -0.381542 Vertex 5617 0.08791 23.5752 0.71464 Vertex 5618 0.088682 15.0603 4.01337 Vertex 5619 0.090813 16.9314 3.89908 Vertex 5620 0.09101 16.0466 3.91863 Vertex 5621 0.091217 16.9392 3.90675 Vertex 5622 0.093489 19.1035 2.75213 Vertex 5623 0.093492 19.5157 2.75212 Vertex 5624 0.094368 15.1776 3.95345 Vertex 5625 0.094949 15.2805 3.93096 Vertex 5626 0.094994 19.7465 3.94706 Vertex 5627 0.095465 13.9521 2.65753 Vertex 5628 0.096459 15.251 3.92598 Vertex 5629 0.098088 20.0237 4.02734 Vertex 5630 0.100218 15.3714 3.9976 Vertex 5631 0.101492 16.9625 3.99833 Vertex 5632 0.10214 15.9713 4.08003 Vertex 5633 0.107801 14.3651 1.46917 Vertex 5634 0.108326 14.0071 2.44827 Vertex 5635 0.108519 15.9198 4.16946 Vertex 5636 0.109242 19.3096 2.75599 Vertex 5637 0.110146 15.892 4.18693 Vertex 5638 0.110757 14.1041 3.65393 Vertex 5639 0.111972 14.2826 1.66321 Vertex 5640 0.112265 15.5238 4.12591 Vertex 5641 0.11278 14.4485 1.29495 Vertex 5642 0.112793 15.8086 4.19426 Vertex 5643 0.113747 16.1175 -4.15826 Vertex 5644 0.113747 16.7534 -4.51734 Vertex 5645 0.11404 15.6444 -5.83645 Vertex 5646 0.114198 14.2209 3.80199 Vertex 5647 0.116457 15.6695 4.19146 Vertex 5648 0.116727 20.2892 2.25959 Vertex 5649 0.116737 18.3301 2.25964 Vertex 5650 0.117367 15.7658 -5.6076 Vertex 5651 0.119054 14.0659 2.25372 Vertex 5652 0.121004 15.9179 -5.34565 Vertex 5653 0.121278 14.1836 1.12725 Vertex 5654 0.121638 17.0012 4.17381 Vertex 5655 0.121785 20.1831 4.03133 Vertex 5656 0.123677 15.8444 -6.06348 Vertex 5657 0.124951 16.1006 -5.05061 Vertex 5658 0.12529 14.201 1.87705 Vertex 5659 0.126317 22.751 2.50808 Vertex 5660 0.12723 22.4474 2.7444 Vertex 5661 0.127362 23.074 2.06086 Vertex 5662 0.127651 14.1288 2.07389 Vertex 5663 0.130308 17.2634 4.34226 Vertex 5664 0.130364 23.4167 1.40274 Vertex 5665 0.1304 17.6954 4.51566 Vertex 5666 0.130653 18.6807 2.32045 Vertex 5667 0.130659 19.9385 2.32042 Vertex 5668 0.132241 17.0328 4.27201 Vertex 5669 0.132982 16.0899 -5.9755 Vertex 5670 0.133295 13.5705 0.966079 Vertex 5671 0.133302 17.0572 4.29293 Vertex 5672 0.134823 17.6007 4.42515 Vertex 5673 0.135096 20.084 2.6959 Vertex 5674 0.135105 18.5352 2.69595 Vertex 5675 0.137849 16.3845 -4.83563 Vertex 5676 0.139425 17.4915 4.37142 Vertex 5677 0.142902 16.3723 -5.8616 Vertex 5678 0.143949 18.8868 2.54687 Vertex 5679 0.143953 19.7324 2.54685 Vertex 5680 0.144205 17.368 4.35447 Vertex 5681 0.144657 20.348 4.00229 Vertex 5682 0.148166 13.0541 0.812668 Vertex 5683 0.150121 19.87 2.89903 Vertex 5684 0.150128 18.7493 2.89906 Vertex 5685 0.150836 15.6232 -5.99561 Vertex 5686 0.152643 17.8041 4.63032 Vertex 5687 0.153438 16.6918 -5.72178 Vertex 5688 0.153808 15.6826 -6.06314 Vertex 5689 0.155535 23.3246 -5.72994 Vertex 5690 0.158075 19.3417 4.13555 Vertex 5691 0.159347 16.9508 -5.63151 Vertex 5692 0.159584 23.8678 -5.34936 Vertex 5693 0.159697 16.7695 -4.7007 Vertex 5694 0.160632 17.1493 -5.59079 Vertex 5695 0.161031 19.185 4.26999 Vertex 5696 0.161365 17.7839 -5.4031 Vertex 5697 0.161548 18.8546 -5.06843 Vertex 5698 0.162038 19.5175 3.9699 Vertex 5699 0.165889 12.6342 0.667011 Vertex 5700 0.166223 22.1791 -3.5192 Vertex 5701 0.167353 20.648 3.87423 Vertex 5702 0.168367 17.1338 4.31108 Vertex 5703 0.169032 16.6866 -2.82621 Vertex 5704 0.170421 13.9828 3.45791 Vertex 5705 0.170693 22.134 -3.70982 Vertex 5706 0.170906 19.0474 4.37324 Vertex 5707 0.171426 22.3225 -3.57976 Vertex 5708 0.17384 22.0545 3.02744 Vertex 5709 0.174026 19.3097 3.08403 Vertex 5710 0.174099 -15.6627 -1.30384 Vertex 5711 0.174173 22.9195 -3.1354 Vertex 5712 0.175634 19.9779 4.00873 Vertex 5713 0.176147 17.0948 -2.75351 Vertex 5714 0.178783 21.4665 3.42663 Vertex 5715 0.178855 12.2233 0.518614 Vertex 5716 0.180172 20.2771 2.46715 Vertex 5717 0.180183 18.3422 2.4672 Vertex 5718 0.182192 -17.8652 -2.04799 Vertex 5719 0.18238 19.7123 -4.93236 Vertex 5720 0.182751 23.1584 -3.45014 Vertex 5721 0.184135 18.9206 4.46679 Vertex 5722 0.184496 16.0735 -2.98738 Vertex 5723 0.186303 22.5642 -3.89153 Vertex 5724 0.187064 11.8213 0.367476 Vertex 5725 0.187425 19.485 3.08073 Vertex 5726 0.187426 19.1343 3.08074 Vertex 5727 0.189266 17.7238 4.47951 Vertex 5728 0.18987 21.0829 3.64715 Vertex 5729 0.190234 -17.6897 -2.59716 Vertex 5730 0.190847 21.7535 -4.1104 Vertex 5731 0.191168 11.5898 0.274548 Vertex 5732 0.191168 11.6101 0.286121 Vertex 5733 0.191632 14.0847 3.64455 Vertex 5734 0.192621 19.0956 2.55883 Vertex 5735 0.192624 19.5237 2.55882 Vertex 5736 0.195338 23.4152 -3.67074 Vertex 5737 0.195413 15.5571 -3.14079 Vertex 5738 0.196986 17.6545 4.38876 Vertex 5739 0.197638 22.6537 -4.22038 Vertex 5740 0.198399 14.4006 3.96665 Vertex 5741 0.200598 -13.3633 -1.00287 Vertex 5742 0.200713 18.8044 4.55065 Vertex 5743 0.201551 17.9267 4.76913 Vertex 5744 0.204344 13.9245 3.28341 Vertex 5745 0.20543 22.5908 -4.56631 Vertex 5746 0.208779 14.235 3.83775 Vertex 5747 0.208981 19.3096 2.56285 Vertex 5748 0.210194 23.5602 -5.69608 Vertex 5749 0.210528 15.1373 -3.28645 Vertex 5750 0.211039 23.6941 -5.59144 Vertex 5751 0.21129 22.8124 -2.9588 Vertex 5752 0.211415 19.7262 3.92006 Vertex 5753 0.211435 18.8816 2.34031 Vertex 5754 0.21144 19.7377 2.34028 Vertex 5755 0.211637 17.2982 -2.76926 Vertex 5756 0.211934 23.69 -3.79719 Vertex 5757 0.212275 -15.5639 -1.88101 Vertex 5758 0.214562 18.7065 4.62492 Vertex 5759 0.21505 17.8128 4.58411 Vertex 5760 0.215585 23.0553 -5.63636 Vertex 5761 0.217768 23.9941 -5.02929 Vertex 5762 0.220061 17.7669 4.4263 Vertex 5763 0.221568 22.604 -4.88282 Vertex 5764 0.22386 20.3572 -4.9949 Vertex 5765 0.224847 20.1765 4.02142 Vertex 5766 0.225677 18.6268 4.68959 Vertex 5767 0.226132 14.7263 -3.43485 Vertex 5768 0.226682 21.0376 -4.72091 Vertex 5769 0.227291 19.656 3.07092 Vertex 5770 0.227295 18.9633 3.07094 Vertex 5771 0.230971 23.9014 -3.98638 Vertex 5772 0.231202 18.043 4.84419 Vertex 5773 0.231432 17.7355 4.32891 Vertex 5774 0.231785 14.5695 4.03046 Vertex 5775 0.231893 17.8328 4.34466 Vertex 5776 0.232341 16.8277 -2.95079 Vertex 5777 0.232918 17.8011 4.39853 Vertex 5778 0.236595 15.6833 -3.29809 Vertex 5779 0.236794 18.5471 4.75427 Vertex 5780 0.237438 17.2624 4.32645 Vertex 5781 0.237774 14.3243 -3.58599 Vertex 5782 0.2381 17.8247 4.51626 Vertex 5783 0.241599 18.153 4.85547 Vertex 5784 0.242632 20.3426 3.98513 Vertex 5785 0.242765 16.5544 3.81041 Vertex 5786 0.243218 17.8661 4.37536 Vertex 5787 0.243594 14.0928 -3.67892 Vertex 5788 0.243594 14.1131 -3.66734 Vertex 5789 0.243734 15.2525 -3.57626 Vertex 5790 0.244248 19.4843 3.93855 Vertex 5791 0.244833 19.3143 4.09115 Vertex 5792 0.245617 13.9049 3.09444 Vertex 5793 0.24605 22.6931 -5.1699 Vertex 5794 0.246113 17.7886 4.29781 Vertex 5795 0.247066 20.5742 3.8995 Vertex 5796 0.247304 16.7688 3.82521 Vertex 5797 0.247489 17.8424 4.44667 Vertex 5798 0.247909 18.4674 4.81895 Vertex 5799 0.248395 20.0352 2.87486 Vertex 5800 0.248401 18.5842 2.8749 Vertex 5801 0.248464 18.2629 4.85866 Vertex 5802 0.248781 22.8749 -5.52053 Vertex 5803 0.250038 16.2541 3.7878 Vertex 5804 0.250737 14.741 4.04721 Vertex 5805 0.250943 24.0738 -4.74302 Vertex 5806 0.2518 18.3727 4.85374 Vertex 5807 0.252451 24.0495 -4.23832 Vertex 5808 0.253399 19.16 4.21632 Vertex 5809 0.253763 15.535 -3.78528 Vertex 5810 0.25434 16.0993 3.77913 Vertex 5811 0.254476 17.5327 4.33016 Vertex 5812 0.255121 22.7834 -5.38247 Vertex 5813 0.255256 14.9151 4.0169 Vertex 5814 0.255671 16.09 3.78441 Vertex 5815 0.256735 -19.9197 -3.28034 Vertex 5816 0.257942 14.1038 3.68155 Vertex 5817 0.259108 24.1069 -4.49053 Vertex 5818 0.2604 17.6465 4.30234 Vertex 5819 0.260694 14.0093 3.48904 Vertex 5820 0.260715 19.0929 2.35241 Vertex 5821 0.260716 19.5263 2.3524 Vertex 5822 0.262028 17.8645 4.28572 Vertex 5823 0.263658 16.8973 3.83218 Vertex 5824 0.265478 20.2413 2.66385 Vertex 5825 0.265489 18.378 2.6639 Vertex 5826 0.266045 15.0656 3.97835 Vertex 5827 0.266141 17.3954 4.33281 Vertex 5828 0.266146 21.5721 3.35719 Vertex 5829 0.266803 17.8924 4.2996 Vertex 5830 0.269086 -20.0511 -2.71263 Vertex 5831 0.269945 19.0216 4.31407 Vertex 5832 0.270153 14.2029 3.8091 Vertex 5833 0.27244 16.9655 3.8391 Vertex 5834 0.27303 16.0461 3.86748 Vertex 5835 0.273651 16.9735 3.84597 Vertex 5836 0.274339 17.9216 4.70257 Vertex 5837 0.275008 17.9139 4.38759 Vertex 5838 0.276085 23.5288 -0.430094 Vertex 5839 0.276249 17.8204 4.23887 Vertex 5840 0.27709 21.022 3.67883 Vertex 5841 0.277241 20.4304 2.22013 Vertex 5842 0.277254 18.1889 2.22019 Vertex 5843 0.277277 19.3096 2.35648 Vertex 5844 0.283106 15.1923 3.93154 Vertex 5845 0.283912 17.7366 4.24936 Vertex 5846 0.284849 15.3 3.9158 Vertex 5847 0.285549 17.9089 4.59877 Vertex 5848 0.285771 17.9063 4.49378 Vertex 5849 0.286676 18.8912 4.40108 Vertex 5850 0.289375 15.2704 3.91069 Vertex 5851 0.2913 14.1545 3.75204 Vertex 5852 0.292643 19.8185 3.05485 Vertex 5853 0.292648 18.8009 3.05488 Vertex 5854 0.294104 22.8372 -2.92034 Vertex 5855 0.294238 13.9239 2.89099 Vertex 5856 0.295346 17.9322 4.29438 Vertex 5857 0.296136 14.3691 3.94341 Vertex 5858 0.298168 19.7263 3.9123 Vertex 5859 0.300641 19.4423 3.90384 Vertex 5860 0.300656 15.3789 3.9714 Vertex 5861 0.303589 18.7688 4.47737 Vertex 5862 0.304477 17.0018 3.94404 Vertex 5863 0.306205 19.9678 3.98603 Vertex 5864 0.30642 15.9675 4.02834 Vertex 5865 0.307932 17.8136 4.20609 Vertex 5866 0.309822 19.643 3.88336 Vertex 5867 0.310998 22.8053 -2.59584 Vertex 5868 0.311945 22.8104 -2.55897 Vertex 5869 0.312966 19.2816 4.02798 Vertex 5870 0.313858 17.9472 4.38291 Vertex 5871 0.31677 22.8144 -2.68599 Vertex 5872 0.31947 17.9528 4.29169 Vertex 5873 0.320547 18.6688 4.54554 Vertex 5874 0.321242 13.9695 3.30389 Vertex 5875 0.325558 15.9144 4.11704 Vertex 5876 0.327627 14.0482 3.53314 Vertex 5877 0.329264 22.8378 -2.8294 Vertex 5878 0.329946 17.9445 4.48783 Vertex 5879 0.33044 15.8865 4.13357 Vertex 5880 0.330781 19.13 4.13428 Vertex 5881 0.332622 22.9704 -2.19588 Vertex 5882 0.333865 20.5782 3.86313 Vertex 5883 0.335094 13.9652 2.67394 Vertex 5884 0.336796 15.5071 4.07752 Vertex 5885 0.33755 18.591 4.60559 Vertex 5886 0.338378 15.7973 4.13902 Vertex 5887 0.338711 20.4166 2.42817 Vertex 5888 0.338723 18.2027 2.42823 Vertex 5889 0.338771 17.9548 4.59181 Vertex 5890 0.339659 -13.4311 -1.57917 Vertex 5891 0.340328 17.9782 4.69487 Vertex 5892 0.342121 15.6298 -5.82381 Vertex 5893 0.342142 20.3444 3.95272 Vertex 5894 0.348628 18.0404 4.75027 Vertex 5895 0.349371 15.6466 4.13339 Vertex 5896 0.349781 20.1739 3.99692 Vertex 5897 0.35058 19.3097 3.21084 Vertex 5898 0.351638 23.582 0.676545 Vertex 5899 0.351679 21.1196 3.61823 Vertex 5900 0.352101 15.7421 -5.58711 Vertex 5901 0.35346 17.9279 4.16278 Vertex 5902 0.353528 15.6095 -5.9818 Vertex 5903 0.354087 18.9876 4.22274 Vertex 5904 0.354552 18.5132 4.66564 Vertex 5905 0.354842 -17.7762 -2.31877 Vertex 5906 0.355521 19.5894 3.8538 Vertex 5907 0.358233 17.9559 4.17665 Vertex 5908 0.359051 14.5304 3.99889 Vertex 5909 0.359343 14.3244 3.88978 Vertex 5910 0.359767 17.9661 4.36134 Vertex 5911 0.362291 19.4629 3.20796 Vertex 5912 0.362292 19.1564 3.20797 Vertex 5913 0.363012 15.8846 -5.31692 Vertex 5914 0.363299 17.975 4.28883 Vertex 5915 0.363667 18.1413 4.75803 Vertex 5916 0.363696 14.397 1.45388 Vertex 5917 0.364914 17.0505 4.13331 Vertex 5918 0.364985 15.6862 -6.07089 Vertex 5919 0.366267 -15.6179 -1.5736 Vertex 5920 0.368187 14.029 2.4433 Vertex 5921 0.368365 19.3787 3.81435 Vertex 5922 0.369004 18.8445 4.2991 Vertex 5923 0.370544 20.1824 2.84483 Vertex 5924 0.370553 18.4369 2.84487 Vertex 5925 0.371029 15.8342 -6.06092 Vertex 5926 0.371554 18.4354 4.72569 Vertex 5927 0.373025 23.2854 -1.50657 Vertex 5928 0.373404 18.2429 4.76035 Vertex 5929 0.374361 14.3181 1.64081 Vertex 5930 0.374854 16.0573 -5.01324 Vertex 5931 0.375531 18.7008 4.36335 Vertex 5932 0.377173 14.474 1.28091 Vertex 5933 0.377501 17.7703 4.18764 Vertex 5934 0.377837 18.3453 4.75726 Vertex 5935 0.378953 22.7681 2.43965 Vertex 5936 0.379505 17.6996 4.22024 Vertex 5937 0.380016 17.9569 4.42882 Vertex 5938 0.381689 22.4766 2.69633 Vertex 5939 0.381872 19.9684 3.03291 Vertex 5940 0.38188 18.6509 3.03295 Vertex 5941 0.382086 23.0841 1.99238 Vertex 5942 0.382357 17.9765 4.17396 Vertex 5943 0.385143 17.9211 4.12999 Vertex 5944 0.386051 15.9861 -4.05547 Vertex 5945 0.387431 22.0867 2.98813 Vertex 5946 0.388764 17.8375 4.15456 Vertex 5947 0.389477 18.5941 4.4191 Vertex 5948 0.389615 19.2271 3.92217 Vertex 5949 0.389919 14.2059 1.11384 Vertex 5950 0.391091 23.4245 1.35452 Vertex 5951 0.39163 17.5868 4.25339 Vertex 5952 0.39175 13.9544 3.11342 Vertex 5953 0.395192 14.0949 2.23152 Vertex 5954 0.396179 21.5986 3.31504 Vertex 5955 0.396724 17.0869 4.23832 Vertex 5956 0.397134 19.6124 3.19939 Vertex 5957 0.397138 19.007 3.1994 Vertex 5958 0.397766 17.9624 4.49538 Vertex 5959 0.398047 14.079 3.54476 Vertex 5960 0.398947 16.0735 -5.97134 Vertex 5961 0.399906 17.1109 4.25906 Vertex 5962 0.400032 19.973 3.98043 Vertex 5963 0.401615 14.7044 4.00851 Vertex 5964 0.401937 13.5928 0.952667 Vertex 5965 0.406598 19.5137 3.76522 Vertex 5966 0.407137 14.2784 3.83831 Vertex 5967 0.407372 17.1807 4.27805 Vertex 5968 0.409168 14.2373 1.8417 Vertex 5969 0.410414 19.0778 4.01479 Vertex 5970 0.410842 18.5244 4.46634 Vertex 5971 0.412977 17.9693 4.27515 Vertex 5972 0.413018 17.9826 4.561 Vertex 5973 0.413163 11.988 -0.569456 Vertex 5974 0.413547 16.3433 -4.79865 Vertex 5975 0.413876 17.4319 4.28708 Vertex 5976 0.41561 14.1304 3.65719 Vertex 5977 0.416112 14.1629 2.03861 Vertex 5978 0.416537 16.556 3.75966 Vertex 5979 0.417897 23.5195 -5.73171 Vertex 5980 0.418137 20.3755 2.62632 Vertex 5981 0.418148 18.2438 2.62637 Vertex 5982 0.418807 14.0312 3.34634 Vertex 5983 0.419123 17.2965 4.2953 Vertex 5984 0.419899 16.253 3.73093 Vertex 5985 0.422269 16.7778 3.77294 Vertex 5986 0.422548 16.0969 3.71901 Vertex 5987 0.423829 14.891 3.97227 Vertex 5988 0.424486 16.0875 3.72389 Vertex 5989 0.42457 23.7132 -5.5602 Vertex 5990 0.424944 13.0764 0.799254 Vertex 5991 0.425481 14.1037 3.58896 Vertex 5992 0.428707 16.3494 -5.85576 Vertex 5993 0.429341 18.037 4.59459 Vertex 5994 0.430382 -19.9594 -2.99256 Vertex 5995 0.430438 20.6969 3.81057 Vertex 5996 0.430761 18.9309 4.09222 Vertex 5997 0.432035 17.9708 4.16028 Vertex 5998 0.432206 18.4547 4.51358 Vertex 5999 0.432442 15.6526 -6.02943 Vertex 6000 0.434728 19.8805 3.96359 Vertex 6001 0.436402 17.9577 4.32922 Vertex 6002 0.437091 16.9184 3.77076 Vertex 6003 0.439514 14.231 3.78899 Vertex 6004 0.441558 19.7902 3.92558 Vertex 6005 0.442339 14.1817 3.72862 Vertex 6006 0.442811 18.7811 4.15684 Vertex 6007 0.445481 16.9928 3.77271 Vertex 6008 0.446563 18.6284 4.20866 Vertex 6009 0.446737 18.1255 4.59616 Vertex 6010 0.447422 19.2935 3.67007 Vertex 6011 0.447439 17.0008 3.77877 Vertex 6012 0.448167 15.0546 3.93457 Vertex 6013 0.450767 20.0287 4.01886 Vertex 6014 0.452728 16.0411 3.80579 Vertex 6015 0.45357 18.3849 4.56082 Vertex 6016 0.454255 19.7544 3.18534 Vertex 6017 0.45426 18.865 3.18536 Vertex 6018 0.454991 16.7335 -4.49453 Vertex 6019 0.457226 20.5439 2.17588 Vertex 6020 0.457239 18.0753 2.17594 Vertex 6021 0.457639 18.2149 4.59382 Vertex 6022 0.458307 18.5244 4.26243 Vertex 6023 0.458943 12.6566 0.653598 Vertex 6024 0.459061 14.4857 3.93301 Vertex 6025 0.459697 17.927 4.09998 Vertex 6026 0.460314 16.6619 -5.71419 Vertex 6027 0.46089 17.9486 4.3735 Vertex 6028 0.461916 21.1642 3.58271 Vertex 6029 0.462049 18.305 4.58757 Vertex 6030 0.463053 19.4159 3.61761 Vertex 6031 0.463317 17.8433 4.12455 Vertex 6032 0.466604 23.3031 -5.73047 Vertex 6033 0.471405 -13.4333 -1.26545 Vertex 6034 0.472217 13.9641 2.91762 Vertex 6035 0.472762 20.0065 4.05591 Vertex 6036 0.474633 15.1949 3.89539 Vertex 6037 0.474782 19.1507 3.77372 Vertex 6038 0.475942 13.0669 -2.47061 Vertex 6039 0.477463 18.0476 4.50316 Vertex 6040 0.477608 19.7229 3.87786 Vertex 6041 0.478044 16.9191 -5.61978 Vertex 6042 0.478045 18.4691 4.31817 Vertex 6043 0.478752 23.8626 -5.33489 Vertex 6044 0.478777 15.3096 3.88363 Vertex 6045 0.479093 16.7425 -4.67317 Vertex 6046 0.481896 17.1209 -5.57253 Vertex 6047 0.481913 20.4038 3.93024 Vertex 6048 0.483115 19.9424 4.00136 Vertex 6049 0.4834 17.9508 4.13019 Vertex 6050 0.484097 17.7527 -5.38471 Vertex 6051 0.484645 18.8145 -5.05631 Vertex 6052 0.484836 15.2799 3.87841 Vertex 6053 0.48506 17.9546 4.41519 Vertex 6054 0.485335 15.6559 -5.85259 Vertex 6055 0.491392 12.2456 0.505202 Vertex 6056 0.492298 19.0034 3.85787 Vertex 6057 0.492739 17.0323 3.87878 Vertex 6058 0.492782 20.1021 3.00564 Vertex 6059 0.492791 18.5172 3.00568 Vertex 6060 0.496038 18.13 4.50164 Vertex 6061 0.496222 18.4114 4.37388 Vertex 6062 0.497717 17.7884 4.13487 Vertex 6063 0.49867 22.1338 -3.50016 Vertex 6064 0.499013 15.3752 3.92602 Vertex 6065 0.499971 18.8516 3.9225 Vertex 6066 0.500415 19.9328 4.03709 Vertex 6067 0.503502 17.9344 4.09998 Vertex 6068 0.504314 19.6321 3.77478 Vertex 6069 0.504543 14.0733 3.35714 Vertex 6070 0.504907 16.5374 -2.80076 Vertex 6071 0.506102 20.2402 3.97723 Vertex 6072 0.507273 15.9574 3.96473 Vertex 6073 0.5081 18.701 3.97431 Vertex 6074 0.508711 18.1979 4.4852 Vertex 6075 0.50891 17.9758 4.45428 Vertex 6076 0.510047 18.1257 4.46165 Vertex 6077 0.512079 22.0771 -3.71268 Vertex 6078 0.51284 18.3513 4.42956 Vertex 6079 0.513564 20.3082 2.80967 Vertex 6080 0.513574 18.3111 2.80972 Vertex 6081 0.513798 19.8641 3.96686 Vertex 6082 0.514244 15.8109 -6.0342 Vertex 6083 0.514279 22.2848 -3.54805 Vertex 6084 0.515983 14.0248 3.15309 Vertex 6085 0.51648 20.5287 2.38447 Vertex 6086 0.516493 18.0905 2.38453 Vertex 6087 0.516495 17.7365 4.15197 Vertex 6088 0.516686 18.5516 4.0133 Vertex 6089 0.516745 15.7844 -5.63376 Vertex 6090 0.517003 18.2801 4.46667 Vertex 6091 0.518179 17.9299 4.23698 Vertex 6092 0.519204 15.9243 -2.96193 Vertex 6093 0.520797 21.5687 3.30643 Vertex 6094 0.521678 19.5179 3.61635 Vertex 6095 0.522294 11.8436 0.354064 Vertex 6096 0.522518 22.8617 -3.09795 Vertex 6097 0.526539 19.8644 4.00722 Vertex 6098 0.526617 18.1919 4.43451 Vertex 6099 0.527039 18.4597 4.07556 Vertex 6100 0.530941 20.1425 4.0188 Vertex 6101 0.531922 15.4078 -3.11535 Vertex 6102 0.532245 19.8854 3.16616 Vertex 6103 0.532251 18.7339 3.16619 Vertex 6104 0.535705 18.024 4.45433 Vertex 6105 0.536215 14.6618 3.94111 Vertex 6106 0.537745 11.6121 0.261136 Vertex 6107 0.537745 11.6324 0.272709 Vertex 6108 0.537987 15.9017 4.05165 Vertex 6109 0.539057 23.6469 -5.6087 Vertex 6110 0.539159 18.425 4.16108 Vertex 6111 0.539813 23.5705 0.627994 Vertex 6112 0.542702 18.2706 4.39458 Vertex 6113 0.542812 19.7935 3.91536 Vertex 6114 0.543105 23.5687 -5.68444 Vertex 6115 0.543683 15.7227 -5.9228 Vertex 6116 0.543764 17.9218 4.28655 Vertex 6117 0.543886 19.2054 3.55099 Vertex 6118 0.543993 19.3211 3.50115 Vertex 6119 0.544324 16.9796 -2.70916 Vertex 6120 0.544508 14.4258 3.8658 Vertex 6121 0.544799 19.3097 3.30847 Vertex 6122 0.544868 15.8737 4.06657 Vertex 6123 0.545544 15.4769 4.00558 Vertex 6124 0.546601 18.3833 4.24653 Vertex 6125 0.546688 18.637 3.88344 Vertex 6126 0.54714 19.6521 -4.90585 Vertex 6127 0.548254 23.0984 -3.4152 Vertex 6128 0.548682 14.0047 2.69901 Vertex 6129 0.549363 18.3344 4.33192 Vertex 6130 0.550316 15.9439 -5.38234 Vertex 6131 0.551136 19.8014 3.96631 Vertex 6132 0.553319 15.7744 -5.98334 Vertex 6133 0.553433 15.7767 4.06686 Vertex 6134 0.55383 22.0598 2.98093 Vertex 6135 0.554533 19.437 3.30608 Vertex 6136 0.554534 19.1823 3.30608 Vertex 6137 0.556431 20.1106 4.05494 Vertex 6138 0.556959 14.988 -3.261 Vertex 6139 0.557691 18.4894 3.91602 Vertex 6140 0.558908 22.5299 -3.85635 Vertex 6141 0.562152 14.11 3.41968 Vertex 6142 0.563589 16.0357 -5.92805 Vertex 6143 0.563684 15.6108 4.05253 Vertex 6144 0.565447 18.0993 4.41534 Vertex 6145 0.567866 18.4327 3.92293 Vertex 6146 0.567987 17.634 4.17127 Vertex 6147 0.5683 19.3926 3.50056 Vertex 6148 0.569543 17.91 4.20688 Vertex 6149 0.570019 18.4915 3.90093 Vertex 6150 0.572538 21.6796 -4.10097 Vertex 6151 0.572572 17.9197 4.32185 Vertex 6152 0.578941 20.0544 4.06268 Vertex 6153 0.580194 18.4348 3.90783 Vertex 6154 0.581112 18.4186 3.98738 Vertex 6155 0.581379 17.0871 4.07273 Vertex 6156 0.583255 19.0845 3.62641 Vertex 6157 0.583497 19.5613 3.29895 Vertex 6158 0.5835 19.058 3.29896 Vertex 6159 0.584644 20.7836 3.79112 Vertex 6160 0.586015 23.3653 -3.6247 Vertex 6161 0.586052 16.1345 -5.09833 Vertex 6162 0.587388 18.4102 3.91106 Vertex 6163 0.588921 14.5771 -3.4094 Vertex 6164 0.588992 18.1739 4.3717 Vertex 6165 0.589312 20.4835 2.58423 Vertex 6166 0.589325 18.1358 2.58429 Vertex 6167 0.589403 16.091 3.64908 Vertex 6168 0.589424 18.3943 4.0878 Vertex 6169 0.589586 14.1348 3.46388 Vertex 6170 0.590803 14.8527 3.91407 Vertex 6171 0.59167 16.0815 3.65353 Vertex 6172 0.592912 22.6275 -4.18071 Vertex 6173 0.592925 16.2489 3.66401 Vertex 6174 0.594658 19.2569 3.45516 Vertex 6175 0.598472 19.9736 4.04203 Vertex 6176 0.600008 17.4955 4.20664 Vertex 6177 0.600652 17.9317 4.35124 Vertex 6178 0.601112 18.9341 3.72206 Vertex 6179 0.602238 16.5553 3.69832 Vertex 6180 0.603548 19.1755 3.47496 Vertex 6181 0.60477 18.3591 4.16146 Vertex 6182 0.605989 14.2084 3.61558 Vertex 6183 0.606146 17.8369 4.08603 Vertex 6184 0.606159 18.7887 3.78142 Vertex 6185 0.606341 18.2477 4.32339 Vertex 6186 0.607325 16.7836 3.71093 Vertex 6187 0.608185 16.9339 3.70183 Vertex 6188 0.608283 19.3426 3.4673 Vertex 6189 0.608607 17.3322 4.23469 Vertex 6190 0.609794 18.4021 3.96138 Vertex 6191 0.609938 17.0132 3.6999 Vertex 6192 0.611298 15.8927 -5.74753 Vertex 6193 0.611601 18.3094 4.25331 Vertex 6194 0.612579 17.0213 3.70516 Vertex 6195 0.613625 18.3714 3.91585 Vertex 6196 0.614181 21.2559 3.493 Vertex 6197 0.614277 14.1724 3.53392 Vertex 6198 0.615389 14.3507 3.79727 Vertex 6199 0.616013 16.2963 -5.79505 Vertex 6200 0.616291 22.5774 -4.52112 Vertex 6201 0.617646 19.8971 4.01522 Vertex 6202 0.618433 17.8895 4.15477 Vertex 6203 0.618648 18.6457 3.8242 Vertex 6204 0.61913 19.2547 3.44111 Vertex 6205 0.619156 14.0291 2.95338 Vertex 6206 0.620279 14.0856 3.20569 Vertex 6207 0.621052 17.8916 4.23674 Vertex 6208 0.621146 14.0764 2.45759 Vertex 6209 0.621687 18.3752 3.93267 Vertex 6210 0.622642 20.2163 2.97372 Vertex 6211 0.622651 18.403 2.97376 Vertex 6212 0.624788 19.3064 3.45034 Vertex 6213 0.625503 19.1906 3.42061 Vertex 6214 0.626795 19.1813 3.42145 Vertex 6215 0.626833 17.219 4.21763 Vertex 6216 0.626878 14.1751 -3.56054 Vertex 6217 0.626912 15.9765 -5.84563 Vertex 6218 0.62742 18.3541 3.90386 Vertex 6219 0.628005 17.9578 4.37472 Vertex 6220 0.628261 17.1265 4.17956 Vertex 6221 0.629183 20.0023 3.14233 Vertex 6222 0.629191 18.617 3.14236 Vertex 6223 0.630102 16.0316 3.73357 Vertex 6224 0.630978 19.6793 3.28728 Vertex 6225 0.630982 18.94 3.28729 Vertex 6226 0.631177 19.5948 3.63727 Vertex 6227 0.633383 17.1505 4.19925 Vertex 6228 0.633871 22.7252 -2.90825 Vertex 6229 0.634609 19.7028 3.78174 Vertex 6230 0.635047 15.0273 3.88203 Vertex 6231 0.635801 23.6624 -3.72647 Vertex 6232 0.635882 14.2782 3.71387 Vertex 6233 0.636358 19.1872 3.4143 Vertex 6234 0.63646 19.8248 3.98227 Vertex 6235 0.636773 19.1998 3.41733 Vertex 6236 0.637048 23.4465 -0.70775 Vertex 6237 0.637334 16.4176 -4.90037 Vertex 6238 0.63765 19.1779 3.41515 Vertex 6239 0.637802 19.3307 3.44852 Vertex 6240 0.638537 17.8731 4.12455 Vertex 6241 0.638581 18.505 3.8504 Vertex 6242 0.638711 19.7647 3.88193 Vertex 6243 0.63888 18.3585 3.87741 Vertex 6244 0.640505 18.3409 3.88351 Vertex 6245 0.640598 16.6057 -4.38681 Vertex 6246 0.641939 19.1627 3.42071 Vertex 6247 0.642673 19.3209 3.4449 Vertex 6248 0.642881 19.3272 3.44641 Vertex 6249 0.643162 19.1876 3.41549 Vertex 6250 0.643483 19.7806 3.93783 Vertex 6251 0.643577 19.2003 3.41851 Vertex 6252 0.644388 18.3804 4.05337 Vertex 6253 0.644561 17.791 4.09104 Vertex 6254 0.64587 13.9435 -3.65347 Vertex 6255 0.64587 13.9639 -3.64189 Vertex 6256 0.64606 19.506 3.53756 Vertex 6257 0.646101 19.3191 3.44555 Vertex 6258 0.646308 19.3254 3.44706 Vertex 6259 0.646758 23.0343 -5.5855 Vertex 6260 0.649223 17.2509 -2.68712 Vertex 6261 0.649538 19.1163 3.4713 Vertex 6262 0.649951 17.8443 4.08603 Vertex 6263 0.650342 17.889 4.2627 Vertex 6264 0.651514 19.3235 3.45113 Vertex 6265 0.651553 -12.3686 2.50251 Vertex 6266 0.651659 18.3202 3.88689 Vertex 6267 0.652237 19.2369 3.43402 Vertex 6268 0.652248 20.6271 2.12793 Vertex 6269 0.652262 17.9921 2.128 Vertex 6270 0.652616 19.2839 3.44398 Vertex 6271 0.65272 19.1923 3.42534 Vertex 6272 0.653306 23.9826 -5.02644 Vertex 6273 0.65371 18.0057 4.36949 Vertex 6274 0.657173 14.6006 3.86466 Vertex 6275 0.661407 19.2959 3.4542 Vertex 6276 0.661943 20.5208 3.91767 Vertex 6277 0.663406 19.223 3.44137 Vertex 6278 0.663775 18.3867 3.858 Vertex 6279 0.664703 22.5937 -4.82972 Vertex 6280 0.66628 17.0539 3.80255 Vertex 6281 0.668265 17.8671 4.17977 Vertex 6282 0.668949 15.1856 3.84497 Vertex 6283 0.670731 18.3387 4.11866 Vertex 6284 0.671368 17.7571 4.09753 Vertex 6285 0.671512 16.5929 -5.63521 Vertex 6286 0.67158 20.2654 -4.93332 Vertex 6287 0.672623 14.144 2.23167 Vertex 6288 0.673071 18.3639 4.02737 Vertex 6289 0.67393 20.4094 2.77024 Vertex 6290 0.673942 18.2099 2.7703 Vertex 6291 0.676528 19.2829 3.46481 Vertex 6292 0.676732 15.3092 3.83446 Vertex 6293 0.677767 18.0754 4.33555 Vertex 6294 0.67905 19.2376 3.45865 Vertex 6295 0.679254 19.4363 3.48262 Vertex 6296 0.679354 17.8999 4.28107 Vertex 6297 0.680046 20.9412 -4.66502 Vertex 6298 0.680421 23.3413 -5.70001 Vertex 6299 0.680982 23.4129 1.27096 Vertex 6300 0.682843 15.2795 3.82912 Vertex 6301 0.682919 16.0958 -5.54189 Vertex 6302 0.683491 14.3536 1.59313 Vertex 6303 0.683722 23.8184 -5.35287 Vertex 6304 0.687232 23.0836 1.88735 Vertex 6305 0.687271 19.0189 3.53854 Vertex 6306 0.688451 22.4076 -3.41895 Vertex 6307 0.690304 14.4325 1.39568 Vertex 6308 0.691634 17.8478 4.13655 Vertex 6309 0.692914 23.8832 -3.90476 Vertex 6310 0.69381 20.3756 3.96236 Vertex 6311 0.693944 22.6911 -3.19247 Vertex 6312 0.694201 17.8565 4.19603 Vertex 6313 0.695287 15.3604 3.86145 Vertex 6314 0.695808 19.7883 3.27134 Vertex 6315 0.695812 18.8311 3.27136 Vertex 6316 0.695837 18.1439 4.29676 Vertex 6317 0.697025 16.8156 -2.84991 Vertex 6318 0.698144 19.3998 3.45375 Vertex 6319 0.699552 18.2762 4.19376 Vertex 6320 0.700508 22.7845 2.3261 Vertex 6321 0.700788 17.6955 4.10674 Vertex 6322 0.701831 16.853 -5.52568 Vertex 6323 0.702729 19.3963 3.45096 Vertex 6324 0.703003 -21.5335 -2.96162 Vertex 6325 0.703049 17.819 4.09803 Vertex 6326 0.703108 14.2074 2.02125 Vertex 6327 0.703141 19.2857 3.4745 Vertex 6328 0.704153 18.3283 3.98378 Vertex 6329 0.704165 16.7933 -4.78845 Vertex 6330 0.704639 14.1368 3.27122 Vertex 6331 0.704699 15.941 3.88917 Vertex 6332 0.704817 16.2133 -5.67947 Vertex 6333 0.706731 14.2773 1.80841 Vertex 6334 0.706854 18.2577 3.89558 Vertex 6335 0.706967 17.0765 -5.46646 Vertex 6336 0.707435 19.3933 3.45149 Vertex 6337 0.707444 -15.6751 -3.66791 Vertex 6338 0.70792 18.2113 4.25313 Vertex 6339 0.707931 22.0867 -3.49479 Vertex 6340 0.708088 17.9245 4.29186 Vertex 6341 0.709101 20.6109 2.33711 Vertex 6342 0.709115 18.0084 2.33718 Vertex 6343 0.709195 18.2508 3.88334 Vertex 6344 0.709315 19.2386 3.47202 Vertex 6345 0.70976 17.7179 -5.27645 Vertex 6346 0.709783 15.6737 -3.19752 Vertex 6347 0.710206 18.7772 -4.95567 Vertex 6348 0.712261 19.3908 3.45532 Vertex 6349 0.715892 17.8332 4.14796 Vertex 6350 0.716045 18.3014 3.95507 Vertex 6351 0.716119 21.6851 3.18107 Vertex 6352 0.720643 18.2564 3.91252 Vertex 6353 0.720807 22.5158 2.58719 Vertex 6354 0.721165 17.8595 4.20467 Vertex 6355 0.722558 18.3072 4.07217 Vertex 6356 0.722925 19.3846 3.46401 Vertex 6357 0.723224 22.076 -3.43017 Vertex 6358 0.723637 20.2837 4.0012 Vertex 6359 0.724005 17.804 4.09347 Vertex 6360 0.725809 22.0242 -3.71826 Vertex 6361 0.7271 19.2841 3.46682 Vertex 6362 0.727169 14.514 1.21606 Vertex 6363 0.727636 -21.5569 -3.54963 Vertex 6364 0.727707 18.222 3.86625 Vertex 6365 0.731203 15.2342 -3.48261 Vertex 6366 0.734254 17.9692 4.28263 Vertex 6367 0.734557 22.9295 -3.50799 Vertex 6368 0.736048 17.8275 4.14214 Vertex 6369 0.736124 18.2089 3.83739 Vertex 6370 0.73623 14.0705 2.73272 Vertex 6371 0.736857 18.8698 3.60737 Vertex 6372 0.737582 19.2447 3.47007 Vertex 6373 0.73815 22.6763 -5.10651 Vertex 6374 0.738505 15.4331 3.91009 Vertex 6375 0.739428 19.3746 3.47756 Vertex 6376 0.7398 -15.6092 0.833923 Vertex 6377 0.741659 22.6517 -3.7285 Vertex 6378 0.741709 18.1952 3.84364 Vertex 6379 0.741823 19.2835 3.45846 Vertex 6380 0.742684 20.1021 3.11442 Vertex 6381 0.742693 18.5172 3.11446 Vertex 6382 0.745135 14.8028 3.83488 Vertex 6383 0.745636 18.2125 3.82554 Vertex 6384 0.745807 15.8817 3.97329 Vertex 6385 0.746344 22.8544 -5.44599 Vertex 6386 0.747309 19.2838 3.44943 Vertex 6387 0.749156 17.8759 4.20569 Vertex 6388 0.749325 18.7423 3.66899 Vertex 6389 0.750052 19.2839 2.90477 Vertex 6390 0.750052 19.2839 3.26486 Vertex 6391 0.751421 20.2453 4.03418 Vertex 6392 0.751898 19.3097 3.37452 Vertex 6393 0.752447 14.2482 1.04566 Vertex 6394 0.75283 24.057 -4.7259 Vertex 6395 0.753428 15.8534 3.98593 Vertex 6396 0.754027 17.7884 4.09338 Vertex 6397 0.75423 19.2496 3.46481 Vertex 6398 0.755772 17.5275 -4.58455 Vertex 6399 0.756553 17.6663 4.09154 Vertex 6400 0.757353 24.0278 -4.15956 Vertex 6401 0.757853 18.0339 4.2534 Vertex 6402 0.757865 20.9187 3.69092 Vertex 6403 0.757883 19.365 3.47897 Vertex 6404 0.757957 15.7468 3.97779 Vertex 6405 0.758546 16.3321 -5.30589 Vertex 6406 0.75926 19.2531 3.45624 Vertex 6407 0.759395 15.562 3.94887 Vertex 6408 0.759417 19.4081 3.37267 Vertex 6409 0.759418 19.2113 3.37267 Vertex 6410 0.759552 14.1938 3.34554 Vertex 6411 0.760253 18.2645 4.02198 Vertex 6412 0.761286 15.4971 -3.70517 Vertex 6413 0.761554 14.1017 3.00703 Vertex 6414 0.761774 19.2549 2.91181 Vertex 6415 0.761774 19.2549 3.27191 Vertex 6416 0.762128 18.613 3.72161 Vertex 6417 0.762632 17.5277 4.13305 Vertex 6418 0.764469 17.8306 4.13953 Vertex 6419 0.764492 14.5208 3.77918 Vertex 6420 0.765365 22.7632 -5.31193 Vertex 6421 0.766695 -17.7746 0.381241 Vertex 6422 0.768252 20.3082 2.93792 Vertex 6423 0.768262 18.3111 2.93797 Vertex 6424 0.768988 18.2312 4.1323 Vertex 6425 0.769305 20.1724 4.03917 Vertex 6426 0.769356 -11.5418 3.0213 Vertex 6427 0.769639 13.6351 0.884489 Vertex 6428 0.771035 17.1111 3.99207 Vertex 6429 0.774491 23.7353 -5.4033 Vertex 6430 0.77479 20.5627 2.53863 Vertex 6431 0.774803 18.0566 2.5387 Vertex 6432 0.775265 18.4818 3.76523 Vertex 6433 0.77529 18.0981 4.21967 Vertex 6434 0.7761 18.2337 3.80326 Vertex 6435 0.776389 19.8854 3.25152 Vertex 6436 0.776394 18.7339 3.25155 Vertex 6437 0.777287 20.065 4.01618 Vertex 6438 0.777325 24.0858 -4.43327 Vertex 6439 0.777336 17.9144 4.19376 Vertex 6440 0.778288 19.3558 3.46824 Vertex 6441 0.778809 18.1312 3.86101 Vertex 6442 0.778864 18.1315 3.88108 Vertex 6443 0.780044 18.2155 3.97267 Vertex 6444 0.781374 18.1311 3.83348 Vertex 6445 0.781535 18.132 3.8937 Vertex 6446 0.781789 19.504 3.36717 Vertex 6447 0.78179 19.1153 3.36718 Vertex 6448 0.781929 18.16 3.92423 Vertex 6449 0.782283 -17.856 -4.60472 Vertex 6450 0.782565 17.4685 -4.40807 Vertex 6451 0.783415 22.2008 2.82662 Vertex 6452 0.78471 17.7744 4.05001 Vertex 6453 0.785021 14.2566 3.42863 Vertex 6454 0.785469 17.8043 4.0781 Vertex 6455 0.785596 18.1344 3.81547 Vertex 6456 0.786565 18.1615 4.18147 Vertex 6457 0.786984 21.9814 -3.45977 Vertex 6458 0.787033 16.4849 -5.48485 Vertex 6459 0.787116 19.9621 3.99086 Vertex 6460 0.789355 19.0623 3.46438 Vertex 6461 0.791094 19.3501 3.45826 Vertex 6462 0.79155 19.6465 3.68037 Vertex 6463 0.79213 17.7699 4.04131 Vertex 6464 0.79216 18.6203 -4.28866 Vertex 6465 0.794057 19.6012 -4.79626 Vertex 6466 0.794408 17.8595 4.12558 Vertex 6467 0.796085 19.5886 3.58678 Vertex 6468 0.796132 16.0664 3.54027 Vertex 6469 0.796302 19.3479 3.44905 Vertex 6470 0.796987 23.4393 -5.63853 Vertex 6471 0.797061 18.3683 3.78154 Vertex 6472 0.79748 19.7258 3.78608 Vertex 6473 0.798125 18.1071 3.81153 Vertex 6474 0.798147 22.0524 -3.38713 Vertex 6475 0.798531 16.0569 3.54436 Vertex 6476 0.798789 19.8635 3.96322 Vertex 6477 0.798905 19.3468 2.90429 Vertex 6478 0.798905 19.3468 3.26439 Vertex 6479 0.800678 18.131 3.80075 Vertex 6480 0.801117 17.769 4.02946 Vertex 6481 0.80149 19.7777 3.86656 Vertex 6482 0.802854 14.3362 3.53674 Vertex 6483 0.803581 19.8021 3.92179 Vertex 6484 0.805236 13.1186 0.731077 Vertex 6485 0.80534 18.0772 3.83447 Vertex 6486 0.805705 17.975 4.16889 Vertex 6487 0.805893 17.3696 4.14462 Vertex 6488 0.805926 16.2275 3.56004 Vertex 6489 0.808475 21.3945 3.3491 Vertex 6490 0.809211 16.6074 -5.14078 Vertex 6491 0.811083 19.5522 3.5053 Vertex 6492 0.811949 18.5744 -4.11926 Vertex 6493 0.813052 14.4327 3.66987 Vertex 6494 0.81422 14.9991 3.79755 Vertex 6495 0.816626 17.8162 4.01733 Vertex 6496 0.816907 15.9419 -3.97719 Vertex 6497 0.818329 17.8515 4.04762 Vertex 6498 0.818462 19.5952 3.35815 Vertex 6499 0.818464 19.0242 3.35816 Vertex 6500 0.81991 18.1744 4.06893 Vertex 6501 0.820382 19.5324 3.4625 Vertex 6502 0.820754 17.8082 4.00942 Vertex 6503 0.823325 19.0879 3.45936 Vertex 6504 0.823472 17.6835 4.04949 Vertex 6505 0.823982 19.5292 3.45835 Vertex 6506 0.824439 19.101 3.45543 Vertex 6507 0.825037 17.0447 3.60442 Vertex 6508 0.825084 21.6184 -4.03195 Vertex 6509 0.825647 18.024 3.87183 Vertex 6510 0.825864 17.9142 4.1003 Vertex 6511 0.826748 17.2486 4.12981 Vertex 6512 0.826855 17.1518 4.09573 Vertex 6513 0.827351 18.0363 4.14044 Vertex 6514 0.82743 16.9546 3.60786 Vertex 6515 0.827815 19.5257 3.45797 Vertex 6516 0.827901 17.053 3.60932 Vertex 6517 0.827914 16.5403 3.60367 Vertex 6518 0.828093 17.8056 3.99796 Vertex 6519 0.828724 23.6424 -5.47334 Vertex 6520 0.828977 19.111 3.45726 Vertex 6521 0.830435 17.7915 3.99121 Vertex 6522 0.83071 16.7525 -5.34922 Vertex 6523 0.831882 19.5219 3.46133 Vertex 6524 0.833735 17.176 4.11351 Vertex 6525 0.834912 16.9218 -5.04656 Vertex 6526 0.835082 16.7827 3.61961 Vertex 6527 0.835847 17.0162 -5.27256 Vertex 6528 0.836423 17.9963 3.89708 Vertex 6529 0.83694 19.1177 3.46486 Vertex 6530 0.837669 17.9941 3.91019 Vertex 6531 0.83823 18.7425 -4.76648 Vertex 6532 0.838353 17.6796 -5.07831 Vertex 6533 0.839312 22.2115 -3.25307 Vertex 6534 0.839972 23.3388 -3.63353 Vertex 6535 0.840061 18.0312 3.94688 Vertex 6536 0.84061 23.5293 0.52043 Vertex 6537 0.840872 17.8591 3.98035 Vertex 6538 0.841621 19.5112 3.47 Vertex 6539 0.84213 16.0065 3.62084 Vertex 6540 0.842275 18.0983 4.10842 Vertex 6541 0.8426 17.8527 3.97137 Vertex 6542 0.843211 22.5249 -3.00634 Vertex 6543 0.843352 17.8981 4.01384 Vertex 6544 0.843601 18.1077 4.00712 Vertex 6545 0.844159 19.1311 3.47576 Vertex 6546 0.845023 20.6672 3.82453 Vertex 6547 0.845981 21.9821 -3.61898 Vertex 6548 0.846421 23.5397 -5.56298 Vertex 6549 0.846475 15.3175 3.76127 Vertex 6550 0.847697 20.4835 2.72752 Vertex 6551 0.84771 18.1358 2.72758 Vertex 6552 0.850039 17.9696 4.07183 Vertex 6553 0.850161 17.7012 4.01621 Vertex 6554 0.850634 19.1513 3.48996 Vertex 6555 0.851178 18.0397 3.81936 Vertex 6556 0.852613 15.2878 3.75587 Vertex 6557 0.85369 17.6161 -4.84768 Vertex 6558 0.855053 17.8453 3.95586 Vertex 6559 0.857033 19.4937 3.48398 Vertex 6560 0.857447 17.9032 3.93908 Vertex 6561 0.857507 20.6779 2.07747 Vertex 6562 0.857522 17.9414 2.07754 Vertex 6563 0.857668 17.9034 3.92718 Vertex 6564 0.858285 15.3468 3.77413 Vertex 6565 0.85884 -20.0577 -5.38738 Vertex 6566 0.859508 12.6988 0.585421 Vertex 6567 0.860536 17.944 3.97675 Vertex 6568 0.861276 21.9714 -3.55436 Vertex 6569 0.86168 19.1715 3.49385 Vertex 6570 0.861906 21.9578 -3.41673 Vertex 6571 0.862715 18.0658 3.7959 Vertex 6572 0.863465 18.935 3.51255 Vertex 6573 0.864426 15.1894 3.75266 Vertex 6574 0.865548 18.6902 -4.54415 Vertex 6575 0.866932 18.0258 4.04017 Vertex 6576 0.867205 14.1491 2.49111 Vertex 6577 0.867391 23.1217 -3.7419 Vertex 6578 0.867803 18.0886 3.78571 Vertex 6579 0.868534 19.6793 3.34584 Vertex 6580 0.868538 18.94 3.34585 Vertex 6581 0.869952 20.1824 3.08313 Vertex 6582 0.869961 18.4369 3.08318 Vertex 6583 0.870736 19.9684 3.22833 Vertex 6584 0.870743 18.6509 3.22836 Vertex 6585 0.873541 19.4765 3.48542 Vertex 6586 0.875654 20.5013 3.89383 Vertex 6587 0.875765 -21.5005 -3.24821 Vertex 6588 0.876386 22.6668 -4.16744 Vertex 6589 0.876392 17.5294 4.08131 Vertex 6590 0.877295 19.192 3.48745 Vertex 6591 0.877506 17.0845 3.69421 Vertex 6592 0.878233 17.8369 3.93381 Vertex 6593 0.882313 22.6888 -2.84609 Vertex 6594 0.882921 17.96 3.86165 Vertex 6595 0.886827 14.7413 3.73469 Vertex 6596 0.886938 19.2049 3.47988 Vertex 6597 0.886984 18.1661 3.77166 Vertex 6598 0.888333 21.8398 3.04437 Vertex 6599 0.890209 17.905 3.8949 Vertex 6600 0.890607 19.2102 3.47115 Vertex 6601 0.891147 19.4597 3.47431 Vertex 6602 0.892338 19.4965 -4.12051 Vertex 6603 0.892442 19.2129 2.92664 Vertex 6604 0.892442 19.2129 3.28674 Vertex 6605 0.896805 22.8432 -3.97151 Vertex 6606 0.897828 17.5376 4.05795 Vertex 6607 0.898065 16.5687 -4.29868 Vertex 6608 0.899411 14.1819 3.07855 Vertex 6609 0.899847 15.405 3.80731 Vertex 6610 0.900037 21.5826 -3.62903 Vertex 6611 0.900802 19.4737 -3.95306 Vertex 6612 0.901436 -12.4844 2.49631 Vertex 6613 0.902047 19.4493 3.46421 Vertex 6614 0.906162 20.3993 3.94512 Vertex 6615 0.906238 19.4454 3.45509 Vertex 6616 0.906353 23.647 -3.72296 Vertex 6617 0.907109 17.4102 4.09573 Vertex 6618 0.907557 22.6232 -4.50509 Vertex 6619 0.908335 19.4435 2.91038 Vertex 6620 0.908335 19.4435 3.27048 Vertex 6621 0.911833 20.661 2.28727 Vertex 6622 0.911847 17.9583 2.28734 Vertex 6623 0.914204 12.2879 0.437024 Vertex 6624 0.914602 14.1519 2.79114 Vertex 6625 0.915141 12.0577 -0.700179 Vertex 6626 0.920253 18.2985 3.75376 Vertex 6627 0.920308 17.7425 3.93976 Vertex 6628 0.923131 19.5597 -4.60358 Vertex 6629 0.924916 18.5525 -4.03593 Vertex 6630 0.925917 17.4136 4.07733 Vertex 6631 0.925922 16.3379 -2.6733 Vertex 6632 0.926029 20.3755 2.89913 Vertex 6633 0.926039 18.2438 2.89918 Vertex 6634 0.926925 15.9152 3.7697 Vertex 6635 0.92928 17.2854 4.08205 Vertex 6636 0.930773 19.7544 3.33053 Vertex 6637 0.930777 18.865 3.33056 Vertex 6638 0.93299 22.6073 -2.53077 Vertex 6639 0.933409 15.7248 -2.83447 Vertex 6640 0.934067 17.4389 -4.31825 Vertex 6641 0.935837 22.6128 -2.49546 Vertex 6642 0.936424 -12.7659 2.51495 Vertex 6643 0.936545 20.3613 3.9784 Vertex 6644 0.938449 18.8258 3.55761 Vertex 6645 0.940664 18.4314 3.71602 Vertex 6646 0.942642 23.9251 -5.04869 Vertex 6647 0.945681 19.6761 3.61122 Vertex 6648 0.947478 18.6965 3.60565 Vertex 6649 0.948216 18.5651 3.65845 Vertex 6650 0.948483 21.5699 -3.90335 Vertex 6651 0.948489 19.7166 3.69852 Vertex 6652 0.949385 19.6603 3.52017 Vertex 6653 0.950101 21.102 3.50996 Vertex 6654 0.950309 22.6211 -2.61506 Vertex 6655 0.951343 14.2131 2.25414 Vertex 6656 0.951543 15.2083 -2.98788 Vertex 6657 0.952371 -13.4461 -3.2809 Vertex 6658 0.952535 20.2826 3.98684 Vertex 6659 0.95267 19.6503 3.47224 Vertex 6660 0.952752 15.5157 3.80768 Vertex 6661 0.952852 23.1127 -5.52018 Vertex 6662 0.95413 20.1634 3.97044 Vertex 6663 0.955067 17.9078 3.84226 Vertex 6664 0.955538 19.6461 3.46742 Vertex 6665 0.955891 19.5248 -4.37833 Vertex 6666 0.957809 19.7819 3.78207 Vertex 6667 0.957967 20.0474 3.95362 Vertex 6668 0.958788 19.6418 3.46648 Vertex 6669 0.961312 20.19 -4.79822 Vertex 6670 0.96242 19.6372 3.46941 Vertex 6671 0.963622 19.8305 3.84983 Vertex 6672 0.964046 19.9346 3.93639 Vertex 6673 0.965931 19.8623 3.90179 Vertex 6674 0.96678 19.3097 3.40736 Vertex 6675 0.96862 17.9685 3.7937 Vertex 6676 0.970003 20.6109 2.49064 Vertex 6677 0.970016 18.0084 2.49071 Vertex 6678 0.970954 19.6236 3.47732 Vertex 6679 0.971654 20.8624 -4.54346 Vertex 6680 0.971898 19.3766 3.4061 Vertex 6681 0.971899 19.2427 3.4061 Vertex 6682 0.972742 15.8556 3.84971 Vertex 6683 0.972917 15.7142 3.84687 Vertex 6684 0.973467 21.558 -3.76905 Vertex 6685 0.973641 11.8859 0.285886 Vertex 6686 0.973851 14.645 3.59662 Vertex 6687 0.973853 17.1392 3.85909 Vertex 6688 0.976529 20.0352 3.20232 Vertex 6689 0.976537 18.5842 3.20235 Vertex 6690 0.977179 16.7837 -2.56079 Vertex 6691 0.978268 12.9034 -2.28661 Vertex 6692 0.979581 15.8275 3.86088 Vertex 6693 0.980573 21.5628 -3.53756 Vertex 6694 0.981275 17.5621 3.97371 Vertex 6695 0.981284 19.4564 -3.87598 Vertex 6696 0.98185 14.2785 3.1689 Vertex 6697 0.982692 17.9934 3.77084 Vertex 6698 0.984394 19.6012 3.49021 Vertex 6699 0.985686 14.9699 3.68111 Vertex 6700 0.987125 19.442 3.40235 Vertex 6701 0.987128 19.1774 3.40236 Vertex 6702 0.987792 22.6542 -2.74836 Vertex 6703 0.988638 14.2623 2.02183 Vertex 6704 0.989805 -19.9874 -0.37697 Vertex 6705 0.991334 14.7885 -3.13354 Vertex 6706 0.992853 18.0139 3.76184 Vertex 6707 0.994924 -12.9984 2.40676 Vertex 6708 0.995076 23.7931 -3.88523 Vertex 6709 0.997373 19.5787 3.49046 Vertex 6710 0.997866 22.7864 -2.17998 Vertex 6711 0.998805 -9.53699 3.74189 Vertex 6712 1.00004 23.3818 1.15206 Vertex 6713 1.00364 19.8185 3.31262 Vertex 6714 1.00365 18.8009 3.31264 Vertex 6715 1.00437 11.6543 0.192958 Vertex 6716 1.00437 11.6747 0.20453 Vertex 6717 1.0046 22.6795 -4.73149 Vertex 6718 1.0062 14.5139 3.42066 Vertex 6719 1.00671 21.5235 3.2218 Vertex 6720 1.00785 20.2413 3.04923 Vertex 6721 1.00786 18.3781 3.04928 Vertex 6722 1.00887 14.3917 3.27809 Vertex 6723 1.00989 19.5563 3.47807 Vertex 6724 1.01209 19.504 3.39621 Vertex 6725 1.01209 19.1153 3.39622 Vertex 6726 1.01783 19.5426 3.46731 Vertex 6727 1.01798 14.3211 1.77717 Vertex 6728 1.01869 17.4082 3.98648 Vertex 6729 1.01993 -13.4847 2.14227 Vertex 6730 1.0212 19.5377 3.45818 Vertex 6731 1.02288 19.5352 2.91346 Vertex 6732 1.02288 19.5352 3.27356 Vertex 6733 1.02639 17.1791 3.94962 Vertex 6734 1.02688 18.088 3.75221 Vertex 6735 1.03058 20.5288 2.68256 Vertex 6736 1.0306 18.0905 2.68262 Vertex 6737 1.03115 20.8429 3.6508 Vertex 6738 1.03255 17.2806 3.97807 Vertex 6739 1.03391 17.8072 3.82015 Vertex 6740 1.03512 17.2042 3.96579 Vertex 6741 1.03677 14.3776 -3.28193 Vertex 6742 1.03936 14.3893 1.52017 Vertex 6743 1.04273 16.023 3.39258 Vertex 6744 1.0428 23.0726 1.74578 Vertex 6745 1.04507 16.0136 3.39636 Vertex 6746 1.04617 19.5613 3.38783 Vertex 6747 1.04617 19.0581 3.38785 Vertex 6748 1.04901 23.4883 -3.77377 Vertex 6749 1.04912 20.1665 -3.9095 Vertex 6750 1.05163 20.6174 3.77163 Vertex 6751 1.05631 20.1562 -4.08011 Vertex 6752 1.05887 20.8516 -3.91628 Vertex 6753 1.0589 16.1889 3.41903 Vertex 6754 1.06107 15.2065 3.61844 Vertex 6755 1.06184 15.328 3.61275 Vertex 6756 1.06795 20.6949 2.02573 Vertex 6757 1.06796 17.9243 2.0258 Vertex 6758 1.07365 15.3573 3.62561 Vertex 6759 1.07571 20.8629 -3.77099 Vertex 6760 1.07594 -13.1685 2.17756 Vertex 6761 1.07852 20.4892 3.85057 Vertex 6762 1.07942 14.2363 2.55803 Vertex 6763 1.08071 23.9328 -4.13322 Vertex 6764 1.08118 -11.5593 2.94872 Vertex 6765 1.0838 14.2489 2.87425 Vertex 6766 1.08477 18.2158 3.74192 Vertex 6767 1.08496 23.9844 -4.73675 Vertex 6768 1.08536 19.87 3.29253 Vertex 6769 1.08536 18.7493 3.29256 Vertex 6770 1.08578 23.8215 -5.09601 Vertex 6771 1.08762 14.4718 1.29458 Vertex 6772 1.08853 19.6124 3.37742 Vertex 6773 1.08854 19.007 3.37743 Vertex 6774 1.08881 15.966 3.4676 Vertex 6775 1.09078 17.0873 3.48627 Vertex 6776 1.09098 22.8003 2.16742 Vertex 6777 1.09116 20.0841 3.17413 Vertex 6778 1.09117 18.5353 3.17418 Vertex 6779 1.09209 20.4166 2.8583 Vertex 6780 1.0921 18.2027 2.85836 Vertex 6781 1.09245 23.2677 -3.89421 Vertex 6782 1.09306 20.1312 -4.58962 Vertex 6783 1.0934 17.0961 3.49125 Vertex 6784 1.09356 16.5113 3.47571 Vertex 6785 1.09416 19.7605 3.52722 Vertex 6786 1.09483 16.9803 3.48885 Vertex 6787 1.09485 19.7683 3.61088 Vertex 6788 1.09501 19.7535 3.48297 Vertex 6789 1.09727 22.7614 -5.00888 Vertex 6790 1.0974 19.7472 3.47815 Vertex 6791 1.09768 13.9755 -3.43307 Vertex 6792 1.10035 19.7416 3.47701 Vertex 6793 1.10151 20.8012 -4.35621 Vertex 6794 1.102 19.8052 3.69171 Vertex 6795 1.1027 22.9494 -5.3596 Vertex 6796 1.10317 20.1507 -3.8384 Vertex 6797 1.10388 19.7367 3.47956 Vertex 6798 1.10554 16.7751 3.49899 Vertex 6799 1.10596 17.0622 -2.49695 Vertex 6800 1.10771 14.8731 3.51022 Vertex 6801 1.11068 23.9965 -4.41706 Vertex 6802 1.11093 19.7218 3.48598 Vertex 6803 1.1118 20.4584 3.88761 Vertex 6804 1.11559 19.8711 3.7697 Vertex 6805 1.11907 23.1282 -1.58431 Vertex 6806 1.11968 20.6779 2.23617 Vertex 6807 1.1197 17.9414 2.23625 Vertex 6808 1.12151 19.697 3.49626 Vertex 6809 1.12185 16.8397 -2.66445 Vertex 6810 1.12469 23.4539 0.20058 Vertex 6811 1.12472 20.1199 -4.35024 Vertex 6812 1.12511 19.9231 3.83174 Vertex 6813 1.12642 17.1241 3.55376 Vertex 6814 1.12673 17.6031 3.82859 Vertex 6815 1.12755 13.744 -3.526 Vertex 6816 1.12821 13.7644 -3.51443 Vertex 6817 1.12863 20.3849 3.90569 Vertex 6818 1.129 20.2688 3.9048 Vertex 6819 1.12938 19.6716 3.4941 Vertex 6820 1.12997 22.8513 -5.21825 Vertex 6821 1.13003 14.2599 2.23184 Vertex 6822 1.1302 20.1531 3.90348 Vertex 6823 1.13054 19.9612 3.87784 Vertex 6824 1.13058 20.7976 -4.14715 Vertex 6825 1.13223 20.0379 3.90175 Vertex 6826 1.13387 23.2906 -5.44041 Vertex 6827 1.13453 19.6456 3.47951 Vertex 6828 1.13478 18.3538 3.70276 Vertex 6829 1.13746 23.6311 -3.92781 Vertex 6830 1.13806 18.9222 3.54242 Vertex 6831 1.13814 19.656 3.36522 Vertex 6832 1.13814 18.9633 3.36524 Vertex 6833 1.13846 19.6299 3.46758 Vertex 6834 1.13854 21.252 3.35891 Vertex 6835 1.13995 19.1494 3.50368 Vertex 6836 1.14118 19.6246 3.45831 Vertex 6837 1.14135 19.155 3.49416 Vertex 6838 1.14205 19.1578 2.94925 Vertex 6839 1.14205 19.1578 3.30935 Vertex 6840 1.14254 19.622 2.91353 Vertex 6841 1.14254 19.622 3.27363 Vertex 6842 1.14375 15.4721 3.62896 Vertex 6843 1.14458 22.5651 2.41699 Vertex 6844 1.14521 -12.6054 2.63504 Vertex 6845 1.14585 15.695 -3.00421 Vertex 6846 1.14624 19.1259 3.51896 Vertex 6847 1.14948 22.8024 -4.35597 Vertex 6848 1.14994 -21.4987 -1.24995 Vertex 6849 1.15089 17.8123 3.71904 Vertex 6850 1.15299 20.2771 3.01355 Vertex 6851 1.153 18.3422 3.0136 Vertex 6852 1.15389 22.9823 -4.14796 Vertex 6853 1.15664 21.9466 2.92126 Vertex 6854 1.16021 17.8624 3.69696 Vertex 6855 1.16023 19.0845 3.53999 Vertex 6856 1.16097 21.877 -3.38221 Vertex 6857 1.16121 12.1513 -0.910214 Vertex 6858 1.16579 19.3678 2.65738 Vertex 6859 1.1658 14.5685 1.10039 Vertex 6860 1.16647 22.2805 2.66827 Vertex 6861 1.17014 20.6271 2.44144 Vertex 6862 1.17016 17.9922 2.4415 Vertex 6863 1.17039 18.5238 -3.86987 Vertex 6864 1.17073 14.3021 1.98857 Vertex 6865 1.17159 15.2465 -3.30537 Vertex 6866 1.17304 17.882 3.69195 Vertex 6867 1.1739 19.9078 3.27076 Vertex 6868 1.1739 18.7115 3.27079 Vertex 6869 1.17395 15.8801 3.6063 Vertex 6870 1.1741 23.6721 -5.18989 Vertex 6871 1.17664 19.043 3.54893 Vertex 6872 1.17691 18.5019 3.63473 Vertex 6873 1.17743 18.9457 3.53903 Vertex 6874 1.18029 14.7087 3.28486 Vertex 6875 1.18044 14.3797 2.9799 Vertex 6876 1.18111 20.8314 -3.71129 Vertex 6877 1.18236 22.4308 -2.9496 Vertex 6878 1.18415 19.3097 3.40617 Vertex 6879 1.18675 19.2758 3.40554 Vertex 6880 1.18675 19.3436 3.40554 Vertex 6881 1.18935 18.9546 3.53833 Vertex 6882 1.18984 17.1714 3.67379 Vertex 6883 1.19058 17.4379 3.81548 Vertex 6884 1.19376 19.6911 3.35155 Vertex 6885 1.19376 18.9283 3.35157 Vertex 6886 1.19424 22.0632 -3.23088 Vertex 6887 1.19445 19.3766 3.40364 Vertex 6888 1.19445 19.2427 3.40364 Vertex 6889 1.19545 19.0015 3.54576 Vertex 6890 1.1977 18.9645 3.53953 Vertex 6891 1.19831 15.6789 3.67411 Vertex 6892 1.19907 15.4944 -3.56792 Vertex 6893 1.20062 18.6514 3.59139 Vertex 6894 1.20247 18.9753 3.54262 Vertex 6895 1.20326 17.4017 -4.16339 Vertex 6896 1.20454 14.5442 3.10809 Vertex 6897 1.20479 19.3205 2.65031 Vertex 6898 1.20589 18.8022 3.57277 Vertex 6899 1.20709 19.4081 3.40053 Vertex 6900 1.20709 19.2113 3.40054 Vertex 6901 1.20762 23.477 -5.33031 Vertex 6902 1.20888 21.6426 3.1111 Vertex 6903 1.21181 20.1139 3.14447 Vertex 6904 1.21182 18.5054 3.14452 Vertex 6905 1.21454 15.9239 -3.85193 Vertex 6906 1.21463 15.1169 3.41067 Vertex 6907 1.21464 20.9895 3.49261 Vertex 6908 1.21508 21.4985 -3.49464 Vertex 6909 1.21798 16.5351 -4.15741 Vertex 6910 1.21809 20.544 2.63646 Vertex 6911 1.2181 18.0754 2.63652 Vertex 6912 1.21825 17.9648 3.6938 Vertex 6913 1.21879 15.8234 3.68091 Vertex 6914 1.21953 19.4152 -3.70281 Vertex 6915 1.22253 23.7643 -4.15932 Vertex 6916 1.22306 14.3103 0.922714 Vertex 6917 1.22333 15.796 3.69142 Vertex 6918 1.22434 19.437 3.39629 Vertex 6919 1.22434 19.1823 3.3963 Vertex 6920 1.22543 17.3114 3.78082 Vertex 6921 1.22687 17.2084 3.74123 Vertex 6922 1.22756 14.3578 1.77479 Vertex 6923 1.2305 14.3035 2.33568 Vertex 6924 1.23501 20.7361 3.62288 Vertex 6925 1.23554 19.4513 2.65104 Vertex 6926 1.23598 6.77915 4.54701 Vertex 6927 1.23753 17.2349 3.75608 Vertex 6928 1.24126 22.8612 -4.58811 Vertex 6929 1.24323 19.8476 3.45879 Vertex 6930 1.2441 19.8387 3.45486 Vertex 6931 1.24467 -13.46 2.32892 Vertex 6932 1.24579 19.4629 3.39102 Vertex 6933 1.24579 19.1564 3.39103 Vertex 6934 1.24619 19.8311 3.45412 Vertex 6935 1.24638 23.4006 -4.09093 Vertex 6936 1.2469 19.8578 3.49966 Vertex 6937 1.24733 23.8561 -4.77555 Vertex 6938 1.24823 -6.50608 4.13236 Vertex 6939 1.24949 19.8247 3.45656 Vertex 6940 1.25131 13.6972 0.761545 Vertex 6941 1.25402 19.7168 3.33673 Vertex 6942 1.25402 18.9025 3.33675 Vertex 6943 1.25512 19.8693 3.57747 Vertex 6944 1.25643 19.807 3.4633 Vertex 6945 1.25779 14.338 2.65833 Vertex 6946 1.25916 23.8393 -4.4419 Vertex 6947 1.25965 17.5963 3.71472 Vertex 6948 1.26 16.0111 3.26491 Vertex 6949 1.26221 20.5961 3.70901 Vertex 6950 1.26234 20.4304 2.81645 Vertex 6951 1.26235 18.1889 2.81651 Vertex 6952 1.26289 16.0013 3.26785 Vertex 6953 1.26625 -21.6502 -5.13275 Vertex 6954 1.26699 19.778 3.47432 Vertex 6955 1.26708 19.9308 3.24785 Vertex 6956 1.26709 18.6885 3.24788 Vertex 6957 1.26836 14.318 2.00957 Vertex 6958 1.2709 19.485 3.38484 Vertex 6959 1.2709 19.1344 3.38485 Vertex 6960 1.27187 19.9058 3.65108 Vertex 6961 1.2739 19.7481 3.47283 Vertex 6962 1.27716 19.7173 3.45882 Vertex 6963 1.27839 20.6779 1.974 Vertex 6964 1.2784 17.9414 1.97407 Vertex 6965 1.27926 19.699 3.44736 Vertex 6966 1.2796 16.1787 3.28735 Vertex 6967 1.28021 19.6932 3.43845 Vertex 6968 1.28104 19.6903 3.25392 Vertex 6969 1.28155 14.4359 1.50241 Vertex 6970 1.28175 19.6903 2.89376 Vertex 6971 1.28179 6.82776 4.84247 Vertex 6972 1.29298 12.7302 -2.01553 Vertex 6973 1.29585 18.1106 3.70253 Vertex 6974 1.29625 20.5694 3.75098 Vertex 6975 1.29716 19.9673 3.72052 Vertex 6976 1.29906 19.5028 3.37792 Vertex 6977 1.29906 19.1166 3.37793 Vertex 6978 1.29923 -9.53645 3.60708 Vertex 6979 1.3018 20.2892 2.97697 Vertex 6980 1.30181 18.3301 2.97702 Vertex 6981 1.30343 13.1808 0.608134 Vertex 6982 1.30526 17.1128 3.34998 Vertex 6983 1.30655 15.9503 3.32305 Vertex 6984 1.30834 17.122 3.35409 Vertex 6985 1.31147 20.3802 3.7969 Vertex 6986 1.31267 20.4974 3.78028 Vertex 6987 1.31348 16.9978 3.35072 Vertex 6988 1.31381 20.0205 3.77469 Vertex 6989 1.31462 20.263 3.81217 Vertex 6990 1.31745 19.7325 3.32114 Vertex 6991 1.31745 18.8869 3.32116 Vertex 6992 1.31785 23.16 -5.26138 Vertex 6993 1.3217 16.5039 3.3352 Vertex 6994 1.32184 20.0651 3.81358 Vertex 6995 1.32185 23.1016 -4.37459 Vertex 6996 1.32211 20.146 3.82607 Vertex 6997 1.32318 21.3686 3.23779 Vertex 6998 1.3234 22.9482 -4.87701 Vertex 6999 1.3242 22.4701 -2.48373 Vertex 7000 1.32513 14.9207 3.12934 Vertex 7001 1.32718 22.4764 -2.44965 Vertex 7002 1.32753 20.661 2.18508 Vertex 7003 1.32755 17.9583 2.18515 Vertex 7004 1.32839 12.2607 -1.14015 Vertex 7005 1.32859 21.9691 2.86957 Vertex 7006 1.3292 23.5204 -4.33204 Vertex 7007 1.32957 19.5158 3.37042 Vertex 7008 1.32957 19.1036 3.37043 Vertex 7009 1.33299 16.777 3.35632 Vertex 7010 1.33323 17.1496 3.40153 Vertex 7011 1.33548 14.3876 1.80127 Vertex 7012 1.3355 20.1239 3.11406 Vertex 7013 1.33551 18.4954 3.11411 Vertex 7014 1.3378 17.251 -2.35172 Vertex 7015 1.34493 17.465 3.66181 Vertex 7016 1.34662 23.3096 -0.874511 Vertex 7017 1.34826 22.4838 -2.56583 Vertex 7018 1.34893 23.0478 -5.10143 Vertex 7019 1.34909 6.71821 5.02003 Vertex 7020 1.3507 20.0758 -3.66219 Vertex 7021 1.35275 23.6603 -4.89928 Vertex 7022 1.35455 19.5229 2.62421 Vertex 7023 1.35533 14.4973 2.77853 Vertex 7024 1.35535 -11.6515 3.06806 Vertex 7025 1.35634 14.5312 1.27168 Vertex 7026 1.36167 19.5237 3.36253 Vertex 7027 1.36168 19.0956 3.36254 Vertex 7028 1.36262 19.9386 3.22436 Vertex 7029 1.36262 18.6808 3.2244 Vertex 7030 1.36465 23.607 -4.60149 Vertex 7031 1.36784 14.3536 2.12409 Vertex 7032 1.36814 18.2652 3.67724 Vertex 7033 1.37029 20.6109 2.39223 Vertex 7034 1.3703 18.0084 2.3923 Vertex 7035 1.37137 15.4659 3.41008 Vertex 7036 1.37203 14.7141 2.91863 Vertex 7037 1.37991 17.1954 3.49231 Vertex 7038 1.38248 19.7377 3.30515 Vertex 7039 1.38248 18.8816 3.30517 Vertex 7040 1.38265 21.7377 3.00482 Vertex 7041 1.3832 12.761 0.462476 Vertex 7042 1.38582 17.6223 3.59296 Vertex 7043 1.391 15.8579 3.43053 Vertex 7044 1.39137 -30.307 -3.72014 Vertex 7045 1.39194 12.361 -1.36256 Vertex 7046 1.3928 -21.4147 -1.03516 Vertex 7047 1.39371 15.2697 3.2467 Vertex 7048 1.39459 19.5264 3.35443 Vertex 7049 1.3946 19.093 3.35445 Vertex 7050 1.39475 23.3154 0.946713 Vertex 7051 1.39527 17.6727 3.57427 Vertex 7052 1.39549 21.1069 3.34995 Vertex 7053 1.39566 19.9205 3.39755 Vertex 7054 1.39579 22.2894 2.59895 Vertex 7055 1.3963 19.91 3.39779 Vertex 7056 1.39684 19.1329 3.28646 Vertex 7057 1.39714 19.1302 3.47145 Vertex 7058 1.39734 19.9327 3.39969 Vertex 7059 1.39764 19.1331 2.92622 Vertex 7060 1.39856 19.1249 3.48117 Vertex 7061 1.39867 19.3097 3.371 Vertex 7062 1.39927 19.9013 3.40042 Vertex 7063 1.39934 22.5175 -2.69597 Vertex 7064 1.40071 23.2012 -4.6514 Vertex 7065 1.40092 17.3376 3.59945 Vertex 7066 1.4012 23.397 -5.10793 Vertex 7067 1.40202 19.2713 2.63387 Vertex 7068 1.40386 22.4184 -2.86419 Vertex 7069 1.40559 20.5288 2.59036 Vertex 7070 1.40561 18.0905 2.59043 Vertex 7071 1.40745 19.8793 3.40929 Vertex 7072 1.40761 19.9522 3.4375 Vertex 7073 1.40837 17.6929 3.57602 Vertex 7074 1.40967 17.2322 3.54534 Vertex 7075 1.41006 14.4936 1.53985 Vertex 7076 1.41247 14.3995 2.45526 Vertex 7077 1.41618 19.0943 3.50263 Vertex 7078 1.42084 19.8442 3.4244 Vertex 7079 1.4217 15.6591 3.46823 Vertex 7080 1.42251 17.26 3.56063 Vertex 7081 1.4227 12.5013 -1.62561 Vertex 7082 1.42364 22.0236 -3.16275 Vertex 7083 1.42578 20.8576 3.44759 Vertex 7084 1.42649 19.9789 3.51097 Vertex 7085 1.42716 23.2997 -4.89584 Vertex 7086 1.42751 19.5237 3.34634 Vertex 7087 1.42752 19.0956 3.34635 Vertex 7088 1.43031 22.6438 -2.16719 Vertex 7089 1.43095 19.8082 3.42663 Vertex 7090 1.43259 20.4166 2.77459 Vertex 7091 1.4326 18.2027 2.77465 Vertex 7092 1.43279 4.6941 4.77574 Vertex 7093 1.43468 4.53792 -5.415 Vertex 7094 1.43514 18.4285 3.61794 Vertex 7095 1.43663 15.7978 3.48753 Vertex 7096 1.43778 19.7714 3.41598 Vertex 7097 1.43794 16.0881 -2.44382 Vertex 7098 1.43831 19.7435 3.39858 Vertex 7099 1.4384 19.7403 3.21442 Vertex 7100 1.44023 19.7499 3.40663 Vertex 7101 1.44051 19.7402 2.85416 Vertex 7102 1.44345 15.7698 3.49405 Vertex 7103 1.44722 23.031 1.53065 Vertex 7104 1.44751 19.7325 3.28916 Vertex 7105 1.44751 18.8869 3.28919 Vertex 7106 1.44793 16.0308 3.15725 Vertex 7107 1.45001 19.0382 3.53581 Vertex 7108 1.4506 20.2771 2.94039 Vertex 7109 1.45061 18.3422 2.94043 Vertex 7110 1.45198 16.0202 3.15881 Vertex 7111 1.45353 4.73062 -5.62246 Vertex 7112 1.45718 15.475 -2.60498 Vertex 7113 1.45724 20.72 3.52045 Vertex 7114 1.45789 -21.4916 -0.735368 Vertex 7115 1.45805 14.6435 1.08259 Vertex 7116 1.45812 20.0184 3.57665 Vertex 7117 1.45816 19.9308 3.20088 Vertex 7118 1.45816 18.6885 3.20091 Vertex 7119 1.4592 20.1139 3.08366 Vertex 7120 1.4592 18.5054 3.0837 Vertex 7121 1.45962 19.5158 3.33845 Vertex 7122 1.45963 19.1036 3.33846 Vertex 7123 1.45994 -12.5875 2.70649 Vertex 7124 1.4611 17.7963 3.59646 Vertex 7125 1.46361 12.35 0.31408 Vertex 7126 1.46804 16.1969 3.16502 Vertex 7127 1.46848 17.1211 3.19554 Vertex 7128 1.47228 20.7208 -3.53124 Vertex 7129 1.47272 17.1308 3.19784 Vertex 7130 1.47433 -22.2983 -3.28052 Vertex 7131 1.47558 22.0368 2.76383 Vertex 7132 1.47736 18.5954 3.58323 Vertex 7133 1.47947 16.5071 -2.3084 Vertex 7134 1.48093 14.4422 1.88735 Vertex 7135 1.48174 17.4894 3.52547 Vertex 7136 1.48338 17.0069 3.19346 Vertex 7137 1.48338 18.981 3.55602 Vertex 7138 1.48365 20.6271 1.92354 Vertex 7139 1.48366 17.9921 1.92361 Vertex 7140 1.48374 14.9586 -2.7584 Vertex 7141 1.48463 22.3936 -2.45474 Vertex 7142 1.48596 22.4012 -2.42155 Vertex 7143 1.48656 21.4657 3.13016 Vertex 7144 1.48874 15.0706 2.9781 Vertex 7145 1.48988 20.6943 3.56852 Vertex 7146 1.49013 19.5028 3.33095 Vertex 7147 1.49013 19.1166 3.33096 Vertex 7148 1.49448 14.6107 1.32698 Vertex 7149 1.49479 18.766 3.5731 Vertex 7150 1.49536 15.9595 3.18719 Vertex 7151 1.4959 6.47029 5.06669 Vertex 7152 1.49792 17.1608 3.23754 Vertex 7153 1.49933 4.98294 4.96264 Vertex 7154 1.50155 20.4975 3.64675 Vertex 7155 1.5025 20.0707 3.63454 Vertex 7156 1.50465 20.6201 3.61062 Vertex 7157 1.50495 22.7814 1.94106 Vertex 7158 1.50682 16.8999 -2.39442 Vertex 7159 1.51043 18.8554 3.5679 Vertex 7160 1.51062 22.4025 -2.53831 Vertex 7161 1.51094 19.7168 3.27357 Vertex 7162 1.51094 18.9025 3.27359 Vertex 7163 1.51122 20.3771 3.67967 Vertex 7164 1.51231 16.5184 3.18214 Vertex 7165 1.51631 18.9226 3.56327 Vertex 7166 1.51743 16.7884 3.19162 Vertex 7167 1.51829 19.485 3.32403 Vertex 7168 1.51829 19.1344 3.32404 Vertex 7169 1.52174 19.5614 2.56725 Vertex 7170 1.52427 18.8635 3.56764 Vertex 7171 1.52801 21.8087 2.90295 Vertex 7172 1.52974 20.1226 3.67867 Vertex 7173 1.53027 20.6109 2.13524 Vertex 7174 1.53028 18.0084 2.13531 Vertex 7175 1.53159 18.8741 3.56735 Vertex 7176 1.53172 14.6079 2.62049 Vertex 7177 1.53238 18.887 3.56704 Vertex 7178 1.53367 20.2589 3.70935 Vertex 7179 1.53419 14.5387 -2.90405 Vertex 7180 1.53474 14.85 2.76936 Vertex 7181 1.53776 14.3748 0.759066 Vertex 7182 1.53984 20.1741 3.70902 Vertex 7183 1.54226 -6.47624 4.00547 Vertex 7184 1.5434 19.4629 3.31785 Vertex 7185 1.5434 19.1564 3.31786 Vertex 7186 1.54368 14.478 2.5058 Vertex 7187 1.54408 17.2111 3.31463 Vertex 7188 1.54479 15.7472 -2.71817 Vertex 7189 1.54782 14.4335 2.26505 Vertex 7190 1.54836 18.4883 -3.62108 Vertex 7191 1.54992 11.948 0.162942 Vertex 7192 1.55134 19.9078 3.17797 Vertex 7193 1.55135 18.7115 3.178 Vertex 7194 1.55216 17.1256 3.1174 Vertex 7195 1.55349 17.9829 3.63558 Vertex 7196 1.55698 17.1356 3.1188 Vertex 7197 1.55902 17.359 3.43395 Vertex 7198 1.55956 3.34044 -5.5179 Vertex 7199 1.56079 17.1318 3.11535 Vertex 7200 1.56111 5.41059 4.93892 Vertex 7201 1.56392 22.4278 -2.67225 Vertex 7202 1.56467 21.2055 3.22883 Vertex 7203 1.56484 19.1823 3.31259 Vertex 7204 1.56484 19.437 3.31258 Vertex 7205 1.56489 15.2895 -3.04454 Vertex 7206 1.5655 20.5627 2.34424 Vertex 7207 1.56551 18.0566 2.34431 Vertex 7208 1.56713 15.5269 -3.37354 Vertex 7209 1.56735 13.7617 0.597897 Vertex 7210 1.56795 22.5665 2.17793 Vertex 7211 1.56954 22.3245 -2.84237 Vertex 7212 1.56978 14.5695 1.62546 Vertex 7213 1.5712 19.6911 3.25876 Vertex 7214 1.57121 18.9282 3.25878 Vertex 7215 1.57184 -23.8351 -3.30151 Vertex 7216 1.57405 19.9263 3.30809 Vertex 7217 1.57415 -3.67004 4.13388 Vertex 7218 1.57415 -2.25204 4.1339 Vertex 7219 1.57415 -0.834042 4.13392 Vertex 7220 1.57415 0.583956 4.13394 Vertex 7221 1.5746 19.9381 3.30676 Vertex 7222 1.57478 17.2506 3.36193 Vertex 7223 1.57518 3.47644 4.9251 Vertex 7224 1.57543 19.9163 3.31122 Vertex 7225 1.57685 -13.1939 2.41279 Vertex 7226 1.57707 19.9519 3.30724 Vertex 7227 1.57805 15.8488 3.24238 Vertex 7228 1.57894 15.932 -3.67969 Vertex 7229 1.57909 -3.66992 -4.33347 Vertex 7230 1.57909 -2.25192 -4.33345 Vertex 7231 1.57909 -0.833921 -4.33343 Vertex 7232 1.57909 0.584077 -4.33341 Vertex 7233 1.57946 14.7382 0.88898 Vertex 7234 1.57985 20.0841 3.054 Vertex 7235 1.57985 18.5353 3.05404 Vertex 7236 1.58161 19.8918 3.32182 Vertex 7237 1.5821 19.4081 3.30834 Vertex 7238 1.5821 19.2113 3.30835 Vertex 7239 1.58427 21.35 -3.30994 Vertex 7240 1.58848 20.4835 2.5454 Vertex 7241 1.58849 18.1358 2.54547 Vertex 7242 1.58939 14.1278 -3.05245 Vertex 7243 1.59004 17.2794 3.37943 Vertex 7244 1.59014 17.3568 -3.94348 Vertex 7245 1.59082 16.7321 -2.19873 Vertex 7246 1.59088 16.0747 3.05984 Vertex 7247 1.59089 6.31946 4.9391 Vertex 7248 1.5926 19.8527 3.33987 Vertex 7249 1.59278 14.739 1.16265 Vertex 7250 1.59281 -13.1294 -4.98923 Vertex 7251 1.59294 16.9768 3.08609 Vertex 7252 1.5937 11.7165 0.070014 Vertex 7253 1.5941 11.7368 0.081587 Vertex 7254 1.59474 19.2427 3.30524 Vertex 7255 1.59474 19.3766 3.30524 Vertex 7256 1.59561 19.7382 3.14147 Vertex 7257 1.59574 20.2413 2.90471 Vertex 7258 1.59575 18.3781 2.90475 Vertex 7259 1.59593 5.38226 -5.60642 Vertex 7260 1.59612 19.7415 3.32526 Vertex 7261 1.59689 16.0648 3.05938 Vertex 7262 1.59831 17.4596 3.42851 Vertex 7263 1.59832 -9.59247 3.72333 Vertex 7264 1.59851 19.7378 2.78096 Vertex 7265 1.59865 20.3755 2.73377 Vertex 7266 1.59866 18.2438 2.73383 Vertex 7267 1.59873 17.1574 3.14952 Vertex 7268 1.59907 19.8126 3.34564 Vertex 7269 1.59919 -24.2339 -3.32883 Vertex 7270 1.5994 17.0164 3.07191 Vertex 7271 1.60003 19.7476 3.33233 Vertex 7272 1.60025 19.9823 3.34269 Vertex 7273 1.60034 16.5047 -3.96301 Vertex 7274 1.60052 -7.48821 -5.80326 Vertex 7275 1.60101 19.7713 3.33912 Vertex 7276 1.60245 19.2758 3.30334 Vertex 7277 1.60245 19.3436 3.30334 Vertex 7278 1.60504 19.3097 3.30271 Vertex 7279 1.60512 16.2316 3.06124 Vertex 7280 1.60611 4.67001 4.70145 Vertex 7281 1.60838 17.0215 3.06951 Vertex 7282 1.61088 17.4757 3.44003 Vertex 7283 1.61328 -3.67005 4.45599 Vertex 7284 1.61328 -2.25205 4.45601 Vertex 7285 1.61436 0.612496 4.76566 Vertex 7286 1.61555 19.35 -3.43355 Vertex 7287 1.61697 20.9569 3.30085 Vertex 7288 1.62552 19.2696 2.56202 Vertex 7289 1.62625 15.7786 3.26957 Vertex 7290 1.62657 1.21441 5.00383 Vertex 7291 1.62682 19.656 3.24508 Vertex 7292 1.62682 18.9633 3.2451 Vertex 7293 1.62867 21.5434 3.03602 Vertex 7294 1.62996 22.5426 -2.15751 Vertex 7295 1.63002 13.2452 0.444484 Vertex 7296 1.63182 17.4842 3.43883 Vertex 7297 1.63283 22.3375 2.37682 Vertex 7298 1.63341 -3.66992 -4.65662 Vertex 7299 1.63341 -2.25192 -4.6566 Vertex 7300 1.63362 22.9724 -1.63633 Vertex 7301 1.63425 16.7594 3.08052 Vertex 7302 1.6356 15.4969 3.15103 Vertex 7303 1.63566 17.1391 3.13747 Vertex 7304 1.63963 16.5357 3.06359 Vertex 7305 1.63988 19.87 3.1562 Vertex 7306 1.63989 18.7493 3.15623 Vertex 7307 1.63996 15.7489 3.26876 Vertex 7308 1.64024 16.0117 3.07113 Vertex 7309 1.64076 18.1657 3.63946 Vertex 7310 1.64308 15.655 3.22924 Vertex 7311 1.64415 20.0294 3.41312 Vertex 7312 1.64495 15.3313 3.01833 Vertex 7313 1.6536 14.6988 1.4173 Vertex 7314 1.6542 -0.833917 -4.65355 Vertex 7315 1.6542 0.584082 -4.65353 Vertex 7316 1.65679 19.1382 3.2181 Vertex 7317 1.65798 19.1358 3.40302 Vertex 7318 1.65877 2.26427 5.11082 Vertex 7319 1.6592 19.1388 2.85758 Vertex 7320 1.6598 -0.834047 4.44957 Vertex 7321 1.6598 0.583952 4.44959 Vertex 7322 1.66024 20.8214 3.36082 Vertex 7323 1.66279 19.1315 3.41236 Vertex 7324 1.6639 14.5215 2.03304 Vertex 7325 1.66606 13.7258 -3.20359 Vertex 7326 1.67102 17.3499 -2.12512 Vertex 7327 1.67113 15.1583 2.83113 Vertex 7328 1.67418 -11.7335 -6.09934 Vertex 7329 1.67642 19.6124 3.23289 Vertex 7330 1.67642 19.007 3.23291 Vertex 7331 1.67774 17.1955 3.21117 Vertex 7332 1.67804 14.504 2.32628 Vertex 7333 1.67867 20.5439 1.8756 Vertex 7334 1.67868 18.0753 1.87566 Vertex 7335 1.6805 23.3306 -0.050574 Vertex 7336 1.68404 -25.5711 -3.3471 Vertex 7337 1.68444 2.14296 -5.6208 Vertex 7338 1.68623 17.3276 3.3224 Vertex 7339 1.68713 19.097 3.43845 Vertex 7340 1.6874 16.764 2.99708 Vertex 7341 1.68829 -10.0787 -6.05037 Vertex 7342 1.68885 16.1426 2.97269 Vertex 7343 1.68971 17.4916 3.43627 Vertex 7344 1.68984 -12.6992 2.5306 Vertex 7345 1.69053 20.091 3.46814 Vertex 7346 1.69085 16.2828 2.97602 Vertex 7347 1.69268 14.9517 2.66028 Vertex 7348 1.69272 19.5291 2.47629 Vertex 7349 1.6939 0.598831 -5.11583 Vertex 7350 1.69422 16.8026 2.98256 Vertex 7351 1.69448 20.0352 3.02582 Vertex 7352 1.69448 18.5842 3.02585 Vertex 7353 1.69448 20.7991 3.40872 Vertex 7354 1.69482 14.4415 0.554714 Vertex 7355 1.69647 14.852 0.987641 Vertex 7356 1.69761 16.1354 2.96954 Vertex 7357 1.6992 17.0231 3.08743 Vertex 7358 1.6996 22.0945 2.53771 Vertex 7359 1.70363 16.5558 2.97955 Vertex 7360 1.70392 16.8057 2.97947 Vertex 7361 1.70444 17.6611 3.50888 Vertex 7362 1.70515 13.4943 -3.29652 Vertex 7363 1.70687 13.5146 -3.28495 Vertex 7364 1.7096 14.7115 2.50578 Vertex 7365 1.71396 -25.9697 -3.37733 Vertex 7366 1.71441 20.7291 3.45238 Vertex 7367 1.71808 13.8285 0.393545 Vertex 7368 1.71879 19.5613 3.22248 Vertex 7369 1.71879 19.0581 3.22249 Vertex 7370 1.71938 14.8153 0.690851 Vertex 7371 1.71948 21.7892 -3.05052 Vertex 7372 1.72002 20.6115 3.4918 Vertex 7373 1.72092 15.9154 3.09509 Vertex 7374 1.72101 17.2293 3.25187 Vertex 7375 1.72159 19.8185 3.13612 Vertex 7376 1.7216 18.8009 3.13614 Vertex 7377 1.7222 21.2852 3.12926 Vertex 7378 1.72289 20.5287 2.08789 Vertex 7379 1.7229 18.0905 2.08795 Vertex 7380 1.72291 18.3448 3.60811 Vertex 7381 1.72436 12.8254 0.298828 Vertex 7382 1.72853 17.2588 3.27161 Vertex 7383 1.73026 1.18158 -5.50375 Vertex 7384 1.731 19.0325 3.48129 Vertex 7385 1.73123 -22.2784 -3.26744 Vertex 7386 1.73154 14.5826 2.38827 Vertex 7387 1.73349 14.8303 1.26287 Vertex 7388 1.73365 20.1824 2.87081 Vertex 7389 1.73365 18.4369 2.87085 Vertex 7390 1.73726 16.9288 -2.06602 Vertex 7391 1.73878 16.3064 2.9313 Vertex 7392 1.73917 20.4934 3.52846 Vertex 7393 1.73938 20.167 3.50775 Vertex 7394 1.74068 16.5659 2.93569 Vertex 7395 1.7412 16.107 2.97485 Vertex 7396 1.74547 3.45723 4.84657 Vertex 7397 1.7489 16.3024 2.92708 Vertex 7398 1.75076 16.566 2.93199 Vertex 7399 1.75098 20.4835 2.29865 Vertex 7400 1.75099 18.1358 2.29871 Vertex 7401 1.75269 19.6842 3.03506 Vertex 7402 1.75287 19.504 3.2141 Vertex 7403 1.75287 19.1153 3.21411 Vertex 7404 1.75365 19.6873 3.21849 Vertex 7405 1.75391 2.2504 5.03539 Vertex 7406 1.75575 19.6829 2.67416 Vertex 7407 1.75642 20.3082 2.69499 Vertex 7408 1.75643 18.3111 2.69504 Vertex 7409 1.75865 19.6923 3.22444 Vertex 7410 1.76018 8.04807 -6.14647 Vertex 7411 1.7607 14.6635 1.75923 Vertex 7412 1.76225 20.4094 2.50269 Vertex 7413 1.76226 18.2099 2.50275 Vertex 7414 1.76685 19.7169 3.22822 Vertex 7415 1.7699 20.2327 3.54048 Vertex 7416 1.77002 -13.8469 -5.28026 Vertex 7417 1.77087 18.965 3.51124 Vertex 7418 1.77105 19.309 2.46677 Vertex 7419 1.77147 15.8534 3.10449 Vertex 7420 1.77184 20.3748 3.56234 Vertex 7421 1.77551 21.8428 2.68186 Vertex 7422 1.77771 18.5286 3.58116 Vertex 7423 1.77784 19.1774 3.20797 Vertex 7424 1.77784 19.442 3.20796 Vertex 7425 1.77796 19.8697 3.18897 Vertex 7426 1.77826 19.7611 3.22985 Vertex 7427 1.77891 19.8443 3.20087 Vertex 7428 1.77944 19.8798 3.18503 Vertex 7429 1.78091 17.1485 3.18192 Vertex 7430 1.78092 19.8916 3.18251 Vertex 7431 1.78158 13.312 0.240132 Vertex 7432 1.78208 20.2879 3.56635 Vertex 7433 1.78228 19.8036 3.22073 Vertex 7434 1.78243 19.9051 3.18142 Vertex 7435 1.78675 17.2673 3.28907 Vertex 7436 1.78892 4.66595 4.768 Vertex 7437 1.78935 16.8093 2.99942 Vertex 7438 1.79172 19.9419 -3.38087 Vertex 7439 1.79189 15.8258 3.09935 Vertex 7440 1.79306 19.3766 3.20422 Vertex 7441 1.79306 19.2427 3.20423 Vertex 7442 1.79446 19.7544 3.1182 Vertex 7443 1.79447 18.865 3.11823 Vertex 7444 1.79616 17.8767 3.57367 Vertex 7445 1.79816 14.608 2.15071 Vertex 7446 1.79818 19.3097 3.20297 Vertex 7447 1.80027 19.9684 2.99981 Vertex 7448 1.80028 18.6509 2.99985 Vertex 7449 1.80237 16.2916 2.93389 Vertex 7450 1.80516 18.7172 3.55861 Vertex 7451 1.80586 14.9497 0.801957 Vertex 7452 1.80674 18.8945 3.52829 Vertex 7453 1.80703 17.2714 3.29425 Vertex 7454 1.80859 21.034 3.18265 Vertex 7455 1.81147 -27.5065 -3.39832 Vertex 7456 1.81317 -22.3595 -4.88473 Vertex 7457 1.81355 14.9509 1.08997 Vertex 7458 1.81875 12.4145 0.150431 Vertex 7459 1.81961 16.0576 2.98864 Vertex 7460 1.82181 15.7439 3.05243 Vertex 7461 1.82231 18.817 3.546 Vertex 7462 1.82374 16.5655 2.94824 Vertex 7463 1.82482 19.9482 3.21522 Vertex 7464 1.82666 18.8527 3.53811 Vertex 7465 1.82874 -23.8152 -3.28843 Vertex 7466 1.82919 18.8278 3.54333 Vertex 7467 1.8301 19.459 2.39687 Vertex 7468 1.83041 22.1458 -2.29606 Vertex 7469 1.83064 18.8397 3.5407 Vertex 7470 1.83128 22.1358 -2.32746 Vertex 7471 1.83337 16.9852 -2.16686 Vertex 7472 1.83369 14.7954 1.54263 Vertex 7473 1.83799 17.1982 3.23715 Vertex 7474 1.83944 14.5085 0.358514 Vertex 7475 1.84341 17.2558 3.28036 Vertex 7476 1.8443 -6.48107 4.07782 Vertex 7477 1.8444 19.1663 3.12638 Vertex 7478 1.84628 19.1641 3.31113 Vertex 7479 1.84791 19.1673 2.76533 Vertex 7480 1.84836 17.1682 3.21515 Vertex 7481 1.84972 14.8906 0.501427 Vertex 7482 1.85353 19.1609 3.31957 Vertex 7483 1.85406 -24.2144 -3.29388 Vertex 7484 1.8567 19.6793 3.10291 Vertex 7485 1.85671 18.94 3.10292 Vertex 7486 1.85747 13.8954 0.197345 Vertex 7487 1.85754 2.26245 5.09119 Vertex 7488 1.85866 20.4304 1.83135 Vertex 7489 1.85867 18.1889 1.83141 Vertex 7490 1.86057 21.5826 2.80926 Vertex 7491 1.86091 20.1021 2.83952 Vertex 7492 1.86092 18.5172 2.83956 Vertex 7493 1.86124 15.6079 2.96373 Vertex 7494 1.86307 22.1388 -2.40843 Vertex 7495 1.86372 15.8502 -2.16584 Vertex 7496 1.86436 23.135 -1.0072 Vertex 7497 1.86513 23.2137 0.654922 Vertex 7498 1.86984 19.3585 2.37892 Vertex 7499 1.87121 20.9002 3.2301 Vertex 7500 1.87183 17.0211 3.12566 Vertex 7501 1.87229 16.022 2.99229 Vertex 7502 1.87557 15.2836 2.68792 Vertex 7503 1.87791 22.0385 -2.75298 Vertex 7504 1.87867 19.4128 2.37497 Vertex 7505 1.87916 15.4545 2.84222 Vertex 7506 1.87917 16.253 -2.02816 Vertex 7507 1.87996 12.8922 0.094476 Vertex 7508 1.88286 14.9174 1.38324 Vertex 7509 1.88373 14.7017 2.24035 Vertex 7510 1.88416 15.833 -2.48162 Vertex 7511 1.88538 19.1269 3.34546 Vertex 7512 1.88696 15.0857 2.52937 Vertex 7513 1.88728 15.2372 -2.32701 Vertex 7514 1.88797 18.0853 3.59162 Vertex 7515 1.89462 19.8854 2.97662 Vertex 7516 1.89462 18.7339 2.97665 Vertex 7517 1.89638 19.609 2.93014 Vertex 7518 1.89737 15.0607 0.898606 Vertex 7519 1.89762 19.6119 3.11311 Vertex 7520 1.89918 16.2739 2.95175 Vertex 7521 1.89923 16.0004 2.98583 Vertex 7522 1.89939 19.6072 2.56906 Vertex 7523 1.90049 22.9589 1.24197 Vertex 7524 1.90066 20.4166 2.04419 Vertex 7525 1.90067 18.2027 2.04425 Vertex 7526 1.90203 20.2163 2.65919 Vertex 7527 1.90204 18.403 2.65924 Vertex 7528 1.90311 19.616 3.11799 Vertex 7529 1.9042 17.1638 3.21703 Vertex 7530 1.90678 19.5952 3.0906 Vertex 7531 1.90678 19.0241 3.09061 Vertex 7532 1.9081 20.0208 3.28393 Vertex 7533 1.90901 17.2512 3.27146 Vertex 7534 1.91007 20.8837 3.2716 Vertex 7535 1.9108 14.7207 -2.48043 Vertex 7536 1.91121 15.0418 0.626083 Vertex 7537 1.91303 13.3789 0.043932 Vertex 7538 1.91332 14.8609 2.36657 Vertex 7539 1.91528 19.6404 3.11792 Vertex 7540 1.91536 15.3659 -2.80445 Vertex 7541 1.91665 22.8178 -1.66263 Vertex 7542 1.91778 17.0972 -1.91025 Vertex 7543 1.91961 12.0125 -0.000706 Vertex 7544 1.92145 -12.9329 2.61846 Vertex 7545 1.92215 20.3755 2.25657 Vertex 7546 1.92216 18.2438 2.25662 Vertex 7547 1.92262 20.3082 2.46327 Vertex 7548 1.92263 18.3111 2.46332 Vertex 7549 1.92351 17.1335 3.1939 Vertex 7550 1.92473 3.46099 4.90409 Vertex 7551 1.92577 22.155 -2.53895 Vertex 7552 1.92697 15.5838 -3.13535 Vertex 7553 1.92977 16.1077 2.93519 Vertex 7554 1.9307 18.4396 -3.29316 Vertex 7555 1.93101 14.7724 1.89858 Vertex 7556 1.93242 15.035 1.19596 Vertex 7557 1.93415 19.6852 3.11293 Vertex 7558 1.94158 17.3809 3.34799 Vertex 7559 1.94183 19.0621 3.3888 Vertex 7560 1.94197 20.8244 3.30558 Vertex 7561 1.94242 22.7277 1.64701 Vertex 7562 1.94295 -25.6153 -3.31302 Vertex 7563 1.94345 19.504 3.08158 Vertex 7564 1.94345 19.1153 3.08159 Vertex 7565 1.94374 19.7277 3.09832 Vertex 7566 1.94405 19.7681 3.0741 Vertex 7567 1.94477 21.3321 2.89878 Vertex 7568 1.94507 19.7937 3.05973 Vertex 7569 1.94607 17.4652 -1.9304 Vertex 7570 1.94677 19.8044 3.05521 Vertex 7571 1.94826 17.5591 3.43109 Vertex 7572 1.9483 17.1362 3.1968 Vertex 7573 1.94875 19.816 3.05174 Vertex 7574 1.94925 20.531 -3.23084 Vertex 7575 1.95051 16.8134 3.04239 Vertex 7576 1.95098 19.8285 3.04934 Vertex 7577 1.95209 15.9554 -3.42424 Vertex 7578 1.95333 -33.605 -4.43582 Vertex 7579 1.95789 15.9261 2.93779 Vertex 7580 1.95962 16.5644 2.98442 Vertex 7581 1.95968 19.2169 3.01133 Vertex 7582 1.95997 16.089 2.92806 Vertex 7583 1.96019 -25.887 -3.31673 Vertex 7584 1.96203 19.2151 3.19577 Vertex 7585 1.96255 14.3009 -2.62608 Vertex 7586 1.96376 19.2187 2.64949 Vertex 7587 1.96402 -33.2993 -3.565 Vertex 7588 1.9656 14.9641 0.320706 Vertex 7589 1.96578 16.4455 -1.91395 Vertex 7590 1.96582 19.4081 3.07609 Vertex 7591 1.96583 19.2113 3.07609 Vertex 7592 1.96599 16.2635 2.95818 Vertex 7593 1.96609 16.1024 2.92862 Vertex 7594 1.96629 14.5756 0.170467 Vertex 7595 1.9669 20.7222 3.33205 Vertex 7596 1.96909 20.1235 3.32556 Vertex 7597 1.9692 11.7809 -0.093635 Vertex 7598 1.9701 11.8013 -0.082061 Vertex 7599 1.97078 19.2131 3.20281 Vertex 7600 1.97202 22.2602 -2.0636 Vertex 7601 1.97223 17.0215 3.14584 Vertex 7602 1.97334 19.3097 3.07424 Vertex 7603 1.97442 20.0023 2.81162 Vertex 7604 1.97442 18.617 2.81165 Vertex 7605 1.9752 19.7883 2.95681 Vertex 7606 1.9752 18.8311 2.95684 Vertex 7607 1.97622 12.4812 -0.053921 Vertex 7608 1.97798 18.8349 3.52164 Vertex 7609 1.97985 18.2866 3.56273 Vertex 7610 1.98031 13.9625 0.009298 Vertex 7611 1.98194 18.8013 3.53177 Vertex 7612 1.98357 17.3087 -3.62741 Vertex 7613 1.98385 15.1609 0.723394 Vertex 7614 1.98434 18.8218 3.52537 Vertex 7615 1.98533 18.8134 3.52791 Vertex 7616 1.9907 16.4807 -3.6711 Vertex 7617 1.9909 22.5201 1.87003 Vertex 7618 1.99189 19.2678 -3.10991 Vertex 7619 1.99365 18.6968 3.5354 Vertex 7620 1.99368 18.8262 3.51748 Vertex 7621 1.99419 15.1482 0.980799 Vertex 7622 1.99467 18.8178 3.52002 Vertex 7623 1.99488 -27.4976 -1.93941 Vertex 7624 1.99846 20.612 3.35853 Vertex 7625 1.99973 -23.8937 -4.80727 Vertex 7626 2.00039 17.0244 3.14796 Vertex 7627 2.00046 18.9796 3.42278 Vertex 7628 2.00278 19.8815 3.07429 Vertex 7629 2.00279 16.2603 2.95321 Vertex 7630 2.003 18.8963 3.47092 Vertex 7631 2.00594 7.82099 4.60024 Vertex 7632 2.00743 -32.2028 -3.85415 Vertex 7633 2.0078 20.2563 3.34013 Vertex 7634 2.00832 15.1281 0.460017 Vertex 7635 2.01094 19.1837 3.22366 Vertex 7636 2.01193 14.917 1.68431 Vertex 7637 2.01404 12.9591 -0.101724 Vertex 7638 2.01508 18.4905 3.54399 Vertex 7639 2.01917 20.2892 1.7919 Vertex 7640 2.01918 18.3301 1.79195 Vertex 7641 2.02047 13.89 -2.77448 Vertex 7642 2.02388 17.7922 3.51682 Vertex 7643 2.0261 13.446 -0.144115 Vertex 7644 2.0267 19.5125 2.82671 Vertex 7645 2.02803 19.5153 3.00914 Vertex 7646 2.02813 21.0915 2.95041 Vertex 7647 2.02895 -25.9603 -1.81046 Vertex 7648 2.02943 19.5105 2.46567 Vertex 7649 2.03189 20.1021 2.62727 Vertex 7650 2.0319 18.5172 2.62731 Vertex 7651 2.03342 19.5189 3.01298 Vertex 7652 2.03429 20.3507 3.36013 Vertex 7653 2.03551 22.3044 2.058 Vertex 7654 2.03571 16.0401 2.88179 Vertex 7655 2.03662 20.4937 3.38503 Vertex 7656 2.03911 17.0592 3.15193 Vertex 7657 2.04003 19.6793 2.94088 Vertex 7658 2.04003 18.94 2.9409 Vertex 7659 2.04093 15.0418 1.50788 Vertex 7660 2.0457 17.1922 3.20889 Vertex 7661 2.04631 -22.3315 -4.77785 Vertex 7662 2.04632 19.5421 3.00823 Vertex 7663 2.04645 16.5643 3.00162 Vertex 7664 2.04828 15.7991 2.84817 Vertex 7665 2.04854 16.817 3.06417 Vertex 7666 2.04856 20.4067 3.38556 Vertex 7667 2.0522 16.6511 -1.80202 Vertex 7668 2.053 15.0284 0.162007 Vertex 7669 2.05332 -33.9647 -4.37041 Vertex 7670 2.05527 16.0862 2.88443 Vertex 7671 2.05857 19.2645 2.89201 Vertex 7672 2.0592 20.2771 2.00522 Vertex 7673 2.05921 18.3422 2.00527 Vertex 7674 2.06027 18.7047 3.50347 Vertex 7675 2.06146 19.2627 3.07545 Vertex 7676 2.06164 18.8891 3.44123 Vertex 7677 2.06175 -27.4876 -3.33859 Vertex 7678 2.06184 19.2661 2.53032 Vertex 7679 2.06203 14.6254 0.004696 Vertex 7680 2.06564 20.1824 2.42811 Vertex 7681 2.06564 18.4369 2.42815 Vertex 7682 2.06573 -32.4382 -2.82081 Vertex 7683 2.06673 19.5849 2.99489 Vertex 7684 2.0674 15.2479 0.793363 Vertex 7685 2.06818 15.2515 0.564334 Vertex 7686 2.0705 19.2608 3.08064 Vertex 7687 2.07136 19.8854 2.78779 Vertex 7688 2.07136 18.7339 2.78782 Vertex 7689 2.07213 15.1605 1.30602 Vertex 7690 2.07252 14.0123 -0.156473 Vertex 7691 2.07481 20.2412 2.21904 Vertex 7692 2.07482 18.378 2.21909 Vertex 7693 2.07607 19.7 2.91863 Vertex 7694 2.07624 22.0806 2.21092 Vertex 7695 2.07673 19.6881 2.9235 Vertex 7696 2.07697 19.6253 2.97265 Vertex 7697 2.07704 19.6632 2.94151 Vertex 7698 2.07746 17.3227 3.27791 Vertex 7699 2.07796 12.0792 -0.205059 Vertex 7700 2.07806 19.7113 2.91446 Vertex 7701 2.07818 -33.679 -3.59156 Vertex 7702 2.07953 17.2729 -1.77223 Vertex 7703 2.07999 -24.2927 -4.83908 Vertex 7704 2.08026 15.2214 0.315462 Vertex 7705 2.08028 7.90822 4.89768 Vertex 7706 2.08069 14.8963 2.04352 Vertex 7707 2.0825 19.1269 3.25832 Vertex 7708 2.08273 19.7221 2.91099 Vertex 7709 2.08344 16.8201 3.06475 Vertex 7710 2.08424 16.5654 2.99983 Vertex 7711 2.08709 -23.8256 -1.61062 Vertex 7712 2.08718 17.5969 -1.76757 Vertex 7713 2.08751 19.5613 2.9292 Vertex 7714 2.08752 19.058 2.92922 Vertex 7715 2.08816 21.1173 -2.98346 Vertex 7716 2.09079 20.966 2.99322 Vertex 7717 2.09634 15.6392 2.71839 Vertex 7718 2.10127 16.2594 2.91527 Vertex 7719 2.10151 17.0957 -1.98176 Vertex 7720 2.10206 15.4463 2.54847 Vertex 7721 2.10416 19.9748 3.1266 Vertex 7722 2.105 13.4879 -2.92562 Vertex 7723 2.10772 19.4509 2.76344 Vertex 7724 2.10887 -25.5735 -1.68668 Vertex 7725 2.10917 19.4534 2.94538 Vertex 7726 2.10978 18.0238 3.53373 Vertex 7727 2.10985 13.4958 -0.309886 Vertex 7728 2.11003 19.4487 2.4026 Vertex 7729 2.11009 15.0835 0.025329 Vertex 7730 2.11071 19.2398 3.08839 Vertex 7731 2.11084 12.5482 -0.250121 Vertex 7732 2.11437 19.4564 2.9484 Vertex 7733 2.11648 19.437 2.92209 Vertex 7734 2.11648 19.1823 2.9221 Vertex 7735 2.11673 -33.1107 -3.69455 Vertex 7736 2.117 15.2732 1.07871 Vertex 7737 2.11758 15.252 2.37663 Vertex 7738 2.12116 -22.2883 -1.48167 Vertex 7739 2.12255 23.1317 -0.279779 Vertex 7740 2.12433 -33.3832 -4.43682 Vertex 7741 2.12469 14.6579 -0.1388 Vertex 7742 2.12471 15.3215 0.192417 Vertex 7743 2.12471 13.0262 -0.289771 Vertex 7744 2.12499 -35.0093 -4.66006 Vertex 7745 2.12515 21.8402 2.34155 Vertex 7746 2.12553 16.855 3.06795 Vertex 7747 2.12621 19.3097 2.9197 Vertex 7748 2.12677 11.8477 -0.297987 Vertex 7749 2.12798 17.5067 3.35752 Vertex 7750 2.12812 11.868 -0.286415 Vertex 7751 2.13146 14.0449 -0.299968 Vertex 7752 2.13242 19.4732 2.93451 Vertex 7753 2.13274 20.9554 3.02718 Vertex 7754 2.13329 15.3499 0.426008 Vertex 7755 2.13415 19.7821 2.91988 Vertex 7756 2.13531 19.0389 3.30479 Vertex 7757 2.1368 16.8698 -1.69237 Vertex 7758 2.13852 -24.2354 -1.57445 Vertex 7759 2.13946 19.4241 2.74036 Vertex 7760 2.13947 -11.2875 3.18019 Vertex 7761 2.14105 19.4264 2.92183 Vertex 7762 2.14106 19.3088 2.76844 Vertex 7763 2.14119 19.4219 2.37983 Vertex 7764 2.14215 19.3094 2.40781 Vertex 7765 2.14281 19.9684 2.60001 Vertex 7766 2.14281 18.6509 2.60004 Vertex 7767 2.14288 15.0562 2.20287 Vertex 7768 2.14458 19.3071 2.95019 Vertex 7769 2.14496 15.3341 0.633656 Vertex 7770 2.14597 19.4287 2.92424 Vertex 7771 2.148 13.2564 -3.01855 Vertex 7772 2.14935 19.7544 2.76862 Vertex 7773 2.14935 18.865 2.76864 Vertex 7774 2.15024 -32.8637 -2.9009 Vertex 7775 2.15055 13.2767 -3.00697 Vertex 7776 2.1527 19.304 2.95305 Vertex 7777 2.1545 -32.3061 -3.02674 Vertex 7778 2.15623 17.0575 3.11865 Vertex 7779 2.15627 20.1239 1.7582 Vertex 7780 2.15628 18.4954 1.75824 Vertex 7781 2.16114 13.5284 -0.453381 Vertex 7782 2.16201 17.1913 3.1681 Vertex 7783 2.16207 19.3908 2.72327 Vertex 7784 2.16316 19.3892 2.36297 Vertex 7785 2.16332 19.5038 2.90373 Vertex 7786 2.16396 15.9525 -2.29455 Vertex 7787 2.16428 19.3919 2.90443 Vertex 7788 2.16503 15.9504 2.7938 Vertex 7789 2.16715 19.7935 -3.07764 Vertex 7790 2.1689 20.9064 3.05414 Vertex 7791 2.16977 19.3925 2.90644 Vertex 7792 2.17091 18.759 3.40889 Vertex 7793 2.17186 16.0213 -1.72006 Vertex 7794 2.17207 7.80563 5.07598 Vertex 7795 2.17358 19.4339 2.89678 Vertex 7796 2.1737 16.5597 2.97428 Vertex 7797 2.17551 20.1046 3.13649 Vertex 7798 2.17556 19.351 2.71219 Vertex 7799 2.17593 19.3504 2.35203 Vertex 7800 2.17593 15.6243 -1.83938 Vertex 7801 2.17681 15.4563 0.308415 Vertex 7802 2.17885 19.3501 2.89318 Vertex 7803 2.17962 15.3737 0.886465 Vertex 7804 2.18206 19.1996 3.09872 Vertex 7805 2.18224 21.5831 2.44988 Vertex 7806 2.18293 19.5323 2.86524 Vertex 7807 2.18468 19.2951 2.93966 Vertex 7808 2.18579 19.3479 2.89498 Vertex 7809 2.18779 20.0352 2.39808 Vertex 7810 2.1878 18.5841 2.39812 Vertex 7811 2.18832 15.0636 1.84234 Vertex 7812 2.18948 18.4809 3.47171 Vertex 7813 2.19027 22.9227 -1.10581 Vertex 7814 2.19127 19.5586 2.81904 Vertex 7815 2.19132 18.9711 3.31763 Vertex 7816 2.19214 17.3234 3.22211 Vertex 7817 2.19412 19.5883 2.78604 Vertex 7818 2.1946 20.1139 1.97193 Vertex 7819 2.19461 18.5054 1.97197 Vertex 7820 2.195 19.5772 2.79264 Vertex 7821 2.19533 15.0112 -2.00055 Vertex 7822 2.19631 15.4422 0.035051 Vertex 7823 2.19667 19.5987 2.7806 Vertex 7824 2.19728 17.7443 3.44772 Vertex 7825 2.19928 20.8189 3.07408 Vertex 7826 2.20053 15.172 -0.149886 Vertex 7827 2.20104 19.3914 2.87476 Vertex 7828 2.20167 13.076 -0.455543 Vertex 7829 2.20264 19.6084 2.77633 Vertex 7830 2.2052 20.084 2.18699 Vertex 7831 2.2052 18.5352 2.18703 Vertex 7832 2.20598 18.254 3.48179 Vertex 7833 2.20647 19.6124 2.75458 Vertex 7834 2.20647 19.007 2.7546 Vertex 7835 2.20662 15.2036 1.6368 Vertex 7836 2.21147 16.0618 2.80064 Vertex 7837 2.2122 12.1461 -0.401259 Vertex 7838 2.21221 15.4141 0.493643 Vertex 7839 2.21279 14.4947 -2.15396 Vertex 7840 2.21479 19.3456 2.86844 Vertex 7841 2.21682 20.2707 3.10395 Vertex 7842 2.22008 -22.2766 -1.94615 Vertex 7843 2.22096 12.6153 -0.438169 Vertex 7844 2.22299 15.4756 -2.58509 Vertex 7845 2.22345 16.8133 3.0298 Vertex 7846 2.2239 19.4421 2.83946 Vertex 7847 2.22479 14.7304 -0.322939 Vertex 7848 2.22611 17.4561 -1.65197 Vertex 7849 2.22615 17.0856 -1.58755 Vertex 7850 2.22866 -27.4857 -2.0479 Vertex 7851 2.22951 16.2022 -1.6426 Vertex 7852 2.22983 14.1173 -0.484108 Vertex 7853 2.23109 15.3276 1.42013 Vertex 7854 2.23204 19.8185 2.57807 Vertex 7855 2.23204 18.8009 2.5781 Vertex 7856 2.23235 19.8915 2.94114 Vertex 7857 2.23239 21.3462 2.5374 Vertex 7858 2.23249 20.7193 3.09577 Vertex 7859 2.23773 -33.7206 -5.04736 Vertex 7860 2.23816 15.8314 2.65936 Vertex 7861 2.24051 19.2803 2.91 Vertex 7862 2.24058 -23.929 -4.6972 Vertex 7863 2.24132 19.4629 2.74602 Vertex 7864 2.24132 19.1564 2.74603 Vertex 7865 2.24245 -25.6286 -4.77163 Vertex 7866 2.2436 17.504 3.2882 Vertex 7867 2.24474 13.1086 -0.599037 Vertex 7868 2.24534 15.5892 0.164112 Vertex 7869 2.24778 19.1484 3.10031 Vertex 7870 2.24935 21.4833 -2.73383 Vertex 7871 2.25053 17.0201 3.08181 Vertex 7872 2.2514 15.462 0.729283 Vertex 7873 2.25209 13.6009 -0.637521 Vertex 7874 2.25303 19.3097 2.74314 Vertex 7875 2.25506 19.665 2.76901 Vertex 7876 2.25512 15.683 2.47845 Vertex 7877 2.25611 22.4791 -1.63011 Vertex 7878 2.25706 20.4698 3.10082 Vertex 7879 2.25808 19.3885 2.8094 Vertex 7880 2.25981 11.9146 -0.494187 Vertex 7881 2.2614 16.2607 2.84436 Vertex 7882 2.26158 11.935 -0.482614 Vertex 7883 2.26162 19.4488 2.7761 Vertex 7884 2.26193 14.0749 -2.29962 Vertex 7885 2.26414 -25.8848 -1.91362 Vertex 7886 2.26585 19.3432 2.81356 Vertex 7887 2.26656 19.9385 1.73109 Vertex 7888 2.26657 18.6807 1.73112 Vertex 7889 2.26717 15.4877 0.373321 Vertex 7890 2.26789 23.0141 0.347768 Vertex 7891 2.26854 20.6076 3.1192 Vertex 7892 2.26908 15.4358 1.19234 Vertex 7893 2.27015 -25.6136 -1.89087 Vertex 7894 2.2702 20.4037 3.0332 Vertex 7895 2.27341 -24.1989 -4.68357 Vertex 7896 2.27559 21.1295 2.60413 Vertex 7897 2.27592 -26.0217 -4.7316 Vertex 7898 2.27673 20.5244 3.12088 Vertex 7899 2.2778 16.4177 -1.55974 Vertex 7900 2.27832 17.1904 3.12731 Vertex 7901 2.27861 15.6648 -2.85336 Vertex 7902 2.28124 15.6539 2.34734 Vertex 7903 2.28176 17.9757 3.45587 Vertex 7904 2.28606 19.87 2.37393 Vertex 7905 2.28607 18.7493 2.37396 Vertex 7906 2.28675 19.4542 2.7067 Vertex 7907 2.28841 15.4456 2.19616 Vertex 7908 2.28939 -33.5132 -3.54935 Vertex 7909 2.28939 19.2559 2.87058 Vertex 7910 2.29109 15.5833 -0.156639 Vertex 7911 2.29315 15.6057 2.2721 Vertex 7912 2.29621 12.6651 -0.60394 Vertex 7913 2.29739 19.656 2.56201 Vertex 7914 2.29739 18.9633 2.56203 Vertex 7915 2.29985 19.461 2.66714 Vertex 7916 2.30041 22.7821 0.875445 Vertex 7917 2.3005 15.1855 1.90996 Vertex 7918 2.30095 19.4693 2.65741 Vertex 7919 2.3023 15.2638 2.03824 Vertex 7920 2.30262 -24.1483 -1.76796 Vertex 7921 2.30354 19.9308 1.94516 Vertex 7922 2.30355 18.6885 1.94519 Vertex 7923 2.30457 19.4781 2.65015 Vertex 7924 2.30463 16.0309 2.66512 Vertex 7925 2.30682 17.3241 3.16631 Vertex 7926 2.30787 19.086 3.09316 Vertex 7927 2.30848 19.3809 2.72552 Vertex 7928 2.30863 -23.877 -1.74521 Vertex 7929 2.30978 20.0342 2.90092 Vertex 7930 2.3101 19.9078 2.16121 Vertex 7931 2.3101 18.7115 2.16124 Vertex 7932 2.31073 19.4876 2.64537 Vertex 7933 2.31245 19.3388 2.73603 Vertex 7934 2.31344 15.333 1.68986 Vertex 7935 2.314 -34.0872 -4.97328 Vertex 7936 2.31481 16.5473 2.92496 Vertex 7937 2.31596 -30.8593 -2.03129 Vertex 7938 2.31639 17.733 3.36637 Vertex 7939 2.31661 15.5359 0.595206 Vertex 7940 2.31673 17.267 -1.71016 Vertex 7941 2.3174 18.3778 -2.88612 Vertex 7942 2.31829 15.294 -0.36364 Vertex 7943 2.31857 13.664 -2.44802 Vertex 7944 2.31896 21.0188 2.65016 Vertex 7945 2.32049 17.7304 -1.59039 Vertex 7946 2.32066 16.6679 -1.47148 Vertex 7947 2.32092 12.2132 -0.589307 Vertex 7948 2.32317 17.2983 -1.48755 Vertex 7949 2.32472 15.5382 1.0027 Vertex 7950 2.32526 -30.3048 -2.1879 Vertex 7951 2.32559 18.8597 3.25166 Vertex 7952 2.32563 13.1811 -0.783177 Vertex 7953 2.33131 19.2218 2.82139 Vertex 7954 2.33377 7.56557 5.12066 Vertex 7955 2.33396 15.9939 -3.08556 Vertex 7956 2.33406 22.5705 1.24316 Vertex 7957 2.33474 15.9937 2.47786 Vertex 7958 2.33525 15.7488 -0.0069 Vertex 7959 2.33646 12.6976 -0.747435 Vertex 7960 2.33724 19.3852 2.65199 Vertex 7961 2.33726 19.485 2.55222 Vertex 7962 2.33726 19.1343 2.55223 Vertex 7963 2.33747 20.3223 -2.91731 Vertex 7964 2.33919 -35.0338 -3.30494 Vertex 7965 2.34184 19.3236 2.67149 Vertex 7966 2.34338 17.6154 -1.49608 Vertex 7967 2.34433 18.5497 3.33846 Vertex 7968 2.34643 15.4565 1.52431 Vertex 7969 2.34735 19.7377 1.71123 Vertex 7970 2.34735 18.8816 1.71125 Vertex 7971 2.34834 19.3666 2.63376 Vertex 7972 2.34856 19.1688 -2.73188 Vertex 7973 2.3491 15.6132 0.2373 Vertex 7974 2.35066 19.3097 2.54893 Vertex 7975 2.35143 16.7983 2.99258 Vertex 7976 2.35334 19.3997 2.60385 Vertex 7977 2.35391 19.7684 2.75862 Vertex 7978 2.35474 -30.8039 -2.24334 Vertex 7979 2.35498 14.8428 -0.547725 Vertex 7980 2.35542 19.4065 2.59256 Vertex 7981 2.35635 17.4984 3.2082 Vertex 7982 2.35756 19.3933 2.5966 Vertex 7983 2.35804 19.6911 2.35624 Vertex 7984 2.35804 18.9282 2.35626 Vertex 7985 2.35894 16.2705 2.7148 Vertex 7986 2.36053 21.7101 -2.07318 Vertex 7987 2.36119 14.2297 -0.708894 Vertex 7988 2.36241 19.4046 2.58704 Vertex 7989 2.36249 21.0142 2.67548 Vertex 7990 2.36378 19.4121 2.58402 Vertex 7991 2.36412 15.7678 -1.29214 Vertex 7992 2.36415 21.6966 -2.1019 Vertex 7993 2.36455 19.3914 2.59108 Vertex 7994 2.3655 19.5301 2.62167 Vertex 7995 2.36646 20.2103 2.79921 Vertex 7996 2.36698 11.9817 -0.682235 Vertex 7997 2.36744 16.0201 2.34359 Vertex 7998 2.36885 22.3794 1.45092 Vertex 7999 2.36913 12.0021 -0.670662 Vertex 8000 2.37004 19.4215 2.57898 Vertex 8001 2.37127 17.014 3.04722 Vertex 8002 2.37281 -31.3416 -2.10853 Vertex 8003 2.37332 15.5955 0.484235 Vertex 8004 2.37727 15.9721 2.22351 Vertex 8005 2.378 15.7606 -0.566094 Vertex 8006 2.37844 13.7133 -0.862307 Vertex 8007 2.3789 15.4049 1.76572 Vertex 8008 2.37983 16.2147 -1.99832 Vertex 8009 2.37996 15.3582 -1.42214 Vertex 8010 2.38011 16.9032 -1.37634 Vertex 8011 2.38131 19.3922 2.58178 Vertex 8012 2.38142 18.2008 3.38196 Vertex 8013 2.38268 19.3997 2.57875 Vertex 8014 2.38333 19.7324 1.92555 Vertex 8015 2.38333 18.8868 1.92557 Vertex 8016 2.38355 17.2575 -3.2152 Vertex 8017 2.38386 15.5809 1.31468 Vertex 8018 2.38552 -32.2529 -5.28061 Vertex 8019 2.3865 11.132 -5.6933 Vertex 8020 2.38692 19.7168 2.14233 Vertex 8021 2.38693 18.9025 2.14235 Vertex 8022 2.38907 16.4629 -3.28168 Vertex 8023 2.38917 15.9239 2.14826 Vertex 8024 2.38938 7.39991 4.99909 Vertex 8025 2.39036 -33.5131 -4.9756 Vertex 8026 2.39158 15.4838 1.87269 Vertex 8027 2.39191 15.6349 0.851211 Vertex 8028 2.39223 15.9739 -1.19331 Vertex 8029 2.39261 14.7452 -1.58331 Vertex 8030 2.39331 15.4926 -0.744391 Vertex 8031 2.39388 16.2886 2.52657 Vertex 8032 2.39403 12.2631 -0.755078 Vertex 8033 2.39463 17.1894 3.08652 Vertex 8034 2.39522 20.9752 2.69806 Vertex 8035 2.39631 22.1747 1.63722 Vertex 8036 2.39663 19.5263 1.69912 Vertex 8037 2.39663 19.0929 1.69913 Vertex 8038 2.39878 16.0345 -0.525407 Vertex 8039 2.39945 15.6667 1.98798 Vertex 8040 2.40109 16.55 2.80839 Vertex 8041 2.40195 19.5027 2.34545 Vertex 8042 2.40195 19.1166 2.34546 Vertex 8043 2.40391 17.9407 3.35805 Vertex 8044 2.40524 14.2287 -1.73672 Vertex 8045 2.40561 21.6929 -2.1762 Vertex 8046 2.4061 13.262 -2.59915 Vertex 8047 2.40704 16.4854 2.12529 Vertex 8048 2.40802 16.2231 2.21983 Vertex 8049 2.40879 16.497 2.255 Vertex 8050 2.41024 16.2728 2.36158 Vertex 8051 2.4116 16.7024 2.23696 Vertex 8052 2.41282 19.3352 2.56621 Vertex 8053 2.41319 19.3096 1.69506 Vertex 8054 2.41395 12.7701 -0.931575 Vertex 8055 2.41467 16.2122 -1.1342 Vertex 8056 2.41507 15.8273 2.0426 Vertex 8057 2.41644 21.9564 1.80206 Vertex 8058 2.41645 16.8393 2.16571 Vertex 8059 2.41671 19.3097 2.34183 Vertex 8060 2.41678 16.6257 2.07954 Vertex 8061 2.41691 15.547 1.61857 Vertex 8062 2.41714 20.9017 2.7179 Vertex 8063 2.41832 16.2132 2.1118 Vertex 8064 2.4196 18.9814 3.02407 Vertex 8065 2.42123 17.5367 -1.3271 Vertex 8066 2.4215 17.3248 3.11051 Vertex 8067 2.42548 15.9717 -0.167505 Vertex 8068 2.42568 11.5285 1.66807 Vertex 8069 2.42568 11.8225 2.11012 Vertex 8070 2.4257 14.0406 -3.75157 Vertex 8071 2.42576 13.2844 -3.40238 Vertex 8072 2.42592 13.0009 1.20876 Vertex 8073 2.42593 11.8018 0.889532 Vertex 8074 2.42616 14.0353 0.16341 Vertex 8075 2.42618 12.1175 -0.013846 Vertex 8076 2.42633 14.7589 -1.74606 Vertex 8077 2.42637 12.6895 -1.66557 Vertex 8078 2.42644 15.0521 -0.914126 Vertex 8079 2.42683 19.4423 2.53882 Vertex 8080 2.42691 17.7134 3.25298 Vertex 8081 2.42751 20.3482 2.69387 Vertex 8082 2.43048 16.7552 2.01844 Vertex 8083 2.43089 16.962 2.11436 Vertex 8084 2.4309 -11.3423 3.0219 Vertex 8085 2.43145 12.2956 -0.898571 Vertex 8086 2.432 19.5237 1.91359 Vertex 8087 2.432 19.0956 1.9136 Vertex 8088 2.43253 16.5678 2.62457 Vertex 8089 2.43265 16.7969 2.88128 Vertex 8090 2.43282 21.6292 -2.48196 Vertex 8091 2.43379 19.5157 2.13081 Vertex 8092 2.43379 19.1035 2.13082 Vertex 8093 2.4341 15.6976 1.13755 Vertex 8094 2.43458 21.7149 1.94278 Vertex 8095 2.4351 16.5502 2.44011 Vertex 8096 2.43583 14.439 -1.07529 Vertex 8097 2.43727 16.8988 2.33728 Vertex 8098 2.43738 16.4828 -1.1148 Vertex 8099 2.43802 19.9041 2.67653 Vertex 8100 2.43822 20.59 2.76255 Vertex 8101 2.43854 12.0315 -0.848005 Vertex 8102 2.43905 19.4018 2.52046 Vertex 8103 2.44098 12.0519 -0.836433 Vertex 8104 2.44127 20.8154 2.74016 Vertex 8105 2.44203 13.2935 -1.00796 Vertex 8106 2.44277 17.0234 2.27174 Vertex 8107 2.44363 16.0969 2.03181 Vertex 8108 2.44411 16.7588 2.43201 Vertex 8109 2.44691 16.394 2.00706 Vertex 8110 2.44701 20.5256 2.70008 Vertex 8111 2.44836 19.3096 1.90957 Vertex 8112 2.44896 13.0305 -2.69208 Vertex 8113 2.44924 16.87 1.9694 Vertex 8114 2.4494 13.9226 -1.22871 Vertex 8115 2.44954 19.3096 2.12694 Vertex 8116 2.45053 19.3447 2.5227 Vertex 8117 2.45075 21.4503 2.0594 Vertex 8118 2.45082 22.8572 -0.487035 Vertex 8119 2.45126 -25.6615 -4.60973 Vertex 8120 2.45147 13.8089 -1.88238 Vertex 8121 2.45184 15.7154 0.730696 Vertex 8122 2.45213 13.0508 -2.68051 Vertex 8123 2.45256 17.1237 -1.27432 Vertex 8124 2.45295 19.124 2.72613 Vertex 8125 2.45335 15.7903 0.085578 Vertex 8126 2.45363 17.0113 2.93344 Vertex 8127 2.45494 17.0705 2.08291 Vertex 8128 2.45512 15.7125 0.359228 Vertex 8129 2.45537 15.7644 -2.26022 Vertex 8130 2.45624 16.3144 -0.622332 Vertex 8131 2.45634 -32.2006 -2.28971 Vertex 8132 2.45647 21.7966 -1.88546 Vertex 8133 2.45824 19.2511 2.55918 Vertex 8134 2.45965 16.5286 1.95973 Vertex 8135 2.46059 17.1328 2.23541 Vertex 8136 2.46155 16.9707 2.45441 Vertex 8137 2.46249 -27.5559 -4.65414 Vertex 8138 2.4625 15.7087 1.44572 Vertex 8139 2.46262 15.6766 1.7137 Vertex 8140 2.46453 21.2092 2.1569 Vertex 8141 2.46625 17.4901 3.11752 Vertex 8142 2.46658 20.6412 2.77232 Vertex 8143 2.4671 16.809 2.69587 Vertex 8144 2.46745 17.8762 -1.25594 Vertex 8145 2.4676 20.7164 2.76485 Vertex 8146 2.46869 17.15 2.083 Vertex 8147 2.46886 19.6056 2.57903 Vertex 8148 2.47123 17.2127 2.23305 Vertex 8149 2.47171 17.0855 2.43074 Vertex 8150 2.47308 16.9698 1.93242 Vertex 8151 2.47423 16.8292 2.56088 Vertex 8152 2.47431 12.0641 -0.991499 Vertex 8153 2.47477 17.1866 2.96751 Vertex 8154 2.47514 17.2571 2.20544 Vertex 8155 2.4759 20.9915 2.23531 Vertex 8156 2.47698 12.0844 -0.979927 Vertex 8157 2.477 19.6306 -2.75249 Vertex 8158 2.47721 15.9856 1.91575 Vertex 8159 2.47795 17.191 2.02083 Vertex 8160 2.47937 16.6466 1.89546 Vertex 8161 2.47963 18.6968 3.14426 Vertex 8162 2.4799 16.263 1.91669 Vertex 8163 2.48354 15.8455 1.80972 Vertex 8164 2.48409 -25.9314 -4.5961 Vertex 8165 2.48451 17.2021 2.40527 Vertex 8166 2.4849 21.699 -2.29608 Vertex 8167 2.48531 16.7494 -1.06916 Vertex 8168 2.48767 17.2928 2.13712 Vertex 8169 2.4926 15.8065 0.992934 Vertex 8170 2.49309 18.3928 3.23327 Vertex 8171 2.49389 17.0646 1.88492 Vertex 8172 2.49508 17.2929 2.37876 Vertex 8173 2.49601 17.2791 1.95571 Vertex 8174 2.49608 17.323 2.98348 Vertex 8175 2.4976 17.0121 2.74047 Vertex 8176 2.49782 16.7473 1.83687 Vertex 8177 2.49941 13.5027 -1.37436 Vertex 8178 2.50242 15.7795 0.641156 Vertex 8179 2.50285 20.8542 -2.62892 Vertex 8180 2.503 22.5517 -1.1635 Vertex 8181 2.50342 17.3578 2.35121 Vertex 8182 2.5038 20.8824 2.28425 Vertex 8183 2.50617 18.1271 3.26325 Vertex 8184 2.50656 15.8519 1.29102 Vertex 8185 2.50687 13.398 -2.03078 Vertex 8186 2.50733 12.3681 -1.08271 Vertex 8187 2.50739 20.0721 2.52272 Vertex 8188 2.50798 16.4017 1.82452 Vertex 8189 2.50948 17.0267 2.60169 Vertex 8190 2.51158 17.9003 3.22359 Vertex 8191 2.51169 17.1543 1.82689 Vertex 8192 2.51207 16.2579 -0.317702 Vertex 8193 2.51226 17.3703 2.05971 Vertex 8194 2.515 16.8307 1.78394 Vertex 8195 2.51541 15.8423 1.56129 Vertex 8196 2.51773 17.1483 2.59134 Vertex 8197 2.5186 17.3692 -1.13206 Vertex 8198 2.51875 17.182 2.77026 Vertex 8199 2.52104 17.3544 1.88329 Vertex 8200 2.52245 17.4276 2.29467 Vertex 8201 2.52384 17.8008 -1.10617 Vertex 8202 2.52454 12.8825 -1.15636 Vertex 8203 2.52577 -30.3561 -5.11725 Vertex 8204 2.5267 17.2785 2.5925 Vertex 8205 2.52765 16.6241 -0.665994 Vertex 8206 2.52786 16.5131 1.75532 Vertex 8207 2.52885 16.1221 1.77984 Vertex 8208 2.52887 17.6853 3.10756 Vertex 8209 2.53056 17.3188 2.78524 Vertex 8210 2.53143 17.4765 2.97405 Vertex 8211 2.53177 16.6195 -1.59291 Vertex 8212 2.53203 19.4851 2.46193 Vertex 8213 2.53533 -43.2861 -4.6068 Vertex 8214 2.53549 16.9135 1.7294 Vertex 8215 2.53662 17.235 1.76255 Vertex 8216 2.53919 17.4407 1.9765 Vertex 8217 2.53978 17.3966 2.57937 Vertex 8218 2.54068 15.9819 1.66138 Vertex 8219 2.54139 -33.5573 -4.80197 Vertex 8220 2.54333 15.9162 -2.49587 Vertex 8221 2.5434 19.4069 2.40731 Vertex 8222 2.54658 15.8937 0.884676 Vertex 8223 2.54751 16.6052 1.68884 Vertex 8224 2.54823 20.8817 2.30371 Vertex 8225 2.54825 20.246 2.43654 Vertex 8226 2.54894 12.1366 -1.17564 Vertex 8227 2.55027 15.9766 1.15445 Vertex 8228 2.55107 16.0237 -0.060493 Vertex 8229 2.5519 12.1569 -1.16407 Vertex 8230 2.5519 17.4578 2.7778 Vertex 8231 2.55194 17.0122 -0.997265 Vertex 8232 2.55218 17.5022 2.20915 Vertex 8233 2.55304 17.4167 1.80357 Vertex 8234 2.55588 15.9885 1.42547 Vertex 8235 2.55698 17.5027 2.55192 Vertex 8236 2.5582 15.8869 0.220182 Vertex 8237 2.55928 16.9957 1.67326 Vertex 8238 2.56024 19.7143 2.46331 Vertex 8239 2.5606 20.4257 2.41799 Vertex 8240 2.56176 16.2451 1.67393 Vertex 8241 2.56478 13.0918 -1.52276 Vertex 8242 2.5661 19.2863 2.4123 Vertex 8243 2.56694 16.678 1.62506 Vertex 8244 2.56846 17.5042 1.88749 Vertex 8245 2.5687 17.3068 1.69191 Vertex 8246 2.57146 17.4991 -1.35206 Vertex 8247 2.57204 15.8873 0.529894 Vertex 8248 2.57294 18.2129 -1.35952 Vertex 8249 2.57595 16.3548 1.59802 Vertex 8250 2.57693 -41.8906 -4.63483 Vertex 8251 2.57773 16.1074 1.54091 Vertex 8252 2.57784 20.8517 2.32476 Vertex 8253 2.58082 17.6472 2.93921 Vertex 8254 2.58214 17.569 2.11011 Vertex 8255 2.5823 17.5956 2.49348 Vertex 8256 2.5827 17.6398 -0.949556 Vertex 8257 2.58278 17.5992 2.74792 Vertex 8258 2.58296 18.8343 2.89304 Vertex 8259 2.58408 20.5375 2.40973 Vertex 8260 2.58473 16.1152 1.30624 Vertex 8261 2.58594 17.0827 1.61429 Vertex 8262 2.58971 16.757 1.56464 Vertex 8263 2.58982 18.0825 -1.19612 Vertex 8264 2.59181 18.2567 -1.21556 Vertex 8265 2.59263 20.7922 2.34741 Vertex 8266 2.59426 15.9593 0.812778 Vertex 8267 2.59467 16.2221 1.44832 Vertex 8268 2.59579 12.9959 -2.18192 Vertex 8269 2.59637 16.071 1.05714 Vertex 8270 2.59736 16.5884 -0.404305 Vertex 8271 2.59833 16.4437 1.5253 Vertex 8272 2.60305 22.7165 0.025255 Vertex 8273 2.60382 17.2779 -0.898622 Vertex 8274 2.60477 17.8542 3.05248 Vertex 8275 2.60592 18.1221 -1.06729 Vertex 8276 2.60816 18.4278 -1.34112 Vertex 8277 2.60902 20.7228 2.37224 Vertex 8278 2.60921 18.3257 -2.48429 Vertex 8279 2.61035 18.0591 3.12002 Vertex 8280 2.61234 17.628 1.99755 Vertex 8281 2.61248 16.2325 -1.82985 Vertex 8282 2.61259 18.3572 -1.47995 Vertex 8283 2.61482 17.5058 1.68027 Vertex 8284 2.61532 16.9639 -0.656394 Vertex 8285 2.61545 17.1745 1.55251 Vertex 8286 2.61576 17.675 2.40404 Vertex 8287 2.61581 16.8424 1.50757 Vertex 8288 2.61677 18.5516 3.00978 Vertex 8289 2.6172 18.2882 3.0933 Vertex 8290 2.61814 16.1898 -2.69491 Vertex 8291 2.61848 12.4805 -1.3075 Vertex 8292 2.61868 20.5817 2.41176 Vertex 8293 2.62192 16.2104 1.21842 Vertex 8294 2.62201 17.7174 2.68639 Vertex 8295 2.62236 16.3121 1.3685 Vertex 8296 2.62587 19.1405 2.43426 Vertex 8297 2.62699 20.6434 2.39926 Vertex 8298 2.62728 17.5909 1.75567 Vertex 8299 2.62886 17.4089 1.58317 Vertex 8300 2.6289 16.5118 1.45579 Vertex 8301 2.62906 20.6776 1.84396 Vertex 8302 2.63007 19.043 -2.34768 Vertex 8303 2.63052 -11.4725 3.13479 Vertex 8304 2.63084 17.9802 -0.933352 Vertex 8305 2.63158 19.5635 2.31502 Vertex 8306 2.63607 12.7644 -2.27484 Vertex 8307 2.6367 -22.2785 -1.38675 Vertex 8308 2.63693 20.0946 -2.59064 Vertex 8309 2.63962 19.8563 2.27449 Vertex 8310 2.63966 12.7847 -2.26327 Vertex 8311 2.64076 16.3134 -0.200914 Vertex 8312 2.64119 20.921 1.75729 Vertex 8313 2.64158 17.7933 2.87342 Vertex 8314 2.64308 16.135 0.999102 Vertex 8315 2.64315 16.9325 1.4497 Vertex 8316 2.64531 20.5566 1.89549 Vertex 8317 2.64604 17.5464 -0.773231 Vertex 8318 2.64698 22.5005 0.431061 Vertex 8319 2.64988 17.7392 2.28414 Vertex 8320 2.65053 -15.6171 -6.12914 Vertex 8321 2.65199 21.9563 -1.53875 Vertex 8322 2.65205 19.4514 2.23165 Vertex 8323 2.65413 16.113 0.08429 Vertex 8324 2.65432 18.9624 2.5848 Vertex 8325 2.65477 -43.2775 -3.30585 Vertex 8326 2.65651 16.0607 0.70878 Vertex 8327 2.65655 16.5953 1.39063 Vertex 8328 2.6567 12.6898 -1.6739 Vertex 8329 2.65729 18.6355 -1.44394 Vertex 8330 2.65897 16.0387 0.396913 Vertex 8331 2.65989 12.249 -1.40043 Vertex 8332 2.66081 16.3772 1.30143 Vertex 8333 2.66312 12.2693 -1.38885 Vertex 8334 2.66419 17.7027 1.84503 Vertex 8335 2.66603 17.8308 -0.813758 Vertex 8336 2.66605 16.2743 1.16199 Vertex 8337 2.66611 21.1841 1.63782 Vertex 8338 2.66683 18.5749 -1.58911 Vertex 8339 2.66725 16.863 -1.50606 Vertex 8340 2.6694 17.3002 1.46435 Vertex 8341 2.66961 17.8125 2.59321 Vertex 8342 2.67173 17.0274 1.39103 Vertex 8343 2.67372 21.1773 -2.35437 Vertex 8344 2.67489 17.2627 -0.626796 Vertex 8345 2.67641 20.2037 2.07797 Vertex 8346 2.67681 17.2972 -2.78714 Vertex 8347 2.67834 20.0194 2.14604 Vertex 8348 2.67835 -27.5289 -4.51545 Vertex 8349 2.67979 16.5852 -2.85734 Vertex 8350 2.67989 22.3098 0.729512 Vertex 8351 2.68127 16.6943 1.32983 Vertex 8352 2.68236 17.6562 -1.28886 Vertex 8353 2.68341 16.9631 -0.427312 Vertex 8354 2.68467 17.788 2.13377 Vertex 8355 2.68995 20.558 1.91187 Vertex 8356 2.69243 18.1647 -1.42782 Vertex 8357 2.69294 19.3791 2.12925 Vertex 8358 2.69395 17.9969 2.95227 Vertex 8359 2.69402 -41.8967 -3.35468 Vertex 8360 2.69464 20.3124 2.04236 Vertex 8361 2.6959 -9.30989 3.83926 Vertex 8362 2.69596 12.4583 -1.76683 Vertex 8363 2.69698 16.4656 1.22508 Vertex 8364 2.69955 12.4786 -1.75525 Vertex 8365 2.69968 -44.4185 -4.63377 Vertex 8366 2.70163 -17.8091 -7.05958 Vertex 8367 2.70176 16.2328 0.895883 Vertex 8368 2.70181 22.1443 0.920609 Vertex 8369 2.70381 21.4671 1.48556 Vertex 8370 2.7064 17.6217 1.51339 Vertex 8371 2.70827 16.7844 1.26877 Vertex 8372 2.71223 18.3557 -1.02766 Vertex 8373 2.71255 18.1963 2.948 Vertex 8374 2.71268 17.5206 -0.577197 Vertex 8375 2.7127 22.4781 -0.66379 Vertex 8376 2.71316 16.6421 -0.284089 Vertex 8377 2.71371 17.9147 2.77667 Vertex 8378 2.7142 17.7331 -0.687887 Vertex 8379 2.71524 21.9483 1.11448 Vertex 8380 2.71565 17.7008 1.58106 Vertex 8381 2.71586 16.3678 1.06798 Vertex 8382 2.71592 17.8876 2.45887 Vertex 8383 2.71676 20.5359 1.93423 Vertex 8384 2.71711 17.5414 1.43631 Vertex 8385 2.72009 18.2127 -0.909629 Vertex 8386 2.72019 21.7218 1.31112 Vertex 8387 2.72041 17.1571 1.31238 Vertex 8388 2.72116 16.3378 -2.06287 Vertex 8389 2.72199 19.252 2.16602 Vertex 8390 2.72247 18.6858 2.74457 Vertex 8391 2.72548 19.6774 2.09807 Vertex 8392 2.72554 17.8414 1.94836 Vertex 8393 2.72574 20.4905 1.96259 Vertex 8394 2.72709 18.5269 -1.1363 Vertex 8395 2.7309 16.5771 1.13944 Vertex 8396 2.7311 18.8928 -1.49371 Vertex 8397 2.73251 16.1979 0.572681 Vertex 8398 2.73302 20.3457 2.03922 Vertex 8399 2.73381 21.3802 -1.73304 Vertex 8400 2.73485 -45.0392 -4.65225 Vertex 8401 2.73573 20.4414 1.99199 Vertex 8402 2.737 18.4241 2.8482 Vertex 8403 2.73749 18.3149 -1.5528 Vertex 8404 2.73754 16.8656 1.20748 Vertex 8405 2.73768 17.7934 1.65255 Vertex 8406 2.7379 18.0749 -0.808631 Vertex 8407 2.73873 17.7384 -1.52057 Vertex 8408 2.73914 20.3971 1.57085 Vertex 8409 2.73938 19.4489 -2.37729 Vertex 8410 2.7422 21.3616 -1.75252 Vertex 8411 2.74307 16.3906 -0.048453 Vertex 8412 2.74323 16.2394 0.266842 Vertex 8413 2.74452 21.4696 -1.69711 Vertex 8414 2.74672 20.3887 2.02243 Vertex 8415 2.74779 17.4599 1.34982 Vertex 8416 2.75031 16.6711 1.11341 Vertex 8417 2.75324 20.2775 1.63233 Vertex 8418 2.75522 20.6419 1.46001 Vertex 8419 2.7557 18.8507 -1.63235 Vertex 8420 2.75593 17.3208 -0.427868 Vertex 8421 2.76095 17.9427 2.28338 Vertex 8422 2.76173 20.0234 1.81152 Vertex 8423 2.76201 18.7263 -1.23555 Vertex 8424 2.7638 -33.5113 -2.17558 Vertex 8425 2.76467 17.9424 -0.72466 Vertex 8426 2.76499 19.5354 1.99348 Vertex 8427 2.76643 17.0099 -0.310019 Vertex 8428 2.76852 -41.0338 -4.38157 Vertex 8429 2.76887 19.8307 1.93024 Vertex 8430 2.77175 16.4909 0.936403 Vertex 8431 2.77248 16.3645 0.747485 Vertex 8432 2.77251 17.8993 1.72788 Vertex 8433 2.77396 17.6869 -0.55574 Vertex 8434 2.77863 20.1321 1.7505 Vertex 8435 2.77913 18.1172 2.79736 Vertex 8436 2.78025 18.0143 2.63432 Vertex 8437 2.78039 16.7454 1.0508 Vertex 8438 2.78154 -29.3563 -1.49686 Vertex 8439 2.7819 16.9796 1.12726 Vertex 8440 2.78392 17.5367 -0.432151 Vertex 8441 2.78629 16.9452 -1.73777 Vertex 8442 2.7892 17.3216 1.21375 Vertex 8443 2.79063 18.5446 -1.67106 Vertex 8444 2.79286 17.8788 1.41661 Vertex 8445 2.79293 17.7899 1.33769 Vertex 8446 2.79435 21.3514 -1.81252 Vertex 8447 2.79475 -29.3108 -1.68521 Vertex 8448 2.79752 20.2832 1.64445 Vertex 8449 2.80053 20.9108 1.30767 Vertex 8450 2.80068 17.9937 2.06872 Vertex 8451 2.8008 16.5907 0.887409 Vertex 8452 2.80105 17.9575 1.4797 Vertex 8453 2.80256 22.0221 -1.18027 Vertex 8454 2.80279 17.7194 1.27138 Vertex 8455 2.80371 17.838 -0.642591 Vertex 8456 2.8045 18.9527 -1.30293 Vertex 8457 2.80462 16.5428 -2.25228 Vertex 8458 2.80545 16.7116 -0.133838 Vertex 8459 2.80613 18.2836 -2.08769 Vertex 8460 2.80614 20.1499 1.41599 Vertex 8461 2.80652 17.6656 -0.467027 Vertex 8462 2.80662 20.3718 1.26508 Vertex 8463 2.80953 20.3103 1.68519 Vertex 8464 2.8102 18.7955 2.43765 Vertex 8465 2.81054 16.3745 0.443334 Vertex 8466 2.81064 19.0486 2.17587 Vertex 8467 2.81309 18.1453 -0.765874 Vertex 8468 2.81522 18.4111 -0.947201 Vertex 8469 2.8154 19.4481 1.88047 Vertex 8470 2.81561 20.272 1.71641 Vertex 8471 2.81621 18.2623 -0.843877 Vertex 8472 2.81656 19.8848 1.61865 Vertex 8473 2.81752 18.0258 1.52695 Vertex 8474 2.81786 -29.8672 -1.54866 Vertex 8475 2.81817 18.312 2.70753 Vertex 8476 2.81956 20.1569 1.7472 Vertex 8477 2.81982 19.6799 1.78915 Vertex 8478 2.81989 17.3652 -0.333941 Vertex 8479 2.82014 20.246 1.73753 Vertex 8480 2.82091 16.4894 0.13968 Vertex 8481 2.82243 17.6671 1.21768 Vertex 8482 2.82483 17.9002 -1.69966 Vertex 8483 2.8265 16.8157 0.950768 Vertex 8484 2.82758 20.0451 1.49478 Vertex 8485 2.82763 20.2066 1.76968 Vertex 8486 2.82835 20.5607 -2.24634 Vertex 8487 2.82946 19.1998 -1.49042 Vertex 8488 2.82958 18.5777 -1.04536 Vertex 8489 2.83367 -3.67281 3.59712 Vertex 8490 2.8351 18.0404 1.81488 Vertex 8491 2.8354 18.0211 -0.699714 Vertex 8492 2.83555 -22.2492 -1.89586 Vertex 8493 2.83605 19.9967 1.53417 Vertex 8494 2.83612 -38.6683 -4.47035 Vertex 8495 2.83644 18.8904 -1.95729 Vertex 8496 2.83813 18.5358 2.57866 Vertex 8497 2.8412 18.0922 2.44638 Vertex 8498 2.84135 17.1266 1.02812 Vertex 8499 2.84189 22.3555 -0.2532 Vertex 8500 2.84241 17.0762 -0.171864 Vertex 8501 2.84273 -37.7533 -4.46973 Vertex 8502 2.84371 17.6322 -0.376616 Vertex 8503 2.84615 19.3647 1.8227 Vertex 8504 2.85007 21.2915 -2.09364 Vertex 8505 2.85357 17.5368 1.09809 Vertex 8506 2.85377 17.7617 -0.562423 Vertex 8507 2.85378 17.7005 -0.41545 Vertex 8508 2.85402 20.6302 1.06894 Vertex 8509 2.8543 18.1951 1.32647 Vertex 8510 2.85456 19.2061 -1.33843 Vertex 8511 2.85461 16.5181 0.613766 Vertex 8512 2.85816 18.7621 -1.13834 Vertex 8513 2.85853 19.7352 1.49645 Vertex 8514 2.85893 18.1249 1.26233 Vertex 8515 2.85914 17.379 -0.163082 Vertex 8516 2.85997 16.6652 0.782911 Vertex 8517 2.86028 18.2153 2.58777 Vertex 8518 2.8604 19.5499 1.69076 Vertex 8519 2.86055 18.2209 1.34557 Vertex 8520 2.86286 16.8475 -2.39809 Vertex 8521 2.86326 20.1835 1.10327 Vertex 8522 2.86337 17.4277 -2.34323 Vertex 8523 2.86428 19.2436 1.84779 Vertex 8524 2.86723 -40.2267 -3.27711 Vertex 8525 2.86927 20.0209 1.23397 Vertex 8526 2.86938 -38.6938 -3.30424 Vertex 8527 2.87095 20.0575 1.50145 Vertex 8528 2.8724 -40.1296 -4.10955 Vertex 8529 2.87352 17.113 -1.92053 Vertex 8530 2.87442 18.0105 1.15317 Vertex 8531 2.87478 -20.013 -7.81698 Vertex 8532 2.87506 21.2038 1.11383 Vertex 8533 2.87586 18.1776 1.57035 Vertex 8534 2.87599 -37.7788 -3.30363 Vertex 8535 2.87683 16.7969 0.046449 Vertex 8536 2.878 18.1417 -1.82615 Vertex 8537 2.87813 19.1844 -1.60966 Vertex 8538 2.87829 20.0154 1.5357 Vertex 8539 2.87832 18.8263 -1.71885 Vertex 8540 2.87891 17.6108 -0.329164 Vertex 8541 2.88017 19.8559 -2.23448 Vertex 8542 2.8819 17.7252 -0.4997 Vertex 8543 2.88249 20.088 1.53948 Vertex 8544 2.88304 19.8678 1.28057 Vertex 8545 2.88456 18.1521 -0.791601 Vertex 8546 2.88472 18.9678 -1.20977 Vertex 8547 2.88589 17.9429 1.08838 Vertex 8548 2.88702 20.0621 1.5606 Vertex 8549 2.8871 18.0062 -0.73466 Vertex 8550 2.88765 19.5745 1.4449 Vertex 8551 2.88822 16.5905 0.32074 Vertex 8552 2.88858 18.3317 1.25285 Vertex 8553 2.8889 -45.027 -3.33704 Vertex 8554 2.88961 18.1596 2.20613 Vertex 8555 2.89022 -44.384 -3.33485 Vertex 8556 2.89028 21.3495 -1.91302 Vertex 8557 2.89039 18.2933 1.38409 Vertex 8558 2.89054 18.325 1.24413 Vertex 8559 2.89057 22.1841 0.068272 Vertex 8560 2.89061 19.4407 1.63507 Vertex 8561 2.89135 18.2708 -0.870027 Vertex 8562 2.89257 16.9581 0.846903 Vertex 8563 2.89288 17.5742 -0.201547 Vertex 8564 2.89333 17.9221 1.06795 Vertex 8565 2.89575 21.5996 -1.39378 Vertex 8566 2.89621 17.3284 0.912612 Vertex 8567 2.89721 18.4231 -0.9742 Vertex 8568 2.89799 -6.42017 3.83833 Vertex 8569 2.89821 18.8684 2.1233 Vertex 8570 2.89853 17.7365 -0.391005 Vertex 8571 2.9001 -41.1353 -2.91926 Vertex 8572 2.90159 18.3581 1.24882 Vertex 8573 2.90332 18.2578 1.17717 Vertex 8574 2.90459 19.7242 1.24308 Vertex 8575 2.90548 18.4062 2.44049 Vertex 8576 2.90788 17.7836 -0.005511 Vertex 8577 2.90819 21.9942 -0.810047 Vertex 8578 2.90896 19.4276 -1.4533 Vertex 8579 2.90928 19.195 -1.25964 Vertex 8580 2.9093 20.4156 0.901536 Vertex 8581 2.90978 18.3474 1.23268 Vertex 8582 2.9099 19.4071 -1.32071 Vertex 8583 2.9128 -45.2821 -4.66994 Vertex 8584 2.91353 17.8028 0.965402 Vertex 8585 2.91364 17.1618 -0.012849 Vertex 8586 2.91452 17.9219 -0.696945 Vertex 8587 2.91551 18.5805 -1.0683 Vertex 8588 2.91747 21.4673 0.904073 Vertex 8589 2.91941 22.0283 0.313151 Vertex 8590 2.92058 18.6233 2.2847 Vertex 8591 2.92227 18.3892 1.36952 Vertex 8592 2.92386 19.4025 1.38373 Vertex 8593 2.92454 18.2971 2.33005 Vertex 8594 2.92514 20.0768 0.974591 Vertex 8595 2.92546 18.2165 1.91355 Vertex 8596 2.92603 18.2775 1.16111 Vertex 8597 2.9269 18.13 1.05199 Vertex 8598 2.92775 21.7013 0.678409 Vertex 8599 2.9284 21.8883 0.481434 Vertex 8600 2.92846 17.7618 -0.470535 Vertex 8601 2.92852 20.0102 1.02479 Vertex 8602 2.92894 17.3663 -2.05436 Vertex 8603 2.93055 19.5285 -1.46277 Vertex 8604 2.93111 19.0523 1.83428 Vertex 8605 2.93158 19.2938 1.58703 Vertex 8606 2.93313 19.5544 1.18924 Vertex 8607 2.93396 19.9478 1.04313 Vertex 8608 2.93403 17.4648 -0.014704 Vertex 8609 2.93479 18.5 1.19609 Vertex 8610 2.93516 18.0614 0.991254 Vertex 8611 2.93611 18.1372 -0.826546 Vertex 8612 2.9365 18.0563 0.987455 Vertex 8613 2.93788 19.3909 -1.27298 Vertex 8614 2.94044 -3.66992 -3.99761 Vertex 8615 2.94044 -2.25192 -3.99758 Vertex 8616 2.94044 -0.833917 -3.99756 Vertex 8617 2.94044 0.584082 -3.99754 Vertex 8618 2.94146 19.8897 1.0296 Vertex 8619 2.94253 17.1629 0.727849 Vertex 8620 2.94554 17.8689 -0.087485 Vertex 8621 2.94572 18.7428 -1.15232 Vertex 8622 2.94649 17.585 0.780746 Vertex 8623 2.94655 16.6937 0.494729 Vertex 8624 2.94745 17.7769 -0.348415 Vertex 8625 2.94759 1.01701 -4.2787 Vertex 8626 2.94818 18.4857 1.17674 Vertex 8627 2.94819 16.8163 0.670118 Vertex 8628 2.94834 20.9252 0.827575 Vertex 8629 2.94843 16.9297 0.215621 Vertex 8630 2.95027 21.1561 -1.27562 Vertex 8631 2.95036 18.1485 1.03412 Vertex 8632 2.95105 18.3322 1.65031 Vertex 8633 2.95137 18.5798 1.26137 Vertex 8634 2.9543 19.2482 -1.95203 Vertex 8635 2.95443 17.7423 -0.237242 Vertex 8636 2.95455 17.9472 0.891605 Vertex 8637 2.95552 17.7758 0.085283 Vertex 8638 2.95614 18.2141 0.004432 Vertex 8639 2.95728 17.8141 -0.625776 Vertex 8640 2.9576 21.2489 -1.24759 Vertex 8641 2.95899 18.0793 0.972486 Vertex 8642 2.95938 19.7494 1.00356 Vertex 8643 2.95985 18.0827 0.010697 Vertex 8644 2.96136 19.9968 0.91781 Vertex 8645 2.96526 20.0148 0.904617 Vertex 8646 2.96542 21.1309 -1.27932 Vertex 8647 2.96636 20.2669 0.805459 Vertex 8648 2.96713 -43.2615 -3.42964 Vertex 8649 2.96719 19.2192 1.31294 Vertex 8650 2.9678 19.9808 0.913021 Vertex 8651 2.96856 -13.0955 2.71639 Vertex 8652 2.96866 19.3584 1.11906 Vertex 8653 2.96944 18.2493 -0.921801 Vertex 8654 2.97116 17.53 0.075737 Vertex 8655 2.97176 18.9381 -1.21424 Vertex 8656 2.97182 17.2347 0.13361 Vertex 8657 2.97191 18.3628 2.02422 Vertex 8658 2.97334 18.3113 -0.009712 Vertex 8659 2.97344 19.4988 -1.54124 Vertex 8660 2.97361 0.793936 -4.64973 Vertex 8661 2.97448 18.4791 2.14688 Vertex 8662 2.97591 17.7721 -0.554103 Vertex 8663 2.97656 18.4839 1.51494 Vertex 8664 2.97664 17.97 0.876703 Vertex 8665 2.97668 17.4301 0.593601 Vertex 8666 2.97696 21.5814 -1.15145 Vertex 8667 2.97699 18.4035 -1.02469 Vertex 8668 2.97707 18.4478 0.001382 Vertex 8669 2.98115 17.8035 -0.418505 Vertex 8670 2.98155 18.5873 0.011305 Vertex 8671 2.98175 -9.33591 3.68109 Vertex 8672 2.98227 17.7247 0.707429 Vertex 8673 2.98276 18.8383 1.13909 Vertex 8674 2.98329 19.1091 1.54664 Vertex 8675 2.98351 19.8535 0.898968 Vertex 8676 2.98362 19.9973 0.893347 Vertex 8677 2.9844 21.931 -0.487595 Vertex 8678 2.98469 18.7115 2.00828 Vertex 8679 2.98542 -33.7225 -5.77918 Vertex 8680 2.9865 18.9046 1.80149 Vertex 8681 2.9868 18.7299 0.020054 Vertex 8682 2.98773 19.5267 0.965002 Vertex 8683 2.98818 18.7575 1.09467 Vertex 8684 2.98949 18.9824 1.20956 Vertex 8685 2.99044 -17.7994 2.44164 Vertex 8686 2.99104 18.9422 0.066092 Vertex 8687 2.99259 20.871 -1.91213 Vertex 8688 2.99268 19.078 0.087345 Vertex 8689 2.99361 19.1663 -1.25406 Vertex 8690 2.99451 -2.25204 3.6113 Vertex 8691 2.99451 -0.834039 3.61132 Vertex 8692 2.99451 0.583959 3.61134 Vertex 8693 2.99488 19.1793 1.06327 Vertex 8694 2.99623 19.8111 -1.35861 Vertex 8695 2.99782 16.9895 0.350843 Vertex 8696 2.99791 18.7249 1.37258 Vertex 8697 2.99812 17.5966 0.164886 Vertex 8698 2.99821 17.0405 0.543803 Vertex 8699 2.99963 18.2308 0.052713 Vertex 8700 2.99979 19.0831 1.31216 Vertex 8701 3.00037 19.6402 -1.2806 Vertex 8702 3.00049 18.3462 0.069096 Vertex 8703 3.00049 -34.093 -5.66988 Vertex 8704 3.00055 19.16 -1.69615 Vertex 8705 3.00058 19.2617 0.093597 Vertex 8706 3.00104 18.5588 -1.11732 Vertex 8707 3.00157 17.3486 0.191148 Vertex 8708 3.00225 17.4969 0.154635 Vertex 8709 3.00225 17.8235 -0.304463 Vertex 8710 3.00247 19.0344 1.29032 Vertex 8711 3.0031 18.1124 0.056089 Vertex 8712 3.00318 18.9928 0.11938 Vertex 8713 3.00356 17.7473 0.692657 Vertex 8714 3.00429 17.5752 0.5202 Vertex 8715 3.00506 1.47742 -4.84007 Vertex 8716 3.00528 18.8593 0.121307 Vertex 8717 3.00552 19.1933 0.110452 Vertex 8718 3.00553 19.8668 0.875481 Vertex 8719 3.0057 18.4586 0.105242 Vertex 8720 3.00575 18.7399 1.07631 Vertex 8721 3.00655 20.1836 0.750053 Vertex 8722 3.00682 18.7231 0.122532 Vertex 8723 3.00737 18.4725 1.78906 Vertex 8724 3.00738 20.7174 0.628767 Vertex 8725 3.00747 18.3 1.13096 Vertex 8726 3.00781 18.5842 0.123053 Vertex 8727 3.00829 21.193 0.580934 Vertex 8728 3.00851 19.6151 0.875653 Vertex 8729 3.00904 -3.67196 3.38582 Vertex 8730 3.0095 17.3379 0.403967 Vertex 8731 3.01179 19.0173 1.02186 Vertex 8732 3.0118 17.2795 0.261742 Vertex 8733 3.01229 19.4609 0.094523 Vertex 8734 3.01409 19.3158 0.933712 Vertex 8735 3.01473 19.4933 0.084852 Vertex 8736 3.01503 -41.9203 -3.44988 Vertex 8737 3.01575 12.9848 -4.37449 Vertex 8738 3.01793 21.5752 -0.917749 Vertex 8739 3.01922 18.0857 -0.905655 Vertex 8740 3.01929 -43.2789 -5.5188 Vertex 8741 3.0201 18.9725 1.56106 Vertex 8742 3.02086 19.3628 -1.26237 Vertex 8743 3.02108 18.5796 1.89687 Vertex 8744 3.02196 19.7412 -1.29007 Vertex 8745 3.02245 17.4754 0.204259 Vertex 8746 3.02404 18.9869 -0.692567 Vertex 8747 3.02415 17.4988 0.329922 Vertex 8748 3.02425 19.1102 -0.773111 Vertex 8749 3.02427 17.8818 -0.192219 Vertex 8750 3.02461 17.5984 0.507645 Vertex 8751 3.02461 18.4877 1.14334 Vertex 8752 3.02618 21.2296 -1.07704 Vertex 8753 3.02671 -10.0006 3.60659 Vertex 8754 3.02684 19.6933 0.073783 Vertex 8755 3.02812 17.5017 0.210685 Vertex 8756 3.02835 19.624 -1.23287 Vertex 8757 3.0293 21.1144 -1.31737 Vertex 8758 3.02986 20.1658 0.735316 Vertex 8759 3.03046 18.8005 1.74942 Vertex 8760 3.0305 17.8144 -0.497353 Vertex 8761 3.03079 18.7775 1.47372 Vertex 8762 3.03086 19.0421 -0.79213 Vertex 8763 3.03091 18.6264 1.62458 Vertex 8764 3.03096 18.9274 0.991155 Vertex 8765 3.03101 19.6235 0.851015 Vertex 8766 3.0312 21.8327 -0.212922 Vertex 8767 3.03172 17.4655 0.224608 Vertex 8768 3.03212 18.1733 1.00267 Vertex 8769 3.03307 19.702 0.057723 Vertex 8770 3.03385 21.4336 0.329014 Vertex 8771 3.03429 18.8631 -0.032859 Vertex 8772 3.0352 17.8887 0.110841 Vertex 8773 3.03557 19.3847 0.85618 Vertex 8774 3.03845 17.9734 -0.149976 Vertex 8775 3.03847 19.1167 0.909688 Vertex 8776 3.04006 -17.8602 -7.10841 Vertex 8777 3.04105 18.7151 -1.1997 Vertex 8778 3.04164 19.7939 -1.4271 Vertex 8779 3.04192 21.2211 -0.986897 Vertex 8780 3.04259 17.5233 0.321667 Vertex 8781 3.04279 18.8948 1.54046 Vertex 8782 3.04396 17.9849 -0.85095 Vertex 8783 3.04409 19.965 -1.21092 Vertex 8784 3.04421 17.8417 -0.379054 Vertex 8785 3.04517 17.6561 0.178052 Vertex 8786 3.04523 17.491 0.22268 Vertex 8787 3.04526 18.7078 1.69045 Vertex 8788 3.04546 18.8461 1.51862 Vertex 8789 3.0471 20.0274 -0.009733 Vertex 8790 3.04768 18.998 -0.642656 Vertex 8791 3.04788 19.1213 -0.7232 Vertex 8792 3.04862 21.6112 0.133394 Vertex 8793 3.04918 19.8906 0.048231 Vertex 8794 3.04996 -3.66991 -4.3096 Vertex 8795 3.04996 -2.25192 -4.30958 Vertex 8796 3.0504 18.1979 -0.999199 Vertex 8797 3.05217 20.5803 0.5174 Vertex 8798 3.0524 18.9096 0.971156 Vertex 8799 3.05243 20.264 -1.91928 Vertex 8800 3.0526 21.7261 -0.005925 Vertex 8801 3.05459 18.3524 -1.09866 Vertex 8802 3.05553 18.1252 -0.101187 Vertex 8803 3.0556 19.8879 0.012211 Vertex 8804 3.05629 -15.6303 2.61602 Vertex 8805 3.05645 21.0457 -1.0415 Vertex 8806 3.0573 21.5425 -0.664855 Vertex 8807 3.05761 17.9996 0.846544 Vertex 8808 3.05931 19.3858 0.83067 Vertex 8809 3.05958 21.0361 -1.02313 Vertex 8810 3.05986 -41.9279 -5.5235 Vertex 8811 3.06059 21.1898 -0.784979 Vertex 8812 3.06121 -41.0922 -4.23682 Vertex 8813 3.06315 19.0097 0.885542 Vertex 8814 3.06345 17.8762 -0.259146 Vertex 8815 3.06376 -0.833912 -4.30515 Vertex 8816 3.06376 0.584086 -4.30513 Vertex 8817 3.06448 18.9309 -0.567425 Vertex 8818 3.06468 19.1622 0.84055 Vertex 8819 3.06623 20.1677 -0.058187 Vertex 8820 3.06685 20.9759 0.35294 Vertex 8821 3.06719 19.6061 -1.84885 Vertex 8822 3.06961 20.0594 0.01123 Vertex 8823 3.06995 21.0038 -0.851028 Vertex 8824 3.07138 18.243 -0.139958 Vertex 8825 3.07229 18.8492 -0.487384 Vertex 8826 3.07242 18.4207 -0.178118 Vertex 8827 3.07251 18.9141 -1.25996 Vertex 8828 3.07499 21.0171 -1.0373 Vertex 8829 3.08033 -43.2994 -2.23312 Vertex 8830 3.081 18.5802 -0.193003 Vertex 8831 3.0822 21.1357 -0.471285 Vertex 8832 3.08229 -45.2711 -3.39345 Vertex 8833 3.08295 17.8443 -0.745797 Vertex 8834 3.08322 19.1899 -0.676738 Vertex 8835 3.08347 20.952 -0.514334 Vertex 8836 3.08354 18.7364 1.03979 Vertex 8837 3.08393 17.7788 0.662587 Vertex 8838 3.0842 18.7851 -0.430336 Vertex 8839 3.08522 20.5033 0.454121 Vertex 8840 3.08536 20.9846 -0.863001 Vertex 8841 3.08547 12.6564 -5.16987 Vertex 8842 3.08579 18.7528 -0.547267 Vertex 8843 3.08583 18.8468 -0.624364 Vertex 8844 3.08617 18.5127 -1.19242 Vertex 8845 3.08674 -11.2865 3.18666 Vertex 8846 3.08689 19.8993 -1.17151 Vertex 8847 3.08732 20.9256 -0.334188 Vertex 8848 3.08743 20.1078 -1.00783 Vertex 8849 3.08757 20.9285 -0.342364 Vertex 8850 3.0877 17.8509 -0.530128 Vertex 8851 3.0877 21.1912 0.074053 Vertex 8852 3.08811 20.1998 -0.037223 Vertex 8853 3.08812 18.9949 0.861272 Vertex 8854 3.08879 21.067 -0.258426 Vertex 8855 3.08885 -41.932 -2.26927 Vertex 8856 3.08931 20.9741 -0.086473 Vertex 8857 3.0897 20.0123 -1.25126 Vertex 8858 3.09043 19.1536 0.814444 Vertex 8859 3.09056 19.2278 -0.734232 Vertex 8860 3.09093 17.8689 -0.470985 Vertex 8861 3.09158 19.8624 0.839648 Vertex 8862 3.09159 21.0947 -0.295767 Vertex 8863 3.0918 18.9242 -0.709901 Vertex 8864 3.09316 20.8161 0.22009 Vertex 8865 3.09352 -21.6238 -7.0905 Vertex 8866 3.09498 18.689 -0.493349 Vertex 8867 3.09507 21.4832 -0.392774 Vertex 8868 3.09539 19.1559 -1.29808 Vertex 8869 3.09712 18.7217 -0.184613 Vertex 8870 3.09828 19.487 -1.61777 Vertex 8871 3.09853 20.8571 -0.173755 Vertex 8872 3.09889 20.9321 -0.521924 Vertex 8873 3.09923 19.1249 -0.825664 Vertex 8874 3.10017 17.6022 0.205911 Vertex 8875 3.10019 17.7858 -0.657132 Vertex 8876 3.10022 18.7385 -0.396281 Vertex 8877 3.10209 21.3375 -0.113225 Vertex 8878 3.10291 1.53595 -4.34686 Vertex 8879 3.10299 20.9083 -0.347762 Vertex 8880 3.10355 17.6325 0.486175 Vertex 8881 3.10371 18.9852 -0.803877 Vertex 8882 3.10619 19.0521 -0.842463 Vertex 8883 3.10646 20.2862 -0.155766 Vertex 8884 3.10651 20.4864 0.438927 Vertex 8885 3.10714 18.6763 -0.371277 Vertex 8886 3.10922 17.9522 -0.236016 Vertex 8887 3.11 21.4149 -0.208897 Vertex 8888 3.11023 19.4077 -1.29914 Vertex 8889 3.11047 20.2173 -0.176757 Vertex 8890 3.11209 19.0839 -0.05678 Vertex 8891 3.11282 -44.4287 -5.5505 Vertex 8892 3.1134 18.6554 -0.462611 Vertex 8893 3.11359 20.1466 0.707685 Vertex 8894 3.11535 20.84 -0.18779 Vertex 8895 3.11564 -44.7921 -3.4216 Vertex 8896 3.11588 20.7278 0.146185 Vertex 8897 3.1162 13.1539 -4.59755 Vertex 8898 3.11646 17.5608 0.317309 Vertex 8899 3.11672 18.6252 -0.416603 Vertex 8900 3.11703 19.6697 -1.26314 Vertex 8901 3.11758 17.8763 -0.352182 Vertex 8902 3.11763 20.1539 -1.01373 Vertex 8903 3.11774 20.2068 -0.798657 Vertex 8904 3.11872 19.6142 0.812128 Vertex 8905 3.12112 19.2284 0.004268 Vertex 8906 3.12214 18.584 -0.315212 Vertex 8907 3.12241 18.8407 -0.209509 Vertex 8908 3.12401 18.9868 -0.147434 Vertex 8909 3.12466 20.3187 -0.344397 Vertex 8910 3.12505 19.1965 -0.79037 Vertex 8911 3.12541 19.0865 -0.592487 Vertex 8912 3.12721 -33.5402 -5.6836 Vertex 8913 3.12791 19.2566 -0.573691 Vertex 8914 3.12966 21.0254 -1.58801 Vertex 8915 3.13146 18.9049 0.930968 Vertex 8916 3.13173 18.5329 -0.360538 Vertex 8917 3.13213 20.2523 -0.780897 Vertex 8918 3.13215 19.8485 -1.19474 Vertex 8919 3.13321 20.3074 -0.552774 Vertex 8920 3.13356 18.1969 -1.00503 Vertex 8921 3.13436 19.2965 -0.613106 Vertex 8922 3.13501 20.7112 0.131225 Vertex 8923 3.13502 20.2618 -0.583401 Vertex 8924 3.13682 18.4361 -0.32092 Vertex 8925 3.13713 18.2378 -0.258133 Vertex 8926 3.13713 18.3431 -1.10343 Vertex 8927 3.13932 19.3888 0.038026 Vertex 8928 3.13953 19.0215 -0.512374 Vertex 8929 3.13955 -3.67004 3.90811 Vertex 8930 3.13955 -2.25204 3.90813 Vertex 8931 3.13989 18.0515 -0.235074 Vertex 8932 3.14027 20.2692 -0.363819 Vertex 8933 3.1419 21.1066 -1.38976 Vertex 8934 3.142 18.9441 -0.422569 Vertex 8935 3.14362 18.87 -0.361994 Vertex 8936 3.14368 18.7249 -0.307003 Vertex 8937 3.14415 18.679 -1.2805 Vertex 8938 3.14439 18.7992 -0.330651 Vertex 8939 3.14579 18.05 -0.902461 Vertex 8940 3.14592 19.3769 0.788728 Vertex 8941 3.14764 18.3251 1.08671 Vertex 8942 3.15071 2.4033 -4.8752 Vertex 8943 3.15162 18.2487 0.076774 Vertex 8944 3.15262 18.9729 0.100377 Vertex 8945 3.15284 18.3476 0.096469 Vertex 8946 3.15385 -6.42699 3.65097 Vertex 8947 3.15413 19.1837 0.08859 Vertex 8948 3.15438 20.9696 -0.893038 Vertex 8949 3.15464 18.1562 0.074372 Vertex 8950 3.15481 18.8353 0.108866 Vertex 8951 3.1567 17.8223 -0.689909 Vertex 8952 3.15689 18.9372 -0.267693 Vertex 8953 3.15719 18.7013 0.122821 Vertex 8954 3.15765 13.124 -4.85645 Vertex 8955 3.15831 18.4531 0.133459 Vertex 8956 3.15934 19.4677 0.073503 Vertex 8957 3.15976 18.571 0.142244 Vertex 8958 3.16062 18.1659 -0.277815 Vertex 8959 3.16163 19.1532 -0.564104 Vertex 8960 3.16409 18.5059 1.09587 Vertex 8961 3.16439 20.0504 -1.02667 Vertex 8962 3.16509 -40.188 -3.96481 Vertex 8963 3.16602 5.30195 5.10544 Vertex 8964 3.16616 17.9344 0.125657 Vertex 8965 3.16668 19.5649 0.044491 Vertex 8966 3.16818 19.335 -0.49632 Vertex 8967 3.16834 18.993 0.816863 Vertex 8968 3.16951 18.5009 -1.19777 Vertex 8969 3.16961 20.9171 -0.53953 Vertex 8970 3.17048 17.8945 -0.453336 Vertex 8971 3.1715 19.8073 -1.48368 Vertex 8972 3.17175 17.9411 -0.343169 Vertex 8973 3.1722 18.2046 0.957628 Vertex 8974 3.17251 19.7092 0.055891 Vertex 8975 3.17306 17.9025 -0.795744 Vertex 8976 3.17316 19.1503 0.769449 Vertex 8977 3.17509 19.9639 -1.64774 Vertex 8978 3.17597 18.5818 -0.551032 Vertex 8979 3.17651 -17.7867 -7.41635 Vertex 8980 3.1782 20.2835 -0.476055 Vertex 8981 3.17839 19.3697 -0.55714 Vertex 8982 3.18204 18.5206 -0.488304 Vertex 8983 3.18252 18.6549 -0.602216 Vertex 8984 3.18394 18.5499 -0.529639 Vertex 8985 3.18438 -45.0273 -5.58524 Vertex 8986 3.18476 20.4668 0.416238 Vertex 8987 3.18535 2.45959 -4.41563 Vertex 8988 3.18671 20.5523 -1.59655 Vertex 8989 3.18696 18.896 -1.34692 Vertex 8990 3.18714 18.4237 -0.448687 Vertex 8991 3.18787 19.0612 -0.199863 Vertex 8992 3.18801 20.8248 -0.204453 Vertex 8993 3.19121 19.7353 0.007712 Vertex 8994 3.19313 18.998 -0.291927 Vertex 8995 3.19365 19.9083 0.03575 Vertex 8996 3.19744 18.0359 0.80113 Vertex 8997 3.19797 -35.0239 -1.79187 Vertex 8998 3.19798 19.4625 -0.504596 Vertex 8999 3.20162 19.0982 -0.458968 Vertex 9000 3.20227 -44.3414 -3.45309 Vertex 9001 3.20317 19.025 -0.361331 Vertex 9002 3.20359 18.7692 -0.683192 Vertex 9003 3.20389 17.9181 -0.685209 Vertex 9004 3.20399 20.0291 -0.111514 Vertex 9005 3.20401 19.4249 -0.444627 Vertex 9006 3.20594 19.1567 -0.136562 Vertex 9007 3.20731 19.5357 -0.473559 Vertex 9008 3.20738 18.0362 -0.352014 Vertex 9009 3.20785 17.9361 -0.626065 Vertex 9010 3.20806 -0.834043 3.86842 Vertex 9011 3.20806 0.583956 3.86844 Vertex 9012 3.20811 19.216 -0.497212 Vertex 9013 3.20906 17.7053 0.200731 Vertex 9014 3.20936 17.934 -0.452032 Vertex 9015 3.20956 20.6929 0.112191 Vertex 9016 3.21064 18.3519 -0.468369 Vertex 9017 3.21285 20.078 0.001454 Vertex 9018 3.21291 19.9002 -0.072314 Vertex 9019 3.21461 19.1638 -1.3917 Vertex 9020 3.21729 -41.1654 -3.02543 Vertex 9021 3.22026 18.2461 -0.939277 Vertex 9022 3.22145 18.1171 -0.85148 Vertex 9023 3.22156 18.7472 0.985109 Vertex 9024 3.22195 18.3658 0.835335 Vertex 9025 3.22244 -19.9758 -7.85713 Vertex 9026 3.22269 6.2201 5.13146 Vertex 9027 3.22338 17.8191 0.617218 Vertex 9028 3.22348 18.5006 -0.627535 Vertex 9029 3.22373 20.0411 -1.29254 Vertex 9030 3.22407 -41.3635 -1.97742 Vertex 9031 3.22462 18.3757 -1.03901 Vertex 9032 3.22517 18.8626 -0.765079 Vertex 9033 3.2257 19.3037 -0.060854 Vertex 9034 3.22673 20.0038 -1.07902 Vertex 9035 3.22837 18.4427 -0.629277 Vertex 9036 3.22858 20.1523 -0.853471 Vertex 9037 3.22975 17.9887 -0.775618 Vertex 9038 3.2301 20.2183 -0.046999 Vertex 9039 3.23032 18.6704 -1.28805 Vertex 9040 3.2304 18.4222 0.376823 Vertex 9041 3.23082 18.1486 -0.399648 Vertex 9042 3.23115 19.4294 -1.38958 Vertex 9043 3.23233 18.3163 0.316394 Vertex 9044 3.23244 18.5834 -0.667633 Vertex 9045 3.23318 -20.0215 1.78738 Vertex 9046 3.23413 18.3686 -0.582123 Vertex 9047 3.23431 18.5274 0.842066 Vertex 9048 3.23526 18.5521 0.381914 Vertex 9049 3.23554 18.5382 -0.743518 Vertex 9050 3.23592 12.9219 -5.0927 Vertex 9051 3.2365 19.6273 -0.492515 Vertex 9052 3.23657 19.6928 -1.34058 Vertex 9053 3.23752 18.4455 -0.722854 Vertex 9054 3.23756 18.2067 0.261209 Vertex 9055 3.23792 18.517 -0.866352 Vertex 9056 3.23886 19.5187 -0.424634 Vertex 9057 3.23893 18.2522 0.72887 Vertex 9058 3.24078 18.6121 -0.823511 Vertex 9059 3.2411 17.6776 0.455791 Vertex 9060 3.24146 18.46 -0.787334 Vertex 9061 3.24165 19.8402 0.791473 Vertex 9062 3.24321 18.5113 -0.918858 Vertex 9063 3.24608 18.0934 0.211268 Vertex 9064 3.24656 -21.4863 0.859684 Vertex 9065 3.24669 18.3338 -0.761522 Vertex 9066 3.24672 17.9756 -0.624762 Vertex 9067 3.24686 19.0948 -0.870731 Vertex 9068 3.24692 18.7059 0.331665 Vertex 9069 3.24715 18.027 -0.46577 Vertex 9070 3.24729 18.9352 -0.847878 Vertex 9071 3.2475 19.067 -0.231317 Vertex 9072 3.24785 20.3084 -0.163413 Vertex 9073 3.25061 17.6113 0.31685 Vertex 9074 3.25073 19.1611 -0.407207 Vertex 9075 3.25101 19.8722 -1.26568 Vertex 9076 3.25106 18.5234 -1.13337 Vertex 9077 3.25132 18.7033 -0.94206 Vertex 9078 3.25136 19.289 -0.439375 Vertex 9079 3.2521 19.3208 -0.677197 Vertex 9080 3.25217 19.4519 -0.01768 Vertex 9081 3.25221 -27.8381 -1.14416 Vertex 9082 3.25243 18.7192 -0.890591 Vertex 9083 3.25278 18.3215 -0.844462 Vertex 9084 3.25322 -34.289 -3.32258 Vertex 9085 3.25432 18.1654 -0.513402 Vertex 9086 3.25452 19.0126 -0.883095 Vertex 9087 3.2546 18.2329 -0.732831 Vertex 9088 3.25498 20.1885 -1.04436 Vertex 9089 3.25524 18.6909 -0.749573 Vertex 9090 3.25578 19.092 -0.303671 Vertex 9091 3.256 -45.027 -2.26575 Vertex 9092 3.25607 20.2211 -1.40764 Vertex 9093 3.2563 18.8468 0.287083 Vertex 9094 3.25732 -3.67004 3.46626 Vertex 9095 3.25733 -44.3833 -2.26356 Vertex 9096 3.25743 18.1049 0.606018 Vertex 9097 3.25776 20.1259 0.66716 Vertex 9098 3.25808 18.3157 -0.896969 Vertex 9099 3.25914 17.9817 0.180115 Vertex 9100 3.25914 18.0291 -0.702485 Vertex 9101 3.25985 20.1018 -0.226386 Vertex 9102 3.2603 18.0805 -0.543494 Vertex 9103 3.26057 18.148 -0.76292 Vertex 9104 3.26264 18.4369 -0.997359 Vertex 9105 3.26315 18.6391 -0.98018 Vertex 9106 3.2634 18.9747 0.248166 Vertex 9107 3.26492 19.6565 -0.536927 Vertex 9108 3.26608 20.3483 -0.347785 Vertex 9109 3.26634 18.8642 -0.988546 Vertex 9110 3.26702 19.1725 0.226651 Vertex 9111 3.26718 19.4405 0.222538 Vertex 9112 3.26813 18.9132 0.870588 Vertex 9113 3.26852 19.5575 -0.540063 Vertex 9114 3.27049 18.8595 -0.944758 Vertex 9115 3.27103 19.6813 0.218313 Vertex 9116 3.27163 19.5872 0.758989 Vertex 9117 3.27175 20.2887 -0.800189 Vertex 9118 3.27233 19.1711 -0.837656 Vertex 9119 3.27259 19.1606 -0.173256 Vertex 9120 3.2727 19.6163 -0.436342 Vertex 9121 3.27332 19.4848 -0.570497 Vertex 9122 3.27405 20.3417 -0.560044 Vertex 9123 3.27528 -27.7529 -1.31757 Vertex 9124 3.27573 18.8938 -1.35787 Vertex 9125 3.27602 18.737 0.749067 Vertex 9126 3.27702 20.959 -0.941135 Vertex 9127 3.27743 17.924 0.466778 Vertex 9128 3.27859 19.8951 0.213979 Vertex 9129 3.27872 18.7942 -0.825307 Vertex 9130 3.27945 20.2049 -0.651923 Vertex 9131 3.28152 -40.8857 -5.35049 Vertex 9132 3.28199 19.3934 -0.621834 Vertex 9133 3.28227 18.5694 -1.06084 Vertex 9134 3.28301 20.7208 -1.26632 Vertex 9135 3.28534 19.6015 -0.007041 Vertex 9136 3.28659 19.2894 -0.733335 Vertex 9137 3.29058 -9.97451 -6.16875 Vertex 9138 3.29085 19.0065 -1.01382 Vertex 9139 3.29141 19.3723 -0.390593 Vertex 9140 3.29163 19.6771 -0.597263 Vertex 9141 3.29215 -9.32543 3.74982 Vertex 9142 3.29243 19.0163 -0.9721 Vertex 9143 3.29278 19.5869 -0.580943 Vertex 9144 3.29305 -28.3492 -1.17067 Vertex 9145 3.29496 18.8487 -1.02179 Vertex 9146 3.29538 19.358 0.730354 Vertex 9147 3.29566 20.9068 -0.567151 Vertex 9148 3.29581 20.0943 0.159149 Vertex 9149 3.2962 19.2402 -0.356078 Vertex 9150 3.29622 17.7784 0.390975 Vertex 9151 3.29958 18.6893 -1.22236 Vertex 9152 3.30051 19.5509 -0.850304 Vertex 9153 3.30268 19.1884 -0.246428 Vertex 9154 3.30288 18.8933 -0.894838 Vertex 9155 3.30368 19.6885 -0.656154 Vertex 9156 3.30381 19.0042 0.752311 Vertex 9157 3.30399 19.8511 0.582915 Vertex 9158 3.30403 17.7149 0.266997 Vertex 9159 3.30563 19.4598 -0.898085 Vertex 9160 3.30575 19.1711 -1.40725 Vertex 9161 3.30642 19.3036 -0.108023 Vertex 9162 3.30647 18.7891 -1.06206 Vertex 9163 3.30729 19.6107 -0.8046 Vertex 9164 3.30747 19.6573 -0.759032 Vertex 9165 3.30904 -45.0363 -3.47801 Vertex 9166 3.30975 18.8939 0.655959 Vertex 9167 3.31011 20.3775 -1.12855 Vertex 9168 3.31047 -45.271 -5.4912 Vertex 9169 3.31117 19.6079 -0.634217 Vertex 9170 3.31172 19.7136 -0.509505 Vertex 9171 3.3129 19.1524 0.705567 Vertex 9172 3.31291 20.1997 -0.406052 Vertex 9173 3.31542 19.6863 -0.449782 Vertex 9174 3.31571 4.52821 4.72588 Vertex 9175 3.31649 20.8115 -0.223744 Vertex 9176 3.31699 19.7504 -0.049569 Vertex 9177 3.31734 19.51 -0.62784 Vertex 9178 3.31824 19.1896 -0.972614 Vertex 9179 3.3185 20.1085 0.484315 Vertex 9180 3.31907 19.6195 -0.689574 Vertex 9181 3.31995 20.4445 0.386052 Vertex 9182 3.32008 -35.0194 -5.7129 Vertex 9183 3.32032 19.189 -1.02231 Vertex 9184 3.3224 19.6096 0.561051 Vertex 9185 3.32264 19.3375 -0.947944 Vertex 9186 3.32271 20.279 0.053825 Vertex 9187 3.32297 19.4885 -0.958001 Vertex 9188 3.32357 18.9938 -1.0527 Vertex 9189 3.32496 18.7289 -1.14703 Vertex 9190 3.32598 19.5884 -0.908457 Vertex 9191 3.3267 19.5716 -0.735543 Vertex 9192 3.32775 19.4336 -1.40529 Vertex 9193 3.32832 19.0231 -0.92752 Vertex 9194 3.33005 19.538 -0.676623 Vertex 9195 3.33037 7.39789 4.98044 Vertex 9196 3.33103 19.3496 -1.0037 Vertex 9197 3.33105 19.1166 -0.892787 Vertex 9198 3.33195 20.0045 -1.05971 Vertex 9199 3.33259 19.7311 -0.580576 Vertex 9200 3.33302 19.4688 -0.364806 Vertex 9201 3.33314 19.185 -0.854631 Vertex 9202 3.3355 18.998 0.562747 Vertex 9203 3.33556 19.5091 -0.782048 Vertex 9204 3.3358 19.3792 0.541624 Vertex 9205 3.33765 20.0603 -0.292809 Vertex 9206 3.33803 19.3354 -0.305583 Vertex 9207 3.33861 19.426 -0.677616 Vertex 9208 3.33883 18.9074 -1.29281 Vertex 9209 3.33906 19.0298 -0.902933 Vertex 9210 3.33912 19.4511 -0.073519 Vertex 9211 3.33915 20.792 -0.926346 Vertex 9212 3.33944 20.2253 -0.55143 Vertex 9213 3.33952 20.673 0.089084 Vertex 9214 3.34003 20.4054 -0.106043 Vertex 9215 3.34006 19.6494 -0.855067 Vertex 9216 3.34076 20.4686 -0.848672 Vertex 9217 3.34174 19.6814 -1.352 Vertex 9218 3.34314 19.8717 -1.23681 Vertex 9219 3.34387 19.3142 -0.1896 Vertex 9220 3.34404 19.7249 -0.669176 Vertex 9221 3.34418 19.1598 0.524635 Vertex 9222 3.34608 19.6949 -0.775307 Vertex 9223 3.34708 19.4244 -0.834293 Vertex 9224 3.34714 19.8988 -0.145266 Vertex 9225 3.3474 19.3034 -0.75031 Vertex 9226 3.34754 18.9691 -1.11917 Vertex 9227 3.34778 20.4735 -0.320456 Vertex 9228 3.34802 20.4945 -0.568 Vertex 9229 3.34826 19.4675 -0.724485 Vertex 9230 3.35137 20.0952 -0.875498 Vertex 9231 3.3531 0.63495 4.33226 Vertex 9232 3.35486 19.3589 -0.73084 Vertex 9233 3.35501 19.1837 -0.923355 Vertex 9234 3.35512 20.7659 -0.576641 Vertex 9235 3.35671 10.0236 3.24507 Vertex 9236 3.35745 -38.6949 -1.99616 Vertex 9237 3.35924 -37.8189 -1.99606 Vertex 9238 3.36062 13.1817 -4.29178 Vertex 9239 3.36124 19.1818 -1.07244 Vertex 9240 3.36127 19.3175 -0.89228 Vertex 9241 3.36247 20.2371 -0.514588 Vertex 9242 3.36276 18.9325 -1.21324 Vertex 9243 3.36298 19.4072 -0.77675 Vertex 9244 3.36424 4.69447 4.91997 Vertex 9245 3.36593 20.3819 0.265248 Vertex 9246 3.3662 19.184 -0.896428 Vertex 9247 3.3669 -40.3129 -1.97798 Vertex 9248 3.36829 19.2524 -0.858272 Vertex 9249 3.36882 19.1776 -1.34473 Vertex 9250 3.36948 -7.48904 -5.39941 Vertex 9251 3.36974 20.6943 -0.262411 Vertex 9252 3.3707 19.6031 -0.069744 Vertex 9253 3.37404 13.2127 -4.47829 Vertex 9254 3.37575 19.3079 -0.838801 Vertex 9255 3.37617 19.5784 -0.362015 Vertex 9256 3.37826 20.0217 -0.291958 Vertex 9257 3.3793 20.1695 -0.505619 Vertex 9258 3.38073 19.4455 -0.276528 Vertex 9259 3.38198 19.449 -0.159801 Vertex 9260 3.38231 3.46415 -4.7463 Vertex 9261 3.38301 20.5772 0.01634 Vertex 9262 3.38636 19.1789 -1.15149 Vertex 9263 3.38642 19.354 -1.05955 Vertex 9264 3.38825 -19.9735 -8.16416 Vertex 9265 3.39269 -43.2833 -2.35691 Vertex 9266 3.39569 19.1802 -1.25948 Vertex 9267 3.39909 19.5103 -1.01404 Vertex 9268 3.39963 3.4923 -4.51652 Vertex 9269 3.40005 19.4204 -1.34626 Vertex 9270 3.40139 20.1436 -0.684157 Vertex 9271 3.40174 -41.9441 -2.39168 Vertex 9272 3.40234 20.1812 -0.468777 Vertex 9273 3.40917 0.827907 -4.44123 Vertex 9274 3.41036 20.1192 -0.489645 Vertex 9275 3.41043 19.7473 -0.114119 Vertex 9276 3.41196 19.6215 -0.956503 Vertex 9277 3.41337 -34.3175 -4.1362 Vertex 9278 3.41702 19.5928 -0.157033 Vertex 9279 3.41963 19.3706 -1.14479 Vertex 9280 3.42355 19.6544 -0.368205 Vertex 9281 3.42428 19.5706 -0.268911 Vertex 9282 3.42503 19.6876 -0.886943 Vertex 9283 3.42505 -39.9594 -5.26247 Vertex 9284 3.43067 19.3994 -1.25943 Vertex 9285 3.43229 19.7344 -0.795844 Vertex 9286 3.43252 19.6357 -1.2974 Vertex 9287 3.43317 19.7583 -0.498676 Vertex 9288 3.43376 19.762 -0.68321 Vertex 9289 3.43405 19.77 -0.584154 Vertex 9290 3.44417 -21.5941 -7.10822 Vertex 9291 3.44686 19.7339 -0.431751 Vertex 9292 3.44734 19.5442 -1.09907 Vertex 9293 3.45335 10.0753 2.95122 Vertex 9294 3.45601 3.40753 4.78684 Vertex 9295 3.45625 19.8111 -1.19399 Vertex 9296 3.4566 -27.5189 -0.950573 Vertex 9297 3.45685 -12.2219 -6.38517 Vertex 9298 3.4583 19.8838 -0.206647 Vertex 9299 3.45873 19.7236 -0.197696 Vertex 9300 3.46189 19.6792 -0.300301 Vertex 9301 3.46772 19.59 -1.21309 Vertex 9302 3.46918 1.49115 -4.4775 Vertex 9303 3.46941 19.6737 -1.02854 Vertex 9304 3.4695 -6.42517 3.66297 Vertex 9305 3.47124 19.9464 -1.03603 Vertex 9306 3.4737 -38.6912 -5.27822 Vertex 9307 3.47549 -37.8152 -5.27795 Vertex 9308 3.48275 -44.7921 -2.35031 Vertex 9309 3.48418 -25.5847 -0.732716 Vertex 9310 3.48585 19.7593 -0.933209 Vertex 9311 3.4861 20.0354 -0.86474 Vertex 9312 3.48872 19.9889 -0.336631 Vertex 9313 3.49287 -45.271 -2.27047 Vertex 9314 3.49356 19.7715 -0.370696 Vertex 9315 3.49492 19.817 -0.819425 Vertex 9316 3.4966 19.8468 -0.68719 Vertex 9317 3.49668 -33.7243 -6.11202 Vertex 9318 3.49834 19.7451 -1.12457 Vertex 9319 3.49891 -34.0953 -5.99427 Vertex 9320 3.50044 19.8507 -0.567278 Vertex 9321 3.50083 20.0782 -0.680108 Vertex 9322 3.50171 20.0627 -0.504071 Vertex 9323 3.50641 19.8286 -0.459689 Vertex 9324 3.50711 19.8414 -0.28179 Vertex 9325 3.52162 1.25598 4.70198 Vertex 9326 3.52254 19.8646 -0.993864 Vertex 9327 3.52384 -25.9814 -0.749304 Vertex 9328 3.53144 19.9245 -0.392541 Vertex 9329 3.53173 19.9732 -0.529949 Vertex 9330 3.53257 19.9792 -0.681118 Vertex 9331 3.53395 19.9427 -0.846049 Vertex 9332 3.53528 10.2807 3.43794 Vertex 9333 3.54125 -41.3936 -2.08358 Vertex 9334 3.54276 -24.2452 -0.55738 Vertex 9335 3.5623 -27.495 -1.18471 Vertex 9336 3.56584 -34.2877 -2.43025 Vertex 9337 3.56937 -44.3406 -2.3818 Vertex 9338 3.57421 -40.9441 -5.20574 Vertex 9339 3.57885 13.295 -4.76504 Vertex 9340 3.59208 -33.5417 -5.98628 Vertex 9341 3.59248 -21.6048 -7.39691 Vertex 9342 3.59631 2.28685 4.8478 Vertex 9343 3.60217 -40.4421 -2.18242 Vertex 9344 3.60737 -23.8486 -0.474778 Vertex 9345 3.6139 4.525 -4.61741 Vertex 9346 3.61447 -40.8957 -1.41745 Vertex 9347 3.61548 3.46973 -4.56373 Vertex 9348 3.61705 2.41446 -4.51005 Vertex 9349 3.62736 -22.3367 -6.70651 Vertex 9350 3.63231 -25.8941 -0.975157 Vertex 9351 3.6441 -25.6244 -0.939852 Vertex 9352 3.6505 8.03122 -5.81563 Vertex 9353 3.67097 5.38223 -4.87526 Vertex 9354 3.67398 -22.299 -6.45561 Vertex 9355 3.67462 -22.311 -0.27351 Vertex 9356 3.68882 4.7136 -4.75333 Vertex 9357 3.70323 10.189 3.55257 Vertex 9358 3.70822 -24.1585 -0.747953 Vertex 9359 3.71774 -40.0178 -5.11773 Vertex 9360 3.71962 -45.0361 -2.35503 Vertex 9361 3.72002 -23.8888 -0.712648 Vertex 9362 3.75965 -23.8831 -6.40122 Vertex 9363 3.76544 -13.7685 -6.78005 Vertex 9364 3.77203 -30.3158 -1.16317 Vertex 9365 3.78988 -24.2794 -6.35547 Vertex 9366 3.79003 -22.2879 -0.503097 Vertex 9367 3.8108 -23.9087 -6.14291 Vertex 9368 3.81164 4.70619 -4.6926 Vertex 9369 3.82627 -26.904 -0.758538 Vertex 9370 3.8273 -32.2118 -1.24345 Vertex 9371 3.83012 -24.1785 -6.11155 Vertex 9372 3.83353 -33.539 -6.08826 Vertex 9373 3.83364 13.0827 -4.93915 Vertex 9374 3.84228 9.94833 3.54526 Vertex 9375 3.84438 9.77242 3.41274 Vertex 9376 3.84974 -41.0249 -1.62188 Vertex 9377 3.85659 -26.8085 -0.961159 Vertex 9378 3.86232 -32.2322 -6.74542 Vertex 9379 3.8664 -39.9511 -1.29076 Vertex 9380 3.87485 -27.3481 -0.748987 Vertex 9381 3.88568 -25.6172 -6.19991 Vertex 9382 3.90467 -3.66993 -3.61716 Vertex 9383 3.90599 -33.5211 -1.25683 Vertex 9384 3.91627 -26.0134 -6.15422 Vertex 9385 3.93069 -35.0198 -1.15539 Vertex 9386 3.93498 -25.6428 -5.94127 Vertex 9387 3.95429 -25.9126 -5.9099 Vertex 9388 3.95864 -38.6917 -1.41269 Vertex 9389 3.96043 -37.8157 -1.41258 Vertex 9390 3.96221 -42.0763 -0.571919 Vertex 9391 3.96711 12.9869 -4.95245 Vertex 9392 3.99554 -30.3357 -6.55192 Vertex 9393 4.02625 -27.5494 -5.97562 Vertex 9394 4.06881 -27.5118 -5.72395 Vertex 9395 4.09808 -43.3268 -0.650871 Vertex 9396 4.10167 -40.0803 -1.4952 Vertex 9397 4.10425 -40.5012 -0.68469 Vertex 9398 4.10725 -3.71535 -3.40232 Vertex 9399 4.12434 10.3749 -5.79659 Vertex 9400 4.18597 -2.25193 -3.50615 Vertex 9401 4.18597 -0.833929 -3.50613 Vertex 9402 4.18597 0.584069 -3.50611 Vertex 9403 4.24468 -34.3057 -4.9717 Vertex 9404 4.28453 -43.2549 -6.22179 Vertex 9405 4.29247 -34.2941 -1.83348 Vertex 9406 4.30907 11.8225 2.11012 Vertex 9407 4.33316 -41.9992 -6.18445 Vertex 9408 4.33952 -40.6304 -0.889129 Vertex 9409 4.33972 14.0406 -3.75157 Vertex 9410 4.34243 -3.67003 2.86751 Vertex 9411 4.35581 -3.66993 -3.79357 Vertex 9412 4.35581 -2.25193 -3.79355 Vertex 9413 4.37255 -44.3802 -6.14642 Vertex 9414 4.38725 -0.833926 -3.77448 Vertex 9415 4.38725 0.584073 -3.77446 Vertex 9416 4.40082 -42.2893 0.277072 Vertex 9417 4.40451 -40.9968 -5.67094 Vertex 9418 4.41288 -3.66993 -3.30975 Vertex 9419 4.43305 -34.0951 -6.17119 Vertex 9420 4.43405 -3.68358 2.52432 Vertex 9421 4.44005 -41.2177 0.152154 Vertex 9422 4.44197 -40.9603 -5.99738 Vertex 9423 4.4437 -45.2711 -5.97899 Vertex 9424 4.44434 -45.027 -0.723774 Vertex 9425 4.44992 -44.4206 -0.710606 Vertex 9426 4.467 -45.0273 -6.14099 Vertex 9427 4.46877 12.058 2.31527 Vertex 9428 4.47985 -43.2609 0.242264 Vertex 9429 4.50055 14.3583 -3.76364 Vertex 9430 4.50814 -40.1085 -5.58813 Vertex 9431 4.51694 -45.027 2.12598 Vertex 9432 4.53096 -44.2737 2.12728 Vertex 9433 4.53481 -33.5226 -6.19712 Vertex 9434 4.5456 -40.072 -5.91457 Vertex 9435 4.54862 -33.7304 -6.32419 Vertex 9436 4.57663 -6.32902 3.04433 Vertex 9437 4.58172 -43.1962 2.11899 Vertex 9438 4.58375 -38.6912 -5.88253 Vertex 9439 4.58554 -37.8152 -5.88243 Vertex 9440 4.60536 -2.25202 2.72245 Vertex 9441 4.60536 -0.834022 2.72247 Vertex 9442 4.60536 0.583976 2.72249 Vertex 9443 4.6084 -26.5058 -0.367619 Vertex 9444 4.62089 -45.271 -0.75666 Vertex 9445 4.62103 14.3687 -3.97251 Vertex 9446 4.63256 11.9667 2.40584 Vertex 9447 4.63903 -40.0876 -1.3413 Vertex 9448 4.64987 -26.399 -0.576924 Vertex 9449 4.65329 -41.4931 0.595577 Vertex 9450 4.6581 -45.0271 1.4287 Vertex 9451 4.66416 -35.0191 -6.12998 Vertex 9452 4.66635 -26.8989 -0.309795 Vertex 9453 4.67733 2.40024 3.90997 Vertex 9454 4.67837 1.50848 3.71893 Vertex 9455 4.68298 -39.838 -1.11674 Vertex 9456 4.68699 -40.5613 -0.806952 Vertex 9457 4.68918 13.0009 1.20876 Vertex 9458 4.70377 5.38122 -4.37494 Vertex 9459 4.70385 -44.3783 1.44491 Vertex 9460 4.72543 -45.271 1.96986 Vertex 9461 4.72778 -44.9304 1.97401 Vertex 9462 4.73094 -40.3117 -0.582392 Vertex 9463 4.73212 -43.2792 1.476 Vertex 9464 4.74967 3.41923 4.05976 Vertex 9465 4.75184 -6.32716 2.79893 Vertex 9466 4.76249 -3.67002 2.46685 Vertex 9467 4.76989 -45.027 0.088799 Vertex 9468 4.7753 -38.6884 -1.17131 Vertex 9469 4.77709 -37.8124 -1.1712 Vertex 9470 4.7777 0.890581 3.55255 Vertex 9471 4.77786 11.5497 2.19269 Vertex 9472 4.77974 -44.4204 0.112964 Vertex 9473 4.78895 4.49637 -3.69587 Vertex 9474 4.79302 0.586182 -3.85386 Vertex 9475 4.8025 -7.52484 -4.49775 Vertex 9476 4.80725 11.7225 2.32642 Vertex 9477 4.8129 -45.027 2.85613 Vertex 9478 4.81614 -44.9388 2.01289 Vertex 9479 4.81891 -0.834026 2.97957 Vertex 9480 4.81891 0.583972 2.97959 Vertex 9481 4.82201 4.43822 4.20956 Vertex 9482 4.82231 -45.271 1.26514 Vertex 9483 4.82477 -44.2895 2.85553 Vertex 9484 4.8256 -3.67003 2.97433 Vertex 9485 4.8256 -2.25203 2.97435 Vertex 9486 4.83434 -43.2387 2.8515 Vertex 9487 4.83678 3.46058 3.89169 Vertex 9488 4.84001 -44.2711 2.01426 Vertex 9489 4.85129 4.58553 4.42604 Vertex 9490 4.85155 2.48294 3.57381 Vertex 9491 4.8524 1.59846 3.38413 Vertex 9492 4.85666 -43.3244 2.00333 Vertex 9493 4.86296 13.2774 1.37785 Vertex 9494 4.86735 14.194 -4.08115 Vertex 9495 4.88339 -35.0158 -0.892796 Vertex 9496 4.89038 4.48092 -3.52633 Vertex 9497 4.8932 0.896571 3.29041 Vertex 9498 4.90062 12.2646 -5.24404 Vertex 9499 4.92916 -45.271 0.012773 Vertex 9500 4.94121 -42.5676 1.94707 Vertex 9501 4.95323 -11.7906 -5.48958 Vertex 9502 4.96212 -42.5194 1.60902 Vertex 9503 4.98179 -7.53615 -4.24421 Vertex 9504 4.98507 3.41862 3.87127 Vertex 9505 4.98695 13.9792 -4.02141 Vertex 9506 4.98869 -9.67015 -5.00347 Vertex 9507 4.99817 3.2824 -3.74281 Vertex 9508 5.01211 0.729243 3.07933 Vertex 9509 5.02191 5.24898 4.81932 Vertex 9510 5.02319 -13.1969 3.10061 Vertex 9511 5.03182 -45.271 2.82578 Vertex 9512 5.03416 -44.9304 2.82993 Vertex 9513 5.04299 -45.0271 3.62325 Vertex 9514 5.04323 -6.28307 2.68218 Vertex 9515 5.05284 -40.8669 -0.040656 Vertex 9516 5.05968 1.12404 -3.91608 Vertex 9517 5.06023 4.48478 -3.39564 Vertex 9518 5.06304 13.1813 1.4141 Vertex 9519 5.06679 -43.2985 3.65831 Vertex 9520 5.06929 14.0353 0.16341 Vertex 9521 5.07721 -44.3565 3.6494 Vertex 9522 5.08428 3.27382 -3.63027 Vertex 9523 5.10154 -45.2712 -5.67839 Vertex 9524 5.10928 -43.3669 2.73583 Vertex 9525 5.11209 -44.9388 2.74304 Vertex 9526 5.11843 -42.8077 1.82997 Vertex 9527 5.13011 6.17703 4.85359 Vertex 9528 5.13382 -44.2869 2.7425 Vertex 9529 5.14812 2.39902 3.53297 Vertex 9530 5.14865 1.51228 3.34183 Vertex 9531 5.15434 7.39397 4.47908 Vertex 9532 5.16278 4.70925 -3.60492 Vertex 9533 5.16693 -9.67127 -4.76261 Vertex 9534 5.17206 12.7691 1.16771 Vertex 9535 5.17381 -11.3275 3.17279 Vertex 9536 5.18126 9.74168 2.96163 Vertex 9537 5.18213 -15.4691 -6.98895 Vertex 9538 5.19304 -33.9544 -6.04996 Vertex 9539 5.20261 2.03074 -3.85679 Vertex 9540 5.20691 3.27182 -3.51849 Vertex 9541 5.2152 12.9418 1.30627 Vertex 9542 5.2297 -41.3618 -5.40337 Vertex 9543 5.23414 -45.027 -5.79309 Vertex 9544 5.23547 -44.3783 -5.79089 Vertex 9545 5.24866 -33.3726 -6.10603 Vertex 9546 5.25684 -7.49152 -4.12092 Vertex 9547 5.25716 14.3528 0.296421 Vertex 9548 5.26009 -34.2542 -5.12619 Vertex 9549 5.27059 -45.271 3.60876 Vertex 9550 5.27109 -42.045 -5.7485 Vertex 9551 5.30159 -41.3699 0.564513 Vertex 9552 5.31601 -42.6252 2.67321 Vertex 9553 5.32534 14.7589 -1.74606 Vertex 9554 5.32684 -33.5901 -6.19562 Vertex 9555 5.34099 -34.2971 -1.71518 Vertex 9556 5.34342 -40.4779 -5.2375 Vertex 9557 5.3977 11.4409 1.92598 Vertex 9558 5.39807 -33.4598 -6.32609 Vertex 9559 5.39875 -9.56262 -4.59858 Vertex 9560 5.44897 -9.08938 3.26283 Vertex 9561 5.44949 -43.2908 -5.88366 Vertex 9562 5.4584 -41.3445 -5.64498 Vertex 9563 5.4709 14.2604 0.28676 Vertex 9564 5.48006 8.59332 -5.38383 Vertex 9565 5.48377 -42.6296 3.44 Vertex 9566 5.49183 -27.4749 -6.19907 Vertex 9567 5.49323 -42.8654 2.55611 Vertex 9568 5.50332 10.4921 -2.23541 Vertex 9569 5.52261 -33.5257 -1.39886 Vertex 9570 5.5227 15.1033 -1.68382 Vertex 9571 5.52922 10.4657 -1.63571 Vertex 9572 5.53364 -27.4993 -1.0136 Vertex 9573 5.53439 -27.4373 -5.9474 Vertex 9574 5.54354 12.6985 1.06746 Vertex 9575 5.54637 7.27442 -4.56344 Vertex 9576 5.55213 -3.67 1.18242 Vertex 9577 5.55213 -2.252 1.18245 Vertex 9578 5.55213 -0.833995 1.18246 Vertex 9579 5.55213 0.584003 1.18249 Vertex 9580 5.55256 -22.2926 -0.319962 Vertex 9581 5.55268 -25.932 -6.39647 Vertex 9582 5.55324 -27.5357 -0.758933 Vertex 9583 5.56004 -44.3629 4.66877 Vertex 9584 5.56186 5.38039 -3.25141 Vertex 9585 5.56611 -25.5356 -6.4468 Vertex 9586 5.56625 13.8445 -0.001265 Vertex 9587 5.57212 -40.4605 -5.47911 Vertex 9588 5.57724 -45.027 4.68656 Vertex 9589 5.58622 -41.8602 1.37018 Vertex 9590 5.59144 11.7182 -2.3525 Vertex 9591 5.5928 11.7038 -1.65043 Vertex 9592 5.59368 -15.6399 3.11395 Vertex 9593 5.59774 -25.8311 -6.15289 Vertex 9594 5.60027 -3.66995 -2.28193 Vertex 9595 5.60027 -2.25195 -2.28191 Vertex 9596 5.60027 -0.83395 -2.28189 Vertex 9597 5.60027 0.584049 -2.28187 Vertex 9598 5.60321 -42.0311 1.68165 Vertex 9599 5.60349 8.57324 -5.4261 Vertex 9600 5.60801 11.5428 -2.90787 Vertex 9601 5.60838 -25.5613 -6.18742 Vertex 9602 5.61713 -42.3382 1.599 Vertex 9603 5.61836 14.0195 0.14405 Vertex 9604 5.61914 -24.1909 -6.61883 Vertex 9605 5.62208 -13.4371 -5.64686 Vertex 9606 5.62406 11.3731 -0.888613 Vertex 9607 5.63183 10.0996 -5.65648 Vertex 9608 5.63194 -23.794 -6.67481 Vertex 9609 5.64026 -32.1419 -7.01627 Vertex 9610 5.64741 -25.8985 -0.789087 Vertex 9611 5.65041 11.0944 -3.51062 Vertex 9612 5.65666 -43.3196 4.47069 Vertex 9613 5.65755 -22.2346 -7.07236 Vertex 9614 5.65774 -26.1975 -0.708506 Vertex 9615 5.66176 10.2129 -2.69847 Vertex 9616 5.66252 -25.998 -0.543273 Vertex 9617 5.66641 -24.09 -6.37565 Vertex 9618 5.66652 -25.6295 -0.751366 Vertex 9619 5.66964 -17.6304 -8.38756 Vertex 9620 5.6698 7.25433 -4.60571 Vertex 9621 5.67705 -23.8201 -6.41017 Vertex 9622 5.68476 10.7311 -0.303523 Vertex 9623 5.68972 -25.6028 -0.487784 Vertex 9624 5.69107 -3.7011 -0.608438 Vertex 9625 5.70241 10.0802 -1.16296 Vertex 9626 5.70398 -44.99 -4.4998 Vertex 9627 5.7043 -22.197 -6.8207 Vertex 9628 5.7189 -26.275 -0.507952 Vertex 9629 5.7354 -30.2473 -6.81719 Vertex 9630 5.73663 -26.6598 -0.434434 Vertex 9631 5.74572 15.0931 -1.76401 Vertex 9632 5.74652 -44.3227 -4.50789 Vertex 9633 5.74685 -44.949 -4.51751 Vertex 9634 5.75195 10.6058 -3.85106 Vertex 9635 5.75526 10.0795 -5.69875 Vertex 9636 5.75572 -45.271 4.57053 Vertex 9637 5.77072 -24.1632 -0.545718 Vertex 9638 5.77229 -38.6939 -5.31538 Vertex 9639 5.77408 -37.8179 -5.31527 Vertex 9640 5.78207 -32.217 -1.19807 Vertex 9641 5.78495 -24.2627 -0.299833 Vertex 9642 5.78984 -23.8943 -0.507997 Vertex 9643 5.80873 10.2514 -0.090255 Vertex 9644 5.81218 -23.8675 -0.244348 Vertex 9645 5.82403 8.59933 -5.3379 Vertex 9646 5.82766 9.77829 -1.08318 Vertex 9647 5.8279 -42.6859 3.88862 Vertex 9648 5.83172 6.3578 -3.29464 Vertex 9649 5.86059 -30.3209 -1.12206 Vertex 9650 5.86217 -3.67 1.32148 Vertex 9651 5.86217 -2.252 1.3215 Vertex 9652 5.86702 -33.3909 -5.90739 Vertex 9653 5.86792 -45.2711 -4.58649 Vertex 9654 5.87158 8.7628 -4.90198 Vertex 9655 5.87513 -0.833947 -2.4805 Vertex 9656 5.87513 0.584052 -2.48048 Vertex 9657 5.87522 -0.833996 1.29024 Vertex 9658 5.87522 0.584002 1.29026 Vertex 9659 5.87664 -22.2386 -0.668153 Vertex 9660 5.88332 9.87669 -2.86252 Vertex 9661 5.88764 7.33415 -4.55093 Vertex 9662 5.90908 -21.477 -8.04778 Vertex 9663 5.92145 -22.3298 -0.028688 Vertex 9664 5.92537 13.6395 -3.90961 Vertex 9665 5.92773 7.64602 -4.20732 Vertex 9666 5.92834 -3.66995 -2.37695 Vertex 9667 5.92834 -2.25195 -2.37693 Vertex 9668 5.92869 -3.66996 -0.952019 Vertex 9669 5.92977 -21.4898 1.2608 Vertex 9670 5.9302 -3.66997 -0.365996 Vertex 9671 5.95223 -34.2095 -4.85423 Vertex 9672 5.95515 6.33772 -3.33691 Vertex 9673 5.96928 8.63516 -5.2306 Vertex 9674 5.96962 10.0443 -5.59945 Vertex 9675 5.97771 -42.2253 2.36976 Vertex 9676 5.97792 4.42493 -2.01676 Vertex 9677 5.98105 0.889254 -0.691035 Vertex 9678 5.98667 14.9066 -1.79195 Vertex 9679 5.99163 -42.5324 2.28711 Vertex 9680 5.99226 -43.2346 -4.54069 Vertex 9681 5.99433 9.95947 -4.05303 Vertex 9682 5.9986 4.43593 3.59473 Vertex 9683 6.00009 10.0383 -5.13285 Vertex 9684 6.0014 -2.25196 -0.657592 Vertex 9685 6.0014 -0.83396 -0.657572 Vertex 9686 6.0014 0.584038 -0.657551 Vertex 9687 6.00741 8.69988 -5.05631 Vertex 9688 6.0091 14.7242 -1.76119 Vertex 9689 6.02166 -19.8563 -8.95316 Vertex 9690 6.02786 9.41271 -1.21125 Vertex 9691 6.0303 7.4215 -4.47569 Vertex 9692 6.03095 -45.027 -4.67746 Vertex 9693 6.03228 -44.3732 -4.67526 Vertex 9694 6.03363 4.40313 -1.80879 Vertex 9695 6.05421 -42.1707 -4.42714 Vertex 9696 6.05492 9.76061 -0.015878 Vertex 9697 6.06534 7.54771 -4.33965 Vertex 9698 6.08178 11.8888 -5.19287 Vertex 9699 6.0965 4.43579 3.46793 Vertex 9700 6.09971 -20.0135 2.21433 Vertex 9701 6.10108 -35.0221 -5.50011 Vertex 9702 6.10574 1.44355 -0.537757 Vertex 9703 6.10871 -6.13414 1.51869 Vertex 9704 6.10893 10.0212 -5.48149 Vertex 9705 6.11191 -34.2907 -2.09497 Vertex 9706 6.11941 0.620633 2.1421 Vertex 9707 6.12274 4.42306 -1.73434 Vertex 9708 6.14 10.0157 -5.2945 Vertex 9709 6.14374 11.3101 1.60497 Vertex 9710 6.14736 3.19252 -2.22149 Vertex 9711 6.15328 -17.8217 2.94429 Vertex 9712 6.15343 9.3637 -2.66082 Vertex 9713 6.15419 -40.0247 -2.18896 Vertex 9714 6.15638 9.10637 -1.68459 Vertex 9715 6.15861 0.529734 -2.4611 Vertex 9716 6.15929 -41.1163 -4.17897 Vertex 9717 6.16136 6.45487 -3.33383 Vertex 9718 6.16635 -22.2915 -0.400585 Vertex 9719 6.16935 6.86988 -3.13298 Vertex 9720 6.20403 -21.3785 1.13725 Vertex 9721 6.20458 4.44575 3.35634 Vertex 9722 6.20521 11.8687 -5.23514 Vertex 9723 6.21448 -33.6837 -5.73291 Vertex 9724 6.22563 4.70799 -1.70401 Vertex 9725 6.22696 2.35364 -0.387596 Vertex 9726 6.23709 3.16811 -1.96624 Vertex 9727 6.24251 10.9961 -4.45964 Vertex 9728 6.24917 1.40467 -0.873569 Vertex 9729 6.25653 -44.9899 -3.48905 Vertex 9730 6.27037 3.29993 3.29292 Vertex 9731 6.27143 12.3355 -2.50084 Vertex 9732 6.27322 12.3165 -1.57702 Vertex 9733 6.27652 -43.2598 -4.71564 Vertex 9734 6.28068 -33.0951 -5.82118 Vertex 9735 6.29198 9.71615 2.58683 Vertex 9736 6.29287 6.57805 -3.30816 Vertex 9737 6.29324 12.1047 -3.23163 Vertex 9738 6.29485 -44.3273 -3.58288 Vertex 9739 6.29518 -44.949 -3.59249 Vertex 9740 6.2984 -40.6954 -3.82604 Vertex 9741 6.30445 -40.5515 -1.59844 Vertex 9742 6.31436 11.8814 -0.574578 Vertex 9743 6.31461 6.74698 -3.23127 Vertex 9744 6.31783 10.5068 0.489034 Vertex 9745 6.31846 -38.6906 -2.12518 Vertex 9746 6.32025 -37.8146 -2.12507 Vertex 9747 6.32924 4.56952 3.6647 Vertex 9748 6.32948 -3.66996 -0.752633 Vertex 9749 6.32948 -2.25196 -0.752612 Vertex 9750 6.32992 1.38414 -0.288502 Vertex 9751 6.33015 -42.3167 3.00224 Vertex 9752 6.33793 3.20008 -1.83464 Vertex 9753 6.33968 -42.1528 -4.60068 Vertex 9754 6.34091 9.06014 -0.168211 Vertex 9755 6.34225 -0.83396 -0.685627 Vertex 9756 6.34225 0.584039 -0.685606 Vertex 9757 6.34904 11.5146 -4.02476 Vertex 9758 6.36776 2.3148 -0.723716 Vertex 9759 6.37416 -19.9011 2.09065 Vertex 9760 6.37597 -45.0271 5.24633 Vertex 9761 6.37656 1.01116 -2.3548 Vertex 9762 6.38007 -34.2126 -4.37666 Vertex 9763 6.38108 11.5532 -4.74029 Vertex 9764 6.38792 5.38028 -1.47809 Vertex 9765 6.39154 -39.8123 -2.07588 Vertex 9766 6.39423 11.0366 0.195314 Vertex 9767 6.40123 11.7606 -5.15473 Vertex 9768 6.40608 0.818348 -0.855766 Vertex 9769 6.41526 -44.3557 5.28254 Vertex 9770 6.416 1.90913 -2.20403 Vertex 9771 6.41786 1.27036 2.91128 Vertex 9772 6.41935 -33.3096 -5.85585 Vertex 9773 6.42015 1.93037 -2.3071 Vertex 9774 6.42047 -45.271 -3.57574 Vertex 9775 6.43077 -40.27 -3.27638 Vertex 9776 6.43317 3.48004 -0.254737 Vertex 9777 6.43659 10.1028 -4.7254 Vertex 9778 6.44475 -41.0984 -4.3525 Vertex 9779 6.44519 9.04369 -3.91063 Vertex 9780 6.45459 2.29483 -0.139645 Vertex 9781 6.45699 6.06565 -1.33002 Vertex 9782 6.46829 -45.271 5.06899 Vertex 9783 6.47605 1.95106 -2.12188 Vertex 9784 6.47728 2.16204 3.06955 Vertex 9785 6.50445 -21.488 1.17528 Vertex 9786 6.50462 -6.34977 -0.408374 Vertex 9787 6.5054 4.52261 -0.020655 Vertex 9788 6.51104 8.60197 -0.420323 Vertex 9789 6.51729 5.23794 3.99098 Vertex 9790 6.51848 -6.62575 -2.30468 Vertex 9791 6.52297 11.6676 -5.05488 Vertex 9792 6.53305 11.5787 -4.8895 Vertex 9793 6.54138 -43.2346 -3.68517 Vertex 9794 6.54181 -40.339 -1.48537 Vertex 9795 6.54265 -38.6976 -4.19296 Vertex 9796 6.54267 9.7923 0.586904 Vertex 9797 6.54444 -37.8216 -4.19285 Vertex 9798 6.54939 -27.3727 -5.55402 Vertex 9799 6.55853 0.821168 -0.329246 Vertex 9800 6.55897 -6.28919 -0.115199 Vertex 9801 6.56011 -43.3325 5.06993 Vertex 9802 6.57928 -45.027 -3.75244 Vertex 9803 6.57996 -41.3874 -3.45416 Vertex 9804 6.58042 6.04556 -1.37229 Vertex 9805 6.58061 -44.3777 -3.75025 Vertex 9806 6.58357 -42.1677 -3.62182 Vertex 9807 6.59868 -40.6476 -3.96669 Vertex 9808 6.5989 4.52639 1.97901 Vertex 9809 6.61467 4.52287 2.14453 Vertex 9810 6.61716 -34.2156 -3.28398 Vertex 9811 6.61981 -6.3647 -0.69964 Vertex 9812 6.62939 -35.0181 -1.91999 Vertex 9813 6.65377 4.53229 1.77602 Vertex 9814 6.65775 5.93729 -3.16594 Vertex 9815 6.65892 4.70734 -0.130068 Vertex 9816 6.66719 -38.6947 -3.32432 Vertex 9817 6.66898 -37.8187 -3.32421 Vertex 9818 6.67093 -20.0105 2.1196 Vertex 9819 6.67587 -33.516 -1.98357 Vertex 9820 6.67727 3.24332 1.76913 Vertex 9821 6.68011 6.14707 4.02962 Vertex 9822 6.68438 7.35665 -3.20158 Vertex 9823 6.68515 3.24156 1.85189 Vertex 9824 6.68899 -33.3956 -4.92897 Vertex 9825 6.69555 8.75321 -4.53803 Vertex 9826 6.69879 6.6225 -1.46944 Vertex 9827 6.70125 7.57214 -3.60192 Vertex 9828 6.70196 -27.4125 -5.75822 Vertex 9829 6.7047 3.24627 1.66763 Vertex 9830 6.70624 7.92342 -4.01511 Vertex 9831 6.7323 14.1705 -1.95675 Vertex 9832 6.73365 -40.1227 -3.27867 Vertex 9833 6.73605 -25.7599 -5.72532 Vertex 9834 6.7566 7.33689 3.72476 Vertex 9835 6.76116 6.17462 -1.44923 Vertex 9836 6.76576 -40.8285 -0.850633 Vertex 9837 6.76718 -25.4909 -5.75389 Vertex 9838 6.76727 8.31049 -3.18002 Vertex 9839 6.76735 -40.8037 -2.8256 Vertex 9840 6.77517 1.21205 0.781024 Vertex 9841 6.78562 12.5256 0.974956 Vertex 9842 6.78568 -27.4902 -1.56294 Vertex 9843 6.79683 13.4976 -0.269359 Vertex 9844 6.82564 -43.2598 -3.86012 Vertex 9845 6.82914 -32.0635 -6.53945 Vertex 9846 6.83329 5.06838 -2.92306 Vertex 9847 6.84599 8.19581 -1.28649 Vertex 9848 6.85556 13.3582 -3.63173 Vertex 9849 6.85651 4.69352 2.11507 Vertex 9850 6.86055 2.03823 1.06127 Vertex 9851 6.86083 6.49176 -1.51502 Vertex 9852 6.86256 -9.08388 2.00808 Vertex 9853 6.86823 6.30921 -1.50033 Vertex 9854 6.86986 -42.1568 -3.79467 Vertex 9855 6.87612 8.19083 0.022637 Vertex 9856 6.87902 8.8035 0.386456 Vertex 9857 6.88025 -41.3396 -3.59481 Vertex 9858 6.88131 -25.8629 -5.92282 Vertex 9859 6.89199 5.38138 0.224029 Vertex 9860 6.89534 -25.4655 -5.9854 Vertex 9861 6.90083 11.1018 1.47198 Vertex 9862 6.91636 -41.3607 -0.163031 Vertex 9863 6.93024 -42.6753 4.42051 Vertex 9864 6.93323 -30.1706 -6.35018 Vertex 9865 6.93763 -27.5339 -1.35908 Vertex 9866 6.93828 -24.0127 -5.91091 Vertex 9867 6.96067 -42.437 1.02659 Vertex 9868 6.96941 -23.7437 -5.93948 Vertex 9869 6.97899 13.3381 -3.674 Vertex 9870 6.98115 -33.4003 -3.24674 Vertex 9871 6.98442 -13.1871 2.36055 Vertex 9872 6.99152 -45.271 -2.34218 Vertex 9873 6.99251 -32.2059 -1.86392 Vertex 9874 7.00097 -25.8881 -1.38626 Vertex 9875 7.0145 9.58546 2.02911 Vertex 9876 7.03628 12.7974 -3.4184 Vertex 9877 7.03667 -15.3518 -6.24693 Vertex 9878 7.03702 -25.6199 -1.35668 Vertex 9879 7.05155 -42.1343 1.06901 Vertex 9880 7.05183 -24.1134 -6.12901 Vertex 9881 7.05203 -35.0229 -3.24765 Vertex 9882 7.05507 -11.0373 2.1656 Vertex 9883 7.05698 -33.0271 -5.28221 Vertex 9884 7.06705 -12.9289 -4.08971 Vertex 9885 7.06977 -8.98465 -2.44379 Vertex 9886 7.06988 -35.0264 -4.23679 Vertex 9887 7.07023 -40.6563 -2.82789 Vertex 9888 7.09673 -32.4618 -5.42216 Vertex 9889 7.09948 -41.8982 0.751682 Vertex 9890 7.10766 -26.197 -1.51474 Vertex 9891 7.12023 7.79835 -0.347202 Vertex 9892 7.12112 -22.1146 -6.30932 Vertex 9893 7.12247 6.24603 -1.71512 Vertex 9894 7.12399 -23.7202 -6.15428 Vertex 9895 7.13799 -40.9886 -2.19132 Vertex 9896 7.14173 -44.4004 -2.53413 Vertex 9897 7.14349 13.1701 -3.65718 Vertex 9898 7.14424 5.34338 2.54972 Vertex 9899 7.14446 -25.9948 -1.18934 Vertex 9900 7.14457 -32.0689 -5.459 Vertex 9901 7.14481 -45.027 -2.51383 Vertex 9902 7.16181 6.84011 0.359268 Vertex 9903 7.16729 -30.31 -1.77421 Vertex 9904 7.18781 -26.6616 -1.23954 Vertex 9905 7.19111 -42.3079 -2.54227 Vertex 9906 7.1969 -25.6007 -1.14547 Vertex 9907 7.20901 12.8624 -3.52573 Vertex 9908 7.21482 5.19364 -2.01751 Vertex 9909 7.21797 -26.2768 -1.33962 Vertex 9910 7.22757 -42.6339 1.749 Vertex 9911 7.23428 -24.152 -1.19479 Vertex 9912 7.23499 13.0197 -3.61834 Vertex 9913 7.24208 -27.3771 -4.86325 Vertex 9914 7.26168 7.2993 -1.87648 Vertex 9915 7.2653 -10.881 -2.97793 Vertex 9916 7.2683 -22.1541 -6.51797 Vertex 9917 7.26897 -41.4482 -1.31473 Vertex 9918 7.26954 7.23251 -0.093519 Vertex 9919 7.27034 -23.8838 -1.16521 Vertex 9920 7.27506 -32.6227 -5.37381 Vertex 9921 7.28524 6.82002 0.316999 Vertex 9922 7.3006 -45.271 -1.68567 Vertex 9923 7.30844 -43.2583 -2.57767 Vertex 9924 7.31193 5.15508 -3.58199 Vertex 9925 7.31846 -42.3313 1.79142 Vertex 9926 7.34298 6.36847 2.67728 Vertex 9927 7.34724 -32.0742 -3.54329 Vertex 9928 7.35804 5.8667 -3.90135 Vertex 9929 7.37725 -24.2586 -0.997458 Vertex 9930 7.37731 -43.3377 5.39664 Vertex 9931 7.38405 7.43221 2.55887 Vertex 9932 7.3915 -9.11913 -0.899686 Vertex 9933 7.40119 -45.271 5.47066 Vertex 9934 7.42907 -42.3373 -1.50223 Vertex 9935 7.4291 -41.7705 -0.706719 Vertex 9936 7.42978 -23.8644 -0.953655 Vertex 9937 7.43035 6.90536 0.156759 Vertex 9938 7.43434 -45.0273 5.69717 Vertex 9939 7.43949 -9.01958 0.66656 Vertex 9940 7.45504 7.13056 -0.084245 Vertex 9941 7.46773 13.6718 -1.99324 Vertex 9942 7.4719 -27.4234 -4.97097 Vertex 9943 7.48314 -45.0271 -1.79581 Vertex 9944 7.48562 -22.2817 -0.988529 Vertex 9945 7.50323 6.99802 0.025754 Vertex 9946 7.51296 -25.7642 -4.97435 Vertex 9947 7.51413 -44.4004 -1.75187 Vertex 9948 7.51897 -44.3451 5.6843 Vertex 9949 7.55463 13.063 -2.03102 Vertex 9950 7.55794 -25.4963 -4.9928 Vertex 9951 7.56263 -42.3769 2.50256 Vertex 9952 7.56545 12.5855 -0.899039 Vertex 9953 7.59116 13.6518 -2.03551 Vertex 9954 7.59849 -43.2583 -1.67611 Vertex 9955 7.61663 7.83815 1.21381 Vertex 9956 7.62261 12.036 -4.81852 Vertex 9957 7.62621 9.35865 -5.83151 Vertex 9958 7.63149 10.8124 -5.64342 Vertex 9959 7.63661 -22.3253 -0.783916 Vertex 9960 7.65184 -30.1758 -5.53014 Vertex 9961 7.65852 -27.3814 -3.28275 Vertex 9962 7.67358 -31.9761 -4.70322 Vertex 9963 7.67565 -42.6215 0.741497 Vertex 9964 7.68071 8.12335 0.68454 Vertex 9965 7.68501 3.53338 -2.93775 Vertex 9966 7.70332 -31.4477 -4.87229 Vertex 9967 7.71974 -17.4998 -7.56352 Vertex 9968 7.73073 13.471 -2.08544 Vertex 9969 7.73222 -25.8734 -5.07774 Vertex 9970 7.74006 7.81806 1.17155 Vertex 9971 7.74378 13.1363 -2.09439 Vertex 9972 7.74719 12.7431 -3.50605 Vertex 9973 7.75892 12.9316 -2.48278 Vertex 9974 7.76148 4.96266 -4.32859 Vertex 9975 7.78966 -21.3532 -7.36365 Vertex 9976 7.79831 13.3084 -2.11062 Vertex 9977 7.80632 -24.0174 -5.09468 Vertex 9978 7.81562 3.79219 -2.41983 Vertex 9979 7.8166 -25.4854 -5.04524 Vertex 9980 7.83119 -15.6207 1.95268 Vertex 9981 7.85131 -23.7495 -5.11313 Vertex 9982 7.86286 -10.9122 1.09587 Vertex 9983 7.86606 -31.5471 -4.78395 Vertex 9984 7.87356 7.87492 0.990975 Vertex 9985 7.87386 8.04017 0.707204 Vertex 9986 7.87406 -42.3419 0.440428 Vertex 9987 7.88002 11.9198 -0.116802 Vertex 9988 7.8867 5.53516 -4.62686 Vertex 9989 7.89086 -22.0812 -5.30726 Vertex 9990 7.89981 13.1714 -0.493756 Vertex 9991 7.90535 -27.4298 -3.22534 Vertex 9992 7.90837 -22.1205 -5.57303 Vertex 9993 7.9124 -42.4073 0.693917 Vertex 9994 7.9205 12.6393 -0.761338 Vertex 9995 7.93532 7.94025 0.840468 Vertex 9996 7.95196 -45.271 -0.286458 Vertex 9997 7.95283 -42.8053 1.46782 Vertex 9998 7.96207 -26.4116 -2.25786 Vertex 9999 7.96631 6.90082 -0.876599 Vertex 10000 7.98007 -25.7685 -3.25598 Vertex 10001 7.98766 5.2484 -1.55877 Vertex 10002 7.99733 -30.181 -3.65386 Vertex 10003 8.0053 -13.0103 1.00777 Vertex 10004 8.01164 9.33482 1.656 Vertex 10005 8.01519 9.39067 1.05896 Vertex 10006 8.02324 13.1514 -0.536025 Vertex 10007 8.0333 -25.5016 -3.25155 Vertex 10008 8.03752 -26.9019 -2.00118 Vertex 10009 8.03881 -43.3786 0.600656 Vertex 10010 8.04053 -42.6782 3.77032 Vertex 10011 8.04338 -10.8848 -0.228495 Vertex 10012 8.04387 -24.1321 -5.13846 Vertex 10013 8.08957 -23.7329 -5.22963 Vertex 10014 8.09503 -15.3683 -5.06338 Vertex 10015 8.1075 -15.4977 -4.72907 Vertex 10016 8.10894 -26.5016 -2.12342 Vertex 10017 8.10949 3.36266 -3.69303 Vertex 10018 8.1136 -30.5863 -4.13192 Vertex 10019 8.11792 12.0286 0.105356 Vertex 10020 8.12124 12.6992 -0.784484 Vertex 10021 8.12424 -19.7211 -8.09466 Vertex 10022 8.13296 12.4502 0.529803 Vertex 10023 8.13507 9.31474 1.61373 Vertex 10024 8.13685 10.9443 0.814305 Vertex 10025 8.14521 12.991 -0.647036 Vertex 10026 8.1486 -30.0369 -4.30088 Vertex 10027 8.18049 6.64974 -4.28675 Vertex 10028 8.18082 -44.4346 0.542982 Vertex 10029 8.18682 -44.9365 0.537845 Vertex 10030 8.18958 -42.5911 1.42024 Vertex 10031 8.19173 -45.0271 -0.278554 Vertex 10032 8.1959 12.8479 -0.730817 Vertex 10033 8.20447 -22.125 -4.99594 Vertex 10034 8.21442 -25.8795 -3.19961 Vertex 10035 8.21509 -43.291 -0.061943 Vertex 10036 8.21893 9.34764 1.09348 Vertex 10037 8.22038 10.9114 0.935422 Vertex 10038 8.22614 -44.3719 -0.295623 Vertex 10039 8.23746 -45.271 4.91516 Vertex 10040 8.25174 -45.271 0.432554 Vertex 10041 8.25248 9.31063 1.41515 Vertex 10042 8.25396 11.1308 1.51011 Vertex 10043 8.25409 -44.9304 0.436705 Vertex 10044 8.25428 7.52254 -5.24379 Vertex 10045 8.25639 12.4301 0.487534 Vertex 10046 8.28326 -30.1194 -4.21108 Vertex 10047 8.29388 -25.4908 -3.29862 Vertex 10048 8.29881 9.31748 1.24736 Vertex 10049 8.30544 -13.0015 -0.922785 Vertex 10050 8.31444 -43.4288 1.3497 Vertex 10051 8.31915 -22.1684 -5.511 Vertex 10052 8.32261 3.3509 -4.13582 Vertex 10053 8.32492 12.0691 0.109669 Vertex 10054 8.32824 -24.0221 -3.22699 Vertex 10055 8.33907 -43.3015 0.493351 Vertex 10056 8.34231 -43.3374 4.82455 Vertex 10057 8.34849 6.61465 -0.694472 Vertex 10058 8.36886 12.2991 0.334827 Vertex 10059 8.37072 -26.8347 -2.97015 Vertex 10060 8.37739 11.1107 1.46784 Vertex 10061 8.38146 -23.7552 -3.22256 Vertex 10062 8.38225 -45.0271 5.06772 Vertex 10063 8.39419 9.92694 1.40347 Vertex 10064 8.39821 -27.353 -2.74804 Vertex 10065 8.39982 -44.3648 5.10133 Vertex 10066 8.40378 -12.9112 -1.18576 Vertex 10067 8.40726 -15.374 -4.54654 Vertex 10068 8.41045 12.1842 0.211048 Vertex 10069 8.41438 4.17157 -1.96465 Vertex 10070 8.41631 -12.9309 -0.638932 Vertex 10071 8.43062 10.9166 0.966035 Vertex 10072 8.44611 -28.4977 -3.44355 Vertex 10073 8.45587 -42.643 2.10917 Vertex 10074 8.46009 -44.4595 1.29137 Vertex 10075 8.46614 6.60781 -5.04073 Vertex 10076 8.46957 8.95833 1.41415 Vertex 10077 8.47363 -27.9028 -3.61108 Vertex 10078 8.47776 5.2242 -1.14207 Vertex 10079 8.48024 -44.9365 1.28196 Vertex 10080 8.4849 -45.027 0.418482 Vertex 10081 8.48493 11.0335 1.2752 Vertex 10082 8.48754 -44.4112 0.423698 Vertex 10083 8.50151 -42.6843 3.20377 Vertex 10084 8.50521 6.42801 -5.05533 Vertex 10085 8.50654 4.58203 -5.16603 Vertex 10086 8.50861 -26.9064 -2.8585 Vertex 10087 8.52179 10.9701 1.11311 Vertex 10088 8.56337 -45.271 1.31489 Vertex 10089 8.56386 -24.1367 -3.27614 Vertex 10090 8.56571 -44.9304 1.31904 Vertex 10091 8.57845 5.19998 -0.725376 Vertex 10092 8.59473 -27.9859 -3.52662 Vertex 10093 8.60523 4.22854 -1.30917 Vertex 10094 8.6147 -43.3518 1.2424 Vertex 10095 8.62559 -17.8018 1.65954 Vertex 10096 8.62763 7.16986 0.288609 Vertex 10097 8.63254 6.77266 -0.327621 Vertex 10098 8.64004 -23.7411 -3.16115 Vertex 10099 8.65485 4.19353 -1.71193 Vertex 10100 8.65723 2.23391 -3.04478 Vertex 10101 8.66265 -21.4709 0.144578 Vertex 10102 8.66928 6.86513 -0.165417 Vertex 10103 8.67112 12.6136 -3.55732 Vertex 10104 8.67558 6.23456 -0.448852 Vertex 10105 8.68706 3.31266 -5.17191 Vertex 10106 8.69484 -22.1384 -3.2422 Vertex 10107 8.69749 13.0495 -2.47229 Vertex 10108 8.71394 7.75887 0.933331 Vertex 10109 8.76669 -21.352 -6.45892 Vertex 10110 8.7668 -44.436 1.17209 Vertex 10111 8.77833 -45.027 1.1626 Vertex 10112 8.7794 -15.7098 0.102446 Vertex 10113 8.78664 12.8215 -1.445 Vertex 10114 8.7899 11.1911 -5.36334 Vertex 10115 8.79092 2.40505 -2.65504 Vertex 10116 8.79141 -15.9987 0.057748 Vertex 10117 8.79583 -15.785 0.144167 Vertex 10118 8.81493 -15.9751 -0.026694 Vertex 10119 8.82183 -45.271 2.0883 Vertex 10120 8.83057 12.0761 -4.63657 Vertex 10121 8.83348 -15.762 -0.109212 Vertex 10122 8.84097 -17.4761 -6.22582 Vertex 10123 8.84542 9.6329 -6.00456 Vertex 10124 8.85424 -21.3421 -5.99528 Vertex 10125 8.86187 2.11765 -3.80763 Vertex 10126 8.86626 -15.4825 0.067004 Vertex 10127 8.87107 -43.3143 1.918 Vertex 10128 8.87638 -15.9571 -0.162388 Vertex 10129 8.88696 2.02234 -4.19029 Vertex 10130 8.88844 0.992296 -3.15284 Vertex 10131 8.89332 2.68893 -1.38139 Vertex 10132 8.89958 12.3419 -0.439584 Vertex 10133 8.90431 -17.6212 -5.81033 Vertex 10134 8.92126 -4.35677 -3.23025 Vertex 10135 8.92533 -45.271 3.84484 Vertex 10136 8.92681 -2.49958 -3.49388 Vertex 10137 8.93978 -19.9924 0.945029 Vertex 10138 8.94161 -43.3202 3.79385 Vertex 10139 8.94353 -22.1882 -3.16712 Vertex 10140 8.94565 -15.4831 0.513085 Vertex 10141 8.94586 -15.6253 0.355535 Vertex 10142 8.95974 -16.1879 -0.032894 Vertex 10143 8.96265 -16.1634 0.09069 Vertex 10144 8.96696 -15.4864 0.456328 Vertex 10145 8.97982 -15.2233 0.317066 Vertex 10146 8.98669 5.18228 -0.208585 Vertex 10147 8.99399 4.18484 -0.408676 Vertex 10148 8.99822 -16.1599 -0.172204 Vertex 10149 9.00267 5.85447 -0.203232 Vertex 10150 9.01907 5.47591 -5.51982 Vertex 10151 9.02326 -44.3842 1.9165 Vertex 10152 9.03366 -45.027 1.92883 Vertex 10153 9.05243 -15.6891 -0.281141 Vertex 10154 9.07107 -15.833 -0.318259 Vertex 10155 9.0753 11.1982 0.508086 Vertex 10156 9.07901 7.93967 -5.49622 Vertex 10157 9.09858 -4.33885 -2.40005 Vertex 10158 9.10999 6.90209 -5.35687 Vertex 10159 9.12111 -14.9301 0.658219 Vertex 10160 9.12383 -4.29743 -3.38804 Vertex 10161 9.12588 -44.3663 3.86857 Vertex 10162 9.13092 -15.4145 -0.164885 Vertex 10163 9.1409 1.04284 -2.6797 Vertex 10164 9.14485 -15.2381 0.870755 Vertex 10165 9.14724 -45.027 3.87047 Vertex 10166 9.15542 -15.9807 -0.317903 Vertex 10167 9.16476 -4.33881 -4.65661 Vertex 10168 9.16963 -16.2903 0.101243 Vertex 10169 9.18908 -19.7174 -6.98808 Vertex 10170 9.19167 -15.8061 0.452515 Vertex 10171 9.19829 6.73228 -5.36579 Vertex 10172 9.19965 -16.2701 0.016926 Vertex 10173 9.20505 0.8743 -3.91664 Vertex 10174 9.20513 2.55755 -2.41703 Vertex 10175 9.22194 -16.2233 -0.121848 Vertex 10176 9.23886 -14.7596 0.84387 Vertex 10177 9.24253 -14.9671 1.16286 Vertex 10178 9.24255 -0.993387 -3.47699 Vertex 10179 9.24557 2.61353 -2.19345 Vertex 10180 9.24875 -2.50084 -4.82542 Vertex 10181 9.25048 -0.176438 -3.27873 Vertex 10182 9.25302 -2.50044 -2.70947 Vertex 10183 9.27318 -21.3452 -5.73709 Vertex 10184 9.27479 3.10244 -0.442654 Vertex 10185 9.27918 -15.6482 0.662059 Vertex 10186 9.28703 -17.6027 -5.58686 Vertex 10187 9.28865 10.0415 1.28198 Vertex 10188 9.29334 -0.93602 -4.59519 Vertex 10189 9.29982 -0.208133 -4.24676 Vertex 10190 9.30604 1.628 -1.35177 Vertex 10191 9.30795 -15.1184 0.014277 Vertex 10192 9.30952 -19.7285 -6.43079 Vertex 10193 9.31831 2.13904 -5.14951 Vertex 10194 9.31843 -16.0043 -0.265824 Vertex 10195 9.32017 0.94983 -4.4582 Vertex 10196 9.32171 4.06305 -5.73758 Vertex 10197 9.33232 -14.5438 1.13985 Vertex 10198 9.33784 -15.4982 -1.50529 Vertex 10199 9.34365 -4.27747 -4.70197 Vertex 10200 9.36026 -16.2195 0.208991 Vertex 10201 9.36295 12.0082 -3.99928 Vertex 10202 9.36658 -15.6872 -0.257401 Vertex 10203 9.40524 -4.27188 -2.68702 Vertex 10204 9.41079 -16.206 -0.042953 Vertex 10205 9.42007 -15.3946 0.986371 Vertex 10206 9.44001 -16.2222 0.175871 Vertex 10207 9.44467 -16.0094 0.412612 Vertex 10208 9.44532 11.2386 -5.18265 Vertex 10209 9.44726 4.77119 -5.7723 Vertex 10210 9.44826 -15.3865 -1.76839 Vertex 10211 9.44853 3.47707 -5.55829 Vertex 10212 9.45522 -15.9969 -0.23507 Vertex 10213 9.46207 -14.8063 0.280058 Vertex 10214 9.46959 -15.51 -1.22994 Vertex 10215 9.50647 -15.9251 0.255295 Vertex 10216 9.52467 -1.09417 -2.9647 Vertex 10217 9.5341 -15.2045 1.24693 Vertex 10218 9.54165 -14.6553 0.45666 Vertex 10219 9.54451 -14.5447 1.49722 Vertex 10220 9.54713 -15.8851 0.56992 Vertex 10221 9.55726 -15.9385 0.526657 Vertex 10222 9.5696 -14.5516 0.682242 Vertex 10223 9.57185 -4.29444 -1.54782 Vertex 10224 9.58125 6.28773 0.06475 Vertex 10225 9.58199 -15.7702 0.867382 Vertex 10226 9.58468 8.99371 1.34566 Vertex 10227 9.5879 -0.053116 -5.00576 Vertex 10228 9.59717 6.00617 -5.57221 Vertex 10229 9.61545 1.08211 -5.16186 Vertex 10230 9.61605 6.44918 0.13333 Vertex 10231 9.63054 -0.150637 -2.6132 Vertex 10232 9.63827 2.09717 -0.490344 Vertex 10233 9.63894 7.02585 0.456604 Vertex 10234 9.64369 -16.0826 0.155483 Vertex 10235 9.65546 1.26999 -2.45644 Vertex 10236 9.66799 7.74706 0.924819 Vertex 10237 9.67313 -15.6468 0.928454 Vertex 10238 9.67962 -15.2565 -0.05794 Vertex 10239 9.67989 -15.8386 -0.1016 Vertex 10240 9.68869 -16.1883 0.384223 Vertex 10241 9.70212 -15.5374 0.234933 Vertex 10242 9.71841 -15.5205 0.468435 Vertex 10243 9.72184 1.3262 -2.23653 Vertex 10244 9.72934 -16.1599 0.625094 Vertex 10245 9.73154 -14.0222 0.985885 Vertex 10246 9.73154 0.01042 -5.26248 Vertex 10247 9.73661 -16.0595 0.850463 Vertex 10248 9.73715 12.8281 -2.73469 Vertex 10249 9.73866 2.44708 -5.66819 Vertex 10250 9.74596 -4.28925 -5.4962 Vertex 10251 9.75577 -19.7527 -6.08434 Vertex 10252 9.75612 -15.4313 0.683442 Vertex 10253 9.7604 -21.461 -1.2275 Vertex 10254 9.76182 5.40737 0.003398 Vertex 10255 9.77394 -15.3139 -0.713082 Vertex 10256 9.77716 -16.0328 -1.77378 Vertex 10257 9.78416 4.38373 -0.036203 Vertex 10258 9.7936 -15.9753 0.100159 Vertex 10259 9.7942 -15.3524 -0.39644 Vertex 10260 9.79645 -16.0396 -1.14011 Vertex 10261 9.80458 -16.0672 -1.45693 Vertex 10262 9.80722 -14.2928 0.470013 Vertex 10263 9.82269 -15.4349 -1.23279 Vertex 10264 9.8233 1.24077 -5.45815 Vertex 10265 9.82394 -0.959323 -5.26112 Vertex 10266 9.82697 -17.6931 -0.000768 Vertex 10267 9.82779 -15.8746 0.416379 Vertex 10268 9.82793 -15.3148 -0.080776 Vertex 10269 9.82831 4.14704 -5.78171 Vertex 10270 9.8301 -15.4674 -1.46372 Vertex 10271 9.83246 -15.6575 -0.623767 Vertex 10272 9.83412 -14.6562 1.63673 Vertex 10273 9.84089 -4.23232 -1.97828 Vertex 10274 9.84129 -15.4283 -1.69507 Vertex 10275 9.84366 -13.5396 0.834674 Vertex 10276 9.84828 -15.4341 1.23197 Vertex 10277 9.85591 -13.5405 -0.037375 Vertex 10278 9.86292 -15.6942 -0.382872 Vertex 10279 9.8662 -15.7829 0.054908 Vertex 10280 9.87019 11.8408 -0.00659 Vertex 10281 9.8715 0.167996 -5.67131 Vertex 10282 9.88043 -14.9543 0.203369 Vertex 10283 9.88307 -2.44324 -5.57819 Vertex 10284 9.88332 -2.44321 -2.029 Vertex 10285 9.88576 -15.6557 -0.141455 Vertex 10286 9.88896 -15.5752 0.09549 Vertex 10287 9.89669 3.36702 -0.11203 Vertex 10288 9.89984 -15.7575 0.961197 Vertex 10289 9.91631 -13.2561 0.680038 Vertex 10290 9.92759 -16.1117 0.112918 Vertex 10291 9.93864 -14.0007 1.39393 Vertex 10292 9.94118 -0.772566 -5.41739 Vertex 10293 9.96338 -4.2212 -5.44755 Vertex 10294 9.96899 -15.5808 0.90871 Vertex 10295 9.97122 -14.8082 0.37878 Vertex 10296 9.97415 3.50325 -5.6892 Vertex 10297 9.98007 -14.7642 0.578683 Vertex 10298 9.99053 -16.2791 -1.70685 Vertex 10299 10.0026 11.1862 -4.56491 Vertex 10300 10.0076 -13.4063 -0.144325 Vertex 10301 10.01 -16.3625 -0.663164 Vertex 10302 10.015 -15.6201 0.760091 Vertex 10303 10.0175 -15.866 0.997665 Vertex 10304 10.0194 -16.2767 -1.22267 Vertex 10305 10.0195 -15.2187 -2.24603 Vertex 10306 10.026 5.30314 -5.82455 Vertex 10307 10.0284 -0.933655 -2.35618 Vertex 10308 10.0297 0.740176 -1.21487 Vertex 10309 10.0298 -16.3056 -1.46581 Vertex 10310 10.0315 -15.0685 -0.417614 Vertex 10311 10.036 -15.6257 -1.02428 Vertex 10312 10.0372 -15.0344 -0.64981 Vertex 10313 10.0377 -14.9516 1.60192 Vertex 10314 10.0497 -15.1603 -2.54581 Vertex 10315 10.0513 -16.3232 -0.148261 Vertex 10316 10.0542 -15.3998 -0.865201 Vertex 10317 10.0548 -15.2401 -1.93361 Vertex 10318 10.0605 -15.9198 -1.90888 Vertex 10319 10.062 -15.034 -0.18731 Vertex 10320 10.0628 -13.9021 0.410332 Vertex 10321 10.0656 -16.3722 -0.406254 Vertex 10322 10.0703 -12.9986 0.337294 Vertex 10323 10.0713 -15.6141 -1.9045 Vertex 10324 10.077 -15.5485 -0.868527 Vertex 10325 10.0877 -15.9294 -1.01747 Vertex 10326 10.0974 -0.474518 -5.85231 Vertex 10327 10.0979 2.70569 -5.68303 Vertex 10328 10.1011 -15.1757 0.356879 Vertex 10329 10.1163 -15.3133 0.355448 Vertex 10330 10.1168 -15.4365 0.946823 Vertex 10331 10.1302 -15.4011 0.024308 Vertex 10332 10.132 -15.5939 -2.45618 Vertex 10333 10.1335 10.3171 0.35981 Vertex 10334 10.138 -16.0187 -1.93088 Vertex 10335 10.1388 1.32248 -0.667843 Vertex 10336 10.1421 -19.9816 -0.674959 Vertex 10337 10.146 -21.2852 -3.17337 Vertex 10338 10.1489 -0.004846 -2.15999 Vertex 10339 10.1711 -15.2668 -0.865934 Vertex 10340 10.1721 -15.626 -2.22149 Vertex 10341 10.1756 -16.6364 0.438455 Vertex 10342 10.1782 -15.545 0.046677 Vertex 10343 10.1807 -15.2394 0.057896 Vertex 10344 10.1822 -15.161 0.345594 Vertex 10345 10.1867 -14.535 0.336458 Vertex 10346 10.1903 -15.2376 1.29131 Vertex 10347 10.1908 2.33905 -0.264528 Vertex 10348 10.1922 -16.017 -1.01276 Vertex 10349 10.2043 -14.0961 1.46342 Vertex 10350 10.2058 -13.3561 1.23215 Vertex 10351 10.2094 -15.9057 0.14528 Vertex 10352 10.2152 1.33698 -5.60939 Vertex 10353 10.2162 9.76619 -5.44123 Vertex 10354 10.2165 -15.1736 0.533762 Vertex 10355 10.2185 -15.266 0.014522 Vertex 10356 10.2212 -16.1784 -0.939108 Vertex 10357 10.227 -15.4613 -0.042742 Vertex 10358 10.232 -15.882 0.137164 Vertex 10359 10.2356 -15.1002 0.797242 Vertex 10360 10.2414 -16.5666 0.948636 Vertex 10361 10.2429 -15.1136 0.633678 Vertex 10362 10.2494 -16.6207 0.69106 Vertex 10363 10.2511 -16.6647 -0.743094 Vertex 10364 10.2557 0.277446 -5.88806 Vertex 10365 10.256 -15.2048 0.096699 Vertex 10366 10.2575 -21.32 -2.89933 Vertex 10367 10.2658 -15.611 -1.98963 Vertex 10368 10.2676 -15.4349 -2.6733 Vertex 10369 10.2685 6.5225 0.103263 Vertex 10370 10.2701 -21.311 -3.44826 Vertex 10371 10.2733 -0.053182 -1.91368 Vertex 10372 10.2772 -15.9533 0.138717 Vertex 10373 10.2792 -15.7233 0.819898 Vertex 10374 10.2795 -13.9457 -0.018693 Vertex 10375 10.2811 -15.5724 -2.70249 Vertex 10376 10.2866 -14.9481 -1.44648 Vertex 10377 10.2905 -17.5936 -2.30108 Vertex 10378 10.2971 6.33747 0.050988 Vertex 10379 10.3017 -16.1019 0.063706 Vertex 10380 10.3052 -15.1998 -0.996663 Vertex 10381 10.3073 -15.1012 0.570992 Vertex 10382 10.3082 12.4185 -0.866307 Vertex 10383 10.3119 -15.7251 0.800386 Vertex 10384 10.3126 -16.4159 0.14436 Vertex 10385 10.3129 -16.5418 -1.29802 Vertex 10386 10.3182 -15.2769 0.801145 Vertex 10387 10.3195 -16.6556 -0.4016 Vertex 10388 10.3211 8.35868 -5.18312 Vertex 10389 10.3252 -16.4802 -1.82208 Vertex 10390 10.3349 4.23102 -5.82585 Vertex 10391 10.3406 -15.7759 0.466045 Vertex 10392 10.3409 -16.3972 -0.983203 Vertex 10393 10.3466 -14.9758 -1.14076 Vertex 10394 10.3471 -16.2631 -2.56731 Vertex 10395 10.3498 -15.7605 0.838861 Vertex 10396 10.3604 -16.61 -0.056382 Vertex 10397 10.368 -14.961 -1.43453 Vertex 10398 10.3704 -16.3094 -2.08445 Vertex 10399 10.3711 -15.0746 -2.24184 Vertex 10400 10.3828 -14.2139 0.30043 Vertex 10401 10.39 7.47559 -5.08956 Vertex 10402 10.3943 -15.7329 -1.81436 Vertex 10403 10.396 -16.4804 -1.56853 Vertex 10404 10.3977 -15.0368 -2.4732 Vertex 10405 10.3981 -12.782 1.20435 Vertex 10406 10.3985 -15.0905 -2.0049 Vertex 10407 10.4033 -16.0661 -2.82281 Vertex 10408 10.4049 -17.4539 -2.61459 Vertex 10409 10.4049 -15.7899 0.465994 Vertex 10410 10.4119 -15.6659 -1.1103 Vertex 10411 10.4134 -15.7945 0.46378 Vertex 10412 10.4136 -15.4701 -0.797937 Vertex 10413 10.4136 -15.7521 -1.11693 Vertex 10414 10.4228 -17.6652 -1.96881 Vertex 10415 10.4232 -15.2761 -1.85305 Vertex 10416 10.4271 -15.0278 -1.72507 Vertex 10417 10.4283 -14.9789 -1.18179 Vertex 10418 10.4287 -4.22971 -5.97208 Vertex 10419 10.4325 -13.6979 -0.190373 Vertex 10420 10.4337 -14.2675 1.51813 Vertex 10421 10.4344 -0.524662 -6.01673 Vertex 10422 10.4378 7.29163 -5.12198 Vertex 10423 10.4379 -15.586 -1.10456 Vertex 10424 10.44 -15.7404 -1.84434 Vertex 10425 10.4405 -16.2802 1.13673 Vertex 10426 10.4419 -15.642 -1.79093 Vertex 10427 10.4525 -16.3158 -2.33928 Vertex 10428 10.4596 -15.5196 -0.094213 Vertex 10429 10.46 -15.5197 -0.811788 Vertex 10430 10.462 12.7106 -2.03032 Vertex 10431 10.4665 -15.2701 -0.069142 Vertex 10432 10.4739 12.3414 -3.34505 Vertex 10433 10.4743 5.49132 0.03785 Vertex 10434 10.4752 -15.6743 0.118331 Vertex 10435 10.4773 -16.5984 0.148561 Vertex 10436 10.4787 -16.2539 -1.08276 Vertex 10437 10.4807 -15.7519 -1.12062 Vertex 10438 10.4859 -16.3042 0.1161 Vertex 10439 10.4884 -15.7835 -1.38983 Vertex 10440 10.4923 -16.8496 0.389597 Vertex 10441 10.4924 -11.0253 -1.15006 Vertex 10442 10.4946 -15.0218 -1.6631 Vertex 10443 10.4976 -15.0008 0.002019 Vertex 10444 10.4992 -15.0291 -0.044895 Vertex 10445 10.5016 -15.4526 -0.783953 Vertex 10446 10.5037 -15.4386 -1.85885 Vertex 10447 10.5039 -0.840393 -5.82585 Vertex 10448 10.5182 -15.6378 -1.68701 Vertex 10449 10.5183 3.54133 -5.62425 Vertex 10450 10.5195 9.12227 0.911131 Vertex 10451 10.5271 -14.8386 -0.465588 Vertex 10452 10.5305 -14.6859 0.651277 Vertex 10453 10.5312 -11.4201 -2.49583 Vertex 10454 10.5329 -2.38423 -5.89145 Vertex 10455 10.5331 -15.6176 -1.86309 Vertex 10456 10.5372 -15.5489 0.692284 Vertex 10457 10.5383 -15.452 -0.100028 Vertex 10458 10.54 -15.5169 -0.087701 Vertex 10459 10.5411 -16.2934 -2.09395 Vertex 10460 10.5439 -15.3174 -1.84967 Vertex 10461 10.548 -15.9902 0.146957 Vertex 10462 10.548 -15.7557 -1.47685 Vertex 10463 10.5492 -13.4731 1.26807 Vertex 10464 10.55 -15.2231 -2.67935 Vertex 10465 10.5501 -15.1011 0.704146 Vertex 10466 10.5516 -15.8172 -0.905828 Vertex 10467 10.5529 -15.8316 -2.03726 Vertex 10468 10.554 -16.2804 -2.90411 Vertex 10469 10.5547 -14.8855 0.52964 Vertex 10470 10.5561 1.24434 -0.551981 Vertex 10471 10.5577 -15.7618 -1.45611 Vertex 10472 10.56 -1.0925 -5.79057 Vertex 10473 10.5619 -15.592 -0.454099 Vertex 10474 10.566 -16.6071 -2.74803 Vertex 10475 10.567 -14.892 0.582293 Vertex 10476 10.5727 -15.7302 0.422932 Vertex 10477 10.5767 -16.837 0.685875 Vertex 10478 10.5853 -16.7737 1.02883 Vertex 10479 10.5902 -16.5051 -0.965312 Vertex 10480 10.5967 -15.7235 -1.4972 Vertex 10481 10.597 6.45553 -5.50768 Vertex 10482 10.6017 -15.5486 -2.6712 Vertex 10483 10.6019 -15.0985 -1.00007 Vertex 10484 10.6048 -15.9776 -0.907205 Vertex 10485 10.61 -14.8464 -0.465764 Vertex 10486 10.6122 -16.127 0.148446 Vertex 10487 10.6133 2.79154 -5.59136 Vertex 10488 10.6134 -14.5472 1.21956 Vertex 10489 10.6188 -15.7534 -0.069459 Vertex 10490 10.6205 -14.8559 0.038575 Vertex 10491 10.6224 -15.5636 -0.447075 Vertex 10492 10.629 -16.4459 1.13878 Vertex 10493 10.6324 -14.8784 -0.760937 Vertex 10494 10.6328 -15.0873 -0.892955 Vertex 10495 10.6334 -0.765666 -2.08109 Vertex 10496 10.6354 -14.861 -0.169522 Vertex 10497 10.6371 -15.0617 -0.026158 Vertex 10498 10.6405 -19.7502 -2.96992 Vertex 10499 10.6423 -15.7912 -1.20308 Vertex 10500 10.6461 -15.5561 -0.464796 Vertex 10501 10.6463 9.76304 -4.7473 Vertex 10502 10.6474 -15.8692 0.973914 Vertex 10503 10.6505 -15.6214 -2.71031 Vertex 10504 10.6516 -14.7563 0.214658 Vertex 10505 10.6554 -14.9287 0.053196 Vertex 10506 10.6589 4.60609 0.086972 Vertex 10507 10.6614 -14.7733 0.416879 Vertex 10508 10.6651 -12.9828 -0.666245 Vertex 10509 10.6765 -15.4494 0.063173 Vertex 10510 10.678 7.94452 0.527652 Vertex 10511 10.678 -4.1563 -5.78225 Vertex 10512 10.6792 -10.8455 -0.544866 Vertex 10513 10.6845 -16.3902 0.084887 Vertex 10514 10.6886 -15.0544 -0.011704 Vertex 10515 10.6925 7.13321 0.082106 Vertex 10516 10.6939 -16.4894 -2.14899 Vertex 10517 10.6956 -14.8473 0.42543 Vertex 10518 10.6982 -15.9909 -2.06029 Vertex 10519 10.699 -12.519 0.999461 Vertex 10520 10.7014 -16.8112 -0.679954 Vertex 10521 10.7066 -14.8155 0.221239 Vertex 10522 10.7073 -14.8731 -0.709271 Vertex 10523 10.7079 -15.6787 -1.64124 Vertex 10524 10.7098 -14.8587 -0.222102 Vertex 10525 10.71 -15.1684 -1.78481 Vertex 10526 10.7127 1.21392 -5.59313 Vertex 10527 10.7148 -15.5037 -2.68454 Vertex 10528 10.7157 -15.7347 -2.83193 Vertex 10529 10.7191 -15.7961 0.527957 Vertex 10530 10.7196 -15.3947 -1.08171 Vertex 10531 10.7226 -12.1474 -0.269684 Vertex 10532 10.7244 -11.7558 -0.984979 Vertex 10533 10.7249 -16.6535 -2.46258 Vertex 10534 10.7259 -14.8734 -1.07157 Vertex 10535 10.7269 -15.9091 -0.072221 Vertex 10536 10.7327 -15.8539 -2.86529 Vertex 10537 10.7335 -14.8566 -1.12313 Vertex 10538 10.7362 -15.3288 0.615248 Vertex 10539 10.7382 -16.0004 0.970921 Vertex 10540 10.7413 -16.3522 0.15375 Vertex 10541 10.7426 -15.6939 -0.506093 Vertex 10542 10.7429 -15.9078 -1.22531 Vertex 10543 10.7437 -19.8397 -2.59471 Vertex 10544 10.7467 -14.9368 0.52599 Vertex 10545 10.7495 -16.7526 -0.146369 Vertex 10546 10.7498 -14.4184 0.589041 Vertex 10547 10.7525 -16.3803 -1.04931 Vertex 10548 10.7535 -14.9514 0.064113 Vertex 10549 10.7599 -15.7087 0.213064 Vertex 10550 10.7629 -11.0447 -1.08783 Vertex 10551 10.7664 -16.7971 -0.414976 Vertex 10552 10.7666 -16.7698 -1.91735 Vertex 10553 10.7715 -16.1306 -1.94264 Vertex 10554 10.7722 -15.7787 -1.66207 Vertex 10555 10.7772 -15.8206 -0.511851 Vertex 10556 10.7792 -11.7079 -3.53787 Vertex 10557 10.7815 -15.5478 -2.02272 Vertex 10558 10.7833 -15.7841 0.509618 Vertex 10559 10.7868 -15.3841 -0.746702 Vertex 10560 10.787 -19.6814 -3.33927 Vertex 10561 10.7895 -0.209263 -6.05512 Vertex 10562 10.7897 -15.3667 -0.157165 Vertex 10563 10.7904 -14.8768 0.405624 Vertex 10564 10.7941 -16.451 -2.14016 Vertex 10565 10.7955 -15.9079 -2.07957 Vertex 10566 10.7955 -16.0007 -0.923008 Vertex 10567 10.7968 -15.4446 -1.64196 Vertex 10568 10.7977 -16.273 -3.03447 Vertex 10569 10.8029 -16.7017 -1.23085 Vertex 10570 10.8072 -14.9043 -1.65857 Vertex 10571 10.8119 -14.8261 0.212714 Vertex 10572 10.8131 5.51172 -5.70524 Vertex 10573 10.8136 -14.9301 -1.70804 Vertex 10574 10.814 -14.1873 0.185369 Vertex 10575 10.8149 0.381758 -5.94557 Vertex 10576 10.8156 -15.6309 -2.37675 Vertex 10577 10.817 -15.5095 -0.44835 Vertex 10578 10.8179 -4.18087 -0.639688 Vertex 10579 10.8187 -15.4068 0.331408 Vertex 10580 10.8236 -15.2098 0.093167 Vertex 10581 10.8277 -2.35746 -1.27515 Vertex 10582 10.8293 -16.7344 -1.57647 Vertex 10583 10.8327 -15.8253 -1.24594 Vertex 10584 10.8332 -15.7729 -2.92082 Vertex 10585 10.8344 -11.4471 -2.47008 Vertex 10586 10.8357 -16.6305 -2.13986 Vertex 10587 10.8361 -12.1674 -1.66008 Vertex 10588 10.8361 -12.9673 1.26495 Vertex 10589 10.8379 -15.6465 -2.03831 Vertex 10590 10.8394 -13.6742 1.35711 Vertex 10591 10.8426 -16.3463 -1.08643 Vertex 10592 10.8456 -11.2438 -1.77865 Vertex 10593 10.8481 -15.5361 0.615558 Vertex 10594 10.8501 6.5401 -0.418145 Vertex 10595 10.8532 -15.492 -1.34794 Vertex 10596 10.8545 6.71498 -0.409505 Vertex 10597 10.8603 -11.0918 -0.213886 Vertex 10598 10.864 -15.1282 0.466755 Vertex 10599 10.8681 -15.135 0.138505 Vertex 10600 10.8702 -15.9098 -0.091778 Vertex 10601 10.8706 -15.7268 -1.67847 Vertex 10602 10.8728 -14.8769 -2.24192 Vertex 10603 10.8791 -4.13804 -0.986501 Vertex 10604 10.8805 -15.6845 -2.41068 Vertex 10605 10.8806 -16.3333 1.20423 Vertex 10606 10.8809 -15.5007 -2.05257 Vertex 10607 10.8832 0.752879 -0.844994 Vertex 10608 10.8878 -15.6608 1.04154 Vertex 10609 10.8905 -14.9748 -1.08829 Vertex 10610 10.8951 -15.0804 0.388548 Vertex 10611 10.897 -16.5672 0.427453 Vertex 10612 10.901 -14.7751 -1.18422 Vertex 10613 10.901 9.45982 -0.000788 Vertex 10614 10.9013 -12.47 -3.27844 Vertex 10615 10.9022 -15.0368 0.246844 Vertex 10616 10.9053 -14.858 -1.18018 Vertex 10617 10.9075 -15.6035 -2.39309 Vertex 10618 10.9125 -10.7331 -0.184582 Vertex 10619 10.9148 1.60911 -0.336224 Vertex 10620 10.916 -14.9716 -0.861211 Vertex 10621 10.92 -14.9482 -0.066932 Vertex 10622 10.9201 -15.1404 -1.84063 Vertex 10623 10.9303 -15.1218 -2.66084 Vertex 10624 10.9309 -10.8519 -0.438323 Vertex 10625 10.9324 -12.4849 -3.50545 Vertex 10626 10.9349 -15.8461 -0.527289 Vertex 10627 10.949 -15.2146 -1.15255 Vertex 10628 10.9492 -15.3097 0.459072 Vertex 10629 10.9539 -14.8092 -1.56813 Vertex 10630 10.9565 -15.6155 -2.37041 Vertex 10631 10.9573 -14.8917 -1.55793 Vertex 10632 10.9596 -14.7406 -1.37632 Vertex 10633 10.9613 -16.536 0.95254 Vertex 10634 10.9657 -15.0234 -1.63395 Vertex 10635 10.9657 -16.3151 -1.9689 Vertex 10636 10.9702 -14.0223 0.047072 Vertex 10637 10.9712 -14.946 -1.95459 Vertex 10638 10.9726 -16.5373 0.688335 Vertex 10639 10.9737 -14.9251 -2.52603 Vertex 10640 10.9758 -11.5893 -2.975 Vertex 10641 10.9799 -12.4648 -2.93526 Vertex 10642 10.9819 -15.438 -1.96812 Vertex 10643 10.983 -15.538 0.097654 Vertex 10644 10.9865 -14.9222 -1.18149 Vertex 10645 10.9869 -15.427 -2.54073 Vertex 10646 10.9882 -14.8158 -1.36632 Vertex 10647 10.9884 -15.7216 -2.52619 Vertex 10648 10.9983 -13.9289 -0.199665 Vertex 10649 10.9997 -15.6564 -2.50629 Vertex 10650 11.0012 -15.2484 -1.53167 Vertex 10651 11.0019 3.62603 0.05797 Vertex 10652 11.002 7.49626 -4.43586 Vertex 10653 11.0066 -14.7359 -0.741896 Vertex 10654 11.0079 -14.7563 -0.79252 Vertex 10655 11.0094 -14.72 -0.199952 Vertex 10656 11.0097 8.43216 -4.33767 Vertex 10657 11.0099 -15.7912 -2.09578 Vertex 10658 11.0111 -14.7373 -0.148298 Vertex 10659 11.0141 -14.8927 -2.24054 Vertex 10660 11.015 -16.7028 -1.86513 Vertex 10661 11.0162 -11.3374 0.051851 Vertex 10662 11.0171 -15.17 -1.21031 Vertex 10663 11.0177 10.9967 -0.088386 Vertex 10664 11.0283 7.33807 -4.52109 Vertex 10665 11.0285 -16.6503 -1.32995 Vertex 10666 11.0333 -15.657 -3.03296 Vertex 10667 11.0342 -14.9531 -1.52806 Vertex 10668 11.0417 -15.6353 -2.57005 Vertex 10669 11.0438 2.44672 -0.137604 Vertex 10670 11.0463 -15.5077 -1.76154 Vertex 10671 11.0471 -15.2213 -0.741196 Vertex 10672 11.05 -15.2046 -0.17414 Vertex 10673 11.0521 -15.1926 -1.46406 Vertex 10674 11.0536 -15.8961 -2.12827 Vertex 10675 11.054 4.38983 -5.81123 Vertex 10676 11.0541 2.74427 -5.47023 Vertex 10677 11.057 -16.5528 -2.89091 Vertex 10678 11.0584 -12.6486 -1.53876 Vertex 10679 11.0626 -14.1711 1.09935 Vertex 10680 11.0628 -16.6754 -1.59999 Vertex 10681 11.0634 -11.6735 -3.27665 Vertex 10682 11.0701 -14.9261 -2.47691 Vertex 10683 11.0737 -14.9358 -2.00814 Vertex 10684 11.0768 3.52213 -5.5801 Vertex 10685 11.0811 -11.8187 -3.95914 Vertex 10686 11.0813 -0.426052 -5.7302 Vertex 10687 11.0818 -14.8644 -1.35063 Vertex 10688 11.0824 -15.1123 -1.33438 Vertex 10689 11.0867 -12.6562 0.903111 Vertex 10690 11.107 -15.5363 -2.63813 Vertex 10691 11.1132 -15.6962 -2.13671 Vertex 10692 11.1167 -15.6203 -1.35304 Vertex 10693 11.1183 -12.5874 -3.86544 Vertex 10694 11.1306 -15.7872 -2.14632 Vertex 10695 11.1427 -13.8584 -0.467892 Vertex 10696 11.1448 6.62236 -5.13339 Vertex 10697 11.152 -15.261 -0.456826 Vertex 10698 11.1552 -12.5531 -2.33756 Vertex 10699 11.1565 -15.0708 0.460273 Vertex 10700 11.1566 -14.6396 -0.668533 Vertex 10701 11.158 -11.73 -3.47793 Vertex 10702 11.1586 -14.6281 -0.279951 Vertex 10703 11.168 -14.7207 -0.663212 Vertex 10704 11.17 -14.7094 -0.280875 Vertex 10705 11.1748 -15.7971 -2.20037 Vertex 10706 11.1761 -14.8398 -0.745 Vertex 10707 11.1789 -14.8236 -0.192706 Vertex 10708 11.1807 -15.3073 0.866062 Vertex 10709 11.1843 -15.7151 -3.18251 Vertex 10710 11.1854 -14.5798 -0.475874 Vertex 10711 11.1942 -14.2264 0.051637 Vertex 10712 11.1955 -13.2825 -1.11614 Vertex 10713 11.2044 11.4128 -3.86788 Vertex 10714 11.208 -15.538 -0.652813 Vertex 10715 11.2082 -16.5797 -2.66788 Vertex 10716 11.2127 12.1837 -2.51991 Vertex 10717 11.2168 -15.596 -2.78502 Vertex 10718 11.2182 -15.6405 -2.71987 Vertex 10719 11.2192 -14.1644 -2.85257 Vertex 10720 11.2208 -14.6527 -0.474016 Vertex 10721 11.2234 -15.3993 -3.30074 Vertex 10722 11.2264 -14.1507 -3.46387 Vertex 10723 11.2317 -16.2788 -2.11918 Vertex 10724 11.2324 -15.1001 -1.87066 Vertex 10725 11.2348 -15.0822 -2.62578 Vertex 10726 11.2424 -15.7842 -1.01411 Vertex 10727 11.2452 5.79061 -0.426924 Vertex 10728 11.2466 -15.0413 -0.655389 Vertex 10729 11.2486 -15.03 -0.27166 Vertex 10730 11.2536 -14.7722 -0.6464 Vertex 10731 11.2554 -14.7618 -0.29562 Vertex 10732 11.2599 1.18203 -5.31531 Vertex 10733 11.2661 -0.564555 -5.63842 Vertex 10734 11.2749 -13.9913 0.167229 Vertex 10735 11.2824 -15.3415 -2.52305 Vertex 10736 11.2828 -15.349 -1.98084 Vertex 10737 11.2867 -16.5628 -2.39795 Vertex 10738 11.2904 -15.1544 -0.173487 Vertex 10739 11.294 -11.8727 -4.1656 Vertex 10740 11.2993 -13.1626 1.29423 Vertex 10741 11.3019 -14.99 -0.593574 Vertex 10742 11.302 -13.7591 0.972896 Vertex 10743 11.3032 -14.9824 -0.336742 Vertex 10744 11.3132 -15.5891 -0.24729 Vertex 10745 11.3165 -14.081 -3.89894 Vertex 10746 11.3195 -14.692 -0.473394 Vertex 10747 11.3201 -13.6075 -0.037681 Vertex 10748 11.3229 -16.1298 -3.25517 Vertex 10749 11.3231 -15.6883 -2.31779 Vertex 10750 11.3244 11.6914 -0.936978 Vertex 10751 11.3252 -15.3504 -0.077584 Vertex 10752 11.3324 8.64157 -0.444411 Vertex 10753 11.3345 12.042 -1.93847 Vertex 10754 11.3385 -14.9955 0.883968 Vertex 10755 11.3437 -14.9225 -0.467114 Vertex 10756 11.3437 -11.8273 -3.81615 Vertex 10757 11.3441 -14.9346 -3.43658 Vertex 10758 11.345 -14.9334 -1.92578 Vertex 10759 11.3532 -14.8954 -1.97322 Vertex 10760 11.3534 -14.8825 -2.50652 Vertex 10761 11.3555 0.396001 -5.58136 Vertex 10762 11.3615 -15.413 -2.47544 Vertex 10763 11.3623 -14.9145 -2.55677 Vertex 10764 11.3629 -12.9147 -2.2641 Vertex 10765 11.3657 -14.8991 0.445296 Vertex 10766 11.3874 -15.6146 -1.94062 Vertex 10767 11.3899 -15.6268 -1.23258 Vertex 10768 11.3953 -15.0347 -2.9148 Vertex 10769 11.3967 -15.6828 0.069326 Vertex 10770 11.4129 0.104779 -1.15676 Vertex 10771 11.4175 -15.6445 -2.21244 Vertex 10772 11.4259 -12.8786 0.852354 Vertex 10773 11.4286 -14.5305 -0.43956 Vertex 10774 11.429 7.14219 -3.84169 Vertex 10775 11.4339 7.00977 -3.97974 Vertex 10776 11.44 6.54124 -1.12531 Vertex 10777 11.4556 -14.2987 -0.62301 Vertex 10778 11.4642 7.32507 -3.69177 Vertex 10779 11.4649 6.71814 -1.14636 Vertex 10780 11.4794 7.85952 -0.759694 Vertex 10781 11.4853 1.17198 -5.19011 Vertex 10782 11.4969 -15.0457 -1.97368 Vertex 10783 11.497 -15.0316 -2.51499 Vertex 10784 11.4971 5.6358 -5.49496 Vertex 10785 11.5005 -14.1902 -2.49444 Vertex 10786 11.5063 -15.2357 -2.4386 Vertex 10787 11.5092 -15.5923 -1.95637 Vertex 10788 11.5095 -15.2379 -2.06001 Vertex 10789 11.5138 -14.829 -2.42467 Vertex 10790 11.5171 6.43823 -4.8814 Vertex 10791 11.5178 -14.8373 -2.0536 Vertex 10792 11.5315 -14.7997 -2.24012 Vertex 10793 11.5337 -14.9112 -2.05298 Vertex 10794 11.5342 -14.9009 -2.42464 Vertex 10795 11.5379 -14.7618 0.85201 Vertex 10796 11.5452 -14.2384 -1.86785 Vertex 10797 11.5453 -15.5176 -1.37737 Vertex 10798 11.5463 -13.6625 0.543902 Vertex 10799 11.5491 -13.7826 -1.61184 Vertex 10800 11.5675 4.97147 -0.359619 Vertex 10801 11.5678 0.328381 -5.44424 Vertex 10802 11.5792 -16.1325 -2.24427 Vertex 10803 11.5795 -16.0353 -1.18026 Vertex 10804 11.5799 -15.1968 -2.37561 Vertex 10805 11.5819 -15.4065 -0.351269 Vertex 10806 11.5855 -15.2001 -2.12791 Vertex 10807 11.5932 6.20771 -1.89763 Vertex 10808 11.594 -14.993 -2.41156 Vertex 10809 11.5957 -14.9972 -2.07351 Vertex 10810 11.5966 -4.12637 -6.20579 Vertex 10811 11.6002 -14.8653 -2.2431 Vertex 10812 11.6052 6.11762 -1.23264 Vertex 10813 11.6121 -14.1644 0.578828 Vertex 10814 11.6131 -10.6159 0.158918 Vertex 10815 11.6146 -16.3906 -3.14493 Vertex 10816 11.6205 -15.9941 -3.47278 Vertex 10817 11.6227 -14.9452 -2.38692 Vertex 10818 11.6231 -14.7672 -2.15108 Vertex 10819 11.6338 -15.1566 -2.25184 Vertex 10820 11.6363 -15.3961 1.10208 Vertex 10821 11.6503 -14.7353 -1.54377 Vertex 10822 11.6509 -11.9104 -4.22488 Vertex 10823 11.6642 -2.2815 -6.03182 Vertex 10824 11.6674 -14.9406 -2.24356 Vertex 10825 11.6763 9.97247 -0.338218 Vertex 10826 11.6766 -16.1171 -2.33609 Vertex 10827 11.6845 6.24356 -2.07001 Vertex 10828 11.6926 -16.2389 -1.09365 Vertex 10829 11.7198 -14.2587 -1.35265 Vertex 10830 11.7391 2.52511 -4.92307 Vertex 10831 11.7428 1.36648 -0.736056 Vertex 10832 11.751 -4.05887 -5.78443 Vertex 10833 11.7553 -15.335 -0.623129 Vertex 10834 11.7785 4.53781 -5.59161 Vertex 10835 11.7839 -14.8969 -1.00311 Vertex 10836 11.7965 -15.974 -0.047374 Vertex 10837 11.8023 -16.3919 -2.95023 Vertex 10838 11.8069 -15.7694 0.450244 Vertex 10839 11.8123 3.39867 -5.12748 Vertex 10840 11.8152 9.97106 -4.12256 Vertex 10841 11.8439 -16.3714 -2.67096 Vertex 10842 11.8518 7.09864 -1.27433 Vertex 10843 11.8588 11.3491 -2.94042 Vertex 10844 11.8616 6.92034 -3.1044 Vertex 10845 11.8707 -15.562 -3.72178 Vertex 10846 11.8829 -15.0816 -3.78264 Vertex 10847 11.8848 -15.6597 0.943686 Vertex 10848 11.8894 1.15972 -4.94565 Vertex 10849 11.8909 6.24238 -3.74949 Vertex 10850 11.8919 -11.2679 0.185742 Vertex 10851 11.8969 6.26146 -3.57864 Vertex 10852 11.9028 -16.3015 -1.95603 Vertex 10853 11.9053 -16.2528 -1.44791 Vertex 10854 11.9116 -15.7159 0.699502 Vertex 10855 11.9415 -12.5996 -4.08569 Vertex 10856 11.9451 5.14042 -1.31956 Vertex 10857 11.9467 -11.8588 -3.94525 Vertex 10858 11.9567 9.13365 -0.662654 Vertex 10859 11.9635 -16.2711 -1.70445 Vertex 10860 11.9646 3.70072 -0.412197 Vertex 10861 11.976 5.87936 -5.00302 Vertex 10862 11.9769 5.16 -2.30496 Vertex 10863 11.9905 -16.0764 -3.4622 Vertex 10864 11.9953 -16.291 -0.805464 Vertex 10865 11.9965 0.971716 -1.33469 Vertex 10866 12.0053 8.53473 -0.901799 Vertex 10867 12.0125 6.05295 -4.52471 Vertex 10868 12.0157 -0.540127 -1.58394 Vertex 10869 12.0298 6.6407 -1.97261 Vertex 10870 12.0428 5.18181 -2.54117 Vertex 10871 12.0439 -16.1654 -0.305275 Vertex 10872 12.0449 10.6861 -1.0921 Vertex 10873 12.0522 -16.0288 -2.51998 Vertex 10874 12.0562 0.430306 -5.04898 Vertex 10875 12.0635 -4.06951 -0.517512 Vertex 10876 12.0674 8.85264 -3.90827 Vertex 10877 12.0786 -16.2229 -0.559301 Vertex 10878 12.0792 -10.6409 0.044497 Vertex 10879 12.0986 11.0863 -1.9961 Vertex 10880 12.1068 7.62323 -1.35667 Vertex 10881 12.109 2.46215 -0.613683 Vertex 10882 12.1252 -11.0006 -0.057117 Vertex 10883 12.1333 -4.02416 -0.835584 Vertex 10884 12.136 -0.406476 -5.22722 Vertex 10885 12.145 -10.7893 -0.283205 Vertex 10886 12.1561 1.04236 -1.77804 Vertex 10887 12.173 6.75602 -2.46361 Vertex 10888 12.1767 6.47339 -2.5183 Vertex 10889 12.1824 -13.8478 0.709292 Vertex 10890 12.2016 -16.0535 -3.25553 Vertex 10891 12.2144 -2.23155 -1.06716 Vertex 10892 12.2169 -11.9245 -4.30735 Vertex 10893 12.2232 -15.0992 1.11797 Vertex 10894 12.2233 7.90069 -3.3034 Vertex 10895 12.2239 -13.964 -4.07233 Vertex 10896 12.2341 3.46057 -2.41887 Vertex 10897 12.2517 -16.0741 -2.88932 Vertex 10898 12.2859 7.15385 -1.93038 Vertex 10899 12.2888 2.29246 -2.27515 Vertex 10900 12.2898 -15.0625 -3.6052 Vertex 10901 12.2954 7.50564 -2.93177 Vertex 10902 12.2969 9.97666 -1.40516 Vertex 10903 12.309 -12.9969 0.425631 Vertex 10904 12.3093 -2.22293 -5.61416 Vertex 10905 12.3116 3.42665 -2.64554 Vertex 10906 12.3121 10.0612 -2.96147 Vertex 10907 12.3198 -15.9654 -1.21536 Vertex 10908 12.3267 -15.6914 0.039615 Vertex 10909 12.3315 4.73032 -5.05921 Vertex 10910 12.3344 10.1008 -2.14571 Vertex 10911 12.3385 2.36776 -1.45757 Vertex 10912 12.3389 0.601157 -1.74481 Vertex 10913 12.3411 7.22459 -2.39375 Vertex 10914 12.3421 -15.6477 -3.59771 Vertex 10915 12.3431 5.24845 -2.7205 Vertex 10916 12.3479 5.15924 -3.41971 Vertex 10917 12.3508 3.658 -1.41856 Vertex 10918 12.356 5.14346 -3.60313 Vertex 10919 12.3658 2.19166 -2.47457 Vertex 10920 12.4087 9.56463 -2.91148 Vertex 10921 12.4111 -16.0125 -2.13623 Vertex 10922 12.4212 -11.8389 -3.89164 Vertex 10923 12.435 -15.4485 0.270509 Vertex 10924 12.4359 -12.5867 -4.00745 Vertex 10925 12.4386 -14.0457 0.833116 Vertex 10926 12.4407 2.34491 -4.33406 Vertex 10927 12.4446 -12.305 0.017973 Vertex 10928 12.4457 9.25042 -1.68808 Vertex 10929 12.4533 -15.8923 -1.53692 Vertex 10930 12.4545 -15.9789 -1.82921 Vertex 10931 12.4552 1.13583 -2.03142 Vertex 10932 12.4715 9.46644 -2.32582 Vertex 10933 12.4817 -10.7163 -0.250181 Vertex 10934 12.4862 -15.7972 -2.75547 Vertex 10935 12.4873 -0.552108 -2.16414 Vertex 10936 12.5021 -15.376 0.565035 Vertex 10937 12.5034 8.27288 -2.05473 Vertex 10938 12.5104 -15.2222 -3.06807 Vertex 10939 12.511 8.68854 -1.86261 Vertex 10940 12.5121 -13.8528 -3.65664 Vertex 10941 12.5281 -15.2503 0.848337 Vertex 10942 12.5336 -15.0717 -3.41853 Vertex 10943 12.5459 8.52124 -2.56425 Vertex 10944 12.5491 8.81888 -2.66419 Vertex 10945 12.5716 -15.7805 -3.04087 Vertex 10946 12.5724 4.9783 -4.37186 Vertex 10947 12.574 8.30105 -2.36556 Vertex 10948 12.5877 1.31546 -4.21875 Vertex 10949 12.5914 -15.6773 -3.36636 Vertex 10950 12.5946 -14.797 1.02564 Vertex 10951 12.6092 -11.8677 -4.13247 Vertex 10952 12.6103 3.35823 -4.47984 Vertex 10953 12.6238 -10.9717 -0.925443 Vertex 10954 12.631 0.596058 -4.38827 Vertex 10955 12.6528 -11.8301 -0.768943 Vertex 10956 12.6531 0.637841 -2.41103 Vertex 10957 12.6686 3.39306 -4.04017 Vertex 10958 12.6833 -0.435565 -4.03055 Vertex 10959 12.6896 -15.8729 -0.95515 Vertex 10960 12.693 -4.02814 -5.90212 Vertex 10961 12.7032 -14.0047 -3.47366 Vertex 10962 12.7175 -3.98985 -5.39489 Vertex 10963 12.7204 -14.1419 0.552464 Vertex 10964 12.7222 -15.7062 -0.337668 Vertex 10965 12.7269 3.4279 -3.60051 Vertex 10966 12.728 -15.8175 -0.648377 Vertex 10967 12.732 -15.2943 -2.73725 Vertex 10968 12.7351 -11.7667 -3.66032 Vertex 10969 12.7383 3.40037 -3.41662 Vertex 10970 12.743 3.41511 -2.91249 Vertex 10971 12.7598 -0.360883 -4.5732 Vertex 10972 12.7665 1.4201 -2.55286 Vertex 10973 12.7722 -15.0902 -1.47382 Vertex 10974 12.7758 -12.5228 -3.68024 Vertex 10975 12.7843 -15.6495 -1.3861 Vertex 10976 12.7903 -15.1108 -1.78169 Vertex 10977 12.8096 -15.6314 -1.69251 Vertex 10978 12.8155 -15.1038 -2.37665 Vertex 10979 12.8208 -14.6864 0.001691 Vertex 10980 12.8322 -10.8359 -0.694152 Vertex 10981 12.8339 -15.6389 -2.30819 Vertex 10982 12.8456 -15.1558 0.143662 Vertex 10983 12.848 -13.6203 0.034911 Vertex 10984 12.8502 -14.8982 0.710457 Vertex 10985 12.8619 2.37791 -4.01278 Vertex 10986 12.8694 -14.0649 -2.86136 Vertex 10987 12.8792 -11.0924 -1.35474 Vertex 10988 12.8793 0.641095 -3.82312 Vertex 10989 12.8794 -11.7767 -3.84397 Vertex 10990 12.8946 -14.234 -2.34105 Vertex 10991 12.9147 -11.9981 -1.21193 Vertex 10992 12.9266 2.4349 -3.41759 Vertex 10993 12.9371 -15.0637 -2.12628 Vertex 10994 12.9428 -15.6583 -2.00614 Vertex 10995 12.9517 -11.6649 -3.32659 Vertex 10996 12.9518 1.49059 -3.34286 Vertex 10997 12.9539 -14.8624 -0.299966 Vertex 10998 12.9552 -14.1652 -1.71735 Vertex 10999 12.9612 1.48173 -3.83178 Vertex 11000 12.9654 -14.464 0.248668 Vertex 11001 12.9673 0.674524 -3.07725 Vertex 11002 12.9736 -15.3536 -0.105384 Vertex 11003 12.9762 -15.0122 0.408439 Vertex 11004 13.0045 -12.4813 -3.31957 Vertex 11005 13.0145 -15.0787 -1.15939 Vertex 11006 13.0201 -2.18379 -4.40473 Vertex 11007 13.0205 -13.9035 -0.549554 Vertex 11008 13.0209 -2.1583 -1.83543 Vertex 11009 13.0305 -14.9534 -0.544583 Vertex 11010 13.0341 -11.1979 -1.72699 Vertex 11011 13.0428 -15.5527 -1.06836 Vertex 11012 13.0434 2.38388 -3.19151 Vertex 11013 13.0529 -11.5229 -2.84846 Vertex 11014 13.0574 -0.446797 -3.10432 Vertex 11015 13.0607 -15.4069 -0.42389 Vertex 11016 13.0692 -12.1111 -1.60546 Vertex 11017 13.0708 0.653736 -3.52864 Vertex 11018 13.0808 -2.15287 -5.042 Vertex 11019 13.0882 1.50948 -3.18203 Vertex 11020 13.0885 -12.4209 -2.7996 Vertex 11021 13.0964 -11.6413 -3.40508 Vertex 11022 13.1091 -14.0454 -1.09586 Vertex 11023 13.1247 -0.384085 -3.65645 Vertex 11024 13.1601 -11.3579 -2.28557 Vertex 11025 13.1636 -14.9335 -0.873964 Vertex 11026 13.1823 -15.4512 -0.749206 Vertex 11027 13.1866 -12.2705 -2.19852 Vertex 11028 13.2132 -3.96835 -1.02144 Vertex 11029 13.2273 -3.91312 -1.28873 Vertex 11030 13.2365 -11.1051 -1.65732 Vertex 11031 13.2647 -2.13805 -2.53271 Vertex 11032 13.2755 -3.92045 -4.90121 Vertex 11033 13.3284 -2.1332 -3.24909 Vertex 11034 13.3528 -11.4309 -2.78944 Vertex 11035 13.5719 -3.94771 -5.17191 Vertex 11036 13.5736 -2.10811 -3.96817 Vertex 11037 13.574 -3.92145 -4.38341 Vertex 11038 13.778 -3.86076 -2.16002 Vertex 11039 13.8829 -3.91081 -1.81014 Vertex 11040 13.8939 -3.86429 -3.88233 Vertex 11041 13.8998 -3.85809 -3.18274 Vertex 11042 13.9084 -3.91663 -4.65365 Vertex 11043 14.2093 -3.88703 -3.73767 Vertex 11044 14.2166 -3.8585 -2.81153 Vertex 11045 -1.19839 20.6779 2.10525 Vertex 11046 -1.40496 20.6442 2.05447 Vertex 11047 -1.60387 20.5777 2.00557 Vertex 11048 -1.79022 20.4799 1.95976 Vertex 11049 -1.95942 20.3533 1.91816 Vertex 11050 -2.10731 20.201 1.88181 Vertex 11051 -2.23024 20.0268 1.8516 Vertex 11052 -2.3252 19.8349 1.82826 Vertex 11053 -2.38983 19.63 1.81237 Vertex 11054 -2.42254 19.4173 1.80433 Vertex 11055 -2.42254 19.2019 1.80434 Vertex 11056 -2.38983 18.9892 1.81239 Vertex 11057 -2.3252 18.7844 1.82828 Vertex 11058 -2.23025 18.5925 1.85163 Vertex 11059 -2.10732 18.4183 1.88186 Vertex 11060 -1.95943 18.266 1.91822 Vertex 11061 -1.79023 18.1394 1.95982 Vertex 11062 -1.60388 18.0416 2.00563 Vertex 11063 -1.40497 17.975 2.05453 Vertex 11064 -1.1984 17.9413 2.10532 Vertex 11065 -0.989257 17.9413 2.15673 Vertex 11066 -0.782686 17.975 2.20752 Vertex 11067 -0.583777 18.0416 2.25641 Vertex 11068 -0.397427 18.1394 2.30222 Vertex 11069 -0.228224 18.266 2.34382 Vertex 11070 -0.080335 18.4183 2.38017 Vertex 11071 0.0425985 18.5925 2.41038 Vertex 11072 0.137549 18.7844 2.43372 Vertex 11073 0.20218 18.9892 2.44961 Vertex 11074 0.234899 19.2019 2.45764 Vertex 11075 0.234899 19.4173 2.45764 Vertex 11076 0.202183 19.63 2.44959 Vertex 11077 0.137555 19.8349 2.4337 Vertex 11078 0.0426062 20.0268 2.41035 Vertex 11079 -0.0803252 20.201 2.38012 Vertex 11080 -0.228213 20.3533 2.34376 Vertex 11081 -0.397415 20.4799 2.30216 Vertex 11082 -0.583764 20.5777 2.25635 Vertex 11083 -0.782672 20.6442 2.20745 Vertex 11084 -0.989243 20.6779 2.15666 Vertex 11085 -1.24691 20.6442 2.31373 Vertex 11086 -1.4484 20.6114 2.2642 Vertex 11087 -1.64241 20.5464 2.2165 Vertex 11088 -1.82417 20.4511 2.17182 Vertex 11089 -1.98921 20.3276 2.13126 Vertex 11090 -2.13345 20.1791 2.09579 Vertex 11091 -2.25336 20.0091 2.06632 Vertex 11092 -2.34597 19.8219 2.04356 Vertex 11093 -2.40901 19.6222 2.02807 Vertex 11094 -2.44092 19.4146 2.02023 Vertex 11095 -2.44092 19.2046 2.02023 Vertex 11096 -2.40901 18.9971 2.02808 Vertex 11097 -2.34598 18.7973 2.04359 Vertex 11098 -2.25337 18.6102 2.06636 Vertex 11099 -2.13346 18.4402 2.09584 Vertex 11100 -1.98922 18.2917 2.13131 Vertex 11101 -1.82418 18.1682 2.17188 Vertex 11102 -1.64242 18.0728 2.21657 Vertex 11103 -1.44841 18.0079 2.26427 Vertex 11104 -1.24693 17.9751 2.3138 Vertex 11105 -1.04293 17.9751 2.36395 Vertex 11106 -0.841445 18.0079 2.41348 Vertex 11107 -0.647434 18.0728 2.46117 Vertex 11108 -0.465672 18.1682 2.50586 Vertex 11109 -0.300636 18.2917 2.54642 Vertex 11110 -0.156389 18.4402 2.58188 Vertex 11111 -0.036482 18.6101 2.61136 Vertex 11112 0.0561313 18.7973 2.63412 Vertex 11113 0.11917 18.9971 2.64961 Vertex 11114 0.151083 19.2046 2.65745 Vertex 11115 0.151085 19.4146 2.65744 Vertex 11116 0.119174 19.6222 2.6496 Vertex 11117 0.0561367 19.822 2.63409 Vertex 11118 -0.036474 20.0091 2.61132 Vertex 11119 -0.156378 20.1791 2.58184 Vertex 11120 -0.300624 20.3276 2.54637 Vertex 11121 -0.46566 20.4511 2.5058 Vertex 11122 -0.647421 20.5464 2.46111 Vertex 11123 -0.841432 20.6114 2.41341 Vertex 11124 -1.04291 20.6442 2.36388 Vertex 11125 -1.29103 20.5777 2.51512 Vertex 11126 -1.48247 20.5465 2.46806 Vertex 11127 -1.6668 20.4848 2.42274 Vertex 11128 -1.8395 20.3941 2.3803 Vertex 11129 -1.9963 20.2768 2.34175 Vertex 11130 -2.13336 20.1357 2.30805 Vertex 11131 -2.24729 19.9743 2.28005 Vertex 11132 -2.33528 19.7964 2.25843 Vertex 11133 -2.39517 19.6066 2.24371 Vertex 11134 -2.4255 19.4094 2.23626 Vertex 11135 -2.4255 19.2099 2.23626 Vertex 11136 -2.39518 19.0127 2.24372 Vertex 11137 -2.33529 18.8229 2.25845 Vertex 11138 -2.24729 18.645 2.28009 Vertex 11139 -2.13336 18.4835 2.3081 Vertex 11140 -1.99631 18.3424 2.34179 Vertex 11141 -1.83951 18.2252 2.38035 Vertex 11142 -1.66681 18.1345 2.42281 Vertex 11143 -1.48248 18.0728 2.46813 Vertex 11144 -1.29104 18.0416 2.51519 Vertex 11145 -1.09722 18.0416 2.56284 Vertex 11146 -0.905782 18.0728 2.6099 Vertex 11147 -0.721445 18.1345 2.65522 Vertex 11148 -0.548747 18.2252 2.69767 Vertex 11149 -0.391941 18.3424 2.73622 Vertex 11150 -0.254887 18.4836 2.7699 Vertex 11151 -0.14096 18.6451 2.79791 Vertex 11152 -0.0529655 18.8229 2.81953 Vertex 11153 0.00693 19.0127 2.83425 Vertex 11154 0.0372512 19.2099 2.84171 Vertex 11155 0.0372528 19.4094 2.8417 Vertex 11156 0.00693325 19.6066 2.83424 Vertex 11157 -0.0529603 19.7964 2.81951 Vertex 11158 -0.140953 19.9743 2.79787 Vertex 11159 -0.254878 20.1357 2.76986 Vertex 11160 -0.391931 20.2768 2.73617 Vertex 11161 -0.548736 20.3941 2.69761 Vertex 11162 -0.721432 20.4848 2.65516 Vertex 11163 -0.905768 20.5465 2.60984 Vertex 11164 -1.0972 20.5777 2.56277 Vertex 11165 -1.32965 20.4799 2.70446 Vertex 11166 -1.50633 20.4511 2.66103 Vertex 11167 -1.67645 20.3941 2.61921 Vertex 11168 -1.83583 20.3105 2.58003 Vertex 11169 -1.98055 20.2022 2.54446 Vertex 11170 -2.10703 20.072 2.51337 Vertex 11171 -2.21217 19.923 2.48752 Vertex 11172 -2.29338 19.7589 2.46756 Vertex 11173 -2.34866 19.5837 2.45398 Vertex 11174 -2.37665 19.4018 2.44711 Vertex 11175 -2.37665 19.2176 2.44711 Vertex 11176 -2.34866 19.0356 2.45399 Vertex 11177 -2.29339 18.8604 2.46759 Vertex 11178 -2.21218 18.6963 2.48756 Vertex 11179 -2.10704 18.5473 2.5134 Vertex 11180 -1.98055 18.417 2.5445 Vertex 11181 -1.83584 18.3088 2.58009 Vertex 11182 -1.67646 18.2251 2.61927 Vertex 11183 -1.50634 18.1682 2.6611 Vertex 11184 -1.32967 18.1394 2.70453 Vertex 11185 -1.15079 18.1394 2.7485 Vertex 11186 -0.974112 18.1682 2.79193 Vertex 11187 -0.803988 18.2252 2.83376 Vertex 11188 -0.644607 18.3088 2.87294 Vertex 11189 -0.499892 18.417 2.90851 Vertex 11190 -0.373406 18.5473 2.9396 Vertex 11191 -0.268264 18.6963 2.96545 Vertex 11192 -0.187055 18.8604 2.9854 Vertex 11193 -0.131778 19.0356 2.99899 Vertex 11194 -0.103795 19.2176 3.00587 Vertex 11195 -0.103794 19.4018 3.00586 Vertex 11196 -0.131775 19.5837 2.99898 Vertex 11197 -0.18705 19.7589 2.98538 Vertex 11198 -0.268258 19.923 2.96541 Vertex 11199 -0.373398 20.072 2.93956 Vertex 11200 -0.499883 20.2022 2.90846 Vertex 11201 -0.644597 20.3105 2.87289 Vertex 11202 -0.803977 20.3941 2.8337 Vertex 11203 -0.974099 20.4511 2.79188 Vertex 11204 -1.15078 20.4799 2.74844 Vertex 11205 -1.36183 20.3533 2.8771 Vertex 11206 -1.51939 20.3276 2.83836 Vertex 11207 -1.67111 20.2768 2.80107 Vertex 11208 -1.81325 20.2023 2.76613 Vertex 11209 -1.94231 20.1057 2.7344 Vertex 11210 -2.05512 19.9895 2.70667 Vertex 11211 -2.14889 19.8567 2.68362 Vertex 11212 -2.22131 19.7103 2.66582 Vertex 11213 -2.27061 19.5541 2.65371 Vertex 11214 -2.29557 19.3918 2.64758 Vertex 11215 -2.29557 19.2275 2.64758 Vertex 11216 -2.27061 19.0653 2.65372 Vertex 11217 -2.22131 18.909 2.66584 Vertex 11218 -2.14889 18.7627 2.68365 Vertex 11219 -2.05512 18.6297 2.70671 Vertex 11220 -1.94232 18.5136 2.73444 Vertex 11221 -1.81326 18.417 2.76617 Vertex 11222 -1.67112 18.3425 2.80112 Vertex 11223 -1.51941 18.2917 2.83842 Vertex 11224 -1.36184 18.266 2.87715 Vertex 11225 -1.20231 18.266 2.91637 Vertex 11226 -1.04475 18.2917 2.95511 Vertex 11227 -0.89303 18.3425 2.9924 Vertex 11228 -0.750892 18.417 3.02734 Vertex 11229 -0.621831 18.5136 3.05906 Vertex 11230 -0.509028 18.6298 3.0868 Vertex 11231 -0.41526 18.7627 3.10984 Vertex 11232 -0.342835 18.909 3.12765 Vertex 11233 -0.293538 19.0653 3.13976 Vertex 11234 -0.268581 19.2275 3.1459 Vertex 11235 -0.26858 19.3918 3.14589 Vertex 11236 -0.293535 19.5541 3.13975 Vertex 11237 -0.342831 19.7103 3.12762 Vertex 11238 -0.415254 19.8567 3.10982 Vertex 11239 -0.509021 19.9895 3.08676 Vertex 11240 -0.621823 20.1057 3.05903 Vertex 11241 -0.750882 20.2022 3.0273 Vertex 11242 -0.893021 20.2768 2.99235 Vertex 11243 -1.04474 20.3276 2.95505 Vertex 11244 -1.20231 20.3533 2.91632 Vertex 11245 -1.38678 20.201 3.02877 Vertex 11246 -1.52135 20.1791 2.99569 Vertex 11247 -1.65093 20.1357 2.96383 Vertex 11248 -1.77233 20.072 2.93399 Vertex 11249 -1.88256 19.9895 2.90689 Vertex 11250 -1.9789 19.8904 2.88321 Vertex 11251 -2.05899 19.7768 2.86352 Vertex 11252 -2.12084 19.6518 2.84832 Vertex 11253 -2.16295 19.5184 2.83797 Vertex 11254 -2.18426 19.3798 2.83274 Vertex 11255 -2.18426 19.2395 2.83274 Vertex 11256 -2.16295 19.1009 2.83799 Vertex 11257 -2.12084 18.9675 2.84834 Vertex 11258 -2.05898 18.8425 2.86355 Vertex 11259 -1.9789 18.729 2.88324 Vertex 11260 -1.88256 18.6297 2.90693 Vertex 11261 -1.77233 18.5473 2.93403 Vertex 11262 -1.65093 18.4836 2.96387 Vertex 11263 -1.52135 18.4403 2.99573 Vertex 11264 -1.38678 18.4183 3.02882 Vertex 11265 -1.25054 18.4183 3.06231 Vertex 11266 -1.11596 18.4403 3.0954 Vertex 11267 -0.986382 18.4836 3.12725 Vertex 11268 -0.864983 18.5473 3.15709 Vertex 11269 -0.754755 18.6297 3.18418 Vertex 11270 -0.658412 18.729 3.20786 Vertex 11271 -0.578326 18.8425 3.22755 Vertex 11272 -0.51647 18.9675 3.24275 Vertex 11273 -0.474366 19.1009 3.2531 Vertex 11274 -0.453051 19.2395 3.25834 Vertex 11275 -0.453051 19.3798 3.25834 Vertex 11276 -0.474364 19.5184 3.2531 Vertex 11277 -0.516466 19.6518 3.24274 Vertex 11278 -0.578321 19.7768 3.22753 Vertex 11279 -0.658406 19.8904 3.20784 Vertex 11280 -0.754748 19.9896 3.18415 Vertex 11281 -0.864975 20.072 3.15705 Vertex 11282 -0.986373 20.1357 3.1272 Vertex 11283 -1.11595 20.1791 3.09535 Vertex 11284 -1.25052 20.201 3.06226 Vertex 11285 -1.40387 20.0268 3.15574 Vertex 11286 -1.51214 20.0091 3.12913 Vertex 11287 -1.61639 19.9743 3.1035 Vertex 11288 -1.71405 19.923 3.07949 Vertex 11289 -1.80274 19.8567 3.05769 Vertex 11290 -1.88024 19.7768 3.03864 Vertex 11291 -1.94468 19.6855 3.0228 Vertex 11292 -1.99444 19.5849 3.01057 Vertex 11293 -2.02832 19.4776 3.00224 Vertex 11294 -2.04546 19.3661 2.99803 Vertex 11295 -2.04546 19.2533 2.99803 Vertex 11296 -2.02832 19.1417 3.00225 Vertex 11297 -1.99444 19.0344 3.01058 Vertex 11298 -1.94468 18.9338 3.02282 Vertex 11299 -1.88025 18.8425 3.03866 Vertex 11300 -1.80274 18.7627 3.05772 Vertex 11301 -1.71406 18.6963 3.07952 Vertex 11302 -1.61639 18.6451 3.10353 Vertex 11303 -1.51214 18.6102 3.12916 Vertex 11304 -1.40387 18.5925 3.15578 Vertex 11305 -1.29426 18.5925 3.18273 Vertex 11306 -1.18599 18.6102 3.20934 Vertex 11307 -1.08174 18.6451 3.23497 Vertex 11308 -0.984073 18.6963 3.25898 Vertex 11309 -0.895391 18.7627 3.28078 Vertex 11310 -0.81788 18.8425 3.29983 Vertex 11311 -0.753449 18.9338 3.31567 Vertex 11312 -0.703684 19.0344 3.3279 Vertex 11313 -0.669811 19.1417 3.33622 Vertex 11314 -0.652662 19.2533 3.34044 Vertex 11315 -0.652662 19.3661 3.34044 Vertex 11316 -0.669809 19.4776 3.33622 Vertex 11317 -0.703681 19.5849 3.32789 Vertex 11318 -0.753446 19.6855 3.31565 Vertex 11319 -0.817876 19.7768 3.29981 Vertex 11320 -0.895385 19.8567 3.28075 Vertex 11321 -0.984066 19.923 3.25895 Vertex 11322 -1.08174 19.9743 3.23493 Vertex 11323 -1.18599 20.0091 3.2093 Vertex 11324 -1.29425 20.0268 3.18268 Vertex 11325 -1.41269 19.8349 3.25489 Vertex 11326 -1.49199 19.822 3.23539 Vertex 11327 -1.56834 19.7964 3.21663 Vertex 11328 -1.63987 19.7589 3.19904 Vertex 11329 -1.70482 19.7103 3.18307 Vertex 11330 -1.76159 19.6518 3.16912 Vertex 11331 -1.80879 19.5849 3.15752 Vertex 11332 -1.84523 19.5113 3.14856 Vertex 11333 -1.87004 19.4327 3.14246 Vertex 11334 -1.8826 19.351 3.13938 Vertex 11335 -1.8826 19.2684 3.13938 Vertex 11336 -1.87005 19.1867 3.14247 Vertex 11337 -1.84523 19.108 3.14857 Vertex 11338 -1.80879 19.0344 3.15753 Vertex 11339 -1.7616 18.9675 3.16914 Vertex 11340 -1.70483 18.909 3.18309 Vertex 11341 -1.63988 18.8604 3.19906 Vertex 11342 -1.56835 18.8229 3.21665 Vertex 11343 -1.49199 18.7973 3.23542 Vertex 11344 -1.41269 18.7845 3.25492 Vertex 11345 -1.33241 18.7845 3.27465 Vertex 11346 -1.25311 18.7974 3.29415 Vertex 11347 -1.17676 18.8229 3.31292 Vertex 11348 -1.10523 18.8605 3.3305 Vertex 11349 -1.04028 18.909 3.34647 Vertex 11350 -0.983506 18.9675 3.36042 Vertex 11351 -0.936315 19.0344 3.37202 Vertex 11352 -0.899868 19.108 3.38098 Vertex 11353 -0.875059 19.1867 3.38708 Vertex 11354 -0.862499 19.2684 3.39016 Vertex 11355 -0.862498 19.351 3.39016 Vertex 11356 -0.875057 19.4327 3.38707 Vertex 11357 -0.899867 19.5113 3.38097 Vertex 11358 -0.936314 19.5849 3.37201 Vertex 11359 -0.983502 19.6519 3.3604 Vertex 11360 -1.04027 19.7103 3.34645 Vertex 11361 -1.10522 19.7589 3.33048 Vertex 11362 -1.17676 19.7964 3.31289 Vertex 11363 -1.25311 19.822 3.29412 Vertex 11364 -1.33241 19.8349 3.27463 Vertex 11365 -1.41302 19.6301 3.32377 Vertex 11366 -1.4614 19.6222 3.31188 Vertex 11367 -1.50797 19.6066 3.30043 Vertex 11368 -1.55161 19.5837 3.28971 Vertex 11369 -1.59123 19.5541 3.27996 Vertex 11370 -1.62586 19.5184 3.27145 Vertex 11371 -1.65465 19.4776 3.26437 Vertex 11372 -1.67689 19.4327 3.25891 Vertex 11373 -1.69202 19.3847 3.25519 Vertex 11374 -1.69968 19.3349 3.25331 Vertex 11375 -1.69968 19.2845 3.25331 Vertex 11376 -1.69202 19.2346 3.25519 Vertex 11377 -1.67689 19.1867 3.25892 Vertex 11378 -1.65465 19.1418 3.26438 Vertex 11379 -1.62586 19.101 3.27146 Vertex 11380 -1.59123 19.0653 3.27998 Vertex 11381 -1.55161 19.0356 3.28972 Vertex 11382 -1.50798 19.0127 3.30045 Vertex 11383 -1.4614 18.9972 3.3119 Vertex 11384 -1.41303 18.9893 3.32379 Vertex 11385 -1.36405 18.9893 3.33583 Vertex 11386 -1.31568 18.9972 3.34772 Vertex 11387 -1.2691 19.0128 3.35917 Vertex 11388 -1.22547 19.0357 3.3699 Vertex 11389 -1.18584 19.0653 3.37964 Vertex 11390 -1.15121 19.1009 3.38815 Vertex 11391 -1.12242 19.1418 3.39523 Vertex 11392 -1.10019 19.1867 3.40069 Vertex 11393 -1.08506 19.2347 3.40441 Vertex 11394 -1.07739 19.2845 3.40629 Vertex 11395 -1.07739 19.3349 3.40629 Vertex 11396 -1.08506 19.3847 3.40441 Vertex 11397 -1.10019 19.4327 3.40068 Vertex 11398 -1.12242 19.4776 3.39522 Vertex 11399 -1.15121 19.5184 3.38814 Vertex 11400 -1.18584 19.5541 3.37963 Vertex 11401 -1.22546 19.5837 3.36988 Vertex 11402 -1.2691 19.6066 3.35916 Vertex 11403 -1.31568 19.6222 3.3477 Vertex 11404 -1.36405 19.6301 3.33581 Vertex 11405 -0.684054 23.1287 -3.57245 Vertex 11406 -0.692466 22.619 -3.98325 Vertex 11407 -0.687493 22.2477 -3.42871 Vertex 11408 -0.0415558 22.2558 -3.54813 Vertex 11409 0.677199 23.183 -3.54535 Vertex 11410 0.692466 22.619 -3.98325 Vertex 11411 0.640048 22.1792 -3.44902 Vertex 11412 -0.76623 22.4588 -3.21771 Vertex 11413 -0.385463 22.8297 -3.0251 Vertex 11414 -0.33765 22.2301 -3.53679 Vertex 11415 0 22.4433 -3.73565 Vertex 11416 -0.38394 22.5938 -4.03724 Vertex 11417 -0.625824 22.4685 -3.63796 Vertex 11418 -0.624818 22.8952 -3.3034 Vertex 11419 -0.378089 23.2593 -3.54019 Vertex 11420 0 23.0389 -3.29277 Vertex 11421 -0.810103 22.8865 -3.73747 Vertex 11422 0.76623 22.4588 -3.21771 Vertex 11423 0.385463 22.8297 -3.0251 Vertex 11424 0.38394 22.5938 -4.03724 Vertex 11425 0.337649 22.23 -3.53679 Vertex 11426 0.625824 22.4685 -3.63796 Vertex 11427 0.378089 23.2593 -3.54019 Vertex 11428 0.624818 22.8952 -3.3034 Vertex 11429 0.810103 22.8865 -3.73747 Vertex 11430 -0.673386 22.7007 -3.05125 Vertex 11431 0 22.866 -3.0471 Vertex 11432 0.673386 22.7007 -3.05125 Vertex 11433 0 22.6089 -4.05595 Vertex 11434 -3.72529e-009 23.2868 -3.56044 Vertex 11435 0.714653 22.67 -3.46198 Vertex 11436 0.356924 23.0095 -3.27467 Vertex 11437 0.357729 22.4254 -3.71892 Vertex 11438 -0.714653 22.67 -3.46198 Vertex 11439 -0.356924 23.0095 -3.27467 Vertex 11440 -0.357729 22.4254 -3.71892 Vertex 11441 -2.66578 20.6117 2.16856 Vertex 11442 -2.76691 20.4022 1.8246 Vertex 11443 -2.63319 20.7068 2.11864 Vertex 11444 -2.49571 20.8802 2.52203 Vertex 11445 -2.85132 20.167 1.6385 Vertex 11446 -2.84012 20.1847 1.59264 Vertex 11447 -0.69513 19.9744 4.01607 Vertex 11448 -0.863314 20.1709 4.00316 Vertex 11449 -0.664025 20.1457 4.04774 Vertex 11450 -0.537647 19.9918 4.04943 Vertex 11451 -2.32255 20.8138 2.90698 Vertex 11452 -2.26484 20.9628 2.86371 Vertex 11453 -2.06926 20.818 3.19146 Vertex 11454 -1.85614 20.6098 3.42771 Vertex 11455 -1.81523 20.8091 3.35957 Vertex 11456 -1.61016 20.6145 3.55039 Vertex 11457 -1.40971 20.3794 3.73387 Vertex 11458 -1.40086 20.5953 3.6776 Vertex 11459 -1.22044 20.3828 3.84692 Vertex 11460 -1.04282 20.1582 3.93308 Vertex 11461 -1.03238 20.3718 3.93964 Vertex 11462 -2.78256 20.3207 1.88041 Vertex 11463 -2.85313 20.1103 1.6533 Vertex 11464 -2.53622 20.7245 2.56913 Vertex 11465 -2.68135 20.4899 2.21817 Vertex 11466 -2.13403 20.6081 3.23963 Vertex 11467 -2.36986 20.6224 2.94431 Vertex 11468 -1.63898 20.376 3.61996 Vertex 11469 -1.90978 20.3908 3.47482 Vertex 11470 -1.22479 20.15 3.86087 Vertex 11471 -1.42936 20.161 3.76451 Vertex 11472 -0.876979 19.9519 3.96102 Vertex 11473 -1.04819 19.949 3.90444 Vertex 11474 -0.582945 19.8469 3.99275 Vertex 11475 -0.720578 19.8178 3.95128 Vertex 11476 -2.7215 20.4188 1.77103 Vertex 11477 -2.75646 20.2368 1.89482 Vertex 11478 -2.52689 20.5876 2.58909 Vertex 11479 -2.15416 20.4379 3.24185 Vertex 11480 -1.65539 20.2043 3.62363 Vertex 11481 -1.22283 19.9925 3.82446 Vertex 11482 -0.883656 19.8181 3.88499 Vertex 11483 -0.594036 19.7851 3.92536 Vertex 11484 -0.502725 20.0721 4.03713 Vertex 11485 -0.829441 20.3224 3.98973 Vertex 11486 -1.1872 20.5283 3.79954 Vertex 11487 -1.57546 20.7587 3.46463 Vertex 11488 -2.0012 20.9263 3.13053 Vertex 11489 -2.43337 20.9493 2.4784 Vertex 11490 2.63319 20.7068 2.11864 Vertex 11491 2.76691 20.4022 1.82461 Vertex 11492 2.66578 20.6117 2.16856 Vertex 11493 2.49571 20.8802 2.52203 Vertex 11494 2.84012 20.1847 1.59264 Vertex 11495 2.85132 20.167 1.6385 Vertex 11496 0.664024 20.1457 4.04774 Vertex 11497 0.863314 20.1709 4.00316 Vertex 11498 0.69513 19.9745 4.01607 Vertex 11499 0.537647 19.9918 4.04943 Vertex 11500 2.26484 20.9628 2.86371 Vertex 11501 2.32255 20.8138 2.90698 Vertex 11502 2.06926 20.818 3.19146 Vertex 11503 1.81523 20.8091 3.35957 Vertex 11504 1.85614 20.6098 3.42771 Vertex 11505 1.61016 20.6145 3.55039 Vertex 11506 1.40086 20.5953 3.6776 Vertex 11507 1.40971 20.3794 3.73387 Vertex 11508 1.22044 20.3828 3.84692 Vertex 11509 1.03238 20.3718 3.93963 Vertex 11510 1.04282 20.1582 3.93308 Vertex 11511 2.78256 20.3207 1.88041 Vertex 11512 2.85313 20.1103 1.6533 Vertex 11513 2.68135 20.4899 2.21817 Vertex 11514 2.53622 20.7245 2.56913 Vertex 11515 2.36986 20.6224 2.94431 Vertex 11516 2.13403 20.6082 3.23963 Vertex 11517 1.90978 20.3908 3.47482 Vertex 11518 1.63898 20.376 3.61996 Vertex 11519 1.42936 20.161 3.7645 Vertex 11520 1.22479 20.15 3.86087 Vertex 11521 1.04819 19.949 3.90444 Vertex 11522 0.87698 19.9519 3.96102 Vertex 11523 0.720578 19.8178 3.95128 Vertex 11524 0.582945 19.8469 3.99275 Vertex 11525 2.7215 20.4188 1.77104 Vertex 11526 2.75646 20.2368 1.89482 Vertex 11527 2.52689 20.5876 2.58909 Vertex 11528 2.15416 20.4379 3.24185 Vertex 11529 1.65539 20.2043 3.62363 Vertex 11530 1.22283 19.9925 3.82446 Vertex 11531 0.883656 19.8181 3.88499 Vertex 11532 0.594036 19.785 3.92536 Vertex 11533 0.505967 19.9009 4.00313 Vertex 11534 0.502725 20.0721 4.03713 Vertex 11535 0.829441 20.3224 3.98973 Vertex 11536 1.1872 20.5283 3.79954 Vertex 11537 1.57546 20.7587 3.46463 Vertex 11538 2.0012 20.9263 3.13052 Vertex 11539 2.43337 20.9493 2.4784 Vertex 11540 -0.869125 20.0595 3.98277 Vertex 11541 -1.22132 20.2663 3.85434 Vertex 11542 -1.61799 20.4949 3.58667 Vertex 11543 -2.09928 20.7181 3.21511 Vertex 11544 -2.51501 20.808 2.54443 Vertex 11545 -2.7743 20.3625 1.85213 Vertex 11546 -2.75344 20.4218 1.79394 Vertex 11547 -2.87969 20.0558 1.53431 Vertex 11548 -2.78173 20.2745 1.89463 Vertex 11549 -2.54496 20.6457 2.58705 Vertex 11550 -2.15761 20.5081 3.25267 Vertex 11551 -1.65686 20.2739 3.63677 Vertex 11552 -1.22668 20.0526 3.85481 Vertex 11553 -0.883087 19.8656 3.9308 Vertex 11554 -0.560768 19.917 4.02539 Vertex 11555 -0.852451 20.2654 4.00965 Vertex 11556 -1.21234 20.4775 3.83114 Vertex 11557 -1.60085 20.7106 3.51006 Vertex 11558 -2.03842 20.8925 3.16462 Vertex 11559 -2.47094 20.9307 2.5005 Vertex 11560 0.869125 20.0595 3.98277 Vertex 11561 1.22132 20.2663 3.85434 Vertex 11562 1.61799 20.4949 3.58667 Vertex 11563 2.09928 20.7181 3.21511 Vertex 11564 2.51501 20.808 2.54443 Vertex 11565 2.7743 20.3625 1.85213 Vertex 11566 2.75344 20.4219 1.79394 Vertex 11567 2.87969 20.0557 1.53431 Vertex 11568 2.78173 20.2745 1.89463 Vertex 11569 2.54496 20.6457 2.58705 Vertex 11570 2.15761 20.5081 3.25267 Vertex 11571 1.65686 20.2739 3.63676 Vertex 11572 1.22668 20.0526 3.85481 Vertex 11573 0.883087 19.8656 3.9308 Vertex 11574 0.560768 19.917 4.02539 Vertex 11575 0.852451 20.2654 4.00965 Vertex 11576 1.21234 20.4775 3.83114 Vertex 11577 1.60085 20.7106 3.51006 Vertex 11578 2.03842 20.8925 3.16462 Vertex 11579 2.47094 20.9307 2.5005 Vertex 11580 2.59682 20.7197 2.09883 Vertex 11581 2.22624 20.9886 2.83651 Vertex 11582 1.784 20.8511 3.31781 Vertex 11583 1.37639 20.645 3.63724 Vertex 11584 1.00826 20.427 3.91543 Vertex 11585 0.640608 20.1955 4.02728 Vertex 11586 0.476765 19.9776 4.02831 Vertex 11587 0.533571 19.8309 3.96394 Vertex 11588 0.721816 19.7813 3.90203 Vertex 11589 1.0463 19.8943 3.8653 Vertex 11590 1.42631 20.0956 3.74399 Vertex 11591 1.90871 20.3195 3.46313 Vertex 11592 2.35965 20.5564 2.93914 Vertex 11593 2.6576 20.4443 2.22577 Vertex 11594 2.82813 20.0753 1.64189 Vertex 11595 2.81232 20.1658 1.56825 Vertex 11596 0.710003 19.8869 3.98789 Vertex 11597 1.04611 20.0433 3.92381 Vertex 11598 1.42041 20.2612 3.75681 Vertex 11599 1.88652 20.4935 3.45859 Vertex 11600 2.35248 20.7147 2.92999 Vertex 11601 2.67962 20.5491 2.19648 Vertex 11602 1.04107 20.2749 3.94194 Vertex 11603 1.40759 20.4988 3.70864 Vertex 11604 1.83582 20.7218 3.39545 Vertex 11605 2.29514 20.9006 2.88604 Vertex 11606 0.681001 20.0664 4.04001 Vertex 11607 2.65324 20.6676 2.14225 Vertex 11608 -2.59682 20.7197 2.09883 Vertex 11609 -2.22624 20.9886 2.83651 Vertex 11610 -1.784 20.8511 3.31781 Vertex 11611 -1.37639 20.645 3.63724 Vertex 11612 -1.00826 20.427 3.91543 Vertex 11613 -0.640607 20.1955 4.02728 Vertex 11614 -0.721816 19.7813 3.90203 Vertex 11615 -1.0463 19.8943 3.8653 Vertex 11616 -1.42631 20.0956 3.74399 Vertex 11617 -1.90871 20.3195 3.46313 Vertex 11618 -2.35965 20.5564 2.93914 Vertex 11619 -2.6576 20.4443 2.22577 Vertex 11620 -2.82813 20.0753 1.64189 Vertex 11621 -2.81232 20.1658 1.56825 Vertex 11622 -0.710003 19.8869 3.98789 Vertex 11623 -1.04611 20.0433 3.92381 Vertex 11624 -1.42041 20.2612 3.75681 Vertex 11625 -1.88652 20.4935 3.45859 Vertex 11626 -2.35248 20.7147 2.92999 Vertex 11627 -2.67962 20.5491 2.19648 Vertex 11628 -1.04107 20.2749 3.94194 Vertex 11629 -1.40758 20.4988 3.70864 Vertex 11630 -1.83582 20.7218 3.39545 Vertex 11631 -2.29514 20.9006 2.88605 Vertex 11632 -0.681001 20.0664 4.04001 Vertex 11633 -2.65324 20.6676 2.14225 Vertex 11634 -1.52424 17.0576 3.14812 Vertex 11635 1.52424 17.0576 3.14812 Vertex 11636 -0.178699 16.9162 3.86411 Vertex 11637 0 16.8135 3.87691 Vertex 11638 -0.163356 16.6575 3.83849 Vertex 11639 -0.34258 16.8406 3.80027 Vertex 11640 0 16.4012 3.84259 Vertex 11641 -0.168126 16.1759 3.80774 Vertex 11642 -0.33231 16.4044 3.7722 Vertex 11643 -0.525174 16.9646 3.7363 Vertex 11644 -0.512092 16.6682 3.73546 Vertex 11645 -0.719505 16.8637 3.66006 Vertex 11646 -0.506194 16.1725 3.69076 Vertex 11647 -0.707251 16.393 3.63151 Vertex 11648 -0.959519 17.0167 3.54685 Vertex 11649 -0.965524 16.6523 3.54949 Vertex 11650 -1.21171 16.8826 3.42372 Vertex 11651 -0.925922 16.1264 3.47798 Vertex 11652 -1.18844 16.3457 3.37933 Vertex 11653 -1.39265 17.0597 3.27242 Vertex 11654 -1.42111 16.6469 3.26632 Vertex 11655 -1.557 16.8829 3.13792 Vertex 11656 -1.36389 16.1044 3.21864 Vertex 11657 -1.55628 16.3706 3.118 Vertex 11658 -1.64393 16.1829 3.01745 Vertex 11659 -1.71848 16.4277 2.95564 Vertex 11660 -1.66623 16.6537 3.03018 Vertex 11661 -1.64349 16.8899 3.03441 Vertex 11662 -1.51259 17.1283 3.15739 Vertex 11663 -1.58018 17.0738 3.09354 Vertex 11664 -0.359753 16.9831 3.80914 Vertex 11665 0 16.9353 3.90292 Vertex 11666 -0.718864 17.0331 3.6547 Vertex 11667 -1.19945 17.1045 3.4204 Vertex 11668 -1.72239 16.6851 2.95743 Vertex 11669 -1.71853 16.2217 2.95015 Vertex 11670 -1.52192 16.0476 3.10882 Vertex 11671 -1.15267 16.0123 3.33042 Vertex 11672 -0.693934 16.0739 3.59681 Vertex 11673 -0.339261 16.0934 3.75161 Vertex 11674 0 16.0935 3.83227 Vertex 11675 0.163356 16.6576 3.83849 Vertex 11676 0.178699 16.9162 3.86411 Vertex 11677 0.34258 16.8406 3.80027 Vertex 11678 0.168126 16.1759 3.80774 Vertex 11679 0.33231 16.4044 3.7722 Vertex 11680 0.512092 16.6682 3.73546 Vertex 11681 0.525174 16.9646 3.7363 Vertex 11682 0.719506 16.8637 3.66006 Vertex 11683 0.506194 16.1724 3.69076 Vertex 11684 0.707251 16.393 3.63151 Vertex 11685 0.965524 16.6523 3.54949 Vertex 11686 0.959519 17.0167 3.54685 Vertex 11687 1.21171 16.8826 3.42372 Vertex 11688 0.925922 16.1264 3.47798 Vertex 11689 1.18844 16.3457 3.37932 Vertex 11690 1.42111 16.6469 3.26632 Vertex 11691 1.39265 17.0597 3.27242 Vertex 11692 1.557 16.8829 3.13792 Vertex 11693 1.36389 16.1044 3.21863 Vertex 11694 1.55627 16.3706 3.118 Vertex 11695 1.71848 16.4277 2.95564 Vertex 11696 1.64393 16.1829 3.01745 Vertex 11697 1.66623 16.6537 3.03018 Vertex 11698 1.64349 16.8899 3.03441 Vertex 11699 1.58018 17.0738 3.09354 Vertex 11700 1.51259 17.1283 3.15739 Vertex 11701 0.359753 16.9831 3.80914 Vertex 11702 0.718864 17.0331 3.6547 Vertex 11703 1.19945 17.1045 3.4204 Vertex 11704 1.72239 16.6851 2.95743 Vertex 11705 1.71854 16.2217 2.95015 Vertex 11706 1.52192 16.0476 3.10882 Vertex 11707 1.15267 16.0123 3.33043 Vertex 11708 0.693934 16.0739 3.59681 Vertex 11709 0.339261 16.0934 3.75161 Vertex 11710 -0.332219 16.6642 3.79205 Vertex 11711 0 16.6535 3.85917 Vertex 11712 -0.71814 16.6655 3.65813 Vertex 11713 -1.21345 16.6418 3.41656 Vertex 11714 -1.5759 16.6505 3.12947 Vertex 11715 -0.354667 16.9435 3.80369 Vertex 11716 -0.717647 16.9866 3.6535 Vertex 11717 -1.20109 17.0445 3.41895 Vertex 11718 -1.70648 16.6721 2.97372 Vertex 11719 -1.52799 16.1335 3.11084 Vertex 11720 -1.16031 16.1004 3.34097 Vertex 11721 -0.696097 16.1584 3.60335 Vertex 11722 -0.336706 16.1758 3.75422 Vertex 11723 0 16.1751 3.83201 Vertex 11724 0.332219 16.6642 3.79205 Vertex 11725 0.71814 16.6655 3.65813 Vertex 11726 1.21345 16.6418 3.41655 Vertex 11727 1.5759 16.6505 3.12947 Vertex 11728 0 16.901 3.89258 Vertex 11729 0.354667 16.9435 3.80369 Vertex 11730 0.717647 16.9866 3.6535 Vertex 11731 1.20109 17.0445 3.41896 Vertex 11732 1.70648 16.6721 2.97372 Vertex 11733 1.52799 16.1335 3.11084 Vertex 11734 1.16031 16.1004 3.34097 Vertex 11735 0.696097 16.1584 3.60335 Vertex 11736 0.336706 16.1758 3.75422 Vertex 11737 0.170004 16.0941 3.80702 Vertex 11738 0.507027 16.0892 3.68638 Vertex 11739 0.920616 16.04 3.46839 Vertex 11740 1.3557 16.0159 3.2122 Vertex 11741 1.64356 16.1044 3.01536 Vertex 11742 1.74478 16.4352 2.93151 Vertex 11743 1.65148 16.9116 3.02586 Vertex 11744 1.3887 17.1217 3.27436 Vertex 11745 0.95928 17.0703 3.54782 Vertex 11746 0.528859 17.007 3.73914 Vertex 11747 0.18203 16.9524 3.87273 Vertex 11748 1.65981 16.4015 3.0201 Vertex 11749 1.39541 16.3495 3.24243 Vertex 11750 1.41182 16.8925 3.27303 Vertex 11751 0.946575 16.367 3.51461 Vertex 11752 0.965721 16.8732 3.55383 Vertex 11753 0.5079 16.4033 3.71323 Vertex 11754 0.518718 16.8534 3.73911 Vertex 11755 0.164267 16.4027 3.82085 Vertex 11756 0.170321 16.8233 3.85281 Vertex 11757 -0.170004 16.0941 3.80702 Vertex 11758 -0.507027 16.0892 3.68638 Vertex 11759 -0.920616 16.04 3.46839 Vertex 11760 -1.3557 16.0159 3.2122 Vertex 11761 -1.64356 16.1044 3.01536 Vertex 11762 -1.74478 16.4352 2.93151 Vertex 11763 -1.65148 16.9115 3.02586 Vertex 11764 -1.3887 17.1217 3.27436 Vertex 11765 -0.959279 17.0703 3.54782 Vertex 11766 -0.528859 17.007 3.73914 Vertex 11767 -0.18203 16.9524 3.87273 Vertex 11768 -1.65981 16.4015 3.0201 Vertex 11769 -1.39541 16.3495 3.24243 Vertex 11770 -1.41182 16.8925 3.27303 Vertex 11771 -0.946575 16.367 3.51461 Vertex 11772 -0.965721 16.8732 3.55383 Vertex 11773 -0.5079 16.4033 3.71323 Vertex 11774 -0.518718 16.8534 3.73911 Vertex 11775 -0.164267 16.4027 3.82085 Vertex 11776 -0.170321 16.8233 3.8528 Vertex 11777 -1.41995 21.6287 -3.30933 Vertex 11778 -2.82788 18.6362 -1.85872 Vertex 11779 -3.22343 20.9112 -1.29261 Vertex 11780 -1.24334 22.5052 -2.81453 Vertex 11781 0 21.9438 -3.91011 Vertex 11782 -3.14399 20.8725 -0.319884 Vertex 11783 -3.04858 19.9683 0.82904 Vertex 11784 -2.96697 18.3531 1.16702 Vertex 11785 -3.00634 18.0555 0.924601 Vertex 11786 1.41995 21.6287 -3.30933 Vertex 11787 2.84972 18.5355 -1.8975 Vertex 11788 3.22343 20.9112 -1.29261 Vertex 11789 1.24334 22.5052 -2.81453 Vertex 11790 -7.45058e-009 15.7605 -3.92037 Vertex 11791 3.14399 20.8726 -0.319884 Vertex 11792 3.04858 19.9683 0.82904 Vertex 11793 2.96697 18.3531 1.16702 Vertex 11794 3.00634 18.0555 0.924601 Vertex 11795 0.325448 15.6429 -6.01943 Vertex 11796 3.0974 17.7131 0.173884 Vertex 11797 0.429443 23.6557 -5.6112 Vertex 11798 -0.325448 15.6429 -6.01943 Vertex 11799 -3.09718 17.7131 0.173884 Vertex 11800 -0.429443 23.6557 -5.6112 Vertex 11801 -1.36918 17.0851 -2.38393 Vertex 11802 -1.08488 16.4292 -2.49658 Vertex 11803 -0.775947 17.0191 -2.6135 Vertex 11804 0.000415999 17.1965 -2.76138 Vertex 11805 -0.443979 17.0481 -2.81427 Vertex 11806 -0.327382 16.8246 -2.77241 Vertex 11807 -1.74359 15.4415 -3.08947 Vertex 11808 -1.35678 15.4946 -3.01807 Vertex 11809 -0.965787 15.368 -3.51527 Vertex 11810 -1.38992 15.7193 -3.61827 Vertex 11811 -0.480329 15.4609 -3.38862 Vertex 11812 0 15.3938 -3.68077 Vertex 11813 -0.554502 15.74 -3.88078 Vertex 11814 -1.78052 16.2182 -3.68451 Vertex 11815 -1.03687 16.2424 -4.0713 Vertex 11816 -1.40293 16.9496 -4.05682 Vertex 11817 -0.398847 16.3607 -4.27377 Vertex 11818 -0.813824 17.0205 -4.35295 Vertex 11819 -1.89158 19.5883 -3.25049 Vertex 11820 -1.38846 18.9443 -3.65683 Vertex 11821 -1.16367 19.7745 -3.76985 Vertex 11822 -1.64099 20.3174 -3.45128 Vertex 11823 -0.904738 19.0142 -3.99606 Vertex 11824 -0.974643 19.8232 -4.0158 Vertex 11825 -1.10228 20.5029 -3.80754 Vertex 11826 -2.21943 20.7062 -2.94013 Vertex 11827 -1.36318 21.1002 -3.51178 Vertex 11828 -1.91032 21.4349 -3.01944 Vertex 11829 -1.0038 21.215 -3.71347 Vertex 11830 -1.05463 21.724 -3.45778 Vertex 11831 -2.55149 21.3953 -2.41595 Vertex 11832 -1.64764 22.0439 -2.95216 Vertex 11833 -2.18035 21.8804 -2.51749 Vertex 11834 -1.48416 22.4221 -2.7687 Vertex 11835 -1.30103 22.234 -3.05186 Vertex 11836 -0.689327 23.5994 -5.58237 Vertex 11837 -0.609602 23.4672 -5.68867 Vertex 11838 -0.312557 23.4268 -5.72205 Vertex 11839 0 23.6271 -5.64376 Vertex 11840 -0.318486 23.7844 -5.45897 Vertex 11841 -0.60546 23.7284 -5.48127 Vertex 11842 -3.26972 17.9444 0.312284 Vertex 11843 -3.27299 17.6955 0.357653 Vertex 11844 -3.2346 17.8341 0.193375 Vertex 11845 -2.37247 17.5932 -1.47714 Vertex 11846 -2.69679 16.5946 -1.78414 Vertex 11847 -2.49486 16.2078 -1.92033 Vertex 11848 -2.37508 15.7052 -2.54864 Vertex 11849 -2.67181 16.2467 -2.37648 Vertex 11850 -2.86749 16.9674 -2.15632 Vertex 11851 -2.50524 16.3079 -2.97987 Vertex 11852 -2.77071 17.0394 -2.59645 Vertex 11853 -2.9174 19.0312 -1.83108 Vertex 11854 -2.72046 18.6357 -2.21924 Vertex 11855 -2.54875 19.3228 -2.55234 Vertex 11856 -2.91026 19.5398 -2.10316 Vertex 11857 -3.12802 19.7161 -1.64951 Vertex 11858 -2.84947 20.1938 -2.24768 Vertex 11859 -3.16757 20.2503 -1.6428 Vertex 11860 -3.26122 20.2071 -1.21827 Vertex 11861 -3.14799 20.7924 -1.59075 Vertex 11862 -3.31826 20.5897 -1.04247 Vertex 11863 -3.30865 20.3984 -0.694226 Vertex 11864 -3.31673 20.8559 -0.752818 Vertex 11865 -3.35517 20.607 -0.431877 Vertex 11866 -3.30044 20.3839 -0.234424 Vertex 11867 -3.35219 20.689 -0.0951828 Vertex 11868 -3.35292 20.4109 0.0573425 Vertex 11869 -1.96949 17.2858 -1.96165 Vertex 11870 -2.04662 15.6567 -2.54143 Vertex 11871 -2.12291 15.7995 -3.12463 Vertex 11872 -2.18672 16.8774 -3.44885 Vertex 11873 -2.14714 18.8135 -3.00527 Vertex 11874 -2.40464 19.9603 -2.83452 Vertex 11875 -2.74938 20.8658 -2.28544 Vertex 11876 -3.00298 21.1932 -1.74611 Vertex 11877 -3.29922 19.9873 0.36009 Vertex 11878 -3.26537 20.1674 0.0418573 Vertex 11879 -3.31554 20.2652 0.450694 Vertex 11880 -3.2991 19.5276 0.385881 Vertex 11881 -3.22895 19.7985 0.130983 Vertex 11882 -3.28492 19.722 0.673607 Vertex 11883 -3.30253 19.0763 0.39055 Vertex 11884 -3.21192 19.3161 0.15282 Vertex 11885 -3.32206 19.2623 0.625545 Vertex 11886 -3.19748 18.1763 0.155906 Vertex 11887 -3.24156 18.22 0.478123 Vertex 11888 -3.23892 17.971 0.622786 Vertex 11889 -3.19347 18.3848 0.230786 Vertex 11890 -3.23048 18.4669 0.609034 Vertex 11891 -3.19518 18.2869 0.902136 Vertex 11892 -3.27225 18.7959 0.505943 Vertex 11893 -3.20678 18.9074 0.186123 Vertex 11894 -3.3043 18.9523 0.710401 Vertex 11895 -3.19978 18.6326 0.244661 Vertex 11896 -3.22399 18.6294 0.918028 Vertex 11897 -2.65668 17.9104 -1.35834 Vertex 11898 -2.6517 18.2624 -1.45502 Vertex 11899 -2.80774 18.2253 -1.68742 Vertex 11900 -2.77287 18.6991 -1.65284 Vertex 11901 -2.9876 19.3326 -1.6162 Vertex 11902 -3.13164 19.9137 -1.36364 Vertex 11903 -3.19412 20.2208 -0.909794 Vertex 11904 -3.1995 20.329 -0.45125 Vertex 11905 -3.16813 20.2532 -0.10085 Vertex 11906 -3.13132 19.9841 0.0241662 Vertex 11907 -3.08102 18.7797 0.118882 Vertex 11908 -3.0829 18.5167 0.126 Vertex 11909 -3.07614 18.2933 0.073763 Vertex 11910 -3.08978 18.0229 0.0917398 Vertex 11911 -3.16908 17.6199 0.2602 Vertex 11912 -3.05452 17.5627 0.204332 Vertex 11913 -3.07244 17.5788 0.408199 Vertex 11914 -3.16299 17.727 0.555443 Vertex 11915 -3.03044 17.8739 0.769623 Vertex 11916 -3.11484 18.1033 0.901993 Vertex 11917 -2.979 18.2248 1.08221 Vertex 11918 -3.08595 18.4047 1.11422 Vertex 11919 -3.01552 18.6124 1.10905 Vertex 11920 -3.17617 18.8254 0.956614 Vertex 11921 -3.11008 18.9506 0.895065 Vertex 11922 -3.23955 19.075 0.761047 Vertex 11923 -3.1172 19.2666 0.800823 Vertex 11924 -3.20791 19.4841 0.77255 Vertex 11925 -3.06171 19.7417 0.844568 Vertex 11926 -3.17615 19.9938 0.751491 Vertex 11927 -3.10868 20.3164 0.574542 Vertex 11928 -3.26345 20.5693 0.250891 Vertex 11929 -3.16198 20.7672 -0.0372068 Vertex 11930 -3.24244 20.865 -0.38372 Vertex 11931 -3.12706 20.9508 -0.704373 Vertex 11932 -3.15065 21.0374 -1.13533 Vertex 11933 -2.88282 21.2396 -1.54043 Vertex 11934 -2.64378 21.5232 -2.04946 Vertex 11935 -2.11603 21.916 -2.2535 Vertex 11936 -1.71585 22.281 -2.53948 Vertex 11937 -1.41693 22.4375 -2.51065 Vertex 11938 -1.17143 22.5692 -2.65631 Vertex 11939 -0.627767 22.712 -2.60691 Vertex 11940 -0.623368 22.7545 -2.83605 Vertex 11941 0 22.8261 -2.7577 Vertex 11942 0 16.2555 -3.12444 Vertex 11943 -0.918627 16.256 -2.92902 Vertex 11944 -1.69229 16.3663 -2.44027 Vertex 11945 -2.24051 16.6325 -1.9962 Vertex 11946 -2.57736 17.1595 -1.43497 Vertex 11947 -2.80584 17.4242 -1.71963 Vertex 11948 -2.86911 17.8048 -2.07786 Vertex 11949 -2.49674 17.8146 -2.84319 Vertex 11950 -1.76319 17.8983 -3.62128 Vertex 11951 -1.05816 17.9792 -4.09686 Vertex 11952 -0.785612 18.0477 -4.35013 Vertex 11953 -0.792565 22.0169 -3.42345 Vertex 11954 -0.998167 22.051 -3.31332 Vertex 11955 -0.885439 22.5924 -2.92757 Vertex 11956 0 22.8248 -2.93957 Vertex 11957 0 22.6222 -4.39334 Vertex 11958 -0.426998 22.5915 -4.69999 Vertex 11959 -0.748286 22.6237 -4.34359 Vertex 11960 -1.01914 22.8237 -4.16072 Vertex 11961 -1.20364 23.188 -4.12692 Vertex 11962 -0.962206 23.3041 -3.76085 Vertex 11963 -0.742035 23.5034 -3.67692 Vertex 11964 -0.442905 23.7843 -3.8537 Vertex 11965 0 23.5526 -3.73396 Vertex 11966 0 22.6486 -5.02636 Vertex 11967 -0.501171 22.729 -5.2427 Vertex 11968 -0.876181 22.6777 -4.91915 Vertex 11969 -1.32181 23.028 -4.62278 Vertex 11970 -1.38043 23.4071 -4.62019 Vertex 11971 -1.23389 23.5791 -4.12752 Vertex 11972 -0.881513 23.9092 -4.02069 Vertex 11973 -0.511559 24.0675 -4.33042 Vertex 11974 0 23.9754 -4.11235 Vertex 11975 0 22.8291 -5.4515 Vertex 11976 -0.464367 22.9547 -5.5471 Vertex 11977 -0.936095 22.8546 -5.33394 Vertex 11978 -1.37379 23.2261 -5.09165 Vertex 11979 -1.28392 23.5516 -5.13185 Vertex 11980 -1.30597 23.7407 -4.67955 Vertex 11981 -0.931449 24.0309 -4.57825 Vertex 11982 -0.468712 24.0269 -4.88116 Vertex 11983 0 24.0904 -4.61678 Vertex 11984 0 23.1899 -5.68315 Vertex 11985 -0.686659 23.1979 -5.63404 Vertex 11986 -0.996225 23.4366 -5.49306 Vertex 11987 -0.965774 23.7178 -5.29064 Vertex 11988 -0.689605 23.8972 -5.19072 Vertex 11989 0 23.931 -5.18933 Vertex 11990 -1.02197 23.6399 -3.82744 Vertex 11991 -1.16827 23.8832 -4.28788 Vertex 11992 -1.09018 23.8968 -4.91425 Vertex 11993 -1.12682 23.1282 -5.39539 Vertex 11994 -1.22489 22.9022 -5.05139 Vertex 11995 -1.07572 22.7416 -4.54517 Vertex 11996 -0.880441 21.7733 -3.60305 Vertex 11997 -0.784603 22.029 -3.52457 Vertex 11998 -0.76233 21.2754 -4.33535 Vertex 11999 -0.450542 20.6504 -4.82854 Vertex 12000 0 21.3955 -4.41566 Vertex 12001 -0.361539 21.9111 -3.90847 Vertex 12002 -0.743522 19.9272 -4.85841 Vertex 12003 -0.343928 19.2584 -4.99074 Vertex 12004 0 20.0347 -4.96363 Vertex 12005 -0.597177 18.2656 -5.16829 Vertex 12006 -0.321998 17.4517 -5.48778 Vertex 12007 0 18.3193 -5.23576 Vertex 12008 0 16.4355 -4.3378 Vertex 12009 -0.301882 16.7497 -4.59644 Vertex 12010 -0.240131 15.6267 -5.90942 Vertex 12011 0 15.6529 -6.02938 Vertex 12012 -0.253375 15.7619 -6.06461 Vertex 12013 -0.466247 15.731 -6.02946 Vertex 12014 -0.453747 15.6602 -5.94666 Vertex 12015 -0.787135 17.2147 -4.81681 Vertex 12016 -0.848955 18.1821 -4.80915 Vertex 12017 -0.876484 19.083 -4.33291 Vertex 12018 -1.0242 19.8339 -4.48044 Vertex 12019 -1.09262 20.4813 -4.12345 Vertex 12020 -1.03851 21.1817 -4.04394 Vertex 12021 -0.611122 22.0805 -3.60647 Vertex 12022 -0.836339 21.7987 -3.81814 Vertex 12023 -1.03188 20.4962 -4.57188 Vertex 12024 -0.816406 19.1702 -4.7805 Vertex 12025 -0.772732 17.3726 -5.27345 Vertex 12026 0 16.577 -4.76817 Vertex 12027 -0.2628 16.2214 -4.92453 Vertex 12028 -0.558535 16.5742 -4.79016 Vertex 12029 -0.697786 16.3729 -5.11134 Vertex 12030 -0.82767 16.8245 -5.20228 Vertex 12031 -0.747772 16.6708 -5.49874 Vertex 12032 -0.592184 16.9924 -5.54611 Vertex 12033 -0.312786 16.8059 -5.67181 Vertex 12034 0 17.05 -5.61115 Vertex 12035 0 16.0093 -5.19813 Vertex 12036 -0.238371 15.8276 -5.46432 Vertex 12037 -0.468558 16.0051 -5.20271 Vertex 12038 -0.59032 15.9292 -5.57638 Vertex 12039 -0.733329 16.2815 -5.50303 Vertex 12040 -0.627833 16.1304 -5.81205 Vertex 12041 -0.544136 16.4751 -5.75005 Vertex 12042 -0.275885 16.2213 -5.91605 Vertex 12043 0 16.532 -5.79169 Vertex 12044 0 15.7051 -5.72203 Vertex 12045 -0.424075 15.7031 -5.72432 Vertex 12046 -0.583803 15.8416 -5.87483 Vertex 12047 -0.461952 15.9386 -5.99863 Vertex 12048 0 15.9671 -6.01949 Vertex 12049 1.40937 17.0851 -2.38393 Vertex 12050 0.447557 17.0481 -2.81427 Vertex 12051 0.965787 15.368 -3.51527 Vertex 12052 1.35678 15.4945 -3.01807 Vertex 12053 1.74359 15.4415 -3.08947 Vertex 12054 1.38992 15.7193 -3.61827 Vertex 12055 0.480329 15.4609 -3.38862 Vertex 12056 0.554502 15.74 -3.88078 Vertex 12057 1.03687 16.2424 -4.0713 Vertex 12058 1.78052 16.2182 -3.68451 Vertex 12059 1.40293 16.9496 -4.05682 Vertex 12060 0.398847 16.3607 -4.27377 Vertex 12061 0.813824 17.0204 -4.35295 Vertex 12062 1.16367 19.7745 -3.76985 Vertex 12063 1.38846 18.9443 -3.65683 Vertex 12064 1.89158 19.5883 -3.25049 Vertex 12065 1.64099 20.3174 -3.45128 Vertex 12066 0.974643 19.8232 -4.01579 Vertex 12067 0.904738 19.0142 -3.99606 Vertex 12068 1.10228 20.5029 -3.80754 Vertex 12069 1.36319 21.1002 -3.51178 Vertex 12070 2.21943 20.7062 -2.94013 Vertex 12071 1.91032 21.4349 -3.01944 Vertex 12072 1.0038 21.215 -3.71346 Vertex 12073 1.05463 21.724 -3.45778 Vertex 12074 1.64764 22.0439 -2.95216 Vertex 12075 2.55149 21.3953 -2.41595 Vertex 12076 2.18035 21.8804 -2.51749 Vertex 12077 1.48417 22.4221 -2.76869 Vertex 12078 1.30103 22.234 -3.05186 Vertex 12079 0.318486 23.7844 -5.45897 Vertex 12080 0.312557 23.4268 -5.72205 Vertex 12081 0.609603 23.4672 -5.68867 Vertex 12082 0.689327 23.5994 -5.58237 Vertex 12083 0.60546 23.7284 -5.48127 Vertex 12084 3.27299 17.6955 0.357653 Vertex 12085 3.26972 17.9444 0.312284 Vertex 12086 3.2346 17.8341 0.193375 Vertex 12087 2.41903 17.5932 -1.47714 Vertex 12088 2.24429 17.5997 -1.6265 Vertex 12089 2.37507 15.7052 -2.54864 Vertex 12090 2.49486 16.2078 -1.92033 Vertex 12091 2.69679 16.5946 -1.78414 Vertex 12092 2.67181 16.2467 -2.37648 Vertex 12093 2.50524 16.3079 -2.97987 Vertex 12094 2.86748 16.9674 -2.15631 Vertex 12095 2.77071 17.0394 -2.59645 Vertex 12096 2.54875 19.3228 -2.55234 Vertex 12097 2.72046 18.6357 -2.21924 Vertex 12098 2.9174 19.0312 -1.83108 Vertex 12099 2.91026 19.5398 -2.10316 Vertex 12100 2.84947 20.1938 -2.24768 Vertex 12101 3.12802 19.7161 -1.64951 Vertex 12102 3.16757 20.2503 -1.6428 Vertex 12103 3.14799 20.7924 -1.59075 Vertex 12104 3.26122 20.2071 -1.21827 Vertex 12105 3.31826 20.5897 -1.04247 Vertex 12106 3.31674 20.8559 -0.752818 Vertex 12107 3.30864 20.3984 -0.694226 Vertex 12108 3.35517 20.607 -0.431877 Vertex 12109 3.35219 20.689 -0.0951827 Vertex 12110 3.30044 20.3839 -0.234424 Vertex 12111 3.35292 20.4109 0.0573425 Vertex 12112 1.99203 17.2857 -1.96165 Vertex 12113 2.04662 15.6567 -2.54143 Vertex 12114 2.12291 15.7995 -3.12463 Vertex 12115 2.18672 16.8774 -3.44885 Vertex 12116 2.14714 18.8135 -3.00527 Vertex 12117 2.40464 19.9603 -2.83452 Vertex 12118 2.74938 20.8658 -2.28544 Vertex 12119 3.00298 21.1933 -1.74611 Vertex 12120 3.26537 20.1674 0.0418573 Vertex 12121 3.29922 19.9873 0.360089 Vertex 12122 3.31554 20.2652 0.450694 Vertex 12123 3.22895 19.7985 0.130983 Vertex 12124 3.2991 19.5276 0.385881 Vertex 12125 3.28492 19.722 0.673607 Vertex 12126 3.21192 19.3161 0.152821 Vertex 12127 3.30253 19.0763 0.39055 Vertex 12128 3.32206 19.2624 0.625545 Vertex 12129 3.24156 18.22 0.478123 Vertex 12130 3.19747 18.1763 0.155906 Vertex 12131 3.23892 17.971 0.622786 Vertex 12132 3.23048 18.4669 0.609034 Vertex 12133 3.19347 18.3848 0.230786 Vertex 12134 3.19518 18.2869 0.902136 Vertex 12135 3.20678 18.9074 0.186123 Vertex 12136 3.27225 18.7959 0.505944 Vertex 12137 3.3043 18.9523 0.710401 Vertex 12138 3.19978 18.6326 0.244661 Vertex 12139 3.22399 18.6294 0.918028 Vertex 12140 2.67583 17.9104 -1.35834 Vertex 12141 2.65386 18.2624 -1.45502 Vertex 12142 2.80774 18.2253 -1.68742 Vertex 12143 2.77287 18.6991 -1.65284 Vertex 12144 2.9876 19.3326 -1.6162 Vertex 12145 3.13164 19.9137 -1.36364 Vertex 12146 3.19412 20.2208 -0.909794 Vertex 12147 3.1995 20.329 -0.45125 Vertex 12148 3.16813 20.2532 -0.10085 Vertex 12149 3.13132 19.9841 0.0241662 Vertex 12150 3.09275 19.5828 0.074425 Vertex 12151 3.07886 19.0857 0.1047 Vertex 12152 3.08103 18.7798 0.118882 Vertex 12153 3.0829 18.5167 0.126 Vertex 12154 3.07614 18.2933 0.073763 Vertex 12155 3.08978 18.0229 0.0917397 Vertex 12156 3.16908 17.6199 0.2602 Vertex 12157 3.05467 17.5627 0.204332 Vertex 12158 3.0718 17.5788 0.408199 Vertex 12159 3.16299 17.727 0.555443 Vertex 12160 3.03043 17.8739 0.769623 Vertex 12161 3.11484 18.1033 0.901993 Vertex 12162 2.979 18.2248 1.08221 Vertex 12163 3.08595 18.4047 1.11422 Vertex 12164 3.01552 18.6124 1.10905 Vertex 12165 3.17617 18.8254 0.956614 Vertex 12166 3.11008 18.9506 0.895065 Vertex 12167 3.23955 19.075 0.761047 Vertex 12168 3.1172 19.2667 0.800823 Vertex 12169 3.20791 19.4841 0.77255 Vertex 12170 3.06171 19.7417 0.844568 Vertex 12171 3.17614 19.9938 0.751491 Vertex 12172 3.10868 20.3164 0.574542 Vertex 12173 3.26345 20.5693 0.250891 Vertex 12174 3.16198 20.7672 -0.0372068 Vertex 12175 3.24244 20.8651 -0.38372 Vertex 12176 3.12706 20.9509 -0.704373 Vertex 12177 3.15065 21.0374 -1.13533 Vertex 12178 2.88282 21.2396 -1.54043 Vertex 12179 2.64378 21.5232 -2.04946 Vertex 12180 2.11603 21.916 -2.2535 Vertex 12181 1.71585 22.281 -2.53948 Vertex 12182 1.41693 22.4375 -2.51065 Vertex 12183 1.17143 22.5691 -2.65631 Vertex 12184 0.623368 22.7545 -2.83605 Vertex 12185 0.627767 22.712 -2.60691 Vertex 12186 0.918627 16.256 -2.92902 Vertex 12187 1.69229 16.3663 -2.44027 Vertex 12188 2.24051 16.6325 -1.9962 Vertex 12189 2.61321 17.1595 -1.43497 Vertex 12190 2.80584 17.4242 -1.71963 Vertex 12191 2.86911 17.8048 -2.07786 Vertex 12192 2.49674 17.8145 -2.84319 Vertex 12193 1.76319 17.8983 -3.62128 Vertex 12194 1.05816 17.9792 -4.09686 Vertex 12195 0.785612 18.0477 -4.35013 Vertex 12196 0.792565 22.0169 -3.42345 Vertex 12197 0.998167 22.051 -3.31332 Vertex 12198 0.885439 22.5924 -2.92757 Vertex 12199 0.426998 22.5915 -4.69999 Vertex 12200 0.748286 22.6237 -4.34359 Vertex 12201 1.20364 23.1881 -4.12692 Vertex 12202 1.01914 22.8237 -4.16072 Vertex 12203 0.962206 23.3041 -3.76085 Vertex 12204 0.442905 23.7843 -3.8537 Vertex 12205 0.742035 23.5034 -3.67691 Vertex 12206 0.501171 22.729 -5.2427 Vertex 12207 0.876181 22.6777 -4.91915 Vertex 12208 1.38043 23.4071 -4.62019 Vertex 12209 1.32181 23.028 -4.62278 Vertex 12210 1.23389 23.5791 -4.12752 Vertex 12211 0.511559 24.0675 -4.33042 Vertex 12212 0.881513 23.9092 -4.02069 Vertex 12213 0.464367 22.9547 -5.5471 Vertex 12214 0.936095 22.8546 -5.33394 Vertex 12215 1.28392 23.5516 -5.13185 Vertex 12216 1.37378 23.2261 -5.09165 Vertex 12217 1.30597 23.7407 -4.67955 Vertex 12218 0.468712 24.0269 -4.88116 Vertex 12219 0.931449 24.0309 -4.57825 Vertex 12220 0.686659 23.1979 -5.63404 Vertex 12221 0.996225 23.4366 -5.49306 Vertex 12222 0.965774 23.7178 -5.29064 Vertex 12223 0.689605 23.8972 -5.19072 Vertex 12224 1.02197 23.6399 -3.82744 Vertex 12225 1.16827 23.8832 -4.28787 Vertex 12226 1.09018 23.8968 -4.91425 Vertex 12227 1.12682 23.1282 -5.39539 Vertex 12228 1.22489 22.9022 -5.05139 Vertex 12229 1.07572 22.7416 -4.54517 Vertex 12230 0.880441 21.7733 -3.60305 Vertex 12231 0.784603 22.0291 -3.52458 Vertex 12232 0.450542 20.6503 -4.82854 Vertex 12233 0.76233 21.2754 -4.33535 Vertex 12234 0.361539 21.9111 -3.90847 Vertex 12235 0.343928 19.2584 -4.99074 Vertex 12236 0.743522 19.9272 -4.85841 Vertex 12237 0.321997 17.4517 -5.48778 Vertex 12238 0.597177 18.2656 -5.16828 Vertex 12239 0.301882 16.7497 -4.59643 Vertex 12240 0.466247 15.731 -6.02947 Vertex 12241 0.253375 15.7619 -6.06461 Vertex 12242 0.240131 15.6267 -5.90942 Vertex 12243 0.453747 15.6602 -5.94666 Vertex 12244 0.848955 18.1821 -4.80915 Vertex 12245 0.787135 17.2147 -4.81681 Vertex 12246 0.876484 19.083 -4.33291 Vertex 12247 1.0242 19.8339 -4.48044 Vertex 12248 1.09262 20.4813 -4.12345 Vertex 12249 1.03851 21.1817 -4.04394 Vertex 12250 0.611122 22.0805 -3.60647 Vertex 12251 0.836339 21.7987 -3.81814 Vertex 12252 1.03188 20.4962 -4.57188 Vertex 12253 0.816406 19.1702 -4.7805 Vertex 12254 0.772732 17.3725 -5.27345 Vertex 12255 0.2628 16.2214 -4.92453 Vertex 12256 0.558535 16.5742 -4.79016 Vertex 12257 0.697786 16.3729 -5.11134 Vertex 12258 0.82767 16.8245 -5.20228 Vertex 12259 0.747772 16.6708 -5.49874 Vertex 12260 0.592184 16.9924 -5.54611 Vertex 12261 0.312786 16.8059 -5.67181 Vertex 12262 0.238371 15.8276 -5.46432 Vertex 12263 0.468558 16.0051 -5.20271 Vertex 12264 0.59032 15.9292 -5.57638 Vertex 12265 0.733329 16.2815 -5.50303 Vertex 12266 0.627833 16.1305 -5.81205 Vertex 12267 0.544137 16.4751 -5.75005 Vertex 12268 0.275885 16.2213 -5.91605 Vertex 12269 0.424075 15.703 -5.72432 Vertex 12270 0.583803 15.8416 -5.87483 Vertex 12271 0.461952 15.9386 -5.99863 Vertex 12272 -0.679747 16.6597 -2.686 Vertex 12273 -1.75628 15.7495 -3.4032 Vertex 12274 -0.997951 15.7143 -3.77555 Vertex 12275 -1.77162 18.8864 -3.36442 Vertex 12276 -1.07403 18.987 -3.87115 Vertex 12277 -2.0614 20.1472 -3.15166 Vertex 12278 -1.27682 20.4447 -3.68578 Vertex 12279 -2.37852 21.158 -2.67515 Vertex 12280 -1.37458 21.9382 -3.20659 Vertex 12281 -2.44351 15.9412 -2.78242 Vertex 12282 -2.47631 18.7288 -2.61249 Vertex 12283 -2.68337 19.7575 -2.48872 Vertex 12284 -3.01502 20.562 -1.91857 Vertex 12285 -1.69419 17.1751 -2.1542 Vertex 12286 -2.19117 17.4225 -1.76247 Vertex 12287 -2.74837 18.0295 -1.55021 Vertex 12288 -3.03008 19.3753 -1.7787 Vertex 12289 -3.2066 20.0084 -1.4579 Vertex 12290 -3.2944 20.3308 -0.955443 Vertex 12291 -3.30898 20.4145 -0.449071 Vertex 12292 -3.28517 20.3028 -0.0656575 Vertex 12293 -3.24523 19.9939 0.102583 Vertex 12294 -3.21751 19.5747 0.142561 Vertex 12295 -3.20929 19.076 0.165946 Vertex 12296 -3.2038 18.7723 0.212609 Vertex 12297 -3.19593 18.4996 0.25861 Vertex 12298 -3.19359 18.2798 0.187711 Vertex 12299 -3.20651 18.0414 0.147853 Vertex 12300 -3.25953 17.7998 0.482691 Vertex 12301 -3.2165 18.1494 0.773412 Vertex 12302 -3.192 18.431 0.964995 Vertex 12303 -3.26887 18.8228 0.815181 Vertex 12304 -3.3241 19.0786 0.636315 Vertex 12305 -3.3063 19.4835 0.648005 Vertex 12306 -3.28047 19.9814 0.631466 Vertex 12307 -3.3521 20.5191 0.189181 Vertex 12308 -3.33425 20.7946 -0.407486 Vertex 12309 -2.66452 21.4923 -2.19618 Vertex 12310 -1.73429 22.2365 -2.70164 Vertex 12311 -7.45058e-009 22.8375 -2.87487 Vertex 12312 -0.939607 15.4623 -3.24743 Vertex 12313 -1.7273 15.5589 -2.76219 Vertex 12314 -2.30554 15.8518 -2.28454 Vertex 12315 -2.7964 16.7347 -1.99336 Vertex 12316 -2.53231 16.9007 -3.03534 Vertex 12317 -1.79119 16.9127 -3.80125 Vertex 12318 -1.06334 16.9861 -4.23443 Vertex 12319 -3.72529e-009 23.7957 -3.89179 Vertex 12320 0 22.7383 -5.27619 Vertex 12321 0 23.4424 -5.71301 Vertex 12322 0 23.7809 -5.4704 Vertex 12323 -1.13133 23.4469 -3.92168 Vertex 12324 -0.807536 23.7464 -3.80985 Vertex 12325 -1.29388 23.6828 -4.38369 Vertex 12326 -0.931517 24.0107 -4.28578 Vertex 12327 -1.21499 23.7525 -4.99018 Vertex 12328 -0.858434 23.9873 -4.88445 Vertex 12329 -1.26514 23.3312 -5.28501 Vertex 12330 -0.862163 22.9877 -5.47782 Vertex 12331 -1.37505 23.1242 -4.88142 Vertex 12332 -0.932689 22.7631 -5.16139 Vertex 12333 -1.21662 22.9369 -4.36666 Vertex 12334 -0.798288 22.6185 -4.64686 Vertex 12335 -0.882375 21.7712 -3.51077 Vertex 12336 -1.06 20.5093 -3.91922 Vertex 12337 -0.849312 19.0412 -4.12037 Vertex 12338 -0.680399 17.1329 -4.61356 Vertex 12339 3.72529e-009 17.4666 -5.49694 Vertex 12340 0 19.2835 -5.00039 Vertex 12341 -0.907302 21.7703 -3.71144 Vertex 12342 -0.658877 21.8498 -3.89096 Vertex 12343 -1.11247 20.4625 -4.36081 Vertex 12344 -0.821148 20.5648 -4.735 Vertex 12345 -0.8957 19.1293 -4.57313 Vertex 12346 -0.634012 19.2113 -4.92852 Vertex 12347 -0.840701 17.3084 -5.06128 Vertex 12348 -0.59568 17.417 -5.42504 Vertex 12349 -0.502947 16.2382 -4.95265 Vertex 12350 -0.796375 16.5442 -5.32019 Vertex 12351 -0.577925 16.7567 -5.62371 Vertex 12352 0 15.8419 -5.47663 Vertex 12353 -0.445543 15.8387 -5.48003 Vertex 12354 -0.656487 16.0446 -5.70363 Vertex 12355 -0.501814 16.1887 -5.88755 Vertex 12356 -1.13894 22.5456 -2.54885 Vertex 12357 0 22.8098 -2.64091 Vertex 12358 -1.6724 22.2677 -2.43224 Vertex 12359 -2.57658 21.5256 -1.96079 Vertex 12360 -3.15896 20.5893 0.274645 Vertex 12361 -3.08874 19.5001 0.820636 Vertex 12362 -3.13001 19.073 0.815507 Vertex 12363 -3.06829 18.8227 1.00456 Vertex 12364 -3.05415 17.6892 0.587266 Vertex 12365 -3.0766 17.5443 0.266892 Vertex 12366 1.75628 15.7495 -3.4032 Vertex 12367 0.997951 15.7143 -3.77555 Vertex 12368 1.77162 18.8864 -3.36442 Vertex 12369 1.07403 18.987 -3.87115 Vertex 12370 2.0614 20.1472 -3.15166 Vertex 12371 1.27682 20.4447 -3.68578 Vertex 12372 2.37852 21.158 -2.67515 Vertex 12373 1.37458 21.9382 -3.20659 Vertex 12374 2.44351 15.9412 -2.78242 Vertex 12375 2.47631 18.7288 -2.61249 Vertex 12376 2.68337 19.7575 -2.48872 Vertex 12377 3.01502 20.562 -1.91857 Vertex 12378 0 17.063 -2.86002 Vertex 12379 1.73932 17.1751 -2.1542 Vertex 12380 2.20648 17.4225 -1.76247 Vertex 12381 2.74837 18.0295 -1.55021 Vertex 12382 3.03008 19.3753 -1.7787 Vertex 12383 3.2066 20.0084 -1.4579 Vertex 12384 3.2944 20.3308 -0.955443 Vertex 12385 3.30898 20.4145 -0.449071 Vertex 12386 3.28517 20.3028 -0.0656575 Vertex 12387 3.24523 19.9939 0.102583 Vertex 12388 3.21751 19.5747 0.142561 Vertex 12389 3.20929 19.076 0.165946 Vertex 12390 3.2038 18.7723 0.212609 Vertex 12391 3.19593 18.4996 0.25861 Vertex 12392 3.19359 18.2798 0.187711 Vertex 12393 3.20651 18.0414 0.147853 Vertex 12394 3.25953 17.7998 0.482691 Vertex 12395 3.2165 18.1494 0.773412 Vertex 12396 3.192 18.431 0.964995 Vertex 12397 3.26887 18.8228 0.815181 Vertex 12398 3.3241 19.0786 0.636315 Vertex 12399 3.3063 19.4835 0.648004 Vertex 12400 3.28048 19.9814 0.631466 Vertex 12401 3.3521 20.5191 0.189181 Vertex 12402 3.33425 20.7946 -0.407487 Vertex 12403 2.66452 21.4923 -2.19618 Vertex 12404 1.73429 22.2365 -2.70164 Vertex 12405 0 15.4679 -3.43718 Vertex 12406 0.939606 15.4623 -3.24743 Vertex 12407 1.7273 15.5589 -2.76219 Vertex 12408 2.30554 15.8518 -2.28454 Vertex 12409 2.7964 16.7347 -1.99336 Vertex 12410 2.53231 16.9007 -3.03534 Vertex 12411 1.79119 16.9127 -3.80125 Vertex 12412 1.06334 16.9861 -4.23443 Vertex 12413 0 16.7615 -4.60902 Vertex 12414 0 16.0518 -4.10686 Vertex 12415 0 22.5974 -4.72457 Vertex 12416 0 24.0782 -4.36442 Vertex 12417 0 22.9651 -5.57845 Vertex 12418 -3.72529e-009 24.034 -4.88616 Vertex 12419 1.13133 23.4469 -3.92168 Vertex 12420 0.807536 23.7464 -3.80985 Vertex 12421 1.29388 23.6827 -4.38369 Vertex 12422 0.931517 24.0107 -4.28578 Vertex 12423 1.21499 23.7525 -4.99018 Vertex 12424 0.858434 23.9873 -4.88445 Vertex 12425 1.26514 23.3312 -5.28501 Vertex 12426 0.862163 22.9877 -5.47782 Vertex 12427 1.37505 23.1242 -4.88142 Vertex 12428 0.932689 22.7631 -5.16139 Vertex 12429 1.21662 22.9369 -4.36666 Vertex 12430 0.798288 22.6185 -4.64685 Vertex 12431 0.882375 21.7712 -3.51077 Vertex 12432 1.06 20.5093 -3.91922 Vertex 12433 0.849312 19.0412 -4.12037 Vertex 12434 0.680399 17.1329 -4.61356 Vertex 12435 0 20.6974 -4.85791 Vertex 12436 0.907302 21.7704 -3.71143 Vertex 12437 0.658877 21.8498 -3.89096 Vertex 12438 1.11247 20.4625 -4.36081 Vertex 12439 0.821148 20.5648 -4.735 Vertex 12440 0.8957 19.1293 -4.57313 Vertex 12441 0.634012 19.2113 -4.92852 Vertex 12442 0.840701 17.3084 -5.06128 Vertex 12443 0.59568 17.417 -5.42504 Vertex 12444 0 16.8213 -5.67664 Vertex 12445 0 16.2425 -4.94312 Vertex 12446 0.502947 16.2382 -4.95265 Vertex 12447 0.796375 16.5442 -5.32019 Vertex 12448 0.577925 16.7567 -5.62371 Vertex 12449 0 16.2311 -5.91855 Vertex 12450 0.445543 15.8387 -5.48003 Vertex 12451 0.656487 16.0446 -5.70363 Vertex 12452 0.501814 16.1887 -5.88755 Vertex 12453 0 15.7635 -6.06331 Vertex 12454 0 15.6338 -5.91603 Vertex 12455 1.13894 22.5456 -2.54885 Vertex 12456 1.6724 22.2677 -2.43224 Vertex 12457 2.57658 21.5256 -1.96079 Vertex 12458 3.15896 20.5893 0.274645 Vertex 12459 3.08874 19.5001 0.820635 Vertex 12460 3.13001 19.073 0.815507 Vertex 12461 3.06829 18.8227 1.00456 Vertex 12462 3.05391 17.6892 0.587266 Vertex 12463 3.07611 17.5443 0.266892 Vertex 12464 0.256659 15.9605 -6.01781 Vertex 12465 0.564516 15.8994 -5.9478 Vertex 12466 0.539265 15.7639 -5.78917 Vertex 12467 0.231407 15.6955 -5.71374 Vertex 12468 0.29634 16.5188 -5.78833 Vertex 12469 0.694844 16.3969 -5.64864 Vertex 12470 0.644458 16.1266 -5.33211 Vertex 12471 0.245955 15.9901 -5.1816 Vertex 12472 0.31998 17.035 -5.60365 Vertex 12473 0.768839 16.9246 -5.40348 Vertex 12474 0.746405 16.685 -4.96904 Vertex 12475 0.297546 16.5599 -4.75204 Vertex 12476 0.774137 18.2293 -5.01923 Vertex 12477 0.94289 19.8705 -4.69692 Vertex 12478 0.961683 21.213 -4.20874 Vertex 12479 0.336916 22.131 -3.61047 Vertex 12480 1.01574 21.1975 -3.86538 Vertex 12481 1.00731 19.8243 -4.2323 Vertex 12482 0.816792 18.1135 -4.56626 Vertex 12483 0.322914 18.3014 -5.22814 Vertex 12484 0.40624 19.9967 -4.94161 Vertex 12485 0.417528 21.353 -4.39933 Vertex 12486 1.16663 22.8126 -4.80137 Vertex 12487 1.22486 23.0021 -5.23516 Vertex 12488 0.891032 23.296 -5.57478 Vertex 12489 0.871659 23.8251 -5.22522 Vertex 12490 1.17553 23.9191 -4.59281 Vertex 12491 1.10894 23.7803 -4.02639 Vertex 12492 0.377353 23.9268 -5.185 Vertex 12493 1.01422 23.5828 -5.38913 Vertex 12494 0.371121 23.1793 -5.67057 Vertex 12495 0.510051 24.0809 -4.59818 Vertex 12496 1.38644 23.491 -4.87613 Vertex 12497 0.503903 22.819 -5.41523 Vertex 12498 0.483422 23.9655 -4.07226 Vertex 12499 1.32454 23.306 -4.36224 Vertex 12500 0.467618 22.6418 -4.99724 Vertex 12501 0.407272 23.5332 -3.70478 Vertex 12502 1.00263 23.0537 -3.9389 Vertex 12503 0.403068 22.6124 -4.37213 Vertex 12504 0.505395 22.7659 -2.90837 Vertex 12505 1.01478 22.3076 -3.10997 Vertex 12506 0.863374 18.0086 -4.22038 Vertex 12507 1.37804 17.9426 -3.89946 Vertex 12508 2.15381 17.8459 -3.25547 Vertex 12509 2.73888 17.8335 -2.42559 Vertex 12510 2.87632 17.6303 -1.87517 Vertex 12511 2.71866 17.3007 -1.51331 Vertex 12512 2.44995 16.9001 -1.66336 Vertex 12513 1.99575 16.4666 -2.2312 Vertex 12514 1.32983 16.2955 -2.69531 Vertex 12515 0.468936 16.2501 -3.07408 Vertex 12516 0.646034 22.7319 -2.7197 Vertex 12517 1.45554 22.4579 -2.61809 Vertex 12518 2.16984 21.9214 -2.35492 Vertex 12519 2.96396 21.2305 -1.60817 Vertex 12520 3.22417 20.9381 -0.735214 Vertex 12521 3.26339 20.7505 -0.0567305 Vertex 12522 3.21902 20.2959 0.544284 Vertex 12523 3.1809 19.726 0.80056 Vertex 12524 3.23184 19.2594 0.748525 Vertex 12525 3.21794 18.9538 0.842683 Vertex 12526 3.12345 18.6193 1.06603 Vertex 12527 3.08986 18.2507 1.04449 Vertex 12528 3.14059 17.9083 0.73187 Vertex 12529 3.17793 17.6206 0.394031 Vertex 12530 3.07725 18.187 0.064987 Vertex 12531 3.07933 18.4014 0.101066 Vertex 12532 3.0829 18.6449 0.127663 Vertex 12533 3.07897 18.9151 0.112482 Vertex 12534 3.08282 19.3264 0.091767 Vertex 12535 3.11054 19.8004 0.0534137 Vertex 12536 3.15017 20.1389 -0.0178845 Vertex 12537 3.18626 20.3154 -0.25284 Vertex 12538 3.20279 20.2975 -0.673476 Vertex 12539 3.17151 20.0989 -1.15047 Vertex 12540 3.07121 19.6467 -1.51745 Vertex 12541 2.87818 19.0054 -1.66425 Vertex 12542 2.70188 18.4479 -1.57323 Vertex 12543 3.24813 18.6306 0.576178 Vertex 12544 3.29124 18.9284 0.438489 Vertex 12545 3.2309 18.3391 0.564355 Vertex 12546 3.25463 18.0822 0.386318 Vertex 12547 3.30354 19.288 0.378862 Vertex 12548 3.294 19.7593 0.394064 Vertex 12549 3.32574 20.2159 0.240634 Vertex 12550 2.91151 21.0913 -1.98704 Vertex 12551 2.5764 20.458 -2.5958 Vertex 12552 2.24615 19.4652 -2.91798 Vertex 12553 2.16646 16.2232 -3.36564 Vertex 12554 2.08598 15.5225 -2.84456 Vertex 12555 2.08472 17.4478 -1.78054 Vertex 12556 3.36014 20.5376 -0.168142 Vertex 12557 3.34576 20.6302 -0.729915 Vertex 12558 3.25898 20.4679 -1.34977 Vertex 12559 3.04372 19.9225 -1.91259 Vertex 12560 2.79005 19.1576 -2.15857 Vertex 12561 2.74135 16.5413 -2.55066 Vertex 12562 2.58309 16.0627 -2.1622 Vertex 12563 0.345559 23.5856 -5.67592 Vertex 12564 2.06989 21.7351 -2.75482 Vertex 12565 1.11312 21.1889 -3.62862 Vertex 12566 1.77349 20.9298 -3.26387 Vertex 12567 1.00859 19.8118 -3.89424 Vertex 12568 1.49437 19.6957 -3.54486 Vertex 12569 0.685405 16.2756 -4.17954 Vertex 12570 1.40295 16.2239 -3.91301 Vertex 12571 0.497497 15.3797 -3.63733 Vertex 12572 1.37567 15.3893 -3.32284 Vertex 12573 0.395333 17.1559 -2.72976 Vertex 12574 -0.256659 15.9605 -6.01781 Vertex 12575 -0.564516 15.8994 -5.9478 Vertex 12576 -0.539265 15.7639 -5.78917 Vertex 12577 -0.231407 15.6955 -5.71374 Vertex 12578 -0.29634 16.5188 -5.78833 Vertex 12579 -0.694844 16.3969 -5.64864 Vertex 12580 -0.644458 16.1266 -5.33211 Vertex 12581 -0.245955 15.9901 -5.1816 Vertex 12582 -0.31998 17.035 -5.60365 Vertex 12583 -0.768839 16.9245 -5.40348 Vertex 12584 -0.746405 16.685 -4.96904 Vertex 12585 -0.297547 16.5599 -4.75204 Vertex 12586 -0.774137 18.2293 -5.01923 Vertex 12587 -0.94289 19.8705 -4.69692 Vertex 12588 -0.961683 21.213 -4.20874 Vertex 12589 -0.336916 22.131 -3.61047 Vertex 12590 -1.01574 21.1975 -3.86538 Vertex 12591 -1.00731 19.8244 -4.2323 Vertex 12592 -0.816792 18.1135 -4.56626 Vertex 12593 -0.322914 18.3014 -5.22814 Vertex 12594 -0.40624 19.9967 -4.94161 Vertex 12595 -0.417528 21.353 -4.39933 Vertex 12596 -1.16663 22.8126 -4.80137 Vertex 12597 -1.22486 23.0021 -5.23516 Vertex 12598 -0.891032 23.296 -5.57478 Vertex 12599 -0.871659 23.8251 -5.22522 Vertex 12600 -1.17553 23.9191 -4.59281 Vertex 12601 -1.10894 23.7803 -4.02639 Vertex 12602 -0.377353 23.9268 -5.185 Vertex 12603 -1.01422 23.5828 -5.38913 Vertex 12604 -0.371121 23.1793 -5.67057 Vertex 12605 -0.510051 24.0809 -4.59818 Vertex 12606 -1.38644 23.491 -4.87614 Vertex 12607 -0.503903 22.819 -5.41523 Vertex 12608 -0.483422 23.9655 -4.07226 Vertex 12609 -1.32454 23.306 -4.36224 Vertex 12610 -0.467618 22.6418 -4.99724 Vertex 12611 -0.407272 23.5332 -3.70477 Vertex 12612 -1.00263 23.0537 -3.9389 Vertex 12613 -0.403068 22.6124 -4.37213 Vertex 12614 -0.505395 22.7659 -2.90837 Vertex 12615 -1.01478 22.3076 -3.10997 Vertex 12616 -0.863374 18.0086 -4.22038 Vertex 12617 -1.37804 17.9426 -3.89946 Vertex 12618 -2.15381 17.8459 -3.25547 Vertex 12619 -2.73888 17.8335 -2.42559 Vertex 12620 -2.87632 17.6303 -1.87517 Vertex 12621 -2.70361 17.3007 -1.51331 Vertex 12622 -2.42915 16.9001 -1.66336 Vertex 12623 -1.99575 16.4666 -2.2312 Vertex 12624 -1.32983 16.2955 -2.69531 Vertex 12625 -0.468936 16.2501 -3.07408 Vertex 12626 -0.646034 22.7319 -2.7197 Vertex 12627 -1.45554 22.4579 -2.61809 Vertex 12628 -2.16984 21.9214 -2.35492 Vertex 12629 -2.96396 21.2305 -1.60817 Vertex 12630 -3.22417 20.9381 -0.735213 Vertex 12631 -3.26339 20.7505 -0.0567305 Vertex 12632 -3.21902 20.2959 0.544284 Vertex 12633 -3.1809 19.726 0.80056 Vertex 12634 -3.23184 19.2594 0.748524 Vertex 12635 -3.21794 18.9538 0.842683 Vertex 12636 -3.12345 18.6193 1.06603 Vertex 12637 -3.08986 18.2507 1.04449 Vertex 12638 -3.14059 17.9083 0.73187 Vertex 12639 -3.17793 17.6206 0.394031 Vertex 12640 -3.07725 18.187 0.064987 Vertex 12641 -3.07933 18.4014 0.101066 Vertex 12642 -3.0829 18.6449 0.127662 Vertex 12643 -3.11054 19.8004 0.0534137 Vertex 12644 -3.15017 20.1389 -0.0178845 Vertex 12645 -3.18626 20.3154 -0.25284 Vertex 12646 -3.20279 20.2975 -0.673476 Vertex 12647 -3.17151 20.0989 -1.15047 Vertex 12648 -3.07122 19.6467 -1.51745 Vertex 12649 -2.87818 19.0054 -1.66425 Vertex 12650 -2.70162 18.4479 -1.57323 Vertex 12651 -3.24813 18.6306 0.576178 Vertex 12652 -3.29124 18.9284 0.438489 Vertex 12653 -3.2309 18.3391 0.564355 Vertex 12654 -3.25463 18.0822 0.386318 Vertex 12655 -3.30355 19.288 0.378862 Vertex 12656 -3.294 19.7593 0.394064 Vertex 12657 -3.32574 20.2159 0.240634 Vertex 12658 -2.91151 21.0913 -1.98704 Vertex 12659 -2.5764 20.458 -2.5958 Vertex 12660 -2.24615 19.4652 -2.91798 Vertex 12661 -2.16646 16.2232 -3.36564 Vertex 12662 -2.08598 15.5225 -2.84456 Vertex 12663 -3.36014 20.5376 -0.168142 Vertex 12664 -3.34576 20.6302 -0.729914 Vertex 12665 -3.25898 20.4679 -1.34977 Vertex 12666 -3.04372 19.9225 -1.91259 Vertex 12667 -2.79005 19.1576 -2.15857 Vertex 12668 -2.74135 16.5413 -2.55066 Vertex 12669 -2.58309 16.0627 -2.1622 Vertex 12670 -0.345559 23.5856 -5.67592 Vertex 12671 -2.06989 21.7351 -2.75482 Vertex 12672 -1.11312 21.1889 -3.62862 Vertex 12673 -1.77349 20.9298 -3.26387 Vertex 12674 -1.00859 19.8118 -3.89424 Vertex 12675 -1.49437 19.6957 -3.54486 Vertex 12676 -0.685405 16.2756 -4.17954 Vertex 12677 -1.40295 16.2239 -3.91301 Vertex 12678 -0.497496 15.3797 -3.63733 Vertex 12679 -1.37567 15.3893 -3.32284 Vertex 12680 -0.386122 17.1559 -2.72976 Vertex 12681 -1.18034 16.7713 -2.39122 Vertex 12682 -3.1738 18.9761 -0.33588 Vertex 12683 -3.25253 18.6432 -0.932922 Vertex 12684 -3.24722 18.2049 -0.797923 Vertex 12685 -3.23801 18.2501 -0.883047 Vertex 12686 -3.21427 18.4283 -0.552352 Vertex 12687 -3.07245 18.925 -0.636087 Vertex 12688 -3.28325 18.966 -0.888333 Vertex 12689 -3.36269 19.2344 -0.892584 Vertex 12690 -3.28214 19.6709 -0.497182 Vertex 12691 -3.30689 19.3748 -0.676872 Vertex 12692 -3.23486 18.0943 -0.432709 Vertex 12693 -3.11578 18.4934 -0.293697 Vertex 12694 -3.23329 17.9824 -0.682232 Vertex 12695 -3.08668 19.1839 -0.731135 Vertex 12696 -3.38262 20.1644 -0.557713 Vertex 12697 -3.26907 20.0756 -0.953837 Vertex 12698 -3.08489 18.1326 -0.953084 Vertex 12699 -3.03684 17.8344 -0.479243 Vertex 12700 -2.90908 17.7774 -0.553209 Vertex 12701 -2.83759 17.9729 -0.713995 Vertex 12702 -2.86764 16.5662 0.805122 Vertex 12703 -2.38862 15.8346 -0.214113 Vertex 12704 -2.84643 19.8832 1.47261 Vertex 12705 -2.84651 20.0209 1.35633 Vertex 12706 -1.37796 22.4374 2.41 Vertex 12707 -0.609935 22.3132 2.77277 Vertex 12708 -0.459398 20.1463 4.00295 Vertex 12709 -0.268425 21.295 3.52022 Vertex 12710 -0.0546338 22.2238 2.90293 Vertex 12711 -2.18903 15.5088 2.43772 Vertex 12712 -2.21856 15.1005 2.04865 Vertex 12713 -1.42213 14.4803 2.64079 Vertex 12714 -1.07843 14.2372 2.40417 Vertex 12715 -2.39912 16.0831 2.17585 Vertex 12716 -1.53709 14.5813 0.957757 Vertex 12717 -2.45224 16.6891 2.58036 Vertex 12718 -2.47387 17.119 2.01792 Vertex 12719 -0.228967 19.6136 3.9352 Vertex 12720 -0.540229 18.7446 3.89042 Vertex 12721 -0.686536 19.1659 3.42555 Vertex 12722 -0.540861 19.7283 3.86248 Vertex 12723 -0.487855 18.0211 4.50159 Vertex 12724 -0.280427 17.9971 4.76462 Vertex 12725 -0.432674 17.9398 4.12598 Vertex 12726 -0.450323 17.9581 4.1411 Vertex 12727 -0.181427 17.5699 4.37887 Vertex 12728 -2.2803 18.3713 3.41848 Vertex 12729 -0.356665 14.0965 3.61521 Vertex 12730 -2.34564 19.4231 2.60526 Vertex 12731 -2.12899 20.3369 3.22626 Vertex 12732 -2.61362 19.3809 2.29513 Vertex 12733 -2.72526 18.9867 2.40814 Vertex 12734 -2.98453 19.1738 1.25862 Vertex 12735 -2.95882 17.8293 0.025782 Vertex 12736 -2.83298 17.3486 -0.217609 Vertex 12737 -3.14277 20.2929 -0.489157 Vertex 12738 -0.265431 17.7895 4.26792 Vertex 12739 -0.66944 17.8127 4.09214 Vertex 12740 -0.545632 18.4798 3.99806 Vertex 12741 -0.8588 17.9713 3.88136 Vertex 12742 -0.748893 17.781 4.07976 Vertex 12743 -0.613142 18.4545 3.87929 Vertex 12744 -0.80235 18.1858 3.8003 Vertex 12745 -1.01665 17.933 3.77594 Vertex 12746 -1.46843 17.565 3.53318 Vertex 12747 -1.55143 17.6586 3.53005 Vertex 12748 -1.88927 16.1542 2.97271 Vertex 12749 -2.12916 16.7634 3.04058 Vertex 12750 -1.99855 17.1318 3.19506 Vertex 12751 -1.86833 17.0898 3.16714 Vertex 12752 -0.906221 17.2285 4.07279 Vertex 12753 -1.12032 15.2809 3.5677 Vertex 12754 -1.28086 15.3312 3.4241 Vertex 12755 -1.25404 18.859 3.55683 Vertex 12756 -2.07162 18.7948 3.46777 Vertex 12757 -3.00936 18.8469 0.069268 Vertex 12758 -3.11891 18.1072 -0.230249 Vertex 12759 -2.8975 19.3277 -1.52365 Vertex 12760 -3.0911 19.7604 -1.21556 Vertex 12761 -2.52634 17.9448 -1.09069 Vertex 12762 -3.28557 19.9624 -0.155263 Vertex 12763 3.1738 18.9761 -0.33588 Vertex 12764 3.25253 18.6432 -0.932922 Vertex 12765 3.24388 18.2513 -0.797574 Vertex 12766 3.23814 18.2501 -0.883047 Vertex 12767 3.21427 18.4283 -0.552352 Vertex 12768 3.07245 18.925 -0.636087 Vertex 12769 3.28325 18.966 -0.888333 Vertex 12770 3.36269 19.2344 -0.892584 Vertex 12771 3.28214 19.6709 -0.497182 Vertex 12772 3.30689 19.3748 -0.676872 Vertex 12773 3.2382 18.1077 -0.452139 Vertex 12774 3.10549 18.4925 -0.263145 Vertex 12775 3.23586 17.9824 -0.682233 Vertex 12776 3.09951 19.1848 -0.756751 Vertex 12777 3.38262 20.1644 -0.557713 Vertex 12778 3.26907 20.0756 -0.953837 Vertex 12779 3.08724 18.1326 -0.953086 Vertex 12780 3.04757 17.8344 -0.479243 Vertex 12781 2.92885 17.7774 -0.553209 Vertex 12782 2.85042 17.9729 -0.713995 Vertex 12783 2.82178 16.5662 0.805122 Vertex 12784 2.36265 15.8346 -0.214113 Vertex 12785 2.84651 20.0209 1.35633 Vertex 12786 -0.0909987 23.4905 -0.556784 Vertex 12787 1.49012e-008 23.366 -1.10716 Vertex 12788 1.37796 22.4374 2.41 Vertex 12789 0.609935 22.3132 2.77277 Vertex 12790 0.459398 20.1463 4.00295 Vertex 12791 0.268425 21.295 3.52022 Vertex 12792 2.189 15.5088 2.43772 Vertex 12793 2.20659 15.1005 2.04865 Vertex 12794 1.42213 14.4803 2.64079 Vertex 12795 1.07679 14.2372 2.40417 Vertex 12796 2.3982 16.0831 2.17585 Vertex 12797 1.43527 14.5813 0.957757 Vertex 12798 2.45224 16.6891 2.58036 Vertex 12799 2.47387 17.119 2.01792 Vertex 12800 -0.029879 19.6569 3.97765 Vertex 12801 0.228967 19.6136 3.9352 Vertex 12802 0.540229 18.7446 3.89042 Vertex 12803 0.733234 19.1467 3.43562 Vertex 12804 0.540861 19.7283 3.86248 Vertex 12805 0.487855 18.0211 4.50159 Vertex 12806 0.280427 17.9971 4.76462 Vertex 12807 0.399388 17.9487 4.15334 Vertex 12808 0.450323 17.9581 4.1411 Vertex 12809 0.181428 17.5699 4.37887 Vertex 12810 2.30822 18.4193 3.38131 Vertex 12811 0.356665 14.0965 3.61521 Vertex 12812 2.33118 19.4415 2.62103 Vertex 12813 2.12899 20.3369 3.22626 Vertex 12814 2.61362 19.3809 2.29513 Vertex 12815 2.74726 19.005 2.32956 Vertex 12816 2.98453 19.1738 1.25862 Vertex 12817 2.97543 17.8901 0.0616755 Vertex 12818 2.85358 17.3486 -0.217609 Vertex 12819 3.14277 20.2929 -0.489157 Vertex 12820 0.265432 17.7895 4.26792 Vertex 12821 0.650927 17.8228 4.09028 Vertex 12822 0.592571 18.4213 3.94936 Vertex 12823 0.545632 18.4798 3.99806 Vertex 12824 0.8588 17.9713 3.88136 Vertex 12825 0.756248 17.7656 4.08206 Vertex 12826 0.627814 18.4354 3.87169 Vertex 12827 0.80235 18.1858 3.8003 Vertex 12828 1.01665 17.933 3.77594 Vertex 12829 1.46843 17.565 3.53318 Vertex 12830 1.55143 17.6586 3.53005 Vertex 12831 1.88927 16.1542 2.97271 Vertex 12832 2.12916 16.7635 3.04058 Vertex 12833 2.00838 17.103 3.17639 Vertex 12834 1.86833 17.0898 3.16714 Vertex 12835 0.906221 17.2285 4.07279 Vertex 12836 -1.86265e-009 17.1311 4.31946 Vertex 12837 1.16246 15.3755 3.57077 Vertex 12838 1.2602 15.2648 3.42147 Vertex 12839 1.25795 18.8814 3.55553 Vertex 12840 2.05488 18.7769 3.48746 Vertex 12841 3.00936 18.8469 0.069268 Vertex 12842 3.11902 18.1072 -0.23025 Vertex 12843 2.8975 19.3277 -1.52365 Vertex 12844 3.0911 19.7604 -1.21556 Vertex 12845 2.5818 17.7884 -1.24104 Vertex 12846 2.55701 17.9448 -1.09069 Vertex 12847 3.28557 19.9625 -0.155263 Vertex 12848 2.97751 17.7929 -0.195246 Vertex 12849 2.80966 17.4584 -0.380781 Vertex 12850 1.73329 19.4383 2.44374 Vertex 12851 1.65524 19.365 2.50798 Vertex 12852 1.39672 19.3461 2.6176 Vertex 12853 1.24017 19.4156 2.64574 Vertex 12854 0.207621 14.1239 3.69728 Vertex 12855 0.175972 14.1907 3.77569 Vertex 12856 2.97991 17.1256 0.222806 Vertex 12857 2.91627 18.336 1.45973 Vertex 12858 2.47192 19.3043 2.5151 Vertex 12859 2.33398 19.3641 2.67069 Vertex 12860 2.09718 18.9697 3.37161 Vertex 12861 0.69699 17.6309 4.12565 Vertex 12862 0.660697 19.2749 3.44925 Vertex 12863 0.586341 19.3407 3.47984 Vertex 12864 0.621061 19.129 3.50895 Vertex 12865 -2.97009 17.7929 -0.195246 Vertex 12866 -2.77966 17.4584 -0.380781 Vertex 12867 -1.68109 19.3502 2.46774 Vertex 12868 -1.65157 19.4303 2.47461 Vertex 12869 -1.44345 19.4835 2.57951 Vertex 12870 -1.24016 19.4156 2.64574 Vertex 12871 -0.232538 14.1413 3.72415 Vertex 12872 -0.175972 14.1907 3.77569 Vertex 12873 -0.901045 12.1746 -0.951365 Vertex 12874 -0.310343 12.1102 -0.825853 Vertex 12875 0.287656 12.1746 -0.951365 Vertex 12876 0.635662 12.3186 -1.25963 Vertex 12877 0.692183 12.5235 -1.65733 Vertex 12878 0.352075 12.8004 -2.09959 Vertex 12879 -0.302492 12.9475 -2.2685 Vertex 12880 -0.957199 12.8004 -2.09959 Vertex 12881 -2.98658 17.1256 0.222805 Vertex 12882 -2.91627 18.336 1.45973 Vertex 12883 -2.47192 19.3043 2.5151 Vertex 12884 -2.33398 19.3641 2.67069 Vertex 12885 -2.09718 18.9697 3.37161 Vertex 12886 -0.69699 17.6309 4.12565 Vertex 12887 -0.660697 19.2749 3.44925 Vertex 12888 -0.586341 19.3407 3.47984 Vertex 12889 -0.621061 19.129 3.50895 Vertex 12890 -3.28085 19.3776 -0.0650188 Vertex 12891 -3.16621 19.1932 -0.0624817 Vertex 12892 -3.22848 19.1114 -0.185249 Vertex 12893 -3.30639 19.2417 -0.179327 Vertex 12894 -3.34587 19.6756 -0.0601182 Vertex 12895 -3.21088 19.5018 0.014449 Vertex 12896 -3.3772 19.524 -0.115024 Vertex 12897 -3.26706 19.8212 -0.0648592 Vertex 12898 -3.45864 19.799 -0.200063 Vertex 12899 -3.4181 19.9483 -0.245126 Vertex 12900 -3.2249 19.0455 -0.297062 Vertex 12901 -3.16548 18.9958 -0.226729 Vertex 12902 -3.17158 19.0222 -0.438811 Vertex 12903 -3.20552 19.1571 -0.481873 Vertex 12904 -3.27635 19.1704 -0.328346 Vertex 12905 -3.36115 19.386 -0.232878 Vertex 12906 -3.29425 19.3092 -0.372907 Vertex 12907 -3.37855 19.5158 -0.318065 Vertex 12908 -3.44048 19.6416 -0.230985 Vertex 12909 -3.45647 19.7097 -0.367738 Vertex 12910 -3.50963 19.8415 -0.376179 Vertex 12911 -3.5134 19.9873 -0.440798 Vertex 12912 -3.46852 19.8019 -0.527449 Vertex 12913 -3.51533 19.9125 -0.616384 Vertex 12914 -3.51336 20.0089 -0.768004 Vertex 12915 -3.46439 19.79 -0.746417 Vertex 12916 -3.50932 19.8459 -0.898137 Vertex 12917 -3.48709 19.8418 -1.08711 Vertex 12918 -3.44806 19.6855 -0.951299 Vertex 12919 -3.4707 19.6383 -1.11632 Vertex 12920 -3.43274 19.5114 -1.27904 Vertex 12921 -3.41312 19.4448 -1.07936 Vertex 12922 -3.40809 19.2823 -1.2038 Vertex 12923 -3.36653 19.0494 -1.27757 Vertex 12924 -3.35468 19.0809 -1.09895 Vertex 12925 -3.33543 18.8549 -1.13538 Vertex 12926 -3.28947 18.6278 -1.1409 Vertex 12927 -3.27898 18.7451 -1.00152 Vertex 12928 -3.26282 18.5392 -0.989309 Vertex 12929 -3.2414 18.3436 -0.968154 Vertex 12930 -3.248 18.4164 -0.88166 Vertex 12931 -3.24461 18.3902 -0.779043 Vertex 12932 -3.23892 18.5318 -0.805179 Vertex 12933 -3.24095 18.3445 -0.676438 Vertex 12934 -3.23224 18.5169 -0.690385 Vertex 12935 -3.20294 18.5187 -0.58437 Vertex 12936 -3.14902 18.5878 -0.474289 Vertex 12937 -3.13481 18.6696 -0.548466 Vertex 12938 -3.0982 18.717 -0.445644 Vertex 12939 -3.0771 18.8449 -0.55661 Vertex 12940 -3.21844 18.6746 -0.675653 Vertex 12941 -3.15159 18.8507 -0.695634 Vertex 12942 -3.25679 18.7041 -0.822245 Vertex 12943 -3.26351 18.8713 -0.833275 Vertex 12944 -3.26014 18.7866 -0.941489 Vertex 12945 -3.29853 18.948 -0.934804 Vertex 12946 -3.34715 19.1052 -0.912559 Vertex 12947 -3.30546 19.1003 -0.995211 Vertex 12948 -3.33929 19.2571 -0.934048 Vertex 12949 -3.36177 19.3643 -0.835531 Vertex 12950 -3.32057 19.4088 -0.951933 Vertex 12951 -3.3222 19.486 -0.841183 Vertex 12952 -3.33514 19.5215 -0.729675 Vertex 12953 -3.31846 19.5998 -0.854607 Vertex 12954 -3.31513 19.6148 -0.747187 Vertex 12955 -3.30639 19.6483 -0.644302 Vertex 12956 -3.32532 19.6914 -0.714917 Vertex 12957 -3.31283 19.5607 -0.629906 Vertex 12958 -3.30022 19.6946 -0.556068 Vertex 12959 -3.26568 19.607 -0.537612 Vertex 12960 -3.23678 19.5101 -0.522179 Vertex 12961 -3.23884 19.5745 -0.456763 Vertex 12962 -3.30281 19.4536 -0.624447 Vertex 12963 -3.18714 19.398 -0.500671 Vertex 12964 -3.21171 19.3451 -0.617319 Vertex 12965 -3.35118 19.4149 -0.727423 Vertex 12966 -3.36158 19.3056 -0.794556 Vertex 12967 -3.38586 19.6916 -0.82829 Vertex 12968 -3.365 19.5522 -0.95925 Vertex 12969 -3.34975 19.2686 -1.0395 Vertex 12970 -3.29393 18.9283 -1.01921 Vertex 12971 -3.18467 18.1005 -0.316138 Vertex 12972 -3.23248 18.2586 -0.490885 Vertex 12973 -3.17388 18.2948 -0.363251 Vertex 12974 -3.15943 18.4783 -0.404612 Vertex 12975 -3.10444 18.3344 -0.224282 Vertex 12976 -3.11943 18.6046 -0.365908 Vertex 12977 -3.11099 18.6527 -0.249958 Vertex 12978 -3.12386 18.7347 -0.351304 Vertex 12979 -3.07684 17.9647 -0.203321 Vertex 12980 -3.1129 17.9114 -0.297628 Vertex 12981 -3.20798 17.9846 -0.403246 Vertex 12982 -3.25249 18.028 -0.584128 Vertex 12983 -3.20553 17.9351 -0.539049 Vertex 12984 -3.25745 18.1567 -0.638162 Vertex 12985 -3.24153 18.0707 -0.773126 Vertex 12986 -3.38611 19.747 -0.629279 Vertex 12987 -3.10901 19.2427 -0.649442 Vertex 12988 -3.18858 19.2586 -0.733783 Vertex 12989 -3.29287 19.0634 -0.887387 Vertex 12990 -3.18587 19.1468 -0.831105 Vertex 12991 -3.06513 19.0823 -0.808342 Vertex 12992 -3.17793 18.9963 -0.844328 Vertex 12993 -3.0626 18.9846 -0.749619 Vertex 12994 -3.34967 19.1845 -0.875529 Vertex 12995 -3.30987 19.2372 -0.793983 Vertex 12996 -3.37679 19.723 -0.472429 Vertex 12997 -3.34696 19.6339 -0.404086 Vertex 12998 -3.26682 19.4462 -0.406165 Vertex 12999 -3.18889 19.2741 -0.501649 Vertex 13000 -3.10454 19.1377 -0.639132 Vertex 13001 -3.09427 19.0092 -0.578735 Vertex 13002 -3.11053 18.8621 -0.425571 Vertex 13003 -3.03596 19.0541 -0.707883 Vertex 13004 -3.14183 18.8618 -0.292462 Vertex 13005 -3.37639 20.0927 -0.395008 Vertex 13006 -3.45357 20.1009 -0.589496 Vertex 13007 -3.3152 20.149 -0.766263 Vertex 13008 -3.41016 20.0204 -0.958995 Vertex 13009 -3.28821 19.938 -1.16031 Vertex 13010 -3.39341 19.75 -1.27005 Vertex 13011 -3.2843 19.5593 -1.37186 Vertex 13012 -3.35059 19.3007 -1.37588 Vertex 13013 -3.24576 19.0312 -1.37594 Vertex 13014 -3.28611 18.7902 -1.29027 Vertex 13015 -3.15754 18.5907 -1.23969 Vertex 13016 -3.19558 18.4358 -1.1184 Vertex 13017 -3.09358 18.2726 -1.05158 Vertex 13018 -3.17917 18.1525 -0.924559 Vertex 13019 -3.10262 17.9454 -0.823738 Vertex 13020 -3.18343 17.9079 -0.73662 Vertex 13021 -3.08096 17.8183 -0.59363 Vertex 13022 -3.14089 17.8935 -0.578097 Vertex 13023 -3.01196 17.8041 -0.645702 Vertex 13024 -2.96337 17.788 -0.485124 Vertex 13025 -2.87923 18.0791 -0.76313 Vertex 13026 -2.99143 18.1675 -0.9133 Vertex 13027 -2.95695 17.9997 -0.797053 Vertex 13028 -2.84895 18.2076 -0.817845 Vertex 13029 -2.77727 18.0459 -0.74972 Vertex 13030 -2.93349 18.3367 -0.94768 Vertex 13031 -2.76452 18.3104 -0.932092 Vertex 13032 -2.86438 18.4981 -1.00877 Vertex 13033 -3.0297 18.4568 -1.10827 Vertex 13034 -3.11117 18.8011 -1.27177 Vertex 13035 -2.97583 18.6493 -1.13441 Vertex 13036 -2.91509 18.8527 -1.17867 Vertex 13037 -2.79421 18.6483 -1.13889 Vertex 13038 -3.03332 19.0436 -1.25659 Vertex 13039 -2.86327 19.0804 -1.27769 Vertex 13040 -2.96541 19.2787 -1.26226 Vertex 13041 -3.16284 19.2892 -1.34462 Vertex 13042 -3.18419 19.7708 -1.26603 Vertex 13043 -3.06912 19.5161 -1.26438 Vertex 13044 -2.96913 19.5156 -1.27679 Vertex 13045 -3.09978 17.8703 -0.413889 Vertex 13046 -3.00465 17.8309 -0.248268 Vertex 13047 -2.98325 17.8114 -0.362609 Vertex 13048 -2.87378 17.6891 -0.3613 Vertex 13049 -2.8709 17.731 -0.444173 Vertex 13050 -3.15254 19.9505 -1.11799 Vertex 13051 -2.86261 17.8339 -0.631934 Vertex 13052 -2.80345 17.7099 -0.521223 Vertex 13053 -2.79667 17.6338 -0.422811 Vertex 13054 -3.37089 20.2033 -0.510103 Vertex 13055 -3.32819 20.1357 -0.348506 Vertex 13056 -2.89687 18.1917 1.73727 Vertex 13057 -2.92788 18.259 2.11849 Vertex 13058 -2.82311 18.0471 2.25115 Vertex 13059 -2.78346 17.9437 1.88996 Vertex 13060 -2.78219 17.919 1.59677 Vertex 13061 -2.67168 17.74 1.98118 Vertex 13062 -2.6862 17.697 1.70858 Vertex 13063 -2.75196 17.7478 1.46219 Vertex 13064 -2.5909 17.5044 1.78175 Vertex 13065 -2.6668 17.5195 1.55329 Vertex 13066 -2.77253 17.597 1.3188 Vertex 13067 -2.6206 17.2976 1.57299 Vertex 13068 -2.7325 17.3097 1.33508 Vertex 13069 -2.84872 17.3284 1.06314 Vertex 13070 -2.73758 17.0074 1.25954 Vertex 13071 -2.85474 16.97 0.988263 Vertex 13072 -2.96657 16.9944 0.697169 Vertex 13073 -2.85347 16.7043 0.917972 Vertex 13074 -2.94019 16.6733 0.640381 Vertex 13075 -2.96808 16.8009 0.345483 Vertex 13076 -2.84956 16.3638 0.594316 Vertex 13077 -2.85525 16.4235 0.292649 Vertex 13078 -2.8192 16.5971 0.000959499 Vertex 13079 -2.713 16.0695 0.242057 Vertex 13080 -2.66848 16.2102 -0.0563925 Vertex 13081 -2.59408 16.4504 -0.301753 Vertex 13082 -2.48745 15.8836 -0.03733 Vertex 13083 -2.42406 16.1446 -0.408236 Vertex 13084 -2.37524 16.5427 -0.868071 Vertex 13085 -2.31108 15.9953 -0.854753 Vertex 13086 -2.20801 16.4451 -1.32006 Vertex 13087 -2.35792 15.5326 -0.457691 Vertex 13088 -2.30495 15.4177 -1.0932 Vertex 13089 -2.12435 15.9913 -1.46203 Vertex 13090 -2.11438 16.8816 -1.53193 Vertex 13091 -1.94983 16.4291 -1.72958 Vertex 13092 -1.80777 16.8867 -1.86767 Vertex 13093 -1.83175 15.9372 -1.93836 Vertex 13094 -1.56221 16.4844 -2.11231 Vertex 13095 -1.79449 17.2963 -1.9345 Vertex 13096 -1.33693 16.9935 -2.27836 Vertex 13097 -2.68718 21.7055 -1.62878 Vertex 13098 -2.15486 21.9782 -2.07958 Vertex 13099 -1.94369 22.5249 -1.87846 Vertex 13100 -2.55342 22.2523 -1.37816 Vertex 13101 -2.92641 21.7932 -1.01488 Vertex 13102 -2.4642 22.7024 -0.855034 Vertex 13103 -2.86179 22.1897 -0.553658 Vertex 13104 -3.04199 21.6973 -0.439536 Vertex 13105 -2.74562 22.4391 0.067847 Vertex 13106 -2.97344 21.9428 0.040644 Vertex 13107 -3.07833 21.5224 -0.0486635 Vertex 13108 -2.80738 22.0927 0.611176 Vertex 13109 -2.98465 21.6586 0.405563 Vertex 13110 -3.04917 21.1984 0.334235 Vertex 13111 -2.82016 21.7097 1.00202 Vertex 13112 -2.93729 21.1973 0.856603 Vertex 13113 -2.92976 20.6721 0.856705 Vertex 13114 -2.76138 21.1915 1.38622 Vertex 13115 -2.8041 20.6387 1.27543 Vertex 13116 -2.83632 20.1815 1.25458 Vertex 13117 -2.69115 20.6594 1.65803 Vertex 13118 -2.78153 20.2174 1.52849 Vertex 13119 -1.46835 22.516 -2.29897 Vertex 13120 -1.29522 22.8827 -1.89195 Vertex 13121 -1.90122 22.962 -1.35299 Vertex 13122 -0.644567 22.795 -2.35757 Vertex 13123 0 23.1279 -1.85122 Vertex 13124 -0.868941 23.2924 -1.16829 Vertex 13125 -1.75351 23.2267 -0.553016 Vertex 13126 -2.36108 22.9299 -0.0984477 Vertex 13127 -0.719608 23.4896 -0.104209 Vertex 13128 -1.51627 23.3284 0.43791 Vertex 13129 -2.08348 22.9922 0.780026 Vertex 13130 -2.49033 22.5407 0.819795 Vertex 13131 -1.2212 23.2002 1.3438 Vertex 13132 -1.69877 22.8748 1.59017 Vertex 13133 -2.15906 22.5494 1.55278 Vertex 13134 -2.54555 22.1617 1.28081 Vertex 13135 -1.32712 22.6783 2.17585 Vertex 13136 -1.8068 22.4321 2.1207 Vertex 13137 -2.23112 22.129 1.92705 Vertex 13138 -2.56875 21.715 1.63538 Vertex 13139 -1.55095 22.1895 2.56933 Vertex 13140 -1.91913 21.9645 2.44301 Vertex 13141 -2.29818 21.6471 2.1984 Vertex 13142 -2.55564 21.1911 1.90285 Vertex 13143 -1.69819 21.6944 2.85752 Vertex 13144 -2.05499 21.461 2.67383 Vertex 13145 -2.3621 21.1691 2.38344 Vertex 13146 -2.56352 20.777 2.06475 Vertex 13147 -1.87592 21.1857 3.04028 Vertex 13148 -2.17837 21.0514 2.79948 Vertex 13149 -1.73925 20.9281 3.2686 Vertex 13150 -1.60053 21.3749 3.13107 Vertex 13151 -1.50073 21.0317 3.33181 Vertex 13152 -1.42871 21.8881 2.88529 Vertex 13153 -1.35032 21.5536 3.12097 Vertex 13154 -1.26187 22.1214 2.76451 Vertex 13155 -1.34506 20.7274 3.57499 Vertex 13156 -1.26796 21.1793 3.35982 Vertex 13157 -1.13311 20.7965 3.63448 Vertex 13158 -1.06514 21.7381 3.07463 Vertex 13159 -0.975957 21.318 3.35994 Vertex 13160 -0.953818 22.3906 2.62477 Vertex 13161 -0.735424 21.9464 3.00825 Vertex 13162 -0.977992 20.5018 3.86529 Vertex 13163 -0.896035 20.8827 3.66905 Vertex 13164 -0.769108 20.5162 3.8996 Vertex 13165 -0.664893 21.4761 3.3324 Vertex 13166 -0.604652 21.0306 3.63944 Vertex 13167 -0.464559 21.8285 3.14763 Vertex 13168 -0.613623 20.2605 3.9899 Vertex 13169 -0.539734 20.6013 3.8624 Vertex 13170 -0.419985 20.2906 3.96427 Vertex 13171 -0.36898 21.3636 3.46829 Vertex 13172 -0.348268 20.8542 3.74269 Vertex 13173 -0.267547 22.2663 2.86408 Vertex 13174 -0.165866 21.7598 3.22668 Vertex 13175 -0.264117 20.074 4.00327 Vertex 13176 -0.291426 20.4599 3.92512 Vertex 13177 -0.18348 20.2625 4.01004 Vertex 13178 -0.220345 20.8318 3.77493 Vertex 13179 -0.0712475 20.1084 4.02616 Vertex 13180 -0.104003 20.5014 3.93844 Vertex 13181 0 20.2772 4.01542 Vertex 13182 -0.119159 21.2592 3.52826 Vertex 13183 0 20.8536 3.75306 Vertex 13184 0 21.6875 3.25081 Vertex 13185 0 22.5992 2.62624 Vertex 13186 -0.545489 22.6362 2.51232 Vertex 13187 -0.25368 22.9193 2.25024 Vertex 13188 0 23.2453 1.7318 Vertex 13189 -0.535348 23.2513 1.6263 Vertex 13190 -0.240251 23.4996 1.03711 Vertex 13191 0 23.5578 0.166549 Vertex 13192 -0.313861 23.5554 0.123225 Vertex 13193 -0.88038 22.9352 2.03166 Vertex 13194 -0.765361 23.4736 0.89286 Vertex 13195 -2.17292 15.65 2.60117 Vertex 13196 -1.97125 15.6252 2.84313 Vertex 13197 -1.7677 15.3069 2.8449 Vertex 13198 -1.99556 15.2669 2.5356 Vertex 13199 -1.51141 15.391 3.20654 Vertex 13200 -1.35555 15.0945 3.1912 Vertex 13201 -1.59682 15.0077 2.80972 Vertex 13202 -2.21763 15.2544 2.20347 Vertex 13203 -1.80064 14.9025 2.5155 Vertex 13204 -2.00903 14.8788 2.21333 Vertex 13205 -1.44845 14.6673 2.77175 Vertex 13206 -1.62913 14.595 2.50508 Vertex 13207 -2.07827 14.9123 1.86719 Vertex 13208 -1.77378 14.5991 2.2764 Vertex 13209 -1.80241 14.6413 1.96039 Vertex 13210 -1.5455 14.4538 2.3881 Vertex 13211 -1.75025 14.6818 1.58615 Vertex 13212 -1.51903 14.4377 2.07738 Vertex 13213 -1.47228 14.4732 1.71348 Vertex 13214 -1.24504 14.3193 2.50183 Vertex 13215 -1.24954 14.3088 2.1753 Vertex 13216 -1.43619 14.5178 1.41023 Vertex 13217 -1.25648 14.3414 1.89355 Vertex 13218 -1.16401 14.376 1.64364 Vertex 13219 -1.06479 14.2593 2.12409 Vertex 13220 -0.916418 14.4118 1.45089 Vertex 13221 -0.873136 14.267 1.90717 Vertex 13222 -0.576018 14.2966 1.72101 Vertex 13223 -0.793378 14.1457 2.35863 Vertex 13224 -0.577435 14.1523 2.13076 Vertex 13225 -0.277758 14.3407 1.55677 Vertex 13226 -0.303654 14.1825 1.95781 Vertex 13227 -0.0178235 14.2418 1.77013 Vertex 13228 -0.283299 14.0492 2.3442 Vertex 13229 -0.0177193 14.0974 2.16381 Vertex 13230 -2.34805 16.1459 2.59609 Vertex 13231 -2.22982 15.9686 2.72973 Vertex 13232 -2.30964 15.8377 2.41181 Vertex 13233 -2.39086 16.122 2.28713 Vertex 13234 -2.33616 15.7889 2.2478 Vertex 13235 -2.43754 15.9584 2.03461 Vertex 13236 -2.35509 15.6363 2.12471 Vertex 13237 -2.45693 15.6682 1.84602 Vertex 13238 -2.36579 15.3345 1.89665 Vertex 13239 -2.41019 15.4354 1.64961 Vertex 13240 -2.288 15.1964 1.76974 Vertex 13241 -2.2102 15.1834 1.46771 Vertex 13242 -2.00362 14.9179 1.52952 Vertex 13243 -1.9386 14.9334 1.23301 Vertex 13244 -1.69868 14.7197 1.29245 Vertex 13245 -1.69079 14.7432 1.03047 Vertex 13246 -1.34294 14.5538 1.18731 Vertex 13247 -1.03741 14.4102 1.07121 Vertex 13248 -0.588786 14.4544 1.33663 Vertex 13249 -0.288782 14.328 1.20424 Vertex 13250 -0.019911 14.4068 1.38206 Vertex 13251 -2.71987 17.9073 2.61577 Vertex 13252 -2.6635 17.8898 2.91371 Vertex 13253 -2.6068 17.6893 2.81173 Vertex 13254 -2.62242 17.7001 2.54428 Vertex 13255 -2.52684 17.5748 3.03459 Vertex 13256 -2.52749 17.394 2.88014 Vertex 13257 -2.55786 17.4891 2.66425 Vertex 13258 -2.44674 17.256 3.03701 Vertex 13259 -2.48619 17.098 2.85292 Vertex 13260 -2.52344 17.2319 2.68483 Vertex 13261 -2.40225 16.9051 2.96363 Vertex 13262 -2.43334 16.6809 2.75253 Vertex 13263 -2.4871 16.9193 2.64973 Vertex 13264 -2.33406 16.4071 2.82313 Vertex 13265 -2.41794 16.4199 2.48821 Vertex 13266 -2.4249 16.6271 2.34102 Vertex 13267 -2.41078 16.3547 2.17798 Vertex 13268 -2.58754 15.98 1.54726 Vertex 13269 -2.52718 15.9838 1.79167 Vertex 13270 -2.5113 15.6937 1.58482 Vertex 13271 -2.52513 15.7098 1.29724 Vertex 13272 -2.38874 15.4502 1.36286 Vertex 13273 -2.33529 15.4052 1.04005 Vertex 13274 -2.139 15.1542 1.14037 Vertex 13275 -2.1152 15.1544 0.849041 Vertex 13276 -1.9276 14.9533 0.944543 Vertex 13277 -1.95789 14.9244 0.655079 Vertex 13278 -1.75208 14.5924 0.723403 Vertex 13279 -2.034 14.7347 0.337778 Vertex 13280 -2.15582 15.0855 0.314548 Vertex 13281 -2.12716 15.1456 0.593457 Vertex 13282 -2.26606 15.3374 0.52941 Vertex 13283 -2.28692 15.3544 0.760692 Vertex 13284 -2.46711 15.5871 0.726599 Vertex 13285 -2.51365 15.6693 0.996099 Vertex 13286 -2.632 15.9369 1.0223 Vertex 13287 -2.6142 15.9831 1.29429 Vertex 13288 -2.65418 16.215 1.33537 Vertex 13289 -2.60577 16.2323 1.56529 Vertex 13290 -2.53179 16.258 1.79875 Vertex 13291 -2.57659 16.4792 1.64187 Vertex 13292 -2.49769 16.5225 1.85876 Vertex 13293 -2.43319 16.5084 2.04291 Vertex 13294 -2.46462 16.7548 1.93004 Vertex 13295 -2.41883 16.7306 2.12516 Vertex 13296 -2.43184 16.9309 2.22227 Vertex 13297 -2.45429 16.8644 2.44614 Vertex 13298 -2.49012 17.0578 2.51955 Vertex 13299 -2.45033 16.2418 2.01684 Vertex 13300 -2.81521 18.1098 2.61646 Vertex 13301 -2.70286 17.8394 2.29004 Vertex 13302 -2.59999 17.6213 2.25186 Vertex 13303 -2.57553 17.5355 1.99291 Vertex 13304 -2.51713 17.3611 1.9688 Vertex 13305 -2.54485 17.3282 1.78533 Vertex 13306 -2.54849 17.1169 1.71925 Vertex 13307 -2.63166 17.0543 1.50188 Vertex 13308 -2.67522 16.8134 1.38897 Vertex 13309 -2.76943 16.7666 1.16012 Vertex 13310 -2.80527 16.5824 1.01917 Vertex 13311 -2.54129 17.4709 2.42282 Vertex 13312 -2.51864 17.3982 2.17516 Vertex 13313 -2.47736 17.2227 2.1116 Vertex 13314 -2.49488 17.1722 1.92209 Vertex 13315 -2.50463 16.9446 1.83267 Vertex 13316 -2.57888 16.8772 1.61872 Vertex 13317 -2.62565 16.6355 1.50903 Vertex 13318 -2.72192 16.5831 1.27125 Vertex 13319 -2.73318 16.3712 1.18912 Vertex 13320 -2.79914 16.364 0.911938 Vertex 13321 -2.72736 16.0969 0.854136 Vertex 13322 -2.73347 16.0462 0.552067 Vertex 13323 -2.57481 15.7437 0.503628 Vertex 13324 -2.53613 15.7507 0.225572 Vertex 13325 -2.36213 15.5366 0.270787 Vertex 13326 -2.34166 15.5909 0.008906 Vertex 13327 -2.25772 15.2548 0.0257278 Vertex 13328 -2.3379 15.0098 -0.346048 Vertex 13329 -2.19764 14.8488 0.013308 Vertex 13330 -2.24661 15.3373 0.310575 Vertex 13331 -2.40757 15.5083 0.486601 Vertex 13332 -2.62146 15.837 0.767326 Vertex 13333 -2.69795 16.1727 1.10916 Vertex 13334 -2.65887 16.4112 1.41276 Vertex 13335 -2.53594 16.7153 1.73368 Vertex 13336 -2.45204 16.9681 2.02477 Vertex 13337 -2.46386 17.1415 2.15859 Vertex 13338 -2.4649 17.111 2.33579 Vertex 13339 -2.51152 17.2925 2.48898 Vertex 13340 -2.48622 17.2801 2.29212 Vertex 13341 -0.130615 19.633 3.95872 Vertex 13342 0 19.4528 4.07951 Vertex 13343 -0.106369 19.2738 4.2155 Vertex 13344 -0.202298 19.4144 4.03379 Vertex 13345 0 19.1351 4.34776 Vertex 13346 -0.118347 18.9915 4.43412 Vertex 13347 -0.21382 19.1035 4.29341 Vertex 13348 0 18.8701 4.53969 Vertex 13349 -0.138425 18.7564 4.60399 Vertex 13350 -0.243778 18.8463 4.47397 Vertex 13351 -0.302558 19.5397 3.89489 Vertex 13352 -0.285495 19.2215 4.11743 Vertex 13353 -0.342897 19.3324 3.91708 Vertex 13354 -0.319928 18.9362 4.30925 Vertex 13355 -0.381511 19.0316 4.11601 Vertex 13356 -0.347286 18.6831 4.45134 Vertex 13357 -0.408477 18.7387 4.25699 Vertex 13358 -0.42136 19.4004 3.71681 Vertex 13359 -0.441777 19.1147 3.89214 Vertex 13360 -0.512336 19.1835 3.6553 Vertex 13361 -0.470411 18.8162 4.03647 Vertex 13362 -0.549885 18.8944 3.82096 Vertex 13363 -0.487149 18.541 4.13999 Vertex 13364 -0.532291 18.5947 3.94677 Vertex 13365 -0.571521 19.2397 3.49556 Vertex 13366 -0.652124 18.9768 3.62359 Vertex 13367 -0.747407 19.0331 3.49669 Vertex 13368 -0.630455 19.1589 3.4471 Vertex 13369 -0.684065 18.6974 3.74905 Vertex 13370 -0.843027 18.7836 3.6099 Vertex 13371 -0.593484 18.5698 3.86474 Vertex 13372 -0.71867 18.4354 3.81379 Vertex 13373 -0.856568 18.5228 3.71533 Vertex 13374 0 19.9153 3.99358 Vertex 13375 -0.0983095 19.8864 3.98774 Vertex 13376 -0.303955 19.8483 3.9497 Vertex 13377 -0.493944 19.7927 3.92141 Vertex 13378 -0.371069 19.76 3.92121 Vertex 13379 -0.43601 19.6145 3.81791 Vertex 13380 -0.524256 19.4119 3.55892 Vertex 13381 -0.572944 19.6119 3.70254 Vertex 13382 -0.619016 19.2255 3.43355 Vertex 13383 -0.637193 19.2705 3.44236 Vertex 13384 -0.628386 19.3251 3.45276 Vertex 13385 -0.625474 19.4194 3.49701 Vertex 13386 -0.652985 19.2131 3.42981 Vertex 13387 -0.759312 19.1857 3.46643 Vertex 13388 -0.692008 19.2612 3.46749 Vertex 13389 -0.700072 19.3345 3.46515 Vertex 13390 -0.65291 19.3056 3.44871 Vertex 13391 -1.03647 18.8713 3.54634 Vertex 13392 -0.982042 19.0045 3.5013 Vertex 13393 -0.154157 18.5906 4.73542 Vertex 13394 0 18.5189 4.81005 Vertex 13395 -0.16657 18.4271 4.84758 Vertex 13396 -0.302702 18.4908 4.74114 Vertex 13397 -0.383788 18.5208 4.56279 Vertex 13398 -0.416252 18.3676 4.65784 Vertex 13399 -0.473709 18.4006 4.46946 Vertex 13400 -0.515007 18.4222 4.27492 Vertex 13401 -0.530477 18.3091 4.40568 Vertex 13402 -0.578084 18.3465 4.24831 Vertex 13403 -0.627328 18.3681 4.10532 Vertex 13404 -0.656354 18.2612 4.2559 Vertex 13405 -0.715457 18.2883 4.12922 Vertex 13406 -0.715009 18.316 4.02633 Vertex 13407 -0.804435 18.1664 4.12278 Vertex 13408 -0.800952 18.1905 4.01767 Vertex 13409 -0.706098 18.2978 3.84105 Vertex 13410 -0.8451 18.2666 3.77756 Vertex 13411 -0.810299 18.0793 3.91875 Vertex 13412 -0.749665 18.2333 3.94112 Vertex 13413 -0.852782 18.0272 3.99273 Vertex 13414 -0.916301 18.0168 3.79495 Vertex 13415 -0.841272 18.0252 3.84683 Vertex 13416 -0.924204 17.9353 3.84813 Vertex 13417 -0.847953 17.8198 3.96971 Vertex 13418 -0.810524 17.7882 4.01954 Vertex 13419 -0.826296 17.7363 4.02159 Vertex 13420 -0.774593 17.8207 4.10915 Vertex 13421 -0.801284 17.8116 4.04827 Vertex 13422 -0.834396 17.9083 4.0584 Vertex 13423 -0.800828 17.9158 4.14713 Vertex 13424 -0.79155 18.0358 4.1956 Vertex 13425 -0.705896 18.021 4.31027 Vertex 13426 -0.742208 17.921 4.24348 Vertex 13427 -0.632011 18.1231 4.35484 Vertex 13428 -0.522166 18.0742 4.45862 Vertex 13429 -0.581583 17.9908 4.4132 Vertex 13430 -0.510353 18.1614 4.47075 Vertex 13431 -0.462395 18.085 4.54889 Vertex 13432 -0.410362 18.1812 4.67709 Vertex 13433 -0.296274 18.0944 4.80199 Vertex 13434 -0.382829 18.0096 4.65018 Vertex 13435 -0.163354 18.2128 4.87284 Vertex 13436 0 18.1027 4.88241 Vertex 13437 -0.144251 17.9846 4.82203 Vertex 13438 0 17.8613 4.72668 Vertex 13439 -0.0943477 17.7449 4.58391 Vertex 13440 -0.210896 17.8663 4.67153 Vertex 13441 -0.264228 17.8706 4.51387 Vertex 13442 -0.23888 17.8356 4.3913 Vertex 13443 -0.270094 17.9011 4.33923 Vertex 13444 -0.301146 17.928 4.43803 Vertex 13445 0 17.6279 4.48641 Vertex 13446 -0.091416 17.5324 4.40295 Vertex 13447 -0.162869 17.6686 4.45227 Vertex 13448 -0.254071 17.8266 4.29177 Vertex 13449 -0.232631 17.773 4.36289 Vertex 13450 -0.339527 17.7895 4.19941 Vertex 13451 -0.243183 17.6933 4.31734 Vertex 13452 -0.321503 17.6164 4.27653 Vertex 13453 -0.442805 17.7487 4.17368 Vertex 13454 -0.552935 17.8149 4.10912 Vertex 13455 -0.614159 17.7058 4.13188 Vertex 13456 -0.69849 17.7851 4.09385 Vertex 13457 0 17.4066 4.36461 Vertex 13458 -0.0887898 17.3079 4.34614 Vertex 13459 -0.201062 17.4469 4.34721 Vertex 13460 0 17.1894 4.3318 Vertex 13461 -0.142173 17.197 4.32691 Vertex 13462 -0.334145 17.3465 4.31041 Vertex 13463 -0.493375 17.5371 4.22959 Vertex 13464 -0.277237 17.1207 4.28528 Vertex 13465 -0.515484 17.2571 4.25642 Vertex 13466 -0.253879 17.0429 4.20436 Vertex 13467 0 16.9818 4.08607 Vertex 13468 -0.192709 16.9692 3.92377 Vertex 13469 -0.435878 17.0429 4.00721 Vertex 13470 -0.176234 16.0679 3.8514 Vertex 13471 0 16.0089 3.99933 Vertex 13472 -0.210659 15.9433 4.09872 Vertex 13473 -0.384863 16.003 3.91658 Vertex 13474 -0.222939 15.8461 4.16344 Vertex 13475 0 15.739 4.19286 Vertex 13476 -0.228722 15.5868 4.13207 Vertex 13477 -0.451216 15.7079 4.09795 Vertex 13478 -0.694285 17.4312 4.17975 Vertex 13479 -0.804762 17.6017 4.08885 Vertex 13480 -0.758545 17.7265 4.0724 Vertex 13481 -0.730175 17.1985 4.16505 Vertex 13482 -0.867257 17.3285 4.11305 Vertex 13483 -0.701883 17.1191 4.08502 Vertex 13484 -0.554759 17.0271 3.79132 Vertex 13485 -0.822168 17.0972 3.83698 Vertex 13486 -0.524746 16.0604 3.7292 Vertex 13487 -0.623941 15.9205 3.96971 Vertex 13488 -0.775964 15.9736 3.75332 Vertex 13489 -0.652421 15.8126 4.02429 Vertex 13490 -0.651782 15.5207 3.97927 Vertex 13491 -0.860755 15.6347 3.8953 Vertex 13492 -0.912393 17.6359 3.99691 Vertex 13493 -0.901811 17.4727 4.07808 Vertex 13494 -0.976609 17.347 4.03099 Vertex 13495 -1.10424 17.1745 3.80593 Vertex 13496 -0.981307 17.0894 3.58714 Vertex 13497 -1.25735 17.1601 3.53035 Vertex 13498 -0.943635 16.0107 3.50729 Vertex 13499 -1.0731 15.8686 3.72666 Vertex 13500 -1.24008 15.9136 3.45687 Vertex 13501 -1.09353 15.7541 3.76832 Vertex 13502 -1.0175 15.4375 3.71739 Vertex 13503 -1.28378 15.569 3.54535 Vertex 13504 -1.27305 17.7424 3.64581 Vertex 13505 -1.1428 17.7047 3.77063 Vertex 13506 -1.36803 17.5433 3.62374 Vertex 13507 -1.29046 17.388 3.71439 Vertex 13508 -1.49312 17.309 3.49336 Vertex 13509 -1.58132 17.4089 3.42758 Vertex 13510 -1.47711 17.2223 3.42855 Vertex 13511 -1.40305 17.1408 3.29775 Vertex 13512 -1.57962 17.1812 3.22822 Vertex 13513 -1.37919 15.9828 3.23423 Vertex 13514 -1.50798 15.8208 3.3575 Vertex 13515 -1.60864 15.9338 3.14895 Vertex 13516 -1.53705 15.7082 3.36507 Vertex 13517 -1.74043 15.6259 3.09911 Vertex 13518 -1.06831 18.6037 3.62256 Vertex 13519 -1.34467 18.7038 3.58012 Vertex 13520 -1.02012 18.3249 3.72861 Vertex 13521 -1.27874 18.3874 3.65817 Vertex 13522 -1.65817 18.7889 3.5614 Vertex 13523 -1.60328 18.4743 3.59761 Vertex 13524 -1.8979 18.6083 3.55479 Vertex 13525 -1.46456 18.1311 3.6637 Vertex 13526 -1.80787 18.2206 3.60048 Vertex 13527 -2.0976 18.378 3.51506 Vertex 13528 -2.19125 18.6236 3.43063 Vertex 13529 -2.00763 18.7551 3.52266 Vertex 13530 -2.24474 18.1136 3.46334 Vertex 13531 -1.95445 17.9445 3.55396 Vertex 13532 -0.94363 18.0891 3.76785 Vertex 13533 -1.15644 18.0948 3.72261 Vertex 13534 -1.31519 17.834 3.63956 Vertex 13535 -1.6288 17.8293 3.57865 Vertex 13536 -1.821 17.5232 3.43106 Vertex 13537 -2.07435 17.6506 3.43829 Vertex 13538 -2.29983 17.8484 3.407 Vertex 13539 -2.1603 17.4142 3.28643 Vertex 13540 -2.33581 17.6122 3.27894 Vertex 13541 -1.58804 17.141 3.13029 Vertex 13542 -1.7469 17.083 3.13312 Vertex 13543 -1.757 17.1854 3.21503 Vertex 13544 -1.70021 16.9149 3.03396 Vertex 13545 -1.88081 16.6882 2.99362 Vertex 13546 -1.96078 16.9183 3.09451 Vertex 13547 -1.78144 16.4314 2.9353 Vertex 13548 -1.81559 16.1825 2.96228 Vertex 13549 -1.96781 16.4165 2.97399 Vertex 13550 -1.66899 16.0797 3.01872 Vertex 13551 -1.79607 15.9621 3.04513 Vertex 13552 -1.70074 17.3685 3.36296 Vertex 13553 -1.75988 17.263 3.28006 Vertex 13554 -2.10076 17.125 3.16189 Vertex 13555 -2.06212 16.9397 3.10815 Vertex 13556 -2.18894 16.9365 3.07455 Vertex 13557 -2.26585 16.6796 2.9804 Vertex 13558 -2.0905 16.4112 2.96065 Vertex 13559 -2.15735 16.167 2.86118 Vertex 13560 -2.23482 17.2573 3.17096 Vertex 13561 -1.99344 17.2867 3.27656 Vertex 13562 0 15.4476 4.06176 Vertex 13563 -0.195168 15.3327 3.95394 Vertex 13564 -0.420502 15.4345 3.99513 Vertex 13565 -0.587452 15.3386 3.87639 Vertex 13566 -0.797981 15.3863 3.83824 Vertex 13567 -0.960063 15.3374 3.69344 Vertex 13568 -0.190827 15.2228 3.93042 Vertex 13569 0 15.1189 3.98341 Vertex 13570 -0.173767 14.9915 4.01414 Vertex 13571 -0.367988 15.1269 3.93496 Vertex 13572 0 14.8484 4.05258 Vertex 13573 -0.160841 14.6713 4.04065 Vertex 13574 -0.332859 14.8129 4.01122 Vertex 13575 0 14.5109 3.99362 Vertex 13576 -0.146877 14.3188 3.89148 Vertex 13577 -0.271343 14.4674 3.98485 Vertex 13578 -0.577815 15.235 3.86197 Vertex 13579 -0.524462 14.9564 3.92573 Vertex 13580 -0.745661 15.1003 3.8193 Vertex 13581 -0.438985 14.5956 3.97038 Vertex 13582 -0.632331 14.7295 3.88868 Vertex 13583 -0.283603 14.2828 3.87001 Vertex 13584 -0.442512 14.3786 3.88173 Vertex 13585 -0.959987 15.2529 3.68493 Vertex 13586 -0.857967 14.8783 3.76206 Vertex 13587 -1.09227 15.0416 3.55511 Vertex 13588 -0.645391 14.4745 3.82673 Vertex 13589 -0.859555 14.5849 3.69509 Vertex 13590 -0.352026 14.2167 3.79711 Vertex 13591 -0.533281 14.2604 3.75719 Vertex 13592 -1.06701 14.6852 3.45309 Vertex 13593 -1.2705 14.7219 3.11023 Vertex 13594 -0.714444 14.3139 3.63402 Vertex 13595 -0.900736 14.3746 3.41603 Vertex 13596 -0.351798 14.1426 3.70485 Vertex 13597 -0.515339 14.1537 3.59891 Vertex 13598 -1.09392 14.3985 3.13374 Vertex 13599 -1.21934 14.366 2.82275 Vertex 13600 -0.687109 14.1894 3.44299 Vertex 13601 -0.836363 14.1978 3.21605 Vertex 13602 -0.493817 14.1069 3.50432 Vertex 13603 -0.914842 14.1711 2.93774 Vertex 13604 -0.90155 14.152 2.64325 Vertex 13605 -0.597903 14.1014 3.31343 Vertex 13606 -0.629243 14.0603 3.0798 Vertex 13607 -0.412256 14.0579 3.44534 Vertex 13608 -0.596257 14.0171 2.82568 Vertex 13609 -0.487135 14.0188 2.56846 Vertex 13610 -0.411945 13.995 3.22919 Vertex 13611 -0.354171 13.9368 3.00412 Vertex 13612 -0.259474 14.0615 3.58707 Vertex 13613 -0.239175 13.9715 3.38356 Vertex 13614 -0.226509 13.9374 2.77399 Vertex 13615 -0.0194183 13.9796 2.5529 Vertex 13616 -0.15213 13.9004 3.18972 Vertex 13617 -0.00964525 13.8924 2.98482 Vertex 13618 -0.132404 14.035 3.54904 Vertex 13619 0 13.9324 3.36233 Vertex 13620 -1.60881 19.0042 3.52109 Vertex 13621 -1.34294 18.987 3.5535 Vertex 13622 -1.67052 18.8892 3.54918 Vertex 13623 -1.89527 18.9339 3.48331 Vertex 13624 -2.04002 19.0519 3.34367 Vertex 13625 -2.00907 18.8616 3.48782 Vertex 13626 -2.18736 18.8697 3.35485 Vertex 13627 -2.22057 19.0611 3.20397 Vertex 13628 -2.23994 19.2211 2.9949 Vertex 13629 -2.37793 19.1033 2.91619 Vertex 13630 -2.31875 19.285 2.77487 Vertex 13631 -2.29852 19.4173 2.71508 Vertex 13632 -2.28621 19.3629 2.77113 Vertex 13633 -2.39031 19.3191 2.60766 Vertex 13634 -2.34912 19.3862 2.62155 Vertex 13635 -2.0054 19.6558 3.0447 Vertex 13636 -2.13205 19.5949 2.89961 Vertex 13637 -2.01072 19.7283 2.99971 Vertex 13638 -1.86224 19.7859 3.1485 Vertex 13639 -1.84863 19.7009 3.17223 Vertex 13640 -1.68805 19.8075 3.28402 Vertex 13641 -1.5172 19.7909 3.38184 Vertex 13642 -1.34817 19.7946 3.44955 Vertex 13643 -1.50062 19.867 3.37385 Vertex 13644 -1.32816 19.8531 3.43239 Vertex 13645 -1.18897 19.7509 3.47996 Vertex 13646 -1.05816 19.6371 3.49276 Vertex 13647 -1.03705 19.6798 3.47807 Vertex 13648 -0.9135 19.5574 3.48038 Vertex 13649 -0.777172 19.4521 3.46267 Vertex 13650 -0.806971 19.4275 3.48148 Vertex 13651 -0.718072 19.7428 3.82908 Vertex 13652 -0.716218 19.584 3.6105 Vertex 13653 -0.873832 19.7177 3.73676 Vertex 13654 -0.752216 19.4802 3.47604 Vertex 13655 -0.875558 19.6193 3.55587 Vertex 13656 -1.04053 19.8516 3.80833 Vertex 13657 -1.02276 19.7416 3.65308 Vertex 13658 -1.19666 19.8874 3.70825 Vertex 13659 -1.02281 19.7062 3.50065 Vertex 13660 -1.17276 19.814 3.55381 Vertex 13661 -1.4108 20.0453 3.7021 Vertex 13662 -1.3529 19.9431 3.57904 Vertex 13663 -1.59763 20.0868 3.54677 Vertex 13664 -1.32377 19.8976 3.44891 Vertex 13665 -1.51962 19.9857 3.42607 Vertex 13666 -1.88784 20.2517 3.43712 Vertex 13667 -1.80297 20.0662 3.37269 Vertex 13668 -2.0923 20.1888 3.22653 Vertex 13669 -1.69614 19.9469 3.26164 Vertex 13670 -1.95996 19.9563 3.17501 Vertex 13671 -2.32025 20.3082 2.90756 Vertex 13672 -2.20545 20.0013 3.02629 Vertex 13673 -2.40541 20.0552 2.72484 Vertex 13674 -2.04266 19.8036 2.98863 Vertex 13675 -2.24387 19.7768 2.84716 Vertex 13676 -2.5934 20.0485 2.34495 Vertex 13677 -2.45526 19.7481 2.61937 Vertex 13678 -2.63923 19.7029 2.28772 Vertex 13679 -2.28348 19.5728 2.70309 Vertex 13680 -2.4483 19.5158 2.55036 Vertex 13681 -2.76979 19.6809 1.95274 Vertex 13682 -2.58977 19.4767 2.35398 Vertex 13683 -2.73134 19.4535 2.05871 Vertex 13684 -2.40465 19.4163 2.55425 Vertex 13685 -2.49977 19.3599 2.46569 Vertex 13686 -2.85314 19.4509 1.75725 Vertex 13687 -2.78134 19.3099 1.99144 Vertex 13688 -2.54784 19.1195 2.57609 Vertex 13689 -2.68115 19.1819 2.29711 Vertex 13690 -2.4023 19.3659 2.56544 Vertex 13691 -2.90661 18.9685 1.98373 Vertex 13692 -2.92757 19.1747 1.70394 Vertex 13693 -2.45194 18.8431 3.07826 Vertex 13694 -2.69249 18.8195 2.66501 Vertex 13695 -2.508 18.0068 3.24123 Vertex 13696 -2.49947 18.2522 3.24294 Vertex 13697 -2.51803 17.7883 3.15915 Vertex 13698 -2.69899 18.0924 2.95441 Vertex 13699 -2.48345 18.5477 3.18144 Vertex 13700 -2.72123 18.3051 2.89926 Vertex 13701 -2.72859 18.5493 2.7953 Vertex 13702 -2.87712 18.3076 2.51646 Vertex 13703 -2.90967 18.5111 2.36268 Vertex 13704 -2.90342 18.7497 2.21348 Vertex 13705 -2.99371 18.4735 1.96426 Vertex 13706 -3.02037 18.6999 1.83626 Vertex 13707 -3.01996 18.8931 1.66311 Vertex 13708 -2.99147 18.4788 1.64472 Vertex 13709 -3.03811 18.7395 1.57684 Vertex 13710 -2.35312 20.4973 2.89916 Vertex 13711 -2.49584 20.3864 2.56212 Vertex 13712 -2.72134 20.0193 1.99144 Vertex 13713 -2.62893 20.3698 2.23701 Vertex 13714 -2.83882 19.7125 1.64875 Vertex 13715 -2.79824 20.0093 1.67871 Vertex 13716 -2.90843 19.4279 1.51268 Vertex 13717 -2.88346 19.7254 1.36625 Vertex 13718 -2.99259 19.096 1.4332 Vertex 13719 -2.94821 19.3836 1.25124 Vertex 13720 -3.02263 18.9646 1.41539 Vertex 13721 -3.00517 18.8798 1.33654 Vertex 13722 -2.99473 19.0043 1.10845 Vertex 13723 -2.96203 18.5445 1.3796 Vertex 13724 -2.96427 18.6689 1.17281 Vertex 13725 -2.93761 17.6385 0.0352012 Vertex 13726 -3.00744 17.7293 0.134765 Vertex 13727 -3.01198 17.5177 0.183616 Vertex 13728 -2.98542 17.4025 0.138783 Vertex 13729 -2.89133 17.6514 -0.114406 Vertex 13730 -2.87397 17.2705 -0.0906247 Vertex 13731 -2.56133 17.8129 -0.950709 Vertex 13732 -2.51744 17.4583 -0.938367 Vertex 13733 -2.32675 17.332 -1.30526 Vertex 13734 -2.37669 17.7073 -1.29632 Vertex 13735 -2.18492 17.5997 -1.6265 Vertex 13736 -2.86108 18.1794 1.45674 Vertex 13737 -2.90071 18.3431 1.31382 Vertex 13738 -2.82679 18.0391 1.37128 Vertex 13739 -2.87349 18.2682 1.29226 Vertex 13740 -2.89089 18.1308 1.16116 Vertex 13741 -2.83901 17.8657 1.21265 Vertex 13742 -2.87072 17.7322 1.08728 Vertex 13743 -2.91272 17.9957 1.03376 Vertex 13744 -2.94924 17.7649 0.836295 Vertex 13745 -2.94621 17.3766 0.753702 Vertex 13746 -3.00728 17.4605 0.461922 Vertex 13747 -3.01511 17.1618 0.390089 Vertex 13748 -3.01821 17.3923 0.220439 Vertex 13749 -2.92945 17.0308 0.0957072 Vertex 13750 -2.75965 16.86 -0.224952 Vertex 13751 -2.71943 17.1647 -0.374785 Vertex 13752 -2.54645 16.7849 -0.538501 Vertex 13753 -2.53238 17.1292 -0.794769 Vertex 13754 -2.34404 16.9471 -1.17927 Vertex 13755 -2.09555 17.2782 -1.62483 Vertex 13756 -2.84655 21.3137 -1.48834 Vertex 13757 -2.96412 21.4149 -1.21746 Vertex 13758 -3.04444 21.3821 -0.83862 Vertex 13759 -3.04603 21.1331 -1.03214 Vertex 13760 -3.07405 21.0703 -0.655406 Vertex 13761 -3.09471 21.2821 -0.342181 Vertex 13762 -3.09197 21.1425 -0.096018 Vertex 13763 -3.08882 21.004 -0.307686 Vertex 13764 -3.09922 20.8438 0.0265118 Vertex 13765 -3.05489 20.7724 0.429799 Vertex 13766 -3.02758 20.3835 0.631758 Vertex 13767 -2.91602 20.2357 0.946214 Vertex 13768 -2.9037 19.9617 1.14562 Vertex 13769 -2.94507 20.0247 0.955452 Vertex 13770 -2.93464 19.7294 1.11637 Vertex 13771 -2.95114 19.9538 0.97589 Vertex 13772 -2.98478 19.6862 0.935796 Vertex 13773 -2.99134 19.3451 1.02026 Vertex 13774 -3.0382 19.2449 0.885032 Vertex 13775 -3.03609 19.0178 0.952061 Vertex 13776 -1.86771 15.8741 3.01885 Vertex 13777 -2.05173 15.9289 2.86539 Vertex 13778 -2.00426 16.0794 2.90573 Vertex 13779 -0.500789 17.9404 4.18358 Vertex 13780 -0.47783 17.9447 4.28197 Vertex 13781 -0.397667 17.9729 4.22456 Vertex 13782 0 14.1625 3.72796 Vertex 13783 -0.970601 19.3068 2.78107 Vertex 13784 -1.16033 19.2406 2.79002 Vertex 13785 -1.5211 19.2032 2.74492 Vertex 13786 -1.80206 19.2411 2.6109 Vertex 13787 -1.96122 19.3108 2.44596 Vertex 13788 -2.0219 19.3777 2.36722 Vertex 13789 -1.99 19.4356 2.38857 Vertex 13790 -1.86291 19.5264 2.47697 Vertex 13791 -1.64218 19.6278 2.62467 Vertex 13792 -1.39964 19.6287 2.73484 Vertex 13793 -1.18887 19.5329 2.77556 Vertex 13794 -1.02714 19.4023 2.78077 Vertex 13795 -1.01975 19.0564 3.50725 Vertex 13796 -1.0123 19.1126 3.51818 Vertex 13797 -2.24322 19.5128 2.74638 Vertex 13798 -2.20794 19.4818 2.84613 Vertex 13799 -1.26964 19.1454 3.11782 Vertex 13800 -0.827108 19.2339 3.09927 Vertex 13801 -0.774478 19.3153 3.08458 Vertex 13802 -0.965608 19.4893 3.09197 Vertex 13803 -1.21197 19.6562 3.08371 Vertex 13804 -1.51826 19.7391 2.99775 Vertex 13805 -1.82605 19.6458 2.8021 Vertex 13806 -2.06847 19.4806 2.6146 Vertex 13807 -2.15147 19.4065 2.55161 Vertex 13808 -2.15867 19.3299 2.56012 Vertex 13809 -2.01096 19.2416 2.77079 Vertex 13810 -1.75207 19.1526 2.99185 Vertex 13811 -1.20374 19.6957 3.47632 Vertex 13812 -0.942988 19.5178 3.48206 Vertex 13813 -0.741603 19.3227 3.47213 Vertex 13814 -0.796468 19.2117 3.48085 Vertex 13815 -1.29316 19.0857 3.52435 Vertex 13816 -1.81134 19.0796 3.4135 Vertex 13817 -2.09655 19.1875 3.16727 Vertex 13818 -2.22646 19.3161 2.88292 Vertex 13819 -2.21415 19.414 2.8551 Vertex 13820 -2.1022 19.526 2.96034 Vertex 13821 -1.67848 19.8805 3.25572 Vertex 13822 -0.644491 19.3232 3.44598 Vertex 13823 -0.670389 19.3635 3.44991 Vertex 13824 -0.679379 19.3582 3.45125 Vertex 13825 -2.35998 19.399 2.59182 Vertex 13826 -2.32739 19.4341 2.63024 Vertex 13827 -2.37255 19.4022 2.5829 Vertex 13828 -2.33728 19.4498 2.61463 Vertex 13829 -0.888143 19.5895 3.46513 Vertex 13830 -0.76549 19.4611 3.45469 Vertex 13831 -0.895226 19.5816 3.4638 Vertex 13832 -1.16993 19.7968 3.46869 Vertex 13833 -1.02802 19.6942 3.47227 Vertex 13834 -1.17498 19.7835 3.46681 Vertex 13835 -1.48617 19.9358 3.35281 Vertex 13836 -1.32056 19.8751 3.42608 Vertex 13837 -1.48626 19.9135 3.35438 Vertex 13838 -1.86577 19.8603 3.11625 Vertex 13839 -1.67725 19.909 3.2456 Vertex 13840 -1.86231 19.8369 3.12224 Vertex 13841 -2.14003 19.6601 2.84559 Vertex 13842 -2.01241 19.7579 2.98501 Vertex 13843 -2.13548 19.6384 2.8552 Vertex 13844 -2.24908 19.5336 2.71855 Vertex 13845 -2.85322 20.0287 1.51653 Vertex 13846 -0.505967 19.9009 4.00313 Vertex 13847 -0.442161 19.9562 3.99106 Vertex 13848 -0.310131 17.9102 4.23119 Vertex 13849 -0.338852 17.9543 4.23417 Vertex 13850 -0.330696 17.8708 4.18443 Vertex 13851 -0.42423 17.8822 4.12727 Vertex 13852 -0.554824 17.8857 4.093 Vertex 13853 -0.596933 17.9055 4.27696 Vertex 13854 -0.529794 17.9387 4.36545 Vertex 13855 -0.409269 17.9573 4.37322 Vertex 13856 -0.719749 17.8209 4.1204 Vertex 13857 -0.692498 17.8512 4.16508 Vertex 13858 -0.670793 17.8461 4.11129 Vertex 13859 -0.560967 17.9119 4.12737 Vertex 13860 -0.619323 17.8895 4.19454 Vertex 13861 -0.686265 17.8762 4.23612 Vertex 13862 -0.339098 17.9603 4.33119 Vertex 13863 -0.361625 17.9547 4.50096 Vertex 13864 -0.804936 18.0708 3.87775 Vertex 13865 -0.792609 18.1124 3.82374 Vertex 13866 -0.7574 18.1699 3.85109 Vertex 13867 -0.274584 18.6483 4.61641 Vertex 13868 0 18.6695 4.68779 Vertex 13869 -0.434168 18.528 4.36651 Vertex 13870 -0.559183 18.4244 4.07796 Vertex 13871 -0.627091 18.3913 4.00737 Vertex 13872 -0.66292 18.3517 3.95823 Vertex 13873 -0.665702 18.3152 3.91416 Vertex 13874 -0.692499 18.2663 3.86286 Vertex 13875 -0.678995 18.2868 3.88508 Vertex 13876 -0.312876 18.306 4.8075 Vertex 13877 0 18.331 4.88287 Vertex 13878 -0.48635 18.2495 4.53331 Vertex 13879 -0.566163 18.221 4.38104 Vertex 13880 -0.741403 18.1537 4.23776 Vertex 13881 -0.846649 18.0325 4.09022 Vertex 13882 -0.850551 17.9011 3.9775 Vertex 13883 -0.94688 17.8236 3.884 Vertex 13884 -0.861382 17.8766 3.93733 Vertex 13885 -1.07932 17.5028 3.90107 Vertex 13886 -1.13266 17.2578 3.87019 Vertex 13887 -0.215619 17.782 4.50154 Vertex 13888 -0.309747 17.9409 4.64701 Vertex 13889 -0.451189 17.9688 4.48146 Vertex 13890 -0.654025 17.9285 4.32472 Vertex 13891 -0.74271 17.8484 4.17301 Vertex 13892 -0.599075 18.3921 3.91342 Vertex 13893 -0.744112 18.193 3.88842 Vertex 13894 -0.847302 17.9492 3.91838 Vertex 13895 -0.830213 17.834 3.99462 Vertex 13896 -1.76849 17.3707 3.35673 Vertex 13897 -0.767009 18.1717 3.81979 Vertex 13898 -0.83233 18.0981 3.79847 Vertex 13899 -1.0772 17.9379 3.7304 Vertex 13900 -1.51158 17.5814 3.50729 Vertex 13901 -1.87573 17.2068 3.24711 Vertex 13902 -1.87852 17.1659 3.21581 Vertex 13903 -1.96111 17.0789 3.17112 Vertex 13904 -0.611742 18.3861 3.89495 Vertex 13905 -0.568943 18.4621 3.91193 Vertex 13906 -1.91532 16.0548 2.96034 Vertex 13907 -1.96616 16.1835 2.9438 Vertex 13908 -2.06567 16.6917 3.03259 Vertex 13909 -1.65359 17.2545 3.31621 Vertex 13910 -0.930525 17.1778 4.03116 Vertex 13911 -0.514569 17.1187 4.21905 Vertex 13912 -0.434713 15.8941 4.09221 Vertex 13913 0 15.9059 4.17819 Vertex 13914 -0.86289 15.8545 3.91745 Vertex 13915 -1.33055 15.7967 3.58848 Vertex 13916 -1.70739 15.8017 3.18554 Vertex 13917 -1.32414 17.2339 3.65082 Vertex 13918 0 17.045 4.28247 Vertex 13919 -2.38773 17.4094 3.15064 Vertex 13920 -2.32369 17.1035 3.08572 Vertex 13921 -0.384459 15.29 3.89713 Vertex 13922 0 15.2657 3.92847 Vertex 13923 -0.764666 15.2985 3.79518 Vertex 13924 -0.639968 19.1937 3.41641 Vertex 13925 -0.74045 19.1521 3.44074 Vertex 13926 -0.631576 19.1842 3.41788 Vertex 13927 -0.731838 19.1324 3.43766 Vertex 13928 -1.35037 18.9048 3.55323 Vertex 13929 -1.90469 18.8149 3.53725 Vertex 13930 -1.67892 18.8513 3.55476 Vertex 13931 -1.98951 18.8198 3.52269 Vertex 13932 -1.9049 18.8373 3.53146 Vertex 13933 -1.01012 19.0328 3.49764 Vertex 13934 -1.36603 18.9252 3.55413 Vertex 13935 -2.57979 18.1686 -1.20962 Vertex 13936 -2.63592 18.4988 -1.46353 Vertex 13937 -2.7986 19.0319 -1.55654 Vertex 13938 -2.98547 19.6581 -1.44743 Vertex 13939 -3.08471 20.0597 -1.12094 Vertex 13940 -3.12952 20.2571 -0.678932 Vertex 13941 -3.12047 20.2729 -0.260185 Vertex 13942 -3.06776 20.1136 -0.0234783 Vertex 13943 -3.04117 19.7935 0.047987 Vertex 13944 -3.09275 19.5828 0.074425 Vertex 13945 -3.00828 19.3523 0.095856 Vertex 13946 -3.07886 19.0857 0.1047 Vertex 13947 -2.99804 18.9681 0.098531 Vertex 13948 -2.99574 18.6561 0.069236 Vertex 13949 -2.98915 18.391 0.041502 Vertex 13950 -2.97968 18.16 0.0309827 Vertex 13951 -3.01178 21.0875 -1.15843 Vertex 13952 -3.07247 21.0104 -0.943615 Vertex 13953 -3.09323 20.9302 -0.431596 Vertex 13954 -3.10105 20.8828 -0.260874 Vertex 13955 -2.99632 20.0904 0.820833 Vertex 13956 -2.98512 19.9246 0.895204 Vertex 13957 -2.92358 18.4228 1.21358 Vertex 13958 -2.90742 18.3019 1.20377 Vertex 13959 -2.94285 18.1048 1.01246 Vertex 13960 -2.95667 18.0132 0.932062 Vertex 13961 -3.03707 17.4946 0.274719 Vertex 13962 0 22.8078 -2.5774 Vertex 13963 -1.13005 22.5417 -2.4899 Vertex 13964 -1.65807 22.2691 -2.37495 Vertex 13965 -2.55017 21.5371 -1.91516 Vertex 13966 -3.11066 20.6072 0.292614 Vertex 13967 -3.0336 19.5023 0.85338 Vertex 13968 -3.07659 19.0801 0.850452 Vertex 13969 -3.01932 18.8336 1.03332 Vertex 13970 -3.00428 17.6614 0.606983 Vertex 13971 -2.68922 17.4102 -0.516003 Vertex 13972 -2.86749 17.5731 -0.275474 Vertex 13973 -2.99899 18.0126 -0.0819878 Vertex 13974 -3.06016 18.7889 -0.101732 Vertex 13975 -3.06536 18.969 -0.0427452 Vertex 13976 -3.02801 18.509 -0.0896085 Vertex 13977 -3.0141 18.2234 -0.0616063 Vertex 13978 -2.67165 17.6217 -0.648514 Vertex 13979 -3.06343 19.2392 0.055809 Vertex 13980 -2.87572 19.3102 -1.40071 Vertex 13981 -2.73873 18.8018 -1.36903 Vertex 13982 -2.96546 19.5844 -1.37169 Vertex 13983 -3.03729 19.8541 -1.25778 Vertex 13984 -3.14954 20.1293 -0.921657 Vertex 13985 -2.65843 18.3918 -1.18016 Vertex 13986 -2.66153 18.0975 -0.929726 Vertex 13987 -2.71037 17.8361 -0.717224 Vertex 13988 -3.23303 20.2439 -0.565702 Vertex 13989 -3.24846 20.2474 -0.440129 Vertex 13990 -3.16014 20.129 -0.143211 Vertex 13991 -3.1299 19.9611 -0.0453375 Vertex 13992 -3.10142 19.6239 0.0486945 Vertex 13993 3.22848 19.1114 -0.18525 Vertex 13994 3.16621 19.1932 -0.062482 Vertex 13995 3.28085 19.3776 -0.065019 Vertex 13996 3.30639 19.2417 -0.179327 Vertex 13997 3.21088 19.5018 0.014449 Vertex 13998 3.34587 19.6756 -0.0601183 Vertex 13999 3.3772 19.524 -0.115024 Vertex 14000 3.45864 19.799 -0.200063 Vertex 14001 3.26706 19.8212 -0.0648592 Vertex 14002 3.41811 19.9483 -0.245126 Vertex 14003 3.22489 19.0455 -0.297062 Vertex 14004 3.16547 18.9958 -0.226729 Vertex 14005 3.27635 19.1704 -0.328346 Vertex 14006 3.20552 19.1571 -0.481873 Vertex 14007 3.17158 19.0222 -0.43881 Vertex 14008 3.36115 19.386 -0.232878 Vertex 14009 3.29425 19.3092 -0.372907 Vertex 14010 3.37855 19.5158 -0.318065 Vertex 14011 3.44048 19.6416 -0.230985 Vertex 14012 3.45647 19.7098 -0.367738 Vertex 14013 3.50963 19.8415 -0.376179 Vertex 14014 3.46852 19.8019 -0.527449 Vertex 14015 3.5134 19.9873 -0.440798 Vertex 14016 3.51533 19.9125 -0.616384 Vertex 14017 3.46439 19.7901 -0.746417 Vertex 14018 3.51336 20.0089 -0.768004 Vertex 14019 3.50932 19.8459 -0.898137 Vertex 14020 3.44806 19.6855 -0.951299 Vertex 14021 3.48709 19.8418 -1.08711 Vertex 14022 3.4707 19.6382 -1.11632 Vertex 14023 3.41312 19.4448 -1.07936 Vertex 14024 3.43274 19.5114 -1.27904 Vertex 14025 3.40809 19.2823 -1.2038 Vertex 14026 3.35468 19.0809 -1.09895 Vertex 14027 3.36652 19.0494 -1.27757 Vertex 14028 3.33543 18.8549 -1.13538 Vertex 14029 3.27898 18.7451 -1.00152 Vertex 14030 3.28947 18.6278 -1.1409 Vertex 14031 3.26282 18.5392 -0.989309 Vertex 14032 3.2414 18.3436 -0.968154 Vertex 14033 3.248 18.4164 -0.88166 Vertex 14034 3.24461 18.3902 -0.779043 Vertex 14035 3.23892 18.5318 -0.805179 Vertex 14036 3.23224 18.5169 -0.690385 Vertex 14037 3.24095 18.3445 -0.676438 Vertex 14038 3.20294 18.5188 -0.584371 Vertex 14039 3.13481 18.6696 -0.548466 Vertex 14040 3.14902 18.5878 -0.474289 Vertex 14041 3.0982 18.717 -0.445644 Vertex 14042 3.21845 18.6746 -0.675654 Vertex 14043 3.0771 18.8449 -0.55661 Vertex 14044 3.1516 18.8507 -0.695634 Vertex 14045 3.25679 18.7041 -0.822245 Vertex 14046 3.26014 18.7866 -0.941489 Vertex 14047 3.26351 18.8713 -0.833275 Vertex 14048 3.29853 18.948 -0.934804 Vertex 14049 3.30546 19.1003 -0.995211 Vertex 14050 3.34715 19.1052 -0.912559 Vertex 14051 3.33929 19.2571 -0.934048 Vertex 14052 3.32057 19.4089 -0.951932 Vertex 14053 3.36177 19.3643 -0.835531 Vertex 14054 3.3222 19.486 -0.841182 Vertex 14055 3.31846 19.5998 -0.854607 Vertex 14056 3.33514 19.5216 -0.729675 Vertex 14057 3.31513 19.6148 -0.747187 Vertex 14058 3.30639 19.6483 -0.644302 Vertex 14059 3.32532 19.6914 -0.714917 Vertex 14060 3.30022 19.6946 -0.556068 Vertex 14061 3.31283 19.5607 -0.629906 Vertex 14062 3.26568 19.6071 -0.537612 Vertex 14063 3.23678 19.5101 -0.522179 Vertex 14064 3.23884 19.5745 -0.456762 Vertex 14065 3.18714 19.398 -0.500671 Vertex 14066 3.30281 19.4536 -0.624447 Vertex 14067 3.21171 19.3451 -0.617319 Vertex 14068 3.35118 19.4149 -0.727423 Vertex 14069 3.36157 19.3056 -0.794556 Vertex 14070 3.365 19.5522 -0.95925 Vertex 14071 3.38586 19.6916 -0.82829 Vertex 14072 3.34975 19.2686 -1.0395 Vertex 14073 3.29393 18.9283 -1.01921 Vertex 14074 3.23248 18.2586 -0.490885 Vertex 14075 3.18468 18.1005 -0.316138 Vertex 14076 3.17388 18.2948 -0.363251 Vertex 14077 3.10444 18.3344 -0.224282 Vertex 14078 3.15943 18.4783 -0.404612 Vertex 14079 3.11943 18.6046 -0.365907 Vertex 14080 3.11099 18.6527 -0.249958 Vertex 14081 3.12386 18.7347 -0.351303 Vertex 14082 3.1155 17.9114 -0.297628 Vertex 14083 3.07796 17.9647 -0.203321 Vertex 14084 3.20891 17.9846 -0.403246 Vertex 14085 3.25333 18.028 -0.584128 Vertex 14086 3.2086 17.935 -0.539049 Vertex 14087 3.25745 18.1567 -0.638162 Vertex 14088 3.24273 18.0707 -0.773126 Vertex 14089 3.38611 19.747 -0.629279 Vertex 14090 3.18857 19.2586 -0.733783 Vertex 14091 3.10901 19.2427 -0.649442 Vertex 14092 3.06513 19.0823 -0.808342 Vertex 14093 3.18587 19.1468 -0.831105 Vertex 14094 3.29287 19.0634 -0.887387 Vertex 14095 3.17793 18.9963 -0.844328 Vertex 14096 3.0626 18.9846 -0.749619 Vertex 14097 3.34967 19.1845 -0.87553 Vertex 14098 3.30986 19.2372 -0.793983 Vertex 14099 3.37679 19.723 -0.472429 Vertex 14100 3.34696 19.6339 -0.404086 Vertex 14101 3.26683 19.4462 -0.406165 Vertex 14102 3.18889 19.2742 -0.501649 Vertex 14103 3.10453 19.1377 -0.639132 Vertex 14104 3.11053 18.8621 -0.425571 Vertex 14105 3.09427 19.0092 -0.578736 Vertex 14106 3.03596 19.0541 -0.707883 Vertex 14107 3.14183 18.8618 -0.292462 Vertex 14108 3.37639 20.0927 -0.395008 Vertex 14109 3.45357 20.1009 -0.589495 Vertex 14110 3.3152 20.149 -0.766262 Vertex 14111 3.41017 20.0204 -0.958995 Vertex 14112 3.28821 19.938 -1.16031 Vertex 14113 3.39341 19.75 -1.27005 Vertex 14114 3.2843 19.5593 -1.37186 Vertex 14115 3.35059 19.3007 -1.37588 Vertex 14116 3.24576 19.0312 -1.37594 Vertex 14117 3.28612 18.7902 -1.29027 Vertex 14118 3.15754 18.5908 -1.23969 Vertex 14119 3.19558 18.4358 -1.11839 Vertex 14120 3.09392 18.2726 -1.05158 Vertex 14121 3.18026 18.1525 -0.924562 Vertex 14122 3.11144 17.9454 -0.823738 Vertex 14123 3.19085 17.9079 -0.73662 Vertex 14124 3.09377 17.8183 -0.59363 Vertex 14125 3.14759 17.8935 -0.578097 Vertex 14126 3.02908 17.8041 -0.645702 Vertex 14127 2.979 17.788 -0.485124 Vertex 14128 2.99379 18.1675 -0.9133 Vertex 14129 2.88579 18.0792 -0.76313 Vertex 14130 2.9662 17.9997 -0.797053 Vertex 14131 2.8513 18.2076 -0.817845 Vertex 14132 2.78777 18.0459 -0.74972 Vertex 14133 2.76594 18.3104 -0.932092 Vertex 14134 2.93375 18.3367 -0.94768 Vertex 14135 2.86438 18.4981 -1.00877 Vertex 14136 3.0297 18.4568 -1.10827 Vertex 14137 3.11117 18.8011 -1.27177 Vertex 14138 2.97583 18.6493 -1.13441 Vertex 14139 2.91509 18.8527 -1.17867 Vertex 14140 2.79421 18.6483 -1.13889 Vertex 14141 2.86327 19.0804 -1.27769 Vertex 14142 3.03332 19.0436 -1.25659 Vertex 14143 2.96541 19.2787 -1.26226 Vertex 14144 3.16285 19.2892 -1.34462 Vertex 14145 3.18419 19.7708 -1.26603 Vertex 14146 3.06912 19.5161 -1.26438 Vertex 14147 2.96913 19.5155 -1.27679 Vertex 14148 3.1058 17.8703 -0.413889 Vertex 14149 2.99376 17.8114 -0.362609 Vertex 14150 3.0111 17.8309 -0.248268 Vertex 14151 2.89067 17.731 -0.444173 Vertex 14152 2.89215 17.6891 -0.3613 Vertex 14153 3.15254 19.9505 -1.11799 Vertex 14154 2.88232 17.8339 -0.631934 Vertex 14155 2.82904 17.7099 -0.521222 Vertex 14156 2.82198 17.6338 -0.422811 Vertex 14157 3.37089 20.2033 -0.510103 Vertex 14158 3.32819 20.1357 -0.348506 Vertex 14159 2.82311 18.0471 2.25115 Vertex 14160 2.92788 18.259 2.11849 Vertex 14161 2.89687 18.1917 1.73727 Vertex 14162 2.78346 17.9437 1.88996 Vertex 14163 2.67169 17.74 1.98118 Vertex 14164 2.78219 17.919 1.59677 Vertex 14165 2.6862 17.6969 1.70858 Vertex 14166 2.5909 17.5044 1.78175 Vertex 14167 2.75196 17.7478 1.46219 Vertex 14168 2.6668 17.5194 1.55328 Vertex 14169 2.6206 17.2976 1.57298 Vertex 14170 2.77253 17.597 1.3188 Vertex 14171 2.7317 17.3097 1.33507 Vertex 14172 2.7279 17.0074 1.25954 Vertex 14173 2.84508 17.3284 1.06314 Vertex 14174 2.83558 16.97 0.988263 Vertex 14175 2.81692 16.7043 0.917972 Vertex 14176 2.94537 16.9944 0.697168 Vertex 14177 2.90233 16.6733 0.640381 Vertex 14178 2.79253 16.3638 0.594316 Vertex 14179 2.94526 16.8008 0.345483 Vertex 14180 2.81573 16.4235 0.292649 Vertex 14181 2.65363 16.0695 0.242057 Vertex 14182 2.81156 16.5971 0.000959501 Vertex 14183 2.64726 16.2102 -0.0563925 Vertex 14184 2.44129 15.8836 -0.03733 Vertex 14185 2.61584 16.4504 -0.301753 Vertex 14186 2.44814 16.1446 -0.408237 Vertex 14187 2.39592 15.9953 -0.854753 Vertex 14188 2.47664 16.5427 -0.868071 Vertex 14189 2.36263 16.4452 -1.32006 Vertex 14190 2.39096 15.4177 -1.0932 Vertex 14191 2.34517 15.5326 -0.457691 Vertex 14192 2.28943 15.9913 -1.46203 Vertex 14193 2.13132 16.4291 -1.72958 Vertex 14194 2.26593 16.8816 -1.53194 Vertex 14195 1.96101 16.8867 -1.86767 Vertex 14196 2.02267 15.9372 -1.93836 Vertex 14197 1.72881 16.4844 -2.11231 Vertex 14198 1.44296 16.9935 -2.27836 Vertex 14199 1.9036 17.2963 -1.9345 Vertex 14200 1.20513 16.4292 -2.49658 Vertex 14201 0.819171 17.0191 -2.6135 Vertex 14202 0.348603 16.8246 -2.77241 Vertex 14203 1.94369 22.5249 -1.87846 Vertex 14204 2.15486 21.9782 -2.07958 Vertex 14205 2.68718 21.7055 -1.62878 Vertex 14206 2.55342 22.2523 -1.37816 Vertex 14207 2.4642 22.7024 -0.855034 Vertex 14208 2.92641 21.7932 -1.01488 Vertex 14209 2.86179 22.1897 -0.553658 Vertex 14210 2.74562 22.4391 0.067847 Vertex 14211 3.04199 21.6973 -0.439536 Vertex 14212 2.97344 21.9428 0.040644 Vertex 14213 2.80738 22.0927 0.611176 Vertex 14214 3.07833 21.5224 -0.0486632 Vertex 14215 2.98465 21.6586 0.405563 Vertex 14216 2.82016 21.7097 1.00202 Vertex 14217 3.04917 21.1984 0.334235 Vertex 14218 2.93729 21.1973 0.856603 Vertex 14219 2.76138 21.1915 1.38622 Vertex 14220 2.92976 20.6721 0.856704 Vertex 14221 2.8041 20.6387 1.27543 Vertex 14222 2.69115 20.6594 1.65803 Vertex 14223 2.83632 20.1815 1.25458 Vertex 14224 2.78153 20.2174 1.52849 Vertex 14225 1.29522 22.8827 -1.89195 Vertex 14226 1.46835 22.516 -2.29897 Vertex 14227 1.90123 22.962 -1.35299 Vertex 14228 0.644567 22.795 -2.35757 Vertex 14229 0.868941 23.2924 -1.16829 Vertex 14230 1.75351 23.2267 -0.553016 Vertex 14231 2.36108 22.9299 -0.0984478 Vertex 14232 0.719608 23.4896 -0.104208 Vertex 14233 1.51627 23.3284 0.43791 Vertex 14234 2.08348 22.9922 0.780026 Vertex 14235 2.49033 22.5407 0.819794 Vertex 14236 1.2212 23.2002 1.3438 Vertex 14237 1.69877 22.8748 1.59017 Vertex 14238 2.15906 22.5494 1.55278 Vertex 14239 2.54555 22.1617 1.28081 Vertex 14240 1.32712 22.6783 2.17585 Vertex 14241 1.8068 22.4321 2.1207 Vertex 14242 2.23113 22.129 1.92705 Vertex 14243 2.56875 21.715 1.63538 Vertex 14244 1.55095 22.1896 2.56933 Vertex 14245 1.91913 21.9645 2.44301 Vertex 14246 2.29818 21.6471 2.1984 Vertex 14247 2.55564 21.1911 1.90285 Vertex 14248 1.69819 21.6944 2.85752 Vertex 14249 2.05499 21.461 2.67383 Vertex 14250 2.3621 21.1691 2.38344 Vertex 14251 2.56352 20.777 2.06475 Vertex 14252 1.87592 21.1857 3.04028 Vertex 14253 2.17837 21.0514 2.79948 Vertex 14254 1.60052 21.375 3.13107 Vertex 14255 1.73925 20.9281 3.2686 Vertex 14256 1.50073 21.0317 3.3318 Vertex 14257 1.42871 21.8881 2.88529 Vertex 14258 1.35032 21.5536 3.12097 Vertex 14259 1.26187 22.1214 2.76451 Vertex 14260 1.26796 21.1793 3.35982 Vertex 14261 1.34506 20.7274 3.57498 Vertex 14262 1.13311 20.7965 3.63448 Vertex 14263 1.06514 21.7381 3.07463 Vertex 14264 0.975957 21.318 3.35994 Vertex 14265 0.953818 22.3906 2.62477 Vertex 14266 0.735424 21.9464 3.00825 Vertex 14267 0.896035 20.8827 3.66905 Vertex 14268 0.977992 20.5018 3.86529 Vertex 14269 0.769107 20.5162 3.8996 Vertex 14270 0.664893 21.4761 3.3324 Vertex 14271 0.604652 21.0306 3.63944 Vertex 14272 0.464559 21.8284 3.14763 Vertex 14273 0.539735 20.6013 3.8624 Vertex 14274 0.613622 20.2605 3.9899 Vertex 14275 0.419984 20.2906 3.96428 Vertex 14276 0.36898 21.3636 3.46829 Vertex 14277 0.348268 20.8542 3.74269 Vertex 14278 0.267547 22.2663 2.86407 Vertex 14279 0.165866 21.7597 3.22668 Vertex 14280 0.291426 20.4599 3.92512 Vertex 14281 0.264117 20.074 4.00327 Vertex 14282 0.18348 20.2626 4.01004 Vertex 14283 0.220345 20.8318 3.77493 Vertex 14284 0.104004 20.5014 3.93844 Vertex 14285 0.0712475 20.1084 4.02616 Vertex 14286 0.11916 21.2592 3.52826 Vertex 14287 0.545489 22.6363 2.51232 Vertex 14288 0.25368 22.9193 2.25024 Vertex 14289 0.535348 23.2513 1.6263 Vertex 14290 0.240251 23.4996 1.03711 Vertex 14291 0.313861 23.5554 0.123226 Vertex 14292 0.88038 22.9352 2.03166 Vertex 14293 0.765361 23.4736 0.892861 Vertex 14294 1.7677 15.3069 2.8449 Vertex 14295 1.97126 15.6252 2.84313 Vertex 14296 2.17292 15.65 2.60117 Vertex 14297 1.99554 15.2669 2.5356 Vertex 14298 1.35555 15.0945 3.1912 Vertex 14299 1.51141 15.3909 3.20653 Vertex 14300 1.59682 15.0077 2.80972 Vertex 14301 1.80064 14.9025 2.5155 Vertex 14302 2.21279 15.2544 2.20347 Vertex 14303 2.00516 14.8788 2.21333 Vertex 14304 1.44846 14.6673 2.77175 Vertex 14305 1.62913 14.595 2.50508 Vertex 14306 1.77287 14.5991 2.2764 Vertex 14307 2.05299 14.9123 1.86719 Vertex 14308 1.78844 14.6413 1.96039 Vertex 14309 1.5455 14.4538 2.3881 Vertex 14310 1.51512 14.4377 2.07738 Vertex 14311 1.70444 14.6818 1.58615 Vertex 14312 1.44906 14.4732 1.71348 Vertex 14313 1.24504 14.3193 2.50183 Vertex 14314 1.24918 14.3088 2.17529 Vertex 14315 1.25053 14.3414 1.89355 Vertex 14316 1.38561 14.5178 1.41023 Vertex 14317 1.14161 14.376 1.64364 Vertex 14318 1.06019 14.2593 2.12409 Vertex 14319 0.854114 14.267 1.90716 Vertex 14320 0.875194 14.4118 1.45089 Vertex 14321 0.543438 14.2966 1.72101 Vertex 14322 0.778079 14.1457 2.35863 Vertex 14323 0.546759 14.1523 2.13076 Vertex 14324 0.269555 14.1825 1.95781 Vertex 14325 0.239458 14.3407 1.55677 Vertex 14326 0.24769 14.0492 2.3442 Vertex 14327 2.22982 15.9686 2.72973 Vertex 14328 2.34805 16.1459 2.59609 Vertex 14329 2.30964 15.8377 2.41181 Vertex 14330 2.39074 16.122 2.28713 Vertex 14331 2.33521 15.7889 2.2478 Vertex 14332 2.43127 15.9584 2.03461 Vertex 14333 2.34902 15.6363 2.12471 Vertex 14334 2.4343 15.6681 1.84602 Vertex 14335 2.34332 15.3345 1.89665 Vertex 14336 2.36392 15.4354 1.64962 Vertex 14337 2.25222 15.1964 1.76974 Vertex 14338 2.13769 15.1834 1.46771 Vertex 14339 1.94235 14.9179 1.52952 Vertex 14340 1.84058 14.9334 1.23301 Vertex 14341 1.61859 14.7197 1.29245 Vertex 14342 1.58169 14.7432 1.03047 Vertex 14343 1.26695 14.5538 1.18731 Vertex 14344 0.967119 14.4102 1.07121 Vertex 14345 0.539586 14.4544 1.33663 Vertex 14346 0.250288 14.328 1.20424 Vertex 14347 2.6068 17.6893 2.81173 Vertex 14348 2.6635 17.8898 2.91371 Vertex 14349 2.71987 17.9073 2.61577 Vertex 14350 2.62242 17.7001 2.54428 Vertex 14351 2.52749 17.394 2.88014 Vertex 14352 2.52684 17.5748 3.03458 Vertex 14353 2.55786 17.4891 2.66425 Vertex 14354 2.48619 17.098 2.85292 Vertex 14355 2.44674 17.2559 3.037 Vertex 14356 2.52343 17.2319 2.68483 Vertex 14357 2.43334 16.6809 2.75253 Vertex 14358 2.40225 16.9051 2.96363 Vertex 14359 2.4871 16.9193 2.64973 Vertex 14360 2.33406 16.4071 2.82313 Vertex 14361 2.41794 16.4198 2.48821 Vertex 14362 2.4249 16.6271 2.34102 Vertex 14363 2.41054 16.3547 2.17798 Vertex 14364 2.50757 15.9838 1.79167 Vertex 14365 2.54743 15.98 1.54726 Vertex 14366 2.46436 15.6937 1.58482 Vertex 14367 2.44675 15.7098 1.29724 Vertex 14368 2.30761 15.4502 1.36286 Vertex 14369 2.2226 15.4052 1.04005 Vertex 14370 2.02893 15.1542 1.14037 Vertex 14371 1.9857 15.1544 0.849041 Vertex 14372 1.80331 14.9533 0.944543 Vertex 14373 1.82154 14.9244 0.655079 Vertex 14374 1.63285 14.5924 0.723403 Vertex 14375 2.02679 15.0855 0.314548 Vertex 14376 1.90526 14.7347 0.337779 Vertex 14377 1.99289 15.1456 0.593457 Vertex 14378 2.13966 15.3374 0.52941 Vertex 14379 2.16084 15.3544 0.760692 Vertex 14380 2.35294 15.5871 0.726599 Vertex 14381 2.41083 15.6693 0.996099 Vertex 14382 2.54645 15.9369 1.0223 Vertex 14383 2.54936 15.9831 1.2943 Vertex 14384 2.60592 16.215 1.33537 Vertex 14385 2.57753 16.2323 1.56529 Vertex 14386 2.56241 16.4792 1.64187 Vertex 14387 2.51962 16.258 1.79875 Vertex 14388 2.49372 16.5225 1.85876 Vertex 14389 2.46423 16.7548 1.93004 Vertex 14390 2.4326 16.5084 2.04291 Vertex 14391 2.41883 16.7306 2.12516 Vertex 14392 2.43185 16.9309 2.22227 Vertex 14393 2.45429 16.8644 2.44615 Vertex 14394 2.49012 17.0578 2.51955 Vertex 14395 2.44719 16.2418 2.01684 Vertex 14396 2.81522 18.1098 2.61646 Vertex 14397 2.70286 17.8394 2.29004 Vertex 14398 2.59999 17.6213 2.25186 Vertex 14399 2.57553 17.5355 1.99291 Vertex 14400 2.51713 17.3611 1.9688 Vertex 14401 2.54485 17.3282 1.78533 Vertex 14402 2.54838 17.1169 1.71925 Vertex 14403 2.62907 17.0543 1.50188 Vertex 14404 2.66213 16.8134 1.38897 Vertex 14405 2.74413 16.7666 1.16012 Vertex 14406 2.76344 16.5825 1.01917 Vertex 14407 2.54129 17.4709 2.42282 Vertex 14408 2.51864 17.3982 2.17516 Vertex 14409 2.47736 17.2227 2.1116 Vertex 14410 2.49488 17.1723 1.92209 Vertex 14411 2.50436 16.9447 1.83267 Vertex 14412 2.57507 16.8772 1.61872 Vertex 14413 2.61053 16.6355 1.50903 Vertex 14414 2.69142 16.5831 1.27125 Vertex 14415 2.68493 16.3712 1.18912 Vertex 14416 2.74046 16.364 0.911938 Vertex 14417 2.6489 16.097 0.854136 Vertex 14418 2.65501 16.0462 0.552067 Vertex 14419 2.47573 15.7437 0.503628 Vertex 14420 2.45394 15.7507 0.225572 Vertex 14421 2.2596 15.5366 0.270787 Vertex 14422 2.267 15.5909 0.008906 Vertex 14423 2.15791 15.2548 0.0257277 Vertex 14424 2.27465 15.0098 -0.346048 Vertex 14425 2.08745 14.8488 0.013308 Vertex 14426 2.12877 15.3373 0.310575 Vertex 14427 2.29233 15.5083 0.486601 Vertex 14428 2.52377 15.837 0.767326 Vertex 14429 2.63186 16.1727 1.10916 Vertex 14430 2.6276 16.4112 1.41276 Vertex 14431 2.53182 16.7153 1.73368 Vertex 14432 2.45204 16.9681 2.02477 Vertex 14433 2.46386 17.1415 2.15859 Vertex 14434 2.4649 17.111 2.33579 Vertex 14435 2.51152 17.2925 2.48898 Vertex 14436 2.48622 17.2801 2.29212 Vertex 14437 0.106369 19.2738 4.2155 Vertex 14438 0.130615 19.633 3.95872 Vertex 14439 0.202298 19.4144 4.03379 Vertex 14440 0.118347 18.9915 4.43412 Vertex 14441 0.21382 19.1035 4.29341 Vertex 14442 0.138425 18.7564 4.60399 Vertex 14443 0.243778 18.8462 4.47397 Vertex 14444 0.285495 19.2215 4.11743 Vertex 14445 0.302558 19.5398 3.89489 Vertex 14446 0.342897 19.3324 3.91708 Vertex 14447 0.319928 18.9362 4.30925 Vertex 14448 0.381511 19.0316 4.11601 Vertex 14449 0.347286 18.6831 4.45134 Vertex 14450 0.408477 18.7387 4.25699 Vertex 14451 0.441777 19.1147 3.89214 Vertex 14452 0.42136 19.4005 3.71681 Vertex 14453 0.512336 19.1835 3.6553 Vertex 14454 0.470411 18.8162 4.03647 Vertex 14455 0.549885 18.8945 3.82096 Vertex 14456 0.487149 18.541 4.13999 Vertex 14457 0.532291 18.5947 3.94677 Vertex 14458 0.747407 19.0331 3.49669 Vertex 14459 0.652124 18.9768 3.62359 Vertex 14460 0.571521 19.2397 3.49557 Vertex 14461 0.630455 19.159 3.4471 Vertex 14462 0.684065 18.6974 3.74905 Vertex 14463 0.843027 18.7836 3.60991 Vertex 14464 0.71867 18.4354 3.81379 Vertex 14465 0.593484 18.5698 3.86474 Vertex 14466 0.856568 18.5228 3.71533 Vertex 14467 0.0983095 19.8864 3.98774 Vertex 14468 0.303955 19.8483 3.94971 Vertex 14469 0.371069 19.76 3.92121 Vertex 14470 0.493944 19.7927 3.92141 Vertex 14471 0.43601 19.6145 3.81791 Vertex 14472 0.524256 19.4119 3.55892 Vertex 14473 0.572944 19.6119 3.70253 Vertex 14474 0.628386 19.3251 3.45276 Vertex 14475 0.637193 19.2705 3.44236 Vertex 14476 0.619016 19.2255 3.43355 Vertex 14477 0.625474 19.4194 3.49701 Vertex 14478 0.700072 19.3345 3.46515 Vertex 14479 0.692008 19.2612 3.4675 Vertex 14480 0.759312 19.1857 3.46643 Vertex 14481 0.652985 19.2131 3.42981 Vertex 14482 0.65291 19.3056 3.44871 Vertex 14483 0.982043 19.0045 3.5013 Vertex 14484 1.03647 18.8713 3.54634 Vertex 14485 0.16657 18.4271 4.84758 Vertex 14486 0.154157 18.5906 4.73542 Vertex 14487 0.302702 18.4908 4.74114 Vertex 14488 0.416252 18.3676 4.65784 Vertex 14489 0.383788 18.5208 4.56279 Vertex 14490 0.47371 18.4006 4.46946 Vertex 14491 0.530477 18.3091 4.40568 Vertex 14492 0.515007 18.4222 4.27491 Vertex 14493 0.578084 18.3465 4.24831 Vertex 14494 0.656353 18.2612 4.2559 Vertex 14495 0.627328 18.3681 4.10532 Vertex 14496 0.715457 18.2883 4.12922 Vertex 14497 0.804434 18.1663 4.12278 Vertex 14498 0.715009 18.316 4.02632 Vertex 14499 0.800952 18.1905 4.01767 Vertex 14500 0.706098 18.2978 3.84105 Vertex 14501 0.845099 18.2667 3.77755 Vertex 14502 0.749665 18.2333 3.94112 Vertex 14503 0.810299 18.0793 3.91875 Vertex 14504 0.852782 18.0272 3.99273 Vertex 14505 0.841272 18.0252 3.84683 Vertex 14506 0.916301 18.0168 3.79495 Vertex 14507 0.924204 17.9353 3.84813 Vertex 14508 0.810524 17.7882 4.01954 Vertex 14509 0.847953 17.8198 3.96971 Vertex 14510 0.826296 17.7363 4.02159 Vertex 14511 0.834396 17.9083 4.0584 Vertex 14512 0.801283 17.8116 4.04826 Vertex 14513 0.774593 17.8207 4.10915 Vertex 14514 0.800828 17.9158 4.14713 Vertex 14515 0.705896 18.021 4.31027 Vertex 14516 0.79155 18.0358 4.1956 Vertex 14517 0.742208 17.921 4.24348 Vertex 14518 0.522165 18.0742 4.45862 Vertex 14519 0.632011 18.1231 4.35484 Vertex 14520 0.581582 17.9908 4.41321 Vertex 14521 0.510353 18.1614 4.47075 Vertex 14522 0.462395 18.085 4.54889 Vertex 14523 0.296274 18.0944 4.80199 Vertex 14524 0.410362 18.1812 4.67709 Vertex 14525 0.382829 18.0096 4.65018 Vertex 14526 0.163354 18.2128 4.87284 Vertex 14527 0.144251 17.9846 4.82203 Vertex 14528 0.0943477 17.7449 4.58391 Vertex 14529 0.210896 17.8663 4.67153 Vertex 14530 0.270094 17.9011 4.33923 Vertex 14531 0.23888 17.8356 4.3913 Vertex 14532 0.264227 17.8706 4.51387 Vertex 14533 0.301146 17.928 4.43803 Vertex 14534 0.091416 17.5324 4.40295 Vertex 14535 0.162869 17.6686 4.45227 Vertex 14536 0.254071 17.8266 4.29177 Vertex 14537 0.232631 17.773 4.36289 Vertex 14538 0.321503 17.6164 4.27653 Vertex 14539 0.243183 17.6933 4.31734 Vertex 14540 0.339527 17.7895 4.19941 Vertex 14541 0.442805 17.7487 4.17368 Vertex 14542 0.61416 17.7058 4.13188 Vertex 14543 0.552935 17.8149 4.10912 Vertex 14544 0.69849 17.7851 4.09385 Vertex 14545 0.0887898 17.3079 4.34614 Vertex 14546 0.201062 17.4469 4.34721 Vertex 14547 0.142173 17.197 4.32691 Vertex 14548 0.334144 17.3465 4.31041 Vertex 14549 0.493375 17.5371 4.22959 Vertex 14550 0.277237 17.1207 4.28528 Vertex 14551 0.515484 17.2571 4.25642 Vertex 14552 0.192709 16.9692 3.92377 Vertex 14553 0.253879 17.0429 4.20436 Vertex 14554 0.435877 17.0429 4.00722 Vertex 14555 0.210659 15.9433 4.09872 Vertex 14556 0.176234 16.0679 3.85141 Vertex 14557 0.384863 16.003 3.91659 Vertex 14558 0.228722 15.5868 4.13207 Vertex 14559 0.222939 15.8461 4.16344 Vertex 14560 0.451216 15.7078 4.09795 Vertex 14561 0.804762 17.6017 4.08885 Vertex 14562 0.694285 17.4312 4.17975 Vertex 14563 0.758545 17.7265 4.0724 Vertex 14564 0.730175 17.1985 4.16505 Vertex 14565 0.867258 17.3284 4.11305 Vertex 14566 0.554759 17.0271 3.79132 Vertex 14567 0.701882 17.1191 4.08502 Vertex 14568 0.822169 17.0972 3.83698 Vertex 14569 0.623941 15.9205 3.96971 Vertex 14570 0.524746 16.0604 3.7292 Vertex 14571 0.775964 15.9736 3.75332 Vertex 14572 0.651782 15.5207 3.97927 Vertex 14573 0.652421 15.8127 4.02429 Vertex 14574 0.860755 15.6347 3.8953 Vertex 14575 0.912393 17.6358 3.99691 Vertex 14576 0.901812 17.4727 4.07808 Vertex 14577 0.976609 17.347 4.03098 Vertex 14578 0.981307 17.0894 3.58713 Vertex 14579 1.10424 17.1745 3.80593 Vertex 14580 1.25735 17.1601 3.53035 Vertex 14581 1.0731 15.8686 3.72666 Vertex 14582 0.943635 16.0107 3.50729 Vertex 14583 1.24008 15.9136 3.45687 Vertex 14584 1.0175 15.4375 3.71739 Vertex 14585 1.09353 15.7542 3.76832 Vertex 14586 1.28378 15.569 3.54534 Vertex 14587 1.1428 17.7047 3.77063 Vertex 14588 1.27305 17.7424 3.64581 Vertex 14589 1.36803 17.5433 3.62374 Vertex 14590 1.49312 17.309 3.49337 Vertex 14591 1.29046 17.388 3.71439 Vertex 14592 1.58133 17.4089 3.42758 Vertex 14593 1.40305 17.1408 3.29775 Vertex 14594 1.47711 17.2223 3.42855 Vertex 14595 1.57962 17.1812 3.22821 Vertex 14596 1.50798 15.8208 3.3575 Vertex 14597 1.37919 15.9828 3.23422 Vertex 14598 1.60864 15.9338 3.14895 Vertex 14599 1.53705 15.7082 3.36507 Vertex 14600 1.74043 15.6259 3.09911 Vertex 14601 1.06831 18.6037 3.62256 Vertex 14602 1.34467 18.7037 3.58012 Vertex 14603 1.02012 18.3249 3.72862 Vertex 14604 1.27874 18.3873 3.65817 Vertex 14605 1.60328 18.4743 3.59761 Vertex 14606 1.65817 18.7889 3.5614 Vertex 14607 1.8979 18.6083 3.55479 Vertex 14608 1.46456 18.1311 3.6637 Vertex 14609 1.80787 18.2206 3.60048 Vertex 14610 2.19125 18.6236 3.43063 Vertex 14611 2.0976 18.378 3.51505 Vertex 14612 2.00763 18.7551 3.52267 Vertex 14613 2.24474 18.1136 3.46334 Vertex 14614 1.95445 17.9445 3.55396 Vertex 14615 0.94363 18.0891 3.76786 Vertex 14616 1.15644 18.0948 3.72262 Vertex 14617 1.31519 17.834 3.63956 Vertex 14618 1.6288 17.8293 3.57865 Vertex 14619 1.821 17.5232 3.43106 Vertex 14620 2.07435 17.6506 3.43829 Vertex 14621 2.1603 17.4142 3.28644 Vertex 14622 2.29983 17.8484 3.407 Vertex 14623 2.33581 17.6122 3.27894 Vertex 14624 1.7469 17.083 3.13312 Vertex 14625 1.58804 17.141 3.13029 Vertex 14626 1.757 17.1854 3.21503 Vertex 14627 1.88081 16.6882 2.99362 Vertex 14628 1.70021 16.9149 3.03396 Vertex 14629 1.96078 16.9182 3.09451 Vertex 14630 1.81559 16.1825 2.96228 Vertex 14631 1.78144 16.4314 2.9353 Vertex 14632 1.96781 16.4165 2.97399 Vertex 14633 1.66898 16.0797 3.01872 Vertex 14634 1.79607 15.9621 3.04513 Vertex 14635 1.70074 17.3685 3.36297 Vertex 14636 1.75988 17.263 3.28006 Vertex 14637 2.06212 16.9397 3.10815 Vertex 14638 2.10076 17.125 3.16189 Vertex 14639 2.18894 16.9365 3.07455 Vertex 14640 2.15735 16.167 2.86118 Vertex 14641 2.0905 16.4112 2.96065 Vertex 14642 2.26585 16.6797 2.9804 Vertex 14643 1.99344 17.2867 3.27656 Vertex 14644 2.23482 17.2573 3.17096 Vertex 14645 0.195168 15.3327 3.95394 Vertex 14646 0.420502 15.4345 3.99513 Vertex 14647 0.587452 15.3386 3.87639 Vertex 14648 0.797981 15.3863 3.83824 Vertex 14649 0.960063 15.3374 3.69344 Vertex 14650 0.173767 14.9915 4.01414 Vertex 14651 0.190827 15.2228 3.93042 Vertex 14652 0.367988 15.1269 3.93496 Vertex 14653 0.160841 14.6713 4.04065 Vertex 14654 0.332859 14.8129 4.01122 Vertex 14655 0.146877 14.3188 3.89148 Vertex 14656 0.271343 14.4674 3.98485 Vertex 14657 0.524462 14.9564 3.92573 Vertex 14658 0.577815 15.235 3.86197 Vertex 14659 0.74566 15.1003 3.8193 Vertex 14660 0.438985 14.5956 3.97038 Vertex 14661 0.632331 14.7295 3.88868 Vertex 14662 0.283603 14.2829 3.87001 Vertex 14663 0.442512 14.3786 3.88173 Vertex 14664 0.857967 14.8783 3.76206 Vertex 14665 0.959987 15.2529 3.68493 Vertex 14666 1.09227 15.0416 3.55511 Vertex 14667 0.64539 14.4745 3.82673 Vertex 14668 0.859555 14.5849 3.69509 Vertex 14669 0.352026 14.2167 3.79711 Vertex 14670 0.533281 14.2604 3.75719 Vertex 14671 1.06701 14.6852 3.45309 Vertex 14672 1.2705 14.7219 3.11023 Vertex 14673 0.714444 14.3139 3.63401 Vertex 14674 0.900736 14.3746 3.41603 Vertex 14675 0.351798 14.1426 3.70485 Vertex 14676 0.515339 14.1537 3.59891 Vertex 14677 1.09392 14.3985 3.13374 Vertex 14678 1.21934 14.366 2.82275 Vertex 14679 0.687109 14.1894 3.44299 Vertex 14680 0.836363 14.1977 3.21605 Vertex 14681 0.493816 14.1069 3.50432 Vertex 14682 0.914842 14.1711 2.93774 Vertex 14683 0.899364 14.1519 2.64325 Vertex 14684 0.597903 14.1014 3.31343 Vertex 14685 0.629243 14.0603 3.0798 Vertex 14686 0.412256 14.0579 3.44534 Vertex 14687 0.594071 14.0171 2.82568 Vertex 14688 0.468277 14.0188 2.56846 Vertex 14689 0.411946 13.995 3.22919 Vertex 14690 0.350956 13.9368 3.00412 Vertex 14691 0.259474 14.0615 3.58707 Vertex 14692 0.239175 13.9715 3.38356 Vertex 14693 0.202504 13.9374 2.77399 Vertex 14694 0.148915 13.9004 3.18972 Vertex 14695 0.132404 14.035 3.54904 Vertex 14696 1.67052 18.8892 3.54918 Vertex 14697 1.34294 18.987 3.55349 Vertex 14698 1.60881 19.0042 3.52109 Vertex 14699 1.89527 18.9339 3.48331 Vertex 14700 2.18736 18.8697 3.35485 Vertex 14701 2.00907 18.8616 3.48782 Vertex 14702 2.04002 19.0519 3.34367 Vertex 14703 2.22057 19.0611 3.20397 Vertex 14704 2.37793 19.1033 2.91619 Vertex 14705 2.23993 19.2211 2.9949 Vertex 14706 2.31875 19.285 2.77487 Vertex 14707 2.39031 19.3191 2.60766 Vertex 14708 2.28621 19.3629 2.77113 Vertex 14709 2.29852 19.4173 2.71508 Vertex 14710 2.34912 19.3862 2.62155 Vertex 14711 2.01072 19.7283 2.99971 Vertex 14712 2.13205 19.5949 2.89961 Vertex 14713 2.0054 19.6558 3.0447 Vertex 14714 1.86224 19.7859 3.14851 Vertex 14715 1.68805 19.8075 3.28402 Vertex 14716 1.84863 19.7009 3.17223 Vertex 14717 1.5172 19.7909 3.38184 Vertex 14718 1.32816 19.8531 3.43239 Vertex 14719 1.50062 19.867 3.37385 Vertex 14720 1.34817 19.7946 3.44954 Vertex 14721 1.18896 19.7509 3.47996 Vertex 14722 1.03705 19.6798 3.47807 Vertex 14723 1.05816 19.6371 3.49276 Vertex 14724 0.9135 19.5574 3.48038 Vertex 14725 0.806971 19.4275 3.48148 Vertex 14726 0.777172 19.4521 3.46267 Vertex 14727 0.716218 19.584 3.6105 Vertex 14728 0.718072 19.7428 3.82908 Vertex 14729 0.873832 19.7177 3.73676 Vertex 14730 0.752216 19.4802 3.47604 Vertex 14731 0.875558 19.6193 3.55587 Vertex 14732 1.02275 19.7416 3.65308 Vertex 14733 1.04053 19.8517 3.80833 Vertex 14734 1.19666 19.8874 3.70825 Vertex 14735 1.02281 19.7062 3.50065 Vertex 14736 1.17276 19.814 3.55381 Vertex 14737 1.3529 19.9431 3.57904 Vertex 14738 1.4108 20.0453 3.7021 Vertex 14739 1.59763 20.0868 3.54677 Vertex 14740 1.32377 19.8976 3.44891 Vertex 14741 1.51962 19.9857 3.42607 Vertex 14742 1.80297 20.0662 3.37269 Vertex 14743 1.88784 20.2517 3.43712 Vertex 14744 2.0923 20.1888 3.22653 Vertex 14745 1.69614 19.9469 3.26164 Vertex 14746 1.95996 19.9563 3.17501 Vertex 14747 2.20545 20.0013 3.02629 Vertex 14748 2.32025 20.3082 2.90756 Vertex 14749 2.40541 20.0552 2.72484 Vertex 14750 2.04266 19.8036 2.98863 Vertex 14751 2.24387 19.7768 2.84716 Vertex 14752 2.45526 19.7481 2.61937 Vertex 14753 2.5934 20.0485 2.34495 Vertex 14754 2.63923 19.7029 2.28772 Vertex 14755 2.28348 19.5728 2.7031 Vertex 14756 2.4483 19.5158 2.55036 Vertex 14757 2.58977 19.4767 2.35398 Vertex 14758 2.76979 19.6809 1.95273 Vertex 14759 2.73134 19.4535 2.05871 Vertex 14760 2.40465 19.4163 2.55425 Vertex 14761 2.49977 19.3599 2.46569 Vertex 14762 2.85314 19.4509 1.75725 Vertex 14763 2.78134 19.3099 1.99144 Vertex 14764 2.68115 19.1819 2.29711 Vertex 14765 2.54784 19.1195 2.57609 Vertex 14766 2.4023 19.3659 2.56544 Vertex 14767 2.92757 19.1747 1.70394 Vertex 14768 2.90662 18.9685 1.98373 Vertex 14769 2.45194 18.843 3.07826 Vertex 14770 2.69249 18.8195 2.66501 Vertex 14771 2.508 18.0068 3.24123 Vertex 14772 2.49947 18.2522 3.24294 Vertex 14773 2.51803 17.7883 3.15915 Vertex 14774 2.69899 18.0924 2.95441 Vertex 14775 2.72123 18.3051 2.89926 Vertex 14776 2.48346 18.5477 3.18144 Vertex 14777 2.72859 18.5493 2.7953 Vertex 14778 2.87712 18.3077 2.51646 Vertex 14779 2.90967 18.5111 2.36268 Vertex 14780 2.90342 18.7497 2.21348 Vertex 14781 2.99371 18.4735 1.96426 Vertex 14782 3.02037 18.6999 1.83625 Vertex 14783 3.01996 18.8931 1.66311 Vertex 14784 2.99147 18.4787 1.64472 Vertex 14785 3.03811 18.7395 1.57684 Vertex 14786 2.35312 20.4973 2.89916 Vertex 14787 2.49584 20.3864 2.56212 Vertex 14788 2.72134 20.0193 1.99144 Vertex 14789 2.62893 20.3698 2.23701 Vertex 14790 2.83883 19.7125 1.64875 Vertex 14791 2.79824 20.0093 1.67871 Vertex 14792 2.90842 19.4279 1.51268 Vertex 14793 2.88345 19.7254 1.36625 Vertex 14794 2.99259 19.096 1.4332 Vertex 14795 2.94821 19.3836 1.25124 Vertex 14796 3.02263 18.9646 1.41539 Vertex 14797 3.00517 18.8798 1.33654 Vertex 14798 2.96203 18.5445 1.3796 Vertex 14799 2.99473 19.0043 1.10845 Vertex 14800 2.96427 18.6689 1.1728 Vertex 14801 3.01274 17.5177 0.183616 Vertex 14802 3.0085 17.7293 0.134765 Vertex 14803 2.94215 17.6385 0.0352012 Vertex 14804 2.9867 17.4026 0.138783 Vertex 14805 2.90136 17.6514 -0.114406 Vertex 14806 2.88731 17.2705 -0.0906247 Vertex 14807 2.42889 17.332 -1.30526 Vertex 14808 2.58779 17.4583 -0.938367 Vertex 14809 2.60085 17.8129 -0.950709 Vertex 14810 2.43898 17.7073 -1.29632 Vertex 14811 2.86108 18.1794 1.45674 Vertex 14812 2.90071 18.3431 1.31382 Vertex 14813 2.87349 18.2682 1.29226 Vertex 14814 2.82679 18.0391 1.37128 Vertex 14815 2.89089 18.1308 1.16116 Vertex 14816 2.83901 17.8657 1.21265 Vertex 14817 2.91272 17.9957 1.03376 Vertex 14818 2.87071 17.7322 1.08728 Vertex 14819 2.94921 17.7649 0.836295 Vertex 14820 2.94048 17.3766 0.753702 Vertex 14821 3.00366 17.4605 0.461922 Vertex 14822 3.00433 17.1618 0.390089 Vertex 14823 3.01688 17.3923 0.220439 Vertex 14824 2.92768 17.0308 0.0957077 Vertex 14825 2.78186 16.8599 -0.224952 Vertex 14826 2.75641 17.1647 -0.374785 Vertex 14827 2.60593 16.7849 -0.538501 Vertex 14828 2.61149 17.1292 -0.794769 Vertex 14829 2.46748 16.9471 -1.17927 Vertex 14830 2.21374 17.2782 -1.62483 Vertex 14831 2.84655 21.3137 -1.48834 Vertex 14832 2.96412 21.4149 -1.21746 Vertex 14833 3.04603 21.1331 -1.03214 Vertex 14834 3.04444 21.3821 -0.83862 Vertex 14835 3.07405 21.0703 -0.655407 Vertex 14836 3.09471 21.2821 -0.342181 Vertex 14837 3.08882 21.004 -0.307686 Vertex 14838 3.09197 21.1425 -0.0960177 Vertex 14839 3.09922 20.8438 0.0265117 Vertex 14840 3.05489 20.7724 0.429799 Vertex 14841 3.02758 20.3835 0.631758 Vertex 14842 2.91602 20.2357 0.946214 Vertex 14843 2.94507 20.0247 0.955452 Vertex 14844 2.9037 19.9617 1.14562 Vertex 14845 2.95114 19.9538 0.97589 Vertex 14846 2.93464 19.7294 1.11637 Vertex 14847 2.98478 19.6862 0.935796 Vertex 14848 2.99134 19.345 1.02026 Vertex 14849 3.0382 19.2449 0.885032 Vertex 14850 3.03609 19.0178 0.952061 Vertex 14851 1.8677 15.8741 3.01885 Vertex 14852 2.05173 15.9289 2.86539 Vertex 14853 2.00426 16.0794 2.90573 Vertex 14854 0.47783 17.9447 4.28198 Vertex 14855 0.500789 17.9404 4.18358 Vertex 14856 0.397667 17.9729 4.22456 Vertex 14857 1.18888 19.5329 2.77556 Vertex 14858 1.39964 19.6287 2.73485 Vertex 14859 1.64218 19.6278 2.62467 Vertex 14860 1.86291 19.5264 2.47697 Vertex 14861 1.99 19.4356 2.38857 Vertex 14862 2.0219 19.3777 2.36722 Vertex 14863 1.96122 19.3107 2.44596 Vertex 14864 1.80206 19.2411 2.6109 Vertex 14865 1.5211 19.2032 2.74492 Vertex 14866 1.16033 19.2406 2.79002 Vertex 14867 0.970601 19.3068 2.78107 Vertex 14868 1.02714 19.4024 2.78077 Vertex 14869 1.01975 19.0564 3.50725 Vertex 14870 1.0123 19.1126 3.51818 Vertex 14871 2.24322 19.5128 2.74638 Vertex 14872 2.20794 19.4818 2.84613 Vertex 14873 1.26964 19.1454 3.11782 Vertex 14874 0.827108 19.2339 3.09928 Vertex 14875 0.774478 19.3153 3.08458 Vertex 14876 0.965608 19.4893 3.09197 Vertex 14877 1.21197 19.6562 3.08371 Vertex 14878 1.51826 19.7391 2.99775 Vertex 14879 1.82605 19.6458 2.80211 Vertex 14880 2.06847 19.4806 2.61461 Vertex 14881 2.15147 19.4065 2.55161 Vertex 14882 2.15867 19.3299 2.56012 Vertex 14883 2.01096 19.2416 2.77079 Vertex 14884 1.75207 19.1527 2.99185 Vertex 14885 1.20374 19.6957 3.47632 Vertex 14886 0.942988 19.5178 3.48207 Vertex 14887 0.741603 19.3226 3.47213 Vertex 14888 0.796468 19.2117 3.48085 Vertex 14889 1.29316 19.0857 3.52435 Vertex 14890 1.81133 19.0796 3.4135 Vertex 14891 2.09655 19.1875 3.16727 Vertex 14892 2.22646 19.3161 2.88292 Vertex 14893 2.21415 19.414 2.8551 Vertex 14894 2.1022 19.526 2.96034 Vertex 14895 1.67848 19.8805 3.25572 Vertex 14896 0.670389 19.3635 3.44991 Vertex 14897 0.644491 19.3232 3.44598 Vertex 14898 0.67938 19.3582 3.45125 Vertex 14899 2.32739 19.4341 2.63024 Vertex 14900 2.35998 19.3989 2.59182 Vertex 14901 2.37255 19.4021 2.5829 Vertex 14902 2.33728 19.4498 2.61463 Vertex 14903 0.888143 19.5895 3.46513 Vertex 14904 0.76549 19.4611 3.45469 Vertex 14905 0.895226 19.5816 3.4638 Vertex 14906 1.16993 19.7967 3.46869 Vertex 14907 1.02802 19.6942 3.47227 Vertex 14908 1.17498 19.7835 3.46681 Vertex 14909 1.48617 19.9358 3.35281 Vertex 14910 1.32056 19.8751 3.42608 Vertex 14911 1.48626 19.9135 3.35438 Vertex 14912 1.86577 19.8603 3.11625 Vertex 14913 1.67725 19.909 3.2456 Vertex 14914 1.86231 19.8369 3.12224 Vertex 14915 2.14003 19.6601 2.84559 Vertex 14916 2.01241 19.7579 2.98501 Vertex 14917 2.13548 19.6384 2.8552 Vertex 14918 2.24908 19.5336 2.71855 Vertex 14919 2.85322 20.0287 1.51652 Vertex 14920 0.442161 19.9562 3.99106 Vertex 14921 0.310131 17.9102 4.23119 Vertex 14922 0.338851 17.9544 4.23417 Vertex 14923 0.330696 17.8708 4.18443 Vertex 14924 0.42423 17.8822 4.12727 Vertex 14925 0.554824 17.8857 4.09301 Vertex 14926 0.409269 17.9573 4.37322 Vertex 14927 0.529794 17.9387 4.36545 Vertex 14928 0.596933 17.9055 4.27696 Vertex 14929 0.692498 17.8511 4.16508 Vertex 14930 0.719748 17.8209 4.1204 Vertex 14931 0.670793 17.8461 4.11129 Vertex 14932 0.560968 17.9119 4.12737 Vertex 14933 0.619323 17.8895 4.19454 Vertex 14934 0.686265 17.8762 4.23612 Vertex 14935 0.339099 17.9603 4.33119 Vertex 14936 0.361625 17.9547 4.50096 Vertex 14937 0.792609 18.1124 3.82374 Vertex 14938 0.804936 18.0708 3.87775 Vertex 14939 0.7574 18.1699 3.85109 Vertex 14940 0.274584 18.6483 4.61641 Vertex 14941 0.434168 18.528 4.36651 Vertex 14942 0.559183 18.4244 4.07796 Vertex 14943 0.627091 18.3913 4.00738 Vertex 14944 0.66292 18.3517 3.95823 Vertex 14945 0.665702 18.3152 3.91416 Vertex 14946 0.692499 18.2663 3.86286 Vertex 14947 0.678995 18.2868 3.88509 Vertex 14948 0.312876 18.306 4.8075 Vertex 14949 0.486351 18.2495 4.53331 Vertex 14950 0.566163 18.221 4.38104 Vertex 14951 0.741403 18.1537 4.23776 Vertex 14952 0.846649 18.0325 4.09021 Vertex 14953 0.850552 17.9011 3.97751 Vertex 14954 0.94688 17.8236 3.884 Vertex 14955 0.861382 17.8766 3.93733 Vertex 14956 1.07932 17.5028 3.90106 Vertex 14957 1.13266 17.2578 3.87019 Vertex 14958 0.215619 17.782 4.50154 Vertex 14959 0.309747 17.9409 4.64701 Vertex 14960 0.451189 17.9688 4.48146 Vertex 14961 0.654025 17.9285 4.32472 Vertex 14962 0.74271 17.8484 4.17301 Vertex 14963 0.744112 18.193 3.88842 Vertex 14964 0.599075 18.3921 3.91342 Vertex 14965 0.847302 17.9492 3.91838 Vertex 14966 0.830213 17.834 3.99462 Vertex 14967 1.76849 17.3707 3.35673 Vertex 14968 0.767008 18.1717 3.81979 Vertex 14969 0.83233 18.0981 3.79847 Vertex 14970 1.51158 17.5814 3.50729 Vertex 14971 1.0772 17.9379 3.7304 Vertex 14972 1.87573 17.2068 3.24711 Vertex 14973 1.87852 17.1659 3.21581 Vertex 14974 1.96111 17.0789 3.17112 Vertex 14975 0.611742 18.3861 3.89495 Vertex 14976 0.568942 18.4621 3.91193 Vertex 14977 1.91532 16.0548 2.96034 Vertex 14978 1.96616 16.1835 2.9438 Vertex 14979 2.06567 16.6917 3.03259 Vertex 14980 1.65359 17.2545 3.31621 Vertex 14981 0.514569 17.1187 4.21905 Vertex 14982 0.930525 17.1778 4.03116 Vertex 14983 0.434713 15.8941 4.09221 Vertex 14984 0.86289 15.8546 3.91745 Vertex 14985 1.33055 15.7967 3.58848 Vertex 14986 1.70739 15.8017 3.18554 Vertex 14987 1.32415 17.2339 3.65082 Vertex 14988 2.38773 17.4094 3.15064 Vertex 14989 2.32369 17.1035 3.08572 Vertex 14990 0.384459 15.29 3.89713 Vertex 14991 0.764666 15.2985 3.79518 Vertex 14992 0.74045 19.1521 3.44074 Vertex 14993 0.639968 19.1937 3.41641 Vertex 14994 0.631577 19.1842 3.41788 Vertex 14995 0.731838 19.1324 3.43766 Vertex 14996 1.90469 18.8149 3.53725 Vertex 14997 1.35037 18.9048 3.55323 Vertex 14998 1.67892 18.8513 3.55475 Vertex 14999 1.9895 18.8198 3.52269 Vertex 15000 1.90491 18.8373 3.53145 Vertex 15001 1.01012 19.0328 3.49764 Vertex 15002 1.36603 18.9252 3.55413 Vertex 15003 2.59012 18.1686 -1.20962 Vertex 15004 2.63622 18.4988 -1.46353 Vertex 15005 2.7986 19.0319 -1.55654 Vertex 15006 2.98547 19.6581 -1.44743 Vertex 15007 3.08471 20.0597 -1.12094 Vertex 15008 3.12952 20.2571 -0.678932 Vertex 15009 3.12046 20.2729 -0.260185 Vertex 15010 3.06776 20.1136 -0.0234783 Vertex 15011 3.04117 19.7934 0.047987 Vertex 15012 3.00828 19.3523 0.095856 Vertex 15013 2.99805 18.9681 0.098531 Vertex 15014 2.99575 18.6561 0.069236 Vertex 15015 2.98915 18.391 0.041502 Vertex 15016 2.97968 18.16 0.0309827 Vertex 15017 3.01178 21.0874 -1.15844 Vertex 15018 3.07247 21.0104 -0.943615 Vertex 15019 3.09323 20.9302 -0.431596 Vertex 15020 3.10105 20.8827 -0.260874 Vertex 15021 2.99632 20.0904 0.820833 Vertex 15022 2.98512 19.9246 0.895204 Vertex 15023 2.92359 18.4228 1.21358 Vertex 15024 2.90742 18.3019 1.20377 Vertex 15025 2.94285 18.1048 1.01246 Vertex 15026 2.95667 18.0132 0.932062 Vertex 15027 3.03592 17.4946 0.274719 Vertex 15028 1.13005 22.5417 -2.4899 Vertex 15029 1.65807 22.2691 -2.37495 Vertex 15030 2.55017 21.5371 -1.91516 Vertex 15031 3.11066 20.6072 0.292614 Vertex 15032 3.0336 19.5023 0.853379 Vertex 15033 3.07659 19.0801 0.850452 Vertex 15034 3.01932 18.8336 1.03332 Vertex 15035 3.00368 17.6614 0.606983 Vertex 15036 2.88653 17.5731 -0.275474 Vertex 15037 2.73185 17.4102 -0.516003 Vertex 15038 2.99984 18.0126 -0.0819877 Vertex 15039 3.06016 18.7888 -0.101732 Vertex 15040 3.06536 18.969 -0.0427452 Vertex 15041 3.02801 18.509 -0.0896085 Vertex 15042 3.0141 18.2234 -0.0616063 Vertex 15043 2.71172 17.6217 -0.648514 Vertex 15044 3.06343 19.2392 0.055809 Vertex 15045 2.73873 18.8018 -1.36903 Vertex 15046 2.87572 19.3102 -1.40071 Vertex 15047 2.96546 19.5844 -1.37169 Vertex 15048 3.03729 19.8541 -1.25778 Vertex 15049 3.14953 20.1293 -0.921657 Vertex 15050 2.65982 18.3918 -1.18016 Vertex 15051 2.67369 18.0975 -0.929725 Vertex 15052 2.73715 17.8361 -0.717224 Vertex 15053 3.23303 20.2439 -0.565702 Vertex 15054 3.24846 20.2474 -0.440129 Vertex 15055 3.16014 20.129 -0.143211 Vertex 15056 3.1299 19.9611 -0.0453375 Vertex 15057 3.10142 19.6239 0.0486945 Vertex 15058 1.51867 19.7456 3.3657 Vertex 15059 1.82826 19.6519 3.16851 Vertex 15060 1.20978 19.6617 3.45292 Vertex 15061 0.961829 19.4938 3.4612 Vertex 15062 0.769132 19.3163 3.4538 Vertex 15063 0.822759 19.2294 3.46802 Vertex 15064 1.26925 19.1399 3.48761 Vertex 15065 1.75514 19.1481 3.36152 Vertex 15066 2.01619 19.2379 3.13867 Vertex 15067 2.16548 19.3273 2.92285 Vertex 15068 2.15527 19.4099 2.91424 Vertex 15069 2.07125 19.486 2.97898 Vertex 15070 -1.82826 19.6519 3.16851 Vertex 15071 -1.51867 19.7456 3.3657 Vertex 15072 -2.07125 19.486 2.97898 Vertex 15073 -2.15527 19.4099 2.91423 Vertex 15074 -2.16548 19.3273 2.92285 Vertex 15075 -2.01619 19.2379 3.13867 Vertex 15076 -1.75515 19.1481 3.36152 Vertex 15077 -1.26925 19.1399 3.48761 Vertex 15078 -0.822759 19.2294 3.46802 Vertex 15079 -0.769132 19.3163 3.4538 Vertex 15080 -0.961829 19.4938 3.4612 Vertex 15081 -1.20978 19.6617 3.45292 Vertex 15082 1.67452 19.7128 3.18007 Vertex 15083 1.68163 19.732 3.28103 Vertex 15084 1.35861 19.7344 3.4322 Vertex 15085 1.35949 19.7168 3.32634 Vertex 15086 1.07518 19.5936 3.47312 Vertex 15087 1.08195 19.5799 3.36592 Vertex 15088 0.840644 19.4037 3.46626 Vertex 15089 0.852445 19.3959 3.35975 Vertex 15090 0.740184 19.2655 3.46504 Vertex 15091 0.754599 19.2689 3.36061 Vertex 15092 1.01261 19.1681 3.49749 Vertex 15093 1.01661 19.184 3.39035 Vertex 15094 1.54116 19.1119 3.45865 Vertex 15095 1.52719 19.1343 3.34476 Vertex 15096 1.93016 19.1712 3.27288 Vertex 15097 1.9031 19.1906 3.16115 Vertex 15098 2.12965 19.2749 3.01543 Vertex 15099 2.10142 19.2858 2.92152 Vertex 15100 2.19285 19.3694 2.88615 Vertex 15101 2.17019 19.3709 2.80827 Vertex 15102 2.14159 19.448 2.92598 Vertex 15103 2.12435 19.4387 2.84275 Vertex 15104 1.97453 19.5793 3.06428 Vertex 15105 1.96218 19.5622 2.96977 Vertex 15106 -1.67452 19.7128 3.18007 Vertex 15107 -1.68163 19.732 3.28103 Vertex 15108 -1.97453 19.5793 3.06428 Vertex 15109 -1.96218 19.5622 2.96977 Vertex 15110 -2.14158 19.448 2.92598 Vertex 15111 -2.12435 19.4387 2.84275 Vertex 15112 -2.19285 19.3694 2.88615 Vertex 15113 -2.17019 19.3709 2.80827 Vertex 15114 -2.12964 19.2749 3.01543 Vertex 15115 -2.10142 19.2858 2.92152 Vertex 15116 -1.93016 19.1712 3.27287 Vertex 15117 -1.9031 19.1906 3.16115 Vertex 15118 -1.54116 19.1119 3.45865 Vertex 15119 -1.52719 19.1343 3.34476 Vertex 15120 -1.01261 19.1681 3.49749 Vertex 15121 -1.01661 19.184 3.39035 Vertex 15122 -0.740184 19.2655 3.46504 Vertex 15123 -0.754599 19.2689 3.36061 Vertex 15124 -0.840644 19.4037 3.46625 Vertex 15125 -0.852445 19.3959 3.35975 Vertex 15126 -1.07518 19.5936 3.47312 Vertex 15127 -1.08195 19.5799 3.36592 Vertex 15128 -1.35861 19.7344 3.4322 Vertex 15129 -1.35949 19.7168 3.32634 Vertex 15130 -1.48234 15.6626 -2.38541 Vertex 15131 -2.13329 15.1847 -1.71134 Vertex 15132 -1.88596 14.866 -2.24049 Vertex 15133 -2.39465 14.6409 -0.811509 Vertex 15134 -2.34942 14.3339 -1.40601 Vertex 15135 -2.24755 14.3876 -0.311454 Vertex 15136 -2.32109 13.9153 -0.673208 Vertex 15137 -2.11223 14.294 0.006997 Vertex 15138 -2.15523 13.7703 -0.304927 Vertex 15139 -1.86906 14.1685 0.376029 Vertex 15140 -1.98082 13.6707 0.026615 Vertex 15141 -1.45283 14.036 0.760306 Vertex 15142 -1.68474 13.5368 0.419015 Vertex 15143 -0.602182 13.9205 0.999164 Vertex 15144 -1.01978 13.4079 0.746311 Vertex 15145 -0.007328 13.8771 1.04666 Vertex 15146 -0.267034 13.3235 0.882667 Vertex 15147 0.578485 13.9205 0.999164 Vertex 15148 0.277086 13.3235 0.882667 Vertex 15149 1.39487 14.036 0.760305 Vertex 15150 1.0324 13.4079 0.746311 Vertex 15151 1.77745 14.1685 0.376029 Vertex 15152 1.67426 13.5368 0.419015 Vertex 15153 2.02029 14.294 0.006997 Vertex 15154 1.94423 13.6707 0.026615 Vertex 15155 2.17769 14.3876 -0.311454 Vertex 15156 2.11874 13.7703 -0.304927 Vertex 15157 2.39461 14.6409 -0.811509 Vertex 15158 2.30539 13.9153 -0.673208 Vertex 15159 2.28596 15.1847 -1.71134 Vertex 15160 2.42077 14.3339 -1.40601 Vertex 15161 1.66153 15.6626 -2.38541 Vertex 15162 2.05155 14.8659 -2.24049 Vertex 15163 0.72086 16.1311 -2.81762 Vertex 15164 1.20647 15.3417 -2.79643 Vertex 15165 0.0165675 16.3801 -2.9068 Vertex 15166 0.357759 15.7407 -3.05136 Vertex 15167 -0.639709 16.1311 -2.81762 Vertex 15168 -0.292695 15.7407 -3.05136 Vertex 15169 -1.06826 15.3417 -2.79643 Vertex 15170 -1.57503 14.6297 -2.69224 Vertex 15171 -2.21584 14.1518 -2.01817 Vertex 15172 -2.02104 13.9825 -2.53705 Vertex 15173 -2.40207 13.608 -1.11833 Vertex 15174 -2.42248 13.4503 -1.70257 Vertex 15175 -2.2244 13.3547 -0.618279 Vertex 15176 -2.36023 13.0318 -0.969768 Vertex 15177 -2.09296 13.261 -0.299829 Vertex 15178 -2.20059 12.8868 -0.601489 Vertex 15179 -1.85848 13.1355 0.0692037 Vertex 15180 -2.04263 12.7872 -0.269946 Vertex 15181 -1.45472 13.0031 0.45348 Vertex 15182 -1.76712 12.6533 0.122454 Vertex 15183 -0.600551 12.8876 0.692338 Vertex 15184 -1.08926 12.5244 0.44975 Vertex 15185 0.0149845 12.8442 0.73984 Vertex 15186 -0.280056 12.4399 0.586106 Vertex 15187 0.637158 12.8876 0.692338 Vertex 15188 0.32377 12.4399 0.586106 Vertex 15189 1.51025 13.0031 0.45348 Vertex 15190 1.15513 12.5244 0.44975 Vertex 15191 1.89715 13.1355 0.069204 Vertex 15192 1.84982 12.6533 0.122453 Vertex 15193 2.11558 13.261 -0.299829 Vertex 15194 2.11764 12.7872 -0.269946 Vertex 15195 2.2459 13.3547 -0.618279 Vertex 15196 2.26977 12.8868 -0.601489 Vertex 15197 2.44232 13.608 -1.11833 Vertex 15198 2.42654 13.0318 -0.969768 Vertex 15199 2.33286 14.1518 -2.01817 Vertex 15200 2.50563 13.4503 -1.70257 Vertex 15201 1.72282 14.6297 -2.69224 Vertex 15202 2.14088 13.9824 -2.53705 Vertex 15203 0.757939 15.0982 -3.12444 Vertex 15204 1.28792 14.4581 -3.09299 Vertex 15205 0.0361962 15.3472 -3.21362 Vertex 15206 0.395635 14.8572 -3.34792 Vertex 15207 -0.661357 15.0982 -3.12444 Vertex 15208 -0.309011 14.8572 -3.34792 Vertex 15209 -1.17759 14.4581 -3.09299 Vertex 15210 -1.74818 13.8079 -2.98904 Vertex 15211 -2.3653 13.33 -2.31497 Vertex 15212 -2.19287 13.2694 -2.80306 Vertex 15213 -2.50752 12.7861 -1.41513 Vertex 15214 -2.56396 12.7373 -1.96859 Vertex 15215 -2.33626 12.5329 -0.915073 Vertex 15216 -2.50088 12.3187 -1.23578 Vertex 15217 -2.22081 12.4392 -0.596624 Vertex 15218 -2.35087 12.1737 -0.867502 Vertex 15219 -2.00583 12.3137 -0.22759 Vertex 15220 -2.20548 12.0741 -0.53596 Vertex 15221 -1.60446 12.1813 0.156687 Vertex 15222 -1.93795 11.9403 -0.14356 Vertex 15223 -0.674713 12.0657 0.395544 Vertex 15224 -1.21683 11.8113 0.183736 Vertex 15225 0.0214893 12.0223 0.443045 Vertex 15226 -0.320253 11.7268 0.320092 Vertex 15227 0.725383 12.0658 0.395544 Vertex 15228 0.359568 11.7269 0.320092 Vertex 15229 1.68797 12.1812 0.156687 Vertex 15230 1.28051 11.8113 0.183736 Vertex 15231 2.09431 12.3137 -0.22759 Vertex 15232 2.02395 11.9403 -0.14356 Vertex 15233 2.30803 12.4392 -0.596624 Vertex 15234 2.29096 12.0741 -0.53596 Vertex 15235 2.4223 12.5329 -0.915073 Vertex 15236 2.43586 12.1737 -0.867502 Vertex 15237 2.59113 12.7861 -1.41513 Vertex 15238 2.58521 12.3187 -1.23578 Vertex 15239 2.45683 13.33 -2.31497 Vertex 15240 2.64792 12.7373 -1.96859 Vertex 15241 1.84523 13.8079 -2.98903 Vertex 15242 2.27845 13.2694 -2.80306 Vertex 15243 0.837562 14.2763 -3.42123 Vertex 15244 1.39971 13.7451 -3.35901 Vertex 15245 0.0439853 14.5253 -3.51042 Vertex 15246 0.438529 14.1441 -3.61394 Vertex 15247 -0.74787 14.2763 -3.42123 Vertex 15248 -0.352852 14.1441 -3.61394 Vertex 15249 -1.31277 13.7451 -3.35901 Vertex 15250 -1.84202 13.3855 -3.15175 Vertex 15251 -2.46046 12.9076 -2.47767 Vertex 15252 -1.63187 12.9801 -2.50319 Vertex 15253 -2.59644 12.3638 -1.57784 Vertex 15254 -1.92807 12.6136 -1.9207 Vertex 15255 -2.42908 12.1105 -1.07778 Vertex 15256 -1.9225 12.312 -1.39106 Vertex 15257 -2.31954 12.0168 -0.759334 Vertex 15258 -1.82527 12.1793 -1.08555 Vertex 15259 -2.10916 11.8913 -0.390301 Vertex 15260 -1.69648 12.0771 -0.806697 Vertex 15261 -1.70224 11.7589 -0.00602375 Vertex 15262 -1.46085 11.9594 -0.500504 Vertex 15263 -0.726125 11.6434 0.232833 Vertex 15264 -0.914293 11.8541 -0.251666 Vertex 15265 0.018384 11.5999 0.280335 Vertex 15266 -0.24225 11.7883 -0.143165 Vertex 15267 0.771057 11.6434 0.232833 Vertex 15268 0.293522 11.7883 -0.143165 Vertex 15269 1.78177 11.7589 -0.00602375 Vertex 15270 0.981593 11.8541 -0.251666 Vertex 15271 2.19407 11.8913 -0.390301 Vertex 15272 1.54308 11.9594 -0.500504 Vertex 15273 2.40391 12.0168 -0.759334 Vertex 15274 1.7791 12.0771 -0.806696 Vertex 15275 2.51303 12.1105 -1.07778 Vertex 15276 1.9083 12.1793 -1.08555 Vertex 15277 2.67963 12.3638 -1.57784 Vertex 15278 2.00587 12.312 -1.39106 Vertex 15279 2.5442 12.9076 -2.47767 Vertex 15280 2.01193 12.6135 -1.9207 Vertex 15281 1.92764 13.3855 -3.15175 Vertex 15282 1.71705 12.9801 -2.50319 Vertex 15283 0.886875 13.8539 -3.58395 Vertex 15284 1.07173 13.3021 -2.89493 Vertex 15285 0.0424565 14.1029 -3.67313 Vertex 15286 0.352105 13.5645 -3.07755 Vertex 15287 -0.801476 13.854 -3.58395 Vertex 15288 -0.266664 13.5645 -3.07755 Vertex 15289 -0.985734 13.3022 -2.89493 Vertex 15290 -2.9327 17.7384 -0.304821 Vertex 15291 -3.1269 18.7716 -0.257944 Vertex 15292 -3.18458 19.3432 -0.00905975 Vertex 15293 -3.24006 19.663 -0.00110175 Vertex 15294 -3.34285 19.3795 -0.132736 Vertex 15295 -3.26964 19.127 -0.238668 Vertex 15296 -3.41422 19.6667 -0.134648 Vertex 15297 -3.49639 19.9096 -0.304402 Vertex 15298 -3.2516 19.2266 -0.424968 Vertex 15299 -3.15705 19.0898 -0.531983 Vertex 15300 -3.33579 19.4055 -0.334377 Vertex 15301 -3.42147 19.6207 -0.324858 Vertex 15302 -3.47 19.7731 -0.440203 Vertex 15303 -3.51671 20.0233 -0.598812 Vertex 15304 -3.46621 19.8074 -0.630458 Vertex 15305 -3.50345 19.9473 -0.935171 Vertex 15306 -3.45952 19.7496 -0.858855 Vertex 15307 -3.46371 19.6955 -1.20726 Vertex 15308 -3.43195 19.5874 -1.02454 Vertex 15309 -3.3988 19.2944 -1.30247 Vertex 15310 -3.38841 19.2713 -1.10707 Vertex 15311 -3.33153 18.8145 -1.21886 Vertex 15312 -3.31814 18.9002 -1.06393 Vertex 15313 -3.25515 18.4763 -1.05764 Vertex 15314 -3.24359 18.5899 -0.874828 Vertex 15315 -3.19094 18.4615 -0.48375 Vertex 15316 -3.2036 18.5802 -0.612104 Vertex 15317 -3.10937 18.6739 -0.411694 Vertex 15318 -3.08431 18.769 -0.489584 Vertex 15319 -3.24068 18.7792 -0.755787 Vertex 15320 -3.28003 18.9366 -0.979806 Vertex 15321 -3.32306 19.2664 -0.986642 Vertex 15322 -3.34847 19.4521 -0.779394 Vertex 15323 -3.31377 19.5219 -0.903712 Vertex 15324 -3.32175 19.5842 -0.683989 Vertex 15325 -3.32523 19.6531 -0.798501 Vertex 15326 -3.31799 19.7054 -0.625793 Vertex 15327 -3.28799 19.5348 -0.579836 Vertex 15328 -3.21204 19.4855 -0.461854 Vertex 15329 -3.31024 19.3181 -0.72292 Vertex 15330 -3.15221 19.3144 -0.560064 Vertex 15331 -3.1643 17.9115 -0.40018 Vertex 15332 -3.29585 19.1419 -0.863951 Vertex 15333 -3.0741 19.1382 -0.778086 Vertex 15334 -3.29311 19.7795 -1.29877 Vertex 15335 -3.26981 19.2995 -1.39846 Vertex 15336 -3.20929 18.7848 -1.31834 Vertex 15337 -3.11185 18.4273 -1.14807 Vertex 15338 -3.11525 17.8387 -0.722145 Vertex 15339 -2.91843 18.2023 -0.852494 Vertex 15340 -2.94769 18.4915 -1.04613 Vertex 15341 -3.00776 18.8275 -1.20656 Vertex 15342 -2.82735 18.8522 -1.22165 Vertex 15343 -3.05502 19.2732 -1.27841 Vertex 15344 -2.96395 18.346 1.84429 Vertex 15345 -2.82525 18.0358 1.66001 Vertex 15346 -2.74296 17.8915 2.10856 Vertex 15347 -2.87891 18.191 2.39258 Vertex 15348 -2.76181 17.8326 1.53248 Vertex 15349 -2.61807 17.6064 1.87143 Vertex 15350 -2.75481 17.6681 1.38969 Vertex 15351 -2.59136 17.4095 1.68973 Vertex 15352 -2.8034 17.4963 1.21984 Vertex 15353 -2.67101 17.1648 1.43007 Vertex 15354 -2.90583 17.144 0.878872 Vertex 15355 -2.80474 16.8516 1.08408 Vertex 15356 -2.99679 16.885 0.514873 Vertex 15357 -2.90153 16.7016 0.180622 Vertex 15358 -2.7971 16.2126 0.419942 Vertex 15359 -2.71884 16.5144 -0.166824 Vertex 15360 -2.60787 15.9535 0.0823893 Vertex 15361 -2.47279 16.4462 -0.502583 Vertex 15362 -2.26358 16.7008 -1.25794 Vertex 15363 -2.1672 16.2015 -1.38246 Vertex 15364 -2.10799 15.6929 -1.56843 Vertex 15365 -2.37979 15.1704 -0.64247 Vertex 15366 -1.9514 17.0814 -1.7406 Vertex 15367 -1.67437 16.6894 -1.99518 Vertex 15368 -1.49121 16.1746 -2.23656 Vertex 15369 -2.83182 21.7899 -1.31606 Vertex 15370 -2.21651 22.6928 -1.39051 Vertex 15371 -2.99195 21.7607 -0.720062 Vertex 15372 -2.65212 22.6018 -0.344693 Vertex 15373 -3.07222 21.6142 -0.205129 Vertex 15374 -2.78421 22.2557 0.385499 Vertex 15375 -3.06806 21.3934 0.105809 Vertex 15376 -2.8183 21.9206 0.798733 Vertex 15377 -3.00771 20.9529 0.597554 Vertex 15378 -2.80413 21.465 1.20365 Vertex 15379 -2.8583 20.4003 1.08471 Vertex 15380 -2.71576 20.9144 1.5407 Vertex 15381 -2.69169 20.4772 1.73566 Vertex 15382 -1.49092 23.1363 -1.27559 Vertex 15383 -1.98402 23.1725 0.168084 Vertex 15384 -1.09002 23.4201 0.704946 Vertex 15385 -2.11934 22.7598 1.2519 Vertex 15386 -1.27149 22.9213 1.84623 Vertex 15387 -2.19789 22.3446 1.75404 Vertex 15388 -2.2631 21.898 2.07433 Vertex 15389 -1.61967 21.9457 2.72159 Vertex 15390 -2.33248 21.3972 2.30089 Vertex 15391 -1.78905 21.4358 2.96833 Vertex 15392 -2.39356 21.0056 2.44346 Vertex 15393 -1.94968 20.9979 3.08909 Vertex 15394 -1.54006 20.839 3.40743 Vertex 15395 -1.44248 21.2867 3.23668 Vertex 15396 -1.26919 21.824 2.97669 Vertex 15397 -1.15684 20.6097 3.73852 Vertex 15398 -1.08361 21.0466 3.50307 Vertex 15399 -0.854909 21.6107 3.19909 Vertex 15400 -0.799816 20.39 3.95063 Vertex 15401 -0.712369 20.7226 3.80606 Vertex 15402 -0.498268 21.3969 3.42429 Vertex 15403 -0.376696 20.0359 3.99556 Vertex 15404 -0.397089 20.5058 3.88916 Vertex 15405 0.0752675 22.0984 2.99069 Vertex 15406 -0.155088 20.0903 4.0222 Vertex 15407 -0.200427 20.4782 3.94029 Vertex 15408 -0.537195 22.9301 2.16137 Vertex 15409 -0.490881 23.4975 0.982504 Vertex 15410 -2.13695 15.805 2.75493 Vertex 15411 -2.24629 15.4893 2.29806 Vertex 15412 -1.78158 15.1198 2.67718 Vertex 15413 -1.75524 15.4726 2.99383 Vertex 15414 -1.43016 14.8889 2.94886 Vertex 15415 -1.80981 14.7142 2.37524 Vertex 15416 -1.92088 14.7871 1.72119 Vertex 15417 -1.67403 14.5168 2.19377 Vertex 15418 -1.58282 14.5931 1.4774 Vertex 15419 -1.36883 14.3753 1.95557 Vertex 15420 -1.23752 14.4571 1.39721 Vertex 15421 -1.1098 14.3108 1.89059 Vertex 15422 -0.566652 14.3753 1.52087 Vertex 15423 -0.589288 14.2212 1.92749 Vertex 15424 -0.542313 14.0861 2.34102 Vertex 15425 -0.016832 14.1649 1.97547 Vertex 15426 -0.0190575 14.0365 2.351 Vertex 15427 -2.28411 16.156 2.75623 Vertex 15428 -2.37657 16.1438 2.4274 Vertex 15429 -2.45692 15.8313 1.93901 Vertex 15430 -2.44686 15.5281 1.74267 Vertex 15431 -2.33272 15.3302 1.56778 Vertex 15432 -2.06885 15.0387 1.34827 Vertex 15433 -1.81483 14.8431 1.12578 Vertex 15434 -0.61183 14.3605 1.16412 Vertex 15435 -0.0171715 14.316 1.2111 Vertex 15436 -2.74176 18.0108 2.79015 Vertex 15437 -2.66279 17.7786 2.43507 Vertex 15438 -2.58602 17.6037 2.61993 Vertex 15439 -2.58901 17.745 2.99317 Vertex 15440 -2.53724 17.3629 2.68373 Vertex 15441 -2.47881 17.4036 3.04639 Vertex 15442 -2.51089 17.0923 2.67594 Vertex 15443 -2.42357 17.1003 3.00867 Vertex 15444 -2.37499 16.6731 2.9018 Vertex 15445 -2.41105 16.5776 2.1742 Vertex 15446 -2.57726 16.1141 1.66402 Vertex 15447 -2.5681 15.8479 1.43088 Vertex 15448 -2.45037 15.5631 1.16182 Vertex 15449 -2.21284 15.2607 0.934834 Vertex 15450 -2.03314 15.0533 0.76251 Vertex 15451 -1.90464 14.664 0.526376 Vertex 15452 -2.20093 15.2377 0.441455 Vertex 15453 -2.13326 14.7984 0.164469 Vertex 15454 -2.35374 15.4365 0.612947 Vertex 15455 -2.57238 15.7626 0.864879 Vertex 15456 -2.65538 16.0933 1.18406 Vertex 15457 -2.62785 16.3332 1.48504 Vertex 15458 -2.47744 16.3968 1.927 Vertex 15459 -2.51716 16.628 1.79412 Vertex 15460 -2.43177 16.8566 2.06698 Vertex 15461 -2.45333 16.9946 2.37354 Vertex 15462 -2.54644 17.4706 2.08887 Vertex 15463 -2.51634 17.2557 1.85711 Vertex 15464 -2.60431 16.9633 1.5612 Vertex 15465 -2.74558 16.6817 1.21286 Vertex 15466 -2.49717 17.3338 2.24711 Vertex 15467 -2.5559 16.7948 1.67576 Vertex 15468 -2.69245 16.4875 1.34323 Vertex 15469 -2.74522 16.2525 1.03124 Vertex 15470 -2.67203 15.9217 0.673152 Vertex 15471 -2.46414 15.6022 0.363521 Vertex 15472 -2.28692 15.4523 0.174999 Vertex 15473 -2.25767 14.9109 -0.146574 Vertex 15474 -2.47785 17.2101 2.31312 Vertex 15475 -0.204334 19.2502 4.17825 Vertex 15476 0 19.2844 4.22822 Vertex 15477 -0.227916 18.9702 4.38879 Vertex 15478 0 18.999 4.44823 Vertex 15479 -0.259853 18.7371 4.54962 Vertex 15480 0 18.7574 4.6202 Vertex 15481 -0.357781 19.481 3.8343 Vertex 15482 -0.360944 19.1791 4.02481 Vertex 15483 -0.399166 18.886 4.19272 Vertex 15484 -0.41747 18.6119 4.31339 Vertex 15485 -0.499588 19.309 3.58495 Vertex 15486 -0.537862 19.0432 3.74501 Vertex 15487 -0.806511 18.9124 3.55402 Vertex 15488 -0.851787 18.6542 3.66368 Vertex 15489 -0.858311 18.395 3.75414 Vertex 15490 -0.4683 19.8693 3.96435 Vertex 15491 -0.591804 19.5028 3.57294 Vertex 15492 -0.674838 19.3605 3.44898 Vertex 15493 -1.36073 18.9142 3.55321 Vertex 15494 -0.312275 18.4052 4.78891 Vertex 15495 0 18.4342 4.85882 Vertex 15496 -0.486365 18.3303 4.51116 Vertex 15497 -0.577502 18.2905 4.3258 Vertex 15498 -0.740756 18.22 4.19016 Vertex 15499 -0.843179 18.1016 4.05616 Vertex 15500 -0.771342 17.8701 4.16614 Vertex 15501 -0.681014 17.9643 4.32968 Vertex 15502 0 17.9845 4.83739 Vertex 15503 -0.17184 17.759 4.5524 Vertex 15504 0 17.7402 4.59482 Vertex 15505 -0.369798 17.9454 4.16084 Vertex 15506 -0.463904 17.6642 4.19922 Vertex 15507 -0.194523 17.3223 4.339 Vertex 15508 -0.510404 17.389 4.25593 Vertex 15509 -0.448849 15.5604 4.06726 Vertex 15510 0 15.5967 4.15868 Vertex 15511 -0.838007 17.4592 4.11368 Vertex 15512 -0.837625 15.4789 3.86849 Vertex 15513 -1.23047 17.5256 3.75515 Vertex 15514 -1.32251 18.5443 3.60682 Vertex 15515 -1.22089 18.2364 3.70611 Vertex 15516 -1.90737 18.8257 3.53433 Vertex 15517 -1.87389 18.4126 3.574 Vertex 15518 -1.71959 18.0277 3.61008 Vertex 15519 -2.31109 18.9746 3.17163 Vertex 15520 -2.60046 18.6921 2.94791 Vertex 15521 -2.15317 17.884 3.48854 Vertex 15522 -2.02382 17.4424 3.35363 Vertex 15523 -2.4147 17.8218 3.30025 Vertex 15524 -0.348324 14.9816 3.97552 Vertex 15525 0 14.9927 4.03066 Vertex 15526 -0.310797 14.6363 4.02127 Vertex 15527 0 14.3199 3.88075 Vertex 15528 -0.696301 14.9205 3.85713 Vertex 15529 -0.549239 14.5435 3.90114 Vertex 15530 -0.988519 14.8073 3.63066 Vertex 15531 -0.707204 14.3956 3.74005 Vertex 15532 -1.09997 14.5396 3.27292 Vertex 15533 -0.702035 14.2434 3.52872 Vertex 15534 -1.03638 14.2723 3.0254 Vertex 15535 -0.653983 14.1439 3.37508 Vertex 15536 -0.758432 14.0883 2.87107 Vertex 15537 -0.514903 14.0537 3.26556 Vertex 15538 -0.421291 13.9645 2.79539 Vertex 15539 -0.291542 13.9383 3.19879 Vertex 15540 -2.39608 19.2301 2.69455 Vertex 15541 -2.13623 19.6496 2.84993 Vertex 15542 -1.86397 19.8479 3.11862 Vertex 15543 -1.48515 19.9237 3.35255 Vertex 15544 -1.17201 19.7896 3.46603 Vertex 15545 -0.891531 19.5857 3.46255 Vertex 15546 -0.8801 19.779 3.82114 Vertex 15547 -0.870451 19.6569 3.64422 Vertex 15548 -1.21292 19.9455 3.77416 Vertex 15549 -1.18096 19.8372 3.63278 Vertex 15550 -1.63538 20.1483 3.59036 Vertex 15551 -1.55482 20.0294 3.49222 Vertex 15552 -2.03922 20.0559 3.21815 Vertex 15553 -2.4624 20.2192 2.61309 Vertex 15554 -2.33352 19.8996 2.8193 Vertex 15555 -2.70308 19.846 2.11221 Vertex 15556 -2.54818 19.5921 2.45482 Vertex 15557 -2.81515 19.5533 1.83846 Vertex 15558 -2.88316 19.3357 1.72315 Vertex 15559 -2.98025 19.0096 1.68587 Vertex 15560 -2.61157 18.1677 3.10614 Vertex 15561 -2.8247 18.4195 2.64372 Vertex 15562 -2.97521 18.5984 2.08418 Vertex 15563 -3.04099 18.8123 1.62474 Vertex 15564 -3.00904 18.6532 1.49646 Vertex 15565 -2.50748 20.5197 2.57259 Vertex 15566 -2.72785 20.1679 1.92059 Vertex 15567 -2.91231 19.5639 1.31524 Vertex 15568 -2.98888 19.1386 1.17055 Vertex 15569 -2.98518 17.9882 0.0225355 Vertex 15570 -2.94259 17.3478 0.0454485 Vertex 15571 -2.62837 17.1276 -0.534593 Vertex 15572 -2.43264 17.1958 -1.07557 Vertex 15573 -2.23491 17.4766 -1.49067 Vertex 15574 -3.04291 19.8956 -1.31197 Vertex 15575 -1.51086 19.8294 3.38414 Vertex 15576 -1.19794 19.7237 3.48438 Vertex 15577 -0.928085 19.5375 3.48752 Vertex 15578 -0.719245 19.327 3.47396 Vertex 15579 -0.77517 19.1998 3.47862 Vertex 15580 -1.31757 19.0367 3.54519 Vertex 15581 -1.86104 19.0098 3.45103 Vertex 15582 -2.16191 19.1285 3.19054 Vertex 15583 -2.27705 19.3046 2.83254 Vertex 15584 -2.26302 19.4151 2.78762 Vertex 15585 -2.12249 19.5616 2.93413 Vertex 15586 -1.85961 19.7444 3.16546 Vertex 15587 -0.901719 19.5735 3.46951 Vertex 15588 -0.88338 19.5988 3.49005 Vertex 15589 -0.655871 19.3773 3.46305 Vertex 15590 -0.641545 19.3076 3.44619 Vertex 15591 -0.687026 19.3487 3.45616 Vertex 15592 -1.18018 19.7726 3.47135 Vertex 15593 -1.16982 19.8048 3.49216 Vertex 15594 -1.49094 19.8972 3.36069 Vertex 15595 -1.49557 19.9548 3.37178 Vertex 15596 -1.8615 19.8189 3.13092 Vertex 15597 -1.89025 19.8908 3.13007 Vertex 15598 -2.13501 19.6218 2.86917 Vertex 15599 -2.16864 19.6944 2.84405 Vertex 15600 -2.31929 19.425 2.65742 Vertex 15601 -2.37082 19.3716 2.59691 Vertex 15602 -2.41339 19.3846 2.55092 Vertex 15603 -2.36827 19.4704 2.59621 Vertex 15604 -0.393111 17.967 4.31363 Vertex 15605 -0.250986 17.864 4.32633 Vertex 15606 -0.431825 17.8099 4.1504 Vertex 15607 -0.654217 17.8694 4.14891 Vertex 15608 -0.563135 17.9133 4.24179 Vertex 15609 -0.30092 17.9365 4.33914 Vertex 15610 -0.288643 18.5695 4.67877 Vertex 15611 -0.454329 18.4649 4.41799 Vertex 15612 -0.569988 18.3904 4.16422 Vertex 15613 -0.677687 18.3475 4.06789 Vertex 15614 -0.740124 18.2774 3.98338 Vertex 15615 -1.86265e-009 18.2177 4.88862 Vertex 15616 -0.306783 18.2 4.80813 Vertex 15617 -0.477281 18.1671 4.5442 Vertex 15618 -0.547776 18.1477 4.4208 Vertex 15619 -0.726687 18.0878 4.27635 Vertex 15620 -0.82724 17.9738 4.12037 Vertex 15621 -0.869784 17.768 3.97025 Vertex 15622 -0.955927 17.4804 4.02387 Vertex 15623 -0.234642 17.8088 4.44694 Vertex 15624 -0.310009 17.9286 4.54305 Vertex 15625 -0.430933 17.9556 4.42822 Vertex 15626 -0.62573 17.9101 4.30421 Vertex 15627 -0.716827 17.8442 4.1727 Vertex 15628 -0.606555 18.3918 3.94932 Vertex 15629 -0.74774 18.2015 3.90651 Vertex 15630 -0.748644 18.1839 3.87292 Vertex 15631 -0.848928 17.9681 3.94322 Vertex 15632 -0.829795 17.8562 4.01479 Vertex 15633 -0.836625 17.8279 3.98365 Vertex 15634 -0.793318 17.7222 4.05295 Vertex 15635 -0.626743 18.3563 3.89633 Vertex 15636 -0.761201 18.1674 3.83249 Vertex 15637 -0.82934 18.0725 3.81532 Vertex 15638 -1.07502 17.8474 3.7696 Vertex 15639 -1.10276 17.9872 3.72495 Vertex 15640 0 16.9508 3.95254 Vertex 15641 -0.379576 17.0021 3.86189 Vertex 15642 -0.746066 17.0532 3.70281 Vertex 15643 -1.21535 17.1229 3.45016 Vertex 15644 -1.62601 17.0789 3.10244 Vertex 15645 -1.53159 17.1462 3.17593 Vertex 15646 -1.76694 16.6866 2.96478 Vertex 15647 -1.74752 16.2091 2.95134 Vertex 15648 -1.54612 16.014 3.11913 Vertex 15649 -1.17583 15.9828 3.36372 Vertex 15650 -0.715608 16.0441 3.63808 Vertex 15651 -0.351479 16.0662 3.79539 Vertex 15652 -1.86265e-009 16.0677 3.87686 Vertex 15653 -0.44178 15.8335 4.10151 Vertex 15654 -0.419309 15.9353 4.04044 Vertex 15655 -0.865971 15.7855 3.91787 Vertex 15656 -0.837543 15.8984 3.87047 Vertex 15657 -1.3217 15.7259 3.58195 Vertex 15658 -1.30509 15.8398 3.55132 Vertex 15659 -1.72418 15.7434 3.16245 Vertex 15660 -1.67417 15.8491 3.17788 Vertex 15661 -1.9632 16.0139 2.93337 Vertex 15662 -2.03136 16.1771 2.92038 Vertex 15663 -2.00128 16.6898 3.02315 Vertex 15664 -1.83399 17.2252 3.25938 Vertex 15665 -1.64095 17.3062 3.35185 Vertex 15666 -1.6294 17.2216 3.2849 Vertex 15667 -1.3216 17.286 3.67424 Vertex 15668 -1.30157 17.2019 3.61317 Vertex 15669 -0.899533 17.1453 3.97413 Vertex 15670 -0.516874 17.1653 4.2385 Vertex 15671 -0.49282 17.0877 4.15598 Vertex 15672 -2.27473 17.4125 3.2212 Vertex 15673 -2.21177 17.1148 3.12397 Vertex 15674 -1.86265e-009 15.2143 3.93971 Vertex 15675 -0.382987 15.2344 3.90401 Vertex 15676 -0.390824 15.3409 3.92421 Vertex 15677 -0.767208 15.2356 3.79566 Vertex 15678 -0.769195 15.3335 3.80783 Vertex 15679 -0.749306 19.166 3.45183 Vertex 15680 -0.637929 19.2229 3.42774 Vertex 15681 -0.612626 19.2011 3.44304 Vertex 15682 -0.726039 19.1073 3.45394 Vertex 15683 -1.36165 18.9466 3.55467 Vertex 15684 -1.90077 18.7581 3.54294 Vertex 15685 -1.9036 18.8696 3.51474 Vertex 15686 -3.00049 19.1315 0.102693 Vertex 15687 -2.99303 18.5195 0.0602455 Vertex 15688 -1.1728 22.6299 -2.32307 Vertex 15689 -1.72959 22.3375 -2.23468 Vertex 15690 -2.57383 21.5891 -1.8472 Vertex 15691 -2.99763 21.1701 -1.16044 Vertex 15692 -3.05801 21.1127 -0.911509 Vertex 15693 -3.08621 21.0277 -0.405937 Vertex 15694 -3.09099 20.9559 -0.213211 Vertex 15695 -3.08661 20.6569 0.334449 Vertex 15696 -2.96583 20.1355 0.85868 Vertex 15697 -2.96304 19.8684 0.961287 Vertex 15698 -3.01148 19.4606 0.907637 Vertex 15699 -3.00342 18.8851 1.06169 Vertex 15700 -2.92751 18.4568 1.26895 Vertex 15701 -2.87677 18.2257 1.25253 Vertex 15702 -2.90559 18.0362 1.0712 Vertex 15703 -2.92448 17.9321 0.978103 Vertex 15704 -2.97902 17.5788 0.650494 Vertex 15705 -3.02251 17.3954 0.30506 Vertex 15706 -2.9824 18.2756 0.0291322 Vertex 15707 -3.07551 18.1449 -0.162313 Vertex 15708 -2.60796 17.6875 -0.806108 Vertex 15709 -2.73689 17.6024 -0.508029 Vertex 15710 -3.15748 19.0721 -0.13516 Vertex 15711 -2.9029 19.2998 -1.29794 Vertex 15712 -3.03439 19.7262 -1.24376 Vertex 15713 -3.11373 20.1802 -0.900279 Vertex 15714 -2.70273 18.7385 -1.53978 Vertex 15715 -2.59293 18.3137 -1.34904 Vertex 15716 -2.77091 18.4678 -1.03913 Vertex 15717 -2.76688 18.1738 -0.832003 Vertex 15718 -3.09282 20.2178 -0.106983 Vertex 15719 -3.29494 20.0532 -0.230667 Vertex 15720 -3.05537 19.9663 0.0154847 Vertex 15721 -3.02173 19.5874 0.0777203 Vertex 15722 2.94576 17.7384 -0.304821 Vertex 15723 3.1269 18.7716 -0.257944 Vertex 15724 3.18458 19.3432 -0.00906 Vertex 15725 3.24006 19.663 -0.00110175 Vertex 15726 3.34285 19.3795 -0.132736 Vertex 15727 3.26964 19.127 -0.238668 Vertex 15728 3.41422 19.6667 -0.134648 Vertex 15729 3.49639 19.9096 -0.304402 Vertex 15730 3.2516 19.2266 -0.424968 Vertex 15731 3.15705 19.0898 -0.531983 Vertex 15732 3.3358 19.4055 -0.334377 Vertex 15733 3.42147 19.6207 -0.324858 Vertex 15734 3.47 19.7731 -0.440203 Vertex 15735 3.51671 20.0233 -0.598812 Vertex 15736 3.46621 19.8074 -0.630458 Vertex 15737 3.50346 19.9473 -0.935171 Vertex 15738 3.45952 19.7496 -0.858855 Vertex 15739 3.46371 19.6955 -1.20726 Vertex 15740 3.43195 19.5874 -1.02454 Vertex 15741 3.39881 19.2944 -1.30247 Vertex 15742 3.38841 19.2713 -1.10707 Vertex 15743 3.33153 18.8145 -1.21886 Vertex 15744 3.31814 18.9002 -1.06393 Vertex 15745 3.25515 18.4764 -1.05764 Vertex 15746 3.24359 18.5899 -0.874828 Vertex 15747 3.19094 18.4615 -0.48375 Vertex 15748 3.2036 18.5802 -0.612104 Vertex 15749 3.10937 18.6739 -0.411693 Vertex 15750 3.08431 18.769 -0.489584 Vertex 15751 3.24068 18.7792 -0.755788 Vertex 15752 3.28003 18.9366 -0.979806 Vertex 15753 3.32306 19.2664 -0.986642 Vertex 15754 3.34847 19.452 -0.779394 Vertex 15755 3.31377 19.5219 -0.903712 Vertex 15756 3.32175 19.5842 -0.683989 Vertex 15757 3.32523 19.6531 -0.798501 Vertex 15758 3.31799 19.7054 -0.625792 Vertex 15759 3.28799 19.5348 -0.579836 Vertex 15760 3.21204 19.4855 -0.461854 Vertex 15761 3.31024 19.3181 -0.72292 Vertex 15762 3.15221 19.3144 -0.560064 Vertex 15763 3.16729 17.9115 -0.40018 Vertex 15764 3.29585 19.1419 -0.863951 Vertex 15765 3.06364 19.1366 -0.749678 Vertex 15766 3.29311 19.7795 -1.29877 Vertex 15767 3.26981 19.2995 -1.39845 Vertex 15768 3.20929 18.7848 -1.31834 Vertex 15769 3.11185 18.4273 -1.14807 Vertex 15770 3.12823 17.8387 -0.722146 Vertex 15771 2.92036 18.2023 -0.852494 Vertex 15772 2.94769 18.4915 -1.04613 Vertex 15773 3.00776 18.8275 -1.20656 Vertex 15774 2.82735 18.8522 -1.22165 Vertex 15775 3.05502 19.2732 -1.27841 Vertex 15776 2.96395 18.346 1.84429 Vertex 15777 2.82525 18.0358 1.66001 Vertex 15778 2.74296 17.8915 2.10856 Vertex 15779 2.87891 18.191 2.39258 Vertex 15780 2.76181 17.8326 1.53248 Vertex 15781 2.61807 17.6064 1.87144 Vertex 15782 2.75481 17.6681 1.38969 Vertex 15783 2.59135 17.4095 1.68973 Vertex 15784 2.80325 17.4963 1.21984 Vertex 15785 2.66925 17.1648 1.43007 Vertex 15786 2.89317 17.144 0.878871 Vertex 15787 2.78158 16.8516 1.08408 Vertex 15788 2.97269 16.885 0.514873 Vertex 15789 2.8836 16.7016 0.180623 Vertex 15790 2.73631 16.2126 0.419943 Vertex 15791 2.72561 16.5144 -0.166824 Vertex 15792 2.55419 15.9535 0.0823893 Vertex 15793 2.52333 16.4462 -0.502583 Vertex 15794 2.40587 16.7008 -1.25794 Vertex 15795 2.32855 16.2015 -1.38246 Vertex 15796 2.27297 15.6929 -1.56843 Vertex 15797 2.37325 15.1704 -0.64247 Vertex 15798 2.09007 17.0814 -1.7406 Vertex 15799 1.83651 16.6894 -1.99518 Vertex 15800 1.66508 16.1746 -2.23656 Vertex 15801 0.738083 16.6597 -2.686 Vertex 15802 2.83182 21.7899 -1.31606 Vertex 15803 2.21651 22.6928 -1.39051 Vertex 15804 2.99195 21.7607 -0.720061 Vertex 15805 2.65212 22.6018 -0.344693 Vertex 15806 3.07222 21.6142 -0.205129 Vertex 15807 2.78421 22.2557 0.385499 Vertex 15808 3.06806 21.3934 0.105809 Vertex 15809 2.8183 21.9205 0.798733 Vertex 15810 3.00771 20.9529 0.597554 Vertex 15811 2.80413 21.465 1.20365 Vertex 15812 2.8583 20.4003 1.08471 Vertex 15813 2.71576 20.9144 1.5407 Vertex 15814 2.69169 20.4772 1.73566 Vertex 15815 1.49092 23.1363 -1.27559 Vertex 15816 0.228283 23.514 -0.475232 Vertex 15817 1.98402 23.1725 0.168084 Vertex 15818 1.09002 23.4201 0.704946 Vertex 15819 2.11934 22.7598 1.2519 Vertex 15820 1.27149 22.9213 1.84623 Vertex 15821 2.19789 22.3446 1.75404 Vertex 15822 2.2631 21.898 2.07433 Vertex 15823 1.61967 21.9457 2.72159 Vertex 15824 2.33248 21.3972 2.3009 Vertex 15825 1.78905 21.4358 2.96833 Vertex 15826 2.39356 21.0056 2.44346 Vertex 15827 1.94968 20.9979 3.0891 Vertex 15828 1.54006 20.839 3.40743 Vertex 15829 1.44247 21.2867 3.23668 Vertex 15830 1.26919 21.824 2.97669 Vertex 15831 1.15684 20.6097 3.73852 Vertex 15832 1.08361 21.0466 3.50307 Vertex 15833 0.854909 21.6107 3.19908 Vertex 15834 0.799816 20.39 3.95063 Vertex 15835 0.712369 20.7226 3.80606 Vertex 15836 0.498268 21.3969 3.42429 Vertex 15837 0.376696 20.0359 3.99556 Vertex 15838 0.39709 20.5058 3.88916 Vertex 15839 0.155088 20.0903 4.0222 Vertex 15840 0.200427 20.4782 3.94029 Vertex 15841 -9.31323e-010 20.1134 4.02298 Vertex 15842 9.31323e-010 20.5048 3.93861 Vertex 15843 -9.31323e-010 21.2437 3.51963 Vertex 15844 0 22.9125 2.28447 Vertex 15845 0.537195 22.9301 2.16137 Vertex 15846 0 23.4959 1.05869 Vertex 15847 0.490881 23.4975 0.982505 Vertex 15848 2.13695 15.805 2.75493 Vertex 15849 2.2451 15.4893 2.29806 Vertex 15850 1.78158 15.1198 2.67718 Vertex 15851 1.75524 15.4726 2.99383 Vertex 15852 1.43016 14.8888 2.94886 Vertex 15853 1.80955 14.7142 2.37524 Vertex 15854 1.88433 14.7871 1.72119 Vertex 15855 1.67198 14.5168 2.19377 Vertex 15856 1.53198 14.5931 1.4774 Vertex 15857 1.36315 14.3753 1.95557 Vertex 15858 1.19122 14.4571 1.39721 Vertex 15859 1.10123 14.3108 1.89059 Vertex 15860 0.527963 14.3753 1.52087 Vertex 15861 0.55878 14.2212 1.92749 Vertex 15862 0.514287 14.0861 2.34102 Vertex 15863 -0.019145 14.3239 1.56619 Vertex 15864 2.28411 16.156 2.75623 Vertex 15865 2.37657 16.1438 2.4274 Vertex 15866 2.44382 15.8313 1.93901 Vertex 15867 2.4125 15.5281 1.74267 Vertex 15868 2.27439 15.3302 1.56778 Vertex 15869 1.98208 15.0387 1.34827 Vertex 15870 1.70907 14.8431 1.12578 Vertex 15871 0.561677 14.3605 1.16412 Vertex 15872 2.74176 18.0108 2.79015 Vertex 15873 2.66279 17.7786 2.43507 Vertex 15874 2.58602 17.6037 2.61993 Vertex 15875 2.58901 17.745 2.99317 Vertex 15876 2.53724 17.3629 2.68373 Vertex 15877 2.47881 17.4036 3.04639 Vertex 15878 2.51089 17.0923 2.67594 Vertex 15879 2.42357 17.1003 3.00867 Vertex 15880 2.37499 16.6731 2.9018 Vertex 15881 2.41105 16.5776 2.1742 Vertex 15882 2.55225 16.1141 1.66402 Vertex 15883 2.51009 15.8478 1.43087 Vertex 15884 2.35294 15.5631 1.16182 Vertex 15885 2.08955 15.2607 0.934834 Vertex 15886 1.89957 15.0533 0.76251 Vertex 15887 1.77584 14.664 0.526376 Vertex 15888 2.07251 15.2377 0.441455 Vertex 15889 2.01173 14.7984 0.164469 Vertex 15890 2.2313 15.4365 0.612947 Vertex 15891 2.47073 15.7626 0.864879 Vertex 15892 2.58832 16.0933 1.18406 Vertex 15893 2.59783 16.3332 1.48504 Vertex 15894 2.47361 16.3968 1.927 Vertex 15895 2.51314 16.628 1.79412 Vertex 15896 2.43177 16.8566 2.06698 Vertex 15897 2.45333 16.9946 2.37354 Vertex 15898 2.54644 17.4706 2.08887 Vertex 15899 2.51634 17.2557 1.85711 Vertex 15900 2.60104 16.9633 1.56121 Vertex 15901 2.71769 16.6817 1.21286 Vertex 15902 2.49717 17.3338 2.24711 Vertex 15903 2.55179 16.7948 1.67576 Vertex 15904 2.66081 16.4875 1.34323 Vertex 15905 2.68169 16.2525 1.03124 Vertex 15906 2.58131 15.9217 0.673152 Vertex 15907 2.36118 15.6022 0.363521 Vertex 15908 2.18579 15.4523 0.174999 Vertex 15909 2.16503 14.9109 -0.146574 Vertex 15910 2.47785 17.2101 2.31312 Vertex 15911 0.0372515 19.7208 3.97014 Vertex 15912 0.204334 19.2502 4.17825 Vertex 15913 0.227915 18.9702 4.3888 Vertex 15914 0.259853 18.7371 4.54962 Vertex 15915 0.357781 19.481 3.8343 Vertex 15916 0.360944 19.1791 4.02481 Vertex 15917 0.399166 18.886 4.19273 Vertex 15918 0.41747 18.6119 4.31339 Vertex 15919 0.499588 19.309 3.58495 Vertex 15920 0.537862 19.0432 3.74502 Vertex 15921 0.80651 18.9124 3.55402 Vertex 15922 0.851787 18.6542 3.66368 Vertex 15923 0.858311 18.395 3.75414 Vertex 15924 0.4683 19.8693 3.96435 Vertex 15925 0.591804 19.5028 3.57294 Vertex 15926 0.674838 19.3605 3.44898 Vertex 15927 1.36073 18.9142 3.55321 Vertex 15928 0.312275 18.4052 4.78891 Vertex 15929 0.486365 18.3303 4.51116 Vertex 15930 0.577502 18.2905 4.3258 Vertex 15931 0.740756 18.2201 4.19017 Vertex 15932 0.843179 18.1016 4.05616 Vertex 15933 0.771342 17.8701 4.16614 Vertex 15934 0.681014 17.9643 4.32968 Vertex 15935 0.17184 17.759 4.5524 Vertex 15936 0.425451 17.9276 4.12318 Vertex 15937 0 17.5187 4.40762 Vertex 15938 0.463904 17.6642 4.19922 Vertex 15939 0.194523 17.3223 4.339 Vertex 15940 0 17.3001 4.34391 Vertex 15941 0.510404 17.389 4.25593 Vertex 15942 0.448849 15.5604 4.06726 Vertex 15943 0.838006 17.4592 4.11368 Vertex 15944 0.837625 15.479 3.86849 Vertex 15945 1.23047 17.5256 3.75515 Vertex 15946 1.32251 18.5443 3.60682 Vertex 15947 1.22089 18.2363 3.70611 Vertex 15948 1.90737 18.8257 3.53433 Vertex 15949 1.87389 18.4126 3.574 Vertex 15950 1.71959 18.0276 3.61008 Vertex 15951 2.31109 18.9746 3.17163 Vertex 15952 2.60046 18.6921 2.94791 Vertex 15953 2.15317 17.884 3.48853 Vertex 15954 2.02382 17.4424 3.35363 Vertex 15955 2.4147 17.8218 3.30025 Vertex 15956 0.348324 14.9816 3.97552 Vertex 15957 0.310797 14.6363 4.02127 Vertex 15958 0 14.6874 4.04247 Vertex 15959 0.696301 14.9205 3.85713 Vertex 15960 0.549239 14.5435 3.90114 Vertex 15961 0.988518 14.8073 3.63066 Vertex 15962 0.707204 14.3956 3.74005 Vertex 15963 1.09998 14.5396 3.27292 Vertex 15964 0.702035 14.2434 3.52872 Vertex 15965 1.03638 14.2723 3.0254 Vertex 15966 0.653982 14.1438 3.37508 Vertex 15967 0.757885 14.0883 2.87107 Vertex 15968 0.514903 14.0537 3.26556 Vertex 15969 0.412558 13.9645 2.79539 Vertex 15970 0.290738 13.9383 3.19879 Vertex 15971 -0.016911 13.9303 2.76551 Vertex 15972 -0.0024115 13.8862 3.19052 Vertex 15973 -1.86265e-009 14.0363 3.54685 Vertex 15974 2.39609 19.2301 2.69455 Vertex 15975 2.13623 19.6496 2.84993 Vertex 15976 1.86397 19.8479 3.11862 Vertex 15977 1.48515 19.9237 3.35255 Vertex 15978 1.17201 19.7896 3.46603 Vertex 15979 0.891531 19.5857 3.46255 Vertex 15980 0.8801 19.779 3.82113 Vertex 15981 0.870451 19.6569 3.64422 Vertex 15982 1.21292 19.9455 3.77416 Vertex 15983 1.18096 19.8372 3.63279 Vertex 15984 1.63538 20.1483 3.59036 Vertex 15985 1.55482 20.0294 3.49222 Vertex 15986 2.03922 20.0559 3.21815 Vertex 15987 2.4624 20.2192 2.61309 Vertex 15988 2.33351 19.8995 2.8193 Vertex 15989 2.70308 19.846 2.11221 Vertex 15990 2.54818 19.5921 2.45482 Vertex 15991 2.81515 19.5533 1.83847 Vertex 15992 2.88315 19.3357 1.72315 Vertex 15993 2.98025 19.0096 1.68587 Vertex 15994 2.61157 18.1677 3.10614 Vertex 15995 2.82469 18.4195 2.64372 Vertex 15996 2.97521 18.5984 2.08418 Vertex 15997 3.04099 18.8123 1.62474 Vertex 15998 3.00904 18.6532 1.49646 Vertex 15999 2.50748 20.5197 2.57259 Vertex 16000 2.72785 20.1679 1.92059 Vertex 16001 2.91231 19.5639 1.31524 Vertex 16002 2.98888 19.1386 1.17055 Vertex 16003 2.95409 17.9619 -0.0065525 Vertex 16004 2.94766 17.3478 0.0454485 Vertex 16005 2.68239 17.1276 -0.534593 Vertex 16006 2.53173 17.1957 -1.07557 Vertex 16007 2.32847 17.4766 -1.49067 Vertex 16008 3.04292 19.8956 -1.31197 Vertex 16009 0.00520375 16.8907 -2.78986 Vertex 16010 1.51086 19.8294 3.38414 Vertex 16011 1.19794 19.7237 3.48438 Vertex 16012 0.928085 19.5375 3.48752 Vertex 16013 0.719245 19.327 3.47396 Vertex 16014 0.77517 19.1998 3.47862 Vertex 16015 1.31756 19.0367 3.54519 Vertex 16016 1.86104 19.0098 3.45103 Vertex 16017 2.16191 19.1285 3.19054 Vertex 16018 2.27705 19.3046 2.83254 Vertex 16019 2.26302 19.4151 2.78762 Vertex 16020 2.12249 19.5616 2.93413 Vertex 16021 1.85961 19.7444 3.16546 Vertex 16022 0.901719 19.5735 3.46952 Vertex 16023 0.88338 19.5988 3.49005 Vertex 16024 0.655871 19.3773 3.46305 Vertex 16025 0.641545 19.3076 3.44619 Vertex 16026 0.687027 19.3487 3.45616 Vertex 16027 1.18018 19.7726 3.47135 Vertex 16028 1.16982 19.8049 3.49216 Vertex 16029 1.49094 19.8972 3.36069 Vertex 16030 1.49557 19.9548 3.37178 Vertex 16031 1.8615 19.8189 3.13092 Vertex 16032 1.89025 19.8908 3.13007 Vertex 16033 2.13501 19.6218 2.86917 Vertex 16034 2.16864 19.6944 2.84405 Vertex 16035 2.31929 19.425 2.65742 Vertex 16036 2.37082 19.3716 2.59691 Vertex 16037 2.41339 19.3846 2.55092 Vertex 16038 2.36827 19.4704 2.59621 Vertex 16039 0.393111 17.967 4.31363 Vertex 16040 0.250986 17.864 4.32633 Vertex 16041 0.431825 17.8099 4.1504 Vertex 16042 0.654217 17.8694 4.14891 Vertex 16043 0.563135 17.9133 4.24179 Vertex 16044 0.30092 17.9365 4.33914 Vertex 16045 0 18.5942 4.74891 Vertex 16046 0.288643 18.5695 4.67877 Vertex 16047 0.454329 18.4649 4.41799 Vertex 16048 0.569988 18.3904 4.16422 Vertex 16049 0.677687 18.3475 4.06789 Vertex 16050 0.740124 18.2774 3.98338 Vertex 16051 0.306783 18.2 4.80813 Vertex 16052 0.477281 18.1671 4.5442 Vertex 16053 0.547776 18.1477 4.4208 Vertex 16054 0.726687 18.0878 4.27634 Vertex 16055 0.82724 17.9738 4.12037 Vertex 16056 0.869784 17.768 3.97025 Vertex 16057 0.955927 17.4804 4.02387 Vertex 16058 0.234642 17.8088 4.44694 Vertex 16059 0.310009 17.9286 4.54305 Vertex 16060 0.430933 17.9556 4.42822 Vertex 16061 0.62573 17.9101 4.30421 Vertex 16062 0.716826 17.8442 4.1727 Vertex 16063 0.590217 18.4172 3.92187 Vertex 16064 0.74774 18.2015 3.90651 Vertex 16065 0.748644 18.1839 3.87292 Vertex 16066 0.848928 17.9681 3.94323 Vertex 16067 0.829795 17.8562 4.01479 Vertex 16068 0.836625 17.8279 3.98365 Vertex 16069 0.793318 17.7222 4.05295 Vertex 16070 0.626743 18.3563 3.89633 Vertex 16071 0.761201 18.1674 3.83249 Vertex 16072 0.82934 18.0724 3.81532 Vertex 16073 1.07502 17.8474 3.7696 Vertex 16074 1.10276 17.9872 3.72495 Vertex 16075 0.379576 17.0021 3.86189 Vertex 16076 0.746067 17.0532 3.70281 Vertex 16077 1.21535 17.1229 3.45016 Vertex 16078 1.62601 17.0789 3.10244 Vertex 16079 1.53159 17.1462 3.17593 Vertex 16080 1.76694 16.6866 2.96478 Vertex 16081 1.74752 16.2091 2.95134 Vertex 16082 1.54612 16.014 3.11913 Vertex 16083 1.17583 15.9828 3.36371 Vertex 16084 0.715608 16.0441 3.63808 Vertex 16085 0.351479 16.0662 3.79539 Vertex 16086 0 15.9455 4.12474 Vertex 16087 0 15.8503 4.1906 Vertex 16088 0.44178 15.8335 4.10151 Vertex 16089 0.419309 15.9353 4.04044 Vertex 16090 0.865971 15.7855 3.91787 Vertex 16091 0.837543 15.8984 3.87047 Vertex 16092 1.3217 15.726 3.58195 Vertex 16093 1.30509 15.8398 3.55132 Vertex 16094 1.72418 15.7434 3.16245 Vertex 16095 1.67417 15.8491 3.17788 Vertex 16096 1.9632 16.0139 2.93337 Vertex 16097 2.03135 16.1771 2.92038 Vertex 16098 2.00128 16.6898 3.02315 Vertex 16099 1.9366 17.2089 3.23938 Vertex 16100 1.83399 17.2252 3.25938 Vertex 16101 1.64095 17.3062 3.35185 Vertex 16102 1.6294 17.2216 3.2849 Vertex 16103 1.3216 17.286 3.67424 Vertex 16104 1.30157 17.2019 3.61317 Vertex 16105 0.899533 17.1453 3.97413 Vertex 16106 0.516873 17.1653 4.2385 Vertex 16107 0.492819 17.0877 4.15598 Vertex 16108 0 17.0955 4.302 Vertex 16109 -3.72529e-009 17.017 4.22291 Vertex 16110 2.27473 17.4125 3.22121 Vertex 16111 2.21177 17.1148 3.12397 Vertex 16112 0 15.326 3.96428 Vertex 16113 0.382987 15.2344 3.90401 Vertex 16114 0.390824 15.3409 3.92421 Vertex 16115 0.767208 15.2356 3.79566 Vertex 16116 0.769195 15.3335 3.80783 Vertex 16117 0.749306 19.166 3.45183 Vertex 16118 0.637929 19.2229 3.42774 Vertex 16119 0.612626 19.2011 3.44305 Vertex 16120 0.726039 19.1073 3.45394 Vertex 16121 1.36165 18.9466 3.55467 Vertex 16122 1.90076 18.7581 3.54294 Vertex 16123 1.90359 18.8696 3.51474 Vertex 16124 3.00049 19.1315 0.102693 Vertex 16125 2.99303 18.5195 0.0602455 Vertex 16126 1.1728 22.6299 -2.32307 Vertex 16127 -7.45058e-009 22.8904 -2.37742 Vertex 16128 1.72959 22.3375 -2.23468 Vertex 16129 2.57383 21.5891 -1.8472 Vertex 16130 2.99763 21.1701 -1.16044 Vertex 16131 3.05801 21.1127 -0.911508 Vertex 16132 3.08621 21.0277 -0.405937 Vertex 16133 3.09099 20.9559 -0.213211 Vertex 16134 3.08661 20.6569 0.334449 Vertex 16135 2.96583 20.1355 0.85868 Vertex 16136 2.96304 19.8683 0.961287 Vertex 16137 3.01148 19.4606 0.907637 Vertex 16138 3.00342 18.8851 1.06169 Vertex 16139 2.92751 18.4568 1.26895 Vertex 16140 2.87677 18.2257 1.25253 Vertex 16141 2.90559 18.0362 1.0712 Vertex 16142 2.92448 17.9321 0.978103 Vertex 16143 2.97743 17.5788 0.650494 Vertex 16144 3.01929 17.3954 0.30506 Vertex 16145 2.9824 18.2756 0.0291322 Vertex 16146 3.07562 18.1449 -0.162313 Vertex 16147 2.65224 17.6875 -0.806108 Vertex 16148 2.76927 17.6024 -0.508029 Vertex 16149 3.15748 19.0721 -0.13516 Vertex 16150 2.9029 19.2998 -1.29794 Vertex 16151 3.03439 19.7262 -1.24376 Vertex 16152 3.11373 20.1802 -0.900279 Vertex 16153 2.70273 18.7385 -1.53978 Vertex 16154 2.59637 18.3137 -1.34904 Vertex 16155 2.77103 18.4678 -1.03913 Vertex 16156 2.77182 18.1738 -0.832003 Vertex 16157 3.09282 20.2178 -0.106983 Vertex 16158 3.29494 20.0532 -0.230667 Vertex 16159 3.05537 19.9663 0.0154847 Vertex 16160 3.02173 19.5874 0.0777202 Vertex 16161 1.51976 19.76 3.37352 Vertex 16162 1.51711 19.7409 3.26993 Vertex 16163 1.82508 19.6481 3.0742 Vertex 16164 1.83597 19.6664 3.17214 Vertex 16165 1.20735 19.673 3.46332 Vertex 16166 1.21124 19.6575 3.35608 Vertex 16167 0.955229 19.502 3.47097 Vertex 16168 0.964663 19.4904 3.36433 Vertex 16169 0.759576 19.3184 3.46294 Vertex 16170 0.773142 19.3156 3.35693 Vertex 16171 0.814011 19.2228 3.47555 Vertex 16172 0.826021 19.2328 3.37151 Vertex 16173 1.27523 19.1236 3.50161 Vertex 16174 1.26935 19.144 3.39035 Vertex 16175 1.77221 19.1291 3.37896 Vertex 16176 1.75136 19.1511 3.26466 Vertex 16177 2.04073 19.2243 3.14888 Vertex 16178 2.01043 19.2398 3.04364 Vertex 16179 2.18449 19.3232 2.91403 Vertex 16180 2.16001 19.3293 2.831 Vertex 16181 2.17259 19.4116 2.90055 Vertex 16182 2.15172 19.4083 2.82247 Vertex 16183 2.08163 19.4977 2.97603 Vertex 16184 2.0679 19.483 2.88617 Vertex 16185 -1.83597 19.6664 3.17214 Vertex 16186 -1.82508 19.6481 3.0742 Vertex 16187 -1.51711 19.7409 3.26993 Vertex 16188 -1.51976 19.76 3.37352 Vertex 16189 -2.08163 19.4977 2.97603 Vertex 16190 -2.0679 19.483 2.88617 Vertex 16191 -2.17259 19.4116 2.90055 Vertex 16192 -2.15172 19.4083 2.82247 Vertex 16193 -2.18449 19.3232 2.91403 Vertex 16194 -2.16001 19.3293 2.831 Vertex 16195 -2.04073 19.2243 3.14888 Vertex 16196 -2.01044 19.2398 3.04364 Vertex 16197 -1.77221 19.1291 3.37896 Vertex 16198 -1.75136 19.1511 3.26466 Vertex 16199 -1.27523 19.1236 3.50161 Vertex 16200 -1.26935 19.144 3.39035 Vertex 16201 -0.814011 19.2228 3.47555 Vertex 16202 -0.826021 19.2328 3.37151 Vertex 16203 -0.759576 19.3184 3.46294 Vertex 16204 -0.773142 19.3156 3.35693 Vertex 16205 -0.955229 19.502 3.47098 Vertex 16206 -0.964663 19.4905 3.36433 Vertex 16207 -1.20735 19.673 3.46332 Vertex 16208 -1.21124 19.6575 3.35608 Vertex 16209 -1.51642 15.0979 -2.5427 Vertex 16210 -2.16965 14.62 -1.86863 Vertex 16211 -2.39176 14.0761 -0.9688 Vertex 16212 -2.22301 13.8229 -0.468745 Vertex 16213 -2.08651 13.7291 -0.150294 Vertex 16214 -1.84426 13.6037 0.218738 Vertex 16215 -1.4326 13.4712 0.603015 Vertex 16216 -0.588454 13.3557 0.841872 Vertex 16217 0.00477325 13.3123 0.889374 Vertex 16218 0.600439 13.3557 0.841872 Vertex 16219 1.43803 13.4712 0.603015 Vertex 16220 1.81754 13.6037 0.218739 Vertex 16221 2.04719 13.7291 -0.150294 Vertex 16222 2.19363 13.8229 -0.468745 Vertex 16223 2.40621 14.0761 -0.9688 Vertex 16224 2.30149 14.62 -1.86863 Vertex 16225 1.68475 15.0979 -2.5427 Vertex 16226 0.73402 15.5663 -2.97491 Vertex 16227 0.0278267 15.8153 -3.06409 Vertex 16228 -0.639615 15.5663 -2.97491 Vertex 16229 -1.65468 14.2143 -2.83927 Vertex 16230 -2.27983 13.7364 -2.1652 Vertex 16231 -2.43869 13.1926 -1.26536 Vertex 16232 -2.26268 12.9394 -0.765306 Vertex 16233 -2.13952 12.8456 -0.446856 Vertex 16234 -1.91617 12.7202 -0.0778227 Vertex 16235 -1.51724 12.5877 0.306454 Vertex 16236 -0.630919 12.4722 0.545311 Vertex 16237 0.0214152 12.4288 0.592813 Vertex 16238 0.681012 12.4722 0.545311 Vertex 16239 1.59748 12.5877 0.306454 Vertex 16240 1.99527 12.7202 -0.0778225 Vertex 16241 2.21089 12.8456 -0.446856 Vertex 16242 2.33019 12.9394 -0.765306 Vertex 16243 2.50769 13.1926 -1.26536 Vertex 16244 2.38471 13.7365 -2.1652 Vertex 16245 1.77665 14.2143 -2.83927 Vertex 16246 0.793496 14.6828 -3.27147 Vertex 16247 0.042524 14.9318 -3.36065 Vertex 16248 -0.698898 14.6828 -3.27147 Vertex 16249 -1.82055 13.5012 -3.10528 Vertex 16250 -2.43885 13.0233 -2.43121 Vertex 16251 -2.57552 12.4795 -1.53137 Vertex 16252 -2.40716 12.2263 -1.03132 Vertex 16253 -2.29607 12.1326 -0.71287 Vertex 16254 -2.08419 12.0071 -0.343837 Vertex 16255 -1.67791 11.8747 0.0404405 Vertex 16256 -0.713161 11.7591 0.279297 Vertex 16257 0.0191605 11.7157 0.326798 Vertex 16258 0.759512 11.7591 0.279297 Vertex 16259 1.75843 11.8747 0.0404405 Vertex 16260 2.16997 12.0071 -0.343837 Vertex 16261 2.38126 12.1326 -0.71287 Vertex 16262 2.49191 12.2262 -1.03132 Vertex 16263 2.65946 12.4795 -1.53137 Vertex 16264 2.52342 13.0234 -2.43121 Vertex 16265 1.90712 13.5012 -3.10528 Vertex 16266 0.874659 13.9697 -3.53748 Vertex 16267 0.0428387 14.2187 -3.62667 Vertex 16268 -0.788398 13.9697 -3.53748 Vertex 16269 -1.33098 13.6293 -3.40548 Vertex 16270 -0.359819 14.0283 -3.66041 Vertex 16271 0.444732 14.0283 -3.66041 Vertex 16272 1.41694 13.6293 -3.40547 Vertex 16273 2.29991 13.1536 -2.84953 Vertex 16274 2.66781 12.6215 -2.01505 Vertex 16275 2.60596 12.2029 -1.28225 Vertex 16276 2.4577 12.058 -0.913966 Vertex 16277 2.31437 11.9584 -0.582425 Vertex 16278 2.04855 11.8245 -0.190024 Vertex 16279 1.29913 11.6956 0.137272 Vertex 16280 0.364457 11.6111 0.273629 Vertex 16281 -0.326679 11.6111 0.273629 Vertex 16282 -1.23665 11.6956 0.137272 Vertex 16283 -1.96344 11.8245 -0.190025 Vertex 16284 -2.22974 11.9584 -0.582424 Vertex 16285 -2.37352 12.058 -0.913966 Vertex 16286 -2.5224 12.2029 -1.28225 Vertex 16287 -2.58462 12.6215 -2.01505 Vertex 16288 -2.21523 13.1536 -2.84953 Vertex 16289 -1.25354 14.0517 -3.24276 Vertex 16290 -0.33195 14.4507 -3.49769 Vertex 16291 0.419926 14.4507 -3.49769 Vertex 16292 1.34747 14.0517 -3.24276 Vertex 16293 2.21253 13.576 -2.68682 Vertex 16294 2.58103 13.0439 -1.85234 Vertex 16295 2.51607 12.6253 -1.11954 Vertex 16296 2.36454 12.4804 -0.751256 Vertex 16297 2.21623 12.3807 -0.419714 Vertex 16298 1.94814 12.2469 -0.0273138 Vertex 16299 1.22534 12.118 0.299983 Vertex 16300 0.344901 12.0334 0.436339 Vertex 16301 -0.300979 12.0335 0.436339 Vertex 16302 -1.15799 12.1179 0.299983 Vertex 16303 -1.85942 12.2469 -0.0273137 Vertex 16304 -2.12828 12.3807 -0.419714 Vertex 16305 -2.27785 12.4804 -0.751256 Vertex 16306 -2.4312 12.6253 -1.11954 Vertex 16307 -2.49543 13.0439 -1.85234 Vertex 16308 -2.11628 13.576 -2.68682 Vertex 16309 -1.11307 14.8735 -2.94597 Vertex 16310 -0.29593 15.2725 -3.2009 Vertex 16311 0.373706 15.2726 -3.2009 Vertex 16312 1.2402 14.8735 -2.94597 Vertex 16313 2.08702 14.3978 -2.39002 Vertex 16314 2.45138 13.8657 -1.55554 Vertex 16315 2.34955 13.4472 -0.822741 Vertex 16316 2.17935 13.3022 -0.454462 Vertex 16317 2.01947 13.2025 -0.122919 Vertex 16318 1.75398 13.0687 0.26948 Vertex 16319 1.08784 12.9398 0.596777 Vertex 16320 0.299486 12.8553 0.733133 Vertex 16321 -0.268686 12.8553 0.733133 Vertex 16322 -1.03927 12.9398 0.596777 Vertex 16323 -1.70403 13.0687 0.26948 Vertex 16324 -1.99079 13.2025 -0.12292 Vertex 16325 -2.1585 13.3022 -0.454462 Vertex 16326 -2.32407 13.4472 -0.822741 Vertex 16327 -2.37622 13.8657 -1.55554 Vertex 16328 -1.94363 14.3978 -2.39002 Vertex 16329 -1.05224 15.9064 -2.63914 Vertex 16330 -0.299666 16.3055 -2.89407 Vertex 16331 0.34441 16.3055 -2.89407 Vertex 16332 1.18861 15.9065 -2.63914 Vertex 16333 2.03057 15.4307 -2.08319 Vertex 16334 2.40871 14.8986 -1.24872 Vertex 16335 2.2927 14.4801 -0.515917 Vertex 16336 2.09768 14.3351 -0.147636 Vertex 16337 1.91088 14.2355 0.183906 Vertex 16338 1.6295 14.1016 0.576306 Vertex 16339 0.999114 13.9727 0.903602 Vertex 16340 0.261607 13.8882 1.03996 Vertex 16341 -0.278308 13.8882 1.03996 Vertex 16342 -1.03724 13.9727 0.903602 Vertex 16343 -1.70737 14.1016 0.576306 Vertex 16344 -2.00644 14.2355 0.183906 Vertex 16345 -2.1813 14.3351 -0.147636 Vertex 16346 -2.33889 14.4801 -0.515916 Vertex 16347 -2.33034 14.8986 -1.24872 Vertex 16348 -1.84483 15.4307 -2.08319 Vertex 16349 -1.3595 19.7214 3.42276 Vertex 16350 -1.07967 19.5837 3.46284 Vertex 16351 -0.84892 19.3982 3.45665 Vertex 16352 -0.750656 19.2675 3.45723 Vertex 16353 -1.01471 19.1799 3.48722 Vertex 16354 -1.52912 19.1306 3.442 Vertex 16355 -1.90815 19.1883 3.25732 Vertex 16356 -2.10731 19.2836 3.01483 Vertex 16357 -2.17467 19.3706 2.89976 Vertex 16358 -2.12764 19.4412 2.93496 Vertex 16359 -1.96555 19.5655 3.0633 Vertex 16360 -1.67711 19.7172 3.27513 Vertex 16361 1.96555 19.5655 3.0633 Vertex 16362 2.12764 19.4412 2.93496 Vertex 16363 2.17467 19.3706 2.89976 Vertex 16364 2.10731 19.2836 3.01483 Vertex 16365 1.90815 19.1883 3.25732 Vertex 16366 1.52912 19.1306 3.442 Vertex 16367 1.01471 19.1799 3.48722 Vertex 16368 0.750655 19.2675 3.45723 Vertex 16369 0.84892 19.3982 3.45665 Vertex 16370 1.07967 19.5837 3.46284 Vertex 16371 1.3595 19.7214 3.42275 Vertex 16372 1.67711 19.7172 3.27513 Vertex 16373 2.33011 18.7163 3.28582 Vertex 16374 3.08033 19.4272 0.0652415 Vertex 16375 3.1232 19.8063 0.001333 Vertex 16376 3.20587 20.197 -0.293253 Vertex 16377 3.1902 20.2064 -0.721863 Vertex 16378 2.78641 17.7549 -0.61216 Vertex 16379 2.69986 17.9571 -0.8201 Vertex 16380 2.65751 18.2368 -1.05503 Vertex 16381 2.68864 18.5791 -1.28923 Vertex 16382 3.0957 20.0056 -1.10423 Vertex 16383 2.8049 19.0628 -1.40637 Vertex 16384 3.05423 19.0831 0.0252312 Vertex 16385 2.65936 17.4019 -0.718962 Vertex 16386 3.02355 18.3557 -0.0816015 Vertex 16387 3.03662 18.6548 -0.0865643 Vertex 16388 3.1094 18.9069 -0.164374 Vertex 16389 3.02391 17.5489 0.419858 Vertex 16390 2.97925 17.8473 0.792099 Vertex 16391 2.92665 18.2034 1.1061 Vertex 16392 2.96922 18.6208 1.13595 Vertex 16393 3.05866 18.9604 0.927281 Vertex 16394 3.0625 19.2716 0.835461 Vertex 16395 3.00714 19.7397 0.875279 Vertex 16396 3.05703 20.3348 0.594604 Vertex 16397 3.11619 20.784 -0.0210338 Vertex 16398 3.08442 20.9681 -0.687572 Vertex 16399 2.84792 21.2572 -1.51012 Vertex 16400 2.09659 21.9221 -2.19965 Vertex 16401 1.40549 22.4353 -2.45242 Vertex 16402 0.622943 22.709 -2.54526 Vertex 16403 3.03188 17.4834 0.215558 Vertex 16404 2.89762 18.3405 1.24462 Vertex 16405 2.96951 19.9974 0.907199 Vertex 16406 1.68032 18.8634 3.5533 Vertex 16407 1.01652 19.0421 3.50107 Vertex 16408 1.00364 19.0223 3.49804 Vertex 16409 1.67155 18.8409 3.55622 Vertex 16410 0.580797 15.2945 3.85641 Vertex 16411 0.191408 15.2755 3.92086 Vertex 16412 2.29917 16.9114 3.03785 Vertex 16413 2.35032 17.2572 3.12266 Vertex 16414 2.44459 17.5968 3.17157 Vertex 16415 0.265543 17.072 4.26558 Vertex 16416 1.13148 17.2066 3.85318 Vertex 16417 1.49925 17.2556 3.46183 Vertex 16418 2.02487 16.4134 2.97821 Vertex 16419 1.83372 15.9254 3.04549 Vertex 16420 1.53657 15.7738 3.37998 Vertex 16421 1.09861 15.8256 3.77073 Vertex 16422 0.645522 15.8776 4.01936 Vertex 16423 0.218666 15.9032 4.15175 Vertex 16424 0.730559 17.1512 4.14701 Vertex 16425 1.78397 17.2136 3.24395 Vertex 16426 2.02615 16.9207 3.10568 Vertex 16427 0.926516 18.0404 3.77857 Vertex 16428 0.690286 18.2802 3.85596 Vertex 16429 1.72328 17.3718 3.36337 Vertex 16430 1.28422 17.7775 3.6348 Vertex 16431 0.803555 17.7922 4.02952 Vertex 16432 0.849647 17.8796 3.95449 Vertex 16433 0.808623 18.0635 3.89551 Vertex 16434 0.664274 18.3085 3.89966 Vertex 16435 0.744637 17.8126 4.11713 Vertex 16436 0.714441 17.8899 4.24582 Vertex 16437 0.555657 17.955 4.39886 Vertex 16438 0.372471 17.9695 4.58576 Vertex 16439 0.25326 17.867 4.60043 Vertex 16440 0.209436 17.7202 4.40587 Vertex 16441 1.11681 17.3595 3.89021 Vertex 16442 1.01556 17.6787 3.89055 Vertex 16443 0.894641 17.8738 3.90671 Vertex 16444 0.855215 17.9594 4.02565 Vertex 16445 0.80787 18.0986 4.1625 Vertex 16446 0.649773 18.1942 4.31124 Vertex 16447 0.523758 18.2351 4.44524 Vertex 16448 0.417732 18.277 4.67475 Vertex 16449 0.166755 18.3244 4.86954 Vertex 16450 0.500638 18.4695 4.20431 Vertex 16451 0.364604 18.5946 4.50914 Vertex 16452 0.146747 18.6681 4.67252 Vertex 16453 0.797792 18.0909 3.8502 Vertex 16454 0.345897 17.9537 4.41523 Vertex 16455 0.658465 17.8761 4.21881 Vertex 16456 0.503407 17.937 4.32778 Vertex 16457 2.24748 19.524 2.72581 Vertex 16458 2.25365 19.5432 2.71311 Vertex 16459 2.01116 19.7465 2.98927 Vertex 16460 2.01513 19.7695 2.98163 Vertex 16461 1.67672 19.898 3.24833 Vertex 16462 1.67876 19.9217 3.24448 Vertex 16463 1.32281 19.8668 3.42722 Vertex 16464 1.32008 19.8849 3.42772 Vertex 16465 1.03136 19.6893 3.47311 Vertex 16466 1.02515 19.6993 3.47519 Vertex 16467 0.769848 19.4579 3.45653 Vertex 16468 0.761309 19.4644 3.45639 Vertex 16469 1.68385 19.8481 3.27082 Vertex 16470 1.99062 19.6131 3.05849 Vertex 16471 2.17331 19.4632 2.89362 Vertex 16472 2.23494 19.3672 2.84154 Vertex 16473 2.17949 19.2537 3.00919 Vertex 16474 1.98016 19.1249 3.30406 Vertex 16475 1.57108 19.0655 3.48954 Vertex 16476 1.01136 19.1435 3.51006 Vertex 16477 0.719284 19.2633 3.47085 Vertex 16478 0.825215 19.4142 3.47673 Vertex 16479 1.06779 19.613 3.48553 Vertex 16480 1.35495 19.7612 3.44357 Vertex 16481 1.52762 19.1357 3.07209 Vertex 16482 1.90394 19.1923 2.88813 Vertex 16483 2.1009 19.2872 2.64965 Vertex 16484 2.16918 19.3703 2.53762 Vertex 16485 2.1246 19.4364 2.57156 Vertex 16486 1.96298 19.5598 2.6979 Vertex 16487 1.67564 19.7108 2.90791 Vertex 16488 1.36042 19.7153 3.05406 Vertex 16489 1.08271 19.5786 3.09354 Vertex 16490 0.85362 19.3952 3.08738 Vertex 16491 0.755913 19.2694 3.08834 Vertex 16492 1.01725 19.1854 3.118 Vertex 16493 2.23064 19.4985 2.79177 Vertex 16494 1.01672 19.0817 3.5151 Vertex 16495 1.59978 19.5181 2.51616 Vertex 16496 2.11687 16.0346 2.84017 Vertex 16497 1.9223 15.7692 2.95053 Vertex 16498 3.01481 19.1573 0.982133 Vertex 16499 2.96223 19.5472 1.06922 Vertex 16500 2.91576 19.8574 1.1491 Vertex 16501 2.89655 20.0728 1.08416 Vertex 16502 2.9838 20.495 0.713291 Vertex 16503 3.08425 20.9893 0.140152 Vertex 16504 3.09812 21.2285 -0.219079 Vertex 16505 3.07379 21.3378 -0.578473 Vertex 16506 3.01575 21.4018 -1.03328 Vertex 16507 2.3455 17.1027 -1.43144 Vertex 16508 2.54505 16.8374 -0.847203 Vertex 16509 2.69009 16.8009 -0.356431 Vertex 16510 2.85958 16.9366 -0.0680255 Vertex 16511 2.98173 17.2429 0.567305 Vertex 16512 2.90245 17.5632 0.939213 Vertex 16513 2.85111 17.8129 1.16135 Vertex 16514 2.82978 17.951 1.29245 Vertex 16515 2.83335 18.0998 1.41967 Vertex 16516 2.51159 17.5866 -1.12872 Vertex 16517 2.98176 17.5998 0.120135 Vertex 16518 2.98038 18.7813 1.24565 Vertex 16519 2.95148 19.2561 1.45758 Vertex 16520 2.8743 19.5751 1.56679 Vertex 16521 2.79175 19.8547 1.78739 Vertex 16522 2.6159 20.2237 2.26963 Vertex 16523 3.02615 18.5966 1.75024 Vertex 16524 2.97497 18.8213 1.92062 Vertex 16525 2.9441 18.3863 2.23541 Vertex 16526 2.82284 18.6601 2.51139 Vertex 16527 2.79253 18.2102 2.76016 Vertex 16528 2.61601 18.4142 3.04614 Vertex 16529 2.60516 17.9526 3.08709 Vertex 16530 2.39331 18.0611 3.36478 Vertex 16531 2.52746 18.9755 2.80701 Vertex 16532 2.83201 19.1491 2.00599 Vertex 16533 2.48533 19.434 2.48213 Vertex 16534 2.69353 19.5569 2.15955 Vertex 16535 2.36083 19.6423 2.68208 Vertex 16536 2.53632 19.8867 2.48426 Vertex 16537 2.11836 19.8825 3.01548 Vertex 16538 2.26714 20.1549 2.98514 Vertex 16539 1.74433 19.9952 3.31374 Vertex 16540 1.8517 20.1595 3.4104 Vertex 16541 1.33403 19.9146 3.5064 Vertex 16542 1.38241 19.9906 3.6457 Vertex 16543 1.02102 19.7163 3.56737 Vertex 16544 1.03097 19.7937 3.7355 Vertex 16545 0.733121 19.5208 3.52807 Vertex 16546 0.713704 19.6675 3.72136 Vertex 16547 0.790252 19.441 3.47389 Vertex 16548 1.04695 19.6609 3.48744 Vertex 16549 1.33793 19.8271 3.44283 Vertex 16550 1.6863 19.7655 3.28571 Vertex 16551 2.01045 19.6961 3.02165 Vertex 16552 2.29409 19.178 2.97136 Vertex 16553 1.64433 18.9408 3.5397 Vertex 16554 0.124922 13.943 3.3665 Vertex 16555 0.175665 13.9034 2.98877 Vertex 16556 0.226768 13.9883 2.55576 Vertex 16557 0.332093 14.0146 3.4181 Vertex 16558 0.499777 13.9931 3.03438 Vertex 16559 0.693316 14.0752 2.59511 Vertex 16560 0.746471 14.1265 3.14062 Vertex 16561 1.0839 14.2438 2.72044 Vertex 16562 0.883823 14.2801 3.30529 Vertex 16563 1.27808 14.5338 2.94629 Vertex 16564 0.524955 14.1997 3.67881 Vertex 16565 0.898989 14.482 3.55597 Vertex 16566 1.20694 14.9049 3.33377 Vertex 16567 0.501637 14.3215 3.82259 Vertex 16568 0.763407 14.6664 3.80335 Vertex 16569 0.93135 15.0912 3.71244 Vertex 16570 0.368398 14.4274 3.94127 Vertex 16571 0.488115 14.7775 3.95899 Vertex 16572 0.556699 15.1156 3.88924 Vertex 16573 0.143395 14.498 3.99609 Vertex 16574 0.168665 14.8382 4.04232 Vertex 16575 0.18305 15.124 3.96918 Vertex 16576 0.619587 15.4114 3.92578 Vertex 16577 0.212484 15.4453 4.04311 Vertex 16578 2.11933 17.2574 3.21925 Vertex 16579 2.2128 16.4068 2.91472 Vertex 16580 1.73049 16.0229 3.03243 Vertex 16581 1.87123 16.4239 2.95458 Vertex 16582 1.82772 16.9167 3.06372 Vertex 16583 1.67326 17.1601 3.17002 Vertex 16584 2.22131 17.622 3.36495 Vertex 16585 1.86819 17.7223 3.50761 Vertex 16586 1.38217 17.9636 3.65709 Vertex 16587 0.979722 18.1921 3.75489 Vertex 16588 2.0459 18.1624 3.54247 Vertex 16589 2.06462 18.5932 3.51364 Vertex 16590 1.54174 18.3011 3.63569 Vertex 16591 1.63876 18.6518 3.57402 Vertex 16592 1.05014 18.4631 3.67799 Vertex 16593 1.07311 18.744 3.58185 Vertex 16594 1.51794 15.5692 3.31465 Vertex 16595 1.44274 15.9041 3.29579 Vertex 16596 1.43879 17.1792 3.3615 Vertex 16597 1.44665 17.4128 3.55517 Vertex 16598 1.06693 15.5952 3.73941 Vertex 16599 1.00795 15.9419 3.61611 Vertex 16600 1.0419 17.1298 3.69521 Vertex 16601 0.861963 17.6129 4.05124 Vertex 16602 0.658617 15.6741 4.01151 Vertex 16603 0.5737 15.9928 3.84832 Vertex 16604 0.627858 17.0711 3.93653 Vertex 16605 0.71702 17.2924 4.18169 Vertex 16606 0.22925 15.7305 4.16453 Vertex 16607 0.19315 16.0079 3.97362 Vertex 16608 0.22313 17.004 4.06237 Vertex 16609 0.308075 17.2183 4.30272 Vertex 16610 0.331531 17.4867 4.30086 Vertex 16611 0.0945435 17.4182 4.36378 Vertex 16612 0.582535 17.7682 4.11885 Vertex 16613 0.32533 17.7133 4.2399 Vertex 16614 0.0884078 17.638 4.47841 Vertex 16615 0.262872 17.8822 4.42585 Vertex 16616 0.118065 17.8633 4.7132 Vertex 16617 0.1576 18.1003 4.86612 Vertex 16618 0.397093 18.0861 4.67476 Vertex 16619 0.608157 18.0511 4.39368 Vertex 16620 0.768787 17.9731 4.22467 Vertex 16621 0.806018 17.8574 4.0879 Vertex 16622 0.811409 18.1286 3.96273 Vertex 16623 0.767927 18.2443 4.07384 Vertex 16624 0.646664 18.3209 4.1818 Vertex 16625 0.526257 18.3701 4.34547 Vertex 16626 0.402971 18.4471 4.61643 Vertex 16627 0.161567 18.5131 4.79833 Vertex 16628 0.667805 19.2451 3.44971 Vertex 16629 0.595642 19.2848 3.46194 Vertex 16630 0.473911 19.5199 3.69349 Vertex 16631 0.396127 19.6864 3.88515 Vertex 16632 0.197062 19.8546 3.96547 Vertex 16633 0.698655 18.5614 3.79036 Vertex 16634 0.673363 18.8337 3.69496 Vertex 16635 0.47854 18.6655 4.08828 Vertex 16636 0.458361 18.9659 3.97185 Vertex 16637 0.420046 19.2625 3.79508 Vertex 16638 0.3337 18.8013 4.38522 Vertex 16639 0.302053 19.0748 4.22185 Vertex 16640 0.275672 19.3806 3.99038 Vertex 16641 0.128283 18.8663 4.52421 Vertex 16642 0.110646 19.1256 4.33469 Vertex 16643 0.106704 19.4412 4.06612 Vertex 16644 2.52381 17.3875 2.46532 Vertex 16645 2.50016 17.1786 2.50496 Vertex 16646 2.4473 17.0472 2.17611 Vertex 16647 2.48378 16.8545 1.88066 Vertex 16648 2.58542 16.5597 1.57375 Vertex 16649 2.64279 16.2935 1.26259 Vertex 16650 2.59507 16.0147 0.938424 Vertex 16651 2.41105 15.6566 0.612823 Vertex 16652 2.19737 15.427 0.400347 Vertex 16653 2.09202 15.1637 0.173804 Vertex 16654 2.25155 15.3729 -0.158779 Vertex 16655 2.34576 15.6854 0.120023 Vertex 16656 2.56108 15.8813 0.376554 Vertex 16657 2.71582 16.214 0.731207 Vertex 16658 2.72887 16.4753 1.09223 Vertex 16659 2.63583 16.7222 1.44817 Vertex 16660 2.52509 17.032 1.77862 Vertex 16661 2.49347 17.2833 2.04334 Vertex 16662 2.56817 17.5501 2.35034 Vertex 16663 2.69017 16.9025 1.32924 Vertex 16664 2.57668 17.1998 1.65532 Vertex 16665 2.54543 17.429 1.88771 Vertex 16666 2.63226 17.681 2.13139 Vertex 16667 2.77458 17.9842 2.45574 Vertex 16668 2.4824 16.1169 1.91102 Vertex 16669 2.42736 16.7998 2.29299 Vertex 16670 2.44657 16.639 1.98829 Vertex 16671 2.54339 16.3787 1.71295 Vertex 16672 2.57825 16.1083 1.43024 Vertex 16673 2.49588 15.8331 1.14399 Vertex 16674 2.28691 15.5022 0.867415 Vertex 16675 2.0661 15.2486 0.678687 Vertex 16676 1.93371 15.0062 0.477058 Vertex 16677 1.70029 14.8388 0.842357 Vertex 16678 1.90938 15.0487 1.04133 Vertex 16679 2.17233 15.2993 1.2493 Vertex 16680 2.40243 15.5733 1.47582 Vertex 16681 2.50056 15.8366 1.68652 Vertex 16682 2.41554 16.3858 2.31913 Vertex 16683 2.39661 16.4192 2.66858 Vertex 16684 2.46274 16.9073 2.81276 Vertex 16685 2.50504 17.2526 2.87662 Vertex 16686 2.56173 17.5452 2.85975 Vertex 16687 2.66173 17.8095 2.73242 Vertex 16688 0.240362 14.4211 1.37473 Vertex 16689 0.917723 14.4967 1.25168 Vertex 16690 1.47541 14.6311 1.21098 Vertex 16691 1.77591 14.8105 1.40151 Vertex 16692 2.11195 15.0565 1.66783 Vertex 16693 2.34544 15.465 2.02377 Vertex 16694 2.28316 15.8848 2.5702 Vertex 16695 0.264502 14.1131 2.14944 Vertex 16696 0.255198 14.2598 1.75569 Vertex 16697 0.828928 14.2067 2.13222 Vertex 16698 0.861891 14.3353 1.67472 Vertex 16699 1.31366 14.4187 1.65458 Vertex 16700 1.38966 14.3725 2.29502 Vertex 16701 1.61883 14.5492 1.82627 Vertex 16702 1.9234 14.7446 2.08329 Vertex 16703 1.61718 14.7803 2.63898 Vertex 16704 2.01518 15.0637 2.36886 Vertex 16705 1.54963 15.2075 3.01857 Vertex 16706 1.98828 15.4559 2.69925 Vertex 16707 0.852764 23.2377 1.51404 Vertex 16708 0.914219 22.6664 2.37442 Vertex 16709 0.257726 23.2498 1.70263 Vertex 16710 0.253547 22.6108 2.59712 Vertex 16711 0.119074 20.8595 3.75688 Vertex 16712 0.0888143 20.2714 4.01611 Vertex 16713 0.289851 20.2593 3.98905 Vertex 16714 0.305899 21.828 3.17195 Vertex 16715 0.457169 20.9411 3.70066 Vertex 16716 0.585942 20.3851 3.94687 Vertex 16717 0.782655 21.1678 3.51075 Vertex 16718 0.950864 20.6572 3.7852 Vertex 16719 0.998715 22.0669 2.86513 Vertex 16720 1.16933 21.4467 3.2324 Vertex 16721 1.31773 20.9225 3.47826 Vertex 16722 1.50647 21.6389 3.01849 Vertex 16723 1.67811 21.1204 3.2104 Vertex 16724 2.12022 21.2248 2.74768 Vertex 16725 2.55267 20.9498 1.99837 Vertex 16726 1.98587 21.7122 2.57064 Vertex 16727 2.56381 21.4541 1.78139 Vertex 16728 1.86105 22.2043 2.29586 Vertex 16729 2.56205 21.9503 1.46622 Vertex 16730 1.75156 22.6489 1.90901 Vertex 16731 2.52115 22.351 1.08605 Vertex 16732 1.6519 23.1297 1.09356 Vertex 16733 2.45458 22.7533 0.419882 Vertex 16734 1.19721 23.3852 -0.358064 Vertex 16735 2.157 23.0117 -0.719956 Vertex 16736 0.705646 23.0426 -1.86668 Vertex 16737 1.65264 22.7442 -1.90592 Vertex 16738 2.77678 20.3902 1.42798 Vertex 16739 2.86949 20.9175 1.0795 Vertex 16740 2.97184 21.4488 0.623108 Vertex 16741 2.98726 21.8135 0.230513 Vertex 16742 2.93702 22.0758 -0.221361 Vertex 16743 2.73161 22.2615 -0.954402 Vertex 16744 2.33415 22.1231 -1.77948 Vertex 16745 1.28836 16.7713 -2.39122 Vertex 16746 1.66596 17.1567 -2.11328 Vertex 16747 2.06158 16.2305 -1.82619 Vertex 16748 2.19687 16.6516 -1.6314 Vertex 16749 2.38192 15.7487 -0.948984 Vertex 16750 2.42677 16.261 -0.849185 Vertex 16751 2.53234 16.1417 -0.186653 Vertex 16752 2.74033 16.3081 0.11059 Vertex 16753 2.87498 16.5442 0.468142 Vertex 16754 2.88181 16.8138 0.812675 Vertex 16755 2.78322 17.1462 1.17038 Vertex 16756 2.69079 17.4276 1.45841 Vertex 16757 2.66604 17.6048 1.6326 Vertex 16758 2.72498 17.8092 1.79346 Vertex 16759 2.86271 18.1026 2.00082 Vertex 16760 2.99968 17.8913 -0.729867 Vertex 16761 2.9389 17.7697 -0.407115 Vertex 16762 3.05687 17.8544 -0.323711 Vertex 16763 3.17374 19.5499 -1.32311 Vertex 16764 3.14237 19.0324 -1.32416 Vertex 16765 2.93984 19.0668 -1.23443 Vertex 16766 2.88724 18.6658 -1.10108 Vertex 16767 3.0681 18.6164 -1.19748 Vertex 16768 3.01286 18.3008 -1.01109 Vertex 16769 2.855 18.3418 -0.908826 Vertex 16770 3.19251 18.0146 -0.831326 Vertex 16771 3.17889 18.2905 -1.02169 Vertex 16772 3.23762 18.596 -1.21039 Vertex 16773 3.32228 19.0375 -1.35066 Vertex 16774 3.37551 19.5428 -1.35024 Vertex 16775 3.40065 19.9084 -1.13163 Vertex 16776 3.43492 20.0881 -0.776126 Vertex 16777 3.44476 20.0481 -0.405576 Vertex 16778 3.11811 18.7982 -0.379816 Vertex 16779 3.10458 18.9364 -0.497438 Vertex 16780 3.14522 19.2039 -0.577936 Vertex 16781 3.22874 19.3553 -0.442729 Vertex 16782 3.30519 19.5456 -0.396949 Vertex 16783 3.37788 19.7433 -0.543228 Vertex 16784 3.16699 18.9268 -0.781684 Vertex 16785 3.1767 19.0711 -0.855488 Vertex 16786 3.38904 19.729 -0.730884 Vertex 16787 3.15706 17.9953 -0.291568 Vertex 16788 3.324 19.0928 -1.04032 Vertex 16789 3.35988 19.4256 -1.00882 Vertex 16790 3.37576 19.6367 -0.901743 Vertex 16791 3.33356 19.4854 -0.676641 Vertex 16792 3.23292 19.4276 -0.563517 Vertex 16793 3.29012 19.6321 -0.587337 Vertex 16794 3.31751 19.5606 -0.793124 Vertex 16795 3.33416 19.3848 -0.893151 Vertex 16796 3.3235 19.1032 -0.948897 Vertex 16797 3.27613 18.8166 -0.888874 Vertex 16798 3.241 18.6062 -0.746059 Vertex 16799 3.13943 18.7559 -0.61426 Vertex 16800 3.14207 18.619 -0.509158 Vertex 16801 3.23401 18.4306 -0.685297 Vertex 16802 3.29421 18.6816 -1.06253 Vertex 16803 3.37309 19.0652 -1.18584 Vertex 16804 3.44134 19.4761 -1.1791 Vertex 16805 3.49404 19.7607 -1.02005 Vertex 16806 3.51451 19.8964 -0.758446 Vertex 16807 3.5175 19.8942 -0.487364 Vertex 16808 3.48032 19.7539 -0.287621 Vertex 16809 3.401 19.5145 -0.215568 Vertex 16810 3.32019 19.2696 -0.274422 Vertex 16811 3.22783 19.0941 -0.382794 Vertex 16812 3.38321 19.8201 -0.1289 Vertex 16813 3.31183 19.5269 -0.041996 Vertex 16814 3.25266 19.2312 -0.119674 Vertex 16815 -2.33011 18.7163 3.28582 Vertex 16816 -3.08033 19.4272 0.0652415 Vertex 16817 -3.1232 19.8063 0.001333 Vertex 16818 -3.20587 20.197 -0.293253 Vertex 16819 -3.1902 20.2065 -0.721863 Vertex 16820 -2.75878 17.7549 -0.61216 Vertex 16821 -2.67926 17.9571 -0.8201 Vertex 16822 -2.65205 18.2368 -1.05503 Vertex 16823 -2.68861 18.5791 -1.28923 Vertex 16824 -3.0957 20.0056 -1.10423 Vertex 16825 -2.80491 19.0628 -1.40637 Vertex 16826 -3.05423 19.0831 0.0252312 Vertex 16827 -2.60062 17.4019 -0.718962 Vertex 16828 -3.02355 18.3557 -0.0816015 Vertex 16829 -3.03662 18.6548 -0.0865643 Vertex 16830 -3.1094 18.9069 -0.164374 Vertex 16831 -3.02543 17.5489 0.419858 Vertex 16832 -2.97925 17.8473 0.792099 Vertex 16833 -2.92665 18.2034 1.1061 Vertex 16834 -2.96922 18.6208 1.13595 Vertex 16835 -3.05866 18.9604 0.927281 Vertex 16836 -3.0625 19.2716 0.835461 Vertex 16837 -3.00714 19.7397 0.875279 Vertex 16838 -3.05703 20.3348 0.594604 Vertex 16839 -3.11619 20.784 -0.0210338 Vertex 16840 -3.08442 20.9681 -0.687572 Vertex 16841 -2.84792 21.2572 -1.51013 Vertex 16842 -2.09659 21.9221 -2.19965 Vertex 16843 -1.40549 22.4353 -2.45242 Vertex 16844 -0.622943 22.709 -2.54526 Vertex 16845 -3.03207 17.4834 0.215558 Vertex 16846 -2.89762 18.3405 1.24462 Vertex 16847 -2.96951 19.9974 0.907199 Vertex 16848 -3.07897 18.9151 0.112482 Vertex 16849 -3.08282 19.3264 0.091767 Vertex 16850 -1.68032 18.8634 3.5533 Vertex 16851 -1.01652 19.0421 3.50107 Vertex 16852 -1.00364 19.0223 3.49804 Vertex 16853 -1.67155 18.8409 3.55622 Vertex 16854 -0.580797 15.2945 3.85641 Vertex 16855 -0.191408 15.2755 3.92086 Vertex 16856 -2.29917 16.9114 3.03785 Vertex 16857 -2.35032 17.2572 3.12266 Vertex 16858 -2.44459 17.5968 3.17157 Vertex 16859 -0.265543 17.072 4.26558 Vertex 16860 -1.13148 17.2066 3.85318 Vertex 16861 -1.49925 17.2556 3.46183 Vertex 16862 -2.02487 16.4134 2.97821 Vertex 16863 -1.83372 15.9254 3.04549 Vertex 16864 -1.53657 15.7738 3.37998 Vertex 16865 -1.09861 15.8256 3.77073 Vertex 16866 -0.645522 15.8776 4.01936 Vertex 16867 -0.218666 15.9032 4.15175 Vertex 16868 -0.730559 17.1512 4.14701 Vertex 16869 -1.78397 17.2136 3.24395 Vertex 16870 -2.02615 16.9207 3.10568 Vertex 16871 -0.926516 18.0404 3.77857 Vertex 16872 -0.690286 18.2802 3.85596 Vertex 16873 -1.72328 17.3718 3.36337 Vertex 16874 -1.28422 17.7775 3.6348 Vertex 16875 -0.803555 17.7922 4.02952 Vertex 16876 -0.849647 17.8796 3.95449 Vertex 16877 -0.808623 18.0635 3.89551 Vertex 16878 -0.664274 18.3085 3.89966 Vertex 16879 -0.744637 17.8126 4.11713 Vertex 16880 -0.714441 17.8899 4.24582 Vertex 16881 -0.555657 17.955 4.39886 Vertex 16882 -0.372471 17.9695 4.58576 Vertex 16883 -0.25326 17.867 4.60043 Vertex 16884 -0.209436 17.7202 4.40587 Vertex 16885 -1.11681 17.3595 3.89021 Vertex 16886 -1.01556 17.6787 3.89055 Vertex 16887 -0.894641 17.8738 3.90671 Vertex 16888 -0.855215 17.9594 4.02565 Vertex 16889 -0.80787 18.0986 4.1625 Vertex 16890 -0.649773 18.1942 4.31124 Vertex 16891 -0.523758 18.2351 4.44524 Vertex 16892 -0.417732 18.277 4.67475 Vertex 16893 -0.166755 18.3244 4.86954 Vertex 16894 -0.500638 18.4696 4.20431 Vertex 16895 -0.364604 18.5946 4.50914 Vertex 16896 -0.146747 18.6681 4.67252 Vertex 16897 -0.797793 18.0909 3.8502 Vertex 16898 -0.345897 17.9537 4.41523 Vertex 16899 -0.658465 17.8761 4.21881 Vertex 16900 -0.503407 17.937 4.32778 Vertex 16901 -0.476765 19.9776 4.02831 Vertex 16902 -0.533571 19.8309 3.96394 Vertex 16903 -2.24748 19.524 2.72581 Vertex 16904 -2.25365 19.5432 2.71311 Vertex 16905 -2.01116 19.7466 2.98927 Vertex 16906 -2.01513 19.7695 2.98163 Vertex 16907 -1.67672 19.898 3.24833 Vertex 16908 -1.67876 19.9217 3.24448 Vertex 16909 -1.32281 19.8668 3.42722 Vertex 16910 -1.32008 19.8849 3.42772 Vertex 16911 -1.03136 19.6893 3.47311 Vertex 16912 -1.02515 19.6993 3.4752 Vertex 16913 -0.769848 19.4579 3.45653 Vertex 16914 -0.761309 19.4644 3.45639 Vertex 16915 -1.68385 19.8481 3.27082 Vertex 16916 -1.99062 19.6131 3.05849 Vertex 16917 -2.17331 19.4632 2.89362 Vertex 16918 -2.23494 19.3672 2.84154 Vertex 16919 -2.17949 19.2537 3.00919 Vertex 16920 -1.98016 19.1249 3.30406 Vertex 16921 -1.57108 19.0655 3.48954 Vertex 16922 -1.01136 19.1435 3.51006 Vertex 16923 -0.719285 19.2633 3.47085 Vertex 16924 -0.825215 19.4142 3.47674 Vertex 16925 -1.06779 19.613 3.48554 Vertex 16926 -1.35495 19.7612 3.44357 Vertex 16927 -1.52762 19.1357 3.07209 Vertex 16928 -1.90394 19.1923 2.88813 Vertex 16929 -2.1009 19.2872 2.64965 Vertex 16930 -2.16918 19.3703 2.53761 Vertex 16931 -2.1246 19.4364 2.57156 Vertex 16932 -1.96297 19.5598 2.6979 Vertex 16933 -1.67564 19.7108 2.90791 Vertex 16934 -1.36042 19.7153 3.05407 Vertex 16935 -1.08271 19.5786 3.09354 Vertex 16936 -0.85362 19.3952 3.08738 Vertex 16937 -0.755913 19.2694 3.08834 Vertex 16938 -1.01725 19.1854 3.118 Vertex 16939 -2.23064 19.4985 2.79177 Vertex 16940 -1.01672 19.0817 3.5151 Vertex 16941 -1.50084 19.2926 2.57824 Vertex 16942 -1.24419 12.3186 -1.25963 Vertex 16943 -2.11687 16.0346 2.84017 Vertex 16944 -1.92231 15.7692 2.95053 Vertex 16945 -3.01481 19.1573 0.982132 Vertex 16946 -2.96223 19.5472 1.06922 Vertex 16947 -2.91576 19.8574 1.1491 Vertex 16948 -2.89655 20.0728 1.08416 Vertex 16949 -2.9838 20.495 0.713291 Vertex 16950 -3.08425 20.9893 0.140152 Vertex 16951 -3.09812 21.2285 -0.219079 Vertex 16952 -3.07379 21.3378 -0.578473 Vertex 16953 -3.01575 21.4018 -1.03328 Vertex 16954 -2.0074 17.4478 -1.78054 Vertex 16955 -2.21616 17.1027 -1.43144 Vertex 16956 -2.45002 16.8374 -0.847203 Vertex 16957 -2.65338 16.8009 -0.356431 Vertex 16958 -2.85115 16.9366 -0.0680255 Vertex 16959 -2.99241 17.2429 0.567305 Vertex 16960 -2.9035 17.5632 0.939213 Vertex 16961 -2.85111 17.8129 1.16135 Vertex 16962 -2.82978 17.951 1.29245 Vertex 16963 -2.83335 18.0998 1.41967 Vertex 16964 -2.44225 17.5866 -1.12872 Vertex 16965 -2.97952 17.5998 0.120135 Vertex 16966 -2.98038 18.7813 1.24565 Vertex 16967 -2.95148 19.2561 1.45758 Vertex 16968 -2.8743 19.5751 1.56679 Vertex 16969 -2.79174 19.8547 1.78739 Vertex 16970 -2.6159 20.2237 2.26963 Vertex 16971 -3.02615 18.5966 1.75024 Vertex 16972 -2.97497 18.8213 1.92062 Vertex 16973 -2.9441 18.3863 2.23541 Vertex 16974 -2.82284 18.6601 2.51139 Vertex 16975 -2.79253 18.2102 2.76016 Vertex 16976 -2.61601 18.4142 3.04614 Vertex 16977 -2.60516 17.9526 3.08709 Vertex 16978 -2.39332 18.0611 3.36478 Vertex 16979 -2.52746 18.9755 2.80701 Vertex 16980 -2.83201 19.1491 2.00599 Vertex 16981 -2.48533 19.434 2.48213 Vertex 16982 -2.69353 19.5569 2.15955 Vertex 16983 -2.36083 19.6423 2.68208 Vertex 16984 -2.53632 19.8867 2.48426 Vertex 16985 -2.11836 19.8825 3.01548 Vertex 16986 -2.26714 20.1549 2.98514 Vertex 16987 -1.74433 19.9952 3.31374 Vertex 16988 -1.8517 20.1595 3.4104 Vertex 16989 -1.33403 19.9146 3.5064 Vertex 16990 -1.38241 19.9906 3.6457 Vertex 16991 -1.02102 19.7163 3.56737 Vertex 16992 -1.03097 19.7937 3.7355 Vertex 16993 -0.733121 19.5208 3.52807 Vertex 16994 -0.713704 19.6675 3.72136 Vertex 16995 -0.790252 19.441 3.47389 Vertex 16996 -1.04695 19.6609 3.48744 Vertex 16997 -1.33793 19.8271 3.44283 Vertex 16998 -1.6863 19.7655 3.28571 Vertex 16999 -2.01045 19.6961 3.02165 Vertex 17000 -2.29409 19.178 2.97136 Vertex 17001 -1.64432 18.9408 3.53971 Vertex 17002 -0.124922 13.943 3.3665 Vertex 17003 -0.188525 13.9034 2.98877 Vertex 17004 -0.258487 13.9883 2.55576 Vertex 17005 -0.332092 14.0146 3.4181 Vertex 17006 -0.499777 13.9931 3.03438 Vertex 17007 -0.702059 14.0752 2.59511 Vertex 17008 -0.746471 14.1265 3.14062 Vertex 17009 -1.0839 14.2438 2.72044 Vertex 17010 -0.883823 14.2802 3.30529 Vertex 17011 -1.27808 14.5338 2.94629 Vertex 17012 -0.524955 14.1997 3.67882 Vertex 17013 -0.898989 14.4819 3.55597 Vertex 17014 -1.20694 14.9049 3.33377 Vertex 17015 -0.501637 14.3215 3.82259 Vertex 17016 -0.763407 14.6664 3.80335 Vertex 17017 -0.93135 15.0912 3.71244 Vertex 17018 -0.368398 14.4274 3.94127 Vertex 17019 -0.488115 14.7775 3.95899 Vertex 17020 -0.556699 15.1156 3.88924 Vertex 17021 -0.143395 14.498 3.99609 Vertex 17022 -0.168665 14.8382 4.04232 Vertex 17023 -0.18305 15.124 3.96918 Vertex 17024 -0.619587 15.4114 3.92578 Vertex 17025 -0.212484 15.4453 4.04311 Vertex 17026 -2.11933 17.2574 3.21925 Vertex 17027 -2.2128 16.4068 2.91472 Vertex 17028 -1.73049 16.0229 3.03243 Vertex 17029 -1.87123 16.4238 2.95458 Vertex 17030 -1.82772 16.9167 3.06372 Vertex 17031 -1.67326 17.1601 3.17002 Vertex 17032 -2.22131 17.622 3.36495 Vertex 17033 -1.86819 17.7223 3.50762 Vertex 17034 -1.38217 17.9636 3.65709 Vertex 17035 -0.979722 18.1921 3.75488 Vertex 17036 -2.0459 18.1624 3.54247 Vertex 17037 -2.06462 18.5932 3.51364 Vertex 17038 -1.54174 18.3011 3.63569 Vertex 17039 -1.63876 18.6518 3.57402 Vertex 17040 -1.05014 18.463 3.67799 Vertex 17041 -1.07311 18.744 3.58185 Vertex 17042 -1.51794 15.5692 3.31465 Vertex 17043 -1.44274 15.9041 3.29579 Vertex 17044 -1.43878 17.1792 3.3615 Vertex 17045 -1.44665 17.4128 3.55517 Vertex 17046 -1.06693 15.5952 3.73941 Vertex 17047 -1.00795 15.9419 3.61611 Vertex 17048 -1.0419 17.1298 3.69521 Vertex 17049 -0.861963 17.6129 4.05124 Vertex 17050 -0.658617 15.6741 4.01151 Vertex 17051 -0.5737 15.9928 3.84832 Vertex 17052 -0.627859 17.0711 3.93653 Vertex 17053 -0.71702 17.2924 4.18169 Vertex 17054 -0.22925 15.7305 4.16453 Vertex 17055 -0.19315 16.0079 3.97362 Vertex 17056 -0.22313 17.004 4.06237 Vertex 17057 -0.308075 17.2183 4.30272 Vertex 17058 -0.331531 17.4867 4.30086 Vertex 17059 -0.0945435 17.4182 4.36378 Vertex 17060 -0.582535 17.7682 4.11885 Vertex 17061 -0.325329 17.7133 4.23989 Vertex 17062 -0.0884078 17.638 4.47841 Vertex 17063 -0.262872 17.8822 4.42585 Vertex 17064 -0.118065 17.8633 4.7132 Vertex 17065 -0.1576 18.1003 4.86612 Vertex 17066 -0.397093 18.0861 4.67476 Vertex 17067 -0.608157 18.0511 4.39368 Vertex 17068 -0.768787 17.9731 4.22467 Vertex 17069 -0.806018 17.8574 4.0879 Vertex 17070 -0.811409 18.1286 3.96273 Vertex 17071 -0.767927 18.2443 4.07384 Vertex 17072 -0.646663 18.3209 4.1818 Vertex 17073 -0.526257 18.3701 4.34547 Vertex 17074 -0.402971 18.4471 4.61643 Vertex 17075 -0.161567 18.5131 4.79833 Vertex 17076 -0.667805 19.2451 3.44971 Vertex 17077 -0.595642 19.2848 3.46194 Vertex 17078 -0.473911 19.5199 3.69349 Vertex 17079 -0.396127 19.6864 3.88515 Vertex 17080 -0.197062 19.8546 3.96547 Vertex 17081 -0.698655 18.5614 3.79036 Vertex 17082 -0.673363 18.8337 3.69496 Vertex 17083 -0.47854 18.6655 4.08828 Vertex 17084 -0.458361 18.9659 3.97184 Vertex 17085 -0.420046 19.2625 3.79508 Vertex 17086 -0.3337 18.8013 4.38523 Vertex 17087 -0.302053 19.0748 4.22185 Vertex 17088 -0.275672 19.3806 3.99038 Vertex 17089 -0.128283 18.8663 4.52421 Vertex 17090 -0.110646 19.1256 4.33469 Vertex 17091 -0.106704 19.4412 4.06612 Vertex 17092 -2.52381 17.3875 2.46531 Vertex 17093 -2.50016 17.1786 2.50496 Vertex 17094 -2.4473 17.0472 2.17611 Vertex 17095 -2.48412 16.8545 1.88066 Vertex 17096 -2.60029 16.5597 1.57375 Vertex 17097 -2.69166 16.2935 1.26259 Vertex 17098 -2.67818 16.0148 0.938424 Vertex 17099 -2.5197 15.6566 0.612823 Vertex 17100 -2.31469 15.427 0.400347 Vertex 17101 -2.2096 15.1637 0.173804 Vertex 17102 -2.3223 15.3729 -0.158779 Vertex 17103 -2.42445 15.6854 0.120022 Vertex 17104 -2.64358 15.8813 0.376554 Vertex 17105 -2.78579 16.214 0.731207 Vertex 17106 -2.77492 16.4753 1.09223 Vertex 17107 -2.65023 16.7222 1.44817 Vertex 17108 -2.52528 17.032 1.77862 Vertex 17109 -2.49347 17.2833 2.04334 Vertex 17110 -2.56817 17.5501 2.35034 Vertex 17111 -2.70183 16.9025 1.32924 Vertex 17112 -2.57671 17.1998 1.65531 Vertex 17113 -2.54543 17.429 1.88771 Vertex 17114 -2.63226 17.681 2.13139 Vertex 17115 -2.77458 17.9842 2.45574 Vertex 17116 -2.49185 16.1169 1.91102 Vertex 17117 -2.42736 16.7998 2.29299 Vertex 17118 -2.44703 16.639 1.98829 Vertex 17119 -2.5569 16.3787 1.71295 Vertex 17120 -2.6238 16.1083 1.43024 Vertex 17121 -2.58087 15.8331 1.14399 Vertex 17122 -2.40361 15.5022 0.867415 Vertex 17123 -2.19727 15.2486 0.678687 Vertex 17124 -2.06978 15.0061 0.477058 Vertex 17125 -1.82799 14.8388 0.842357 Vertex 17126 -2.02791 15.0487 1.04133 Vertex 17127 -2.26975 15.2993 1.2493 Vertex 17128 -2.46609 15.5733 1.47582 Vertex 17129 -2.53275 15.8366 1.68652 Vertex 17130 -2.41554 16.3858 2.31913 Vertex 17131 -2.39661 16.4192 2.66858 Vertex 17132 -2.46274 16.9073 2.81276 Vertex 17133 -2.50504 17.2526 2.87662 Vertex 17134 -2.56173 17.5452 2.85975 Vertex 17135 -2.66173 17.8095 2.73242 Vertex 17136 -0.282578 14.4211 1.37473 Vertex 17137 -0.980044 14.4967 1.25168 Vertex 17138 -1.55708 14.6311 1.21098 Vertex 17139 -1.84879 14.8105 1.40151 Vertex 17140 -2.15897 15.0565 1.66783 Vertex 17141 -2.35815 15.465 2.02377 Vertex 17142 -2.28316 15.8848 2.5702 Vertex 17143 -0.299785 14.1131 2.14944 Vertex 17144 -0.290676 14.2598 1.75569 Vertex 17145 -0.846412 14.2067 2.13222 Vertex 17146 -0.888222 14.3353 1.67472 Vertex 17147 -1.33664 14.4187 1.65458 Vertex 17148 -1.3897 14.3725 2.29502 Vertex 17149 -1.63848 14.5492 1.82627 Vertex 17150 -1.9319 14.7446 2.08329 Vertex 17151 -1.61718 14.7803 2.63898 Vertex 17152 -2.01612 15.0637 2.36886 Vertex 17153 -1.54963 15.2075 3.01857 Vertex 17154 -1.98828 15.4559 2.69925 Vertex 17155 -0.852764 23.2377 1.51404 Vertex 17156 -0.914219 22.6664 2.37442 Vertex 17157 -0.257726 23.2498 1.70263 Vertex 17158 -0.253547 22.6108 2.59712 Vertex 17159 -0.119074 20.8595 3.75688 Vertex 17160 -0.0888143 20.2714 4.01611 Vertex 17161 -0.289851 20.2593 3.98905 Vertex 17162 -0.305899 21.828 3.17195 Vertex 17163 -0.457169 20.9411 3.70066 Vertex 17164 -0.585942 20.3851 3.94687 Vertex 17165 -0.782655 21.1678 3.51075 Vertex 17166 -0.950864 20.6572 3.7852 Vertex 17167 -0.998715 22.0669 2.86513 Vertex 17168 -1.16933 21.4467 3.2324 Vertex 17169 -1.31773 20.9225 3.47826 Vertex 17170 -1.50647 21.6389 3.01849 Vertex 17171 -1.67811 21.1204 3.2104 Vertex 17172 -2.12022 21.2248 2.74768 Vertex 17173 -2.55267 20.9498 1.99837 Vertex 17174 -1.98587 21.7122 2.57064 Vertex 17175 -2.56381 21.4541 1.78139 Vertex 17176 -1.86105 22.2043 2.29586 Vertex 17177 -2.56205 21.9503 1.46622 Vertex 17178 -1.75155 22.6489 1.90901 Vertex 17179 -2.52115 22.351 1.08605 Vertex 17180 -1.6519 23.1297 1.09356 Vertex 17181 -2.45458 22.7533 0.419882 Vertex 17182 -1.19721 23.3852 -0.358064 Vertex 17183 -2.157 23.0117 -0.719956 Vertex 17184 -0.705646 23.0426 -1.86668 Vertex 17185 -1.65264 22.7442 -1.90592 Vertex 17186 -2.77678 20.3902 1.42798 Vertex 17187 -2.86949 20.9175 1.0795 Vertex 17188 -2.97184 21.4488 0.623107 Vertex 17189 -2.98726 21.8135 0.230513 Vertex 17190 -2.93702 22.0758 -0.221361 Vertex 17191 -2.73161 22.2615 -0.954402 Vertex 17192 -2.33415 22.1231 -1.77948 Vertex 17193 -1.55632 17.1567 -2.11328 Vertex 17194 -1.87447 16.2305 -1.82619 Vertex 17195 -2.0274 16.6516 -1.6314 Vertex 17196 -2.29722 15.7487 -0.948984 Vertex 17197 -2.3322 16.261 -0.849185 Vertex 17198 -2.54145 16.1417 -0.186653 Vertex 17199 -2.77275 16.3081 0.11059 Vertex 17200 -2.91601 16.5442 0.468142 Vertex 17201 -2.91256 16.8138 0.812675 Vertex 17202 -2.79004 17.1462 1.17038 Vertex 17203 -2.69079 17.4276 1.45841 Vertex 17204 -2.66604 17.6048 1.6326 Vertex 17205 -2.72498 17.8092 1.79346 Vertex 17206 -2.86271 18.1026 2.00082 Vertex 17207 -2.98568 17.8913 -0.729867 Vertex 17208 -2.92363 17.7697 -0.407115 Vertex 17209 -3.05073 17.8544 -0.323711 Vertex 17210 -3.17374 19.5499 -1.32311 Vertex 17211 -3.14237 19.0324 -1.32417 Vertex 17212 -2.93984 19.0668 -1.23443 Vertex 17213 -2.88724 18.6658 -1.10108 Vertex 17214 -3.0681 18.6164 -1.19748 Vertex 17215 -3.01248 18.3008 -1.01109 Vertex 17216 -2.85459 18.3418 -0.908826 Vertex 17217 -3.18856 18.0146 -0.831326 Vertex 17218 -3.1788 18.2905 -1.02168 Vertex 17219 -3.23762 18.596 -1.21039 Vertex 17220 -3.32228 19.0375 -1.35066 Vertex 17221 -3.37551 19.5428 -1.35024 Vertex 17222 -3.40064 19.9084 -1.13163 Vertex 17223 -3.43492 20.0881 -0.776126 Vertex 17224 -3.44476 20.0481 -0.405576 Vertex 17225 -3.11811 18.7982 -0.379816 Vertex 17226 -3.10458 18.9364 -0.497438 Vertex 17227 -3.14522 19.2039 -0.577936 Vertex 17228 -3.22874 19.3553 -0.442729 Vertex 17229 -3.30519 19.5456 -0.39695 Vertex 17230 -3.37788 19.7432 -0.543228 Vertex 17231 -3.16699 18.9268 -0.781684 Vertex 17232 -3.1767 19.0711 -0.855488 Vertex 17233 -3.38904 19.729 -0.730884 Vertex 17234 -3.15649 17.9952 -0.291568 Vertex 17235 -3.324 19.0928 -1.04032 Vertex 17236 -3.35988 19.4256 -1.00882 Vertex 17237 -3.37576 19.6367 -0.901743 Vertex 17238 -3.33356 19.4854 -0.676641 Vertex 17239 -3.23292 19.4276 -0.563517 Vertex 17240 -3.29012 19.6321 -0.587337 Vertex 17241 -3.31751 19.5606 -0.793124 Vertex 17242 -3.33415 19.3848 -0.89315 Vertex 17243 -3.3235 19.1032 -0.948897 Vertex 17244 -3.27613 18.8166 -0.888873 Vertex 17245 -3.241 18.6061 -0.746059 Vertex 17246 -3.13943 18.7559 -0.614259 Vertex 17247 -3.14207 18.619 -0.509158 Vertex 17248 -3.23401 18.4306 -0.685296 Vertex 17249 -3.29421 18.6816 -1.06253 Vertex 17250 -3.37309 19.0652 -1.18584 Vertex 17251 -3.44134 19.4761 -1.1791 Vertex 17252 -3.49404 19.7607 -1.02005 Vertex 17253 -3.51451 19.8964 -0.758446 Vertex 17254 -3.5175 19.8942 -0.487364 Vertex 17255 -3.48032 19.7539 -0.287621 Vertex 17256 -3.401 19.5145 -0.215568 Vertex 17257 -3.3202 19.2696 -0.274422 Vertex 17258 -3.22783 19.0941 -0.382794 Vertex 17259 -3.38321 19.8201 -0.1289 Vertex 17260 -3.31183 19.5269 -0.041996 Vertex 17261 -3.25266 19.2312 -0.119674 Vertex 17262 1.19839 20.6779 2.10524 Vertex 17263 1.40496 20.6442 2.05447 Vertex 17264 1.60387 20.5777 2.00557 Vertex 17265 1.79022 20.4799 1.95976 Vertex 17266 1.95942 20.3533 1.91816 Vertex 17267 2.10731 20.201 1.88181 Vertex 17268 2.23024 20.0268 1.8516 Vertex 17269 2.3252 19.8349 1.82826 Vertex 17270 2.38983 19.63 1.81237 Vertex 17271 2.42254 19.4173 1.80433 Vertex 17272 2.42254 19.2019 1.80434 Vertex 17273 2.38983 18.9892 1.81239 Vertex 17274 2.3252 18.7844 1.82828 Vertex 17275 2.23025 18.5925 1.85163 Vertex 17276 2.10732 18.4183 1.88186 Vertex 17277 1.95943 18.266 1.91822 Vertex 17278 1.79023 18.1394 1.95982 Vertex 17279 1.60388 18.0416 2.00563 Vertex 17280 1.40497 17.975 2.05453 Vertex 17281 1.1984 17.9413 2.10532 Vertex 17282 0.989257 17.9413 2.15673 Vertex 17283 0.782686 17.975 2.20752 Vertex 17284 0.583777 18.0416 2.25641 Vertex 17285 0.397427 18.1394 2.30222 Vertex 17286 0.228224 18.266 2.34382 Vertex 17287 0.080335 18.4183 2.38017 Vertex 17288 -0.0425985 18.5925 2.41039 Vertex 17289 -0.137549 18.7844 2.43372 Vertex 17290 -0.20218 18.9892 2.4496 Vertex 17291 -0.234899 19.2019 2.45764 Vertex 17292 -0.234899 19.4173 2.45764 Vertex 17293 -0.202183 19.63 2.44959 Vertex 17294 -0.137555 19.8349 2.4337 Vertex 17295 -0.0426062 20.0268 2.41035 Vertex 17296 0.0803252 20.201 2.38012 Vertex 17297 0.228213 20.3533 2.34376 Vertex 17298 0.397415 20.4799 2.30216 Vertex 17299 0.583764 20.5777 2.25635 Vertex 17300 0.782672 20.6442 2.20745 Vertex 17301 0.989243 20.6779 2.15666 Vertex 17302 1.24691 20.6442 2.31373 Vertex 17303 1.4484 20.6114 2.2642 Vertex 17304 1.64241 20.5464 2.21651 Vertex 17305 1.82417 20.4511 2.17182 Vertex 17306 1.98921 20.3276 2.13125 Vertex 17307 2.13345 20.1791 2.0958 Vertex 17308 2.25336 20.0091 2.06632 Vertex 17309 2.34597 19.822 2.04356 Vertex 17310 2.40901 19.6222 2.02807 Vertex 17311 2.44092 19.4146 2.02023 Vertex 17312 2.44092 19.2046 2.02023 Vertex 17313 2.40901 18.9971 2.02808 Vertex 17314 2.34598 18.7973 2.04359 Vertex 17315 2.25337 18.6101 2.06636 Vertex 17316 2.13346 18.4402 2.09584 Vertex 17317 1.98922 18.2917 2.13131 Vertex 17318 1.82418 18.1682 2.17188 Vertex 17319 1.64242 18.0728 2.21657 Vertex 17320 1.44841 18.0079 2.26427 Vertex 17321 1.24693 17.9751 2.3138 Vertex 17322 1.04293 17.9751 2.36395 Vertex 17323 0.841445 18.0079 2.41348 Vertex 17324 0.647434 18.0728 2.46117 Vertex 17325 0.465672 18.1682 2.50586 Vertex 17326 0.300636 18.2917 2.54642 Vertex 17327 0.156388 18.4402 2.58188 Vertex 17328 0.036482 18.6102 2.61136 Vertex 17329 -0.0561313 18.7973 2.63412 Vertex 17330 -0.11917 18.9971 2.64961 Vertex 17331 -0.151083 19.2046 2.65745 Vertex 17332 -0.151085 19.4146 2.65744 Vertex 17333 -0.119174 19.6222 2.6496 Vertex 17334 -0.0561367 19.8219 2.63409 Vertex 17335 0.036474 20.0091 2.61132 Vertex 17336 0.156378 20.1791 2.58184 Vertex 17337 0.300624 20.3276 2.54637 Vertex 17338 0.46566 20.4511 2.5058 Vertex 17339 0.647421 20.5464 2.46111 Vertex 17340 0.841432 20.6114 2.41341 Vertex 17341 1.04291 20.6442 2.36388 Vertex 17342 1.29103 20.5777 2.51512 Vertex 17343 1.48247 20.5465 2.46806 Vertex 17344 1.6668 20.4848 2.42274 Vertex 17345 1.8395 20.3941 2.3803 Vertex 17346 1.9963 20.2768 2.34175 Vertex 17347 2.13336 20.1357 2.30805 Vertex 17348 2.24729 19.9743 2.28005 Vertex 17349 2.33528 19.7964 2.25843 Vertex 17350 2.39517 19.6066 2.24371 Vertex 17351 2.4255 19.4094 2.23626 Vertex 17352 2.4255 19.2099 2.23626 Vertex 17353 2.39518 19.0127 2.24372 Vertex 17354 2.33529 18.8229 2.25845 Vertex 17355 2.24729 18.645 2.28009 Vertex 17356 2.13337 18.4835 2.3081 Vertex 17357 1.99631 18.3424 2.34179 Vertex 17358 1.83951 18.2252 2.38035 Vertex 17359 1.66681 18.1345 2.42281 Vertex 17360 1.48248 18.0728 2.46813 Vertex 17361 1.29104 18.0416 2.51519 Vertex 17362 1.09722 18.0416 2.56284 Vertex 17363 0.905782 18.0728 2.6099 Vertex 17364 0.721445 18.1345 2.65522 Vertex 17365 0.548747 18.2252 2.69767 Vertex 17366 0.391941 18.3424 2.73621 Vertex 17367 0.254887 18.4836 2.76991 Vertex 17368 0.14096 18.6451 2.79791 Vertex 17369 0.0529655 18.8229 2.81954 Vertex 17370 -0.00693 19.0127 2.83426 Vertex 17371 -0.0372512 19.2099 2.8417 Vertex 17372 -0.0372528 19.4094 2.8417 Vertex 17373 -0.00693325 19.6066 2.83424 Vertex 17374 0.0529603 19.7964 2.81951 Vertex 17375 0.140953 19.9743 2.79787 Vertex 17376 0.254878 20.1357 2.76986 Vertex 17377 0.391931 20.2769 2.73617 Vertex 17378 0.548736 20.3941 2.69762 Vertex 17379 0.721432 20.4848 2.65515 Vertex 17380 0.905768 20.5465 2.60984 Vertex 17381 1.0972 20.5777 2.56277 Vertex 17382 1.32965 20.4799 2.70447 Vertex 17383 1.50633 20.4511 2.66103 Vertex 17384 1.67645 20.3941 2.61921 Vertex 17385 1.83583 20.3105 2.58003 Vertex 17386 1.98055 20.2022 2.54446 Vertex 17387 2.10703 20.072 2.51337 Vertex 17388 2.21217 19.923 2.48752 Vertex 17389 2.29338 19.7589 2.46756 Vertex 17390 2.34866 19.5837 2.45398 Vertex 17391 2.37665 19.4018 2.44711 Vertex 17392 2.37665 19.2176 2.44711 Vertex 17393 2.34866 19.0356 2.45399 Vertex 17394 2.29339 18.8604 2.46759 Vertex 17395 2.21218 18.6963 2.48756 Vertex 17396 2.10704 18.5473 2.5134 Vertex 17397 1.98055 18.417 2.5445 Vertex 17398 1.83584 18.3088 2.58009 Vertex 17399 1.67646 18.2252 2.61927 Vertex 17400 1.50634 18.1682 2.6611 Vertex 17401 1.32966 18.1394 2.70453 Vertex 17402 1.15079 18.1394 2.7485 Vertex 17403 0.974112 18.1682 2.79193 Vertex 17404 0.803988 18.2251 2.83376 Vertex 17405 0.644607 18.3088 2.87294 Vertex 17406 0.499892 18.417 2.90851 Vertex 17407 0.373406 18.5473 2.9396 Vertex 17408 0.268264 18.6963 2.96545 Vertex 17409 0.187055 18.8604 2.9854 Vertex 17410 0.131778 19.0356 2.99899 Vertex 17411 0.103795 19.2176 3.00587 Vertex 17412 0.103794 19.4018 3.00586 Vertex 17413 0.131775 19.5837 2.99898 Vertex 17414 0.18705 19.7589 2.98538 Vertex 17415 0.268258 19.923 2.96541 Vertex 17416 0.373398 20.072 2.93956 Vertex 17417 0.499883 20.2022 2.90846 Vertex 17418 0.644597 20.3105 2.87289 Vertex 17419 0.803977 20.3941 2.8337 Vertex 17420 0.974099 20.4511 2.79188 Vertex 17421 1.15078 20.4799 2.74844 Vertex 17422 1.36183 20.3533 2.8771 Vertex 17423 1.51939 20.3276 2.83837 Vertex 17424 1.67111 20.2768 2.80107 Vertex 17425 1.81325 20.2022 2.76613 Vertex 17426 1.94231 20.1057 2.7344 Vertex 17427 2.05512 19.9895 2.70667 Vertex 17428 2.14889 19.8567 2.68362 Vertex 17429 2.22131 19.7103 2.66582 Vertex 17430 2.27061 19.5541 2.65371 Vertex 17431 2.29557 19.3918 2.64758 Vertex 17432 2.29557 19.2275 2.64758 Vertex 17433 2.27061 19.0653 2.65372 Vertex 17434 2.22131 18.909 2.66584 Vertex 17435 2.14889 18.7627 2.68365 Vertex 17436 2.05512 18.6298 2.7067 Vertex 17437 1.94232 18.5136 2.73444 Vertex 17438 1.81326 18.417 2.76617 Vertex 17439 1.67112 18.3425 2.80112 Vertex 17440 1.51941 18.2917 2.83841 Vertex 17441 1.36184 18.266 2.87715 Vertex 17442 1.20232 18.266 2.91637 Vertex 17443 1.04475 18.2917 2.95511 Vertex 17444 0.89303 18.3425 2.9924 Vertex 17445 0.750892 18.417 3.02734 Vertex 17446 0.621831 18.5136 3.05906 Vertex 17447 0.509028 18.6297 3.08679 Vertex 17448 0.41526 18.7627 3.10984 Vertex 17449 0.342835 18.909 3.12765 Vertex 17450 0.293538 19.0653 3.13976 Vertex 17451 0.268581 19.2275 3.1459 Vertex 17452 0.26858 19.3918 3.14589 Vertex 17453 0.293535 19.5541 3.13975 Vertex 17454 0.342831 19.7103 3.12762 Vertex 17455 0.415254 19.8567 3.10981 Vertex 17456 0.50902 19.9895 3.08676 Vertex 17457 0.621823 20.1057 3.05903 Vertex 17458 0.750883 20.2023 3.0273 Vertex 17459 0.893021 20.2768 2.99235 Vertex 17460 1.04474 20.3276 2.95505 Vertex 17461 1.2023 20.3533 2.91632 Vertex 17462 1.38678 20.201 3.02877 Vertex 17463 1.52135 20.1791 2.99569 Vertex 17464 1.65093 20.1357 2.96384 Vertex 17465 1.77233 20.072 2.93399 Vertex 17466 1.88256 19.9896 2.90689 Vertex 17467 1.9789 19.8904 2.88321 Vertex 17468 2.05898 19.7768 2.86353 Vertex 17469 2.12084 19.6518 2.84832 Vertex 17470 2.16295 19.5184 2.83797 Vertex 17471 2.18426 19.3798 2.83274 Vertex 17472 2.18426 19.2395 2.83274 Vertex 17473 2.16295 19.1009 2.83799 Vertex 17474 2.12084 18.9675 2.84834 Vertex 17475 2.05899 18.8425 2.86355 Vertex 17476 1.9789 18.729 2.88324 Vertex 17477 1.88256 18.6297 2.90693 Vertex 17478 1.77233 18.5473 2.93403 Vertex 17479 1.65093 18.4836 2.96387 Vertex 17480 1.52135 18.4403 2.99573 Vertex 17481 1.38678 18.4183 3.02882 Vertex 17482 1.25054 18.4183 3.06231 Vertex 17483 1.11596 18.4403 3.0954 Vertex 17484 0.986382 18.4836 3.12725 Vertex 17485 0.864983 18.5473 3.15709 Vertex 17486 0.754755 18.6297 3.18418 Vertex 17487 0.658412 18.729 3.20786 Vertex 17488 0.578326 18.8425 3.22755 Vertex 17489 0.51647 18.9675 3.24275 Vertex 17490 0.474366 19.1009 3.2531 Vertex 17491 0.453051 19.2395 3.25834 Vertex 17492 0.453051 19.3798 3.25834 Vertex 17493 0.474364 19.5184 3.25309 Vertex 17494 0.516466 19.6518 3.24274 Vertex 17495 0.578321 19.7768 3.22753 Vertex 17496 0.658406 19.8904 3.20784 Vertex 17497 0.754748 19.9895 3.18415 Vertex 17498 0.864975 20.072 3.15705 Vertex 17499 0.986373 20.1357 3.1272 Vertex 17500 1.11595 20.1791 3.09535 Vertex 17501 1.25052 20.201 3.06226 Vertex 17502 1.40387 20.0268 3.15574 Vertex 17503 1.51214 20.0091 3.12913 Vertex 17504 1.61639 19.9743 3.1035 Vertex 17505 1.71406 19.923 3.07949 Vertex 17506 1.80273 19.8567 3.05769 Vertex 17507 1.88024 19.7768 3.03864 Vertex 17508 1.94468 19.6855 3.0228 Vertex 17509 1.99444 19.5849 3.01057 Vertex 17510 2.02832 19.4776 3.00224 Vertex 17511 2.04546 19.3661 2.99803 Vertex 17512 2.04546 19.2533 2.99803 Vertex 17513 2.02832 19.1417 3.00225 Vertex 17514 1.99444 19.0344 3.01058 Vertex 17515 1.94468 18.9338 3.02282 Vertex 17516 1.88025 18.8425 3.03866 Vertex 17517 1.80274 18.7627 3.05772 Vertex 17518 1.71406 18.6963 3.07952 Vertex 17519 1.61639 18.6451 3.10353 Vertex 17520 1.51214 18.6102 3.12916 Vertex 17521 1.40387 18.5925 3.15578 Vertex 17522 1.29426 18.5925 3.18273 Vertex 17523 1.18599 18.6102 3.20934 Vertex 17524 1.08174 18.6451 3.23497 Vertex 17525 0.984073 18.6963 3.25898 Vertex 17526 0.895391 18.7627 3.28078 Vertex 17527 0.81788 18.8425 3.29983 Vertex 17528 0.753449 18.9338 3.31567 Vertex 17529 0.703684 19.0344 3.3279 Vertex 17530 0.669811 19.1417 3.33622 Vertex 17531 0.652662 19.2533 3.34044 Vertex 17532 0.652662 19.3661 3.34044 Vertex 17533 0.669809 19.4776 3.33622 Vertex 17534 0.703682 19.5849 3.32789 Vertex 17535 0.753446 19.6855 3.31565 Vertex 17536 0.817876 19.7768 3.29981 Vertex 17537 0.895384 19.8567 3.28075 Vertex 17538 0.984066 19.923 3.25895 Vertex 17539 1.08174 19.9743 3.23494 Vertex 17540 1.18599 20.0091 3.2093 Vertex 17541 1.29425 20.0268 3.18268 Vertex 17542 1.41269 19.8349 3.25489 Vertex 17543 1.49199 19.822 3.23539 Vertex 17544 1.56834 19.7964 3.21662 Vertex 17545 1.63987 19.7589 3.19904 Vertex 17546 1.70482 19.7103 3.18307 Vertex 17547 1.76159 19.6519 3.16912 Vertex 17548 1.80878 19.5849 3.15752 Vertex 17549 1.84523 19.5113 3.14856 Vertex 17550 1.87004 19.4327 3.14246 Vertex 17551 1.8826 19.351 3.13938 Vertex 17552 1.8826 19.2684 3.13938 Vertex 17553 1.87004 19.1867 3.14247 Vertex 17554 1.84523 19.108 3.14857 Vertex 17555 1.80879 19.0344 3.15753 Vertex 17556 1.7616 18.9675 3.16914 Vertex 17557 1.70483 18.909 3.18309 Vertex 17558 1.63988 18.8604 3.19906 Vertex 17559 1.56835 18.8229 3.21665 Vertex 17560 1.49199 18.7974 3.23542 Vertex 17561 1.41269 18.7845 3.25492 Vertex 17562 1.33241 18.7845 3.27465 Vertex 17563 1.25311 18.7973 3.29415 Vertex 17564 1.17676 18.8229 3.31292 Vertex 17565 1.10523 18.8604 3.3305 Vertex 17566 1.04028 18.909 3.34647 Vertex 17567 0.983506 18.9675 3.36042 Vertex 17568 0.936315 19.0344 3.37202 Vertex 17569 0.899868 19.1081 3.38098 Vertex 17570 0.875059 19.1867 3.38708 Vertex 17571 0.862499 19.2684 3.39016 Vertex 17572 0.862498 19.351 3.39016 Vertex 17573 0.875057 19.4327 3.38707 Vertex 17574 0.899866 19.5113 3.38097 Vertex 17575 0.936314 19.5849 3.37201 Vertex 17576 0.983502 19.6518 3.3604 Vertex 17577 1.04027 19.7103 3.34645 Vertex 17578 1.10523 19.7589 3.33048 Vertex 17579 1.17676 19.7964 3.31289 Vertex 17580 1.25311 19.822 3.29412 Vertex 17581 1.33241 19.8349 3.27463 Vertex 17582 1.41302 19.6301 3.32377 Vertex 17583 1.4614 19.6222 3.31188 Vertex 17584 1.50797 19.6066 3.30043 Vertex 17585 1.55161 19.5837 3.2897 Vertex 17586 1.59123 19.5541 3.27996 Vertex 17587 1.62586 19.5184 3.27145 Vertex 17588 1.65465 19.4776 3.26437 Vertex 17589 1.67689 19.4327 3.25891 Vertex 17590 1.69202 19.3847 3.25519 Vertex 17591 1.69968 19.3349 3.25331 Vertex 17592 1.69968 19.2845 3.25331 Vertex 17593 1.69202 19.2347 3.25519 Vertex 17594 1.67689 19.1867 3.25892 Vertex 17595 1.65465 19.1418 3.26438 Vertex 17596 1.62586 19.1009 3.27146 Vertex 17597 1.59123 19.0653 3.27998 Vertex 17598 1.55161 19.0356 3.28972 Vertex 17599 1.50798 19.0127 3.30045 Vertex 17600 1.4614 18.9972 3.3119 Vertex 17601 1.41303 18.9893 3.32379 Vertex 17602 1.36405 18.9893 3.33583 Vertex 17603 1.31568 18.9972 3.34772 Vertex 17604 1.2691 19.0127 3.35917 Vertex 17605 1.22546 19.0357 3.3699 Vertex 17606 1.18584 19.0653 3.37964 Vertex 17607 1.15121 19.101 3.38815 Vertex 17608 1.12242 19.1418 3.39523 Vertex 17609 1.10019 19.1867 3.40069 Vertex 17610 1.08506 19.2346 3.40441 Vertex 17611 1.07739 19.2845 3.40629 Vertex 17612 1.07739 19.3349 3.40629 Vertex 17613 1.08506 19.3847 3.40441 Vertex 17614 1.10019 19.4327 3.40068 Vertex 17615 1.12242 19.4776 3.39522 Vertex 17616 1.15121 19.5184 3.38814 Vertex 17617 1.18584 19.5541 3.37962 Vertex 17618 1.22547 19.5837 3.36988 Vertex 17619 1.2691 19.6066 3.35916 Vertex 17620 1.31568 19.6222 3.3477 Vertex 17621 1.36405 19.6301 3.33581 Vertex 17622 12.9469 -14.2126 -0.141485 Vertex 17623 13.0618 -14.4362 -0.704836 Vertex 17624 13 -14.5586 -1.29025 Vertex 17625 12.8898 -14.6383 -1.91462 Vertex 17626 12.8583 -14.6642 -2.51649 Vertex 17627 12.7096 -14.6089 -3.1227 Vertex 17628 11.2824 -14.8619 -2.34556 Vertex 17629 11.3541 -14.8563 -2.12687 Vertex 17630 10.694 -14.8832 -1.51052 Vertex 17631 10.7405 -14.8333 -1.27955 Vertex 17632 10.9148 -14.7347 -0.579861 Vertex 17633 10.9908 -14.6936 -0.355385 Vertex 17634 10.4276 -14.9945 0.173882 Vertex 17635 10.5125 -14.894 0.376693 Vertex 17636 9.19215 -16.0673 0.264265 Vertex 17637 8.93539 -15.9383 0.18628 Vertex 17638 5.76531 9.94082 -1.4232 Vertex 17639 5.96025 9.59372 -1.94802 Vertex 17640 5.80046 9.98635 -2.61431 Vertex 17641 12.5085 8.62822 -1.99274 Vertex 17642 12.5194 8.80145 -2.62637 Vertex 17643 -12.9402 -14.4791 -0.14979 Vertex 17644 -13.0643 -14.6987 -0.703593 Vertex 17645 -12.9764 -14.8169 -1.30613 Vertex 17646 -12.8485 -14.8747 -1.93071 Vertex 17647 -12.6198 -14.8982 -3.17438 Vertex 17648 -11.2378 -14.8826 -2.41216 Vertex 17649 -11.2397 -14.8903 -2.06888 Vertex 17650 -10.6559 -14.9241 -1.58108 Vertex 17651 -10.6077 -14.8929 -1.23092 Vertex 17652 -10.8701 -14.7738 -0.646366 Vertex 17653 -10.872 -14.7633 -0.291942 Vertex 17654 -10.3891 -15.0556 0.120722 Vertex 17655 -10.4264 -14.9802 0.465776 Vertex 17656 -9.29156 -16.0813 0.29384 Vertex 17657 -8.93119 -15.8038 0.252491 Vertex 17658 -5.99986 9.52392 -2.06378 Vertex 17659 -5.80492 9.87103 -1.53896 Vertex 17660 -5.59918 10.3127 -1.93314 Vertex 17661 -12.5006 8.92661 -2.06052 Vertex 17662 -12.5 8.96334 -2.54178 Vertex 17663 13.1025 -7.35784 -0.943978 Vertex 17664 13.542 -7.42758 -1.74329 Vertex 17665 13.7538 -7.57038 -2.74899 Vertex 17666 13.6417 -7.71896 -3.64646 Vertex 17667 13.364 -7.82059 -4.26865 Vertex 17668 12.9384 -7.90506 -4.76262 Vertex 17669 12.0393 -7.99735 -5.16004 Vertex 17670 11.2425 -8.03479 -5.14209 Vertex 17671 10.6374 -8.05259 -4.89826 Vertex 17672 10.1928 -8.03866 -4.41246 Vertex 17673 9.84911 -7.9559 -3.48014 Vertex 17674 9.76086 -7.78526 -2.31905 Vertex 17675 9.96051 -7.62602 -1.4107 Vertex 17676 10.7288 -7.45608 -0.553293 Vertex 17677 11.6434 -7.37679 -0.238446 Vertex 17678 12.4594 -7.34876 -0.436159 Vertex 17679 11.7895 -11.8802 -4.07341 Vertex 17680 11.1491 -11.7737 -3.71983 Vertex 17681 10.9749 -11.6973 -3.43717 Vertex 17682 10.7801 -11.5411 -2.86969 Vertex 17683 10.6759 -11.2841 -1.97365 Vertex 17684 10.695 -11.0398 -1.14035 Vertex 17685 10.8214 -10.8688 -0.5639 Vertex 17686 11.4004 -10.7476 -0.186798 Vertex 17687 12.516 -10.8553 -0.621467 Vertex 17688 12.8068 -10.9606 -1.00652 Vertex 17689 13.0657 -11.1242 -1.59101 Vertex 17690 13.1135 -11.565 -3.09239 Vertex 17691 12.9157 -11.7124 -3.55899 Vertex 17692 12.6612 -11.8125 -3.8821 Vertex 17693 12.2985 -11.8725 -4.06918 Vertex 17694 11.4734 -4.10315 -0.744821 Vertex 17695 10.2774 -4.21142 -1.28807 Vertex 17696 9.47914 -4.28437 -2.15329 Vertex 17697 9.13723 -4.31623 -2.92634 Vertex 17698 9.13838 -4.31762 -3.99422 Vertex 17699 9.55444 -4.28168 -5.07558 Vertex 17700 10.204 -4.22411 -5.67452 Vertex 17701 11.1136 -4.14281 -5.93614 Vertex 17702 12.1895 -4.05081 -5.82181 Vertex 17703 13.0645 -3.97154 -5.34253 Vertex 17704 13.5824 -3.92656 -4.77754 Vertex 17705 13.8964 -3.89735 -4.16426 Vertex 17706 14.0549 -3.86698 -3.40357 Vertex 17707 13.9443 -3.87204 -2.49111 Vertex 17708 13.5253 -3.91326 -1.57008 Vertex 17709 12.6593 -3.99378 -0.915817 Vertex 17710 9.64318 3.7976 -5.69169 Vertex 17711 11.5338 6.14394 -5.12819 Vertex 17712 11.8958 5.19582 -5.2872 Vertex 17713 11.2262 7.59892 -4.07675 Vertex 17714 11.2233 7.24657 -4.19459 Vertex 17715 11.281 6.85211 -4.62891 Vertex 17716 8.37237 5.83045 -0.961041 Vertex 17717 8.38366 4.70942 -1.59436 Vertex 17718 9.35324 0.39072 -4.40684 Vertex 17719 9.56227 -1.70986 -5.06498 Vertex 17720 12.7913 0.078365 -2.68919 Vertex 17721 12.3738 0.0366907 -1.97598 Vertex 17722 12.5715 -1.28579 -5.11415 Vertex 17723 11.8439 -1.36887 -5.62791 Vertex 17724 12.2911 0.875386 -4.65041 Vertex 17725 12.581 4.23568 -3.90392 Vertex 17726 12.796 2.90844 -3.76776 Vertex 17727 11.4171 0.769598 -5.38275 Vertex 17728 11.3177 -0.0665562 -5.59856 Vertex 17729 10.8528 -0.730875 -5.74626 Vertex 17730 10.2073 -0.916196 -5.57373 Vertex 17731 9.77114 -0.443646 -5.23669 Vertex 17732 9.56376 0.497311 -4.97207 Vertex 17733 13.0195 1.08208 -3.2827 Vertex 17734 12.9658 1.06679 -3.6316 Vertex 17735 10.3432 -1.625 -1.93535 Vertex 17736 7.87638 4.20783 -3.93486 Vertex 17737 8.54523 2.71339 -3.95669 Vertex 17738 13.3227 -3.01756 -1.95422 Vertex 17739 11.4228 -1.4737 -1.50183 Vertex 17740 10.271 -0.439337 -2.12773 Vertex 17741 8.87998 3.38404 -2.07176 Vertex 17742 12.4346 -1.37052 -1.66267 Vertex 17743 11.3471 -13.452 -2.39041 Vertex 17744 12.1863 -12.221 -3.98251 Vertex 17745 11.5876 -12.2183 -3.92813 Vertex 17746 11.1381 -12.1574 -3.66624 Vertex 17747 11.0138 -12.0896 -3.38462 Vertex 17748 10.9801 -12.0494 -3.11634 Vertex 17749 10.9863 -12.0136 -2.67947 Vertex 17750 10.9178 -11.8528 -2.06159 Vertex 17751 10.7922 -11.5529 -1.37788 Vertex 17752 10.8196 -11.1861 -0.681255 Vertex 17753 11.5154 -10.9334 -0.248133 Vertex 17754 12.3867 -11.1479 -0.508677 Vertex 17755 12.7676 -11.4731 -1.06526 Vertex 17756 12.9743 -11.5999 -1.47478 Vertex 17757 13.1125 -11.7343 -1.95413 Vertex 17758 13.122 -11.8931 -2.53304 Vertex 17759 13.0244 -12.0225 -3.07356 Vertex 17760 12.8668 -12.1089 -3.49668 Vertex 17761 12.592 -12.1788 -3.80991 Vertex 17762 10.8354 -12.1798 -1.11338 Vertex 17763 12.5097 -14.4979 -3.53851 Vertex 17764 12.2272 -14.4902 -3.7792 Vertex 17765 12.5636 -12.6881 -0.072607 Vertex 17766 11.4734 -11.1744 -0.0083525 Vertex 17767 11.9314 -12.9608 0.459965 Vertex 17768 11.7123 -12.2769 0.489795 Vertex 17769 10.4542 -12.4724 -0.00621599 Vertex 17770 10.457 -13.0586 -0.317657 Vertex 17771 10.9193 -12.0307 0.393587 Vertex 17772 11.4935 -13.881 0.366874 Vertex 17773 11.0004 -13.5132 -0.612486 Vertex 17774 10.9104 -12.7653 -0.897707 Vertex 17775 11.1031 -12.571 -1.95012 Vertex 17776 11.2781 -13.9977 -0.269237 Vertex 17777 11.3357 -13.8056 -0.95472 Vertex 17778 11.2915 -13.1571 -1.63271 Vertex 17779 11.5442 -13.7986 -1.77411 Vertex 17780 11.65 -13.308 -3.9806 Vertex 17781 11.1484 -13.326 -3.68342 Vertex 17782 11.0698 -13.3175 -3.27508 Vertex 17783 11.1502 -13.3223 -2.89018 Vertex 17784 12.859 -12.838 -0.623879 Vertex 17785 13.0284 -13.0145 -1.1157 Vertex 17786 13.08 -13.1481 -1.6543 Vertex 17787 13.0312 -13.2726 -2.26413 Vertex 17788 12.9643 -13.3003 -2.83039 Vertex 17789 12.8382 -13.2684 -3.33371 Vertex 17790 12.6068 -13.2418 -3.7045 Vertex 17791 12.2783 -13.2508 -3.95553 Vertex 17792 11.6919 -14.5153 -3.79762 Vertex 17793 11.3206 -14.5503 -3.42855 Vertex 17794 11.3659 -14.5737 -2.90454 Vertex 17795 11.4914 -14.5167 -2.47125 Vertex 17796 11.5798 -14.4828 -2.01428 Vertex 17797 11.6748 -14.5323 -1.44184 Vertex 17798 11.597 -14.4962 -0.854583 Vertex 17799 11.877 -14.0123 0.572116 Vertex 17800 12.4126 -13.7581 0.630126 Vertex 17801 12.7107 -13.8058 0.315418 Vertex 17802 10.9968 -15.9582 -3.06085 Vertex 17803 11.1981 -16.3365 -3.08137 Vertex 17804 11.0038 -15.6504 -2.79049 Vertex 17805 11.4205 -16.4788 -2.91349 Vertex 17806 10.899 -15.7459 -2.72059 Vertex 17807 10.7294 -16.045 -2.93117 Vertex 17808 10.7437 -16.4283 -2.89438 Vertex 17809 10.889 -16.5983 -2.69235 Vertex 17810 10.4676 -16.3042 -2.76056 Vertex 17811 10.5226 -16.4599 -2.5293 Vertex 17812 10.8591 -15.7417 -2.68242 Vertex 17813 10.6014 -15.9838 -2.85603 Vertex 17814 10.8116 -15.6742 -2.6148 Vertex 17815 10.5127 -15.7486 -2.76689 Vertex 17816 10.2909 -15.8739 -2.6372 Vertex 17817 10.2759 -15.9497 -2.39606 Vertex 17818 10.4502 -15.5443 -2.68932 Vertex 17819 10.1826 -15.4404 -2.59445 Vertex 17820 10.0933 -15.3997 -2.36738 Vertex 17821 10.7371 -15.6213 -2.54223 Vertex 17822 10.2095 -15.1226 -2.37672 Vertex 17823 10.7599 -15.5717 -2.53139 Vertex 17824 10.5335 -15.4276 -2.6771 Vertex 17825 10.3162 -15.2138 -2.59291 Vertex 17826 10.8914 -15.5374 -2.49719 Vertex 17827 10.7955 -15.3189 -2.64137 Vertex 17828 10.7129 -15.0767 -2.58486 Vertex 17829 10.6538 -14.9783 -2.37075 Vertex 17830 11.1253 -15.0109 -2.59236 Vertex 17831 11.1899 -14.9121 -2.51656 Vertex 17832 11.1468 -15.4493 -2.47741 Vertex 17833 11.1086 -15.2431 -2.5876 Vertex 17834 11.4409 -14.8817 -2.47815 Vertex 17835 11.3801 -15.1727 -2.5256 Vertex 17836 11.5443 -15.1143 -2.43519 Vertex 17837 10.9827 -14.9052 -2.37135 Vertex 17838 11.5449 -14.8487 -2.33313 Vertex 17839 11.6188 -15.0717 -2.32064 Vertex 17840 11.599 -14.925 -2.33071 Vertex 17841 11.4969 -14.96 -2.47699 Vertex 17842 11.1357 -15.6372 -2.89337 Vertex 17843 11.9023 -16.2281 -3.20322 Vertex 17844 11.6371 -16.1477 -3.33377 Vertex 17845 11.2903 -15.874 -3.23585 Vertex 17846 11.9561 -16.1479 -2.60409 Vertex 17847 12.0249 -16.2227 -2.94151 Vertex 17848 11.1947 -15.6631 -2.45553 Vertex 17849 11.4928 -14.9719 -2.00649 Vertex 17850 11.5992 -14.9286 -2.15329 Vertex 17851 11.6206 -15.0736 -2.17421 Vertex 17852 11.5458 -14.8534 -2.14745 Vertex 17853 10.983 -14.9128 -2.1113 Vertex 17854 11.5469 -15.1202 -2.05878 Vertex 17855 11.3804 -15.1832 -1.9713 Vertex 17856 11.4374 -14.8943 -2.0014 Vertex 17857 11.1043 -15.2569 -1.91506 Vertex 17858 11.1457 -15.4539 -2.1987 Vertex 17859 11.1858 -14.9276 -1.96543 Vertex 17860 11.1172 -15.03 -1.89792 Vertex 17861 10.6534 -14.997 -2.11081 Vertex 17862 10.7084 -15.1236 -1.91245 Vertex 17863 10.8317 -15.3491 -1.92775 Vertex 17864 10.9317 -15.5394 -2.19605 Vertex 17865 10.3752 -15.2716 -1.91176 Vertex 17866 10.6775 -15.4511 -1.94595 Vertex 17867 10.8464 -15.5707 -2.21128 Vertex 17868 10.211 -15.156 -2.1066 Vertex 17869 10.8289 -15.6274 -2.21212 Vertex 17870 10.128 -15.424 -2.09769 Vertex 17871 10.3393 -15.4768 -1.9113 Vertex 17872 10.6641 -15.5626 -1.94574 Vertex 17873 10.3579 -15.9615 -2.16109 Vertex 17874 10.5279 -15.9131 -1.97233 Vertex 17875 10.7881 -15.7965 -1.98495 Vertex 17876 10.932 -15.6946 -2.26276 Vertex 17877 10.9502 -16.0333 -2.0339 Vertex 17878 11.0129 -15.7663 -2.31413 Vertex 17879 10.6385 -16.4733 -2.25892 Vertex 17880 10.7785 -16.3424 -2.03634 Vertex 17881 11.0139 -16.6066 -2.41707 Vertex 17882 11.08 -16.4468 -2.15647 Vertex 17883 11.1065 -16.0718 -2.10418 Vertex 17884 11.0646 -15.7625 -2.35622 Vertex 17885 11.5353 -16.4764 -2.67176 Vertex 17886 11.1616 -15.6643 -2.43159 Vertex 17887 11.5097 -16.3325 -2.38104 Vertex 17888 11.3516 -15.9703 -2.24336 Vertex 17889 11.9559 -15.8201 -3.56362 Vertex 17890 11.4747 -15.6676 -3.41945 Vertex 17891 11.2107 -15.5877 -2.99704 Vertex 17892 11.2458 -15.6671 -2.46591 Vertex 17893 12.3404 -15.9201 -2.80141 Vertex 17894 12.5751 -15.5236 -2.90041 Vertex 17895 12.5518 -15.4379 -3.22346 Vertex 17896 12.4392 -15.3648 -3.49695 Vertex 17897 12.0964 -15.3385 -3.67683 Vertex 17898 11.5803 -15.2444 -3.56044 Vertex 17899 11.2949 -15.2411 -3.10928 Vertex 17900 11.4131 -15.3051 -2.57479 Vertex 17901 11.5431 -15.2373 -2.1767 Vertex 17902 11.582 -15.1531 -1.75715 Vertex 17903 12.7891 -15.3705 -1.58353 Vertex 17904 12.87 -15.3661 -1.90165 Vertex 17905 12.8823 -15.3662 -2.20432 Vertex 17906 12.7169 -15.4585 -2.54439 Vertex 17907 12.4459 -15.8694 -2.42997 Vertex 17908 11.3612 -15.6597 -2.06394 Vertex 17909 11.458 -15.5878 -1.62673 Vertex 17910 12.5918 -15.7846 -1.45772 Vertex 17911 11.0705 -16.0469 -2.15018 Vertex 17912 11.3228 -16.3969 -2.0514 Vertex 17913 10.9564 -15.7097 -1.91407 Vertex 17914 11.486 -16.4877 -1.7814 Vertex 17915 10.7841 -15.8511 -1.8701 Vertex 17916 10.7454 -16.2098 -2.10725 Vertex 17917 10.8174 -16.6033 -2.01791 Vertex 17918 10.9184 -16.7206 -1.73974 Vertex 17919 10.539 -16.5122 -1.99322 Vertex 17920 10.5793 -16.6162 -1.72111 Vertex 17921 10.6828 -15.82 -1.85022 Vertex 17922 10.5789 -16.1553 -2.08275 Vertex 17923 10.5744 -15.7436 -1.75501 Vertex 17924 10.3753 -15.975 -1.97423 Vertex 17925 10.206 -16.2719 -1.88607 Vertex 17926 10.1854 -16.3863 -1.64082 Vertex 17927 10.2582 -15.8529 -1.87461 Vertex 17928 9.99155 -16.0626 -1.8301 Vertex 17929 9.90052 -16.1712 -1.60084 Vertex 17930 10.4948 -15.7381 -1.65819 Vertex 17931 9.81328 -15.7489 -1.59738 Vertex 17932 10.242 -15.7272 -1.85467 Vertex 17933 9.93756 -15.7488 -1.82056 Vertex 17934 10.5016 -15.7063 -1.58097 Vertex 17935 10.3636 -15.5425 -1.80887 Vertex 17936 10.1907 -15.3366 -1.79442 Vertex 17937 10.0963 -15.2179 -1.58258 Vertex 17938 10.5935 -15.1006 -1.76774 Vertex 17939 10.6356 -14.971 -1.68869 Vertex 17940 10.6642 -15.5895 -1.51669 Vertex 17941 10.6121 -15.3817 -1.74171 Vertex 17942 10.883 -14.8838 -1.62317 Vertex 17943 10.8684 -15.2212 -1.6481 Vertex 17944 11.0133 -15.1044 -1.53943 Vertex 17945 10.3941 -14.9897 -1.5673 Vertex 17946 10.9648 -14.8143 -1.46718 Vertex 17947 11.0626 -15.0306 -1.41928 Vertex 17948 11.0154 -14.8813 -1.45073 Vertex 17949 10.9427 -14.9496 -1.60699 Vertex 17950 11.1694 -15.6514 -1.9963 Vertex 17951 12.183 -16.141 -1.90648 Vertex 17952 11.9863 -16.1188 -2.21413 Vertex 17953 11.6015 -15.812 -1.24531 Vertex 17954 12.0645 -16.0364 -1.34511 Vertex 17955 12.1942 -16.0988 -1.62962 Vertex 17956 11.2351 -15.5924 -1.57194 Vertex 17957 10.877 -14.9071 -1.13038 Vertex 17958 10.9904 -14.8651 -1.26965 Vertex 17959 11.042 -15.0172 -1.2692 Vertex 17960 10.9385 -14.7974 -1.27676 Vertex 17961 10.3574 -14.966 -1.30089 Vertex 17962 10.9608 -15.0704 -1.15816 Vertex 17963 10.7903 -15.1706 -1.08065 Vertex 17964 10.8164 -14.8408 -1.13978 Vertex 17965 10.5161 -15.3197 -1.04575 Vertex 17966 10.6248 -15.5641 -1.23101 Vertex 17967 10.5586 -14.9212 -1.12931 Vertex 17968 10.4949 -15.0369 -1.05227 Vertex 17969 10.0715 -15.2066 -1.32094 Vertex 17970 10.1276 -15.309 -1.09862 Vertex 17971 10.2977 -15.5194 -1.05895 Vertex 17972 9.93571 -15.7574 -1.10366 Vertex 17973 10.2373 -15.7433 -1.06725 Vertex 17974 9.81346 -15.7523 -1.32339 Vertex 17975 10.5098 -15.7458 -1.3029 Vertex 17976 9.91256 -16.1723 -1.32138 Vertex 17977 10.0239 -16.0657 -1.09825 Vertex 17978 10.2936 -15.8626 -1.06695 Vertex 17979 10.1895 -16.4011 -1.38876 Vertex 17980 10.2508 -16.2724 -1.15405 Vertex 17981 10.4485 -15.9535 -1.1048 Vertex 17982 10.6069 -15.7363 -1.36554 Vertex 17983 10.6541 -16.0833 -1.14012 Vertex 17984 10.7163 -15.7891 -1.43292 Vertex 17985 10.5853 -16.6146 -1.41847 Vertex 17986 10.5868 -16.4694 -1.16524 Vertex 17987 10.9309 -16.6904 -1.43431 Vertex 17988 10.8566 -16.5196 -1.17413 Vertex 17989 10.7927 -16.1149 -1.15175 Vertex 17990 10.8046 -15.8097 -1.45295 Vertex 17991 11.49 -16.4624 -1.52057 Vertex 17992 10.9666 -15.67 -1.50975 Vertex 17993 11.339 -16.3212 -1.26114 Vertex 17994 11.0929 -15.9568 -1.21642 Vertex 17995 11.0802 -16.1322 -0.99902 Vertex 17996 11.2449 -16.4615 -0.886095 Vertex 17997 11.0452 -15.7922 -0.779305 Vertex 17998 11.3854 -16.5306 -0.614924 Vertex 17999 10.7781 -15.9112 -0.717338 Vertex 18000 10.5829 -16.2201 -0.944682 Vertex 18001 10.4709 -16.5945 -0.842891 Vertex 18002 10.5096 -16.7321 -0.559906 Vertex 18003 10.2058 -16.4007 -0.832142 Vertex 18004 10.1615 -16.5138 -0.553528 Vertex 18005 10.6691 -15.8273 -0.707744 Vertex 18006 10.4296 -16.0926 -0.933836 Vertex 18007 10.6001 -15.6467 -0.672126 Vertex 18008 10.3274 -15.7659 -0.881313 Vertex 18009 10.0352 -15.9367 -0.773642 Vertex 18010 9.94275 -16.0216 -0.519014 Vertex 18011 10.2512 -15.4845 -0.835863 Vertex 18012 9.9344 -15.4799 -0.767644 Vertex 18013 9.81588 -15.5045 -0.52904 Vertex 18014 10.5204 -15.5345 -0.632155 Vertex 18015 9.90921 -15.1923 -0.544237 Vertex 18016 10.5249 -15.5196 -0.620766 Vertex 18017 10.2851 -15.3973 -0.828256 Vertex 18018 10.0091 -15.2537 -0.773507 Vertex 18019 10.682 -15.4774 -0.60652 Vertex 18020 10.5231 -15.2977 -0.822386 Vertex 18021 10.3684 -15.0667 -0.792409 Vertex 18022 10.3071 -14.955 -0.573487 Vertex 18023 10.7973 -14.9234 -0.826906 Vertex 18024 10.8386 -14.8109 -0.751156 Vertex 18025 10.9507 -15.344 -0.598269 Vertex 18026 10.8457 -15.1661 -0.810516 Vertex 18027 11.0848 -14.7131 -0.71654 Vertex 18028 11.0964 -15.0185 -0.750699 Vertex 18029 11.2445 -14.9108 -0.660091 Vertex 18030 10.6192 -14.8591 -0.60039 Vertex 18031 11.1827 -14.6482 -0.570409 Vertex 18032 11.3047 -14.8442 -0.54512 Vertex 18033 11.2405 -14.7094 -0.564255 Vertex 18034 11.1514 -14.7723 -0.711783 Vertex 18035 12.3729 -16.0511 -0.742073 Vertex 18036 12.1743 -16.092 -1.01741 Vertex 18037 11.6612 -15.9038 -1.13892 Vertex 18038 12.2223 -15.8842 -0.162675 Vertex 18039 12.3932 -15.978 -0.462655 Vertex 18040 11.1539 -14.758 -0.229375 Vertex 18041 11.2414 -14.704 -0.380976 Vertex 18042 11.3055 -14.8397 -0.393218 Vertex 18043 11.1837 -14.6425 -0.377679 Vertex 18044 10.6206 -14.8512 -0.330744 Vertex 18045 11.2465 -14.8994 -0.274182 Vertex 18046 11.0994 -15.0016 -0.17636 Vertex 18047 11.0873 -14.6987 -0.227269 Vertex 18048 10.8492 -15.1453 -0.106099 Vertex 18049 10.9522 -15.3354 -0.30912 Vertex 18050 10.8414 -14.7943 -0.184969 Vertex 18051 10.8009 -14.9021 -0.102727 Vertex 18052 10.314 -14.9505 -0.310008 Vertex 18053 10.3883 -15.0557 -0.092117 Vertex 18054 10.5459 -15.2866 -0.0672073 Vertex 18055 10.6919 -15.4729 -0.288154 Vertex 18056 10.0597 -15.254 -0.057314 Vertex 18057 10.3367 -15.4097 -0.0388528 Vertex 18058 10.5456 -15.5318 -0.273854 Vertex 18059 9.92891 -15.1924 -0.270535 Vertex 18060 10.5519 -15.5461 -0.275202 Vertex 18061 9.8427 -15.5043 -0.250386 Vertex 18062 10.0055 -15.4792 -0.0378115 Vertex 18063 9.9664 -16.0113 -0.26971 Vertex 18064 10.1042 -15.9065 -0.0448332 Vertex 18065 10.4097 -15.7293 -0.0116942 Vertex 18066 10.6369 -15.6301 -0.282012 Vertex 18067 10.5333 -16.0172 0.0095315 Vertex 18068 10.7164 -15.7942 -0.289906 Vertex 18069 10.1992 -16.4902 -0.253124 Vertex 18070 10.2998 -16.3348 -0.00620925 Vertex 18071 10.549 -16.7038 -0.254832 Vertex 18072 10.5701 -16.5142 -0.000441 Vertex 18073 10.6919 -16.1283 0.009247 Vertex 18074 10.8273 -15.8714 -0.300785 Vertex 18075 11.4096 -16.4845 -0.35648 Vertex 18076 11.0816 -15.7208 -0.379793 Vertex 18077 11.3186 -16.3205 -0.103533 Vertex 18078 11.1661 -15.9658 -0.0753888 Vertex 18079 12.7091 -15.7601 -1.15624 Vertex 18080 11.5681 -15.4715 -0.896087 Vertex 18081 11.4882 -15.3116 -0.306367 Vertex 18082 12.7708 -15.5395 -0.206832 Vertex 18083 13.0047 -15.1441 -0.343456 Vertex 18084 13.1093 -15.1862 -0.647911 Vertex 18085 13.1008 -15.254 -0.96273 Vertex 18086 12.9035 -15.3428 -1.27192 Vertex 18087 11.6837 -15.1212 -1.13684 Vertex 18088 11.5646 -14.9792 -0.559822 Vertex 18089 11.3197 -14.7026 -0.0290285 Vertex 18090 11.4275 -14.5129 0.481943 Vertex 18091 12.0458 -14.4422 0.822398 Vertex 18092 12.651 -14.4707 0.780419 Vertex 18093 12.878 -14.6291 0.480007 Vertex 18094 12.902 -14.8296 0.200615 Vertex 18095 12.8985 -15.0146 -0.0649992 Vertex 18096 12.6452 -15.4123 0.0871005 Vertex 18097 11.2845 -15.1187 0.163624 Vertex 18098 11.3496 -14.9318 0.660387 Vertex 18099 11.9235 -14.9134 0.969897 Vertex 18100 12.549 -15.0112 0.925601 Vertex 18101 10.9702 -15.8204 0.133448 Vertex 18102 11.2105 -16.0929 0.275193 Vertex 18103 10.885 -15.5231 0.346337 Vertex 18104 11.397 -16.1474 0.566383 Vertex 18105 10.7509 -15.789 0.371671 Vertex 18106 10.6477 -16.1966 0.165955 Vertex 18107 10.652 -16.5919 0.27984 Vertex 18108 10.7346 -16.6978 0.547815 Vertex 18109 10.3645 -16.6251 0.280243 Vertex 18110 10.3735 -16.7359 0.551247 Vertex 18111 10.6656 -15.9244 0.333244 Vertex 18112 10.4875 -16.2829 0.147081 Vertex 18113 10.4873 -15.8824 0.319906 Vertex 18114 10.2663 -16.1178 0.135738 Vertex 18115 10.0261 -16.3381 0.269989 Vertex 18116 9.96076 -16.4013 0.534708 Vertex 18117 10.0519 -15.9865 0.124268 Vertex 18118 9.72909 -16.0501 0.213149 Vertex 18119 9.61791 -16.0396 0.458633 Vertex 18120 10.308 -15.8562 0.304009 Vertex 18121 9.61853 -15.717 0.382146 Vertex 18122 10.2989 -15.8395 0.303067 Vertex 18123 10.0253 -15.8865 0.109378 Vertex 18124 9.7171 -15.8052 0.161324 Vertex 18125 10.4233 -15.7702 0.285552 Vertex 18126 10.2001 -15.7001 0.0669153 Vertex 18127 9.99401 -15.5052 0.0762488 Vertex 18128 9.92558 -15.3682 0.279536 Vertex 18129 10.3433 -15.25 -0.0247207 Vertex 18130 10.3584 -15.1185 0.0279297 Vertex 18131 10.6358 -15.5652 0.233961 Vertex 18132 10.4613 -15.4638 0.017405 Vertex 18133 10.5682 -14.9536 0.0122238 Vertex 18134 10.6638 -15.2459 0.0188735 Vertex 18135 10.7835 -15.0877 0.0710202 Vertex 18136 10.18 -15.1952 0.214267 Vertex 18137 10.6585 -14.8391 0.131917 Vertex 18138 10.8339 -14.9873 0.165544 Vertex 18139 10.7318 -14.8804 0.137816 Vertex 18140 10.6492 -14.9909 0.0151775 Vertex 18141 11.1035 -15.3172 0.234854 Vertex 18142 12.1639 -15.5774 0.496323 Vertex 18143 11.9913 -15.648 0.207423 Vertex 18144 11.5947 -15.1995 0.99252 Vertex 18145 12.0681 -15.3513 1.00302 Vertex 18146 12.2066 -15.5005 0.76414 Vertex 18147 11.1562 -15.1708 0.667344 Vertex 18148 10.6999 -14.8882 0.484834 Vertex 18149 10.7511 -14.8414 0.316252 Vertex 18150 10.8499 -14.955 0.313433 Vertex 18151 10.6788 -14.7981 0.319551 Vertex 18152 10.2084 -15.1379 0.476786 Vertex 18153 10.824 -15.0056 0.446729 Vertex 18154 10.7243 -15.1237 0.578035 Vertex 18155 10.6197 -14.8495 0.48856 Vertex 18156 10.5354 -15.3139 0.703206 Vertex 18157 10.6662 -15.5037 0.515468 Vertex 18158 10.418 -14.9981 0.579151 Vertex 18159 10.4195 -15.0959 0.680315 Vertex 18160 9.95463 -15.3103 0.535609 Vertex 18161 10.0716 -15.3506 0.756744 Vertex 18162 10.2841 -15.5329 0.800631 Vertex 18163 10.4588 -15.6997 0.594845 Vertex 18164 9.80173 -15.6349 0.855183 Vertex 18165 10.3363 -15.7547 0.637527 Vertex 18166 9.65091 -15.6518 0.647295 Vertex 18167 10.3436 -15.7624 0.647699 Vertex 18168 9.64877 -15.9687 0.728215 Vertex 18169 9.80898 -15.8633 0.919177 Vertex 18170 10.1366 -15.7768 0.904405 Vertex 18171 9.98919 -16.3517 0.778813 Vertex 18172 10.109 -16.1931 0.983373 Vertex 18173 10.3638 -15.944 0.986792 Vertex 18174 10.5303 -15.8039 0.701681 Vertex 18175 10.6138 -16.1489 1.05509 Vertex 18176 10.722 -15.8624 0.745603 Vertex 18177 10.4132 -16.6995 0.8386 Vertex 18178 10.4741 -16.5166 1.06324 Vertex 18179 10.774 -16.671 0.838895 Vertex 18180 10.764 -16.5222 1.08109 Vertex 18181 10.7839 -16.1101 1.08887 Vertex 18182 10.8144 -15.7453 0.784409 Vertex 18183 11.4326 -16.1122 0.821016 Vertex 18184 10.9665 -15.4535 0.745558 Vertex 18185 11.3407 -15.9813 1.05063 Vertex 18186 11.1464 -15.6744 1.05348 Vertex 18187 10.7373 -14.165 1.29854 Vertex 18188 10.5066 -13.8777 1.40168 Vertex 18189 10.2245 -13.7315 1.33939 Vertex 18190 9.92991 -13.7297 1.11166 Vertex 18191 9.86131 -13.9392 0.675226 Vertex 18192 10.1099 -14.236 0.379308 Vertex 18193 10.4625 -14.4633 0.469301 Vertex 18194 10.7391 -14.4557 0.889807 Vertex 18195 10.6241 -13.9633 0.00584375 Vertex 18196 11.1581 -13.9078 0.43731 Vertex 18197 11.3934 -13.3657 0.915846 Vertex 18198 11.162 -12.9162 1.07866 Vertex 18199 11.1258 -13.6917 1.1809 Vertex 18200 10.881 -13.3193 1.29609 Vertex 18201 10.5565 -14.1913 0.264037 Vertex 18202 10.9821 -14.134 0.711664 Vertex 18203 10.2332 -14.7713 0.590915 Vertex 18204 10.3925 -14.8927 0.989847 Vertex 18205 10.3188 -14.751 1.40773 Vertex 18206 10.1275 -14.4928 1.55505 Vertex 18207 10.1898 -15.237 0.892284 Vertex 18208 10.0483 -15.2649 1.26801 Vertex 18209 9.81355 -15.0616 1.42939 Vertex 18210 10.1008 -14.9616 0.572117 Vertex 18211 9.61889 -15.42 1.09843 Vertex 18212 10.0461 -15.0624 0.36784 Vertex 18213 10.1161 -15.3859 0.649031 Vertex 18214 9.9133 -15.5344 0.966834 Vertex 18215 9.89133 -15.2748 0.149092 Vertex 18216 9.96201 -15.5958 0.406852 Vertex 18217 9.7683 -15.77 0.657895 Vertex 18218 9.48241 -15.657 0.775885 Vertex 18219 9.61719 -16.0295 0.318597 Vertex 18220 9.45055 -16.0974 0.331033 Vertex 18221 9.65376 -15.5894 -0.0803627 Vertex 18222 9.76008 -15.8427 0.141438 Vertex 18223 9.29239 -16.2505 0.125758 Vertex 18224 9.5474 -16.031 -0.056035 Vertex 18225 9.35159 -16.1076 -0.166424 Vertex 18226 9.36819 -15.8505 0.513461 Vertex 18227 9.07292 -16.2279 0.0439913 Vertex 18228 9.1735 -16.0921 -0.219445 Vertex 18229 9.09489 -16.2103 -0.077505 Vertex 18230 9.3181 -16.2304 0.006999 Vertex 18231 8.82605 -15.851 -0.048962 Vertex 18232 8.91232 -16.07 -0.098545 Vertex 18233 9.02527 -15.9827 -0.242689 Vertex 18234 8.88218 -16.0813 0.0222125 Vertex 18235 9.09592 -15.6415 0.481609 Vertex 18236 8.95834 -15.8103 -0.21775 Vertex 18237 8.97077 -15.587 -0.122059 Vertex 18238 8.79539 -15.8671 0.0694168 Vertex 18239 9.07124 -15.3097 0.0583655 Vertex 18240 9.37127 -15.3692 -0.116487 Vertex 18241 8.87201 -15.6516 0.264619 Vertex 18242 8.89811 -15.4755 0.235711 Vertex 18243 9.20276 -15.4418 0.743878 Vertex 18244 9.05319 -15.2195 0.575592 Vertex 18245 9.21774 -15.0195 0.317405 Vertex 18246 9.58252 -15.0339 0.109941 Vertex 18247 9.18684 -14.9737 0.883926 Vertex 18248 9.34092 -14.7878 0.559702 Vertex 18249 9.71384 -14.806 0.329717 Vertex 18250 9.33539 -15.2011 1.06673 Vertex 18251 9.76563 -14.6948 0.524091 Vertex 18252 9.53881 -14.8431 1.38594 Vertex 18253 9.33955 -14.7038 1.16095 Vertex 18254 9.42061 -14.6276 0.780656 Vertex 18255 9.88039 -14.3244 1.49783 Vertex 18256 9.63675 -14.2779 1.25422 Vertex 18257 9.61017 -14.3526 0.819498 Vertex 18258 9.8859 -14.5359 0.516849 Vertex 18259 9.91967 -13.5596 0.471917 Vertex 18260 10.1453 -13.9005 0.163674 Vertex 18261 10.4973 -13.1446 1.24238 Vertex 18262 10.091 -13.2334 0.987803 Vertex 18263 10.755 -12.7311 1.09297 Vertex 18264 10.2709 -12.8889 0.805286 Vertex 18265 9.96253 -13.3004 0.208908 Vertex 18266 10.1439 -13.6476 -0.0976915 Vertex 18267 13.1004 -1.27789 -4.01498 Vertex 18268 12.886 -1.28328 -4.51262 Vertex 18269 11.7565 -0.053086 -5.33972 Vertex 18270 11.0058 -1.5807 -5.83807 Vertex 18271 10.2 -1.71982 -5.63033 Vertex 18272 9.17786 -1.73246 -4.09787 Vertex 18273 9.23676 -1.77189 -3.16126 Vertex 18274 13.0344 -1.31754 -2.76257 Vertex 18275 13.271 -1.26805 -3.49451 Vertex 18276 9.67235 -1.74287 -2.51484 Vertex 18277 13.5677 -2.99752 -2.78114 Vertex 18278 13.6739 -2.99092 -3.57058 Vertex 18279 13.5154 -3.01941 -4.15966 Vertex 18280 13.2376 -3.04464 -4.68284 Vertex 18281 12.8458 -3.07153 -5.23806 Vertex 18282 12.1105 -3.13829 -5.70633 Vertex 18283 10.2643 -3.30124 -5.67486 Vertex 18284 11.1565 -3.22022 -5.87249 Vertex 18285 9.60971 -3.36069 -5.13828 Vertex 18286 9.16076 -3.39383 -4.10233 Vertex 18287 9.17723 -3.39233 -3.0696 Vertex 18288 9.59562 -3.36196 -2.35094 Vertex 18289 12.649 -3.08178 -1.25673 Vertex 18290 10.3578 -3.29276 -1.56723 Vertex 18291 11.5136 -3.1878 -1.0411 Vertex 18292 11.8244 5.69827 -2.20344 Vertex 18293 12.3165 1.66558 -2.1398 Vertex 18294 12.1413 4.30726 -2.47763 Vertex 18295 12.3001 2.84283 -2.45353 Vertex 18296 10.6498 0.386163 -1.28258 Vertex 18297 9.457 1.94182 -2.32586 Vertex 18298 9.94987 0.63454 -2.19166 Vertex 18299 8.81991 6.66755 -5.20468 Vertex 18300 9.78402 7.1004 -5.23355 Vertex 18301 12.5423 4.28274 -3.50999 Vertex 18302 12.1229 5.70163 -3.58774 Vertex 18303 10.7145 7.40039 -4.79212 Vertex 18304 11.5456 6.42766 -1.55983 Vertex 18305 11.1524 6.62862 -0.77483 Vertex 18306 9.12478 6.59367 -0.0737395 Vertex 18307 11.6627 6.66395 -3.78739 Vertex 18308 10.5675 6.52876 -0.16835 Vertex 18309 9.94073 6.39922 0.0880828 Vertex 18310 6.11907 9.56089 -3.37175 Vertex 18311 5.82284 10.1637 -3.36627 Vertex 18312 5.60588 10.8355 -2.83809 Vertex 18313 5.5542 11.0949 -1.96851 Vertex 18314 5.63511 10.6625 -0.997702 Vertex 18315 5.84843 9.96762 -0.588068 Vertex 18316 6.06284 9.50294 -0.61963 Vertex 18317 6.38532 8.82922 -1.15066 Vertex 18318 6.48077 8.74409 -2.20298 Vertex 18319 6.88983 7.79056 -2.38614 Vertex 18320 6.65356 8.5077 -3.91095 Vertex 18321 6.39291 9.46479 -4.30677 Vertex 18322 6.10634 10.416 -4.27228 Vertex 18323 5.99848 11.0527 -3.96152 Vertex 18324 5.97517 11.5641 -3.41872 Vertex 18325 5.94103 11.9253 -2.74821 Vertex 18326 5.93222 12.0185 -2.0202 Vertex 18327 5.95111 11.8187 -1.17266 Vertex 18328 6.00435 11.2556 -0.39285 Vertex 18329 6.05139 10.6315 0.0726425 Vertex 18330 6.18104 10.0778 0.242451 Vertex 18331 6.45438 9.35414 0.197318 Vertex 18332 6.65177 8.66411 -0.0448602 Vertex 18333 6.83835 8.19674 -0.507845 Vertex 18334 7.77418 7.98077 0.407758 Vertex 18335 7.82331 7.50604 -0.0503432 Vertex 18336 8.01689 7.02162 -0.561473 Vertex 18337 7.67474 6.7652 -1.29067 Vertex 18338 6.93157 6.70982 -2.48978 Vertex 18339 6.85036 6.6832 -3.4677 Vertex 18340 7.23651 7.003 -3.95128 Vertex 18341 7.45914 7.71223 -4.52092 Vertex 18342 7.25316 8.9343 -5.08468 Vertex 18343 6.9842 10.3175 -5.16499 Vertex 18344 6.96141 11.3398 -4.73659 Vertex 18345 7.00302 12.0996 -3.89524 Vertex 18346 7.0177 12.5287 -2.93033 Vertex 18347 6.96726 12.5423 -1.86492 Vertex 18348 7.00826 12.1758 -0.79186 Vertex 18349 7.18137 11.4455 0.0795598 Vertex 18350 7.31077 10.6037 0.725531 Vertex 18351 7.43107 9.79609 0.97339 Vertex 18352 7.6513 8.82825 0.83021 Vertex 18353 8.20213 12.847 -1.82478 Vertex 18354 8.35509 12.0113 -0.236835 Vertex 18355 9.56358 12.75 -1.70348 Vertex 18356 9.46615 12.3557 -0.68937 Vertex 18357 10.3009 3.13545 -5.64696 Vertex 18358 8.22326 10.2488 -5.71071 Vertex 18359 9.32421 10.4572 -5.49794 Vertex 18360 8.21864 11.5289 -5.11546 Vertex 18361 10.0776 10.4885 -4.98402 Vertex 18362 9.41036 11.6273 -4.59585 Vertex 18363 11.7578 6.67526 -1.61583 Vertex 18364 12.0686 7.12911 -1.6335 Vertex 18365 8.21787 12.3672 -4.12961 Vertex 18366 9.56128 12.4478 -3.40909 Vertex 18367 10.261 11.7371 -3.94428 Vertex 18368 10.9171 10.5833 -4.32566 Vertex 18369 11.7976 10.6985 -3.47308 Vertex 18370 11.1875 11.8218 -3.16831 Vertex 18371 10.4714 12.516 -2.65749 Vertex 18372 10.8573 12.2156 -1.44302 Vertex 18373 10.6301 11.7368 -0.474565 Vertex 18374 10.0242 11.0882 0.19323 Vertex 18375 8.72375 10.5277 1.00196 Vertex 18376 8.93427 9.48012 1.36132 Vertex 18377 9.88158 9.61864 0.974645 Vertex 18378 10.9321 10.1865 -0.0168955 Vertex 18379 11.5158 10.8367 -0.613921 Vertex 18380 11.7006 11.3764 -1.49091 Vertex 18381 11.6261 11.6653 -2.34873 Vertex 18382 12.151 10.6494 -2.51092 Vertex 18383 12.1937 10.4625 -1.65977 Vertex 18384 11.9937 9.94222 -0.874533 Vertex 18385 12.1761 9.22386 -1.16442 Vertex 18386 11.6934 8.54237 -0.69214 Vertex 18387 11.4666 9.30188 -0.361518 Vertex 18388 10.8577 8.79204 0.248396 Vertex 18389 11.0456 7.8947 -0.148587 Vertex 18390 10.1694 7.46266 0.497795 Vertex 18391 10.1125 8.45189 0.927315 Vertex 18392 9.10905 8.36449 1.15449 Vertex 18393 9.16212 7.42541 0.650841 Vertex 18394 9.13797 6.87751 0.178282 Vertex 18395 10.054 6.78269 0.193826 Vertex 18396 11.4127 7.09782 -0.897472 Vertex 18397 11.8608 7.77903 -1.07312 Vertex 18398 12.2672 8.52423 -1.45229 Vertex 18399 7.98261 6.1199 -4.46757 Vertex 18400 7.57954 5.3799 -4.1097 Vertex 18401 7.04025 5.50686 -3.39309 Vertex 18402 9.27155 -0.578494 -3.89942 Vertex 18403 9.06851 1.49103 -4.09319 Vertex 18404 9.62393 1.72725 -5.35943 Vertex 18405 9.29814 2.84396 -5.38697 Vertex 18406 8.99096 3.8587 -5.40845 Vertex 18407 8.31942 4.05206 -4.70059 Vertex 18408 8.80373 2.70623 -4.66188 Vertex 18409 9.28522 1.54833 -4.73996 Vertex 18410 12.3871 9.69858 -1.89119 Vertex 18411 12.3817 9.79827 -2.58612 Vertex 18412 12.1509 9.61238 -3.47594 Vertex 18413 12.3121 8.78421 -3.19684 Vertex 18414 12.4034 8.18661 -2.8659 Vertex 18415 12.4391 7.88813 -2.56383 Vertex 18416 12.4261 7.73809 -2.18611 Vertex 18417 12.3518 7.93463 -1.8011 Vertex 18418 12.016 6.52842 -2.25613 Vertex 18419 12.2074 6.94379 -2.19009 Vertex 18420 12.1678 7.10165 -2.72338 Vertex 18421 11.9611 7.41293 -3.25783 Vertex 18422 11.6912 8.12764 -3.81028 Vertex 18423 11.3847 9.25472 -4.27895 Vertex 18424 10.5483 9.08002 -4.92733 Vertex 18425 9.61543 8.92436 -5.53128 Vertex 18426 8.45123 8.61344 -5.64402 Vertex 18427 8.72736 7.24303 -5.2844 Vertex 18428 9.72503 7.66901 -5.28144 Vertex 18429 10.6807 7.94067 -4.76155 Vertex 18430 10.802 6.9269 -5.07103 Vertex 18431 11.013 6.05635 -5.46032 Vertex 18432 10.2583 5.81914 -5.65242 Vertex 18433 9.95757 6.6214 -5.39191 Vertex 18434 9.07364 4.72304 -5.54893 Vertex 18435 8.29345 5.13894 -4.91033 Vertex 18436 9.07994 6.16059 -5.37829 Vertex 18437 9.52238 5.3891 -5.67222 Vertex 18438 9.90912 4.6131 -5.8011 Vertex 18439 10.1639 3.85566 -5.73025 Vertex 18440 9.81481 3.03327 -5.64968 Vertex 18441 9.96877 1.93263 -5.60469 Vertex 18442 10.4098 2.01203 -5.61923 Vertex 18443 10.91 1.98294 -5.49251 Vertex 18444 10.8156 3.14982 -5.56649 Vertex 18445 10.746 3.92108 -5.71036 Vertex 18446 11.4206 3.04755 -5.27522 Vertex 18447 11.542 1.90027 -5.13227 Vertex 18448 12.1642 1.8363 -4.60538 Vertex 18449 12.1506 2.90673 -4.71611 Vertex 18450 11.4304 3.96211 -5.52761 Vertex 18451 10.557 4.85893 -5.79172 Vertex 18452 11.2857 5.01879 -5.65076 Vertex 18453 12.1331 4.00626 -5.06453 Vertex 18454 12.2231 5.41023 -4.7397 Vertex 18455 11.7136 6.43583 -4.28384 Vertex 18456 11.6629 6.91226 -3.55413 Vertex 18457 12.0271 6.6028 -2.91624 Vertex 18458 12.1911 5.78563 -3.05929 Vertex 18459 12.2079 5.60427 -4.0623 Vertex 18460 12.5457 4.11498 -4.48777 Vertex 18461 12.5431 4.30579 -3.11733 Vertex 18462 13.055 0.124344 -3.34166 Vertex 18463 12.8628 2.90856 -3.23455 Vertex 18464 12.6454 2.86853 -4.21671 Vertex 18465 12.7129 1.88 -4.09934 Vertex 18466 12.7648 1.00859 -4.06548 Vertex 18467 12.9254 1.94628 -3.65125 Vertex 18468 13.0025 1.95471 -3.2835 Vertex 18469 12.8688 1.06049 -2.80579 Vertex 18470 12.6159 2.85432 -2.80603 Vertex 18471 12.3601 4.31801 -2.70493 Vertex 18472 12.0618 5.7868 -2.4625 Vertex 18473 12.1267 4.35475 -1.86549 Vertex 18474 11.7801 5.65644 -1.6887 Vertex 18475 11.2851 6.24739 -0.800755 Vertex 18476 11.5907 5.50503 -0.834686 Vertex 18477 11.957 4.36765 -0.877484 Vertex 18478 12.1907 3.04716 -0.975502 Vertex 18479 12.3031 2.9447 -1.89254 Vertex 18480 12.816 1.87628 -2.85024 Vertex 18481 12.195 1.66857 -1.71136 Vertex 18482 12.0467 1.79203 -1.0355 Vertex 18483 11.4526 1.97112 -0.455892 Vertex 18484 11.5298 3.0589 -0.276378 Vertex 18485 11.2982 4.22608 -0.156718 Vertex 18486 10.9865 5.21487 -0.16543 Vertex 18487 10.7167 6.03987 -0.189058 Vertex 18488 7.48493 4.27988 -3.28396 Vertex 18489 8.3284 2.8119 -3.3708 Vertex 18490 8.90315 1.55454 -3.48047 Vertex 18491 9.16095 0.370506 -3.64874 Vertex 18492 9.22759 0.427015 -2.93112 Vertex 18493 8.86937 1.66852 -2.88309 Vertex 18494 8.2372 2.99113 -2.76435 Vertex 18495 7.38719 4.3969 -2.57454 Vertex 18496 6.95708 5.61133 -2.45541 Vertex 18497 7.66836 5.82568 -1.49647 Vertex 18498 7.85812 4.60145 -1.99019 Vertex 18499 8.57907 4.71156 -1.22214 Vertex 18500 8.68361 5.6283 -0.629883 Vertex 18501 8.97301 6.28735 -0.228739 Vertex 18502 9.38166 4.78956 -0.162517 Vertex 18503 8.79109 4.69891 -0.662952 Vertex 18504 9.33311 5.68296 -0.0859172 Vertex 18505 10.0286 5.88097 0.0392465 Vertex 18506 10.1698 4.97213 0.0230042 Vertex 18507 10.3354 3.99572 -0.000822751 Vertex 18508 10.5333 2.94471 -0.114048 Vertex 18509 10.131 1.75076 -0.493674 Vertex 18510 9.75014 2.72642 -0.327389 Vertex 18511 9.48741 3.75951 -0.249891 Vertex 18512 8.94183 3.55119 -0.885473 Vertex 18513 8.84974 3.43113 -1.64898 Vertex 18514 8.55651 3.23159 -2.36414 Vertex 18515 9.1981 1.81886 -2.55205 Vertex 18516 9.64395 0.539337 -2.47733 Vertex 18517 9.83272 0.910299 -1.67921 Vertex 18518 9.29169 2.06417 -1.79079 Vertex 18519 9.2781 2.37914 -0.91654 Vertex 18520 9.7782 1.44696 -0.931207 Vertex 18521 10.4019 1.01497 -0.819922 Vertex 18522 11.941 0.284381 -1.45505 Vertex 18523 11.5089 0.798964 -1.01812 Vertex 18524 11.0242 1.2432 -0.617314 Vertex 18525 10.6764 1.90981 -0.322584 Vertex 18526 11.7497 0.772597 -5.15725 Vertex 18527 12.3958 0.0647512 -4.80942 Vertex 18528 12.7383 0.110176 -4.20378 Vertex 18529 12.9395 0.118795 -3.75969 Vertex 18530 10.0414 0.755798 -5.65673 Vertex 18531 10.4996 0.802526 -5.75904 Vertex 18532 10.5736 -0.0186803 -5.97637 Vertex 18533 10.1647 -0.138435 -5.8571 Vertex 18534 11.0357 0.793427 -5.60884 Vertex 18535 11.0103 0.035611 -5.82806 Vertex 18536 10.7023 -0.500093 -5.90697 Vertex 18537 10.2442 -0.653035 -5.77807 Vertex 18538 9.76045 0.625324 -5.38845 Vertex 18539 9.91041 -0.267167 -5.55087 Vertex 18540 9.50125 -0.539148 -4.77721 Vertex 18541 9.83313 -0.545827 -2.52352 Vertex 18542 9.41206 -0.603658 -3.08341 Vertex 18543 11.0838 -0.313549 -1.68387 Vertex 18544 12.5534 0.948732 -2.18503 Vertex 18545 -13.1025 -7.35784 -0.943978 Vertex 18546 -13.5421 -7.42758 -1.74329 Vertex 18547 -13.7538 -7.57038 -2.74899 Vertex 18548 -13.6417 -7.71897 -3.64646 Vertex 18549 -13.364 -7.82059 -4.26865 Vertex 18550 -12.9384 -7.90506 -4.76262 Vertex 18551 -12.0394 -7.99735 -5.16004 Vertex 18552 -11.2425 -8.03479 -5.14209 Vertex 18553 -10.6374 -8.05259 -4.89826 Vertex 18554 -10.1928 -8.03866 -4.41246 Vertex 18555 -9.8491 -7.9559 -3.48014 Vertex 18556 -9.76086 -7.78526 -2.31905 Vertex 18557 -9.96051 -7.62602 -1.4107 Vertex 18558 -10.7288 -7.45608 -0.553293 Vertex 18559 -11.6434 -7.37679 -0.238446 Vertex 18560 -12.4594 -7.34876 -0.436159 Vertex 18561 -11.7896 -11.8802 -4.07341 Vertex 18562 -11.1491 -11.7737 -3.71983 Vertex 18563 -10.9749 -11.6973 -3.43716 Vertex 18564 -10.7801 -11.5411 -2.8697 Vertex 18565 -10.6759 -11.2841 -1.97366 Vertex 18566 -10.695 -11.0398 -1.14035 Vertex 18567 -10.8214 -10.8688 -0.5639 Vertex 18568 -11.4004 -10.7475 -0.186798 Vertex 18569 -12.516 -10.8553 -0.621467 Vertex 18570 -12.8068 -10.9606 -1.00652 Vertex 18571 -13.0657 -11.1242 -1.59101 Vertex 18572 -13.1135 -11.565 -3.09239 Vertex 18573 -12.9156 -11.7124 -3.55899 Vertex 18574 -12.6612 -11.8125 -3.8821 Vertex 18575 -12.2985 -11.8725 -4.06918 Vertex 18576 -11.4735 -4.10315 -0.744821 Vertex 18577 -10.2774 -4.21142 -1.28807 Vertex 18578 -9.47914 -4.28437 -2.15329 Vertex 18579 -9.13723 -4.31623 -2.92634 Vertex 18580 -9.13837 -4.31762 -3.99422 Vertex 18581 -9.55444 -4.28168 -5.07558 Vertex 18582 -10.204 -4.22412 -5.67452 Vertex 18583 -11.1136 -4.14281 -5.93614 Vertex 18584 -12.1895 -4.05081 -5.82181 Vertex 18585 -13.0645 -3.97154 -5.34253 Vertex 18586 -13.5825 -3.92656 -4.77754 Vertex 18587 -13.8964 -3.89735 -4.16426 Vertex 18588 -14.0549 -3.86698 -3.40357 Vertex 18589 -13.9443 -3.87204 -2.49111 Vertex 18590 -13.5253 -3.91326 -1.57008 Vertex 18591 -12.6593 -3.99378 -0.915817 Vertex 18592 -9.64318 3.7976 -5.69169 Vertex 18593 -11.5338 6.14394 -5.12819 Vertex 18594 -11.8958 5.19582 -5.2872 Vertex 18595 -11.2262 7.59892 -4.07675 Vertex 18596 -11.2233 7.24657 -4.19459 Vertex 18597 -11.281 6.85211 -4.62891 Vertex 18598 -8.37237 5.83045 -0.961041 Vertex 18599 -8.38366 4.70942 -1.59436 Vertex 18600 -9.35324 0.39072 -4.40684 Vertex 18601 -9.56227 -1.70986 -5.06498 Vertex 18602 -12.7913 0.078365 -2.68918 Vertex 18603 -12.3737 0.0366908 -1.97598 Vertex 18604 -12.5715 -1.28579 -5.11415 Vertex 18605 -11.8439 -1.36887 -5.6279 Vertex 18606 -12.2911 0.875386 -4.65041 Vertex 18607 -12.581 4.23568 -3.90392 Vertex 18608 -12.796 2.90844 -3.76776 Vertex 18609 -11.4171 0.769598 -5.38276 Vertex 18610 -11.3177 -0.0665562 -5.59856 Vertex 18611 -10.8528 -0.730875 -5.74626 Vertex 18612 -10.2073 -0.916196 -5.57373 Vertex 18613 -9.77114 -0.443646 -5.23669 Vertex 18614 -9.56376 0.497311 -4.97207 Vertex 18615 -13.0195 1.08208 -3.28269 Vertex 18616 -12.9658 1.06679 -3.6316 Vertex 18617 -10.3432 -1.625 -1.93535 Vertex 18618 -7.87638 4.20782 -3.93486 Vertex 18619 -8.54523 2.71339 -3.95669 Vertex 18620 -13.3227 -3.01756 -1.95422 Vertex 18621 -11.4228 -1.4737 -1.50183 Vertex 18622 -10.271 -0.439337 -2.12774 Vertex 18623 -8.87998 3.38405 -2.07176 Vertex 18624 -12.4346 -1.37052 -1.66267 Vertex 18625 -11.3471 -13.452 -2.39041 Vertex 18626 -12.1863 -12.221 -3.98251 Vertex 18627 -11.5876 -12.2183 -3.92813 Vertex 18628 -11.1381 -12.1574 -3.66624 Vertex 18629 -11.0138 -12.0896 -3.38462 Vertex 18630 -10.9801 -12.0494 -3.11634 Vertex 18631 -10.9863 -12.0136 -2.67947 Vertex 18632 -10.9178 -11.8528 -2.06159 Vertex 18633 -10.7922 -11.5529 -1.37788 Vertex 18634 -10.8196 -11.1861 -0.681255 Vertex 18635 -11.5154 -10.9334 -0.248133 Vertex 18636 -12.3867 -11.1479 -0.508677 Vertex 18637 -12.7676 -11.4731 -1.06526 Vertex 18638 -12.9743 -11.5999 -1.47478 Vertex 18639 -13.1125 -11.7344 -1.95413 Vertex 18640 -13.122 -11.893 -2.53304 Vertex 18641 -13.0244 -12.0225 -3.07355 Vertex 18642 -12.8668 -12.1089 -3.49668 Vertex 18643 -12.592 -12.1788 -3.80991 Vertex 18644 -10.8354 -12.1798 -1.11338 Vertex 18645 -12.5097 -14.4979 -3.53851 Vertex 18646 -12.2272 -14.4902 -3.7792 Vertex 18647 -12.5636 -12.6881 -0.072607 Vertex 18648 -11.4734 -11.1744 -0.0083525 Vertex 18649 -11.9314 -12.9608 0.459965 Vertex 18650 -11.7123 -12.2769 0.489795 Vertex 18651 -10.4542 -12.4724 -0.00621599 Vertex 18652 -10.4569 -13.0586 -0.317657 Vertex 18653 -10.9194 -12.0307 0.393587 Vertex 18654 -11.4935 -13.881 0.366874 Vertex 18655 -11.0004 -13.5131 -0.612485 Vertex 18656 -10.9104 -12.7653 -0.897707 Vertex 18657 -11.1032 -12.5709 -1.95012 Vertex 18658 -11.2781 -13.9977 -0.269237 Vertex 18659 -11.3357 -13.8055 -0.95472 Vertex 18660 -11.2915 -13.1571 -1.63271 Vertex 18661 -11.5442 -13.7986 -1.77411 Vertex 18662 -11.6501 -13.308 -3.9806 Vertex 18663 -11.1484 -13.326 -3.68343 Vertex 18664 -11.0698 -13.3175 -3.27508 Vertex 18665 -11.1502 -13.3223 -2.89018 Vertex 18666 -12.859 -12.838 -0.623879 Vertex 18667 -13.0284 -13.0145 -1.1157 Vertex 18668 -13.08 -13.148 -1.6543 Vertex 18669 -13.0312 -13.2726 -2.26413 Vertex 18670 -12.9643 -13.3003 -2.83039 Vertex 18671 -12.8382 -13.2684 -3.33371 Vertex 18672 -12.6068 -13.2418 -3.7045 Vertex 18673 -12.2783 -13.2508 -3.95553 Vertex 18674 -11.6919 -14.5153 -3.79762 Vertex 18675 -11.3206 -14.5503 -3.42855 Vertex 18676 -11.3659 -14.5737 -2.90454 Vertex 18677 -11.4914 -14.5168 -2.47125 Vertex 18678 -11.5798 -14.4828 -2.01429 Vertex 18679 -11.6748 -14.5323 -1.44185 Vertex 18680 -11.597 -14.4962 -0.854582 Vertex 18681 -11.877 -14.0123 0.572116 Vertex 18682 -12.4126 -13.7581 0.630126 Vertex 18683 -12.7107 -13.8058 0.315418 Vertex 18684 -10.9968 -15.9582 -3.06085 Vertex 18685 -11.198 -16.3366 -3.08137 Vertex 18686 -11.0038 -15.6504 -2.79049 Vertex 18687 -11.4205 -16.4787 -2.91349 Vertex 18688 -10.899 -15.7459 -2.72059 Vertex 18689 -10.7294 -16.045 -2.93117 Vertex 18690 -10.7437 -16.4283 -2.89438 Vertex 18691 -10.889 -16.5983 -2.69235 Vertex 18692 -10.4676 -16.3042 -2.76057 Vertex 18693 -10.5226 -16.4599 -2.5293 Vertex 18694 -10.8591 -15.7416 -2.68243 Vertex 18695 -10.6014 -15.9838 -2.85603 Vertex 18696 -10.8116 -15.6742 -2.6148 Vertex 18697 -10.5127 -15.7486 -2.76688 Vertex 18698 -10.2909 -15.8739 -2.6372 Vertex 18699 -10.2759 -15.9497 -2.39606 Vertex 18700 -10.4502 -15.5443 -2.68932 Vertex 18701 -10.1826 -15.4404 -2.59444 Vertex 18702 -10.0933 -15.3997 -2.36738 Vertex 18703 -10.7371 -15.6214 -2.54223 Vertex 18704 -10.2095 -15.1226 -2.37672 Vertex 18705 -10.7599 -15.5717 -2.53139 Vertex 18706 -10.5335 -15.4276 -2.6771 Vertex 18707 -10.3162 -15.2138 -2.59292 Vertex 18708 -10.8914 -15.5374 -2.49719 Vertex 18709 -10.7955 -15.3189 -2.64137 Vertex 18710 -10.7129 -15.0767 -2.58486 Vertex 18711 -10.6538 -14.9783 -2.37075 Vertex 18712 -11.1253 -15.0109 -2.59236 Vertex 18713 -11.1899 -14.9121 -2.51656 Vertex 18714 -11.1468 -15.4492 -2.47741 Vertex 18715 -11.1086 -15.2431 -2.5876 Vertex 18716 -11.4409 -14.8817 -2.47815 Vertex 18717 -11.3801 -15.1727 -2.5256 Vertex 18718 -11.5443 -15.1143 -2.43519 Vertex 18719 -10.9827 -14.9052 -2.37135 Vertex 18720 -11.5449 -14.8487 -2.33313 Vertex 18721 -11.6188 -15.0718 -2.32064 Vertex 18722 -11.599 -14.925 -2.33071 Vertex 18723 -11.4969 -14.96 -2.47699 Vertex 18724 -11.1357 -15.6372 -2.89337 Vertex 18725 -11.9023 -16.2281 -3.20322 Vertex 18726 -11.6371 -16.1477 -3.33377 Vertex 18727 -11.2902 -15.874 -3.23586 Vertex 18728 -11.9561 -16.1479 -2.60409 Vertex 18729 -12.0249 -16.2227 -2.94151 Vertex 18730 -11.1947 -15.6631 -2.45553 Vertex 18731 -11.4928 -14.9719 -2.00649 Vertex 18732 -11.5992 -14.9286 -2.15329 Vertex 18733 -11.6206 -15.0736 -2.1742 Vertex 18734 -11.5458 -14.8534 -2.14745 Vertex 18735 -10.9829 -14.9128 -2.1113 Vertex 18736 -11.5469 -15.1202 -2.05878 Vertex 18737 -11.3804 -15.1832 -1.9713 Vertex 18738 -11.4374 -14.8943 -2.00139 Vertex 18739 -11.1043 -15.2569 -1.91506 Vertex 18740 -11.1457 -15.4539 -2.1987 Vertex 18741 -11.1858 -14.9276 -1.96543 Vertex 18742 -11.1172 -15.03 -1.89791 Vertex 18743 -10.6534 -14.997 -2.11081 Vertex 18744 -10.7084 -15.1236 -1.91245 Vertex 18745 -10.8317 -15.3491 -1.92775 Vertex 18746 -10.9317 -15.5394 -2.19605 Vertex 18747 -10.3752 -15.2717 -1.91176 Vertex 18748 -10.6775 -15.4511 -1.94595 Vertex 18749 -10.8464 -15.5707 -2.21128 Vertex 18750 -10.211 -15.156 -2.1066 Vertex 18751 -10.8289 -15.6274 -2.21212 Vertex 18752 -10.128 -15.424 -2.09769 Vertex 18753 -10.3393 -15.4768 -1.9113 Vertex 18754 -10.6641 -15.5626 -1.94574 Vertex 18755 -10.3579 -15.9615 -2.16109 Vertex 18756 -10.5279 -15.9131 -1.97233 Vertex 18757 -10.7881 -15.7965 -1.98495 Vertex 18758 -10.932 -15.6947 -2.26276 Vertex 18759 -10.9502 -16.0333 -2.0339 Vertex 18760 -11.0129 -15.7663 -2.31413 Vertex 18761 -10.6385 -16.4733 -2.25892 Vertex 18762 -10.7785 -16.3424 -2.03634 Vertex 18763 -11.0139 -16.6066 -2.41707 Vertex 18764 -11.08 -16.4468 -2.15647 Vertex 18765 -11.1065 -16.0718 -2.10418 Vertex 18766 -11.0646 -15.7625 -2.35622 Vertex 18767 -11.5353 -16.4764 -2.67175 Vertex 18768 -11.1616 -15.6642 -2.43159 Vertex 18769 -11.5097 -16.3325 -2.38104 Vertex 18770 -11.3516 -15.9703 -2.24336 Vertex 18771 -11.956 -15.8201 -3.56362 Vertex 18772 -11.4747 -15.6676 -3.41945 Vertex 18773 -11.2107 -15.5877 -2.99704 Vertex 18774 -11.2458 -15.6671 -2.46591 Vertex 18775 -12.3404 -15.9201 -2.80141 Vertex 18776 -12.5751 -15.5236 -2.90041 Vertex 18777 -12.5518 -15.4379 -3.22346 Vertex 18778 -12.4392 -15.3648 -3.49695 Vertex 18779 -12.0964 -15.3385 -3.67683 Vertex 18780 -11.5803 -15.2444 -3.56044 Vertex 18781 -11.2949 -15.2411 -3.10928 Vertex 18782 -11.4131 -15.3051 -2.5748 Vertex 18783 -11.5431 -15.2373 -2.1767 Vertex 18784 -11.582 -15.1531 -1.75715 Vertex 18785 -12.7891 -15.3705 -1.58353 Vertex 18786 -12.87 -15.366 -1.90165 Vertex 18787 -12.8823 -15.3662 -2.20431 Vertex 18788 -12.7169 -15.4586 -2.54439 Vertex 18789 -12.4459 -15.8693 -2.42997 Vertex 18790 -11.3612 -15.6596 -2.06394 Vertex 18791 -11.4579 -15.5878 -1.62673 Vertex 18792 -12.5918 -15.7847 -1.45772 Vertex 18793 -11.0705 -16.0469 -2.15018 Vertex 18794 -11.3228 -16.3969 -2.0514 Vertex 18795 -10.9564 -15.7097 -1.91407 Vertex 18796 -11.486 -16.4877 -1.7814 Vertex 18797 -10.7841 -15.8511 -1.8701 Vertex 18798 -10.7454 -16.2098 -2.10725 Vertex 18799 -10.8174 -16.6033 -2.01791 Vertex 18800 -10.9184 -16.7206 -1.73974 Vertex 18801 -10.539 -16.5122 -1.99322 Vertex 18802 -10.5793 -16.6162 -1.72111 Vertex 18803 -10.6828 -15.82 -1.85022 Vertex 18804 -10.5789 -16.1553 -2.08275 Vertex 18805 -10.5744 -15.7435 -1.75501 Vertex 18806 -10.3753 -15.975 -1.97423 Vertex 18807 -10.206 -16.2719 -1.88607 Vertex 18808 -10.1854 -16.3863 -1.64082 Vertex 18809 -10.2582 -15.853 -1.87461 Vertex 18810 -9.99155 -16.0626 -1.8301 Vertex 18811 -9.90052 -16.1712 -1.60084 Vertex 18812 -10.4948 -15.7381 -1.65819 Vertex 18813 -9.81328 -15.7489 -1.59738 Vertex 18814 -10.242 -15.7272 -1.85467 Vertex 18815 -9.93756 -15.7487 -1.82056 Vertex 18816 -10.5015 -15.7063 -1.58097 Vertex 18817 -10.3636 -15.5425 -1.80887 Vertex 18818 -10.1907 -15.3366 -1.79442 Vertex 18819 -10.0963 -15.2179 -1.58259 Vertex 18820 -10.5935 -15.1006 -1.76774 Vertex 18821 -10.6356 -14.971 -1.68869 Vertex 18822 -10.6641 -15.5895 -1.51669 Vertex 18823 -10.612 -15.3817 -1.74171 Vertex 18824 -10.883 -14.8838 -1.62317 Vertex 18825 -10.8684 -15.2212 -1.6481 Vertex 18826 -11.0133 -15.1044 -1.53944 Vertex 18827 -10.3941 -14.9897 -1.5673 Vertex 18828 -10.9647 -14.8143 -1.46718 Vertex 18829 -11.0626 -15.0306 -1.41928 Vertex 18830 -11.0154 -14.8812 -1.45074 Vertex 18831 -10.9427 -14.9496 -1.60699 Vertex 18832 -11.1694 -15.6514 -1.9963 Vertex 18833 -12.183 -16.141 -1.90648 Vertex 18834 -11.9863 -16.1188 -2.21413 Vertex 18835 -11.6015 -15.8119 -1.24531 Vertex 18836 -12.0645 -16.0364 -1.34511 Vertex 18837 -12.1942 -16.0988 -1.62962 Vertex 18838 -11.2351 -15.5924 -1.57194 Vertex 18839 -10.877 -14.9071 -1.13038 Vertex 18840 -10.9905 -14.8651 -1.26965 Vertex 18841 -11.042 -15.0172 -1.2692 Vertex 18842 -10.9385 -14.7974 -1.27676 Vertex 18843 -10.3574 -14.966 -1.30089 Vertex 18844 -10.9608 -15.0704 -1.15816 Vertex 18845 -10.7902 -15.1706 -1.08066 Vertex 18846 -10.8164 -14.8408 -1.13977 Vertex 18847 -10.5161 -15.3197 -1.04575 Vertex 18848 -10.6248 -15.564 -1.23101 Vertex 18849 -10.5586 -14.9212 -1.12931 Vertex 18850 -10.4949 -15.0369 -1.05227 Vertex 18851 -10.0715 -15.2065 -1.32094 Vertex 18852 -10.1276 -15.309 -1.09862 Vertex 18853 -10.2977 -15.5194 -1.05895 Vertex 18854 -9.93571 -15.7574 -1.10366 Vertex 18855 -10.2373 -15.7433 -1.06725 Vertex 18856 -9.81345 -15.7523 -1.32339 Vertex 18857 -10.5098 -15.7458 -1.3029 Vertex 18858 -9.91256 -16.1723 -1.32138 Vertex 18859 -10.0239 -16.0657 -1.09825 Vertex 18860 -10.2935 -15.8626 -1.06694 Vertex 18861 -10.1895 -16.4011 -1.38876 Vertex 18862 -10.2508 -16.2724 -1.15405 Vertex 18863 -10.4485 -15.9535 -1.1048 Vertex 18864 -10.6069 -15.7363 -1.36554 Vertex 18865 -10.6541 -16.0833 -1.14012 Vertex 18866 -10.7163 -15.7891 -1.43293 Vertex 18867 -10.5853 -16.6146 -1.41847 Vertex 18868 -10.5868 -16.4694 -1.16523 Vertex 18869 -10.9309 -16.6904 -1.43431 Vertex 18870 -10.8566 -16.5196 -1.17413 Vertex 18871 -10.7927 -16.1149 -1.15175 Vertex 18872 -10.8046 -15.8097 -1.45295 Vertex 18873 -11.49 -16.4624 -1.52057 Vertex 18874 -10.9666 -15.67 -1.50975 Vertex 18875 -11.339 -16.3212 -1.26114 Vertex 18876 -11.0929 -15.9568 -1.21642 Vertex 18877 -11.0802 -16.1322 -0.99902 Vertex 18878 -11.2449 -16.4615 -0.886095 Vertex 18879 -11.0452 -15.7922 -0.779305 Vertex 18880 -11.3854 -16.5306 -0.614924 Vertex 18881 -10.7781 -15.9113 -0.717338 Vertex 18882 -10.5829 -16.2201 -0.944682 Vertex 18883 -10.4709 -16.5946 -0.842891 Vertex 18884 -10.5096 -16.7321 -0.559906 Vertex 18885 -10.2058 -16.4007 -0.832142 Vertex 18886 -10.1615 -16.5137 -0.553528 Vertex 18887 -10.6691 -15.8273 -0.707744 Vertex 18888 -10.4296 -16.0926 -0.933836 Vertex 18889 -10.6001 -15.6467 -0.672126 Vertex 18890 -10.3274 -15.766 -0.881313 Vertex 18891 -10.0352 -15.9367 -0.773641 Vertex 18892 -9.94275 -16.0216 -0.519014 Vertex 18893 -10.2512 -15.4845 -0.835863 Vertex 18894 -9.9344 -15.4799 -0.767644 Vertex 18895 -9.81588 -15.5045 -0.52904 Vertex 18896 -10.5204 -15.5345 -0.632155 Vertex 18897 -9.90921 -15.1923 -0.544236 Vertex 18898 -10.5249 -15.5196 -0.620766 Vertex 18899 -10.2851 -15.3973 -0.828256 Vertex 18900 -10.0091 -15.2537 -0.773507 Vertex 18901 -10.682 -15.4774 -0.60652 Vertex 18902 -10.5231 -15.2977 -0.822386 Vertex 18903 -10.3684 -15.0667 -0.792409 Vertex 18904 -10.307 -14.955 -0.573487 Vertex 18905 -10.7973 -14.9234 -0.826906 Vertex 18906 -10.8385 -14.8109 -0.751156 Vertex 18907 -10.9507 -15.344 -0.598269 Vertex 18908 -10.8457 -15.1661 -0.810516 Vertex 18909 -11.0848 -14.7131 -0.71654 Vertex 18910 -11.0965 -15.0185 -0.750699 Vertex 18911 -11.2445 -14.9108 -0.660091 Vertex 18912 -10.6192 -14.8591 -0.60039 Vertex 18913 -11.1827 -14.6482 -0.570409 Vertex 18914 -11.3047 -14.8442 -0.54512 Vertex 18915 -11.2405 -14.7094 -0.564255 Vertex 18916 -11.1514 -14.7723 -0.711783 Vertex 18917 -12.3729 -16.0511 -0.742073 Vertex 18918 -12.1743 -16.0921 -1.01741 Vertex 18919 -11.6612 -15.9038 -1.13893 Vertex 18920 -12.2223 -15.8842 -0.162675 Vertex 18921 -12.3932 -15.978 -0.462655 Vertex 18922 -11.1539 -14.758 -0.229375 Vertex 18923 -11.2414 -14.704 -0.380976 Vertex 18924 -11.3054 -14.8397 -0.393218 Vertex 18925 -11.1837 -14.6425 -0.377679 Vertex 18926 -10.6206 -14.8512 -0.330744 Vertex 18927 -11.2465 -14.8995 -0.274182 Vertex 18928 -11.0994 -15.0016 -0.17636 Vertex 18929 -11.0873 -14.6987 -0.227269 Vertex 18930 -10.8492 -15.1453 -0.106099 Vertex 18931 -10.9522 -15.3354 -0.30912 Vertex 18932 -10.8414 -14.7943 -0.184969 Vertex 18933 -10.8009 -14.9021 -0.102727 Vertex 18934 -10.314 -14.9505 -0.310009 Vertex 18935 -10.3883 -15.0557 -0.092117 Vertex 18936 -10.5459 -15.2866 -0.0672072 Vertex 18937 -10.6918 -15.4729 -0.288154 Vertex 18938 -10.0597 -15.254 -0.057314 Vertex 18939 -10.3367 -15.4097 -0.0388528 Vertex 18940 -10.5455 -15.5318 -0.273854 Vertex 18941 -9.92891 -15.1924 -0.270535 Vertex 18942 -10.5519 -15.5461 -0.275202 Vertex 18943 -9.8427 -15.5043 -0.250386 Vertex 18944 -10.0055 -15.4791 -0.0378115 Vertex 18945 -9.9664 -16.0113 -0.26971 Vertex 18946 -10.1042 -15.9065 -0.0448333 Vertex 18947 -10.4097 -15.7293 -0.0116942 Vertex 18948 -10.6369 -15.6301 -0.282012 Vertex 18949 -10.5333 -16.0172 0.0095315 Vertex 18950 -10.7164 -15.7942 -0.289906 Vertex 18951 -10.1992 -16.4902 -0.253124 Vertex 18952 -10.2998 -16.3348 -0.00620925 Vertex 18953 -10.549 -16.7038 -0.254832 Vertex 18954 -10.5701 -16.5142 -0.000441 Vertex 18955 -10.6919 -16.1283 0.009247 Vertex 18956 -10.8273 -15.8714 -0.300785 Vertex 18957 -11.4096 -16.4845 -0.35648 Vertex 18958 -11.0816 -15.7207 -0.379793 Vertex 18959 -11.3186 -16.3205 -0.103533 Vertex 18960 -11.1661 -15.9658 -0.0753888 Vertex 18961 -12.7091 -15.7601 -1.15624 Vertex 18962 -11.5681 -15.4715 -0.896087 Vertex 18963 -11.4882 -15.3116 -0.306367 Vertex 18964 -12.7708 -15.5395 -0.206832 Vertex 18965 -13.0047 -15.1441 -0.343456 Vertex 18966 -13.1093 -15.1863 -0.647911 Vertex 18967 -13.1008 -15.254 -0.96273 Vertex 18968 -12.9035 -15.3428 -1.27192 Vertex 18969 -11.6837 -15.1212 -1.13684 Vertex 18970 -11.5646 -14.9792 -0.559821 Vertex 18971 -11.3197 -14.7026 -0.0290285 Vertex 18972 -11.4275 -14.5129 0.481943 Vertex 18973 -12.0458 -14.4422 0.822399 Vertex 18974 -12.6509 -14.4707 0.780419 Vertex 18975 -12.878 -14.6291 0.480007 Vertex 18976 -12.902 -14.8296 0.200615 Vertex 18977 -12.8985 -15.0146 -0.0649993 Vertex 18978 -12.6452 -15.4123 0.0871005 Vertex 18979 -11.2845 -15.1187 0.163624 Vertex 18980 -11.3496 -14.9318 0.660387 Vertex 18981 -11.9235 -14.9134 0.969897 Vertex 18982 -12.549 -15.0112 0.925601 Vertex 18983 -10.9702 -15.8204 0.133448 Vertex 18984 -11.2105 -16.0929 0.275193 Vertex 18985 -10.885 -15.5231 0.346337 Vertex 18986 -11.397 -16.1474 0.566383 Vertex 18987 -10.7509 -15.789 0.371671 Vertex 18988 -10.6477 -16.1966 0.165955 Vertex 18989 -10.652 -16.5919 0.27984 Vertex 18990 -10.7346 -16.6978 0.547815 Vertex 18991 -10.3645 -16.6251 0.280243 Vertex 18992 -10.3735 -16.7359 0.551247 Vertex 18993 -10.6657 -15.9243 0.333245 Vertex 18994 -10.4875 -16.2829 0.147081 Vertex 18995 -10.4873 -15.8824 0.319906 Vertex 18996 -10.2663 -16.1178 0.135738 Vertex 18997 -10.0261 -16.3381 0.269989 Vertex 18998 -9.96076 -16.4013 0.534708 Vertex 18999 -10.0519 -15.9865 0.124268 Vertex 19000 -9.72909 -16.0501 0.213149 Vertex 19001 -9.61791 -16.0396 0.458633 Vertex 19002 -10.308 -15.8562 0.304009 Vertex 19003 -9.61853 -15.717 0.382146 Vertex 19004 -10.2988 -15.8395 0.303067 Vertex 19005 -10.0253 -15.8865 0.109378 Vertex 19006 -9.7171 -15.8052 0.161324 Vertex 19007 -10.4233 -15.7703 0.285552 Vertex 19008 -10.2001 -15.7001 0.0669152 Vertex 19009 -9.99401 -15.5052 0.0762488 Vertex 19010 -9.92558 -15.3682 0.279536 Vertex 19011 -10.3433 -15.25 -0.0247208 Vertex 19012 -10.3584 -15.1185 0.0279298 Vertex 19013 -10.6358 -15.5652 0.233961 Vertex 19014 -10.4613 -15.4638 0.017405 Vertex 19015 -10.5682 -14.9536 0.0122238 Vertex 19016 -10.6638 -15.2459 0.0188735 Vertex 19017 -10.7835 -15.0877 0.0710203 Vertex 19018 -10.18 -15.1952 0.214267 Vertex 19019 -10.6585 -14.8391 0.131917 Vertex 19020 -10.8339 -14.9873 0.165544 Vertex 19021 -10.7319 -14.8804 0.137816 Vertex 19022 -10.6492 -14.9909 0.0151775 Vertex 19023 -11.1035 -15.3172 0.234854 Vertex 19024 -12.1639 -15.5774 0.496322 Vertex 19025 -11.9913 -15.648 0.207423 Vertex 19026 -11.5947 -15.1995 0.99252 Vertex 19027 -12.0681 -15.3513 1.00302 Vertex 19028 -12.2066 -15.5005 0.76414 Vertex 19029 -11.1562 -15.1708 0.667344 Vertex 19030 -10.6999 -14.8882 0.484834 Vertex 19031 -10.7511 -14.8414 0.316252 Vertex 19032 -10.8499 -14.955 0.313433 Vertex 19033 -10.6788 -14.7981 0.319552 Vertex 19034 -10.2084 -15.1379 0.476786 Vertex 19035 -10.824 -15.0056 0.446729 Vertex 19036 -10.7242 -15.1237 0.578035 Vertex 19037 -10.6197 -14.8495 0.48856 Vertex 19038 -10.5354 -15.3139 0.703206 Vertex 19039 -10.6662 -15.5037 0.515468 Vertex 19040 -10.418 -14.9981 0.579151 Vertex 19041 -10.4195 -15.0959 0.680315 Vertex 19042 -9.95463 -15.3103 0.535608 Vertex 19043 -10.0716 -15.3507 0.756744 Vertex 19044 -10.2841 -15.5329 0.800631 Vertex 19045 -10.4588 -15.6997 0.594845 Vertex 19046 -9.80173 -15.6349 0.855183 Vertex 19047 -10.3363 -15.7547 0.637527 Vertex 19048 -9.65091 -15.6518 0.647295 Vertex 19049 -10.3436 -15.7624 0.647699 Vertex 19050 -9.64877 -15.9687 0.728215 Vertex 19051 -9.80899 -15.8633 0.919177 Vertex 19052 -10.1366 -15.7768 0.904405 Vertex 19053 -9.98919 -16.3517 0.778813 Vertex 19054 -10.109 -16.1931 0.983373 Vertex 19055 -10.3638 -15.944 0.986792 Vertex 19056 -10.5303 -15.8039 0.701681 Vertex 19057 -10.6138 -16.1489 1.05509 Vertex 19058 -10.722 -15.8625 0.745602 Vertex 19059 -10.4132 -16.6995 0.8386 Vertex 19060 -10.4741 -16.5166 1.06324 Vertex 19061 -10.774 -16.671 0.838895 Vertex 19062 -10.764 -16.5222 1.08109 Vertex 19063 -10.7839 -16.1101 1.08887 Vertex 19064 -10.8144 -15.7453 0.784409 Vertex 19065 -11.4326 -16.1122 0.821016 Vertex 19066 -10.9664 -15.4535 0.745558 Vertex 19067 -11.3407 -15.9813 1.05063 Vertex 19068 -11.1464 -15.6744 1.05348 Vertex 19069 -10.7373 -14.165 1.29854 Vertex 19070 -10.5066 -13.8777 1.40168 Vertex 19071 -10.2245 -13.7315 1.33939 Vertex 19072 -9.92991 -13.7297 1.11166 Vertex 19073 -9.86131 -13.9392 0.675226 Vertex 19074 -10.1099 -14.236 0.379308 Vertex 19075 -10.4625 -14.4633 0.469302 Vertex 19076 -10.7391 -14.4557 0.889807 Vertex 19077 -10.624 -13.9633 0.00584375 Vertex 19078 -11.1581 -13.9078 0.43731 Vertex 19079 -11.3934 -13.3657 0.915846 Vertex 19080 -11.162 -12.9162 1.07866 Vertex 19081 -11.1258 -13.6917 1.1809 Vertex 19082 -10.881 -13.3193 1.29609 Vertex 19083 -10.5565 -14.1913 0.264037 Vertex 19084 -10.9821 -14.134 0.711664 Vertex 19085 -10.2332 -14.7713 0.590915 Vertex 19086 -10.3925 -14.8927 0.989847 Vertex 19087 -10.3188 -14.751 1.40773 Vertex 19088 -10.1275 -14.4929 1.55505 Vertex 19089 -10.1898 -15.237 0.892284 Vertex 19090 -10.0483 -15.265 1.26801 Vertex 19091 -9.81355 -15.0616 1.42939 Vertex 19092 -10.1008 -14.9615 0.572117 Vertex 19093 -9.61889 -15.42 1.09843 Vertex 19094 -10.0461 -15.0624 0.36784 Vertex 19095 -10.1161 -15.3859 0.649031 Vertex 19096 -9.9133 -15.5344 0.966834 Vertex 19097 -9.89133 -15.2748 0.149092 Vertex 19098 -9.96201 -15.5958 0.406852 Vertex 19099 -9.76829 -15.77 0.657895 Vertex 19100 -9.48241 -15.657 0.775885 Vertex 19101 -9.61719 -16.0295 0.318597 Vertex 19102 -9.45055 -16.0974 0.331033 Vertex 19103 -9.65376 -15.5894 -0.0803627 Vertex 19104 -9.76008 -15.8427 0.141438 Vertex 19105 -9.29239 -16.2505 0.125758 Vertex 19106 -9.5474 -16.031 -0.056035 Vertex 19107 -9.35159 -16.1076 -0.166424 Vertex 19108 -9.36819 -15.8505 0.513461 Vertex 19109 -9.07292 -16.2279 0.0439912 Vertex 19110 -9.1735 -16.092 -0.219445 Vertex 19111 -9.09489 -16.2103 -0.077505 Vertex 19112 -9.3181 -16.2304 0.006999 Vertex 19113 -8.82605 -15.851 -0.048962 Vertex 19114 -8.91232 -16.07 -0.098545 Vertex 19115 -9.02527 -15.9827 -0.242689 Vertex 19116 -8.88218 -16.0813 0.0222125 Vertex 19117 -9.09592 -15.6415 0.481609 Vertex 19118 -8.95834 -15.8103 -0.21775 Vertex 19119 -8.97077 -15.587 -0.122059 Vertex 19120 -8.79539 -15.8671 0.0694167 Vertex 19121 -9.07124 -15.3097 0.0583655 Vertex 19122 -9.37127 -15.3692 -0.116487 Vertex 19123 -8.87201 -15.6516 0.264619 Vertex 19124 -8.89811 -15.4755 0.235711 Vertex 19125 -9.20276 -15.4418 0.743878 Vertex 19126 -9.05319 -15.2195 0.575592 Vertex 19127 -9.21774 -15.0195 0.317405 Vertex 19128 -9.58252 -15.0339 0.109941 Vertex 19129 -9.18684 -14.9737 0.883926 Vertex 19130 -9.34092 -14.7878 0.559702 Vertex 19131 -9.71384 -14.806 0.329717 Vertex 19132 -9.33539 -15.2011 1.06673 Vertex 19133 -9.76563 -14.6948 0.524091 Vertex 19134 -9.53881 -14.8431 1.38593 Vertex 19135 -9.33956 -14.7038 1.16095 Vertex 19136 -9.42061 -14.6276 0.780656 Vertex 19137 -9.88039 -14.3244 1.49782 Vertex 19138 -9.63675 -14.2779 1.25422 Vertex 19139 -9.61017 -14.3526 0.819497 Vertex 19140 -9.8859 -14.5359 0.516849 Vertex 19141 -9.91967 -13.5596 0.471917 Vertex 19142 -10.1453 -13.9005 0.163673 Vertex 19143 -10.4973 -13.1446 1.24238 Vertex 19144 -10.091 -13.2334 0.987803 Vertex 19145 -10.755 -12.7311 1.09297 Vertex 19146 -10.2709 -12.8889 0.805286 Vertex 19147 -9.96253 -13.3004 0.208908 Vertex 19148 -10.1439 -13.6476 -0.0976915 Vertex 19149 -13.1004 -1.27789 -4.01498 Vertex 19150 -12.886 -1.28328 -4.51262 Vertex 19151 -11.7565 -0.053086 -5.33972 Vertex 19152 -11.0058 -1.5807 -5.83806 Vertex 19153 -10.2 -1.71982 -5.63033 Vertex 19154 -9.17786 -1.73246 -4.09787 Vertex 19155 -9.23676 -1.77189 -3.16126 Vertex 19156 -13.0344 -1.31754 -2.76256 Vertex 19157 -13.271 -1.26805 -3.49451 Vertex 19158 -9.67235 -1.74287 -2.51484 Vertex 19159 -13.5677 -2.99752 -2.78114 Vertex 19160 -13.6739 -2.99092 -3.57058 Vertex 19161 -13.5154 -3.01941 -4.15966 Vertex 19162 -13.2376 -3.04464 -4.68284 Vertex 19163 -12.8458 -3.07153 -5.23806 Vertex 19164 -12.1105 -3.13829 -5.70633 Vertex 19165 -10.2643 -3.30124 -5.67486 Vertex 19166 -11.1565 -3.22022 -5.87249 Vertex 19167 -9.60971 -3.36069 -5.13828 Vertex 19168 -9.16076 -3.39383 -4.10233 Vertex 19169 -9.17723 -3.39233 -3.0696 Vertex 19170 -9.59562 -3.36196 -2.35094 Vertex 19171 -12.649 -3.08178 -1.25673 Vertex 19172 -10.3578 -3.29276 -1.56723 Vertex 19173 -11.5136 -3.1878 -1.0411 Vertex 19174 -11.8244 5.69827 -2.20344 Vertex 19175 -12.3165 1.66558 -2.1398 Vertex 19176 -12.1413 4.30726 -2.47764 Vertex 19177 -12.3001 2.84283 -2.45353 Vertex 19178 -10.6498 0.386163 -1.28258 Vertex 19179 -9.457 1.94182 -2.32586 Vertex 19180 -9.94987 0.63454 -2.19166 Vertex 19181 -8.81991 6.66755 -5.20468 Vertex 19182 -9.78402 7.1004 -5.23355 Vertex 19183 -12.5423 4.28274 -3.50999 Vertex 19184 -12.1229 5.70163 -3.58774 Vertex 19185 -10.7145 7.40039 -4.79212 Vertex 19186 -11.5457 6.42766 -1.55983 Vertex 19187 -11.1524 6.62862 -0.77483 Vertex 19188 -9.12478 6.59368 -0.0737395 Vertex 19189 -11.6627 6.66395 -3.78739 Vertex 19190 -10.5676 6.52876 -0.16835 Vertex 19191 -9.94073 6.39922 0.0880827 Vertex 19192 -6.11907 9.56089 -3.37175 Vertex 19193 -5.82284 10.1637 -3.36627 Vertex 19194 -5.60588 10.8356 -2.83809 Vertex 19195 -5.5542 11.0949 -1.96851 Vertex 19196 -5.63511 10.6625 -0.997702 Vertex 19197 -5.84843 9.96762 -0.588068 Vertex 19198 -6.06284 9.50294 -0.61963 Vertex 19199 -6.38532 8.82922 -1.15066 Vertex 19200 -6.48077 8.74409 -2.20298 Vertex 19201 -6.88983 7.79056 -2.38614 Vertex 19202 -6.65356 8.5077 -3.91095 Vertex 19203 -6.39292 9.46479 -4.30677 Vertex 19204 -6.10634 10.416 -4.27228 Vertex 19205 -5.99848 11.0527 -3.96152 Vertex 19206 -5.97517 11.5641 -3.41872 Vertex 19207 -5.94103 11.9253 -2.74821 Vertex 19208 -5.93222 12.0185 -2.0202 Vertex 19209 -5.95111 11.8187 -1.17266 Vertex 19210 -6.00435 11.2556 -0.39285 Vertex 19211 -6.05139 10.6315 0.0726425 Vertex 19212 -6.18104 10.0778 0.242451 Vertex 19213 -6.45438 9.35414 0.197318 Vertex 19214 -6.65177 8.66411 -0.0448602 Vertex 19215 -6.83835 8.19674 -0.507845 Vertex 19216 -7.77418 7.98077 0.407758 Vertex 19217 -7.82332 7.50604 -0.0503433 Vertex 19218 -8.01689 7.02162 -0.561474 Vertex 19219 -7.67474 6.7652 -1.29067 Vertex 19220 -6.93157 6.70982 -2.48978 Vertex 19221 -6.85036 6.6832 -3.4677 Vertex 19222 -7.2365 7.003 -3.95128 Vertex 19223 -7.45914 7.71223 -4.52092 Vertex 19224 -7.25316 8.9343 -5.08468 Vertex 19225 -6.9842 10.3175 -5.16499 Vertex 19226 -6.96141 11.3398 -4.73659 Vertex 19227 -7.00302 12.0996 -3.89524 Vertex 19228 -7.0177 12.5287 -2.93033 Vertex 19229 -6.96726 12.5423 -1.86492 Vertex 19230 -7.00826 12.1758 -0.79186 Vertex 19231 -7.18137 11.4455 0.0795598 Vertex 19232 -7.31078 10.6037 0.725531 Vertex 19233 -7.43107 9.79609 0.97339 Vertex 19234 -7.6513 8.82825 0.83021 Vertex 19235 -8.20213 12.847 -1.82478 Vertex 19236 -8.35509 12.0113 -0.236835 Vertex 19237 -9.56358 12.75 -1.70348 Vertex 19238 -9.46615 12.3557 -0.68937 Vertex 19239 -10.3009 3.13545 -5.64696 Vertex 19240 -8.22326 10.2488 -5.71071 Vertex 19241 -9.32421 10.4572 -5.49794 Vertex 19242 -8.21864 11.5289 -5.11546 Vertex 19243 -10.0776 10.4885 -4.98402 Vertex 19244 -9.41036 11.6273 -4.59585 Vertex 19245 -11.7577 6.67526 -1.61583 Vertex 19246 -12.0686 7.12911 -1.6335 Vertex 19247 -8.21787 12.3672 -4.12961 Vertex 19248 -9.56128 12.4478 -3.40908 Vertex 19249 -10.261 11.7372 -3.94428 Vertex 19250 -10.9171 10.5833 -4.32566 Vertex 19251 -11.7976 10.6985 -3.47308 Vertex 19252 -11.1874 11.8218 -3.16832 Vertex 19253 -10.4714 12.5159 -2.65749 Vertex 19254 -10.8573 12.2156 -1.44302 Vertex 19255 -10.6301 11.7368 -0.474565 Vertex 19256 -10.0242 11.0882 0.19323 Vertex 19257 -8.72375 10.5277 1.00196 Vertex 19258 -8.93427 9.48012 1.36132 Vertex 19259 -9.88158 9.61864 0.974645 Vertex 19260 -10.9321 10.1865 -0.0168955 Vertex 19261 -11.5158 10.8367 -0.613921 Vertex 19262 -11.7006 11.3764 -1.49091 Vertex 19263 -11.6262 11.6653 -2.34872 Vertex 19264 -12.151 10.6494 -2.51092 Vertex 19265 -12.1937 10.4625 -1.65977 Vertex 19266 -11.9937 9.94222 -0.874533 Vertex 19267 -12.1761 9.22387 -1.16442 Vertex 19268 -11.6934 8.54237 -0.69214 Vertex 19269 -11.4666 9.30188 -0.361518 Vertex 19270 -10.8577 8.79204 0.248396 Vertex 19271 -11.0456 7.8947 -0.148587 Vertex 19272 -10.1694 7.46266 0.497795 Vertex 19273 -10.1125 8.45189 0.927316 Vertex 19274 -9.10905 8.36449 1.15449 Vertex 19275 -9.16212 7.42541 0.650841 Vertex 19276 -9.13798 6.87751 0.178281 Vertex 19277 -10.054 6.78269 0.193826 Vertex 19278 -11.4127 7.09782 -0.897472 Vertex 19279 -11.8608 7.77903 -1.07312 Vertex 19280 -12.2672 8.52423 -1.45229 Vertex 19281 -7.98261 6.1199 -4.46757 Vertex 19282 -7.57954 5.3799 -4.1097 Vertex 19283 -7.04025 5.50686 -3.39309 Vertex 19284 -9.27155 -0.578494 -3.89942 Vertex 19285 -9.06851 1.49103 -4.09319 Vertex 19286 -9.62393 1.72725 -5.35943 Vertex 19287 -9.29814 2.84396 -5.38697 Vertex 19288 -8.99096 3.8587 -5.40845 Vertex 19289 -8.31942 4.05206 -4.70059 Vertex 19290 -8.80373 2.70623 -4.66188 Vertex 19291 -9.28522 1.54833 -4.73996 Vertex 19292 -12.3871 9.69858 -1.89119 Vertex 19293 -12.3817 9.79827 -2.58612 Vertex 19294 -12.1509 9.61238 -3.47594 Vertex 19295 -12.3121 8.78421 -3.19684 Vertex 19296 -12.4034 8.18661 -2.8659 Vertex 19297 -12.4391 7.88813 -2.56383 Vertex 19298 -12.4261 7.73809 -2.18611 Vertex 19299 -12.3518 7.93463 -1.8011 Vertex 19300 -12.016 6.52842 -2.25613 Vertex 19301 -12.2074 6.94379 -2.19009 Vertex 19302 -12.1678 7.10165 -2.72338 Vertex 19303 -11.9611 7.41293 -3.25784 Vertex 19304 -11.6911 8.12764 -3.81028 Vertex 19305 -11.3847 9.25472 -4.27895 Vertex 19306 -10.5483 9.08002 -4.92733 Vertex 19307 -9.61543 8.92436 -5.53128 Vertex 19308 -8.45123 8.61344 -5.64402 Vertex 19309 -8.72736 7.24303 -5.2844 Vertex 19310 -9.72503 7.66901 -5.28144 Vertex 19311 -10.6807 7.94067 -4.76155 Vertex 19312 -10.802 6.9269 -5.07103 Vertex 19313 -11.013 6.05635 -5.46032 Vertex 19314 -10.2583 5.81914 -5.65242 Vertex 19315 -9.95757 6.6214 -5.39191 Vertex 19316 -9.07364 4.72304 -5.54893 Vertex 19317 -8.29345 5.13894 -4.91033 Vertex 19318 -9.07994 6.16059 -5.37829 Vertex 19319 -9.52238 5.3891 -5.67222 Vertex 19320 -9.90912 4.6131 -5.8011 Vertex 19321 -10.1639 3.85566 -5.73025 Vertex 19322 -9.81481 3.03327 -5.64968 Vertex 19323 -9.96877 1.93263 -5.60469 Vertex 19324 -10.4098 2.01203 -5.61923 Vertex 19325 -10.91 1.98294 -5.49251 Vertex 19326 -10.8156 3.14982 -5.56648 Vertex 19327 -10.746 3.92108 -5.71036 Vertex 19328 -11.4206 3.04754 -5.27522 Vertex 19329 -11.542 1.90027 -5.13227 Vertex 19330 -12.1642 1.8363 -4.60538 Vertex 19331 -12.1506 2.90673 -4.71611 Vertex 19332 -11.4304 3.96211 -5.52761 Vertex 19333 -10.557 4.85893 -5.79172 Vertex 19334 -11.2857 5.01879 -5.65076 Vertex 19335 -12.1332 4.00626 -5.06453 Vertex 19336 -12.2231 5.41023 -4.7397 Vertex 19337 -11.7136 6.43583 -4.28383 Vertex 19338 -11.6629 6.91226 -3.55412 Vertex 19339 -12.0271 6.6028 -2.91624 Vertex 19340 -12.1911 5.78563 -3.05929 Vertex 19341 -12.2079 5.60427 -4.0623 Vertex 19342 -12.5457 4.11498 -4.48777 Vertex 19343 -12.5431 4.30579 -3.11733 Vertex 19344 -13.055 0.124344 -3.34167 Vertex 19345 -12.8628 2.90857 -3.23455 Vertex 19346 -12.6454 2.86853 -4.21671 Vertex 19347 -12.7129 1.88 -4.09934 Vertex 19348 -12.7648 1.00859 -4.06548 Vertex 19349 -12.9254 1.94628 -3.65125 Vertex 19350 -13.0025 1.95471 -3.2835 Vertex 19351 -12.8688 1.06049 -2.80579 Vertex 19352 -12.6159 2.85433 -2.80603 Vertex 19353 -12.3601 4.318 -2.70493 Vertex 19354 -12.0618 5.7868 -2.46249 Vertex 19355 -12.1267 4.35475 -1.86549 Vertex 19356 -11.7801 5.65644 -1.6887 Vertex 19357 -11.2851 6.24739 -0.800755 Vertex 19358 -11.5907 5.50503 -0.834686 Vertex 19359 -11.957 4.36765 -0.877484 Vertex 19360 -12.1907 3.04716 -0.975502 Vertex 19361 -12.3031 2.9447 -1.89254 Vertex 19362 -12.816 1.87628 -2.85024 Vertex 19363 -12.195 1.66857 -1.71136 Vertex 19364 -12.0467 1.79203 -1.0355 Vertex 19365 -11.4526 1.97111 -0.455892 Vertex 19366 -11.5298 3.05891 -0.276379 Vertex 19367 -11.2982 4.22608 -0.156719 Vertex 19368 -10.9865 5.21487 -0.16543 Vertex 19369 -10.7167 6.03988 -0.189058 Vertex 19370 -7.48493 4.27987 -3.28396 Vertex 19371 -8.3284 2.8119 -3.3708 Vertex 19372 -8.90315 1.55454 -3.48047 Vertex 19373 -9.16095 0.370506 -3.64874 Vertex 19374 -9.22759 0.427015 -2.93112 Vertex 19375 -8.86937 1.66852 -2.88309 Vertex 19376 -8.2372 2.99113 -2.76435 Vertex 19377 -7.38719 4.3969 -2.57454 Vertex 19378 -6.95708 5.61134 -2.45541 Vertex 19379 -7.66836 5.82568 -1.49647 Vertex 19380 -7.85812 4.60145 -1.99019 Vertex 19381 -8.57907 4.71156 -1.22214 Vertex 19382 -8.68361 5.6283 -0.629883 Vertex 19383 -8.97301 6.28735 -0.228739 Vertex 19384 -9.38166 4.78956 -0.162516 Vertex 19385 -8.79109 4.69891 -0.662952 Vertex 19386 -9.33311 5.68296 -0.0859172 Vertex 19387 -10.0286 5.88097 0.0392465 Vertex 19388 -10.1698 4.97213 0.0230042 Vertex 19389 -10.3354 3.99572 -0.000822751 Vertex 19390 -10.5333 2.94471 -0.114048 Vertex 19391 -10.131 1.75076 -0.493674 Vertex 19392 -9.75014 2.72642 -0.327389 Vertex 19393 -9.48741 3.75951 -0.249891 Vertex 19394 -8.94183 3.55119 -0.885472 Vertex 19395 -8.84974 3.43113 -1.64899 Vertex 19396 -8.55651 3.23159 -2.36414 Vertex 19397 -9.1981 1.81886 -2.55205 Vertex 19398 -9.64395 0.539337 -2.47733 Vertex 19399 -9.83272 0.910299 -1.67921 Vertex 19400 -9.29169 2.06416 -1.79079 Vertex 19401 -9.2781 2.37914 -0.91654 Vertex 19402 -9.7782 1.44696 -0.931207 Vertex 19403 -10.4019 1.01497 -0.819922 Vertex 19404 -11.941 0.284381 -1.45505 Vertex 19405 -11.5088 0.798963 -1.01813 Vertex 19406 -11.0242 1.2432 -0.617314 Vertex 19407 -10.6764 1.9098 -0.322584 Vertex 19408 -11.7497 0.772597 -5.15725 Vertex 19409 -12.3958 0.0647512 -4.80942 Vertex 19410 -12.7383 0.110176 -4.20378 Vertex 19411 -12.9395 0.118795 -3.75969 Vertex 19412 -10.0414 0.755798 -5.65673 Vertex 19413 -10.4996 0.802526 -5.75904 Vertex 19414 -10.5736 -0.0186802 -5.97637 Vertex 19415 -10.1647 -0.138434 -5.8571 Vertex 19416 -11.0358 0.793427 -5.60884 Vertex 19417 -11.0103 0.035611 -5.82806 Vertex 19418 -10.7023 -0.500093 -5.90697 Vertex 19419 -10.2442 -0.653035 -5.77807 Vertex 19420 -9.76045 0.625324 -5.38845 Vertex 19421 -9.9104 -0.267167 -5.55087 Vertex 19422 -9.50125 -0.539148 -4.77721 Vertex 19423 -9.83313 -0.545827 -2.52352 Vertex 19424 -9.41206 -0.603658 -3.08341 Vertex 19425 -11.0838 -0.313549 -1.68387 Vertex 19426 -12.5534 0.948732 -2.18503 Vertex 19427 7.99148 -42.9272 0.632355 Vertex 19428 7.40007 -42.4 0.882754 Vertex 19429 6.30814 -42.2352 1.34406 Vertex 19430 5.31999 -42.4361 1.76442 Vertex 19431 4.87451 -42.974 1.97484 Vertex 19432 4.70234 -43.7663 2.06596 Vertex 19433 4.67601 -44.6277 2.0701 Vertex 19434 6.48976 -45.1007 1.20328 Vertex 19435 8.33502 -44.7023 0.480752 Vertex 19436 8.26156 -43.8815 0.515172 Vertex 19437 8.62136 -44.7148 1.22701 Vertex 19438 6.79877 -45.1007 2.07241 Vertex 19439 4.97089 -44.6356 2.7993 Vertex 19440 4.97555 -43.7955 2.79634 Vertex 19441 5.18822 -43.024 2.70416 Vertex 19442 5.69464 -42.5621 2.47155 Vertex 19443 6.62884 -42.4307 2.04932 Vertex 19444 7.67211 -42.5904 1.60712 Vertex 19445 8.26789 -43.0442 1.37004 Vertex 19446 8.53901 -43.919 1.26389 Vertex 19447 5.46694 -39.9407 -1.68072 Vertex 19448 4.32252 -39.9893 -1.311 Vertex 19449 3.73428 -40.1966 -1.73659 Vertex 19450 3.27162 -40.7639 -2.52627 Vertex 19451 3.03872 -40.6546 -3.50476 Vertex 19452 3.29507 -40.0737 -4.61364 Vertex 19453 4.04913 -40.0394 -5.47073 Vertex 19454 4.99232 -40.2797 -5.55483 Vertex 19455 5.8799 -40.7883 -4.81202 Vertex 19456 6.37528 -40.8894 -4.08105 Vertex 19457 6.51538 -40.4339 -3.58695 Vertex 19458 6.42754 -40.0574 -2.70497 Vertex 19459 2.9286 -43.8161 -3.38086 Vertex 19460 3.02426 -44.6361 -3.38665 Vertex 19461 3.09897 -45.0316 -3.40753 Vertex 19462 4.49081 -45.1421 -3.98944 Vertex 19463 5.83742 -45.0593 -4.57032 Vertex 19464 5.88915 -44.668 -4.59453 Vertex 19465 6.0119 -43.7976 -4.60987 Vertex 19466 6.16567 -42.7045 -4.57104 Vertex 19467 5.7705 -41.7575 -5.01904 Vertex 19468 4.88365 -41.1659 -5.67917 Vertex 19469 3.92555 -40.9467 -5.55614 Vertex 19470 3.17137 -40.9889 -4.79365 Vertex 19471 2.8847 -41.4857 -3.85574 Vertex 19472 2.83274 -42.589 -3.38501 Vertex 19473 3.31398 -41.6583 -2.18049 Vertex 19474 3.55738 -41.1694 -1.77508 Vertex 19475 3.97699 -40.7631 -1.15329 Vertex 19476 4.46543 -40.5012 -0.740791 Vertex 19477 5.56605 -40.4409 -1.11829 Vertex 19478 6.67096 -40.5876 -2.18432 Vertex 19479 6.82445 -41.0467 -3.17561 Vertex 19480 6.72841 -41.7629 -3.61636 Vertex 19481 6.70511 -42.7047 -3.74045 Vertex 19482 6.56062 -43.7999 -3.7196 Vertex 19483 6.43748 -44.6702 -3.66951 Vertex 19484 6.38787 -45.0592 -3.60243 Vertex 19485 4.97237 -45.142 -2.92257 Vertex 19486 3.48781 -45.0315 -2.31039 Vertex 19487 3.39136 -44.6357 -2.31536 Vertex 19488 3.32493 -43.8267 -2.30885 Vertex 19489 3.2409 -42.6147 -2.31274 Vertex 19490 3.40676 -44.9142 -2.90124 Vertex 19491 6.00064 -44.9695 -4.02471 Vertex 19492 8.37172 -44.9334 0.893888 Vertex 19493 4.92254 -44.9346 2.38997 Vertex 19494 3.97327 -40.5444 -1.54716 Vertex 19495 3.37956 -40.5605 -4.63128 Vertex 19496 4.74729 -45.0131 -3.45547 Vertex 19497 4.97551 -44.6089 2.37817 Vertex 19498 4.98494 -43.8123 2.37398 Vertex 19499 5.1444 -43.0911 2.28131 Vertex 19500 5.55511 -42.6359 2.06805 Vertex 19501 6.44925 -42.4854 1.66542 Vertex 19502 7.45418 -42.6244 1.24623 Vertex 19503 7.99543 -43.0586 1.03992 Vertex 19504 8.24854 -43.9254 0.946177 Vertex 19505 8.32699 -44.6918 0.913539 Vertex 19506 4.05115 -40.5168 -5.39564 Vertex 19507 3.55261 -41.0065 -2.22833 Vertex 19508 4.4418 -40.3399 -1.13315 Vertex 19509 6.51912 -40.7891 -3.34554 Vertex 19510 5.44617 -40.3063 -1.48391 Vertex 19511 4.87144 -40.7363 -5.47499 Vertex 19512 6.41419 -40.4125 -2.47235 Vertex 19513 6.29286 -42.7019 -4.06871 Vertex 19514 5.69666 -41.2817 -4.81175 Vertex 19515 6.34426 -41.7105 -3.92052 Vertex 19516 3.11466 -41.0915 -3.66923 Vertex 19517 3.29383 -41.6059 -2.73764 Vertex 19518 3.19415 -42.6023 -2.90703 Vertex 19519 3.28286 -43.8067 -2.90536 Vertex 19520 6.02085 -44.637 -4.05019 Vertex 19521 6.64544 -44.9304 1.63992 Vertex 19522 6.14375 -43.7798 -4.07916 Vertex 19523 3.34251 -44.5665 -2.9017 Vertex 19524 6.79331 -45.271 -1.07538 Vertex 19525 5.63373 -26.5599 -1.30418 Vertex 19526 3.79337 -45.2738 -4.53527 Vertex 19527 6.16426 -45.271 4.48399 Vertex 19528 7.39895 -45.271 4.26411 Vertex 19529 7.83559 -45.271 2.51845 Vertex 19530 6.48879 -45.271 0.356002 Vertex 19531 2.68518 -33.6241 -5.37144 Vertex 19532 3.30035 -33.6322 -5.89027 Vertex 19533 4.04305 -33.6297 -6.1549 Vertex 19534 4.91473 -33.5539 -6.20574 Vertex 19535 2.17644 -33.5555 -4.7239 Vertex 19536 2.0396 -33.3496 -4.03305 Vertex 19537 2.07524 -32.7886 -3.27678 Vertex 19538 2.22273 -31.6019 -2.53054 Vertex 19539 2.56175 -30.0826 -1.86418 Vertex 19540 3.02594 -28.5645 -1.41095 Vertex 19541 5.81888 -33.3419 -5.99467 Vertex 19542 6.76796 -32.8723 -5.61825 Vertex 19543 7.48529 -32.0198 -5.11305 Vertex 19544 8.00031 -30.7878 -4.54205 Vertex 19545 8.37506 -29.0112 -3.91242 Vertex 19546 3.55259 -27.3259 -1.04536 Vertex 19547 8.48692 -27.4075 -3.24159 Vertex 19548 8.23759 -26.6636 -2.55248 Vertex 19549 7.59916 -26.3468 -1.80891 Vertex 19550 6.42557 -26.2366 -1.0177 Vertex 19551 5.15873 -26.3443 -0.54025 Vertex 19552 4.23528 -26.6543 -0.66606 Vertex 19553 4.41216 -32.7434 -4.49116 Vertex 19554 3.57454 -33.4479 -5.42889 Vertex 19555 5.25035 -30.3998 -3.27543 Vertex 19556 5.99405 -27.3247 -2.21499 Vertex 19557 3.56159 -27.6098 -0.955589 Vertex 19558 2.1396 -33.8444 -4.70672 Vertex 19559 2.57204 -30.3561 -1.79633 Vertex 19560 2.06454 -33.0701 -3.21957 Vertex 19561 3.24538 -33.9088 -5.88884 Vertex 19562 4.87539 -33.8425 -6.18524 Vertex 19563 6.74147 -33.1608 -5.56119 Vertex 19564 7.98413 -31.0572 -4.45754 Vertex 19565 5.18257 -26.5849 -0.40495 Vertex 19566 7.63806 -26.5855 -1.67594 Vertex 19567 8.48691 -27.6857 -3.14418 Vertex 19568 2.63441 -33.9058 -5.36742 Vertex 19569 2.01221 -33.637 -3.9907 Vertex 19570 2.22618 -31.8757 -2.46538 Vertex 19571 3.03616 -28.8527 -1.34009 Vertex 19572 4.24397 -26.9142 -0.546235 Vertex 19573 6.46533 -26.4683 -0.880386 Vertex 19574 8.26332 -26.9157 -2.43278 Vertex 19575 8.35942 -29.2973 -3.82829 Vertex 19576 7.46792 -32.2933 -5.0358 Vertex 19577 5.78843 -33.6344 -5.95859 Vertex 19578 3.99432 -33.9113 -6.15042 Vertex 19579 7.27455 -26.4102 -1.86281 Vertex 19580 4.82732 -31.7549 -3.89113 Vertex 19581 5.67307 -28.7509 -2.72868 Vertex 19582 3.41111 -33.5294 -5.71065 Vertex 19583 2.68989 -34.5522 -5.25403 Vertex 19584 2.14892 -34.4217 -3.98174 Vertex 19585 2.51505 -33.5658 -2.52656 Vertex 19586 3.30989 -32.065 -1.41665 Vertex 19587 4.33882 -31.0707 -0.776742 Vertex 19588 6.1093 -30.8388 -1.12169 Vertex 19589 7.52929 -31.074 -2.47921 Vertex 19590 7.6704 -32.2833 -3.76498 Vertex 19591 6.97538 -33.7629 -4.93058 Vertex 19592 5.54319 -34.4198 -5.85324 Vertex 19593 3.97905 -34.5572 -6.00209 Vertex 19594 2.94082 -36.3993 -5.03016 Vertex 19595 2.54572 -36.3938 -3.93459 Vertex 19596 2.9431 -36.4138 -2.59912 Vertex 19597 3.61208 -36.4196 -1.58897 Vertex 19598 4.3879 -36.4159 -1.15799 Vertex 19599 5.65253 -36.4152 -1.52726 Vertex 19600 6.66766 -36.4186 -2.65423 Vertex 19601 6.83383 -36.4224 -3.75038 Vertex 19602 6.37237 -36.422 -4.81125 Vertex 19603 5.28121 -36.4186 -5.70695 Vertex 19604 4.01132 -36.4172 -5.75082 Vertex 19605 3.15701 -38.232 -4.87406 Vertex 19606 2.85606 -38.2236 -3.88699 Vertex 19607 3.11551 -38.2466 -2.65002 Vertex 19608 3.65894 -38.2553 -1.70437 Vertex 19609 4.36787 -38.252 -1.29194 Vertex 19610 5.54778 -38.2515 -1.64819 Vertex 19611 6.49372 -38.2547 -2.72469 Vertex 19612 6.60581 -38.2582 -3.75858 Vertex 19613 6.15836 -38.2578 -4.75412 Vertex 19614 5.17892 -38.2546 -5.5989 Vertex 19615 4.02962 -38.2532 -5.58028 Vertex 19616 6.78402 -45.149 -3.04605 Vertex 19617 7.86381 -45.1491 5.28768 Vertex 19618 8.98202 -45.149 2.93311 Vertex 19619 8.67307 -45.149 4.42455 Vertex 19620 6.91995 -45.1491 5.37079 Vertex 19621 6.0443 -45.149 4.8931 Vertex 19622 5.41163 -45.149 4.12227 Vertex 19623 4.79487 -45.149 0.698853 Vertex 19624 4.69107 -45.149 -0.344715 Vertex 19625 3.95353 -45.149 -1.50416 Vertex 19626 3.85139 -45.1492 -5.7991 Vertex 19627 4.81159 -45.1492 -5.89786 Vertex 19628 5.55864 -45.1491 -5.18386 Vertex 19629 7.23002 -45.149 -2.08437 Vertex 19630 7.73186 -45.149 -1.01162 Vertex 19631 8.7993 -45.149 1.62365 Vertex 19632 8.22008 -45.149 0.071506 Vertex 19633 4.68069 -45.149 1.69742 Vertex 19634 5.03958 -45.149 3.22848 Vertex 19635 3.03562 -45.1549 -5.09966 Vertex 19636 2.90471 -45.1549 -4.01317 Vertex 19637 3.15182 -39.3621 -4.78015 Vertex 19638 2.92171 -41.4345 -4.9726 Vertex 19639 2.79785 -42.5959 -5.07098 Vertex 19640 2.84178 -43.8531 -5.07747 Vertex 19641 2.93293 -44.7284 -5.10544 Vertex 19642 4.68091 -45.2711 -5.43377 Vertex 19643 7.25679 -41.7705 -1.88764 Vertex 19644 5.38144 -45.271 -2.23626 Vertex 19645 5.11844 -39.4794 -5.6479 Vertex 19646 6.12144 -39.6249 -4.73853 Vertex 19647 6.63554 -39.5406 -3.69066 Vertex 19648 6.52771 -39.3301 -2.70101 Vertex 19649 5.54207 -39.2573 -1.62228 Vertex 19650 4.32083 -39.2923 -1.24787 Vertex 19651 3.63735 -39.4126 -1.6694 Vertex 19652 3.11524 -39.4821 -2.63887 Vertex 19653 2.86128 -39.4296 -3.79031 Vertex 19654 4.00702 -39.3535 -5.58445 Vertex 19655 4.58202 -40.7244 -0.288896 Vertex 19656 7.09505 -41.352 -0.758778 Vertex 19657 4.86194 -41.2369 0.317897 Vertex 19658 5.77284 -40.5865 -0.739763 Vertex 19659 6.00914 -41.1065 -0.122452 Vertex 19660 6.92863 -40.9011 -1.46051 Vertex 19661 3.9426 -33.2404 -5.01465 Vertex 19662 3.67421 -42.6152 -5.86213 Vertex 19663 4.83457 -42.6475 -6.0096 Vertex 19664 5.83419 -42.6871 -5.23712 Vertex 19665 7.04876 -42.7457 -3.19368 Vertex 19666 7.38178 -42.7904 -2.07457 Vertex 19667 7.77918 -42.8071 -0.699964 Vertex 19668 4.87615 -41.5872 -5.89383 Vertex 19669 7.06989 -41.3231 -2.78907 Vertex 19670 4.22683 -41.5211 -0.206846 Vertex 19671 3.8519 -44.7145 -1.49092 Vertex 19672 3.72142 -43.8575 -1.46454 Vertex 19673 3.55737 -42.6586 -1.43129 Vertex 19674 7.32095 -44.7137 -2.14891 Vertex 19675 7.3907 -43.8293 -2.13494 Vertex 19676 5.27319 -42.2446 1.65198 Vertex 19677 5.77691 -42.4492 2.8713 Vertex 19678 5.50878 -42.9834 3.86441 Vertex 19679 4.61097 -44.7238 -0.308154 Vertex 19680 4.4519 -43.8572 -0.251562 Vertex 19681 4.23524 -42.7383 -0.175863 Vertex 19682 4.72789 -44.7132 0.768843 Vertex 19683 4.67389 -43.8347 0.819034 Vertex 19684 4.64373 -42.8372 0.901089 Vertex 19685 4.60246 -44.6765 1.78172 Vertex 19686 4.63716 -43.7818 1.7918 Vertex 19687 4.80429 -42.8906 1.78777 Vertex 19688 5.98213 -44.6932 4.97105 Vertex 19689 6.04802 -43.8427 4.87298 Vertex 19690 7.85378 -44.7066 -1.03046 Vertex 19691 7.88846 -43.8304 -0.946387 Vertex 19692 7.32975 -41.8428 0.08059 Vertex 19693 8.45649 -43.005 3.89812 Vertex 19694 8.34758 -44.7093 0.0670008 Vertex 19695 8.31696 -43.8439 0.139871 Vertex 19696 8.08516 -42.8354 0.391438 Vertex 19697 7.48437 -42.1954 0.738759 Vertex 19698 8.90051 -44.7186 1.545 Vertex 19699 8.81896 -43.8716 1.56225 Vertex 19700 8.5328 -42.9751 1.67245 Vertex 19701 7.88164 -42.4856 1.95585 Vertex 19702 6.22591 -41.6222 0.630836 Vertex 19703 5.63321 -44.7014 -5.23417 Vertex 19704 5.31437 -44.6934 4.15699 Vertex 19705 3.78419 -44.7159 -5.85579 Vertex 19706 5.17523 -42.948 3.15576 Vertex 19707 3.77913 -41.4433 -5.76396 Vertex 19708 2.695 -43.8415 -3.97032 Vertex 19709 5.74844 -43.8255 -5.26636 Vertex 19710 4.95078 -43.7958 3.25368 Vertex 19711 7.6726 -43.0071 4.60301 Vertex 19712 4.93947 -44.675 3.24608 Vertex 19713 8.7638 -44.6963 4.47702 Vertex 19714 6.33511 -41.9809 1.21813 Vertex 19715 6.79724 -42.3125 2.41649 Vertex 19716 4.82729 -44.7032 -5.96785 Vertex 19717 9.08251 -44.7011 2.89609 Vertex 19718 6.93613 -44.6888 5.47758 Vertex 19719 2.80341 -44.7172 -3.98948 Vertex 19720 5.34017 -43.8344 4.11179 Vertex 19721 8.70241 -43.8472 4.39708 Vertex 19722 7.9096 -43.8463 5.25171 Vertex 19723 6.24373 -43.0033 4.46244 Vertex 19724 6.96411 -43.8241 -3.18054 Vertex 19725 4.83551 -43.826 -6.01069 Vertex 19726 3.6973 -43.8357 -5.85938 Vertex 19727 2.61526 -42.5877 -3.97554 Vertex 19728 8.69251 -42.9905 2.7562 Vertex 19729 6.96791 -43.8428 5.35835 Vertex 19730 7.93385 -44.6911 5.38763 Vertex 19731 6.86161 -44.708 -3.13766 Vertex 19732 8.99046 -43.8463 2.87423 Vertex 19733 7.21589 -42.5118 3.42391 Vertex 19734 -6.24868 -45.271 -0.157928 Vertex 19735 -6.82426 -26.563 -1.92598 Vertex 19736 -4.62386 -45.2711 -4.90933 Vertex 19737 -8.28184 -45.271 3.88639 Vertex 19738 -7.04714 -45.271 4.10627 Vertex 19739 -6.15538 -45.271 3.07999 Vertex 19740 -7.62395 -45.271 -0.970439 Vertex 19741 -7.99148 -42.9272 0.632355 Vertex 19742 -7.40007 -42.4 0.882753 Vertex 19743 -6.30814 -42.2351 1.34406 Vertex 19744 -5.31999 -42.4361 1.76442 Vertex 19745 -4.87451 -42.974 1.97484 Vertex 19746 -4.70234 -43.7663 2.06597 Vertex 19747 -4.67601 -44.6276 2.0701 Vertex 19748 -6.48976 -45.1007 1.20328 Vertex 19749 -8.33502 -44.7023 0.480752 Vertex 19750 -8.26156 -43.8815 0.515172 Vertex 19751 -8.62136 -44.7148 1.22701 Vertex 19752 -6.79877 -45.1007 2.07241 Vertex 19753 -4.97089 -44.6356 2.7993 Vertex 19754 -4.97555 -43.7955 2.79634 Vertex 19755 -5.18822 -43.0241 2.70416 Vertex 19756 -5.69464 -42.5621 2.47155 Vertex 19757 -6.62884 -42.4307 2.04932 Vertex 19758 -7.67211 -42.5904 1.60712 Vertex 19759 -8.26789 -43.0443 1.37004 Vertex 19760 -8.53901 -43.919 1.26389 Vertex 19761 -5.46694 -39.9407 -1.68072 Vertex 19762 -4.32252 -39.9893 -1.311 Vertex 19763 -3.73428 -40.1966 -1.73659 Vertex 19764 -3.27161 -40.7639 -2.52627 Vertex 19765 -3.03872 -40.6546 -3.50476 Vertex 19766 -3.29507 -40.0737 -4.61364 Vertex 19767 -4.04913 -40.0394 -5.47073 Vertex 19768 -4.99232 -40.2797 -5.55483 Vertex 19769 -5.8799 -40.7883 -4.81202 Vertex 19770 -6.37528 -40.8894 -4.08105 Vertex 19771 -6.51538 -40.4339 -3.58695 Vertex 19772 -6.42754 -40.0574 -2.70497 Vertex 19773 -2.9286 -43.8161 -3.38086 Vertex 19774 -3.02426 -44.6361 -3.38665 Vertex 19775 -3.09897 -45.0316 -3.40753 Vertex 19776 -4.49081 -45.1421 -3.98944 Vertex 19777 -5.83742 -45.0593 -4.57031 Vertex 19778 -5.88915 -44.668 -4.59453 Vertex 19779 -6.0119 -43.7976 -4.60987 Vertex 19780 -6.16567 -42.7045 -4.57104 Vertex 19781 -5.7705 -41.7575 -5.01904 Vertex 19782 -4.88365 -41.1658 -5.67917 Vertex 19783 -3.92555 -40.9467 -5.55614 Vertex 19784 -3.17137 -40.989 -4.79366 Vertex 19785 -2.8847 -41.4857 -3.85574 Vertex 19786 -2.83274 -42.589 -3.38501 Vertex 19787 -3.31398 -41.6583 -2.18049 Vertex 19788 -3.55738 -41.1694 -1.77508 Vertex 19789 -3.97699 -40.7631 -1.15329 Vertex 19790 -4.46542 -40.5012 -0.740791 Vertex 19791 -5.56605 -40.4409 -1.11829 Vertex 19792 -6.67096 -40.5876 -2.18432 Vertex 19793 -6.82445 -41.0467 -3.17561 Vertex 19794 -6.72841 -41.7629 -3.61636 Vertex 19795 -6.70511 -42.7047 -3.74044 Vertex 19796 -6.56062 -43.7999 -3.7196 Vertex 19797 -6.43748 -44.6702 -3.66952 Vertex 19798 -6.38787 -45.0592 -3.60243 Vertex 19799 -4.97237 -45.142 -2.92257 Vertex 19800 -3.48781 -45.0315 -2.31039 Vertex 19801 -3.39136 -44.6357 -2.31536 Vertex 19802 -3.32493 -43.8267 -2.30885 Vertex 19803 -3.2409 -42.6147 -2.31274 Vertex 19804 -2.68518 -33.6241 -5.37143 Vertex 19805 -3.30035 -33.6322 -5.89027 Vertex 19806 -4.04305 -33.6297 -6.1549 Vertex 19807 -4.91473 -33.5539 -6.20574 Vertex 19808 -2.17644 -33.5555 -4.7239 Vertex 19809 -2.0396 -33.3496 -4.03305 Vertex 19810 -2.07524 -32.7886 -3.27677 Vertex 19811 -2.22273 -31.6019 -2.53055 Vertex 19812 -2.56175 -30.0826 -1.86417 Vertex 19813 -3.02594 -28.5645 -1.41095 Vertex 19814 -5.81888 -33.3419 -5.99467 Vertex 19815 -6.76795 -32.8723 -5.61825 Vertex 19816 -7.48529 -32.0198 -5.11305 Vertex 19817 -8.00031 -30.7878 -4.54205 Vertex 19818 -8.37506 -29.0112 -3.91242 Vertex 19819 -3.55259 -27.3259 -1.04536 Vertex 19820 -8.48692 -27.4074 -3.24159 Vertex 19821 -8.23759 -26.6636 -2.55248 Vertex 19822 -7.59916 -26.3468 -1.80891 Vertex 19823 -6.42557 -26.2366 -1.0177 Vertex 19824 -5.15873 -26.3443 -0.54025 Vertex 19825 -4.23528 -26.6543 -0.66606 Vertex 19826 -4.41216 -32.7434 -4.49116 Vertex 19827 -3.57454 -33.4479 -5.42889 Vertex 19828 -5.25035 -30.3998 -3.27543 Vertex 19829 -5.99405 -27.3247 -2.21499 Vertex 19830 -3.56159 -27.6098 -0.955589 Vertex 19831 -2.1396 -33.8444 -4.70672 Vertex 19832 -2.57204 -30.3561 -1.79634 Vertex 19833 -2.06454 -33.0701 -3.21957 Vertex 19834 -3.24538 -33.9088 -5.88884 Vertex 19835 -4.87539 -33.8425 -6.18524 Vertex 19836 -6.74147 -33.1608 -5.56119 Vertex 19837 -7.98413 -31.0572 -4.45754 Vertex 19838 -5.18257 -26.5849 -0.40495 Vertex 19839 -7.63806 -26.5855 -1.67594 Vertex 19840 -8.48691 -27.6858 -3.14418 Vertex 19841 -2.63441 -33.9058 -5.36742 Vertex 19842 -2.01221 -33.637 -3.9907 Vertex 19843 -2.22618 -31.8757 -2.46538 Vertex 19844 -3.03616 -28.8527 -1.34009 Vertex 19845 -4.24397 -26.9142 -0.546235 Vertex 19846 -6.46533 -26.4683 -0.880386 Vertex 19847 -8.26332 -26.9157 -2.43279 Vertex 19848 -8.35942 -29.2973 -3.82829 Vertex 19849 -7.46792 -32.2933 -5.0358 Vertex 19850 -5.78843 -33.6345 -5.95858 Vertex 19851 -3.99432 -33.9113 -6.15042 Vertex 19852 -5.31797 -26.4005 -0.940332 Vertex 19853 -4.82732 -31.7549 -3.89113 Vertex 19854 -5.67307 -28.7508 -2.72868 Vertex 19855 -3.41111 -33.5294 -5.71065 Vertex 19856 -2.68989 -34.5522 -5.25403 Vertex 19857 -2.14892 -34.4217 -3.98174 Vertex 19858 -2.51505 -33.5658 -2.52656 Vertex 19859 -3.30989 -32.065 -1.41665 Vertex 19860 -4.33882 -31.0707 -0.776742 Vertex 19861 -6.10931 -30.8388 -1.12169 Vertex 19862 -7.52929 -31.074 -2.47921 Vertex 19863 -7.6704 -32.2833 -3.76498 Vertex 19864 -6.97538 -33.7629 -4.93058 Vertex 19865 -5.54319 -34.4198 -5.85324 Vertex 19866 -3.97905 -34.5572 -6.00209 Vertex 19867 -2.94082 -36.3993 -5.03016 Vertex 19868 -2.54572 -36.3938 -3.93459 Vertex 19869 -2.9431 -36.4138 -2.59913 Vertex 19870 -3.61208 -36.4196 -1.58898 Vertex 19871 -4.3879 -36.4159 -1.15799 Vertex 19872 -5.65253 -36.4152 -1.52726 Vertex 19873 -6.66766 -36.4186 -2.65423 Vertex 19874 -6.83383 -36.4224 -3.75038 Vertex 19875 -6.37237 -36.422 -4.81125 Vertex 19876 -5.28121 -36.4186 -5.70695 Vertex 19877 -4.01132 -36.4172 -5.75082 Vertex 19878 -3.15701 -38.232 -4.87406 Vertex 19879 -2.85606 -38.2235 -3.88699 Vertex 19880 -3.11552 -38.2466 -2.65002 Vertex 19881 -3.65894 -38.2553 -1.70437 Vertex 19882 -4.36787 -38.2521 -1.29194 Vertex 19883 -5.54778 -38.2515 -1.64819 Vertex 19884 -6.49372 -38.2547 -2.72469 Vertex 19885 -6.60581 -38.2581 -3.75858 Vertex 19886 -6.15837 -38.2578 -4.75412 Vertex 19887 -5.17891 -38.2546 -5.5989 Vertex 19888 -4.02962 -38.2532 -5.58028 Vertex 19889 -6.78402 -45.149 -3.04605 Vertex 19890 -7.86381 -45.1491 5.28768 Vertex 19891 -3.40676 -44.9142 -2.90124 Vertex 19892 -8.98201 -45.149 2.93311 Vertex 19893 -8.67307 -45.149 4.42455 Vertex 19894 -6.91995 -45.1491 5.37079 Vertex 19895 -6.0443 -45.149 4.8931 Vertex 19896 -5.41163 -45.149 4.12227 Vertex 19897 -4.79486 -45.149 0.698853 Vertex 19898 -4.69107 -45.149 -0.344716 Vertex 19899 -3.95353 -45.149 -1.50416 Vertex 19900 -3.85139 -45.1492 -5.7991 Vertex 19901 -4.81159 -45.1491 -5.89787 Vertex 19902 -5.55864 -45.1491 -5.18386 Vertex 19903 -6.00063 -44.9695 -4.02471 Vertex 19904 -7.23002 -45.149 -2.08437 Vertex 19905 -7.73186 -45.149 -1.01162 Vertex 19906 -8.7993 -45.149 1.62366 Vertex 19907 -8.22008 -45.149 0.071506 Vertex 19908 -8.37172 -44.9334 0.893888 Vertex 19909 -4.6807 -45.149 1.69742 Vertex 19910 -5.03958 -45.149 3.22848 Vertex 19911 -4.92254 -44.9346 2.38997 Vertex 19912 -3.03562 -45.1549 -5.09966 Vertex 19913 -2.90471 -45.1549 -4.01317 Vertex 19914 -3.97327 -40.5444 -1.54716 Vertex 19915 -3.15182 -39.3621 -4.78015 Vertex 19916 -3.37956 -40.5605 -4.63128 Vertex 19917 -2.92171 -41.4345 -4.9726 Vertex 19918 -2.79785 -42.5959 -5.07098 Vertex 19919 -2.84178 -43.8531 -5.07747 Vertex 19920 -2.93293 -44.7284 -5.10544 Vertex 19921 -4.74729 -45.0131 -3.45547 Vertex 19922 -3.43731 -45.2738 -4.8834 Vertex 19923 -7.25678 -41.7705 -1.88764 Vertex 19924 -5.38144 -45.271 -2.23626 Vertex 19925 -4.97552 -44.6089 2.37817 Vertex 19926 -4.98494 -43.8123 2.37398 Vertex 19927 -5.1444 -43.0911 2.28131 Vertex 19928 -5.55511 -42.6359 2.06805 Vertex 19929 -6.44925 -42.4854 1.66543 Vertex 19930 -7.45418 -42.6244 1.24623 Vertex 19931 -7.99543 -43.0585 1.03992 Vertex 19932 -8.24854 -43.9254 0.946177 Vertex 19933 -8.32699 -44.6918 0.913539 Vertex 19934 -5.11844 -39.4794 -5.6479 Vertex 19935 -6.12144 -39.6249 -4.73853 Vertex 19936 -6.63554 -39.5406 -3.69066 Vertex 19937 -6.52771 -39.3301 -2.70101 Vertex 19938 -5.54207 -39.2573 -1.62228 Vertex 19939 -4.32083 -39.2923 -1.24787 Vertex 19940 -3.63735 -39.4127 -1.6694 Vertex 19941 -3.11524 -39.4821 -2.63887 Vertex 19942 -2.86128 -39.4296 -3.79031 Vertex 19943 -4.00702 -39.3535 -5.58445 Vertex 19944 -4.05115 -40.5168 -5.39563 Vertex 19945 -3.55261 -41.0065 -2.22833 Vertex 19946 -4.58202 -40.7244 -0.288896 Vertex 19947 -7.09505 -41.352 -0.758778 Vertex 19948 -4.4418 -40.3399 -1.13315 Vertex 19949 -4.86194 -41.2369 0.317897 Vertex 19950 -5.77284 -40.5865 -0.739763 Vertex 19951 -6.51912 -40.7891 -3.34555 Vertex 19952 -6.00914 -41.1065 -0.122452 Vertex 19953 -5.44617 -40.3063 -1.48391 Vertex 19954 -4.87144 -40.7363 -5.47499 Vertex 19955 -6.41419 -40.4125 -2.47235 Vertex 19956 -6.92863 -40.9011 -1.46051 Vertex 19957 -3.9426 -33.2404 -5.01465 Vertex 19958 -3.67421 -42.6152 -5.86213 Vertex 19959 -4.83457 -42.6475 -6.0096 Vertex 19960 -5.8342 -42.6871 -5.23712 Vertex 19961 -6.29285 -42.7019 -4.0687 Vertex 19962 -7.04876 -42.7457 -3.19368 Vertex 19963 -7.38178 -42.7905 -2.07457 Vertex 19964 -7.77918 -42.8071 -0.699964 Vertex 19965 -4.87615 -41.5872 -5.89383 Vertex 19966 -5.69666 -41.2817 -4.81174 Vertex 19967 -6.34426 -41.7105 -3.92052 Vertex 19968 -7.0699 -41.3231 -2.78907 Vertex 19969 -3.11465 -41.0915 -3.66923 Vertex 19970 -3.29383 -41.6059 -2.73764 Vertex 19971 -4.22683 -41.5211 -0.206846 Vertex 19972 -3.8519 -44.7145 -1.49092 Vertex 19973 -3.72142 -43.8575 -1.46454 Vertex 19974 -3.55737 -42.6586 -1.43129 Vertex 19975 -7.32095 -44.7137 -2.14891 Vertex 19976 -7.3907 -43.8293 -2.13495 Vertex 19977 -5.27319 -42.2446 1.65198 Vertex 19978 -5.77691 -42.4492 2.8713 Vertex 19979 -5.50878 -42.9834 3.86441 Vertex 19980 -4.61097 -44.7237 -0.308154 Vertex 19981 -4.4519 -43.8572 -0.251562 Vertex 19982 -4.23524 -42.7383 -0.175864 Vertex 19983 -4.72789 -44.7132 0.768843 Vertex 19984 -4.67389 -43.8347 0.819034 Vertex 19985 -4.64373 -42.8372 0.901089 Vertex 19986 -4.60246 -44.6765 1.78172 Vertex 19987 -4.63716 -43.7819 1.7918 Vertex 19988 -4.80429 -42.8906 1.78777 Vertex 19989 -5.98213 -44.6932 4.97105 Vertex 19990 -6.04802 -43.8427 4.87298 Vertex 19991 -7.85378 -44.7066 -1.03046 Vertex 19992 -7.88846 -43.8304 -0.946387 Vertex 19993 -7.32975 -41.8428 0.08059 Vertex 19994 -8.45649 -43.005 3.89812 Vertex 19995 -8.34758 -44.7093 0.0670007 Vertex 19996 -8.31696 -43.8439 0.139871 Vertex 19997 -8.08515 -42.8354 0.391438 Vertex 19998 -7.48437 -42.1954 0.738759 Vertex 19999 -8.90051 -44.7185 1.54501 Vertex 20000 -8.81896 -43.8716 1.56225 Vertex 20001 -8.5328 -42.9751 1.67245 Vertex 20002 -7.88163 -42.4856 1.95585 Vertex 20003 -6.22591 -41.6222 0.630836 Vertex 20004 -5.63321 -44.7014 -5.23418 Vertex 20005 -5.31437 -44.6934 4.15699 Vertex 20006 -3.78419 -44.7159 -5.85579 Vertex 20007 -5.17523 -42.948 3.15576 Vertex 20008 -3.19415 -42.6023 -2.90703 Vertex 20009 -3.28287 -43.8067 -2.90536 Vertex 20010 -3.77913 -41.4433 -5.76396 Vertex 20011 -2.695 -43.8415 -3.97032 Vertex 20012 -5.74844 -43.8255 -5.26636 Vertex 20013 -4.95078 -43.7958 3.25368 Vertex 20014 -7.6726 -43.0071 4.603 Vertex 20015 -4.93947 -44.675 3.24608 Vertex 20016 -8.7638 -44.6963 4.47702 Vertex 20017 -6.02085 -44.637 -4.05019 Vertex 20018 -6.33511 -41.9809 1.21813 Vertex 20019 -6.79724 -42.3125 2.4165 Vertex 20020 -4.82729 -44.7032 -5.96785 Vertex 20021 -9.08251 -44.7011 2.89609 Vertex 20022 -6.93614 -44.6888 5.47758 Vertex 20023 -2.80341 -44.7172 -3.98948 Vertex 20024 -5.34018 -43.8344 4.11179 Vertex 20025 -8.7024 -43.8472 4.39708 Vertex 20026 -6.64544 -44.9304 1.63992 Vertex 20027 -7.9096 -43.8462 5.2517 Vertex 20028 -6.24373 -43.0033 4.46244 Vertex 20029 -6.9641 -43.8241 -3.18054 Vertex 20030 -4.83551 -43.826 -6.01069 Vertex 20031 -3.6973 -43.8357 -5.85938 Vertex 20032 -2.61526 -42.5877 -3.97554 Vertex 20033 -8.69251 -42.9905 2.7562 Vertex 20034 -6.96791 -43.8427 5.35835 Vertex 20035 -6.14375 -43.7798 -4.07916 Vertex 20036 -3.34251 -44.5666 -2.9017 Vertex 20037 -7.93385 -44.6911 5.38763 Vertex 20038 -6.86161 -44.708 -3.13766 Vertex 20039 -8.99045 -43.8463 2.87423 Vertex 20040 -7.21589 -42.5118 3.42391 Vertex 20041 1.21284 11.6755 1.8891 Vertex 20042 2.4258 12.0384 1.46912 Vertex 20043 2.42605 12.7389 0.561964 Vertex 20044 2.42626 13.4003 -0.815517 Vertex 20045 2.42604 13.6933 -2.6414 Vertex 20046 1.21286 13.6625 -3.57697 Vertex 20047 1.21303 12.9869 -2.53396 Vertex 20048 1.21314 12.4035 -0.839693 Vertex 20049 1.21303 11.9597 0.437858 Vertex 20050 1.2129 11.6651 1.27882 Vertex 20051 -1.21284 11.6755 1.8891 Vertex 20052 -2.4258 12.0384 1.46912 Vertex 20053 -2.42605 12.7389 0.561964 Vertex 20054 -2.42626 13.4003 -0.815516 Vertex 20055 -2.42604 13.6933 -2.6414 Vertex 20056 -1.21286 13.6625 -3.57697 Vertex 20057 -1.21303 12.9869 -2.53396 Vertex 20058 -1.21314 12.4035 -0.839693 Vertex 20059 -1.21303 11.9597 0.437858 Vertex 20060 -1.2129 11.6651 1.27882 Vertex 20061 1.59409 13.2754 -4.19798 Vertex 20062 -2.20052 13.5619 -4.04235 Vertex 20063 1.46976 10.9489 2.53067 Vertex 20064 1.70252 10.0494 3.09815 Vertex 20065 3.65264 13.5181 0.686085 Vertex 20066 3.81178 14.3971 -0.791325 Vertex 20067 3.62927 14.3997 -2.74882 Vertex 20068 1.34066 8.92229 3.92266 Vertex 20069 3.46246 12.4117 1.65944 Vertex 20070 -1.46976 10.9489 2.53067 Vertex 20071 -1.70252 10.0494 3.09815 Vertex 20072 -3.65264 13.5181 0.686085 Vertex 20073 -3.81178 14.3971 -0.791325 Vertex 20074 -3.62927 14.3997 -2.74882 Vertex 20075 -1.34066 8.92229 3.92266 Vertex 20076 -3.46246 12.4117 1.65944 Vertex 20077 5.9185 -3.66998 0.346318 Vertex 20078 5.2506 -3.67001 1.98627 Vertex 20079 0.803125 -2.25192 -4.53326 Vertex 20080 2.30072 -2.25192 -4.3243 Vertex 20081 3.63305 -2.25192 -3.90172 Vertex 20082 5.0176 -2.25194 -2.98963 Vertex 20083 5.96487 -2.25196 -1.51726 Vertex 20084 5.9363 -2.25198 0.273436 Vertex 20085 5.21132 -2.25201 2.05019 Vertex 20086 3.89125 -2.25203 3.30406 Vertex 20087 2.33037 -2.25204 4.02733 Vertex 20088 0.796857 -2.25204 4.23435 Vertex 20089 0.796857 -3.67004 4.23433 Vertex 20090 2.29016 -3.67073 4.02378 Vertex 20091 3.89122 -3.67003 3.30405 Vertex 20092 5.94669 -3.66996 -1.59088 Vertex 20093 5.07433 -3.66994 -2.94055 Vertex 20094 3.56272 -3.66992 -3.92949 Vertex 20095 2.30072 -3.66992 -4.32433 Vertex 20096 0.803125 -3.66992 -4.53328 Vertex 20097 5.95476 0.584045 -1.52638 Vertex 20098 5.94275 0.58402 0.282398 Vertex 20099 5.2129 0.583988 2.04371 Vertex 20100 3.90671 0.583966 3.29546 Vertex 20101 2.35913 0.583956 4.01583 Vertex 20102 0.808488 0.583961 4.23123 Vertex 20103 0.808488 -0.834037 4.23121 Vertex 20104 2.35913 -0.834043 4.01581 Vertex 20105 3.90671 -0.834033 3.29545 Vertex 20106 5.2129 -0.83401 2.04368 Vertex 20107 5.94275 -0.833978 0.282375 Vertex 20108 5.95476 -0.833954 -1.5264 Vertex 20109 5.01216 -0.833938 -3.01075 Vertex 20110 3.64436 -0.833921 -3.89583 Vertex 20111 2.30937 -0.833917 -4.32242 Vertex 20112 0.808322 -0.833921 -4.5313 Vertex 20113 0.808322 0.584078 -4.53129 Vertex 20114 2.30937 0.584082 -4.3224 Vertex 20115 3.64435 0.584077 -3.89581 Vertex 20116 5.01216 0.584061 -3.01073 Vertex 20117 3.79993 -1.54303 3.16688 Vertex 20118 2.28433 -1.54304 3.87261 Vertex 20119 0.787075 -1.54304 4.07338 Vertex 20120 0.80664 -2.96104 4.39533 Vertex 20121 2.37642 -2.96104 4.18206 Vertex 20122 3.98258 -2.96104 3.44123 Vertex 20123 0.789545 -1.54292 -4.37125 Vertex 20124 2.35898 -0.124915 -4.47934 Vertex 20125 3.7255 -0.12492 -4.0398 Vertex 20126 5.13119 -0.124937 -3.12748 Vertex 20127 6.10869 -0.124954 -1.58305 Vertex 20128 6.10874 -0.124979 0.302317 Vertex 20129 5.34706 -0.125012 2.13491 Vertex 20130 5.34389 -2.96102 2.14791 Vertex 20131 6.09583 -2.96098 0.284434 Vertex 20132 6.12891 -2.96095 -1.56478 Vertex 20133 5.14208 -2.96094 -3.08525 Vertex 20134 3.70289 -2.96092 -4.05158 Vertex 20135 2.34168 -2.96092 -4.4831 Vertex 20136 0.816705 -2.96092 -4.69526 Vertex 20137 5.07874 -1.54301 1.95246 Vertex 20138 5.77676 -1.54298 0.262437 Vertex 20139 5.80083 -1.54295 -1.46974 Vertex 20140 4.89312 -1.54294 -2.89402 Vertex 20141 3.56321 -1.54292 -3.75185 Vertex 20142 2.25976 -1.54292 -4.1655 Vertex 20143 0.8271 -0.12492 -4.69136 Vertex 20144 0.8299 -0.12504 4.38905 Vertex 20145 2.43393 -0.125046 4.15901 Vertex 20146 4.01348 -0.125035 3.42401 Vertex 20147 -5.9185 -3.66998 0.346318 Vertex 20148 -5.2506 -3.67001 1.98627 Vertex 20149 -0.803125 -2.25192 -4.53326 Vertex 20150 -2.30072 -2.25192 -4.3243 Vertex 20151 -3.63304 -2.25192 -3.90171 Vertex 20152 -5.0176 -2.25194 -2.98963 Vertex 20153 -5.96487 -2.25196 -1.51726 Vertex 20154 -5.9363 -2.25198 0.273436 Vertex 20155 -5.21132 -2.25201 2.05019 Vertex 20156 -3.89126 -2.25203 3.30406 Vertex 20157 -2.33037 -2.25204 4.02734 Vertex 20158 -0.796857 -2.25204 4.23435 Vertex 20159 -0.796857 -3.67004 4.23433 Vertex 20160 -2.29016 -3.67073 4.02378 Vertex 20161 -3.89122 -3.67003 3.30405 Vertex 20162 -5.9467 -3.66996 -1.59088 Vertex 20163 -5.07432 -3.66994 -2.94055 Vertex 20164 -3.56272 -3.66992 -3.92949 Vertex 20165 -2.30072 -3.66992 -4.32432 Vertex 20166 -0.803125 -3.66992 -4.53328 Vertex 20167 -5.95476 0.584045 -1.52638 Vertex 20168 -5.94275 0.58402 0.282398 Vertex 20169 -5.2129 0.583988 2.04371 Vertex 20170 -3.90671 0.583966 3.29546 Vertex 20171 -2.35913 0.583956 4.01583 Vertex 20172 -0.808488 0.583961 4.23123 Vertex 20173 -0.808488 -0.834037 4.23121 Vertex 20174 -2.35913 -0.834043 4.01581 Vertex 20175 -3.90671 -0.834033 3.29544 Vertex 20176 -5.2129 -0.83401 2.04368 Vertex 20177 -5.94275 -0.833978 0.282375 Vertex 20178 -5.95476 -0.833954 -1.5264 Vertex 20179 -5.01215 -0.833938 -3.01075 Vertex 20180 -3.64435 -0.833921 -3.89583 Vertex 20181 -2.30937 -0.833917 -4.32242 Vertex 20182 -0.808322 -0.833921 -4.5313 Vertex 20183 -0.808322 0.584078 -4.53128 Vertex 20184 -2.30937 0.584082 -4.3224 Vertex 20185 -3.64435 0.584078 -3.89581 Vertex 20186 -5.01216 0.584061 -3.01073 Vertex 20187 -3.79993 -1.54303 3.16689 Vertex 20188 -2.28433 -1.54304 3.87261 Vertex 20189 -0.787075 -1.54303 4.07338 Vertex 20190 -0.80664 -2.96104 4.39533 Vertex 20191 -2.37642 -2.96104 4.18206 Vertex 20192 -3.98258 -2.96104 3.44123 Vertex 20193 -0.789545 -1.54292 -4.37125 Vertex 20194 -2.35898 -0.124915 -4.47934 Vertex 20195 -3.7255 -0.12492 -4.0398 Vertex 20196 -5.13119 -0.124937 -3.12748 Vertex 20197 -6.10869 -0.124954 -1.58305 Vertex 20198 -6.10874 -0.124979 0.302317 Vertex 20199 -5.34706 -0.125012 2.13491 Vertex 20200 -5.34389 -2.96102 2.14791 Vertex 20201 -6.09583 -2.96098 0.284434 Vertex 20202 -6.12891 -2.96096 -1.56478 Vertex 20203 -5.14208 -2.96094 -3.08525 Vertex 20204 -3.70289 -2.96092 -4.05158 Vertex 20205 -2.34168 -2.96092 -4.4831 Vertex 20206 -0.816705 -2.96092 -4.69527 Vertex 20207 -5.07874 -1.54301 1.95246 Vertex 20208 -5.77676 -1.54298 0.262437 Vertex 20209 -5.80083 -1.54296 -1.46974 Vertex 20210 -4.89312 -1.54294 -2.89402 Vertex 20211 -3.56321 -1.54292 -3.75185 Vertex 20212 -2.25976 -1.54292 -4.1655 Vertex 20213 -0.8271 -0.12492 -4.69136 Vertex 20214 -0.8299 -0.12504 4.38905 Vertex 20215 -2.43393 -0.125046 4.15901 Vertex 20216 -4.01348 -0.125035 3.42401 Vertex 20217 5.51854 -34.2463 -4.55903 Vertex 20218 4.38211 -34.282 -3.92862 Vertex 20219 4.43217 -34.2716 -2.71757 Vertex 20220 5.59063 -34.2744 -2.2319 Vertex 20221 3.71364 -9.92548 3.45147 Vertex 20222 -4.30586 -34.2904 -2.42032 Vertex 20223 -4.2558 -34.3007 -3.63136 Vertex 20224 -5.39223 -34.265 -4.26177 Vertex 20225 -6.26534 -34.2321 -3.65246 Vertex 20226 -4.25042 -10.2572 3.34302 Vertex 20227 7.305 -10.0132 1.48403 Vertex 20228 7.47691 -12.0367 1.65745 Vertex 20229 9.04959 -21.8003 -2.08939 Vertex 20230 10.2259 -20.6506 -1.84912 Vertex 20231 10.2839 -18.7949 -1.30981 Vertex 20232 9.66625 -16.5879 -0.671608 Vertex 20233 8.70921 -14.2336 -0.0870043 Vertex 20234 1.45106 -21.8968 -2.35629 Vertex 20235 2.78279 -21.8861 -0.441383 Vertex 20236 9.11065 -21.7299 -4.35587 Vertex 20237 7.89646 -21.7351 -6.42623 Vertex 20238 4.62973 -21.8892 0.324356 Vertex 20239 7.20477 -21.883 -0.017314 Vertex 20240 6.15192 -20.6957 1.67576 Vertex 20241 6.43839 -20.6945 1.63069 Vertex 20242 3.22243 -5.04854 3.5415 Vertex 20243 5.20108 -8.56539 -4.43158 Vertex 20244 4.98498 -8.6006 -4.62701 Vertex 20245 4.44905 -5.61157 -3.94036 Vertex 20246 4.68969 -5.60324 -3.7693 Vertex 20247 6.17122 -5.00251 -0.374502 Vertex 20248 6.18605 -5.02138 -0.667118 Vertex 20249 2.93237 -7.87324 3.75241 Vertex 20250 3.22431 -7.87838 3.68621 Vertex 20251 4.7479 -4.99096 2.61807 Vertex 20252 4.52624 -5.00245 2.80877 Vertex 20253 2.97364 -5.04798 3.61806 Vertex 20254 1.27213 -8.01394 3.8717 Vertex 20255 1.57103 -8.02156 3.85343 Vertex 20256 1.03714 -10.5436 3.32975 Vertex 20257 1.33352 -10.5849 3.3368 Vertex 20258 0.850881 -11.9885 2.74221 Vertex 20259 1.12079 -12.0751 2.78703 Vertex 20260 1.30516 -12.8634 2.45535 Vertex 20261 1.56602 -12.9986 2.43485 Vertex 20262 2.56201 -10.3189 3.43061 Vertex 20263 2.76747 -10.5378 3.36109 Vertex 20264 1.93004 -11.9791 2.8598 Vertex 20265 2.16818 -12.1117 2.82644 Vertex 20266 1.94726 -10.4603 3.45271 Vertex 20267 1.52499 -12.033 2.89745 Vertex 20268 1.13412 -12.7393 2.56581 Vertex 20269 0.303092 -14.5193 -1.28644 Vertex 20270 0.347401 -14.5115 -1.57481 Vertex 20271 0.280905 -16.6619 -2.09264 Vertex 20272 0.26935 -16.7305 -1.81105 Vertex 20273 0.309126 -18.913 -2.51799 Vertex 20274 0.308048 -18.8363 -2.79721 Vertex 20275 0.57263 -20.7341 -3.26768 Vertex 20276 0.569559 -20.7611 -2.97875 Vertex 20277 2.95973 -18.9145 -7.46053 Vertex 20278 3.20682 -18.899 -7.63651 Vertex 20279 3.15873 -20.8017 -7.46821 Vertex 20280 3.41183 -20.7871 -7.6316 Vertex 20281 8.87383 -14.1994 -1.34556 Vertex 20282 8.88229 -14.2351 -1.07424 Vertex 20283 9.88018 -16.5667 -1.75128 Vertex 20284 9.87038 -16.483 -2.04734 Vertex 20285 10.5307 -18.6198 -2.80621 Vertex 20286 10.5244 -18.7122 -2.45863 Vertex 20287 10.4469 -20.5488 -2.90933 Vertex 20288 10.4609 -20.507 -3.23271 Vertex 20289 8.67653 -16.5239 -5.1682 Vertex 20290 8.48695 -16.4908 -5.45715 Vertex 20291 9.06097 -18.6358 -6.36375 Vertex 20292 9.31416 -18.6763 -5.97808 Vertex 20293 9.29818 -20.5421 -6.06188 Vertex 20294 9.02988 -20.535 -6.46827 Vertex 20295 6.57426 3.9453 0.792064 Vertex 20296 6.65866 3.88707 1.79795 Vertex 20297 6.644 3.88353 1.93614 Vertex 20298 0.808488 2.90197 5.06804 Vertex 20299 1.68333 2.86209 4.97947 Vertex 20300 1.82041 2.85777 4.96931 Vertex 20301 2.70865 2.85445 4.90748 Vertex 20302 4.11983 2.87846 4.40109 Vertex 20303 4.77883 2.94075 3.85881 Vertex 20304 4.95538 2.94029 3.71744 Vertex 20305 5.72021 2.8199 3.44168 Vertex 20306 6.57334 2.68544 2.31891 Vertex 20307 6.40373 2.7365 -1.23374 Vertex 20308 6.36677 2.5571 -2.0317 Vertex 20309 6.30515 2.55003 -2.17472 Vertex 20310 5.74426 2.60636 -2.97597 Vertex 20311 4.35833 2.79933 -4.16834 Vertex 20312 3.45438 2.95902 -4.50148 Vertex 20313 3.2795 2.95483 -4.63841 Vertex 20314 2.44425 2.83771 -5.19005 Vertex 20315 0.811 2.82786 -5.52943 Vertex 20316 1.76631 4.06355 4.80503 Vertex 20317 1.58989 4.07444 4.81221 Vertex 20318 6.099 3.79717 -2.00332 Vertex 20319 6.18285 3.79859 -1.836 Vertex 20320 5.06045 3.87783 -3.51768 Vertex 20321 4.94044 3.88338 -3.64882 Vertex 20322 0.751993 4.12867 4.87771 Vertex 20323 2.62134 4.01567 4.7962 Vertex 20324 6.44369 3.87753 2.66142 Vertex 20325 6.61325 2.76484 0.583629 Vertex 20326 6.34981 3.90645 -0.961093 Vertex 20327 5.59811 3.84351 -2.78809 Vertex 20328 4.25412 3.94337 -4.15495 Vertex 20329 6.04159 0.629042 -1.56407 Vertex 20330 0.797127 0.625431 4.41492 Vertex 20331 2.38403 0.60384 4.2108 Vertex 20332 3.93267 0.673367 3.55466 Vertex 20333 5.32225 0.629464 2.2816 Vertex 20334 6.05787 0.652461 0.584448 Vertex 20335 5.18447 0.571009 -3.02573 Vertex 20336 3.83215 0.64556 -3.94968 Vertex 20337 2.29676 0.640231 -4.52413 Vertex 20338 0.818247 0.617678 -4.72784 Vertex 20339 4.97659 1.18414 3.27393 Vertex 20340 4.80042 1.22352 3.48651 Vertex 20341 6.18551 1.13896 -0.739532 Vertex 20342 6.24381 1.13453 -0.461635 Vertex 20343 3.23221 1.218 -4.38607 Vertex 20344 3.00729 1.20608 -4.52884 Vertex 20345 3.11101 1.96906 -4.61944 Vertex 20346 3.34362 1.97529 -4.43751 Vertex 20347 6.23741 1.87917 -0.63066 Vertex 20348 6.2793 1.86904 -0.338375 Vertex 20349 5.00018 1.99817 3.45819 Vertex 20350 4.76491 1.99753 3.64671 Vertex 20351 0.853675 1.77306 -5.47597 Vertex 20352 2.39262 1.80132 -5.20996 Vertex 20353 4.33713 1.7651 -4.1901 Vertex 20354 5.76475 1.52408 -3.10869 Vertex 20355 6.36738 1.67042 -1.51849 Vertex 20356 6.60506 1.73231 0.353537 Vertex 20357 6.63271 1.67067 1.95578 Vertex 20358 5.79798 1.83592 3.21391 Vertex 20359 0.821335 1.80104 5.09995 Vertex 20360 2.65051 1.75492 4.9112 Vertex 20361 4.11841 1.86289 4.29467 Vertex 20362 6.29761 0.940978 -1.63631 Vertex 20363 4.18276 1.00732 -4.17217 Vertex 20364 0.85604 0.96977 -5.24398 Vertex 20365 6.46774 0.981053 1.37629 Vertex 20366 5.67451 1.03313 2.86863 Vertex 20367 4.0827 1.0725 4.07643 Vertex 20368 5.59697 0.812779 -3.14646 Vertex 20369 0.810233 0.989837 4.89429 Vertex 20370 2.35071 1.01294 -5.02734 Vertex 20371 2.52891 0.929459 4.70093 Vertex 20372 7.59739 -18.9066 1.91711 Vertex 20373 9.38361 -18.8672 0.482211 Vertex 20374 10.0587 -18.6227 -4.40627 Vertex 20375 8.46851 -18.6036 -7.21802 Vertex 20376 6.88382 -18.6769 -8.24973 Vertex 20377 4.56401 -18.8117 -8.23031 Vertex 20378 1.80438 -18.934 -6.21716 Vertex 20379 0.522023 -18.8808 -3.9674 Vertex 20380 0.551944 -18.9196 -1.18909 Vertex 20381 1.99503 -18.8957 1.05832 Vertex 20382 4.61915 -18.914 2.34691 Vertex 20383 3.50824 -33.9299 -4.99953 Vertex 20384 4.68409 -33.8897 -5.62806 Vertex 20385 5.61935 -33.8286 -5.55347 Vertex 20386 6.22208 -33.8022 -5.01681 Vertex 20387 6.66684 -33.806 -3.95909 Vertex 20388 6.59652 -33.8557 -2.65231 Vertex 20389 5.91284 -33.9074 -1.79815 Vertex 20390 4.76551 -33.9095 -1.55109 Vertex 20391 3.63203 -33.9035 -1.92404 Vertex 20392 2.96806 -33.9003 -2.86944 Vertex 20393 2.87434 -33.9193 -3.95252 Vertex 20394 3.15569 -32.8954 -5.72906 Vertex 20395 4.68355 -32.8432 -6.54401 Vertex 20396 5.93362 -32.764 -6.4473 Vertex 20397 6.63243 -32.7297 -5.7087 Vertex 20398 7.04049 -32.7347 -4.2945 Vertex 20399 6.99919 -32.7991 -2.65938 Vertex 20400 6.24326 -32.8661 -1.6111 Vertex 20401 4.75949 -32.8689 -1.2743 Vertex 20402 3.23836 -32.8612 -1.74139 Vertex 20403 2.37924 -32.857 -2.9672 Vertex 20404 2.30593 -32.8815 -4.37152 Vertex 20405 3.19229 -31.2942 -5.9238 Vertex 20406 4.80838 -31.2393 -6.7827 Vertex 20407 6.28451 -31.1558 -6.68077 Vertex 20408 7.13969 -31.1197 -5.96969 Vertex 20409 7.53524 -31.125 -4.54657 Vertex 20410 7.37609 -31.1928 -2.70882 Vertex 20411 6.45061 -31.2634 -1.48956 Vertex 20412 4.8105 -31.2664 -1.18169 Vertex 20413 3.09523 -31.2583 -1.72106 Vertex 20414 2.0451 -31.2538 -3.01298 Vertex 20415 2.07752 -31.2797 -4.49304 Vertex 20416 3.31712 -28.9331 -5.47714 Vertex 20417 4.83354 -28.883 -6.26011 Vertex 20418 6.1881 -28.807 -6.1672 Vertex 20419 7.09414 -28.7741 -5.5744 Vertex 20420 7.63744 -28.7788 -4.3325 Vertex 20421 7.4022 -28.8407 -2.56844 Vertex 20422 6.3368 -28.9051 -1.3682 Vertex 20423 4.68214 -28.9077 -1.12088 Vertex 20424 2.97206 -28.9003 -1.64592 Vertex 20425 2.00176 -28.8963 -2.82363 Vertex 20426 2.16431 -28.9199 -4.17286 Vertex 20427 4.71996 -21.8945 -7.18025 Vertex 20428 6.63104 -21.7854 -7.13536 Vertex 20429 8.35504 -21.7239 -5.83362 Vertex 20430 8.55569 -21.7234 -5.50889 Vertex 20431 6.18787 -21.8492 0.310948 Vertex 20432 5.89075 -21.8499 0.352484 Vertex 20433 2.08073 -21.8585 -1.26328 Vertex 20434 1.89959 -21.8598 -1.53178 Vertex 20435 1.44286 -21.9543 -4.18192 Vertex 20436 2.52001 -21.9761 -5.86418 Vertex 20437 4.72787 -20.7279 -8.1405 Vertex 20438 6.96116 -20.6019 -8.11481 Vertex 20439 8.46742 -20.5359 -7.22633 Vertex 20440 10.0215 -20.5226 -4.65224 Vertex 20441 9.37623 -20.7265 -0.203213 Vertex 20442 7.69445 -20.7404 1.09612 Vertex 20443 4.62731 -20.7528 1.53055 Vertex 20444 2.23186 -20.7467 0.383681 Vertex 20445 0.777959 -20.7677 -1.82529 Vertex 20446 0.777365 -20.7961 -4.33752 Vertex 20447 2.02335 -20.8362 -6.3569 Vertex 20448 4.1697 -16.6258 -7.2305 Vertex 20449 6.40204 -16.4878 -7.29674 Vertex 20450 7.9231 -16.424 -6.27491 Vertex 20451 9.38686 -16.4543 -3.6291 Vertex 20452 8.80735 -16.6497 1.03113 Vertex 20453 7.05093 -16.721 2.41761 Vertex 20454 4.44842 -16.7228 2.77898 Vertex 20455 1.88831 -16.7034 1.56821 Vertex 20456 0.465696 -16.7279 -0.534167 Vertex 20457 0.473059 -16.6962 -3.1877 Vertex 20458 1.71047 -16.7393 -5.36534 Vertex 20459 0.552937 -14.529 -2.60225 Vertex 20460 0.323007 -13.2879 -2.75151 Vertex 20461 7.69488 -11.9015 -2.12047 Vertex 20462 7.44249 -9.96739 -1.63748 Vertex 20463 1.51517 -14.546 1.98028 Vertex 20464 4.11281 -8.66463 -5.26734 Vertex 20465 0.840618 -10.9963 -5.8909 Vertex 20466 0.822203 -8.86275 -5.91685 Vertex 20467 4.17234 -10.9143 -5.76174 Vertex 20468 2.52748 -11.0022 -6.17591 Vertex 20469 6.16681 -5.08259 -1.55957 Vertex 20470 6.0375 -4.94082 0.554979 Vertex 20471 6.05912 -12.1872 2.69989 Vertex 20472 2.65182 -12.1968 2.91407 Vertex 20473 3.91147 -5.02356 3.26027 Vertex 20474 0.355227 -11.7968 2.65113 Vertex 20475 0.705595 -5.10048 4.0928 Vertex 20476 2.64628 -13.2417 -5.85868 Vertex 20477 3.34203 -14.6754 -6.2946 Vertex 20478 4.06308 -12.2266 3.04411 Vertex 20479 1.52009 -14.6463 -4.58955 Vertex 20480 5.40158 -14.5066 -6.4157 Vertex 20481 8.08196 -11.9346 0.309053 Vertex 20482 0.181841 -12.505 1.31632 Vertex 20483 2.37238 -5.57927 -4.88344 Vertex 20484 5.44712 -5.36429 -3.00432 Vertex 20485 6.1351 -10.1345 2.65233 Vertex 20486 6.22692 -12.2594 -4.55102 Vertex 20487 5.86587 -7.64762 2.36794 Vertex 20488 6.17176 -10.3047 -3.87747 Vertex 20489 4.4494 -12.8045 -6.07542 Vertex 20490 0.816748 -12.425 -5.1741 Vertex 20491 6.06096 -8.16613 -3.36699 Vertex 20492 2.48722 -8.75762 -5.85545 Vertex 20493 0.794903 -5.58122 -5.10297 Vertex 20494 3.75427 -5.58843 -4.37798 Vertex 20495 6.89989 -7.77356 -1.58695 Vertex 20496 6.74243 -7.6317 1.01953 Vertex 20497 5.36664 -4.93931 1.96253 Vertex 20498 0.069102 -13.0861 -0.599957 Vertex 20499 0.44204 -10.5503 3.36694 Vertex 20500 4.19681 -7.79225 3.42999 Vertex 20501 2.25913 -7.9509 3.86968 Vertex 20502 0.561759 -8.08463 3.93642 Vertex 20503 2.28753 -5.06102 3.91179 Vertex 20504 0.297577 -14.4094 -0.262428 Vertex 20505 2.21159 -13.8449 2.51853 Vertex 20506 4.16043 -14.3906 2.88674 Vertex 20507 6.35812 -14.4111 2.63195 Vertex 20508 7.94164 -14.3253 1.45852 Vertex 20509 8.33159 -14.1502 -2.8976 Vertex 20510 6.95521 -14.2715 -5.26172 Vertex 20511 5.51901 3.89818 3.74212 Vertex 20512 4.08585 3.9483 4.44551 Vertex 20513 0.74856 3.96786 -5.49142 Vertex 20514 2.49761 3.96688 -5.07415 Vertex 20515 -7.305 -10.0132 1.48403 Vertex 20516 -7.47691 -12.0367 1.65745 Vertex 20517 -9.04959 -21.8003 -2.08939 Vertex 20518 -10.2259 -20.6506 -1.84912 Vertex 20519 -10.2839 -18.7949 -1.30981 Vertex 20520 -9.66625 -16.5878 -0.671608 Vertex 20521 -8.70921 -14.2336 -0.0870043 Vertex 20522 -1.45106 -21.8968 -2.35629 Vertex 20523 -2.78279 -21.8861 -0.441383 Vertex 20524 -9.11065 -21.7299 -4.35587 Vertex 20525 -7.89646 -21.7351 -6.42623 Vertex 20526 -4.62973 -21.8892 0.324356 Vertex 20527 -7.20477 -21.883 -0.017314 Vertex 20528 -6.15192 -20.6957 1.67576 Vertex 20529 -6.43839 -20.6945 1.63069 Vertex 20530 -3.22243 -5.04854 3.5415 Vertex 20531 -5.20108 -8.56539 -4.43158 Vertex 20532 -4.98498 -8.6006 -4.62701 Vertex 20533 -4.44905 -5.61157 -3.94036 Vertex 20534 -4.68969 -5.60324 -3.7693 Vertex 20535 -6.17122 -5.00251 -0.374502 Vertex 20536 -6.18605 -5.02138 -0.667118 Vertex 20537 -2.93237 -7.87324 3.75241 Vertex 20538 -3.22431 -7.87837 3.68621 Vertex 20539 -4.7479 -4.99096 2.61807 Vertex 20540 -4.52624 -5.00245 2.80877 Vertex 20541 -2.97364 -5.04798 3.61806 Vertex 20542 -1.27213 -8.01394 3.8717 Vertex 20543 -1.57103 -8.02156 3.85343 Vertex 20544 -1.03714 -10.5436 3.32975 Vertex 20545 -1.33352 -10.5849 3.3368 Vertex 20546 -0.850881 -11.9885 2.74221 Vertex 20547 -1.12079 -12.0752 2.78703 Vertex 20548 -1.30516 -12.8634 2.45535 Vertex 20549 -1.56602 -12.9986 2.43485 Vertex 20550 -2.56201 -10.3189 3.43061 Vertex 20551 -2.76747 -10.5378 3.36109 Vertex 20552 -1.93004 -11.9791 2.8598 Vertex 20553 -2.16818 -12.1117 2.82644 Vertex 20554 -1.94726 -10.4603 3.45271 Vertex 20555 -1.52499 -12.033 2.89744 Vertex 20556 -1.13412 -12.7393 2.56581 Vertex 20557 -0.303092 -14.5193 -1.28644 Vertex 20558 -0.347401 -14.5115 -1.57481 Vertex 20559 -0.280905 -16.6619 -2.09264 Vertex 20560 -0.26935 -16.7305 -1.81105 Vertex 20561 -0.309125 -18.913 -2.51799 Vertex 20562 -0.308048 -18.8363 -2.79721 Vertex 20563 -0.57263 -20.7341 -3.26768 Vertex 20564 -0.569559 -20.7611 -2.97875 Vertex 20565 -2.95973 -18.9145 -7.46053 Vertex 20566 -3.20682 -18.899 -7.63651 Vertex 20567 -3.15873 -20.8017 -7.46821 Vertex 20568 -3.41183 -20.787 -7.63161 Vertex 20569 -8.87383 -14.1993 -1.34556 Vertex 20570 -8.88229 -14.2352 -1.07424 Vertex 20571 -9.88018 -16.5667 -1.75128 Vertex 20572 -9.87037 -16.4831 -2.04734 Vertex 20573 -10.5307 -18.6198 -2.80622 Vertex 20574 -10.5244 -18.7122 -2.45863 Vertex 20575 -10.4469 -20.5488 -2.90933 Vertex 20576 -10.4609 -20.507 -3.2327 Vertex 20577 -8.67653 -16.5239 -5.1682 Vertex 20578 -8.48695 -16.4908 -5.45715 Vertex 20579 -9.06097 -18.6358 -6.36375 Vertex 20580 -9.31416 -18.6763 -5.97808 Vertex 20581 -9.29818 -20.5421 -6.06187 Vertex 20582 -9.02988 -20.535 -6.46827 Vertex 20583 -6.57426 3.9453 0.792065 Vertex 20584 -6.65866 3.88707 1.79795 Vertex 20585 -6.644 3.88353 1.93614 Vertex 20586 -0.808488 2.90197 5.06804 Vertex 20587 -1.68333 2.86208 4.97947 Vertex 20588 -1.82041 2.85777 4.96931 Vertex 20589 -2.70865 2.85445 4.90748 Vertex 20590 -4.11983 2.87846 4.40109 Vertex 20591 -4.77883 2.94075 3.85881 Vertex 20592 -4.95538 2.94029 3.71744 Vertex 20593 -5.72021 2.8199 3.44168 Vertex 20594 -6.57334 2.68544 2.31891 Vertex 20595 -6.40373 2.7365 -1.23374 Vertex 20596 -6.36677 2.5571 -2.0317 Vertex 20597 -6.30515 2.55003 -2.17472 Vertex 20598 -5.74426 2.60636 -2.97597 Vertex 20599 -4.35833 2.79933 -4.16834 Vertex 20600 -3.45438 2.95902 -4.50148 Vertex 20601 -3.2795 2.95483 -4.63841 Vertex 20602 -2.44425 2.83771 -5.19005 Vertex 20603 -0.811 2.82786 -5.52943 Vertex 20604 -1.76631 4.06354 4.80503 Vertex 20605 -1.58989 4.07444 4.81221 Vertex 20606 -6.099 3.79717 -2.00332 Vertex 20607 -6.18285 3.79859 -1.836 Vertex 20608 -5.06045 3.87784 -3.51768 Vertex 20609 -4.94044 3.88338 -3.64882 Vertex 20610 -0.751993 4.12867 4.87771 Vertex 20611 -2.62134 4.01567 4.7962 Vertex 20612 -6.44369 3.87753 2.66142 Vertex 20613 -6.61325 2.76484 0.583629 Vertex 20614 -6.34981 3.90645 -0.961093 Vertex 20615 -5.5981 3.84351 -2.78809 Vertex 20616 -4.25412 3.94338 -4.15495 Vertex 20617 -6.04159 0.629042 -1.56407 Vertex 20618 -0.797127 0.625431 4.41493 Vertex 20619 -2.38403 0.60384 4.2108 Vertex 20620 -3.93267 0.673366 3.55466 Vertex 20621 -5.32225 0.629464 2.2816 Vertex 20622 -6.05787 0.65246 0.584448 Vertex 20623 -5.18447 0.571009 -3.02573 Vertex 20624 -3.83215 0.64556 -3.94969 Vertex 20625 -2.29676 0.640231 -4.52413 Vertex 20626 -0.818247 0.617678 -4.72784 Vertex 20627 -4.97659 1.18414 3.27392 Vertex 20628 -4.80042 1.22352 3.48651 Vertex 20629 -6.18551 1.13896 -0.739532 Vertex 20630 -6.24381 1.13453 -0.461635 Vertex 20631 -3.23221 1.218 -4.38607 Vertex 20632 -3.00729 1.20608 -4.52884 Vertex 20633 -3.11101 1.96906 -4.61944 Vertex 20634 -3.34362 1.97529 -4.43751 Vertex 20635 -6.23741 1.87917 -0.630659 Vertex 20636 -6.2793 1.86904 -0.338375 Vertex 20637 -5.00018 1.99817 3.45819 Vertex 20638 -4.76491 1.99753 3.64671 Vertex 20639 -0.853675 1.77306 -5.47597 Vertex 20640 -2.39262 1.80132 -5.20995 Vertex 20641 -4.33713 1.7651 -4.1901 Vertex 20642 -5.76475 1.52408 -3.10869 Vertex 20643 -6.36738 1.67042 -1.51849 Vertex 20644 -6.60506 1.73231 0.353537 Vertex 20645 -6.63271 1.67067 1.95578 Vertex 20646 -5.79798 1.83592 3.21391 Vertex 20647 -0.821335 1.80104 5.09995 Vertex 20648 -2.65051 1.75492 4.9112 Vertex 20649 -4.11841 1.86289 4.29467 Vertex 20650 -6.29761 0.940978 -1.63631 Vertex 20651 -4.18276 1.00732 -4.17217 Vertex 20652 -0.85604 0.969771 -5.24398 Vertex 20653 -6.46774 0.981053 1.37629 Vertex 20654 -5.67451 1.03313 2.86863 Vertex 20655 -4.0827 1.0725 4.07643 Vertex 20656 -5.59697 0.812779 -3.14646 Vertex 20657 -0.810233 0.989837 4.89429 Vertex 20658 -2.35071 1.01294 -5.02734 Vertex 20659 -2.52891 0.929459 4.70093 Vertex 20660 -7.59739 -18.9066 1.91711 Vertex 20661 -9.38361 -18.8672 0.482211 Vertex 20662 -10.0587 -18.6227 -4.40627 Vertex 20663 -8.46851 -18.6036 -7.21802 Vertex 20664 -6.88382 -18.6769 -8.24973 Vertex 20665 -4.56401 -18.8117 -8.23031 Vertex 20666 -1.80438 -18.934 -6.21716 Vertex 20667 -0.522023 -18.8808 -3.9674 Vertex 20668 -0.551944 -18.9196 -1.18909 Vertex 20669 -1.99503 -18.8957 1.05832 Vertex 20670 -4.61915 -18.914 2.34691 Vertex 20671 -3.50824 -33.9299 -4.99953 Vertex 20672 -4.68409 -33.8897 -5.62806 Vertex 20673 -5.61935 -33.8286 -5.55348 Vertex 20674 -6.22208 -33.8022 -5.01681 Vertex 20675 -6.66684 -33.806 -3.95909 Vertex 20676 -6.59652 -33.8557 -2.65231 Vertex 20677 -5.91284 -33.9074 -1.79814 Vertex 20678 -4.76551 -33.9095 -1.55109 Vertex 20679 -3.63202 -33.9035 -1.92404 Vertex 20680 -2.96806 -33.9003 -2.86944 Vertex 20681 -2.87434 -33.9193 -3.95253 Vertex 20682 -3.15569 -32.8953 -5.72907 Vertex 20683 -4.68355 -32.8432 -6.54401 Vertex 20684 -5.93362 -32.764 -6.4473 Vertex 20685 -6.63243 -32.7297 -5.7087 Vertex 20686 -7.04049 -32.7347 -4.2945 Vertex 20687 -6.99919 -32.7991 -2.65938 Vertex 20688 -6.24327 -32.8661 -1.6111 Vertex 20689 -4.75949 -32.8689 -1.2743 Vertex 20690 -3.23836 -32.8612 -1.74139 Vertex 20691 -2.37924 -32.857 -2.9672 Vertex 20692 -2.30593 -32.8815 -4.37152 Vertex 20693 -3.19229 -31.2942 -5.9238 Vertex 20694 -4.80838 -31.2393 -6.7827 Vertex 20695 -6.28451 -31.1558 -6.68077 Vertex 20696 -7.1397 -31.1197 -5.96969 Vertex 20697 -7.53524 -31.125 -4.54657 Vertex 20698 -7.37609 -31.1928 -2.70882 Vertex 20699 -6.45061 -31.2634 -1.48956 Vertex 20700 -4.8105 -31.2664 -1.18169 Vertex 20701 -3.09523 -31.2582 -1.72106 Vertex 20702 -2.0451 -31.2538 -3.01298 Vertex 20703 -2.07752 -31.2797 -4.49304 Vertex 20704 -3.31712 -28.9331 -5.47714 Vertex 20705 -4.83354 -28.883 -6.26011 Vertex 20706 -6.1881 -28.807 -6.1672 Vertex 20707 -7.09414 -28.774 -5.5744 Vertex 20708 -7.63744 -28.7788 -4.3325 Vertex 20709 -7.40221 -28.8406 -2.56844 Vertex 20710 -6.3368 -28.9051 -1.3682 Vertex 20711 -4.68214 -28.9078 -1.12089 Vertex 20712 -2.97206 -28.9003 -1.64592 Vertex 20713 -2.00176 -28.8963 -2.82363 Vertex 20714 -2.16431 -28.9199 -4.17286 Vertex 20715 -4.71996 -21.8944 -7.18025 Vertex 20716 -6.63104 -21.7854 -7.13536 Vertex 20717 -8.35504 -21.7239 -5.83362 Vertex 20718 -8.55569 -21.7234 -5.50889 Vertex 20719 -6.18787 -21.8491 0.310948 Vertex 20720 -5.89075 -21.8499 0.352484 Vertex 20721 -2.08073 -21.8585 -1.26328 Vertex 20722 -1.89959 -21.8598 -1.53178 Vertex 20723 -1.44286 -21.9543 -4.18192 Vertex 20724 -2.52002 -21.9761 -5.86418 Vertex 20725 -4.72787 -20.7279 -8.1405 Vertex 20726 -6.96116 -20.6019 -8.11481 Vertex 20727 -8.46742 -20.5359 -7.22633 Vertex 20728 -10.0215 -20.5226 -4.65224 Vertex 20729 -9.37623 -20.7265 -0.203213 Vertex 20730 -7.69445 -20.7404 1.09612 Vertex 20731 -4.62731 -20.7528 1.53055 Vertex 20732 -2.23186 -20.7467 0.383681 Vertex 20733 -0.777958 -20.7677 -1.82529 Vertex 20734 -0.777365 -20.7961 -4.33752 Vertex 20735 -2.02335 -20.8362 -6.3569 Vertex 20736 -4.1697 -16.6258 -7.2305 Vertex 20737 -6.40205 -16.4878 -7.29674 Vertex 20738 -7.9231 -16.424 -6.27491 Vertex 20739 -9.38686 -16.4543 -3.6291 Vertex 20740 -8.80735 -16.6497 1.03113 Vertex 20741 -7.05093 -16.721 2.41761 Vertex 20742 -4.44842 -16.7228 2.77898 Vertex 20743 -1.88831 -16.7034 1.56821 Vertex 20744 -0.465696 -16.7279 -0.534167 Vertex 20745 -0.473059 -16.6962 -3.1877 Vertex 20746 -1.71047 -16.7393 -5.36534 Vertex 20747 -0.552937 -14.529 -2.60225 Vertex 20748 -0.323007 -13.2879 -2.75151 Vertex 20749 -7.69488 -11.9015 -2.12047 Vertex 20750 -7.44249 -9.96739 -1.63748 Vertex 20751 -1.51517 -14.5461 1.98028 Vertex 20752 -4.11281 -8.66464 -5.26734 Vertex 20753 -0.840618 -10.9963 -5.8909 Vertex 20754 -0.822203 -8.86275 -5.91685 Vertex 20755 -4.17234 -10.9143 -5.76174 Vertex 20756 -2.52747 -11.0022 -6.17591 Vertex 20757 -6.16681 -5.08259 -1.55957 Vertex 20758 -6.0375 -4.94082 0.554979 Vertex 20759 -6.05912 -12.1872 2.69989 Vertex 20760 -2.65182 -12.1968 2.91407 Vertex 20761 -3.91147 -5.02357 3.26027 Vertex 20762 -0.355227 -11.7968 2.65113 Vertex 20763 -0.705595 -5.10048 4.0928 Vertex 20764 -2.64628 -13.2417 -5.85868 Vertex 20765 -3.34203 -14.6754 -6.2946 Vertex 20766 -4.06307 -12.2266 3.04411 Vertex 20767 -1.52009 -14.6463 -4.58955 Vertex 20768 -5.40158 -14.5066 -6.4157 Vertex 20769 -8.08196 -11.9346 0.309053 Vertex 20770 -0.181841 -12.505 1.31632 Vertex 20771 -2.37238 -5.57927 -4.88344 Vertex 20772 -5.44712 -5.36429 -3.00432 Vertex 20773 -6.1351 -10.1345 2.65233 Vertex 20774 -6.22691 -12.2594 -4.55102 Vertex 20775 -5.86587 -7.64762 2.36795 Vertex 20776 -6.17176 -10.3047 -3.87747 Vertex 20777 -4.4494 -12.8045 -6.07542 Vertex 20778 -0.816748 -12.425 -5.1741 Vertex 20779 -6.06096 -8.16613 -3.36699 Vertex 20780 -2.48722 -8.75762 -5.85545 Vertex 20781 -0.794903 -5.58122 -5.10297 Vertex 20782 -3.75427 -5.58843 -4.37798 Vertex 20783 -6.89989 -7.77356 -1.58695 Vertex 20784 -6.74243 -7.6317 1.01953 Vertex 20785 -5.36664 -4.93931 1.96253 Vertex 20786 -0.069102 -13.0861 -0.599957 Vertex 20787 -0.44204 -10.5503 3.36694 Vertex 20788 -4.19681 -7.79225 3.42999 Vertex 20789 -2.25913 -7.9509 3.86969 Vertex 20790 -0.561759 -8.08463 3.93642 Vertex 20791 -2.28753 -5.06102 3.91179 Vertex 20792 -0.297577 -14.4094 -0.262428 Vertex 20793 -2.21159 -13.8449 2.51853 Vertex 20794 -4.16043 -14.3906 2.88674 Vertex 20795 -6.35812 -14.4111 2.63195 Vertex 20796 -7.94164 -14.3253 1.45852 Vertex 20797 -8.33159 -14.1502 -2.8976 Vertex 20798 -6.95521 -14.2715 -5.26172 Vertex 20799 -5.51901 3.89818 3.74212 Vertex 20800 -4.08585 3.9483 4.44551 Vertex 20801 -0.74856 3.96786 -5.49142 Vertex 20802 -2.49761 3.96688 -5.07415 Vertex 20803 4.37632 6.847 -5.11241 Vertex 20804 6.25124 9.01903 -3.91517 Vertex 20805 6.79349 8.38057 -2.02858 Vertex 20806 7.50043 9.38598 -0.442105 Vertex 20807 7.84744 11.282 -0.329666 Vertex 20808 7.65733 12.6321 -1.52635 Vertex 20809 3.62423 11.607 -5.47595 Vertex 20810 -4.85029 6.6578 -4.79937 Vertex 20811 -7.86773 10.3721 0.161975 Vertex 20812 -7.30092 8.76034 -0.72736 Vertex 20813 -6.58763 8.55035 -2.71019 Vertex 20814 -6.33851 9.87753 -4.06829 Vertex 20815 -6.74302 11.863 -3.83064 Vertex 20816 -4.01938 12.0707 -5.29074 Vertex 20817 2.54773 4.62678 -5.10205 Vertex 20818 0.722052 4.63396 -5.57799 Vertex 20819 4.08831 4.56161 4.57036 Vertex 20820 5.50029 4.5073 3.97376 Vertex 20821 8.12115 12.359 -0.332699 Vertex 20822 8.27346 11.4814 0.529121 Vertex 20823 8.22128 10.1416 1.01347 Vertex 20824 7.94717 8.72546 0.886046 Vertex 20825 7.56979 7.63165 0.303495 Vertex 20826 7.07105 6.86933 -0.790556 Vertex 20827 6.5109 6.68278 -2.33718 Vertex 20828 6.11926 7.20265 -3.72781 Vertex 20829 5.96802 8.1641 -4.62632 Vertex 20830 6.00477 9.37917 -5.09641 Vertex 20831 6.26356 10.7965 -5.01429 Vertex 20832 6.78986 12.1979 -4.14348 Vertex 20833 7.38593 12.9648 -2.76739 Vertex 20834 7.83504 12.8844 -1.41781 Vertex 20835 8.26313 12.4501 -0.298646 Vertex 20836 8.42194 11.535 0.599965 Vertex 20837 8.36754 10.138 1.105 Vertex 20838 8.08173 8.66138 0.972128 Vertex 20839 7.69186 7.52725 0.372295 Vertex 20840 7.17183 6.73239 -0.76846 Vertex 20841 6.58414 6.5315 -2.3887 Vertex 20842 6.17578 7.07356 -3.83869 Vertex 20843 6.01808 8.07606 -4.77556 Vertex 20844 6.05641 9.34299 -5.26573 Vertex 20845 6.32624 10.8208 -5.18009 Vertex 20846 6.87501 12.2821 -4.27211 Vertex 20847 7.49652 13.0817 -2.83727 Vertex 20848 7.96481 12.9979 -1.43008 Vertex 20849 8.28011 12.5806 -0.207995 Vertex 20850 8.44651 11.6217 0.733546 Vertex 20851 8.3895 10.1579 1.2627 Vertex 20852 8.09004 8.61082 1.12349 Vertex 20853 7.68562 7.42964 0.503489 Vertex 20854 7.14074 6.5968 -0.691762 Vertex 20855 6.52091 6.37919 -2.39789 Vertex 20856 6.09304 6.94714 -3.91715 Vertex 20857 5.92781 7.99754 -4.89878 Vertex 20858 5.96797 9.325 -5.41236 Vertex 20859 6.25069 10.8734 -5.32264 Vertex 20860 6.82567 12.4045 -4.37128 Vertex 20861 7.47688 13.2423 -2.8679 Vertex 20862 7.96754 13.1546 -1.39348 Vertex 20863 8.19843 12.7179 -0.090175 Vertex 20864 8.37189 11.7183 0.89135 Vertex 20865 8.31247 10.1924 1.44298 Vertex 20866 8.00029 8.57959 1.29785 Vertex 20867 7.5823 7.35459 0.659071 Vertex 20868 7.01429 6.48639 -0.58694 Vertex 20869 6.36452 6.25319 -2.37306 Vertex 20870 5.91849 6.84527 -3.95685 Vertex 20871 5.74624 7.94026 -4.98016 Vertex 20872 5.7881 9.32409 -5.51555 Vertex 20873 6.08283 10.9383 -5.42202 Vertex 20874 6.68223 12.5344 -4.43026 Vertex 20875 7.36109 13.4078 -2.86303 Vertex 20876 7.87258 13.3163 -1.326 Vertex 20877 8.0781 12.8008 -0.003111 Vertex 20878 8.25517 11.7804 0.998822 Vertex 20879 8.19452 10.2228 1.56192 Vertex 20880 7.87585 8.57644 1.41377 Vertex 20881 7.45094 7.32908 0.765407 Vertex 20882 6.87112 6.44283 -0.506511 Vertex 20883 6.20607 6.20168 -2.33346 Vertex 20884 5.75076 6.80607 -3.95017 Vertex 20885 5.57493 7.92383 -4.99477 Vertex 20886 5.61766 9.33642 -5.54129 Vertex 20887 5.91852 10.9841 -5.44581 Vertex 20888 6.53039 12.6135 -4.43343 Vertex 20889 7.22336 13.505 -2.83362 Vertex 20890 7.74548 13.4116 -1.26463 Vertex 20891 3.21665 13.1333 -4.43553 Vertex 20892 3.30668 13.1964 -4.67433 Vertex 20893 3.45151 13.1059 -4.91333 Vertex 20894 3.53053 12.912 -5.03854 Vertex 20895 4.96965 13.6666 0.76161 Vertex 20896 5.29362 14.5626 -0.742512 Vertex 20897 4.92208 14.5653 -2.73627 Vertex 20898 3.89373 13.6983 -4.07132 Vertex 20899 1.53299 13.0508 -4.48587 Vertex 20900 0.629443 6.80548 4.69403 Vertex 20901 1.651 7.33403 4.72185 Vertex 20902 2.74455 9.00838 4.04523 Vertex 20903 3.94162 11.0591 2.70364 Vertex 20904 4.58249 12.5397 1.753 Vertex 20905 4.24633 10.9566 2.95752 Vertex 20906 3.01284 8.87713 4.32362 Vertex 20907 5.49912 14.7024 -0.716162 Vertex 20908 5.16352 13.768 0.843783 Vertex 20909 4.75683 12.6208 1.87827 Vertex 20910 4.08496 11.1236 2.92791 Vertex 20911 2.87271 9.04589 4.24104 Vertex 20912 1.72081 7.31496 4.95904 Vertex 20913 0.65772 6.77809 4.93002 Vertex 20914 5.34188 13.6007 0.787795 Vertex 20915 4.92951 12.4531 1.86316 Vertex 20916 1.83771 7.13993 5.07084 Vertex 20917 0.711248 6.59895 5.04217 Vertex 20918 1.56846 13.151 -4.72689 Vertex 20919 4.01862 13.8087 -4.24487 Vertex 20920 5.0975 14.7309 -2.79599 Vertex 20921 5.79509 14.3737 -0.852589 Vertex 20922 5.46252 14.451 -2.91393 Vertex 20923 4.41376 13.5607 -4.49854 Vertex 20924 1.58035 12.7894 -5.13085 Vertex 20925 5.39297 13.3937 0.654191 Vertex 20926 5.70541 14.5699 -0.781287 Vertex 20927 5.30519 14.6406 -2.90241 Vertex 20928 4.22522 13.7351 -4.43946 Vertex 20929 1.59839 13.0299 -4.97417 Vertex 20930 0.771698 6.39654 5.00218 Vertex 20931 1.95249 6.93881 5.03138 Vertex 20932 3.10245 8.67156 4.26944 Vertex 20933 4.31794 10.7482 2.86928 Vertex 20934 4.99309 12.2458 1.74827 Vertex 20935 7.4038 12.9112 0.185411 Vertex 20936 7.22417 13.6278 -1.17828 Vertex 20937 6.74524 13.71 -2.87283 Vertex 20938 5.94083 12.7878 -4.49456 Vertex 20939 5.18464 11.157 -5.4725 Vertex 20940 5.22279 12.1145 1.58846 Vertex 20941 6.27612 14.0592 -0.997141 Vertex 20942 0.839028 6.71511 -5.9162 Vertex 20943 2.66939 6.71095 -5.61094 Vertex 20944 5.41093 6.09846 -3.87111 Vertex 20945 6.05962 5.79603 -2.33854 Vertex 20946 3.9688 5.04581 -4.67403 Vertex 20947 4.72168 9.27476 -5.66313 Vertex 20948 4.37759 8.57649 3.95847 Vertex 20949 4.8003 10.6262 2.62326 Vertex 20950 7.13525 5.98334 1.45257 Vertex 20951 6.92115 5.77422 3.3119 Vertex 20952 5.83736 5.70275 4.42338 Vertex 20953 4.13518 5.73702 4.97745 Vertex 20954 2.38518 5.81303 5.02873 Vertex 20955 0.788 5.91017 4.9384 Vertex 20956 7.37637 7.11973 1.70231 Vertex 20957 7.04093 6.82116 3.24763 Vertex 20958 5.93029 6.76374 4.27176 Vertex 20959 4.20938 6.79725 4.86114 Vertex 20960 2.63333 6.83434 5.01252 Vertex 20961 6.37817 4.59025 -0.897268 Vertex 20962 6.32226 10.7879 -4.54838 Vertex 20963 0.73303 4.86332 4.86883 Vertex 20964 5.67993 4.91049 4.22526 Vertex 20965 5.84604 8.54717 3.43808 Vertex 20966 5.75367 10.5522 2.26985 Vertex 20967 7.5067 8.54766 1.86445 Vertex 20968 6.54111 5.04425 -0.772035 Vertex 20969 6.71182 4.96109 3.08012 Vertex 20970 4.10087 4.95773 4.81769 Vertex 20971 5.83455 5.04448 -2.50961 Vertex 20972 4.34432 4.6092 -4.1527 Vertex 20973 5.60664 4.58174 -2.68033 Vertex 20974 2.60231 5.05218 -5.21437 Vertex 20975 4.94501 13.2176 -4.53188 Vertex 20976 7.54523 10.2882 1.6668 Vertex 20977 7.51834 11.8021 1.12171 Vertex 20978 6.88792 5.0314 1.18969 Vertex 20979 6.50125 4.55792 2.82016 Vertex 20980 2.49205 4.71789 4.84412 Vertex 20981 0.76511 5.24137 4.94453 Vertex 20982 2.39768 5.09749 4.98174 Vertex 20983 6.86178 8.51768 2.72489 Vertex 20984 6.66865 4.61394 0.935092 Vertex 20985 6.17306 13.1416 0.442948 Vertex 20986 6.58776 10.4284 1.92322 Vertex 20987 6.72468 5.91685 -0.556203 Vertex 20988 4.81001 5.04426 -3.98097 Vertex 20989 2.98038 9.39655 -5.863 Vertex 20990 5.91343 14.1283 -2.91224 Vertex 20991 1.36799 11.8988 -5.43976 Vertex 20992 0.762365 5.05616 -5.66807 Vertex 20993 1.03667 9.59328 -5.94484 Vertex 20994 -2.54773 4.62678 -5.10205 Vertex 20995 -0.722052 4.63396 -5.57799 Vertex 20996 -4.08831 4.56161 4.57036 Vertex 20997 -5.50028 4.5073 3.97376 Vertex 20998 -8.12115 12.359 -0.332699 Vertex 20999 -8.27346 11.4814 0.529121 Vertex 21000 -8.22128 10.1416 1.01347 Vertex 21001 -7.94717 8.72546 0.886046 Vertex 21002 -7.56979 7.63165 0.303495 Vertex 21003 -7.07105 6.86933 -0.790556 Vertex 21004 -6.51089 6.68278 -2.33718 Vertex 21005 -6.11926 7.20265 -3.72781 Vertex 21006 -5.96802 8.1641 -4.62632 Vertex 21007 -6.00477 9.37917 -5.09641 Vertex 21008 -6.26356 10.7965 -5.01429 Vertex 21009 -6.78986 12.1979 -4.14348 Vertex 21010 -7.38593 12.9648 -2.76739 Vertex 21011 -7.83504 12.8844 -1.41781 Vertex 21012 -8.26313 12.4501 -0.298646 Vertex 21013 -8.42195 11.535 0.599965 Vertex 21014 -8.36754 10.138 1.105 Vertex 21015 -8.08173 8.66138 0.972128 Vertex 21016 -7.69186 7.52725 0.372295 Vertex 21017 -7.17183 6.73239 -0.76846 Vertex 21018 -6.58413 6.5315 -2.3887 Vertex 21019 -6.17578 7.07356 -3.83869 Vertex 21020 -6.01808 8.07606 -4.77556 Vertex 21021 -6.05641 9.34299 -5.26573 Vertex 21022 -6.32624 10.8208 -5.18009 Vertex 21023 -6.875 12.2821 -4.27211 Vertex 21024 -7.49652 13.0817 -2.83727 Vertex 21025 -7.96481 12.9979 -1.43008 Vertex 21026 -8.28011 12.5806 -0.207995 Vertex 21027 -8.44651 11.6217 0.733546 Vertex 21028 -8.3895 10.1579 1.2627 Vertex 21029 -8.09004 8.61082 1.12349 Vertex 21030 -7.68562 7.42964 0.503489 Vertex 21031 -7.14074 6.5968 -0.691762 Vertex 21032 -6.52091 6.37919 -2.39789 Vertex 21033 -6.09304 6.94714 -3.91715 Vertex 21034 -5.92781 7.99753 -4.89878 Vertex 21035 -5.96797 9.325 -5.41236 Vertex 21036 -6.25069 10.8734 -5.32264 Vertex 21037 -6.82567 12.4045 -4.37128 Vertex 21038 -7.47688 13.2423 -2.8679 Vertex 21039 -7.96754 13.1546 -1.39348 Vertex 21040 -8.19843 12.7179 -0.090175 Vertex 21041 -8.37189 11.7183 0.89135 Vertex 21042 -8.31247 10.1924 1.44298 Vertex 21043 -8.00029 8.57959 1.29785 Vertex 21044 -7.5823 7.35459 0.659071 Vertex 21045 -7.01429 6.48639 -0.586941 Vertex 21046 -6.36452 6.25319 -2.37306 Vertex 21047 -5.91849 6.84527 -3.95685 Vertex 21048 -5.74624 7.94026 -4.98016 Vertex 21049 -5.7881 9.32409 -5.51555 Vertex 21050 -6.08283 10.9383 -5.42202 Vertex 21051 -6.68223 12.5344 -4.43026 Vertex 21052 -7.36109 13.4078 -2.86303 Vertex 21053 -7.87259 13.3163 -1.326 Vertex 21054 -8.0781 12.8008 -0.003111 Vertex 21055 -8.25517 11.7805 0.998822 Vertex 21056 -8.19451 10.2228 1.56192 Vertex 21057 -7.87585 8.57644 1.41377 Vertex 21058 -7.45093 7.32909 0.765407 Vertex 21059 -6.87111 6.44283 -0.506511 Vertex 21060 -6.20607 6.20168 -2.33347 Vertex 21061 -5.75076 6.80607 -3.95017 Vertex 21062 -5.57493 7.92383 -4.99477 Vertex 21063 -5.61766 9.33642 -5.54129 Vertex 21064 -5.91852 10.9841 -5.44581 Vertex 21065 -6.53039 12.6135 -4.43343 Vertex 21066 -7.22336 13.505 -2.83362 Vertex 21067 -7.74549 13.4116 -1.26463 Vertex 21068 -3.21665 13.1333 -4.43553 Vertex 21069 -3.30668 13.1964 -4.67433 Vertex 21070 -3.45151 13.1059 -4.91333 Vertex 21071 -3.53053 12.912 -5.03854 Vertex 21072 -4.96965 13.6666 0.76161 Vertex 21073 -5.29362 14.5626 -0.742512 Vertex 21074 -4.92208 14.5653 -2.73627 Vertex 21075 -3.89373 13.6983 -4.07132 Vertex 21076 -1.53299 13.0507 -4.48587 Vertex 21077 -0.629443 6.80548 4.69403 Vertex 21078 -1.651 7.33403 4.72185 Vertex 21079 -2.74455 9.00838 4.04523 Vertex 21080 -3.94162 11.0591 2.70364 Vertex 21081 -4.58249 12.5397 1.753 Vertex 21082 -4.24633 10.9566 2.95752 Vertex 21083 -3.01284 8.87713 4.32362 Vertex 21084 -5.49912 14.7024 -0.716162 Vertex 21085 -5.16352 13.768 0.843783 Vertex 21086 -4.75683 12.6209 1.87827 Vertex 21087 -4.08496 11.1236 2.92791 Vertex 21088 -2.87271 9.04589 4.24104 Vertex 21089 -1.72081 7.31496 4.95904 Vertex 21090 -0.65772 6.77809 4.93002 Vertex 21091 -5.34188 13.6007 0.787795 Vertex 21092 -4.92951 12.4531 1.86316 Vertex 21093 -1.83771 7.13993 5.07084 Vertex 21094 -0.711248 6.59895 5.04217 Vertex 21095 -1.56846 13.151 -4.72689 Vertex 21096 -4.01862 13.8087 -4.24487 Vertex 21097 -5.0975 14.7309 -2.79599 Vertex 21098 -5.79509 14.3737 -0.852589 Vertex 21099 -5.46252 14.451 -2.91393 Vertex 21100 -4.41376 13.5607 -4.49854 Vertex 21101 -1.58035 12.7894 -5.13085 Vertex 21102 -5.39297 13.3937 0.654191 Vertex 21103 -5.70541 14.5699 -0.781287 Vertex 21104 -5.30519 14.6406 -2.90241 Vertex 21105 -4.22522 13.7351 -4.43946 Vertex 21106 -1.59839 13.0299 -4.97417 Vertex 21107 -0.771698 6.39654 5.00218 Vertex 21108 -1.95248 6.93881 5.03138 Vertex 21109 -3.10245 8.67156 4.26944 Vertex 21110 -4.31794 10.7482 2.86928 Vertex 21111 -4.99309 12.2458 1.74827 Vertex 21112 -7.40381 12.9112 0.185411 Vertex 21113 -7.22417 13.6278 -1.17828 Vertex 21114 -6.74524 13.71 -2.87283 Vertex 21115 -5.94083 12.7878 -4.49456 Vertex 21116 -5.18464 11.157 -5.47249 Vertex 21117 -5.22279 12.1146 1.58846 Vertex 21118 -6.27612 14.0592 -0.997141 Vertex 21119 -0.839028 6.71511 -5.9162 Vertex 21120 -2.66939 6.71095 -5.61095 Vertex 21121 -5.41093 6.09846 -3.87111 Vertex 21122 -6.05962 5.79603 -2.33854 Vertex 21123 -3.9688 5.04581 -4.67403 Vertex 21124 -4.72168 9.27476 -5.66313 Vertex 21125 -4.37759 8.57649 3.95847 Vertex 21126 -4.8003 10.6262 2.62326 Vertex 21127 -7.13525 5.98334 1.45257 Vertex 21128 -6.92115 5.77421 3.3119 Vertex 21129 -5.83736 5.70275 4.42338 Vertex 21130 -4.13518 5.73701 4.97745 Vertex 21131 -2.38518 5.81302 5.02873 Vertex 21132 -0.788 5.91017 4.9384 Vertex 21133 -7.37637 7.11973 1.70231 Vertex 21134 -7.04094 6.82116 3.24763 Vertex 21135 -5.93029 6.76374 4.27176 Vertex 21136 -4.20938 6.79725 4.86114 Vertex 21137 -2.63333 6.83434 5.01252 Vertex 21138 -6.37817 4.59025 -0.897268 Vertex 21139 -7.95336 12.1606 -0.437895 Vertex 21140 -0.73303 4.86332 4.86883 Vertex 21141 -5.67993 4.91049 4.22526 Vertex 21142 -5.84604 8.54717 3.43808 Vertex 21143 -5.75367 10.5522 2.26985 Vertex 21144 -7.50671 8.54766 1.86445 Vertex 21145 -6.54112 5.04425 -0.772035 Vertex 21146 -6.71182 4.96109 3.08012 Vertex 21147 -4.10086 4.95773 4.81769 Vertex 21148 -5.83455 5.04448 -2.50961 Vertex 21149 -4.34432 4.6092 -4.1527 Vertex 21150 -5.60664 4.58174 -2.68033 Vertex 21151 -2.60231 5.05218 -5.21437 Vertex 21152 -4.94501 13.2176 -4.53188 Vertex 21153 -7.54523 10.2882 1.6668 Vertex 21154 -7.51834 11.8021 1.12171 Vertex 21155 -6.88792 5.0314 1.18969 Vertex 21156 -6.50125 4.55791 2.82016 Vertex 21157 -2.49205 4.71789 4.84412 Vertex 21158 -0.76511 5.24137 4.94453 Vertex 21159 -2.39768 5.09749 4.98174 Vertex 21160 -6.86178 8.51768 2.72489 Vertex 21161 -6.66865 4.61394 0.935092 Vertex 21162 -6.17306 13.1416 0.442948 Vertex 21163 -6.58776 10.4284 1.92322 Vertex 21164 -6.72468 5.91685 -0.556203 Vertex 21165 -4.81001 5.04426 -3.98097 Vertex 21166 -2.98038 9.39655 -5.863 Vertex 21167 -5.91343 14.1284 -2.91224 Vertex 21168 -1.36799 11.8988 -5.43976 Vertex 21169 -0.762365 5.05616 -5.66807 Vertex 21170 -1.03667 9.59328 -5.94484 Vertex 21171 1.8867 -22.2854 -2.49395 Vertex 21172 3.05563 -22.2914 -0.911257 Vertex 21173 8.5405 -22.155 -4.22906 Vertex 21174 7.65423 -22.1394 -5.97783 Vertex 21175 4.73466 -22.3053 -0.281314 Vertex 21176 6.80251 -22.3071 -0.55043 Vertex 21177 7.14353 -25.6278 -5.36159 Vertex 21178 7.77107 -25.6327 -4.11867 Vertex 21179 7.51284 -25.6945 -2.31262 Vertex 21180 6.33798 -25.759 -1.07085 Vertex 21181 4.64758 -25.7616 -0.863866 Vertex 21182 2.95267 -25.7542 -1.42987 Vertex 21183 2.10936 -25.7502 -2.60856 Vertex 21184 2.20962 -25.7738 -3.95889 Vertex 21185 3.20616 -25.7871 -5.26425 Vertex 21186 4.77385 -25.7369 -6.04787 Vertex 21187 6.17734 -25.6608 -5.95488 Vertex 21188 6.31279 -23.9166 -6.15905 Vertex 21189 4.7461 -23.9993 -6.26007 Vertex 21190 3.03873 -24.0538 -5.40881 Vertex 21191 2.0492 -24.0394 -3.99077 Vertex 21192 2.07351 -24.0137 -2.52387 Vertex 21193 3.00987 -24.0182 -1.24344 Vertex 21194 4.7472 -24.0262 -0.628579 Vertex 21195 6.5163 -24.0233 -0.853429 Vertex 21196 7.80358 -23.9533 -2.20239 Vertex 21197 8.09183 -23.8861 -4.16434 Vertex 21198 7.39133 -23.8808 -5.51455 Vertex 21199 3.15764 -25.9698 -5.34796 Vertex 21200 4.75525 -25.9223 -6.15337 Vertex 21201 6.19195 -25.8465 -6.04937 Vertex 21202 7.21564 -25.8151 -5.42506 Vertex 21203 7.85992 -25.8214 -4.12692 Vertex 21204 7.58498 -25.8827 -2.2578 Vertex 21205 6.36384 -25.9448 -0.97699 Vertex 21206 4.61652 -25.943 -0.764205 Vertex 21207 2.86231 -25.9301 -1.36214 Vertex 21208 1.99181 -25.9255 -2.60454 Vertex 21209 2.10854 -25.9524 -4.00544 Vertex 21210 2.02419 -27.4944 -2.68106 Vertex 21211 2.81061 -27.4993 -1.53065 Vertex 21212 4.52644 -27.5122 -0.976954 Vertex 21213 6.20255 -27.5148 -1.17364 Vertex 21214 7.32179 -27.4588 -2.35753 Vertex 21215 7.56946 -27.4029 -4.08558 Vertex 21216 6.99133 -27.3964 -5.28662 Vertex 21217 6.06939 -27.4244 -5.86468 Vertex 21218 4.78032 -27.4934 -5.96151 Vertex 21219 3.30898 -27.5365 -5.21729 Vertex 21220 2.25352 -27.5197 -3.97662 Vertex 21221 2.08017 -25.6191 -4.01037 Vertex 21222 2.0015 -25.5934 -2.55942 Vertex 21223 2.87683 -25.599 -1.31253 Vertex 21224 4.62113 -25.6103 -0.727929 Vertex 21225 6.39754 -25.6132 -0.935325 Vertex 21226 7.64028 -25.5532 -2.26308 Vertex 21227 7.92543 -25.4935 -4.14705 Vertex 21228 7.25926 -25.4845 -5.44433 Vertex 21229 6.20925 -25.5133 -6.09338 Vertex 21230 4.74879 -25.5892 -6.19385 Vertex 21231 3.12859 -25.6375 -5.38064 Vertex 21232 4.72639 -24.1847 -6.36538 Vertex 21233 6.31891 -24.1017 -6.2586 Vertex 21234 7.46007 -24.0689 -5.56826 Vertex 21235 8.18557 -24.0771 -4.18407 Vertex 21236 7.87591 -24.1424 -2.17384 Vertex 21237 6.5418 -24.2091 -0.75945 Vertex 21238 4.70166 -24.2074 -0.537721 Vertex 21239 2.92303 -24.1968 -1.16194 Vertex 21240 1.9736 -24.208 -2.49128 Vertex 21241 1.95166 -24.235 -4.03634 Vertex 21242 2.99335 -24.2374 -5.49742 Vertex 21243 1.94907 -23.8382 -2.48644 Vertex 21244 2.93078 -23.86 -1.13581 Vertex 21245 4.73235 -23.8748 -0.484943 Vertex 21246 6.57554 -23.8775 -0.717803 Vertex 21247 7.93041 -23.8111 -2.12564 Vertex 21248 8.24059 -23.7447 -4.18162 Vertex 21249 7.50857 -23.7366 -5.60913 Vertex 21250 6.3506 -23.7695 -6.29468 Vertex 21251 4.71986 -23.8515 -6.40728 Vertex 21252 2.95269 -23.9036 -5.51215 Vertex 21253 1.91022 -23.8682 -4.0236 Vertex 21254 2.79021 -22.3317 -5.70618 Vertex 21255 4.6658 -22.2668 -6.76379 Vertex 21256 6.43782 -22.1751 -6.68009 Vertex 21257 8.19015 -22.2334 -2.04544 Vertex 21258 1.76626 -22.3169 -4.05264 Vertex 21259 6.15695 -26.6706 -6.06915 Vertex 21260 6.28311 -24.8264 -6.29501 Vertex 21261 6.51221 -24.9312 -0.732636 Vertex 21262 7.85797 -24.8717 -2.17942 Vertex 21263 8.17955 -24.8112 -4.18961 Vertex 21264 7.45191 -24.7991 -5.57453 Vertex 21265 7.70025 -22.9439 -5.85322 Vertex 21266 8.49807 -22.9577 -4.26722 Vertex 21267 8.16249 -23.0298 -2.01646 Vertex 21268 6.7 -23.0968 -0.502652 Vertex 21269 4.6254 -24.9238 -0.519428 Vertex 21270 2.81858 -24.9097 -1.13781 Vertex 21271 1.88266 -24.9035 -2.48427 Vertex 21272 1.90142 -24.9316 -4.07166 Vertex 21273 2.9995 -24.9545 -5.54152 Vertex 21274 4.7152 -24.9058 -6.40525 Vertex 21275 4.74676 -26.7424 -6.18134 Vertex 21276 3.17023 -26.7851 -5.37889 Vertex 21277 2.06596 -26.7635 -4.04035 Vertex 21278 1.88732 -26.7335 -2.63138 Vertex 21279 2.75107 -26.7396 -1.36244 Vertex 21280 4.54905 -26.7585 -0.750521 Vertex 21281 4.66913 -23.0621 -6.71373 Vertex 21282 6.42044 -22.9757 -6.60486 Vertex 21283 7.19685 -26.643 -5.43244 Vertex 21284 7.83097 -26.6515 -4.11841 Vertex 21285 7.55047 -26.7095 -2.24334 Vertex 21286 6.32446 -26.7656 -0.962656 Vertex 21287 4.7539 -23.0892 -0.255331 Vertex 21288 2.87256 -23.0684 -0.960144 Vertex 21289 1.8136 -23.0618 -2.41858 Vertex 21290 1.71477 -23.0966 -4.06851 Vertex 21291 2.79998 -23.1182 -5.69993 Vertex 21292 -1.8867 -22.2854 -2.49394 Vertex 21293 -3.05563 -22.2914 -0.911257 Vertex 21294 -8.5405 -22.155 -4.22906 Vertex 21295 -7.65423 -22.1394 -5.97783 Vertex 21296 -4.73466 -22.3053 -0.281314 Vertex 21297 -6.80251 -22.3071 -0.550429 Vertex 21298 -7.14353 -25.6278 -5.36159 Vertex 21299 -7.77107 -25.6327 -4.11867 Vertex 21300 -7.51284 -25.6945 -2.31262 Vertex 21301 -6.33798 -25.759 -1.07085 Vertex 21302 -4.64758 -25.7616 -0.863865 Vertex 21303 -2.95268 -25.7542 -1.42987 Vertex 21304 -2.10936 -25.7502 -2.60856 Vertex 21305 -2.20962 -25.7738 -3.95889 Vertex 21306 -3.20615 -25.7871 -5.26425 Vertex 21307 -4.77385 -25.7369 -6.04787 Vertex 21308 -6.17734 -25.6608 -5.95488 Vertex 21309 -6.31279 -23.9166 -6.15905 Vertex 21310 -4.7461 -23.9993 -6.26007 Vertex 21311 -3.03873 -24.0538 -5.40881 Vertex 21312 -2.0492 -24.0394 -3.99077 Vertex 21313 -2.07351 -24.0137 -2.52387 Vertex 21314 -3.00987 -24.0182 -1.24344 Vertex 21315 -4.7472 -24.0262 -0.628579 Vertex 21316 -6.51629 -24.0233 -0.853429 Vertex 21317 -7.80358 -23.9533 -2.20239 Vertex 21318 -8.09183 -23.8861 -4.16434 Vertex 21319 -7.39133 -23.8808 -5.51455 Vertex 21320 -3.15764 -25.9698 -5.34796 Vertex 21321 -4.75525 -25.9223 -6.15337 Vertex 21322 -6.19195 -25.8465 -6.04938 Vertex 21323 -7.21563 -25.8151 -5.42506 Vertex 21324 -7.85992 -25.8214 -4.12692 Vertex 21325 -7.58498 -25.8827 -2.2578 Vertex 21326 -6.36384 -25.9449 -0.97699 Vertex 21327 -4.61652 -25.943 -0.764205 Vertex 21328 -2.86231 -25.9301 -1.36214 Vertex 21329 -1.99181 -25.9254 -2.60454 Vertex 21330 -2.10854 -25.9524 -4.00544 Vertex 21331 -2.02419 -27.4944 -2.68106 Vertex 21332 -2.81061 -27.4993 -1.53065 Vertex 21333 -4.52644 -27.5122 -0.976954 Vertex 21334 -6.20255 -27.5148 -1.17364 Vertex 21335 -7.32179 -27.4588 -2.35753 Vertex 21336 -7.56946 -27.4029 -4.08558 Vertex 21337 -6.99133 -27.3964 -5.28661 Vertex 21338 -6.06939 -27.4243 -5.86468 Vertex 21339 -4.78032 -27.4933 -5.96151 Vertex 21340 -3.30897 -27.5365 -5.21729 Vertex 21341 -2.25352 -27.5197 -3.97663 Vertex 21342 -2.08017 -25.6191 -4.01037 Vertex 21343 -2.0015 -25.5934 -2.55942 Vertex 21344 -2.87682 -25.5991 -1.31253 Vertex 21345 -4.62113 -25.6103 -0.727929 Vertex 21346 -6.39754 -25.6132 -0.935325 Vertex 21347 -7.64028 -25.5532 -2.26308 Vertex 21348 -7.92543 -25.4935 -4.14705 Vertex 21349 -7.25926 -25.4845 -5.44433 Vertex 21350 -6.20925 -25.5133 -6.09338 Vertex 21351 -4.74879 -25.5892 -6.19385 Vertex 21352 -3.12859 -25.6375 -5.38063 Vertex 21353 -4.72639 -24.1847 -6.36538 Vertex 21354 -6.31892 -24.1017 -6.2586 Vertex 21355 -7.46008 -24.0689 -5.56827 Vertex 21356 -8.18557 -24.0771 -4.18407 Vertex 21357 -7.87591 -24.1424 -2.17384 Vertex 21358 -6.5418 -24.2091 -0.75945 Vertex 21359 -4.70166 -24.2074 -0.537721 Vertex 21360 -2.92303 -24.1968 -1.16194 Vertex 21361 -1.9736 -24.208 -2.49128 Vertex 21362 -1.95166 -24.235 -4.03634 Vertex 21363 -2.99335 -24.2374 -5.49742 Vertex 21364 -1.94908 -23.8382 -2.48644 Vertex 21365 -2.93078 -23.86 -1.13581 Vertex 21366 -4.73235 -23.8748 -0.484943 Vertex 21367 -6.57553 -23.8775 -0.717803 Vertex 21368 -7.93041 -23.8111 -2.12564 Vertex 21369 -8.24059 -23.7447 -4.18162 Vertex 21370 -7.50857 -23.7366 -5.60913 Vertex 21371 -6.3506 -23.7695 -6.29468 Vertex 21372 -4.71986 -23.8515 -6.40728 Vertex 21373 -2.95269 -23.9036 -5.51215 Vertex 21374 -1.91022 -23.8682 -4.0236 Vertex 21375 -2.79021 -22.3317 -5.70617 Vertex 21376 -4.6658 -22.2668 -6.76379 Vertex 21377 -6.43782 -22.1751 -6.68009 Vertex 21378 -8.19015 -22.2334 -2.04544 Vertex 21379 -1.76626 -22.3169 -4.05263 Vertex 21380 -6.15694 -26.6706 -6.06915 Vertex 21381 -6.2831 -24.8263 -6.29501 Vertex 21382 -6.51221 -24.9312 -0.732636 Vertex 21383 -7.85797 -24.8717 -2.17942 Vertex 21384 -8.17955 -24.8112 -4.18962 Vertex 21385 -7.45191 -24.7991 -5.57453 Vertex 21386 -7.70025 -22.9439 -5.85322 Vertex 21387 -8.49807 -22.9576 -4.26722 Vertex 21388 -8.16249 -23.0298 -2.01646 Vertex 21389 -6.70001 -23.0968 -0.502652 Vertex 21390 -4.6254 -24.9239 -0.519428 Vertex 21391 -2.81858 -24.9097 -1.13781 Vertex 21392 -1.88266 -24.9035 -2.48426 Vertex 21393 -1.90142 -24.9316 -4.07166 Vertex 21394 -2.9995 -24.9545 -5.54152 Vertex 21395 -4.7152 -24.9058 -6.40525 Vertex 21396 -4.74676 -26.7424 -6.18134 Vertex 21397 -3.17023 -26.7851 -5.3789 Vertex 21398 -2.06596 -26.7635 -4.04035 Vertex 21399 -1.88732 -26.7335 -2.63138 Vertex 21400 -2.75107 -26.7396 -1.36244 Vertex 21401 -4.54905 -26.7585 -0.750521 Vertex 21402 -4.66913 -23.0621 -6.71373 Vertex 21403 -6.42045 -22.9757 -6.60486 Vertex 21404 -7.19685 -26.643 -5.43244 Vertex 21405 -7.83097 -26.6515 -4.11841 Vertex 21406 -7.55047 -26.7095 -2.24334 Vertex 21407 -6.32446 -26.7656 -0.962656 Vertex 21408 -4.7539 -23.0892 -0.255331 Vertex 21409 -2.87256 -23.0684 -0.960145 Vertex 21410 -1.8136 -23.0618 -2.41858 Vertex 21411 -1.71477 -23.0967 -4.06851 Vertex 21412 -2.79998 -23.1183 -5.69993 Face 1 3202 2553 3304 Face 2 2553 2736 3304 Face 3 1465 1386 1382 Face 4 1386 1327 1382 Face 5 1012 1056 994 Face 6 1056 1053 994 Face 7 7738 8492 7842 Face 8 7738 8307 8492 Face 9 9663 9659 9580 Face 10 9663 9718 9659 Face 11 10051 9989 10033 Face 12 10051 9992 9989 Face 13 2201 3016 1646 Face 14 1204 1184 1336 Face 15 1471 1511 1459 Face 16 3012 1670 1850 Face 17 1481 1693 1692 Face 18 1336 1488 1471 Face 19 1471 1204 1336 Face 20 1810 1752 1713 Face 21 1677 1689 1700 Face 22 1363 1298 1324 Face 23 3948 3890 3606 Face 24 1236 1196 1232 Face 25 1338 1321 1369 Face 26 1528 1513 1572 Face 27 1572 1549 1528 Face 28 1369 1351 1338 Face 29 1232 1237 1236 Face 30 1324 1346 1363 Face 31 3606 3764 3948 Face 32 8841 9391 9498 Face 33 9709 9861 9841 Face 34 9586 9534 9574 Face 35 9195 9375 8024 Face 36 9564 9575 9458 Face 37 9574 9557 9709 Face 38 9709 9841 9574 Face 39 9332 9293 9235 Face 40 9345 9356 9368 Face 41 9721 9747 9682 Face 42 7436 7153 7092 Face 43 9813 9849 9809 Face 44 9676 9724 9707 Face 45 9473 9532 9517 Face 46 9517 9496 9473 Face 47 9707 9694 9676 Face 48 9809 9808 9813 Face 49 9682 9699 9721 Face 50 7092 7280 7436 Face 51 4670 5449 4315 Face 52 2740 2291 2197 Face 53 2197 2291 1904 Face 54 5491 4384 3796 Face 55 5449 4398 4336 Face 56 1748 3715 3796 Face 57 3501 2393 3819 Face 58 1034 1063 1106 Face 59 4384 3629 3796 Face 60 1640 1490 1340 Face 61 1101 944 792 Face 62 1205 1295 1246 Face 63 1777 1700 1785 Face 64 1777 1698 1700 Face 65 1581 1564 1558 Face 66 1558 1564 1541 Face 67 2385 2429 2420 Face 68 2420 2429 1772 Face 69 1368 1361 1246 Face 70 1537 1605 1548 Face 71 1548 1605 1575 Face 72 1277 1361 1368 Face 73 1216 1195 1225 Face 74 1225 1195 1222 Face 75 1324 1315 1346 Face 76 1538 1506 1523 Face 77 1523 1506 1505 Face 78 1275 1284 1262 Face 79 1275 1272 1284 Face 80 1363 1346 1315 Face 81 3640 3554 3752 Face 82 3752 3724 3640 Face 83 1320 1265 1269 Face 84 1269 1287 1320 Face 85 996 1034 979 Face 86 708 675 939 Face 87 1030 978 1161 Face 88 1755 1691 1704 Face 89 2267 2723 2683 Face 90 5006 5490 5299 Face 91 4453 3659 4686 Face 92 5006 5156 5490 Face 93 4453 4723 3659 Face 94 2267 2066 2723 Face 95 1161 1031 1030 Face 96 939 679 708 Face 97 996 975 1034 Face 98 1755 2179 1691 Face 99 1904 2291 2374 Face 100 4115 4315 4281 Face 101 3819 4115 4281 Face 102 4200 4398 4426 Face 103 1512 1539 1544 Face 104 1259 1234 1113 Face 105 1544 1486 1512 Face 106 1113 1245 1259 Face 107 1580 1485 1609 Face 108 3860 3824 3565 Face 109 4281 5449 4336 Face 110 4426 4398 5449 Face 111 4281 4315 5449 Face 112 5449 4780 4426 Face 113 3860 4107 3824 Face 114 1580 1531 1485 Face 115 3994 4338 3926 Face 116 4196 4338 3994 Face 117 1286 1334 1227 Face 118 1286 1345 1334 Face 119 1245 1113 1106 Face 120 1106 1113 1034 Face 121 6729 5596 6376 Face 122 8845 8753 8303 Face 123 8845 9535 9560 Face 124 7250 6657 5491 Face 125 6707 6642 5596 Face 126 7250 7328 9297 Face 127 7225 8651 7544 Face 128 9939 9982 10011 Face 129 7250 7416 6657 Face 130 9671 9762 9810 Face 131 10253 10101 9944 Face 132 9799 9750 9840 Face 133 9260 9345 9268 Face 134 9345 9347 9268 Face 135 9487 9481 9464 Face 136 9504 9481 9487 Face 137 8625 8617 8660 Face 138 9273 8617 8625 Face 139 9799 9686 9677 Face 140 9497 9442 9508 Face 141 9470 9442 9497 Face 142 9677 9686 9768 Face 143 9820 9850 9829 Face 144 9823 9850 9820 Face 145 9699 9730 9721 Face 146 9522 9539 9507 Face 147 9540 9539 9522 Face 148 9783 9761 9770 Face 149 9761 9773 9770 Face 150 9730 9699 9682 Face 151 7290 7487 7405 Face 152 7405 7318 7290 Face 153 9776 9780 9725 Face 154 9725 9758 9776 Face 155 10066 10011 10049 Face 156 10106 10370 10337 Face 157 9884 10067 10015 Face 158 9341 9354 9290 Face 159 8366 8320 8776 Face 160 5741 5490 6033 Face 161 6363 7385 6587 Face 162 5490 5890 6033 Face 163 7385 6324 6587 Face 164 8320 8979 8776 Face 165 10015 10014 9884 Face 166 10337 10366 10106 Face 167 10011 10070 10049 Face 168 9354 8865 9290 Face 169 8671 8753 9141 Face 170 6760 6729 6931 Face 171 6760 6931 7225 Face 172 6612 6642 6844 Face 173 9501 9506 9533 Face 174 9932 9811 9786 Face 175 9533 9559 9501 Face 176 9786 9800 9932 Face 177 9436 9560 9465 Face 178 7476 7217 7183 Face 179 6707 5596 6760 Face 180 5596 6642 6612 Face 181 5596 6729 6760 Face 182 6612 6265 5596 Face 183 7217 6938 7183 Face 184 9560 9514 9465 Face 185 7114 6704 7046 Face 186 7046 6704 6848 Face 187 9818 9711 9759 Face 188 9711 9700 9759 Face 189 9939 9932 9800 Face 190 10011 9932 9939 Face 191 1579 1625 1635 Face 192 2555 2115 1951 Face 193 1560 1579 1635 Face 194 1951 2318 2555 Face 195 1627 1633 1663 Face 196 1663 1647 1627 Face 197 1377 1421 1375 Face 198 1296 1377 1375 Face 199 9410 9420 9466 Face 200 9094 8929 8489 Face 201 9410 9466 9484 Face 202 8489 8729 9094 Face 203 9382 9411 9418 Face 204 9418 9398 9382 Face 205 9670 9624 9668 Face 206 9670 9668 9748 Face 207 1752 2967 1639 Face 208 4121 5535 3414 Face 209 1636 2965 1807 Face 210 4121 5533 5535 Face 211 5551 5546 2309 Face 212 9406 8069 9293 Face 213 7631 5535 6926 Face 214 9238 8070 9409 Face 215 5535 5533 6926 Face 216 5551 8070 9238 Face 217 2015 1655 2188 Face 218 1182 1115 1244 Face 219 1111 1110 1128 Face 220 1094 972 962 Face 221 962 1035 1094 Face 222 1059 1110 1111 Face 223 1398 1294 1182 Face 224 1480 1294 1398 Face 225 1596 1494 1456 Face 226 1543 1629 1596 Face 227 1305 1329 1242 Face 228 2479 2521 1798 Face 229 910 926 957 Face 230 1251 1158 1150 Face 231 1624 1596 1629 Face 232 1188 1191 1140 Face 233 1699 1648 1655 Face 234 2015 1699 1655 Face 235 1162 1322 1344 Face 236 1507 1626 1594 Face 237 1027 1083 1159 Face 238 981 973 1164 Face 239 1726 2343 1863 Face 240 3100 3373 3301 Face 241 3342 3271 3074 Face 242 3029 2574 2048 Face 243 1901 1665 1660 Face 244 1593 1415 1550 Face 245 1141 1037 1233 Face 246 1483 1495 1292 Face 247 1267 1238 1458 Face 248 2688 2795 2621 Face 249 2517 2521 2479 Face 250 1534 1533 1520 Face 251 934 966 957 Face 252 1005 1002 1016 Face 253 1614 1567 1585 Face 254 1543 1596 1456 Face 255 1567 1584 1585 Face 256 1016 965 1005 Face 257 966 955 957 Face 258 1520 1568 1534 Face 259 1563 1585 1005 Face 260 1601 1546 1173 Face 261 8855 9390 9030 Face 262 9801 9930 9863 Face 263 9917 9935 9934 Face 264 10083 10073 9951 Face 265 9951 10010 10083 Face 266 9934 9935 9986 Face 267 9863 9751 9647 Face 268 9647 9751 9565 Face 269 9589 9551 9449 Face 270 9449 9416 9502 Face 271 9247 8524 8571 Face 272 9636 9549 9511 Face 273 9895 9887 9794 Face 274 9416 9449 9421 Face 275 9905 9854 9857 Face 276 9390 9397 9346 Face 277 9390 9346 9030 Face 278 9701 9723 9883 Face 279 9451 9419 9538 Face 280 9886 9962 10018 Face 281 9881 10072 10064 Face 282 9182 8703 9319 Face 283 7744 7669 7935 Face 284 7964 7774 7701 Face 285 8997 8474 8002 Face 286 9385 9380 9144 Face 287 9495 9630 9452 Face 288 9812 10008 9904 Face 289 9753 9550 9562 Face 290 9587 9807 9778 Face 291 8428 8250 8359 Face 292 8571 8524 8528 Face 293 9589 9449 9502 Face 294 10040 9460 9482 Face 295 9872 9499 9444 Face 296 9803 9716 9740 Face 297 9525 9512 9511 Face 298 10088 10079 10111 Face 299 10029 10043 10040 Face 300 9460 9478 9431 Face 301 9460 9461 9478 Face 302 10040 10080 10029 Face 303 10088 10090 10079 Face 304 9511 9477 9525 Face 305 896 899 954 Face 306 180 159 133 Face 307 114 126 73 Face 308 269 238 233 Face 309 255 184 178 Face 310 125 101 102 Face 311 98 108 106 Face 312 1018 970 1001 Face 313 265 449 530 Face 314 449 676 530 Face 315 432 595 712 Face 316 890 712 858 Face 317 615 329 292 Face 318 942 925 844 Face 319 931 837 925 Face 320 1333 1385 1430 Face 321 797 938 942 Face 322 1073 938 1072 Face 323 890 913 765 Face 324 615 938 797 Face 325 1021 1058 890 Face 326 942 938 1073 Face 327 1198 1154 1046 Face 328 1207 1218 1215 Face 329 1207 1223 1218 Face 330 1198 1046 1131 Face 331 1355 1291 1257 Face 332 1420 1423 1402 Face 333 1474 1454 1439 Face 334 1477 1445 1455 Face 335 1430 1411 1434 Face 336 1333 1207 1266 Face 337 924 919 933 Face 338 891 843 892 Face 339 883 892 843 Face 340 875 902 929 Face 341 843 891 879 Face 342 851 843 879 Face 343 877 902 875 Face 344 833 806 843 Face 345 843 851 833 Face 346 811 841 839 Face 347 501 580 570 Face 348 435 466 447 Face 349 507 447 466 Face 350 701 541 538 Face 351 466 435 430 Face 352 402 276 294 Face 353 446 466 430 Face 354 555 541 701 Face 355 465 536 466 Face 356 466 446 465 Face 357 614 531 601 Face 358 109 104 61 Face 359 122 109 63 Face 360 109 61 42 Face 361 63 109 42 Face 362 79 30 19 Face 363 34 79 19 Face 364 79 81 30 Face 365 86 79 34 Face 366 338 424 387 Face 367 302 348 316 Face 368 373 316 348 Face 369 560 335 343 Face 370 348 302 290 Face 371 301 331 240 Face 372 209 301 294 Face 373 331 278 240 Face 374 304 348 290 Face 375 345 335 560 Face 376 317 374 348 Face 377 348 304 317 Face 378 425 339 391 Face 379 294 276 137 Face 380 209 294 137 Face 381 351 243 172 Face 382 219 351 172 Face 383 436 562 511 Face 384 383 450 418 Face 385 515 418 450 Face 386 648 413 433 Face 387 450 383 357 Face 388 354 243 351 Face 389 372 450 357 Face 390 416 413 648 Face 391 395 478 450 Face 392 450 372 395 Face 393 520 411 472 Face 394 115 116 68 Face 395 124 115 64 Face 396 115 68 51 Face 397 64 115 51 Face 398 155 100 96 Face 399 131 155 96 Face 400 155 148 100 Face 401 182 155 131 Face 402 263 321 287 Face 403 239 283 257 Face 404 309 257 283 Face 405 386 253 254 Face 406 283 239 226 Face 407 219 296 351 Face 408 241 283 226 Face 409 256 253 386 Face 410 259 310 283 Face 411 283 241 259 Face 412 320 262 282 Face 413 301 240 294 Face 414 278 331 319 Face 415 268 334 272 Face 416 118 163 90 Face 417 404 347 281 Face 418 246 268 216 Face 419 513 448 514 Face 420 537 626 397 Face 421 142 156 247 Face 422 311 397 409 Face 423 311 298 397 Face 424 409 397 626 Face 425 298 350 397 Face 426 526 195 356 Face 427 195 163 118 Face 428 78 59 84 Face 429 52 55 59 Face 430 72 47 55 Face 431 20 23 47 Face 432 48 38 23 Face 433 45 62 38 Face 434 384 514 448 Face 435 37 110 14 Face 436 1057 895 961 Face 437 1154 943 948 Face 438 970 1018 961 Face 439 159 114 133 Face 440 80 53 76 Face 441 264 369 313 Face 442 988 948 941 Face 443 849 776 836 Face 444 533 822 427 Face 445 94 85 153 Face 446 932 913 1093 Face 447 10091 10146 10149 Face 448 10912 10886 10865 Face 449 10972 10919 10931 Face 450 10812 10807 10776 Face 451 10867 10861 10790 Face 452 10920 10932 10947 Face 453 10947 10932 10928 Face 454 10044 10075 10027 Face 455 10515 10596 10780 Face 456 10515 10369 10596 Face 457 10333 10450 10613 Face 458 10187 10333 10155 Face 459 10753 10716 10430 Face 460 10201 10120 10103 Face 461 10120 10208 10114 Face 462 9625 9571 9568 Face 463 10103 10107 10248 Face 464 9973 10107 9972 Face 465 10280 10132 10155 Face 466 10248 10107 10430 Face 467 10155 9987 10024 Face 468 9972 10107 10103 Face 469 9999 9891 9847 Face 470 9830 9827 9838 Face 471 9827 9822 9838 Face 472 9914 9999 9847 Face 473 9788 9754 9690 Face 474 9643 9622 9625 Face 475 9606 9591 9571 Face 476 9590 9600 9568 Face 477 9611 9634 9615 Face 478 9779 9838 9712 Face 479 10112 10126 10121 Face 480 10153 10202 10154 Face 481 10202 10153 10162 Face 482 10170 10141 10117 Face 483 10166 10154 10202 Face 484 10166 10202 10194 Face 485 10168 10200 10207 Face 486 10202 10239 10212 Face 487 10212 10194 10202 Face 488 10206 10204 10234 Face 489 10475 10465 10544 Face 490 10598 10579 10610 Face 491 10579 10598 10538 Face 492 10344 10381 10469 Face 493 10615 10610 10579 Face 494 10751 10769 10643 Face 495 10615 10579 10599 Face 496 10490 10443 10365 Face 497 10579 10509 10580 Face 498 10580 10599 10579 Face 499 10444 10514 10431 Face 500 10984 10941 10936 Face 501 10982 10936 10923 Face 502 11003 10984 10936 Face 503 11003 10936 10982 Face 504 11026 11015 10966 Face 505 11026 10966 11011 Face 506 11015 10964 10966 Face 507 11011 10966 10959 Face 508 10658 10621 10707 Face 509 10729 10697 10743 Face 510 10697 10729 10672 Face 511 10485 10524 10655 Face 512 10755 10743 10697 Face 513 10805 10714 10744 Face 514 10751 10744 10836 Face 515 10805 10767 10714 Face 516 10755 10697 10741 Face 517 10700 10653 10522 Face 518 10697 10671 10728 Face 519 10728 10741 10697 Face 520 10654 10706 10620 Face 521 10908 10769 10751 Face 522 10908 10751 10836 Face 523 10873 10802 10694 Face 524 10873 10694 10826 Face 525 10534 10483 10609 Face 526 10627 10595 10662 Face 527 10595 10627 10530 Face 528 10397 10417 10537 Face 529 10688 10662 10595 Face 530 10694 10802 10691 Face 531 10688 10595 10673 Face 532 10629 10570 10442 Face 533 10595 10567 10650 Face 534 10650 10673 10595 Face 535 10573 10634 10525 Face 536 10977 10929 10930 Face 537 10981 10930 10921 Face 538 10994 10977 10930 Face 539 10994 10930 10981 Face 540 10949 10945 10890 Face 541 10949 10890 10914 Face 542 10945 10897 10890 Face 543 10914 10890 10863 Face 544 10758 10724 10782 Face 545 10788 10762 10806 Face 546 10762 10788 10736 Face 547 10659 10683 10759 Face 548 10819 10806 10762 Face 549 10694 10749 10826 Face 550 10819 10762 10804 Face 551 10789 10760 10682 Face 552 10762 10735 10786 Face 553 10786 10804 10762 Face 554 10763 10783 10725 Face 555 10751 10805 10744 Face 556 10726 10714 10767 Face 557 10773 10711 10777 Face 558 10955 10882 10927 Face 559 10764 10698 10641 Face 560 10829 10777 10799 Face 561 10531 10597 10532 Face 562 10648 10419 10508 Face 563 10798 10889 10903 Face 564 10636 10648 10734 Face 565 10648 10747 10734 Face 566 10419 10648 10636 Face 567 10648 10695 10747 Face 568 10689 10850 10519 Face 569 10927 10882 10850 Face 570 10967 10938 10942 Face 571 10993 10978 10967 Face 572 10973 10976 10993 Face 573 11025 11005 10973 Face 574 10997 11009 11025 Face 575 11000 10979 10997 Face 576 10597 10531 10661 Face 577 11031 10935 11008 Face 578 10084 10150 9988 Face 579 10097 10102 9891 Face 580 10084 10027 10075 Face 581 10912 10931 10886 Face 582 10969 10992 10965 Face 583 10732 10676 10781 Face 584 10104 10097 10057 Face 585 10209 10269 10196 Face 586 10618 10223 10512 Face 587 10892 10960 10951 Face 588 9952 10132 10113 Face 589 7048 7026 7061 Face 590 7026 7007 7061 Face 591 7007 6976 7061 Face 592 6976 6958 7061 Face 593 6958 6932 7061 Face 594 6932 6918 7061 Face 595 6918 6899 7061 Face 596 6899 6887 7061 Face 597 6887 6880 7061 Face 598 6880 6878 7061 Face 599 6878 6879 7061 Face 600 6879 6888 7061 Face 601 6888 6900 7061 Face 602 6900 6919 7061 Face 603 6919 6933 7061 Face 604 6933 6959 7061 Face 605 6959 6977 7061 Face 606 6977 7008 7061 Face 607 7008 7027 7061 Face 608 7027 7049 7061 Face 609 7049 7087 7061 Face 610 7087 7122 7061 Face 611 7122 7147 7061 Face 612 7147 7168 7061 Face 613 7168 7185 7061 Face 614 7185 7203 7061 Face 615 7203 7238 7061 Face 616 7238 7254 7061 Face 617 7254 7276 7061 Face 618 7276 7278 7061 Face 619 7278 7277 7061 Face 620 7277 7255 7061 Face 621 7255 7237 7061 Face 622 7237 7204 7061 Face 623 7204 7184 7061 Face 624 7184 7167 7061 Face 625 7167 7146 7061 Face 626 7146 7121 7061 Face 627 7121 7086 7061 Face 628 7086 7048 7061 Face 629 2051 2054 1974 Face 630 1946 1983 1941 Face 631 1985 1990 1962 Face 632 1890 1881 1865 Face 633 2036 1994 1932 Face 634 1791 1813 1802 Face 635 1968 1936 1900 Face 636 2087 2029 2004 Face 637 2055 2120 2121 Face 638 2145 2063 2129 Face 639 2108 2160 2139 Face 640 1982 2037 1976 Face 641 1942 1947 1943 Face 642 1999 1958 1960 Face 643 2124 1966 2184 Face 644 1799 1836 1848 Face 645 1844 1820 1797 Face 646 1872 1765 1754 Face 647 2134 2254 2255 Face 648 2296 2283 2297 Face 649 2215 2046 2106 Face 650 2408 2306 2206 Face 651 2510 2313 2438 Face 652 2585 2564 2501 Face 653 2431 2302 2288 Face 654 2209 2079 2041 Face 655 2010 2127 1970 Face 656 2613 2557 2530 Face 657 1840 1773 1788 Face 658 2135 1909 1927 Face 659 4035 3986 3910 Face 660 4946 4909 4698 Face 661 5251 5205 5163 Face 662 5475 5476 5320 Face 663 5429 5147 5430 Face 664 5207 4504 4931 Face 665 3711 3857 3658 Face 666 4181 4224 4085 Face 667 3027 3139 3037 Face 668 2968 3126 3008 Face 669 3055 3091 2982 Face 670 2855 2906 2890 Face 671 2990 2925 2972 Face 672 2544 2609 2581 Face 673 2888 2895 2893 Face 674 4742 4885 4924 Face 675 5486 5418 5485 Face 676 4468 4586 4215 Face 677 4574 4612 4767 Face 678 4363 4446 4485 Face 679 4521 4565 4525 Face 680 5001 4980 4962 Face 681 5252 5265 5267 Face 682 5388 5481 5482 Face 683 4630 4866 4895 Face 684 4404 4420 4408 Face 685 3997 4098 4195 Face 686 3608 3705 3784 Face 687 3268 3299 3388 Face 688 4283 4475 4429 Face 689 4873 5057 4845 Face 690 4968 5090 4900 Face 691 3365 3415 3418 Face 692 3073 3101 3108 Face 693 2542 2690 2578 Face 694 2803 2748 2909 Face 695 2927 2954 3151 Face 696 2346 2263 2303 Face 697 2337 2284 2258 Face 698 2547 2448 2472 Face 699 3157 2961 3162 Face 700 2512 2415 2383 Face 701 2315 2308 2338 Face 702 2407 2483 2636 Face 703 5048 5075 4947 Face 704 5229 5306 5411 Face 705 4795 4804 4794 Face 706 4781 4787 4786 Face 707 3053 3063 3057 Face 708 3024 3041 3045 Face 709 3032 3022 3043 Face 710 5190 5137 5216 Face 711 5223 5144 5206 Face 712 5180 5105 5102 Face 713 5009 5016 4859 Face 714 4722 4740 4700 Face 715 4803 4783 4970 Face 716 4990 4893 4840 Face 717 5173 5130 5106 Face 718 4874 4887 4790 Face 719 4758 4852 4720 Face 720 4699 4834 4696 Face 721 4685 4779 4668 Face 722 3700 3486 3509 Face 723 4566 4572 4591 Face 724 3473 3496 3513 Face 725 4888 4879 4896 Face 726 4917 4892 4904 Face 727 3490 3450 3460 Face 728 4484 4491 4287 Face 729 4791 4774 4793 Face 730 4830 4808 4810 Face 731 4796 4829 4805 Face 732 3423 3436 3432 Face 733 3438 3424 3433 Face 734 5086 5045 5188 Face 735 2216 2236 2240 Face 736 2166 2195 2193 Face 737 2406 2432 2433 Face 738 2533 2569 2632 Face 739 2509 2424 2269 Face 740 2403 2410 2243 Face 741 2467 2463 2345 Face 742 2350 2441 2299 Face 743 2065 1833 1804 Face 744 2256 2226 2040 Face 745 8991 8994 9071 Face 746 9062 9098 9104 Face 747 9055 9060 9083 Face 748 9164 9155 9180 Face 749 9051 9007 9113 Face 750 9232 9254 9243 Face 751 9109 9077 9145 Face 752 9016 8958 9041 Face 753 8925 8990 8924 Face 754 8982 8899 8916 Face 755 8885 8936 8906 Face 756 9014 9066 9069 Face 757 9100 9103 9102 Face 758 9087 9046 9085 Face 759 9079 8921 8859 Face 760 9209 9246 9197 Face 761 9225 9201 9248 Face 762 9280 9173 9291 Face 763 8791 8911 8790 Face 764 8762 8748 8746 Face 765 9003 8850 8951 Face 766 8760 8662 8875 Face 767 8739 8549 8611 Face 768 8491 8467 8545 Face 769 8742 8613 8756 Face 770 8970 8860 9009 Face 771 8918 9034 9075 Face 772 8507 8461 8542 Face 773 9272 9205 9257 Face 774 9136 8910 9118 Face 775 7054 7005 7131 Face 776 6134 6093 6351 Face 777 5840 5795 5882 Face 778 5570 5569 5714 Face 779 5898 5616 5617 Face 780 6536 5838 6111 Face 781 7186 7332 7386 Face 782 6821 6864 6957 Face 783 7902 8004 7997 Face 784 7911 8056 8023 Face 785 7917 7934 8007 Face 786 8136 8189 8151 Face 787 8109 8047 8063 Face 788 8416 8451 8437 Face 789 8146 8154 8148 Face 790 6117 6156 6305 Face 791 5629 5558 5557 Face 792 6460 6572 6830 Face 793 6434 6471 6278 Face 794 6594 6675 6555 Face 795 6480 6521 6518 Face 796 6060 6039 6076 Face 797 5777 5794 5775 Face 798 5562 5663 5563 Face 799 6146 6176 6417 Face 800 6617 6635 6630 Face 801 6947 7042 6849 Face 802 7338 7435 7262 Face 803 7746 7778 7656 Face 804 6564 6758 6609 Face 805 5991 6169 6197 Face 806 5959 6069 6141 Face 807 7627 7630 7676 Face 808 7927 7933 7965 Face 809 8357 8503 8469 Face 810 8133 8296 8242 Face 811 8081 8110 7894 Face 812 8781 8700 8741 Face 813 8761 8710 8788 Face 814 8608 8515 8576 Face 815 8144 7966 7945 Face 816 8663 8632 8533 Face 817 8707 8732 8695 Face 818 8565 8640 8413 Face 819 5971 5997 6091 Face 820 5816 5851 5832 Face 821 6239 6247 6248 Face 822 6257 6264 6258 Face 823 7976 7982 7980 Face 824 7993 8011 7988 Face 825 8013 8000 7990 Face 826 5907 5856 5829 Face 827 5901 5822 5839 Face 828 5943 5865 5946 Face 829 6025 6031 6183 Face 830 6308 6325 6349 Face 831 6262 6240 6067 Face 832 6148 6049 6202 Face 833 5914 5872 5942 Face 834 6154 6168 6252 Face 835 6190 6288 6328 Face 836 6209 6350 6352 Face 837 6266 6364 6378 Face 838 7558 7343 7533 Face 839 6473 6479 6455 Face 840 7549 7572 7529 Face 841 6162 6153 6145 Face 842 6149 6125 6139 Face 843 7593 7553 7582 Face 844 6549 6556 6755 Face 845 6271 6251 6249 Face 846 6235 6213 6233 Face 847 6214 6246 6238 Face 848 7611 7622 7615 Face 849 7620 7608 7614 Face 850 6000 5962 5858 Face 851 8809 8828 8805 Face 852 8847 8879 8849 Face 853 8612 8641 8610 Face 854 8440 8502 8540 Face 855 8774 8620 8563 Face 856 8638 8643 8802 Face 857 8582 8578 8701 Face 858 8603 8694 8744 Face 859 9212 8980 9241 Face 860 8819 8789 9004 Face 861 4301 4901 5099 Face 862 5344 5787 5567 Face 863 6254 6815 6038 Face 864 7362 7771 6691 Face 865 8112 8306 6972 Face 866 8362 8331 7081 Face 867 8226 8152 7045 Face 868 8101 7996 7004 Face 869 7880 7748 6857 Face 870 7597 7252 6625 Face 871 6715 6106 5973 Face 872 5731 5349 5561 Face 873 4975 4378 5152 Face 874 3874 3535 4514 Face 875 3385 3247 4276 Face 876 3137 3060 4109 Face 877 3011 2902 4057 Face 878 2796 2762 4025 Face 879 2815 3040 4144 Face 880 3362 3756 4437 Face 881 8352 8263 8275 Face 882 8659 8603 8578 Face 883 8722 8681 8771 Face 884 8755 8697 8785 Face 885 8708 8745 8707 Face 886 8557 8519 8552 Face 887 8818 8775 8813 Face 888 8644 8601 8607 Face 889 7792 7676 7620 Face 890 6898 7149 7159 Face 891 6758 6755 6754 Face 892 6740 6738 6635 Face 893 7601 7549 7480 Face 894 7710 7796 7845 Face 895 7501 7553 7592 Face 896 7296 7343 7361 Face 897 7135 7262 7282 Face 898 6479 6578 6597 Face 899 6149 6153 6243 Face 900 6396 6284 6321 Face 901 6528 6563 6599 Face 902 6253 6359 6325 Face 903 5773 5845 5865 Face 904 7479 7288 7319 Face 905 7678 7418 7586 Face 906 7799 7498 7764 Face 907 7763 7504 7784 Face 908 7648 7467 7728 Face 909 7406 7348 7522 Face 910 7101 7169 7264 Face 911 6840 7022 6970 Face 912 6925 6731 6619 Face 913 6389 6858 6477 Face 914 6603 6897 6414 Face 915 7059 7067 6838 Face 916 8909 8932 8980 Face 917 8500 8427 8478 Face 918 8324 8464 8569 Face 919 8242 8389 8357 Face 920 7841 7894 7878 Face 921 7980 7988 7990 Face 922 5819 5733 5704 Face 923 5876 5959 5991 Face 924 6003 5851 6005 Face 925 5909 5832 5966 Face 926 5740 5746 5857 Face 927 7832 8012 8170 Face 928 5811 5818 5738 Face 929 5743 5836 5891 Face 930 5993 5972 6075 Face 931 6068 6229 6242 Face 932 6233 6238 6506 Face 933 6125 6203 6184 Face 934 5790 5866 5858 Face 935 8127 8150 8171 Face 936 8095 8108 8151 Face 937 6859 6916 7181 Face 938 8023 8107 8063 Face 939 6576 6655 6821 Face 940 6945 7076 7186 Face 941 7706 7811 7917 Face 942 5714 5728 5840 Face 943 5938 5945 6134 Face 944 6860 7054 7297 Face 945 8472 8513 8544 Face 946 7910 8005 8038 Face 947 8430 8431 8511 Face 948 9272 9241 9172 Face 949 8586 8455 8425 Face 950 8600 8542 8506 Face 951 8860 8784 8669 Face 952 8939 8782 8739 Face 953 9198 9034 8961 Face 954 9270 9130 9212 Face 955 8882 8762 8881 Face 956 9009 9003 9037 Face 957 8916 8906 8830 Face 958 9008 9069 9102 Face 959 9173 9120 9051 Face 960 9240 9254 9248 Face 961 9193 9209 9086 Face 962 8863 8746 8790 Face 963 9053 9060 9049 Face 964 9087 9103 9022 Face 965 8952 8935 8934 Face 966 8814 8886 8749 Face 967 8507 8570 8502 Face 968 2750 2874 2961 Face 969 2467 2441 2386 Face 970 2274 2364 2325 Face 971 2260 2349 2289 Face 972 2298 2340 2338 Face 973 2527 2489 2494 Face 974 2268 2227 2231 Face 975 2436 2443 2402 Face 976 3367 3423 3424 Face 977 4173 3884 3894 Face 978 4287 4283 4202 Face 979 4404 4305 4303 Face 980 3561 3496 3445 Face 981 3197 3248 3336 Face 982 3451 3490 3541 Face 983 3680 3700 3747 Face 984 3762 3784 3908 Face 985 4442 4463 4566 Face 986 4767 4800 4888 Face 987 4594 4726 4761 Face 988 4440 4476 4513 Face 989 4859 4783 4722 Face 990 5180 5200 5269 Face 991 3723 3754 3562 Face 992 3455 3627 3363 Face 993 3281 3544 3244 Face 994 3262 3537 3282 Face 995 3314 3573 3398 Face 996 3520 3693 3639 Face 997 3782 3872 3940 Face 998 4072 4016 4204 Face 999 4312 4122 4417 Face 1000 4187 4656 4567 Face 1001 4632 4149 4434 Face 1002 4206 3972 3981 Face 1003 2065 2113 2136 Face 1004 2606 2650 2566 Face 1005 2582 2480 2583 Face 1006 2690 2663 2803 Face 1007 3165 3151 3203 Face 1008 3119 3114 3043 Face 1009 5306 5226 5330 Face 1010 5057 5090 5169 Face 1011 5194 5042 5040 Face 1012 5213 5135 5080 Face 1013 5294 5300 5189 Face 1014 3072 2872 3023 Face 1015 5302 5227 5234 Face 1016 5155 5209 5297 Face 1017 4963 5074 5053 Face 1018 4801 4815 4969 Face 1019 4523 4537 4805 Face 1020 4858 4839 4917 Face 1021 5188 5179 5255 Face 1022 2871 2891 2913 Face 1023 2890 2929 2940 Face 1024 3739 4061 4105 Face 1025 2972 2926 3008 Face 1026 4224 4370 4455 Face 1027 3857 3964 4100 Face 1028 3091 3204 3327 Face 1029 5205 5309 5320 Face 1030 4909 5103 5110 Face 1031 3746 3986 4186 Face 1032 2576 2552 2563 Face 1033 3046 3058 3070 Face 1034 2474 2556 2568 Face 1035 1804 1773 1873 Face 1036 2634 2611 2476 Face 1037 2558 2530 2462 Face 1038 2394 2270 2209 Face 1039 2313 2272 2110 Face 1040 2084 2010 1847 Face 1041 1833 1915 1775 Face 1042 2283 2163 2164 Face 1043 2011 2046 2041 Face 1044 2218 2213 2139 Face 1045 1960 1943 1976 Face 1046 1994 1925 1872 Face 1047 1797 1791 1805 Face 1048 1959 1836 1852 Face 1049 2255 2297 2181 Face 1050 1985 1992 1996 Face 1051 1958 1979 1962 Face 1052 2111 2109 2093 Face 1053 2300 2159 2235 Face 1054 2569 2502 2557 Face 1055 3971 3958 3832 Face 1056 1945 1887 1895 Face 1057 2804 2691 2798 Face 1058 2031 2080 2273 Face 1059 4188 4571 4470 Face 1060 4506 4421 4294 Face 1061 4452 4197 4419 Face 1062 4691 4472 4589 Face 1063 5022 5408 5407 Face 1064 5127 5351 5356 Face 1065 4710 4688 4493 Face 1066 7082 7068 7211 Face 1067 9158 9099 9150 Face 1068 8356 8248 8263 Face 1069 8772 8964 9013 Face 1070 6474 6856 6570 Face 1071 6616 6534 6748 Face 1072 6847 6588 6618 Face 1073 6568 6357 6457 Face 1074 5644 6018 5643 Face 1075 5685 5688 5918 Face 1076 6360 6339 6547 Face 1077 8768 8631 8641 Face 1078 8751 8626 8581 Face 1079 8893 8758 8676 Face 1080 8969 8872 8879 Face 1081 8757 8646 8828 Face 1082 6082 5918 5925 Face 1083 5999 6132 6115 Face 1084 5892 5902 6054 Face 1085 6470 6114 6548 Face 1086 6032 5979 6298 Face 1087 5989 6043 6303 Face 1088 6519 6109 6429 Face 1089 8602 8520 8522 Face 1090 8211 8281 8339 Face 1091 6877 6593 6702 Face 1092 8933 9126 9211 Face 1093 9158 9073 9013 Face 1094 8539 8443 8536 Face 1095 6260 6317 6809 Face 1096 2406 2416 2278 Face 1097 2464 2419 2295 Face 1098 2369 2286 2151 Face 1099 2166 2172 2074 Face 1100 2216 2400 2287 Face 1101 5121 5127 4956 Face 1102 4911 5046 4926 Face 1103 5143 5154 4985 Face 1104 5552 5705 5329 Face 1105 4492 4927 4575 Face 1106 4748 5068 5008 Face 1107 4997 5058 4744 Face 1108 4933 4524 4617 Face 1109 2525 2442 2523 Face 1110 2711 2764 2834 Face 1111 4339 4447 4169 Face 1112 1834 1919 2112 Face 1113 1972 1887 2031 Face 1114 2588 2508 2605 Face 1115 4234 4731 4814 Face 1116 3742 3795 3703 Face 1117 3847 3844 3850 Face 1118 7251 7301 7340 Face 1119 7199 7196 7194 Face 1120 7391 7346 7342 Face 1121 7251 7270 7194 Face 1122 3701 3696 3655 Face 1123 3850 3776 3795 Face 1124 2577 2584 2500 Face 1125 2496 2562 2570 Face 1126 8463 8470 8543 Face 1127 8485 8548 8479 Face 1128 6152 6137 6035 Face 1129 6250 6234 6131 Face 1130 4905 4889 5004 Face 1131 4912 4809 4792 Face 1132 6083 6306 6533 Face 1133 6588 6605 6377 Face 1134 6367 6577 6534 Face 1135 5700 5553 5707 Face 1136 4955 4977 4710 Face 1137 4669 4433 4452 Face 1138 4881 4506 4464 Face 1139 3979 4013 3992 Face 1140 3979 4033 4013 Face 1141 3979 4066 4033 Face 1142 3979 4084 4066 Face 1143 3979 4114 4084 Face 1144 3979 4128 4114 Face 1145 3979 4147 4128 Face 1146 3979 4159 4147 Face 1147 3979 4167 4159 Face 1148 3979 4168 4167 Face 1149 3979 4166 4168 Face 1150 3979 4158 4166 Face 1151 3979 4146 4158 Face 1152 3979 4127 4146 Face 1153 3979 4113 4127 Face 1154 3979 4083 4113 Face 1155 3979 4065 4083 Face 1156 3979 4032 4065 Face 1157 3979 4012 4032 Face 1158 3979 3991 4012 Face 1159 3979 3953 3991 Face 1160 3979 3919 3953 Face 1161 3979 3896 3919 Face 1162 3979 3875 3896 Face 1163 3979 3858 3875 Face 1164 3979 3838 3858 Face 1165 3979 3805 3838 Face 1166 3979 3793 3805 Face 1167 3979 3768 3793 Face 1168 3979 3766 3768 Face 1169 3979 3769 3766 Face 1170 3979 3794 3769 Face 1171 3979 3806 3794 Face 1172 3979 3839 3806 Face 1173 3979 3859 3839 Face 1174 3979 3876 3859 Face 1175 3979 3897 3876 Face 1176 3979 3920 3897 Face 1177 3979 3954 3920 Face 1178 3979 3992 3954 Face 1179 672 757 751 Face 1180 751 662 672 Face 1181 617 587 703 Face 1182 703 714 617 Face 1183 583 632 635 Face 1184 635 574 583 Face 1185 574 635 622 Face 1186 622 606 574 Face 1187 619 643 583 Face 1188 583 574 619 Face 1189 334 298 311 Face 1190 311 232 334 Face 1191 21 15 11 Face 1192 11 32 21 Face 1193 160 231 167 Face 1194 167 92 160 Face 1195 289 223 306 Face 1196 306 344 289 Face 1197 10373 10383 10294 Face 1198 10294 10288 10373 Face 1199 10428 10331 10342 Face 1200 10342 10458 10428 Face 1201 10471 10410 10413 Face 1202 10413 10462 10471 Face 1203 10439 10423 10410 Face 1204 10410 10471 10439 Face 1205 10426 10471 10462 Face 1206 10462 10402 10426 Face 1207 10711 10813 10734 Face 1208 10734 10747 10711 Face 1209 11024 11013 11034 Face 1210 11034 11030 11024 Face 1211 10885 10953 10878 Face 1212 10878 10814 10885 Face 1213 10756 10701 10739 Face 1214 10739 10822 10756 Face 1215 67 52 59 Face 1216 59 78 67 Face 1217 3473 3566 3509 Face 1218 3509 3419 3473 Face 1219 8493 8472 8544 Face 1220 8544 8484 8493 Face 1221 2798 2750 2961 Face 1222 2961 2778 2798 Face 1223 4896 4847 4887 Face 1224 4887 4904 4896 Face 1225 8948 8757 8828 Face 1226 8828 8840 8948 Face 1227 6018 6045 6450 Face 1228 6450 6245 6018 Face 1229 6799 6260 6809 Face 1230 6809 7014 6799 Face 1231 2096 2202 2216 Face 1232 2216 2287 2096 Face 1233 5022 4798 4596 Face 1234 4596 4995 5022 Face 1235 4302 4089 4234 Face 1236 4234 4814 4302 Face 1237 6357 6339 6533 Face 1238 6533 6474 6357 Face 1239 4691 4571 4507 Face 1240 4507 4710 4691 Face 1241 4237 4286 11045 Face 1242 4286 4078 11045 Face 1243 4078 4037 11045 Face 1244 4037 4237 11045 Face 1245 4037 4078 11046 Face 1246 4078 3905 11046 Face 1247 3905 3868 11046 Face 1248 3868 4037 11046 Face 1249 3868 3905 11047 Face 1250 3905 3710 11047 Face 1251 3710 3666 11047 Face 1252 3666 3868 11047 Face 1253 3666 3710 11048 Face 1254 3710 3553 11048 Face 1255 3553 3518 11048 Face 1256 3518 3666 11048 Face 1257 3518 3553 11049 Face 1258 3553 3408 11049 Face 1259 3408 3369 11049 Face 1260 3369 3518 11049 Face 1261 3369 3408 11050 Face 1262 3408 3267 11050 Face 1263 3267 3226 11050 Face 1264 3226 3369 11050 Face 1265 3226 3267 11051 Face 1266 3267 3156 11051 Face 1267 3156 3116 11051 Face 1268 3116 3226 11051 Face 1269 3116 3156 11052 Face 1270 3156 3069 11052 Face 1271 3069 3021 11052 Face 1272 3021 3116 11052 Face 1273 3021 3069 11053 Face 1274 3069 2998 11053 Face 1275 2998 2949 11053 Face 1276 2949 3021 11053 Face 1277 2949 2998 11054 Face 1278 2998 2980 11054 Face 1279 2980 2924 11054 Face 1280 2924 2949 11054 Face 1281 2924 2980 11055 Face 1282 2980 2997 11055 Face 1283 2997 2948 11055 Face 1284 2948 2924 11055 Face 1285 2948 2997 11056 Face 1286 2997 3068 11056 Face 1287 3068 3020 11056 Face 1288 3020 2948 11056 Face 1289 3020 3068 11057 Face 1290 3068 3155 11057 Face 1291 3155 3115 11057 Face 1292 3115 3020 11057 Face 1293 3115 3155 11058 Face 1294 3155 3266 11058 Face 1295 3266 3225 11058 Face 1296 3225 3115 11058 Face 1297 3225 3266 11059 Face 1298 3266 3407 11059 Face 1299 3407 3368 11059 Face 1300 3368 3225 11059 Face 1301 3368 3407 11060 Face 1302 3407 3552 11060 Face 1303 3552 3517 11060 Face 1304 3517 3368 11060 Face 1305 3517 3552 11061 Face 1306 3552 3709 11061 Face 1307 3709 3665 11061 Face 1308 3665 3517 11061 Face 1309 3665 3709 11062 Face 1310 3709 3904 11062 Face 1311 3904 3867 11062 Face 1312 3867 3665 11062 Face 1313 3867 3904 11063 Face 1314 3904 4077 11063 Face 1315 4077 4036 11063 Face 1316 4036 3867 11063 Face 1317 4036 4077 11064 Face 1318 4077 4285 11064 Face 1319 4285 4236 11064 Face 1320 4236 4036 11064 Face 1321 4236 4285 11065 Face 1322 4285 4477 11065 Face 1323 4477 4415 11065 Face 1324 4415 4236 11065 Face 1325 4415 4477 11066 Face 1326 4477 4776 11066 Face 1327 4776 4707 11066 Face 1328 4707 4415 11066 Face 1329 4707 4776 11067 Face 1330 4776 5020 11067 Face 1331 5020 4952 11067 Face 1332 4952 4707 11067 Face 1333 4952 5020 11068 Face 1334 5020 5203 11068 Face 1335 5203 5158 11068 Face 1336 5158 4952 11068 Face 1337 5158 5203 11069 Face 1338 5203 5401 11069 Face 1339 5401 5318 11069 Face 1340 5318 5158 11069 Face 1341 5318 5401 11070 Face 1342 5401 5555 11070 Face 1343 5555 5473 11070 Face 1344 5473 5318 11070 Face 1345 5473 5555 11071 Face 1346 5555 5666 11071 Face 1347 5666 5588 11071 Face 1348 5588 5473 11071 Face 1349 5588 5666 11072 Face 1350 5666 5753 11072 Face 1351 5753 5678 11072 Face 1352 5678 5588 11072 Face 1353 5678 5753 11073 Face 1354 5753 5820 11073 Face 1355 5820 5734 11073 Face 1356 5734 5678 11073 Face 1357 5734 5820 11074 Face 1358 5820 5843 11074 Face 1359 5843 5747 11074 Face 1360 5747 5734 11074 Face 1361 5747 5843 11075 Face 1362 5843 5821 11075 Face 1363 5821 5735 11075 Face 1364 5735 5747 11075 Face 1365 5735 5821 11076 Face 1366 5821 5754 11076 Face 1367 5754 5679 11076 Face 1368 5679 5735 11076 Face 1369 5679 5754 11077 Face 1370 5754 5667 11077 Face 1371 5667 5589 11077 Face 1372 5589 5679 11077 Face 1373 5589 5667 11078 Face 1374 5667 5556 11078 Face 1375 5556 5474 11078 Face 1376 5474 5589 11078 Face 1377 5474 5556 11079 Face 1378 5556 5402 11079 Face 1379 5402 5319 11079 Face 1380 5319 5474 11079 Face 1381 5319 5402 11080 Face 1382 5402 5204 11080 Face 1383 5204 5159 11080 Face 1384 5159 5319 11080 Face 1385 5159 5204 11081 Face 1386 5204 5021 11081 Face 1387 5021 4953 11081 Face 1388 4953 5159 11081 Face 1389 4953 5021 11082 Face 1390 5021 4777 11082 Face 1391 4777 4708 11082 Face 1392 4708 4953 11082 Face 1393 4708 4777 11083 Face 1394 4777 4478 11083 Face 1395 4478 4416 11083 Face 1396 4416 4708 11083 Face 1397 4416 4478 11084 Face 1398 4478 4286 11084 Face 1399 4286 4237 11084 Face 1400 4237 4416 11084 Face 1401 4185 4237 11085 Face 1402 4237 4037 11085 Face 1403 4037 4006 11085 Face 1404 4006 4185 11085 Face 1405 4006 4037 11086 Face 1406 4037 3868 11086 Face 1407 3868 3836 11086 Face 1408 3836 4006 11086 Face 1409 3836 3868 11087 Face 1410 3868 3666 11087 Face 1411 3666 3646 11087 Face 1412 3646 3836 11087 Face 1413 3646 3666 11088 Face 1414 3666 3518 11088 Face 1415 3518 3500 11088 Face 1416 3500 3646 11088 Face 1417 3500 3518 11089 Face 1418 3518 3369 11089 Face 1419 3369 3351 11089 Face 1420 3351 3500 11089 Face 1421 3351 3369 11090 Face 1422 3369 3226 11090 Face 1423 3226 3214 11090 Face 1424 3214 3351 11090 Face 1425 3214 3226 11091 Face 1426 3226 3116 11091 Face 1427 3116 3104 11091 Face 1428 3104 3214 11091 Face 1429 3104 3116 11092 Face 1430 3116 3021 11092 Face 1431 3021 3015 11092 Face 1432 3015 3104 11092 Face 1433 3015 3021 11093 Face 1434 3021 2949 11093 Face 1435 2949 2943 11093 Face 1436 2943 3015 11093 Face 1437 2943 2949 11094 Face 1438 2949 2924 11094 Face 1439 2924 2921 11094 Face 1440 2921 2943 11094 Face 1441 2921 2924 11095 Face 1442 2924 2948 11095 Face 1443 2948 2942 11095 Face 1444 2942 2921 11095 Face 1445 2942 2948 11096 Face 1446 2948 3020 11096 Face 1447 3020 3014 11096 Face 1448 3014 2942 11096 Face 1449 3014 3020 11097 Face 1450 3020 3115 11097 Face 1451 3115 3103 11097 Face 1452 3103 3014 11097 Face 1453 3103 3115 11098 Face 1454 3115 3225 11098 Face 1455 3225 3213 11098 Face 1456 3213 3103 11098 Face 1457 3213 3225 11099 Face 1458 3225 3368 11099 Face 1459 3368 3350 11099 Face 1460 3350 3213 11099 Face 1461 3350 3368 11100 Face 1462 3368 3517 11100 Face 1463 3517 3499 11100 Face 1464 3499 3350 11100 Face 1465 3499 3517 11101 Face 1466 3517 3665 11101 Face 1467 3665 3645 11101 Face 1468 3645 3499 11101 Face 1469 3645 3665 11102 Face 1470 3665 3867 11102 Face 1471 3867 3835 11102 Face 1472 3835 3645 11102 Face 1473 3835 3867 11103 Face 1474 3867 4036 11103 Face 1475 4036 4005 11103 Face 1476 4005 3835 11103 Face 1477 4005 4036 11104 Face 1478 4036 4236 11104 Face 1479 4236 4184 11104 Face 1480 4184 4005 11104 Face 1481 4184 4236 11105 Face 1482 4236 4415 11105 Face 1483 4415 4361 11105 Face 1484 4361 4184 11105 Face 1485 4361 4415 11106 Face 1486 4415 4707 11106 Face 1487 4707 4615 11106 Face 1488 4615 4361 11106 Face 1489 4615 4707 11107 Face 1490 4707 4952 11107 Face 1491 4952 4876 11107 Face 1492 4876 4615 11107 Face 1493 4876 4952 11108 Face 1494 4952 5158 11108 Face 1495 5158 5066 11108 Face 1496 5066 4876 11108 Face 1497 5066 5158 11109 Face 1498 5158 5318 11109 Face 1499 5318 5220 11109 Face 1500 5220 5066 11109 Face 1501 5220 5318 11110 Face 1502 5318 5473 11110 Face 1503 5473 5374 11110 Face 1504 5374 5220 11110 Face 1505 5374 5473 11111 Face 1506 5473 5588 11111 Face 1507 5588 5483 11111 Face 1508 5483 5374 11111 Face 1509 5483 5588 11112 Face 1510 5588 5678 11112 Face 1511 5678 5575 11112 Face 1512 5575 5483 11112 Face 1513 5575 5678 11113 Face 1514 5678 5734 11113 Face 1515 5734 5622 11113 Face 1516 5622 5575 11113 Face 1517 5622 5734 11114 Face 1518 5734 5747 11114 Face 1519 5747 5636 11114 Face 1520 5636 5622 11114 Face 1521 5636 5747 11115 Face 1522 5747 5735 11115 Face 1523 5735 5623 11115 Face 1524 5623 5636 11115 Face 1525 5623 5735 11116 Face 1526 5735 5679 11116 Face 1527 5679 5576 11116 Face 1528 5576 5623 11116 Face 1529 5576 5679 11117 Face 1530 5679 5589 11117 Face 1531 5589 5484 11117 Face 1532 5484 5576 11117 Face 1533 5484 5589 11118 Face 1534 5589 5474 11118 Face 1535 5474 5375 11118 Face 1536 5375 5484 11118 Face 1537 5375 5474 11119 Face 1538 5474 5319 11119 Face 1539 5319 5221 11119 Face 1540 5221 5375 11119 Face 1541 5221 5319 11120 Face 1542 5319 5159 11120 Face 1543 5159 5067 11120 Face 1544 5067 5221 11120 Face 1545 5067 5159 11121 Face 1546 5159 4953 11121 Face 1547 4953 4877 11121 Face 1548 4877 5067 11121 Face 1549 4877 4953 11122 Face 1550 4953 4708 11122 Face 1551 4708 4616 11122 Face 1552 4616 4877 11122 Face 1553 4616 4708 11123 Face 1554 4708 4416 11123 Face 1555 4416 4362 11123 Face 1556 4362 4616 11123 Face 1557 4362 4416 11124 Face 1558 4416 4237 11124 Face 1559 4237 4185 11124 Face 1560 4185 4362 11124 Face 1561 4135 4185 11125 Face 1562 4185 4006 11125 Face 1563 4006 3970 11125 Face 1564 3970 4135 11125 Face 1565 3970 4006 11126 Face 1566 4006 3836 11126 Face 1567 3836 3803 11126 Face 1568 3803 3970 11126 Face 1569 3803 3836 11127 Face 1570 3836 3646 11127 Face 1571 3646 3634 11127 Face 1572 3634 3803 11127 Face 1573 3634 3646 11128 Face 1574 3646 3500 11128 Face 1575 3500 3498 11128 Face 1576 3498 3634 11128 Face 1577 3498 3500 11129 Face 1578 3500 3351 11129 Face 1579 3351 3360 11129 Face 1580 3360 3498 11129 Face 1581 3360 3351 11130 Face 1582 3351 3214 11130 Face 1583 3214 3235 11130 Face 1584 3235 3360 11130 Face 1585 3235 3214 11131 Face 1586 3214 3104 11131 Face 1587 3104 3135 11131 Face 1588 3135 3235 11131 Face 1589 3135 3104 11132 Face 1590 3104 3015 11132 Face 1591 3015 3052 11132 Face 1592 3052 3135 11132 Face 1593 3052 3015 11133 Face 1594 3015 2943 11133 Face 1595 2943 2995 11133 Face 1596 2995 3052 11133 Face 1597 2995 2943 11134 Face 1598 2943 2921 11134 Face 1599 2921 2975 11134 Face 1600 2975 2995 11134 Face 1601 2975 2921 11135 Face 1602 2921 2942 11135 Face 1603 2942 2994 11135 Face 1604 2994 2975 11135 Face 1605 2994 2942 11136 Face 1606 2942 3014 11136 Face 1607 3014 3051 11136 Face 1608 3051 2994 11136 Face 1609 3051 3014 11137 Face 1610 3014 3103 11137 Face 1611 3103 3134 11137 Face 1612 3134 3051 11137 Face 1613 3134 3103 11138 Face 1614 3103 3213 11138 Face 1615 3213 3234 11138 Face 1616 3234 3134 11138 Face 1617 3234 3213 11139 Face 1618 3213 3350 11139 Face 1619 3350 3359 11139 Face 1620 3359 3234 11139 Face 1621 3359 3350 11140 Face 1622 3350 3499 11140 Face 1623 3499 3497 11140 Face 1624 3497 3359 11140 Face 1625 3497 3499 11141 Face 1626 3499 3645 11141 Face 1627 3645 3633 11141 Face 1628 3633 3497 11141 Face 1629 3633 3645 11142 Face 1630 3645 3835 11142 Face 1631 3835 3802 11142 Face 1632 3802 3633 11142 Face 1633 3802 3835 11143 Face 1634 3835 4005 11143 Face 1635 4005 3969 11143 Face 1636 3969 3802 11143 Face 1637 3969 4005 11144 Face 1638 4005 4184 11144 Face 1639 4184 4134 11144 Face 1640 4134 3969 11144 Face 1641 4134 4184 11145 Face 1642 4184 4361 11145 Face 1643 4361 4308 11145 Face 1644 4308 4134 11145 Face 1645 4308 4361 11146 Face 1646 4361 4615 11146 Face 1647 4615 4489 11146 Face 1648 4489 4308 11146 Face 1649 4489 4615 11147 Face 1650 4615 4876 11147 Face 1651 4876 4756 11147 Face 1652 4756 4489 11147 Face 1653 4756 4876 11148 Face 1654 4876 5066 11148 Face 1655 5066 4958 11148 Face 1656 4958 4756 11148 Face 1657 4958 5066 11149 Face 1658 5066 5220 11149 Face 1659 5220 5122 11149 Face 1660 5122 4958 11149 Face 1661 5122 5220 11150 Face 1662 5220 5374 11150 Face 1663 5374 5246 11150 Face 1664 5246 5122 11150 Face 1665 5246 5374 11151 Face 1666 5374 5483 11151 Face 1667 5483 5357 11151 Face 1668 5357 5246 11151 Face 1669 5357 5483 11152 Face 1670 5483 5575 11152 Face 1671 5575 5445 11152 Face 1672 5445 5357 11152 Face 1673 5445 5575 11153 Face 1674 5575 5622 11153 Face 1675 5622 5479 11153 Face 1676 5479 5445 11153 Face 1677 5479 5622 11154 Face 1678 5622 5636 11154 Face 1679 5636 5489 11154 Face 1680 5489 5479 11154 Face 1681 5489 5636 11155 Face 1682 5636 5623 11155 Face 1683 5623 5480 11155 Face 1684 5480 5489 11155 Face 1685 5480 5623 11156 Face 1686 5623 5576 11156 Face 1687 5576 5446 11156 Face 1688 5446 5480 11156 Face 1689 5446 5576 11157 Face 1690 5576 5484 11157 Face 1691 5484 5358 11157 Face 1692 5358 5446 11157 Face 1693 5358 5484 11158 Face 1694 5484 5375 11158 Face 1695 5375 5247 11158 Face 1696 5247 5358 11158 Face 1697 5247 5375 11159 Face 1698 5375 5221 11159 Face 1699 5221 5123 11159 Face 1700 5123 5247 11159 Face 1701 5123 5221 11160 Face 1702 5221 5067 11160 Face 1703 5067 4959 11160 Face 1704 4959 5123 11160 Face 1705 4959 5067 11161 Face 1706 5067 4877 11161 Face 1707 4877 4757 11161 Face 1708 4757 4959 11161 Face 1709 4757 4877 11162 Face 1710 4877 4616 11162 Face 1711 4616 4490 11162 Face 1712 4490 4757 11162 Face 1713 4490 4616 11163 Face 1714 4616 4362 11163 Face 1715 4362 4309 11163 Face 1716 4309 4490 11163 Face 1717 4309 4362 11164 Face 1718 4362 4185 11164 Face 1719 4185 4135 11164 Face 1720 4135 4309 11164 Face 1721 4095 4135 11165 Face 1722 4135 3970 11165 Face 1723 3970 3950 11165 Face 1724 3950 4095 11165 Face 1725 3950 3970 11166 Face 1726 3970 3803 11166 Face 1727 3803 3781 11166 Face 1728 3781 3950 11166 Face 1729 3781 3803 11167 Face 1730 3803 3634 11167 Face 1731 3634 3638 11167 Face 1732 3638 3781 11167 Face 1733 3638 3634 11168 Face 1734 3634 3498 11168 Face 1735 3498 3516 11168 Face 1736 3516 3638 11168 Face 1737 3516 3498 11169 Face 1738 3498 3360 11169 Face 1739 3360 3397 11169 Face 1740 3397 3516 11169 Face 1741 3397 3360 11170 Face 1742 3360 3235 11170 Face 1743 3235 3279 11170 Face 1744 3279 3397 11170 Face 1745 3279 3235 11171 Face 1746 3235 3135 11171 Face 1747 3135 3194 11171 Face 1748 3194 3279 11171 Face 1749 3194 3135 11172 Face 1750 3135 3052 11172 Face 1751 3052 3125 11172 Face 1752 3125 3194 11172 Face 1753 3125 3052 11173 Face 1754 3052 2995 11173 Face 1755 2995 3078 11173 Face 1756 3078 3125 11173 Face 1757 3078 2995 11174 Face 1758 2995 2975 11174 Face 1759 2975 3065 11174 Face 1760 3065 3078 11174 Face 1761 3065 2975 11175 Face 1762 2975 2994 11175 Face 1763 2994 3077 11175 Face 1764 3077 3065 11175 Face 1765 3077 2994 11176 Face 1766 2994 3051 11176 Face 1767 3051 3124 11176 Face 1768 3124 3077 11176 Face 1769 3124 3051 11177 Face 1770 3051 3134 11177 Face 1771 3134 3193 11177 Face 1772 3193 3124 11177 Face 1773 3193 3134 11178 Face 1774 3134 3234 11178 Face 1775 3234 3278 11178 Face 1776 3278 3193 11178 Face 1777 3278 3234 11179 Face 1778 3234 3359 11179 Face 1779 3359 3396 11179 Face 1780 3396 3278 11179 Face 1781 3396 3359 11180 Face 1782 3359 3497 11180 Face 1783 3497 3515 11180 Face 1784 3515 3396 11180 Face 1785 3515 3497 11181 Face 1786 3497 3633 11181 Face 1787 3633 3637 11181 Face 1788 3637 3515 11181 Face 1789 3637 3633 11182 Face 1790 3633 3802 11182 Face 1791 3802 3780 11182 Face 1792 3780 3637 11182 Face 1793 3780 3802 11183 Face 1794 3802 3969 11183 Face 1795 3969 3949 11183 Face 1796 3949 3780 11183 Face 1797 3949 3969 11184 Face 1798 3969 4134 11184 Face 1799 4134 4094 11184 Face 1800 4094 3949 11184 Face 1801 4094 4134 11185 Face 1802 4134 4308 11185 Face 1803 4308 4261 11185 Face 1804 4261 4094 11185 Face 1805 4261 4308 11186 Face 1806 4308 4489 11186 Face 1807 4489 4406 11186 Face 1808 4406 4261 11186 Face 1809 4406 4489 11187 Face 1810 4489 4756 11187 Face 1811 4756 4624 11187 Face 1812 4624 4406 11187 Face 1813 4624 4756 11188 Face 1814 4756 4958 11188 Face 1815 4958 4832 11188 Face 1816 4832 4624 11188 Face 1817 4832 4958 11189 Face 1818 4958 5122 11189 Face 1819 5122 4981 11189 Face 1820 4981 4832 11189 Face 1821 4981 5122 11190 Face 1822 5122 5246 11190 Face 1823 5246 5108 11190 Face 1824 5108 4981 11190 Face 1825 5108 5246 11191 Face 1826 5246 5357 11191 Face 1827 5357 5192 11191 Face 1828 5192 5108 11191 Face 1829 5192 5357 11192 Face 1830 5357 5445 11192 Face 1831 5445 5272 11192 Face 1832 5272 5192 11192 Face 1833 5272 5445 11193 Face 1834 5445 5479 11193 Face 1835 5479 5311 11193 Face 1836 5311 5272 11193 Face 1837 5311 5479 11194 Face 1838 5479 5489 11194 Face 1839 5489 5325 11194 Face 1840 5325 5311 11194 Face 1841 5325 5489 11195 Face 1842 5489 5480 11195 Face 1843 5480 5312 11195 Face 1844 5312 5325 11195 Face 1845 5312 5480 11196 Face 1846 5480 5446 11196 Face 1847 5446 5273 11196 Face 1848 5273 5312 11196 Face 1849 5273 5446 11197 Face 1850 5446 5358 11197 Face 1851 5358 5193 11197 Face 1852 5193 5273 11197 Face 1853 5193 5358 11198 Face 1854 5358 5247 11198 Face 1855 5247 5109 11198 Face 1856 5109 5193 11198 Face 1857 5109 5247 11199 Face 1858 5247 5123 11199 Face 1859 5123 4982 11199 Face 1860 4982 5109 11199 Face 1861 4982 5123 11200 Face 1862 5123 4959 11200 Face 1863 4959 4833 11200 Face 1864 4833 4982 11200 Face 1865 4833 4959 11201 Face 1866 4959 4757 11201 Face 1867 4757 4625 11201 Face 1868 4625 4833 11201 Face 1869 4625 4757 11202 Face 1870 4757 4490 11202 Face 1871 4490 4407 11202 Face 1872 4407 4625 11202 Face 1873 4407 4490 11203 Face 1874 4490 4309 11203 Face 1875 4309 4262 11203 Face 1876 4262 4407 11203 Face 1877 4262 4309 11204 Face 1878 4309 4135 11204 Face 1879 4135 4095 11204 Face 1880 4095 4262 11204 Face 1881 4063 4095 11205 Face 1882 4095 3950 11205 Face 1883 3950 3931 11205 Face 1884 3931 4063 11205 Face 1885 3931 3950 11206 Face 1886 3950 3781 11206 Face 1887 3781 3790 11206 Face 1888 3790 3931 11206 Face 1889 3790 3781 11207 Face 1890 3781 3638 11207 Face 1891 3638 3657 11207 Face 1892 3657 3790 11207 Face 1893 3657 3638 11208 Face 1894 3638 3516 11208 Face 1895 3516 3550 11208 Face 1896 3550 3657 11208 Face 1897 3550 3516 11209 Face 1898 3516 3397 11209 Face 1899 3397 3443 11209 Face 1900 3443 3550 11209 Face 1901 3443 3397 11210 Face 1902 3397 3279 11210 Face 1903 3279 3353 11210 Face 1904 3353 3443 11210 Face 1905 3353 3279 11211 Face 1906 3279 3194 11211 Face 1907 3194 3274 11211 Face 1908 3274 3353 11211 Face 1909 3274 3194 11212 Face 1910 3194 3125 11212 Face 1911 3125 3211 11212 Face 1912 3211 3274 11212 Face 1913 3211 3125 11213 Face 1914 3125 3078 11213 Face 1915 3078 3181 11213 Face 1916 3181 3211 11213 Face 1917 3181 3078 11214 Face 1918 3078 3065 11214 Face 1919 3065 3171 11214 Face 1920 3171 3181 11214 Face 1921 3171 3065 11215 Face 1922 3065 3077 11215 Face 1923 3077 3180 11215 Face 1924 3180 3171 11215 Face 1925 3180 3077 11216 Face 1926 3077 3124 11216 Face 1927 3124 3210 11216 Face 1928 3210 3180 11216 Face 1929 3210 3124 11217 Face 1930 3124 3193 11217 Face 1931 3193 3273 11217 Face 1932 3273 3210 11217 Face 1933 3273 3193 11218 Face 1934 3193 3278 11218 Face 1935 3278 3352 11218 Face 1936 3352 3273 11218 Face 1937 3352 3278 11219 Face 1938 3278 3396 11219 Face 1939 3396 3442 11219 Face 1940 3442 3352 11219 Face 1941 3442 3396 11220 Face 1942 3396 3515 11220 Face 1943 3515 3549 11220 Face 1944 3549 3442 11220 Face 1945 3549 3515 11221 Face 1946 3515 3637 11221 Face 1947 3637 3656 11221 Face 1948 3656 3549 11221 Face 1949 3656 3637 11222 Face 1950 3637 3780 11222 Face 1951 3780 3789 11222 Face 1952 3789 3656 11222 Face 1953 3789 3780 11223 Face 1954 3780 3949 11223 Face 1955 3949 3930 11223 Face 1956 3930 3789 11223 Face 1957 3930 3949 11224 Face 1958 3949 4094 11224 Face 1959 4094 4062 11224 Face 1960 4062 3930 11224 Face 1961 4062 4094 11225 Face 1962 4094 4261 11225 Face 1963 4261 4193 11225 Face 1964 4193 4062 11225 Face 1965 4193 4261 11226 Face 1966 4261 4406 11226 Face 1967 4406 4323 11226 Face 1968 4323 4193 11226 Face 1969 4323 4406 11227 Face 1970 4406 4624 11227 Face 1971 4624 4459 11227 Face 1972 4459 4323 11227 Face 1973 4459 4624 11228 Face 1974 4624 4832 11228 Face 1975 4832 4665 11228 Face 1976 4665 4459 11228 Face 1977 4665 4832 11229 Face 1978 4832 4981 11229 Face 1979 4981 4822 11229 Face 1980 4822 4665 11229 Face 1981 4822 4981 11230 Face 1982 4981 5108 11230 Face 1983 5108 4937 11230 Face 1984 4937 4822 11230 Face 1985 4937 5108 11231 Face 1986 5108 5192 11231 Face 1987 5192 5023 11231 Face 1988 5023 4937 11231 Face 1989 5023 5192 11232 Face 1990 5192 5272 11232 Face 1991 5272 5092 11232 Face 1992 5092 5023 11232 Face 1993 5092 5272 11233 Face 1994 5272 5311 11233 Face 1995 5311 5132 11233 Face 1996 5132 5092 11233 Face 1997 5132 5311 11234 Face 1998 5311 5325 11234 Face 1999 5325 5148 11234 Face 2000 5148 5132 11234 Face 2001 5148 5325 11235 Face 2002 5325 5312 11235 Face 2003 5312 5133 11235 Face 2004 5133 5148 11235 Face 2005 5133 5312 11236 Face 2006 5312 5273 11236 Face 2007 5273 5093 11236 Face 2008 5093 5133 11236 Face 2009 5093 5273 11237 Face 2010 5273 5193 11237 Face 2011 5193 5024 11237 Face 2012 5024 5093 11237 Face 2013 5024 5193 11238 Face 2014 5193 5109 11238 Face 2015 5109 4938 11238 Face 2016 4938 5024 11238 Face 2017 4938 5109 11239 Face 2018 5109 4982 11239 Face 2019 4982 4823 11239 Face 2020 4823 4938 11239 Face 2021 4823 4982 11240 Face 2022 4982 4833 11240 Face 2023 4833 4666 11240 Face 2024 4666 4823 11240 Face 2025 4666 4833 11241 Face 2026 4833 4625 11241 Face 2027 4625 4460 11241 Face 2028 4460 4666 11241 Face 2029 4460 4625 11242 Face 2030 4625 4407 11242 Face 2031 4407 4324 11242 Face 2032 4324 4460 11242 Face 2033 4324 4407 11243 Face 2034 4407 4262 11243 Face 2035 4262 4194 11243 Face 2036 4194 4324 11243 Face 2037 4194 4262 11244 Face 2038 4262 4095 11244 Face 2039 4095 4063 11244 Face 2040 4063 4194 11244 Face 2041 4027 4063 11245 Face 2042 4063 3931 11245 Face 2043 3931 3922 11245 Face 2044 3922 4027 11245 Face 2045 3922 3931 11246 Face 2046 3931 3790 11246 Face 2047 3790 3810 11246 Face 2048 3810 3922 11246 Face 2049 3810 3790 11247 Face 2050 3790 3657 11247 Face 2051 3657 3690 11247 Face 2052 3690 3810 11247 Face 2053 3690 3657 11248 Face 2054 3657 3550 11248 Face 2055 3550 3596 11248 Face 2056 3596 3690 11248 Face 2057 3596 3550 11249 Face 2058 3550 3443 11249 Face 2059 3443 3526 11249 Face 2060 3526 3596 11249 Face 2061 3526 3443 11250 Face 2062 3443 3353 11250 Face 2063 3353 3441 11250 Face 2064 3441 3526 11250 Face 2065 3441 3353 11251 Face 2066 3353 3274 11251 Face 2067 3274 3387 11251 Face 2068 3387 3441 11251 Face 2069 3387 3274 11252 Face 2070 3274 3211 11252 Face 2071 3211 3332 11252 Face 2072 3332 3387 11252 Face 2073 3332 3211 11253 Face 2074 3211 3181 11253 Face 2075 3181 3311 11253 Face 2076 3311 3332 11253 Face 2077 3311 3181 11254 Face 2078 3181 3171 11254 Face 2079 3171 3297 11254 Face 2080 3297 3311 11254 Face 2081 3297 3171 11255 Face 2082 3171 3180 11255 Face 2083 3180 3310 11255 Face 2084 3310 3297 11255 Face 2085 3310 3180 11256 Face 2086 3180 3210 11256 Face 2087 3210 3331 11256 Face 2088 3331 3310 11256 Face 2089 3331 3210 11257 Face 2090 3210 3273 11257 Face 2091 3273 3386 11257 Face 2092 3386 3331 11257 Face 2093 3386 3273 11258 Face 2094 3273 3352 11258 Face 2095 3352 3440 11258 Face 2096 3440 3386 11258 Face 2097 3440 3352 11259 Face 2098 3352 3442 11259 Face 2099 3442 3525 11259 Face 2100 3525 3440 11259 Face 2101 3525 3442 11260 Face 2102 3442 3549 11260 Face 2103 3549 3595 11260 Face 2104 3595 3525 11260 Face 2105 3595 3549 11261 Face 2106 3549 3656 11261 Face 2107 3656 3689 11261 Face 2108 3689 3595 11261 Face 2109 3689 3656 11262 Face 2110 3656 3789 11262 Face 2111 3789 3809 11262 Face 2112 3809 3689 11262 Face 2113 3809 3789 11263 Face 2114 3789 3930 11263 Face 2115 3930 3921 11263 Face 2116 3921 3809 11263 Face 2117 3921 3930 11264 Face 2118 3930 4062 11264 Face 2119 4062 4026 11264 Face 2120 4026 3921 11264 Face 2121 4026 4062 11265 Face 2122 4062 4193 11265 Face 2123 4193 4141 11265 Face 2124 4141 4026 11265 Face 2125 4141 4193 11266 Face 2126 4193 4323 11266 Face 2127 4323 4263 11266 Face 2128 4263 4141 11266 Face 2129 4263 4323 11267 Face 2130 4323 4459 11267 Face 2131 4459 4350 11267 Face 2132 4350 4263 11267 Face 2133 4350 4459 11268 Face 2134 4459 4665 11268 Face 2135 4665 4457 11268 Face 2136 4457 4350 11268 Face 2137 4457 4665 11269 Face 2138 4665 4822 11269 Face 2139 4822 4610 11269 Face 2140 4610 4457 11269 Face 2141 4610 4822 11270 Face 2142 4822 4937 11270 Face 2143 4937 4733 11270 Face 2144 4733 4610 11270 Face 2145 4733 4937 11271 Face 2146 4937 5023 11271 Face 2147 5023 4819 11271 Face 2148 4819 4733 11271 Face 2149 4819 5023 11272 Face 2150 5023 5092 11272 Face 2151 5092 4883 11272 Face 2152 4883 4819 11272 Face 2153 4883 5092 11273 Face 2154 5092 5132 11273 Face 2155 5132 4907 11273 Face 2156 4907 4883 11273 Face 2157 4907 5132 11274 Face 2158 5132 5148 11274 Face 2159 5148 4921 11274 Face 2160 4921 4907 11274 Face 2161 4921 5148 11275 Face 2162 5148 5133 11275 Face 2163 5133 4908 11275 Face 2164 4908 4921 11275 Face 2165 4908 5133 11276 Face 2166 5133 5093 11276 Face 2167 5093 4884 11276 Face 2168 4884 4908 11276 Face 2169 4884 5093 11277 Face 2170 5093 5024 11277 Face 2171 5024 4820 11277 Face 2172 4820 4884 11277 Face 2173 4820 5024 11278 Face 2174 5024 4938 11278 Face 2175 4938 4734 11278 Face 2176 4734 4820 11278 Face 2177 4734 4938 11279 Face 2178 4938 4823 11279 Face 2179 4823 4611 11279 Face 2180 4611 4734 11279 Face 2181 4611 4823 11280 Face 2182 4823 4666 11280 Face 2183 4666 4458 11280 Face 2184 4458 4611 11280 Face 2185 4458 4666 11281 Face 2186 4666 4460 11281 Face 2187 4460 4351 11281 Face 2188 4351 4458 11281 Face 2189 4351 4460 11282 Face 2190 4460 4324 11282 Face 2191 4324 4264 11282 Face 2192 4264 4351 11282 Face 2193 4264 4324 11283 Face 2194 4324 4194 11283 Face 2195 4194 4142 11283 Face 2196 4142 4264 11283 Face 2197 4142 4194 11284 Face 2198 4194 4063 11284 Face 2199 4063 4027 11284 Face 2200 4027 4142 11284 Face 2201 4011 4027 11285 Face 2202 4027 3922 11285 Face 2203 3922 3924 11285 Face 2204 3924 4011 11285 Face 2205 3924 3922 11286 Face 2206 3922 3810 11286 Face 2207 3810 3852 11286 Face 2208 3852 3924 11286 Face 2209 3852 3810 11287 Face 2210 3810 3690 11287 Face 2211 3690 3737 11287 Face 2212 3737 3852 11287 Face 2213 3737 3690 11288 Face 2214 3690 3596 11288 Face 2215 3596 3669 11288 Face 2216 3669 3737 11288 Face 2217 3669 3596 11289 Face 2218 3596 3526 11289 Face 2219 3526 3600 11289 Face 2220 3600 3669 11289 Face 2221 3600 3526 11290 Face 2222 3526 3441 11290 Face 2223 3441 3556 11290 Face 2224 3556 3600 11290 Face 2225 3556 3441 11291 Face 2226 3441 3387 11291 Face 2227 3387 3512 11291 Face 2228 3512 3556 11291 Face 2229 3512 3387 11292 Face 2230 3387 3332 11292 Face 2231 3332 3481 11292 Face 2232 3481 3512 11292 Face 2233 3481 3332 11293 Face 2234 3332 3311 11293 Face 2235 3311 3453 11293 Face 2236 3453 3481 11293 Face 2237 3453 3311 11294 Face 2238 3311 3297 11294 Face 2239 3297 3444 11294 Face 2240 3444 3453 11294 Face 2241 3444 3297 11295 Face 2242 3297 3310 11295 Face 2243 3310 3452 11295 Face 2244 3452 3444 11295 Face 2245 3452 3310 11296 Face 2246 3310 3331 11296 Face 2247 3331 3480 11296 Face 2248 3480 3452 11296 Face 2249 3480 3331 11297 Face 2250 3331 3386 11297 Face 2251 3386 3511 11297 Face 2252 3511 3480 11297 Face 2253 3511 3386 11298 Face 2254 3386 3440 11298 Face 2255 3440 3555 11298 Face 2256 3555 3511 11298 Face 2257 3555 3440 11299 Face 2258 3440 3525 11299 Face 2259 3525 3599 11299 Face 2260 3599 3555 11299 Face 2261 3599 3525 11300 Face 2262 3525 3595 11300 Face 2263 3595 3668 11300 Face 2264 3668 3599 11300 Face 2265 3668 3595 11301 Face 2266 3595 3689 11301 Face 2267 3689 3736 11301 Face 2268 3736 3668 11301 Face 2269 3736 3689 11302 Face 2270 3689 3809 11302 Face 2271 3809 3851 11302 Face 2272 3851 3736 11302 Face 2273 3851 3809 11303 Face 2274 3809 3921 11303 Face 2275 3921 3923 11303 Face 2276 3923 3851 11303 Face 2277 3923 3921 11304 Face 2278 3921 4026 11304 Face 2279 4026 4010 11304 Face 2280 4010 3923 11304 Face 2281 4010 4026 11305 Face 2282 4026 4141 11305 Face 2283 4141 4086 11305 Face 2284 4086 4010 11305 Face 2285 4086 4141 11306 Face 2286 4141 4263 11306 Face 2287 4263 4178 11306 Face 2288 4178 4086 11306 Face 2289 4178 4263 11307 Face 2290 4263 4350 11307 Face 2291 4350 4271 11307 Face 2292 4271 4178 11307 Face 2293 4271 4350 11308 Face 2294 4350 4457 11308 Face 2295 4457 4328 11308 Face 2296 4328 4271 11308 Face 2297 4328 4457 11309 Face 2298 4457 4610 11309 Face 2299 4610 4402 11309 Face 2300 4402 4328 11309 Face 2301 4402 4610 11310 Face 2302 4610 4733 11310 Face 2303 4733 4461 11310 Face 2304 4461 4402 11310 Face 2305 4461 4733 11311 Face 2306 4733 4819 11311 Face 2307 4819 4544 11311 Face 2308 4544 4461 11311 Face 2309 4544 4819 11312 Face 2310 4819 4883 11312 Face 2311 4883 4599 11312 Face 2312 4599 4544 11312 Face 2313 4599 4883 11313 Face 2314 4883 4907 11313 Face 2315 4907 4638 11313 Face 2316 4638 4599 11313 Face 2317 4638 4907 11314 Face 2318 4907 4921 11314 Face 2319 4921 4654 11314 Face 2320 4654 4638 11314 Face 2321 4654 4921 11315 Face 2322 4921 4908 11315 Face 2323 4908 4639 11315 Face 2324 4639 4654 11315 Face 2325 4639 4908 11316 Face 2326 4908 4884 11316 Face 2327 4884 4600 11316 Face 2328 4600 4639 11316 Face 2329 4600 4884 11317 Face 2330 4884 4820 11317 Face 2331 4820 4545 11317 Face 2332 4545 4600 11317 Face 2333 4545 4820 11318 Face 2334 4820 4734 11318 Face 2335 4734 4462 11318 Face 2336 4462 4545 11318 Face 2337 4462 4734 11319 Face 2338 4734 4611 11319 Face 2339 4611 4403 11319 Face 2340 4403 4462 11319 Face 2341 4403 4611 11320 Face 2342 4611 4458 11320 Face 2343 4458 4329 11320 Face 2344 4329 4403 11320 Face 2345 4329 4458 11321 Face 2346 4458 4351 11321 Face 2347 4351 4272 11321 Face 2348 4272 4329 11321 Face 2349 4272 4351 11322 Face 2350 4351 4264 11322 Face 2351 4264 4179 11322 Face 2352 4179 4272 11322 Face 2353 4179 4264 11323 Face 2354 4264 4142 11323 Face 2355 4142 4087 11323 Face 2356 4087 4179 11323 Face 2357 4087 4142 11324 Face 2358 4142 4027 11324 Face 2359 4027 4011 11324 Face 2360 4011 4087 11324 Face 2361 4001 4011 11325 Face 2362 4011 3924 11325 Face 2363 3924 3935 11325 Face 2364 3935 4001 11325 Face 2365 3935 3924 11326 Face 2366 3924 3852 11326 Face 2367 3852 3882 11326 Face 2368 3882 3935 11326 Face 2369 3882 3852 11327 Face 2370 3852 3737 11327 Face 2371 3737 3831 11327 Face 2372 3831 3882 11327 Face 2373 3831 3737 11328 Face 2374 3737 3669 11328 Face 2375 3669 3751 11328 Face 2376 3751 3831 11328 Face 2377 3751 3669 11329 Face 2378 3669 3600 11329 Face 2379 3600 3714 11329 Face 2380 3714 3751 11329 Face 2381 3714 3600 11330 Face 2382 3600 3556 11330 Face 2383 3556 3675 11330 Face 2384 3675 3714 11330 Face 2385 3675 3556 11331 Face 2386 3556 3512 11331 Face 2387 3512 3643 11331 Face 2388 3643 3675 11331 Face 2389 3643 3512 11332 Face 2390 3512 3481 11332 Face 2391 3481 3621 11332 Face 2392 3621 3643 11332 Face 2393 3621 3481 11333 Face 2394 3481 3453 11333 Face 2395 3453 3602 11333 Face 2396 3602 3621 11333 Face 2397 3602 3453 11334 Face 2398 3453 3444 11334 Face 2399 3444 3597 11334 Face 2400 3597 3602 11334 Face 2401 3597 3444 11335 Face 2402 3444 3452 11335 Face 2403 3452 3601 11335 Face 2404 3601 3597 11335 Face 2405 3601 3452 11336 Face 2406 3452 3480 11336 Face 2407 3480 3620 11336 Face 2408 3620 3601 11336 Face 2409 3620 3480 11337 Face 2410 3480 3511 11337 Face 2411 3511 3642 11337 Face 2412 3642 3620 11337 Face 2413 3642 3511 11338 Face 2414 3511 3555 11338 Face 2415 3555 3674 11338 Face 2416 3674 3642 11338 Face 2417 3674 3555 11339 Face 2418 3555 3599 11339 Face 2419 3599 3713 11339 Face 2420 3713 3674 11339 Face 2421 3713 3599 11340 Face 2422 3599 3668 11340 Face 2423 3668 3750 11340 Face 2424 3750 3713 11340 Face 2425 3750 3668 11341 Face 2426 3668 3736 11341 Face 2427 3736 3830 11341 Face 2428 3830 3750 11341 Face 2429 3830 3736 11342 Face 2430 3736 3851 11342 Face 2431 3851 3881 11342 Face 2432 3881 3830 11342 Face 2433 3881 3851 11343 Face 2434 3851 3923 11343 Face 2435 3923 3934 11343 Face 2436 3934 3881 11343 Face 2437 3934 3923 11344 Face 2438 3923 4010 11344 Face 2439 4010 4000 11344 Face 2440 4000 3934 11344 Face 2441 4000 4010 11345 Face 2442 4010 4086 11345 Face 2443 4086 4048 11345 Face 2444 4048 4000 11345 Face 2445 4048 4086 11346 Face 2446 4086 4178 11346 Face 2447 4178 4103 11346 Face 2448 4103 4048 11346 Face 2449 4103 4178 11347 Face 2450 4178 4271 11347 Face 2451 4271 4161 11347 Face 2452 4161 4103 11347 Face 2453 4161 4271 11348 Face 2454 4271 4328 11348 Face 2455 4328 4213 11348 Face 2456 4213 4161 11348 Face 2457 4213 4328 11349 Face 2458 4328 4402 11349 Face 2459 4402 4268 11349 Face 2460 4268 4213 11349 Face 2461 4268 4402 11350 Face 2462 4402 4461 11350 Face 2463 4461 4295 11350 Face 2464 4295 4268 11350 Face 2465 4295 4461 11351 Face 2466 4461 4544 11351 Face 2467 4544 4318 11351 Face 2468 4318 4295 11351 Face 2469 4318 4544 11352 Face 2470 4544 4599 11352 Face 2471 4599 4340 11352 Face 2472 4340 4318 11352 Face 2473 4340 4599 11353 Face 2474 4599 4638 11353 Face 2475 4638 4357 11353 Face 2476 4357 4340 11353 Face 2477 4357 4638 11354 Face 2478 4638 4654 11354 Face 2479 4654 4364 11354 Face 2480 4364 4357 11354 Face 2481 4364 4654 11355 Face 2482 4654 4639 11355 Face 2483 4639 4358 11355 Face 2484 4358 4364 11355 Face 2485 4358 4639 11356 Face 2486 4639 4600 11356 Face 2487 4600 4341 11356 Face 2488 4341 4358 11356 Face 2489 4341 4600 11357 Face 2490 4600 4545 11357 Face 2491 4545 4319 11357 Face 2492 4319 4341 11357 Face 2493 4319 4545 11358 Face 2494 4545 4462 11358 Face 2495 4462 4296 11358 Face 2496 4296 4319 11358 Face 2497 4296 4462 11359 Face 2498 4462 4403 11359 Face 2499 4403 4269 11359 Face 2500 4269 4296 11359 Face 2501 4269 4403 11360 Face 2502 4403 4329 11360 Face 2503 4329 4214 11360 Face 2504 4214 4269 11360 Face 2505 4214 4329 11361 Face 2506 4329 4272 11361 Face 2507 4272 4162 11361 Face 2508 4162 4214 11361 Face 2509 4162 4272 11362 Face 2510 4272 4179 11362 Face 2511 4179 4104 11362 Face 2512 4104 4162 11362 Face 2513 4104 4179 11363 Face 2514 4179 4087 11363 Face 2515 4087 4049 11363 Face 2516 4049 4104 11363 Face 2517 4049 4087 11364 Face 2518 4087 4011 11364 Face 2519 4011 4001 11364 Face 2520 4001 4049 11364 Face 2521 3992 4001 11365 Face 2522 4001 3935 11365 Face 2523 3935 3954 11365 Face 2524 3954 3992 11365 Face 2525 3954 3935 11366 Face 2526 3935 3882 11366 Face 2527 3882 3920 11366 Face 2528 3920 3954 11366 Face 2529 3920 3882 11367 Face 2530 3882 3831 11367 Face 2531 3831 3897 11367 Face 2532 3897 3920 11367 Face 2533 3897 3831 11368 Face 2534 3831 3751 11368 Face 2535 3751 3876 11368 Face 2536 3876 3897 11368 Face 2537 3876 3751 11369 Face 2538 3751 3714 11369 Face 2539 3714 3859 11369 Face 2540 3859 3876 11369 Face 2541 3859 3714 11370 Face 2542 3714 3675 11370 Face 2543 3675 3839 11370 Face 2544 3839 3859 11370 Face 2545 3839 3675 11371 Face 2546 3675 3643 11371 Face 2547 3643 3806 11371 Face 2548 3806 3839 11371 Face 2549 3806 3643 11372 Face 2550 3643 3621 11372 Face 2551 3621 3794 11372 Face 2552 3794 3806 11372 Face 2553 3794 3621 11373 Face 2554 3621 3602 11373 Face 2555 3602 3769 11373 Face 2556 3769 3794 11373 Face 2557 3769 3602 11374 Face 2558 3602 3597 11374 Face 2559 3597 3766 11374 Face 2560 3766 3769 11374 Face 2561 3766 3597 11375 Face 2562 3597 3601 11375 Face 2563 3601 3768 11375 Face 2564 3768 3766 11375 Face 2565 3768 3601 11376 Face 2566 3601 3620 11376 Face 2567 3620 3793 11376 Face 2568 3793 3768 11376 Face 2569 3793 3620 11377 Face 2570 3620 3642 11377 Face 2571 3642 3805 11377 Face 2572 3805 3793 11377 Face 2573 3805 3642 11378 Face 2574 3642 3674 11378 Face 2575 3674 3838 11378 Face 2576 3838 3805 11378 Face 2577 3838 3674 11379 Face 2578 3674 3713 11379 Face 2579 3713 3858 11379 Face 2580 3858 3838 11379 Face 2581 3858 3713 11380 Face 2582 3713 3750 11380 Face 2583 3750 3875 11380 Face 2584 3875 3858 11380 Face 2585 3875 3750 11381 Face 2586 3750 3830 11381 Face 2587 3830 3896 11381 Face 2588 3896 3875 11381 Face 2589 3896 3830 11382 Face 2590 3830 3881 11382 Face 2591 3881 3919 11382 Face 2592 3919 3896 11382 Face 2593 3919 3881 11383 Face 2594 3881 3934 11383 Face 2595 3934 3953 11383 Face 2596 3953 3919 11383 Face 2597 3953 3934 11384 Face 2598 3934 4000 11384 Face 2599 4000 3991 11384 Face 2600 3991 3953 11384 Face 2601 3991 4000 11385 Face 2602 4000 4048 11385 Face 2603 4048 4012 11385 Face 2604 4012 3991 11385 Face 2605 4012 4048 11386 Face 2606 4048 4103 11386 Face 2607 4103 4032 11386 Face 2608 4032 4012 11386 Face 2609 4032 4103 11387 Face 2610 4103 4161 11387 Face 2611 4161 4065 11387 Face 2612 4065 4032 11387 Face 2613 4065 4161 11388 Face 2614 4161 4213 11388 Face 2615 4213 4083 11388 Face 2616 4083 4065 11388 Face 2617 4083 4213 11389 Face 2618 4213 4268 11389 Face 2619 4268 4113 11389 Face 2620 4113 4083 11389 Face 2621 4113 4268 11390 Face 2622 4268 4295 11390 Face 2623 4295 4127 11390 Face 2624 4127 4113 11390 Face 2625 4127 4295 11391 Face 2626 4295 4318 11391 Face 2627 4318 4146 11391 Face 2628 4146 4127 11391 Face 2629 4146 4318 11392 Face 2630 4318 4340 11392 Face 2631 4340 4158 11392 Face 2632 4158 4146 11392 Face 2633 4158 4340 11393 Face 2634 4340 4357 11393 Face 2635 4357 4166 11393 Face 2636 4166 4158 11393 Face 2637 4166 4357 11394 Face 2638 4357 4364 11394 Face 2639 4364 4168 11394 Face 2640 4168 4166 11394 Face 2641 4168 4364 11395 Face 2642 4364 4358 11395 Face 2643 4358 4167 11395 Face 2644 4167 4168 11395 Face 2645 4167 4358 11396 Face 2646 4358 4341 11396 Face 2647 4341 4159 11396 Face 2648 4159 4167 11396 Face 2649 4159 4341 11397 Face 2650 4341 4319 11397 Face 2651 4319 4147 11397 Face 2652 4147 4159 11397 Face 2653 4147 4319 11398 Face 2654 4319 4296 11398 Face 2655 4296 4128 11398 Face 2656 4128 4147 11398 Face 2657 4128 4296 11399 Face 2658 4296 4269 11399 Face 2659 4269 4114 11399 Face 2660 4114 4128 11399 Face 2661 4114 4269 11400 Face 2662 4269 4214 11400 Face 2663 4214 4084 11400 Face 2664 4084 4114 11400 Face 2665 4084 4214 11401 Face 2666 4214 4162 11401 Face 2667 4162 4066 11401 Face 2668 4066 4084 11401 Face 2669 4066 4162 11402 Face 2670 4162 4104 11402 Face 2671 4104 4033 11402 Face 2672 4033 4066 11402 Face 2673 4033 4104 11403 Face 2674 4104 4049 11403 Face 2675 4049 4013 11403 Face 2676 4013 4033 11403 Face 2677 4013 4049 11404 Face 2678 4049 4001 11404 Face 2679 4001 3992 11404 Face 2680 3992 4013 11404 Face 2681 4915 4881 11405 Face 2682 4881 4464 11405 Face 2683 4464 4680 11405 Face 2684 4680 4915 11405 Face 2685 4903 4669 11406 Face 2686 4669 4452 11406 Face 2687 4452 4870 11406 Face 2688 4870 4903 11406 Face 2689 4741 4955 11407 Face 2690 4955 4710 11407 Face 2691 4710 4507 11407 Face 2692 4507 4741 11407 Face 2693 5327 5707 11408 Face 2694 5707 5553 11408 Face 2695 5553 5333 11408 Face 2696 5333 5327 11408 Face 2697 6127 6367 11409 Face 2698 6367 6534 11409 Face 2699 6534 6160 11409 Face 2700 6160 6127 11409 Face 2701 6172 6588 11410 Face 2702 6588 6377 11410 Face 2703 6377 6140 11410 Face 2704 6140 6172 11410 Face 2705 6063 6083 11411 Face 2706 6083 6533 11411 Face 2707 6533 6339 11411 Face 2708 6339 6063 11411 Face 2709 4741 4507 11412 Face 2710 4507 4498 11412 Face 2711 4498 4737 11412 Face 2712 4737 4741 11412 Face 2713 4944 4816 11413 Face 2714 4816 5290 11413 Face 2715 5290 5323 11413 Face 2716 5323 4944 11413 Face 2717 4977 4955 11414 Face 2718 4955 5327 11414 Face 2719 5327 5333 11414 Face 2720 5333 4977 11414 Face 2721 5707 5327 11415 Face 2722 5327 5313 11415 Face 2723 5313 5723 11415 Face 2724 5723 5707 11415 Face 2725 5301 5313 11416 Face 2726 5313 4903 11416 Face 2727 4903 4870 11416 Face 2728 4870 5301 11416 Face 2729 4669 4903 11417 Face 2730 4903 4955 11417 Face 2731 4955 4741 11417 Face 2732 4741 4669 11417 Face 2733 4737 4944 11418 Face 2734 4944 4915 11418 Face 2735 4915 4680 11418 Face 2736 4680 4737 11418 Face 2737 4881 4915 11419 Face 2738 4915 5315 11419 Face 2739 5315 5303 11419 Face 2740 5303 4881 11419 Face 2741 5720 5315 11420 Face 2742 5315 5323 11420 Face 2743 5323 5711 11420 Face 2744 5711 5720 11420 Face 2745 4680 4464 11421 Face 2746 4464 4433 11421 Face 2747 4433 4669 11421 Face 2748 4669 4680 11421 Face 2749 6311 6542 11422 Face 2750 6542 6533 11422 Face 2751 6533 6306 11422 Face 2752 6306 6311 11422 Face 2753 5711 5751 11423 Face 2754 5751 6228 11423 Face 2755 6228 6096 11423 Face 2756 6096 5711 11423 Face 2757 6172 6140 11424 Face 2758 6140 5723 11424 Face 2759 5723 5739 11424 Face 2760 5739 6172 11424 Face 2761 5700 5707 11425 Face 2762 5707 6083 11425 Face 2763 6083 6063 11425 Face 2764 6063 5700 11425 Face 2765 6306 6083 11426 Face 2766 6083 6140 11426 Face 2767 6140 6377 11426 Face 2768 6377 6306 11426 Face 2769 5736 5720 11427 Face 2770 5720 6127 11427 Face 2771 6127 6160 11427 Face 2772 6160 5736 11427 Face 2773 6367 6127 11428 Face 2774 6127 6096 11428 Face 2775 6096 6311 11428 Face 2776 6311 6367 11428 Face 2777 6377 6605 11429 Face 2778 6605 6577 11429 Face 2779 6577 6367 11429 Face 2780 6367 6377 11429 Face 2781 4737 4498 11430 Face 2782 4498 4816 11430 Face 2783 4816 4944 11430 Face 2784 4944 4737 11430 Face 2785 5323 5290 11431 Face 2786 5290 5751 11431 Face 2787 5751 5711 11431 Face 2788 5711 5323 11431 Face 2789 6542 6311 11432 Face 2790 6311 6096 11432 Face 2791 6096 6228 11432 Face 2792 6228 6542 11432 Face 2793 5723 5313 11433 Face 2794 5313 5301 11433 Face 2795 5301 5739 11433 Face 2796 5739 5723 11433 Face 2797 5303 5315 11434 Face 2798 5315 5720 11434 Face 2799 5720 5736 11434 Face 2800 5736 5303 11434 Face 2801 6311 6306 11435 Face 2802 6306 6377 11435 Face 2803 6377 6367 11435 Face 2804 6367 6311 11435 Face 2805 5720 5711 11436 Face 2806 5711 6096 11436 Face 2807 6096 6127 11436 Face 2808 6127 5720 11436 Face 2809 6140 6083 11437 Face 2810 6083 5707 11437 Face 2811 5707 5723 11437 Face 2812 5723 6140 11437 Face 2813 4741 4737 11438 Face 2814 4737 4680 11438 Face 2815 4680 4669 11438 Face 2816 4669 4741 11438 Face 2817 5323 5315 11439 Face 2818 5315 4915 11439 Face 2819 4915 4944 11439 Face 2820 4944 5323 11439 Face 2821 4955 4903 11440 Face 2822 4903 5313 11440 Face 2823 5313 5327 11440 Face 2824 5327 4955 11440 Face 2825 2769 2779 11441 Face 2826 2779 2657 11441 Face 2827 2657 2647 11441 Face 2828 2647 2769 11441 Face 2829 2577 2657 11442 Face 2830 2657 2668 11442 Face 2831 2668 2584 11442 Face 2832 2584 2577 11442 Face 2833 2692 2668 11443 Face 2834 2668 2794 11443 Face 2835 2794 2820 11443 Face 2836 2820 2692 11443 Face 2837 3002 2794 11444 Face 2838 2794 2779 11444 Face 2839 2779 2973 11444 Face 2840 2973 3002 11444 Face 2841 2570 2577 11445 Face 2842 2577 2500 11445 Face 2843 2500 2496 11445 Face 2844 2496 2570 11445 Face 2845 2518 2500 11446 Face 2846 2500 2584 11446 Face 2847 2584 2597 11446 Face 2848 2597 2518 11446 Face 2849 4841 4867 11447 Face 2850 4867 4609 11447 Face 2851 4609 4587 11447 Face 2852 4587 4841 11447 Face 2853 4377 4609 11448 Face 2854 4609 4622 11448 Face 2855 4622 4383 11448 Face 2856 4383 4377 11448 Face 2857 4655 4622 11449 Face 2858 4622 4889 11449 Face 2859 4889 4905 11449 Face 2860 4905 4655 11449 Face 2861 5004 4889 11450 Face 2862 4889 4867 11450 Face 2863 4867 4971 11450 Face 2864 4971 5004 11450 Face 2865 3190 3219 11451 Face 2866 3219 2973 11451 Face 2867 2973 2932 11451 Face 2868 2932 3190 11451 Face 2869 3044 3002 11452 Face 2870 3002 3255 11452 Face 2871 3255 3292 11452 Face 2872 3292 3044 11452 Face 2873 3484 3255 11453 Face 2874 3255 3219 11453 Face 2875 3219 3449 11453 Face 2876 3449 3484 11453 Face 2877 3654 3672 11454 Face 2878 3672 3449 11454 Face 2879 3449 3421 11454 Face 2880 3421 3654 11454 Face 2881 3508 3484 11455 Face 2882 3484 3677 11455 Face 2883 3677 3688 11455 Face 2884 3688 3508 11455 Face 2885 3887 3677 11456 Face 2886 3677 3672 11456 Face 2887 3672 3889 11456 Face 2888 3889 3887 11456 Face 2889 4051 4055 11457 Face 2890 4055 3889 11457 Face 2891 3889 3880 11457 Face 2892 3880 4051 11457 Face 2893 3898 3887 11458 Face 2894 3887 4054 11458 Face 2895 4054 4068 11458 Face 2896 4068 3898 11458 Face 2897 4228 4054 11459 Face 2898 4054 4055 11459 Face 2899 4055 4227 11459 Face 2900 4227 4228 11459 Face 2901 4372 4377 11460 Face 2902 4377 4227 11460 Face 2903 4227 4223 11460 Face 2904 4223 4372 11460 Face 2905 4240 4228 11461 Face 2906 4228 4383 11461 Face 2907 4383 4397 11461 Face 2908 4397 4240 11461 Face 2909 2647 2570 11462 Face 2910 2570 2562 11462 Face 2911 2562 2635 11462 Face 2912 2635 2647 11462 Face 2913 2572 2562 11463 Face 2914 2562 2496 11463 Face 2915 2496 2506 11463 Face 2916 2506 2572 11463 Face 2917 2932 2769 11464 Face 2918 2769 2747 11464 Face 2919 2747 2897 11464 Face 2920 2897 2932 11464 Face 2921 2753 2747 11465 Face 2922 2747 2635 11465 Face 2923 2635 2651 11465 Face 2924 2651 2753 11465 Face 2925 3421 3190 11466 Face 2926 3190 3153 11466 Face 2927 3153 3390 11466 Face 2928 3390 3421 11466 Face 2929 3144 3153 11467 Face 2930 3153 2897 11467 Face 2931 2897 2900 11467 Face 2932 2900 3144 11467 Face 2933 3880 3654 11468 Face 2934 3654 3625 11468 Face 2935 3625 3863 11468 Face 2936 3863 3880 11468 Face 2937 3612 3625 11469 Face 2938 3625 3390 11469 Face 2939 3390 3376 11469 Face 2940 3376 3612 11469 Face 2941 4223 4051 11470 Face 2942 4051 4043 11470 Face 2943 4043 4220 11470 Face 2944 4220 4223 11470 Face 2945 4045 4043 11471 Face 2946 4043 3863 11471 Face 2947 3863 3861 11471 Face 2948 3861 4045 11471 Face 2949 4587 4372 11472 Face 2950 4372 4366 11472 Face 2951 4366 4569 11472 Face 2952 4569 4587 11472 Face 2953 4365 4366 11473 Face 2954 4366 4220 11473 Face 2955 4220 4222 11473 Face 2956 4222 4365 11473 Face 2957 4942 4841 11474 Face 2958 4841 4809 11474 Face 2959 4809 4912 11474 Face 2960 4912 4942 11474 Face 2961 4792 4809 11475 Face 2962 4809 4569 11475 Face 2963 4569 4562 11475 Face 2964 4562 4792 11475 Face 2965 2727 2631 11476 Face 2966 2631 2597 11476 Face 2967 2597 2692 11476 Face 2968 2692 2727 11476 Face 2969 2651 2572 11477 Face 2970 2572 2615 11477 Face 2971 2615 2687 11477 Face 2972 2687 2651 11477 Face 2973 2900 2753 11478 Face 2974 2753 2784 11478 Face 2975 2784 2935 11478 Face 2976 2935 2900 11478 Face 2977 3376 3144 11479 Face 2978 3144 3165 11479 Face 2979 3165 3393 11479 Face 2980 3393 3376 11479 Face 2981 3861 3612 11480 Face 2982 3612 3630 11480 Face 2983 3630 3869 11480 Face 2984 3869 3861 11480 Face 2985 4222 4045 11481 Face 2986 4045 4052 11481 Face 2987 4052 4231 11481 Face 2988 4231 4222 11481 Face 2989 4562 4365 11482 Face 2990 4365 4367 11482 Face 2991 4367 4564 11482 Face 2992 4564 4562 11482 Face 2993 4912 4792 11483 Face 2994 4792 4801 11483 Face 2995 4801 4928 11483 Face 2996 4928 4912 11483 Face 2997 4905 5004 11484 Face 2998 5004 5028 11484 Face 2999 5028 4939 11484 Face 3000 4939 4905 11484 Face 3001 4397 4655 11485 Face 3002 4655 4690 11485 Face 3003 4690 4423 11485 Face 3004 4423 4397 11485 Face 3005 4068 4240 11486 Face 3006 4240 4280 11486 Face 3007 4280 4096 11486 Face 3008 4096 4068 11486 Face 3009 3688 3898 11487 Face 3010 3898 3927 11487 Face 3011 3927 3720 11487 Face 3012 3720 3688 11487 Face 3013 3292 3508 11488 Face 3014 3508 3543 11488 Face 3015 3543 3328 11488 Face 3016 3328 3292 11488 Face 3017 2820 3044 11489 Face 3018 3044 3093 11489 Face 3019 3093 2859 11489 Face 3020 2859 2820 11489 Face 3021 8224 8252 11490 Face 3022 8252 8383 11490 Face 3023 8383 8355 11490 Face 3024 8355 8224 11490 Face 3025 8463 8383 11491 Face 3026 8383 8393 11491 Face 3027 8393 8470 11491 Face 3028 8470 8463 11491 Face 3029 8401 8393 11492 Face 3030 8393 8265 11492 Face 3031 8265 8277 11492 Face 3032 8277 8401 11492 Face 3033 8062 8265 11493 Face 3034 8265 8252 11493 Face 3035 8252 8034 11493 Face 3036 8034 8062 11493 Face 3037 8448 8463 11494 Face 3038 8463 8543 11494 Face 3039 8543 8527 11494 Face 3040 8527 8448 11494 Face 3041 8548 8543 11495 Face 3042 8543 8470 11495 Face 3043 8470 8479 11495 Face 3044 8479 8548 11495 Face 3045 6137 6152 11496 Face 3046 6152 6425 11496 Face 3047 6425 6391 11496 Face 3048 6391 6137 11496 Face 3049 6658 6425 11497 Face 3050 6425 6437 11497 Face 3051 6437 6662 11497 Face 3052 6662 6658 11497 Face 3053 6459 6437 11498 Face 3054 6437 6175 11498 Face 3055 6175 6201 11498 Face 3056 6201 6459 11498 Face 3057 6066 6175 11499 Face 3058 6175 6152 11499 Face 3059 6152 6035 11499 Face 3060 6035 6066 11499 Face 3061 7753 7790 11500 Face 3062 7790 8034 11500 Face 3063 8034 7989 11500 Face 3064 7989 7753 11500 Face 3065 8104 8062 11501 Face 3066 8062 7825 11501 Face 3067 7825 7858 11501 Face 3068 7858 8104 11501 Face 3069 7595 7825 11502 Face 3070 7825 7790 11502 Face 3071 7790 7560 11502 Face 3072 7560 7595 11502 Face 3073 7353 7366 11503 Face 3074 7366 7560 11503 Face 3075 7560 7534 11503 Face 3076 7534 7353 11503 Face 3077 7624 7595 11504 Face 3078 7595 7372 11504 Face 3079 7372 7392 11504 Face 3080 7392 7624 11504 Face 3081 7154 7372 11505 Face 3082 7372 7366 11505 Face 3083 7366 7156 11505 Face 3084 7156 7154 11505 Face 3085 6974 6986 11506 Face 3086 6986 7156 11506 Face 3087 7156 7145 11506 Face 3088 7145 6974 11506 Face 3089 7163 7154 11507 Face 3090 7154 6985 11507 Face 3091 6985 6989 11507 Face 3092 6989 7163 11507 Face 3093 6818 6985 11508 Face 3094 6985 6986 11508 Face 3095 6986 6817 11508 Face 3096 6817 6818 11508 Face 3097 6643 6658 11509 Face 3098 6658 6817 11509 Face 3099 6817 6803 11509 Face 3100 6803 6643 11509 Face 3101 6822 6818 11510 Face 3102 6818 6662 11510 Face 3103 6662 6667 11510 Face 3104 6667 6822 11510 Face 3105 8414 8485 11511 Face 3106 8485 8479 11511 Face 3107 8479 8401 11511 Face 3108 8401 8414 11511 Face 3109 8538 8548 11512 Face 3110 8548 8485 11512 Face 3111 8485 8476 11512 Face 3112 8476 8538 11512 Face 3113 8398 8414 11513 Face 3114 8414 8297 11513 Face 3115 8297 8292 11513 Face 3116 8292 8398 11513 Face 3117 8145 8297 11514 Face 3118 8297 8277 11514 Face 3119 8277 8104 11514 Face 3120 8104 8145 11514 Face 3121 8142 8145 11515 Face 3122 8145 7891 11515 Face 3123 7891 7898 11515 Face 3124 7898 8142 11515 Face 3125 7655 7891 11516 Face 3126 7891 7858 11516 Face 3127 7858 7624 11516 Face 3128 7624 7655 11516 Face 3129 7666 7655 11517 Face 3130 7655 7420 11517 Face 3131 7420 7432 11517 Face 3132 7432 7666 11517 Face 3133 7178 7420 11518 Face 3134 7420 7392 11518 Face 3135 7392 7163 11518 Face 3136 7163 7178 11518 Face 3137 7182 7178 11519 Face 3138 7178 6996 11519 Face 3139 6996 6994 11519 Face 3140 6994 7182 11519 Face 3141 6825 6996 11520 Face 3142 6996 6989 11520 Face 3143 6989 6822 11520 Face 3144 6822 6825 11520 Face 3145 6823 6825 11521 Face 3146 6825 6672 11521 Face 3147 6672 6673 11521 Face 3148 6673 6823 11521 Face 3149 6476 6672 11522 Face 3150 6672 6667 11522 Face 3151 6667 6459 11522 Face 3152 6459 6476 11522 Face 3153 6483 6476 11523 Face 3154 6476 6234 11523 Face 3155 6234 6250 11523 Face 3156 6250 6483 11523 Face 3157 6131 6234 11524 Face 3158 6234 6201 11524 Face 3159 6201 6097 11524 Face 3160 6097 6131 11524 Face 3161 8355 8448 11525 Face 3162 8448 8417 11525 Face 3163 8417 8316 11525 Face 3164 8316 8355 11525 Face 3165 8360 8434 11526 Face 3166 8434 8476 11526 Face 3167 8476 8398 11526 Face 3168 8398 8360 11526 Face 3169 8100 8259 11527 Face 3170 8259 8292 11527 Face 3171 8292 8142 11527 Face 3172 8142 8100 11527 Face 3173 7652 7878 11528 Face 3174 7878 7898 11528 Face 3175 7898 7666 11528 Face 3176 7666 7652 11528 Face 3177 7172 7415 11529 Face 3178 7415 7432 11529 Face 3179 7432 7182 11529 Face 3180 7182 7172 11529 Face 3181 6812 6988 11530 Face 3182 6988 6994 11530 Face 3183 6994 6823 11530 Face 3184 6823 6812 11530 Face 3185 6481 6671 11531 Face 3186 6671 6673 11531 Face 3187 6673 6483 11531 Face 3188 6483 6481 11531 Face 3189 6113 6242 11532 Face 3190 6242 6250 11532 Face 3191 6250 6131 11532 Face 3192 6131 6113 11532 Face 3193 6048 6081 11533 Face 3194 6081 6097 11533 Face 3195 6097 6066 11533 Face 3196 6066 6048 11533 Face 3197 6100 6013 11534 Face 3198 6013 6035 11534 Face 3199 6035 6137 11534 Face 3200 6137 6100 11534 Face 3201 6614 6358 11535 Face 3202 6358 6391 11535 Face 3203 6391 6643 11535 Face 3204 6643 6614 11535 Face 3205 6949 6761 11536 Face 3206 6761 6803 11536 Face 3207 6803 6974 11536 Face 3208 6974 6949 11536 Face 3209 7322 7113 11537 Face 3210 7113 7145 11537 Face 3211 7145 7353 11537 Face 3212 7353 7322 11537 Face 3213 7716 7499 11538 Face 3214 7499 7534 11538 Face 3215 7534 7753 11538 Face 3216 7753 7716 11538 Face 3217 8182 7944 11539 Face 3218 7944 7989 11539 Face 3219 7989 8224 11539 Face 3220 8224 8182 11539 Face 3221 4587 4609 11540 Face 3222 4609 4377 11540 Face 3223 4377 4372 11540 Face 3224 4372 4587 11540 Face 3225 4055 4051 11541 Face 3226 4051 4223 11541 Face 3227 4223 4227 11541 Face 3228 4227 4055 11541 Face 3229 3672 3654 11542 Face 3230 3654 3880 11542 Face 3231 3880 3889 11542 Face 3232 3889 3672 11542 Face 3233 3219 3190 11543 Face 3234 3190 3421 11543 Face 3235 3421 3449 11543 Face 3236 3449 3219 11543 Face 3237 2779 2769 11544 Face 3238 2769 2932 11544 Face 3239 2932 2973 11544 Face 3240 2973 2779 11544 Face 3241 2647 2657 11545 Face 3242 2657 2577 11545 Face 3243 2577 2570 11545 Face 3244 2570 2647 11545 Face 3245 2584 2668 11546 Face 3246 2668 2692 11546 Face 3247 2692 2597 11546 Face 3248 2597 2584 11546 Face 3249 2496 2500 11547 Face 3250 2500 2518 11547 Face 3251 2518 2506 11547 Face 3252 2506 2496 11547 Face 3253 2635 2562 11548 Face 3254 2562 2572 11548 Face 3255 2572 2651 11548 Face 3256 2651 2635 11548 Face 3257 2897 2747 11549 Face 3258 2747 2753 11549 Face 3259 2753 2900 11549 Face 3260 2900 2897 11549 Face 3261 3390 3153 11550 Face 3262 3153 3144 11550 Face 3263 3144 3376 11550 Face 3264 3376 3390 11550 Face 3265 3863 3625 11551 Face 3266 3625 3612 11551 Face 3267 3612 3861 11551 Face 3268 3861 3863 11551 Face 3269 4220 4043 11552 Face 3270 4043 4045 11552 Face 3271 4045 4222 11552 Face 3272 4222 4220 11552 Face 3273 4569 4366 11553 Face 3274 4366 4365 11553 Face 3275 4365 4562 11553 Face 3276 4562 4569 11553 Face 3277 4867 4841 11554 Face 3278 4841 4942 11554 Face 3279 4942 4971 11554 Face 3280 4971 4867 11554 Face 3281 4383 4622 11555 Face 3282 4622 4655 11555 Face 3283 4655 4397 11555 Face 3284 4397 4383 11555 Face 3285 4068 4054 11556 Face 3286 4054 4228 11556 Face 3287 4228 4240 11556 Face 3288 4240 4068 11556 Face 3289 3688 3677 11557 Face 3290 3677 3887 11557 Face 3291 3887 3898 11557 Face 3292 3898 3688 11557 Face 3293 3292 3255 11558 Face 3294 3255 3484 11558 Face 3295 3484 3508 11558 Face 3296 3508 3292 11558 Face 3297 2820 2794 11559 Face 3298 2794 3002 11559 Face 3299 3002 3044 11559 Face 3300 3044 2820 11559 Face 3301 6662 6437 11560 Face 3302 6437 6459 11560 Face 3303 6459 6667 11560 Face 3304 6667 6662 11560 Face 3305 6989 6985 11561 Face 3306 6985 6818 11561 Face 3307 6818 6822 11561 Face 3308 6822 6989 11561 Face 3309 7392 7372 11562 Face 3310 7372 7154 11562 Face 3311 7154 7163 11562 Face 3312 7163 7392 11562 Face 3313 7858 7825 11563 Face 3314 7825 7595 11563 Face 3315 7595 7624 11563 Face 3316 7624 7858 11563 Face 3317 8277 8265 11564 Face 3318 8265 8062 11564 Face 3319 8062 8104 11564 Face 3320 8104 8277 11564 Face 3321 8470 8393 11565 Face 3322 8393 8401 11565 Face 3323 8401 8479 11565 Face 3324 8479 8470 11565 Face 3325 8355 8383 11566 Face 3326 8383 8463 11566 Face 3327 8463 8448 11566 Face 3328 8448 8355 11566 Face 3329 8527 8543 11567 Face 3330 8543 8548 11567 Face 3331 8548 8538 11567 Face 3332 8538 8527 11567 Face 3333 8485 8414 11568 Face 3334 8414 8398 11568 Face 3335 8398 8476 11568 Face 3336 8476 8485 11568 Face 3337 8292 8297 11569 Face 3338 8297 8145 11569 Face 3339 8145 8142 11569 Face 3340 8142 8292 11569 Face 3341 7898 7891 11570 Face 3342 7891 7655 11570 Face 3343 7655 7666 11570 Face 3344 7666 7898 11570 Face 3345 7432 7420 11571 Face 3346 7420 7178 11571 Face 3347 7178 7182 11571 Face 3348 7182 7432 11571 Face 3349 6994 6996 11572 Face 3350 6996 6825 11572 Face 3351 6825 6823 11572 Face 3352 6823 6994 11572 Face 3353 6673 6672 11573 Face 3354 6672 6476 11573 Face 3355 6476 6483 11573 Face 3356 6483 6673 11573 Face 3357 6201 6175 11574 Face 3358 6175 6066 11574 Face 3359 6066 6097 11574 Face 3360 6097 6201 11574 Face 3361 6391 6425 11575 Face 3362 6425 6658 11575 Face 3363 6658 6643 11575 Face 3364 6643 6391 11575 Face 3365 6986 6974 11576 Face 3366 6974 6803 11576 Face 3367 6803 6817 11576 Face 3368 6817 6986 11576 Face 3369 7366 7353 11577 Face 3370 7353 7145 11577 Face 3371 7145 7156 11577 Face 3372 7156 7366 11577 Face 3373 7790 7753 11578 Face 3374 7753 7534 11578 Face 3375 7534 7560 11578 Face 3376 7560 7790 11578 Face 3377 8252 8224 11579 Face 3378 8224 7989 11579 Face 3379 7989 8034 11579 Face 3380 8034 8252 11579 Face 3381 8355 8316 11580 Face 3382 8316 8182 11580 Face 3383 8182 8224 11580 Face 3384 8224 8355 11580 Face 3385 7989 7944 11581 Face 3386 7944 7716 11581 Face 3387 7716 7753 11581 Face 3388 7753 7989 11581 Face 3389 7534 7499 11582 Face 3390 7499 7322 11582 Face 3391 7322 7353 11582 Face 3392 7353 7534 11582 Face 3393 7145 7113 11583 Face 3394 7113 6949 11583 Face 3395 6949 6974 11583 Face 3396 6974 7145 11583 Face 3397 6803 6761 11584 Face 3398 6761 6614 11584 Face 3399 6614 6643 11584 Face 3400 6643 6803 11584 Face 3401 6391 6358 11585 Face 3402 6358 6100 11585 Face 3403 6100 6137 11585 Face 3404 6137 6391 11585 Face 3405 6035 6013 11586 Face 3406 6013 6048 11586 Face 3407 6048 6066 11586 Face 3408 6066 6035 11586 Face 3409 6097 6081 11587 Face 3410 6081 6113 11587 Face 3411 6113 6131 11587 Face 3412 6131 6097 11587 Face 3413 6250 6242 11588 Face 3414 6242 6481 11588 Face 3415 6481 6483 11588 Face 3416 6483 6250 11588 Face 3417 6673 6671 11589 Face 3418 6671 6812 11589 Face 3419 6812 6823 11589 Face 3420 6823 6673 11589 Face 3421 6994 6988 11590 Face 3422 6988 7172 11590 Face 3423 7172 7182 11590 Face 3424 7182 6994 11590 Face 3425 7432 7415 11591 Face 3426 7415 7652 11591 Face 3427 7652 7666 11591 Face 3428 7666 7432 11591 Face 3429 7898 7878 11592 Face 3430 7878 8100 11592 Face 3431 8100 8142 11592 Face 3432 8142 7898 11592 Face 3433 8292 8259 11593 Face 3434 8259 8360 11593 Face 3435 8360 8398 11593 Face 3436 8398 8292 11593 Face 3437 8476 8434 11594 Face 3438 8434 8493 11594 Face 3439 8493 8538 11594 Face 3440 8538 8476 11594 Face 3441 8527 8484 11595 Face 3442 8484 8417 11595 Face 3443 8417 8448 11595 Face 3444 8448 8527 11595 Face 3445 6476 6459 11596 Face 3446 6459 6201 11596 Face 3447 6201 6234 11596 Face 3448 6234 6476 11596 Face 3449 6825 6822 11597 Face 3450 6822 6667 11597 Face 3451 6667 6672 11597 Face 3452 6672 6825 11597 Face 3453 7178 7163 11598 Face 3454 7163 6989 11598 Face 3455 6989 6996 11598 Face 3456 6996 7178 11598 Face 3457 7655 7624 11599 Face 3458 7624 7392 11599 Face 3459 7392 7420 11599 Face 3460 7420 7655 11599 Face 3461 8145 8104 11600 Face 3462 8104 7858 11600 Face 3463 7858 7891 11600 Face 3464 7891 8145 11600 Face 3465 8414 8401 11601 Face 3466 8401 8277 11601 Face 3467 8277 8297 11601 Face 3468 8297 8414 11601 Face 3469 6658 6662 11602 Face 3470 6662 6818 11602 Face 3471 6818 6817 11602 Face 3472 6817 6658 11602 Face 3473 6986 6985 11603 Face 3474 6985 7154 11603 Face 3475 7154 7156 11603 Face 3476 7156 6986 11603 Face 3477 7366 7372 11604 Face 3478 7372 7595 11604 Face 3479 7595 7560 11604 Face 3480 7560 7366 11604 Face 3481 7790 7825 11605 Face 3482 7825 8062 11605 Face 3483 8062 8034 11605 Face 3484 8034 7790 11605 Face 3485 6152 6175 11606 Face 3486 6175 6437 11606 Face 3487 6437 6425 11606 Face 3488 6425 6152 11606 Face 3489 8252 8265 11607 Face 3490 8265 8393 11607 Face 3491 8393 8383 11607 Face 3492 8383 8252 11607 Face 3493 2727 2692 11608 Face 3494 2692 2820 11608 Face 3495 2820 2859 11608 Face 3496 2859 2727 11608 Face 3497 3093 3044 11609 Face 3498 3044 3292 11609 Face 3499 3292 3328 11609 Face 3500 3328 3093 11609 Face 3501 3543 3508 11610 Face 3502 3508 3688 11610 Face 3503 3688 3720 11610 Face 3504 3720 3543 11610 Face 3505 3927 3898 11611 Face 3506 3898 4068 11611 Face 3507 4068 4096 11611 Face 3508 4096 3927 11611 Face 3509 4280 4240 11612 Face 3510 4240 4397 11612 Face 3511 4397 4423 11612 Face 3512 4423 4280 11612 Face 3513 4690 4655 11613 Face 3514 4655 4905 11613 Face 3515 4905 4939 11613 Face 3516 4939 4690 11613 Face 3517 4801 4792 11614 Face 3518 4792 4562 11614 Face 3519 4562 4564 11614 Face 3520 4564 4801 11614 Face 3521 4367 4365 11615 Face 3522 4365 4222 11615 Face 3523 4222 4231 11615 Face 3524 4231 4367 11615 Face 3525 4052 4045 11616 Face 3526 4045 3861 11616 Face 3527 3861 3869 11616 Face 3528 3869 4052 11616 Face 3529 3630 3612 11617 Face 3530 3612 3376 11617 Face 3531 3376 3393 11617 Face 3532 3393 3630 11617 Face 3533 3165 3144 11618 Face 3534 3144 2900 11618 Face 3535 2900 2935 11618 Face 3536 2935 3165 11618 Face 3537 2784 2753 11619 Face 3538 2753 2651 11619 Face 3539 2651 2687 11619 Face 3540 2687 2784 11619 Face 3541 2615 2572 11620 Face 3542 2572 2506 11620 Face 3543 2506 2552 11620 Face 3544 2552 2615 11620 Face 3545 2563 2518 11621 Face 3546 2518 2597 11621 Face 3547 2597 2631 11621 Face 3548 2631 2563 11621 Face 3549 4587 4569 11622 Face 3550 4569 4809 11622 Face 3551 4809 4841 11622 Face 3552 4841 4587 11622 Face 3553 4223 4220 11623 Face 3554 4220 4366 11623 Face 3555 4366 4372 11623 Face 3556 4372 4223 11623 Face 3557 3880 3863 11624 Face 3558 3863 4043 11624 Face 3559 4043 4051 11624 Face 3560 4051 3880 11624 Face 3561 3421 3390 11625 Face 3562 3390 3625 11625 Face 3563 3625 3654 11625 Face 3564 3654 3421 11625 Face 3565 2932 2897 11626 Face 3566 2897 3153 11626 Face 3567 3153 3190 11626 Face 3568 3190 2932 11626 Face 3569 2647 2635 11627 Face 3570 2635 2747 11627 Face 3571 2747 2769 11627 Face 3572 2769 2647 11627 Face 3573 4377 4383 11628 Face 3574 4383 4228 11628 Face 3575 4228 4227 11628 Face 3576 4227 4377 11628 Face 3577 4055 4054 11629 Face 3578 4054 3887 11629 Face 3579 3887 3889 11629 Face 3580 3889 4055 11629 Face 3581 3672 3677 11630 Face 3582 3677 3484 11630 Face 3583 3484 3449 11630 Face 3584 3449 3672 11630 Face 3585 3219 3255 11631 Face 3586 3255 3002 11631 Face 3587 3002 2973 11631 Face 3588 2973 3219 11631 Face 3589 4867 4889 11632 Face 3590 4889 4622 11632 Face 3591 4622 4609 11632 Face 3592 4609 4867 11632 Face 3593 2779 2794 11633 Face 3594 2794 2668 11633 Face 3595 2668 2657 11633 Face 3596 2657 2779 11633 Face 3597 3915 3850 11634 Face 3598 3850 3795 11634 Face 3599 3795 3906 11634 Face 3600 3906 3915 11634 Face 3601 7136 7251 11635 Face 3602 7251 7194 11635 Face 3603 7194 7127 11635 Face 3604 7127 7136 11635 Face 3605 5212 5222 11636 Face 3606 5222 5431 11636 Face 3607 5431 5427 11636 Face 3608 5427 5212 11636 Face 3609 5615 5431 11637 Face 3610 5431 5441 11637 Face 3611 5441 5605 11637 Face 3612 5605 5615 11637 Face 3613 5442 5441 11638 Face 3614 5441 5250 11638 Face 3615 5250 5258 11638 Face 3616 5258 5442 11638 Face 3617 5062 5250 11639 Face 3618 5250 5222 11639 Face 3619 5222 5043 11639 Face 3620 5043 5062 11639 Face 3621 5604 5442 11640 Face 3622 5442 5438 11640 Face 3623 5438 5608 11640 Face 3624 5608 5604 11640 Face 3625 5435 5438 11641 Face 3626 5438 5242 11641 Face 3627 5242 5235 11641 Face 3628 5235 5435 11641 Face 3629 5063 5242 11642 Face 3630 5242 5258 11642 Face 3631 5258 5070 11642 Face 3632 5070 5063 11642 Face 3633 4851 4855 11643 Face 3634 4855 5043 11643 Face 3635 5043 5036 11643 Face 3636 5036 4851 11643 Face 3637 5070 5062 11644 Face 3638 5062 4856 11644 Face 3639 4856 4863 11644 Face 3640 4863 5070 11644 Face 3641 4516 4856 11645 Face 3642 4856 4855 11645 Face 3643 4855 4529 11645 Face 3644 4529 4516 11645 Face 3645 5061 5063 11646 Face 3646 5063 4869 11646 Face 3647 4869 4875 11646 Face 3648 4875 5061 11646 Face 3649 4557 4869 11647 Face 3650 4869 4863 11647 Face 3651 4863 4526 11647 Face 3652 4526 4557 11647 Face 3653 4266 4255 11648 Face 3654 4255 4529 11648 Face 3655 4529 4536 11648 Face 3656 4536 4266 11648 Face 3657 4526 4516 11649 Face 3658 4516 4244 11649 Face 3659 4244 4257 11649 Face 3660 4257 4526 11649 Face 3661 4029 4244 11650 Face 3662 4244 4255 11650 Face 3663 4255 4053 11650 Face 3664 4053 4029 11650 Face 3665 4577 4557 11651 Face 3666 4557 4289 11651 Face 3667 4289 4299 11651 Face 3668 4299 4577 11651 Face 3669 4075 4289 11652 Face 3670 4289 4257 11652 Face 3671 4257 4046 11652 Face 3672 4046 4075 11652 Face 3673 3915 3906 11653 Face 3674 3906 4053 11653 Face 3675 4053 4060 11653 Face 3676 4060 3915 11653 Face 3677 4046 4029 11654 Face 3678 4029 3877 11654 Face 3679 3877 3879 11654 Face 3680 3879 4046 11654 Face 3681 3742 3877 11655 Face 3682 3877 3906 11655 Face 3683 3906 3795 11655 Face 3684 3795 3742 11655 Face 3685 4097 4075 11656 Face 3686 4075 3916 11656 Face 3687 3916 3933 11656 Face 3688 3933 4097 11656 Face 3689 3765 3916 11657 Face 3690 3916 3879 11657 Face 3691 3879 3738 11657 Face 3692 3738 3765 11657 Face 3693 3799 3765 11658 Face 3694 3765 3696 11658 Face 3695 3696 3701 11658 Face 3696 3701 3799 11658 Face 3697 3655 3696 11659 Face 3698 3696 3682 11659 Face 3699 3682 3652 11659 Face 3700 3652 3655 11659 Face 3701 3703 3682 11660 Face 3702 3682 3738 11660 Face 3703 3738 3742 11660 Face 3704 3742 3703 11660 Face 3705 3691 3703 11661 Face 3706 3703 3795 11661 Face 3707 3795 3776 11661 Face 3708 3776 3691 11661 Face 3709 3913 3847 11662 Face 3710 3847 3850 11662 Face 3711 3850 3915 11662 Face 3712 3915 3913 11662 Face 3713 3776 3850 11663 Face 3714 3850 3844 11663 Face 3715 3844 3763 11663 Face 3716 3763 3776 11663 Face 3717 5036 5212 11664 Face 3718 5212 5210 11664 Face 3719 5210 5032 11664 Face 3720 5032 5036 11664 Face 3721 5621 5425 11665 Face 3722 5425 5427 11665 Face 3723 5427 5619 11665 Face 3724 5619 5621 11665 Face 3725 4536 4851 11666 Face 3726 4851 4848 11666 Face 3727 4848 4527 11666 Face 3728 4527 4536 11666 Face 3729 4060 4266 11667 Face 3730 4266 4258 11667 Face 3731 4258 4058 11667 Face 3732 4058 4060 11667 Face 3733 3652 3691 11668 Face 3734 3691 3681 11668 Face 3735 3681 3647 11668 Face 3736 3647 3652 11668 Face 3737 3701 3655 11669 Face 3738 3655 3648 11669 Face 3739 3648 3687 11669 Face 3740 3687 3701 11669 Face 3741 3933 3799 11670 Face 3742 3799 3786 11670 Face 3743 3786 3929 11670 Face 3744 3929 3933 11670 Face 3745 4299 4097 11671 Face 3746 4097 4093 11671 Face 3747 4093 4297 11671 Face 3748 4297 4299 11671 Face 3749 4875 4577 11672 Face 3750 4577 4570 11672 Face 3751 4570 4871 11672 Face 3752 4871 4875 11672 Face 3753 5235 5061 11673 Face 3754 5061 5059 11673 Face 3755 5059 5231 11673 Face 3756 5231 5235 11673 Face 3757 5611 5435 11674 Face 3758 5435 5433 11674 Face 3759 5433 5614 11674 Face 3760 5614 5611 11674 Face 3761 5785 5796 11675 Face 3762 5796 5605 11675 Face 3763 5605 5604 11675 Face 3764 5604 5785 11675 Face 3765 5619 5615 11676 Face 3766 5615 5823 11676 Face 3767 5823 5833 11676 Face 3768 5833 5619 11676 Face 3769 6002 5823 11677 Face 3770 5823 5796 11677 Face 3771 5796 5985 11677 Face 3772 5985 6002 11677 Face 3773 5810 5803 11678 Face 3774 5803 5608 11678 Face 3775 5608 5611 11678 Face 3776 5611 5810 11678 Face 3777 5978 5785 11679 Face 3778 5785 5803 11679 Face 3779 5803 5984 11679 Face 3780 5984 5978 11679 Face 3781 6179 6186 11680 Face 3782 6186 5985 11680 Face 3783 5985 5978 11680 Face 3784 5978 6179 11680 Face 3785 6007 6002 11681 Face 3786 6002 6187 11681 Face 3787 6187 6191 11681 Face 3788 6191 6007 11681 Face 3789 6514 6187 11682 Face 3790 6187 6186 11682 Face 3791 6186 6526 11682 Face 3792 6526 6514 11682 Face 3793 6167 6173 11683 Face 3794 6173 5984 11683 Face 3795 5984 5986 11683 Face 3796 5986 6167 11683 Face 3797 6517 6179 11684 Face 3798 6179 6173 11684 Face 3799 6173 6488 11684 Face 3800 6488 6517 11684 Face 3801 6784 6798 11685 Face 3802 6798 6526 11685 Face 3803 6526 6517 11685 Face 3804 6517 6784 11685 Face 3805 6507 6514 11686 Face 3806 6514 6786 11686 Face 3807 6786 6775 11686 Face 3808 6775 6507 11686 Face 3809 6987 6786 11687 Face 3810 6786 6798 11687 Face 3811 6798 7009 11687 Face 3812 7009 6987 11687 Face 3813 6743 6753 11688 Face 3814 6753 6488 11688 Face 3815 6488 6468 11688 Face 3816 6468 6743 11688 Face 3817 6993 6784 11689 Face 3818 6784 6753 11689 Face 3819 6753 6966 11689 Face 3820 6966 6993 11689 Face 3821 7164 7166 11690 Face 3822 7166 7009 11690 Face 3823 7009 6993 11690 Face 3824 6993 7164 11690 Face 3825 6982 6987 11691 Face 3826 6987 7136 11691 Face 3827 7136 7127 11691 Face 3828 7127 6982 11691 Face 3829 7251 7136 11692 Face 3830 7136 7166 11692 Face 3831 7166 7301 11692 Face 3832 7301 7251 11692 Face 3833 7106 7126 11693 Face 3834 7126 6966 11693 Face 3835 6966 6948 11693 Face 3836 6948 7106 11693 Face 3837 7304 7164 11694 Face 3838 7164 7126 11694 Face 3839 7126 7279 11694 Face 3840 7279 7304 11694 Face 3841 7394 7359 11695 Face 3842 7359 7346 11695 Face 3843 7346 7391 11695 Face 3844 7391 7394 11695 Face 3845 7342 7346 11696 Face 3846 7346 7279 11696 Face 3847 7279 7246 11696 Face 3848 7246 7342 11696 Face 3849 7301 7304 11697 Face 3850 7304 7359 11697 Face 3851 7359 7340 11697 Face 3852 7340 7301 11697 Face 3853 7270 7251 11698 Face 3854 7251 7340 11698 Face 3855 7340 7350 11698 Face 3856 7350 7270 11698 Face 3857 7281 7199 11699 Face 3858 7199 7194 11699 Face 3859 7194 7270 11699 Face 3860 7270 7281 11699 Face 3861 7127 7194 11700 Face 3862 7194 7196 11700 Face 3863 7196 7129 11700 Face 3864 7129 7127 11700 Face 3865 6011 5835 11701 Face 3866 5835 5833 11701 Face 3867 5833 6007 11701 Face 3868 6007 6011 11701 Face 3869 6516 6194 11702 Face 3870 6194 6191 11702 Face 3871 6191 6507 11702 Face 3872 6507 6516 11702 Face 3873 6984 6783 11703 Face 3874 6783 6775 11703 Face 3875 6775 6982 11703 Face 3876 6982 6984 11703 Face 3877 7398 7360 11704 Face 3878 7360 7350 11704 Face 3879 7350 7394 11704 Face 3880 7394 7398 11704 Face 3881 7356 7397 11705 Face 3882 7397 7391 11705 Face 3883 7391 7342 11705 Face 3884 7342 7356 11705 Face 3885 7110 7261 11706 Face 3886 7261 7246 11706 Face 3887 7246 7106 11706 Face 3888 7106 7110 11706 Face 3889 6745 6952 11707 Face 3890 6952 6948 11707 Face 3891 6948 6743 11707 Face 3892 6743 6745 11707 Face 3893 6171 6475 11708 Face 3894 6475 6468 11708 Face 3895 6468 6167 11708 Face 3896 6167 6171 11708 Face 3897 5814 5988 11709 Face 3898 5988 5986 11709 Face 3899 5986 5810 11709 Face 3900 5810 5814 11709 Face 3901 5258 5250 11710 Face 3902 5250 5062 11710 Face 3903 5062 5070 11710 Face 3904 5070 5258 11710 Face 3905 5605 5441 11711 Face 3906 5441 5442 11711 Face 3907 5442 5604 11711 Face 3908 5604 5605 11711 Face 3909 4863 4856 11712 Face 3910 4856 4516 11712 Face 3911 4516 4526 11712 Face 3912 4526 4863 11712 Face 3913 4257 4244 11713 Face 3914 4244 4029 11713 Face 3915 4029 4046 11713 Face 3916 4046 4257 11713 Face 3917 3879 3877 11714 Face 3918 3877 3742 11714 Face 3919 3742 3738 11714 Face 3920 3738 3879 11714 Face 3921 5222 5212 11715 Face 3922 5212 5036 11715 Face 3923 5036 5043 11715 Face 3924 5043 5222 11715 Face 3925 4855 4851 11716 Face 3926 4851 4536 11716 Face 3927 4536 4529 11716 Face 3928 4529 4855 11716 Face 3929 4255 4266 11717 Face 3930 4266 4060 11717 Face 3931 4060 4053 11717 Face 3932 4053 4255 11717 Face 3933 3652 3682 11718 Face 3934 3682 3703 11718 Face 3935 3703 3691 11718 Face 3936 3691 3652 11718 Face 3937 3933 3916 11719 Face 3938 3916 3765 11719 Face 3939 3765 3799 11719 Face 3940 3799 3933 11719 Face 3941 4299 4289 11720 Face 3942 4289 4075 11720 Face 3943 4075 4097 11720 Face 3944 4097 4299 11720 Face 3945 4875 4869 11721 Face 3946 4869 4557 11721 Face 3947 4557 4577 11721 Face 3948 4577 4875 11721 Face 3949 5235 5242 11722 Face 3950 5242 5063 11722 Face 3951 5063 5061 11722 Face 3952 5061 5235 11722 Face 3953 5608 5438 11723 Face 3954 5438 5435 11723 Face 3955 5435 5611 11723 Face 3956 5611 5608 11723 Face 3957 5796 5785 11724 Face 3958 5785 5978 11724 Face 3959 5978 5985 11724 Face 3960 5985 5796 11724 Face 3961 6186 6179 11725 Face 3962 6179 6517 11725 Face 3963 6517 6526 11725 Face 3964 6526 6186 11725 Face 3965 6798 6784 11726 Face 3966 6784 6993 11726 Face 3967 6993 7009 11726 Face 3968 7009 6798 11726 Face 3969 7166 7164 11727 Face 3970 7164 7304 11727 Face 3971 7304 7301 11727 Face 3972 7301 7166 11727 Face 3973 5427 5431 11728 Face 3974 5431 5615 11728 Face 3975 5615 5619 11728 Face 3976 5619 5427 11728 Face 3977 5833 5823 11729 Face 3978 5823 6002 11729 Face 3979 6002 6007 11729 Face 3980 6007 5833 11729 Face 3981 6191 6187 11730 Face 3982 6187 6514 11730 Face 3983 6514 6507 11730 Face 3984 6507 6191 11730 Face 3985 6775 6786 11731 Face 3986 6786 6987 11731 Face 3987 6987 6982 11731 Face 3988 6982 6775 11731 Face 3989 7359 7394 11732 Face 3990 7394 7350 11732 Face 3991 7350 7340 11732 Face 3992 7340 7359 11732 Face 3993 7126 7106 11733 Face 3994 7106 7246 11733 Face 3995 7246 7279 11733 Face 3996 7279 7126 11733 Face 3997 6753 6743 11734 Face 3998 6743 6948 11734 Face 3999 6948 6966 11734 Face 4000 6966 6753 11734 Face 4001 6173 6167 11735 Face 4002 6167 6468 11735 Face 4003 6468 6488 11735 Face 4004 6488 6173 11735 Face 4005 5803 5810 11736 Face 4006 5810 5986 11736 Face 4007 5986 5984 11736 Face 4008 5984 5803 11736 Face 4009 5611 5614 11737 Face 4010 5614 5814 11737 Face 4011 5814 5810 11737 Face 4012 5810 5611 11737 Face 4013 5986 5988 11738 Face 4014 5988 6171 11738 Face 4015 6171 6167 11738 Face 4016 6167 5986 11738 Face 4017 6468 6475 11739 Face 4018 6475 6745 11739 Face 4019 6745 6743 11739 Face 4020 6743 6468 11739 Face 4021 6948 6952 11740 Face 4022 6952 7110 11740 Face 4023 7110 7106 11740 Face 4024 7106 6948 11740 Face 4025 7356 7342 11741 Face 4026 7342 7246 11741 Face 4027 7246 7261 11741 Face 4028 7261 7356 11741 Face 4029 7398 7394 11742 Face 4030 7394 7391 11742 Face 4031 7391 7397 11742 Face 4032 7397 7398 11742 Face 4033 7281 7270 11743 Face 4034 7270 7350 11743 Face 4035 7350 7360 11743 Face 4036 7360 7281 11743 Face 4037 6984 6982 11744 Face 4038 6982 7127 11744 Face 4039 7127 7129 11744 Face 4040 7129 6984 11744 Face 4041 6516 6507 11745 Face 4042 6507 6775 11745 Face 4043 6775 6783 11745 Face 4044 6783 6516 11745 Face 4045 6011 6007 11746 Face 4046 6007 6191 11746 Face 4047 6191 6194 11746 Face 4048 6194 6011 11746 Face 4049 5621 5619 11747 Face 4050 5619 5833 11747 Face 4051 5833 5835 11747 Face 4052 5835 5621 11747 Face 4053 7359 7304 11748 Face 4054 7304 7279 11748 Face 4055 7279 7346 11748 Face 4056 7346 7359 11748 Face 4057 7126 7164 11749 Face 4058 7164 6993 11749 Face 4059 6993 6966 11749 Face 4060 6966 7126 11749 Face 4061 7166 7136 11750 Face 4062 7136 6987 11750 Face 4063 6987 7009 11750 Face 4064 7009 7166 11750 Face 4065 6753 6784 11751 Face 4066 6784 6517 11751 Face 4067 6517 6488 11751 Face 4068 6488 6753 11751 Face 4069 6798 6786 11752 Face 4070 6786 6514 11752 Face 4071 6514 6526 11752 Face 4072 6526 6798 11752 Face 4073 6173 6179 11753 Face 4074 6179 5978 11753 Face 4075 5978 5984 11753 Face 4076 5984 6173 11753 Face 4077 6186 6187 11754 Face 4078 6187 6002 11754 Face 4079 6002 5985 11754 Face 4080 5985 6186 11754 Face 4081 5803 5785 11755 Face 4082 5785 5604 11755 Face 4083 5604 5608 11755 Face 4084 5608 5803 11755 Face 4085 5796 5823 11756 Face 4086 5823 5615 11756 Face 4087 5615 5605 11756 Face 4088 5605 5796 11756 Face 4089 5433 5435 11757 Face 4090 5435 5235 11757 Face 4091 5235 5231 11757 Face 4092 5231 5433 11757 Face 4093 5059 5061 11758 Face 4094 5061 4875 11758 Face 4095 4875 4871 11758 Face 4096 4871 5059 11758 Face 4097 4570 4577 11759 Face 4098 4577 4299 11759 Face 4099 4299 4297 11759 Face 4100 4297 4570 11759 Face 4101 4093 4097 11760 Face 4102 4097 3933 11760 Face 4103 3933 3929 11760 Face 4104 3929 4093 11760 Face 4105 3701 3687 11761 Face 4106 3687 3786 11761 Face 4107 3786 3799 11761 Face 4108 3799 3701 11761 Face 4109 3652 3647 11762 Face 4110 3647 3648 11762 Face 4111 3648 3655 11762 Face 4112 3655 3652 11762 Face 4113 3776 3763 11763 Face 4114 3763 3681 11763 Face 4115 3681 3691 11763 Face 4116 3691 3776 11763 Face 4117 4060 4058 11764 Face 4118 4058 3913 11764 Face 4119 3913 3915 11764 Face 4120 3915 4060 11764 Face 4121 4536 4527 11765 Face 4122 4527 4258 11765 Face 4123 4258 4266 11765 Face 4124 4266 4536 11765 Face 4125 5036 5032 11766 Face 4126 5032 4848 11766 Face 4127 4848 4851 11766 Face 4128 4851 5036 11766 Face 4129 5427 5425 11767 Face 4130 5425 5210 11767 Face 4131 5210 5212 11767 Face 4132 5212 5427 11767 Face 4133 3738 3682 11768 Face 4134 3682 3696 11768 Face 4135 3696 3765 11768 Face 4136 3765 3738 11768 Face 4137 3879 3916 11769 Face 4138 3916 4075 11769 Face 4139 4075 4046 11769 Face 4140 4046 3879 11769 Face 4141 3906 3877 11770 Face 4142 3877 4029 11770 Face 4143 4029 4053 11770 Face 4144 4053 3906 11770 Face 4145 4257 4289 11771 Face 4146 4289 4557 11771 Face 4147 4557 4526 11771 Face 4148 4526 4257 11771 Face 4149 4255 4244 11772 Face 4150 4244 4516 11772 Face 4151 4516 4529 11772 Face 4152 4529 4255 11772 Face 4153 4863 4869 11773 Face 4154 4869 5063 11773 Face 4155 5063 5070 11773 Face 4156 5070 4863 11773 Face 4157 4855 4856 11774 Face 4158 4856 5062 11774 Face 4159 5062 5043 11774 Face 4160 5043 4855 11774 Face 4161 5258 5242 11775 Face 4162 5242 5438 11775 Face 4163 5438 5442 11775 Face 4164 5442 5258 11775 Face 4165 5222 5250 11776 Face 4166 5250 5441 11776 Face 4167 5441 5431 11776 Face 4168 5431 5222 11776 Face 4169 3804 3673 11777 Face 4170 3673 4188 11777 Face 4171 4188 4137 11777 Face 4172 4137 3804 11777 Face 4173 2550 2588 11778 Face 4174 2588 2605 11778 Face 4175 2605 2505 11778 Face 4176 2505 2550 11778 Face 4177 1911 1834 11779 Face 4178 1834 2112 11779 Face 4179 2112 2131 11779 Face 4180 2131 1911 11779 Face 4181 3977 4339 11780 Face 4182 4339 4169 11780 Face 4183 4169 3971 11780 Face 4184 3971 3977 11780 Face 4185 5307 5329 11781 Face 4186 5329 5705 11781 Face 4187 5705 5730 11781 Face 4188 5730 5307 11781 Face 4189 2150 2166 11782 Face 4190 2166 2074 11782 Face 4191 2074 2053 11782 Face 4192 2053 2150 11782 Face 4193 2330 2369 11783 Face 4194 2369 2151 11783 Face 4195 2151 2183 11783 Face 4196 2183 2330 11783 Face 4197 2447 2464 11784 Face 4198 2464 2295 11784 Face 4199 2295 2322 11784 Face 4200 2322 2447 11784 Face 4201 2382 2406 11785 Face 4202 2406 2278 11785 Face 4203 2278 2238 11785 Face 4204 2238 2382 11785 Face 4205 6908 6856 11786 Face 4206 6856 7371 11786 Face 4207 7371 7239 11786 Face 4208 7239 6908 11786 Face 4209 8495 8539 11787 Face 4210 8539 8536 11787 Face 4211 8536 8459 11787 Face 4212 8459 8495 11787 Face 4213 8914 8933 11788 Face 4214 8933 9211 11788 Face 4215 9211 9134 11788 Face 4216 9134 8914 11788 Face 4217 7068 6877 11789 Face 4218 6877 6702 11789 Face 4219 6702 7063 11789 Face 4220 7063 7068 11789 Face 4221 5236 5104 11790 Face 4222 5104 5944 11790 Face 4223 5944 5809 11790 Face 4224 5809 5236 11790 Face 4225 8992 8969 11791 Face 4226 8969 8879 11791 Face 4227 8879 8894 11791 Face 4228 8894 8992 11791 Face 4229 8861 8893 11792 Face 4230 8893 8676 11792 Face 4231 8676 8718 11792 Face 4232 8718 8861 11792 Face 4233 8725 8751 11793 Face 4234 8751 8581 11793 Face 4235 8581 8596 11793 Face 4236 8596 8725 11793 Face 4237 8807 8768 11794 Face 4238 8768 8641 11794 Face 4239 8641 8664 11794 Face 4240 8664 8807 11794 Face 4241 5902 5685 11795 Face 4242 5685 5918 11795 Face 4243 5918 5999 11795 Face 4244 5999 5902 11795 Face 4245 8785 8772 11796 Face 4246 8772 9013 11796 Face 4247 9013 8874 11796 Face 4248 8874 8785 11796 Face 4249 6109 6114 11797 Face 4250 6114 5750 11797 Face 4251 5750 5989 11797 Face 4252 5989 6109 11797 Face 4253 5046 5127 11798 Face 4254 5127 5356 11798 Face 4255 5356 5143 11798 Face 4256 5143 5046 11798 Face 4257 2170 2031 11799 Face 4258 2031 2273 11799 Face 4259 2273 2260 11799 Face 4260 2260 2170 11799 Face 4261 5058 5291 11800 Face 4262 5291 4927 11800 Face 4263 4927 4933 11800 Face 4264 4933 5058 11800 Face 4265 4234 4089 11801 Face 4266 4089 3808 11801 Face 4267 3808 3885 11801 Face 4268 3885 4234 11801 Face 4269 4080 4030 11802 Face 4270 4030 4424 11802 Face 4271 4424 4522 11802 Face 4272 4522 4080 11802 Face 4273 4943 4424 11803 Face 4274 4424 4302 11803 Face 4275 4302 4814 11803 Face 4276 4814 4943 11803 Face 4277 5713 5322 11804 Face 4278 5322 5286 11804 Face 4279 5286 5755 11804 Face 4280 5755 5713 11804 Face 4281 5266 5286 11805 Face 4282 5286 4814 11805 Face 4283 4814 4731 11805 Face 4284 4731 5266 11805 Face 4285 5013 4943 11806 Face 4286 4943 5322 11806 Face 4287 5322 5359 11806 Face 4288 5359 5013 11806 Face 4289 3492 3834 11807 Face 4290 3834 3837 11807 Face 4291 3837 3503 11807 Face 4292 3503 3492 11807 Face 4293 3855 3837 11808 Face 4294 3837 4182 11808 Face 4295 4182 4199 11808 Face 4296 4199 3855 11808 Face 4297 4683 4182 11809 Face 4298 4182 4154 11809 Face 4299 4154 4635 11809 Face 4300 4635 4683 11809 Face 4301 4140 4154 11810 Face 4302 4154 3834 11810 Face 4303 3834 3815 11810 Face 4304 3815 4140 11810 Face 4305 4703 4683 11811 Face 4306 4683 5256 11811 Face 4307 5256 5264 11811 Face 4308 5264 4703 11811 Face 4309 5789 5256 11812 Face 4310 5256 5236 11812 Face 4311 5236 5809 11812 Face 4312 5809 5789 11812 Face 4313 5104 5236 11813 Face 4314 5236 4635 11813 Face 4315 4635 4548 11813 Face 4316 4548 5104 11813 Face 4317 3429 3773 11814 Face 4318 3773 3815 11814 Face 4319 3815 3466 11814 Face 4320 3466 3429 11814 Face 4321 4548 4140 11815 Face 4322 4140 4136 11815 Face 4323 4136 4431 11815 Face 4324 4431 4548 11815 Face 4325 4151 4136 11816 Face 4326 4136 3773 11816 Face 4327 3773 3800 11816 Face 4328 3800 4151 11816 Face 4329 5407 5104 11817 Face 4330 5104 4798 11817 Face 4331 4798 5022 11817 Face 4332 5022 5407 11817 Face 4333 4596 4798 11818 Face 4334 4798 4431 11818 Face 4335 4431 4400 11818 Face 4336 4400 4596 11818 Face 4337 3256 3604 11819 Face 4338 3604 3758 11819 Face 4339 3758 3426 11819 Face 4340 3426 3256 11819 Face 4341 3853 3758 11820 Face 4342 3758 4131 11820 Face 4343 4131 4183 11820 Face 4344 4183 3853 11820 Face 4345 4346 4131 11821 Face 4346 4131 4018 11821 Face 4347 4018 4246 11821 Face 4348 4246 4346 11821 Face 4349 3914 4018 11822 Face 4350 4018 3604 11822 Face 4351 3604 3471 11822 Face 4352 3471 3914 11822 Face 4353 4409 4346 11823 Face 4354 4346 4427 11823 Face 4355 4427 4552 11823 Face 4356 4552 4409 11823 Face 4357 4436 4427 11824 Face 4358 4427 4293 11824 Face 4359 4293 4291 11824 Face 4360 4291 4436 11824 Face 4361 4282 4293 11825 Face 4362 4293 4246 11825 Face 4363 4246 4170 11825 Face 4364 4170 4282 11825 Face 4365 2862 3329 11826 Face 4366 3329 3471 11826 Face 4367 3471 3076 11826 Face 4368 3076 2862 11826 Face 4369 4170 3914 11827 Face 4370 3914 3804 11827 Face 4371 3804 4137 11827 Face 4372 4137 4170 11827 Face 4373 3673 3804 11828 Face 4374 3804 3329 11828 Face 4375 3329 3174 11828 Face 4376 3174 3673 11828 Face 4377 4290 4282 11829 Face 4378 4282 4348 11829 Face 4379 4348 4428 11829 Face 4380 4428 4290 11829 Face 4381 4470 4348 11830 Face 4382 4348 4137 11830 Face 4383 4137 4188 11830 Face 4384 4188 4470 11830 Face 4385 2541 2945 11831 Face 4386 2945 3174 11831 Face 4387 3174 2706 11831 Face 4388 2706 2541 11831 Face 4389 3958 3673 11832 Face 4390 3673 3538 11832 Face 4391 3538 3832 11832 Face 4392 3832 3958 11832 Face 4393 3494 3538 11833 Face 4394 3538 2945 11833 Face 4395 2945 2877 11833 Face 4396 2877 3494 11833 Face 4397 3977 3971 11834 Face 4398 3971 3832 11834 Face 4399 3832 3841 11834 Face 4400 3841 3977 11834 Face 4401 4160 3958 11835 Face 4402 3958 3971 11835 Face 4403 3971 4169 11835 Face 4404 4169 4160 11835 Face 4405 4524 4933 11836 Face 4406 4933 4927 11836 Face 4407 4927 4492 11836 Face 4408 4492 4524 11836 Face 4409 4575 4927 11837 Face 4410 4927 5068 11837 Face 4411 5068 4748 11837 Face 4412 4748 4575 11837 Face 4413 5008 5068 11838 Face 4414 5068 5292 11838 Face 4415 5292 5348 11838 Face 4416 5348 5008 11838 Face 4417 5748 5292 11839 Face 4418 5292 5291 11839 Face 4419 5291 5750 11839 Face 4420 5750 5748 11839 Face 4421 5341 5291 11840 Face 4422 5291 5058 11840 Face 4423 5058 4997 11840 Face 4424 4997 5341 11840 Face 4425 4744 5058 11841 Face 4426 5058 4933 11841 Face 4427 4933 4617 11841 Face 4428 4617 4744 11841 Face 4429 1981 1945 11842 Face 4430 1945 1895 11842 Face 4431 1895 1918 11842 Face 4432 1918 1981 11842 Face 4433 1986 1895 11843 Face 4434 1895 1887 11843 Face 4435 1887 1972 11843 Face 4436 1972 1986 11843 Face 4437 2031 1887 11844 Face 4438 1887 1945 11844 Face 4439 1945 2080 11844 Face 4440 2080 2031 11844 Face 4441 3095 3162 11845 Face 4442 3162 2961 11845 Face 4443 2961 2874 11845 Face 4444 2874 3095 11845 Face 4445 2608 2664 11846 Face 4446 2664 2764 11846 Face 4447 2764 2711 11846 Face 4448 2711 2608 11846 Face 4449 2834 2764 11847 Face 4450 2764 2912 11847 Face 4451 2912 3025 11847 Face 4452 3025 2834 11847 Face 4453 3198 2912 11848 Face 4454 2912 2823 11848 Face 4455 2823 3140 11848 Face 4456 3140 3198 11848 Face 4457 2754 2823 11849 Face 4458 2823 2664 11849 Face 4459 2664 2589 11849 Face 4460 2589 2754 11849 Face 4461 2442 2525 11850 Face 4462 2525 2589 11850 Face 4463 2589 2516 11850 Face 4464 2516 2442 11850 Face 4465 3084 2754 11851 Face 4466 2754 2699 11851 Face 4467 2699 3013 11851 Face 4468 3013 3084 11851 Face 4469 2703 2699 11852 Face 4470 2699 2525 11852 Face 4471 2525 2523 11852 Face 4472 2523 2703 11852 Face 4473 2342 2412 11853 Face 4474 2412 2550 11853 Face 4475 2550 2505 11853 Face 4476 2505 2342 11853 Face 4477 2588 2550 11854 Face 4478 2550 2741 11854 Face 4479 2741 2768 11854 Face 4480 2768 2588 11854 Face 4481 3066 2741 11855 Face 4482 2741 2639 11855 Face 4483 2639 2885 11855 Face 4484 2885 3066 11855 Face 4485 2504 2639 11856 Face 4486 2639 2412 11856 Face 4487 2412 2224 11856 Face 4488 2224 2504 11856 Face 4489 2072 2068 11857 Face 4490 2068 2224 11857 Face 4491 2224 2174 11857 Face 4492 2174 2072 11857 Face 4493 2734 2504 11858 Face 4494 2504 2246 11858 Face 4495 2246 2561 11858 Face 4496 2561 2734 11858 Face 4497 2057 2246 11859 Face 4498 2246 2068 11859 Face 4499 2068 1953 11859 Face 4500 1953 2057 11859 Face 4501 1957 1878 11860 Face 4502 1878 1953 11860 Face 4503 1953 2016 11860 Face 4504 2016 1957 11860 Face 4505 2358 2057 11861 Face 4506 2057 1911 11861 Face 4507 1911 2131 11861 Face 4508 2131 2358 11861 Face 4509 1834 1911 11862 Face 4510 1911 1878 11862 Face 4511 1878 1829 11862 Face 4512 1829 1834 11862 Face 4513 1923 1817 11863 Face 4514 1817 1829 11863 Face 4515 1829 1928 11863 Face 4516 1928 1923 11863 Face 4517 1919 1834 11864 Face 4518 1834 1811 11864 Face 4519 1811 1898 11864 Face 4520 1898 1919 11864 Face 4521 1794 1811 11865 Face 4522 1811 1817 11865 Face 4523 1817 1818 11865 Face 4524 1818 1794 11865 Face 4525 1973 1831 11866 Face 4526 1831 1818 11866 Face 4527 1818 1937 11866 Face 4528 1937 1973 11866 Face 4529 1870 1794 11867 Face 4530 1794 1784 11867 Face 4531 1784 1832 11867 Face 4532 1832 1870 11867 Face 4533 1800 1784 11868 Face 4534 1784 1831 11868 Face 4535 1831 1859 11868 Face 4536 1859 1800 11868 Face 4537 3568 3557 11869 Face 4538 3557 3330 11869 Face 4539 3330 3322 11869 Face 4540 3322 3568 11869 Face 4541 3260 3198 11870 Face 4542 3198 3503 11870 Face 4543 3503 3534 11870 Face 4544 3534 3260 11870 Face 4545 3466 3492 11871 Face 4546 3492 3140 11871 Face 4547 3140 3084 11871 Face 4548 3084 3466 11871 Face 4549 3434 3429 11872 Face 4550 3429 3013 11872 Face 4551 3013 3019 11872 Face 4552 3019 3434 11872 Face 4553 3094 3066 11873 Face 4554 3066 3426 11873 Face 4555 3426 3489 11873 Face 4556 3489 3094 11873 Face 4557 3076 3256 11874 Face 4558 3256 2885 11874 Face 4559 2885 2734 11874 Face 4560 2734 3076 11874 Face 4561 2706 2862 11875 Face 4562 2862 2561 11875 Face 4563 2561 2358 11875 Face 4564 2358 2706 11875 Face 4565 2490 2541 11876 Face 4566 2541 2131 11876 Face 4567 2131 2112 11876 Face 4568 2112 2490 11876 Face 4569 1888 1866 11877 Face 4570 1866 1897 11877 Face 4571 1897 1917 11877 Face 4572 1917 1888 11877 Face 4573 2028 1897 11878 Face 4574 1897 1859 11878 Face 4575 1859 2007 11878 Face 4576 2007 2028 11878 Face 4577 1864 1800 11879 Face 4578 1800 1866 11879 Face 4579 1866 1948 11879 Face 4580 1948 1864 11879 Face 4581 1841 1861 11880 Face 4582 1861 1930 11880 Face 4583 1930 1934 11880 Face 4584 1934 1841 11880 Face 4585 2070 1930 11881 Face 4586 1930 1917 11881 Face 4587 1917 2050 11881 Face 4588 2050 2070 11881 Face 4589 1984 1888 11882 Face 4590 1888 1861 11882 Face 4591 1861 1929 11882 Face 4592 1929 1984 11882 Face 4593 1843 1824 11883 Face 4594 1824 1935 11883 Face 4595 1935 1939 11883 Face 4596 1939 1843 11883 Face 4597 2097 1935 11884 Face 4598 1935 1934 11884 Face 4599 1934 2089 11884 Face 4600 2089 2097 11884 Face 4601 1899 1841 11885 Face 4602 1841 1824 11885 Face 4603 1824 1874 11885 Face 4604 1874 1899 11885 Face 4605 2095 1981 11886 Face 4606 1981 1991 11886 Face 4607 1991 2101 11886 Face 4608 2101 2095 11886 Face 4609 2002 1991 11887 Face 4610 1991 1949 11887 Face 4611 1949 1988 11887 Face 4612 1988 2002 11887 Face 4613 2049 1949 11888 Face 4614 1949 1918 11888 Face 4615 1918 2018 11888 Face 4616 2018 2049 11888 Face 4617 2099 2002 11889 Face 4618 2002 2005 11889 Face 4619 2005 2090 11889 Face 4620 2090 2099 11889 Face 4621 1997 2005 11890 Face 4622 2005 2021 11890 Face 4623 2021 1998 11890 Face 4624 1998 1997 11890 Face 4625 2103 2021 11891 Face 4626 2021 1988 11891 Face 4627 1988 2071 11891 Face 4628 2071 2103 11891 Face 4629 1920 1879 11892 Face 4630 1879 1952 11892 Face 4631 1952 1977 11892 Face 4632 1977 1920 11892 Face 4633 2094 1952 11893 Face 4634 1952 1939 11893 Face 4635 1939 2100 11893 Face 4636 2100 2094 11893 Face 4637 1889 1843 11894 Face 4638 1843 1879 11894 Face 4639 1879 1933 11894 Face 4640 1933 1889 11894 Face 4641 2088 1997 11895 Face 4642 1997 1977 11895 Face 4643 1977 2092 11895 Face 4644 2092 2088 11895 Face 4645 2022 1920 11896 Face 4646 1920 1998 11896 Face 4647 1998 2085 11896 Face 4648 2085 2022 11896 Face 4649 2750 2798 11897 Face 4650 2798 2691 11897 Face 4651 2691 2641 11897 Face 4652 2641 2750 11897 Face 4653 2645 2691 11898 Face 4654 2691 2804 11898 Face 4655 2804 2766 11898 Face 4656 2766 2645 11898 Face 4657 2565 2645 11899 Face 4658 2645 2605 11899 Face 4659 2605 2508 11899 Face 4660 2508 2565 11899 Face 4661 2505 2605 11900 Face 4662 2605 2712 11900 Face 4663 2712 2627 11900 Face 4664 2627 2505 11900 Face 4665 2174 2342 11901 Face 4666 2342 2507 11901 Face 4667 2507 2386 11901 Face 4668 2386 2174 11901 Face 4669 2016 2072 11902 Face 4670 2072 2265 11902 Face 4671 2265 2186 11902 Face 4672 2186 2016 11902 Face 4673 1928 1957 11903 Face 4674 1957 2143 11903 Face 4675 2143 2128 11903 Face 4676 2128 1928 11903 Face 4677 1937 1923 11904 Face 4678 1923 2125 11904 Face 4679 2125 2136 11904 Face 4680 2136 1937 11904 Face 4681 2007 1973 11905 Face 4682 1973 2162 11905 Face 4683 2162 2191 11905 Face 4684 2191 2007 11905 Face 4685 2050 2028 11906 Face 4686 2028 2222 11906 Face 4687 2222 2252 11906 Face 4688 2252 2050 11906 Face 4689 2092 2094 11907 Face 4690 2094 2332 11907 Face 4691 2332 2325 11907 Face 4692 2325 2092 11907 Face 4693 2090 2088 11908 Face 4694 2088 2321 11908 Face 4695 2321 2329 11908 Face 4696 2329 2090 11908 Face 4697 2101 2099 11909 Face 4698 2099 2344 11909 Face 4699 2344 2347 11909 Face 4700 2347 2101 11909 Face 4701 2080 2095 11910 Face 4702 2095 2336 11910 Face 4703 2336 2273 11910 Face 4704 2273 2080 11910 Face 4705 1972 2031 11911 Face 4706 2031 2170 11911 Face 4707 2170 2146 11911 Face 4708 2146 1972 11911 Face 4709 2257 2170 11912 Face 4710 2170 2260 11912 Face 4711 2260 2289 11912 Face 4712 2289 2257 11912 Face 4713 2294 2165 11913 Face 4714 2165 2146 11913 Face 4715 2146 2261 11913 Face 4716 2261 2294 11913 Face 4717 2018 1986 11914 Face 4718 1986 2165 11914 Face 4719 2165 2205 11914 Face 4720 2205 2018 11914 Face 4721 2382 2238 11915 Face 4722 2238 2205 11915 Face 4723 2205 2334 11915 Face 4724 2334 2382 11915 Face 4725 2071 2049 11916 Face 4726 2049 2238 11916 Face 4727 2238 2278 11916 Face 4728 2278 2071 11916 Face 4729 2447 2322 11917 Face 4730 2322 2278 11917 Face 4731 2278 2416 11917 Face 4732 2416 2447 11917 Face 4733 2085 2103 11918 Face 4734 2103 2322 11918 Face 4735 2322 2295 11918 Face 4736 2295 2085 11918 Face 4737 2327 2207 11919 Face 4738 2207 2295 11919 Face 4739 2295 2419 11919 Face 4740 2419 2327 11919 Face 4741 1933 2022 11920 Face 4742 2022 2207 11920 Face 4743 2207 2130 11920 Face 4744 2130 1933 11920 Face 4745 2190 2076 11921 Face 4746 2076 2130 11921 Face 4747 2130 2247 11921 Face 4748 2247 2190 11921 Face 4749 1874 1889 11922 Face 4750 1889 2076 11922 Face 4751 2076 2069 11922 Face 4752 2069 1874 11922 Face 4753 2237 2104 11923 Face 4754 2104 2069 11923 Face 4755 2069 2185 11923 Face 4756 2185 2237 11923 Face 4757 1929 1899 11924 Face 4758 1899 2104 11924 Face 4759 2104 2141 11924 Face 4760 2141 1929 11924 Face 4761 2330 2183 11925 Face 4762 2183 2141 11925 Face 4763 2141 2280 11925 Face 4764 2280 2330 11925 Face 4765 1948 1984 11926 Face 4766 1984 2183 11926 Face 4767 2183 2151 11926 Face 4768 2151 1948 11926 Face 4769 2161 2059 11927 Face 4770 2059 2151 11927 Face 4771 2151 2286 11927 Face 4772 2286 2161 11927 Face 4773 1832 1864 11928 Face 4774 1864 2059 11928 Face 4775 2059 2030 11928 Face 4776 2030 1832 11928 Face 4777 2150 2053 11929 Face 4778 2053 2030 11929 Face 4779 2030 2123 11929 Face 4780 2123 2150 11929 Face 4781 1898 1870 11930 Face 4782 1870 2053 11930 Face 4783 2053 2074 11930 Face 4784 2074 1898 11930 Face 4785 2202 2096 11931 Face 4786 2096 2074 11931 Face 4787 2074 2172 11931 Face 4788 2172 2202 11931 Face 4789 2112 1919 11932 Face 4790 1919 2096 11932 Face 4791 2096 2287 11932 Face 4792 2287 2112 11932 Face 4793 2638 2601 11933 Face 4794 2601 2287 11933 Face 4795 2287 2400 11933 Face 4796 2400 2638 11933 Face 4797 2877 2490 11934 Face 4798 2490 2601 11934 Face 4799 2601 2992 11934 Face 4800 2992 2877 11934 Face 4801 3570 3547 11935 Face 4802 3547 2992 11935 Face 4803 2992 3042 11935 Face 4804 3042 3570 11935 Face 4805 3841 3494 11936 Face 4806 3494 3547 11936 Face 4807 3547 3883 11936 Face 4808 3883 3841 11936 Face 4809 4040 4021 11937 Face 4810 4021 3883 11937 Face 4811 3883 3902 11937 Face 4812 3902 4040 11937 Face 4813 4339 3977 11938 Face 4814 3977 4021 11938 Face 4815 4021 4385 11938 Face 4816 4385 4339 11938 Face 4817 5178 5174 11939 Face 4818 5174 4385 11939 Face 4819 4385 4401 11939 Face 4820 4401 5178 11939 Face 4821 4447 4339 11940 Face 4822 4339 5168 11940 Face 4823 5168 5191 11940 Face 4824 5191 4447 11940 Face 4825 5877 5168 11941 Face 4826 5168 5174 11941 Face 4827 5174 5871 11941 Face 4828 5871 5877 11941 Face 4829 5776 5266 11942 Face 4830 5266 5264 11942 Face 4831 5264 5778 11942 Face 4832 5778 5776 11942 Face 4833 4199 4703 11943 Face 4834 4703 4731 11943 Face 4835 4731 4234 11943 Face 4836 4234 4199 11943 Face 4837 3534 3855 11944 Face 4838 3855 3885 11944 Face 4839 3885 3568 11944 Face 4840 3568 3534 11944 Face 4841 3025 3260 11945 Face 4842 3260 3322 11945 Face 4843 3322 3095 11945 Face 4844 3095 3025 11945 Face 4845 2711 2834 11946 Face 4846 2834 2874 11946 Face 4847 2874 2750 11946 Face 4848 2750 2711 11946 Face 4849 2516 2608 11947 Face 4850 2608 2641 11947 Face 4851 2641 2565 11947 Face 4852 2565 2516 11947 Face 4853 2523 2442 11948 Face 4854 2442 2508 11948 Face 4855 2508 2588 11948 Face 4856 2588 2523 11948 Face 4857 3019 2703 11949 Face 4858 2703 2768 11949 Face 4859 2768 3094 11949 Face 4860 3094 3019 11949 Face 4861 3800 3434 11950 Face 4862 3434 3489 11950 Face 4863 3489 3853 11950 Face 4864 3853 3800 11950 Face 4865 4400 4151 11951 Face 4866 4151 4183 11951 Face 4867 4183 4409 11951 Face 4868 4409 4400 11951 Face 4869 4649 4596 11952 Face 4870 4596 4552 11952 Face 4871 4552 4581 11952 Face 4872 4581 4649 11952 Face 4873 4589 4470 11953 Face 4874 4470 4571 11953 Face 4875 4571 4691 11953 Face 4876 4691 4589 11953 Face 4877 4507 4571 11954 Face 4878 4571 4188 11954 Face 4879 4188 4160 11954 Face 4880 4160 4507 11954 Face 4881 4816 4498 11955 Face 4882 4498 4169 11955 Face 4883 4169 4447 11955 Face 4884 4447 4816 11955 Face 4885 5751 5290 11956 Face 4886 5290 5191 11956 Face 4887 5191 5854 11956 Face 4888 5854 5751 11956 Face 4889 5739 5301 11957 Face 4890 5301 5295 11957 Face 4891 5295 5745 11957 Face 4892 5745 5739 11957 Face 4893 5278 5295 11958 Face 4894 5295 4842 11958 Face 4895 4842 4766 11958 Face 4896 4766 5278 11958 Face 4897 4419 4842 11959 Face 4898 4842 4870 11959 Face 4899 4870 4452 11959 Face 4900 4452 4419 11959 Face 4901 4452 4433 11960 Face 4902 4433 4192 11960 Face 4903 4192 4197 11960 Face 4904 4197 4452 11960 Face 4905 4044 4192 11961 Face 4906 4192 4260 11961 Face 4907 4260 4111 11961 Face 4908 4111 4044 11961 Face 4909 4294 4260 11962 Face 4910 4260 4464 11962 Face 4911 4464 4506 11962 Face 4912 4506 4294 11962 Face 4913 4506 4881 11963 Face 4914 4881 4812 11963 Face 4915 4812 4421 11963 Face 4916 4421 4506 11963 Face 4917 4739 4812 11964 Face 4918 4812 5285 11964 Face 4919 5285 5271 11964 Face 4920 5271 4739 11964 Face 4921 5756 5285 11965 Face 4922 5285 5303 11965 Face 4923 5303 5736 11965 Face 4924 5736 5756 11965 Face 4925 5763 5278 11966 Face 4926 5278 5253 11966 Face 4927 5253 5793 11966 Face 4928 5793 5763 11966 Face 4929 5233 5253 11967 Face 4930 5253 4674 11967 Face 4931 4674 4627 11967 Face 4932 4627 5233 11967 Face 4933 4252 4674 11968 Face 4934 4674 4766 11968 Face 4935 4766 4327 11968 Face 4936 4327 4252 11968 Face 4937 4118 4044 11969 Face 4938 4044 3975 11969 Face 4939 3975 4041 11969 Face 4940 4041 4118 11969 Face 4941 3955 3975 11970 Face 4942 3975 4034 11970 Face 4943 4034 4009 11970 Face 4944 4009 3955 11970 Face 4945 4130 4034 11971 Face 4946 4034 4111 11971 Face 4947 4111 4216 11971 Face 4948 4216 4130 11971 Face 4949 4335 4739 11972 Face 4950 4739 4647 11972 Face 4951 4647 4278 11972 Face 4952 4278 4335 11972 Face 4953 4608 4647 11973 Face 4954 4647 5238 11973 Face 4955 5238 5228 11973 Face 4956 5228 4608 11973 Face 4957 5807 5238 11974 Face 4958 5238 5271 11974 Face 4959 5271 5771 11974 Face 4960 5771 5807 11974 Face 4961 5812 5233 11975 Face 4962 5233 5244 11975 Face 4963 5244 5802 11975 Face 4964 5802 5812 11975 Face 4965 5281 5244 11976 Face 4966 5244 4661 11976 Face 4967 4661 4785 11976 Face 4968 4785 5281 11976 Face 4969 4247 4661 11977 Face 4970 4661 4627 11977 Face 4971 4627 4225 11977 Face 4972 4225 4247 11977 Face 4973 4020 3955 11978 Face 4974 3955 3973 11978 Face 4975 3973 4047 11978 Face 4976 4047 4020 11978 Face 4977 4145 3973 11979 Face 4978 3973 4017 11979 Face 4979 4017 4176 11979 Face 4980 4176 4145 11979 Face 4981 4108 4017 11980 Face 4982 4017 4009 11980 Face 4983 4009 4099 11980 Face 4984 4099 4108 11980 Face 4985 4242 4608 11981 Face 4986 4608 4653 11981 Face 4987 4653 4273 11981 Face 4988 4273 4242 11981 Face 4989 4773 4653 11982 Face 4990 4653 5240 11982 Face 4991 5240 5280 11982 Face 4992 5280 4773 11982 Face 4993 5805 5240 11983 Face 4994 5240 5228 11983 Face 4995 5228 5817 11983 Face 4996 5817 5805 11983 Face 4997 5760 5281 11984 Face 4998 5281 5348 11984 Face 4999 5348 5689 11984 Face 5000 5689 5760 11984 Face 5001 4748 5008 11985 Face 5002 5008 4785 11985 Face 5003 4785 4380 11985 Face 5004 4380 4748 11985 Face 5005 4219 4145 11986 Face 5006 4145 4492 11986 Face 5007 4492 4575 11986 Face 5008 4575 4219 11986 Face 5009 4617 4524 11987 Face 5010 4524 4176 11987 Face 5011 4176 4270 11987 Face 5012 4270 4617 11987 Face 5013 4393 4773 11988 Face 5014 4773 4997 11988 Face 5015 4997 4744 11988 Face 5016 4744 4393 11988 Face 5017 5692 5341 11989 Face 5018 5341 5280 11989 Face 5019 5280 5761 11989 Face 5020 5761 5692 11989 Face 5021 4216 4294 11990 Face 5022 4294 4421 11990 Face 5023 4421 4335 11990 Face 5024 4335 4216 11990 Face 5025 4099 4130 11991 Face 5026 4130 4278 11991 Face 5027 4278 4242 11991 Face 5028 4242 4099 11991 Face 5029 4270 4108 11992 Face 5030 4108 4273 11992 Face 5031 4273 4393 11992 Face 5032 4393 4270 11992 Face 5033 4047 4219 11993 Face 5034 4219 4380 11993 Face 5035 4380 4247 11993 Face 5036 4247 4047 11993 Face 5037 4041 4020 11994 Face 5038 4020 4225 11994 Face 5039 4225 4252 11994 Face 5040 4252 4041 11994 Face 5041 4197 4118 11995 Face 5042 4118 4327 11995 Face 5043 4327 4419 11995 Face 5044 4419 4197 11995 Face 5045 4428 4589 11996 Face 5046 4589 4472 11996 Face 5047 4472 4354 11996 Face 5048 4354 4428 11996 Face 5049 4493 4472 11997 Face 5050 4472 4691 11997 Face 5051 4691 4710 11997 Face 5052 4710 4493 11997 Face 5053 4535 4891 11998 Face 5054 4891 4749 11998 Face 5055 4749 4359 11998 Face 5056 4359 4535 11998 Face 5057 4759 4749 11999 Face 5058 4749 5274 11999 Face 5059 5274 5277 11999 Face 5060 5277 4759 11999 Face 5061 5768 5274 12000 Face 5062 5274 5307 12000 Face 5063 5307 5730 12000 Face 5064 5730 5768 12000 Face 5065 5329 5307 12001 Face 5066 5307 4891 12001 Face 5067 4891 4961 12001 Face 5068 4961 5329 12001 Face 5069 4369 4759 12002 Face 5070 4759 4916 12002 Face 5071 4916 4580 12002 Face 5072 4580 4369 12002 Face 5073 4988 4916 12003 Face 5074 4916 5316 12003 Face 5075 5316 5335 12003 Face 5076 5335 4988 12003 Face 5077 5719 5316 12004 Face 5078 5316 5277 12004 Face 5079 5277 5764 12004 Face 5080 5764 5719 12004 Face 5081 4702 4988 12005 Face 5082 4988 4989 12005 Face 5083 4989 4704 12005 Face 5084 4704 4702 12005 Face 5085 4993 4989 12006 Face 5086 4989 5336 12006 Face 5087 5336 5339 12006 Face 5088 5339 4993 12006 Face 5089 5696 5336 12007 Face 5090 5336 5335 12007 Face 5091 5335 5697 12007 Face 5092 5697 5696 12007 Face 5093 5643 5407 12008 Face 5094 5407 5408 12008 Face 5095 5408 5644 12008 Face 5096 5644 5643 12008 Face 5097 5340 5408 12009 Face 5098 5408 5022 12009 Face 5099 5022 4995 12009 Face 5100 4995 5340 12009 Face 5101 5154 5143 12010 Face 5102 5143 5356 12010 Face 5103 5356 5406 12010 Face 5104 5406 5154 12010 Face 5105 5685 5356 12011 Face 5106 5356 5351 12011 Face 5107 5351 5688 12011 Face 5108 5688 5685 12011 Face 5109 5396 5351 12012 Face 5110 5351 5127 12012 Face 5111 5127 5121 12012 Face 5112 5121 5396 12012 Face 5113 4956 5127 12013 Face 5114 5127 5046 12013 Face 5115 5046 4911 12013 Face 5116 4911 4956 12013 Face 5117 4926 5046 12014 Face 5118 5046 5143 12014 Face 5119 5143 4985 12014 Face 5120 4985 4926 12014 Face 5121 4719 4649 12015 Face 5122 4649 4483 12015 Face 5123 4483 4517 12015 Face 5124 4517 4719 12015 Face 5125 4509 4483 12016 Face 5126 4483 4466 12016 Face 5127 4466 4510 12016 Face 5128 4510 4509 12016 Face 5129 4374 4466 12017 Face 5130 4466 4581 12017 Face 5131 4581 4436 12017 Face 5132 4436 4374 12017 Face 5133 4410 4374 12018 Face 5134 4374 4232 12018 Face 5135 4232 4259 12018 Face 5136 4259 4410 12018 Face 5137 4221 4232 12019 Face 5138 4232 4291 12019 Face 5139 4291 4290 12019 Face 5140 4290 4221 12019 Face 5141 4249 4221 12020 Face 5142 4221 4354 12020 Face 5143 4354 4389 12020 Face 5144 4389 4249 12020 Face 5145 4710 4977 12021 Face 5146 4977 4961 12021 Face 5147 4961 4688 12021 Face 5148 4688 4710 12021 Face 5149 4389 4493 12022 Face 5150 4493 4688 12022 Face 5151 4688 4535 12022 Face 5152 4535 4389 12022 Face 5153 4259 4249 12023 Face 5154 4249 4359 12023 Face 5155 4359 4369 12023 Face 5156 4369 4259 12023 Face 5157 4510 4410 12024 Face 5158 4410 4580 12024 Face 5159 4580 4702 12024 Face 5160 4702 4510 12024 Face 5161 4515 4509 12025 Face 5162 4509 4704 12025 Face 5163 4704 4714 12025 Face 5164 4714 4515 12025 Face 5165 5693 5340 12026 Face 5166 5340 5371 12026 Face 5167 5371 5675 12026 Face 5168 5675 5693 12026 Face 5169 5395 5371 12027 Face 5170 5371 5073 12027 Face 5171 5073 5117 12027 Face 5172 5117 5395 12027 Face 5173 4806 5073 12028 Face 5174 5073 4995 12028 Face 5175 4995 4719 12028 Face 5176 4719 4806 12028 Face 5177 4880 4806 12029 Face 5178 4806 4554 12029 Face 5179 4554 4642 12029 Face 5180 4642 4880 12029 Face 5181 4520 4554 12030 Face 5182 4554 4517 12030 Face 5183 4517 4515 12030 Face 5184 4515 4520 12030 Face 5185 4588 4520 12031 Face 5186 4520 4725 12031 Face 5187 4725 4760 12031 Face 5188 4760 4588 12031 Face 5189 4999 4725 12032 Face 5190 4725 4714 12032 Face 5191 4714 4993 12032 Face 5192 4993 4999 12032 Face 5193 5015 4999 12033 Face 5194 4999 5342 12033 Face 5195 5342 5352 12033 Face 5196 5352 5015 12033 Face 5197 5691 5342 12034 Face 5198 5342 5339 12034 Face 5199 5339 5694 12034 Face 5200 5694 5691 12034 Face 5201 5657 5395 12035 Face 5202 5395 5399 12035 Face 5203 5399 5652 12035 Face 5204 5652 5657 12035 Face 5205 5400 5399 12036 Face 5206 5399 5131 12036 Face 5207 5131 5145 12036 Face 5208 5145 5400 12036 Face 5209 4913 5131 12037 Face 5210 5131 5117 12037 Face 5211 5117 4880 12037 Face 5212 4880 4913 12037 Face 5213 4949 4913 12038 Face 5214 4913 4745 12038 Face 5215 4745 4850 12038 Face 5216 4850 4949 12038 Face 5217 4716 4745 12039 Face 5218 4745 4642 12039 Face 5219 4642 4588 12039 Face 5220 4588 4716 12039 Face 5221 4827 4716 12040 Face 5222 4716 4843 12040 Face 5223 4843 4899 12040 Face 5224 4899 4827 12040 Face 5225 5054 4843 12041 Face 5226 4843 4760 12041 Face 5227 4760 5015 12041 Face 5228 5015 5054 12041 Face 5229 5088 5054 12042 Face 5230 5054 5369 12042 Face 5231 5369 5380 12042 Face 5232 5380 5088 12042 Face 5233 5677 5369 12043 Face 5234 5369 5352 12043 Face 5235 5352 5687 12043 Face 5236 5687 5677 12043 Face 5237 5650 5400 12044 Face 5238 5400 5406 12044 Face 5239 5406 5645 12044 Face 5240 5645 5650 12044 Face 5241 4985 5154 12045 Face 5242 5154 5145 12045 Face 5243 5145 4949 12045 Face 5244 4949 4985 12045 Face 5245 4911 4926 12046 Face 5246 4926 4850 12046 Face 5247 4850 4827 12046 Face 5248 4827 4911 12046 Face 5249 5121 4956 12047 Face 5250 4956 4899 12047 Face 5251 4899 5088 12047 Face 5252 5088 5121 12047 Face 5253 5656 5396 12048 Face 5254 5396 5380 12048 Face 5255 5380 5669 12048 Face 5256 5669 5656 12048 Face 5257 7158 7326 12049 Face 5258 7326 7014 12049 Face 5259 7014 6809 12049 Face 5260 6809 7158 12049 Face 5261 6317 6260 12050 Face 5262 6260 5755 12050 Face 5263 5755 5776 12050 Face 5264 5776 6317 12050 Face 5265 6412 6892 12051 Face 5266 6892 6865 12051 Face 5267 6865 6365 12051 Face 5268 6365 6412 12051 Face 5269 6845 6865 12052 Face 5270 6865 7205 12052 Face 5271 7205 7188 12052 Face 5272 7188 6845 12052 Face 5273 7540 7205 12053 Face 5274 7205 7208 12053 Face 5275 7208 7552 12053 Face 5276 7552 7540 12053 Face 5277 7228 7208 12054 Face 5278 7208 6892 12054 Face 5279 6892 6905 12054 Face 5280 6905 7228 12054 Face 5281 5778 5789 12055 Face 5282 5789 6365 12055 Face 5283 6365 6346 12055 Face 5284 6346 5778 12055 Face 5285 6496 6412 12056 Face 5286 6412 5809 12056 Face 5287 5809 5944 12056 Face 5288 5944 6496 12056 Face 5289 6607 6909 12057 Face 5290 6909 6905 12057 Face 5291 6905 6496 12057 Face 5292 6496 6607 12057 Face 5293 7577 7228 12058 Face 5294 7228 7273 12058 Face 5295 7273 7616 12058 Face 5296 7616 7577 12058 Face 5297 7244 7273 12059 Face 5298 7273 6909 12059 Face 5299 6909 6895 12059 Face 5300 6895 7244 12059 Face 5301 6018 6245 12060 Face 5302 6245 5944 12060 Face 5303 5944 5643 12060 Face 5304 5643 6018 12060 Face 5305 6640 6607 12061 Face 5306 6607 6245 12061 Face 5307 6245 6450 12061 Face 5308 6450 6640 12061 Face 5309 6796 7020 12062 Face 5310 7020 6914 12062 Face 5311 6914 6695 12062 Face 5312 6695 6796 12062 Face 5313 6863 6914 12063 Face 5314 6914 7286 12063 Face 5315 7286 7190 12063 Face 5316 7190 6863 12063 Face 5317 7618 7286 12064 Face 5318 7286 7438 12064 Face 5319 7438 7789 12064 Face 5320 7789 7618 12064 Face 5321 7574 7438 12065 Face 5322 7438 7020 12065 Face 5323 7020 7128 12065 Face 5324 7128 7574 12065 Face 5325 6751 6749 12066 Face 5326 6749 6611 12066 Face 5327 6611 6602 12066 Face 5328 6602 6751 12066 Face 5329 6492 6611 12067 Face 5330 6611 6695 12067 Face 5331 6695 6629 12067 Face 5332 6629 6492 12067 Face 5333 6876 6796 12068 Face 5334 6796 6749 12068 Face 5335 6749 6759 12068 Face 5336 6759 6876 12068 Face 5337 6908 7239 12069 Face 5338 7239 7128 12069 Face 5339 7128 6876 12069 Face 5340 6876 6908 12069 Face 5341 7963 7574 12070 Face 5342 7574 7715 12070 Face 5343 7715 8179 12070 Face 5344 8179 7963 12070 Face 5345 7870 7715 12071 Face 5346 7715 7239 12071 Face 5347 7239 7371 12071 Face 5348 7371 7870 12071 Face 5349 6610 6693 12072 Face 5350 6693 6759 12072 Face 5351 6759 6752 12072 Face 5352 6752 6610 12072 Face 5353 6856 6908 12073 Face 5354 6908 6693 12073 Face 5355 6693 6570 12073 Face 5356 6570 6856 12073 Face 5357 7211 7503 12074 Face 5358 7503 7371 12074 Face 5359 7371 7082 12074 Face 5360 7082 7211 12074 Face 5361 8343 7870 12075 Face 5362 7870 8090 12075 Face 5363 8090 8504 12075 Face 5364 8504 8343 12075 Face 5365 8166 8090 12076 Face 5366 8090 7503 12076 Face 5367 7503 7551 12076 Face 5368 7551 8166 12076 Face 5369 7201 7211 12077 Face 5370 7211 7068 12077 Face 5371 7068 7063 12077 Face 5372 7063 7201 12077 Face 5373 6877 7068 12078 Face 5374 7068 7082 12078 Face 5375 7082 6886 12078 Face 5376 6886 6877 12078 Face 5377 6043 5989 12079 Face 5378 5989 5750 12079 Face 5379 5750 5692 12079 Face 5380 5692 6043 12079 Face 5381 5689 5748 12080 Face 5382 5748 5979 12080 Face 5383 5979 6032 12080 Face 5384 6032 5689 12080 Face 5385 6298 5979 12081 Face 5386 5979 6114 12081 Face 5387 6114 6470 12081 Face 5388 6470 6298 12081 Face 5389 6548 6114 12082 Face 5390 6114 6109 12082 Face 5391 6109 6519 12082 Face 5392 6519 6548 12082 Face 5393 6429 6109 12083 Face 5394 6109 5989 12083 Face 5395 5989 6303 12083 Face 5396 6303 6429 12083 Face 5397 9073 9158 12084 Face 5398 9158 9150 12084 Face 5399 9150 9059 12084 Face 5400 9059 9073 12084 Face 5401 9127 9150 12085 Face 5402 9150 9099 12085 Face 5403 9099 9063 12085 Face 5404 9063 9127 12085 Face 5405 8964 9099 12086 Face 5406 9099 9158 12086 Face 5407 9158 9013 12086 Face 5408 9013 8964 12086 Face 5409 8246 8144 12087 Face 5410 8144 7945 12087 Face 5411 7945 7940 12087 Face 5412 7940 8246 12087 Face 5413 7712 7945 12088 Face 5414 7945 7966 12088 Face 5415 7966 7848 12088 Face 5416 7848 7712 12088 Face 5417 7901 8220 12089 Face 5418 8220 8129 12089 Face 5419 8129 7844 12089 Face 5420 7844 7901 12089 Face 5421 8008 8129 12090 Face 5422 8129 8281 12090 Face 5423 8281 8211 12090 Face 5424 8211 8008 12090 Face 5425 8339 8281 12091 Face 5426 8281 8388 12091 Face 5427 8388 8441 12091 Face 5428 8441 8339 12091 Face 5429 8457 8388 12092 Face 5430 8388 8220 12092 Face 5431 8220 8290 12092 Face 5432 8290 8457 12092 Face 5433 8022 8349 12093 Face 5434 8349 8290 12093 Face 5435 8290 7955 12093 Face 5436 7955 8022 12093 Face 5437 8529 8457 12094 Face 5438 8457 8520 12094 Face 5439 8520 8602 12094 Face 5440 8602 8529 12094 Face 5441 8522 8520 12095 Face 5442 8520 8349 12095 Face 5443 8349 8346 12095 Face 5444 8346 8522 12095 Face 5445 8157 8409 12096 Face 5446 8409 8302 12096 Face 5447 8302 7972 12096 Face 5448 7972 8157 12096 Face 5449 8278 8302 12097 Face 5450 8302 8495 12097 Face 5451 8495 8459 12097 Face 5452 8459 8278 12097 Face 5453 8539 8495 12098 Face 5454 8495 8634 12098 Face 5455 8634 8704 12098 Face 5456 8704 8539 12098 Face 5457 8821 8634 12099 Face 5458 8634 8409 12099 Face 5459 8409 8541 12099 Face 5460 8541 8821 12099 Face 5461 8486 8799 12100 Face 5462 8799 8541 12100 Face 5463 8541 8308 12100 Face 5464 8308 8486 12100 Face 5465 8870 8821 12101 Face 5466 8821 8977 12101 Face 5467 8977 8971 12101 Face 5468 8971 8870 12101 Face 5469 9092 8977 12102 Face 5470 8977 8799 12102 Face 5471 8799 8988 12102 Face 5472 8988 9092 12102 Face 5473 8914 9134 12103 Face 5474 9134 8988 12103 Face 5475 8988 8687 12103 Face 5476 8687 8914 12103 Face 5477 9029 9092 12104 Face 5478 9092 9167 12104 Face 5479 9167 9088 12104 Face 5480 9088 9029 12104 Face 5481 9216 9167 12105 Face 5482 9167 9134 12105 Face 5483 9134 9211 12105 Face 5484 9211 9216 12105 Face 5485 9147 9234 12106 Face 5486 9234 9211 12106 Face 5487 9211 9126 12106 Face 5488 9126 9147 12106 Face 5489 9117 9216 12107 Face 5490 9216 9228 12107 Face 5491 9228 9122 12107 Face 5492 9122 9117 12107 Face 5493 9227 9228 12108 Face 5494 9228 9234 12108 Face 5495 9234 9251 12108 Face 5496 9251 9227 12108 Face 5497 9213 9261 12109 Face 5498 9261 9251 12109 Face 5499 9251 9175 12109 Face 5500 9175 9213 12109 Face 5501 9108 9227 12110 Face 5502 9227 9214 12110 Face 5503 9214 9072 12110 Face 5504 9072 9108 12110 Face 5505 9186 9214 12111 Face 5506 9214 9261 12111 Face 5507 9261 9245 12111 Face 5508 9245 9186 12111 Face 5509 7719 7712 12112 Face 5510 7712 7569 12112 Face 5511 7569 7471 12112 Face 5512 7471 7719 12112 Face 5513 7510 7540 12113 Face 5514 7540 7844 12113 Face 5515 7844 7786 12113 Face 5516 7786 7510 12113 Face 5517 7955 7901 12114 Face 5518 7901 7552 12114 Face 5519 7552 7577 12114 Face 5520 7577 7955 12114 Face 5521 8016 8022 12115 Face 5522 8022 7616 12115 Face 5523 7616 7612 12115 Face 5524 7612 8016 12115 Face 5525 7554 7618 12116 Face 5526 7618 7972 12116 Face 5527 7972 7941 12116 Face 5528 7941 7554 12116 Face 5529 8308 8157 12117 Face 5530 8157 7789 12117 Face 5531 7789 7963 12117 Face 5532 7963 8308 12117 Face 5533 8687 8486 12118 Face 5534 8486 8179 12118 Face 5535 8179 8343 12118 Face 5536 8343 8687 12118 Face 5537 8933 8914 12119 Face 5538 8914 8504 12119 Face 5539 8504 8556 12119 Face 5540 8556 8933 12119 Face 5541 9038 9186 12120 Face 5542 9186 9148 12120 Face 5543 9148 9017 12120 Face 5544 9017 9038 12120 Face 5545 9128 9148 12121 Face 5546 9148 9179 12121 Face 5547 9179 9157 12121 Face 5548 9157 9128 12121 Face 5549 9097 9179 12122 Face 5550 9179 9245 12122 Face 5551 9245 9181 12122 Face 5552 9181 9097 12122 Face 5553 8995 9128 12123 Face 5554 9128 9115 12123 Face 5555 9115 8974 12123 Face 5556 8974 8995 12123 Face 5557 9111 9115 12124 Face 5558 9115 9184 12124 Face 5559 9184 9204 12124 Face 5560 9204 9111 12124 Face 5561 9116 9184 12125 Face 5562 9184 9157 12125 Face 5563 9157 9061 12125 Face 5564 9061 9116 12125 Face 5565 8956 9111 12126 Face 5566 9111 9110 12126 Face 5567 9110 8947 12126 Face 5568 8947 8956 12126 Face 5569 9106 9110 12127 Face 5570 9110 9221 12127 Face 5571 9221 9202 12127 Face 5572 9202 9106 12127 Face 5573 9171 9221 12128 Face 5574 9221 9204 12128 Face 5575 9204 9146 12128 Face 5576 9146 9171 12128 Face 5577 9057 9096 12129 Face 5578 9096 9054 12129 Face 5579 9054 9043 12129 Face 5580 9043 9057 12129 Face 5581 8943 9054 12130 Face 5582 9054 9063 12130 Face 5583 9063 8949 12130 Face 5584 8949 8943 12130 Face 5585 9027 9127 12131 Face 5586 9127 9096 12131 Face 5587 9096 8996 12131 Face 5588 8996 9027 12131 Face 5589 9047 9024 12132 Face 5590 9024 9040 12132 Face 5591 9040 9048 12132 Face 5592 9048 9047 12132 Face 5593 8955 9040 12133 Face 5594 9040 9043 12133 Face 5595 9043 8945 12133 Face 5596 8945 8955 12133 Face 5597 8973 9057 12134 Face 5598 9057 9024 12134 Face 5599 9024 8941 12134 Face 5600 8941 8973 12134 Face 5601 8944 9106 12135 Face 5602 9106 9093 12135 Face 5603 9093 8950 12135 Face 5604 8950 8944 12135 Face 5605 9068 9093 12136 Face 5606 9093 9166 12136 Face 5607 9166 9125 12136 Face 5608 9125 9068 12136 Face 5609 9112 9166 12137 Face 5610 9166 9202 12137 Face 5611 9202 9156 12137 Face 5612 9156 9112 12137 Face 5613 8953 9068 12138 Face 5614 9068 9048 12138 Face 5615 9048 8957 12138 Face 5616 8957 8953 12138 Face 5617 8960 9047 12139 Face 5618 9047 9125 12139 Face 5619 9125 9023 12139 Face 5620 9023 8960 12139 Face 5621 8407 8356 12140 Face 5622 8356 8263 12140 Face 5623 8263 8352 12140 Face 5624 8352 8407 12140 Face 5625 8282 8248 12141 Face 5626 8248 8356 12141 Face 5627 8356 8403 12141 Face 5628 8403 8282 12141 Face 5629 8536 8443 12142 Face 5630 8443 8403 12142 Face 5631 8403 8482 12142 Face 5632 8482 8536 12142 Face 5633 8419 8338 12143 Face 5634 8338 8443 12143 Face 5635 8443 8539 12143 Face 5636 8539 8419 12143 Face 5637 8659 8537 12144 Face 5638 8537 8704 12144 Face 5639 8704 8870 12144 Face 5640 8870 8659 12144 Face 5641 8857 8778 12145 Face 5642 8778 8971 12145 Face 5643 8971 9029 12145 Face 5644 9029 8857 12145 Face 5645 8917 8902 12146 Face 5646 8902 9088 12146 Face 5647 9088 9117 12146 Face 5648 9117 8917 12146 Face 5649 8909 8919 12147 Face 5650 8919 9122 12147 Face 5651 9122 9108 12147 Face 5652 9108 8909 12147 Face 5653 8852 8883 12148 Face 5654 8883 9072 12148 Face 5655 9072 9038 12148 Face 5656 9038 8852 12148 Face 5657 8793 8822 12149 Face 5658 8822 9017 12149 Face 5659 9017 8995 12149 Face 5660 8995 8793 12149 Face 5661 8733 8754 12150 Face 5662 8754 8974 12150 Face 5663 8974 8956 12150 Face 5664 8956 8733 12150 Face 5665 8712 8717 12151 Face 5666 8717 8947 12151 Face 5667 8947 8944 12151 Face 5668 8944 8712 12151 Face 5669 8722 8716 12152 Face 5670 8716 8950 12152 Face 5671 8950 8953 12152 Face 5672 8953 8722 12152 Face 5673 8719 8726 12153 Face 5674 8726 8957 12153 Face 5675 8957 8955 12153 Face 5676 8955 8719 12153 Face 5677 8699 8702 12154 Face 5678 8702 8945 12154 Face 5679 8945 8943 12154 Face 5680 8943 8699 12154 Face 5681 8772 8711 12155 Face 5682 8711 8949 12155 Face 5683 8949 8964 12155 Face 5684 8964 8772 12155 Face 5685 8898 8874 12156 Face 5686 8874 9013 12156 Face 5687 9013 9073 12156 Face 5688 9073 8898 12156 Face 5689 8755 8785 12157 Face 5690 8785 8874 12157 Face 5691 8874 8786 12157 Face 5692 8786 8755 12157 Face 5693 8780 8898 12158 Face 5694 8898 8880 12158 Face 5695 8880 8750 12158 Face 5696 8750 8780 12158 Face 5697 8837 8880 12159 Face 5698 8880 9059 12159 Face 5699 9059 9027 12159 Face 5700 9027 8837 12159 Face 5701 8713 8837 12160 Face 5702 8837 8807 12160 Face 5703 8807 8664 12160 Face 5704 8664 8713 12160 Face 5705 8768 8807 12161 Face 5706 8807 8996 12161 Face 5707 8996 8973 12161 Face 5708 8973 8768 12161 Face 5709 8631 8768 12162 Face 5710 8768 8725 12162 Face 5711 8725 8596 12162 Face 5712 8596 8631 12162 Face 5713 8751 8725 12163 Face 5714 8725 8941 12163 Face 5715 8941 8960 12163 Face 5716 8960 8751 12163 Face 5717 8626 8751 12164 Face 5718 8751 8836 12164 Face 5719 8836 8720 12164 Face 5720 8720 8626 12164 Face 5721 8915 8836 12165 Face 5722 8836 9023 12165 Face 5723 9023 9112 12165 Face 5724 9112 8915 12165 Face 5725 8798 8915 12166 Face 5726 8915 8967 12166 Face 5727 8967 8853 12166 Face 5728 8853 8798 12166 Face 5729 8976 8967 12167 Face 5730 8967 9156 12167 Face 5731 9156 9171 12167 Face 5732 9171 8976 12167 Face 5733 8858 8976 12168 Face 5734 8976 8940 12168 Face 5735 8940 8808 12168 Face 5736 8808 8858 12168 Face 5737 8904 8940 12169 Face 5738 8940 9146 12169 Face 5739 9146 9116 12169 Face 5740 9116 8904 12169 Face 5741 8765 8904 12170 Face 5742 8904 8861 12170 Face 5743 8861 8718 12170 Face 5744 8718 8765 12170 Face 5745 8893 8861 12171 Face 5746 8861 9061 12171 Face 5747 9061 9097 12171 Face 5748 9097 8893 12171 Face 5749 8758 8893 12172 Face 5750 8893 8986 12172 Face 5751 8986 8884 12172 Face 5752 8884 8758 12172 Face 5753 9015 8986 12173 Face 5754 8986 9181 12173 Face 5755 9181 9213 12173 Face 5756 9213 9015 12173 Face 5757 8922 9015 12174 Face 5758 9015 8992 12174 Face 5759 8992 8894 12174 Face 5760 8894 8922 12174 Face 5761 8969 8992 12175 Face 5762 8992 9175 12175 Face 5763 9175 9147 12175 Face 5764 9147 8969 12175 Face 5765 8872 8969 12176 Face 5766 8969 8948 12176 Face 5767 8948 8840 12176 Face 5768 8840 8872 12176 Face 5769 8757 8948 12177 Face 5770 8948 9126 12177 Face 5771 9126 8933 12177 Face 5772 8933 8757 12177 Face 5773 8646 8757 12178 Face 5774 8757 8446 12178 Face 5775 8446 8410 12178 Face 5776 8410 8646 12178 Face 5777 8045 8446 12179 Face 5778 8446 8556 12179 Face 5779 8556 8166 12179 Face 5780 8166 8045 12179 Face 5781 7992 8045 12180 Face 5782 8045 7494 12180 Face 5783 7494 7470 12180 Face 5784 7470 7992 12180 Face 5785 7160 7494 12181 Face 5786 7494 7551 12181 Face 5787 7551 7201 12181 Face 5788 7201 7160 12181 Face 5789 7141 7160 12182 Face 5790 7160 7017 12182 Face 5791 7017 6999 12182 Face 5792 6999 7141 12182 Face 5793 6654 7017 12183 Face 5794 7017 7063 12183 Face 5795 7063 6702 12183 Face 5796 6702 6654 12183 Face 5797 5854 5877 12184 Face 5798 5877 6702 12184 Face 5799 6702 6593 12184 Face 5800 6593 5854 12184 Face 5801 6638 6654 12185 Face 5802 6654 5871 12185 Face 5803 5871 5867 12185 Face 5804 5867 6638 12185 Face 5805 6809 6317 12186 Face 5806 6317 6346 12186 Face 5807 6346 6845 12186 Face 5808 6845 6809 12186 Face 5809 7471 7158 12187 Face 5810 7158 7188 12187 Face 5811 7188 7510 12187 Face 5812 7510 7471 12187 Face 5813 7940 7719 12188 Face 5814 7719 7786 12188 Face 5815 7786 8008 12188 Face 5816 8008 7940 12188 Face 5817 8352 8246 12189 Face 5818 8246 8211 12189 Face 5819 8211 8339 12189 Face 5820 8339 8352 12189 Face 5821 8482 8407 12190 Face 5822 8407 8441 12190 Face 5823 8441 8529 12190 Face 5824 8529 8482 12190 Face 5825 8459 8536 12191 Face 5826 8536 8602 12191 Face 5827 8602 8522 12191 Face 5828 8522 8459 12191 Face 5829 7941 8278 12192 Face 5830 8278 8346 12192 Face 5831 8346 8016 12192 Face 5832 8016 7941 12192 Face 5833 7190 7554 12193 Face 5834 7554 7612 12193 Face 5835 7612 7244 12193 Face 5836 7244 7190 12193 Face 5837 6629 6863 12194 Face 5838 6863 6895 12194 Face 5839 6895 6640 12194 Face 5840 6640 6629 12194 Face 5841 6464 6492 12195 Face 5842 6492 6450 12195 Face 5843 6450 6398 12195 Face 5844 6398 6464 12195 Face 5845 6357 6474 12196 Face 5846 6474 6570 12196 Face 5847 6570 6457 12196 Face 5848 6457 6357 12196 Face 5849 6886 6856 12197 Face 5850 6856 6474 12197 Face 5851 6474 6533 12197 Face 5852 6533 6886 12197 Face 5853 6593 6877 12198 Face 5854 6877 6542 12198 Face 5855 6542 6228 12198 Face 5856 6228 6593 12198 Face 5857 6279 6200 12199 Face 5858 6200 5745 12199 Face 5859 5745 5763 12199 Face 5860 5763 6279 12199 Face 5861 6588 6172 12200 Face 5862 6172 6200 12200 Face 5863 6200 6618 12200 Face 5864 6618 6588 12200 Face 5865 6935 6781 12201 Face 5866 6781 6852 12201 Face 5867 6852 6995 12201 Face 5868 6995 6935 12201 Face 5869 6847 6852 12202 Face 5870 6852 6605 12202 Face 5871 6605 6588 12202 Face 5872 6588 6847 12202 Face 5873 6534 6577 12203 Face 5874 6577 6781 12203 Face 5875 6781 6748 12203 Face 5876 6748 6534 12203 Face 5877 5771 5756 12204 Face 5878 5756 6231 12204 Face 5879 6231 6309 12204 Face 5880 6309 5771 12204 Face 5881 6616 6231 12205 Face 5882 6231 6160 12205 Face 5883 6160 6534 12205 Face 5884 6534 6616 12205 Face 5885 6420 6373 12206 Face 5886 6373 5793 12206 Face 5887 5793 5812 12206 Face 5888 5812 6420 12206 Face 5889 6717 6279 12207 Face 5890 6279 6373 12207 Face 5891 6373 6789 12207 Face 5892 6789 6717 12207 Face 5893 7030 7006 12208 Face 5894 7006 7064 12208 Face 5895 7064 7085 12208 Face 5896 7085 7030 12208 Face 5897 6998 7064 12209 Face 5898 7064 6995 12209 Face 5899 6995 6928 12209 Face 5900 6928 6998 12209 Face 5901 6829 6935 12210 Face 5902 6935 7006 12210 Face 5903 7006 6915 12210 Face 5904 6915 6829 12210 Face 5905 5817 5807 12211 Face 5906 5807 6400 12211 Face 5907 6400 6438 12211 Face 5908 6438 5817 12211 Face 5909 6763 6400 12212 Face 5910 6400 6309 12212 Face 5911 6309 6708 12212 Face 5912 6708 6763 12212 Face 5913 6259 6385 12213 Face 5914 6385 5802 12213 Face 5915 5802 5760 12213 Face 5916 5760 6259 12213 Face 5917 6820 6420 12214 Face 5918 6420 6385 12214 Face 5919 6385 6795 12214 Face 5920 6795 6820 12214 Face 5921 6870 7021 12215 Face 5922 7021 7066 12215 Face 5923 7066 6901 12215 Face 5924 6901 6870 12215 Face 5925 6992 7066 12216 Face 5926 7066 7085 12216 Face 5927 7085 7018 12216 Face 5928 7018 6992 12216 Face 5929 6946 7030 12217 Face 5930 7030 7021 12217 Face 5931 7021 6937 12217 Face 5932 6937 6946 12217 Face 5933 5761 5805 12218 Face 5934 5805 6394 12218 Face 5935 6394 6272 12218 Face 5936 6272 5761 12218 Face 5937 6767 6394 12219 Face 5938 6394 6438 12219 Face 5939 6438 6801 12219 Face 5940 6801 6767 12219 Face 5941 6661 6259 12220 Face 5942 6259 6032 12220 Face 5943 6032 6298 12220 Face 5944 6298 6661 12220 Face 5945 6470 6548 12221 Face 5946 6548 6901 12221 Face 5947 6901 6826 12221 Face 5948 6826 6470 12221 Face 5949 6770 6870 12222 Face 5950 6870 6519 12222 Face 5951 6519 6429 12222 Face 5952 6429 6770 12222 Face 5953 6303 6043 12223 Face 5954 6043 6272 12223 Face 5955 6272 6646 12223 Face 5956 6646 6303 12223 Face 5957 6708 6616 12224 Face 5958 6616 6748 12224 Face 5959 6748 6829 12224 Face 5960 6829 6708 12224 Face 5961 6801 6763 12225 Face 5962 6763 6915 12225 Face 5963 6915 6946 12225 Face 5964 6946 6801 12225 Face 5965 6646 6767 12226 Face 5966 6767 6937 12226 Face 5967 6937 6770 12226 Face 5968 6770 6646 12226 Face 5969 6795 6661 12227 Face 5970 6661 6826 12227 Face 5971 6826 6992 12227 Face 5972 6992 6795 12227 Face 5973 6789 6820 12228 Face 5974 6820 7018 12228 Face 5975 7018 6998 12228 Face 5976 6998 6789 12228 Face 5977 6618 6717 12229 Face 5978 6717 6928 12229 Face 5979 6928 6847 12229 Face 5980 6847 6618 12229 Face 5981 6684 6568 12230 Face 5982 6568 6457 12230 Face 5983 6457 6610 12230 Face 5984 6610 6684 12230 Face 5985 6339 6357 12231 Face 5986 6357 6568 12231 Face 5987 6568 6547 12231 Face 5988 6547 6339 12231 Face 5989 5764 5768 12232 Face 5990 5768 6297 12232 Face 5991 6297 6286 12232 Face 5992 6286 5764 12232 Face 5993 6679 6297 12233 Face 5994 6297 6150 12233 Face 5995 6150 6508 12233 Face 5996 6508 6679 12233 Face 5997 6077 6150 12234 Face 5998 6150 5730 12234 Face 5999 5730 5705 12234 Face 6000 5705 6077 12234 Face 6001 5697 5719 12235 Face 6002 5719 6126 12235 Face 6003 6126 6051 12235 Face 6004 6051 5697 12235 Face 6005 6465 6126 12236 Face 6006 6126 6286 12236 Face 6007 6286 6669 12236 Face 6008 6669 6465 12236 Face 6009 5694 5696 12237 Face 6010 5696 6050 12237 Face 6011 6050 6046 12237 Face 6012 6046 5694 12237 Face 6013 6345 6050 12238 Face 6014 6050 6051 12238 Face 6015 6051 6347 12238 Face 6016 6347 6345 12238 Face 6017 6045 6018 12239 Face 6018 6018 5644 12239 Face 6019 5644 5693 12239 Face 6020 5693 6045 12239 Face 6021 6132 5999 12240 Face 6022 5999 5918 12240 Face 6023 5918 6082 12240 Face 6024 6082 6132 12240 Face 6025 5925 5918 12241 Face 6026 5918 5688 12241 Face 6027 5688 5656 12241 Face 6028 5656 5925 12241 Face 6029 5645 5685 12242 Face 6030 5685 5902 12242 Face 6031 5902 5892 12242 Face 6032 5892 5645 12242 Face 6033 6054 5902 12243 Face 6034 5902 5999 12243 Face 6035 5999 6115 12243 Face 6036 6115 6054 12243 Face 6037 6531 6574 12244 Face 6038 6574 6557 12244 Face 6039 6557 6532 12244 Face 6040 6532 6531 12244 Face 6041 6525 6557 12245 Face 6042 6557 6398 12245 Face 6043 6398 6329 12245 Face 6044 6329 6525 12245 Face 6045 6602 6464 12246 Face 6046 6464 6574 12246 Face 6047 6574 6665 12246 Face 6048 6665 6602 12246 Face 6049 6782 6811 12247 Face 6050 6811 6665 12247 Face 6051 6665 6628 12247 Face 6052 6628 6782 12247 Face 6053 6752 6751 12248 Face 6054 6751 6811 12248 Face 6055 6811 6824 12248 Face 6056 6824 6752 12248 Face 6057 6650 6684 12249 Face 6058 6684 6824 12249 Face 6059 6824 6793 12249 Face 6060 6793 6650 12249 Face 6061 6360 6077 12250 Face 6062 6077 6063 12250 Face 6063 6063 6339 12250 Face 6064 6339 6360 12250 Face 6065 6508 6360 12251 Face 6066 6360 6547 12251 Face 6067 6547 6650 12251 Face 6068 6650 6508 12251 Face 6069 6669 6679 12252 Face 6070 6679 6793 12252 Face 6071 6793 6782 12252 Face 6072 6782 6669 12252 Face 6073 6347 6465 12253 Face 6074 6465 6628 12253 Face 6075 6628 6531 12253 Face 6076 6531 6347 12253 Face 6077 6335 6345 12254 Face 6078 6345 6532 12254 Face 6079 6532 6527 12254 Face 6080 6527 6335 12254 Face 6081 5930 5974 12255 Face 6082 5974 5675 12255 Face 6083 5675 5657 12255 Face 6084 5657 5930 12255 Face 6085 6329 6045 12256 Face 6086 6045 5974 12256 Face 6087 5974 6237 12256 Face 6088 6237 6329 12256 Face 6089 6405 6490 12257 Face 6090 6490 6237 12257 Face 6091 6237 6161 12257 Face 6092 6161 6405 12257 Face 6093 6527 6525 12258 Face 6094 6525 6490 12258 Face 6095 6490 6522 12258 Face 6096 6522 6527 12258 Face 6097 6285 6322 12259 Face 6098 6322 6522 12259 Face 6099 6522 6458 12259 Face 6100 6458 6285 12259 Face 6101 6046 6335 12260 Face 6102 6335 6322 12260 Face 6103 6322 6041 12260 Face 6104 6041 6046 12260 Face 6105 5687 5691 12261 Face 6106 5691 6041 12261 Face 6107 6041 6026 12261 Face 6108 6026 5687 12261 Face 6109 5900 5913 12262 Face 6110 5913 5652 12262 Face 6111 5652 5650 12262 Face 6112 5650 5900 12262 Face 6113 6161 5930 12263 Face 6114 5930 5913 12263 Face 6115 5913 6130 12263 Face 6116 6130 6161 12263 Face 6117 6192 6301 12264 Face 6118 6301 6130 12264 Face 6119 6130 6089 12264 Face 6120 6089 6192 12264 Face 6121 6458 6405 12265 Face 6122 6405 6301 12265 Face 6123 6301 6332 12265 Face 6124 6332 6458 12265 Face 6125 6142 6199 12266 Face 6126 6199 6332 12266 Face 6127 6332 6217 12266 Face 6128 6217 6142 12266 Face 6129 6026 6285 12267 Face 6130 6285 6199 12267 Face 6131 6199 5992 12267 Face 6132 5992 6026 12267 Face 6133 5669 5677 12268 Face 6134 5677 5992 12268 Face 6135 5992 5960 12268 Face 6136 5960 5669 12268 Face 6137 6089 5900 12269 Face 6138 5900 5892 12269 Face 6139 5892 6054 12269 Face 6140 6054 6089 12269 Face 6141 6217 6192 12270 Face 6142 6192 6115 12270 Face 6143 6115 6132 12270 Face 6144 6132 6217 12270 Face 6145 5960 6142 12271 Face 6146 6142 6082 12271 Face 6147 6082 5925 12271 Face 6148 5925 5960 12271 Face 6149 4522 4424 12272 Face 6150 4424 4943 12272 Face 6151 4943 5013 12272 Face 6152 5013 4522 12272 Face 6153 3834 3492 12273 Face 6154 3492 3466 12273 Face 6155 3466 3815 12273 Face 6156 3815 3834 12273 Face 6157 4635 4154 12274 Face 6158 4154 4140 12274 Face 6159 4140 4548 12274 Face 6160 4548 4635 12274 Face 6161 3426 3758 12275 Face 6162 3758 3853 12275 Face 6163 3853 3489 12275 Face 6164 3489 3426 12275 Face 6165 4183 4131 12276 Face 6166 4131 4346 12276 Face 6167 4346 4409 12276 Face 6168 4409 4183 12276 Face 6169 3604 3256 12277 Face 6170 3256 3076 12277 Face 6171 3076 3471 12277 Face 6172 3471 3604 12277 Face 6173 4246 4018 12278 Face 6174 4018 3914 12278 Face 6175 3914 4170 12278 Face 6176 4170 4246 12278 Face 6177 3329 2862 12279 Face 6178 2862 2706 12279 Face 6179 2706 3174 12279 Face 6180 3174 3329 12279 Face 6181 3958 4160 12280 Face 6182 4160 4188 12280 Face 6183 4188 3673 12280 Face 6184 3673 3958 12280 Face 6185 3140 2823 12281 Face 6186 2823 2754 12281 Face 6187 2754 3084 12281 Face 6188 3084 3140 12281 Face 6189 2768 2741 12282 Face 6190 2741 3066 12282 Face 6191 3066 3094 12282 Face 6192 3094 2768 12282 Face 6193 2885 2639 12283 Face 6194 2639 2504 12283 Face 6195 2504 2734 12283 Face 6196 2734 2885 12283 Face 6197 2561 2246 12284 Face 6198 2246 2057 12284 Face 6199 2057 2358 12284 Face 6200 2358 2561 12284 Face 6201 3808 3557 12285 Face 6202 3557 3568 12285 Face 6203 3568 3885 12285 Face 6204 3885 3808 12285 Face 6205 3330 3162 12286 Face 6206 3162 3095 12286 Face 6207 3095 3322 12286 Face 6208 3322 3330 12286 Face 6209 2641 2691 12287 Face 6210 2691 2645 12287 Face 6211 2645 2565 12287 Face 6212 2565 2641 12287 Face 6213 2412 2342 12288 Face 6214 2342 2174 12288 Face 6215 2174 2224 12288 Face 6216 2224 2412 12288 Face 6217 2068 2072 12289 Face 6218 2072 2016 12289 Face 6219 2016 1953 12289 Face 6220 1953 2068 12289 Face 6221 1878 1957 12290 Face 6222 1957 1928 12290 Face 6223 1928 1829 12290 Face 6224 1829 1878 12290 Face 6225 1817 1923 12291 Face 6226 1923 1937 12291 Face 6227 1937 1818 12291 Face 6228 1818 1817 12291 Face 6229 1831 1973 12292 Face 6230 1973 2007 12292 Face 6231 2007 1859 12292 Face 6232 1859 1831 12292 Face 6233 1917 1897 12293 Face 6234 1897 2028 12293 Face 6235 2028 2050 12293 Face 6236 2050 1917 12293 Face 6237 1934 1930 12294 Face 6238 1930 2070 12294 Face 6239 2070 2089 12294 Face 6240 2089 1934 12294 Face 6241 1939 1935 12295 Face 6242 1935 2097 12295 Face 6243 2097 2100 12295 Face 6244 2100 1939 12295 Face 6245 1977 1952 12296 Face 6246 1952 2094 12296 Face 6247 2094 2092 12296 Face 6248 2092 1977 12296 Face 6249 2090 2005 12297 Face 6250 2005 1997 12297 Face 6251 1997 2088 12297 Face 6252 2088 2090 12297 Face 6253 2101 1991 12298 Face 6254 1991 2002 12298 Face 6255 2002 2099 12298 Face 6256 2099 2101 12298 Face 6257 1945 1981 12299 Face 6258 1981 2095 12299 Face 6259 2095 2080 12299 Face 6260 2080 1945 12299 Face 6261 1918 1895 12300 Face 6262 1895 1986 12300 Face 6263 1986 2018 12300 Face 6264 2018 1918 12300 Face 6265 1988 1949 12301 Face 6266 1949 2049 12301 Face 6267 2049 2071 12301 Face 6268 2071 1988 12301 Face 6269 1998 2021 12302 Face 6270 2021 2103 12302 Face 6271 2103 2085 12302 Face 6272 2085 1998 12302 Face 6273 1879 1920 12303 Face 6274 1920 2022 12303 Face 6275 2022 1933 12303 Face 6276 1933 1879 12303 Face 6277 1824 1843 12304 Face 6278 1843 1889 12304 Face 6279 1889 1874 12304 Face 6280 1874 1824 12304 Face 6281 1861 1841 12305 Face 6282 1841 1899 12305 Face 6283 1899 1929 12305 Face 6284 1929 1861 12305 Face 6285 1866 1888 12306 Face 6286 1888 1984 12306 Face 6287 1984 1948 12306 Face 6288 1948 1866 12306 Face 6289 1832 1784 12307 Face 6290 1784 1800 12307 Face 6291 1800 1864 12307 Face 6292 1864 1832 12307 Face 6293 1898 1811 12308 Face 6294 1811 1794 12308 Face 6295 1794 1870 12308 Face 6296 1870 1898 12308 Face 6297 2945 2541 12309 Face 6298 2541 2490 12309 Face 6299 2490 2877 12309 Face 6300 2877 2945 12309 Face 6301 3832 3538 12310 Face 6302 3538 3494 12310 Face 6303 3494 3841 12310 Face 6304 3841 3832 12310 Face 6305 5191 5168 12311 Face 6306 5168 5877 12311 Face 6307 5877 5854 12311 Face 6308 5854 5191 12311 Face 6309 4199 4182 12312 Face 6310 4182 4683 12312 Face 6311 4683 4703 12312 Face 6312 4703 4199 12312 Face 6313 3503 3837 12313 Face 6314 3837 3855 12313 Face 6315 3855 3534 12313 Face 6316 3534 3503 12313 Face 6317 3025 2912 12314 Face 6318 2912 3198 12314 Face 6319 3198 3260 12314 Face 6320 3260 3025 12314 Face 6321 2664 2608 12315 Face 6322 2608 2516 12315 Face 6323 2516 2589 12315 Face 6324 2589 2664 12315 Face 6325 3013 2699 12316 Face 6326 2699 2703 12316 Face 6327 2703 3019 12316 Face 6328 3019 3013 12316 Face 6329 3773 3429 12317 Face 6330 3429 3434 12317 Face 6331 3434 3800 12317 Face 6332 3800 3773 12317 Face 6333 4431 4136 12318 Face 6334 4136 4151 12318 Face 6335 4151 4400 12318 Face 6336 4400 4431 12318 Face 6337 5271 5285 12319 Face 6338 5285 5756 12319 Face 6339 5756 5771 12319 Face 6340 5771 5271 12319 Face 6341 5793 5253 12320 Face 6342 5253 5233 12320 Face 6343 5233 5812 12320 Face 6344 5812 5793 12320 Face 6345 5348 5292 12321 Face 6346 5292 5748 12321 Face 6347 5748 5689 12321 Face 6348 5689 5348 12321 Face 6349 5750 5291 12322 Face 6350 5291 5341 12322 Face 6351 5341 5692 12322 Face 6352 5692 5750 12322 Face 6353 4111 4260 12323 Face 6354 4260 4294 12323 Face 6355 4294 4216 12323 Face 6356 4216 4111 12323 Face 6357 4421 4812 12324 Face 6358 4812 4739 12324 Face 6359 4739 4335 12324 Face 6360 4335 4421 12324 Face 6361 4009 4034 12325 Face 6362 4034 4130 12325 Face 6363 4130 4099 12325 Face 6364 4099 4009 12325 Face 6365 4278 4647 12326 Face 6366 4647 4608 12326 Face 6367 4608 4242 12326 Face 6368 4242 4278 12326 Face 6369 4176 4017 12327 Face 6370 4017 4108 12327 Face 6371 4108 4270 12327 Face 6372 4270 4176 12327 Face 6373 4273 4653 12328 Face 6374 4653 4773 12328 Face 6375 4773 4393 12328 Face 6376 4393 4273 12328 Face 6377 4047 3973 12329 Face 6378 3973 4145 12329 Face 6379 4145 4219 12329 Face 6380 4219 4047 12329 Face 6381 4785 4661 12330 Face 6382 4661 4247 12330 Face 6383 4247 4380 12330 Face 6384 4380 4785 12330 Face 6385 4041 3975 12331 Face 6386 3975 3955 12331 Face 6387 3955 4020 12331 Face 6388 4020 4041 12331 Face 6389 4627 4674 12332 Face 6390 4674 4252 12332 Face 6391 4252 4225 12332 Face 6392 4225 4627 12332 Face 6393 4197 4192 12333 Face 6394 4192 4044 12333 Face 6395 4044 4118 12333 Face 6396 4118 4197 12333 Face 6397 4766 4842 12334 Face 6398 4842 4419 12334 Face 6399 4419 4327 12334 Face 6400 4327 4766 12334 Face 6401 4428 4348 12335 Face 6402 4348 4470 12335 Face 6403 4470 4589 12335 Face 6404 4589 4428 12335 Face 6405 4291 4293 12336 Face 6406 4293 4282 12336 Face 6407 4282 4290 12336 Face 6408 4290 4291 12336 Face 6409 4552 4427 12337 Face 6410 4427 4436 12337 Face 6411 4436 4581 12337 Face 6412 4581 4552 12337 Face 6413 4649 4719 12338 Face 6414 4719 4995 12338 Face 6415 4995 4596 12338 Face 6416 4596 4649 12338 Face 6417 5339 5336 12339 Face 6418 5336 5696 12339 Face 6419 5696 5694 12339 Face 6420 5694 5339 12339 Face 6421 5335 5316 12340 Face 6422 5316 5719 12340 Face 6423 5719 5697 12340 Face 6424 5697 5335 12340 Face 6425 4354 4472 12341 Face 6426 4472 4493 12341 Face 6427 4493 4389 12341 Face 6428 4389 4354 12341 Face 6429 4891 4535 12342 Face 6430 4535 4688 12342 Face 6431 4688 4961 12342 Face 6432 4961 4891 12342 Face 6433 4259 4232 12343 Face 6434 4232 4221 12343 Face 6435 4221 4249 12343 Face 6436 4249 4259 12343 Face 6437 4359 4749 12344 Face 6438 4749 4759 12344 Face 6439 4759 4369 12344 Face 6440 4369 4359 12344 Face 6441 4510 4466 12345 Face 6442 4466 4374 12345 Face 6443 4374 4410 12345 Face 6444 4410 4510 12345 Face 6445 4580 4916 12346 Face 6446 4916 4988 12346 Face 6447 4988 4702 12346 Face 6448 4702 4580 12346 Face 6449 4517 4483 12347 Face 6450 4483 4509 12347 Face 6451 4509 4515 12347 Face 6452 4515 4517 12347 Face 6453 4704 4989 12348 Face 6454 4989 4993 12348 Face 6455 4993 4714 12348 Face 6456 4714 4704 12348 Face 6457 5117 5073 12349 Face 6458 5073 4806 12349 Face 6459 4806 4880 12349 Face 6460 4880 5117 12349 Face 6461 4642 4554 12350 Face 6462 4554 4520 12350 Face 6463 4520 4588 12350 Face 6464 4588 4642 12350 Face 6465 4760 4725 12351 Face 6466 4725 4999 12351 Face 6467 4999 5015 12351 Face 6468 5015 4760 12351 Face 6469 5652 5399 12352 Face 6470 5399 5400 12352 Face 6471 5400 5650 12352 Face 6472 5650 5652 12352 Face 6473 5145 5131 12353 Face 6474 5131 4913 12353 Face 6475 4913 4949 12353 Face 6476 4949 5145 12353 Face 6477 4850 4745 12354 Face 6478 4745 4716 12354 Face 6479 4716 4827 12354 Face 6480 4827 4850 12354 Face 6481 4899 4843 12355 Face 6482 4843 5054 12355 Face 6483 5054 5088 12355 Face 6484 5088 4899 12355 Face 6485 4021 4040 12356 Face 6486 4040 4401 12356 Face 6487 4401 4385 12356 Face 6488 4385 4021 12356 Face 6489 5174 5178 12357 Face 6490 5178 5867 12357 Face 6491 5867 5871 12357 Face 6492 5871 5174 12357 Face 6493 3547 3570 12358 Face 6494 3570 3902 12358 Face 6495 3902 3883 12358 Face 6496 3883 3547 12358 Face 6497 2601 2638 12359 Face 6498 2638 3042 12359 Face 6499 3042 2992 12359 Face 6500 2992 2601 12359 Face 6501 2059 2161 12360 Face 6502 2161 2123 12360 Face 6503 2123 2030 12360 Face 6504 2030 2059 12360 Face 6505 2104 2237 12361 Face 6506 2237 2280 12361 Face 6507 2280 2141 12361 Face 6508 2141 2104 12361 Face 6509 2076 2190 12362 Face 6510 2190 2185 12362 Face 6511 2185 2069 12362 Face 6512 2069 2076 12362 Face 6513 2207 2327 12363 Face 6514 2327 2247 12363 Face 6515 2247 2130 12363 Face 6516 2130 2207 12363 Face 6517 2165 2294 12364 Face 6518 2294 2334 12364 Face 6519 2334 2205 12364 Face 6520 2205 2165 12364 Face 6521 2146 2170 12365 Face 6522 2170 2257 12365 Face 6523 2257 2261 12365 Face 6524 2261 2146 12365 Face 6525 7552 7208 12366 Face 6526 7208 7228 12366 Face 6527 7228 7577 12366 Face 6528 7577 7552 12366 Face 6529 6892 6412 12367 Face 6530 6412 6496 12367 Face 6531 6496 6905 12367 Face 6532 6905 6892 12367 Face 6533 7190 7286 12368 Face 6534 7286 7618 12368 Face 6535 7618 7554 12368 Face 6536 7554 7190 12368 Face 6537 6695 6914 12369 Face 6538 6914 6863 12369 Face 6539 6863 6629 12369 Face 6540 6629 6695 12369 Face 6541 7789 7438 12370 Face 6542 7438 7574 12370 Face 6543 7574 7963 12370 Face 6544 7963 7789 12370 Face 6545 7020 6796 12371 Face 6546 6796 6876 12371 Face 6547 6876 7128 12371 Face 6548 7128 7020 12371 Face 6549 8179 7715 12372 Face 6550 7715 7870 12372 Face 6551 7870 8343 12372 Face 6552 8343 8179 12372 Face 6553 6886 7082 12373 Face 6554 7082 7371 12373 Face 6555 7371 6856 12373 Face 6556 6856 6886 12373 Face 6557 8220 7901 12374 Face 6558 7901 7955 12374 Face 6559 7955 8290 12374 Face 6560 8290 8220 12374 Face 6561 7972 8302 12375 Face 6562 8302 8278 12375 Face 6563 8278 7941 12375 Face 6564 7941 7972 12375 Face 6565 8409 8157 12376 Face 6566 8157 8308 12376 Face 6567 8308 8541 12376 Face 6568 8541 8409 12376 Face 6569 8799 8486 12377 Face 6570 8486 8687 12377 Face 6571 8687 8988 12377 Face 6572 8988 8799 12377 Face 6573 5755 5286 12378 Face 6574 5286 5266 12378 Face 6575 5266 5776 12378 Face 6576 5776 5755 12378 Face 6577 7569 7326 12379 Face 6578 7326 7158 12379 Face 6579 7158 7471 12379 Face 6580 7471 7569 12379 Face 6581 7940 7945 12380 Face 6582 7945 7712 12380 Face 6583 7712 7719 12380 Face 6584 7719 7940 12380 Face 6585 8356 8407 12381 Face 6586 8407 8482 12381 Face 6587 8482 8403 12381 Face 6588 8403 8356 12381 Face 6589 8704 8634 12382 Face 6590 8634 8821 12382 Face 6591 8821 8870 12382 Face 6592 8870 8704 12382 Face 6593 8971 8977 12383 Face 6594 8977 9092 12383 Face 6595 9092 9029 12383 Face 6596 9029 8971 12383 Face 6597 9088 9167 12384 Face 6598 9167 9216 12384 Face 6599 9216 9117 12384 Face 6600 9117 9088 12384 Face 6601 9122 9228 12385 Face 6602 9228 9227 12385 Face 6603 9227 9108 12385 Face 6604 9108 9122 12385 Face 6605 9072 9214 12386 Face 6606 9214 9186 12386 Face 6607 9186 9038 12386 Face 6608 9038 9072 12386 Face 6609 9017 9148 12387 Face 6610 9148 9128 12387 Face 6611 9128 8995 12387 Face 6612 8995 9017 12387 Face 6613 8974 9115 12388 Face 6614 9115 9111 12388 Face 6615 9111 8956 12388 Face 6616 8956 8974 12388 Face 6617 8947 9110 12389 Face 6618 9110 9106 12389 Face 6619 9106 8944 12389 Face 6620 8944 8947 12389 Face 6621 8950 9093 12390 Face 6622 9093 9068 12390 Face 6623 9068 8953 12390 Face 6624 8953 8950 12390 Face 6625 9048 9040 12391 Face 6626 9040 8955 12391 Face 6627 8955 8957 12391 Face 6628 8957 9048 12391 Face 6629 9043 9054 12392 Face 6630 9054 8943 12392 Face 6631 8943 8945 12392 Face 6632 8945 9043 12392 Face 6633 9063 9099 12393 Face 6634 9099 8964 12393 Face 6635 8964 8949 12393 Face 6636 8949 9063 12393 Face 6637 9059 9150 12394 Face 6638 9150 9127 12394 Face 6639 9127 9027 12394 Face 6640 9027 9059 12394 Face 6641 9096 9057 12395 Face 6642 9057 8973 12395 Face 6643 8973 8996 12395 Face 6644 8996 9096 12395 Face 6645 9024 9047 12396 Face 6646 9047 8960 12396 Face 6647 8960 8941 12396 Face 6648 8941 9024 12396 Face 6649 9125 9166 12397 Face 6650 9166 9112 12397 Face 6651 9112 9023 12397 Face 6652 9023 9125 12397 Face 6653 9202 9221 12398 Face 6654 9221 9171 12398 Face 6655 9171 9156 12398 Face 6656 9156 9202 12398 Face 6657 9204 9184 12399 Face 6658 9184 9116 12399 Face 6659 9116 9146 12399 Face 6660 9146 9204 12399 Face 6661 9157 9179 12400 Face 6662 9179 9097 12400 Face 6663 9097 9061 12400 Face 6664 9061 9157 12400 Face 6665 9261 9213 12401 Face 6666 9213 9181 12401 Face 6667 9181 9245 12401 Face 6668 9245 9261 12401 Face 6669 9234 9147 12402 Face 6670 9147 9175 12402 Face 6671 9175 9251 12402 Face 6672 9251 9234 12402 Face 6673 8504 8090 12403 Face 6674 8090 8166 12403 Face 6675 8166 8556 12403 Face 6676 8556 8504 12403 Face 6677 7503 7211 12404 Face 6678 7211 7201 12404 Face 6679 7201 7551 12404 Face 6680 7551 7503 12404 Face 6681 5264 5256 12405 Face 6682 5256 5789 12405 Face 6683 5789 5778 12405 Face 6684 5778 5264 12405 Face 6685 6365 6865 12406 Face 6686 6865 6845 12406 Face 6687 6845 6346 12406 Face 6688 6346 6365 12406 Face 6689 7188 7205 12407 Face 6690 7205 7540 12407 Face 6691 7540 7510 12407 Face 6692 7510 7188 12407 Face 6693 7844 8129 12408 Face 6694 8129 8008 12408 Face 6695 8008 7786 12408 Face 6696 7786 7844 12408 Face 6697 8441 8388 12409 Face 6698 8388 8457 12409 Face 6699 8457 8529 12409 Face 6700 8529 8441 12409 Face 6701 8349 8022 12410 Face 6702 8022 8016 12410 Face 6703 8016 8346 12410 Face 6704 8346 8349 12410 Face 6705 7616 7273 12411 Face 6706 7273 7244 12411 Face 6707 7244 7612 12411 Face 6708 7612 7616 12411 Face 6709 6909 6607 12412 Face 6710 6607 6640 12412 Face 6711 6640 6895 12412 Face 6712 6895 6909 12412 Face 6713 5644 5408 12413 Face 6714 5408 5340 12413 Face 6715 5340 5693 12413 Face 6716 5693 5644 12413 Face 6717 5407 5643 12414 Face 6718 5643 5944 12414 Face 6719 5944 5104 12414 Face 6720 5104 5407 12414 Face 6721 5745 5295 12415 Face 6722 5295 5278 12415 Face 6723 5278 5763 12415 Face 6724 5763 5745 12415 Face 6725 5228 5238 12416 Face 6726 5238 5807 12416 Face 6727 5807 5817 12416 Face 6728 5817 5228 12416 Face 6729 5802 5244 12417 Face 6730 5244 5281 12417 Face 6731 5281 5760 12417 Face 6732 5760 5802 12417 Face 6733 5280 5240 12418 Face 6734 5240 5805 12418 Face 6735 5805 5761 12418 Face 6736 5761 5280 12418 Face 6737 6781 6935 12419 Face 6738 6935 6829 12419 Face 6739 6829 6748 12419 Face 6740 6748 6781 12419 Face 6741 6309 6231 12420 Face 6742 6231 6616 12420 Face 6743 6616 6708 12420 Face 6744 6708 6309 12420 Face 6745 7006 7030 12421 Face 6746 7030 6946 12421 Face 6747 6946 6915 12421 Face 6748 6915 7006 12421 Face 6749 6438 6400 12422 Face 6750 6400 6763 12422 Face 6751 6763 6801 12422 Face 6752 6801 6438 12422 Face 6753 7021 6870 12423 Face 6754 6870 6770 12423 Face 6755 6770 6937 12423 Face 6756 6937 7021 12423 Face 6757 6272 6394 12424 Face 6758 6394 6767 12424 Face 6759 6767 6646 12424 Face 6760 6646 6272 12424 Face 6761 6901 7066 12425 Face 6762 7066 6992 12425 Face 6763 6992 6826 12425 Face 6764 6826 6901 12425 Face 6765 6385 6259 12426 Face 6766 6259 6661 12426 Face 6767 6661 6795 12426 Face 6768 6795 6385 12426 Face 6769 7085 7064 12427 Face 6770 7064 6998 12427 Face 6771 6998 7018 12427 Face 6772 7018 7085 12427 Face 6773 6373 6420 12428 Face 6774 6420 6820 12428 Face 6775 6820 6789 12428 Face 6776 6789 6373 12428 Face 6777 6995 6852 12429 Face 6778 6852 6847 12429 Face 6779 6847 6928 12429 Face 6780 6928 6995 12429 Face 6781 6200 6279 12430 Face 6782 6279 6717 12430 Face 6783 6717 6618 12430 Face 6784 6618 6200 12430 Face 6785 6693 6610 12431 Face 6786 6610 6457 12431 Face 6787 6457 6570 12431 Face 6788 6570 6693 12431 Face 6789 6749 6751 12432 Face 6790 6751 6752 12432 Face 6791 6752 6759 12432 Face 6792 6759 6749 12432 Face 6793 6602 6611 12433 Face 6794 6611 6492 12433 Face 6795 6492 6464 12433 Face 6796 6464 6602 12433 Face 6797 6329 6398 12434 Face 6798 6398 6450 12434 Face 6799 6450 6045 12434 Face 6800 6045 6329 12434 Face 6801 5277 5274 12435 Face 6802 5274 5768 12435 Face 6803 5768 5764 12435 Face 6804 5764 5277 12435 Face 6805 6568 6684 12436 Face 6806 6684 6650 12436 Face 6807 6650 6547 12436 Face 6808 6547 6568 12436 Face 6809 6508 6150 12437 Face 6810 6150 6077 12437 Face 6811 6077 6360 12437 Face 6812 6360 6508 12437 Face 6813 6811 6782 12438 Face 6814 6782 6793 12438 Face 6815 6793 6824 12438 Face 6816 6824 6811 12438 Face 6817 6286 6297 12439 Face 6818 6297 6679 12439 Face 6819 6679 6669 12439 Face 6820 6669 6286 12439 Face 6821 6574 6531 12440 Face 6822 6531 6628 12440 Face 6823 6628 6665 12440 Face 6824 6665 6574 12440 Face 6825 6051 6126 12441 Face 6826 6126 6465 12441 Face 6827 6465 6347 12441 Face 6828 6347 6051 12441 Face 6829 6532 6557 12442 Face 6830 6557 6525 12442 Face 6831 6525 6527 12442 Face 6832 6527 6532 12442 Face 6833 6046 6050 12443 Face 6834 6050 6345 12443 Face 6835 6345 6335 12443 Face 6836 6335 6046 12443 Face 6837 5352 5342 12444 Face 6838 5342 5691 12444 Face 6839 5691 5687 12444 Face 6840 5687 5352 12444 Face 6841 5675 5371 12445 Face 6842 5371 5395 12445 Face 6843 5395 5657 12445 Face 6844 5657 5675 12445 Face 6845 5974 5930 12446 Face 6846 5930 6161 12446 Face 6847 6161 6237 12446 Face 6848 6237 5974 12446 Face 6849 6490 6405 12447 Face 6850 6405 6458 12447 Face 6851 6458 6522 12447 Face 6852 6522 6490 12447 Face 6853 6322 6285 12448 Face 6854 6285 6026 12448 Face 6855 6026 6041 12448 Face 6856 6041 6322 12448 Face 6857 5380 5369 12449 Face 6858 5369 5677 12449 Face 6859 5677 5669 12449 Face 6860 5669 5380 12449 Face 6861 5913 5900 12450 Face 6862 5900 6089 12450 Face 6863 6089 6130 12450 Face 6864 6130 5913 12450 Face 6865 6301 6192 12451 Face 6866 6192 6217 12451 Face 6867 6217 6332 12451 Face 6868 6332 6301 12451 Face 6869 6199 6142 12452 Face 6870 6142 5960 12452 Face 6871 5960 5992 12452 Face 6872 5992 6199 12452 Face 6873 5688 5351 12453 Face 6874 5351 5396 12453 Face 6875 5396 5656 12453 Face 6876 5656 5688 12453 Face 6877 5406 5356 12454 Face 6878 5356 5685 12454 Face 6879 5685 5645 12454 Face 6880 5645 5406 12454 Face 6881 6999 7017 12455 Face 6882 7017 6654 12455 Face 6883 6654 6638 12455 Face 6884 6638 6999 12455 Face 6885 7470 7494 12456 Face 6886 7494 7160 12456 Face 6887 7160 7141 12456 Face 6888 7141 7470 12456 Face 6889 8410 8446 12457 Face 6890 8446 8045 12457 Face 6891 8045 7992 12457 Face 6892 7992 8410 12457 Face 6893 8884 8986 12458 Face 6894 8986 9015 12458 Face 6895 9015 8922 12458 Face 6896 8922 8884 12458 Face 6897 8808 8940 12459 Face 6898 8940 8904 12459 Face 6899 8904 8765 12459 Face 6900 8765 8808 12459 Face 6901 8853 8967 12460 Face 6902 8967 8976 12460 Face 6903 8976 8858 12460 Face 6904 8858 8853 12460 Face 6905 8720 8836 12461 Face 6906 8836 8915 12461 Face 6907 8915 8798 12461 Face 6908 8798 8720 12461 Face 6909 8750 8880 12462 Face 6910 8880 8837 12462 Face 6911 8837 8713 12462 Face 6912 8713 8750 12462 Face 6913 8874 8898 12463 Face 6914 8898 8780 12463 Face 6915 8780 8786 12463 Face 6916 8786 8874 12463 Face 6917 5656 5669 12464 Face 6918 5669 5960 12464 Face 6919 5960 5925 12464 Face 6920 5925 5656 12464 Face 6921 6082 6142 12465 Face 6922 6142 6217 12465 Face 6923 6217 6132 12465 Face 6924 6132 6082 12465 Face 6925 6115 6192 12466 Face 6926 6192 6089 12466 Face 6927 6089 6054 12466 Face 6928 6054 6115 12466 Face 6929 5892 5900 12467 Face 6930 5900 5650 12467 Face 6931 5650 5645 12467 Face 6932 5645 5892 12467 Face 6933 5677 5687 12468 Face 6934 5687 6026 12468 Face 6935 6026 5992 12468 Face 6936 5992 5677 12468 Face 6937 6199 6285 12469 Face 6938 6285 6458 12469 Face 6939 6458 6332 12469 Face 6940 6332 6199 12469 Face 6941 6301 6405 12470 Face 6942 6405 6161 12470 Face 6943 6161 6130 12470 Face 6944 6130 6301 12470 Face 6945 5913 5930 12471 Face 6946 5930 5657 12471 Face 6947 5657 5652 12471 Face 6948 5652 5913 12471 Face 6949 5691 5694 12472 Face 6950 5694 6046 12472 Face 6951 6046 6041 12472 Face 6952 6041 5691 12472 Face 6953 6322 6335 12473 Face 6954 6335 6527 12473 Face 6955 6527 6522 12473 Face 6956 6522 6322 12473 Face 6957 6490 6525 12474 Face 6958 6525 6329 12474 Face 6959 6329 6237 12474 Face 6960 6237 6490 12474 Face 6961 5974 6045 12475 Face 6962 6045 5693 12475 Face 6963 5693 5675 12475 Face 6964 5675 5974 12475 Face 6965 6347 6531 12476 Face 6966 6531 6532 12476 Face 6967 6532 6345 12476 Face 6968 6345 6347 12476 Face 6969 6669 6782 12477 Face 6970 6782 6628 12477 Face 6971 6628 6465 12477 Face 6972 6465 6669 12477 Face 6973 6508 6650 12478 Face 6974 6650 6793 12478 Face 6975 6793 6679 12478 Face 6976 6679 6508 12478 Face 6977 5700 6063 12479 Face 6978 6063 6077 12479 Face 6979 6077 5705 12479 Face 6980 5705 5700 12479 Face 6981 6684 6610 12480 Face 6982 6610 6752 12480 Face 6983 6752 6824 12480 Face 6984 6824 6684 12480 Face 6985 6811 6751 12481 Face 6986 6751 6602 12481 Face 6987 6602 6665 12481 Face 6988 6665 6811 12481 Face 6989 6574 6464 12482 Face 6990 6464 6398 12482 Face 6991 6398 6557 12482 Face 6992 6557 6574 12482 Face 6993 5697 6051 12483 Face 6994 6051 6050 12483 Face 6995 6050 5696 12483 Face 6996 5696 5697 12483 Face 6997 5764 6286 12484 Face 6998 6286 6126 12484 Face 6999 6126 5719 12484 Face 7000 5719 5764 12484 Face 7001 5730 6150 12485 Face 7002 6150 6297 12485 Face 7003 6297 5768 12485 Face 7004 5768 5730 12485 Face 7005 6928 6717 12486 Face 7006 6717 6789 12486 Face 7007 6789 6998 12486 Face 7008 6998 6928 12486 Face 7009 7018 6820 12487 Face 7010 6820 6795 12487 Face 7011 6795 6992 12487 Face 7012 6992 7018 12487 Face 7013 6826 6661 12488 Face 7014 6661 6298 12488 Face 7015 6298 6470 12488 Face 7016 6470 6826 12488 Face 7017 6646 6770 12489 Face 7018 6770 6429 12489 Face 7019 6429 6303 12489 Face 7020 6303 6646 12489 Face 7021 6801 6946 12490 Face 7022 6946 6937 12490 Face 7023 6937 6767 12490 Face 7024 6767 6801 12490 Face 7025 6708 6829 12491 Face 7026 6829 6915 12491 Face 7027 6915 6763 12491 Face 7028 6763 6708 12491 Face 7029 5692 5761 12492 Face 7030 5761 6272 12492 Face 7031 6272 6043 12492 Face 7032 6043 5692 12492 Face 7033 6519 6870 12493 Face 7034 6870 6901 12493 Face 7035 6901 6548 12493 Face 7036 6548 6519 12493 Face 7037 6032 6259 12494 Face 7038 6259 5760 12494 Face 7039 5760 5689 12494 Face 7040 5689 6032 12494 Face 7041 5805 5817 12495 Face 7042 5817 6438 12495 Face 7043 6438 6394 12495 Face 7044 6394 5805 12495 Face 7045 7021 7030 12496 Face 7046 7030 7085 12496 Face 7047 7085 7066 12496 Face 7048 7066 7021 12496 Face 7049 6385 6420 12497 Face 7050 6420 5812 12497 Face 7051 5812 5802 12497 Face 7052 5802 6385 12497 Face 7053 5807 5771 12498 Face 7054 5771 6309 12498 Face 7055 6309 6400 12498 Face 7056 6400 5807 12498 Face 7057 7006 6935 12499 Face 7058 6935 6995 12499 Face 7059 6995 7064 12499 Face 7060 7064 7006 12499 Face 7061 6373 6279 12500 Face 7062 6279 5763 12500 Face 7063 5763 5793 12500 Face 7064 5793 6373 12500 Face 7065 5756 5736 12501 Face 7066 5736 6160 12501 Face 7067 6160 6231 12501 Face 7068 6231 5756 12501 Face 7069 6781 6577 12502 Face 7070 6577 6605 12502 Face 7071 6605 6852 12502 Face 7072 6852 6781 12502 Face 7073 6200 6172 12503 Face 7074 6172 5739 12503 Face 7075 5739 5745 12503 Face 7076 5745 6200 12503 Face 7077 5751 5854 12504 Face 7078 5854 6593 12504 Face 7079 6593 6228 12504 Face 7080 6228 5751 12504 Face 7081 6542 6877 12505 Face 7082 6877 6886 12505 Face 7083 6886 6533 12505 Face 7084 6533 6542 12505 Face 7085 6450 6492 12506 Face 7086 6492 6629 12506 Face 7087 6629 6640 12506 Face 7088 6640 6450 12506 Face 7089 6895 6863 12507 Face 7090 6863 7190 12507 Face 7091 7190 7244 12507 Face 7092 7244 6895 12507 Face 7093 7612 7554 12508 Face 7094 7554 7941 12508 Face 7095 7941 8016 12508 Face 7096 8016 7612 12508 Face 7097 8346 8278 12509 Face 7098 8278 8459 12509 Face 7099 8459 8522 12509 Face 7100 8522 8346 12509 Face 7101 8602 8536 12510 Face 7102 8536 8482 12510 Face 7103 8482 8529 12510 Face 7104 8529 8602 12510 Face 7105 8441 8407 12511 Face 7106 8407 8352 12511 Face 7107 8352 8339 12511 Face 7108 8339 8441 12511 Face 7109 8211 8246 12512 Face 7110 8246 7940 12512 Face 7111 7940 8008 12512 Face 7112 8008 8211 12512 Face 7113 7786 7719 12513 Face 7114 7719 7471 12513 Face 7115 7471 7510 12513 Face 7116 7510 7786 12513 Face 7117 7188 7158 12514 Face 7118 7158 6809 12514 Face 7119 6809 6845 12514 Face 7120 6845 7188 12514 Face 7121 6346 6317 12515 Face 7122 6317 5776 12515 Face 7123 5776 5778 12515 Face 7124 5778 6346 12515 Face 7125 5877 5871 12516 Face 7126 5871 6654 12516 Face 7127 6654 6702 12516 Face 7128 6702 5877 12516 Face 7129 7063 7017 12517 Face 7130 7017 7160 12517 Face 7131 7160 7201 12517 Face 7132 7201 7063 12517 Face 7133 7551 7494 12518 Face 7134 7494 8045 12518 Face 7135 8045 8166 12518 Face 7136 8166 7551 12518 Face 7137 8556 8446 12519 Face 7138 8446 8757 12519 Face 7139 8757 8933 12519 Face 7140 8933 8556 12519 Face 7141 9126 8948 12520 Face 7142 8948 8969 12520 Face 7143 8969 9147 12520 Face 7144 9147 9126 12520 Face 7145 9175 8992 12521 Face 7146 8992 9015 12521 Face 7147 9015 9213 12521 Face 7148 9213 9175 12521 Face 7149 9181 8986 12522 Face 7150 8986 8893 12522 Face 7151 8893 9097 12522 Face 7152 9097 9181 12522 Face 7153 9061 8861 12523 Face 7154 8861 8904 12523 Face 7155 8904 9116 12523 Face 7156 9116 9061 12523 Face 7157 9146 8940 12524 Face 7158 8940 8976 12524 Face 7159 8976 9171 12524 Face 7160 9171 9146 12524 Face 7161 9156 8967 12525 Face 7162 8967 8915 12525 Face 7163 8915 9112 12525 Face 7164 9112 9156 12525 Face 7165 9023 8836 12526 Face 7166 8836 8751 12526 Face 7167 8751 8960 12526 Face 7168 8960 9023 12526 Face 7169 8941 8725 12527 Face 7170 8725 8768 12527 Face 7171 8768 8973 12527 Face 7172 8973 8941 12527 Face 7173 8996 8807 12528 Face 7174 8807 8837 12528 Face 7175 8837 9027 12528 Face 7176 9027 8996 12528 Face 7177 9059 8880 12529 Face 7178 8880 8898 12529 Face 7179 8898 9073 12529 Face 7180 9073 9059 12529 Face 7181 8949 8711 12530 Face 7182 8711 8699 12530 Face 7183 8699 8943 12530 Face 7184 8943 8949 12530 Face 7185 8945 8702 12531 Face 7186 8702 8719 12531 Face 7187 8719 8955 12531 Face 7188 8955 8945 12531 Face 7189 8957 8726 12532 Face 7190 8726 8722 12532 Face 7191 8722 8953 12532 Face 7192 8953 8957 12532 Face 7193 8950 8716 12533 Face 7194 8716 8712 12533 Face 7195 8712 8944 12533 Face 7196 8944 8950 12533 Face 7197 8947 8717 12534 Face 7198 8717 8733 12534 Face 7199 8733 8956 12534 Face 7200 8956 8947 12534 Face 7201 8974 8754 12535 Face 7202 8754 8793 12535 Face 7203 8793 8995 12535 Face 7204 8995 8974 12535 Face 7205 9017 8822 12536 Face 7206 8822 8852 12536 Face 7207 8852 9038 12536 Face 7208 9038 9017 12536 Face 7209 9072 8883 12537 Face 7210 8883 8909 12537 Face 7211 8909 9108 12537 Face 7212 9108 9072 12537 Face 7213 9122 8919 12538 Face 7214 8919 8917 12538 Face 7215 8917 9117 12538 Face 7216 9117 9122 12538 Face 7217 9088 8902 12539 Face 7218 8902 8857 12539 Face 7219 8857 9029 12539 Face 7220 9029 9088 12539 Face 7221 8971 8778 12540 Face 7222 8778 8659 12540 Face 7223 8659 8870 12540 Face 7224 8870 8971 12540 Face 7225 8704 8537 12541 Face 7226 8537 8419 12541 Face 7227 8419 8539 12541 Face 7228 8539 8704 12541 Face 7229 8443 8338 12542 Face 7230 8338 8282 12542 Face 7231 8282 8403 12542 Face 7232 8403 8443 12542 Face 7233 9125 9047 12543 Face 7234 9047 9048 12543 Face 7235 9048 9068 12543 Face 7236 9068 9125 12543 Face 7237 9202 9166 12544 Face 7238 9166 9093 12544 Face 7239 9093 9106 12544 Face 7240 9106 9202 12544 Face 7241 9024 9057 12545 Face 7242 9057 9043 12545 Face 7243 9043 9040 12545 Face 7244 9040 9024 12545 Face 7245 9096 9127 12546 Face 7246 9127 9063 12546 Face 7247 9063 9054 12546 Face 7248 9054 9096 12546 Face 7249 9204 9221 12547 Face 7250 9221 9110 12547 Face 7251 9110 9111 12547 Face 7252 9111 9204 12547 Face 7253 9157 9184 12548 Face 7254 9184 9115 12548 Face 7255 9115 9128 12548 Face 7256 9128 9157 12548 Face 7257 9245 9179 12549 Face 7258 9179 9148 12549 Face 7259 9148 9186 12549 Face 7260 9186 9245 12549 Face 7261 8343 8504 12550 Face 7262 8504 8914 12550 Face 7263 8914 8687 12550 Face 7264 8687 8343 12550 Face 7265 8179 8486 12551 Face 7266 8486 8308 12551 Face 7267 8308 7963 12551 Face 7268 7963 8179 12551 Face 7269 7789 8157 12552 Face 7270 8157 7972 12552 Face 7271 7972 7618 12552 Face 7272 7618 7789 12552 Face 7273 7616 8022 12553 Face 7274 8022 7955 12553 Face 7275 7955 7577 12553 Face 7276 7577 7616 12553 Face 7277 7552 7901 12554 Face 7278 7901 7844 12554 Face 7279 7844 7540 12554 Face 7280 7540 7552 12554 Face 7281 7569 7712 12555 Face 7282 7712 7848 12555 Face 7283 7848 7702 12555 Face 7284 7702 7569 12555 Face 7285 9261 9214 12556 Face 7286 9214 9227 12556 Face 7287 9227 9251 12556 Face 7288 9251 9261 12556 Face 7289 9234 9228 12557 Face 7290 9228 9216 12557 Face 7291 9216 9211 12557 Face 7292 9211 9234 12557 Face 7293 9134 9167 12558 Face 7294 9167 9092 12558 Face 7295 9092 8988 12558 Face 7296 8988 9134 12558 Face 7297 8799 8977 12559 Face 7298 8977 8821 12559 Face 7299 8821 8541 12559 Face 7300 8541 8799 12559 Face 7301 8409 8634 12560 Face 7302 8634 8495 12560 Face 7303 8495 8302 12560 Face 7304 8302 8409 12560 Face 7305 8349 8520 12561 Face 7306 8520 8457 12561 Face 7307 8457 8290 12561 Face 7308 8290 8349 12561 Face 7309 8220 8388 12562 Face 7310 8388 8281 12562 Face 7311 8281 8129 12562 Face 7312 8129 8220 12562 Face 7313 5979 5748 12563 Face 7314 5748 5750 12563 Face 7315 5750 6114 12563 Face 7316 6114 5979 12563 Face 7317 7503 8090 12564 Face 7318 8090 7870 12564 Face 7319 7870 7371 12564 Face 7320 7371 7503 12564 Face 7321 6693 6908 12565 Face 7322 6908 6876 12565 Face 7323 6876 6759 12565 Face 7324 6759 6693 12565 Face 7325 7239 7715 12566 Face 7326 7715 7574 12566 Face 7327 7574 7128 12566 Face 7328 7128 7239 12566 Face 7329 6749 6796 12567 Face 7330 6796 6695 12567 Face 7331 6695 6611 12567 Face 7332 6611 6749 12567 Face 7333 7020 7438 12568 Face 7334 7438 7286 12568 Face 7335 7286 6914 12568 Face 7336 6914 7020 12568 Face 7337 6245 6607 12569 Face 7338 6607 6496 12569 Face 7339 6496 5944 12569 Face 7340 5944 6245 12569 Face 7341 6909 7273 12570 Face 7342 7273 7228 12570 Face 7343 7228 6905 12570 Face 7344 6905 6909 12570 Face 7345 5809 6412 12571 Face 7346 6412 6365 12571 Face 7347 6365 5789 12571 Face 7348 5789 5809 12571 Face 7349 6892 7208 12572 Face 7350 7208 7205 12572 Face 7351 7205 6865 12572 Face 7352 6865 6892 12572 Face 7353 6119 5713 12573 Face 7354 5713 5755 12573 Face 7355 5755 6260 12573 Face 7356 6260 6119 12573 Face 7357 5380 5396 12574 Face 7358 5396 5121 12574 Face 7359 5121 5088 12574 Face 7360 5088 5380 12574 Face 7361 4899 4956 12575 Face 7362 4956 4911 12575 Face 7363 4911 4827 12575 Face 7364 4827 4899 12575 Face 7365 4850 4926 12576 Face 7366 4926 4985 12576 Face 7367 4985 4949 12576 Face 7368 4949 4850 12576 Face 7369 5145 5154 12577 Face 7370 5154 5406 12577 Face 7371 5406 5400 12577 Face 7372 5400 5145 12577 Face 7373 5352 5369 12578 Face 7374 5369 5054 12578 Face 7375 5054 5015 12578 Face 7376 5015 5352 12578 Face 7377 4760 4843 12579 Face 7378 4843 4716 12579 Face 7379 4716 4588 12579 Face 7380 4588 4760 12579 Face 7381 4642 4745 12580 Face 7382 4745 4913 12580 Face 7383 4913 4880 12580 Face 7384 4880 4642 12580 Face 7385 5117 5131 12581 Face 7386 5131 5399 12581 Face 7387 5399 5395 12581 Face 7388 5395 5117 12581 Face 7389 5339 5342 12582 Face 7390 5342 4999 12582 Face 7391 4999 4993 12582 Face 7392 4993 5339 12582 Face 7393 4714 4725 12583 Face 7394 4725 4520 12583 Face 7395 4520 4515 12583 Face 7396 4515 4714 12583 Face 7397 4517 4554 12584 Face 7398 4554 4806 12584 Face 7399 4806 4719 12584 Face 7400 4719 4517 12584 Face 7401 4995 5073 12585 Face 7402 5073 5371 12585 Face 7403 5371 5340 12585 Face 7404 5340 4995 12585 Face 7405 4510 4702 12586 Face 7406 4702 4704 12586 Face 7407 4704 4509 12586 Face 7408 4509 4510 12586 Face 7409 4259 4369 12587 Face 7410 4369 4580 12587 Face 7411 4580 4410 12587 Face 7412 4410 4259 12587 Face 7413 4389 4535 12588 Face 7414 4535 4359 12588 Face 7415 4359 4249 12588 Face 7416 4249 4389 12588 Face 7417 4977 5333 12589 Face 7418 5333 5329 12589 Face 7419 5329 4961 12589 Face 7420 4961 4977 12589 Face 7421 4428 4354 12590 Face 7422 4354 4221 12590 Face 7423 4221 4290 12590 Face 7424 4290 4428 12590 Face 7425 4291 4232 12591 Face 7426 4232 4374 12591 Face 7427 4374 4436 12591 Face 7428 4436 4291 12591 Face 7429 4581 4466 12592 Face 7430 4466 4483 12592 Face 7431 4483 4649 12592 Face 7432 4649 4581 12592 Face 7433 4988 5335 12593 Face 7434 5335 5336 12593 Face 7435 5336 4989 12593 Face 7436 4989 4988 12593 Face 7437 4759 5277 12594 Face 7438 5277 5316 12594 Face 7439 5316 4916 12594 Face 7440 4916 4759 12594 Face 7441 4891 5307 12595 Face 7442 5307 5274 12595 Face 7443 5274 4749 12595 Face 7444 4749 4891 12595 Face 7445 4327 4118 12596 Face 7446 4118 4041 12596 Face 7447 4041 4252 12596 Face 7448 4252 4327 12596 Face 7449 4225 4020 12597 Face 7450 4020 4047 12597 Face 7451 4047 4247 12597 Face 7452 4247 4225 12597 Face 7453 4380 4219 12598 Face 7454 4219 4575 12598 Face 7455 4575 4748 12598 Face 7456 4748 4380 12598 Face 7457 4270 4393 12599 Face 7458 4393 4744 12599 Face 7459 4744 4617 12599 Face 7460 4617 4270 12599 Face 7461 4099 4242 12600 Face 7462 4242 4273 12600 Face 7463 4273 4108 12600 Face 7464 4108 4099 12600 Face 7465 4216 4335 12601 Face 7466 4335 4278 12601 Face 7467 4278 4130 12601 Face 7468 4130 4216 12601 Face 7469 5280 5341 12602 Face 7470 5341 4997 12602 Face 7471 4997 4773 12602 Face 7472 4773 5280 12602 Face 7473 4176 4524 12603 Face 7474 4524 4492 12603 Face 7475 4492 4145 12603 Face 7476 4145 4176 12603 Face 7477 4785 5008 12604 Face 7478 5008 5348 12604 Face 7479 5348 5281 12604 Face 7480 5281 4785 12604 Face 7481 5228 5240 12605 Face 7482 5240 4653 12605 Face 7483 4653 4608 12605 Face 7484 4608 5228 12605 Face 7485 4009 4017 12606 Face 7486 4017 3973 12606 Face 7487 3973 3955 12606 Face 7488 3955 4009 12606 Face 7489 4627 4661 12607 Face 7490 4661 5244 12607 Face 7491 5244 5233 12607 Face 7492 5233 4627 12607 Face 7493 5271 5238 12608 Face 7494 5238 4647 12608 Face 7495 4647 4739 12608 Face 7496 4739 5271 12608 Face 7497 4111 4034 12609 Face 7498 4034 3975 12609 Face 7499 3975 4044 12609 Face 7500 4044 4111 12609 Face 7501 4766 4674 12610 Face 7502 4674 5253 12610 Face 7503 5253 5278 12610 Face 7504 5278 4766 12610 Face 7505 5303 5285 12611 Face 7506 5285 4812 12611 Face 7507 4812 4881 12611 Face 7508 4881 5303 12611 Face 7509 4464 4260 12612 Face 7510 4260 4192 12612 Face 7511 4192 4433 12612 Face 7512 4433 4464 12612 Face 7513 4870 4842 12613 Face 7514 4842 5295 12613 Face 7515 5295 5301 12613 Face 7516 5301 4870 12613 Face 7517 5191 5290 12614 Face 7518 5290 4816 12614 Face 7519 4816 4447 12614 Face 7520 4447 5191 12614 Face 7521 4169 4498 12615 Face 7522 4498 4507 12615 Face 7523 4507 4160 12615 Face 7524 4160 4169 12615 Face 7525 4552 4596 12616 Face 7526 4596 4400 12616 Face 7527 4400 4409 12616 Face 7528 4409 4552 12616 Face 7529 4183 4151 12617 Face 7530 4151 3800 12617 Face 7531 3800 3853 12617 Face 7532 3853 4183 12617 Face 7533 3489 3434 12618 Face 7534 3434 3019 12618 Face 7535 3019 3094 12618 Face 7536 3094 3489 12618 Face 7537 2768 2703 12619 Face 7538 2703 2523 12619 Face 7539 2523 2588 12619 Face 7540 2588 2768 12619 Face 7541 2508 2442 12620 Face 7542 2442 2516 12620 Face 7543 2516 2565 12620 Face 7544 2565 2508 12620 Face 7545 2641 2608 12621 Face 7546 2608 2711 12621 Face 7547 2711 2750 12621 Face 7548 2750 2641 12621 Face 7549 2874 2834 12622 Face 7550 2834 3025 12622 Face 7551 3025 3095 12622 Face 7552 3095 2874 12622 Face 7553 3322 3260 12623 Face 7554 3260 3534 12623 Face 7555 3534 3568 12623 Face 7556 3568 3322 12623 Face 7557 3885 3855 12624 Face 7558 3855 4199 12624 Face 7559 4199 4234 12624 Face 7560 4234 3885 12624 Face 7561 4731 4703 12625 Face 7562 4703 5264 12625 Face 7563 5264 5266 12625 Face 7564 5266 4731 12625 Face 7565 5174 5168 12626 Face 7566 5168 4339 12626 Face 7567 4339 4385 12626 Face 7568 4385 5174 12626 Face 7569 4021 3977 12627 Face 7570 3977 3841 12627 Face 7571 3841 3883 12627 Face 7572 3883 4021 12627 Face 7573 3547 3494 12628 Face 7574 3494 2877 12628 Face 7575 2877 2992 12628 Face 7576 2992 3547 12628 Face 7577 2601 2490 12629 Face 7578 2490 2112 12629 Face 7579 2112 2287 12629 Face 7580 2287 2601 12629 Face 7581 2096 1919 12630 Face 7582 1919 1898 12630 Face 7583 1898 2074 12630 Face 7584 2074 2096 12630 Face 7585 2053 1870 12631 Face 7586 1870 1832 12631 Face 7587 1832 2030 12631 Face 7588 2030 2053 12631 Face 7589 2059 1864 12632 Face 7590 1864 1948 12632 Face 7591 1948 2151 12632 Face 7592 2151 2059 12632 Face 7593 2183 1984 12633 Face 7594 1984 1929 12633 Face 7595 1929 2141 12633 Face 7596 2141 2183 12633 Face 7597 2104 1899 12634 Face 7598 1899 1874 12634 Face 7599 1874 2069 12634 Face 7600 2069 2104 12634 Face 7601 2076 1889 12635 Face 7602 1889 1933 12635 Face 7603 1933 2130 12635 Face 7604 2130 2076 12635 Face 7605 2207 2022 12636 Face 7606 2022 2085 12636 Face 7607 2085 2295 12636 Face 7608 2295 2207 12636 Face 7609 2322 2103 12637 Face 7610 2103 2071 12637 Face 7611 2071 2278 12637 Face 7612 2278 2322 12637 Face 7613 2238 2049 12638 Face 7614 2049 2018 12638 Face 7615 2018 2205 12638 Face 7616 2205 2238 12638 Face 7617 2165 1986 12639 Face 7618 1986 1972 12639 Face 7619 1972 2146 12639 Face 7620 2146 2165 12639 Face 7621 2336 2095 12640 Face 7622 2095 2101 12640 Face 7623 2101 2347 12640 Face 7624 2347 2336 12640 Face 7625 2344 2099 12641 Face 7626 2099 2090 12641 Face 7627 2090 2329 12641 Face 7628 2329 2344 12641 Face 7629 2321 2088 12642 Face 7630 2088 2092 12642 Face 7631 2092 2325 12642 Face 7632 2325 2321 12642 Face 7633 2290 2070 12643 Face 7634 2070 2050 12643 Face 7635 2050 2252 12643 Face 7636 2252 2290 12643 Face 7637 2222 2028 12644 Face 7638 2028 2007 12644 Face 7639 2007 2191 12644 Face 7640 2191 2222 12644 Face 7641 2162 1973 12645 Face 7642 1973 1937 12645 Face 7643 1937 2136 12645 Face 7644 2136 2162 12645 Face 7645 2125 1923 12646 Face 7646 1923 1928 12646 Face 7647 1928 2128 12646 Face 7648 2128 2125 12646 Face 7649 2143 1957 12647 Face 7650 1957 2016 12647 Face 7651 2016 2186 12647 Face 7652 2186 2143 12647 Face 7653 2265 2072 12648 Face 7654 2072 2174 12648 Face 7655 2174 2386 12648 Face 7656 2386 2265 12648 Face 7657 2507 2342 12649 Face 7658 2342 2505 12649 Face 7659 2505 2627 12649 Face 7660 2627 2507 12649 Face 7661 2712 2605 12650 Face 7662 2605 2645 12650 Face 7663 2645 2766 12650 Face 7664 2766 2712 12650 Face 7665 1998 1920 12651 Face 7666 1920 1977 12651 Face 7667 1977 1997 12651 Face 7668 1997 1998 12651 Face 7669 1879 1843 12652 Face 7670 1843 1939 12652 Face 7671 1939 1952 12652 Face 7672 1952 1879 12652 Face 7673 1988 2021 12653 Face 7674 2021 2005 12653 Face 7675 2005 2002 12653 Face 7676 2002 1988 12653 Face 7677 1918 1949 12654 Face 7678 1949 1991 12654 Face 7679 1991 1981 12654 Face 7680 1981 1918 12654 Face 7681 1824 1841 12655 Face 7682 1841 1934 12655 Face 7683 1934 1935 12655 Face 7684 1935 1824 12655 Face 7685 1861 1888 12656 Face 7686 1888 1917 12656 Face 7687 1917 1930 12656 Face 7688 1930 1861 12656 Face 7689 1866 1800 12657 Face 7690 1800 1859 12657 Face 7691 1859 1897 12657 Face 7692 1897 1866 12657 Face 7693 2541 2706 12658 Face 7694 2706 2358 12658 Face 7695 2358 2131 12658 Face 7696 2131 2541 12658 Face 7697 2561 2862 12659 Face 7698 2862 3076 12659 Face 7699 3076 2734 12659 Face 7700 2734 2561 12659 Face 7701 2885 3256 12660 Face 7702 3256 3426 12660 Face 7703 3426 3066 12660 Face 7704 3066 2885 12660 Face 7705 3013 3429 12661 Face 7706 3429 3466 12661 Face 7707 3466 3084 12661 Face 7708 3084 3013 12661 Face 7709 3140 3492 12662 Face 7710 3492 3503 12662 Face 7711 3503 3198 12662 Face 7712 3198 3140 12662 Face 7713 1831 1784 12663 Face 7714 1784 1794 12663 Face 7715 1794 1818 12663 Face 7716 1818 1831 12663 Face 7717 1817 1811 12664 Face 7718 1811 1834 12664 Face 7719 1834 1829 12664 Face 7720 1829 1817 12664 Face 7721 1878 1911 12665 Face 7722 1911 2057 12665 Face 7723 2057 1953 12665 Face 7724 1953 1878 12665 Face 7725 2068 2246 12666 Face 7726 2246 2504 12666 Face 7727 2504 2224 12666 Face 7728 2224 2068 12666 Face 7729 2412 2639 12667 Face 7730 2639 2741 12667 Face 7731 2741 2550 12667 Face 7732 2550 2412 12667 Face 7733 2525 2699 12668 Face 7734 2699 2754 12668 Face 7735 2754 2589 12668 Face 7736 2589 2525 12668 Face 7737 2664 2823 12669 Face 7738 2823 2912 12669 Face 7739 2912 2764 12669 Face 7740 2764 2664 12669 Face 7741 5292 5068 12670 Face 7742 5068 4927 12670 Face 7743 4927 5291 12670 Face 7744 5291 5292 12670 Face 7745 2945 3538 12671 Face 7746 3538 3673 12671 Face 7747 3673 3174 12671 Face 7748 3174 2945 12671 Face 7749 4137 4348 12672 Face 7750 4348 4282 12672 Face 7751 4282 4170 12672 Face 7752 4170 4137 12672 Face 7753 3329 3804 12673 Face 7754 3804 3914 12673 Face 7755 3914 3471 12673 Face 7756 3471 3329 12673 Face 7757 4246 4293 12674 Face 7758 4293 4427 12674 Face 7759 4427 4346 12674 Face 7760 4346 4246 12674 Face 7761 3604 4018 12675 Face 7762 4018 4131 12675 Face 7763 4131 3758 12675 Face 7764 3758 3604 12675 Face 7765 4431 4798 12676 Face 7766 4798 5104 12676 Face 7767 5104 4548 12676 Face 7768 4548 4431 12676 Face 7769 3773 4136 12677 Face 7770 4136 4140 12677 Face 7771 4140 3815 12677 Face 7772 3815 3773 12677 Face 7773 4635 5236 12678 Face 7774 5236 5256 12678 Face 7775 5256 4683 12678 Face 7776 4683 4635 12678 Face 7777 3834 4154 12679 Face 7778 4154 4182 12679 Face 7779 4182 3837 12679 Face 7780 3837 3834 12679 Face 7781 5322 4943 12680 Face 7782 4943 4814 12680 Face 7783 4814 5286 12680 Face 7784 5286 5322 12680 Face 7785 4302 4424 12681 Face 7786 4424 4030 12681 Face 7787 4030 3938 12681 Face 7788 3938 4302 12681 Face 7789 2043 2111 12682 Face 7790 2111 2093 12682 Face 7791 2093 2051 12682 Face 7792 2051 2043 12682 Face 7793 1940 1983 12683 Face 7794 1983 1963 12683 Face 7795 1963 1968 12683 Face 7796 1968 1940 12683 Face 7797 1942 1958 12684 Face 7798 1958 1962 12684 Face 7799 1962 2023 12684 Face 7800 2023 1942 12684 Face 7801 2024 2023 12685 Face 7802 2023 1962 12685 Face 7803 1962 1946 12685 Face 7804 1946 2024 12685 Face 7805 1999 2029 12686 Face 7806 2029 2061 12686 Face 7807 2061 2009 12686 Face 7808 2009 1999 12686 Face 7809 2228 2255 12687 Face 7810 2255 2181 12687 Face 7811 2181 2199 12687 Face 7812 2199 2228 12687 Face 7813 1975 1959 12688 Face 7814 1959 1852 12688 Face 7815 1852 1891 12688 Face 7816 1891 1975 12688 Face 7817 1799 1797 12689 Face 7818 1797 1805 12689 Face 7819 1805 1812 12689 Face 7820 1812 1799 12689 Face 7821 1938 1994 12690 Face 7822 1994 1872 12690 Face 7823 1872 1875 12690 Face 7824 1875 1938 12690 Face 7825 1838 1813 12691 Face 7826 1813 1966 12691 Face 7827 1966 1913 12691 Face 7828 1913 1838 12691 Face 7829 2004 1960 12692 Face 7830 1960 1976 12692 Face 7831 1976 2035 12692 Face 7832 2035 2004 12692 Face 7833 2121 2218 12693 Face 7834 2218 2139 12693 Face 7835 2139 2129 12693 Face 7836 2129 2121 12693 Face 7837 1947 2011 12694 Face 7838 2011 2041 12694 Face 7839 2041 1982 12694 Face 7840 1982 1947 12694 Face 7841 2184 2135 12695 Face 7842 2135 2254 12695 Face 7843 2254 2210 12695 Face 7844 2210 2184 12695 Face 7845 1788 1833 12696 Face 7846 1833 1775 12696 Face 7847 1775 1771 12696 Face 7848 1771 1788 12696 Face 7849 2008 2084 12697 Face 7850 2084 1847 12697 Face 7851 1847 1815 12697 Face 7852 1815 2008 12697 Face 7853 2251 2313 12698 Face 7854 2313 2110 12698 Face 7855 2110 2126 12698 Face 7856 2126 2251 12698 Face 7857 2306 2394 12699 Face 7858 2394 2209 12699 Face 7859 2209 2215 12699 Face 7860 2215 2306 12699 Face 7861 2430 2558 12700 Face 7862 2558 2462 12700 Face 7863 2462 2408 12700 Face 7864 2408 2430 12700 Face 7865 2564 2634 12701 Face 7866 2634 2476 12701 Face 7867 2476 2510 12701 Face 7868 2510 2564 12701 Face 7869 2478 2474 12702 Face 7870 2474 2568 12702 Face 7871 2568 2544 12702 Face 7872 2544 2478 12702 Face 7873 2923 3046 12703 Face 7874 3046 3070 12703 Face 7875 3070 2999 12703 Face 7876 2999 2923 12703 Face 7877 2532 2576 12704 Face 7878 2576 2563 12704 Face 7879 2563 2499 12704 Face 7880 2499 2532 12704 Face 7881 2520 2499 12705 Face 7882 2499 2563 12705 Face 7883 2563 2587 12705 Face 7884 2587 2520 12705 Face 7885 3833 3746 12706 Face 7886 3746 4186 12706 Face 7887 4186 4201 12706 Face 7888 4201 3833 12706 Face 7889 4595 4909 12707 Face 7890 4909 5110 12707 Face 7891 5110 4695 12707 Face 7892 4695 4595 12707 Face 7893 4939 5028 12708 Face 7894 5028 5149 12708 Face 7895 5149 4967 12708 Face 7896 4967 4939 12708 Face 7897 5146 5205 12709 Face 7898 5205 5320 12709 Face 7899 5320 5217 12709 Face 7900 5217 5146 12709 Face 7901 5326 5476 12710 Face 7902 5476 5660 12710 Face 7903 5660 5392 12710 Face 7904 5392 5326 12710 Face 7905 3168 3139 12711 Face 7906 3139 3308 12711 Face 7907 3308 3321 12711 Face 7908 3321 3168 12711 Face 7909 3099 3091 12712 Face 7910 3091 3327 12712 Face 7911 3327 3275 12712 Face 7912 3275 3099 12712 Face 7913 3865 3857 12713 Face 7914 3857 4100 12713 Face 7915 4100 4015 12713 Face 7916 4015 3865 12713 Face 7917 4124 4224 12714 Face 7918 4224 4455 12714 Face 7919 4455 4279 12714 Face 7920 4279 4124 12714 Face 7921 2988 2972 12715 Face 7922 2972 3008 12715 Face 7923 3008 3027 12715 Face 7924 3027 2988 12715 Face 7925 3683 3739 12716 Face 7926 3739 4105 12716 Face 7927 4105 3848 12716 Face 7928 3848 3683 12716 Face 7929 2899 2890 12717 Face 7930 2890 2940 12717 Face 7931 2940 2947 12717 Face 7932 2947 2899 12717 Face 7933 2884 2871 12718 Face 7934 2871 2913 12718 Face 7935 2913 2895 12718 Face 7936 2895 2884 12718 Face 7937 5289 5188 12719 Face 7938 5188 5255 12719 Face 7939 5255 5334 12719 Face 7940 5334 5289 12719 Face 7941 4972 4858 12720 Face 7942 4858 4917 12720 Face 7943 4917 4965 12720 Face 7944 4965 4972 12720 Face 7945 4793 4523 12721 Face 7946 4523 4805 12721 Face 7947 4805 4810 12721 Face 7948 4810 4793 12721 Face 7949 4928 4801 12722 Face 7950 4801 4969 12722 Face 7951 4969 5000 12722 Face 7952 5000 4928 12722 Face 7953 4936 4963 12723 Face 7954 4963 5053 12723 Face 7955 5053 5001 12723 Face 7956 5001 4936 12723 Face 7957 5151 5155 12724 Face 7958 5155 5297 12724 Face 7959 5297 5270 12724 Face 7960 5270 5151 12724 Face 7961 5016 5105 12725 Face 7962 5105 5106 12725 Face 7963 5106 4970 12725 Face 7964 4970 5016 12725 Face 7965 4990 4970 12726 Face 7966 4970 5106 12726 Face 7967 5106 5048 12726 Face 7968 5048 4990 12726 Face 7969 5376 5302 12727 Face 7970 5302 5234 12727 Face 7971 5234 5370 12727 Face 7972 5370 5376 12727 Face 7973 3233 3072 12728 Face 7974 3072 3023 12728 Face 7975 3023 3212 12728 Face 7976 3212 3233 12728 Face 7977 5071 5057 12729 Face 7978 5057 5169 12729 Face 7979 5169 5229 12729 Face 7980 5229 5071 12729 Face 7981 3057 3119 12730 Face 7982 3119 3043 12730 Face 7983 3043 3045 12730 Face 7984 3045 3057 12730 Face 7985 3393 3165 12731 Face 7986 3165 3203 12731 Face 7987 3203 3412 12731 Face 7988 3412 3393 12731 Face 7989 2720 2690 12732 Face 7990 2690 2803 12732 Face 7991 2803 2822 12732 Face 7992 2822 2720 12732 Face 7993 2748 2582 12733 Face 7994 2582 2583 12733 Face 7995 2583 2719 12733 Face 7996 2719 2748 12733 Face 7997 2396 2392 12734 Face 7998 2392 2337 12734 Face 7999 2337 2346 12734 Face 8000 2346 2396 12734 Face 8001 2413 2273 12735 Face 8002 2273 2424 12735 Face 8003 2424 2472 12735 Face 8004 2472 2413 12735 Face 8005 2509 2606 12736 Face 8006 2606 2566 12736 Face 8007 2566 2547 12736 Face 8008 2547 2509 12736 Face 8009 2122 2065 12737 Face 8010 2065 2136 12737 Face 8011 2136 2125 12737 Face 8012 2125 2122 12737 Face 8013 5206 5180 12738 Face 8014 5180 5269 12738 Face 8015 5269 5252 12738 Face 8016 5252 5206 12738 Face 8017 4859 4722 12739 Face 8018 4722 4689 12739 Face 8019 4689 4789 12739 Face 8020 4789 4859 12739 Face 8021 4950 4904 12740 Face 8022 4904 4887 12740 Face 8023 4887 4940 12740 Face 8024 4940 4950 12740 Face 8025 4446 4440 12741 Face 8026 4440 4513 12741 Face 8027 4513 4534 12741 Face 8028 4534 4446 12741 Face 8029 4592 4594 12742 Face 8030 4594 4761 12742 Face 8031 4761 4651 12742 Face 8032 4651 4592 12742 Face 8033 4802 4767 12743 Face 8034 4767 4888 12743 Face 8035 4888 4892 12743 Face 8036 4892 4802 12743 Face 8037 4612 4442 12744 Face 8038 4442 4566 12744 Face 8039 4566 4663 12744 Face 8040 4663 4612 12744 Face 8041 4344 4190 12745 Face 8042 4190 4376 12745 Face 8043 4376 4363 12745 Face 8044 4363 4344 12745 Face 8045 3989 3762 12746 Face 8046 3762 3908 12746 Face 8047 3908 3997 12746 Face 8048 3997 3989 12746 Face 8049 3917 3680 12747 Face 8050 3680 3747 12747 Face 8051 3747 3966 12747 Face 8052 3966 3917 12747 Face 8053 3522 3451 12748 Face 8054 3451 3541 12748 Face 8055 3541 3583 12748 Face 8056 3583 3522 12748 Face 8057 3299 3197 12749 Face 8058 3197 3336 12749 Face 8059 3336 3337 12749 Face 8060 3337 3299 12749 Face 8061 3388 3419 12750 Face 8062 3419 3509 12750 Face 8063 3509 3382 12750 Face 8064 3382 3388 12750 Face 8065 3615 3561 12751 Face 8066 3561 3445 12751 Face 8067 3445 3542 12751 Face 8068 3542 3615 12751 Face 8069 4532 4404 12752 Face 8070 4404 4303 12752 Face 8071 4303 4518 12752 Face 8072 4518 4532 12752 Face 8073 4288 4287 12753 Face 8074 4287 4202 12753 Face 8075 4202 4139 12753 Face 8076 4139 4288 12753 Face 8077 3993 4139 12754 Face 8078 4139 4202 12754 Face 8079 4202 4004 12754 Face 8080 4004 3993 12754 Face 8081 4215 4173 12755 Face 8082 4173 3894 12755 Face 8083 3894 4148 12755 Face 8084 4148 4215 12755 Face 8085 3367 3424 12756 Face 8086 3424 3365 12756 Face 8087 3365 3252 12756 Face 8088 3252 3367 12756 Face 8089 2359 2274 12757 Face 8090 2274 2325 12757 Face 8091 2325 2332 12757 Face 8092 2332 2359 12757 Face 8093 2114 2269 12758 Face 8094 2269 2120 12758 Face 8095 2120 2087 12758 Face 8096 2087 2114 12758 Face 8097 2560 2467 12759 Face 8098 2467 2386 12759 Face 8099 2386 2507 12759 Face 8100 2507 2560 12759 Face 8101 2127 2196 12760 Face 8102 2196 2288 12760 Face 8103 2288 2144 12760 Face 8104 2144 2127 12760 Face 8105 2770 2778 12761 Face 8106 2778 2961 12761 Face 8107 2961 2886 12761 Face 8108 2886 2770 12761 Face 8109 2027 2040 12762 Face 8110 2040 1789 12762 Face 8111 1789 1821 12762 Face 8112 1821 2027 12762 Face 8113 8994 8952 12763 Face 8114 8952 8934 12763 Face 8115 8934 9001 12763 Face 8116 9001 8994 12763 Face 8117 9077 9082 12764 Face 8118 9082 9062 12764 Face 8119 9062 9105 12764 Face 8120 9105 9077 12764 Face 8121 9065 9087 12765 Face 8122 9087 9022 12765 Face 8123 9022 9083 12765 Face 8124 9083 9065 12765 Face 8125 9098 9083 12766 Face 8126 9083 9022 12766 Face 8127 9022 9021 12766 Face 8128 9021 9098 12766 Face 8129 9035 8984 12767 Face 8130 8984 9016 12767 Face 8131 9016 9046 12767 Face 8132 9046 9035 12767 Face 8133 8843 8863 12768 Face 8134 8863 8790 12768 Face 8135 8790 8817 12768 Face 8136 8817 8843 12768 Face 8137 9154 9193 12769 Face 8138 9193 9086 12769 Face 8139 9086 9070 12769 Face 8140 9070 9154 12769 Face 8141 9233 9240 12770 Face 8142 9240 9248 12770 Face 8143 9248 9246 12770 Face 8144 9246 9233 12770 Face 8145 9170 9173 12771 Face 8146 9173 9051 12771 Face 8147 9051 9107 12771 Face 8148 9107 9170 12771 Face 8149 9132 9079 12772 Face 8150 9079 9232 12772 Face 8151 9232 9207 12772 Face 8152 9207 9132 12772 Face 8153 9041 9008 12773 Face 8154 9008 9102 12773 Face 8155 9102 9085 12773 Face 8156 9085 9041 12773 Face 8157 8924 8916 12774 Face 8158 8916 8830 12774 Face 8159 8830 8826 12774 Face 8160 8826 8924 12774 Face 8161 9066 9009 12775 Face 8162 9009 9037 12775 Face 8163 9037 9100 12775 Face 8164 9100 9066 12775 Face 8165 8859 8834 12776 Face 8166 8834 8873 12776 Face 8167 8873 8910 12776 Face 8168 8910 8859 12776 Face 8169 9274 9270 12777 Face 8170 9270 9212 12777 Face 8171 9212 9257 12777 Face 8172 9257 9274 12777 Face 8173 9230 9198 12778 Face 8174 9198 8961 12778 Face 8175 8961 9036 12778 Face 8176 9036 9230 12778 Face 8177 8920 8939 12779 Face 8178 8939 8739 12779 Face 8179 8739 8796 12779 Face 8180 8796 8920 12779 Face 8181 8850 8860 12780 Face 8182 8860 8669 12780 Face 8183 8669 8760 12780 Face 8184 8760 8850 12780 Face 8185 8662 8600 12781 Face 8186 8600 8506 12781 Face 8187 8506 8639 12781 Face 8188 8639 8662 12781 Face 8189 8549 8586 12782 Face 8190 8586 8425 12782 Face 8191 8425 8491 12782 Face 8192 8491 8549 12782 Face 8193 8451 8430 12783 Face 8194 8430 8511 12783 Face 8195 8511 8516 12783 Face 8196 8516 8451 12783 Face 8197 7958 7910 12784 Face 8198 7910 8038 12784 Face 8199 8038 8067 12784 Face 8200 8067 7958 12784 Face 8201 8460 8484 12785 Face 8202 8484 8544 12785 Face 8203 8544 8525 12785 Face 8204 8525 8460 12785 Face 8205 5207 5429 12786 Face 8206 5429 6236 12786 Face 8207 6236 4807 12786 Face 8208 4807 5207 12786 Face 8209 5119 4807 12787 Face 8210 4807 6236 12787 Face 8211 6236 5927 12787 Face 8212 5927 5119 12787 Face 8213 6843 6860 12788 Face 8214 6860 7297 12788 Face 8215 7297 7210 12788 Face 8216 7210 6843 12788 Face 8217 6353 5938 12789 Face 8218 5938 6134 12789 Face 8219 6134 6451 12789 Face 8220 6451 6353 12789 Face 8221 6071 5896 12790 Face 8222 5896 6013 12790 Face 8223 6013 6100 12790 Face 8224 6100 6071 12790 Face 8225 5828 5714 12791 Face 8226 5714 5840 12791 Face 8227 5840 5899 12791 Face 8228 5899 5828 12791 Face 8229 7720 7737 12792 Face 8230 7737 7902 12792 Face 8231 7902 7876 12792 Face 8232 7876 7720 12792 Face 8233 7767 7706 12793 Face 8234 7706 7917 12793 Face 8235 7917 7919 12793 Face 8236 7919 7767 12793 Face 8237 7023 6945 12794 Face 8238 6945 7186 12794 Face 8239 7186 7176 12794 Face 8240 7176 7023 12794 Face 8241 6762 6576 12795 Face 8242 6576 6821 12795 Face 8243 6821 6923 12795 Face 8244 6923 6762 12795 Face 8245 8004 8023 12796 Face 8246 8023 8063 12796 Face 8247 8063 8048 12796 Face 8248 8048 8004 12796 Face 8249 7115 6859 12797 Face 8250 6859 7181 12797 Face 8251 7181 7233 12797 Face 8252 7233 7115 12797 Face 8253 8088 8095 12798 Face 8254 8095 8151 12798 Face 8255 8151 8143 12798 Face 8256 8143 8088 12798 Face 8257 8146 8127 12799 Face 8258 8127 8171 12799 Face 8259 8171 8159 12799 Face 8260 8159 8146 12799 Face 8261 5463 5582 12800 Face 8262 5582 5485 12800 Face 8263 5485 5420 12800 Face 8264 5420 5463 12800 Face 8265 5698 5790 12801 Face 8266 5790 5858 12801 Face 8267 5858 5752 12801 Face 8268 5752 5698 12801 Face 8269 6073 6125 12802 Face 8270 6125 6184 12802 Face 8271 6184 6065 12802 Face 8272 6065 6073 12802 Face 8273 6249 6233 12803 Face 8274 6233 6506 12803 Face 8275 6506 6520 12803 Face 8276 6520 6249 12803 Face 8277 6040 6068 12804 Face 8278 6068 6242 12804 Face 8279 6242 6113 12804 Face 8280 6113 6040 12804 Face 8281 6039 5993 12805 Face 8282 5993 6075 12805 Face 8283 6075 6104 12805 Face 8284 6104 6039 12805 Face 8285 5772 5743 12806 Face 8286 5743 5891 12806 Face 8287 5891 5894 12806 Face 8288 5894 5772 12806 Face 8289 5907 5901 12807 Face 8290 5901 6067 12807 Face 8291 6067 5942 12807 Face 8292 5942 5907 12807 Face 8293 5997 5942 12808 Face 8294 5942 6067 12808 Face 8295 6067 6049 12808 Face 8296 6049 5997 12808 Face 8297 5676 5811 12809 Face 8298 5811 5738 12809 Face 8299 5738 5672 12809 Face 8300 5672 5676 12809 Face 8301 7812 7832 12810 Face 8302 7832 8170 12810 Face 8303 8170 7967 12810 Face 8304 7967 7812 12810 Face 8305 5816 5876 12811 Face 8306 5876 5991 12811 Face 8307 5991 5976 12811 Face 8308 5976 5816 12811 Face 8309 7980 7990 12812 Face 8310 7990 7923 12812 Face 8311 7923 7918 12812 Face 8312 7918 7980 12812 Face 8313 7633 7841 12813 Face 8314 7841 7878 12813 Face 8315 7878 7652 12813 Face 8316 7652 7633 12813 Face 8317 8221 8242 12814 Face 8318 8242 8357 12814 Face 8319 8357 8322 12814 Face 8320 8322 8221 12814 Face 8321 8296 8324 12815 Face 8322 8324 8569 12815 Face 8323 8569 8466 12815 Face 8324 8466 8296 12815 Face 8325 8700 8710 12816 Face 8326 8710 8652 12816 Face 8327 8652 8649 12816 Face 8328 8649 8700 12816 Face 8329 8637 8576 12817 Face 8330 8576 8711 12817 Face 8331 8711 8772 12817 Face 8332 8772 8637 12817 Face 8333 8515 8500 12818 Face 8334 8500 8478 12818 Face 8335 8478 8563 12818 Face 8336 8563 8515 12818 Face 8337 8919 8909 12819 Face 8338 8909 8980 12819 Face 8339 8980 8923 12819 Face 8340 8923 8919 12819 Face 8341 5794 5773 12820 Face 8342 5773 5865 12820 Face 8343 5865 5839 12820 Face 8344 5839 5794 12820 Face 8345 6253 6325 12821 Face 8346 6325 6262 12821 Face 8347 6262 6183 12821 Face 8348 6183 6253 12821 Face 8349 6190 6209 12822 Face 8350 6209 6139 12822 Face 8351 6139 6154 12822 Face 8352 6154 6190 12822 Face 8353 6099 6154 12823 Face 8354 6154 6139 12823 Face 8355 6139 6088 12823 Face 8356 6088 6099 12823 Face 8357 6509 6528 12824 Face 8358 6528 6599 12824 Face 8359 6599 6594 12824 Face 8360 6594 6509 12824 Face 8361 6454 6396 12825 Face 8362 6396 6321 12825 Face 8363 6321 6452 12825 Face 8364 6452 6454 12825 Face 8365 6241 6149 12826 Face 8366 6149 6243 12826 Face 8367 6243 6278 12826 Face 8368 6278 6241 12826 Face 8369 6383 6479 12827 Face 8370 6479 6597 12827 Face 8371 6597 6434 12827 Face 8372 6434 6383 12827 Face 8373 6675 6663 12828 Face 8374 6663 6854 12828 Face 8375 6854 6697 12828 Face 8376 6697 6675 12828 Face 8377 7042 7135 12829 Face 8378 7135 7282 12829 Face 8379 7282 7051 12829 Face 8380 7051 7042 12829 Face 8381 7073 7296 12830 Face 8382 7296 7361 12830 Face 8383 7361 7124 12830 Face 8384 7124 7073 12830 Face 8385 7459 7501 12831 Face 8386 7501 7592 12831 Face 8387 7592 7520 12831 Face 8388 7520 7459 12831 Face 8389 7709 7710 12832 Face 8390 7710 7845 12832 Face 8391 7845 7746 12832 Face 8392 7746 7709 12832 Face 8393 7656 7660 12833 Face 8394 7660 7572 12833 Face 8395 7572 7626 12833 Face 8396 7626 7656 12833 Face 8397 7500 7601 12834 Face 8398 7601 7480 12834 Face 8399 7480 7429 12834 Face 8400 7429 7500 12834 Face 8401 6524 6740 12835 Face 8402 6740 6635 12835 Face 8403 6635 6511 12835 Face 8404 6511 6524 12835 Face 8405 5481 5331 12836 Face 8406 5331 5702 12836 Face 8407 5702 5562 12836 Face 8408 5562 5481 12836 Face 8409 6842 6758 12837 Face 8410 6758 6754 12837 Face 8411 6754 7035 12837 Face 8412 7035 6842 12837 Face 8413 7047 7035 12838 Face 8414 7035 6754 12838 Face 8415 6754 6906 12838 Face 8416 6906 7047 12838 Face 8417 6830 6898 12839 Face 8418 6898 7159 12839 Face 8419 7159 6873 12839 Face 8420 6873 6830 12839 Face 8421 7792 7620 12840 Face 8422 7620 7622 12840 Face 8423 7622 7674 12840 Face 8424 7674 7792 12840 Face 8425 8716 8722 12841 Face 8426 8722 8771 12841 Face 8427 8771 8686 12841 Face 8428 8686 8716 12841 Face 8429 8958 8925 12842 Face 8430 8925 8774 12842 Face 8431 8774 8931 12842 Face 8432 8931 8958 12842 Face 8433 8537 8659 12843 Face 8434 8659 8578 12843 Face 8435 8578 8487 12843 Face 8436 8487 8537 12843 Face 8437 8900 8756 12844 Face 8438 8756 8846 12844 Face 8439 8846 8918 12844 Face 8440 8918 8900 12844 Face 8441 8246 8352 12845 Face 8442 8352 8275 12845 Face 8443 8275 8144 12845 Face 8444 8144 8246 12845 Face 8445 8201 8144 12846 Face 8446 8144 8275 12846 Face 8447 8275 8304 12846 Face 8448 8304 8201 12846 Face 8449 9224 9256 12847 Face 8450 9256 9004 12847 Face 8451 9004 9018 12847 Face 8452 9018 9224 12847 Face 8453 8749 8774 12848 Face 8454 8774 8563 12848 Face 8455 8563 8635 12848 Face 8456 8635 8749 12848 Face 8457 8420 8440 12849 Face 8458 8440 8540 12849 Face 8459 8540 8478 12849 Face 8460 8478 8420 12849 Face 8461 7504 7467 12850 Face 8462 7467 7022 12850 Face 8463 7022 7498 12850 Face 8464 7498 7504 12850 Face 8465 7418 7498 12851 Face 8466 7498 7022 12851 Face 8467 7022 7288 12851 Face 8468 7288 7418 12851 Face 8469 7067 7288 12852 Face 8470 7288 7022 12852 Face 8471 7022 6897 12852 Face 8472 6897 7067 12852 Face 8473 6858 6897 12853 Face 8474 6897 7022 12853 Face 8475 7022 6925 12853 Face 8476 6925 6858 12853 Face 8477 5733 5816 12854 Face 8478 5816 5832 12854 Face 8479 5832 5638 12854 Face 8480 5638 5733 12854 Face 8481 5646 5638 12855 Face 8482 5638 5832 12855 Face 8483 5832 5746 12855 Face 8484 5746 5646 12855 Face 8485 8656 8707 12856 Face 8486 8707 8695 12856 Face 8487 8695 8629 12856 Face 8488 8629 8656 12856 Face 8489 8591 8663 12857 Face 8490 8663 8533 12857 Face 8491 8533 8557 12857 Face 8492 8557 8591 12857 Face 8493 8052 8133 12858 Face 8494 8133 8242 12858 Face 8495 8242 8116 12858 Face 8496 8116 8052 12858 Face 8497 7960 7927 12859 Face 8498 7927 7965 12859 Face 8499 7965 7971 12859 Face 8500 7971 7960 12859 Face 8501 7756 7627 12860 Face 8502 7627 7676 12860 Face 8503 7676 7815 12860 Face 8504 7815 7756 12860 Face 8505 6321 6146 12861 Face 8506 6146 6417 12861 Face 8507 6417 6399 12861 Face 8508 6399 6321 12861 Face 8509 6270 6267 12862 Face 8510 6267 6291 12862 Face 8511 6291 6275 12862 Face 8512 6275 6270 12862 Face 8513 6147 6118 12863 Face 8514 6118 6212 12863 Face 8515 6212 6188 12863 Face 8516 6188 6147 12863 Face 8517 6180 6117 12864 Face 8518 6117 6305 12864 Face 8519 6305 6261 12864 Face 8520 6261 6180 12864 Face 8521 2423 2509 12865 Face 8522 2509 2269 12865 Face 8523 2269 2300 12865 Face 8524 2300 2423 12865 Face 8525 2606 2533 12866 Face 8526 2533 2632 12866 Face 8527 2632 2667 12866 Face 8528 2667 2606 12866 Face 8529 3544 3627 12867 Face 8530 3627 4149 12867 Face 8531 4149 3537 12867 Face 8532 3537 3544 12867 Face 8533 3573 3537 12868 Face 8534 3537 4149 12868 Face 8535 4149 3693 12868 Face 8536 3693 3573 12868 Face 8537 3872 3693 12869 Face 8538 3693 4149 12869 Face 8539 4149 4016 12869 Face 8540 4016 3872 12869 Face 8541 4122 4016 12870 Face 8542 4016 4149 12870 Face 8543 4149 4187 12870 Face 8544 4187 4122 12870 Face 8545 5194 5229 12871 Face 8546 5229 5411 12871 Face 8547 5411 5213 12871 Face 8548 5213 5194 12871 Face 8549 5294 5213 12872 Face 8550 5213 5411 12872 Face 8551 5411 5404 12872 Face 8552 5404 5294 12872 Face 8553 4514 4276 12873 Face 8554 4276 4025 12873 Face 8555 4025 5152 12873 Face 8556 5152 4514 12873 Face 8557 5561 5152 12874 Face 8558 5152 4025 12874 Face 8559 4025 5973 12874 Face 8560 5973 5561 12874 Face 8561 6625 5973 12875 Face 8562 5973 4025 12875 Face 8563 4025 6857 12875 Face 8564 6857 6625 12875 Face 8565 7004 6857 12876 Face 8566 6857 4025 12876 Face 8567 4025 7045 12876 Face 8568 7045 7004 12876 Face 8569 7081 7045 12877 Face 8570 7045 4025 12877 Face 8571 4025 6972 12877 Face 8572 6972 7081 12877 Face 8573 6691 6972 12878 Face 8574 6972 4025 12878 Face 8575 4025 6038 12878 Face 8576 6038 6691 12878 Face 8577 5567 6038 12879 Face 8578 6038 4025 12879 Face 8579 4025 5099 12879 Face 8580 5099 5567 12879 Face 8581 4437 5099 12880 Face 8582 5099 4025 12880 Face 8583 4025 4144 12880 Face 8584 4144 4437 12880 Face 8585 2404 2315 12881 Face 8586 2315 2338 12881 Face 8587 2338 2390 12881 Face 8588 2390 2404 12881 Face 8589 2489 2512 12882 Face 8590 2512 2383 12882 Face 8591 2383 2453 12882 Face 8592 2453 2489 12882 Face 8593 2919 2803 12883 Face 8594 2803 2909 12883 Face 8595 2909 2981 12883 Face 8596 2981 2919 12883 Face 8597 3067 3073 12884 Face 8598 3073 3108 12884 Face 8599 3108 3079 12884 Face 8600 3079 3067 12884 Face 8601 3230 3365 12885 Face 8602 3365 3418 12885 Face 8603 3418 3289 12885 Face 8604 3289 3230 12885 Face 8605 4648 4630 12886 Face 8606 4630 4895 12886 Face 8607 4895 4726 12886 Face 8608 4726 4648 12886 Face 8609 4770 4755 12887 Face 8610 4755 4778 12887 Face 8611 4778 4775 12887 Face 8612 4775 4770 12887 Face 8613 4854 4831 12888 Face 8614 4831 4923 12888 Face 8615 4923 4894 12888 Face 8616 4894 4854 12888 Face 8617 4784 4742 12889 Face 8618 4742 4924 12889 Face 8619 4924 4862 12889 Face 8620 4862 4784 12889 Face 8621 1835 1884 12890 Face 8622 1884 2012 12890 Face 8623 2012 1965 12890 Face 8624 1965 1835 12890 Face 8625 2140 2012 12891 Face 8626 2012 2038 12891 Face 8627 2038 2155 12891 Face 8628 2155 2140 12891 Face 8629 2054 2038 12892 Face 8630 2038 1926 12892 Face 8631 1926 1974 12892 Face 8632 1974 2054 12892 Face 8633 1892 1926 12893 Face 8634 1926 1884 12893 Face 8635 1884 1826 12893 Face 8636 1826 1892 12893 Face 8637 1770 1793 12894 Face 8638 1793 1910 12894 Face 8639 1910 1869 12894 Face 8640 1869 1770 12894 Face 8641 2078 1910 12895 Face 8642 1910 1965 12895 Face 8643 1965 2118 12895 Face 8644 2118 2078 12895 Face 8645 1786 1835 12896 Face 8646 1835 1793 12896 Face 8647 1793 1767 12896 Face 8648 1767 1786 12896 Face 8649 2027 1821 12897 Face 8650 1821 1869 12897 Face 8651 1869 2052 12897 Face 8652 2052 2027 12897 Face 8653 1746 1770 12898 Face 8654 1770 1747 12898 Face 8655 1747 1721 12898 Face 8656 1721 1746 12898 Face 8657 1733 1747 12899 Face 8658 1747 1821 12899 Face 8659 1821 1789 12899 Face 8660 1789 1733 12899 Face 8661 2043 2051 12900 Face 8662 2051 1974 12900 Face 8663 1974 1955 12900 Face 8664 1955 2043 12900 Face 8665 2137 2054 12901 Face 8666 2054 2051 12901 Face 8667 2051 2093 12901 Face 8668 2093 2137 12901 Face 8669 2111 2043 12902 Face 8670 2043 2045 12902 Face 8671 2045 2117 12902 Face 8672 2117 2111 12902 Face 8673 2086 2045 12903 Face 8674 2045 1971 12903 Face 8675 1971 2032 12903 Face 8676 2032 2086 12903 Face 8677 1896 1971 12904 Face 8678 1971 1955 12904 Face 8679 1955 1892 12904 Face 8680 1892 1896 12904 Face 8681 1787 1839 12905 Face 8682 1839 1826 12905 Face 8683 1826 1786 12905 Face 8684 1786 1787 12905 Face 8685 1967 1896 12906 Face 8686 1896 1839 12906 Face 8687 1839 1906 12906 Face 8688 1906 1967 12906 Face 8689 1845 1787 12907 Face 8690 1787 1764 12907 Face 8691 1764 1790 12907 Face 8692 1790 1845 12907 Face 8693 1745 1764 12908 Face 8694 1764 1767 12908 Face 8695 1767 1746 12908 Face 8696 1746 1745 12908 Face 8697 1765 1745 12909 Face 8698 1745 1731 12909 Face 8699 1731 1754 12909 Face 8700 1754 1765 12909 Face 8701 1722 1731 12910 Face 8702 1731 1721 12910 Face 8703 1721 1717 12910 Face 8704 1717 1722 12910 Face 8705 1723 1716 12911 Face 8706 1716 1717 12911 Face 8707 1717 1733 12911 Face 8708 1733 1723 12911 Face 8709 1758 1722 12912 Face 8710 1722 1725 12912 Face 8711 1725 1756 12912 Face 8712 1756 1758 12912 Face 8713 1729 1725 12913 Face 8714 1725 1716 12913 Face 8715 1716 1715 12913 Face 8716 1715 1729 12913 Face 8717 1734 1714 12914 Face 8718 1714 1715 12914 Face 8719 1715 1724 12914 Face 8720 1724 1734 12914 Face 8721 1757 1729 12915 Face 8722 1729 1730 12915 Face 8723 1730 1760 12915 Face 8724 1760 1757 12915 Face 8725 1735 1730 12916 Face 8726 1730 1714 12916 Face 8727 1714 1719 12916 Face 8728 1719 1735 12916 Face 8729 1750 1727 12917 Face 8730 1727 1719 12917 Face 8731 1719 1740 12917 Face 8732 1740 1750 12917 Face 8733 1763 1735 12918 Face 8734 1735 1742 12918 Face 8735 1742 1769 12918 Face 8736 1769 1763 12918 Face 8737 1753 1742 12919 Face 8738 1742 1727 12919 Face 8739 1727 1744 12919 Face 8740 1744 1753 12919 Face 8741 1776 1761 12920 Face 8742 1761 1744 12920 Face 8743 1744 1759 12920 Face 8744 1759 1776 12920 Face 8745 1778 1753 12921 Face 8746 1753 1766 12921 Face 8747 1766 1782 12921 Face 8748 1782 1778 12921 Face 8749 1783 1766 12922 Face 8750 1766 1761 12922 Face 8751 1761 1779 12922 Face 8752 1779 1783 12922 Face 8753 1837 1803 12923 Face 8754 1803 1779 12923 Face 8755 1779 1796 12923 Face 8756 1796 1837 12923 Face 8757 1806 1783 12924 Face 8758 1783 1819 12924 Face 8759 1819 1857 12924 Face 8760 1857 1806 12924 Face 8761 1883 1819 12925 Face 8762 1819 1803 12925 Face 8763 1803 1856 12925 Face 8764 1856 1883 12925 Face 8765 1969 1912 12926 Face 8766 1912 1856 12926 Face 8767 1856 1894 12926 Face 8768 1894 1969 12926 Face 8769 1900 1883 12927 Face 8770 1883 1940 12927 Face 8771 1940 1968 12927 Face 8772 1968 1900 12927 Face 8773 1983 1940 12928 Face 8774 1940 1912 12928 Face 8775 1912 1941 12928 Face 8776 1941 1983 12928 Face 8777 2024 1946 12929 Face 8778 1946 1941 12929 Face 8779 1941 2014 12929 Face 8780 2014 2024 12929 Face 8781 1990 1983 12930 Face 8782 1983 1946 12930 Face 8783 1946 1962 12930 Face 8784 1962 1990 12930 Face 8785 1992 1985 12931 Face 8786 1985 1962 12931 Face 8787 1962 1979 12931 Face 8788 1979 1992 12931 Face 8789 1987 1990 12932 Face 8790 1990 1985 12932 Face 8791 1985 1996 12932 Face 8792 1996 1987 12932 Face 8793 1999 2009 12933 Face 8794 2009 1979 12933 Face 8795 1979 1958 12933 Face 8796 1958 1999 12933 Face 8797 1996 1992 12934 Face 8798 1992 2017 12934 Face 8799 2017 2001 12934 Face 8800 2001 1996 12934 Face 8801 2067 2017 12935 Face 8802 2017 2009 12935 Face 8803 2009 2061 12935 Face 8804 2061 2067 12935 Face 8805 2145 2152 12936 Face 8806 2152 2061 12936 Face 8807 2061 2063 12936 Face 8808 2063 2145 12936 Face 8809 2062 2067 12937 Face 8810 2067 2178 12937 Face 8811 2178 2200 12937 Face 8812 2200 2062 12937 Face 8813 2204 2178 12938 Face 8814 2178 2152 12938 Face 8815 2152 2169 12938 Face 8816 2169 2204 12938 Face 8817 2228 2199 12939 Face 8818 2199 2200 12939 Face 8819 2200 2219 12939 Face 8820 2219 2228 12939 Face 8821 2001 2062 12940 Face 8822 2062 2042 12940 Face 8823 2042 1956 12940 Face 8824 1956 2001 12940 Face 8825 2013 2042 12941 Face 8826 2042 2199 12941 Face 8827 2199 2181 12941 Face 8828 2181 2013 12941 Face 8829 1963 1987 12942 Face 8830 1987 1956 12942 Face 8831 1956 1916 12942 Face 8832 1916 1963 12942 Face 8833 1975 1891 12943 Face 8834 1891 1916 12943 Face 8835 1916 2013 12943 Face 8836 2013 1975 12943 Face 8837 1968 1963 12944 Face 8838 1963 1931 12944 Face 8839 1931 1936 12944 Face 8840 1936 1968 12944 Face 8841 1903 1931 12945 Face 8842 1931 1891 12945 Face 8843 1891 1852 12945 Face 8844 1852 1903 12945 Face 8845 1799 1812 12946 Face 8846 1812 1852 12946 Face 8847 1852 1836 12946 Face 8848 1836 1799 12946 Face 8849 1907 1903 12947 Face 8850 1903 1867 12947 Face 8851 1867 1862 12947 Face 8852 1862 1907 12947 Face 8853 1860 1867 12948 Face 8854 1867 1812 12948 Face 8855 1812 1805 12948 Face 8856 1805 1860 12948 Face 8857 1802 1822 12949 Face 8858 1822 1805 12949 Face 8859 1805 1791 12949 Face 8860 1791 1802 12949 Face 8861 1849 1860 12950 Face 8862 1860 1886 12950 Face 8863 1886 1858 12950 Face 8864 1858 1849 12950 Face 8865 1893 1886 12951 Face 8866 1886 1822 12951 Face 8867 1822 1842 12951 Face 8868 1842 1893 12951 Face 8869 1851 1854 12952 Face 8870 1854 1842 12952 Face 8871 1842 1816 12952 Face 8872 1816 1851 12952 Face 8873 1855 1893 12953 Face 8874 1893 1882 12953 Face 8875 1882 1830 12953 Face 8876 1830 1855 12953 Face 8877 1881 1882 12954 Face 8878 1882 1854 12954 Face 8879 1854 1865 12954 Face 8880 1865 1881 12954 Face 8881 1905 1890 12955 Face 8882 1890 1865 12955 Face 8883 1865 1876 12955 Face 8884 1876 1905 12955 Face 8885 1823 1881 12956 Face 8886 1881 1890 12956 Face 8887 1890 1825 12956 Face 8888 1825 1823 12956 Face 8889 1868 1902 12957 Face 8890 1902 1876 12957 Face 8891 1876 1851 12957 Face 8892 1851 1868 12957 Face 8893 1846 1905 12958 Face 8894 1905 1938 12958 Face 8895 1938 1875 12958 Face 8896 1875 1846 12958 Face 8897 1994 1938 12959 Face 8898 1938 1902 12959 Face 8899 1902 1932 12959 Face 8900 1932 1994 12959 Face 8901 2047 2036 12960 Face 8902 2036 1932 12960 Face 8903 1932 1924 12960 Face 8904 1924 2047 12960 Face 8905 1925 1994 12961 Face 8906 1994 2036 12961 Face 8907 2036 1989 12961 Face 8908 1989 1925 12961 Face 8909 1838 1913 12962 Face 8910 1913 1924 12962 Face 8911 1924 1868 12962 Face 8912 1868 1838 12962 Face 8913 2039 2047 12963 Face 8914 2047 2064 12963 Face 8915 2064 2077 12963 Face 8916 2077 2039 12963 Face 8917 2124 2064 12964 Face 8918 2064 1913 12964 Face 8919 1913 1966 12964 Face 8920 1966 2124 12964 Face 8921 1813 1838 12965 Face 8922 1838 1816 12965 Face 8923 1816 1802 12965 Face 8924 1802 1813 12965 Face 8925 1820 1813 12966 Face 8926 1813 1791 12966 Face 8927 1791 1797 12966 Face 8928 1797 1820 12966 Face 8929 1760 1763 12967 Face 8930 1763 1830 12967 Face 8931 1830 1823 12967 Face 8932 1823 1760 12967 Face 8933 1858 1855 12968 Face 8934 1855 1769 12968 Face 8935 1769 1778 12968 Face 8936 1778 1858 12968 Face 8937 1862 1849 12969 Face 8938 1849 1782 12969 Face 8939 1782 1806 12969 Face 8940 1806 1862 12969 Face 8941 1936 1907 12970 Face 8942 1907 1857 12970 Face 8943 1857 1900 12970 Face 8944 1900 1936 12970 Face 8945 2114 2087 12971 Face 8946 2087 2004 12971 Face 8947 2004 2035 12971 Face 8948 2035 2114 12971 Face 8949 1960 2004 12972 Face 8950 2004 2029 12972 Face 8951 2029 1999 12972 Face 8952 1999 1960 12972 Face 8953 2055 2029 12973 Face 8954 2029 2087 12973 Face 8955 2087 2120 12973 Face 8956 2120 2055 12973 Face 8957 2063 2055 12974 Face 8958 2055 2121 12974 Face 8959 2121 2129 12974 Face 8960 2129 2063 12974 Face 8961 2218 2121 12975 Face 8962 2121 2120 12975 Face 8963 2120 2220 12975 Face 8964 2220 2218 12975 Face 8965 2160 2145 12976 Face 8966 2145 2129 12976 Face 8967 2129 2139 12976 Face 8968 2139 2160 12976 Face 8969 2175 2108 12977 Face 8970 2108 2139 12977 Face 8971 2139 2213 12977 Face 8972 2213 2175 12977 Face 8973 2169 2160 12978 Face 8974 2160 2108 12978 Face 8975 2108 2105 12978 Face 8976 2105 2169 12978 Face 8977 2269 2114 12979 Face 8978 2114 2159 12979 Face 8979 2159 2300 12979 Face 8980 2300 2269 12979 Face 8981 2235 2159 12980 Face 8982 2159 2073 12980 Face 8983 2073 2153 12980 Face 8984 2153 2235 12980 Face 8985 2037 2073 12981 Face 8986 2073 2035 12981 Face 8987 2035 1976 12981 Face 8988 1976 2037 12981 Face 8989 1947 1982 12982 Face 8990 1982 1976 12982 Face 8991 1976 1943 12982 Face 8992 1943 1947 12982 Face 8993 2079 2037 12983 Face 8994 2037 1982 12983 Face 8995 1982 2041 12983 Face 8996 2041 2079 12983 Face 8997 1958 1942 12984 Face 8998 1942 1943 12984 Face 8999 1943 1960 12984 Face 9000 1960 1958 12984 Face 9001 2011 1947 12985 Face 9002 1947 1942 12985 Face 9003 1942 2023 12985 Face 9004 2023 2011 12985 Face 9005 1756 1757 12986 Face 9006 1757 1825 12986 Face 9007 1825 1846 12986 Face 9008 1846 1756 12986 Face 9009 2132 2124 12987 Face 9010 2124 2184 12987 Face 9011 2184 2210 12987 Face 9012 2210 2132 12987 Face 9013 2135 2184 12988 Face 9014 2184 1966 12988 Face 9015 1966 1909 12988 Face 9016 1909 2135 12988 Face 9017 1836 1959 12989 Face 9018 1959 1978 12989 Face 9019 1978 1848 12989 Face 9020 1848 1836 12989 Face 9021 1927 1978 12990 Face 9022 1978 2171 12990 Face 9023 2171 2135 12990 Face 9024 2135 1927 12990 Face 9025 2296 2171 12991 Face 9026 2171 2163 12991 Face 9027 2163 2283 12991 Face 9028 2283 2296 12991 Face 9029 2164 2163 12992 Face 9030 2163 1959 12992 Face 9031 1959 1975 12992 Face 9032 1975 2164 12992 Face 9033 2283 2164 12993 Face 9034 2164 2181 12993 Face 9035 2181 2297 12993 Face 9036 2297 2283 12993 Face 9037 1797 1799 12994 Face 9038 1799 1848 12994 Face 9039 1848 1844 12994 Face 9040 1844 1797 12994 Face 9041 1909 1820 12995 Face 9042 1820 1844 12995 Face 9043 1844 1927 12995 Face 9044 1927 1909 12995 Face 9045 1754 1758 12996 Face 9046 1758 1875 12996 Face 9047 1875 1872 12996 Face 9048 1872 1754 12996 Face 9049 1790 1765 12997 Face 9050 1765 1872 12997 Face 9051 1872 1925 12997 Face 9052 1925 1790 12997 Face 9053 1906 1845 12998 Face 9054 1845 1989 12998 Face 9055 1989 2039 12998 Face 9056 2039 1906 12998 Face 9057 2032 1967 12999 Face 9058 1967 2077 12999 Face 9059 2077 2132 12999 Face 9060 2132 2032 12999 Face 9061 2134 2086 13000 Face 9062 2086 2210 13000 Face 9063 2210 2254 13000 Face 9064 2254 2134 13000 Face 9065 2255 2228 13001 Face 9066 2228 2117 13001 Face 9067 2117 2134 13001 Face 9068 2134 2255 13001 Face 9069 2109 2111 13002 Face 9070 2111 2219 13002 Face 9071 2219 2204 13002 Face 9072 2204 2109 13002 Face 9073 2297 2255 13003 Face 9074 2255 2254 13003 Face 9075 2254 2296 13003 Face 9076 2296 2297 13003 Face 9077 2093 2109 13004 Face 9078 2109 2105 13004 Face 9079 2105 2138 13004 Face 9080 2138 2093 13004 Face 9081 1788 1771 13005 Face 9082 1771 1789 13005 Face 9083 1789 1840 13005 Face 9084 1840 1788 13005 Face 9085 1724 1723 13006 Face 9086 1723 1771 13006 Face 9087 1771 1775 13006 Face 9088 1775 1724 13006 Face 9089 2008 1815 13007 Face 9090 1815 1775 13007 Face 9091 1775 1915 13007 Face 9092 1915 2008 13007 Face 9093 1740 1734 13008 Face 9094 1734 1815 13008 Face 9095 1815 1847 13008 Face 9096 1847 1740 13008 Face 9097 1970 1827 13009 Face 9098 1827 1847 13009 Face 9099 1847 2010 13009 Face 9100 2010 1970 13009 Face 9101 1759 1750 13010 Face 9102 1750 1827 13010 Face 9103 1827 1828 13010 Face 9104 1828 1759 13010 Face 9105 2003 1853 13011 Face 9106 1853 1828 13011 Face 9107 1828 1993 13011 Face 9108 1993 2003 13011 Face 9109 1796 1776 13012 Face 9110 1776 1853 13012 Face 9111 1853 1885 13012 Face 9112 1885 1796 13012 Face 9113 2056 1921 13013 Face 9114 1921 1885 13013 Face 9115 1885 2026 13013 Face 9116 2026 2056 13013 Face 9117 1894 1837 13014 Face 9118 1837 1921 13014 Face 9119 1921 2006 13014 Face 9120 2006 1894 13014 Face 9121 2198 2075 13015 Face 9122 2075 2006 13015 Face 9123 2006 2107 13015 Face 9124 2107 2198 13015 Face 9125 2014 1969 13016 Face 9126 1969 2075 13016 Face 9127 2075 2119 13016 Face 9128 2119 2014 13016 Face 9129 2251 2126 13017 Face 9130 2126 2119 13017 Face 9131 2119 2244 13017 Face 9132 2244 2251 13017 Face 9133 2023 2024 13018 Face 9134 2024 2126 13018 Face 9135 2126 2110 13018 Face 9136 2110 2023 13018 Face 9137 2223 2083 13019 Face 9138 2083 2110 13019 Face 9139 2110 2272 13019 Face 9140 2272 2223 13019 Face 9141 2046 2011 13020 Face 9142 2011 2083 13020 Face 9143 2083 2106 13020 Face 9144 2106 2046 13020 Face 9145 2306 2215 13021 Face 9146 2215 2106 13021 Face 9147 2106 2206 13021 Face 9148 2206 2306 13021 Face 9149 2041 2046 13022 Face 9150 2046 2215 13022 Face 9151 2215 2209 13022 Face 9152 2209 2041 13022 Face 9153 2430 2408 13023 Face 9154 2408 2206 13023 Face 9155 2206 2223 13023 Face 9156 2223 2430 13023 Face 9157 2394 2306 13024 Face 9158 2306 2408 13024 Face 9159 2408 2462 13024 Face 9160 2462 2394 13024 Face 9161 2564 2510 13025 Face 9162 2510 2438 13025 Face 9163 2438 2501 13025 Face 9164 2501 2564 13025 Face 9165 2391 2438 13026 Face 9166 2438 2313 13026 Face 9167 2313 2251 13026 Face 9168 2251 2391 13026 Face 9169 2272 2313 13027 Face 9170 2313 2510 13027 Face 9171 2510 2476 13027 Face 9172 2476 2272 13027 Face 9173 2580 2585 13028 Face 9174 2585 2501 13028 Face 9175 2501 2485 13028 Face 9176 2485 2580 13028 Face 9177 2634 2564 13029 Face 9178 2564 2585 13029 Face 9179 2585 2654 13029 Face 9180 2654 2634 13029 Face 9181 2380 2482 13030 Face 9182 2482 2485 13030 Face 9183 2485 2391 13030 Face 9184 2391 2380 13030 Face 9185 2670 2580 13031 Face 9186 2580 2579 13031 Face 9187 2579 2677 13031 Face 9188 2677 2670 13031 Face 9189 2559 2579 13032 Face 9190 2579 2482 13032 Face 9191 2482 2458 13032 Face 9192 2458 2559 13032 Face 9193 2339 2380 13033 Face 9194 2380 2244 13033 Face 9195 2244 2198 13033 Face 9196 2198 2339 13033 Face 9197 2217 2266 13034 Face 9198 2266 2107 13034 Face 9199 2107 2056 13034 Face 9200 2056 2217 13034 Face 9201 2458 2339 13035 Face 9202 2339 2266 13035 Face 9203 2266 2422 13035 Face 9204 2422 2458 13035 Face 9205 2498 2534 13036 Face 9206 2534 2422 13036 Face 9207 2422 2389 13036 Face 9208 2389 2498 13036 Face 9209 2656 2559 13037 Face 9210 2559 2534 13037 Face 9211 2534 2624 13037 Face 9212 2624 2656 13037 Face 9213 2176 2356 13038 Face 9214 2356 2389 13038 Face 9215 2389 2217 13038 Face 9216 2217 2176 13038 Face 9217 2590 2498 13039 Face 9218 2498 2466 13039 Face 9219 2466 2536 13039 Face 9220 2536 2590 13039 Face 9221 2431 2466 13040 Face 9222 2466 2356 13040 Face 9223 2356 2302 13040 Face 9224 2302 2431 13040 Face 9225 2157 2176 13041 Face 9226 2176 2026 13041 Face 9227 2026 2003 13041 Face 9228 2003 2157 13041 Face 9229 2127 2144 13042 Face 9230 2144 1993 13042 Face 9231 1993 1970 13042 Face 9232 1970 2127 13042 Face 9233 2302 2157 13043 Face 9234 2157 2144 13043 Face 9235 2144 2288 13043 Face 9236 2288 2302 13043 Face 9237 2463 2431 13044 Face 9238 2431 2288 13044 Face 9239 2288 2345 13044 Face 9240 2345 2463 13044 Face 9241 2153 2079 13045 Face 9242 2079 2209 13045 Face 9243 2209 2270 13045 Face 9244 2270 2153 13045 Face 9245 2300 2235 13046 Face 9246 2235 2355 13046 Face 9247 2355 2423 13046 Face 9248 2423 2300 13046 Face 9249 2435 2355 13047 Face 9250 2355 2270 13047 Face 9251 2270 2394 13047 Face 9252 2394 2435 13047 Face 9253 2533 2435 13048 Face 9254 2435 2502 13048 Face 9255 2502 2569 13048 Face 9256 2569 2533 13048 Face 9257 2557 2502 13049 Face 9258 2502 2462 13049 Face 9259 2462 2530 13049 Face 9260 2530 2557 13049 Face 9261 2196 2127 13050 Face 9262 2127 2010 13050 Face 9263 2010 2084 13050 Face 9264 2084 2196 13050 Face 9265 2558 2430 13051 Face 9266 2430 2476 13051 Face 9267 2476 2611 13051 Face 9268 2611 2558 13051 Face 9269 2637 2613 13052 Face 9270 2613 2530 13052 Face 9271 2530 2558 13052 Face 9272 2558 2637 13052 Face 9273 2569 2557 13053 Face 9274 2557 2613 13053 Face 9275 2613 2632 13053 Face 9276 2632 2569 13053 Face 9277 1833 1788 13054 Face 9278 1788 1773 13054 Face 9279 1773 1804 13054 Face 9280 1804 1833 13054 Face 9281 1873 1773 13055 Face 9282 1773 1840 13055 Face 9283 1840 1944 13055 Face 9284 1944 1873 13055 Face 9285 2512 2554 13056 Face 9286 2554 2449 13056 Face 9287 2449 2415 13056 Face 9288 2415 2512 13056 Face 9289 2388 2449 13057 Face 9290 2449 2492 13057 Face 9291 2492 2451 13057 Face 9292 2451 2388 13057 Face 9293 2548 2492 13058 Face 9294 2492 2595 13058 Face 9295 2595 2626 13058 Face 9296 2626 2548 13058 Face 9297 2658 2595 13059 Face 9298 2595 2554 13059 Face 9299 2554 2616 13059 Face 9300 2616 2658 13059 Face 9301 2594 2643 13060 Face 9302 2643 2616 13060 Face 9303 2616 2575 13060 Face 9304 2575 2594 13060 Face 9305 2694 2658 13061 Face 9306 2658 2714 13061 Face 9307 2714 2765 13061 Face 9308 2765 2694 13061 Face 9309 2745 2714 13062 Face 9310 2714 2643 13062 Face 9311 2643 2672 13062 Face 9312 2672 2745 13062 Face 9313 2603 2678 13063 Face 9314 2678 2672 13063 Face 9315 2672 2604 13063 Face 9316 2604 2603 13063 Face 9317 2802 2745 13064 Face 9318 2745 2761 13064 Face 9319 2761 2814 13064 Face 9320 2814 2802 13064 Face 9321 2744 2761 13065 Face 9322 2761 2678 13065 Face 9323 2678 2666 13065 Face 9324 2666 2744 13065 Face 9325 2567 2633 13066 Face 9326 2633 2666 13066 Face 9327 2666 2591 13066 Face 9328 2591 2567 13066 Face 9329 2801 2744 13067 Face 9330 2744 2710 13067 Face 9331 2710 2760 13067 Face 9332 2760 2801 13067 Face 9333 2660 2710 13068 Face 9334 2710 2633 13068 Face 9335 2633 2607 13068 Face 9336 2607 2660 13068 Face 9337 2477 2540 13069 Face 9338 2540 2607 13069 Face 9339 2607 2539 13069 Face 9340 2539 2477 13069 Face 9341 2705 2660 13070 Face 9342 2660 2598 13070 Face 9343 2598 2630 13070 Face 9344 2630 2705 13070 Face 9345 2535 2598 13071 Face 9346 2598 2540 13071 Face 9347 2540 2459 13071 Face 9348 2459 2535 13071 Face 9349 2307 2378 13072 Face 9350 2378 2459 13072 Face 9351 2459 2409 13072 Face 9352 2409 2307 13072 Face 9353 2581 2535 13073 Face 9354 2535 2478 13073 Face 9355 2478 2544 13073 Face 9356 2544 2581 13073 Face 9357 2474 2478 13074 Face 9358 2478 2378 13074 Face 9359 2378 2377 13074 Face 9360 2377 2474 13074 Face 9361 2404 2455 13075 Face 9362 2455 2377 13075 Face 9363 2377 2315 13075 Face 9364 2315 2404 13075 Face 9365 2556 2474 13076 Face 9366 2474 2526 13076 Face 9367 2526 2593 13076 Face 9368 2593 2556 13076 Face 9369 2602 2526 13077 Face 9370 2526 2455 13077 Face 9371 2455 2543 13077 Face 9372 2543 2602 13077 Face 9373 2599 2629 13078 Face 9374 2629 2543 13078 Face 9375 2543 2503 13078 Face 9376 2503 2599 13078 Face 9377 2652 2602 13079 Face 9378 2602 2685 13079 Face 9379 2685 2742 13079 Face 9380 2742 2652 13079 Face 9381 2785 2685 13080 Face 9382 2685 2629 13080 Face 9383 2629 2733 13080 Face 9384 2733 2785 13080 Face 9385 2812 2869 13081 Face 9386 2869 2733 13081 Face 9387 2733 2693 13081 Face 9388 2693 2812 13081 Face 9389 2846 2785 13082 Face 9390 2785 2923 13082 Face 9391 2923 2999 13082 Face 9392 2999 2846 13082 Face 9393 3046 2923 13083 Face 9394 2923 2869 13083 Face 9395 2869 3010 13083 Face 9396 3010 3046 13083 Face 9397 3049 3120 13084 Face 9398 3120 3010 13084 Face 9399 3010 2920 13084 Face 9400 2920 3049 13084 Face 9401 3058 3046 13085 Face 9402 3046 3147 13085 Face 9403 3147 3172 13085 Face 9404 3172 3058 13085 Face 9405 3325 3147 13086 Face 9406 3147 3120 13086 Face 9407 3120 3265 13086 Face 9408 3265 3325 13086 Face 9409 3070 3058 13087 Face 9410 3058 3047 13087 Face 9411 3047 3035 13087 Face 9412 3035 3070 13087 Face 9413 3004 3047 13088 Face 9414 3047 3200 13088 Face 9415 3200 3178 13088 Face 9416 3178 3004 13088 Face 9417 3435 3200 13089 Face 9418 3200 3172 13089 Face 9419 3172 3384 13089 Face 9420 3384 3435 13089 Face 9421 3333 3439 13090 Face 9422 3439 3265 13090 Face 9423 3265 3186 13090 Face 9424 3186 3333 13090 Face 9425 3384 3325 13091 Face 9426 3325 3539 13091 Face 9427 3539 3613 13091 Face 9428 3613 3384 13091 Face 9429 3792 3539 13092 Face 9430 3539 3439 13092 Face 9431 3439 3611 13092 Face 9432 3611 3792 13092 Face 9433 3431 3435 13093 Face 9434 3435 3695 13093 Face 9435 3695 3718 13093 Face 9436 3718 3431 13093 Face 9437 4030 3695 13094 Face 9438 3695 3613 13094 Face 9439 3613 3938 13094 Face 9440 3938 4030 13094 Face 9441 3557 3808 13095 Face 9442 3808 3611 13095 Face 9443 3611 3463 13095 Face 9444 3463 3557 13095 Face 9445 3938 3792 13096 Face 9446 3792 4089 13096 Face 9447 4089 4302 13096 Face 9448 4302 3938 13096 Face 9449 2483 2721 13097 Face 9450 2721 2910 13097 Face 9451 2910 2636 13097 Face 9452 2636 2483 13097 Face 9453 3048 2910 13098 Face 9454 2910 3446 13098 Face 9455 3446 3572 13098 Face 9456 3572 3048 13098 Face 9457 3748 3446 13099 Face 9458 3446 3167 13099 Face 9459 3167 3502 13099 Face 9460 3502 3748 13099 Face 9461 2861 3167 13100 Face 9462 3167 2721 13100 Face 9463 2721 2592 13100 Face 9464 2592 2861 13100 Face 9465 2305 2468 13101 Face 9466 2468 2592 13101 Face 9467 2592 2381 13101 Face 9468 2381 2305 13101 Face 9469 3232 2861 13102 Face 9470 2861 2675 13102 Face 9471 2675 2917 13102 Face 9472 2917 3232 13102 Face 9473 2546 2675 13103 Face 9474 2675 2468 13103 Face 9475 2468 2368 13103 Face 9476 2368 2546 13103 Face 9477 2177 2279 13104 Face 9478 2279 2368 13104 Face 9479 2368 2239 13104 Face 9480 2239 2177 13104 Face 9481 2775 2546 13105 Face 9482 2546 2487 13105 Face 9483 2487 2726 13105 Face 9484 2726 2775 13105 Face 9485 2456 2487 13106 Face 9486 2487 2279 13106 Face 9487 2279 2245 13106 Face 9488 2245 2456 13106 Face 9489 2168 2253 13107 Face 9490 2253 2245 13107 Face 9491 2245 2158 13107 Face 9492 2158 2168 13107 Face 9493 2697 2456 13108 Face 9494 2456 2444 13108 Face 9495 2444 2681 13108 Face 9496 2681 2697 13108 Face 9497 2445 2444 13109 Face 9498 2444 2253 13109 Face 9499 2253 2275 13109 Face 9500 2275 2445 13109 Face 9501 2225 2320 13110 Face 9502 2320 2275 13110 Face 9503 2275 2192 13110 Face 9504 2192 2225 13110 Face 9505 2673 2445 13111 Face 9506 2445 2457 13111 Face 9507 2457 2665 13111 Face 9508 2665 2673 13111 Face 9509 2513 2457 13112 Face 9510 2457 2320 13112 Face 9511 2320 2418 13112 Face 9512 2418 2513 13112 Face 9513 2465 2538 13113 Face 9514 2538 2418 13113 Face 9515 2418 2323 13113 Face 9516 2323 2465 13113 Face 9517 2679 2513 13114 Face 9518 2513 2596 13114 Face 9519 2596 2713 13114 Face 9520 2713 2679 13114 Face 9521 2628 2596 13115 Face 9522 2596 2538 13115 Face 9523 2538 2586 13115 Face 9524 2586 2628 13115 Face 9525 2520 2587 13116 Face 9526 2587 2586 13116 Face 9527 2586 2524 13116 Face 9528 2524 2520 13116 Face 9529 2730 2628 13117 Face 9530 2628 2640 13117 Face 9531 2640 2743 13117 Face 9532 2743 2730 13117 Face 9533 2631 2640 13118 Face 9534 2640 2587 13118 Face 9535 2587 2563 13118 Face 9536 2563 2631 13118 Face 9537 3901 3748 13119 Face 9538 3748 3952 13119 Face 9539 3952 4038 13119 Face 9540 4038 3901 13119 Face 9541 4332 3952 13120 Face 9542 3952 3743 13120 Face 9543 3743 4238 13120 Face 9544 4238 4332 13120 Face 9545 3546 3743 13121 Face 9546 3743 3502 13121 Face 9547 3502 3232 13121 Face 9548 3232 3546 13121 Face 9549 4399 4332 13122 Face 9550 4332 5164 13122 Face 9551 5164 5177 13122 Face 9552 5177 4399 13122 Face 9553 5881 5164 13123 Face 9554 5164 5119 13123 Face 9555 5119 5927 13123 Face 9556 5927 5881 13123 Face 9557 4807 5119 13124 Face 9558 5119 4238 13124 Face 9559 4238 4023 13124 Face 9560 4023 4807 13124 Face 9561 4023 3546 13125 Face 9562 3546 3303 13125 Face 9563 3303 3708 13125 Face 9564 3708 4023 13125 Face 9565 3154 3303 13126 Face 9566 3303 2917 13126 Face 9567 2917 2775 13126 Face 9568 2775 3154 13126 Face 9569 5207 4807 13127 Face 9570 4807 4233 13127 Face 9571 4233 4504 13127 Face 9572 4504 5207 13127 Face 9573 3990 4233 13128 Face 9574 4233 3708 13128 Face 9575 3708 3545 13128 Face 9576 3545 3990 13128 Face 9577 3545 3154 13129 Face 9578 3154 3121 13129 Face 9579 3121 3519 13129 Face 9580 3519 3545 13129 Face 9581 3083 3121 13130 Face 9582 3121 2726 13130 Face 9583 2726 2697 13130 Face 9584 2697 3083 13130 Face 9585 4330 3990 13131 Face 9586 3990 3936 13131 Face 9587 3936 4298 13131 Face 9588 4298 4330 13131 Face 9589 3886 3936 13132 Face 9590 3936 3519 13132 Face 9591 3519 3483 13132 Face 9592 3483 3886 13132 Face 9593 3483 3083 13133 Face 9594 3083 3034 13133 Face 9595 3034 3428 13133 Face 9596 3428 3483 13133 Face 9597 3000 3034 13134 Face 9598 3034 2681 13134 Face 9599 2681 2673 13134 Face 9600 2673 3000 13134 Face 9601 4265 3886 13135 Face 9602 3886 3833 13135 Face 9603 3833 4201 13135 Face 9604 4201 4265 13135 Face 9605 3746 3833 13136 Face 9606 3833 3428 13136 Face 9607 3428 3392 13136 Face 9608 3392 3746 13136 Face 9609 3392 3000 13137 Face 9610 3000 2977 13137 Face 9611 2977 3348 13137 Face 9612 3348 3392 13137 Face 9613 2941 2977 13138 Face 9614 2977 2665 13138 Face 9615 2665 2679 13138 Face 9616 2679 2941 13138 Face 9617 3986 3746 13139 Face 9618 3746 3685 13139 Face 9619 3685 3910 13139 Face 9620 3910 3986 13139 Face 9621 3623 3685 13140 Face 9622 3685 3348 13140 Face 9623 3348 3300 13140 Face 9624 3300 3623 13140 Face 9625 3300 2941 13141 Face 9626 2941 2918 13141 Face 9627 2918 3239 13141 Face 9628 3239 3300 13141 Face 9629 2903 2918 13142 Face 9630 2918 2713 13142 Face 9631 2713 2730 13142 Face 9632 2730 2903 13142 Face 9633 3870 3623 13143 Face 9634 3623 3551 13143 Face 9635 3551 3749 13143 Face 9636 3749 3870 13143 Face 9637 3477 3551 13144 Face 9638 3551 3239 13144 Face 9639 3239 3191 13144 Face 9640 3191 3477 13144 Face 9641 3191 2903 13145 Face 9642 2903 2887 13145 Face 9643 2887 3148 13145 Face 9644 3148 3191 13145 Face 9645 2859 2887 13146 Face 9646 2887 2743 13146 Face 9647 2743 2727 13146 Face 9648 2727 2859 13146 Face 9649 3667 3477 13147 Face 9650 3477 3400 13147 Face 9651 3400 3588 13147 Face 9652 3588 3667 13147 Face 9653 3328 3400 13148 Face 9654 3400 3148 13148 Face 9655 3148 3093 13148 Face 9656 3093 3328 13148 Face 9657 3720 3757 13149 Face 9658 3757 3588 13149 Face 9659 3588 3543 13149 Face 9660 3543 3720 13149 Face 9661 3749 3667 13150 Face 9662 3667 3840 13150 Face 9663 3840 3900 13150 Face 9664 3900 3749 13150 Face 9665 3988 3840 13151 Face 9666 3840 3757 13151 Face 9667 3757 3957 13151 Face 9668 3957 3988 13151 Face 9669 3910 3870 13152 Face 9670 3870 3999 13152 Face 9671 3999 4035 13152 Face 9672 4035 3910 13152 Face 9673 4143 3999 13153 Face 9674 3999 3900 13153 Face 9675 3900 4042 13153 Face 9676 4042 4143 13153 Face 9677 4186 3986 13154 Face 9678 3986 4035 13154 Face 9679 4035 4191 13154 Face 9680 4191 4186 13154 Face 9681 4096 4123 13155 Face 9682 4123 3957 13155 Face 9683 3957 3927 13155 Face 9684 3927 4096 13155 Face 9685 4042 3988 13156 Face 9686 3988 4138 13156 Face 9687 4138 4211 13156 Face 9688 4211 4042 13156 Face 9689 4307 4138 13157 Face 9690 4138 4123 13157 Face 9691 4123 4292 13157 Face 9692 4292 4307 13157 Face 9693 4191 4143 13158 Face 9694 4143 4325 13158 Face 9695 4325 4441 13158 Face 9696 4441 4191 13158 Face 9697 4555 4325 13159 Face 9698 4325 4211 13159 Face 9699 4211 4386 13159 Face 9700 4386 4555 13159 Face 9701 4201 4186 13160 Face 9702 4186 4595 13160 Face 9703 4595 4695 13160 Face 9704 4695 4201 13160 Face 9705 4909 4595 13161 Face 9706 4595 4441 13161 Face 9707 4441 4698 13161 Face 9708 4698 4909 13161 Face 9709 4423 4454 13162 Face 9710 4454 4292 13162 Face 9711 4292 4280 13162 Face 9712 4280 4423 13162 Face 9713 4386 4307 13163 Face 9714 4307 4494 13163 Face 9715 4494 4645 13163 Face 9716 4645 4386 13163 Face 9717 4769 4494 13164 Face 9718 4494 4454 13164 Face 9719 4454 4738 13164 Face 9720 4738 4769 13164 Face 9721 4698 4555 13165 Face 9722 4555 4846 13165 Face 9723 4846 4946 13165 Face 9724 4946 4698 13165 Face 9725 5012 4846 13166 Face 9726 4846 4645 13166 Face 9727 4645 4882 13166 Face 9728 4882 5012 13166 Face 9729 5103 4909 13167 Face 9730 4909 4946 13167 Face 9731 4946 5095 13167 Face 9732 5095 5103 13167 Face 9733 4939 4967 13168 Face 9734 4967 4738 13168 Face 9735 4738 4690 13168 Face 9736 4690 4939 13168 Face 9737 4882 4769 13169 Face 9738 4769 4992 13169 Face 9739 4992 5051 13169 Face 9740 5051 4882 13169 Face 9741 5153 4992 13170 Face 9742 4992 4967 13170 Face 9743 4967 5149 13170 Face 9744 5149 5153 13170 Face 9745 5095 5012 13171 Face 9746 5012 5146 13171 Face 9747 5146 5217 13171 Face 9748 5217 5095 13171 Face 9749 5205 5146 13172 Face 9750 5146 5051 13172 Face 9751 5051 5163 13172 Face 9752 5163 5205 13172 Face 9753 5110 5103 13173 Face 9754 5103 5326 13173 Face 9755 5326 5392 13173 Face 9756 5392 5110 13173 Face 9757 5476 5326 13174 Face 9758 5326 5217 13174 Face 9759 5217 5320 13174 Face 9760 5320 5476 13174 Face 9761 5321 5276 13175 Face 9762 5276 5149 13175 Face 9763 5149 5182 13175 Face 9764 5182 5321 13175 Face 9765 5163 5153 13176 Face 9766 5153 5259 13176 Face 9767 5259 5251 13176 Face 9768 5251 5163 13176 Face 9769 5365 5259 13177 Face 9770 5259 5276 13177 Face 9771 5276 5397 13177 Face 9772 5397 5365 13177 Face 9773 5309 5205 13178 Face 9774 5205 5251 13178 Face 9775 5251 5332 13178 Face 9776 5332 5309 13178 Face 9777 5486 5478 13179 Face 9778 5478 5397 13179 Face 9779 5397 5418 13179 Face 9780 5418 5486 13179 Face 9781 5332 5365 13180 Face 9782 5365 5467 13180 Face 9783 5467 5462 13180 Face 9784 5462 5332 13180 Face 9785 5578 5467 13181 Face 9786 5467 5478 13181 Face 9787 5478 5566 13181 Face 9788 5566 5578 13181 Face 9789 5320 5309 13182 Face 9790 5309 5458 13182 Face 9791 5458 5475 13182 Face 9792 5475 5320 13182 Face 9793 5587 5458 13183 Face 9794 5458 5462 13183 Face 9795 5462 5583 13183 Face 9796 5583 5587 13183 Face 9797 5570 5476 13184 Face 9798 5476 5475 13184 Face 9799 5475 5569 13184 Face 9800 5569 5570 13184 Face 9801 5659 5393 13185 Face 9802 5393 5392 13185 Face 9803 5392 5660 13185 Face 9804 5660 5659 13185 Face 9805 4695 5110 13186 Face 9806 5110 5113 13186 Face 9807 5113 4727 13186 Face 9808 4727 4695 13186 Face 9809 5107 5113 13187 Face 9810 5113 5393 13187 Face 9811 5393 5391 13187 Face 9812 5391 5107 13187 Face 9813 5664 5387 13188 Face 9814 5387 5391 13188 Face 9815 5391 5661 13188 Face 9816 5661 5664 13188 Face 9817 4743 5107 13189 Face 9818 5107 5098 13189 Face 9819 5098 4747 13189 Face 9820 4747 4743 13189 Face 9821 5147 5098 13190 Face 9822 5098 5387 13190 Face 9823 5387 5430 13190 Face 9824 5430 5147 13190 Face 9825 5616 5429 13191 Face 9826 5429 5430 13191 Face 9827 5430 5617 13191 Face 9828 5617 5616 13191 Face 9829 4931 5147 13192 Face 9830 5147 5429 13192 Face 9831 5429 5207 13192 Face 9832 5207 4931 13192 Face 9833 4298 4265 13193 Face 9834 4265 4727 13193 Face 9835 4727 4743 13193 Face 9836 4743 4298 13193 Face 9837 4504 4330 13194 Face 9838 4330 4747 13194 Face 9839 4747 4931 13194 Face 9840 4931 4504 13194 Face 9841 3168 3321 13195 Face 9842 3321 3326 13195 Face 9843 3326 3184 13195 Face 9844 3184 3168 13195 Face 9845 3378 3326 13196 Face 9846 3326 3536 13196 Face 9847 3536 3548 13196 Face 9848 3548 3378 13196 Face 9849 3730 3536 13197 Face 9850 3536 3540 13197 Face 9851 3540 3716 13197 Face 9852 3716 3730 13197 Face 9853 3529 3540 13198 Face 9854 3540 3321 13198 Face 9855 3321 3308 13198 Face 9856 3308 3529 13198 Face 9857 3741 3730 13199 Face 9858 3730 3993 13199 Face 9859 3993 4004 13199 Face 9860 4004 3741 13199 Face 9861 4139 3993 13200 Face 9862 3993 3899 13200 Face 9863 3899 4039 13200 Face 9864 4039 4139 13200 Face 9865 3862 3899 13201 Face 9866 3899 3716 13201 Face 9867 3716 3694 13201 Face 9868 3694 3862 13201 Face 9869 3099 3275 13202 Face 9870 3275 3308 13202 Face 9871 3308 3127 13202 Face 9872 3127 3099 13202 Face 9873 3694 3529 13203 Face 9874 3529 3505 13203 Face 9875 3505 3679 13203 Face 9876 3679 3694 13203 Face 9877 3533 3505 13204 Face 9878 3505 3275 13204 Face 9879 3275 3327 13204 Face 9880 3327 3533 13204 Face 9881 4003 3862 13205 Face 9882 3862 3865 13205 Face 9883 3865 4015 13205 Face 9884 4015 4003 13205 Face 9885 3857 3865 13206 Face 9886 3865 3679 13206 Face 9887 3679 3658 13206 Face 9888 3658 3857 13206 Face 9889 3372 3468 13207 Face 9890 3468 3327 13207 Face 9891 3327 3204 13207 Face 9892 3204 3372 13207 Face 9893 3658 3533 13208 Face 9894 3533 3594 13208 Face 9895 3594 3711 13208 Face 9896 3711 3658 13208 Face 9897 3717 3594 13209 Face 9898 3594 3468 13209 Face 9899 3468 3607 13209 Face 9900 3607 3717 13209 Face 9901 3964 3857 13210 Face 9902 3857 3711 13210 Face 9903 3711 3854 13210 Face 9904 3854 3964 13210 Face 9905 3676 3767 13211 Face 9906 3767 3607 13211 Face 9907 3607 3527 13211 Face 9908 3527 3676 13211 Face 9909 3854 3717 13212 Face 9910 3717 3895 13212 Face 9911 3895 4008 13212 Face 9912 4008 3854 13212 Face 9913 4022 3895 13213 Face 9914 3895 3767 13213 Face 9915 3767 3937 13213 Face 9916 3937 4022 13213 Face 9917 4100 3964 13214 Face 9918 3964 4124 13214 Face 9919 4124 4279 13214 Face 9920 4279 4100 13214 Face 9921 4224 4124 13215 Face 9922 4124 4008 13215 Face 9923 4008 4085 13215 Face 9924 4085 4224 13215 Face 9925 3961 4050 13216 Face 9926 4050 3937 13216 Face 9927 3937 3842 13216 Face 9928 3842 3961 13216 Face 9929 4085 4022 13217 Face 9930 4022 4119 13217 Face 9931 4119 4181 13217 Face 9932 4181 4085 13217 Face 9933 4306 4119 13218 Face 9934 4119 4050 13218 Face 9935 4050 4284 13218 Face 9936 4284 4306 13218 Face 9937 4370 4224 13219 Face 9938 4224 4181 13219 Face 9939 4181 4333 13219 Face 9940 4333 4370 13219 Face 9941 4679 4697 13220 Face 9942 4697 4284 13220 Face 9943 4284 4203 13220 Face 9944 4203 4679 13220 Face 9945 4333 4306 13221 Face 9946 4306 4682 13221 Face 9947 4682 4684 13221 Face 9948 4684 4333 13221 Face 9949 5037 4682 13222 Face 9950 4682 4697 13222 Face 9951 4697 5077 13222 Face 9952 5077 5037 13222 Face 9953 4455 4370 13223 Face 9954 4370 4729 13223 Face 9955 4729 4797 13223 Face 9956 4797 4455 13223 Face 9957 5049 4729 13224 Face 9958 4729 4684 13224 Face 9959 4684 5029 13224 Face 9960 5029 5049 13224 Face 9961 5364 5360 13225 Face 9962 5360 5077 13225 Face 9963 5077 5082 13225 Face 9964 5082 5364 13225 Face 9965 5029 5037 13226 Face 9966 5037 5343 13226 Face 9967 5343 5337 13226 Face 9968 5337 5029 13226 Face 9969 5658 5343 13227 Face 9970 5343 5360 13227 Face 9971 5360 5639 13227 Face 9972 5639 5658 13227 Face 9973 5089 5049 13228 Face 9974 5049 5347 13228 Face 9975 5347 5362 13228 Face 9976 5362 5089 13228 Face 9977 5651 5347 13229 Face 9978 5347 5337 13229 Face 9979 5337 5662 13229 Face 9980 5662 5651 13229 Face 9981 3005 3081 13230 Face 9982 3081 3113 13230 Face 9983 3113 3050 13230 Face 9984 3050 3005 13230 Face 9985 3207 3113 13231 Face 9986 3113 3184 13231 Face 9987 3184 3258 13231 Face 9988 3258 3207 13231 Face 9989 3139 3168 13232 Face 9990 3168 3081 13232 Face 9991 3081 3037 13232 Face 9992 3037 3139 13232 Face 9993 2988 3027 13233 Face 9994 3027 3037 13233 Face 9995 3037 2985 13233 Face 9996 2985 2988 13233 Face 9997 3126 3139 13234 Face 9998 3139 3027 13234 Face 9999 3027 3008 13234 Face 10000 3008 3126 13234 Face 10001 2873 2968 13235 Face 10002 2968 3008 13235 Face 10003 3008 2926 13235 Face 10004 2926 2873 13235 Face 10005 3127 3126 13236 Face 10006 3126 2968 13236 Face 10007 2968 2983 13236 Face 10008 2983 3127 13236 Face 10009 2866 2979 13237 Face 10010 2979 2983 13237 Face 10011 2983 2858 13237 Face 10012 2858 2866 13237 Face 10013 3091 3099 13238 Face 10014 3099 2979 13238 Face 10015 2979 2982 13238 Face 10016 2982 3091 13238 Face 10017 2989 3055 13239 Face 10018 3055 2982 13239 Face 10019 2982 2904 13239 Face 10020 2904 2989 13239 Face 10021 3204 3091 13240 Face 10022 3091 3055 13240 Face 10023 3055 3164 13240 Face 10024 3164 3204 13240 Face 10025 3257 3319 13241 Face 10026 3319 3164 13241 Face 10027 3164 3106 13241 Face 10028 3106 3257 13241 Face 10029 3527 3372 13242 Face 10030 3372 3319 13242 Face 10031 3319 3456 13242 Face 10032 3456 3527 13242 Face 10033 3491 3577 13243 Face 10034 3577 3456 13243 Face 10035 3456 3389 13243 Face 10036 3389 3491 13243 Face 10037 3842 3676 13244 Face 10038 3676 3577 13244 Face 10039 3577 3698 13244 Face 10040 3698 3842 13244 Face 10041 3683 3848 13245 Face 10042 3848 3698 13245 Face 10043 3698 3584 13245 Face 10044 3584 3683 13245 Face 10045 4203 3961 13246 Face 10046 3961 3848 13246 Face 10047 3848 4105 13246 Face 10048 4105 4203 13246 Face 10049 4560 4585 13247 Face 10050 4585 4105 13247 Face 10051 4105 4061 13247 Face 10052 4061 4560 13247 Face 10053 5082 4679 13248 Face 10054 4679 4585 13248 Face 10055 4585 5056 13248 Face 10056 5056 5082 13248 Face 10057 5361 5353 13249 Face 10058 5353 5056 13249 Face 10059 5056 5055 13249 Face 10060 5055 5361 13249 Face 10061 5633 5364 13250 Face 10062 5364 5353 13250 Face 10063 5353 5641 13250 Face 10064 5641 5633 13250 Face 10065 2671 2709 13251 Face 10066 2709 2674 13251 Face 10067 2674 2612 13251 Face 10068 2612 2671 13251 Face 10069 2689 2674 13252 Face 10070 2674 2729 13252 Face 10071 2729 2773 13252 Face 10072 2773 2689 13252 Face 10073 2791 2729 13253 Face 10074 2729 2751 13253 Face 10075 2751 2787 13253 Face 10076 2787 2791 13253 Face 10077 2788 2751 13254 Face 10078 2751 2709 13254 Face 10079 2709 2759 13254 Face 10080 2759 2788 13254 Face 10081 2837 2791 13255 Face 10082 2791 2835 13255 Face 10083 2835 2901 13255 Face 10084 2901 2837 13255 Face 10085 2867 2835 13256 Face 10086 2835 2817 13256 Face 10087 2817 2836 13256 Face 10088 2836 2867 13256 Face 10089 2826 2817 13257 Face 10090 2817 2787 13257 Face 10091 2787 2810 13257 Face 10092 2810 2826 13257 Face 10093 2970 2867 13258 Face 10094 2867 2889 13258 Face 10095 2889 3003 13258 Face 10096 3003 2970 13258 Face 10097 2914 2889 13259 Face 10098 2889 2847 13259 Face 10099 2847 2865 13259 Face 10100 2865 2914 13259 Face 10101 2848 2847 13260 Face 10102 2847 2836 13260 Face 10103 2836 2839 13260 Face 10104 2839 2848 13260 Face 10105 3030 2914 13261 Face 10106 2914 2946 13261 Face 10107 2946 3064 13261 Face 10108 3064 3030 13261 Face 10109 2996 2946 13262 Face 10110 2946 2899 13262 Face 10111 2899 2947 13262 Face 10112 2947 2996 13262 Face 10113 2890 2899 13263 Face 10114 2899 2865 13263 Face 10115 2865 2855 13263 Face 10116 2855 2890 13263 Face 10117 3098 2996 13264 Face 10118 2996 3050 13264 Face 10119 3050 3161 13264 Face 10120 3161 3098 13264 Face 10121 2985 3005 13265 Face 10122 3005 2947 13265 Face 10123 2947 2940 13265 Face 10124 2940 2985 13265 Face 10125 2984 2986 13266 Face 10126 2986 2940 13266 Face 10127 2940 2929 13266 Face 10128 2929 2984 13266 Face 10129 2972 2988 13267 Face 10130 2988 2986 13267 Face 10131 2986 2990 13267 Face 10132 2990 2972 13267 Face 10133 2772 2808 13268 Face 10134 2808 2800 13268 Face 10135 2800 2763 13268 Face 10136 2763 2772 13268 Face 10137 2821 2800 13269 Face 10138 2800 2858 13269 Face 10139 2858 2873 13269 Face 10140 2873 2821 13269 Face 10141 2904 2866 13270 Face 10142 2866 2808 13270 Face 10143 2808 2842 13270 Face 10144 2842 2904 13270 Face 10145 2838 2898 13271 Face 10146 2898 2842 13271 Face 10147 2842 2793 13271 Face 10148 2793 2838 13271 Face 10149 3106 2989 13272 Face 10150 2989 2898 13272 Face 10151 2898 3031 13272 Face 10152 3031 3106 13272 Face 10153 3117 3189 13273 Face 10154 3189 3031 13273 Face 10155 3031 2939 13273 Face 10156 2939 3117 13273 Face 10157 3389 3257 13274 Face 10158 3257 3189 13274 Face 10159 3189 3306 13274 Face 10160 3306 3389 13274 Face 10161 3307 3403 13275 Face 10162 3403 3306 13275 Face 10163 3306 3220 13275 Face 10164 3220 3307 13275 Face 10165 3584 3491 13276 Face 10166 3491 3403 13276 Face 10167 3403 3487 13276 Face 10168 3487 3584 13276 Face 10169 3430 3558 13277 Face 10170 3558 3487 13277 Face 10171 3487 3375 13277 Face 10172 3375 3430 13277 Face 10173 3739 3683 13278 Face 10174 3683 3558 13278 Face 10175 3558 3586 13278 Face 10176 3586 3739 13278 Face 10177 3457 3430 13279 Face 10178 3430 3324 13279 Face 10179 3324 3335 13279 Face 10180 3335 3457 13279 Face 10181 3243 3324 13280 Face 10182 3324 3280 13280 Face 10183 3280 3215 13280 Face 10184 3215 3243 13280 Face 10185 3218 3280 13281 Face 10186 3280 3375 13281 Face 10187 3375 3307 13281 Face 10188 3307 3218 13281 Face 10189 3166 3218 13282 Face 10190 3218 3149 13282 Face 10191 3149 3082 13282 Face 10192 3082 3166 13282 Face 10193 3028 3149 13283 Face 10194 3149 3220 13283 Face 10195 3220 3117 13283 Face 10196 3117 3028 13283 Face 10197 2944 3028 13284 Face 10198 3028 2863 13284 Face 10199 2863 2809 13284 Face 10200 2809 2944 13284 Face 10201 2781 2863 13285 Face 10202 2863 2939 13285 Face 10203 2939 2838 13285 Face 10204 2838 2781 13285 Face 10205 2731 2781 13286 Face 10206 2781 2746 13286 Face 10207 2746 2707 13286 Face 10208 2707 2731 13286 Face 10209 2728 2746 13287 Face 10210 2746 2793 13287 Face 10211 2793 2772 13287 Face 10212 2772 2728 13287 Face 10213 2696 2728 13288 Face 10214 2728 2738 13288 Face 10215 2738 2716 13288 Face 10216 2716 2696 13288 Face 10217 2777 2738 13289 Face 10218 2738 2763 13289 Face 10219 2763 2790 13289 Face 10220 2790 2777 13289 Face 10221 2876 2850 13290 Face 10222 2850 2790 13290 Face 10223 2790 2821 13290 Face 10224 2821 2876 13290 Face 10225 2752 2777 13291 Face 10226 2777 2831 13291 Face 10227 2831 2813 13291 Face 10228 2813 2752 13291 Face 10229 2882 2831 13292 Face 10230 2831 2850 13292 Face 10231 2850 2907 13292 Face 10232 2907 2882 13292 Face 10233 2990 2974 13293 Face 10234 2974 2907 13293 Face 10235 2907 2925 13293 Face 10236 2925 2990 13293 Face 10237 2864 2882 13294 Face 10238 2882 2952 13294 Face 10239 2952 2922 13294 Face 10240 2922 2864 13294 Face 10241 2976 2952 13295 Face 10242 2952 2974 13295 Face 10243 2974 2984 13295 Face 10244 2984 2976 13295 Face 10245 2951 2976 13296 Face 10246 2976 2937 13296 Face 10247 2937 2931 13296 Face 10248 2931 2951 13296 Face 10249 2906 2937 13297 Face 10250 2937 2929 13297 Face 10251 2929 2890 13297 Face 10252 2890 2906 13297 Face 10253 2892 2906 13298 Face 10254 2906 2855 13298 Face 10255 2855 2848 13298 Face 10256 2848 2892 13298 Face 10257 2926 2972 13299 Face 10258 2972 2925 13299 Face 10259 2925 2876 13299 Face 10260 2876 2926 13299 Face 10261 2529 2548 13300 Face 10262 2548 2612 13300 Face 10263 2612 2614 13300 Face 10264 2614 2529 13300 Face 10265 2724 2671 13301 Face 10266 2671 2626 13301 Face 10267 2626 2694 13301 Face 10268 2694 2724 13301 Face 10269 2759 2724 13302 Face 10270 2724 2789 13302 Face 10271 2789 2816 13302 Face 10272 2816 2759 13302 Face 10273 2827 2789 13303 Face 10274 2789 2765 13303 Face 10275 2765 2802 13303 Face 10276 2802 2827 13303 Face 10277 2851 2827 13304 Face 10278 2827 2845 13304 Face 10279 2845 2868 13304 Face 10280 2868 2851 13304 Face 10281 2828 2845 13305 Face 10282 2845 2814 13305 Face 10283 2814 2801 13305 Face 10284 2801 2828 13305 Face 10285 2852 2828 13306 Face 10286 2828 2783 13306 Face 10287 2783 2807 13306 Face 10288 2807 2852 13306 Face 10289 2725 2783 13307 Face 10290 2783 2760 13307 Face 10291 2760 2705 13307 Face 10292 2705 2725 13307 Face 10293 2749 2725 13308 Face 10294 2725 2655 13308 Face 10295 2655 2680 13308 Face 10296 2680 2749 13308 Face 10297 2609 2655 13309 Face 10298 2655 2630 13309 Face 10299 2630 2581 13309 Face 10300 2581 2609 13309 Face 10301 2619 2609 13310 Face 10302 2609 2544 13310 Face 10303 2544 2568 13310 Face 10304 2568 2619 13310 Face 10305 2810 2788 13311 Face 10306 2788 2844 13311 Face 10307 2844 2860 13311 Face 10308 2860 2810 13311 Face 10309 2875 2844 13312 Face 10310 2844 2816 13312 Face 10311 2816 2851 13312 Face 10312 2851 2875 13312 Face 10313 2888 2875 13313 Face 10314 2875 2884 13313 Face 10315 2884 2895 13313 Face 10316 2895 2888 13313 Face 10317 2871 2884 13314 Face 10318 2884 2868 13314 Face 10319 2868 2852 13314 Face 10320 2852 2871 13314 Face 10321 2891 2871 13315 Face 10322 2871 2829 13315 Face 10323 2829 2849 13315 Face 10324 2849 2891 13315 Face 10325 2776 2829 13316 Face 10326 2829 2807 13316 Face 10327 2807 2749 13316 Face 10328 2749 2776 13316 Face 10329 2797 2776 13317 Face 10330 2776 2700 13317 Face 10331 2700 2722 13317 Face 10332 2722 2797 13317 Face 10333 2644 2700 13318 Face 10334 2700 2680 13318 Face 10335 2680 2619 13318 Face 10336 2619 2644 13318 Face 10337 2682 2644 13319 Face 10338 2644 2618 13319 Face 10339 2618 2661 13319 Face 10340 2661 2682 13319 Face 10341 2617 2618 13320 Face 10342 2618 2568 13320 Face 10343 2568 2556 13320 Face 10344 2556 2617 13320 Face 10345 2669 2617 13321 Face 10346 2617 2642 13321 Face 10347 2642 2695 13321 Face 10348 2695 2669 13321 Face 10349 2715 2642 13322 Face 10350 2642 2593 13322 Face 10351 2593 2652 13322 Face 10352 2652 2715 13322 Face 10353 2774 2715 13323 Face 10354 2715 2818 13323 Face 10355 2818 2881 13323 Face 10356 2881 2774 13323 Face 10357 2930 2818 13324 Face 10358 2818 2742 13324 Face 10359 2742 2846 13324 Face 10360 2846 2930 13324 Face 10361 3026 2930 13325 Face 10362 2930 3080 13325 Face 10363 3080 3130 13325 Face 10364 3130 3026 13325 Face 10365 3133 3080 13326 Face 10366 3080 2999 13326 Face 10367 2999 3070 13326 Face 10368 3070 3133 13326 Face 10369 3187 3133 13327 Face 10370 3133 3131 13327 Face 10371 3131 3201 13327 Face 10372 3201 3187 13327 Face 10373 3122 3131 13328 Face 10374 3131 3035 13328 Face 10375 3035 3001 13328 Face 10376 3001 3122 13328 Face 10377 3251 3243 13329 Face 10378 3243 3201 13329 Face 10379 3201 3199 13329 Face 10380 3199 3251 13329 Face 10381 3130 3187 13330 Face 10382 3187 3215 13330 Face 10383 3215 3166 13330 Face 10384 3166 3130 13330 Face 10385 2881 3026 13331 Face 10386 3026 3082 13331 Face 10387 3082 2944 13331 Face 10388 2944 2881 13331 Face 10389 2695 2774 13332 Face 10390 2774 2809 13332 Face 10391 2809 2731 13332 Face 10392 2731 2695 13332 Face 10393 2661 2669 13333 Face 10394 2669 2707 13333 Face 10395 2707 2696 13333 Face 10396 2696 2661 13333 Face 10397 2722 2682 13334 Face 10398 2682 2716 13334 Face 10399 2716 2752 13334 Face 10400 2752 2722 13334 Face 10401 2849 2797 13335 Face 10402 2797 2813 13335 Face 10403 2813 2864 13335 Face 10404 2864 2849 13335 Face 10405 2913 2891 13336 Face 10406 2891 2922 13336 Face 10407 2922 2951 13336 Face 10408 2951 2913 13336 Face 10409 2895 2913 13337 Face 10410 2913 2908 13337 Face 10411 2908 2893 13337 Face 10412 2893 2895 13337 Face 10413 2878 2908 13338 Face 10414 2908 2931 13338 Face 10415 2931 2892 13338 Face 10416 2892 2878 13338 Face 10417 2870 2878 13339 Face 10418 2878 2839 13339 Face 10419 2839 2826 13339 Face 10420 2826 2870 13339 Face 10421 2893 2870 13340 Face 10422 2870 2860 13340 Face 10423 2860 2888 13340 Face 10424 2888 2893 13340 Face 10425 5289 5334 13341 Face 10426 5334 5463 13341 Face 10427 5463 5420 13341 Face 10428 5420 5289 13341 Face 10429 5582 5463 13342 Face 10430 5463 5465 13342 Face 10431 5465 5580 13342 Face 10432 5580 5582 13342 Face 10433 5464 5465 13343 Face 10434 5465 5346 13343 Face 10435 5346 5338 13343 Face 10436 5338 5464 13343 Face 10437 5254 5346 13344 Face 10438 5346 5334 13344 Face 10439 5334 5255 13344 Face 10440 5255 5254 13344 Face 10441 5581 5464 13345 Face 10442 5464 5460 13345 Face 10443 5460 5585 13345 Face 10444 5585 5581 13345 Face 10445 5459 5460 13346 Face 10446 5460 5328 13346 Face 10447 5328 5314 13346 Face 10448 5314 5459 13346 Face 10449 5214 5328 13347 Face 10450 5328 5338 13347 Face 10451 5338 5237 13347 Face 10452 5237 5214 13347 Face 10453 5586 5459 13348 Face 10454 5459 5454 13348 Face 10455 5454 5591 13348 Face 10456 5591 5586 13348 Face 10457 5451 5454 13349 Face 10458 5454 5298 13349 Face 10459 5298 5283 13349 Face 10460 5283 5451 13349 Face 10461 5185 5298 13350 Face 10462 5298 5314 13350 Face 10463 5314 5196 13350 Face 10464 5196 5185 13350 Face 10465 5138 5187 13351 Face 10466 5187 5255 13351 Face 10467 5255 5179 13351 Face 10468 5179 5138 13351 Face 10469 5237 5254 13352 Face 10470 5254 5176 13352 Face 10471 5176 5165 13352 Face 10472 5165 5237 13352 Face 10473 5100 5176 13353 Face 10474 5176 5187 13353 Face 10475 5187 5125 13353 Face 10476 5125 5100 13353 Face 10477 5196 5214 13354 Face 10478 5214 5141 13354 Face 10479 5141 5124 13354 Face 10480 5124 5196 13354 Face 10481 5050 5141 13355 Face 10482 5141 5165 13355 Face 10483 5165 5078 13355 Face 10484 5078 5050 13355 Face 10485 5172 5185 13356 Face 10486 5185 5116 13356 Face 10487 5116 5101 13356 Face 10488 5101 5172 13356 Face 10489 5035 5116 13357 Face 10490 5116 5124 13357 Face 10491 5124 5039 13357 Face 10492 5039 5035 13357 Face 10493 5010 5033 13358 Face 10494 5033 5125 13358 Face 10495 5125 5081 13358 Face 10496 5081 5010 13358 Face 10497 5078 5100 13359 Face 10498 5100 5002 13359 Face 10499 5002 4984 13359 Face 10500 4984 5078 13359 Face 10501 4885 5002 13360 Face 10502 5002 5033 13360 Face 10503 5033 4924 13360 Face 10504 4924 4885 13360 Face 10505 5039 5050 13361 Face 10506 5050 4972 13361 Face 10507 4972 4965 13361 Face 10508 4965 5039 13361 Face 10509 4858 4972 13362 Face 10510 4972 4984 13362 Face 10511 4984 4864 13362 Face 10512 4864 4858 13362 Face 10513 5018 5035 13363 Face 10514 5035 4950 13363 Face 10515 4950 4940 13363 Face 10516 4940 5018 13363 Face 10517 4904 4950 13364 Face 10518 4950 4965 13364 Face 10519 4965 4917 13364 Face 10520 4917 4904 13364 Face 10521 4868 4862 13365 Face 10522 4862 4924 13365 Face 10523 4924 4923 13365 Face 10524 4923 4868 13365 Face 10525 4864 4885 13366 Face 10526 4885 4742 13366 Face 10527 4742 4676 13366 Face 10528 4676 4864 13366 Face 10529 4468 4742 13367 Face 10530 4742 4784 13367 Face 10531 4784 4586 13367 Face 10532 4586 4468 13367 Face 10533 4796 4784 13368 Face 10534 4784 4862 13368 Face 10535 4862 4829 13368 Face 10536 4829 4796 13368 Face 10537 4839 4858 13369 Face 10538 4858 4658 13369 Face 10539 4658 4631 13369 Face 10540 4631 4839 13369 Face 10541 4391 4658 13370 Face 10542 4658 4676 13370 Face 10543 4676 4396 13370 Face 10544 4396 4391 13370 Face 10545 4917 4839 13371 Face 10546 4839 4802 13371 Face 10547 4802 4892 13371 Face 10548 4892 4917 13371 Face 10549 4767 4802 13372 Face 10550 4802 4614 13372 Face 10551 4614 4574 13372 Face 10552 4574 4767 13372 Face 10553 4395 4614 13373 Face 10554 4614 4631 13373 Face 10555 4631 4390 13373 Face 10556 4390 4395 13373 Face 10557 5558 5486 13374 Face 10558 5486 5485 13374 Face 10559 5485 5557 13374 Face 10560 5557 5558 13374 Face 10561 5420 5485 13375 Face 10562 5485 5418 13375 Face 10563 5418 5321 13375 Face 10564 5321 5420 13375 Face 10565 5188 5289 13376 Face 10566 5289 5182 13376 Face 10567 5182 5086 13376 Face 10568 5086 5188 13376 Face 10569 4928 5000 13377 Face 10570 5000 5041 13377 Face 10571 5041 4957 13377 Face 10572 4957 4928 13377 Face 10573 5045 5041 13378 Face 10574 5041 5179 13378 Face 10575 5179 5188 13378 Face 10576 5188 5045 13378 Face 10577 5081 5138 13379 Face 10578 5138 5000 13379 Face 10579 5000 4969 13379 Face 10580 4969 5081 13379 Face 10581 4923 5010 13380 Face 10582 5010 4945 13380 Face 10583 4945 4894 13380 Face 10584 4894 4923 13380 Face 10585 4818 4945 13381 Face 10586 4945 4969 13381 Face 10587 4969 4815 13381 Face 10588 4815 4818 13381 Face 10589 4830 4868 13382 Face 10590 4868 4838 13382 Face 10591 4838 4808 13382 Face 10592 4808 4830 13382 Face 10593 4778 4838 13383 Face 10594 4838 4831 13383 Face 10595 4831 4775 13383 Face 10596 4775 4778 13383 Face 10597 4795 4831 13384 Face 10598 4831 4854 13384 Face 10599 4854 4804 13384 Face 10600 4804 4795 13384 Face 10601 4751 4854 13385 Face 10602 4854 4894 13385 Face 10603 4894 4788 13385 Face 10604 4788 4751 13385 Face 10605 4791 4778 13386 Face 10606 4778 4768 13386 Face 10607 4768 4774 13386 Face 10608 4774 4791 13386 Face 10609 4495 4768 13387 Face 10610 4768 4752 13387 Face 10611 4752 4486 13387 Face 10612 4486 4495 13387 Face 10613 4705 4752 13388 Face 10614 4752 4755 13388 Face 10615 4755 4721 13388 Face 10616 4721 4705 13388 Face 10617 4671 4755 13389 Face 10618 4755 4770 13389 Face 10619 4770 4692 13389 Face 10620 4692 4671 13389 Face 10621 4781 4770 13390 Face 10622 4770 4775 13390 Face 10623 4775 4787 13390 Face 10624 4787 4781 13390 Face 10625 4396 4468 13391 Face 10626 4468 4215 13391 Face 10627 4215 4148 13391 Face 10628 4148 4396 13391 Face 10629 4173 4215 13392 Face 10630 4215 4586 13392 Face 10631 4586 4540 13392 Face 10632 4540 4173 13392 Face 10633 5275 5263 13393 Face 10634 5263 5444 13393 Face 10635 5444 5450 13393 Face 10636 5450 5275 13393 Face 10637 5602 5444 13394 Face 10638 5444 5440 13394 Face 10639 5440 5606 13394 Face 10640 5606 5602 13394 Face 10641 5436 5440 13395 Face 10642 5440 5248 13395 Face 10643 5248 5239 13395 Face 10644 5239 5436 13395 Face 10645 5120 5248 13396 Face 10646 5248 5263 13396 Face 10647 5263 5140 13396 Face 10648 5140 5120 13396 Face 10649 5076 5047 13397 Face 10650 5047 5140 13397 Face 10651 5140 5161 13397 Face 10652 5161 5076 13397 Face 10653 5114 5120 13398 Face 10654 5120 5025 13398 Face 10655 5025 5011 13398 Face 10656 5011 5114 13398 Face 10657 4960 5025 13399 Face 10658 5025 5047 13399 Face 10659 5047 4979 13399 Face 10660 4979 4960 13399 Face 10661 4932 4918 13400 Face 10662 4918 4979 13400 Face 10663 4979 4998 13400 Face 10664 4998 4932 13400 Face 10665 4948 4960 13401 Face 10666 4960 4914 13401 Face 10667 4914 4929 13401 Face 10668 4929 4948 13401 Face 10669 4849 4914 13402 Face 10670 4914 4918 13402 Face 10671 4918 4861 13402 Face 10672 4861 4849 13402 Face 10673 4790 4762 13403 Face 10674 4762 4861 13403 Face 10675 4861 4874 13403 Face 10676 4874 4790 13403 Face 10677 4857 4849 13404 Face 10678 4849 4728 13404 Face 10679 4728 4711 13404 Face 10680 4711 4857 13404 Face 10681 4623 4728 13405 Face 10682 4728 4762 13405 Face 10683 4762 4693 13405 Face 10684 4693 4623 13405 Face 10685 4720 4636 13406 Face 10686 4636 4693 13406 Face 10687 4693 4758 13406 Face 10688 4758 4720 13406 Face 10689 4590 4623 13407 Face 10690 4623 4543 13407 Face 10691 4543 4500 13407 Face 10692 4500 4590 13407 Face 10693 4496 4543 13408 Face 10694 4543 4636 13408 Face 10695 4636 4603 13408 Face 10696 4603 4496 13408 Face 10697 4800 4767 13409 Face 10698 4767 4612 13409 Face 10699 4612 4663 13409 Face 10700 4663 4800 13409 Face 10701 4442 4612 13410 Face 10702 4612 4574 13410 Face 10703 4574 4412 13410 Face 10704 4412 4442 13410 Face 10705 4511 4505 13411 Face 10706 4505 4598 13411 Face 10707 4598 4601 13411 Face 10708 4601 4511 13411 Face 10709 4696 4598 13412 Face 10710 4598 4603 13412 Face 10711 4603 4699 13412 Face 10712 4699 4696 13412 Face 10713 4465 4496 13413 Face 10714 4496 4505 13413 Face 10715 4505 4473 13413 Face 10716 4473 4465 13413 Face 10717 4344 4363 13414 Face 10718 4363 4485 13414 Face 10719 4485 4469 13414 Face 10720 4469 4344 13414 Face 10721 4561 4485 13415 Face 10722 4485 4446 13415 Face 10723 4446 4534 13415 Face 10724 4534 4561 13415 Face 10725 4440 4446 13416 Face 10726 4446 4363 13416 Face 10727 4363 4376 13416 Face 10728 4376 4440 13416 Face 10729 4448 4521 13417 Face 10730 4521 4525 13417 Face 10731 4525 4481 13417 Face 10732 4481 4448 13417 Face 10733 4541 4525 13418 Face 10734 4525 4565 13418 Face 10735 4565 4582 13418 Face 10736 4582 4541 13418 Face 10737 4539 4565 13419 Face 10738 4565 4521 13419 Face 10739 4521 4487 13419 Face 10740 4487 4539 13419 Face 10741 4629 4579 13420 Face 10742 4579 4592 13420 Face 10743 4592 4651 13420 Face 10744 4651 4629 13420 Face 10745 4594 4592 13421 Face 10746 4592 4546 13421 Face 10747 4546 4549 13421 Face 10748 4549 4594 13421 Face 10749 4497 4546 13422 Face 10750 4546 4533 13422 Face 10751 4533 4488 13422 Face 10752 4488 4497 13422 Face 10753 4559 4533 13423 Face 10754 4533 4579 13423 Face 10755 4579 4607 13423 Face 10756 4607 4559 13423 Face 10757 4530 4559 13424 Face 10758 4559 4646 13424 Face 10759 4646 4613 13424 Face 10760 4613 4530 13424 Face 10761 4753 4646 13425 Face 10762 4646 4681 13425 Face 10763 4681 4772 13425 Face 10764 4772 4753 13425 Face 10765 4709 4681 13426 Face 10766 4681 4607 13426 Face 10767 4607 4659 13426 Face 10768 4659 4709 13426 Face 10769 4732 4753 13427 Face 10770 4753 4897 13427 Face 10771 4897 4878 13427 Face 10772 4878 4732 13427 Face 10773 4962 4897 13428 Face 10774 4897 4936 13428 Face 10775 4936 5001 13428 Face 10776 5001 4962 13428 Face 10777 4963 4936 13429 Face 10778 4936 4772 13429 Face 10779 4772 4825 13429 Face 10780 4825 4963 13429 Face 10781 4941 4962 13430 Face 10782 4962 4980 13430 Face 10783 4980 4964 13430 Face 10784 4964 4941 13430 Face 10785 5034 4980 13431 Face 10786 4980 5001 13431 Face 10787 5001 5053 13431 Face 10788 5053 5034 13431 Face 10789 5019 5034 13432 Face 10790 5034 5129 13432 Face 10791 5129 5118 13432 Face 10792 5118 5019 13432 Face 10793 5260 5129 13433 Face 10794 5129 5151 13433 Face 10795 5151 5270 13433 Face 10796 5270 5260 13433 Face 10797 5155 5151 13434 Face 10798 5151 5053 13434 Face 10799 5053 5074 13434 Face 10800 5074 5155 13434 Face 10801 5245 5260 13435 Face 10802 5260 5443 13435 Face 10803 5443 5439 13435 Face 10804 5439 5245 13435 Face 10805 5603 5443 13436 Face 10806 5443 5448 13436 Face 10807 5448 5597 13436 Face 10808 5597 5603 13436 Face 10809 5453 5448 13437 Face 10810 5448 5270 13437 Face 10811 5270 5297 13437 Face 10812 5297 5453 13437 Face 10813 5592 5453 13438 Face 10814 5453 5466 13438 Face 10815 5466 5579 13438 Face 10816 5579 5592 13438 Face 10817 5477 5466 13439 Face 10818 5466 5354 13439 Face 10819 5354 5386 13439 Face 10820 5386 5477 13439 Face 10821 5282 5354 13440 Face 10822 5354 5297 13440 Face 10823 5297 5209 13440 Face 10824 5209 5282 13440 Face 10825 5198 5197 13441 Face 10826 5197 5249 13441 Face 10827 5249 5261 13441 Face 10828 5261 5198 13441 Face 10829 5265 5249 13442 Face 10830 5249 5257 13442 Face 10831 5257 5267 13442 Face 10832 5267 5265 13442 Face 10833 5216 5257 13443 Face 10834 5257 5208 13443 Face 10835 5208 5190 13443 Face 10836 5190 5216 13443 Face 10837 5175 5208 13444 Face 10838 5208 5197 13444 Face 10839 5197 5167 13444 Face 10840 5167 5175 13444 Face 10841 5568 5477 13445 Face 10842 5477 5472 13445 Face 10843 5472 5573 13445 Face 10844 5573 5568 13445 Face 10845 5471 5472 13446 Face 10846 5472 5376 13446 Face 10847 5376 5370 13446 Face 10848 5370 5471 13446 Face 10849 5302 5376 13447 Face 10850 5376 5386 13447 Face 10851 5386 5310 13447 Face 10852 5310 5302 13447 Face 10853 5206 5252 13448 Face 10854 5252 5267 13448 Face 10855 5267 5223 13448 Face 10856 5223 5206 13448 Face 10857 5279 5265 13449 Face 10858 5265 5252 13449 Face 10859 5252 5269 13449 Face 10860 5269 5279 13449 Face 10861 5102 5115 13450 Face 10862 5115 5200 13450 Face 10863 5200 5180 13450 Face 10864 5180 5102 13450 Face 10865 5269 5200 13451 Face 10866 5200 5227 13451 Face 10867 5227 5302 13451 Face 10868 5302 5269 13451 Face 10869 5234 5227 13452 Face 10870 5227 5112 13452 Face 10871 5112 5097 13452 Face 10872 5097 5234 13452 Face 10873 4951 5112 13453 Face 10874 5112 5115 13453 Face 10875 5115 4978 13453 Face 10876 4978 4951 13453 Face 10877 4859 4789 13454 Face 10878 4789 4978 13454 Face 10879 4978 5009 13454 Face 10880 5009 4859 13454 Face 10881 4895 4951 13455 Face 10882 4951 4761 13455 Face 10883 4761 4726 13455 Face 10884 4726 4895 13455 Face 10885 4651 4761 13456 Face 10886 4761 4789 13456 Face 10887 4789 4689 13456 Face 10888 4689 4651 13456 Face 10889 5574 5471 13457 Face 10890 5471 5468 13457 Face 10891 5468 5577 13457 Face 10892 5577 5574 13457 Face 10893 5482 5468 13458 Face 10894 5468 5366 13458 Face 10895 5366 5388 13458 Face 10896 5388 5482 13458 Face 10897 5218 5366 13459 Face 10898 5366 5370 13459 Face 10899 5370 5234 13459 Face 10900 5234 5218 13459 Face 10901 5563 5482 13460 Face 10902 5482 5481 13460 Face 10903 5481 5562 13460 Face 10904 5562 5563 13460 Face 10905 5331 5481 13461 Face 10906 5481 5388 13461 Face 10907 5388 5262 13461 Face 10908 5262 5331 13461 Face 10909 5262 5218 13462 Face 10910 5218 5072 13462 Face 10911 5072 5064 13462 Face 10912 5064 5262 13462 Face 10913 4866 5072 13463 Face 10914 5072 5097 13463 Face 10915 5097 4895 13463 Face 10916 4895 4866 13463 Face 10917 5379 5331 13464 Face 10918 5331 5079 13464 Face 10919 5079 5087 13464 Face 10920 5087 5379 13464 Face 10921 4828 5079 13465 Face 10922 5079 5064 13465 Face 10923 5064 4853 13465 Face 10924 4853 4828 13465 Face 10925 5094 5128 13466 Face 10926 5128 5398 13466 Face 10927 5398 5382 13466 Face 10928 5382 5094 13466 Face 10929 5654 5398 13467 Face 10930 5398 5416 13467 Face 10931 5416 5631 13467 Face 10932 5631 5654 13467 Face 10933 5425 5416 13468 Face 10934 5416 5183 13468 Face 10935 5183 5210 13468 Face 10936 5210 5425 13468 Face 10937 4983 5183 13469 Face 10938 5183 5128 13469 Face 10939 5128 4886 13469 Face 10940 4886 4983 13469 Face 10941 5231 5211 13470 Face 10942 5211 5426 13470 Face 10943 5426 5433 13470 Face 10944 5433 5231 13470 Face 10945 5620 5426 13471 Face 10946 5426 5415 13471 Face 10947 5415 5632 13471 Face 10948 5632 5620 13471 Face 10949 5414 5415 13472 Face 10950 5415 5181 13472 Face 10951 5181 5170 13472 Face 10952 5170 5414 13472 Face 10953 4966 5181 13473 Face 10954 5181 5211 13473 Face 10955 5211 5026 13473 Face 10956 5026 4966 13473 Face 10957 5166 5160 13474 Face 10958 5160 5409 13474 Face 10959 5409 5412 13474 Face 10960 5412 5166 13474 Face 10961 5642 5409 13475 Face 10962 5409 5403 13475 Face 10963 5403 5647 13475 Face 10964 5647 5642 13475 Face 10965 5410 5403 13476 Face 10966 5403 5150 13476 Face 10967 5150 5162 13476 Face 10968 5162 5410 13476 Face 10969 4898 5150 13477 Face 10970 5150 5160 13477 Face 10971 5160 4910 13477 Face 10972 4910 4898 13477 Face 10973 4853 4866 13478 Face 10974 4866 4630 13478 Face 10975 4630 4558 13478 Face 10976 4558 4853 13478 Face 10977 4451 4630 13479 Face 10978 4630 4648 13479 Face 10979 4648 4539 13479 Face 10980 4539 4451 13479 Face 10981 4582 4648 13480 Face 10982 4648 4726 13480 Face 10983 4726 4594 13480 Face 10984 4594 4582 13480 Face 10985 4817 4828 13481 Face 10986 4828 4532 13481 Face 10987 4532 4518 13481 Face 10988 4518 4817 13481 Face 10989 4404 4532 13482 Face 10990 4532 4558 13482 Face 10991 4558 4420 13482 Face 10992 4420 4404 13482 Face 10993 4531 4620 13483 Face 10994 4620 4886 13483 Face 10995 4886 4824 13483 Face 10996 4824 4531 13483 Face 10997 5032 4983 13484 Face 10998 4983 4765 13484 Face 10999 4765 4848 13484 Face 11000 4848 5032 13484 Face 11001 4449 4765 13485 Face 11002 4765 4620 13485 Face 11003 4620 4352 13485 Face 11004 4352 4449 13485 Face 11005 4871 4821 13486 Face 11006 4821 5026 13486 Face 11007 5026 5059 13486 Face 11008 5059 4871 13486 Face 11009 4934 4966 13487 Face 11010 4966 4717 13487 Face 11011 4717 4662 13487 Face 11012 4662 4934 13487 Face 11013 4405 4717 13488 Face 11014 4717 4821 13488 Face 11015 4821 4501 13488 Face 11016 4501 4405 13488 Face 11017 4652 4643 13489 Face 11018 4643 4910 13489 Face 11019 4910 4920 13489 Face 11020 4920 4652 13489 Face 11021 4919 4898 13490 Face 11022 4898 4640 13490 Face 11023 4640 4672 13490 Face 11024 4672 4919 13490 Face 11025 4381 4640 13491 Face 11026 4640 4643 13491 Face 11027 4643 4355 13491 Face 11028 4355 4381 13491 Face 11029 4347 4432 13492 Face 11030 4432 4487 13492 Face 11031 4487 4411 13492 Face 11032 4411 4347 13492 Face 11033 4420 4451 13493 Face 11034 4451 4432 13493 Face 11035 4432 4408 13493 Face 11036 4408 4420 13493 Face 11037 4305 4404 13494 Face 11038 4404 4408 13494 Face 11039 4408 4316 13494 Face 11040 4316 4305 13494 Face 11041 4125 4164 13495 Face 11042 4164 4352 13495 Face 11043 4352 4311 13495 Face 11044 4311 4125 13495 Face 11045 4527 4449 13496 Face 11046 4449 4230 13496 Face 11047 4230 4258 13496 Face 11048 4258 4527 13496 Face 11049 4028 4230 13497 Face 11050 4230 4164 13497 Face 11051 4164 4002 13497 Face 11052 4002 4028 13497 Face 11053 4297 4267 13498 Face 11054 4267 4501 13498 Face 11055 4501 4570 13498 Face 11056 4570 4297 13498 Face 11057 4356 4405 13499 Face 11058 4405 4177 13499 Face 11059 4177 4132 13499 Face 11060 4132 4356 13499 Face 11061 3996 4177 13500 Face 11062 4177 4267 13500 Face 11063 4267 4059 13500 Face 11064 4059 3996 13500 Face 11065 4129 4155 13501 Face 11066 4155 4355 13501 Face 11067 4355 4349 13501 Face 11068 4349 4129 13501 Face 11069 4429 4381 13502 Face 11070 4381 4202 13502 Face 11071 4202 4283 13502 Face 11072 4283 4429 13502 Face 11073 4004 4202 13503 Face 11074 4202 4155 13503 Face 11075 4155 3960 13503 Face 11076 3960 4004 13503 Face 11077 3989 3997 13504 Face 11078 3997 4195 13504 Face 11079 4195 4190 13504 Face 11080 4190 3989 13504 Face 11081 4304 4195 13505 Face 11082 4195 4098 13505 Face 11083 4098 4229 13505 Face 11084 4229 4304 13505 Face 11085 4024 4098 13506 Face 11086 4098 3997 13506 Face 11087 3997 3908 13506 Face 11088 3908 4024 13506 Face 11089 4163 4024 13507 Face 11090 4024 3974 13507 Face 11091 3974 4126 13507 Face 11092 4126 4163 13507 Face 11093 3959 3974 13508 Face 11094 3974 3846 13508 Face 11095 3846 3801 13508 Face 11096 3801 3959 13508 Face 11097 3705 3846 13509 Face 11098 3846 3908 13509 Face 11099 3908 3784 13509 Face 11100 3784 3705 13509 Face 11101 3822 3856 13510 Face 11102 3856 4002 13510 Face 11103 4002 3965 13510 Face 11104 3965 3822 13510 Face 11105 4058 4028 13511 Face 11106 4028 3891 13511 Face 11107 3891 3913 13511 Face 11108 3913 4058 13511 Face 11109 3779 3891 13512 Face 11110 3891 3856 13512 Face 11111 3856 3712 13512 Face 11112 3712 3779 13512 Face 11113 3929 3893 13513 Face 11114 3893 4059 13513 Face 11115 4059 4093 13513 Face 11116 4093 3929 13513 Face 11117 3945 3996 13514 Face 11118 3996 3817 13514 Face 11119 3817 3753 13514 Face 11120 3753 3945 13514 Face 11121 3671 3817 13515 Face 11122 3817 3893 13515 Face 11123 3893 3734 13515 Face 11124 3734 3671 13515 Face 11125 3735 3732 13516 Face 11126 3732 3960 13516 Face 11127 3960 3939 13516 Face 11128 3939 3735 13516 Face 11129 3548 3741 13517 Face 11130 3741 3732 13517 Face 11131 3732 3582 13517 Face 11132 3582 3548 13517 Face 11133 4390 4391 13518 Face 11134 4391 4153 13518 Face 11135 4153 4174 13518 Face 11136 4174 4390 13518 Face 11137 3909 4153 13519 Face 11138 4153 4148 13519 Face 11139 4148 3894 13519 Face 11140 3894 3909 13519 Face 11141 4412 4395 13520 Face 11142 4395 4217 13520 Face 11143 4217 4274 13520 Face 11144 4274 4412 13520 Face 11145 4007 4217 13521 Face 11146 4217 4174 13521 Face 11147 4174 3946 13521 Face 11148 3946 4007 13521 Face 11149 3580 3592 13522 Face 11150 3592 3894 13522 Face 11151 3894 3884 13522 Face 11152 3884 3580 13522 Face 11153 3946 3909 13523 Face 11154 3909 3622 13523 Face 11155 3622 3664 13523 Face 11156 3664 3946 13523 Face 11157 3410 3622 13524 Face 11158 3622 3592 13524 Face 11159 3592 3425 13524 Face 11160 3425 3410 13524 Face 11161 4069 4007 13525 Face 11162 4007 3733 13525 Face 11163 3733 3849 13525 Face 11164 3849 4069 13525 Face 11165 3528 3733 13526 Face 11166 3733 3664 13526 Face 11167 3664 3437 13526 Face 11168 3437 3528 13526 Face 11169 3437 3410 13527 Face 11170 3410 3233 13527 Face 11171 3233 3212 13527 Face 11172 3212 3437 13527 Face 11173 3072 3233 13528 Face 11174 3233 3367 13528 Face 11175 3367 3252 13528 Face 11176 3252 3072 13528 Face 11177 3423 3367 13529 Face 11178 3367 3425 13529 Face 11179 3425 3436 13529 Face 11180 3436 3423 13529 Face 11181 3138 3315 13530 Face 11182 3315 3212 13530 Face 11183 3212 3023 13530 Face 11184 3023 3138 13530 Face 11185 3598 3528 13531 Face 11186 3528 3315 13531 Face 11187 3315 3405 13531 Face 11188 3405 3598 13531 Face 11189 4463 4442 13532 Face 11190 4442 4310 13532 Face 11191 4310 4337 13532 Face 11192 4337 4463 13532 Face 11193 4133 4310 13533 Face 11194 4310 4274 13533 Face 11195 4274 4069 13533 Face 11196 4069 4133 13533 Face 11197 4180 4133 13534 Face 11198 4133 3917 13534 Face 11199 3917 3966 13534 Face 11200 3966 4180 13534 Face 11201 3680 3917 13535 Face 11202 3917 3849 13535 Face 11203 3849 3598 13535 Face 11204 3598 3680 13535 Face 11205 3700 3680 13536 Face 11206 3680 3474 13536 Face 11207 3474 3486 13536 Face 11208 3486 3700 13536 Face 11209 3295 3474 13537 Face 11210 3474 3405 13537 Face 11211 3405 3221 13537 Face 11212 3221 3295 13537 Face 11213 2993 3096 13538 Face 11214 3096 3221 13538 Face 11215 3221 3138 13538 Face 11216 3138 2993 13538 Face 11217 3344 3295 13539 Face 11218 3295 3177 13539 Face 11219 3177 3228 13539 Face 11220 3228 3344 13539 Face 11221 3056 3177 13540 Face 11222 3177 3096 13540 Face 11223 3096 2955 13540 Face 11224 2955 3056 13540 Face 11225 3847 3779 13541 Face 11226 3779 3740 13541 Face 11227 3740 3844 13541 Face 11228 3844 3847 13541 Face 11229 3686 3740 13542 Face 11230 3740 3615 13542 Face 11231 3615 3542 13542 Face 11232 3542 3686 13542 Face 11233 3561 3615 13543 Face 11234 3615 3712 13543 Face 11235 3712 3670 13543 Face 11236 3670 3561 13543 Face 11237 3763 3686 13544 Face 11238 3686 3605 13544 Face 11239 3605 3681 13544 Face 11240 3681 3763 13544 Face 11241 3579 3605 13545 Face 11242 3605 3469 13545 Face 11243 3469 3462 13545 Face 11244 3462 3579 13545 Face 11245 3377 3469 13546 Face 11246 3469 3542 13546 Face 11247 3542 3445 13546 Face 11248 3445 3377 13546 Face 11249 3647 3579 13547 Face 11250 3579 3593 13547 Face 11251 3593 3648 13547 Face 11252 3648 3647 13547 Face 11253 3651 3593 13548 Face 11254 3593 3522 13548 Face 11255 3522 3583 13548 Face 11256 3583 3651 13548 Face 11257 3451 3522 13549 Face 11258 3522 3462 13549 Face 11259 3462 3379 13549 Face 11260 3379 3451 13549 Face 11261 3687 3651 13550 Face 11262 3651 3734 13550 Face 11263 3734 3786 13550 Face 11264 3786 3687 13550 Face 11265 3626 3671 13551 Face 11266 3671 3583 13551 Face 11267 3583 3541 13551 Face 11268 3541 3626 13551 Face 11269 3590 3608 13552 Face 11270 3608 3784 13552 Face 11271 3784 3762 13552 Face 11272 3762 3590 13552 Face 11273 3662 3705 13553 Face 11274 3705 3608 13553 Face 11275 3608 3567 13553 Face 11276 3567 3662 13553 Face 11277 3264 3268 13554 Face 11278 3268 3388 13554 Face 11279 3388 3382 13554 Face 11280 3382 3264 13554 Face 11281 3419 3388 13555 Face 11282 3388 3299 13555 Face 11283 3299 3337 13555 Face 11284 3337 3419 13555 Face 11285 3197 3299 13556 Face 11286 3299 3268 13556 Face 11287 3268 3173 13556 Face 11288 3173 3197 13556 Face 11289 3064 3098 13557 Face 11290 3098 3248 13557 Face 11291 3248 3197 13557 Face 11292 3197 3064 13557 Face 11293 3336 3248 13558 Face 11294 3248 3323 13558 Face 11295 3323 3416 13558 Face 11296 3416 3336 13558 Face 11297 3371 3323 13559 Face 11298 3323 3161 13559 Face 11299 3161 3207 13559 Face 11300 3207 3371 13559 Face 11301 3143 3264 13560 Face 11302 3264 3228 13560 Face 11303 3228 3111 13560 Face 11304 3111 3143 13560 Face 11305 3486 3344 13561 Face 11306 3344 3382 13561 Face 11307 3382 3509 13561 Face 11308 3509 3486 13561 Face 11309 5640 5410 13562 Face 11310 5410 5417 13562 Face 11311 5417 5630 13562 Face 11312 5630 5640 13562 Face 11313 5421 5417 13563 Face 11314 5417 5186 13563 Face 11315 5186 5199 13563 Face 11316 5199 5421 13563 Face 11317 4974 5186 13564 Face 11318 5186 5162 13564 Face 11319 5162 4919 13564 Face 11320 4919 4974 13564 Face 11321 4996 4974 13565 Face 11322 4974 4735 13565 Face 11323 4735 4754 13565 Face 11324 4754 4996 13565 Face 11325 4475 4735 13566 Face 11326 4735 4672 13566 Face 11327 4672 4429 13566 Face 11328 4429 4475 13566 Face 11329 4491 4475 13567 Face 11330 4475 4283 13567 Face 11331 4283 4287 13567 Face 11332 4287 4491 13567 Face 11333 5195 5201 13568 Face 11334 5201 5422 13568 Face 11335 5422 5419 13568 Face 11336 5419 5195 13568 Face 11337 5624 5422 13569 Face 11338 5422 5428 13569 Face 11339 5428 5618 13569 Face 11340 5618 5624 13569 Face 11341 5434 5428 13570 Face 11342 5428 5219 13570 Face 11343 5219 5232 13570 Face 11344 5232 5434 13570 Face 11345 5031 5219 13571 Face 11346 5219 5201 13571 Face 11347 5201 5003 13571 Face 11348 5003 5031 13571 Face 11349 5612 5434 13572 Face 11350 5434 5437 13572 Face 11351 5437 5609 13572 Face 11352 5609 5612 13572 Face 11353 5447 5437 13573 Face 11354 5437 5241 13573 Face 11355 5241 5268 13573 Face 11356 5268 5447 13573 Face 11357 5085 5241 13574 Face 11358 5241 5232 13574 Face 11359 5232 5060 13574 Face 11360 5060 5085 13574 Face 11361 5598 5447 13575 Face 11362 5447 5455 13575 Face 11363 5455 5590 13575 Face 11364 5590 5598 13575 Face 11365 5404 5455 13576 Face 11366 5455 5300 13576 Face 11367 5300 5294 13576 Face 11368 5294 5404 13576 Face 11369 5189 5300 13577 Face 11370 5300 5268 13577 Face 11371 5268 5136 13577 Face 11372 5136 5189 13577 Face 11373 4746 4763 13578 Face 11374 4763 5003 13578 Face 11375 5003 4987 13578 Face 11376 4987 4746 13578 Face 11377 5060 5031 13579 Face 11378 5031 4813 13579 Face 11379 4813 4872 13579 Face 11380 4872 5060 13579 Face 11381 4550 4813 13580 Face 11382 4813 4763 13580 Face 11383 4763 4467 13580 Face 11384 4467 4550 13580 Face 11385 5136 5085 13581 Face 11386 5085 4935 13581 Face 11387 4935 5017 13581 Face 11388 5017 5136 13581 Face 11389 4771 4935 13582 Face 11390 4935 4872 13582 Face 11391 4872 4664 13582 Face 11392 4664 4771 13582 Face 11393 5294 5189 13583 Face 11394 5189 5135 13583 Face 11395 5135 5213 13583 Face 11396 5213 5294 13583 Face 11397 5080 5135 13584 Face 11398 5135 5017 13584 Face 11399 5017 4922 13584 Face 11400 4922 5080 13584 Face 11401 4287 4288 13585 Face 11402 4288 4467 13585 Face 11403 4467 4484 13585 Face 11404 4484 4287 13585 Face 11405 4664 4550 13586 Face 11406 4550 4342 13586 Face 11407 4342 4444 13586 Face 11408 4444 4664 13586 Face 11409 4243 4342 13587 Face 11410 4342 4288 13587 Face 11411 4288 4139 13587 Face 11412 4139 4243 13587 Face 11413 4922 4771 13588 Face 11414 4771 4628 13588 Face 11415 4628 4844 13588 Face 11416 4844 4922 13588 Face 11417 4551 4628 13589 Face 11418 4628 4444 13589 Face 11419 4444 4353 13589 Face 11420 4353 4551 13589 Face 11421 5213 5080 13590 Face 11422 5080 5042 13590 Face 11423 5042 5194 13590 Face 11424 5194 5213 13590 Face 11425 5040 5042 13591 Face 11426 5042 4844 13591 Face 11427 4844 4811 13591 Face 11428 4811 5040 13591 Face 11429 4353 4243 13592 Face 11430 4243 4172 13592 Face 11431 4172 4326 13592 Face 11432 4326 4353 13592 Face 11433 4150 4172 13593 Face 11434 4172 4039 13593 Face 11435 4039 4003 13593 Face 11436 4003 4150 13593 Face 11437 4811 4551 13594 Face 11438 4551 4563 13594 Face 11439 4563 4860 13594 Face 11440 4860 4811 13594 Face 11441 4593 4563 13595 Face 11442 4563 4326 13595 Face 11443 4326 4322 13595 Face 11444 4322 4593 13595 Face 11445 5194 5040 13596 Face 11446 5040 5071 13596 Face 11447 5071 5229 13596 Face 11448 5229 5194 13596 Face 11449 5057 5071 13597 Face 11450 5071 4860 13597 Face 11451 4860 4845 13597 Face 11452 4845 5057 13597 Face 11453 4322 4150 13598 Face 11454 4150 4171 13598 Face 11455 4171 4345 13598 Face 11456 4345 4322 13598 Face 11457 4275 4171 13599 Face 11458 4171 4015 13599 Face 11459 4015 4100 13599 Face 11460 4100 4275 13599 Face 11461 4845 4593 13600 Face 11462 4593 4637 13600 Face 11463 4637 4873 13600 Face 11464 4873 4845 13600 Face 11465 4718 4637 13601 Face 11466 4637 4345 13601 Face 11467 4345 4430 13601 Face 11468 4430 4718 13601 Face 11469 5090 5057 13602 Face 11470 5057 4873 13602 Face 11471 4873 4900 13602 Face 11472 4900 5090 13602 Face 11473 4430 4275 13603 Face 11474 4275 4414 13603 Face 11475 4414 4634 13603 Face 11476 4634 4430 13603 Face 11477 4673 4414 13604 Face 11478 4414 4279 13604 Face 11479 4279 4455 13604 Face 11480 4455 4673 13604 Face 11481 4900 4718 13605 Face 11482 4718 4836 13605 Face 11483 4836 4968 13605 Face 11484 4968 4900 13605 Face 11485 4954 4836 13606 Face 11486 4836 4634 13606 Face 11487 4634 4837 13606 Face 11488 4837 4954 13606 Face 11489 5169 5090 13607 Face 11490 5090 4968 13607 Face 11491 4968 5065 13607 Face 11492 5065 5169 13607 Face 11493 4837 4673 13608 Face 11494 4673 4906 13608 Face 11495 4906 5005 13608 Face 11496 5005 4837 13608 Face 11497 5142 4906 13609 Face 11498 4906 4797 13609 Face 11499 4797 5089 13609 Face 11500 5089 5142 13609 Face 11501 5065 4954 13610 Face 11502 4954 5096 13610 Face 11503 5096 5171 13610 Face 11504 5171 5065 13610 Face 11505 5243 5096 13611 Face 11506 5096 5005 13611 Face 11507 5005 5184 13611 Face 11508 5184 5243 13611 Face 11509 5229 5169 13612 Face 11510 5169 5226 13612 Face 11511 5226 5306 13612 Face 11512 5306 5229 13612 Face 11513 5330 5226 13613 Face 11514 5226 5171 13613 Face 11515 5171 5296 13613 Face 11516 5296 5330 13613 Face 11517 5184 5142 13614 Face 11518 5142 5378 13614 Face 11519 5378 5405 13614 Face 11520 5405 5184 13614 Face 11521 5627 5378 13615 Face 11522 5378 5362 13615 Face 11523 5362 5634 13615 Face 11524 5634 5627 13615 Face 11525 5296 5243 13616 Face 11526 5243 5432 13616 Face 11527 5432 5452 13616 Face 11528 5452 5296 13616 Face 11529 5599 5432 13617 Face 11530 5432 5405 13617 Face 11531 5405 5613 13617 Face 11532 5613 5599 13617 Face 11533 5306 5330 13618 Face 11534 5330 5461 13618 Face 11535 5461 5411 13618 Face 11536 5411 5306 13618 Face 11537 5584 5461 13619 Face 11538 5461 5452 13619 Face 11539 5452 5593 13619 Face 11540 5593 5584 13619 Face 11541 3660 3628 13620 Face 11542 3628 3907 13620 Face 11543 3907 3932 13620 Face 11544 3932 3660 13620 Face 11545 4175 3907 13621 Face 11546 3907 3878 13621 Face 11547 3878 4157 13621 Face 11548 4157 4175 13621 Face 11549 3864 3878 13622 Face 11550 3878 3591 13622 Face 11551 3591 3576 13622 Face 11552 3576 3864 13622 Face 11553 3415 3591 13623 Face 11554 3591 3628 13623 Face 11555 3628 3418 13623 Face 11556 3418 3415 13623 Face 11557 3339 3289 13624 Face 11558 3289 3418 13624 Face 11559 3418 3485 13624 Face 11560 3485 3339 13624 Face 11561 3438 3415 13625 Face 11562 3415 3365 13625 Face 11563 3365 3424 13625 Face 11564 3424 3438 13625 Face 11565 3252 3365 13626 Face 11566 3365 3230 13626 Face 11567 3230 3089 13626 Face 11568 3089 3252 13626 Face 11569 3110 3230 13627 Face 11570 3230 3289 13627 Face 11571 3289 3176 13627 Face 11572 3176 3110 13627 Face 11573 3183 3128 13628 Face 11574 3128 3176 13628 Face 11575 3176 3240 13628 Face 11576 3240 3183 13628 Face 11577 2971 3110 13629 Face 11578 3110 3087 13629 Face 11579 3087 2915 13629 Face 11580 2915 2971 13629 Face 11581 3073 3087 13630 Face 11582 3087 3128 13630 Face 11583 3128 3101 13630 Face 11584 3101 3073 13630 Face 11585 3132 3079 13631 Face 11586 3079 3108 13631 Face 11587 3108 3160 13631 Face 11588 3160 3132 13631 Face 11589 3163 3108 13632 Face 11590 3108 3101 13632 Face 11591 3101 3158 13632 Face 11592 3158 3163 13632 Face 11593 2909 3073 13633 Face 11594 3073 3067 13633 Face 11595 3067 2981 13633 Face 11596 2981 2909 13633 Face 11597 3053 3067 13634 Face 11598 3067 3079 13634 Face 11599 3079 3063 13634 Face 11600 3063 3053 13634 Face 11601 3488 3479 13635 Face 11602 3479 3346 13635 Face 11603 3346 3357 13635 Face 11604 3357 3488 13635 Face 11605 3238 3346 13636 Face 11606 3346 3345 13636 Face 11607 3345 3231 13636 Face 11608 3231 3238 13636 Face 11609 3347 3345 13637 Face 11610 3345 3478 13637 Face 11611 3478 3476 13637 Face 11612 3476 3347 13637 Face 11613 3617 3478 13638 Face 11614 3478 3479 13638 Face 11615 3479 3610 13638 Face 11616 3610 3617 13638 Face 11617 3504 3631 13639 Face 11618 3631 3618 13639 Face 11619 3618 3488 13639 Face 11620 3488 3504 13639 Face 11621 3610 3618 13640 Face 11622 3618 3778 13640 Face 11623 3778 3797 13640 Face 11624 3797 3610 13640 Face 11625 3951 3778 13641 Face 11626 3778 3771 13641 Face 11627 3771 3944 13641 Face 11628 3944 3951 13641 Face 11629 4081 4088 13642 Face 11630 4088 3962 13642 Face 11631 3962 3951 13642 Face 11632 3951 4081 13642 Face 11633 3797 3962 13643 Face 11634 3962 3968 13643 Face 11635 3968 3807 13643 Face 11636 3807 3797 13643 Face 11637 3978 3968 13644 Face 11638 3968 4101 13644 Face 11639 4101 4106 13644 Face 11640 4106 3978 13644 Face 11641 4241 4101 13645 Face 11642 4101 4088 13645 Face 11643 4088 4235 13645 Face 11644 4235 4241 13645 Face 11645 4334 4343 13646 Face 11646 4343 4235 13646 Face 11647 4235 4226 13646 Face 11648 4226 4334 13646 Face 11649 4245 4241 13647 Face 11650 4241 4360 13647 Face 11651 4360 4368 13647 Face 11652 4368 4245 13647 Face 11653 4502 4360 13648 Face 11654 4360 4343 13648 Face 11655 4343 4480 13648 Face 11656 4480 4502 13648 Face 11657 4519 4502 13649 Face 11658 4502 4692 13649 Face 11659 4692 4701 13649 Face 11660 4701 4519 13649 Face 11661 4644 4671 13650 Face 11662 4671 4480 13650 Face 11663 4480 4456 13650 Face 11664 4456 4644 13650 Face 11665 4564 4573 13651 Face 11666 4573 4815 13651 Face 11667 4815 4801 13651 Face 11668 4801 4564 13651 Face 11669 4788 4818 13652 Face 11670 4818 4583 13652 Face 11671 4583 4578 13652 Face 11672 4578 4788 13652 Face 11673 4388 4583 13653 Face 11674 4583 4573 13653 Face 11675 4573 4373 13653 Face 11676 4373 4388 13653 Face 11677 4730 4751 13654 Face 11678 4751 4553 13654 Face 11679 4553 4542 13654 Face 11680 4542 4730 13654 Face 11681 4387 4553 13655 Face 11682 4553 4578 13655 Face 11683 4578 4392 13655 Face 11684 4392 4387 13655 Face 11685 4231 4239 13656 Face 11686 4239 4373 13656 Face 11687 4373 4367 13656 Face 11688 4367 4231 13656 Face 11689 4392 4388 13657 Face 11690 4388 4248 13657 Face 11691 4248 4254 13657 Face 11692 4254 4392 13657 Face 11693 4082 4248 13658 Face 11694 4248 4239 13658 Face 11695 4239 4067 13658 Face 11696 4067 4082 13658 Face 11697 4382 4387 13659 Face 11698 4387 4256 13659 Face 11699 4256 4253 13659 Face 11700 4253 4382 13659 Face 11701 4110 4256 13660 Face 11702 4256 4254 13660 Face 11703 4254 4102 13660 Face 11704 4102 4110 13660 Face 11705 3869 3888 13661 Face 11706 3888 4067 13661 Face 11707 4067 4052 13661 Face 11708 4052 3869 13661 Face 11709 4102 4082 13662 Face 11710 4082 3925 13662 Face 11711 3925 3956 13662 Face 11712 3956 4102 13662 Face 11713 3697 3925 13663 Face 11714 3925 3888 13663 Face 11715 3888 3653 13663 Face 11716 3653 3697 13663 Face 11717 4117 4110 13664 Face 11718 4110 3967 13664 Face 11719 3967 3982 13664 Face 11720 3982 4117 13664 Face 11721 3774 3967 13665 Face 11722 3967 3956 13665 Face 11723 3956 3731 13665 Face 11724 3731 3774 13665 Face 11725 3393 3412 13666 Face 11726 3412 3653 13666 Face 11727 3653 3630 13666 Face 11728 3630 3393 13666 Face 11729 3731 3697 13667 Face 11730 3697 3448 13667 Face 11731 3448 3510 13667 Face 11732 3510 3731 13667 Face 11733 3246 3448 13668 Face 11734 3448 3412 13668 Face 11735 3412 3203 13668 Face 11736 3203 3246 13668 Face 11737 3818 3774 13669 Face 11738 3774 3578 13669 Face 11739 3578 3609 13669 Face 11740 3609 3818 13669 Face 11741 3417 3578 13670 Face 11742 3578 3510 13670 Face 11743 3510 3320 13670 Face 11744 3320 3417 13670 Face 11745 2954 3038 13671 Face 11746 3038 3203 13671 Face 11747 3203 3151 13671 Face 11748 3151 2954 13671 Face 11749 3320 3246 13672 Face 11750 3246 3105 13672 Face 11751 3105 3192 13672 Face 11752 3192 3320 13672 Face 11753 2936 3105 13673 Face 11754 3105 3038 13673 Face 11755 3038 2856 13673 Face 11756 2856 2936 13673 Face 11757 3467 3417 13674 Face 11758 3417 3291 13674 Face 11759 3291 3338 13674 Face 11760 3338 3467 13674 Face 11761 3170 3291 13675 Face 11762 3291 3192 13675 Face 11763 3192 3062 13675 Face 11764 3062 3170 13675 Face 11765 2702 2732 13676 Face 11766 2732 2856 13676 Face 11767 2856 2819 13676 Face 11768 2819 2702 13676 Face 11769 3062 2936 13677 Face 11770 2936 2806 13677 Face 11771 2806 2894 13677 Face 11772 2894 3062 13677 Face 11773 2739 2806 13678 Face 11774 2806 2732 13678 Face 11775 2732 2659 13678 Face 11776 2659 2739 13678 Face 11777 3216 3170 13679 Face 11778 3170 3039 13679 Face 11779 3039 3102 13679 Face 11780 3102 3216 13679 Face 11781 2956 3039 13680 Face 11782 3039 2894 13680 Face 11783 2894 2833 13680 Face 11784 2833 2956 13680 Face 11785 2571 2622 13681 Face 11786 2622 2659 13681 Face 11787 2659 2620 13681 Face 11788 2620 2571 13681 Face 11789 2833 2739 13682 Face 11790 2739 2720 13682 Face 11791 2720 2822 13682 Face 11792 2822 2833 13682 Face 11793 2690 2720 13683 Face 11794 2720 2622 13683 Face 11795 2622 2578 13683 Face 11796 2578 2690 13683 Face 11797 3032 2956 13684 Face 11798 2956 2934 13684 Face 11799 2934 3022 13684 Face 11800 3022 3032 13684 Face 11801 2919 2934 13685 Face 11802 2934 2822 13685 Face 11803 2822 2803 13685 Face 11804 2803 2919 13685 Face 11805 2486 2542 13686 Face 11806 2542 2578 13686 Face 11807 2578 2528 13686 Face 11808 2528 2486 13686 Face 11809 2663 2690 13687 Face 11810 2690 2542 13687 Face 11811 2542 2522 13687 Face 11812 2522 2663 13687 Face 11813 2915 2909 13688 Face 11814 2909 2748 13688 Face 11815 2748 2719 13688 Face 11816 2719 2915 13688 Face 11817 2582 2748 13689 Face 11818 2748 2803 13689 Face 11819 2803 2663 13689 Face 11820 2663 2582 13689 Face 11821 3024 2919 13690 Face 11822 2919 2981 13690 Face 11823 2981 3041 13690 Face 11824 3041 3024 13690 Face 11825 2480 2582 13691 Face 11826 2582 2440 13691 Face 11827 2440 2365 13691 Face 11828 2365 2480 13691 Face 11829 2371 2440 13692 Face 11830 2440 2522 13692 Face 11831 2522 2439 13692 Face 11832 2439 2371 13692 Face 11833 3089 2971 13693 Face 11834 2971 2786 13693 Face 11835 2786 2883 13693 Face 11836 2883 3089 13693 Face 11837 2662 2786 13694 Face 11838 2786 2719 13694 Face 11839 2719 2583 13694 Face 11840 2583 2662 13694 Face 11841 2853 2993 13695 Face 11842 2993 2857 13695 Face 11843 2857 2767 13695 Face 11844 2767 2853 13695 Face 11845 2755 2857 13696 Face 11846 2857 3023 13696 Face 11847 3023 2872 13696 Face 11848 2872 2755 13696 Face 11849 2955 2853 13697 Face 11850 2853 2773 13697 Face 11851 2773 2837 13697 Face 11852 2837 2955 13697 Face 11853 2614 2689 13698 Face 11854 2689 2767 13698 Face 11855 2767 2676 13698 Face 11856 2676 2614 13698 Face 11857 2883 2756 13699 Face 11858 2756 2872 13699 Face 11859 2872 3072 13699 Face 11860 3072 2883 13699 Face 11861 2676 2755 13700 Face 11862 2755 2646 13700 Face 11863 2646 2573 13700 Face 11864 2573 2676 13700 Face 11865 2549 2646 13701 Face 11866 2646 2756 13701 Face 11867 2756 2662 13701 Face 11868 2662 2549 13701 Face 11869 2451 2529 13702 Face 11870 2529 2573 13702 Face 11871 2573 2470 13702 Face 11872 2470 2451 13702 Face 11873 2470 2549 13703 Face 11874 2549 2454 13703 Face 11875 2454 2384 13703 Face 11876 2384 2470 13703 Face 11877 2367 2454 13704 Face 11878 2454 2583 13704 Face 11879 2583 2480 13704 Face 11880 2480 2367 13704 Face 11881 2324 2388 13705 Face 11882 2388 2384 13705 Face 11883 2384 2301 13705 Face 11884 2301 2324 13705 Face 11885 2301 2367 13706 Face 11886 2367 2285 13706 Face 11887 2285 2259 13706 Face 11888 2259 2301 13706 Face 11889 2263 2285 13707 Face 11890 2285 2365 13707 Face 11891 2365 2303 13707 Face 11892 2303 2263 13707 Face 11893 2415 2324 13708 Face 11894 2324 2282 13708 Face 11895 2282 2383 13708 Face 11896 2383 2415 13708 Face 11897 2284 2282 13709 Face 11898 2282 2259 13709 Face 11899 2259 2258 13709 Face 11900 2258 2284 13709 Face 11901 2935 2927 13710 Face 11902 2927 3151 13710 Face 11903 3151 3165 13710 Face 11904 3165 2935 13710 Face 11905 2819 2954 13711 Face 11906 2954 2927 13711 Face 11907 2927 2805 13711 Face 11908 2805 2819 13711 Face 11909 2620 2702 13712 Face 11910 2702 2704 13712 Face 11911 2704 2625 13712 Face 11912 2625 2620 13712 Face 11913 2687 2704 13713 Face 11914 2704 2805 13713 Face 11915 2805 2784 13713 Face 11916 2784 2687 13713 Face 11917 2528 2571 13714 Face 11918 2571 2576 13714 Face 11919 2576 2532 13714 Face 11920 2532 2528 13714 Face 11921 2552 2576 13715 Face 11922 2576 2625 13715 Face 11923 2625 2615 13715 Face 11924 2615 2552 13715 Face 11925 2439 2486 13716 Face 11926 2486 2495 13716 Face 11927 2495 2452 13716 Face 11928 2452 2439 13716 Face 11929 2471 2495 13717 Face 11930 2495 2532 13717 Face 11931 2532 2499 13717 Face 11932 2499 2471 13717 Face 11933 2303 2371 13718 Face 11934 2371 2396 13718 Face 11935 2396 2346 13718 Face 11936 2346 2303 13718 Face 11937 2392 2396 13719 Face 11938 2396 2452 13719 Face 11939 2452 2437 13719 Face 11940 2437 2392 13719 Face 11941 2258 2263 13720 Face 11942 2263 2346 13720 Face 11943 2346 2337 13720 Face 11944 2337 2258 13720 Face 11945 2348 2284 13721 Face 11946 2284 2337 13721 Face 11947 2337 2361 13721 Face 11948 2361 2348 13721 Face 11949 2317 2372 13722 Face 11950 2372 2361 13722 Face 11951 2361 2351 13722 Face 11952 2351 2317 13722 Face 11953 2383 2348 13723 Face 11954 2348 2414 13723 Face 11955 2414 2453 13723 Face 11956 2453 2383 13723 Face 11957 2434 2414 13724 Face 11958 2414 2372 13724 Face 11959 2372 2362 13724 Face 11960 2362 2434 13724 Face 11961 2448 2398 13725 Face 11962 2398 2413 13725 Face 11963 2413 2472 13725 Face 11964 2472 2448 13725 Face 11965 2273 2413 13726 Face 11966 2413 2349 13726 Face 11967 2349 2260 13726 Face 11968 2260 2273 13726 Face 11969 2289 2349 13727 Face 11970 2349 2340 13727 Face 11971 2340 2298 13727 Face 11972 2298 2289 13727 Face 11973 2338 2340 13728 Face 11974 2340 2398 13728 Face 11975 2398 2390 13728 Face 11976 2390 2338 13728 Face 11977 2509 2547 13729 Face 11978 2547 2472 13729 Face 11979 2472 2424 13729 Face 11980 2424 2509 13729 Face 11981 2469 2448 13730 Face 11982 2448 2547 13730 Face 11983 2547 2566 13730 Face 11984 2566 2469 13730 Face 11985 2770 2886 13731 Face 11986 2886 2840 13731 Face 11987 2840 2737 13731 Face 11988 2737 2770 13731 Face 11989 2780 2840 13732 Face 11990 2840 2953 13732 Face 11991 2953 2843 13732 Face 11992 2843 2780 13732 Face 11993 3086 2953 13733 Face 11994 2953 3075 13733 Face 11995 3075 3208 13733 Face 11996 3208 3086 13733 Face 11997 3157 3075 13734 Face 11998 3075 2886 13734 Face 11999 2886 2961 13734 Face 12000 2961 3157 13734 Face 12001 3296 3157 13735 Face 12002 3157 3162 13735 Face 12003 3162 3330 13735 Face 12004 3330 3296 13735 Face 12005 2575 2512 13736 Face 12006 2512 2489 13736 Face 12007 2489 2527 13736 Face 12008 2527 2575 13736 Face 12009 2494 2489 13737 Face 12010 2489 2453 13737 Face 12011 2453 2475 13737 Face 12012 2475 2494 13737 Face 12013 2604 2594 13738 Face 12014 2594 2537 13738 Face 12015 2537 2531 13738 Face 12016 2531 2604 13738 Face 12017 2488 2537 13739 Face 12018 2537 2527 13739 Face 12019 2527 2494 13739 Face 12020 2494 2488 13739 Face 12021 2446 2515 13740 Face 12022 2515 2531 13740 Face 12023 2531 2473 13740 Face 12024 2473 2446 13740 Face 12025 2591 2603 13741 Face 12026 2603 2515 13741 Face 12027 2515 2497 13741 Face 12028 2497 2591 13741 Face 12029 2539 2567 13742 Face 12030 2567 2484 13742 Face 12031 2484 2460 13742 Face 12032 2460 2539 13742 Face 12033 2432 2484 13743 Face 12034 2484 2497 13743 Face 12035 2497 2433 13743 Face 12036 2433 2432 13743 Face 12037 2373 2421 13744 Face 12038 2421 2460 13744 Face 12039 2460 2411 13744 Face 12040 2411 2373 13744 Face 12041 2409 2477 13745 Face 12042 2477 2421 13745 Face 12043 2421 2376 13745 Face 12044 2376 2409 13745 Face 12045 2292 2310 13746 Face 12046 2310 2376 13746 Face 12047 2376 2328 13746 Face 12048 2328 2292 13746 Face 12049 2315 2307 13747 Face 12050 2307 2310 13747 Face 12051 2310 2308 13747 Face 12052 2308 2315 13747 Face 12053 2298 2338 13748 Face 12054 2338 2308 13748 Face 12055 2308 2277 13748 Face 12056 2277 2298 13748 Face 12057 2503 2404 13749 Face 12058 2404 2390 13749 Face 12059 2390 2469 13749 Face 12060 2469 2503 13749 Face 12061 2693 2599 13750 Face 12062 2599 2566 13750 Face 12063 2566 2650 13750 Face 12064 2650 2693 13750 Face 12065 2667 2735 13751 Face 12066 2735 2650 13751 Face 12067 2650 2606 13751 Face 12068 2606 2667 13751 Face 12069 2920 2812 13752 Face 12070 2812 2735 13752 Face 12071 2735 2824 13752 Face 12072 2824 2920 13752 Face 12073 2843 2928 13753 Face 12074 2928 2824 13753 Face 12075 2824 2758 13753 Face 12076 2758 2843 13753 Face 12077 3186 3049 13754 Face 12078 3049 2928 13754 Face 12079 2928 3086 13754 Face 12080 3086 3186 13754 Face 12081 3463 3333 13755 Face 12082 3333 3208 13755 Face 12083 3208 3296 13755 Face 12084 3296 3463 13755 Face 12085 2417 2407 13756 Face 12086 2407 2636 13756 Face 12087 2636 2649 13756 Face 12088 2649 2417 13756 Face 12089 2381 2483 13757 Face 12090 2483 2407 13757 Face 12091 2407 2293 13757 Face 12092 2293 2381 13757 Face 12093 2239 2305 13758 Face 12094 2305 2264 13758 Face 12095 2264 2233 13758 Face 12096 2233 2239 13758 Face 12097 2236 2264 13759 Face 12098 2264 2293 13759 Face 12099 2293 2240 13759 Face 12100 2240 2236 13759 Face 12101 2208 2212 13760 Face 12102 2212 2233 13760 Face 12103 2233 2221 13760 Face 12104 2221 2208 13760 Face 12105 2158 2177 13761 Face 12106 2177 2212 13761 Face 12107 2212 2182 13761 Face 12108 2182 2158 13761 Face 12109 2192 2168 13762 Face 12110 2168 2189 13762 Face 12111 2189 2187 13762 Face 12112 2187 2192 13762 Face 12113 2195 2189 13763 Face 12114 2189 2182 13763 Face 12115 2182 2193 13763 Face 12116 2193 2195 13763 Face 12117 2148 2180 13764 Face 12118 2180 2187 13764 Face 12119 2187 2173 13764 Face 12120 2173 2148 13764 Face 12121 2323 2225 13765 Face 12122 2225 2180 13765 Face 12123 2180 2248 13765 Face 12124 2248 2323 13765 Face 12125 2326 2399 13766 Face 12126 2399 2248 13766 Face 12127 2248 2203 13766 Face 12128 2203 2326 13766 Face 12129 2524 2465 13767 Face 12130 2465 2399 13767 Face 12131 2399 2450 13767 Face 12132 2450 2524 13767 Face 12133 2499 2520 13768 Face 12134 2520 2443 13768 Face 12135 2443 2436 13768 Face 12136 2436 2499 13768 Face 12137 2402 2443 13769 Face 12138 2443 2450 13769 Face 12139 2450 2401 13769 Face 12140 2401 2402 13769 Face 12141 2437 2471 13770 Face 12142 2471 2425 13770 Face 12143 2425 2405 13770 Face 12144 2405 2437 13770 Face 12145 2395 2425 13771 Face 12146 2425 2436 13771 Face 12147 2436 2402 13771 Face 12148 2402 2395 13771 Face 12149 2319 2363 13772 Face 12150 2363 2405 13772 Face 12151 2405 2370 13772 Face 12152 2370 2319 13772 Face 12153 2351 2392 13773 Face 12154 2392 2363 13773 Face 12155 2363 2314 13773 Face 12156 2314 2351 13773 Face 12157 2227 2268 13774 Face 12158 2268 2314 13774 Face 12159 2314 2271 13774 Face 12160 2271 2227 13774 Face 12161 2281 2317 13775 Face 12162 2317 2268 13775 Face 12163 2268 2231 13775 Face 12164 2231 2281 13775 Face 12165 3521 3464 13776 Face 12166 3464 3582 13776 Face 12167 3582 3603 13776 Face 12168 3603 3521 13776 Face 12169 3258 3378 13777 Face 12170 3378 3464 13777 Face 12171 3464 3391 13777 Face 12172 3391 3258 13777 Face 12173 3450 3371 13778 Face 12174 3371 3391 13778 Face 12175 3391 3460 13778 Face 12176 3460 3450 13778 Face 12177 4990 5048 13779 Face 12178 5048 4947 13779 Face 12179 4947 4893 13779 Face 12180 4893 4990 13779 Face 12181 4925 4947 13780 Face 12182 4947 5075 13780 Face 12183 5075 5044 13780 Face 12184 5044 4925 13780 Face 12185 5130 5075 13781 Face 12186 5075 5048 13781 Face 12187 5048 5106 13781 Face 12188 5106 5130 13781 Face 12189 5646 5404 13782 Face 12190 5404 5411 13782 Face 12191 5411 5638 13782 Face 12192 5638 5646 13782 Face 12193 4656 4187 13783 Face 12194 4187 4149 13783 Face 12195 4149 4632 13783 Face 12196 4632 4656 13783 Face 12197 4434 4149 13784 Face 12198 4149 3972 13784 Face 12199 3972 4206 13784 Face 12200 4206 4434 13784 Face 12201 3981 3972 13785 Face 12202 3972 3754 13785 Face 12203 3754 3723 13785 Face 12204 3723 3981 13785 Face 12205 3562 3754 13786 Face 12206 3754 3627 13786 Face 12207 3627 3455 13786 Face 12208 3455 3562 13786 Face 12209 3363 3627 13787 Face 12210 3627 3544 13787 Face 12211 3544 3281 13787 Face 12212 3281 3363 13787 Face 12213 3244 3544 13788 Face 12214 3544 3537 13788 Face 12215 3537 3262 13788 Face 12216 3262 3244 13788 Face 12217 3282 3537 13789 Face 12218 3537 3573 13789 Face 12219 3573 3314 13789 Face 12220 3314 3282 13789 Face 12221 3398 3573 13790 Face 12222 3573 3693 13790 Face 12223 3693 3520 13790 Face 12224 3520 3398 13790 Face 12225 3639 3693 13791 Face 12226 3693 3872 13791 Face 12227 3872 3782 13791 Face 12228 3782 3639 13791 Face 12229 3940 3872 13792 Face 12230 3872 4016 13792 Face 12231 4016 4072 13792 Face 12232 4072 3940 13792 Face 12233 4204 4016 13793 Face 12234 4016 4122 13793 Face 12235 4122 4312 13793 Face 12236 4312 4204 13793 Face 12237 4417 4122 13794 Face 12238 4122 4187 13794 Face 12239 4187 4567 13794 Face 12240 4567 4417 13794 Face 12241 4512 4495 13795 Face 12242 4495 4157 13795 Face 12243 4157 4152 13795 Face 12244 4152 4512 13795 Face 12245 4189 4175 13796 Face 12246 4175 4486 13796 Face 12247 4486 4471 13796 Face 12248 4471 4189 13796 Face 12249 3123 3132 13797 Face 12250 3132 3231 13797 Face 12251 3231 3224 13797 Face 12252 3224 3123 13797 Face 12253 3261 3238 13798 Face 12254 3238 3160 13798 Face 12255 3160 3196 13798 Face 12256 3196 3261 13798 Face 12257 3984 4207 13799 Face 12258 4207 4206 13799 Face 12259 4206 3981 13799 Face 12260 3981 3984 13799 Face 12261 4632 4434 13800 Face 12262 4434 4435 13800 Face 12263 4435 4633 13800 Face 12264 4633 4632 13800 Face 12265 4567 4656 13801 Face 12266 4656 4657 13801 Face 12267 4657 4568 13801 Face 12268 4568 4567 13801 Face 12269 4312 4417 13802 Face 12270 4417 4418 13802 Face 12271 4418 4313 13802 Face 12272 4313 4312 13802 Face 12273 4072 4204 13803 Face 12274 4204 4205 13803 Face 12275 4205 4073 13803 Face 12276 4073 4072 13803 Face 12277 3782 3940 13804 Face 12278 3940 3942 13804 Face 12279 3942 3791 13804 Face 12280 3791 3782 13804 Face 12281 3520 3639 13805 Face 12282 3639 3644 13805 Face 12283 3644 3524 13805 Face 12284 3524 3520 13805 Face 12285 3314 3398 13806 Face 12286 3398 3402 13806 Face 12287 3402 3318 13806 Face 12288 3318 3314 13806 Face 12289 3262 3282 13807 Face 12290 3282 3287 13807 Face 12291 3287 3263 13807 Face 12292 3263 3262 13807 Face 12293 3281 3244 13808 Face 12294 3244 3245 13808 Face 12295 3245 3283 13808 Face 12296 3283 3281 13808 Face 12297 3455 3363 13809 Face 12298 3363 3370 13809 Face 12299 3370 3461 13809 Face 12300 3461 3455 13809 Face 12301 3723 3562 13810 Face 12302 3562 3564 13810 Face 12303 3564 3726 13810 Face 12304 3726 3723 13810 Face 12305 4226 4081 13811 Face 12306 4081 4079 13811 Face 12307 4079 4218 13811 Face 12308 4218 4226 13811 Face 12309 4456 4334 13812 Face 12310 4334 4321 13812 Face 12311 4321 4438 13812 Face 12312 4438 4456 13812 Face 12313 4721 4644 13813 Face 12314 4644 4606 13813 Face 12315 4606 4687 13813 Face 12316 4687 4721 13813 Face 12317 4471 4705 13814 Face 12318 4705 4675 13814 Face 12319 4675 4450 13814 Face 12320 4450 4471 13814 Face 12321 3932 4189 13815 Face 12322 4189 4198 13815 Face 12323 4198 3963 13815 Face 12324 3963 3932 13815 Face 12325 3485 3660 13816 Face 12326 3660 3704 13816 Face 12327 3704 3531 13816 Face 12328 3531 3485 13816 Face 12329 3240 3339 13817 Face 12330 3339 3411 13817 Face 12331 3411 3313 13817 Face 12332 3313 3240 13817 Face 12333 3158 3183 13818 Face 12334 3183 3237 13818 Face 12335 3237 3205 13818 Face 12336 3205 3158 13818 Face 12337 3196 3163 13819 Face 12338 3163 3217 13819 Face 12339 3217 3249 13819 Face 12340 3249 3196 13819 Face 12341 3357 3261 13820 Face 12342 3261 3293 13820 Face 12343 3293 3380 13820 Face 12344 3380 3357 13820 Face 12345 3619 3617 13821 Face 12346 3617 3807 13821 Face 12347 3807 3820 13821 Face 12348 3820 3619 13821 Face 12349 4787 4795 13822 Face 12350 4795 4794 13822 Face 12351 4794 4786 13822 Face 12352 4786 4787 13822 Face 12353 4724 4794 13823 Face 12354 4794 4804 13823 Face 12355 4804 4730 13823 Face 12356 4730 4724 13823 Face 12357 4701 4781 13824 Face 12358 4781 4786 13824 Face 12359 4786 4713 13824 Face 12360 4713 4701 13824 Face 12361 3041 3053 13825 Face 12362 3053 3057 13825 Face 12363 3057 3045 13825 Face 12364 3045 3041 13825 Face 12365 3119 3057 13826 Face 12366 3057 3063 13826 Face 12367 3063 3123 13826 Face 12368 3123 3119 13826 Face 12369 3022 3024 13827 Face 12370 3024 3045 13827 Face 12371 3045 3043 13827 Face 12372 3043 3022 13827 Face 12373 3102 3032 13828 Face 12374 3032 3043 13828 Face 12375 3043 3114 13828 Face 12376 3114 3102 13828 Face 12377 4375 4538 13829 Face 12378 4538 4542 13829 Face 12379 4542 4382 13829 Face 12380 4382 4375 13829 Face 12381 4713 4724 13830 Face 12382 4724 4538 13830 Face 12383 4538 4528 13830 Face 12384 4528 4713 13830 Face 12385 4368 4519 13831 Face 12386 4519 4528 13831 Face 12387 4528 4371 13831 Face 12388 4371 4368 13831 Face 12389 4116 4251 13832 Face 12390 4251 4253 13832 Face 12391 4253 4117 13832 Face 12392 4117 4116 13832 Face 12393 4371 4375 13833 Face 12394 4375 4251 13833 Face 12395 4251 4250 13833 Face 12396 4250 4371 13833 Face 12397 4106 4245 13834 Face 12398 4245 4250 13834 Face 12399 4250 4112 13834 Face 12400 4112 4106 13834 Face 12401 3823 3987 13835 Face 12402 3987 3982 13835 Face 12403 3982 3818 13835 Face 12404 3818 3823 13835 Face 12405 4112 4116 13836 Face 12406 4116 3987 13836 Face 12407 3987 3985 13836 Face 12408 3985 4112 13836 Face 12409 3820 3978 13837 Face 12410 3978 3985 13837 Face 12411 3985 3828 13837 Face 12412 3828 3820 13837 Face 12413 3472 3614 13838 Face 12414 3614 3609 13838 Face 12415 3609 3467 13838 Face 12416 3467 3472 13838 Face 12417 3828 3823 13839 Face 12418 3823 3614 13839 Face 12419 3614 3616 13839 Face 12420 3616 3828 13839 Face 12421 3476 3619 13840 Face 12422 3619 3616 13840 Face 12423 3616 3475 13840 Face 12424 3475 3476 13840 Face 12425 3222 3343 13841 Face 12426 3343 3338 13841 Face 12427 3338 3216 13841 Face 12428 3216 3222 13841 Face 12429 3475 3472 13842 Face 12430 3472 3343 13842 Face 12431 3343 3349 13842 Face 12432 3349 3475 13842 Face 12433 3224 3347 13843 Face 12434 3347 3349 13843 Face 12435 3349 3227 13843 Face 12436 3227 3224 13843 Face 12437 3227 3222 13844 Face 12438 3222 3114 13844 Face 12439 3114 3119 13844 Face 12440 3119 3227 13844 Face 12441 2506 2518 13845 Face 12442 2518 2563 13845 Face 12443 2563 2552 13845 Face 12444 2552 2506 13845 Face 12445 4971 4942 13846 Face 12446 4942 4957 13846 Face 12447 4957 4991 13846 Face 12448 4991 4971 13846 Face 12449 5086 5028 13847 Face 12450 5028 4991 13847 Face 12451 4991 5045 13847 Face 12452 5045 5086 13847 Face 12453 5223 5216 13848 Face 12454 5216 5137 13848 Face 12455 5137 5144 13848 Face 12456 5144 5223 13848 Face 12457 5106 5137 13849 Face 12458 5137 5190 13849 Face 12459 5190 5173 13849 Face 12460 5173 5106 13849 Face 12461 5180 5206 13850 Face 12462 5206 5144 13850 Face 12463 5144 5105 13850 Face 12464 5105 5180 13850 Face 12465 5009 5102 13851 Face 12466 5102 5105 13851 Face 12467 5105 5016 13851 Face 12468 5016 5009 13851 Face 12469 4783 4859 13852 Face 12470 4859 5016 13852 Face 12471 5016 4970 13852 Face 12472 4970 4783 13852 Face 12473 4835 4925 13853 Face 12474 4925 4890 13853 Face 12475 4890 4782 13853 Face 12476 4782 4835 13853 Face 12477 4865 4890 13854 Face 12478 4890 5014 13854 Face 12479 5014 4986 13854 Face 12480 4986 4865 13854 Face 12481 5111 5014 13855 Face 12482 5014 5044 13855 Face 12483 5044 5134 13855 Face 12484 5134 5111 13855 Face 12485 4689 4722 13856 Face 12486 4722 4700 13856 Face 12487 4700 4678 13856 Face 12488 4678 4689 13856 Face 12489 4736 4700 13857 Face 12490 4700 4740 13857 Face 12491 4740 4764 13857 Face 12492 4764 4736 13857 Face 12493 4803 4740 13858 Face 12494 4740 4722 13858 Face 12495 4722 4783 13858 Face 12496 4783 4803 13858 Face 12497 4840 4803 13859 Face 12498 4803 4970 13859 Face 12499 4970 4990 13859 Face 12500 4990 4840 13859 Face 12501 4764 4840 13860 Face 12502 4840 4893 13860 Face 12503 4893 4835 13860 Face 12504 4835 4764 13860 Face 12505 4694 4736 13861 Face 12506 4736 4782 13861 Face 12507 4782 4750 13861 Face 12508 4750 4694 13861 Face 12509 5173 5175 13862 Face 12510 5175 5134 13862 Face 12511 5134 5130 13862 Face 12512 5130 5173 13862 Face 12513 5091 5111 13863 Face 12514 5111 5167 13863 Face 12515 5167 5157 13863 Face 12516 5157 5091 13863 Face 12517 4604 4605 13864 Face 12518 4605 4534 13864 Face 12519 4534 4513 13864 Face 12520 4513 4604 13864 Face 12521 4572 4561 13865 Face 12522 4561 4602 13865 Face 12523 4602 4591 13865 Face 12524 4591 4572 13865 Face 12525 4668 4602 13866 Face 12526 4602 4605 13866 Face 12527 4605 4685 13866 Face 12528 4685 4668 13866 Face 12529 5161 5275 13867 Face 12530 5275 5283 13867 Face 12531 5283 5172 13867 Face 12532 5172 5161 13867 Face 12533 5594 5451 13868 Face 12534 5451 5450 13868 Face 12535 5450 5595 13868 Face 12536 5595 5594 13868 Face 12537 4998 5076 13869 Face 12538 5076 5101 13869 Face 12539 5101 5018 13869 Face 12540 5018 4998 13869 Face 12541 4874 4932 13870 Face 12542 4932 4940 13870 Face 12543 4940 4887 13870 Face 12544 4887 4874 13870 Face 12545 4758 4790 13871 Face 12546 4790 4887 13871 Face 12547 4887 4852 13871 Face 12548 4852 4758 13871 Face 12549 4699 4720 13872 Face 12550 4720 4852 13872 Face 12551 4852 4834 13872 Face 12552 4834 4699 13872 Face 12553 4715 4696 13873 Face 12554 4696 4834 13873 Face 12555 4834 4847 13873 Face 12556 4847 4715 13873 Face 12557 4677 4668 13874 Face 12558 4668 4779 13874 Face 12559 4779 4799 13874 Face 12560 4799 4677 13874 Face 12561 4826 4779 13875 Face 12562 4779 4685 13875 Face 12563 4685 4706 13875 Face 12564 4706 4826 13875 Face 12565 5118 5245 13876 Face 12566 5245 5239 13876 Face 12567 5239 5114 13876 Face 12568 5114 5118 13876 Face 12569 5610 5436 13877 Face 12570 5436 5439 13877 Face 12571 5439 5607 13877 Face 12572 5607 5610 13877 Face 12573 4964 5019 13878 Face 12574 5019 5011 13878 Face 12575 5011 4948 13878 Face 12576 4948 4964 13878 Face 12577 4878 4941 13879 Face 12578 4941 4929 13879 Face 12579 4929 4857 13879 Face 12580 4857 4878 13879 Face 12581 4613 4732 13880 Face 12582 4732 4711 13880 Face 12583 4711 4590 13880 Face 12584 4590 4613 13880 Face 12585 4488 4530 13881 Face 12586 4530 4500 13881 Face 12587 4500 4465 13881 Face 12588 4465 4488 13881 Face 12589 4503 4497 13882 Face 12590 4497 4473 13882 Face 12591 4473 4479 13882 Face 12592 4479 4503 13882 Face 12593 4411 4448 13883 Face 12594 4448 4376 13883 Face 12595 4376 4304 13883 Face 12596 4304 4411 13883 Face 12597 4476 4440 13884 Face 12598 4440 4481 13884 Face 12599 4481 4499 13884 Face 12600 4499 4476 13884 Face 12601 4316 4347 13885 Face 12602 4347 4229 13885 Face 12603 4229 4163 13885 Face 12604 4163 4316 13885 Face 12605 4303 4305 13886 Face 12606 4305 4126 13886 Face 12607 4126 4120 13886 Face 12608 4120 4303 13886 Face 12609 5261 5279 13887 Face 12610 5279 5310 13887 Face 12611 5310 5282 13887 Face 12612 5282 5261 13887 Face 12613 5157 5198 13888 Face 12614 5198 5209 13888 Face 12615 5209 5155 13888 Face 12616 5155 5157 13888 Face 12617 4986 5091 13889 Face 12618 5091 5074 13889 Face 12619 5074 4963 13889 Face 12620 4963 4986 13889 Face 12621 4750 4865 13890 Face 12622 4865 4825 13890 Face 12623 4825 4709 13890 Face 12624 4709 4750 13890 Face 12625 4678 4694 13891 Face 12626 4694 4659 13891 Face 12627 4659 4629 13891 Face 12628 4629 4678 13891 Face 12629 4879 4826 13892 Face 12630 4826 4847 13892 Face 12631 4847 4896 13892 Face 12632 4896 4879 13892 Face 12633 4601 4715 13893 Face 12634 4715 4706 13893 Face 12635 4706 4604 13893 Face 12636 4604 4601 13893 Face 12637 4479 4511 13894 Face 12638 4511 4513 13894 Face 12639 4513 4476 13894 Face 12640 4476 4479 13894 Face 12641 4549 4503 13895 Face 12642 4503 4499 13895 Face 12643 4499 4541 13895 Face 12644 4541 4549 13895 Face 12645 3747 3700 13896 Face 12646 3700 3509 13896 Face 12647 3509 3566 13896 Face 12648 3566 3747 13896 Face 12649 4663 4566 13897 Face 12650 4566 4591 13897 Face 12651 4591 4677 13897 Face 12652 4677 4663 13897 Face 12653 4469 4572 13898 Face 12654 4572 4566 13898 Face 12655 4566 4463 13898 Face 12656 4463 4469 13898 Face 12657 4337 4180 13899 Face 12658 4180 4190 13899 Face 12659 4190 4344 13899 Face 12660 4344 4337 13899 Face 12661 3762 3989 13900 Face 12662 3989 3966 13900 Face 12663 3966 3747 13900 Face 12664 3747 3762 13900 Face 12665 3513 3590 13901 Face 12666 3590 3566 13901 Face 12667 3566 3473 13901 Face 12668 3473 3513 13901 Face 12669 3567 3513 13902 Face 12670 3513 3496 13902 Face 12671 3496 3561 13902 Face 12672 3561 3567 13902 Face 12673 3445 3496 13903 Face 12674 3496 3473 13903 Face 12675 3473 3419 13903 Face 12676 3419 3445 13903 Face 12677 4888 4800 13904 Face 12678 4800 4799 13904 Face 12679 4799 4879 13904 Face 12680 4879 4888 13904 Face 12681 4892 4888 13905 Face 12682 4888 4896 13905 Face 12683 4896 4904 13905 Face 12684 4904 4892 13905 Face 12685 3541 3490 13906 Face 12686 3490 3460 13906 Face 12687 3460 3521 13906 Face 12688 3521 3541 13906 Face 12689 3416 3450 13907 Face 12690 3450 3490 13907 Face 12691 3490 3451 13907 Face 12692 3451 3416 13907 Face 12693 3379 3377 13908 Face 12694 3377 3337 13908 Face 12695 3337 3336 13908 Face 12696 3336 3379 13908 Face 12697 3801 3662 13909 Face 12698 3662 3670 13909 Face 12699 3670 3822 13909 Face 12700 3822 3801 13909 Face 12701 4311 4531 13910 Face 12702 4531 4518 13910 Face 12703 4518 4303 13910 Face 12704 4303 4311 13910 Face 12705 5087 4817 13911 Face 12706 4817 4824 13911 Face 12707 4824 5094 13911 Face 12708 5094 5087 13911 Face 12709 4920 5166 13912 Face 12710 5166 5170 13912 Face 12711 5170 4934 13912 Face 12712 4934 4920 13912 Face 12713 5635 5414 13913 Face 12714 5414 5412 13913 Face 12715 5412 5637 13913 Face 12716 5637 5635 13913 Face 12717 4349 4652 13914 Face 12718 4652 4662 13914 Face 12719 4662 4356 13914 Face 12720 4356 4349 13914 Face 12721 3939 4129 13915 Face 12722 4129 4132 13915 Face 12723 4132 3945 13915 Face 12724 3945 3939 13915 Face 12725 3603 3735 13916 Face 12726 3735 3753 13916 Face 12727 3753 3626 13916 Face 12728 3626 3603 13916 Face 12729 4120 3959 13917 Face 12730 3959 3965 13917 Face 12731 3965 4125 13917 Face 12732 4125 4120 13917 Face 12733 5671 5379 13918 Face 12734 5379 5382 13918 Face 12735 5382 5668 13918 Face 12736 5668 5671 13918 Face 12737 3111 3056 13919 Face 12738 3056 2901 13919 Face 12739 2901 2970 13919 Face 12740 2970 3111 13919 Face 12741 3173 3143 13920 Face 12742 3143 3003 13920 Face 12743 3003 3030 13920 Face 12744 3030 3173 13920 Face 12745 4987 5195 13921 Face 12746 5195 5199 13921 Face 12747 5199 4996 13921 Face 12748 4996 4987 13921 Face 12749 5625 5421 13922 Face 12750 5421 5419 13922 Face 12751 5419 5628 13922 Face 12752 5628 5625 13922 Face 12753 4484 4746 13923 Face 12754 4746 4754 13923 Face 12755 4754 4491 13923 Face 12756 4491 4484 13923 Face 12757 4808 4791 13924 Face 12758 4791 4793 13924 Face 12759 4793 4810 13924 Face 12760 4810 4808 13924 Face 12761 4523 4793 13925 Face 12762 4793 4774 13925 Face 12763 4774 4512 13925 Face 12764 4512 4523 13925 Face 12765 4829 4830 13926 Face 12766 4830 4810 13926 Face 12767 4810 4805 13926 Face 12768 4805 4829 13926 Face 12769 4540 4796 13927 Face 12770 4796 4805 13927 Face 12771 4805 4537 13927 Face 12772 4537 4540 13927 Face 12773 4165 3871 13928 Face 12774 3871 3884 13928 Face 12775 3884 4173 13928 Face 12776 4173 4165 13928 Face 12777 3436 3580 13929 Face 12778 3580 3574 13929 Face 12779 3574 3432 13929 Face 12780 3432 3436 13929 Face 12781 3571 3574 13930 Face 12782 3574 3871 13930 Face 12783 3871 3866 13930 Face 12784 3866 3571 13930 Face 12785 3424 3423 13931 Face 12786 3423 3432 13931 Face 12787 3432 3433 13931 Face 12788 3433 3424 13931 Face 12789 3576 3438 13932 Face 12790 3438 3433 13932 Face 12791 3433 3571 13932 Face 12792 3571 3576 13932 Face 12793 4156 4165 13933 Face 12794 4165 4537 13933 Face 12795 4537 4523 13933 Face 12796 4523 4156 13933 Face 12797 3866 4156 13934 Face 12798 4156 4152 13934 Face 12799 4152 3864 13934 Face 12800 3864 3866 13934 Face 12801 2782 2804 13935 Face 12802 2804 2798 13935 Face 12803 2798 2778 13935 Face 12804 2778 2782 13935 Face 12805 2717 2712 13936 Face 12806 2712 2766 13936 Face 12807 2766 2771 13936 Face 12808 2771 2717 13936 Face 12809 2560 2507 13937 Face 12810 2507 2627 13937 Face 12811 2627 2653 13937 Face 12812 2653 2560 13937 Face 12813 2350 2265 13938 Face 12814 2265 2386 13938 Face 12815 2386 2441 13938 Face 12816 2441 2350 13938 Face 12817 2194 2143 13939 Face 12818 2143 2186 13939 Face 12819 2186 2262 13939 Face 12820 2262 2194 13939 Face 12821 2122 2125 13940 Face 12822 2125 2128 13940 Face 12823 2128 2142 13940 Face 12824 2142 2122 13940 Face 12825 2156 2162 13941 Face 12826 2162 2136 13941 Face 12827 2136 2113 13941 Face 12828 2113 2156 13941 Face 12829 2256 2222 13942 Face 12830 2222 2191 13942 Face 12831 2191 2226 13942 Face 12832 2226 2256 13942 Face 12833 2276 2290 13943 Face 12834 2290 2252 13943 Face 12835 2252 2242 13943 Face 12836 2242 2276 13943 Face 12837 2089 2070 13944 Face 12838 2070 2290 13944 Face 12839 2290 2316 13944 Face 12840 2316 2089 13944 Face 12841 2341 2331 13945 Face 12842 2331 2316 13945 Face 12843 2316 2312 13945 Face 12844 2312 2341 13945 Face 12845 2100 2097 13946 Face 12846 2097 2331 13946 Face 12847 2331 2335 13946 Face 12848 2335 2100 13946 Face 12849 2359 2332 13947 Face 12850 2332 2335 13947 Face 12851 2335 2357 13947 Face 12852 2357 2359 13947 Face 12853 2375 2321 13948 Face 12854 2321 2325 13948 Face 12855 2325 2364 13948 Face 12856 2364 2375 13948 Face 12857 2387 2344 13949 Face 12858 2344 2329 13949 Face 12859 2329 2379 13949 Face 12860 2379 2387 13949 Face 12861 2403 2336 13950 Face 12862 2336 2347 13950 Face 12863 2347 2410 13950 Face 12864 2410 2403 13950 Face 12865 2400 2216 13951 Face 12866 2216 2240 13951 Face 12867 2240 2417 13951 Face 12868 2417 2400 13951 Face 12869 2221 2236 13952 Face 12870 2236 2216 13952 Face 12871 2216 2202 13952 Face 12872 2202 2221 13952 Face 12873 2172 2166 13953 Face 12874 2166 2193 13953 Face 12875 2193 2208 13953 Face 12876 2208 2172 13953 Face 12877 2173 2195 13954 Face 12878 2195 2166 13954 Face 12879 2166 2150 13954 Face 12880 2150 2173 13954 Face 12881 2286 2369 13955 Face 12882 2369 2401 13955 Face 12883 2401 2326 13955 Face 12884 2326 2286 13955 Face 12885 2370 2395 13956 Face 12886 2395 2369 13956 Face 12887 2369 2330 13956 Face 12888 2330 2370 13956 Face 12889 2419 2464 13957 Face 12890 2464 2475 13957 Face 12891 2475 2434 13957 Face 12892 2434 2419 13957 Face 12893 2473 2488 13958 Face 12894 2488 2464 13958 Face 12895 2464 2447 13958 Face 12896 2447 2473 13958 Face 12897 2416 2406 13959 Face 12898 2406 2433 13959 Face 12899 2433 2446 13959 Face 12900 2446 2416 13959 Face 12901 2411 2432 13960 Face 12902 2432 2406 13960 Face 12903 2406 2382 13960 Face 12904 2382 2411 13960 Face 12905 2261 2257 13961 Face 12906 2257 2277 13961 Face 12907 2277 2292 13961 Face 12908 2292 2261 13961 Face 12909 5867 5178 13962 Face 12910 5178 5177 13962 Face 12911 5177 5868 13962 Face 12912 5868 5867 13962 Face 12913 4038 4399 13963 Face 12914 4399 4401 13963 Face 12915 4401 4040 13963 Face 12916 4040 4038 13963 Face 12917 3572 3901 13964 Face 12918 3901 3902 13964 Face 12919 3902 3570 13964 Face 12920 3570 3572 13964 Face 12921 2649 3048 13965 Face 12922 3048 3042 13965 Face 12923 3042 2638 13965 Face 12924 2638 2649 13965 Face 12925 2203 2148 13966 Face 12926 2148 2123 13966 Face 12927 2123 2161 13966 Face 12928 2161 2203 13966 Face 12929 2271 2319 13967 Face 12930 2319 2280 13967 Face 12931 2280 2237 13967 Face 12932 2237 2271 13967 Face 12933 2231 2227 13968 Face 12934 2227 2185 13968 Face 12935 2185 2190 13968 Face 12936 2190 2231 13968 Face 12937 2362 2281 13969 Face 12938 2281 2247 13969 Face 12939 2247 2327 13969 Face 12940 2327 2362 13969 Face 12941 2328 2373 13970 Face 12942 2373 2334 13970 Face 12943 2334 2294 13970 Face 12944 2294 2328 13970 Face 12945 2758 2667 13971 Face 12946 2667 2632 13971 Face 12947 2632 2708 13971 Face 12948 2708 2758 13971 Face 12949 2423 2533 13972 Face 12950 2533 2606 13972 Face 12951 2606 2509 13972 Face 12952 2509 2423 13972 Face 12953 2243 2269 13973 Face 12954 2269 2424 13973 Face 12955 2424 2403 13973 Face 12956 2403 2243 13973 Face 12957 2364 2274 13974 Face 12958 2274 2138 13974 Face 12959 2138 2175 13974 Face 12960 2175 2364 13974 Face 12961 2155 2137 13975 Face 12962 2137 2274 13975 Face 12963 2274 2359 13975 Face 12964 2359 2155 13975 Face 12965 2379 2375 13976 Face 12966 2375 2213 13976 Face 12967 2213 2218 13976 Face 12968 2218 2379 13976 Face 12969 2410 2387 13977 Face 12970 2387 2220 13977 Face 12971 2220 2243 13977 Face 12972 2243 2410 13977 Face 12973 2698 2780 13978 Face 12974 2780 2708 13978 Face 12975 2708 2637 13978 Face 12976 2637 2698 13978 Face 12977 2118 2140 13979 Face 12978 2140 2357 13979 Face 12979 2357 2341 13979 Face 12980 2341 2118 13979 Face 12981 2467 2560 13980 Face 12982 2560 2536 13980 Face 12983 2536 2463 13980 Face 12984 2463 2467 13980 Face 12985 2624 2590 13981 Face 12986 2590 2653 13981 Face 12987 2653 2717 13981 Face 12988 2717 2624 13981 Face 12989 2441 2467 13982 Face 12990 2467 2345 13982 Face 12991 2345 2299 13982 Face 12992 2299 2441 13982 Face 12993 2262 2350 13983 Face 12994 2350 2299 13983 Face 12995 2299 2196 13983 Face 12996 2196 2262 13983 Face 12997 2142 2194 13984 Face 12998 2194 2084 13984 Face 12999 2084 2008 13984 Face 13000 2008 2142 13984 Face 13001 2677 2656 13985 Face 13002 2656 2771 13985 Face 13003 2771 2782 13985 Face 13004 2782 2677 13985 Face 13005 2654 2670 13986 Face 13006 2670 2778 13986 Face 13007 2778 2770 13986 Face 13008 2770 2654 13986 Face 13009 2611 2634 13987 Face 13010 2634 2737 13987 Face 13011 2737 2698 13987 Face 13012 2698 2611 13987 Face 13013 2065 2122 13988 Face 13014 2122 1915 13988 Face 13015 1915 1833 13988 Face 13016 1833 2065 13988 Face 13017 2113 2065 13989 Face 13018 2065 1804 13989 Face 13019 1804 1873 13989 Face 13020 1873 2113 13989 Face 13021 2226 2156 13990 Face 13022 2156 1944 13990 Face 13023 1944 2040 13990 Face 13024 2040 2226 13990 Face 13025 2242 2256 13991 Face 13026 2256 2040 13991 Face 13027 2040 2027 13991 Face 13028 2027 2242 13991 Face 13029 2312 2276 13992 Face 13030 2276 2052 13992 Face 13031 2052 2078 13992 Face 13032 2078 2312 13992 Face 13033 9071 9119 13993 Face 13034 9119 9006 13993 Face 13035 9006 8991 13993 Face 13036 8991 9071 13993 Face 13037 8890 9006 13994 Face 13038 9006 9033 13994 Face 13039 9033 8905 13994 Face 13040 8905 8890 13994 Face 13041 9080 9033 13995 Face 13042 9033 9161 13995 Face 13043 9161 9210 13995 Face 13044 9210 9080 13995 Face 13045 9219 9161 13996 Face 13046 9161 9119 13996 Face 13047 9119 9153 13996 Face 13048 9153 9219 13996 Face 13049 8927 9080 13997 Face 13050 9080 9135 13997 Face 13051 9135 8965 13997 Face 13052 8965 8927 13997 Face 13053 9176 9135 13998 Face 13054 9135 9252 13998 Face 13055 9252 9275 13998 Face 13056 9275 9176 13998 Face 13057 9278 9252 13999 Face 13058 9252 9210 13999 Face 13059 9210 9259 13999 Face 13060 9259 9278 13999 Face 13061 9324 9298 14000 Face 13062 9298 9275 14000 Face 13063 9275 9299 14000 Face 13064 9299 9324 14000 Face 13065 8993 9176 14001 Face 13066 9176 9224 14001 Face 13067 9224 9018 14001 Face 13068 9018 8993 14001 Face 13069 9256 9224 14002 Face 13070 9224 9298 14002 Face 13071 9298 9312 14002 Face 13072 9312 9256 14002 Face 13073 9090 9071 14003 Face 13074 9071 8994 14003 Face 13075 8994 9001 14003 Face 13076 9001 9090 14003 Face 13077 8952 8994 14004 Face 13078 8994 8991 14004 Face 13079 8991 8908 14004 Face 13080 8908 8952 14004 Face 13081 9153 9090 14005 Face 13082 9090 9074 14005 Face 13083 9074 9149 14005 Face 13084 9149 9153 14005 Face 13085 9012 9074 14006 Face 13086 9074 8999 14006 Face 13087 8999 8959 14006 Face 13088 8959 9012 14006 Face 13089 8928 8999 14007 Face 13090 8999 9001 14007 Face 13091 9001 8934 14007 Face 13092 8934 8928 14007 Face 13093 9259 9219 14008 Face 13094 9219 9206 14008 Face 13095 9206 9258 14008 Face 13096 9258 9259 14008 Face 13097 9139 9206 14009 Face 13098 9206 9149 14009 Face 13099 9149 9078 14009 Face 13100 9078 9139 14009 Face 13101 9255 9281 14010 Face 13102 9281 9258 14010 Face 13103 9258 9200 14010 Face 13104 9200 9255 14010 Face 13105 9299 9278 14011 Face 13106 9278 9281 14011 Face 13107 9281 9300 14011 Face 13108 9300 9299 14011 Face 13109 9291 9314 14012 Face 13110 9314 9300 14012 Face 13111 9300 9280 14012 Face 13112 9280 9291 14012 Face 13113 9328 9324 14013 Face 13114 9324 9314 14013 Face 13115 9314 9323 14013 Face 13116 9323 9328 14013 Face 13117 9289 9320 14014 Face 13118 9320 9323 14014 Face 13119 9323 9287 14014 Face 13120 9287 9289 14014 Face 13121 9312 9328 14015 Face 13122 9328 9329 14015 Face 13123 9329 9322 14015 Face 13124 9322 9312 14015 Face 13125 9330 9329 14016 Face 13126 9329 9320 14016 Face 13127 9320 9316 14016 Face 13128 9316 9330 14016 Face 13129 9285 9315 14017 Face 13130 9315 9316 14017 Face 13131 9316 9288 14017 Face 13132 9288 9285 14017 Face 13133 9321 9330 14018 Face 13134 9330 9331 14018 Face 13135 9331 9311 14018 Face 13136 9311 9321 14018 Face 13137 9326 9331 14019 Face 13138 9331 9315 14019 Face 13139 9315 9310 14019 Face 13140 9310 9326 14019 Face 13141 9276 9303 14020 Face 13142 9303 9310 14020 Face 13143 9310 9282 14020 Face 13144 9282 9276 14020 Face 13145 9305 9326 14021 Face 13146 9326 9318 14021 Face 13147 9318 9295 14021 Face 13148 9295 9305 14021 Face 13149 9301 9318 14022 Face 13150 9318 9303 14022 Face 13151 9303 9292 14022 Face 13152 9292 9301 14022 Face 13153 9263 9279 14023 Face 13154 9279 9292 14023 Face 13155 9292 9267 14023 Face 13156 9267 9263 14023 Face 13157 9286 9301 14024 Face 13158 9301 9284 14024 Face 13159 9284 9269 14024 Face 13160 9269 9286 14024 Face 13161 9266 9284 14025 Face 13162 9284 9279 14025 Face 13163 9279 9262 14025 Face 13164 9262 9266 14025 Face 13165 9188 9226 14026 Face 13166 9226 9262 14026 Face 13167 9262 9239 14026 Face 13168 9239 9188 14026 Face 13169 9249 9266 14027 Face 13170 9266 9242 14027 Face 13171 9242 9208 14027 Face 13172 9208 9249 14027 Face 13173 9189 9242 14028 Face 13174 9242 9226 14028 Face 13175 9226 9162 14028 Face 13176 9162 9189 14028 Face 13177 9077 9105 14029 Face 13178 9105 9162 14029 Face 13179 9162 9145 14029 Face 13180 9145 9077 14029 Face 13181 9151 9189 14030 Face 13182 9189 9133 14030 Face 13183 9133 9076 14030 Face 13184 9076 9151 14030 Face 13185 9104 9133 14031 Face 13186 9133 9105 14031 Face 13187 9105 9062 14031 Face 13188 9062 9104 14031 Face 13189 9031 9104 14032 Face 13190 9104 9098 14032 Face 13191 9098 9021 14032 Face 13192 9021 9031 14032 Face 13193 9083 9098 14033 Face 13194 9098 9062 14033 Face 13195 9062 9055 14033 Face 13196 9055 9083 14033 Face 13197 9065 9083 14034 Face 13198 9083 9060 14034 Face 13199 9060 9053 14034 Face 13200 9053 9065 14034 Face 13201 9049 9060 14035 Face 13202 9060 9055 14035 Face 13203 9055 9058 14035 Face 13204 9058 9049 14035 Face 13205 9044 9028 14036 Face 13206 9028 9053 14036 Face 13207 9053 9049 14036 Face 13208 9049 9044 14036 Face 13209 9087 9065 14037 Face 13210 9065 9035 14037 Face 13211 9035 9046 14037 Face 13212 9046 9087 14037 Face 13213 8984 9035 14038 Face 13214 9035 9028 14038 Face 13215 9028 8978 14038 Face 13216 8978 8984 14038 Face 13217 8842 8866 14039 Face 13218 8866 8978 14039 Face 13219 8978 8983 14039 Face 13220 8983 8842 14039 Face 13221 8982 8984 14040 Face 13222 8984 8892 14040 Face 13223 8892 8899 14040 Face 13224 8899 8982 14040 Face 13225 8876 8892 14041 Face 13226 8892 8866 14041 Face 13227 8866 8838 14041 Face 13228 8838 8876 14041 Face 13229 9089 9002 14042 Face 13230 9002 8983 14042 Face 13231 8983 9044 14042 Face 13232 9044 9089 14042 Face 13233 8825 8842 14043 Face 13234 8842 8843 14043 Face 13235 8843 8817 14043 Face 13236 8817 8825 14043 Face 13237 8863 8843 14044 Face 13238 8843 9002 14044 Face 13239 9002 9032 14044 Face 13240 9032 8863 14044 Face 13241 9129 9089 14045 Face 13242 9089 9058 14045 Face 13243 9058 9082 14045 Face 13244 9082 9129 14045 Face 13245 9109 9114 14046 Face 13246 9114 9082 14046 Face 13247 9082 9077 14046 Face 13248 9077 9109 14046 Face 13249 9032 9129 14047 Face 13250 9129 9154 14047 Face 13251 9154 9070 14047 Face 13252 9070 9032 14047 Face 13253 9193 9154 14048 Face 13254 9154 9114 14048 Face 13255 9114 9142 14048 Face 13256 9142 9193 14048 Face 13257 9183 9178 14049 Face 13258 9178 9142 14049 Face 13259 9142 9138 14049 Face 13260 9138 9183 14049 Face 13261 9209 9193 14050 Face 13262 9193 9233 14050 Face 13263 9233 9246 14050 Face 13264 9246 9209 14050 Face 13265 9240 9233 14051 Face 13266 9233 9178 14051 Face 13267 9178 9185 14051 Face 13268 9185 9240 14051 Face 13269 9187 9159 14052 Face 13270 9159 9185 14052 Face 13271 9185 9196 14052 Face 13272 9196 9187 14052 Face 13273 9254 9240 14053 Face 13274 9240 9223 14053 Face 13275 9223 9243 14053 Face 13276 9243 9254 14053 Face 13277 9203 9223 14054 Face 13278 9223 9159 14054 Face 13279 9159 9152 14054 Face 13280 9152 9203 14054 Face 13281 9215 9163 14055 Face 13282 9163 9152 14055 Face 13283 9152 9190 14055 Face 13284 9190 9215 14055 Face 13285 9229 9203 14056 Face 13286 9203 9191 14056 Face 13287 9191 9194 14056 Face 13288 9194 9229 14056 Face 13289 9180 9191 14057 Face 13290 9191 9163 14057 Face 13291 9163 9164 14057 Face 13292 9164 9180 14057 Face 13293 9169 9180 14058 Face 13294 9180 9155 14058 Face 13295 9155 9140 14058 Face 13296 9140 9169 14058 Face 13297 9220 9155 14059 Face 13298 9155 9164 14059 Face 13299 9164 9222 14059 Face 13300 9222 9220 14059 Face 13301 9170 9107 14060 Face 13302 9107 9140 14060 Face 13303 9140 9199 14060 Face 13304 9199 9170 14060 Face 13305 9194 9169 14061 Face 13306 9169 9143 14061 Face 13307 9143 9177 14061 Face 13308 9177 9194 14061 Face 13309 9113 9143 14062 Face 13310 9143 9107 14062 Face 13311 9107 9051 14062 Face 13312 9051 9113 14062 Face 13313 9121 9113 14063 Face 13314 9113 9007 14063 Face 13315 9007 8998 14063 Face 13316 8998 9121 14063 Face 13317 9056 9007 14064 Face 13318 9007 9051 14064 Face 13319 9051 9120 14064 Face 13320 9120 9056 14064 Face 13321 8966 8981 14065 Face 13322 8981 8998 14065 Face 13323 8998 9005 14065 Face 13324 9005 8966 14065 Face 13325 9177 9121 14066 Face 13326 9121 9132 14066 Face 13327 9132 9207 14066 Face 13328 9207 9177 14066 Face 13329 9079 9132 14067 Face 13330 9132 8981 14067 Face 13331 8981 8921 14067 Face 13332 8921 9079 14067 Face 13333 9243 9229 14068 Face 13334 9229 9207 14068 Face 13335 9207 9232 14068 Face 13336 9232 9243 14068 Face 13337 9248 9254 14069 Face 13338 9254 9232 14069 Face 13339 9232 9225 14069 Face 13340 9225 9248 14069 Face 13341 9267 9276 14070 Face 13342 9276 9190 14070 Face 13343 9190 9187 14070 Face 13344 9187 9267 14070 Face 13345 9222 9215 14071 Face 13346 9215 9282 14071 Face 13347 9282 9285 14071 Face 13348 9285 9222 14071 Face 13349 9239 9263 14072 Face 13350 9263 9196 14072 Face 13351 9196 9183 14072 Face 13352 9183 9239 14072 Face 13353 9145 9188 14073 Face 13354 9188 9138 14073 Face 13355 9138 9109 14073 Face 13356 9109 9145 14073 Face 13357 9046 9016 14074 Face 13358 9016 9041 14074 Face 13359 9041 9085 14074 Face 13360 9085 9046 14074 Face 13361 9008 9041 14075 Face 13362 9041 8958 14075 Face 13363 8958 8931 14075 Face 13364 8931 9008 14075 Face 13365 8925 8958 14076 Face 13366 8958 9016 14076 Face 13367 9016 8990 14076 Face 13368 8990 8925 14076 Face 13369 8824 8925 14077 Face 13370 8925 8924 14077 Face 13371 8924 8826 14077 Face 13372 8826 8824 14077 Face 13373 8916 8924 14078 Face 13374 8924 8990 14078 Face 13375 8990 8982 14078 Face 13376 8982 8916 14078 Face 13377 8906 8916 14079 Face 13378 8916 8899 14079 Face 13379 8899 8885 14079 Face 13380 8885 8906 14079 Face 13381 8830 8906 14080 Face 13382 8906 8936 14080 Face 13383 8936 8869 14080 Face 13384 8869 8830 14080 Face 13385 8938 8936 14081 Face 13386 8936 8885 14081 Face 13387 8885 8876 14081 Face 13388 8876 8938 14081 Face 13389 8901 8972 14082 Face 13390 8972 8886 14082 Face 13391 8886 8814 14082 Face 13392 8814 8901 14082 Face 13393 8749 8886 14083 Face 13394 8886 8931 14083 Face 13395 8931 8774 14083 Face 13396 8774 8749 14083 Face 13397 9069 9008 14084 Face 13398 9008 8972 14084 Face 13399 8972 9014 14084 Face 13400 9014 9069 14084 Face 13401 9102 9069 14085 Face 13402 9069 9066 14085 Face 13403 9066 9100 14085 Face 13404 9100 9102 14085 Face 13405 9009 9066 14086 Face 13406 9066 9014 14086 Face 13407 9014 8970 14086 Face 13408 8970 9009 14086 Face 13409 9085 9102 14087 Face 13410 9102 9103 14087 Face 13411 9103 9087 14087 Face 13412 9087 9085 14087 Face 13413 9022 9103 14088 Face 13414 9103 9100 14088 Face 13415 9100 9037 14088 Face 13416 9037 9022 14088 Face 13417 9199 9220 14089 Face 13418 9220 9288 14089 Face 13419 9288 9289 14089 Face 13420 9289 9199 14089 Face 13421 9136 9079 14090 Face 13422 9079 8859 14090 Face 13423 8859 8910 14090 Face 13424 8910 9136 14090 Face 13425 8834 8859 14091 Face 13426 8859 8921 14091 Face 13427 8921 8913 14091 Face 13428 8913 8834 14091 Face 13429 8762 8882 14092 Face 13430 8882 8873 14092 Face 13431 8873 8748 14092 Face 13432 8748 8762 14092 Face 13433 8910 8873 14093 Face 13434 8873 9067 14093 Face 13435 9067 9118 14093 Face 13436 9118 8910 14093 Face 13437 9197 9067 14094 Face 13438 9067 9086 14094 Face 13439 9086 9209 14094 Face 13440 9209 9197 14094 Face 13441 9070 9086 14095 Face 13442 9086 8882 14095 Face 13443 8882 8881 14095 Face 13444 8881 9070 14095 Face 13445 8746 8863 14096 Face 13446 8863 8881 14096 Face 13447 8881 8762 14096 Face 13448 8762 8746 14096 Face 13449 9201 9197 14097 Face 13450 9197 9246 14097 Face 13451 9246 9248 14097 Face 13452 9248 9201 14097 Face 13453 9118 9201 14098 Face 13454 9201 9225 14098 Face 13455 9225 9136 14098 Face 13456 9136 9118 14098 Face 13457 9173 9170 14099 Face 13458 9170 9287 14099 Face 13459 9287 9291 14099 Face 13460 9291 9173 14099 Face 13461 9120 9173 14100 Face 13462 9173 9280 14100 Face 13463 9280 9255 14100 Face 13464 9255 9120 14100 Face 13465 9005 9056 14101 Face 13466 9056 9200 14101 Face 13467 9200 9139 14101 Face 13468 9139 9005 14101 Face 13469 8913 8966 14102 Face 13470 8966 9078 14102 Face 13471 9078 9012 14102 Face 13472 9012 8913 14102 Face 13473 8791 8834 14103 Face 13474 8834 8959 14103 Face 13475 8959 8911 14103 Face 13476 8911 8791 14103 Face 13477 8838 8825 14104 Face 13478 8825 8934 14104 Face 13479 8934 8935 14104 Face 13480 8935 8838 14104 Face 13481 8911 8928 14105 Face 13482 8928 8817 14105 Face 13483 8817 8790 14105 Face 13484 8790 8911 14105 Face 13485 8748 8791 14106 Face 13486 8791 8790 14106 Face 13487 8790 8746 14106 Face 13488 8746 8748 14106 Face 13489 8907 8938 14107 Face 13490 8938 8935 14107 Face 13491 8935 8952 14107 Face 13492 8952 8907 14107 Face 13493 9205 9256 14108 Face 13494 9256 9274 14108 Face 13495 9274 9257 14108 Face 13496 9257 9205 14108 Face 13497 9270 9274 14109 Face 13498 9274 9322 14109 Face 13499 9322 9321 14109 Face 13500 9321 9270 14109 Face 13501 9130 9270 14110 Face 13502 9270 9230 14110 Face 13503 9230 9036 14110 Face 13504 9036 9130 14110 Face 13505 9198 9230 14111 Face 13506 9230 9311 14111 Face 13507 9311 9305 14111 Face 13508 9305 9198 14111 Face 13509 9034 9198 14112 Face 13510 9198 9218 14112 Face 13511 9218 9075 14112 Face 13512 9075 9034 14112 Face 13513 9217 9218 14113 Face 13514 9218 9295 14113 Face 13515 9295 9286 14113 Face 13516 9286 9217 14113 Face 13517 9052 9217 14114 Face 13518 9217 9192 14114 Face 13519 9192 9042 14114 Face 13520 9042 9052 14114 Face 13521 9160 9192 14115 Face 13522 9192 9269 14115 Face 13523 9269 9249 14115 Face 13524 9249 9160 14115 Face 13525 9019 9160 14116 Face 13526 9160 9124 14116 Face 13527 9124 8989 14116 Face 13528 8989 9019 14116 Face 13529 9039 9124 14117 Face 13530 9124 9208 14117 Face 13531 9208 9151 14117 Face 13532 9151 9039 14117 Face 13533 8937 9039 14118 Face 13534 9039 8968 14118 Face 13535 8968 8844 14118 Face 13536 8844 8937 14118 Face 13537 8926 8968 14119 Face 13538 8968 9076 14119 Face 13539 9076 9031 14119 Face 13540 9031 8926 14119 Face 13541 8801 8926 14120 Face 13542 8926 8920 14120 Face 13543 8920 8796 14120 Face 13544 8796 8801 14120 Face 13545 8939 8920 14121 Face 13546 8920 9021 14121 Face 13547 9021 9022 14121 Face 13548 9022 8939 14121 Face 13549 8782 8939 14122 Face 13550 8939 8975 14122 Face 13551 8975 8833 14122 Face 13552 8833 8782 14122 Face 13553 8951 8975 14123 Face 13554 8975 9037 14123 Face 13555 9037 9003 14123 Face 13556 9003 8951 14123 Face 13557 8875 8951 14124 Face 13558 8951 8850 14124 Face 13559 8850 8760 14124 Face 13560 8760 8875 14124 Face 13561 8860 8850 14125 Face 13562 8850 9003 14125 Face 13563 9003 9009 14125 Face 13564 9009 8860 14125 Face 13565 8833 8875 14126 Face 13566 8875 8662 14126 Face 13567 8662 8639 14126 Face 13568 8639 8833 14126 Face 13569 8600 8662 14127 Face 13570 8662 8760 14127 Face 13571 8760 8669 14127 Face 13572 8669 8600 14127 Face 13573 8796 8739 14128 Face 13574 8739 8611 14128 Face 13575 8611 8653 14128 Face 13576 8653 8796 14128 Face 13577 8545 8611 14129 Face 13578 8611 8549 14129 Face 13579 8549 8491 14129 Face 13580 8491 8545 14129 Face 13581 8586 8549 14130 Face 13582 8549 8739 14130 Face 13583 8739 8782 14130 Face 13584 8782 8586 14130 Face 13585 8561 8545 14131 Face 13586 8545 8467 14131 Face 13587 8467 8471 14131 Face 13588 8471 8561 14131 Face 13589 8406 8467 14132 Face 13590 8467 8491 14132 Face 13591 8491 8425 14132 Face 13592 8425 8406 14132 Face 13593 8372 8468 14133 Face 13594 8468 8471 14133 Face 13595 8471 8385 14133 Face 13596 8385 8372 14133 Face 13597 8653 8561 14134 Face 13598 8561 8567 14134 Face 13599 8567 8667 14134 Face 13600 8667 8653 14134 Face 13601 8587 8567 14135 Face 13602 8567 8468 14135 Face 13603 8468 8488 14135 Face 13604 8488 8587 14135 Face 13605 8844 8801 14136 Face 13606 8801 8667 14136 Face 13607 8667 8706 14136 Face 13608 8706 8844 14136 Face 13609 8989 8937 14137 Face 13610 8937 8777 14137 Face 13611 8777 8827 14137 Face 13612 8827 8989 14137 Face 13613 8621 8777 14138 Face 13614 8777 8706 14138 Face 13615 8706 8587 14138 Face 13616 8587 8621 14138 Face 13617 8655 8621 14139 Face 13618 8621 8512 14139 Face 13619 8512 8546 14139 Face 13620 8546 8655 14139 Face 13621 8423 8512 14140 Face 13622 8512 8488 14140 Face 13623 8488 8394 14140 Face 13624 8394 8423 14140 Face 13625 8510 8579 14141 Face 13626 8579 8546 14141 Face 13627 8546 8456 14141 Face 13628 8456 8510 14141 Face 13629 8827 8655 14142 Face 13630 8655 8689 14142 Face 13631 8689 8868 14142 Face 13632 8868 8827 14142 Face 13633 8742 8689 14143 Face 13634 8689 8579 14143 Face 13635 8579 8613 14143 Face 13636 8613 8742 14143 Face 13637 9042 9019 14144 Face 13638 9019 8868 14144 Face 13639 8868 8888 14144 Face 13640 8888 9042 14144 Face 13641 9075 9052 14145 Face 13642 9052 8900 14145 Face 13643 8900 8918 14145 Face 13644 8918 9075 14145 Face 13645 8756 8900 14146 Face 13646 8900 8888 14146 Face 13647 8888 8742 14146 Face 13648 8742 8756 14146 Face 13649 8701 8756 14147 Face 13650 8756 8613 14147 Face 13651 8613 8582 14147 Face 13652 8582 8701 14147 Face 13653 8784 8860 14148 Face 13654 8860 8970 14148 Face 13655 8970 8901 14148 Face 13656 8901 8784 14148 Face 13657 8669 8784 14149 Face 13658 8784 8709 14149 Face 13659 8709 8624 14149 Face 13660 8624 8669 14149 Face 13661 8635 8709 14150 Face 13662 8709 8814 14150 Face 13663 8814 8749 14150 Face 13664 8749 8635 14150 Face 13665 8542 8600 14151 Face 13666 8600 8570 14151 Face 13667 8570 8507 14151 Face 13668 8507 8542 14151 Face 13669 8502 8570 14152 Face 13670 8570 8624 14152 Face 13671 8624 8540 14152 Face 13672 8540 8502 14152 Face 13673 8961 9034 14153 Face 13674 9034 8918 14153 Face 13675 8918 8846 14153 Face 13676 8846 8961 14153 Face 13677 8455 8586 14154 Face 13678 8586 8639 14154 Face 13679 8639 8506 14154 Face 13680 8506 8455 14154 Face 13681 8506 8542 14155 Face 13682 8542 8461 14155 Face 13683 8461 8433 14155 Face 13684 8433 8506 14155 Face 13685 8440 8461 14156 Face 13686 8461 8507 14156 Face 13687 8507 8502 14156 Face 13688 8502 8440 14156 Face 13689 9241 9272 14157 Face 13690 9272 9257 14157 Face 13691 9257 9212 14157 Face 13692 9212 9241 14157 Face 13693 9101 9205 14158 Face 13694 9205 9272 14158 Face 13695 9272 9172 14158 Face 13696 9172 9101 14158 Face 13697 8421 8450 14159 Face 13698 8450 8554 14159 Face 13699 8554 8497 14159 Face 13700 8497 8421 14159 Face 13701 8593 8554 14160 Face 13702 8554 8595 14160 Face 13703 8595 8657 14160 Face 13704 8657 8593 14160 Face 13705 8632 8595 14161 Face 13706 8595 8490 14161 Face 13707 8490 8533 14161 Face 13708 8533 8632 14161 Face 13709 8432 8490 14162 Face 13710 8490 8450 14162 Face 13711 8450 8392 14162 Face 13712 8392 8432 14162 Face 13713 8280 8334 14163 Face 13714 8334 8392 14163 Face 13715 8392 8354 14163 Face 13716 8354 8280 14163 Face 13717 8473 8432 14164 Face 13718 8432 8405 14164 Face 13719 8405 8452 14164 Face 13720 8452 8473 14164 Face 13721 8380 8405 14165 Face 13722 8405 8334 14165 Face 13723 8334 8298 14165 Face 13724 8298 8380 14165 Face 13725 8233 8283 14166 Face 13726 8283 8298 14166 Face 13727 8298 8244 14166 Face 13728 8244 8233 14166 Face 13729 8444 8380 14167 Face 13730 8380 8370 14167 Face 13731 8370 8445 14167 Face 13732 8445 8444 14167 Face 13733 8384 8370 14168 Face 13734 8370 8283 14168 Face 13735 8283 8299 14168 Face 13736 8299 8384 14168 Face 13737 8285 8340 14169 Face 13738 8340 8299 14169 Face 13739 8299 8245 14169 Face 13740 8245 8285 14169 Face 13741 8454 8384 14170 Face 13742 8384 8415 14170 Face 13743 8415 8481 14170 Face 13744 8481 8454 14170 Face 13745 8442 8415 14171 Face 13746 8415 8340 14171 Face 13747 8340 8387 14171 Face 13748 8387 8442 14171 Face 13749 8404 8439 14172 Face 13750 8439 8387 14172 Face 13751 8387 8342 14172 Face 13752 8342 8404 14172 Face 13753 8505 8442 14173 Face 13754 8442 8498 14173 Face 13755 8498 8566 14173 Face 13756 8566 8505 14173 Face 13757 8562 8498 14174 Face 13758 8498 8439 14174 Face 13759 8439 8483 14174 Face 13760 8483 8562 14174 Face 13761 8451 8516 14175 Face 13762 8516 8483 14175 Face 13763 8483 8437 14175 Face 13764 8437 8451 14175 Face 13765 8619 8562 14176 Face 13766 8562 8627 14176 Face 13767 8627 8698 14176 Face 13768 8698 8619 14176 Face 13769 8623 8627 14177 Face 13770 8627 8516 14177 Face 13771 8516 8511 14177 Face 13772 8511 8623 14177 Face 13773 8397 8465 14178 Face 13774 8465 8511 14178 Face 13775 8511 8431 14178 Face 13776 8431 8397 14178 Face 13777 8695 8623 14179 Face 13778 8623 8551 14179 Face 13779 8551 8629 14179 Face 13780 8629 8695 14179 Face 13781 8480 8551 14180 Face 13782 8551 8465 14180 Face 13783 8465 8412 14180 Face 13784 8412 8480 14180 Face 13785 8236 8323 14181 Face 13786 8323 8412 14181 Face 13787 8412 8330 14181 Face 13788 8330 8236 14181 Face 13789 8535 8480 14182 Face 13790 8480 8411 14182 Face 13791 8411 8458 14182 Face 13792 8458 8535 14182 Face 13793 8311 8411 14183 Face 13794 8411 8323 14183 Face 13795 8323 8228 14183 Face 13796 8228 8311 14183 Face 13797 7958 8067 14184 Face 13798 8067 8228 14184 Face 13799 8228 8125 14184 Face 13800 8125 7958 14184 Face 13801 8376 8311 14185 Face 13802 8311 8192 14185 Face 13803 8192 8270 14185 Face 13804 8270 8376 14185 Face 13805 8130 8192 14186 Face 13806 8192 8067 14186 Face 13807 8067 8038 14186 Face 13808 8038 8130 14186 Face 13809 8028 8055 14187 Face 13810 8055 8038 14187 Face 13811 8038 8005 14187 Face 13812 8005 8028 14187 Face 13813 8205 8130 14188 Face 13814 8130 8098 14188 Face 13815 8098 8167 14188 Face 13816 8167 8205 14188 Face 13817 7946 8098 14189 Face 13818 8098 8055 14189 Face 13819 8055 7899 14189 Face 13820 7899 7946 14189 Face 13821 8009 7991 14190 Face 13822 7991 8030 14190 Face 13823 8030 8078 14190 Face 13824 8078 8009 14190 Face 13825 7942 8030 14191 Face 13826 8030 8005 14191 Face 13827 8005 7910 14191 Face 13828 7910 7942 14191 Face 13829 7851 8028 14192 Face 13830 8028 7991 14192 Face 13831 7991 7793 14192 Face 13832 7793 7851 14192 Face 13833 7589 7667 14193 Face 13834 7667 7899 14193 Face 13835 7899 7851 14193 Face 13836 7851 7589 14193 Face 13837 8010 7946 14194 Face 13838 7946 7757 14194 Face 13839 7757 7849 14194 Face 13840 7849 8010 14194 Face 13841 7542 7757 14195 Face 13842 7757 7667 14195 Face 13843 7667 7390 14195 Face 13844 7390 7542 14195 Face 13845 7495 7506 14196 Face 13846 7506 7793 14196 Face 13847 7793 7800 14196 Face 13848 7800 7495 14196 Face 13849 7245 7589 14197 Face 13850 7589 7506 14197 Face 13851 7506 7133 14197 Face 13852 7133 7245 14197 Face 13853 6799 7014 14198 Face 13854 7014 7390 14198 Face 13855 7390 7245 14198 Face 13856 7245 6799 14198 Face 13857 7702 7542 14199 Face 13858 7542 7326 14199 Face 13859 7326 7569 14199 Face 13860 7569 7702 14199 Face 13861 6631 6690 14200 Face 13862 6690 7133 14200 Face 13863 7133 7097 14200 Face 13864 7097 6631 14200 Face 13865 6260 6799 14201 Face 13866 6799 6690 14201 Face 13867 6690 6119 14201 Face 13868 6119 6260 14201 Face 13869 5703 5713 14202 Face 13870 5713 6119 14202 Face 13871 6119 6070 14202 Face 13872 6070 5703 14202 Face 13873 7541 7877 14203 Face 13874 7877 7600 14203 Face 13875 7600 7294 14203 Face 13876 7294 7541 14203 Face 13877 7468 7600 14204 Face 13878 7600 8132 14204 Face 13879 8132 7986 14204 Face 13880 7986 7468 14204 Face 13881 8413 8132 14205 Face 13882 8132 8321 14205 Face 13883 8321 8565 14205 Face 13884 8565 8413 14205 Face 13885 8453 8321 14206 Face 13886 8321 7877 14206 Face 13887 7877 8180 14206 Face 13888 8180 8453 14206 Face 13889 8118 8375 14207 Face 13890 8375 8180 14207 Face 13891 8180 7813 14207 Face 13892 7813 8118 14207 Face 13893 8666 8453 14208 Face 13894 8453 8577 14208 Face 13895 8577 8738 14208 Face 13896 8738 8666 14208 Face 13897 8677 8577 14209 Face 13898 8577 8375 14209 Face 13899 8375 8499 14209 Face 13900 8499 8677 14209 Face 13901 8318 8559 14210 Face 13902 8559 8499 14210 Face 13903 8499 8272 14210 Face 13904 8272 8318 14210 Face 13905 8806 8677 14211 Face 13906 8677 8766 14211 Face 13907 8766 8867 14211 Face 13908 8867 8806 14211 Face 13909 8800 8766 14212 Face 13910 8766 8559 14212 Face 13911 8559 8589 14212 Face 13912 8589 8800 14212 Face 13913 8368 8599 14213 Face 13914 8599 8589 14213 Face 13915 8589 8350 14213 Face 13916 8350 8368 14213 Face 13917 8887 8800 14214 Face 13918 8800 8792 14214 Face 13919 8792 8877 14214 Face 13920 8877 8887 14214 Face 13921 8770 8792 14215 Face 13922 8792 8599 14215 Face 13923 8599 8598 14215 Face 13924 8598 8770 14215 Face 13925 8386 8588 14216 Face 13926 8588 8598 14216 Face 13927 8598 8379 14216 Face 13928 8379 8386 14216 Face 13929 8851 8770 14217 Face 13930 8770 8727 14217 Face 13931 8727 8820 14217 Face 13932 8820 8851 14217 Face 13933 8628 8727 14218 Face 13934 8727 8588 14218 Face 13935 8588 8532 14218 Face 13936 8532 8628 14218 Face 13937 8337 8449 14219 Face 13938 8449 8532 14219 Face 13939 8532 8369 14219 Face 13940 8369 8337 14219 Face 13941 8724 8628 14220 Face 13942 8628 8508 14220 Face 13943 8508 8580 14220 Face 13944 8580 8724 14220 Face 13945 8462 8508 14221 Face 13946 8508 8449 14221 Face 13947 8449 8418 14221 Face 13948 8418 8462 14221 Face 13949 8301 8408 14222 Face 13950 8408 8418 14222 Face 13951 8418 8312 14222 Face 13952 8312 8301 14222 Face 13953 8521 8462 14223 Face 13954 8462 8460 14223 Face 13955 8460 8525 14223 Face 13956 8525 8521 14223 Face 13957 8484 8460 14224 Face 13958 8460 8408 14224 Face 13959 8408 8417 14224 Face 13960 8417 8484 14224 Face 13961 6805 7300 14225 Face 13962 7300 7088 14225 Face 13963 7088 6710 14225 Face 13964 6710 6805 14225 Face 13965 7001 7088 14226 Face 13966 7088 7294 14226 Face 13967 7294 7142 14226 Face 13968 7142 7001 14226 Face 13969 7813 7541 14227 Face 13970 7541 7300 14227 Face 13971 7300 7496 14227 Face 13972 7496 7813 14227 Face 13973 5868 5881 14228 Face 13974 5881 6710 14228 Face 13975 6710 6641 14228 Face 13976 6641 5868 14228 Face 13977 7016 6805 14229 Face 13978 6805 5927 14229 Face 13979 5927 6236 14229 Face 13980 6236 7016 14229 Face 13981 7335 7739 14230 Face 13982 7739 7496 14230 Face 13983 7496 7016 14230 Face 13984 7016 7335 14230 Face 13985 8272 8118 14231 Face 13986 8118 7739 14231 Face 13987 7739 7890 14231 Face 13988 7890 8272 14231 Face 13989 6536 6810 14232 Face 13990 6810 6236 14232 Face 13991 6236 5838 14232 Face 13992 5838 6536 14232 Face 13993 7497 7335 14233 Face 13994 7335 6810 14233 Face 13995 6810 7050 14233 Face 13996 7050 7497 14233 Face 13997 7523 7916 14234 Face 13998 7916 7890 14234 Face 13999 7890 7497 14234 Face 14000 7497 7523 14234 Face 14001 8350 8318 14235 Face 14002 8318 7916 14235 Face 14003 7916 7956 14235 Face 14004 7956 8350 14235 Face 14005 6744 7103 14236 Face 14006 7103 7050 14236 Face 14007 7050 6712 14236 Face 14008 6712 6744 14236 Face 14009 7561 7523 14237 Face 14010 7523 7103 14237 Face 14011 7103 7157 14237 Face 14012 7157 7561 14237 Face 14013 7617 7998 14238 Face 14014 7998 7956 14238 Face 14015 7956 7561 14238 Face 14016 7561 7617 14238 Face 14017 8379 8368 14239 Face 14018 8368 7998 14239 Face 14019 7998 8035 14239 Face 14020 8035 8379 14239 Face 14021 6843 7210 14240 Face 14022 7210 7157 14240 Face 14023 7157 6776 14240 Face 14024 6776 6843 14240 Face 14025 7653 7617 14241 Face 14026 7617 7210 14241 Face 14027 7210 7297 14241 Face 14028 7297 7653 14241 Face 14029 7694 8057 14242 Face 14030 8057 8035 14242 Face 14031 8035 7653 14242 Face 14032 7653 7694 14242 Face 14033 8369 8386 14243 Face 14034 8386 8057 14243 Face 14035 8057 8094 14243 Face 14036 8094 8369 14243 Face 14037 7131 7358 14244 Face 14038 7358 7297 14244 Face 14039 7297 7054 14244 Face 14040 7054 7131 14244 Face 14041 7745 7694 14245 Face 14042 7694 7358 14245 Face 14043 7358 7421 14245 Face 14044 7421 7745 14245 Face 14045 7805 8117 14246 Face 14046 8117 8094 14246 Face 14047 8094 7745 14246 Face 14048 7745 7805 14246 Face 14049 8312 8337 14247 Face 14050 8337 8117 14247 Face 14051 8117 8140 14247 Face 14052 8140 8312 14247 Face 14053 7293 7490 14248 Face 14054 7490 7421 14248 Face 14055 7421 7171 14248 Face 14056 7171 7293 14248 Face 14057 7857 7805 14249 Face 14058 7805 7490 14249 Face 14059 7490 7567 14249 Face 14060 7567 7857 14249 Face 14061 7896 8155 14250 Face 14062 8155 8140 14250 Face 14063 8140 7857 14250 Face 14064 7857 7896 14250 Face 14065 8316 8301 14251 Face 14066 8301 8155 14251 Face 14067 8155 8182 14251 Face 14068 8182 8316 14251 Face 14069 7454 7646 14252 Face 14070 7646 7567 14252 Face 14071 7567 7377 14252 Face 14072 7377 7454 14252 Face 14073 7944 7896 14253 Face 14074 7896 7646 14253 Face 14075 7646 7716 14253 Face 14076 7716 7944 14253 Face 14077 7143 7202 14254 Face 14078 7202 7377 14254 Face 14079 7377 7293 14254 Face 14080 7293 7143 14254 Face 14081 7499 7454 14255 Face 14082 7454 7287 14255 Face 14083 7287 7322 14255 Face 14084 7322 7499 14255 Face 14085 7083 7287 14256 Face 14086 7287 7202 14256 Face 14087 7202 7052 14256 Face 14088 7052 7083 14256 Face 14089 7005 7040 14257 Face 14090 7040 7171 14257 Face 14091 7171 7131 14257 Face 14092 7131 7005 14257 Face 14093 6997 7143 14258 Face 14094 7143 7040 14258 Face 14095 7040 6902 14258 Face 14096 6902 6997 14258 Face 14097 6853 7005 14259 Face 14098 7005 7054 14259 Face 14099 7054 6860 14259 Face 14100 6860 6853 14259 Face 14101 6834 6907 14260 Face 14102 6907 7052 14260 Face 14103 7052 6997 14260 Face 14104 6997 6834 14260 Face 14105 7113 7083 14261 Face 14106 7083 6924 14261 Face 14107 6924 6949 14261 Face 14108 6949 7113 14261 Face 14109 6750 6924 14262 Face 14110 6924 6907 14262 Face 14111 6907 6737 14262 Face 14112 6737 6750 14262 Face 14113 6598 6719 14263 Face 14114 6719 6902 14263 Face 14115 6902 6853 14263 Face 14116 6853 6598 14263 Face 14117 6653 6834 14264 Face 14118 6834 6719 14264 Face 14119 6719 6489 14264 Face 14120 6489 6653 14264 Face 14121 6353 6451 14265 Face 14122 6451 6860 14265 Face 14123 6860 6843 14265 Face 14124 6843 6353 14265 Face 14125 6351 6598 14266 Face 14126 6598 6451 14266 Face 14127 6451 6134 14266 Face 14128 6134 6351 14266 Face 14129 6402 6546 14267 Face 14130 6546 6737 14267 Face 14131 6737 6653 14267 Face 14132 6653 6402 14267 Face 14133 6761 6750 14268 Face 14134 6750 6586 14268 Face 14135 6586 6614 14268 Face 14136 6614 6761 14268 Face 14137 6310 6586 14269 Face 14138 6586 6546 14269 Face 14139 6546 6276 14269 Face 14140 6276 6310 14269 Face 14141 6093 6196 14270 Face 14142 6196 6489 14270 Face 14143 6489 6351 14270 Face 14144 6351 6093 14270 Face 14145 6159 6402 14271 Face 14146 6402 6196 14271 Face 14147 6196 6028 14271 Face 14148 6028 6159 14271 Face 14149 5954 6093 14272 Face 14150 6093 6134 14272 Face 14151 6134 5945 14272 Face 14152 5945 5954 14272 Face 14153 5995 6047 14273 Face 14154 6047 6276 14273 Face 14155 6276 6159 14273 Face 14156 6159 5995 14273 Face 14157 6358 6310 14274 Face 14158 6310 6071 14274 Face 14159 6071 6100 14274 Face 14160 6100 6358 14274 Face 14161 5896 6071 14275 Face 14162 6071 6047 14275 Face 14163 6047 5893 14275 Face 14164 5893 5896 14275 Face 14165 5828 5899 14276 Face 14166 5899 6028 14276 Face 14167 6028 5954 14276 Face 14168 5954 5828 14276 Face 14169 5882 5995 14277 Face 14170 5995 5899 14277 Face 14171 5899 5840 14277 Face 14172 5840 5882 14277 Face 14173 5660 5708 14278 Face 14174 5708 5945 14278 Face 14175 5945 5938 14278 Face 14176 5938 5660 14278 Face 14177 5714 5828 14279 Face 14178 5828 5708 14279 Face 14179 5708 5570 14279 Face 14180 5570 5714 14279 Face 14181 5795 5784 14280 Face 14182 5784 5893 14280 Face 14183 5893 5882 14280 Face 14184 5882 5795 14280 Face 14185 5863 5896 14281 Face 14186 5896 5765 14281 Face 14187 5765 5712 14281 Face 14188 5712 5863 14281 Face 14189 5655 5765 14282 Face 14190 5765 5784 14282 Face 14191 5784 5681 14282 Face 14192 5681 5655 14282 Face 14193 5701 5795 14283 Face 14194 5795 5840 14283 Face 14195 5840 5728 14283 Face 14196 5728 5701 14283 Face 14197 5583 5578 14284 Face 14198 5578 5681 14284 Face 14199 5681 5701 14284 Face 14200 5701 5583 14284 Face 14201 5629 5655 14285 Face 14202 5655 5566 14285 Face 14203 5566 5558 14285 Face 14204 5558 5629 14285 Face 14205 5569 5587 14286 Face 14206 5587 5728 14286 Face 14207 5728 5714 14286 Face 14208 5714 5569 14286 Face 14209 6320 5935 14287 Face 14210 5935 5938 14287 Face 14211 5938 6353 14287 Face 14212 6353 6320 14287 Face 14213 5661 5659 14288 Face 14214 5659 5935 14288 Face 14215 5935 5941 14288 Face 14216 5941 5661 14288 Face 14217 6299 5950 14289 Face 14218 5950 5941 14289 Face 14219 5941 6304 14289 Face 14220 6304 6299 14289 Face 14221 5617 5664 14290 Face 14222 5664 5950 14290 Face 14223 5950 5898 14290 Face 14224 5898 5617 14290 Face 14225 5838 5616 14291 Face 14226 5616 5898 14291 Face 14227 5898 6111 14291 Face 14228 6111 5838 14291 Face 14229 6304 6320 14292 Face 14230 6320 6776 14292 Face 14231 6776 6744 14292 Face 14232 6744 6304 14292 Face 14233 6111 6299 14293 Face 14234 6299 6712 14293 Face 14235 6712 6536 14293 Face 14236 6536 6111 14293 Face 14237 7327 7502 14294 Face 14238 7502 7505 14294 Face 14239 7505 7312 14294 Face 14240 7312 7327 14294 Face 14241 7493 7505 14295 Face 14242 7505 7717 14295 Face 14243 7717 7664 14295 Face 14244 7664 7493 14295 Face 14245 7860 7717 14296 Face 14246 7717 7720 14296 Face 14247 7720 7876 14296 Face 14248 7876 7860 14296 Face 14249 7737 7720 14297 Face 14250 7720 7502 14297 Face 14251 7502 7512 14297 Face 14252 7512 7737 14297 Face 14253 7000 7144 14298 Face 14254 7144 7047 14298 Face 14255 7047 6906 14298 Face 14256 6906 7000 14298 Face 14257 7035 7047 14299 Face 14258 7047 7312 14299 Face 14259 7312 7302 14299 Face 14260 7302 7035 14299 Face 14261 7347 7327 14300 Face 14262 7327 7144 14300 Face 14263 7144 7180 14300 Face 14264 7180 7347 14300 Face 14265 7364 7538 14301 Face 14266 7538 7512 14301 Face 14267 7512 7347 14301 Face 14268 7347 7364 14301 Face 14269 7907 7737 14302 Face 14270 7737 7767 14302 Face 14271 7767 7919 14302 Face 14272 7919 7907 14302 Face 14273 7706 7767 14303 Face 14274 7767 7538 14303 Face 14275 7538 7509 14303 Face 14276 7509 7706 14303 Face 14277 7023 7176 14304 Face 14278 7176 7180 14304 Face 14279 7180 7036 14304 Face 14280 7036 7023 14304 Face 14281 7386 7364 14305 Face 14282 7364 7176 14305 Face 14283 7176 7186 14305 Face 14284 7186 7386 14305 Face 14285 7332 7445 14306 Face 14286 7445 7509 14306 Face 14287 7509 7386 14306 Face 14288 7386 7332 14306 Face 14289 7811 7706 14307 Face 14290 7706 7555 14307 Face 14291 7555 7636 14307 Face 14292 7636 7811 14307 Face 14293 7411 7555 14308 Face 14294 7555 7445 14308 Face 14295 7445 7324 14308 Face 14296 7324 7411 14308 Face 14297 7189 7332 14309 Face 14298 7332 7186 14309 Face 14299 7186 7076 14309 Face 14300 7076 7189 14309 Face 14301 7031 7134 14310 Face 14302 7134 7324 14310 Face 14303 7324 7189 14310 Face 14304 7189 7031 14310 Face 14305 7472 7411 14311 Face 14306 7411 7212 14311 Face 14307 7212 7313 14311 Face 14308 7313 7472 14311 Face 14309 7075 7212 14312 Face 14310 7212 7134 14312 Face 14311 7134 7011 14312 Face 14312 7011 7075 14312 Face 14313 6762 6923 14313 Face 14314 6923 7076 14313 Face 14315 7076 6945 14313 Face 14316 6945 6762 14313 Face 14317 6957 7031 14314 Face 14318 7031 6923 14314 Face 14319 6923 6821 14314 Face 14320 6821 6957 14314 Face 14321 6864 6922 14315 Face 14322 6922 7011 14315 Face 14323 7011 6957 14315 Face 14324 6957 6864 14315 Face 14325 7148 7075 14316 Face 14326 7075 6969 14316 Face 14327 6969 7025 14316 Face 14328 7025 7148 14316 Face 14329 6742 6969 14317 Face 14330 6969 6922 14317 Face 14331 6922 6727 14317 Face 14332 6727 6742 14317 Face 14333 6703 6864 14318 Face 14334 6864 6821 14318 Face 14335 6821 6655 14318 Face 14336 6655 6703 14318 Face 14337 6326 6333 14319 Face 14338 6333 6727 14319 Face 14339 6727 6703 14319 Face 14340 6703 6326 14319 Face 14341 6771 6742 14320 Face 14342 6742 6302 14320 Face 14343 6302 6307 14320 Face 14344 6307 6771 14320 Face 14345 5929 6302 14321 Face 14346 6302 6333 14321 Face 14347 6333 5968 14321 Face 14348 5968 5929 14321 Face 14349 6208 6287 14322 Face 14350 6287 6655 14322 Face 14351 6655 6576 14322 Face 14352 6576 6208 14322 Face 14353 5977 6326 14323 Face 14354 6326 6287 14323 Face 14355 6287 5953 14323 Face 14356 5953 5977 14323 Face 14357 5662 5658 14324 Face 14358 5658 5968 14324 Face 14359 5968 5977 14324 Face 14360 5977 5662 14324 Face 14361 5916 5929 14325 Face 14362 5929 5639 14325 Face 14363 5639 5633 14325 Face 14364 5633 5916 14325 Face 14365 5634 5651 14326 Face 14366 5651 5953 14326 Face 14367 5953 5920 14326 Face 14368 5920 5634 14326 Face 14369 7788 7860 14327 Face 14370 7860 7924 14327 Face 14371 7924 7836 14327 Face 14372 7836 7788 14327 Face 14373 7985 7924 14328 Face 14374 7924 7957 14328 Face 14375 7957 8031 14328 Face 14376 8031 7985 14328 Face 14377 7997 7957 14329 Face 14378 7957 7876 14329 Face 14379 7876 7902 14329 Face 14380 7902 7997 14329 Face 14381 8050 7997 14330 Face 14382 7997 8004 14330 Face 14383 8004 8048 14330 Face 14384 8048 8050 14330 Face 14385 8023 8004 14331 Face 14386 8004 7902 14331 Face 14387 7902 7911 14331 Face 14388 7911 8023 14331 Face 14389 8107 8023 14332 Face 14390 8023 8056 14332 Face 14391 8056 8158 14332 Face 14392 8158 8107 14332 Face 14393 8039 8056 14333 Face 14394 8056 7911 14333 Face 14395 7911 7907 14333 Face 14396 7907 8039 14333 Face 14397 8163 8039 14334 Face 14398 8039 8026 14334 Face 14399 8026 8139 14334 Face 14400 8139 8163 14334 Face 14401 8007 8026 14335 Face 14402 8026 7919 14335 Face 14403 7919 7917 14335 Face 14404 7917 8007 14335 Face 14405 8061 8007 14336 Face 14406 8007 7934 14336 Face 14407 7934 7968 14336 Face 14408 7968 8061 14336 Face 14409 7835 7934 14337 Face 14410 7934 7917 14337 Face 14411 7917 7811 14337 Face 14412 7811 7835 14337 Face 14413 7853 7835 14338 Face 14414 7835 7659 14338 Face 14415 7659 7689 14338 Face 14416 7689 7853 14338 Face 14417 7508 7659 14339 Face 14418 7659 7636 14339 Face 14419 7636 7472 14339 Face 14420 7472 7508 14339 Face 14421 7556 7508 14340 Face 14422 7508 7387 14340 Face 14423 7387 7457 14340 Face 14424 7457 7556 14340 Face 14425 7249 7387 14341 Face 14426 7387 7313 14341 Face 14427 7313 7148 14341 Face 14428 7148 7249 14341 Face 14429 7355 7249 14342 Face 14430 7249 7115 14342 Face 14431 7115 7233 14342 Face 14432 7233 7355 14342 Face 14433 6859 7115 14343 Face 14434 7115 7025 14343 Face 14435 7025 6771 14343 Face 14436 6771 6859 14343 Face 14437 6916 6859 14344 Face 14438 6859 6362 14344 Face 14439 6362 6393 14344 Face 14440 6393 6916 14344 Face 14441 5932 6362 14345 Face 14442 6362 6307 14345 Face 14443 6307 5916 14345 Face 14444 5916 5932 14345 Face 14445 5949 5932 14346 Face 14446 5932 5641 14346 Face 14447 5641 5653 14346 Face 14448 5653 5949 14346 Face 14449 8257 8294 14347 Face 14450 8294 8313 14347 Face 14451 8313 8253 14347 Face 14452 8253 8257 14347 Face 14453 8274 8313 14348 Face 14454 8313 8377 14348 Face 14455 8377 8358 14348 Face 14456 8358 8274 14348 Face 14457 8436 8377 14349 Face 14458 8377 8341 14349 Face 14459 8341 8382 14349 Face 14460 8382 8436 14349 Face 14461 8286 8341 14350 Face 14462 8341 8294 14350 Face 14463 8294 8255 14350 Face 14464 8255 8286 14350 Face 14465 8209 8230 14351 Face 14466 8230 8210 14351 Face 14467 8210 8174 14351 Face 14468 8174 8209 14351 Face 14469 8141 8210 14352 Face 14470 8210 8253 14352 Face 14471 8253 8208 14352 Face 14472 8208 8141 14352 Face 14473 8235 8257 14353 Face 14474 8257 8230 14353 Face 14475 8230 8217 14353 Face 14476 8217 8235 14353 Face 14477 8175 8198 14354 Face 14478 8198 8153 14354 Face 14479 8153 8126 14354 Face 14480 8126 8175 14354 Face 14481 8033 8153 14355 Face 14482 8153 8174 14355 Face 14483 8174 8066 14355 Face 14484 8066 8033 14355 Face 14485 8204 8209 14356 Face 14486 8209 8198 14356 Face 14487 8198 8196 14356 Face 14488 8196 8204 14356 Face 14489 8088 8143 14357 Face 14490 8143 8089 14357 Face 14491 8089 8040 14357 Face 14492 8040 8088 14357 Face 14493 7975 8089 14358 Face 14494 8089 8126 14358 Face 14495 8126 8001 14358 Face 14496 8001 7975 14358 Face 14497 8189 8175 14359 Face 14498 8175 8143 14359 Face 14499 8143 8151 14359 Face 14500 8151 8189 14359 Face 14501 7881 7985 14360 Face 14502 7985 8040 14360 Face 14503 8040 7936 14360 Face 14504 7936 7881 14360 Face 14505 8095 8088 14361 Face 14506 8088 8031 14361 Face 14507 8031 8050 14361 Face 14508 8050 8095 14361 Face 14509 8108 8095 14362 Face 14510 8095 8049 14362 Face 14511 8049 8051 14362 Face 14512 8051 8108 14362 Face 14513 8047 8049 14363 Face 14514 8049 8048 14363 Face 14515 8048 8063 14363 Face 14516 8063 8047 14363 Face 14517 8158 8163 14364 Face 14518 8163 8218 14364 Face 14519 8218 8207 14364 Face 14520 8207 8158 14364 Face 14521 8251 8218 14365 Face 14522 8218 8195 14365 Face 14523 8195 8234 14365 Face 14524 8234 8251 14365 Face 14525 8138 8195 14366 Face 14526 8195 8139 14366 Face 14527 8139 8061 14366 Face 14528 8061 8138 14366 Face 14529 8184 8138 14367 Face 14530 8138 8017 14367 Face 14531 8017 8093 14367 Face 14532 8093 8184 14367 Face 14533 7892 8017 14368 Face 14534 8017 7968 14368 Face 14535 7968 7853 14368 Face 14536 7853 7892 14368 Face 14537 7949 7892 14369 Face 14538 7892 7736 14369 Face 14539 7736 7803 14369 Face 14540 7803 7949 14369 Face 14541 7621 7736 14370 Face 14542 7736 7689 14370 Face 14543 7689 7556 14370 Face 14544 7556 7621 14370 Face 14545 7684 7621 14371 Face 14546 7621 7518 14371 Face 14547 7518 7613 14371 Face 14548 7613 7684 14371 Face 14549 7451 7518 14372 Face 14550 7518 7457 14372 Face 14551 7457 7355 14372 Face 14552 7355 7451 14372 Face 14553 7536 7451 14373 Face 14554 7451 7370 14373 Face 14555 7370 7481 14373 Face 14556 7481 7536 14373 Face 14557 7354 7370 14374 Face 14558 7370 7233 14374 Face 14559 7233 7181 14374 Face 14560 7181 7354 14374 Face 14561 7704 7634 14375 Face 14562 7634 7588 14375 Face 14563 7588 7668 14375 Face 14564 7668 7704 14375 Face 14565 7594 7588 14376 Face 14566 7588 7481 14376 Face 14567 7481 7474 14376 Face 14568 7474 7594 14376 Face 14569 7613 7536 14377 Face 14570 7536 7634 14377 Face 14571 7634 7685 14377 Face 14572 7685 7613 14377 Face 14573 7838 7769 14378 Face 14574 7769 7685 14378 Face 14575 7685 7754 14378 Face 14576 7754 7838 14378 Face 14577 7803 7684 14379 Face 14578 7684 7769 14379 Face 14579 7769 7872 14379 Face 14580 7872 7803 14379 Face 14581 8121 8027 14380 Face 14582 8027 7872 14380 Face 14583 7872 7939 14380 Face 14584 7939 8121 14380 Face 14585 8093 7949 14381 Face 14586 7949 8027 14381 Face 14587 8027 8169 14381 Face 14588 8169 8093 14381 Face 14589 8269 8227 14382 Face 14590 8227 8169 14382 Face 14591 8169 8222 14382 Face 14592 8222 8269 14382 Face 14593 8234 8184 14383 Face 14594 8184 8227 14383 Face 14595 8227 8260 14383 Face 14596 8260 8234 14383 Face 14597 8295 8267 14384 Face 14598 8267 8260 14384 Face 14599 8260 8293 14384 Face 14600 8293 8295 14384 Face 14601 8240 8251 14385 Face 14602 8251 8267 14385 Face 14603 8267 8249 14385 Face 14604 8249 8240 14385 Face 14605 8223 8206 14386 Face 14606 8206 8249 14386 Face 14607 8249 8271 14386 Face 14608 8271 8223 14386 Face 14609 8207 8240 14387 Face 14610 8240 8188 14387 Face 14611 8188 8162 14387 Face 14612 8162 8207 14387 Face 14613 8134 8188 14388 Face 14614 8188 8206 14388 Face 14615 8206 8160 14388 Face 14616 8160 8134 14388 Face 14617 8113 8082 14389 Face 14618 8082 8160 14389 Face 14619 8160 8176 14389 Face 14620 8176 8113 14389 Face 14621 8109 8134 14390 Face 14622 8134 8060 14390 Face 14623 8060 8047 14390 Face 14624 8047 8109 14390 Face 14625 8051 8060 14391 Face 14626 8060 8082 14391 Face 14627 8082 8058 14391 Face 14628 8058 8051 14391 Face 14629 8106 8097 14392 Face 14630 8097 8058 14392 Face 14631 8058 8083 14392 Face 14632 8083 8106 14392 Face 14633 8151 8108 14393 Face 14634 8108 8097 14393 Face 14635 8097 8136 14393 Face 14636 8136 8151 14393 Face 14637 8196 8189 14394 Face 14638 8189 8136 14394 Face 14639 8136 8149 14394 Face 14640 8149 8196 14394 Face 14641 8162 8109 14395 Face 14642 8109 8063 14395 Face 14643 8063 8107 14395 Face 14644 8107 8162 14395 Face 14645 8435 8436 14396 Face 14646 8436 8497 14396 Face 14647 8497 8517 14396 Face 14648 8517 8435 14396 Face 14649 8354 8421 14397 Face 14650 8421 8382 14397 Face 14651 8382 8319 14397 Face 14652 8319 8354 14397 Face 14653 8232 8254 14398 Face 14654 8254 8319 14398 Face 14655 8319 8286 14398 Face 14656 8286 8232 14398 Face 14657 8244 8280 14399 Face 14658 8280 8254 14399 Face 14659 8254 8216 14399 Face 14660 8216 8244 14399 Face 14661 8173 8199 14400 Face 14662 8199 8216 14400 Face 14663 8216 8193 14400 Face 14664 8193 8173 14400 Face 14665 8245 8233 14401 Face 14666 8233 8199 14401 Face 14667 8199 8215 14401 Face 14668 8215 8245 14401 Face 14669 8237 8261 14402 Face 14670 8261 8215 14402 Face 14671 8215 8191 14402 Face 14672 8191 8237 14402 Face 14673 8342 8285 14403 Face 14674 8285 8261 14403 Face 14675 8261 8315 14403 Face 14676 8315 8342 14403 Face 14677 8351 8371 14404 Face 14678 8371 8315 14404 Face 14679 8315 8287 14404 Face 14680 8287 8351 14404 Face 14681 8437 8404 14405 Face 14682 8404 8371 14405 Face 14683 8371 8416 14405 Face 14684 8416 8437 14405 Face 14685 8430 8451 14406 Face 14686 8451 8416 14406 Face 14687 8416 8395 14406 Face 14688 8395 8430 14406 Face 14689 8181 8200 14407 Face 14690 8200 8255 14407 Face 14691 8255 8235 14407 Face 14692 8235 8181 14407 Face 14693 8193 8232 14408 Face 14694 8232 8200 14408 Face 14695 8200 8168 14408 Face 14696 8168 8193 14408 Face 14697 8146 8159 14409 Face 14698 8159 8168 14409 Face 14699 8168 8154 14409 Face 14700 8154 8146 14409 Face 14701 8191 8173 14410 Face 14702 8173 8159 14410 Face 14703 8159 8171 14410 Face 14704 8171 8191 14410 Face 14705 8194 8214 14411 Face 14706 8214 8171 14411 Face 14707 8171 8150 14411 Face 14708 8150 8194 14411 Face 14709 8287 8237 14412 Face 14710 8237 8214 14412 Face 14711 8214 8262 14412 Face 14712 8262 8287 14412 Face 14713 8300 8327 14413 Face 14714 8327 8262 14413 Face 14715 8262 8243 14413 Face 14716 8243 8300 14413 Face 14717 8395 8351 14414 Face 14718 8351 8327 14414 Face 14719 8327 8363 14414 Face 14720 8363 8395 14414 Face 14721 8336 8381 14415 Face 14722 8381 8363 14415 Face 14723 8363 8332 14415 Face 14724 8332 8336 14415 Face 14725 8431 8430 14416 Face 14726 8430 8381 14416 Face 14727 8381 8367 14416 Face 14728 8367 8431 14416 Face 14729 8266 8326 14417 Face 14730 8326 8367 14417 Face 14731 8367 8314 14417 Face 14732 8314 8266 14417 Face 14733 8330 8397 14418 Face 14734 8397 8326 14418 Face 14735 8326 8247 14418 Face 14736 8247 8330 14418 Face 14737 8003 8128 14419 Face 14738 8128 8247 14419 Face 14739 8247 8178 14419 Face 14740 8178 8003 14419 Face 14741 8125 8236 14420 Face 14742 8236 8128 14420 Face 14743 8128 7973 14420 Face 14744 7973 8125 14420 Face 14745 7801 7868 14421 Face 14746 7868 7973 14421 Face 14747 7973 7889 14421 Face 14748 7889 7801 14421 Face 14749 7910 7958 14422 Face 14750 7958 7868 14422 Face 14751 7868 7822 14422 Face 14752 7822 7910 14422 Face 14753 7729 7826 14423 Face 14754 7826 7822 14423 Face 14755 7822 7742 14423 Face 14756 7742 7729 14423 Face 14757 7979 7942 14424 Face 14758 7942 7826 14424 Face 14759 7826 7847 14424 Face 14760 7847 7979 14424 Face 14761 7741 7729 14425 Face 14762 7729 7668 14425 Face 14763 7668 7679 14425 Face 14764 7679 7741 14425 Face 14765 7754 7704 14426 Face 14766 7704 7742 14426 Face 14767 7742 7801 14426 Face 14768 7801 7754 14426 Face 14769 7939 7838 14427 Face 14770 7838 7889 14427 Face 14771 7889 8003 14427 Face 14772 8003 7939 14427 Face 14773 8222 8121 14428 Face 14774 8121 8178 14428 Face 14775 8178 8266 14428 Face 14776 8266 8222 14428 Face 14777 8293 8269 14429 Face 14778 8269 8314 14429 Face 14779 8314 8336 14429 Face 14780 8336 8293 14429 Face 14781 8271 8295 14430 Face 14782 8295 8332 14430 Face 14783 8332 8300 14430 Face 14784 8300 8271 14430 Face 14785 8176 8223 14431 Face 14786 8223 8243 14431 Face 14787 8243 8194 14431 Face 14788 8194 8176 14431 Face 14789 8083 8113 14432 Face 14790 8113 8150 14432 Face 14791 8150 8127 14432 Face 14792 8127 8083 14432 Face 14793 8148 8135 14433 Face 14794 8135 8127 14433 Face 14795 8127 8146 14433 Face 14796 8146 8148 14433 Face 14797 8149 8106 14434 Face 14798 8106 8135 14434 Face 14799 8135 8165 14434 Face 14800 8165 8149 14434 Face 14801 8217 8204 14435 Face 14802 8204 8165 14435 Face 14803 8165 8172 14435 Face 14804 8172 8217 14435 Face 14805 8154 8181 14436 Face 14806 8181 8172 14436 Face 14807 8172 8148 14436 Face 14808 8148 8154 14436 Face 14809 5695 5690 14437 Face 14810 5690 5580 14437 Face 14811 5580 5581 14437 Face 14812 5581 5695 14437 Face 14813 5626 5582 14438 Face 14814 5582 5698 14438 Face 14815 5698 5752 14438 Face 14816 5752 5626 14438 Face 14817 5790 5698 14439 Face 14818 5698 5690 14439 Face 14819 5690 5791 14439 Face 14820 5791 5790 14439 Face 14821 5721 5706 14440 Face 14822 5706 5585 14440 Face 14823 5585 5586 14440 Face 14824 5586 5721 14440 Face 14825 5808 5695 14441 Face 14826 5695 5706 14441 Face 14827 5706 5831 14441 Face 14828 5831 5808 14441 Face 14829 5758 5742 14442 Face 14830 5742 5591 14442 Face 14831 5591 5594 14442 Face 14832 5594 5758 14442 Face 14833 5849 5721 14443 Face 14834 5721 5742 14443 Face 14835 5742 5861 14443 Face 14836 5861 5849 14443 Face 14837 5880 5869 14444 Face 14838 5869 5791 14444 Face 14839 5791 5808 14444 Face 14840 5808 5880 14444 Face 14841 5866 5790 14445 Face 14842 5790 5859 14445 Face 14843 5859 5906 14445 Face 14844 5906 5866 14445 Face 14845 5921 5859 14446 Face 14846 5859 5869 14446 Face 14847 5869 5948 14446 Face 14848 5948 5921 14446 Face 14849 5922 5903 14447 Face 14850 5903 5831 14447 Face 14851 5831 5849 14447 Face 14852 5849 5922 14447 Face 14853 5969 5880 14448 Face 14854 5880 5903 14448 Face 14855 5903 5996 14448 Face 14856 5996 5969 14448 Face 14857 5947 5931 14449 Face 14858 5931 5861 14449 Face 14859 5861 5873 14449 Face 14860 5873 5947 14449 Face 14861 6006 5922 14450 Face 14862 5922 5931 14450 Face 14863 5931 6008 14450 Face 14864 6008 6006 14450 Face 14865 6056 6037 14451 Face 14866 6037 5948 14451 Face 14867 5948 5969 14451 Face 14868 5969 6056 14451 Face 14869 5965 5921 14452 Face 14870 5921 6010 14452 Face 14871 6010 6030 14452 Face 14872 6030 5965 14452 Face 14873 6117 6010 14453 Face 14874 6010 6037 14453 Face 14875 6037 6156 14453 Face 14876 6156 6117 14453 Face 14877 6073 6065 14454 Face 14878 6065 5996 14454 Face 14879 5996 6006 14454 Face 14880 6006 6073 14454 Face 14881 6178 6056 14455 Face 14882 6056 6065 14455 Face 14883 6065 6184 14455 Face 14884 6184 6178 14455 Face 14885 6099 6088 14456 Face 14886 6088 6008 14456 Face 14887 6008 6022 14456 Face 14888 6022 6099 14456 Face 14889 6125 6073 14457 Face 14890 6073 6088 14457 Face 14891 6088 6139 14457 Face 14892 6139 6125 14457 Face 14893 6460 6261 14458 Face 14894 6261 6305 14458 Face 14895 6305 6572 14458 Face 14896 6572 6460 14458 Face 14897 6371 6305 14459 Face 14898 6305 6156 14459 Face 14899 6156 6178 14459 Face 14900 6178 6371 14459 Face 14901 6118 6117 14460 Face 14902 6117 6180 14460 Face 14903 6180 6174 14460 Face 14904 6174 6118 14460 Face 14905 6214 6180 14461 Face 14906 6180 6261 14461 Face 14907 6261 6246 14461 Face 14908 6246 6214 14461 Face 14909 6416 6388 14462 Face 14910 6388 6184 14462 Face 14911 6184 6203 14462 Face 14912 6203 6416 14462 Face 14913 6644 6371 14463 Face 14914 6371 6388 14463 Face 14915 6388 6648 14463 Face 14916 6648 6644 14463 Face 14917 6471 6432 14464 Face 14918 6432 6241 14464 Face 14919 6241 6278 14464 Face 14920 6278 6471 14464 Face 14921 6149 6241 14465 Face 14922 6241 6203 14465 Face 14923 6203 6125 14465 Face 14924 6125 6149 14465 Face 14925 6649 6416 14466 Face 14926 6416 6432 14466 Face 14927 6432 6645 14466 Face 14928 6645 6649 14466 Face 14929 5712 5629 14467 Face 14930 5629 5557 14467 Face 14931 5557 5626 14467 Face 14932 5626 5712 14467 Face 14933 5962 5863 14468 Face 14934 5863 5752 14468 Face 14935 5752 5858 14468 Face 14936 5858 5962 14468 Face 14937 5858 5866 14469 Face 14938 5866 6004 14469 Face 14939 6004 6000 14469 Face 14940 6000 5858 14469 Face 14941 6081 6004 14470 Face 14942 6004 6040 14470 Face 14943 6040 6113 14470 Face 14944 6113 6081 14470 Face 14945 6068 6040 14471 Face 14946 6040 5906 14471 Face 14947 5906 5965 14471 Face 14948 5965 6068 14471 Face 14949 6147 6094 14472 Face 14950 6094 6030 14472 Face 14951 6030 6118 14472 Face 14952 6118 6147 14472 Face 14953 6229 6068 14473 Face 14954 6068 6094 14473 Face 14955 6094 6226 14473 Face 14956 6226 6229 14473 Face 14957 6239 6188 14474 Face 14958 6188 6212 14474 Face 14959 6212 6247 14474 Face 14960 6247 6239 14474 Face 14961 6270 6212 14475 Face 14962 6212 6204 14475 Face 14963 6204 6267 14475 Face 14964 6267 6270 14475 Face 14965 6235 6204 14476 Face 14966 6204 6174 14476 Face 14967 6174 6213 14476 Face 14968 6213 6235 14476 Face 14969 6256 6147 14477 Face 14970 6147 6188 14477 Face 14971 6188 6295 14477 Face 14972 6295 6256 14477 Face 14973 6356 6275 14478 Face 14974 6275 6291 14478 Face 14975 6291 6375 14478 Face 14976 6375 6356 14478 Face 14977 6327 6291 14479 Face 14978 6291 6294 14479 Face 14979 6294 6344 14479 Face 14980 6344 6327 14479 Face 14981 6554 6294 14480 Face 14982 6294 6277 14480 Face 14983 6277 6545 14480 Face 14984 6545 6554 14480 Face 14985 6271 6277 14481 Face 14986 6277 6267 14481 Face 14987 6267 6251 14481 Face 14988 6251 6271 14481 Face 14989 6257 6270 14482 Face 14990 6270 6275 14482 Face 14991 6275 6264 14482 Face 14992 6264 6257 14482 Face 14993 6503 6460 14483 Face 14994 6460 6830 14483 Face 14995 6830 6873 14483 Face 14996 6873 6503 14483 Face 14997 6898 6830 14484 Face 14998 6830 6572 14484 Face 14999 6572 6644 14484 Face 15000 6644 6898 14484 Face 15001 5806 5798 14485 Face 15002 5798 5606 14485 Face 15003 5606 5610 14485 Face 15004 5610 5806 14485 Face 15005 5595 5602 14486 Face 15006 5602 5779 14486 Face 15007 5779 5766 14486 Face 15008 5766 5595 14486 Face 15009 5904 5779 14487 Face 15010 5779 5798 14487 Face 15011 5798 5926 14487 Face 15012 5926 5904 14487 Face 15013 6029 6015 14488 Face 15014 6015 5926 14488 Face 15015 5926 5934 14488 Face 15016 5934 6029 14488 Face 15017 5885 5904 14489 Face 15018 5904 5998 14489 Face 15019 5998 5970 14489 Face 15020 5970 5885 14489 Face 15021 6061 5998 14490 Face 15022 5998 6015 14490 Face 15023 6015 6078 14490 Face 15024 6078 6061 14490 Face 15025 6112 6129 14491 Face 15026 6129 6078 14491 Face 15027 6078 6090 14491 Face 15028 6090 6112 14491 Face 15029 6042 6061 14492 Face 15030 6061 6124 14492 Face 15031 6124 6110 14492 Face 15032 6110 6042 14492 Face 15033 6181 6124 14493 Face 15034 6124 6129 14493 Face 15035 6129 6193 14493 Face 15036 6193 6181 14493 Face 15037 6338 6319 14494 Face 15038 6319 6193 14494 Face 15039 6193 6185 14494 Face 15040 6185 6338 14494 Face 15041 6168 6181 14495 Face 15042 6181 6283 14495 Face 15043 6283 6252 14495 Face 15044 6252 6168 14495 Face 15045 6355 6283 14496 Face 15046 6283 6319 14496 Face 15047 6319 6424 14496 Face 15048 6424 6355 14496 Face 15049 6540 6500 14497 Face 15050 6500 6424 14497 Face 15051 6424 6456 14497 Face 15052 6456 6540 14497 Face 15053 6288 6355 14498 Face 15054 6355 6411 14498 Face 15055 6411 6328 14498 Face 15056 6328 6288 14498 Face 15057 6443 6411 14499 Face 15058 6411 6500 14499 Face 15059 6500 6544 14499 Face 15060 6544 6443 14499 Face 15061 6383 6434 14500 Face 15062 6434 6278 14500 Face 15063 6278 6243 14500 Face 15064 6243 6383 14500 Face 15065 6626 6471 14501 Face 15066 6471 6434 14501 Face 15067 6434 6597 14501 Face 15068 6597 6626 14501 Face 15069 6350 6443 14502 Face 15070 6443 6448 14502 Face 15071 6448 6352 14502 Face 15072 6352 6350 14502 Face 15073 6445 6448 14503 Face 15074 6448 6535 14503 Face 15075 6535 6530 14503 Face 15076 6530 6445 14503 Face 15077 6567 6535 14504 Face 15078 6535 6544 14504 Face 15079 6544 6575 14504 Face 15080 6575 6567 14504 Face 15081 6509 6594 14505 Face 15082 6594 6555 14505 Face 15083 6555 6485 14505 Face 15084 6485 6509 14505 Face 15085 6571 6555 14506 Face 15086 6555 6675 14506 Face 15087 6675 6697 14506 Face 15088 6697 6571 14506 Face 15089 6663 6675 14507 Face 15090 6675 6594 14507 Face 15091 6594 6599 14507 Face 15092 6599 6663 14507 Face 15093 6463 6480 14508 Face 15094 6480 6518 14508 Face 15095 6518 6502 14508 Face 15096 6502 6463 14508 Face 15097 6558 6518 14509 Face 15098 6518 6521 14509 Face 15099 6521 6592 14509 Face 15100 6592 6558 14509 Face 15101 6553 6521 14510 Face 15102 6521 6480 14510 Face 15103 6480 6504 14510 Face 15104 6504 6553 14510 Face 15105 6552 6510 14511 Face 15106 6510 6497 14511 Face 15107 6497 6543 14511 Face 15108 6543 6552 14511 Face 15109 6495 6497 14512 Face 15110 6497 6454 14512 Face 15111 6454 6452 14512 Face 15112 6452 6495 14512 Face 15113 6396 6454 14513 Face 15114 6454 6466 14513 Face 15115 6466 6418 14513 Face 15116 6418 6396 14513 Face 15117 6439 6466 14514 Face 15118 6466 6510 14514 Face 15119 6510 6486 14514 Face 15120 6486 6439 14514 Face 15121 6273 6366 14515 Face 15122 6366 6401 14515 Face 15123 6401 6293 14515 Face 15124 6293 6273 14515 Face 15125 6433 6401 14516 Face 15126 6401 6486 14516 Face 15127 6486 6513 14516 Face 15128 6513 6433 14516 Face 15129 6387 6439 14517 Face 15130 6439 6366 14517 Face 15131 6366 6340 14517 Face 15132 6340 6387 14517 Face 15133 6039 6104 14518 Face 15134 6104 6144 14518 Face 15135 6144 6076 14518 Face 15136 6076 6039 14518 Face 15137 6164 6144 14519 Face 15138 6144 6293 14519 Face 15139 6293 6316 14519 Face 15140 6316 6164 14519 Face 15141 6219 6273 14520 Face 15142 6273 6104 14520 Face 15143 6104 6075 14520 Face 15144 6075 6219 14520 Face 15145 6074 6060 14521 Face 15146 6060 6076 14521 Face 15147 6076 6098 14521 Face 15148 6098 6074 14521 Face 15149 5993 6039 14522 Face 15150 6039 6060 14522 Face 15151 6060 6009 14522 Face 15152 6009 5993 14522 Face 15153 5772 5894 14523 Face 15154 5894 5915 14523 Face 15155 5915 5783 14523 Face 15156 5783 5772 14523 Face 15157 5928 5915 14524 Face 15158 5915 6009 14524 Face 15159 6009 6021 14524 Face 15160 6021 5928 14524 Face 15161 5972 5993 14525 Face 15162 5993 5894 14525 Face 15163 5894 5891 14525 Face 15164 5891 5972 14525 Face 15165 5607 5603 14526 Face 15166 5603 5783 14526 Face 15167 5783 5801 14526 Face 15168 5801 5607 14526 Face 15169 5743 5772 14527 Face 15170 5772 5597 14527 Face 15171 5597 5592 14527 Face 15172 5592 5743 14527 Face 15173 5665 5686 14528 Face 15174 5686 5579 14528 Face 15175 5579 5568 14528 Face 15176 5568 5665 14528 Face 15177 5836 5743 14529 Face 15178 5743 5686 14529 Face 15179 5686 5759 14529 Face 15180 5759 5836 14529 Face 15181 5856 5837 14530 Face 15182 5837 5786 14530 Face 15183 5786 5829 14530 Face 15184 5829 5856 14530 Face 15185 5775 5786 14531 Face 15186 5786 5797 14531 Face 15187 5797 5777 14531 Face 15188 5777 5775 14531 Face 15189 5782 5797 14532 Face 15190 5797 5848 14532 Face 15191 5848 5847 14532 Face 15192 5847 5782 14532 Face 15193 5878 5848 14533 Face 15194 5848 5837 14533 Face 15195 5837 5870 14533 Face 15196 5870 5878 14533 Face 15197 5676 5672 14534 Face 15198 5672 5573 14534 Face 15199 5573 5574 14534 Face 15200 5574 5676 14534 Face 15201 5727 5665 14535 Face 15202 5665 5672 14535 Face 15203 5672 5738 14535 Face 15204 5738 5727 14535 Face 15205 5822 5775 14536 Face 15206 5775 5794 14536 Face 15207 5794 5839 14536 Face 15208 5839 5822 14536 Face 15209 5773 5794 14537 Face 15210 5794 5777 14537 Face 15211 5777 5762 14537 Face 15212 5762 5773 14537 Face 15213 5951 5936 14538 Face 15214 5936 5818 14538 Face 15215 5818 5811 14538 Face 15216 5811 5951 14538 Face 15217 5738 5818 14539 Face 15218 5818 5845 14539 Face 15219 5845 5773 14539 Face 15220 5773 5738 14539 Face 15221 5865 5845 14540 Face 15222 5845 5933 14540 Face 15223 5933 5946 14540 Face 15224 5946 5865 14540 Face 15225 6062 5933 14541 Face 15226 5933 5936 14541 Face 15227 5936 6087 14541 Face 15228 6087 6062 14541 Face 15229 6321 6284 14542 Face 15230 6284 6087 14542 Face 15231 6087 6146 14542 Face 15232 6146 6321 14542 Face 15233 6031 6062 14543 Face 15234 6062 6253 14543 Face 15235 6253 6183 14543 Face 15236 6183 6031 14543 Face 15237 6359 6253 14544 Face 15238 6253 6284 14544 Face 15239 6284 6396 14544 Face 15240 6396 6359 14544 Face 15241 5663 5680 14545 Face 15242 5680 5577 14545 Face 15243 5577 5563 14545 Face 15244 5563 5663 14545 Face 15245 5811 5676 14546 Face 15246 5676 5680 14546 Face 15247 5680 5827 14546 Face 15248 5827 5811 14546 Face 15249 5780 5663 14547 Face 15250 5663 5562 14547 Face 15251 5562 5702 14547 Face 15252 5702 5780 14547 Face 15253 5983 5975 14548 Face 15254 5975 5827 14548 Face 15255 5827 5780 14548 Face 15256 5780 5983 14548 Face 15257 6146 5951 14549 Face 15258 5951 5975 14549 Face 15259 5975 6176 14549 Face 15260 6176 6146 14549 Face 15261 5961 5967 14550 Face 15262 5967 5702 14550 Face 15263 5702 5671 14550 Face 15264 5671 5961 14550 Face 15265 6189 5983 14551 Face 15266 5983 5967 14551 Face 15267 5967 6215 14551 Face 15268 6215 6189 14551 Face 15269 5835 5862 14552 Face 15270 5862 5631 14552 Face 15271 5631 5621 14552 Face 15272 5621 5835 14552 Face 15273 5668 5654 14553 Face 15274 5654 5917 14553 Face 15275 5917 5955 14553 Face 15276 5955 5668 14553 Face 15277 6155 5917 14554 Face 15278 5917 5862 14554 Face 15279 5862 6057 14554 Face 15280 6057 6155 14554 Face 15281 5875 5864 14555 Face 15282 5864 5632 14555 Face 15283 5632 5635 14555 Face 15284 5635 5875 14555 Face 15285 5614 5620 14556 Face 15286 5620 5834 14556 Face 15287 5834 5814 14556 Face 15288 5814 5614 14556 Face 15289 6014 5834 14557 Face 15290 5834 5864 14557 Face 15291 5864 6072 14557 Face 15292 6072 6014 14557 Face 15293 5884 5895 14558 Face 15294 5895 5647 14558 Face 15295 5647 5640 14558 Face 15296 5640 5884 14558 Face 15297 5637 5642 14559 Face 15298 5642 5886 14559 Face 15299 5886 5879 14559 Face 15300 5879 5637 14559 Face 15301 6133 5886 14560 Face 15302 5886 5895 14560 Face 15303 5895 6143 14560 Face 15304 6143 6133 14560 Face 15305 6504 6399 14561 Face 15306 6399 6417 14561 Face 15307 6417 6589 14561 Face 15308 6589 6504 14561 Face 15309 6487 6417 14562 Face 15310 6417 6176 14562 Face 15311 6176 6189 14562 Face 15312 6189 6487 14562 Face 15313 6452 6321 14563 Face 15314 6321 6399 14563 Face 15315 6399 6463 14563 Face 15316 6463 6452 14563 Face 15317 6524 6511 14564 Face 15318 6511 6215 14564 Face 15319 6215 6227 14564 Face 15320 6227 6524 14564 Face 15321 6617 6487 14565 Face 15322 6487 6511 14565 Face 15323 6511 6635 14565 Face 15324 6635 6617 14565 Face 15325 6194 6280 14566 Face 15326 6280 6057 14566 Face 15327 6057 6011 14566 Face 15328 6011 6194 14566 Face 15329 6220 6155 14567 Face 15330 6155 6428 14567 Face 15331 6428 6512 14567 Face 15332 6512 6220 14567 Face 15333 6687 6428 14568 Face 15334 6428 6280 14568 Face 15335 6280 6591 14568 Face 15336 6591 6687 14568 Face 15337 6384 6331 14569 Face 15338 6331 6072 14569 Face 15339 6072 6108 14569 Face 15340 6108 6384 14569 Face 15341 5988 6014 14570 Face 15342 6014 6223 14570 Face 15343 6223 6171 14570 Face 15344 6171 5988 14570 Face 15345 6539 6223 14571 Face 15346 6223 6331 14571 Face 15347 6331 6634 14571 Face 15348 6634 6539 14571 Face 15349 6374 6407 14572 Face 15350 6407 6143 14572 Face 15351 6143 6123 14572 Face 15352 6123 6374 14572 Face 15353 6122 6133 14573 Face 15354 6133 6404 14573 Face 15355 6404 6395 14573 Face 15356 6395 6122 14573 Face 15357 6683 6404 14574 Face 15358 6404 6407 14574 Face 15359 6407 6660 14574 Face 15360 6660 6683 14574 Face 15361 6627 6553 14575 Face 15362 6553 6606 14575 Face 15363 6606 6694 14575 Face 15364 6694 6627 14575 Face 15365 6630 6606 14576 Face 15366 6606 6589 14576 Face 15367 6589 6617 14576 Face 15368 6617 6630 14576 Face 15369 6728 6630 14577 Face 15370 6630 6635 14577 Face 15371 6635 6738 14577 Face 15372 6738 6728 14577 Face 15373 6783 6813 14578 Face 15374 6813 6591 14578 Face 15375 6591 6516 14578 Face 15376 6516 6783 14578 Face 15377 6733 6687 14579 Face 15378 6687 6882 14579 Face 15379 6882 6921 14579 Face 15380 6921 6733 14579 Face 15381 7037 6882 14580 Face 15382 6882 6813 14580 Face 15383 6813 7010 14580 Face 15384 7010 7037 14580 Face 15385 6913 6869 14581 Face 15386 6869 6634 14581 Face 15387 6634 6682 14581 Face 15388 6682 6913 14581 Face 15389 6475 6539 14582 Face 15390 6539 6774 14582 Face 15391 6774 6745 14582 Face 15392 6745 6475 14582 Face 15393 6983 6774 14583 Face 15394 6774 6869 14583 Face 15395 6869 7043 14583 Face 15396 7043 6983 14583 Face 15397 6758 6842 14584 Face 15398 6842 6660 14584 Face 15399 6660 6609 14584 Face 15400 6609 6758 14584 Face 15401 6692 6683 14585 Face 15402 6683 6891 14585 Face 15403 6891 6917 14585 Face 15404 6917 6692 14585 Face 15405 7079 6891 14586 Face 15406 6891 6842 14586 Face 15407 6842 7035 14586 Face 15408 7035 7079 14586 Face 15409 6814 6947 14587 Face 15410 6947 6849 14587 Face 15411 6849 6739 14587 Face 15412 6739 6814 14587 Face 15413 6854 6849 14588 Face 15414 6849 7042 14588 Face 15415 7042 7051 14588 Face 15416 7051 6854 14588 Face 15417 7135 7042 14589 Face 15418 7042 6947 14589 Face 15419 6947 7015 14589 Face 15420 7015 7135 14589 Face 15421 7243 7197 14590 Face 15422 7197 7065 14590 Face 15423 7065 7080 14590 Face 15424 7080 7243 14590 Face 15425 6920 7065 14591 Face 15426 7065 7015 14591 Face 15427 7015 6883 14591 Face 15428 6883 6920 14591 Face 15429 7262 7135 14592 Face 15430 7135 7197 14592 Face 15431 7197 7338 14592 Face 15432 7338 7262 14592 Face 15433 7129 7152 14593 Face 15434 7152 7010 14593 Face 15435 7010 6984 14593 Face 15436 6984 7129 14593 Face 15437 7074 7037 14594 Face 15438 7037 7187 14594 Face 15439 7187 7222 14594 Face 15440 7222 7074 14594 Face 15441 7331 7187 14595 Face 15442 7187 7152 14595 Face 15443 7152 7267 14595 Face 15444 7267 7331 14595 Face 15445 7289 7227 14596 Face 15446 7227 7043 14596 Face 15447 7043 7095 14596 Face 15448 7095 7289 14596 Face 15449 6952 6983 14597 Face 15450 6983 7150 14597 Face 15451 7150 7110 14597 Face 15452 7110 6952 14597 Face 15453 7308 7150 14598 Face 15454 7150 7227 14598 Face 15455 7227 7373 14598 Face 15456 7373 7308 14598 Face 15457 7102 7079 14599 Face 15458 7079 7310 14599 Face 15459 7310 7307 14599 Face 15460 7307 7102 14599 Face 15461 7460 7310 14600 Face 15462 7310 7302 14600 Face 15463 7302 7493 14600 Face 15464 7493 7460 14600 Face 15465 6872 6893 14601 Face 15466 6893 6648 14601 Face 15467 6648 6649 14601 Face 15468 6649 6872 14601 Face 15469 7149 6898 14602 Face 15470 6898 6893 14602 Face 15471 6893 7132 14602 Face 15472 7132 7149 14602 Face 15473 6766 6828 14603 Face 15474 6828 6645 14603 Face 15475 6645 6626 14603 Face 15476 6626 6766 14603 Face 15477 7094 6872 14604 Face 15478 6872 6828 14604 Face 15479 6828 7032 14604 Face 15480 7032 7094 14604 Face 15481 7380 7422 14605 Face 15482 7422 7132 14605 Face 15483 7132 7094 14605 Face 15484 7094 7380 14605 Face 15485 7159 7149 14606 Face 15486 7149 7450 14606 Face 15487 7450 7461 14606 Face 15488 7461 7159 14606 Face 15489 7619 7450 14607 Face 15490 7450 7422 14607 Face 15491 7422 7638 14607 Face 15492 7638 7619 14607 Face 15493 7195 7309 14608 Face 15494 7309 7032 14608 Face 15495 7032 6973 14608 Face 15496 6973 7195 14608 Face 15497 7609 7380 14609 Face 15498 7380 7309 14609 Face 15499 7309 7514 14609 Face 15500 7514 7609 14609 Face 15501 7792 7674 14610 Face 15502 7674 7812 14610 Face 15503 7812 7967 14610 Face 15504 7967 7792 14610 Face 15505 7832 7812 14611 Face 15506 7812 7638 14611 Face 15507 7638 7609 14611 Face 15508 7609 7832 14611 Face 15509 7611 7619 14612 Face 15510 7619 7674 14612 Face 15511 7674 7622 14612 Face 15512 7622 7611 14612 Face 15513 8012 7832 14613 Face 15514 7832 7726 14613 Face 15515 7726 7903 14613 Face 15516 7903 8012 14613 Face 15517 7642 7726 14614 Face 15518 7726 7514 14614 Face 15519 7514 7444 14614 Face 15520 7444 7642 14614 Face 15521 6706 6734 14615 Face 15522 6734 6597 14615 Face 15523 6597 6578 14615 Face 15524 6578 6706 14615 Face 15525 6973 6766 14616 Face 15526 6766 6734 14616 Face 15527 6734 6912 14616 Face 15528 6912 6973 14616 Face 15529 7073 7124 14617 Face 15530 7124 6912 14617 Face 15531 6912 6866 14617 Face 15532 6866 7073 14617 Face 15533 7444 7195 14618 Face 15534 7195 7124 14618 Face 15535 7124 7361 14618 Face 15536 7361 7444 14618 Face 15537 7558 7571 14619 Face 15538 7571 7361 14619 Face 15539 7361 7343 14619 Face 15540 7343 7558 14619 Face 15541 7824 7642 14620 Face 15542 7642 7571 14620 Face 15543 7571 7749 14620 Face 15544 7749 7824 14620 Face 15545 7816 7866 14621 Face 15546 7866 7749 14621 Face 15547 7749 7698 14621 Face 15548 7698 7816 14621 Face 15549 7903 7824 14622 Face 15550 7824 7938 14622 Face 15551 7938 8043 14622 Face 15552 8043 7903 14622 Face 15553 8080 7938 14623 Face 15554 7938 7866 14623 Face 15555 7866 7981 14623 Face 15556 7981 8080 14623 Face 15557 7500 7429 14624 Face 15558 7429 7303 14624 Face 15559 7303 7357 14624 Face 15560 7357 7500 14624 Face 15561 7199 7303 14625 Face 15562 7303 7267 14625 Face 15563 7267 7196 14625 Face 15564 7196 7199 14625 Face 15565 7374 7331 14626 Face 15566 7331 7429 14626 Face 15567 7429 7480 14626 Face 15568 7480 7374 14626 Face 15569 7580 7575 14627 Face 15570 7575 7437 14627 Face 15571 7437 7462 14627 Face 15572 7462 7580 14627 Face 15573 7360 7437 14628 Face 15574 7437 7357 14628 Face 15575 7357 7281 14628 Face 15576 7281 7360 14628 Face 15577 7601 7500 14629 Face 15578 7500 7575 14629 Face 15579 7575 7665 14629 Face 15580 7665 7601 14629 Face 15581 7459 7520 14630 Face 15582 7520 7449 14630 Face 15583 7449 7395 14630 Face 15584 7395 7459 14630 Face 15585 7397 7449 14631 Face 15586 7449 7462 14631 Face 15587 7462 7398 14631 Face 15588 7398 7397 14631 Face 15589 7663 7580 14632 Face 15590 7580 7520 14632 Face 15591 7520 7592 14632 Face 15592 7592 7663 14632 Face 15593 7261 7308 14633 Face 15594 7308 7395 14633 Face 15595 7395 7356 14633 Face 15596 7356 7261 14633 Face 15597 7501 7459 14634 Face 15598 7459 7373 14634 Face 15599 7373 7419 14634 Face 15600 7419 7501 14634 Face 15601 7282 7262 14635 Face 15602 7262 7435 14635 Face 15603 7435 7453 14635 Face 15604 7453 7282 14635 Face 15605 7473 7435 14636 Face 15606 7435 7338 14636 Face 15607 7338 7382 14636 Face 15608 7382 7473 14636 Face 15609 7709 7746 14637 Face 15610 7746 7656 14637 Face 15611 7656 7626 14637 Face 15612 7626 7709 14637 Face 15613 7660 7656 14638 Face 15614 7656 7778 14638 Face 15615 7778 7782 14638 Face 15616 7782 7660 14638 Face 15617 7871 7778 14639 Face 15618 7778 7746 14639 Face 15619 7746 7845 14639 Face 15620 7845 7871 14639 Face 15621 7836 7881 14640 Face 15622 7881 7718 14640 Face 15623 7718 7670 14640 Face 15624 7670 7836 14640 Face 15625 7629 7718 14641 Face 15626 7718 7796 14641 Face 15627 7796 7710 14641 Face 15628 7710 7629 14641 Face 15629 7845 7796 14642 Face 15630 7796 7936 14642 Face 15631 7936 7975 14642 Face 15632 7975 7845 14642 Face 15633 7533 7660 14643 Face 15634 7660 7698 14643 Face 15635 7698 7558 14643 Face 15636 7558 7533 14643 Face 15637 7925 7816 14644 Face 15638 7816 7782 14644 Face 15639 7782 7900 14644 Face 15640 7900 7925 14644 Face 15641 5846 5860 14645 Face 15642 5860 5630 14645 Face 15643 5630 5625 14645 Face 15644 5625 5846 14645 Face 15645 6123 5884 14646 Face 15646 5884 5860 14646 Face 15647 5860 6064 14646 Face 15648 6064 6123 14646 Face 15649 6292 6313 14647 Face 15650 6313 6064 14647 Face 15651 6064 6044 14647 Face 15652 6044 6292 14647 Face 15653 6609 6374 14648 Face 15654 6374 6313 14648 Face 15655 6313 6564 14648 Face 15656 6564 6609 14648 Face 15657 6755 6758 14649 Face 15658 6758 6564 14649 Face 15659 6564 6549 14649 Face 15660 6549 6755 14649 Face 15661 5813 5826 14650 Face 15662 5826 5618 14650 Face 15663 5618 5612 14650 Face 15664 5612 5813 14650 Face 15665 5628 5624 14651 Face 15666 5624 5844 14651 Face 15667 5844 5850 14651 Face 15668 5850 5628 14651 Face 15669 6036 5844 14652 Face 15670 5844 5826 14652 Face 15671 5826 6012 14652 Face 15672 6012 6036 14652 Face 15673 5774 5804 14653 Face 15674 5804 5609 14653 Face 15675 5609 5598 14653 Face 15676 5598 5774 14653 Face 15677 5987 5813 14654 Face 15678 5813 5804 14654 Face 15679 5804 5963 14654 Face 15680 5963 5987 14654 Face 15681 5746 5740 14655 Face 15682 5740 5590 14655 Face 15683 5590 5646 14655 Face 15684 5646 5746 14655 Face 15685 5908 5774 14656 Face 15686 5774 5740 14656 Face 15687 5740 5857 14656 Face 15688 5857 5908 14656 Face 15689 6170 6230 14657 Face 15690 6230 6012 14657 Face 15691 6012 5987 14657 Face 15692 5987 6170 14657 Face 15693 6052 6036 14658 Face 15694 6036 6282 14658 Face 15695 6282 6300 14658 Face 15696 6300 6052 14658 Face 15697 6573 6282 14659 Face 15698 6282 6230 14659 Face 15699 6230 6494 14659 Face 15700 6494 6573 14659 Face 15701 6024 6105 14660 Face 15702 6105 5963 14660 Face 15703 5963 5908 14660 Face 15704 5908 6024 14660 Face 15705 6382 6170 14661 Face 15706 6170 6105 14661 Face 15707 6105 6274 14661 Face 15708 6274 6382 14661 Face 15709 5832 5909 14662 Face 15710 5909 5857 14662 Face 15711 5857 5746 14662 Face 15712 5746 5832 14662 Face 15713 6120 6024 14663 Face 15714 6024 5909 14663 Face 15715 5909 5966 14663 Face 15716 5966 6120 14663 Face 15717 6595 6699 14664 Face 15718 6699 6494 14664 Face 15719 6494 6382 14664 Face 15720 6382 6595 14664 Face 15721 6556 6573 14665 Face 15722 6573 6754 14665 Face 15723 6754 6755 14665 Face 15724 6755 6556 14665 Face 15725 6906 6754 14666 Face 15726 6754 6699 14666 Face 15727 6699 6800 14666 Face 15728 6800 6906 14666 Face 15729 6198 6419 14667 Face 15730 6419 6274 14667 Face 15731 6274 6120 14667 Face 15732 6120 6198 14667 Face 15733 6686 6595 14668 Face 15734 6595 6419 14668 Face 15735 6419 6493 14668 Face 15736 6493 6686 14668 Face 15737 5851 6003 14669 Face 15738 6003 5966 14669 Face 15739 5966 5832 14669 Face 15740 5832 5851 14669 Face 15741 6232 6198 14670 Face 15742 6198 6003 14670 Face 15743 6003 6005 14670 Face 15744 6005 6232 14670 Face 15745 6718 6874 14671 Face 15746 6874 6800 14671 Face 15747 6800 6686 14671 Face 15748 6686 6718 14671 Face 15749 7036 7000 14672 Face 15750 7000 6874 14672 Face 15751 6874 6896 14672 Face 15752 6896 7036 14672 Face 15753 6182 6482 14673 Face 15754 6482 6493 14673 Face 15755 6493 6232 14673 Face 15756 6232 6182 14673 Face 15757 6722 6718 14674 Face 15758 6718 6482 14674 Face 15759 6482 6453 14674 Face 15760 6453 6722 14674 Face 15761 5816 5976 14675 Face 15762 5976 6005 14675 Face 15763 6005 5851 14675 Face 15764 5851 5816 14675 Face 15765 6197 6182 14676 Face 15766 6182 5976 14676 Face 15767 5976 5991 14676 Face 15768 5991 6197 14676 Face 15769 6696 6875 14677 Face 15770 6875 6896 14677 Face 15771 6896 6722 14677 Face 15772 6722 6696 14677 Face 15773 6945 7023 14678 Face 15774 7023 6875 14678 Face 15775 6875 6765 14678 Face 15776 6765 6945 14678 Face 15777 6169 6410 14679 Face 15778 6410 6453 14679 Face 15779 6453 6197 14679 Face 15780 6197 6169 14679 Face 15781 6608 6696 14680 Face 15782 6696 6410 14680 Face 15783 6410 6330 14680 Face 15784 6330 6608 14680 Face 15785 6141 6169 14681 Face 15786 6169 5991 14681 Face 15787 5991 5959 14681 Face 15788 5959 6141 14681 Face 15789 6413 6624 14682 Face 15790 6624 6765 14682 Face 15791 6765 6608 14682 Face 15792 6608 6413 14682 Face 15793 6576 6762 14683 Face 15794 6762 6624 14683 Face 15795 6624 6370 14683 Face 15796 6370 6576 14683 Face 15797 6069 6206 14684 Face 15798 6206 6330 14684 Face 15799 6330 6141 14684 Face 15800 6141 6069 14684 Face 15801 6205 6413 14685 Face 15802 6413 6206 14685 Face 15803 6206 6084 14685 Face 15804 6084 6205 14685 Face 15805 5982 6069 14686 Face 15806 6069 5959 14686 Face 15807 5959 5876 14686 Face 15808 5876 5982 14686 Face 15809 6034 6128 14687 Face 15810 6128 6370 14687 Face 15811 6370 6205 14687 Face 15812 6205 6034 14687 Face 15813 5920 6208 14688 Face 15814 6208 6128 14688 Face 15815 6128 5883 14688 Face 15816 5883 5920 14688 Face 15817 5874 5952 14689 Face 15818 5952 6084 14689 Face 15819 6084 5982 14689 Face 15820 5982 5874 14689 Face 15821 5855 6034 14690 Face 15822 6034 5952 14690 Face 15823 5952 5792 14690 Face 15824 5792 5855 14690 Face 15825 5733 5819 14691 Face 15826 5819 5876 14691 Face 15827 5876 5816 14691 Face 15828 5816 5733 14691 Face 15829 5744 5874 14692 Face 15830 5874 5819 14692 Face 15831 5819 5704 14692 Face 15832 5704 5744 14692 Face 15833 5613 5627 14693 Face 15834 5627 5883 14693 Face 15835 5883 5855 14693 Face 15836 5855 5613 14693 Face 15837 5593 5599 14694 Face 15838 5599 5792 14694 Face 15839 5792 5744 14694 Face 15840 5744 5593 14694 Face 15841 5638 5584 14695 Face 15842 5584 5704 14695 Face 15843 5704 5733 14695 Face 15844 5733 5638 14695 Face 15845 7464 7452 14696 Face 15846 7452 7165 14696 Face 15847 7165 7177 14696 Face 15848 7177 7464 14696 Face 15849 6889 7165 14697 Face 15850 7165 7137 14697 Face 15851 7137 6871 14697 Face 15852 6871 6889 14697 Face 15853 7107 7137 14698 Face 15854 7137 7417 14698 Face 15855 7417 7384 14698 Face 15856 7384 7107 14698 Face 15857 7627 7417 14699 Face 15858 7417 7452 14699 Face 15859 7452 7630 14699 Face 15860 7630 7627 14699 Face 15861 7951 7815 14700 Face 15862 7815 7676 14700 Face 15863 7676 7792 14700 Face 15864 7792 7951 14700 Face 15865 7620 7676 14701 Face 15866 7676 7630 14701 Face 15867 7630 7608 14701 Face 15868 7608 7620 14701 Face 15869 7559 7627 14702 Face 15870 7627 7756 14702 Face 15871 7756 7707 14702 Face 15872 7707 7559 14702 Face 15873 7869 7756 14703 Face 15874 7756 7815 14703 Face 15875 7815 7926 14703 Face 15876 7926 7869 14703 Face 15877 8124 7953 14704 Face 15878 7953 7926 14704 Face 15879 7926 8064 14704 Face 15880 8064 8124 14704 Face 15881 7804 7869 14705 Face 15882 7869 7909 14705 Face 15883 7909 7861 14705 Face 15884 7861 7804 14705 Face 15885 7933 7909 14706 Face 15886 7909 7953 14706 Face 15887 7953 7965 14706 Face 15888 7965 7933 14706 Face 15889 8052 7971 14707 Face 15890 7971 7965 14707 Face 15891 7965 8133 14707 Face 15892 8133 8052 14707 Face 15893 7886 7933 14708 Face 15894 7933 7927 14708 Face 15895 7927 7879 14708 Face 15896 7879 7886 14708 Face 15897 7883 7927 14709 Face 15898 7927 7960 14709 Face 15899 7960 7906 14709 Face 15900 7906 7883 14709 Face 15901 7976 7960 14710 Face 15902 7960 7971 14710 Face 15903 7971 7982 14710 Face 15904 7982 7976 14710 Face 15905 7568 7566 14711 Face 15906 7566 7697 14711 Face 15907 7697 7695 14711 Face 15908 7695 7568 14711 Face 15909 7814 7697 14712 Face 15910 7697 7696 14712 Face 15911 7696 7806 14712 Face 15912 7806 7814 14712 Face 15913 7683 7696 14713 Face 15914 7696 7565 14713 Face 15915 7565 7557 14713 Face 15916 7557 7683 14713 Face 15917 7433 7565 14714 Face 15918 7565 7566 14714 Face 15919 7566 7427 14714 Face 15920 7427 7433 14714 Face 15921 7248 7268 14715 Face 15922 7268 7426 14715 Face 15923 7426 7433 14715 Face 15924 7433 7248 14715 Face 15925 7557 7426 14716 Face 15926 7426 7414 14716 Face 15927 7414 7539 14716 Face 15928 7539 7557 14716 Face 15929 7096 7275 14717 Face 15930 7275 7268 14717 Face 15931 7268 7089 14717 Face 15932 7089 7096 14717 Face 15933 6939 6944 14718 Face 15934 6944 7071 14718 Face 15935 7071 7062 14718 Face 15936 7062 6939 14718 Face 15937 7236 7071 14719 Face 15938 7071 7078 14719 Face 15939 7078 7248 14719 Face 15940 7248 7236 14719 Face 15941 7089 7078 14720 Face 15942 7078 6954 14720 Face 15943 6954 6961 14720 Face 15944 6961 7089 14720 Face 15945 6808 6954 14721 Face 15946 6954 6944 14721 Face 15947 6944 6802 14721 Face 15948 6802 6808 14721 Face 15949 6670 6678 14722 Face 15950 6678 6802 14722 Face 15951 6802 6797 14722 Face 15952 6797 6670 14722 Face 15953 6819 6808 14723 Face 15954 6808 6698 14723 Face 15955 6698 6709 14723 Face 15956 6709 6819 14723 Face 15957 6559 6698 14724 Face 15958 6698 6678 14724 Face 15959 6678 6538 14724 Face 15960 6538 6559 14724 Face 15961 6585 6559 14725 Face 15962 6559 6375 14725 Face 15963 6375 6403 14725 Face 15964 6403 6585 14725 Face 15965 6348 6356 14726 Face 15966 6356 6538 14726 Face 15967 6538 6523 14726 Face 15968 6523 6348 14726 Face 15969 6467 6462 14727 Face 15970 6462 6226 14727 Face 15971 6226 6256 14727 Face 15972 6256 6467 14727 Face 15973 6242 6229 14728 Face 15974 6229 6472 14728 Face 15975 6472 6481 14728 Face 15976 6481 6242 14728 Face 15977 6666 6472 14729 Face 15978 6472 6462 14729 Face 15979 6462 6651 14729 Face 15980 6651 6666 14729 Face 15981 6501 6491 14730 Face 15982 6491 6295 14730 Face 15983 6295 6318 14730 Face 15984 6318 6501 14730 Face 15985 6647 6467 14731 Face 15986 6467 6491 14731 Face 15987 6491 6652 14731 Face 15988 6652 6647 14731 Face 15989 6787 6794 14732 Face 15990 6794 6651 14732 Face 15991 6651 6647 14732 Face 15992 6647 6787 14732 Face 15993 6671 6666 14733 Face 15994 6666 6804 14733 Face 15995 6804 6812 14733 Face 15996 6812 6671 14733 Face 15997 6975 6804 14734 Face 15998 6804 6794 14734 Face 15999 6794 6960 14734 Face 16000 6960 6975 14734 Face 16001 6788 6785 14735 Face 16002 6785 6652 14735 Face 16003 6652 6659 14735 Face 16004 6659 6788 14735 Face 16005 6943 6787 14736 Face 16006 6787 6785 14736 Face 16007 6785 6936 14736 Face 16008 6936 6943 14736 Face 16009 7084 7116 14737 Face 16010 7116 6960 14737 Face 16011 6960 6943 14737 Face 16012 6943 7084 14737 Face 16013 6988 6975 14738 Face 16014 6975 7155 14738 Face 16015 7155 7172 14738 Face 16016 7172 6988 14738 Face 16017 7393 7155 14739 Face 16018 7155 7116 14739 Face 16019 7116 7345 14739 Face 16020 7345 7393 14739 Face 16021 7058 7072 14740 Face 16022 7072 6936 14740 Face 16023 6936 6929 14740 Face 16024 6929 7058 14740 Face 16025 7311 7084 14741 Face 16026 7084 7072 14741 Face 16027 7072 7272 14741 Face 16028 7272 7311 14741 Face 16029 7532 7596 14742 Face 16030 7596 7345 14742 Face 16031 7345 7311 14742 Face 16032 7311 7532 14742 Face 16033 7415 7393 14743 Face 16034 7393 7633 14743 Face 16035 7633 7652 14743 Face 16036 7652 7415 14743 Face 16037 7841 7633 14744 Face 16038 7633 7596 14744 Face 16039 7596 7797 14744 Face 16040 7797 7841 14744 Face 16041 7434 7463 14745 Face 16042 7463 7272 14745 Face 16043 7272 7226 14745 Face 16044 7226 7434 14745 Face 16045 7721 7532 14746 Face 16046 7532 7463 14746 Face 16047 7463 7628 14746 Face 16048 7628 7721 14746 Face 16049 7856 7929 14747 Face 16050 7929 7797 14747 Face 16051 7797 7721 14747 Face 16052 7721 7856 14747 Face 16053 7894 7841 14748 Face 16054 7841 7995 14748 Face 16055 7995 8081 14748 Face 16056 8081 7894 14748 Face 16057 8187 7995 14749 Face 16058 7995 7929 14749 Face 16059 7929 8099 14749 Face 16060 8099 8187 14749 Face 16061 7708 7755 14750 Face 16062 7755 7628 14750 Face 16063 7628 7576 14750 Face 16064 7576 7708 14750 Face 16065 7977 7856 14751 Face 16066 7856 7755 14751 Face 16067 7755 7875 14751 Face 16068 7875 7977 14751 Face 16069 8147 8238 14752 Face 16070 8238 8099 14752 Face 16071 8099 7977 14752 Face 16072 7977 8147 14752 Face 16073 8225 8187 14753 Face 16074 8187 8309 14753 Face 16075 8309 8347 14753 Face 16076 8347 8225 14753 Face 16077 8391 8309 14754 Face 16078 8309 8238 14754 Face 16079 8238 8305 14754 Face 16080 8305 8391 14754 Face 16081 7932 7994 14755 Face 16082 7994 7875 14755 Face 16083 7875 7829 14755 Face 16084 7829 7932 14755 Face 16085 8212 8147 14756 Face 16086 8147 7994 14756 Face 16087 7994 8079 14756 Face 16088 8079 8212 14756 Face 16089 8221 8322 14757 Face 16090 8322 8305 14757 Face 16091 8305 8212 14757 Face 16092 8212 8221 14757 Face 16093 8429 8391 14758 Face 16094 8391 8426 14758 Face 16095 8426 8477 14758 Face 16096 8477 8429 14758 Face 16097 8469 8426 14759 Face 16098 8426 8322 14759 Face 16099 8322 8357 14759 Face 16100 8357 8469 14759 Face 16101 8013 8102 14760 Face 16102 8102 8079 14760 Face 16103 8079 8000 14760 Face 16104 8000 8013 14760 Face 16105 8242 8221 14761 Face 16106 8221 8102 14761 Face 16107 8102 8116 14761 Face 16108 8116 8242 14761 Face 16109 8518 8469 14762 Face 16110 8469 8503 14762 Face 16111 8503 8560 14762 Face 16112 8560 8518 14762 Face 16113 8523 8503 14763 Face 16114 8503 8357 14763 Face 16115 8357 8389 14763 Face 16116 8389 8523 14763 Face 16117 8389 8242 14764 Face 16118 8242 8296 14764 Face 16119 8296 8466 14764 Face 16120 8466 8389 14764 Face 16121 8324 8296 14765 Face 16122 8296 8133 14765 Face 16123 8133 8124 14765 Face 16124 8124 8324 14765 Face 16125 7993 8052 14766 Face 16126 8052 8116 14766 Face 16127 8116 8011 14766 Face 16128 8011 7993 14766 Face 16129 8605 8523 14767 Face 16130 8523 8604 14767 Face 16131 8604 8674 14767 Face 16132 8674 8605 14767 Face 16133 8680 8604 14768 Face 16134 8604 8466 14768 Face 16135 8466 8569 14768 Face 16136 8569 8680 14768 Face 16137 8161 8258 14769 Face 16138 8258 8064 14769 Face 16139 8064 7951 14769 Face 16140 7951 8161 14769 Face 16141 8464 8324 14770 Face 16142 8324 8258 14770 Face 16143 8258 8390 14770 Face 16144 8390 8464 14770 Face 16145 8279 8183 14771 Face 16146 8183 8043 14771 Face 16147 8043 8190 14771 Face 16148 8190 8279 14771 Face 16149 8170 8012 14772 Face 16150 8012 8183 14772 Face 16151 8183 8289 14772 Face 16152 8289 8170 14772 Face 16153 8208 8274 14773 Face 16154 8274 8190 14773 Face 16155 8190 8080 14773 Face 16156 8080 8208 14773 Face 16157 8373 8279 14774 Face 16158 8279 8358 14774 Face 16159 8358 8435 14774 Face 16160 8435 8373 14774 Face 16161 8475 8402 14775 Face 16162 8402 8289 14775 Face 16163 8289 8373 14775 Face 16164 8373 8475 14775 Face 16165 7967 8170 14776 Face 16166 8170 8288 14776 Face 16167 8288 8161 14776 Face 16168 8161 7967 14776 Face 16169 8390 8288 14777 Face 16170 8288 8402 14777 Face 16171 8402 8496 14777 Face 16172 8496 8390 14777 Face 16173 8575 8475 14778 Face 16174 8475 8517 14778 Face 16175 8517 8593 14778 Face 16176 8593 8575 14778 Face 16177 8661 8590 14779 Face 16178 8590 8496 14779 Face 16179 8496 8575 14779 Face 16180 8575 8661 14779 Face 16181 8569 8464 14780 Face 16182 8464 8590 14780 Face 16183 8590 8678 14780 Face 16184 8678 8569 14780 Face 16185 8743 8661 14781 Face 16186 8661 8657 14781 Face 16187 8657 8723 14781 Face 16188 8723 8743 14781 Face 16189 8787 8759 14782 Face 16190 8759 8678 14782 Face 16191 8678 8743 14782 Face 16192 8743 8787 14782 Face 16193 8741 8680 14783 Face 16194 8680 8759 14783 Face 16195 8759 8781 14783 Face 16196 8781 8741 14783 Face 16197 8663 8763 14784 Face 16198 8763 8723 14784 Face 16199 8723 8632 14784 Face 16200 8632 8663 14784 Face 16201 8788 8787 14785 Face 16202 8787 8763 14785 Face 16203 8763 8761 14785 Face 16204 8761 8788 14785 Face 16205 7878 7894 14786 Face 16206 7894 8110 14786 Face 16207 8110 8100 14786 Face 16208 8100 7878 14786 Face 16209 8239 8110 14787 Face 16210 8110 8081 14787 Face 16211 8081 8225 14787 Face 16212 8225 8239 14787 Face 16213 8422 8345 14788 Face 16214 8345 8347 14788 Face 16215 8347 8429 14788 Face 16216 8429 8422 14788 Face 16217 8259 8239 14789 Face 16218 8239 8345 14789 Face 16219 8345 8360 14789 Face 16220 8360 8259 14789 Face 16221 8513 8472 14790 Face 16222 8472 8477 14790 Face 16223 8477 8518 14790 Face 16224 8518 8513 14790 Face 16225 8434 8422 14791 Face 16226 8422 8472 14791 Face 16227 8472 8493 14791 Face 16228 8493 8434 14791 Face 16229 8592 8550 14792 Face 16230 8550 8560 14792 Face 16231 8560 8605 14792 Face 16232 8605 8592 14792 Face 16233 8544 8513 14793 Face 16234 8513 8550 14793 Face 16235 8550 8574 14793 Face 16236 8574 8544 14793 Face 16237 8700 8649 14794 Face 16238 8649 8674 14794 Face 16239 8674 8741 14794 Face 16240 8741 8700 14794 Face 16241 8606 8592 14795 Face 16242 8592 8649 14795 Face 16243 8649 8652 14795 Face 16244 8652 8606 14795 Face 16245 8710 8700 14796 Face 16246 8700 8781 14796 Face 16247 8781 8788 14796 Face 16248 8788 8710 14796 Face 16249 8684 8710 14797 Face 16250 8710 8761 14797 Face 16251 8761 8696 14797 Face 16252 8696 8684 14797 Face 16253 8591 8633 14798 Face 16254 8633 8696 14798 Face 16255 8696 8663 14798 Face 16256 8663 8591 14798 Face 16257 8693 8684 14799 Face 16258 8684 8673 14799 Face 16259 8673 8731 14799 Face 16260 8731 8693 14799 Face 16261 8683 8673 14800 Face 16262 8673 8633 14800 Face 16263 8633 8609 14800 Face 16264 8609 8683 14800 Face 16265 8745 8708 14801 Face 16266 8708 8697 14801 Face 16267 8697 8755 14801 Face 16268 8755 8745 14801 Face 16269 8785 8697 14802 Face 16270 8697 8637 14802 Face 16271 8637 8772 14802 Face 16272 8772 8785 14802 Face 16273 8576 8637 14803 Face 16274 8637 8654 14803 Face 16275 8654 8608 14803 Face 16276 8608 8576 14803 Face 16277 8656 8654 14804 Face 16278 8654 8708 14804 Face 16279 8708 8707 14804 Face 16280 8707 8656 14804 Face 16281 8620 8576 14805 Face 16282 8576 8515 14805 Face 16283 8515 8563 14805 Face 16284 8563 8620 14805 Face 16285 8500 8515 14806 Face 16286 8515 8608 14806 Face 16287 8608 8585 14806 Face 16288 8585 8500 14806 Face 16289 7948 8065 14807 Face 16290 8065 8197 14807 Face 16291 8197 8123 14807 Face 16292 8123 7948 14807 Face 16293 8273 8197 14808 Face 16294 8197 8256 14808 Face 16295 8256 8317 14808 Face 16296 8317 8273 14808 Face 16297 8335 8256 14809 Face 16298 8256 8201 14809 Face 16299 8201 8304 14809 Face 16300 8304 8335 14809 Face 16301 8144 8201 14810 Face 16302 8201 8065 14810 Face 16303 8065 7966 14810 Face 16304 7966 8144 14810 Face 16305 8519 8557 14811 Face 16306 8557 8533 14811 Face 16307 8533 8473 14811 Face 16308 8473 8519 14811 Face 16309 8572 8591 14812 Face 16310 8591 8557 14812 Face 16311 8557 8552 14812 Face 16312 8552 8572 14812 Face 16313 8552 8519 14813 Face 16314 8519 8509 14813 Face 16315 8509 8558 14813 Face 16316 8558 8552 14813 Face 16317 8514 8509 14814 Face 16318 8509 8452 14814 Face 16319 8452 8444 14814 Face 16320 8444 8514 14814 Face 16321 8573 8514 14815 Face 16322 8514 8530 14815 Face 16323 8530 8597 14815 Face 16324 8597 8573 14815 Face 16325 8547 8530 14816 Face 16326 8530 8445 14816 Face 16327 8445 8454 14816 Face 16328 8454 8547 14816 Face 16329 8610 8547 14817 Face 16330 8547 8564 14817 Face 16331 8564 8612 14817 Face 16332 8612 8610 14817 Face 16333 8584 8564 14818 Face 16334 8564 8481 14818 Face 16335 8481 8505 14818 Face 16336 8505 8584 14818 Face 16337 8636 8584 14819 Face 16338 8584 8622 14819 Face 16339 8622 8672 14819 Face 16340 8672 8636 14819 Face 16341 8665 8622 14820 Face 16342 8622 8566 14820 Face 16343 8566 8619 14820 Face 16344 8619 8665 14820 Face 16345 8714 8665 14821 Face 16346 8665 8730 14821 Face 16347 8730 8747 14821 Face 16348 8747 8714 14821 Face 16349 8732 8730 14822 Face 16350 8730 8698 14822 Face 16351 8698 8695 14822 Face 16352 8695 8732 14822 Face 16353 8767 8732 14823 Face 16354 8732 8707 14823 Face 16355 8707 8745 14823 Face 16356 8745 8767 14823 Face 16357 8585 8656 14824 Face 16358 8656 8629 14824 Face 16359 8629 8535 14824 Face 16360 8535 8585 14824 Face 16361 8427 8500 14825 Face 16362 8500 8458 14825 Face 16363 8458 8376 14825 Face 16364 8376 8427 14825 Face 16365 8478 8427 14826 Face 16366 8427 8353 14826 Face 16367 8353 8420 14826 Face 16368 8420 8478 14826 Face 16369 8284 8353 14827 Face 16370 8353 8270 14827 Face 16371 8270 8205 14827 Face 16372 8205 8284 14827 Face 16373 8344 8284 14828 Face 16374 8284 8231 14828 Face 16375 8231 8273 14828 Face 16376 8273 8344 14828 Face 16377 8123 8231 14829 Face 16378 8231 8167 14829 Face 16379 8167 8010 14829 Face 16380 8010 8123 14829 Face 16381 7848 7948 14830 Face 16382 7948 7849 14830 Face 16383 7849 7702 14830 Face 16384 7702 7848 14830 Face 16385 8399 8413 14831 Face 16386 8413 8640 14831 Face 16387 8640 8630 14831 Face 16388 8630 8399 14831 Face 16389 8752 8640 14832 Face 16390 8640 8565 14832 Face 16391 8565 8666 14832 Face 16392 8666 8752 14832 Face 16393 8805 8752 14833 Face 16394 8752 8779 14833 Face 16395 8779 8809 14833 Face 16396 8809 8805 14833 Face 16397 8811 8779 14834 Face 16398 8779 8738 14834 Face 16399 8738 8806 14834 Face 16400 8806 8811 14834 Face 16401 8823 8811 14835 Face 16402 8811 8831 14835 Face 16403 8831 8835 14835 Face 16404 8835 8823 14835 Face 16405 8862 8831 14836 Face 16406 8831 8867 14836 Face 16407 8867 8887 14836 Face 16408 8887 8862 14836 Face 16409 8849 8862 14837 Face 16410 8862 8854 14837 Face 16411 8854 8847 14837 Face 16412 8847 8849 14837 Face 16413 8856 8854 14838 Face 16414 8854 8877 14838 Face 16415 8877 8851 14838 Face 16416 8851 8856 14838 Face 16417 8871 8856 14839 Face 16418 8856 8864 14839 Face 16419 8864 8896 14839 Face 16420 8896 8871 14839 Face 16421 8797 8864 14840 Face 16422 8864 8820 14840 Face 16423 8820 8724 14840 Face 16424 8724 8797 14840 Face 16425 8839 8797 14841 Face 16426 8797 8647 14841 Face 16427 8647 8721 14841 Face 16428 8721 8839 14841 Face 16429 8594 8647 14842 Face 16430 8647 8580 14842 Face 16431 8580 8521 14842 Face 16432 8521 8594 14842 Face 16433 8645 8594 14843 Face 16434 8594 8601 14843 Face 16435 8601 8644 14843 Face 16436 8644 8645 14843 Face 16437 8607 8601 14844 Face 16438 8601 8525 14844 Face 16439 8525 8544 14844 Face 16440 8544 8607 14844 Face 16441 8644 8607 14845 Face 16442 8607 8618 14845 Face 16443 8618 8650 14845 Face 16444 8650 8644 14845 Face 16445 8642 8618 14846 Face 16446 8618 8574 14846 Face 16447 8574 8606 14846 Face 16448 8606 8642 14846 Face 16449 8675 8642 14847 Face 16450 8642 8682 14847 Face 16451 8682 8728 14847 Face 16452 8728 8675 14847 Face 16453 8734 8682 14848 Face 16454 8682 8652 14848 Face 16455 8652 8693 14848 Face 16456 8693 8734 14848 Face 16457 8773 8734 14849 Face 16458 8734 8775 14849 Face 16459 8775 8818 14849 Face 16460 8818 8773 14849 Face 16461 8813 8775 14850 Face 16462 8775 8731 14850 Face 16463 8731 8764 14850 Face 16464 8764 8813 14850 Face 16465 7439 7460 14851 Face 16466 7460 7579 14851 Face 16467 7579 7521 14851 Face 16468 7521 7439 14851 Face 16469 7654 7579 14852 Face 16470 7579 7664 14852 Face 16471 7664 7788 14852 Face 16472 7788 7654 14852 Face 16473 7582 7654 14853 Face 16474 7654 7670 14853 Face 16475 7670 7593 14853 Face 16476 7593 7582 14853 Face 16477 6001 5971 14854 Face 16478 5971 6091 14854 Face 16479 6091 6116 14854 Face 16480 6116 6001 14854 Face 16481 6148 6091 14855 Face 16482 6091 5997 14855 Face 16483 5997 6049 14855 Face 16484 6049 6148 14855 Face 16485 5942 5997 14856 Face 16486 5997 5971 14856 Face 16487 5971 5914 14856 Face 16488 5914 5942 14856 Face 16489 6731 6925 14857 Face 16490 6925 7022 14857 Face 16491 7022 6840 14857 Face 16492 6840 6731 14857 Face 16493 6970 7022 14858 Face 16494 7022 7169 14858 Face 16495 7169 7101 14858 Face 16496 7101 6970 14858 Face 16497 7264 7169 14859 Face 16498 7169 7348 14859 Face 16499 7348 7406 14859 Face 16500 7406 7264 14859 Face 16501 7522 7348 14860 Face 16502 7348 7467 14860 Face 16503 7467 7648 14860 Face 16504 7648 7522 14860 Face 16505 7728 7467 14861 Face 16506 7467 7504 14861 Face 16507 7504 7763 14861 Face 16508 7763 7728 14861 Face 16509 7784 7504 14862 Face 16510 7504 7498 14862 Face 16511 7498 7799 14862 Face 16512 7799 7784 14862 Face 16513 7764 7498 14863 Face 16514 7498 7418 14863 Face 16515 7418 7678 14863 Face 16516 7678 7764 14863 Face 16517 7586 7418 14864 Face 16518 7418 7288 14864 Face 16519 7288 7479 14864 Face 16520 7479 7586 14864 Face 16521 7319 7288 14865 Face 16522 7288 7067 14865 Face 16523 7067 7059 14865 Face 16524 7059 7319 14865 Face 16525 6838 7067 14866 Face 16526 7067 6897 14866 Face 16527 6897 6603 14866 Face 16528 6603 6838 14866 Face 16529 6414 6897 14867 Face 16530 6897 6858 14867 Face 16531 6858 6389 14867 Face 16532 6389 6414 14867 Face 16533 6477 6858 14868 Face 16534 6858 6925 14868 Face 16535 6925 6619 14868 Face 16536 6619 6477 14868 Face 16537 6894 6889 14869 Face 16538 6889 6545 14869 Face 16539 6545 6529 14869 Face 16540 6529 6894 14869 Face 16541 6569 6554 14870 Face 16542 6554 6871 14870 Face 16543 6871 6855 14870 Face 16544 6855 6569 14870 Face 16545 7820 7814 14871 Face 16546 7814 7906 14871 Face 16547 7906 7915 14871 Face 16548 7915 7820 14871 Face 16549 7846 7883 14872 Face 16550 7883 7806 14872 Face 16551 7806 7785 14872 Face 16552 7785 7846 14872 Face 16553 7059 6838 14873 Face 16554 6838 6839 14873 Face 16555 6839 7056 14873 Face 16556 7056 7059 14873 Face 16557 6415 6604 14874 Face 16558 6604 6603 14874 Face 16559 6603 6414 14874 Face 16560 6414 6415 14874 Face 16561 6478 6390 14875 Face 16562 6390 6389 14875 Face 16563 6389 6477 14875 Face 16564 6477 6478 14875 Face 16565 6732 6620 14876 Face 16566 6620 6619 14876 Face 16567 6619 6731 14876 Face 16568 6731 6732 14876 Face 16569 6968 6841 14877 Face 16570 6841 6840 14877 Face 16571 6840 6970 14877 Face 16572 6970 6968 14877 Face 16573 7256 7099 14878 Face 16574 7099 7101 14878 Face 16575 7101 7264 14878 Face 16576 7264 7256 14878 Face 16577 7517 7401 14879 Face 16578 7401 7406 14879 Face 16579 7406 7522 14879 Face 16580 7522 7517 14879 Face 16581 7723 7644 14880 Face 16582 7644 7648 14880 Face 16583 7648 7728 14880 Face 16584 7728 7723 14880 Face 16585 7783 7759 14881 Face 16586 7759 7763 14881 Face 16587 7763 7784 14881 Face 16588 7784 7783 14881 Face 16589 7762 7798 14882 Face 16590 7798 7799 14882 Face 16591 7799 7764 14882 Face 16592 7764 7762 14882 Face 16593 7581 7671 14883 Face 16594 7671 7678 14883 Face 16595 7678 7586 14883 Face 16596 7586 7581 14883 Face 16597 7316 7477 14884 Face 16598 7477 7479 14884 Face 16599 7479 7319 14884 Face 16600 7319 7316 14884 Face 16601 6827 6962 14885 Face 16602 6962 6961 14885 Face 16603 6961 6819 14885 Face 16604 6819 6827 14885 Face 16605 6601 6723 14886 Face 16606 6723 6709 14886 Face 16607 6709 6585 14886 Face 16608 6585 6601 14886 Face 16609 6361 6440 14887 Face 16610 6440 6403 14887 Face 16611 6403 6327 14887 Face 16612 6327 6361 14887 Face 16613 6590 6372 14888 Face 16614 6372 6344 14888 Face 16615 6344 6569 14888 Face 16616 6569 6590 14888 Face 16617 7077 6846 14889 Face 16618 6846 6855 14889 Face 16619 6855 7107 14889 Face 16620 7107 7077 14889 Face 16621 7511 7339 14890 Face 16622 7339 7384 14890 Face 16623 7384 7559 14890 Face 16624 7559 7511 14890 Face 16625 7730 7635 14891 Face 16626 7635 7707 14891 Face 16627 7707 7804 14891 Face 16628 7804 7730 14891 Face 16629 7840 7807 14892 Face 16630 7807 7861 14892 Face 16631 7861 7886 14892 Face 16632 7886 7840 14892 Face 16633 7795 7827 14893 Face 16634 7827 7879 14893 Face 16635 7879 7846 14893 Face 16636 7846 7795 14893 Face 16637 7662 7752 14894 Face 16638 7752 7785 14894 Face 16639 7785 7683 14894 Face 16640 7683 7662 14894 Face 16641 7224 7236 14895 Face 16642 7236 7427 14895 Face 16643 7427 7425 14895 Face 16644 7425 7224 14895 Face 16645 6318 6239 14896 Face 16646 6239 6248 14896 Face 16647 6248 6323 14896 Face 16648 6323 6318 14896 Face 16649 6258 6248 14897 Face 16650 6248 6247 14897 Face 16651 6247 6257 14897 Face 16652 6257 6258 14897 Face 16653 6336 6258 14898 Face 16654 6258 6264 14898 Face 16655 6264 6348 14898 Face 16656 6348 6336 14898 Face 16657 7915 7976 14899 Face 16658 7976 7980 14899 Face 16659 7980 7918 14899 Face 16660 7918 7915 14899 Face 16661 7988 7980 14900 Face 16662 7980 7982 14900 Face 16663 7982 7993 14900 Face 16664 7993 7988 14900 Face 16665 7990 7988 14901 Face 16666 7988 8011 14901 Face 16667 8011 8013 14901 Face 16668 8013 7990 14901 Face 16669 7923 7990 14902 Face 16670 7990 8000 14902 Face 16671 8000 7932 14902 Face 16672 7932 7923 14902 Face 16673 6659 6501 14903 Face 16674 6501 6505 14903 Face 16675 6505 6664 14903 Face 16676 6664 6659 14903 Face 16677 6515 6505 14904 Face 16678 6505 6323 14904 Face 16679 6323 6336 14904 Face 16680 6336 6515 14904 Face 16681 6668 6515 14905 Face 16682 6515 6523 14905 Face 16683 6523 6670 14905 Face 16684 6670 6668 14905 Face 16685 6929 6788 14906 Face 16686 6788 6790 14906 Face 16687 6790 6930 14906 Face 16688 6930 6929 14906 Face 16689 6792 6790 14907 Face 16690 6790 6664 14907 Face 16691 6664 6668 14907 Face 16692 6668 6792 14907 Face 16693 6934 6792 14908 Face 16694 6792 6797 14908 Face 16695 6797 6939 14908 Face 16696 6939 6934 14908 Face 16697 7226 7058 14909 Face 16698 7058 7053 14909 Face 16699 7053 7221 14909 Face 16700 7221 7226 14909 Face 16701 7055 7053 14910 Face 16702 7053 6930 14910 Face 16703 6930 6934 14910 Face 16704 6934 7055 14910 Face 16705 7216 7055 14911 Face 16706 7055 7062 14911 Face 16707 7062 7224 14911 Face 16708 7224 7216 14911 Face 16709 7576 7434 14912 Face 16710 7434 7430 14912 Face 16711 7430 7573 14912 Face 16712 7573 7576 14912 Face 16713 7428 7430 14913 Face 16714 7430 7221 14913 Face 16715 7221 7216 14913 Face 16716 7216 7428 14913 Face 16717 7570 7428 14914 Face 16718 7428 7425 14914 Face 16719 7425 7568 14914 Face 16720 7568 7570 14914 Face 16721 7829 7708 14915 Face 16722 7708 7700 14915 Face 16723 7700 7823 14915 Face 16724 7823 7829 14915 Face 16725 7693 7700 14916 Face 16726 7700 7573 14916 Face 16727 7573 7570 14916 Face 16728 7570 7693 14916 Face 16729 7817 7693 14917 Face 16730 7693 7695 14917 Face 16731 7695 7820 14917 Face 16732 7820 7817 14917 Face 16733 7918 7923 14918 Face 16734 7923 7823 14918 Face 16735 7823 7817 14918 Face 16736 7817 7918 14918 Face 16737 8493 8484 14919 Face 16738 8484 8527 14919 Face 16739 8527 8538 14919 Face 16740 8538 8493 14919 Face 16741 6000 6048 14920 Face 16742 6048 6013 14920 Face 16743 6013 5962 14920 Face 16744 5962 6000 14920 Face 16745 5901 5907 14921 Face 16746 5907 5829 14921 Face 16747 5829 5822 14921 Face 16748 5822 5901 14921 Face 16749 5872 5856 14922 Face 16750 5856 5907 14922 Face 16751 5907 5942 14922 Face 16752 5942 5872 14922 Face 16753 5943 5901 14923 Face 16754 5901 5839 14923 Face 16755 5839 5865 14923 Face 16756 5865 5943 14923 Face 16757 6025 5943 14924 Face 16758 5943 5946 14924 Face 16759 5946 6031 14924 Face 16760 6031 6025 14924 Face 16761 6067 6025 14925 Face 16762 6025 6183 14925 Face 16763 6183 6262 14925 Face 16764 6262 6067 14925 Face 16765 5910 6001 14926 Face 16766 6001 6027 14926 Face 16767 6027 5937 14926 Face 16768 5937 5910 14926 Face 16769 6053 6027 14927 Face 16770 6027 6151 14927 Face 16771 6151 6177 14927 Face 16772 6177 6053 14927 Face 16773 6263 6151 14928 Face 16774 6151 6116 14928 Face 16775 6116 6207 14928 Face 16776 6207 6263 14928 Face 16777 6281 6308 14929 Face 16778 6308 6349 14929 Face 16779 6349 6312 14929 Face 16780 6312 6281 14929 Face 16781 6368 6349 14930 Face 16782 6349 6325 14930 Face 16783 6325 6359 14930 Face 16784 6359 6368 14930 Face 16785 6262 6325 14931 Face 16786 6325 6308 14931 Face 16787 6308 6240 14931 Face 16788 6240 6262 14931 Face 16789 6049 6067 14932 Face 16790 6067 6240 14932 Face 16791 6240 6202 14932 Face 16792 6202 6049 14932 Face 16793 6207 6148 14933 Face 16794 6148 6202 14933 Face 16795 6202 6281 14933 Face 16796 6281 6207 14933 Face 16797 6296 6263 14934 Face 16798 6263 6312 14934 Face 16799 6312 6354 14934 Face 16800 6354 6296 14934 Face 16801 5914 5910 14935 Face 16802 5910 5870 14935 Face 16803 5870 5872 14935 Face 16804 5872 5914 14935 Face 16805 5889 5878 14936 Face 16806 5878 5937 14936 Face 16807 5937 5958 14936 Face 16808 5958 5889 14936 Face 16809 6455 6444 14937 Face 16810 6444 6485 14937 Face 16811 6485 6473 14937 Face 16812 6473 6455 14937 Face 16813 6528 6509 14938 Face 16814 6509 6441 14938 Face 16815 6441 6442 14938 Face 16816 6442 6528 14938 Face 16817 6364 6441 14939 Face 16818 6441 6444 14939 Face 16819 6444 6378 14939 Face 16820 6378 6364 14939 Face 16821 5873 5758 14940 Face 16822 5758 5766 14940 Face 16823 5766 5885 14940 Face 16824 5885 5873 14940 Face 16825 6022 5947 14941 Face 16826 5947 5970 14941 Face 16827 5970 6042 14941 Face 16828 6042 6022 14941 Face 16829 6154 6099 14942 Face 16830 6099 6110 14942 Face 16831 6110 6168 14942 Face 16832 6168 6154 14942 Face 16833 6190 6154 14943 Face 16834 6154 6252 14943 Face 16835 6252 6288 14943 Face 16836 6288 6190 14943 Face 16837 6209 6190 14944 Face 16838 6190 6328 14944 Face 16839 6328 6350 14944 Face 16840 6350 6209 14944 Face 16841 6195 6209 14945 Face 16842 6209 6352 14945 Face 16843 6352 6334 14945 Face 16844 6334 6195 14945 Face 16845 6244 6266 14946 Face 16846 6266 6378 14946 Face 16847 6378 6369 14946 Face 16848 6369 6244 14946 Face 16849 6343 6364 14947 Face 16850 6364 6266 14947 Face 16851 6266 6218 14947 Face 16852 6218 6343 14947 Face 16853 5934 5806 14948 Face 16854 5806 5801 14948 Face 16855 5801 5928 14948 Face 16856 5928 5934 14948 Face 16857 6090 6029 14949 Face 16858 6029 6021 14949 Face 16859 6021 6074 14949 Face 16860 6074 6090 14949 Face 16861 6185 6112 14950 Face 16862 6112 6098 14950 Face 16863 6098 6164 14950 Face 16864 6164 6185 14950 Face 16865 6456 6338 14951 Face 16866 6338 6316 14951 Face 16867 6316 6433 14951 Face 16868 6433 6456 14951 Face 16869 6575 6540 14952 Face 16870 6540 6513 14952 Face 16871 6513 6552 14952 Face 16872 6552 6575 14952 Face 16873 6560 6567 14953 Face 16874 6567 6543 14953 Face 16875 6543 6537 14953 Face 16876 6537 6560 14953 Face 16877 6739 6663 14954 Face 16878 6663 6592 14954 Face 16879 6592 6627 14954 Face 16880 6627 6739 14954 Face 16881 6541 6558 14955 Face 16882 6558 6599 14955 Face 16883 6599 6563 14955 Face 16884 6563 6541 14955 Face 16885 6883 6814 14956 Face 16886 6814 6694 14956 Face 16887 6694 6728 14956 Face 16888 6728 6883 14956 Face 16889 6927 6920 14957 Face 16890 6920 6738 14957 Face 16891 6738 6740 14957 Face 16892 6740 6927 14957 Face 16893 5759 5727 14958 Face 16894 5727 5762 14958 Face 16895 5762 5782 14958 Face 16896 5782 5759 14958 Face 16897 5891 5836 14959 Face 16898 5836 5847 14959 Face 16899 5847 5889 14959 Face 16900 5889 5891 14959 Face 16901 6075 5972 14960 Face 16902 5972 5958 14960 Face 16903 5958 6053 14960 Face 16904 6053 6075 14960 Face 16905 6340 6219 14961 Face 16906 6219 6177 14961 Face 16907 6177 6296 14961 Face 16908 6296 6340 14961 Face 16909 6418 6387 14962 Face 16910 6387 6354 14962 Face 16911 6354 6368 14962 Face 16912 6368 6418 14962 Face 16913 6442 6343 14963 Face 16914 6343 6334 14963 Face 16915 6334 6445 14963 Face 16916 6445 6442 14963 Face 16917 6145 6195 14964 Face 16918 6195 6218 14964 Face 16919 6218 6162 14964 Face 16920 6162 6145 14964 Face 16921 6563 6528 14965 Face 16922 6528 6530 14965 Face 16923 6530 6560 14965 Face 16924 6560 6563 14965 Face 16925 6502 6541 14966 Face 16926 6541 6537 14966 Face 16927 6537 6495 14966 Face 16928 6495 6502 14966 Face 16929 7475 7533 14967 Face 16930 7533 7343 14967 Face 16931 7343 7296 14967 Face 16932 7296 7475 14967 Face 16933 6369 6455 14968 Face 16934 6455 6479 14968 Face 16935 6479 6383 14968 Face 16936 6383 6369 14968 Face 16937 6578 6479 14969 Face 16938 6479 6473 14969 Face 16939 6473 6571 14969 Face 16940 6571 6578 14969 Face 16941 7296 7073 14970 Face 16942 7073 7051 14970 Face 16943 7051 7282 14970 Face 16944 7282 7296 14970 Face 16945 6697 6854 14971 Face 16946 6854 6866 14971 Face 16947 6866 6706 14971 Face 16948 6706 6697 14971 Face 16949 7572 7475 14972 Face 16950 7475 7453 14972 Face 16951 7453 7529 14972 Face 16952 7529 7572 14972 Face 16953 7480 7549 14973 Face 16954 7549 7529 14973 Face 16955 7529 7473 14973 Face 16956 7473 7480 14973 Face 16957 7626 7572 14974 Face 16958 7572 7549 14974 Face 16959 7549 7601 14974 Face 16960 7601 7626 14974 Face 16961 6162 6244 14975 Face 16962 6244 6243 14975 Face 16963 6243 6153 14975 Face 16964 6153 6162 14975 Face 16965 6139 6145 14976 Face 16966 6145 6153 14976 Face 16967 6153 6149 14976 Face 16968 6149 6139 14976 Face 16969 7521 7582 14977 Face 16970 7582 7553 14977 Face 16971 7553 7501 14977 Face 16972 7501 7521 14977 Face 16973 7592 7553 14978 Face 16974 7553 7593 14978 Face 16975 7593 7629 14978 Face 16976 7629 7592 14978 Face 16977 7710 7709 14979 Face 16978 7709 7665 14979 Face 16979 7665 7663 14979 Face 16980 7663 7710 14979 Face 16981 7222 7374 14980 Face 16982 7374 7382 14980 Face 16983 7382 7243 14980 Face 16984 7243 7222 14980 Face 16985 5955 6220 14981 Face 16986 6220 6227 14981 Face 16987 6227 5961 14981 Face 16988 5961 5955 14981 Face 16989 6740 6524 14982 Face 16990 6524 6512 14982 Face 16991 6512 6733 14982 Face 16992 6733 6740 14982 Face 16993 6108 5875 14983 Face 16994 5875 5879 14983 Face 16995 5879 6122 14983 Face 16996 6122 6108 14983 Face 16997 6682 6384 14984 Face 16998 6384 6395 14984 Face 16999 6395 6692 14984 Face 17000 6692 6682 14984 Face 17001 7095 6913 14985 Face 17002 6913 6917 14985 Face 17003 6917 7102 14985 Face 17004 7102 7095 14985 Face 17005 7419 7289 14986 Face 17006 7289 7307 14986 Face 17007 7307 7439 14986 Face 17008 7439 7419 14986 Face 17009 6921 7074 14987 Face 17010 7074 7080 14987 Face 17011 7080 6927 14987 Face 17012 6927 6921 14987 Face 17013 8066 8141 14988 Face 17014 8141 7981 14988 Face 17015 7981 7925 14988 Face 17016 7925 8066 14988 Face 17017 8001 8033 14989 Face 17018 8033 7900 14989 Face 17019 7900 7871 14989 Face 17020 7871 8001 14989 Face 17021 6044 5846 14990 Face 17022 5846 5850 14990 Face 17023 5850 6052 14990 Face 17024 6052 6044 14990 Face 17025 6549 6292 14991 Face 17026 6292 6300 14991 Face 17027 6300 6556 14991 Face 17028 6556 6549 14991 Face 17029 6529 6271 14992 Face 17030 6271 6249 14992 Face 17031 6249 6520 14992 Face 17032 6520 6529 14992 Face 17033 6233 6249 14993 Face 17034 6249 6251 14993 Face 17035 6251 6235 14993 Face 17036 6235 6233 14993 Face 17037 6238 6233 14994 Face 17038 6233 6213 14994 Face 17039 6213 6214 14994 Face 17040 6214 6238 14994 Face 17041 6506 6238 14995 Face 17042 6238 6246 14995 Face 17043 6246 6503 14995 Face 17044 6503 6506 14995 Face 17045 7615 7466 14996 Face 17046 7466 7461 14996 Face 17047 7461 7611 14996 Face 17048 7611 7615 14996 Face 17049 6873 7159 14997 Face 17050 7159 7170 14997 Face 17051 7170 6881 14997 Face 17052 6881 6873 14997 Face 17053 7175 7170 14998 Face 17054 7170 7466 14998 Face 17055 7466 7469 14998 Face 17056 7469 7175 14998 Face 17057 7614 7615 14999 Face 17058 7615 7622 14999 Face 17059 7622 7620 14999 Face 17060 7620 7614 14999 Face 17061 7469 7614 15000 Face 17062 7614 7608 15000 Face 17063 7608 7464 15000 Face 17064 7464 7469 15000 Face 17065 6520 6506 15001 Face 17066 6506 6881 15001 Face 17067 6881 6890 15001 Face 17068 6890 6520 15001 Face 17069 7177 6894 15002 Face 17070 6894 6890 15002 Face 17071 6890 7175 15002 Face 17072 7175 7177 15002 Face 17073 8275 8263 15003 Face 17074 8263 8248 15003 Face 17075 8248 8264 15003 Face 17076 8264 8275 15003 Face 17077 8276 8282 15004 Face 17078 8282 8338 15004 Face 17079 8338 8329 15004 Face 17080 8329 8276 15004 Face 17081 8396 8419 15005 Face 17082 8419 8537 15005 Face 17083 8537 8487 15005 Face 17084 8487 8396 15005 Face 17085 8603 8659 15006 Face 17086 8659 8778 15006 Face 17087 8778 8694 15006 Face 17088 8694 8603 15006 Face 17089 8783 8857 15007 Face 17090 8857 8902 15007 Face 17091 8902 8848 15007 Face 17092 8848 8783 15007 Face 17093 8903 8917 15008 Face 17094 8917 8919 15008 Face 17095 8919 8923 15008 Face 17096 8923 8903 15008 Face 17097 8932 8909 15009 Face 17098 8909 8883 15009 Face 17099 8883 8889 15009 Face 17100 8889 8932 15009 Face 17101 8819 8852 15010 Face 17102 8852 8822 15010 Face 17103 8822 8789 15010 Face 17104 8789 8819 15010 Face 17105 8803 8793 15011 Face 17106 8793 8754 15011 Face 17107 8754 8769 15011 Face 17108 8769 8803 15011 Face 17109 8735 8733 15012 Face 17110 8733 8717 15012 Face 17111 8717 8705 15012 Face 17112 8705 8735 15012 Face 17113 8688 8712 15013 Face 17114 8712 8716 15013 Face 17115 8716 8686 15013 Face 17116 8686 8688 15013 Face 17117 8681 8722 15014 Face 17118 8722 8726 15014 Face 17119 8726 8670 15014 Face 17120 8670 8681 15014 Face 17121 8668 8719 15015 Face 17122 8719 8702 15015 Face 17123 8702 8658 15015 Face 17124 8658 8668 15015 Face 17125 8638 8699 15016 Face 17126 8699 8711 15016 Face 17127 8711 8643 15016 Face 17128 8643 8638 15016 Face 17129 8630 8805 15017 Face 17130 8805 8828 15017 Face 17131 8828 8646 15017 Face 17132 8646 8630 15017 Face 17133 8840 8828 15018 Face 17134 8828 8809 15018 Face 17135 8809 8823 15018 Face 17136 8823 8840 15018 Face 17137 8835 8849 15019 Face 17138 8849 8879 15019 Face 17139 8879 8872 15019 Face 17140 8872 8835 15019 Face 17141 8894 8879 15020 Face 17142 8879 8847 15020 Face 17143 8847 8871 15020 Face 17144 8871 8894 15020 Face 17145 8721 8645 15021 Face 17146 8645 8676 15021 Face 17147 8676 8758 15021 Face 17148 8758 8721 15021 Face 17149 8718 8676 15022 Face 17150 8676 8650 15022 Face 17151 8650 8675 15022 Face 17152 8675 8718 15022 Face 17153 8609 8572 15023 Face 17154 8572 8581 15023 Face 17155 8581 8626 15023 Face 17156 8626 8609 15023 Face 17157 8596 8581 15024 Face 17158 8581 8558 15024 Face 17159 8558 8573 15024 Face 17160 8573 8596 15024 Face 17161 8597 8610 15025 Face 17162 8610 8641 15025 Face 17163 8641 8631 15025 Face 17164 8631 8597 15025 Face 17165 8664 8641 15026 Face 17166 8641 8612 15026 Face 17167 8612 8636 15026 Face 17168 8636 8664 15026 Face 17169 8747 8767 15027 Face 17170 8767 8786 15027 Face 17171 8786 8780 15027 Face 17172 8780 8747 15027 Face 17173 6999 6638 15028 Face 17174 6638 6641 15028 Face 17175 6641 7001 15028 Face 17176 7001 6999 15028 Face 17177 7470 7141 15029 Face 17178 7141 7142 15029 Face 17179 7142 7468 15029 Face 17180 7468 7470 15029 Face 17181 8410 7992 15030 Face 17182 7992 7986 15030 Face 17183 7986 8399 15030 Face 17184 8399 8410 15030 Face 17185 8884 8922 15031 Face 17186 8922 8896 15031 Face 17187 8896 8839 15031 Face 17188 8839 8884 15031 Face 17189 8808 8765 15032 Face 17190 8765 8728 15032 Face 17191 8728 8773 15032 Face 17192 8773 8808 15032 Face 17193 8853 8858 15033 Face 17194 8858 8818 15033 Face 17195 8818 8813 15033 Face 17196 8813 8853 15033 Face 17197 8720 8798 15034 Face 17198 8798 8764 15034 Face 17199 8764 8683 15034 Face 17200 8683 8720 15034 Face 17201 8750 8713 15035 Face 17202 8713 8672 15035 Face 17203 8672 8714 15035 Face 17204 8714 8750 15035 Face 17205 8563 8478 15036 Face 17206 8478 8540 15036 Face 17207 8540 8635 15036 Face 17208 8635 8563 15036 Face 17209 8374 8440 15037 Face 17210 8440 8420 15037 Face 17211 8420 8344 15037 Face 17212 8344 8374 15037 Face 17213 8643 8620 15038 Face 17214 8620 8774 15038 Face 17215 8774 8802 15038 Face 17216 8802 8643 15038 Face 17217 8869 8907 15039 Face 17218 8907 8771 15039 Face 17219 8771 8681 15039 Face 17220 8681 8869 15039 Face 17221 8686 8771 15040 Face 17222 8771 8908 15040 Face 17223 8908 8890 15040 Face 17224 8890 8686 15040 Face 17225 8826 8830 15041 Face 17226 8830 8670 15041 Face 17227 8670 8668 15041 Face 17228 8668 8826 15041 Face 17229 8802 8824 15042 Face 17230 8824 8658 15042 Face 17231 8658 8638 15042 Face 17232 8638 8802 15042 Face 17233 8433 8374 15043 Face 17234 8374 8317 15043 Face 17235 8317 8378 15043 Face 17236 8378 8433 15043 Face 17237 8705 8688 15044 Face 17238 8688 8905 15044 Face 17239 8905 8927 15044 Face 17240 8927 8705 15044 Face 17241 8329 8396 15045 Face 17242 8396 8456 15045 Face 17243 8456 8423 15045 Face 17244 8423 8329 15045 Face 17245 8582 8510 15046 Face 17246 8510 8487 15046 Face 17247 8487 8578 15046 Face 17248 8578 8582 15046 Face 17249 8744 8701 15047 Face 17250 8701 8578 15047 Face 17251 8578 8603 15047 Face 17252 8603 8744 15047 Face 17253 8846 8744 15048 Face 17254 8744 8694 15048 Face 17255 8694 8783 15048 Face 17256 8783 8846 15048 Face 17257 9036 8961 15049 Face 17258 8961 8848 15049 Face 17259 8848 8903 15049 Face 17260 8903 9036 15049 Face 17261 8264 8276 15050 Face 17262 8276 8394 15050 Face 17263 8394 8372 15050 Face 17264 8372 8264 15050 Face 17265 8304 8275 15051 Face 17266 8275 8385 15051 Face 17267 8385 8406 15051 Face 17268 8406 8304 15051 Face 17269 8378 8335 15052 Face 17270 8335 8425 15052 Face 17271 8425 8455 15052 Face 17272 8455 8378 15052 Face 17273 9212 9130 15053 Face 17274 9130 8923 15053 Face 17275 8923 8980 15053 Face 17276 8980 9212 15053 Face 17277 9172 9241 15054 Face 17278 9241 8980 15054 Face 17279 8980 8932 15054 Face 17280 8932 9172 15054 Face 17281 9004 9101 15055 Face 17282 9101 8889 15055 Face 17283 8889 8819 15055 Face 17284 8819 9004 15055 Face 17285 9018 9004 15056 Face 17286 9004 8789 15056 Face 17287 8789 8803 15056 Face 17288 8803 9018 15056 Face 17289 8965 8993 15057 Face 17290 8993 8769 15057 Face 17291 8769 8735 15057 Face 17292 8735 8965 15057 Face 17293 7271 7100 15058 Face 17294 7100 7098 15058 Face 17295 7098 7260 15058 Face 17296 7260 7271 15058 Face 17297 7404 7519 15059 Face 17298 7519 7528 15059 Face 17299 7528 7409 15059 Face 17300 7409 7404 15059 Face 17301 6965 6833 15060 Face 17302 6833 6836 15060 Face 17303 6836 6967 15060 Face 17304 6967 6965 15060 Face 17305 6726 6613 15061 Face 17306 6613 6615 15061 Face 17307 6615 6730 15061 Face 17308 6730 6726 15061 Face 17309 6461 6379 15062 Face 17310 6379 6386 15062 Face 17311 6386 6469 15062 Face 17312 6469 6461 15062 Face 17313 6397 6596 15063 Face 17314 6596 6600 15063 Face 17315 6600 6406 15063 Face 17316 6406 6397 15063 Face 17317 6835 7060 15064 Face 17318 7060 7057 15064 Face 17319 7057 6837 15064 Face 17320 6837 6835 15064 Face 17321 7323 7482 15065 Face 17322 7482 7478 15065 Face 17323 7478 7317 15065 Face 17324 7317 7323 15065 Face 17325 7599 7686 15066 Face 17326 7686 7675 15066 Face 17327 7675 7584 15066 Face 17328 7584 7599 15066 Face 17329 7776 7808 15067 Face 17330 7808 7802 15067 Face 17331 7802 7768 15067 Face 17332 7768 7776 15067 Face 17333 7791 7770 15068 Face 17334 7770 7761 15068 Face 17335 7761 7787 15068 Face 17336 7787 7791 15068 Face 17337 7732 7651 15069 Face 17338 7651 7645 15069 Face 17339 7645 7725 15069 Face 17340 7725 7732 15069 Face 17341 3636 3514 15070 Face 17342 3514 3523 15070 Face 17343 3523 3641 15070 Face 17344 3641 3636 15070 Face 17345 3787 3943 15071 Face 17346 3943 3941 15071 Face 17347 3941 3775 15071 Face 17348 3775 3787 15071 Face 17349 3395 3312 15072 Face 17350 3312 3316 15072 Face 17351 3316 3401 15072 Face 17352 3401 3395 15072 Face 17353 3276 3253 15073 Face 17354 3253 3259 15073 Face 17355 3259 3284 15073 Face 17356 3284 3276 15073 Face 17357 3236 3270 15074 Face 17358 3270 3277 15074 Face 17359 3277 3241 15074 Face 17360 3241 3236 15074 Face 17361 3354 3447 15075 Face 17362 3447 3458 15075 Face 17363 3458 3366 15075 Face 17364 3366 3354 15075 Face 17365 3560 3719 15076 Face 17366 3719 3725 15076 Face 17367 3725 3563 15076 Face 17368 3563 3560 15076 Face 17369 3980 4210 15077 Face 17370 4210 4208 15077 Face 17371 4208 3983 15077 Face 17372 3983 3980 15077 Face 17373 4443 4650 15078 Face 17374 4650 4641 15078 Face 17375 4641 4439 15078 Face 17376 4439 4443 15078 Face 17377 4667 4584 15079 Face 17378 4584 4576 15079 Face 17379 4576 4660 15079 Face 17380 4660 4667 15079 Face 17381 4425 4317 15080 Face 17382 4317 4314 15080 Face 17383 4314 4422 15080 Face 17384 4422 4425 15080 Face 17385 4212 4076 15081 Face 17386 4076 4074 15081 Face 17387 4074 4209 15081 Face 17388 4209 4212 15081 Face 17389 7401 7404 15082 Face 17390 7404 7260 15082 Face 17391 7260 7256 15082 Face 17392 7256 7401 15082 Face 17393 7275 7271 15083 Face 17394 7271 7409 15083 Face 17395 7409 7414 15083 Face 17396 7414 7275 15083 Face 17397 6962 6965 15084 Face 17398 6965 7100 15084 Face 17399 7100 7096 15084 Face 17400 7096 6962 15084 Face 17401 7099 7098 15085 Face 17402 7098 6967 15085 Face 17403 6967 6968 15085 Face 17404 6968 7099 15085 Face 17405 6723 6726 15086 Face 17406 6726 6833 15086 Face 17407 6833 6827 15086 Face 17408 6827 6723 15086 Face 17409 6841 6836 15087 Face 17410 6836 6730 15087 Face 17411 6730 6732 15087 Face 17412 6732 6841 15087 Face 17413 6440 6461 15088 Face 17414 6461 6613 15088 Face 17415 6613 6601 15088 Face 17416 6601 6440 15088 Face 17417 6620 6615 15089 Face 17418 6615 6469 15089 Face 17419 6469 6478 15089 Face 17420 6478 6620 15089 Face 17421 6372 6397 15090 Face 17422 6397 6379 15090 Face 17423 6379 6361 15090 Face 17424 6361 6372 15090 Face 17425 6390 6386 15091 Face 17426 6386 6406 15091 Face 17427 6406 6415 15091 Face 17428 6415 6390 15091 Face 17429 6846 6835 15092 Face 17430 6835 6596 15092 Face 17431 6596 6590 15092 Face 17432 6590 6846 15092 Face 17433 6604 6600 15093 Face 17434 6600 6837 15093 Face 17435 6837 6839 15093 Face 17436 6839 6604 15093 Face 17437 7339 7323 15094 Face 17438 7323 7060 15094 Face 17439 7060 7077 15094 Face 17440 7077 7339 15094 Face 17441 7056 7057 15095 Face 17442 7057 7317 15095 Face 17443 7317 7316 15095 Face 17444 7316 7056 15095 Face 17445 7635 7599 15096 Face 17446 7599 7482 15096 Face 17447 7482 7511 15096 Face 17448 7511 7635 15096 Face 17449 7477 7478 15097 Face 17450 7478 7584 15097 Face 17451 7584 7581 15097 Face 17452 7581 7477 15097 Face 17453 7807 7776 15098 Face 17454 7776 7686 15098 Face 17455 7686 7730 15098 Face 17456 7730 7807 15098 Face 17457 7671 7675 15099 Face 17458 7675 7768 15099 Face 17459 7768 7762 15099 Face 17460 7762 7671 15099 Face 17461 7827 7791 15100 Face 17462 7791 7808 15100 Face 17463 7808 7840 15100 Face 17464 7840 7827 15100 Face 17465 7798 7802 15101 Face 17466 7802 7787 15101 Face 17467 7787 7783 15101 Face 17468 7783 7798 15101 Face 17469 7752 7732 15102 Face 17470 7732 7770 15102 Face 17471 7770 7795 15102 Face 17472 7795 7752 15102 Face 17473 7759 7761 15103 Face 17474 7761 7725 15103 Face 17475 7725 7723 15103 Face 17476 7723 7759 15103 Face 17477 7539 7528 15104 Face 17478 7528 7651 15104 Face 17479 7651 7662 15104 Face 17480 7662 7539 15104 Face 17481 7644 7645 15105 Face 17482 7645 7519 15105 Face 17483 7519 7517 15105 Face 17484 7517 7644 15105 Face 17485 3791 3787 15106 Face 17486 3787 3641 15106 Face 17487 3641 3644 15106 Face 17488 3644 3791 15106 Face 17489 3631 3636 15107 Face 17490 3636 3775 15107 Face 17491 3775 3771 15107 Face 17492 3771 3631 15107 Face 17493 3380 3395 15108 Face 17494 3395 3514 15108 Face 17495 3514 3504 15108 Face 17496 3504 3380 15108 Face 17497 3524 3523 15109 Face 17498 3523 3401 15109 Face 17499 3401 3402 15109 Face 17500 3402 3524 15109 Face 17501 3249 3276 15110 Face 17502 3276 3312 15110 Face 17503 3312 3293 15110 Face 17504 3293 3249 15110 Face 17505 3318 3316 15111 Face 17506 3316 3284 15111 Face 17507 3284 3287 15111 Face 17508 3287 3318 15111 Face 17509 3205 3236 15112 Face 17510 3236 3253 15112 Face 17511 3253 3217 15112 Face 17512 3217 3205 15112 Face 17513 3263 3259 15113 Face 17514 3259 3241 15113 Face 17515 3241 3245 15113 Face 17516 3245 3263 15113 Face 17517 3313 3354 15114 Face 17518 3354 3270 15114 Face 17519 3270 3237 15114 Face 17520 3237 3313 15114 Face 17521 3283 3277 15115 Face 17522 3277 3366 15115 Face 17523 3366 3370 15115 Face 17524 3370 3283 15115 Face 17525 3531 3560 15116 Face 17526 3560 3447 15116 Face 17527 3447 3411 15116 Face 17528 3411 3531 15116 Face 17529 3461 3458 15117 Face 17530 3458 3563 15117 Face 17531 3563 3564 15117 Face 17532 3564 3461 15117 Face 17533 3963 3980 15118 Face 17534 3980 3719 15118 Face 17535 3719 3704 15118 Face 17536 3704 3963 15118 Face 17537 3726 3725 15119 Face 17538 3725 3983 15119 Face 17539 3983 3984 15119 Face 17540 3984 3726 15119 Face 17541 4450 4443 15120 Face 17542 4443 4210 15120 Face 17543 4210 4198 15120 Face 17544 4198 4450 15120 Face 17545 4207 4208 15121 Face 17546 4208 4439 15121 Face 17547 4439 4435 15121 Face 17548 4435 4207 15121 Face 17549 4687 4667 15122 Face 17550 4667 4650 15122 Face 17551 4650 4675 15122 Face 17552 4675 4687 15122 Face 17553 4633 4641 15123 Face 17554 4641 4660 15123 Face 17555 4660 4657 15123 Face 17556 4657 4633 15123 Face 17557 4438 4425 15124 Face 17558 4425 4584 15124 Face 17559 4584 4606 15124 Face 17560 4606 4438 15124 Face 17561 4568 4576 15125 Face 17562 4576 4422 15125 Face 17563 4422 4418 15125 Face 17564 4418 4568 15125 Face 17565 4218 4212 15126 Face 17566 4212 4317 15126 Face 17567 4317 4321 15126 Face 17568 4321 4218 15126 Face 17569 4313 4314 15127 Face 17570 4314 4209 15127 Face 17571 4209 4205 15127 Face 17572 4205 4313 15127 Face 17573 3944 3941 15128 Face 17574 3941 4076 15128 Face 17575 4076 4079 15128 Face 17576 4079 3944 15128 Face 17577 4073 4074 15129 Face 17578 4074 3943 15129 Face 17579 3943 3942 15129 Face 17580 3942 4073 15129 Face 17581 4070 3684 15130 Face 17582 3684 3718 15130 Face 17583 3718 4080 15130 Face 17584 4080 4070 15130 Face 17585 3404 3141 15131 Face 17586 3141 3178 15131 Face 17587 3178 3431 15131 Face 17588 3431 3404 15131 Face 17589 3684 3649 15132 Face 17590 3649 3355 15132 Face 17591 3355 3404 15132 Face 17592 3404 3684 15132 Face 17593 2991 3018 15133 Face 17594 3018 3001 15133 Face 17595 3001 3004 15133 Face 17596 3004 2991 15133 Face 17597 3141 3112 15134 Face 17598 3112 2987 15134 Face 17599 2987 2991 15134 Face 17600 2991 3141 15134 Face 17601 3145 3229 15135 Face 17602 3229 3199 15135 Face 17603 3199 3122 15135 Face 17604 3122 3145 15135 Face 17605 3018 3033 15136 Face 17606 3033 3169 15136 Face 17607 3169 3145 15136 Face 17608 3145 3018 15136 Face 17609 3285 3374 15137 Face 17610 3374 3335 15137 Face 17611 3335 3251 15137 Face 17612 3251 3285 15137 Face 17613 3229 3254 15138 Face 17614 3254 3305 15138 Face 17615 3305 3285 15138 Face 17616 3285 3229 15138 Face 17617 3493 3624 15139 Face 17618 3624 3586 15139 Face 17619 3586 3457 15139 Face 17620 3457 3493 15139 Face 17621 3374 3394 15140 Face 17622 3394 3507 15140 Face 17623 3507 3493 15140 Face 17624 3493 3374 15140 Face 17625 3770 4090 15141 Face 17626 4090 4061 15141 Face 17627 4061 3739 15141 Face 17628 3739 3770 15141 Face 17629 3624 3632 15142 Face 17630 3632 3785 15142 Face 17631 3785 3770 15142 Face 17632 3770 3624 15142 Face 17633 4618 5084 15143 Face 17634 5084 5055 15143 Face 17635 5055 4560 15143 Face 17636 4560 4618 15143 Face 17637 4090 4092 15144 Face 17638 4092 4619 15144 Face 17639 4619 4618 15144 Face 17640 4618 4090 15144 Face 17641 5377 5670 15145 Face 17642 5670 5653 15145 Face 17643 5653 5361 15145 Face 17644 5361 5377 15145 Face 17645 5084 5083 15146 Face 17646 5083 5390 15146 Face 17647 5390 5377 15146 Face 17648 5377 5084 15146 Face 17649 5964 6427 15147 Face 17650 6427 6393 15147 Face 17651 6393 5949 15147 Face 17652 5949 5964 15147 Face 17653 5670 5682 15148 Face 17654 5682 5990 15148 Face 17655 5990 5964 15148 Face 17656 5964 5670 15148 Face 17657 6940 7209 15149 Face 17658 7209 7181 15149 Face 17659 7181 6916 15149 Face 17660 6916 6940 15149 Face 17661 6427 6484 15150 Face 17662 6484 6981 15150 Face 17663 6981 6940 15150 Face 17664 6940 6427 15150 Face 17665 7367 7486 15151 Face 17666 7486 7474 15151 Face 17667 7474 7354 15151 Face 17668 7354 7367 15151 Face 17669 7209 7295 15152 Face 17670 7295 7431 15152 Face 17671 7431 7367 15152 Face 17672 7367 7209 15152 Face 17673 7610 7690 15153 Face 17674 7690 7679 15153 Face 17675 7679 7594 15153 Face 17676 7594 7610 15153 Face 17677 7486 7537 15154 Face 17678 7537 7643 15154 Face 17679 7643 7610 15154 Face 17680 7610 7486 15154 Face 17681 7751 7852 15155 Face 17682 7852 7847 15155 Face 17683 7847 7741 15155 Face 17684 7741 7751 15155 Face 17685 7690 7727 15156 Face 17686 7727 7781 15156 Face 17687 7781 7751 15156 Face 17688 7751 7690 15156 Face 17689 7987 8096 15157 Face 17690 8096 8078 15157 Face 17691 8078 7979 15157 Face 17692 7979 7987 15157 Face 17693 7852 7873 15158 Face 17694 7873 8006 15158 Face 17695 8006 7987 15158 Face 17696 7987 7852 15158 Face 17697 8029 7821 15159 Face 17698 7821 7800 15159 Face 17699 7800 8009 15159 Face 17700 8009 8029 15159 Face 17701 8096 8114 15160 Face 17702 8114 8044 15160 Face 17703 8044 8029 15160 Face 17704 8029 8096 15160 Face 17705 7513 7112 15161 Face 17706 7112 7097 15161 Face 17707 7097 7495 15161 Face 17708 7495 7513 15161 Face 17709 7821 7839 15162 Face 17710 7839 7535 15162 Face 17711 7535 7513 15162 Face 17712 7513 7821 15162 Face 17713 6639 6092 15163 Face 17714 6092 6070 15163 Face 17715 6070 6631 15163 Face 17716 6631 6639 15163 Face 17717 7112 7140 15164 Face 17718 7140 6656 15164 Face 17719 6656 6639 15164 Face 17720 6639 7112 15164 Face 17721 5722 5372 15165 Face 17722 5372 5359 15165 Face 17723 5359 5703 15165 Face 17724 5703 5722 15165 Face 17725 6092 6101 15166 Face 17726 6101 5737 15166 Face 17727 5737 5722 15166 Face 17728 5722 6092 15166 Face 17729 5030 4547 15167 Face 17730 4547 4522 15167 Face 17731 4522 5013 15167 Face 17732 5013 5030 15167 Face 17733 5372 5383 15168 Face 17734 5383 5027 15168 Face 17735 5027 5030 15168 Face 17736 5030 5372 15168 Face 17737 4547 4508 15169 Face 17738 4508 4031 15169 Face 17739 4031 4070 15169 Face 17740 4070 4547 15169 Face 17741 3976 3581 15170 Face 17742 3581 3649 15170 Face 17743 3649 4031 15170 Face 17744 4031 3976 15170 Face 17745 3290 3061 15171 Face 17746 3061 3112 15171 Face 17747 3112 3355 15171 Face 17748 3355 3290 15171 Face 17749 3581 3506 15172 Face 17750 3506 3206 15172 Face 17751 3206 3290 15172 Face 17752 3290 3581 15172 Face 17753 2938 3006 15173 Face 17754 3006 3033 15173 Face 17755 3033 2987 15173 Face 17756 2987 2938 15173 Face 17757 3061 2978 15174 Face 17758 2978 2880 15174 Face 17759 2880 2938 15174 Face 17760 2938 3061 15174 Face 17761 3142 3223 15175 Face 17762 3223 3254 15175 Face 17763 3254 3169 15175 Face 17764 3169 3142 15175 Face 17765 3006 2933 15176 Face 17766 2933 3088 15176 Face 17767 3088 3142 15176 Face 17768 3142 3006 15176 Face 17769 3272 3356 15177 Face 17770 3356 3394 15177 Face 17771 3394 3305 15177 Face 17772 3305 3272 15177 Face 17773 3223 3175 15178 Face 17774 3175 3209 15178 Face 17775 3209 3272 15178 Face 17776 3272 3223 15178 Face 17777 3470 3589 15179 Face 17778 3589 3632 15179 Face 17779 3632 3507 15179 Face 17780 3507 3470 15179 Face 17781 3356 3294 15180 Face 17782 3294 3406 15180 Face 17783 3406 3470 15180 Face 17784 3470 3356 15180 Face 17785 3729 4056 15181 Face 17786 4056 4092 15181 Face 17787 4092 3785 15181 Face 17788 3785 3729 15181 Face 17789 3589 3530 15182 Face 17790 3530 3663 15182 Face 17791 3663 3729 15182 Face 17792 3729 3589 15182 Face 17793 4556 5069 15183 Face 17794 5069 5083 15183 Face 17795 5083 4619 15183 Face 17796 4619 4556 15183 Face 17797 4056 3998 15184 Face 17798 3998 4482 15184 Face 17799 4482 4556 15184 Face 17800 4556 4056 15184 Face 17801 5394 5699 15185 Face 17802 5699 5682 15185 Face 17803 5682 5390 15185 Face 17804 5390 5394 15185 Face 17805 5069 5038 15186 Face 17806 5038 5381 15186 Face 17807 5381 5394 15186 Face 17808 5394 5069 15186 Face 17809 6023 6566 15187 Face 17810 6566 6484 15187 Face 17811 6484 5990 15187 Face 17812 5990 6023 15187 Face 17813 5699 5715 15188 Face 17814 5715 6055 15188 Face 17815 6055 6023 15188 Face 17816 6023 5699 15188 Face 17817 7041 7381 15189 Face 17818 7381 7295 15189 Face 17819 7295 6981 15189 Face 17820 6981 7041 15189 Face 17821 6566 6623 15190 Face 17822 6623 7125 15190 Face 17823 7125 7041 15190 Face 17824 7041 6566 15190 Face 17825 7507 7637 15191 Face 17826 7637 7537 15191 Face 17827 7537 7431 15191 Face 17828 7431 7507 15191 Face 17829 7381 7458 15192 Face 17830 7458 7607 15192 Face 17831 7607 7507 15192 Face 17832 7507 7381 15192 Face 17833 7743 7828 15193 Face 17834 7828 7727 15193 Face 17835 7727 7643 15193 Face 17836 7643 7743 15193 Face 17837 7637 7731 15194 Face 17838 7731 7843 15194 Face 17839 7843 7743 15194 Face 17840 7743 7637 15194 Face 17841 7867 7952 15195 Face 17842 7952 7873 15195 Face 17843 7873 7781 15195 Face 17844 7781 7867 15195 Face 17845 7828 7912 15196 Face 17846 7912 7959 15196 Face 17847 7959 7867 15196 Face 17848 7867 7828 15196 Face 17849 8105 8177 15197 Face 17850 8177 8114 15197 Face 17851 8114 8006 15197 Face 17852 8006 8105 15197 Face 17853 7952 8054 15198 Face 17854 8054 8202 15198 Face 17855 8202 8105 15198 Face 17856 8105 7952 15198 Face 17857 8120 7884 15199 Face 17858 7884 7839 15199 Face 17859 7839 8044 15199 Face 17860 8044 8120 15199 Face 17861 8177 8241 15200 Face 17862 8241 8185 15200 Face 17863 8185 8120 15200 Face 17864 8120 8177 15200 Face 17865 7585 7179 15201 Face 17866 7179 7140 15201 Face 17867 7140 7535 15201 Face 17868 7535 7585 15201 Face 17869 7884 7943 15202 Face 17870 7943 7641 15202 Face 17871 7641 7585 15202 Face 17872 7585 7884 15202 Face 17873 6705 6138 15203 Face 17874 6138 6101 15203 Face 17875 6101 6656 15203 Face 17876 6656 6705 15203 Face 17877 7179 7242 15204 Face 17878 7242 6741 15204 Face 17879 6741 6705 15204 Face 17880 6705 7179 15204 Face 17881 5749 5389 15205 Face 17882 5389 5383 15205 Face 17883 5383 5737 15205 Face 17884 5737 5749 15205 Face 17885 6138 6163 15206 Face 17886 6163 5767 15206 Face 17887 5767 5749 15206 Face 17888 5749 6138 15206 Face 17889 5007 4445 15207 Face 17890 4445 4508 15207 Face 17891 4508 5027 15207 Face 17892 5027 5007 15207 Face 17893 5389 5373 15208 Face 17894 5373 4973 15208 Face 17895 4973 5007 15208 Face 17896 5007 5389 15208 Face 17897 4445 4394 15209 Face 17898 4394 3903 15209 Face 17899 3903 3976 15209 Face 17900 3976 4445 15209 Face 17901 3816 3409 15210 Face 17902 3409 3506 15210 Face 17903 3506 3903 15210 Face 17904 3903 3816 15210 Face 17905 3092 2854 15211 Face 17906 2854 2978 15211 Face 17907 2978 3206 15211 Face 17908 3206 3092 15211 Face 17909 3409 3361 15212 Face 17910 3361 3036 15212 Face 17911 3036 3092 15212 Face 17912 3092 3409 15212 Face 17913 2799 2832 15213 Face 17914 2832 2933 15213 Face 17915 2933 2880 15213 Face 17916 2880 2799 15213 Face 17917 2854 2811 15214 Face 17918 2811 2757 15214 Face 17919 2757 2799 15214 Face 17920 2799 2854 15214 Face 17921 2969 3071 15215 Face 17922 3071 3175 15215 Face 17923 3175 3088 15215 Face 17924 3088 2969 15215 Face 17925 2832 2792 15216 Face 17926 2792 2896 15216 Face 17927 2896 2969 15216 Face 17928 2969 2832 15216 Face 17929 3109 3188 15217 Face 17930 3188 3294 15217 Face 17931 3294 3209 15217 Face 17932 3209 3109 15217 Face 17933 3071 3007 15218 Face 17934 3007 3054 15218 Face 17935 3054 3109 15218 Face 17936 3109 3071 15218 Face 17937 3298 3427 15219 Face 17938 3427 3530 15219 Face 17939 3530 3406 15219 Face 17940 3406 3298 15219 Face 17941 3188 3136 15220 Face 17942 3136 3242 15220 Face 17943 3242 3298 15220 Face 17944 3298 3188 15220 Face 17945 3569 3912 15221 Face 17946 3912 3998 15221 Face 17947 3998 3663 15221 Face 17948 3663 3569 15221 Face 17949 3427 3383 15222 Face 17950 3383 3532 15222 Face 17951 3532 3569 15222 Face 17952 3569 3427 15222 Face 17953 4413 4994 15223 Face 17954 4994 5038 15223 Face 17955 5038 4482 15223 Face 17956 4482 4413 15223 Face 17957 3912 3873 15224 Face 17958 3873 4379 15224 Face 17959 4379 4413 15224 Face 17960 4413 3912 15224 Face 17961 5363 5724 15225 Face 17962 5724 5715 15225 Face 17963 5715 5381 15225 Face 17964 5381 5363 15225 Face 17965 4994 4976 15226 Face 17966 4976 5350 15226 Face 17967 5350 5363 15226 Face 17968 5363 4994 15226 Face 17969 6095 6685 15227 Face 17970 6685 6623 15227 Face 17971 6623 6055 15227 Face 17972 6055 6095 15227 Face 17973 5724 5732 15228 Face 17974 5732 6107 15228 Face 17975 6107 6095 15228 Face 17976 6095 5724 15228 Face 17977 7191 7543 15229 Face 17978 7543 7458 15229 Face 17979 7458 7125 15229 Face 17980 7125 7191 15229 Face 17981 6685 6716 15230 Face 17982 6716 7253 15230 Face 17983 7253 7191 15230 Face 17984 7191 6685 15230 Face 17985 7699 7837 15231 Face 17986 7837 7731 15231 Face 17987 7731 7607 15231 Face 17988 7607 7699 15231 Face 17989 7543 7598 15232 Face 17990 7598 7750 15232 Face 17991 7750 7699 15232 Face 17992 7699 7543 15232 Face 17993 7947 8032 15233 Face 17994 8032 7912 15233 Face 17995 7912 7843 15233 Face 17996 7843 7947 15233 Face 17997 7837 7882 15234 Face 17998 7882 7999 15234 Face 17999 7999 7947 15234 Face 18000 7947 7837 15234 Face 18001 8085 8186 15235 Face 18002 8186 8054 15235 Face 18003 8054 7959 15235 Face 18004 7959 8085 15235 Face 18005 8032 8103 15236 Face 18006 8103 8156 15236 Face 18007 8156 8085 15236 Face 18008 8085 8032 15236 Face 18009 8291 8328 15237 Face 18010 8328 8241 15237 Face 18011 8241 8202 15237 Face 18012 8202 8291 15237 Face 18013 8186 8229 15238 Face 18014 8229 8333 15238 Face 18015 8333 8291 15238 Face 18016 8291 8186 15238 Face 18017 8268 8046 15239 Face 18018 8046 7943 15239 Face 18019 7943 8185 15239 Face 18020 8185 8268 15239 Face 18021 8328 8364 15240 Face 18022 8364 8310 15240 Face 18023 8310 8268 15240 Face 18024 8268 8328 15240 Face 18025 7722 7325 15241 Face 18026 7325 7242 15241 Face 18027 7242 7641 15241 Face 18028 7641 7722 15241 Face 18029 8046 8122 15242 Face 18030 8122 7775 15242 Face 18031 7775 7722 15242 Face 18032 7722 8046 15242 Face 18033 6791 6216 15243 Face 18034 6216 6163 15243 Face 18035 6163 6741 15243 Face 18036 6741 6791 15243 Face 18037 7325 7363 15244 Face 18038 7363 6816 15244 Face 18039 6816 6791 15244 Face 18040 6791 7325 15244 Face 18041 5781 5355 15245 Face 18042 5355 5373 15245 Face 18043 5373 5767 15245 Face 18044 5767 5781 15245 Face 18045 6216 6255 15246 Face 18046 6255 5788 15246 Face 18047 5788 5781 15246 Face 18048 5781 6216 15246 Face 18049 4930 4320 15247 Face 18050 4320 4394 15247 Face 18051 4394 4973 15247 Face 18052 4973 4930 15247 Face 18053 5355 5345 15248 Face 18054 5345 4902 15248 Face 18055 4902 4930 15248 Face 18056 4930 5355 15248 Face 18057 4320 4300 15249 Face 18058 4300 3755 15249 Face 18059 3755 3816 15249 Face 18060 3816 4320 15249 Face 18061 3756 3362 15250 Face 18062 3362 3361 15250 Face 18063 3361 3755 15250 Face 18064 3755 3756 15250 Face 18065 3040 2815 15251 Face 18066 2815 2811 15251 Face 18067 2811 3036 15251 Face 18068 3036 3040 15251 Face 18069 3362 4437 15252 Face 18070 4437 4144 15252 Face 18071 4144 3040 15252 Face 18072 3040 3362 15252 Face 18073 2762 2796 15253 Face 18074 2796 2792 15253 Face 18075 2792 2757 15253 Face 18076 2757 2762 15253 Face 18077 2815 4144 15254 Face 18078 4144 4025 15254 Face 18079 4025 2762 15254 Face 18080 2762 2815 15254 Face 18081 2902 3011 15255 Face 18082 3011 3007 15255 Face 18083 3007 2896 15255 Face 18084 2896 2902 15255 Face 18085 2796 4025 15256 Face 18086 4025 4057 15256 Face 18087 4057 2902 15256 Face 18088 2902 2796 15256 Face 18089 3060 3137 15257 Face 18090 3137 3136 15257 Face 18091 3136 3054 15257 Face 18092 3054 3060 15257 Face 18093 3011 4057 15258 Face 18094 4057 4109 15258 Face 18095 4109 3060 15258 Face 18096 3060 3011 15258 Face 18097 3247 3385 15259 Face 18098 3385 3383 15259 Face 18099 3383 3242 15259 Face 18100 3242 3247 15259 Face 18101 3137 4109 15260 Face 18102 4109 4276 15260 Face 18103 4276 3247 15260 Face 18104 3247 3137 15260 Face 18105 3535 3874 15261 Face 18106 3874 3873 15261 Face 18107 3873 3532 15261 Face 18108 3532 3535 15261 Face 18109 3385 4276 15262 Face 18110 4276 4514 15262 Face 18111 4514 3535 15262 Face 18112 3535 3385 15262 Face 18113 4378 4975 15263 Face 18114 4975 4976 15263 Face 18115 4976 4379 15263 Face 18116 4379 4378 15263 Face 18117 3874 4514 15264 Face 18118 4514 5152 15264 Face 18119 5152 4378 15264 Face 18120 4378 3874 15264 Face 18121 5349 5731 15265 Face 18122 5731 5732 15265 Face 18123 5732 5350 15265 Face 18124 5350 5349 15265 Face 18125 4975 5152 15266 Face 18126 5152 5561 15266 Face 18127 5561 5349 15266 Face 18128 5349 4975 15266 Face 18129 6106 6715 15267 Face 18130 6715 6716 15267 Face 18131 6716 6107 15267 Face 18132 6107 6106 15267 Face 18133 5731 5561 15268 Face 18134 5561 5973 15268 Face 18135 5973 6106 15268 Face 18136 6106 5731 15268 Face 18137 7252 7597 15269 Face 18138 7597 7598 15269 Face 18139 7598 7253 15269 Face 18140 7253 7252 15269 Face 18141 6715 5973 15270 Face 18142 5973 6625 15270 Face 18143 6625 7252 15270 Face 18144 7252 6715 15270 Face 18145 7748 7880 15271 Face 18146 7880 7882 15271 Face 18147 7882 7750 15271 Face 18148 7750 7748 15271 Face 18149 7597 6625 15272 Face 18150 6625 6857 15272 Face 18151 6857 7748 15272 Face 18152 7748 7597 15272 Face 18153 7996 8101 15273 Face 18154 8101 8103 15273 Face 18155 8103 7999 15273 Face 18156 7999 7996 15273 Face 18157 7880 6857 15274 Face 18158 6857 7004 15274 Face 18159 7004 7996 15274 Face 18160 7996 7880 15274 Face 18161 8152 8226 15275 Face 18162 8226 8229 15275 Face 18163 8229 8156 15275 Face 18164 8156 8152 15275 Face 18165 8101 7004 15276 Face 18166 7004 7045 15276 Face 18167 7045 8152 15276 Face 18168 8152 8101 15276 Face 18169 8331 8362 15277 Face 18170 8362 8364 15277 Face 18171 8364 8333 15277 Face 18172 8333 8331 15277 Face 18173 8226 7045 15278 Face 18174 7045 7081 15278 Face 18175 7081 8331 15278 Face 18176 8331 8226 15278 Face 18177 8306 8112 15279 Face 18178 8112 8122 15279 Face 18179 8122 8310 15279 Face 18180 8310 8306 15279 Face 18181 8362 7081 15280 Face 18182 7081 6972 15280 Face 18183 6972 8306 15280 Face 18184 8306 8362 15280 Face 18185 7771 7362 15281 Face 18186 7362 7363 15281 Face 18187 7363 7775 15281 Face 18188 7775 7771 15281 Face 18189 8112 6972 15282 Face 18190 6972 6691 15282 Face 18191 6691 7771 15282 Face 18192 7771 8112 15282 Face 18193 6815 6254 15283 Face 18194 6254 6255 15283 Face 18195 6255 6816 15283 Face 18196 6816 6815 15283 Face 18197 7362 6691 15284 Face 18198 6691 6038 15284 Face 18199 6038 6815 15284 Face 18200 6815 7362 15284 Face 18201 5787 5344 15285 Face 18202 5344 5345 15285 Face 18203 5345 5788 15285 Face 18204 5788 5787 15285 Face 18205 6254 6038 15286 Face 18206 6038 5567 15286 Face 18207 5567 5787 15286 Face 18208 5787 6254 15286 Face 18209 4901 4301 15287 Face 18210 4301 4300 15287 Face 18211 4300 4902 15287 Face 18212 4902 4901 15287 Face 18213 5344 5567 15288 Face 18214 5567 5099 15288 Face 18215 5099 4901 15288 Face 18216 4901 5344 15288 Face 18217 4301 5099 15289 Face 18218 5099 4437 15289 Face 18219 4437 3756 15289 Face 18220 3756 4301 15289 Face 18221 2423 2355 15290 Face 18222 2355 2435 15290 Face 18223 2435 2533 15290 Face 18224 2533 2423 15290 Face 18225 2108 2175 15291 Face 18226 2175 2138 15291 Face 18227 2138 2105 15291 Face 18228 2105 2108 15291 Face 18229 1965 2012 15292 Face 18230 2012 2140 15292 Face 18231 2140 2118 15292 Face 18232 2118 1965 15292 Face 18233 1869 1910 15293 Face 18234 1910 2078 15293 Face 18235 2078 2052 15293 Face 18236 2052 1869 15293 Face 18237 1884 1835 15294 Face 18238 1835 1786 15294 Face 18239 1786 1826 15294 Face 18240 1826 1884 15294 Face 18241 1974 1926 15295 Face 18242 1926 1892 15295 Face 18243 1892 1955 15295 Face 18244 1955 1974 15295 Face 18245 1793 1770 15296 Face 18246 1770 1746 15296 Face 18247 1746 1767 15296 Face 18248 1767 1793 15296 Face 18249 1721 1747 15297 Face 18250 1747 1733 15297 Face 18251 1733 1717 15297 Face 18252 1717 1721 15297 Face 18253 2032 1971 15298 Face 18254 1971 1896 15298 Face 18255 1896 1967 15298 Face 18256 1967 2032 15298 Face 18257 2117 2045 15299 Face 18258 2045 2086 15299 Face 18259 2086 2134 15299 Face 18260 2134 2117 15299 Face 18261 1839 1787 15300 Face 18262 1787 1845 15300 Face 18263 1845 1906 15300 Face 18264 1906 1839 15300 Face 18265 1790 1764 15301 Face 18266 1764 1745 15301 Face 18267 1745 1765 15301 Face 18268 1765 1790 15301 Face 18269 1754 1731 15302 Face 18270 1731 1722 15302 Face 18271 1722 1758 15302 Face 18272 1758 1754 15302 Face 18273 1716 1723 15303 Face 18274 1723 1724 15303 Face 18275 1724 1715 15303 Face 18276 1715 1716 15303 Face 18277 1756 1725 15304 Face 18278 1725 1729 15304 Face 18279 1729 1757 15304 Face 18280 1757 1756 15304 Face 18281 1714 1734 15305 Face 18282 1734 1740 15305 Face 18283 1740 1719 15305 Face 18284 1719 1714 15305 Face 18285 1760 1730 15306 Face 18286 1730 1735 15306 Face 18287 1735 1763 15306 Face 18288 1763 1760 15306 Face 18289 1727 1750 15307 Face 18290 1750 1759 15307 Face 18291 1759 1744 15307 Face 18292 1744 1727 15307 Face 18293 1769 1742 15308 Face 18294 1742 1753 15308 Face 18295 1753 1778 15308 Face 18296 1778 1769 15308 Face 18297 1761 1776 15309 Face 18298 1776 1796 15309 Face 18299 1796 1779 15309 Face 18300 1779 1761 15309 Face 18301 1782 1766 15310 Face 18302 1766 1783 15310 Face 18303 1783 1806 15310 Face 18304 1806 1782 15310 Face 18305 1803 1837 15311 Face 18306 1837 1894 15311 Face 18307 1894 1856 15311 Face 18308 1856 1803 15311 Face 18309 1857 1819 15312 Face 18310 1819 1883 15312 Face 18311 1883 1900 15312 Face 18312 1900 1857 15312 Face 18313 1912 1969 15313 Face 18314 1969 2014 15313 Face 18315 2014 1941 15313 Face 18316 1941 1912 15313 Face 18317 1990 1987 15314 Face 18318 1987 1963 15314 Face 18319 1963 1983 15314 Face 18320 1983 1990 15314 Face 18321 2055 2063 15315 Face 18322 2063 2061 15315 Face 18323 2061 2029 15315 Face 18324 2029 2055 15315 Face 18325 2001 2017 15316 Face 18326 2017 2067 15316 Face 18327 2067 2062 15316 Face 18328 2062 2001 15316 Face 18329 2152 2145 15317 Face 18330 2145 2160 15317 Face 18331 2160 2169 15317 Face 18332 2169 2152 15317 Face 18333 2200 2178 15318 Face 18334 2178 2204 15318 Face 18335 2204 2219 15318 Face 18336 2219 2200 15318 Face 18337 1956 2042 15319 Face 18338 2042 2013 15319 Face 18339 2013 1916 15319 Face 18340 1916 1956 15319 Face 18341 1936 1931 15320 Face 18342 1931 1903 15320 Face 18343 1903 1907 15320 Face 18344 1907 1936 15320 Face 18345 1862 1867 15321 Face 18346 1867 1860 15321 Face 18347 1860 1849 15321 Face 18348 1849 1862 15321 Face 18349 1822 1802 15322 Face 18350 1802 1816 15322 Face 18351 1816 1842 15322 Face 18352 1842 1822 15322 Face 18353 1858 1886 15323 Face 18354 1886 1893 15323 Face 18355 1893 1855 15323 Face 18356 1855 1858 15323 Face 18357 1854 1851 15324 Face 18358 1851 1876 15324 Face 18359 1876 1865 15324 Face 18360 1865 1854 15324 Face 18361 1830 1882 15325 Face 18362 1882 1881 15325 Face 18363 1881 1823 15325 Face 18364 1823 1830 15325 Face 18365 1890 1905 15326 Face 18366 1905 1846 15326 Face 18367 1846 1825 15326 Face 18368 1825 1890 15326 Face 18369 1902 1868 15327 Face 18370 1868 1924 15327 Face 18371 1924 1932 15327 Face 18372 1932 1902 15327 Face 18373 2036 2047 15328 Face 18374 2047 2039 15328 Face 18375 2039 1989 15328 Face 18376 1989 2036 15328 Face 18377 1820 1909 15329 Face 18378 1909 1966 15329 Face 18379 1966 1813 15329 Face 18380 1813 1820 15329 Face 18381 2077 2064 15330 Face 18382 2064 2124 15330 Face 18383 2124 2132 15330 Face 18384 2132 2077 15330 Face 18385 2153 2073 15331 Face 18386 2073 2037 15331 Face 18387 2037 2079 15331 Face 18388 2079 2153 15331 Face 18389 1848 1978 15332 Face 18390 1978 1927 15332 Face 18391 1927 1844 15332 Face 18392 1844 1848 15332 Face 18393 2171 2296 15333 Face 18394 2296 2254 15333 Face 18395 2254 2135 15333 Face 18396 2135 2171 15333 Face 18397 1827 1970 15334 Face 18398 1970 1993 15334 Face 18399 1993 1828 15334 Face 18400 1828 1827 15334 Face 18401 1853 2003 15335 Face 18402 2003 2026 15335 Face 18403 2026 1885 15335 Face 18404 1885 1853 15335 Face 18405 1921 2056 15336 Face 18406 2056 2107 15336 Face 18407 2107 2006 15336 Face 18408 2006 1921 15336 Face 18409 2075 2198 15337 Face 18410 2198 2244 15337 Face 18411 2244 2119 15337 Face 18412 2119 2075 15337 Face 18413 2083 2223 15338 Face 18414 2223 2206 15338 Face 18415 2206 2106 15338 Face 18416 2106 2083 15338 Face 18417 2501 2438 15339 Face 18418 2438 2391 15339 Face 18419 2391 2485 15339 Face 18420 2485 2501 15339 Face 18421 2482 2380 15340 Face 18422 2380 2339 15340 Face 18423 2339 2458 15340 Face 18424 2458 2482 15340 Face 18425 2266 2217 15341 Face 18426 2217 2389 15341 Face 18427 2389 2422 15341 Face 18428 2422 2266 15341 Face 18429 2534 2498 15342 Face 18430 2498 2590 15342 Face 18431 2590 2624 15342 Face 18432 2624 2534 15342 Face 18433 2356 2176 15343 Face 18434 2176 2157 15343 Face 18435 2157 2302 15343 Face 18436 2302 2356 15343 Face 18437 2415 2449 15344 Face 18438 2449 2388 15344 Face 18439 2388 2324 15344 Face 18440 2324 2415 15344 Face 18441 2554 2512 15345 Face 18442 2512 2575 15345 Face 18443 2575 2616 15345 Face 18444 2616 2554 15345 Face 18445 2626 2595 15346 Face 18446 2595 2658 15346 Face 18447 2658 2694 15346 Face 18448 2694 2626 15346 Face 18449 2451 2492 15347 Face 18450 2492 2548 15347 Face 18451 2548 2529 15347 Face 18452 2529 2451 15347 Face 18453 2643 2594 15348 Face 18454 2594 2604 15348 Face 18455 2604 2672 15348 Face 18456 2672 2643 15348 Face 18457 2765 2714 15349 Face 18458 2714 2745 15349 Face 18459 2745 2802 15349 Face 18460 2802 2765 15349 Face 18461 2678 2603 15350 Face 18462 2603 2591 15350 Face 18463 2591 2666 15350 Face 18464 2666 2678 15350 Face 18465 2814 2761 15351 Face 18466 2761 2744 15351 Face 18467 2744 2801 15351 Face 18468 2801 2814 15351 Face 18469 2633 2567 15352 Face 18470 2567 2539 15352 Face 18471 2539 2607 15352 Face 18472 2607 2633 15352 Face 18473 2760 2710 15353 Face 18474 2710 2660 15353 Face 18475 2660 2705 15353 Face 18476 2705 2760 15353 Face 18477 2540 2477 15354 Face 18478 2477 2409 15354 Face 18479 2409 2459 15354 Face 18480 2459 2540 15354 Face 18481 2630 2598 15355 Face 18482 2598 2535 15355 Face 18483 2535 2581 15355 Face 18484 2581 2630 15355 Face 18485 2378 2307 15356 Face 18486 2307 2315 15356 Face 18487 2315 2377 15356 Face 18488 2377 2378 15356 Face 18489 2455 2404 15357 Face 18490 2404 2503 15357 Face 18491 2503 2543 15357 Face 18492 2543 2455 15357 Face 18493 2593 2526 15358 Face 18494 2526 2602 15358 Face 18495 2602 2652 15358 Face 18496 2652 2593 15358 Face 18497 2629 2599 15359 Face 18498 2599 2693 15359 Face 18499 2693 2733 15359 Face 18500 2733 2629 15359 Face 18501 2742 2685 15360 Face 18502 2685 2785 15360 Face 18503 2785 2846 15360 Face 18504 2846 2742 15360 Face 18505 2869 2812 15361 Face 18506 2812 2920 15361 Face 18507 2920 3010 15361 Face 18508 3010 2869 15361 Face 18509 3120 3049 15362 Face 18510 3049 3186 15362 Face 18511 3186 3265 15362 Face 18512 3265 3120 15362 Face 18513 3172 3147 15363 Face 18514 3147 3325 15363 Face 18515 3325 3384 15363 Face 18516 3384 3172 15363 Face 18517 3178 3200 15364 Face 18518 3200 3435 15364 Face 18519 3435 3431 15364 Face 18520 3431 3178 15364 Face 18521 3035 3047 15365 Face 18522 3047 3004 15365 Face 18523 3004 3001 15365 Face 18524 3001 3035 15365 Face 18525 3439 3333 15366 Face 18526 3333 3463 15366 Face 18527 3463 3611 15366 Face 18528 3611 3439 15366 Face 18529 3613 3539 15367 Face 18530 3539 3792 15367 Face 18531 3792 3938 15367 Face 18532 3938 3613 15367 Face 18533 3718 3695 15368 Face 18534 3695 4030 15368 Face 18535 4030 4080 15368 Face 18536 4080 3718 15368 Face 18537 2721 2483 15369 Face 18538 2483 2381 15369 Face 18539 2381 2592 15369 Face 18540 2592 2721 15369 Face 18541 3502 3167 15370 Face 18542 3167 2861 15370 Face 18543 2861 3232 15370 Face 18544 3232 3502 15370 Face 18545 2468 2305 15371 Face 18546 2305 2239 15371 Face 18547 2239 2368 15371 Face 18548 2368 2468 15371 Face 18549 2917 2675 15372 Face 18550 2675 2546 15372 Face 18551 2546 2775 15372 Face 18552 2775 2917 15372 Face 18553 2279 2177 15373 Face 18554 2177 2158 15373 Face 18555 2158 2245 15373 Face 18556 2245 2279 15373 Face 18557 2726 2487 15374 Face 18558 2487 2456 15374 Face 18559 2456 2697 15374 Face 18560 2697 2726 15374 Face 18561 2253 2168 15375 Face 18562 2168 2192 15375 Face 18563 2192 2275 15375 Face 18564 2275 2253 15375 Face 18565 2681 2444 15376 Face 18566 2444 2445 15376 Face 18567 2445 2673 15376 Face 18568 2673 2681 15376 Face 18569 2320 2225 15377 Face 18570 2225 2323 15377 Face 18571 2323 2418 15377 Face 18572 2418 2320 15377 Face 18573 2665 2457 15378 Face 18574 2457 2513 15378 Face 18575 2513 2679 15378 Face 18576 2679 2665 15378 Face 18577 2538 2465 15379 Face 18578 2465 2524 15379 Face 18579 2524 2586 15379 Face 18580 2586 2538 15379 Face 18581 2713 2596 15380 Face 18582 2596 2628 15380 Face 18583 2628 2730 15380 Face 18584 2730 2713 15380 Face 18585 2743 2640 15381 Face 18586 2640 2631 15381 Face 18587 2631 2727 15381 Face 18588 2727 2743 15381 Face 18589 4238 3743 15382 Face 18590 3743 3546 15382 Face 18591 3546 4023 15382 Face 18592 4023 4238 15382 Face 18593 3708 3303 15383 Face 18594 3303 3154 15383 Face 18595 3154 3545 15383 Face 18596 3545 3708 15383 Face 18597 4504 4233 15384 Face 18598 4233 3990 15384 Face 18599 3990 4330 15384 Face 18600 4330 4504 15384 Face 18601 3519 3121 15385 Face 18602 3121 3083 15385 Face 18603 3083 3483 15385 Face 18604 3483 3519 15385 Face 18605 4298 3936 15386 Face 18606 3936 3886 15386 Face 18607 3886 4265 15386 Face 18608 4265 4298 15386 Face 18609 3428 3034 15387 Face 18610 3034 3000 15387 Face 18611 3000 3392 15387 Face 18612 3392 3428 15387 Face 18613 3348 2977 15388 Face 18614 2977 2941 15388 Face 18615 2941 3300 15388 Face 18616 3300 3348 15388 Face 18617 3910 3685 15389 Face 18618 3685 3623 15389 Face 18619 3623 3870 15389 Face 18620 3870 3910 15389 Face 18621 3239 2918 15390 Face 18622 2918 2903 15390 Face 18623 2903 3191 15390 Face 18624 3191 3239 15390 Face 18625 3749 3551 15391 Face 18626 3551 3477 15391 Face 18627 3477 3667 15391 Face 18628 3667 3749 15391 Face 18629 3148 2887 15392 Face 18630 2887 2859 15392 Face 18631 2859 3093 15392 Face 18632 3093 3148 15392 Face 18633 3588 3400 15393 Face 18634 3400 3328 15393 Face 18635 3328 3543 15393 Face 18636 3543 3588 15393 Face 18637 3757 3720 15394 Face 18638 3720 3927 15394 Face 18639 3927 3957 15394 Face 18640 3957 3757 15394 Face 18641 3900 3840 15395 Face 18642 3840 3988 15395 Face 18643 3988 4042 15395 Face 18644 4042 3900 15395 Face 18645 4035 3999 15396 Face 18646 3999 4143 15396 Face 18647 4143 4191 15396 Face 18648 4191 4035 15396 Face 18649 4123 4096 15397 Face 18650 4096 4280 15397 Face 18651 4280 4292 15397 Face 18652 4292 4123 15397 Face 18653 4211 4138 15398 Face 18654 4138 4307 15398 Face 18655 4307 4386 15398 Face 18656 4386 4211 15398 Face 18657 4441 4325 15399 Face 18658 4325 4555 15399 Face 18659 4555 4698 15399 Face 18660 4698 4441 15399 Face 18661 4454 4423 15400 Face 18662 4423 4690 15400 Face 18663 4690 4738 15400 Face 18664 4738 4454 15400 Face 18665 4645 4494 15401 Face 18666 4494 4769 15401 Face 18667 4769 4882 15401 Face 18668 4882 4645 15401 Face 18669 4946 4846 15402 Face 18670 4846 5012 15402 Face 18671 5012 5095 15402 Face 18672 5095 4946 15402 Face 18673 5086 5182 15403 Face 18674 5182 5149 15403 Face 18675 5149 5028 15403 Face 18676 5028 5086 15403 Face 18677 5051 4992 15404 Face 18678 4992 5153 15404 Face 18679 5153 5163 15404 Face 18680 5163 5051 15404 Face 18681 5570 5708 15405 Face 18682 5708 5660 15405 Face 18683 5660 5476 15405 Face 18684 5476 5570 15405 Face 18685 5276 5321 15406 Face 18686 5321 5418 15406 Face 18687 5418 5397 15406 Face 18688 5397 5276 15406 Face 18689 5251 5259 15407 Face 18690 5259 5365 15407 Face 18691 5365 5332 15407 Face 18692 5332 5251 15407 Face 18693 4727 5113 15408 Face 18694 5113 5107 15408 Face 18695 5107 4743 15408 Face 18696 4743 4727 15408 Face 18697 4747 5098 15409 Face 18698 5098 5147 15409 Face 18699 5147 4931 15409 Face 18700 4931 4747 15409 Face 18701 3184 3326 15410 Face 18702 3326 3378 15410 Face 18703 3378 3258 15410 Face 18704 3258 3184 15410 Face 18705 3126 3127 15411 Face 18706 3127 3308 15411 Face 18707 3308 3139 15411 Face 18708 3139 3126 15411 Face 18709 3716 3540 15412 Face 18710 3540 3529 15412 Face 18711 3529 3694 15412 Face 18712 3694 3716 15412 Face 18713 3548 3536 15413 Face 18714 3536 3730 15413 Face 18715 3730 3741 15413 Face 18716 3741 3548 15413 Face 18717 4039 3899 15414 Face 18718 3899 3862 15414 Face 18719 3862 4003 15414 Face 18720 4003 4039 15414 Face 18721 3679 3505 15415 Face 18722 3505 3533 15415 Face 18723 3533 3658 15415 Face 18724 3658 3679 15415 Face 18725 3468 3372 15416 Face 18726 3372 3527 15416 Face 18727 3527 3607 15416 Face 18728 3607 3468 15416 Face 18729 3711 3594 15417 Face 18730 3594 3717 15417 Face 18731 3717 3854 15417 Face 18732 3854 3711 15417 Face 18733 3767 3676 15418 Face 18734 3676 3842 15418 Face 18735 3842 3937 15418 Face 18736 3937 3767 15418 Face 18737 4008 3895 15419 Face 18738 3895 4022 15419 Face 18739 4022 4085 15419 Face 18740 4085 4008 15419 Face 18741 4050 3961 15420 Face 18742 3961 4203 15420 Face 18743 4203 4284 15420 Face 18744 4284 4050 15420 Face 18745 4181 4119 15421 Face 18746 4119 4306 15421 Face 18747 4306 4333 15421 Face 18748 4333 4181 15421 Face 18749 4697 4679 15422 Face 18750 4679 5082 15422 Face 18751 5082 5077 15422 Face 18752 5077 4697 15422 Face 18753 4684 4682 15423 Face 18754 4682 5037 15423 Face 18755 5037 5029 15423 Face 18756 5029 4684 15423 Face 18757 4797 4729 15424 Face 18758 4729 5049 15424 Face 18759 5049 5089 15424 Face 18760 5089 4797 15424 Face 18761 5337 5343 15425 Face 18762 5343 5658 15425 Face 18763 5658 5662 15425 Face 18764 5662 5337 15425 Face 18765 5362 5347 15426 Face 18766 5347 5651 15426 Face 18767 5651 5634 15426 Face 18768 5634 5362 15426 Face 18769 3050 3113 15427 Face 18770 3113 3207 15427 Face 18771 3207 3161 15427 Face 18772 3161 3050 15427 Face 18773 3081 3005 15428 Face 18774 3005 2985 15428 Face 18775 2985 3037 15428 Face 18776 3037 3081 15428 Face 18777 2968 2873 15429 Face 18778 2873 2858 15429 Face 18779 2858 2983 15429 Face 18780 2983 2968 15429 Face 18781 2979 2866 15430 Face 18782 2866 2904 15430 Face 18783 2904 2982 15430 Face 18784 2982 2979 15430 Face 18785 3055 2989 15431 Face 18786 2989 3106 15431 Face 18787 3106 3164 15431 Face 18788 3164 3055 15431 Face 18789 3319 3257 15432 Face 18790 3257 3389 15432 Face 18791 3389 3456 15432 Face 18792 3456 3319 15432 Face 18793 3577 3491 15433 Face 18794 3491 3584 15433 Face 18795 3584 3698 15433 Face 18796 3698 3577 15433 Face 18797 4585 4560 15434 Face 18798 4560 5055 15434 Face 18799 5055 5056 15434 Face 18800 5056 4585 15434 Face 18801 5353 5361 15435 Face 18802 5361 5653 15435 Face 18803 5653 5641 15435 Face 18804 5641 5353 15435 Face 18805 2612 2674 15436 Face 18806 2674 2689 15436 Face 18807 2689 2614 15436 Face 18808 2614 2612 15436 Face 18809 2709 2671 15437 Face 18810 2671 2724 15437 Face 18811 2724 2759 15437 Face 18812 2759 2709 15437 Face 18813 2787 2751 15438 Face 18814 2751 2788 15438 Face 18815 2788 2810 15438 Face 18816 2810 2787 15438 Face 18817 2773 2729 15439 Face 18818 2729 2791 15439 Face 18819 2791 2837 15439 Face 18820 2837 2773 15439 Face 18821 2836 2817 15440 Face 18822 2817 2826 15440 Face 18823 2826 2839 15440 Face 18824 2839 2836 15440 Face 18825 2901 2835 15441 Face 18826 2835 2867 15441 Face 18827 2867 2970 15441 Face 18828 2970 2901 15441 Face 18829 2865 2847 15442 Face 18830 2847 2848 15442 Face 18831 2848 2855 15442 Face 18832 2855 2865 15442 Face 18833 3003 2889 15443 Face 18834 2889 2914 15443 Face 18835 2914 3030 15443 Face 18836 3030 3003 15443 Face 18837 3064 2946 15444 Face 18838 2946 2996 15444 Face 18839 2996 3098 15444 Face 18840 3098 3064 15444 Face 18841 2986 2984 15445 Face 18842 2984 2974 15445 Face 18843 2974 2990 15445 Face 18844 2990 2986 15445 Face 18845 2763 2800 15446 Face 18846 2800 2821 15446 Face 18847 2821 2790 15446 Face 18848 2790 2763 15446 Face 18849 2808 2772 15447 Face 18850 2772 2793 15447 Face 18851 2793 2842 15447 Face 18852 2842 2808 15447 Face 18853 2898 2838 15448 Face 18854 2838 2939 15448 Face 18855 2939 3031 15448 Face 18856 3031 2898 15448 Face 18857 3189 3117 15449 Face 18858 3117 3220 15449 Face 18859 3220 3306 15449 Face 18860 3306 3189 15449 Face 18861 3403 3307 15450 Face 18862 3307 3375 15450 Face 18863 3375 3487 15450 Face 18864 3487 3403 15450 Face 18865 3558 3430 15451 Face 18866 3430 3457 15451 Face 18867 3457 3586 15451 Face 18868 3586 3558 15451 Face 18869 3215 3280 15452 Face 18870 3280 3218 15452 Face 18871 3218 3166 15452 Face 18872 3166 3215 15452 Face 18873 3335 3324 15453 Face 18874 3324 3243 15453 Face 18875 3243 3251 15453 Face 18876 3251 3335 15453 Face 18877 3082 3149 15454 Face 18878 3149 3028 15454 Face 18879 3028 2944 15454 Face 18880 2944 3082 15454 Face 18881 2809 2863 15455 Face 18882 2863 2781 15455 Face 18883 2781 2731 15455 Face 18884 2731 2809 15455 Face 18885 2707 2746 15456 Face 18886 2746 2728 15456 Face 18887 2728 2696 15456 Face 18888 2696 2707 15456 Face 18889 2716 2738 15457 Face 18890 2738 2777 15457 Face 18891 2777 2752 15457 Face 18892 2752 2716 15457 Face 18893 2850 2876 15458 Face 18894 2876 2925 15458 Face 18895 2925 2907 15458 Face 18896 2907 2850 15458 Face 18897 2813 2831 15459 Face 18898 2831 2882 15459 Face 18899 2882 2864 15459 Face 18900 2864 2813 15459 Face 18901 2922 2952 15460 Face 18902 2952 2976 15460 Face 18903 2976 2951 15460 Face 18904 2951 2922 15460 Face 18905 2931 2937 15461 Face 18906 2937 2906 15461 Face 18907 2906 2892 15461 Face 18908 2892 2931 15461 Face 18909 2816 2789 15462 Face 18910 2789 2827 15462 Face 18911 2827 2851 15462 Face 18912 2851 2816 15462 Face 18913 2868 2845 15463 Face 18914 2845 2828 15463 Face 18915 2828 2852 15463 Face 18916 2852 2868 15463 Face 18917 2807 2783 15464 Face 18918 2783 2725 15464 Face 18919 2725 2749 15464 Face 18920 2749 2807 15464 Face 18921 2680 2655 15465 Face 18922 2655 2609 15465 Face 18923 2609 2619 15465 Face 18924 2619 2680 15465 Face 18925 2860 2844 15466 Face 18926 2844 2875 15466 Face 18927 2875 2888 15466 Face 18928 2888 2860 15466 Face 18929 2849 2829 15467 Face 18930 2829 2776 15467 Face 18931 2776 2797 15467 Face 18932 2797 2849 15467 Face 18933 2722 2700 15468 Face 18934 2700 2644 15468 Face 18935 2644 2682 15468 Face 18936 2682 2722 15468 Face 18937 2661 2618 15469 Face 18938 2618 2617 15469 Face 18939 2617 2669 15469 Face 18940 2669 2661 15469 Face 18941 2695 2642 15470 Face 18942 2642 2715 15470 Face 18943 2715 2774 15470 Face 18944 2774 2695 15470 Face 18945 2881 2818 15471 Face 18946 2818 2930 15471 Face 18947 2930 3026 15471 Face 18948 3026 2881 15471 Face 18949 3130 3080 15472 Face 18950 3080 3133 15472 Face 18951 3133 3187 15472 Face 18952 3187 3130 15472 Face 18953 3201 3131 15473 Face 18954 3131 3122 15473 Face 18955 3122 3199 15473 Face 18956 3199 3201 15473 Face 18957 2893 2908 15474 Face 18958 2908 2878 15474 Face 18959 2878 2870 15474 Face 18960 2870 2893 15474 Face 18961 5338 5346 15475 Face 18962 5346 5254 15475 Face 18963 5254 5237 15475 Face 18964 5237 5338 15475 Face 18965 5580 5465 15476 Face 18966 5465 5464 15476 Face 18967 5464 5581 15476 Face 18968 5581 5580 15476 Face 18969 5314 5328 15477 Face 18970 5328 5214 15477 Face 18971 5214 5196 15477 Face 18972 5196 5314 15477 Face 18973 5585 5460 15478 Face 18974 5460 5459 15478 Face 18975 5459 5586 15478 Face 18976 5586 5585 15478 Face 18977 5283 5298 15479 Face 18978 5298 5185 15479 Face 18979 5185 5172 15479 Face 18980 5172 5283 15479 Face 18981 5591 5454 15480 Face 18982 5454 5451 15480 Face 18983 5451 5594 15480 Face 18984 5594 5591 15480 Face 18985 5187 5138 15481 Face 18986 5138 5081 15481 Face 18987 5081 5125 15481 Face 18988 5125 5187 15481 Face 18989 5165 5176 15482 Face 18990 5176 5100 15482 Face 18991 5100 5078 15482 Face 18992 5078 5165 15482 Face 18993 5124 5141 15483 Face 18994 5141 5050 15483 Face 18995 5050 5039 15483 Face 18996 5039 5124 15483 Face 18997 5101 5116 15484 Face 18998 5116 5035 15484 Face 18999 5035 5018 15484 Face 19000 5018 5101 15484 Face 19001 5033 5010 15485 Face 19002 5010 4923 15485 Face 19003 4923 4924 15485 Face 19004 4924 5033 15485 Face 19005 4984 5002 15486 Face 19006 5002 4885 15486 Face 19007 4885 4864 15486 Face 19008 4864 4984 15486 Face 19009 4676 4742 15487 Face 19010 4742 4468 15487 Face 19011 4468 4396 15487 Face 19012 4396 4676 15487 Face 19013 4631 4658 15488 Face 19014 4658 4391 15488 Face 19015 4391 4390 15488 Face 19016 4390 4631 15488 Face 19017 4574 4614 15489 Face 19018 4614 4395 15489 Face 19019 4395 4412 15489 Face 19020 4412 4574 15489 Face 19021 4957 5041 15490 Face 19022 5041 5045 15490 Face 19023 5045 4991 15490 Face 19024 4991 4957 15490 Face 19025 4894 4945 15491 Face 19026 4945 4818 15491 Face 19027 4818 4788 15491 Face 19028 4788 4894 15491 Face 19029 4786 4794 15492 Face 19030 4794 4724 15492 Face 19031 4724 4713 15492 Face 19032 4713 4786 15492 Face 19033 3871 4165 15493 Face 19034 4165 4156 15493 Face 19035 4156 3866 15493 Face 19036 3866 3871 15493 Face 19037 5239 5248 15494 Face 19038 5248 5120 15494 Face 19039 5120 5114 15494 Face 19040 5114 5239 15494 Face 19041 5606 5440 15495 Face 19042 5440 5436 15495 Face 19043 5436 5610 15495 Face 19044 5610 5606 15495 Face 19045 5011 5025 15496 Face 19046 5025 4960 15496 Face 19047 4960 4948 15496 Face 19048 4948 5011 15496 Face 19049 4929 4914 15497 Face 19050 4914 4849 15497 Face 19051 4849 4857 15497 Face 19052 4857 4929 15497 Face 19053 4711 4728 15498 Face 19054 4728 4623 15498 Face 19055 4623 4590 15498 Face 19056 4590 4711 15498 Face 19057 4500 4543 15499 Face 19058 4543 4496 15499 Face 19059 4496 4465 15499 Face 19060 4465 4500 15499 Face 19061 4579 4629 15500 Face 19062 4629 4659 15500 Face 19063 4659 4607 15500 Face 19064 4607 4579 15500 Face 19065 4772 4681 15501 Face 19066 4681 4709 15501 Face 19067 4709 4825 15501 Face 19068 4825 4772 15501 Face 19069 5597 5448 15502 Face 19070 5448 5453 15502 Face 19071 5453 5592 15502 Face 19072 5592 5597 15502 Face 19073 5386 5354 15503 Face 19074 5354 5282 15503 Face 19075 5282 5310 15503 Face 19076 5310 5386 15503 Face 19077 5579 5466 15504 Face 19078 5466 5477 15504 Face 19079 5477 5568 15504 Face 19080 5568 5579 15504 Face 19081 5137 5106 15505 Face 19082 5106 5105 15505 Face 19083 5105 5144 15505 Face 19084 5144 5137 15505 Face 19085 5097 5112 15506 Face 19086 5112 4951 15506 Face 19087 4951 4895 15506 Face 19088 4895 5097 15506 Face 19089 5388 5366 15507 Face 19090 5366 5218 15507 Face 19091 5218 5262 15507 Face 19092 5262 5388 15507 Face 19093 5064 5072 15508 Face 19094 5072 4866 15508 Face 19095 4866 4853 15508 Face 19096 4853 5064 15508 Face 19097 5162 5150 15509 Face 19098 5150 4898 15509 Face 19099 4898 4919 15509 Face 19100 4919 5162 15509 Face 19101 5647 5403 15510 Face 19102 5403 5410 15510 Face 19103 5410 5640 15510 Face 19104 5640 5647 15510 Face 19105 4558 4630 15511 Face 19106 4630 4451 15511 Face 19107 4451 4420 15511 Face 19108 4420 4558 15511 Face 19109 4672 4640 15512 Face 19110 4640 4381 15512 Face 19111 4381 4429 15512 Face 19112 4429 4672 15512 Face 19113 4229 4098 15513 Face 19114 4098 4024 15513 Face 19115 4024 4163 15513 Face 19116 4163 4229 15513 Face 19117 4174 4153 15514 Face 19118 4153 3909 15514 Face 19119 3909 3946 15514 Face 19120 3946 4174 15514 Face 19121 4274 4217 15515 Face 19122 4217 4007 15515 Face 19123 4007 4069 15515 Face 19124 4069 4274 15515 Face 19125 3432 3574 15516 Face 19126 3574 3571 15516 Face 19127 3571 3433 15516 Face 19128 3433 3432 15516 Face 19129 3664 3622 15517 Face 19130 3622 3410 15517 Face 19131 3410 3437 15517 Face 19132 3437 3664 15517 Face 19133 3849 3733 15518 Face 19134 3733 3528 15518 Face 19135 3528 3598 15518 Face 19136 3598 3849 15518 Face 19137 3089 3230 15519 Face 19138 3230 3110 15519 Face 19139 3110 2971 15519 Face 19140 2971 3089 15519 Face 19141 2883 2786 15520 Face 19142 2786 2662 15520 Face 19143 2662 2756 15520 Face 19144 2756 2883 15520 Face 19145 3315 3138 15521 Face 19146 3138 3221 15521 Face 19147 3221 3405 15521 Face 19148 3405 3315 15521 Face 19149 3486 3474 15522 Face 19150 3474 3295 15522 Face 19151 3295 3344 15522 Face 19152 3344 3486 15522 Face 19153 3096 2993 15523 Face 19154 2993 2853 15523 Face 19155 2853 2955 15523 Face 19156 2955 3096 15523 Face 19157 5232 5219 15524 Face 19158 5219 5031 15524 Face 19159 5031 5060 15524 Face 19160 5060 5232 15524 Face 19161 5618 5428 15525 Face 19162 5428 5434 15525 Face 19163 5434 5612 15525 Face 19164 5612 5618 15525 Face 19165 5268 5241 15526 Face 19166 5241 5085 15526 Face 19167 5085 5136 15526 Face 19168 5136 5268 15526 Face 19169 5590 5455 15527 Face 19170 5455 5404 15527 Face 19171 5404 5646 15527 Face 19172 5646 5590 15527 Face 19173 4872 4813 15528 Face 19174 4813 4550 15528 Face 19175 4550 4664 15528 Face 19176 4664 4872 15528 Face 19177 5017 4935 15529 Face 19178 4935 4771 15529 Face 19179 4771 4922 15529 Face 19180 4922 5017 15529 Face 19181 4444 4342 15530 Face 19182 4342 4243 15530 Face 19183 4243 4353 15530 Face 19184 4353 4444 15530 Face 19185 4844 4628 15531 Face 19186 4628 4551 15531 Face 19187 4551 4811 15531 Face 19188 4811 4844 15531 Face 19189 4326 4172 15532 Face 19190 4172 4150 15532 Face 19191 4150 4322 15532 Face 19192 4322 4326 15532 Face 19193 4860 4563 15533 Face 19194 4563 4593 15533 Face 19195 4593 4845 15533 Face 19196 4845 4860 15533 Face 19197 4345 4171 15534 Face 19198 4171 4275 15534 Face 19199 4275 4430 15534 Face 19200 4430 4345 15534 Face 19201 4873 4637 15535 Face 19202 4637 4718 15535 Face 19203 4718 4900 15535 Face 19204 4900 4873 15535 Face 19205 4634 4414 15536 Face 19206 4414 4673 15536 Face 19207 4673 4837 15536 Face 19208 4837 4634 15536 Face 19209 4968 4836 15537 Face 19210 4836 4954 15537 Face 19211 4954 5065 15537 Face 19212 5065 4968 15537 Face 19213 5005 4906 15538 Face 19214 4906 5142 15538 Face 19215 5142 5184 15538 Face 19216 5184 5005 15538 Face 19217 5171 5096 15539 Face 19218 5096 5243 15539 Face 19219 5243 5296 15539 Face 19220 5296 5171 15539 Face 19221 2915 3087 15540 Face 19222 3087 3073 15540 Face 19223 3073 2909 15540 Face 19224 2909 2915 15540 Face 19225 3343 3222 15541 Face 19226 3222 3227 15541 Face 19227 3227 3349 15541 Face 19228 3349 3343 15541 Face 19229 3614 3472 15542 Face 19230 3472 3475 15542 Face 19231 3475 3616 15542 Face 19232 3616 3614 15542 Face 19233 3987 3823 15543 Face 19234 3823 3828 15543 Face 19235 3828 3985 15543 Face 19236 3985 3987 15543 Face 19237 4251 4116 15544 Face 19238 4116 4112 15544 Face 19239 4112 4250 15544 Face 19240 4250 4251 15544 Face 19241 4538 4375 15545 Face 19242 4375 4371 15545 Face 19243 4371 4528 15545 Face 19244 4528 4538 15545 Face 19245 4573 4564 15546 Face 19246 4564 4367 15546 Face 19247 4367 4373 15546 Face 19248 4373 4573 15546 Face 19249 4578 4583 15547 Face 19250 4583 4388 15547 Face 19251 4388 4392 15547 Face 19252 4392 4578 15547 Face 19253 4239 4231 15548 Face 19254 4231 4052 15548 Face 19255 4052 4067 15548 Face 19256 4067 4239 15548 Face 19257 4254 4248 15549 Face 19258 4248 4082 15549 Face 19259 4082 4102 15549 Face 19260 4102 4254 15549 Face 19261 3888 3869 15550 Face 19262 3869 3630 15550 Face 19263 3630 3653 15550 Face 19264 3653 3888 15550 Face 19265 3956 3925 15551 Face 19266 3925 3697 15551 Face 19267 3697 3731 15551 Face 19268 3731 3956 15551 Face 19269 3510 3448 15552 Face 19270 3448 3246 15552 Face 19271 3246 3320 15552 Face 19272 3320 3510 15552 Face 19273 3038 2954 15553 Face 19274 2954 2819 15553 Face 19275 2819 2856 15553 Face 19276 2856 3038 15553 Face 19277 3192 3105 15554 Face 19278 3105 2936 15554 Face 19279 2936 3062 15554 Face 19280 3062 3192 15554 Face 19281 2732 2702 15555 Face 19282 2702 2620 15555 Face 19283 2620 2659 15555 Face 19284 2659 2732 15555 Face 19285 2894 2806 15556 Face 19286 2806 2739 15556 Face 19287 2739 2833 15556 Face 19288 2833 2894 15556 Face 19289 2622 2571 15557 Face 19290 2571 2528 15557 Face 19291 2528 2578 15557 Face 19292 2578 2622 15557 Face 19293 2542 2486 15558 Face 19294 2486 2439 15558 Face 19295 2439 2522 15558 Face 19296 2522 2542 15558 Face 19297 2365 2440 15559 Face 19298 2440 2371 15559 Face 19299 2371 2303 15559 Face 19300 2303 2365 15559 Face 19301 2767 2857 15560 Face 19302 2857 2755 15560 Face 19303 2755 2676 15560 Face 19304 2676 2767 15560 Face 19305 2573 2646 15561 Face 19306 2646 2549 15561 Face 19307 2549 2470 15561 Face 19308 2470 2573 15561 Face 19309 2384 2454 15562 Face 19310 2454 2367 15562 Face 19311 2367 2301 15562 Face 19312 2301 2384 15562 Face 19313 2259 2285 15563 Face 19314 2285 2263 15563 Face 19315 2263 2258 15563 Face 19316 2258 2259 15563 Face 19317 2383 2282 15564 Face 19318 2282 2284 15564 Face 19319 2284 2348 15564 Face 19320 2348 2383 15564 Face 19321 2927 2935 15565 Face 19322 2935 2784 15565 Face 19323 2784 2805 15565 Face 19324 2805 2927 15565 Face 19325 2625 2704 15566 Face 19326 2704 2687 15566 Face 19327 2687 2615 15566 Face 19328 2615 2625 15566 Face 19329 2452 2495 15567 Face 19330 2495 2471 15567 Face 19331 2471 2437 15567 Face 19332 2437 2452 15567 Face 19333 2351 2361 15568 Face 19334 2361 2337 15568 Face 19335 2337 2392 15568 Face 19336 2392 2351 15568 Face 19337 2336 2403 15569 Face 19338 2403 2424 15569 Face 19339 2424 2273 15569 Face 19340 2273 2336 15569 Face 19341 2398 2448 15570 Face 19342 2448 2469 15570 Face 19343 2469 2390 15570 Face 19344 2390 2398 15570 Face 19345 2735 2667 15571 Face 19346 2667 2758 15571 Face 19347 2758 2824 15571 Face 19348 2824 2735 15571 Face 19349 2843 2953 15572 Face 19350 2953 3086 15572 Face 19351 3086 2928 15572 Face 19352 2928 2843 15572 Face 19353 3208 3075 15573 Face 19354 3075 3157 15573 Face 19355 3157 3296 15573 Face 19356 3296 3208 15573 Face 19357 2265 2350 15574 Face 19358 2350 2262 15574 Face 19359 2262 2186 15574 Face 19360 2186 2265 15574 Face 19361 3797 3778 15575 Face 19362 3778 3951 15575 Face 19363 3951 3962 15575 Face 19364 3962 3797 15575 Face 19365 4088 4081 15576 Face 19366 4081 4226 15576 Face 19367 4226 4235 15576 Face 19368 4235 4088 15576 Face 19369 4343 4334 15577 Face 19370 4334 4456 15577 Face 19371 4456 4480 15577 Face 19372 4480 4343 15577 Face 19373 4721 4755 15578 Face 19374 4755 4671 15578 Face 19375 4671 4644 15578 Face 19376 4644 4721 15578 Face 19377 4486 4752 15579 Face 19378 4752 4705 15579 Face 19379 4705 4471 15579 Face 19380 4471 4486 15579 Face 19381 3932 3907 15580 Face 19382 3907 4175 15580 Face 19383 4175 4189 15580 Face 19384 4189 3932 15580 Face 19385 3628 3660 15581 Face 19386 3660 3485 15581 Face 19387 3485 3418 15581 Face 19388 3418 3628 15581 Face 19389 3289 3339 15582 Face 19390 3339 3240 15582 Face 19391 3240 3176 15582 Face 19392 3176 3289 15582 Face 19393 3128 3183 15583 Face 19394 3183 3158 15583 Face 19395 3158 3101 15583 Face 19396 3101 3128 15583 Face 19397 3160 3108 15584 Face 19398 3108 3163 15584 Face 19399 3163 3196 15584 Face 19400 3196 3160 15584 Face 19401 3357 3346 15585 Face 19402 3346 3238 15585 Face 19403 3238 3261 15585 Face 19404 3261 3357 15585 Face 19405 3479 3488 15586 Face 19406 3488 3618 15586 Face 19407 3618 3610 15586 Face 19408 3610 3479 15586 Face 19409 4368 4360 15587 Face 19410 4360 4502 15587 Face 19411 4502 4519 15587 Face 19412 4519 4368 15587 Face 19413 4542 4553 15588 Face 19414 4553 4387 15588 Face 19415 4387 4382 15588 Face 19416 4382 4542 15588 Face 19417 4804 4854 15589 Face 19418 4854 4751 15589 Face 19419 4751 4730 15589 Face 19420 4730 4804 15589 Face 19421 4775 4831 15590 Face 19422 4831 4795 15590 Face 19423 4795 4787 15590 Face 19424 4787 4775 15590 Face 19425 4692 4770 15591 Face 19426 4770 4781 15591 Face 19427 4781 4701 15591 Face 19428 4701 4692 15591 Face 19429 4106 4101 15592 Face 19430 4101 4241 15592 Face 19431 4241 4245 15592 Face 19432 4245 4106 15592 Face 19433 4253 4256 15593 Face 19434 4256 4110 15593 Face 19435 4110 4117 15593 Face 19436 4117 4253 15593 Face 19437 3807 3968 15594 Face 19438 3968 3978 15594 Face 19439 3978 3820 15594 Face 19440 3820 3807 15594 Face 19441 3982 3967 15595 Face 19442 3967 3774 15595 Face 19443 3774 3818 15595 Face 19444 3818 3982 15595 Face 19445 3476 3478 15596 Face 19446 3478 3617 15596 Face 19447 3617 3619 15596 Face 19448 3619 3476 15596 Face 19449 3609 3578 15597 Face 19450 3578 3417 15597 Face 19451 3417 3467 15597 Face 19452 3467 3609 15597 Face 19453 3231 3345 15598 Face 19454 3345 3347 15598 Face 19455 3347 3224 15598 Face 19456 3224 3231 15598 Face 19457 3338 3291 15599 Face 19458 3291 3170 15599 Face 19459 3170 3216 15599 Face 19460 3216 3338 15599 Face 19461 3079 3132 15600 Face 19462 3132 3123 15600 Face 19463 3123 3063 15600 Face 19464 3063 3079 15600 Face 19465 2981 3067 15601 Face 19466 3067 3053 15601 Face 19467 3053 3041 15601 Face 19468 3041 2981 15601 Face 19469 3022 2934 15602 Face 19470 2934 2919 15602 Face 19471 2919 3024 15602 Face 19472 3024 3022 15602 Face 19473 3102 3039 15603 Face 19474 3039 2956 15603 Face 19475 2956 3032 15603 Face 19476 3032 3102 15603 Face 19477 5044 5075 15604 Face 19478 5075 5130 15604 Face 19479 5130 5134 15604 Face 19480 5134 5044 15604 Face 19481 5267 5257 15605 Face 19482 5257 5216 15605 Face 19483 5216 5223 15605 Face 19484 5223 5267 15605 Face 19485 5115 5102 15606 Face 19486 5102 5009 15606 Face 19487 5009 4978 15606 Face 19488 4978 5115 15606 Face 19489 4764 4740 15607 Face 19490 4740 4803 15607 Face 19491 4803 4840 15607 Face 19492 4840 4764 15607 Face 19493 4893 4947 15608 Face 19494 4947 4925 15608 Face 19495 4925 4835 15608 Face 19496 4835 4893 15608 Face 19497 5190 5208 15609 Face 19498 5208 5175 15609 Face 19499 5175 5173 15609 Face 19500 5173 5190 15609 Face 19501 5263 5275 15610 Face 19502 5275 5161 15610 Face 19503 5161 5140 15610 Face 19504 5140 5263 15610 Face 19505 5047 5076 15611 Face 19506 5076 4998 15611 Face 19507 4998 4979 15611 Face 19508 4979 5047 15611 Face 19509 4918 4932 15612 Face 19510 4932 4874 15612 Face 19511 4874 4861 15612 Face 19512 4861 4918 15612 Face 19513 4762 4790 15613 Face 19514 4790 4758 15613 Face 19515 4758 4693 15613 Face 19516 4693 4762 15613 Face 19517 4636 4720 15614 Face 19518 4720 4699 15614 Face 19519 4699 4603 15614 Face 19520 4603 4636 15614 Face 19521 5439 5443 15615 Face 19522 5443 5603 15615 Face 19523 5603 5607 15615 Face 19524 5607 5439 15615 Face 19525 5118 5129 15616 Face 19526 5129 5260 15616 Face 19527 5260 5245 15616 Face 19528 5245 5118 15616 Face 19529 4964 4980 15617 Face 19530 4980 5034 15617 Face 19531 5034 5019 15617 Face 19532 5019 4964 15617 Face 19533 4878 4897 15618 Face 19534 4897 4962 15618 Face 19535 4962 4941 15618 Face 19536 4941 4878 15618 Face 19537 4613 4646 15619 Face 19538 4646 4753 15619 Face 19539 4753 4732 15619 Face 19540 4732 4613 15619 Face 19541 4488 4533 15620 Face 19542 4533 4559 15620 Face 19543 4559 4530 15620 Face 19544 4530 4488 15620 Face 19545 4521 4448 15621 Face 19546 4448 4411 15621 Face 19547 4411 4487 15621 Face 19548 4487 4521 15621 Face 19549 4432 4347 15622 Face 19550 4347 4316 15622 Face 19551 4316 4408 15622 Face 19552 4408 4432 15622 Face 19553 5261 5249 15623 Face 19554 5249 5265 15623 Face 19555 5265 5279 15623 Face 19556 5279 5261 15623 Face 19557 5197 5198 15624 Face 19558 5198 5157 15624 Face 19559 5157 5167 15624 Face 19560 5167 5197 15624 Face 19561 4986 5014 15625 Face 19562 5014 5111 15625 Face 19563 5111 5091 15625 Face 19564 5091 4986 15625 Face 19565 4782 4890 15626 Face 19566 4890 4865 15626 Face 19567 4865 4750 15626 Face 19568 4750 4782 15626 Face 19569 4678 4700 15627 Face 19570 4700 4736 15627 Face 19571 4736 4694 15627 Face 19572 4694 4678 15627 Face 19573 4852 4887 15628 Face 19574 4887 4847 15628 Face 19575 4847 4834 15628 Face 19576 4834 4852 15628 Face 19577 4601 4598 15629 Face 19578 4598 4696 15629 Face 19579 4696 4715 15629 Face 19580 4715 4601 15629 Face 19581 4605 4604 15630 Face 19582 4604 4706 15630 Face 19583 4706 4685 15630 Face 19584 4685 4605 15630 Face 19585 4505 4511 15631 Face 19586 4511 4479 15631 Face 19587 4479 4473 15631 Face 19588 4473 4505 15631 Face 19589 4549 4546 15632 Face 19590 4546 4497 15632 Face 19591 4497 4503 15632 Face 19592 4503 4549 15632 Face 19593 4481 4525 15633 Face 19594 4525 4541 15633 Face 19595 4541 4499 15633 Face 19596 4499 4481 15633 Face 19597 4582 4565 15634 Face 19598 4565 4539 15634 Face 19599 4539 4648 15634 Face 19600 4648 4582 15634 Face 19601 4799 4779 15635 Face 19602 4779 4826 15635 Face 19603 4826 4879 15635 Face 19604 4879 4799 15635 Face 19605 4591 4602 15636 Face 19606 4602 4668 15636 Face 19607 4668 4677 15636 Face 19608 4677 4591 15636 Face 19609 4469 4485 15637 Face 19610 4485 4561 15637 Face 19611 4561 4572 15637 Face 19612 4572 4469 15637 Face 19613 4195 4304 15638 Face 19614 4304 4376 15638 Face 19615 4376 4190 15638 Face 19616 4190 4195 15638 Face 19617 4337 4310 15639 Face 19618 4310 4133 15639 Face 19619 4133 4180 15639 Face 19620 4180 4337 15639 Face 19621 5631 5416 15640 Face 19622 5416 5425 15640 Face 19623 5425 5621 15640 Face 19624 5621 5631 15640 Face 19625 5210 5183 15641 Face 19626 5183 4983 15641 Face 19627 4983 5032 15641 Face 19628 5032 5210 15641 Face 19629 4848 4765 15642 Face 19630 4765 4449 15642 Face 19631 4449 4527 15642 Face 19632 4527 4848 15642 Face 19633 4258 4230 15643 Face 19634 4230 4028 15643 Face 19635 4028 4058 15643 Face 19636 4058 4258 15643 Face 19637 3844 3740 15644 Face 19638 3740 3686 15644 Face 19639 3686 3763 15644 Face 19640 3763 3844 15644 Face 19641 3913 3891 15645 Face 19642 3891 3779 15645 Face 19643 3779 3847 15645 Face 19644 3847 3913 15645 Face 19645 3681 3605 15646 Face 19646 3605 3579 15646 Face 19647 3579 3647 15646 Face 19648 3647 3681 15646 Face 19649 3648 3593 15647 Face 19650 3593 3651 15647 Face 19651 3651 3687 15647 Face 19652 3687 3648 15647 Face 19653 3893 3929 15648 Face 19654 3929 3786 15648 Face 19655 3786 3734 15648 Face 19656 3734 3893 15648 Face 19657 4267 4297 15649 Face 19658 4297 4093 15649 Face 19659 4093 4059 15649 Face 19660 4059 4267 15649 Face 19661 4821 4871 15650 Face 19662 4871 4570 15650 Face 19663 4570 4501 15650 Face 19664 4501 4821 15650 Face 19665 5211 5231 15651 Face 19666 5231 5059 15651 Face 19667 5059 5026 15651 Face 19668 5026 5211 15651 Face 19669 5433 5426 15652 Face 19670 5426 5620 15652 Face 19671 5620 5614 15652 Face 19672 5614 5433 15652 Face 19673 5160 5166 15653 Face 19674 5166 4920 15653 Face 19675 4920 4910 15653 Face 19676 4910 5160 15653 Face 19677 5170 5181 15654 Face 19678 5181 4966 15654 Face 19679 4966 4934 15654 Face 19680 4934 5170 15654 Face 19681 4643 4652 15655 Face 19682 4652 4349 15655 Face 19683 4349 4355 15655 Face 19684 4355 4643 15655 Face 19685 4662 4717 15656 Face 19686 4717 4405 15656 Face 19687 4405 4356 15656 Face 19688 4356 4662 15656 Face 19689 4155 4129 15657 Face 19690 4129 3939 15657 Face 19691 3939 3960 15657 Face 19692 3960 4155 15657 Face 19693 4132 4177 15658 Face 19694 4177 3996 15658 Face 19695 3996 3945 15658 Face 19696 3945 4132 15658 Face 19697 3732 3735 15659 Face 19698 3735 3603 15659 Face 19699 3603 3582 15659 Face 19700 3582 3732 15659 Face 19701 3753 3817 15660 Face 19702 3817 3671 15660 Face 19703 3671 3626 15660 Face 19704 3626 3753 15660 Face 19705 3464 3521 15661 Face 19706 3521 3460 15661 Face 19707 3460 3391 15661 Face 19708 3391 3464 15661 Face 19709 3416 3323 15662 Face 19710 3323 3371 15662 Face 19711 3371 3450 15662 Face 19712 3450 3416 15662 Face 19713 3462 3469 15663 Face 19714 3469 3377 15663 Face 19715 3377 3379 15663 Face 19716 3379 3462 15663 Face 19717 3608 3590 15664 Face 19718 3590 3513 15664 Face 19719 3513 3567 15664 Face 19720 3567 3608 15664 Face 19721 3801 3846 15665 Face 19722 3846 3705 15665 Face 19723 3705 3662 15665 Face 19724 3662 3801 15665 Face 19725 3856 3822 15666 Face 19726 3822 3670 15666 Face 19727 3670 3712 15666 Face 19728 3712 3856 15666 Face 19729 4126 3974 15667 Face 19730 3974 3959 15667 Face 19731 3959 4120 15667 Face 19732 4120 4126 15667 Face 19733 4164 4125 15668 Face 19734 4125 3965 15668 Face 19735 3965 4002 15668 Face 19736 4002 4164 15668 Face 19737 4620 4531 15669 Face 19738 4531 4311 15669 Face 19739 4311 4352 15669 Face 19740 4352 4620 15669 Face 19741 5087 5079 15670 Face 19742 5079 4828 15670 Face 19743 4828 4817 15670 Face 19744 4817 5087 15670 Face 19745 5128 5094 15671 Face 19746 5094 4824 15671 Face 19747 4824 4886 15671 Face 19748 4886 5128 15671 Face 19749 3228 3177 15672 Face 19750 3177 3056 15672 Face 19751 3056 3111 15672 Face 19752 3111 3228 15672 Face 19753 3268 3264 15673 Face 19754 3264 3143 15673 Face 19755 3143 3173 15673 Face 19756 3173 3268 15673 Face 19757 5419 5422 15674 Face 19758 5422 5624 15674 Face 19759 5624 5628 15674 Face 19760 5628 5419 15674 Face 19761 5201 5195 15675 Face 19762 5195 4987 15675 Face 19763 4987 5003 15675 Face 19764 5003 5201 15675 Face 19765 5199 5186 15676 Face 19766 5186 4974 15676 Face 19767 4974 4996 15676 Face 19768 4996 5199 15676 Face 19769 4763 4746 15677 Face 19770 4746 4484 15677 Face 19771 4484 4467 15677 Face 19772 4467 4763 15677 Face 19773 4754 4735 15678 Face 19774 4735 4475 15678 Face 19775 4475 4491 15678 Face 19776 4491 4754 15678 Face 19777 4774 4768 15679 Face 19778 4768 4495 15679 Face 19779 4495 4512 15679 Face 19780 4512 4774 15679 Face 19781 4808 4838 15680 Face 19782 4838 4778 15680 Face 19783 4778 4791 15680 Face 19784 4791 4808 15680 Face 19785 4862 4868 15681 Face 19786 4868 4830 15681 Face 19787 4830 4829 15681 Face 19788 4829 4862 15681 Face 19789 4586 4784 15682 Face 19790 4784 4796 15682 Face 19791 4796 4540 15682 Face 19792 4540 4586 15682 Face 19793 4157 3878 15683 Face 19794 3878 3864 15683 Face 19795 3864 4152 15683 Face 19796 4152 4157 15683 Face 19797 3592 3580 15684 Face 19798 3580 3436 15684 Face 19799 3436 3425 15684 Face 19800 3425 3592 15684 Face 19801 3576 3591 15685 Face 19802 3591 3415 15685 Face 19803 3415 3438 15685 Face 19804 3438 3576 15685 Face 19805 2331 2341 15686 Face 19806 2341 2357 15686 Face 19807 2357 2335 15686 Face 19808 2335 2331 15686 Face 19809 2321 2375 15687 Face 19810 2375 2379 15687 Face 19811 2379 2329 15687 Face 19812 2329 2321 15687 Face 19813 4038 3952 15688 Face 19814 3952 4332 15688 Face 19815 4332 4399 15688 Face 19816 4399 4038 15688 Face 19817 3572 3446 15689 Face 19818 3446 3748 15689 Face 19819 3748 3901 15689 Face 19820 3901 3572 15689 Face 19821 2636 2910 15690 Face 19822 2910 3048 15690 Face 19823 3048 2649 15690 Face 19824 2649 2636 15690 Face 19825 2407 2417 15691 Face 19826 2417 2240 15691 Face 19827 2240 2293 15691 Face 19828 2293 2407 15691 Face 19829 2233 2264 15692 Face 19830 2264 2236 15692 Face 19831 2236 2221 15692 Face 19832 2221 2233 15692 Face 19833 2212 2208 15693 Face 19834 2208 2193 15693 Face 19835 2193 2182 15693 Face 19836 2182 2212 15693 Face 19837 2187 2189 15694 Face 19838 2189 2195 15694 Face 19839 2195 2173 15694 Face 19840 2173 2187 15694 Face 19841 2180 2148 15695 Face 19842 2148 2203 15695 Face 19843 2203 2248 15695 Face 19844 2248 2180 15695 Face 19845 2399 2326 15696 Face 19846 2326 2401 15696 Face 19847 2401 2450 15696 Face 19848 2450 2399 15696 Face 19849 2405 2425 15697 Face 19850 2425 2395 15697 Face 19851 2395 2370 15697 Face 19852 2370 2405 15697 Face 19853 2363 2319 15698 Face 19854 2319 2271 15698 Face 19855 2271 2314 15698 Face 19856 2314 2363 15698 Face 19857 2372 2317 15699 Face 19858 2317 2281 15699 Face 19859 2281 2362 15699 Face 19860 2362 2372 15699 Face 19861 2453 2414 15700 Face 19862 2414 2434 15700 Face 19863 2434 2475 15700 Face 19864 2475 2453 15700 Face 19865 2531 2537 15701 Face 19866 2537 2488 15701 Face 19867 2488 2473 15701 Face 19868 2473 2531 15701 Face 19869 2515 2446 15702 Face 19870 2446 2433 15702 Face 19871 2433 2497 15702 Face 19872 2497 2515 15702 Face 19873 2460 2484 15703 Face 19874 2484 2432 15703 Face 19875 2432 2411 15703 Face 19876 2411 2460 15703 Face 19877 2421 2373 15704 Face 19878 2373 2328 15704 Face 19879 2328 2376 15704 Face 19880 2376 2421 15704 Face 19881 2310 2292 15705 Face 19882 2292 2277 15705 Face 19883 2277 2308 15705 Face 19884 2308 2310 15705 Face 19885 2344 2387 15706 Face 19886 2387 2410 15706 Face 19887 2410 2347 15706 Face 19888 2347 2344 15706 Face 19889 2243 2220 15707 Face 19890 2220 2120 15707 Face 19891 2120 2269 15707 Face 19892 2269 2243 15707 Face 19893 2737 2840 15708 Face 19894 2840 2780 15708 Face 19895 2780 2698 15708 Face 19896 2698 2737 15708 Face 19897 2613 2637 15709 Face 19898 2637 2708 15709 Face 19899 2708 2632 15709 Face 19900 2632 2613 15709 Face 19901 2155 2038 15710 Face 19902 2038 2054 15710 Face 19903 2054 2137 15710 Face 19904 2137 2155 15710 Face 19905 2536 2466 15711 Face 19906 2466 2431 15711 Face 19907 2431 2463 15711 Face 19908 2463 2536 15711 Face 19909 2299 2345 15712 Face 19910 2345 2288 15712 Face 19911 2288 2196 15712 Face 19912 2196 2299 15712 Face 19913 2143 2194 15713 Face 19914 2194 2142 15713 Face 19915 2142 2128 15713 Face 19916 2128 2143 15713 Face 19917 2712 2717 15714 Face 19918 2717 2653 15714 Face 19919 2653 2627 15714 Face 19920 2627 2712 15714 Face 19921 2804 2782 15715 Face 19922 2782 2771 15715 Face 19923 2771 2766 15715 Face 19924 2766 2804 15715 Face 19925 2677 2579 15716 Face 19926 2579 2559 15716 Face 19927 2559 2656 15716 Face 19928 2656 2677 15716 Face 19929 2585 2580 15717 Face 19930 2580 2670 15717 Face 19931 2670 2654 15717 Face 19932 2654 2585 15717 Face 19933 2162 2156 15718 Face 19934 2156 2226 15718 Face 19935 2226 2191 15718 Face 19936 2191 2162 15718 Face 19937 1944 1840 15719 Face 19938 1840 1789 15719 Face 19939 1789 2040 15719 Face 19940 2040 1944 15719 Face 19941 2222 2256 15720 Face 19942 2256 2242 15720 Face 19943 2242 2252 15720 Face 19944 2252 2222 15720 Face 19945 2290 2276 15721 Face 19946 2276 2312 15721 Face 19947 2312 2316 15721 Face 19948 2316 2290 15721 Face 19949 8624 8709 15722 Face 19950 8709 8635 15722 Face 19951 8635 8540 15722 Face 19952 8540 8624 15722 Face 19953 8869 8936 15723 Face 19954 8936 8938 15723 Face 19955 8938 8907 15723 Face 19956 8907 8869 15723 Face 19957 8905 9033 15724 Face 19958 9033 9080 15724 Face 19959 9080 8927 15724 Face 19960 8927 8905 15724 Face 19961 8965 9135 15725 Face 19962 9135 9176 15725 Face 19963 9176 8993 15725 Face 19964 8993 8965 15725 Face 19965 9210 9161 15726 Face 19966 9161 9219 15726 Face 19967 9219 9259 15726 Face 19968 9259 9210 15726 Face 19969 9119 9071 15727 Face 19970 9071 9090 15727 Face 19971 9090 9153 15727 Face 19972 9153 9119 15727 Face 19973 9275 9252 15728 Face 19974 9252 9278 15728 Face 19975 9278 9299 15728 Face 19976 9299 9275 15728 Face 19977 9298 9324 15729 Face 19978 9324 9328 15729 Face 19979 9328 9312 15729 Face 19980 9312 9298 15729 Face 19981 9149 9074 15730 Face 19982 9074 9012 15730 Face 19983 9012 9078 15730 Face 19984 9078 9149 15730 Face 19985 8959 8999 15731 Face 19986 8999 8928 15731 Face 19987 8928 8911 15731 Face 19988 8911 8959 15731 Face 19989 9258 9206 15732 Face 19990 9206 9139 15732 Face 19991 9139 9200 15732 Face 19992 9200 9258 15732 Face 19993 9281 9255 15733 Face 19994 9255 9280 15733 Face 19995 9280 9300 15733 Face 19996 9300 9281 15733 Face 19997 9314 9291 15734 Face 19998 9291 9287 15734 Face 19999 9287 9323 15734 Face 20000 9323 9314 15734 Face 20001 9322 9329 15735 Face 20002 9329 9330 15735 Face 20003 9330 9321 15735 Face 20004 9321 9322 15735 Face 20005 9320 9289 15736 Face 20006 9289 9288 15736 Face 20007 9288 9316 15736 Face 20008 9316 9320 15736 Face 20009 9311 9331 15737 Face 20010 9331 9326 15737 Face 20011 9326 9305 15737 Face 20012 9305 9311 15737 Face 20013 9315 9285 15738 Face 20014 9285 9282 15738 Face 20015 9282 9310 15738 Face 20016 9310 9315 15738 Face 20017 9295 9318 15739 Face 20018 9318 9301 15739 Face 20019 9301 9286 15739 Face 20020 9286 9295 15739 Face 20021 9303 9276 15740 Face 20022 9276 9267 15740 Face 20023 9267 9292 15740 Face 20024 9292 9303 15740 Face 20025 9269 9284 15741 Face 20026 9284 9266 15741 Face 20027 9266 9249 15741 Face 20028 9249 9269 15741 Face 20029 9279 9263 15742 Face 20030 9263 9239 15742 Face 20031 9239 9262 15742 Face 20032 9262 9279 15742 Face 20033 9208 9242 15743 Face 20034 9242 9189 15743 Face 20035 9189 9151 15743 Face 20036 9151 9208 15743 Face 20037 9226 9188 15744 Face 20038 9188 9145 15744 Face 20039 9145 9162 15744 Face 20040 9162 9226 15744 Face 20041 9076 9133 15745 Face 20042 9133 9104 15745 Face 20043 9104 9031 15745 Face 20044 9031 9076 15745 Face 20045 9058 9055 15746 Face 20046 9055 9062 15746 Face 20047 9062 9082 15746 Face 20048 9082 9058 15746 Face 20049 8982 8990 15747 Face 20050 8990 9016 15747 Face 20051 9016 8984 15747 Face 20052 8984 8982 15747 Face 20053 9028 9044 15748 Face 20054 9044 8983 15748 Face 20055 8983 8978 15748 Face 20056 8978 9028 15748 Face 20057 8899 8892 15749 Face 20058 8892 8876 15749 Face 20059 8876 8885 15749 Face 20060 8885 8899 15749 Face 20061 8866 8842 15750 Face 20062 8842 8825 15750 Face 20063 8825 8838 15750 Face 20064 8838 8866 15750 Face 20065 9002 9089 15751 Face 20066 9089 9129 15751 Face 20067 9129 9032 15751 Face 20068 9032 9002 15751 Face 20069 9114 9109 15752 Face 20070 9109 9138 15752 Face 20071 9138 9142 15752 Face 20072 9142 9114 15752 Face 20073 9178 9183 15753 Face 20074 9183 9196 15753 Face 20075 9196 9185 15753 Face 20076 9185 9178 15753 Face 20077 9243 9223 15754 Face 20078 9223 9203 15754 Face 20079 9203 9229 15754 Face 20080 9229 9243 15754 Face 20081 9159 9187 15755 Face 20082 9187 9190 15755 Face 20083 9190 9152 15755 Face 20084 9152 9159 15755 Face 20085 9194 9191 15756 Face 20086 9191 9180 15756 Face 20087 9180 9169 15756 Face 20088 9169 9194 15756 Face 20089 9163 9215 15757 Face 20090 9215 9222 15757 Face 20091 9222 9164 15757 Face 20092 9164 9163 15757 Face 20093 9140 9155 15758 Face 20094 9155 9220 15758 Face 20095 9220 9199 15758 Face 20096 9199 9140 15758 Face 20097 9177 9143 15759 Face 20098 9143 9113 15759 Face 20099 9113 9121 15759 Face 20100 9121 9177 15759 Face 20101 8998 9007 15760 Face 20102 9007 9056 15760 Face 20103 9056 9005 15760 Face 20104 9005 8998 15760 Face 20105 9136 9225 15761 Face 20106 9225 9232 15761 Face 20107 9232 9079 15761 Face 20108 9079 9136 15761 Face 20109 8981 8966 15762 Face 20110 8966 8913 15762 Face 20111 8913 8921 15762 Face 20112 8921 8981 15762 Face 20113 8972 8901 15763 Face 20114 8901 8970 15763 Face 20115 8970 9014 15763 Face 20116 9014 8972 15763 Face 20117 9118 9067 15764 Face 20118 9067 9197 15764 Face 20119 9197 9201 15764 Face 20120 9201 9118 15764 Face 20121 8791 8748 15765 Face 20122 8748 8873 15765 Face 20123 8873 8834 15765 Face 20124 8834 8791 15765 Face 20125 9075 9218 15766 Face 20126 9218 9217 15766 Face 20127 9217 9052 15766 Face 20128 9052 9075 15766 Face 20129 9042 9192 15767 Face 20130 9192 9160 15767 Face 20131 9160 9019 15767 Face 20132 9019 9042 15767 Face 20133 8989 9124 15768 Face 20134 9124 9039 15768 Face 20135 9039 8937 15768 Face 20136 8937 8989 15768 Face 20137 8844 8968 15769 Face 20138 8968 8926 15769 Face 20139 8926 8801 15769 Face 20140 8801 8844 15769 Face 20141 8833 8975 15770 Face 20142 8975 8951 15770 Face 20143 8951 8875 15770 Face 20144 8875 8833 15770 Face 20145 8653 8611 15771 Face 20146 8611 8545 15771 Face 20147 8545 8561 15771 Face 20148 8561 8653 15771 Face 20149 8667 8567 15772 Face 20150 8567 8587 15772 Face 20151 8587 8706 15772 Face 20152 8706 8667 15772 Face 20153 8827 8777 15773 Face 20154 8777 8621 15773 Face 20155 8621 8655 15773 Face 20156 8655 8827 15773 Face 20157 8546 8512 15774 Face 20158 8512 8423 15774 Face 20159 8423 8456 15774 Face 20160 8456 8546 15774 Face 20161 8868 8689 15775 Face 20162 8689 8742 15775 Face 20163 8742 8888 15775 Face 20164 8888 8868 15775 Face 20165 8657 8595 15776 Face 20166 8595 8632 15776 Face 20167 8632 8723 15776 Face 20168 8723 8657 15776 Face 20169 8533 8490 15777 Face 20170 8490 8432 15777 Face 20171 8432 8473 15777 Face 20172 8473 8533 15777 Face 20173 8450 8421 15778 Face 20174 8421 8354 15778 Face 20175 8354 8392 15778 Face 20176 8392 8450 15778 Face 20177 8497 8554 15779 Face 20178 8554 8593 15779 Face 20179 8593 8517 15779 Face 20180 8517 8497 15779 Face 20181 8452 8405 15780 Face 20182 8405 8380 15780 Face 20183 8380 8444 15780 Face 20184 8444 8452 15780 Face 20185 8334 8280 15781 Face 20186 8280 8244 15781 Face 20187 8244 8298 15781 Face 20188 8298 8334 15781 Face 20189 8445 8370 15782 Face 20190 8370 8384 15782 Face 20191 8384 8454 15782 Face 20192 8454 8445 15782 Face 20193 8283 8233 15783 Face 20194 8233 8245 15783 Face 20195 8245 8299 15783 Face 20196 8299 8283 15783 Face 20197 8481 8415 15784 Face 20198 8415 8442 15784 Face 20199 8442 8505 15784 Face 20200 8505 8481 15784 Face 20201 8340 8285 15785 Face 20202 8285 8342 15785 Face 20203 8342 8387 15785 Face 20204 8387 8340 15785 Face 20205 8566 8498 15786 Face 20206 8498 8562 15786 Face 20207 8562 8619 15786 Face 20208 8619 8566 15786 Face 20209 8439 8404 15787 Face 20210 8404 8437 15787 Face 20211 8437 8483 15787 Face 20212 8483 8439 15787 Face 20213 8698 8627 15788 Face 20214 8627 8623 15788 Face 20215 8623 8695 15788 Face 20216 8695 8698 15788 Face 20217 8629 8551 15789 Face 20218 8551 8480 15789 Face 20219 8480 8535 15789 Face 20220 8535 8629 15789 Face 20221 8465 8397 15790 Face 20222 8397 8330 15790 Face 20223 8330 8412 15790 Face 20224 8412 8465 15790 Face 20225 8458 8411 15791 Face 20226 8411 8311 15791 Face 20227 8311 8376 15791 Face 20228 8376 8458 15791 Face 20229 8323 8236 15792 Face 20230 8236 8125 15792 Face 20231 8125 8228 15792 Face 20232 8228 8323 15792 Face 20233 8270 8192 15793 Face 20234 8192 8130 15793 Face 20235 8130 8205 15793 Face 20236 8205 8270 15793 Face 20237 8167 8098 15794 Face 20238 8098 7946 15794 Face 20239 7946 8010 15794 Face 20240 8010 8167 15794 Face 20241 8055 8028 15795 Face 20242 8028 7851 15795 Face 20243 7851 7899 15795 Face 20244 7899 8055 15795 Face 20245 7991 8009 15796 Face 20246 8009 7800 15796 Face 20247 7800 7793 15796 Face 20248 7793 7991 15796 Face 20249 8078 8030 15797 Face 20250 8030 7942 15797 Face 20251 7942 7979 15797 Face 20252 7979 8078 15797 Face 20253 7849 7757 15798 Face 20254 7757 7542 15798 Face 20255 7542 7702 15798 Face 20256 7702 7849 15798 Face 20257 7667 7589 15799 Face 20258 7589 7245 15799 Face 20259 7245 7390 15799 Face 20260 7390 7667 15799 Face 20261 7506 7495 15800 Face 20262 7495 7097 15800 Face 20263 7097 7133 15800 Face 20264 7133 7506 15800 Face 20265 6690 6631 15801 Face 20266 6631 6070 15801 Face 20267 6070 6119 15801 Face 20268 6119 6690 15801 Face 20269 8565 8321 15802 Face 20270 8321 8453 15802 Face 20271 8453 8666 15802 Face 20272 8666 8565 15802 Face 20273 7877 7541 15803 Face 20274 7541 7813 15803 Face 20275 7813 8180 15803 Face 20276 8180 7877 15803 Face 20277 8738 8577 15804 Face 20278 8577 8677 15804 Face 20279 8677 8806 15804 Face 20280 8806 8738 15804 Face 20281 8375 8118 15805 Face 20282 8118 8272 15805 Face 20283 8272 8499 15805 Face 20284 8499 8375 15805 Face 20285 8867 8766 15806 Face 20286 8766 8800 15806 Face 20287 8800 8887 15806 Face 20288 8887 8867 15806 Face 20289 8559 8318 15807 Face 20290 8318 8350 15807 Face 20291 8350 8589 15807 Face 20292 8589 8559 15807 Face 20293 8877 8792 15808 Face 20294 8792 8770 15808 Face 20295 8770 8851 15808 Face 20296 8851 8877 15808 Face 20297 8599 8368 15809 Face 20298 8368 8379 15809 Face 20299 8379 8598 15809 Face 20300 8598 8599 15809 Face 20301 8820 8727 15810 Face 20302 8727 8628 15810 Face 20303 8628 8724 15810 Face 20304 8724 8820 15810 Face 20305 8588 8386 15811 Face 20306 8386 8369 15811 Face 20307 8369 8532 15811 Face 20308 8532 8588 15811 Face 20309 8580 8508 15812 Face 20310 8508 8462 15812 Face 20311 8462 8521 15812 Face 20312 8521 8580 15812 Face 20313 8449 8337 15813 Face 20314 8337 8312 15813 Face 20315 8312 8418 15813 Face 20316 8418 8449 15813 Face 20317 8408 8301 15814 Face 20318 8301 8316 15814 Face 20319 8316 8417 15814 Face 20320 8417 8408 15814 Face 20321 7300 6805 15815 Face 20322 6805 7016 15815 Face 20323 7016 7496 15815 Face 20324 7496 7300 15815 Face 20325 5616 5838 15816 Face 20326 5838 6236 15816 Face 20327 6236 5429 15816 Face 20328 5429 5616 15816 Face 20329 7739 7335 15817 Face 20330 7335 7497 15817 Face 20331 7497 7890 15817 Face 20332 7890 7739 15817 Face 20333 6810 6536 15818 Face 20334 6536 6712 15818 Face 20335 6712 7050 15818 Face 20336 7050 6810 15818 Face 20337 7916 7523 15819 Face 20338 7523 7561 15819 Face 20339 7561 7956 15819 Face 20340 7956 7916 15819 Face 20341 7103 6744 15820 Face 20342 6744 6776 15820 Face 20343 6776 7157 15820 Face 20344 7157 7103 15820 Face 20345 7998 7617 15821 Face 20346 7617 7653 15821 Face 20347 7653 8035 15821 Face 20348 8035 7998 15821 Face 20349 8057 7694 15822 Face 20350 7694 7745 15822 Face 20351 7745 8094 15822 Face 20352 8094 8057 15822 Face 20353 7358 7131 15823 Face 20354 7131 7171 15823 Face 20355 7171 7421 15823 Face 20356 7421 7358 15823 Face 20357 8117 7805 15824 Face 20358 7805 7857 15824 Face 20359 7857 8140 15824 Face 20360 8140 8117 15824 Face 20361 7490 7293 15825 Face 20362 7293 7377 15825 Face 20363 7377 7567 15825 Face 20364 7567 7490 15825 Face 20365 8155 7896 15826 Face 20366 7896 7944 15826 Face 20367 7944 8182 15826 Face 20368 8182 8155 15826 Face 20369 7646 7454 15827 Face 20370 7454 7499 15827 Face 20371 7499 7716 15827 Face 20372 7716 7646 15827 Face 20373 7322 7287 15828 Face 20374 7287 7083 15828 Face 20375 7083 7113 15828 Face 20376 7113 7322 15828 Face 20377 7202 7143 15829 Face 20378 7143 6997 15829 Face 20379 6997 7052 15829 Face 20380 7052 7202 15829 Face 20381 7040 7005 15830 Face 20382 7005 6853 15830 Face 20383 6853 6902 15830 Face 20384 6902 7040 15830 Face 20385 6949 6924 15831 Face 20386 6924 6750 15831 Face 20387 6750 6761 15831 Face 20388 6761 6949 15831 Face 20389 6907 6834 15832 Face 20390 6834 6653 15832 Face 20391 6653 6737 15832 Face 20392 6737 6907 15832 Face 20393 6719 6598 15833 Face 20394 6598 6351 15833 Face 20395 6351 6489 15833 Face 20396 6489 6719 15833 Face 20397 6614 6586 15834 Face 20398 6586 6310 15834 Face 20399 6310 6358 15834 Face 20400 6358 6614 15834 Face 20401 6546 6402 15835 Face 20402 6402 6159 15835 Face 20403 6159 6276 15835 Face 20404 6276 6546 15835 Face 20405 6196 6093 15836 Face 20406 6093 5954 15836 Face 20407 5954 6028 15836 Face 20408 6028 6196 15836 Face 20409 5863 5962 15837 Face 20410 5962 6013 15837 Face 20411 6013 5896 15837 Face 20412 5896 5863 15837 Face 20413 6047 5995 15838 Face 20414 5995 5882 15838 Face 20415 5882 5893 15838 Face 20416 5893 6047 15838 Face 20417 5712 5765 15839 Face 20418 5765 5655 15839 Face 20419 5655 5629 15839 Face 20420 5629 5712 15839 Face 20421 5784 5795 15840 Face 20422 5795 5701 15840 Face 20423 5701 5681 15840 Face 20424 5681 5784 15840 Face 20425 5478 5486 15841 Face 20426 5486 5558 15841 Face 20427 5558 5566 15841 Face 20428 5566 5478 15841 Face 20429 5462 5467 15842 Face 20430 5467 5578 15842 Face 20431 5578 5583 15842 Face 20432 5583 5462 15842 Face 20433 5475 5458 15843 Face 20434 5458 5587 15843 Face 20435 5587 5569 15843 Face 20436 5569 5475 15843 Face 20437 5393 5659 15844 Face 20438 5659 5661 15844 Face 20439 5661 5391 15844 Face 20440 5391 5393 15844 Face 20441 5935 6320 15845 Face 20442 6320 6304 15845 Face 20443 6304 5941 15845 Face 20444 5941 5935 15845 Face 20445 5387 5664 15846 Face 20446 5664 5617 15846 Face 20447 5617 5430 15846 Face 20448 5430 5387 15846 Face 20449 5950 6299 15847 Face 20450 6299 6111 15847 Face 20451 6111 5898 15847 Face 20452 5898 5950 15847 Face 20453 7664 7717 15848 Face 20454 7717 7860 15848 Face 20455 7860 7788 15848 Face 20456 7788 7664 15848 Face 20457 7907 7911 15849 Face 20458 7911 7902 15849 Face 20459 7902 7737 15849 Face 20460 7737 7907 15849 Face 20461 7502 7327 15850 Face 20462 7327 7347 15850 Face 20463 7347 7512 15850 Face 20464 7512 7502 15850 Face 20465 7312 7505 15851 Face 20466 7505 7493 15851 Face 20467 7493 7302 15851 Face 20468 7302 7312 15851 Face 20469 7144 7000 15852 Face 20470 7000 7036 15852 Face 20471 7036 7180 15852 Face 20472 7180 7144 15852 Face 20473 7538 7364 15853 Face 20474 7364 7386 15853 Face 20475 7386 7509 15853 Face 20476 7509 7538 15853 Face 20477 7636 7555 15854 Face 20478 7555 7411 15854 Face 20479 7411 7472 15854 Face 20480 7472 7636 15854 Face 20481 7445 7332 15855 Face 20482 7332 7189 15855 Face 20483 7189 7324 15855 Face 20484 7324 7445 15855 Face 20485 7313 7212 15856 Face 20486 7212 7075 15856 Face 20487 7075 7148 15856 Face 20488 7148 7313 15856 Face 20489 7134 7031 15857 Face 20490 7031 6957 15857 Face 20491 6957 7011 15857 Face 20492 7011 7134 15857 Face 20493 7025 6969 15858 Face 20494 6969 6742 15858 Face 20495 6742 6771 15858 Face 20496 6771 7025 15858 Face 20497 6922 6864 15859 Face 20498 6864 6703 15859 Face 20499 6703 6727 15859 Face 20500 6727 6922 15859 Face 20501 6307 6302 15860 Face 20502 6302 5929 15860 Face 20503 5929 5916 15860 Face 20504 5916 6307 15860 Face 20505 6333 6326 15861 Face 20506 6326 5977 15861 Face 20507 5977 5968 15861 Face 20508 5968 6333 15861 Face 20509 6287 6208 15862 Face 20510 6208 5920 15862 Face 20511 5920 5953 15862 Face 20512 5953 6287 15862 Face 20513 5360 5364 15863 Face 20514 5364 5633 15863 Face 20515 5633 5639 15863 Face 20516 5639 5360 15863 Face 20517 7836 7924 15864 Face 20518 7924 7985 15864 Face 20519 7985 7881 15864 Face 20520 7881 7836 15864 Face 20521 8031 7957 15865 Face 20522 7957 7997 15865 Face 20523 7997 8050 15865 Face 20524 8050 8031 15865 Face 20525 8158 8056 15866 Face 20526 8056 8039 15866 Face 20527 8039 8163 15866 Face 20528 8163 8158 15866 Face 20529 8139 8026 15867 Face 20530 8026 8007 15867 Face 20531 8007 8061 15867 Face 20532 8061 8139 15867 Face 20533 7968 7934 15868 Face 20534 7934 7835 15868 Face 20535 7835 7853 15868 Face 20536 7853 7968 15868 Face 20537 7689 7659 15869 Face 20538 7659 7508 15869 Face 20539 7508 7556 15869 Face 20540 7556 7689 15869 Face 20541 7457 7387 15870 Face 20542 7387 7249 15870 Face 20543 7249 7355 15870 Face 20544 7355 7457 15870 Face 20545 6393 6362 15871 Face 20546 6362 5932 15871 Face 20547 5932 5949 15871 Face 20548 5949 6393 15871 Face 20549 8358 8377 15872 Face 20550 8377 8436 15872 Face 20551 8436 8435 15872 Face 20552 8435 8358 15872 Face 20553 8382 8341 15873 Face 20554 8341 8286 15873 Face 20555 8286 8319 15873 Face 20556 8319 8382 15873 Face 20557 8294 8257 15874 Face 20558 8257 8235 15874 Face 20559 8235 8255 15874 Face 20560 8255 8294 15874 Face 20561 8253 8313 15875 Face 20562 8313 8274 15875 Face 20563 8274 8208 15875 Face 20564 8208 8253 15875 Face 20565 8230 8209 15876 Face 20566 8209 8204 15876 Face 20567 8204 8217 15876 Face 20568 8217 8230 15876 Face 20569 8174 8210 15877 Face 20570 8210 8141 15877 Face 20571 8141 8066 15877 Face 20572 8066 8174 15877 Face 20573 8198 8175 15878 Face 20574 8175 8189 15878 Face 20575 8189 8196 15878 Face 20576 8196 8198 15878 Face 20577 8126 8153 15879 Face 20578 8153 8033 15879 Face 20579 8033 8001 15879 Face 20580 8001 8126 15879 Face 20581 8040 8089 15880 Face 20582 8089 7975 15880 Face 20583 7975 7936 15880 Face 20584 7936 8040 15880 Face 20585 8051 8049 15881 Face 20586 8049 8047 15881 Face 20587 8047 8060 15881 Face 20588 8060 8051 15881 Face 20589 8207 8218 15882 Face 20590 8218 8251 15882 Face 20591 8251 8240 15882 Face 20592 8240 8207 15882 Face 20593 8234 8195 15883 Face 20594 8195 8138 15883 Face 20595 8138 8184 15883 Face 20596 8184 8234 15883 Face 20597 8093 8017 15884 Face 20598 8017 7892 15884 Face 20599 7892 7949 15884 Face 20600 7949 8093 15884 Face 20601 7803 7736 15885 Face 20602 7736 7621 15885 Face 20603 7621 7684 15885 Face 20604 7684 7803 15885 Face 20605 7613 7518 15886 Face 20606 7518 7451 15886 Face 20607 7451 7536 15886 Face 20608 7536 7613 15886 Face 20609 7481 7370 15887 Face 20610 7370 7354 15887 Face 20611 7354 7474 15887 Face 20612 7474 7481 15887 Face 20613 7634 7704 15888 Face 20614 7704 7754 15888 Face 20615 7754 7685 15888 Face 20616 7685 7634 15888 Face 20617 7668 7588 15889 Face 20618 7588 7594 15889 Face 20619 7594 7679 15889 Face 20620 7679 7668 15889 Face 20621 7769 7838 15890 Face 20622 7838 7939 15890 Face 20623 7939 7872 15890 Face 20624 7872 7769 15890 Face 20625 8027 8121 15891 Face 20626 8121 8222 15891 Face 20627 8222 8169 15891 Face 20628 8169 8027 15891 Face 20629 8227 8269 15892 Face 20630 8269 8293 15892 Face 20631 8293 8260 15892 Face 20632 8260 8227 15892 Face 20633 8267 8295 15893 Face 20634 8295 8271 15893 Face 20635 8271 8249 15893 Face 20636 8249 8267 15893 Face 20637 8162 8188 15894 Face 20638 8188 8134 15894 Face 20639 8134 8109 15894 Face 20640 8109 8162 15894 Face 20641 8206 8223 15895 Face 20642 8223 8176 15895 Face 20643 8176 8160 15895 Face 20644 8160 8206 15895 Face 20645 8082 8113 15896 Face 20646 8113 8083 15896 Face 20647 8083 8058 15896 Face 20648 8058 8082 15896 Face 20649 8097 8106 15897 Face 20650 8106 8149 15897 Face 20651 8149 8136 15897 Face 20652 8136 8097 15897 Face 20653 8254 8232 15898 Face 20654 8232 8193 15898 Face 20655 8193 8216 15898 Face 20656 8216 8254 15898 Face 20657 8199 8173 15899 Face 20658 8173 8191 15899 Face 20659 8191 8215 15899 Face 20660 8215 8199 15899 Face 20661 8261 8237 15900 Face 20662 8237 8287 15900 Face 20663 8287 8315 15900 Face 20664 8315 8261 15900 Face 20665 8371 8351 15901 Face 20666 8351 8395 15901 Face 20667 8395 8416 15901 Face 20668 8416 8371 15901 Face 20669 8200 8181 15902 Face 20670 8181 8154 15902 Face 20671 8154 8168 15902 Face 20672 8168 8200 15902 Face 20673 8214 8194 15903 Face 20674 8194 8243 15903 Face 20675 8243 8262 15903 Face 20676 8262 8214 15903 Face 20677 8327 8300 15904 Face 20678 8300 8332 15904 Face 20679 8332 8363 15904 Face 20680 8363 8327 15904 Face 20681 8381 8336 15905 Face 20682 8336 8314 15905 Face 20683 8314 8367 15905 Face 20684 8367 8381 15905 Face 20685 8326 8266 15906 Face 20686 8266 8178 15906 Face 20687 8178 8247 15906 Face 20688 8247 8326 15906 Face 20689 8128 8003 15907 Face 20690 8003 7889 15907 Face 20691 7889 7973 15907 Face 20692 7973 8128 15907 Face 20693 7868 7801 15908 Face 20694 7801 7742 15908 Face 20695 7742 7822 15908 Face 20696 7822 7868 15908 Face 20697 7826 7729 15909 Face 20698 7729 7741 15909 Face 20699 7741 7847 15909 Face 20700 7847 7826 15909 Face 20701 8135 8148 15910 Face 20702 8148 8172 15910 Face 20703 8172 8165 15910 Face 20704 8165 8135 15910 Face 20705 5626 5557 15911 Face 20706 5557 5485 15911 Face 20707 5485 5582 15911 Face 20708 5582 5626 15911 Face 20709 5690 5695 15912 Face 20710 5695 5808 15912 Face 20711 5808 5791 15912 Face 20712 5791 5690 15912 Face 20713 5706 5721 15913 Face 20714 5721 5849 15913 Face 20715 5849 5831 15913 Face 20716 5831 5706 15913 Face 20717 5742 5758 15914 Face 20718 5758 5873 15914 Face 20719 5873 5861 15914 Face 20720 5861 5742 15914 Face 20721 5906 5859 15915 Face 20722 5859 5921 15915 Face 20723 5921 5965 15915 Face 20724 5965 5906 15915 Face 20725 5869 5880 15916 Face 20726 5880 5969 15916 Face 20727 5969 5948 15916 Face 20728 5948 5869 15916 Face 20729 5903 5922 15917 Face 20730 5922 6006 15917 Face 20731 6006 5996 15917 Face 20732 5996 5903 15917 Face 20733 5931 5947 15918 Face 20734 5947 6022 15918 Face 20735 6022 6008 15918 Face 20736 6008 5931 15918 Face 20737 6030 6010 15919 Face 20738 6010 6117 15919 Face 20739 6117 6118 15919 Face 20740 6118 6030 15919 Face 20741 6037 6056 15920 Face 20742 6056 6178 15920 Face 20743 6178 6156 15920 Face 20744 6156 6037 15920 Face 20745 6572 6305 15921 Face 20746 6305 6371 15921 Face 20747 6371 6644 15921 Face 20748 6644 6572 15921 Face 20749 6388 6416 15922 Face 20750 6416 6649 15922 Face 20751 6649 6648 15922 Face 20752 6648 6388 15922 Face 20753 6432 6471 15923 Face 20754 6471 6626 15923 Face 20755 6626 6645 15923 Face 20756 6645 6432 15923 Face 20757 6000 6004 15924 Face 20758 6004 6081 15924 Face 20759 6081 6048 15924 Face 20760 6048 6000 15924 Face 20761 6094 6147 15925 Face 20762 6147 6256 15925 Face 20763 6256 6226 15925 Face 20764 6226 6094 15925 Face 20765 6323 6248 15926 Face 20766 6248 6258 15926 Face 20767 6258 6336 15926 Face 20768 6336 6323 15926 Face 20769 6881 7170 15927 Face 20770 7170 7175 15927 Face 20771 7175 6890 15927 Face 20772 6890 6881 15927 Face 20773 5798 5806 15928 Face 20774 5806 5934 15928 Face 20775 5934 5926 15928 Face 20776 5926 5798 15928 Face 20777 6015 6029 15929 Face 20778 6029 6090 15929 Face 20779 6090 6078 15929 Face 20780 6078 6015 15929 Face 20781 6129 6112 15930 Face 20782 6112 6185 15930 Face 20783 6185 6193 15930 Face 20784 6193 6129 15930 Face 20785 6319 6338 15931 Face 20786 6338 6456 15931 Face 20787 6456 6424 15931 Face 20788 6424 6319 15931 Face 20789 6500 6540 15932 Face 20790 6540 6575 15932 Face 20791 6575 6544 15932 Face 20792 6544 6500 15932 Face 20793 6418 6466 15933 Face 20794 6466 6439 15933 Face 20795 6439 6387 15933 Face 20796 6387 6418 15933 Face 20797 6366 6273 15934 Face 20798 6273 6219 15934 Face 20799 6219 6340 15934 Face 20800 6340 6366 15934 Face 20801 5686 5665 15935 Face 20802 5665 5727 15935 Face 20803 5727 5759 15935 Face 20804 5759 5686 15935 Face 20805 5943 6025 15936 Face 20806 6025 6067 15936 Face 20807 6067 5901 15936 Face 20808 5901 5943 15936 Face 20809 5573 5472 15937 Face 20810 5472 5471 15937 Face 20811 5471 5574 15937 Face 20812 5574 5573 15937 Face 20813 5936 5951 15938 Face 20814 5951 6146 15938 Face 20815 6146 6087 15938 Face 20816 6087 5936 15938 Face 20817 5680 5663 15939 Face 20818 5663 5780 15939 Face 20819 5780 5827 15939 Face 20820 5827 5680 15939 Face 20821 5577 5468 15940 Face 20822 5468 5482 15940 Face 20823 5482 5563 15940 Face 20824 5563 5577 15940 Face 20825 5975 5983 15941 Face 20826 5983 6189 15941 Face 20827 6189 6176 15941 Face 20828 6176 5975 15941 Face 20829 5895 5884 15942 Face 20830 5884 6123 15942 Face 20831 6123 6143 15942 Face 20832 6143 5895 15942 Face 20833 6589 6417 15943 Face 20834 6417 6487 15943 Face 20835 6487 6617 15943 Face 20836 6617 6589 15943 Face 20837 6407 6374 15944 Face 20838 6374 6609 15944 Face 20839 6609 6660 15944 Face 20840 6660 6407 15944 Face 20841 6947 6814 15945 Face 20842 6814 6883 15945 Face 20843 6883 7015 15945 Face 20844 7015 6947 15945 Face 20845 6893 6872 15946 Face 20846 6872 7094 15946 Face 20847 7094 7132 15946 Face 20848 7132 6893 15946 Face 20849 6828 6766 15947 Face 20850 6766 6973 15947 Face 20851 6973 7032 15947 Face 20852 7032 6828 15947 Face 20853 7466 7615 15948 Face 20854 7615 7614 15948 Face 20855 7614 7469 15948 Face 20856 7469 7466 15948 Face 20857 7422 7380 15949 Face 20858 7380 7609 15949 Face 20859 7609 7638 15949 Face 20860 7638 7422 15949 Face 20861 7309 7195 15950 Face 20862 7195 7444 15950 Face 20863 7444 7514 15950 Face 20864 7514 7309 15950 Face 20865 7815 7951 15951 Face 20866 7951 8064 15951 Face 20867 8064 7926 15951 Face 20868 7926 7815 15951 Face 20869 8258 8161 15952 Face 20870 8161 8288 15952 Face 20871 8288 8390 15952 Face 20872 8390 8258 15952 Face 20873 7903 7726 15953 Face 20874 7726 7642 15953 Face 20875 7642 7824 15953 Face 20876 7824 7903 15953 Face 20877 7571 7558 15954 Face 20878 7558 7698 15954 Face 20879 7698 7749 15954 Face 20880 7749 7571 15954 Face 20881 8043 7938 15955 Face 20882 7938 8080 15955 Face 20883 8080 8190 15955 Face 20884 8190 8043 15955 Face 20885 5826 5813 15956 Face 20886 5813 5987 15956 Face 20887 5987 6012 15956 Face 20888 6012 5826 15956 Face 20889 5804 5774 15957 Face 20890 5774 5908 15957 Face 20891 5908 5963 15957 Face 20892 5963 5804 15957 Face 20893 5609 5437 15958 Face 20894 5437 5447 15958 Face 20895 5447 5598 15958 Face 20896 5598 5609 15958 Face 20897 6230 6170 15959 Face 20898 6170 6382 15959 Face 20899 6382 6494 15959 Face 20900 6494 6230 15959 Face 20901 6105 6024 15960 Face 20902 6024 6120 15960 Face 20903 6120 6274 15960 Face 20904 6274 6105 15960 Face 20905 6699 6595 15961 Face 20906 6595 6686 15961 Face 20907 6686 6800 15961 Face 20908 6800 6699 15961 Face 20909 6419 6198 15962 Face 20910 6198 6232 15962 Face 20911 6232 6493 15962 Face 20912 6493 6419 15962 Face 20913 6874 6718 15963 Face 20914 6718 6722 15963 Face 20915 6722 6896 15963 Face 20916 6896 6874 15963 Face 20917 6482 6182 15964 Face 20918 6182 6197 15964 Face 20919 6197 6453 15964 Face 20920 6453 6482 15964 Face 20921 6875 6696 15965 Face 20922 6696 6608 15965 Face 20923 6608 6765 15965 Face 20924 6765 6875 15965 Face 20925 6410 6169 15966 Face 20926 6169 6141 15966 Face 20927 6141 6330 15966 Face 20928 6330 6410 15966 Face 20929 6624 6413 15967 Face 20930 6413 6205 15967 Face 20931 6205 6370 15967 Face 20932 6370 6624 15967 Face 20933 6206 6069 15968 Face 20934 6069 5982 15968 Face 20935 5982 6084 15968 Face 20936 6084 6206 15968 Face 20937 6128 6034 15969 Face 20938 6034 5855 15969 Face 20939 5855 5883 15969 Face 20940 5883 6128 15969 Face 20941 5952 5874 15970 Face 20942 5874 5744 15970 Face 20943 5744 5792 15970 Face 20944 5792 5952 15970 Face 20945 5405 5378 15971 Face 20946 5378 5627 15971 Face 20947 5627 5613 15971 Face 20948 5613 5405 15971 Face 20949 5452 5432 15972 Face 20950 5432 5599 15972 Face 20951 5599 5593 15972 Face 20952 5593 5452 15972 Face 20953 5411 5461 15973 Face 20954 5461 5584 15973 Face 20955 5584 5638 15973 Face 20956 5638 5411 15973 Face 20957 7953 8124 15974 Face 20958 8124 8133 15974 Face 20959 8133 7965 15974 Face 20960 7965 7953 15974 Face 20961 7823 7700 15975 Face 20962 7700 7693 15975 Face 20963 7693 7817 15975 Face 20964 7817 7823 15975 Face 20965 7573 7430 15976 Face 20966 7430 7428 15976 Face 20967 7428 7570 15976 Face 20968 7570 7573 15976 Face 20969 7221 7053 15977 Face 20970 7053 7055 15977 Face 20971 7055 7216 15977 Face 20972 7216 7221 15977 Face 20973 6930 6790 15978 Face 20974 6790 6792 15978 Face 20975 6792 6934 15978 Face 20976 6934 6930 15978 Face 20977 6664 6505 15979 Face 20978 6505 6515 15979 Face 20979 6515 6668 15979 Face 20980 6668 6664 15979 Face 20981 6481 6472 15980 Face 20982 6472 6666 15980 Face 20983 6666 6671 15980 Face 20984 6671 6481 15980 Face 20985 6462 6467 15981 Face 20986 6467 6647 15981 Face 20987 6647 6651 15981 Face 20988 6651 6462 15981 Face 20989 6812 6804 15982 Face 20990 6804 6975 15982 Face 20991 6975 6988 15982 Face 20992 6988 6812 15982 Face 20993 6794 6787 15983 Face 20994 6787 6943 15983 Face 20995 6943 6960 15983 Face 20996 6960 6794 15983 Face 20997 7172 7155 15984 Face 20998 7155 7393 15984 Face 20999 7393 7415 15984 Face 21000 7415 7172 15984 Face 21001 7116 7084 15985 Face 21002 7084 7311 15985 Face 21003 7311 7345 15985 Face 21004 7345 7116 15985 Face 21005 7596 7532 15986 Face 21006 7532 7721 15986 Face 21007 7721 7797 15986 Face 21008 7797 7596 15986 Face 21009 8081 7995 15987 Face 21010 7995 8187 15987 Face 21011 8187 8225 15987 Face 21012 8225 8081 15987 Face 21013 7929 7856 15988 Face 21014 7856 7977 15988 Face 21015 7977 8099 15988 Face 21016 8099 7929 15988 Face 21017 8347 8309 15989 Face 21018 8309 8391 15989 Face 21019 8391 8429 15989 Face 21020 8429 8347 15989 Face 21021 8238 8147 15990 Face 21022 8147 8212 15990 Face 21023 8212 8305 15990 Face 21024 8305 8238 15990 Face 21025 8477 8426 15991 Face 21026 8426 8469 15991 Face 21027 8469 8518 15991 Face 21028 8518 8477 15991 Face 21029 8560 8503 15992 Face 21030 8503 8523 15992 Face 21031 8523 8605 15992 Face 21032 8605 8560 15992 Face 21033 8674 8604 15993 Face 21034 8604 8680 15993 Face 21035 8680 8741 15993 Face 21036 8741 8674 15993 Face 21037 8183 8279 15994 Face 21038 8279 8373 15994 Face 21039 8373 8289 15994 Face 21040 8289 8183 15994 Face 21041 8402 8475 15995 Face 21042 8475 8575 15995 Face 21043 8575 8496 15995 Face 21044 8496 8402 15995 Face 21045 8590 8661 15996 Face 21046 8661 8743 15996 Face 21047 8743 8678 15996 Face 21048 8678 8590 15996 Face 21049 8759 8787 15997 Face 21050 8787 8788 15997 Face 21051 8788 8781 15997 Face 21052 8781 8759 15997 Face 21053 8763 8663 15998 Face 21054 8663 8696 15998 Face 21055 8696 8761 15998 Face 21056 8761 8763 15998 Face 21057 8100 8110 15999 Face 21058 8110 8239 15999 Face 21059 8239 8259 15999 Face 21060 8259 8100 15999 Face 21061 8345 8422 16000 Face 21062 8422 8434 16000 Face 21063 8434 8360 16000 Face 21064 8360 8345 16000 Face 21065 8550 8592 16001 Face 21066 8592 8606 16001 Face 21067 8606 8574 16001 Face 21068 8574 8550 16001 Face 21069 8684 8693 16002 Face 21070 8693 8652 16002 Face 21071 8652 8710 16002 Face 21072 8710 8684 16002 Face 21073 8620 8643 16003 Face 21074 8643 8711 16003 Face 21075 8711 8576 16003 Face 21076 8576 8620 16003 Face 21077 8608 8654 16004 Face 21078 8654 8656 16004 Face 21079 8656 8585 16004 Face 21080 8585 8608 16004 Face 21081 8420 8353 16005 Face 21082 8353 8284 16005 Face 21083 8284 8344 16005 Face 21084 8344 8420 16005 Face 21085 8123 8197 16006 Face 21086 8197 8273 16006 Face 21087 8273 8231 16006 Face 21088 8231 8123 16006 Face 21089 8065 7948 16007 Face 21090 7948 7848 16007 Face 21091 7848 7966 16007 Face 21092 7966 8065 16007 Face 21093 8694 8778 16008 Face 21094 8778 8857 16008 Face 21095 8857 8783 16008 Face 21096 8783 8694 16008 Face 21097 5322 5713 16009 Face 21098 5713 5703 16009 Face 21099 5703 5359 16009 Face 21100 5359 5322 16009 Face 21101 7268 7248 16010 Face 21102 7248 7078 16010 Face 21103 7078 7089 16010 Face 21104 7089 7268 16010 Face 21105 6961 6954 16011 Face 21106 6954 6808 16011 Face 21107 6808 6819 16011 Face 21108 6819 6961 16011 Face 21109 6709 6698 16012 Face 21110 6698 6559 16012 Face 21111 6559 6585 16012 Face 21112 6585 6709 16012 Face 21113 6375 6291 16013 Face 21114 6291 6327 16013 Face 21115 6327 6403 16013 Face 21116 6403 6375 16013 Face 21117 6344 6294 16014 Face 21118 6294 6554 16014 Face 21119 6554 6569 16014 Face 21120 6569 6344 16014 Face 21121 6871 7137 16015 Face 21122 7137 7107 16015 Face 21123 7107 6855 16015 Face 21124 6855 6871 16015 Face 21125 7384 7417 16016 Face 21126 7417 7627 16016 Face 21127 7627 7559 16016 Face 21128 7559 7384 16016 Face 21129 7707 7756 16017 Face 21130 7756 7869 16017 Face 21131 7869 7804 16017 Face 21132 7804 7707 16017 Face 21133 7861 7909 16018 Face 21134 7909 7933 16018 Face 21135 7933 7886 16018 Face 21136 7886 7861 16018 Face 21137 7879 7927 16019 Face 21138 7927 7883 16019 Face 21139 7883 7846 16019 Face 21140 7846 7879 16019 Face 21141 7806 7696 16020 Face 21142 7696 7683 16020 Face 21143 7683 7785 16020 Face 21144 7785 7806 16020 Face 21145 7557 7565 16021 Face 21146 7565 7433 16021 Face 21147 7433 7426 16021 Face 21148 7426 7557 16021 Face 21149 6678 6670 16022 Face 21150 6670 6523 16022 Face 21151 6523 6538 16022 Face 21152 6538 6678 16022 Face 21153 6491 6501 16023 Face 21154 6501 6659 16023 Face 21155 6659 6652 16023 Face 21156 6652 6491 16023 Face 21157 6188 6239 16024 Face 21158 6239 6318 16024 Face 21159 6318 6295 16024 Face 21160 6295 6188 16024 Face 21161 6247 6212 16025 Face 21162 6212 6270 16025 Face 21163 6270 6257 16025 Face 21164 6257 6247 16025 Face 21165 6275 6356 16026 Face 21166 6356 6348 16026 Face 21167 6348 6264 16026 Face 21168 6264 6275 16026 Face 21169 6944 6939 16027 Face 21170 6939 6797 16027 Face 21171 6797 6802 16027 Face 21172 6802 6944 16027 Face 21173 6785 6788 16028 Face 21174 6788 6929 16028 Face 21175 6929 6936 16028 Face 21176 6936 6785 16028 Face 21177 7062 7071 16029 Face 21178 7071 7236 16029 Face 21179 7236 7224 16029 Face 21180 7224 7062 16029 Face 21181 7072 7058 16030 Face 21182 7058 7226 16030 Face 21183 7226 7272 16030 Face 21184 7272 7072 16030 Face 21185 7566 7568 16031 Face 21186 7568 7425 16031 Face 21187 7425 7427 16031 Face 21188 7427 7566 16031 Face 21189 7463 7434 16032 Face 21190 7434 7576 16032 Face 21191 7576 7628 16032 Face 21192 7628 7463 16032 Face 21193 7695 7697 16033 Face 21194 7697 7814 16033 Face 21195 7814 7820 16033 Face 21196 7820 7695 16033 Face 21197 7755 7708 16034 Face 21198 7708 7829 16034 Face 21199 7829 7875 16034 Face 21200 7875 7755 16034 Face 21201 7906 7960 16035 Face 21202 7960 7976 16035 Face 21203 7976 7915 16035 Face 21204 7915 7906 16035 Face 21205 7971 8052 16036 Face 21206 8052 7993 16036 Face 21207 7993 7982 16036 Face 21208 7982 7971 16036 Face 21209 8102 8013 16037 Face 21210 8013 8011 16037 Face 21211 8011 8116 16037 Face 21212 8116 8102 16037 Face 21213 7994 7932 16038 Face 21214 7932 8000 16038 Face 21215 8000 8079 16038 Face 21216 8079 7994 16038 Face 21217 5971 6001 16039 Face 21218 6001 5910 16039 Face 21219 5910 5914 16039 Face 21220 5914 5971 16039 Face 21221 5829 5786 16040 Face 21222 5786 5775 16040 Face 21223 5775 5822 16040 Face 21224 5822 5829 16040 Face 21225 5946 5933 16041 Face 21226 5933 6062 16041 Face 21227 6062 6031 16041 Face 21228 6031 5946 16041 Face 21229 6308 6281 16042 Face 21230 6281 6202 16042 Face 21231 6202 6240 16042 Face 21232 6240 6308 16042 Face 21233 6116 6091 16043 Face 21234 6091 6148 16043 Face 21235 6148 6207 16043 Face 21236 6207 6116 16043 Face 21237 5837 5856 16044 Face 21238 5856 5872 16044 Face 21239 5872 5870 16044 Face 21240 5870 5837 16044 Face 21241 5450 5444 16045 Face 21242 5444 5602 16045 Face 21243 5602 5595 16045 Face 21244 5595 5450 16045 Face 21245 5766 5779 16046 Face 21246 5779 5904 16046 Face 21247 5904 5885 16046 Face 21248 5885 5766 16046 Face 21249 5970 5998 16047 Face 21250 5998 6061 16047 Face 21251 6061 6042 16047 Face 21252 6042 5970 16047 Face 21253 6110 6124 16048 Face 21254 6124 6181 16048 Face 21255 6181 6168 16048 Face 21256 6168 6110 16048 Face 21257 6252 6283 16049 Face 21258 6283 6355 16049 Face 21259 6355 6288 16049 Face 21260 6288 6252 16049 Face 21261 6328 6411 16050 Face 21262 6411 6443 16050 Face 21263 6443 6350 16050 Face 21264 6350 6328 16050 Face 21265 5783 5915 16051 Face 21266 5915 5928 16051 Face 21267 5928 5801 16051 Face 21268 5801 5783 16051 Face 21269 6060 6074 16052 Face 21270 6074 6021 16052 Face 21271 6021 6009 16052 Face 21272 6009 6060 16052 Face 21273 6076 6144 16053 Face 21274 6144 6164 16053 Face 21275 6164 6098 16053 Face 21276 6098 6076 16053 Face 21277 6293 6401 16054 Face 21278 6401 6433 16054 Face 21279 6433 6316 16054 Face 21280 6316 6293 16054 Face 21281 6510 6552 16055 Face 21282 6552 6513 16055 Face 21283 6513 6486 16055 Face 21284 6486 6510 16055 Face 21285 6592 6521 16056 Face 21286 6521 6553 16056 Face 21287 6553 6627 16056 Face 21288 6627 6592 16056 Face 21289 6694 6606 16057 Face 21290 6606 6630 16057 Face 21291 6630 6728 16057 Face 21292 6728 6694 16057 Face 21293 5777 5797 16058 Face 21294 5797 5782 16058 Face 21295 5782 5762 16058 Face 21296 5762 5777 16058 Face 21297 5847 5848 16059 Face 21298 5848 5878 16059 Face 21299 5878 5889 16059 Face 21300 5889 5847 16059 Face 21301 5937 6027 16060 Face 21302 6027 6053 16060 Face 21303 6053 5958 16060 Face 21304 5958 5937 16060 Face 21305 6177 6151 16061 Face 21306 6151 6263 16061 Face 21307 6263 6296 16061 Face 21308 6296 6177 16061 Face 21309 6312 6349 16062 Face 21310 6349 6368 16062 Face 21311 6368 6354 16062 Face 21312 6354 6312 16062 Face 21313 6195 6145 16063 Face 21314 6145 6139 16063 Face 21315 6139 6209 16063 Face 21316 6209 6195 16063 Face 21317 6352 6448 16064 Face 21318 6448 6445 16064 Face 21319 6445 6334 16064 Face 21320 6334 6352 16064 Face 21321 6442 6441 16065 Face 21322 6441 6364 16065 Face 21323 6364 6343 16065 Face 21324 6343 6442 16065 Face 21325 6530 6535 16066 Face 21326 6535 6567 16066 Face 21327 6567 6560 16066 Face 21328 6560 6530 16066 Face 21329 6543 6497 16067 Face 21330 6497 6495 16067 Face 21331 6495 6537 16067 Face 21332 6537 6543 16067 Face 21333 6502 6518 16068 Face 21334 6518 6558 16068 Face 21335 6558 6541 16068 Face 21336 6541 6502 16068 Face 21337 6480 6463 16069 Face 21338 6463 6399 16069 Face 21339 6399 6504 16069 Face 21340 6504 6480 16069 Face 21341 6266 6244 16070 Face 21342 6244 6162 16070 Face 21343 6162 6218 16070 Face 21344 6218 6266 16070 Face 21345 6444 6455 16071 Face 21346 6455 6369 16071 Face 21347 6369 6378 16071 Face 21348 6378 6444 16071 Face 21349 6485 6555 16072 Face 21350 6555 6571 16072 Face 21351 6571 6473 16072 Face 21352 6473 6485 16072 Face 21353 6739 6849 16073 Face 21354 6849 6854 16073 Face 21355 6854 6663 16073 Face 21356 6663 6739 16073 Face 21357 6734 6706 16074 Face 21358 6706 6866 16074 Face 21359 6866 6912 16074 Face 21360 6912 6734 16074 Face 21361 5862 5835 16075 Face 21362 5835 6011 16075 Face 21363 6011 6057 16075 Face 21364 6057 5862 16075 Face 21365 6280 6194 16076 Face 21366 6194 6516 16076 Face 21367 6516 6591 16076 Face 21368 6591 6280 16076 Face 21369 6813 6783 16077 Face 21370 6783 6984 16077 Face 21371 6984 7010 16077 Face 21372 7010 6813 16077 Face 21373 7357 7303 16078 Face 21374 7303 7199 16078 Face 21375 7199 7281 16078 Face 21376 7281 7357 16078 Face 21377 7152 7129 16079 Face 21378 7129 7196 16079 Face 21379 7196 7267 16079 Face 21380 7267 7152 16079 Face 21381 7462 7437 16080 Face 21382 7437 7360 16080 Face 21383 7360 7398 16080 Face 21384 7398 7462 16080 Face 21385 7395 7449 16081 Face 21386 7449 7397 16081 Face 21387 7397 7356 16081 Face 21388 7356 7395 16081 Face 21389 7110 7150 16082 Face 21390 7150 7308 16082 Face 21391 7308 7261 16082 Face 21392 7261 7110 16082 Face 21393 6745 6774 16083 Face 21394 6774 6983 16083 Face 21395 6983 6952 16083 Face 21396 6952 6745 16083 Face 21397 6171 6223 16084 Face 21398 6223 6539 16084 Face 21399 6539 6475 16084 Face 21400 6475 6171 16084 Face 21401 5814 5834 16085 Face 21402 5834 6014 16085 Face 21403 6014 5988 16085 Face 21404 5988 5814 16085 Face 21405 5632 5415 16086 Face 21406 5415 5414 16086 Face 21407 5414 5635 16086 Face 21408 5635 5632 16086 Face 21409 5412 5409 16087 Face 21410 5409 5642 16087 Face 21411 5642 5637 16087 Face 21412 5637 5412 16087 Face 21413 5879 5886 16088 Face 21414 5886 6133 16088 Face 21415 6133 6122 16088 Face 21416 6122 5879 16088 Face 21417 5864 5875 16089 Face 21418 5875 6108 16089 Face 21419 6108 6072 16089 Face 21420 6072 5864 16089 Face 21421 6395 6404 16090 Face 21422 6404 6683 16090 Face 21423 6683 6692 16090 Face 21424 6692 6395 16090 Face 21425 6331 6384 16091 Face 21426 6384 6682 16091 Face 21427 6682 6634 16091 Face 21428 6634 6331 16091 Face 21429 6917 6891 16092 Face 21430 6891 7079 16092 Face 21431 7079 7102 16092 Face 21432 7102 6917 16092 Face 21433 6869 6913 16093 Face 21434 6913 7095 16093 Face 21435 7095 7043 16093 Face 21436 7043 6869 16093 Face 21437 7307 7310 16094 Face 21438 7310 7460 16094 Face 21439 7460 7439 16094 Face 21440 7439 7307 16094 Face 21441 7227 7289 16095 Face 21442 7289 7419 16095 Face 21443 7419 7373 16095 Face 21444 7373 7227 16095 Face 21445 7521 7579 16096 Face 21446 7579 7654 16096 Face 21447 7654 7582 16096 Face 21448 7582 7521 16096 Face 21449 7670 7718 16097 Face 21450 7718 7629 16097 Face 21451 7629 7593 16097 Face 21452 7593 7670 16097 Face 21453 7575 7580 16098 Face 21454 7580 7663 16098 Face 21455 7663 7665 16098 Face 21456 7665 7575 16098 Face 21457 7533 7475 16099 Face 21458 7475 7572 16099 Face 21459 7572 7660 16099 Face 21460 7660 7533 16099 Face 21461 7453 7435 16100 Face 21462 7435 7473 16100 Face 21463 7473 7529 16100 Face 21464 7529 7453 16100 Face 21465 7197 7243 16101 Face 21466 7243 7382 16101 Face 21467 7382 7338 16101 Face 21468 7338 7197 16101 Face 21469 7222 7187 16102 Face 21470 7187 7331 16102 Face 21471 7331 7374 16102 Face 21472 7374 7222 16102 Face 21473 7080 7065 16103 Face 21474 7065 6920 16103 Face 21475 6920 6927 16103 Face 21476 6927 7080 16103 Face 21477 6921 6882 16104 Face 21478 6882 7037 16104 Face 21479 7037 7074 16104 Face 21480 7074 6921 16104 Face 21481 6512 6428 16105 Face 21482 6428 6687 16105 Face 21483 6687 6733 16105 Face 21484 6733 6512 16105 Face 21485 5967 5961 16106 Face 21486 5961 6227 16106 Face 21487 6227 6215 16106 Face 21488 6215 5967 16106 Face 21489 5955 5917 16107 Face 21490 5917 6155 16107 Face 21491 6155 6220 16107 Face 21492 6220 5955 16107 Face 21493 5379 5671 16108 Face 21494 5671 5702 16108 Face 21495 5702 5331 16108 Face 21496 5331 5379 16108 Face 21497 5382 5398 16109 Face 21498 5398 5654 16109 Face 21499 5654 5668 16109 Face 21500 5668 5382 16109 Face 21501 7866 7816 16110 Face 21502 7816 7925 16110 Face 21503 7925 7981 16110 Face 21504 7981 7866 16110 Face 21505 7782 7778 16111 Face 21506 7778 7871 16111 Face 21507 7871 7900 16111 Face 21508 7900 7782 16111 Face 21509 5630 5417 16112 Face 21510 5417 5421 16112 Face 21511 5421 5625 16112 Face 21512 5625 5630 16112 Face 21513 5850 5844 16113 Face 21514 5844 6036 16113 Face 21515 6036 6052 16113 Face 21516 6052 5850 16113 Face 21517 5860 5846 16114 Face 21518 5846 6044 16114 Face 21519 6044 6064 16114 Face 21520 6064 5860 16114 Face 21521 6300 6282 16115 Face 21522 6282 6573 16115 Face 21523 6573 6556 16115 Face 21524 6556 6300 16115 Face 21525 6313 6292 16116 Face 21526 6292 6549 16116 Face 21527 6549 6564 16116 Face 21528 6564 6313 16116 Face 21529 6545 6277 16117 Face 21530 6277 6271 16117 Face 21531 6271 6529 16117 Face 21532 6529 6545 16117 Face 21533 6267 6204 16118 Face 21534 6204 6235 16118 Face 21535 6235 6251 16118 Face 21536 6251 6267 16118 Face 21537 6174 6180 16119 Face 21538 6180 6214 16119 Face 21539 6214 6213 16119 Face 21540 6213 6174 16119 Face 21541 6261 6460 16120 Face 21542 6460 6503 16120 Face 21543 6503 6246 16120 Face 21544 6246 6261 16120 Face 21545 7177 7165 16121 Face 21546 7165 6889 16121 Face 21547 6889 6894 16121 Face 21548 6894 7177 16121 Face 21549 7461 7450 16122 Face 21550 7450 7619 16122 Face 21551 7619 7611 16122 Face 21552 7611 7461 16122 Face 21553 7452 7464 16123 Face 21554 7464 7608 16123 Face 21555 7608 7630 16123 Face 21556 7630 7452 16123 Face 21557 8705 8717 16124 Face 21558 8717 8712 16124 Face 21559 8712 8688 16124 Face 21560 8688 8705 16124 Face 21561 8670 8726 16125 Face 21562 8726 8719 16125 Face 21563 8719 8668 16125 Face 21564 8668 8670 16125 Face 21565 6710 7088 16126 Face 21566 7088 7001 16126 Face 21567 7001 6641 16126 Face 21568 6641 6710 16126 Face 21569 5177 5164 16127 Face 21570 5164 5881 16127 Face 21571 5881 5868 16127 Face 21572 5868 5177 16127 Face 21573 7294 7600 16128 Face 21574 7600 7468 16128 Face 21575 7468 7142 16128 Face 21576 7142 7294 16128 Face 21577 7986 8132 16129 Face 21578 8132 8413 16129 Face 21579 8413 8399 16129 Face 21580 8399 7986 16129 Face 21581 8630 8640 16130 Face 21582 8640 8752 16130 Face 21583 8752 8805 16130 Face 21584 8805 8630 16130 Face 21585 8809 8779 16131 Face 21586 8779 8811 16131 Face 21587 8811 8823 16131 Face 21588 8823 8809 16131 Face 21589 8835 8831 16132 Face 21590 8831 8862 16132 Face 21591 8862 8849 16132 Face 21592 8849 8835 16132 Face 21593 8847 8854 16133 Face 21594 8854 8856 16133 Face 21595 8856 8871 16133 Face 21596 8871 8847 16133 Face 21597 8896 8864 16134 Face 21598 8864 8797 16134 Face 21599 8797 8839 16134 Face 21600 8839 8896 16134 Face 21601 8721 8647 16135 Face 21602 8647 8594 16135 Face 21603 8594 8645 16135 Face 21604 8645 8721 16135 Face 21605 8650 8618 16136 Face 21606 8618 8642 16136 Face 21607 8642 8675 16136 Face 21608 8675 8650 16136 Face 21609 8728 8682 16137 Face 21610 8682 8734 16137 Face 21611 8734 8773 16137 Face 21612 8773 8728 16137 Face 21613 8731 8673 16138 Face 21614 8673 8683 16138 Face 21615 8683 8764 16138 Face 21616 8764 8731 16138 Face 21617 8633 8591 16139 Face 21618 8591 8572 16139 Face 21619 8572 8609 16139 Face 21620 8609 8633 16139 Face 21621 8558 8509 16140 Face 21622 8509 8514 16140 Face 21623 8514 8573 16140 Face 21624 8573 8558 16140 Face 21625 8597 8530 16141 Face 21626 8530 8547 16141 Face 21627 8547 8610 16141 Face 21628 8610 8597 16141 Face 21629 8612 8564 16142 Face 21630 8564 8584 16142 Face 21631 8584 8636 16142 Face 21632 8636 8612 16142 Face 21633 8672 8622 16143 Face 21634 8622 8665 16143 Face 21635 8665 8714 16143 Face 21636 8714 8672 16143 Face 21637 8747 8730 16144 Face 21638 8730 8732 16144 Face 21639 8732 8767 16144 Face 21640 8767 8747 16144 Face 21641 8658 8702 16145 Face 21642 8702 8699 16145 Face 21643 8699 8638 16145 Face 21644 8638 8658 16145 Face 21645 8824 8802 16146 Face 21646 8802 8774 16146 Face 21647 8774 8925 16146 Face 21648 8925 8824 16146 Face 21649 8317 8256 16147 Face 21650 8256 8335 16147 Face 21651 8335 8378 16147 Face 21652 8378 8317 16147 Face 21653 8433 8461 16148 Face 21654 8461 8440 16148 Face 21655 8440 8374 16148 Face 21656 8374 8433 16148 Face 21657 8991 9006 16149 Face 21658 9006 8890 16149 Face 21659 8890 8908 16149 Face 21660 8908 8991 16149 Face 21661 8579 8510 16150 Face 21662 8510 8582 16150 Face 21663 8582 8613 16150 Face 21664 8613 8579 16150 Face 21665 8701 8744 16151 Face 21666 8744 8846 16151 Face 21667 8846 8756 16151 Face 21668 8756 8701 16151 Face 21669 8848 8902 16152 Face 21670 8902 8917 16152 Face 21671 8917 8903 16152 Face 21672 8903 8848 16152 Face 21673 8329 8338 16153 Face 21674 8338 8419 16153 Face 21675 8419 8396 16153 Face 21676 8396 8329 16153 Face 21677 8264 8248 16154 Face 21678 8248 8282 16154 Face 21679 8282 8276 16154 Face 21680 8276 8264 16154 Face 21681 8468 8372 16155 Face 21682 8372 8394 16155 Face 21683 8394 8488 16155 Face 21684 8488 8468 16155 Face 21685 8471 8467 16156 Face 21686 8467 8406 16156 Face 21687 8406 8385 16156 Face 21688 8385 8471 16156 Face 21689 8889 8883 16157 Face 21690 8883 8852 16157 Face 21691 8852 8819 16157 Face 21692 8819 8889 16157 Face 21693 9205 9101 16158 Face 21694 9101 9004 16158 Face 21695 9004 9256 16158 Face 21696 9256 9205 16158 Face 21697 8789 8822 16159 Face 21698 8822 8793 16159 Face 21699 8793 8803 16159 Face 21700 8803 8789 16159 Face 21701 8769 8754 16160 Face 21702 8754 8733 16160 Face 21703 8733 8735 16160 Face 21704 8735 8769 16160 Face 21705 7100 7271 16161 Face 21706 7271 7275 16161 Face 21707 7275 7096 16161 Face 21708 7096 7100 16161 Face 21709 7260 7098 16162 Face 21710 7098 7099 16162 Face 21711 7099 7256 16162 Face 21712 7256 7260 16162 Face 21713 7519 7404 16163 Face 21714 7404 7401 16163 Face 21715 7401 7517 16163 Face 21716 7517 7519 16163 Face 21717 7409 7528 16164 Face 21718 7528 7539 16164 Face 21719 7539 7414 16164 Face 21720 7414 7409 16164 Face 21721 6833 6965 16165 Face 21722 6965 6962 16165 Face 21723 6962 6827 16165 Face 21724 6827 6833 16165 Face 21725 6967 6836 16166 Face 21726 6836 6841 16166 Face 21727 6841 6968 16166 Face 21728 6968 6967 16166 Face 21729 6613 6726 16167 Face 21730 6726 6723 16167 Face 21731 6723 6601 16167 Face 21732 6601 6613 16167 Face 21733 6730 6615 16168 Face 21734 6615 6620 16168 Face 21735 6620 6732 16168 Face 21736 6732 6730 16168 Face 21737 6379 6461 16169 Face 21738 6461 6440 16169 Face 21739 6440 6361 16169 Face 21740 6361 6379 16169 Face 21741 6469 6386 16170 Face 21742 6386 6390 16170 Face 21743 6390 6478 16170 Face 21744 6478 6469 16170 Face 21745 6596 6397 16171 Face 21746 6397 6372 16171 Face 21747 6372 6590 16171 Face 21748 6590 6596 16171 Face 21749 6406 6600 16172 Face 21750 6600 6604 16172 Face 21751 6604 6415 16172 Face 21752 6415 6406 16172 Face 21753 7060 6835 16173 Face 21754 6835 6846 16173 Face 21755 6846 7077 16173 Face 21756 7077 7060 16173 Face 21757 6837 7057 16174 Face 21758 7057 7056 16174 Face 21759 7056 6839 16174 Face 21760 6839 6837 16174 Face 21761 7482 7323 16175 Face 21762 7323 7339 16175 Face 21763 7339 7511 16175 Face 21764 7511 7482 16175 Face 21765 7317 7478 16176 Face 21766 7478 7477 16176 Face 21767 7477 7316 16176 Face 21768 7316 7317 16176 Face 21769 7686 7599 16177 Face 21770 7599 7635 16177 Face 21771 7635 7730 16177 Face 21772 7730 7686 16177 Face 21773 7584 7675 16178 Face 21774 7675 7671 16178 Face 21775 7671 7581 16178 Face 21776 7581 7584 16178 Face 21777 7808 7776 16179 Face 21778 7776 7807 16179 Face 21779 7807 7840 16179 Face 21780 7840 7808 16179 Face 21781 7768 7802 16180 Face 21782 7802 7798 16180 Face 21783 7798 7762 16180 Face 21784 7762 7768 16180 Face 21785 7770 7791 16181 Face 21786 7791 7827 16181 Face 21787 7827 7795 16181 Face 21788 7795 7770 16181 Face 21789 7787 7761 16182 Face 21790 7761 7759 16182 Face 21791 7759 7783 16182 Face 21792 7783 7787 16182 Face 21793 7651 7732 16183 Face 21794 7732 7752 16183 Face 21795 7752 7662 16183 Face 21796 7662 7651 16183 Face 21797 7725 7645 16184 Face 21798 7645 7644 16184 Face 21799 7644 7723 16184 Face 21800 7723 7725 16184 Face 21801 3514 3636 16185 Face 21802 3636 3631 16185 Face 21803 3631 3504 16185 Face 21804 3504 3514 16185 Face 21805 3641 3523 16186 Face 21806 3523 3524 16186 Face 21807 3524 3644 16186 Face 21808 3644 3641 16186 Face 21809 3943 3787 16187 Face 21810 3787 3791 16187 Face 21811 3791 3942 16187 Face 21812 3942 3943 16187 Face 21813 3775 3941 16188 Face 21814 3941 3944 16188 Face 21815 3944 3771 16188 Face 21816 3771 3775 16188 Face 21817 3312 3395 16189 Face 21818 3395 3380 16189 Face 21819 3380 3293 16189 Face 21820 3293 3312 16189 Face 21821 3401 3316 16190 Face 21822 3316 3318 16190 Face 21823 3318 3402 16190 Face 21824 3402 3401 16190 Face 21825 3253 3276 16191 Face 21826 3276 3249 16191 Face 21827 3249 3217 16191 Face 21828 3217 3253 16191 Face 21829 3284 3259 16192 Face 21830 3259 3263 16192 Face 21831 3263 3287 16192 Face 21832 3287 3284 16192 Face 21833 3270 3236 16193 Face 21834 3236 3205 16193 Face 21835 3205 3237 16193 Face 21836 3237 3270 16193 Face 21837 3241 3277 16194 Face 21838 3277 3283 16194 Face 21839 3283 3245 16194 Face 21840 3245 3241 16194 Face 21841 3447 3354 16195 Face 21842 3354 3313 16195 Face 21843 3313 3411 16195 Face 21844 3411 3447 16195 Face 21845 3366 3458 16196 Face 21846 3458 3461 16196 Face 21847 3461 3370 16196 Face 21848 3370 3366 16196 Face 21849 3719 3560 16197 Face 21850 3560 3531 16197 Face 21851 3531 3704 16197 Face 21852 3704 3719 16197 Face 21853 3563 3725 16198 Face 21854 3725 3726 16198 Face 21855 3726 3564 16198 Face 21856 3564 3563 16198 Face 21857 4210 3980 16199 Face 21858 3980 3963 16199 Face 21859 3963 4198 16199 Face 21860 4198 4210 16199 Face 21861 3983 4208 16200 Face 21862 4208 4207 16200 Face 21863 4207 3984 16200 Face 21864 3984 3983 16200 Face 21865 4650 4443 16201 Face 21866 4443 4450 16201 Face 21867 4450 4675 16201 Face 21868 4675 4650 16201 Face 21869 4439 4641 16202 Face 21870 4641 4633 16202 Face 21871 4633 4435 16202 Face 21872 4435 4439 16202 Face 21873 4584 4667 16203 Face 21874 4667 4687 16203 Face 21875 4687 4606 16203 Face 21876 4606 4584 16203 Face 21877 4660 4576 16204 Face 21878 4576 4568 16204 Face 21879 4568 4657 16204 Face 21880 4657 4660 16204 Face 21881 4317 4425 16205 Face 21882 4425 4438 16205 Face 21883 4438 4321 16205 Face 21884 4321 4317 16205 Face 21885 4422 4314 16206 Face 21886 4314 4313 16206 Face 21887 4313 4418 16206 Face 21888 4418 4422 16206 Face 21889 4076 4212 16207 Face 21890 4212 4218 16207 Face 21891 4218 4079 16207 Face 21892 4079 4076 16207 Face 21893 4209 4074 16208 Face 21894 4074 4073 16208 Face 21895 4073 4205 16208 Face 21896 4205 4209 16208 Face 21897 3684 4070 16209 Face 21898 4070 4031 16209 Face 21899 4031 3649 16209 Face 21900 3649 3684 16209 Face 21901 3141 3404 16210 Face 21902 3404 3355 16210 Face 21903 3355 3112 16210 Face 21904 3112 3141 16210 Face 21905 3018 2991 16211 Face 21906 2991 2987 16211 Face 21907 2987 3033 16211 Face 21908 3033 3018 16211 Face 21909 3229 3145 16212 Face 21910 3145 3169 16212 Face 21911 3169 3254 16212 Face 21912 3254 3229 16212 Face 21913 3374 3285 16213 Face 21914 3285 3305 16213 Face 21915 3305 3394 16213 Face 21916 3394 3374 16213 Face 21917 3624 3493 16214 Face 21918 3493 3507 16214 Face 21919 3507 3632 16214 Face 21920 3632 3624 16214 Face 21921 4090 3770 16215 Face 21922 3770 3785 16215 Face 21923 3785 4092 16215 Face 21924 4092 4090 16215 Face 21925 5084 4618 16216 Face 21926 4618 4619 16216 Face 21927 4619 5083 16216 Face 21928 5083 5084 16216 Face 21929 5670 5377 16217 Face 21930 5377 5390 16217 Face 21931 5390 5682 16217 Face 21932 5682 5670 16217 Face 21933 6427 5964 16218 Face 21934 5964 5990 16218 Face 21935 5990 6484 16218 Face 21936 6484 6427 16218 Face 21937 7209 6940 16219 Face 21938 6940 6981 16219 Face 21939 6981 7295 16219 Face 21940 7295 7209 16219 Face 21941 7486 7367 16220 Face 21942 7367 7431 16220 Face 21943 7431 7537 16220 Face 21944 7537 7486 16220 Face 21945 7690 7610 16221 Face 21946 7610 7643 16221 Face 21947 7643 7727 16221 Face 21948 7727 7690 16221 Face 21949 7852 7751 16222 Face 21950 7751 7781 16222 Face 21951 7781 7873 16222 Face 21952 7873 7852 16222 Face 21953 8096 7987 16223 Face 21954 7987 8006 16223 Face 21955 8006 8114 16223 Face 21956 8114 8096 16223 Face 21957 7821 8029 16224 Face 21958 8029 8044 16224 Face 21959 8044 7839 16224 Face 21960 7839 7821 16224 Face 21961 7112 7513 16225 Face 21962 7513 7535 16225 Face 21963 7535 7140 16225 Face 21964 7140 7112 16225 Face 21965 6092 6639 16226 Face 21966 6639 6656 16226 Face 21967 6656 6101 16226 Face 21968 6101 6092 16226 Face 21969 5372 5722 16227 Face 21970 5722 5737 16227 Face 21971 5737 5383 16227 Face 21972 5383 5372 16227 Face 21973 4547 5030 16228 Face 21974 5030 5027 16228 Face 21975 5027 4508 16228 Face 21976 4508 4547 16228 Face 21977 3581 3976 16229 Face 21978 3976 3903 16229 Face 21979 3903 3506 16229 Face 21980 3506 3581 16229 Face 21981 3061 3290 16230 Face 21982 3290 3206 16230 Face 21983 3206 2978 16230 Face 21984 2978 3061 16230 Face 21985 3006 2938 16231 Face 21986 2938 2880 16231 Face 21987 2880 2933 16231 Face 21988 2933 3006 16231 Face 21989 3223 3142 16232 Face 21990 3142 3088 16232 Face 21991 3088 3175 16232 Face 21992 3175 3223 16232 Face 21993 3356 3272 16233 Face 21994 3272 3209 16233 Face 21995 3209 3294 16233 Face 21996 3294 3356 16233 Face 21997 3589 3470 16234 Face 21998 3470 3406 16234 Face 21999 3406 3530 16234 Face 22000 3530 3589 16234 Face 22001 4056 3729 16235 Face 22002 3729 3663 16235 Face 22003 3663 3998 16235 Face 22004 3998 4056 16235 Face 22005 5069 4556 16236 Face 22006 4556 4482 16236 Face 22007 4482 5038 16236 Face 22008 5038 5069 16236 Face 22009 5699 5394 16237 Face 22010 5394 5381 16237 Face 22011 5381 5715 16237 Face 22012 5715 5699 16237 Face 22013 6566 6023 16238 Face 22014 6023 6055 16238 Face 22015 6055 6623 16238 Face 22016 6623 6566 16238 Face 22017 7381 7041 16239 Face 22018 7041 7125 16239 Face 22019 7125 7458 16239 Face 22020 7458 7381 16239 Face 22021 7637 7507 16240 Face 22022 7507 7607 16240 Face 22023 7607 7731 16240 Face 22024 7731 7637 16240 Face 22025 7828 7743 16241 Face 22026 7743 7843 16241 Face 22027 7843 7912 16241 Face 22028 7912 7828 16241 Face 22029 7952 7867 16242 Face 22030 7867 7959 16242 Face 22031 7959 8054 16242 Face 22032 8054 7952 16242 Face 22033 8177 8105 16243 Face 22034 8105 8202 16243 Face 22035 8202 8241 16243 Face 22036 8241 8177 16243 Face 22037 7884 8120 16244 Face 22038 8120 8185 16244 Face 22039 8185 7943 16244 Face 22040 7943 7884 16244 Face 22041 7179 7585 16245 Face 22042 7585 7641 16245 Face 22043 7641 7242 16245 Face 22044 7242 7179 16245 Face 22045 6138 6705 16246 Face 22046 6705 6741 16246 Face 22047 6741 6163 16246 Face 22048 6163 6138 16246 Face 22049 5389 5749 16247 Face 22050 5749 5767 16247 Face 22051 5767 5373 16247 Face 22052 5373 5389 16247 Face 22053 4445 5007 16248 Face 22054 5007 4973 16248 Face 22055 4973 4394 16248 Face 22056 4394 4445 16248 Face 22057 3409 3816 16249 Face 22058 3816 3755 16249 Face 22059 3755 3361 16249 Face 22060 3361 3409 16249 Face 22061 2854 3092 16250 Face 22062 3092 3036 16250 Face 22063 3036 2811 16250 Face 22064 2811 2854 16250 Face 22065 2832 2799 16251 Face 22066 2799 2757 16251 Face 22067 2757 2792 16251 Face 22068 2792 2832 16251 Face 22069 3071 2969 16252 Face 22070 2969 2896 16252 Face 22071 2896 3007 16252 Face 22072 3007 3071 16252 Face 22073 3188 3109 16253 Face 22074 3109 3054 16253 Face 22075 3054 3136 16253 Face 22076 3136 3188 16253 Face 22077 3427 3298 16254 Face 22078 3298 3242 16254 Face 22079 3242 3383 16254 Face 22080 3383 3427 16254 Face 22081 3912 3569 16255 Face 22082 3569 3532 16255 Face 22083 3532 3873 16255 Face 22084 3873 3912 16255 Face 22085 4994 4413 16256 Face 22086 4413 4379 16256 Face 22087 4379 4976 16256 Face 22088 4976 4994 16256 Face 22089 5724 5363 16257 Face 22090 5363 5350 16257 Face 22091 5350 5732 16257 Face 22092 5732 5724 16257 Face 22093 6685 6095 16258 Face 22094 6095 6107 16258 Face 22095 6107 6716 16258 Face 22096 6716 6685 16258 Face 22097 7543 7191 16259 Face 22098 7191 7253 16259 Face 22099 7253 7598 16259 Face 22100 7598 7543 16259 Face 22101 7837 7699 16260 Face 22102 7699 7750 16260 Face 22103 7750 7882 16260 Face 22104 7882 7837 16260 Face 22105 8032 7947 16261 Face 22106 7947 7999 16261 Face 22107 7999 8103 16261 Face 22108 8103 8032 16261 Face 22109 8186 8085 16262 Face 22110 8085 8156 16262 Face 22111 8156 8229 16262 Face 22112 8229 8186 16262 Face 22113 8328 8291 16263 Face 22114 8291 8333 16263 Face 22115 8333 8364 16263 Face 22116 8364 8328 16263 Face 22117 8046 8268 16264 Face 22118 8268 8310 16264 Face 22119 8310 8122 16264 Face 22120 8122 8046 16264 Face 22121 7325 7722 16265 Face 22122 7722 7775 16265 Face 22123 7775 7363 16265 Face 22124 7363 7325 16265 Face 22125 6216 6791 16266 Face 22126 6791 6816 16266 Face 22127 6816 6255 16266 Face 22128 6255 6216 16266 Face 22129 5355 5781 16267 Face 22130 5781 5788 16267 Face 22131 5788 5345 16267 Face 22132 5345 5355 16267 Face 22133 4320 4930 16268 Face 22134 4930 4902 16268 Face 22135 4902 4300 16268 Face 22136 4300 4320 16268 Face 22137 4300 4301 16269 Face 22138 4301 3756 16269 Face 22139 3756 3755 16269 Face 22140 3755 4300 16269 Face 22141 5345 5344 16270 Face 22142 5344 4901 16270 Face 22143 4901 4902 16270 Face 22144 4902 5345 16270 Face 22145 6255 6254 16271 Face 22146 6254 5787 16271 Face 22147 5787 5788 16271 Face 22148 5788 6255 16271 Face 22149 7363 7362 16272 Face 22150 7362 6815 16272 Face 22151 6815 6816 16272 Face 22152 6816 7363 16272 Face 22153 8122 8112 16273 Face 22154 8112 7771 16273 Face 22155 7771 7775 16273 Face 22156 7775 8122 16273 Face 22157 8364 8362 16274 Face 22158 8362 8306 16274 Face 22159 8306 8310 16274 Face 22160 8310 8364 16274 Face 22161 8229 8226 16275 Face 22162 8226 8331 16275 Face 22163 8331 8333 16275 Face 22164 8333 8229 16275 Face 22165 8103 8101 16276 Face 22166 8101 8152 16276 Face 22167 8152 8156 16276 Face 22168 8156 8103 16276 Face 22169 7882 7880 16277 Face 22170 7880 7996 16277 Face 22171 7996 7999 16277 Face 22172 7999 7882 16277 Face 22173 7598 7597 16278 Face 22174 7597 7748 16278 Face 22175 7748 7750 16278 Face 22176 7750 7598 16278 Face 22177 6716 6715 16279 Face 22178 6715 7252 16279 Face 22179 7252 7253 16279 Face 22180 7253 6716 16279 Face 22181 5732 5731 16280 Face 22182 5731 6106 16280 Face 22183 6106 6107 16280 Face 22184 6107 5732 16280 Face 22185 4976 4975 16281 Face 22186 4975 5349 16281 Face 22187 5349 5350 16281 Face 22188 5350 4976 16281 Face 22189 3873 3874 16282 Face 22190 3874 4378 16282 Face 22191 4378 4379 16282 Face 22192 4379 3873 16282 Face 22193 3383 3385 16283 Face 22194 3385 3535 16283 Face 22195 3535 3532 16283 Face 22196 3532 3383 16283 Face 22197 3136 3137 16284 Face 22198 3137 3247 16284 Face 22199 3247 3242 16284 Face 22200 3242 3136 16284 Face 22201 3007 3011 16285 Face 22202 3011 3060 16285 Face 22203 3060 3054 16285 Face 22204 3054 3007 16285 Face 22205 2792 2796 16286 Face 22206 2796 2902 16286 Face 22207 2902 2896 16286 Face 22208 2896 2792 16286 Face 22209 2811 2815 16287 Face 22210 2815 2762 16287 Face 22211 2762 2757 16287 Face 22212 2757 2811 16287 Face 22213 3361 3362 16288 Face 22214 3362 3040 16288 Face 22215 3040 3036 16288 Face 22216 3036 3361 16288 Face 22217 4394 4320 16289 Face 22218 4320 3816 16289 Face 22219 3816 3903 16289 Face 22220 3903 4394 16289 Face 22221 5373 5355 16290 Face 22222 5355 4930 16290 Face 22223 4930 4973 16290 Face 22224 4973 5373 16290 Face 22225 6163 6216 16291 Face 22226 6216 5781 16291 Face 22227 5781 5767 16291 Face 22228 5767 6163 16291 Face 22229 7242 7325 16292 Face 22230 7325 6791 16292 Face 22231 6791 6741 16292 Face 22232 6741 7242 16292 Face 22233 7943 8046 16293 Face 22234 8046 7722 16293 Face 22235 7722 7641 16293 Face 22236 7641 7943 16293 Face 22237 8241 8328 16294 Face 22238 8328 8268 16294 Face 22239 8268 8185 16294 Face 22240 8185 8241 16294 Face 22241 8054 8186 16295 Face 22242 8186 8291 16295 Face 22243 8291 8202 16295 Face 22244 8202 8054 16295 Face 22245 7912 8032 16296 Face 22246 8032 8085 16296 Face 22247 8085 7959 16296 Face 22248 7959 7912 16296 Face 22249 7731 7837 16297 Face 22250 7837 7947 16297 Face 22251 7947 7843 16297 Face 22252 7843 7731 16297 Face 22253 7458 7543 16298 Face 22254 7543 7699 16298 Face 22255 7699 7607 16298 Face 22256 7607 7458 16298 Face 22257 6623 6685 16299 Face 22258 6685 7191 16299 Face 22259 7191 7125 16299 Face 22260 7125 6623 16299 Face 22261 5715 5724 16300 Face 22262 5724 6095 16300 Face 22263 6095 6055 16300 Face 22264 6055 5715 16300 Face 22265 5038 4994 16301 Face 22266 4994 5363 16301 Face 22267 5363 5381 16301 Face 22268 5381 5038 16301 Face 22269 3998 3912 16302 Face 22270 3912 4413 16302 Face 22271 4413 4482 16302 Face 22272 4482 3998 16302 Face 22273 3530 3427 16303 Face 22274 3427 3569 16303 Face 22275 3569 3663 16303 Face 22276 3663 3530 16303 Face 22277 3294 3188 16304 Face 22278 3188 3298 16304 Face 22279 3298 3406 16304 Face 22280 3406 3294 16304 Face 22281 3175 3071 16305 Face 22282 3071 3109 16305 Face 22283 3109 3209 16305 Face 22284 3209 3175 16305 Face 22285 2933 2832 16306 Face 22286 2832 2969 16306 Face 22287 2969 3088 16306 Face 22288 3088 2933 16306 Face 22289 2978 2854 16307 Face 22290 2854 2799 16307 Face 22291 2799 2880 16307 Face 22292 2880 2978 16307 Face 22293 3506 3409 16308 Face 22294 3409 3092 16308 Face 22295 3092 3206 16308 Face 22296 3206 3506 16308 Face 22297 4508 4445 16309 Face 22298 4445 3976 16309 Face 22299 3976 4031 16309 Face 22300 4031 4508 16309 Face 22301 5383 5389 16310 Face 22302 5389 5007 16310 Face 22303 5007 5027 16310 Face 22304 5027 5383 16310 Face 22305 6101 6138 16311 Face 22306 6138 5749 16311 Face 22307 5749 5737 16311 Face 22308 5737 6101 16311 Face 22309 7140 7179 16312 Face 22310 7179 6705 16312 Face 22311 6705 6656 16312 Face 22312 6656 7140 16312 Face 22313 7839 7884 16313 Face 22314 7884 7585 16313 Face 22315 7585 7535 16313 Face 22316 7535 7839 16313 Face 22317 8114 8177 16314 Face 22318 8177 8120 16314 Face 22319 8120 8044 16314 Face 22320 8044 8114 16314 Face 22321 7873 7952 16315 Face 22322 7952 8105 16315 Face 22323 8105 8006 16315 Face 22324 8006 7873 16315 Face 22325 7727 7828 16316 Face 22326 7828 7867 16316 Face 22327 7867 7781 16316 Face 22328 7781 7727 16316 Face 22329 7537 7637 16317 Face 22330 7637 7743 16317 Face 22331 7743 7643 16317 Face 22332 7643 7537 16317 Face 22333 7295 7381 16318 Face 22334 7381 7507 16318 Face 22335 7507 7431 16318 Face 22336 7431 7295 16318 Face 22337 6484 6566 16319 Face 22338 6566 7041 16319 Face 22339 7041 6981 16319 Face 22340 6981 6484 16319 Face 22341 5682 5699 16320 Face 22342 5699 6023 16320 Face 22343 6023 5990 16320 Face 22344 5990 5682 16320 Face 22345 5083 5069 16321 Face 22346 5069 5394 16321 Face 22347 5394 5390 16321 Face 22348 5390 5083 16321 Face 22349 4092 4056 16322 Face 22350 4056 4556 16322 Face 22351 4556 4619 16322 Face 22352 4619 4092 16322 Face 22353 3632 3589 16323 Face 22354 3589 3729 16323 Face 22355 3729 3785 16323 Face 22356 3785 3632 16323 Face 22357 3394 3356 16324 Face 22358 3356 3470 16324 Face 22359 3470 3507 16324 Face 22360 3507 3394 16324 Face 22361 3254 3223 16325 Face 22362 3223 3272 16325 Face 22363 3272 3305 16325 Face 22364 3305 3254 16325 Face 22365 3033 3006 16326 Face 22366 3006 3142 16326 Face 22367 3142 3169 16326 Face 22368 3169 3033 16326 Face 22369 3112 3061 16327 Face 22370 3061 2938 16327 Face 22371 2938 2987 16327 Face 22372 2987 3112 16327 Face 22373 3649 3581 16328 Face 22374 3581 3290 16328 Face 22375 3290 3355 16328 Face 22376 3355 3649 16328 Face 22377 4522 4547 16329 Face 22378 4547 4070 16329 Face 22379 4070 4080 16329 Face 22380 4080 4522 16329 Face 22381 5359 5372 16330 Face 22382 5372 5030 16330 Face 22383 5030 5013 16330 Face 22384 5013 5359 16330 Face 22385 6070 6092 16331 Face 22386 6092 5722 16331 Face 22387 5722 5703 16331 Face 22388 5703 6070 16331 Face 22389 7097 7112 16332 Face 22390 7112 6639 16332 Face 22391 6639 6631 16332 Face 22392 6631 7097 16332 Face 22393 7800 7821 16333 Face 22394 7821 7513 16333 Face 22395 7513 7495 16333 Face 22396 7495 7800 16333 Face 22397 8078 8096 16334 Face 22398 8096 8029 16334 Face 22399 8029 8009 16334 Face 22400 8009 8078 16334 Face 22401 7847 7852 16335 Face 22402 7852 7987 16335 Face 22403 7987 7979 16335 Face 22404 7979 7847 16335 Face 22405 7679 7690 16336 Face 22406 7690 7751 16336 Face 22407 7751 7741 16336 Face 22408 7741 7679 16336 Face 22409 7474 7486 16337 Face 22410 7486 7610 16337 Face 22411 7610 7594 16337 Face 22412 7594 7474 16337 Face 22413 7181 7209 16338 Face 22414 7209 7367 16338 Face 22415 7367 7354 16338 Face 22416 7354 7181 16338 Face 22417 6393 6427 16339 Face 22418 6427 6940 16339 Face 22419 6940 6916 16339 Face 22420 6916 6393 16339 Face 22421 5653 5670 16340 Face 22422 5670 5964 16340 Face 22423 5964 5949 16340 Face 22424 5949 5653 16340 Face 22425 5055 5084 16341 Face 22426 5084 5377 16341 Face 22427 5377 5361 16341 Face 22428 5361 5055 16341 Face 22429 4061 4090 16342 Face 22430 4090 4618 16342 Face 22431 4618 4560 16342 Face 22432 4560 4061 16342 Face 22433 3586 3624 16343 Face 22434 3624 3770 16343 Face 22435 3770 3739 16343 Face 22436 3739 3586 16343 Face 22437 3335 3374 16344 Face 22438 3374 3493 16344 Face 22439 3493 3457 16344 Face 22440 3457 3335 16344 Face 22441 3199 3229 16345 Face 22442 3229 3285 16345 Face 22443 3285 3251 16345 Face 22444 3251 3199 16345 Face 22445 3001 3018 16346 Face 22446 3018 3145 16346 Face 22447 3145 3122 16346 Face 22448 3122 3001 16346 Face 22449 3178 3141 16347 Face 22450 3141 2991 16347 Face 22451 2991 3004 16347 Face 22452 3004 3178 16347 Face 22453 3718 3684 16348 Face 22454 3684 3404 16348 Face 22455 3404 3431 16348 Face 22456 3431 3718 16348 Face 22457 3941 3943 16349 Face 22458 3943 4074 16349 Face 22459 4074 4076 16349 Face 22460 4076 3941 16349 Face 22461 4212 4209 16350 Face 22462 4209 4314 16350 Face 22463 4314 4317 16350 Face 22464 4317 4212 16350 Face 22465 4425 4422 16351 Face 22466 4422 4576 16351 Face 22467 4576 4584 16351 Face 22468 4584 4425 16351 Face 22469 4667 4660 16352 Face 22470 4660 4641 16352 Face 22471 4641 4650 16352 Face 22472 4650 4667 16352 Face 22473 4443 4439 16353 Face 22474 4439 4208 16353 Face 22475 4208 4210 16353 Face 22476 4210 4443 16353 Face 22477 3980 3983 16354 Face 22478 3983 3725 16354 Face 22479 3725 3719 16354 Face 22480 3719 3980 16354 Face 22481 3560 3563 16355 Face 22482 3563 3458 16355 Face 22483 3458 3447 16355 Face 22484 3447 3560 16355 Face 22485 3354 3366 16356 Face 22486 3366 3277 16356 Face 22487 3277 3270 16356 Face 22488 3270 3354 16356 Face 22489 3236 3241 16357 Face 22490 3241 3259 16357 Face 22491 3259 3253 16357 Face 22492 3253 3236 16357 Face 22493 3276 3284 16358 Face 22494 3284 3316 16358 Face 22495 3316 3312 16358 Face 22496 3312 3276 16358 Face 22497 3395 3401 16359 Face 22498 3401 3523 16359 Face 22499 3523 3514 16359 Face 22500 3514 3395 16359 Face 22501 3787 3775 16360 Face 22502 3775 3636 16360 Face 22503 3636 3641 16360 Face 22504 3641 3787 16360 Face 22505 7528 7519 16361 Face 22506 7519 7645 16361 Face 22507 7645 7651 16361 Face 22508 7651 7528 16361 Face 22509 7732 7725 16362 Face 22510 7725 7761 16362 Face 22511 7761 7770 16362 Face 22512 7770 7732 16362 Face 22513 7791 7787 16363 Face 22514 7787 7802 16363 Face 22515 7802 7808 16363 Face 22516 7808 7791 16363 Face 22517 7776 7768 16364 Face 22518 7768 7675 16364 Face 22519 7675 7686 16364 Face 22520 7686 7776 16364 Face 22521 7599 7584 16365 Face 22522 7584 7478 16365 Face 22523 7478 7482 16365 Face 22524 7482 7599 16365 Face 22525 7323 7317 16366 Face 22526 7317 7057 16366 Face 22527 7057 7060 16366 Face 22528 7060 7323 16366 Face 22529 6835 6837 16367 Face 22530 6837 6600 16367 Face 22531 6600 6596 16367 Face 22532 6596 6835 16367 Face 22533 6397 6406 16368 Face 22534 6406 6386 16368 Face 22535 6386 6379 16368 Face 22536 6379 6397 16368 Face 22537 6461 6469 16369 Face 22538 6469 6615 16369 Face 22539 6615 6613 16369 Face 22540 6613 6461 16369 Face 22541 6726 6730 16370 Face 22542 6730 6836 16370 Face 22543 6836 6833 16370 Face 22544 6833 6726 16370 Face 22545 6965 6967 16371 Face 22546 6967 7098 16371 Face 22547 7098 7100 16371 Face 22548 7100 6965 16371 Face 22549 7404 7409 16372 Face 22550 7409 7271 16372 Face 22551 7271 7260 16372 Face 22552 7260 7404 16372 Face 22553 7792 7967 16373 Face 22554 7967 8161 16373 Face 22555 8161 7951 16373 Face 22556 7951 7792 16373 Face 22557 8735 8705 16374 Face 22558 8705 8927 16374 Face 22559 8927 8965 16374 Face 22560 8965 8735 16374 Face 22561 8803 8769 16375 Face 22562 8769 8993 16375 Face 22563 8993 9018 16375 Face 22564 9018 8803 16375 Face 22565 8932 8889 16376 Face 22566 8889 9101 16376 Face 22567 9101 9172 16376 Face 22568 9172 8932 16376 Face 22569 8903 8923 16377 Face 22570 8923 9130 16377 Face 22571 9130 9036 16377 Face 22572 9036 8903 16377 Face 22573 8433 8378 16378 Face 22574 8378 8455 16378 Face 22575 8455 8506 16378 Face 22576 8506 8433 16378 Face 22577 8335 8304 16379 Face 22578 8304 8406 16379 Face 22579 8406 8425 16379 Face 22580 8425 8335 16379 Face 22581 8275 8264 16380 Face 22582 8264 8372 16380 Face 22583 8372 8385 16380 Face 22584 8385 8275 16380 Face 22585 8276 8329 16381 Face 22586 8329 8423 16381 Face 22587 8423 8394 16381 Face 22588 8394 8276 16381 Face 22589 8783 8848 16382 Face 22590 8848 8961 16382 Face 22591 8961 8846 16382 Face 22592 8846 8783 16382 Face 22593 8396 8487 16383 Face 22594 8487 8510 16383 Face 22595 8510 8456 16383 Face 22596 8456 8396 16383 Face 22597 8688 8686 16384 Face 22598 8686 8890 16384 Face 22599 8890 8905 16384 Face 22600 8905 8688 16384 Face 22601 8273 8317 16385 Face 22602 8317 8374 16385 Face 22603 8374 8344 16385 Face 22604 8344 8273 16385 Face 22605 8668 8658 16386 Face 22606 8658 8824 16386 Face 22607 8824 8826 16386 Face 22608 8826 8668 16386 Face 22609 8681 8670 16387 Face 22610 8670 8830 16387 Face 22611 8830 8869 16387 Face 22612 8869 8681 16387 Face 22613 8908 8771 16388 Face 22614 8771 8907 16388 Face 22615 8907 8952 16388 Face 22616 8952 8908 16388 Face 22617 8750 8714 16389 Face 22618 8714 8747 16389 Face 22619 8747 8780 16389 Face 22620 8780 8750 16389 Face 22621 8664 8636 16390 Face 22622 8636 8672 16390 Face 22623 8672 8713 16390 Face 22624 8713 8664 16390 Face 22625 8596 8573 16391 Face 22626 8573 8597 16391 Face 22627 8597 8631 16391 Face 22628 8631 8596 16391 Face 22629 8609 8626 16392 Face 22630 8626 8720 16392 Face 22631 8720 8683 16392 Face 22632 8683 8609 16392 Face 22633 8764 8798 16393 Face 22634 8798 8853 16393 Face 22635 8853 8813 16393 Face 22636 8813 8764 16393 Face 22637 8818 8858 16394 Face 22638 8858 8808 16394 Face 22639 8808 8773 16394 Face 22640 8773 8818 16394 Face 22641 8728 8765 16395 Face 22642 8765 8718 16395 Face 22643 8718 8675 16395 Face 22644 8675 8728 16395 Face 22645 8884 8839 16396 Face 22646 8839 8721 16396 Face 22647 8721 8758 16396 Face 22648 8758 8884 16396 Face 22649 8894 8871 16397 Face 22650 8871 8896 16397 Face 22651 8896 8922 16397 Face 22652 8922 8894 16397 Face 22653 8840 8823 16398 Face 22654 8823 8835 16398 Face 22655 8835 8872 16398 Face 22656 8872 8840 16398 Face 22657 8410 8399 16399 Face 22658 8399 8630 16399 Face 22659 8630 8646 16399 Face 22660 8646 8410 16399 Face 22661 7470 7468 16400 Face 22662 7468 7986 16400 Face 22663 7986 7992 16400 Face 22664 7992 7470 16400 Face 22665 7142 7141 16401 Face 22666 7141 6999 16401 Face 22667 6999 7001 16401 Face 22668 7001 7142 16401 Face 22669 6641 6638 16402 Face 22670 6638 5867 16402 Face 22671 5867 5868 16402 Face 22672 5868 6641 16402 Face 22673 8755 8786 16403 Face 22674 8786 8767 16403 Face 22675 8767 8745 16403 Face 22676 8745 8755 16403 Face 22677 8558 8581 16404 Face 22678 8581 8572 16404 Face 22679 8572 8552 16404 Face 22680 8552 8558 16404 Face 22681 8650 8676 16405 Face 22682 8676 8645 16405 Face 22683 8645 8644 16405 Face 22684 8644 8650 16405 Face 22685 7175 7469 16406 Face 22686 7469 7464 16406 Face 22687 7464 7177 16406 Face 22688 7177 7175 16406 Face 22689 6894 6529 16407 Face 22690 6529 6520 16407 Face 22691 6520 6890 16407 Face 22692 6890 6894 16407 Face 22693 6881 6506 16408 Face 22694 6506 6503 16408 Face 22695 6503 6873 16408 Face 22696 6873 6881 16408 Face 22697 7466 7170 16409 Face 22698 7170 7159 16409 Face 22699 7159 7461 16409 Face 22700 7461 7466 16409 Face 22701 6044 6052 16410 Face 22702 6052 6300 16410 Face 22703 6300 6292 16410 Face 22704 6292 6044 16410 Face 22705 5625 5628 16411 Face 22706 5628 5850 16411 Face 22707 5850 5846 16411 Face 22708 5846 5625 16411 Face 22709 8001 7871 16412 Face 22710 7871 7845 16412 Face 22711 7845 7975 16412 Face 22712 7975 8001 16412 Face 22713 8066 7925 16413 Face 22714 7925 7900 16413 Face 22715 7900 8033 16413 Face 22716 8033 8066 16413 Face 22717 8208 8080 16414 Face 22718 8080 7981 16414 Face 22719 7981 8141 16414 Face 22720 8141 8208 16414 Face 22721 5671 5668 16415 Face 22722 5668 5955 16415 Face 22723 5955 5961 16415 Face 22724 5961 5671 16415 Face 22725 6740 6733 16416 Face 22726 6733 6921 16416 Face 22727 6921 6927 16416 Face 22728 6927 6740 16416 Face 22729 7080 7074 16417 Face 22730 7074 7222 16417 Face 22731 7222 7243 16417 Face 22732 7243 7080 16417 Face 22733 7592 7629 16418 Face 22734 7629 7710 16418 Face 22735 7710 7663 16418 Face 22736 7663 7592 16418 Face 22737 7419 7439 16419 Face 22738 7439 7521 16419 Face 22739 7521 7501 16419 Face 22740 7501 7419 16419 Face 22741 7095 7102 16420 Face 22742 7102 7307 16420 Face 22743 7307 7289 16420 Face 22744 7289 7095 16420 Face 22745 6682 6692 16421 Face 22746 6692 6917 16421 Face 22747 6917 6913 16421 Face 22748 6913 6682 16421 Face 22749 6108 6122 16422 Face 22750 6122 6395 16422 Face 22751 6395 6384 16422 Face 22752 6384 6108 16422 Face 22753 5635 5637 16423 Face 22754 5637 5879 16423 Face 22755 5879 5875 16423 Face 22756 5875 5635 16423 Face 22757 6220 6512 16424 Face 22758 6512 6524 16424 Face 22759 6524 6227 16424 Face 22760 6227 6220 16424 Face 22761 7374 7480 16425 Face 22762 7480 7473 16425 Face 22763 7473 7382 16425 Face 22764 7382 7374 16425 Face 22765 7709 7626 16426 Face 22766 7626 7601 16426 Face 22767 7601 7665 16426 Face 22768 7665 7709 16426 Face 22769 6697 6706 16427 Face 22770 6706 6578 16427 Face 22771 6578 6571 16427 Face 22772 6571 6697 16427 Face 22773 6243 6244 16428 Face 22774 6244 6369 16428 Face 22775 6369 6383 16428 Face 22776 6383 6243 16428 Face 22777 7475 7296 16429 Face 22778 7296 7282 16429 Face 22779 7282 7453 16429 Face 22780 7453 7475 16429 Face 22781 7073 6866 16430 Face 22782 6866 6854 16430 Face 22783 6854 7051 16430 Face 22784 7051 7073 16430 Face 22785 6502 6495 16431 Face 22786 6495 6452 16431 Face 22787 6452 6463 16431 Face 22788 6463 6502 16431 Face 22789 6563 6560 16432 Face 22790 6560 6537 16432 Face 22791 6537 6541 16432 Face 22792 6541 6563 16432 Face 22793 6445 6530 16433 Face 22794 6530 6528 16433 Face 22795 6528 6442 16433 Face 22796 6442 6445 16433 Face 22797 6343 6218 16434 Face 22798 6218 6195 16434 Face 22799 6195 6334 16434 Face 22800 6334 6343 16434 Face 22801 6418 6368 16435 Face 22802 6368 6359 16435 Face 22803 6359 6396 16435 Face 22804 6396 6418 16435 Face 22805 6340 6296 16436 Face 22806 6296 6354 16436 Face 22807 6354 6387 16436 Face 22808 6387 6340 16436 Face 22809 6075 6053 16437 Face 22810 6053 6177 16437 Face 22811 6177 6219 16437 Face 22812 6219 6075 16437 Face 22813 5891 5889 16438 Face 22814 5889 5958 16438 Face 22815 5958 5972 16438 Face 22816 5972 5891 16438 Face 22817 5759 5782 16439 Face 22818 5782 5847 16439 Face 22819 5847 5836 16439 Face 22820 5836 5759 16439 Face 22821 5738 5773 16440 Face 22822 5773 5762 16440 Face 22823 5762 5727 16440 Face 22824 5727 5738 16440 Face 22825 6883 6728 16441 Face 22826 6728 6738 16441 Face 22827 6738 6920 16441 Face 22828 6920 6883 16441 Face 22829 6739 6627 16442 Face 22830 6627 6694 16442 Face 22831 6694 6814 16442 Face 22832 6814 6739 16442 Face 22833 6599 6558 16443 Face 22834 6558 6592 16443 Face 22835 6592 6663 16443 Face 22836 6663 6599 16443 Face 22837 6575 6552 16444 Face 22838 6552 6543 16444 Face 22839 6543 6567 16444 Face 22840 6567 6575 16444 Face 22841 6456 6433 16445 Face 22842 6433 6513 16445 Face 22843 6513 6540 16445 Face 22844 6540 6456 16445 Face 22845 6185 6164 16446 Face 22846 6164 6316 16446 Face 22847 6316 6338 16446 Face 22848 6338 6185 16446 Face 22849 6090 6074 16447 Face 22850 6074 6098 16447 Face 22851 6098 6112 16447 Face 22852 6112 6090 16447 Face 22853 5934 5928 16448 Face 22854 5928 6021 16448 Face 22855 6021 6029 16448 Face 22856 6029 5934 16448 Face 22857 5610 5607 16449 Face 22858 5607 5801 16449 Face 22859 5801 5806 16449 Face 22860 5806 5610 16449 Face 22861 6022 6042 16450 Face 22862 6042 6110 16450 Face 22863 6110 6099 16450 Face 22864 6099 6022 16450 Face 22865 5873 5885 16451 Face 22866 5885 5970 16451 Face 22867 5970 5947 16451 Face 22868 5947 5873 16451 Face 22869 5594 5595 16452 Face 22870 5595 5766 16452 Face 22871 5766 5758 16452 Face 22872 5758 5594 16452 Face 22873 6444 6441 16453 Face 22874 6441 6509 16453 Face 22875 6509 6485 16453 Face 22876 6485 6444 16453 Face 22877 5937 5878 16454 Face 22878 5878 5870 16454 Face 22879 5870 5910 16454 Face 22880 5910 5937 16454 Face 22881 6281 6312 16455 Face 22882 6312 6263 16455 Face 22883 6263 6207 16455 Face 22884 6207 6281 16455 Face 22885 6001 6116 16456 Face 22886 6116 6151 16456 Face 22887 6151 6027 16456 Face 22888 6027 6001 16456 Face 22889 7820 7915 16457 Face 22890 7915 7918 16457 Face 22891 7918 7817 16457 Face 22892 7817 7820 16457 Face 22893 7823 7923 16458 Face 22894 7923 7932 16458 Face 22895 7932 7829 16458 Face 22896 7829 7823 16458 Face 22897 7568 7695 16459 Face 22898 7695 7693 16459 Face 22899 7693 7570 16459 Face 22900 7570 7568 16459 Face 22901 7573 7700 16460 Face 22902 7700 7708 16460 Face 22903 7708 7576 16460 Face 22904 7576 7573 16460 Face 22905 7224 7425 16461 Face 22906 7425 7428 16461 Face 22907 7428 7216 16461 Face 22908 7216 7224 16461 Face 22909 7221 7430 16462 Face 22910 7430 7434 16462 Face 22911 7434 7226 16462 Face 22912 7226 7221 16462 Face 22913 6939 7062 16463 Face 22914 7062 7055 16463 Face 22915 7055 6934 16463 Face 22916 6934 6939 16463 Face 22917 6930 7053 16464 Face 22918 7053 7058 16464 Face 22919 7058 6929 16464 Face 22920 6929 6930 16464 Face 22921 6670 6797 16465 Face 22922 6797 6792 16465 Face 22923 6792 6668 16465 Face 22924 6668 6670 16465 Face 22925 6664 6790 16466 Face 22926 6790 6788 16466 Face 22927 6788 6659 16466 Face 22928 6659 6664 16466 Face 22929 6348 6523 16467 Face 22930 6523 6515 16467 Face 22931 6515 6336 16467 Face 22932 6336 6348 16467 Face 22933 6323 6505 16468 Face 22934 6505 6501 16468 Face 22935 6501 6318 16468 Face 22936 6318 6323 16468 Face 22937 7236 7248 16469 Face 22938 7248 7433 16469 Face 22939 7433 7427 16469 Face 22940 7427 7236 16469 Face 22941 7662 7683 16470 Face 22942 7683 7557 16470 Face 22943 7557 7539 16470 Face 22944 7539 7662 16470 Face 22945 7795 7846 16471 Face 22946 7846 7785 16471 Face 22947 7785 7752 16471 Face 22948 7752 7795 16471 Face 22949 7840 7886 16472 Face 22950 7886 7879 16472 Face 22951 7879 7827 16472 Face 22952 7827 7840 16472 Face 22953 7730 7804 16473 Face 22954 7804 7861 16473 Face 22955 7861 7807 16473 Face 22956 7807 7730 16473 Face 22957 7511 7559 16474 Face 22958 7559 7707 16474 Face 22959 7707 7635 16474 Face 22960 7635 7511 16474 Face 22961 7077 7107 16475 Face 22962 7107 7384 16475 Face 22963 7384 7339 16475 Face 22964 7339 7077 16475 Face 22965 6590 6569 16476 Face 22966 6569 6855 16476 Face 22967 6855 6846 16476 Face 22968 6846 6590 16476 Face 22969 6361 6327 16477 Face 22970 6327 6344 16477 Face 22971 6344 6372 16477 Face 22972 6372 6361 16477 Face 22973 6601 6585 16478 Face 22974 6585 6403 16478 Face 22975 6403 6440 16478 Face 22976 6440 6601 16478 Face 22977 6827 6819 16479 Face 22978 6819 6709 16479 Face 22979 6709 6723 16479 Face 22980 6723 6827 16479 Face 22981 7096 7089 16480 Face 22982 7089 6961 16480 Face 22983 6961 6962 16480 Face 22984 6962 7096 16480 Face 22985 7059 7056 16481 Face 22986 7056 7316 16481 Face 22987 7316 7319 16481 Face 22988 7319 7059 16481 Face 22989 7479 7477 16482 Face 22990 7477 7581 16482 Face 22991 7581 7586 16482 Face 22992 7586 7479 16482 Face 22993 7678 7671 16483 Face 22994 7671 7762 16483 Face 22995 7762 7764 16483 Face 22996 7764 7678 16483 Face 22997 7799 7798 16484 Face 22998 7798 7783 16484 Face 22999 7783 7784 16484 Face 23000 7784 7799 16484 Face 23001 7763 7759 16485 Face 23002 7759 7723 16485 Face 23003 7723 7728 16485 Face 23004 7728 7763 16485 Face 23005 7648 7644 16486 Face 23006 7644 7517 16486 Face 23007 7517 7522 16486 Face 23008 7522 7648 16486 Face 23009 7406 7401 16487 Face 23010 7401 7256 16487 Face 23011 7256 7264 16487 Face 23012 7264 7406 16487 Face 23013 7101 7099 16488 Face 23014 7099 6968 16488 Face 23015 6968 6970 16488 Face 23016 6970 7101 16488 Face 23017 6840 6841 16489 Face 23018 6841 6732 16489 Face 23019 6732 6731 16489 Face 23020 6731 6840 16489 Face 23021 6619 6620 16490 Face 23022 6620 6478 16490 Face 23023 6478 6477 16490 Face 23024 6477 6619 16490 Face 23025 6389 6390 16491 Face 23026 6390 6415 16491 Face 23027 6415 6414 16491 Face 23028 6414 6389 16491 Face 23029 6603 6604 16492 Face 23030 6604 6839 16492 Face 23031 6839 6838 16492 Face 23032 6838 6603 16492 Face 23033 7806 7883 16493 Face 23034 7883 7906 16493 Face 23035 7906 7814 16493 Face 23036 7814 7806 16493 Face 23037 6871 6554 16494 Face 23038 6554 6545 16494 Face 23039 6545 6889 16494 Face 23040 6889 6871 16494 Face 23041 7348 7169 16495 Face 23042 7169 7022 16495 Face 23043 7022 7467 16495 Face 23044 7467 7348 16495 Face 23045 7788 7836 16496 Face 23046 7836 7670 16496 Face 23047 7670 7654 16496 Face 23048 7654 7788 16496 Face 23049 7664 7579 16497 Face 23050 7579 7460 16497 Face 23051 7460 7493 16497 Face 23052 7493 7664 16497 Face 23053 8731 8775 16498 Face 23054 8775 8734 16498 Face 23055 8734 8693 16498 Face 23056 8693 8731 16498 Face 23057 8652 8682 16499 Face 23058 8682 8642 16499 Face 23059 8642 8606 16499 Face 23060 8606 8652 16499 Face 23061 8544 8574 16500 Face 23062 8574 8618 16500 Face 23063 8618 8607 16500 Face 23064 8607 8544 16500 Face 23065 8521 8525 16501 Face 23066 8525 8601 16501 Face 23067 8601 8594 16501 Face 23068 8594 8521 16501 Face 23069 8580 8647 16502 Face 23070 8647 8797 16502 Face 23071 8797 8724 16502 Face 23072 8724 8580 16502 Face 23073 8820 8864 16503 Face 23074 8864 8856 16503 Face 23075 8856 8851 16503 Face 23076 8851 8820 16503 Face 23077 8887 8877 16504 Face 23078 8877 8854 16504 Face 23079 8854 8862 16504 Face 23080 8862 8887 16504 Face 23081 8867 8831 16505 Face 23082 8831 8811 16505 Face 23083 8811 8806 16505 Face 23084 8806 8867 16505 Face 23085 8666 8738 16506 Face 23086 8738 8779 16506 Face 23087 8779 8752 16506 Face 23088 8752 8666 16506 Face 23089 7849 7948 16507 Face 23090 7948 8123 16507 Face 23091 8123 8010 16507 Face 23092 8010 7849 16507 Face 23093 8167 8231 16508 Face 23094 8231 8284 16508 Face 23095 8284 8205 16508 Face 23096 8205 8167 16508 Face 23097 8270 8353 16509 Face 23098 8353 8427 16509 Face 23099 8427 8376 16509 Face 23100 8376 8270 16509 Face 23101 8458 8500 16510 Face 23102 8500 8585 16510 Face 23103 8585 8535 16510 Face 23104 8535 8458 16510 Face 23105 8698 8730 16511 Face 23106 8730 8665 16511 Face 23107 8665 8619 16511 Face 23108 8619 8698 16511 Face 23109 8566 8622 16512 Face 23110 8622 8584 16512 Face 23111 8584 8505 16512 Face 23112 8505 8566 16512 Face 23113 8454 8481 16513 Face 23114 8481 8564 16513 Face 23115 8564 8547 16513 Face 23116 8547 8454 16513 Face 23117 8445 8530 16514 Face 23118 8530 8514 16514 Face 23119 8514 8444 16514 Face 23120 8444 8445 16514 Face 23121 8473 8452 16515 Face 23122 8452 8509 16515 Face 23123 8509 8519 16515 Face 23124 8519 8473 16515 Face 23125 8065 8201 16516 Face 23126 8201 8256 16516 Face 23127 8256 8197 16516 Face 23128 8197 8065 16516 Face 23129 8708 8654 16517 Face 23130 8654 8637 16517 Face 23131 8637 8697 16517 Face 23132 8697 8708 16517 Face 23133 8633 8673 16518 Face 23134 8673 8684 16518 Face 23135 8684 8696 16518 Face 23136 8696 8633 16518 Face 23137 8649 8592 16519 Face 23138 8592 8605 16519 Face 23139 8605 8674 16519 Face 23140 8674 8649 16519 Face 23141 8550 8513 16520 Face 23142 8513 8518 16520 Face 23143 8518 8560 16520 Face 23144 8560 8550 16520 Face 23145 8472 8422 16521 Face 23146 8422 8429 16521 Face 23147 8429 8477 16521 Face 23148 8477 8472 16521 Face 23149 8345 8239 16522 Face 23150 8239 8225 16522 Face 23151 8225 8347 16522 Face 23152 8347 8345 16522 Face 23153 8763 8787 16523 Face 23154 8787 8743 16523 Face 23155 8743 8723 16523 Face 23156 8723 8763 16523 Face 23157 8759 8680 16524 Face 23158 8680 8569 16524 Face 23159 8569 8678 16524 Face 23160 8678 8759 16524 Face 23161 8657 8661 16525 Face 23162 8661 8575 16525 Face 23163 8575 8593 16525 Face 23164 8593 8657 16525 Face 23165 8590 8464 16526 Face 23166 8464 8390 16526 Face 23167 8390 8496 16526 Face 23168 8496 8590 16526 Face 23169 8517 8475 16527 Face 23170 8475 8373 16527 Face 23171 8373 8435 16527 Face 23172 8435 8517 16527 Face 23173 8402 8288 16528 Face 23174 8288 8170 16528 Face 23175 8170 8289 16528 Face 23176 8289 8402 16528 Face 23177 8358 8279 16529 Face 23178 8279 8190 16529 Face 23179 8190 8274 16529 Face 23180 8274 8358 16529 Face 23181 8183 8012 16530 Face 23182 8012 7903 16530 Face 23183 7903 8043 16530 Face 23184 8043 8183 16530 Face 23185 8258 8324 16531 Face 23186 8324 8124 16531 Face 23187 8124 8064 16531 Face 23188 8064 8258 16531 Face 23189 8523 8389 16532 Face 23190 8389 8466 16532 Face 23191 8466 8604 16532 Face 23192 8604 8523 16532 Face 23193 8102 8221 16533 Face 23194 8221 8212 16533 Face 23195 8212 8079 16533 Face 23196 8079 8102 16533 Face 23197 8322 8426 16534 Face 23198 8426 8391 16534 Face 23199 8391 8305 16534 Face 23200 8305 8322 16534 Face 23201 7994 8147 16535 Face 23202 8147 7977 16535 Face 23203 7977 7875 16535 Face 23204 7875 7994 16535 Face 23205 8238 8309 16536 Face 23206 8309 8187 16536 Face 23207 8187 8099 16536 Face 23208 8099 8238 16536 Face 23209 7755 7856 16537 Face 23210 7856 7721 16537 Face 23211 7721 7628 16537 Face 23212 7628 7755 16537 Face 23213 7929 7995 16538 Face 23214 7995 7841 16538 Face 23215 7841 7797 16538 Face 23216 7797 7929 16538 Face 23217 7463 7532 16539 Face 23218 7532 7311 16539 Face 23219 7311 7272 16539 Face 23220 7272 7463 16539 Face 23221 7596 7633 16540 Face 23222 7633 7393 16540 Face 23223 7393 7345 16540 Face 23224 7345 7596 16540 Face 23225 7072 7084 16541 Face 23226 7084 6943 16541 Face 23227 6943 6936 16541 Face 23228 6936 7072 16541 Face 23229 7116 7155 16542 Face 23230 7155 6975 16542 Face 23231 6975 6960 16542 Face 23232 6960 7116 16542 Face 23233 6785 6787 16543 Face 23234 6787 6647 16543 Face 23235 6647 6652 16543 Face 23236 6652 6785 16543 Face 23237 6794 6804 16544 Face 23238 6804 6666 16544 Face 23239 6666 6651 16544 Face 23240 6651 6794 16544 Face 23241 6491 6467 16545 Face 23242 6467 6256 16545 Face 23243 6256 6295 16545 Face 23244 6295 6491 16545 Face 23245 6462 6472 16546 Face 23246 6472 6229 16546 Face 23247 6229 6226 16546 Face 23248 6226 6462 16546 Face 23249 6559 6538 16547 Face 23250 6538 6356 16547 Face 23251 6356 6375 16547 Face 23252 6375 6559 16547 Face 23253 6678 6698 16548 Face 23254 6698 6808 16548 Face 23255 6808 6802 16548 Face 23256 6802 6678 16548 Face 23257 6944 6954 16549 Face 23258 6954 7078 16549 Face 23259 7078 7071 16549 Face 23260 7071 6944 16549 Face 23261 7268 7275 16550 Face 23262 7275 7414 16550 Face 23263 7414 7426 16550 Face 23264 7426 7268 16550 Face 23265 7566 7565 16551 Face 23266 7565 7696 16551 Face 23267 7696 7697 16551 Face 23268 7697 7566 16551 Face 23269 7953 7909 16552 Face 23270 7909 7869 16552 Face 23271 7869 7926 16552 Face 23272 7926 7953 16552 Face 23273 7452 7417 16553 Face 23274 7417 7137 16553 Face 23275 7137 7165 16553 Face 23276 7165 7452 16553 Face 23277 5584 5593 16554 Face 23278 5593 5744 16554 Face 23279 5744 5704 16554 Face 23280 5704 5584 16554 Face 23281 5599 5613 16555 Face 23282 5613 5855 16555 Face 23283 5855 5792 16555 Face 23284 5792 5599 16555 Face 23285 5627 5634 16556 Face 23286 5634 5920 16556 Face 23287 5920 5883 16556 Face 23288 5883 5627 16556 Face 23289 5819 5874 16557 Face 23290 5874 5982 16557 Face 23291 5982 5876 16557 Face 23292 5876 5819 16557 Face 23293 5952 6034 16558 Face 23294 6034 6205 16558 Face 23295 6205 6084 16558 Face 23296 6084 5952 16558 Face 23297 6128 6208 16559 Face 23298 6208 6576 16559 Face 23299 6576 6370 16559 Face 23300 6370 6128 16559 Face 23301 6206 6413 16560 Face 23302 6413 6608 16560 Face 23303 6608 6330 16560 Face 23304 6330 6206 16560 Face 23305 6624 6762 16561 Face 23306 6762 6945 16561 Face 23307 6945 6765 16561 Face 23308 6765 6624 16561 Face 23309 6410 6696 16562 Face 23310 6696 6722 16562 Face 23311 6722 6453 16562 Face 23312 6453 6410 16562 Face 23313 6875 7023 16563 Face 23314 7023 7036 16563 Face 23315 7036 6896 16563 Face 23316 6896 6875 16563 Face 23317 5976 6182 16564 Face 23318 6182 6232 16564 Face 23319 6232 6005 16564 Face 23320 6005 5976 16564 Face 23321 6482 6718 16565 Face 23322 6718 6686 16565 Face 23323 6686 6493 16565 Face 23324 6493 6482 16565 Face 23325 6874 7000 16566 Face 23326 7000 6906 16566 Face 23327 6906 6800 16566 Face 23328 6800 6874 16566 Face 23329 6003 6198 16567 Face 23330 6198 6120 16567 Face 23331 6120 5966 16567 Face 23332 5966 6003 16567 Face 23333 6419 6595 16568 Face 23334 6595 6382 16568 Face 23335 6382 6274 16568 Face 23336 6274 6419 16568 Face 23337 6699 6754 16569 Face 23338 6754 6573 16569 Face 23339 6573 6494 16569 Face 23340 6494 6699 16569 Face 23341 5909 6024 16570 Face 23342 6024 5908 16570 Face 23343 5908 5857 16570 Face 23344 5857 5909 16570 Face 23345 6105 6170 16571 Face 23346 6170 5987 16571 Face 23347 5987 5963 16571 Face 23348 5963 6105 16571 Face 23349 6230 6282 16572 Face 23350 6282 6036 16572 Face 23351 6036 6012 16572 Face 23352 6012 6230 16572 Face 23353 5740 5774 16573 Face 23354 5774 5598 16573 Face 23355 5598 5590 16573 Face 23356 5590 5740 16573 Face 23357 5804 5813 16574 Face 23358 5813 5612 16574 Face 23359 5612 5609 16574 Face 23360 5609 5804 16574 Face 23361 5826 5844 16575 Face 23362 5844 5624 16575 Face 23363 5624 5618 16575 Face 23364 5618 5826 16575 Face 23365 6313 6374 16576 Face 23366 6374 6123 16576 Face 23367 6123 6064 16576 Face 23368 6064 6313 16576 Face 23369 5860 5884 16577 Face 23370 5884 5640 16577 Face 23371 5640 5630 16577 Face 23372 5630 5860 16577 Face 23373 7660 7782 16578 Face 23374 7782 7816 16578 Face 23375 7816 7698 16578 Face 23376 7698 7660 16578 Face 23377 7881 7936 16579 Face 23378 7936 7796 16579 Face 23379 7796 7718 16579 Face 23380 7718 7881 16579 Face 23381 7373 7459 16580 Face 23382 7459 7395 16580 Face 23383 7395 7308 16580 Face 23384 7308 7373 16580 Face 23385 7520 7580 16581 Face 23386 7580 7462 16581 Face 23387 7462 7449 16581 Face 23388 7449 7520 16581 Face 23389 7575 7500 16582 Face 23390 7500 7357 16582 Face 23391 7357 7437 16582 Face 23392 7437 7575 16582 Face 23393 7429 7331 16583 Face 23394 7331 7267 16583 Face 23395 7267 7303 16583 Face 23396 7303 7429 16583 Face 23397 7866 7938 16584 Face 23398 7938 7824 16584 Face 23399 7824 7749 16584 Face 23400 7749 7866 16584 Face 23401 7571 7642 16585 Face 23402 7642 7444 16585 Face 23403 7444 7361 16585 Face 23404 7361 7571 16585 Face 23405 7124 7195 16586 Face 23406 7195 6973 16586 Face 23407 6973 6912 16586 Face 23408 6912 7124 16586 Face 23409 6734 6766 16587 Face 23410 6766 6626 16587 Face 23411 6626 6597 16587 Face 23412 6597 6734 16587 Face 23413 7514 7726 16588 Face 23414 7726 7832 16588 Face 23415 7832 7609 16588 Face 23416 7609 7514 16588 Face 23417 7674 7619 16589 Face 23418 7619 7638 16589 Face 23419 7638 7812 16589 Face 23420 7812 7674 16589 Face 23421 7309 7380 16590 Face 23422 7380 7094 16590 Face 23423 7094 7032 16590 Face 23424 7032 7309 16590 Face 23425 7422 7450 16591 Face 23426 7450 7149 16591 Face 23427 7149 7132 16591 Face 23428 7132 7422 16591 Face 23429 6828 6872 16592 Face 23430 6872 6649 16592 Face 23431 6649 6645 16592 Face 23432 6645 6828 16592 Face 23433 6893 6898 16593 Face 23434 6898 6644 16593 Face 23435 6644 6648 16593 Face 23436 6648 6893 16593 Face 23437 7302 7310 16594 Face 23438 7310 7079 16594 Face 23439 7079 7035 16594 Face 23440 7035 7302 16594 Face 23441 7227 7150 16595 Face 23442 7150 6983 16595 Face 23443 6983 7043 16595 Face 23444 7043 7227 16595 Face 23445 7152 7187 16596 Face 23446 7187 7037 16596 Face 23447 7037 7010 16596 Face 23448 7010 7152 16596 Face 23449 7197 7135 16597 Face 23450 7135 7015 16597 Face 23451 7015 7065 16597 Face 23452 7065 7197 16597 Face 23453 6842 6891 16598 Face 23454 6891 6683 16598 Face 23455 6683 6660 16598 Face 23456 6660 6842 16598 Face 23457 6869 6774 16599 Face 23458 6774 6539 16599 Face 23459 6539 6634 16599 Face 23460 6634 6869 16599 Face 23461 6813 6882 16600 Face 23462 6882 6687 16600 Face 23463 6687 6591 16600 Face 23464 6591 6813 16600 Face 23465 6589 6606 16601 Face 23466 6606 6553 16601 Face 23467 6553 6504 16601 Face 23468 6504 6589 16601 Face 23469 6407 6404 16602 Face 23470 6404 6133 16602 Face 23471 6133 6143 16602 Face 23472 6143 6407 16602 Face 23473 6331 6223 16603 Face 23474 6223 6014 16603 Face 23475 6014 6072 16603 Face 23476 6072 6331 16603 Face 23477 6280 6428 16604 Face 23478 6428 6155 16604 Face 23479 6155 6057 16604 Face 23480 6057 6280 16604 Face 23481 6511 6487 16605 Face 23482 6487 6189 16605 Face 23483 6189 6215 16605 Face 23484 6215 6511 16605 Face 23485 5895 5886 16606 Face 23486 5886 5642 16606 Face 23487 5642 5647 16606 Face 23488 5647 5895 16606 Face 23489 5864 5834 16607 Face 23490 5834 5620 16607 Face 23491 5620 5632 16607 Face 23492 5632 5864 16607 Face 23493 5862 5917 16608 Face 23494 5917 5654 16608 Face 23495 5654 5631 16608 Face 23496 5631 5862 16608 Face 23497 5967 5983 16609 Face 23498 5983 5780 16609 Face 23499 5780 5702 16609 Face 23500 5702 5967 16609 Face 23501 5975 5951 16610 Face 23502 5951 5811 16610 Face 23503 5811 5827 16610 Face 23504 5827 5975 16610 Face 23505 5680 5676 16611 Face 23506 5676 5574 16611 Face 23507 5574 5577 16611 Face 23508 5577 5680 16611 Face 23509 6284 6253 16612 Face 23510 6253 6062 16612 Face 23511 6062 6087 16612 Face 23512 6087 6284 16612 Face 23513 5936 5933 16613 Face 23514 5933 5845 16613 Face 23515 5845 5818 16613 Face 23516 5818 5936 16613 Face 23517 5672 5665 16614 Face 23518 5665 5568 16614 Face 23519 5568 5573 16614 Face 23520 5573 5672 16614 Face 23521 5837 5848 16615 Face 23522 5848 5797 16615 Face 23523 5797 5786 16615 Face 23524 5786 5837 16615 Face 23525 5686 5743 16616 Face 23526 5743 5592 16616 Face 23527 5592 5579 16616 Face 23528 5579 5686 16616 Face 23529 5597 5772 16617 Face 23530 5772 5783 16617 Face 23531 5783 5603 16617 Face 23532 5603 5597 16617 Face 23533 5894 5993 16618 Face 23534 5993 6009 16618 Face 23535 6009 5915 16618 Face 23536 5915 5894 16618 Face 23537 6104 6273 16619 Face 23538 6273 6293 16619 Face 23539 6293 6144 16619 Face 23540 6144 6104 16619 Face 23541 6366 6439 16620 Face 23542 6439 6486 16620 Face 23543 6486 6401 16620 Face 23544 6401 6366 16620 Face 23545 6510 6466 16621 Face 23546 6466 6454 16621 Face 23547 6454 6497 16621 Face 23548 6497 6510 16621 Face 23549 6544 6535 16622 Face 23550 6535 6448 16622 Face 23551 6448 6443 16622 Face 23552 6443 6544 16622 Face 23553 6500 6411 16623 Face 23554 6411 6355 16623 Face 23555 6355 6424 16623 Face 23556 6424 6500 16623 Face 23557 6319 6283 16624 Face 23558 6283 6181 16624 Face 23559 6181 6193 16624 Face 23560 6193 6319 16624 Face 23561 6129 6124 16625 Face 23562 6124 6061 16625 Face 23563 6061 6078 16625 Face 23564 6078 6129 16625 Face 23565 6015 5998 16626 Face 23566 5998 5904 16626 Face 23567 5904 5926 16626 Face 23568 5926 6015 16626 Face 23569 5798 5779 16627 Face 23570 5779 5602 16627 Face 23571 5602 5606 16627 Face 23572 5606 5798 16627 Face 23573 6277 6294 16628 Face 23574 6294 6291 16628 Face 23575 6291 6267 16628 Face 23576 6267 6277 16628 Face 23577 6174 6204 16629 Face 23578 6204 6212 16629 Face 23579 6212 6118 16629 Face 23580 6118 6174 16629 Face 23581 6094 6068 16630 Face 23582 6068 5965 16630 Face 23583 5965 6030 16630 Face 23584 6030 6094 16630 Face 23585 5906 6040 16631 Face 23586 6040 6004 16631 Face 23587 6004 5866 16631 Face 23588 5866 5906 16631 Face 23589 5712 5626 16632 Face 23590 5626 5752 16632 Face 23591 5752 5863 16632 Face 23592 5863 5712 16632 Face 23593 6432 6416 16633 Face 23594 6416 6203 16633 Face 23595 6203 6241 16633 Face 23596 6241 6432 16633 Face 23597 6388 6371 16634 Face 23598 6371 6178 16634 Face 23599 6178 6184 16634 Face 23600 6184 6388 16634 Face 23601 6088 6073 16635 Face 23602 6073 6006 16635 Face 23603 6006 6008 16635 Face 23604 6008 6088 16635 Face 23605 6065 6056 16636 Face 23606 6056 5969 16636 Face 23607 5969 5996 16636 Face 23608 5996 6065 16636 Face 23609 6037 6010 16637 Face 23610 6010 5921 16637 Face 23611 5921 5948 16637 Face 23612 5948 6037 16637 Face 23613 5931 5922 16638 Face 23614 5922 5849 16638 Face 23615 5849 5861 16638 Face 23616 5861 5931 16638 Face 23617 5903 5880 16639 Face 23618 5880 5808 16639 Face 23619 5808 5831 16639 Face 23620 5831 5903 16639 Face 23621 5869 5859 16640 Face 23622 5859 5790 16640 Face 23623 5790 5791 16640 Face 23624 5791 5869 16640 Face 23625 5742 5721 16641 Face 23626 5721 5586 16641 Face 23627 5586 5591 16641 Face 23628 5591 5742 16641 Face 23629 5706 5695 16642 Face 23630 5695 5581 16642 Face 23631 5581 5585 16642 Face 23632 5585 5706 16642 Face 23633 5690 5698 16643 Face 23634 5698 5582 16643 Face 23635 5582 5580 16643 Face 23636 5580 5690 16643 Face 23637 8181 8235 16644 Face 23638 8235 8217 16644 Face 23639 8217 8172 16644 Face 23640 8172 8181 16644 Face 23641 8204 8196 16645 Face 23642 8196 8149 16645 Face 23643 8149 8165 16645 Face 23644 8165 8204 16645 Face 23645 8135 8106 16646 Face 23646 8106 8083 16646 Face 23647 8083 8127 16646 Face 23648 8127 8135 16646 Face 23649 8150 8113 16647 Face 23650 8113 8176 16647 Face 23651 8176 8194 16647 Face 23652 8194 8150 16647 Face 23653 8243 8223 16648 Face 23654 8223 8271 16648 Face 23655 8271 8300 16648 Face 23656 8300 8243 16648 Face 23657 8332 8295 16649 Face 23658 8295 8293 16649 Face 23659 8293 8336 16649 Face 23660 8336 8332 16649 Face 23661 8314 8269 16650 Face 23662 8269 8222 16650 Face 23663 8222 8266 16650 Face 23664 8266 8314 16650 Face 23665 8178 8121 16651 Face 23666 8121 7939 16651 Face 23667 7939 8003 16651 Face 23668 8003 8178 16651 Face 23669 7889 7838 16652 Face 23670 7838 7754 16652 Face 23671 7754 7801 16652 Face 23672 7801 7889 16652 Face 23673 7742 7704 16653 Face 23674 7704 7668 16653 Face 23675 7668 7729 16653 Face 23676 7729 7742 16653 Face 23677 7826 7942 16654 Face 23678 7942 7910 16654 Face 23679 7910 7822 16654 Face 23680 7822 7826 16654 Face 23681 7868 7958 16655 Face 23682 7958 8125 16655 Face 23683 8125 7973 16655 Face 23684 7973 7868 16655 Face 23685 8128 8236 16656 Face 23686 8236 8330 16656 Face 23687 8330 8247 16656 Face 23688 8247 8128 16656 Face 23689 8326 8397 16657 Face 23690 8397 8431 16657 Face 23691 8431 8367 16657 Face 23692 8367 8326 16657 Face 23693 8381 8430 16658 Face 23694 8430 8395 16658 Face 23695 8395 8363 16658 Face 23696 8363 8381 16658 Face 23697 8327 8351 16659 Face 23698 8351 8287 16659 Face 23699 8287 8262 16659 Face 23700 8262 8327 16659 Face 23701 8214 8237 16660 Face 23702 8237 8191 16660 Face 23703 8191 8171 16660 Face 23704 8171 8214 16660 Face 23705 8159 8173 16661 Face 23706 8173 8193 16661 Face 23707 8193 8168 16661 Face 23708 8168 8159 16661 Face 23709 8200 8232 16662 Face 23710 8232 8286 16662 Face 23711 8286 8255 16662 Face 23712 8255 8200 16662 Face 23713 8371 8404 16663 Face 23714 8404 8342 16663 Face 23715 8342 8315 16663 Face 23716 8315 8371 16663 Face 23717 8261 8285 16664 Face 23718 8285 8245 16664 Face 23719 8245 8215 16664 Face 23720 8215 8261 16664 Face 23721 8199 8233 16665 Face 23722 8233 8244 16665 Face 23723 8244 8216 16665 Face 23724 8216 8199 16665 Face 23725 8254 8280 16666 Face 23726 8280 8354 16666 Face 23727 8354 8319 16666 Face 23728 8319 8254 16666 Face 23729 8382 8421 16667 Face 23730 8421 8497 16667 Face 23731 8497 8436 16667 Face 23732 8436 8382 16667 Face 23733 8207 8162 16668 Face 23734 8162 8107 16668 Face 23735 8107 8158 16668 Face 23736 8158 8207 16668 Face 23737 8097 8108 16669 Face 23738 8108 8051 16669 Face 23739 8051 8058 16669 Face 23740 8058 8097 16669 Face 23741 8082 8060 16670 Face 23742 8060 8134 16670 Face 23743 8134 8160 16670 Face 23744 8160 8082 16670 Face 23745 8206 8188 16671 Face 23746 8188 8240 16671 Face 23747 8240 8249 16671 Face 23748 8249 8206 16671 Face 23749 8267 8251 16672 Face 23750 8251 8234 16672 Face 23751 8234 8260 16672 Face 23752 8260 8267 16672 Face 23753 8227 8184 16673 Face 23754 8184 8093 16673 Face 23755 8093 8169 16673 Face 23756 8169 8227 16673 Face 23757 8027 7949 16674 Face 23758 7949 7803 16674 Face 23759 7803 7872 16674 Face 23760 7872 8027 16674 Face 23761 7769 7684 16675 Face 23762 7684 7613 16675 Face 23763 7613 7685 16675 Face 23764 7685 7769 16675 Face 23765 7634 7536 16676 Face 23766 7536 7481 16676 Face 23767 7481 7588 16676 Face 23768 7588 7634 16676 Face 23769 7233 7370 16677 Face 23770 7370 7451 16677 Face 23771 7451 7355 16677 Face 23772 7355 7233 16677 Face 23773 7457 7518 16678 Face 23774 7518 7621 16678 Face 23775 7621 7556 16678 Face 23776 7556 7457 16678 Face 23777 7689 7736 16679 Face 23778 7736 7892 16679 Face 23779 7892 7853 16679 Face 23780 7853 7689 16679 Face 23781 7968 8017 16680 Face 23782 8017 8138 16680 Face 23783 8138 8061 16680 Face 23784 8061 7968 16680 Face 23785 8139 8195 16681 Face 23786 8195 8218 16681 Face 23787 8218 8163 16681 Face 23788 8163 8139 16681 Face 23789 8048 8049 16682 Face 23790 8049 8095 16682 Face 23791 8095 8050 16682 Face 23792 8050 8048 16682 Face 23793 8031 8088 16683 Face 23794 8088 8040 16683 Face 23795 8040 7985 16683 Face 23796 7985 8031 16683 Face 23797 8143 8175 16684 Face 23798 8175 8126 16684 Face 23799 8126 8089 16684 Face 23800 8089 8143 16684 Face 23801 8198 8209 16685 Face 23802 8209 8174 16685 Face 23803 8174 8153 16685 Face 23804 8153 8198 16685 Face 23805 8230 8257 16686 Face 23806 8257 8253 16686 Face 23807 8253 8210 16686 Face 23808 8210 8230 16686 Face 23809 8294 8341 16687 Face 23810 8341 8377 16687 Face 23811 8377 8313 16687 Face 23812 8313 8294 16687 Face 23813 5633 5641 16688 Face 23814 5641 5932 16688 Face 23815 5932 5916 16688 Face 23816 5916 5633 16688 Face 23817 6307 6362 16689 Face 23818 6362 6859 16689 Face 23819 6859 6771 16689 Face 23820 6771 6307 16689 Face 23821 7025 7115 16690 Face 23822 7115 7249 16690 Face 23823 7249 7148 16690 Face 23824 7148 7025 16690 Face 23825 7313 7387 16691 Face 23826 7387 7508 16691 Face 23827 7508 7472 16691 Face 23828 7472 7313 16691 Face 23829 7636 7659 16692 Face 23830 7659 7835 16692 Face 23831 7835 7811 16692 Face 23832 7811 7636 16692 Face 23833 7919 8026 16693 Face 23834 8026 8039 16693 Face 23835 8039 7907 16693 Face 23836 7907 7919 16693 Face 23837 7876 7957 16694 Face 23838 7957 7924 16694 Face 23839 7924 7860 16694 Face 23840 7860 7876 16694 Face 23841 5651 5662 16695 Face 23842 5662 5977 16695 Face 23843 5977 5953 16695 Face 23844 5953 5651 16695 Face 23845 5658 5639 16696 Face 23846 5639 5929 16696 Face 23847 5929 5968 16696 Face 23848 5968 5658 16696 Face 23849 6287 6326 16697 Face 23850 6326 6703 16697 Face 23851 6703 6655 16697 Face 23852 6655 6287 16697 Face 23853 6333 6302 16698 Face 23854 6302 6742 16698 Face 23855 6742 6727 16698 Face 23856 6727 6333 16698 Face 23857 6922 6969 16699 Face 23858 6969 7075 16699 Face 23859 7075 7011 16699 Face 23860 7011 6922 16699 Face 23861 6923 7031 16700 Face 23862 7031 7189 16700 Face 23863 7189 7076 16700 Face 23864 7076 6923 16700 Face 23865 7134 7212 16701 Face 23866 7212 7411 16701 Face 23867 7411 7324 16701 Face 23868 7324 7134 16701 Face 23869 7445 7555 16702 Face 23870 7555 7706 16702 Face 23871 7706 7509 16702 Face 23872 7509 7445 16702 Face 23873 7176 7364 16703 Face 23874 7364 7347 16703 Face 23875 7347 7180 16703 Face 23876 7180 7176 16703 Face 23877 7538 7767 16704 Face 23878 7767 7737 16704 Face 23879 7737 7512 16704 Face 23880 7512 7538 16704 Face 23881 7144 7327 16705 Face 23882 7327 7312 16705 Face 23883 7312 7047 16705 Face 23884 7047 7144 16705 Face 23885 7502 7720 16706 Face 23886 7720 7717 16706 Face 23887 7717 7505 16706 Face 23888 7505 7502 16706 Face 23889 6712 6299 16707 Face 23890 6299 6304 16707 Face 23891 6304 6744 16707 Face 23892 6744 6712 16707 Face 23893 6776 6320 16708 Face 23894 6320 6353 16708 Face 23895 6353 6843 16708 Face 23896 6843 6776 16708 Face 23897 5950 5664 16709 Face 23898 5664 5661 16709 Face 23899 5661 5941 16709 Face 23900 5941 5950 16709 Face 23901 5935 5659 16710 Face 23902 5659 5660 16710 Face 23903 5660 5938 16710 Face 23904 5938 5935 16710 Face 23905 5587 5583 16711 Face 23906 5583 5701 16711 Face 23907 5701 5728 16711 Face 23908 5728 5587 16711 Face 23909 5578 5566 16712 Face 23910 5566 5655 16712 Face 23911 5655 5681 16712 Face 23912 5681 5578 16712 Face 23913 5784 5765 16713 Face 23914 5765 5896 16713 Face 23915 5896 5893 16713 Face 23916 5893 5784 16713 Face 23917 5708 5828 16714 Face 23918 5828 5954 16714 Face 23919 5954 5945 16714 Face 23920 5945 5708 16714 Face 23921 5899 5995 16715 Face 23922 5995 6159 16715 Face 23923 6159 6028 16715 Face 23924 6028 5899 16715 Face 23925 6047 6071 16716 Face 23926 6071 6310 16716 Face 23927 6310 6276 16716 Face 23928 6276 6047 16716 Face 23929 6196 6402 16717 Face 23930 6402 6653 16717 Face 23931 6653 6489 16717 Face 23932 6489 6196 16717 Face 23933 6546 6586 16718 Face 23934 6586 6750 16718 Face 23935 6750 6737 16718 Face 23936 6737 6546 16718 Face 23937 6451 6598 16719 Face 23938 6598 6853 16719 Face 23939 6853 6860 16719 Face 23940 6860 6451 16719 Face 23941 6719 6834 16720 Face 23942 6834 6997 16720 Face 23943 6997 6902 16720 Face 23944 6902 6719 16720 Face 23945 6907 6924 16721 Face 23946 6924 7083 16721 Face 23947 7083 7052 16721 Face 23948 7052 6907 16721 Face 23949 7040 7143 16722 Face 23950 7143 7293 16722 Face 23951 7293 7171 16722 Face 23952 7171 7040 16722 Face 23953 7202 7287 16723 Face 23954 7287 7454 16723 Face 23955 7454 7377 16723 Face 23956 7377 7202 16723 Face 23957 7646 7896 16724 Face 23958 7896 7857 16724 Face 23959 7857 7567 16724 Face 23960 7567 7646 16724 Face 23961 8155 8301 16725 Face 23962 8301 8312 16725 Face 23963 8312 8140 16725 Face 23964 8140 8155 16725 Face 23965 7490 7805 16726 Face 23966 7805 7745 16726 Face 23967 7745 7421 16726 Face 23968 7421 7490 16726 Face 23969 8117 8337 16727 Face 23970 8337 8369 16727 Face 23971 8369 8094 16727 Face 23972 8094 8117 16727 Face 23973 7358 7694 16728 Face 23974 7694 7653 16728 Face 23975 7653 7297 16728 Face 23976 7297 7358 16728 Face 23977 8057 8386 16729 Face 23978 8386 8379 16729 Face 23979 8379 8035 16729 Face 23980 8035 8057 16729 Face 23981 7210 7617 16730 Face 23982 7617 7561 16730 Face 23983 7561 7157 16730 Face 23984 7157 7210 16730 Face 23985 7998 8368 16731 Face 23986 8368 8350 16731 Face 23987 8350 7956 16731 Face 23988 7956 7998 16731 Face 23989 7103 7523 16732 Face 23990 7523 7497 16732 Face 23991 7497 7050 16732 Face 23992 7050 7103 16732 Face 23993 7916 8318 16733 Face 23994 8318 8272 16733 Face 23995 8272 7890 16733 Face 23996 7890 7916 16733 Face 23997 6810 7335 16734 Face 23998 7335 7016 16734 Face 23999 7016 6236 16734 Face 24000 6236 6810 16734 Face 24001 7739 8118 16735 Face 24002 8118 7813 16735 Face 24003 7813 7496 16735 Face 24004 7496 7739 16735 Face 24005 5927 6805 16736 Face 24006 6805 6710 16736 Face 24007 6710 5881 16736 Face 24008 5881 5927 16736 Face 24009 7300 7541 16737 Face 24010 7541 7294 16737 Face 24011 7294 7088 16737 Face 24012 7088 7300 16737 Face 24013 8408 8460 16738 Face 24014 8460 8462 16738 Face 24015 8462 8418 16738 Face 24016 8418 8408 16738 Face 24017 8449 8508 16739 Face 24018 8508 8628 16739 Face 24019 8628 8532 16739 Face 24020 8532 8449 16739 Face 24021 8588 8727 16740 Face 24022 8727 8770 16740 Face 24023 8770 8598 16740 Face 24024 8598 8588 16740 Face 24025 8599 8792 16741 Face 24026 8792 8800 16741 Face 24027 8800 8589 16741 Face 24028 8589 8599 16741 Face 24029 8559 8766 16742 Face 24030 8766 8677 16742 Face 24031 8677 8499 16742 Face 24032 8499 8559 16742 Face 24033 8375 8577 16743 Face 24034 8577 8453 16743 Face 24035 8453 8180 16743 Face 24036 8180 8375 16743 Face 24037 7877 8321 16744 Face 24038 8321 8132 16744 Face 24039 8132 7600 16744 Face 24040 7600 7877 16744 Face 24041 6690 6799 16745 Face 24042 6799 7245 16745 Face 24043 7245 7133 16745 Face 24044 7133 6690 16745 Face 24045 7014 7326 16746 Face 24046 7326 7542 16746 Face 24047 7542 7390 16746 Face 24048 7390 7014 16746 Face 24049 7506 7589 16747 Face 24050 7589 7851 16747 Face 24051 7851 7793 16747 Face 24052 7793 7506 16747 Face 24053 7667 7757 16748 Face 24054 7757 7946 16748 Face 24055 7946 7899 16748 Face 24056 7899 7667 16748 Face 24057 7991 8028 16749 Face 24058 8028 8005 16749 Face 24059 8005 8030 16749 Face 24060 8030 7991 16749 Face 24061 8055 8098 16750 Face 24062 8098 8130 16750 Face 24063 8130 8038 16750 Face 24064 8038 8055 16750 Face 24065 8067 8192 16751 Face 24066 8192 8311 16751 Face 24067 8311 8228 16751 Face 24068 8228 8067 16751 Face 24069 8323 8411 16752 Face 24070 8411 8480 16752 Face 24071 8480 8412 16752 Face 24072 8412 8323 16752 Face 24073 8465 8551 16753 Face 24074 8551 8623 16753 Face 24075 8623 8511 16753 Face 24076 8511 8465 16753 Face 24077 8516 8627 16754 Face 24078 8627 8562 16754 Face 24079 8562 8483 16754 Face 24080 8483 8516 16754 Face 24081 8439 8498 16755 Face 24082 8498 8442 16755 Face 24083 8442 8387 16755 Face 24084 8387 8439 16755 Face 24085 8340 8415 16756 Face 24086 8415 8384 16756 Face 24087 8384 8299 16756 Face 24088 8299 8340 16756 Face 24089 8283 8370 16757 Face 24090 8370 8380 16757 Face 24091 8380 8298 16757 Face 24092 8298 8283 16757 Face 24093 8334 8405 16758 Face 24094 8405 8432 16758 Face 24095 8432 8392 16758 Face 24096 8392 8334 16758 Face 24097 8450 8490 16759 Face 24098 8490 8595 16759 Face 24099 8595 8554 16759 Face 24100 8554 8450 16759 Face 24101 8586 8782 16760 Face 24102 8782 8833 16760 Face 24103 8833 8639 16760 Face 24104 8639 8586 16760 Face 24105 8669 8624 16761 Face 24106 8624 8570 16761 Face 24107 8570 8600 16761 Face 24108 8600 8669 16761 Face 24109 8784 8901 16762 Face 24110 8901 8814 16762 Face 24111 8814 8709 16762 Face 24112 8709 8784 16762 Face 24113 8888 8900 16763 Face 24114 8900 9052 16763 Face 24115 9052 9042 16763 Face 24116 9042 8888 16763 Face 24117 9019 8989 16764 Face 24118 8989 8827 16764 Face 24119 8827 8868 16764 Face 24120 8868 9019 16764 Face 24121 8579 8689 16765 Face 24122 8689 8655 16765 Face 24123 8655 8546 16765 Face 24124 8546 8579 16765 Face 24125 8488 8512 16766 Face 24126 8512 8621 16766 Face 24127 8621 8587 16766 Face 24128 8587 8488 16766 Face 24129 8706 8777 16767 Face 24130 8777 8937 16767 Face 24131 8937 8844 16767 Face 24132 8844 8706 16767 Face 24133 8801 8796 16768 Face 24134 8796 8653 16768 Face 24135 8653 8667 16768 Face 24136 8667 8801 16768 Face 24137 8468 8567 16769 Face 24138 8567 8561 16769 Face 24139 8561 8471 16769 Face 24140 8471 8468 16769 Face 24141 9037 8975 16770 Face 24142 8975 8939 16770 Face 24143 8939 9022 16770 Face 24144 9022 9037 16770 Face 24145 9021 8920 16771 Face 24146 8920 8926 16771 Face 24147 8926 9031 16771 Face 24148 9031 9021 16771 Face 24149 9076 8968 16772 Face 24150 8968 9039 16772 Face 24151 9039 9151 16772 Face 24152 9151 9076 16772 Face 24153 9208 9124 16773 Face 24154 9124 9160 16773 Face 24155 9160 9249 16773 Face 24156 9249 9208 16773 Face 24157 9269 9192 16774 Face 24158 9192 9217 16774 Face 24159 9217 9286 16774 Face 24160 9286 9269 16774 Face 24161 9295 9218 16775 Face 24162 9218 9198 16775 Face 24163 9198 9305 16775 Face 24164 9305 9295 16775 Face 24165 9311 9230 16776 Face 24166 9230 9270 16776 Face 24167 9270 9321 16776 Face 24168 9321 9311 16776 Face 24169 9322 9274 16777 Face 24170 9274 9256 16777 Face 24171 9256 9312 16777 Face 24172 9312 9322 16777 Face 24173 8838 8935 16778 Face 24174 8935 8938 16778 Face 24175 8938 8876 16778 Face 24176 8876 8838 16778 Face 24177 8825 8817 16779 Face 24178 8817 8928 16779 Face 24179 8928 8934 16779 Face 24180 8934 8825 16779 Face 24181 8834 8913 16780 Face 24182 8913 9012 16780 Face 24183 9012 8959 16780 Face 24184 8959 8834 16780 Face 24185 8966 9005 16781 Face 24186 9005 9139 16781 Face 24187 9139 9078 16781 Face 24188 9078 8966 16781 Face 24189 9120 9255 16782 Face 24190 9255 9200 16782 Face 24191 9200 9056 16782 Face 24192 9056 9120 16782 Face 24193 9287 9170 16783 Face 24194 9170 9199 16783 Face 24195 9199 9289 16783 Face 24196 9289 9287 16783 Face 24197 8863 9032 16784 Face 24198 9032 9070 16784 Face 24199 9070 8881 16784 Face 24200 8881 8863 16784 Face 24201 8882 9086 16785 Face 24202 9086 9067 16785 Face 24203 9067 8873 16785 Face 24204 8873 8882 16785 Face 24205 9220 9222 16786 Face 24206 9222 9285 16786 Face 24207 9285 9288 16786 Face 24208 9288 9220 16786 Face 24209 8972 9008 16787 Face 24210 9008 8931 16787 Face 24211 8931 8886 16787 Face 24212 8886 8972 16787 Face 24213 9138 9188 16788 Face 24214 9188 9239 16788 Face 24215 9239 9183 16788 Face 24216 9183 9138 16788 Face 24217 9187 9196 16789 Face 24218 9196 9263 16789 Face 24219 9263 9267 16789 Face 24220 9267 9187 16789 Face 24221 9276 9282 16790 Face 24222 9282 9215 16790 Face 24223 9215 9190 16790 Face 24224 9190 9276 16790 Face 24225 9207 9229 16791 Face 24226 9229 9194 16791 Face 24227 9194 9177 16791 Face 24228 9177 9207 16791 Face 24229 8981 9132 16792 Face 24230 9132 9121 16792 Face 24231 9121 8998 16792 Face 24232 8998 8981 16792 Face 24233 9107 9143 16793 Face 24234 9143 9169 16793 Face 24235 9169 9140 16793 Face 24236 9140 9107 16793 Face 24237 9163 9191 16794 Face 24238 9191 9203 16794 Face 24239 9203 9152 16794 Face 24240 9152 9163 16794 Face 24241 9159 9223 16795 Face 24242 9223 9240 16795 Face 24243 9240 9185 16795 Face 24244 9185 9159 16795 Face 24245 9178 9233 16796 Face 24246 9233 9193 16796 Face 24247 9193 9142 16796 Face 24248 9142 9178 16796 Face 24249 9114 9154 16797 Face 24250 9154 9129 16797 Face 24251 9129 9082 16797 Face 24252 9082 9114 16797 Face 24253 9044 9049 16798 Face 24254 9049 9058 16798 Face 24255 9058 9089 16798 Face 24256 9089 9044 16798 Face 24257 9002 8843 16799 Face 24258 8843 8842 16799 Face 24259 8842 8983 16799 Face 24260 8983 9002 16799 Face 24261 8866 8892 16800 Face 24262 8892 8984 16800 Face 24263 8984 8978 16800 Face 24264 8978 8866 16800 Face 24265 9028 9035 16801 Face 24266 9035 9065 16801 Face 24267 9065 9053 16801 Face 24268 9053 9028 16801 Face 24269 9105 9133 16802 Face 24270 9133 9189 16802 Face 24271 9189 9162 16802 Face 24272 9162 9105 16802 Face 24273 9226 9242 16803 Face 24274 9242 9266 16803 Face 24275 9266 9262 16803 Face 24276 9262 9226 16803 Face 24277 9279 9284 16804 Face 24278 9284 9301 16804 Face 24279 9301 9292 16804 Face 24280 9292 9279 16804 Face 24281 9303 9318 16805 Face 24282 9318 9326 16805 Face 24283 9326 9310 16805 Face 24284 9310 9303 16805 Face 24285 9315 9331 16806 Face 24286 9331 9330 16806 Face 24287 9330 9316 16806 Face 24288 9316 9315 16806 Face 24289 9320 9329 16807 Face 24290 9329 9328 16807 Face 24291 9328 9323 16807 Face 24292 9323 9320 16807 Face 24293 9314 9324 16808 Face 24294 9324 9299 16808 Face 24295 9299 9300 16808 Face 24296 9300 9314 16808 Face 24297 9281 9278 16809 Face 24298 9278 9259 16809 Face 24299 9259 9258 16809 Face 24300 9258 9281 16809 Face 24301 9149 9206 16810 Face 24302 9206 9219 16810 Face 24303 9219 9153 16810 Face 24304 9153 9149 16810 Face 24305 9090 9001 16811 Face 24306 9001 8999 16811 Face 24307 8999 9074 16811 Face 24308 9074 9090 16811 Face 24309 9298 9224 16812 Face 24310 9224 9176 16812 Face 24311 9176 9275 16812 Face 24312 9275 9298 16812 Face 24313 9210 9252 16813 Face 24314 9252 9135 16813 Face 24315 9135 9080 16813 Face 24316 9080 9210 16813 Face 24317 9119 9161 16814 Face 24318 9161 9033 16814 Face 24319 9033 9006 16814 Face 24320 9006 9119 16814 Face 24321 3072 3252 16815 Face 24322 3252 3089 16815 Face 24323 3089 2883 16815 Face 24324 2883 3072 16815 Face 24325 2341 2312 16816 Face 24326 2312 2078 16816 Face 24327 2078 2118 16816 Face 24328 2118 2341 16816 Face 24329 2276 2242 16817 Face 24330 2242 2027 16817 Face 24331 2027 2052 16817 Face 24332 2052 2276 16817 Face 24333 2156 2113 16818 Face 24334 2113 1873 16818 Face 24335 1873 1944 16818 Face 24336 1944 2156 16818 Face 24337 2122 2142 16819 Face 24338 2142 2008 16819 Face 24339 2008 1915 16819 Face 24340 1915 2122 16819 Face 24341 2698 2637 16820 Face 24342 2637 2558 16820 Face 24343 2558 2611 16820 Face 24344 2611 2698 16820 Face 24345 2770 2737 16821 Face 24346 2737 2634 16821 Face 24347 2634 2654 16821 Face 24348 2654 2770 16821 Face 24349 2782 2778 16822 Face 24350 2778 2670 16822 Face 24351 2670 2677 16822 Face 24352 2677 2782 16822 Face 24353 2717 2771 16823 Face 24354 2771 2656 16823 Face 24355 2656 2624 16823 Face 24356 2624 2717 16823 Face 24357 2194 2262 16824 Face 24358 2262 2196 16824 Face 24359 2196 2084 16824 Face 24360 2084 2194 16824 Face 24361 2560 2653 16825 Face 24362 2653 2590 16825 Face 24363 2590 2536 16825 Face 24364 2536 2560 16825 Face 24365 2359 2357 16826 Face 24366 2357 2140 16826 Face 24367 2140 2155 16826 Face 24368 2155 2359 16826 Face 24369 2780 2843 16827 Face 24370 2843 2758 16827 Face 24371 2758 2708 16827 Face 24372 2708 2780 16827 Face 24373 2387 2379 16828 Face 24374 2379 2218 16828 Face 24375 2218 2220 16828 Face 24376 2220 2387 16828 Face 24377 2375 2364 16829 Face 24378 2364 2175 16829 Face 24379 2175 2213 16829 Face 24380 2213 2375 16829 Face 24381 2274 2137 16830 Face 24382 2137 2093 16830 Face 24383 2093 2138 16830 Face 24384 2138 2274 16830 Face 24385 2328 2294 16831 Face 24386 2294 2261 16831 Face 24387 2261 2292 16831 Face 24388 2292 2328 16831 Face 24389 2411 2382 16832 Face 24390 2382 2334 16832 Face 24391 2334 2373 16832 Face 24392 2373 2411 16832 Face 24393 2473 2447 16833 Face 24394 2447 2416 16833 Face 24395 2416 2446 16833 Face 24396 2446 2473 16833 Face 24397 2419 2434 16834 Face 24398 2434 2362 16834 Face 24399 2362 2327 16834 Face 24400 2327 2419 16834 Face 24401 2247 2281 16835 Face 24402 2281 2231 16835 Face 24403 2231 2190 16835 Face 24404 2190 2247 16835 Face 24405 2185 2227 16836 Face 24406 2227 2271 16836 Face 24407 2271 2237 16836 Face 24408 2237 2185 16836 Face 24409 2280 2319 16837 Face 24410 2319 2370 16837 Face 24411 2370 2330 16837 Face 24412 2330 2280 16837 Face 24413 2203 2161 16838 Face 24414 2161 2286 16838 Face 24415 2286 2326 16838 Face 24416 2326 2203 16838 Face 24417 2173 2150 16839 Face 24418 2150 2123 16839 Face 24419 2123 2148 16839 Face 24420 2148 2173 16839 Face 24421 2221 2202 16840 Face 24422 2202 2172 16840 Face 24423 2172 2208 16840 Face 24424 2208 2221 16840 Face 24425 2649 2638 16841 Face 24426 2638 2400 16841 Face 24427 2400 2417 16841 Face 24428 2417 2649 16841 Face 24429 3572 3570 16842 Face 24430 3570 3042 16842 Face 24431 3042 3048 16842 Face 24432 3048 3572 16842 Face 24433 3902 3901 16843 Face 24434 3901 4038 16843 Face 24435 4038 4040 16843 Face 24436 4040 3902 16843 Face 24437 4401 4399 16844 Face 24438 4399 5177 16844 Face 24439 5177 5178 16844 Face 24440 5178 4401 16844 Face 24441 2257 2289 16845 Face 24442 2289 2298 16845 Face 24443 2298 2277 16845 Face 24444 2277 2257 16845 Face 24445 2464 2488 16846 Face 24446 2488 2494 16846 Face 24447 2494 2475 16846 Face 24448 2475 2464 16846 Face 24449 2369 2395 16847 Face 24450 2395 2402 16847 Face 24451 2402 2401 16847 Face 24452 2401 2369 16847 Face 24453 2332 2094 16848 Face 24454 2094 2100 16848 Face 24455 2100 2335 16848 Face 24456 2335 2332 16848 Face 24457 2331 2097 16849 Face 24458 2097 2089 16849 Face 24459 2089 2316 16849 Face 24460 2316 2331 16849 Face 24461 3571 3866 16850 Face 24462 3866 3864 16850 Face 24463 3864 3576 16850 Face 24464 3576 3571 16850 Face 24465 4512 4152 16851 Face 24466 4152 4156 16851 Face 24467 4156 4523 16851 Face 24468 4523 4512 16851 Face 24469 4537 4165 16852 Face 24470 4165 4173 16852 Face 24471 4173 4540 16852 Face 24472 4540 4537 16852 Face 24473 3871 3574 16853 Face 24474 3574 3580 16853 Face 24475 3580 3884 16853 Face 24476 3884 3871 16853 Face 24477 4987 4996 16854 Face 24478 4996 4754 16854 Face 24479 4754 4746 16854 Face 24480 4746 4987 16854 Face 24481 5419 5421 16855 Face 24482 5421 5199 16855 Face 24483 5199 5195 16855 Face 24484 5195 5419 16855 Face 24485 3173 3030 16856 Face 24486 3030 3064 16856 Face 24487 3064 3197 16856 Face 24488 3197 3173 16856 Face 24489 3111 2970 16857 Face 24490 2970 3003 16857 Face 24491 3003 3143 16857 Face 24492 3143 3111 16857 Face 24493 2955 2837 16858 Face 24494 2837 2901 16858 Face 24495 2901 3056 16858 Face 24496 3056 2955 16858 Face 24497 5382 5379 16859 Face 24498 5379 5087 16859 Face 24499 5087 5094 16859 Face 24500 5094 5382 16859 Face 24501 4311 4303 16860 Face 24502 4303 4120 16860 Face 24503 4120 4125 16860 Face 24504 4125 4311 16860 Face 24505 3965 3959 16861 Face 24506 3959 3801 16861 Face 24507 3801 3822 16861 Face 24508 3822 3965 16861 Face 24509 3416 3451 16862 Face 24510 3451 3379 16862 Face 24511 3379 3336 16862 Face 24512 3336 3416 16862 Face 24513 3603 3626 16863 Face 24514 3626 3541 16863 Face 24515 3541 3521 16863 Face 24516 3521 3603 16863 Face 24517 3939 3945 16864 Face 24518 3945 3753 16864 Face 24519 3753 3735 16864 Face 24520 3735 3939 16864 Face 24521 4349 4356 16865 Face 24522 4356 4132 16865 Face 24523 4132 4129 16865 Face 24524 4129 4349 16865 Face 24525 4920 4934 16866 Face 24526 4934 4662 16866 Face 24527 4662 4652 16866 Face 24528 4652 4920 16866 Face 24529 5412 5414 16867 Face 24530 5414 5170 16867 Face 24531 5170 5166 16867 Face 24532 5166 5412 16867 Face 24533 4531 4824 16868 Face 24534 4824 4817 16868 Face 24535 4817 4518 16868 Face 24536 4518 4531 16868 Face 24537 3561 3670 16869 Face 24538 3670 3662 16869 Face 24539 3662 3567 16869 Face 24540 3567 3561 16869 Face 24541 3419 3337 16870 Face 24542 3337 3377 16870 Face 24543 3377 3445 16870 Face 24544 3445 3419 16870 Face 24545 4337 4344 16871 Face 24546 4344 4469 16871 Face 24547 4469 4463 16871 Face 24548 4463 4337 16871 Face 24549 4799 4800 16872 Face 24550 4800 4663 16872 Face 24551 4663 4677 16872 Face 24552 4677 4799 16872 Face 24553 3747 3566 16873 Face 24554 3566 3590 16873 Face 24555 3590 3762 16873 Face 24556 3762 3747 16873 Face 24557 4180 3966 16874 Face 24558 3966 3989 16874 Face 24559 3989 4190 16874 Face 24560 4190 4180 16874 Face 24561 4549 4541 16875 Face 24562 4541 4582 16875 Face 24563 4582 4594 16875 Face 24564 4594 4549 16875 Face 24565 4479 4476 16876 Face 24566 4476 4499 16876 Face 24567 4499 4503 16876 Face 24568 4503 4479 16876 Face 24569 4511 4601 16877 Face 24570 4601 4604 16877 Face 24571 4604 4513 16877 Face 24572 4513 4511 16877 Face 24573 4826 4706 16878 Face 24574 4706 4715 16878 Face 24575 4715 4847 16878 Face 24576 4847 4826 16878 Face 24577 4678 4629 16879 Face 24578 4629 4651 16879 Face 24579 4651 4689 16879 Face 24580 4689 4678 16879 Face 24581 4750 4709 16880 Face 24582 4709 4659 16880 Face 24583 4659 4694 16880 Face 24584 4694 4750 16880 Face 24585 4986 4963 16881 Face 24586 4963 4825 16881 Face 24587 4825 4865 16881 Face 24588 4865 4986 16881 Face 24589 5157 5155 16882 Face 24590 5155 5074 16882 Face 24591 5074 5091 16882 Face 24592 5091 5157 16882 Face 24593 5261 5282 16883 Face 24594 5282 5209 16883 Face 24595 5209 5198 16883 Face 24596 5198 5261 16883 Face 24597 5269 5302 16884 Face 24598 5302 5310 16884 Face 24599 5310 5279 16884 Face 24600 5279 5269 16884 Face 24601 4316 4163 16885 Face 24602 4163 4126 16885 Face 24603 4126 4305 16885 Face 24604 4305 4316 16885 Face 24605 4411 4304 16886 Face 24606 4304 4229 16886 Face 24607 4229 4347 16886 Face 24608 4347 4411 16886 Face 24609 4481 4440 16887 Face 24610 4440 4376 16887 Face 24611 4376 4448 16887 Face 24612 4448 4481 16887 Face 24613 4488 4465 16888 Face 24614 4465 4473 16888 Face 24615 4473 4497 16888 Face 24616 4497 4488 16888 Face 24617 4613 4590 16889 Face 24618 4590 4500 16889 Face 24619 4500 4530 16889 Face 24620 4530 4613 16889 Face 24621 4878 4857 16890 Face 24622 4857 4711 16890 Face 24623 4711 4732 16890 Face 24624 4732 4878 16890 Face 24625 4964 4948 16891 Face 24626 4948 4929 16891 Face 24627 4929 4941 16891 Face 24628 4941 4964 16891 Face 24629 5118 5114 16892 Face 24630 5114 5011 16892 Face 24631 5011 5019 16892 Face 24632 5019 5118 16892 Face 24633 5439 5436 16893 Face 24634 5436 5239 16893 Face 24635 5239 5245 16893 Face 24636 5245 5439 16893 Face 24637 4998 5018 16894 Face 24638 5018 4940 16894 Face 24639 4940 4932 16894 Face 24640 4932 4998 16894 Face 24641 5161 5172 16895 Face 24642 5172 5101 16895 Face 24643 5101 5076 16895 Face 24644 5076 5161 16895 Face 24645 5450 5451 16896 Face 24646 5451 5283 16896 Face 24647 5283 5275 16896 Face 24648 5275 5450 16896 Face 24649 4605 4602 16897 Face 24650 4602 4561 16897 Face 24651 4561 4534 16897 Face 24652 4534 4605 16897 Face 24653 5167 5111 16898 Face 24654 5111 5134 16898 Face 24655 5134 5175 16898 Face 24656 5175 5167 16898 Face 24657 4736 4764 16899 Face 24658 4764 4835 16899 Face 24659 4835 4782 16899 Face 24660 4782 4736 16899 Face 24661 4925 5044 16900 Face 24662 5044 5014 16900 Face 24663 5014 4890 16900 Face 24664 4890 4925 16900 Face 24665 5028 5004 16901 Face 24666 5004 4971 16901 Face 24667 4971 4991 16901 Face 24668 4991 5028 16901 Face 24669 4957 4942 16902 Face 24670 4942 4912 16902 Face 24671 4912 4928 16902 Face 24672 4928 4957 16902 Face 24673 3123 3224 16903 Face 24674 3224 3227 16903 Face 24675 3227 3119 16903 Face 24676 3119 3123 16903 Face 24677 3114 3222 16904 Face 24678 3222 3216 16904 Face 24679 3216 3102 16904 Face 24680 3102 3114 16904 Face 24681 3347 3476 16905 Face 24682 3476 3475 16905 Face 24683 3475 3349 16905 Face 24684 3349 3347 16905 Face 24685 3343 3472 16906 Face 24686 3472 3467 16906 Face 24687 3467 3338 16906 Face 24688 3338 3343 16906 Face 24689 3619 3820 16907 Face 24690 3820 3828 16907 Face 24691 3828 3616 16907 Face 24692 3616 3619 16907 Face 24693 3614 3823 16908 Face 24694 3823 3818 16908 Face 24695 3818 3609 16908 Face 24696 3609 3614 16908 Face 24697 3978 4106 16909 Face 24698 4106 4112 16909 Face 24699 4112 3985 16909 Face 24700 3985 3978 16909 Face 24701 3987 4116 16910 Face 24702 4116 4117 16910 Face 24703 4117 3982 16910 Face 24704 3982 3987 16910 Face 24705 4245 4368 16911 Face 24706 4368 4371 16911 Face 24707 4371 4250 16911 Face 24708 4250 4245 16911 Face 24709 4251 4375 16912 Face 24710 4375 4382 16912 Face 24711 4382 4253 16912 Face 24712 4253 4251 16912 Face 24713 4519 4701 16913 Face 24714 4701 4713 16913 Face 24715 4713 4528 16913 Face 24716 4528 4519 16913 Face 24717 4538 4724 16914 Face 24718 4724 4730 16914 Face 24719 4730 4542 16914 Face 24720 4542 4538 16914 Face 24721 3797 3807 16915 Face 24722 3807 3617 16915 Face 24723 3617 3610 16915 Face 24724 3610 3797 16915 Face 24725 3357 3380 16916 Face 24726 3380 3504 16916 Face 24727 3504 3488 16916 Face 24728 3488 3357 16916 Face 24729 3196 3249 16917 Face 24730 3249 3293 16917 Face 24731 3293 3261 16917 Face 24732 3261 3196 16917 Face 24733 3158 3205 16918 Face 24734 3205 3217 16918 Face 24735 3217 3163 16918 Face 24736 3163 3158 16918 Face 24737 3240 3313 16919 Face 24738 3313 3237 16919 Face 24739 3237 3183 16919 Face 24740 3183 3240 16919 Face 24741 3485 3531 16920 Face 24742 3531 3411 16920 Face 24743 3411 3339 16920 Face 24744 3339 3485 16920 Face 24745 3932 3963 16921 Face 24746 3963 3704 16921 Face 24747 3704 3660 16921 Face 24748 3660 3932 16921 Face 24749 4471 4450 16922 Face 24750 4450 4198 16922 Face 24751 4198 4189 16922 Face 24752 4189 4471 16922 Face 24753 4721 4687 16923 Face 24754 4687 4675 16923 Face 24755 4675 4705 16923 Face 24756 4705 4721 16923 Face 24757 4456 4438 16924 Face 24758 4438 4606 16924 Face 24759 4606 4644 16924 Face 24760 4644 4456 16924 Face 24761 4226 4218 16925 Face 24762 4218 4321 16925 Face 24763 4321 4334 16925 Face 24764 4334 4226 16925 Face 24765 3951 3944 16926 Face 24766 3944 4079 16926 Face 24767 4079 4081 16926 Face 24768 4081 3951 16926 Face 24769 3984 3981 16927 Face 24770 3981 3723 16927 Face 24771 3723 3726 16927 Face 24772 3726 3984 16927 Face 24773 3564 3562 16928 Face 24774 3562 3455 16928 Face 24775 3455 3461 16928 Face 24776 3461 3564 16928 Face 24777 3370 3363 16929 Face 24778 3363 3281 16929 Face 24779 3281 3283 16929 Face 24780 3283 3370 16929 Face 24781 3245 3244 16930 Face 24782 3244 3262 16930 Face 24783 3262 3263 16930 Face 24784 3263 3245 16930 Face 24785 3287 3282 16931 Face 24786 3282 3314 16931 Face 24787 3314 3318 16931 Face 24788 3318 3287 16931 Face 24789 3402 3398 16932 Face 24790 3398 3520 16932 Face 24791 3520 3524 16932 Face 24792 3524 3402 16932 Face 24793 3644 3639 16933 Face 24794 3639 3782 16933 Face 24795 3782 3791 16933 Face 24796 3791 3644 16933 Face 24797 3942 3940 16934 Face 24798 3940 4072 16934 Face 24799 4072 4073 16934 Face 24800 4073 3942 16934 Face 24801 4205 4204 16935 Face 24802 4204 4312 16935 Face 24803 4312 4313 16935 Face 24804 4313 4205 16935 Face 24805 4418 4417 16936 Face 24806 4417 4567 16936 Face 24807 4567 4568 16936 Face 24808 4568 4418 16936 Face 24809 4657 4656 16937 Face 24810 4656 4632 16937 Face 24811 4632 4633 16937 Face 24812 4633 4657 16937 Face 24813 4435 4434 16938 Face 24814 4434 4206 16938 Face 24815 4206 4207 16938 Face 24816 4207 4435 16938 Face 24817 3160 3238 16939 Face 24818 3238 3231 16939 Face 24819 3231 3132 16939 Face 24820 3132 3160 16939 Face 24821 4486 4175 16940 Face 24822 4175 4157 16940 Face 24823 4157 4495 16940 Face 24824 4495 4486 16940 Face 24825 3754 3972 16941 Face 24826 3972 4149 16941 Face 24827 4149 3627 16941 Face 24828 3627 3754 16941 Face 24829 4109 4057 16942 Face 24830 4057 4025 16942 Face 24831 4025 4276 16942 Face 24832 4276 4109 16942 Face 24833 3207 3258 16943 Face 24834 3258 3391 16943 Face 24835 3391 3371 16943 Face 24836 3371 3207 16943 Face 24837 3464 3378 16944 Face 24838 3378 3548 16944 Face 24839 3548 3582 16944 Face 24840 3582 3464 16944 Face 24841 2268 2317 16945 Face 24842 2317 2351 16945 Face 24843 2351 2314 16945 Face 24844 2314 2268 16945 Face 24845 2363 2392 16946 Face 24846 2392 2437 16946 Face 24847 2437 2405 16946 Face 24848 2405 2363 16946 Face 24849 2471 2499 16947 Face 24850 2499 2436 16947 Face 24851 2436 2425 16947 Face 24852 2425 2471 16947 Face 24853 2520 2524 16948 Face 24854 2524 2450 16948 Face 24855 2450 2443 16948 Face 24856 2443 2520 16948 Face 24857 2399 2465 16949 Face 24858 2465 2323 16949 Face 24859 2323 2248 16949 Face 24860 2248 2399 16949 Face 24861 2180 2225 16950 Face 24862 2225 2192 16950 Face 24863 2192 2187 16950 Face 24864 2187 2180 16950 Face 24865 2168 2158 16951 Face 24866 2158 2182 16951 Face 24867 2182 2189 16951 Face 24868 2189 2168 16951 Face 24869 2212 2177 16952 Face 24870 2177 2239 16952 Face 24871 2239 2233 16952 Face 24872 2233 2212 16952 Face 24873 2305 2381 16953 Face 24874 2381 2293 16953 Face 24875 2293 2264 16953 Face 24876 2264 2305 16953 Face 24877 3330 3557 16954 Face 24878 3557 3463 16954 Face 24879 3463 3296 16954 Face 24880 3296 3330 16954 Face 24881 3208 3333 16955 Face 24882 3333 3186 16955 Face 24883 3186 3086 16955 Face 24884 3086 3208 16955 Face 24885 2928 3049 16956 Face 24886 3049 2920 16956 Face 24887 2920 2824 16956 Face 24888 2824 2928 16956 Face 24889 2735 2812 16957 Face 24890 2812 2693 16957 Face 24891 2693 2650 16957 Face 24892 2650 2735 16957 Face 24893 2566 2599 16958 Face 24894 2599 2503 16958 Face 24895 2503 2469 16958 Face 24896 2469 2566 16958 Face 24897 2310 2307 16959 Face 24898 2307 2409 16959 Face 24899 2409 2376 16959 Face 24900 2376 2310 16959 Face 24901 2421 2477 16960 Face 24902 2477 2539 16960 Face 24903 2539 2460 16960 Face 24904 2460 2421 16960 Face 24905 2567 2591 16961 Face 24906 2591 2497 16961 Face 24907 2497 2484 16961 Face 24908 2484 2567 16961 Face 24909 2515 2603 16962 Face 24910 2603 2604 16962 Face 24911 2604 2531 16962 Face 24912 2531 2515 16962 Face 24913 2594 2575 16963 Face 24914 2575 2527 16963 Face 24915 2527 2537 16963 Face 24916 2537 2594 16963 Face 24917 2886 3075 16964 Face 24918 3075 2953 16964 Face 24919 2953 2840 16964 Face 24920 2840 2886 16964 Face 24921 2398 2340 16965 Face 24922 2340 2349 16965 Face 24923 2349 2413 16965 Face 24924 2413 2398 16965 Face 24925 2372 2414 16966 Face 24926 2414 2348 16966 Face 24927 2348 2361 16966 Face 24928 2361 2372 16966 Face 24929 2452 2396 16967 Face 24930 2396 2371 16967 Face 24931 2371 2439 16967 Face 24932 2439 2452 16967 Face 24933 2532 2495 16968 Face 24934 2495 2486 16968 Face 24935 2486 2528 16968 Face 24936 2528 2532 16968 Face 24937 2625 2576 16969 Face 24938 2576 2571 16969 Face 24939 2571 2620 16969 Face 24940 2620 2625 16969 Face 24941 2805 2704 16970 Face 24942 2704 2702 16970 Face 24943 2702 2819 16970 Face 24944 2819 2805 16970 Face 24945 2259 2282 16971 Face 24946 2282 2324 16971 Face 24947 2324 2301 16971 Face 24948 2301 2259 16971 Face 24949 2365 2285 16972 Face 24950 2285 2367 16972 Face 24951 2367 2480 16972 Face 24952 2480 2365 16972 Face 24953 2384 2388 16973 Face 24954 2388 2451 16973 Face 24955 2451 2470 16973 Face 24956 2470 2384 16973 Face 24957 2583 2454 16974 Face 24958 2454 2549 16974 Face 24959 2549 2662 16974 Face 24960 2662 2583 16974 Face 24961 2573 2529 16975 Face 24962 2529 2614 16975 Face 24963 2614 2676 16975 Face 24964 2676 2573 16975 Face 24965 2756 2646 16976 Face 24966 2646 2755 16976 Face 24967 2755 2872 16976 Face 24968 2872 2756 16976 Face 24969 2767 2689 16977 Face 24970 2689 2773 16977 Face 24971 2773 2853 16977 Face 24972 2853 2767 16977 Face 24973 3023 2857 16978 Face 24974 2857 2993 16978 Face 24975 2993 3138 16978 Face 24976 3138 3023 16978 Face 24977 2719 2786 16979 Face 24978 2786 2971 16979 Face 24979 2971 2915 16979 Face 24980 2915 2719 16979 Face 24981 2663 2522 16980 Face 24982 2522 2440 16980 Face 24983 2440 2582 16980 Face 24984 2582 2663 16980 Face 24985 2822 2934 16981 Face 24986 2934 2956 16981 Face 24987 2956 2833 16981 Face 24988 2833 2822 16981 Face 24989 2622 2720 16982 Face 24990 2720 2739 16982 Face 24991 2739 2659 16982 Face 24992 2659 2622 16982 Face 24993 2894 3039 16983 Face 24994 3039 3170 16983 Face 24995 3170 3062 16983 Face 24996 3062 2894 16983 Face 24997 2732 2806 16984 Face 24998 2806 2936 16984 Face 24999 2936 2856 16984 Face 25000 2856 2732 16984 Face 25001 3192 3291 16985 Face 25002 3291 3417 16985 Face 25003 3417 3320 16985 Face 25004 3320 3192 16985 Face 25005 3038 3105 16986 Face 25006 3105 3246 16986 Face 25007 3246 3203 16986 Face 25008 3203 3038 16986 Face 25009 3510 3578 16987 Face 25010 3578 3774 16987 Face 25011 3774 3731 16987 Face 25012 3731 3510 16987 Face 25013 3412 3448 16988 Face 25014 3448 3697 16988 Face 25015 3697 3653 16988 Face 25016 3653 3412 16988 Face 25017 3956 3967 16989 Face 25018 3967 4110 16989 Face 25019 4110 4102 16989 Face 25020 4102 3956 16989 Face 25021 3888 3925 16990 Face 25022 3925 4082 16990 Face 25023 4082 4067 16990 Face 25024 4067 3888 16990 Face 25025 4254 4256 16991 Face 25026 4256 4387 16991 Face 25027 4387 4392 16991 Face 25028 4392 4254 16991 Face 25029 4239 4248 16992 Face 25030 4248 4388 16992 Face 25031 4388 4373 16992 Face 25032 4373 4239 16992 Face 25033 4578 4553 16993 Face 25034 4553 4751 16993 Face 25035 4751 4788 16993 Face 25036 4788 4578 16993 Face 25037 4573 4583 16994 Face 25038 4583 4818 16994 Face 25039 4818 4815 16994 Face 25040 4815 4573 16994 Face 25041 4502 4480 16995 Face 25042 4480 4671 16995 Face 25043 4671 4692 16995 Face 25044 4692 4502 16995 Face 25045 4343 4360 16996 Face 25046 4360 4241 16996 Face 25047 4241 4235 16996 Face 25048 4235 4343 16996 Face 25049 4088 4101 16997 Face 25050 4101 3968 16997 Face 25051 3968 3962 16997 Face 25052 3962 4088 16997 Face 25053 3771 3778 16998 Face 25054 3778 3618 16998 Face 25055 3618 3631 16998 Face 25056 3631 3771 16998 Face 25057 3479 3478 16999 Face 25058 3478 3345 16999 Face 25059 3345 3346 16999 Face 25060 3346 3479 16999 Face 25061 3128 3087 17000 Face 25062 3087 3110 17000 Face 25063 3110 3176 17000 Face 25064 3176 3128 17000 Face 25065 3628 3591 17001 Face 25066 3591 3878 17001 Face 25067 3878 3907 17001 Face 25068 3907 3628 17001 Face 25069 5452 5461 17002 Face 25070 5461 5330 17002 Face 25071 5330 5296 17002 Face 25072 5296 5452 17002 Face 25073 5405 5432 17003 Face 25074 5432 5243 17003 Face 25075 5243 5184 17003 Face 25076 5184 5405 17003 Face 25077 5362 5378 17004 Face 25078 5378 5142 17004 Face 25079 5142 5089 17004 Face 25080 5089 5362 17004 Face 25081 5171 5226 17005 Face 25082 5226 5169 17005 Face 25083 5169 5065 17005 Face 25084 5065 5171 17005 Face 25085 5005 5096 17006 Face 25086 5096 4954 17006 Face 25087 4954 4837 17006 Face 25088 4837 5005 17006 Face 25089 4797 4906 17007 Face 25090 4906 4673 17007 Face 25091 4673 4455 17007 Face 25092 4455 4797 17007 Face 25093 4634 4836 17008 Face 25094 4836 4718 17008 Face 25095 4718 4430 17008 Face 25096 4430 4634 17008 Face 25097 4279 4414 17009 Face 25098 4414 4275 17009 Face 25099 4275 4100 17009 Face 25100 4100 4279 17009 Face 25101 4345 4637 17010 Face 25102 4637 4593 17010 Face 25103 4593 4322 17010 Face 25104 4322 4345 17010 Face 25105 4015 4171 17011 Face 25106 4171 4150 17011 Face 25107 4150 4003 17011 Face 25108 4003 4015 17011 Face 25109 4860 5071 17012 Face 25110 5071 5040 17012 Face 25111 5040 4811 17012 Face 25112 4811 4860 17012 Face 25113 4326 4563 17013 Face 25114 4563 4551 17013 Face 25115 4551 4353 17013 Face 25116 4353 4326 17013 Face 25117 4039 4172 17014 Face 25118 4172 4243 17014 Face 25119 4243 4139 17014 Face 25120 4139 4039 17014 Face 25121 4844 5042 17015 Face 25122 5042 5080 17015 Face 25123 5080 4922 17015 Face 25124 4922 4844 17015 Face 25125 4444 4628 17016 Face 25126 4628 4771 17016 Face 25127 4771 4664 17016 Face 25128 4664 4444 17016 Face 25129 4288 4342 17017 Face 25130 4342 4550 17017 Face 25131 4550 4467 17017 Face 25132 4467 4288 17017 Face 25133 5017 5135 17018 Face 25134 5135 5189 17018 Face 25135 5189 5136 17018 Face 25136 5136 5017 17018 Face 25137 4872 4935 17019 Face 25138 4935 5085 17019 Face 25139 5085 5060 17019 Face 25140 5060 4872 17019 Face 25141 4763 4813 17020 Face 25142 4813 5031 17020 Face 25143 5031 5003 17020 Face 25144 5003 4763 17020 Face 25145 5268 5300 17021 Face 25146 5300 5455 17021 Face 25147 5455 5447 17021 Face 25148 5447 5268 17021 Face 25149 5232 5241 17022 Face 25150 5241 5437 17022 Face 25151 5437 5434 17022 Face 25152 5434 5232 17022 Face 25153 5201 5219 17023 Face 25154 5219 5428 17023 Face 25155 5428 5422 17023 Face 25156 5422 5201 17023 Face 25157 4672 4735 17024 Face 25158 4735 4974 17024 Face 25159 4974 4919 17024 Face 25160 4919 4672 17024 Face 25161 5162 5186 17025 Face 25162 5186 5417 17025 Face 25163 5417 5410 17025 Face 25164 5410 5162 17025 Face 25165 3264 3382 17026 Face 25166 3382 3344 17026 Face 25167 3344 3228 17026 Face 25168 3228 3264 17026 Face 25169 3098 3161 17027 Face 25170 3161 3323 17027 Face 25171 3323 3248 17027 Face 25172 3248 3098 17027 Face 25173 3583 3671 17028 Face 25174 3671 3734 17028 Face 25175 3734 3651 17028 Face 25176 3651 3583 17028 Face 25177 3462 3522 17029 Face 25178 3522 3593 17029 Face 25179 3593 3579 17029 Face 25180 3579 3462 17029 Face 25181 3542 3469 17030 Face 25182 3469 3605 17030 Face 25183 3605 3686 17030 Face 25184 3686 3542 17030 Face 25185 3712 3615 17031 Face 25186 3615 3740 17031 Face 25187 3740 3779 17031 Face 25188 3779 3712 17031 Face 25189 3096 3177 17032 Face 25190 3177 3295 17032 Face 25191 3295 3221 17032 Face 25192 3221 3096 17032 Face 25193 3405 3474 17033 Face 25194 3474 3680 17033 Face 25195 3680 3598 17033 Face 25196 3598 3405 17033 Face 25197 3849 3917 17034 Face 25198 3917 4133 17034 Face 25199 4133 4069 17034 Face 25200 4069 3849 17034 Face 25201 4274 4310 17035 Face 25202 4310 4442 17035 Face 25203 4442 4412 17035 Face 25204 4412 4274 17035 Face 25205 3315 3528 17036 Face 25206 3528 3437 17036 Face 25207 3437 3212 17036 Face 25208 3212 3315 17036 Face 25209 3425 3367 17037 Face 25210 3367 3233 17037 Face 25211 3233 3410 17037 Face 25212 3410 3425 17037 Face 25213 3664 3733 17038 Face 25214 3733 4007 17038 Face 25215 4007 3946 17038 Face 25216 3946 3664 17038 Face 25217 3592 3622 17039 Face 25218 3622 3909 17039 Face 25219 3909 3894 17039 Face 25220 3894 3592 17039 Face 25221 4174 4217 17040 Face 25222 4217 4395 17040 Face 25223 4395 4390 17040 Face 25224 4390 4174 17040 Face 25225 4148 4153 17041 Face 25226 4153 4391 17041 Face 25227 4391 4396 17041 Face 25228 4396 4148 17041 Face 25229 3732 3741 17042 Face 25230 3741 4004 17042 Face 25231 4004 3960 17042 Face 25232 3960 3732 17042 Face 25233 3893 3817 17043 Face 25234 3817 3996 17043 Face 25235 3996 4059 17043 Face 25236 4059 3893 17043 Face 25237 3856 3891 17044 Face 25238 3891 4028 17044 Face 25239 4028 4002 17044 Face 25240 4002 3856 17044 Face 25241 3908 3846 17045 Face 25242 3846 3974 17045 Face 25243 3974 4024 17045 Face 25244 4024 3908 17045 Face 25245 4155 4202 17046 Face 25246 4202 4381 17046 Face 25247 4381 4355 17046 Face 25248 4355 4155 17046 Face 25249 4267 4177 17047 Face 25250 4177 4405 17047 Face 25251 4405 4501 17047 Face 25252 4501 4267 17047 Face 25253 4164 4230 17048 Face 25254 4230 4449 17048 Face 25255 4449 4352 17048 Face 25256 4352 4164 17048 Face 25257 4432 4451 17049 Face 25258 4451 4539 17049 Face 25259 4539 4487 17049 Face 25260 4487 4432 17049 Face 25261 4643 4640 17050 Face 25262 4640 4898 17050 Face 25263 4898 4910 17050 Face 25264 4910 4643 17050 Face 25265 4821 4717 17051 Face 25266 4717 4966 17051 Face 25267 4966 5026 17051 Face 25268 5026 4821 17051 Face 25269 4620 4765 17052 Face 25270 4765 4983 17052 Face 25271 4983 4886 17052 Face 25272 4886 4620 17052 Face 25273 4558 4532 17053 Face 25274 4532 4828 17053 Face 25275 4828 4853 17053 Face 25276 4853 4558 17053 Face 25277 5160 5150 17054 Face 25278 5150 5403 17054 Face 25279 5403 5409 17054 Face 25280 5409 5160 17054 Face 25281 5211 5181 17055 Face 25282 5181 5415 17055 Face 25283 5415 5426 17055 Face 25284 5426 5211 17055 Face 25285 5128 5183 17056 Face 25286 5183 5416 17056 Face 25287 5416 5398 17056 Face 25288 5398 5128 17056 Face 25289 5064 5079 17057 Face 25290 5079 5331 17057 Face 25291 5331 5262 17057 Face 25292 5262 5064 17057 Face 25293 5097 5072 17058 Face 25294 5072 5218 17058 Face 25295 5218 5234 17058 Face 25296 5234 5097 17058 Face 25297 5370 5366 17059 Face 25298 5366 5468 17059 Face 25299 5468 5471 17059 Face 25300 5471 5370 17059 Face 25301 4789 4761 17060 Face 25302 4761 4951 17060 Face 25303 4951 4978 17060 Face 25304 4978 4789 17060 Face 25305 5115 5112 17061 Face 25306 5112 5227 17061 Face 25307 5227 5200 17061 Face 25308 5200 5115 17061 Face 25309 5386 5376 17062 Face 25310 5376 5472 17062 Face 25311 5472 5477 17062 Face 25312 5477 5386 17062 Face 25313 5197 5208 17063 Face 25314 5208 5257 17063 Face 25315 5257 5249 17063 Face 25316 5249 5197 17063 Face 25317 5297 5354 17064 Face 25318 5354 5466 17064 Face 25319 5466 5453 17064 Face 25320 5453 5297 17064 Face 25321 5270 5448 17065 Face 25322 5448 5443 17065 Face 25323 5443 5260 17065 Face 25324 5260 5270 17065 Face 25325 5053 5151 17066 Face 25326 5151 5129 17066 Face 25327 5129 5034 17066 Face 25328 5034 5053 17066 Face 25329 4772 4936 17067 Face 25330 4936 4897 17067 Face 25331 4897 4753 17067 Face 25332 4753 4772 17067 Face 25333 4607 4681 17068 Face 25334 4681 4646 17068 Face 25335 4646 4559 17068 Face 25336 4559 4607 17068 Face 25337 4579 4533 17069 Face 25338 4533 4546 17069 Face 25339 4546 4592 17069 Face 25340 4592 4579 17069 Face 25341 4505 4496 17070 Face 25342 4496 4603 17070 Face 25343 4603 4598 17070 Face 25344 4598 4505 17070 Face 25345 4636 4543 17071 Face 25346 4543 4623 17071 Face 25347 4623 4693 17071 Face 25348 4693 4636 17071 Face 25349 4762 4728 17072 Face 25350 4728 4849 17072 Face 25351 4849 4861 17072 Face 25352 4861 4762 17072 Face 25353 4918 4914 17073 Face 25354 4914 4960 17073 Face 25355 4960 4979 17073 Face 25356 4979 4918 17073 Face 25357 5047 5025 17074 Face 25358 5025 5120 17074 Face 25359 5120 5140 17074 Face 25360 5140 5047 17074 Face 25361 5263 5248 17075 Face 25362 5248 5440 17075 Face 25363 5440 5444 17075 Face 25364 5444 5263 17075 Face 25365 4768 4778 17076 Face 25366 4778 4755 17076 Face 25367 4755 4752 17076 Face 25368 4752 4768 17076 Face 25369 4838 4868 17077 Face 25370 4868 4923 17077 Face 25371 4923 4831 17077 Face 25372 4831 4838 17077 Face 25373 4969 4945 17078 Face 25374 4945 5010 17078 Face 25375 5010 5081 17078 Face 25376 5081 4969 17078 Face 25377 5000 5138 17079 Face 25378 5138 5179 17079 Face 25379 5179 5041 17079 Face 25380 5041 5000 17079 Face 25381 5420 5321 17080 Face 25382 5321 5182 17080 Face 25383 5182 5289 17080 Face 25384 5289 5420 17080 Face 25385 4631 4614 17081 Face 25386 4614 4802 17081 Face 25387 4802 4839 17081 Face 25388 4839 4631 17081 Face 25389 4676 4658 17082 Face 25390 4658 4858 17082 Face 25391 4858 4864 17082 Face 25392 4864 4676 17082 Face 25393 4965 4950 17083 Face 25394 4950 5035 17083 Face 25395 5035 5039 17083 Face 25396 5039 4965 17083 Face 25397 4984 4972 17084 Face 25398 4972 5050 17084 Face 25399 5050 5078 17084 Face 25400 5078 4984 17084 Face 25401 5033 5002 17085 Face 25402 5002 5100 17085 Face 25403 5100 5125 17085 Face 25404 5125 5033 17085 Face 25405 5124 5116 17086 Face 25406 5116 5185 17086 Face 25407 5185 5196 17086 Face 25408 5196 5124 17086 Face 25409 5165 5141 17087 Face 25410 5141 5214 17087 Face 25411 5214 5237 17087 Face 25412 5237 5165 17087 Face 25413 5187 5176 17088 Face 25414 5176 5254 17088 Face 25415 5254 5255 17088 Face 25416 5255 5187 17088 Face 25417 5314 5298 17089 Face 25418 5298 5454 17089 Face 25419 5454 5459 17089 Face 25420 5459 5314 17089 Face 25421 5338 5328 17090 Face 25422 5328 5460 17090 Face 25423 5460 5464 17090 Face 25424 5464 5338 17090 Face 25425 5334 5346 17091 Face 25426 5346 5465 17091 Face 25427 5465 5463 17091 Face 25428 5463 5334 17091 Face 25429 2810 2860 17092 Face 25430 2860 2870 17092 Face 25431 2870 2826 17092 Face 25432 2826 2810 17092 Face 25433 2848 2839 17093 Face 25434 2839 2878 17093 Face 25435 2878 2892 17093 Face 25436 2892 2848 17093 Face 25437 2931 2908 17094 Face 25438 2908 2913 17094 Face 25439 2913 2951 17094 Face 25440 2951 2931 17094 Face 25441 2922 2891 17095 Face 25442 2891 2849 17095 Face 25443 2849 2864 17095 Face 25444 2864 2922 17095 Face 25445 2813 2797 17096 Face 25446 2797 2722 17096 Face 25447 2722 2752 17096 Face 25448 2752 2813 17096 Face 25449 2716 2682 17097 Face 25450 2682 2661 17097 Face 25451 2661 2696 17097 Face 25452 2696 2716 17097 Face 25453 2707 2669 17098 Face 25454 2669 2695 17098 Face 25455 2695 2731 17098 Face 25456 2731 2707 17098 Face 25457 2809 2774 17099 Face 25458 2774 2881 17099 Face 25459 2881 2944 17099 Face 25460 2944 2809 17099 Face 25461 3082 3026 17100 Face 25462 3026 3130 17100 Face 25463 3130 3166 17100 Face 25464 3166 3082 17100 Face 25465 3215 3187 17101 Face 25466 3187 3201 17101 Face 25467 3201 3243 17101 Face 25468 3243 3215 17101 Face 25469 3035 3131 17102 Face 25470 3131 3133 17102 Face 25471 3133 3070 17102 Face 25472 3070 3035 17102 Face 25473 2999 3080 17103 Face 25474 3080 2930 17103 Face 25475 2930 2846 17103 Face 25476 2846 2999 17103 Face 25477 2742 2818 17104 Face 25478 2818 2715 17104 Face 25479 2715 2652 17104 Face 25480 2652 2742 17104 Face 25481 2593 2642 17105 Face 25482 2642 2617 17105 Face 25483 2617 2556 17105 Face 25484 2556 2593 17105 Face 25485 2568 2618 17106 Face 25486 2618 2644 17106 Face 25487 2644 2619 17106 Face 25488 2619 2568 17106 Face 25489 2680 2700 17107 Face 25490 2700 2776 17107 Face 25491 2776 2749 17107 Face 25492 2749 2680 17107 Face 25493 2807 2829 17108 Face 25494 2829 2871 17108 Face 25495 2871 2852 17108 Face 25496 2852 2807 17108 Face 25497 2868 2884 17109 Face 25498 2884 2875 17109 Face 25499 2875 2851 17109 Face 25500 2851 2868 17109 Face 25501 2816 2844 17110 Face 25502 2844 2788 17110 Face 25503 2788 2759 17110 Face 25504 2759 2816 17110 Face 25505 2630 2655 17111 Face 25506 2655 2725 17111 Face 25507 2725 2705 17111 Face 25508 2705 2630 17111 Face 25509 2760 2783 17112 Face 25510 2783 2828 17112 Face 25511 2828 2801 17112 Face 25512 2801 2760 17112 Face 25513 2814 2845 17113 Face 25514 2845 2827 17113 Face 25515 2827 2802 17113 Face 25516 2802 2814 17113 Face 25517 2765 2789 17114 Face 25518 2789 2724 17114 Face 25519 2724 2694 17114 Face 25520 2694 2765 17114 Face 25521 2626 2671 17115 Face 25522 2671 2612 17115 Face 25523 2612 2548 17115 Face 25524 2548 2626 17115 Face 25525 2876 2821 17116 Face 25526 2821 2873 17116 Face 25527 2873 2926 17116 Face 25528 2926 2876 17116 Face 25529 2929 2937 17117 Face 25530 2937 2976 17117 Face 25531 2976 2984 17117 Face 25532 2984 2929 17117 Face 25533 2974 2952 17118 Face 25534 2952 2882 17118 Face 25535 2882 2907 17118 Face 25536 2907 2974 17118 Face 25537 2850 2831 17119 Face 25538 2831 2777 17119 Face 25539 2777 2790 17119 Face 25540 2790 2850 17119 Face 25541 2763 2738 17120 Face 25542 2738 2728 17120 Face 25543 2728 2772 17120 Face 25544 2772 2763 17120 Face 25545 2793 2746 17121 Face 25546 2746 2781 17121 Face 25547 2781 2838 17121 Face 25548 2838 2793 17121 Face 25549 2939 2863 17122 Face 25550 2863 3028 17122 Face 25551 3028 3117 17122 Face 25552 3117 2939 17122 Face 25553 3220 3149 17123 Face 25554 3149 3218 17123 Face 25555 3218 3307 17123 Face 25556 3307 3220 17123 Face 25557 3375 3280 17124 Face 25558 3280 3324 17124 Face 25559 3324 3430 17124 Face 25560 3430 3375 17124 Face 25561 3558 3683 17125 Face 25562 3683 3584 17125 Face 25563 3584 3487 17125 Face 25564 3487 3558 17125 Face 25565 3403 3491 17126 Face 25566 3491 3389 17126 Face 25567 3389 3306 17126 Face 25568 3306 3403 17126 Face 25569 3189 3257 17127 Face 25570 3257 3106 17127 Face 25571 3106 3031 17127 Face 25572 3031 3189 17127 Face 25573 2898 2989 17128 Face 25574 2989 2904 17128 Face 25575 2904 2842 17128 Face 25576 2842 2898 17128 Face 25577 2808 2866 17129 Face 25578 2866 2858 17129 Face 25579 2858 2800 17129 Face 25580 2800 2808 17129 Face 25581 2986 2988 17130 Face 25582 2988 2985 17130 Face 25583 2985 2940 17130 Face 25584 2940 2986 17130 Face 25585 2947 3005 17131 Face 25586 3005 3050 17131 Face 25587 3050 2996 17131 Face 25588 2996 2947 17131 Face 25589 2865 2899 17132 Face 25590 2899 2946 17132 Face 25591 2946 2914 17132 Face 25592 2914 2865 17132 Face 25593 2836 2847 17133 Face 25594 2847 2889 17133 Face 25595 2889 2867 17133 Face 25596 2867 2836 17133 Face 25597 2787 2817 17134 Face 25598 2817 2835 17134 Face 25599 2835 2791 17134 Face 25600 2791 2787 17134 Face 25601 2709 2751 17135 Face 25602 2751 2729 17135 Face 25603 2729 2674 17135 Face 25604 2674 2709 17135 Face 25605 5353 5364 17136 Face 25606 5364 5082 17136 Face 25607 5082 5056 17136 Face 25608 5056 5353 17136 Face 25609 4585 4679 17137 Face 25610 4679 4203 17137 Face 25611 4203 4105 17137 Face 25612 4105 4585 17137 Face 25613 3848 3961 17138 Face 25614 3961 3842 17138 Face 25615 3842 3698 17138 Face 25616 3698 3848 17138 Face 25617 3577 3676 17139 Face 25618 3676 3527 17139 Face 25619 3527 3456 17139 Face 25620 3456 3577 17139 Face 25621 3319 3372 17140 Face 25622 3372 3204 17140 Face 25623 3204 3164 17140 Face 25624 3164 3319 17140 Face 25625 2979 3099 17141 Face 25626 3099 3127 17141 Face 25627 3127 2983 17141 Face 25628 2983 2979 17141 Face 25629 3081 3168 17142 Face 25630 3168 3184 17142 Face 25631 3184 3113 17142 Face 25632 3113 3081 17142 Face 25633 5337 5347 17143 Face 25634 5347 5049 17143 Face 25635 5049 5029 17143 Face 25636 5029 5337 17143 Face 25637 5360 5343 17144 Face 25638 5343 5037 17144 Face 25639 5037 5077 17144 Face 25640 5077 5360 17144 Face 25641 4684 4729 17145 Face 25642 4729 4370 17145 Face 25643 4370 4333 17145 Face 25644 4333 4684 17145 Face 25645 4697 4682 17146 Face 25646 4682 4306 17146 Face 25647 4306 4284 17146 Face 25648 4284 4697 17146 Face 25649 4050 4119 17147 Face 25650 4119 4022 17147 Face 25651 4022 3937 17147 Face 25652 3937 4050 17147 Face 25653 4008 4124 17148 Face 25654 4124 3964 17148 Face 25655 3964 3854 17148 Face 25656 3854 4008 17148 Face 25657 3767 3895 17149 Face 25658 3895 3717 17149 Face 25659 3717 3607 17149 Face 25660 3607 3767 17149 Face 25661 3468 3594 17150 Face 25662 3594 3533 17150 Face 25663 3533 3327 17150 Face 25664 3327 3468 17150 Face 25665 3679 3865 17151 Face 25666 3865 3862 17151 Face 25667 3862 3694 17151 Face 25668 3694 3679 17151 Face 25669 3275 3505 17152 Face 25670 3505 3529 17152 Face 25671 3529 3308 17152 Face 25672 3308 3275 17152 Face 25673 3716 3899 17153 Face 25674 3899 3993 17153 Face 25675 3993 3730 17153 Face 25676 3730 3716 17153 Face 25677 3321 3540 17154 Face 25678 3540 3536 17154 Face 25679 3536 3326 17154 Face 25680 3326 3321 17154 Face 25681 4747 4330 17155 Face 25682 4330 4298 17155 Face 25683 4298 4743 17155 Face 25684 4743 4747 17155 Face 25685 4727 4265 17156 Face 25686 4265 4201 17156 Face 25687 4201 4695 17156 Face 25688 4695 4727 17156 Face 25689 5387 5098 17157 Face 25690 5098 5107 17157 Face 25691 5107 5391 17157 Face 25692 5391 5387 17157 Face 25693 5393 5113 17158 Face 25694 5113 5110 17158 Face 25695 5110 5392 17158 Face 25696 5392 5393 17158 Face 25697 5462 5458 17159 Face 25698 5458 5309 17159 Face 25699 5309 5332 17159 Face 25700 5332 5462 17159 Face 25701 5478 5467 17160 Face 25702 5467 5365 17160 Face 25703 5365 5397 17160 Face 25704 5397 5478 17160 Face 25705 5276 5259 17161 Face 25706 5259 5153 17161 Face 25707 5153 5149 17161 Face 25708 5149 5276 17161 Face 25709 5217 5326 17162 Face 25710 5326 5103 17162 Face 25711 5103 5095 17162 Face 25712 5095 5217 17162 Face 25713 5051 5146 17163 Face 25714 5146 5012 17163 Face 25715 5012 4882 17163 Face 25716 4882 5051 17163 Face 25717 4967 4992 17164 Face 25718 4992 4769 17164 Face 25719 4769 4738 17164 Face 25720 4738 4967 17164 Face 25721 4645 4846 17165 Face 25722 4846 4555 17165 Face 25723 4555 4386 17165 Face 25724 4386 4645 17165 Face 25725 4454 4494 17166 Face 25726 4494 4307 17166 Face 25727 4307 4292 17166 Face 25728 4292 4454 17166 Face 25729 4441 4595 17167 Face 25730 4595 4186 17167 Face 25731 4186 4191 17167 Face 25732 4191 4441 17167 Face 25733 4211 4325 17168 Face 25734 4325 4143 17168 Face 25735 4143 4042 17168 Face 25736 4042 4211 17168 Face 25737 4123 4138 17169 Face 25738 4138 3988 17169 Face 25739 3988 3957 17169 Face 25740 3957 4123 17169 Face 25741 3900 3999 17170 Face 25742 3999 3870 17170 Face 25743 3870 3749 17170 Face 25744 3749 3900 17170 Face 25745 3757 3840 17171 Face 25746 3840 3667 17171 Face 25747 3667 3588 17171 Face 25748 3588 3757 17171 Face 25749 3148 3400 17172 Face 25750 3400 3477 17172 Face 25751 3477 3191 17172 Face 25752 3191 3148 17172 Face 25753 2743 2887 17173 Face 25754 2887 2903 17173 Face 25755 2903 2730 17173 Face 25756 2730 2743 17173 Face 25757 3239 3551 17174 Face 25758 3551 3623 17174 Face 25759 3623 3300 17174 Face 25760 3300 3239 17174 Face 25761 2713 2918 17175 Face 25762 2918 2941 17175 Face 25763 2941 2679 17175 Face 25764 2679 2713 17175 Face 25765 3348 3685 17176 Face 25766 3685 3746 17176 Face 25767 3746 3392 17176 Face 25768 3392 3348 17176 Face 25769 2665 2977 17177 Face 25770 2977 3000 17177 Face 25771 3000 2673 17177 Face 25772 2673 2665 17177 Face 25773 3428 3833 17178 Face 25774 3833 3886 17178 Face 25775 3886 3483 17178 Face 25776 3483 3428 17178 Face 25777 2681 3034 17179 Face 25778 3034 3083 17179 Face 25779 3083 2697 17179 Face 25780 2697 2681 17179 Face 25781 3519 3936 17180 Face 25782 3936 3990 17180 Face 25783 3990 3545 17180 Face 25784 3545 3519 17180 Face 25785 2726 3121 17181 Face 25786 3121 3154 17181 Face 25787 3154 2775 17181 Face 25788 2775 2726 17181 Face 25789 3708 4233 17182 Face 25790 4233 4807 17182 Face 25791 4807 4023 17182 Face 25792 4023 3708 17182 Face 25793 2917 3303 17183 Face 25794 3303 3546 17183 Face 25795 3546 3232 17183 Face 25796 3232 2917 17183 Face 25797 4238 5119 17184 Face 25798 5119 5164 17184 Face 25799 5164 4332 17184 Face 25800 4332 4238 17184 Face 25801 3502 3743 17185 Face 25802 3743 3952 17185 Face 25803 3952 3748 17185 Face 25804 3748 3502 17185 Face 25805 2587 2640 17186 Face 25806 2640 2628 17186 Face 25807 2628 2586 17186 Face 25808 2586 2587 17186 Face 25809 2538 2596 17187 Face 25810 2596 2513 17187 Face 25811 2513 2418 17187 Face 25812 2418 2538 17187 Face 25813 2320 2457 17188 Face 25814 2457 2445 17188 Face 25815 2445 2275 17188 Face 25816 2275 2320 17188 Face 25817 2253 2444 17189 Face 25818 2444 2456 17189 Face 25819 2456 2245 17189 Face 25820 2245 2253 17189 Face 25821 2279 2487 17190 Face 25822 2487 2546 17190 Face 25823 2546 2368 17190 Face 25824 2368 2279 17190 Face 25825 2468 2675 17191 Face 25826 2675 2861 17191 Face 25827 2861 2592 17191 Face 25828 2592 2468 17191 Face 25829 2721 3167 17192 Face 25830 3167 3446 17192 Face 25831 3446 2910 17192 Face 25832 2910 2721 17192 Face 25833 3808 4089 17193 Face 25834 4089 3792 17193 Face 25835 3792 3611 17193 Face 25836 3611 3808 17193 Face 25837 3613 3695 17194 Face 25838 3695 3435 17194 Face 25839 3435 3384 17194 Face 25840 3384 3613 17194 Face 25841 3439 3539 17195 Face 25842 3539 3325 17195 Face 25843 3325 3265 17195 Face 25844 3265 3439 17195 Face 25845 3172 3200 17196 Face 25846 3200 3047 17196 Face 25847 3047 3058 17196 Face 25848 3058 3172 17196 Face 25849 3120 3147 17197 Face 25850 3147 3046 17197 Face 25851 3046 3010 17197 Face 25852 3010 3120 17197 Face 25853 2869 2923 17198 Face 25854 2923 2785 17198 Face 25855 2785 2733 17198 Face 25856 2733 2869 17198 Face 25857 2629 2685 17199 Face 25858 2685 2602 17199 Face 25859 2602 2543 17199 Face 25860 2543 2629 17199 Face 25861 2455 2526 17200 Face 25862 2526 2474 17200 Face 25863 2474 2377 17200 Face 25864 2377 2455 17200 Face 25865 2378 2478 17201 Face 25866 2478 2535 17201 Face 25867 2535 2459 17201 Face 25868 2459 2378 17201 Face 25869 2540 2598 17202 Face 25870 2598 2660 17202 Face 25871 2660 2607 17202 Face 25872 2607 2540 17202 Face 25873 2633 2710 17203 Face 25874 2710 2744 17203 Face 25875 2744 2666 17203 Face 25876 2666 2633 17203 Face 25877 2678 2761 17204 Face 25878 2761 2745 17204 Face 25879 2745 2672 17204 Face 25880 2672 2678 17204 Face 25881 2643 2714 17205 Face 25882 2714 2658 17205 Face 25883 2658 2616 17205 Face 25884 2616 2643 17205 Face 25885 2554 2595 17206 Face 25886 2595 2492 17206 Face 25887 2492 2449 17206 Face 25888 2449 2554 17206 Face 25889 2272 2476 17207 Face 25890 2476 2430 17207 Face 25891 2430 2223 17207 Face 25892 2223 2272 17207 Face 25893 2435 2394 17208 Face 25894 2394 2462 17208 Face 25895 2462 2502 17208 Face 25896 2502 2435 17208 Face 25897 2153 2270 17209 Face 25898 2270 2355 17209 Face 25899 2355 2235 17209 Face 25900 2235 2153 17209 Face 25901 2144 2157 17210 Face 25902 2157 2003 17210 Face 25903 2003 1993 17210 Face 25904 1993 2144 17210 Face 25905 2056 2026 17211 Face 25906 2026 2176 17211 Face 25907 2176 2217 17211 Face 25908 2217 2056 17211 Face 25909 2356 2466 17212 Face 25910 2466 2498 17212 Face 25911 2498 2389 17212 Face 25912 2389 2356 17212 Face 25913 2534 2559 17213 Face 25914 2559 2458 17213 Face 25915 2458 2422 17213 Face 25916 2422 2534 17213 Face 25917 2266 2339 17214 Face 25918 2339 2198 17214 Face 25919 2198 2107 17214 Face 25920 2107 2266 17214 Face 25921 2251 2244 17215 Face 25922 2244 2380 17215 Face 25923 2380 2391 17215 Face 25924 2391 2251 17215 Face 25925 2482 2579 17216 Face 25926 2579 2580 17216 Face 25927 2580 2485 17216 Face 25928 2485 2482 17216 Face 25929 2083 2011 17217 Face 25930 2011 2023 17217 Face 25931 2023 2110 17217 Face 25932 2110 2083 17217 Face 25933 2126 2024 17218 Face 25934 2024 2014 17218 Face 25935 2014 2119 17218 Face 25936 2119 2126 17218 Face 25937 2075 1969 17219 Face 25938 1969 1894 17219 Face 25939 1894 2006 17219 Face 25940 2006 2075 17219 Face 25941 1921 1837 17220 Face 25942 1837 1796 17220 Face 25943 1796 1885 17220 Face 25944 1885 1921 17220 Face 25945 1853 1776 17221 Face 25946 1776 1759 17221 Face 25947 1759 1828 17221 Face 25948 1828 1853 17221 Face 25949 1827 1750 17222 Face 25950 1750 1740 17222 Face 25951 1740 1847 17222 Face 25952 1847 1827 17222 Face 25953 1815 1734 17223 Face 25954 1734 1724 17223 Face 25955 1724 1775 17223 Face 25956 1775 1815 17223 Face 25957 1771 1723 17224 Face 25958 1723 1733 17224 Face 25959 1733 1789 17224 Face 25960 1789 1771 17224 Face 25961 2109 2204 17225 Face 25962 2204 2169 17225 Face 25963 2169 2105 17225 Face 25964 2105 2109 17225 Face 25965 2228 2219 17226 Face 25966 2219 2111 17226 Face 25967 2111 2117 17226 Face 25968 2117 2228 17226 Face 25969 2132 2210 17227 Face 25970 2210 2086 17227 Face 25971 2086 2032 17227 Face 25972 2032 2132 17227 Face 25973 2039 2077 17228 Face 25974 2077 1967 17228 Face 25975 1967 1906 17228 Face 25976 1906 2039 17228 Face 25977 1790 1925 17229 Face 25978 1925 1989 17229 Face 25979 1989 1845 17229 Face 25980 1845 1790 17229 Face 25981 1875 1758 17230 Face 25982 1758 1756 17230 Face 25983 1756 1846 17230 Face 25984 1846 1875 17230 Face 25985 2013 2181 17231 Face 25986 2181 2164 17231 Face 25987 2164 1975 17231 Face 25988 1975 2013 17231 Face 25989 1959 2163 17232 Face 25990 2163 2171 17232 Face 25991 2171 1978 17232 Face 25992 1978 1959 17232 Face 25993 1823 1825 17233 Face 25994 1825 1757 17233 Face 25995 1757 1760 17233 Face 25996 1760 1823 17233 Face 25997 2035 2073 17234 Face 25998 2073 2159 17234 Face 25999 2159 2114 17234 Face 26000 2114 2035 17234 Face 26001 1857 1907 17235 Face 26002 1907 1862 17235 Face 26003 1862 1806 17235 Face 26004 1806 1857 17235 Face 26005 1849 1858 17236 Face 26006 1858 1778 17236 Face 26007 1778 1782 17236 Face 26008 1782 1849 17236 Face 26009 1763 1769 17237 Face 26010 1769 1855 17237 Face 26011 1855 1830 17237 Face 26012 1830 1763 17237 Face 26013 1816 1838 17238 Face 26014 1838 1868 17238 Face 26015 1868 1851 17238 Face 26016 1851 1816 17238 Face 26017 1913 2064 17239 Face 26018 2064 2047 17239 Face 26019 2047 1924 17239 Face 26020 1924 1913 17239 Face 26021 1902 1938 17240 Face 26022 1938 1905 17240 Face 26023 1905 1876 17240 Face 26024 1876 1902 17240 Face 26025 1854 1882 17241 Face 26026 1882 1893 17241 Face 26027 1893 1842 17241 Face 26028 1842 1854 17241 Face 26029 1822 1886 17242 Face 26030 1886 1860 17242 Face 26031 1860 1805 17242 Face 26032 1805 1822 17242 Face 26033 1812 1867 17243 Face 26034 1867 1903 17243 Face 26035 1903 1852 17243 Face 26036 1852 1812 17243 Face 26037 1891 1931 17244 Face 26038 1931 1963 17244 Face 26039 1963 1916 17244 Face 26040 1916 1891 17244 Face 26041 1996 2001 17245 Face 26042 2001 1956 17245 Face 26043 1956 1987 17245 Face 26044 1987 1996 17245 Face 26045 2199 2042 17246 Face 26046 2042 2062 17246 Face 26047 2062 2200 17246 Face 26048 2200 2199 17246 Face 26049 2152 2178 17247 Face 26050 2178 2067 17247 Face 26051 2067 2061 17247 Face 26052 2061 2152 17247 Face 26053 2009 2017 17248 Face 26054 2017 1992 17248 Face 26055 1992 1979 17248 Face 26056 1979 2009 17248 Face 26057 1912 1940 17249 Face 26058 1940 1883 17249 Face 26059 1883 1856 17249 Face 26060 1856 1912 17249 Face 26061 1803 1819 17250 Face 26062 1819 1783 17250 Face 26063 1783 1779 17250 Face 26064 1779 1803 17250 Face 26065 1761 1766 17251 Face 26066 1766 1753 17251 Face 26067 1753 1744 17251 Face 26068 1744 1761 17251 Face 26069 1727 1742 17252 Face 26070 1742 1735 17252 Face 26071 1735 1719 17252 Face 26072 1719 1727 17252 Face 26073 1714 1730 17253 Face 26074 1730 1729 17253 Face 26075 1729 1715 17253 Face 26076 1715 1714 17253 Face 26077 1716 1725 17254 Face 26078 1725 1722 17254 Face 26079 1722 1717 17254 Face 26080 1717 1716 17254 Face 26081 1721 1731 17255 Face 26082 1731 1745 17255 Face 26083 1745 1746 17255 Face 26084 1746 1721 17255 Face 26085 1767 1764 17256 Face 26086 1764 1787 17256 Face 26087 1787 1786 17256 Face 26088 1786 1767 17256 Face 26089 1839 1896 17257 Face 26090 1896 1892 17257 Face 26091 1892 1826 17257 Face 26092 1826 1839 17257 Face 26093 2043 1955 17258 Face 26094 1955 1971 17258 Face 26095 1971 2045 17258 Face 26096 2045 2043 17258 Face 26097 1821 1747 17259 Face 26098 1747 1770 17259 Face 26099 1770 1869 17259 Face 26100 1869 1821 17259 Face 26101 1793 1835 17260 Face 26102 1835 1965 17260 Face 26103 1965 1910 17260 Face 26104 1910 1793 17260 Face 26105 1884 1926 17261 Face 26106 1926 2038 17261 Face 26107 2038 2012 17261 Face 26108 2012 1884 17261 Face 26109 7002 6963 17262 Face 26110 6963 6756 17262 Face 26111 6756 6806 17262 Face 26112 6806 7002 17262 Face 26113 7173 7138 17263 Face 26114 7138 6963 17263 Face 26115 6963 7002 17263 Face 26116 7002 7173 17263 Face 26117 7378 7333 17264 Face 26118 7333 7138 17264 Face 26119 7138 7173 17264 Face 26120 7173 7378 17264 Face 26121 7524 7488 17265 Face 26122 7488 7333 17265 Face 26123 7333 7378 17265 Face 26124 7378 7524 17265 Face 26125 7672 7639 17266 Face 26126 7639 7488 17266 Face 26127 7488 7524 17266 Face 26128 7524 7672 17266 Face 26129 7818 7779 17267 Face 26130 7779 7639 17267 Face 26131 7639 7672 17267 Face 26132 7672 7818 17267 Face 26133 7921 7887 17268 Face 26134 7887 7779 17268 Face 26135 7779 7818 17268 Face 26136 7818 7921 17268 Face 26137 8014 7969 17269 Face 26138 7969 7887 17269 Face 26139 7887 7921 17269 Face 26140 7921 8014 17269 Face 26141 8086 8036 17270 Face 26142 8036 7969 17270 Face 26143 7969 8014 17270 Face 26144 8014 8086 17270 Face 26145 8111 8053 17271 Face 26146 8053 8036 17271 Face 26147 8036 8086 17271 Face 26148 8086 8111 17271 Face 26149 8087 8037 17272 Face 26150 8037 8053 17272 Face 26151 8053 8111 17272 Face 26152 8111 8087 17272 Face 26153 8015 7970 17273 Face 26154 7970 8037 17273 Face 26155 8037 8087 17273 Face 26156 8087 8015 17273 Face 26157 7922 7888 17274 Face 26158 7888 7970 17274 Face 26159 7970 8015 17274 Face 26160 8015 7922 17274 Face 26161 7819 7780 17275 Face 26162 7780 7888 17275 Face 26163 7888 7922 17275 Face 26164 7922 7819 17275 Face 26165 7673 7640 17276 Face 26166 7640 7780 17276 Face 26167 7780 7819 17276 Face 26168 7819 7673 17276 Face 26169 7525 7489 17277 Face 26170 7489 7640 17277 Face 26171 7640 7673 17277 Face 26172 7673 7525 17277 Face 26173 7379 7334 17278 Face 26174 7334 7489 17278 Face 26175 7489 7525 17278 Face 26176 7525 7379 17278 Face 26177 7174 7139 17279 Face 26178 7139 7334 17279 Face 26179 7334 7379 17279 Face 26180 7379 7174 17279 Face 26181 7003 6964 17280 Face 26182 6964 7139 17280 Face 26183 7139 7174 17280 Face 26184 7174 7003 17280 Face 26185 6807 6757 17281 Face 26186 6757 6964 17281 Face 26187 6964 7003 17281 Face 26188 7003 6807 17281 Face 26189 6622 6562 17282 Face 26190 6562 6757 17282 Face 26191 6757 6807 17282 Face 26192 6807 6622 17282 Face 26193 6342 6269 17283 Face 26194 6269 6562 17283 Face 26195 6562 6622 17283 Face 26196 6622 6342 17283 Face 26197 6086 6020 17284 Face 26198 6020 6269 17284 Face 26199 6269 6342 17284 Face 26200 6342 6086 17284 Face 26201 5888 5842 17285 Face 26202 5842 6020 17285 Face 26203 6020 6086 17285 Face 26204 6086 5888 17285 Face 26205 5717 5649 17286 Face 26206 5649 5842 17286 Face 26207 5842 5888 17286 Face 26208 5888 5717 17286 Face 26209 5572 5488 17287 Face 26210 5488 5649 17287 Face 26211 5649 5717 17287 Face 26212 5717 5572 17287 Face 26213 5457 5385 17288 Face 26214 5385 5488 17288 Face 26215 5488 5572 17288 Face 26216 5572 5457 17288 Face 26217 5368 5288 17289 Face 26218 5288 5385 17289 Face 26219 5385 5457 17289 Face 26220 5457 5368 17289 Face 26221 5305 5225 17290 Face 26222 5225 5288 17290 Face 26223 5288 5368 17290 Face 26224 5368 5305 17290 Face 26225 5293 5202 17291 Face 26226 5202 5225 17291 Face 26227 5225 5305 17291 Face 26228 5305 5293 17291 Face 26229 5304 5224 17292 Face 26230 5224 5202 17292 Face 26231 5202 5293 17292 Face 26232 5293 5304 17292 Face 26233 5367 5287 17293 Face 26234 5287 5224 17293 Face 26235 5224 5304 17293 Face 26236 5304 5367 17293 Face 26237 5456 5384 17294 Face 26238 5384 5287 17294 Face 26239 5287 5367 17294 Face 26240 5367 5456 17294 Face 26241 5571 5487 17295 Face 26242 5487 5384 17295 Face 26243 5384 5456 17295 Face 26244 5456 5571 17295 Face 26245 5716 5648 17296 Face 26246 5648 5487 17296 Face 26247 5487 5571 17296 Face 26248 5571 5716 17296 Face 26249 5887 5841 17297 Face 26250 5841 5648 17297 Face 26251 5648 5716 17297 Face 26252 5716 5887 17297 Face 26253 6085 6019 17298 Face 26254 6019 5841 17298 Face 26255 5841 5887 17298 Face 26256 5887 6085 17298 Face 26257 6341 6268 17299 Face 26258 6268 6019 17299 Face 26259 6019 6085 17299 Face 26260 6085 6341 17299 Face 26261 6621 6561 17300 Face 26262 6561 6268 17300 Face 26263 6268 6341 17300 Face 26264 6341 6621 17300 Face 26265 6806 6756 17301 Face 26266 6756 6561 17301 Face 26267 6561 6621 17301 Face 26268 6621 6806 17301 Face 26269 7033 7002 17302 Face 26270 7002 6806 17302 Face 26271 6806 6861 17302 Face 26272 6861 7033 17302 Face 26273 7206 7173 17303 Face 26274 7173 7002 17303 Face 26275 7002 7033 17303 Face 26276 7033 7206 17303 Face 26277 7399 7378 17304 Face 26278 7378 7173 17304 Face 26279 7173 7206 17304 Face 26280 7206 7399 17304 Face 26281 7545 7524 17305 Face 26282 7524 7378 17305 Face 26283 7378 7399 17305 Face 26284 7399 7545 17305 Face 26285 7691 7672 17306 Face 26286 7672 7524 17306 Face 26287 7524 7545 17306 Face 26288 7545 7691 17306 Face 26289 7830 7818 17307 Face 26290 7818 7672 17307 Face 26291 7672 7691 17307 Face 26292 7691 7830 17307 Face 26293 7930 7921 17308 Face 26294 7921 7818 17308 Face 26295 7818 7830 17308 Face 26296 7830 7930 17308 Face 26297 8020 8014 17309 Face 26298 8014 7921 17309 Face 26299 7921 7930 17309 Face 26300 7930 8020 17309 Face 26301 8091 8086 17310 Face 26302 8086 8014 17310 Face 26303 8014 8020 17310 Face 26304 8020 8091 17310 Face 26305 8115 8111 17311 Face 26306 8111 8086 17311 Face 26307 8086 8091 17311 Face 26308 8091 8115 17311 Face 26309 8092 8087 17312 Face 26310 8087 8111 17312 Face 26311 8111 8115 17312 Face 26312 8115 8092 17312 Face 26313 8021 8015 17313 Face 26314 8015 8087 17313 Face 26315 8087 8092 17313 Face 26316 8092 8021 17313 Face 26317 7931 7922 17314 Face 26318 7922 8015 17314 Face 26319 8015 8021 17314 Face 26320 8021 7931 17314 Face 26321 7831 7819 17315 Face 26322 7819 7922 17315 Face 26323 7922 7931 17315 Face 26324 7931 7831 17315 Face 26325 7692 7673 17316 Face 26326 7673 7819 17316 Face 26327 7819 7831 17316 Face 26328 7831 7692 17316 Face 26329 7546 7525 17317 Face 26330 7525 7673 17317 Face 26331 7673 7692 17317 Face 26332 7692 7546 17317 Face 26333 7400 7379 17318 Face 26334 7379 7525 17318 Face 26335 7525 7546 17318 Face 26336 7546 7400 17318 Face 26337 7207 7174 17319 Face 26338 7174 7379 17319 Face 26339 7379 7400 17319 Face 26340 7400 7207 17319 Face 26341 7034 7003 17320 Face 26342 7003 7174 17320 Face 26343 7174 7207 17320 Face 26344 7207 7034 17320 Face 26345 6862 6807 17321 Face 26346 6807 7003 17321 Face 26347 7003 7034 17321 Face 26348 7034 6862 17321 Face 26349 6677 6622 17322 Face 26350 6622 6807 17322 Face 26351 6807 6862 17322 Face 26352 6862 6677 17322 Face 26353 6431 6342 17323 Face 26354 6342 6622 17323 Face 26355 6622 6677 17323 Face 26356 6677 6431 17323 Face 26357 6166 6086 17324 Face 26358 6086 6342 17324 Face 26359 6342 6431 17324 Face 26360 6431 6166 17324 Face 26361 5981 5888 17325 Face 26362 5888 6086 17325 Face 26363 6086 6166 17325 Face 26364 6166 5981 17325 Face 26365 5825 5717 17326 Face 26366 5717 5888 17326 Face 26367 5888 5981 17326 Face 26368 5981 5825 17326 Face 26369 5674 5572 17327 Face 26370 5572 5717 17327 Face 26371 5717 5825 17327 Face 26372 5825 5674 17327 Face 26373 5560 5457 17328 Face 26374 5457 5572 17328 Face 26375 5572 5674 17328 Face 26376 5674 5560 17328 Face 26377 5470 5368 17329 Face 26378 5368 5457 17329 Face 26379 5457 5560 17329 Face 26380 5560 5470 17329 Face 26381 5424 5305 17330 Face 26382 5305 5368 17330 Face 26383 5368 5470 17330 Face 26384 5470 5424 17330 Face 26385 5413 5293 17331 Face 26386 5293 5305 17331 Face 26387 5305 5424 17331 Face 26388 5424 5413 17331 Face 26389 5423 5304 17332 Face 26390 5304 5293 17332 Face 26391 5293 5413 17332 Face 26392 5413 5423 17332 Face 26393 5469 5367 17333 Face 26394 5367 5304 17333 Face 26395 5304 5423 17333 Face 26396 5423 5469 17333 Face 26397 5559 5456 17334 Face 26398 5456 5367 17334 Face 26399 5367 5469 17334 Face 26400 5469 5559 17334 Face 26401 5673 5571 17335 Face 26402 5571 5456 17335 Face 26403 5456 5559 17335 Face 26404 5559 5673 17335 Face 26405 5824 5716 17336 Face 26406 5716 5571 17336 Face 26407 5571 5673 17336 Face 26408 5673 5824 17336 Face 26409 5980 5887 17337 Face 26410 5887 5716 17337 Face 26411 5716 5824 17337 Face 26412 5824 5980 17337 Face 26413 6165 6085 17338 Face 26414 6085 5887 17338 Face 26415 5887 5980 17338 Face 26416 5980 6165 17338 Face 26417 6430 6341 17339 Face 26418 6341 6085 17339 Face 26419 6085 6165 17339 Face 26420 6165 6430 17339 Face 26421 6676 6621 17340 Face 26422 6621 6341 17340 Face 26423 6341 6430 17340 Face 26424 6430 6676 17340 Face 26425 6861 6806 17341 Face 26426 6806 6621 17341 Face 26427 6621 6676 17341 Face 26428 6676 6861 17341 Face 26429 7069 7033 17342 Face 26430 7033 6861 17342 Face 26431 6861 6910 17342 Face 26432 6910 7069 17342 Face 26433 7240 7206 17343 Face 26434 7206 7033 17343 Face 26435 7033 7069 17343 Face 26436 7069 7240 17343 Face 26437 7412 7399 17344 Face 26438 7399 7206 17344 Face 26439 7206 7240 17344 Face 26440 7240 7412 17344 Face 26441 7547 7545 17345 Face 26442 7545 7399 17345 Face 26443 7399 7412 17345 Face 26444 7412 7547 17345 Face 26445 7680 7691 17346 Face 26446 7691 7545 17346 Face 26447 7545 7547 17346 Face 26448 7547 7680 17346 Face 26449 7809 7830 17347 Face 26450 7830 7691 17347 Face 26451 7691 7680 17347 Face 26452 7680 7809 17347 Face 26453 7904 7930 17348 Face 26454 7930 7830 17348 Face 26455 7830 7809 17348 Face 26456 7809 7904 17348 Face 26457 7983 8020 17349 Face 26458 8020 7930 17349 Face 26459 7930 7904 17349 Face 26460 7904 7983 17349 Face 26461 8041 8091 17350 Face 26462 8091 8020 17350 Face 26463 8020 7983 17350 Face 26464 7983 8041 17350 Face 26465 8059 8115 17351 Face 26466 8115 8091 17351 Face 26467 8091 8041 17351 Face 26468 8041 8059 17351 Face 26469 8042 8092 17352 Face 26470 8092 8115 17352 Face 26471 8115 8059 17352 Face 26472 8059 8042 17352 Face 26473 7984 8021 17353 Face 26474 8021 8092 17353 Face 26475 8092 8042 17353 Face 26476 8042 7984 17353 Face 26477 7905 7931 17354 Face 26478 7931 8021 17354 Face 26479 8021 7984 17354 Face 26480 7984 7905 17354 Face 26481 7810 7831 17355 Face 26482 7831 7931 17355 Face 26483 7931 7905 17355 Face 26484 7905 7810 17355 Face 26485 7681 7692 17356 Face 26486 7692 7831 17356 Face 26487 7831 7810 17356 Face 26488 7810 7681 17356 Face 26489 7548 7546 17357 Face 26490 7546 7692 17357 Face 26491 7692 7681 17357 Face 26492 7681 7548 17357 Face 26493 7413 7400 17358 Face 26494 7400 7546 17358 Face 26495 7546 7548 17358 Face 26496 7548 7413 17358 Face 26497 7241 7207 17359 Face 26498 7207 7400 17359 Face 26499 7400 7413 17359 Face 26500 7413 7241 17359 Face 26501 7070 7034 17360 Face 26502 7034 7207 17360 Face 26503 7207 7241 17360 Face 26504 7241 7070 17360 Face 26505 6911 6862 17361 Face 26506 6862 7034 17361 Face 26507 7034 7070 17361 Face 26508 7070 6911 17361 Face 26509 6736 6677 17362 Face 26510 6677 6862 17362 Face 26511 6862 6911 17362 Face 26512 6911 6736 17362 Face 26513 6551 6431 17363 Face 26514 6431 6677 17363 Face 26515 6677 6736 17363 Face 26516 6736 6551 17363 Face 26517 6290 6166 17364 Face 26518 6166 6431 17364 Face 26519 6431 6551 17364 Face 26520 6551 6290 17364 Face 26521 6080 5981 17365 Face 26522 5981 6166 17365 Face 26523 6166 6290 17365 Face 26524 6290 6080 17365 Face 26525 5924 5825 17366 Face 26526 5825 5981 17366 Face 26527 5981 6080 17366 Face 26528 6080 5924 17366 Face 26529 5800 5674 17367 Face 26530 5674 5825 17367 Face 26531 5825 5924 17367 Face 26532 5924 5800 17367 Face 26533 5684 5560 17368 Face 26534 5560 5674 17368 Face 26535 5674 5800 17368 Face 26536 5800 5684 17368 Face 26537 5601 5470 17369 Face 26538 5470 5560 17369 Face 26539 5560 5684 17369 Face 26540 5684 5601 17369 Face 26541 5565 5424 17370 Face 26542 5424 5470 17370 Face 26543 5470 5601 17370 Face 26544 5601 5565 17370 Face 26545 5554 5413 17371 Face 26546 5413 5424 17371 Face 26547 5424 5565 17371 Face 26548 5565 5554 17371 Face 26549 5564 5423 17372 Face 26550 5423 5413 17372 Face 26551 5413 5554 17372 Face 26552 5554 5564 17372 Face 26553 5600 5469 17373 Face 26554 5469 5423 17373 Face 26555 5423 5564 17373 Face 26556 5564 5600 17373 Face 26557 5683 5559 17374 Face 26558 5559 5469 17374 Face 26559 5469 5600 17374 Face 26560 5600 5683 17374 Face 26561 5799 5673 17375 Face 26562 5673 5559 17375 Face 26563 5559 5683 17375 Face 26564 5683 5799 17375 Face 26565 5923 5824 17376 Face 26566 5824 5673 17376 Face 26567 5673 5799 17376 Face 26568 5799 5923 17376 Face 26569 6079 5980 17377 Face 26570 5980 5824 17377 Face 26571 5824 5923 17377 Face 26572 5923 6079 17377 Face 26573 6289 6165 17378 Face 26574 6165 5980 17378 Face 26575 5980 6079 17378 Face 26576 6079 6289 17378 Face 26577 6550 6430 17379 Face 26578 6430 6165 17379 Face 26579 6165 6289 17379 Face 26580 6289 6550 17379 Face 26581 6735 6676 17380 Face 26582 6676 6430 17380 Face 26583 6430 6550 17380 Face 26584 6550 6735 17380 Face 26585 6910 6861 17381 Face 26586 6861 6676 17381 Face 26587 6676 6735 17381 Face 26588 6735 6910 17381 Face 26589 7090 7069 17382 Face 26590 7069 6910 17382 Face 26591 6910 6950 17382 Face 26592 6950 7090 17382 Face 26593 7265 7240 17383 Face 26594 7240 7069 17383 Face 26595 7069 7090 17383 Face 26596 7090 7265 17383 Face 26597 7407 7412 17384 Face 26598 7412 7240 17384 Face 26599 7240 7265 17384 Face 26600 7265 7407 17384 Face 26601 7526 7547 17385 Face 26602 7547 7412 17385 Face 26603 7412 7407 17385 Face 26604 7407 7526 17385 Face 26605 7649 7680 17386 Face 26606 7680 7547 17386 Face 26607 7547 7526 17386 Face 26608 7526 7649 17386 Face 26609 7765 7809 17387 Face 26610 7809 7680 17387 Face 26611 7680 7649 17387 Face 26612 7649 7765 17387 Face 26613 7854 7904 17388 Face 26614 7904 7809 17388 Face 26615 7809 7765 17388 Face 26616 7765 7854 17388 Face 26617 7913 7983 17389 Face 26618 7983 7904 17389 Face 26619 7904 7854 17389 Face 26620 7854 7913 17389 Face 26621 7961 8041 17390 Face 26622 8041 7983 17390 Face 26623 7983 7913 17390 Face 26624 7913 7961 17390 Face 26625 7974 8059 17391 Face 26626 8059 8041 17391 Face 26627 8041 7961 17391 Face 26628 7961 7974 17391 Face 26629 7962 8042 17392 Face 26630 8042 8059 17392 Face 26631 8059 7974 17392 Face 26632 7974 7962 17392 Face 26633 7914 7984 17393 Face 26634 7984 8042 17393 Face 26635 8042 7962 17393 Face 26636 7962 7914 17393 Face 26637 7855 7905 17394 Face 26638 7905 7984 17394 Face 26639 7984 7914 17394 Face 26640 7914 7855 17394 Face 26641 7766 7810 17395 Face 26642 7810 7905 17395 Face 26643 7905 7855 17395 Face 26644 7855 7766 17395 Face 26645 7650 7681 17396 Face 26646 7681 7810 17396 Face 26647 7810 7766 17396 Face 26648 7766 7650 17396 Face 26649 7527 7548 17397 Face 26650 7548 7681 17397 Face 26651 7681 7650 17397 Face 26652 7650 7527 17397 Face 26653 7408 7413 17398 Face 26654 7413 7548 17398 Face 26655 7548 7527 17398 Face 26656 7527 7408 17398 Face 26657 7266 7241 17399 Face 26658 7241 7413 17399 Face 26659 7413 7408 17399 Face 26660 7408 7266 17399 Face 26661 7091 7070 17400 Face 26662 7070 7241 17400 Face 26663 7241 7266 17400 Face 26664 7266 7091 17400 Face 26665 6951 6911 17401 Face 26666 6911 7070 17401 Face 26667 7070 7091 17401 Face 26668 7091 6951 17401 Face 26669 6780 6736 17402 Face 26670 6736 6911 17402 Face 26671 6911 6951 17402 Face 26672 6951 6780 17402 Face 26673 6633 6551 17403 Face 26674 6551 6736 17403 Face 26675 6736 6780 17403 Face 26676 6780 6633 17403 Face 26677 6423 6290 17404 Face 26678 6290 6551 17404 Face 26679 6551 6633 17404 Face 26680 6633 6423 17404 Face 26681 6211 6080 17405 Face 26682 6080 6290 17405 Face 26683 6290 6423 17405 Face 26684 6423 6211 17405 Face 26685 6059 5924 17406 Face 26686 5924 6080 17406 Face 26687 6080 6211 17406 Face 26688 6211 6059 17406 Face 26689 5940 5800 17407 Face 26690 5800 5924 17407 Face 26691 5924 6059 17407 Face 26692 6059 5940 17407 Face 26693 5853 5684 17408 Face 26694 5684 5800 17408 Face 26695 5800 5940 17408 Face 26696 5940 5853 17408 Face 26697 5770 5601 17409 Face 26698 5601 5684 17409 Face 26699 5684 5853 17409 Face 26700 5853 5770 17409 Face 26701 5726 5565 17410 Face 26702 5565 5601 17410 Face 26703 5601 5770 17410 Face 26704 5770 5726 17410 Face 26705 5709 5554 17411 Face 26706 5554 5565 17411 Face 26707 5565 5726 17411 Face 26708 5726 5709 17411 Face 26709 5725 5564 17412 Face 26710 5564 5554 17412 Face 26711 5554 5709 17412 Face 26712 5709 5725 17412 Face 26713 5769 5600 17413 Face 26714 5600 5564 17413 Face 26715 5564 5725 17413 Face 26716 5725 5769 17413 Face 26717 5852 5683 17414 Face 26718 5683 5600 17414 Face 26719 5600 5769 17414 Face 26720 5769 5852 17414 Face 26721 5939 5799 17415 Face 26722 5799 5683 17415 Face 26723 5683 5852 17415 Face 26724 5852 5939 17415 Face 26725 6058 5923 17416 Face 26726 5923 5799 17416 Face 26727 5799 5939 17416 Face 26728 5939 6058 17416 Face 26729 6210 6079 17417 Face 26730 6079 5923 17417 Face 26731 5923 6058 17417 Face 26732 6058 6210 17417 Face 26733 6422 6289 17418 Face 26734 6289 6079 17418 Face 26735 6079 6210 17418 Face 26736 6210 6422 17418 Face 26737 6632 6550 17419 Face 26738 6550 6289 17419 Face 26739 6289 6422 17419 Face 26740 6422 6632 17419 Face 26741 6779 6735 17420 Face 26742 6735 6550 17420 Face 26743 6550 6632 17420 Face 26744 6632 6779 17420 Face 26745 6950 6910 17421 Face 26746 6910 6735 17421 Face 26747 6735 6779 17421 Face 26748 6779 6950 17421 Face 26749 7108 7090 17422 Face 26750 7090 6950 17422 Face 26751 6950 6979 17422 Face 26752 6979 7108 17422 Face 26753 7257 7265 17423 Face 26754 7265 7090 17423 Face 26755 7090 7108 17423 Face 26756 7108 7257 17423 Face 26757 7388 7407 17424 Face 26758 7407 7265 17424 Face 26759 7265 7257 17424 Face 26760 7257 7388 17424 Face 26761 7491 7526 17425 Face 26762 7526 7407 17425 Face 26763 7407 7388 17425 Face 26764 7388 7491 17425 Face 26765 7603 7649 17426 Face 26766 7649 7526 17426 Face 26767 7526 7491 17426 Face 26768 7491 7603 17426 Face 26769 7687 7765 17427 Face 26770 7765 7649 17427 Face 26771 7649 7603 17427 Face 26772 7603 7687 17427 Face 26773 7772 7854 17428 Face 26774 7854 7765 17428 Face 26775 7765 7687 17428 Face 26776 7687 7772 17428 Face 26777 7833 7913 17429 Face 26778 7913 7854 17429 Face 26779 7854 7772 17429 Face 26780 7772 7833 17429 Face 26781 7863 7961 17430 Face 26782 7961 7913 17430 Face 26783 7913 7833 17430 Face 26784 7833 7863 17430 Face 26785 7874 7974 17431 Face 26786 7974 7961 17431 Face 26787 7961 7863 17431 Face 26788 7863 7874 17431 Face 26789 7864 7962 17432 Face 26790 7962 7974 17432 Face 26791 7974 7874 17432 Face 26792 7874 7864 17432 Face 26793 7834 7914 17433 Face 26794 7914 7962 17433 Face 26795 7962 7864 17433 Face 26796 7864 7834 17433 Face 26797 7773 7855 17434 Face 26798 7855 7914 17434 Face 26799 7914 7834 17434 Face 26800 7834 7773 17434 Face 26801 7688 7766 17435 Face 26802 7766 7855 17435 Face 26803 7855 7773 17435 Face 26804 7773 7688 17435 Face 26805 7604 7650 17436 Face 26806 7650 7766 17436 Face 26807 7766 7688 17436 Face 26808 7688 7604 17436 Face 26809 7492 7527 17437 Face 26810 7527 7650 17437 Face 26811 7650 7604 17437 Face 26812 7604 7492 17437 Face 26813 7389 7408 17438 Face 26814 7408 7527 17438 Face 26815 7527 7492 17438 Face 26816 7492 7389 17438 Face 26817 7258 7266 17439 Face 26818 7266 7408 17439 Face 26819 7408 7389 17439 Face 26820 7389 7258 17439 Face 26821 7109 7091 17440 Face 26822 7091 7266 17440 Face 26823 7266 7258 17440 Face 26824 7258 7109 17440 Face 26825 6980 6951 17441 Face 26826 6951 7091 17441 Face 26827 7091 7109 17441 Face 26828 7109 6980 17441 Face 26829 6851 6780 17442 Face 26830 6780 6951 17442 Face 26831 6951 6980 17442 Face 26832 6980 6851 17442 Face 26833 6721 6633 17443 Face 26834 6633 6780 17443 Face 26835 6780 6851 17443 Face 26836 6851 6721 17443 Face 26837 6582 6423 17444 Face 26838 6423 6633 17444 Face 26839 6633 6721 17444 Face 26840 6721 6582 17444 Face 26841 6381 6211 17445 Face 26842 6211 6423 17445 Face 26843 6423 6582 17445 Face 26844 6582 6381 17445 Face 26845 6222 6059 17446 Face 26846 6059 6211 17446 Face 26847 6211 6381 17446 Face 26848 6381 6222 17446 Face 26849 6103 5940 17447 Face 26850 5940 6059 17447 Face 26851 6059 6222 17447 Face 26852 6222 6103 17447 Face 26853 6017 5853 17448 Face 26854 5853 5940 17448 Face 26855 5940 6103 17448 Face 26856 6103 6017 17448 Face 26857 5957 5770 17449 Face 26858 5770 5853 17449 Face 26859 5853 6017 17449 Face 26860 6017 5957 17449 Face 26861 5912 5726 17450 Face 26862 5726 5770 17450 Face 26863 5770 5957 17450 Face 26864 5957 5912 17450 Face 26865 5897 5709 17451 Face 26866 5709 5726 17451 Face 26867 5726 5912 17451 Face 26868 5912 5897 17451 Face 26869 5911 5725 17452 Face 26870 5725 5709 17452 Face 26871 5709 5897 17452 Face 26872 5897 5911 17452 Face 26873 5956 5769 17453 Face 26874 5769 5725 17453 Face 26875 5725 5911 17453 Face 26876 5911 5956 17453 Face 26877 6016 5852 17454 Face 26878 5852 5769 17454 Face 26879 5769 5956 17454 Face 26880 5956 6016 17454 Face 26881 6102 5939 17455 Face 26882 5939 5852 17455 Face 26883 5852 6016 17455 Face 26884 6016 6102 17455 Face 26885 6221 6058 17456 Face 26886 6058 5939 17456 Face 26887 5939 6102 17456 Face 26888 6102 6221 17456 Face 26889 6380 6210 17457 Face 26890 6210 6058 17457 Face 26891 6058 6221 17457 Face 26892 6221 6380 17457 Face 26893 6581 6422 17458 Face 26894 6422 6210 17458 Face 26895 6210 6380 17458 Face 26896 6380 6581 17458 Face 26897 6720 6632 17459 Face 26898 6632 6422 17459 Face 26899 6422 6581 17459 Face 26900 6581 6720 17459 Face 26901 6850 6779 17460 Face 26902 6779 6632 17460 Face 26903 6632 6720 17460 Face 26904 6720 6850 17460 Face 26905 6979 6950 17461 Face 26906 6950 6779 17461 Face 26907 6779 6850 17461 Face 26908 6850 6979 17461 Face 26909 7119 7108 17462 Face 26910 7108 6979 17462 Face 26911 6979 7012 17462 Face 26912 7012 7119 17462 Face 26913 7234 7257 17463 Face 26914 7257 7108 17463 Face 26915 7108 7119 17463 Face 26916 7119 7234 17463 Face 26917 7351 7388 17464 Face 26918 7388 7257 17464 Face 26919 7257 7234 17464 Face 26920 7234 7351 17464 Face 26921 7447 7491 17465 Face 26922 7491 7388 17465 Face 26923 7388 7351 17465 Face 26924 7351 7447 17465 Face 26925 7515 7603 17466 Face 26926 7603 7491 17466 Face 26927 7491 7447 17466 Face 26928 7447 7515 17466 Face 26929 7605 7687 17467 Face 26930 7687 7603 17467 Face 26931 7603 7515 17467 Face 26932 7515 7605 17467 Face 26933 7657 7772 17468 Face 26934 7772 7687 17468 Face 26935 7687 7605 17468 Face 26936 7605 7657 17468 Face 26937 7713 7833 17469 Face 26938 7833 7772 17469 Face 26939 7772 7657 17469 Face 26940 7657 7713 17469 Face 26941 7733 7863 17470 Face 26942 7863 7833 17470 Face 26943 7833 7713 17470 Face 26944 7713 7733 17470 Face 26945 7747 7874 17471 Face 26946 7874 7863 17471 Face 26947 7863 7733 17471 Face 26948 7733 7747 17471 Face 26949 7734 7864 17472 Face 26950 7864 7874 17472 Face 26951 7874 7747 17472 Face 26952 7747 7734 17472 Face 26953 7714 7834 17473 Face 26954 7834 7864 17473 Face 26955 7864 7734 17473 Face 26956 7734 7714 17473 Face 26957 7658 7773 17474 Face 26958 7773 7834 17474 Face 26959 7834 7714 17474 Face 26960 7714 7658 17474 Face 26961 7606 7688 17475 Face 26962 7688 7773 17475 Face 26963 7773 7658 17475 Face 26964 7658 7606 17475 Face 26965 7516 7604 17476 Face 26966 7604 7688 17476 Face 26967 7688 7606 17476 Face 26968 7606 7516 17476 Face 26969 7448 7492 17477 Face 26970 7492 7604 17477 Face 26971 7604 7516 17477 Face 26972 7516 7448 17477 Face 26973 7352 7389 17478 Face 26974 7389 7492 17478 Face 26975 7492 7448 17478 Face 26976 7448 7352 17478 Face 26977 7235 7258 17479 Face 26978 7258 7389 17479 Face 26979 7389 7352 17479 Face 26980 7352 7235 17479 Face 26981 7120 7109 17480 Face 26982 7109 7258 17480 Face 26983 7258 7235 17480 Face 26984 7235 7120 17480 Face 26985 7013 6980 17481 Face 26986 6980 7109 17481 Face 26987 7109 7120 17481 Face 26988 7120 7013 17481 Face 26989 6904 6851 17482 Face 26990 6851 6980 17482 Face 26991 6980 7013 17482 Face 26992 7013 6904 17482 Face 26993 6778 6721 17483 Face 26994 6721 6851 17483 Face 26995 6851 6904 17483 Face 26996 6904 6778 17483 Face 26997 6689 6582 17484 Face 26998 6582 6721 17484 Face 26999 6721 6778 17484 Face 27000 6778 6689 17484 Face 27001 6584 6381 17485 Face 27002 6381 6582 17485 Face 27003 6582 6689 17485 Face 27004 6689 6584 17485 Face 27005 6436 6222 17486 Face 27006 6222 6381 17486 Face 27007 6381 6584 17486 Face 27008 6584 6436 17486 Face 27009 6315 6103 17487 Face 27010 6103 6222 17487 Face 27011 6222 6436 17487 Face 27012 6436 6315 17487 Face 27013 6225 6017 17488 Face 27014 6017 6103 17488 Face 27015 6103 6315 17488 Face 27016 6315 6225 17488 Face 27017 6158 5957 17489 Face 27018 5957 6017 17489 Face 27019 6017 6225 17489 Face 27020 6225 6158 17489 Face 27021 6136 5912 17490 Face 27022 5912 5957 17490 Face 27023 5957 6158 17490 Face 27024 6158 6136 17490 Face 27025 6121 5897 17491 Face 27026 5897 5912 17491 Face 27027 5912 6136 17491 Face 27028 6136 6121 17491 Face 27029 6135 5911 17492 Face 27030 5911 5897 17492 Face 27031 5897 6121 17492 Face 27032 6121 6135 17492 Face 27033 6157 5956 17493 Face 27034 5956 5911 17493 Face 27035 5911 6135 17493 Face 27036 6135 6157 17493 Face 27037 6224 6016 17494 Face 27038 6016 5956 17494 Face 27039 5956 6157 17494 Face 27040 6157 6224 17494 Face 27041 6314 6102 17495 Face 27042 6102 6016 17495 Face 27043 6016 6224 17495 Face 27044 6224 6314 17495 Face 27045 6435 6221 17496 Face 27046 6221 6102 17496 Face 27047 6102 6314 17496 Face 27048 6314 6435 17496 Face 27049 6583 6380 17497 Face 27050 6380 6221 17497 Face 27051 6221 6435 17497 Face 27052 6435 6583 17497 Face 27053 6688 6581 17498 Face 27054 6581 6380 17498 Face 27055 6380 6583 17498 Face 27056 6583 6688 17498 Face 27057 6777 6720 17499 Face 27058 6720 6581 17499 Face 27059 6581 6688 17499 Face 27060 6688 6777 17499 Face 27061 6903 6850 17500 Face 27062 6850 6720 17500 Face 27063 6720 6777 17500 Face 27064 6777 6903 17500 Face 27065 7012 6979 17501 Face 27066 6979 6850 17501 Face 27067 6850 6903 17501 Face 27068 6903 7012 17501 Face 27069 7117 7119 17502 Face 27070 7119 7012 17502 Face 27071 7012 7028 17502 Face 27072 7028 7117 17502 Face 27073 7192 7234 17503 Face 27074 7234 7119 17503 Face 27075 7119 7117 17503 Face 27076 7117 7192 17503 Face 27077 7305 7351 17504 Face 27078 7351 7234 17504 Face 27079 7234 7192 17504 Face 27080 7192 7305 17504 Face 27081 7375 7447 17505 Face 27082 7447 7351 17505 Face 27083 7351 7305 17505 Face 27084 7305 7375 17505 Face 27085 7442 7515 17506 Face 27086 7515 7447 17506 Face 27087 7447 7375 17506 Face 27088 7375 7442 17506 Face 27089 7484 7605 17507 Face 27090 7605 7515 17507 Face 27091 7515 7442 17507 Face 27092 7442 7484 17507 Face 27093 7530 7657 17508 Face 27094 7657 7605 17508 Face 27095 7605 7484 17508 Face 27096 7484 7530 17508 Face 27097 7563 7713 17509 Face 27098 7713 7657 17509 Face 27099 7657 7530 17509 Face 27100 7530 7563 17509 Face 27101 7590 7733 17510 Face 27102 7733 7713 17510 Face 27103 7713 7563 17510 Face 27104 7563 7590 17510 Face 27105 7602 7747 17511 Face 27106 7747 7733 17511 Face 27107 7733 7590 17511 Face 27108 7590 7602 17511 Face 27109 7591 7734 17512 Face 27110 7734 7747 17512 Face 27111 7747 7602 17512 Face 27112 7602 7591 17512 Face 27113 7564 7714 17513 Face 27114 7714 7734 17513 Face 27115 7734 7591 17513 Face 27116 7591 7564 17513 Face 27117 7531 7658 17514 Face 27118 7658 7714 17514 Face 27119 7714 7564 17514 Face 27120 7564 7531 17514 Face 27121 7485 7606 17515 Face 27122 7606 7658 17515 Face 27123 7658 7531 17515 Face 27124 7531 7485 17515 Face 27125 7443 7516 17516 Face 27126 7516 7606 17516 Face 27127 7606 7485 17516 Face 27128 7485 7443 17516 Face 27129 7376 7448 17517 Face 27130 7448 7516 17517 Face 27131 7516 7443 17517 Face 27132 7443 7376 17517 Face 27133 7306 7352 17518 Face 27134 7352 7448 17518 Face 27135 7448 7376 17518 Face 27136 7376 7306 17518 Face 27137 7193 7235 17519 Face 27138 7235 7352 17519 Face 27139 7352 7306 17519 Face 27140 7306 7193 17519 Face 27141 7118 7120 17520 Face 27142 7120 7235 17520 Face 27143 7235 7193 17520 Face 27144 7193 7118 17520 Face 27145 7029 7013 17521 Face 27146 7013 7120 17521 Face 27147 7120 7118 17521 Face 27148 7118 7029 17521 Face 27149 6956 6904 17522 Face 27150 6904 7013 17522 Face 27151 7013 7029 17522 Face 27152 7029 6956 17522 Face 27153 6868 6778 17523 Face 27154 6778 6904 17523 Face 27155 6904 6956 17523 Face 27156 6956 6868 17523 Face 27157 6769 6689 17524 Face 27158 6689 6778 17524 Face 27159 6778 6868 17524 Face 27160 6868 6769 17524 Face 27161 6714 6584 17525 Face 27162 6584 6689 17525 Face 27163 6689 6769 17525 Face 27164 6769 6714 17525 Face 27165 6637 6436 17526 Face 27166 6436 6584 17526 Face 27167 6584 6714 17526 Face 27168 6714 6637 17526 Face 27169 6580 6315 17527 Face 27170 6315 6436 17527 Face 27171 6436 6637 17527 Face 27172 6637 6580 17527 Face 27173 6499 6225 17528 Face 27174 6225 6315 17528 Face 27175 6315 6580 17528 Face 27176 6580 6499 17528 Face 27177 6447 6158 17529 Face 27178 6158 6225 17529 Face 27179 6225 6499 17529 Face 27180 6499 6447 17529 Face 27181 6409 6136 17530 Face 27182 6136 6158 17530 Face 27183 6158 6447 17530 Face 27184 6447 6409 17530 Face 27185 6392 6121 17531 Face 27186 6121 6136 17531 Face 27187 6136 6409 17531 Face 27188 6409 6392 17531 Face 27189 6408 6135 17532 Face 27190 6135 6121 17532 Face 27191 6121 6392 17532 Face 27192 6392 6408 17532 Face 27193 6446 6157 17533 Face 27194 6157 6135 17533 Face 27195 6135 6408 17533 Face 27196 6408 6446 17533 Face 27197 6498 6224 17534 Face 27198 6224 6157 17534 Face 27199 6157 6446 17534 Face 27200 6446 6498 17534 Face 27201 6579 6314 17535 Face 27202 6314 6224 17535 Face 27203 6224 6498 17535 Face 27204 6498 6579 17535 Face 27205 6636 6435 17536 Face 27206 6435 6314 17536 Face 27207 6314 6579 17536 Face 27208 6579 6636 17536 Face 27209 6713 6583 17537 Face 27210 6583 6435 17537 Face 27211 6435 6636 17537 Face 27212 6636 6713 17537 Face 27213 6768 6688 17538 Face 27214 6688 6583 17538 Face 27215 6583 6713 17538 Face 27216 6713 6768 17538 Face 27217 6867 6777 17539 Face 27218 6777 6688 17539 Face 27219 6688 6768 17539 Face 27220 6768 6867 17539 Face 27221 6955 6903 17540 Face 27222 6903 6777 17540 Face 27223 6777 6867 17540 Face 27224 6867 6955 17540 Face 27225 7028 7012 17541 Face 27226 7012 6903 17541 Face 27227 6903 6955 17541 Face 27228 6955 7028 17541 Face 27229 7104 7117 17542 Face 27230 7117 7028 17542 Face 27231 7028 7038 17542 Face 27232 7038 7104 17542 Face 27233 7161 7192 17543 Face 27234 7192 7117 17543 Face 27235 7117 7104 17543 Face 27236 7104 7161 17543 Face 27237 7213 7305 17544 Face 27238 7305 7192 17544 Face 27239 7192 7161 17544 Face 27240 7161 7213 17544 Face 27241 7291 7375 17545 Face 27242 7375 7305 17545 Face 27243 7305 7213 17545 Face 27244 7213 7291 17545 Face 27245 7329 7442 17546 Face 27246 7442 7375 17546 Face 27247 7375 7291 17546 Face 27248 7291 7329 17546 Face 27249 7368 7484 17547 Face 27250 7484 7442 17547 Face 27251 7442 7329 17547 Face 27252 7329 7368 17547 Face 27253 7402 7530 17548 Face 27254 7530 7484 17548 Face 27255 7484 7368 17548 Face 27256 7368 7402 17548 Face 27257 7424 7563 17549 Face 27258 7563 7530 17549 Face 27259 7530 7402 17549 Face 27260 7402 7424 17549 Face 27261 7440 7590 17550 Face 27262 7590 7563 17550 Face 27263 7563 7424 17550 Face 27264 7424 7440 17550 Face 27265 7446 7602 17551 Face 27266 7602 7590 17551 Face 27267 7590 7440 17551 Face 27268 7440 7446 17551 Face 27269 7441 7591 17552 Face 27270 7591 7602 17552 Face 27271 7602 7446 17552 Face 27272 7446 7441 17552 Face 27273 7423 7564 17553 Face 27274 7564 7591 17553 Face 27275 7591 7441 17553 Face 27276 7441 7423 17553 Face 27277 7403 7531 17554 Face 27278 7531 7564 17554 Face 27279 7564 7423 17554 Face 27280 7423 7403 17554 Face 27281 7369 7485 17555 Face 27282 7485 7531 17555 Face 27283 7531 7403 17555 Face 27284 7403 7369 17555 Face 27285 7330 7443 17556 Face 27286 7443 7485 17556 Face 27287 7485 7369 17556 Face 27288 7369 7330 17556 Face 27289 7292 7376 17557 Face 27290 7376 7443 17557 Face 27291 7443 7330 17557 Face 27292 7330 7292 17557 Face 27293 7214 7306 17558 Face 27294 7306 7376 17558 Face 27295 7376 7292 17558 Face 27296 7292 7214 17558 Face 27297 7162 7193 17559 Face 27298 7193 7306 17559 Face 27299 7306 7214 17559 Face 27300 7214 7162 17559 Face 27301 7105 7118 17560 Face 27302 7118 7193 17560 Face 27303 7193 7162 17560 Face 27304 7162 7105 17560 Face 27305 7039 7029 17561 Face 27306 7029 7118 17561 Face 27307 7118 7105 17561 Face 27308 7105 7039 17561 Face 27309 6991 6956 17562 Face 27310 6956 7029 17562 Face 27311 7029 7039 17562 Face 27312 7039 6991 17562 Face 27313 6942 6868 17563 Face 27314 6868 6956 17563 Face 27315 6956 6991 17563 Face 27316 6991 6942 17563 Face 27317 6885 6769 17564 Face 27318 6769 6868 17564 Face 27319 6868 6942 17564 Face 27320 6942 6885 17564 Face 27321 6832 6714 17565 Face 27322 6714 6769 17565 Face 27323 6769 6885 17565 Face 27324 6885 6832 17565 Face 27325 6773 6637 17566 Face 27326 6637 6714 17566 Face 27327 6714 6832 17566 Face 27328 6832 6773 17566 Face 27329 6747 6580 17567 Face 27330 6580 6637 17567 Face 27331 6637 6773 17567 Face 27332 6773 6747 17567 Face 27333 6725 6499 17568 Face 27334 6499 6580 17568 Face 27335 6580 6747 17568 Face 27336 6747 6725 17568 Face 27337 6701 6447 17569 Face 27338 6447 6499 17569 Face 27339 6499 6725 17569 Face 27340 6725 6701 17569 Face 27341 6681 6409 17570 Face 27342 6409 6447 17570 Face 27343 6447 6701 17570 Face 27344 6701 6681 17570 Face 27345 6674 6392 17571 Face 27346 6392 6409 17571 Face 27347 6409 6681 17571 Face 27348 6681 6674 17571 Face 27349 6680 6408 17572 Face 27350 6408 6392 17572 Face 27351 6392 6674 17572 Face 27352 6674 6680 17572 Face 27353 6700 6446 17573 Face 27354 6446 6408 17573 Face 27355 6408 6680 17573 Face 27356 6680 6700 17573 Face 27357 6724 6498 17574 Face 27358 6498 6446 17574 Face 27359 6446 6700 17574 Face 27360 6700 6724 17574 Face 27361 6746 6579 17575 Face 27362 6579 6498 17575 Face 27363 6498 6724 17575 Face 27364 6724 6746 17575 Face 27365 6772 6636 17576 Face 27366 6636 6579 17576 Face 27367 6579 6746 17576 Face 27368 6746 6772 17576 Face 27369 6831 6713 17577 Face 27370 6713 6636 17577 Face 27371 6636 6772 17577 Face 27372 6772 6831 17577 Face 27373 6884 6768 17578 Face 27374 6768 6713 17578 Face 27375 6713 6831 17578 Face 27376 6831 6884 17578 Face 27377 6941 6867 17579 Face 27378 6867 6768 17579 Face 27379 6768 6884 17579 Face 27380 6884 6941 17579 Face 27381 6990 6955 17580 Face 27382 6955 6867 17580 Face 27383 6867 6941 17580 Face 27384 6941 6990 17580 Face 27385 7038 7028 17581 Face 27386 7028 6955 17581 Face 27387 6955 6990 17581 Face 27388 6990 7038 17581 Face 27389 7086 7104 17582 Face 27390 7104 7038 17582 Face 27391 7038 7048 17582 Face 27392 7048 7086 17582 Face 27393 7121 7161 17583 Face 27394 7161 7104 17583 Face 27395 7104 7086 17583 Face 27396 7086 7121 17583 Face 27397 7146 7213 17584 Face 27398 7213 7161 17584 Face 27399 7161 7121 17584 Face 27400 7121 7146 17584 Face 27401 7167 7291 17585 Face 27402 7291 7213 17585 Face 27403 7213 7146 17585 Face 27404 7146 7167 17585 Face 27405 7184 7329 17586 Face 27406 7329 7291 17586 Face 27407 7291 7167 17586 Face 27408 7167 7184 17586 Face 27409 7204 7368 17587 Face 27410 7368 7329 17587 Face 27411 7329 7184 17587 Face 27412 7184 7204 17587 Face 27413 7237 7402 17588 Face 27414 7402 7368 17588 Face 27415 7368 7204 17588 Face 27416 7204 7237 17588 Face 27417 7255 7424 17589 Face 27418 7424 7402 17589 Face 27419 7402 7237 17589 Face 27420 7237 7255 17589 Face 27421 7277 7440 17590 Face 27422 7440 7424 17590 Face 27423 7424 7255 17590 Face 27424 7255 7277 17590 Face 27425 7278 7446 17591 Face 27426 7446 7440 17591 Face 27427 7440 7277 17591 Face 27428 7277 7278 17591 Face 27429 7276 7441 17592 Face 27430 7441 7446 17592 Face 27431 7446 7278 17592 Face 27432 7278 7276 17592 Face 27433 7254 7423 17593 Face 27434 7423 7441 17593 Face 27435 7441 7276 17593 Face 27436 7276 7254 17593 Face 27437 7238 7403 17594 Face 27438 7403 7423 17594 Face 27439 7423 7254 17594 Face 27440 7254 7238 17594 Face 27441 7203 7369 17595 Face 27442 7369 7403 17595 Face 27443 7403 7238 17595 Face 27444 7238 7203 17595 Face 27445 7185 7330 17596 Face 27446 7330 7369 17596 Face 27447 7369 7203 17596 Face 27448 7203 7185 17596 Face 27449 7168 7292 17597 Face 27450 7292 7330 17597 Face 27451 7330 7185 17597 Face 27452 7185 7168 17597 Face 27453 7147 7214 17598 Face 27454 7214 7292 17598 Face 27455 7292 7168 17598 Face 27456 7168 7147 17598 Face 27457 7122 7162 17599 Face 27458 7162 7214 17599 Face 27459 7214 7147 17599 Face 27460 7147 7122 17599 Face 27461 7087 7105 17600 Face 27462 7105 7162 17600 Face 27463 7162 7122 17600 Face 27464 7122 7087 17600 Face 27465 7049 7039 17601 Face 27466 7039 7105 17601 Face 27467 7105 7087 17601 Face 27468 7087 7049 17601 Face 27469 7027 6991 17602 Face 27470 6991 7039 17602 Face 27471 7039 7049 17602 Face 27472 7049 7027 17602 Face 27473 7008 6942 17603 Face 27474 6942 6991 17603 Face 27475 6991 7027 17603 Face 27476 7027 7008 17603 Face 27477 6977 6885 17604 Face 27478 6885 6942 17604 Face 27479 6942 7008 17604 Face 27480 7008 6977 17604 Face 27481 6959 6832 17605 Face 27482 6832 6885 17605 Face 27483 6885 6977 17605 Face 27484 6977 6959 17605 Face 27485 6933 6773 17606 Face 27486 6773 6832 17606 Face 27487 6832 6959 17606 Face 27488 6959 6933 17606 Face 27489 6919 6747 17607 Face 27490 6747 6773 17607 Face 27491 6773 6933 17607 Face 27492 6933 6919 17607 Face 27493 6900 6725 17608 Face 27494 6725 6747 17608 Face 27495 6747 6919 17608 Face 27496 6919 6900 17608 Face 27497 6888 6701 17609 Face 27498 6701 6725 17609 Face 27499 6725 6900 17609 Face 27500 6900 6888 17609 Face 27501 6879 6681 17610 Face 27502 6681 6701 17610 Face 27503 6701 6888 17610 Face 27504 6888 6879 17610 Face 27505 6878 6674 17611 Face 27506 6674 6681 17611 Face 27507 6681 6879 17611 Face 27508 6879 6878 17611 Face 27509 6880 6680 17612 Face 27510 6680 6674 17612 Face 27511 6674 6878 17612 Face 27512 6878 6880 17612 Face 27513 6887 6700 17613 Face 27514 6700 6680 17613 Face 27515 6680 6880 17613 Face 27516 6880 6887 17613 Face 27517 6899 6724 17614 Face 27518 6724 6700 17614 Face 27519 6700 6887 17614 Face 27520 6887 6899 17614 Face 27521 6918 6746 17615 Face 27522 6746 6724 17615 Face 27523 6724 6899 17615 Face 27524 6899 6918 17615 Face 27525 6932 6772 17616 Face 27526 6772 6746 17616 Face 27527 6746 6918 17616 Face 27528 6918 6932 17616 Face 27529 6958 6831 17617 Face 27530 6831 6772 17617 Face 27531 6772 6932 17617 Face 27532 6932 6958 17617 Face 27533 6976 6884 17618 Face 27534 6884 6831 17618 Face 27535 6831 6958 17618 Face 27536 6958 6976 17618 Face 27537 7007 6941 17619 Face 27538 6941 6884 17619 Face 27539 6884 6976 17619 Face 27540 6976 7007 17619 Face 27541 7026 6990 17620 Face 27542 6990 6941 17620 Face 27543 6941 7007 17620 Face 27544 7007 7026 17620 Face 27545 7048 7038 17621 Face 27546 7038 6990 17621 Face 27547 6990 7026 17621 Face 27548 7026 7048 17621 Face 27549 10983 11000 17622 Face 27550 11000 10997 17622 Face 27551 10997 11007 17622 Face 27552 11007 10983 17622 Face 27553 11007 10997 17623 Face 27554 10997 11025 17623 Face 27555 11025 11022 17623 Face 27556 11022 11007 17623 Face 27557 11022 11025 17624 Face 27558 11025 10973 17624 Face 27559 10973 10998 17624 Face 27560 10998 11022 17624 Face 27561 10998 10973 17625 Face 27562 10973 10993 17625 Face 27563 10993 10990 17625 Face 27564 10990 10998 17625 Face 27565 10990 10993 17626 Face 27566 10993 10967 17626 Face 27567 10967 10986 17626 Face 27568 10986 10990 17626 Face 27569 10986 10967 17627 Face 27570 10967 10942 17627 Face 27571 10942 10961 17627 Face 27572 10961 10986 17627 Face 27573 10792 10789 17628 Face 27574 10789 10682 17628 Face 27575 10682 10659 17628 Face 27576 10659 10792 17628 Face 27577 10792 10659 17629 Face 27578 10659 10759 17629 Face 27579 10759 10791 17629 Face 27580 10791 10792 17629 Face 27581 10632 10629 17630 Face 27582 10629 10442 17630 Face 27583 10442 10397 17630 Face 27584 10397 10632 17630 Face 27585 10632 10397 17631 Face 27586 10397 10537 17631 Face 27587 10537 10612 17631 Face 27588 10612 10632 17631 Face 27589 10710 10700 17632 Face 27590 10700 10522 17632 Face 27591 10522 10485 17632 Face 27592 10485 10710 17632 Face 27593 10710 10485 17633 Face 27594 10485 10655 17633 Face 27595 10655 10702 17633 Face 27596 10702 10710 17633 Face 27597 10504 10490 17634 Face 27598 10490 10365 17634 Face 27599 10365 10344 17634 Face 27600 10344 10504 17634 Face 27601 10504 10344 17635 Face 27602 10344 10469 17635 Face 27603 10469 10507 17635 Face 27604 10507 10504 17635 Face 27605 10143 10168 17636 Face 27606 10168 10207 17636 Face 27607 10207 10170 17636 Face 27608 10170 10143 17636 Face 27609 10143 10170 17637 Face 27610 10170 10117 17637 Face 27611 10117 10116 17637 Face 27612 10116 10143 17637 Face 27613 9646 9625 17638 Face 27614 9625 9568 17638 Face 27615 9568 9690 17638 Face 27616 9690 9646 17638 Face 27617 9714 9690 17639 Face 27618 9690 9568 17639 Face 27619 9568 9712 17639 Face 27620 9712 9714 17639 Face 27621 9660 9712 17640 Face 27622 9712 9568 17640 Face 27623 9568 9615 17640 Face 27624 9615 9660 17640 Face 27625 10937 10947 17641 Face 27626 10947 10928 17641 Face 27627 10928 10939 17641 Face 27628 10939 10937 17641 Face 27629 10944 10920 17642 Face 27630 10920 10947 17642 Face 27631 10947 10943 17642 Face 27632 10943 10944 17642 Face 27633 66 45 17643 Face 27634 45 38 17643 Face 27635 38 48 17643 Face 27636 48 66 17643 Face 27637 36 48 17644 Face 27638 48 23 17644 Face 27639 23 20 17644 Face 27640 20 36 17644 Face 27641 40 20 17645 Face 27642 20 47 17645 Face 27643 47 72 17645 Face 27644 72 40 17645 Face 27645 69 72 17646 Face 27646 72 55 17646 Face 27647 55 52 17646 Face 27648 52 69 17646 Face 27649 107 78 17647 Face 27650 78 84 17647 Face 27651 84 103 17647 Face 27652 103 107 17647 Face 27653 285 256 17648 Face 27654 256 386 17648 Face 27655 386 363 17648 Face 27656 363 285 17648 Face 27657 362 386 17649 Face 27658 386 254 17649 Face 27659 254 286 17649 Face 27660 286 362 17649 Face 27661 475 416 17650 Face 27662 416 648 17650 Face 27663 648 603 17650 Face 27664 603 475 17650 Face 27665 628 648 17651 Face 27666 648 433 17651 Face 27667 433 508 17651 Face 27668 508 628 17651 Face 27669 392 345 17652 Face 27670 345 560 17652 Face 27671 560 523 17652 Face 27672 523 392 17652 Face 27673 521 560 17653 Face 27674 560 343 17653 Face 27675 343 390 17653 Face 27676 390 521 17653 Face 27677 602 555 17654 Face 27678 555 701 17654 Face 27679 701 680 17654 Face 27680 680 602 17654 Face 27681 664 701 17655 Face 27682 701 538 17655 Face 27683 538 576 17655 Face 27684 576 664 17655 Face 27685 845 877 17656 Face 27686 877 875 17656 Face 27687 875 838 17656 Face 27688 838 845 17656 Face 27689 904 875 17657 Face 27690 875 929 17657 Face 27691 929 928 17657 Face 27692 928 904 17657 Face 27693 1331 1333 17658 Face 27694 1333 1430 17658 Face 27695 1430 1355 17658 Face 27696 1355 1331 17658 Face 27697 1399 1355 17659 Face 27698 1355 1430 17659 Face 27699 1430 1420 17659 Face 27700 1420 1399 17659 Face 27701 1474 1420 17660 Face 27702 1420 1430 17660 Face 27703 1430 1477 17660 Face 27704 1477 1474 17660 Face 27705 113 98 17661 Face 27706 98 106 17661 Face 27707 106 117 17661 Face 27708 117 113 17661 Face 27709 113 125 17662 Face 27710 125 102 17662 Face 27711 102 98 17662 Face 27712 98 113 17662 Face 27713 10980 11039 17663 Face 27714 11039 11028 17663 Face 27715 11028 10933 17663 Face 27716 10933 10980 17663 Face 27717 11030 11044 17664 Face 27718 11044 11039 17664 Face 27719 11039 10980 17664 Face 27720 10980 11030 17664 Face 27721 11034 11043 17665 Face 27722 11043 11044 17665 Face 27723 11044 11030 17665 Face 27724 11030 11034 17665 Face 27725 11021 11042 17666 Face 27726 11042 11043 17666 Face 27727 11043 11034 17666 Face 27728 11034 11021 17666 Face 27729 10989 11035 17667 Face 27730 11035 11042 17667 Face 27731 11042 11021 17667 Face 27732 11021 10989 17667 Face 27733 10951 10960 17668 Face 27734 10960 11035 17668 Face 27735 11035 10989 17668 Face 27736 10989 10951 17668 Face 27737 10822 10810 17669 Face 27738 10810 10960 17669 Face 27739 10960 10892 17669 Face 27740 10892 10822 17669 Face 27741 10822 10739 17670 Face 27742 10739 10418 17670 Face 27743 10418 10810 17670 Face 27744 10810 10822 17670 Face 27745 10685 10250 17671 Face 27746 10250 10418 17671 Face 27747 10418 10739 17671 Face 27748 10739 10685 17671 Face 27749 10556 10167 17672 Face 27750 10167 10250 17672 Face 27751 10250 10685 17672 Face 27752 10685 10556 17672 Face 27753 10453 10134 17673 Face 27754 10134 10167 17673 Face 27755 10167 10556 17673 Face 27756 10556 10453 17673 Face 27757 10441 10157 17674 Face 27758 10157 10134 17674 Face 27759 10134 10453 17674 Face 27760 10453 10441 17674 Face 27761 10512 10223 17675 Face 27762 10223 10157 17675 Face 27763 10157 10441 17675 Face 27764 10441 10512 17675 Face 27765 10814 10578 17676 Face 27766 10578 10223 17676 Face 27767 10223 10618 17676 Face 27768 10618 10814 17676 Face 27769 10878 10875 17677 Face 27770 10875 10578 17677 Face 27771 10578 10814 17677 Face 27772 10814 10878 17677 Face 27773 10933 11028 17678 Face 27774 11028 10875 17678 Face 27775 10875 10878 17678 Face 27776 10878 10933 17678 Face 27777 10857 10756 17679 Face 27778 10756 10822 17679 Face 27779 10822 10892 17679 Face 27780 10892 10857 17679 Face 27781 10701 10681 17680 Face 27782 10681 10685 17680 Face 27783 10685 10739 17680 Face 27784 10739 10701 17680 Face 27785 10681 10640 17681 Face 27786 10640 10556 17681 Face 27787 10556 10685 17681 Face 27788 10685 10681 17681 Face 27789 10640 10585 17682 Face 27790 10585 10453 17682 Face 27791 10453 10556 17682 Face 27792 10556 10640 17682 Face 27793 10585 10592 17683 Face 27794 10592 10441 17683 Face 27795 10441 10453 17683 Face 27796 10453 10585 17683 Face 27797 10592 10550 17684 Face 27798 10550 10512 17684 Face 27799 10512 10441 17684 Face 27800 10441 10592 17684 Face 27801 10550 10624 17685 Face 27802 10624 10618 17685 Face 27803 10618 10512 17685 Face 27804 10512 10550 17685 Face 27805 10624 10885 17686 Face 27806 10885 10814 17686 Face 27807 10814 10618 17686 Face 27808 10618 10624 17686 Face 27809 10953 10987 17687 Face 27810 10987 10933 17687 Face 27811 10933 10878 17687 Face 27812 10878 10953 17687 Face 27813 10987 11010 17688 Face 27814 11010 10980 17688 Face 27815 10980 10933 17688 Face 27816 10933 10987 17688 Face 27817 11010 11024 17689 Face 27818 11024 11030 17689 Face 27819 11030 10980 17689 Face 27820 10980 11010 17689 Face 27821 11013 10995 17690 Face 27822 10995 11021 17690 Face 27823 11021 11034 17690 Face 27824 11034 11013 17690 Face 27825 10995 10968 17691 Face 27826 10968 10989 17691 Face 27827 10989 11021 17691 Face 27828 11021 10995 17691 Face 27829 10968 10922 17692 Face 27830 10922 10951 17692 Face 27831 10951 10989 17692 Face 27832 10989 10968 17692 Face 27833 10922 10857 17693 Face 27834 10857 10892 17693 Face 27835 10892 10951 17693 Face 27836 10951 10922 17693 Face 27837 10883 10603 17694 Face 27838 10603 10578 17694 Face 27839 10578 10875 17694 Face 27840 10875 10883 17694 Face 27841 10603 10273 17695 Face 27842 10273 10223 17695 Face 27843 10223 10578 17695 Face 27844 10578 10603 17695 Face 27845 10273 10203 17696 Face 27846 10203 10157 17696 Face 27847 10157 10223 17696 Face 27848 10223 10273 17696 Face 27849 10203 10160 17697 Face 27850 10160 10134 17697 Face 27851 10134 10157 17697 Face 27852 10157 10203 17697 Face 27853 10160 10199 17698 Face 27854 10199 10167 17698 Face 27855 10167 10134 17698 Face 27856 10134 10160 17698 Face 27857 10199 10293 17699 Face 27858 10293 10250 17699 Face 27859 10250 10167 17699 Face 27860 10167 10199 17699 Face 27861 10293 10511 17700 Face 27862 10511 10418 17700 Face 27863 10418 10250 17700 Face 27864 10250 10293 17700 Face 27865 10511 10832 17701 Face 27866 10832 10810 17701 Face 27867 10810 10418 17701 Face 27868 10418 10511 17701 Face 27869 10832 10962 17702 Face 27870 10962 10960 17702 Face 27871 10960 10810 17702 Face 27872 10810 10832 17702 Face 27873 10962 11032 17703 Face 27874 11032 11035 17703 Face 27875 11035 10960 17703 Face 27876 10960 10962 17703 Face 27877 11032 11037 17704 Face 27878 11037 11042 17704 Face 27879 11042 11035 17704 Face 27880 11035 11032 17704 Face 27881 11037 11040 17705 Face 27882 11040 11043 17705 Face 27883 11043 11042 17705 Face 27884 11042 11037 17705 Face 27885 11040 11041 17706 Face 27886 11041 11044 17706 Face 27887 11044 11043 17706 Face 27888 11043 11040 17706 Face 27889 11041 11038 17707 Face 27890 11038 11039 17707 Face 27891 11039 11044 17707 Face 27892 11044 11041 17707 Face 27893 11038 11029 17708 Face 27894 11029 11028 17708 Face 27895 11028 11039 17708 Face 27896 11039 11038 17708 Face 27897 11029 10883 17709 Face 27898 10883 10875 17709 Face 27899 10875 11028 17709 Face 27900 11028 11029 17709 Face 27901 10269 10296 17710 Face 27902 10296 10211 17710 Face 27903 10211 10196 17710 Face 27904 10196 10269 17710 Face 27905 10784 10696 17711 Face 27906 10696 10790 17711 Face 27907 10790 10861 17711 Face 27908 10861 10784 17711 Face 27909 10834 10784 17712 Face 27910 10784 10861 17712 Face 27911 10861 10909 17712 Face 27912 10909 10834 17712 Face 27913 10652 10656 17713 Face 27914 10656 10778 17713 Face 27915 10778 10774 17713 Face 27916 10774 10652 17713 Face 27917 10664 10652 17714 Face 27918 10652 10774 17714 Face 27919 10774 10775 17714 Face 27920 10775 10664 17714 Face 27921 10696 10664 17715 Face 27922 10664 10775 17715 Face 27923 10775 10790 17715 Face 27924 10790 10696 17715 Face 27925 10078 10104 17716 Face 27926 10104 10057 17716 Face 27927 10057 10001 17716 Face 27928 10001 10078 17716 Face 27929 10099 10078 17717 Face 27930 10078 10001 17717 Face 27931 10001 10069 17717 Face 27932 10069 10099 17717 Face 27933 10227 10189 17718 Face 27934 10189 10173 17718 Face 27935 10173 10195 17718 Face 27936 10195 10227 17718 Face 27937 10188 10265 17719 Face 27938 10265 10283 17719 Face 27939 10283 10180 17719 Face 27940 10180 10188 17719 Face 27941 10956 10935 17720 Face 27942 10935 11014 17720 Face 27943 11014 11001 17720 Face 27944 11001 10956 17720 Face 27945 10956 10912 17721 Face 27946 10912 10868 17721 Face 27947 10868 10935 17721 Face 27948 10935 10956 17721 Face 27949 10884 10971 17722 Face 27950 10971 11018 17722 Face 27951 11018 10904 17722 Face 27952 10904 10884 17722 Face 27953 10733 10884 17723 Face 27954 10884 10904 17723 Face 27955 10904 10823 17723 Face 27956 10823 10733 17723 Face 27957 10954 10874 17724 Face 27958 10874 10848 17724 Face 27959 10848 10948 17724 Face 27960 10948 10954 17724 Face 27961 10957 10946 17725 Face 27962 10946 10918 17725 Face 27963 10918 10965 17725 Face 27964 10965 10957 17725 Face 27965 10992 10985 17726 Face 27966 10985 10957 17726 Face 27967 10957 10965 17726 Face 27968 10965 10992 17726 Face 27969 10781 10801 17727 Face 27970 10801 10761 17727 Face 27971 10761 10732 17727 Face 27972 10732 10781 17727 Face 27973 10801 10733 17728 Face 27974 10733 10686 17728 Face 27975 10686 10761 17728 Face 27976 10761 10801 17728 Face 27977 10733 10472 17729 Face 27978 10472 10447 17729 Face 27979 10447 10686 17729 Face 27980 10686 10733 17729 Face 27981 10472 10265 17730 Face 27982 10265 10292 17730 Face 27983 10292 10447 17730 Face 27984 10447 10472 17730 Face 27985 10265 10227 17731 Face 27986 10227 10246 17731 Face 27987 10246 10292 17731 Face 27988 10292 10265 17731 Face 27989 10229 10246 17732 Face 27990 10246 10227 17732 Face 27991 10227 10195 17732 Face 27992 10195 10229 17732 Face 27993 11019 11001 17733 Face 27994 11001 11017 17733 Face 27995 11017 10996 17733 Face 27996 10996 11019 17733 Face 27997 10988 10999 17734 Face 27998 10999 10996 17734 Face 27999 10996 11017 17734 Face 28000 11017 10988 17734 Face 28001 10307 10284 17735 Face 28002 10284 10581 17735 Face 28003 10581 10495 17735 Face 28004 10495 10307 17735 Face 28005 10017 9924 17736 Face 28006 9924 9974 17736 Face 28007 9974 10052 17736 Face 28008 10052 10017 17736 Face 28009 10125 10017 17737 Face 28010 10017 10052 17737 Face 28011 10052 10129 17737 Face 28012 10129 10125 17737 Face 28013 11038 11031 17738 Face 28014 11031 11008 17738 Face 28015 11008 11029 17738 Face 28016 11029 11038 17738 Face 28017 10495 10581 17739 Face 28018 10581 10891 17739 Face 28019 10891 10868 17739 Face 28020 10868 10495 17739 Face 28021 10371 10338 17740 Face 28022 10338 10307 17740 Face 28023 10307 10495 17740 Face 28024 10495 10371 17740 Face 28025 10069 10174 17741 Face 28026 10174 10179 17741 Face 28027 10179 10099 17741 Face 28028 10099 10069 17741 Face 28029 10868 10891 17742 Face 28030 10891 11008 17742 Face 28031 11008 10935 17742 Face 28032 10935 10868 17742 Face 28033 10764 10641 17743 Face 28034 10641 10785 17743 Face 28035 10785 10796 17743 Face 28036 10796 10764 17743 Face 28037 10924 10855 17744 Face 28038 10855 10857 17744 Face 28039 10857 10922 17744 Face 28040 10922 10924 17744 Face 28041 10855 10693 17745 Face 28042 10693 10756 17745 Face 28043 10756 10857 17745 Face 28044 10857 10855 17745 Face 28045 10693 10625 17746 Face 28046 10625 10701 17746 Face 28047 10701 10756 17746 Face 28048 10756 10693 17746 Face 28049 10625 10614 17747 Face 28050 10614 10681 17747 Face 28051 10681 10701 17747 Face 28052 10701 10625 17747 Face 28053 10614 10641 17748 Face 28054 10641 10640 17748 Face 28055 10640 10681 17748 Face 28056 10681 10614 17748 Face 28057 10641 10698 17749 Face 28058 10698 10585 17749 Face 28059 10585 10640 17749 Face 28060 10640 10641 17749 Face 28061 10698 10587 17750 Face 28062 10587 10592 17750 Face 28063 10592 10585 17750 Face 28064 10585 10698 17750 Face 28065 10587 10532 17751 Face 28066 10532 10550 17751 Face 28067 10550 10592 17751 Face 28068 10592 10587 17751 Face 28069 10532 10597 17752 Face 28070 10597 10624 17752 Face 28071 10624 10550 17752 Face 28072 10550 10532 17752 Face 28073 10597 10882 17753 Face 28074 10882 10885 17753 Face 28075 10885 10624 17753 Face 28076 10624 10597 17753 Face 28077 10882 10955 17754 Face 28078 10955 10953 17754 Face 28079 10953 10885 17754 Face 28080 10885 10882 17754 Face 28081 10955 10991 17755 Face 28082 10991 10987 17755 Face 28083 10987 10953 17755 Face 28084 10953 10955 17755 Face 28085 10991 11016 17756 Face 28086 11016 11010 17756 Face 28087 11010 10987 17756 Face 28088 10987 10991 17756 Face 28089 11016 11027 17757 Face 28090 11027 11024 17757 Face 28091 11024 11010 17757 Face 28092 11010 11016 17757 Face 28093 11027 11020 17758 Face 28094 11020 11013 17758 Face 28095 11013 11024 17758 Face 28096 11024 11027 17758 Face 28097 11020 11004 17759 Face 28098 11004 10995 17759 Face 28099 10995 11013 17759 Face 28100 11013 11020 17759 Face 28101 11004 10974 17760 Face 28102 10974 10968 17760 Face 28103 10968 10995 17760 Face 28104 10995 11004 17760 Face 28105 10974 10924 17761 Face 28106 10924 10922 17761 Face 28107 10922 10968 17761 Face 28108 10968 10974 17761 Face 28109 10531 10532 17762 Face 28110 10532 10587 17762 Face 28111 10587 10678 17762 Face 28112 10678 10531 17762 Face 28113 10940 10961 17763 Face 28114 10961 10942 17763 Face 28115 10942 10900 17763 Face 28116 10900 10940 17763 Face 28117 10895 10940 17764 Face 28118 10940 10900 17764 Face 28119 10900 10846 17764 Face 28120 10846 10895 17764 Face 28121 10903 10983 17765 Face 28122 10983 10955 17765 Face 28123 10955 10927 17765 Face 28124 10927 10903 17765 Face 28125 10882 10597 17766 Face 28126 10597 10661 17766 Face 28127 10661 10850 17766 Face 28128 10850 10882 17766 Face 28129 10798 10903 17767 Face 28130 10903 10927 17767 Face 28131 10927 10772 17767 Face 28132 10772 10798 17767 Face 28133 10772 10927 17768 Face 28134 10927 10850 17768 Face 28135 10850 10689 17768 Face 28136 10689 10772 17768 Face 28137 10322 10661 17769 Face 28138 10661 10531 17769 Face 28139 10531 10300 17769 Face 28140 10300 10322 17769 Face 28141 10300 10531 17770 Face 28142 10531 10508 17770 Face 28143 10508 10419 17770 Face 28144 10419 10300 17770 Face 28145 10661 10322 17771 Face 28146 10322 10519 17771 Face 28147 10519 10850 17771 Face 28148 10850 10661 17771 Face 28149 10889 10798 17772 Face 28150 10798 10636 17772 Face 28151 10636 10734 17772 Face 28152 10734 10889 17772 Face 28153 10695 10648 17773 Face 28154 10648 10508 17773 Face 28155 10508 10712 17773 Face 28156 10712 10695 17773 Face 28157 10508 10531 17774 Face 28158 10531 10678 17774 Face 28159 10678 10712 17774 Face 28160 10712 10508 17774 Face 28161 10698 10764 17775 Face 28162 10764 10678 17775 Face 28163 10678 10587 17775 Face 28164 10587 10698 17775 Face 28165 10777 10711 17776 Face 28166 10711 10747 17776 Face 28167 10747 10695 17776 Face 28168 10695 10777 17776 Face 28169 10799 10777 17777 Face 28170 10777 10695 17777 Face 28171 10695 10712 17777 Face 28172 10712 10799 17777 Face 28173 10764 10799 17778 Face 28174 10799 10712 17778 Face 28175 10712 10678 17778 Face 28176 10678 10764 17778 Face 28177 10796 10829 17779 Face 28178 10829 10799 17779 Face 28179 10799 10764 17779 Face 28180 10764 10796 17779 Face 28181 10693 10855 17780 Face 28182 10855 10895 17780 Face 28183 10895 10745 17780 Face 28184 10745 10693 17780 Face 28185 10625 10693 17781 Face 28186 10693 10745 17781 Face 28187 10745 10722 17781 Face 28188 10722 10625 17781 Face 28189 10614 10625 17782 Face 28190 10625 10722 17782 Face 28191 10722 10719 17782 Face 28192 10719 10614 17782 Face 28193 10641 10614 17783 Face 28194 10614 10719 17783 Face 28195 10719 10785 17783 Face 28196 10785 10641 17783 Face 28197 10983 11007 17784 Face 28198 11007 10991 17784 Face 28199 10991 10955 17784 Face 28200 10955 10983 17784 Face 28201 11007 11022 17785 Face 28202 11022 11016 17785 Face 28203 11016 10991 17785 Face 28204 10991 11007 17785 Face 28205 11022 10998 17786 Face 28206 10998 11027 17786 Face 28207 11027 11016 17786 Face 28208 11016 11022 17786 Face 28209 10998 10990 17787 Face 28210 10990 11020 17787 Face 28211 11020 11027 17787 Face 28212 11027 10998 17787 Face 28213 10990 10986 17788 Face 28214 10986 11004 17788 Face 28215 11004 11020 17788 Face 28216 11020 10990 17788 Face 28217 10986 10961 17789 Face 28218 10961 10974 17789 Face 28219 10974 11004 17789 Face 28220 11004 10986 17789 Face 28221 10924 10974 17790 Face 28222 10974 10961 17790 Face 28223 10961 10940 17790 Face 28224 10940 10924 17790 Face 28225 10895 10855 17791 Face 28226 10855 10924 17791 Face 28227 10924 10940 17791 Face 28228 10940 10895 17791 Face 28229 10745 10895 17792 Face 28230 10895 10846 17792 Face 28231 10846 10757 17792 Face 28232 10757 10745 17792 Face 28233 10722 10745 17793 Face 28234 10745 10757 17793 Face 28235 10757 10768 17793 Face 28236 10768 10722 17793 Face 28237 10719 10722 17794 Face 28238 10722 10768 17794 Face 28239 10768 10817 17794 Face 28240 10817 10719 17794 Face 28241 10785 10719 17795 Face 28242 10719 10817 17795 Face 28243 10817 10818 17795 Face 28244 10818 10785 17795 Face 28245 10796 10785 17796 Face 28246 10785 10818 17796 Face 28247 10818 10821 17796 Face 28248 10821 10796 17796 Face 28249 10829 10796 17797 Face 28250 10796 10821 17797 Face 28251 10821 10835 17797 Face 28252 10835 10829 17797 Face 28253 10777 10829 17798 Face 28254 10829 10835 17798 Face 28255 10835 10773 17798 Face 28256 10773 10777 17798 Face 28257 10925 10889 17799 Face 28258 10889 10734 17799 Face 28259 10734 10813 17799 Face 28260 10813 10925 17799 Face 28261 10963 10903 17800 Face 28262 10903 10889 17800 Face 28263 10889 10925 17800 Face 28264 10925 10963 17800 Face 28265 11000 10983 17801 Face 28266 10983 10903 17801 Face 28267 10903 10963 17801 Face 28268 10963 11000 17801 Face 28269 10568 10584 17802 Face 28270 10584 10666 17802 Face 28271 10666 10748 17802 Face 28272 10748 10568 17802 Face 28273 10677 10568 17803 Face 28274 10568 10748 17803 Face 28275 10748 10815 17803 Face 28276 10815 10677 17803 Face 28277 10584 10668 17804 Face 28278 10668 10690 17804 Face 28279 10690 10666 17804 Face 28280 10666 10584 17804 Face 28281 10837 10715 17805 Face 28282 10715 10677 17805 Face 28283 10677 10815 17805 Face 28284 10815 10837 17805 Face 28285 10536 10647 17806 Face 28286 10647 10668 17806 Face 28287 10668 10584 17806 Face 28288 10584 10536 17806 Face 28289 10468 10536 17807 Face 28290 10536 10584 17807 Face 28291 10584 10568 17807 Face 28292 10568 10468 17807 Face 28293 10474 10468 17808 Face 28294 10468 10568 17808 Face 28295 10568 10677 17808 Face 28296 10677 10474 17808 Face 28297 10533 10474 17809 Face 28298 10474 10677 17809 Face 28299 10677 10715 17809 Face 28300 10715 10533 17809 Face 28301 10394 10407 17810 Face 28302 10407 10468 17810 Face 28303 10468 10474 17810 Face 28304 10474 10394 17810 Face 28305 10427 10394 17811 Face 28306 10394 10474 17811 Face 28307 10474 10533 17811 Face 28308 10533 10427 17811 Face 28309 10528 10649 17812 Face 28310 10649 10647 17812 Face 28311 10647 10536 17812 Face 28312 10536 10528 17812 Face 28313 10407 10528 17813 Face 28314 10528 10536 17813 Face 28315 10536 10468 17813 Face 28316 10468 10407 17813 Face 28317 10503 10604 17814 Face 28318 10604 10649 17814 Face 28319 10649 10528 17814 Face 28320 10528 10503 17814 Face 28321 10375 10503 17815 Face 28322 10503 10528 17815 Face 28323 10528 10407 17815 Face 28324 10407 10375 17815 Face 28325 10332 10375 17816 Face 28326 10375 10407 17816 Face 28327 10407 10394 17816 Face 28328 10394 10332 17816 Face 28329 10340 10332 17817 Face 28330 10332 10394 17817 Face 28331 10394 10427 17817 Face 28332 10427 10340 17817 Face 28333 10368 10482 17818 Face 28334 10482 10503 17818 Face 28335 10503 10375 17818 Face 28336 10375 10368 17818 Face 28337 10314 10368 17819 Face 28338 10368 10375 17819 Face 28339 10375 10332 17819 Face 28340 10332 10314 17819 Face 28341 10305 10314 17820 Face 28342 10314 10332 17820 Face 28343 10332 10340 17820 Face 28344 10340 10305 17820 Face 28345 10482 10576 17821 Face 28346 10576 10604 17821 Face 28347 10604 10503 17821 Face 28348 10503 10482 17821 Face 28349 10399 10404 17822 Face 28350 10404 10314 17822 Face 28351 10314 10305 17822 Face 28352 10305 10399 17822 Face 28353 10527 10617 17823 Face 28354 10617 10576 17823 Face 28355 10576 10482 17823 Face 28356 10482 10527 17823 Face 28357 10464 10527 17824 Face 28358 10527 10482 17824 Face 28359 10482 10368 17824 Face 28360 10368 10464 17824 Face 28361 10404 10464 17825 Face 28362 10464 10368 17825 Face 28363 10368 10314 17825 Face 28364 10314 10404 17825 Face 28365 10645 10630 17826 Face 28366 10630 10617 17826 Face 28367 10617 10527 17826 Face 28368 10527 10645 17826 Face 28369 10623 10645 17827 Face 28370 10645 10527 17827 Face 28371 10527 10464 17827 Face 28372 10464 10623 17827 Face 28373 10639 10623 17828 Face 28374 10623 10464 17828 Face 28375 10464 10404 17828 Face 28376 10404 10639 17828 Face 28377 10602 10639 17829 Face 28378 10639 10404 17829 Face 28379 10404 10399 17829 Face 28380 10399 10602 17829 Face 28381 10763 10725 17830 Face 28382 10725 10623 17830 Face 28383 10623 10639 17830 Face 28384 10639 10763 17830 Face 28385 10760 10763 17831 Face 28386 10763 10639 17831 Face 28387 10639 10682 17831 Face 28388 10682 10760 17831 Face 28389 10735 10762 17832 Face 28390 10762 10630 17832 Face 28391 10630 10645 17832 Face 28392 10645 10735 17832 Face 28393 10725 10735 17833 Face 28394 10735 10645 17833 Face 28395 10645 10623 17833 Face 28396 10623 10725 17833 Face 28397 10760 10789 17834 Face 28398 10789 10794 17834 Face 28399 10794 10763 17834 Face 28400 10763 10760 17834 Face 28401 10725 10783 17835 Face 28402 10783 10786 17835 Face 28403 10786 10735 17835 Face 28404 10735 10725 17835 Face 28405 10786 10783 17836 Face 28406 10783 10808 17836 Face 28407 10808 10804 17836 Face 28408 10804 10786 17836 Face 28409 10602 10659 17837 Face 28410 10659 10682 17837 Face 28411 10682 10639 17837 Face 28412 10639 10602 17837 Face 28413 10789 10792 17838 Face 28414 10792 10811 17838 Face 28415 10811 10794 17838 Face 28416 10794 10789 17838 Face 28417 10824 10819 17839 Face 28418 10819 10804 17839 Face 28419 10804 10808 17839 Face 28420 10808 10824 17839 Face 28421 10824 10808 17840 Face 28422 10808 10794 17840 Face 28423 10794 10811 17840 Face 28424 10811 10824 17840 Face 28425 10808 10783 17841 Face 28426 10783 10763 17841 Face 28427 10763 10794 17841 Face 28428 10794 10808 17841 Face 28429 10718 10709 17842 Face 28430 10709 10666 17842 Face 28431 10666 10690 17842 Face 28432 10690 10718 17842 Face 28433 10863 10890 17843 Face 28434 10890 10837 17843 Face 28435 10837 10815 17843 Face 28436 10815 10863 17843 Face 28437 10816 10863 17844 Face 28438 10863 10815 17844 Face 28439 10815 10748 17844 Face 28440 10748 10816 17844 Face 28441 10709 10816 17845 Face 28442 10816 10748 17845 Face 28443 10748 10666 17845 Face 28444 10666 10709 17845 Face 28445 10897 10873 17846 Face 28446 10873 10826 17846 Face 28447 10826 10841 17846 Face 28448 10841 10897 17846 Face 28449 10890 10897 17847 Face 28450 10897 10841 17847 Face 28451 10841 10837 17847 Face 28452 10837 10890 17847 Face 28453 10694 10718 17848 Face 28454 10718 10690 17848 Face 28455 10690 10749 17848 Face 28456 10749 10694 17848 Face 28457 10782 10809 17849 Face 28458 10809 10793 17849 Face 28459 10793 10758 17849 Face 28460 10758 10782 17849 Face 28461 10809 10824 17850 Face 28462 10824 10811 17850 Face 28463 10811 10793 17850 Face 28464 10793 10809 17850 Face 28465 10819 10824 17851 Face 28466 10824 10809 17851 Face 28467 10809 10806 17851 Face 28468 10806 10819 17851 Face 28469 10792 10791 17852 Face 28470 10791 10793 17852 Face 28471 10793 10811 17852 Face 28472 10811 10792 17852 Face 28473 10659 10602 17853 Face 28474 10602 10637 17853 Face 28475 10637 10683 17853 Face 28476 10683 10659 17853 Face 28477 10782 10788 17854 Face 28478 10788 10806 17854 Face 28479 10806 10809 17854 Face 28480 10809 10782 17854 Face 28481 10782 10724 17855 Face 28482 10724 10736 17855 Face 28483 10736 10788 17855 Face 28484 10788 10782 17855 Face 28485 10791 10759 17856 Face 28486 10759 10758 17856 Face 28487 10758 10793 17856 Face 28488 10793 10791 17856 Face 28489 10736 10724 17857 Face 28490 10724 10622 17857 Face 28491 10622 10642 17857 Face 28492 10642 10736 17857 Face 28493 10762 10736 17858 Face 28494 10736 10642 17858 Face 28495 10642 10630 17858 Face 28496 10630 10762 17858 Face 28497 10758 10759 17859 Face 28498 10759 10683 17859 Face 28499 10683 10637 17859 Face 28500 10637 10758 17859 Face 28501 10724 10758 17860 Face 28502 10758 10637 17860 Face 28503 10637 10622 17860 Face 28504 10622 10724 17860 Face 28505 10637 10602 17861 Face 28506 10602 10399 17861 Face 28507 10399 10406 17861 Face 28508 10406 10637 17861 Face 28509 10622 10637 17862 Face 28510 10637 10406 17862 Face 28511 10406 10460 17862 Face 28512 10460 10622 17862 Face 28513 10642 10622 17863 Face 28514 10622 10460 17863 Face 28515 10460 10606 17863 Face 28516 10606 10642 17863 Face 28517 10630 10642 17864 Face 28518 10642 10606 17864 Face 28519 10606 10617 17864 Face 28520 10617 10630 17864 Face 28521 10460 10406 17865 Face 28522 10406 10317 17865 Face 28523 10317 10446 17865 Face 28524 10446 10460 17865 Face 28525 10606 10460 17866 Face 28526 10460 10446 17866 Face 28527 10446 10557 17866 Face 28528 10557 10606 17866 Face 28529 10617 10606 17867 Face 28530 10606 10557 17867 Face 28531 10557 10576 17867 Face 28532 10576 10617 17867 Face 28533 10406 10399 17868 Face 28534 10399 10305 17868 Face 28535 10305 10317 17868 Face 28536 10317 10406 17868 Face 28537 10576 10557 17869 Face 28538 10557 10589 17869 Face 28539 10589 10604 17869 Face 28540 10604 10576 17869 Face 28541 10317 10305 17870 Face 28542 10305 10340 17870 Face 28543 10340 10367 17870 Face 28544 10367 10317 17870 Face 28545 10446 10317 17871 Face 28546 10317 10367 17871 Face 28547 10367 10455 17871 Face 28548 10455 10446 17871 Face 28549 10557 10446 17872 Face 28550 10446 10455 17872 Face 28551 10455 10589 17872 Face 28552 10589 10557 17872 Face 28553 10367 10340 17873 Face 28554 10340 10427 17873 Face 28555 10427 10459 17873 Face 28556 10459 10367 17873 Face 28557 10455 10367 17874 Face 28558 10367 10459 17874 Face 28559 10459 10553 17874 Face 28560 10553 10455 17874 Face 28561 10589 10455 17875 Face 28562 10455 10553 17875 Face 28563 10553 10657 17875 Face 28564 10657 10589 17875 Face 28565 10604 10589 17876 Face 28566 10589 10657 17876 Face 28567 10657 10649 17876 Face 28568 10649 10604 17876 Face 28569 10657 10553 17877 Face 28570 10553 10635 17877 Face 28571 10635 10674 17877 Face 28572 10674 10657 17877 Face 28573 10649 10657 17878 Face 28574 10657 10674 17878 Face 28575 10674 10647 17878 Face 28576 10647 10649 17878 Face 28577 10459 10427 17879 Face 28578 10427 10533 17879 Face 28579 10533 10586 17879 Face 28580 10586 10459 17879 Face 28581 10553 10459 17880 Face 28582 10459 10586 17880 Face 28583 10586 10635 17880 Face 28584 10635 10553 17880 Face 28585 10586 10533 17881 Face 28586 10533 10715 17881 Face 28587 10715 10737 17881 Face 28588 10737 10586 17881 Face 28589 10635 10586 17882 Face 28590 10586 10737 17882 Face 28591 10737 10723 17882 Face 28592 10723 10635 17882 Face 28593 10674 10635 17883 Face 28594 10635 10723 17883 Face 28595 10723 10705 17883 Face 28596 10705 10674 17883 Face 28597 10647 10674 17884 Face 28598 10674 10705 17884 Face 28599 10705 10668 17884 Face 28600 10668 10647 17884 Face 28601 10715 10837 17885 Face 28602 10837 10841 17885 Face 28603 10841 10737 17885 Face 28604 10737 10715 17885 Face 28605 10668 10705 17886 Face 28606 10705 10749 17886 Face 28607 10749 10690 17886 Face 28608 10690 10668 17886 Face 28609 10723 10737 17887 Face 28610 10737 10841 17887 Face 28611 10841 10826 17887 Face 28612 10826 10723 17887 Face 28613 10705 10723 17888 Face 28614 10723 10826 17888 Face 28615 10826 10749 17888 Face 28616 10749 10705 17888 Face 28617 10845 10914 17889 Face 28618 10914 10863 17889 Face 28619 10863 10816 17889 Face 28620 10816 10845 17889 Face 28621 10721 10845 17890 Face 28622 10845 10816 17890 Face 28623 10816 10709 17890 Face 28624 10709 10721 17890 Face 28625 10717 10721 17891 Face 28626 10721 10709 17891 Face 28627 10709 10718 17891 Face 28628 10718 10717 17891 Face 28629 10771 10717 17892 Face 28630 10717 10718 17892 Face 28631 10718 10694 17892 Face 28632 10694 10771 17892 Face 28633 10945 10934 17893 Face 28634 10934 10873 17893 Face 28635 10873 10897 17893 Face 28636 10897 10945 17893 Face 28637 10938 10967 17894 Face 28638 10967 10934 17894 Face 28639 10934 10945 17894 Face 28640 10945 10938 17894 Face 28641 10942 10938 17895 Face 28642 10938 10945 17895 Face 28643 10945 10949 17895 Face 28644 10949 10942 17895 Face 28645 10900 10942 17896 Face 28646 10942 10949 17896 Face 28647 10949 10914 17896 Face 28648 10914 10900 17896 Face 28649 10846 10900 17897 Face 28650 10900 10914 17897 Face 28651 10914 10845 17897 Face 28652 10845 10846 17897 Face 28653 10757 10846 17898 Face 28654 10846 10845 17898 Face 28655 10845 10721 17898 Face 28656 10721 10757 17898 Face 28657 10768 10757 17899 Face 28658 10757 10721 17899 Face 28659 10721 10717 17899 Face 28660 10717 10768 17899 Face 28661 10817 10768 17900 Face 28662 10768 10717 17900 Face 28663 10717 10771 17900 Face 28664 10771 10817 17900 Face 28665 10818 10817 17901 Face 28666 10817 10771 17901 Face 28667 10771 10787 17901 Face 28668 10787 10818 17901 Face 28669 10821 10818 17902 Face 28670 10818 10787 17902 Face 28671 10787 10797 17902 Face 28672 10797 10821 17902 Face 28673 10976 10973 17903 Face 28674 10973 10975 17903 Face 28675 10975 10977 17903 Face 28676 10977 10976 17903 Face 28677 10993 10976 17904 Face 28678 10976 10977 17904 Face 28679 10977 10994 17904 Face 28680 10994 10993 17904 Face 28681 10978 10993 17905 Face 28682 10993 10994 17905 Face 28683 10994 10981 17905 Face 28684 10981 10978 17905 Face 28685 10967 10978 17906 Face 28686 10978 10981 17906 Face 28687 10981 10934 17906 Face 28688 10934 10967 17906 Face 28689 10934 10981 17907 Face 28690 10981 10921 17907 Face 28691 10921 10873 17907 Face 28692 10873 10934 17907 Face 28693 10787 10771 17908 Face 28694 10771 10694 17908 Face 28695 10694 10766 17908 Face 28696 10766 10787 17908 Face 28697 10797 10787 17909 Face 28698 10787 10766 17909 Face 28699 10766 10767 17909 Face 28700 10767 10797 17909 Face 28701 10977 10975 17910 Face 28702 10975 10907 17910 Face 28703 10907 10929 17910 Face 28704 10929 10977 17910 Face 28705 10564 10565 17911 Face 28706 10565 10691 17911 Face 28707 10691 10802 17911 Face 28708 10802 10564 17911 Face 28709 10660 10564 17912 Face 28710 10564 10802 17912 Face 28711 10802 10852 17912 Face 28712 10852 10660 17912 Face 28713 10565 10601 17913 Face 28714 10601 10670 17913 Face 28715 10670 10691 17913 Face 28716 10691 10565 17913 Face 28717 10859 10680 17914 Face 28718 10680 10660 17914 Face 28719 10660 10852 17914 Face 28720 10852 10859 17914 Face 28721 10518 10554 17915 Face 28722 10554 10601 17915 Face 28723 10601 10565 17915 Face 28724 10565 10518 17915 Face 28725 10516 10518 17916 Face 28726 10518 10565 17916 Face 28727 10565 10564 17916 Face 28728 10564 10516 17916 Face 28729 10552 10516 17917 Face 28730 10516 10564 17917 Face 28731 10564 10660 17917 Face 28732 10660 10552 17917 Face 28733 10582 10552 17918 Face 28734 10552 10660 17918 Face 28735 10660 10680 17918 Face 28736 10680 10582 17918 Face 28737 10389 10398 17919 Face 28738 10398 10516 17919 Face 28739 10516 10552 17919 Face 28740 10552 10389 17919 Face 28741 10403 10389 17920 Face 28742 10389 10552 17920 Face 28743 10552 10582 17920 Face 28744 10582 10403 17920 Face 28745 10467 10523 17921 Face 28746 10523 10554 17921 Face 28747 10554 10518 17921 Face 28748 10518 10467 17921 Face 28749 10398 10467 17922 Face 28750 10467 10518 17922 Face 28751 10518 10516 17922 Face 28752 10516 10398 17922 Face 28753 10424 10480 17923 Face 28754 10480 10523 17923 Face 28755 10523 10467 17923 Face 28756 10467 10424 17923 Face 28757 10334 10424 17924 Face 28758 10424 10467 17924 Face 28759 10467 10398 17924 Face 28760 10398 10334 17924 Face 28761 10298 10334 17925 Face 28762 10334 10398 17925 Face 28763 10398 10389 17925 Face 28764 10389 10298 17925 Face 28765 10309 10298 17926 Face 28766 10298 10389 17926 Face 28767 10389 10403 17926 Face 28768 10403 10309 17926 Face 28769 10318 10402 17927 Face 28770 10402 10424 17927 Face 28771 10424 10334 17927 Face 28772 10334 10318 17927 Face 28773 10256 10318 17928 Face 28774 10318 10334 17928 Face 28775 10334 10298 17928 Face 28776 10298 10256 17928 Face 28777 10261 10256 17929 Face 28778 10256 10298 17929 Face 28779 10298 10309 17929 Face 28780 10309 10261 17929 Face 28781 10402 10462 17930 Face 28782 10462 10480 17930 Face 28783 10480 10424 17930 Face 28784 10424 10402 17930 Face 28785 10270 10274 17931 Face 28786 10274 10256 17931 Face 28787 10256 10261 17931 Face 28788 10261 10270 17931 Face 28789 10323 10426 17932 Face 28790 10426 10402 17932 Face 28791 10402 10318 17932 Face 28792 10318 10323 17932 Face 28793 10274 10323 17933 Face 28794 10323 10318 17933 Face 28795 10318 10256 17933 Face 28796 10256 10274 17933 Face 28797 10448 10439 17934 Face 28798 10439 10471 17934 Face 28799 10471 10426 17934 Face 28800 10426 10448 17934 Face 28801 10415 10448 17935 Face 28802 10448 10426 17935 Face 28803 10426 10323 17935 Face 28804 10323 10415 17935 Face 28805 10416 10415 17936 Face 28806 10415 10323 17936 Face 28807 10323 10274 17936 Face 28808 10274 10416 17936 Face 28809 10376 10416 17937 Face 28810 10416 10274 17937 Face 28811 10274 10270 17937 Face 28812 10270 10376 17937 Face 28813 10573 10525 17938 Face 28814 10525 10415 17938 Face 28815 10415 10416 17938 Face 28816 10416 10573 17938 Face 28817 10570 10573 17939 Face 28818 10573 10416 17939 Face 28819 10416 10442 17939 Face 28820 10442 10570 17939 Face 28821 10567 10595 17940 Face 28822 10595 10439 17940 Face 28823 10439 10448 17940 Face 28824 10448 10567 17940 Face 28825 10525 10567 17941 Face 28826 10567 10448 17941 Face 28827 10448 10415 17941 Face 28828 10415 10525 17941 Face 28829 10570 10629 17942 Face 28830 10629 10631 17942 Face 28831 10631 10573 17942 Face 28832 10573 10570 17942 Face 28833 10525 10634 17943 Face 28834 10634 10650 17943 Face 28835 10650 10567 17943 Face 28836 10567 10525 17943 Face 28837 10650 10634 17944 Face 28838 10634 10667 17944 Face 28839 10667 10673 17944 Face 28840 10673 10650 17944 Face 28841 10376 10397 17945 Face 28842 10397 10442 17945 Face 28843 10442 10416 17945 Face 28844 10416 10376 17945 Face 28845 10629 10632 17946 Face 28846 10632 10646 17946 Face 28847 10646 10631 17946 Face 28848 10631 10629 17946 Face 28849 10687 10688 17947 Face 28850 10688 10673 17947 Face 28851 10673 10667 17947 Face 28852 10667 10687 17947 Face 28853 10687 10667 17948 Face 28854 10667 10631 17948 Face 28855 10631 10646 17948 Face 28856 10646 10687 17948 Face 28857 10667 10634 17949 Face 28858 10634 10573 17949 Face 28859 10573 10631 17949 Face 28860 10631 10667 17949 Face 28861 10766 10694 17950 Face 28862 10694 10691 17950 Face 28863 10691 10670 17950 Face 28864 10670 10766 17950 Face 28865 10921 10930 17951 Face 28866 10930 10859 17951 Face 28867 10859 10852 17951 Face 28868 10852 10921 17951 Face 28869 10873 10921 17952 Face 28870 10921 10852 17952 Face 28871 10852 10802 17952 Face 28872 10802 10873 17952 Face 28873 10907 10767 17953 Face 28874 10767 10692 17953 Face 28875 10692 10803 17953 Face 28876 10803 10907 17953 Face 28877 10929 10907 17954 Face 28878 10907 10803 17954 Face 28879 10803 10853 17954 Face 28880 10853 10929 17954 Face 28881 10930 10929 17955 Face 28882 10929 10853 17955 Face 28883 10853 10859 17955 Face 28884 10859 10930 17955 Face 28885 10767 10766 17956 Face 28886 10766 10670 17956 Face 28887 10670 10692 17956 Face 28888 10692 10767 17956 Face 28889 10609 10644 17957 Face 28890 10644 10616 17957 Face 28891 10616 10534 17957 Face 28892 10534 10609 17957 Face 28893 10644 10687 17958 Face 28894 10687 10646 17958 Face 28895 10646 10616 17958 Face 28896 10616 10644 17958 Face 28897 10688 10687 17959 Face 28898 10687 10644 17959 Face 28899 10644 10662 17959 Face 28900 10662 10688 17959 Face 28901 10632 10612 17960 Face 28902 10612 10616 17960 Face 28903 10616 10646 17960 Face 28904 10646 10632 17960 Face 28905 10397 10376 17961 Face 28906 10376 10393 17961 Face 28907 10393 10417 17961 Face 28908 10417 10397 17961 Face 28909 10609 10627 17962 Face 28910 10627 10662 17962 Face 28911 10662 10644 17962 Face 28912 10644 10609 17962 Face 28913 10609 10483 17963 Face 28914 10483 10530 17963 Face 28915 10530 10627 17963 Face 28916 10627 10609 17963 Face 28917 10612 10537 17964 Face 28918 10537 10534 17964 Face 28919 10534 10616 17964 Face 28920 10616 10612 17964 Face 28921 10530 10483 17965 Face 28922 10483 10380 17965 Face 28923 10380 10423 17965 Face 28924 10423 10530 17965 Face 28925 10595 10530 17966 Face 28926 10530 10423 17966 Face 28927 10423 10439 17966 Face 28928 10439 10595 17966 Face 28929 10534 10537 17967 Face 28930 10537 10417 17967 Face 28931 10417 10393 17967 Face 28932 10393 10534 17967 Face 28933 10483 10534 17968 Face 28934 10534 10393 17968 Face 28935 10393 10380 17968 Face 28936 10380 10483 17968 Face 28937 10393 10376 17969 Face 28938 10376 10270 17969 Face 28939 10270 10263 17969 Face 28940 10263 10393 17969 Face 28941 10380 10393 17970 Face 28942 10393 10263 17970 Face 28943 10263 10311 17970 Face 28944 10311 10380 17970 Face 28945 10423 10380 17971 Face 28946 10380 10311 17971 Face 28947 10311 10410 17971 Face 28948 10410 10423 17971 Face 28949 10311 10263 17972 Face 28950 10263 10260 17972 Face 28951 10260 10325 17972 Face 28952 10325 10311 17972 Face 28953 10410 10311 17973 Face 28954 10311 10325 17973 Face 28955 10325 10413 17973 Face 28956 10413 10410 17973 Face 28957 10263 10270 17974 Face 28958 10270 10261 17974 Face 28959 10261 10260 17974 Face 28960 10260 10263 17974 Face 28961 10462 10413 17975 Face 28962 10413 10437 17975 Face 28963 10437 10480 17975 Face 28964 10480 10462 17975 Face 28965 10260 10261 17976 Face 28966 10261 10309 17976 Face 28967 10309 10304 17976 Face 28968 10304 10260 17976 Face 28969 10325 10260 17977 Face 28970 10260 10304 17977 Face 28971 10304 10348 17977 Face 28972 10348 10325 17977 Face 28973 10413 10325 17978 Face 28974 10325 10348 17978 Face 28975 10348 10437 17978 Face 28976 10437 10413 17978 Face 28977 10304 10309 17979 Face 28978 10309 10403 17979 Face 28979 10403 10385 17979 Face 28980 10385 10304 17979 Face 28981 10348 10304 17980 Face 28982 10304 10385 17980 Face 28983 10385 10436 17980 Face 28984 10436 10348 17980 Face 28985 10437 10348 17981 Face 28986 10348 10436 17981 Face 28987 10436 10499 17981 Face 28988 10499 10437 17981 Face 28989 10480 10437 17982 Face 28990 10437 10499 17982 Face 28991 10499 10523 17982 Face 28992 10523 10480 17982 Face 28993 10499 10436 17983 Face 28994 10436 10547 17983 Face 28995 10547 10542 17983 Face 28996 10542 10499 17983 Face 28997 10523 10499 17984 Face 28998 10499 10542 17984 Face 28999 10542 10554 17984 Face 29000 10554 10523 17984 Face 29001 10385 10403 17985 Face 29002 10403 10582 17985 Face 29003 10582 10569 17985 Face 29004 10569 10385 17985 Face 29005 10436 10385 17986 Face 29006 10385 10569 17986 Face 29007 10569 10547 17986 Face 29008 10547 10436 17986 Face 29009 10569 10582 17987 Face 29010 10582 10680 17987 Face 29011 10680 10665 17987 Face 29012 10665 10569 17987 Face 29013 10547 10569 17988 Face 29014 10569 10665 17988 Face 29015 10665 10591 17988 Face 29016 10591 10547 17988 Face 29017 10542 10547 17989 Face 29018 10547 10591 17989 Face 29019 10591 10583 17989 Face 29020 10583 10542 17989 Face 29021 10554 10542 17990 Face 29022 10542 10583 17990 Face 29023 10583 10601 17990 Face 29024 10601 10554 17990 Face 29025 10680 10859 17991 Face 29026 10859 10853 17991 Face 29027 10853 10665 17991 Face 29028 10665 10680 17991 Face 29029 10601 10583 17992 Face 29030 10583 10692 17992 Face 29031 10692 10670 17992 Face 29032 10670 10601 17992 Face 29033 10591 10665 17993 Face 29034 10665 10853 17993 Face 29035 10853 10803 17993 Face 29036 10803 10591 17993 Face 29037 10583 10591 17994 Face 29038 10591 10803 17994 Face 29039 10803 10692 17994 Face 29040 10692 10583 17994 Face 29041 10479 10566 17995 Face 29042 10566 10726 17995 Face 29043 10726 10828 17995 Face 29044 10828 10479 17995 Face 29045 10520 10479 17996 Face 29046 10479 10828 17996 Face 29047 10828 10864 17996 Face 29048 10864 10520 17996 Face 29049 10566 10626 17997 Face 29050 10626 10714 17997 Face 29051 10714 10726 17997 Face 29052 10726 10566 17997 Face 29053 10877 10551 17998 Face 29054 10551 10520 17998 Face 29055 10520 10864 17998 Face 29056 10864 10877 17998 Face 29057 10484 10555 17999 Face 29058 10555 10626 17999 Face 29059 10626 10566 17999 Face 29060 10566 10484 17999 Face 29061 10392 10484 18000 Face 29062 10484 10566 18000 Face 29063 10566 10479 18000 Face 29064 10479 10392 18000 Face 29065 10363 10392 18001 Face 29066 10392 10479 18001 Face 29067 10479 10520 18001 Face 29068 10520 10363 18001 Face 29069 10387 10363 18002 Face 29070 10363 10520 18002 Face 29071 10520 10551 18002 Face 29072 10551 10387 18002 Face 29073 10301 10356 18003 Face 29074 10356 10392 18003 Face 29075 10392 10363 18003 Face 29076 10363 10301 18003 Face 29077 10321 10301 18004 Face 29078 10301 10363 18004 Face 29079 10363 10387 18004 Face 29080 10387 10321 18004 Face 29081 10466 10541 18005 Face 29082 10541 10555 18005 Face 29083 10555 10484 18005 Face 29084 10484 10466 18005 Face 29085 10356 10466 18006 Face 29086 10466 10484 18006 Face 29087 10484 10392 18006 Face 29088 10392 10356 18006 Face 29089 10429 10500 18007 Face 29090 10500 10541 18007 Face 29091 10541 10466 18007 Face 29092 10466 10429 18007 Face 29093 10324 10429 18008 Face 29094 10429 10466 18008 Face 29095 10466 10356 18008 Face 29096 10356 10324 18008 Face 29097 10271 10324 18009 Face 29098 10324 10356 18009 Face 29099 10356 10301 18009 Face 29100 10301 10271 18009 Face 29101 10278 10271 18010 Face 29102 10271 10301 18010 Face 29103 10301 10321 18010 Face 29104 10321 10278 18010 Face 29105 10316 10412 18011 Face 29106 10412 10429 18011 Face 29107 10429 10324 18011 Face 29108 10324 10316 18011 Face 29109 10255 10316 18012 Face 29110 10316 10324 18012 Face 29111 10324 10271 18012 Face 29112 10271 10255 18012 Face 29113 10259 10255 18013 Face 29114 10255 10271 18013 Face 29115 10271 10278 18013 Face 29116 10278 10259 18013 Face 29117 10412 10473 18014 Face 29118 10473 10500 18014 Face 29119 10500 10429 18014 Face 29120 10429 10412 18014 Face 29121 10310 10312 18015 Face 29122 10312 10255 18015 Face 29123 10255 10259 18015 Face 29124 10259 10310 18015 Face 29125 10445 10491 18016 Face 29126 10491 10473 18016 Face 29127 10473 10412 18016 Face 29128 10412 10445 18016 Face 29129 10339 10445 18017 Face 29130 10445 10412 18017 Face 29131 10412 10316 18017 Face 29132 10316 10339 18017 Face 29133 10312 10339 18018 Face 29134 10339 10316 18018 Face 29135 10316 10255 18018 Face 29136 10255 10312 18018 Face 29137 10559 10577 18019 Face 29138 10577 10491 18019 Face 29139 10491 10445 18019 Face 29140 10445 10559 18019 Face 29141 10494 10559 18020 Face 29142 10559 10445 18020 Face 29143 10445 10339 18020 Face 29144 10339 10494 18020 Face 29145 10493 10494 18021 Face 29146 10494 10339 18021 Face 29147 10339 10312 18021 Face 29148 10312 10493 18021 Face 29149 10451 10493 18022 Face 29150 10493 10312 18022 Face 29151 10312 10310 18022 Face 29152 10310 10451 18022 Face 29153 10654 10620 18023 Face 29154 10620 10494 18023 Face 29155 10494 10493 18023 Face 29156 10493 10654 18023 Face 29157 10653 10654 18024 Face 29158 10654 10493 18024 Face 29159 10493 10522 18024 Face 29160 10522 10653 18024 Face 29161 10671 10697 18025 Face 29162 10697 10577 18025 Face 29163 10577 10559 18025 Face 29164 10559 10671 18025 Face 29165 10620 10671 18026 Face 29166 10671 10559 18026 Face 29167 10559 10494 18026 Face 29168 10494 10620 18026 Face 29169 10653 10700 18027 Face 29170 10700 10703 18027 Face 29171 10703 10654 18027 Face 29172 10654 10653 18027 Face 29173 10620 10706 18028 Face 29174 10706 10728 18028 Face 29175 10728 10671 18028 Face 29176 10671 10620 18028 Face 29177 10728 10706 18029 Face 29178 10706 10730 18029 Face 29179 10730 10741 18029 Face 29180 10741 10728 18029 Face 29181 10451 10485 18030 Face 29182 10485 10522 18030 Face 29183 10522 10493 18030 Face 29184 10493 10451 18030 Face 29185 10700 10710 18031 Face 29186 10710 10720 18031 Face 29187 10720 10703 18031 Face 29188 10703 10700 18031 Face 29189 10746 10755 18032 Face 29190 10755 10741 18032 Face 29191 10741 10730 18032 Face 29192 10730 10746 18032 Face 29193 10746 10730 18033 Face 29194 10730 10703 18033 Face 29195 10703 10720 18033 Face 29196 10720 10746 18033 Face 29197 10730 10706 18034 Face 29198 10706 10654 18034 Face 29199 10654 10703 18034 Face 29200 10703 10730 18034 Face 29201 10959 10966 18035 Face 29202 10966 10877 18035 Face 29203 10877 10864 18035 Face 29204 10864 10959 18035 Face 29205 10907 10959 18036 Face 29206 10959 10864 18036 Face 29207 10864 10828 18036 Face 29208 10828 10907 18036 Face 29209 10767 10907 18037 Face 29210 10907 10828 18037 Face 29211 10828 10726 18037 Face 29212 10726 10767 18037 Face 29213 10964 10908 18038 Face 29214 10908 10836 18038 Face 29215 10836 10871 18038 Face 29216 10871 10964 18038 Face 29217 10966 10964 18039 Face 29218 10964 10871 18039 Face 29219 10871 10877 18039 Face 29220 10877 10966 18039 Face 29221 10707 10731 18040 Face 29222 10731 10704 18040 Face 29223 10704 10658 18040 Face 29224 10658 10707 18040 Face 29225 10731 10746 18041 Face 29226 10746 10720 18041 Face 29227 10720 10704 18041 Face 29228 10704 10731 18041 Face 29229 10755 10746 18042 Face 29230 10746 10731 18042 Face 29231 10731 10743 18042 Face 29232 10743 10755 18042 Face 29233 10710 10702 18043 Face 29234 10702 10704 18043 Face 29235 10704 10720 18043 Face 29236 10720 10710 18043 Face 29237 10485 10451 18044 Face 29238 10451 10496 18044 Face 29239 10496 10524 18044 Face 29240 10524 10485 18044 Face 29241 10707 10729 18045 Face 29242 10729 10743 18045 Face 29243 10743 10731 18045 Face 29244 10731 10707 18045 Face 29245 10707 10621 18046 Face 29246 10621 10672 18046 Face 29247 10672 10729 18046 Face 29248 10729 10707 18046 Face 29249 10702 10655 18047 Face 29250 10655 10658 18047 Face 29251 10658 10704 18047 Face 29252 10704 10702 18047 Face 29253 10672 10621 18048 Face 29254 10621 10497 18048 Face 29255 10497 10562 18048 Face 29256 10562 10672 18048 Face 29257 10697 10672 18049 Face 29258 10672 10562 18049 Face 29259 10562 10577 18049 Face 29260 10577 10697 18049 Face 29261 10658 10655 18050 Face 29262 10655 10524 18050 Face 29263 10524 10496 18050 Face 29264 10496 10658 18050 Face 29265 10621 10658 18051 Face 29266 10658 10496 18051 Face 29267 10496 10497 18051 Face 29268 10497 10621 18051 Face 29269 10496 10451 18052 Face 29270 10451 10310 18052 Face 29271 10310 10319 18052 Face 29272 10319 10496 18052 Face 29273 10497 10496 18053 Face 29274 10496 10319 18053 Face 29275 10319 10355 18053 Face 29276 10355 10497 18053 Face 29277 10562 10497 18054 Face 29278 10497 10355 18054 Face 29279 10355 10457 18054 Face 29280 10457 10562 18054 Face 29281 10577 10562 18055 Face 29282 10562 10457 18055 Face 29283 10457 10491 18055 Face 29284 10491 10577 18055 Face 29285 10355 10319 18056 Face 29286 10319 10268 18056 Face 29287 10268 10331 18056 Face 29288 10331 10355 18056 Face 29289 10457 10355 18057 Face 29290 10355 10331 18057 Face 29291 10331 10428 18057 Face 29292 10428 10457 18057 Face 29293 10491 10457 18058 Face 29294 10457 10428 18058 Face 29295 10428 10473 18058 Face 29296 10473 10491 18058 Face 29297 10319 10310 18059 Face 29298 10310 10259 18059 Face 29299 10259 10268 18059 Face 29300 10268 10319 18059 Face 29301 10473 10428 18060 Face 29302 10428 10458 18060 Face 29303 10458 10500 18060 Face 29304 10500 10473 18060 Face 29305 10268 10259 18061 Face 29306 10259 10278 18061 Face 29307 10278 10285 18061 Face 29308 10285 10268 18061 Face 29309 10331 10268 18062 Face 29310 10268 10285 18062 Face 29311 10285 10342 18062 Face 29312 10342 10331 18062 Face 29313 10285 10278 18063 Face 29314 10278 10321 18063 Face 29315 10321 10315 18063 Face 29316 10315 10285 18063 Face 29317 10342 10285 18064 Face 29318 10285 10315 18064 Face 29319 10315 10379 18064 Face 29320 10379 10342 18064 Face 29321 10458 10342 18065 Face 29322 10342 10379 18065 Face 29323 10379 10489 18065 Face 29324 10489 10458 18065 Face 29325 10500 10458 18066 Face 29326 10458 10489 18066 Face 29327 10489 10541 18066 Face 29328 10541 10500 18066 Face 29329 10489 10379 18067 Face 29330 10379 10438 18067 Face 29331 10438 10535 18067 Face 29332 10535 10489 18067 Face 29333 10541 10489 18068 Face 29334 10489 10535 18068 Face 29335 10535 10555 18068 Face 29336 10555 10541 18068 Face 29337 10315 10321 18069 Face 29338 10321 10387 18069 Face 29339 10387 10396 18069 Face 29340 10396 10315 18069 Face 29341 10379 10315 18070 Face 29342 10315 10396 18070 Face 29343 10396 10438 18070 Face 29344 10438 10379 18070 Face 29345 10396 10387 18071 Face 29346 10387 10551 18071 Face 29347 10551 10545 18071 Face 29348 10545 10396 18071 Face 29349 10438 10396 18072 Face 29350 10396 10545 18072 Face 29351 10545 10513 18072 Face 29352 10513 10438 18072 Face 29353 10535 10438 18073 Face 29354 10438 10513 18073 Face 29355 10513 10600 18073 Face 29356 10600 10535 18073 Face 29357 10555 10535 18074 Face 29358 10535 10600 18074 Face 29359 10600 10626 18074 Face 29360 10626 10555 18074 Face 29361 10551 10877 18075 Face 29362 10877 10871 18075 Face 29363 10871 10545 18075 Face 29364 10545 10551 18075 Face 29365 10626 10600 18076 Face 29366 10600 10744 18076 Face 29367 10744 10714 18076 Face 29368 10714 10626 18076 Face 29369 10513 10545 18077 Face 29370 10545 10871 18077 Face 29371 10871 10836 18077 Face 29372 10836 10513 18077 Face 29373 10600 10513 18078 Face 29374 10513 10836 18078 Face 29375 10836 10744 18078 Face 29376 10744 10600 18078 Face 29377 10975 11011 18079 Face 29378 11011 10959 18079 Face 29379 10959 10907 18079 Face 29380 10907 10975 18079 Face 29381 10833 10797 18080 Face 29382 10797 10767 18080 Face 29383 10767 10805 18080 Face 29384 10805 10833 18080 Face 29385 10738 10833 18081 Face 29386 10833 10805 18081 Face 29387 10805 10751 18081 Face 29388 10751 10738 18081 Face 29389 11015 11002 18082 Face 29390 11002 10908 18082 Face 29391 10908 10964 18082 Face 29392 10964 11015 18082 Face 29393 11009 10997 18083 Face 29394 10997 11002 18083 Face 29395 11002 11015 18083 Face 29396 11015 11009 18083 Face 29397 11025 11009 18084 Face 29398 11009 11015 18084 Face 29399 11015 11026 18084 Face 29400 11026 11025 18084 Face 29401 11005 11025 18085 Face 29402 11025 11026 18085 Face 29403 11026 11011 18085 Face 29404 11011 11005 18085 Face 29405 10973 11005 18086 Face 29406 11005 11011 18086 Face 29407 11011 10975 18086 Face 29408 10975 10973 18086 Face 29409 10835 10821 18087 Face 29410 10821 10797 18087 Face 29411 10797 10833 18087 Face 29412 10833 10835 18087 Face 29413 10773 10835 18088 Face 29414 10835 10833 18088 Face 29415 10833 10738 18088 Face 29416 10738 10773 18088 Face 29417 10711 10773 18089 Face 29418 10773 10738 18089 Face 29419 10738 10765 18089 Face 29420 10765 10711 18089 Face 29421 10813 10711 18090 Face 29422 10711 10765 18090 Face 29423 10765 10795 18090 Face 29424 10795 10813 18090 Face 29425 10925 10813 18091 Face 29426 10813 10795 18091 Face 29427 10795 10950 18091 Face 29428 10950 10925 18091 Face 29429 10963 10925 18092 Face 29430 10925 10950 18092 Face 29431 10950 10984 18092 Face 29432 10984 10963 18092 Face 29433 11000 10963 18093 Face 29434 10963 10984 18093 Face 29435 10984 11003 18093 Face 29436 11003 11000 18093 Face 29437 10979 11000 18094 Face 29438 11000 11003 18094 Face 29439 11003 10982 18094 Face 29440 10982 10979 18094 Face 29441 10997 10979 18095 Face 29442 10979 10982 18095 Face 29443 10982 11002 18095 Face 29444 11002 10997 18095 Face 29445 11002 10982 18096 Face 29446 10982 10923 18096 Face 29447 10923 10908 18096 Face 29448 10908 11002 18096 Face 29449 10765 10738 18097 Face 29450 10738 10751 18097 Face 29451 10751 10699 18097 Face 29452 10699 10765 18097 Face 29453 10795 10765 18098 Face 29454 10765 10699 18098 Face 29455 10699 10754 18098 Face 29456 10754 10795 18098 Face 29457 10950 10795 18099 Face 29458 10795 10754 18099 Face 29459 10754 10893 18099 Face 29460 10893 10950 18099 Face 29461 10984 10950 18100 Face 29462 10950 10893 18100 Face 29463 10893 10941 18100 Face 29464 10941 10984 18100 Face 29465 10540 10549 18101 Face 29466 10549 10643 18101 Face 29467 10643 10769 18101 Face 29468 10769 10540 18101 Face 29469 10611 10540 18102 Face 29470 10540 10769 18102 Face 29471 10769 10838 18102 Face 29472 10838 10611 18102 Face 29473 10549 10593 18103 Face 29474 10593 10628 18103 Face 29475 10628 10643 18103 Face 29476 10643 10549 18103 Face 29477 10854 10638 18104 Face 29478 10638 10611 18104 Face 29479 10611 10838 18104 Face 29480 10838 10854 18104 Face 29481 10486 10558 18105 Face 29482 10558 10593 18105 Face 29483 10593 10549 18105 Face 29484 10549 10486 18105 Face 29485 10435 10486 18106 Face 29486 10486 10549 18106 Face 29487 10549 10540 18106 Face 29488 10540 10435 18106 Face 29489 10440 10435 18107 Face 29490 10435 10540 18107 Face 29491 10540 10611 18107 Face 29492 10611 10440 18107 Face 29493 10477 10440 18108 Face 29494 10440 10611 18108 Face 29495 10611 10638 18108 Face 29496 10638 10477 18108 Face 29497 10341 10384 18109 Face 29498 10384 10435 18109 Face 29499 10435 10440 18109 Face 29500 10440 10341 18109 Face 29501 10362 10341 18110 Face 29502 10341 10440 18110 Face 29503 10440 10477 18110 Face 29504 10477 10362 18110 Face 29505 10461 10529 18111 Face 29506 10529 10558 18111 Face 29507 10558 10486 18111 Face 29508 10486 10461 18111 Face 29509 10384 10461 18112 Face 29510 10461 10486 18112 Face 29511 10486 10435 18112 Face 29512 10435 10384 18112 Face 29513 10372 10409 18113 Face 29514 10409 10529 18113 Face 29515 10529 10461 18113 Face 29516 10461 10372 18113 Face 29517 10290 10372 18114 Face 29518 10372 10461 18114 Face 29519 10461 10384 18114 Face 29520 10384 10290 18114 Face 29521 10240 10290 18115 Face 29522 10290 10384 18115 Face 29523 10384 10341 18115 Face 29524 10341 10240 18115 Face 29525 10244 10240 18116 Face 29526 10240 10341 18116 Face 29527 10341 10362 18116 Face 29528 10362 10244 18116 Face 29529 10258 10351 18117 Face 29530 10351 10372 18117 Face 29531 10372 10290 18117 Face 29532 10290 10258 18117 Face 29533 10215 10258 18118 Face 29534 10258 10290 18118 Face 29535 10290 10240 18118 Face 29536 10240 10215 18118 Face 29537 10220 10215 18119 Face 29538 10215 10240 18119 Face 29539 10240 10244 18119 Face 29540 10244 10220 18119 Face 29541 10351 10391 18120 Face 29542 10391 10409 18120 Face 29543 10409 10372 18120 Face 29544 10372 10351 18120 Face 29545 10242 10241 18121 Face 29546 10241 10215 18121 Face 29547 10215 10220 18121 Face 29548 10220 10242 18121 Face 29549 10358 10411 18122 Face 29550 10411 10391 18122 Face 29551 10391 10351 18122 Face 29552 10351 10358 18122 Face 29553 10279 10358 18123 Face 29554 10358 10351 18123 Face 29555 10351 10258 18123 Face 29556 10258 10279 18123 Face 29557 10241 10279 18124 Face 29558 10279 10258 18124 Face 29559 10258 10215 18124 Face 29560 10215 10241 18124 Face 29561 10434 10476 18125 Face 29562 10476 10411 18125 Face 29563 10411 10358 18125 Face 29564 10358 10434 18125 Face 29565 10357 10434 18126 Face 29566 10434 10358 18126 Face 29567 10358 10279 18126 Face 29568 10279 10357 18126 Face 29569 10343 10357 18127 Face 29570 10357 10279 18127 Face 29571 10279 10241 18127 Face 29572 10241 10343 18127 Face 29573 10328 10343 18128 Face 29574 10343 10241 18128 Face 29575 10241 10242 18128 Face 29576 10242 10328 18128 Face 29577 10444 10431 18129 Face 29578 10431 10357 18129 Face 29579 10357 10343 18129 Face 29580 10343 10444 18129 Face 29581 10443 10444 18130 Face 29582 10444 10343 18130 Face 29583 10343 10365 18130 Face 29584 10365 10443 18130 Face 29585 10509 10579 18131 Face 29586 10579 10476 18131 Face 29587 10476 10434 18131 Face 29588 10434 10509 18131 Face 29589 10431 10509 18132 Face 29590 10509 10434 18132 Face 29591 10434 10357 18132 Face 29592 10357 10431 18132 Face 29593 10443 10490 18133 Face 29594 10490 10505 18133 Face 29595 10505 10444 18133 Face 29596 10444 10443 18133 Face 29597 10431 10514 18134 Face 29598 10514 10580 18134 Face 29599 10580 10509 18134 Face 29600 10509 10431 18134 Face 29601 10580 10514 18135 Face 29602 10514 10548 18135 Face 29603 10548 10599 18135 Face 29604 10599 10580 18135 Face 29605 10328 10344 18136 Face 29606 10344 10365 18136 Face 29607 10365 10343 18136 Face 29608 10343 10328 18136 Face 29609 10490 10504 18137 Face 29610 10504 10521 18137 Face 29611 10521 10505 18137 Face 29612 10505 10490 18137 Face 29613 10571 10615 18138 Face 29614 10615 10599 18138 Face 29615 10599 10548 18138 Face 29616 10548 10571 18138 Face 29617 10571 10548 18139 Face 29618 10548 10505 18139 Face 29619 10505 10521 18139 Face 29620 10521 10571 18139 Face 29621 10548 10514 18140 Face 29622 10514 10444 18140 Face 29623 10444 10505 18140 Face 29624 10505 10548 18140 Face 29625 10699 10751 18141 Face 29626 10751 10643 18141 Face 29627 10643 10628 18141 Face 29628 10628 10699 18141 Face 29629 10923 10936 18142 Face 29630 10936 10854 18142 Face 29631 10854 10838 18142 Face 29632 10838 10923 18142 Face 29633 10908 10923 18143 Face 29634 10923 10838 18143 Face 29635 10838 10769 18143 Face 29636 10769 10908 18143 Face 29637 10893 10754 18144 Face 29638 10754 10708 18144 Face 29639 10708 10820 18144 Face 29640 10820 10893 18144 Face 29641 10941 10893 18145 Face 29642 10893 10820 18145 Face 29643 10820 10847 18145 Face 29644 10847 10941 18145 Face 29645 10936 10941 18146 Face 29646 10941 10847 18146 Face 29647 10847 10854 18146 Face 29648 10854 10936 18146 Face 29649 10754 10699 18147 Face 29650 10699 10628 18147 Face 29651 10628 10708 18147 Face 29652 10708 10754 18147 Face 29653 10544 10563 18148 Face 29654 10563 10517 18148 Face 29655 10517 10475 18148 Face 29656 10475 10544 18148 Face 29657 10563 10571 18149 Face 29658 10571 10521 18149 Face 29659 10521 10517 18149 Face 29660 10517 10563 18149 Face 29661 10615 10571 18150 Face 29662 10571 10563 18150 Face 29663 10563 10610 18150 Face 29664 10610 10615 18150 Face 29665 10504 10507 18151 Face 29666 10507 10517 18151 Face 29667 10517 10521 18151 Face 29668 10521 10504 18151 Face 29669 10344 10328 18152 Face 29670 10328 10361 18152 Face 29671 10361 10381 18152 Face 29672 10381 10344 18152 Face 29673 10544 10598 18153 Face 29674 10598 10610 18153 Face 29675 10610 10563 18153 Face 29676 10563 10544 18153 Face 29677 10544 10465 18154 Face 29678 10465 10538 18154 Face 29679 10538 10598 18154 Face 29680 10598 10544 18154 Face 29681 10507 10469 18155 Face 29682 10469 10475 18155 Face 29683 10475 10517 18155 Face 29684 10517 10507 18155 Face 29685 10538 10465 18156 Face 29686 10465 10386 18156 Face 29687 10386 10456 18156 Face 29688 10456 10538 18156 Face 29689 10579 10538 18157 Face 29690 10538 10456 18157 Face 29691 10456 10476 18157 Face 29692 10476 10579 18157 Face 29693 10475 10469 18158 Face 29694 10469 10381 18158 Face 29695 10381 10361 18158 Face 29696 10361 10475 18158 Face 29697 10465 10475 18159 Face 29698 10475 10361 18159 Face 29699 10361 10386 18159 Face 29700 10386 10465 18159 Face 29701 10361 10328 18160 Face 29702 10328 10242 18160 Face 29703 10242 10252 18160 Face 29704 10252 10361 18160 Face 29705 10386 10361 18161 Face 29706 10361 10252 18161 Face 29707 10252 10294 18161 Face 29708 10294 10386 18161 Face 29709 10456 10386 18162 Face 29710 10386 10294 18162 Face 29711 10294 10383 18162 Face 29712 10383 10456 18162 Face 29713 10476 10456 18163 Face 29714 10456 10383 18163 Face 29715 10383 10411 18163 Face 29716 10411 10476 18163 Face 29717 10294 10252 18164 Face 29718 10252 10225 18164 Face 29719 10225 10288 18164 Face 29720 10288 10294 18164 Face 29721 10411 10383 18165 Face 29722 10383 10373 18165 Face 29723 10373 10391 18165 Face 29724 10391 10411 18165 Face 29725 10252 10242 18166 Face 29726 10242 10220 18166 Face 29727 10220 10225 18166 Face 29728 10225 10252 18166 Face 29729 10391 10373 18167 Face 29730 10373 10395 18167 Face 29731 10395 10409 18167 Face 29732 10409 10391 18167 Face 29733 10225 10220 18168 Face 29734 10220 10244 18168 Face 29735 10244 10247 18168 Face 29736 10247 10225 18168 Face 29737 10288 10225 18169 Face 29738 10225 10247 18169 Face 29739 10247 10303 18169 Face 29740 10303 10288 18169 Face 29741 10373 10288 18170 Face 29742 10288 10303 18170 Face 29743 10303 10395 18170 Face 29744 10395 10373 18170 Face 29745 10247 10244 18171 Face 29746 10244 10362 18171 Face 29747 10362 10360 18171 Face 29748 10360 10247 18171 Face 29749 10303 10247 18172 Face 29750 10247 10360 18172 Face 29751 10360 10425 18172 Face 29752 10425 10303 18172 Face 29753 10395 10303 18173 Face 29754 10303 10425 18173 Face 29755 10425 10502 18173 Face 29756 10502 10395 18173 Face 29757 10409 10395 18174 Face 29758 10395 10502 18174 Face 29759 10502 10529 18174 Face 29760 10529 10409 18174 Face 29761 10502 10425 18175 Face 29762 10425 10492 18175 Face 29763 10492 10539 18175 Face 29764 10539 10502 18175 Face 29765 10529 10502 18176 Face 29766 10502 10539 18176 Face 29767 10539 10558 18176 Face 29768 10558 10529 18176 Face 29769 10360 10362 18177 Face 29770 10362 10477 18177 Face 29771 10477 10478 18177 Face 29772 10478 10360 18177 Face 29773 10425 10360 18178 Face 29774 10360 10478 18178 Face 29775 10478 10492 18178 Face 29776 10492 10425 18178 Face 29777 10478 10477 18179 Face 29778 10477 10638 18179 Face 29779 10638 10633 18179 Face 29780 10633 10478 18179 Face 29781 10492 10478 18180 Face 29782 10478 10633 18180 Face 29783 10633 10605 18180 Face 29784 10605 10492 18180 Face 29785 10539 10492 18181 Face 29786 10492 10605 18181 Face 29787 10605 10608 18181 Face 29788 10608 10539 18181 Face 29789 10558 10539 18182 Face 29790 10539 10608 18182 Face 29791 10608 10593 18182 Face 29792 10593 10558 18182 Face 29793 10638 10854 18183 Face 29794 10854 10847 18183 Face 29795 10847 10633 18183 Face 29796 10633 10638 18183 Face 29797 10593 10608 18184 Face 29798 10608 10708 18184 Face 29799 10708 10628 18184 Face 29800 10628 10593 18184 Face 29801 10605 10633 18185 Face 29802 10633 10847 18185 Face 29803 10847 10820 18185 Face 29804 10820 10605 18185 Face 29805 10608 10605 18186 Face 29806 10605 10820 18186 Face 29807 10820 10708 18186 Face 29808 10708 10608 18186 Face 29809 10679 10590 18187 Face 29810 10590 10420 18187 Face 29811 10420 10488 18187 Face 29812 10488 10679 18187 Face 29813 10590 10463 18188 Face 29814 10463 10349 18188 Face 29815 10349 10420 18188 Face 29816 10420 10590 18188 Face 29817 10463 10350 18189 Face 29818 10350 10291 18189 Face 29819 10291 10349 18189 Face 29820 10349 10463 18189 Face 29821 10350 10275 18190 Face 29822 10275 10245 18190 Face 29823 10245 10291 18190 Face 29824 10291 10350 18190 Face 29825 10275 10320 18191 Face 29826 10320 10262 18191 Face 29827 10262 10245 18191 Face 29828 10245 10275 18191 Face 29829 10320 10400 18192 Face 29830 10400 10345 18192 Face 29831 10345 10262 18192 Face 29832 10262 10320 18192 Face 29833 10400 10546 18193 Face 29834 10546 10452 18193 Face 29835 10452 10345 18193 Face 29836 10345 10400 18193 Face 29837 10546 10679 18194 Face 29838 10679 10488 18194 Face 29839 10488 10452 18194 Face 29840 10452 10546 18194 Face 29841 10574 10374 18195 Face 29842 10374 10419 18195 Face 29843 10419 10636 18195 Face 29844 10636 10574 18195 Face 29845 10742 10574 18196 Face 29846 10574 10636 18196 Face 29847 10636 10798 18196 Face 29848 10798 10742 18196 Face 29849 10740 10742 18197 Face 29850 10742 10798 18197 Face 29851 10798 10772 18197 Face 29852 10772 10740 18197 Face 29853 10588 10740 18198 Face 29854 10740 10772 18198 Face 29855 10772 10689 18198 Face 29856 10689 10588 18198 Face 29857 10590 10679 18199 Face 29858 10679 10742 18199 Face 29859 10742 10740 18199 Face 29860 10740 10590 18199 Face 29861 10463 10590 18200 Face 29862 10590 10740 18200 Face 29863 10740 10588 18200 Face 29864 10588 10463 18200 Face 29865 10546 10400 18201 Face 29866 10400 10374 18201 Face 29867 10374 10574 18201 Face 29868 10574 10546 18201 Face 29869 10679 10546 18202 Face 29870 10546 10574 18202 Face 29871 10574 10742 18202 Face 29872 10742 10679 18202 Face 29873 10359 10297 18203 Face 29874 10297 10345 18203 Face 29875 10345 10452 18203 Face 29876 10452 10359 18203 Face 29877 10346 10359 18204 Face 29878 10359 10452 18204 Face 29879 10452 10488 18204 Face 29880 10488 10346 18204 Face 29881 10313 10346 18205 Face 29882 10346 10488 18205 Face 29883 10488 10420 18205 Face 29884 10420 10313 18205 Face 29885 10272 10313 18206 Face 29886 10313 10420 18206 Face 29887 10420 10349 18206 Face 29888 10349 10272 18206 Face 29889 10330 10354 18207 Face 29890 10354 10359 18207 Face 29891 10359 10346 18207 Face 29892 10346 10330 18207 Face 29893 10276 10330 18208 Face 29894 10330 10346 18208 Face 29895 10346 10313 18208 Face 29896 10313 10276 18208 Face 29897 10217 10276 18209 Face 29898 10276 10313 18209 Face 29899 10313 10272 18209 Face 29900 10272 10217 18209 Face 29901 10354 10295 18210 Face 29902 10295 10297 18210 Face 29903 10297 10359 18210 Face 29904 10359 10354 18210 Face 29905 10205 10237 18211 Face 29906 10237 10276 18211 Face 29907 10276 10217 18211 Face 29908 10217 10205 18211 Face 29909 10329 10282 18212 Face 29910 10282 10295 18212 Face 29911 10295 10354 18212 Face 29912 10354 10329 18212 Face 29913 10302 10329 18213 Face 29914 10329 10354 18213 Face 29915 10354 10330 18213 Face 29916 10330 10302 18213 Face 29917 10237 10302 18214 Face 29918 10302 10330 18214 Face 29919 10330 10276 18214 Face 29920 10276 10237 18214 Face 29921 10286 10238 18215 Face 29922 10238 10282 18215 Face 29923 10282 10329 18215 Face 29924 10329 10286 18215 Face 29925 10267 10286 18216 Face 29926 10286 10329 18216 Face 29927 10329 10302 18216 Face 29928 10302 10267 18216 Face 29929 10221 10267 18217 Face 29930 10267 10302 18217 Face 29931 10302 10237 18217 Face 29932 10237 10221 18217 Face 29933 10185 10221 18218 Face 29934 10221 10237 18218 Face 29935 10237 10205 18218 Face 29936 10205 10185 18218 Face 29937 10206 10234 18219 Face 29938 10234 10267 18219 Face 29939 10267 10221 18219 Face 29940 10221 10206 18219 Face 29941 10200 10206 18220 Face 29942 10206 10221 18220 Face 29943 10221 10207 18220 Face 29944 10207 10200 18220 Face 29945 10239 10202 18221 Face 29946 10202 10238 18221 Face 29947 10238 10286 18221 Face 29948 10286 10239 18221 Face 29949 10234 10239 18222 Face 29950 10239 10286 18222 Face 29951 10286 10267 18222 Face 29952 10267 10234 18222 Face 29953 10200 10168 18223 Face 29954 10168 10172 18223 Face 29955 10172 10206 18223 Face 29956 10206 10200 18223 Face 29957 10234 10204 18224 Face 29958 10204 10212 18224 Face 29959 10212 10239 18224 Face 29960 10239 10234 18224 Face 29961 10212 10204 18225 Face 29962 10204 10175 18225 Face 29963 10175 10194 18225 Face 29964 10194 10212 18225 Face 29965 10185 10170 18226 Face 29966 10170 10207 18226 Face 29967 10207 10221 18226 Face 29968 10221 10185 18226 Face 29969 10168 10143 18227 Face 29970 10143 10142 18227 Face 29971 10142 10172 18227 Face 29972 10172 10168 18227 Face 29973 10148 10166 18228 Face 29974 10166 10194 18228 Face 29975 10194 10175 18228 Face 29976 10175 10148 18228 Face 29977 10148 10175 18229 Face 29978 10175 10172 18229 Face 29979 10172 10142 18229 Face 29980 10142 10148 18229 Face 29981 10175 10204 18230 Face 29982 10204 10206 18230 Face 29983 10206 10172 18230 Face 29984 10172 10175 18230 Face 29985 10121 10128 18231 Face 29986 10128 10118 18231 Face 29987 10118 10112 18231 Face 29988 10112 10121 18231 Face 29989 10128 10148 18232 Face 29990 10148 10142 18232 Face 29991 10142 10118 18232 Face 29992 10118 10128 18232 Face 29993 10166 10148 18233 Face 29994 10148 10128 18233 Face 29995 10128 10154 18233 Face 29996 10154 10166 18233 Face 29997 10143 10116 18234 Face 29998 10116 10118 18234 Face 29999 10118 10142 18234 Face 30000 10142 10143 18234 Face 30001 10170 10185 18235 Face 30002 10185 10144 18235 Face 30003 10144 10141 18235 Face 30004 10141 10170 18235 Face 30005 10121 10153 18236 Face 30006 10153 10154 18236 Face 30007 10154 10128 18236 Face 30008 10128 10121 18236 Face 30009 10121 10126 18237 Face 30010 10126 10162 18237 Face 30011 10162 10153 18237 Face 30012 10153 10121 18237 Face 30013 10116 10117 18238 Face 30014 10117 10112 18238 Face 30015 10112 10118 18238 Face 30016 10118 10116 18238 Face 30017 10162 10126 18239 Face 30018 10126 10145 18239 Face 30019 10145 10191 18239 Face 30020 10191 10162 18239 Face 30021 10202 10162 18240 Face 30022 10162 10191 18240 Face 30023 10191 10238 18240 Face 30024 10238 10202 18240 Face 30025 10112 10117 18241 Face 30026 10117 10141 18241 Face 30027 10141 10144 18241 Face 30028 10144 10112 18241 Face 30029 10126 10112 18242 Face 30030 10112 10144 18242 Face 30031 10144 10145 18242 Face 30032 10145 10126 18242 Face 30033 10144 10185 18243 Face 30034 10185 10205 18243 Face 30035 10205 10164 18243 Face 30036 10164 10144 18243 Face 30037 10145 10144 18244 Face 30038 10144 10164 18244 Face 30039 10164 10159 18244 Face 30040 10159 10145 18244 Face 30041 10191 10145 18245 Face 30042 10145 10159 18245 Face 30043 10159 10213 18245 Face 30044 10213 10191 18245 Face 30045 10238 10191 18246 Face 30046 10191 10213 18246 Face 30047 10213 10282 18246 Face 30048 10282 10238 18246 Face 30049 10159 10164 18247 Face 30050 10164 10177 18247 Face 30051 10177 10176 18247 Face 30052 10176 10159 18247 Face 30053 10213 10159 18248 Face 30054 10159 10176 18248 Face 30055 10176 10218 18248 Face 30056 10218 10213 18248 Face 30057 10282 10213 18249 Face 30058 10213 10218 18249 Face 30059 10218 10295 18249 Face 30060 10295 10282 18249 Face 30061 10164 10205 18250 Face 30062 10205 10217 18250 Face 30063 10217 10177 18250 Face 30064 10177 10164 18250 Face 30065 10295 10218 18251 Face 30066 10218 10222 18251 Face 30067 10222 10297 18251 Face 30068 10297 10295 18251 Face 30069 10177 10217 18252 Face 30070 10217 10272 18252 Face 30071 10272 10219 18252 Face 30072 10219 10177 18252 Face 30073 10176 10177 18253 Face 30074 10177 10219 18253 Face 30075 10219 10197 18253 Face 30076 10197 10176 18253 Face 30077 10218 10176 18254 Face 30078 10176 10197 18254 Face 30079 10197 10222 18254 Face 30080 10222 10218 18254 Face 30081 10219 10272 18255 Face 30082 10272 10349 18255 Face 30083 10349 10291 18255 Face 30084 10291 10219 18255 Face 30085 10197 10219 18256 Face 30086 10219 10291 18256 Face 30087 10291 10245 18256 Face 30088 10245 10197 18256 Face 30089 10222 10197 18257 Face 30090 10197 10245 18257 Face 30091 10245 10262 18257 Face 30092 10262 10222 18257 Face 30093 10297 10222 18258 Face 30094 10222 10262 18258 Face 30095 10262 10345 18258 Face 30096 10345 10297 18258 Face 30097 10320 10275 18259 Face 30098 10275 10289 18259 Face 30099 10289 10277 18259 Face 30100 10277 10320 18259 Face 30101 10400 10320 18260 Face 30102 10320 10277 18260 Face 30103 10277 10374 18260 Face 30104 10374 10400 18260 Face 30105 10350 10463 18261 Face 30106 10463 10588 18261 Face 30107 10588 10405 18261 Face 30108 10405 10350 18261 Face 30109 10275 10350 18262 Face 30110 10350 10405 18262 Face 30111 10405 10289 18262 Face 30112 10289 10275 18262 Face 30113 10405 10588 18263 Face 30114 10588 10689 18263 Face 30115 10689 10519 18263 Face 30116 10519 10405 18263 Face 30117 10289 10405 18264 Face 30118 10405 10519 18264 Face 30119 10519 10322 18264 Face 30120 10322 10289 18264 Face 30121 10277 10289 18265 Face 30122 10289 10322 18265 Face 30123 10322 10300 18265 Face 30124 10300 10277 18265 Face 30125 10374 10277 18266 Face 30126 10277 10300 18266 Face 30127 10300 10419 18266 Face 30128 10419 10374 18266 Face 30129 10958 11023 18267 Face 30130 11023 11036 18267 Face 30131 11036 11006 18267 Face 30132 11006 10958 18267 Face 30133 10971 10958 18268 Face 30134 10958 11006 18268 Face 30135 11006 11018 18268 Face 30136 11018 10971 18268 Face 30137 10801 10874 18269 Face 30138 10874 10884 18269 Face 30139 10884 10733 18269 Face 30140 10733 10801 18269 Face 30141 10472 10733 18270 Face 30142 10733 10823 18270 Face 30143 10823 10454 18270 Face 30144 10454 10472 18270 Face 30145 10265 10472 18271 Face 30146 10472 10454 18271 Face 30147 10454 10283 18271 Face 30148 10283 10265 18271 Face 30149 10178 10188 18272 Face 30150 10188 10180 18272 Face 30151 10180 10136 18272 Face 30152 10136 10178 18272 Face 30153 10216 10178 18273 Face 30154 10178 10136 18273 Face 30155 10136 10182 18273 Face 30156 10182 10216 18273 Face 30157 10935 11031 18274 Face 30158 11031 11033 18274 Face 30159 11033 11014 18274 Face 30160 11014 10935 18274 Face 30161 11014 11033 18275 Face 30162 11033 11036 18275 Face 30163 11036 11023 18275 Face 30164 11023 11014 18275 Face 30165 10307 10216 18276 Face 30166 10216 10182 18276 Face 30167 10182 10284 18276 Face 30168 10284 10307 18276 Face 30169 11031 11038 18277 Face 30170 11038 11041 18277 Face 30171 11041 11033 18277 Face 30172 11033 11031 18277 Face 30173 11036 11033 18278 Face 30174 11033 11041 18278 Face 30175 11041 11040 18278 Face 30176 11040 11036 18278 Face 30177 11006 11036 18279 Face 30178 11036 11040 18279 Face 30179 11040 11037 18279 Face 30180 11037 11006 18279 Face 30181 11018 11006 18280 Face 30182 11006 11037 18280 Face 30183 11037 11032 18280 Face 30184 11032 11018 18280 Face 30185 10904 11018 18281 Face 30186 11018 11032 18281 Face 30187 11032 10962 18281 Face 30188 10962 10904 18281 Face 30189 10832 10823 18282 Face 30190 10823 10904 18282 Face 30191 10904 10962 18282 Face 30192 10962 10832 18282 Face 30193 10454 10511 18283 Face 30194 10511 10293 18283 Face 30195 10293 10283 18283 Face 30196 10283 10454 18283 Face 30197 10823 10832 18284 Face 30198 10832 10511 18284 Face 30199 10511 10454 18284 Face 30200 10454 10823 18284 Face 30201 10180 10283 18285 Face 30202 10283 10293 18285 Face 30203 10293 10199 18285 Face 30204 10199 10180 18285 Face 30205 10180 10199 18286 Face 30206 10199 10160 18286 Face 30207 10160 10136 18286 Face 30208 10136 10180 18286 Face 30209 10136 10160 18287 Face 30210 10160 10203 18287 Face 30211 10203 10182 18287 Face 30212 10182 10136 18287 Face 30213 10182 10203 18288 Face 30214 10203 10273 18288 Face 30215 10273 10284 18288 Face 30216 10284 10182 18288 Face 30217 10883 11029 18289 Face 30218 11029 11008 18289 Face 30219 11008 10891 18289 Face 30220 10891 10883 18289 Face 30221 10273 10603 18290 Face 30222 10603 10581 18290 Face 30223 10581 10284 18290 Face 30224 10284 10273 18290 Face 30225 10581 10603 18291 Face 30226 10603 10883 18291 Face 30227 10883 10891 18291 Face 30228 10891 10581 18291 Face 30229 10827 10807 18292 Face 30230 10807 10862 18292 Face 30231 10862 10870 18292 Face 30232 10870 10827 18292 Face 30233 10931 10919 18293 Face 30234 10919 10899 18293 Face 30235 10899 10886 18293 Face 30236 10886 10931 18293 Face 30237 10905 10870 18294 Face 30238 10870 10862 18294 Face 30239 10862 10896 18294 Face 30240 10896 10905 18294 Face 30241 10899 10919 18295 Face 30242 10919 10905 18295 Face 30243 10905 10896 18295 Face 30244 10896 10899 18295 Face 30245 10770 10607 18296 Face 30246 10607 10308 18296 Face 30247 10308 10371 18296 Face 30248 10371 10770 18296 Face 30249 10174 10235 18297 Face 30250 10235 10243 18297 Face 30251 10243 10179 18297 Face 30252 10179 10174 18297 Face 30253 10235 10338 18298 Face 30254 10338 10371 18298 Face 30255 10371 10243 18298 Face 30256 10243 10235 18298 Face 30257 10075 10158 18299 Face 30258 10158 10171 18299 Face 30259 10171 10084 18299 Face 30260 10084 10075 18299 Face 30261 10158 10401 18300 Face 30262 10401 10422 18300 Face 30263 10422 10171 18300 Face 30264 10171 10158 18300 Face 30265 10965 10918 18301 Face 30266 10918 10916 18301 Face 30267 10916 10969 18301 Face 30268 10969 10965 18301 Face 30269 10851 10916 18302 Face 30270 10916 10918 18302 Face 30271 10918 10849 18302 Face 30272 10849 10851 18302 Face 30273 10401 10652 18303 Face 30274 10652 10664 18303 Face 30275 10664 10422 18303 Face 30276 10422 10401 18303 Face 30277 10827 10779 18304 Face 30278 10779 10776 18304 Face 30279 10776 10807 18304 Face 30280 10807 10827 18304 Face 30281 10779 10596 18305 Face 30282 10596 10594 18305 Face 30283 10594 10776 18305 Face 30284 10776 10779 18305 Face 30285 10230 10102 18306 Face 30286 10102 10097 18306 Face 30287 10097 10224 18306 Face 30288 10224 10230 18306 Face 30289 10775 10774 18307 Face 30290 10774 10851 18307 Face 30291 10851 10849 18307 Face 30292 10849 10775 18307 Face 30293 10594 10596 18308 Face 30294 10596 10369 18308 Face 30295 10369 10378 18308 Face 30296 10378 10594 18308 Face 30297 10230 10224 18309 Face 30298 10224 10378 18309 Face 30299 10378 10369 18309 Face 30300 10369 10230 18309 Face 30301 9681 9779 18310 Face 30302 9779 9712 18310 Face 30303 9712 9660 18310 Face 30304 9660 9681 18310 Face 30305 9634 9681 18311 Face 30306 9681 9660 18311 Face 30307 9660 9615 18311 Face 30308 9615 9634 18311 Face 30309 9600 9611 18312 Face 30310 9611 9615 18312 Face 30311 9615 9568 18312 Face 30312 9568 9600 18312 Face 30313 9591 9590 18313 Face 30314 9590 9568 18313 Face 30315 9568 9571 18313 Face 30316 9571 9591 18313 Face 30317 9622 9606 18314 Face 30318 9606 9571 18314 Face 30319 9571 9625 18314 Face 30320 9625 9622 18314 Face 30321 9696 9643 18315 Face 30322 9643 9625 18315 Face 30323 9625 9646 18315 Face 30324 9646 9696 18315 Face 30325 9754 9696 18316 Face 30326 9696 9646 18316 Face 30327 9646 9690 18316 Face 30328 9690 9754 18316 Face 30329 9847 9788 18317 Face 30330 9788 9690 18317 Face 30331 9690 9714 18317 Face 30332 9714 9847 18317 Face 30333 9712 9838 18318 Face 30334 9838 9847 18318 Face 30335 9847 9714 18318 Face 30336 9714 9712 18318 Face 30337 9822 9914 18319 Face 30338 9914 9847 18319 Face 30339 9847 9838 18319 Face 30340 9838 9822 18319 Face 30341 9825 9830 18320 Face 30342 9830 9838 18320 Face 30343 9838 9779 18320 Face 30344 9779 9825 18320 Face 30345 9777 9825 18321 Face 30346 9825 9779 18321 Face 30347 9779 9681 18321 Face 30348 9681 9777 18321 Face 30349 9727 9777 18322 Face 30350 9777 9681 18322 Face 30351 9681 9634 18322 Face 30352 9634 9727 18322 Face 30353 9757 9727 18323 Face 30354 9727 9634 18323 Face 30355 9634 9611 18323 Face 30356 9611 9757 18323 Face 30357 9737 9757 18324 Face 30358 9757 9611 18324 Face 30359 9611 9600 18324 Face 30360 9600 9737 18324 Face 30361 9731 9737 18325 Face 30362 9737 9600 18325 Face 30363 9600 9590 18325 Face 30364 9590 9731 18325 Face 30365 9732 9731 18326 Face 30366 9731 9590 18326 Face 30367 9590 9591 18326 Face 30368 9591 9732 18326 Face 30369 9742 9732 18327 Face 30370 9732 9591 18327 Face 30371 9591 9606 18327 Face 30372 9606 9742 18327 Face 30373 9766 9742 18328 Face 30374 9742 9606 18328 Face 30375 9606 9622 18328 Face 30376 9622 9766 18328 Face 30377 9744 9766 18329 Face 30378 9766 9622 18329 Face 30379 9622 9643 18329 Face 30380 9643 9744 18329 Face 30381 9796 9744 18330 Face 30382 9744 9643 18330 Face 30383 9643 9696 18330 Face 30384 9696 9796 18330 Face 30385 9856 9796 18331 Face 30386 9796 9696 18331 Face 30387 9696 9754 18331 Face 30388 9754 9856 18331 Face 30389 9855 9856 18332 Face 30390 9856 9754 18332 Face 30391 9754 9788 18332 Face 30392 9788 9855 18332 Face 30393 9891 9855 18333 Face 30394 9855 9788 18333 Face 30395 9788 9847 18333 Face 30396 9847 9891 18333 Face 30397 10096 10108 18334 Face 30398 10108 9856 18334 Face 30399 9856 9855 18334 Face 30400 9855 10096 18334 Face 30401 10096 9855 18335 Face 30402 9855 9891 18335 Face 30403 9891 10102 18335 Face 30404 10102 10096 18335 Face 30405 9999 10057 18336 Face 30406 10057 10097 18336 Face 30407 10097 9891 18336 Face 30408 9891 9999 18336 Face 30409 9893 10057 18337 Face 30410 10057 9999 18337 Face 30411 9999 9914 18337 Face 30412 9914 9893 18337 Face 30413 9814 9893 18338 Face 30414 9893 9914 18338 Face 30415 9914 9822 18338 Face 30416 9822 9814 18338 Face 30417 9928 9814 18339 Face 30418 9814 9822 18339 Face 30419 9822 9827 18339 Face 30420 9827 9928 18339 Face 30421 10027 9928 18340 Face 30422 9928 9827 18340 Face 30423 9827 9830 18340 Face 30424 9830 10027 18340 Face 30425 10044 10027 18341 Face 30426 10027 9830 18341 Face 30427 9830 9825 18341 Face 30428 9825 10044 18341 Face 30429 9957 10044 18342 Face 30430 10044 9825 18342 Face 30431 9825 9777 18342 Face 30432 9777 9957 18342 Face 30433 9958 9957 18343 Face 30434 9957 9777 18343 Face 30435 9777 9727 18343 Face 30436 9727 9958 18343 Face 30437 9956 9958 18344 Face 30438 9958 9727 18344 Face 30439 9727 9757 18344 Face 30440 9757 9956 18344 Face 30441 9972 9956 18345 Face 30442 9956 9757 18345 Face 30443 9757 9737 18345 Face 30444 9737 9972 18345 Face 30445 9973 9972 18346 Face 30446 9972 9737 18346 Face 30447 9737 9731 18346 Face 30448 9731 9973 18346 Face 30449 9952 9973 18347 Face 30450 9973 9731 18347 Face 30451 9731 9732 18347 Face 30452 9732 9952 18347 Face 30453 9987 9952 18348 Face 30454 9952 9732 18348 Face 30455 9732 9742 18348 Face 30456 9742 9987 18348 Face 30457 10024 9987 18349 Face 30458 9987 9742 18349 Face 30459 9742 9766 18349 Face 30460 9766 10024 18349 Face 30461 10063 10024 18350 Face 30462 10024 9766 18350 Face 30463 9766 9744 18350 Face 30464 9744 10063 18350 Face 30465 10076 10063 18351 Face 30466 10063 9744 18351 Face 30467 9744 9796 18351 Face 30468 9796 10076 18351 Face 30469 10108 10076 18352 Face 30470 10076 9796 18352 Face 30471 9796 9856 18352 Face 30472 9856 10108 18352 Face 30473 10113 10107 18353 Face 30474 10107 9973 18353 Face 30475 9973 9952 18353 Face 30476 9952 10113 18353 Face 30477 9952 9987 18354 Face 30478 9987 10155 18354 Face 30479 10155 10132 18354 Face 30480 10132 9952 18354 Face 30481 10107 10113 18355 Face 30482 10113 10382 18355 Face 30483 10382 10430 18355 Face 30484 10430 10107 18355 Face 30485 10113 10132 18356 Face 30486 10132 10280 18356 Face 30487 10280 10382 18356 Face 30488 10382 10113 18356 Face 30489 10487 10327 18357 Face 30490 10327 10296 18357 Face 30491 10296 10449 18357 Face 30492 10449 10487 18357 Face 30493 10123 9957 18358 Face 30494 9957 9958 18358 Face 30495 9958 10114 18358 Face 30496 10114 10123 18358 Face 30497 10353 10123 18359 Face 30498 10123 10114 18359 Face 30499 10114 10208 18359 Face 30500 10208 10353 18359 Face 30501 9956 10120 18360 Face 30502 10120 10114 18360 Face 30503 10114 9958 18360 Face 30504 9958 9956 18360 Face 30505 10501 10353 18361 Face 30506 10353 10208 18361 Face 30507 10208 10299 18361 Face 30508 10299 10501 18361 Face 30509 10299 10208 18362 Face 30510 10208 10120 18362 Face 30511 10120 10201 18362 Face 30512 10201 10299 18362 Face 30513 10827 10869 18363 Face 30514 10869 10842 18363 Face 30515 10842 10779 18363 Face 30516 10779 10827 18363 Face 30517 10869 10898 18364 Face 30518 10898 10880 18364 Face 30519 10880 10842 18364 Face 30520 10842 10869 18364 Face 30521 9956 9972 18365 Face 30522 9972 10103 18365 Face 30523 10103 10120 18365 Face 30524 10120 9956 18365 Face 30525 10103 10248 18366 Face 30526 10248 10432 18366 Face 30527 10432 10201 18366 Face 30528 10201 10103 18366 Face 30529 10201 10432 18367 Face 30530 10432 10713 18367 Face 30531 10713 10299 18367 Face 30532 10299 10201 18367 Face 30533 10299 10713 18368 Face 30534 10713 10840 18368 Face 30535 10840 10501 18368 Face 30536 10501 10299 18368 Face 30537 10906 10840 18369 Face 30538 10840 10713 18369 Face 30539 10713 10843 18369 Face 30540 10843 10906 18369 Face 30541 10843 10713 18370 Face 30542 10713 10432 18370 Face 30543 10432 10716 18370 Face 30544 10716 10843 18370 Face 30545 10432 10248 18371 Face 30546 10248 10430 18371 Face 30547 10430 10716 18371 Face 30548 10716 10432 18371 Face 30549 10753 10430 18372 Face 30550 10430 10382 18372 Face 30551 10382 10750 18372 Face 30552 10750 10753 18372 Face 30553 10750 10382 18373 Face 30554 10382 10280 18373 Face 30555 10280 10663 18373 Face 30556 10663 10750 18373 Face 30557 10663 10280 18374 Face 30558 10280 10155 18374 Face 30559 10155 10333 18374 Face 30560 10333 10663 18374 Face 30561 10187 10155 18375 Face 30562 10155 10024 18375 Face 30563 10024 10063 18375 Face 30564 10063 10187 18375 Face 30565 10063 10076 18376 Face 30566 10076 10226 18376 Face 30567 10226 10187 18376 Face 30568 10187 10063 18376 Face 30569 10187 10226 18377 Face 30570 10226 10450 18377 Face 30571 10450 10333 18377 Face 30572 10333 10187 18377 Face 30573 10333 10613 18378 Face 30574 10613 10825 18378 Face 30575 10825 10663 18378 Face 30576 10663 10333 18378 Face 30577 10663 10825 18379 Face 30578 10825 10872 18379 Face 30579 10872 10750 18379 Face 30580 10750 10663 18379 Face 30581 10750 10872 18380 Face 30582 10872 10879 18380 Face 30583 10879 10753 18380 Face 30584 10753 10750 18380 Face 30585 10716 10753 18381 Face 30586 10753 10879 18381 Face 30587 10879 10843 18381 Face 30588 10843 10716 18381 Face 30589 10906 10843 18382 Face 30590 10843 10879 18382 Face 30591 10879 10910 18382 Face 30592 10910 10906 18382 Face 30593 10910 10879 18383 Face 30594 10879 10872 18383 Face 30595 10872 10902 18383 Face 30596 10902 10910 18383 Face 30597 10902 10872 18384 Face 30598 10872 10825 18384 Face 30599 10825 10858 18384 Face 30600 10858 10902 18384 Face 30601 10928 10902 18385 Face 30602 10902 10858 18385 Face 30603 10858 10866 18385 Face 30604 10866 10928 18385 Face 30605 10780 10866 18386 Face 30606 10866 10858 18386 Face 30607 10858 10752 18386 Face 30608 10752 10780 18386 Face 30609 10858 10825 18387 Face 30610 10825 10613 18387 Face 30611 10613 10752 18387 Face 30612 10752 10858 18387 Face 30613 10613 10450 18388 Face 30614 10450 10510 18388 Face 30615 10510 10752 18388 Face 30616 10752 10613 18388 Face 30617 10780 10752 18389 Face 30618 10752 10510 18389 Face 30619 10510 10515 18389 Face 30620 10515 10780 18389 Face 30621 10233 10515 18390 Face 30622 10515 10510 18390 Face 30623 10510 10236 18390 Face 30624 10236 10233 18390 Face 30625 10510 10450 18391 Face 30626 10450 10226 18391 Face 30627 10226 10236 18391 Face 30628 10236 10510 18391 Face 30629 10226 10076 18392 Face 30630 10076 10108 18392 Face 30631 10108 10236 18392 Face 30632 10236 10226 18392 Face 30633 10236 10108 18393 Face 30634 10108 10096 18393 Face 30635 10096 10233 18393 Face 30636 10233 10236 18393 Face 30637 10096 10102 18394 Face 30638 10102 10230 18394 Face 30639 10230 10233 18394 Face 30640 10233 10096 18394 Face 30641 10233 10230 18395 Face 30642 10230 10369 18395 Face 30643 10369 10515 18395 Face 30644 10515 10233 18395 Face 30645 10596 10779 18396 Face 30646 10779 10842 18396 Face 30647 10842 10780 18396 Face 30648 10780 10596 18396 Face 30649 10780 10842 18397 Face 30650 10842 10880 18397 Face 30651 10880 10866 18397 Face 30652 10866 10780 18397 Face 30653 10866 10880 18398 Face 30654 10880 10939 18398 Face 30655 10939 10928 18398 Face 30656 10928 10866 18398 Face 30657 9988 9928 18399 Face 30658 9928 10027 18399 Face 30659 10027 10084 18399 Face 30660 10084 9988 18399 Face 30661 9988 9974 18400 Face 30662 9974 9924 18400 Face 30663 9924 9928 18400 Face 30664 9928 9988 18400 Face 30665 9928 9924 18401 Face 30666 9924 9846 18401 Face 30667 9846 9814 18401 Face 30668 9814 9928 18401 Face 30669 10178 10181 18402 Face 30670 10181 10189 18402 Face 30671 10189 10188 18402 Face 30672 10188 10178 18402 Face 30673 10125 10129 18403 Face 30674 10129 10195 18403 Face 30675 10195 10173 18403 Face 30676 10173 10125 18403 Face 30677 10264 10229 18404 Face 30678 10229 10193 18404 Face 30679 10193 10249 18404 Face 30680 10249 10264 18404 Face 30681 10249 10193 18405 Face 30682 10193 10105 18405 Face 30683 10105 10211 18405 Face 30684 10211 10249 18405 Face 30685 10196 10211 18406 Face 30686 10211 10105 18406 Face 30687 10105 10085 18406 Face 30688 10085 10196 18406 Face 30689 9974 10085 18407 Face 30690 10085 10105 18407 Face 30691 10105 10052 18407 Face 30692 10052 9974 18407 Face 30693 10105 10193 18408 Face 30694 10193 10129 18408 Face 30695 10129 10052 18408 Face 30696 10052 10105 18408 Face 30697 10129 10193 18409 Face 30698 10193 10229 18409 Face 30699 10229 10195 18409 Face 30700 10195 10129 18409 Face 30701 10910 10902 18410 Face 30702 10902 10928 18410 Face 30703 10928 10932 18410 Face 30704 10932 10910 18410 Face 30705 10910 10932 18411 Face 30706 10932 10920 18411 Face 30707 10920 10906 18411 Face 30708 10906 10910 18411 Face 30709 10840 10906 18412 Face 30710 10906 10920 18412 Face 30711 10920 10876 18412 Face 30712 10876 10840 18412 Face 30713 10876 10920 18413 Face 30714 10920 10944 18413 Face 30715 10944 10894 18413 Face 30716 10894 10876 18413 Face 30717 10894 10944 18414 Face 30718 10944 10943 18414 Face 30719 10943 10901 18414 Face 30720 10901 10894 18414 Face 30721 10901 10943 18415 Face 30722 10943 10947 18415 Face 30723 10947 10913 18415 Face 30724 10913 10901 18415 Face 30725 10913 10947 18416 Face 30726 10947 10937 18416 Face 30727 10937 10898 18416 Face 30728 10898 10913 18416 Face 30729 10937 10939 18417 Face 30730 10939 10880 18417 Face 30731 10880 10898 18417 Face 30732 10898 10937 18417 Face 30733 10827 10888 18418 Face 30734 10888 10887 18418 Face 30735 10887 10869 18418 Face 30736 10869 10827 18418 Face 30737 10898 10869 18419 Face 30738 10869 10887 18419 Face 30739 10887 10913 18419 Face 30740 10913 10898 18419 Face 30741 10913 10887 18420 Face 30742 10887 10844 18420 Face 30743 10844 10901 18420 Face 30744 10901 10913 18420 Face 30745 10901 10844 18421 Face 30746 10844 10778 18421 Face 30747 10778 10894 18421 Face 30748 10894 10901 18421 Face 30749 10894 10778 18422 Face 30750 10778 10656 18422 Face 30751 10656 10876 18422 Face 30752 10876 10894 18422 Face 30753 10840 10876 18423 Face 30754 10876 10656 18423 Face 30755 10656 10501 18423 Face 30756 10501 10840 18423 Face 30757 10501 10656 18424 Face 30758 10656 10388 18424 Face 30759 10388 10353 18424 Face 30760 10353 10501 18424 Face 30761 10353 10388 18425 Face 30762 10388 10156 18425 Face 30763 10156 10123 18425 Face 30764 10123 10353 18425 Face 30765 9957 10123 18426 Face 30766 10123 10156 18426 Face 30767 10156 10044 18426 Face 30768 10044 9957 18426 Face 30769 10075 10044 18427 Face 30770 10044 10156 18427 Face 30771 10156 10158 18427 Face 30772 10158 10075 18427 Face 30773 10158 10156 18428 Face 30774 10156 10388 18428 Face 30775 10388 10401 18428 Face 30776 10401 10158 18428 Face 30777 10656 10652 18429 Face 30778 10652 10401 18429 Face 30779 10401 10388 18429 Face 30780 10388 10656 18429 Face 30781 10664 10696 18430 Face 30782 10696 10481 18430 Face 30783 10481 10422 18430 Face 30784 10422 10664 18430 Face 30785 10481 10696 18431 Face 30786 10696 10784 18431 Face 30787 10784 10572 18431 Face 30788 10572 10481 18431 Face 30789 10481 10572 18432 Face 30790 10572 10306 18432 Face 30791 10306 10228 18432 Face 30792 10228 10481 18432 Face 30793 10422 10481 18433 Face 30794 10481 10228 18433 Face 30795 10228 10171 18433 Face 30796 10171 10422 18433 Face 30797 10209 10196 18434 Face 30798 10196 10085 18434 Face 30799 10085 10150 18434 Face 30800 10150 10209 18434 Face 30801 9974 9988 18435 Face 30802 9988 10150 18435 Face 30803 10150 10085 18435 Face 30804 10085 9974 18435 Face 30805 10084 10171 18436 Face 30806 10171 10228 18436 Face 30807 10228 10150 18436 Face 30808 10150 10084 18436 Face 30809 10150 10228 18437 Face 30810 10228 10306 18437 Face 30811 10306 10209 18437 Face 30812 10209 10150 18437 Face 30813 10269 10209 18438 Face 30814 10209 10306 18438 Face 30815 10306 10390 18438 Face 30816 10390 10269 18438 Face 30817 10269 10390 18439 Face 30818 10390 10449 18439 Face 30819 10449 10296 18439 Face 30820 10296 10269 18439 Face 30821 10211 10296 18440 Face 30822 10296 10327 18440 Face 30823 10327 10249 18440 Face 30824 10249 10211 18440 Face 30825 10264 10249 18441 Face 30826 10249 10327 18441 Face 30827 10327 10352 18441 Face 30828 10352 10264 18441 Face 30829 10352 10327 18442 Face 30830 10327 10487 18442 Face 30831 10487 10526 18442 Face 30832 10526 10352 18442 Face 30833 10526 10487 18443 Face 30834 10487 10676 18443 Face 30835 10676 10732 18443 Face 30836 10732 10526 18443 Face 30837 10676 10487 18444 Face 30838 10487 10449 18444 Face 30839 10449 10684 18444 Face 30840 10684 10676 18444 Face 30841 10684 10449 18445 Face 30842 10449 10390 18445 Face 30843 10390 10675 18445 Face 30844 10675 10684 18445 Face 30845 10684 10839 18446 Face 30846 10839 10830 18446 Face 30847 10830 10676 18446 Face 30848 10676 10684 18446 Face 30849 10781 10676 18447 Face 30850 10676 10830 18447 Face 30851 10830 10848 18447 Face 30852 10848 10781 18447 Face 30853 10948 10848 18448 Face 30854 10848 10830 18448 Face 30855 10830 10926 18448 Face 30856 10926 10948 18448 Face 30857 10926 10830 18449 Face 30858 10830 10839 18449 Face 30859 10839 10952 18449 Face 30860 10952 10926 18449 Face 30861 10684 10675 18450 Face 30862 10675 10834 18450 Face 30863 10834 10839 18450 Face 30864 10839 10684 18450 Face 30865 10572 10675 18451 Face 30866 10675 10390 18451 Face 30867 10390 10306 18451 Face 30868 10306 10572 18451 Face 30869 10784 10834 18452 Face 30870 10834 10675 18452 Face 30871 10675 10572 18452 Face 30872 10572 10784 18452 Face 30873 10909 10952 18453 Face 30874 10952 10839 18453 Face 30875 10839 10834 18453 Face 30876 10834 10909 18453 Face 30877 10946 10909 18454 Face 30878 10909 10861 18454 Face 30879 10861 10867 18454 Face 30880 10867 10946 18454 Face 30881 10867 10790 18455 Face 30882 10790 10775 18455 Face 30883 10775 10849 18455 Face 30884 10849 10867 18455 Face 30885 10774 10778 18456 Face 30886 10778 10844 18456 Face 30887 10844 10851 18456 Face 30888 10851 10774 18456 Face 30889 10851 10844 18457 Face 30890 10844 10887 18457 Face 30891 10887 10888 18457 Face 30892 10888 10851 18457 Face 30893 10888 10915 18458 Face 30894 10915 10916 18458 Face 30895 10916 10851 18458 Face 30896 10851 10888 18458 Face 30897 10867 10849 18459 Face 30898 10849 10918 18459 Face 30899 10918 10946 18459 Face 30900 10946 10867 18459 Face 30901 10957 10952 18460 Face 30902 10952 10909 18460 Face 30903 10909 10946 18460 Face 30904 10946 10957 18460 Face 30905 10916 10915 18461 Face 30906 10915 10970 18461 Face 30907 10970 10969 18461 Face 30908 10969 10916 18461 Face 30909 11014 11023 18462 Face 30910 11023 11017 18462 Face 30911 11017 11001 18462 Face 30912 11001 11014 18462 Face 30913 10992 10969 18463 Face 30914 10969 10970 18463 Face 30915 10970 11012 18463 Face 30916 11012 10992 18463 Face 30917 10985 10926 18464 Face 30918 10926 10952 18464 Face 30919 10952 10957 18464 Face 30920 10957 10985 18464 Face 30921 10985 10999 18465 Face 30922 10999 10948 18465 Face 30923 10948 10926 18465 Face 30924 10926 10985 18465 Face 30925 10999 10988 18466 Face 30926 10988 10954 18466 Face 30927 10954 10948 18466 Face 30928 10948 10999 18466 Face 30929 10985 10992 18467 Face 30930 10992 10996 18467 Face 30931 10996 10999 18467 Face 30932 10999 10985 18467 Face 30933 11012 11019 18468 Face 30934 11019 10996 18468 Face 30935 10996 10992 18468 Face 30936 10992 11012 18468 Face 30937 11019 10972 18469 Face 30938 10972 10956 18469 Face 30939 10956 11001 18469 Face 30940 11001 11019 18469 Face 30941 10919 11012 18470 Face 30942 11012 10970 18470 Face 30943 10970 10905 18470 Face 30944 10905 10919 18470 Face 30945 10905 10970 18471 Face 30946 10970 10915 18471 Face 30947 10915 10870 18471 Face 30948 10870 10905 18471 Face 30949 10915 10888 18472 Face 30950 10888 10827 18472 Face 30951 10827 10870 18472 Face 30952 10870 10915 18472 Face 30953 10917 10896 18473 Face 30954 10896 10862 18473 Face 30955 10862 10856 18473 Face 30956 10856 10917 18473 Face 30957 10856 10862 18474 Face 30958 10862 10807 18474 Face 30959 10807 10812 18474 Face 30960 10812 10856 18474 Face 30961 10776 10594 18475 Face 30962 10594 10727 18475 Face 30963 10727 10812 18475 Face 30964 10812 10776 18475 Face 30965 10812 10727 18476 Face 30966 10727 10800 18476 Face 30967 10800 10856 18476 Face 30968 10856 10812 18476 Face 30969 10856 10800 18477 Face 30970 10800 10860 18477 Face 30971 10860 10917 18477 Face 30972 10917 10856 18477 Face 30973 10860 10881 18478 Face 30974 10881 10911 18478 Face 30975 10911 10917 18478 Face 30976 10917 10860 18478 Face 30977 10917 10911 18479 Face 30978 10911 10899 18479 Face 30979 10899 10896 18479 Face 30980 10896 10917 18479 Face 30981 11012 10919 18480 Face 30982 10919 10972 18480 Face 30983 10972 11019 18480 Face 30984 11019 11012 18480 Face 30985 10886 10899 18481 Face 30986 10899 10911 18481 Face 30987 10911 10865 18481 Face 30988 10865 10886 18481 Face 30989 10865 10911 18482 Face 30990 10911 10881 18482 Face 30991 10881 10831 18482 Face 30992 10831 10865 18482 Face 30993 10619 10831 18483 Face 30994 10831 10881 18483 Face 30995 10881 10669 18483 Face 30996 10669 10619 18483 Face 30997 10669 10881 18484 Face 30998 10881 10860 18484 Face 30999 10860 10651 18484 Face 31000 10651 10669 18484 Face 31001 10651 10860 18485 Face 31002 10860 10800 18485 Face 31003 10800 10506 18485 Face 31004 10506 10651 18485 Face 31005 10506 10800 18486 Face 31006 10800 10727 18486 Face 31007 10727 10433 18486 Face 31008 10433 10506 18486 Face 31009 10727 10594 18487 Face 31010 10594 10378 18487 Face 31011 10378 10433 18487 Face 31012 10433 10727 18487 Face 31013 9924 10017 18488 Face 31014 10017 9965 18488 Face 31015 9965 9846 18488 Face 31016 9846 9924 18488 Face 31017 10017 10125 18489 Face 31018 10125 10100 18489 Face 31019 10100 9965 18489 Face 31020 9965 10017 18489 Face 31021 10100 10125 18490 Face 31022 10125 10173 18490 Face 31023 10173 10130 18490 Face 31024 10130 10100 18490 Face 31025 10130 10173 18491 Face 31026 10173 10189 18491 Face 31027 10189 10181 18491 Face 31028 10181 10130 18491 Face 31029 10181 10231 18492 Face 31030 10231 10163 18492 Face 31031 10163 10130 18492 Face 31032 10130 10181 18492 Face 31033 10130 10163 18493 Face 31034 10163 10115 18493 Face 31035 10115 10100 18493 Face 31036 10100 10130 18493 Face 31037 10100 10115 18494 Face 31038 10115 9978 18494 Face 31039 9978 9965 18494 Face 31040 9965 10100 18494 Face 31041 9965 9978 18495 Face 31042 9978 9908 18495 Face 31043 9908 9846 18495 Face 31044 9846 9965 18495 Face 31045 9814 9846 18496 Face 31046 9846 9908 18496 Face 31047 9908 9893 18496 Face 31048 9893 9814 18496 Face 31049 10057 9893 18497 Face 31050 9893 9908 18497 Face 31051 9908 10001 18497 Face 31052 10001 10057 18497 Face 31053 9908 9978 18498 Face 31054 9978 10069 18498 Face 31055 10069 10001 18498 Face 31056 10001 9908 18498 Face 31057 10078 10099 18499 Face 31058 10099 10093 18499 Face 31059 10093 10091 18499 Face 31060 10091 10078 18499 Face 31061 10078 10091 18500 Face 31062 10091 10149 18500 Face 31063 10149 10104 18500 Face 31064 10104 10078 18500 Face 31065 10149 10224 18501 Face 31066 10224 10097 18501 Face 31067 10097 10104 18501 Face 31068 10104 10149 18501 Face 31069 10254 10146 18502 Face 31070 10146 10147 18502 Face 31071 10147 10257 18502 Face 31072 10257 10254 18502 Face 31073 10093 10147 18503 Face 31074 10147 10146 18503 Face 31075 10146 10091 18503 Face 31076 10091 10093 18503 Face 31077 10146 10254 18504 Face 31078 10254 10224 18504 Face 31079 10224 10149 18504 Face 31080 10149 10146 18504 Face 31081 10378 10224 18505 Face 31082 10224 10254 18505 Face 31083 10254 10433 18505 Face 31084 10433 10378 18505 Face 31085 10433 10254 18506 Face 31086 10254 10257 18506 Face 31087 10257 10506 18506 Face 31088 10506 10433 18506 Face 31089 10506 10257 18507 Face 31090 10257 10287 18507 Face 31091 10287 10651 18507 Face 31092 10651 10506 18507 Face 31093 10651 10287 18508 Face 31094 10287 10347 18508 Face 31095 10347 10669 18508 Face 31096 10669 10651 18508 Face 31097 10335 10470 18509 Face 31098 10470 10347 18509 Face 31099 10347 10232 18509 Face 31100 10232 10335 18509 Face 31101 10232 10347 18510 Face 31102 10347 10287 18510 Face 31103 10287 10184 18510 Face 31104 10184 10232 18510 Face 31105 10287 10257 18511 Face 31106 10257 10147 18511 Face 31107 10147 10184 18511 Face 31108 10184 10287 18511 Face 31109 10184 10147 18512 Face 31110 10147 10093 18512 Face 31111 10093 10131 18512 Face 31112 10131 10184 18512 Face 31113 10131 10093 18513 Face 31114 10093 10099 18513 Face 31115 10099 10179 18513 Face 31116 10179 10131 18513 Face 31117 10069 9978 18514 Face 31118 9978 10115 18514 Face 31119 10115 10174 18514 Face 31120 10174 10069 18514 Face 31121 10174 10115 18515 Face 31122 10115 10163 18515 Face 31123 10163 10235 18515 Face 31124 10235 10174 18515 Face 31125 10163 10231 18516 Face 31126 10231 10338 18516 Face 31127 10338 10235 18516 Face 31128 10235 10163 18516 Face 31129 10371 10308 18517 Face 31130 10308 10190 18517 Face 31131 10190 10243 18517 Face 31132 10243 10371 18517 Face 31133 10179 10243 18518 Face 31134 10243 10190 18518 Face 31135 10190 10131 18518 Face 31136 10131 10179 18518 Face 31137 10184 10131 18519 Face 31138 10131 10190 18519 Face 31139 10190 10232 18519 Face 31140 10232 10184 18519 Face 31141 10232 10190 18520 Face 31142 10190 10308 18520 Face 31143 10308 10335 18520 Face 31144 10335 10232 18520 Face 31145 10607 10470 18521 Face 31146 10470 10335 18521 Face 31147 10335 10308 18521 Face 31148 10308 10607 18521 Face 31149 10912 10865 18522 Face 31150 10865 10770 18522 Face 31151 10770 10868 18522 Face 31152 10868 10912 18522 Face 31153 10770 10865 18523 Face 31154 10865 10831 18523 Face 31155 10831 10607 18523 Face 31156 10607 10770 18523 Face 31157 10607 10831 18524 Face 31158 10831 10619 18524 Face 31159 10619 10470 18524 Face 31160 10470 10607 18524 Face 31161 10619 10669 18525 Face 31162 10669 10347 18525 Face 31163 10347 10470 18525 Face 31164 10470 10619 18525 Face 31165 10801 10781 18526 Face 31166 10781 10848 18526 Face 31167 10848 10874 18526 Face 31168 10874 10801 18526 Face 31169 10874 10954 18527 Face 31170 10954 10971 18527 Face 31171 10971 10884 18527 Face 31172 10884 10874 18527 Face 31173 10954 10988 18528 Face 31174 10988 10958 18528 Face 31175 10958 10971 18528 Face 31176 10971 10954 18528 Face 31177 10958 10988 18529 Face 31178 10988 11017 18529 Face 31179 11017 11023 18529 Face 31180 11023 10958 18529 Face 31181 10281 10264 18530 Face 31182 10264 10352 18530 Face 31183 10352 10364 18530 Face 31184 10364 10281 18530 Face 31185 10352 10526 18531 Face 31186 10526 10575 18531 Face 31187 10575 10364 18531 Face 31188 10364 10352 18531 Face 31189 10364 10575 18532 Face 31190 10575 10561 18532 Face 31191 10561 10421 18532 Face 31192 10421 10364 18532 Face 31193 10364 10421 18533 Face 31194 10421 10326 18533 Face 31195 10326 10281 18533 Face 31196 10281 10364 18533 Face 31197 10526 10732 18534 Face 31198 10732 10761 18534 Face 31199 10761 10575 18534 Face 31200 10575 10526 18534 Face 31201 10575 10761 18535 Face 31202 10761 10686 18535 Face 31203 10686 10561 18535 Face 31204 10561 10575 18535 Face 31205 10421 10561 18536 Face 31206 10561 10686 18536 Face 31207 10686 10447 18536 Face 31208 10447 10421 18536 Face 31209 10326 10421 18537 Face 31210 10421 10447 18537 Face 31211 10447 10292 18537 Face 31212 10292 10326 18537 Face 31213 10229 10264 18538 Face 31214 10264 10281 18538 Face 31215 10281 10246 18538 Face 31216 10246 10229 18538 Face 31217 10281 10326 18539 Face 31218 10326 10292 18539 Face 31219 10292 10246 18539 Face 31220 10246 10281 18539 Face 31221 10265 10188 18540 Face 31222 10188 10189 18540 Face 31223 10189 10227 18540 Face 31224 10227 10265 18540 Face 31225 10231 10216 18541 Face 31226 10216 10307 18541 Face 31227 10307 10338 18541 Face 31228 10338 10231 18541 Face 31229 10181 10178 18542 Face 31230 10178 10216 18542 Face 31231 10216 10231 18542 Face 31232 10231 10181 18542 Face 31233 10495 10868 18543 Face 31234 10868 10770 18543 Face 31235 10770 10371 18543 Face 31236 10371 10495 18543 Face 31237 10912 10956 18544 Face 31238 10956 10972 18544 Face 31239 10972 10931 18544 Face 31240 10931 10912 18544 Face 31241 112 17 18545 Face 31242 17 6 18545 Face 31243 6 65 18545 Face 31244 65 112 18545 Face 31245 65 6 18546 Face 31246 6 1 18546 Face 31247 1 15 18546 Face 31248 15 65 18546 Face 31249 15 1 18547 Face 31250 1 2 18547 Face 31251 2 11 18547 Face 31252 11 15 18547 Face 31253 11 2 18548 Face 31254 2 3 18548 Face 31255 3 24 18548 Face 31256 24 11 18548 Face 31257 24 3 18549 Face 31258 3 10 18549 Face 31259 10 56 18549 Face 31260 56 24 18549 Face 31261 56 10 18550 Face 31262 10 85 18550 Face 31263 85 94 18550 Face 31264 94 56 18550 Face 31265 153 85 18551 Face 31266 85 235 18551 Face 31267 235 223 18551 Face 31268 223 153 18551 Face 31269 235 627 18552 Face 31270 627 306 18552 Face 31271 306 223 18552 Face 31272 223 235 18552 Face 31273 306 627 18553 Face 31274 627 795 18553 Face 31275 795 360 18553 Face 31276 360 306 18553 Face 31277 360 795 18554 Face 31278 795 878 18554 Face 31279 878 489 18554 Face 31280 489 360 18554 Face 31281 489 878 18555 Face 31282 878 911 18555 Face 31283 911 592 18555 Face 31284 592 489 18555 Face 31285 592 911 18556 Face 31286 911 888 18556 Face 31287 888 604 18556 Face 31288 604 592 18556 Face 31289 604 888 18557 Face 31290 888 822 18557 Face 31291 822 533 18557 Face 31292 533 604 18557 Face 31293 427 822 18558 Face 31294 822 467 18558 Face 31295 467 231 18558 Face 31296 231 427 18558 Face 31297 231 467 18559 Face 31298 467 170 18559 Face 31299 170 167 18559 Face 31300 167 231 18559 Face 31301 167 170 18560 Face 31302 170 17 18560 Face 31303 17 112 18560 Face 31304 112 167 18560 Face 31305 153 223 18561 Face 31306 223 289 18561 Face 31307 289 188 18561 Face 31308 188 153 18561 Face 31309 306 360 18562 Face 31310 360 364 18562 Face 31311 364 344 18562 Face 31312 344 306 18562 Face 31313 360 489 18563 Face 31314 489 405 18563 Face 31315 405 364 18563 Face 31316 364 360 18563 Face 31317 489 592 18564 Face 31318 592 460 18564 Face 31319 460 405 18564 Face 31320 405 489 18564 Face 31321 592 604 18565 Face 31322 604 453 18565 Face 31323 453 460 18565 Face 31324 460 592 18565 Face 31325 604 533 18566 Face 31326 533 495 18566 Face 31327 495 453 18566 Face 31328 453 604 18566 Face 31329 533 427 18567 Face 31330 427 421 18567 Face 31331 421 495 18567 Face 31332 495 533 18567 Face 31333 427 231 18568 Face 31334 231 160 18568 Face 31335 160 421 18568 Face 31336 421 427 18568 Face 31337 167 112 18569 Face 31338 112 58 18569 Face 31339 58 92 18569 Face 31340 92 167 18569 Face 31341 112 65 18570 Face 31342 65 35 18570 Face 31343 35 58 18570 Face 31344 58 112 18570 Face 31345 65 15 18571 Face 31346 15 21 18571 Face 31347 21 35 18571 Face 31348 35 65 18571 Face 31349 11 24 18572 Face 31350 24 50 18572 Face 31351 50 32 18572 Face 31352 32 11 18572 Face 31353 24 56 18573 Face 31354 56 77 18573 Face 31355 77 50 18573 Face 31356 50 24 18573 Face 31357 56 94 18574 Face 31358 94 123 18574 Face 31359 123 77 18574 Face 31360 77 56 18574 Face 31361 94 153 18575 Face 31362 153 188 18575 Face 31363 188 123 18575 Face 31364 123 94 18575 Face 31365 170 467 18576 Face 31366 467 442 18576 Face 31367 442 162 18576 Face 31368 162 170 18576 Face 31369 467 822 18577 Face 31370 822 772 18577 Face 31371 772 442 18577 Face 31372 442 467 18577 Face 31373 822 888 18578 Face 31374 888 842 18578 Face 31375 842 772 18578 Face 31376 772 822 18578 Face 31377 888 911 18579 Face 31378 911 885 18579 Face 31379 885 842 18579 Face 31380 842 888 18579 Face 31381 911 878 18580 Face 31382 878 846 18580 Face 31383 846 885 18580 Face 31384 885 911 18580 Face 31385 878 795 18581 Face 31386 795 752 18581 Face 31387 752 846 18581 Face 31388 846 878 18581 Face 31389 795 627 18582 Face 31390 627 534 18582 Face 31391 534 752 18582 Face 31392 752 795 18582 Face 31393 627 235 18583 Face 31394 235 213 18583 Face 31395 213 534 18583 Face 31396 534 627 18583 Face 31397 235 85 18584 Face 31398 85 83 18584 Face 31399 83 213 18584 Face 31400 213 235 18584 Face 31401 85 10 18585 Face 31402 10 13 18585 Face 31403 13 83 18585 Face 31404 83 85 18585 Face 31405 10 3 18586 Face 31406 3 8 18586 Face 31407 8 13 18586 Face 31408 13 10 18586 Face 31409 3 2 18587 Face 31410 2 5 18587 Face 31411 5 8 18587 Face 31412 8 3 18587 Face 31413 2 1 18588 Face 31414 1 4 18588 Face 31415 4 5 18588 Face 31416 5 2 18588 Face 31417 1 6 18589 Face 31418 6 7 18589 Face 31419 7 4 18589 Face 31420 4 1 18589 Face 31421 6 17 18590 Face 31422 17 16 18590 Face 31423 16 7 18590 Face 31424 7 6 18590 Face 31425 17 170 18591 Face 31426 170 162 18591 Face 31427 162 16 18591 Face 31428 16 17 18591 Face 31429 849 834 18592 Face 31430 834 749 18592 Face 31431 749 776 18592 Face 31432 776 849 18592 Face 31433 184 255 18593 Face 31434 255 349 18593 Face 31435 349 261 18593 Face 31436 261 184 18593 Face 31437 136 184 18594 Face 31438 184 261 18594 Face 31439 261 211 18594 Face 31440 211 136 18594 Face 31441 271 267 18595 Face 31442 267 389 18595 Face 31443 389 393 18595 Face 31444 393 271 18595 Face 31445 270 271 18596 Face 31446 271 393 18596 Face 31447 393 381 18596 Face 31448 381 270 18596 Face 31449 255 270 18597 Face 31450 270 381 18597 Face 31451 381 349 18597 Face 31452 349 255 18597 Face 31453 1044 988 18598 Face 31454 988 941 18598 Face 31455 941 967 18598 Face 31456 967 1044 18598 Face 31457 976 1044 18599 Face 31458 1044 967 18599 Face 31459 967 946 18599 Face 31460 946 976 18599 Face 31461 850 872 18600 Face 31462 872 856 18600 Face 31463 856 818 18600 Face 31464 818 850 18600 Face 31465 865 762 18601 Face 31466 762 780 18601 Face 31467 780 857 18601 Face 31468 857 865 18601 Face 31469 44 31 18602 Face 31470 31 110 18602 Face 31471 110 89 18602 Face 31472 89 44 18602 Face 31473 110 177 18603 Face 31474 177 133 18603 Face 31475 133 89 18603 Face 31476 89 110 18603 Face 31477 141 27 18604 Face 31478 27 74 18604 Face 31479 74 161 18604 Face 31480 161 141 18604 Face 31481 222 141 18605 Face 31482 141 161 18605 Face 31483 161 312 18605 Face 31484 312 222 18605 Face 31485 97 197 18606 Face 31486 197 171 18606 Face 31487 171 91 18606 Face 31488 91 97 18606 Face 31489 80 127 18607 Face 31490 127 99 18607 Face 31491 99 88 18607 Face 31492 88 80 18607 Face 31493 80 88 18608 Face 31494 88 60 18608 Face 31495 60 53 18608 Face 31496 53 80 18608 Face 31497 313 284 18609 Face 31498 284 244 18609 Face 31499 244 264 18609 Face 31500 264 313 18609 Face 31501 284 359 18610 Face 31502 359 312 18610 Face 31503 312 244 18610 Face 31504 244 284 18610 Face 31505 359 598 18611 Face 31506 598 573 18611 Face 31507 573 312 18611 Face 31508 312 359 18611 Face 31509 598 753 18612 Face 31510 753 780 18612 Face 31511 780 573 18612 Face 31512 573 598 18612 Face 31513 753 799 18613 Face 31514 799 818 18613 Face 31515 818 780 18613 Face 31516 780 753 18613 Face 31517 850 818 18614 Face 31518 818 799 18614 Face 31519 799 816 18614 Face 31520 816 850 18614 Face 31521 49 28 18615 Face 31522 28 44 18615 Face 31523 44 26 18615 Face 31524 26 49 18615 Face 31525 28 49 18616 Face 31526 49 46 18616 Face 31527 46 57 18616 Face 31528 57 28 18616 Face 31529 550 464 18617 Face 31530 464 761 18617 Face 31531 761 738 18617 Face 31532 738 550 18617 Face 31533 993 1071 18618 Face 31534 1071 1121 18618 Face 31535 1121 1028 18618 Face 31536 1028 993 18618 Face 31537 916 993 18619 Face 31538 993 1028 18619 Face 31539 1028 920 18619 Face 31540 920 916 18619 Face 31541 16 37 18620 Face 31542 37 14 18620 Face 31543 14 7 18620 Face 31544 7 16 18620 Face 31545 177 154 18621 Face 31546 154 464 18621 Face 31547 464 550 18621 Face 31548 550 177 18621 Face 31549 550 738 18622 Face 31550 738 707 18622 Face 31551 707 674 18622 Face 31552 674 550 18622 Face 31553 946 866 18623 Face 31554 866 871 18623 Face 31555 871 976 18623 Face 31556 976 946 18623 Face 31557 110 37 18624 Face 31558 37 154 18624 Face 31559 154 177 18624 Face 31560 177 110 18624 Face 31561 249 260 18625 Face 31562 260 404 18625 Face 31563 404 281 18625 Face 31564 281 249 18625 Face 31565 123 188 18626 Face 31566 188 190 18626 Face 31567 190 121 18626 Face 31568 121 123 18626 Face 31569 188 289 18627 Face 31570 289 352 18627 Face 31571 352 190 18627 Face 31572 190 188 18627 Face 31573 289 344 18628 Face 31574 344 420 18628 Face 31575 420 352 18628 Face 31576 352 289 18628 Face 31577 344 364 18629 Face 31578 364 431 18629 Face 31579 431 420 18629 Face 31580 420 344 18629 Face 31581 364 405 18630 Face 31582 405 404 18630 Face 31583 404 431 18630 Face 31584 431 364 18630 Face 31585 405 460 18631 Face 31586 460 347 18631 Face 31587 347 404 18631 Face 31588 404 405 18631 Face 31589 460 453 18632 Face 31590 453 458 18632 Face 31591 458 347 18632 Face 31592 347 460 18632 Face 31593 453 495 18633 Face 31594 495 513 18633 Face 31595 513 458 18633 Face 31596 458 453 18633 Face 31597 495 421 18634 Face 31598 421 448 18634 Face 31599 448 513 18634 Face 31600 513 495 18634 Face 31601 421 160 18635 Face 31602 160 163 18635 Face 31603 163 448 18635 Face 31604 448 421 18635 Face 31605 160 92 18636 Face 31606 92 90 18636 Face 31607 90 163 18636 Face 31608 163 160 18636 Face 31609 92 58 18637 Face 31610 58 54 18637 Face 31611 54 90 18637 Face 31612 90 92 18637 Face 31613 58 35 18638 Face 31614 35 29 18638 Face 31615 29 54 18638 Face 31616 54 58 18638 Face 31617 35 21 18639 Face 31618 21 18 18639 Face 31619 18 29 18639 Face 31620 29 35 18639 Face 31621 21 32 18640 Face 31622 32 25 18640 Face 31623 25 18 18640 Face 31624 18 21 18640 Face 31625 32 50 18641 Face 31626 50 41 18641 Face 31627 41 25 18641 Face 31628 25 32 18641 Face 31629 50 77 18642 Face 31630 77 71 18642 Face 31631 71 41 18642 Face 31632 41 50 18642 Face 31633 77 123 18643 Face 31634 123 121 18643 Face 31635 121 71 18643 Face 31636 71 77 18643 Face 31637 367 458 18644 Face 31638 458 513 18644 Face 31639 513 514 18644 Face 31640 514 367 18644 Face 31641 145 103 18645 Face 31642 103 84 18645 Face 31643 84 105 18645 Face 31644 105 145 18645 Face 31645 199 145 18646 Face 31646 145 105 18646 Face 31647 105 150 18646 Face 31648 150 199 18646 Face 31649 118 90 18647 Face 31650 90 62 18647 Face 31651 62 142 18647 Face 31652 142 118 18647 Face 31653 195 384 18648 Face 31654 384 448 18648 Face 31655 448 163 18648 Face 31656 163 195 18648 Face 31657 273 118 18649 Face 31658 118 142 18649 Face 31659 142 247 18649 Face 31660 247 273 18649 Face 31661 356 195 18650 Face 31662 195 118 18650 Face 31663 118 273 18650 Face 31664 273 356 18650 Face 31665 745 514 18651 Face 31666 514 384 18651 Face 31667 384 723 18651 Face 31668 723 745 18651 Face 31669 626 537 18652 Face 31670 537 514 18652 Face 31671 514 745 18652 Face 31672 745 626 18652 Face 31673 195 526 18653 Face 31674 526 723 18653 Face 31675 723 384 18653 Face 31676 384 195 18653 Face 31677 311 409 18654 Face 31678 409 247 18654 Face 31679 247 156 18654 Face 31680 156 311 18654 Face 31681 333 537 18655 Face 31682 537 397 18655 Face 31683 397 350 18655 Face 31684 350 333 18655 Face 31685 333 367 18656 Face 31686 367 514 18656 Face 31687 514 537 18656 Face 31688 537 333 18656 Face 31689 458 367 18657 Face 31690 367 281 18657 Face 31691 281 347 18657 Face 31692 347 458 18657 Face 31693 350 298 18658 Face 31694 298 334 18658 Face 31695 334 268 18658 Face 31696 268 350 18658 Face 31697 333 350 18659 Face 31698 350 268 18659 Face 31699 268 246 18659 Face 31700 246 333 18659 Face 31701 367 333 18660 Face 31702 333 246 18660 Face 31703 246 281 18660 Face 31704 281 367 18660 Face 31705 281 246 18661 Face 31706 246 216 18661 Face 31707 216 249 18661 Face 31708 249 281 18661 Face 31709 300 150 18662 Face 31710 150 190 18662 Face 31711 190 352 18662 Face 31712 352 300 18662 Face 31713 323 300 18663 Face 31714 300 352 18663 Face 31715 352 420 18663 Face 31716 420 323 18663 Face 31717 326 323 18664 Face 31718 323 420 18664 Face 31719 420 431 18664 Face 31720 431 326 18664 Face 31721 260 326 18665 Face 31722 326 431 18665 Face 31723 431 404 18665 Face 31724 404 260 18665 Face 31725 90 54 18666 Face 31726 54 38 18666 Face 31727 38 62 18666 Face 31728 62 90 18666 Face 31729 54 29 18667 Face 31730 29 23 18667 Face 31731 23 38 18667 Face 31732 38 54 18667 Face 31733 29 18 18668 Face 31734 18 47 18668 Face 31735 47 23 18668 Face 31736 23 29 18668 Face 31737 18 25 18669 Face 31738 25 55 18669 Face 31739 55 47 18669 Face 31740 47 18 18669 Face 31741 25 41 18670 Face 31742 41 59 18670 Face 31743 59 55 18670 Face 31744 55 25 18670 Face 31745 41 71 18671 Face 31746 71 84 18671 Face 31747 84 59 18671 Face 31748 59 41 18671 Face 31749 105 84 18672 Face 31750 84 71 18672 Face 31751 71 121 18672 Face 31752 121 105 18672 Face 31753 105 121 18673 Face 31754 121 190 18673 Face 31755 190 150 18673 Face 31756 150 105 18673 Face 31757 288 199 18674 Face 31758 199 150 18674 Face 31759 150 300 18674 Face 31760 300 288 18674 Face 31761 277 288 18675 Face 31762 288 300 18675 Face 31763 300 323 18675 Face 31764 323 277 18675 Face 31765 228 277 18676 Face 31766 277 323 18676 Face 31767 323 326 18676 Face 31768 326 228 18676 Face 31769 227 228 18677 Face 31770 228 326 18677 Face 31771 326 260 18677 Face 31772 260 227 18677 Face 31773 224 227 18678 Face 31774 227 260 18678 Face 31775 260 249 18678 Face 31776 249 224 18678 Face 31777 210 224 18679 Face 31778 224 249 18679 Face 31779 249 216 18679 Face 31780 216 210 18679 Face 31781 272 210 18680 Face 31782 210 216 18680 Face 31783 216 268 18680 Face 31784 268 272 18680 Face 31785 232 311 18681 Face 31786 311 156 18681 Face 31787 156 120 18681 Face 31788 120 232 18681 Face 31789 120 156 18682 Face 31790 156 142 18682 Face 31791 142 82 18682 Face 31792 82 120 18682 Face 31793 82 142 18683 Face 31794 142 62 18683 Face 31795 62 45 18683 Face 31796 45 82 18683 Face 31797 297 379 18684 Face 31798 379 461 18684 Face 31799 461 477 18684 Face 31800 477 297 18684 Face 31801 230 297 18685 Face 31802 297 477 18685 Face 31803 477 368 18685 Face 31804 368 230 18685 Face 31805 379 355 18686 Face 31806 355 377 18686 Face 31807 377 461 18686 Face 31808 461 379 18686 Face 31809 230 368 18687 Face 31810 368 330 18687 Face 31811 330 208 18687 Face 31812 208 230 18687 Face 31813 461 377 18688 Face 31814 377 398 18688 Face 31815 398 509 18688 Face 31816 509 461 18688 Face 31817 477 461 18689 Face 31818 461 509 18689 Face 31819 509 577 18689 Face 31820 577 477 18689 Face 31821 368 477 18690 Face 31822 477 577 18690 Face 31823 577 571 18690 Face 31824 571 368 18690 Face 31825 330 368 18691 Face 31826 368 571 18691 Face 31827 571 512 18691 Face 31828 512 330 18691 Face 31829 571 577 18692 Face 31830 577 638 18692 Face 31831 638 651 18692 Face 31832 651 571 18692 Face 31833 512 571 18693 Face 31834 571 651 18693 Face 31835 651 618 18693 Face 31836 618 512 18693 Face 31837 509 398 18694 Face 31838 398 396 18694 Face 31839 396 517 18694 Face 31840 517 509 18694 Face 31841 577 509 18695 Face 31842 509 517 18695 Face 31843 517 638 18695 Face 31844 638 577 18695 Face 31845 517 396 18696 Face 31846 396 441 18696 Face 31847 441 542 18696 Face 31848 542 517 18696 Face 31849 638 517 18697 Face 31850 517 542 18697 Face 31851 542 670 18697 Face 31852 670 638 18697 Face 31853 651 638 18698 Face 31854 638 670 18698 Face 31855 670 713 18698 Face 31856 713 651 18698 Face 31857 618 651 18699 Face 31858 651 713 18699 Face 31859 713 705 18699 Face 31860 705 618 18699 Face 31861 670 542 18700 Face 31862 542 563 18700 Face 31863 563 677 18700 Face 31864 677 670 18700 Face 31865 713 670 18701 Face 31866 670 677 18701 Face 31867 677 731 18701 Face 31868 731 713 18701 Face 31869 705 713 18702 Face 31870 713 731 18702 Face 31871 731 740 18702 Face 31872 740 705 18702 Face 31873 542 441 18703 Face 31874 441 469 18703 Face 31875 469 563 18703 Face 31876 563 542 18703 Face 31877 740 731 18704 Face 31878 731 641 18704 Face 31879 641 646 18704 Face 31880 646 740 18704 Face 31881 563 469 18705 Face 31882 469 428 18705 Face 31883 428 518 18705 Face 31884 518 563 18705 Face 31885 677 563 18706 Face 31886 563 518 18706 Face 31887 518 581 18706 Face 31888 581 677 18706 Face 31889 731 677 18707 Face 31890 677 581 18707 Face 31891 581 641 18707 Face 31892 641 731 18707 Face 31893 518 428 18708 Face 31894 428 415 18708 Face 31895 415 400 18708 Face 31896 400 518 18708 Face 31897 581 518 18709 Face 31898 518 400 18709 Face 31899 400 422 18709 Face 31900 422 581 18709 Face 31901 641 581 18710 Face 31902 581 422 18710 Face 31903 422 406 18710 Face 31904 406 641 18710 Face 31905 646 641 18711 Face 31906 641 406 18711 Face 31907 406 443 18711 Face 31908 443 646 18711 Face 31909 406 422 18712 Face 31910 422 320 18712 Face 31911 320 282 18712 Face 31912 282 406 18712 Face 31913 363 406 18713 Face 31914 406 282 18713 Face 31915 282 285 18713 Face 31916 285 363 18713 Face 31917 400 415 18714 Face 31918 415 283 18714 Face 31919 283 310 18714 Face 31920 310 400 18714 Face 31921 422 400 18715 Face 31922 400 310 18715 Face 31923 310 320 18715 Face 31924 320 422 18715 Face 31925 282 251 18716 Face 31926 251 256 18716 Face 31927 256 285 18716 Face 31928 285 282 18716 Face 31929 310 259 18717 Face 31930 259 262 18717 Face 31931 262 320 18717 Face 31932 320 310 18717 Face 31933 241 237 18718 Face 31934 237 262 18718 Face 31935 262 259 18718 Face 31936 259 241 18718 Face 31937 406 363 18719 Face 31938 363 386 18719 Face 31939 386 443 18719 Face 31940 443 406 18719 Face 31941 251 234 18720 Face 31942 234 253 18720 Face 31943 253 256 18720 Face 31944 256 251 18720 Face 31945 237 241 18721 Face 31946 241 226 18721 Face 31947 226 221 18721 Face 31948 221 237 18721 Face 31949 234 251 18722 Face 31950 251 237 18722 Face 31951 237 221 18722 Face 31952 221 234 18722 Face 31953 251 282 18723 Face 31954 282 262 18723 Face 31955 262 237 18723 Face 31956 237 251 18723 Face 31957 355 379 18724 Face 31958 379 336 18724 Face 31959 336 327 18724 Face 31960 327 355 18724 Face 31961 230 208 18725 Face 31962 208 155 18725 Face 31963 155 182 18725 Face 31964 182 230 18725 Face 31965 297 230 18726 Face 31966 230 182 18726 Face 31967 182 229 18726 Face 31968 229 297 18726 Face 31969 379 297 18727 Face 31970 297 229 18727 Face 31971 229 336 18727 Face 31972 336 379 18727 Face 31973 204 219 18728 Face 31974 219 172 18728 Face 31975 172 148 18728 Face 31976 148 204 18728 Face 31977 208 204 18729 Face 31978 204 148 18729 Face 31979 148 155 18729 Face 31980 155 208 18729 Face 31981 296 355 18730 Face 31982 355 327 18730 Face 31983 327 351 18730 Face 31984 351 296 18730 Face 31985 287 252 18731 Face 31986 252 236 18731 Face 31987 236 263 18731 Face 31988 263 287 18731 Face 31989 252 234 18732 Face 31990 234 221 18732 Face 31991 221 236 18732 Face 31992 236 252 18732 Face 31993 239 236 18733 Face 31994 236 221 18733 Face 31995 221 226 18733 Face 31996 226 239 18733 Face 31997 234 252 18734 Face 31998 252 254 18734 Face 31999 254 253 18734 Face 32000 253 234 18734 Face 32001 362 408 18735 Face 32002 408 443 18735 Face 32003 443 386 18735 Face 32004 386 362 18735 Face 32005 236 239 18736 Face 32006 239 257 18736 Face 32007 257 263 18736 Face 32008 263 236 18736 Face 32009 257 309 18737 Face 32010 309 321 18737 Face 32011 321 263 18737 Face 32012 263 257 18737 Face 32013 252 287 18738 Face 32014 287 286 18738 Face 32015 286 254 18738 Face 32016 254 252 18738 Face 32017 403 423 18739 Face 32018 423 321 18739 Face 32019 321 309 18739 Face 32020 309 403 18739 Face 32021 415 403 18740 Face 32022 403 309 18740 Face 32023 309 283 18740 Face 32024 283 415 18740 Face 32025 408 362 18741 Face 32026 362 286 18741 Face 32027 286 287 18741 Face 32028 287 408 18741 Face 32029 423 408 18742 Face 32030 408 287 18742 Face 32031 287 321 18742 Face 32032 321 423 18742 Face 32033 639 646 18743 Face 32034 646 443 18743 Face 32035 443 408 18743 Face 32036 408 639 18743 Face 32037 585 639 18744 Face 32038 639 408 18744 Face 32039 408 423 18744 Face 32040 423 585 18744 Face 32041 439 585 18745 Face 32042 585 423 18745 Face 32043 423 403 18745 Face 32044 403 439 18745 Face 32045 428 439 18746 Face 32046 439 403 18746 Face 32047 403 415 18746 Face 32048 415 428 18746 Face 32049 599 728 18747 Face 32050 728 639 18747 Face 32051 639 585 18747 Face 32052 585 599 18747 Face 32053 488 599 18748 Face 32054 599 585 18748 Face 32055 585 439 18748 Face 32056 439 488 18748 Face 32057 469 488 18749 Face 32058 488 439 18749 Face 32059 439 428 18749 Face 32060 428 469 18749 Face 32061 728 740 18750 Face 32062 740 646 18750 Face 32063 646 639 18750 Face 32064 639 728 18750 Face 32065 441 456 18751 Face 32066 456 488 18751 Face 32067 488 469 18751 Face 32068 469 441 18751 Face 32069 678 705 18752 Face 32070 705 740 18752 Face 32071 740 728 18752 Face 32072 728 678 18752 Face 32073 590 678 18753 Face 32074 678 728 18753 Face 32075 728 599 18753 Face 32076 599 590 18753 Face 32077 456 590 18754 Face 32078 590 599 18754 Face 32079 599 488 18754 Face 32080 488 456 18754 Face 32081 586 618 18755 Face 32082 618 705 18755 Face 32083 705 678 18755 Face 32084 678 586 18755 Face 32085 492 586 18756 Face 32086 586 678 18756 Face 32087 678 590 18756 Face 32088 590 492 18756 Face 32089 388 492 18757 Face 32090 492 590 18757 Face 32091 590 456 18757 Face 32092 456 388 18757 Face 32093 396 388 18758 Face 32094 388 456 18758 Face 32095 456 441 18758 Face 32096 441 396 18758 Face 32097 371 410 18759 Face 32098 410 492 18759 Face 32099 492 388 18759 Face 32100 388 371 18759 Face 32101 398 371 18760 Face 32102 371 388 18760 Face 32103 388 396 18760 Face 32104 396 398 18760 Face 32105 459 512 18761 Face 32106 512 618 18761 Face 32107 618 586 18761 Face 32108 586 459 18761 Face 32109 410 459 18762 Face 32110 459 586 18762 Face 32111 586 492 18762 Face 32112 492 410 18762 Face 32113 308 330 18763 Face 32114 330 512 18763 Face 32115 512 459 18763 Face 32116 459 308 18763 Face 32117 322 308 18764 Face 32118 308 459 18764 Face 32119 459 410 18764 Face 32120 410 322 18764 Face 32121 340 322 18765 Face 32122 322 410 18765 Face 32123 410 371 18765 Face 32124 371 340 18765 Face 32125 377 340 18766 Face 32126 340 371 18766 Face 32127 371 398 18766 Face 32128 398 377 18766 Face 32129 308 204 18767 Face 32130 204 208 18767 Face 32131 208 330 18767 Face 32132 330 308 18767 Face 32133 355 296 18768 Face 32134 296 340 18768 Face 32135 340 377 18768 Face 32136 377 355 18768 Face 32137 219 204 18769 Face 32138 204 308 18769 Face 32139 308 322 18769 Face 32140 322 219 18769 Face 32141 296 219 18770 Face 32142 219 322 18770 Face 32143 322 340 18770 Face 32144 340 296 18770 Face 32145 229 182 18771 Face 32146 182 131 18771 Face 32147 131 200 18771 Face 32148 200 229 18771 Face 32149 336 229 18772 Face 32150 229 200 18772 Face 32151 200 324 18772 Face 32152 324 336 18772 Face 32153 327 336 18773 Face 32154 336 324 18773 Face 32155 324 328 18773 Face 32156 328 327 18773 Face 32157 351 327 18774 Face 32158 327 328 18774 Face 32159 328 274 18774 Face 32160 274 351 18774 Face 32161 148 172 18775 Face 32162 172 111 18775 Face 32163 111 100 18775 Face 32164 100 148 18775 Face 32165 100 111 18776 Face 32166 111 78 18776 Face 32167 78 107 18776 Face 32168 107 100 18776 Face 32169 96 100 18777 Face 32170 100 107 18777 Face 32171 107 103 18777 Face 32172 103 96 18777 Face 32173 131 96 18778 Face 32174 96 103 18778 Face 32175 103 145 18778 Face 32176 145 131 18778 Face 32177 200 131 18779 Face 32178 131 145 18779 Face 32179 145 199 18779 Face 32180 199 200 18779 Face 32181 324 200 18780 Face 32182 200 199 18780 Face 32183 199 288 18780 Face 32184 288 324 18780 Face 32185 328 324 18781 Face 32186 324 288 18781 Face 32187 288 277 18781 Face 32188 277 328 18781 Face 32189 274 328 18782 Face 32190 328 277 18782 Face 32191 277 228 18782 Face 32192 228 274 18782 Face 32193 258 274 18783 Face 32194 274 228 18783 Face 32195 228 227 18783 Face 32196 227 258 18783 Face 32197 248 258 18784 Face 32198 258 227 18784 Face 32199 227 224 18784 Face 32200 224 248 18784 Face 32201 68 70 18785 Face 32202 70 72 18785 Face 32203 72 69 18785 Face 32204 69 68 18785 Face 32205 51 68 18786 Face 32206 68 69 18786 Face 32207 69 52 18786 Face 32208 52 51 18786 Face 32209 64 51 18787 Face 32210 51 52 18787 Face 32211 52 67 18787 Face 32212 67 64 18787 Face 32213 111 64 18788 Face 32214 64 67 18788 Face 32215 67 78 18788 Face 32216 78 111 18788 Face 32217 172 124 18789 Face 32218 124 64 18789 Face 32219 64 111 18789 Face 32220 111 172 18789 Face 32221 279 351 18790 Face 32222 351 274 18790 Face 32223 274 258 18790 Face 32224 258 279 18790 Face 32225 278 279 18791 Face 32226 279 258 18791 Face 32227 258 248 18791 Face 32228 248 278 18791 Face 32229 116 138 18792 Face 32230 138 70 18792 Face 32231 70 68 18792 Face 32232 68 116 18792 Face 32233 243 354 18793 Face 32234 354 480 18793 Face 32235 480 481 18793 Face 32236 481 243 18793 Face 32237 193 243 18794 Face 32238 243 481 18794 Face 32239 481 385 18794 Face 32240 385 193 18794 Face 32241 354 375 18795 Face 32242 375 444 18795 Face 32243 444 480 18795 Face 32244 480 354 18795 Face 32245 193 385 18796 Face 32246 385 365 18796 Face 32247 365 186 18796 Face 32248 186 193 18796 Face 32249 480 444 18797 Face 32250 444 491 18797 Face 32251 491 527 18797 Face 32252 527 480 18797 Face 32253 481 480 18798 Face 32254 480 527 18798 Face 32255 527 529 18798 Face 32256 529 481 18798 Face 32257 385 481 18799 Face 32258 481 529 18799 Face 32259 529 493 18799 Face 32260 493 385 18799 Face 32261 365 385 18800 Face 32262 385 493 18800 Face 32263 493 463 18800 Face 32264 463 365 18800 Face 32265 493 529 18801 Face 32266 529 647 18801 Face 32267 647 656 18801 Face 32268 656 493 18801 Face 32269 463 493 18802 Face 32270 493 656 18802 Face 32271 656 642 18802 Face 32272 642 463 18802 Face 32273 527 491 18803 Face 32274 491 522 18803 Face 32275 522 578 18803 Face 32276 578 527 18803 Face 32277 529 527 18804 Face 32278 527 578 18804 Face 32279 578 647 18804 Face 32280 647 529 18804 Face 32281 578 522 18805 Face 32282 522 565 18805 Face 32283 565 621 18805 Face 32284 621 578 18805 Face 32285 647 578 18806 Face 32286 578 621 18806 Face 32287 621 711 18806 Face 32288 711 647 18806 Face 32289 656 647 18807 Face 32290 647 711 18807 Face 32291 711 747 18807 Face 32292 747 656 18807 Face 32293 642 656 18808 Face 32294 656 747 18808 Face 32295 747 736 18808 Face 32296 736 642 18808 Face 32297 711 621 18809 Face 32298 621 643 18809 Face 32299 643 727 18809 Face 32300 727 711 18809 Face 32301 747 711 18810 Face 32302 711 727 18810 Face 32303 727 789 18810 Face 32304 789 747 18810 Face 32305 736 747 18811 Face 32306 747 789 18811 Face 32307 789 784 18811 Face 32308 784 736 18811 Face 32309 621 565 18812 Face 32310 565 583 18812 Face 32311 583 643 18812 Face 32312 643 621 18812 Face 32313 784 789 18813 Face 32314 789 771 18813 Face 32315 771 775 18813 Face 32316 775 784 18813 Face 32317 727 643 18814 Face 32318 643 619 18814 Face 32319 619 722 18814 Face 32320 722 727 18814 Face 32321 789 727 18815 Face 32322 727 722 18815 Face 32323 722 771 18815 Face 32324 771 789 18815 Face 32325 619 574 18816 Face 32326 574 606 18816 Face 32327 606 597 18816 Face 32328 597 619 18816 Face 32329 722 619 18817 Face 32330 619 597 18817 Face 32331 597 630 18817 Face 32332 630 722 18817 Face 32333 771 722 18818 Face 32334 722 630 18818 Face 32335 630 629 18818 Face 32336 629 771 18818 Face 32337 775 771 18819 Face 32338 771 629 18819 Face 32339 629 669 18819 Face 32340 669 775 18819 Face 32341 629 630 18820 Face 32342 630 520 18820 Face 32343 520 472 18820 Face 32344 472 629 18820 Face 32345 603 629 18821 Face 32346 629 472 18821 Face 32347 472 475 18821 Face 32348 475 603 18821 Face 32349 597 606 18822 Face 32350 606 450 18822 Face 32351 450 478 18822 Face 32352 478 597 18822 Face 32353 630 597 18823 Face 32354 597 478 18823 Face 32355 478 520 18823 Face 32356 520 630 18823 Face 32357 472 414 18824 Face 32358 414 416 18824 Face 32359 416 475 18824 Face 32360 475 472 18824 Face 32361 478 395 18825 Face 32362 395 411 18825 Face 32363 411 520 18825 Face 32364 520 478 18825 Face 32365 372 378 18826 Face 32366 378 411 18826 Face 32367 411 395 18826 Face 32368 395 372 18826 Face 32369 629 603 18827 Face 32370 603 648 18827 Face 32371 648 669 18827 Face 32372 669 629 18827 Face 32373 414 399 18828 Face 32374 399 413 18828 Face 32375 413 416 18828 Face 32376 416 414 18828 Face 32377 378 372 18829 Face 32378 372 357 18829 Face 32379 357 358 18829 Face 32380 358 378 18829 Face 32381 399 414 18830 Face 32382 414 378 18830 Face 32383 378 358 18830 Face 32384 358 399 18830 Face 32385 414 472 18831 Face 32386 472 411 18831 Face 32387 411 378 18831 Face 32388 378 414 18831 Face 32389 375 354 18832 Face 32390 354 351 18832 Face 32391 351 279 18832 Face 32392 279 375 18832 Face 32393 193 186 18833 Face 32394 186 115 18833 Face 32395 115 124 18833 Face 32396 124 193 18833 Face 32397 243 193 18834 Face 32398 193 124 18834 Face 32399 124 172 18834 Face 32400 172 243 18834 Face 32401 242 353 18835 Face 32402 353 278 18835 Face 32403 278 138 18835 Face 32404 138 242 18835 Face 32405 192 242 18836 Face 32406 242 138 18836 Face 32407 138 116 18836 Face 32408 116 192 18836 Face 32409 186 192 18837 Face 32410 192 116 18837 Face 32411 116 115 18837 Face 32412 115 186 18837 Face 32413 353 375 18838 Face 32414 375 279 18838 Face 32415 279 278 18838 Face 32416 278 353 18838 Face 32417 511 429 18839 Face 32418 429 401 18839 Face 32419 401 436 18839 Face 32420 436 511 18839 Face 32421 429 399 18840 Face 32422 399 358 18840 Face 32423 358 401 18840 Face 32424 401 429 18840 Face 32425 383 401 18841 Face 32426 401 358 18841 Face 32427 358 357 18841 Face 32428 357 383 18841 Face 32429 399 429 18842 Face 32430 429 433 18842 Face 32431 433 413 18842 Face 32432 413 399 18842 Face 32433 628 652 18843 Face 32434 652 669 18843 Face 32435 669 648 18843 Face 32436 648 628 18843 Face 32437 401 383 18844 Face 32438 383 418 18844 Face 32439 418 436 18844 Face 32440 436 401 18844 Face 32441 418 515 18845 Face 32442 515 562 18845 Face 32443 562 436 18845 Face 32444 436 418 18845 Face 32445 429 511 18846 Face 32446 511 508 18846 Face 32447 508 433 18846 Face 32448 433 429 18846 Face 32449 622 665 18847 Face 32450 665 562 18847 Face 32451 562 515 18847 Face 32452 515 622 18847 Face 32453 606 622 18848 Face 32454 622 515 18848 Face 32455 515 450 18848 Face 32456 450 606 18848 Face 32457 652 628 18849 Face 32458 628 508 18849 Face 32459 508 511 18849 Face 32460 511 652 18849 Face 32461 665 652 18850 Face 32462 652 511 18850 Face 32463 511 562 18850 Face 32464 562 665 18850 Face 32465 782 775 18851 Face 32466 775 669 18851 Face 32467 669 652 18851 Face 32468 652 782 18851 Face 32469 734 782 18852 Face 32470 782 652 18852 Face 32471 652 665 18852 Face 32472 665 734 18852 Face 32473 635 734 18853 Face 32474 734 665 18853 Face 32475 665 622 18853 Face 32476 622 635 18853 Face 32477 720 785 18854 Face 32478 785 782 18854 Face 32479 782 734 18854 Face 32480 734 720 18854 Face 32481 632 720 18855 Face 32482 720 734 18855 Face 32483 734 635 18855 Face 32484 635 632 18855 Face 32485 785 784 18856 Face 32486 784 775 18856 Face 32487 775 782 18856 Face 32488 782 785 18856 Face 32489 565 608 18857 Face 32490 608 632 18857 Face 32491 632 583 18857 Face 32492 583 565 18857 Face 32493 741 736 18858 Face 32494 736 784 18858 Face 32495 784 785 18858 Face 32496 785 741 18858 Face 32497 697 741 18859 Face 32498 741 785 18859 Face 32499 785 720 18859 Face 32500 720 697 18859 Face 32501 608 697 18860 Face 32502 697 720 18860 Face 32503 720 632 18860 Face 32504 632 608 18860 Face 32505 660 642 18861 Face 32506 642 736 18861 Face 32507 736 741 18861 Face 32508 741 660 18861 Face 32509 609 660 18862 Face 32510 660 741 18862 Face 32511 741 697 18862 Face 32512 697 609 18862 Face 32513 546 609 18863 Face 32514 609 697 18863 Face 32515 697 608 18863 Face 32516 608 546 18863 Face 32517 522 546 18864 Face 32518 546 608 18864 Face 32519 608 565 18864 Face 32520 565 522 18864 Face 32521 503 498 18865 Face 32522 498 609 18865 Face 32523 609 546 18865 Face 32524 546 503 18865 Face 32525 491 503 18866 Face 32526 503 546 18866 Face 32527 546 522 18866 Face 32528 522 491 18866 Face 32529 476 463 18867 Face 32530 463 642 18867 Face 32531 642 660 18867 Face 32532 660 476 18867 Face 32533 498 476 18868 Face 32534 476 660 18868 Face 32535 660 609 18868 Face 32536 609 498 18868 Face 32537 380 365 18869 Face 32538 365 463 18869 Face 32539 463 476 18869 Face 32540 476 380 18869 Face 32541 454 380 18870 Face 32542 380 476 18870 Face 32543 476 498 18870 Face 32544 498 454 18870 Face 32545 462 454 18871 Face 32546 454 498 18871 Face 32547 498 503 18871 Face 32548 503 462 18871 Face 32549 444 462 18872 Face 32550 462 503 18872 Face 32551 503 491 18872 Face 32552 491 444 18872 Face 32553 380 192 18873 Face 32554 192 186 18873 Face 32555 186 365 18873 Face 32556 365 380 18873 Face 32557 375 353 18874 Face 32558 353 462 18874 Face 32559 462 444 18874 Face 32560 444 375 18874 Face 32561 242 192 18875 Face 32562 192 380 18875 Face 32563 380 454 18875 Face 32564 454 242 18875 Face 32565 353 242 18876 Face 32566 242 454 18876 Face 32567 454 462 18876 Face 32568 462 353 18876 Face 32569 217 319 18877 Face 32570 319 479 18877 Face 32571 479 566 18877 Face 32572 566 217 18877 Face 32573 181 217 18878 Face 32574 217 566 18878 Face 32575 566 525 18878 Face 32576 525 181 18878 Face 32577 319 331 18879 Face 32578 331 419 18879 Face 32579 419 479 18879 Face 32580 479 319 18879 Face 32581 181 525 18880 Face 32582 525 494 18880 Face 32583 494 168 18880 Face 32584 168 181 18880 Face 32585 479 419 18881 Face 32586 419 490 18881 Face 32587 490 561 18881 Face 32588 561 479 18881 Face 32589 566 479 18882 Face 32590 479 561 18882 Face 32591 561 653 18882 Face 32592 653 566 18882 Face 32593 525 566 18883 Face 32594 566 653 18883 Face 32595 653 682 18883 Face 32596 682 525 18883 Face 32597 494 525 18884 Face 32598 525 682 18884 Face 32599 682 658 18884 Face 32600 658 494 18884 Face 32601 682 653 18885 Face 32602 653 689 18885 Face 32603 689 744 18885 Face 32604 744 682 18885 Face 32605 658 682 18886 Face 32606 682 744 18886 Face 32607 744 724 18886 Face 32608 724 658 18886 Face 32609 561 490 18887 Face 32610 490 504 18887 Face 32611 504 579 18887 Face 32612 579 561 18887 Face 32613 653 561 18888 Face 32614 561 579 18888 Face 32615 579 689 18888 Face 32616 689 653 18888 Face 32617 579 504 18889 Face 32618 504 545 18889 Face 32619 545 616 18889 Face 32620 616 579 18889 Face 32621 689 579 18890 Face 32622 579 616 18890 Face 32623 616 721 18890 Face 32624 721 689 18890 Face 32625 744 689 18891 Face 32626 689 721 18891 Face 32627 721 774 18891 Face 32628 774 744 18891 Face 32629 724 744 18892 Face 32630 744 774 18892 Face 32631 774 767 18892 Face 32632 767 724 18892 Face 32633 721 616 18893 Face 32634 616 633 18893 Face 32635 633 729 18893 Face 32636 729 721 18893 Face 32637 774 721 18894 Face 32638 721 729 18894 Face 32639 729 790 18894 Face 32640 790 774 18894 Face 32641 767 774 18895 Face 32642 774 790 18895 Face 32643 790 786 18895 Face 32644 786 767 18895 Face 32645 616 545 18896 Face 32646 545 572 18896 Face 32647 572 633 18896 Face 32648 633 616 18896 Face 32649 786 790 18897 Face 32650 790 733 18897 Face 32651 733 735 18897 Face 32652 735 786 18897 Face 32653 633 572 18898 Face 32654 572 554 18898 Face 32655 554 600 18898 Face 32656 600 633 18898 Face 32657 729 633 18899 Face 32658 633 600 18899 Face 32659 600 706 18899 Face 32660 706 729 18899 Face 32661 790 729 18900 Face 32662 729 706 18900 Face 32663 706 733 18900 Face 32664 733 790 18900 Face 32665 600 554 18901 Face 32666 554 468 18901 Face 32667 468 486 18901 Face 32668 486 600 18901 Face 32669 706 600 18902 Face 32670 600 486 18902 Face 32671 486 551 18902 Face 32672 551 706 18902 Face 32673 733 706 18903 Face 32674 706 551 18903 Face 32675 551 552 18903 Face 32676 552 733 18903 Face 32677 735 733 18904 Face 32678 733 552 18904 Face 32679 552 594 18904 Face 32680 594 735 18904 Face 32681 552 551 18905 Face 32682 551 425 18905 Face 32683 425 391 18905 Face 32684 391 552 18905 Face 32685 523 552 18906 Face 32686 552 391 18906 Face 32687 391 392 18906 Face 32688 392 523 18906 Face 32689 486 468 18907 Face 32690 468 348 18907 Face 32691 348 374 18907 Face 32692 374 486 18907 Face 32693 551 486 18908 Face 32694 486 374 18908 Face 32695 374 425 18908 Face 32696 425 551 18908 Face 32697 391 342 18909 Face 32698 342 345 18909 Face 32699 345 392 18909 Face 32700 392 391 18909 Face 32701 374 317 18910 Face 32702 317 339 18910 Face 32703 339 425 18910 Face 32704 425 374 18910 Face 32705 304 315 18911 Face 32706 315 339 18911 Face 32707 339 317 18911 Face 32708 317 304 18911 Face 32709 552 523 18912 Face 32710 523 560 18912 Face 32711 560 594 18912 Face 32712 594 552 18912 Face 32713 342 325 18913 Face 32714 325 335 18913 Face 32715 335 345 18913 Face 32716 345 342 18913 Face 32717 315 304 18914 Face 32718 304 290 18914 Face 32719 290 299 18914 Face 32720 299 315 18914 Face 32721 325 342 18915 Face 32722 342 315 18915 Face 32723 315 299 18915 Face 32724 299 325 18915 Face 32725 342 391 18916 Face 32726 391 339 18916 Face 32727 339 315 18916 Face 32728 315 342 18916 Face 32729 181 168 18917 Face 32730 168 79 18917 Face 32731 79 86 18917 Face 32732 86 181 18917 Face 32733 217 181 18918 Face 32734 181 86 18918 Face 32735 86 138 18918 Face 32736 138 217 18918 Face 32737 319 217 18919 Face 32738 217 138 18919 Face 32739 138 278 18919 Face 32740 278 319 18919 Face 32741 174 209 18920 Face 32742 209 137 18920 Face 32743 137 81 18920 Face 32744 81 174 18920 Face 32745 168 174 18921 Face 32746 174 81 18921 Face 32747 81 79 18921 Face 32748 79 168 18921 Face 32749 387 341 18922 Face 32750 341 314 18922 Face 32751 314 338 18922 Face 32752 338 387 18922 Face 32753 341 325 18923 Face 32754 325 299 18923 Face 32755 299 314 18923 Face 32756 314 341 18923 Face 32757 302 314 18924 Face 32758 314 299 18924 Face 32759 299 290 18924 Face 32760 290 302 18924 Face 32761 325 341 18925 Face 32762 341 343 18925 Face 32763 343 335 18925 Face 32764 335 325 18925 Face 32765 521 549 18926 Face 32766 549 594 18926 Face 32767 594 560 18926 Face 32768 560 521 18926 Face 32769 314 302 18927 Face 32770 302 316 18927 Face 32771 316 338 18927 Face 32772 338 314 18927 Face 32773 316 373 18928 Face 32774 373 424 18928 Face 32775 424 338 18928 Face 32776 338 316 18928 Face 32777 341 387 18929 Face 32778 387 390 18929 Face 32779 390 343 18929 Face 32780 343 341 18929 Face 32781 483 548 18930 Face 32782 548 424 18930 Face 32783 424 373 18930 Face 32784 373 483 18930 Face 32785 468 483 18931 Face 32786 483 373 18931 Face 32787 373 348 18931 Face 32788 348 468 18931 Face 32789 549 521 18932 Face 32790 521 390 18932 Face 32791 390 387 18932 Face 32792 387 549 18932 Face 32793 548 549 18933 Face 32794 549 387 18933 Face 32795 387 424 18933 Face 32796 424 548 18933 Face 32797 726 735 18934 Face 32798 735 594 18934 Face 32799 594 549 18934 Face 32800 549 726 18934 Face 32801 690 726 18935 Face 32802 726 549 18935 Face 32803 549 548 18935 Face 32804 548 690 18935 Face 32805 588 690 18936 Face 32806 690 548 18936 Face 32807 548 483 18936 Face 32808 483 588 18936 Face 32809 554 588 18937 Face 32810 588 483 18937 Face 32811 483 468 18937 Face 32812 468 554 18937 Face 32813 714 777 18938 Face 32814 777 726 18938 Face 32815 726 690 18938 Face 32816 690 714 18938 Face 32817 617 714 18939 Face 32818 714 690 18939 Face 32819 690 588 18939 Face 32820 588 617 18939 Face 32821 572 617 18940 Face 32822 617 588 18940 Face 32823 588 554 18940 Face 32824 554 572 18940 Face 32825 777 786 18941 Face 32826 786 735 18941 Face 32827 735 726 18941 Face 32828 726 777 18941 Face 32829 545 587 18942 Face 32830 587 617 18942 Face 32831 617 572 18942 Face 32832 572 545 18942 Face 32833 760 767 18943 Face 32834 767 786 18943 Face 32835 786 777 18943 Face 32836 777 760 18943 Face 32837 703 760 18944 Face 32838 760 777 18944 Face 32839 777 714 18944 Face 32840 714 703 18944 Face 32841 730 724 18945 Face 32842 724 767 18945 Face 32843 767 760 18945 Face 32844 760 730 18945 Face 32845 666 730 18946 Face 32846 730 760 18946 Face 32847 760 703 18946 Face 32848 703 666 18946 Face 32849 556 666 18947 Face 32850 666 703 18947 Face 32851 703 587 18947 Face 32852 587 556 18947 Face 32853 504 556 18948 Face 32854 556 587 18948 Face 32855 587 545 18948 Face 32856 545 504 18948 Face 32857 510 607 18949 Face 32858 607 666 18949 Face 32859 666 556 18949 Face 32860 556 510 18949 Face 32861 490 510 18950 Face 32862 510 556 18950 Face 32863 556 504 18950 Face 32864 504 490 18950 Face 32865 649 658 18951 Face 32866 658 724 18951 Face 32867 724 730 18951 Face 32868 730 649 18951 Face 32869 607 649 18952 Face 32870 649 730 18952 Face 32871 730 666 18952 Face 32872 666 607 18952 Face 32873 500 494 18953 Face 32874 494 658 18953 Face 32875 658 649 18953 Face 32876 649 500 18953 Face 32877 532 500 18954 Face 32878 500 649 18954 Face 32879 649 607 18954 Face 32880 607 532 18954 Face 32881 445 532 18955 Face 32882 532 607 18955 Face 32883 607 510 18955 Face 32884 510 445 18955 Face 32885 419 445 18956 Face 32886 445 510 18956 Face 32887 510 490 18956 Face 32888 490 419 18956 Face 32889 500 174 18957 Face 32890 174 168 18957 Face 32891 168 494 18957 Face 32892 494 500 18957 Face 32893 331 301 18958 Face 32894 301 445 18958 Face 32895 445 419 18958 Face 32896 419 331 18958 Face 32897 209 174 18959 Face 32898 174 500 18959 Face 32899 500 532 18959 Face 32900 532 209 18959 Face 32901 301 209 18960 Face 32902 209 532 18960 Face 32903 532 445 18960 Face 32904 445 301 18960 Face 32905 138 86 18961 Face 32906 86 34 18961 Face 32907 34 70 18961 Face 32908 70 138 18961 Face 32909 240 278 18962 Face 32910 278 248 18962 Face 32911 248 212 18962 Face 32912 212 240 18962 Face 32913 294 240 18963 Face 32914 240 212 18963 Face 32915 212 307 18963 Face 32916 307 294 18963 Face 32917 81 137 18964 Face 32918 137 43 18964 Face 32919 43 30 18964 Face 32920 30 81 18964 Face 32921 30 43 18965 Face 32922 43 48 18965 Face 32923 48 36 18965 Face 32924 36 30 18965 Face 32925 19 30 18966 Face 32926 30 36 18966 Face 32927 36 20 18966 Face 32928 20 19 18966 Face 32929 34 19 18967 Face 32930 19 20 18967 Face 32931 20 40 18967 Face 32932 40 34 18967 Face 32933 70 34 18968 Face 32934 34 40 18968 Face 32935 40 72 18968 Face 32936 72 70 18968 Face 32937 212 248 18969 Face 32938 248 224 18969 Face 32939 224 210 18969 Face 32940 210 212 18969 Face 32941 307 212 18970 Face 32942 212 210 18970 Face 32943 210 272 18970 Face 32944 272 307 18970 Face 32945 280 307 18971 Face 32946 307 272 18971 Face 32947 272 334 18971 Face 32948 334 280 18971 Face 32949 250 280 18972 Face 32950 280 334 18972 Face 32951 334 232 18972 Face 32952 232 250 18972 Face 32953 95 250 18973 Face 32954 250 232 18973 Face 32955 232 120 18973 Face 32956 120 95 18973 Face 32957 61 95 18974 Face 32958 95 120 18974 Face 32959 120 82 18974 Face 32960 82 61 18974 Face 32961 42 61 18975 Face 32962 61 82 18975 Face 32963 82 45 18975 Face 32964 45 42 18975 Face 32965 63 42 18976 Face 32966 42 45 18976 Face 32967 45 66 18976 Face 32968 66 63 18976 Face 32969 43 63 18977 Face 32970 63 66 18977 Face 32971 66 48 18977 Face 32972 48 43 18977 Face 32973 137 122 18978 Face 32974 122 63 18978 Face 32975 63 43 18978 Face 32976 43 137 18978 Face 32977 346 294 18979 Face 32978 294 307 18979 Face 32979 307 280 18979 Face 32980 280 346 18979 Face 32981 291 346 18980 Face 32982 346 280 18980 Face 32983 280 250 18980 Face 32984 250 291 18980 Face 32985 152 291 18981 Face 32986 291 250 18981 Face 32987 250 95 18981 Face 32988 95 152 18981 Face 32989 104 152 18982 Face 32990 152 95 18982 Face 32991 95 61 18982 Face 32992 61 104 18982 Face 32993 276 402 18983 Face 32994 402 496 18983 Face 32995 496 505 18983 Face 32996 505 276 18983 Face 32997 207 276 18984 Face 32998 276 505 18984 Face 32999 505 434 18984 Face 33000 434 207 18984 Face 33001 402 417 18985 Face 33002 417 452 18985 Face 33003 452 496 18985 Face 33004 496 402 18985 Face 33005 207 434 18986 Face 33006 434 407 18986 Face 33007 407 191 18986 Face 33008 191 207 18986 Face 33009 496 452 18987 Face 33010 452 487 18987 Face 33011 487 559 18987 Face 33012 559 496 18987 Face 33013 505 496 18988 Face 33014 496 559 18988 Face 33015 559 610 18988 Face 33016 610 505 18988 Face 33017 434 505 18989 Face 33018 505 610 18989 Face 33019 610 605 18989 Face 33020 605 434 18989 Face 33021 407 434 18990 Face 33022 434 605 18990 Face 33023 605 568 18990 Face 33024 568 407 18990 Face 33025 605 610 18991 Face 33026 610 661 18991 Face 33027 661 704 18991 Face 33028 704 605 18991 Face 33029 568 605 18992 Face 33030 605 704 18992 Face 33031 704 683 18992 Face 33032 683 568 18992 Face 33033 559 487 18993 Face 33034 487 516 18993 Face 33035 516 584 18993 Face 33036 584 559 18993 Face 33037 610 559 18994 Face 33038 559 584 18994 Face 33039 584 661 18994 Face 33040 661 610 18994 Face 33041 584 516 18995 Face 33042 516 636 18995 Face 33043 636 673 18995 Face 33044 673 584 18995 Face 33045 661 584 18996 Face 33046 584 673 18996 Face 33047 673 755 18996 Face 33048 755 661 18996 Face 33049 704 661 18997 Face 33050 661 755 18997 Face 33051 755 805 18997 Face 33052 805 704 18997 Face 33053 683 704 18998 Face 33054 704 805 18998 Face 33055 805 801 18998 Face 33056 801 683 18998 Face 33057 755 673 18999 Face 33058 673 694 18999 Face 33059 694 787 18999 Face 33060 787 755 18999 Face 33061 805 755 19000 Face 33062 755 787 19000 Face 33063 787 830 19000 Face 33064 830 805 19000 Face 33065 801 805 19001 Face 33066 805 830 19001 Face 33067 830 825 19001 Face 33068 825 801 19001 Face 33069 673 636 19002 Face 33070 636 654 19002 Face 33071 654 694 19002 Face 33072 694 673 19002 Face 33073 825 830 19003 Face 33074 830 804 19003 Face 33075 804 803 19003 Face 33076 803 825 19003 Face 33077 694 654 19004 Face 33078 654 634 19004 Face 33079 634 687 19004 Face 33080 687 694 19004 Face 33081 787 694 19005 Face 33082 694 687 19005 Face 33083 687 766 19005 Face 33084 766 787 19005 Face 33085 830 787 19006 Face 33086 787 766 19006 Face 33087 766 804 19006 Face 33088 804 830 19006 Face 33089 687 634 19007 Face 33090 634 569 19007 Face 33091 569 611 19007 Face 33092 611 687 19007 Face 33093 766 687 19008 Face 33094 687 611 19008 Face 33095 611 688 19008 Face 33096 688 766 19008 Face 33097 804 766 19009 Face 33098 766 688 19009 Face 33099 688 702 19009 Face 33100 702 804 19009 Face 33101 803 804 19010 Face 33102 804 702 19010 Face 33103 702 717 19010 Face 33104 717 803 19010 Face 33105 702 688 19011 Face 33106 688 614 19011 Face 33107 614 601 19011 Face 33108 601 702 19011 Face 33109 680 702 19012 Face 33110 702 601 19012 Face 33111 601 602 19012 Face 33112 602 680 19012 Face 33113 611 569 19013 Face 33114 569 466 19013 Face 33115 466 536 19013 Face 33116 536 611 19013 Face 33117 688 611 19014 Face 33118 611 536 19014 Face 33119 536 614 19014 Face 33120 614 688 19014 Face 33121 601 540 19015 Face 33122 540 555 19015 Face 33123 555 602 19015 Face 33124 602 601 19015 Face 33125 536 465 19016 Face 33126 465 531 19016 Face 33127 531 614 19016 Face 33128 614 536 19016 Face 33129 446 497 19017 Face 33130 497 531 19017 Face 33131 531 465 19017 Face 33132 465 446 19017 Face 33133 702 680 19018 Face 33134 680 701 19018 Face 33135 701 717 19018 Face 33136 717 702 19018 Face 33137 540 524 19019 Face 33138 524 541 19019 Face 33139 541 555 19019 Face 33140 555 540 19019 Face 33141 497 446 19020 Face 33142 446 430 19020 Face 33143 430 474 19020 Face 33144 474 497 19020 Face 33145 524 540 19021 Face 33146 540 497 19021 Face 33147 497 474 19021 Face 33148 474 524 19021 Face 33149 540 601 19022 Face 33150 601 531 19022 Face 33151 531 497 19022 Face 33152 497 540 19022 Face 33153 417 402 19023 Face 33154 402 294 19023 Face 33155 294 346 19023 Face 33156 346 417 19023 Face 33157 207 191 19024 Face 33158 191 109 19024 Face 33159 109 122 19024 Face 33160 122 207 19024 Face 33161 276 207 19025 Face 33162 207 122 19025 Face 33163 122 137 19025 Face 33164 137 276 19025 Face 33165 225 337 19026 Face 33166 337 291 19026 Face 33167 291 152 19026 Face 33168 152 225 19026 Face 33169 198 225 19027 Face 33170 225 152 19027 Face 33171 152 104 19027 Face 33172 104 198 19027 Face 33173 191 198 19028 Face 33174 198 104 19028 Face 33175 104 109 19028 Face 33176 109 191 19028 Face 33177 337 417 19029 Face 33178 417 346 19029 Face 33179 346 291 19029 Face 33180 291 337 19029 Face 33181 570 528 19030 Face 33182 528 482 19030 Face 33183 482 501 19030 Face 33184 501 570 19030 Face 33185 528 524 19031 Face 33186 524 474 19031 Face 33187 474 482 19031 Face 33188 482 528 19031 Face 33189 435 482 19032 Face 33190 482 474 19032 Face 33191 474 430 19032 Face 33192 430 435 19032 Face 33193 524 528 19033 Face 33194 528 538 19033 Face 33195 538 541 19033 Face 33196 541 524 19033 Face 33197 664 684 19034 Face 33198 684 717 19034 Face 33199 717 701 19034 Face 33200 701 664 19034 Face 33201 482 435 19035 Face 33202 435 447 19035 Face 33203 447 501 19035 Face 33204 501 482 19035 Face 33205 447 507 19036 Face 33206 507 580 19036 Face 33207 580 501 19036 Face 33208 501 447 19036 Face 33209 528 570 19037 Face 33210 570 576 19037 Face 33211 576 538 19037 Face 33212 538 528 19037 Face 33213 589 659 19038 Face 33214 659 580 19038 Face 33215 580 507 19038 Face 33216 507 589 19038 Face 33217 569 589 19039 Face 33218 589 507 19039 Face 33219 507 466 19039 Face 33220 466 569 19039 Face 33221 684 664 19040 Face 33222 664 576 19040 Face 33223 576 570 19040 Face 33224 570 684 19040 Face 33225 659 684 19041 Face 33226 684 570 19041 Face 33227 570 580 19041 Face 33228 580 659 19041 Face 33229 793 803 19042 Face 33230 803 717 19042 Face 33231 717 684 19042 Face 33232 684 793 19042 Face 33233 751 793 19043 Face 33234 793 684 19043 Face 33235 684 659 19043 Face 33236 659 751 19043 Face 33237 662 751 19044 Face 33238 751 659 19044 Face 33239 659 589 19044 Face 33240 589 662 19044 Face 33241 634 662 19045 Face 33242 662 589 19045 Face 33243 589 569 19045 Face 33244 569 634 19045 Face 33245 757 820 19046 Face 33246 820 793 19046 Face 33247 793 751 19046 Face 33248 751 757 19046 Face 33249 654 672 19047 Face 33250 672 662 19047 Face 33251 662 634 19047 Face 33252 634 654 19047 Face 33253 820 825 19048 Face 33254 825 803 19048 Face 33255 803 793 19048 Face 33256 793 820 19048 Face 33257 636 650 19049 Face 33258 650 672 19049 Face 33259 672 654 19049 Face 33260 654 636 19049 Face 33261 798 801 19050 Face 33262 801 825 19050 Face 33263 825 820 19050 Face 33264 820 798 19050 Face 33265 742 798 19051 Face 33266 798 820 19051 Face 33267 820 757 19051 Face 33268 757 742 19051 Face 33269 650 742 19052 Face 33270 742 757 19052 Face 33271 757 672 19052 Face 33272 672 650 19052 Face 33273 685 683 19053 Face 33274 683 801 19053 Face 33275 801 798 19053 Face 33276 798 685 19053 Face 33277 620 685 19054 Face 33278 685 798 19054 Face 33279 798 742 19054 Face 33280 742 620 19054 Face 33281 543 620 19055 Face 33282 620 742 19055 Face 33283 742 650 19055 Face 33284 650 543 19055 Face 33285 516 543 19056 Face 33286 543 650 19056 Face 33287 650 636 19056 Face 33288 636 516 19056 Face 33289 506 553 19057 Face 33290 553 620 19057 Face 33291 620 543 19057 Face 33292 543 506 19057 Face 33293 487 506 19058 Face 33294 506 543 19058 Face 33295 543 516 19058 Face 33296 516 487 19058 Face 33297 567 568 19059 Face 33298 568 683 19059 Face 33299 683 685 19059 Face 33300 685 567 19059 Face 33301 553 567 19060 Face 33302 567 685 19060 Face 33303 685 620 19060 Face 33304 620 553 19060 Face 33305 412 407 19061 Face 33306 407 568 19061 Face 33307 568 567 19061 Face 33308 567 412 19061 Face 33309 440 412 19062 Face 33310 412 567 19062 Face 33311 567 553 19062 Face 33312 553 440 19062 Face 33313 437 440 19063 Face 33314 440 553 19063 Face 33315 553 506 19063 Face 33316 506 437 19063 Face 33317 452 437 19064 Face 33318 437 506 19064 Face 33319 506 487 19064 Face 33320 487 452 19064 Face 33321 412 198 19065 Face 33322 198 191 19065 Face 33323 191 407 19065 Face 33324 407 412 19065 Face 33325 417 337 19066 Face 33326 337 437 19066 Face 33327 437 452 19066 Face 33328 452 417 19066 Face 33329 225 198 19067 Face 33330 198 412 19067 Face 33331 412 440 19067 Face 33332 440 225 19067 Face 33333 337 225 19068 Face 33334 225 440 19068 Face 33335 440 437 19068 Face 33336 437 337 19068 Face 33337 557 625 19069 Face 33338 625 455 19069 Face 33339 455 366 19069 Face 33340 366 557 19069 Face 33341 625 696 19070 Face 33342 696 582 19070 Face 33343 582 455 19070 Face 33344 455 625 19070 Face 33345 696 754 19071 Face 33346 754 695 19071 Face 33347 695 582 19071 Face 33348 582 696 19071 Face 33349 754 800 19072 Face 33350 800 770 19072 Face 33351 770 695 19072 Face 33352 695 754 19072 Face 33353 800 783 19073 Face 33354 783 725 19073 Face 33355 725 770 19073 Face 33356 770 800 19073 Face 33357 783 700 19074 Face 33358 700 645 19074 Face 33359 645 725 19074 Face 33360 725 783 19074 Face 33361 700 593 19075 Face 33362 593 499 19075 Face 33363 499 645 19075 Face 33364 645 700 19075 Face 33365 593 557 19076 Face 33366 557 366 19076 Face 33367 366 499 19076 Face 33368 499 593 19076 Face 33369 409 626 19077 Face 33370 626 671 19077 Face 33371 671 471 19077 Face 33372 471 409 19077 Face 33373 247 409 19078 Face 33374 409 471 19078 Face 33375 471 303 19078 Face 33376 303 247 19078 Face 33377 273 247 19079 Face 33378 247 303 19079 Face 33379 303 305 19079 Face 33380 305 273 19079 Face 33381 356 273 19080 Face 33382 273 305 19080 Face 33383 305 457 19080 Face 33384 457 356 19080 Face 33385 305 303 19081 Face 33386 303 366 19081 Face 33387 366 455 19081 Face 33388 455 305 19081 Face 33389 457 305 19082 Face 33390 305 455 19082 Face 33391 455 582 19082 Face 33392 582 457 19082 Face 33393 471 671 19083 Face 33394 671 645 19083 Face 33395 645 499 19083 Face 33396 499 471 19083 Face 33397 303 471 19084 Face 33398 471 499 19084 Face 33399 499 366 19084 Face 33400 366 303 19084 Face 33401 593 700 19085 Face 33402 700 748 19085 Face 33403 748 686 19085 Face 33404 686 593 19085 Face 33405 557 593 19086 Face 33406 593 686 19086 Face 33407 686 699 19086 Face 33408 699 557 19086 Face 33409 625 557 19087 Face 33410 557 699 19087 Face 33411 699 732 19087 Face 33412 732 625 19087 Face 33413 696 625 19088 Face 33414 625 732 19088 Face 33415 732 773 19088 Face 33416 773 696 19088 Face 33417 699 686 19089 Face 33418 686 691 19089 Face 33419 691 715 19089 Face 33420 715 699 19089 Face 33421 732 699 19090 Face 33422 699 715 19090 Face 33423 715 769 19090 Face 33424 769 732 19090 Face 33425 773 732 19091 Face 33426 732 769 19091 Face 33427 769 828 19091 Face 33428 828 773 19091 Face 33429 686 748 19092 Face 33430 748 750 19092 Face 33431 750 691 19092 Face 33432 691 686 19092 Face 33433 828 769 19093 Face 33434 769 808 19093 Face 33435 808 840 19093 Face 33436 840 828 19093 Face 33437 691 750 19094 Face 33438 750 763 19094 Face 33439 763 716 19094 Face 33440 716 691 19094 Face 33441 715 691 19095 Face 33442 691 716 19095 Face 33443 716 743 19095 Face 33444 743 715 19095 Face 33445 769 715 19096 Face 33446 715 743 19096 Face 33447 743 808 19096 Face 33448 808 769 19096 Face 33449 716 763 19097 Face 33450 763 807 19097 Face 33451 807 759 19097 Face 33452 759 716 19097 Face 33453 743 716 19098 Face 33454 716 759 19098 Face 33455 759 778 19098 Face 33456 778 743 19098 Face 33457 808 743 19099 Face 33458 743 778 19099 Face 33459 778 824 19099 Face 33460 824 808 19099 Face 33461 840 808 19100 Face 33462 808 824 19100 Face 33463 824 860 19100 Face 33464 860 840 19100 Face 33465 824 778 19101 Face 33466 778 811 19101 Face 33467 811 839 19101 Face 33468 839 824 19101 Face 33469 838 824 19102 Face 33470 824 839 19102 Face 33471 839 845 19102 Face 33472 845 838 19102 Face 33473 759 807 19103 Face 33474 807 843 19103 Face 33475 843 806 19103 Face 33476 806 759 19103 Face 33477 778 759 19104 Face 33478 759 806 19104 Face 33479 806 811 19104 Face 33480 811 778 19104 Face 33481 839 873 19105 Face 33482 873 877 19105 Face 33483 877 845 19105 Face 33484 845 839 19105 Face 33485 806 833 19106 Face 33486 833 841 19106 Face 33487 841 811 19106 Face 33488 811 806 19106 Face 33489 851 870 19107 Face 33490 870 841 19107 Face 33491 841 833 19107 Face 33492 833 851 19107 Face 33493 824 838 19108 Face 33494 838 875 19108 Face 33495 875 860 19108 Face 33496 860 824 19108 Face 33497 873 903 19109 Face 33498 903 902 19109 Face 33499 902 877 19109 Face 33500 877 873 19109 Face 33501 870 851 19110 Face 33502 851 879 19110 Face 33503 879 897 19110 Face 33504 897 870 19110 Face 33505 903 873 19111 Face 33506 873 870 19111 Face 33507 870 897 19111 Face 33508 897 903 19111 Face 33509 873 839 19112 Face 33510 839 841 19112 Face 33511 841 870 19112 Face 33512 870 873 19112 Face 33513 933 927 19113 Face 33514 927 917 19113 Face 33515 917 924 19113 Face 33516 924 933 19113 Face 33517 927 903 19114 Face 33518 903 897 19114 Face 33519 897 917 19114 Face 33520 917 927 19114 Face 33521 891 917 19115 Face 33522 917 897 19115 Face 33523 897 879 19115 Face 33524 879 891 19115 Face 33525 903 927 19116 Face 33526 927 929 19116 Face 33527 929 902 19116 Face 33528 902 903 19116 Face 33529 904 901 19117 Face 33530 901 860 19117 Face 33531 860 875 19117 Face 33532 875 904 19117 Face 33533 917 891 19118 Face 33534 891 892 19118 Face 33535 892 924 19118 Face 33536 924 917 19118 Face 33537 892 883 19119 Face 33538 883 919 19119 Face 33539 919 924 19119 Face 33540 924 892 19119 Face 33541 927 933 19120 Face 33542 933 928 19120 Face 33543 928 929 19120 Face 33544 929 927 19120 Face 33545 854 900 19121 Face 33546 900 919 19121 Face 33547 919 883 19121 Face 33548 883 854 19121 Face 33549 807 854 19122 Face 33550 854 883 19122 Face 33551 883 843 19122 Face 33552 843 807 19122 Face 33553 901 904 19123 Face 33554 904 928 19123 Face 33555 928 933 19123 Face 33556 933 901 19123 Face 33557 900 901 19124 Face 33558 901 933 19124 Face 33559 933 919 19124 Face 33560 919 900 19124 Face 33561 881 840 19125 Face 33562 840 860 19125 Face 33563 860 901 19125 Face 33564 901 881 19125 Face 33565 886 881 19126 Face 33566 881 901 19126 Face 33567 901 900 19126 Face 33568 900 886 19126 Face 33569 832 886 19127 Face 33570 886 900 19127 Face 33571 900 854 19127 Face 33572 854 832 19127 Face 33573 763 832 19128 Face 33574 832 854 19128 Face 33575 854 807 19128 Face 33576 807 763 19128 Face 33577 869 868 19129 Face 33578 868 881 19129 Face 33579 881 886 19129 Face 33580 886 869 19129 Face 33581 827 869 19130 Face 33582 869 886 19130 Face 33583 886 832 19130 Face 33584 832 827 19130 Face 33585 750 827 19131 Face 33586 827 832 19131 Face 33587 832 763 19131 Face 33588 763 750 19131 Face 33589 868 828 19132 Face 33590 828 840 19132 Face 33591 840 881 19132 Face 33592 881 868 19132 Face 33593 748 823 19133 Face 33594 823 827 19133 Face 33595 827 750 19133 Face 33596 750 748 19133 Face 33597 826 773 19134 Face 33598 773 828 19134 Face 33599 828 868 19134 Face 33600 868 826 19134 Face 33601 848 826 19135 Face 33602 826 868 19135 Face 33603 868 869 19135 Face 33604 869 848 19135 Face 33605 823 848 19136 Face 33606 848 869 19136 Face 33607 869 827 19136 Face 33608 827 823 19136 Face 33609 754 696 19137 Face 33610 696 773 19137 Face 33611 773 826 19137 Face 33612 826 754 19137 Face 33613 800 754 19138 Face 33614 754 826 19138 Face 33615 826 848 19138 Face 33616 848 800 19138 Face 33617 783 800 19139 Face 33618 800 848 19139 Face 33619 848 823 19139 Face 33620 823 783 19139 Face 33621 700 783 19140 Face 33622 783 823 19140 Face 33623 823 748 19140 Face 33624 748 700 19140 Face 33625 768 756 19141 Face 33626 756 770 19141 Face 33627 770 725 19141 Face 33628 725 768 19141 Face 33629 671 768 19142 Face 33630 768 725 19142 Face 33631 725 645 19142 Face 33632 645 671 19142 Face 33633 640 457 19143 Face 33634 457 582 19143 Face 33635 582 695 19143 Face 33636 695 640 19143 Face 33637 756 640 19144 Face 33638 640 695 19144 Face 33639 695 770 19144 Face 33640 770 756 19144 Face 33641 526 356 19145 Face 33642 356 457 19145 Face 33643 457 640 19145 Face 33644 640 526 19145 Face 33645 723 526 19146 Face 33646 526 640 19146 Face 33647 640 756 19146 Face 33648 756 723 19146 Face 33649 745 723 19147 Face 33650 723 756 19147 Face 33651 756 768 19147 Face 33652 768 745 19147 Face 33653 626 745 19148 Face 33654 745 768 19148 Face 33655 768 671 19148 Face 33656 671 626 19148 Face 33657 39 9 19149 Face 33658 9 22 19149 Face 33659 22 87 19149 Face 33660 87 39 19149 Face 33661 27 39 19150 Face 33662 39 87 19150 Face 33663 87 74 19150 Face 33664 74 27 19150 Face 33665 312 161 19151 Face 33666 161 171 19151 Face 33667 171 244 19151 Face 33668 244 312 19151 Face 33669 591 222 19152 Face 33670 222 312 19152 Face 33671 312 573 19152 Face 33672 573 591 19152 Face 33673 762 591 19153 Face 33674 591 573 19153 Face 33675 573 780 19153 Face 33676 780 762 19153 Face 33677 909 865 19154 Face 33678 865 857 19154 Face 33679 857 867 19154 Face 33680 867 909 19154 Face 33681 863 909 19155 Face 33682 909 867 19155 Face 33683 867 829 19155 Face 33684 829 863 19155 Face 33685 31 12 19156 Face 33686 12 14 19156 Face 33687 14 110 19156 Face 33688 110 31 19156 Face 33689 22 9 19157 Face 33690 9 12 19157 Face 33691 12 31 19157 Face 33692 31 22 19157 Face 33693 761 863 19158 Face 33694 863 829 19158 Face 33695 829 738 19158 Face 33696 738 761 19158 Face 33697 12 4 19159 Face 33698 4 7 19159 Face 33699 7 14 19159 Face 33700 14 12 19159 Face 33701 5 4 19160 Face 33702 4 12 19160 Face 33703 12 9 19160 Face 33704 9 5 19160 Face 33705 8 5 19161 Face 33706 5 9 19161 Face 33707 9 39 19161 Face 33708 39 8 19161 Face 33709 13 8 19162 Face 33710 8 39 19162 Face 33711 39 27 19162 Face 33712 27 13 19162 Face 33713 83 13 19163 Face 33714 13 27 19163 Face 33715 27 141 19163 Face 33716 141 83 19163 Face 33717 83 141 19164 Face 33718 141 222 19164 Face 33719 222 213 19164 Face 33720 213 83 19164 Face 33721 762 752 19165 Face 33722 752 534 19165 Face 33723 534 591 19165 Face 33724 591 762 19165 Face 33725 591 534 19166 Face 33726 534 213 19166 Face 33727 213 222 19166 Face 33728 222 591 19166 Face 33729 846 752 19167 Face 33730 752 762 19167 Face 33731 762 865 19167 Face 33732 865 846 19167 Face 33733 909 885 19168 Face 33734 885 846 19168 Face 33735 846 865 19168 Face 33736 865 909 19168 Face 33737 863 842 19169 Face 33738 842 885 19169 Face 33739 885 909 19169 Face 33740 909 863 19169 Face 33741 761 772 19170 Face 33742 772 842 19170 Face 33743 842 863 19170 Face 33744 863 761 19170 Face 33745 154 37 19171 Face 33746 37 16 19171 Face 33747 16 162 19171 Face 33748 162 154 19171 Face 33749 761 464 19172 Face 33750 464 442 19172 Face 33751 442 772 19172 Face 33752 772 761 19172 Face 33753 154 162 19173 Face 33754 162 442 19173 Face 33755 442 464 19173 Face 33756 464 154 19173 Face 33757 175 183 19174 Face 33758 183 238 19174 Face 33759 238 218 19174 Face 33760 218 175 19174 Face 33761 159 146 19175 Face 33762 146 126 19175 Face 33763 126 114 19175 Face 33764 114 159 19175 Face 33765 149 183 19176 Face 33766 183 175 19176 Face 33767 175 140 19176 Face 33768 140 149 19176 Face 33769 149 140 19177 Face 33770 140 126 19177 Face 33771 126 146 19177 Face 33772 146 149 19177 Face 33773 674 737 19178 Face 33774 737 438 19178 Face 33775 438 275 19178 Face 33776 275 674 19178 Face 33777 866 802 19179 Face 33778 802 810 19179 Face 33779 810 871 19179 Face 33780 871 866 19179 Face 33781 802 674 19180 Face 33782 674 707 19180 Face 33783 707 810 19180 Face 33784 810 802 19180 Face 33785 961 874 19181 Face 33786 874 887 19181 Face 33787 887 970 19181 Face 33788 970 961 19181 Face 33789 874 623 19182 Face 33790 623 644 19182 Face 33791 644 887 19182 Face 33792 887 874 19182 Face 33793 76 129 19183 Face 33794 129 127 19183 Face 33795 127 80 19183 Face 33796 80 76 19183 Face 33797 196 127 19184 Face 33798 127 129 19184 Face 33799 129 194 19184 Face 33800 194 196 19184 Face 33801 623 381 19185 Face 33802 381 393 19185 Face 33803 393 644 19185 Face 33804 644 623 19185 Face 33805 238 269 19186 Face 33806 269 266 19186 Face 33807 266 218 19186 Face 33808 218 238 19186 Face 33809 269 451 19187 Face 33810 451 449 19187 Face 33811 449 266 19187 Face 33812 266 269 19187 Face 33813 821 948 19188 Face 33814 948 943 19188 Face 33815 943 815 19188 Face 33816 815 821 19188 Face 33817 196 194 19189 Face 33818 194 271 19189 Face 33819 271 270 19189 Face 33820 270 196 19189 Face 33821 667 676 19190 Face 33822 676 449 19190 Face 33823 449 451 19190 Face 33824 451 667 19190 Face 33825 676 667 19191 Face 33826 667 821 19191 Face 33827 821 815 19191 Face 33828 815 676 19191 Face 33829 1385 1333 19192 Face 33830 1333 1266 19192 Face 33831 1266 1364 19192 Face 33832 1364 1385 19192 Face 33833 1430 1385 19193 Face 33834 1385 1364 19193 Face 33835 1364 1411 19193 Face 33836 1411 1430 19193 Face 33837 1477 1430 19194 Face 33838 1430 1434 19194 Face 33839 1434 1445 19194 Face 33840 1445 1477 19194 Face 33841 1474 1477 19195 Face 33842 1477 1455 19195 Face 33843 1455 1454 19195 Face 33844 1454 1474 19195 Face 33845 1420 1474 19196 Face 33846 1474 1439 19196 Face 33847 1439 1423 19196 Face 33848 1423 1420 19196 Face 33849 1399 1420 19197 Face 33850 1420 1402 19197 Face 33851 1402 1349 19197 Face 33852 1349 1399 19197 Face 33853 1355 1399 19198 Face 33854 1399 1349 19198 Face 33855 1349 1291 19198 Face 33856 1291 1355 19198 Face 33857 1331 1355 19199 Face 33858 1355 1257 19199 Face 33859 1257 1198 19199 Face 33860 1198 1331 19199 Face 33861 1331 1198 19200 Face 33862 1198 1207 19200 Face 33863 1207 1333 19200 Face 33864 1333 1331 19200 Face 33865 1207 1198 19201 Face 33866 1198 1131 19201 Face 33867 1131 1223 19201 Face 33868 1223 1207 19201 Face 33869 1266 1207 19202 Face 33870 1207 1215 19202 Face 33871 1215 1220 19202 Face 33872 1220 1266 19202 Face 33873 1364 1266 19203 Face 33874 1266 1220 19203 Face 33875 1220 1268 19203 Face 33876 1268 1364 19203 Face 33877 1411 1364 19204 Face 33878 1364 1268 19204 Face 33879 1268 1318 19204 Face 33880 1318 1411 19204 Face 33881 1434 1411 19205 Face 33882 1411 1318 19205 Face 33883 1318 1288 19205 Face 33884 1288 1434 19205 Face 33885 1445 1434 19206 Face 33886 1434 1288 19206 Face 33887 1288 1308 19206 Face 33888 1308 1445 19206 Face 33889 1455 1445 19207 Face 33890 1445 1308 19207 Face 33891 1308 1314 19207 Face 33892 1314 1455 19207 Face 33893 1454 1455 19208 Face 33894 1455 1314 19208 Face 33895 1314 1313 19208 Face 33896 1313 1454 19208 Face 33897 1439 1454 19209 Face 33898 1454 1313 19209 Face 33899 1313 1303 19209 Face 33900 1303 1439 19209 Face 33901 1423 1439 19210 Face 33902 1439 1303 19210 Face 33903 1303 1279 19210 Face 33904 1279 1423 19210 Face 33905 1402 1423 19211 Face 33906 1423 1279 19211 Face 33907 1279 1301 19211 Face 33908 1301 1402 19211 Face 33909 1349 1402 19212 Face 33910 1402 1301 19212 Face 33911 1301 1249 19212 Face 33912 1249 1349 19212 Face 33913 1291 1349 19213 Face 33914 1349 1249 19213 Face 33915 1249 1189 19213 Face 33916 1189 1291 19213 Face 33917 1257 1291 19214 Face 33918 1291 1189 19214 Face 33919 1189 1190 19214 Face 33920 1190 1257 19214 Face 33921 1198 1257 19215 Face 33922 1257 1190 19215 Face 33923 1190 1154 19215 Face 33924 1154 1198 19215 Face 33925 1190 1189 19216 Face 33926 1189 937 19216 Face 33927 937 949 19216 Face 33928 949 1190 19216 Face 33929 943 1154 19217 Face 33930 1154 1190 19217 Face 33931 1190 949 19217 Face 33932 949 943 19217 Face 33933 1154 948 19218 Face 33934 948 988 19218 Face 33935 988 1046 19218 Face 33936 1046 1154 19218 Face 33937 1131 1046 19219 Face 33938 1046 988 19219 Face 33939 988 1152 19219 Face 33940 1152 1131 19219 Face 33941 1223 1131 19220 Face 33942 1131 1152 19220 Face 33943 1152 1231 19220 Face 33944 1231 1223 19220 Face 33945 1218 1223 19221 Face 33946 1223 1231 19221 Face 33947 1231 1117 19221 Face 33948 1117 1218 19221 Face 33949 1215 1218 19222 Face 33950 1218 1117 19222 Face 33951 1117 1018 19222 Face 33952 1018 1215 19222 Face 33953 1220 1215 19223 Face 33954 1215 1018 19223 Face 33955 1018 1001 19223 Face 33956 1001 1220 19223 Face 33957 1268 1220 19224 Face 33958 1220 1001 19224 Face 33959 1001 1088 19224 Face 33960 1088 1268 19224 Face 33961 1318 1268 19225 Face 33962 1268 1088 19225 Face 33963 1088 1087 19225 Face 33964 1087 1318 19225 Face 33965 1288 1318 19226 Face 33966 1318 1087 19226 Face 33967 1087 1089 19226 Face 33968 1089 1288 19226 Face 33969 1308 1288 19227 Face 33970 1288 1089 19227 Face 33971 1089 1073 19227 Face 33972 1073 1308 19227 Face 33973 1314 1308 19228 Face 33974 1308 1073 19228 Face 33975 1073 1072 19228 Face 33976 1072 1314 19228 Face 33977 1313 1314 19229 Face 33978 1314 1072 19229 Face 33979 1072 1093 19229 Face 33980 1093 1313 19229 Face 33981 1303 1313 19230 Face 33982 1313 1093 19230 Face 33983 1093 1058 19230 Face 33984 1058 1303 19230 Face 33985 1279 1303 19231 Face 33986 1303 1058 19231 Face 33987 1058 1021 19231 Face 33988 1021 1279 19231 Face 33989 1301 1279 19232 Face 33990 1279 1021 19232 Face 33991 1021 982 19232 Face 33992 982 1301 19232 Face 33993 1249 1301 19233 Face 33994 1301 982 19233 Face 33995 982 969 19233 Face 33996 969 1249 19233 Face 33997 1189 1249 19234 Face 33998 1249 969 19234 Face 33999 969 937 19234 Face 34000 937 1189 19234 Face 34001 1093 1072 19235 Face 34002 1072 938 19235 Face 34003 938 932 19235 Face 34004 932 1093 19235 Face 34005 913 890 19236 Face 34006 890 1058 19236 Face 34007 1058 1093 19236 Face 34008 1093 913 19236 Face 34009 615 663 19237 Face 34010 663 932 19237 Face 34011 932 938 19237 Face 34012 938 615 19237 Face 34013 663 765 19238 Face 34014 765 913 19238 Face 34015 913 932 19238 Face 34016 932 663 19238 Face 34017 596 749 19239 Face 34018 749 718 19239 Face 34019 718 558 19239 Face 34020 558 596 19239 Face 34021 931 1087 19240 Face 34022 1087 1088 19240 Face 34023 1088 922 19240 Face 34024 922 931 19240 Face 34025 837 931 19241 Face 34026 931 922 19241 Face 34027 922 692 19241 Face 34028 692 837 19241 Face 34029 1087 931 19242 Face 34030 931 925 19242 Face 34031 925 1089 19242 Face 34032 1089 1087 19242 Face 34033 746 837 19243 Face 34034 837 692 19243 Face 34035 692 544 19243 Face 34036 544 746 19243 Face 34037 844 925 19244 Face 34038 925 837 19244 Face 34039 837 746 19244 Face 34040 746 844 19244 Face 34041 266 203 19245 Face 34042 203 176 19245 Face 34043 176 218 19245 Face 34044 218 266 19245 Face 34045 203 165 19246 Face 34046 165 147 19246 Face 34047 147 176 19246 Face 34048 176 203 19246 Face 34049 925 942 19247 Face 34050 942 1073 19247 Face 34051 1073 1089 19247 Face 34052 1089 925 19247 Face 34053 844 613 19248 Face 34054 613 797 19248 Face 34055 797 942 19248 Face 34056 942 844 19248 Face 34057 746 332 19249 Face 34058 332 613 19249 Face 34059 613 844 19249 Face 34060 844 746 19249 Face 34061 544 205 19250 Face 34062 205 332 19250 Face 34063 332 746 19250 Face 34064 746 544 19250 Face 34065 202 332 19251 Face 34066 332 205 19251 Face 34067 205 139 19251 Face 34068 139 202 19251 Face 34069 329 613 19252 Face 34070 613 332 19252 Face 34071 332 202 19252 Face 34072 202 329 19252 Face 34073 329 615 19253 Face 34074 615 797 19253 Face 34075 797 613 19253 Face 34076 613 329 19253 Face 34077 295 663 19254 Face 34078 663 615 19254 Face 34079 615 292 19254 Face 34080 292 295 19254 Face 34081 382 765 19255 Face 34082 765 663 19255 Face 34083 663 295 19255 Face 34084 295 382 19255 Face 34085 712 890 19256 Face 34086 890 765 19256 Face 34087 765 382 19256 Face 34088 382 712 19256 Face 34089 982 1021 19257 Face 34090 1021 890 19257 Face 34091 890 858 19257 Face 34092 858 982 19257 Face 34093 858 819 19258 Face 34094 819 969 19258 Face 34095 969 982 19258 Face 34096 982 858 19258 Face 34097 712 595 19259 Face 34098 595 819 19259 Face 34099 819 858 19259 Face 34100 858 712 19259 Face 34101 382 220 19260 Face 34102 220 432 19260 Face 34103 432 712 19260 Face 34104 712 382 19260 Face 34105 295 173 19261 Face 34106 173 220 19261 Face 34107 220 382 19261 Face 34108 382 295 19261 Face 34109 292 166 19262 Face 34110 166 173 19262 Face 34111 173 295 19262 Face 34112 295 292 19262 Face 34113 202 166 19263 Face 34114 166 292 19263 Face 34115 292 329 19263 Face 34116 329 202 19263 Face 34117 135 166 19264 Face 34118 166 202 19264 Face 34119 202 139 19264 Face 34120 139 135 19264 Face 34121 143 173 19265 Face 34122 173 166 19265 Face 34123 166 135 19265 Face 34124 135 143 19265 Face 34125 187 220 19266 Face 34126 220 173 19266 Face 34127 173 143 19266 Face 34128 143 187 19266 Face 34129 179 187 19267 Face 34130 187 143 19267 Face 34131 143 117 19267 Face 34132 117 179 19267 Face 34133 293 187 19268 Face 34134 187 179 19268 Face 34135 179 265 19268 Face 34136 265 293 19268 Face 34137 293 432 19269 Face 34138 432 220 19269 Face 34139 220 187 19269 Face 34140 187 293 19269 Face 34141 293 535 19270 Face 34142 535 595 19270 Face 34143 595 432 19270 Face 34144 432 293 19270 Face 34145 530 535 19271 Face 34146 535 293 19271 Face 34147 293 265 19271 Face 34148 265 530 19271 Face 34149 809 535 19272 Face 34150 535 530 19272 Face 34151 530 812 19272 Face 34152 812 809 19272 Face 34153 809 819 19273 Face 34154 819 595 19273 Face 34155 595 535 19273 Face 34156 535 809 19273 Face 34157 809 937 19274 Face 34158 937 969 19274 Face 34159 969 819 19274 Face 34160 819 809 19274 Face 34161 812 949 19275 Face 34162 949 937 19275 Face 34163 937 809 19275 Face 34164 809 812 19275 Face 34165 812 815 19276 Face 34166 815 943 19276 Face 34167 943 949 19276 Face 34168 949 812 19276 Face 34169 530 676 19277 Face 34170 676 815 19277 Face 34171 815 812 19277 Face 34172 812 530 19277 Face 34173 265 203 19278 Face 34174 203 266 19278 Face 34175 266 449 19278 Face 34176 449 265 19278 Face 34177 179 165 19279 Face 34178 165 203 19279 Face 34179 203 265 19279 Face 34180 265 179 19279 Face 34181 117 106 19280 Face 34182 106 165 19280 Face 34183 165 179 19280 Face 34184 179 117 19280 Face 34185 961 1018 19281 Face 34186 1018 1117 19281 Face 34187 1117 1057 19281 Face 34188 1057 961 19281 Face 34189 1117 1121 19282 Face 34190 1121 1071 19282 Face 34191 1071 1057 19282 Face 34192 1057 1117 19282 Face 34193 1231 1199 19283 Face 34194 1199 1121 19283 Face 34195 1121 1117 19283 Face 34196 1117 1231 19283 Face 34197 857 856 19284 Face 34198 856 864 19284 Face 34199 864 867 19284 Face 34200 867 857 19284 Face 34201 872 850 19285 Face 34202 850 916 19285 Face 34203 916 920 19285 Face 34204 920 872 19285 Face 34205 796 852 19286 Face 34206 852 816 19286 Face 34207 816 781 19286 Face 34208 781 796 19286 Face 34209 834 940 19287 Face 34210 940 852 19287 Face 34211 852 796 19287 Face 34212 796 834 19287 Face 34213 960 940 19288 Face 34214 940 834 19288 Face 34215 834 849 19288 Face 34216 849 960 19288 Face 34217 993 940 19289 Face 34218 940 960 19289 Face 34219 960 1071 19289 Face 34220 1071 993 19289 Face 34221 993 916 19290 Face 34222 916 852 19290 Face 34223 852 940 19290 Face 34224 940 993 19290 Face 34225 850 816 19291 Face 34226 816 852 19291 Face 34227 852 916 19291 Face 34228 916 850 19291 Face 34229 113 117 19292 Face 34230 117 143 19292 Face 34231 143 135 19292 Face 34232 135 113 19292 Face 34233 139 125 19293 Face 34234 125 113 19293 Face 34235 113 135 19293 Face 34236 135 139 19293 Face 34237 169 125 19294 Face 34238 125 139 19294 Face 34239 139 205 19294 Face 34240 205 169 19294 Face 34241 151 101 19295 Face 34242 101 125 19295 Face 34243 125 169 19295 Face 34244 169 151 19295 Face 34245 144 102 19296 Face 34246 102 101 19296 Face 34247 101 151 19296 Face 34248 151 144 19296 Face 34249 132 98 19297 Face 34250 98 102 19297 Face 34251 102 144 19297 Face 34252 144 132 19297 Face 34253 147 108 19298 Face 34254 108 98 19298 Face 34255 98 132 19298 Face 34256 132 147 19298 Face 34257 147 165 19299 Face 34258 165 106 19299 Face 34259 106 108 19299 Face 34260 108 147 19299 Face 34261 176 158 19300 Face 34262 158 157 19300 Face 34263 157 218 19300 Face 34264 218 176 19300 Face 34265 132 158 19301 Face 34266 158 176 19301 Face 34267 176 147 19301 Face 34268 147 132 19301 Face 34269 144 201 19302 Face 34270 201 158 19302 Face 34271 158 132 19302 Face 34272 132 144 19302 Face 34273 151 267 19303 Face 34274 267 201 19303 Face 34275 201 144 19303 Face 34276 144 151 19303 Face 34277 169 389 19304 Face 34278 389 267 19304 Face 34279 267 151 19304 Face 34280 151 169 19304 Face 34281 544 389 19305 Face 34282 389 169 19305 Face 34283 169 205 19305 Face 34284 205 544 19305 Face 34285 692 657 19306 Face 34286 657 389 19306 Face 34287 389 544 19306 Face 34288 544 692 19306 Face 34289 922 889 19307 Face 34290 889 657 19307 Face 34291 657 692 19307 Face 34292 692 922 19307 Face 34293 1001 889 19308 Face 34294 889 922 19308 Face 34295 922 1088 19308 Face 34296 1088 1001 19308 Face 34297 887 889 19309 Face 34298 889 1001 19309 Face 34299 1001 970 19309 Face 34300 970 887 19309 Face 34301 644 657 19310 Face 34302 657 889 19310 Face 34303 889 887 19310 Face 34304 887 644 19310 Face 34305 657 644 19311 Face 34306 644 393 19311 Face 34307 393 389 19311 Face 34308 389 657 19311 Face 34309 623 564 19312 Face 34310 564 349 19312 Face 34311 349 381 19312 Face 34312 381 623 19312 Face 34313 473 261 19313 Face 34314 261 349 19313 Face 34315 349 564 19313 Face 34316 564 473 19313 Face 34317 817 739 19314 Face 34318 739 473 19314 Face 34319 473 564 19314 Face 34320 564 817 19314 Face 34321 874 817 19315 Face 34322 817 564 19315 Face 34323 564 623 19315 Face 34324 623 874 19315 Face 34325 895 960 19316 Face 34326 960 849 19316 Face 34327 849 836 19316 Face 34328 836 895 19316 Face 34329 960 895 19317 Face 34330 895 1057 19317 Face 34331 1057 1071 19317 Face 34332 1071 960 19317 Face 34333 895 817 19318 Face 34334 817 874 19318 Face 34335 874 961 19318 Face 34336 961 895 19318 Face 34337 836 739 19319 Face 34338 739 817 19319 Face 34339 817 895 19319 Face 34340 895 836 19319 Face 34341 655 739 19320 Face 34342 739 836 19320 Face 34343 836 776 19320 Face 34344 776 655 19320 Face 34345 749 596 19321 Face 34346 596 655 19321 Face 34347 655 776 19321 Face 34348 776 749 19321 Face 34349 796 718 19322 Face 34350 718 749 19322 Face 34351 749 834 19322 Face 34352 834 796 19322 Face 34353 693 718 19323 Face 34354 718 796 19323 Face 34355 796 781 19323 Face 34356 781 693 19323 Face 34357 519 558 19324 Face 34358 558 718 19324 Face 34359 718 693 19324 Face 34360 693 519 19324 Face 34361 313 369 19325 Face 34362 369 558 19325 Face 34363 558 519 19325 Face 34364 519 313 19325 Face 34365 361 596 19326 Face 34366 596 558 19326 Face 34367 558 369 19326 Face 34368 369 361 19326 Face 34369 370 655 19327 Face 34370 655 596 19327 Face 34371 596 361 19327 Face 34372 361 370 19327 Face 34373 369 215 19328 Face 34374 215 206 19328 Face 34375 206 361 19328 Face 34376 361 369 19328 Face 34377 197 215 19329 Face 34378 215 369 19329 Face 34379 369 264 19329 Face 34380 264 197 19329 Face 34381 119 215 19330 Face 34382 215 197 19330 Face 34383 197 97 19330 Face 34384 97 119 19330 Face 34385 93 206 19331 Face 34386 206 215 19331 Face 34387 215 119 19331 Face 34388 119 93 19331 Face 34389 206 211 19332 Face 34390 211 370 19332 Face 34391 370 361 19332 Face 34392 361 206 19332 Face 34393 739 655 19333 Face 34394 655 370 19333 Face 34395 370 473 19333 Face 34396 473 739 19333 Face 34397 473 370 19334 Face 34398 370 211 19334 Face 34399 211 261 19334 Face 34400 261 473 19334 Face 34401 211 206 19335 Face 34402 206 93 19335 Face 34403 93 136 19335 Face 34404 136 211 19335 Face 34405 178 184 19336 Face 34406 184 136 19336 Face 34407 136 99 19336 Face 34408 99 178 19336 Face 34409 196 270 19337 Face 34410 270 255 19337 Face 34411 255 178 19337 Face 34412 178 196 19337 Face 34413 194 201 19338 Face 34414 201 267 19338 Face 34415 267 271 19338 Face 34416 271 194 19338 Face 34417 157 158 19339 Face 34418 158 201 19339 Face 34419 201 194 19339 Face 34420 194 157 19339 Face 34421 194 129 19340 Face 34422 129 130 19340 Face 34423 130 157 19340 Face 34424 157 194 19340 Face 34425 99 127 19341 Face 34426 127 196 19341 Face 34427 196 178 19341 Face 34428 178 99 19341 Face 34429 99 136 19342 Face 34430 136 93 19342 Face 34431 93 88 19342 Face 34432 88 99 19342 Face 34433 76 75 19343 Face 34434 75 130 19343 Face 34435 130 129 19343 Face 34436 129 76 19343 Face 34437 44 28 19344 Face 34438 28 22 19344 Face 34439 22 31 19344 Face 34440 31 44 19344 Face 34441 33 75 19345 Face 34442 75 76 19345 Face 34443 76 53 19345 Face 34444 53 33 19345 Face 34445 88 93 19346 Face 34446 93 119 19346 Face 34447 119 60 19346 Face 34448 60 88 19346 Face 34449 119 97 19347 Face 34450 97 46 19347 Face 34451 46 60 19347 Face 34452 60 119 19347 Face 34453 97 91 19348 Face 34454 91 57 19348 Face 34455 57 46 19348 Face 34456 46 97 19348 Face 34457 46 49 19349 Face 34458 49 53 19349 Face 34459 53 60 19349 Face 34460 60 46 19349 Face 34461 53 49 19350 Face 34462 49 26 19350 Face 34463 26 33 19350 Face 34464 33 53 19350 Face 34465 44 89 19351 Face 34466 89 73 19351 Face 34467 73 26 19351 Face 34468 26 44 19351 Face 34469 140 75 19352 Face 34470 75 33 19352 Face 34471 33 126 19352 Face 34472 126 140 19352 Face 34473 175 130 19353 Face 34474 130 75 19353 Face 34475 75 140 19353 Face 34476 140 175 19353 Face 34477 175 218 19354 Face 34478 218 157 19354 Face 34479 157 130 19354 Face 34480 130 175 19354 Face 34481 189 183 19355 Face 34482 183 149 19355 Face 34483 149 128 19355 Face 34484 128 189 19355 Face 34485 233 238 19356 Face 34486 238 183 19356 Face 34487 183 189 19356 Face 34488 189 233 19356 Face 34489 233 318 19357 Face 34490 318 451 19357 Face 34491 451 269 19357 Face 34492 269 233 19357 Face 34493 189 245 19358 Face 34494 245 318 19358 Face 34495 318 233 19358 Face 34496 233 189 19358 Face 34497 128 185 19359 Face 34498 185 245 19359 Face 34499 245 189 19359 Face 34500 189 128 19359 Face 34501 128 134 19360 Face 34502 134 164 19360 Face 34503 164 185 19360 Face 34504 185 128 19360 Face 34505 149 146 19361 Face 34506 146 134 19361 Face 34507 134 128 19361 Face 34508 128 149 19361 Face 34509 26 73 19362 Face 34510 73 126 19362 Face 34511 126 33 19362 Face 34512 33 26 19362 Face 34513 180 134 19363 Face 34514 134 146 19363 Face 34515 146 159 19363 Face 34516 159 180 19363 Face 34517 214 164 19364 Face 34518 164 134 19364 Face 34519 134 180 19364 Face 34520 180 214 19364 Face 34521 376 164 19365 Face 34522 164 214 19365 Face 34523 214 426 19365 Face 34524 426 376 19365 Face 34525 394 185 19366 Face 34526 185 164 19366 Face 34527 164 376 19366 Face 34528 376 394 19366 Face 34529 539 245 19367 Face 34530 245 185 19367 Face 34531 185 394 19367 Face 34532 394 539 19367 Face 34533 612 318 19368 Face 34534 318 245 19368 Face 34535 245 539 19368 Face 34536 539 612 19368 Face 34537 612 667 19369 Face 34538 667 451 19369 Face 34539 451 318 19369 Face 34540 318 612 19369 Face 34541 1199 1080 19370 Face 34542 1080 1028 19370 Face 34543 1028 1121 19370 Face 34544 1121 1199 19370 Face 34545 1080 945 19371 Face 34546 945 920 19371 Face 34547 920 1028 19371 Face 34548 1028 1080 19371 Face 34549 915 872 19372 Face 34550 872 920 19372 Face 34551 920 945 19372 Face 34552 945 915 19372 Face 34553 864 856 19373 Face 34554 856 872 19373 Face 34555 872 915 19373 Face 34556 915 864 19373 Face 34557 915 882 19374 Face 34558 882 814 19374 Face 34559 814 864 19374 Face 34560 864 915 19374 Face 34561 945 930 19375 Face 34562 930 882 19375 Face 34563 882 915 19375 Face 34564 915 945 19375 Face 34565 1080 1067 19376 Face 34566 1067 930 19376 Face 34567 930 945 19376 Face 34568 945 1080 19376 Face 34569 1199 1137 19377 Face 34570 1137 1067 19377 Face 34571 1067 1080 19377 Face 34572 1080 1199 19377 Face 34573 1152 1137 19378 Face 34574 1137 1199 19378 Face 34575 1199 1231 19378 Face 34576 1231 1152 19378 Face 34577 1044 1137 19379 Face 34578 1137 1152 19379 Face 34579 1152 988 19379 Face 34580 988 1044 19379 Face 34581 1044 976 19380 Face 34582 976 1067 19380 Face 34583 1067 1137 19380 Face 34584 1137 1044 19380 Face 34585 954 952 19381 Face 34586 952 946 19381 Face 34587 946 967 19381 Face 34588 967 954 19381 Face 34589 941 896 19382 Face 34590 896 954 19382 Face 34591 954 967 19382 Face 34592 967 941 19382 Face 34593 941 948 19383 Face 34594 948 821 19383 Face 34595 821 896 19383 Face 34596 896 941 19383 Face 34597 788 898 19384 Face 34598 898 899 19384 Face 34599 899 791 19384 Face 34600 791 788 19384 Face 34601 954 899 19385 Face 34602 899 898 19385 Face 34603 898 952 19385 Face 34604 952 954 19385 Face 34605 896 821 19386 Face 34606 821 791 19386 Face 34607 791 899 19386 Face 34608 899 896 19386 Face 34609 612 791 19387 Face 34610 791 821 19387 Face 34611 821 667 19387 Face 34612 667 612 19387 Face 34613 539 788 19388 Face 34614 788 791 19388 Face 34615 791 612 19388 Face 34616 612 539 19388 Face 34617 394 758 19389 Face 34618 758 788 19389 Face 34619 788 539 19389 Face 34620 539 394 19389 Face 34621 376 698 19390 Face 34622 698 758 19390 Face 34623 758 394 19390 Face 34624 394 376 19390 Face 34625 813 698 19391 Face 34626 698 575 19391 Face 34627 575 710 19391 Face 34628 710 813 19391 Face 34629 861 758 19392 Face 34630 758 698 19392 Face 34631 698 813 19392 Face 34632 813 861 19392 Face 34633 861 898 19393 Face 34634 898 788 19393 Face 34635 788 758 19393 Face 34636 758 861 19393 Face 34637 914 952 19394 Face 34638 952 898 19394 Face 34639 898 861 19394 Face 34640 861 914 19394 Face 34641 866 946 19395 Face 34642 946 952 19395 Face 34643 952 914 19395 Face 34644 914 866 19395 Face 34645 871 930 19396 Face 34646 930 1067 19396 Face 34647 1067 976 19396 Face 34648 976 871 19396 Face 34649 810 882 19397 Face 34650 882 930 19397 Face 34651 930 871 19397 Face 34652 871 810 19397 Face 34653 810 707 19398 Face 34654 707 814 19398 Face 34655 814 882 19398 Face 34656 882 810 19398 Face 34657 802 855 19399 Face 34658 855 737 19399 Face 34659 737 674 19399 Face 34660 674 802 19399 Face 34661 914 855 19400 Face 34662 855 802 19400 Face 34663 802 866 19400 Face 34664 866 914 19400 Face 34665 813 855 19401 Face 34666 855 914 19401 Face 34667 914 861 19401 Face 34668 861 813 19401 Face 34669 710 737 19402 Face 34670 737 855 19402 Face 34671 855 813 19402 Face 34672 813 710 19402 Face 34673 737 710 19403 Face 34674 710 575 19403 Face 34675 575 438 19403 Face 34676 438 737 19403 Face 34677 177 275 19404 Face 34678 275 180 19404 Face 34679 180 133 19404 Face 34680 133 177 19404 Face 34681 438 214 19405 Face 34682 214 180 19405 Face 34683 180 275 19405 Face 34684 275 438 19405 Face 34685 575 426 19406 Face 34686 426 214 19406 Face 34687 214 438 19406 Face 34688 438 575 19406 Face 34689 575 698 19407 Face 34690 698 376 19407 Face 34691 376 426 19407 Face 34692 426 575 19407 Face 34693 171 197 19408 Face 34694 197 264 19408 Face 34695 264 244 19408 Face 34696 244 171 19408 Face 34697 161 74 19409 Face 34698 74 91 19409 Face 34699 91 171 19409 Face 34700 171 161 19409 Face 34701 74 87 19410 Face 34702 87 57 19410 Face 34703 57 91 19410 Face 34704 91 74 19410 Face 34705 22 28 19411 Face 34706 28 57 19411 Face 34707 57 87 19411 Face 34708 87 22 19411 Face 34709 681 693 19412 Face 34710 693 781 19412 Face 34711 781 764 19412 Face 34712 764 681 19412 Face 34713 681 470 19413 Face 34714 470 519 19413 Face 34715 519 693 19413 Face 34716 693 681 19413 Face 34717 624 484 19414 Face 34718 484 470 19414 Face 34719 470 681 19414 Face 34720 681 624 19414 Face 34721 764 719 19415 Face 34722 719 624 19415 Face 34723 624 681 19415 Face 34724 681 764 19415 Face 34725 470 284 19416 Face 34726 284 313 19416 Face 34727 313 519 19416 Face 34728 519 470 19416 Face 34729 484 359 19417 Face 34730 359 284 19417 Face 34731 284 470 19417 Face 34732 470 484 19417 Face 34733 598 359 19418 Face 34734 359 484 19418 Face 34735 484 624 19418 Face 34736 624 598 19418 Face 34737 753 598 19419 Face 34738 598 624 19419 Face 34739 624 719 19419 Face 34740 719 753 19419 Face 34741 799 764 19420 Face 34742 764 781 19420 Face 34743 781 816 19420 Face 34744 816 799 19420 Face 34745 799 753 19421 Face 34746 753 719 19421 Face 34747 719 764 19421 Face 34748 764 799 19421 Face 34749 818 856 19422 Face 34750 856 857 19422 Face 34751 857 780 19422 Face 34752 780 818 19422 Face 34753 707 738 19423 Face 34754 738 829 19423 Face 34755 829 814 19423 Face 34756 814 707 19423 Face 34757 814 829 19424 Face 34758 829 867 19424 Face 34759 867 864 19424 Face 34760 864 814 19424 Face 34761 674 275 19425 Face 34762 275 177 19425 Face 34763 177 550 19425 Face 34764 550 674 19425 Face 34765 114 73 19426 Face 34766 73 89 19426 Face 34767 89 133 19426 Face 34768 133 114 19426 Face 34769 9993 9963 19427 Face 34770 9963 10009 19427 Face 34771 10009 10055 19427 Face 34772 10055 9993 19427 Face 34773 9879 9867 19428 Face 34774 9867 9963 19428 Face 34775 9963 9993 19428 Face 34776 9993 9879 19428 Face 34777 9598 9602 19429 Face 34778 9602 9867 19429 Face 34779 9867 9879 19429 Face 34780 9879 9598 19429 Face 34781 9500 9526 19430 Face 34782 9526 9602 19430 Face 34783 9602 9598 19430 Face 34784 9598 9500 19430 Face 34785 9437 9492 19431 Face 34786 9492 9526 19431 Face 34787 9526 9500 19431 Face 34788 9500 9437 19431 Face 34789 9432 9488 19432 Face 34790 9488 9492 19432 Face 34791 9492 9437 19432 Face 34792 9437 9432 19432 Face 34793 9431 9478 19433 Face 34794 9478 9488 19433 Face 34795 9488 9432 19433 Face 34796 9432 9431 19433 Face 34797 10040 10043 19434 Face 34798 10043 9461 19434 Face 34799 9461 9460 19434 Face 34800 9460 10040 19434 Face 34801 10082 10028 19435 Face 34802 10028 10029 19435 Face 34803 10029 10080 19435 Face 34804 10080 10082 19435 Face 34805 10055 10009 19436 Face 34806 10009 10028 19436 Face 34807 10028 10082 19436 Face 34808 10082 10055 19436 Face 34809 10111 10079 19437 Face 34810 10079 10074 19437 Face 34811 10074 10110 19437 Face 34812 10110 10111 19437 Face 34813 9511 9512 19438 Face 34814 9512 10090 19438 Face 34815 10090 10088 19438 Face 34816 10088 9511 19438 Face 34817 9483 9528 19439 Face 34818 9528 9525 19439 Face 34819 9525 9477 19439 Face 34820 9477 9483 19439 Face 34821 9486 9524 19440 Face 34822 9524 9528 19440 Face 34823 9528 9483 19440 Face 34824 9483 9486 19440 Face 34825 9552 9567 19441 Face 34826 9567 9524 19441 Face 34827 9524 9486 19441 Face 34828 9486 9552 19441 Face 34829 9675 9679 19442 Face 34830 9679 9567 19442 Face 34831 9567 9552 19442 Face 34832 9552 9675 19442 Face 34833 9925 9910 19443 Face 34834 9910 9679 19443 Face 34835 9679 9675 19443 Face 34836 9675 9925 19443 Face 34837 10030 9997 19444 Face 34838 9997 9910 19444 Face 34839 9910 9925 19444 Face 34840 9925 10030 19444 Face 34841 10094 10050 19445 Face 34842 10050 9997 19445 Face 34843 9997 10030 19445 Face 34844 10030 10094 19445 Face 34845 10110 10074 19446 Face 34846 10074 10050 19446 Face 34847 10050 10094 19446 Face 34848 10094 10110 19446 Face 34849 9455 9447 19447 Face 34850 9447 9713 19447 Face 34851 9713 9765 19447 Face 34852 9765 9455 19447 Face 34853 9379 9396 19448 Face 34854 9396 9447 19448 Face 34855 9447 9455 19448 Face 34856 9455 9379 19448 Face 34857 9247 9343 19449 Face 34858 9343 9396 19449 Face 34859 9396 9379 19449 Face 34860 9379 9247 19449 Face 34861 8571 9020 19450 Face 34862 9020 9343 19450 Face 34863 9343 9247 19450 Face 34864 9247 8571 19450 Face 34865 8528 8962 19451 Face 34866 8962 9020 19451 Face 34867 9020 8571 19451 Face 34868 8571 8528 19451 Face 34869 9283 9359 19452 Face 34870 9359 8962 19452 Face 34871 8962 8528 19452 Face 34872 8528 9283 19452 Face 34873 9434 9430 19453 Face 34874 9430 9359 19453 Face 34875 9359 9283 19453 Face 34876 9283 9434 19453 Face 34877 9587 9556 19454 Face 34878 9556 9430 19454 Face 34879 9430 9434 19454 Face 34880 9434 9587 19454 Face 34881 9778 9716 19455 Face 34882 9716 9556 19455 Face 34883 9556 9587 19455 Face 34884 9587 9778 19455 Face 34885 9807 9740 19456 Face 34886 9740 9716 19456 Face 34887 9716 9778 19456 Face 34888 9778 9807 19456 Face 34889 9832 9775 19457 Face 34890 9775 9740 19457 Face 34891 9740 9807 19457 Face 34892 9807 9832 19457 Face 34893 9765 9713 19458 Face 34894 9713 9775 19458 Face 34895 9775 9832 19458 Face 34896 9832 9765 19458 Face 34897 8555 9000 19459 Face 34898 9000 8648 19459 Face 34899 8648 8325 19459 Face 34900 8325 8555 19459 Face 34901 8553 8895 19460 Face 34902 8895 9000 19460 Face 34903 9000 8555 19460 Face 34904 8555 8553 19460 Face 34905 8832 9165 19461 Face 34906 9165 8895 19461 Face 34907 8895 8553 19461 Face 34908 8553 8832 19461 Face 34909 9653 9626 19462 Face 34910 9626 9165 19462 Face 34911 9165 8832 19462 Face 34912 8832 9653 19462 Face 34913 9692 9633 19463 Face 34914 9633 9626 19463 Face 34915 9626 9653 19463 Face 34916 9653 9692 19463 Face 34917 9693 9632 19464 Face 34918 9632 9633 19464 Face 34919 9633 9692 19464 Face 34920 9692 9693 19464 Face 34921 9733 9680 19465 Face 34922 9680 9632 19465 Face 34923 9632 9693 19465 Face 34924 9693 9733 19465 Face 34925 9753 9695 19466 Face 34926 9695 9680 19466 Face 34927 9680 9733 19466 Face 34928 9733 9753 19466 Face 34929 9562 9542 19467 Face 34930 9542 9695 19467 Face 34931 9695 9753 19467 Face 34932 9753 9562 19467 Face 34933 9422 9417 19468 Face 34934 9417 9542 19468 Face 34935 9542 9562 19468 Face 34936 9562 9422 19468 Face 34937 9131 9338 19469 Face 34938 9338 9417 19469 Face 34939 9417 9422 19469 Face 34940 9422 9131 19469 Face 34941 8428 8812 19470 Face 34942 8812 9338 19470 Face 34943 9338 9131 19470 Face 34944 9131 8428 19470 Face 34945 8359 8736 19471 Face 34946 8736 8812 19471 Face 34947 8812 8428 19471 Face 34948 8428 8359 19471 Face 34949 8325 8648 19472 Face 34950 8648 8736 19472 Face 34951 8736 8359 19472 Face 34952 8359 8325 19472 Face 34953 9030 9333 19473 Face 34954 9333 9271 19473 Face 34955 9271 8855 19473 Face 34956 8855 9030 19473 Face 34957 9346 9376 19474 Face 34958 9376 9333 19474 Face 34959 9333 9030 19474 Face 34960 9030 9346 19474 Face 34961 9397 9408 19475 Face 34962 9408 9376 19475 Face 34963 9376 9346 19475 Face 34964 9346 9397 19475 Face 34965 9462 9456 19476 Face 34966 9456 9408 19476 Face 34967 9408 9397 19476 Face 34968 9397 9462 19476 Face 34969 9794 9741 19477 Face 34970 9741 9456 19477 Face 34971 9456 9462 19477 Face 34972 9462 9794 19477 Face 34973 9887 9839 19478 Face 34974 9839 9741 19478 Face 34975 9741 9794 19478 Face 34976 9794 9887 19478 Face 34977 9857 9803 19479 Face 34978 9803 9839 19479 Face 34979 9839 9887 19479 Face 34980 9887 9857 19479 Face 34981 9854 9806 19480 Face 34982 9806 9803 19480 Face 34983 9803 9857 19480 Face 34984 9857 9854 19480 Face 34985 9844 9793 19481 Face 34986 9793 9806 19481 Face 34987 9806 9854 19481 Face 34988 9854 9844 19481 Face 34989 9805 9738 19482 Face 34990 9738 9793 19482 Face 34991 9793 9844 19482 Face 34992 9844 9805 19482 Face 34993 9802 9739 19483 Face 34994 9739 9738 19483 Face 34995 9738 9805 19483 Face 34996 9805 9802 19483 Face 34997 9774 9729 19484 Face 34998 9729 9739 19484 Face 34999 9739 9802 19484 Face 35000 9802 9774 19484 Face 35001 9313 9360 19485 Face 35002 9360 9729 19485 Face 35003 9729 9774 19485 Face 35004 9774 9313 19485 Face 35005 9091 9308 19486 Face 35006 9308 9360 19486 Face 35007 9360 9313 19486 Face 35008 9313 9091 19486 Face 35009 9095 9337 19487 Face 35010 9337 9308 19487 Face 35011 9308 9091 19487 Face 35012 9091 9095 19487 Face 35013 8829 9265 19488 Face 35014 9265 9337 19488 Face 35015 9337 9095 19488 Face 35016 9095 8829 19488 Face 35017 8855 9271 19489 Face 35018 9271 9265 19489 Face 35019 9265 8829 19489 Face 35020 8829 8855 19489 Face 35021 9360 9308 19490 Face 35022 9308 8895 19490 Face 35023 8895 9165 19490 Face 35024 9165 9360 19490 Face 35025 9739 9729 19491 Face 35026 9729 9626 19491 Face 35027 9626 9633 19491 Face 35028 9633 9739 19491 Face 35029 10079 10090 19492 Face 35030 10090 10043 19492 Face 35031 10043 10029 19492 Face 35032 10029 10079 19492 Face 35033 9478 9461 19493 Face 35034 9461 9512 19493 Face 35035 9512 9525 19493 Face 35036 9525 9478 19493 Face 35037 9376 9408 19494 Face 35038 9408 9396 19494 Face 35039 9396 9343 19494 Face 35040 9343 9376 19494 Face 35041 8962 9359 19495 Face 35042 9359 9338 19495 Face 35043 9338 8812 19495 Face 35044 8812 8962 19495 Face 35045 9360 9165 19496 Face 35046 9165 9626 19496 Face 35047 9626 9729 19496 Face 35048 9729 9360 19496 Face 35049 9478 9525 19497 Face 35050 9525 9528 19497 Face 35051 9528 9488 19497 Face 35052 9488 9478 19497 Face 35053 9488 9528 19498 Face 35054 9528 9524 19498 Face 35055 9524 9492 19498 Face 35056 9492 9488 19498 Face 35057 9492 9524 19499 Face 35058 9524 9567 19499 Face 35059 9567 9526 19499 Face 35060 9526 9492 19499 Face 35061 9602 9526 19500 Face 35062 9526 9567 19500 Face 35063 9567 9679 19500 Face 35064 9679 9602 19500 Face 35065 9602 9679 19501 Face 35066 9679 9910 19501 Face 35067 9910 9867 19501 Face 35068 9867 9602 19501 Face 35069 9867 9910 19502 Face 35070 9910 9997 19502 Face 35071 9997 9963 19502 Face 35072 9963 9867 19502 Face 35073 9963 9997 19503 Face 35074 9997 10050 19503 Face 35075 10050 10009 19503 Face 35076 10009 9963 19503 Face 35077 10009 10050 19504 Face 35078 10050 10074 19504 Face 35079 10074 10028 19504 Face 35080 10028 10009 19504 Face 35081 10028 10074 19505 Face 35082 10074 10079 19505 Face 35083 10079 10029 19505 Face 35084 10029 10028 19505 Face 35085 9359 9430 19506 Face 35086 9430 9417 19506 Face 35087 9417 9338 19506 Face 35088 9338 9359 19506 Face 35089 9343 9020 19507 Face 35090 9020 9333 19507 Face 35091 9333 9376 19507 Face 35092 9376 9343 19507 Face 35093 9456 9447 19508 Face 35094 9447 9396 19508 Face 35095 9396 9408 19508 Face 35096 9408 9456 19508 Face 35097 9803 9740 19509 Face 35098 9740 9775 19509 Face 35099 9775 9839 19509 Face 35100 9839 9803 19509 Face 35101 9456 9741 19510 Face 35102 9741 9713 19510 Face 35103 9713 9447 19510 Face 35104 9447 9456 19510 Face 35105 9542 9417 19511 Face 35106 9417 9430 19511 Face 35107 9430 9556 19511 Face 35108 9556 9542 19511 Face 35109 9839 9775 19512 Face 35110 9775 9713 19512 Face 35111 9713 9741 19512 Face 35112 9741 9839 19512 Face 35113 9793 9680 19513 Face 35114 9680 9695 19513 Face 35115 9695 9806 19513 Face 35116 9806 9793 19513 Face 35117 9695 9542 19514 Face 35118 9542 9556 19514 Face 35119 9556 9716 19514 Face 35120 9716 9695 19514 Face 35121 9806 9695 19515 Face 35122 9695 9716 19515 Face 35123 9716 9803 19515 Face 35124 9803 9806 19515 Face 35125 9020 8962 19516 Face 35126 8962 8812 19516 Face 35127 8812 8736 19516 Face 35128 8736 9020 19516 Face 35129 9333 9020 19517 Face 35130 9020 8736 19517 Face 35131 8736 9271 19517 Face 35132 9271 9333 19517 Face 35133 8648 9265 19518 Face 35134 9265 9271 19518 Face 35135 9271 8736 19518 Face 35136 8736 8648 19518 Face 35137 9000 9337 19519 Face 35138 9337 9265 19519 Face 35139 9265 8648 19519 Face 35140 8648 9000 19519 Face 35141 9632 9738 19520 Face 35142 9738 9739 19520 Face 35143 9739 9633 19520 Face 35144 9633 9632 19520 Face 35145 10043 10090 19521 Face 35146 10090 9512 19521 Face 35147 9512 9461 19521 Face 35148 9461 10043 19521 Face 35149 9738 9632 19522 Face 35150 9632 9680 19522 Face 35151 9680 9793 19522 Face 35152 9793 9738 19522 Face 35153 9337 9000 19523 Face 35154 9000 8895 19523 Face 35155 8895 9308 19523 Face 35156 9308 9337 19523 Face 35157 9922 9996 19524 Face 35158 9996 9499 19524 Face 35159 9499 9872 19524 Face 35160 9872 9922 19524 Face 35161 9448 9614 19525 Face 35162 9614 10059 19525 Face 35163 10059 9377 19525 Face 35164 9377 9448 19525 Face 35165 8583 9168 19526 Face 35166 9168 9653 19526 Face 35167 9653 8832 19526 Face 35168 8832 8583 19526 Face 35169 9782 9636 19527 Face 35170 9636 9511 19527 Face 35171 9511 9933 19527 Face 35172 9933 9782 19527 Face 35173 10039 9933 19528 Face 35174 9933 9511 19528 Face 35175 9511 10135 19528 Face 35176 10135 10039 19528 Face 35177 10119 10135 19529 Face 35178 10135 9511 19529 Face 35179 9511 10088 19529 Face 35180 10088 10119 19529 Face 35181 10040 9482 19530 Face 35182 9482 9499 19530 Face 35183 9499 9996 19530 Face 35184 9996 10040 19530 Face 35185 7859 8025 19531 Face 35186 8025 8912 19531 Face 35187 8912 8679 19531 Face 35188 8679 7859 19531 Face 35189 8679 8912 19532 Face 35190 8912 9340 19532 Face 35191 9340 9317 19532 Face 35192 9317 8679 19532 Face 35193 9317 9340 19533 Face 35194 9340 9433 19533 Face 35195 9433 9435 19533 Face 35196 9435 9317 19533 Face 35197 9545 9554 19534 Face 35198 9554 9435 19534 Face 35199 9435 9433 19534 Face 35200 9433 9545 19534 Face 35201 7578 7740 19535 Face 35202 7740 8025 19535 Face 35203 8025 7859 19535 Face 35204 7859 7578 19535 Face 35205 7587 7735 19536 Face 35206 7735 7740 19536 Face 35207 7740 7578 19536 Face 35208 7578 7587 19536 Face 35209 7735 7587 19537 Face 35210 7587 7682 19537 Face 35211 7682 7777 19537 Face 35212 7777 7735 19537 Face 35213 7937 7978 19538 Face 35214 7978 7777 19538 Face 35215 7777 7682 19538 Face 35216 7682 7937 19538 Face 35217 8438 8447 19539 Face 35218 8447 7978 19539 Face 35219 7978 7937 19539 Face 35220 7937 8438 19539 Face 35221 9081 9123 19540 Face 35222 9123 8447 19540 Face 35223 8447 8438 19540 Face 35224 8438 9081 19540 Face 35225 9554 9545 19541 Face 35226 9545 9734 19541 Face 35227 9734 9772 19541 Face 35228 9772 9554 19541 Face 35229 9772 9734 19542 Face 35230 9734 9888 19542 Face 35231 9888 9920 19542 Face 35232 9920 9772 19542 Face 35233 9920 9888 19543 Face 35234 9888 9966 19543 Face 35235 9966 9983 19543 Face 35236 9983 9920 19543 Face 35237 10026 10046 19544 Face 35238 10046 9983 19544 Face 35239 9983 9966 19544 Face 35240 9966 10026 19544 Face 35241 10046 10026 19545 Face 35242 10026 10077 19545 Face 35243 10077 10092 19545 Face 35244 10092 10046 19545 Face 35245 9123 9081 19546 Face 35246 9081 9369 19546 Face 35247 9369 9377 19546 Face 35248 9377 9123 19546 Face 35249 10092 10077 19547 Face 35250 10077 10059 19547 Face 35251 10059 10086 19547 Face 35252 10086 10092 19547 Face 35253 10086 10059 19548 Face 35254 10059 9998 19548 Face 35255 9998 10016 19548 Face 35256 10016 10086 19548 Face 35257 10016 9998 19549 Face 35258 9998 9890 19549 Face 35259 9890 9909 19549 Face 35260 9909 10016 19549 Face 35261 9909 9890 19550 Face 35262 9890 9614 19550 Face 35263 9614 9628 19550 Face 35264 9628 9909 19550 Face 35265 9628 9614 19551 Face 35266 9614 9448 19551 Face 35267 9448 9443 19551 Face 35268 9443 9628 19551 Face 35269 9443 9448 19552 Face 35270 9448 9377 19552 Face 35271 9377 9369 19552 Face 35272 9369 9443 19552 Face 35273 7777 9888 19553 Face 35274 9888 9734 19553 Face 35275 9734 7735 19553 Face 35276 7735 7777 19553 Face 35277 9433 8025 19554 Face 35278 8025 7740 19554 Face 35279 7740 9545 19554 Face 35280 9545 9433 19554 Face 35281 10026 9966 19555 Face 35282 9966 7978 19555 Face 35283 7978 8447 19555 Face 35284 8447 10026 19555 Face 35285 9377 10059 19556 Face 35286 10059 10077 19556 Face 35287 10077 9123 19556 Face 35288 9123 9377 19556 Face 35289 9369 9081 19557 Face 35290 9081 9144 19557 Face 35291 9144 9380 19557 Face 35292 9380 9369 19557 Face 35293 7578 7859 19558 Face 35294 7859 7935 19558 Face 35295 7935 7669 19558 Face 35296 7669 7578 19558 Face 35297 8438 7937 19559 Face 35298 7937 8002 19559 Face 35299 8002 8474 19559 Face 35300 8474 8438 19559 Face 35301 7682 7587 19560 Face 35302 7587 7701 19560 Face 35303 7701 7774 19560 Face 35304 7774 7682 19560 Face 35305 8679 9317 19561 Face 35306 9317 9319 19561 Face 35307 9319 8703 19561 Face 35308 8703 8679 19561 Face 35309 9435 9554 19562 Face 35310 9554 9538 19562 Face 35311 9538 9419 19562 Face 35312 9419 9435 19562 Face 35313 9772 9920 19563 Face 35314 9920 9883 19563 Face 35315 9883 9723 19563 Face 35316 9723 9772 19563 Face 35317 9983 10046 19564 Face 35318 10046 10018 19564 Face 35319 10018 9962 19564 Face 35320 9962 9983 19564 Face 35321 9628 9443 19565 Face 35322 9443 9452 19565 Face 35323 9452 9630 19565 Face 35324 9630 9628 19565 Face 35325 10016 9909 19566 Face 35326 9909 9904 19566 Face 35327 9904 10008 19566 Face 35328 10008 10016 19566 Face 35329 10092 10086 19567 Face 35330 10086 10064 19567 Face 35331 10064 10072 19567 Face 35332 10072 10092 19567 Face 35333 7935 7859 19568 Face 35334 7859 8679 19568 Face 35335 8679 8703 19568 Face 35336 8703 7935 19568 Face 35337 7701 7587 19569 Face 35338 7587 7578 19569 Face 35339 7578 7669 19569 Face 35340 7669 7701 19569 Face 35341 8002 7937 19570 Face 35342 7937 7682 19570 Face 35343 7682 7774 19570 Face 35344 7774 8002 19570 Face 35345 9144 9081 19571 Face 35346 9081 8438 19571 Face 35347 8438 8474 19571 Face 35348 8474 9144 19571 Face 35349 9452 9443 19572 Face 35350 9443 9369 19572 Face 35351 9369 9380 19572 Face 35352 9380 9452 19572 Face 35353 9904 9909 19573 Face 35354 9909 9628 19573 Face 35355 9628 9630 19573 Face 35356 9630 9904 19573 Face 35357 10064 10086 19574 Face 35358 10086 10016 19574 Face 35359 10016 10008 19574 Face 35360 10008 10064 19574 Face 35361 10018 10046 19575 Face 35362 10046 10092 19575 Face 35363 10092 10072 19575 Face 35364 10072 10018 19575 Face 35365 9883 9920 19576 Face 35366 9920 9983 19576 Face 35367 9983 9962 19576 Face 35368 9962 9883 19576 Face 35369 9538 9554 19577 Face 35370 9554 9772 19577 Face 35371 9772 9723 19577 Face 35372 9723 9538 19577 Face 35373 9319 9317 19578 Face 35374 9317 9435 19578 Face 35375 9435 9419 19578 Face 35376 9419 9319 19578 Face 35377 9890 9998 19579 Face 35378 9998 10059 19579 Face 35379 10059 9614 19579 Face 35380 9614 9890 19579 Face 35381 9966 9888 19580 Face 35382 9888 7777 19580 Face 35383 7777 7978 19580 Face 35384 7978 9966 19580 Face 35385 8447 9123 19581 Face 35386 9123 10077 19581 Face 35387 10077 10026 19581 Face 35388 10026 8447 19581 Face 35389 9433 9340 19582 Face 35390 9340 8912 19582 Face 35391 8912 8025 19582 Face 35392 8025 9433 19582 Face 35393 7744 7935 19583 Face 35394 7935 8703 19583 Face 35395 8703 9182 19583 Face 35396 9182 7744 19583 Face 35397 7964 7701 19584 Face 35398 7701 7669 19584 Face 35399 7669 7744 19584 Face 35400 7744 7964 19584 Face 35401 8997 8002 19585 Face 35402 8002 7774 19585 Face 35403 7774 7964 19585 Face 35404 7964 8997 19585 Face 35405 9385 9144 19586 Face 35406 9144 8474 19586 Face 35407 8474 8997 19586 Face 35408 8997 9385 19586 Face 35409 9495 9452 19587 Face 35410 9452 9380 19587 Face 35411 9380 9385 19587 Face 35412 9385 9495 19587 Face 35413 9812 9904 19588 Face 35414 9904 9630 19588 Face 35415 9630 9495 19588 Face 35416 9495 9812 19588 Face 35417 9881 10064 19589 Face 35418 10064 10008 19589 Face 35419 10008 9812 19589 Face 35420 9812 9881 19589 Face 35421 9886 10018 19590 Face 35422 10018 10072 19590 Face 35423 10072 9881 19590 Face 35424 9881 9886 19590 Face 35425 9701 9883 19591 Face 35426 9883 9962 19591 Face 35427 9962 9886 19591 Face 35428 9886 9701 19591 Face 35429 9451 9538 19592 Face 35430 9538 9723 19592 Face 35431 9723 9701 19592 Face 35432 9701 9451 19592 Face 35433 9182 9319 19593 Face 35434 9319 9419 19593 Face 35435 9419 9451 19593 Face 35436 9451 9182 19593 Face 35437 8501 7744 19594 Face 35438 7744 9182 19594 Face 35439 9182 9307 19594 Face 35440 9307 8501 19594 Face 35441 8534 7964 19595 Face 35442 7964 7744 19595 Face 35443 7744 8501 19595 Face 35444 8501 8534 19595 Face 35445 9237 8997 19596 Face 35446 8997 7964 19596 Face 35447 7964 8534 19596 Face 35448 8534 9237 19596 Face 35449 9389 9385 19597 Face 35450 9385 8997 19597 Face 35451 8997 9237 19597 Face 35452 9237 9389 19597 Face 35453 9469 9495 19598 Face 35454 9495 9385 19598 Face 35455 9385 9389 19598 Face 35456 9389 9469 19598 Face 35457 9746 9812 19599 Face 35458 9812 9495 19599 Face 35459 9495 9469 19599 Face 35460 9469 9746 19599 Face 35461 9817 9881 19600 Face 35462 9881 9812 19600 Face 35463 9812 9746 19600 Face 35464 9746 9817 19600 Face 35465 9797 9886 19601 Face 35466 9886 9881 19601 Face 35467 9881 9817 19601 Face 35468 9817 9797 19601 Face 35469 9639 9701 19602 Face 35470 9701 9886 19602 Face 35471 9886 9797 19602 Face 35472 9797 9639 19602 Face 35473 9439 9451 19603 Face 35474 9451 9701 19603 Face 35475 9701 9639 19603 Face 35476 9639 9439 19603 Face 35477 9307 9182 19604 Face 35478 9182 9451 19604 Face 35479 9451 9439 19604 Face 35480 9439 9307 19604 Face 35481 8494 8501 19605 Face 35482 8501 9307 19605 Face 35483 9307 9306 19605 Face 35484 9306 8494 19605 Face 35485 8526 8534 19606 Face 35486 8534 8501 19606 Face 35487 8501 8494 19606 Face 35488 8494 8526 19606 Face 35489 9236 9237 19607 Face 35490 9237 8534 19607 Face 35491 8534 8526 19607 Face 35492 8526 9236 19607 Face 35493 9388 9389 19608 Face 35494 9389 9237 19608 Face 35495 9237 9236 19608 Face 35496 9236 9388 19608 Face 35497 9468 9469 19609 Face 35498 9469 9389 19609 Face 35499 9389 9388 19609 Face 35500 9388 9468 19609 Face 35501 9745 9746 19610 Face 35502 9746 9469 19610 Face 35503 9469 9468 19610 Face 35504 9468 9745 19610 Face 35505 9816 9817 19611 Face 35506 9817 9746 19611 Face 35507 9746 9745 19611 Face 35508 9745 9816 19611 Face 35509 9795 9797 19612 Face 35510 9797 9817 19612 Face 35511 9817 9816 19612 Face 35512 9816 9795 19612 Face 35513 9638 9639 19613 Face 35514 9639 9797 19613 Face 35515 9797 9795 19613 Face 35516 9795 9638 19613 Face 35517 9438 9439 19614 Face 35518 9439 9639 19614 Face 35519 9639 9638 19614 Face 35520 9638 9438 19614 Face 35521 9306 9307 19615 Face 35522 9307 9439 19615 Face 35523 9439 9438 19615 Face 35524 9438 9306 19615 Face 35525 9774 9802 19616 Face 35526 9802 9901 19616 Face 35527 9901 9872 19616 Face 35528 9872 9774 19616 Face 35529 10039 10062 19617 Face 35530 10062 9938 19617 Face 35531 9938 9933 19617 Face 35532 9933 10039 19617 Face 35533 10165 10135 19618 Face 35534 10135 10119 19618 Face 35535 10119 10152 19618 Face 35536 10152 10165 19618 Face 35537 10062 10039 19619 Face 35538 10039 10135 19619 Face 35539 10135 10165 19619 Face 35540 10165 10062 19619 Face 35541 9760 9782 19620 Face 35542 9782 9933 19620 Face 35543 9933 9938 19620 Face 35544 9938 9760 19620 Face 35545 9588 9636 19621 Face 35546 9636 9782 19621 Face 35547 9782 9760 19621 Face 35548 9760 9588 19621 Face 35549 9513 9549 19622 Face 35550 9549 9636 19622 Face 35551 9636 9588 19622 Face 35552 9588 9513 19622 Face 35553 9467 9499 19623 Face 35554 9499 9482 19623 Face 35555 9482 9450 19623 Face 35556 9450 9467 19623 Face 35557 9424 9444 19624 Face 35558 9444 9499 19624 Face 35559 9499 9467 19624 Face 35560 9467 9424 19624 Face 35561 9091 9313 19625 Face 35562 9313 9444 19625 Face 35563 9444 9424 19625 Face 35564 9424 9091 19625 Face 35565 9426 9423 19626 Face 35566 9423 9168 19626 Face 35567 9168 8985 19626 Face 35568 8985 9426 19626 Face 35569 9543 9523 19627 Face 35570 9523 9423 19627 Face 35571 9423 9426 19627 Face 35572 9426 9543 19627 Face 35573 9692 9653 19628 Face 35574 9653 9523 19628 Face 35575 9523 9543 19628 Face 35576 9543 9692 19628 Face 35577 9943 9922 19629 Face 35578 9922 9872 19629 Face 35579 9872 9901 19629 Face 35580 9901 9943 19629 Face 35581 10031 9996 19630 Face 35582 9996 9922 19630 Face 35583 9922 9943 19630 Face 35584 9943 10031 19630 Face 35585 10152 10119 19631 Face 35586 10119 10088 19631 Face 35587 10088 10111 19631 Face 35588 10111 10152 19631 Face 35589 10080 10040 19632 Face 35590 10040 9996 19632 Face 35591 9996 10031 19632 Face 35592 10031 10080 19632 Face 35593 9450 9482 19633 Face 35594 9482 9460 19633 Face 35595 9460 9431 19633 Face 35596 9431 9450 19633 Face 35597 9477 9511 19634 Face 35598 9511 9549 19634 Face 35599 9549 9513 19634 Face 35600 9513 9477 19634 Face 35601 8985 9168 19635 Face 35602 9168 8583 19635 Face 35603 8583 8400 19635 Face 35604 8400 8985 19635 Face 35605 8400 8583 19636 Face 35606 8583 8832 19636 Face 35607 8832 8553 19636 Face 35608 8553 8400 19636 Face 35609 8494 9306 19637 Face 35610 9306 9283 19637 Face 35611 9283 8528 19637 Face 35612 8528 8494 19637 Face 35613 8428 9131 19638 Face 35614 9131 8810 19638 Face 35615 8810 8250 19638 Face 35616 8250 8428 19638 Face 35617 8250 8810 19639 Face 35618 8810 8740 19639 Face 35619 8740 8213 19639 Face 35620 8213 8250 19639 Face 35621 8213 8740 19640 Face 35622 8740 8891 19640 Face 35623 8891 8365 19640 Face 35624 8365 8213 19640 Face 35625 8365 8891 19641 Face 35626 8891 8985 19641 Face 35627 8985 8400 19641 Face 35628 8400 8365 19641 Face 35629 9423 9523 19642 Face 35630 9523 9653 19642 Face 35631 9653 9168 19642 Face 35632 9168 9423 19642 Face 35633 9934 9905 19643 Face 35634 9905 9895 19643 Face 35635 9895 9917 19643 Face 35636 9917 9934 19643 Face 35637 9444 9313 19644 Face 35638 9313 9774 19644 Face 35639 9774 9872 19644 Face 35640 9872 9444 19644 Face 35641 9438 9638 19645 Face 35642 9638 9587 19645 Face 35643 9587 9434 19645 Face 35644 9434 9438 19645 Face 35645 9638 9795 19646 Face 35646 9795 9807 19646 Face 35647 9807 9587 19646 Face 35648 9587 9638 19646 Face 35649 9795 9816 19647 Face 35650 9816 9832 19647 Face 35651 9832 9807 19647 Face 35652 9807 9795 19647 Face 35653 9816 9745 19648 Face 35654 9745 9765 19648 Face 35655 9765 9832 19648 Face 35656 9832 9816 19648 Face 35657 9745 9468 19649 Face 35658 9468 9455 19649 Face 35659 9455 9765 19649 Face 35660 9765 9745 19649 Face 35661 9468 9388 19650 Face 35662 9388 9379 19650 Face 35663 9379 9455 19650 Face 35664 9455 9468 19650 Face 35665 9388 9236 19651 Face 35666 9236 9247 19651 Face 35667 9247 9379 19651 Face 35668 9379 9388 19651 Face 35669 9236 8526 19652 Face 35670 8526 8524 19652 Face 35671 8524 9247 19652 Face 35672 9247 9236 19652 Face 35673 8526 8494 19653 Face 35674 8494 8528 19653 Face 35675 8528 8524 19653 Face 35676 8524 8526 19653 Face 35677 9306 9438 19654 Face 35678 9438 9434 19654 Face 35679 9434 9283 19654 Face 35680 9283 9306 19654 Face 35681 9462 9397 19655 Face 35682 9397 9421 19655 Face 35683 9421 9515 19655 Face 35684 9515 9462 19655 Face 35685 9862 9935 19656 Face 35686 9935 9917 19656 Face 35687 9917 9836 19656 Face 35688 9836 9862 19656 Face 35689 9449 9551 19657 Face 35690 9551 9515 19657 Face 35691 9515 9421 19657 Face 35692 9421 9449 19657 Face 35693 9515 9836 19658 Face 35694 9836 9794 19658 Face 35695 9794 9462 19658 Face 35696 9462 9515 19658 Face 35697 9551 9862 19659 Face 35698 9862 9836 19659 Face 35699 9836 9515 19659 Face 35700 9515 9551 19659 Face 35701 9836 9917 19660 Face 35702 9917 9895 19660 Face 35703 9895 9794 19660 Face 35704 9794 9836 19660 Face 35705 9545 7740 19661 Face 35706 7740 7735 19661 Face 35707 7735 9734 19661 Face 35708 9734 9545 19661 Face 35709 9404 8740 19662 Face 35710 8740 8810 19662 Face 35711 8810 9407 19662 Face 35712 9407 9404 19662 Face 35713 9561 9404 19663 Face 35714 9404 9407 19663 Face 35715 9407 9550 19663 Face 35716 9550 9561 19663 Face 35717 9733 9561 19664 Face 35718 9561 9550 19664 Face 35719 9550 9753 19664 Face 35720 9753 9733 19664 Face 35721 9923 9844 19665 Face 35722 9844 9854 19665 Face 35723 9854 9905 19665 Face 35724 9905 9923 19665 Face 35725 9954 9923 19666 Face 35726 9923 9905 19666 Face 35727 9905 9934 19666 Face 35728 9934 9954 19666 Face 35729 10035 9954 19667 Face 35730 9954 9934 19667 Face 35731 9934 9986 19667 Face 35732 9986 10035 19667 Face 35733 9550 9407 19668 Face 35734 9407 9422 19668 Face 35735 9422 9562 19668 Face 35736 9562 9550 19668 Face 35737 9887 9895 19669 Face 35738 9895 9905 19669 Face 35739 9905 9857 19669 Face 35740 9857 9887 19669 Face 35741 9421 9397 19670 Face 35742 9397 9390 19670 Face 35743 9390 9416 19670 Face 35744 9416 9421 19670 Face 35745 9095 9091 19671 Face 35746 9091 9424 19671 Face 35747 9424 9425 19671 Face 35748 9425 9095 19671 Face 35749 8829 9095 19672 Face 35750 9095 9425 19672 Face 35751 9425 9395 19672 Face 35752 9395 8829 19672 Face 35753 8855 8829 19673 Face 35754 8829 9395 19673 Face 35755 9395 9390 19673 Face 35756 9390 8855 19673 Face 35757 9947 9943 19674 Face 35758 9943 9901 19674 Face 35759 9901 9896 19674 Face 35760 9896 9947 19674 Face 35761 9954 9947 19675 Face 35762 9947 9896 19675 Face 35763 9896 9923 19675 Face 35764 9923 9954 19675 Face 35765 9589 9502 19676 Face 35766 9502 9500 19676 Face 35767 9500 9598 19676 Face 35768 9598 9589 19676 Face 35769 9565 9751 19677 Face 35770 9751 9675 19677 Face 35771 9675 9552 19677 Face 35772 9552 9565 19677 Face 35773 9565 9519 19678 Face 35774 9519 9612 19678 Face 35775 9612 9647 19678 Face 35776 9647 9565 19678 Face 35777 9425 9424 19679 Face 35778 9424 9467 19679 Face 35779 9467 9472 19679 Face 35780 9472 9425 19679 Face 35781 9395 9425 19680 Face 35782 9425 9472 19680 Face 35783 9472 9428 19680 Face 35784 9428 9395 19680 Face 35785 9390 9395 19681 Face 35786 9395 9428 19681 Face 35787 9428 9416 19681 Face 35788 9416 9390 19681 Face 35789 9472 9467 19682 Face 35790 9467 9450 19682 Face 35791 9450 9459 19682 Face 35792 9459 9472 19682 Face 35793 9428 9472 19683 Face 35794 9472 9459 19683 Face 35795 9459 9463 19683 Face 35796 9463 9428 19683 Face 35797 9416 9428 19684 Face 35798 9428 9463 19684 Face 35799 9463 9502 19684 Face 35800 9502 9416 19684 Face 35801 9459 9450 19685 Face 35802 9450 9431 19685 Face 35803 9431 9432 19685 Face 35804 9432 9459 19685 Face 35805 9463 9459 19686 Face 35806 9459 9432 19686 Face 35807 9432 9437 19686 Face 35808 9437 9463 19686 Face 35809 9502 9463 19687 Face 35810 9463 9437 19687 Face 35811 9437 9500 19687 Face 35812 9500 9502 19687 Face 35813 9583 9588 19688 Face 35814 9588 9760 19688 Face 35815 9760 9769 19688 Face 35816 9769 9583 19688 Face 35817 9612 9583 19689 Face 35818 9583 9769 19689 Face 35819 9769 9801 19689 Face 35820 9801 9612 19689 Face 35821 10038 10031 19690 Face 35822 10031 9943 19690 Face 35823 9943 9947 19690 Face 35824 9947 10038 19690 Face 35825 10035 10038 19691 Face 35826 10038 9947 19691 Face 35827 9947 9954 19691 Face 35828 9954 10035 19691 Face 35829 9889 9986 19692 Face 35830 9986 9935 19692 Face 35831 9935 9862 19692 Face 35832 9862 9889 19692 Face 35833 10010 10056 19693 Face 35834 10056 10138 19693 Face 35835 10138 10083 19693 Face 35836 10083 10010 19693 Face 35837 10082 10080 19694 Face 35838 10080 10031 19694 Face 35839 10031 10038 19694 Face 35840 10038 10082 19694 Face 35841 10055 10082 19695 Face 35842 10082 10038 19695 Face 35843 10038 10035 19695 Face 35844 10035 10055 19695 Face 35845 9993 10055 19696 Face 35846 10055 10035 19696 Face 35847 10035 9986 19696 Face 35848 9986 9993 19696 Face 35849 9879 9993 19697 Face 35850 9993 9986 19697 Face 35851 9986 9889 19697 Face 35852 9889 9879 19697 Face 35853 10151 10152 19698 Face 35854 10152 10111 19698 Face 35855 10111 10110 19698 Face 35856 10110 10151 19698 Face 35857 10127 10151 19699 Face 35858 10151 10110 19699 Face 35859 10110 10094 19699 Face 35860 10094 10127 19699 Face 35861 10073 10127 19700 Face 35862 10127 10094 19700 Face 35863 10094 10030 19700 Face 35864 10030 10073 19700 Face 35865 9951 10073 19701 Face 35866 10073 10030 19701 Face 35867 10030 9925 19701 Face 35868 9925 9951 19701 Face 35869 9589 9889 19702 Face 35870 9889 9862 19702 Face 35871 9862 9551 19702 Face 35872 9551 9589 19702 Face 35873 9544 9693 19703 Face 35874 9693 9692 19703 Face 35875 9692 9543 19703 Face 35876 9543 9544 19703 Face 35877 9583 9521 19704 Face 35878 9521 9513 19704 Face 35879 9513 9588 19704 Face 35880 9588 9583 19704 Face 35881 8891 9413 19705 Face 35882 9413 9426 19705 Face 35883 9426 8985 19705 Face 35884 8985 8891 19705 Face 35885 9519 9565 19706 Face 35886 9565 9552 19706 Face 35887 9552 9486 19706 Face 35888 9486 9519 19706 Face 35889 9407 8810 19707 Face 35890 8810 9131 19707 Face 35891 9131 9422 19707 Face 35892 9422 9407 19707 Face 35893 8365 8555 19708 Face 35894 8555 8325 19708 Face 35895 8325 8213 19708 Face 35896 8213 8365 19708 Face 35897 9693 9544 19709 Face 35898 9544 9561 19709 Face 35899 9561 9733 19709 Face 35900 9733 9693 19709 Face 35901 9486 9483 19710 Face 35902 9483 9521 19710 Face 35903 9521 9519 19710 Face 35904 9519 9486 19710 Face 35905 9863 9930 19711 Face 35906 9930 10056 19711 Face 35907 10056 10010 19711 Face 35908 10010 9863 19711 Face 35909 9513 9521 19712 Face 35910 9521 9483 19712 Face 35911 9483 9477 19712 Face 35912 9477 9513 19712 Face 35913 10161 10065 19713 Face 35914 10065 10062 19713 Face 35915 10062 10165 19713 Face 35916 10165 10161 19713 Face 35917 9598 9879 19714 Face 35918 9879 9889 19714 Face 35919 9889 9589 19714 Face 35920 9589 9598 19714 Face 35921 9751 9951 19715 Face 35922 9951 9925 19715 Face 35923 9925 9675 19715 Face 35924 9675 9751 19715 Face 35925 9413 9544 19716 Face 35926 9544 9543 19716 Face 35927 9543 9426 19716 Face 35928 9426 9413 19716 Face 35929 10151 10161 19717 Face 35930 10161 10165 19717 Face 35931 10165 10152 19717 Face 35932 10152 10151 19717 Face 35933 9948 9769 19718 Face 35934 9769 9760 19718 Face 35935 9760 9938 19718 Face 35936 9938 9948 19718 Face 35937 8555 8365 19719 Face 35938 8365 8400 19719 Face 35939 8400 8553 19719 Face 35940 8553 8555 19719 Face 35941 9612 9519 19720 Face 35942 9519 9521 19720 Face 35943 9521 9583 19720 Face 35944 9583 9612 19720 Face 35945 10056 10065 19721 Face 35946 10065 10161 19721 Face 35947 10161 10138 19721 Face 35948 10138 10056 19721 Face 35949 9948 10065 19722 Face 35950 10065 10056 19722 Face 35951 10056 9930 19722 Face 35952 9930 9948 19722 Face 35953 9612 9801 19723 Face 35954 9801 9863 19723 Face 35955 9863 9647 19723 Face 35956 9647 9612 19723 Face 35957 9923 9896 19724 Face 35958 9896 9805 19724 Face 35959 9805 9844 19724 Face 35960 9844 9923 19724 Face 35961 9544 9413 19725 Face 35962 9413 9404 19725 Face 35963 9404 9561 19725 Face 35964 9561 9544 19725 Face 35965 9404 9413 19726 Face 35966 9413 8891 19726 Face 35967 8891 8740 19726 Face 35968 8740 9404 19726 Face 35969 8213 8325 19727 Face 35970 8325 8359 19727 Face 35971 8359 8250 19727 Face 35972 8250 8213 19727 Face 35973 10073 10083 19728 Face 35974 10083 10138 19728 Face 35975 10138 10127 19728 Face 35976 10127 10073 19728 Face 35977 9769 9948 19729 Face 35978 9948 9930 19729 Face 35979 9930 9801 19729 Face 35980 9801 9769 19729 Face 35981 10065 9948 19730 Face 35982 9948 9938 19730 Face 35983 9938 10062 19730 Face 35984 10062 10065 19730 Face 35985 9802 9805 19731 Face 35986 9805 9896 19731 Face 35987 9896 9901 19731 Face 35988 9901 9802 19731 Face 35989 10127 10138 19732 Face 35990 10138 10161 19732 Face 35991 10161 10151 19732 Face 35992 10151 10127 19732 Face 35993 9951 9751 19733 Face 35994 9751 9863 19733 Face 35995 9863 10010 19733 Face 35996 10010 9951 19733 Face 35997 1563 1005 19734 Face 35998 1005 1173 19734 Face 35999 1173 1546 19734 Face 36000 1546 1563 19734 Face 36001 1047 1155 19735 Face 36002 1155 1668 19735 Face 36003 1668 986 19735 Face 36004 986 1047 19735 Face 36005 1522 1622 19736 Face 36006 1622 2211 19736 Face 36007 2211 1392 19736 Face 36008 1392 1522 19736 Face 36009 1006 910 19737 Face 36010 910 957 19737 Face 36011 957 1112 19737 Face 36012 1112 1006 19737 Face 36013 1263 1112 19738 Face 36014 1112 957 19738 Face 36015 957 1409 19738 Face 36016 1409 1263 19738 Face 36017 1496 1409 19739 Face 36018 1409 957 19739 Face 36019 957 1534 19739 Face 36020 1534 1496 19739 Face 36021 1049 1123 19740 Face 36022 1123 1173 19740 Face 36023 1173 1005 19740 Face 36024 1005 1049 19740 Face 36025 990 1036 19741 Face 36026 1036 1082 19741 Face 36027 1082 1052 19741 Face 36028 1052 990 19741 Face 36029 1052 1082 19742 Face 36030 1082 1178 19742 Face 36031 1178 1166 19742 Face 36032 1166 1052 19742 Face 36033 1166 1178 19743 Face 36034 1178 1443 19743 Face 36035 1443 1447 19743 Face 36036 1447 1166 19743 Face 36037 1447 1443 19744 Face 36038 1443 1519 19744 Face 36039 1519 1545 19744 Face 36040 1545 1447 19744 Face 36041 1545 1519 19745 Face 36042 1519 1553 19745 Face 36043 1553 1608 19745 Face 36044 1608 1545 19745 Face 36045 1608 1553 19746 Face 36046 1553 1557 19746 Face 36047 1557 1613 19746 Face 36048 1613 1608 19746 Face 36049 1613 1557 19747 Face 36050 1557 1567 19747 Face 36051 1567 1614 19747 Face 36052 1614 1613 19747 Face 36053 1585 1584 19748 Face 36054 1584 1002 19748 Face 36055 1002 1005 19748 Face 36056 1005 1585 19748 Face 36057 965 1016 19749 Face 36058 1016 1017 19749 Face 36059 1017 963 19749 Face 36060 963 965 19749 Face 36061 963 1017 19750 Face 36062 1017 1036 19750 Face 36063 1036 990 19750 Face 36064 990 963 19750 Face 36065 935 971 19751 Face 36066 971 966 19751 Face 36067 966 934 19751 Face 36068 934 935 19751 Face 36069 957 955 19752 Face 36070 955 1533 19752 Face 36071 1533 1534 19752 Face 36072 1534 957 19752 Face 36073 1568 1520 19753 Face 36074 1520 1517 19753 Face 36075 1517 1562 19753 Face 36076 1562 1568 19753 Face 36077 1562 1517 19754 Face 36078 1517 1521 19754 Face 36079 1521 1559 19754 Face 36080 1559 1562 19754 Face 36081 1559 1521 19755 Face 36082 1521 1478 19755 Face 36083 1478 1493 19755 Face 36084 1493 1559 19755 Face 36085 1493 1478 19756 Face 36086 1478 1366 19756 Face 36087 1366 1370 19756 Face 36088 1370 1493 19756 Face 36089 1370 1366 19757 Face 36090 1366 1135 19757 Face 36091 1135 1120 19757 Face 36092 1120 1370 19757 Face 36093 1120 1135 19758 Face 36094 1135 1048 19758 Face 36095 1048 1015 19758 Face 36096 1015 1120 19758 Face 36097 1015 1048 19759 Face 36098 1048 995 19759 Face 36099 995 951 19759 Face 36100 951 1015 19759 Face 36101 951 995 19760 Face 36102 995 971 19760 Face 36103 971 935 19760 Face 36104 935 951 19760 Face 36105 1280 1332 19761 Face 36106 1332 1598 19761 Face 36107 1598 1590 19761 Face 36108 1590 1280 19761 Face 36109 1590 1598 19762 Face 36110 1598 1649 19762 Face 36111 1649 1666 19762 Face 36112 1666 1590 19762 Face 36113 1666 1649 19763 Face 36114 1649 1702 19763 Face 36115 1702 1798 19763 Face 36116 1798 1666 19763 Face 36117 1798 1702 19764 Face 36118 1702 2025 19764 Face 36119 2025 2479 19764 Face 36120 2479 1798 19764 Face 36121 2479 2025 19765 Face 36122 2025 2082 19765 Face 36123 2082 2517 19765 Face 36124 2517 2479 19765 Face 36125 2517 2082 19766 Face 36126 2082 1686 19766 Face 36127 1686 1762 19766 Face 36128 1762 2517 19766 Face 36129 1762 1686 19767 Face 36130 1686 1615 19767 Face 36131 1615 1611 19767 Face 36132 1611 1762 19767 Face 36133 1611 1615 19768 Face 36134 1615 1489 19768 Face 36135 1489 1458 19768 Face 36136 1458 1611 19768 Face 36137 1458 1489 19769 Face 36138 1489 1329 19769 Face 36139 1329 1267 19769 Face 36140 1267 1458 19769 Face 36141 1267 1329 19770 Face 36142 1329 1305 19770 Face 36143 1305 1238 19770 Face 36144 1238 1267 19770 Face 36145 1238 1305 19771 Face 36146 1305 1270 19771 Face 36147 1270 1213 19771 Face 36148 1213 1238 19771 Face 36149 1213 1270 19772 Face 36150 1270 1332 19772 Face 36151 1332 1280 19772 Face 36152 1280 1213 19772 Face 36153 2718 2397 19773 Face 36154 2397 2044 19773 Face 36155 2044 2491 19773 Face 36156 2491 2718 19773 Face 36157 2491 2044 19774 Face 36158 2044 2149 19774 Face 36159 2149 2493 19774 Face 36160 2493 2491 19774 Face 36161 2493 2149 19775 Face 36162 2149 1880 19775 Face 36163 1880 2211 19775 Face 36164 2211 2493 19775 Face 36165 2211 1880 19776 Face 36166 1880 1419 19776 Face 36167 1419 1392 19776 Face 36168 1392 2211 19776 Face 36169 1392 1419 19777 Face 36170 1419 1412 19777 Face 36171 1412 1353 19777 Face 36172 1353 1392 19777 Face 36173 1353 1412 19778 Face 36174 1412 1413 19778 Face 36175 1413 1352 19778 Face 36176 1352 1353 19778 Face 36177 1352 1413 19779 Face 36178 1413 1365 19779 Face 36179 1365 1312 19779 Face 36180 1312 1352 19779 Face 36181 1312 1365 19780 Face 36182 1365 1350 19780 Face 36183 1350 1292 19780 Face 36184 1292 1312 19780 Face 36185 1292 1350 19781 Face 36186 1350 1503 19781 Face 36187 1503 1483 19781 Face 36188 1483 1292 19781 Face 36189 1483 1503 19782 Face 36190 1503 1628 19782 Face 36191 1628 1623 19782 Face 36192 1623 1483 19782 Face 36193 1623 1628 19783 Face 36194 1628 1707 19783 Face 36195 1707 1914 19783 Face 36196 1914 1623 19783 Face 36197 1914 1707 19784 Face 36198 1707 2232 19784 Face 36199 2232 2621 19784 Face 36200 2621 1914 19784 Face 36201 2621 2232 19785 Face 36202 2232 2311 19785 Face 36203 2311 2688 19785 Face 36204 2688 2621 19785 Face 36205 2688 2311 19786 Face 36206 2311 2397 19786 Face 36207 2397 2718 19786 Face 36208 2718 2688 19786 Face 36209 2188 1774 19787 Face 36210 1774 1712 19787 Face 36211 1712 2015 19787 Face 36212 2015 2188 19787 Face 36213 2015 1712 19788 Face 36214 1712 1669 19788 Face 36215 1669 1699 19788 Face 36216 1699 2015 19788 Face 36217 1699 1669 19789 Face 36218 1669 1637 19789 Face 36219 1637 1648 19789 Face 36220 1648 1699 19789 Face 36221 1648 1637 19790 Face 36222 1637 1589 19790 Face 36223 1589 1583 19790 Face 36224 1583 1648 19790 Face 36225 1583 1589 19791 Face 36226 1589 1304 19791 Face 36227 1304 1251 19791 Face 36228 1251 1583 19791 Face 36229 1251 1304 19792 Face 36230 1304 1206 19792 Face 36231 1206 1158 19792 Face 36232 1158 1251 19792 Face 36233 1158 1206 19793 Face 36234 1206 1242 19793 Face 36235 1242 1188 19793 Face 36236 1188 1158 19793 Face 36237 1188 1242 19794 Face 36238 1242 1239 19794 Face 36239 1239 1191 19794 Face 36240 1191 1188 19794 Face 36241 1191 1239 19795 Face 36242 1239 1252 19795 Face 36243 1252 1201 19795 Face 36244 1201 1191 19795 Face 36245 1201 1252 19796 Face 36246 1252 1307 19796 Face 36247 1307 1240 19796 Face 36248 1240 1201 19796 Face 36249 1240 1307 19797 Face 36250 1307 1306 19797 Face 36251 1306 1243 19797 Face 36252 1243 1240 19797 Face 36253 1243 1306 19798 Face 36254 1306 1316 19798 Face 36255 1316 1271 19798 Face 36256 1271 1243 19798 Face 36257 1271 1316 19799 Face 36258 1316 1685 19799 Face 36259 1685 1732 19799 Face 36260 1732 1271 19799 Face 36261 1732 1685 19800 Face 36262 1685 1737 19800 Face 36263 1737 1954 19800 Face 36264 1954 1732 19800 Face 36265 1954 1737 19801 Face 36266 1737 1708 19801 Face 36267 1708 1950 19801 Face 36268 1950 1954 19801 Face 36269 1950 1708 19802 Face 36270 1708 1780 19802 Face 36271 1780 2214 19802 Face 36272 2214 1950 19802 Face 36273 2214 1780 19803 Face 36274 1780 1774 19803 Face 36275 1774 2188 19803 Face 36276 2188 2214 19803 Face 36277 2366 2133 19804 Face 36278 2133 3009 19804 Face 36279 3009 3185 19804 Face 36280 3185 2366 19804 Face 36281 1728 1705 19805 Face 36282 1705 2133 19805 Face 36283 2133 2366 19805 Face 36284 2366 1728 19805 Face 36285 1610 1612 19806 Face 36286 1612 1705 19806 Face 36287 1705 1728 19806 Face 36288 1728 1610 19806 Face 36289 1612 1610 19807 Face 36290 1610 1491 19807 Face 36291 1491 1500 19807 Face 36292 1500 1612 19807 Face 36293 3185 3009 19808 Face 36294 3009 3302 19808 Face 36295 3302 3465 19808 Face 36296 3465 3185 19808 Face 36297 3465 3302 19809 Face 36298 3302 3309 19809 Face 36299 3309 3454 19809 Face 36300 3454 3465 19809 Face 36301 3269 3358 19810 Face 36302 3358 3454 19810 Face 36303 3454 3309 19810 Face 36304 3309 3269 19810 Face 36305 3358 3269 19811 Face 36306 3269 3059 19811 Face 36307 3059 3097 19811 Face 36308 3097 3358 19811 Face 36309 3097 3059 19812 Face 36310 3059 2600 19812 Face 36311 2600 2610 19812 Face 36312 2610 3097 19812 Face 36313 2610 2600 19813 Face 36314 2600 1922 19813 Face 36315 1922 1964 19813 Face 36316 1964 2610 19813 Face 36317 1273 1311 19814 Face 36318 1311 1500 19814 Face 36319 1500 1491 19814 Face 36320 1491 1273 19814 Face 36321 1125 1157 19815 Face 36322 1157 1311 19815 Face 36323 1311 1273 19815 Face 36324 1273 1125 19815 Face 36325 1062 1079 19816 Face 36326 1079 1157 19816 Face 36327 1157 1125 19816 Face 36328 1125 1062 19816 Face 36329 1079 1062 19817 Face 36330 1062 999 19817 Face 36331 999 1019 19817 Face 36332 1019 1079 19817 Face 36333 953 968 19818 Face 36334 968 1019 19818 Face 36335 1019 999 19818 Face 36336 999 953 19818 Face 36337 1668 1676 19819 Face 36338 1676 1964 19819 Face 36339 1964 1922 19819 Face 36340 1922 1668 19819 Face 36341 959 986 19820 Face 36342 986 968 19820 Face 36343 968 953 19820 Face 36344 953 959 19820 Face 36345 1029 1047 19821 Face 36346 1047 986 19821 Face 36347 986 959 19821 Face 36348 959 1029 19821 Face 36349 1136 1155 19822 Face 36350 1155 1047 19822 Face 36351 1047 1029 19822 Face 36352 1029 1136 19822 Face 36353 1417 1431 19823 Face 36354 1431 1155 19823 Face 36355 1155 1136 19823 Face 36356 1136 1417 19823 Face 36357 1602 1597 19824 Face 36358 1597 1431 19824 Face 36359 1431 1417 19824 Face 36360 1417 1602 19824 Face 36361 1676 1668 19825 Face 36362 1668 1597 19825 Face 36363 1597 1602 19825 Face 36364 1602 1676 19825 Face 36365 3309 1311 19826 Face 36366 1311 1157 19826 Face 36367 1157 3269 19826 Face 36368 3269 3309 19826 Face 36369 1500 3302 19827 Face 36370 3302 3009 19827 Face 36371 3009 1612 19827 Face 36372 1612 1500 19827 Face 36373 2600 3059 19828 Face 36374 3059 1079 19828 Face 36375 1079 1019 19828 Face 36376 1019 2600 19828 Face 36377 1922 968 19829 Face 36378 968 986 19829 Face 36379 986 1668 19829 Face 36380 1668 1922 19829 Face 36381 1665 1901 19830 Face 36382 1901 1964 19830 Face 36383 1964 1676 19830 Face 36384 1676 1665 19830 Face 36385 3373 3100 19831 Face 36386 3100 3185 19831 Face 36387 3185 3465 19831 Face 36388 3465 3373 19831 Face 36389 2574 3029 19832 Face 36390 3029 3097 19832 Face 36391 3097 2610 19832 Face 36392 2610 2574 19832 Face 36393 3271 3342 19833 Face 36394 3342 3454 19833 Face 36395 3454 3358 19833 Face 36396 3358 3271 19833 Face 36397 2343 1726 19834 Face 36398 1726 1728 19834 Face 36399 1728 2366 19834 Face 36400 2366 2343 19834 Face 36401 1626 1507 19835 Face 36402 1507 1491 19835 Face 36403 1491 1610 19835 Face 36404 1610 1626 19835 Face 36405 1322 1162 19836 Face 36406 1162 1125 19836 Face 36407 1125 1273 19836 Face 36408 1273 1322 19836 Face 36409 1083 1027 19837 Face 36410 1027 999 19837 Face 36411 999 1062 19837 Face 36412 1062 1083 19837 Face 36413 1415 1593 19838 Face 36414 1593 1602 19838 Face 36415 1602 1417 19838 Face 36416 1417 1415 19838 Face 36417 1037 1141 19839 Face 36418 1141 1136 19839 Face 36419 1136 1029 19839 Face 36420 1029 1037 19839 Face 36421 973 981 19840 Face 36422 981 959 19840 Face 36423 959 953 19840 Face 36424 953 973 19840 Face 36425 2343 2366 19841 Face 36426 2366 3185 19841 Face 36427 3185 3100 19841 Face 36428 3100 2343 19841 Face 36429 3373 3465 19842 Face 36430 3465 3454 19842 Face 36431 3454 3342 19842 Face 36432 3342 3373 19842 Face 36433 3271 3358 19843 Face 36434 3358 3097 19843 Face 36435 3097 3029 19843 Face 36436 3029 3271 19843 Face 36437 2574 2610 19844 Face 36438 2610 1964 19844 Face 36439 1964 1901 19844 Face 36440 1901 2574 19844 Face 36441 1665 1676 19845 Face 36442 1676 1602 19845 Face 36443 1602 1593 19845 Face 36444 1593 1665 19845 Face 36445 1415 1417 19846 Face 36446 1417 1136 19846 Face 36447 1136 1141 19846 Face 36448 1141 1415 19846 Face 36449 1037 1029 19847 Face 36450 1029 959 19847 Face 36451 959 981 19847 Face 36452 981 1037 19847 Face 36453 973 953 19848 Face 36454 953 999 19848 Face 36455 999 1027 19848 Face 36456 1027 973 19848 Face 36457 1083 1062 19849 Face 36458 1062 1125 19849 Face 36459 1125 1162 19849 Face 36460 1162 1083 19849 Face 36461 1322 1273 19850 Face 36462 1273 1491 19850 Face 36463 1491 1507 19850 Face 36464 1507 1322 19850 Face 36465 1626 1610 19851 Face 36466 1610 1728 19851 Face 36467 1728 1726 19851 Face 36468 1726 1626 19851 Face 36469 1431 1597 19852 Face 36470 1597 1668 19852 Face 36471 1668 1155 19852 Face 36472 1155 1431 19852 Face 36473 3059 3269 19853 Face 36474 3269 1157 19853 Face 36475 1157 1079 19853 Face 36476 1079 3059 19853 Face 36477 1019 968 19854 Face 36478 968 1922 19854 Face 36479 1922 2600 19854 Face 36480 2600 1019 19854 Face 36481 3009 2133 19855 Face 36482 2133 1705 19855 Face 36483 1705 1612 19855 Face 36484 1612 3009 19855 Face 36485 1863 2343 19856 Face 36486 2343 3100 19856 Face 36487 3100 3301 19856 Face 36488 3301 1863 19856 Face 36489 3301 3373 19857 Face 36490 3373 3342 19857 Face 36491 3342 3074 19857 Face 36492 3074 3301 19857 Face 36493 3074 3271 19858 Face 36494 3271 3029 19858 Face 36495 3029 2048 19858 Face 36496 2048 3074 19858 Face 36497 2048 2574 19859 Face 36498 2574 1901 19859 Face 36499 1901 1660 19859 Face 36500 1660 2048 19859 Face 36501 1660 1665 19860 Face 36502 1665 1593 19860 Face 36503 1593 1550 19860 Face 36504 1550 1660 19860 Face 36505 1550 1415 19861 Face 36506 1415 1141 19861 Face 36507 1141 1233 19861 Face 36508 1233 1550 19861 Face 36509 1233 1037 19862 Face 36510 1037 981 19862 Face 36511 981 1164 19862 Face 36512 1164 1233 19862 Face 36513 1164 973 19863 Face 36514 973 1027 19863 Face 36515 1027 1159 19863 Face 36516 1159 1164 19863 Face 36517 1159 1083 19864 Face 36518 1083 1162 19864 Face 36519 1162 1344 19864 Face 36520 1344 1159 19864 Face 36521 1344 1322 19865 Face 36522 1322 1507 19865 Face 36523 1507 1594 19865 Face 36524 1594 1344 19865 Face 36525 1594 1626 19866 Face 36526 1626 1726 19866 Face 36527 1726 1863 19866 Face 36528 1863 1594 19866 Face 36529 1738 1863 19867 Face 36530 1863 3301 19867 Face 36531 3301 2545 19867 Face 36532 2545 1738 19867 Face 36533 2545 3301 19868 Face 36534 3301 3074 19868 Face 36535 3074 2511 19868 Face 36536 2511 2545 19868 Face 36537 2511 3074 19869 Face 36538 3074 2048 19869 Face 36539 2048 1808 19869 Face 36540 1808 2511 19869 Face 36541 1808 2048 19870 Face 36542 2048 1660 19870 Face 36543 1660 1656 19870 Face 36544 1656 1808 19870 Face 36545 1656 1660 19871 Face 36546 1660 1550 19871 Face 36547 1550 1576 19871 Face 36548 1576 1656 19871 Face 36549 1576 1550 19872 Face 36550 1550 1233 19872 Face 36551 1233 1299 19872 Face 36552 1299 1576 19872 Face 36553 1299 1233 19873 Face 36554 1233 1164 19873 Face 36555 1164 1228 19873 Face 36556 1228 1299 19873 Face 36557 1228 1164 19874 Face 36558 1164 1159 19874 Face 36559 1159 1248 19874 Face 36560 1248 1228 19874 Face 36561 1248 1159 19875 Face 36562 1159 1344 19875 Face 36563 1344 1406 19875 Face 36564 1406 1248 19875 Face 36565 1406 1344 19876 Face 36566 1344 1594 19876 Face 36567 1594 1606 19876 Face 36568 1606 1406 19876 Face 36569 1606 1594 19877 Face 36570 1594 1863 19877 Face 36571 1863 1738 19877 Face 36572 1738 1606 19877 Face 36573 1739 1738 19878 Face 36574 1738 2545 19878 Face 36575 2545 2551 19878 Face 36576 2551 1739 19878 Face 36577 2551 2545 19879 Face 36578 2545 2511 19879 Face 36579 2511 2519 19879 Face 36580 2519 2551 19879 Face 36581 2519 2511 19880 Face 36582 2511 1808 19880 Face 36583 1808 1809 19880 Face 36584 1809 2519 19880 Face 36585 1809 1808 19881 Face 36586 1808 1656 19881 Face 36587 1656 1657 19881 Face 36588 1657 1809 19881 Face 36589 1657 1656 19882 Face 36590 1656 1576 19882 Face 36591 1576 1577 19882 Face 36592 1577 1657 19882 Face 36593 1577 1576 19883 Face 36594 1576 1299 19883 Face 36595 1299 1300 19883 Face 36596 1300 1577 19883 Face 36597 1300 1299 19884 Face 36598 1299 1228 19884 Face 36599 1228 1229 19884 Face 36600 1229 1300 19884 Face 36601 1229 1228 19885 Face 36602 1228 1248 19885 Face 36603 1248 1250 19885 Face 36604 1250 1229 19885 Face 36605 1250 1248 19886 Face 36606 1248 1406 19886 Face 36607 1406 1407 19886 Face 36608 1407 1250 19886 Face 36609 1407 1406 19887 Face 36610 1406 1606 19887 Face 36611 1606 1607 19887 Face 36612 1607 1407 19887 Face 36613 1607 1606 19888 Face 36614 1606 1738 19888 Face 36615 1738 1739 19888 Face 36616 1739 1607 19888 Face 36617 1173 1144 19889 Face 36618 1144 1243 19889 Face 36619 1243 1271 19889 Face 36620 1271 1173 19889 Face 36621 1112 1107 19890 Face 36622 1107 983 19890 Face 36623 983 1006 19890 Face 36624 1006 1112 19890 Face 36625 1880 2149 19891 Face 36626 2149 1737 19891 Face 36627 1737 1685 19891 Face 36628 1685 1880 19891 Face 36629 893 926 19892 Face 36630 926 910 19892 Face 36631 910 880 19892 Face 36632 880 893 19892 Face 36633 880 910 19893 Face 36634 910 1006 19893 Face 36635 1006 983 19893 Face 36636 983 880 19893 Face 36637 1107 1112 19894 Face 36638 1112 1263 19894 Face 36639 1263 1285 19894 Face 36640 1285 1107 19894 Face 36641 1285 1263 19895 Face 36642 1263 1409 19895 Face 36643 1409 1457 19895 Face 36644 1457 1285 19895 Face 36645 1457 1409 19896 Face 36646 1409 1496 19896 Face 36647 1496 1532 19896 Face 36648 1532 1457 19896 Face 36649 1595 1563 19897 Face 36650 1563 1546 19897 Face 36651 1546 1578 19897 Face 36652 1578 1595 19897 Face 36653 1578 1546 19898 Face 36654 1546 1601 19898 Face 36655 1601 1621 19898 Face 36656 1621 1578 19898 Face 36657 1621 1601 19899 Face 36658 1601 1732 19899 Face 36659 1732 1954 19899 Face 36660 1954 1621 19899 Face 36661 2060 1877 19900 Face 36662 1877 1622 19900 Face 36663 1622 1619 19900 Face 36664 1619 2060 19900 Face 36665 1619 1622 19901 Face 36666 1622 1522 19901 Face 36667 1522 1502 19901 Face 36668 1502 1619 19901 Face 36669 1502 1522 19902 Face 36670 1522 1392 19902 Face 36671 1392 1353 19902 Face 36672 1353 1502 19902 Face 36673 1412 1419 19903 Face 36674 1419 1316 19903 Face 36675 1316 1306 19903 Face 36676 1306 1412 19903 Face 36677 1144 1173 19904 Face 36678 1173 1123 19904 Face 36679 1123 1102 19904 Face 36680 1102 1144 19904 Face 36681 1102 1123 19905 Face 36682 1123 1049 19905 Face 36683 1049 1014 19905 Face 36684 1014 1102 19905 Face 36685 934 957 19906 Face 36686 957 926 19906 Face 36687 926 893 19906 Face 36688 893 934 19906 Face 36689 1014 1049 19907 Face 36690 1049 1005 19907 Face 36691 1005 965 19907 Face 36692 965 1014 19907 Face 36693 1016 1002 19908 Face 36694 1002 955 19908 Face 36695 955 966 19908 Face 36696 966 1016 19908 Face 36697 1614 1585 19909 Face 36698 1585 1563 19909 Face 36699 1563 1595 19909 Face 36700 1595 1614 19909 Face 36701 1532 1496 19910 Face 36702 1496 1534 19910 Face 36703 1534 1568 19910 Face 36704 1568 1532 19910 Face 36705 1520 1533 19911 Face 36706 1533 1584 19911 Face 36707 1584 1567 19911 Face 36708 1567 1520 19911 Face 36709 2648 2461 19912 Face 36710 2461 1877 19912 Face 36711 1877 2060 19912 Face 36712 2060 2648 19912 Face 36713 2493 2211 19913 Face 36714 2211 2461 19913 Face 36715 2461 2648 19913 Face 36716 2648 2493 19913 Face 36717 1702 1649 19914 Face 36718 1649 1637 19914 Face 36719 1637 1669 19914 Face 36720 1669 1702 19914 Face 36721 2517 1762 19915 Face 36722 1762 1739 19915 Face 36723 1739 2551 19915 Face 36724 2551 2517 19915 Face 36725 2232 1707 19916 Face 36726 1707 1686 19916 Face 36727 1686 2082 19916 Face 36728 2082 2232 19916 Face 36729 2795 2234 19917 Face 36730 2234 1914 19917 Face 36731 1914 2621 19917 Face 36732 2621 2795 19917 Face 36733 2830 2304 19918 Face 36734 2304 2234 19918 Face 36735 2234 2795 19918 Face 36736 2795 2830 19918 Face 36737 2684 2154 19919 Face 36738 2154 2304 19919 Face 36739 2304 2830 19919 Face 36740 2830 2684 19919 Face 36741 2648 2060 19920 Face 36742 2060 2154 19920 Face 36743 2154 2684 19920 Face 36744 2684 2648 19920 Face 36745 1316 1419 19921 Face 36746 1419 1880 19921 Face 36747 1880 1685 19921 Face 36748 1685 1316 19921 Face 36749 1877 2461 19922 Face 36750 2461 2211 19922 Face 36751 2211 1622 19922 Face 36752 1622 1877 19922 Face 36753 1128 1150 19923 Face 36754 1150 1140 19923 Face 36755 1140 1111 19923 Face 36756 1111 1128 19923 Face 36757 1173 1271 19924 Face 36758 1271 1732 19924 Face 36759 1732 1601 19924 Face 36760 1601 1173 19924 Face 36761 1557 1517 19925 Face 36762 1517 1520 19925 Face 36763 1520 1567 19925 Face 36764 1567 1557 19925 Face 36765 1553 1521 19926 Face 36766 1521 1517 19926 Face 36767 1517 1557 19926 Face 36768 1557 1553 19926 Face 36769 1519 1478 19927 Face 36770 1478 1521 19927 Face 36771 1521 1553 19927 Face 36772 1553 1519 19927 Face 36773 1366 1478 19928 Face 36774 1478 1519 19928 Face 36775 1519 1443 19928 Face 36776 1443 1366 19928 Face 36777 1178 1135 19929 Face 36778 1135 1366 19929 Face 36779 1366 1443 19929 Face 36780 1443 1178 19929 Face 36781 1082 1048 19930 Face 36782 1048 1135 19930 Face 36783 1135 1178 19930 Face 36784 1178 1082 19930 Face 36785 1036 995 19931 Face 36786 995 1048 19931 Face 36787 1048 1082 19931 Face 36788 1082 1036 19931 Face 36789 1017 971 19932 Face 36790 971 995 19932 Face 36791 995 1036 19932 Face 36792 1036 1017 19932 Face 36793 1016 966 19933 Face 36794 966 971 19933 Face 36795 971 1017 19933 Face 36796 1017 1016 19933 Face 36797 1611 1458 19934 Face 36798 1458 1407 19934 Face 36799 1407 1607 19934 Face 36800 1607 1611 19934 Face 36801 1458 1238 19935 Face 36802 1238 1250 19935 Face 36803 1250 1407 19935 Face 36804 1407 1458 19935 Face 36805 1238 1213 19936 Face 36806 1213 1229 19936 Face 36807 1229 1250 19936 Face 36808 1250 1238 19936 Face 36809 1213 1280 19937 Face 36810 1280 1300 19937 Face 36811 1300 1229 19937 Face 36812 1229 1213 19937 Face 36813 1280 1590 19938 Face 36814 1590 1577 19938 Face 36815 1577 1300 19938 Face 36816 1300 1280 19938 Face 36817 1590 1666 19939 Face 36818 1666 1657 19939 Face 36819 1657 1577 19939 Face 36820 1577 1590 19939 Face 36821 1666 1798 19940 Face 36822 1798 1809 19940 Face 36823 1809 1657 19940 Face 36824 1657 1666 19940 Face 36825 1798 2521 19941 Face 36826 2521 2519 19941 Face 36827 2519 1809 19941 Face 36828 1809 1798 19941 Face 36829 2521 2517 19942 Face 36830 2517 2551 19942 Face 36831 2551 2519 19942 Face 36832 2519 2521 19942 Face 36833 1762 1611 19943 Face 36834 1611 1607 19943 Face 36835 1607 1739 19943 Face 36836 1739 1762 19943 Face 36837 1707 1628 19944 Face 36838 1628 1615 19944 Face 36839 1615 1686 19944 Face 36840 1686 1707 19944 Face 36841 1669 1712 19945 Face 36842 1712 2025 19945 Face 36843 2025 1702 19945 Face 36844 1702 1669 19945 Face 36845 1530 1624 19946 Face 36846 1624 1648 19946 Face 36847 1648 1583 19946 Face 36848 1583 1530 19946 Face 36849 1209 1128 19947 Face 36850 1128 1110 19947 Face 36851 1110 1183 19947 Face 36852 1183 1209 19947 Face 36853 1637 1649 19948 Face 36854 1649 1598 19948 Face 36855 1598 1589 19948 Face 36856 1589 1637 19948 Face 36857 1624 1530 19949 Face 36858 1530 1494 19949 Face 36859 1494 1596 19949 Face 36860 1596 1624 19949 Face 36861 1583 1251 19950 Face 36862 1251 1209 19950 Face 36863 1209 1530 19950 Face 36864 1530 1583 19950 Face 36865 1206 1270 19951 Face 36866 1270 1305 19951 Face 36867 1305 1242 19951 Face 36868 1242 1206 19951 Face 36869 1530 1209 19952 Face 36870 1209 1183 19952 Face 36871 1183 1494 19952 Face 36872 1494 1530 19952 Face 36873 1598 1332 19953 Face 36874 1332 1304 19953 Face 36875 1304 1589 19953 Face 36876 1589 1598 19953 Face 36877 1489 1615 19954 Face 36878 1615 1628 19954 Face 36879 1628 1503 19954 Face 36880 1503 1489 19954 Face 36881 1304 1332 19955 Face 36882 1332 1270 19955 Face 36883 1270 1206 19955 Face 36884 1206 1304 19955 Face 36885 1251 1150 19956 Face 36886 1150 1128 19956 Face 36887 1128 1209 19956 Face 36888 1209 1251 19956 Face 36889 1311 3309 19957 Face 36890 3309 3302 19957 Face 36891 3302 1500 19957 Face 36892 1500 1311 19957 Face 36893 1638 2234 19958 Face 36894 2234 2304 19958 Face 36895 2304 1641 19958 Face 36896 1641 1638 19958 Face 36897 1495 1638 19959 Face 36898 1638 1641 19959 Face 36899 1641 1484 19959 Face 36900 1484 1495 19959 Face 36901 1292 1495 19960 Face 36902 1495 1484 19960 Face 36903 1484 1312 19960 Face 36904 1312 1292 19960 Face 36905 1239 1350 19961 Face 36906 1350 1365 19961 Face 36907 1365 1252 19961 Face 36908 1252 1239 19961 Face 36909 1140 1191 19962 Face 36910 1191 1201 19962 Face 36911 1201 1122 19962 Face 36912 1122 1140 19962 Face 36913 1111 1140 19963 Face 36914 1140 1122 19963 Face 36915 1122 1091 19963 Face 36916 1091 1111 19963 Face 36917 1059 1111 19964 Face 36918 1111 1091 19964 Face 36919 1091 1010 19964 Face 36920 1010 1059 19964 Face 36921 1483 1623 19965 Face 36922 1623 1638 19965 Face 36923 1638 1495 19965 Face 36924 1495 1483 19965 Face 36925 1329 1489 19966 Face 36926 1489 1503 19966 Face 36927 1503 1350 19966 Face 36928 1350 1329 19966 Face 36929 1242 1329 19967 Face 36930 1329 1350 19967 Face 36931 1350 1239 19967 Face 36932 1239 1242 19967 Face 36933 1188 1140 19968 Face 36934 1140 1150 19968 Face 36935 1150 1158 19968 Face 36936 1158 1188 19968 Face 36937 2311 2232 19969 Face 36938 2232 2082 19969 Face 36939 2082 2025 19969 Face 36940 2025 2311 19969 Face 36941 1774 2311 19970 Face 36942 2311 2025 19970 Face 36943 2025 1712 19970 Face 36944 1712 1774 19970 Face 36945 1629 1655 19971 Face 36946 1655 1648 19971 Face 36947 1648 1624 19971 Face 36948 1624 1629 19971 Face 36949 1620 1621 19972 Face 36950 1621 1954 19972 Face 36951 1954 1950 19972 Face 36952 1950 1620 19972 Face 36953 1650 1620 19973 Face 36954 1620 1950 19973 Face 36955 1950 2214 19973 Face 36956 2214 1650 19973 Face 36957 1655 1650 19974 Face 36958 1650 2214 19974 Face 36959 2214 2188 19974 Face 36960 2188 1655 19974 Face 36961 1149 1144 19975 Face 36962 1144 1102 19975 Face 36963 1102 1098 19975 Face 36964 1098 1149 19975 Face 36965 1122 1149 19976 Face 36966 1149 1098 19976 Face 36967 1098 1091 19976 Face 36968 1091 1122 19976 Face 36969 1447 1545 19977 Face 36970 1545 1543 19977 Face 36971 1543 1456 19977 Face 36972 1456 1447 19977 Face 36973 1493 1370 19978 Face 36974 1370 1294 19978 Face 36975 1294 1480 19978 Face 36976 1480 1493 19978 Face 36977 1398 1433 19979 Face 36978 1433 1526 19979 Face 36979 1526 1480 19979 Face 36980 1480 1398 19979 Face 36981 1573 1578 19980 Face 36982 1578 1621 19980 Face 36983 1621 1620 19980 Face 36984 1620 1573 19980 Face 36985 1617 1573 19981 Face 36986 1573 1620 19981 Face 36987 1620 1650 19981 Face 36988 1650 1617 19981 Face 36989 1629 1617 19982 Face 36990 1617 1650 19982 Face 36991 1650 1655 19982 Face 36992 1655 1629 19982 Face 36993 1586 1595 19983 Face 36994 1595 1578 19983 Face 36995 1578 1573 19983 Face 36996 1573 1586 19983 Face 36997 1582 1586 19984 Face 36998 1586 1573 19984 Face 36999 1573 1617 19984 Face 37000 1617 1582 19984 Face 37001 1543 1582 19985 Face 37002 1582 1617 19985 Face 37003 1617 1629 19985 Face 37004 1629 1543 19985 Face 37005 1613 1614 19986 Face 37006 1614 1595 19986 Face 37007 1595 1586 19986 Face 37008 1586 1613 19986 Face 37009 1608 1613 19987 Face 37010 1613 1586 19987 Face 37011 1586 1582 19987 Face 37012 1582 1608 19987 Face 37013 1545 1608 19988 Face 37014 1608 1582 19988 Face 37015 1582 1543 19988 Face 37016 1543 1545 19988 Face 37017 1276 1285 19989 Face 37018 1285 1457 19989 Face 37019 1457 1462 19989 Face 37020 1462 1276 19989 Face 37021 1244 1276 19990 Face 37022 1276 1462 19990 Face 37023 1462 1433 19990 Face 37024 1433 1244 19990 Face 37025 1098 1102 19991 Face 37026 1102 1014 19991 Face 37027 1014 1007 19991 Face 37028 1007 1098 19991 Face 37029 1091 1098 19992 Face 37030 1098 1007 19992 Face 37031 1007 1010 19992 Face 37032 1010 1091 19992 Face 37033 1183 1110 19993 Face 37034 1110 1059 19993 Face 37035 1059 1156 19993 Face 37036 1156 1183 19993 Face 37037 962 907 19994 Face 37038 907 989 19994 Face 37039 989 1035 19994 Face 37040 1035 962 19994 Face 37041 1007 1014 19995 Face 37042 1014 965 19995 Face 37043 965 963 19995 Face 37044 963 1007 19995 Face 37045 1010 1007 19996 Face 37046 1007 963 19996 Face 37047 963 990 19996 Face 37048 990 1010 19996 Face 37049 1059 1010 19997 Face 37050 1010 990 19997 Face 37051 990 1052 19997 Face 37052 1052 1059 19997 Face 37053 1156 1059 19998 Face 37054 1059 1052 19998 Face 37055 1052 1166 19998 Face 37056 1166 1156 19998 Face 37057 935 934 19999 Face 37058 934 893 19999 Face 37059 893 894 19999 Face 37060 894 935 19999 Face 37061 951 935 20000 Face 37062 935 894 20000 Face 37063 894 918 20000 Face 37064 918 951 20000 Face 37065 1015 951 20001 Face 37066 951 918 20001 Face 37067 918 972 20001 Face 37068 972 1015 20001 Face 37069 1120 1015 20002 Face 37070 1015 972 20002 Face 37071 972 1094 20002 Face 37072 1094 1120 20002 Face 37073 1494 1183 20003 Face 37074 1183 1156 20003 Face 37075 1156 1456 20003 Face 37076 1456 1494 20003 Face 37077 1502 1353 20004 Face 37078 1353 1352 20004 Face 37079 1352 1501 20004 Face 37080 1501 1502 20004 Face 37081 1457 1532 20005 Face 37082 1532 1524 20005 Face 37083 1524 1462 20005 Face 37084 1462 1457 20005 Face 37085 2060 1619 20006 Face 37086 1619 1632 20006 Face 37087 1632 2154 20006 Face 37088 2154 2060 20006 Face 37089 1559 1493 20007 Face 37090 1493 1480 20007 Face 37091 1480 1526 20007 Face 37092 1526 1559 20007 Face 37093 2311 1774 20008 Face 37094 1774 1780 20008 Face 37095 1780 2397 20008 Face 37096 2397 2311 20008 Face 37097 2397 1780 20009 Face 37098 1780 1708 20009 Face 37099 1708 2044 20009 Face 37100 2044 2397 20009 Face 37101 1623 1914 20010 Face 37102 1914 2234 20010 Face 37103 2234 1638 20010 Face 37104 1638 1623 20010 Face 37105 2830 2718 20011 Face 37106 2718 2491 20011 Face 37107 2491 2684 20011 Face 37108 2684 2830 20011 Face 37109 1312 1484 20012 Face 37110 1484 1501 20012 Face 37111 1501 1352 20012 Face 37112 1352 1312 20012 Face 37113 1526 1524 20013 Face 37114 1524 1562 20013 Face 37115 1562 1559 20013 Face 37116 1559 1526 20013 Face 37117 1035 989 20014 Face 37118 989 1115 20014 Face 37119 1115 1182 20014 Face 37120 1182 1035 20014 Face 37121 1568 1562 20015 Face 37122 1562 1524 20015 Face 37123 1524 1532 20015 Face 37124 1532 1568 20015 Face 37125 880 983 20016 Face 37126 983 980 20016 Face 37127 980 884 20016 Face 37128 884 880 20016 Face 37129 1412 1306 20017 Face 37130 1306 1307 20017 Face 37131 1307 1413 20017 Face 37132 1413 1412 20017 Face 37133 1456 1156 20018 Face 37134 1156 1166 20018 Face 37135 1166 1447 20018 Face 37136 1447 1456 20018 Face 37137 1370 1120 20019 Face 37138 1120 1094 20019 Face 37139 1094 1294 20019 Face 37140 1294 1370 20019 Face 37141 1619 1502 20020 Face 37142 1502 1501 20020 Face 37143 1501 1632 20020 Face 37144 1632 1619 20020 Face 37145 893 880 20021 Face 37146 880 884 20021 Face 37147 884 894 20021 Face 37148 894 893 20021 Face 37149 1107 1285 20022 Face 37150 1285 1276 20022 Face 37151 1276 1097 20022 Face 37152 1097 1107 20022 Face 37153 2493 2648 20023 Face 37154 2648 2684 20023 Face 37155 2684 2491 20023 Face 37156 2491 2493 20023 Face 37157 1462 1524 20024 Face 37158 1524 1526 20024 Face 37159 1526 1433 20024 Face 37160 1433 1462 20024 Face 37161 907 884 20025 Face 37162 884 980 20025 Face 37163 980 989 20025 Face 37164 989 907 20025 Face 37165 1584 1533 20026 Face 37166 1533 955 20026 Face 37167 955 1002 20026 Face 37168 1002 1584 20026 Face 37169 1115 989 20027 Face 37170 989 980 20027 Face 37171 980 1097 20027 Face 37172 1097 1115 20027 Face 37173 1398 1182 20028 Face 37174 1182 1244 20028 Face 37175 1244 1433 20028 Face 37176 1433 1398 20028 Face 37177 1201 1240 20029 Face 37178 1240 1149 20029 Face 37179 1149 1122 20029 Face 37180 1122 1201 20029 Face 37181 1484 1641 20030 Face 37182 1641 1632 20030 Face 37183 1632 1501 20030 Face 37184 1501 1484 20030 Face 37185 2304 2154 20031 Face 37186 2154 1632 20031 Face 37187 1632 1641 20031 Face 37188 1641 2304 20031 Face 37189 2795 2688 20032 Face 37190 2688 2718 20032 Face 37191 2718 2830 20032 Face 37192 2830 2795 20032 Face 37193 918 907 20033 Face 37194 907 962 20033 Face 37195 962 972 20033 Face 37196 972 918 20033 Face 37197 1244 1115 20034 Face 37198 1115 1097 20034 Face 37199 1097 1276 20034 Face 37200 1276 1244 20034 Face 37201 1252 1365 20035 Face 37202 1365 1413 20035 Face 37203 1413 1307 20035 Face 37204 1307 1252 20035 Face 37205 1737 2149 20036 Face 37206 2149 2044 20036 Face 37207 2044 1708 20036 Face 37208 1708 1737 20036 Face 37209 983 1107 20037 Face 37210 1107 1097 20037 Face 37211 1097 980 20037 Face 37212 980 983 20037 Face 37213 1144 1149 20038 Face 37214 1149 1240 20038 Face 37215 1240 1243 20038 Face 37216 1243 1144 20038 Face 37217 894 884 20039 Face 37218 884 907 20039 Face 37219 907 918 20039 Face 37220 918 894 20039 Face 37221 1035 1182 20040 Face 37222 1182 1294 20040 Face 37223 1294 1094 20040 Face 37224 1094 1035 20040 Face 37225 8069 8068 20041 Face 37226 8068 5540 20041 Face 37227 5540 5542 20041 Face 37228 5542 8069 20041 Face 37229 8072 8073 20042 Face 37230 8073 8068 20042 Face 37231 8068 8069 20042 Face 37232 8069 8072 20042 Face 37233 8074 8075 20043 Face 37234 8075 8073 20043 Face 37235 8073 8072 20043 Face 37236 8072 8074 20043 Face 37237 8076 8077 20044 Face 37238 8077 8075 20044 Face 37239 8075 8074 20044 Face 37240 8074 8076 20044 Face 37241 8070 8071 20045 Face 37242 8071 8077 20045 Face 37243 8077 8076 20045 Face 37244 8076 8070 20045 Face 37245 5551 5550 20046 Face 37246 5550 8071 20046 Face 37247 8071 8070 20046 Face 37248 8070 5551 20046 Face 37249 8071 5550 20047 Face 37250 5550 5545 20047 Face 37251 5545 8077 20047 Face 37252 8077 8071 20047 Face 37253 8077 5545 20048 Face 37254 5545 5543 20048 Face 37255 5543 8075 20048 Face 37256 8075 8077 20048 Face 37257 8075 5543 20049 Face 37258 5543 5541 20049 Face 37259 5541 8073 20049 Face 37260 8073 8075 20049 Face 37261 8073 5541 20050 Face 37262 5541 5540 20050 Face 37263 5540 8068 20050 Face 37264 8068 8073 20050 Face 37265 5542 5540 20051 Face 37266 5540 2966 20051 Face 37267 2966 2967 20051 Face 37268 2967 5542 20051 Face 37269 2967 2966 20052 Face 37270 2966 2962 20052 Face 37271 2962 2963 20052 Face 37272 2963 2967 20052 Face 37273 2963 2962 20053 Face 37274 2962 2959 20053 Face 37275 2959 2960 20053 Face 37276 2960 2963 20053 Face 37277 2960 2959 20054 Face 37278 2959 2957 20054 Face 37279 2957 2958 20054 Face 37280 2958 2960 20054 Face 37281 2958 2957 20055 Face 37282 2957 2964 20055 Face 37283 2964 2965 20055 Face 37284 2965 2958 20055 Face 37285 2965 2964 20056 Face 37286 2964 5550 20056 Face 37287 5550 5551 20056 Face 37288 5551 2965 20056 Face 37289 2957 5545 20057 Face 37290 5545 5550 20057 Face 37291 5550 2964 20057 Face 37292 2964 2957 20057 Face 37293 2959 5543 20058 Face 37294 5543 5545 20058 Face 37295 5545 2957 20058 Face 37296 2957 2959 20058 Face 37297 2962 5541 20059 Face 37298 5541 5543 20059 Face 37299 5543 2959 20059 Face 37300 2959 2962 20059 Face 37301 2966 5540 20060 Face 37302 5540 5541 20060 Face 37303 5541 2962 20060 Face 37304 2962 2966 20060 Face 37305 5546 5551 20061 Face 37306 5551 9238 20061 Face 37307 9238 8737 20061 Face 37308 8737 5546 20061 Face 37309 2965 5551 20062 Face 37310 5551 2309 20062 Face 37311 2309 1807 20062 Face 37312 1807 2965 20062 Face 37313 8069 5542 20063 Face 37314 5542 5538 20063 Face 37315 5538 9293 20063 Face 37316 9293 8069 20063 Face 37317 5538 5537 20064 Face 37318 5537 9235 20064 Face 37319 9235 9293 20064 Face 37320 9293 5538 20064 Face 37321 9520 8074 20065 Face 37322 8074 8072 20065 Face 37323 8072 9457 20065 Face 37324 9457 9520 20065 Face 37325 9553 8076 20066 Face 37326 8076 8074 20066 Face 37327 8074 9520 20066 Face 37328 9520 9553 20066 Face 37329 9409 8070 20067 Face 37330 8070 8076 20067 Face 37331 8076 9553 20067 Face 37332 9553 9409 20067 Face 37333 9235 5537 20068 Face 37334 5537 5535 20068 Face 37335 5535 7631 20068 Face 37336 7631 9235 20068 Face 37337 9457 8072 20069 Face 37338 8072 8069 20069 Face 37339 8069 9406 20069 Face 37340 9406 9457 20069 Face 37341 1752 5538 20070 Face 37342 5538 5542 20070 Face 37343 5542 2967 20070 Face 37344 2967 1752 20070 Face 37345 1752 1810 20071 Face 37346 1810 5537 20071 Face 37347 5537 5538 20071 Face 37348 5538 1752 20071 Face 37349 1588 2963 20072 Face 37350 2963 2960 20072 Face 37351 2960 1525 20072 Face 37352 1525 1588 20072 Face 37353 1525 2960 20073 Face 37354 2960 2958 20073 Face 37355 2958 1492 20073 Face 37356 1492 1525 20073 Face 37357 1492 2958 20074 Face 37358 2958 2965 20074 Face 37359 2965 1636 20074 Face 37360 1636 1492 20074 Face 37361 3414 5535 20075 Face 37362 5535 5537 20075 Face 37363 5537 1810 20075 Face 37364 1810 3414 20075 Face 37365 1639 2967 20076 Face 37366 2967 2963 20076 Face 37367 2963 1588 20076 Face 37368 1588 1639 20076 Face 37369 9748 9650 20077 Face 37370 9650 9576 20077 Face 37371 9576 9670 20077 Face 37372 9670 9748 20077 Face 37373 9466 9576 20078 Face 37374 9576 9650 20078 Face 37375 9650 9484 20078 Face 37376 9484 9466 20078 Face 37377 7299 5507 20079 Face 37378 5507 5506 20079 Face 37379 5506 7230 20079 Face 37380 7230 7299 20079 Face 37381 8795 7299 20080 Face 37382 7299 7230 20080 Face 37383 7230 8615 20080 Face 37384 8615 8795 20080 Face 37385 9412 8795 20081 Face 37386 8795 8615 20081 Face 37387 8615 9400 20081 Face 37388 9400 9412 20081 Face 37389 9667 9412 20082 Face 37390 9412 9400 20082 Face 37391 9400 9595 20082 Face 37392 9595 9667 20082 Face 37393 9749 9667 20083 Face 37394 9667 9595 20083 Face 37395 9595 9684 20083 Face 37396 9684 9749 20083 Face 37397 9651 9749 20084 Face 37398 9749 9684 20084 Face 37399 9684 9577 20084 Face 37400 9577 9651 20084 Face 37401 9485 9651 20085 Face 37402 9651 9577 20085 Face 37403 9577 9440 20085 Face 37404 9440 9485 20085 Face 37405 8930 9485 20086 Face 37406 9485 9440 20086 Face 37407 9440 8690 20086 Face 37408 8690 8930 20086 Face 37409 7284 8930 20087 Face 37410 8930 8690 20087 Face 37411 8690 7218 20087 Face 37412 7218 7284 20087 Face 37413 5504 7284 20088 Face 37414 7284 7218 20088 Face 37415 7218 5505 20088 Face 37416 5505 5504 20088 Face 37417 7283 5500 20089 Face 37418 5500 5501 20089 Face 37419 5501 7217 20089 Face 37420 7217 7283 20089 Face 37421 8929 7283 20090 Face 37422 7283 7217 20090 Face 37423 7217 8489 20090 Face 37424 8489 8929 20090 Face 37425 9484 8929 20091 Face 37426 8929 9094 20091 Face 37427 9094 9410 20091 Face 37428 9410 9484 20091 Face 37429 9666 9748 20092 Face 37430 9748 9668 20092 Face 37431 9668 9594 20092 Face 37432 9594 9666 20092 Face 37433 9411 9666 20093 Face 37434 9666 9594 20093 Face 37435 9594 9418 20093 Face 37436 9418 9411 20093 Face 37437 8794 9411 20094 Face 37438 9411 9382 20094 Face 37439 9382 8614 20094 Face 37440 8614 8794 20094 Face 37441 7298 8794 20095 Face 37442 8794 8614 20095 Face 37443 8614 7229 20095 Face 37444 7229 7298 20095 Face 37445 5503 7298 20096 Face 37446 7298 7229 20096 Face 37447 7229 5502 20096 Face 37448 5502 5503 20096 Face 37449 9756 9656 20097 Face 37450 9656 9597 20097 Face 37451 9597 9686 20097 Face 37452 9686 9756 20097 Face 37453 9658 9756 20098 Face 37454 9756 9686 20098 Face 37455 9686 9579 20098 Face 37456 9579 9658 20098 Face 37457 9480 9658 20099 Face 37458 9658 9579 20099 Face 37459 9579 9442 20099 Face 37460 9442 9480 20099 Face 37461 9011 9480 20100 Face 37462 9480 9442 20100 Face 37463 9442 8692 20100 Face 37464 8692 9011 20100 Face 37465 7321 9011 20101 Face 37466 9011 8692 20101 Face 37467 8692 7220 20101 Face 37468 7220 7321 20101 Face 37469 5512 7321 20102 Face 37470 7321 7220 20102 Face 37471 7220 5513 20102 Face 37472 5513 5512 20102 Face 37473 7320 5508 20103 Face 37474 5508 5509 20103 Face 37475 5509 7219 20103 Face 37476 7219 7320 20103 Face 37477 9010 7320 20104 Face 37478 7320 7219 20104 Face 37479 7219 8691 20104 Face 37480 8691 9010 20104 Face 37481 9479 9010 20105 Face 37482 9010 8691 20105 Face 37483 8691 9441 20105 Face 37484 9441 9479 20105 Face 37485 9657 9479 20106 Face 37486 9479 9441 20106 Face 37487 9441 9578 20106 Face 37488 9578 9657 20106 Face 37489 9755 9657 20107 Face 37490 9657 9578 20107 Face 37491 9578 9685 20107 Face 37492 9685 9755 20107 Face 37493 9655 9755 20108 Face 37494 9755 9685 20108 Face 37495 9685 9596 20108 Face 37496 9596 9655 20108 Face 37497 9414 9655 20109 Face 37498 9655 9596 20109 Face 37499 9596 9401 20109 Face 37500 9401 9414 20109 Face 37501 8815 9414 20110 Face 37502 9414 9401 20110 Face 37503 9401 8616 20110 Face 37504 8616 8815 20110 Face 37505 7314 8815 20111 Face 37506 8815 8616 20111 Face 37507 8616 7231 20111 Face 37508 7231 7314 20111 Face 37509 5511 7314 20112 Face 37510 7314 7231 20112 Face 37511 7231 5510 20112 Face 37512 5510 5511 20112 Face 37513 7315 5515 20113 Face 37514 5515 5514 20113 Face 37515 5514 7232 20113 Face 37516 7232 7315 20113 Face 37517 8816 7315 20114 Face 37518 7315 7232 20114 Face 37519 7232 8617 20114 Face 37520 8617 8816 20114 Face 37521 9415 8816 20115 Face 37522 8816 8617 20115 Face 37523 8617 9402 20115 Face 37524 9402 9415 20115 Face 37525 9656 9415 20116 Face 37526 9415 9402 20116 Face 37527 9402 9597 20116 Face 37528 9597 9656 20116 Face 37529 9441 8691 20117 Face 37530 8691 8690 20117 Face 37531 8690 9440 20117 Face 37532 9440 9441 20117 Face 37533 8691 7219 20118 Face 37534 7219 7218 20118 Face 37535 7218 8690 20118 Face 37536 8690 8691 20118 Face 37537 7219 5509 20119 Face 37538 5509 5505 20119 Face 37539 5505 7218 20119 Face 37540 7218 7219 20119 Face 37541 5500 7283 20120 Face 37542 7283 7284 20120 Face 37543 7284 5504 20120 Face 37544 5504 5500 20120 Face 37545 7283 8929 20121 Face 37546 8929 8930 20121 Face 37547 8930 7284 20121 Face 37548 7284 7283 20121 Face 37549 8929 9484 20122 Face 37550 9484 9485 20122 Face 37551 9485 8930 20122 Face 37552 8930 8929 20122 Face 37553 7230 5506 20123 Face 37554 5506 5510 20123 Face 37555 5510 7231 20123 Face 37556 7231 7230 20123 Face 37557 7315 8816 20124 Face 37558 8816 8815 20124 Face 37559 8815 7314 20124 Face 37560 7314 7315 20124 Face 37561 8816 9415 20125 Face 37562 9415 9414 20125 Face 37563 9414 8815 20125 Face 37564 8815 8816 20125 Face 37565 9415 9656 20126 Face 37566 9656 9655 20126 Face 37567 9655 9414 20126 Face 37568 9414 9415 20126 Face 37569 9656 9756 20127 Face 37570 9756 9755 20127 Face 37571 9755 9655 20127 Face 37572 9655 9656 20127 Face 37573 9756 9658 20128 Face 37574 9658 9657 20128 Face 37575 9657 9755 20128 Face 37576 9755 9756 20128 Face 37577 9658 9480 20129 Face 37578 9480 9479 20129 Face 37579 9479 9657 20129 Face 37580 9657 9658 20129 Face 37581 9484 9650 20130 Face 37582 9650 9651 20130 Face 37583 9651 9485 20130 Face 37584 9485 9484 20130 Face 37585 9650 9748 20131 Face 37586 9748 9749 20131 Face 37587 9749 9651 20131 Face 37588 9651 9650 20131 Face 37589 9748 9666 20132 Face 37590 9666 9667 20132 Face 37591 9667 9749 20132 Face 37592 9749 9748 20132 Face 37593 9666 9411 20133 Face 37594 9411 9412 20133 Face 37595 9412 9667 20133 Face 37596 9667 9666 20133 Face 37597 9411 8794 20134 Face 37598 8794 8795 20134 Face 37599 8795 9412 20134 Face 37600 9412 9411 20134 Face 37601 8794 7298 20135 Face 37602 7298 7299 20135 Face 37603 7299 8795 20135 Face 37604 8795 8794 20135 Face 37605 7298 5503 20136 Face 37606 5503 5507 20136 Face 37607 5507 7299 20136 Face 37608 7299 7298 20136 Face 37609 9578 9441 20137 Face 37610 9441 9440 20137 Face 37611 9440 9577 20137 Face 37612 9577 9578 20137 Face 37613 9685 9578 20138 Face 37614 9578 9577 20138 Face 37615 9577 9684 20138 Face 37616 9684 9685 20138 Face 37617 9596 9685 20139 Face 37618 9685 9684 20139 Face 37619 9684 9595 20139 Face 37620 9595 9596 20139 Face 37621 9401 9596 20140 Face 37622 9596 9595 20140 Face 37623 9595 9400 20140 Face 37624 9400 9401 20140 Face 37625 8616 9401 20141 Face 37626 9401 9400 20141 Face 37627 9400 8615 20141 Face 37628 8615 8616 20141 Face 37629 7231 8616 20142 Face 37630 8616 8615 20142 Face 37631 8615 7230 20142 Face 37632 7230 7231 20142 Face 37633 5515 7315 20143 Face 37634 7315 7314 20143 Face 37635 7314 5511 20143 Face 37636 5511 5515 20143 Face 37637 7321 5512 20144 Face 37638 5512 5508 20144 Face 37639 5508 7320 20144 Face 37640 7320 7321 20144 Face 37641 9011 7321 20145 Face 37642 7321 7320 20145 Face 37643 7320 9010 20145 Face 37644 9010 9011 20145 Face 37645 9480 9011 20146 Face 37646 9011 9010 20146 Face 37647 9010 9479 20146 Face 37648 9479 9480 20146 Face 37649 1375 1466 20147 Face 37650 1466 1394 20147 Face 37651 1394 1296 20147 Face 37652 1296 1375 20147 Face 37653 1560 1394 20148 Face 37654 1394 1466 20148 Face 37655 1466 1579 20148 Face 37656 1579 1560 20148 Face 37657 3812 5506 20149 Face 37658 5506 5507 20149 Face 37659 5507 3745 20149 Face 37660 3745 3812 20149 Face 37661 2427 3812 20150 Face 37662 3812 3745 20150 Face 37663 3745 2250 20150 Face 37664 2250 2427 20150 Face 37665 1643 2427 20151 Face 37666 2427 2250 20151 Face 37667 2250 1634 20151 Face 37668 1634 1643 20151 Face 37669 1449 1643 20152 Face 37670 1643 1634 20152 Face 37671 1634 1379 20152 Face 37672 1379 1449 20152 Face 37673 1359 1449 20153 Face 37674 1449 1379 20153 Face 37675 1379 1297 20153 Face 37676 1297 1359 20153 Face 37677 1467 1359 20154 Face 37678 1359 1297 20154 Face 37679 1297 1395 20154 Face 37680 1395 1467 20154 Face 37681 1603 1467 20155 Face 37682 1467 1395 20155 Face 37683 1395 1561 20155 Face 37684 1561 1603 20155 Face 37685 2352 1603 20156 Face 37686 1603 1561 20156 Face 37687 1561 2116 20156 Face 37688 2116 2352 20156 Face 37689 3825 2352 20157 Face 37690 2352 2116 20157 Face 37691 2116 3761 20157 Face 37692 3761 3825 20157 Face 37693 5505 3825 20158 Face 37694 3825 3761 20158 Face 37695 3761 5504 20158 Face 37696 5504 5505 20158 Face 37697 3824 5501 20159 Face 37698 5501 5500 20159 Face 37699 5500 3760 20159 Face 37700 3760 3824 20159 Face 37701 2555 3824 20160 Face 37702 3824 3760 20160 Face 37703 3760 2115 20160 Face 37704 2115 2555 20160 Face 37705 1635 1951 20161 Face 37706 1951 2115 20161 Face 37707 2115 1560 20161 Face 37708 1560 1635 20161 Face 37709 1448 1377 20162 Face 37710 1377 1296 20162 Face 37711 1296 1378 20162 Face 37712 1378 1448 20162 Face 37713 1627 1448 20163 Face 37714 1448 1378 20163 Face 37715 1378 1633 20163 Face 37716 1633 1627 20163 Face 37717 2426 1663 20164 Face 37718 1663 1633 20164 Face 37719 1633 2249 20164 Face 37720 2249 2426 20164 Face 37721 3811 2426 20165 Face 37722 2426 2249 20165 Face 37723 2249 3744 20165 Face 37724 3744 3811 20165 Face 37725 5502 3811 20166 Face 37726 3811 3744 20166 Face 37727 3744 5503 20166 Face 37728 5503 5502 20166 Face 37729 1361 1451 20167 Face 37730 1451 1390 20167 Face 37731 1390 1290 20167 Face 37732 1290 1361 20167 Face 37733 1469 1361 20168 Face 37734 1361 1290 20168 Face 37735 1290 1388 20168 Face 37736 1388 1469 20168 Face 37737 1605 1469 20169 Face 37738 1469 1388 20169 Face 37739 1388 1566 20169 Face 37740 1566 1605 20169 Face 37741 2354 1605 20170 Face 37742 1605 1566 20170 Face 37743 1566 2034 20170 Face 37744 2034 2354 20170 Face 37745 3827 2354 20171 Face 37746 2354 2034 20171 Face 37747 2034 3722 20171 Face 37748 3722 3827 20171 Face 37749 5513 3827 20172 Face 37750 3827 3722 20172 Face 37751 3722 5512 20172 Face 37752 5512 5513 20172 Face 37753 3826 5509 20173 Face 37754 5509 5508 20173 Face 37755 5508 3721 20173 Face 37756 3721 3826 20173 Face 37757 2353 3826 20174 Face 37758 3826 3721 20174 Face 37759 3721 2033 20174 Face 37760 2033 2353 20174 Face 37761 1604 2353 20175 Face 37762 2353 2033 20175 Face 37763 2033 1565 20175 Face 37764 1565 1604 20175 Face 37765 1468 1604 20176 Face 37766 1604 1565 20176 Face 37767 1565 1387 20176 Face 37768 1387 1468 20176 Face 37769 1360 1468 20177 Face 37770 1468 1387 20177 Face 37771 1387 1289 20177 Face 37772 1289 1360 20177 Face 37773 1450 1360 20178 Face 37774 1360 1289 20178 Face 37775 1289 1389 20178 Face 37776 1389 1450 20178 Face 37777 1644 1450 20179 Face 37778 1450 1389 20179 Face 37779 1389 1630 20179 Face 37780 1630 1644 20179 Face 37781 2428 1644 20180 Face 37782 1644 1630 20180 Face 37783 1630 2229 20180 Face 37784 2229 2428 20180 Face 37785 3813 2428 20181 Face 37786 2428 2229 20181 Face 37787 2229 3727 20181 Face 37788 3727 3813 20181 Face 37789 5510 3813 20182 Face 37790 3813 3727 20182 Face 37791 3727 5511 20182 Face 37792 5511 5510 20182 Face 37793 3814 5514 20183 Face 37794 5514 5515 20183 Face 37795 5515 3728 20183 Face 37796 3728 3814 20183 Face 37797 2429 3814 20184 Face 37798 3814 3728 20184 Face 37799 3728 2230 20184 Face 37800 2230 2429 20184 Face 37801 1645 2429 20185 Face 37802 2429 2230 20185 Face 37803 2230 1631 20185 Face 37804 1631 1645 20185 Face 37805 1451 1645 20186 Face 37806 1645 1631 20186 Face 37807 1631 1390 20186 Face 37808 1390 1451 20186 Face 37809 1603 2352 20187 Face 37810 2352 2353 20187 Face 37811 2353 1604 20187 Face 37812 1604 1603 20187 Face 37813 2352 3825 20188 Face 37814 3825 3826 20188 Face 37815 3826 2353 20188 Face 37816 2353 2352 20188 Face 37817 3825 5505 20189 Face 37818 5505 5509 20189 Face 37819 5509 3826 20189 Face 37820 3826 3825 20189 Face 37821 5504 3761 20190 Face 37822 3761 3760 20190 Face 37823 3760 5500 20190 Face 37824 5500 5504 20190 Face 37825 3761 2116 20191 Face 37826 2116 2115 20191 Face 37827 2115 3760 20191 Face 37828 3760 3761 20191 Face 37829 2116 1561 20192 Face 37830 1561 1560 20192 Face 37831 1560 2115 20192 Face 37832 2115 2116 20192 Face 37833 3813 5510 20193 Face 37834 5510 5506 20193 Face 37835 5506 3812 20193 Face 37836 3812 3813 20193 Face 37837 3727 2229 20194 Face 37838 2229 2230 20194 Face 37839 2230 3728 20194 Face 37840 3728 3727 20194 Face 37841 2229 1630 20195 Face 37842 1630 1631 20195 Face 37843 1631 2230 20195 Face 37844 2230 2229 20195 Face 37845 1630 1389 20196 Face 37846 1389 1390 20196 Face 37847 1390 1631 20196 Face 37848 1631 1630 20196 Face 37849 1389 1289 20197 Face 37850 1289 1290 20197 Face 37851 1290 1390 20197 Face 37852 1390 1389 20197 Face 37853 1289 1387 20198 Face 37854 1387 1388 20198 Face 37855 1388 1290 20198 Face 37856 1290 1289 20198 Face 37857 1387 1565 20199 Face 37858 1565 1566 20199 Face 37859 1566 1388 20199 Face 37860 1388 1387 20199 Face 37861 1561 1395 20200 Face 37862 1395 1394 20200 Face 37863 1394 1560 20200 Face 37864 1560 1561 20200 Face 37865 1395 1297 20201 Face 37866 1297 1296 20201 Face 37867 1296 1394 20201 Face 37868 1394 1395 20201 Face 37869 1297 1379 20202 Face 37870 1379 1378 20202 Face 37871 1378 1296 20202 Face 37872 1296 1297 20202 Face 37873 1379 1634 20203 Face 37874 1634 1633 20203 Face 37875 1633 1378 20203 Face 37876 1378 1379 20203 Face 37877 1634 2250 20204 Face 37878 2250 2249 20204 Face 37879 2249 1633 20204 Face 37880 1633 1634 20204 Face 37881 2250 3745 20205 Face 37882 3745 3744 20205 Face 37883 3744 2249 20205 Face 37884 2249 2250 20205 Face 37885 3745 5507 20206 Face 37886 5507 5503 20206 Face 37887 5503 3744 20206 Face 37888 3744 3745 20206 Face 37889 1467 1603 20207 Face 37890 1603 1604 20207 Face 37891 1604 1468 20207 Face 37892 1468 1467 20207 Face 37893 1359 1467 20208 Face 37894 1467 1468 20208 Face 37895 1468 1360 20208 Face 37896 1360 1359 20208 Face 37897 1449 1359 20209 Face 37898 1359 1360 20209 Face 37899 1360 1450 20209 Face 37900 1450 1449 20209 Face 37901 1643 1449 20210 Face 37902 1449 1450 20210 Face 37903 1450 1644 20210 Face 37904 1644 1643 20210 Face 37905 2427 1643 20211 Face 37906 1643 1644 20211 Face 37907 1644 2428 20211 Face 37908 2428 2427 20211 Face 37909 3812 2427 20212 Face 37910 2427 2428 20212 Face 37911 2428 3813 20212 Face 37912 3813 3812 20212 Face 37913 5511 3727 20213 Face 37914 3727 3728 20213 Face 37915 3728 5515 20213 Face 37916 5515 5511 20213 Face 37917 3721 5508 20214 Face 37918 5508 5512 20214 Face 37919 5512 3722 20214 Face 37920 3722 3721 20214 Face 37921 2033 3721 20215 Face 37922 3721 3722 20215 Face 37923 3722 2034 20215 Face 37924 2034 2033 20215 Face 37925 1565 2033 20216 Face 37926 2033 2034 20216 Face 37927 2034 1566 20216 Face 37928 1566 1565 20216 Face 37929 9548 9671 20217 Face 37930 9671 9810 20217 Face 37931 9810 9403 20217 Face 37932 9403 9548 20217 Face 37933 9277 9403 20218 Face 37934 9403 9810 20218 Face 37935 9810 9084 20218 Face 37936 9084 9277 20218 Face 37937 9336 9084 20219 Face 37938 9084 9810 20219 Face 37939 9810 9405 20219 Face 37940 9405 9336 20219 Face 37941 9555 9405 20220 Face 37942 9405 9810 20220 Face 37943 9810 9705 20220 Face 37944 9705 9555 20220 Face 37945 8753 8845 20221 Face 37946 8845 9560 20221 Face 37947 9560 9141 20221 Face 37948 9141 8753 20221 Face 37949 1709 1640 20222 Face 37950 1640 1340 20222 Face 37951 1340 1961 20222 Face 37952 1961 1709 20222 Face 37953 1768 1961 20223 Face 37954 1961 1340 20223 Face 37955 1340 1642 20223 Face 37956 1642 1768 20223 Face 37957 1497 1642 20224 Face 37958 1642 1340 20224 Face 37959 1340 1374 20224 Face 37960 1374 1497 20224 Face 37961 1283 1374 20225 Face 37962 1374 1340 20225 Face 37963 1340 1235 20225 Face 37964 1235 1283 20225 Face 37965 1510 2197 20226 Face 37966 2197 1904 20226 Face 37967 1904 1485 20226 Face 37968 1485 1510 20226 Face 37969 9939 9852 20227 Face 37970 9852 9882 20227 Face 37971 9882 9982 20227 Face 37972 9982 9939 20227 Face 37973 9982 9882 20228 Face 37974 9882 9871 20228 Face 37975 9871 10003 20228 Face 37976 10003 9982 20228 Face 37977 9944 10106 20229 Face 37978 10106 10366 20229 Face 37979 10366 10253 20229 Face 37980 10253 9944 20229 Face 37981 10253 10366 20230 Face 37982 10366 10543 20230 Face 37983 10543 10336 20230 Face 37984 10336 10253 20230 Face 37985 10336 10543 20231 Face 37986 10543 10414 20231 Face 37987 10414 10266 20231 Face 37988 10266 10336 20231 Face 37989 10266 10414 20232 Face 37990 10414 10214 20232 Face 37991 10214 10140 20232 Face 37992 10140 10266 20232 Face 37993 10140 10214 20233 Face 37994 10214 10070 20233 Face 37995 10070 10003 20233 Face 37996 10003 10140 20233 Face 37997 6848 6324 20234 Face 37998 6324 7385 20234 Face 37999 7385 7842 20234 Face 38000 7842 6848 20234 Face 38001 8307 9366 20235 Face 38002 9366 9064 20235 Face 38003 9064 7114 20235 Face 38004 7114 8307 20235 Face 38005 10183 10370 20236 Face 38006 10370 10106 20236 Face 38007 10106 10033 20236 Face 38008 10033 10183 20236 Face 38009 9992 9892 20237 Face 38010 9892 9975 20237 Face 38011 9975 10109 20237 Face 38012 10109 9992 20237 Face 38013 9669 9064 20238 Face 38014 9064 9366 20238 Face 38015 9366 9580 20238 Face 38016 9580 9669 20238 Face 38017 9718 9944 20239 Face 38018 9944 10101 20239 Face 38019 10101 9785 20239 Face 38020 9785 9718 20239 Face 38021 9720 9759 20240 Face 38022 9759 9700 20240 Face 38023 9700 9669 20240 Face 38024 9669 9720 20240 Face 38025 9785 9818 20241 Face 38026 9818 9759 20241 Face 38027 9759 9720 20241 Face 38028 9720 9785 20241 Face 38029 8946 9304 20242 Face 38030 9304 9094 20242 Face 38031 9094 8729 20242 Face 38032 8729 8946 20242 Face 38033 9533 9503 20243 Face 38034 9503 9546 20243 Face 38035 9546 9559 20243 Face 38036 9559 9533 20243 Face 38037 9506 9475 20244 Face 38038 9475 9503 20244 Face 38039 9503 9533 20244 Face 38040 9533 9506 20244 Face 38041 9398 9503 20245 Face 38042 9503 9475 20245 Face 38043 9475 9382 20245 Face 38044 9382 9398 20245 Face 38045 9418 9546 20246 Face 38046 9546 9503 20246 Face 38047 9503 9398 20246 Face 38048 9398 9418 20246 Face 38049 9786 9624 20247 Face 38050 9624 9670 20247 Face 38051 9670 9800 20247 Face 38052 9800 9786 20247 Face 38053 9811 9668 20248 Face 38054 9668 9624 20248 Face 38055 9624 9786 20248 Face 38056 9786 9811 20248 Face 38057 8671 8946 20249 Face 38058 8946 8568 20249 Face 38059 8568 8361 20249 Face 38060 8361 8671 20249 Face 38061 9141 9304 20250 Face 38062 9304 8946 20250 Face 38063 8946 8671 20250 Face 38064 8671 9141 20250 Face 38065 9420 9465 20251 Face 38066 9465 9514 20251 Face 38067 9514 9466 20251 Face 38068 9466 9420 20251 Face 38069 9410 9436 20252 Face 38070 9436 9465 20252 Face 38071 9465 9420 20252 Face 38072 9420 9410 20252 Face 38073 8729 8489 20253 Face 38074 8489 8568 20253 Face 38075 8568 8946 20253 Face 38076 8946 8729 20253 Face 38077 6978 7183 20254 Face 38078 7183 6938 20254 Face 38079 6938 6711 20254 Face 38080 6711 6978 20254 Face 38081 7263 7476 20255 Face 38082 7476 7183 20255 Face 38083 7183 6978 20255 Face 38084 6978 7263 20255 Face 38085 6764 6978 20256 Face 38086 6978 6711 20256 Face 38087 6711 6426 20256 Face 38088 6426 6764 20256 Face 38089 7024 7263 20257 Face 38090 7263 6978 20257 Face 38091 6978 6764 20257 Face 38092 6764 7024 20257 Face 38093 6612 6764 20258 Face 38094 6764 6426 20258 Face 38095 6426 6265 20258 Face 38096 6265 6612 20258 Face 38097 6844 7024 20259 Face 38098 7024 6764 20259 Face 38099 6764 6612 20259 Face 38100 6612 6844 20259 Face 38101 6760 7344 20260 Face 38102 7344 7123 20260 Face 38103 7123 6707 20260 Face 38104 6707 6760 20260 Face 38105 7225 7544 20261 Face 38106 7544 7344 20261 Face 38107 7344 6760 20261 Face 38108 6760 7225 20261 Face 38109 8084 8671 20262 Face 38110 8671 8361 20262 Face 38111 8361 7760 20262 Face 38112 7760 8084 20262 Face 38113 8303 8753 20263 Face 38114 8753 8671 20263 Face 38115 8671 8084 20263 Face 38116 8084 8303 20263 Face 38117 7344 8084 20264 Face 38118 8084 7760 20264 Face 38119 7760 7123 20264 Face 38120 7123 7344 20264 Face 38121 7544 8303 20265 Face 38122 8303 8084 20265 Face 38123 8084 7344 20265 Face 38124 7344 7544 20265 Face 38125 8361 7263 20266 Face 38126 7263 7024 20266 Face 38127 7024 7760 20266 Face 38128 7760 8361 20266 Face 38129 7760 7024 20267 Face 38130 7024 6844 20267 Face 38131 6844 7123 20267 Face 38132 7123 7760 20267 Face 38133 7123 6844 20268 Face 38134 6844 6642 20268 Face 38135 6642 6707 20268 Face 38136 6707 7123 20268 Face 38137 6033 5919 20269 Face 38138 5919 5710 20269 Face 38139 5710 5741 20269 Face 38140 5741 6033 20269 Face 38141 5890 5757 20270 Face 38142 5757 5919 20270 Face 38143 5919 6033 20270 Face 38144 6033 5890 20270 Face 38145 5905 5919 20271 Face 38146 5919 5757 20271 Face 38147 5757 5729 20271 Face 38148 5729 5905 20271 Face 38149 5718 5710 20272 Face 38150 5710 5919 20272 Face 38151 5919 5905 20272 Face 38152 5905 5718 20272 Face 38153 5905 5994 20273 Face 38154 5994 5830 20273 Face 38155 5830 5718 20273 Face 38156 5718 5905 20273 Face 38157 5729 5815 20274 Face 38158 5815 5994 20274 Face 38159 5994 5905 20274 Face 38160 5905 5729 20274 Face 38161 6587 5994 20275 Face 38162 5994 5815 20275 Face 38163 5815 6363 20275 Face 38164 6363 6587 20275 Face 38165 6324 5830 20276 Face 38166 5830 5994 20276 Face 38167 5994 6587 20276 Face 38168 6587 6324 20276 Face 38169 8776 9025 20277 Face 38170 9025 8531 20277 Face 38171 8531 8366 20277 Face 38172 8366 8776 20277 Face 38173 8979 9264 20278 Face 38174 9264 9025 20278 Face 38175 9025 8776 20278 Face 38176 8776 8979 20278 Face 38177 9025 9290 20279 Face 38178 9290 8865 20279 Face 38179 8865 8531 20279 Face 38180 8531 9025 20279 Face 38181 9264 9341 20280 Face 38182 9341 9290 20280 Face 38183 9290 9025 20280 Face 38184 9025 9264 20280 Face 38185 10049 10198 20281 Face 38186 10198 10210 20281 Face 38187 10210 10066 20281 Face 38188 10066 10049 20281 Face 38189 10070 10214 20282 Face 38190 10214 10198 20282 Face 38191 10198 10049 20282 Face 38192 10049 10070 20282 Face 38193 10377 10198 20283 Face 38194 10198 10214 20283 Face 38195 10214 10414 20283 Face 38196 10414 10377 20283 Face 38197 10408 10210 20284 Face 38198 10210 10198 20284 Face 38199 10198 10377 20284 Face 38200 10377 10408 20284 Face 38201 10377 10498 20285 Face 38202 10498 10560 20285 Face 38203 10560 10408 20285 Face 38204 10408 10377 20285 Face 38205 10414 10543 20286 Face 38206 10543 10498 20286 Face 38207 10498 10377 20286 Face 38208 10377 10414 20286 Face 38209 10337 10498 20287 Face 38210 10498 10543 20287 Face 38211 10543 10366 20287 Face 38212 10366 10337 20287 Face 38213 10370 10560 20288 Face 38214 10560 10498 20288 Face 38215 10498 10337 20288 Face 38216 10337 10370 20288 Face 38217 10133 10015 20289 Face 38218 10015 10067 20289 Face 38219 10067 10186 20289 Face 38220 10186 10133 20289 Face 38221 10122 10014 20290 Face 38222 10014 10015 20290 Face 38223 10015 10133 20290 Face 38224 10133 10122 20290 Face 38225 10133 10192 20291 Face 38226 10192 10169 20291 Face 38227 10169 10122 20291 Face 38228 10122 10133 20291 Face 38229 10186 10251 20292 Face 38230 10251 10192 20292 Face 38231 10192 10133 20292 Face 38232 10133 10186 20292 Face 38233 10124 10192 20293 Face 38234 10192 10251 20293 Face 38235 10251 10183 20293 Face 38236 10183 10124 20293 Face 38237 10109 10169 20294 Face 38238 10169 10192 20294 Face 38239 10192 10124 20294 Face 38240 10124 10109 20294 Face 38241 9776 9787 20295 Face 38242 9787 9813 20295 Face 38243 9813 9829 20295 Face 38244 9829 9776 20295 Face 38245 9829 9813 20296 Face 38246 9813 9808 20296 Face 38247 9808 9820 20296 Face 38248 9820 9829 20296 Face 38249 9820 9808 20297 Face 38250 9808 9809 20297 Face 38251 9809 9823 20297 Face 38252 9823 9820 20297 Face 38253 5523 5520 20298 Face 38254 5520 7318 20298 Face 38255 7318 7223 20298 Face 38256 7223 5523 20298 Face 38257 7223 7318 20299 Face 38258 7318 7405 20299 Face 38259 7405 7396 20299 Face 38260 7396 7223 20299 Face 38261 7396 7405 20300 Face 38262 7405 7487 20300 Face 38263 7487 7550 20300 Face 38264 7550 7396 20300 Face 38265 7550 7487 20301 Face 38266 7487 9342 20301 Face 38267 9342 9294 20301 Face 38268 9294 7550 20301 Face 38269 9294 9342 20302 Face 38270 9342 9453 20302 Face 38271 9453 9464 20302 Face 38272 9464 9294 20302 Face 38273 9464 9453 20303 Face 38274 9453 9490 20303 Face 38275 9490 9487 20303 Face 38276 9487 9464 20303 Face 38277 9487 9490 20304 Face 38278 9490 9529 20304 Face 38279 9529 9504 20304 Face 38280 9504 9487 20304 Face 38281 9504 9529 20305 Face 38282 9529 9784 20305 Face 38283 9784 9730 20305 Face 38284 9730 9504 20305 Face 38285 9730 9784 20306 Face 38286 9784 9850 20306 Face 38287 9850 9823 20306 Face 38288 9823 9730 20306 Face 38289 9776 9758 20307 Face 38290 9758 9783 20307 Face 38291 9783 9752 20307 Face 38292 9752 9776 20307 Face 38293 9752 9783 20308 Face 38294 9783 9770 20308 Face 38295 9770 9726 20308 Face 38296 9726 9752 20308 Face 38297 9726 9770 20309 Face 38298 9770 9773 20309 Face 38299 9773 9710 20309 Face 38300 9710 9726 20309 Face 38301 9710 9773 20310 Face 38302 9773 9539 20310 Face 38303 9539 9540 20310 Face 38304 9540 9710 20310 Face 38305 9507 9539 20311 Face 38306 9539 9348 20311 Face 38307 9348 9347 20311 Face 38308 9347 9507 20311 Face 38309 9347 9348 20312 Face 38310 9348 8987 20312 Face 38311 8987 9268 20312 Face 38312 9268 9347 20312 Face 38313 9268 8987 20313 Face 38314 8987 8942 20313 Face 38315 8942 9260 20313 Face 38316 9260 9268 20313 Face 38317 9260 8942 20314 Face 38318 8942 7337 20314 Face 38319 7337 7198 20314 Face 38320 7198 9260 20314 Face 38321 7198 7337 20315 Face 38322 7337 5521 20315 Face 38323 5521 5522 20315 Face 38324 5522 7198 20315 Face 38325 7280 7396 20316 Face 38326 7396 7550 20316 Face 38327 7550 7436 20316 Face 38328 7436 7280 20316 Face 38329 7092 7223 20317 Face 38330 7223 7396 20317 Face 38331 7396 7280 20317 Face 38332 7280 7092 20317 Face 38333 9694 9726 20318 Face 38334 9726 9710 20318 Face 38335 9710 9676 20318 Face 38336 9676 9694 20318 Face 38337 9707 9752 20319 Face 38338 9752 9726 20319 Face 38339 9726 9694 20319 Face 38340 9694 9707 20319 Face 38341 9540 9522 20320 Face 38342 9522 9496 20320 Face 38343 9496 9517 20320 Face 38344 9517 9540 20320 Face 38345 9522 9507 20321 Face 38346 9507 9473 20321 Face 38347 9473 9496 20321 Face 38348 9496 9522 20321 Face 38349 5526 5523 20322 Face 38350 5523 7223 20322 Face 38351 7223 7092 20322 Face 38352 7092 5526 20322 Face 38353 7436 7550 20323 Face 38354 7550 9294 20323 Face 38355 9294 9174 20323 Face 38356 9174 7436 20323 Face 38357 9721 9730 20324 Face 38358 9730 9823 20324 Face 38359 9823 9809 20324 Face 38360 9809 9721 20324 Face 38361 9829 9850 20325 Face 38362 9850 9780 20325 Face 38363 9780 9776 20325 Face 38364 9776 9829 20325 Face 38365 9787 9776 20326 Face 38366 9776 9752 20326 Face 38367 9752 9707 20326 Face 38368 9707 9787 20326 Face 38369 9676 9710 20327 Face 38370 9710 9540 20327 Face 38371 9540 9517 20327 Face 38372 9517 9676 20327 Face 38373 9473 9507 20328 Face 38374 9507 9347 20328 Face 38375 9347 9345 20328 Face 38376 9345 9473 20328 Face 38377 9768 9686 20329 Face 38378 9686 9597 20329 Face 38379 9597 9715 20329 Face 38380 9715 9768 20329 Face 38381 5517 5513 20330 Face 38382 5513 7220 20330 Face 38383 7220 7285 20330 Face 38384 7285 5517 20330 Face 38385 7285 7220 20331 Face 38386 7220 8692 20331 Face 38387 8692 9231 20331 Face 38388 9231 7285 20331 Face 38389 9231 8692 20332 Face 38390 8692 9442 20332 Face 38391 9442 9470 20332 Face 38392 9470 9231 20332 Face 38393 9508 9442 20333 Face 38394 9442 9579 20333 Face 38395 9579 9706 20333 Face 38396 9706 9508 20333 Face 38397 9706 9579 20334 Face 38398 9579 9686 20334 Face 38399 9686 9799 20334 Face 38400 9799 9706 20334 Face 38401 9715 9597 20335 Face 38402 9597 9402 20335 Face 38403 9402 9474 20335 Face 38404 9474 9715 20335 Face 38405 9474 9402 20336 Face 38406 9402 8617 20336 Face 38407 8617 9273 20336 Face 38408 9273 9474 20336 Face 38409 8660 8617 20337 Face 38410 8617 7232 20337 Face 38411 7232 7349 20337 Face 38412 7349 8660 20337 Face 38413 7349 7232 20338 Face 38414 7232 5514 20338 Face 38415 5514 5516 20338 Face 38416 5516 7349 20338 Face 38417 9508 9530 20339 Face 38418 9530 9491 20339 Face 38419 9491 9497 20339 Face 38420 9497 9508 20339 Face 38421 9454 9470 20340 Face 38422 9470 9497 20340 Face 38423 9497 9491 20340 Face 38424 9491 9454 20340 Face 38425 9768 9728 20341 Face 38426 9728 9702 20341 Face 38427 9702 9677 20341 Face 38428 9677 9768 20341 Face 38429 9750 9799 20342 Face 38430 9799 9677 20342 Face 38431 9677 9702 20342 Face 38432 9702 9750 20342 Face 38433 8878 9302 20343 Face 38434 9302 9273 20343 Face 38435 9273 8625 20343 Face 38436 8625 8878 20343 Face 38437 8625 8660 20344 Face 38438 8660 8715 20344 Face 38439 8715 8878 20344 Face 38440 8878 8625 20344 Face 38441 8987 8878 20345 Face 38442 8878 8715 20345 Face 38443 8715 8942 20345 Face 38444 8942 8987 20345 Face 38445 9348 9302 20346 Face 38446 9302 8878 20346 Face 38447 8878 8987 20346 Face 38448 8987 9348 20346 Face 38449 9725 9702 20347 Face 38450 9702 9728 20347 Face 38451 9728 9758 20347 Face 38452 9758 9725 20347 Face 38453 9780 9750 20348 Face 38454 9750 9702 20348 Face 38455 9702 9725 20348 Face 38456 9725 9780 20348 Face 38457 9490 9491 20349 Face 38458 9491 9530 20349 Face 38459 9530 9529 20349 Face 38460 9529 9490 20349 Face 38461 9453 9454 20350 Face 38462 9454 9491 20350 Face 38463 9491 9490 20350 Face 38464 9490 9453 20350 Face 38465 5518 5521 20351 Face 38466 5521 7337 20351 Face 38467 7337 7383 20351 Face 38468 7383 5518 20351 Face 38469 7383 7337 20352 Face 38470 7337 8942 20352 Face 38471 8942 8715 20352 Face 38472 8715 7383 20352 Face 38473 9302 9348 20353 Face 38474 9348 9539 20353 Face 38475 9539 9516 20353 Face 38476 9516 9302 20353 Face 38477 9516 9539 20354 Face 38478 9539 9773 20354 Face 38479 9773 9761 20354 Face 38480 9761 9516 20354 Face 38481 9761 9783 20355 Face 38482 9783 9758 20355 Face 38483 9758 9728 20355 Face 38484 9728 9761 20355 Face 38485 9750 9780 20356 Face 38486 9780 9850 20356 Face 38487 9850 9840 20356 Face 38488 9840 9750 20356 Face 38489 9840 9850 20357 Face 38490 9850 9784 20357 Face 38491 9784 9771 20357 Face 38492 9771 9840 20357 Face 38493 9771 9784 20358 Face 38494 9784 9529 20358 Face 38495 9529 9530 20358 Face 38496 9530 9771 20358 Face 38497 7290 7318 20359 Face 38498 7318 5520 20359 Face 38499 5520 5519 20359 Face 38500 5519 7290 20359 Face 38501 9325 9342 20360 Face 38502 9342 7487 20360 Face 38503 7487 7290 20360 Face 38504 7290 9325 20360 Face 38505 9454 9453 20361 Face 38506 9453 9342 20361 Face 38507 9342 9325 20361 Face 38508 9325 9454 20361 Face 38509 9728 9768 20362 Face 38510 9768 9715 20362 Face 38511 9715 9761 20362 Face 38512 9761 9728 20362 Face 38513 9474 9273 20363 Face 38514 9273 9302 20363 Face 38515 9302 9516 20363 Face 38516 9516 9474 20363 Face 38517 5516 5518 20364 Face 38518 5518 7383 20364 Face 38519 7383 7349 20364 Face 38520 7349 5516 20364 Face 38521 9799 9840 20365 Face 38522 9840 9771 20365 Face 38523 9771 9706 20365 Face 38524 9706 9799 20365 Face 38525 9771 9530 20366 Face 38526 9530 9508 20366 Face 38527 9508 9706 20366 Face 38528 9706 9771 20366 Face 38529 9231 9470 20367 Face 38530 9470 9454 20367 Face 38531 9454 9325 20367 Face 38532 9325 9231 20367 Face 38533 9474 9516 20368 Face 38534 9516 9761 20368 Face 38535 9761 9715 20368 Face 38536 9715 9474 20368 Face 38537 7285 7290 20369 Face 38538 7290 5519 20369 Face 38539 5519 5517 20369 Face 38540 5517 7285 20369 Face 38541 7349 7383 20370 Face 38542 7383 8715 20370 Face 38543 8715 8660 20370 Face 38544 8660 7349 20370 Face 38545 9231 9325 20371 Face 38546 9325 7290 20371 Face 38547 7290 7285 20371 Face 38548 7285 9231 20371 Face 38549 10095 9711 20372 Face 38550 9711 9818 20372 Face 38551 9818 10137 20372 Face 38552 10137 10095 20372 Face 38553 10266 10095 20373 Face 38554 10095 10137 20373 Face 38555 10137 10336 20373 Face 38556 10336 10266 20373 Face 38557 10186 10408 20374 Face 38558 10408 10560 20374 Face 38559 10560 10251 20374 Face 38560 10251 10186 20374 Face 38561 9967 10122 20375 Face 38562 10122 10169 20375 Face 38563 10169 10021 20375 Face 38564 10021 9967 20375 Face 38565 9619 9967 20376 Face 38566 9967 10021 20376 Face 38567 10021 9689 20376 Face 38568 9689 9619 20376 Face 38569 8979 9619 20377 Face 38570 9619 9689 20377 Face 38571 9689 9264 20377 Face 38572 9264 8979 20377 Face 38573 6449 8366 20378 Face 38574 8366 8531 20378 Face 38575 8531 6565 20378 Face 38576 6565 6449 20378 Face 38577 5729 6449 20379 Face 38578 6449 6565 20379 Face 38579 6565 5815 20379 Face 38580 5815 5729 20379 Face 38581 6704 6421 20380 Face 38582 6421 5718 20380 Face 38583 5718 5830 20380 Face 38584 5830 6704 20380 Face 38585 8685 6421 20381 Face 38586 6421 6704 20381 Face 38587 6704 9045 20381 Face 38588 9045 8685 20381 Face 38589 9711 8685 20382 Face 38590 8685 9045 20382 Face 38591 9045 9700 20382 Face 38592 9700 9711 20382 Face 38593 9372 9403 20383 Face 38594 9403 9277 20383 Face 38595 9277 8219 20383 Face 38596 8219 9372 20383 Face 38597 9558 9548 20384 Face 38598 9548 9403 20384 Face 38599 9403 9372 20384 Face 38600 9372 9558 20384 Face 38601 9652 9671 20385 Face 38602 9671 9548 20385 Face 38603 9548 9558 20385 Face 38604 9558 9652 20385 Face 38605 9824 9762 20386 Face 38606 9762 9671 20386 Face 38607 9671 9652 20386 Face 38608 9652 9824 20386 Face 38609 9870 9810 20387 Face 38610 9810 9762 20387 Face 38611 9762 9824 20387 Face 38612 9824 9870 20387 Face 38613 9819 9705 20388 Face 38614 9705 9810 20388 Face 38615 9810 9870 20388 Face 38616 9870 9819 20388 Face 38617 9569 9555 20389 Face 38618 9555 9705 20389 Face 38619 9705 9819 20389 Face 38620 9819 9569 20389 Face 38621 9383 9405 20390 Face 38622 9405 9555 20390 Face 38623 9555 9569 20390 Face 38624 9569 9383 20390 Face 38625 8424 9336 20391 Face 38626 9336 9405 20391 Face 38627 9405 9383 20391 Face 38628 9383 8424 20391 Face 38629 7908 9084 20392 Face 38630 9084 9336 20392 Face 38631 9336 8424 20392 Face 38632 8424 7908 20392 Face 38633 8219 9277 20393 Face 38634 9277 9084 20393 Face 38635 9084 7908 20393 Face 38636 7908 8219 20393 Face 38637 9378 9372 20394 Face 38638 9372 8219 20394 Face 38639 8219 8018 20394 Face 38640 8018 9378 20394 Face 38641 9609 9558 20395 Face 38642 9558 9372 20395 Face 38643 9372 9378 20395 Face 38644 9378 9609 20395 Face 38645 9845 9652 20396 Face 38646 9652 9558 20396 Face 38647 9558 9609 20396 Face 38648 9609 9845 20396 Face 38649 9900 9824 20397 Face 38650 9824 9652 20397 Face 38651 9652 9845 20397 Face 38652 9845 9900 20397 Face 38653 9927 9870 20398 Face 38654 9870 9824 20398 Face 38655 9824 9900 20398 Face 38656 9900 9927 20398 Face 38657 9873 9819 20399 Face 38658 9819 9870 20399 Face 38659 9870 9927 20399 Face 38660 9927 9873 20399 Face 38661 9640 9569 20400 Face 38662 9569 9819 20400 Face 38663 9819 9873 20400 Face 38664 9873 9640 20400 Face 38665 9370 9383 20401 Face 38666 9383 9569 20401 Face 38667 9569 9640 20401 Face 38668 9640 9370 20401 Face 38669 8131 8424 20402 Face 38670 8424 9383 20402 Face 38671 9383 9370 20402 Face 38672 9370 8131 20402 Face 38673 7632 7908 20403 Face 38674 7908 8424 20403 Face 38675 8424 8131 20403 Face 38676 8131 7632 20403 Face 38677 8018 8219 20404 Face 38678 8219 7908 20404 Face 38679 7908 7632 20404 Face 38680 7632 8018 20404 Face 38681 9392 9378 20405 Face 38682 9378 8018 20405 Face 38683 8018 8203 20405 Face 38684 8203 9392 20405 Face 38685 9629 9609 20406 Face 38686 9609 9378 20406 Face 38687 9378 9392 20406 Face 38688 9392 9629 20406 Face 38689 9864 9845 20407 Face 38690 9845 9609 20407 Face 38691 9609 9629 20407 Face 38692 9629 9864 20407 Face 38693 9960 9900 20408 Face 38694 9900 9845 20408 Face 38695 9845 9864 20408 Face 38696 9864 9960 20408 Face 38697 10002 9927 20409 Face 38698 9927 9900 20409 Face 38699 9900 9960 20409 Face 38700 9960 10002 20409 Face 38701 9903 9873 20410 Face 38702 9873 9927 20410 Face 38703 9927 10002 20410 Face 38704 10002 9903 20410 Face 38705 9649 9640 20411 Face 38706 9640 9873 20411 Face 38707 9873 9903 20411 Face 38708 9903 9649 20411 Face 38709 9364 9370 20412 Face 38710 9370 9640 20412 Face 38711 9640 9649 20412 Face 38712 9649 9364 20412 Face 38713 7950 8131 20413 Face 38714 8131 9370 20413 Face 38715 9370 9364 20413 Face 38716 9364 7950 20413 Face 38717 7044 7632 20414 Face 38718 7632 8131 20414 Face 38719 8131 7950 20414 Face 38720 7950 7044 20414 Face 38721 8203 8018 20415 Face 38722 8018 7632 20415 Face 38723 7632 7044 20415 Face 38724 7044 8203 20415 Face 38725 9394 9392 20416 Face 38726 9392 8203 20416 Face 38727 8203 8348 20416 Face 38728 8348 9394 20416 Face 38729 9573 9629 20417 Face 38730 9629 9392 20417 Face 38731 9392 9394 20417 Face 38732 9394 9573 20417 Face 38733 9798 9864 20418 Face 38734 9864 9629 20418 Face 38735 9629 9573 20418 Face 38736 9573 9798 20418 Face 38737 9913 9960 20419 Face 38738 9960 9864 20419 Face 38739 9864 9798 20419 Face 38740 9798 9913 20419 Face 38741 9961 10002 20420 Face 38742 10002 9960 20420 Face 38743 9960 9913 20420 Face 38744 9913 9961 20420 Face 38745 9842 9903 20421 Face 38746 9903 10002 20421 Face 38747 10002 9961 20421 Face 38748 9961 9842 20421 Face 38749 9572 9649 20422 Face 38750 9649 9903 20422 Face 38751 9903 9842 20422 Face 38752 9842 9572 20422 Face 38753 9335 9364 20423 Face 38754 9364 9649 20423 Face 38755 9649 9572 20423 Face 38756 9572 9335 20423 Face 38757 7850 7950 20424 Face 38758 7950 9364 20424 Face 38759 9364 9335 20424 Face 38760 9335 7850 20424 Face 38761 7677 7044 20425 Face 38762 7044 7950 20425 Face 38763 7950 7850 20425 Face 38764 7850 7677 20425 Face 38765 8348 8203 20426 Face 38766 8203 7044 20426 Face 38767 7044 7677 20426 Face 38768 7677 8348 20426 Face 38769 9341 9662 20427 Face 38770 9662 9627 20427 Face 38771 9627 9354 20427 Face 38772 9354 9341 20427 Face 38773 9662 9975 20428 Face 38774 9975 9892 20428 Face 38775 9892 9627 20428 Face 38776 9627 9662 20428 Face 38777 10109 10124 20429 Face 38778 10124 9989 20429 Face 38779 9989 9992 20429 Face 38780 9992 10109 20429 Face 38781 9989 10124 20430 Face 38782 10124 10183 20430 Face 38783 10183 10033 20430 Face 38784 10033 9989 20430 Face 38785 9785 9720 20431 Face 38786 9720 9659 20431 Face 38787 9659 9718 20431 Face 38788 9718 9785 20431 Face 38789 9580 9659 20432 Face 38790 9659 9720 20432 Face 38791 9720 9669 20432 Face 38792 9669 9580 20432 Face 38793 7114 7046 20433 Face 38794 7046 8492 20433 Face 38795 8492 8307 20433 Face 38796 8307 7114 20433 Face 38797 8492 7046 20434 Face 38798 7046 6848 20434 Face 38799 6848 7842 20434 Face 38800 7842 8492 20434 Face 38801 6363 6953 20435 Face 38802 6953 7661 20435 Face 38803 7661 7385 20435 Face 38804 7385 6363 20435 Face 38805 6953 8865 20436 Face 38806 8865 9354 20436 Face 38807 9354 7661 20436 Face 38808 7661 6953 20436 Face 38809 9264 9689 20437 Face 38810 9689 9662 20437 Face 38811 9662 9341 20437 Face 38812 9341 9264 20437 Face 38813 9689 10021 20438 Face 38814 10021 9975 20438 Face 38815 9975 9662 20438 Face 38816 9662 9689 20438 Face 38817 10021 10169 20439 Face 38818 10169 10109 20439 Face 38819 10109 9975 20439 Face 38820 9975 10021 20439 Face 38821 10251 10560 20440 Face 38822 10560 10370 20440 Face 38823 10370 10183 20440 Face 38824 10183 10251 20440 Face 38825 10336 10137 20441 Face 38826 10137 10101 20441 Face 38827 10101 10253 20441 Face 38828 10253 10336 20441 Face 38829 10137 9818 20442 Face 38830 9818 9785 20442 Face 38831 9785 10101 20442 Face 38832 10101 10137 20442 Face 38833 9045 9064 20443 Face 38834 9064 9669 20443 Face 38835 9669 9700 20443 Face 38836 9700 9045 20443 Face 38837 9045 6704 20444 Face 38838 6704 7114 20444 Face 38839 7114 9064 20444 Face 38840 9064 9045 20444 Face 38841 6704 5830 20445 Face 38842 5830 6324 20445 Face 38843 6324 6848 20445 Face 38844 6848 6704 20445 Face 38845 5815 6565 20446 Face 38846 6565 6953 20446 Face 38847 6953 6363 20446 Face 38848 6363 5815 20446 Face 38849 6565 8531 20447 Face 38850 8531 8865 20447 Face 38851 8865 6953 20447 Face 38852 6953 6565 20447 Face 38853 8320 9537 20448 Face 38854 9537 9619 20448 Face 38855 9619 8979 20448 Face 38856 8979 8320 20448 Face 38857 9537 9877 20449 Face 38858 9877 9967 20449 Face 38859 9967 9619 20449 Face 38860 9619 9537 20449 Face 38861 9877 10014 20450 Face 38862 10014 10122 20450 Face 38863 10122 9967 20450 Face 38864 9967 9877 20450 Face 38865 10067 10210 20451 Face 38866 10210 10408 20451 Face 38867 10408 10186 20451 Face 38868 10186 10067 20451 Face 38869 10140 9980 20452 Face 38870 9980 10095 20452 Face 38871 10095 10266 20452 Face 38872 10266 10140 20452 Face 38873 9980 9592 20453 Face 38874 9592 9711 20453 Face 38875 9711 10095 20453 Face 38876 10095 9980 20453 Face 38877 8804 8685 20454 Face 38878 8685 9711 20454 Face 38879 9711 9592 20454 Face 38880 9592 8804 20454 Face 38881 8804 6376 20455 Face 38882 6376 6421 20455 Face 38883 6421 8685 20455 Face 38884 8685 8804 20455 Face 38885 6376 5710 20456 Face 38886 5710 5718 20456 Face 38887 5718 6421 20456 Face 38888 6421 6376 20456 Face 38889 5757 6337 20457 Face 38890 6337 6449 20457 Face 38891 6449 5729 20457 Face 38892 5729 5757 20457 Face 38893 6337 8320 20458 Face 38894 8320 8366 20458 Face 38895 8366 6449 20458 Face 38896 6449 6337 20458 Face 38897 6657 6337 20459 Face 38898 6337 5757 20459 Face 38899 5757 5890 20459 Face 38900 5890 6657 20459 Face 38901 5491 6657 20460 Face 38902 6657 5890 20460 Face 38903 5890 5490 20460 Face 38904 5490 5491 20460 Face 38905 9915 10011 20461 Face 38906 10011 10066 20461 Face 38907 10066 9884 20461 Face 38908 9884 9915 20461 Face 38909 9932 10011 20462 Face 38910 10011 9915 20462 Face 38911 9915 9885 20462 Face 38912 9885 9932 20462 Face 38913 6376 8804 20463 Face 38914 8804 6931 20463 Face 38915 6931 6729 20463 Face 38916 6729 6376 20463 Face 38917 9475 9506 20464 Face 38918 9506 9137 20464 Face 38919 9137 9250 20464 Face 38920 9250 9475 20464 Face 38921 5494 5496 20465 Face 38922 5496 7341 20465 Face 38923 7341 7328 20465 Face 38924 7328 5494 20465 Face 38925 5498 7274 20466 Face 38926 7274 7341 20466 Face 38927 7341 5496 20466 Face 38928 5496 5498 20466 Face 38929 9297 9137 20467 Face 38930 9137 9506 20467 Face 38931 9506 9501 20467 Face 38932 9501 9297 20467 Face 38933 7328 7341 20468 Face 38934 7341 9137 20468 Face 38935 9137 9297 20468 Face 38936 9297 7328 20468 Face 38937 9594 9668 20469 Face 38938 9668 9811 20469 Face 38939 9811 9790 20469 Face 38940 9790 9594 20469 Face 38941 9576 9703 20470 Face 38942 9703 9800 20470 Face 38943 9800 9670 20470 Face 38944 9670 9576 20470 Face 38945 9510 9871 20471 Face 38946 9871 9882 20471 Face 38947 9882 9535 20471 Face 38948 9535 9510 20471 Face 38949 8845 8303 20472 Face 38950 8303 7544 20472 Face 38951 7544 8651 20472 Face 38952 8651 8845 20472 Face 38953 9410 9094 20473 Face 38954 9094 9304 20473 Face 38955 9304 9436 20473 Face 38956 9436 9410 20473 Face 38957 5495 5493 20474 Face 38958 5493 6265 20474 Face 38959 6265 6426 20474 Face 38960 6426 5495 20474 Face 38961 6938 7217 20475 Face 38962 7217 5501 20475 Face 38963 5501 5499 20475 Face 38964 5499 6938 20475 Face 38965 9363 7416 20476 Face 38966 7416 7250 20476 Face 38967 7250 9297 20476 Face 38968 9297 9363 20476 Face 38969 8320 7416 20477 Face 38970 7416 9363 20477 Face 38971 9363 9537 20477 Face 38972 9537 8320 20477 Face 38973 8651 9510 20478 Face 38974 9510 9535 20478 Face 38975 9535 8845 20478 Face 38976 8845 8651 20478 Face 38977 8320 6337 20479 Face 38978 6337 6657 20479 Face 38979 6657 7416 20479 Face 38980 7416 8320 20479 Face 38981 9363 9605 20480 Face 38982 9605 9877 20480 Face 38983 9877 9537 20480 Face 38984 9537 9363 20480 Face 38985 10003 10070 20481 Face 38986 10070 10011 20481 Face 38987 10011 9982 20481 Face 38988 9982 10003 20481 Face 38989 5596 6265 20482 Face 38990 6265 5493 20482 Face 38991 5493 5492 20482 Face 38992 5492 5596 20482 Face 38993 7229 8614 20483 Face 38994 8614 9250 20483 Face 38995 9250 7274 20483 Face 38996 7274 7229 20483 Face 38997 9418 9594 20484 Face 38998 9594 9790 20484 Face 38999 9790 9546 20484 Face 39000 9546 9418 20484 Face 39001 9560 9535 20485 Face 39002 9535 9882 20485 Face 39003 9882 9852 20485 Face 39004 9852 9560 20485 Face 39005 9605 9501 20486 Face 39006 9501 9915 20486 Face 39007 9915 9884 20486 Face 39008 9884 9605 20486 Face 39009 9852 9703 20487 Face 39010 9703 9514 20487 Face 39011 9514 9560 20487 Face 39012 9560 9852 20487 Face 39013 9501 9559 20488 Face 39014 9559 9885 20488 Face 39015 9885 9915 20488 Face 39016 9915 9501 20488 Face 39017 9297 9501 20489 Face 39018 9501 9605 20489 Face 39019 9605 9363 20489 Face 39020 9363 9297 20489 Face 39021 5491 5494 20490 Face 39022 5494 7328 20490 Face 39023 7328 7250 20490 Face 39024 7250 5491 20490 Face 39025 9546 9790 20491 Face 39026 9790 9885 20491 Face 39027 9885 9559 20491 Face 39028 9559 9546 20491 Face 39029 7274 9250 20492 Face 39030 9250 9137 20492 Face 39031 9137 7341 20492 Face 39032 7341 7274 20492 Face 39033 7274 5498 20493 Face 39034 5498 5502 20493 Face 39035 5502 7229 20493 Face 39036 7229 7274 20493 Face 39037 8614 9382 20494 Face 39038 9382 9475 20494 Face 39039 9475 9250 20494 Face 39040 9250 8614 20494 Face 39041 9790 9811 20495 Face 39042 9811 9932 20495 Face 39043 9932 9885 20495 Face 39044 9885 9790 20495 Face 39045 9800 9703 20496 Face 39046 9703 9852 20496 Face 39047 9852 9939 20496 Face 39048 9939 9800 20496 Face 39049 9466 9514 20497 Face 39050 9514 9703 20497 Face 39051 9703 9576 20497 Face 39052 9576 9466 20497 Face 39053 5596 5492 20498 Face 39054 5492 5490 20498 Face 39055 5490 5741 20498 Face 39056 5741 5596 20498 Face 39057 5495 6426 20499 Face 39058 6426 6711 20499 Face 39059 6711 5497 20499 Face 39060 5497 5495 20499 Face 39061 9436 9304 20500 Face 39062 9304 9141 20500 Face 39063 9141 9560 20500 Face 39064 9560 9436 20500 Face 39065 7263 8361 20501 Face 39066 8361 8568 20501 Face 39067 8568 7476 20501 Face 39068 7476 7263 20501 Face 39069 5499 5497 20502 Face 39070 5497 6711 20502 Face 39071 6711 6938 20502 Face 39072 6938 5499 20502 Face 39073 8489 7217 20503 Face 39074 7217 7476 20503 Face 39075 7476 8568 20503 Face 39076 8568 8489 20503 Face 39077 5710 6376 20504 Face 39078 6376 5596 20504 Face 39079 5596 5741 20504 Face 39080 5741 5710 20504 Face 39081 7225 6931 20505 Face 39082 6931 8804 20505 Face 39083 8804 8651 20505 Face 39084 8651 7225 20505 Face 39085 8804 9592 20506 Face 39086 9592 9510 20506 Face 39087 9510 8651 20506 Face 39088 8651 8804 20506 Face 39089 9510 9592 20507 Face 39090 9592 9980 20507 Face 39091 9980 9871 20507 Face 39092 9871 9510 20507 Face 39093 10003 9871 20508 Face 39094 9871 9980 20508 Face 39095 9980 10140 20508 Face 39096 10140 10003 20508 Face 39097 10066 10210 20509 Face 39098 10210 10067 20509 Face 39099 10067 9884 20509 Face 39100 9884 10066 20509 Face 39101 9877 9605 20510 Face 39102 9605 9884 20510 Face 39103 9884 10014 20510 Face 39104 10014 9877 20510 Face 39105 9730 9682 20511 Face 39106 9682 9481 20511 Face 39107 9481 9504 20511 Face 39108 9504 9730 20511 Face 39109 9294 9464 20512 Face 39110 9464 9481 20512 Face 39111 9481 9174 20512 Face 39112 9174 9294 20512 Face 39113 5524 7093 20513 Face 39114 7093 7198 20513 Face 39115 7198 5522 20513 Face 39116 5522 5524 20513 Face 39117 7198 7093 20514 Face 39118 7093 9345 20514 Face 39119 9345 9260 20514 Face 39120 9260 7198 20514 Face 39121 1063 1163 20515 Face 39122 1163 1193 20515 Face 39123 1193 1106 20515 Face 39124 1106 1063 20515 Face 39125 1042 1174 20516 Face 39126 1174 1163 20516 Face 39127 1163 1063 20516 Face 39128 1063 1042 20516 Face 39129 792 679 20517 Face 39130 679 939 20517 Face 39131 939 1101 20517 Face 39132 1101 792 20517 Face 39133 709 502 20518 Face 39134 502 679 20518 Face 39135 679 792 20518 Face 39136 792 709 20518 Face 39137 779 631 20519 Face 39138 631 502 20519 Face 39139 502 709 20519 Face 39140 709 779 20519 Face 39141 905 831 20520 Face 39142 831 631 20520 Face 39143 631 779 20520 Face 39144 779 905 20520 Face 39145 1042 975 20521 Face 39146 975 831 20521 Face 39147 831 905 20521 Face 39148 905 1042 20521 Face 39149 3202 3659 20522 Face 39150 3659 4723 20522 Face 39151 4723 4196 20522 Face 39152 4196 3202 20522 Face 39153 3926 1980 20523 Face 39154 1980 1679 20523 Face 39155 1679 2736 20523 Face 39156 2736 3926 20523 Face 39157 1012 939 20524 Face 39158 939 675 20524 Face 39159 675 862 20524 Face 39160 862 1012 20524 Face 39161 936 1070 20525 Face 39162 1070 1153 20525 Face 39163 1153 1053 20525 Face 39164 1053 936 20525 Face 39165 1465 1679 20526 Face 39166 1679 1980 20526 Face 39167 1980 1376 20526 Face 39168 1376 1465 20526 Face 39169 1260 944 20527 Face 39170 944 1101 20527 Face 39171 1101 1327 20527 Face 39172 1327 1260 20527 Face 39173 1376 1345 20528 Face 39174 1345 1286 20528 Face 39175 1286 1325 20528 Face 39176 1325 1376 20528 Face 39177 1325 1286 20529 Face 39178 1286 1227 20529 Face 39179 1227 1260 20529 Face 39180 1260 1325 20529 Face 39181 2318 1951 20530 Face 39182 1951 1741 20530 Face 39183 1741 2098 20530 Face 39184 2098 2318 20530 Face 39185 1486 1499 20531 Face 39186 1499 1542 20531 Face 39187 1542 1512 20531 Face 39188 1512 1486 20531 Face 39189 1512 1542 20532 Face 39190 1542 1570 20532 Face 39191 1570 1539 20532 Face 39192 1539 1512 20532 Face 39193 1663 1570 20533 Face 39194 1570 1542 20533 Face 39195 1542 1647 20533 Face 39196 1647 1663 20533 Face 39197 1647 1542 20534 Face 39198 1542 1499 20534 Face 39199 1499 1627 20534 Face 39200 1627 1647 20534 Face 39201 1245 1375 20535 Face 39202 1375 1421 20535 Face 39203 1421 1259 20535 Face 39204 1259 1245 20535 Face 39205 1259 1421 20536 Face 39206 1421 1377 20536 Face 39207 1377 1234 20536 Face 39208 1234 1259 20536 Face 39209 2686 2481 20537 Face 39210 2481 2098 20537 Face 39211 2098 2374 20537 Face 39212 2374 2686 20537 Face 39213 2374 2098 20538 Face 39214 2098 1741 20538 Face 39215 1741 1904 20538 Face 39216 1904 2374 20538 Face 39217 1579 1531 20539 Face 39218 1531 1580 20539 Face 39219 1580 1625 20539 Face 39220 1625 1579 20539 Face 39221 1625 1580 20540 Face 39222 1580 1609 20540 Face 39223 1609 1635 20540 Face 39224 1635 1625 20540 Face 39225 2098 2481 20541 Face 39226 2481 2555 20541 Face 39227 2555 2318 20541 Face 39228 2318 2098 20541 Face 39229 4331 4107 20542 Face 39230 4107 3860 20542 Face 39231 3860 4064 20542 Face 39232 4064 4331 20542 Face 39233 4064 3860 20543 Face 39234 3860 3565 20543 Face 39235 3565 3783 20543 Face 39236 3783 4064 20543 Face 39237 4621 4331 20544 Face 39238 4331 4064 20544 Face 39239 4064 4277 20544 Face 39240 4277 4621 20544 Face 39241 4277 4064 20545 Face 39242 4064 3783 20545 Face 39243 3783 4014 20545 Face 39244 4014 4277 20545 Face 39245 4780 4621 20546 Face 39246 4621 4277 20546 Face 39247 4277 4426 20546 Face 39248 4426 4780 20546 Face 39249 4426 4277 20547 Face 39250 4277 4014 20547 Face 39251 4014 4200 20547 Face 39252 4200 4426 20547 Face 39253 4336 3918 20548 Face 39254 3918 3699 20548 Face 39255 3699 4281 20548 Face 39256 4281 4336 20548 Face 39257 4281 3699 20549 Face 39258 3699 3501 20549 Face 39259 3501 3819 20549 Face 39260 3819 4281 20549 Face 39261 3286 2686 20550 Face 39262 2686 2374 20550 Face 39263 2374 2950 20550 Face 39264 2950 3286 20550 Face 39265 2950 2374 20551 Face 39266 2374 2291 20551 Face 39267 2291 2740 20551 Face 39268 2740 2950 20551 Face 39269 3918 3286 20552 Face 39270 3286 2950 20552 Face 39271 2950 3699 20552 Face 39272 3699 3918 20552 Face 39273 3699 2950 20553 Face 39274 2950 2740 20553 Face 39275 2740 3501 20553 Face 39276 3501 3699 20553 Face 39277 3286 4014 20554 Face 39278 4014 3783 20554 Face 39279 3783 2686 20554 Face 39280 2686 3286 20554 Face 39281 3918 4200 20555 Face 39282 4200 4014 20555 Face 39283 4014 3286 20555 Face 39284 3286 3918 20555 Face 39285 4336 4398 20556 Face 39286 4398 4200 20556 Face 39287 4200 3918 20556 Face 39288 3918 4336 20556 Face 39289 5299 5324 20557 Face 39290 5324 5126 20557 Face 39291 5126 5006 20557 Face 39292 5006 5299 20557 Face 39293 5006 5126 20558 Face 39294 5126 5284 20558 Face 39295 5284 5156 20558 Face 39296 5156 5006 20558 Face 39297 5308 5284 20559 Face 39298 5284 5126 20559 Face 39299 5126 5139 20559 Face 39300 5139 5308 20559 Face 39301 5139 5126 20560 Face 39302 5126 5324 20560 Face 39303 5324 5317 20560 Face 39304 5317 5139 20560 Face 39305 5317 5215 20561 Face 39306 5215 5052 20561 Face 39307 5052 5139 20561 Face 39308 5139 5317 20561 Face 39309 5139 5052 20562 Face 39310 5052 5230 20562 Face 39311 5230 5308 20562 Face 39312 5308 5139 20562 Face 39313 4686 5230 20563 Face 39314 5230 5052 20563 Face 39315 5052 4453 20563 Face 39316 4453 4686 20563 Face 39317 4453 5052 20564 Face 39318 5052 5215 20564 Face 39319 5215 4723 20564 Face 39320 4723 4453 20564 Face 39321 2683 2514 20565 Face 39322 2514 2020 20565 Face 39323 2020 2267 20565 Face 39324 2267 2683 20565 Face 39325 2267 2020 20566 Face 39326 2020 1781 20566 Face 39327 1781 2066 20566 Face 39328 2066 2267 20566 Face 39329 2514 2179 20567 Face 39330 2179 1755 20567 Face 39331 1755 2020 20567 Face 39332 2020 2514 20567 Face 39333 2020 1755 20568 Face 39334 1755 1704 20568 Face 39335 1704 1781 20568 Face 39336 1781 2020 20568 Face 39337 979 835 20569 Face 39338 835 847 20569 Face 39339 847 996 20569 Face 39340 996 979 20569 Face 39341 996 847 20570 Face 39342 847 831 20570 Face 39343 831 975 20570 Face 39344 975 996 20570 Face 39345 631 831 20571 Face 39346 831 847 20571 Face 39347 847 668 20571 Face 39348 668 631 20571 Face 39349 668 847 20572 Face 39350 847 835 20572 Face 39351 835 637 20572 Face 39352 637 668 20572 Face 39353 637 485 20573 Face 39354 485 547 20573 Face 39355 547 668 20573 Face 39356 668 637 20573 Face 39357 668 547 20574 Face 39358 547 502 20574 Face 39359 502 631 20574 Face 39360 631 668 20574 Face 39361 679 502 20575 Face 39362 502 547 20575 Face 39363 547 708 20575 Face 39364 708 679 20575 Face 39365 708 547 20576 Face 39366 547 485 20576 Face 39367 485 675 20576 Face 39368 675 708 20576 Face 39369 859 978 20577 Face 39370 978 1030 20577 Face 39371 1030 912 20577 Face 39372 912 859 20577 Face 39373 912 1030 20578 Face 39374 1030 1031 20578 Face 39375 1031 923 20578 Face 39376 923 912 20578 Face 39377 923 876 20579 Face 39378 876 853 20579 Face 39379 853 912 20579 Face 39380 912 923 20579 Face 39381 912 853 20580 Face 39382 853 794 20580 Face 39383 794 859 20580 Face 39384 859 912 20580 Face 39385 862 794 20581 Face 39386 794 853 20581 Face 39387 853 921 20581 Face 39388 921 862 20581 Face 39389 921 853 20582 Face 39390 853 876 20582 Face 39391 876 936 20582 Face 39392 936 921 20582 Face 39393 1216 1232 20583 Face 39394 1232 1258 20583 Face 39395 1258 1269 20583 Face 39396 1269 1216 20583 Face 39397 1225 1237 20584 Face 39398 1237 1232 20584 Face 39399 1232 1216 20584 Face 39400 1216 1225 20584 Face 39401 1222 1236 20585 Face 39402 1236 1237 20585 Face 39403 1237 1225 20585 Face 39404 1225 1222 20585 Face 39405 3821 3724 20586 Face 39406 3724 5520 20586 Face 39407 5520 5523 20586 Face 39408 5523 3821 20586 Face 39409 3650 3640 20587 Face 39410 3640 3724 20587 Face 39411 3724 3821 20587 Face 39412 3821 3650 20587 Face 39413 3495 3554 20588 Face 39414 3554 3640 20588 Face 39415 3640 3650 20588 Face 39416 3650 3495 20588 Face 39417 1751 1703 20589 Face 39418 1703 3554 20589 Face 39419 3554 3495 20589 Face 39420 3495 1751 20589 Face 39421 1581 1592 20590 Face 39422 1592 1703 20590 Face 39423 1703 1751 20590 Face 39424 1751 1581 20590 Face 39425 1558 1555 20591 Face 39426 1555 1592 20591 Face 39427 1592 1581 20591 Face 39428 1581 1558 20591 Face 39429 1541 1516 20592 Face 39430 1516 1555 20592 Face 39431 1555 1558 20592 Face 39432 1558 1541 20592 Face 39433 1315 1261 20593 Face 39434 1261 1516 20593 Face 39435 1516 1541 20593 Face 39436 1541 1315 20593 Face 39437 1222 1195 20594 Face 39438 1195 1261 20594 Face 39439 1261 1315 20594 Face 39440 1315 1222 20594 Face 39441 1293 1262 20595 Face 39442 1262 1287 20595 Face 39443 1287 1269 20595 Face 39444 1269 1293 20595 Face 39445 1319 1275 20596 Face 39446 1275 1262 20596 Face 39447 1262 1293 20596 Face 39448 1293 1319 20596 Face 39449 1335 1272 20597 Face 39450 1272 1275 20597 Face 39451 1275 1319 20597 Face 39452 1319 1335 20597 Face 39453 1505 1506 20598 Face 39454 1506 1272 20598 Face 39455 1272 1335 20598 Face 39456 1335 1505 20598 Face 39457 1698 1697 20599 Face 39458 1697 1506 20599 Face 39459 1506 1538 20599 Face 39460 1538 1698 20599 Face 39461 1777 2058 20600 Face 39462 2058 1697 20600 Face 39463 1697 1698 20600 Face 39464 1698 1777 20600 Face 39465 1785 2102 20601 Face 39466 2102 2058 20601 Face 39467 2058 1777 20601 Face 39468 1777 1785 20601 Face 39469 3845 3706 20602 Face 39470 3706 2102 20602 Face 39471 2102 1785 20602 Face 39472 1785 3845 20602 Face 39473 5522 5521 20603 Face 39474 5521 3706 20603 Face 39475 3706 3845 20603 Face 39476 3845 5522 20603 Face 39477 3606 3495 20604 Face 39478 3495 3650 20604 Face 39479 3650 3764 20604 Face 39480 3764 3606 20604 Face 39481 3764 3650 20605 Face 39482 3650 3821 20605 Face 39483 3821 3948 20605 Face 39484 3948 3764 20605 Face 39485 1369 1335 20606 Face 39486 1335 1319 20606 Face 39487 1319 1351 20606 Face 39488 1351 1369 20606 Face 39489 1351 1319 20607 Face 39490 1319 1293 20607 Face 39491 1293 1338 20607 Face 39492 1338 1351 20607 Face 39493 1528 1549 20608 Face 39494 1549 1523 20608 Face 39495 1523 1505 20608 Face 39496 1505 1528 20608 Face 39497 1549 1572 20609 Face 39498 1572 1538 20609 Face 39499 1538 1523 20609 Face 39500 1523 1549 20609 Face 39501 3948 3821 20610 Face 39502 3821 5523 20610 Face 39503 5523 5526 20610 Face 39504 5526 3948 20610 Face 39505 1871 1751 20611 Face 39506 1751 3495 20611 Face 39507 3495 3606 20611 Face 39508 3606 1871 20611 Face 39509 1236 1222 20612 Face 39510 1222 1315 20612 Face 39511 1315 1324 20612 Face 39512 1324 1236 20612 Face 39513 1269 1265 20613 Face 39514 1265 1195 20613 Face 39515 1195 1216 20613 Face 39516 1216 1269 20613 Face 39517 1338 1293 20614 Face 39518 1293 1269 20614 Face 39519 1269 1258 20614 Face 39520 1258 1338 20614 Face 39521 1528 1505 20615 Face 39522 1505 1335 20615 Face 39523 1335 1369 20615 Face 39524 1369 1528 20615 Face 39525 1700 1698 20616 Face 39526 1698 1538 20616 Face 39527 1538 1572 20616 Face 39528 1572 1700 20616 Face 39529 1330 1451 20617 Face 39530 1451 1361 20617 Face 39531 1361 1277 20617 Face 39532 1277 1330 20617 Face 39533 3759 3827 20618 Face 39534 3827 5513 20618 Face 39535 5513 5517 20618 Face 39536 5517 3759 20618 Face 39537 1814 2354 20619 Face 39538 2354 3827 20619 Face 39539 3827 3759 20619 Face 39540 3759 1814 20619 Face 39541 1575 1605 20620 Face 39542 1605 2354 20620 Face 39543 2354 1814 20620 Face 39544 1814 1575 20620 Face 39545 1339 1469 20621 Face 39546 1469 1605 20621 Face 39547 1605 1537 20621 Face 39548 1537 1339 20621 Face 39549 1246 1361 20622 Face 39550 1361 1469 20622 Face 39551 1469 1339 20622 Face 39552 1339 1246 20622 Face 39553 1571 1645 20623 Face 39554 1645 1451 20623 Face 39555 1451 1330 20623 Face 39556 1330 1571 20623 Face 39557 1772 2429 20624 Face 39558 2429 1645 20624 Face 39559 1645 1571 20624 Face 39560 1571 1772 20624 Face 39561 3692 3814 20625 Face 39562 3814 2429 20625 Face 39563 2429 2385 20625 Face 39564 2385 3692 20625 Face 39565 5516 5514 20626 Face 39566 5514 3814 20626 Face 39567 3814 3692 20626 Face 39568 3692 5516 20626 Face 39569 1548 1554 20627 Face 39570 1554 1515 20627 Face 39571 1515 1537 20627 Face 39572 1537 1548 20627 Face 39573 1554 1548 20628 Face 39574 1548 1575 20628 Face 39575 1575 1591 20628 Face 39576 1591 1554 20628 Face 39577 1368 1343 20629 Face 39578 1343 1317 20629 Face 39579 1317 1277 20629 Face 39580 1277 1368 20629 Face 39581 1343 1368 20630 Face 39582 1368 1246 20630 Face 39583 1246 1295 20630 Face 39584 1295 1343 20630 Face 39585 2420 1772 20631 Face 39586 1772 1743 20631 Face 39587 1743 2167 20631 Face 39588 2167 2420 20631 Face 39589 2167 2333 20632 Face 39590 2333 2385 20632 Face 39591 2385 2420 20632 Face 39592 2420 2167 20632 Face 39593 2102 2333 20633 Face 39594 2333 2167 20633 Face 39595 2167 2058 20633 Face 39596 2058 2102 20633 Face 39597 2058 2167 20634 Face 39598 2167 1743 20634 Face 39599 1743 1697 20634 Face 39600 1697 2058 20634 Face 39601 1287 1317 20635 Face 39602 1317 1343 20635 Face 39603 1343 1320 20635 Face 39604 1320 1287 20635 Face 39605 1320 1343 20636 Face 39606 1343 1295 20636 Face 39607 1295 1265 20636 Face 39608 1265 1320 20636 Face 39609 1516 1515 20637 Face 39610 1515 1554 20637 Face 39611 1554 1555 20637 Face 39612 1555 1516 20637 Face 39613 1555 1554 20638 Face 39614 1554 1591 20638 Face 39615 1591 1592 20638 Face 39616 1592 1555 20638 Face 39617 3661 3706 20639 Face 39618 3706 5521 20639 Face 39619 5521 5518 20639 Face 39620 5518 3661 20639 Face 39621 2333 2102 20640 Face 39622 2102 3706 20640 Face 39623 3706 3661 20640 Face 39624 3661 2333 20640 Face 39625 1529 1506 20641 Face 39626 1506 1697 20641 Face 39627 1697 1743 20641 Face 39628 1743 1529 20641 Face 39629 1284 1272 20642 Face 39630 1272 1506 20642 Face 39631 1506 1529 20642 Face 39632 1529 1284 20642 Face 39633 1317 1287 20643 Face 39634 1287 1262 20643 Face 39635 1262 1284 20643 Face 39636 1284 1317 20643 Face 39637 1205 1195 20644 Face 39638 1195 1265 20644 Face 39639 1265 1295 20644 Face 39640 1295 1205 20644 Face 39641 1274 1261 20645 Face 39642 1261 1195 20645 Face 39643 1195 1205 20645 Face 39644 1205 1274 20645 Face 39645 1515 1516 20646 Face 39646 1516 1261 20646 Face 39647 1261 1274 20646 Face 39648 1274 1515 20646 Face 39649 5519 5520 20647 Face 39650 5520 3724 20647 Face 39651 3724 3752 20647 Face 39652 3752 5519 20647 Face 39653 3752 3554 20648 Face 39654 3554 1703 20648 Face 39655 1703 1720 20648 Face 39656 1720 3752 20648 Face 39657 1720 1703 20649 Face 39658 1703 1592 20649 Face 39659 1592 1591 20649 Face 39660 1591 1720 20649 Face 39661 1284 1330 20650 Face 39662 1330 1277 20650 Face 39663 1277 1317 20650 Face 39664 1317 1284 20650 Face 39665 1529 1743 20651 Face 39666 1743 1772 20651 Face 39667 1772 1571 20651 Face 39668 1571 1529 20651 Face 39669 3692 3661 20652 Face 39670 3661 5518 20652 Face 39671 5518 5516 20652 Face 39672 5516 3692 20652 Face 39673 1339 1274 20653 Face 39674 1274 1205 20653 Face 39675 1205 1246 20653 Face 39676 1246 1339 20653 Face 39677 1339 1537 20654 Face 39678 1537 1515 20654 Face 39679 1515 1274 20654 Face 39680 1274 1339 20654 Face 39681 1720 1591 20655 Face 39682 1591 1575 20655 Face 39683 1575 1814 20655 Face 39684 1814 1720 20655 Face 39685 1330 1284 20656 Face 39686 1284 1529 20656 Face 39687 1529 1571 20656 Face 39688 1571 1330 20656 Face 39689 5517 5519 20657 Face 39690 5519 3752 20657 Face 39691 3752 3759 20657 Face 39692 3759 5517 20657 Face 39693 2385 2333 20658 Face 39694 2333 3661 20658 Face 39695 3661 3692 20658 Face 39696 3692 2385 20658 Face 39697 3759 3752 20659 Face 39698 3752 1720 20659 Face 39699 1720 1814 20659 Face 39700 1814 3759 20659 Face 39701 908 1227 20660 Face 39702 1227 1334 20660 Face 39703 1334 950 20660 Face 39704 950 908 20660 Face 39705 709 908 20661 Face 39706 908 950 20661 Face 39707 950 779 20661 Face 39708 779 709 20661 Face 39709 794 485 20662 Face 39710 485 637 20662 Face 39711 637 859 20662 Face 39712 859 794 20662 Face 39713 1024 876 20663 Face 39714 876 923 20663 Face 39715 923 1078 20663 Face 39716 1078 1024 20663 Face 39717 1356 1024 20664 Face 39718 1024 1078 20664 Face 39719 1078 1426 20664 Face 39720 1426 1356 20664 Face 39721 1781 1356 20665 Face 39722 1356 1426 20665 Face 39723 1426 2066 20665 Face 39724 2066 1781 20665 Face 39725 4474 2514 20666 Face 39726 2514 2683 20666 Face 39727 2683 4597 20666 Face 39728 4597 4474 20666 Face 39729 5230 4474 20667 Face 39730 4474 4597 20667 Face 39731 4597 5308 20667 Face 39732 5308 5230 20667 Face 39733 5215 5317 20668 Face 39734 5317 4626 20668 Face 39735 4626 4338 20668 Face 39736 4338 5215 20668 Face 39737 2000 4338 20669 Face 39738 4338 4626 20669 Face 39739 4626 2360 20669 Face 39740 2360 2000 20669 Face 39741 1345 2000 20670 Face 39742 2000 2360 20670 Face 39743 2360 1334 20670 Face 39744 1334 1345 20670 Face 39745 2825 1768 20671 Face 39746 1768 1642 20671 Face 39747 1642 1673 20671 Face 39748 1673 2825 20671 Face 39749 1673 1642 20672 Face 39750 1642 1497 20672 Face 39751 1497 1487 20672 Face 39752 1487 1673 20672 Face 39753 1487 1497 20673 Face 39754 1497 1374 20673 Face 39755 1374 1393 20673 Face 39756 1393 1487 20673 Face 39757 1393 1374 20674 Face 39758 1374 1283 20674 Face 39759 1283 1221 20674 Face 39760 1221 1393 20674 Face 39761 1221 1283 20675 Face 39762 1283 1235 20675 Face 39763 1235 1175 20675 Face 39764 1175 1221 20675 Face 39765 1175 1235 20676 Face 39766 1235 1340 20676 Face 39767 1340 1226 20676 Face 39768 1226 1175 20676 Face 39769 1226 1340 20677 Face 39770 1340 1490 20677 Face 39771 1490 1476 20677 Face 39772 1476 1226 20677 Face 39773 1476 1490 20678 Face 39774 1490 1640 20678 Face 39775 1640 1662 20678 Face 39776 1662 1476 20678 Face 39777 1662 1640 20679 Face 39778 1640 1709 20679 Face 39779 1709 2623 20679 Face 39780 2623 1662 20679 Face 39781 2623 1709 20680 Face 39782 1709 1961 20680 Face 39783 1961 3129 20680 Face 39784 3129 2623 20680 Face 39785 3129 1961 20681 Face 39786 1961 1768 20681 Face 39787 1768 2825 20681 Face 39788 2825 3129 20681 Face 39789 3017 2825 20682 Face 39790 2825 1673 20682 Face 39791 1673 1667 20682 Face 39792 1667 3017 20682 Face 39793 1667 1673 20683 Face 39794 1673 1487 20683 Face 39795 1487 1436 20683 Face 39796 1436 1667 20683 Face 39797 1436 1487 20684 Face 39798 1487 1393 20684 Face 39799 1393 1200 20684 Face 39800 1200 1436 20684 Face 39801 1200 1393 20685 Face 39802 1393 1221 20685 Face 39803 1221 1145 20685 Face 39804 1145 1200 20685 Face 39805 1145 1221 20686 Face 39806 1221 1175 20686 Face 39807 1175 1118 20686 Face 39808 1118 1145 20686 Face 39809 1118 1175 20687 Face 39810 1175 1226 20687 Face 39811 1226 1172 20687 Face 39812 1172 1118 20687 Face 39813 1172 1226 20688 Face 39814 1226 1476 20688 Face 39815 1476 1405 20688 Face 39816 1405 1172 20688 Face 39817 1405 1476 20689 Face 39818 1476 1662 20689 Face 39819 1662 1675 20689 Face 39820 1675 1405 20689 Face 39821 1675 1662 20690 Face 39822 1662 2623 20690 Face 39823 2623 2911 20690 Face 39824 2911 1675 20690 Face 39825 2911 2623 20691 Face 39826 2623 3129 20691 Face 39827 3129 3413 20691 Face 39828 3413 2911 20691 Face 39829 3413 3129 20692 Face 39830 3129 2825 20692 Face 39831 2825 3017 20692 Face 39832 3017 3413 20692 Face 39833 2841 3017 20693 Face 39834 3017 1667 20693 Face 39835 1667 1653 20693 Face 39836 1653 2841 20693 Face 39837 1653 1667 20694 Face 39838 1667 1436 20694 Face 39839 1436 1416 20694 Face 39840 1416 1653 20694 Face 39841 1416 1436 20695 Face 39842 1436 1200 20695 Face 39843 1200 1181 20695 Face 39844 1181 1416 20695 Face 39845 1181 1200 20696 Face 39846 1200 1145 20696 Face 39847 1145 1085 20696 Face 39848 1085 1181 20696 Face 39849 1085 1145 20697 Face 39850 1145 1118 20697 Face 39851 1118 1043 20697 Face 39852 1043 1085 20697 Face 39853 1043 1118 20698 Face 39854 1118 1172 20698 Face 39855 1172 1142 20698 Face 39856 1142 1043 20698 Face 39857 1142 1172 20699 Face 39858 1172 1405 20699 Face 39859 1405 1396 20699 Face 39860 1396 1142 20699 Face 39861 1396 1405 20700 Face 39862 1405 1675 20700 Face 39863 1675 1681 20700 Face 39864 1681 1396 20700 Face 39865 1681 1675 20701 Face 39866 1675 2911 20701 Face 39867 2911 3090 20701 Face 39868 3090 1681 20701 Face 39869 3090 2911 20702 Face 39870 2911 3413 20702 Face 39871 3413 3995 20702 Face 39872 3995 3090 20702 Face 39873 3995 3413 20703 Face 39874 3413 3017 20703 Face 39875 3017 2841 20703 Face 39876 2841 3995 20703 Face 39877 2701 2841 20704 Face 39878 2841 1653 20704 Face 39879 1653 1651 20704 Face 39880 1651 2701 20704 Face 39881 1651 1653 20705 Face 39882 1653 1416 20705 Face 39883 1416 1472 20705 Face 39884 1472 1651 20705 Face 39885 1472 1416 20706 Face 39886 1416 1181 20706 Face 39887 1181 1247 20706 Face 39888 1247 1472 20706 Face 39889 1247 1181 20707 Face 39890 1181 1085 20707 Face 39891 1085 1132 20707 Face 39892 1132 1247 20707 Face 39893 1132 1085 20708 Face 39894 1085 1043 20708 Face 39895 1043 1084 20708 Face 39896 1084 1132 20708 Face 39897 1084 1043 20709 Face 39898 1043 1142 20709 Face 39899 1142 1203 20709 Face 39900 1203 1084 20709 Face 39901 1203 1142 20710 Face 39902 1142 1396 20710 Face 39903 1396 1473 20710 Face 39904 1473 1203 20710 Face 39905 1473 1396 20711 Face 39906 1396 1681 20711 Face 39907 1681 1710 20711 Face 39908 1710 1473 20711 Face 39909 1710 1681 20712 Face 39910 1681 3090 20712 Face 39911 3090 3195 20712 Face 39912 3195 1710 20712 Face 39913 3195 3090 20713 Face 39914 3090 3995 20713 Face 39915 3995 3364 20713 Face 39916 3364 3195 20713 Face 39917 3364 3995 20714 Face 39918 3995 2841 20714 Face 39919 2841 2701 20714 Face 39920 2701 3364 20714 Face 39921 1691 1418 20715 Face 39922 1418 1383 20715 Face 39923 1383 1704 20715 Face 39924 1704 1691 20715 Face 39925 1418 1153 20716 Face 39926 1153 1070 20716 Face 39927 1070 1383 20716 Face 39928 1383 1418 20716 Face 39929 1053 1056 20717 Face 39930 1056 921 20717 Face 39931 921 936 20717 Face 39932 936 1053 20717 Face 39933 1012 862 20718 Face 39934 862 921 20718 Face 39935 921 1056 20718 Face 39936 1056 1012 20718 Face 39937 1327 1386 20719 Face 39938 1386 1325 20719 Face 39939 1325 1260 20719 Face 39940 1260 1327 20719 Face 39941 1376 1325 20720 Face 39942 1325 1386 20720 Face 39943 1386 1465 20720 Face 39944 1465 1376 20720 Face 39945 2736 2553 20721 Face 39946 2553 3994 20721 Face 39947 3994 3926 20721 Face 39948 3926 2736 20721 Face 39949 3202 4196 20722 Face 39950 4196 3994 20722 Face 39951 3994 2553 20722 Face 39952 2553 3202 20722 Face 39953 3659 3381 20723 Face 39954 3381 4091 20723 Face 39955 4091 4686 20723 Face 39956 4686 3659 20723 Face 39957 3381 1691 20724 Face 39958 1691 2179 20724 Face 39959 2179 4091 20724 Face 39960 4091 3381 20724 Face 39961 1704 1383 20725 Face 39962 1383 1356 20725 Face 39963 1356 1781 20725 Face 39964 1781 1704 20725 Face 39965 1383 1070 20726 Face 39966 1070 1024 20726 Face 39967 1024 1356 20726 Face 39968 1356 1383 20726 Face 39969 1070 936 20727 Face 39970 936 876 20727 Face 39971 876 1024 20727 Face 39972 1024 1070 20727 Face 39973 862 675 20728 Face 39974 675 485 20728 Face 39975 485 794 20728 Face 39976 794 862 20728 Face 39977 792 944 20729 Face 39978 944 908 20729 Face 39979 908 709 20729 Face 39980 709 792 20729 Face 39981 944 1260 20730 Face 39982 1260 1227 20730 Face 39983 1227 908 20730 Face 39984 908 944 20730 Face 39985 1345 1376 20731 Face 39986 1376 1980 20731 Face 39987 1980 2000 20731 Face 39988 2000 1345 20731 Face 39989 1980 3926 20732 Face 39990 3926 4338 20732 Face 39991 4338 2000 20732 Face 39992 2000 1980 20732 Face 39993 4196 4723 20733 Face 39994 4723 5215 20733 Face 39995 5215 4338 20733 Face 39996 4338 4196 20733 Face 39997 4686 4091 20734 Face 39998 4091 4474 20734 Face 39999 4474 5230 20734 Face 40000 5230 4686 20734 Face 40001 4091 2179 20735 Face 40002 2179 2514 20735 Face 40003 2514 4474 20735 Face 40004 4474 4091 20735 Face 40005 2066 1426 20736 Face 40006 1426 1508 20736 Face 40007 1508 2723 20736 Face 40008 2723 2066 20736 Face 40009 1426 1078 20737 Face 40010 1078 1168 20737 Face 40011 1168 1508 20737 Face 40012 1508 1426 20737 Face 40013 1078 923 20738 Face 40014 923 1031 20738 Face 40015 1031 1168 20738 Face 40016 1168 1078 20738 Face 40017 859 637 20739 Face 40018 637 835 20739 Face 40019 835 978 20739 Face 40020 978 859 20739 Face 40021 779 950 20740 Face 40022 950 1065 20740 Face 40023 1065 905 20740 Face 40024 905 779 20740 Face 40025 950 1334 20741 Face 40026 1334 1453 20741 Face 40027 1453 1065 20741 Face 40028 1065 950 20741 Face 40029 1453 1334 20742 Face 40030 1334 2360 20742 Face 40031 2360 2241 20742 Face 40032 2241 1453 20742 Face 40033 2360 4626 20743 Face 40034 4626 4670 20743 Face 40035 4670 2241 20743 Face 40036 2241 2360 20743 Face 40037 4626 5317 20744 Face 40038 5317 5324 20744 Face 40039 5324 4670 20744 Face 40040 4670 4626 20744 Face 40041 5308 4597 20745 Face 40042 4597 4712 20745 Face 40043 4712 5284 20745 Face 40044 5284 5308 20745 Face 40045 4597 2683 20746 Face 40046 2683 2723 20746 Face 40047 2723 4712 20746 Face 40048 4712 4597 20746 Face 40049 5156 5284 20747 Face 40050 5284 4712 20747 Face 40051 4712 4384 20747 Face 40052 4384 5156 20747 Face 40053 5490 5156 20748 Face 40054 5156 4384 20748 Face 40055 4384 5491 20748 Face 40056 5491 5490 20748 Face 40057 1161 979 20749 Face 40058 979 1034 20749 Face 40059 1034 1130 20749 Face 40060 1130 1161 20749 Face 40061 1160 1130 20750 Face 40062 1130 1034 20750 Face 40063 1034 1113 20750 Face 40064 1113 1160 20750 Face 40065 4315 4115 20751 Face 40066 4115 2241 20751 Face 40067 2241 4670 20751 Face 40068 4670 4315 20751 Face 40069 1795 1908 20752 Face 40070 1908 1539 20752 Face 40071 1539 1570 20752 Face 40072 1570 1795 20752 Face 40073 3715 3702 20753 Face 40074 3702 5496 20753 Face 40075 5496 5494 20753 Face 40076 5494 3715 20753 Face 40077 5496 3702 20754 Face 40078 3702 3772 20754 Face 40079 3772 5498 20754 Face 40080 5498 5496 20754 Face 40081 1544 1539 20755 Face 40082 1539 1908 20755 Face 40083 1908 1748 20755 Face 40084 1748 1544 20755 Face 40085 1748 1908 20756 Face 40086 1908 3702 20756 Face 40087 3702 3715 20756 Face 40088 3715 1748 20756 Face 40089 1255 1234 20757 Face 40090 1234 1377 20757 Face 40091 1377 1448 20757 Face 40092 1448 1255 20757 Face 40093 1375 1245 20758 Face 40094 1245 1342 20758 Face 40095 1342 1466 20758 Face 40096 1466 1375 20758 Face 40097 1510 1163 20759 Face 40098 1163 1174 20759 Face 40099 1174 1535 20759 Face 40100 1535 1510 20759 Face 40101 2393 3501 20760 Face 40102 3501 2740 20760 Face 40103 2740 2197 20760 Face 40104 2197 2393 20760 Face 40105 1609 1741 20761 Face 40106 1741 1951 20761 Face 40107 1951 1635 20761 Face 40108 1635 1609 20761 Face 40109 4621 4780 20762 Face 40110 4780 5493 20762 Face 40111 5493 5495 20762 Face 40112 5495 4621 20762 Face 40113 5499 5501 20763 Face 40114 5501 3824 20763 Face 40115 3824 4107 20763 Face 40116 4107 5499 20763 Face 40117 1748 3796 20764 Face 40118 3796 3629 20764 Face 40119 3629 1682 20764 Face 40120 1682 1748 20764 Face 40121 1508 1682 20765 Face 40122 1682 3629 20765 Face 40123 3629 2723 20765 Face 40124 2723 1508 20765 Face 40125 2197 1510 20766 Face 40126 1510 1535 20766 Face 40127 1535 2393 20766 Face 40128 2393 2197 20766 Face 40129 3629 4384 20767 Face 40130 4384 4712 20767 Face 40131 4712 2723 20767 Face 40132 2723 3629 20767 Face 40133 1508 1168 20768 Face 40134 1168 1440 20768 Face 40135 1440 1682 20768 Face 40136 1682 1508 20768 Face 40137 1063 1034 20769 Face 40138 1034 975 20769 Face 40139 975 1042 20769 Face 40140 1042 1063 20769 Face 40141 5492 5493 20770 Face 40142 5493 4780 20770 Face 40143 4780 5449 20770 Face 40144 5449 5492 20770 Face 40145 3772 1795 20771 Face 40146 1795 2426 20771 Face 40147 2426 3811 20771 Face 40148 3811 3772 20771 Face 40149 1499 1255 20772 Face 40150 1255 1448 20772 Face 40151 1448 1627 20772 Face 40152 1627 1499 20772 Face 40153 1193 1163 20773 Face 40154 1163 1510 20773 Face 40155 1510 1485 20773 Face 40156 1485 1193 20773 Face 40157 1161 1130 20774 Face 40158 1130 1544 20774 Face 40159 1544 1440 20774 Face 40160 1440 1161 20774 Face 40161 1485 1531 20775 Face 40162 1531 1342 20775 Face 40163 1342 1193 20775 Face 40164 1193 1485 20775 Face 40165 1130 1160 20776 Face 40166 1160 1486 20776 Face 40167 1486 1544 20776 Face 40168 1544 1130 20776 Face 40169 1682 1440 20777 Face 40170 1440 1544 20777 Face 40171 1544 1748 20777 Face 40172 1748 1682 20777 Face 40173 3796 3715 20778 Face 40174 3715 5494 20778 Face 40175 5494 5491 20778 Face 40176 5491 3796 20778 Face 40177 1486 1160 20779 Face 40178 1160 1255 20779 Face 40179 1255 1499 20779 Face 40180 1499 1486 20779 Face 40181 3702 1908 20780 Face 40182 1908 1795 20780 Face 40183 1795 3772 20780 Face 40184 3772 3702 20780 Face 40185 3811 5502 20781 Face 40186 5502 5498 20781 Face 40187 5498 3772 20781 Face 40188 3772 3811 20781 Face 40189 1795 1570 20782 Face 40190 1570 1663 20782 Face 40191 1663 2426 20782 Face 40192 2426 1795 20782 Face 40193 1160 1113 20783 Face 40194 1113 1234 20783 Face 40195 1234 1255 20783 Face 40196 1255 1160 20783 Face 40197 1106 1193 20784 Face 40198 1193 1342 20784 Face 40199 1342 1245 20784 Face 40200 1245 1106 20784 Face 40201 1466 1342 20785 Face 40202 1342 1531 20785 Face 40203 1531 1579 20785 Face 40204 1579 1466 20785 Face 40205 5299 5490 20786 Face 40206 5490 5492 20786 Face 40207 5492 5449 20786 Face 40208 5449 5299 20786 Face 40209 5497 4331 20787 Face 40210 4331 4621 20787 Face 40211 4621 5495 20787 Face 40212 5495 5497 20787 Face 40213 1485 1904 20788 Face 40214 1904 1741 20788 Face 40215 1741 1609 20788 Face 40216 1609 1485 20788 Face 40217 3565 2481 20789 Face 40218 2481 2686 20789 Face 40219 2686 3783 20789 Face 40220 3783 3565 20789 Face 40221 4107 4331 20790 Face 40222 4331 5497 20790 Face 40223 5497 5499 20790 Face 40224 5499 4107 20790 Face 40225 2481 3565 20791 Face 40226 3565 3824 20791 Face 40227 3824 2555 20791 Face 40228 2555 2481 20791 Face 40229 5299 5449 20792 Face 40230 5449 4670 20792 Face 40231 4670 5324 20792 Face 40232 5324 5299 20792 Face 40233 2393 2241 20793 Face 40234 2241 4115 20793 Face 40235 4115 3819 20793 Face 40236 3819 2393 20793 Face 40237 2393 1535 20794 Face 40238 1535 1453 20794 Face 40239 1453 2241 20794 Face 40240 2241 2393 20794 Face 40241 1174 1065 20795 Face 40242 1065 1453 20795 Face 40243 1453 1535 20795 Face 40244 1535 1174 20795 Face 40245 905 1065 20796 Face 40246 1065 1174 20796 Face 40247 1174 1042 20796 Face 40248 1042 905 20796 Face 40249 1161 978 20797 Face 40250 978 835 20797 Face 40251 835 979 20797 Face 40252 979 1161 20797 Face 40253 1031 1161 20798 Face 40254 1161 1440 20798 Face 40255 1440 1168 20798 Face 40256 1168 1031 20798 Face 40257 1541 1564 20799 Face 40258 1564 1363 20799 Face 40259 1363 1315 20799 Face 40260 1315 1541 20799 Face 40261 1871 1564 20800 Face 40262 1564 1581 20800 Face 40263 1581 1751 20800 Face 40264 1751 1871 20800 Face 40265 5522 3845 20801 Face 40266 3845 3947 20801 Face 40267 3947 5524 20801 Face 40268 5524 5522 20801 Face 40269 1785 1700 20802 Face 40270 1700 3947 20802 Face 40271 3947 3845 20802 Face 40272 3845 1785 20802 Face 40273 9352 9564 20803 Face 40274 9564 9458 20803 Face 40275 9458 9353 20803 Face 40276 9353 9352 20803 Face 40277 9665 9654 20804 Face 40278 9654 9876 20804 Face 40279 9876 9719 20804 Face 40280 9719 9665 20804 Face 40281 9826 9719 20805 Face 40282 9719 9876 20805 Face 40283 9876 9918 20805 Face 40284 9918 9826 20805 Face 40285 9964 9918 20806 Face 40286 9918 9876 20806 Face 40287 9876 10005 20806 Face 40288 10005 9964 20806 Face 40289 10037 10005 20807 Face 40290 10005 9876 20807 Face 40291 9876 10019 20807 Face 40292 10019 10037 20807 Face 40293 9994 10019 20808 Face 40294 10019 9876 20808 Face 40295 9876 9949 20808 Face 40296 9949 9994 20808 Face 40297 8019 8841 20809 Face 40298 8841 9498 20809 Face 40299 9498 9399 20809 Face 40300 9399 8019 20809 Face 40301 1470 1481 20810 Face 40302 1481 1692 20810 Face 40303 1692 1587 20810 Face 40304 1587 1470 20810 Face 40305 1040 1008 20811 Face 40306 1008 1096 20811 Face 40307 1096 1081 20811 Face 40308 1081 1040 20811 Face 40309 1127 1081 20812 Face 40310 1081 1096 20812 Face 40311 1096 1219 20812 Face 40312 1219 1127 20812 Face 40313 1326 1219 20813 Face 40314 1219 1096 20813 Face 40315 1096 1380 20813 Face 40316 1380 1326 20813 Face 40317 1391 1380 20814 Face 40318 1380 1096 20814 Face 40319 1096 1362 20814 Face 40320 1362 1391 20814 Face 40321 1282 1362 20815 Face 40322 1362 1096 20815 Face 40323 1096 1169 20815 Face 40324 1169 1282 20815 Face 40325 1654 2201 20816 Face 40326 2201 1646 20816 Face 40327 1646 1547 20816 Face 40328 1547 1654 20816 Face 40329 9345 7093 20817 Face 40330 7093 7111 20817 Face 40331 7111 9356 20817 Face 40332 9356 9345 20817 Face 40333 5524 5525 20818 Face 40334 5525 7111 20818 Face 40335 7111 7093 20818 Face 40336 7093 5524 20818 Face 40337 9244 9174 20819 Face 40338 9174 9481 20819 Face 40339 9481 9489 20819 Face 40340 9489 9244 20819 Face 40341 9489 9481 20820 Face 40342 9481 9682 20820 Face 40343 9682 9747 20820 Face 40344 9747 9489 20820 Face 40345 10053 10019 20821 Face 40346 10019 9994 20821 Face 40347 9994 10020 20821 Face 40348 10020 10053 20821 Face 40349 10071 10037 20822 Face 40350 10037 10019 20822 Face 40351 10019 10053 20822 Face 40352 10053 10071 20822 Face 40353 10036 10005 20823 Face 40354 10005 10037 20823 Face 40355 10037 10071 20823 Face 40356 10071 10036 20823 Face 40357 9985 9964 20824 Face 40358 9964 10005 20824 Face 40359 10005 10036 20824 Face 40360 10036 9985 20824 Face 40361 9940 9918 20825 Face 40362 9918 9964 20825 Face 40363 9964 9985 20825 Face 40364 9985 9940 20825 Face 40365 9851 9826 20826 Face 40366 9826 9918 20826 Face 40367 9918 9940 20826 Face 40368 9940 9851 20826 Face 40369 9743 9719 20827 Face 40370 9719 9826 20827 Face 40371 9826 9851 20827 Face 40372 9851 9743 20827 Face 40373 9697 9665 20828 Face 40374 9665 9719 20828 Face 40375 9719 9743 20828 Face 40376 9743 9697 20828 Face 40377 9687 9654 20829 Face 40378 9654 9665 20829 Face 40379 9665 9697 20829 Face 40380 9697 9687 20829 Face 40381 9708 9683 20830 Face 40382 9683 9654 20830 Face 40383 9654 9687 20830 Face 40384 9687 9708 20830 Face 40385 9792 9763 20831 Face 40386 9763 9683 20831 Face 40387 9683 9708 20831 Face 40388 9708 9792 20831 Face 40389 9907 9876 20832 Face 40390 9876 9763 20832 Face 40391 9763 9792 20832 Face 40392 9792 9907 20832 Face 40393 9971 9949 20833 Face 40394 9949 9876 20833 Face 40395 9876 9907 20833 Face 40396 9907 9971 20833 Face 40397 10020 9994 20834 Face 40398 9994 9949 20834 Face 40399 9949 9971 20834 Face 40400 9971 10020 20834 Face 40401 10068 10053 20835 Face 40402 10053 10020 20835 Face 40403 10020 10032 20835 Face 40404 10032 10068 20835 Face 40405 10087 10071 20836 Face 40406 10071 10053 20836 Face 40407 10053 10068 20836 Face 40408 10068 10087 20836 Face 40409 10048 10036 20837 Face 40410 10036 10071 20837 Face 40411 10071 10087 20837 Face 40412 10087 10048 20837 Face 40413 9995 9985 20838 Face 40414 9985 10036 20838 Face 40415 10036 10048 20838 Face 40416 10048 9995 20838 Face 40417 9945 9940 20839 Face 40418 9940 9985 20839 Face 40419 9985 9995 20839 Face 40420 9995 9945 20839 Face 40421 9853 9851 20840 Face 40422 9851 9940 20840 Face 40423 9940 9945 20840 Face 40424 9945 9853 20840 Face 40425 9736 9743 20841 Face 40426 9743 9851 20841 Face 40427 9851 9853 20841 Face 40428 9853 9736 20841 Face 40429 9691 9697 20842 Face 40430 9697 9743 20842 Face 40431 9743 9736 20842 Face 40432 9736 9691 20842 Face 40433 9673 9687 20843 Face 40434 9687 9697 20843 Face 40435 9697 9691 20843 Face 40436 9691 9673 20843 Face 40437 9704 9708 20844 Face 40438 9708 9687 20844 Face 40439 9687 9673 20844 Face 40440 9673 9704 20844 Face 40441 9791 9792 20845 Face 40442 9792 9708 20845 Face 40443 9708 9704 20845 Face 40444 9704 9791 20845 Face 40445 9912 9907 20846 Face 40446 9907 9792 20846 Face 40447 9792 9791 20846 Face 40448 9791 9912 20846 Face 40449 9976 9971 20847 Face 40450 9971 9907 20847 Face 40451 9907 9912 20847 Face 40452 9912 9976 20847 Face 40453 10032 10020 20848 Face 40454 10020 9971 20848 Face 40455 9971 9976 20848 Face 40456 9976 10032 20848 Face 40457 10058 10068 20849 Face 40458 10068 10032 20849 Face 40459 10032 10025 20849 Face 40460 10025 10058 20849 Face 40461 10081 10087 20850 Face 40462 10087 10068 20850 Face 40463 10068 10058 20850 Face 40464 10058 10081 20850 Face 40465 10041 10048 20851 Face 40466 10048 10087 20851 Face 40467 10087 10081 20851 Face 40468 10081 10041 20851 Face 40469 9984 9995 20852 Face 40470 9995 10048 20852 Face 40471 10048 10041 20852 Face 40472 10041 9984 20852 Face 40473 9937 9945 20853 Face 40474 9945 9995 20853 Face 40475 9995 9984 20853 Face 40476 9984 9937 20853 Face 40477 9835 9853 20854 Face 40478 9853 9945 20854 Face 40479 9945 9937 20854 Face 40480 9937 9835 20854 Face 40481 9717 9736 20855 Face 40482 9736 9853 20855 Face 40483 9853 9835 20855 Face 40484 9835 9717 20855 Face 40485 9661 9691 20856 Face 40486 9691 9736 20856 Face 40487 9736 9717 20856 Face 40488 9717 9661 20856 Face 40489 9645 9673 20857 Face 40490 9673 9691 20857 Face 40491 9691 9661 20857 Face 40492 9661 9645 20857 Face 40493 9674 9704 20858 Face 40494 9704 9673 20858 Face 40495 9673 9645 20858 Face 40496 9645 9674 20858 Face 40497 9767 9791 20859 Face 40498 9791 9704 20859 Face 40499 9704 9674 20859 Face 40500 9674 9767 20859 Face 40501 9897 9912 20860 Face 40502 9912 9791 20860 Face 40503 9791 9767 20860 Face 40504 9767 9897 20860 Face 40505 9968 9976 20861 Face 40506 9976 9912 20861 Face 40507 9912 9897 20861 Face 40508 9897 9968 20861 Face 40509 10025 10032 20862 Face 40510 10032 9976 20862 Face 40511 9976 9968 20862 Face 40512 9968 10025 20862 Face 40513 10045 10058 20863 Face 40514 10058 10025 20863 Face 40515 10025 10006 20863 Face 40516 10006 10045 20863 Face 40517 10060 10081 20864 Face 40518 10081 10058 20864 Face 40519 10058 10045 20864 Face 40520 10045 10060 20864 Face 40521 10023 10041 20865 Face 40522 10041 10081 20865 Face 40523 10081 10060 20865 Face 40524 10060 10023 20865 Face 40525 9970 9984 20866 Face 40526 9984 10041 20866 Face 40527 10041 10023 20866 Face 40528 10023 9970 20866 Face 40529 9921 9937 20867 Face 40530 9937 9984 20867 Face 40531 9984 9970 20867 Face 40532 9970 9921 20867 Face 40533 9804 9835 20868 Face 40534 9835 9937 20868 Face 40535 9937 9921 20868 Face 40536 9921 9804 20868 Face 40537 9672 9717 20869 Face 40538 9717 9835 20869 Face 40539 9835 9804 20869 Face 40540 9804 9672 20869 Face 40541 9620 9661 20870 Face 40542 9661 9717 20870 Face 40543 9717 9672 20870 Face 40544 9672 9620 20870 Face 40545 9599 9645 20871 Face 40546 9645 9661 20871 Face 40547 9661 9620 20871 Face 40548 9620 9599 20871 Face 40549 9635 9674 20872 Face 40550 9674 9645 20872 Face 40551 9645 9599 20872 Face 40552 9599 9635 20872 Face 40553 9722 9767 20873 Face 40554 9767 9674 20873 Face 40555 9674 9635 20873 Face 40556 9635 9722 20873 Face 40557 9869 9897 20874 Face 40558 9897 9767 20874 Face 40559 9767 9722 20874 Face 40560 9722 9869 20874 Face 40561 9953 9968 20875 Face 40562 9968 9897 20875 Face 40563 9897 9869 20875 Face 40564 9869 9953 20875 Face 40565 10006 10025 20876 Face 40566 10025 9968 20876 Face 40567 9968 9953 20876 Face 40568 9953 10006 20876 Face 40569 10022 10045 20877 Face 40570 10045 10006 20877 Face 40571 10006 9990 20877 Face 40572 9990 10022 20877 Face 40573 10042 10060 20878 Face 40574 10060 10045 20878 Face 40575 10045 10022 20878 Face 40576 10022 10042 20878 Face 40577 10004 10023 20879 Face 40578 10023 10060 20879 Face 40579 10060 10042 20879 Face 40580 10042 10004 20879 Face 40581 9955 9970 20880 Face 40582 9970 10023 20880 Face 40583 10023 10004 20880 Face 40584 10004 9955 20880 Face 40585 9902 9921 20881 Face 40586 9921 9970 20881 Face 40587 9970 9955 20881 Face 40588 9955 9902 20881 Face 40589 9781 9804 20882 Face 40590 9804 9921 20882 Face 40591 9921 9902 20882 Face 40592 9902 9781 20882 Face 40593 9648 9672 20883 Face 40594 9672 9804 20883 Face 40595 9804 9781 20883 Face 40596 9781 9648 20883 Face 40597 9575 9620 20884 Face 40598 9620 9672 20884 Face 40599 9672 9648 20884 Face 40600 9648 9575 20884 Face 40601 9564 9599 20885 Face 40602 9599 9620 20885 Face 40603 9620 9575 20885 Face 40604 9575 9564 20885 Face 40605 9607 9635 20886 Face 40606 9635 9599 20886 Face 40607 9599 9564 20886 Face 40608 9564 9607 20886 Face 40609 9698 9722 20887 Face 40610 9722 9635 20887 Face 40611 9635 9607 20887 Face 40612 9607 9698 20887 Face 40613 9848 9869 20888 Face 40614 9869 9722 20888 Face 40615 9722 9698 20888 Face 40616 9698 9848 20888 Face 40617 9941 9953 20889 Face 40618 9953 9869 20889 Face 40619 9869 9848 20889 Face 40620 9848 9941 20889 Face 40621 9990 10006 20890 Face 40622 10006 9953 20890 Face 40623 9953 9941 20890 Face 40624 9941 9990 20890 Face 40625 8737 9238 20891 Face 40626 9238 9253 20891 Face 40627 9253 8897 20891 Face 40628 8897 8737 20891 Face 40629 8897 9253 20892 Face 40630 9253 9339 20892 Face 40631 9339 8954 20892 Face 40632 8954 8897 20892 Face 40633 8954 9339 20893 Face 40634 9339 9373 20893 Face 40635 9373 9050 20893 Face 40636 9050 8954 20893 Face 40637 9050 9373 20894 Face 40638 9373 9391 20894 Face 40639 9391 8841 20894 Face 40640 8841 9050 20894 Face 40641 9547 9520 20895 Face 40642 9520 9457 20895 Face 40643 9457 9493 20895 Face 40644 9493 9547 20895 Face 40645 9570 9553 20896 Face 40646 9553 9520 20896 Face 40647 9520 9547 20896 Face 40648 9547 9570 20896 Face 40649 9429 9409 20897 Face 40650 9409 9553 20897 Face 40651 9553 9570 20897 Face 40652 9570 9429 20897 Face 40653 9253 9238 20898 Face 40654 9238 9409 20898 Face 40655 9409 9429 20898 Face 40656 9429 9253 20898 Face 40657 5549 5546 20899 Face 40658 5546 8737 20899 Face 40659 8737 8897 20899 Face 40660 8897 5549 20899 Face 40661 6971 6926 20900 Face 40662 6926 5533 20900 Face 40663 5533 5534 20900 Face 40664 5534 6971 20900 Face 40665 7705 7631 20901 Face 40666 7631 6926 20901 Face 40667 6926 6971 20901 Face 40668 6971 7705 20901 Face 40669 9332 9235 20902 Face 40670 9235 7631 20902 Face 40671 7631 7705 20902 Face 40672 7705 9332 20902 Face 40673 9427 9406 20903 Face 40674 9406 9293 20903 Face 40675 9293 9332 20903 Face 40676 9332 9427 20903 Face 40677 9493 9457 20904 Face 40678 9457 9406 20904 Face 40679 9406 9427 20904 Face 40680 9427 9493 20904 Face 40681 9476 9446 20905 Face 40682 9446 9357 20905 Face 40683 9357 9374 20905 Face 40684 9374 9476 20905 Face 40685 9374 9357 20906 Face 40686 9357 7794 20906 Face 40687 7794 7954 20906 Face 40688 7954 9374 20906 Face 40689 9631 9570 20907 Face 40690 9570 9547 20907 Face 40691 9547 9563 20907 Face 40692 9563 9631 20907 Face 40693 9563 9547 20908 Face 40694 9547 9493 20908 Face 40695 9493 9518 20908 Face 40696 9518 9563 20908 Face 40697 9518 9493 20909 Face 40698 9493 9427 20909 Face 40699 9427 9446 20909 Face 40700 9446 9518 20909 Face 40701 9446 9427 20910 Face 40702 9427 9332 20910 Face 40703 9332 9357 20910 Face 40704 9357 9446 20910 Face 40705 9357 9332 20911 Face 40706 9332 7705 20911 Face 40707 7705 7794 20911 Face 40708 7794 9357 20911 Face 40709 7794 7705 20912 Face 40710 7705 6971 20912 Face 40711 6971 7019 20912 Face 40712 7019 7794 20912 Face 40713 7019 6971 20913 Face 40714 6971 5534 20913 Face 40715 5534 5532 20913 Face 40716 5532 7019 20913 Face 40717 9603 9563 20914 Face 40718 9563 9518 20914 Face 40719 9518 9541 20914 Face 40720 9541 9603 20914 Face 40721 9541 9518 20915 Face 40722 9518 9446 20915 Face 40723 9446 9476 20915 Face 40724 9476 9541 20915 Face 40725 7954 7794 20916 Face 40726 7794 7019 20916 Face 40727 7019 7151 20916 Face 40728 7151 7954 20916 Face 40729 7151 7019 20917 Face 40730 7019 5532 20917 Face 40731 5532 5531 20917 Face 40732 5531 7151 20917 Face 40733 5548 5549 20918 Face 40734 5549 8897 20918 Face 40735 8897 8954 20918 Face 40736 8954 5548 20918 Face 40737 9339 9253 20919 Face 40738 9253 9429 20919 Face 40739 9429 9445 20919 Face 40740 9445 9339 20919 Face 40741 9445 9429 20920 Face 40742 9429 9570 20920 Face 40743 9570 9631 20920 Face 40744 9631 9445 20920 Face 40745 9603 9586 20921 Face 40746 9586 9688 20921 Face 40747 9688 9678 20921 Face 40748 9678 9603 20921 Face 40749 9678 9688 20922 Face 40750 9688 9505 20922 Face 40751 9505 9494 20922 Face 40752 9494 9678 20922 Face 40753 9494 9505 20923 Face 40754 9505 9391 20923 Face 40755 9391 9373 20923 Face 40756 9373 9494 20923 Face 40757 9050 8841 20924 Face 40758 8841 5544 20924 Face 40759 5544 5547 20924 Face 40760 5547 9050 20924 Face 40761 9541 9534 20925 Face 40762 9534 9586 20925 Face 40763 9586 9603 20925 Face 40764 9603 9541 20925 Face 40765 9678 9631 20926 Face 40766 9631 9563 20926 Face 40767 9563 9603 20926 Face 40768 9603 9678 20926 Face 40769 9494 9445 20927 Face 40770 9445 9631 20927 Face 40771 9631 9678 20927 Face 40772 9678 9494 20927 Face 40773 9373 9339 20928 Face 40774 9339 9445 20928 Face 40775 9445 9494 20928 Face 40776 9494 9373 20928 Face 40777 5547 5548 20929 Face 40778 5548 8954 20929 Face 40779 8954 9050 20929 Face 40780 9050 5547 20929 Face 40781 7247 7151 20930 Face 40782 7151 5531 20930 Face 40783 5531 5530 20930 Face 40784 5530 7247 20930 Face 40785 8024 7954 20931 Face 40786 7954 7151 20931 Face 40787 7151 7247 20931 Face 40788 7247 8024 20931 Face 40789 9375 9374 20932 Face 40790 9374 7954 20932 Face 40791 7954 8024 20932 Face 40792 8024 9375 20932 Face 40793 9471 9476 20933 Face 40794 9476 9374 20933 Face 40795 9374 9375 20933 Face 40796 9375 9471 20933 Face 40797 9534 9541 20934 Face 40798 9541 9476 20934 Face 40799 9476 9471 20934 Face 40800 9471 9534 20934 Face 40801 9841 10022 20935 Face 40802 10022 9990 20935 Face 40803 9990 9843 20935 Face 40804 9843 9841 20935 Face 40805 9843 9990 20936 Face 40806 9990 9941 20936 Face 40807 9941 9831 20936 Face 40808 9831 9843 20936 Face 40809 9831 9941 20937 Face 40810 9941 9848 20937 Face 40811 9848 9664 20937 Face 40812 9664 9831 20937 Face 40813 9664 9848 20938 Face 40814 9848 9698 20938 Face 40815 9698 9498 20938 Face 40816 9498 9664 20938 Face 40817 9498 9698 20939 Face 40818 9698 9607 20939 Face 40819 9607 9399 20939 Face 40820 9399 9498 20939 Face 40821 9534 9471 20940 Face 40822 9471 9557 20940 Face 40823 9557 9574 20940 Face 40824 9574 9534 20940 Face 40825 9831 9688 20941 Face 40826 9688 9586 20941 Face 40827 9586 9843 20941 Face 40828 9843 9831 20941 Face 40829 5528 5536 20942 Face 40830 5536 7410 20942 Face 40831 7410 7259 20942 Face 40832 7259 5528 20942 Face 40833 7259 7410 20943 Face 40834 7410 9352 20943 Face 40835 9352 9353 20943 Face 40836 9353 7259 20943 Face 40837 9458 9575 20944 Face 40838 9575 9648 20944 Face 40839 9648 9584 20944 Face 40840 9584 9458 20944 Face 40841 9584 9648 20945 Face 40842 9648 9781 20945 Face 40843 9781 9764 20945 Face 40844 9764 9584 20945 Face 40845 9368 9356 20946 Face 40846 9356 9353 20946 Face 40847 9353 9458 20946 Face 40848 9458 9368 20946 Face 40849 9399 9607 20947 Face 40850 9607 9564 20947 Face 40851 9564 9352 20947 Face 40852 9352 9399 20947 Face 40853 9195 9531 20948 Face 40854 9531 9536 20948 Face 40855 9536 9375 20948 Face 40856 9375 9195 20948 Face 40857 9557 9471 20949 Face 40858 9471 9375 20949 Face 40859 9375 9536 20949 Face 40860 9536 9557 20949 Face 40861 9859 9902 20950 Face 40862 9902 9926 20950 Face 40863 9926 9898 20950 Face 40864 9898 9859 20950 Face 40865 9898 9926 20951 Face 40866 9926 9821 20951 Face 40867 9821 9789 20951 Face 40868 9789 9898 20951 Face 40869 9789 9821 20952 Face 40870 9821 9527 20952 Face 40871 9527 9509 20952 Face 40872 9509 9789 20952 Face 40873 9509 9527 20953 Face 40874 9527 9026 20953 Face 40875 9026 8963 20953 Face 40876 8963 9509 20953 Face 40877 8963 9026 20954 Face 40878 9026 7247 20954 Face 40879 7247 7200 20954 Face 40880 7200 8963 20954 Face 40881 7200 7247 20955 Face 40882 7247 5530 20955 Face 40883 5530 5529 20955 Face 40884 5529 7200 20955 Face 40885 9902 9955 20956 Face 40886 9955 9931 20956 Face 40887 9931 9926 20956 Face 40888 9926 9902 20956 Face 40889 9926 9931 20957 Face 40890 9931 9834 20957 Face 40891 9834 9821 20957 Face 40892 9821 9926 20957 Face 40893 9821 9834 20958 Face 40894 9834 9531 20958 Face 40895 9531 9527 20958 Face 40896 9527 9821 20958 Face 40897 9527 9531 20959 Face 40898 9531 9195 20959 Face 40899 9195 9026 20959 Face 40900 9026 9527 20959 Face 40901 9026 9195 20960 Face 40902 9195 8024 20960 Face 40903 8024 7247 20960 Face 40904 7247 9026 20960 Face 40905 9707 9724 20961 Face 40906 9724 9815 20961 Face 40907 9815 9787 20961 Face 40908 9787 9707 20961 Face 40909 9683 9763 20962 Face 40910 9763 9876 20962 Face 40911 9876 9654 20962 Face 40912 9654 9683 20962 Face 40913 7092 7153 20963 Face 40914 7153 5527 20963 Face 40915 5527 5526 20963 Face 40916 5526 7092 20963 Face 40917 9509 9489 20964 Face 40918 9489 9747 20964 Face 40919 9747 9789 20964 Face 40920 9789 9509 20964 Face 40921 9536 9531 20965 Face 40922 9531 9834 20965 Face 40923 9834 9735 20965 Face 40924 9735 9536 20965 Face 40925 9709 9557 20966 Face 40926 9557 9536 20966 Face 40927 9536 9735 20966 Face 40928 9735 9709 20966 Face 40929 9955 10004 20967 Face 40930 10004 9875 20967 Face 40931 9875 9931 20967 Face 40932 9931 9955 20967 Face 40933 9764 9859 20968 Face 40934 9859 9815 20968 Face 40935 9815 9724 20968 Face 40936 9724 9764 20968 Face 40937 9849 9898 20969 Face 40938 9898 9789 20969 Face 40939 9789 9747 20969 Face 40940 9747 9849 20969 Face 40941 9489 9509 20970 Face 40942 9509 8963 20970 Face 40943 8963 9244 20970 Face 40944 9244 9489 20970 Face 40945 9584 9764 20971 Face 40946 9764 9724 20971 Face 40947 9724 9532 20971 Face 40948 9532 9584 20971 Face 40949 9345 9368 20972 Face 40950 9368 9532 20972 Face 40951 9532 9473 20972 Face 40952 9473 9345 20972 Face 40953 9517 9532 20973 Face 40954 9532 9724 20973 Face 40955 9724 9676 20973 Face 40956 9676 9517 20973 Face 40957 9353 9356 20974 Face 40958 9356 7111 20974 Face 40959 7111 7259 20974 Face 40960 7259 9353 20974 Face 40961 9664 9498 20975 Face 40962 9498 9391 20975 Face 40963 9391 9505 20975 Face 40964 9505 9664 20975 Face 40965 9875 10004 20976 Face 40966 10004 10042 20976 Face 40967 10042 9861 20976 Face 40968 9861 9875 20976 Face 40969 10042 10022 20977 Face 40970 10022 9841 20977 Face 40971 9841 9861 20977 Face 40972 9861 10042 20977 Face 40973 9815 9859 20978 Face 40974 9859 9898 20978 Face 40975 9898 9849 20978 Face 40976 9849 9815 20978 Face 40977 9809 9849 20979 Face 40978 9849 9747 20979 Face 40979 9747 9721 20979 Face 40980 9721 9809 20979 Face 40981 9174 9244 20980 Face 40982 9244 7153 20980 Face 40983 7153 7436 20980 Face 40984 7436 9174 20980 Face 40985 7200 5529 20981 Face 40986 5529 5527 20981 Face 40987 5527 7153 20981 Face 40988 7153 7200 20981 Face 40989 9244 8963 20982 Face 40990 8963 7200 20982 Face 40991 7200 7153 20982 Face 40992 7153 9244 20982 Face 40993 9834 9931 20983 Face 40994 9931 9875 20983 Face 40995 9875 9735 20983 Face 40996 9735 9834 20983 Face 40997 9787 9815 20984 Face 40998 9815 9849 20984 Face 40999 9849 9813 20984 Face 41000 9813 9787 20984 Face 41001 9841 9843 20985 Face 41002 9843 9586 20985 Face 41003 9586 9574 20985 Face 41004 9574 9841 20985 Face 41005 9875 9861 20986 Face 41006 9861 9709 20986 Face 41007 9709 9735 20986 Face 41008 9735 9875 20986 Face 41009 9902 9859 20987 Face 41010 9859 9764 20987 Face 41011 9764 9781 20987 Face 41012 9781 9902 20987 Face 41013 9458 9584 20988 Face 41014 9584 9532 20988 Face 41015 9532 9368 20988 Face 41016 9368 9458 20988 Face 41017 7410 8019 20989 Face 41018 8019 9399 20989 Face 41019 9399 9352 20989 Face 41020 9352 7410 20989 Face 41021 9688 9831 20990 Face 41022 9831 9664 20990 Face 41023 9664 9505 20990 Face 41024 9505 9688 20990 Face 41025 8019 5539 20991 Face 41026 5539 5544 20991 Face 41027 5544 8841 20991 Face 41028 8841 8019 20991 Face 41029 7111 5525 20992 Face 41030 5525 5528 20992 Face 41031 5528 7259 20992 Face 41032 7259 7111 20992 Face 41033 8019 7410 20993 Face 41034 7410 5536 20993 Face 41035 5536 5539 20993 Face 41036 5539 8019 20993 Face 41037 1689 3928 20994 Face 41038 3928 3947 20994 Face 41039 3947 1700 20994 Face 41040 1700 1689 20994 Face 41041 3947 3928 20995 Face 41042 3928 5525 20995 Face 41043 5525 5524 20995 Face 41044 5524 3947 20995 Face 41045 1556 1564 20996 Face 41046 1564 1871 20996 Face 41047 1871 1801 20996 Face 41048 1801 1556 20996 Face 41049 1298 1363 20997 Face 41050 1363 1564 20997 Face 41051 1564 1556 20997 Face 41052 1556 1298 20997 Face 41053 1025 1051 20998 Face 41054 1051 1026 20998 Face 41055 1026 992 20998 Face 41056 992 1025 20998 Face 41057 992 1026 20999 Face 41058 1026 1008 20999 Face 41059 1008 974 20999 Face 41060 974 992 20999 Face 41061 974 1008 21000 Face 41062 1008 1040 21000 Face 41063 1040 1009 21000 Face 41064 1009 974 21000 Face 41065 1009 1040 21001 Face 41066 1040 1081 21001 Face 41067 1081 1060 21001 Face 41068 1060 1009 21001 Face 41069 1060 1081 21002 Face 41070 1081 1127 21002 Face 41071 1127 1105 21002 Face 41072 1105 1060 21002 Face 41073 1105 1127 21003 Face 41074 1127 1219 21003 Face 41075 1219 1194 21003 Face 41076 1194 1105 21003 Face 41077 1194 1219 21004 Face 41078 1219 1326 21004 Face 41079 1326 1302 21004 Face 41080 1302 1194 21004 Face 41081 1302 1326 21005 Face 41082 1326 1380 21005 Face 41083 1380 1348 21005 Face 41084 1348 1302 21005 Face 41085 1348 1380 21006 Face 41086 1380 1391 21006 Face 41087 1391 1358 21006 Face 41088 1358 1348 21006 Face 41089 1358 1391 21007 Face 41090 1391 1362 21007 Face 41091 1362 1337 21007 Face 41092 1337 1358 21007 Face 41093 1337 1362 21008 Face 41094 1362 1282 21008 Face 41095 1282 1253 21008 Face 41096 1253 1337 21008 Face 41097 1253 1282 21009 Face 41098 1282 1169 21009 Face 41099 1169 1138 21009 Face 41100 1138 1253 21009 Face 41101 1138 1169 21010 Face 41102 1169 1096 21010 Face 41103 1096 1074 21010 Face 41104 1074 1138 21010 Face 41105 1074 1096 21011 Face 41106 1096 1051 21011 Face 41107 1051 1025 21011 Face 41108 1025 1074 21011 Face 41109 1013 1025 21012 Face 41110 1025 992 21012 Face 41111 992 977 21012 Face 41112 977 1013 21012 Face 41113 977 992 21013 Face 41114 992 974 21013 Face 41115 974 958 21013 Face 41116 958 977 21013 Face 41117 958 974 21014 Face 41118 974 1009 21014 Face 41119 1009 997 21014 Face 41120 997 958 21014 Face 41121 997 1009 21015 Face 41122 1009 1060 21015 Face 41123 1060 1050 21015 Face 41124 1050 997 21015 Face 41125 1050 1060 21016 Face 41126 1060 1105 21016 Face 41127 1105 1100 21016 Face 41128 1100 1050 21016 Face 41129 1100 1105 21017 Face 41130 1105 1194 21017 Face 41131 1194 1192 21017 Face 41132 1192 1100 21017 Face 41133 1192 1194 21018 Face 41134 1194 1302 21018 Face 41135 1302 1309 21018 Face 41136 1309 1192 21018 Face 41137 1309 1302 21019 Face 41138 1302 1348 21019 Face 41139 1348 1354 21019 Face 41140 1354 1309 21019 Face 41141 1354 1348 21020 Face 41142 1348 1358 21020 Face 41143 1358 1372 21020 Face 41144 1372 1354 21020 Face 41145 1372 1358 21021 Face 41146 1358 1337 21021 Face 41147 1337 1341 21021 Face 41148 1341 1372 21021 Face 41149 1341 1337 21022 Face 41150 1337 1253 21022 Face 41151 1253 1254 21022 Face 41152 1254 1341 21022 Face 41153 1254 1253 21023 Face 41154 1253 1138 21023 Face 41155 1138 1133 21023 Face 41156 1133 1254 21023 Face 41157 1133 1138 21024 Face 41158 1138 1074 21024 Face 41159 1074 1069 21024 Face 41160 1069 1133 21024 Face 41161 1069 1074 21025 Face 41162 1074 1025 21025 Face 41163 1025 1013 21025 Face 41164 1013 1069 21025 Face 41165 1020 1013 21026 Face 41166 1013 977 21026 Face 41167 977 987 21026 Face 41168 987 1020 21026 Face 41169 987 977 21027 Face 41170 977 958 21027 Face 41171 958 964 21027 Face 41172 964 987 21027 Face 41173 964 958 21028 Face 41174 958 997 21028 Face 41175 997 1004 21028 Face 41176 1004 964 21028 Face 41177 1004 997 21029 Face 41178 997 1050 21029 Face 41179 1050 1061 21029 Face 41180 1061 1004 21029 Face 41181 1061 1050 21030 Face 41182 1050 1100 21030 Face 41183 1100 1108 21030 Face 41184 1108 1061 21030 Face 41185 1108 1100 21031 Face 41186 1100 1192 21031 Face 41187 1192 1210 21031 Face 41188 1210 1108 21031 Face 41189 1210 1192 21032 Face 41190 1192 1309 21032 Face 41191 1309 1328 21032 Face 41192 1328 1210 21032 Face 41193 1328 1309 21033 Face 41194 1309 1354 21033 Face 41195 1354 1384 21033 Face 41196 1384 1328 21033 Face 41197 1384 1354 21034 Face 41198 1354 1372 21034 Face 41199 1372 1400 21034 Face 41200 1400 1384 21034 Face 41201 1400 1372 21035 Face 41202 1372 1341 21035 Face 41203 1341 1371 21035 Face 41204 1371 1400 21035 Face 41205 1371 1341 21036 Face 41206 1341 1254 21036 Face 41207 1254 1278 21036 Face 41208 1278 1371 21036 Face 41209 1278 1254 21037 Face 41210 1254 1133 21037 Face 41211 1133 1148 21037 Face 41212 1148 1278 21037 Face 41213 1148 1133 21038 Face 41214 1133 1069 21038 Face 41215 1069 1077 21038 Face 41216 1077 1148 21038 Face 41217 1077 1069 21039 Face 41218 1069 1013 21039 Face 41219 1013 1020 21039 Face 41220 1020 1077 21039 Face 41221 1039 1020 21040 Face 41222 1020 987 21040 Face 41223 987 1000 21040 Face 41224 1000 1039 21040 Face 41225 1000 987 21041 Face 41226 987 964 21041 Face 41227 964 985 21041 Face 41228 985 1000 21041 Face 41229 985 964 21042 Face 41230 964 1004 21042 Face 41231 1004 1022 21042 Face 41232 1022 985 21042 Face 41233 1022 1004 21043 Face 41234 1004 1061 21043 Face 41235 1061 1075 21043 Face 41236 1075 1022 21043 Face 41237 1075 1061 21044 Face 41238 1061 1108 21044 Face 41239 1108 1124 21044 Face 41240 1124 1075 21044 Face 41241 1124 1108 21045 Face 41242 1108 1210 21045 Face 41243 1210 1241 21045 Face 41244 1241 1124 21045 Face 41245 1241 1210 21046 Face 41246 1210 1328 21046 Face 41247 1328 1373 21046 Face 41248 1373 1241 21046 Face 41249 1373 1328 21047 Face 41250 1328 1384 21047 Face 41251 1384 1425 21047 Face 41252 1425 1373 21047 Face 41253 1425 1384 21048 Face 41254 1384 1400 21048 Face 41255 1400 1446 21048 Face 41256 1446 1425 21048 Face 41257 1446 1400 21049 Face 41258 1400 1371 21049 Face 41259 1371 1410 21049 Face 41260 1410 1446 21049 Face 41261 1410 1371 21050 Face 41262 1371 1278 21050 Face 41263 1278 1323 21050 Face 41264 1323 1410 21050 Face 41265 1323 1278 21051 Face 41266 1278 1148 21051 Face 41267 1148 1176 21051 Face 41268 1176 1323 21051 Face 41269 1176 1148 21052 Face 41270 1148 1077 21052 Face 41271 1077 1092 21052 Face 41272 1092 1176 21052 Face 41273 1092 1077 21053 Face 41274 1077 1020 21053 Face 41275 1020 1039 21053 Face 41276 1039 1092 21053 Face 41277 1055 1039 21054 Face 41278 1039 1000 21054 Face 41279 1000 1023 21054 Face 41280 1023 1055 21054 Face 41281 1023 1000 21055 Face 41282 1000 985 21055 Face 41283 985 1003 21055 Face 41284 1003 1023 21055 Face 41285 1003 985 21056 Face 41286 985 1022 21056 Face 41287 1022 1041 21056 Face 41288 1041 1003 21056 Face 41289 1041 1022 21057 Face 41290 1022 1075 21057 Face 41291 1075 1090 21057 Face 41292 1090 1041 21057 Face 41293 1090 1075 21058 Face 41294 1075 1124 21058 Face 41295 1124 1143 21058 Face 41296 1143 1090 21058 Face 41297 1143 1124 21059 Face 41298 1124 1241 21059 Face 41299 1241 1264 21059 Face 41300 1264 1143 21059 Face 41301 1264 1241 21060 Face 41302 1241 1373 21060 Face 41303 1373 1397 21060 Face 41304 1397 1264 21060 Face 41305 1397 1373 21061 Face 41306 1373 1425 21061 Face 41307 1425 1470 21061 Face 41308 1470 1397 21061 Face 41309 1470 1425 21062 Face 41310 1425 1446 21062 Face 41311 1446 1481 21062 Face 41312 1481 1470 21062 Face 41313 1481 1446 21063 Face 41314 1446 1410 21063 Face 41315 1410 1438 21063 Face 41316 1438 1481 21063 Face 41317 1438 1410 21064 Face 41318 1410 1323 21064 Face 41319 1323 1347 21064 Face 41320 1347 1438 21064 Face 41321 1347 1323 21065 Face 41322 1323 1176 21065 Face 41323 1176 1197 21065 Face 41324 1197 1347 21065 Face 41325 1197 1176 21066 Face 41326 1176 1092 21066 Face 41327 1092 1104 21066 Face 41328 1104 1197 21066 Face 41329 1104 1092 21067 Face 41330 1092 1039 21067 Face 41331 1039 1055 21067 Face 41332 1055 1104 21067 Face 41333 2147 1792 21068 Face 41334 1792 1807 21068 Face 41335 1807 2309 21068 Face 41336 2309 2147 21068 Face 41337 2091 1706 21069 Face 41338 1706 1792 21069 Face 41339 1792 2147 21069 Face 41340 2147 2091 21069 Face 41341 1995 1672 21070 Face 41342 1672 1706 21070 Face 41343 1706 2091 21070 Face 41344 2091 1995 21070 Face 41345 2201 1654 21071 Face 41346 1654 1672 21071 Face 41347 1672 1995 21071 Face 41348 1995 2201 21071 Face 41349 1552 1588 21072 Face 41350 1588 1525 21072 Face 41351 1525 1498 21072 Face 41352 1498 1552 21072 Face 41353 1498 1525 21073 Face 41354 1525 1492 21073 Face 41355 1492 1475 21073 Face 41356 1475 1498 21073 Face 41357 1475 1492 21074 Face 41358 1492 1636 21074 Face 41359 1636 1616 21074 Face 41360 1616 1475 21074 Face 41361 1616 1636 21075 Face 41362 1636 1807 21075 Face 41363 1807 1792 21075 Face 41364 1792 1616 21075 Face 41365 2147 2309 21076 Face 41366 2309 5546 21076 Face 41367 5546 5549 21076 Face 41368 5549 2147 21076 Face 41369 5534 5533 21077 Face 41370 5533 4121 21077 Face 41371 4121 4071 21077 Face 41372 4071 5534 21077 Face 41373 4071 4121 21078 Face 41374 4121 3414 21078 Face 41375 3414 3340 21078 Face 41376 3340 4071 21078 Face 41377 3340 3414 21079 Face 41378 3414 1810 21079 Face 41379 1810 1713 21079 Face 41380 1713 3340 21079 Face 41381 1713 1752 21080 Face 41382 1752 1639 21080 Face 41383 1639 1618 21080 Face 41384 1618 1713 21080 Face 41385 1618 1639 21081 Face 41386 1639 1588 21081 Face 41387 1588 1552 21081 Face 41388 1552 1618 21081 Face 41389 1671 1688 21082 Face 41390 1688 1599 21082 Face 41391 1599 1569 21082 Face 41392 1569 1671 21082 Face 41393 3085 3250 21083 Face 41394 3250 1688 21083 Face 41395 1688 1671 21083 Face 41396 1671 3085 21083 Face 41397 1482 1498 21084 Face 41398 1498 1475 21084 Face 41399 1475 1414 21084 Face 41400 1414 1482 21084 Face 41401 1527 1552 21085 Face 41402 1552 1498 21085 Face 41403 1498 1482 21085 Face 41404 1482 1527 21085 Face 41405 1599 1618 21086 Face 41406 1618 1552 21086 Face 41407 1552 1527 21086 Face 41408 1527 1599 21086 Face 41409 1688 1713 21087 Face 41410 1713 1618 21087 Face 41411 1618 1599 21087 Face 41412 1599 1688 21087 Face 41413 3250 3340 21088 Face 41414 3340 1713 21088 Face 41415 1713 1688 21088 Face 41416 1688 3250 21088 Face 41417 4019 4071 21089 Face 41418 4071 3340 21089 Face 41419 3340 3250 21089 Face 41420 3250 4019 21089 Face 41421 5532 5534 21090 Face 41422 5534 4071 21090 Face 41423 4071 4019 21090 Face 41424 4019 5532 21090 Face 41425 1504 1527 21091 Face 41426 1527 1482 21091 Face 41427 1482 1442 21091 Face 41428 1442 1504 21091 Face 41429 1569 1599 21092 Face 41430 1599 1527 21092 Face 41431 1527 1504 21092 Face 41432 1504 1569 21092 Face 41433 3892 4019 21093 Face 41434 4019 3250 21093 Face 41435 3250 3085 21093 Face 41436 3085 3892 21093 Face 41437 5531 5532 21094 Face 41438 5532 4019 21094 Face 41439 4019 3892 21094 Face 41440 3892 5531 21094 Face 41441 2091 2147 21095 Face 41442 2147 5549 21095 Face 41443 5549 5548 21095 Face 41444 5548 2091 21095 Face 41445 1600 1616 21096 Face 41446 1616 1792 21096 Face 41447 1792 1706 21096 Face 41448 1706 1600 21096 Face 41449 1414 1475 21097 Face 41450 1475 1616 21097 Face 41451 1616 1600 21097 Face 41452 1600 1414 21097 Face 41453 1367 1357 21098 Face 41454 1357 1459 21098 Face 41455 1459 1442 21098 Face 41456 1442 1367 21098 Face 41457 1551 1540 21099 Face 41458 1540 1357 21099 Face 41459 1357 1367 21099 Face 41460 1367 1551 21099 Face 41461 1672 1654 21100 Face 41462 1654 1540 21100 Face 41463 1540 1551 21100 Face 41464 1551 1672 21100 Face 41465 5547 5544 21101 Face 41466 5544 2201 21101 Face 41467 2201 1995 21101 Face 41468 1995 5547 21101 Face 41469 1442 1459 21102 Face 41470 1459 1511 21102 Face 41471 1511 1504 21102 Face 41472 1504 1442 21102 Face 41473 1442 1482 21103 Face 41474 1482 1414 21103 Face 41475 1414 1367 21103 Face 41476 1367 1442 21103 Face 41477 1367 1414 21104 Face 41478 1414 1600 21104 Face 41479 1600 1551 21104 Face 41480 1551 1367 21104 Face 41481 1551 1600 21105 Face 41482 1600 1706 21105 Face 41483 1706 1672 21105 Face 41484 1672 1551 21105 Face 41485 1995 2091 21106 Face 41486 2091 5548 21106 Face 41487 5548 5547 21106 Face 41488 5547 1995 21106 Face 41489 5530 5531 21107 Face 41490 5531 3892 21107 Face 41491 3892 3798 21107 Face 41492 3798 5530 21107 Face 41493 3798 3892 21108 Face 41494 3892 3085 21108 Face 41495 3085 3012 21108 Face 41496 3012 3798 21108 Face 41497 3012 3085 21109 Face 41498 3085 1671 21109 Face 41499 1671 1670 21109 Face 41500 1670 3012 21109 Face 41501 1670 1671 21110 Face 41502 1671 1569 21110 Face 41503 1569 1574 21110 Face 41504 1574 1670 21110 Face 41505 1574 1569 21111 Face 41506 1569 1504 21111 Face 41507 1504 1511 21111 Face 41508 1511 1574 21111 Face 41509 1202 1055 21112 Face 41510 1055 1023 21112 Face 41511 1023 1204 21112 Face 41512 1204 1202 21112 Face 41513 1214 1104 21113 Face 41514 1104 1055 21113 Face 41515 1055 1202 21113 Face 41516 1202 1214 21113 Face 41517 1381 1197 21114 Face 41518 1197 1104 21114 Face 41519 1104 1214 21114 Face 41520 1214 1381 21114 Face 41521 1547 1347 21115 Face 41522 1347 1197 21115 Face 41523 1197 1381 21115 Face 41524 1381 1547 21115 Face 41525 1646 1438 21116 Face 41526 1438 1347 21116 Face 41527 1347 1547 21116 Face 41528 1547 1646 21116 Face 41529 1471 1488 21117 Face 41530 1488 1574 21117 Face 41531 1574 1511 21117 Face 41532 1511 1471 21117 Face 41533 1202 1459 21118 Face 41534 1459 1357 21118 Face 41535 1357 1214 21118 Face 41536 1214 1202 21118 Face 41537 3788 3635 21119 Face 41538 3635 5536 21119 Face 41539 5536 5528 21119 Face 41540 5528 3788 21119 Face 41541 1692 1693 21120 Face 41542 1693 3635 21120 Face 41543 3635 3788 21120 Face 41544 3788 1692 21120 Face 41545 1461 1397 21121 Face 41546 1397 1470 21121 Face 41547 1470 1587 21121 Face 41548 1587 1461 21121 Face 41549 1281 1264 21122 Face 41550 1264 1397 21122 Face 41551 1397 1461 21122 Face 41552 1461 1281 21122 Face 41553 1587 1692 21123 Face 41554 1692 1689 21123 Face 41555 1689 1677 21123 Face 41556 1677 1587 21123 Face 41557 1693 1481 21124 Face 41558 1481 1438 21124 Face 41559 1438 1646 21124 Face 41560 1646 1693 21124 Face 41561 1670 1509 21125 Face 41562 1509 1514 21125 Face 41563 1514 1850 21125 Face 41564 1850 1670 21125 Face 41565 1509 1670 21126 Face 41566 1670 1574 21126 Face 41567 1574 1488 21126 Face 41568 1488 1509 21126 Face 41569 1147 1119 21127 Face 41570 1119 1143 21127 Face 41571 1143 1186 21127 Face 41572 1186 1147 21127 Face 41573 1256 1224 21128 Face 41574 1224 1119 21128 Face 41575 1119 1147 21128 Face 41576 1147 1256 21128 Face 41577 1536 1518 21129 Face 41578 1518 1224 21129 Face 41579 1224 1256 21129 Face 41580 1256 1536 21129 Face 41581 2081 2019 21130 Face 41582 2019 1518 21130 Face 41583 1518 1536 21130 Face 41584 1536 2081 21130 Face 41585 3843 3798 21131 Face 41586 3798 2019 21131 Face 41587 2019 2081 21131 Face 41588 2081 3843 21131 Face 41589 5529 5530 21132 Face 41590 5530 3798 21132 Face 41591 3798 3843 21132 Face 41592 3843 5529 21132 Face 41593 1119 1114 21133 Face 41594 1114 1090 21133 Face 41595 1090 1143 21133 Face 41596 1143 1119 21133 Face 41597 1224 1211 21134 Face 41598 1211 1114 21134 Face 41599 1114 1119 21134 Face 41600 1119 1224 21134 Face 41601 1518 1514 21135 Face 41602 1514 1211 21135 Face 41603 1211 1224 21135 Face 41604 1224 1518 21135 Face 41605 2019 1850 21136 Face 41606 1850 1514 21136 Face 41607 1514 1518 21136 Face 41608 1518 2019 21136 Face 41609 3798 3012 21137 Face 41610 3012 1850 21137 Face 41611 1850 2019 21137 Face 41612 2019 3798 21137 Face 41613 1258 1230 21138 Face 41614 1230 1321 21138 Face 41615 1321 1338 21138 Face 41616 1338 1258 21138 Face 41617 1026 1051 21139 Face 41618 1051 1096 21139 Face 41619 1096 1008 21139 Face 41620 1008 1026 21139 Face 41621 5526 5527 21140 Face 41622 5527 3890 21140 Face 41623 3890 3948 21140 Face 41624 3948 5526 21140 Face 41625 1256 1298 21141 Face 41626 1298 1556 21141 Face 41627 1556 1536 21141 Face 41628 1536 1256 21141 Face 41629 1310 1211 21142 Face 41630 1211 1514 21142 Face 41631 1514 1509 21142 Face 41632 1509 1310 21142 Face 41633 1310 1509 21143 Face 41634 1509 1488 21143 Face 41635 1488 1336 21143 Face 41636 1336 1310 21143 Face 41637 1114 1170 21144 Face 41638 1170 1041 21144 Face 41639 1041 1090 21144 Face 41640 1090 1114 21144 Face 41641 1321 1230 21145 Face 41642 1230 1186 21145 Face 41643 1186 1281 21145 Face 41644 1281 1321 21145 Face 41645 1298 1256 21146 Face 41646 1256 1147 21146 Face 41647 1147 1196 21146 Face 41648 1196 1298 21146 Face 41649 1801 2081 21147 Face 41650 2081 1536 21147 Face 41651 1536 1556 21147 Face 41652 1556 1801 21147 Face 41653 1513 1321 21148 Face 41654 1321 1281 21148 Face 41655 1281 1461 21148 Face 41656 1461 1513 21148 Face 41657 1572 1513 21149 Face 41658 1513 1677 21149 Face 41659 1677 1700 21149 Face 41660 1700 1572 21149 Face 41661 1369 1321 21150 Face 41662 1321 1513 21150 Face 41663 1513 1528 21150 Face 41664 1528 1369 21150 Face 41665 3788 3928 21151 Face 41666 3928 1689 21151 Face 41667 1689 1692 21151 Face 41668 1692 3788 21151 Face 41669 1540 1654 21152 Face 41670 1654 1547 21152 Face 41671 1547 1381 21152 Face 41672 1381 1540 21152 Face 41673 1184 1003 21153 Face 41674 1003 1041 21153 Face 41675 1041 1170 21153 Face 41676 1170 1184 21153 Face 41677 1184 1204 21154 Face 41678 1204 1023 21154 Face 41679 1023 1003 21154 Face 41680 1003 1184 21154 Face 41681 1196 1147 21155 Face 41682 1147 1186 21155 Face 41683 1186 1230 21155 Face 41684 1230 1196 21155 Face 41685 1324 1298 21156 Face 41686 1298 1196 21156 Face 41687 1196 1236 21156 Face 41688 1236 1324 21156 Face 41689 3606 3890 21157 Face 41690 3890 1801 21157 Face 41691 1801 1871 21157 Face 41692 1871 3606 21157 Face 41693 3890 5527 21158 Face 41694 5527 5529 21158 Face 41695 5529 3843 21158 Face 41696 3843 3890 21158 Face 41697 3890 3843 21159 Face 41698 3843 2081 21159 Face 41699 2081 1801 21159 Face 41700 1801 3890 21159 Face 41701 1310 1170 21160 Face 41702 1170 1114 21160 Face 41703 1114 1211 21160 Face 41704 1211 1310 21160 Face 41705 1232 1196 21161 Face 41706 1196 1230 21161 Face 41707 1230 1258 21161 Face 41708 1258 1232 21161 Face 41709 1471 1459 21162 Face 41710 1459 1202 21162 Face 41711 1202 1204 21162 Face 41712 1204 1471 21162 Face 41713 1310 1336 21163 Face 41714 1336 1184 21163 Face 41715 1184 1170 21163 Face 41716 1170 1310 21163 Face 41717 1264 1281 21164 Face 41718 1281 1186 21164 Face 41719 1186 1143 21164 Face 41720 1143 1264 21164 Face 41721 1677 1513 21165 Face 41722 1513 1461 21165 Face 41723 1461 1587 21165 Face 41724 1587 1677 21165 Face 41725 1693 1646 21166 Face 41726 1646 3016 21166 Face 41727 3016 3635 21166 Face 41728 3635 1693 21166 Face 41729 1540 1381 21167 Face 41730 1381 1214 21167 Face 41731 1214 1357 21167 Face 41732 1357 1540 21167 Face 41733 2201 5544 21168 Face 41734 5544 5539 21168 Face 41735 5539 3016 21168 Face 41736 3016 2201 21168 Face 41737 3788 5528 21169 Face 41738 5528 5525 21169 Face 41739 5525 3928 21169 Face 41740 3928 3788 21169 Face 41741 5539 5536 21170 Face 41742 5536 3635 21170 Face 41743 3635 3016 21170 Face 41744 3016 5539 21170 Face 41745 7842 7385 21171 Face 41746 7385 7130 21171 Face 41747 7130 7738 21171 Face 41748 7738 7842 21171 Face 41749 7738 9355 21172 Face 41750 9355 9366 21172 Face 41751 9366 8307 21172 Face 41752 8307 7738 21172 Face 41753 10033 10106 21173 Face 41754 10106 10139 21173 Face 41755 10139 10051 21173 Face 41756 10051 10033 21173 Face 41757 10051 9916 21174 Face 41758 9916 9892 21174 Face 41759 9892 9992 21174 Face 41760 9992 10051 21174 Face 41761 9580 9366 21175 Face 41762 9366 9355 21175 Face 41763 9355 9663 21175 Face 41764 9663 9580 21175 Face 41765 9663 9959 21176 Face 41766 9959 9944 21176 Face 41767 9944 9718 21176 Face 41768 9718 9663 21176 Face 41769 9837 9950 21177 Face 41770 9950 9946 21177 Face 41771 9946 9833 21177 Face 41772 9833 9837 21177 Face 41773 9950 10007 21178 Face 41774 10007 10000 21178 Face 41775 10000 9946 21178 Face 41776 9946 9950 21178 Face 41777 10007 9878 21179 Face 41778 9878 9874 21179 Face 41779 9874 10000 21179 Face 41780 10000 10007 21179 Face 41781 9878 9618 21180 Face 41782 9618 9610 21180 Face 41783 9610 9874 21180 Face 41784 9874 9878 21180 Face 41785 9618 9351 21181 Face 41786 9351 9350 21181 Face 41787 9350 9610 21181 Face 41788 9610 9618 21181 Face 41789 9351 7893 21182 Face 41790 7893 7885 21182 Face 41791 7885 9350 21182 Face 41792 9350 9351 21182 Face 41793 7893 7562 21183 Face 41794 7562 7583 21183 Face 41795 7583 7885 21183 Face 41796 7885 7893 21183 Face 41797 7562 8119 21184 Face 41798 8119 8164 21184 Face 41799 8164 7583 21184 Face 41800 7583 7562 21184 Face 41801 8119 9386 21185 Face 41802 9386 9387 21185 Face 41803 9387 8164 21185 Face 41804 8164 8119 21185 Face 41805 9386 9601 21186 Face 41806 9601 9593 21186 Face 41807 9593 9387 21186 Face 41808 9387 9386 21186 Face 41809 9833 9593 21187 Face 41810 9593 9601 21187 Face 41811 9601 9837 21187 Face 41812 9837 9833 21187 Face 41813 9866 9617 21188 Face 41814 9617 9621 21188 Face 41815 9621 9868 21188 Face 41816 9868 9866 21188 Face 41817 9617 9371 21189 Face 41818 9371 9367 21189 Face 41819 9367 9621 21189 Face 41820 9621 9617 21189 Face 41821 9371 7895 21190 Face 41822 7895 7862 21190 Face 41823 7862 9367 21190 Face 41824 9367 9371 21190 Face 41825 7895 7483 21191 Face 41826 7483 7465 21191 Face 41827 7465 7862 21191 Face 41828 7862 7895 21191 Face 41829 7483 7920 21192 Face 41830 7920 7928 21192 Face 41831 7928 7465 21192 Face 41832 7465 7483 21192 Face 41833 7920 9358 21193 Face 41834 9358 9361 21193 Face 41835 9361 7928 21193 Face 41836 7928 7920 21193 Face 41837 9358 9637 21194 Face 41838 9637 9642 21194 Face 41839 9642 9361 21194 Face 41840 9361 9358 21194 Face 41841 9637 9911 21195 Face 41842 9911 9919 21195 Face 41843 9919 9642 21195 Face 41844 9642 9637 21195 Face 41845 9911 10054 21196 Face 41846 10054 10061 21196 Face 41847 10061 9919 21196 Face 41848 9919 9911 21196 Face 41849 10054 9977 21197 Face 41850 9977 9981 21197 Face 41851 9981 10061 21197 Face 41852 10061 10054 21197 Face 41853 9977 9866 21198 Face 41854 9866 9868 21198 Face 41855 9868 9981 21198 Face 41856 9981 9977 21198 Face 41857 9384 7897 21199 Face 41858 7897 8164 21199 Face 41859 8164 9387 21199 Face 41860 9387 9384 21199 Face 41861 9581 9384 21200 Face 41862 9384 9387 21200 Face 41863 9387 9593 21200 Face 41864 9593 9581 21200 Face 41865 9858 9581 21201 Face 41866 9581 9593 21201 Face 41867 9593 9833 21201 Face 41868 9833 9858 21201 Face 41869 9969 9858 21202 Face 41870 9858 9833 21202 Face 41871 9833 9946 21202 Face 41872 9946 9969 21202 Face 41873 10034 9969 21203 Face 41874 9969 9946 21203 Face 41875 9946 10000 21203 Face 41876 10000 10034 21203 Face 41877 9899 10034 21204 Face 41878 10034 10000 21204 Face 41879 10000 9874 21204 Face 41880 9874 9899 21204 Face 41881 9616 9899 21205 Face 41882 9899 9874 21205 Face 41883 9874 9610 21205 Face 41884 9610 9616 21205 Face 41885 9327 9616 21206 Face 41886 9616 9610 21206 Face 41887 9610 9350 21206 Face 41888 9350 9327 21206 Face 41889 7647 9327 21207 Face 41890 9327 9350 21207 Face 41891 9350 7885 21207 Face 41892 7885 7647 21207 Face 41893 7365 7647 21208 Face 41894 7647 7885 21208 Face 41895 7885 7583 21208 Face 41896 7583 7365 21208 Face 41897 7897 7365 21209 Face 41898 7365 7583 21209 Face 41899 7583 8164 21209 Face 41900 8164 7897 21209 Face 41901 7623 7455 21210 Face 41902 7455 7677 21210 Face 41903 7677 7850 21210 Face 41904 7850 7623 21210 Face 41905 9296 7623 21211 Face 41906 7623 7850 21211 Face 41907 7850 9335 21211 Face 41908 9335 9296 21211 Face 41909 9582 9296 21212 Face 41910 9296 9335 21212 Face 41911 9335 9572 21212 Face 41912 9572 9582 21212 Face 41913 9865 9582 21213 Face 41914 9582 9572 21213 Face 41915 9572 9842 21213 Face 41916 9842 9865 21213 Face 41917 9991 9865 21214 Face 41918 9865 9842 21214 Face 41919 9842 9961 21214 Face 41920 9961 9991 21214 Face 41921 9942 9991 21215 Face 41922 9991 9961 21215 Face 41923 9961 9913 21215 Face 41924 9913 9942 21215 Face 41925 9828 9942 21216 Face 41926 9942 9913 21216 Face 41927 9913 9798 21216 Face 41928 9798 9828 21216 Face 41929 9566 9828 21217 Face 41930 9828 9798 21217 Face 41931 9798 9573 21217 Face 41932 9573 9566 21217 Face 41933 9393 9566 21218 Face 41934 9566 9573 21218 Face 41935 9573 9394 21218 Face 41936 9394 9393 21218 Face 41937 8137 9393 21219 Face 41938 9393 9394 21219 Face 41939 9394 8348 21219 Face 41940 8348 8137 21219 Face 41941 7455 8137 21220 Face 41942 8137 8348 21220 Face 41943 8348 7677 21220 Face 41944 7677 7455 21220 Face 41945 7336 7865 21221 Face 41946 7865 8119 21221 Face 41947 8119 7562 21221 Face 41948 7562 7336 21221 Face 41949 7724 7336 21222 Face 41950 7336 7562 21222 Face 41951 7562 7893 21222 Face 41952 7893 7724 21222 Face 41953 9309 7724 21223 Face 41954 7724 7893 21223 Face 41955 7893 9351 21223 Face 41956 9351 9309 21223 Face 41957 9623 9309 21224 Face 41958 9309 9351 21224 Face 41959 9351 9618 21224 Face 41960 9618 9623 21224 Face 41961 9906 9623 21225 Face 41962 9623 9618 21225 Face 41963 9618 9878 21225 Face 41964 9878 9906 21225 Face 41965 10047 9906 21226 Face 41966 9906 9878 21226 Face 41967 9878 10007 21226 Face 41968 10007 10047 21226 Face 41969 9979 10047 21227 Face 41970 10047 10007 21227 Face 41971 10007 9950 21227 Face 41972 9950 9979 21227 Face 41973 9860 9979 21228 Face 41974 9979 9950 21228 Face 41975 9950 9837 21228 Face 41976 9837 9860 21228 Face 41977 9585 9860 21229 Face 41978 9860 9837 21229 Face 41979 9837 9601 21229 Face 41980 9601 9585 21229 Face 41981 9381 9585 21230 Face 41982 9585 9601 21230 Face 41983 9601 9386 21230 Face 41984 9386 9381 21230 Face 41985 7865 9381 21231 Face 41986 9381 9386 21231 Face 41987 9386 8119 21231 Face 41988 8119 7865 21231 Face 41989 9604 9365 21232 Face 41990 9365 9371 21232 Face 41991 9371 9617 21232 Face 41992 9617 9604 21232 Face 41993 9880 9604 21233 Face 41994 9604 9617 21233 Face 41995 9617 9866 21233 Face 41996 9866 9880 21233 Face 41997 10012 9880 21234 Face 41998 9880 9866 21234 Face 41999 9866 9977 21234 Face 42000 9977 10012 21234 Face 42001 10089 10012 21235 Face 42002 10012 9977 21235 Face 42003 9977 10054 21235 Face 42004 10054 10089 21235 Face 42005 9929 10089 21236 Face 42006 10089 10054 21236 Face 42007 10054 9911 21236 Face 42008 9911 9929 21236 Face 42009 9641 9929 21237 Face 42010 9929 9911 21237 Face 42011 9911 9637 21237 Face 42012 9637 9641 21237 Face 42013 9334 9641 21238 Face 42014 9641 9637 21238 Face 42015 9637 9358 21238 Face 42016 9358 9334 21238 Face 42017 7758 9334 21239 Face 42018 9334 9358 21239 Face 42019 9358 7920 21239 Face 42020 7920 7758 21239 Face 42021 7269 7758 21240 Face 42022 7758 7920 21240 Face 42023 7920 7483 21240 Face 42024 7483 7269 21240 Face 42025 7703 7269 21241 Face 42026 7269 7483 21241 Face 42027 7483 7895 21241 Face 42028 7895 7703 21241 Face 42029 9365 7703 21242 Face 42030 7703 7895 21242 Face 42031 7895 9371 21242 Face 42032 9371 9365 21242 Face 42033 7711 7215 21243 Face 42034 7215 7465 21243 Face 42035 7465 7928 21243 Face 42036 7928 7711 21243 Face 42037 9344 7711 21244 Face 42038 7711 7928 21244 Face 42039 7928 9361 21244 Face 42040 9361 9344 21244 Face 42041 9644 9344 21245 Face 42042 9344 9361 21245 Face 42043 9361 9642 21245 Face 42044 9642 9644 21245 Face 42045 9936 9644 21246 Face 42046 9644 9642 21246 Face 42047 9642 9919 21246 Face 42048 9919 9936 21246 Face 42049 10098 9936 21247 Face 42050 9936 9919 21247 Face 42051 9919 10061 21247 Face 42052 10061 10098 21247 Face 42053 10013 10098 21248 Face 42054 10098 10061 21248 Face 42055 10061 9981 21248 Face 42056 9981 10013 21248 Face 42057 9894 10013 21249 Face 42058 10013 9981 21249 Face 42059 9981 9868 21249 Face 42060 9868 9894 21249 Face 42061 9608 9894 21250 Face 42062 9894 9868 21250 Face 42063 9868 9621 21250 Face 42064 9621 9608 21250 Face 42065 9362 9608 21251 Face 42066 9608 9621 21251 Face 42067 9621 9367 21251 Face 42068 9367 9362 21251 Face 42069 7625 9362 21252 Face 42070 9362 9367 21252 Face 42071 9367 7862 21252 Face 42072 7862 7625 21252 Face 42073 7215 7625 21253 Face 42074 7625 7862 21253 Face 42075 7862 7465 21253 Face 42076 7465 7215 21253 Face 42077 9349 7456 21254 Face 42078 7456 7661 21254 Face 42079 7661 9354 21254 Face 42080 9354 9349 21254 Face 42081 9613 9349 21255 Face 42082 9349 9354 21255 Face 42083 9354 9627 21255 Face 42084 9627 9613 21255 Face 42085 9916 9613 21256 Face 42086 9613 9627 21256 Face 42087 9627 9892 21256 Face 42088 9892 9916 21256 Face 42089 9959 10139 21257 Face 42090 10139 10106 21257 Face 42091 10106 9944 21257 Face 42092 9944 9959 21257 Face 42093 7456 7130 21258 Face 42094 7130 7385 21258 Face 42095 7385 7661 21258 Face 42096 7661 7456 21258 Face 42097 9828 9566 21259 Face 42098 9566 9581 21259 Face 42099 9581 9858 21259 Face 42100 9858 9828 21259 Face 42101 9860 9585 21260 Face 42102 9585 9604 21260 Face 42103 9604 9880 21260 Face 42104 9880 9860 21260 Face 42105 9623 9906 21261 Face 42106 9906 9929 21261 Face 42107 9929 9641 21261 Face 42108 9641 9623 21261 Face 42109 9906 10047 21262 Face 42110 10047 10089 21262 Face 42111 10089 9929 21262 Face 42112 9929 9906 21262 Face 42113 10047 9979 21263 Face 42114 9979 10012 21263 Face 42115 10012 10089 21263 Face 42116 10089 10047 21263 Face 42117 9979 9860 21264 Face 42118 9860 9880 21264 Face 42119 9880 10012 21264 Face 42120 10012 9979 21264 Face 42121 9916 10051 21265 Face 42122 10051 10013 21265 Face 42123 10013 9894 21265 Face 42124 9894 9916 21265 Face 42125 10051 10139 21266 Face 42126 10139 10098 21266 Face 42127 10098 10013 21266 Face 42128 10013 10051 21266 Face 42129 10139 9959 21267 Face 42130 9959 9936 21267 Face 42131 9936 10098 21267 Face 42132 10098 10139 21267 Face 42133 9959 9663 21268 Face 42134 9663 9644 21268 Face 42135 9644 9936 21268 Face 42136 9936 9959 21268 Face 42137 9641 9334 21269 Face 42138 9334 9309 21269 Face 42139 9309 9623 21269 Face 42140 9623 9641 21269 Face 42141 9334 7758 21270 Face 42142 7758 7724 21270 Face 42143 7724 9309 21270 Face 42144 9309 9334 21270 Face 42145 7758 7269 21271 Face 42146 7269 7336 21271 Face 42147 7336 7724 21271 Face 42148 7724 7758 21271 Face 42149 7269 7703 21272 Face 42150 7703 7865 21272 Face 42151 7865 7336 21272 Face 42152 7336 7269 21272 Face 42153 7703 9365 21273 Face 42154 9365 9381 21273 Face 42155 9381 7865 21273 Face 42156 7865 7703 21273 Face 42157 9365 9604 21274 Face 42158 9604 9585 21274 Face 42159 9585 9381 21274 Face 42160 9381 9365 21274 Face 42161 9566 9393 21275 Face 42162 9393 9384 21275 Face 42163 9384 9581 21275 Face 42164 9581 9566 21275 Face 42165 9393 8137 21276 Face 42166 8137 7897 21276 Face 42167 7897 9384 21276 Face 42168 9384 9393 21276 Face 42169 8137 7455 21277 Face 42170 7455 7365 21277 Face 42171 7365 7897 21277 Face 42172 7897 8137 21277 Face 42173 7455 7623 21278 Face 42174 7623 7647 21278 Face 42175 7647 7365 21278 Face 42176 7365 7455 21278 Face 42177 7623 9296 21279 Face 42178 9296 9327 21279 Face 42179 9327 7647 21279 Face 42180 7647 7623 21279 Face 42181 9296 9582 21280 Face 42182 9582 9616 21280 Face 42183 9616 9327 21280 Face 42184 9327 9296 21280 Face 42185 9349 9613 21281 Face 42186 9613 9608 21281 Face 42187 9608 9362 21281 Face 42188 9362 9349 21281 Face 42189 9613 9916 21282 Face 42190 9916 9894 21282 Face 42191 9894 9608 21282 Face 42192 9608 9613 21282 Face 42193 9858 9969 21283 Face 42194 9969 9942 21283 Face 42195 9942 9828 21283 Face 42196 9828 9858 21283 Face 42197 9969 10034 21284 Face 42198 10034 9991 21284 Face 42199 9991 9942 21284 Face 42200 9942 9969 21284 Face 42201 10034 9899 21285 Face 42202 9899 9865 21285 Face 42203 9865 9991 21285 Face 42204 9991 10034 21285 Face 42205 9899 9616 21286 Face 42206 9616 9582 21286 Face 42207 9582 9865 21286 Face 42208 9865 9899 21286 Face 42209 9663 9355 21287 Face 42210 9355 9344 21287 Face 42211 9344 9644 21287 Face 42212 9644 9663 21287 Face 42213 9355 7738 21288 Face 42214 7738 7711 21288 Face 42215 7711 9344 21288 Face 42216 9344 9355 21288 Face 42217 7738 7130 21289 Face 42218 7130 7215 21289 Face 42219 7215 7711 21289 Face 42220 7711 7738 21289 Face 42221 7130 7456 21290 Face 42222 7456 7625 21290 Face 42223 7625 7215 21290 Face 42224 7215 7130 21290 Face 42225 7456 9349 21291 Face 42226 9349 9362 21291 Face 42227 9362 7625 21291 Face 42228 7625 7456 21291 Face 42229 3304 3911 21292 Face 42230 3911 3659 21292 Face 42231 3659 3202 21292 Face 42232 3202 3304 21292 Face 42233 2736 1679 21293 Face 42234 1679 1690 21293 Face 42235 1690 3304 21293 Face 42236 3304 2736 21293 Face 42237 994 906 21294 Face 42238 906 939 21294 Face 42239 939 1012 21294 Face 42240 1012 994 21294 Face 42241 1053 1153 21295 Face 42242 1153 1129 21295 Face 42243 1129 994 21295 Face 42244 994 1053 21295 Face 42245 1382 1690 21296 Face 42246 1690 1679 21296 Face 42247 1679 1465 21296 Face 42248 1465 1382 21296 Face 42249 1327 1101 21297 Face 42250 1101 1086 21297 Face 42251 1086 1382 21297 Face 42252 1382 1327 21297 Face 42253 1212 1099 21298 Face 42254 1099 1095 21298 Face 42255 1095 1208 21298 Face 42256 1208 1212 21298 Face 42257 1099 1045 21299 Face 42258 1045 1038 21299 Face 42259 1038 1095 21299 Face 42260 1095 1099 21299 Face 42261 1045 1171 21300 Face 42262 1171 1167 21300 Face 42263 1167 1038 21300 Face 42264 1038 1045 21300 Face 42265 1171 1435 21301 Face 42266 1435 1427 21301 Face 42267 1427 1167 21301 Face 42268 1167 1171 21301 Face 42269 1435 1695 21302 Face 42270 1695 1694 21302 Face 42271 1694 1427 21302 Face 42272 1427 1435 21302 Face 42273 1695 3159 21303 Face 42274 3159 3152 21303 Face 42275 3152 1694 21303 Face 42276 1694 1695 21303 Face 42277 3159 3459 21304 Face 42278 3459 3482 21304 Face 42279 3482 3152 21304 Face 42280 3152 3159 21304 Face 42281 3459 2879 21305 Face 42282 2879 2916 21305 Face 42283 2916 3482 21305 Face 42284 3482 3459 21305 Face 42285 2879 1658 21306 Face 42286 1658 1659 21306 Face 42287 1659 2916 21306 Face 42288 2916 2879 21306 Face 42289 1658 1452 21307 Face 42290 1452 1444 21307 Face 42291 1444 1659 21307 Face 42292 1659 1658 21307 Face 42293 1208 1444 21308 Face 42294 1444 1452 21308 Face 42295 1452 1212 21308 Face 42296 1212 1208 21308 Face 42297 1177 1424 21309 Face 42298 1424 1428 21309 Face 42299 1428 1179 21309 Face 42300 1179 1177 21309 Face 42301 1424 1678 21310 Face 42302 1678 1674 21310 Face 42303 1674 1428 21310 Face 42304 1428 1424 21310 Face 42305 1678 3182 21311 Face 42306 3182 3150 21311 Face 42307 3150 1674 21311 Face 42308 1674 1678 21311 Face 42309 3182 3575 21312 Face 42310 3575 3559 21312 Face 42311 3559 3150 21312 Face 42312 3150 3182 21312 Face 42313 3575 3107 21313 Face 42314 3107 3118 21313 Face 42315 3118 3559 21313 Face 42316 3559 3575 21313 Face 42317 3107 1684 21314 Face 42318 1684 1687 21314 Face 42319 1687 3118 21314 Face 42320 3118 3107 21314 Face 42321 1684 1403 21315 Face 42322 1403 1408 21315 Face 42323 1408 1687 21315 Face 42324 1687 1684 21315 Face 42325 1403 1126 21316 Face 42326 1126 1134 21316 Face 42327 1134 1408 21316 Face 42328 1408 1403 21316 Face 42329 1126 984 21317 Face 42330 984 991 21317 Face 42331 991 1134 21317 Face 42332 1134 1126 21317 Face 42333 984 1064 21318 Face 42334 1064 1068 21318 Face 42335 1068 991 21318 Face 42336 991 984 21318 Face 42337 1064 1177 21319 Face 42338 1177 1179 21319 Face 42339 1179 1068 21319 Face 42340 1068 1064 21319 Face 42341 1658 2879 21320 Face 42342 2879 3146 21320 Face 42343 3146 1661 21320 Face 42344 1661 1658 21320 Face 42345 1452 1658 21321 Face 42346 1658 1661 21321 Face 42347 1661 1464 21321 Face 42348 1464 1452 21321 Face 42349 1212 1452 21322 Face 42350 1452 1464 21322 Face 42351 1464 1187 21322 Face 42352 1187 1212 21322 Face 42353 1099 1212 21323 Face 42354 1212 1187 21323 Face 42355 1187 1076 21323 Face 42356 1076 1099 21323 Face 42357 1045 1099 21324 Face 42358 1099 1076 21324 Face 42359 1076 1011 21324 Face 42360 1011 1045 21324 Face 42361 1171 1045 21325 Face 42362 1045 1011 21325 Face 42363 1011 1146 21325 Face 42364 1146 1171 21325 Face 42365 1435 1171 21326 Face 42366 1171 1146 21326 Face 42367 1146 1429 21326 Face 42368 1429 1435 21326 Face 42369 1695 1435 21327 Face 42370 1435 1429 21327 Face 42371 1429 1718 21327 Face 42372 1718 1695 21327 Face 42373 3159 1695 21328 Face 42374 1695 1718 21328 Face 42375 1718 3399 21328 Face 42376 3399 3159 21328 Face 42377 3459 3159 21329 Face 42378 3159 3399 21329 Face 42379 3399 3678 21329 Face 42380 3678 3459 21329 Face 42381 2879 3459 21330 Face 42382 3459 3678 21330 Face 42383 3678 3146 21330 Face 42384 3146 2879 21330 Face 42385 3195 3364 21331 Face 42386 3364 3587 21331 Face 42387 3587 3422 21331 Face 42388 3422 3195 21331 Face 42389 1710 3195 21332 Face 42390 3195 3422 21332 Face 42391 3422 1749 21332 Face 42392 1749 1710 21332 Face 42393 1473 1710 21333 Face 42394 1710 1749 21333 Face 42395 1749 1463 21333 Face 42396 1463 1473 21333 Face 42397 1203 1473 21334 Face 42398 1473 1463 21334 Face 42399 1463 1180 21334 Face 42400 1180 1203 21334 Face 42401 1084 1203 21335 Face 42402 1203 1180 21335 Face 42403 1180 1054 21335 Face 42404 1054 1084 21335 Face 42405 1132 1084 21336 Face 42406 1084 1054 21336 Face 42407 1054 1103 21336 Face 42408 1103 1132 21336 Face 42409 1247 1132 21337 Face 42410 1132 1103 21337 Face 42411 1103 1217 21337 Face 42412 1217 1247 21337 Face 42413 1472 1247 21338 Face 42414 1247 1217 21338 Face 42415 1217 1479 21338 Face 42416 1479 1472 21338 Face 42417 1651 1472 21339 Face 42418 1472 1479 21339 Face 42419 1479 1652 21339 Face 42420 1652 1651 21339 Face 42421 2701 1651 21340 Face 42422 1651 1652 21340 Face 42423 1652 2905 21340 Face 42424 2905 2701 21340 Face 42425 3364 2701 21341 Face 42426 2701 2905 21341 Face 42427 2905 3587 21341 Face 42428 3587 3364 21341 Face 42429 3482 2916 21342 Face 42430 2916 3179 21342 Face 42431 3179 3707 21342 Face 42432 3707 3482 21342 Face 42433 3152 3482 21343 Face 42434 3482 3707 21343 Face 42435 3707 3317 21343 Face 42436 3317 3152 21343 Face 42437 1694 3152 21344 Face 42438 3152 3317 21344 Face 42439 3317 1736 21344 Face 42440 1736 1694 21344 Face 42441 1427 1694 21345 Face 42442 1694 1736 21345 Face 42443 1736 1422 21345 Face 42444 1422 1427 21345 Face 42445 1167 1427 21346 Face 42446 1427 1422 21346 Face 42447 1422 1139 21346 Face 42448 1139 1167 21346 Face 42449 1038 1167 21347 Face 42450 1167 1139 21347 Face 42451 1139 998 21347 Face 42452 998 1038 21347 Face 42453 1095 1038 21348 Face 42454 1038 998 21348 Face 42455 998 1066 21348 Face 42456 1066 1095 21348 Face 42457 1208 1095 21349 Face 42458 1095 1066 21349 Face 42459 1066 1185 21349 Face 42460 1185 1208 21349 Face 42461 1444 1208 21350 Face 42462 1208 1185 21350 Face 42463 1185 1460 21350 Face 42464 1460 1444 21350 Face 42465 1659 1444 21351 Face 42466 1444 1460 21351 Face 42467 1460 1664 21351 Face 42468 1664 1659 21351 Face 42469 2916 1659 21352 Face 42470 1659 1664 21352 Face 42471 1664 3179 21352 Face 42472 3179 2916 21352 Face 42473 1428 1674 21353 Face 42474 1674 1680 21353 Face 42475 1680 1441 21353 Face 42476 1441 1428 21353 Face 42477 1179 1428 21354 Face 42478 1428 1441 21354 Face 42479 1441 1165 21354 Face 42480 1165 1179 21354 Face 42481 1068 1179 21355 Face 42482 1179 1165 21355 Face 42483 1165 1033 21355 Face 42484 1033 1068 21355 Face 42485 991 1068 21356 Face 42486 1068 1033 21356 Face 42487 1033 956 21356 Face 42488 956 991 21356 Face 42489 1134 991 21357 Face 42490 991 956 21357 Face 42491 956 1116 21357 Face 42492 1116 1134 21357 Face 42493 1408 1134 21358 Face 42494 1134 1116 21358 Face 42495 1116 1404 21358 Face 42496 1404 1408 21358 Face 42497 1687 1408 21359 Face 42498 1408 1404 21359 Face 42499 1404 1711 21359 Face 42500 1711 1687 21359 Face 42501 3118 1687 21360 Face 42502 1687 1711 21360 Face 42503 1711 3288 21360 Face 42504 3288 3118 21360 Face 42505 3559 3118 21361 Face 42506 3118 3288 21361 Face 42507 3288 3777 21361 Face 42508 3777 3559 21361 Face 42509 3150 3559 21362 Face 42510 3559 3777 21362 Face 42511 3777 3341 21362 Face 42512 3341 3150 21362 Face 42513 1674 3150 21363 Face 42514 3150 3341 21363 Face 42515 3341 1680 21363 Face 42516 1680 1674 21363 Face 42517 3107 3575 21364 Face 42518 3575 3829 21364 Face 42519 3829 3334 21364 Face 42520 3334 3107 21364 Face 42521 1684 3107 21365 Face 42522 3107 3334 21365 Face 42523 3334 1701 21365 Face 42524 1701 1684 21365 Face 42525 1403 1684 21366 Face 42526 1684 1701 21366 Face 42527 1701 1401 21366 Face 42528 1401 1403 21366 Face 42529 1126 1403 21367 Face 42530 1403 1401 21367 Face 42531 1401 1109 21367 Face 42532 1109 1126 21367 Face 42533 984 1126 21368 Face 42534 1126 1109 21368 Face 42535 1109 947 21368 Face 42536 947 984 21368 Face 42537 1064 984 21369 Face 42538 984 947 21369 Face 42539 947 1032 21369 Face 42540 1032 1064 21369 Face 42541 1177 1064 21370 Face 42542 1064 1032 21370 Face 42543 1032 1151 21370 Face 42544 1151 1177 21370 Face 42545 1424 1177 21371 Face 42546 1177 1151 21371 Face 42547 1151 1437 21371 Face 42548 1437 1424 21371 Face 42549 1678 1424 21372 Face 42550 1424 1437 21372 Face 42551 1437 1683 21372 Face 42552 1683 1678 21372 Face 42553 3182 1678 21373 Face 42554 1678 1683 21373 Face 42555 1683 3420 21373 Face 42556 3420 3182 21373 Face 42557 3575 3182 21374 Face 42558 3182 3420 21374 Face 42559 3420 3829 21374 Face 42560 3829 3575 21374 Face 42561 1691 3381 21375 Face 42562 3381 3585 21375 Face 42563 3585 1696 21375 Face 42564 1696 1691 21375 Face 42565 1418 1691 21376 Face 42566 1691 1696 21376 Face 42567 1696 1432 21376 Face 42568 1432 1418 21376 Face 42569 1153 1418 21377 Face 42570 1418 1432 21377 Face 42571 1432 1129 21377 Face 42572 1129 1153 21377 Face 42573 1101 939 21378 Face 42574 939 906 21378 Face 42575 906 1086 21378 Face 42576 1086 1101 21378 Face 42577 3381 3659 21379 Face 42578 3659 3911 21379 Face 42579 3911 3585 21379 Face 42580 3585 3381 21379 Face 42581 1187 1464 21380 Face 42582 1464 1479 21380 Face 42583 1479 1217 21380 Face 42584 1217 1187 21380 Face 42585 1165 1441 21381 Face 42586 1441 1460 21381 Face 42587 1460 1185 21381 Face 42588 1185 1165 21381 Face 42589 1404 1116 21382 Face 42590 1116 1139 21382 Face 42591 1139 1422 21382 Face 42592 1422 1404 21382 Face 42593 1116 956 21383 Face 42594 956 998 21383 Face 42595 998 1139 21383 Face 42596 1139 1116 21383 Face 42597 956 1033 21384 Face 42598 1033 1066 21384 Face 42599 1066 998 21384 Face 42600 998 956 21384 Face 42601 1033 1165 21385 Face 42602 1165 1185 21385 Face 42603 1185 1066 21385 Face 42604 1066 1033 21385 Face 42605 1151 1032 21386 Face 42606 1032 994 21386 Face 42607 994 1129 21386 Face 42608 1129 1151 21386 Face 42609 1032 947 21387 Face 42610 947 906 21387 Face 42611 906 994 21387 Face 42612 994 1032 21387 Face 42613 947 1109 21388 Face 42614 1109 1086 21388 Face 42615 1086 906 21388 Face 42616 906 947 21388 Face 42617 1109 1401 21389 Face 42618 1401 1382 21389 Face 42619 1382 1086 21389 Face 42620 1086 1109 21389 Face 42621 1422 1736 21390 Face 42622 1736 1711 21390 Face 42623 1711 1404 21390 Face 42624 1404 1422 21390 Face 42625 1736 3317 21391 Face 42626 3317 3288 21391 Face 42627 3288 1711 21391 Face 42628 1711 1736 21391 Face 42629 3317 3707 21392 Face 42630 3707 3777 21392 Face 42631 3777 3288 21392 Face 42632 3288 3317 21392 Face 42633 3707 3179 21393 Face 42634 3179 3341 21393 Face 42635 3341 3777 21393 Face 42636 3777 3707 21393 Face 42637 3179 1664 21394 Face 42638 1664 1680 21394 Face 42639 1680 3341 21394 Face 42640 3341 3179 21394 Face 42641 1664 1460 21395 Face 42642 1460 1441 21395 Face 42643 1441 1680 21395 Face 42644 1680 1664 21395 Face 42645 1464 1661 21396 Face 42646 1661 1652 21396 Face 42647 1652 1479 21396 Face 42648 1479 1464 21396 Face 42649 1661 3146 21397 Face 42650 3146 2905 21397 Face 42651 2905 1652 21397 Face 42652 1652 1661 21397 Face 42653 3146 3678 21398 Face 42654 3678 3587 21398 Face 42655 3587 2905 21398 Face 42656 2905 3146 21398 Face 42657 3678 3399 21399 Face 42658 3399 3422 21399 Face 42659 3422 3587 21399 Face 42660 3587 3678 21399 Face 42661 3399 1718 21400 Face 42662 1718 1749 21400 Face 42663 1749 3422 21400 Face 42664 3422 3399 21400 Face 42665 1718 1429 21401 Face 42666 1429 1463 21401 Face 42667 1463 1749 21401 Face 42668 1749 1718 21401 Face 42669 1683 1437 21402 Face 42670 1437 1432 21402 Face 42671 1432 1696 21402 Face 42672 1696 1683 21402 Face 42673 1437 1151 21403 Face 42674 1151 1129 21403 Face 42675 1129 1432 21403 Face 42676 1432 1437 21403 Face 42677 1217 1103 21404 Face 42678 1103 1076 21404 Face 42679 1076 1187 21404 Face 42680 1187 1217 21404 Face 42681 1103 1054 21405 Face 42682 1054 1011 21405 Face 42683 1011 1076 21405 Face 42684 1076 1103 21405 Face 42685 1054 1180 21406 Face 42686 1180 1146 21406 Face 42687 1146 1011 21406 Face 42688 1011 1054 21406 Face 42689 1180 1463 21407 Face 42690 1463 1429 21407 Face 42691 1429 1146 21407 Face 42692 1146 1180 21407 Face 42693 1401 1701 21408 Face 42694 1701 1690 21408 Face 42695 1690 1382 21408 Face 42696 1382 1401 21408 Face 42697 1701 3334 21409 Face 42698 3334 3304 21409 Face 42699 3304 1690 21409 Face 42700 1690 1701 21409 Face 42701 3334 3829 21410 Face 42702 3829 3911 21410 Face 42703 3911 3304 21410 Face 42704 3304 3334 21410 Face 42705 3829 3420 21411 Face 42706 3420 3585 21411 Face 42707 3585 3911 21411 Face 42708 3911 3829 21411 Face 42709 3420 1683 21412 Face 42710 1683 1696 21412 Face 42711 1696 3585 21412 Face 42712 3585 3420 21412 ================================================ FILE: models/gargoyle500.m ================================================ Vertex 1 0.380763 0.326377 0.0285111 Vertex 2 0.247016 0.319417 0.0174855 Vertex 3 0.169366 0.777404 0.210396 Vertex 4 0.198953 0.750726 0.271902 Vertex 5 0.391082 0.719606 0.250403 Vertex 6 0.210018 0.324593 0.304704 Vertex 7 0.278469 0.748118 0.0884343 Vertex 8 0.403037 0.321394 0.283412 Vertex 9 0.218956 0.694886 0.100862 Vertex 10 0.30903 0.671664 0.0487117 Vertex 11 0.314955 0.731328 0.30813 Vertex 12 0.311283 0.873331 0.273017 Vertex 13 0.347754 0.726241 0.115377 Vertex 14 0.32121 0.778956 0.44143 Vertex 15 0.234042 0.732997 0.111513 Vertex 16 0.245334 0.890331 0.306588 Vertex 17 0.174176 0.326411 0.0933919 Vertex 18 0.367067 0.701415 0.157763 Vertex 19 0.471753 0.808809 0.0113292 Vertex 20 0.517928 0.983818 0.0453531 Vertex 21 0.532781 0.978862 0.065224 Vertex 22 0.21935 0.523082 0.280064 Vertex 23 0.217296 0.460167 0.0696147 Vertex 24 0.219168 0.812004 0.18582 Vertex 25 0.0340592 0.992167 0.0470547 Vertex 26 0.113217 0.835488 0.0192165 Vertex 27 0.0968498 0.80548 0.0471851 Vertex 28 0.399898 0.438672 0.280093 Vertex 29 0.309937 0.329658 0.355826 Vertex 30 0.352414 0.532886 0.223769 Vertex 31 0.332887 0.809482 0.205766 Vertex 32 0.423779 0.889347 0.213932 Vertex 33 0.240395 0.805715 0.459348 Vertex 34 0.358636 0.450297 0.0520098 Vertex 35 0.243807 0.721076 0.294934 Vertex 36 0.293274 0.508308 0.00411988 Vertex 37 0.00578784 0.981475 0.0587448 Vertex 38 0.0903613 0.921205 0.172504 Vertex 39 0.195462 0.691602 0.144524 Vertex 40 0.173112 0.455301 0.203989 Vertex 41 0.258988 0.534448 0.250328 Vertex 42 0.377858 0.514765 0.124738 Vertex 43 0.359341 0.855957 0.369355 Vertex 44 0.164523 0.693203 0.268444 Vertex 45 0.42229 0.329653 0.142924 Vertex 46 0.346273 0.73462 0.2819 Vertex 47 0.253699 0.858303 0.253343 Vertex 48 0.214155 0.863277 0.382597 Vertex 49 0.293273 0.853366 0.400905 Vertex 50 0.147928 0.841597 0.144556 Vertex 51 0.43403 0.865185 0.147823 Vertex 52 0.373427 0.564253 0.080208 Vertex 53 0.248945 0.739384 0.387437 Vertex 54 0.202407 0.793949 0.342091 Vertex 55 0.139559 0.817096 0.245027 Vertex 56 0.101661 0.945372 0.134765 Vertex 57 0.222228 0.317323 0.0668911 Vertex 58 0.501729 0.878374 0.0386635 Vertex 59 0.215748 0.658496 0.296318 Vertex 60 0.295055 0.449722 0.0222328 Vertex 61 0.319755 0.551042 0.257596 Vertex 62 0.272128 0.628555 0.304886 Vertex 63 0.336269 0.800291 0.242221 Vertex 64 0.358369 0.803944 0.179294 Vertex 65 0.215532 0.817073 0.21976 Vertex 66 0.217299 0.450259 0.306854 Vertex 67 0.216981 0.521241 0.219063 Vertex 68 0.294937 0.318416 0.314768 Vertex 69 0.306508 0.468701 0.268499 Vertex 70 0.369499 0.630261 0.237242 Vertex 71 0.295114 0.836858 0.175987 Vertex 72 0.174286 0.326495 0.247652 Vertex 73 0.229966 0.533008 0.037168 Vertex 74 0.215502 0.608935 0.0984471 Vertex 75 0.201368 0.494956 0.104828 Vertex 76 0.362744 0.460182 0.301339 Vertex 77 0.377641 0.524745 0.271709 Vertex 78 0.359524 0.632146 0.295152 Vertex 79 0.182947 0.708063 0.0768914 Vertex 80 0.399065 0.800683 0.227953 Vertex 81 0.327848 0.750939 0.374246 Vertex 82 0.498266 0.913076 0.017324 Vertex 83 0.440684 0.931216 0.141363 Vertex 84 0.40593 0.747786 0.0799691 Vertex 85 0.318106 0.317883 0.0106715 Vertex 86 0.393723 0.48328 0.174412 Vertex 87 0.387473 0.510364 0.180919 Vertex 88 0.101717 0.914595 0.191347 Vertex 89 0.32929 0.881676 0.33283 Vertex 90 0.33939 0.81892 0.385637 Vertex 91 0.206609 0.696515 0.190846 Vertex 92 0.398306 0.362728 0.0487386 Vertex 93 0.323047 0.818697 0.455569 Vertex 94 0.242154 0.827204 0.415681 Vertex 95 0.395743 0.319253 0.0949833 Vertex 96 0.336272 0.577578 0.0415251 Vertex 97 0.175624 0.6387 0.200785 Vertex 98 0.183262 0.633744 0.252009 Vertex 99 0.187303 0.615496 0.230467 Vertex 100 0.265386 0.893133 0.356277 Vertex 101 0.388896 0.749519 0.22065 Vertex 102 0.349324 0.805409 0.222198 Vertex 103 0.35194 0.661822 0.19741 Vertex 104 0.375428 0.615478 0.218953 Vertex 105 0.393975 0.317999 0.289927 Vertex 106 0.205703 0.318042 0.281719 Vertex 107 0.461869 0.79787 0.0718967 Vertex 108 0.187184 0.757645 0.161086 Vertex 109 0.250275 0.746279 0.428625 Vertex 110 0.349492 0.828733 0.290871 Vertex 111 0.248798 0.494826 0.26679 Vertex 112 0.412515 0.417226 0.240406 Vertex 113 0.28508 0.5886 0.0189095 Vertex 114 0.351901 0.491606 0.053703 Vertex 115 0.192184 0.847001 0.213826 Vertex 116 0.384206 0.769198 0.170707 Vertex 117 0.366022 0.69483 0.109977 Vertex 118 0.357861 0.713013 0.202489 Vertex 119 0.241301 0.825282 0.252004 Vertex 120 0.22223 0.81859 0.293514 Vertex 121 0.194456 0.906286 0.299931 Vertex 122 0.207514 0.910616 0.273389 Vertex 123 0.20229 0.651871 0.202146 Vertex 124 0.195771 0.76069 0.233813 Vertex 125 0.275115 0.389149 0.00651964 Vertex 126 0.334451 0.508016 0.27192 Vertex 127 0.28833 0.49159 0.245763 Vertex 128 0.357036 0.366099 0.337918 Vertex 129 0.0702061 0.922901 0.014846 Vertex 130 0.37792 0.737819 0.279857 Vertex 131 0.435471 0.896353 0.203774 Vertex 132 0.348565 0.774203 0.336317 Vertex 133 0.322552 0.757769 0.41215 Vertex 134 0.308101 0.72271 0.418773 Vertex 135 0.0390227 0.931078 0.0472482 Vertex 136 0.0528661 0.927853 0.00906152 Vertex 137 0.207324 0.534449 0.0721104 Vertex 138 0.408906 0.719879 0.123076 Vertex 139 0.418903 0.813846 0.25469 Vertex 140 0.28511 0.447102 0.319836 Vertex 141 0.187462 0.779265 0.107485 Vertex 142 0.263535 0.820424 0.176894 Vertex 143 0.359351 0.860094 0.296184 Vertex 144 0.36929 0.901529 0.292426 Vertex 145 0.433807 0.878693 0.0916482 Vertex 146 0.197447 0.457441 0.253668 Vertex 147 0.170974 0.491483 0.187948 Vertex 148 0.232171 0.762434 0.372567 Vertex 149 0.257079 0.787287 0.381019 Vertex 150 0.482673 0.906433 0.0736841 Vertex 151 0.535862 0.93282 0.0273528 Vertex 152 0.273561 0.837141 0.450267 Vertex 153 0.223755 0.436926 0.0476889 Vertex 154 0.0778402 0.850228 0.0503494 Vertex 155 0.201775 0.683348 0.11634 Vertex 156 0.169348 0.814581 0.197546 Vertex 157 0.171797 0.318064 0.146112 Vertex 158 0.438729 0.783932 0.0408009 Vertex 159 0.362691 0.603978 0.0974108 Vertex 160 0.294856 0.711244 0.316332 Vertex 161 0.362549 0.646917 0.188727 Vertex 162 0.303113 0.866853 0.396992 Vertex 163 0.313338 0.782521 0.379079 Vertex 164 0.210673 0.823756 0.366965 Vertex 165 0.242236 0.867375 0.399136 Vertex 166 0.43212 0.749948 0.0569439 Vertex 167 0.268551 0.784714 0.455119 Vertex 168 0.384239 0.470078 0.231802 Vertex 169 0.108319 0.886621 0.20714 Vertex 170 0.266423 0.329505 0.349434 Vertex 171 0.402441 0.499761 0.206962 Vertex 172 0.205709 0.511237 0.246738 Vertex 173 0.380681 0.61389 0.285092 Vertex 174 0.36908 0.812147 0.34444 Vertex 175 0.065383 0.970774 0.116976 Vertex 176 0.1655 0.366016 0.233792 Vertex 177 0.275012 0.888182 0.287414 Vertex 178 0.181748 0.722821 0.286717 Vertex 179 0.402362 0.447076 0.150096 Vertex 180 0.397351 0.460684 0.179263 Vertex 181 0.347808 0.62555 0.0730508 Vertex 182 0.223831 0.807164 0.383035 Vertex 183 0.469979 0.948197 0.13626 Vertex 184 0.373423 0.364218 0.0222572 Vertex 185 0.382411 0.790579 0.233472 Vertex 186 0.346082 0.88169 0.384152 Vertex 187 0.204083 0.863349 0.279382 Vertex 188 0.229997 0.863339 0.304966 Vertex 189 0.194116 0.364255 0.0579743 Vertex 190 0.199163 0.52239 0.161208 Vertex 191 0.208985 0.635405 0.144265 Vertex 192 0.228427 0.784087 0.26354 Vertex 193 0.385826 0.564284 0.176484 Vertex 194 0.377583 0.493284 0.254314 Vertex 195 0.367623 0.524534 0.283946 Vertex 196 0.313094 0.323611 0.00408118 Vertex 197 0.346034 0.789002 0.170426 Vertex 198 0.311466 0.321225 0.349504 Vertex 199 0.227322 0.318139 0.306448 Vertex 200 0.290732 0.473376 0.0123571 Vertex 201 0.294096 0.772509 0.103224 Vertex 202 0.255315 0.77076 0.423364 Vertex 203 0.242325 0.658345 0.286718 Vertex 204 0.123986 0.854995 0.235498 Vertex 205 0.233717 0.59901 0.0554324 Vertex 206 0.522997 0.944306 0.00655664 Vertex 207 0.39422 0.69815 0.100573 Vertex 208 0.187081 0.703112 0.230491 Vertex 209 0.463585 0.929966 0.149388 Vertex 210 0.532858 0.992822 0.0603093 Vertex 211 0.194152 0.505731 0.171027 Vertex 212 0.286529 0.732578 0.380995 Vertex 213 0.273274 0.865007 0.222426 Vertex 214 0.218466 0.770919 0.329638 Vertex 215 0.238768 0.326273 0.0181323 Vertex 216 0.128873 0.757638 0.070185 Vertex 217 0.131366 0.782363 0.0413257 Vertex 218 0.339542 0.615603 0.27886 Vertex 219 0.351086 0.806894 0.43526 Vertex 220 0.31169 0.836915 0.437054 Vertex 221 0.212294 0.551102 0.210014 Vertex 222 0.402625 0.82052 0.172654 Vertex 223 0.377547 0.326197 0.323834 Vertex 224 0.146362 0.805555 0.227085 Vertex 225 0.342739 0.810251 0.392381 Vertex 226 0.321271 0.61706 0.280364 Vertex 227 0.489746 0.813827 0.0520922 Vertex 228 0.42727 0.802901 0.111399 Vertex 229 0.443655 0.761857 0.0867932 Vertex 230 0.430359 0.750987 0.105651 Vertex 231 0.392414 0.643825 0.263308 Vertex 232 0.380837 0.716477 0.231833 Vertex 233 0.396018 0.774114 0.210669 Vertex 234 0.344478 0.911266 0.282858 Vertex 235 0.0566268 0.90645 0.0536223 Vertex 236 0.212684 0.658574 0.202409 Vertex 237 0.332811 0.457684 0.306569 Vertex 238 0.432452 0.866801 0.238706 Vertex 239 0.42055 0.855466 0.246894 Vertex 240 0.169776 0.777365 0.134681 Vertex 241 0.313026 0.891625 0.35764 Vertex 242 0.223737 0.759284 0.129219 Vertex 243 0.175908 0.769272 0.21587 Vertex 244 0.0717773 0.894883 0.014041 Vertex 245 0.172633 0.780775 0.221066 Vertex 246 0.1786 0.384071 0.101642 Vertex 247 0.124761 0.880055 0.164794 Vertex 248 0.404962 0.35607 0.293153 Vertex 249 0.2388 0.816785 0.205571 Vertex 250 0.195856 0.821879 0.157767 Vertex 251 0.208778 0.451912 0.0769082 Vertex 252 0.369065 0.465224 0.0735411 Face 1 182 164 148 Face 2 57 85 105 Face 3 160 35 62 Face 4 130 5 63 Face 5 246 40 251 Face 6 105 68 57 Face 7 213 7 142 Face 8 13 201 71 Face 9 110 132 11 Face 10 190 221 99 Face 11 35 160 81 Face 12 7 249 142 Face 13 201 13 10 Face 14 215 153 125 Face 15 226 218 46 Face 16 59 178 22 Face 17 18 159 181 Face 18 24 7 15 Face 19 7 113 9 Face 20 130 173 5 Face 21 9 15 7 Face 22 125 196 215 Face 23 159 18 103 Face 24 193 104 30 Face 25 90 49 220 Face 26 131 80 51 Face 27 141 250 242 Face 28 65 4 192 Face 29 215 189 153 Face 30 57 106 157 Face 31 117 18 181 Face 32 210 183 21 Face 33 158 19 166 Face 34 158 145 19 Face 35 19 82 58 Face 36 19 145 82 Face 37 51 150 131 Face 38 227 19 58 Face 39 176 40 246 Face 40 128 76 140 Face 41 9 191 155 Face 42 9 113 205 Face 43 154 244 26 Face 44 124 4 65 Face 45 250 129 56 Face 46 250 26 129 Face 47 141 26 250 Face 48 79 217 26 Face 49 155 216 79 Face 50 50 235 154 Face 51 248 28 128 Face 52 8 45 112 Face 53 6 170 66 Face 54 68 105 198 Face 55 194 30 70 Face 56 168 171 30 Face 57 71 197 13 Face 58 174 132 110 Face 59 102 32 83 Face 60 102 139 239 Face 61 167 33 202 Face 62 220 49 152 Face 63 45 179 112 Face 64 184 60 34 Face 65 4 35 192 Face 66 59 41 203 Face 67 10 113 7 Face 68 96 114 36 Face 69 25 37 175 Face 70 129 26 244 Face 71 240 50 154 Face 72 55 115 204 Face 73 236 91 191 Face 74 156 50 108 Face 75 66 40 176 Face 76 211 75 147 Face 77 111 41 59 Face 78 111 127 41 Face 79 34 179 92 Face 80 52 104 193 Face 81 12 89 234 Face 82 177 100 241 Face 83 124 178 4 Face 84 3 91 208 Face 85 95 45 8 Face 86 92 179 45 Face 87 11 46 63 Face 88 11 226 46 Face 89 48 188 54 Face 90 16 177 47 Face 91 49 165 94 Face 92 16 188 48 Face 93 100 162 241 Face 94 100 165 49 Face 95 38 247 156 Face 96 38 37 247 Face 97 222 51 80 Face 98 222 58 51 Face 99 114 52 42 Face 100 114 96 52 Face 101 214 148 164 Face 102 35 81 212 Face 103 35 214 192 Face 104 35 148 214 Face 105 224 55 169 Face 106 245 65 55 Face 107 38 175 37 Face 108 169 55 204 Face 109 215 57 17 Face 110 2 85 57 Face 111 206 58 82 Face 112 150 51 58 Face 113 4 59 203 Face 114 4 178 59 Face 115 36 200 73 Face 116 36 114 60 Face 117 62 226 160 Face 118 41 127 61 Face 119 41 62 203 Face 120 41 61 62 Face 121 64 102 83 Face 122 31 12 63 Face 123 197 64 84 Face 124 31 102 64 Face 125 249 65 119 Face 126 250 56 115 Face 127 111 66 127 Face 128 22 146 66 Face 129 22 172 146 Face 130 22 98 172 Face 131 6 199 170 Face 132 106 57 68 Face 133 237 69 66 Face 134 218 61 126 Face 135 232 103 118 Face 136 231 77 70 Face 137 177 213 47 Face 138 12 31 71 Face 139 106 72 157 Face 140 6 66 176 Face 141 23 73 200 Face 142 74 9 205 Face 143 23 137 73 Face 144 75 97 137 Face 145 23 251 137 Face 146 153 189 251 Face 147 28 76 128 Face 148 195 126 237 Face 149 28 77 76 Face 150 194 70 77 Face 151 195 218 126 Face 152 173 46 78 Face 153 9 79 242 Face 154 9 155 79 Face 155 233 80 185 Face 156 233 222 80 Face 157 14 163 225 Face 158 14 109 133 Face 159 20 82 145 Face 160 20 206 82 Face 161 210 83 183 Face 162 20 145 83 Face 163 207 84 138 Face 164 13 197 84 Face 165 184 196 125 Face 166 95 105 85 Face 167 42 87 114 Face 168 42 30 87 Face 169 86 171 112 Face 170 86 252 87 Face 171 56 88 115 Face 172 175 38 88 Face 173 186 241 162 Face 174 174 110 89 Face 175 43 90 132 Face 176 186 162 90 Face 177 39 91 3 Face 178 155 191 91 Face 179 1 92 45 Face 180 184 34 92 Face 181 167 93 33 Face 182 14 225 219 Face 183 33 182 149 Face 184 33 93 152 Face 185 1 95 85 Face 186 1 45 95 Face 187 10 96 36 Face 188 10 13 181 Face 189 99 97 190 Face 190 98 91 236 Face 191 44 98 22 Face 192 44 124 208 Face 193 98 99 221 Face 194 98 236 99 Face 195 16 100 177 Face 196 16 48 100 Face 197 5 101 63 Face 198 232 118 233 Face 199 63 102 31 Face 200 63 101 185 Face 201 70 103 232 Face 202 104 52 161 Face 203 70 104 103 Face 204 70 30 104 Face 205 8 105 95 Face 206 223 198 105 Face 207 6 106 199 Face 208 6 72 106 Face 209 222 228 58 Face 210 166 19 107 Face 211 39 108 216 Face 212 39 3 108 Face 213 149 202 33 Face 214 53 134 109 Face 215 63 110 11 Face 216 63 12 110 Face 217 22 111 59 Face 218 22 66 111 Face 219 194 168 30 Face 220 28 248 112 Face 221 36 113 10 Face 222 36 205 113 Face 223 252 114 87 Face 224 34 60 114 Face 225 65 115 55 Face 226 65 24 115 Face 227 118 116 233 Face 228 138 230 116 Face 229 13 117 181 Face 230 13 84 207 Face 231 18 118 103 Face 232 18 116 118 Face 233 120 192 214 Face 234 142 249 119 Face 235 122 187 121 Face 236 47 119 120 Face 237 16 121 188 Face 238 16 122 121 Face 239 47 122 16 Face 240 47 187 122 Face 241 97 123 74 Face 242 97 99 123 Face 243 243 124 65 Face 244 243 208 124 Face 245 60 125 153 Face 246 60 184 125 Face 247 127 126 61 Face 248 69 237 126 Face 249 69 127 66 Face 250 69 126 127 Face 251 29 128 140 Face 252 29 223 128 Face 253 25 129 136 Face 254 25 56 129 Face 255 46 130 63 Face 256 46 173 130 Face 257 183 209 21 Face 258 32 238 131 Face 259 163 132 225 Face 260 81 11 132 Face 261 81 134 212 Face 262 81 132 133 Face 263 133 134 81 Face 264 133 109 134 Face 265 37 135 247 Face 266 37 25 135 Face 267 235 244 154 Face 268 135 25 136 Face 269 74 137 97 Face 270 74 205 137 Face 271 18 138 116 Face 272 18 207 138 Face 273 80 139 185 Face 274 80 131 238 Face 275 66 140 237 Face 276 66 170 140 Face 277 79 141 242 Face 278 79 26 141 Face 279 47 142 119 Face 280 47 213 142 Face 281 110 143 89 Face 282 110 12 144 Face 283 143 144 89 Face 284 143 110 144 Face 285 64 145 84 Face 286 64 83 145 Face 287 40 146 67 Face 288 40 66 146 Face 289 40 147 75 Face 290 40 67 147 Face 291 53 148 35 Face 292 53 109 148 Face 293 148 149 182 Face 294 148 202 149 Face 295 151 150 58 Face 296 21 209 150 Face 297 21 206 20 Face 298 21 150 151 Face 299 94 152 49 Face 300 94 33 152 Face 301 23 153 251 Face 302 23 60 153 Face 303 27 154 26 Face 304 27 240 154 Face 305 39 155 91 Face 306 39 216 155 Face 307 3 156 108 Face 308 224 169 156 Face 309 17 157 72 Face 310 17 57 157 Face 311 84 158 166 Face 312 84 145 158 Face 313 52 159 161 Face 314 52 96 159 Face 315 11 160 226 Face 316 11 81 160 Face 317 103 161 159 Face 318 103 104 161 Face 319 49 162 100 Face 320 49 90 162 Face 321 133 163 14 Face 322 133 132 163 Face 323 165 164 94 Face 324 48 54 164 Face 325 48 165 100 Face 326 48 164 165 Face 327 138 166 230 Face 328 138 84 166 Face 329 14 167 109 Face 330 14 93 167 Face 331 112 168 28 Face 332 112 171 168 Face 333 38 169 88 Face 334 38 156 169 Face 335 198 170 199 Face 336 29 140 170 Face 337 87 171 86 Face 338 87 30 171 Face 339 67 172 98 Face 340 67 146 172 Face 341 195 173 78 Face 342 77 231 173 Face 343 43 174 89 Face 344 43 132 174 Face 345 56 175 88 Face 346 56 25 175 Face 347 72 176 17 Face 348 72 6 176 Face 349 12 177 241 Face 350 12 213 177 Face 351 44 178 124 Face 352 44 22 178 Face 353 86 180 252 Face 354 86 112 180 Face 355 179 180 112 Face 356 179 34 180 Face 357 96 181 159 Face 358 96 10 181 Face 359 94 182 33 Face 360 94 164 182 Face 361 32 183 83 Face 362 32 131 183 Face 363 1 184 92 Face 364 1 196 184 Face 365 102 185 139 Face 366 102 63 185 Face 367 43 186 90 Face 368 43 89 186 Face 369 120 187 47 Face 370 188 121 187 Face 371 120 188 187 Face 372 120 54 188 Face 373 17 189 215 Face 374 246 251 189 Face 375 75 190 97 Face 376 75 211 190 Face 377 74 191 9 Face 378 74 123 191 Face 379 119 192 120 Face 380 119 65 192 Face 381 42 193 30 Face 382 42 52 193 Face 383 28 194 77 Face 384 28 168 194 Face 385 77 195 76 Face 386 77 173 195 Face 387 85 196 1 Face 388 85 215 196 Face 389 31 197 71 Face 390 31 64 197 Face 391 29 198 223 Face 392 29 170 198 Face 393 68 199 106 Face 394 68 198 199 Face 395 60 200 36 Face 396 60 23 200 Face 397 7 201 10 Face 398 7 71 201 Face 399 109 202 148 Face 400 109 167 202 Face 401 35 203 62 Face 402 35 4 203 Face 403 88 204 115 Face 404 88 169 204 Face 405 73 205 36 Face 406 73 137 205 Face 407 151 206 21 Face 408 151 58 206 Face 409 117 207 18 Face 410 117 13 207 Face 411 98 208 91 Face 412 98 44 208 Face 413 131 209 183 Face 414 131 150 209 Face 415 20 210 21 Face 416 20 83 210 Face 417 67 211 147 Face 418 67 190 211 Face 419 53 212 134 Face 420 53 35 212 Face 421 71 213 12 Face 422 71 7 213 Face 423 54 214 164 Face 424 54 120 214 Face 425 2 215 85 Face 426 2 57 215 Face 427 27 216 240 Face 428 27 26 217 Face 429 216 217 79 Face 430 216 27 217 Face 431 78 218 195 Face 432 78 46 218 Face 433 220 219 90 Face 434 93 14 219 Face 435 93 220 152 Face 436 93 219 220 Face 437 67 221 190 Face 438 67 98 221 Face 439 116 222 233 Face 440 116 228 222 Face 441 8 223 105 Face 442 248 128 223 Face 443 3 224 156 Face 444 3 55 224 Face 445 90 225 132 Face 446 90 219 225 Face 447 61 226 62 Face 448 61 218 226 Face 449 228 227 58 Face 450 107 19 227 Face 451 229 228 116 Face 452 107 227 228 Face 453 107 229 166 Face 454 107 228 229 Face 455 229 230 166 Face 456 229 116 230 Face 457 232 231 70 Face 458 5 173 231 Face 459 5 232 101 Face 460 5 231 232 Face 461 101 233 185 Face 462 101 232 233 Face 463 144 234 89 Face 464 144 12 234 Face 465 135 235 247 Face 466 135 136 235 Face 467 123 236 191 Face 468 123 99 236 Face 469 76 237 140 Face 470 76 195 237 Face 471 139 238 239 Face 472 139 80 238 Face 473 32 239 238 Face 474 32 102 239 Face 475 108 240 216 Face 476 108 50 240 Face 477 89 241 186 Face 478 89 12 241 Face 479 15 242 24 Face 480 15 9 242 Face 481 245 243 65 Face 482 3 208 243 Face 483 136 244 235 Face 484 136 129 244 Face 485 3 245 55 Face 486 3 243 245 Face 487 17 246 189 Face 488 17 176 246 Face 489 50 247 235 Face 490 50 156 247 Face 491 8 248 223 Face 492 8 112 248 Face 493 24 249 7 Face 494 24 65 249 Face 495 24 250 115 Face 496 24 242 250 Face 497 75 251 40 Face 498 75 137 251 Face 499 34 252 180 Face 500 34 114 252 ================================================ FILE: models/gargoyle_2k.m ================================================ Vertex 1 0.380763 0.326377 0.0285111 Vertex 2 0.247016 0.319417 0.0174855 Vertex 3 0.169366 0.777404 0.210396 Vertex 4 0.198953 0.750726 0.271902 Vertex 5 0.391082 0.719606 0.250403 Vertex 6 0.210018 0.324593 0.304704 Vertex 7 0.278469 0.748118 0.0884343 Vertex 8 0.403037 0.321394 0.283412 Vertex 9 0.218956 0.694886 0.100862 Vertex 10 0.30903 0.671664 0.0487117 Vertex 11 0.314955 0.731328 0.30813 Vertex 12 0.311283 0.873331 0.273017 Vertex 13 0.347754 0.726241 0.115377 Vertex 14 0.32121 0.778956 0.44143 Vertex 15 0.234042 0.732997 0.111513 Vertex 16 0.245334 0.890331 0.306588 Vertex 17 0.174176 0.326411 0.0933919 Vertex 18 0.367067 0.701415 0.157763 Vertex 19 0.471753 0.808809 0.0113292 Vertex 20 0.517928 0.983818 0.0453531 Vertex 21 0.532781 0.978862 0.065224 Vertex 22 0.21935 0.523082 0.280064 Vertex 23 0.217296 0.460167 0.0696147 Vertex 24 0.219168 0.812004 0.18582 Vertex 25 0.0340592 0.992167 0.0470547 Vertex 26 0.113217 0.835488 0.0192165 Vertex 27 0.0968498 0.80548 0.0471851 Vertex 28 0.399898 0.438672 0.280093 Vertex 29 0.309937 0.329658 0.355826 Vertex 30 0.352414 0.532886 0.223769 Vertex 31 0.332887 0.809482 0.205766 Vertex 32 0.423779 0.889347 0.213932 Vertex 33 0.240395 0.805715 0.459348 Vertex 34 0.358636 0.450297 0.0520098 Vertex 35 0.243807 0.721076 0.294934 Vertex 36 0.293274 0.508308 0.00411988 Vertex 37 0.00578784 0.981475 0.0587448 Vertex 38 0.0903613 0.921205 0.172504 Vertex 39 0.195462 0.691602 0.144524 Vertex 40 0.173112 0.455301 0.203989 Vertex 41 0.258988 0.534448 0.250328 Vertex 42 0.377858 0.514765 0.124738 Vertex 43 0.359341 0.855957 0.369355 Vertex 44 0.164523 0.693203 0.268444 Vertex 45 0.42229 0.329653 0.142924 Vertex 46 0.346273 0.73462 0.2819 Vertex 47 0.253699 0.858303 0.253343 Vertex 48 0.214155 0.863277 0.382597 Vertex 49 0.293273 0.853366 0.400905 Vertex 50 0.147928 0.841597 0.144556 Vertex 51 0.43403 0.865185 0.147823 Vertex 52 0.373427 0.564253 0.080208 Vertex 53 0.248945 0.739384 0.387437 Vertex 54 0.202407 0.793949 0.342091 Vertex 55 0.139559 0.817096 0.245027 Vertex 56 0.101661 0.945372 0.134765 Vertex 57 0.222228 0.317323 0.0668911 Vertex 58 0.501729 0.878374 0.0386635 Vertex 59 0.215748 0.658496 0.296318 Vertex 60 0.295055 0.449722 0.0222328 Vertex 61 0.319755 0.551042 0.257596 Vertex 62 0.272128 0.628555 0.304886 Vertex 63 0.336269 0.800291 0.242221 Vertex 64 0.358369 0.803944 0.179294 Vertex 65 0.215532 0.817073 0.21976 Vertex 66 0.217299 0.450259 0.306854 Vertex 67 0.216981 0.521241 0.219063 Vertex 68 0.294937 0.318416 0.314768 Vertex 69 0.306508 0.468701 0.268499 Vertex 70 0.369499 0.630261 0.237242 Vertex 71 0.295114 0.836858 0.175987 Vertex 72 0.174286 0.326495 0.247652 Vertex 73 0.229966 0.533008 0.037168 Vertex 74 0.215502 0.608935 0.0984471 Vertex 75 0.201368 0.494956 0.104828 Vertex 76 0.362744 0.460182 0.301339 Vertex 77 0.377641 0.524745 0.271709 Vertex 78 0.359524 0.632146 0.295152 Vertex 79 0.182947 0.708063 0.0768914 Vertex 80 0.399065 0.800683 0.227953 Vertex 81 0.327848 0.750939 0.374246 Vertex 82 0.498266 0.913076 0.017324 Vertex 83 0.440684 0.931216 0.141363 Vertex 84 0.40593 0.747786 0.0799691 Vertex 85 0.318106 0.317883 0.0106715 Vertex 86 0.393723 0.48328 0.174412 Vertex 87 0.387473 0.510364 0.180919 Vertex 88 0.101717 0.914595 0.191347 Vertex 89 0.32929 0.881676 0.33283 Vertex 90 0.33939 0.81892 0.385637 Vertex 91 0.206609 0.696515 0.190846 Vertex 92 0.398306 0.362728 0.0487386 Vertex 93 0.323047 0.818697 0.455569 Vertex 94 0.242154 0.827204 0.415681 Vertex 95 0.395743 0.319253 0.0949833 Vertex 96 0.336272 0.577578 0.0415251 Vertex 97 0.175624 0.6387 0.200785 Vertex 98 0.183262 0.633744 0.252009 Vertex 99 0.187303 0.615496 0.230467 Vertex 100 0.265386 0.893133 0.356277 Vertex 101 0.388896 0.749519 0.22065 Vertex 102 0.349324 0.805409 0.222198 Vertex 103 0.35194 0.661822 0.19741 Vertex 104 0.375428 0.615478 0.218953 Vertex 105 0.393975 0.317999 0.289927 Vertex 106 0.205703 0.318042 0.281719 Vertex 107 0.461869 0.79787 0.0718967 Vertex 108 0.187184 0.757645 0.161086 Vertex 109 0.250275 0.746279 0.428625 Vertex 110 0.349492 0.828733 0.290871 Vertex 111 0.248798 0.494826 0.26679 Vertex 112 0.412515 0.417226 0.240406 Vertex 113 0.28508 0.5886 0.0189095 Vertex 114 0.351901 0.491606 0.053703 Vertex 115 0.192184 0.847001 0.213826 Vertex 116 0.384206 0.769198 0.170707 Vertex 117 0.366022 0.69483 0.109977 Vertex 118 0.357861 0.713013 0.202489 Vertex 119 0.241301 0.825282 0.252004 Vertex 120 0.22223 0.81859 0.293514 Vertex 121 0.194456 0.906286 0.299931 Vertex 122 0.207514 0.910616 0.273389 Vertex 123 0.20229 0.651871 0.202146 Vertex 124 0.195771 0.76069 0.233813 Vertex 125 0.275115 0.389149 0.00651964 Vertex 126 0.334451 0.508016 0.27192 Vertex 127 0.28833 0.49159 0.245763 Vertex 128 0.357036 0.366099 0.337918 Vertex 129 0.0702061 0.922901 0.014846 Vertex 130 0.37792 0.737819 0.279857 Vertex 131 0.435471 0.896353 0.203774 Vertex 132 0.348565 0.774203 0.336317 Vertex 133 0.322552 0.757769 0.41215 Vertex 134 0.308101 0.72271 0.418773 Vertex 135 0.0390227 0.931078 0.0472482 Vertex 136 0.0528661 0.927853 0.00906152 Vertex 137 0.207324 0.534449 0.0721104 Vertex 138 0.408906 0.719879 0.123076 Vertex 139 0.418903 0.813846 0.25469 Vertex 140 0.28511 0.447102 0.319836 Vertex 141 0.187462 0.779265 0.107485 Vertex 142 0.263535 0.820424 0.176894 Vertex 143 0.359351 0.860094 0.296184 Vertex 144 0.36929 0.901529 0.292426 Vertex 145 0.433807 0.878693 0.0916482 Vertex 146 0.197447 0.457441 0.253668 Vertex 147 0.170974 0.491483 0.187948 Vertex 148 0.232171 0.762434 0.372567 Vertex 149 0.257079 0.787287 0.381019 Vertex 150 0.482673 0.906433 0.0736841 Vertex 151 0.535862 0.93282 0.0273528 Vertex 152 0.273561 0.837141 0.450267 Vertex 153 0.223755 0.436926 0.0476889 Vertex 154 0.0778402 0.850228 0.0503494 Vertex 155 0.201775 0.683348 0.11634 Vertex 156 0.169348 0.814581 0.197546 Vertex 157 0.171797 0.318064 0.146112 Vertex 158 0.438729 0.783932 0.0408009 Vertex 159 0.362691 0.603978 0.0974108 Vertex 160 0.294856 0.711244 0.316332 Vertex 161 0.362549 0.646917 0.188727 Vertex 162 0.303113 0.866853 0.396992 Vertex 163 0.313338 0.782521 0.379079 Vertex 164 0.210673 0.823756 0.366965 Vertex 165 0.242236 0.867375 0.399136 Vertex 166 0.43212 0.749948 0.0569439 Vertex 167 0.268551 0.784714 0.455119 Vertex 168 0.384239 0.470078 0.231802 Vertex 169 0.108319 0.886621 0.20714 Vertex 170 0.266423 0.329505 0.349434 Vertex 171 0.402441 0.499761 0.206962 Vertex 172 0.205709 0.511237 0.246738 Vertex 173 0.380681 0.61389 0.285092 Vertex 174 0.36908 0.812147 0.34444 Vertex 175 0.065383 0.970774 0.116976 Vertex 176 0.1655 0.366016 0.233792 Vertex 177 0.275012 0.888182 0.287414 Vertex 178 0.181748 0.722821 0.286717 Vertex 179 0.402362 0.447076 0.150096 Vertex 180 0.397351 0.460684 0.179263 Vertex 181 0.347808 0.62555 0.0730508 Vertex 182 0.223831 0.807164 0.383035 Vertex 183 0.469979 0.948197 0.13626 Vertex 184 0.373423 0.364218 0.0222572 Vertex 185 0.382411 0.790579 0.233472 Vertex 186 0.346082 0.88169 0.384152 Vertex 187 0.204083 0.863349 0.279382 Vertex 188 0.229997 0.863339 0.304966 Vertex 189 0.194116 0.364255 0.0579743 Vertex 190 0.199163 0.52239 0.161208 Vertex 191 0.208985 0.635405 0.144265 Vertex 192 0.228427 0.784087 0.26354 Vertex 193 0.385826 0.564284 0.176484 Vertex 194 0.377583 0.493284 0.254314 Vertex 195 0.367623 0.524534 0.283946 Vertex 196 0.313094 0.323611 0.00408118 Vertex 197 0.346034 0.789002 0.170426 Vertex 198 0.311466 0.321225 0.349504 Vertex 199 0.227322 0.318139 0.306448 Vertex 200 0.290732 0.473376 0.0123571 Vertex 201 0.294096 0.772509 0.103224 Vertex 202 0.255315 0.77076 0.423364 Vertex 203 0.242325 0.658345 0.286718 Vertex 204 0.123986 0.854995 0.235498 Vertex 205 0.233717 0.59901 0.0554324 Vertex 206 0.522997 0.944306 0.00655664 Vertex 207 0.39422 0.69815 0.100573 Vertex 208 0.187081 0.703112 0.230491 Vertex 209 0.463585 0.929966 0.149388 Vertex 210 0.532858 0.992822 0.0603093 Vertex 211 0.194152 0.505731 0.171027 Vertex 212 0.286529 0.732578 0.380995 Vertex 213 0.273274 0.865007 0.222426 Vertex 214 0.218466 0.770919 0.329638 Vertex 215 0.238768 0.326273 0.0181323 Vertex 216 0.128873 0.757638 0.070185 Vertex 217 0.131366 0.782363 0.0413257 Vertex 218 0.339542 0.615603 0.27886 Vertex 219 0.351086 0.806894 0.43526 Vertex 220 0.31169 0.836915 0.437054 Vertex 221 0.212294 0.551102 0.210014 Vertex 222 0.402625 0.82052 0.172654 Vertex 223 0.377547 0.326197 0.323834 Vertex 224 0.146362 0.805555 0.227085 Vertex 225 0.342739 0.810251 0.392381 Vertex 226 0.321271 0.61706 0.280364 Vertex 227 0.489746 0.813827 0.0520922 Vertex 228 0.42727 0.802901 0.111399 Vertex 229 0.443655 0.761857 0.0867932 Vertex 230 0.430359 0.750987 0.105651 Vertex 231 0.392414 0.643825 0.263308 Vertex 232 0.380837 0.716477 0.231833 Vertex 233 0.396018 0.774114 0.210669 Vertex 234 0.344478 0.911266 0.282858 Vertex 235 0.0566268 0.90645 0.0536223 Vertex 236 0.212684 0.658574 0.202409 Vertex 237 0.332811 0.457684 0.306569 Vertex 238 0.432452 0.866801 0.238706 Vertex 239 0.42055 0.855466 0.246894 Vertex 240 0.169776 0.777365 0.134681 Vertex 241 0.313026 0.891625 0.35764 Vertex 242 0.223737 0.759284 0.129219 Vertex 243 0.175908 0.769272 0.21587 Vertex 244 0.0717773 0.894883 0.014041 Vertex 245 0.172633 0.780775 0.221066 Vertex 246 0.1786 0.384071 0.101642 Vertex 247 0.124761 0.880055 0.164794 Vertex 248 0.404962 0.35607 0.293153 Vertex 249 0.2388 0.816785 0.205571 Vertex 250 0.195856 0.821879 0.157767 Vertex 251 0.208778 0.451912 0.0769082 Vertex 252 0.369065 0.465224 0.0735411 Vertex 253 0.251516 0.886505 0.328097 Vertex 254 0.305204 0.481717 0.0141773 Vertex 255 0.406907 0.45196 0.2122 Vertex 256 0.44712 0.784247 0.0470051 Vertex 257 0.270255 0.471917 0.25991 Vertex 258 0.31258 0.749505 0.433757 Vertex 259 0.176471 0.466636 0.212302 Vertex 260 0.385767 0.570845 0.127915 Vertex 261 0.237173 0.668343 0.0683186 Vertex 262 0.206908 0.473519 0.104788 Vertex 263 0.20409 0.318088 0.20902 Vertex 264 0.261776 0.724624 0.318633 Vertex 265 0.31798 0.367725 0.00241743 Vertex 266 0.422057 0.81878 0.243482 Vertex 267 0.172239 0.613858 0.210697 Vertex 268 0.400052 0.708033 0.26687 Vertex 269 0.204026 0.445458 0.299114 Vertex 270 0.214527 0.392316 0.313199 Vertex 271 0.318027 0.892853 0.303078 Vertex 272 0.0851076 0.928738 0.129826 Vertex 273 0.271725 0.780229 0.428769 Vertex 274 0.359365 0.641927 0.143252 Vertex 275 0.341664 0.789093 0.356 Vertex 276 0.253615 0.88588 0.370943 Vertex 277 0.407325 0.724672 0.0909417 Vertex 278 0.288402 0.664394 0.313084 Vertex 279 0.261888 0.461373 0.30488 Vertex 280 0.270032 0.838436 0.4122 Vertex 281 0.215566 0.782355 0.350798 Vertex 282 0.405611 0.878819 0.217259 Vertex 283 0.324779 0.86018 0.267438 Vertex 284 0.192459 0.599164 0.280713 Vertex 285 0.358955 0.676701 0.109848 Vertex 286 0.176037 0.498309 0.205466 Vertex 287 0.355032 0.463634 0.0602411 Vertex 288 0.265052 0.819749 0.456942 Vertex 289 0.23602 0.79723 0.441939 Vertex 290 0.335607 0.884893 0.319816 Vertex 291 0.432084 0.826956 0.0628705 Vertex 292 0.0521553 0.967373 0.0371083 Vertex 293 0.179317 0.850174 0.2235 Vertex 294 0.212767 0.473354 0.295038 Vertex 295 0.225773 0.4982 0.303084 Vertex 296 0.369237 0.511736 0.228831 Vertex 297 0.359177 0.860196 0.360983 Vertex 298 0.223787 0.876607 0.296298 Vertex 299 0.421945 0.354418 0.122954 Vertex 300 0.241404 0.765806 0.38094 Vertex 301 0.34084 0.868448 0.306402 Vertex 302 0.250792 0.883188 0.275135 Vertex 303 0.359678 0.528016 0.20072 Vertex 304 0.2171 0.509688 0.284973 Vertex 305 0.486816 0.848541 0.01087 Vertex 306 0.415608 0.328062 0.243609 Vertex 307 0.117666 0.784147 0.0734696 Vertex 308 0.177537 0.699945 0.0817439 Vertex 309 0.279983 0.709719 0.0605044 Vertex 310 0.260307 0.739107 0.0948428 Vertex 311 0.396069 0.876735 0.185873 Vertex 312 0.379333 0.83577 0.233845 Vertex 313 0.102698 0.846978 0.0173147 Vertex 314 0.078609 0.875022 0.00517634 Vertex 315 0.179333 0.755858 0.195144 Vertex 316 0.387481 0.316978 0.0487134 Vertex 317 0.407328 0.326409 0.0724695 Vertex 318 0.212313 0.778287 0.245358 Vertex 319 0.0671738 0.864953 0.0422047 Vertex 320 0.175895 0.415519 0.22391 Vertex 321 0.329796 0.787449 0.430496 Vertex 322 0.351153 0.542931 0.285398 Vertex 323 0.0450309 0.939375 0.0124303 Vertex 324 0.131257 0.907244 0.189242 Vertex 325 0.354343 0.784127 0.34633 Vertex 326 0.313168 0.80009 0.152821 Vertex 327 0.164518 0.326293 0.147817 Vertex 328 0.203616 0.475019 0.243532 Vertex 329 0.320852 0.836924 0.227057 Vertex 330 0.351673 0.519566 0.0405073 Vertex 331 0.341694 0.832129 0.376055 Vertex 332 0.326456 0.493646 0.260259 Vertex 333 0.38082 0.425485 0.0615205 Vertex 334 0.421798 0.865168 0.214041 Vertex 335 0.164543 0.747648 0.062063 Vertex 336 0.15888 0.741146 0.0652274 Vertex 337 0.151158 0.73626 0.100575 Vertex 338 0.192482 0.733225 0.176138 Vertex 339 0.175984 0.703236 0.123483 Vertex 340 0.286632 0.738709 0.347817 Vertex 341 0.189168 0.547954 0.192974 Vertex 342 0.34278 0.512291 0.286744 Vertex 343 0.283491 0.410713 0.331035 Vertex 344 0.357806 0.899734 0.30621 Vertex 345 0.364357 0.496618 0.0727236 Vertex 346 0.294991 0.885476 0.280048 Vertex 347 0.200839 0.476707 0.256792 Vertex 348 0.380874 0.625346 0.213682 Vertex 349 0.402354 0.319307 0.256931 Vertex 350 0.113025 0.804609 0.0222808 Vertex 351 0.280073 0.504815 0.00654822 Vertex 352 0.336281 0.861584 0.389386 Vertex 353 0.306441 0.883167 0.388971 Vertex 354 0.32971 0.876534 0.398828 Vertex 355 0.284945 0.562541 0.268295 Vertex 356 0.0321565 0.987275 0.0417127 Vertex 357 0.448812 0.825429 0.0915305 Vertex 358 0.431728 0.868296 0.232131 Vertex 359 0.344519 0.823063 0.432185 Vertex 360 0.235459 0.637021 0.283763 Vertex 361 0.220568 0.607633 0.290071 Vertex 362 0.392539 0.45663 0.280208 Vertex 363 0.387491 0.468466 0.287524 Vertex 364 0.337798 0.715025 0.101634 Vertex 365 0.313667 0.775774 0.433743 Vertex 366 0.319837 0.791617 0.458508 Vertex 367 0.241389 0.860206 0.261907 Vertex 368 0.218927 0.862661 0.350996 Vertex 369 0.00419391 0.993927 0.0589046 Vertex 370 0.0455339 0.962398 0.114848 Vertex 371 0.198982 0.635359 0.297958 Vertex 372 0.400799 0.499753 0.17939 Vertex 373 0.174624 0.645122 0.280164 Vertex 374 0.389313 0.706343 0.0963308 Vertex 375 0.354545 0.743551 0.124712 Vertex 376 0.197431 0.463605 0.272411 Vertex 377 0.218966 0.731255 0.277452 Vertex 378 0.206065 0.316408 0.0568724 Vertex 379 0.227155 0.804629 0.39905 Vertex 380 0.22431 0.789042 0.369303 Vertex 381 0.230695 0.789264 0.375907 Vertex 382 0.352862 0.792305 0.230425 Vertex 383 0.37099 0.63218 0.220426 Vertex 384 0.133199 0.802234 0.0322878 Vertex 385 0.144695 0.757626 0.0389201 Vertex 386 0.462858 0.856779 0.0867957 Vertex 387 0.500014 0.855232 0.0436767 Vertex 388 0.227194 0.466841 0.29881 Vertex 389 0.218889 0.543275 0.223933 Vertex 390 0.326322 0.471829 0.289849 Vertex 391 0.352078 0.765899 0.256793 Vertex 392 0.1397 0.80187 0.238775 Vertex 393 0.228931 0.830423 0.373107 Vertex 394 0.383907 0.491566 0.295023 Vertex 395 0.52296 0.964146 0.0235921 Vertex 396 0.288226 0.610465 0.299414 Vertex 397 0.200702 0.70472 0.20468 Vertex 398 0.413913 0.371503 0.266846 Vertex 399 0.275053 0.858473 0.399994 Vertex 400 0.253733 0.886598 0.398792 Vertex 401 0.292884 0.833647 0.470092 Vertex 402 0.291675 0.805582 0.461149 Vertex 403 0.174312 0.707929 0.254581 Vertex 404 0.524536 0.957348 0.0453817 Vertex 405 0.200151 0.51138 0.106588 Vertex 406 0.20235 0.454932 0.124625 Vertex 407 0.317967 0.802007 0.387369 Vertex 408 0.391014 0.48818 0.270249 Vertex 409 0.207248 0.696668 0.0980938 Vertex 410 0.390761 0.458338 0.233896 Vertex 411 0.310208 0.853694 0.392443 Vertex 412 0.0302472 0.961003 0.060205 Vertex 413 0.157977 0.83691 0.0916634 Vertex 414 0.272495 0.757601 0.435538 Vertex 415 0.260509 0.736122 0.435445 Vertex 416 0.332981 0.534687 0.260542 Vertex 417 0.220668 0.501394 0.0530377 Vertex 418 0.175547 0.382499 0.258561 Vertex 419 0.380869 0.74432 0.16005 Vertex 420 0.0998888 0.812204 0.0225886 Vertex 421 0.529552 0.934154 0.00745833 Vertex 422 0.524796 0.916444 0.0354958 Vertex 423 0.242684 0.737763 0.32619 Vertex 424 0.206226 0.529524 0.275148 Vertex 425 0.205757 0.656924 0.136218 Vertex 426 0.242105 0.532918 0.261806 Vertex 427 0.297447 0.460156 0.0255377 Vertex 428 0.480066 0.818638 0.0140495 Vertex 429 0.476676 0.848515 0.0144566 Vertex 430 0.474457 0.802258 0.022322 Vertex 431 0.166136 0.359456 0.134655 Vertex 432 0.23223 0.387493 0.0269466 Vertex 433 0.351672 0.475 0.304963 Vertex 434 0.365261 0.496619 0.303238 Vertex 435 0.13421 0.835184 0.119623 Vertex 436 0.500717 0.894681 0.0139435 Vertex 437 0.356048 0.911956 0.304908 Vertex 438 0.293268 0.706483 0.0563913 Vertex 439 0.387423 0.704787 0.138687 Vertex 440 0.200186 0.46683 0.151134 Vertex 441 0.359902 0.593904 0.232201 Vertex 442 0.332971 0.797331 0.278917 Vertex 443 0.412297 0.319267 0.124766 Vertex 444 0.356031 0.660333 0.213699 Vertex 445 0.376697 0.633857 0.293299 Vertex 446 0.372558 0.69207 0.116423 Vertex 447 0.322868 0.754831 0.392547 Vertex 448 0.37772 0.509583 0.157795 Vertex 449 0.374945 0.465129 0.253642 Vertex 450 0.210816 0.726201 0.283293 Vertex 451 0.325263 0.686524 0.0653182 Vertex 452 0.316244 0.742707 0.331352 Vertex 453 0.276793 0.772826 0.108278 Vertex 454 0.334522 0.732795 0.280424 Vertex 455 0.215688 0.835212 0.296603 Vertex 456 0.200699 0.809747 0.223901 Vertex 457 0.306483 0.316437 0.21253 Vertex 458 0.238809 0.475086 0.0581703 Vertex 459 0.222292 0.453892 0.0619116 Vertex 460 0.306326 0.590726 0.0254048 Vertex 461 0.231413 0.810527 0.440359 Vertex 462 0.379214 0.760032 0.192367 Vertex 463 0.351534 0.83202 0.30319 Vertex 464 0.304835 0.89332 0.324711 Vertex 465 0.185881 0.441903 0.129186 Vertex 466 0.331299 0.824696 0.399161 Vertex 467 0.470073 0.87317 0.0757643 Vertex 468 0.195813 0.759844 0.251833 Vertex 469 0.205487 0.50966 0.270258 Vertex 470 0.194131 0.486504 0.287499 Vertex 471 0.486642 0.91947 0.0796108 Vertex 472 0.171072 0.751164 0.130062 Vertex 473 0.205666 0.832953 0.360909 Vertex 474 0.122449 0.87166 0.131202 Vertex 475 0.200706 0.874898 0.291338 Vertex 476 0.346071 0.404037 0.0204412 Vertex 477 0.36271 0.857356 0.285008 Vertex 478 0.410734 0.749345 0.119606 Vertex 479 0.385282 0.724587 0.237151 Vertex 480 0.258584 0.742539 0.362683 Vertex 481 0.196109 0.612322 0.238689 Vertex 482 0.200831 0.627405 0.161086 Vertex 483 0.0670173 0.887995 0.0453993 Vertex 484 0.387625 0.511238 0.202485 Vertex 485 0.20051 0.509642 0.220662 Vertex 486 0.389134 0.785678 0.115552 Vertex 487 0.262197 0.706276 0.304954 Vertex 488 0.251981 0.772601 0.444264 Vertex 489 0.180915 0.356179 0.275806 Vertex 490 0.210631 0.572312 0.0799834 Vertex 491 0.387285 0.448709 0.119713 Vertex 492 0.369198 0.318062 0.322857 Vertex 493 0.33459 0.827404 0.258729 Vertex 494 0.421839 0.843438 0.156193 Vertex 495 0.326413 0.595702 0.0424024 Vertex 496 0.228888 0.883608 0.389098 Vertex 497 0.397348 0.471792 0.1899 Vertex 498 0.299382 0.77242 0.423815 Vertex 499 0.147846 0.84623 0.202531 Vertex 500 0.271822 0.440201 0.0189255 Vertex 501 0.225692 0.904371 0.3098 Vertex 502 0.397428 0.46697 0.220558 Vertex 503 0.0338775 0.959198 0.0465307 Vertex 504 0.136222 0.750878 0.057044 Vertex 505 0.167712 0.795844 0.144791 Vertex 506 0.349456 0.770843 0.237646 Vertex 507 0.332978 0.787278 0.261043 Vertex 508 0.189174 0.591894 0.262039 Vertex 509 0.240299 0.831963 0.393943 Vertex 510 0.245362 0.831694 0.438662 Vertex 511 0.245386 0.597348 0.0448198 Vertex 512 0.238688 0.504399 0.281751 Vertex 513 0.246971 0.480066 0.291805 Vertex 514 0.539403 0.988496 0.0502981 Vertex 515 0.161128 0.718008 0.0913488 Vertex 516 0.191 0.491634 0.275326 Vertex 517 0.188254 0.898119 0.288281 Vertex 518 0.387485 0.499746 0.224288 Vertex 519 0.398983 0.779144 0.151318 Vertex 520 0.250216 0.85743 0.39903 Vertex 521 0.22371 0.856926 0.384322 Vertex 522 0.337788 0.80076 0.413834 Vertex 523 0.374231 0.493205 0.304179 Vertex 524 0.117152 0.880006 0.222186 Vertex 525 0.427223 0.908002 0.134342 Vertex 526 0.197427 0.321241 0.0558622 Vertex 527 0.380883 0.5891 0.268869 Vertex 528 0.390355 0.684791 0.250307 Vertex 529 0.248522 0.795823 0.408993 Vertex 530 0.26659 0.326511 0.00576766 Vertex 531 0.341204 0.841917 0.391324 Vertex 532 0.255665 0.835468 0.215661 Vertex 533 0.370863 0.513011 0.207435 Vertex 534 0.493644 0.866821 0.00237958 Vertex 535 0.483264 0.801372 0.0503334 Vertex 536 0.177241 0.471914 0.192509 Vertex 537 0.359371 0.526378 0.232909 Vertex 538 0.271786 0.359369 0.348668 Vertex 539 0.34781 0.866693 0.270867 Vertex 540 0.260264 0.321491 0.339586 Vertex 541 0.324551 0.408157 0.331338 Vertex 542 0.193925 0.645176 0.21729 Vertex 543 0.289904 0.878536 0.375776 Vertex 544 0.233717 0.883383 0.317377 Vertex 545 0.330945 0.757635 0.351205 Vertex 546 0.346262 0.457095 0.0554299 Vertex 547 0.341131 0.470164 0.0601705 Vertex 548 0.502026 0.969206 0.101511 Vertex 549 0.438871 0.759208 0.0538107 Vertex 550 0.380894 0.510721 0.257032 Vertex 551 0.294666 0.769265 0.43196 Vertex 552 0.293295 0.75934 0.444503 Vertex 553 0.298426 0.728293 0.435409 Vertex 554 0.180579 0.779189 0.179149 Vertex 555 0.323246 0.737981 0.417229 Vertex 556 0.283284 0.722958 0.426487 Vertex 557 0.21833 0.851869 0.321398 Vertex 558 0.263569 0.771007 0.438755 Vertex 559 0.215013 0.627095 0.0999418 Vertex 560 0.508125 0.868808 0.0240901 Vertex 561 0.356083 0.317573 0.306507 Vertex 562 0.25684 0.50309 0.250404 Vertex 563 0.228746 0.572501 0.277513 Vertex 564 0.318258 0.795666 0.412806 Vertex 565 0.20743 0.501601 0.289737 Vertex 566 0.240426 0.318055 0.0305256 Vertex 567 0.2172 0.852146 0.294923 Vertex 568 0.182249 0.501514 0.209122 Vertex 569 0.336299 0.795943 0.367768 Vertex 570 0.231675 0.850225 0.387484 Vertex 571 0.411738 0.408962 0.157816 Vertex 572 0.172723 0.317904 0.200775 Vertex 573 0.367702 0.722772 0.167427 Vertex 574 0.33628 0.769769 0.312957 Vertex 575 0.101098 0.797268 0.0388368 Vertex 576 0.233715 0.754396 0.357668 Vertex 577 0.318044 0.465179 0.293332 Vertex 578 0.339879 0.466965 0.301551 Vertex 579 0.220412 0.820813 0.210702 Vertex 580 0.193167 0.453558 0.2653 Vertex 581 0.342815 0.877299 0.298301 Vertex 582 0.32467 0.889572 0.323064 Vertex 583 0.07998 0.943922 0.15788 Vertex 584 0.0389176 0.977495 0.10472 Vertex 585 0.137926 0.755837 0.0391363 Vertex 586 0.243701 0.461395 0.299937 Vertex 587 0.293022 0.726327 0.32801 Vertex 588 0.379273 0.465646 0.29488 Vertex 589 0.354423 0.580802 0.285254 Vertex 590 0.425787 0.759366 0.056859 Vertex 591 0.281765 0.80356 0.132856 Vertex 592 0.218728 0.532905 0.207236 Vertex 593 0.126162 0.832014 0.238609 Vertex 594 0.249048 0.622091 0.28017 Vertex 595 0.255331 0.759854 0.437219 Vertex 596 0.357731 0.698269 0.290475 Vertex 597 0.223938 0.691518 0.0958926 Vertex 598 0.0421643 0.916274 0.0380705 Vertex 599 0.347792 0.855213 0.381796 Vertex 600 0.362535 0.820326 0.210697 Vertex 601 0.258489 0.767217 0.402238 Vertex 602 0.393286 0.784079 0.174269 Vertex 603 0.0967009 0.828397 0.0553188 Vertex 604 0.280395 0.866809 0.397304 Vertex 605 0.380161 0.466816 0.123052 Vertex 606 0.375929 0.477331 0.108289 Vertex 607 0.455248 0.890542 0.108139 Vertex 608 0.344611 0.317934 0.16432 Vertex 609 0.53034 0.998886 0.0438676 Vertex 610 0.362719 0.605498 0.223346 Vertex 611 0.358072 0.569184 0.0554458 Vertex 612 0.369371 0.412094 0.313268 Vertex 613 0.379142 0.376723 0.321427 Vertex 614 0.211103 0.493277 0.0702666 Vertex 615 0.0525574 0.937729 0.00748271 Vertex 616 0.40732 0.468535 0.205201 Vertex 617 0.362968 0.810421 0.230543 Vertex 618 0.320277 0.734612 0.298279 Vertex 619 0.395538 0.788937 0.218882 Vertex 620 0.403894 0.392517 0.286744 Vertex 621 0.423848 0.352334 0.17441 Vertex 622 0.307782 0.843613 0.448523 Vertex 623 0.228845 0.798853 0.280973 Vertex 624 0.185889 0.731344 0.219836 Vertex 625 0.189183 0.707985 0.218066 Vertex 626 0.0707604 0.916176 0.0818473 Vertex 627 0.093206 0.870186 0.0131932 Vertex 628 0.372606 0.393321 0.0321961 Vertex 629 0.201945 0.650175 0.223911 Vertex 630 0.210296 0.67347 0.205731 Vertex 631 0.18101 0.455387 0.187549 Vertex 632 0.17516 0.442019 0.225564 Vertex 633 0.179107 0.45514 0.217234 Vertex 634 0.531304 0.94712 0.0108363 Vertex 635 0.0718488 0.966456 0.0818953 Vertex 636 0.233657 0.78739 0.161818 Vertex 637 0.313252 0.769131 0.408998 Vertex 638 0.321049 0.762604 0.422239 Vertex 639 0.299904 0.823567 0.464741 Vertex 640 0.362718 0.485851 0.0686197 Vertex 641 0.223952 0.808806 0.229261 Vertex 642 0.376154 0.519755 0.161172 Vertex 643 0.375888 0.605683 0.140365 Vertex 644 0.36936 0.644903 0.192518 Vertex 645 0.30654 0.523018 0.249518 Vertex 646 0.334487 0.781193 0.366001 Vertex 647 0.278353 0.668211 0.0453136 Vertex 648 0.241895 0.797338 0.379606 Vertex 649 0.342915 0.444985 0.0337766 Vertex 650 0.317368 0.853359 0.255231 Vertex 651 0.318144 0.88178 0.280144 Vertex 652 0.193988 0.468488 0.228717 Vertex 653 0.184215 0.465673 0.220718 Vertex 654 0.188606 0.49652 0.260233 Vertex 655 0.339627 0.771462 0.14633 Vertex 656 0.447003 0.897927 0.162569 Vertex 657 0.390791 0.46544 0.276572 Vertex 658 0.311282 0.785708 0.451769 Vertex 659 0.178264 0.587418 0.182581 Vertex 660 0.145411 0.85355 0.174161 Vertex 661 0.0207255 0.998895 0.0524792 Vertex 662 0.00424941 0.990625 0.0485612 Vertex 663 0.40093 0.81699 0.253654 Vertex 664 0.195821 0.913429 0.296564 Vertex 665 0.189181 0.483277 0.148723 Vertex 666 0.207504 0.884872 0.268211 Vertex 667 0.321458 0.841924 0.392546 Vertex 668 0.361647 0.777583 0.14619 Vertex 669 0.359404 0.90317 0.277243 Vertex 670 0.445263 0.921304 0.174157 Vertex 671 0.295044 0.47185 0.256615 Vertex 672 0.159181 0.818908 0.215659 Vertex 673 0.370461 0.698153 0.22891 Vertex 674 0.188029 0.620603 0.169451 Vertex 675 0.508123 0.902046 0.0388419 Vertex 676 0.345372 0.80385 0.304882 Vertex 677 0.218831 0.457497 0.301375 Vertex 678 0.455314 0.78743 0.0611513 Vertex 679 0.327958 0.499636 0.289813 Vertex 680 0.217241 0.679846 0.100346 Vertex 681 0.384061 0.443599 0.298334 Vertex 682 0.17264 0.632417 0.273576 Vertex 683 0.169912 0.699797 0.0981822 Vertex 684 0.37233 0.447101 0.0899475 Vertex 685 0.389225 0.493211 0.288163 Vertex 686 0.384117 0.733968 0.218955 Vertex 687 0.230423 0.84188 0.270556 Vertex 688 0.200771 0.513282 0.202403 Vertex 689 0.192434 0.502959 0.220702 Vertex 690 0.294944 0.872699 0.238794 Vertex 691 0.352749 0.763946 0.266908 Vertex 692 0.222185 0.633741 0.073632 Vertex 693 0.403868 0.816981 0.21724 Vertex 694 0.347787 0.894736 0.270391 Vertex 695 0.243111 0.595729 0.268513 Vertex 696 0.104954 0.889748 0.210633 Vertex 697 0.288349 0.820901 0.461914 Vertex 698 0.281851 0.829857 0.460116 Vertex 699 0.362733 0.818789 0.355861 Vertex 700 0.433726 0.792224 0.0511519 Vertex 701 0.361034 0.823891 0.331884 Vertex 702 0.233748 0.88149 0.262396 Vertex 703 0.235448 0.488286 0.299056 Vertex 704 0.0388217 0.926901 0.0321094 Vertex 705 0.356002 0.451192 0.306507 Vertex 706 0.36437 0.883233 0.295823 Vertex 707 0.255257 0.466742 0.278832 Vertex 708 0.189152 0.533397 0.144665 Vertex 709 0.172916 0.757751 0.202277 Vertex 710 0.220659 0.914627 0.297506 Vertex 711 0.26846 0.803886 0.467282 Vertex 712 0.336057 0.907912 0.299888 Vertex 713 0.346163 0.317592 0.21394 Vertex 714 0.228076 0.874931 0.39904 Vertex 715 0.233919 0.724663 0.283727 Vertex 716 0.371107 0.555993 0.243837 Vertex 717 0.128173 0.841894 0.225395 Vertex 718 0.245355 0.418879 0.322303 Vertex 719 0.153958 0.848608 0.233795 Vertex 720 0.184146 0.838512 0.224257 Vertex 721 0.207048 0.513006 0.232133 Vertex 722 0.22063 0.900554 0.311508 Vertex 723 0.25858 0.747791 0.436775 Vertex 724 0.412282 0.380266 0.108224 Vertex 725 0.339453 0.327925 0.347951 Vertex 726 0.288431 0.633351 0.0305172 Vertex 727 0.233848 0.822154 0.383228 Vertex 728 0.432052 0.888013 0.202342 Vertex 729 0.314653 0.508259 0.0171204 Vertex 730 0.33966 0.685041 0.2835 Vertex 731 0.32813 0.883135 0.398229 Vertex 732 0.390808 0.767597 0.219857 Vertex 733 0.319111 0.827049 0.450241 Vertex 734 0.113192 0.817281 0.0161085 Vertex 735 0.413903 0.828546 0.147272 Vertex 736 0.205707 0.685012 0.163285 Vertex 737 0.229292 0.564487 0.0437583 Vertex 738 0.352819 0.688388 0.102155 Vertex 739 0.172324 0.709773 0.0752402 Vertex 740 0.272658 0.712935 0.313123 Vertex 741 0.265211 0.794199 0.144675 Vertex 742 0.345821 0.809013 0.448726 Vertex 743 0.495007 0.847137 0.0304802 Vertex 744 0.265272 0.882758 0.376029 Vertex 745 0.329919 0.82203 0.230492 Vertex 746 0.312354 0.493161 0.248664 Vertex 747 0.0547738 0.960764 0.131273 Vertex 748 0.26022 0.464632 0.279961 Vertex 749 0.0715603 0.878319 0.010727 Vertex 750 0.205584 0.362534 0.0427069 Vertex 751 0.489786 0.969583 0.0965646 Vertex 752 0.420583 0.324825 0.192519 Vertex 753 0.288147 0.460323 0.0256336 Vertex 754 0.19958 0.534443 0.187461 Vertex 755 0.397454 0.668238 0.273275 Vertex 756 0.369399 0.746035 0.119651 Vertex 757 0.372744 0.689778 0.289675 Vertex 758 0.413819 0.319716 0.214803 Vertex 759 0.329724 0.751184 0.384105 Vertex 760 0.256623 0.785802 0.456897 Vertex 761 0.410571 0.802046 0.246962 Vertex 762 0.422142 0.746025 0.0702666 Vertex 763 0.273487 0.318035 0.010896 Vertex 764 0.46679 0.904154 0.10807 Vertex 765 0.0750754 0.865819 0.0140318 Vertex 766 0.346586 0.80396 0.199151 Vertex 767 0.498759 0.860096 0.0074945 Vertex 768 0.377716 0.729486 0.284009 Vertex 769 0.215288 0.498168 0.301488 Vertex 770 0.327101 0.889865 0.384077 Vertex 771 0.500795 0.951063 0.0785787 Vertex 772 0.488265 0.841832 0.0479976 Vertex 773 0.239995 0.463599 0.0620243 Vertex 774 0.255338 0.455486 0.0388629 Vertex 775 0.237028 0.877692 0.334528 Vertex 776 0.242007 0.885052 0.322882 Vertex 777 0.303194 0.437107 0.0160909 Vertex 778 0.116082 0.896603 0.175836 Vertex 779 0.336385 0.789297 0.445179 Vertex 780 0.227179 0.774843 0.296651 Vertex 781 0.0503856 0.945003 0.0686483 Vertex 782 0.162768 0.808257 0.233775 Vertex 783 0.192632 0.798677 0.225525 Vertex 784 0.45558 0.804103 0.0255974 Vertex 785 0.0644889 0.916293 0.0123731 Vertex 786 0.403942 0.506558 0.195073 Vertex 787 0.204088 0.569205 0.240211 Vertex 788 0.190736 0.620428 0.244213 Vertex 789 0.32973 0.74388 0.114833 Vertex 790 0.38374 0.547803 0.109908 Vertex 791 0.260187 0.892883 0.3444 Vertex 792 0.397907 0.699702 0.253706 Vertex 793 0.377518 0.57194 0.194169 Vertex 794 0.288369 0.861857 0.391843 Vertex 795 0.191339 0.499965 0.149632 Vertex 796 0.18244 0.506472 0.185101 Vertex 797 0.095017 0.828699 0.0383767 Vertex 798 0.275603 0.534663 0.0123352 Vertex 799 0.298346 0.351052 0.354195 Vertex 800 0.528361 0.960876 0.0339069 Vertex 801 0.35269 0.319655 0.0189314 Vertex 802 0.190872 0.804912 0.128091 Vertex 803 0.207847 0.575811 0.283383 Vertex 804 0.179241 0.628006 0.222239 Vertex 805 0.265065 0.84048 0.403901 Vertex 806 0.209532 0.46022 0.114851 Vertex 807 0.321245 0.663385 0.283562 Vertex 808 0.356821 0.608854 0.289992 Vertex 809 0.32287 0.632041 0.04529 Vertex 810 0.174418 0.740837 0.131399 Vertex 811 0.341046 0.478485 0.303318 Vertex 812 0.332898 0.494157 0.303203 Vertex 813 0.45829 0.926162 0.16277 Vertex 814 0.21452 0.666724 0.195842 Vertex 815 0.340566 0.66833 0.0717798 Vertex 816 0.411564 0.713029 0.114814 Vertex 817 0.144523 0.777597 0.0397276 Vertex 818 0.519342 0.979087 0.0355942 Vertex 819 0.25529 0.457338 0.312948 Vertex 820 0.286801 0.772484 0.422752 Vertex 821 0.210941 0.675047 0.111448 Vertex 822 0.226423 0.812222 0.405652 Vertex 823 0.192578 0.539617 0.116387 Vertex 824 0.273427 0.686547 0.312225 Vertex 825 0.200841 0.453917 0.286629 Vertex 826 0.528069 0.984138 0.0339288 Vertex 827 0.339835 0.832047 0.385851 Vertex 828 0.288403 0.848576 0.456847 Vertex 829 0.279935 0.843196 0.433661 Vertex 830 0.153308 0.813802 0.131313 Vertex 831 0.214001 0.731686 0.10991 Vertex 832 0.176206 0.643732 0.261762 Vertex 833 0.402339 0.319733 0.20075 Vertex 834 0.199044 0.504651 0.265283 Vertex 835 0.172775 0.319602 0.108298 Vertex 836 0.379173 0.4985 0.230483 Vertex 837 0.176757 0.742763 0.210743 Vertex 838 0.445124 0.777521 0.0786073 Vertex 839 0.187909 0.473308 0.169208 Vertex 840 0.404015 0.47006 0.214507 Vertex 841 0.360277 0.509776 0.294903 Vertex 842 0.374376 0.575842 0.281633 Vertex 843 0.298226 0.723088 0.397322 Vertex 844 0.359284 0.651815 0.116492 Vertex 845 0.174114 0.410598 0.194241 Vertex 846 0.175709 0.415634 0.175904 Vertex 847 0.326289 0.450298 0.0311934 Vertex 848 0.384137 0.508555 0.270326 Vertex 849 0.291636 0.89717 0.347821 Vertex 850 0.397812 0.486576 0.280156 Vertex 851 0.361042 0.849282 0.349545 Vertex 852 0.146206 0.740177 0.0884452 Vertex 853 0.354497 0.504717 0.306764 Vertex 854 0.366127 0.514738 0.287407 Vertex 855 0.133816 0.901386 0.132901 Vertex 856 0.045417 0.950815 0.0252534 Vertex 857 0.334288 0.807219 0.255395 Vertex 858 0.281633 0.845302 0.182904 Vertex 859 0.0833723 0.931305 0.168569 Vertex 860 0.286782 0.781366 0.423869 Vertex 861 0.163905 0.339557 0.162737 Vertex 862 0.366012 0.628599 0.228038 Vertex 863 0.120018 0.782326 0.0633878 Vertex 864 0.306542 0.829093 0.46192 Vertex 865 0.291036 0.370967 0.000800764 Vertex 866 0.359279 0.681666 0.179341 Vertex 867 0.399718 0.701494 0.126432 Vertex 868 0.490926 0.813845 0.043744 Vertex 869 0.324093 0.737737 0.397549 Vertex 870 0.173163 0.689766 0.28339 Vertex 871 0.200755 0.706393 0.293051 Vertex 872 0.07827 0.965953 0.114657 Vertex 873 0.164749 0.701424 0.270182 Vertex 874 0.238309 0.751025 0.384079 Vertex 875 0.410454 0.438689 0.187463 Vertex 876 0.259904 0.789156 0.390646 Vertex 877 0.414491 0.734546 0.103405 Vertex 878 0.209014 0.4675 0.291651 Vertex 879 0.245384 0.827245 0.402147 Vertex 880 0.17803 0.445355 0.167699 Vertex 881 0.469119 0.88826 0.0768241 Vertex 882 0.377925 0.513044 0.278254 Vertex 883 0.19073 0.509334 0.195688 Vertex 884 0.534561 0.987352 0.0694717 Vertex 885 0.413195 0.83524 0.207386 Vertex 886 0.400823 0.709731 0.0902057 Vertex 887 0.233798 0.81751 0.217273 Vertex 888 0.247091 0.757712 0.398595 Vertex 889 0.0551817 0.906537 0.0437061 Vertex 890 0.365978 0.688151 0.150618 Vertex 891 0.202442 0.810422 0.339311 Vertex 892 0.386063 0.496416 0.149461 Vertex 893 0.321385 0.750156 0.361041 Vertex 894 0.227068 0.506666 0.286606 Vertex 895 0.194256 0.436949 0.281821 Vertex 896 0.213966 0.318075 0.123077 Vertex 897 0.301595 0.838597 0.467689 Vertex 898 0.442419 0.84532 0.104903 Vertex 899 0.44206 0.751702 0.0849292 Vertex 900 0.354981 0.6518 0.208916 Vertex 901 0.314738 0.469585 0.271769 Vertex 902 0.245349 0.549405 0.254537 Vertex 903 0.170804 0.499777 0.197565 Vertex 904 0.280041 0.722218 0.40729 Vertex 905 0.392417 0.773542 0.2007 Vertex 906 0.390812 0.466312 0.182591 Vertex 907 0.391813 0.727895 0.260148 Vertex 908 0.323155 0.830321 0.428849 Vertex 909 0.425466 0.833716 0.25492 Vertex 910 0.377657 0.486527 0.241745 Vertex 911 0.167707 0.478437 0.202239 Vertex 912 0.379802 0.843567 0.227208 Vertex 913 0.167652 0.324798 0.213893 Vertex 914 0.427277 0.909711 0.181684 Vertex 915 0.395689 0.455316 0.25189 Vertex 916 0.202515 0.860177 0.290266 Vertex 917 0.375916 0.497425 0.123146 Vertex 918 0.246918 0.891691 0.285143 Vertex 919 0.233913 0.902703 0.276676 Vertex 920 0.164437 0.714784 0.106877 Vertex 921 0.0992824 0.873249 0.0849982 Vertex 922 0.101595 0.941599 0.1561 Vertex 923 0.210858 0.501501 0.290113 Vertex 924 0.222271 0.771181 0.258577 Vertex 925 0.339914 0.598897 0.0537964 Vertex 926 0.395836 0.494851 0.215546 Vertex 927 0.204218 0.508106 0.282054 Vertex 928 0.375516 0.645201 0.242019 Vertex 929 0.144424 0.787465 0.109712 Vertex 930 0.279924 0.816291 0.45857 Vertex 931 0.263529 0.592715 0.273529 Vertex 932 0.330332 0.456889 0.0520578 Vertex 933 0.210475 0.356083 0.311265 Vertex 934 0.329258 0.828786 0.395795 Vertex 935 0.417743 0.841936 0.230472 Vertex 936 0.182576 0.738485 0.275085 Vertex 937 0.163277 0.818763 0.161081 Vertex 938 0.372136 0.539469 0.0719203 Vertex 939 0.499907 0.9601 0.101462 Vertex 940 0.292355 0.810518 0.137948 Vertex 941 0.355031 0.693196 0.204066 Vertex 942 0.356085 0.711226 0.190266 Vertex 943 0.244705 0.802254 0.177704 Vertex 944 0.234816 0.825403 0.432203 Vertex 945 0.516681 0.960985 0.0255587 Vertex 946 0.220596 0.763476 0.339687 Vertex 947 0.187522 0.31765 0.256922 Vertex 948 0.194142 0.569145 0.263087 Vertex 949 0.238515 0.467001 0.298267 Vertex 950 0.352812 0.802252 0.353422 Vertex 951 0.369395 0.784129 0.227622 Vertex 952 0.222264 0.722949 0.109103 Vertex 953 0.424187 0.863499 0.192484 Vertex 954 0.181862 0.590718 0.210629 Vertex 955 0.148584 0.802199 0.11487 Vertex 956 0.339566 0.754314 0.274096 Vertex 957 0.365894 0.73914 0.283402 Vertex 958 0.247005 0.876614 0.405222 Vertex 959 0.354324 0.650208 0.0899239 Vertex 960 0.391452 0.67516 0.278389 Vertex 961 0.334585 0.89752 0.319771 Vertex 962 0.182561 0.648193 0.19905 Vertex 963 0.23684 0.736173 0.294851 Vertex 964 0.345577 0.387427 0.0156249 Vertex 965 0.298397 0.84828 0.409034 Vertex 966 0.197419 0.387992 0.294849 Vertex 967 0.359409 0.804024 0.325636 Vertex 968 0.327918 0.522159 0.251917 Vertex 969 0.502768 0.871752 0.00734226 Vertex 970 0.524511 0.916183 0.0288686 Vertex 971 0.0964898 0.851832 0.0799632 Vertex 972 0.291629 0.740795 0.36759 Vertex 973 0.367553 0.866588 0.293626 Vertex 974 0.19882 0.470107 0.235376 Vertex 975 0.132988 0.882401 0.0950868 Vertex 976 0.3744 0.741191 0.177626 Vertex 977 0.246962 0.786054 0.438618 Vertex 978 0.354031 0.54778 0.214074 Vertex 979 0.367651 0.530447 0.190835 Vertex 980 0.344471 0.899717 0.318938 Vertex 981 0.341125 0.524771 0.276433 Vertex 982 0.222228 0.790977 0.161228 Vertex 983 0.387625 0.463417 0.154435 Vertex 984 0.20431 0.478415 0.0900669 Vertex 985 0.313106 0.400806 0.00941145 Vertex 986 0.511417 0.913824 0.0172946 Vertex 987 0.387658 0.431944 0.0899449 Vertex 988 0.479998 0.944253 0.0693599 Vertex 989 0.222329 0.416523 0.0403441 Vertex 990 0.217373 0.86523 0.362748 Vertex 991 0.370307 0.516254 0.236958 Vertex 992 0.303306 0.703084 0.309547 Vertex 993 0.303401 0.651952 0.299824 Vertex 994 0.311402 0.852062 0.224016 Vertex 995 0.0657009 0.868317 0.0288248 Vertex 996 0.36783 0.809006 0.164366 Vertex 997 0.228747 0.66898 0.286689 Vertex 998 0.180725 0.850329 0.175873 Vertex 999 0.0892468 0.893098 0.0205708 Vertex 1000 0.079938 0.904705 0.0139166 Vertex 1001 0.0724065 0.936071 0.0321616 Vertex 1002 0.335576 0.878252 0.342733 Face 1 380 281 576 Face 2 566 85 608 Face 3 278 824 62 Face 4 130 907 691 Face 5 246 880 465 Face 6 608 457 896 Face 7 858 591 142 Face 8 789 201 326 Face 9 442 574 618 Face 10 341 221 99 Face 11 340 587 893 Face 12 310 943 741 Face 13 201 789 451 Face 14 215 432 125 Face 15 807 218 730 Face 16 59 871 371 Face 17 866 274 844 Face 18 636 310 15 Face 19 309 647 261 Face 20 768 757 960 Face 21 597 15 310 Face 22 865 196 530 Face 23 274 866 103 Face 24 193 793 979 Face 25 466 965 220 Face 26 953 885 51 Face 27 802 250 242 Face 28 641 318 192 Face 29 215 750 432 Face 30 896 263 157 Face 31 446 890 285 Face 32 210 183 548 Face 33 158 19 256 Face 34 700 291 429 Face 35 429 82 534 Face 36 429 291 82 Face 37 51 607 953 Face 38 868 428 305 Face 39 846 880 246 Face 40 612 705 541 Face 41 680 425 821 Face 42 261 113 511 Face 43 319 995 765 Face 44 124 318 456 Face 45 855 635 56 Face 46 413 26 999 Face 47 802 384 413 Face 48 585 217 817 Face 49 739 515 336 Face 50 435 921 971 Face 51 620 28 612 Face 52 306 621 398 Face 53 933 170 270 Face 54 68 561 198 Face 55 550 991 716 Face 56 518 484 533 Face 57 326 655 789 Face 58 967 574 442 Face 59 311 282 83 Face 60 312 663 239 Face 61 760 977 488 Face 62 622 965 829 Face 63 299 724 571 Face 64 476 777 649 Face 65 924 963 192 Face 66 695 41 594 Face 67 438 647 309 Face 68 96 330 729 Face 69 25 661 175 Face 70 1000 314 244 Face 71 830 435 154 Face 72 55 719 204 Face 73 814 91 191 Face 74 156 937 554 Face 75 895 632 320 Face 76 795 75 665 Face 77 426 902 695 Face 78 426 562 902 Face 79 987 724 92 Face 80 260 348 193 Face 81 651 271 712 Face 82 177 791 849 Face 83 468 936 4 Face 84 315 397 625 Face 85 443 752 758 Face 86 92 724 299 Face 87 618 454 507 Face 88 618 807 454 Face 89 368 557 473 Face 90 16 177 918 Face 91 794 399 280 Face 92 775 557 368 Face 93 100 543 241 Face 94 744 604 794 Face 95 778 247 499 Face 96 38 370 272 Face 97 494 51 885 Face 98 494 386 51 Face 99 345 790 42 Face 100 330 96 611 Face 101 946 576 281 Face 102 340 893 972 Face 103 423 214 780 Face 104 423 576 946 Face 105 717 593 169 Face 106 245 782 55 Face 107 859 583 747 Face 108 169 593 204 Face 109 215 378 526 Face 110 2 763 566 Face 111 421 986 82 Face 112 607 51 881 Face 113 377 997 203 Face 114 450 871 59 Face 115 351 200 417 Face 116 254 114 427 Face 117 396 226 993 Face 118 41 127 645 Face 119 41 355 931 Face 120 41 645 355 Face 121 64 311 525 Face 122 329 650 745 Face 123 668 486 84 Face 124 31 102 766 Face 125 887 641 119 Face 126 998 56 115 Face 127 513 949 707 Face 128 470 376 878 Face 129 654 172 347 Face 130 284 948 424 Face 131 6 199 540 Face 132 263 896 457 Face 133 577 69 748 Face 134 218 61 416 Face 135 673 444 941 Face 136 527 77 716 Face 137 177 213 47 Face 138 690 994 71 Face 139 947 72 572 Face 140 933 270 489 Face 141 458 417 200 Face 142 559 597 692 Face 143 23 614 417 Face 144 708 659 823 Face 145 23 251 614 Face 146 153 189 251 Face 147 28 681 612 Face 148 195 981 342 Face 149 685 882 394 Face 150 550 716 77 Face 151 322 218 416 Face 152 757 596 78 Face 153 409 79 831 Face 154 409 308 79 Face 155 619 80 185 Face 156 619 222 80 Face 157 564 163 407 Face 158 820 414 551 Face 159 988 82 145 Face 160 945 206 82 Face 161 751 83 914 Face 162 988 145 525 Face 163 374 84 886 Face 164 756 668 84 Face 165 184 196 265 Face 166 833 608 85 Face 167 42 917 345 Face 168 642 979 448 Face 169 372 786 616 Face 170 372 606 892 Face 171 56 324 115 Face 172 583 859 88 Face 173 353 241 543 Face 174 701 463 301 Face 175 43 331 950 Face 176 667 411 466 Face 177 338 397 315 Face 178 821 425 736 Face 179 317 92 299 Face 180 628 333 92 Face 181 760 711 33 Face 182 321 522 219 Face 183 289 379 529 Face 184 33 711 288 Face 185 316 95 85 Face 186 317 45 443 Face 187 10 809 460 Face 188 815 364 959 Face 189 99 954 341 Face 190 98 397 630 Face 191 44 682 373 Face 192 403 124 208 Face 193 481 99 221 Face 194 481 629 99 Face 195 253 791 177 Face 196 775 368 791 Face 197 479 101 506 Face 198 686 462 905 Face 199 63 102 31 Face 200 506 101 382 Face 201 928 444 673 Face 202 348 260 644 Face 203 70 862 444 Face 204 441 30 610 Face 205 349 105 833 Face 206 223 492 105 Face 207 6 106 199 Face 208 6 72 106 Face 209 735 357 898 Face 210 678 535 107 Face 211 920 810 337 Face 212 338 315 554 Face 213 529 202 977 Face 214 53 556 415 Face 215 507 442 618 Face 216 493 283 110 Face 217 22 111 563 Face 218 295 703 512 Face 219 910 168 836 Face 220 28 620 112 Face 221 460 726 10 Face 222 798 511 113 Face 223 606 345 917 Face 224 547 427 114 Face 225 456 720 55 Face 226 579 24 115 Face 227 462 116 905 Face 228 138 478 419 Face 229 13 117 738 Face 230 756 84 374 Face 231 866 941 103 Face 232 976 419 462 Face 233 623 780 214 Face 234 532 887 119 Face 235 122 666 517 Face 236 687 119 120 Face 237 722 121 298 Face 238 710 122 664 Face 239 919 122 710 Face 240 702 666 122 Face 241 674 482 74 Face 242 804 99 542 Face 243 243 124 783 Face 244 243 624 124 Face 245 500 125 989 Face 246 777 476 985 Face 247 127 746 645 Face 248 901 390 332 Face 249 69 257 748 Face 250 901 746 671 Face 251 799 128 541 Face 252 725 223 128 Face 253 356 292 856 Face 254 25 872 635 Face 255 957 130 691 Face 256 596 757 768 Face 257 183 813 548 Face 258 32 238 131 Face 259 163 569 407 Face 260 893 452 545 Face 261 81 843 212 Face 262 759 447 133 Face 263 133 869 759 Face 264 553 415 556 Face 265 781 626 272 Face 266 412 503 135 Face 267 483 995 319 Face 268 704 503 323 Face 269 74 490 674 Face 270 74 205 490 Face 271 439 138 419 Face 272 867 207 816 Face 273 80 761 185 Face 274 266 358 238 Face 275 819 140 237 Face 276 718 538 343 Face 277 79 141 831 Face 278 335 817 141 Face 279 47 532 119 Face 280 47 213 532 Face 281 463 143 301 Face 282 477 539 669 Face 283 706 144 344 Face 284 973 477 144 Face 285 486 291 84 Face 286 996 525 145 Face 287 974 328 485 Face 288 632 895 580 Face 289 536 147 839 Face 290 652 689 568 Face 291 480 576 264 Face 292 53 109 874 Face 293 300 149 381 Face 294 888 601 149 Face 295 675 150 881 Face 296 771 209 471 Face 297 826 395 818 Face 298 404 471 151 Face 299 280 829 49 Face 300 510 33 288 Face 301 459 153 251 Face 302 459 500 153 Face 303 797 154 313 Face 304 603 955 154 Face 305 39 821 736 Face 306 920 515 683 Face 307 315 156 554 Face 308 672 169 499 Face 309 327 572 913 Face 310 835 378 157 Face 311 84 590 166 Face 312 84 291 700 Face 313 260 159 643 Face 314 611 925 159 Face 315 618 992 807 Face 316 452 893 587 Face 317 103 161 159 Face 318 900 383 161 Face 319 794 543 100 Face 320 49 466 411 Face 321 637 163 564 Face 322 637 447 163 Face 323 805 879 280 Face 324 48 473 164 Face 325 48 714 496 Face 326 48 164 521 Face 327 877 762 230 Face 328 277 84 762 Face 329 820 273 414 Face 330 366 402 167 Face 331 255 915 28 Face 332 840 171 926 Face 333 859 696 88 Face 334 778 499 169 Face 335 198 540 199 Face 336 799 343 538 Face 337 87 786 372 Face 338 87 533 484 Face 339 389 172 787 Face 340 485 328 721 Face 341 589 842 808 Face 342 77 527 842 Face 343 851 701 301 Face 344 851 699 174 Face 345 56 175 922 Face 346 872 25 175 Face 347 913 176 861 Face 348 72 6 489 Face 349 346 177 464 Face 350 690 213 177 Face 351 873 936 468 Face 352 44 373 870 Face 353 86 906 605 Face 354 497 255 180 Face 355 179 180 255 Face 356 179 987 491 Face 357 925 181 159 Face 358 809 815 181 Face 359 94 822 944 Face 360 94 727 182 Face 361 282 914 83 Face 362 32 131 670 Face 363 1 184 92 Face 364 1 196 184 Face 365 617 185 663 Face 366 102 63 382 Face 367 43 599 331 Face 368 297 1002 186 Face 369 455 187 687 Face 370 916 517 187 Face 371 455 916 187 Face 372 120 891 557 Face 373 526 750 215 Face 374 246 251 189 Face 375 708 341 659 Face 376 405 211 190 Face 377 559 425 680 Face 378 74 482 191 Face 379 119 192 623 Face 380 119 641 192 Face 381 642 193 979 Face 382 42 790 193 Face 383 657 194 408 Face 384 657 449 194 Face 385 882 854 394 Face 386 77 842 195 Face 387 85 196 801 Face 388 763 530 196 Face 389 31 655 326 Face 390 31 766 197 Face 391 725 492 223 Face 392 29 170 198 Face 393 457 199 106 Face 394 68 198 199 Face 395 427 200 254 Face 396 753 458 200 Face 397 7 201 438 Face 398 591 940 201 Face 399 109 601 888 Face 400 109 595 202 Face 401 487 203 62 Face 402 715 377 203 Face 403 88 524 293 Face 404 88 696 204 Face 405 737 511 798 Face 406 737 490 205 Face 407 151 800 404 Face 408 970 986 421 Face 409 446 207 867 Face 410 117 375 374 Face 411 98 208 397 Face 412 98 403 208 Face 413 131 813 670 Face 414 656 471 209 Face 415 818 609 826 Face 416 20 83 609 Face 417 688 211 883 Face 418 592 190 211 Face 419 53 212 904 Face 420 480 340 972 Face 421 71 213 690 Face 422 940 591 858 Face 423 54 946 281 Face 424 54 623 214 Face 425 2 530 763 Face 426 2 378 215 Face 427 27 307 929 Face 428 420 734 350 Face 429 216 217 585 Face 430 307 27 575 Face 431 808 218 589 Face 432 78 730 218 Face 433 908 359 466 Face 434 93 366 742 Face 435 897 622 828 Face 436 93 359 908 Face 437 592 221 754 Face 438 389 481 221 Face 439 602 222 619 Face 440 519 228 735 Face 441 8 223 105 Face 442 248 613 223 Face 443 3 672 156 Face 444 3 392 224 Face 445 90 225 569 Face 446 90 219 225 Face 447 61 226 396 Face 448 61 218 226 Face 449 357 227 772 Face 450 107 535 227 Face 451 229 228 519 Face 452 107 227 228 Face 453 107 838 678 Face 454 107 228 838 Face 455 229 899 549 Face 456 229 519 230 Face 457 673 528 928 Face 458 755 173 231 Face 459 479 686 101 Face 460 5 528 232 Face 461 732 619 185 Face 462 732 686 233 Face 463 669 234 437 Face 464 669 539 694 Face 465 626 235 247 Face 466 598 785 889 Face 467 482 236 191 Face 468 542 99 629 Face 469 705 237 140 Face 470 841 195 342 Face 471 909 238 239 Face 472 909 266 238 Face 473 32 239 238 Face 474 282 312 239 Face 475 472 240 216 Face 476 554 937 830 Face 477 1002 241 770 Face 478 271 346 464 Face 479 15 242 982 Face 480 15 952 242 Face 481 245 243 783 Face 482 709 837 243 Face 483 785 244 889 Face 484 785 129 244 Face 485 3 245 392 Face 486 3 243 245 Face 487 17 246 189 Face 488 861 176 431 Face 489 474 247 235 Face 490 474 660 247 Face 491 8 248 223 Face 492 8 398 248 Face 493 636 943 310 Face 494 982 579 249 Face 495 24 998 115 Face 496 982 242 250 Face 497 406 465 880 Face 498 984 614 251 Face 499 34 252 684 Face 500 287 640 252 Face 501 16 253 177 Face 502 501 121 722 Face 503 36 254 200 Face 504 36 96 729 Face 505 112 255 28 Face 506 571 724 875 Face 507 549 678 229 Face 508 549 158 256 Face 509 127 671 746 Face 510 127 41 562 Face 511 133 258 555 Face 512 638 365 258 Face 513 40 259 911 Face 514 633 146 974 Face 515 938 790 345 Face 516 52 159 260 Face 517 597 261 692 Face 518 597 310 261 Face 519 75 262 665 Face 520 984 251 262 Face 521 106 263 457 Face 522 106 157 263 Face 523 423 264 576 Face 524 35 740 264 Face 525 865 265 196 Face 526 125 777 985 Face 527 80 266 761 Face 528 693 935 266 Face 529 97 804 542 Face 530 674 490 659 Face 531 792 755 231 Face 532 907 130 268 Face 533 966 269 418 Face 534 66 825 269 Face 535 718 270 538 Face 536 66 269 270 Face 537 89 582 464 Face 538 437 712 961 Face 539 247 272 626 Face 540 247 778 272 Face 541 167 860 658 Face 542 167 488 558 Face 543 159 274 103 Face 544 159 181 274 Face 545 132 545 452 Face 546 950 331 275 Face 547 100 744 794 Face 548 100 368 276 Face 549 138 877 478 Face 550 816 207 886 Face 551 160 992 11 Face 552 160 824 278 Face 553 949 586 707 Face 554 66 140 819 Face 555 94 280 879 Face 556 510 288 280 Face 557 393 281 380 Face 558 164 54 281 Face 559 32 282 239 Face 560 32 914 282 Face 561 650 283 493 Face 562 651 694 283 Face 563 22 803 424 Face 564 22 361 803 Face 565 959 844 274 Face 566 959 364 738 Face 567 903 286 796 Face 568 903 259 286 Face 569 34 287 252 Face 570 649 777 847 Face 571 152 288 698 Face 572 152 280 288 Face 573 33 289 760 Face 574 461 379 289 Face 575 89 290 961 Face 576 301 581 290 Face 577 145 291 996 Face 578 145 82 291 Face 579 1001 635 975 Face 580 129 615 292 Face 581 115 720 65 Face 582 115 324 293 Face 583 677 878 825 Face 584 388 295 769 Face 585 22 894 512 Face 586 304 769 295 Face 587 303 533 87 Face 588 991 194 836 Face 589 43 297 186 Face 590 43 699 851 Face 591 188 298 567 Face 592 188 544 298 Face 593 752 621 306 Face 594 45 317 299 Face 595 148 300 381 Face 596 874 109 888 Face 597 89 301 290 Face 598 1002 297 301 Face 599 47 302 177 Face 600 702 122 919 Face 601 30 978 610 Face 602 30 296 303 Face 603 22 304 894 Face 604 22 424 469 Face 605 436 534 82 Face 606 772 868 743 Face 607 8 306 398 Face 608 758 752 306 Face 609 216 863 217 Face 610 216 240 307 Face 611 155 308 409 Face 612 155 39 683 Face 613 310 309 261 Face 614 7 438 309 Face 615 453 310 741 Face 616 7 309 310 Face 617 600 311 64 Face 618 912 282 311 Face 619 600 912 311 Face 620 102 382 617 Face 621 26 627 999 Face 622 734 420 313 Face 623 627 314 999 Face 624 313 154 765 Face 625 3 709 243 Face 626 3 156 315 Face 627 801 316 85 Face 628 317 443 316 Face 629 1 317 316 Face 630 1 92 317 Face 631 4 318 468 Face 632 377 715 924 Face 633 154 319 765 Face 634 154 435 971 Face 635 176 845 431 Face 636 418 895 320 Face 637 366 779 742 Face 638 14 638 321 Face 639 195 322 981 Face 640 195 842 589 Face 641 615 856 292 Face 642 136 598 323 Face 643 88 922 583 Face 644 88 293 324 Face 645 132 325 545 Face 646 132 174 325 Face 647 940 326 201 Face 648 71 329 326 Face 649 17 327 431 Face 650 835 157 327 Face 651 146 328 974 Face 652 347 172 328 Face 653 31 329 745 Face 654 31 326 329 Face 655 345 330 938 Face 656 114 729 330 Face 657 934 827 531 Face 658 90 275 331 Face 659 126 332 390 Face 660 968 645 746 Face 661 34 333 628 Face 662 34 684 987 Face 663 728 334 209 Face 664 358 266 935 Face 665 79 335 141 Face 666 79 739 336 Face 667 385 336 504 Face 668 335 79 336 Face 669 216 337 810 Face 670 504 336 852 Face 671 339 338 108 Face 672 39 736 338 Face 673 39 339 683 Face 674 39 338 339 Face 675 264 340 480 Face 676 264 587 340 Face 677 754 341 708 Face 678 754 221 341 Face 679 390 679 126 Face 680 811 433 342 Face 681 140 343 705 Face 682 140 718 343 Face 683 980 437 961 Face 684 290 581 344 Face 685 114 640 287 Face 686 114 330 345 Face 687 12 346 271 Face 688 650 994 346 Face 689 146 347 328 Face 690 376 654 347 Face 691 383 348 644 Face 692 104 193 348 Face 693 8 349 306 Face 694 8 105 349 Face 695 217 350 384 Face 696 217 863 350 Face 697 460 798 113 Face 698 36 200 351 Face 699 354 352 43 Face 700 354 411 352 Face 701 731 353 162 Face 702 770 241 353 Face 703 186 354 43 Face 704 770 353 731 Face 705 396 355 61 Face 706 62 931 355 Face 707 25 662 369 Face 708 25 292 356 Face 709 228 357 735 Face 710 228 227 357 Face 711 728 358 334 Face 712 131 238 358 Face 713 742 359 93 Face 714 219 90 359 Face 715 59 997 450 Face 716 563 426 695 Face 717 59 361 997 Face 718 59 371 361 Face 719 28 362 681 Face 720 28 915 362 Face 721 362 363 588 Face 722 657 408 850 Face 723 375 789 655 Face 724 13 738 364 Face 725 14 365 638 Face 726 658 860 365 Face 727 14 658 365 Face 728 14 779 366 Face 729 47 367 302 Face 730 47 119 367 Face 731 48 990 473 Face 732 48 496 990 Face 733 37 369 662 Face 734 747 584 369 Face 735 37 370 369 Face 736 781 272 370 Face 737 373 371 870 Face 738 284 361 371 Face 739 497 372 616 Face 740 86 605 372 Face 741 284 373 682 Face 742 284 371 373 Face 743 207 374 886 Face 744 207 446 374 Face 745 13 375 117 Face 746 13 789 375 Face 747 580 376 347 Face 748 825 878 376 Face 749 4 377 318 Face 750 450 997 377 Face 751 566 378 2 Face 752 57 157 378 Face 753 822 379 461 Face 754 381 648 379 Face 755 182 380 379 Face 756 182 727 380 Face 757 380 381 379 Face 758 380 148 381 Face 759 185 951 732 Face 760 185 617 951 Face 761 610 862 70 Face 762 104 348 383 Face 763 734 384 350 Face 764 26 413 384 Face 765 335 385 817 Face 766 335 336 385 Face 767 772 898 357 Face 768 467 51 386 Face 769 560 387 743 Face 770 467 386 387 Face 771 677 388 294 Face 772 677 586 388 Face 773 592 389 221 Face 774 67 172 389 Face 775 577 390 901 Face 776 812 679 390 Face 777 506 391 5 Face 778 507 956 691 Face 779 55 392 245 Face 780 55 204 392 Face 781 164 393 521 Face 782 164 281 393 Face 783 523 394 854 Face 784 588 363 394 Face 785 206 395 634 Face 786 206 945 395 Face 787 62 396 278 Face 788 62 355 396 Face 789 91 397 338 Face 790 91 814 397 Face 791 571 398 621 Face 792 112 620 398 Face 793 958 399 400 Face 794 805 280 399 Face 795 744 400 604 Face 796 276 990 496 Face 797 402 697 930 Face 798 733 622 897 Face 799 93 402 366 Face 800 93 639 402 Face 801 44 403 832 Face 802 873 468 403 Face 803 514 404 800 Face 804 939 209 771 Face 805 75 405 614 Face 806 75 211 405 Face 807 440 806 631 Face 808 262 251 806 Face 809 225 407 569 Face 810 522 564 407 Face 811 848 408 550 Face 812 848 850 408 Face 813 952 409 831 Face 814 9 155 409 Face 815 502 410 255 Face 816 449 362 915 Face 817 162 411 354 Face 818 162 49 411 Face 819 37 412 370 Face 820 37 503 412 Face 821 855 975 635 Face 822 250 802 413 Face 823 109 723 595 Face 824 415 552 723 Face 825 109 415 723 Face 826 109 53 415 Face 827 126 416 332 Face 828 981 322 416 Face 829 737 417 137 Face 830 73 351 417 Face 831 176 418 320 Face 832 176 72 489 Face 833 116 419 478 Face 834 116 462 419 Face 835 27 420 575 Face 836 603 154 797 Face 837 206 421 82 Face 838 206 634 421 Face 839 151 970 421 Face 840 151 471 422 Face 841 963 423 780 Face 842 35 264 423 Face 843 172 424 948 Face 844 172 469 424 Face 845 191 425 559 Face 846 191 91 425 Face 847 111 426 563 Face 848 111 562 426 Face 849 60 427 932 Face 850 753 200 427 Face 851 535 428 868 Face 852 429 305 428 Face 853 19 429 428 Face 854 784 700 429 Face 855 19 430 256 Face 856 19 428 430 Face 857 246 431 845 Face 858 246 17 431 Face 859 989 432 750 Face 860 989 125 432 Face 861 76 433 578 Face 862 853 342 433 Face 863 76 434 433 Face 864 523 854 841 Face 865 937 435 830 Face 866 50 921 435 Face 867 58 436 675 Face 868 560 969 436 Face 869 344 437 980 Face 870 344 144 437 Face 871 451 438 201 Face 872 10 647 438 Face 873 976 439 419 Face 874 18 446 439 Face 875 262 440 665 Face 876 262 806 440 Face 877 70 441 610 Face 878 928 231 441 Face 879 110 442 857 Face 880 463 701 676 Face 881 95 443 758 Face 882 95 316 443 Face 883 103 900 161 Face 884 103 941 444 Face 885 173 445 808 Face 886 173 755 445 Face 887 117 446 285 Face 888 117 374 446 Face 889 646 447 759 Face 890 646 163 447 Face 891 87 448 303 Face 892 892 606 917 Face 893 168 449 410 Face 894 168 910 449 Face 895 4 450 377 Face 896 4 178 450 Face 897 10 451 809 Face 898 10 438 451 Face 899 11 452 160 Face 900 11 574 452 Face 901 7 453 201 Face 902 7 310 453 Face 903 730 454 807 Face 904 956 507 454 Face 905 120 455 687 Face 906 120 557 455 Face 907 641 456 318 Face 908 65 720 456 Face 909 68 457 713 Face 910 68 199 457 Face 911 773 458 60 Face 912 23 417 458 Face 913 23 459 251 Face 914 23 458 773 Face 915 36 460 96 Face 916 36 798 460 Face 917 33 461 289 Face 918 33 510 944 Face 919 118 462 686 Face 920 118 573 462 Face 921 110 463 676 Face 922 110 143 463 Face 923 241 849 100 Face 924 241 89 464 Face 925 251 465 406 Face 926 251 246 465 Face 927 90 466 359 Face 928 90 827 934 Face 929 58 467 387 Face 930 58 675 467 Face 931 124 468 318 Face 932 124 403 468 Face 933 565 470 878 Face 934 304 22 927 Face 935 927 470 565 Face 936 516 376 470 Face 937 764 471 656 Face 938 150 422 471 Face 939 108 810 339 Face 940 108 240 472 Face 941 891 473 557 Face 942 54 164 473 Face 943 50 474 235 Face 944 50 660 474 Face 945 298 475 567 Face 946 298 121 475 Face 947 628 476 649 Face 948 628 964 476 Face 949 110 477 143 Face 950 110 539 477 Face 951 230 478 877 Face 952 230 519 478 Face 953 5 479 506 Face 954 5 232 479 Face 955 53 480 212 Face 956 53 576 480 Face 957 787 481 389 Face 958 788 629 481 Face 959 123 482 962 Face 960 123 236 482 Face 961 235 921 50 Face 962 889 244 483 Face 963 171 484 926 Face 964 171 87 484 Face 965 67 485 721 Face 966 67 211 688 Face 967 996 486 668 Face 968 996 291 486 Face 969 35 487 740 Face 970 715 203 487 Face 971 202 488 977 Face 972 202 595 488 Face 973 418 489 966 Face 974 418 176 489 Face 975 137 490 737 Face 976 823 659 490 Face 977 983 491 605 Face 978 180 179 491 Face 979 198 492 725 Face 980 198 561 492 Face 981 857 745 110 Face 982 63 31 745 Face 983 222 494 693 Face 984 735 898 494 Face 985 96 925 611 Face 986 96 460 495 Face 987 400 496 958 Face 988 400 276 496 Face 989 86 497 906 Face 990 86 372 497 Face 991 365 498 258 Face 992 365 860 498 Face 993 156 660 937 Face 994 156 672 499 Face 995 60 500 774 Face 996 777 125 500 Face 997 16 501 776 Face 998 16 918 501 Face 999 518 926 484 Face 1000 168 410 502 Face 1001 662 503 37 Face 1002 356 856 503 Face 1003 216 504 852 Face 1004 216 585 504 Face 1005 929 955 27 Face 1006 240 554 505 Face 1007 63 506 382 Face 1008 507 391 506 Face 1009 63 507 506 Face 1010 857 442 507 Face 1011 832 682 44 Face 1012 787 172 948 Face 1013 393 509 570 Face 1014 727 94 879 Face 1015 94 510 280 Face 1016 94 944 510 Face 1017 205 511 737 Face 1018 692 261 511 Face 1019 513 512 703 Face 1020 111 22 512 Face 1021 111 513 707 Face 1022 111 512 513 Face 1023 884 514 210 Face 1024 21 404 514 Face 1025 337 515 920 Face 1026 852 336 515 Face 1027 469 834 470 Face 1028 469 172 834 Face 1029 121 517 475 Face 1030 664 122 517 Face 1031 168 518 836 Face 1032 168 502 518 Face 1033 602 519 222 Face 1034 116 478 519 Face 1035 165 520 399 Face 1036 570 509 520 Face 1037 165 570 520 Face 1038 714 48 521 Face 1039 225 522 407 Face 1040 225 219 522 Face 1041 76 523 434 Face 1042 588 394 523 Face 1043 204 524 88 Face 1044 204 719 524 Face 1045 83 525 311 Face 1046 83 20 525 Face 1047 835 526 378 Face 1048 17 189 526 Face 1049 231 527 441 Face 1050 231 173 527 Face 1051 231 528 792 Face 1052 231 928 528 Face 1053 648 529 379 Face 1054 876 202 529 Face 1055 215 530 2 Face 1056 215 865 530 Face 1057 599 531 827 Face 1058 352 411 667 Face 1059 142 532 213 Face 1060 142 943 532 Face 1061 296 533 303 Face 1062 836 518 533 Face 1063 969 534 436 Face 1064 767 429 534 Face 1065 430 535 678 Face 1066 430 428 535 Face 1067 631 536 440 Face 1068 40 911 536 Face 1069 30 537 296 Face 1070 30 441 537 Face 1071 170 538 270 Face 1072 170 799 538 Face 1073 283 539 110 Face 1074 283 694 539 Face 1075 170 540 198 Face 1076 170 6 540 Face 1077 343 541 705 Face 1078 343 799 541 Face 1079 123 542 236 Face 1080 123 962 542 Face 1081 162 543 794 Face 1082 162 353 543 Face 1083 775 544 188 Face 1084 776 501 722 Face 1085 275 545 325 Face 1086 275 81 545 Face 1087 547 932 427 Face 1088 287 34 546 Face 1089 287 547 114 Face 1090 287 932 547 Face 1091 939 548 813 Face 1092 884 210 548 Face 1093 166 549 899 Face 1094 166 158 549 Face 1095 194 550 408 Face 1096 194 991 550 Face 1097 552 551 414 Face 1098 258 498 551 Face 1099 553 552 415 Face 1100 258 551 552 Face 1101 258 553 555 Face 1102 258 552 553 Face 1103 108 554 240 Face 1104 108 338 554 Face 1105 134 555 553 Face 1106 843 81 869 Face 1107 843 904 212 Face 1108 134 553 556 Face 1109 188 557 775 Face 1110 188 455 557 Face 1111 273 558 414 Face 1112 273 167 558 Face 1113 74 559 205 Face 1114 74 191 559 Face 1115 58 560 436 Face 1116 58 387 560 Face 1117 713 561 68 Face 1118 105 492 561 Face 1119 257 562 111 Face 1120 671 127 562 Face 1121 361 563 695 Face 1122 361 22 563 Face 1123 321 564 522 Face 1124 321 637 564 Face 1125 923 565 878 Face 1126 304 927 565 Face 1127 57 566 608 Face 1128 57 378 566 Face 1129 455 567 916 Face 1130 455 188 567 Face 1131 286 883 796 Face 1132 286 653 568 Face 1133 646 569 163 Face 1134 275 90 569 Face 1135 521 570 165 Face 1136 521 393 570 Face 1137 112 571 875 Face 1138 112 398 571 Face 1139 157 572 327 Face 1140 157 947 572 Face 1141 18 573 942 Face 1142 18 439 573 Face 1143 132 574 967 Face 1144 132 452 574 Face 1145 350 575 420 Face 1146 350 863 575 Face 1147 148 576 53 Face 1148 148 380 576 Face 1149 237 577 279 Face 1150 237 390 577 Face 1151 237 578 390 Face 1152 237 76 578 Face 1153 65 579 115 Face 1154 65 887 579 Face 1155 146 580 347 Face 1156 146 633 580 Face 1157 143 581 301 Face 1158 706 344 581 Face 1159 271 961 712 Face 1160 271 464 582 Face 1161 175 583 922 Face 1162 584 747 583 Face 1163 175 584 583 Face 1164 175 661 584 Face 1165 385 585 817 Face 1166 385 504 585 Face 1167 819 586 677 Face 1168 279 577 748 Face 1169 740 587 264 Face 1170 160 452 587 Face 1171 76 588 523 Face 1172 76 362 588 Face 1173 322 589 218 Face 1174 322 195 589 Face 1175 700 590 84 Face 1176 158 166 590 Face 1177 453 591 201 Face 1178 453 741 591 Face 1179 67 592 211 Face 1180 67 389 592 Face 1181 392 593 717 Face 1182 392 204 593 Face 1183 203 594 62 Face 1184 203 360 594 Face 1185 558 595 723 Face 1186 558 488 595 Face 1187 957 596 768 Face 1188 730 78 596 Face 1189 680 597 559 Face 1190 9 15 597 Face 1191 135 598 235 Face 1192 704 323 598 Face 1193 352 599 43 Face 1194 352 531 599 Face 1195 102 600 766 Face 1196 102 912 600 Face 1197 202 601 109 Face 1198 202 876 601 Face 1199 116 602 905 Face 1200 116 519 602 Face 1201 27 603 797 Face 1202 27 955 603 Face 1203 399 604 400 Face 1204 399 794 604 Face 1205 252 605 684 Face 1206 606 372 605 Face 1207 252 606 605 Face 1208 252 640 606 Face 1209 150 607 881 Face 1210 764 953 607 Face 1211 105 608 833 Face 1212 105 561 713 Face 1213 210 751 183 Face 1214 210 514 609 Face 1215 793 610 978 Face 1216 104 862 610 Face 1217 52 611 159 Face 1218 938 330 611 Face 1219 128 612 541 Face 1220 613 620 612 Face 1221 128 613 612 Face 1222 128 223 613 Face 1223 137 614 405 Face 1224 137 417 614 Face 1225 785 615 129 Face 1226 136 323 615 Face 1227 840 616 171 Face 1228 255 497 616 Face 1229 312 617 663 Face 1230 312 102 617 Face 1231 11 618 574 Face 1232 11 992 618 Face 1233 233 619 732 Face 1234 233 602 619 Face 1235 248 620 613 Face 1236 248 398 620 Face 1237 299 621 45 Face 1238 299 571 621 Face 1239 220 622 733 Face 1240 220 965 622 Face 1241 120 623 891 Face 1242 120 119 623 Face 1243 625 837 709 Face 1244 208 124 624 Face 1245 208 625 397 Face 1246 208 837 625 Face 1247 135 626 781 Face 1248 135 235 626 Face 1249 313 627 26 Face 1250 313 314 627 Face 1251 184 628 92 Face 1252 184 964 628 Face 1253 814 630 397 Face 1254 236 542 629 Face 1255 629 630 236 Face 1256 629 98 630 Face 1257 880 631 406 Face 1258 40 536 631 Face 1259 633 632 580 Face 1260 40 845 632 Face 1261 40 633 259 Face 1262 40 632 633 Face 1263 151 634 800 Face 1264 151 421 634 Face 1265 292 635 1001 Face 1266 292 25 635 Face 1267 982 636 15 Face 1268 982 249 636 Face 1269 638 637 321 Face 1270 133 447 637 Face 1271 133 638 258 Face 1272 133 637 638 Face 1273 897 864 733 Face 1274 401 402 639 Face 1275 345 640 114 Face 1276 345 606 640 Face 1277 65 641 887 Face 1278 65 456 641 Face 1279 42 642 917 Face 1280 42 193 642 Face 1281 161 643 159 Face 1282 644 260 643 Face 1283 161 644 643 Face 1284 161 383 644 Face 1285 61 645 968 Face 1286 61 355 645 Face 1287 275 646 759 Face 1288 275 569 646 Face 1289 726 647 10 Face 1290 113 261 647 Face 1291 149 648 381 Face 1292 876 529 648 Face 1293 34 649 546 Face 1294 34 628 649 Face 1295 12 650 346 Face 1296 12 283 650 Face 1297 12 651 283 Face 1298 12 271 651 Face 1299 653 652 568 Face 1300 653 633 652 Face 1301 259 653 286 Face 1302 259 633 653 Face 1303 516 654 376 Face 1304 834 172 654 Face 1305 197 655 31 Face 1306 197 375 655 Face 1307 334 656 209 Face 1308 953 764 656 Face 1309 362 657 363 Face 1310 362 449 657 Face 1311 366 658 14 Face 1312 366 167 658 Face 1313 954 659 341 Face 1314 267 97 659 Face 1315 499 660 156 Face 1316 499 247 660 Face 1317 369 661 25 Face 1318 369 584 661 Face 1319 356 662 25 Face 1320 356 503 662 Face 1321 139 663 185 Face 1322 909 239 663 Face 1323 121 664 517 Face 1324 121 501 664 Face 1325 147 665 839 Face 1326 147 795 665 Face 1327 187 666 367 Face 1328 187 517 666 Face 1329 531 667 934 Face 1330 531 352 667 Face 1331 197 668 375 Face 1332 197 64 668 Face 1333 144 669 437 Face 1334 144 477 669 Face 1335 183 670 813 Face 1336 183 751 914 Face 1337 257 671 562 Face 1338 257 69 671 Face 1339 224 672 3 Face 1340 717 169 672 Face 1341 232 673 941 Face 1342 232 528 673 Face 1343 97 674 659 Face 1344 97 482 674 Face 1345 970 675 436 Face 1346 422 150 675 Face 1347 442 676 967 Face 1348 442 110 676 Face 1349 66 677 825 Face 1350 66 819 677 Face 1351 256 678 549 Face 1352 256 430 678 Face 1353 342 679 812 Face 1354 342 126 679 Face 1355 9 680 821 Face 1356 9 597 680 Face 1357 76 681 362 Face 1358 705 612 681 Face 1359 508 682 832 Face 1360 508 284 682 Face 1361 739 683 515 Face 1362 308 155 683 Face 1363 491 684 605 Face 1364 491 987 684 Face 1365 363 685 394 Face 1366 363 657 850 Face 1367 232 686 479 Face 1368 232 118 686 Face 1369 367 687 187 Face 1370 367 119 687 Face 1371 689 688 883 Face 1372 485 67 688 Face 1373 485 689 974 Face 1374 485 688 689 Face 1375 346 690 177 Face 1376 346 994 690 Face 1377 391 691 907 Face 1378 391 507 691 Face 1379 205 692 511 Face 1380 205 559 692 Face 1381 80 693 266 Face 1382 80 222 693 Face 1383 234 694 651 Face 1384 234 669 694 Face 1385 360 695 594 Face 1386 360 361 695 Face 1387 169 696 38 Face 1388 169 204 696 Face 1389 401 697 402 Face 1390 698 930 697 Face 1391 401 698 697 Face 1392 401 152 698 Face 1393 950 699 43 Face 1394 325 174 699 Face 1395 158 700 784 Face 1396 158 590 700 Face 1397 174 701 851 Face 1398 967 676 701 Face 1399 367 702 302 Face 1400 367 666 702 Face 1401 388 703 295 Face 1402 949 513 703 Face 1403 135 704 598 Face 1404 135 503 704 Face 1405 76 705 681 Face 1406 76 237 705 Face 1407 143 706 581 Face 1408 973 144 706 Face 1409 257 707 748 Face 1410 257 111 707 Face 1411 405 708 823 Face 1412 405 190 708 Face 1413 315 709 3 Face 1414 315 625 709 Face 1415 501 710 664 Face 1416 501 918 710 Face 1417 402 711 167 Face 1418 402 930 711 Face 1419 234 712 437 Face 1420 234 651 712 Face 1421 608 713 457 Face 1422 608 105 713 Face 1423 165 714 521 Face 1424 165 399 958 Face 1425 35 715 487 Face 1426 963 924 715 Face 1427 441 716 537 Face 1428 441 527 716 Face 1429 224 717 672 Face 1430 224 392 717 Face 1431 66 718 140 Face 1432 66 270 718 Face 1433 720 719 55 Face 1434 293 524 719 Face 1435 293 720 115 Face 1436 293 719 720 Face 1437 172 721 328 Face 1438 172 67 721 Face 1439 544 722 298 Face 1440 544 776 722 Face 1441 414 723 552 Face 1442 414 558 723 Face 1443 179 724 987 Face 1444 179 875 724 Face 1445 799 725 128 Face 1446 29 198 725 Face 1447 113 726 460 Face 1448 113 647 726 Face 1449 393 727 509 Face 1450 393 380 727 Face 1451 131 728 813 Face 1452 131 358 728 Face 1453 254 729 114 Face 1454 254 36 729 Face 1455 46 730 596 Face 1456 46 454 730 Face 1457 354 731 162 Face 1458 354 186 731 Face 1459 101 732 951 Face 1460 101 686 732 Face 1461 93 733 864 Face 1462 93 908 733 Face 1463 26 734 313 Face 1464 26 384 734 Face 1465 222 735 494 Face 1466 222 519 735 Face 1467 91 736 425 Face 1468 91 338 736 Face 1469 73 737 798 Face 1470 73 417 737 Face 1471 285 738 117 Face 1472 844 959 738 Face 1473 308 739 79 Face 1474 308 683 739 Face 1475 160 740 824 Face 1476 160 587 740 Face 1477 142 741 943 Face 1478 142 591 741 Face 1479 219 742 779 Face 1480 219 359 742 Face 1481 305 743 868 Face 1482 767 560 743 Face 1483 276 744 100 Face 1484 276 400 744 Face 1485 493 745 650 Face 1486 493 110 745 Face 1487 332 746 901 Face 1488 332 968 746 Face 1489 370 747 369 Face 1490 370 859 747 Face 1491 586 748 707 Face 1492 586 279 748 Face 1493 244 995 483 Face 1494 244 314 749 Face 1495 189 750 526 Face 1496 189 989 750 Face 1497 609 751 210 Face 1498 609 83 751 Face 1499 45 752 443 Face 1500 45 621 752 Face 1501 60 753 427 Face 1502 60 458 753 Face 1503 190 754 708 Face 1504 190 592 754 Face 1505 268 755 792 Face 1506 268 768 960 Face 1507 375 756 374 Face 1508 375 668 756 Face 1509 445 757 78 Face 1510 445 960 757 Face 1511 349 758 306 Face 1512 349 833 758 Face 1513 81 759 869 Face 1514 81 275 759 Face 1515 167 760 488 Face 1516 167 711 760 Face 1517 139 761 266 Face 1518 139 185 761 Face 1519 166 762 84 Face 1520 166 230 762 Face 1521 85 763 196 Face 1522 85 566 763 Face 1523 150 764 607 Face 1524 150 471 764 Face 1525 314 765 749 Face 1526 314 313 765 Face 1527 64 766 600 Face 1528 64 197 766 Face 1529 305 767 743 Face 1530 305 429 767 Face 1531 130 768 268 Face 1532 130 957 768 Face 1533 294 769 923 Face 1534 294 388 769 Face 1535 186 770 731 Face 1536 186 1002 770 Face 1537 404 771 471 Face 1538 404 21 771 Face 1539 387 772 743 Face 1540 387 386 772 Face 1541 774 773 60 Face 1542 459 23 773 Face 1543 459 774 500 Face 1544 459 773 774 Face 1545 253 775 791 Face 1546 776 544 775 Face 1547 253 776 775 Face 1548 253 16 776 Face 1549 60 777 500 Face 1550 60 847 777 Face 1551 38 778 169 Face 1552 38 272 778 Face 1553 321 779 14 Face 1554 321 219 779 Face 1555 192 780 623 Face 1556 192 963 780 Face 1557 412 781 370 Face 1558 412 135 781 Face 1559 783 782 245 Face 1560 456 55 782 Face 1561 456 783 124 Face 1562 456 782 783 Face 1563 19 784 429 Face 1564 19 158 784 Face 1565 136 785 598 Face 1566 136 615 785 Face 1567 171 786 87 Face 1568 171 616 786 Face 1569 788 787 508 Face 1570 788 481 787 Face 1571 98 788 508 Face 1572 98 629 788 Face 1573 364 789 13 Face 1574 364 451 789 Face 1575 260 790 52 Face 1576 260 193 790 Face 1577 100 791 368 Face 1578 100 849 791 Face 1579 5 792 528 Face 1580 907 268 792 Face 1581 104 793 193 Face 1582 104 610 793 Face 1583 49 794 280 Face 1584 49 162 794 Face 1585 796 795 903 Face 1586 211 75 795 Face 1587 211 796 883 Face 1588 211 795 796 Face 1589 420 797 313 Face 1590 420 27 797 Face 1591 351 798 36 Face 1592 351 73 798 Face 1593 29 799 170 Face 1594 29 725 799 Face 1595 395 800 634 Face 1596 395 826 800 Face 1597 1 801 196 Face 1598 1 316 801 Face 1599 141 802 831 Face 1600 141 384 802 Face 1601 284 803 361 Face 1602 284 424 803 Face 1603 267 804 97 Face 1604 267 99 804 Face 1605 520 805 399 Face 1606 520 509 805 Face 1607 406 806 251 Face 1608 406 631 806 Face 1609 226 807 993 Face 1610 226 218 807 Face 1611 78 808 445 Face 1612 78 218 808 Face 1613 495 809 181 Face 1614 495 460 809 Face 1615 472 810 108 Face 1616 472 216 810 Face 1617 578 812 390 Face 1618 578 433 811 Face 1619 811 812 578 Face 1620 811 342 812 Face 1621 209 813 728 Face 1622 209 939 813 Face 1623 236 814 191 Face 1624 236 630 814 Face 1625 451 815 809 Face 1626 451 364 815 Face 1627 138 816 877 Face 1628 138 867 816 Face 1629 384 817 217 Face 1630 384 141 817 Face 1631 20 945 82 Face 1632 20 609 818 Face 1633 279 819 237 Face 1634 279 586 819 Face 1635 498 820 551 Face 1636 498 273 820 Face 1637 155 821 39 Face 1638 155 9 821 Face 1639 182 822 94 Face 1640 182 379 822 Face 1641 137 823 490 Face 1642 137 405 823 Face 1643 487 824 740 Face 1644 487 62 824 Face 1645 580 825 376 Face 1646 580 895 825 Face 1647 514 826 609 Face 1648 514 800 826 Face 1649 331 827 90 Face 1650 331 599 827 Face 1651 829 828 622 Face 1652 152 401 828 Face 1653 152 829 280 Face 1654 152 828 829 Face 1655 955 830 154 Face 1656 505 554 830 Face 1657 242 831 802 Face 1658 242 952 831 Face 1659 98 832 403 Face 1660 98 508 832 Face 1661 95 833 85 Face 1662 95 758 833 Face 1663 516 834 654 Face 1664 516 470 834 Face 1665 17 835 327 Face 1666 17 526 835 Face 1667 296 836 533 Face 1668 296 991 836 Face 1669 624 837 208 Face 1670 624 243 837 Face 1671 229 838 228 Face 1672 229 678 838 Face 1673 440 839 665 Face 1674 440 536 839 Face 1675 255 840 502 Face 1676 255 616 840 Face 1677 434 853 433 Face 1678 434 523 841 Face 1679 173 842 527 Face 1680 173 808 842 Face 1681 134 843 869 Face 1682 134 556 843 Face 1683 285 844 738 Face 1684 285 890 844 Face 1685 320 845 176 Face 1686 320 632 845 Face 1687 845 846 246 Face 1688 845 40 846 Face 1689 932 847 60 Face 1690 546 649 847 Face 1691 77 848 550 Face 1692 882 685 848 Face 1693 464 849 241 Face 1694 464 177 849 Face 1695 685 850 848 Face 1696 685 363 850 Face 1697 297 851 301 Face 1698 297 43 851 Face 1699 337 852 515 Face 1700 337 216 852 Face 1701 841 853 434 Face 1702 841 342 853 Face 1703 195 854 882 Face 1704 195 841 854 Face 1705 250 855 56 Face 1706 250 413 855 Face 1707 323 856 615 Face 1708 323 503 856 Face 1709 63 857 507 Face 1710 63 745 857 Face 1711 213 858 142 Face 1712 213 71 858 Face 1713 38 859 370 Face 1714 38 696 859 Face 1715 273 860 167 Face 1716 273 498 860 Face 1717 327 861 431 Face 1718 327 913 861 Face 1719 383 862 104 Face 1720 383 900 862 Face 1721 307 863 216 Face 1722 307 575 863 Face 1723 639 864 401 Face 1724 639 93 864 Face 1725 125 865 215 Face 1726 125 985 865 Face 1727 890 866 844 Face 1728 18 942 866 Face 1729 439 867 138 Face 1730 439 446 867 Face 1731 227 868 772 Face 1732 227 535 868 Face 1733 555 869 133 Face 1734 555 134 869 Face 1735 178 870 371 Face 1736 178 873 870 Face 1737 178 871 450 Face 1738 178 371 871 Face 1739 56 872 175 Face 1740 56 635 872 Face 1741 44 873 403 Face 1742 44 870 873 Face 1743 148 874 300 Face 1744 148 53 874 Face 1745 255 875 179 Face 1746 255 112 875 Face 1747 149 876 648 Face 1748 149 601 876 Face 1749 277 877 816 Face 1750 277 762 877 Face 1751 294 878 677 Face 1752 294 923 878 Face 1753 509 879 805 Face 1754 509 727 879 Face 1755 40 880 846 Face 1756 40 631 880 Face 1757 467 881 51 Face 1758 467 675 881 Face 1759 77 882 848 Face 1760 77 195 882 Face 1761 568 883 286 Face 1762 568 689 883 Face 1763 21 884 548 Face 1764 21 514 884 Face 1765 693 885 935 Face 1766 693 494 885 Face 1767 277 886 84 Face 1768 277 816 886 Face 1769 249 887 532 Face 1770 249 579 887 Face 1771 300 888 149 Face 1772 300 874 888 Face 1773 235 889 483 Face 1774 235 598 889 Face 1775 18 890 446 Face 1776 18 866 890 Face 1777 54 891 623 Face 1778 54 473 891 Face 1779 87 892 448 Face 1780 87 372 892 Face 1781 81 893 545 Face 1782 81 972 893 Face 1783 295 894 304 Face 1784 295 512 894 Face 1785 269 895 418 Face 1786 269 825 895 Face 1787 57 896 157 Face 1788 57 608 896 Face 1789 401 897 828 Face 1790 401 864 897 Face 1791 386 898 772 Face 1792 386 494 898 Face 1793 230 899 229 Face 1794 230 166 899 Face 1795 444 900 103 Face 1796 444 862 900 Face 1797 69 901 671 Face 1798 69 577 901 Face 1799 41 902 562 Face 1800 41 695 902 Face 1801 147 903 795 Face 1802 911 259 903 Face 1803 556 904 843 Face 1804 556 53 904 Face 1805 233 905 602 Face 1806 233 686 905 Face 1807 180 906 497 Face 1808 983 605 906 Face 1809 5 907 792 Face 1810 5 391 907 Face 1811 220 908 466 Face 1812 220 733 908 Face 1813 139 909 663 Face 1814 139 266 909 Face 1815 194 910 836 Face 1816 194 449 910 Face 1817 147 911 903 Face 1818 147 536 911 Face 1819 312 912 102 Face 1820 312 282 912 Face 1821 72 913 572 Face 1822 72 176 913 Face 1823 670 914 32 Face 1824 670 183 914 Face 1825 410 915 255 Face 1826 410 449 915 Face 1827 475 916 567 Face 1828 475 517 916 Face 1829 448 917 642 Face 1830 448 892 917 Face 1831 302 918 177 Face 1832 302 702 918 Face 1833 918 919 710 Face 1834 918 702 919 Face 1835 339 920 683 Face 1836 339 810 920 Face 1837 483 921 235 Face 1838 483 971 921 Face 1839 324 922 88 Face 1840 324 56 922 Face 1841 304 923 769 Face 1842 304 565 923 Face 1843 318 924 192 Face 1844 318 377 924 Face 1845 495 925 96 Face 1846 495 181 925 Face 1847 502 926 518 Face 1848 502 840 926 Face 1849 469 927 22 Face 1850 469 470 927 Face 1851 70 928 441 Face 1852 70 444 928 Face 1853 240 929 307 Face 1854 240 505 929 Face 1855 288 930 698 Face 1856 288 711 930 Face 1857 594 931 62 Face 1858 594 41 931 Face 1859 546 932 287 Face 1860 546 847 932 Face 1861 6 933 489 Face 1862 6 170 933 Face 1863 466 934 667 Face 1864 466 90 934 Face 1865 334 935 885 Face 1866 334 358 935 Face 1867 178 936 873 Face 1868 178 4 936 Face 1869 50 937 660 Face 1870 50 435 937 Face 1871 52 938 611 Face 1872 52 790 938 Face 1873 21 939 771 Face 1874 21 548 939 Face 1875 71 940 858 Face 1876 71 326 940 Face 1877 942 941 866 Face 1878 118 232 941 Face 1879 118 942 573 Face 1880 118 941 942 Face 1881 249 943 636 Face 1882 249 532 943 Face 1883 461 944 822 Face 1884 461 33 944 Face 1885 818 945 20 Face 1886 818 395 945 Face 1887 214 946 54 Face 1888 214 423 946 Face 1889 106 947 157 Face 1890 106 72 947 Face 1891 508 948 284 Face 1892 508 787 948 Face 1893 388 949 703 Face 1894 388 586 949 Face 1895 325 950 275 Face 1896 325 699 950 Face 1897 382 951 617 Face 1898 382 101 951 Face 1899 9 952 15 Face 1900 9 409 952 Face 1901 334 953 656 Face 1902 334 885 953 Face 1903 267 954 99 Face 1904 267 659 954 Face 1905 505 955 929 Face 1906 505 830 955 Face 1907 46 956 454 Face 1908 957 691 956 Face 1909 46 957 956 Face 1910 46 596 957 Face 1911 714 958 496 Face 1912 714 165 958 Face 1913 181 959 274 Face 1914 181 815 959 Face 1915 755 960 445 Face 1916 755 268 960 Face 1917 582 961 271 Face 1918 582 89 961 Face 1919 97 962 482 Face 1920 97 542 962 Face 1921 35 963 715 Face 1922 35 423 963 Face 1923 265 964 184 Face 1924 985 476 964 Face 1925 49 965 466 Face 1926 49 829 965 Face 1927 270 966 489 Face 1928 270 269 966 Face 1929 174 967 701 Face 1930 174 132 967 Face 1931 416 968 332 Face 1932 416 61 968 Face 1933 767 969 560 Face 1934 767 534 969 Face 1935 422 970 151 Face 1936 422 675 970 Face 1937 319 971 483 Face 1938 319 154 971 Face 1939 212 972 81 Face 1940 212 480 972 Face 1941 143 973 706 Face 1942 143 477 973 Face 1943 652 974 689 Face 1944 652 633 974 Face 1945 413 975 855 Face 1946 413 999 975 Face 1947 573 976 462 Face 1948 573 439 976 Face 1949 289 977 760 Face 1950 289 529 977 Face 1951 303 978 30 Face 1952 979 793 978 Face 1953 303 979 978 Face 1954 303 448 979 Face 1955 290 980 961 Face 1956 290 344 980 Face 1957 126 981 416 Face 1958 126 342 981 Face 1959 24 982 250 Face 1960 24 579 982 Face 1961 180 983 906 Face 1962 180 491 983 Face 1963 75 984 262 Face 1964 75 614 984 Face 1965 265 985 964 Face 1966 265 865 985 Face 1967 436 986 970 Face 1968 436 82 986 Face 1969 333 987 92 Face 1970 333 34 987 Face 1971 20 988 525 Face 1972 20 82 988 Face 1973 153 989 189 Face 1974 153 500 989 Face 1975 368 990 276 Face 1976 368 473 990 Face 1977 537 991 296 Face 1978 537 716 991 Face 1979 278 992 160 Face 1980 993 807 992 Face 1981 278 993 992 Face 1982 278 396 993 Face 1983 329 994 650 Face 1984 329 71 994 Face 1985 749 995 244 Face 1986 749 765 995 Face 1987 64 996 668 Face 1988 64 525 996 Face 1989 360 997 361 Face 1990 360 203 997 Face 1991 250 998 24 Face 1992 250 56 998 Face 1993 1000 999 314 Face 1994 1001 975 999 Face 1995 129 1000 244 Face 1996 1001 999 1000 Face 1997 129 1001 1000 Face 1998 129 292 1001 Face 1999 89 1002 301 Face 2000 89 241 1002 ================================================ FILE: models/gg1k_noinfo.m ================================================ # |||||Created using: # ||||| Filtermesh gameguy.poly.m.gz -rmcomp 0 -ge # |||||(Timing on cpu=sgi host=squiggle) # ||||| (_readmesh: 3.47) # |||||Removed 0 mesh components # |||||Removed 1 isolated vertices # ||||| (_rmcomponents: 0.30) # |||||Genus: c=8 b=3 v=11044 f=11608 e=22639 genus=0 sharpe=2895 cuspv=0 # ||||| (Filtermesh: 4.17) # ||||Created using: # |||| Filtermesh gameguy.orig.poly.m -genus -fixvertices -fixfaces -genus # |||| -rmcomp 0 -genus -assign_normals -removekey sharp -renormalizenor -triang # |||| -genus -nice # ||||(Timing on cpu=sgi host=squiggle) # |||| (_readmesh: 2.57) # ||||Genus: c=8 b=3 v=11044 f=11608 e=22639 genus=0 sharpe=2895 cuspv=0 # ||||Fixed 0 vertices # ||||Fixed 0 faces # ||||Genus: c=8 b=3 v=11044 f=11608 e=22639 genus=0 sharpe=2895 cuspv=0 # ||||Removed 0 mesh components # |||| (_rmcomponents: 0.27) # ||||Genus: c=8 b=3 v=11044 f=11608 e=22639 genus=0 sharpe=2895 cuspv=0 # ||||Renormalized 1417 normals # ||||Found 10368 faces to triangulate # ||||Sfverts: (10368 ) 4:4 av=4 sd=0 # ||||Genus: c=8 b=3 v=21412 f=42712 e=64111 genus=0 sharpe=2895 cuspv=0 # |||| (Filtermesh: 20.95) # |||Created on 2000/10/19 02:12:51 using: # ||| MeshSimplify data\gameguy.orig.m -prog data\gameguy.prog -simplify # |||(Timing on cpu=x86 host=hhoppe1) # ||| (_readmesh: 1.73) # ||| # |||Found 0 materials with existing matid (0 empty) # |||Found 19 materials without existing matid # |||nmaterials=19 # |||Found 0/0 existing wid's # ||| (_parsemesh: 2.87) # |||PM: bounding box -14.2166 -45.2821 -8.95316 14.2166 24.1069 5.69717 # |||parameters: diam=69.389 fitcol=0 colfac=0 fitnor=0 norfac=0.02 # |||Setting number of random points to 42712 # |||Created 42712 random points # |||Created 21412 points at vertices # |||perimeter_ratio=43.7528 # |||mesh_area=4723.77 mesh_elen=3007.11 enp=44317 # |||Created 49415 points on sharp edges # ||| (_sample_pts: 0.78) # |||INITIAL : v=21412 f=42712 e=64111 (sha=3427: bnd=86 dis=663 sca=3341) # ||| fdist(64124): rms=0 (0.000%) max=0 (0.000% of bbox) # ||| edist(49415): rms=0 (0.000%) max=0 (0.000% of bbox) # ||| fnordist(61039): rms=0 max=0 # |||PM: nvertices=21412 nwedges=25095 nfaces=42712 # |||Stop. No more good edge collapses. # |||it 65832, pq 57/57 nf=35 (-863) eval=8362 notbest=306 # |||Finished optimization. |pq|=57/57tot min=1e+030 # |||Operations successful: 21377/65832 (32.5%) # ||| (_simplify: 242.37) # |||PM: necols=21377 # |||FINAL : v=35 f=35 e=57 (sha=40: bnd=9 dis=6 sca=31) # ||| fdist(64124): rms=3.13543 (4.519%) max=10.2238 (14.734% of bbox) # ||| edist(49415): rms=4.28855 (6.180%) max=14.6527 (21.117% of bbox) # ||| fnordist(61039): rms=1.16333 max=1.99999 # |||number of retired edge points: 18852/49415 # |||simplification rate: 174.76 faces/sec # ||| (MeshSimplify: 244.20) # |||Summary of statistics: # |||Snproj: (320522 ) 1:6.92308 av=2.13992 sd=0.474138 # |||Sfit_nf: (320522 ) 1:32 av=8.56144 sd=1.99284 # |||Sfit_nfp: (320522 ) 2:22703 av=88.1927 sd=366.726 # |||Sfit_nep: (320522 ) 0:17397 av=46.3602 sd=212.527 # |||Seretire: (11037 ) 1:1 av=1 sd=0 # |||Sminii0: (21377 ) 0:2 av=1.17224 sd=0.531995 # |||Sminii1: (21377 ) 0:2 av=1.19947 sd=0.522397 # |||Sres_npnor: (21377 ) 0.0545094:1 av=0.793789 sd=0.27937 # |||Sres_nnor: (21377 ) 0:1 av=0.669231 sd=0.288593 # |||Sres_ufrac: (9799 )3.87823e-016:0.999001 av=0.395284 sd=0.359686 # |||Sres_uni: (21377 ) 0:14.6527 av=0.0843463 sd=0.466847 # |||Sres_dir: (21377 )1.33336e-007:21.777 av=0.135897 sd=0.552151 # |||Serecompute:(21377 ) 2:56 av=13.9238 sd=6.3533 # |||Snotbest: (42840 ) -267402:-2.98023e-008 av=-18.9213 sd=1352.46 # |||Seoretire: (201 ) 1:1 av=1 sd=0 # |||Summary of warnings: # ||| 108 'assertw1(r!=rwid_v1 && r!=rwid_v2)' # ||| 415 'Edge collapse offends sharp edges (c)' # ||| 413 'Edge collapse offends sharp edges (b)' # ||| 385 'Edge collapse offends sharp edges (a)' # ||| 221 'Edge collapse would squash dart' # ||| 10577 'Edge collapse would fragment wedge around vt' # ||| 16835 'Edge collapse would fragment wedge around vs' # ||Created on 2000/10/19 02:17:03 using: # || Filterprog -fbase data\gameguy.base.m -fprog data\gameguy.rprog -pm_encode # ||Found 19 materials # ||(Timing on cpu=x86 host=hhoppe1) # || (_read_mesh: 0.00) # ||Read Genus: c=8 b=3 v=35 f=35 e=57 genus=0 # || (_parse_mesh: 0.00) # |Created on 2004/04/26 10:45:33 using: # | C:\cygwin\home\Zoe\hh_src\bin\filterpm.exe gameguy.pm -nfaces 990 -outmesh # |Mesh vspli=478 nv=513 nw=1370 nf=990 # |(Timing on cpu=x86-L6-R0806 host=BUTTERCUP) # | (_goto: 0.02) # Created on 2004/04/26 10:52:49 using: # C:\cygwin\home\Zoe\hh_src\bin\filtermesh.exe gameguy1k.m -removeinfo # -outmesh # (Timing on cpu=x86-L6-R0806 host=BUTTERCUP) # (_readmesh: 0.05) Vertex 1 -14.3756 -3.86579 -3.23286 Vertex 2 -13.2439 -3.91144 -0.885273 Vertex 3 -11.38 -13.9645 0.0900178 Vertex 4 -8.91671 1.21805 -2.35035 Vertex 5 -4.47238 -40.1122 -5.88958 Vertex 6 -8.85841 -27.1986 -2.76198 Vertex 7 -6.78819 -40.8417 -4.09376 Vertex 8 -4.67008 -40.3637 -0.63966 Vertex 9 -3.53316 12.8103 -5.35875 Vertex 10 -3.02809 20.0013 0.844792 Vertex 11 -2.82287 18.6263 -1.60159 Vertex 12 -3.01367 17.7145 1.2887 Vertex 13 -2.73716 19.0044 1.75517 Vertex 14 -0.469166 17.8877 2.18496 Vertex 15 -0.107195 -13.4529 -1.25434 Vertex 16 0.553317 17.8158 2.13775 Vertex 17 -0.423777 22.3887 -4.40757 Vertex 18 -0.519603 19.5374 2.55552 Vertex 19 -0.449372 22.1147 -3.77166 Vertex 20 -0.265169 20.7487 2.59592 Vertex 21 0.465971 22.1166 -3.57536 Vertex 22 3.09147 21.7398 -2.01515 Vertex 23 1.58847 20.9125 2.06635 Vertex 24 2.88241 -40.9391 -2.90416 Vertex 25 4.67776 -40.3574 -0.640785 Vertex 26 3.60592 -12.1766 -6.42527 Vertex 27 6.33745 -41.0823 -4.36244 Vertex 28 5.83857 -3.68003 -2.3413 Vertex 29 9.01707 -45.1664 1.25431 Vertex 30 10.4942 -4.21631 -6.03063 Vertex 31 10.5201 -11.0639 -0.283056 Vertex 32 11.1957 -11.88 -4.10927 Vertex 33 12.2469 6.70295 -4.09403 Vertex 34 13.2817 -3.92108 -1.13676 Vertex 35 12.7806 -10.7257 -0.0248846 Vertex 36 1.60227 -25.8483 -3.68468 Vertex 37 3.19915 -19.9026 -8.04036 Vertex 38 -5.74414 -9.09098 3.62068 Vertex 39 3.71204 4.51603 -5.07813 Vertex 40 1.59413 -2.23107 4.59981 Vertex 41 4.95612 13.3753 1.50445 Vertex 42 0.0255721 -11.5215 -6.19993 Vertex 43 -7.03703 -25.7952 -0.958151 Vertex 44 -7.7972 -25.6443 -5.36473 Vertex 45 -3.20875 -19.9696 -8.04827 Vertex 46 8.71316 -23.8758 -3.30307 Vertex 47 8.43853 10.9651 1.19992 Vertex 48 6.70002 -27.4077 -5.98977 Vertex 49 2.28712 -27.5692 -4.95154 Vertex 50 2.55963 -27.5138 -1.27044 Vertex 51 -6.15246 -3.6521 0.852204 Vertex 52 -5.2093 -26.3061 -0.185329 Vertex 53 -3.21772 -27.7598 -1.23922 Vertex 54 4.65216 -3.68285 3.03718 Vertex 55 -5.50245 8.61698 -5.8071 Vertex 56 6.79197 4.43467 2.80853 Vertex 57 -9.09049 10.3008 -6.11475 Vertex 58 11.861 -15.8749 -1.32812 Vertex 59 12.6217 11.3726 -1.77157 Vertex 60 3.76464 -26.6899 -0.624774 Vertex 61 3.08744 -41.76 -2.32265 Vertex 62 -10.9788 -11.919 -4.13411 Vertex 63 0.431407 -21.5928 -3.49675 Vertex 64 -13.0277 -11.8973 -4.17459 Vertex 65 -7.99633 -27.441 -3.1367 Vertex 66 -3.39355 -27.5916 -0.470344 Vertex 67 -5.61097 -27.4824 -6.45225 Vertex 68 -8.48785 -21.8375 -6.49986 Vertex 69 6.84195 -33.4223 -5.75951 Vertex 70 6.01745 -20.9654 2.19932 Vertex 71 -4.7936 14.2461 -4.04019 Vertex 72 -4.88496 -45.1493 1.94048 Vertex 73 7.06733 -12.9287 -4.09001 Vertex 74 -9.34854 -19.6317 -7.22713 Vertex 75 4.49077 -45.147 2.16304 Vertex 76 -6.92067 6.74884 3.92207 Vertex 77 2.95397 18.4084 1.40374 Vertex 78 2.76088 16.1922 0.291452 Vertex 79 8.21877 -22.1618 -5.85489 Vertex 80 -8.76955 -45.1057 1.21356 Vertex 81 -4.63867 -42.7311 2.14056 Vertex 82 -1.94656 -24.0149 -1.47212 Vertex 83 -5.75305 -22.5081 0.458318 Vertex 84 7.97193 -42.45 0.670428 Vertex 85 4.83439 13.988 -4.23019 Vertex 86 3.31231 8.03903 -6.21989 Vertex 87 5.9943 -25.7229 -6.96552 Vertex 88 0.797721 -20.1169 -0.22535 Vertex 89 1.6087 -31.7839 -2.58458 Vertex 90 -1.55881 -22.2687 -3.26737 Vertex 91 6.18661 -0.845176 -2.61884 Vertex 92 1.6151 -0.836443 4.40002 Vertex 93 -6.53572 -34.4405 -5.21055 Vertex 94 -2.57878 -34.4995 -4.28208 Vertex 95 2.00812 13.314 -3.08167 Vertex 96 -2.42918 11.7076 2.08088 Vertex 97 -2.42366 7.6682 5.20465 Vertex 98 3.41875 10.0465 3.09367 Vertex 99 -11.739 -15.3713 -0.352731 Vertex 100 5.72929 -42.238 2.45997 Vertex 101 -7.29942 -12.8749 -4.04507 Vertex 102 -3.15595 0.697216 -4.2926 Vertex 103 -6.48659 -45.1302 -3.77581 Vertex 104 -4.97235 -26.0512 -0.433961 Vertex 105 -6.61742 -33.3746 -5.7795 Vertex 106 -7.89975 -42.3459 0.693461 Vertex 107 -2.5893 -40.3255 -3.87004 Vertex 108 -5.37622 -34.4109 -1.22053 Vertex 109 -0.737907 -20.1444 -0.23733 Vertex 110 7.5345 -34.4759 -4.56786 Vertex 111 6.76447 -24.0753 -0.461546 Vertex 112 5.48115 -34.372 -1.29755 Vertex 113 10.9132 -21.3063 -2.75801 Vertex 114 7.74883 14.1504 -2.16018 Vertex 115 6.17288 4.436 -1.70674 Vertex 116 -1.50669 -13.4105 2.79943 Vertex 117 3.06274 -9.32939 3.70347 Vertex 118 2.65081 -34.4506 -2.8018 Vertex 119 6.51399 -45.1258 -3.68446 Vertex 120 3.18591 -40.5901 -4.72335 Vertex 121 -1.68174 0.58044 4.57488 Vertex 122 -10.9643 -21.0857 -3.50677 Vertex 123 11.4039 -15.9248 -2.3348 Vertex 124 -11.261 -15.6566 -2.61278 Vertex 125 13.0673 -15.2295 0.0786137 Vertex 126 -4.47765 -45.2508 -6.1586 Vertex 127 6.63577 12.4643 0.0323712 Vertex 128 -8.79098 -42.9974 4.66667 Vertex 129 8.80888 -43.0476 4.53862 Vertex 130 -3.09614 -3.66914 3.53702 Vertex 131 -6.15941 10.5971 0.702008 Vertex 132 8.04161 -10.8871 -0.233885 Vertex 133 -3.66187 4.50165 -4.77031 Vertex 134 -7.08084 -40.6214 -2.68282 Vertex 135 3.666 -24.1057 -6.4596 Vertex 136 -7.9537 -10.9145 -0.238715 Vertex 137 2.47491 17.762 -1.40003 Vertex 138 -6.02166 -19.8563 -8.95316 Vertex 139 -0.463176 14.0194 1.18818 Vertex 140 2.8887 0.585479 -4.13139 Vertex 141 -6.59962 0.644756 -0.590611 Vertex 142 -12.7744 -14.8201 0.996438 Vertex 143 -3.09106 13.0124 -4.73222 Vertex 144 2.4435 13.5703 -3.67427 Vertex 145 -5.531 14.2679 0.473959 Vertex 146 -3.42512 10.0537 3.11058 Vertex 147 7.72529 12.113 -5.65334 Vertex 148 1.59209 -3.67108 4.15208 Vertex 149 -7.53631 6.94121 0.899117 Vertex 150 5.86885 -2.25298 -2.35069 Vertex 151 -6.24203 -2.2286 -2.27831 Vertex 152 5.93429 -19.9993 -9.07709 Vertex 153 5.7261 -25.8031 -0.296686 Vertex 154 8.47914 -25.6395 -3.11499 Vertex 155 4.47122 -45.1719 -6.24002 Vertex 156 -1.17173 17.1573 -2.55651 Vertex 157 3.11084 20.2514 -0.691003 Vertex 158 2.66361 15.7842 -2.10565 Vertex 159 -10.8785 -10.7338 -0.0840734 Vertex 160 -8.53912 11.1171 1.53787 Vertex 161 -6.28373 4.4227 -1.75889 Vertex 162 -0.506383 16.7541 -4.57973 Vertex 163 -5.89251 -23.9683 -7.05218 Vertex 164 -2.70621 -25.7568 -0.815913 Vertex 165 -5.57892 -24.0322 -0.214216 Vertex 166 -12.3933 11.4951 -1.44295 Vertex 167 -2.61229 15.76 -0.392426 Vertex 168 -1.60633 13.6167 -3.61937 Vertex 169 -2.25346 17.3066 3.25616 Vertex 170 -8.98303 -23.9008 -3.37477 Vertex 171 -0.0267003 18.9728 4.23535 Vertex 172 5.63897 -2.23954 2.23951 Vertex 173 4.8538 0.597422 3.18119 Vertex 174 9.44212 -19.5581 -7.25077 Vertex 175 0.185489 17.0108 4.04399 Vertex 176 -0.68781 18.2147 4.0791 Vertex 177 5.39274 14.8879 -1.82191 Vertex 178 1.26906 6.64179 4.95521 Vertex 179 2.43591 11.6988 2.04618 Vertex 180 -1.66747 -3.72614 4.41861 Vertex 181 6.30821 6.43149 -3.23734 Vertex 182 -2.17404 -22.3054 -1.53296 Vertex 183 8.60454 -27.4104 -3.2481 Vertex 184 2.00335 -22.3393 -1.46902 Vertex 185 -0.0428739 15.1913 -3.76675 Vertex 186 1.56421 -13.1418 -4.99122 Vertex 187 3.53885 -22.345 -6.69216 Vertex 188 5.34759 -41.3062 -5.63136 Vertex 189 -3.5756 -22.3378 -6.99728 Vertex 190 7.29627 -45.1703 6.1637 Vertex 191 -11.9469 -15.6676 0.0868933 Vertex 192 -10.3493 -16.7385 -0.883825 Vertex 193 9.06301 -22.1404 -2.9656 Vertex 194 0.0671864 -11.3429 3.00671 Vertex 195 -6.07416 -0.858909 -2.69275 Vertex 196 -5.2596 -0.856364 3.25982 Vertex 197 -0.344442 16.0371 4.0537 Vertex 198 0.48701 18.4413 4.7826 Vertex 199 6.46457 0.601901 -0.615321 Vertex 200 -3.62678 -12.2026 -6.40516 Vertex 201 -1.57007 -13.1388 -5.00301 Vertex 202 11.2086 -13.902 -0.0182479 Vertex 203 9.9777 -13.4804 0.0594021 Vertex 204 10.4507 -12.6906 0.890886 Vertex 205 5.75373 14.98 -1.83337 Vertex 206 2.40959 14.9223 -1.60803 Vertex 207 -4.7141 -45.113 3.03504 Vertex 208 -7.67643 13.3366 -2.10941 Vertex 209 -3.01154 -3.63053 -4.18981 Vertex 210 -1.61328 -3.67005 4.45599 Vertex 211 7.80167 3.8649 -2.87842 Vertex 212 -2.46078 23.434 -0.915151 Vertex 213 -9.96955 -13.6985 0.0673184 Vertex 214 -11.4245 -13.4966 0.981417 Vertex 215 9.7391 -14.766 1.69886 Vertex 216 10.4198 -15.0698 0.800294 Vertex 217 -2.7417 20.51 2.12796 Vertex 218 -0.297685 22.9223 -3.22114 Vertex 219 -9.13924 -45.1543 3.89635 Vertex 220 0.788815 19.1476 3.47622 Vertex 221 9.24968 -45.0265 3.91617 Vertex 222 -6.83743 -21.6209 1.48569 Vertex 223 -8.7786 -22.1165 -3.14273 Vertex 224 10.4885 -15.6505 -0.165509 Vertex 225 3.10144 17.7064 0.687963 Vertex 226 10.9385 -15.8433 1.10084 Vertex 227 5.76742 -23.8845 -6.51121 Vertex 228 7.96545 -24.0598 -5.19847 Vertex 229 -3.4344 -33.6756 -6.30944 Vertex 230 11.4452 -4.11524 -0.417455 Vertex 231 -9.86212 -14.7495 0.594899 Vertex 232 -2.42567 14.0404 -3.7514 Vertex 233 -2.42638 14.7589 -1.74606 Vertex 234 -12.5394 -15.943 -3.2349 Vertex 235 -3.20845 -41.3997 -2.19886 Vertex 236 -3.12005 18.2288 0.477592 Vertex 237 12.8682 -15.3864 -1.97822 Vertex 238 -5.54572 14.9932 -1.81168 Vertex 239 -5.28082 12.7677 1.23061 Vertex 240 -10.2534 -15.1959 1.54779 Vertex 241 -9.83152 7.47547 0.998434 Vertex 242 9.6596 -15.2593 -0.377026 Vertex 243 -6.14921 6.34786 -3.32253 Vertex 244 10.0743 -15.45 -0.930346 Vertex 245 10.7828 -16.5664 -1.13941 Vertex 246 10.4032 -15.6136 -1.56439 Vertex 247 10.337 -16.5185 0.035071 Vertex 248 10.3911 -16.7625 -0.840373 Vertex 249 -9.67045 -15.2557 -0.381187 Vertex 250 -10.4667 -4.18221 -5.95056 Vertex 251 6.38373 -17.8161 3.2247 Vertex 252 6.83854 -21.6283 1.52196 Vertex 253 -8.79661 -4.34314 -3.10476 Vertex 254 6.47291 0.497568 -2.55739 Vertex 255 8.44782 -26.7392 -3.04318 Vertex 256 -0.805906 19.0986 3.54303 Vertex 257 -5.99592 14.9067 -1.78669 Vertex 258 1.03181 22.2243 -4.88045 Vertex 259 -1.24761 24.0838 -5.01933 Vertex 260 0.497667 19.7347 3.87302 Vertex 261 6.75785 -41.313 -3.59836 Vertex 262 1.55865 15.2424 -3.07351 Vertex 263 -11.2668 -15.6924 -3.1959 Vertex 264 6.2067 11.8692 -5.23609 Vertex 265 5.90355 9.28167 -5.45022 Vertex 266 7.8395 7.9292 1.61577 Vertex 267 6.26645 5.84336 -2.28328 Vertex 268 7.72849 7.39629 0.492568 Vertex 269 8.15777 9.2822 1.27036 Vertex 270 -6.4042 0.518582 -2.52912 Vertex 271 -4.49816 0.56696 -3.76974 Vertex 272 9.86774 4.45845 0.378865 Vertex 273 2.61794 7.48456 5.33562 Vertex 274 4.75219 13.1103 1.32747 Vertex 275 5.76402 14.0761 0.388149 Vertex 276 -2.6385 -41.0544 -4.15349 Vertex 277 -10.8804 -15.8958 1.09368 Vertex 278 -10.4932 -16.7504 0.756744 Vertex 279 -6.10843 -17.9846 3.23821 Vertex 280 11.1671 -15.697 -3.29266 Vertex 281 10.6988 -16.7401 -2.51587 Vertex 282 11.0226 -15.7049 -2.09582 Vertex 283 -2.22753 0.58253 -4.67741 Vertex 284 4.45101 0.576486 -3.76615 Vertex 285 -1.53248 21.0373 3.94259 Vertex 286 3.14715 20.374 0.281674 Vertex 287 0.666898 -2.22909 -5.07337 Vertex 288 -3.20942 20.3826 -0.519061 Vertex 289 3.37912 19.3735 -1.38891 Vertex 290 -9.15441 -22.1505 -4.96108 Vertex 291 -5.91452 0.583607 1.46832 Vertex 292 -4.75134 0.615275 2.8742 Vertex 293 -10.7998 -15.6223 -1.99221 Vertex 294 1.32789 17.2138 -2.3369 Vertex 295 1.35602 -24.0283 -3.27478 Vertex 296 2.73045 20.6664 2.21294 Vertex 297 2.89495 -45.1392 -3.34183 Vertex 298 4.76837e-007 -13.0514 -4.14164 Vertex 299 3.94848 -33.6744 -6.36867 Vertex 300 -3.8254 -25.857 -6.11806 Vertex 301 7.40407 -27.5338 -1.58272 Vertex 302 5.52771 -42.0502 1.69122 Vertex 303 1.60348 -22.2673 -3.26493 Vertex 304 2.00594 7.82099 4.60025 Vertex 305 -3.16275 -45.1691 -3.43199 Vertex 306 -2.87529 17.8751 -0.732915 Vertex 307 0.649269 17.2509 -2.68754 Vertex 308 1.94641 17.4604 -1.92872 Vertex 309 -2.4961 17.6403 -1.28536 Vertex 310 -10.8167 -15.6511 -1.151 Vertex 311 -6.57619 12.8345 -4.75827 Vertex 312 -5.99647 10.1211 -5.50901 Vertex 313 10.5233 -16.7412 0.743841 Vertex 314 12.686 -14.821 0.997522 Vertex 315 -0.369117 15.6815 -6.06674 Vertex 316 -0.998756 19.9313 3.97706 Vertex 317 -2.66303 18.5675 3.1131 Vertex 318 2.46237 16.3795 2.67145 Vertex 319 0.420899 13.3324 1.05624 Vertex 320 1.14255 16.559 -4.82995 Vertex 321 4.62733 -45.1553 3.0071 Vertex 322 6.125 6.82661 -3.18355 Vertex 323 6.75103 6.53033 -1.44494 Vertex 324 -1.52187 -27.5156 -3.29634 Vertex 325 -10.8549 -16.5556 -2.03259 Vertex 326 -0.314657 -21.5995 -3.73165 Vertex 327 -9.55496 -15.537 -1.5397 Vertex 328 4.79059 -39.7889 -0.900656 Vertex 329 -3.31456 19.0478 -1.00156 Vertex 330 -4.62825 -39.8446 -1.20104 Vertex 331 12.8852 -11.833 -3.96571 Vertex 332 -0.679708 17.7741 4.07388 Vertex 333 -2.5112 0.545159 5.30526 Vertex 334 -0.870999 22.7244 -4.05673 Vertex 335 -9.46168 -15.8051 0.796728 Vertex 336 -12.7447 -10.7742 -0.305666 Vertex 337 8.18027 -42.5835 1.41097 Vertex 338 8.40012 -45.1573 0.373238 Vertex 339 -5.5639 9.99164 -3.63261 Vertex 340 3.0336 12.9396 -4.38648 Vertex 341 12.4454 -12.9836 0.444387 Vertex 342 11.7474 -13.5065 0.983589 Vertex 343 9.27921 -15.9483 -0.422304 Vertex 344 9.42178 -16.2864 0.169574 Vertex 345 8.76873 -15.6991 0.0715745 Vertex 346 0.897081 18.0401 3.84769 Vertex 347 12.5588 -15.7014 -3.39348 Vertex 348 10.7175 -16.6802 -2.05073 Vertex 349 10.1002 -15.2172 -1.78344 Vertex 350 -4.3019 -3.70344 2.73797 Vertex 351 6.08431 -45.0643 -4.48447 Vertex 352 0.826881 -12.8119 2.05513 Vertex 353 -10.0599 -15.4023 -0.137505 Vertex 354 -10.873 -14.7914 0.357585 Vertex 355 -10.3545 -15.7175 0.788234 Vertex 356 -10.5049 -15.8896 0.150517 Vertex 357 -10.6144 -15.1098 -0.953431 Vertex 358 -6.24319 -44.9055 -4.42387 Vertex 359 -9.53459 -14.5261 1.48751 Vertex 360 -8.69963 -15.7938 0.041062 Vertex 361 9.5767 -15.6762 0.999151 Vertex 362 -10.3291 -16.5343 0.0133891 Vertex 363 -4.83232 -43.2689 2.92905 Vertex 364 -3.17283 -40.8785 -5.42335 Vertex 365 -0.0326753 23.0461 -2.76806 Vertex 366 -10.5548 -16.6295 -2.74489 Vertex 367 9.46939 -15.9416 0.248589 Vertex 368 10.8069 -14.8523 0.15662 Vertex 369 10.4491 -15.8623 0.433111 Vertex 370 -0.736323 -11.923 2.85594 Vertex 371 -0.0758101 -13.0023 0.423076 Vertex 372 0.85238 23.5635 -3.43904 Vertex 373 -1.74077 19.6832 3.1359 Vertex 374 -3.29336 19.4324 -1.41036 Vertex 375 2.09948 19.3311 2.64264 Vertex 376 -5.16687 4.55425 4.83498 Vertex 377 3.45873 -31.8071 -6.72568 Vertex 378 4.75988 -43.2371 2.8958 Vertex 379 5.74669 8.44477 -3.06635 Vertex 380 -4.16978 -0.819194 -4.36776 Vertex 381 -11.0278 -21.2912 -2.73216 Vertex 382 -8.37255 -26.837 -2.96613 Vertex 383 -4.4583 -40.9059 -6.16189 Vertex 384 0.688528 20.4019 4.21256 Vertex 385 4.44212 -40.9597 -5.99721 Vertex 386 2.82426 -40.7071 -5.11122 Vertex 387 4.195 -39.9232 -6.01059 Vertex 388 1.3914 19.1464 -4.53703 Vertex 389 -7.66757 13.8088 -2.7484 Vertex 390 -2.15506 11.6116 0.0740766 Vertex 391 3.54141 19.9218 -0.391527 Vertex 392 -8.38023 -45.1597 0.393699 Vertex 393 -3.24852 20.2247 -1.88136 Vertex 394 10.9949 -21.0838 -3.49705 Vertex 395 -7.32166 -45.1748 5.91531 Vertex 396 2.83606 18.5675 1.9227 Vertex 397 -1.79034 19.0641 3.53123 Vertex 398 10.0934 -15.2641 -2.65495 Vertex 399 2.88924 18.2704 -0.990787 Vertex 400 -8.10151 -22.0554 -5.57651 Vertex 401 1.37854 -9.09172 3.82407 Vertex 402 1.62025 -3.66876 4.42299 Vertex 403 3.0271 -3.66973 3.43257 Vertex 404 2.90024 -21.6697 -7.221 Vertex 405 0.560838 17.5063 4.33783 Vertex 406 -10.4419 -15.642 -1.79093 Vertex 407 -10.621 -16.5456 -2.06651 Vertex 408 0 -0.833921 -4.72918 Vertex 409 9.8327 -19.6247 -6.22246 Vertex 410 -6.09235 -22.3913 -0.272462 Vertex 411 3.12272 -45.2782 -5.55673 Vertex 412 -7.8456 13.5431 -1.28205 Vertex 413 -0.885883 -12.5154 2.57181 Vertex 414 4.85203 4.4344 4.40576 Vertex 415 11.8558 6.32746 -1.46537 Vertex 416 -3.10513 -45.279 -5.55937 Vertex 417 -1.7023 -33.3913 -3.33368 Vertex 418 -10.071 -15.1503 -1.86829 Vertex 419 -11.6852 -14.8569 -2.39004 Vertex 420 -9.73209 -19.6686 -6.22341 Vertex 421 -3.09014 -21.6247 -7.09353 Vertex 422 -1.77809 19.1789 2.77135 Vertex 423 -1.90761 -24.0693 -4.91285 Vertex 424 -2.0624 14.8835 2.5245 Vertex 425 3.14715 18.5633 -0.629971 Vertex 426 4.27768 -3.65811 -3.69995 Vertex 427 -8.11148 -42.2545 1.44054 Vertex 428 -12.819 -4.03705 -5.8605 Vertex 429 1.73457 20.1469 3.72136 Vertex 430 2.07982 -32.4758 -3.03414 Vertex 431 1.58374 -3.66501 -4.38958 Vertex 432 2.35549 -3.67029 -4.60815 Vertex 433 -3.08527 -3.68338 -4.53036 Vertex 434 -5.92834 -3.66995 -2.37695 Vertex 435 -5.71109 -3.63324 -2.41677 Vertex 436 -4.76022 -2.25611 2.90123 Vertex 437 -1.29697 6.63658 4.84261 Vertex 438 -2.00594 7.82099 4.60024 Vertex 439 13.7017 -3.97233 -5.49777 Vertex 440 1.86509 16.865 3.16475 Vertex 441 -5.95337 6.29254 -3.33579 Vertex 442 -7.36906 7.13952 -0.0530487 Vertex 443 0.975867 19.2132 3.75327 Vertex 444 -3.20339 18.9612 -0.0699999 Vertex 445 -10.7479 -11.775 -0.201597 Vertex 446 11.7325 -14.8192 -2.2833 Vertex 447 -2.95964 0.682067 -5.12913 Vertex 448 9.51242 -14.5452 0.663688 Vertex 449 9.66232 -15.4943 -1.59704 Vertex 450 -10.0995 -15.2945 -2.61538 Vertex 451 2.12817 7.85028 4.98224 Vertex 452 0.185614 15.1996 4.34446 Vertex 453 -0.550938 17.8907 4.57309 Vertex 454 -0.532349 16.6752 -4.61403 Vertex 455 0.0644774 -13.4405 -1.27604 Vertex 456 -0.0122783 -13.328 -1.96628 Vertex 457 -2.54326 15.4932 -2.39773 Vertex 458 -1.84796 19.462 2.4057 Vertex 459 -12.3411 -15.996 -1.22073 Vertex 460 -10.7674 -16.5911 -1.15188 Vertex 461 -3.60535 -45.1077 -2.34667 Vertex 462 -11.2037 -14.624 -0.283627 Vertex 463 6.62741 -26.2697 -0.654005 Vertex 464 5.09683 0.767747 3.44614 Vertex 465 2.44924 11.6349 -0.149674 Vertex 466 -12.2974 -12.9983 0.408601 Vertex 467 -10.3696 -12.8888 1.07322 Vertex 468 3.70485 -45.164 -2.32336 Vertex 469 1.79834 23.4578 1.66485 Vertex 470 3.03262 19.7534 -2.32247 Vertex 471 2.47135 19.0172 3.32158 Vertex 472 -3.39281 20.2955 -0.475583 Vertex 473 -5.16555 -31.9494 -7.51525 Vertex 474 5.0855 -0.854968 2.93104 Vertex 475 8.8179 -21.6007 -6.06545 Vertex 476 3.44543 0.822696 -4.44519 Vertex 477 0.988584 19.2259 3.30935 Vertex 478 -13.0011 -15.2128 0.188336 Vertex 479 -0.756925 19.5665 3.4105 Vertex 480 6.05225 -22.2642 -0.00249332 Vertex 481 4.77409 -44.9331 1.98304 Vertex 482 2.96342 0.798396 -4.86362 Vertex 483 3.08814 19.3017 0.0694577 Vertex 484 -13.762 -3.86161 -3.6504 Vertex 485 -3.0478 21.2282 -1.45188 Vertex 486 -1.05943 16.4705 -2.69848 Vertex 487 -2.42576 13.2844 -3.40238 Vertex 488 8.83169 9.16849 1.79297 Vertex 489 8.61003 -4.34742 -4.403 Vertex 490 0.5127 13.7323 3.45682 Vertex 491 3.4543 -24.0162 -0.461967 Vertex 492 0.462463 17.9246 4.35236 Vertex 493 2.14619 -25.7474 -1.62407 Vertex 494 -1.82672 16.4913 2.79769 Vertex 495 9.47657 6.57277 -5.69194 Vertex 496 9.77556 -16.0658 -1.12065 Vertex 497 10.9797 -14.8563 -1.19923 Vertex 498 -1.71357 -25.7669 -3.74938 Vertex 499 1.19771 24.1053 -4.82298 Vertex 500 -1.93894 16.6495 -3.93417 Vertex 501 6.50885 -40.4057 -1.52082 Vertex 502 6.99561 -40.6767 -2.82018 Vertex 503 -11.4504 -4.11521 -0.375108 Vertex 504 0.987748 19.6746 3.234 Vertex 505 -0.754679 -21.524 -3.04537 Vertex 506 -9.53379 -16.0122 -0.332581 Vertex 507 11.1701 -14.6158 -0.236384 Vertex 508 5.50706 7.81729 -5.36651 Vertex 509 11.4575 -14.948 -0.521878 Vertex 510 11.0284 -14.7384 -0.823083 Vertex 511 11.3469 -15.4245 -0.168961 Vertex 512 -6.97535 6.25243 -1.62884 Vertex 513 3.25664 20.3206 -0.701967 Face 1 54 251 132 Face 2 62 253 159 Face 3 470 158 388 Face 4 13 397 20 Face 5 388 315 17 Face 6 393 11 288 Face 7 218 485 365 Face 8 470 388 218 Face 9 19 17 454 Face 10 217 10 12 Face 11 139 319 78 Face 12 11 374 288 Face 13 23 443 396 Face 14 439 34 35 Face 15 331 32 30 Face 16 439 331 30 Face 17 31 489 30 Face 18 32 31 30 Face 19 35 230 31 Face 20 32 347 280 Face 21 59 33 147 Face 22 159 253 503 Face 23 234 459 478 Face 24 428 166 57 Face 25 338 75 119 Face 26 24 328 60 Face 27 84 338 119 Face 28 337 129 29 Face 29 103 461 72 Face 30 105 5 6 Face 31 6 330 52 Face 32 6 5 7 Face 33 401 180 194 Face 34 38 116 350 Face 35 114 264 85 Face 36 117 251 54 Face 37 455 37 63 Face 38 186 37 455 Face 39 154 48 87 Face 40 26 42 426 Face 41 298 15 201 Face 42 283 284 91 Face 43 447 133 39 Face 44 160 76 239 Face 45 161 141 376 Face 46 414 178 376 Face 47 56 266 47 Face 48 38 381 222 Face 49 209 431 42 Face 50 65 43 44 Face 51 116 38 279 Face 52 200 74 101 Face 53 200 45 138 Face 54 15 45 201 Face 55 15 109 505 Face 56 26 174 152 Face 57 132 251 113 Face 58 275 114 205 Face 59 273 56 47 Face 60 36 49 50 Face 61 36 87 48 Face 62 48 49 36 Face 63 48 377 49 Face 64 154 301 48 Face 65 154 153 301 Face 66 101 435 200 Face 67 38 350 51 Face 68 107 52 330 Face 69 104 6 52 Face 70 107 53 52 Face 71 107 5 229 Face 72 28 54 132 Face 73 28 172 54 Face 74 149 441 76 Face 75 9 86 55 Face 76 91 474 172 Face 77 199 115 56 Face 78 512 131 241 Face 79 339 250 57 Face 80 202 226 314 Face 81 202 32 58 Face 82 489 211 30 Face 83 415 33 59 Face 84 27 183 328 Face 85 255 430 60 Face 86 24 61 25 Face 87 387 188 120 Face 88 250 62 64 Face 89 250 253 62 Face 90 295 303 187 Face 91 88 455 63 Face 92 503 336 159 Face 93 2 1 336 Face 94 67 65 44 Face 95 66 43 65 Face 96 498 324 300 Face 97 164 43 66 Face 98 324 67 300 Face 99 94 108 93 Face 100 163 290 189 Face 101 44 43 170 Face 102 27 69 183 Face 103 27 299 69 Face 104 111 480 184 Face 105 111 193 480 Face 106 96 238 145 Face 107 9 311 71 Face 108 81 72 235 Face 109 106 103 392 Face 110 26 73 174 Face 111 26 28 73 Face 112 68 138 45 Face 113 122 101 420 Face 114 25 302 84 Face 115 25 61 75 Face 116 196 291 195 Face 117 196 92 121 Face 118 286 77 225 Face 119 212 10 217 Face 120 137 78 95 Face 121 137 157 289 Face 122 193 113 480 Face 123 46 227 79 Face 124 72 392 103 Face 125 207 363 128 Face 126 106 81 8 Face 127 427 128 363 Face 128 189 423 163 Face 129 182 83 82 Face 130 165 83 170 Face 131 165 82 83 Face 132 502 84 119 Face 133 501 25 84 Face 134 9 85 264 Face 135 96 179 144 Face 136 266 181 268 Face 137 39 133 86 Face 138 135 87 36 Face 139 228 46 87 Face 140 70 88 184 Face 141 70 117 88 Face 142 387 299 27 Face 143 24 60 89 Face 144 189 90 82 Face 145 45 15 326 Face 146 150 91 172 Face 147 150 287 91 Face 148 56 464 199 Face 149 414 333 464 Face 150 67 93 65 Face 151 67 473 93 Face 152 324 473 67 Face 153 66 108 94 Face 154 12 167 139 Face 155 444 306 167 Face 156 143 232 340 Face 157 143 238 232 Face 158 178 437 76 Face 159 98 96 146 Face 160 304 98 438 Face 161 41 205 177 Face 162 3 99 62 Face 163 277 142 278 Face 164 75 302 25 Face 165 321 29 190 Face 166 38 136 381 Face 167 38 51 136 Face 168 408 283 91 Face 169 195 291 141 Face 170 5 358 7 Face 171 126 305 358 Face 172 53 104 52 Face 173 53 382 104 Face 174 53 105 382 Face 175 53 107 417 Face 176 7 134 8 Face 177 7 103 134 Face 178 8 107 330 Face 179 305 416 276 Face 180 65 108 66 Face 181 65 93 108 Face 182 279 109 116 Face 183 83 182 109 Face 184 301 110 48 Face 185 112 118 110 Face 186 36 295 135 Face 187 36 50 493 Face 188 301 112 110 Face 189 50 118 112 Face 190 79 394 193 Face 191 409 73 394 Face 192 47 114 275 Face 193 269 323 114 Face 194 39 115 254 Face 195 39 86 115 Face 196 15 371 109 Face 197 352 401 194 Face 198 456 352 194 Face 199 455 88 352 Face 200 49 118 50 Face 201 49 377 118 Face 202 468 119 75 Face 203 386 385 155 Face 204 297 386 411 Face 205 61 24 120 Face 206 376 333 414 Face 207 376 141 292 Face 208 68 122 420 Face 209 223 222 381 Face 210 58 245 237 Face 211 58 32 280 Face 212 62 263 64 Face 213 62 99 124 Face 214 331 347 32 Face 215 35 204 341 Face 216 383 126 358 Face 217 383 364 126 Face 218 59 488 415 Face 219 59 147 127 Face 220 80 128 427 Face 221 80 395 219 Face 222 100 129 337 Face 223 378 321 190 Face 224 40 210 402 Face 225 40 51 210 Face 226 57 389 339 Face 227 57 166 389 Face 228 73 132 394 Face 229 73 28 132 Face 230 441 161 76 Face 231 55 86 133 Face 232 106 134 103 Face 233 106 8 134 Face 234 187 135 295 Face 235 187 79 227 Face 236 101 136 51 Face 237 101 122 136 Face 238 11 306 374 Face 239 158 470 137 Face 240 74 138 68 Face 241 74 200 138 Face 242 471 440 318 Face 243 332 169 175 Face 244 39 482 447 Face 245 39 254 476 Face 246 102 270 133 Face 247 283 195 271 Face 248 336 466 467 Face 249 64 234 478 Face 250 9 143 85 Face 251 9 71 143 Face 252 85 340 177 Face 253 85 143 340 Face 254 97 239 76 Face 255 146 96 145 Face 256 97 146 145 Face 257 438 98 146 Face 258 495 147 33 Face 259 495 379 147 Face 260 54 403 117 Face 261 54 172 402 Face 262 160 149 76 Face 263 208 243 442 Face 264 28 150 172 Face 265 426 287 150 Face 266 433 287 432 Face 267 51 436 151 Face 268 187 152 79 Face 269 37 26 152 Face 270 111 153 154 Face 271 295 36 493 Face 272 46 154 87 Face 273 46 111 154 Face 274 351 155 188 Face 275 351 297 411 Face 276 307 156 185 Face 277 294 95 486 Face 278 470 513 137 Face 279 22 296 286 Face 280 185 158 308 Face 281 262 388 158 Face 282 467 445 336 Face 283 213 62 445 Face 284 257 160 239 Face 285 71 311 412 Face 286 133 161 55 Face 287 133 270 161 Face 288 500 162 320 Face 289 500 393 162 Face 290 300 163 423 Face 291 44 170 163 Face 292 423 498 300 Face 293 82 165 164 Face 294 43 165 170 Face 295 43 164 165 Face 296 241 166 484 Face 297 241 131 166 Face 298 95 168 486 Face 299 319 139 167 Face 300 390 168 465 Face 301 167 486 168 Face 302 424 169 317 Face 303 424 197 494 Face 304 290 170 83 Face 305 290 163 170 Face 306 176 171 256 Face 307 296 469 384 Face 308 40 172 474 Face 309 40 402 172 Face 310 92 173 121 Face 311 474 199 173 Face 312 475 409 394 Face 313 475 152 174 Face 314 197 175 494 Face 315 197 318 440 Face 316 471 220 440 Face 317 296 384 429 Face 318 179 206 144 Face 319 98 41 274 Face 320 273 178 414 Face 321 41 98 304 Face 322 98 179 96 Face 323 98 274 179 Face 324 210 180 148 Face 325 130 116 180 Face 326 508 181 267 Face 327 264 114 265 Face 328 90 182 82 Face 329 90 109 182 Face 330 60 463 255 Face 331 60 328 463 Face 332 63 184 88 Face 333 303 491 184 Face 334 11 309 306 Face 335 500 320 185 Face 336 26 186 42 Face 337 26 37 186 Face 338 37 404 63 Face 339 37 152 187 Face 340 27 188 387 Face 341 27 351 188 Face 342 45 189 68 Face 343 45 326 421 Face 344 129 221 29 Face 345 129 378 190 Face 346 192 191 478 Face 347 99 3 191 Face 348 99 310 124 Face 349 249 362 192 Face 350 46 193 111 Face 351 46 79 193 Face 352 370 194 180 Face 353 370 456 194 Face 354 287 380 91 Face 355 151 196 380 Face 356 436 196 151 Face 357 436 92 196 Face 358 490 452 424 Face 359 490 318 452 Face 360 176 198 171 Face 361 332 175 405 Face 362 91 199 474 Face 363 91 284 199 Face 364 42 200 209 Face 365 201 45 200 Face 366 42 201 200 Face 367 42 298 201 Face 368 342 202 314 Face 369 203 32 202 Face 370 342 215 216 Face 371 31 32 203 Face 372 31 204 35 Face 373 31 203 204 Face 374 85 205 114 Face 375 85 177 205 Face 376 274 206 179 Face 377 177 144 206 Face 378 72 207 80 Face 379 72 81 207 Face 380 160 208 442 Face 381 160 257 412 Face 382 435 209 200 Face 383 51 151 434 Face 384 130 210 51 Face 385 130 180 210 Face 386 272 211 34 Face 387 127 147 379 Face 388 22 469 296 Face 389 22 218 365 Face 390 467 213 445 Face 391 3 62 213 Face 392 3 214 142 Face 393 3 231 240 Face 394 203 215 204 Face 395 343 344 345 Face 396 202 216 203 Face 397 202 342 216 Face 398 458 422 256 Face 399 285 212 217 Face 400 19 258 21 Face 401 393 485 218 Face 402 128 219 395 Face 403 128 80 219 Face 404 198 346 171 Face 405 405 175 346 Face 406 190 221 129 Face 407 190 29 221 Face 408 410 222 223 Face 409 279 38 222 Face 410 68 223 122 Face 411 290 83 223 Face 412 58 511 202 Face 413 248 125 247 Face 414 78 225 77 Face 415 399 137 289 Face 416 511 226 202 Face 417 369 367 368 Face 418 135 228 87 Face 419 135 187 227 Face 420 227 228 135 Face 421 227 46 228 Face 422 105 229 5 Face 423 105 53 417 Face 424 34 230 35 Face 425 34 211 230 Face 426 213 231 3 Face 427 359 240 360 Face 428 96 233 238 Face 429 96 144 487 Face 430 487 233 96 Face 431 232 238 233 Face 432 263 234 64 Face 433 407 460 234 Face 434 8 235 107 Face 435 8 81 235 Face 436 12 236 167 Face 437 12 10 236 Face 438 341 237 35 Face 439 125 58 237 Face 440 71 238 143 Face 441 257 145 238 Face 442 145 239 97 Face 443 145 257 239 Face 444 214 240 359 Face 445 214 3 240 Face 446 2 241 484 Face 447 2 4 241 Face 448 224 247 125 Face 449 244 248 242 Face 450 55 243 312 Face 451 55 161 441 Face 452 224 507 242 Face 453 224 248 244 Face 454 123 246 58 Face 455 348 237 245 Face 456 496 449 348 Face 457 245 58 246 Face 458 242 247 224 Face 459 242 248 247 Face 460 58 248 224 Face 461 58 125 248 Face 462 357 249 192 Face 463 462 362 249 Face 464 428 250 64 Face 465 428 57 250 Face 466 70 251 117 Face 467 252 113 251 Face 468 70 252 251 Face 469 480 113 252 Face 470 4 253 250 Face 471 4 2 253 Face 472 199 254 115 Face 473 199 284 254 Face 474 69 255 183 Face 475 69 430 255 Face 476 169 256 317 Face 477 169 176 256 Face 478 71 257 238 Face 479 71 412 257 Face 480 259 258 334 Face 481 372 21 258 Face 482 372 259 334 Face 483 372 258 499 Face 484 220 260 171 Face 485 477 471 375 Face 486 27 261 351 Face 487 27 328 261 Face 488 185 262 158 Face 489 185 388 262 Face 490 124 263 62 Face 491 124 234 293 Face 492 508 264 265 Face 493 86 9 264 Face 494 322 265 114 Face 495 181 508 265 Face 496 115 266 56 Face 497 115 508 267 Face 498 266 267 181 Face 499 266 115 267 Face 500 269 268 323 Face 501 269 266 268 Face 502 47 269 114 Face 503 47 266 269 Face 504 141 271 195 Face 505 141 161 270 Face 506 270 271 141 Face 507 270 102 271 Face 508 127 488 59 Face 509 127 379 488 Face 510 275 273 47 Face 511 41 304 451 Face 512 177 274 41 Face 513 177 206 274 Face 514 41 275 205 Face 515 41 451 275 Face 516 107 276 383 Face 517 107 235 276 Face 518 3 277 356 Face 519 3 142 277 Face 520 191 278 142 Face 521 353 354 335 Face 522 410 279 222 Face 523 83 109 279 Face 524 281 280 347 Face 525 123 58 280 Face 526 123 281 347 Face 527 123 280 282 Face 528 281 349 398 Face 529 281 123 282 Face 530 102 283 271 Face 531 447 140 283 Face 532 140 284 283 Face 533 476 254 284 Face 534 171 316 256 Face 535 384 469 285 Face 536 157 286 391 Face 537 513 22 286 Face 538 151 287 433 Face 539 151 380 287 Face 540 10 288 236 Face 541 485 393 288 Face 542 391 289 157 Face 543 225 399 425 Face 544 68 400 223 Face 545 68 189 400 Face 546 121 291 196 Face 547 333 376 292 Face 548 291 292 141 Face 549 291 121 292 Face 550 366 325 234 Face 551 263 124 293 Face 552 137 308 158 Face 553 137 95 294 Face 554 491 295 493 Face 555 491 303 295 Face 556 77 296 375 Face 557 77 286 296 Face 558 468 297 119 Face 559 468 120 297 Face 560 186 298 42 Face 561 186 455 298 Face 562 89 299 387 Face 563 430 69 299 Face 564 44 300 67 Face 565 44 163 300 Face 566 50 301 153 Face 567 50 112 301 Face 568 100 302 481 Face 569 100 84 302 Face 570 63 303 184 Face 571 63 187 303 Face 572 178 304 437 Face 573 178 451 304 Face 574 235 305 276 Face 575 461 103 305 Face 576 156 306 309 Face 577 156 167 306 Face 578 294 307 185 Face 579 294 486 307 Face 580 294 308 137 Face 581 294 185 308 Face 582 185 457 500 Face 583 185 156 309 Face 584 192 310 99 Face 585 460 407 327 Face 586 55 311 9 Face 587 55 312 311 Face 588 208 312 243 Face 589 208 311 312 Face 590 125 313 511 Face 591 314 226 313 Face 592 125 314 313 Face 593 125 237 341 Face 594 454 315 320 Face 595 454 17 315 Face 596 285 316 384 Face 597 285 217 316 Face 598 217 317 373 Face 599 217 12 317 Face 600 78 318 490 Face 601 78 77 318 Face 602 95 465 168 Face 603 95 78 319 Face 604 388 320 315 Face 605 388 185 320 Face 606 481 321 100 Face 607 481 29 321 Face 608 323 322 114 Face 609 181 265 322 Face 610 181 323 268 Face 611 181 322 323 Face 612 66 324 164 Face 613 66 94 324 Face 614 419 418 450 Face 615 293 234 325 Face 616 505 326 15 Face 617 90 189 326 Face 618 406 327 407 Face 619 310 460 327 Face 620 25 328 24 Face 621 25 501 328 Face 622 444 329 306 Face 623 444 472 329 Face 624 7 330 6 Face 625 7 8 330 Face 626 35 331 439 Face 627 35 237 331 Face 628 176 453 198 Face 629 176 169 332 Face 630 121 333 292 Face 631 121 173 333 Face 632 19 334 258 Face 633 19 218 334 Face 634 278 335 277 Face 635 278 353 335 Face 636 64 336 1 Face 637 64 466 336 Face 638 84 337 29 Face 639 84 100 337 Face 640 29 338 84 Face 641 29 481 338 Face 642 512 339 131 Face 643 512 250 339 Face 644 144 340 232 Face 645 144 177 340 Face 646 314 341 342 Face 647 314 125 341 Face 648 204 342 341 Face 649 204 215 342 Face 650 448 343 345 Face 651 448 216 343 Face 652 216 344 343 Face 653 216 215 344 Face 654 215 345 344 Face 655 215 448 345 Face 656 220 346 440 Face 657 220 171 346 Face 658 237 347 331 Face 659 237 123 347 Face 660 123 348 246 Face 661 123 237 348 Face 662 282 349 281 Face 663 446 398 349 Face 664 130 350 116 Face 665 130 51 350 Face 666 119 351 261 Face 667 119 297 351 Face 668 117 352 88 Face 669 117 401 352 Face 670 356 353 278 Face 671 356 354 353 Face 672 277 355 356 Face 673 277 335 355 Face 674 354 355 335 Face 675 354 356 355 Face 676 191 356 278 Face 677 191 3 356 Face 678 462 357 192 Face 679 462 249 357 Face 680 103 358 305 Face 681 103 7 358 Face 682 213 359 231 Face 683 213 467 359 Face 684 231 506 240 Face 685 231 359 360 Face 686 226 361 313 Face 687 226 369 361 Face 688 191 362 462 Face 689 191 192 362 Face 690 81 363 207 Face 691 81 106 363 Face 692 276 364 383 Face 693 276 416 364 Face 694 212 365 485 Face 695 212 22 365 Face 696 263 366 234 Face 697 263 293 366 Face 698 313 367 369 Face 699 313 361 367 Face 700 361 368 367 Face 701 361 369 368 Face 702 511 369 226 Face 703 511 313 369 Face 704 413 370 180 Face 705 116 109 371 Face 706 370 371 456 Face 707 370 413 371 Face 708 218 372 334 Face 709 218 21 372 Face 710 479 458 256 Face 711 316 217 373 Face 712 329 374 306 Face 713 329 472 374 Face 714 429 375 296 Face 715 504 477 375 Face 716 76 376 178 Face 717 76 161 376 Face 718 110 377 48 Face 719 110 118 377 Face 720 100 378 129 Face 721 100 321 378 Face 722 211 379 495 Face 723 211 272 379 Face 724 195 380 196 Face 725 408 91 380 Face 726 122 381 136 Face 727 122 223 381 Face 728 6 382 105 Face 729 6 104 382 Face 730 5 383 358 Face 731 5 107 383 Face 732 171 384 316 Face 733 171 260 384 Face 734 188 385 386 Face 735 188 155 385 Face 736 120 386 297 Face 737 120 188 386 Face 738 24 387 120 Face 739 24 89 387 Face 740 21 388 17 Face 741 21 218 388 Face 742 131 389 166 Face 743 131 339 389 Face 744 167 390 319 Face 745 167 168 390 Face 746 483 391 286 Face 747 483 425 391 Face 748 80 392 72 Face 749 80 427 392 Face 750 19 393 218 Face 751 19 162 393 Face 752 113 394 132 Face 753 113 193 394 Face 754 207 395 80 Face 755 207 128 395 Face 756 16 396 443 Face 757 14 397 13 Face 758 14 20 397 Face 759 280 398 282 Face 760 280 281 398 Face 761 78 399 225 Face 762 78 137 399 Face 763 290 400 189 Face 764 290 223 400 Face 765 148 401 117 Face 766 148 180 401 Face 767 148 402 210 Face 768 148 54 402 Face 769 148 403 54 Face 770 148 117 403 Face 771 187 404 37 Face 772 187 63 404 Face 773 198 492 346 Face 774 198 453 492 Face 775 310 406 407 Face 776 310 327 406 Face 777 124 407 234 Face 778 124 310 407 Face 779 195 408 380 Face 780 195 283 408 Face 781 174 409 475 Face 782 174 73 409 Face 783 83 410 223 Face 784 83 279 410 Face 785 155 411 386 Face 786 155 351 411 Face 787 208 412 311 Face 788 208 160 412 Face 789 116 413 180 Face 790 116 371 413 Face 791 56 414 464 Face 792 56 273 414 Face 793 34 415 272 Face 794 34 33 415 Face 795 126 416 305 Face 796 126 364 416 Face 797 229 417 107 Face 798 229 105 417 Face 799 325 418 293 Face 800 325 450 418 Face 801 293 419 450 Face 802 293 418 419 Face 803 74 420 101 Face 804 74 68 420 Face 805 189 421 326 Face 806 189 45 421 Face 807 317 422 373 Face 808 317 256 422 Face 809 82 423 189 Face 810 82 498 423 Face 811 12 424 317 Face 812 12 139 424 Face 813 289 425 399 Face 814 289 391 425 Face 815 28 426 150 Face 816 28 26 426 Face 817 106 427 363 Face 818 106 392 427 Face 819 1 428 64 Face 820 484 166 428 Face 821 260 429 384 Face 822 504 375 429 Face 823 89 430 299 Face 824 89 60 430 Face 825 426 432 287 Face 826 426 42 431 Face 827 431 432 426 Face 828 431 209 432 Face 829 209 433 432 Face 830 209 435 433 Face 831 433 434 151 Face 832 433 435 434 Face 833 51 435 101 Face 834 51 434 435 Face 835 40 436 51 Face 836 40 92 436 Face 837 438 437 304 Face 838 97 76 437 Face 839 97 438 146 Face 840 97 437 438 Face 841 33 439 495 Face 842 33 34 439 Face 843 175 440 346 Face 844 175 197 440 Face 845 243 441 149 Face 846 243 55 441 Face 847 149 442 243 Face 848 149 160 442 Face 849 18 443 23 Face 850 18 16 443 Face 851 236 444 167 Face 852 236 288 444 Face 853 159 445 62 Face 854 159 336 445 Face 855 282 446 349 Face 856 282 398 446 Face 857 102 447 283 Face 858 102 133 447 Face 859 203 448 215 Face 860 203 216 448 Face 861 497 449 496 Face 862 246 348 449 Face 863 366 450 325 Face 864 366 293 450 Face 865 273 451 178 Face 866 273 275 451 Face 867 197 452 318 Face 868 197 424 452 Face 869 332 453 176 Face 870 332 405 453 Face 871 162 454 320 Face 872 162 19 454 Face 873 456 455 352 Face 874 456 298 455 Face 875 15 456 371 Face 876 15 298 456 Face 877 309 457 185 Face 878 309 11 457 Face 879 373 458 479 Face 880 373 422 458 Face 881 192 459 310 Face 882 192 478 459 Face 883 459 460 310 Face 884 459 234 460 Face 885 235 461 305 Face 886 235 72 461 Face 887 99 462 192 Face 888 99 191 462 Face 889 183 463 328 Face 890 183 255 463 Face 891 173 464 333 Face 892 173 199 464 Face 893 319 465 95 Face 894 319 390 465 Face 895 142 466 64 Face 896 142 214 466 Face 897 214 467 466 Face 898 214 359 467 Face 899 61 468 75 Face 900 61 120 468 Face 901 212 469 22 Face 902 212 285 469 Face 903 22 470 218 Face 904 22 513 470 Face 905 77 471 318 Face 906 77 375 471 Face 907 288 472 444 Face 908 288 374 472 Face 909 94 473 324 Face 910 94 93 473 Face 911 92 474 173 Face 912 92 40 474 Face 913 79 475 394 Face 914 79 152 475 Face 915 140 476 284 Face 916 140 39 476 Face 917 220 477 260 Face 918 220 471 477 Face 919 142 478 191 Face 920 142 64 478 Face 921 316 479 256 Face 922 316 373 479 Face 923 70 480 252 Face 924 70 184 480 Face 925 75 481 302 Face 926 75 338 481 Face 927 140 482 39 Face 928 140 447 482 Face 929 225 483 286 Face 930 225 425 483 Face 931 1 484 428 Face 932 1 2 484 Face 933 10 485 288 Face 934 10 212 485 Face 935 156 486 167 Face 936 156 307 486 Face 937 232 487 144 Face 938 232 233 487 Face 939 272 488 379 Face 940 272 415 488 Face 941 230 489 31 Face 942 230 211 489 Face 943 139 490 424 Face 944 139 78 490 Face 945 111 491 153 Face 946 111 184 491 Face 947 405 492 453 Face 948 405 346 492 Face 949 153 493 50 Face 950 153 491 493 Face 951 169 494 175 Face 952 169 424 494 Face 953 30 495 439 Face 954 30 211 495 Face 955 245 496 348 Face 956 245 246 496 Face 957 246 497 496 Face 958 246 449 497 Face 959 164 498 82 Face 960 164 324 498 Face 961 259 499 258 Face 962 259 372 499 Face 963 11 500 457 Face 964 11 393 500 Face 965 502 501 84 Face 966 261 328 501 Face 967 261 502 119 Face 968 261 501 502 Face 969 2 503 253 Face 970 2 336 503 Face 971 260 504 429 Face 972 260 477 504 Face 973 90 505 109 Face 974 90 326 505 Face 975 360 506 231 Face 976 360 240 506 Face 977 509 507 224 Face 978 510 242 507 Face 979 86 508 115 Face 980 86 264 508 Face 981 244 509 224 Face 982 510 507 509 Face 983 244 510 509 Face 984 244 242 510 Face 985 224 511 58 Face 986 224 125 511 Face 987 4 512 241 Face 988 4 250 512 Face 989 157 513 286 Face 990 157 137 513 # (_outmesh: 0.03) # (Filtermesh: 0.08) Vertex 1 -14.3756 -3.86579 -3.23286 Vertex 2 -13.2439 -3.91144 -0.885273 Vertex 3 -11.38 -13.9645 0.0900178 Vertex 4 -8.91671 1.21805 -2.35035 Vertex 5 -4.47238 -40.1122 -5.88958 Vertex 6 -8.85841 -27.1986 -2.76198 Vertex 7 -6.78819 -40.8417 -4.09376 Vertex 8 -4.67008 -40.3637 -0.63966 Vertex 9 -3.53316 12.8103 -5.35875 Vertex 10 -3.02809 20.0013 0.844792 Vertex 11 -2.82287 18.6263 -1.60159 Vertex 12 -3.01367 17.7145 1.2887 Vertex 13 -2.73716 19.0044 1.75517 Vertex 14 -0.469166 17.8877 2.18496 Vertex 15 -0.107195 -13.4529 -1.25434 Vertex 16 0.553317 17.8158 2.13775 Vertex 17 -0.423777 22.3887 -4.40757 Vertex 18 -0.519603 19.5374 2.55552 Vertex 19 -0.449372 22.1147 -3.77166 Vertex 20 -0.265169 20.7487 2.59592 Vertex 21 0.465971 22.1166 -3.57536 Vertex 22 3.09147 21.7398 -2.01515 Vertex 23 1.58847 20.9125 2.06635 Vertex 24 2.88241 -40.9391 -2.90416 Vertex 25 4.67776 -40.3574 -0.640785 Vertex 26 3.60592 -12.1766 -6.42527 Vertex 27 6.33745 -41.0823 -4.36244 Vertex 28 5.83857 -3.68003 -2.3413 Vertex 29 9.01707 -45.1664 1.25431 Vertex 30 10.4942 -4.21631 -6.03063 Vertex 31 10.5201 -11.0639 -0.283056 Vertex 32 11.1957 -11.88 -4.10927 Vertex 33 12.2469 6.70295 -4.09403 Vertex 34 13.2817 -3.92108 -1.13676 Vertex 35 12.7806 -10.7257 -0.0248846 Vertex 36 1.60227 -25.8483 -3.68468 Vertex 37 3.19915 -19.9026 -8.04036 Vertex 38 -5.74414 -9.09098 3.62068 Vertex 39 3.71204 4.51603 -5.07813 Vertex 40 1.59413 -2.23107 4.59981 Vertex 41 4.95612 13.3753 1.50445 Vertex 42 0.0255721 -11.5215 -6.19993 Vertex 43 -7.03703 -25.7952 -0.958151 Vertex 44 -7.7972 -25.6443 -5.36473 Vertex 45 -3.20875 -19.9696 -8.04827 Vertex 46 8.71316 -23.8758 -3.30307 Vertex 47 8.43853 10.9651 1.19992 Vertex 48 6.70002 -27.4077 -5.98977 Vertex 49 2.28712 -27.5692 -4.95154 Vertex 50 2.55963 -27.5138 -1.27044 Vertex 51 -6.15246 -3.6521 0.852204 Vertex 52 -5.2093 -26.3061 -0.185329 Vertex 53 -3.21772 -27.7598 -1.23922 Vertex 54 4.65216 -3.68285 3.03718 Vertex 55 -5.50245 8.61698 -5.8071 Vertex 56 6.79197 4.43467 2.80853 Vertex 57 -9.09049 10.3008 -6.11475 Vertex 58 11.861 -15.8749 -1.32812 Vertex 59 12.6217 11.3726 -1.77157 Vertex 60 3.76464 -26.6899 -0.624774 Vertex 61 3.08744 -41.76 -2.32265 Vertex 62 -10.9788 -11.919 -4.13411 Vertex 63 0.431407 -21.5928 -3.49675 Vertex 64 -13.0277 -11.8973 -4.17459 Vertex 65 -7.99633 -27.441 -3.1367 Vertex 66 -3.39355 -27.5916 -0.470344 Vertex 67 -5.61097 -27.4824 -6.45225 Vertex 68 -8.48785 -21.8375 -6.49986 Vertex 69 6.84195 -33.4223 -5.75951 Vertex 70 6.01745 -20.9654 2.19932 Vertex 71 -4.7936 14.2461 -4.04019 Vertex 72 -4.88496 -45.1493 1.94048 Vertex 73 7.06733 -12.9287 -4.09001 Vertex 74 -9.34854 -19.6317 -7.22713 Vertex 75 4.49077 -45.147 2.16304 Vertex 76 -6.92067 6.74884 3.92207 Vertex 77 2.95397 18.4084 1.40374 Vertex 78 2.76088 16.1922 0.291452 Vertex 79 8.21877 -22.1618 -5.85489 Vertex 80 -8.76955 -45.1057 1.21356 Vertex 81 -4.63867 -42.7311 2.14056 Vertex 82 -1.94656 -24.0149 -1.47212 Vertex 83 -5.75305 -22.5081 0.458318 Vertex 84 7.97193 -42.45 0.670428 Vertex 85 4.83439 13.988 -4.23019 Vertex 86 3.31231 8.03903 -6.21989 Vertex 87 5.9943 -25.7229 -6.96552 Vertex 88 0.797721 -20.1169 -0.22535 Vertex 89 1.6087 -31.7839 -2.58458 Vertex 90 -1.55881 -22.2687 -3.26737 Vertex 91 6.18661 -0.845176 -2.61884 Vertex 92 1.6151 -0.836443 4.40002 Vertex 93 -6.53572 -34.4405 -5.21055 Vertex 94 -2.57878 -34.4995 -4.28208 Vertex 95 2.00812 13.314 -3.08167 Vertex 96 -2.42918 11.7076 2.08088 Vertex 97 -2.42366 7.6682 5.20465 Vertex 98 3.41875 10.0465 3.09367 Vertex 99 -11.739 -15.3713 -0.352731 Vertex 100 5.72929 -42.238 2.45997 Vertex 101 -7.29942 -12.8749 -4.04507 Vertex 102 -3.15595 0.697216 -4.2926 Vertex 103 -6.48659 -45.1302 -3.77581 Vertex 104 -4.97235 -26.0512 -0.433961 Vertex 105 -6.61742 -33.3746 -5.7795 Vertex 106 -7.89975 -42.3459 0.693461 Vertex 107 -2.5893 -40.3255 -3.87004 Vertex 108 -5.37622 -34.4109 -1.22053 Vertex 109 -0.737907 -20.1444 -0.23733 Vertex 110 7.5345 -34.4759 -4.56786 Vertex 111 6.76447 -24.0753 -0.461546 Vertex 112 5.48115 -34.372 -1.29755 Vertex 113 10.9132 -21.3063 -2.75801 Vertex 114 7.74883 14.1504 -2.16018 Vertex 115 6.17288 4.436 -1.70674 Vertex 116 -1.50669 -13.4105 2.79943 Vertex 117 3.06274 -9.32939 3.70347 Vertex 118 2.65081 -34.4506 -2.8018 Vertex 119 6.51399 -45.1258 -3.68446 Vertex 120 3.18591 -40.5901 -4.72335 Vertex 121 -1.68174 0.58044 4.57488 Vertex 122 -10.9643 -21.0857 -3.50677 Vertex 123 11.4039 -15.9248 -2.3348 Vertex 124 -11.261 -15.6566 -2.61278 Vertex 125 13.0673 -15.2295 0.0786137 Vertex 126 -4.47765 -45.2508 -6.1586 Vertex 127 6.63577 12.4643 0.0323712 Vertex 128 -8.79098 -42.9974 4.66667 Vertex 129 8.80888 -43.0476 4.53862 Vertex 130 -3.09614 -3.66914 3.53702 Vertex 131 -6.15941 10.5971 0.702008 Vertex 132 8.04161 -10.8871 -0.233885 Vertex 133 -3.66187 4.50165 -4.77031 Vertex 134 -7.08084 -40.6214 -2.68282 Vertex 135 3.666 -24.1057 -6.4596 Vertex 136 -7.9537 -10.9145 -0.238715 Vertex 137 2.47491 17.762 -1.40003 Vertex 138 -6.02166 -19.8563 -8.95316 Vertex 139 -0.463176 14.0194 1.18818 Vertex 140 2.8887 0.585479 -4.13139 Vertex 141 -6.59962 0.644756 -0.590611 Vertex 142 -12.7744 -14.8201 0.996438 Vertex 143 -3.09106 13.0124 -4.73222 Vertex 144 2.4435 13.5703 -3.67427 Vertex 145 -5.531 14.2679 0.473959 Vertex 146 -3.42512 10.0537 3.11058 Vertex 147 7.72529 12.113 -5.65334 Vertex 148 1.59209 -3.67108 4.15208 Vertex 149 -7.53631 6.94121 0.899117 Vertex 150 5.86885 -2.25298 -2.35069 Vertex 151 -6.24203 -2.2286 -2.27831 Vertex 152 5.93429 -19.9993 -9.07709 Vertex 153 5.7261 -25.8031 -0.296686 Vertex 154 8.47914 -25.6395 -3.11499 Vertex 155 4.47122 -45.1719 -6.24002 Vertex 156 -1.17173 17.1573 -2.55651 Vertex 157 3.11084 20.2514 -0.691003 Vertex 158 2.66361 15.7842 -2.10565 Vertex 159 -10.8785 -10.7338 -0.0840734 Vertex 160 -8.53912 11.1171 1.53787 Vertex 161 -6.28373 4.4227 -1.75889 Vertex 162 -0.506383 16.7541 -4.57973 Vertex 163 -5.89251 -23.9683 -7.05218 Vertex 164 -2.70621 -25.7568 -0.815913 Vertex 165 -5.57892 -24.0322 -0.214216 Vertex 166 -12.3933 11.4951 -1.44295 Vertex 167 -2.61229 15.76 -0.392426 Vertex 168 -1.60633 13.6167 -3.61937 Vertex 169 -2.25346 17.3066 3.25616 Vertex 170 -8.98303 -23.9008 -3.37477 Vertex 171 -0.0267003 18.9728 4.23535 Vertex 172 5.63897 -2.23954 2.23951 Vertex 173 4.8538 0.597422 3.18119 Vertex 174 9.44212 -19.5581 -7.25077 Vertex 175 0.185489 17.0108 4.04399 Vertex 176 -0.68781 18.2147 4.0791 Vertex 177 5.39274 14.8879 -1.82191 Vertex 178 1.26906 6.64179 4.95521 Vertex 179 2.43591 11.6988 2.04618 Vertex 180 -1.66747 -3.72614 4.41861 Vertex 181 6.30821 6.43149 -3.23734 Vertex 182 -2.17404 -22.3054 -1.53296 Vertex 183 8.60454 -27.4104 -3.2481 Vertex 184 2.00335 -22.3393 -1.46902 Vertex 185 -0.0428739 15.1913 -3.76675 Vertex 186 1.56421 -13.1418 -4.99122 Vertex 187 3.53885 -22.345 -6.69216 Vertex 188 5.34759 -41.3062 -5.63136 Vertex 189 -3.5756 -22.3378 -6.99728 Vertex 190 7.29627 -45.1703 6.1637 Vertex 191 -11.9469 -15.6676 0.0868933 Vertex 192 -10.3493 -16.7385 -0.883825 Vertex 193 9.06301 -22.1404 -2.9656 Vertex 194 0.0671864 -11.3429 3.00671 Vertex 195 -6.07416 -0.858909 -2.69275 Vertex 196 -5.2596 -0.856364 3.25982 Vertex 197 -0.344442 16.0371 4.0537 Vertex 198 0.48701 18.4413 4.7826 Vertex 199 6.46457 0.601901 -0.615321 Vertex 200 -3.62678 -12.2026 -6.40516 Vertex 201 -1.57007 -13.1388 -5.00301 Vertex 202 11.2086 -13.902 -0.0182479 Vertex 203 9.9777 -13.4804 0.0594021 Vertex 204 10.4507 -12.6906 0.890886 Vertex 205 5.75373 14.98 -1.83337 Vertex 206 2.40959 14.9223 -1.60803 Vertex 207 -4.7141 -45.113 3.03504 Vertex 208 -7.67643 13.3366 -2.10941 Vertex 209 -3.01154 -3.63053 -4.18981 Vertex 210 -1.61328 -3.67005 4.45599 Vertex 211 7.80167 3.8649 -2.87842 Vertex 212 -2.46078 23.434 -0.915151 Vertex 213 -9.96955 -13.6985 0.0673184 Vertex 214 -11.4245 -13.4966 0.981417 Vertex 215 9.7391 -14.766 1.69886 Vertex 216 10.4198 -15.0698 0.800294 Vertex 217 -2.7417 20.51 2.12796 Vertex 218 -0.297685 22.9223 -3.22114 Vertex 219 -9.13924 -45.1543 3.89635 Vertex 220 0.788815 19.1476 3.47622 Vertex 221 9.24968 -45.0265 3.91617 Vertex 222 -6.83743 -21.6209 1.48569 Vertex 223 -8.7786 -22.1165 -3.14273 Vertex 224 10.4885 -15.6505 -0.165509 Vertex 225 3.10144 17.7064 0.687963 Vertex 226 10.9385 -15.8433 1.10084 Vertex 227 5.76742 -23.8845 -6.51121 Vertex 228 7.96545 -24.0598 -5.19847 Vertex 229 -3.4344 -33.6756 -6.30944 Vertex 230 11.4452 -4.11524 -0.417455 Vertex 231 -9.86212 -14.7495 0.594899 Vertex 232 -2.42567 14.0404 -3.7514 Vertex 233 -2.42638 14.7589 -1.74606 Vertex 234 -12.5394 -15.943 -3.2349 Vertex 235 -3.20845 -41.3997 -2.19886 Vertex 236 -3.12005 18.2288 0.477592 Vertex 237 12.8682 -15.3864 -1.97822 Vertex 238 -5.54572 14.9932 -1.81168 Vertex 239 -5.28082 12.7677 1.23061 Vertex 240 -10.2534 -15.1959 1.54779 Vertex 241 -9.83152 7.47547 0.998434 Vertex 242 9.6596 -15.2593 -0.377026 Vertex 243 -6.14921 6.34786 -3.32253 Vertex 244 10.0743 -15.45 -0.930346 Vertex 245 10.7828 -16.5664 -1.13941 Vertex 246 10.4032 -15.6136 -1.56439 Vertex 247 10.337 -16.5185 0.035071 Vertex 248 10.3911 -16.7625 -0.840373 Vertex 249 -9.67045 -15.2557 -0.381187 Vertex 250 -10.4667 -4.18221 -5.95056 Vertex 251 6.38373 -17.8161 3.2247 Vertex 252 6.83854 -21.6283 1.52196 Vertex 253 -8.79661 -4.34314 -3.10476 Vertex 254 6.47291 0.497568 -2.55739 Vertex 255 8.44782 -26.7392 -3.04318 Vertex 256 -0.805906 19.0986 3.54303 Vertex 257 -5.99592 14.9067 -1.78669 Vertex 258 1.03181 22.2243 -4.88045 Vertex 259 -1.24761 24.0838 -5.01933 Vertex 260 0.497667 19.7347 3.87302 Vertex 261 6.75785 -41.313 -3.59836 Vertex 262 1.55865 15.2424 -3.07351 Vertex 263 -11.2668 -15.6924 -3.1959 Vertex 264 6.2067 11.8692 -5.23609 Vertex 265 5.90355 9.28167 -5.45022 Vertex 266 7.8395 7.9292 1.61577 Vertex 267 6.26645 5.84336 -2.28328 Vertex 268 7.72849 7.39629 0.492568 Vertex 269 8.15777 9.2822 1.27036 Vertex 270 -6.4042 0.518582 -2.52912 Vertex 271 -4.49816 0.56696 -3.76974 Vertex 272 9.86774 4.45845 0.378865 Vertex 273 2.61794 7.48456 5.33562 Vertex 274 4.75219 13.1103 1.32747 Vertex 275 5.76402 14.0761 0.388149 Vertex 276 -2.6385 -41.0544 -4.15349 Vertex 277 -10.8804 -15.8958 1.09368 Vertex 278 -10.4932 -16.7504 0.756744 Vertex 279 -6.10843 -17.9846 3.23821 Vertex 280 11.1671 -15.697 -3.29266 Vertex 281 10.6988 -16.7401 -2.51587 Vertex 282 11.0226 -15.7049 -2.09582 Vertex 283 -2.22753 0.58253 -4.67741 Vertex 284 4.45101 0.576486 -3.76615 Vertex 285 -1.53248 21.0373 3.94259 Vertex 286 3.14715 20.374 0.281674 Vertex 287 0.666898 -2.22909 -5.07337 Vertex 288 -3.20942 20.3826 -0.519061 Vertex 289 3.37912 19.3735 -1.38891 Vertex 290 -9.15441 -22.1505 -4.96108 Vertex 291 -5.91452 0.583607 1.46832 Vertex 292 -4.75134 0.615275 2.8742 Vertex 293 -10.7998 -15.6223 -1.99221 Vertex 294 1.32789 17.2138 -2.3369 Vertex 295 1.35602 -24.0283 -3.27478 Vertex 296 2.73045 20.6664 2.21294 Vertex 297 2.89495 -45.1392 -3.34183 Vertex 298 4.76837e-007 -13.0514 -4.14164 Vertex 299 3.94848 -33.6744 -6.36867 Vertex 300 -3.8254 -25.857 -6.11806 Vertex 301 7.40407 -27.5338 -1.58272 Vertex 302 5.52771 -42.0502 1.69122 Vertex 303 1.60348 -22.2673 -3.26493 Vertex 304 2.00594 7.82099 4.60025 Vertex 305 -3.16275 -45.1691 -3.43199 Vertex 306 -2.87529 17.8751 -0.732915 Vertex 307 0.649269 17.2509 -2.68754 Vertex 308 1.94641 17.4604 -1.92872 Vertex 309 -2.4961 17.6403 -1.28536 Vertex 310 -10.8167 -15.6511 -1.151 Vertex 311 -6.57619 12.8345 -4.75827 Vertex 312 -5.99647 10.1211 -5.50901 Vertex 313 10.5233 -16.7412 0.743841 Vertex 314 12.686 -14.821 0.997522 Vertex 315 -0.369117 15.6815 -6.06674 Vertex 316 -0.998756 19.9313 3.97706 Vertex 317 -2.66303 18.5675 3.1131 Vertex 318 2.46237 16.3795 2.67145 Vertex 319 0.420899 13.3324 1.05624 Vertex 320 1.14255 16.559 -4.82995 Vertex 321 4.62733 -45.1553 3.0071 Vertex 322 6.125 6.82661 -3.18355 Vertex 323 6.75103 6.53033 -1.44494 Vertex 324 -1.52187 -27.5156 -3.29634 Vertex 325 -10.8549 -16.5556 -2.03259 Vertex 326 -0.314657 -21.5995 -3.73165 Vertex 327 -9.55496 -15.537 -1.5397 Vertex 328 4.79059 -39.7889 -0.900656 Vertex 329 -3.31456 19.0478 -1.00156 Vertex 330 -4.62825 -39.8446 -1.20104 Vertex 331 12.8852 -11.833 -3.96571 Vertex 332 -0.679708 17.7741 4.07388 Vertex 333 -2.5112 0.545159 5.30526 Vertex 334 -0.870999 22.7244 -4.05673 Vertex 335 -9.46168 -15.8051 0.796728 Vertex 336 -12.7447 -10.7742 -0.305666 Vertex 337 8.18027 -42.5835 1.41097 Vertex 338 8.40012 -45.1573 0.373238 Vertex 339 -5.5639 9.99164 -3.63261 Vertex 340 3.0336 12.9396 -4.38648 Vertex 341 12.4454 -12.9836 0.444387 Vertex 342 11.7474 -13.5065 0.983589 Vertex 343 9.27921 -15.9483 -0.422304 Vertex 344 9.42178 -16.2864 0.169574 Vertex 345 8.76873 -15.6991 0.0715745 Vertex 346 0.897081 18.0401 3.84769 Vertex 347 12.5588 -15.7014 -3.39348 Vertex 348 10.7175 -16.6802 -2.05073 Vertex 349 10.1002 -15.2172 -1.78344 Vertex 350 -4.3019 -3.70344 2.73797 Vertex 351 6.08431 -45.0643 -4.48447 Vertex 352 0.826881 -12.8119 2.05513 Vertex 353 -10.0599 -15.4023 -0.137505 Vertex 354 -10.873 -14.7914 0.357585 Vertex 355 -10.3545 -15.7175 0.788234 Vertex 356 -10.5049 -15.8896 0.150517 Vertex 357 -10.6144 -15.1098 -0.953431 Vertex 358 -6.24319 -44.9055 -4.42387 Vertex 359 -9.53459 -14.5261 1.48751 Vertex 360 -8.69963 -15.7938 0.041062 Vertex 361 9.5767 -15.6762 0.999151 Vertex 362 -10.3291 -16.5343 0.0133891 Vertex 363 -4.83232 -43.2689 2.92905 Vertex 364 -3.17283 -40.8785 -5.42335 Vertex 365 -0.0326753 23.0461 -2.76806 Vertex 366 -10.5548 -16.6295 -2.74489 Vertex 367 9.46939 -15.9416 0.248589 Vertex 368 10.8069 -14.8523 0.15662 Vertex 369 10.4491 -15.8623 0.433111 Vertex 370 -0.736323 -11.923 2.85594 Vertex 371 -0.0758101 -13.0023 0.423076 Vertex 372 0.85238 23.5635 -3.43904 Vertex 373 -1.74077 19.6832 3.1359 Vertex 374 -3.29336 19.4324 -1.41036 Vertex 375 2.09948 19.3311 2.64264 Vertex 376 -5.16687 4.55425 4.83498 Vertex 377 3.45873 -31.8071 -6.72568 Vertex 378 4.75988 -43.2371 2.8958 Vertex 379 5.74669 8.44477 -3.06635 Vertex 380 -4.16978 -0.819194 -4.36776 Vertex 381 -11.0278 -21.2912 -2.73216 Vertex 382 -8.37255 -26.837 -2.96613 Vertex 383 -4.4583 -40.9059 -6.16189 Vertex 384 0.688528 20.4019 4.21256 Vertex 385 4.44212 -40.9597 -5.99721 Vertex 386 2.82426 -40.7071 -5.11122 Vertex 387 4.195 -39.9232 -6.01059 Vertex 388 1.3914 19.1464 -4.53703 Vertex 389 -7.66757 13.8088 -2.7484 Vertex 390 -2.15506 11.6116 0.0740766 Vertex 391 3.54141 19.9218 -0.391527 Vertex 392 -8.38023 -45.1597 0.393699 Vertex 393 -3.24852 20.2247 -1.88136 Vertex 394 10.9949 -21.0838 -3.49705 Vertex 395 -7.32166 -45.1748 5.91531 Vertex 396 2.83606 18.5675 1.9227 Vertex 397 -1.79034 19.0641 3.53123 Vertex 398 10.0934 -15.2641 -2.65495 Vertex 399 2.88924 18.2704 -0.990787 Vertex 400 -8.10151 -22.0554 -5.57651 Vertex 401 1.37854 -9.09172 3.82407 Vertex 402 1.62025 -3.66876 4.42299 Vertex 403 3.0271 -3.66973 3.43257 Vertex 404 2.90024 -21.6697 -7.221 Vertex 405 0.560838 17.5063 4.33783 Vertex 406 -10.4419 -15.642 -1.79093 Vertex 407 -10.621 -16.5456 -2.06651 Vertex 408 0 -0.833921 -4.72918 Vertex 409 9.8327 -19.6247 -6.22246 Vertex 410 -6.09235 -22.3913 -0.272462 Vertex 411 3.12272 -45.2782 -5.55673 Vertex 412 -7.8456 13.5431 -1.28205 Vertex 413 -0.885883 -12.5154 2.57181 Vertex 414 4.85203 4.4344 4.40576 Vertex 415 11.8558 6.32746 -1.46537 Vertex 416 -3.10513 -45.279 -5.55937 Vertex 417 -1.7023 -33.3913 -3.33368 Vertex 418 -10.071 -15.1503 -1.86829 Vertex 419 -11.6852 -14.8569 -2.39004 Vertex 420 -9.73209 -19.6686 -6.22341 Vertex 421 -3.09014 -21.6247 -7.09353 Vertex 422 -1.77809 19.1789 2.77135 Vertex 423 -1.90761 -24.0693 -4.91285 Vertex 424 -2.0624 14.8835 2.5245 Vertex 425 3.14715 18.5633 -0.629971 Vertex 426 4.27768 -3.65811 -3.69995 Vertex 427 -8.11148 -42.2545 1.44054 Vertex 428 -12.819 -4.03705 -5.8605 Vertex 429 1.73457 20.1469 3.72136 Vertex 430 2.07982 -32.4758 -3.03414 Vertex 431 1.58374 -3.66501 -4.38958 Vertex 432 2.35549 -3.67029 -4.60815 Vertex 433 -3.08527 -3.68338 -4.53036 Vertex 434 -5.92834 -3.66995 -2.37695 Vertex 435 -5.71109 -3.63324 -2.41677 Vertex 436 -4.76022 -2.25611 2.90123 Vertex 437 -1.29697 6.63658 4.84261 Vertex 438 -2.00594 7.82099 4.60024 Vertex 439 13.7017 -3.97233 -5.49777 Vertex 440 1.86509 16.865 3.16475 Vertex 441 -5.95337 6.29254 -3.33579 Vertex 442 -7.36906 7.13952 -0.0530487 Vertex 443 0.975867 19.2132 3.75327 Vertex 444 -3.20339 18.9612 -0.0699999 Vertex 445 -10.7479 -11.775 -0.201597 Vertex 446 11.7325 -14.8192 -2.2833 Vertex 447 -2.95964 0.682067 -5.12913 Vertex 448 9.51242 -14.5452 0.663688 Vertex 449 9.66232 -15.4943 -1.59704 Vertex 450 -10.0995 -15.2945 -2.61538 Vertex 451 2.12817 7.85028 4.98224 Vertex 452 0.185614 15.1996 4.34446 Vertex 453 -0.550938 17.8907 4.57309 Vertex 454 -0.532349 16.6752 -4.61403 Vertex 455 0.0644774 -13.4405 -1.27604 Vertex 456 -0.0122783 -13.328 -1.96628 Vertex 457 -2.54326 15.4932 -2.39773 Vertex 458 -1.84796 19.462 2.4057 Vertex 459 -12.3411 -15.996 -1.22073 Vertex 460 -10.7674 -16.5911 -1.15188 Vertex 461 -3.60535 -45.1077 -2.34667 Vertex 462 -11.2037 -14.624 -0.283627 Vertex 463 6.62741 -26.2697 -0.654005 Vertex 464 5.09683 0.767747 3.44614 Vertex 465 2.44924 11.6349 -0.149674 Vertex 466 -12.2974 -12.9983 0.408601 Vertex 467 -10.3696 -12.8888 1.07322 Vertex 468 3.70485 -45.164 -2.32336 Vertex 469 1.79834 23.4578 1.66485 Vertex 470 3.03262 19.7534 -2.32247 Vertex 471 2.47135 19.0172 3.32158 Vertex 472 -3.39281 20.2955 -0.475583 Vertex 473 -5.16555 -31.9494 -7.51525 Vertex 474 5.0855 -0.854968 2.93104 Vertex 475 8.8179 -21.6007 -6.06545 Vertex 476 3.44543 0.822696 -4.44519 Vertex 477 0.988584 19.2259 3.30935 Vertex 478 -13.0011 -15.2128 0.188336 Vertex 479 -0.756925 19.5665 3.4105 Vertex 480 6.05225 -22.2642 -0.00249332 Vertex 481 4.77409 -44.9331 1.98304 Vertex 482 2.96342 0.798396 -4.86362 Vertex 483 3.08814 19.3017 0.0694577 Vertex 484 -13.762 -3.86161 -3.6504 Vertex 485 -3.0478 21.2282 -1.45188 Vertex 486 -1.05943 16.4705 -2.69848 Vertex 487 -2.42576 13.2844 -3.40238 Vertex 488 8.83169 9.16849 1.79297 Vertex 489 8.61003 -4.34742 -4.403 Vertex 490 0.5127 13.7323 3.45682 Vertex 491 3.4543 -24.0162 -0.461967 Vertex 492 0.462463 17.9246 4.35236 Vertex 493 2.14619 -25.7474 -1.62407 Vertex 494 -1.82672 16.4913 2.79769 Vertex 495 9.47657 6.57277 -5.69194 Vertex 496 9.77556 -16.0658 -1.12065 Vertex 497 10.9797 -14.8563 -1.19923 Vertex 498 -1.71357 -25.7669 -3.74938 Vertex 499 1.19771 24.1053 -4.82298 Vertex 500 -1.93894 16.6495 -3.93417 Vertex 501 6.50885 -40.4057 -1.52082 Vertex 502 6.99561 -40.6767 -2.82018 Vertex 503 -11.4504 -4.11521 -0.375108 Vertex 504 0.987748 19.6746 3.234 Vertex 505 -0.754679 -21.524 -3.04537 Vertex 506 -9.53379 -16.0122 -0.332581 Vertex 507 11.1701 -14.6158 -0.236384 Vertex 508 5.50706 7.81729 -5.36651 Vertex 509 11.4575 -14.948 -0.521878 Vertex 510 11.0284 -14.7384 -0.823083 Vertex 511 11.3469 -15.4245 -0.168961 Vertex 512 -6.97535 6.25243 -1.62884 Vertex 513 3.25664 20.3206 -0.701967 Face 1 54 251 132 Face 2 62 253 159 Face 3 470 158 388 Face 4 13 397 20 Face 5 388 315 17 Face 6 393 11 288 Face 7 218 485 365 Face 8 470 388 218 Face 9 19 17 454 Face 10 217 10 12 Face 11 139 319 78 Face 12 11 374 288 Face 13 23 443 396 Face 14 439 34 35 Face 15 331 32 30 Face 16 439 331 30 Face 17 31 489 30 Face 18 32 31 30 Face 19 35 230 31 Face 20 32 347 280 Face 21 59 33 147 Face 22 159 253 503 Face 23 234 459 478 Face 24 428 166 57 Face 25 338 75 119 Face 26 24 328 60 Face 27 84 338 119 Face 28 337 129 29 Face 29 103 461 72 Face 30 105 5 6 Face 31 6 330 52 Face 32 6 5 7 Face 33 401 180 194 Face 34 38 116 350 Face 35 114 264 85 Face 36 117 251 54 Face 37 455 37 63 Face 38 186 37 455 Face 39 154 48 87 Face 40 26 42 426 Face 41 298 15 201 Face 42 283 284 91 Face 43 447 133 39 Face 44 160 76 239 Face 45 161 141 376 Face 46 414 178 376 Face 47 56 266 47 Face 48 38 381 222 Face 49 209 431 42 Face 50 65 43 44 Face 51 116 38 279 Face 52 200 74 101 Face 53 200 45 138 Face 54 15 45 201 Face 55 15 109 505 Face 56 26 174 152 Face 57 132 251 113 Face 58 275 114 205 Face 59 273 56 47 Face 60 36 49 50 Face 61 36 87 48 Face 62 48 49 36 Face 63 48 377 49 Face 64 154 301 48 Face 65 154 153 301 Face 66 101 435 200 Face 67 38 350 51 Face 68 107 52 330 Face 69 104 6 52 Face 70 107 53 52 Face 71 107 5 229 Face 72 28 54 132 Face 73 28 172 54 Face 74 149 441 76 Face 75 9 86 55 Face 76 91 474 172 Face 77 199 115 56 Face 78 512 131 241 Face 79 339 250 57 Face 80 202 226 314 Face 81 202 32 58 Face 82 489 211 30 Face 83 415 33 59 Face 84 27 183 328 Face 85 255 430 60 Face 86 24 61 25 Face 87 387 188 120 Face 88 250 62 64 Face 89 250 253 62 Face 90 295 303 187 Face 91 88 455 63 Face 92 503 336 159 Face 93 2 1 336 Face 94 67 65 44 Face 95 66 43 65 Face 96 498 324 300 Face 97 164 43 66 Face 98 324 67 300 Face 99 94 108 93 Face 100 163 290 189 Face 101 44 43 170 Face 102 27 69 183 Face 103 27 299 69 Face 104 111 480 184 Face 105 111 193 480 Face 106 96 238 145 Face 107 9 311 71 Face 108 81 72 235 Face 109 106 103 392 Face 110 26 73 174 Face 111 26 28 73 Face 112 68 138 45 Face 113 122 101 420 Face 114 25 302 84 Face 115 25 61 75 Face 116 196 291 195 Face 117 196 92 121 Face 118 286 77 225 Face 119 212 10 217 Face 120 137 78 95 Face 121 137 157 289 Face 122 193 113 480 Face 123 46 227 79 Face 124 72 392 103 Face 125 207 363 128 Face 126 106 81 8 Face 127 427 128 363 Face 128 189 423 163 Face 129 182 83 82 Face 130 165 83 170 Face 131 165 82 83 Face 132 502 84 119 Face 133 501 25 84 Face 134 9 85 264 Face 135 96 179 144 Face 136 266 181 268 Face 137 39 133 86 Face 138 135 87 36 Face 139 228 46 87 Face 140 70 88 184 Face 141 70 117 88 Face 142 387 299 27 Face 143 24 60 89 Face 144 189 90 82 Face 145 45 15 326 Face 146 150 91 172 Face 147 150 287 91 Face 148 56 464 199 Face 149 414 333 464 Face 150 67 93 65 Face 151 67 473 93 Face 152 324 473 67 Face 153 66 108 94 Face 154 12 167 139 Face 155 444 306 167 Face 156 143 232 340 Face 157 143 238 232 Face 158 178 437 76 Face 159 98 96 146 Face 160 304 98 438 Face 161 41 205 177 Face 162 3 99 62 Face 163 277 142 278 Face 164 75 302 25 Face 165 321 29 190 Face 166 38 136 381 Face 167 38 51 136 Face 168 408 283 91 Face 169 195 291 141 Face 170 5 358 7 Face 171 126 305 358 Face 172 53 104 52 Face 173 53 382 104 Face 174 53 105 382 Face 175 53 107 417 Face 176 7 134 8 Face 177 7 103 134 Face 178 8 107 330 Face 179 305 416 276 Face 180 65 108 66 Face 181 65 93 108 Face 182 279 109 116 Face 183 83 182 109 Face 184 301 110 48 Face 185 112 118 110 Face 186 36 295 135 Face 187 36 50 493 Face 188 301 112 110 Face 189 50 118 112 Face 190 79 394 193 Face 191 409 73 394 Face 192 47 114 275 Face 193 269 323 114 Face 194 39 115 254 Face 195 39 86 115 Face 196 15 371 109 Face 197 352 401 194 Face 198 456 352 194 Face 199 455 88 352 Face 200 49 118 50 Face 201 49 377 118 Face 202 468 119 75 Face 203 386 385 155 Face 204 297 386 411 Face 205 61 24 120 Face 206 376 333 414 Face 207 376 141 292 Face 208 68 122 420 Face 209 223 222 381 Face 210 58 245 237 Face 211 58 32 280 Face 212 62 263 64 Face 213 62 99 124 Face 214 331 347 32 Face 215 35 204 341 Face 216 383 126 358 Face 217 383 364 126 Face 218 59 488 415 Face 219 59 147 127 Face 220 80 128 427 Face 221 80 395 219 Face 222 100 129 337 Face 223 378 321 190 Face 224 40 210 402 Face 225 40 51 210 Face 226 57 389 339 Face 227 57 166 389 Face 228 73 132 394 Face 229 73 28 132 Face 230 441 161 76 Face 231 55 86 133 Face 232 106 134 103 Face 233 106 8 134 Face 234 187 135 295 Face 235 187 79 227 Face 236 101 136 51 Face 237 101 122 136 Face 238 11 306 374 Face 239 158 470 137 Face 240 74 138 68 Face 241 74 200 138 Face 242 471 440 318 Face 243 332 169 175 Face 244 39 482 447 Face 245 39 254 476 Face 246 102 270 133 Face 247 283 195 271 Face 248 336 466 467 Face 249 64 234 478 Face 250 9 143 85 Face 251 9 71 143 Face 252 85 340 177 Face 253 85 143 340 Face 254 97 239 76 Face 255 146 96 145 Face 256 97 146 145 Face 257 438 98 146 Face 258 495 147 33 Face 259 495 379 147 Face 260 54 403 117 Face 261 54 172 402 Face 262 160 149 76 Face 263 208 243 442 Face 264 28 150 172 Face 265 426 287 150 Face 266 433 287 432 Face 267 51 436 151 Face 268 187 152 79 Face 269 37 26 152 Face 270 111 153 154 Face 271 295 36 493 Face 272 46 154 87 Face 273 46 111 154 Face 274 351 155 188 Face 275 351 297 411 Face 276 307 156 185 Face 277 294 95 486 Face 278 470 513 137 Face 279 22 296 286 Face 280 185 158 308 Face 281 262 388 158 Face 282 467 445 336 Face 283 213 62 445 Face 284 257 160 239 Face 285 71 311 412 Face 286 133 161 55 Face 287 133 270 161 Face 288 500 162 320 Face 289 500 393 162 Face 290 300 163 423 Face 291 44 170 163 Face 292 423 498 300 Face 293 82 165 164 Face 294 43 165 170 Face 295 43 164 165 Face 296 241 166 484 Face 297 241 131 166 Face 298 95 168 486 Face 299 319 139 167 Face 300 390 168 465 Face 301 167 486 168 Face 302 424 169 317 Face 303 424 197 494 Face 304 290 170 83 Face 305 290 163 170 Face 306 176 171 256 Face 307 296 469 384 Face 308 40 172 474 Face 309 40 402 172 Face 310 92 173 121 Face 311 474 199 173 Face 312 475 409 394 Face 313 475 152 174 Face 314 197 175 494 Face 315 197 318 440 Face 316 471 220 440 Face 317 296 384 429 Face 318 179 206 144 Face 319 98 41 274 Face 320 273 178 414 Face 321 41 98 304 Face 322 98 179 96 Face 323 98 274 179 Face 324 210 180 148 Face 325 130 116 180 Face 326 508 181 267 Face 327 264 114 265 Face 328 90 182 82 Face 329 90 109 182 Face 330 60 463 255 Face 331 60 328 463 Face 332 63 184 88 Face 333 303 491 184 Face 334 11 309 306 Face 335 500 320 185 Face 336 26 186 42 Face 337 26 37 186 Face 338 37 404 63 Face 339 37 152 187 Face 340 27 188 387 Face 341 27 351 188 Face 342 45 189 68 Face 343 45 326 421 Face 344 129 221 29 Face 345 129 378 190 Face 346 192 191 478 Face 347 99 3 191 Face 348 99 310 124 Face 349 249 362 192 Face 350 46 193 111 Face 351 46 79 193 Face 352 370 194 180 Face 353 370 456 194 Face 354 287 380 91 Face 355 151 196 380 Face 356 436 196 151 Face 357 436 92 196 Face 358 490 452 424 Face 359 490 318 452 Face 360 176 198 171 Face 361 332 175 405 Face 362 91 199 474 Face 363 91 284 199 Face 364 42 200 209 Face 365 201 45 200 Face 366 42 201 200 Face 367 42 298 201 Face 368 342 202 314 Face 369 203 32 202 Face 370 342 215 216 Face 371 31 32 203 Face 372 31 204 35 Face 373 31 203 204 Face 374 85 205 114 Face 375 85 177 205 Face 376 274 206 179 Face 377 177 144 206 Face 378 72 207 80 Face 379 72 81 207 Face 380 160 208 442 Face 381 160 257 412 Face 382 435 209 200 Face 383 51 151 434 Face 384 130 210 51 Face 385 130 180 210 Face 386 272 211 34 Face 387 127 147 379 Face 388 22 469 296 Face 389 22 218 365 Face 390 467 213 445 Face 391 3 62 213 Face 392 3 214 142 Face 393 3 231 240 Face 394 203 215 204 Face 395 343 344 345 Face 396 202 216 203 Face 397 202 342 216 Face 398 458 422 256 Face 399 285 212 217 Face 400 19 258 21 Face 401 393 485 218 Face 402 128 219 395 Face 403 128 80 219 Face 404 198 346 171 Face 405 405 175 346 Face 406 190 221 129 Face 407 190 29 221 Face 408 410 222 223 Face 409 279 38 222 Face 410 68 223 122 Face 411 290 83 223 Face 412 58 511 202 Face 413 248 125 247 Face 414 78 225 77 Face 415 399 137 289 Face 416 511 226 202 Face 417 369 367 368 Face 418 135 228 87 Face 419 135 187 227 Face 420 227 228 135 Face 421 227 46 228 Face 422 105 229 5 Face 423 105 53 417 Face 424 34 230 35 Face 425 34 211 230 Face 426 213 231 3 Face 427 359 240 360 Face 428 96 233 238 Face 429 96 144 487 Face 430 487 233 96 Face 431 232 238 233 Face 432 263 234 64 Face 433 407 460 234 Face 434 8 235 107 Face 435 8 81 235 Face 436 12 236 167 Face 437 12 10 236 Face 438 341 237 35 Face 439 125 58 237 Face 440 71 238 143 Face 441 257 145 238 Face 442 145 239 97 Face 443 145 257 239 Face 444 214 240 359 Face 445 214 3 240 Face 446 2 241 484 Face 447 2 4 241 Face 448 224 247 125 Face 449 244 248 242 Face 450 55 243 312 Face 451 55 161 441 Face 452 224 507 242 Face 453 224 248 244 Face 454 123 246 58 Face 455 348 237 245 Face 456 496 449 348 Face 457 245 58 246 Face 458 242 247 224 Face 459 242 248 247 Face 460 58 248 224 Face 461 58 125 248 Face 462 357 249 192 Face 463 462 362 249 Face 464 428 250 64 Face 465 428 57 250 Face 466 70 251 117 Face 467 252 113 251 Face 468 70 252 251 Face 469 480 113 252 Face 470 4 253 250 Face 471 4 2 253 Face 472 199 254 115 Face 473 199 284 254 Face 474 69 255 183 Face 475 69 430 255 Face 476 169 256 317 Face 477 169 176 256 Face 478 71 257 238 Face 479 71 412 257 Face 480 259 258 334 Face 481 372 21 258 Face 482 372 259 334 Face 483 372 258 499 Face 484 220 260 171 Face 485 477 471 375 Face 486 27 261 351 Face 487 27 328 261 Face 488 185 262 158 Face 489 185 388 262 Face 490 124 263 62 Face 491 124 234 293 Face 492 508 264 265 Face 493 86 9 264 Face 494 322 265 114 Face 495 181 508 265 Face 496 115 266 56 Face 497 115 508 267 Face 498 266 267 181 Face 499 266 115 267 Face 500 269 268 323 Face 501 269 266 268 Face 502 47 269 114 Face 503 47 266 269 Face 504 141 271 195 Face 505 141 161 270 Face 506 270 271 141 Face 507 270 102 271 Face 508 127 488 59 Face 509 127 379 488 Face 510 275 273 47 Face 511 41 304 451 Face 512 177 274 41 Face 513 177 206 274 Face 514 41 275 205 Face 515 41 451 275 Face 516 107 276 383 Face 517 107 235 276 Face 518 3 277 356 Face 519 3 142 277 Face 520 191 278 142 Face 521 353 354 335 Face 522 410 279 222 Face 523 83 109 279 Face 524 281 280 347 Face 525 123 58 280 Face 526 123 281 347 Face 527 123 280 282 Face 528 281 349 398 Face 529 281 123 282 Face 530 102 283 271 Face 531 447 140 283 Face 532 140 284 283 Face 533 476 254 284 Face 534 171 316 256 Face 535 384 469 285 Face 536 157 286 391 Face 537 513 22 286 Face 538 151 287 433 Face 539 151 380 287 Face 540 10 288 236 Face 541 485 393 288 Face 542 391 289 157 Face 543 225 399 425 Face 544 68 400 223 Face 545 68 189 400 Face 546 121 291 196 Face 547 333 376 292 Face 548 291 292 141 Face 549 291 121 292 Face 550 366 325 234 Face 551 263 124 293 Face 552 137 308 158 Face 553 137 95 294 Face 554 491 295 493 Face 555 491 303 295 Face 556 77 296 375 Face 557 77 286 296 Face 558 468 297 119 Face 559 468 120 297 Face 560 186 298 42 Face 561 186 455 298 Face 562 89 299 387 Face 563 430 69 299 Face 564 44 300 67 Face 565 44 163 300 Face 566 50 301 153 Face 567 50 112 301 Face 568 100 302 481 Face 569 100 84 302 Face 570 63 303 184 Face 571 63 187 303 Face 572 178 304 437 Face 573 178 451 304 Face 574 235 305 276 Face 575 461 103 305 Face 576 156 306 309 Face 577 156 167 306 Face 578 294 307 185 Face 579 294 486 307 Face 580 294 308 137 Face 581 294 185 308 Face 582 185 457 500 Face 583 185 156 309 Face 584 192 310 99 Face 585 460 407 327 Face 586 55 311 9 Face 587 55 312 311 Face 588 208 312 243 Face 589 208 311 312 Face 590 125 313 511 Face 591 314 226 313 Face 592 125 314 313 Face 593 125 237 341 Face 594 454 315 320 Face 595 454 17 315 Face 596 285 316 384 Face 597 285 217 316 Face 598 217 317 373 Face 599 217 12 317 Face 600 78 318 490 Face 601 78 77 318 Face 602 95 465 168 Face 603 95 78 319 Face 604 388 320 315 Face 605 388 185 320 Face 606 481 321 100 Face 607 481 29 321 Face 608 323 322 114 Face 609 181 265 322 Face 610 181 323 268 Face 611 181 322 323 Face 612 66 324 164 Face 613 66 94 324 Face 614 419 418 450 Face 615 293 234 325 Face 616 505 326 15 Face 617 90 189 326 Face 618 406 327 407 Face 619 310 460 327 Face 620 25 328 24 Face 621 25 501 328 Face 622 444 329 306 Face 623 444 472 329 Face 624 7 330 6 Face 625 7 8 330 Face 626 35 331 439 Face 627 35 237 331 Face 628 176 453 198 Face 629 176 169 332 Face 630 121 333 292 Face 631 121 173 333 Face 632 19 334 258 Face 633 19 218 334 Face 634 278 335 277 Face 635 278 353 335 Face 636 64 336 1 Face 637 64 466 336 Face 638 84 337 29 Face 639 84 100 337 Face 640 29 338 84 Face 641 29 481 338 Face 642 512 339 131 Face 643 512 250 339 Face 644 144 340 232 Face 645 144 177 340 Face 646 314 341 342 Face 647 314 125 341 Face 648 204 342 341 Face 649 204 215 342 Face 650 448 343 345 Face 651 448 216 343 Face 652 216 344 343 Face 653 216 215 344 Face 654 215 345 344 Face 655 215 448 345 Face 656 220 346 440 Face 657 220 171 346 Face 658 237 347 331 Face 659 237 123 347 Face 660 123 348 246 Face 661 123 237 348 Face 662 282 349 281 Face 663 446 398 349 Face 664 130 350 116 Face 665 130 51 350 Face 666 119 351 261 Face 667 119 297 351 Face 668 117 352 88 Face 669 117 401 352 Face 670 356 353 278 Face 671 356 354 353 Face 672 277 355 356 Face 673 277 335 355 Face 674 354 355 335 Face 675 354 356 355 Face 676 191 356 278 Face 677 191 3 356 Face 678 462 357 192 Face 679 462 249 357 Face 680 103 358 305 Face 681 103 7 358 Face 682 213 359 231 Face 683 213 467 359 Face 684 231 506 240 Face 685 231 359 360 Face 686 226 361 313 Face 687 226 369 361 Face 688 191 362 462 Face 689 191 192 362 Face 690 81 363 207 Face 691 81 106 363 Face 692 276 364 383 Face 693 276 416 364 Face 694 212 365 485 Face 695 212 22 365 Face 696 263 366 234 Face 697 263 293 366 Face 698 313 367 369 Face 699 313 361 367 Face 700 361 368 367 Face 701 361 369 368 Face 702 511 369 226 Face 703 511 313 369 Face 704 413 370 180 Face 705 116 109 371 Face 706 370 371 456 Face 707 370 413 371 Face 708 218 372 334 Face 709 218 21 372 Face 710 479 458 256 Face 711 316 217 373 Face 712 329 374 306 Face 713 329 472 374 Face 714 429 375 296 Face 715 504 477 375 Face 716 76 376 178 Face 717 76 161 376 Face 718 110 377 48 Face 719 110 118 377 Face 720 100 378 129 Face 721 100 321 378 Face 722 211 379 495 Face 723 211 272 379 Face 724 195 380 196 Face 725 408 91 380 Face 726 122 381 136 Face 727 122 223 381 Face 728 6 382 105 Face 729 6 104 382 Face 730 5 383 358 Face 731 5 107 383 Face 732 171 384 316 Face 733 171 260 384 Face 734 188 385 386 Face 735 188 155 385 Face 736 120 386 297 Face 737 120 188 386 Face 738 24 387 120 Face 739 24 89 387 Face 740 21 388 17 Face 741 21 218 388 Face 742 131 389 166 Face 743 131 339 389 Face 744 167 390 319 Face 745 167 168 390 Face 746 483 391 286 Face 747 483 425 391 Face 748 80 392 72 Face 749 80 427 392 Face 750 19 393 218 Face 751 19 162 393 Face 752 113 394 132 Face 753 113 193 394 Face 754 207 395 80 Face 755 207 128 395 Face 756 16 396 443 Face 757 14 397 13 Face 758 14 20 397 Face 759 280 398 282 Face 760 280 281 398 Face 761 78 399 225 Face 762 78 137 399 Face 763 290 400 189 Face 764 290 223 400 Face 765 148 401 117 Face 766 148 180 401 Face 767 148 402 210 Face 768 148 54 402 Face 769 148 403 54 Face 770 148 117 403 Face 771 187 404 37 Face 772 187 63 404 Face 773 198 492 346 Face 774 198 453 492 Face 775 310 406 407 Face 776 310 327 406 Face 777 124 407 234 Face 778 124 310 407 Face 779 195 408 380 Face 780 195 283 408 Face 781 174 409 475 Face 782 174 73 409 Face 783 83 410 223 Face 784 83 279 410 Face 785 155 411 386 Face 786 155 351 411 Face 787 208 412 311 Face 788 208 160 412 Face 789 116 413 180 Face 790 116 371 413 Face 791 56 414 464 Face 792 56 273 414 Face 793 34 415 272 Face 794 34 33 415 Face 795 126 416 305 Face 796 126 364 416 Face 797 229 417 107 Face 798 229 105 417 Face 799 325 418 293 Face 800 325 450 418 Face 801 293 419 450 Face 802 293 418 419 Face 803 74 420 101 Face 804 74 68 420 Face 805 189 421 326 Face 806 189 45 421 Face 807 317 422 373 Face 808 317 256 422 Face 809 82 423 189 Face 810 82 498 423 Face 811 12 424 317 Face 812 12 139 424 Face 813 289 425 399 Face 814 289 391 425 Face 815 28 426 150 Face 816 28 26 426 Face 817 106 427 363 Face 818 106 392 427 Face 819 1 428 64 Face 820 484 166 428 Face 821 260 429 384 Face 822 504 375 429 Face 823 89 430 299 Face 824 89 60 430 Face 825 426 432 287 Face 826 426 42 431 Face 827 431 432 426 Face 828 431 209 432 Face 829 209 433 432 Face 830 209 435 433 Face 831 433 434 151 Face 832 433 435 434 Face 833 51 435 101 Face 834 51 434 435 Face 835 40 436 51 Face 836 40 92 436 Face 837 438 437 304 Face 838 97 76 437 Face 839 97 438 146 Face 840 97 437 438 Face 841 33 439 495 Face 842 33 34 439 Face 843 175 440 346 Face 844 175 197 440 Face 845 243 441 149 Face 846 243 55 441 Face 847 149 442 243 Face 848 149 160 442 Face 849 18 443 23 Face 850 18 16 443 Face 851 236 444 167 Face 852 236 288 444 Face 853 159 445 62 Face 854 159 336 445 Face 855 282 446 349 Face 856 282 398 446 Face 857 102 447 283 Face 858 102 133 447 Face 859 203 448 215 Face 860 203 216 448 Face 861 497 449 496 Face 862 246 348 449 Face 863 366 450 325 Face 864 366 293 450 Face 865 273 451 178 Face 866 273 275 451 Face 867 197 452 318 Face 868 197 424 452 Face 869 332 453 176 Face 870 332 405 453 Face 871 162 454 320 Face 872 162 19 454 Face 873 456 455 352 Face 874 456 298 455 Face 875 15 456 371 Face 876 15 298 456 Face 877 309 457 185 Face 878 309 11 457 Face 879 373 458 479 Face 880 373 422 458 Face 881 192 459 310 Face 882 192 478 459 Face 883 459 460 310 Face 884 459 234 460 Face 885 235 461 305 Face 886 235 72 461 Face 887 99 462 192 Face 888 99 191 462 Face 889 183 463 328 Face 890 183 255 463 Face 891 173 464 333 Face 892 173 199 464 Face 893 319 465 95 Face 894 319 390 465 Face 895 142 466 64 Face 896 142 214 466 Face 897 214 467 466 Face 898 214 359 467 Face 899 61 468 75 Face 900 61 120 468 Face 901 212 469 22 Face 902 212 285 469 Face 903 22 470 218 Face 904 22 513 470 Face 905 77 471 318 Face 906 77 375 471 Face 907 288 472 444 Face 908 288 374 472 Face 909 94 473 324 Face 910 94 93 473 Face 911 92 474 173 Face 912 92 40 474 Face 913 79 475 394 Face 914 79 152 475 Face 915 140 476 284 Face 916 140 39 476 Face 917 220 477 260 Face 918 220 471 477 Face 919 142 478 191 Face 920 142 64 478 Face 921 316 479 256 Face 922 316 373 479 Face 923 70 480 252 Face 924 70 184 480 Face 925 75 481 302 Face 926 75 338 481 Face 927 140 482 39 Face 928 140 447 482 Face 929 225 483 286 Face 930 225 425 483 Face 931 1 484 428 Face 932 1 2 484 Face 933 10 485 288 Face 934 10 212 485 Face 935 156 486 167 Face 936 156 307 486 Face 937 232 487 144 Face 938 232 233 487 Face 939 272 488 379 Face 940 272 415 488 Face 941 230 489 31 Face 942 230 211 489 Face 943 139 490 424 Face 944 139 78 490 Face 945 111 491 153 Face 946 111 184 491 Face 947 405 492 453 Face 948 405 346 492 Face 949 153 493 50 Face 950 153 491 493 Face 951 169 494 175 Face 952 169 424 494 Face 953 30 495 439 Face 954 30 211 495 Face 955 245 496 348 Face 956 245 246 496 Face 957 246 497 496 Face 958 246 449 497 Face 959 164 498 82 Face 960 164 324 498 Face 961 259 499 258 Face 962 259 372 499 Face 963 11 500 457 Face 964 11 393 500 Face 965 502 501 84 Face 966 261 328 501 Face 967 261 502 119 Face 968 261 501 502 Face 969 2 503 253 Face 970 2 336 503 Face 971 260 504 429 Face 972 260 477 504 Face 973 90 505 109 Face 974 90 326 505 Face 975 360 506 231 Face 976 360 240 506 Face 977 509 507 224 Face 978 510 242 507 Face 979 86 508 115 Face 980 86 264 508 Face 981 244 509 224 Face 982 510 507 509 Face 983 244 510 509 Face 984 244 242 510 Face 985 224 511 58 Face 986 224 125 511 Face 987 4 512 241 Face 988 4 250 512 Face 989 157 513 286 Face 990 157 137 513 ================================================ FILE: models/test1.m ================================================ Vertex 1 -0.5 0.0021 0.5 Vertex 2 0.5 0 0.5 Vertex 3 0.5 0 -0.5 Vertex 4 -0.5 0.00014 -0.5 Vertex 5 -0.25 0.25 0.25 Vertex 6 0.25 0.25 0.25 Vertex 7 0.25 0.25 -0.25 Vertex 8 -0.25 0.25 -0.25 Vertex 9 -0.1 0.45 -0.025 Vertex 10 0.12 0.3 -0.026 Face 1 1 4 8 Face 2 1 8 5 Face 3 1 5 2 Face 4 2 5 6 Face 5 2 6 3 Face 6 3 6 7 Face 7 3 7 4 Face 8 4 7 8 Face 9 8 9 5 Face 10 5 9 10 Face 11 5 10 6 Face 12 6 10 7 Face 13 7 10 9 Face 14 7 9 8 ================================================ FILE: models/test_simp1.m ================================================ Vertex 1 -0.5 0.0021 0.5 Vertex 2 0.5 0 0.5 Vertex 3 0.5 0 -0.5 Vertex 4 -0.5 0.00014 -0.5 Vertex 5 -0.25 0.25 0.25 Vertex 6 0.25 0.25 0.25 Vertex 7 0.25 0.25 -0.25 Vertex 8 -0.25 0.25 -0.25 Vertex 9 -0.1 0.45 -0.025 Face 1 1 4 8 Face 2 1 8 5 Face 3 1 5 2 Face 4 2 5 6 Face 5 2 6 3 Face 6 3 6 7 Face 7 3 7 4 Face 8 4 7 8 Face 9 8 9 5 Face 10 5 9 6 Face 11 6 9 7 Face 12 7 9 8 ================================================ FILE: models/tyra_100k.m ================================================ # ||||||Created on 2002/10/11 18:04:45 using: # |||||| filtermesh tyra_c8.cut.m -removekey wid # ||||||(Timing on cpu=x86 Family 15 Model 0 Stepping 10, GenuineIntel host=?) # |||||| (_readmesh: 1.52) # |||||| (Filtermesh: 1.95) # |||||Created on 2002/10/11 18:05:16 using: # ||||| MeshSimplify tyra_c8.cut.m -minqem -qemvolume 0 -vsgeom -strict_sharp 1 # ||||| -prog tyra_c8.cut.prog -simplify # |||||Materials=8: 8 with matid (0 unused), 0 without matid # |||||nmaterials=8 # |||||Found 0/0 existing wid's # |||||PM: bounding box 0.300821 0.000266531 0.183176 0.699274 1 0.816824 # |||||parameters: diam=0.999733 fitcol=0 colfac=0 fitnor=0 norfac=0.02 # |||||No points sampled. # |||||INITIAL : v=50002 f=100000 e=150000 (sha=1531: bnd=0 dis=1531 sca=1531) # |||||Qems=6 # |||||PM: nvertices=50002 nwedges=51539 nfaces=100000 # |||||Stop. No more good edge collapses. # |||||PM: necols=49990 # |||||FINAL : v=12 f=20 e=30 (sha=17: bnd=0 dis=17 sca=17) # |||||number of retired edge points: 0/0 # |||||Time: u126.57 r127.15 rate:789.94 f/sec # ||||Created on 2002/10/11 18:07:40 using: # |||| Filterprog -fbase tyra_c8.cut.base.m -fprog tyra_c8.cut.rprog -pm_encode # ||||Found 8 materials # ||||Read Genus: c=1 b=0 v=12 f=20 e=30 genus=0 # |||Created on 2002/10/11 14:08:16 using: # ||| ..\data\ctfparam -pack 256 tyra_c8.cut.pm # |||Computing arc-length boundary... # |||Coarse Mesh L^2 Stretch Efficiency: 0.339152 # |||Coarse Mesh L^i Stretch Efficiency: 0.074470 # |||Optimizing coarse mesh... # |||Coarse Mesh L^2 Stretch Efficiency: 0.822216 # |||Coarse Mesh L^i Stretch Efficiency: 0.408511 # |||Optimizing coarse-to-fine... # |||(Timing on cpu=x86-L15-R000a host=VAIO) # ||| (_ctf: 493.63) # |||Fine Mesh L^2 Stretch Efficiency: 0.782117 # |||Fine Mesh L^i Stretch Efficiency: 0.016913 # |||Intra-Rectangle Efficiency: 0.555071 # |||Square Packing Efficiency: 39.51 # ||Created on 2002/10/11 18:16:48 using: # || ctfparam -noctf -tpackdilate -1 -tpack 256 t2.m # ||Packing... # ||Scale: # 60% # ||Resolution: 304x208 - Resolution/Budget: 63232/65536 # ||Discrete Packing Efficiency: 41264/63232 = 65.26% # ||Discrete Packing Efficiency (dilated texels outside): 39319/63232 = 62.18% # ||Packing Efficiency (chart_area/rect_area): 62.19% # ||(Timing on cpu=x86 Family 15 Model 0 Stepping 10, GenuineIntel host=?) # || (_tpack: 1363.85) # ||Square Packing Efficiency: 42.55 # |Created on 2002/10/21 22:23:47 using: # | ctfparam -noctf -tpack 256 -tpackdilate -1 tyra_c8.param.m # |Packing... # |Scale: # 60% # |Resolution: 304x208 - Resolution/Budget: 63232/65536 # |Discrete Packing Efficiency: 41270/63232 = 65.27% # |Discrete Packing Efficiency (dilated texels outside): 39319/63232 = 62.18% # |Packing Efficiency (chart_area/rect_area): 62.19% # |(Timing on cpu=x86-L6-R0803 host=ROCKET) # | (_tpack: 42271.20) # |Square Packing Efficiency: 42.55 # Created on 2003/11/15 21:35:58 using: # C:\cygwin\home\Zoe\hh_src\bin\filtermesh.exe tyra_c8.param2.m -removeinfo # (Timing on cpu=x86-L6-R0806 host=BUTTERCUP) # (_readmesh: 3.75) # (Filtermesh: 4.07) Vertex 1 0.48777 0.579787 0.5696 Vertex 2 0.436716 0.42764 0.631865 Vertex 3 0.373125 0.357367 0.454102 Vertex 4 0.554127 0.399454 0.420183 Vertex 5 0.622972 0.485682 0.291685 Vertex 6 0.523815 0.395598 0.517955 Vertex 7 0.543158 0.510912 0.422771 Vertex 8 0.490251 0.510658 0.390973 Vertex 9 0.43353 0.482288 0.427178 Vertex 10 0.477168 0.339611 0.423044 Vertex 11 0.600359 0.50804 0.247757 Vertex 12 0.489748 0.512144 0.390682 Vertex 13 0.428744 0.169045 0.513678 Vertex 14 0.460028 0.225268 0.6215 Vertex 15 0.411219 0.264619 0.68158 Vertex 16 0.426085 0.844803 0.438816 Vertex 17 0.476517 0.75787 0.392507 Vertex 18 0.518787 0.738591 0.468115 Vertex 19 0.357939 0.225707 0.503586 Vertex 20 0.55087 0.0424892 0.787015 Vertex 21 0.449024 0.0949047 0.714782 Vertex 22 0.443119 0.575701 0.511665 Vertex 23 0.437996 0.136944 0.626079 Vertex 24 0.380996 0.488975 0.484722 Vertex 25 0.425819 0.435422 0.389528 Vertex 26 0.405705 0.336952 0.439497 Vertex 27 0.404177 0.384665 0.252027 Vertex 28 0.579867 0.452693 0.484693 Vertex 29 0.505319 0.409126 0.594523 Vertex 30 0.384597 0.256866 0.608542 Vertex 31 0.483961 0.192208 0.559295 Vertex 32 0.526889 0.127029 0.719064 Vertex 33 0.447276 0.232003 0.781975 Vertex 34 0.494835 0.694053 0.528177 Vertex 35 0.379616 0.428351 0.580427 Vertex 36 0.377667 0.353565 0.607174 Vertex 37 0.519722 0.580297 0.560604 Vertex 38 0.492111 0.0847296 0.729666 Vertex 39 0.505958 0.0432828 0.672749 Vertex 40 0.336061 0.932985 0.255746 Vertex 41 0.45173 0.745029 0.442991 Vertex 42 0.424243 0.207726 0.785132 Vertex 43 0.434069 0.863956 0.386199 Vertex 44 0.428389 0.29011 0.639867 Vertex 45 0.317381 0.935585 0.256617 Vertex 46 0.312702 0.969552 0.251068 Vertex 47 0.406919 0.850678 0.343431 Vertex 48 0.378828 0.4226 0.391447 Vertex 49 0.507409 0.267965 0.485232 Vertex 50 0.374617 0.378428 0.503953 Vertex 51 0.584641 0.512672 0.337615 Vertex 52 0.468497 0.789408 0.484053 Vertex 53 0.521055 0.440048 0.414675 Vertex 54 0.3798 0.189176 0.558424 Vertex 55 0.484619 0.182548 0.715351 Vertex 56 0.506693 0.100537 0.644143 Vertex 57 0.385426 0.353056 0.306261 Vertex 58 0.36167 0.403351 0.31245 Vertex 59 0.498188 0.683339 0.409333 Vertex 60 0.487841 0.658156 0.407728 Vertex 61 0.501072 0.511345 0.393117 Vertex 62 0.583267 0.504865 0.449441 Vertex 63 0.420376 0.138525 0.669379 Vertex 64 0.419499 0.386181 0.305082 Vertex 65 0.362251 0.280136 0.227566 Vertex 66 0.455325 0.133722 0.793589 Vertex 67 0.395068 0.356449 0.429446 Vertex 68 0.381547 0.301209 0.19267 Vertex 69 0.321971 0.993793 0.21196 Vertex 70 0.481871 0.0841077 0.648875 Vertex 71 0.547476 0.00374905 0.758225 Vertex 72 0.559629 0.003293 0.752018 Vertex 73 0.541962 0.617828 0.51372 Vertex 74 0.450066 0.130867 0.633962 Vertex 75 0.532841 0.476768 0.586255 Vertex 76 0.590137 0.415433 0.372553 Vertex 77 0.384313 0.238547 0.683605 Vertex 78 0.486354 0.421907 0.377641 Vertex 79 0.437356 0.228099 0.462797 Vertex 80 0.501119 0.354708 0.44494 Vertex 81 0.358365 0.425413 0.509467 Vertex 82 0.382477 0.184675 0.481607 Vertex 83 0.450629 0.426817 0.393638 Vertex 84 0.542477 0.00997969 0.729145 Vertex 85 0.494427 0.164638 0.790977 Vertex 86 0.356393 0.354157 0.420349 Vertex 87 0.374836 0.25182 0.472984 Vertex 88 0.607348 0.54023 0.260822 Vertex 89 0.628658 0.521082 0.277157 Vertex 90 0.624512 0.509752 0.195957 Vertex 91 0.649654 0.458461 0.218973 Vertex 92 0.620017 0.46115 0.210758 Vertex 93 0.580264 0.451715 0.317686 Vertex 94 0.523993 0.160694 0.786601 Vertex 95 0.465589 0.159391 0.657623 Vertex 96 0.524822 0.32044 0.503693 Vertex 97 0.406748 0.42331 0.363847 Vertex 98 0.500071 0.714984 0.517949 Vertex 99 0.35663 0.242136 0.546916 Vertex 100 0.408359 0.411453 0.610851 Vertex 101 0.472122 0.423784 0.615957 Vertex 102 0.451156 0.435582 0.631137 Vertex 103 0.477914 0.304093 0.630568 Vertex 104 0.456765 0.178142 0.635952 Vertex 105 0.622629 0.490858 0.24794 Vertex 106 0.510258 0.448511 0.405661 Vertex 107 0.390976 0.195851 0.595891 Vertex 108 0.393049 0.472771 0.583151 Vertex 109 0.520321 0.372233 0.45582 Vertex 110 0.545048 0.528479 0.433284 Vertex 111 0.374149 0.912155 0.349627 Vertex 112 0.494859 0.207524 0.526199 Vertex 113 0.478536 0.169264 0.506429 Vertex 114 0.454206 0.334844 0.415712 Vertex 115 0.550503 0.563393 0.507667 Vertex 116 0.453886 0.0757272 0.663018 Vertex 117 0.499787 0.282398 0.592456 Vertex 118 0.51672 0.0885675 0.721019 Vertex 119 0.414056 0.148061 0.678216 Vertex 120 0.37229 0.326179 0.4806 Vertex 121 0.456688 0.201335 0.595097 Vertex 122 0.366219 0.376367 0.256676 Vertex 123 0.417385 0.386809 0.360216 Vertex 124 0.452477 0.660797 0.470194 Vertex 125 0.516258 0.408901 0.440095 Vertex 126 0.539948 0.0497208 0.791439 Vertex 127 0.400819 0.333114 0.240028 Vertex 128 0.59385 0.477941 0.403037 Vertex 129 0.50793 0.59088 0.56398 Vertex 130 0.512503 0.0379465 0.629638 Vertex 131 0.486236 0.0640358 0.74744 Vertex 132 0.56114 0.408788 0.381206 Vertex 133 0.620331 0.497551 0.332007 Vertex 134 0.46203 0.534141 0.42591 Vertex 135 0.583486 0.505855 0.380892 Vertex 136 0.511081 0.0169743 0.646512 Vertex 137 0.477494 0.595162 0.552644 Vertex 138 0.348717 0.177478 0.465965 Vertex 139 0.465631 0.166297 0.549001 Vertex 140 0.421643 0.150832 0.708498 Vertex 141 0.417906 0.865342 0.348614 Vertex 142 0.46755 0.206855 0.685572 Vertex 143 0.375606 0.42652 0.343585 Vertex 144 0.437824 0.394585 0.41657 Vertex 145 0.492265 0.113703 0.800708 Vertex 146 0.482712 0.748322 0.504457 Vertex 147 0.456776 0.0797546 0.659518 Vertex 148 0.521446 0.420278 0.582144 Vertex 149 0.506977 0.137968 0.700094 Vertex 150 0.494468 0.0903621 0.724798 Vertex 151 0.510501 0.104967 0.70774 Vertex 152 0.37377 0.898888 0.36178 Vertex 153 0.437374 0.484249 0.426384 Vertex 154 0.539208 0.581629 0.532489 Vertex 155 0.549496 0.0269244 0.717696 Vertex 156 0.425789 0.13002 0.681977 Vertex 157 0.448668 0.24739 0.739622 Vertex 158 0.404811 0.410073 0.296346 Vertex 159 0.469427 0.213127 0.483029 Vertex 160 0.388885 0.401237 0.600807 Vertex 161 0.474657 0.774246 0.393555 Vertex 162 0.449403 0.795491 0.379749 Vertex 163 0.477595 0.726462 0.40434 Vertex 164 0.532415 0.398743 0.436287 Vertex 165 0.40965 0.282505 0.223539 Vertex 166 0.351886 0.306213 0.206411 Vertex 167 0.536732 0.602039 0.443933 Vertex 168 0.318761 0.962533 0.209177 Vertex 169 0.303575 0.991619 0.212659 Vertex 170 0.323368 0.973419 0.233714 Vertex 171 0.542146 0.0590312 0.801117 Vertex 172 0.523312 0.130701 0.792944 Vertex 173 0.466134 0.399928 0.385056 Vertex 174 0.538616 0.558294 0.55721 Vertex 175 0.658893 0.436429 0.197728 Vertex 176 0.386226 0.253087 0.217267 Vertex 177 0.407216 0.27108 0.227347 Vertex 178 0.365348 0.310863 0.244707 Vertex 179 0.545634 0.0703138 0.758166 Vertex 180 0.371727 0.374591 0.557257 Vertex 181 0.39418 0.357433 0.622495 Vertex 182 0.528648 0.0276884 0.650853 Vertex 183 0.424699 0.25657 0.74577 Vertex 184 0.470452 0.529859 0.591484 Vertex 185 0.397242 0.208626 0.729204 Vertex 186 0.536768 0.645061 0.449453 Vertex 187 0.425819 0.392222 0.416215 Vertex 188 0.396596 0.359032 0.389314 Vertex 189 0.434158 0.167671 0.557257 Vertex 190 0.405131 0.214566 0.472332 Vertex 191 0.420642 0.813347 0.395788 Vertex 192 0.420559 0.483514 0.594203 Vertex 193 0.652532 0.504747 0.200689 Vertex 194 0.362115 0.182211 0.456276 Vertex 195 0.357341 0.201222 0.527579 Vertex 196 0.407837 0.180007 0.553147 Vertex 197 0.434341 0.138715 0.722387 Vertex 198 0.558611 0.486807 0.370705 Vertex 199 0.469646 0.247212 0.611171 Vertex 200 0.502067 0.404008 0.437933 Vertex 201 0.569923 0.472605 0.317567 Vertex 202 0.492058 0.19697 0.752297 Vertex 203 0.497293 0.103256 0.641424 Vertex 204 0.386996 0.333191 0.213322 Vertex 205 0.485963 0.572076 0.398121 Vertex 206 0.604961 0.534106 0.295588 Vertex 207 0.592257 0.521976 0.29348 Vertex 208 0.494261 0.622963 0.404405 Vertex 209 0.472501 0.199049 0.483893 Vertex 210 0.414548 0.155215 0.631782 Vertex 211 0.459228 0.192273 0.800146 Vertex 212 0.634693 0.497379 0.18837 Vertex 213 0.615788 0.488655 0.184669 Vertex 214 0.443486 0.565342 0.547248 Vertex 215 0.406019 0.174594 0.487702 Vertex 216 0.377442 0.178823 0.505464 Vertex 217 0.428691 0.260212 0.681568 Vertex 218 0.395056 0.458082 0.408296 Vertex 219 0.668091 0.452557 0.196585 Vertex 220 0.403218 0.87778 0.401414 Vertex 221 0.517845 0.0788306 0.680804 Vertex 222 0.377644 0.390919 0.248462 Vertex 223 0.369293 0.164431 0.475063 Vertex 224 0.501469 0.0867433 0.787264 Vertex 225 0.360936 0.254663 0.495099 Vertex 226 0.483813 0.504563 0.396724 Vertex 227 0.354214 0.302695 0.531198 Vertex 228 0.472187 0.0802995 0.722286 Vertex 229 0.483274 0.679554 0.513868 Vertex 230 0.421667 0.316987 0.643675 Vertex 231 0.377235 0.872941 0.32532 Vertex 232 0.347432 0.905006 0.280367 Vertex 233 0.535731 0.442127 0.571726 Vertex 234 0.392344 0.501875 0.487346 Vertex 235 0.590735 0.510243 0.283701 Vertex 236 0.599832 0.527555 0.235977 Vertex 237 0.409058 0.252039 0.449945 Vertex 238 0.38744 0.35292 0.35196 Vertex 239 0.40869 0.529 0.536504 Vertex 240 0.52587 0.687668 0.501336 Vertex 241 0.365875 0.348063 0.426645 Vertex 242 0.366142 0.375852 0.306427 Vertex 243 0.623482 0.531654 0.254686 Vertex 244 0.456083 0.192492 0.608696 Vertex 245 0.555673 0.532838 0.459924 Vertex 246 0.562934 0.520797 0.44324 Vertex 247 0.637459 0.441256 0.195797 Vertex 248 0.519261 0.380436 0.509598 Vertex 249 0.520972 0.372654 0.54065 Vertex 250 0.398616 0.257328 0.200938 Vertex 251 0.422573 0.245169 0.201886 Vertex 252 0.410248 0.833159 0.416363 Vertex 253 0.466774 0.0835095 0.729257 Vertex 254 0.393351 0.30892 0.201424 Vertex 255 0.646799 0.478071 0.222183 Vertex 256 0.485134 0.220009 0.495656 Vertex 257 0.546771 0.589453 0.504155 Vertex 258 0.460212 0.108586 0.652085 Vertex 259 0.461515 0.314209 0.421776 Vertex 260 0.322569 0.265175 0.214104 Vertex 261 0.344453 0.263369 0.205102 Vertex 262 0.332614 0.256972 0.234123 Vertex 263 0.36324 0.266834 0.2014 Vertex 264 0.36199 0.246365 0.222017 Vertex 265 0.433169 0.20891 0.471195 Vertex 266 0.506829 0.0371292 0.719734 Vertex 267 0.408116 0.272697 0.643195 Vertex 268 0.430474 0.261628 0.648401 Vertex 269 0.457665 0.0823665 0.737484 Vertex 270 0.396152 0.311911 0.444573 Vertex 271 0.554915 0.502331 0.405578 Vertex 272 0.530004 0.0708054 0.707847 Vertex 273 0.489949 0.492825 0.603638 Vertex 274 0.380931 0.872313 0.370705 Vertex 275 0.506166 0.195442 0.482531 Vertex 276 0.473774 0.108669 0.647075 Vertex 277 0.469475 0.819631 0.414095 Vertex 278 0.44194 0.172267 0.489366 Vertex 279 0.357045 0.379714 0.391417 Vertex 280 0.357945 0.357557 0.388521 Vertex 281 0.496991 0.628329 0.553218 Vertex 282 0.485638 0.0638937 0.695119 Vertex 283 0.489926 0.167031 0.699224 Vertex 284 0.465577 0.432864 0.375627 Vertex 285 0.606803 0.50316 0.199422 Vertex 286 0.522678 0.107775 0.714622 Vertex 287 0.502778 0.572354 0.396285 Vertex 288 0.436941 0.550049 0.503722 Vertex 289 0.482356 0.197337 0.785197 Vertex 290 0.617352 0.485984 0.227057 Vertex 291 0.605139 0.478835 0.190082 Vertex 292 0.385 0.210474 0.691933 Vertex 293 0.43565 0.531369 0.468121 Vertex 294 0.384105 0.337142 0.270476 Vertex 295 0.511265 0.355229 0.58619 Vertex 296 0.487089 0.404844 0.617432 Vertex 297 0.605791 0.516586 0.337533 Vertex 298 0.536454 0.401059 0.521946 Vertex 299 0.548578 0.457206 0.376989 Vertex 300 0.468006 0.184876 0.689866 Vertex 301 0.516856 0.338741 0.47373 Vertex 302 0.484305 0.528029 0.593818 Vertex 303 0.390146 0.310969 0.244949 Vertex 304 0.601153 0.487405 0.390973 Vertex 305 0.450901 0.143364 0.649189 Vertex 306 0.405883 0.168458 0.519933 Vertex 307 0.455698 0.155049 0.79552 Vertex 308 0.496393 0.174742 0.490965 Vertex 309 0.523329 0.158502 0.443282 Vertex 310 0.509701 0.159782 0.462128 Vertex 311 0.428952 0.512672 0.456039 Vertex 312 0.493272 0.230155 0.536759 Vertex 313 0.493598 0.261545 0.465148 Vertex 314 0.489079 0.104345 0.801342 Vertex 315 0.455852 0.133343 0.805369 Vertex 316 0.463315 0.125383 0.811588 Vertex 317 0.475954 0.120094 0.814615 Vertex 318 0.515044 0.360589 0.450649 Vertex 319 0.396875 0.177751 0.611177 Vertex 320 0.400251 0.175571 0.604935 Vertex 321 0.526178 0.0149843 0.745788 Vertex 322 0.489375 0.196994 0.464035 Vertex 323 0.375671 0.344758 0.385927 Vertex 324 0.675631 0.476656 0.216604 Vertex 325 0.505668 0.0358203 0.719521 Vertex 326 0.462504 0.757852 0.476383 Vertex 327 0.529175 0.0937617 0.796059 Vertex 328 0.509316 0.173575 0.762389 Vertex 329 0.406369 0.355443 0.237984 Vertex 330 0.364087 0.121361 0.472332 Vertex 331 0.353527 0.143613 0.45473 Vertex 332 0.345596 0.133461 0.468169 Vertex 333 0.340094 0.104807 0.454464 Vertex 334 0.342984 0.105323 0.468483 Vertex 335 0.352478 0.0885971 0.452965 Vertex 336 0.339217 0.0930628 0.459877 Vertex 337 0.591712 0.434818 0.20798 Vertex 338 0.620301 0.450649 0.200755 Vertex 339 0.521399 0.313599 0.48798 Vertex 340 0.462995 0.71541 0.432905 Vertex 341 0.591327 0.419976 0.394343 Vertex 342 0.374297 0.216864 0.483266 Vertex 343 0.439867 0.314647 0.642555 Vertex 344 0.625252 0.530576 0.287563 Vertex 345 0.44531 0.602714 0.485694 Vertex 346 0.453146 0.620032 0.453534 Vertex 347 0.321147 0.972809 0.203082 Vertex 348 0.451168 0.179463 0.577927 Vertex 349 0.519681 0.718899 0.443649 Vertex 350 0.480337 0.633612 0.531476 Vertex 351 0.50507 0.654288 0.544938 Vertex 352 0.56262 0.540597 0.510877 Vertex 353 0.42936 0.280681 0.432076 Vertex 354 0.487284 0.782182 0.478439 Vertex 355 0.443877 0.835368 0.446379 Vertex 356 0.460573 0.193067 0.577987 Vertex 357 0.379296 0.26938 0.196834 Vertex 358 0.366373 0.388414 0.508496 Vertex 359 0.638715 0.478213 0.226133 Vertex 360 0.369275 0.367554 0.235917 Vertex 361 0.488711 0.543925 0.384499 Vertex 362 0.387967 0.302541 0.617372 Vertex 363 0.434383 0.130784 0.719372 Vertex 364 0.372994 0.181447 0.503391 Vertex 365 0.477565 0.585846 0.4244 Vertex 366 0.455154 0.563121 0.441215 Vertex 367 0.525764 0.168245 0.46009 Vertex 368 0.518674 0.061803 0.776799 Vertex 369 0.544266 0.0334038 0.781803 Vertex 370 0.602119 0.43945 0.190953 Vertex 371 0.397864 0.319942 0.205108 Vertex 372 0.480609 0.440385 0.374964 Vertex 373 0.454603 0.157685 0.513732 Vertex 374 0.483867 0.138211 0.79764 Vertex 375 0.425807 0.377801 0.642283 Vertex 376 0.45423 0.495354 0.604153 Vertex 377 0.538249 0.0732515 0.785238 Vertex 378 0.53412 0.0949344 0.787116 Vertex 379 0.515808 0.289589 0.526205 Vertex 380 0.348238 0.302731 0.230883 Vertex 381 0.498507 0.0300812 0.667241 Vertex 382 0.494279 0.167209 0.702925 Vertex 383 0.434472 0.422961 0.396196 Vertex 384 0.41886 0.406176 0.374212 Vertex 385 0.444593 0.398281 0.643083 Vertex 386 0.526587 0.506506 0.415682 Vertex 387 0.517069 0.465835 0.408652 Vertex 388 0.4144 0.174215 0.575914 Vertex 389 0.404675 0.183093 0.565519 Vertex 390 0.479235 0.184728 0.479078 Vertex 391 0.490085 0.211765 0.494181 Vertex 392 0.491323 0.216527 0.515799 Vertex 393 0.404687 0.327032 0.217391 Vertex 394 0.606347 0.512423 0.201074 Vertex 395 0.593359 0.520703 0.210705 Vertex 396 0.604973 0.509568 0.21623 Vertex 397 0.309995 0.987841 0.200612 Vertex 398 0.405616 0.487944 0.433965 Vertex 399 0.522186 0.524766 0.58799 Vertex 400 0.469019 0.367774 0.411139 Vertex 401 0.507658 0.14202 0.677843 Vertex 402 0.58335 0.482561 0.303655 Vertex 403 0.533398 0.131015 0.789402 Vertex 404 0.508878 0.169832 0.781193 Vertex 405 0.528281 0.145774 0.790433 Vertex 406 0.611618 0.457182 0.377925 Vertex 407 0.627669 0.473167 0.185486 Vertex 408 0.665479 0.482886 0.191444 Vertex 409 0.356263 0.110505 0.476289 Vertex 410 0.529365 0.698311 0.482614 Vertex 411 0.549223 0.0160208 0.725277 Vertex 412 0.466803 0.0727599 0.704447 Vertex 413 0.407778 0.155186 0.65061 Vertex 414 0.399427 0.168689 0.6794 Vertex 415 0.435111 0.166066 0.534514 Vertex 416 0.661481 0.430056 0.227946 Vertex 417 0.560678 0.0169447 0.756158 Vertex 418 0.635268 0.502544 0.256208 Vertex 419 0.429562 0.104209 0.683765 Vertex 420 0.35676 0.261041 0.21658 Vertex 421 0.374096 0.27538 0.23407 Vertex 422 0.451955 0.81343 0.468708 Vertex 423 0.519332 0.102278 0.714072 Vertex 424 0.521085 0.129985 0.706751 Vertex 425 0.384786 0.428463 0.316738 Vertex 426 0.523969 0.0526939 0.664191 Vertex 427 0.625584 0.521597 0.215052 Vertex 428 0.373148 0.349058 0.480517 Vertex 429 0.595835 0.477218 0.288149 Vertex 430 0.605471 0.456797 0.310981 Vertex 431 0.573026 0.475057 0.509639 Vertex 432 0.602119 0.535646 0.262143 Vertex 433 0.360338 0.33572 0.558649 Vertex 434 0.541826 0.572946 0.445017 Vertex 435 0.544805 0.581795 0.45229 Vertex 436 0.453045 0.268385 0.437448 Vertex 437 0.466081 0.227732 0.470508 Vertex 438 0.392912 0.362876 0.227596 Vertex 439 0.373806 0.353885 0.220886 Vertex 440 0.513829 0.106738 0.698791 Vertex 441 0.511656 0.612735 0.553052 Vertex 442 0.381636 0.46237 0.437116 Vertex 443 0.445855 0.103854 0.662775 Vertex 444 0.409822 0.368852 0.285697 Vertex 445 0.49098 0.348099 0.623846 Vertex 446 0.452986 0.376048 0.408462 Vertex 447 0.462397 0.211806 0.642662 Vertex 448 0.468509 0.197592 0.685856 Vertex 449 0.396395 0.875304 0.397061 Vertex 450 0.375517 0.240164 0.23805 Vertex 451 0.538604 0.402889 0.452705 Vertex 452 0.524573 0.691364 0.442666 Vertex 453 0.412031 0.422179 0.341584 Vertex 454 0.499076 0.315246 0.447291 Vertex 455 0.413861 0.364765 0.320937 Vertex 456 0.429657 0.164721 0.573823 Vertex 457 0.586749 0.488057 0.457751 Vertex 458 0.372521 0.396469 0.283619 Vertex 459 0.490263 0.0615305 0.731502 Vertex 460 0.546327 0.0616905 0.72289 Vertex 461 0.557835 0.00861748 0.738124 Vertex 462 0.501718 0.0430874 0.748127 Vertex 463 0.580453 0.504948 0.472249 Vertex 464 0.375938 0.344107 0.470644 Vertex 465 0.550722 0.570672 0.489863 Vertex 466 0.537023 0.01746 0.731893 Vertex 467 0.359112 0.30324 0.195584 Vertex 468 0.381499 0.232233 0.216805 Vertex 469 0.453507 0.584561 0.534662 Vertex 470 0.421258 0.205972 0.475323 Vertex 471 0.442917 0.119892 0.666329 Vertex 472 0.351057 0.930871 0.321784 Vertex 473 0.338311 0.94637 0.296743 Vertex 474 0.574217 0.421634 0.461885 Vertex 475 0.35419 0.391216 0.436755 Vertex 476 0.360889 0.396119 0.376812 Vertex 477 0.463972 0.654217 0.505624 Vertex 478 0.516678 0.567527 0.407686 Vertex 479 0.618175 0.480446 0.31691 Vertex 480 0.370548 0.361969 0.533407 Vertex 481 0.572428 0.501946 0.391067 Vertex 482 0.445103 0.520075 0.434439 Vertex 483 0.648102 0.42732 0.204391 Vertex 484 0.373267 0.411376 0.555404 Vertex 485 0.344915 0.906475 0.320925 Vertex 486 0.367427 0.240312 0.579053 Vertex 487 0.374517 0.197841 0.474814 Vertex 488 0.384709 0.87133 0.322584 Vertex 489 0.49679 0.171805 0.709529 Vertex 490 0.499882 0.174825 0.73499 Vertex 491 0.606022 0.478687 0.211818 Vertex 492 0.593448 0.440936 0.191794 Vertex 493 0.538752 0.478077 0.399827 Vertex 494 0.495825 0.423861 0.608323 Vertex 495 0.533576 0.0801928 0.716571 Vertex 496 0.526468 0.0731982 0.717098 Vertex 497 0.484862 0.367827 0.628537 Vertex 498 0.410757 0.525269 0.507531 Vertex 499 0.515434 0.107307 0.687775 Vertex 500 0.36443 0.455393 0.504741 Vertex 501 0.531242 0.398281 0.499132 Vertex 502 0.461183 0.193529 0.652494 Vertex 503 0.430936 0.858134 0.415564 Vertex 504 0.394731 0.419342 0.601085 Vertex 505 0.420921 0.44478 0.604828 Vertex 506 0.39569 0.28623 0.235509 Vertex 507 0.421768 0.25458 0.225363 Vertex 508 0.356541 0.131288 0.47437 Vertex 509 0.554269 0.460345 0.342875 Vertex 510 0.38555 0.354525 0.329247 Vertex 511 0.542614 0.548853 0.436861 Vertex 512 0.420737 0.154913 0.615282 Vertex 513 0.468284 0.177396 0.486943 Vertex 514 0.444842 0.129043 0.745278 Vertex 515 0.485703 0.188347 0.462062 Vertex 516 0.355943 0.24351 0.521662 Vertex 517 0.515138 0.189051 0.4633 Vertex 518 0.506402 0.739249 0.493364 Vertex 519 0.525308 0.0489626 0.645635 Vertex 520 0.483399 0.0671038 0.741701 Vertex 521 0.379089 0.213032 0.581386 Vertex 522 0.434839 0.138128 0.633227 Vertex 523 0.369056 0.344373 0.267011 Vertex 524 0.531923 0.101052 0.729115 Vertex 525 0.527001 0.115782 0.7562 Vertex 526 0.44775 0.176022 0.596643 Vertex 527 0.548436 0.507726 0.414391 Vertex 528 0.374913 0.416677 0.378582 Vertex 529 0.483239 0.394935 0.399495 Vertex 530 0.460046 0.210693 0.59868 Vertex 531 0.366083 0.231813 0.487542 Vertex 532 0.361268 0.266727 0.486979 Vertex 533 0.364821 0.235852 0.207056 Vertex 534 0.362961 0.312634 0.499369 Vertex 535 0.474017 0.473884 0.389676 Vertex 536 0.468811 0.496947 0.406804 Vertex 537 0.45494 0.572899 0.447327 Vertex 538 0.645709 0.446219 0.192777 Vertex 539 0.478767 0.773186 0.49151 Vertex 540 0.369802 0.441327 0.431703 Vertex 541 0.477482 0.0490989 0.652707 Vertex 542 0.479934 0.0758101 0.72581 Vertex 543 0.469096 0.532797 0.417536 Vertex 544 0.621841 0.488246 0.268818 Vertex 545 0.415567 0.173125 0.737573 Vertex 546 0.442183 0.809681 0.456152 Vertex 547 0.497388 0.149458 0.793542 Vertex 548 0.522595 0.394503 0.484586 Vertex 549 0.396809 0.399543 0.274788 Vertex 550 0.527967 0.562967 0.565691 Vertex 551 0.324452 0.937451 0.239299 Vertex 552 0.337293 0.941674 0.256321 Vertex 553 0.51133 0.0658245 0.681675 Vertex 554 0.498342 0.063408 0.689889 Vertex 555 0.431398 0.154694 0.739622 Vertex 556 0.505822 0.322317 0.592402 Vertex 557 0.45144 0.272342 0.632931 Vertex 558 0.653344 0.427877 0.197598 Vertex 559 0.477115 0.0560047 0.65016 Vertex 560 0.519521 0.100099 0.671144 Vertex 561 0.440868 0.147474 0.603999 Vertex 562 0.438197 0.53221 0.572988 Vertex 563 0.462652 0.117209 0.641258 Vertex 564 0.50555 0.490888 0.399827 Vertex 565 0.466122 0.165224 0.800063 Vertex 566 0.442988 0.126775 0.665091 Vertex 567 0.4283 0.138744 0.653329 Vertex 568 0.516826 0.0421338 0.659702 Vertex 569 0.463451 0.734274 0.476336 Vertex 570 0.448088 0.818003 0.370705 Vertex 571 0.479294 0.626031 0.423873 Vertex 572 0.478045 0.657954 0.422837 Vertex 573 0.571528 0.503296 0.37895 Vertex 574 0.654978 0.451123 0.219245 Vertex 575 0.526154 0.362271 0.509817 Vertex 576 0.524496 0.350485 0.495342 Vertex 577 0.476126 0.317443 0.632055 Vertex 578 0.538989 0.139544 0.457792 Vertex 579 0.542246 0.140278 0.445485 Vertex 580 0.544823 0.151377 0.443376 Vertex 581 0.531734 0.171686 0.447054 Vertex 582 0.388085 0.341323 0.455281 Vertex 583 0.376246 0.354708 0.457425 Vertex 584 0.47885 0.277281 0.441078 Vertex 585 0.61198 0.507939 0.364682 Vertex 586 0.473052 0.0614239 0.693864 Vertex 587 0.441437 0.174594 0.791522 Vertex 588 0.451079 0.168571 0.798049 Vertex 589 0.393777 0.197509 0.477538 Vertex 590 0.481391 0.0765682 0.706313 Vertex 591 0.510773 0.275362 0.536528 Vertex 592 0.45388 0.0946619 0.72863 Vertex 593 0.526403 0.33989 0.501898 Vertex 594 0.524769 0.334648 0.51 Vertex 595 0.418362 0.156613 0.710512 Vertex 596 0.454852 0.190224 0.474766 Vertex 597 0.481906 0.187624 0.716476 Vertex 598 0.472341 0.554728 0.575102 Vertex 599 0.388784 0.482614 0.565585 Vertex 600 0.608817 0.451384 0.345777 Vertex 601 0.586382 0.422937 0.350278 Vertex 602 0.526605 0.528479 0.414894 Vertex 603 0.476067 0.222129 0.590436 Vertex 604 0.67229 0.464976 0.192048 Vertex 605 0.68561 0.469335 0.216201 Vertex 606 0.381926 0.228265 0.619327 Vertex 607 0.511833 0.281634 0.484497 Vertex 608 0.499568 0.252951 0.488845 Vertex 609 0.408631 0.340482 0.22531 Vertex 610 0.408359 0.374981 0.266804 Vertex 611 0.478732 0.140142 0.64772 Vertex 612 0.470772 0.173167 0.679235 Vertex 613 0.478975 0.159888 0.659346 Vertex 614 0.497293 0.540206 0.380957 Vertex 615 0.467354 0.511848 0.411424 Vertex 616 0.47227 0.514211 0.408966 Vertex 617 0.440708 0.158887 0.586272 Vertex 618 0.526658 0.0647169 0.785049 Vertex 619 0.397112 0.844856 0.381271 Vertex 620 0.441135 0.794809 0.397594 Vertex 621 0.543378 0.00255267 0.73335 Vertex 622 0.505431 0.662823 0.415913 Vertex 623 0.568999 0.406697 0.449483 Vertex 624 0.549034 0.398992 0.447552 Vertex 625 0.524881 0.620902 0.5368 Vertex 626 0.556781 0.0406946 0.750087 Vertex 627 0.494356 0.0564667 0.724679 Vertex 628 0.594537 0.519536 0.237558 Vertex 629 0.355238 0.314559 0.212985 Vertex 630 0.423627 0.170987 0.505464 Vertex 631 0.489558 0.333736 0.62474 Vertex 632 0.549632 0.577578 0.478397 Vertex 633 0.542383 0.54216 0.433717 Vertex 634 0.456907 0.161712 0.652192 Vertex 635 0.51608 0.11407 0.702232 Vertex 636 0.514339 0.591952 0.418211 Vertex 637 0.413126 0.155446 0.687799 Vertex 638 0.664905 0.405963 0.221691 Vertex 639 0.654327 0.425762 0.230996 Vertex 640 0.305642 0.960407 0.222354 Vertex 641 0.464707 0.208353 0.656598 Vertex 642 0.512894 0.371351 0.448245 Vertex 643 0.45131 0.142712 0.783094 Vertex 644 0.457499 0.691145 0.474589 Vertex 645 0.375097 0.385915 0.551015 Vertex 646 0.500367 0.373886 0.604887 Vertex 647 0.432896 0.335483 0.42318 Vertex 648 0.519817 0.448671 0.59627 Vertex 649 0.422733 0.340109 0.645535 Vertex 650 0.54532 0.429357 0.38964 Vertex 651 0.419102 0.248065 0.756146 Vertex 652 0.394417 0.898586 0.331953 Vertex 653 0.390229 0.906173 0.335916 Vertex 654 0.464736 0.23115 0.764491 Vertex 655 0.431741 0.260011 0.729269 Vertex 656 0.48164 0.689735 0.415386 Vertex 657 0.382714 0.343692 0.406016 Vertex 658 0.50369 0.622507 0.560094 Vertex 659 0.573293 0.503853 0.420414 Vertex 660 0.387629 0.275161 0.452432 Vertex 661 0.513883 0.0930569 0.802195 Vertex 662 0.528144 0.0776876 0.79552 Vertex 663 0.54535 0.567296 0.538625 Vertex 664 0.430243 0.794466 0.424821 Vertex 665 0.462361 0.184343 0.664996 Vertex 666 0.446222 0.588511 0.50239 Vertex 667 0.480822 0.784445 0.408948 Vertex 668 0.460697 0.794134 0.380294 Vertex 669 0.388909 0.48689 0.459871 Vertex 670 0.362541 0.125969 0.461938 Vertex 671 0.442177 0.141161 0.754186 Vertex 672 0.457452 0.119987 0.774874 Vertex 673 0.476919 0.106738 0.787122 Vertex 674 0.518443 0.605391 0.549528 Vertex 675 0.509547 0.332451 0.45688 Vertex 676 0.443397 0.489709 0.421326 Vertex 677 0.504679 0.397114 0.445088 Vertex 678 0.377614 0.259584 0.597389 Vertex 679 0.399629 0.172107 0.637504 Vertex 680 0.393019 0.166527 0.51372 Vertex 681 0.483239 0.112382 0.810202 Vertex 682 0.480165 0.17556 0.702232 Vertex 683 0.47975 0.0792097 0.720948 Vertex 684 0.351839 0.373809 0.447256 Vertex 685 0.647913 0.494145 0.231896 Vertex 686 0.362802 0.210989 0.480926 Vertex 687 0.534671 0.40193 0.420633 Vertex 688 0.523051 0.396854 0.433024 Vertex 689 0.572292 0.404334 0.393502 Vertex 690 0.441952 0.210598 0.796711 Vertex 691 0.477814 0.518713 0.407592 Vertex 692 0.394885 0.427119 0.370895 Vertex 693 0.61946 0.510421 0.315038 Vertex 694 0.50876 0.0481986 0.673525 Vertex 695 0.457671 0.225298 0.640133 Vertex 696 0.37213 0.169477 0.467334 Vertex 697 0.358206 0.106685 0.464858 Vertex 698 0.372829 0.0971613 0.478758 Vertex 699 0.426221 0.39872 0.395225 Vertex 700 0.616896 0.530469 0.301612 Vertex 701 0.368849 0.441321 0.551033 Vertex 702 0.519314 0.586675 0.423002 Vertex 703 0.394973 0.252554 0.702872 Vertex 704 0.388464 0.247117 0.673276 Vertex 705 0.517614 0.379346 0.476425 Vertex 706 0.38189 0.383557 0.60086 Vertex 707 0.635747 0.444087 0.192261 Vertex 708 0.393297 0.266538 0.625783 Vertex 709 0.348386 0.897852 0.302482 Vertex 710 0.304511 0.954786 0.239791 Vertex 711 0.657484 0.463282 0.19302 Vertex 712 0.465116 0.142114 0.800158 Vertex 713 0.522323 0.316945 0.536498 Vertex 714 0.528512 0.0515982 0.658174 Vertex 715 0.452536 0.778179 0.401699 Vertex 716 0.485857 0.0851916 0.718786 Vertex 717 0.36472 0.349887 0.560414 Vertex 718 0.44152 0.567273 0.536504 Vertex 719 0.600744 0.471497 0.396653 Vertex 720 0.372811 0.367554 0.515159 Vertex 721 0.392498 0.390292 0.244049 Vertex 722 0.484109 0.25118 0.600789 Vertex 723 0.356518 0.278709 0.197953 Vertex 724 0.501718 0.0718123 0.730833 Vertex 725 0.520623 0.0530138 0.730075 Vertex 726 0.51653 0.117932 0.689913 Vertex 727 0.404136 0.442103 0.601867 Vertex 728 0.400754 0.857785 0.403677 Vertex 729 0.526699 0.115101 0.717234 Vertex 730 0.518011 0.383024 0.534431 Vertex 731 0.518698 0.378488 0.534431 Vertex 732 0.537011 0.500625 0.416434 Vertex 733 0.516607 0.0622649 0.637912 Vertex 734 0.456954 0.141937 0.652245 Vertex 735 0.403034 0.842143 0.366654 Vertex 736 0.450007 0.184088 0.592539 Vertex 737 0.364341 0.222402 0.211546 Vertex 738 0.540268 0.657877 0.462761 Vertex 739 0.594046 0.512535 0.259981 Vertex 740 0.473555 0.489798 0.606457 Vertex 741 0.515642 0.141569 0.705881 Vertex 742 0.511632 0.130826 0.7053 Vertex 743 0.397343 0.900002 0.363563 Vertex 744 0.407133 0.235959 0.745823 Vertex 745 0.667801 0.458657 0.214839 Vertex 746 0.419144 0.164857 0.584205 Vertex 747 0.432109 0.272383 0.6396 Vertex 748 0.342943 0.2559 0.213429 Vertex 749 0.571433 0.432236 0.337574 Vertex 750 0.568259 0.417927 0.357824 Vertex 751 0.408169 0.522059 0.55631 Vertex 752 0.363802 0.884011 0.308494 Vertex 753 0.556923 0.0251891 0.77642 Vertex 754 0.405895 0.875849 0.336851 Vertex 755 0.326152 0.236847 0.226696 Vertex 756 0.32466 0.246857 0.210835 Vertex 757 0.320916 0.239702 0.227732 Vertex 758 0.515506 0.166243 0.788857 Vertex 759 0.500942 0.385879 0.447386 Vertex 760 0.345519 0.285591 0.199084 Vertex 761 0.613857 0.477224 0.285289 Vertex 762 0.647231 0.438271 0.227407 Vertex 763 0.359467 0.292064 0.493275 Vertex 764 0.371016 0.236083 0.20246 Vertex 765 0.438375 0.149731 0.754186 Vertex 766 0.632466 0.513696 0.275386 Vertex 767 0.362541 0.121101 0.461559 Vertex 768 0.41607 0.171005 0.528219 Vertex 769 0.390152 0.22788 0.710559 Vertex 770 0.43093 0.342087 0.647921 Vertex 771 0.490589 0.617141 0.405264 Vertex 772 0.541607 0.618788 0.454351 Vertex 773 0.443521 0.470165 0.61052 Vertex 774 0.477849 0.0748861 0.750834 Vertex 775 0.603131 0.454997 0.185841 Vertex 776 0.415703 0.168843 0.584158 Vertex 777 0.529477 0.548213 0.417548 Vertex 778 0.546925 0.540277 0.555167 Vertex 779 0.529501 0.106602 0.795798 Vertex 780 0.520824 0.144359 0.455547 Vertex 781 0.416028 0.838714 0.354454 Vertex 782 0.447312 0.548119 0.443335 Vertex 783 0.44486 0.576074 0.470929 Vertex 784 0.492911 0.431152 0.38149 Vertex 785 0.590558 0.460445 0.449536 Vertex 786 0.55434 0.468933 0.376895 Vertex 787 0.410692 0.240709 0.217865 Vertex 788 0.414429 0.236699 0.198166 Vertex 789 0.496399 0.0991217 0.813276 Vertex 790 0.552475 0.517599 0.436832 Vertex 791 0.553713 0.54569 0.466463 Vertex 792 0.58698 0.431389 0.198676 Vertex 793 0.683087 0.451005 0.200506 Vertex 794 0.686078 0.470147 0.200909 Vertex 795 0.455023 0.501347 0.414977 Vertex 796 0.541364 0.161931 0.433 Vertex 797 0.53511 0.149583 0.441404 Vertex 798 0.506266 0.176377 0.450407 Vertex 799 0.455503 0.185664 0.628951 Vertex 800 0.311582 0.985472 0.235213 Vertex 801 0.452968 0.81818 0.465231 Vertex 802 0.371567 0.0763787 0.474328 Vertex 803 0.389459 0.0781199 0.469501 Vertex 804 0.428875 0.143015 0.709103 Vertex 805 0.420601 0.142754 0.693348 Vertex 806 0.463416 0.386134 0.628525 Vertex 807 0.470316 0.161398 0.519933 Vertex 808 0.490085 0.185421 0.540668 Vertex 809 0.608391 0.447664 0.208691 Vertex 810 0.500018 0.187417 0.51414 Vertex 811 0.530253 0.398483 0.517949 Vertex 812 0.520783 0.392175 0.528266 Vertex 813 0.385308 0.411862 0.582168 Vertex 814 0.538882 0.0573669 0.71432 Vertex 815 0.548163 0.0291099 0.716411 Vertex 816 0.632431 0.520596 0.255202 Vertex 817 0.44226 0.16744 0.570968 Vertex 818 0.450741 0.589838 0.517854 Vertex 819 0.423592 0.842647 0.348383 Vertex 820 0.412576 0.854545 0.341477 Vertex 821 0.427773 0.172948 0.77684 Vertex 822 0.613911 0.469264 0.309471 Vertex 823 0.50828 0.0852212 0.797723 Vertex 824 0.500391 0.0782857 0.770692 Vertex 825 0.364045 0.191024 0.522029 Vertex 826 0.454206 0.172338 0.563565 Vertex 827 0.486253 0.0935781 0.648111 Vertex 828 0.504175 0.0878864 0.638457 Vertex 829 0.481024 0.112833 0.650741 Vertex 830 0.360071 0.337136 0.248349 Vertex 831 0.356109 0.301617 0.235971 Vertex 832 0.396928 0.340399 0.260698 Vertex 833 0.515304 0.0772789 0.723844 Vertex 834 0.523625 0.571407 0.422078 Vertex 835 0.399131 0.22024 0.470751 Vertex 836 0.381055 0.259875 0.230421 Vertex 837 0.462995 0.661715 0.438425 Vertex 838 0.398859 0.329075 0.202904 Vertex 839 0.398261 0.345895 0.217966 Vertex 840 0.403443 0.335939 0.203686 Vertex 841 0.368292 0.366719 0.327156 Vertex 842 0.369216 0.273064 0.195199 Vertex 843 0.395874 0.85403 0.356218 Vertex 844 0.434981 0.822747 0.35966 Vertex 845 0.421104 0.264933 0.662912 Vertex 846 0.322249 0.958624 0.218647 Vertex 847 0.498395 0.206772 0.485605 Vertex 848 0.510945 0.0301345 0.735417 Vertex 849 0.517454 0.0293764 0.725354 Vertex 850 0.520214 0.0209129 0.725034 Vertex 851 0.509997 0.299568 0.472853 Vertex 852 0.340461 0.289251 0.226299 Vertex 853 0.50472 0.176335 0.756134 Vertex 854 0.357998 0.373601 0.471651 Vertex 855 0.436722 0.519098 0.447404 Vertex 856 0.497892 0.778635 0.43939 Vertex 857 0.359124 0.893984 0.341667 Vertex 858 0.489612 0.215834 0.555125 Vertex 859 0.497815 0.240519 0.532418 Vertex 860 0.495866 0.712253 0.523309 Vertex 861 0.398823 0.253887 0.217533 Vertex 862 0.59574 0.45123 0.404915 Vertex 863 0.582982 0.425715 0.434931 Vertex 864 0.430942 0.179202 0.490693 Vertex 865 0.466845 0.21446 0.78698 Vertex 866 0.472975 0.216621 0.778954 Vertex 867 0.365372 0.0903087 0.468305 Vertex 868 0.373942 0.0923758 0.470644 Vertex 869 0.451333 0.24325 0.716826 Vertex 870 0.559304 0.55397 0.500844 Vertex 871 0.362802 0.312266 0.198652 Vertex 872 0.441988 0.772641 0.422375 Vertex 873 0.366166 0.173818 0.491018 Vertex 874 0.459157 0.818488 0.455956 Vertex 875 0.423479 0.218499 0.785298 Vertex 876 0.494006 0.318876 0.615276 Vertex 877 0.540126 0.526767 0.427409 Vertex 878 0.440412 0.0986064 0.662556 Vertex 879 0.365556 0.236794 0.235402 Vertex 880 0.478009 0.55718 0.410121 Vertex 881 0.661967 0.453552 0.204237 Vertex 882 0.651987 0.449731 0.195738 Vertex 883 0.370975 0.366275 0.493032 Vertex 884 0.488575 0.175601 0.471758 Vertex 885 0.515138 0.665997 0.425597 Vertex 886 0.360788 0.349846 0.391174 Vertex 887 0.485869 0.079648 0.727427 Vertex 888 0.43693 0.131655 0.667472 Vertex 889 0.516607 0.124879 0.689866 Vertex 890 0.537283 0.577406 0.538583 Vertex 891 0.367291 0.459326 0.481578 Vertex 892 0.344501 0.925789 0.316258 Vertex 893 0.454011 0.175423 0.621589 Vertex 894 0.45654 0.17643 0.646316 Vertex 895 0.505319 0.5609 0.575884 Vertex 896 0.639834 0.436015 0.210811 Vertex 897 0.541553 0.556819 0.440409 Vertex 898 0.552504 0.429908 0.528219 Vertex 899 0.43873 0.548527 0.482294 Vertex 900 0.43982 0.561782 0.486517 Vertex 901 0.425268 0.156382 0.60487 Vertex 902 0.366639 0.361442 0.241876 Vertex 903 0.538284 0.586628 0.441298 Vertex 904 0.545066 0.601624 0.463821 Vertex 905 0.452115 0.394052 0.398897 Vertex 906 0.357365 0.936799 0.301138 Vertex 907 0.445938 0.432372 0.634548 Vertex 908 0.463487 0.230291 0.7562 Vertex 909 0.369814 0.0844868 0.479771 Vertex 910 0.418392 0.26341 0.722837 Vertex 911 0.396715 0.243646 0.719023 Vertex 912 0.401169 0.245915 0.731324 Vertex 913 0.530099 0.0501827 0.726426 Vertex 914 0.58226 0.490687 0.309524 Vertex 915 0.494356 0.260337 0.592485 Vertex 916 0.485709 0.201785 0.475566 Vertex 917 0.326661 0.266549 0.229414 Vertex 918 0.328853 0.254977 0.233779 Vertex 919 0.432576 0.114858 0.710559 Vertex 920 0.352218 0.201797 0.481009 Vertex 921 0.352455 0.21549 0.513826 Vertex 922 0.489102 0.571715 0.391144 Vertex 923 0.532089 0.091671 0.780962 Vertex 924 0.601935 0.528692 0.246418 Vertex 925 0.406564 0.265815 0.655793 Vertex 926 0.536336 0.153142 0.457887 Vertex 927 0.450925 0.180197 0.60285 Vertex 928 0.455325 0.14058 0.793163 Vertex 929 0.564131 0.492736 0.349946 Vertex 930 0.452299 0.624112 0.492161 Vertex 931 0.406155 0.363243 0.349881 Vertex 932 0.395755 0.355478 0.331331 Vertex 933 0.492982 0.0861806 0.776982 Vertex 934 0.382293 0.354661 0.308263 Vertex 935 0.505046 0.0957754 0.717779 Vertex 936 0.544994 0.610395 0.503355 Vertex 937 0.438967 0.443128 0.402628 Vertex 938 0.437344 0.416405 0.404749 Vertex 939 0.473342 0.662829 0.514057 Vertex 940 0.430746 0.167931 0.532364 Vertex 941 0.360509 0.437027 0.513134 Vertex 942 0.354451 0.402824 0.500157 Vertex 943 0.494356 0.0402563 0.67879 Vertex 944 0.522388 0.0222218 0.640115 Vertex 945 0.515221 0.0204273 0.655574 Vertex 946 0.494889 0.0286953 0.645037 Vertex 947 0.485501 0.184467 0.791848 Vertex 948 0.654907 0.416316 0.209941 Vertex 949 0.497133 0.464035 0.389853 Vertex 950 0.357181 0.41888 0.453315 Vertex 951 0.62087 0.498978 0.315251 Vertex 952 0.479223 0.803705 0.459 Vertex 953 0.501487 0.0420509 0.733036 Vertex 954 0.538657 0.641483 0.509225 Vertex 955 0.546007 0.6214 0.483763 Vertex 956 0.467183 0.193499 0.482478 Vertex 957 0.544953 0.613375 0.467813 Vertex 958 0.547156 0.595393 0.49867 Vertex 959 0.618139 0.534307 0.246833 Vertex 960 0.421104 0.143417 0.646701 Vertex 961 0.535856 0.400076 0.436015 Vertex 962 0.424871 0.143802 0.637669 Vertex 963 0.52975 0.0797546 0.712881 Vertex 964 0.416058 0.192818 0.76657 Vertex 965 0.54853 0.152165 0.421711 Vertex 966 0.553304 0.157075 0.439183 Vertex 967 0.441762 0.159551 0.783118 Vertex 968 0.432719 0.187203 0.795165 Vertex 969 0.528932 0.401148 0.474589 Vertex 970 0.385148 0.404642 0.282949 Vertex 971 0.391331 0.255954 0.208282 Vertex 972 0.426577 0.159331 0.729257 Vertex 973 0.678136 0.457022 0.215247 Vertex 974 0.44531 0.106874 0.737016 Vertex 975 0.414731 0.388852 0.370054 Vertex 976 0.481965 0.366678 0.421984 Vertex 977 0.504519 0.422315 0.410162 Vertex 978 0.386178 0.302429 0.451822 Vertex 979 0.59327 0.427018 0.206032 Vertex 980 0.605791 0.441487 0.205208 Vertex 981 0.570646 0.521165 0.49918 Vertex 982 0.506586 0.532584 0.588588 Vertex 983 0.554962 0.0326931 0.778966 Vertex 984 0.482611 0.230113 0.485279 Vertex 985 0.478927 0.239637 0.468471 Vertex 986 0.474989 0.23327 0.471254 Vertex 987 0.465104 0.0967289 0.760316 Vertex 988 0.466803 0.0660969 0.696061 Vertex 989 0.418753 0.138578 0.676024 Vertex 990 0.503962 0.583779 0.570098 Vertex 991 0.369239 0.89293 0.355828 Vertex 992 0.450096 0.0980615 0.718567 Vertex 993 0.407085 0.35183 0.244079 Vertex 994 0.511537 0.435932 0.415196 Vertex 995 0.478637 0.616223 0.540307 Vertex 996 0.456587 0.725881 0.44536 Vertex 997 0.669447 0.467002 0.217119 Vertex 998 0.495161 0.287972 0.450679 Vertex 999 0.504288 0.278886 0.468394 Vertex 1000 0.591055 0.47851 0.437472 Vertex 1001 0.43873 0.211427 0.469187 Vertex 1002 0.51881 0.181216 0.465545 Vertex 1003 0.355327 0.286598 0.519974 Vertex 1004 0.368932 0.415487 0.549043 Vertex 1005 0.596202 0.528029 0.276819 Vertex 1006 0.598352 0.524262 0.272561 Vertex 1007 0.51239 0.392584 0.57159 Vertex 1008 0.510992 0.407704 0.584188 Vertex 1009 0.62116 0.48952 0.362479 Vertex 1010 0.446311 0.380034 0.641578 Vertex 1011 0.457854 0.759789 0.412063 Vertex 1012 0.351063 0.917521 0.329033 Vertex 1013 0.373516 0.434149 0.414308 Vertex 1014 0.458399 0.477929 0.61819 Vertex 1015 0.36815 0.3215 0.491054 Vertex 1016 0.551403 0.567113 0.472386 Vertex 1017 0.427157 0.177585 0.493073 Vertex 1018 0.504655 0.174239 0.772759 Vertex 1019 0.513918 0.145703 0.791345 Vertex 1020 0.513835 0.126188 0.790456 Vertex 1021 0.45494 0.82389 0.387395 Vertex 1022 0.460312 0.833982 0.419875 Vertex 1023 0.491921 0.743673 0.50541 Vertex 1024 0.523815 0.0178983 0.753984 Vertex 1025 0.383004 0.217557 0.671203 Vertex 1026 0.392196 0.191035 0.609815 Vertex 1027 0.384526 0.21446 0.593427 Vertex 1028 0.331607 0.922147 0.299935 Vertex 1029 0.332939 0.916816 0.300196 Vertex 1030 0.551154 0.458758 0.366488 Vertex 1031 0.548809 0.44889 0.372488 Vertex 1032 0.496263 0.560989 0.381017 Vertex 1033 0.514753 0.326913 0.467932 Vertex 1034 0.507658 0.0349792 0.741571 Vertex 1035 0.536649 0.054299 0.712668 Vertex 1036 0.447306 0.13904 0.631374 Vertex 1037 0.499212 0.774424 0.472249 Vertex 1038 0.611026 0.497006 0.227407 Vertex 1039 0.612146 0.4858 0.223675 Vertex 1040 0.524401 0.0453676 0.65924 Vertex 1041 0.413695 0.399016 0.299556 Vertex 1042 0.508232 0.623911 0.555469 Vertex 1043 0.515357 0.641264 0.536664 Vertex 1044 0.466365 0.58006 0.430933 Vertex 1045 0.373539 0.31075 0.471977 Vertex 1046 0.372284 0.316495 0.478995 Vertex 1047 0.374937 0.318005 0.472249 Vertex 1048 0.493692 0.60744 0.402072 Vertex 1049 0.500954 0.61636 0.40944 Vertex 1050 0.412564 0.284939 0.639328 Vertex 1051 0.457138 0.281445 0.632825 Vertex 1052 0.43273 0.146331 0.727078 Vertex 1053 0.478803 0.11365 0.803871 Vertex 1054 0.367208 0.239501 0.483899 Vertex 1055 0.499568 0.739729 0.418134 Vertex 1056 0.364501 0.361265 0.366571 Vertex 1057 0.359935 0.360809 0.382444 Vertex 1058 0.494125 0.738461 0.410405 Vertex 1059 0.416443 0.391405 0.374253 Vertex 1060 0.408169 0.511908 0.474778 Vertex 1061 0.433791 0.503225 0.444229 Vertex 1062 0.431931 0.529675 0.481009 Vertex 1063 0.368055 0.877128 0.337574 Vertex 1064 0.596202 0.514502 0.366423 Vertex 1065 0.66635 0.486345 0.193807 Vertex 1066 0.562194 0.536966 0.470088 Vertex 1067 0.57395 0.515698 0.44112 Vertex 1068 0.532604 0.574415 0.433894 Vertex 1069 0.388222 0.269055 0.198036 Vertex 1070 0.458766 0.232767 0.774317 Vertex 1071 0.465743 0.67728 0.499405 Vertex 1072 0.550597 0.433888 0.372186 Vertex 1073 0.551018 0.447203 0.357036 Vertex 1074 0.554554 0.449275 0.34493 Vertex 1075 0.512136 0.384718 0.565496 Vertex 1076 0.359467 0.229314 0.501513 Vertex 1077 0.51948 0.399016 0.557192 Vertex 1078 0.355209 0.108817 0.461328 Vertex 1079 0.360225 0.257873 0.212635 Vertex 1080 0.368239 0.342265 0.41015 Vertex 1081 0.395844 0.333896 0.446954 Vertex 1082 0.516187 0.145188 0.71095 Vertex 1083 0.476783 0.404032 0.620967 Vertex 1084 0.374552 0.181707 0.53654 Vertex 1085 0.502707 0.134593 0.660762 Vertex 1086 0.352869 0.172551 0.478367 Vertex 1087 0.482161 0.175642 0.493364 Vertex 1088 0.4508 0.411175 0.632588 Vertex 1089 0.553026 0.00355953 0.739462 Vertex 1090 0.487225 0.605296 0.553123 Vertex 1091 0.484968 0.703831 0.404992 Vertex 1092 0.387854 0.316027 0.201673 Vertex 1093 0.489268 0.174061 0.511665 Vertex 1094 0.686285 0.456234 0.213921 Vertex 1095 0.48058 0.609655 0.424388 Vertex 1096 0.550775 0.459652 0.546863 Vertex 1097 0.459791 0.202135 0.620239 Vertex 1098 0.460431 0.207933 0.629561 Vertex 1099 0.541091 0.0187689 0.729986 Vertex 1100 0.442485 0.542587 0.451556 Vertex 1101 0.55376 0.148913 0.435079 Vertex 1102 0.548856 0.145472 0.423654 Vertex 1103 0.553114 0.146835 0.41477 Vertex 1104 0.375648 0.219026 0.2264 Vertex 1105 0.375204 0.235906 0.237629 Vertex 1106 0.455029 0.119602 0.640139 Vertex 1107 0.359627 0.249006 0.505025 Vertex 1108 0.505224 0.493008 0.603798 Vertex 1109 0.548992 0.567207 0.498173 Vertex 1110 0.486046 0.452912 0.607606 Vertex 1111 0.429378 0.452166 0.400248 Vertex 1112 0.420435 0.474204 0.41185 Vertex 1113 0.323617 0.967846 0.256131 Vertex 1114 0.331708 0.958269 0.2533 Vertex 1115 0.349878 0.116528 0.455725 Vertex 1116 0.468148 0.100537 0.65587 Vertex 1117 0.412333 0.48779 0.589127 Vertex 1118 0.629635 0.460718 0.185539 Vertex 1119 0.556283 0.404844 0.490888 Vertex 1120 0.63891 0.44353 0.20923 Vertex 1121 0.631187 0.447818 0.199357 Vertex 1122 0.498188 0.662515 0.542066 Vertex 1123 0.415519 0.223669 0.770657 Vertex 1124 0.522577 0.367519 0.499274 Vertex 1125 0.509749 0.600439 0.416026 Vertex 1126 0.49108 0.0660969 0.643183 Vertex 1127 0.513764 0.716506 0.499186 Vertex 1128 0.599767 0.458521 0.305313 Vertex 1129 0.531461 0.610301 0.536664 Vertex 1130 0.52606 0.145378 0.768619 Vertex 1131 0.38696 0.179913 0.489508 Vertex 1132 0.420796 0.371309 0.429434 Vertex 1133 0.491501 0.416132 0.385749 Vertex 1134 0.492656 0.420462 0.384114 Vertex 1135 0.497566 0.0477663 0.681242 Vertex 1136 0.383898 0.426284 0.361863 Vertex 1137 0.494723 0.129167 0.646559 Vertex 1138 0.401826 0.172361 0.696073 Vertex 1139 0.395151 0.188234 0.566449 Vertex 1140 0.437978 0.843725 0.37189 Vertex 1141 0.44149 0.851768 0.383137 Vertex 1142 0.434472 0.146385 0.600836 Vertex 1143 0.381399 0.446373 0.580445 Vertex 1144 0.382121 0.437087 0.584306 Vertex 1145 0.518769 0.661413 0.524233 Vertex 1146 0.524674 0.327541 0.532394 Vertex 1147 0.64244 0.438715 0.216941 Vertex 1148 0.466093 0.205629 0.586249 Vertex 1149 0.442556 0.568812 0.478486 Vertex 1150 0.520741 0.366133 0.548948 Vertex 1151 0.404242 0.235728 0.46349 Vertex 1152 0.392308 0.252827 0.45964 Vertex 1153 0.387049 0.237078 0.471693 Vertex 1154 0.439482 0.801733 0.451609 Vertex 1155 0.679569 0.448174 0.202679 Vertex 1156 0.693037 0.461494 0.2091 Vertex 1157 0.64385 0.510516 0.218072 Vertex 1158 0.665651 0.493002 0.20766 Vertex 1159 0.449882 0.323371 0.637764 Vertex 1160 0.3997 0.44924 0.393893 Vertex 1161 0.55238 0.0566325 0.758225 Vertex 1162 0.654309 0.482614 0.220441 Vertex 1163 0.405498 0.275457 0.200755 Vertex 1164 0.418101 0.252376 0.199309 Vertex 1165 0.477067 0.213423 0.490142 Vertex 1166 0.329078 0.935935 0.240105 Vertex 1167 0.398764 0.30847 0.237961 Vertex 1168 0.52003 0.0899534 0.679495 Vertex 1169 0.465939 0.729743 0.421859 Vertex 1170 0.474704 0.722156 0.414675 Vertex 1171 0.475362 0.284833 0.622578 Vertex 1172 0.348741 0.128297 0.472261 Vertex 1173 0.433489 0.256972 0.441309 Vertex 1174 0.491394 0.526193 0.386199 Vertex 1175 0.492656 0.716269 0.405371 Vertex 1176 0.444665 0.171414 0.590389 Vertex 1177 0.457866 0.130743 0.648247 Vertex 1178 0.318577 0.940827 0.275007 Vertex 1179 0.538438 0.487257 0.580042 Vertex 1180 0.473318 0.69554 0.499132 Vertex 1181 0.477737 0.720089 0.495212 Vertex 1182 0.380688 0.233933 0.597218 Vertex 1183 0.50456 0.42992 0.604117 Vertex 1184 0.461515 0.196467 0.633991 Vertex 1185 0.660291 0.418555 0.209639 Vertex 1186 0.644886 0.427829 0.20034 Vertex 1187 0.412943 0.164188 0.613215 Vertex 1188 0.505715 0.168843 0.473203 Vertex 1189 0.454378 0.589921 0.449489 Vertex 1190 0.435757 0.49013 0.592977 Vertex 1191 0.421418 0.54431 0.524108 Vertex 1192 0.39216 0.27811 0.617396 Vertex 1193 0.394654 0.273745 0.623579 Vertex 1194 0.518052 0.478077 0.408954 Vertex 1195 0.537828 0.630947 0.515745 Vertex 1196 0.543348 0.632049 0.500702 Vertex 1197 0.556597 0.0421338 0.733119 Vertex 1198 0.475379 0.697713 0.423897 Vertex 1199 0.512598 0.393395 0.446065 Vertex 1200 0.610345 0.524144 0.216793 Vertex 1201 0.603114 0.524458 0.209502 Vertex 1202 0.466057 0.6387 0.515556 Vertex 1203 0.523513 0.138022 0.708421 Vertex 1204 0.40859 0.368745 0.262794 Vertex 1205 0.466928 0.193624 0.673276 Vertex 1206 0.51412 0.021138 0.636147 Vertex 1207 0.502411 0.0361223 0.630675 Vertex 1208 0.443622 0.359654 0.416268 Vertex 1209 0.441585 0.346138 0.417109 Vertex 1210 0.506166 0.264784 0.518032 Vertex 1211 0.509127 0.269558 0.538583 Vertex 1212 0.459892 0.218825 0.664973 Vertex 1213 0.474995 0.198776 0.698033 Vertex 1214 0.464505 0.209562 0.67128 Vertex 1215 0.444866 0.506802 0.429192 Vertex 1216 0.456474 0.51186 0.420853 Vertex 1217 0.460294 0.504919 0.414598 Vertex 1218 0.443421 0.244979 0.673282 Vertex 1219 0.369056 0.292135 0.586207 Vertex 1220 0.373332 0.337165 0.600824 Vertex 1221 0.52237 0.390345 0.459818 Vertex 1222 0.524893 0.385779 0.451556 Vertex 1223 0.473135 0.540165 0.414255 Vertex 1224 0.434152 0.38951 0.421818 Vertex 1225 0.444137 0.198083 0.800797 Vertex 1226 0.533339 0.592396 0.540804 Vertex 1227 0.482481 0.377013 0.417151 Vertex 1228 0.474384 0.365458 0.414853 Vertex 1229 0.380113 0.246857 0.205291 Vertex 1230 0.382684 0.234993 0.223379 Vertex 1231 0.317659 0.950185 0.226832 Vertex 1232 0.506627 0.162678 0.455151 Vertex 1233 0.455438 0.194192 0.584241 Vertex 1234 0.392616 0.173955 0.54065 Vertex 1235 0.413038 0.170513 0.522 Vertex 1236 0.58528 0.471592 0.474316 Vertex 1237 0.546558 0.0210018 0.774465 Vertex 1238 0.365396 0.387644 0.293995 Vertex 1239 0.335119 0.264743 0.202407 Vertex 1240 0.504614 0.678145 0.534591 Vertex 1241 0.500462 0.675243 0.540555 Vertex 1242 0.50748 0.0880285 0.807401 Vertex 1243 0.410556 0.355087 0.630349 Vertex 1244 0.360669 0.409979 0.352031 Vertex 1245 0.406197 0.293344 0.436725 Vertex 1246 0.493645 0.236711 0.497119 Vertex 1247 0.320141 0.980248 0.200038 Vertex 1248 0.382684 0.399839 0.584205 Vertex 1249 0.456042 0.228561 0.633831 Vertex 1250 0.53553 0.11763 0.785155 Vertex 1251 0.466561 0.618231 0.528698 Vertex 1252 0.446015 0.597081 0.488951 Vertex 1253 0.449888 0.601434 0.506014 Vertex 1254 0.498188 0.159835 0.698927 Vertex 1255 0.358046 0.188495 0.459125 Vertex 1256 0.35223 0.174185 0.455998 Vertex 1257 0.37425 0.387632 0.240715 Vertex 1258 0.457499 0.170513 0.486926 Vertex 1259 0.416935 0.151922 0.62978 Vertex 1260 0.492342 0.197361 0.540668 Vertex 1261 0.55514 0.034464 0.727842 Vertex 1262 0.447916 0.348892 0.639132 Vertex 1263 0.492537 0.184171 0.729121 Vertex 1264 0.463937 0.804416 0.474186 Vertex 1265 0.462361 0.598088 0.5368 Vertex 1266 0.408021 0.422801 0.318995 Vertex 1267 0.398184 0.427776 0.358653 Vertex 1268 0.590931 0.427693 0.194133 Vertex 1269 0.543295 0.623562 0.507803 Vertex 1270 0.503554 0.426064 0.404601 Vertex 1271 0.377946 0.418395 0.305746 Vertex 1272 0.473709 0.502763 0.405673 Vertex 1273 0.507871 0.511369 0.399075 Vertex 1274 0.507457 0.520886 0.396765 Vertex 1275 0.572511 0.52736 0.486748 Vertex 1276 0.570462 0.535574 0.479274 Vertex 1277 0.553932 0.0168914 0.729269 Vertex 1278 0.424978 0.165017 0.760334 Vertex 1279 0.46126 0.623331 0.516166 Vertex 1280 0.370625 0.192534 0.551939 Vertex 1281 0.641113 0.439367 0.192013 Vertex 1282 0.502476 0.412543 0.424714 Vertex 1283 0.358129 0.165604 0.478504 Vertex 1284 0.522186 0.0362289 0.770059 Vertex 1285 0.445837 0.442358 0.399525 Vertex 1286 0.428211 0.194779 0.785232 Vertex 1287 0.601283 0.525234 0.264968 Vertex 1288 0.514813 0.0932464 0.689433 Vertex 1289 0.49204 0.225233 0.502123 Vertex 1290 0.598677 0.43364 0.356165 Vertex 1291 0.500462 0.636443 0.408231 Vertex 1292 0.519871 0.621264 0.428333 Vertex 1293 0.494415 0.643474 0.403866 Vertex 1294 0.509156 0.640524 0.418146 Vertex 1295 0.516583 0.0230392 0.733391 Vertex 1296 0.398456 0.18776 0.572242 Vertex 1297 0.402519 0.182714 0.573847 Vertex 1298 0.555738 0.154285 0.434167 Vertex 1299 0.581881 0.502331 0.319658 Vertex 1300 0.5855 0.502384 0.307351 Vertex 1301 0.447134 0.765362 0.447605 Vertex 1302 0.45218 0.469584 0.404992 Vertex 1303 0.462699 0.773464 0.386158 Vertex 1304 0.531236 0.147676 0.443986 Vertex 1305 0.416212 0.247644 0.223296 Vertex 1306 0.365111 0.248367 0.572028 Vertex 1307 0.467111 0.445017 0.614654 Vertex 1308 0.450919 0.0877561 0.660027 Vertex 1309 0.455479 0.0815491 0.659743 Vertex 1310 0.44932 0.252145 0.629721 Vertex 1311 0.615545 0.542084 0.271335 Vertex 1312 0.389489 0.502206 0.497207 Vertex 1313 0.381132 0.488975 0.503355 Vertex 1314 0.455621 0.23969 0.7562 Vertex 1315 0.479324 0.211534 0.766558 Vertex 1316 0.471163 0.220755 0.737519 Vertex 1317 0.378064 0.351771 0.364504 Vertex 1318 0.348374 0.10187 0.463987 Vertex 1319 0.352792 0.0950706 0.447884 Vertex 1320 0.355854 0.087454 0.439414 Vertex 1321 0.392729 0.38624 0.613422 Vertex 1322 0.645111 0.50544 0.194625 Vertex 1323 0.603759 0.484746 0.273473 Vertex 1324 0.616712 0.493417 0.24813 Vertex 1325 0.506746 0.415185 0.436832 Vertex 1326 0.456522 0.716932 0.464123 Vertex 1327 0.380445 0.903395 0.309376 Vertex 1328 0.373071 0.337142 0.486748 Vertex 1329 0.373415 0.342087 0.478486 Vertex 1330 0.483032 0.0681935 0.700669 Vertex 1331 0.506 0.148765 0.703719 Vertex 1332 0.354042 0.905877 0.335276 Vertex 1333 0.616742 0.467878 0.342756 Vertex 1334 0.532658 0.0107674 0.731467 Vertex 1335 0.508967 0.103173 0.800531 Vertex 1336 0.486307 0.675574 0.408474 Vertex 1337 0.37714 0.323271 0.258116 Vertex 1338 0.530893 0.667194 0.505416 Vertex 1339 0.432399 0.167742 0.507531 Vertex 1340 0.370353 0.354762 0.283536 Vertex 1341 0.363068 0.197947 0.469099 Vertex 1342 0.372716 0.207696 0.481483 Vertex 1343 0.606703 0.48952 0.199226 Vertex 1344 0.449569 0.526442 0.433515 Vertex 1345 0.582195 0.494074 0.405211 Vertex 1346 0.587946 0.491729 0.399786 Vertex 1347 0.515168 0.306948 0.479593 Vertex 1348 0.533712 0.450987 0.401444 Vertex 1349 0.53017 0.138727 0.445183 Vertex 1350 0.539261 0.122569 0.433201 Vertex 1351 0.543745 0.126159 0.447333 Vertex 1352 0.44746 0.525192 0.580172 Vertex 1353 0.613229 0.503669 0.191805 Vertex 1354 0.521286 0.612824 0.428919 Vertex 1355 0.499473 0.595784 0.403807 Vertex 1356 0.365064 0.882459 0.322951 Vertex 1357 0.467171 0.108426 0.779185 Vertex 1358 0.542886 0.0612285 0.791345 Vertex 1359 0.368955 0.297205 0.48034 Vertex 1360 0.464648 0.122214 0.643947 Vertex 1361 0.440211 0.252732 0.74789 Vertex 1362 0.43937 0.254769 0.718887 Vertex 1363 0.444321 0.252637 0.729257 Vertex 1364 0.43507 0.259857 0.729293 Vertex 1365 0.503465 0.190029 0.490693 Vertex 1366 0.456587 0.804072 0.37847 Vertex 1367 0.596391 0.513163 0.224273 Vertex 1368 0.3548 0.266455 0.542569 Vertex 1369 0.354924 0.249859 0.524872 Vertex 1370 0.536193 0.507566 0.419247 Vertex 1371 0.514771 0.0487731 0.664996 Vertex 1372 0.526676 0.546531 0.413491 Vertex 1373 0.420613 0.372832 0.325089 Vertex 1374 0.360462 0.441505 0.477615 Vertex 1375 0.44117 0.395847 0.645931 Vertex 1376 0.54853 0.592953 0.485279 Vertex 1377 0.360326 0.244203 0.495478 Vertex 1378 0.392237 0.344782 0.446053 Vertex 1379 0.408436 0.345025 0.440042 Vertex 1380 0.493023 0.666773 0.405839 Vertex 1381 0.505893 0.689137 0.417832 Vertex 1382 0.454609 0.663024 0.455773 Vertex 1383 0.452648 0.649438 0.478628 Vertex 1384 0.419973 0.405477 0.318669 Vertex 1385 0.494356 0.58401 0.397932 Vertex 1386 0.493787 0.578004 0.39304 Vertex 1387 0.469635 0.42 0.373821 Vertex 1388 0.50151 0.292757 0.454002 Vertex 1389 0.415543 0.428647 0.607997 Vertex 1390 0.40134 0.437353 0.601221 Vertex 1391 0.507551 0.119371 0.794886 Vertex 1392 0.55376 0.561237 0.521946 Vertex 1393 0.364087 0.403096 0.387218 Vertex 1394 0.599779 0.465995 0.186605 Vertex 1395 0.592174 0.448831 0.186339 Vertex 1396 0.593661 0.440374 0.187233 Vertex 1397 0.36902 0.337035 0.501519 Vertex 1398 0.633064 0.452207 0.204225 Vertex 1399 0.405788 0.167102 0.625202 Vertex 1400 0.404361 0.17155 0.611035 Vertex 1401 0.403372 0.177301 0.592598 Vertex 1402 0.481273 0.791451 0.414272 Vertex 1403 0.629363 0.49241 0.253851 Vertex 1404 0.321384 0.252323 0.218588 Vertex 1405 0.465986 0.375982 0.405359 Vertex 1406 0.52237 0.449583 0.409973 Vertex 1407 0.52115 0.303134 0.497172 Vertex 1408 0.519219 0.295659 0.496212 Vertex 1409 0.541417 0.638054 0.46192 Vertex 1410 0.390745 0.21488 0.710548 Vertex 1411 0.455533 0.0993941 0.723708 Vertex 1412 0.47102 0.0787477 0.712934 Vertex 1413 0.590285 0.499784 0.273064 Vertex 1414 0.596747 0.495916 0.267704 Vertex 1415 0.497388 0.105731 0.807271 Vertex 1416 0.528962 0.0660969 0.795052 Vertex 1417 0.502955 0.419455 0.407906 Vertex 1418 0.487882 0.559638 0.388047 Vertex 1419 0.491649 0.571063 0.388983 Vertex 1420 0.512734 0.287006 0.542729 Vertex 1421 0.415661 0.539146 0.542735 Vertex 1422 0.440827 0.139342 0.615465 Vertex 1423 0.324061 0.95577 0.277293 Vertex 1424 0.390289 0.437578 0.392139 Vertex 1425 0.476114 0.154818 0.798671 Vertex 1426 0.517454 0.557115 0.573545 Vertex 1427 0.518094 0.567693 0.569215 Vertex 1428 0.521422 0.564933 0.568653 Vertex 1429 0.533978 0.122161 0.433598 Vertex 1430 0.33904 0.118868 0.464254 Vertex 1431 0.468189 0.561747 0.427095 Vertex 1432 0.46842 0.547023 0.423642 Vertex 1433 0.552327 0.452343 0.368733 Vertex 1434 0.523584 0.708978 0.492985 Vertex 1435 0.608219 0.459622 0.214021 Vertex 1436 0.334781 0.913417 0.274977 Vertex 1437 0.326371 0.927335 0.257138 Vertex 1438 0.318719 0.932067 0.269226 Vertex 1439 0.397911 0.359612 0.229556 Vertex 1440 0.483132 0.465646 0.382918 Vertex 1441 0.616327 0.500352 0.185918 Vertex 1442 0.521908 0.645991 0.528219 Vertex 1443 0.41681 0.238233 0.21674 Vertex 1444 0.425499 0.247686 0.219109 Vertex 1445 0.425517 0.239305 0.213559 Vertex 1446 0.418403 0.231446 0.208803 Vertex 1447 0.420459 0.231653 0.198895 Vertex 1448 0.416147 0.865858 0.416363 Vertex 1449 0.358466 0.281717 0.497136 Vertex 1450 0.415513 0.161689 0.710601 Vertex 1451 0.450048 0.101568 0.728712 Vertex 1452 0.470736 0.220418 0.768637 Vertex 1453 0.642327 0.508378 0.237931 Vertex 1454 0.635131 0.517457 0.221454 Vertex 1455 0.451523 0.484794 0.6094 Vertex 1456 0.415176 0.223178 0.469507 Vertex 1457 0.410692 0.223504 0.469069 Vertex 1458 0.520457 0.107206 0.794744 Vertex 1459 0.518212 0.100916 0.796936 Vertex 1460 0.384496 0.205185 0.477479 Vertex 1461 0.42477 0.121687 0.68081 Vertex 1462 0.427122 0.136209 0.701936 Vertex 1463 0.377537 0.397961 0.55519 Vertex 1464 0.374653 0.344788 0.424305 Vertex 1465 0.407654 0.178485 0.582144 Vertex 1466 0.52202 0.121728 0.793092 Vertex 1467 0.427051 0.152467 0.718934 Vertex 1468 0.519195 0.0764616 0.792855 Vertex 1469 0.30261 0.985116 0.20782 Vertex 1470 0.409673 0.237469 0.202703 Vertex 1471 0.640699 0.430578 0.194328 Vertex 1472 0.479099 0.52935 0.398536 Vertex 1473 0.477127 0.529835 0.405821 Vertex 1474 0.695643 0.451188 0.216497 Vertex 1475 0.364501 0.290151 0.231949 Vertex 1476 0.370501 0.270701 0.232684 Vertex 1477 0.46787 0.301825 0.633458 Vertex 1478 0.446127 0.0844394 0.662829 Vertex 1479 0.524431 0.603857 0.431282 Vertex 1480 0.402928 0.336301 0.237724 Vertex 1481 0.449083 0.292094 0.427433 Vertex 1482 0.327799 0.931682 0.247668 Vertex 1483 0.340941 0.0962966 0.449725 Vertex 1484 0.453442 0.167848 0.631782 Vertex 1485 0.527546 0.576162 0.555255 Vertex 1486 0.526729 0.0258702 0.656622 Vertex 1487 0.373231 0.357148 0.347909 Vertex 1488 0.487829 0.198451 0.734404 Vertex 1489 0.60412 0.508135 0.227809 Vertex 1490 0.605554 0.504865 0.224907 Vertex 1491 0.491584 0.216787 0.52845 Vertex 1492 0.353923 0.286165 0.19604 Vertex 1493 0.457535 0.548492 0.43191 Vertex 1494 0.534671 0.550482 0.567563 Vertex 1495 0.442035 0.450253 0.623935 Vertex 1496 0.431285 0.405661 0.63562 Vertex 1497 0.432405 0.421545 0.626985 Vertex 1498 0.547618 0.0383492 0.794957 Vertex 1499 0.445577 0.591721 0.496674 Vertex 1500 0.441626 0.361732 0.645073 Vertex 1501 0.438499 0.406111 0.410204 Vertex 1502 0.406197 0.196561 0.745823 Vertex 1503 0.671745 0.453238 0.205043 Vertex 1504 0.355452 0.267082 0.52932 Vertex 1505 0.398687 0.289902 0.237303 Vertex 1506 0.418238 0.263422 0.213938 Vertex 1507 0.40304 0.294421 0.216876 Vertex 1508 0.377164 0.0755909 0.466327 Vertex 1509 0.387866 0.0765504 0.464988 Vertex 1510 0.381055 0.0743709 0.476064 Vertex 1511 0.382921 0.0730323 0.474725 Vertex 1512 0.36106 0.316252 0.568457 Vertex 1513 0.47426 0.179723 0.797398 Vertex 1514 0.453904 0.162992 0.800933 Vertex 1515 0.425209 0.261178 0.440451 Vertex 1516 0.461592 0.276138 0.434552 Vertex 1517 0.423142 0.169495 0.557204 Vertex 1518 0.521772 0.655899 0.429132 Vertex 1519 0.434975 0.282724 0.429991 Vertex 1520 0.516743 0.360998 0.477224 Vertex 1521 0.384976 0.431975 0.332445 Vertex 1522 0.516489 0.163756 0.758201 Vertex 1523 0.51759 0.166883 0.768542 Vertex 1524 0.425647 0.229681 0.780832 Vertex 1525 0.535364 0.607031 0.444946 Vertex 1526 0.592577 0.524315 0.295369 Vertex 1527 0.373575 0.172746 0.483485 Vertex 1528 0.454952 0.533946 0.431093 Vertex 1529 0.499964 0.398311 0.438218 Vertex 1530 0.416864 0.272845 0.437566 Vertex 1531 0.480272 0.20525 0.781051 Vertex 1532 0.524769 0.333345 0.492665 Vertex 1533 0.449569 0.553858 0.443631 Vertex 1534 0.403141 0.838021 0.39577 Vertex 1535 0.390585 0.859011 0.380999 Vertex 1536 0.519657 0.353601 0.563405 Vertex 1537 0.455278 0.181897 0.625587 Vertex 1538 0.473626 0.461369 0.383137 Vertex 1539 0.47381 0.0671097 0.702511 Vertex 1540 0.657371 0.459468 0.217747 Vertex 1541 0.476629 0.196005 0.70581 Vertex 1542 0.484246 0.751953 0.399484 Vertex 1543 0.428484 0.15852 0.582121 Vertex 1544 0.434519 0.159918 0.57464 Vertex 1545 0.374753 0.351261 0.46991 Vertex 1546 0.371579 0.370646 0.507572 Vertex 1547 0.417331 0.380347 0.419449 Vertex 1548 0.444126 0.169287 0.602803 Vertex 1549 0.533706 0.117334 0.434451 Vertex 1550 0.538183 0.398856 0.422795 Vertex 1551 0.463463 0.45277 0.388562 Vertex 1552 0.507617 0.267799 0.515799 Vertex 1553 0.422911 0.280397 0.641229 Vertex 1554 0.529134 0.53917 0.418306 Vertex 1555 0.454313 0.782597 0.387976 Vertex 1556 0.438872 0.811476 0.37096 Vertex 1557 0.458766 0.0984169 0.754085 Vertex 1558 0.469232 0.075893 0.741796 Vertex 1559 0.34912 0.155239 0.470739 Vertex 1560 0.552753 0.448535 0.368816 Vertex 1561 0.403774 0.255083 0.197077 Vertex 1562 0.366864 0.302678 0.486298 Vertex 1563 0.534209 0.639944 0.44536 Vertex 1564 0.523027 0.379577 0.443649 Vertex 1565 0.553357 0.00777646 0.727569 Vertex 1566 0.406019 0.365298 0.248106 Vertex 1567 0.492638 0.560846 0.381029 Vertex 1568 0.485596 0.126526 0.800181 Vertex 1569 0.35698 0.265614 0.20769 Vertex 1570 0.459708 0.52271 0.423956 Vertex 1571 0.386836 0.248894 0.6215 Vertex 1572 0.542057 0.149784 0.433065 Vertex 1573 0.414613 0.415581 0.361839 Vertex 1574 0.324606 0.257369 0.206896 Vertex 1575 0.510134 0.751426 0.445959 Vertex 1576 0.525325 0.608044 0.542919 Vertex 1577 0.583906 0.493529 0.421842 Vertex 1578 0.549359 0.5272 0.43878 Vertex 1579 0.552564 0.546993 0.460469 Vertex 1580 0.621977 0.452521 0.204474 Vertex 1581 0.62636 0.447362 0.199013 Vertex 1582 0.521422 0.312213 0.509159 Vertex 1583 0.469818 0.185989 0.569713 Vertex 1584 0.478471 0.0959116 0.774927 Vertex 1585 0.58255 0.415398 0.360412 Vertex 1586 0.529986 0.663338 0.509687 Vertex 1587 0.362091 0.438656 0.52579 Vertex 1588 0.426974 0.263286 0.656728 Vertex 1589 0.421282 0.873184 0.396114 Vertex 1590 0.410775 0.882512 0.388633 Vertex 1591 0.457049 0.45675 0.624592 Vertex 1592 0.528606 0.146604 0.785055 Vertex 1593 0.522346 0.0671867 0.676398 Vertex 1594 0.525189 0.707764 0.451573 Vertex 1595 0.353586 0.214543 0.530197 Vertex 1596 0.503305 0.112625 0.796166 Vertex 1597 0.469344 0.0701776 0.653276 Vertex 1598 0.5242 0.0858786 0.71127 Vertex 1599 0.391124 0.327837 0.453848 Vertex 1600 0.460419 0.235592 0.617372 Vertex 1601 0.477831 0.115646 0.815628 Vertex 1602 0.362689 0.219968 0.491439 Vertex 1603 0.35865 0.392821 0.404518 Vertex 1604 0.363542 0.403239 0.39346 Vertex 1605 0.410988 0.166948 0.710625 Vertex 1606 0.454117 0.108699 0.660631 Vertex 1607 0.448876 0.119294 0.650427 Vertex 1608 0.552664 0.415646 0.389557 Vertex 1609 0.543064 0.443815 0.383937 Vertex 1610 0.447827 0.248083 0.754002 Vertex 1611 0.420749 0.824553 0.379915 Vertex 1612 0.426032 0.814869 0.387052 Vertex 1613 0.480509 0.582032 0.418306 Vertex 1614 0.386421 0.313232 0.248349 Vertex 1615 0.489428 0.34795 0.43271 Vertex 1616 0.483109 0.347773 0.426929 Vertex 1617 0.477423 0.331373 0.425247 Vertex 1618 0.342682 0.265531 0.229497 Vertex 1619 0.519272 0.0560047 0.669083 Vertex 1620 0.446181 0.158544 0.52823 Vertex 1621 0.560974 0.488246 0.362396 Vertex 1622 0.35544 0.356396 0.395012 Vertex 1623 0.601828 0.436885 0.382782 Vertex 1624 0.390863 0.18734 0.656112 Vertex 1625 0.474811 0.145662 0.798505 Vertex 1626 0.524656 0.0160208 0.733391 Vertex 1627 0.522867 0.514188 0.413591 Vertex 1628 0.446311 0.768584 0.420296 Vertex 1629 0.490849 0.495774 0.391393 Vertex 1630 0.493159 0.0753481 0.728908 Vertex 1631 0.371443 0.890419 0.306225 Vertex 1632 0.673096 0.475868 0.195442 Vertex 1633 0.392628 0.324929 0.624012 Vertex 1634 0.384082 0.293805 0.611219 Vertex 1635 0.565546 0.482478 0.333748 Vertex 1636 0.696336 0.451662 0.202756 Vertex 1637 0.698077 0.452237 0.215437 Vertex 1638 0.689963 0.448967 0.203248 Vertex 1639 0.480088 0.551726 0.579284 Vertex 1640 0.499591 0.565069 0.576571 Vertex 1641 0.584179 0.50008 0.447422 Vertex 1642 0.491033 0.218037 0.503355 Vertex 1643 0.491531 0.220264 0.513761 Vertex 1644 0.438138 0.293225 0.638404 Vertex 1645 0.461212 0.214418 0.658476 Vertex 1646 0.489102 0.721422 0.513921 Vertex 1647 0.463955 0.158816 0.524013 Vertex 1648 0.534659 0.528207 0.424252 Vertex 1649 0.474971 0.184171 0.699733 Vertex 1650 0.439162 0.340529 0.418306 Vertex 1651 0.381245 0.389421 0.592539 Vertex 1652 0.452032 0.635709 0.483627 Vertex 1653 0.54256 0.610656 0.515787 Vertex 1654 0.358099 0.389285 0.358232 Vertex 1655 0.467425 0.3725 0.408077 Vertex 1656 0.35278 0.405987 0.481797 Vertex 1657 0.48562 0.277512 0.609223 Vertex 1658 0.661073 0.403695 0.223841 Vertex 1659 0.648013 0.422463 0.220584 Vertex 1660 0.664306 0.415309 0.23385 Vertex 1661 0.653752 0.418655 0.225286 Vertex 1662 0.398675 0.355934 0.439852 Vertex 1663 0.519569 0.594517 0.553123 Vertex 1664 0.5276 0.580616 0.549013 Vertex 1665 0.459294 0.210906 0.606871 Vertex 1666 0.398811 0.284003 0.196449 Vertex 1667 0.362701 0.100318 0.482614 Vertex 1668 0.360124 0.095343 0.478764 Vertex 1669 0.305316 0.970677 0.243451 Vertex 1670 0.515138 0.330994 0.575789 Vertex 1671 0.512965 0.308553 0.57162 Vertex 1672 0.40538 0.425277 0.31977 Vertex 1673 0.562389 0.418329 0.362354 Vertex 1674 0.533848 0.0505381 0.784996 Vertex 1675 0.530259 0.0571004 0.784587 Vertex 1676 0.50963 0.0258406 0.665198 Vertex 1677 0.531272 0.475459 0.405767 Vertex 1678 0.314171 0.997359 0.217504 Vertex 1679 0.323167 0.987829 0.204119 Vertex 1680 0.320093 0.992561 0.204089 Vertex 1681 0.308455 0.995753 0.212043 Vertex 1682 0.537982 0.0567983 0.801028 Vertex 1683 0.404242 0.847728 0.355869 Vertex 1684 0.404029 0.326445 0.201453 Vertex 1685 0.445334 0.499944 0.426947 Vertex 1686 0.448212 0.229705 0.78435 Vertex 1687 0.569757 0.501685 0.39773 Vertex 1688 0.526699 0.406224 0.555167 Vertex 1689 0.534346 0.421267 0.563405 Vertex 1690 0.521967 0.409197 0.567563 Vertex 1691 0.33936 0.908927 0.306279 Vertex 1692 0.553849 0.492428 0.395462 Vertex 1693 0.45484 0.830754 0.441529 Vertex 1694 0.401198 0.256025 0.220447 Vertex 1695 0.495984 0.401059 0.418744 Vertex 1696 0.408181 0.224522 0.756235 Vertex 1697 0.371129 0.375716 0.491652 Vertex 1698 0.508606 0.18349 0.454629 Vertex 1699 0.4092 0.166871 0.502686 Vertex 1700 0.434495 0.235728 0.45688 Vertex 1701 0.417379 0.255261 0.225991 Vertex 1702 0.413636 0.269842 0.229716 Vertex 1703 0.55793 0.416381 0.507489 Vertex 1704 0.443154 0.335424 0.417317 Vertex 1705 0.37964 0.227229 0.224735 Vertex 1706 0.350003 0.919067 0.274533 Vertex 1707 0.533433 0.0868558 0.770657 Vertex 1708 0.501469 0.395231 0.594475 Vertex 1709 0.506693 0.268782 0.501288 Vertex 1710 0.510187 0.275339 0.503355 Vertex 1711 0.371751 0.377013 0.546881 Vertex 1712 0.528334 0.108776 0.75004 Vertex 1713 0.613229 0.470348 0.18609 Vertex 1714 0.52635 0.0907174 0.711709 Vertex 1715 0.496209 0.0292402 0.658849 Vertex 1716 0.390585 0.293237 0.235947 Vertex 1717 0.363702 0.184538 0.507679 Vertex 1718 0.354687 0.196206 0.513732 Vertex 1719 0.475356 0.132377 0.80781 Vertex 1720 0.508854 0.346825 0.451508 Vertex 1721 0.476173 0.74128 0.489816 Vertex 1722 0.472548 0.770817 0.490598 Vertex 1723 0.441668 0.552774 0.559188 Vertex 1724 0.432014 0.554379 0.543925 Vertex 1725 0.441567 0.558833 0.552821 Vertex 1726 0.53508 0.135842 0.439539 Vertex 1727 0.543158 0.138673 0.454102 Vertex 1728 0.485407 0.192019 0.464876 Vertex 1729 0.398616 0.239116 0.724922 Vertex 1730 0.387144 0.169779 0.524138 Vertex 1731 0.417106 0.833692 0.428457 Vertex 1732 0.66391 0.428203 0.214756 Vertex 1733 0.557793 0.0113419 0.766156 Vertex 1734 0.638069 0.481281 0.188583 Vertex 1735 0.642926 0.480198 0.190461 Vertex 1736 0.417906 0.152793 0.702274 Vertex 1737 0.586204 0.495117 0.292402 Vertex 1738 0.502801 0.0807614 0.729204 Vertex 1739 0.448485 0.427806 0.6335 Vertex 1740 0.371318 0.305615 0.478776 Vertex 1741 0.359224 0.167765 0.451686 Vertex 1742 0.419801 0.210651 0.779049 Vertex 1743 0.368529 0.385003 0.262889 Vertex 1744 0.685616 0.461701 0.191225 Vertex 1745 0.475474 0.560823 0.420171 Vertex 1746 0.548436 0.0354708 0.78647 Vertex 1747 0.682377 0.467227 0.194708 Vertex 1748 0.420281 0.165686 0.729251 Vertex 1749 0.410053 0.17983 0.735494 Vertex 1750 0.416828 0.181802 0.760322 Vertex 1751 0.636352 0.461908 0.215573 Vertex 1752 0.397816 0.504078 0.476194 Vertex 1753 0.35085 0.107964 0.468483 Vertex 1754 0.519314 0.38444 0.511611 Vertex 1755 0.356038 0.330242 0.240134 Vertex 1756 0.479898 0.0588357 0.693076 Vertex 1757 0.505277 0.669409 0.417074 Vertex 1758 0.512911 0.463549 0.602927 Vertex 1759 0.418557 0.495585 0.437525 Vertex 1760 0.525071 0.142102 0.749951 Vertex 1761 0.525598 0.140018 0.755927 Vertex 1762 0.364033 0.219897 0.226068 Vertex 1763 0.371934 0.224439 0.23385 Vertex 1764 0.363654 0.230303 0.229912 Vertex 1765 0.418332 0.264743 0.706431 Vertex 1766 0.39858 0.26036 0.683937 Vertex 1767 0.394132 0.257464 0.675343 Vertex 1768 0.374309 0.872384 0.33341 Vertex 1769 0.500545 0.368301 0.446847 Vertex 1770 0.494841 0.378535 0.438763 Vertex 1771 0.466436 0.22345 0.776887 Vertex 1772 0.418267 0.147255 0.690186 Vertex 1773 0.494415 0.434706 0.609027 Vertex 1774 0.514907 0.313925 0.565519 Vertex 1775 0.394855 0.42411 0.599966 Vertex 1776 0.370649 0.253822 0.232464 Vertex 1777 0.377987 0.237594 0.237226 Vertex 1778 0.48591 0.0868262 0.72754 Vertex 1779 0.636055 0.517167 0.252513 Vertex 1780 0.568389 0.45136 0.509639 Vertex 1781 0.583356 0.442162 0.457792 Vertex 1782 0.521209 0.589192 0.553502 Vertex 1783 0.63589 0.511985 0.201489 Vertex 1784 0.542726 0.592823 0.520057 Vertex 1785 0.307656 0.950848 0.234555 Vertex 1786 0.5259 0.0686259 0.671991 Vertex 1787 0.563716 0.502739 0.526199 Vertex 1788 0.567287 0.477509 0.522 Vertex 1789 0.373332 0.254965 0.200263 Vertex 1790 0.490399 0.789734 0.461855 Vertex 1791 0.421791 0.136186 0.677298 Vertex 1792 0.416165 0.148262 0.652488 Vertex 1793 0.415158 0.142618 0.664463 Vertex 1794 0.481006 0.540899 0.398181 Vertex 1795 0.518402 0.154641 0.447256 Vertex 1796 0.521345 0.724667 0.484681 Vertex 1797 0.524846 0.717051 0.476419 Vertex 1798 0.508694 0.409416 0.441132 Vertex 1799 0.455598 0.604271 0.449412 Vertex 1800 0.455847 0.635981 0.447333 Vertex 1801 0.449296 0.624847 0.464911 Vertex 1802 0.509684 0.0382959 0.668627 Vertex 1803 0.535346 0.0679744 0.708149 Vertex 1804 0.535133 0.0590786 0.709642 Vertex 1805 0.462669 0.113087 0.780939 Vertex 1806 0.461515 0.107745 0.770686 Vertex 1807 0.399735 0.169714 0.628655 Vertex 1808 0.39582 0.175257 0.657676 Vertex 1809 0.536413 0.57249 0.548972 Vertex 1810 0.484204 0.755678 0.503029 Vertex 1811 0.372029 0.388029 0.243457 Vertex 1812 0.333028 0.25163 0.204989 Vertex 1813 0.674653 0.457934 0.18959 Vertex 1814 0.463801 0.203319 0.479321 Vertex 1815 0.466122 0.215466 0.478024 Vertex 1816 0.518526 0.0840248 0.681752 Vertex 1817 0.409443 0.179125 0.569606 Vertex 1818 0.439962 0.563885 0.507531 Vertex 1819 0.546789 0.599012 0.469507 Vertex 1820 0.46158 0.173084 0.666554 Vertex 1821 0.482173 0.220459 0.582121 Vertex 1822 0.397177 0.175382 0.489502 Vertex 1823 0.490085 0.408948 0.613392 Vertex 1824 0.405326 0.367442 0.427693 Vertex 1825 0.445577 0.149772 0.6206 Vertex 1826 0.359834 0.203988 0.536173 Vertex 1827 0.403111 0.451307 0.598609 Vertex 1828 0.405842 0.449755 0.600037 Vertex 1829 0.491649 0.211451 0.538311 Vertex 1830 0.491069 0.222781 0.553396 Vertex 1831 0.489286 0.232832 0.577791 Vertex 1832 0.657732 0.464011 0.217693 Vertex 1833 0.519545 0.697062 0.434996 Vertex 1834 0.407044 0.430394 0.377084 Vertex 1835 0.453347 0.177763 0.571756 Vertex 1836 0.473561 0.625629 0.531891 Vertex 1837 0.38298 0.275812 0.229989 Vertex 1838 0.529015 0.0129766 0.739373 Vertex 1839 0.418557 0.842374 0.428552 Vertex 1840 0.423716 0.140373 0.69885 Vertex 1841 0.466093 0.517629 0.597058 Vertex 1842 0.466803 0.217018 0.704364 Vertex 1843 0.545492 0.0528834 0.795319 Vertex 1844 0.45927 0.127781 0.799648 Vertex 1845 0.492152 0.0670031 0.730045 Vertex 1846 0.510844 0.0827455 0.688012 Vertex 1847 0.408649 0.832762 0.381408 Vertex 1848 0.488534 0.0725171 0.699774 Vertex 1849 0.348285 0.899327 0.287646 Vertex 1850 0.527043 0.393715 0.431869 Vertex 1851 0.400736 0.257547 0.712147 Vertex 1852 0.358673 0.385861 0.378973 Vertex 1853 0.45741 0.0709713 0.676374 Vertex 1854 0.526427 0.032474 0.730045 Vertex 1855 0.587158 0.436251 0.327985 Vertex 1856 0.486834 0.584608 0.402297 Vertex 1857 0.482137 0.565306 0.404097 Vertex 1858 0.595136 0.511564 0.249196 Vertex 1859 0.373101 0.360992 0.475738 Vertex 1860 0.487859 0.380075 0.623621 Vertex 1861 0.488646 0.368099 0.626268 Vertex 1862 0.495132 0.730193 0.513631 Vertex 1863 0.499964 0.69933 0.528047 Vertex 1864 0.38455 0.254692 0.225825 Vertex 1865 0.366266 0.923533 0.297709 Vertex 1866 0.462042 0.561693 0.432455 Vertex 1867 0.534292 0.560461 0.433693 Vertex 1868 0.499106 0.0738497 0.699869 Vertex 1869 0.515138 0.10059 0.721019 Vertex 1870 0.501806 0.0907411 0.729441 Vertex 1871 0.497773 0.457158 0.607772 Vertex 1872 0.494154 0.756525 0.491836 Vertex 1873 0.487361 0.77058 0.487346 Vertex 1874 0.463019 0.187079 0.656764 Vertex 1875 0.334912 0.249089 0.227247 Vertex 1876 0.427755 0.146236 0.62978 Vertex 1877 0.549496 0.156814 0.427492 Vertex 1878 0.391965 0.250813 0.660791 Vertex 1879 0.393434 0.254201 0.652541 Vertex 1880 0.476185 0.536806 0.407562 Vertex 1881 0.605423 0.542196 0.275499 Vertex 1882 0.359384 0.304466 0.496473 Vertex 1883 0.384206 0.233104 0.656705 Vertex 1884 0.382376 0.222716 0.642182 Vertex 1885 0.374759 0.321547 0.607097 Vertex 1886 0.360142 0.269392 0.501709 Vertex 1887 0.582331 0.514146 0.356165 Vertex 1888 0.571587 0.503095 0.347897 Vertex 1889 0.581543 0.506548 0.331237 Vertex 1890 0.502108 0.250037 0.532323 Vertex 1891 0.422905 0.87592 0.368567 Vertex 1892 0.619969 0.472877 0.359985 Vertex 1893 0.326762 0.947194 0.286325 Vertex 1894 0.45895 0.220145 0.646299 Vertex 1895 0.488575 0.330105 0.624912 Vertex 1896 0.423136 0.845223 0.434877 Vertex 1897 0.487705 0.0942532 0.785185 Vertex 1898 0.511496 0.0886208 0.803628 Vertex 1899 0.549999 0.582168 0.468441 Vertex 1900 0.520948 0.0855232 0.666844 Vertex 1901 0.572345 0.509307 0.42652 Vertex 1902 0.517383 0.735079 0.482667 Vertex 1903 0.495392 0.183028 0.781098 Vertex 1904 0.556378 0.526365 0.454031 Vertex 1905 0.500136 0.585846 0.400271 Vertex 1906 0.595562 0.451259 0.424021 Vertex 1907 0.400636 0.305384 0.227649 Vertex 1908 0.382074 0.231351 0.60282 Vertex 1909 0.394511 0.19052 0.586047 Vertex 1910 0.4335 0.414041 0.403363 Vertex 1911 0.507445 0.54055 0.39426 Vertex 1912 0.503945 0.560627 0.393721 Vertex 1913 0.486763 0.514496 0.596205 Vertex 1914 0.364353 0.249593 0.485333 Vertex 1915 0.412108 0.384576 0.289056 Vertex 1916 0.438167 0.432171 0.399987 Vertex 1917 0.556704 0.0324503 0.762389 Vertex 1918 0.556786 0.545969 0.480843 Vertex 1919 0.405433 0.443963 0.388047 Vertex 1920 0.406765 0.453054 0.39474 Vertex 1921 0.383495 0.213494 0.604046 Vertex 1922 0.56445 0.493909 0.376918 Vertex 1923 0.568034 0.50008 0.366613 Vertex 1924 0.463599 0.206677 0.647921 Vertex 1925 0.439447 0.522142 0.443293 Vertex 1926 0.472288 0.247265 0.456294 Vertex 1927 0.355529 0.890395 0.314938 Vertex 1928 0.54211 0.413745 0.536481 Vertex 1929 0.373231 0.452699 0.439189 Vertex 1930 0.386285 0.459356 0.423684 Vertex 1931 0.434318 0.188684 0.797113 Vertex 1932 0.446388 0.17232 0.793435 Vertex 1933 0.549768 0.00492173 0.729222 Vertex 1934 0.55495 0.00274811 0.745788 Vertex 1935 0.508623 0.0894677 0.807922 Vertex 1936 0.461082 0.786518 0.381615 Vertex 1937 0.415069 0.161126 0.619416 Vertex 1938 0.489854 0.0775217 0.762371 Vertex 1939 0.467479 0.0843032 0.749957 Vertex 1940 0.460431 0.476839 0.402409 Vertex 1941 0.454413 0.481086 0.407592 Vertex 1942 0.452435 0.163696 0.548853 Vertex 1943 0.483215 0.76044 0.499867 Vertex 1944 0.507083 0.605989 0.561226 Vertex 1945 0.538071 0.115948 0.793506 Vertex 1946 0.520303 0.67439 0.515834 Vertex 1947 0.366977 0.269025 0.478587 Vertex 1948 0.348646 0.259679 0.219435 Vertex 1949 0.353396 0.26081 0.214916 Vertex 1950 0.425025 0.293592 0.429203 Vertex 1951 0.376305 0.35828 0.601126 Vertex 1952 0.527706 0.0374016 0.647513 Vertex 1953 0.624873 0.526057 0.227809 Vertex 1954 0.405433 0.391139 0.278324 Vertex 1955 0.507688 0.060577 0.634323 Vertex 1956 0.359994 0.127083 0.474725 Vertex 1957 0.599216 0.528479 0.211113 Vertex 1958 0.482676 0.547224 0.392749 Vertex 1959 0.669151 0.453486 0.201678 Vertex 1960 0.498786 0.204095 0.519104 Vertex 1961 0.505781 0.162938 0.78942 Vertex 1962 0.532018 0.130488 0.439308 Vertex 1963 0.496831 0.199428 0.469365 Vertex 1964 0.332341 0.24242 0.217563 Vertex 1965 0.358306 0.382249 0.372761 Vertex 1966 0.357803 0.387484 0.368662 Vertex 1967 0.396472 0.362378 0.36441 Vertex 1968 0.388909 0.355224 0.370676 Vertex 1969 0.371407 0.322992 0.598846 Vertex 1970 0.398077 0.181002 0.596643 Vertex 1971 0.498685 0.0470852 0.740789 Vertex 1972 0.410757 0.296441 0.636408 Vertex 1973 0.653592 0.43958 0.195661 Vertex 1974 0.479898 0.299041 0.435215 Vertex 1975 0.397194 0.19668 0.71682 Vertex 1976 0.53017 0.0196632 0.727261 Vertex 1977 0.55482 0.536125 0.456335 Vertex 1978 0.380238 0.17983 0.488442 Vertex 1979 0.459607 0.201483 0.607446 Vertex 1980 0.439737 0.473973 0.415001 Vertex 1981 0.397112 0.383948 0.238286 Vertex 1982 0.401666 0.391056 0.257707 Vertex 1983 0.387623 0.86045 0.349609 Vertex 1984 0.342848 0.0880759 0.447605 Vertex 1985 0.345436 0.0833437 0.449264 Vertex 1986 0.337109 0.104642 0.457881 Vertex 1987 0.598814 0.521603 0.315755 Vertex 1988 0.380984 0.351954 0.443673 Vertex 1989 0.35621 0.411607 0.463069 Vertex 1990 0.365579 0.20955 0.214483 Vertex 1991 0.367611 0.211765 0.230072 Vertex 1992 0.376909 0.221259 0.217913 Vertex 1993 0.371703 0.208815 0.215982 Vertex 1994 0.367694 0.215449 0.232607 Vertex 1995 0.367528 0.21719 0.235645 Vertex 1996 0.391011 0.431774 0.333535 Vertex 1997 0.405391 0.516267 0.497166 Vertex 1998 0.429745 0.463632 0.601346 Vertex 1999 0.343944 0.297454 0.210024 Vertex 2000 0.412943 0.173232 0.5946 Vertex 2001 0.410023 0.173019 0.598609 Vertex 2002 0.481391 0.326309 0.630213 Vertex 2003 0.464896 0.0832963 0.659405 Vertex 2004 0.533623 0.0836458 0.791392 Vertex 2005 0.469747 0.524019 0.414444 Vertex 2006 0.458423 0.249427 0.621506 Vertex 2007 0.574081 0.40835 0.422499 Vertex 2008 0.583492 0.415256 0.410067 Vertex 2009 0.473372 0.104778 0.783094 Vertex 2010 0.550177 0.0379169 0.722731 Vertex 2011 0.533949 0.123197 0.796693 Vertex 2012 0.636737 0.451005 0.211706 Vertex 2013 0.649595 0.449962 0.221448 Vertex 2014 0.643553 0.443815 0.216112 Vertex 2015 0.476067 0.205943 0.710577 Vertex 2016 0.421235 0.52505 0.480654 Vertex 2017 0.598446 0.45335 0.396564 Vertex 2018 0.492958 0.696973 0.405371 Vertex 2019 0.375251 0.391926 0.531387 Vertex 2020 0.45346 0.396493 0.63103 Vertex 2021 0.446311 0.30558 0.423328 Vertex 2022 0.530916 0.615009 0.534431 Vertex 2023 0.512337 0.0305965 0.666584 Vertex 2024 0.406096 0.267201 0.197698 Vertex 2025 0.548755 0.581167 0.491806 Vertex 2026 0.540274 0.164994 0.434492 Vertex 2027 0.450747 0.445597 0.395948 Vertex 2028 0.47246 0.527798 0.414065 Vertex 2029 0.380493 0.256404 0.231866 Vertex 2030 0.389963 0.274302 0.22836 Vertex 2031 0.387754 0.260947 0.223948 Vertex 2032 0.373622 0.245862 0.235864 Vertex 2033 0.46264 0.149458 0.798641 Vertex 2034 0.458784 0.218102 0.65462 Vertex 2035 0.4309 0.196164 0.79125 Vertex 2036 0.611435 0.468524 0.384209 Vertex 2037 0.381594 0.332001 0.266141 Vertex 2038 0.437303 0.134758 0.654584 Vertex 2039 0.552789 0.0147474 0.722665 Vertex 2040 0.552978 0.0108799 0.723216 Vertex 2041 0.491554 0.192439 0.772801 Vertex 2042 0.48896 0.194873 0.779002 Vertex 2043 0.488617 0.192303 0.784806 Vertex 2044 0.648457 0.424643 0.199031 Vertex 2045 0.644762 0.419798 0.204527 Vertex 2046 0.645348 0.419828 0.204687 Vertex 2047 0.643589 0.425241 0.201424 Vertex 2048 0.435804 0.808319 0.385204 Vertex 2049 0.434016 0.811363 0.383356 Vertex 2050 0.472827 0.511179 0.602874 Vertex 2051 0.468924 0.181559 0.69198 Vertex 2052 0.516352 0.376042 0.561403 Vertex 2053 0.319039 0.997169 0.211569 Vertex 2054 0.650145 0.500139 0.194554 Vertex 2055 0.388014 0.196887 0.626221 Vertex 2056 0.584818 0.487163 0.474399 Vertex 2057 0.405374 0.358416 0.441321 Vertex 2058 0.600555 0.512227 0.204361 Vertex 2059 0.46903 0.553443 0.426769 Vertex 2060 0.615747 0.456773 0.189348 Vertex 2061 0.436302 0.252637 0.660845 Vertex 2062 0.366059 0.377007 0.287776 Vertex 2063 0.366634 0.370125 0.291898 Vertex 2064 0.408862 0.334559 0.633423 Vertex 2065 0.532166 0.15361 0.460315 Vertex 2066 0.443101 0.14886 0.76859 Vertex 2067 0.415484 0.398021 0.619688 Vertex 2068 0.550597 0.564986 0.463626 Vertex 2069 0.39816 0.324106 0.226506 Vertex 2070 0.396987 0.313913 0.208146 Vertex 2071 0.400701 0.317224 0.205072 Vertex 2072 0.409721 0.332042 0.217368 Vertex 2073 0.5208 0.1245 0.711383 Vertex 2074 0.512177 0.122759 0.700219 Vertex 2075 0.465939 0.664546 0.504836 Vertex 2076 0.482978 0.57929 0.410298 Vertex 2077 0.480976 0.570856 0.409955 Vertex 2078 0.46434 0.495419 0.609768 Vertex 2079 0.487746 0.111062 0.805156 Vertex 2080 0.431836 0.397884 0.417098 Vertex 2081 0.346804 0.131821 0.459356 Vertex 2082 0.540043 0.0780133 0.758113 Vertex 2083 0.476226 0.103149 0.783136 Vertex 2084 0.474094 0.193256 0.796746 Vertex 2085 0.454804 0.185912 0.801301 Vertex 2086 0.557509 0.488098 0.374798 Vertex 2087 0.505022 0.648703 0.54893 Vertex 2088 0.429846 0.219642 0.788366 Vertex 2089 0.434241 0.841 0.444164 Vertex 2090 0.415738 0.294978 0.638966 Vertex 2091 0.645241 0.424542 0.212884 Vertex 2092 0.561406 0.00889584 0.741932 Vertex 2093 0.420275 0.390665 0.384197 Vertex 2094 0.397834 0.356769 0.30436 Vertex 2095 0.501333 0.687266 0.534325 Vertex 2096 0.357205 0.260159 0.547532 Vertex 2097 0.459773 0.484717 0.405643 Vertex 2098 0.551178 0.0200719 0.722997 Vertex 2099 0.428656 0.26081 0.694 Vertex 2100 0.436254 0.256824 0.710577 Vertex 2101 0.54808 0.0165894 0.771711 Vertex 2102 0.364146 0.345676 0.527916 Vertex 2103 0.67832 0.478918 0.211984 Vertex 2104 0.48594 0.0703435 0.737745 Vertex 2105 0.523466 0.39734 0.468032 Vertex 2106 0.416437 0.536048 0.553283 Vertex 2107 0.462409 0.788525 0.479949 Vertex 2108 0.445411 0.818257 0.460226 Vertex 2109 0.363127 0.411015 0.317591 Vertex 2110 0.490358 0.0600617 0.739865 Vertex 2111 0.48347 0.740226 0.501661 Vertex 2112 0.486627 0.739575 0.508727 Vertex 2113 0.394026 0.210474 0.71682 Vertex 2114 0.512544 0.286923 0.485279 Vertex 2115 0.595781 0.50544 0.256374 Vertex 2116 0.51457 0.284981 0.497308 Vertex 2117 0.623979 0.483615 0.226163 Vertex 2118 0.391183 0.450134 0.406608 Vertex 2119 0.39004 0.419182 0.299462 Vertex 2120 0.347752 0.282926 0.230611 Vertex 2121 0.359799 0.29303 0.229959 Vertex 2122 0.361339 0.372198 0.36242 Vertex 2123 0.364484 0.363468 0.362408 Vertex 2124 0.514404 0.0780429 0.785185 Vertex 2125 0.376282 0.45351 0.565608 Vertex 2126 0.465252 0.745989 0.40986 Vertex 2127 0.545782 0.0546188 0.785268 Vertex 2128 0.481059 0.177194 0.544796 Vertex 2129 0.561193 0.53221 0.517854 Vertex 2130 0.421845 0.264251 0.679448 Vertex 2131 0.496002 0.0481157 0.7234 Vertex 2132 0.508949 0.0320712 0.7199 Vertex 2133 0.492289 0.451745 0.384961 Vertex 2134 0.374896 0.356094 0.46638 Vertex 2135 0.420168 0.505629 0.450229 Vertex 2136 0.519545 0.696286 0.50326 Vertex 2137 0.48052 0.168375 0.677209 Vertex 2138 0.463866 0.17646 0.672814 Vertex 2139 0.373794 0.219067 0.231327 Vertex 2140 0.365591 0.325024 0.211409 Vertex 2141 0.361333 0.332078 0.22226 Vertex 2142 0.356897 0.326309 0.226915 Vertex 2143 0.607123 0.50592 0.210894 Vertex 2144 0.544349 0.487429 0.399703 Vertex 2145 0.469344 0.574747 0.560604 Vertex 2146 0.412072 0.881067 0.347773 Vertex 2147 0.457742 0.734369 0.432822 Vertex 2148 0.379355 0.22871 0.208063 Vertex 2149 0.399717 0.324378 0.238038 Vertex 2150 0.589456 0.482069 0.290388 Vertex 2151 0.523513 0.371173 0.515745 Vertex 2152 0.485478 0.306433 0.625279 Vertex 2153 0.510921 0.365541 0.449625 Vertex 2154 0.510134 0.381828 0.44802 Vertex 2155 0.488848 0.127669 0.644824 Vertex 2156 0.49525 0.107858 0.642526 Vertex 2157 0.495499 0.680982 0.532625 Vertex 2158 0.488848 0.699152 0.513815 Vertex 2159 0.450652 0.204622 0.799784 Vertex 2160 0.438469 0.201442 0.797232 Vertex 2161 0.435556 0.196763 0.796645 Vertex 2162 0.429929 0.200139 0.476466 Vertex 2163 0.342445 0.0930036 0.460552 Vertex 2164 0.406386 0.245796 0.743584 Vertex 2165 0.401785 0.239145 0.735547 Vertex 2166 0.508002 0.187624 0.46009 Vertex 2167 0.413357 0.871413 0.405454 Vertex 2168 0.594828 0.448032 0.19174 Vertex 2169 0.593673 0.446107 0.190627 Vertex 2170 0.592992 0.453214 0.192338 Vertex 2171 0.599986 0.46407 0.196259 Vertex 2172 0.451156 0.181559 0.609045 Vertex 2173 0.426766 0.803113 0.426728 Vertex 2174 0.534908 0.00954733 0.747855 Vertex 2175 0.520854 0.0196395 0.737484 Vertex 2176 0.37345 0.361975 0.306415 Vertex 2177 0.403407 0.463128 0.595423 Vertex 2178 0.409443 0.153675 0.660708 Vertex 2179 0.379243 0.332682 0.26617 Vertex 2180 0.508653 0.282819 0.569618 Vertex 2181 0.52356 0.392163 0.503574 Vertex 2182 0.366326 0.327316 0.582008 Vertex 2183 0.363092 0.285004 0.196911 Vertex 2184 0.463374 0.126704 0.811707 Vertex 2185 0.481853 0.114829 0.814319 Vertex 2186 0.546422 0.613511 0.488857 Vertex 2187 0.370306 0.202437 0.561883 Vertex 2188 0.35849 0.358516 0.439065 Vertex 2189 0.480568 0.535545 0.396042 Vertex 2190 0.391988 0.387271 0.238831 Vertex 2191 0.586429 0.511292 0.31826 Vertex 2192 0.367552 0.326297 0.253816 Vertex 2193 0.459797 0.540455 0.578152 Vertex 2194 0.452844 0.771071 0.41015 Vertex 2195 0.39367 0.257506 0.638054 Vertex 2196 0.522506 0.640169 0.530759 Vertex 2197 0.45038 0.23943 0.768625 Vertex 2198 0.323143 0.98482 0.209804 Vertex 2199 0.345555 0.110043 0.455091 Vertex 2200 0.410041 0.173368 0.536528 Vertex 2201 0.522429 0.139502 0.789372 Vertex 2202 0.445014 0.188986 0.799636 Vertex 2203 0.527369 0.649526 0.520057 Vertex 2204 0.538254 0.649118 0.50204 Vertex 2205 0.453874 0.777539 0.46715 Vertex 2206 0.521695 0.578318 0.421344 Vertex 2207 0.53357 0.595423 0.437039 Vertex 2208 0.517804 0.581836 0.418229 Vertex 2209 0.528073 0.586806 0.430169 Vertex 2210 0.48052 0.17386 0.794235 Vertex 2211 0.485436 0.178539 0.792357 Vertex 2212 0.379906 0.325083 0.464402 Vertex 2213 0.365929 0.314647 0.486789 Vertex 2214 0.48976 0.764 0.41291 Vertex 2215 0.502055 0.747914 0.425395 Vertex 2216 0.487314 0.162992 0.669539 Vertex 2217 0.486331 0.150181 0.65401 Vertex 2218 0.46062 0.692732 0.445378 Vertex 2219 0.45985 0.172379 0.654614 Vertex 2220 0.503962 0.0470852 0.632138 Vertex 2221 0.484471 0.0748032 0.726373 Vertex 2222 0.474361 0.21642 0.737555 Vertex 2223 0.628984 0.49825 0.269298 Vertex 2224 0.507824 0.0985235 0.721801 Vertex 2225 0.415869 0.175506 0.548972 Vertex 2226 0.476446 0.129274 0.645144 Vertex 2227 0.497566 0.54941 0.382497 Vertex 2228 0.356861 0.324876 0.54514 Vertex 2229 0.533623 0.67927 0.488353 Vertex 2230 0.588905 0.477722 0.458894 Vertex 2231 0.518609 0.627784 0.538867 Vertex 2232 0.433749 0.249386 0.762205 Vertex 2233 0.437457 0.288979 0.637965 Vertex 2234 0.679771 0.453321 0.196721 Vertex 2235 0.46476 0.217154 0.694 Vertex 2236 0.362873 0.378428 0.323004 Vertex 2237 0.475024 0.602418 0.428741 Vertex 2238 0.464796 0.605598 0.437211 Vertex 2239 0.491187 0.0584804 0.730868 Vertex 2240 0.425392 0.413745 0.618906 Vertex 2241 0.562022 0.43326 0.505416 Vertex 2242 0.422502 0.395545 0.339819 Vertex 2243 0.449024 0.138199 0.774785 Vertex 2244 0.449207 0.130867 0.760458 Vertex 2245 0.474153 0.500844 0.604254 Vertex 2246 0.382346 0.422227 0.584324 Vertex 2247 0.39768 0.349585 0.27525 Vertex 2248 0.497045 0.425786 0.394899 Vertex 2249 0.371212 0.461452 0.534514 Vertex 2250 0.511887 0.110138 0.662912 Vertex 2251 0.580673 0.511848 0.459818 Vertex 2252 0.497406 0.545507 0.381793 Vertex 2253 0.330683 0.923692 0.259158 Vertex 2254 0.332205 0.936148 0.248106 Vertex 2255 0.483896 0.105352 0.791765 Vertex 2256 0.455858 0.164585 0.644113 Vertex 2257 0.388648 0.493737 0.536504 Vertex 2258 0.581567 0.425052 0.204012 Vertex 2259 0.402152 0.369586 0.240271 Vertex 2260 0.481207 0.35292 0.630106 Vertex 2261 0.342398 0.288896 0.204557 Vertex 2262 0.471234 0.611444 0.538376 Vertex 2263 0.51438 0.350219 0.454706 Vertex 2264 0.362908 0.359748 0.2567 Vertex 2265 0.460022 0.204 0.590395 Vertex 2266 0.65332 0.499132 0.223515 Vertex 2267 0.657916 0.488158 0.22159 Vertex 2268 0.381742 0.332024 0.464035 Vertex 2269 0.366728 0.105648 0.463721 Vertex 2270 0.478116 0.790658 0.476336 Vertex 2271 0.493408 0.785416 0.466019 Vertex 2272 0.378722 0.0843209 0.468068 Vertex 2273 0.494788 0.33039 0.439704 Vertex 2274 0.502357 0.323407 0.448067 Vertex 2275 0.495268 0.3198 0.442233 Vertex 2276 0.414228 0.511913 0.464372 Vertex 2277 0.516957 0.515206 0.405809 Vertex 2278 0.301834 0.968876 0.223675 Vertex 2279 0.392261 0.874072 0.388752 Vertex 2280 0.360604 0.263896 0.502828 Vertex 2281 0.499224 0.409297 0.413183 Vertex 2282 0.373107 0.876957 0.315198 Vertex 2283 0.374066 0.875683 0.323046 Vertex 2284 0.371614 0.348744 0.505653 Vertex 2285 0.367806 0.35411 0.526436 Vertex 2286 0.416431 0.832418 0.372814 Vertex 2287 0.458891 0.763745 0.405916 Vertex 2288 0.449024 0.172118 0.611177 Vertex 2289 0.473751 0.196982 0.575908 Vertex 2290 0.570876 0.469691 0.316602 Vertex 2291 0.549715 0.565283 0.501288 Vertex 2292 0.447454 0.248124 0.725123 Vertex 2293 0.541696 0.144454 0.448067 Vertex 2294 0.545782 0.133615 0.443116 Vertex 2295 0.698528 0.44619 0.210077 Vertex 2296 0.511739 0.401853 0.44475 Vertex 2297 0.36167 0.427717 0.534514 Vertex 2298 0.533878 0.671239 0.453125 Vertex 2299 0.404947 0.161363 0.651973 Vertex 2300 0.614509 0.482016 0.275279 Vertex 2301 0.384425 0.347453 0.287545 Vertex 2302 0.385995 0.424542 0.37696 Vertex 2303 0.504697 0.0503782 0.760227 Vertex 2304 0.370394 0.366269 0.551033 Vertex 2305 0.367374 0.359257 0.555007 Vertex 2306 0.420411 0.39298 0.352712 Vertex 2307 0.418386 0.377007 0.352002 Vertex 2308 0.512988 0.279745 0.526169 Vertex 2309 0.532705 0.403321 0.449808 Vertex 2310 0.512911 0.28241 0.503681 Vertex 2311 0.480899 0.0525222 0.680484 Vertex 2312 0.371982 0.292408 0.236978 Vertex 2313 0.366888 0.303874 0.24049 Vertex 2314 0.387096 0.899996 0.367098 Vertex 2315 0.360853 0.920317 0.338569 Vertex 2316 0.647042 0.45685 0.192096 Vertex 2317 0.502476 0.0932997 0.811428 Vertex 2318 0.526267 0.139585 0.453682 Vertex 2319 0.495688 0.648383 0.54232 Vertex 2320 0.493076 0.230984 0.552045 Vertex 2321 0.494379 0.23279 0.52624 Vertex 2322 0.434839 0.814176 0.447493 Vertex 2323 0.364916 0.256203 0.204125 Vertex 2324 0.488593 0.588493 0.398874 Vertex 2325 0.641184 0.437868 0.213394 Vertex 2326 0.641931 0.433166 0.214537 Vertex 2327 0.42477 0.440261 0.607914 Vertex 2328 0.519083 0.378008 0.486884 Vertex 2329 0.491146 0.189448 0.734493 Vertex 2330 0.539078 0.116422 0.434072 Vertex 2331 0.519503 0.0355241 0.63119 Vertex 2332 0.435301 0.326445 0.421083 Vertex 2333 0.636654 0.44693 0.199114 Vertex 2334 0.482273 0.555113 0.396179 Vertex 2335 0.442112 0.412111 0.641572 Vertex 2336 0.452601 0.457182 0.626493 Vertex 2337 0.487243 0.737851 0.400461 Vertex 2338 0.483653 0.72722 0.400751 Vertex 2339 0.541826 0.646915 0.475685 Vertex 2340 0.424261 0.805565 0.405797 Vertex 2341 0.535317 0.0690109 0.79735 Vertex 2342 0.498857 0.0990684 0.811162 Vertex 2343 0.472785 0.716376 0.420497 Vertex 2344 0.518348 0.641134 0.42745 Vertex 2345 0.425143 0.124364 0.700414 Vertex 2346 0.42262 0.30754 0.642899 Vertex 2347 0.411338 0.307901 0.637042 Vertex 2348 0.506953 0.287373 0.469312 Vertex 2349 0.437303 0.368834 0.648899 Vertex 2350 0.368552 0.343805 0.418744 Vertex 2351 0.396122 0.364984 0.230587 Vertex 2352 0.591511 0.510415 0.294783 Vertex 2353 0.36597 0.340316 0.57987 Vertex 2354 0.377774 0.328287 0.262575 Vertex 2355 0.373539 0.389012 0.518274 Vertex 2356 0.386249 0.349431 0.221016 Vertex 2357 0.411391 0.274723 0.227821 Vertex 2358 0.537419 0.586663 0.534414 Vertex 2359 0.504744 0.738811 0.425691 Vertex 2360 0.529637 0.121983 0.770692 Vertex 2361 0.369091 0.299373 0.194026 Vertex 2362 0.364845 0.173054 0.455038 Vertex 2363 0.544313 0.0400135 0.787122 Vertex 2364 0.391526 0.168257 0.526134 Vertex 2365 0.52606 0.488246 0.592693 Vertex 2366 0.497595 0.601073 0.402936 Vertex 2367 0.663258 0.419366 0.231783 Vertex 2368 0.355878 0.274415 0.2264 Vertex 2369 0.486538 0.105625 0.65125 Vertex 2370 0.526332 0.433409 0.586255 Vertex 2371 0.511792 0.751118 0.475454 Vertex 2372 0.509399 0.328785 0.456288 Vertex 2373 0.526522 0.521135 0.415889 Vertex 2374 0.52099 0.530682 0.407947 Vertex 2375 0.433903 0.435393 0.619818 Vertex 2376 0.366924 0.144756 0.46025 Vertex 2377 0.418729 0.161985 0.600777 Vertex 2378 0.388014 0.25269 0.681544 Vertex 2379 0.452086 0.192451 0.594552 Vertex 2380 0.35053 0.103066 0.459599 Vertex 2381 0.515671 0.451165 0.409588 Vertex 2382 0.445831 0.6042 0.47739 Vertex 2383 0.413393 0.872692 0.344184 Vertex 2384 0.526498 0.444591 0.409291 Vertex 2385 0.462148 0.63013 0.514875 Vertex 2386 0.368215 0.234573 0.235106 Vertex 2387 0.410793 0.148096 0.659625 Vertex 2388 0.554269 0.480334 0.379939 Vertex 2389 0.411628 0.154694 0.641501 Vertex 2390 0.543697 0.626813 0.463762 Vertex 2391 0.355185 0.084161 0.443637 Vertex 2392 0.454597 0.130891 0.800377 Vertex 2393 0.430746 0.147012 0.607091 Vertex 2394 0.601615 0.482833 0.277471 Vertex 2395 0.389833 0.348507 0.395089 Vertex 2396 0.37659 0.347453 0.379885 Vertex 2397 0.389276 0.351315 0.385056 Vertex 2398 0.611109 0.467114 0.301079 Vertex 2399 0.60858 0.455311 0.32933 Vertex 2400 0.403236 0.275131 0.230095 Vertex 2401 0.4671 0.169098 0.494406 Vertex 2402 0.618631 0.506151 0.33787 Vertex 2403 0.497702 0.44353 0.387668 Vertex 2404 0.502286 0.261189 0.569642 Vertex 2405 0.524431 0.356864 0.519921 Vertex 2406 0.514593 0.37099 0.573823 Vertex 2407 0.368849 0.356675 0.574048 Vertex 2408 0.498051 0.0912623 0.793536 Vertex 2409 0.478199 0.213032 0.77485 Vertex 2410 0.544805 0.596033 0.507454 Vertex 2411 0.564172 0.464597 0.324935 Vertex 2412 0.477423 0.732444 0.400733 Vertex 2413 0.470416 0.731378 0.411779 Vertex 2414 0.427874 0.500957 0.442221 Vertex 2415 0.519385 0.42016 0.427178 Vertex 2416 0.405842 0.194559 0.475519 Vertex 2417 0.497145 0.175885 0.727102 Vertex 2418 0.507617 0.172379 0.746409 Vertex 2419 0.367107 0.886617 0.304987 Vertex 2420 0.381665 0.877833 0.317413 Vertex 2421 0.477423 0.812583 0.428753 Vertex 2422 0.368973 0.388005 0.279485 Vertex 2423 0.418386 0.222739 0.774666 Vertex 2424 0.350222 0.166462 0.474346 Vertex 2425 0.549958 0.476543 0.386466 Vertex 2426 0.55174 0.462548 0.376592 Vertex 2427 0.447833 0.811742 0.3691 Vertex 2428 0.355819 0.291046 0.550417 Vertex 2429 0.440051 0.201282 0.471112 Vertex 2430 0.395791 0.178225 0.636976 Vertex 2431 0.424616 0.838767 0.3492 Vertex 2432 0.411889 0.241254 0.754121 Vertex 2433 0.489949 0.517913 0.389462 Vertex 2434 0.485436 0.524991 0.391008 Vertex 2435 0.460354 0.185474 0.648336 Vertex 2436 0.487083 0.598124 0.403866 Vertex 2437 0.45712 0.157851 0.530286 Vertex 2438 0.402211 0.439775 0.383895 Vertex 2439 0.46903 0.16484 0.666821 Vertex 2440 0.459827 0.552697 0.570098 Vertex 2441 0.575923 0.50913 0.366761 Vertex 2442 0.385787 0.203864 0.679501 Vertex 2443 0.465897 0.50133 0.411601 Vertex 2444 0.612631 0.512897 0.202022 Vertex 2445 0.492845 0.590436 0.567652 Vertex 2446 0.436989 0.258714 0.733356 Vertex 2447 0.620331 0.521561 0.306125 Vertex 2448 0.487586 0.198001 0.551015 Vertex 2449 0.390863 0.352641 0.434179 Vertex 2450 0.50456 0.376723 0.450596 Vertex 2451 0.449373 0.574996 0.53667 Vertex 2452 0.463049 0.130932 0.808739 Vertex 2453 0.459625 0.129914 0.807519 Vertex 2454 0.374126 0.381402 0.527715 Vertex 2455 0.606661 0.496657 0.211226 Vertex 2456 0.608853 0.498801 0.192285 Vertex 2457 0.486028 0.178456 0.710648 Vertex 2458 0.437303 0.14947 0.594552 Vertex 2459 0.531745 0.015393 0.729328 Vertex 2460 0.381245 0.270494 0.602749 Vertex 2461 0.344915 0.903863 0.281824 Vertex 2462 0.351217 0.285431 0.230457 Vertex 2463 0.523791 0.0711845 0.666222 Vertex 2464 0.473697 0.0549445 0.677772 Vertex 2465 0.481119 0.0626736 0.698412 Vertex 2466 0.476919 0.0934359 0.651599 Vertex 2467 0.539119 0.51831 0.424116 Vertex 2468 0.496097 0.525512 0.388343 Vertex 2469 0.521108 0.609199 0.428374 Vertex 2470 0.460768 0.414728 0.380786 Vertex 2471 0.357572 0.214892 0.542409 Vertex 2472 0.499704 0.413414 0.409511 Vertex 2473 0.450291 0.475323 0.408042 Vertex 2474 0.373125 0.363693 0.527182 Vertex 2475 0.373285 0.391079 0.254603 Vertex 2476 0.419008 0.421184 0.379317 Vertex 2477 0.365875 0.880812 0.329247 Vertex 2478 0.463795 0.21106 0.792979 Vertex 2479 0.47583 0.206014 0.787299 Vertex 2480 0.499106 0.258678 0.577904 Vertex 2481 0.49323 0.242734 0.58035 Vertex 2482 0.498223 0.25333 0.571756 Vertex 2483 0.494468 0.240898 0.569713 Vertex 2484 0.464233 0.16449 0.6603 Vertex 2485 0.477056 0.161049 0.662971 Vertex 2486 0.517963 0.0798375 0.720196 Vertex 2487 0.508079 0.198083 0.471977 Vertex 2488 0.441632 0.77254 0.438644 Vertex 2489 0.439085 0.777865 0.434943 Vertex 2490 0.464565 0.708718 0.484687 Vertex 2491 0.497797 0.48201 0.393134 Vertex 2492 0.485661 0.471497 0.384902 Vertex 2493 0.48777 0.478699 0.388225 Vertex 2494 0.486715 0.475069 0.386904 Vertex 2495 0.350482 0.161031 0.455684 Vertex 2496 0.355072 0.170851 0.453338 Vertex 2497 0.477494 0.483514 0.392477 Vertex 2498 0.480947 0.49315 0.395036 Vertex 2499 0.362115 0.268344 0.226127 Vertex 2500 0.408667 0.162245 0.63042 Vertex 2501 0.642393 0.445491 0.213832 Vertex 2502 0.332726 0.262658 0.233661 Vertex 2503 0.493734 0.267219 0.46102 Vertex 2504 0.502381 0.265424 0.475092 Vertex 2505 0.428211 0.232168 0.207495 Vertex 2506 0.550722 0.422825 0.385038 Vertex 2507 0.411948 0.17903 0.559336 Vertex 2508 0.511946 0.17296 0.772753 Vertex 2509 0.509103 0.173481 0.76657 Vertex 2510 0.384253 0.20695 0.638048 Vertex 2511 0.493787 0.0659903 0.758178 Vertex 2512 0.656974 0.478373 0.190982 Vertex 2513 0.525527 0.0694195 0.787122 Vertex 2514 0.478317 0.0647939 0.703103 Vertex 2515 0.381428 0.889957 0.374514 Vertex 2516 0.521286 0.634157 0.534597 Vertex 2517 0.458512 0.209834 0.61742 Vertex 2518 0.373024 0.350254 0.374484 Vertex 2519 0.429112 0.809444 0.391417 Vertex 2520 0.424 0.534058 0.495425 Vertex 2521 0.367871 0.0967526 0.467381 Vertex 2522 0.51839 0.346961 0.569606 Vertex 2523 0.481877 0.642644 0.528503 Vertex 2524 0.487936 0.211765 0.490231 Vertex 2525 0.524632 0.123944 0.712852 Vertex 2526 0.425268 0.163116 0.752054 Vertex 2527 0.356174 0.424679 0.477888 Vertex 2528 0.598298 0.437543 0.186901 Vertex 2529 0.509316 0.728564 0.497113 Vertex 2530 0.505478 0.722742 0.503355 Vertex 2531 0.50279 0.532086 0.392045 Vertex 2532 0.58733 0.49347 0.285697 Vertex 2533 0.489789 0.416351 0.613754 Vertex 2534 0.462462 0.121302 0.64316 Vertex 2535 0.519912 0.0825027 0.797167 Vertex 2536 0.469291 0.109705 0.643408 Vertex 2537 0.338442 0.113295 0.468115 Vertex 2538 0.304173 0.985845 0.228846 Vertex 2539 0.452921 0.443282 0.628519 Vertex 2540 0.485963 0.490805 0.390469 Vertex 2541 0.352585 0.373649 0.426645 Vertex 2542 0.477364 0.354009 0.420432 Vertex 2543 0.352662 0.370575 0.438111 Vertex 2544 0.67033 0.481607 0.215786 Vertex 2545 0.428744 0.454061 0.604858 Vertex 2546 0.586192 0.509189 0.306225 Vertex 2547 0.545687 0.0498629 0.792766 Vertex 2548 0.547346 0.0419147 0.795378 Vertex 2549 0.550775 0.0377274 0.795194 Vertex 2550 0.551018 0.045563 0.776929 Vertex 2551 0.488184 0.0490989 0.685572 Vertex 2552 0.484033 0.0527413 0.686975 Vertex 2553 0.328261 0.241224 0.215004 Vertex 2554 0.505455 0.274752 0.57377 Vertex 2555 0.461118 0.696268 0.443169 Vertex 2556 0.536424 0.00826804 0.733451 Vertex 2557 0.511928 0.136073 0.704139 Vertex 2558 0.339822 0.920453 0.311662 Vertex 2559 0.478584 0.264062 0.448026 Vertex 2560 0.600105 0.521893 0.263185 Vertex 2561 0.361427 0.347417 0.412146 Vertex 2562 0.668808 0.45563 0.204338 Vertex 2563 0.658467 0.446136 0.213121 Vertex 2564 0.657324 0.453978 0.211167 Vertex 2565 0.419997 0.844388 0.345256 Vertex 2566 0.354362 0.118678 0.473937 Vertex 2567 0.501783 0.305426 0.451692 Vertex 2568 0.536513 0.103966 0.791534 Vertex 2569 0.312192 0.964446 0.256789 Vertex 2570 0.474787 0.547361 0.414243 Vertex 2571 0.491122 0.411204 0.391375 Vertex 2572 0.607165 0.50188 0.248379 Vertex 2573 0.606116 0.491936 0.205889 Vertex 2574 0.530857 0.0365547 0.655354 Vertex 2575 0.437593 0.35029 0.41949 Vertex 2576 0.365798 0.351315 0.432905 Vertex 2577 0.387398 0.290311 0.192966 Vertex 2578 0.375914 0.445355 0.42395 Vertex 2579 0.467029 0.672548 0.503403 Vertex 2580 0.483843 0.229177 0.586249 Vertex 2581 0.486538 0.21998 0.571756 Vertex 2582 0.410153 0.329792 0.208644 Vertex 2583 0.40195 0.343982 0.250416 Vertex 2584 0.483032 0.512239 0.401675 Vertex 2585 0.444955 0.132443 0.630698 Vertex 2586 0.525325 0.130814 0.764272 Vertex 2587 0.491531 0.25227 0.470206 Vertex 2588 0.497388 0.259276 0.472356 Vertex 2589 0.47583 0.165604 0.516711 Vertex 2590 0.501723 0.176401 0.48477 Vertex 2591 0.484749 0.357972 0.426698 Vertex 2592 0.426944 0.22666 0.208253 Vertex 2593 0.505508 0.427551 0.406786 Vertex 2594 0.496968 0.171449 0.480731 Vertex 2595 0.349695 0.267148 0.204344 Vertex 2596 0.403419 0.183176 0.718863 Vertex 2597 0.407855 0.198693 0.752054 Vertex 2598 0.406712 0.245471 0.197918 Vertex 2599 0.646112 0.431087 0.223077 Vertex 2600 0.645538 0.428309 0.220116 Vertex 2601 0.459294 0.438982 0.38508 Vertex 2602 0.408915 0.365251 0.299219 Vertex 2603 0.511715 0.700858 0.507394 Vertex 2604 0.307057 0.979152 0.205019 Vertex 2605 0.36433 0.410322 0.405975 Vertex 2606 0.35708 0.396031 0.422292 Vertex 2607 0.649435 0.444425 0.225861 Vertex 2608 0.40256 0.836463 0.38322 Vertex 2609 0.376749 0.315512 0.466143 Vertex 2610 0.458358 0.768844 0.396889 Vertex 2611 0.571421 0.410334 0.365973 Vertex 2612 0.596474 0.514691 0.266182 Vertex 2613 0.4058 0.372097 0.380999 Vertex 2614 0.412978 0.233856 0.20785 Vertex 2615 0.466134 0.200778 0.675349 Vertex 2616 0.471536 0.204379 0.691909 Vertex 2617 0.457801 0.232151 0.714729 Vertex 2618 0.463534 0.213086 0.681491 Vertex 2619 0.349641 0.897064 0.318775 Vertex 2620 0.345466 0.900428 0.312764 Vertex 2621 0.34684 0.898065 0.310821 Vertex 2622 0.441354 0.185693 0.478125 Vertex 2623 0.447827 0.191308 0.473576 Vertex 2624 0.441526 0.197361 0.471924 Vertex 2625 0.527392 0.129031 0.708445 Vertex 2626 0.377075 0.394538 0.55519 Vertex 2627 0.459128 0.235651 0.752071 Vertex 2628 0.44303 0.160883 0.50541 Vertex 2629 0.36074 0.0998857 0.469217 Vertex 2630 0.359307 0.384351 0.335448 Vertex 2631 0.398414 0.322365 0.219843 Vertex 2632 0.469735 0.579746 0.557856 Vertex 2633 0.470185 0.0631889 0.653388 Vertex 2634 0.488593 0.0441712 0.641122 Vertex 2635 0.356725 0.922964 0.282096 Vertex 2636 0.345099 0.931066 0.266224 Vertex 2637 0.401092 0.176525 0.546952 Vertex 2638 0.488232 0.641614 0.406301 Vertex 2639 0.580371 0.473777 0.309068 Vertex 2640 0.596936 0.459681 0.192338 Vertex 2641 0.508232 0.0501294 0.676789 Vertex 2642 0.591659 0.51526 0.330597 Vertex 2643 0.425084 0.169086 0.544595 Vertex 2644 0.379539 0.912528 0.34724 Vertex 2645 0.364407 0.923094 0.33389 Vertex 2646 0.365958 0.90506 0.351694 Vertex 2647 0.370501 0.905439 0.355851 Vertex 2648 0.380872 0.24611 0.234075 Vertex 2649 0.397123 0.176596 0.687799 Vertex 2650 0.403135 0.474145 0.417299 Vertex 2651 0.41559 0.468417 0.406993 Vertex 2652 0.396644 0.467138 0.414651 Vertex 2653 0.349535 0.277838 0.229201 Vertex 2654 0.505852 0.704483 0.513738 Vertex 2655 0.568892 0.436471 0.490965 Vertex 2656 0.473697 0.389747 0.396599 Vertex 2657 0.476985 0.81176 0.445728 Vertex 2658 0.436716 0.179451 0.791327 Vertex 2659 0.303385 0.973555 0.237605 Vertex 2660 0.368037 0.446 0.544986 Vertex 2661 0.356861 0.915673 0.336828 Vertex 2662 0.513421 0.410464 0.584188 Vertex 2663 0.419866 0.819927 0.426698 Vertex 2664 0.404977 0.842114 0.410067 Vertex 2665 0.532059 0.596904 0.540733 Vertex 2666 0.503536 0.154273 0.684589 Vertex 2667 0.553902 0.438538 0.357948 Vertex 2668 0.36401 0.216225 0.219144 Vertex 2669 0.472649 0.467138 0.610851 Vertex 2670 0.473194 0.78679 0.397837 Vertex 2671 0.543342 0.402095 0.414148 Vertex 2672 0.416828 0.381781 0.626541 Vertex 2673 0.44303 0.79873 0.389462 Vertex 2674 0.431481 0.821527 0.364504 Vertex 2675 0.424243 0.829937 0.361673 Vertex 2676 0.542424 0.050159 0.795194 Vertex 2677 0.5355 0.056745 0.7951 Vertex 2678 0.534618 0.0521727 0.796148 Vertex 2679 0.537745 0.0532033 0.793542 Vertex 2680 0.53582 0.0502656 0.794596 Vertex 2681 0.534132 0.0496971 0.795733 Vertex 2682 0.489268 0.629016 0.540159 Vertex 2683 0.4983 0.637504 0.552045 Vertex 2684 0.358354 0.297164 0.505552 Vertex 2685 0.363595 0.131181 0.47055 Vertex 2686 0.366142 0.285129 0.577987 Vertex 2687 0.460401 0.407367 0.624012 Vertex 2688 0.515275 0.290122 0.504563 Vertex 2689 0.49233 0.233282 0.501288 Vertex 2690 0.358442 0.230238 0.548971 Vertex 2691 0.517342 0.63796 0.427095 Vertex 2692 0.402205 0.263339 0.224682 Vertex 2693 0.374599 0.386406 0.567598 Vertex 2694 0.376246 0.39057 0.559324 Vertex 2695 0.457783 0.607031 0.519974 Vertex 2696 0.420014 0.261545 0.221448 Vertex 2697 0.316007 0.972981 0.202407 Vertex 2698 0.542981 0.467878 0.567563 Vertex 2699 0.659959 0.40707 0.216823 Vertex 2700 0.655197 0.413331 0.215875 Vertex 2701 0.503169 0.310176 0.594493 Vertex 2702 0.356997 0.089681 0.444407 Vertex 2703 0.415661 0.460795 0.401195 Vertex 2704 0.548163 0.0012556 0.754032 Vertex 2705 0.353444 0.370214 0.416351 Vertex 2706 0.504845 0.0372891 0.733297 Vertex 2707 0.411598 0.458592 0.598929 Vertex 2708 0.429728 0.839152 0.355283 Vertex 2709 0.436106 0.828249 0.357835 Vertex 2710 0.375974 0.17707 0.478593 Vertex 2711 0.460851 0.464437 0.620778 Vertex 2712 0.466342 0.453942 0.615744 Vertex 2713 0.468095 0.27554 0.435855 Vertex 2714 0.359224 0.889394 0.303146 Vertex 2715 0.40339 0.344894 0.441783 Vertex 2716 0.365745 0.216065 0.2317 Vertex 2717 0.551456 0.563192 0.484041 Vertex 2718 0.555691 0.556286 0.519962 Vertex 2719 0.390644 0.460582 0.588168 Vertex 2720 0.541553 0.158177 0.447386 Vertex 2721 0.389382 0.190224 0.67741 Vertex 2722 0.467212 0.774566 0.385595 Vertex 2723 0.396241 0.29791 0.240407 Vertex 2724 0.368849 0.22303 0.236628 Vertex 2725 0.367048 0.223462 0.232334 Vertex 2726 0.393232 0.857886 0.345895 Vertex 2727 0.394594 0.850358 0.366583 Vertex 2728 0.519314 0.615252 0.542735 Vertex 2729 0.359959 0.327813 0.521295 Vertex 2730 0.445458 0.784936 0.403908 Vertex 2731 0.36488 0.356911 0.370705 Vertex 2732 0.454419 0.784433 0.468198 Vertex 2733 0.451339 0.18776 0.59871 Vertex 2734 0.385491 0.416926 0.586415 Vertex 2735 0.382637 0.357598 0.615335 Vertex 2736 0.328308 0.248367 0.231837 Vertex 2737 0.399652 0.416168 0.297951 Vertex 2738 0.432547 0.123114 0.670587 Vertex 2739 0.606022 0.443886 0.354086 Vertex 2740 0.417533 0.413307 0.343627 Vertex 2741 0.497963 0.0405288 0.679957 Vertex 2742 0.493254 0.0508934 0.688646 Vertex 2743 0.375263 0.474695 0.470271 Vertex 2744 0.383703 0.482069 0.462104 Vertex 2745 0.376749 0.481281 0.486754 Vertex 2746 0.475119 0.517025 0.599995 Vertex 2747 0.359811 0.23407 0.216112 Vertex 2748 0.461224 0.589791 0.436808 Vertex 2749 0.464352 0.771267 0.478397 Vertex 2750 0.537745 0.399016 0.470372 Vertex 2751 0.539676 0.398619 0.48477 Vertex 2752 0.376708 0.345996 0.281469 Vertex 2753 0.456486 0.727332 0.459995 Vertex 2754 0.382684 0.217492 0.625688 Vertex 2755 0.3825 0.213832 0.631818 Vertex 2756 0.400967 0.855742 0.340032 Vertex 2757 0.4403 0.367377 0.417767 Vertex 2758 0.524769 0.0922692 0.709944 Vertex 2759 0.527025 0.582529 0.549428 Vertex 2760 0.401844 0.266958 0.645588 Vertex 2761 0.400233 0.260579 0.662876 Vertex 2762 0.460058 0.220903 0.785475 Vertex 2763 0.354581 0.297401 0.197213 Vertex 2764 0.455503 0.234318 0.77074 Vertex 2765 0.51714 0.414551 0.582121 Vertex 2766 0.420009 0.454138 0.39702 Vertex 2767 0.371182 0.217261 0.212144 Vertex 2768 0.454846 0.172652 0.801478 Vertex 2769 0.438606 0.132484 0.735429 Vertex 2770 0.359941 0.265134 0.494744 Vertex 2771 0.483766 0.59213 0.414231 Vertex 2772 0.423047 0.147024 0.702137 Vertex 2773 0.304078 0.959329 0.225908 Vertex 2774 0.432209 0.475294 0.597869 Vertex 2775 0.499147 0.649799 0.548284 Vertex 2776 0.528198 0.401308 0.469176 Vertex 2777 0.370685 0.34204 0.399033 Vertex 2778 0.42143 0.251778 0.205208 Vertex 2779 0.459483 0.588185 0.542853 Vertex 2780 0.379871 0.384712 0.592438 Vertex 2781 0.387694 0.394473 0.605047 Vertex 2782 0.329416 0.920405 0.265081 Vertex 2783 0.542477 0.643278 0.477118 Vertex 2784 0.450433 0.495721 0.417151 Vertex 2785 0.460514 0.496817 0.410784 Vertex 2786 0.6218 0.510907 0.302115 Vertex 2787 0.356701 0.233868 0.54553 Vertex 2788 0.441537 0.248148 0.681568 Vertex 2789 0.41511 0.533282 0.517866 Vertex 2790 0.418279 0.530274 0.497344 Vertex 2791 0.554583 0.511552 0.426988 Vertex 2792 0.466448 0.757431 0.393579 Vertex 2793 0.472069 0.760103 0.390386 Vertex 2794 0.445855 0.126064 0.638036 Vertex 2795 0.566873 0.503509 0.411252 Vertex 2796 0.523193 0.382651 0.453942 Vertex 2797 0.440282 0.529948 0.4494 Vertex 2798 0.446216 0.535136 0.441226 Vertex 2799 0.445411 0.543191 0.445266 Vertex 2800 0.443119 0.53224 0.445289 Vertex 2801 0.4153 0.17232 0.540715 Vertex 2802 0.324138 0.936533 0.285834 Vertex 2803 0.400464 0.306776 0.23388 Vertex 2804 0.428484 0.221626 0.468346 Vertex 2805 0.38696 0.24521 0.689753 Vertex 2806 0.388097 0.250309 0.679471 Vertex 2807 0.453626 0.361229 0.411128 Vertex 2808 0.410941 0.255504 0.735417 Vertex 2809 0.41328 0.251903 0.74574 Vertex 2810 0.323688 0.926577 0.283796 Vertex 2811 0.32078 0.929491 0.273526 Vertex 2812 0.473514 0.101141 0.778866 Vertex 2813 0.539996 0.600208 0.524013 Vertex 2814 0.40227 0.323555 0.44128 Vertex 2815 0.472821 0.671132 0.511013 Vertex 2816 0.365899 0.213074 0.228929 Vertex 2817 0.365769 0.205345 0.223515 Vertex 2818 0.523898 0.555214 0.413153 Vertex 2819 0.517193 0.555386 0.405702 Vertex 2820 0.516542 0.542682 0.405945 Vertex 2821 0.643589 0.42106 0.205019 Vertex 2822 0.436628 0.560159 0.518126 Vertex 2823 0.530075 0.135357 0.451437 Vertex 2824 0.528239 0.0606303 0.723074 Vertex 2825 0.451399 0.171627 0.799601 Vertex 2826 0.606946 0.476271 0.186244 Vertex 2827 0.518461 0.300332 0.509953 Vertex 2828 0.548027 0.0588653 0.768536 Vertex 2829 0.35387 0.111417 0.472018 Vertex 2830 0.545871 0.0365843 0.712881 Vertex 2831 0.545918 0.0417548 0.712786 Vertex 2832 0.51624 0.169779 0.778907 Vertex 2833 0.65117 0.462459 0.194133 Vertex 2834 0.557195 0.508597 0.419816 Vertex 2835 0.556609 0.50663 0.415439 Vertex 2836 0.551468 0.507193 0.410417 Vertex 2837 0.558338 0.500435 0.400994 Vertex 2838 0.46049 0.657925 0.44154 Vertex 2839 0.621527 0.489881 0.258495 Vertex 2840 0.529063 0.559058 0.425668 Vertex 2841 0.503417 0.647051 0.551542 Vertex 2842 0.41697 0.16038 0.606854 Vertex 2843 0.387991 0.219991 0.475092 Vertex 2844 0.420014 0.239281 0.456092 Vertex 2845 0.407269 0.233051 0.464538 Vertex 2846 0.433838 0.16661 0.564661 Vertex 2847 0.52587 0.0718715 0.794833 Vertex 2848 0.443717 0.114396 0.72568 Vertex 2849 0.468876 0.336721 0.417939 Vertex 2850 0.470517 0.344971 0.416665 Vertex 2851 0.426281 0.852946 0.358137 Vertex 2852 0.446767 0.119466 0.660845 Vertex 2853 0.604825 0.526169 0.217853 Vertex 2854 0.386652 0.327867 0.260088 Vertex 2855 0.517111 0.324514 0.563429 Vertex 2856 0.52975 0.598953 0.433924 Vertex 2857 0.532468 0.602275 0.438277 Vertex 2858 0.444771 0.167031 0.610692 Vertex 2859 0.44765 0.249166 0.745829 Vertex 2860 0.435964 0.452728 0.405157 Vertex 2861 0.622723 0.493334 0.309761 Vertex 2862 0.479271 0.390505 0.624118 Vertex 2863 0.483446 0.384624 0.624592 Vertex 2864 0.489446 0.371878 0.432212 Vertex 2865 0.508529 0.297033 0.470561 Vertex 2866 0.399735 0.248231 0.721801 Vertex 2867 0.476446 0.182548 0.48506 Vertex 2868 0.6824 0.453552 0.209751 Vertex 2869 0.455367 0.146426 0.791386 Vertex 2870 0.483263 0.205291 0.571655 Vertex 2871 0.424948 0.531991 0.566526 Vertex 2872 0.48527 0.691862 0.407947 Vertex 2873 0.448396 0.569594 0.544891 Vertex 2874 0.605192 0.502911 0.37972 Vertex 2875 0.592624 0.493417 0.395036 Vertex 2876 0.611465 0.484983 0.382853 Vertex 2877 0.51775 0.36159 0.567598 Vertex 2878 0.467875 0.429796 0.61556 Vertex 2879 0.676957 0.468518 0.217717 Vertex 2880 0.424362 0.361442 0.643189 Vertex 2881 0.366864 0.0827159 0.47652 Vertex 2882 0.438031 0.826087 0.451088 Vertex 2883 0.501238 0.604289 0.565336 Vertex 2884 0.521262 0.153474 0.459877 Vertex 2885 0.67996 0.449423 0.199771 Vertex 2886 0.674298 0.447694 0.20233 Vertex 2887 0.382737 0.867877 0.329371 Vertex 2888 0.457647 0.424542 0.383788 Vertex 2889 0.461645 0.431342 0.380768 Vertex 2890 0.376199 0.420811 0.370705 Vertex 2891 0.475314 0.496805 0.403582 Vertex 2892 0.636275 0.515639 0.240164 Vertex 2893 0.555957 0.471325 0.344142 Vertex 2894 0.55578 0.546146 0.524102 Vertex 2895 0.49981 0.298964 0.451828 Vertex 2896 0.516773 0.148831 0.451881 Vertex 2897 0.338542 0.0995836 0.464035 Vertex 2898 0.447673 0.488791 0.601221 Vertex 2899 0.606703 0.537405 0.254313 Vertex 2900 0.351483 0.136825 0.472972 Vertex 2901 0.307798 0.967437 0.249303 Vertex 2902 0.533297 0.550097 0.429979 Vertex 2903 0.353296 0.891408 0.318586 Vertex 2904 0.398184 0.847195 0.366323 Vertex 2905 0.45635 0.37507 0.632143 Vertex 2906 0.534115 0.111062 0.796752 Vertex 2907 0.569408 0.426449 0.480553 Vertex 2908 0.455971 0.40402 0.387431 Vertex 2909 0.504637 0.333878 0.451467 Vertex 2910 0.622445 0.53298 0.296879 Vertex 2911 0.610558 0.537914 0.293113 Vertex 2912 0.463753 0.325788 0.419194 Vertex 2913 0.519432 0.382065 0.462199 Vertex 2914 0.533801 0.666637 0.450241 Vertex 2915 0.529436 0.66919 0.443264 Vertex 2916 0.44396 0.574723 0.477295 Vertex 2917 0.512988 0.0264092 0.729269 Vertex 2918 0.49252 0.0377807 0.672649 Vertex 2919 0.471903 0.819057 0.439189 Vertex 2920 0.526836 0.0370463 0.657907 Vertex 2921 0.691675 0.462163 0.215656 Vertex 2922 0.540221 0.0476537 0.711821 Vertex 2923 0.492289 0.100182 0.80486 Vertex 2924 0.452891 0.378997 0.633535 Vertex 2925 0.630127 0.485344 0.186463 Vertex 2926 0.35294 0.911225 0.332812 Vertex 2927 0.400712 0.301807 0.218398 Vertex 2928 0.65332 0.424939 0.201536 Vertex 2929 0.508191 0.679892 0.526311 Vertex 2930 0.408128 0.259875 0.445959 Vertex 2931 0.409733 0.888707 0.357758 Vertex 2932 0.407986 0.891378 0.360548 Vertex 2933 0.406031 0.893031 0.356888 Vertex 2934 0.408649 0.890129 0.358149 Vertex 2935 0.42958 0.879699 0.360203 Vertex 2936 0.487906 0.573278 0.572899 Vertex 2937 0.355185 0.242924 0.534651 Vertex 2938 0.411403 0.169672 0.609045 Vertex 2939 0.45115 0.190414 0.801466 Vertex 2940 0.341219 0.248775 0.21995 Vertex 2941 0.509263 0.100833 0.717643 Vertex 2942 0.504063 0.167848 0.731324 Vertex 2943 0.503619 0.170348 0.73582 Vertex 2944 0.537745 0.129357 0.452213 Vertex 2945 0.477535 0.0782561 0.714895 Vertex 2946 0.48241 0.391441 0.401645 Vertex 2947 0.352318 0.314837 0.232275 Vertex 2948 0.345324 0.303898 0.218807 Vertex 2949 0.630997 0.450768 0.190656 Vertex 2950 0.528168 0.481631 0.591396 Vertex 2951 0.566973 0.499648 0.385174 Vertex 2952 0.472442 0.0832134 0.731342 Vertex 2953 0.603818 0.453528 0.389243 Vertex 2954 0.466525 0.52874 0.589222 Vertex 2955 0.349037 0.942355 0.279958 Vertex 2956 0.546463 0.129001 0.44327 Vertex 2957 0.361303 0.140645 0.455139 Vertex 2958 0.546232 0.602957 0.495739 Vertex 2959 0.546878 0.600208 0.486671 Vertex 2960 0.320229 0.258773 0.215543 Vertex 2961 0.448307 0.177354 0.586308 Vertex 2962 0.549306 0.162405 0.43685 Vertex 2963 0.506029 0.142712 0.79125 Vertex 2964 0.455485 0.193991 0.60285 Vertex 2965 0.536738 0.632943 0.447427 Vertex 2966 0.367552 0.223474 0.491072 Vertex 2967 0.3747 0.234454 0.479493 Vertex 2968 0.538716 0.665381 0.479055 Vertex 2969 0.53293 0.659157 0.447114 Vertex 2970 0.4023 0.4287 0.603738 Vertex 2971 0.491649 0.290921 0.609104 Vertex 2972 0.49849 0.533282 0.38614 Vertex 2973 0.495594 0.533579 0.382509 Vertex 2974 0.458725 0.209005 0.6215 Vertex 2975 0.415182 0.270263 0.221448 Vertex 2976 0.462397 0.819436 0.398275 Vertex 2977 0.495475 0.245198 0.503355 Vertex 2978 0.516743 0.347151 0.479268 Vertex 2979 0.498004 0.202342 0.47495 Vertex 2980 0.621338 0.487702 0.300551 Vertex 2981 0.481059 0.40588 0.384156 Vertex 2982 0.448988 0.757147 0.4287 Vertex 2983 0.497661 0.112477 0.642182 Vertex 2984 0.369731 0.22133 0.209123 Vertex 2985 0.541281 0.041127 0.722565 Vertex 2986 0.539125 0.0342744 0.727569 Vertex 2987 0.546191 0.026877 0.725639 Vertex 2988 0.389596 0.194885 0.604431 Vertex 2989 0.49018 0.682362 0.405483 Vertex 2990 0.308301 0.98944 0.22977 Vertex 2991 0.561519 0.514881 0.432899 Vertex 2992 0.424362 0.545554 0.515923 Vertex 2993 0.402424 0.333227 0.23176 Vertex 2994 0.597813 0.522379 0.205481 Vertex 2995 0.37223 0.359571 0.499286 Vertex 2996 0.552895 0.00723158 0.764373 Vertex 2997 0.373539 0.18089 0.526169 Vertex 2998 0.381108 0.370984 0.607108 Vertex 2999 0.510844 0.43695 0.601867 Vertex 3000 0.509547 0.427367 0.599527 Vertex 3001 0.529886 0.0979845 0.770692 Vertex 3002 0.530999 0.0984406 0.776893 Vertex 3003 0.627432 0.488158 0.238286 Vertex 3004 0.504164 0.0380827 0.719213 Vertex 3005 0.605968 0.486724 0.204995 Vertex 3006 0.4058 0.449874 0.392074 Vertex 3007 0.378461 0.305663 0.46221 Vertex 3008 0.35878 0.266034 0.558774 Vertex 3009 0.525787 0.333327 0.501016 Vertex 3010 0.373243 0.423944 0.565691 Vertex 3011 0.385195 0.894506 0.313824 Vertex 3012 0.399149 0.880202 0.330579 Vertex 3013 0.520392 0.389474 0.520099 Vertex 3014 0.511496 0.610982 0.41952 Vertex 3015 0.523531 0.353204 0.536481 Vertex 3016 0.52314 0.356449 0.540715 Vertex 3017 0.529175 0.699306 0.468115 Vertex 3018 0.532456 0.690002 0.466007 Vertex 3019 0.440584 0.256801 0.725094 Vertex 3020 0.413393 0.380963 0.383735 Vertex 3021 0.40625 0.369237 0.395717 Vertex 3022 0.363299 0.117553 0.477663 Vertex 3023 0.412842 0.822373 0.391814 Vertex 3024 0.404929 0.492073 0.441173 Vertex 3025 0.557331 0.553165 0.517854 Vertex 3026 0.48074 0.671766 0.418679 Vertex 3027 0.533528 0.0940341 0.746285 Vertex 3028 0.536786 0.0846526 0.722979 Vertex 3029 0.691657 0.45168 0.200997 Vertex 3030 0.381505 0.351907 0.349923 Vertex 3031 0.357459 0.88969 0.331373 Vertex 3032 0.545634 0.440261 0.549001 Vertex 3033 0.551746 0.54954 0.454629 Vertex 3034 0.547553 0.540141 0.44112 Vertex 3035 0.462569 0.149814 0.654194 Vertex 3036 0.462249 0.161742 0.657895 Vertex 3037 0.436243 0.153894 0.582121 Vertex 3038 0.524295 0.324242 0.493535 Vertex 3039 0.515796 0.332131 0.470698 Vertex 3040 0.492425 0.358753 0.6215 Vertex 3041 0.490642 0.351871 0.623935 Vertex 3042 0.443077 0.344201 0.642899 Vertex 3043 0.435147 0.336052 0.647981 Vertex 3044 0.481965 0.714089 0.405169 Vertex 3045 0.47336 0.726699 0.41201 Vertex 3046 0.497998 0.0474701 0.730128 Vertex 3047 0.484494 0.172024 0.524096 Vertex 3048 0.52606 0.123073 0.7562 Vertex 3049 0.337068 0.911101 0.296169 Vertex 3050 0.46601 0.352825 0.63225 Vertex 3051 0.557876 0.0244251 0.772481 Vertex 3052 0.489215 0.154576 0.795413 Vertex 3053 0.593223 0.472504 0.423488 Vertex 3054 0.59359 0.469892 0.437797 Vertex 3055 0.597303 0.443791 0.324147 Vertex 3056 0.419801 0.447895 0.603661 Vertex 3057 0.522524 0.0769235 0.656788 Vertex 3058 0.408205 0.182631 0.561403 Vertex 3059 0.47718 0.21764 0.490556 Vertex 3060 0.689152 0.458763 0.216307 Vertex 3061 0.489926 0.750727 0.502224 Vertex 3062 0.511952 0.673146 0.422949 Vertex 3063 0.342546 0.939962 0.305775 Vertex 3064 0.402975 0.38168 0.243427 Vertex 3065 0.40397 0.378594 0.25118 Vertex 3066 0.403786 0.380004 0.257742 Vertex 3067 0.529228 0.172243 0.453753 Vertex 3068 0.507563 0.180428 0.451781 Vertex 3069 0.523856 0.177911 0.455962 Vertex 3070 0.396892 0.215792 0.729216 Vertex 3071 0.504448 0.0755969 0.698163 Vertex 3072 0.43417 0.517735 0.457976 Vertex 3073 0.609534 0.470538 0.218138 Vertex 3074 0.598719 0.454618 0.209105 Vertex 3075 0.508801 0.388438 0.575884 Vertex 3076 0.52163 0.0822302 0.677298 Vertex 3077 0.355475 0.264482 0.544251 Vertex 3078 0.637933 0.513672 0.211107 Vertex 3079 0.320295 0.979348 0.233288 Vertex 3080 0.559481 0.399951 0.425804 Vertex 3081 0.512894 0.398607 0.575807 Vertex 3082 0.51791 0.386697 0.546768 Vertex 3083 0.36847 0.109812 0.477307 Vertex 3084 0.372781 0.43852 0.565721 Vertex 3085 0.446204 0.172444 0.602844 Vertex 3086 0.516773 0.577572 0.565063 Vertex 3087 0.535269 0.0657475 0.800335 Vertex 3088 0.406463 0.367862 0.429991 Vertex 3089 0.483973 0.207127 0.747932 Vertex 3090 0.370904 0.185054 0.465693 Vertex 3091 0.607704 0.487139 0.190579 Vertex 3092 0.481877 0.408083 0.61906 Vertex 3093 0.55514 0.543031 0.472202 Vertex 3094 0.419718 0.142262 0.657356 Vertex 3095 0.470333 0.816303 0.449589 Vertex 3096 0.468497 0.806738 0.465041 Vertex 3097 0.456344 0.336419 0.63559 Vertex 3098 0.466999 0.34339 0.632588 Vertex 3099 0.492496 0.178823 0.715606 Vertex 3100 0.403206 0.285893 0.231754 Vertex 3101 0.664182 0.402368 0.225499 Vertex 3102 0.483742 0.415297 0.61681 Vertex 3103 0.607976 0.448008 0.193517 Vertex 3104 0.464097 0.807466 0.393839 Vertex 3105 0.517561 0.360945 0.462015 Vertex 3106 0.396934 0.855925 0.395569 Vertex 3107 0.518171 0.107064 0.683718 Vertex 3108 0.478619 0.703642 0.501205 Vertex 3109 0.478317 0.699087 0.418596 Vertex 3110 0.478086 0.713385 0.41307 Vertex 3111 0.544402 0.153267 0.426426 Vertex 3112 0.588111 0.476579 0.29515 Vertex 3113 0.370501 0.371363 0.231185 Vertex 3114 0.457321 0.170294 0.559301 Vertex 3115 0.370098 0.208176 0.22746 Vertex 3116 0.367534 0.204284 0.216805 Vertex 3117 0.549294 0.0625374 0.735518 Vertex 3118 0.494901 0.0519595 0.731372 Vertex 3119 0.386528 0.204515 0.58308 Vertex 3120 0.510732 0.705839 0.424388 Vertex 3121 0.447762 0.394787 0.639209 Vertex 3122 0.434566 0.845839 0.437063 Vertex 3123 0.514907 0.121906 0.706313 Vertex 3124 0.463522 0.0889821 0.722885 Vertex 3125 0.546742 0.146509 0.435067 Vertex 3126 0.5311 0.403997 0.542705 Vertex 3127 0.526451 0.39975 0.540621 Vertex 3128 0.553304 0.152817 0.426266 Vertex 3129 0.455325 0.755317 0.463958 Vertex 3130 0.45115 0.246785 0.743762 Vertex 3131 0.448544 0.594244 0.507205 Vertex 3132 0.507682 0.511072 0.597905 Vertex 3133 0.494764 0.781916 0.470236 Vertex 3134 0.360385 0.411447 0.337491 Vertex 3135 0.394719 0.212227 0.474074 Vertex 3136 0.517152 0.719639 0.495052 Vertex 3137 0.361303 0.328779 0.566118 Vertex 3138 0.475913 0.444348 0.609975 Vertex 3139 0.363583 0.216011 0.560805 Vertex 3140 0.593862 0.517493 0.347897 Vertex 3141 0.586927 0.51616 0.354086 Vertex 3142 0.433607 0.474376 0.41801 Vertex 3143 0.430746 0.477201 0.419313 Vertex 3144 0.436148 0.783687 0.41862 Vertex 3145 0.430746 0.792452 0.416334 Vertex 3146 0.438197 0.78021 0.420308 Vertex 3147 0.516566 0.100075 0.687828 Vertex 3148 0.674381 0.480577 0.20015 Vertex 3149 0.395886 0.187322 0.594558 Vertex 3150 0.597718 0.511937 0.24017 Vertex 3151 0.598162 0.513471 0.229373 Vertex 3152 0.601124 0.511072 0.233335 Vertex 3153 0.54076 0.400923 0.507501 Vertex 3154 0.556325 0.40142 0.474405 Vertex 3155 0.564036 0.41342 0.486807 Vertex 3156 0.503808 0.157809 0.7044 Vertex 3157 0.462912 0.647187 0.50486 Vertex 3158 0.466401 0.642875 0.514129 Vertex 3159 0.449231 0.0950943 0.734505 Vertex 3160 0.533013 0.0876969 0.718265 Vertex 3161 0.481355 0.164964 0.795929 Vertex 3162 0.415626 0.36072 0.435067 Vertex 3163 0.427305 0.391109 0.636704 Vertex 3164 0.401838 0.181802 0.584164 Vertex 3165 0.510074 0.655662 0.418324 Vertex 3166 0.403419 0.171532 0.70023 Vertex 3167 0.44704 0.588132 0.468317 Vertex 3168 0.382281 0.476715 0.553082 Vertex 3169 0.502476 0.656871 0.547224 Vertex 3170 0.496831 0.342922 0.615276 Vertex 3171 0.49708 0.318509 0.609057 Vertex 3172 0.602119 0.465776 0.206511 Vertex 3173 0.603161 0.470526 0.203254 Vertex 3174 0.526812 0.709268 0.480825 Vertex 3175 0.340509 0.111512 0.456969 Vertex 3176 0.530259 0.424732 0.573823 Vertex 3177 0.465974 0.183531 0.67359 Vertex 3178 0.501534 0.0577993 0.68418 Vertex 3179 0.446376 0.164922 0.791522 Vertex 3180 0.534997 0.124204 0.44536 Vertex 3181 0.541376 0.0527176 0.799358 Vertex 3182 0.570415 0.526738 0.457709 Vertex 3183 0.488344 0.503426 0.391814 Vertex 3184 0.382317 0.292461 0.193102 Vertex 3185 0.455006 0.189881 0.577987 Vertex 3186 0.453187 0.226524 0.466054 Vertex 3187 0.522417 0.143897 0.733012 Vertex 3188 0.467224 0.483591 0.613078 Vertex 3189 0.466158 0.486612 0.61267 Vertex 3190 0.622155 0.539472 0.275445 Vertex 3191 0.442023 0.252394 0.739622 Vertex 3192 0.374517 0.311082 0.249463 Vertex 3193 0.374777 0.424246 0.322187 Vertex 3194 0.39216 0.444235 0.595589 Vertex 3195 0.64854 0.421403 0.207548 Vertex 3196 0.599264 0.523557 0.24601 Vertex 3197 0.432896 0.211996 0.792073 Vertex 3198 0.450072 0.218605 0.793044 Vertex 3199 0.355736 0.275433 0.522391 Vertex 3200 0.358206 0.275173 0.509225 Vertex 3201 0.375831 0.4148 0.30327 Vertex 3202 0.442065 0.28071 0.635223 Vertex 3203 0.483766 0.619931 0.418442 Vertex 3204 0.336937 0.2792 0.20464 Vertex 3205 0.34764 0.292431 0.199801 Vertex 3206 0.428733 0.106821 0.671837 Vertex 3207 0.483825 0.662142 0.522764 Vertex 3208 0.595195 0.500163 0.264968 Vertex 3209 0.48912 0.487785 0.38916 Vertex 3210 0.556407 0.0447161 0.750034 Vertex 3211 0.55546 0.0486902 0.750123 Vertex 3212 0.374463 0.337171 0.474494 Vertex 3213 0.491785 0.760896 0.414118 Vertex 3214 0.362274 0.403398 0.372731 Vertex 3215 0.351768 0.201892 0.499233 Vertex 3216 0.354113 0.212665 0.493139 Vertex 3217 0.500829 0.573906 0.573089 Vertex 3218 0.482996 0.0999923 0.785203 Vertex 3219 0.432624 0.796859 0.403772 Vertex 3220 0.649843 0.414888 0.214702 Vertex 3221 0.481355 0.172977 0.500104 Vertex 3222 0.645129 0.445811 0.221365 Vertex 3223 0.419872 0.407657 0.342348 Vertex 3224 0.423438 0.1668 0.577803 Vertex 3225 0.437711 0.128107 0.724525 Vertex 3226 0.515873 0.296903 0.486292 Vertex 3227 0.532018 0.669735 0.501288 Vertex 3228 0.506266 0.602086 0.563512 Vertex 3229 0.548489 0.490562 0.561391 Vertex 3230 0.36417 0.44619 0.530979 Vertex 3231 0.488557 0.48278 0.388645 Vertex 3232 0.539403 0.0669438 0.797072 Vertex 3233 0.445464 0.483189 0.416227 Vertex 3234 0.441709 0.495431 0.426959 Vertex 3235 0.343926 0.273621 0.230534 Vertex 3236 0.346046 0.11506 0.471977 Vertex 3237 0.526699 0.138685 0.790735 Vertex 3238 0.62408 0.48506 0.284898 Vertex 3239 0.414364 0.143151 0.673164 Vertex 3240 0.388382 0.233092 0.704364 Vertex 3241 0.469167 0.686638 0.499269 Vertex 3242 0.45622 0.681681 0.457911 Vertex 3243 0.457096 0.686739 0.474464 Vertex 3244 0.493082 0.774761 0.480612 Vertex 3245 0.508813 0.759878 0.468115 Vertex 3246 0.5017 0.776615 0.455844 Vertex 3247 0.369239 0.234928 0.582127 Vertex 3248 0.413328 0.257357 0.197071 Vertex 3249 0.406996 0.25182 0.195685 Vertex 3250 0.368612 0.286858 0.472575 Vertex 3251 0.367954 0.316898 0.202679 Vertex 3252 0.464352 0.767186 0.478344 Vertex 3253 0.496654 0.700663 0.40819 Vertex 3254 0.413482 0.372281 0.627275 Vertex 3255 0.362701 0.413414 0.532459 Vertex 3256 0.365188 0.417921 0.54299 Vertex 3257 0.513557 0.0273094 0.751835 Vertex 3258 0.524632 0.0233116 0.760067 Vertex 3259 0.347983 0.101135 0.454949 Vertex 3260 0.378064 0.392495 0.58003 Vertex 3261 0.462148 0.111849 0.643059 Vertex 3262 0.419286 0.147202 0.643272 Vertex 3263 0.541465 0.418821 0.401296 Vertex 3264 0.467046 0.61713 0.434469 Vertex 3265 0.481758 0.635987 0.41817 Vertex 3266 0.364537 0.336324 0.25458 Vertex 3267 0.487065 0.373566 0.428481 Vertex 3268 0.495896 0.385168 0.439864 Vertex 3269 0.467455 0.18965 0.668029 Vertex 3270 0.537567 0.510936 0.577987 Vertex 3271 0.451322 0.466954 0.62249 Vertex 3272 0.446299 0.463626 0.620411 Vertex 3273 0.474627 0.673626 0.425395 Vertex 3274 0.469599 0.690245 0.429583 Vertex 3275 0.523649 0.546561 0.578265 Vertex 3276 0.367475 0.104973 0.480275 Vertex 3277 0.370134 0.35183 0.221798 Vertex 3278 0.420198 0.528479 0.491018 Vertex 3279 0.382441 0.221057 0.620239 Vertex 3280 0.527339 0.133888 0.768625 Vertex 3281 0.467591 0.135558 0.64695 Vertex 3282 0.475166 0.135274 0.646399 Vertex 3283 0.515523 0.151075 0.720308 Vertex 3284 0.507273 0.0932168 0.708475 Vertex 3285 0.311328 0.952933 0.260307 Vertex 3286 0.359544 0.182744 0.503462 Vertex 3287 0.417551 0.378517 0.302074 Vertex 3288 0.3695 0.364617 0.470455 Vertex 3289 0.610238 0.527703 0.225961 Vertex 3290 0.53274 0.0645452 0.707936 Vertex 3291 0.357548 0.171953 0.482567 Vertex 3292 0.341379 0.912327 0.316667 Vertex 3293 0.497471 0.691145 0.533602 Vertex 3294 0.505988 0.175358 0.752249 Vertex 3295 0.507344 0.174754 0.758142 Vertex 3296 0.540683 0.657362 0.477479 Vertex 3297 0.440211 0.119863 0.720687 Vertex 3298 0.476629 0.232518 0.475021 Vertex 3299 0.469344 0.2256 0.475596 Vertex 3300 0.317523 0.946276 0.272466 Vertex 3301 0.44149 0.230113 0.785013 Vertex 3302 0.543757 0.499695 0.409114 Vertex 3303 0.431469 0.831713 0.354465 Vertex 3304 0.382394 0.236018 0.609898 Vertex 3305 0.592986 0.504433 0.263055 Vertex 3306 0.418694 0.252542 0.749957 Vertex 3307 0.495866 0.142387 0.656332 Vertex 3308 0.455077 0.731028 0.445497 Vertex 3309 0.460058 0.742637 0.470135 Vertex 3310 0.399925 0.325663 0.21799 Vertex 3311 0.500888 0.0276884 0.66476 Vertex 3312 0.383555 0.226198 0.667069 Vertex 3313 0.354409 0.36191 0.405957 Vertex 3314 0.543946 0.0724105 0.731289 Vertex 3315 0.498898 0.403837 0.423044 Vertex 3316 0.404136 0.86167 0.337752 Vertex 3317 0.410929 0.423316 0.37189 Vertex 3318 0.385699 0.205439 0.654614 Vertex 3319 0.511443 0.629182 0.420266 Vertex 3320 0.372657 0.265501 0.233086 Vertex 3321 0.501262 0.257381 0.50547 Vertex 3322 0.503388 0.260716 0.488874 Vertex 3323 0.464654 0.506257 0.413763 Vertex 3324 0.347959 0.166989 0.465936 Vertex 3325 0.356968 0.12816 0.457016 Vertex 3326 0.54734 0.51295 0.426716 Vertex 3327 0.318903 0.969208 0.254609 Vertex 3328 0.571516 0.491374 0.330271 Vertex 3329 0.579227 0.495674 0.319077 Vertex 3330 0.503192 0.410257 0.435825 Vertex 3331 0.490115 0.576162 0.391091 Vertex 3332 0.400221 0.29114 0.439716 Vertex 3333 0.391432 0.411447 0.594712 Vertex 3334 0.49679 0.248379 0.573633 Vertex 3335 0.507848 0.723826 0.425016 Vertex 3336 0.493106 0.182673 0.457105 Vertex 3337 0.354557 0.312166 0.53487 Vertex 3338 0.417805 0.335317 0.431786 Vertex 3339 0.522678 0.0586225 0.669136 Vertex 3340 0.515967 0.300605 0.544772 Vertex 3341 0.516666 0.296115 0.536528 Vertex 3342 0.55302 0.43695 0.364581 Vertex 3343 0.500527 0.181666 0.453178 Vertex 3344 0.476173 0.17495 0.495792 Vertex 3345 0.431327 0.548628 0.507939 Vertex 3346 0.433121 0.542107 0.49777 Vertex 3347 0.495286 0.111417 0.800596 Vertex 3348 0.426002 0.271406 0.643379 Vertex 3349 0.42185 0.271299 0.647862 Vertex 3350 0.425333 0.268196 0.648626 Vertex 3351 0.601017 0.540804 0.269759 Vertex 3352 0.517093 0.669628 0.522254 Vertex 3353 0.576876 0.423103 0.347323 Vertex 3354 0.563438 0.443554 0.335856 Vertex 3355 0.467479 0.525962 0.592864 Vertex 3356 0.524064 0.131382 0.756111 Vertex 3357 0.525029 0.129286 0.749957 Vertex 3358 0.453649 0.157537 0.519962 Vertex 3359 0.443101 0.242124 0.452118 Vertex 3360 0.437095 0.222633 0.465912 Vertex 3361 0.34623 0.0884017 0.456323 Vertex 3362 0.608171 0.506595 0.198107 Vertex 3363 0.503074 0.0233649 0.637006 Vertex 3364 0.381452 0.26315 0.199061 Vertex 3365 0.584872 0.498475 0.308778 Vertex 3366 0.549715 0.00187157 0.743762 Vertex 3367 0.427394 0.384991 0.641555 Vertex 3368 0.547062 0.146331 0.415641 Vertex 3369 0.389489 0.246122 0.654596 Vertex 3370 0.463469 0.225488 0.611171 Vertex 3371 0.475794 0.569748 0.418389 Vertex 3372 0.52558 0.341359 0.525944 Vertex 3373 0.551509 0.14395 0.414557 Vertex 3374 0.519355 0.306569 0.487157 Vertex 3375 0.559179 0.43756 0.347352 Vertex 3376 0.486674 0.50862 0.393816 Vertex 3377 0.452719 0.187802 0.621228 Vertex 3378 0.489517 0.0925179 0.645221 Vertex 3379 0.48912 0.0992875 0.649752 Vertex 3380 0.304262 0.989878 0.205131 Vertex 3381 0.520646 0.0216296 0.636882 Vertex 3382 0.365952 0.246448 0.206624 Vertex 3383 0.414737 0.535 0.532625 Vertex 3384 0.420411 0.544168 0.542729 Vertex 3385 0.538942 0.14549 0.444946 Vertex 3386 0.403407 0.297999 0.630367 Vertex 3387 0.638875 0.495478 0.244197 Vertex 3388 0.489813 0.314286 0.440072 Vertex 3389 0.494314 0.397884 0.416393 Vertex 3390 0.376086 0.306983 0.246714 Vertex 3391 0.383762 0.300415 0.239406 Vertex 3392 0.367427 0.42132 0.333398 Vertex 3393 0.455462 0.197142 0.801259 Vertex 3394 0.429834 0.259182 0.685696 Vertex 3395 0.523424 0.313777 0.500649 Vertex 3396 0.521037 0.307854 0.502159 Vertex 3397 0.634113 0.482016 0.230942 Vertex 3398 0.633497 0.486345 0.238014 Vertex 3399 0.631963 0.485084 0.235645 Vertex 3400 0.520119 0.376048 0.540668 Vertex 3401 0.529844 0.0450478 0.780477 Vertex 3402 0.517709 0.038598 0.7684 Vertex 3403 0.493236 0.566153 0.385992 Vertex 3404 0.324358 0.247591 0.229687 Vertex 3405 0.438742 0.478972 0.419816 Vertex 3406 0.401856 0.497474 0.451467 Vertex 3407 0.39293 0.496212 0.470182 Vertex 3408 0.418735 0.502994 0.447528 Vertex 3409 0.467893 0.468518 0.3941 Vertex 3410 0.625217 0.52829 0.255504 Vertex 3411 0.45677 0.623455 0.449489 Vertex 3412 0.514771 0.0779363 0.682149 Vertex 3413 0.397745 0.339973 0.211137 Vertex 3414 0.528263 0.102551 0.719325 Vertex 3415 0.508831 0.372731 0.451781 Vertex 3416 0.358306 0.302364 0.507572 Vertex 3417 0.354682 0.231108 0.534793 Vertex 3418 0.354824 0.231677 0.526436 Vertex 3419 0.420962 0.169074 0.519868 Vertex 3420 0.511277 0.28257 0.546881 Vertex 3421 0.642553 0.461766 0.186984 Vertex 3422 0.396987 0.258785 0.220631 Vertex 3423 0.487474 0.225843 0.494092 Vertex 3424 0.39444 0.258773 0.644089 Vertex 3425 0.361546 0.301985 0.490598 Vertex 3426 0.384484 0.172036 0.522029 Vertex 3427 0.400233 0.166895 0.502088 Vertex 3428 0.385995 0.350438 0.449643 Vertex 3429 0.51284 0.127793 0.70225 Vertex 3430 0.512663 0.127047 0.704589 Vertex 3431 0.504406 0.421267 0.420823 Vertex 3432 0.435964 0.81192 0.44956 Vertex 3433 0.429834 0.517196 0.461968 Vertex 3434 0.426885 0.235787 0.776568 Vertex 3435 0.430142 0.794513 0.412448 Vertex 3436 0.441218 0.790438 0.402202 Vertex 3437 0.505579 0.473617 0.398832 Vertex 3438 0.415193 0.876986 0.395444 Vertex 3439 0.393813 0.248148 0.708522 Vertex 3440 0.310108 0.997957 0.216035 Vertex 3441 0.380374 0.268575 0.462199 Vertex 3442 0.470209 0.802835 0.46866 Vertex 3443 0.371917 0.26527 0.196555 Vertex 3444 0.520048 0.0978424 0.677387 Vertex 3445 0.63923 0.478024 0.188015 Vertex 3446 0.494628 0.232577 0.547686 Vertex 3447 0.470452 0.318995 0.423601 Vertex 3448 0.600359 0.463496 0.300007 Vertex 3449 0.409638 0.424572 0.340227 Vertex 3450 0.361955 0.117784 0.459397 Vertex 3451 0.370501 0.109486 0.466019 Vertex 3452 0.365662 0.118992 0.470372 Vertex 3453 0.512988 0.405418 0.443596 Vertex 3454 0.388074 0.480677 0.449536 Vertex 3455 0.367344 0.375905 0.250523 Vertex 3456 0.459803 0.0881055 0.712668 Vertex 3457 0.45298 0.0975699 0.718425 Vertex 3458 0.507089 0.0816557 0.727244 Vertex 3459 0.440228 0.100999 0.706366 Vertex 3460 0.447436 0.0848421 0.68633 Vertex 3461 0.362221 0.394834 0.512535 Vertex 3462 0.489327 0.535847 0.386158 Vertex 3463 0.527185 0.688397 0.445443 Vertex 3464 0.516406 0.344024 0.465883 Vertex 3465 0.550597 0.573497 0.467014 Vertex 3466 0.48809 0.69461 0.513957 Vertex 3467 0.466069 0.359067 0.631374 Vertex 3468 0.358496 0.330473 0.53699 Vertex 3469 0.422727 0.163181 0.72719 Vertex 3470 0.461136 0.069307 0.65802 Vertex 3471 0.53078 0.166243 0.455903 Vertex 3472 0.466732 0.522142 0.595393 Vertex 3473 0.461597 0.549398 0.429908 Vertex 3474 0.45208 0.132377 0.783047 Vertex 3475 0.500391 0.442755 0.607446 Vertex 3476 0.501534 0.768406 0.439308 Vertex 3477 0.488877 0.796089 0.439242 Vertex 3478 0.443829 0.551193 0.453617 Vertex 3479 0.572292 0.513003 0.434919 Vertex 3480 0.50196 0.0295126 0.669741 Vertex 3481 0.36414 0.893854 0.349881 Vertex 3482 0.389442 0.325444 0.209721 Vertex 3483 0.370833 0.364492 0.497166 Vertex 3484 0.407085 0.524375 0.548593 Vertex 3485 0.365224 0.441546 0.457893 Vertex 3486 0.548347 0.517042 0.428919 Vertex 3487 0.491921 0.637261 0.403227 Vertex 3488 0.494196 0.649799 0.40373 Vertex 3489 0.362648 0.392495 0.306439 Vertex 3490 0.503713 0.0368567 0.672909 Vertex 3491 0.473135 0.104458 0.648514 Vertex 3492 0.430474 0.463306 0.408202 Vertex 3493 0.460792 0.802793 0.477331 Vertex 3494 0.469143 0.793749 0.480683 Vertex 3495 0.528903 0.407503 0.423642 Vertex 3496 0.465826 0.518114 0.416239 Vertex 3497 0.515387 0.707906 0.501288 Vertex 3498 0.466644 0.1927 0.683422 Vertex 3499 0.664751 0.458758 0.209514 Vertex 3500 0.470784 0.100454 0.772795 Vertex 3501 0.384396 0.341128 0.274817 Vertex 3502 0.467242 0.259875 0.443596 Vertex 3503 0.463049 0.264157 0.440788 Vertex 3504 0.439251 0.270808 0.63655 Vertex 3505 0.601757 0.445947 0.186114 Vertex 3506 0.501214 0.0380294 0.676042 Vertex 3507 0.395678 0.248651 0.459385 Vertex 3508 0.443989 0.251316 0.633902 Vertex 3509 0.62726 0.452035 0.202816 Vertex 3510 0.525829 0.109593 0.793595 Vertex 3511 0.424184 0.127047 0.694545 Vertex 3512 0.446619 0.177366 0.796308 Vertex 3513 0.603546 0.521046 0.206896 Vertex 3514 0.570136 0.511712 0.429014 Vertex 3515 0.518171 0.54649 0.406283 Vertex 3516 0.441662 0.549913 0.467381 Vertex 3517 0.39428 0.882702 0.392714 Vertex 3518 0.466111 0.16295 0.660851 Vertex 3519 0.455793 0.298052 0.425555 Vertex 3520 0.507545 0.0316329 0.724958 Vertex 3521 0.421702 0.40569 0.620683 Vertex 3522 0.639615 0.451254 0.187908 Vertex 3523 0.480301 0.329572 0.630455 Vertex 3524 0.498804 0.764764 0.482667 Vertex 3525 0.452731 0.782313 0.392382 Vertex 3526 0.455604 0.239607 0.739622 Vertex 3527 0.438428 0.252868 0.704364 Vertex 3528 0.509766 0.535936 0.397428 Vertex 3529 0.434134 0.149352 0.737525 Vertex 3530 0.359568 0.215342 0.487542 Vertex 3531 0.648677 0.423761 0.201673 Vertex 3532 0.508179 0.273526 0.553082 Vertex 3533 0.508369 0.275593 0.555167 Vertex 3534 0.54532 0.572313 0.532317 Vertex 3535 0.538012 0.57005 0.551033 Vertex 3536 0.511833 0.100235 0.694201 Vertex 3537 0.389276 0.441546 0.399324 Vertex 3538 0.425635 0.410233 0.382183 Vertex 3539 0.423456 0.401094 0.381111 Vertex 3540 0.422763 0.407681 0.37802 Vertex 3541 0.522115 0.102385 0.795739 Vertex 3542 0.53091 0.0628335 0.718952 Vertex 3543 0.377223 0.204107 0.478533 Vertex 3544 0.380901 0.194832 0.477064 Vertex 3545 0.484696 0.116493 0.809243 Vertex 3546 0.426328 0.460771 0.601269 Vertex 3547 0.533623 0.565395 0.434481 Vertex 3548 0.482048 0.224114 0.490888 Vertex 3549 0.477227 0.189839 0.700503 Vertex 3550 0.684882 0.453445 0.196621 Vertex 3551 0.348196 0.902477 0.325089 Vertex 3552 0.493189 0.502046 0.392128 Vertex 3553 0.50215 0.508324 0.394722 Vertex 3554 0.50427 0.256499 0.528236 Vertex 3555 0.549354 0.0459421 0.792203 Vertex 3556 0.464553 0.540117 0.42443 Vertex 3557 0.484204 0.109812 0.804967 Vertex 3558 0.487284 0.104784 0.8046 Vertex 3559 0.457452 0.125306 0.787027 Vertex 3560 0.492792 0.22791 0.525838 Vertex 3561 0.494261 0.23112 0.528219 Vertex 3562 0.370122 0.152426 0.466267 Vertex 3563 0.45969 0.085387 0.660626 Vertex 3564 0.511863 0.560687 0.400982 Vertex 3565 0.51149 0.574498 0.403227 Vertex 3566 0.519018 0.562321 0.408664 Vertex 3567 0.383898 0.219192 0.689901 Vertex 3568 0.432807 0.303051 0.425437 Vertex 3569 0.375914 0.296121 0.600771 Vertex 3570 0.368398 0.302642 0.584342 Vertex 3571 0.490453 0.308636 0.441197 Vertex 3572 0.483926 0.522781 0.595228 Vertex 3573 0.36244 0.258702 0.225565 Vertex 3574 0.501487 0.037834 0.722713 Vertex 3575 0.354889 0.355342 0.412146 Vertex 3576 0.543348 0.0442008 0.790918 Vertex 3577 0.399232 0.167795 0.670872 Vertex 3578 0.561436 0.48952 0.364475 Vertex 3579 0.560642 0.489176 0.372814 Vertex 3580 0.430782 0.504244 0.587913 Vertex 3581 0.408915 0.16683 0.617372 Vertex 3582 0.400801 0.170093 0.613351 Vertex 3583 0.357524 0.380347 0.383137 Vertex 3584 0.444931 0.144483 0.768406 Vertex 3585 0.424628 0.19142 0.482081 Vertex 3586 0.373907 0.374484 0.231623 Vertex 3587 0.497773 0.206464 0.502585 Vertex 3588 0.44284 0.424981 0.398631 Vertex 3589 0.55482 0.526951 0.542782 Vertex 3590 0.444682 0.452118 0.403985 Vertex 3591 0.480396 0.557015 0.576932 Vertex 3592 0.488415 0.559496 0.578863 Vertex 3593 0.474912 0.541699 0.58385 Vertex 3594 0.379195 0.345806 0.611219 Vertex 3595 0.435757 0.533259 0.47437 Vertex 3596 0.657424 0.474844 0.215052 Vertex 3597 0.662494 0.481335 0.218511 Vertex 3598 0.55042 0.0447161 0.723897 Vertex 3599 0.507036 0.316075 0.456827 Vertex 3600 0.387464 0.494613 0.478693 Vertex 3601 0.532687 0.54697 0.427474 Vertex 3602 0.358904 0.244979 0.506613 Vertex 3603 0.392356 0.866817 0.389095 Vertex 3604 0.511099 0.296577 0.571596 Vertex 3605 0.57799 0.483058 0.312817 Vertex 3606 0.425286 0.253004 0.215466 Vertex 3607 0.481853 0.178906 0.706615 Vertex 3608 0.474935 0.0823902 0.753813 Vertex 3609 0.464636 0.512997 0.415564 Vertex 3610 0.470102 0.140634 0.80194 Vertex 3611 0.540955 0.446154 0.389231 Vertex 3612 0.458168 0.0803231 0.732929 Vertex 3613 0.595835 0.469602 0.401497 Vertex 3614 0.5804 0.499186 0.393579 Vertex 3615 0.543851 0.398992 0.459859 Vertex 3616 0.555099 0.398897 0.443744 Vertex 3617 0.423823 0.869364 0.399253 Vertex 3618 0.439648 0.857323 0.392755 Vertex 3619 0.53187 0.089906 0.793548 Vertex 3620 0.522459 0.469691 0.408409 Vertex 3621 0.531971 0.486091 0.40925 Vertex 3622 0.50732 0.38874 0.44812 Vertex 3623 0.54577 0.480186 0.567598 Vertex 3624 0.436841 0.506506 0.439337 Vertex 3625 0.43886 0.506216 0.435843 Vertex 3626 0.357524 0.314049 0.20788 Vertex 3627 0.386232 0.489147 0.536481 Vertex 3628 0.513646 0.0281504 0.630533 Vertex 3629 0.478376 0.482016 0.605675 Vertex 3630 0.491418 0.326345 0.437448 Vertex 3631 0.309468 0.981622 0.238506 Vertex 3632 0.337506 0.932014 0.308044 Vertex 3633 0.440388 0.561682 0.479955 Vertex 3634 0.377016 0.0887037 0.474684 Vertex 3635 0.547239 0.406905 0.517854 Vertex 3636 0.460982 0.190301 0.642182 Vertex 3637 0.403005 0.401012 0.284625 Vertex 3638 0.347503 0.14244 0.465954 Vertex 3639 0.519953 0.330449 0.555167 Vertex 3640 0.372681 0.176839 0.467938 Vertex 3641 0.372361 0.171165 0.473025 Vertex 3642 0.450433 0.123535 0.638072 Vertex 3643 0.371917 0.102059 0.471527 Vertex 3644 0.514925 0.430649 0.59656 Vertex 3645 0.387754 0.0754843 0.473345 Vertex 3646 0.438878 0.440119 0.625836 Vertex 3647 0.43138 0.428789 0.619256 Vertex 3648 0.494314 0.768169 0.423453 Vertex 3649 0.508351 0.108876 0.654395 Vertex 3650 0.507771 0.089604 0.639488 Vertex 3651 0.379426 0.178906 0.538512 Vertex 3652 0.533659 0.0280142 0.772209 Vertex 3653 0.374919 0.362876 0.471693 Vertex 3654 0.412179 0.200068 0.762442 Vertex 3655 0.507089 0.5808 0.568617 Vertex 3656 0.491341 0.708202 0.51799 Vertex 3657 0.47365 0.264944 0.613392 Vertex 3658 0.450943 0.260011 0.62984 Vertex 3659 0.447395 0.500897 0.591396 Vertex 3660 0.338856 0.908104 0.280083 Vertex 3661 0.509293 0.0964624 0.806128 Vertex 3662 0.523164 0.359488 0.499263 Vertex 3663 0.553144 0.472682 0.364463 Vertex 3664 0.398249 0.471059 0.589192 Vertex 3665 0.51438 0.106418 0.709209 Vertex 3666 0.33702 0.247088 0.211706 Vertex 3667 0.392652 0.186795 0.628205 Vertex 3668 0.505668 0.620257 0.413396 Vertex 3669 0.520552 0.0189584 0.745788 Vertex 3670 0.474787 0.378192 0.627281 Vertex 3671 0.314899 0.991323 0.22316 Vertex 3672 0.543768 0.0480387 0.716873 Vertex 3673 0.408803 0.270997 0.646269 Vertex 3674 0.557118 0.401491 0.402978 Vertex 3675 0.565232 0.404429 0.387259 Vertex 3676 0.377466 0.282067 0.461737 Vertex 3677 0.496914 0.0508401 0.683765 Vertex 3678 0.483559 0.551423 0.391121 Vertex 3679 0.560968 0.518488 0.530286 Vertex 3680 0.42897 0.380259 0.64621 Vertex 3681 0.49833 0.756306 0.423056 Vertex 3682 0.477968 0.510202 0.405003 Vertex 3683 0.533114 0.022056 0.729903 Vertex 3684 0.424889 0.214134 0.786618 Vertex 3685 0.456616 0.12774 0.802538 Vertex 3686 0.509861 0.029104 0.724993 Vertex 3687 0.377934 0.375811 0.594363 Vertex 3688 0.512757 0.292704 0.555167 Vertex 3689 0.646248 0.464283 0.192475 Vertex 3690 0.381796 0.234277 0.233098 Vertex 3691 0.382637 0.240164 0.228336 Vertex 3692 0.398687 0.403949 0.609223 Vertex 3693 0.472708 0.0758693 0.737798 Vertex 3694 0.417296 0.175844 0.752024 Vertex 3695 0.331021 0.94396 0.242906 Vertex 3696 0.53187 0.129043 0.445278 Vertex 3697 0.536549 0.0140604 0.730371 Vertex 3698 0.522103 0.154108 0.792221 Vertex 3699 0.362097 0.254473 0.564921 Vertex 3700 0.367504 0.263641 0.578312 Vertex 3701 0.399729 0.184497 0.561457 Vertex 3702 0.563029 0.549238 0.499588 Vertex 3703 0.497228 0.702066 0.529314 Vertex 3704 0.561003 0.0239631 0.747837 Vertex 3705 0.475528 0.1634 0.666797 Vertex 3706 0.513604 0.580569 0.410257 Vertex 3707 0.510649 0.593788 0.414841 Vertex 3708 0.499769 0.406064 0.425283 Vertex 3709 0.414317 0.376314 0.421303 Vertex 3710 0.380718 0.317496 0.254118 Vertex 3711 0.620425 0.485984 0.328009 Vertex 3712 0.448739 0.35289 0.638682 Vertex 3713 0.396105 0.320931 0.246175 Vertex 3714 0.553902 0.521917 0.445787 Vertex 3715 0.66388 0.421978 0.220329 Vertex 3716 0.662796 0.41413 0.216929 Vertex 3717 0.657235 0.421889 0.204557 Vertex 3718 0.34193 0.0859615 0.453534 Vertex 3719 0.483411 0.0699348 0.704039 Vertex 3720 0.347622 0.295245 0.231304 Vertex 3721 0.411036 0.215899 0.762472 Vertex 3722 0.514434 0.415457 0.436234 Vertex 3723 0.579358 0.405874 0.383338 Vertex 3724 0.587987 0.410642 0.389137 Vertex 3725 0.528192 0.398571 0.495004 Vertex 3726 0.534126 0.398441 0.495099 Vertex 3727 0.547553 0.483508 0.392886 Vertex 3728 0.546913 0.485623 0.395853 Vertex 3729 0.405498 0.372097 0.368585 Vertex 3730 0.533096 0.560349 0.563512 Vertex 3731 0.450036 0.833769 0.38537 Vertex 3732 0.47795 0.765575 0.496787 Vertex 3733 0.575739 0.523066 0.466019 Vertex 3734 0.585097 0.493192 0.459859 Vertex 3735 0.414583 0.264198 0.694 Vertex 3736 0.628711 0.505363 0.287415 Vertex 3737 0.501647 0.497634 0.396315 Vertex 3738 0.495108 0.412709 0.399495 Vertex 3739 0.411261 0.321121 0.636787 Vertex 3740 0.419973 0.335383 0.64422 Vertex 3741 0.558664 0.516806 0.437039 Vertex 3742 0.607295 0.489905 0.215816 Vertex 3743 0.483286 0.765611 0.493897 Vertex 3744 0.464772 0.385127 0.399389 Vertex 3745 0.512586 0.0811701 0.795437 Vertex 3746 0.372989 0.373376 0.57178 Vertex 3747 0.433358 0.806359 0.445319 Vertex 3748 0.463682 0.366103 0.630977 Vertex 3749 0.428052 0.224208 0.785013 Vertex 3750 0.539948 0.0816024 0.737395 Vertex 3751 0.546605 0.00179457 0.731597 Vertex 3752 0.478471 0.288244 0.621127 Vertex 3753 0.39245 0.429411 0.380904 Vertex 3754 0.559043 0.0136814 0.736702 Vertex 3755 0.418386 0.399951 0.360601 Vertex 3756 0.349671 0.188181 0.478397 Vertex 3757 0.35647 0.203331 0.475921 Vertex 3758 0.535163 0.170229 0.449868 Vertex 3759 0.487693 0.578366 0.399703 Vertex 3760 0.518485 0.16725 0.444964 Vertex 3761 0.658242 0.451988 0.200689 Vertex 3762 0.394588 0.280166 0.231618 Vertex 3763 0.533439 0.524878 0.421788 Vertex 3764 0.327662 0.921548 0.287681 Vertex 3765 0.327384 0.920897 0.279526 Vertex 3766 0.47105 0.125632 0.811221 Vertex 3767 0.63589 0.467902 0.183176 Vertex 3768 0.432896 0.206571 0.792121 Vertex 3769 0.5225 0.0888399 0.713888 Vertex 3770 0.493817 0.239323 0.489277 Vertex 3771 0.61336 0.533922 0.241112 Vertex 3772 0.449569 0.799844 0.375029 Vertex 3773 0.399457 0.360672 0.412395 Vertex 3774 0.406493 0.338741 0.212582 Vertex 3775 0.569757 0.536042 0.494365 Vertex 3776 0.503252 0.151537 0.698898 Vertex 3777 0.362197 0.288339 0.489224 Vertex 3778 0.484157 0.613333 0.545424 Vertex 3779 0.536874 0.129902 0.435689 Vertex 3780 0.362517 0.342821 0.233418 Vertex 3781 0.35631 0.427693 0.480506 Vertex 3782 0.444919 0.792138 0.457757 Vertex 3783 0.532877 0.142683 0.444288 Vertex 3784 0.526445 0.14308 0.44664 Vertex 3785 0.372337 0.216183 0.4857 Vertex 3786 0.463238 0.268403 0.62432 Vertex 3787 0.469575 0.275475 0.622863 Vertex 3788 0.546653 0.493085 0.402599 Vertex 3789 0.364821 0.295304 0.487293 Vertex 3790 0.366497 0.290435 0.480517 Vertex 3791 0.45709 0.190615 0.629431 Vertex 3792 0.495268 0.0525518 0.737756 Vertex 3793 0.470369 0.112779 0.789289 Vertex 3794 0.467662 0.119768 0.797587 Vertex 3795 0.400203 0.170892 0.643616 Vertex 3796 0.452779 0.842428 0.409647 Vertex 3797 0.449468 0.84466 0.399863 Vertex 3798 0.457511 0.835326 0.405673 Vertex 3799 0.381245 0.897905 0.369154 Vertex 3800 0.525 0.327588 0.494039 Vertex 3801 0.371235 0.341495 0.217178 Vertex 3802 0.493136 0.783639 0.432414 Vertex 3803 0.552066 0.549635 0.471604 Vertex 3804 0.51672 0.616016 0.425887 Vertex 3805 0.458991 0.584733 0.438561 Vertex 3806 0.465068 0.571673 0.431282 Vertex 3807 0.659882 0.459326 0.214643 Vertex 3808 0.51688 0.126407 0.710921 Vertex 3809 0.497755 0.275119 0.459693 Vertex 3810 0.459376 0.153812 0.798404 Vertex 3811 0.452257 0.154303 0.791333 Vertex 3812 0.46797 0.358108 0.413959 Vertex 3813 0.302651 0.978453 0.233608 Vertex 3814 0.596984 0.534793 0.277998 Vertex 3815 0.488711 0.195963 0.772795 Vertex 3816 0.431108 0.490391 0.434143 Vertex 3817 0.642191 0.484456 0.231458 Vertex 3818 0.647995 0.472196 0.218161 Vertex 3819 0.612388 0.517682 0.321577 Vertex 3820 0.371786 0.230942 0.233744 Vertex 3821 0.374913 0.0823902 0.466925 Vertex 3822 0.414844 0.377789 0.358232 Vertex 3823 0.464553 0.752048 0.40309 Vertex 3824 0.514842 0.0657712 0.677896 Vertex 3825 0.536235 0.540324 0.428007 Vertex 3826 0.489813 0.0386217 0.640873 Vertex 3827 0.531834 0.0728428 0.706656 Vertex 3828 0.448562 0.480577 0.609021 Vertex 3829 0.47904 0.621038 0.53718 Vertex 3830 0.484021 0.586936 0.410038 Vertex 3831 0.594407 0.502686 0.383599 Vertex 3832 0.594585 0.427966 0.392927 Vertex 3833 0.500231 0.54771 0.389202 Vertex 3834 0.64138 0.507939 0.244168 Vertex 3835 0.364407 0.334749 0.511753 Vertex 3836 0.469155 0.779114 0.486428 Vertex 3837 0.440708 0.555599 0.483301 Vertex 3838 0.364561 0.206867 0.215626 Vertex 3839 0.397058 0.328566 0.206926 Vertex 3840 0.356287 0.405365 0.447285 Vertex 3841 0.464529 0.403647 0.383315 Vertex 3842 0.476268 0.407023 0.380703 Vertex 3843 0.470908 0.403239 0.383066 Vertex 3844 0.543431 0.583542 0.515923 Vertex 3845 0.475622 0.143186 0.797723 Vertex 3846 0.430113 0.260254 0.735441 Vertex 3847 0.42849 0.26251 0.700219 Vertex 3848 0.423538 0.806613 0.418637 Vertex 3849 0.410485 0.316945 0.635881 Vertex 3850 0.549875 0.505819 0.4097 Vertex 3851 0.402898 0.516782 0.509734 Vertex 3852 0.341658 0.259016 0.208691 Vertex 3853 0.352822 0.892575 0.312681 Vertex 3854 0.425653 0.801721 0.414243 Vertex 3855 0.595497 0.428019 0.201027 Vertex 3856 0.586115 0.422854 0.202348 Vertex 3857 0.597102 0.440202 0.184455 Vertex 3858 0.590504 0.442168 0.186339 Vertex 3859 0.589077 0.446438 0.187808 Vertex 3860 0.416828 0.241348 0.76432 Vertex 3861 0.427483 0.245086 0.766156 Vertex 3862 0.422135 0.247579 0.760185 Vertex 3863 0.595562 0.51847 0.278164 Vertex 3864 0.562117 0.0186564 0.739178 Vertex 3865 0.448639 0.416813 0.635792 Vertex 3866 0.446631 0.411264 0.638872 Vertex 3867 0.511265 0.195051 0.474453 Vertex 3868 0.37213 0.360992 0.302074 Vertex 3869 0.455811 0.163726 0.495431 Vertex 3870 0.454887 0.211303 0.796752 Vertex 3871 0.49894 0.0443074 0.723299 Vertex 3872 0.537704 0.618184 0.524102 Vertex 3873 0.544479 0.605207 0.511671 Vertex 3874 0.442444 0.778327 0.41416 Vertex 3875 0.434703 0.258542 0.706455 Vertex 3876 0.526729 0.142902 0.459 Vertex 3877 0.375594 0.870679 0.345652 Vertex 3878 0.523448 0.0213512 0.651984 Vertex 3879 0.580175 0.494068 0.488904 Vertex 3880 0.587057 0.487785 0.291436 Vertex 3881 0.379456 0.873889 0.319457 Vertex 3882 0.461455 0.737934 0.422416 Vertex 3883 0.433335 0.195922 0.475839 Vertex 3884 0.490453 0.760405 0.491012 Vertex 3885 0.384786 0.34021 0.459859 Vertex 3886 0.555276 0.479025 0.366554 Vertex 3887 0.58441 0.494684 0.466007 Vertex 3888 0.5839 0.498582 0.430797 Vertex 3889 0.590599 0.415883 0.38319 Vertex 3890 0.595005 0.426064 0.362881 Vertex 3891 0.58656 0.40957 0.378582 Vertex 3892 0.473111 0.531606 0.411755 Vertex 3893 0.430296 0.158271 0.756164 Vertex 3894 0.551835 0.0112649 0.768714 Vertex 3895 0.500302 0.481086 0.393786 Vertex 3896 0.428401 0.162121 0.577767 Vertex 3897 0.59157 0.509544 0.26864 Vertex 3898 0.46312 0.597869 0.437389 Vertex 3899 0.450984 0.606486 0.459907 Vertex 3900 0.501718 0.434741 0.395527 Vertex 3901 0.504886 0.438905 0.397855 Vertex 3902 0.48761 0.652055 0.529237 Vertex 3903 0.474876 0.651623 0.520395 Vertex 3904 0.515387 0.169601 0.762489 Vertex 3905 0.480704 0.0896276 0.768454 Vertex 3906 0.593525 0.4382 0.411672 Vertex 3907 0.450978 0.298401 0.425028 Vertex 3908 0.495203 0.638291 0.545098 Vertex 3909 0.348777 0.912351 0.327073 Vertex 3910 0.473514 0.279052 0.437081 Vertex 3911 0.464517 0.29242 0.429298 Vertex 3912 0.461645 0.281717 0.432982 Vertex 3913 0.490263 0.562919 0.385328 Vertex 3914 0.476049 0.445734 0.374063 Vertex 3915 0.43953 0.29483 0.426319 Vertex 3916 0.443978 0.313688 0.421273 Vertex 3917 0.450824 0.312444 0.421125 Vertex 3918 0.31988 0.969794 0.202893 Vertex 3919 0.535406 0.655354 0.50345 Vertex 3920 0.40782 0.24518 0.219115 Vertex 3921 0.417894 0.814325 0.403712 Vertex 3922 0.419766 0.812192 0.413959 Vertex 3923 0.478566 0.0731449 0.70453 Vertex 3924 0.517413 0.405092 0.571703 Vertex 3925 0.364033 0.279105 0.484906 Vertex 3926 0.490109 0.202407 0.471781 Vertex 3927 0.527221 0.0835095 0.71117 Vertex 3928 0.53707 0.059813 0.803593 Vertex 3929 0.532498 0.0633014 0.801662 Vertex 3930 0.446856 0.822421 0.461648 Vertex 3931 0.521789 0.0563304 0.778682 Vertex 3932 0.51069 0.0601979 0.770876 Vertex 3933 0.453329 0.607535 0.50849 Vertex 3934 0.507984 0.760825 0.451384 Vertex 3935 0.66266 0.473511 0.191853 Vertex 3936 0.391639 0.250854 0.669119 Vertex 3937 0.359591 0.347542 0.246335 Vertex 3938 0.477932 0.179694 0.555167 Vertex 3939 0.423047 0.385642 0.422037 Vertex 3940 0.453726 0.103309 0.749898 Vertex 3941 0.55302 0.467493 0.372743 Vertex 3942 0.427655 0.830949 0.355389 Vertex 3943 0.467562 0.696357 0.493121 Vertex 3944 0.455687 0.569203 0.553994 Vertex 3945 0.451351 0.579236 0.534514 Vertex 3946 0.521588 0.136168 0.704116 Vertex 3947 0.47795 0.566283 0.41419 Vertex 3948 0.553387 0.463958 0.374869 Vertex 3949 0.496346 0.671168 0.537387 Vertex 3950 0.483547 0.195827 0.721872 Vertex 3951 0.43382 0.124488 0.718194 Vertex 3952 0.423361 0.255835 0.220684 Vertex 3953 0.417906 0.404595 0.363403 Vertex 3954 0.508327 0.572911 0.399199 Vertex 3955 0.467721 0.723299 0.48477 Vertex 3956 0.479502 0.725964 0.495371 Vertex 3957 0.351608 0.149636 0.474216 Vertex 3958 0.435668 0.275339 0.433243 Vertex 3959 0.593442 0.448405 0.201288 Vertex 3960 0.430373 0.858277 0.364682 Vertex 3961 0.444434 0.848723 0.38643 Vertex 3962 0.475995 0.488732 0.398329 Vertex 3963 0.491531 0.222236 0.527229 Vertex 3964 0.355215 0.360394 0.428712 Vertex 3965 0.376613 0.314849 0.252809 Vertex 3966 0.500409 0.0929739 0.724324 Vertex 3967 0.505319 0.667212 0.540715 Vertex 3968 0.514617 0.653607 0.532584 Vertex 3969 0.375281 0.326765 0.472338 Vertex 3970 0.445855 0.209834 0.470088 Vertex 3971 0.383839 0.174594 0.501336 Vertex 3972 0.464049 0.827165 0.43746 Vertex 3973 0.45603 0.0803528 0.70347 Vertex 3974 0.453466 0.0887037 0.711845 Vertex 3975 0.577255 0.411293 0.364842 Vertex 3976 0.515754 0.670256 0.426059 Vertex 3977 0.523081 0.676356 0.433231 Vertex 3978 0.461597 0.197337 0.656628 Vertex 3979 0.452779 0.314701 0.637397 Vertex 3980 0.441715 0.328649 0.642538 Vertex 3981 0.438464 0.319054 0.644013 Vertex 3982 0.487106 0.397861 0.618818 Vertex 3983 0.477399 0.174689 0.693946 Vertex 3984 0.610647 0.493387 0.379814 Vertex 3985 0.507711 0.073441 0.689978 Vertex 3986 0.455799 0.136808 0.798582 Vertex 3987 0.599086 0.465699 0.396629 Vertex 3988 0.6046 0.478421 0.391529 Vertex 3989 0.497815 0.244653 0.519962 Vertex 3990 0.429106 0.171508 0.503314 Vertex 3991 0.513356 0.0867966 0.686259 Vertex 3992 0.512965 0.083018 0.683534 Vertex 3993 0.522796 0.350254 0.548948 Vertex 3994 0.346437 0.126733 0.459545 Vertex 3995 0.634474 0.443122 0.196283 Vertex 3996 0.432849 0.833982 0.354685 Vertex 3997 0.347249 0.27387 0.198735 Vertex 3998 0.634415 0.48111 0.229373 Vertex 3999 0.52606 0.577797 0.429067 Vertex 4000 0.46052 0.519263 0.422659 Vertex 4001 0.595521 0.516373 0.335465 Vertex 4002 0.441585 0.163756 0.580764 Vertex 4003 0.485022 0.0384855 0.660732 Vertex 4004 0.448461 0.238435 0.6525 Vertex 4005 0.367599 0.880267 0.314245 Vertex 4006 0.347249 0.264145 0.225233 Vertex 4007 0.394577 0.427231 0.363266 Vertex 4008 0.37595 0.347127 0.218078 Vertex 4009 0.512515 0.308221 0.469584 Vertex 4010 0.577806 0.507211 0.484681 Vertex 4011 0.430409 0.13047 0.672885 Vertex 4012 0.429112 0.136973 0.66579 Vertex 4013 0.490062 0.388438 0.617372 Vertex 4014 0.43594 0.221395 0.79019 Vertex 4015 0.470351 0.560225 0.571128 Vertex 4016 0.45985 0.17964 0.658748 Vertex 4017 0.47583 0.641685 0.423897 Vertex 4018 0.46646 0.627713 0.435079 Vertex 4019 0.425019 0.240573 0.209295 Vertex 4020 0.425617 0.243143 0.213885 Vertex 4021 0.54124 0.0214045 0.770201 Vertex 4022 0.607017 0.502958 0.227566 Vertex 4023 0.536217 0.107123 0.787199 Vertex 4024 0.45218 0.51016 0.423938 Vertex 4025 0.520167 0.730845 0.47845 Vertex 4026 0.323902 0.993574 0.207548 Vertex 4027 0.541743 0.604615 0.454215 Vertex 4028 0.416893 0.36897 0.630621 Vertex 4029 0.512159 0.697127 0.424631 Vertex 4030 0.407162 0.208377 0.472889 Vertex 4031 0.434543 0.199185 0.473446 Vertex 4032 0.456409 0.561261 0.561249 Vertex 4033 0.47044 0.568356 0.426331 Vertex 4034 0.454573 0.15502 0.653749 Vertex 4035 0.451316 0.152775 0.645582 Vertex 4036 0.498342 0.0960241 0.809788 Vertex 4037 0.496257 0.0953963 0.79969 Vertex 4038 0.459702 0.22236 0.681568 Vertex 4039 0.452642 0.418122 0.628371 Vertex 4040 0.446495 0.372873 0.640767 Vertex 4041 0.368446 0.353162 0.273254 Vertex 4042 0.504531 0.745663 0.490965 Vertex 4043 0.546469 0.572431 0.450543 Vertex 4044 0.602243 0.52858 0.262806 Vertex 4045 0.373634 0.349484 0.475827 Vertex 4046 0.51865 0.384446 0.522089 Vertex 4047 0.521381 0.524523 0.408705 Vertex 4048 0.402519 0.850494 0.350124 Vertex 4049 0.523258 0.392021 0.433284 Vertex 4050 0.518402 0.387769 0.43939 Vertex 4051 0.383424 0.249006 0.226157 Vertex 4052 0.530306 0.108888 0.77286 Vertex 4053 0.458553 0.800649 0.476354 Vertex 4054 0.674162 0.455328 0.212689 Vertex 4055 0.503672 0.590886 0.568084 Vertex 4056 0.469019 0.105186 0.776698 Vertex 4057 0.522346 0.158153 0.768542 Vertex 4058 0.519107 0.166119 0.774826 Vertex 4059 0.514404 0.719911 0.433965 Vertex 4060 0.520528 0.173481 0.448529 Vertex 4061 0.437587 0.374543 0.649171 Vertex 4062 0.427436 0.819163 0.379382 Vertex 4063 0.498531 0.433551 0.389516 Vertex 4064 0.497388 0.430116 0.391458 Vertex 4065 0.483227 0.759919 0.400502 Vertex 4066 0.409585 0.226702 0.467393 Vertex 4067 0.565576 0.474151 0.324301 Vertex 4068 0.392219 0.432455 0.596696 Vertex 4069 0.474728 0.116558 0.647767 Vertex 4070 0.366337 0.926855 0.323739 Vertex 4071 0.353663 0.936586 0.310235 Vertex 4072 0.407488 0.37311 0.258607 Vertex 4073 0.487314 0.239418 0.477609 Vertex 4074 0.322344 0.243131 0.216983 Vertex 4075 0.55328 0.0363711 0.781075 Vertex 4076 0.303759 0.966596 0.219488 Vertex 4077 0.460514 0.335069 0.415019 Vertex 4078 0.452062 0.347181 0.413668 Vertex 4079 0.462249 0.342733 0.412857 Vertex 4080 0.649399 0.426686 0.201886 Vertex 4081 0.480212 0.769514 0.493263 Vertex 4082 0.620289 0.491255 0.233797 Vertex 4083 0.42814 0.363332 0.647353 Vertex 4084 0.468343 0.203769 0.795431 Vertex 4085 0.467467 0.206192 0.79446 Vertex 4086 0.386048 0.279473 0.230018 Vertex 4087 0.318624 0.998768 0.213287 Vertex 4088 0.472045 0.793974 0.399187 Vertex 4089 0.525651 0.362467 0.518085 Vertex 4090 0.320466 0.948751 0.227377 Vertex 4091 0.319631 0.937024 0.244843 Vertex 4092 0.607946 0.470431 0.293521 Vertex 4093 0.570355 0.404844 0.420456 Vertex 4094 0.571611 0.406946 0.439065 Vertex 4095 0.419908 0.87826 0.384227 Vertex 4096 0.640817 0.451721 0.216278 Vertex 4097 0.510708 0.289263 0.481743 Vertex 4098 0.525136 0.62625 0.534651 Vertex 4099 0.588313 0.502366 0.276316 Vertex 4100 0.457185 0.215887 0.471841 Vertex 4101 0.375056 0.347287 0.488827 Vertex 4102 0.525941 0.0758397 0.7131 Vertex 4103 0.456451 0.708504 0.4555 Vertex 4104 0.457132 0.704809 0.468483 Vertex 4105 0.369915 0.926523 0.31672 Vertex 4106 0.527991 0.349289 0.505416 Vertex 4107 0.37223 0.375959 0.527212 Vertex 4108 0.371176 0.368609 0.507483 Vertex 4109 0.523969 0.323389 0.536392 Vertex 4110 0.459874 0.718662 0.43791 Vertex 4111 0.371686 0.903567 0.301025 Vertex 4112 0.344554 0.927441 0.265543 Vertex 4113 0.471263 0.164899 0.506358 Vertex 4114 0.468201 0.16661 0.499967 Vertex 4115 0.612625 0.505416 0.195039 Vertex 4116 0.424687 0.353974 0.645262 Vertex 4117 0.444025 0.840917 0.434646 Vertex 4118 0.450096 0.828954 0.448263 Vertex 4119 0.535181 0.0551696 0.789284 Vertex 4120 0.383791 0.891485 0.377611 Vertex 4121 0.381162 0.90413 0.361839 Vertex 4122 0.588479 0.434575 0.199795 Vertex 4123 0.397757 0.504984 0.483727 Vertex 4124 0.376933 0.395136 0.271169 Vertex 4125 0.480864 0.127847 0.806382 Vertex 4126 0.456344 0.775442 0.470153 Vertex 4127 0.590652 0.466208 0.30221 Vertex 4128 0.477731 0.533134 0.404068 Vertex 4129 0.400316 0.287741 0.628608 Vertex 4130 0.65672 0.439823 0.225719 Vertex 4131 0.398616 0.314333 0.21854 Vertex 4132 0.59693 0.426153 0.379572 Vertex 4133 0.36244 0.384298 0.4979 Vertex 4134 0.40256 0.264524 0.653992 Vertex 4135 0.594081 0.431975 0.209206 Vertex 4136 0.47262 0.14462 0.649959 Vertex 4137 0.525325 0.347109 0.494815 Vertex 4138 0.626396 0.523208 0.219488 Vertex 4139 0.49384 0.0735535 0.762282 Vertex 4140 0.492087 0.224878 0.550932 Vertex 4141 0.47108 0.41429 0.618871 Vertex 4142 0.479188 0.422227 0.615554 Vertex 4143 0.54715 0.586391 0.507572 Vertex 4144 0.374919 0.351451 0.497125 Vertex 4145 0.477778 0.244339 0.463069 Vertex 4146 0.496671 0.548438 0.582855 Vertex 4147 0.497489 0.552336 0.58144 Vertex 4148 0.525254 0.591153 0.552075 Vertex 4149 0.494741 0.18734 0.739894 Vertex 4150 0.482481 0.746972 0.502473 Vertex 4151 0.543851 0.551542 0.553064 Vertex 4152 0.458784 0.736163 0.468169 Vertex 4153 0.450261 0.166338 0.555214 Vertex 4154 0.415738 0.212612 0.770657 Vertex 4155 0.467976 0.784403 0.386021 Vertex 4156 0.520765 0.15422 0.754085 Vertex 4157 0.314633 0.974864 0.246554 Vertex 4158 0.545824 0.0356663 0.715007 Vertex 4159 0.614829 0.529812 0.229716 Vertex 4160 0.513883 0.741227 0.484557 Vertex 4161 0.500829 0.73608 0.499049 Vertex 4162 0.373599 0.380122 0.565531 Vertex 4163 0.372598 0.380419 0.557204 Vertex 4164 0.531461 0.128066 0.780974 Vertex 4165 0.529637 0.138975 0.779037 Vertex 4166 0.529122 0.133124 0.774814 Vertex 4167 0.461858 0.203888 0.62872 Vertex 4168 0.510542 0.169832 0.751971 Vertex 4169 0.3513 0.391352 0.462797 Vertex 4170 0.403721 0.360311 0.287776 Vertex 4171 0.397437 0.455133 0.594961 Vertex 4172 0.389726 0.306889 0.241574 Vertex 4173 0.495635 0.325847 0.613209 Vertex 4174 0.620005 0.480067 0.289032 Vertex 4175 0.4767 0.10367 0.65048 Vertex 4176 0.516992 0.0521431 0.730797 Vertex 4177 0.520611 0.0336466 0.728114 Vertex 4178 0.410254 0.834539 0.375082 Vertex 4179 0.40837 0.423808 0.606771 Vertex 4180 0.360782 0.394935 0.38935 Vertex 4181 0.517069 0.365251 0.475685 Vertex 4182 0.499242 0.303246 0.60073 Vertex 4183 0.677419 0.471136 0.19607 Vertex 4184 0.454153 0.0795887 0.659103 Vertex 4185 0.528518 0.56427 0.42658 Vertex 4186 0.460046 0.325202 0.635087 Vertex 4187 0.484021 0.697334 0.507572 Vertex 4188 0.418937 0.442897 0.389042 Vertex 4189 0.479466 0.0766807 0.735464 Vertex 4190 0.576835 0.514188 0.476419 Vertex 4191 0.622629 0.484734 0.346618 Vertex 4192 0.38253 0.863548 0.358599 Vertex 4193 0.374309 0.0903621 0.46763 Vertex 4194 0.399013 0.251956 0.210835 Vertex 4195 0.412131 0.394201 0.294783 Vertex 4196 0.55344 0.552413 0.467517 Vertex 4197 0.405883 0.162719 0.683647 Vertex 4198 0.429929 0.155908 0.588328 Vertex 4199 0.400345 0.838643 0.381289 Vertex 4200 0.409135 0.827437 0.401894 Vertex 4201 0.408276 0.827479 0.391447 Vertex 4202 0.351821 0.209941 0.517895 Vertex 4203 0.517573 0.600807 0.551613 Vertex 4204 0.535761 0.599699 0.534739 Vertex 4205 0.630168 0.504107 0.278424 Vertex 4206 0.657264 0.458544 0.20984 Vertex 4207 0.6599 0.454955 0.207252 Vertex 4208 0.661079 0.460629 0.20766 Vertex 4209 0.399611 0.394402 0.264891 Vertex 4210 0.501469 0.202407 0.484314 Vertex 4211 0.695004 0.447114 0.202407 Vertex 4212 0.690751 0.447202 0.207358 Vertex 4213 0.513048 0.0267645 0.743673 Vertex 4214 0.505141 0.0375082 0.742536 Vertex 4215 0.528399 0.704068 0.4806 Vertex 4216 0.421092 0.851661 0.432301 Vertex 4217 0.615593 0.509983 0.347435 Vertex 4218 0.55989 0.53163 0.461156 Vertex 4219 0.443841 0.579148 0.496929 Vertex 4220 0.368085 0.375491 0.242148 Vertex 4221 0.527161 0.132839 0.793998 Vertex 4222 0.447306 0.499156 0.423162 Vertex 4223 0.508505 0.336235 0.592355 Vertex 4224 0.356109 0.252963 0.518683 Vertex 4225 0.51489 0.652085 0.42334 Vertex 4226 0.408649 0.252827 0.737525 Vertex 4227 0.545137 0.55801 0.544849 Vertex 4228 0.454253 0.414385 0.388331 Vertex 4229 0.521517 0.38874 0.505464 Vertex 4230 0.402252 0.262119 0.680555 Vertex 4231 0.503524 0.405625 0.596542 Vertex 4232 0.369962 0.176934 0.497172 Vertex 4233 0.516992 0.313652 0.553082 Vertex 4234 0.515387 0.308689 0.557257 Vertex 4235 0.383531 0.282327 0.45569 Vertex 4236 0.449373 0.402457 0.635407 Vertex 4237 0.52484 0.159403 0.790154 Vertex 4238 0.383004 0.343283 0.391038 Vertex 4239 0.588396 0.423263 0.204557 Vertex 4240 0.473076 0.0822835 0.734315 Vertex 4241 0.413132 0.845946 0.344888 Vertex 4242 0.408353 0.844726 0.349828 Vertex 4243 0.403354 0.360619 0.240081 Vertex 4244 0.564456 0.401693 0.399744 Vertex 4245 0.373492 0.422848 0.356177 Vertex 4246 0.376465 0.423014 0.364202 Vertex 4247 0.449663 0.164324 0.624367 Vertex 4248 0.412398 0.258921 0.224031 Vertex 4249 0.38253 0.326765 0.617455 Vertex 4250 0.406718 0.254349 0.728712 Vertex 4251 0.494859 0.5099 0.39025 Vertex 4252 0.493118 0.508703 0.391322 Vertex 4253 0.40837 0.277281 0.229776 Vertex 4254 0.533884 0.139858 0.443785 Vertex 4255 0.615243 0.471515 0.326599 Vertex 4256 0.39444 0.352221 0.295991 Vertex 4257 0.502594 0.679347 0.537369 Vertex 4258 0.354913 0.382521 0.47784 Vertex 4259 0.360148 0.896685 0.293503 Vertex 4260 0.642422 0.437643 0.203574 Vertex 4261 0.406783 0.360584 0.25667 Vertex 4262 0.527546 0.392086 0.443199 Vertex 4263 0.530549 0.400366 0.444573 Vertex 4264 0.44075 0.116517 0.728564 Vertex 4265 0.486644 0.671109 0.521621 Vertex 4266 0.414003 0.180771 0.74789 Vertex 4267 0.413233 0.188264 0.756164 Vertex 4268 0.445044 0.348975 0.416636 Vertex 4269 0.330138 0.274373 0.22512 Vertex 4270 0.539297 0.0404992 0.783118 Vertex 4271 0.555276 0.0307919 0.780559 Vertex 4272 0.546096 0.0308156 0.781762 Vertex 4273 0.555152 0.43364 0.361537 Vertex 4274 0.469522 0.163063 0.538607 Vertex 4275 0.461917 0.158787 0.534467 Vertex 4276 0.318642 0.954319 0.220957 Vertex 4277 0.32078 0.953211 0.220222 Vertex 4278 0.533937 0.471793 0.40267 Vertex 4279 0.367528 0.320031 0.584958 Vertex 4280 0.441952 0.822421 0.365049 Vertex 4281 0.443557 0.825661 0.370486 Vertex 4282 0.379243 0.441244 0.41419 Vertex 4283 0.499976 0.244813 0.540757 Vertex 4284 0.387854 0.858466 0.362585 Vertex 4285 0.546315 0.398459 0.478829 Vertex 4286 0.587063 0.416653 0.401811 Vertex 4287 0.59147 0.425674 0.401551 Vertex 4288 0.423467 0.456086 0.601464 Vertex 4289 0.375488 0.416724 0.385216 Vertex 4290 0.357761 0.397938 0.335448 Vertex 4291 0.344181 0.918445 0.318651 Vertex 4292 0.511887 0.187026 0.459599 Vertex 4293 0.515482 0.184171 0.458301 Vertex 4294 0.455722 0.668716 0.480547 Vertex 4295 0.522323 0.392246 0.48676 Vertex 4296 0.526451 0.397126 0.50133 Vertex 4297 0.39938 0.516634 0.528219 Vertex 4298 0.466904 0.221721 0.723027 Vertex 4299 0.463197 0.228443 0.729257 Vertex 4300 0.461088 0.230439 0.725123 Vertex 4301 0.47227 0.210337 0.706431 Vertex 4302 0.523027 0.315074 0.526388 Vertex 4303 0.371312 0.350402 0.435008 Vertex 4304 0.456658 0.633127 0.497219 Vertex 4305 0.443255 0.247852 0.64422 Vertex 4306 0.393203 0.347642 0.622969 Vertex 4307 0.391195 0.35411 0.621856 Vertex 4308 0.546967 0.5584 0.448298 Vertex 4309 0.373835 0.384298 0.567598 Vertex 4310 0.554856 0.539282 0.532347 Vertex 4311 0.562828 0.528645 0.51542 Vertex 4312 0.357436 0.308606 0.19819 Vertex 4313 0.514019 0.586077 0.558566 Vertex 4314 0.379071 0.343283 0.417044 Vertex 4315 0.429562 0.414616 0.389652 Vertex 4316 0.509512 0.425081 0.427818 Vertex 4317 0.518011 0.43175 0.421409 Vertex 4318 0.46906 0.291442 0.631225 Vertex 4319 0.367137 0.390754 0.287616 Vertex 4320 0.395957 0.2559 0.697571 Vertex 4321 0.399789 0.258974 0.703168 Vertex 4322 0.427755 0.138916 0.642858 Vertex 4323 0.507137 0.0798908 0.69808 Vertex 4324 0.530999 0.137749 0.787122 Vertex 4325 0.5242 0.0651434 0.656764 Vertex 4326 0.470991 0.773103 0.388728 Vertex 4327 0.311233 0.943089 0.254088 Vertex 4328 0.552487 0.0560639 0.742021 Vertex 4329 0.402809 0.196111 0.475187 Vertex 4330 0.538166 0.398672 0.430903 Vertex 4331 0.512473 0.162352 0.741363 Vertex 4332 0.51489 0.157182 0.737804 Vertex 4333 0.500118 0.452118 0.389871 Vertex 4334 0.625093 0.458621 0.208525 Vertex 4335 0.623541 0.465533 0.213263 Vertex 4336 0.615924 0.493174 0.252921 Vertex 4337 0.624139 0.534627 0.273201 Vertex 4338 0.623997 0.527585 0.283003 Vertex 4339 0.49952 0.334518 0.609045 Vertex 4340 0.4049 0.3587 0.323004 Vertex 4341 0.394198 0.355774 0.323004 Vertex 4342 0.402608 0.358925 0.314695 Vertex 4343 0.448194 0.172486 0.57178 Vertex 4344 0.426061 0.246815 0.448523 Vertex 4345 0.440868 0.248432 0.447114 Vertex 4346 0.625928 0.491078 0.185131 Vertex 4347 0.358259 0.176768 0.452397 Vertex 4348 0.500669 0.753351 0.489863 Vertex 4349 0.461461 0.127479 0.80961 Vertex 4350 0.503743 0.379933 0.449725 Vertex 4351 0.551403 0.0040511 0.731271 Vertex 4352 0.552066 0.0060115 0.726776 Vertex 4353 0.539486 0.06724 0.716772 Vertex 4354 0.541174 0.0616905 0.717424 Vertex 4355 0.451493 0.383332 0.634915 Vertex 4356 0.593294 0.516675 0.224576 Vertex 4357 0.594946 0.514768 0.236741 Vertex 4358 0.490618 0.197023 0.742068 Vertex 4359 0.437439 0.462465 0.41204 Vertex 4360 0.416893 0.153812 0.696061 Vertex 4361 0.328628 0.237404 0.221555 Vertex 4362 0.495416 0.381413 0.611065 Vertex 4363 0.533114 0.449003 0.577927 Vertex 4364 0.440098 0.478178 0.600487 Vertex 4365 0.355049 0.27557 0.545874 Vertex 4366 0.35419 0.295766 0.542936 Vertex 4367 0.514771 0.0509764 0.77267 Vertex 4368 0.478068 0.524428 0.403772 Vertex 4369 0.622729 0.513915 0.204036 Vertex 4370 0.361487 0.241674 0.491237 Vertex 4371 0.448751 0.186576 0.588345 Vertex 4372 0.475196 0.524452 0.407917 Vertex 4373 0.518716 0.301582 0.522029 Vertex 4374 0.49204 0.211658 0.517866 Vertex 4375 0.48209 0.189199 0.791741 Vertex 4376 0.353467 0.285579 0.532939 Vertex 4377 0.358123 0.285372 0.507531 Vertex 4378 0.583717 0.480002 0.303228 Vertex 4379 0.368872 0.216906 0.235236 Vertex 4380 0.494154 0.210663 0.49748 Vertex 4381 0.392148 0.200991 0.702327 Vertex 4382 0.409827 0.233702 0.762371 Vertex 4383 0.414874 0.2386 0.764361 Vertex 4384 0.412795 0.241212 0.195637 Vertex 4385 0.612075 0.543031 0.277453 Vertex 4386 0.413784 0.51398 0.572005 Vertex 4387 0.458222 0.603194 0.524156 Vertex 4388 0.451476 0.136334 0.642017 Vertex 4389 0.486307 0.566799 0.39532 Vertex 4390 0.431048 0.399792 0.641199 Vertex 4391 0.502748 0.284134 0.586225 Vertex 4392 0.412362 0.867196 0.342099 Vertex 4393 0.536738 0.0244784 0.730537 Vertex 4394 0.500409 0.632718 0.407657 Vertex 4395 0.459371 0.466812 0.400721 Vertex 4396 0.449965 0.461837 0.403961 Vertex 4397 0.681376 0.457946 0.191207 Vertex 4398 0.533066 0.161167 0.436015 Vertex 4399 0.526451 0.162097 0.439633 Vertex 4400 0.680546 0.474648 0.200364 Vertex 4401 0.486946 0.386602 0.417915 Vertex 4402 0.487041 0.384156 0.421711 Vertex 4403 0.553109 0.526602 0.446604 Vertex 4404 0.486508 0.0584863 0.69371 Vertex 4405 0.397727 0.335383 0.25455 Vertex 4406 0.574643 0.407296 0.412164 Vertex 4407 0.366793 0.322637 0.252157 Vertex 4408 0.454567 0.0960182 0.663344 Vertex 4409 0.45786 0.100265 0.662373 Vertex 4410 0.494468 0.517345 0.388497 Vertex 4411 0.384005 0.209372 0.6076 Vertex 4412 0.468847 0.50143 0.409629 Vertex 4413 0.605038 0.48198 0.200346 Vertex 4414 0.509956 0.440474 0.407781 Vertex 4415 0.310824 0.956042 0.259069 Vertex 4416 0.498324 0.0893078 0.719846 Vertex 4417 0.419268 0.16295 0.590389 Vertex 4418 0.474177 0.179516 0.489632 Vertex 4419 0.453649 0.193529 0.47331 Vertex 4420 0.41238 0.82049 0.399566 Vertex 4421 0.410911 0.825542 0.406111 Vertex 4422 0.471986 0.548367 0.422351 Vertex 4423 0.460235 0.0928377 0.751977 Vertex 4424 0.332472 0.91411 0.281877 Vertex 4425 0.52558 0.126052 0.734037 Vertex 4426 0.500669 0.70758 0.522166 Vertex 4427 0.501564 0.695486 0.52627 Vertex 4428 0.549407 0.508176 0.418797 Vertex 4429 0.469611 0.0646044 0.698655 Vertex 4430 0.480153 0.744325 0.395581 Vertex 4431 0.375304 0.382509 0.515052 Vertex 4432 0.490494 0.2576 0.596643 Vertex 4433 0.483375 0.256374 0.602891 Vertex 4434 0.379894 0.280367 0.194933 Vertex 4435 0.393854 0.292023 0.621447 Vertex 4436 0.386551 0.285348 0.613256 Vertex 4437 0.544681 0.0342448 0.722796 Vertex 4438 0.540914 0.0285887 0.7277 Vertex 4439 0.346858 0.935366 0.315038 Vertex 4440 0.329338 0.94181 0.291466 Vertex 4441 0.458233 0.502609 0.601624 Vertex 4442 0.429242 0.306208 0.426224 Vertex 4443 0.42339 0.306225 0.428031 Vertex 4444 0.552108 0.0338954 0.783444 Vertex 4445 0.508789 0.128391 0.792174 Vertex 4446 0.367794 0.404903 0.534923 Vertex 4447 0.362553 0.428238 0.449808 Vertex 4448 0.359064 0.429683 0.463324 Vertex 4449 0.3566 0.424412 0.465041 Vertex 4450 0.59423 0.514342 0.215407 Vertex 4451 0.392628 0.193256 0.576109 Vertex 4452 0.508446 0.379524 0.586118 Vertex 4453 0.3626 0.146479 0.474832 Vertex 4454 0.441218 0.265081 0.437785 Vertex 4455 0.480959 0.200642 0.571726 Vertex 4456 0.407666 0.173724 0.600777 Vertex 4457 0.512272 0.54819 0.401118 Vertex 4458 0.475883 0.781347 0.485877 Vertex 4459 0.600881 0.52829 0.266626 Vertex 4460 0.482161 0.0809509 0.727208 Vertex 4461 0.426891 0.233229 0.201406 Vertex 4462 0.419831 0.216118 0.470875 Vertex 4463 0.42891 0.215141 0.471248 Vertex 4464 0.462616 0.651653 0.436109 Vertex 4465 0.40814 0.524878 0.520099 Vertex 4466 0.398675 0.509977 0.497255 Vertex 4467 0.653018 0.415806 0.209941 Vertex 4468 0.373291 0.261053 0.471485 Vertex 4469 0.402252 0.50011 0.4555 Vertex 4470 0.412546 0.418371 0.321849 Vertex 4471 0.480212 0.780625 0.406419 Vertex 4472 0.348445 0.156666 0.462009 Vertex 4473 0.499242 0.694053 0.533454 Vertex 4474 0.363903 0.364498 0.465095 Vertex 4475 0.344198 0.119833 0.457532 Vertex 4476 0.650199 0.48843 0.226779 Vertex 4477 0.375535 0.379216 0.514502 Vertex 4478 0.560133 0.504184 0.408285 Vertex 4479 0.397627 0.240993 0.463626 Vertex 4480 0.429562 0.149227 0.720853 Vertex 4481 0.444161 0.0885379 0.662035 Vertex 4482 0.449669 0.0911794 0.661822 Vertex 4483 0.510483 0.571105 0.570477 Vertex 4484 0.450184 0.237333 0.662912 Vertex 4485 0.588952 0.511588 0.302168 Vertex 4486 0.377543 0.881807 0.368449 Vertex 4487 0.334154 0.920915 0.304058 Vertex 4488 0.343375 0.94855 0.286106 Vertex 4489 0.42223 0.411501 0.37831 Vertex 4490 0.414459 0.822628 0.414296 Vertex 4491 0.498709 0.179871 0.73807 Vertex 4492 0.421335 0.827615 0.374733 Vertex 4493 0.563207 0.406839 0.474328 Vertex 4494 0.430835 0.81298 0.387259 Vertex 4495 0.372047 0.104618 0.474097 Vertex 4496 0.466306 0.221365 0.476146 Vertex 4497 0.366497 0.136985 0.46651 Vertex 4498 0.51409 0.119022 0.791759 Vertex 4499 0.505431 0.262007 0.540804 Vertex 4500 0.583024 0.492274 0.413289 Vertex 4501 0.420322 0.489514 0.429529 Vertex 4502 0.526362 0.0604408 0.667158 Vertex 4503 0.493023 0.0900067 0.728955 Vertex 4504 0.451286 0.496846 0.597591 Vertex 4505 0.403093 0.331758 0.630053 Vertex 4506 0.373071 0.361679 0.325089 Vertex 4507 0.504027 0.361863 0.44889 Vertex 4508 0.396555 0.492789 0.451556 Vertex 4509 0.424237 0.498428 0.439337 Vertex 4510 0.53582 0.0880226 0.749874 Vertex 4511 0.635907 0.509793 0.194488 Vertex 4512 0.336262 0.91488 0.308357 Vertex 4513 0.370815 0.368372 0.548972 Vertex 4514 0.490743 0.245086 0.476419 Vertex 4515 0.335433 0.948313 0.29348 Vertex 4516 0.581016 0.426426 0.443252 Vertex 4517 0.411664 0.269392 0.205262 Vertex 4518 0.402928 0.288842 0.205404 Vertex 4519 0.408667 0.280154 0.211652 Vertex 4520 0.560624 0.42918 0.354862 Vertex 4521 0.553251 0.406561 0.503314 Vertex 4522 0.354291 0.180564 0.493032 Vertex 4523 0.352668 0.179202 0.486801 Vertex 4524 0.426636 0.209153 0.473943 Vertex 4525 0.488072 0.623224 0.410363 Vertex 4526 0.487379 0.628839 0.411915 Vertex 4527 0.48408 0.623455 0.418312 Vertex 4528 0.444416 0.136292 0.747943 Vertex 4529 0.454431 0.525121 0.430968 Vertex 4530 0.668115 0.457372 0.190982 Vertex 4531 0.52972 0.0415356 0.657978 Vertex 4532 0.531029 0.0669142 0.796936 Vertex 4533 0.374967 0.382758 0.575908 Vertex 4534 0.443486 0.768477 0.426674 Vertex 4535 0.498738 0.0662687 0.729145 Vertex 4536 0.41071 0.88863 0.361809 Vertex 4537 0.409058 0.89001 0.360175 Vertex 4538 0.387754 0.860995 0.374828 Vertex 4539 0.384893 0.350663 0.300018 Vertex 4540 0.419552 0.170105 0.573841 Vertex 4541 0.660226 0.407183 0.22849 Vertex 4542 0.460798 0.219002 0.673282 Vertex 4543 0.341977 0.100644 0.465693 Vertex 4544 0.355582 0.419366 0.489822 Vertex 4545 0.415116 0.266851 0.225582 Vertex 4546 0.538711 0.410618 0.538512 Vertex 4547 0.391929 0.428439 0.315909 Vertex 4548 0.41607 0.843156 0.346452 Vertex 4549 0.455213 0.493192 0.412993 Vertex 4550 0.398414 0.171467 0.618598 Vertex 4551 0.404473 0.179107 0.586272 Vertex 4552 0.351507 0.202774 0.488626 Vertex 4553 0.395891 0.493867 0.566479 Vertex 4554 0.457031 0.239661 0.457147 Vertex 4555 0.465986 0.233797 0.465367 Vertex 4556 0.674262 0.451485 0.191906 Vertex 4557 0.676424 0.453344 0.19302 Vertex 4558 0.367978 0.169548 0.479593 Vertex 4559 0.346153 0.0945257 0.44568 Vertex 4560 0.34514 0.0957754 0.447848 Vertex 4561 0.510868 0.277009 0.496799 Vertex 4562 0.382714 0.863358 0.354223 Vertex 4563 0.410621 0.362331 0.339588 Vertex 4564 0.412712 0.370545 0.354098 Vertex 4565 0.450102 0.186333 0.475412 Vertex 4566 0.589551 0.482691 0.42353 Vertex 4567 0.586477 0.49039 0.427367 Vertex 4568 0.513741 0.284531 0.520004 Vertex 4569 0.506011 0.175423 0.766558 Vertex 4570 0.545871 0.0113123 0.764266 Vertex 4571 0.541091 0.00987308 0.758314 Vertex 4572 0.365141 0.227638 0.568818 Vertex 4573 0.547292 0.608097 0.487844 Vertex 4574 0.498259 0.184752 0.518221 Vertex 4575 0.472732 0.779523 0.392631 Vertex 4576 0.400144 0.184959 0.58003 Vertex 4577 0.30303 0.965364 0.237931 Vertex 4578 0.695045 0.458272 0.210373 Vertex 4579 0.374653 0.38017 0.520786 Vertex 4580 0.351359 0.297626 0.232216 Vertex 4581 0.593809 0.45277 0.311704 Vertex 4582 0.503281 0.164857 0.722257 Vertex 4583 0.505224 0.160747 0.708658 Vertex 4584 0.501196 0.167481 0.708196 Vertex 4585 0.486212 0.747564 0.506607 Vertex 4586 0.461864 0.369485 0.407402 Vertex 4587 0.454763 0.383244 0.404382 Vertex 4588 0.653071 0.504563 0.213506 Vertex 4589 0.375192 0.339671 0.270831 Vertex 4590 0.555258 0.0248041 0.777657 Vertex 4591 0.371407 0.274711 0.588345 Vertex 4592 0.464772 0.103202 0.770651 Vertex 4593 0.399214 0.327286 0.226838 Vertex 4594 0.46771 0.703328 0.490965 Vertex 4595 0.454982 0.495484 0.414338 Vertex 4596 0.462332 0.492434 0.40861 Vertex 4597 0.501836 0.502775 0.396273 Vertex 4598 0.392563 0.332818 0.260402 Vertex 4599 0.55023 0.455707 0.357527 Vertex 4600 0.407216 0.361265 0.438236 Vertex 4601 0.516039 0.436784 0.418851 Vertex 4602 0.51576 0.44478 0.413046 Vertex 4603 0.466584 0.176863 0.799956 Vertex 4604 0.461917 0.184414 0.801472 Vertex 4605 0.413363 0.252311 0.194571 Vertex 4606 0.357471 0.323555 0.529735 Vertex 4607 0.370708 0.314754 0.594694 Vertex 4608 0.468746 0.748725 0.482478 Vertex 4609 0.356814 0.307972 0.515923 Vertex 4610 0.391894 0.185652 0.685708 Vertex 4611 0.549573 0.440634 0.368597 Vertex 4612 0.443575 0.110191 0.663374 Vertex 4613 0.604559 0.47954 0.282896 Vertex 4614 0.416952 0.376735 0.42613 Vertex 4615 0.422543 0.388716 0.409102 Vertex 4616 0.513166 0.0829883 0.798807 Vertex 4617 0.523951 0.664298 0.433272 Vertex 4618 0.488782 0.681953 0.518926 Vertex 4619 0.629487 0.522687 0.273047 Vertex 4620 0.451132 0.160913 0.635952 Vertex 4621 0.513456 0.338557 0.457153 Vertex 4622 0.656038 0.444644 0.199469 Vertex 4623 0.392125 0.439805 0.596365 Vertex 4624 0.542619 0.459279 0.390724 Vertex 4625 0.542916 0.471497 0.394449 Vertex 4626 0.532059 0.460203 0.404772 Vertex 4627 0.536288 0.465616 0.400585 Vertex 4628 0.524472 0.412644 0.567509 Vertex 4629 0.632597 0.504315 0.188814 Vertex 4630 0.613804 0.497687 0.235811 Vertex 4631 0.378508 0.254663 0.234289 Vertex 4632 0.452358 0.237457 0.627773 Vertex 4633 0.486781 0.262854 0.456608 Vertex 4634 0.507735 0.633014 0.55326 Vertex 4635 0.605802 0.499203 0.215354 Vertex 4636 0.530644 0.0613943 0.791475 Vertex 4637 0.388541 0.305562 0.194417 Vertex 4638 0.393451 0.300338 0.197675 Vertex 4639 0.509453 0.0862813 0.725461 Vertex 4640 0.48912 0.301073 0.617396 Vertex 4641 0.390377 0.906493 0.348602 Vertex 4642 0.512313 0.150151 0.792121 Vertex 4643 0.460395 0.132632 0.648982 Vertex 4644 0.361771 0.276494 0.489194 Vertex 4645 0.492289 0.104428 0.807235 Vertex 4646 0.458595 0.15637 0.657244 Vertex 4647 0.484216 0.1711 0.506198 Vertex 4648 0.46306 0.830375 0.431691 Vertex 4649 0.438772 0.553917 0.496058 Vertex 4650 0.474527 0.78416 0.484545 Vertex 4651 0.525 0.332356 0.528272 Vertex 4652 0.38237 0.17877 0.544849 Vertex 4653 0.551225 0.0165657 0.722713 Vertex 4654 0.466205 0.216823 0.596619 Vertex 4655 0.378793 0.0721084 0.469584 Vertex 4656 0.496808 0.0556256 0.686057 Vertex 4657 0.582295 0.506909 0.455654 Vertex 4658 0.458684 0.18195 0.56976 Vertex 4659 0.418599 0.20782 0.774785 Vertex 4660 0.545119 0.133461 0.452941 Vertex 4661 0.540458 0.121249 0.443169 Vertex 4662 0.539202 0.124571 0.447528 Vertex 4663 0.346609 0.0867966 0.443631 Vertex 4664 0.530685 0.490669 0.412952 Vertex 4665 0.519817 0.488027 0.41121 Vertex 4666 0.523649 0.485581 0.41249 Vertex 4667 0.456545 0.791889 0.379163 Vertex 4668 0.492591 0.47768 0.390878 Vertex 4669 0.527138 0.0616371 0.783302 Vertex 4670 0.544574 0.121646 0.439171 Vertex 4671 0.365188 0.219316 0.232056 Vertex 4672 0.391088 0.263884 0.224031 Vertex 4673 0.414518 0.435641 0.383409 Vertex 4674 0.352561 0.30356 0.198759 Vertex 4675 0.35294 0.106792 0.465977 Vertex 4676 0.35021 0.0954496 0.458491 Vertex 4677 0.517614 0.707521 0.435037 Vertex 4678 0.558528 0.00554362 0.741689 Vertex 4679 0.402667 0.500974 0.570376 Vertex 4680 0.514842 0.423127 0.429926 Vertex 4681 0.407897 0.262581 0.714569 Vertex 4682 0.457298 0.672163 0.4494 Vertex 4683 0.425138 0.253496 0.220388 Vertex 4684 0.668748 0.481963 0.192723 Vertex 4685 0.512313 0.279591 0.534467 Vertex 4686 0.524917 0.56822 0.42138 Vertex 4687 0.392634 0.315216 0.203822 Vertex 4688 0.394837 0.306551 0.203064 Vertex 4689 0.602071 0.468607 0.198924 Vertex 4690 0.363791 0.374899 0.327156 Vertex 4691 0.587401 0.500459 0.295357 Vertex 4692 0.587146 0.497788 0.282327 Vertex 4693 0.418267 0.481145 0.419721 Vertex 4694 0.487325 0.101893 0.793311 Vertex 4695 0.409182 0.842066 0.356408 Vertex 4696 0.411966 0.840432 0.356195 Vertex 4697 0.490956 0.172652 0.48262 Vertex 4698 0.528008 0.0791327 0.710838 Vertex 4699 0.531082 0.0750994 0.710785 Vertex 4700 0.595971 0.526987 0.21976 Vertex 4701 0.568857 0.403002 0.395527 Vertex 4702 0.363583 0.252228 0.568653 Vertex 4703 0.639964 0.438117 0.208744 Vertex 4704 0.420802 0.399128 0.315417 Vertex 4705 0.632265 0.519038 0.231866 Vertex 4706 0.443255 0.237718 0.776834 Vertex 4707 0.490713 0.166735 0.686466 Vertex 4708 0.519983 0.386033 0.490959 Vertex 4709 0.514019 0.0252128 0.735364 Vertex 4710 0.566008 0.501981 0.396208 Vertex 4711 0.467822 0.12193 0.814094 Vertex 4712 0.499745 0.342105 0.445053 Vertex 4713 0.497678 0.351528 0.440966 Vertex 4714 0.488196 0.356633 0.429896 Vertex 4715 0.375174 0.350029 0.488868 Vertex 4716 0.546469 0.57162 0.515799 Vertex 4717 0.388589 0.243889 0.467014 Vertex 4718 0.446122 0.476004 0.610307 Vertex 4719 0.594413 0.492564 0.275635 Vertex 4720 0.361427 0.237623 0.227134 Vertex 4721 0.360278 0.226181 0.219133 Vertex 4722 0.359041 0.231227 0.220116 Vertex 4723 0.500711 0.0450182 0.737904 Vertex 4724 0.490222 0.219559 0.55448 Vertex 4725 0.448627 0.622786 0.479866 Vertex 4726 0.482765 0.456465 0.380567 Vertex 4727 0.486467 0.462459 0.384126 Vertex 4728 0.506995 0.0957754 0.723489 Vertex 4729 0.438458 0.154084 0.770657 Vertex 4730 0.444315 0.151934 0.776887 Vertex 4731 0.479283 0.234016 0.475459 Vertex 4732 0.466365 0.221259 0.714729 Vertex 4733 0.665177 0.408332 0.230504 Vertex 4734 0.440643 0.15011 0.600214 Vertex 4735 0.498786 0.617366 0.560681 Vertex 4736 0.660753 0.484918 0.219595 Vertex 4737 0.659249 0.494418 0.217095 Vertex 4738 0.55389 0.559928 0.504362 Vertex 4739 0.462296 0.089598 0.716796 Vertex 4740 0.48318 0.183069 0.471556 Vertex 4741 0.407026 0.86401 0.41397 Vertex 4742 0.429023 0.837968 0.441185 Vertex 4743 0.483014 0.20358 0.776929 Vertex 4744 0.483938 0.206926 0.764491 Vertex 4745 0.482972 0.208217 0.762389 Vertex 4746 0.527025 0.0549208 0.664996 Vertex 4747 0.524769 0.156992 0.778966 Vertex 4748 0.427139 0.854599 0.428783 Vertex 4749 0.428419 0.850411 0.435979 Vertex 4750 0.431303 0.140823 0.714782 Vertex 4751 0.518348 0.0500465 0.66014 Vertex 4752 0.52757 0.0494779 0.660922 Vertex 4753 0.587691 0.425697 0.207299 Vertex 4754 0.489268 0.551749 0.381952 Vertex 4755 0.602243 0.437738 0.197787 Vertex 4756 0.416106 0.872633 0.401023 Vertex 4757 0.439293 0.142168 0.745823 Vertex 4758 0.424539 0.226453 0.201015 Vertex 4759 0.583444 0.495691 0.472249 Vertex 4760 0.500805 0.167209 0.456969 Vertex 4761 0.553114 0.565964 0.480328 Vertex 4762 0.509997 0.327541 0.586142 Vertex 4763 0.418925 0.175832 0.491782 Vertex 4764 0.514155 0.470325 0.406152 Vertex 4765 0.623434 0.455038 0.205534 Vertex 4766 0.550734 0.453925 0.370895 Vertex 4767 0.381268 0.474512 0.453676 Vertex 4768 0.522293 0.397825 0.547053 Vertex 4769 0.620017 0.501715 0.351883 Vertex 4770 0.362251 0.420029 0.435878 Vertex 4771 0.348984 0.93305 0.274302 Vertex 4772 0.611068 0.523386 0.312059 Vertex 4773 0.507137 0.167712 0.450774 Vertex 4774 0.387991 0.196775 0.643124 Vertex 4775 0.411107 0.885693 0.38258 Vertex 4776 0.505668 0.691364 0.522118 Vertex 4777 0.510483 0.694012 0.513678 Vertex 4778 0.433802 0.516053 0.456785 Vertex 4779 0.440341 0.845051 0.428984 Vertex 4780 0.442817 0.843286 0.430726 Vertex 4781 0.350737 0.183597 0.464129 Vertex 4782 0.428241 0.537517 0.495294 Vertex 4783 0.550964 0.153036 0.440913 Vertex 4784 0.370169 0.25673 0.231647 Vertex 4785 0.646029 0.444591 0.216171 Vertex 4786 0.584753 0.508994 0.311769 Vertex 4787 0.528103 0.113851 0.733853 Vertex 4788 0.413831 0.16911 0.718839 Vertex 4789 0.383898 0.355531 0.325101 Vertex 4790 0.510542 0.103694 0.69875 Vertex 4791 0.415182 0.258838 0.200938 Vertex 4792 0.430811 0.18792 0.789029 Vertex 4793 0.381926 0.870134 0.323348 Vertex 4794 0.647563 0.429109 0.227649 Vertex 4795 0.517644 0.649296 0.530487 Vertex 4796 0.39678 0.346582 0.44237 Vertex 4797 0.392077 0.35071 0.440397 Vertex 4798 0.367451 0.288913 0.234212 Vertex 4799 0.515547 0.107692 0.702232 Vertex 4800 0.480716 0.0834503 0.719497 Vertex 4801 0.437232 0.167617 0.548983 Vertex 4802 0.423266 0.821005 0.434972 Vertex 4803 0.511833 0.732846 0.492908 Vertex 4804 0.436331 0.809444 0.381153 Vertex 4805 0.465957 0.715505 0.484817 Vertex 4806 0.330967 0.244286 0.211599 Vertex 4807 0.515808 0.68569 0.513767 Vertex 4808 0.448212 0.535308 0.5748 Vertex 4809 0.454597 0.530137 0.580018 Vertex 4810 0.523448 0.479078 0.410897 Vertex 4811 0.496275 0.0528775 0.748311 Vertex 4812 0.554826 0.00106016 0.756063 Vertex 4813 0.553251 0.00258228 0.758995 Vertex 4814 0.48697 0.207483 0.561391 Vertex 4815 0.451938 0.297211 0.635496 Vertex 4816 0.535601 0.063408 0.71005 Vertex 4817 0.445671 0.336093 0.640133 Vertex 4818 0.544722 0.0236966 0.727481 Vertex 4819 0.448929 0.240626 0.694 Vertex 4820 0.321301 0.965258 0.207583 Vertex 4821 0.492401 0.213684 0.536433 Vertex 4822 0.641783 0.436127 0.219026 Vertex 4823 0.639171 0.436482 0.215543 Vertex 4824 0.3695 0.203959 0.476437 Vertex 4825 0.363619 0.208513 0.478575 Vertex 4826 0.434792 0.395409 0.6456 Vertex 4827 0.421104 0.509763 0.454547 Vertex 4828 0.507344 0.713183 0.505517 Vertex 4829 0.459299 0.442796 0.620227 Vertex 4830 0.516542 0.161387 0.463407 Vertex 4831 0.442307 0.5704 0.517895 Vertex 4832 0.311784 0.99804 0.213666 Vertex 4833 0.60216 0.515639 0.360299 Vertex 4834 0.605885 0.502443 0.206079 Vertex 4835 0.49544 0.713598 0.408326 Vertex 4836 0.488877 0.710577 0.403541 Vertex 4837 0.393487 0.893084 0.378719 Vertex 4838 0.402175 0.882406 0.393336 Vertex 4839 0.403188 0.87884 0.399324 Vertex 4840 0.530194 0.0947211 0.772718 Vertex 4841 0.453732 0.135558 0.652138 Vertex 4842 0.44226 0.376255 0.417068 Vertex 4843 0.498833 0.0440942 0.721368 Vertex 4844 0.484974 0.169276 0.687574 Vertex 4845 0.393955 0.851169 0.378582 Vertex 4846 0.399362 0.843476 0.368662 Vertex 4847 0.42711 0.4598 0.404014 Vertex 4848 0.369393 0.362414 0.542409 Vertex 4849 0.479294 0.0687917 0.744917 Vertex 4850 0.438031 0.46593 0.605687 Vertex 4851 0.432796 0.152615 0.590389 Vertex 4852 0.430835 0.151271 0.59874 Vertex 4853 0.560642 0.467114 0.534461 Vertex 4854 0.610102 0.494098 0.187689 Vertex 4855 0.485152 0.551169 0.387064 Vertex 4856 0.479898 0.669693 0.421072 Vertex 4857 0.406428 0.832016 0.397837 Vertex 4858 0.358241 0.238286 0.512026 Vertex 4859 0.402264 0.466238 0.594161 Vertex 4860 0.478821 0.47941 0.388971 Vertex 4861 0.432168 0.788146 0.42061 Vertex 4862 0.423343 0.390617 0.407248 Vertex 4863 0.376963 0.302079 0.24261 Vertex 4864 0.38455 0.293166 0.236054 Vertex 4865 0.504661 0.309826 0.454079 Vertex 4866 0.635208 0.448043 0.196585 Vertex 4867 0.634314 0.450028 0.197136 Vertex 4868 0.376892 0.187636 0.47431 Vertex 4869 0.568904 0.483005 0.327115 Vertex 4870 0.526078 0.116978 0.743152 Vertex 4871 0.461769 0.393946 0.391281 Vertex 4872 0.505917 0.0387342 0.751935 Vertex 4873 0.37704 0.199742 0.566822 Vertex 4874 0.423088 0.863767 0.411264 Vertex 4875 0.528606 0.625889 0.436192 Vertex 4876 0.37223 0.0789668 0.477941 Vertex 4877 0.376098 0.0737431 0.475045 Vertex 4878 0.517276 0.564157 0.571105 Vertex 4879 0.54811 0.568125 0.51799 Vertex 4880 0.366556 0.19177 0.537505 Vertex 4881 0.501552 0.423097 0.402297 Vertex 4882 0.494439 0.424104 0.386537 Vertex 4883 0.405729 0.851039 0.411886 Vertex 4884 0.499058 0.167576 0.704317 Vertex 4885 0.496926 0.162518 0.701729 Vertex 4886 0.489949 0.448227 0.383451 Vertex 4887 0.486236 0.419615 0.378446 Vertex 4888 0.486988 0.427261 0.375899 Vertex 4889 0.482493 0.414148 0.378932 Vertex 4890 0.48697 0.710252 0.507756 Vertex 4891 0.49146 0.715179 0.519915 Vertex 4892 0.504217 0.60622 0.409315 Vertex 4893 0.545415 0.575055 0.511677 Vertex 4894 0.462936 0.591668 0.544091 Vertex 4895 0.456634 0.450987 0.62387 Vertex 4896 0.433394 0.258104 0.741689 Vertex 4897 0.380504 0.346493 0.425774 Vertex 4898 0.537502 0.657362 0.454635 Vertex 4899 0.568306 0.441594 0.499316 Vertex 4900 0.371763 0.394888 0.525701 Vertex 4901 0.482978 0.110327 0.801644 Vertex 4902 0.477216 0.074288 0.739687 Vertex 4903 0.509861 0.350485 0.451644 Vertex 4904 0.443604 0.155523 0.611219 Vertex 4905 0.441899 0.142511 0.61158 Vertex 4906 0.394962 0.442873 0.390913 Vertex 4907 0.508872 0.0553828 0.679548 Vertex 4908 0.35605 0.417713 0.504409 Vertex 4909 0.589865 0.422848 0.356953 Vertex 4910 0.454899 0.659856 0.482756 Vertex 4911 0.465287 0.347258 0.413941 Vertex 4912 0.369844 0.297418 0.238772 Vertex 4913 0.375032 0.879385 0.311947 Vertex 4914 0.536051 0.0799974 0.783082 Vertex 4915 0.479271 0.471136 0.385133 Vertex 4916 0.306738 0.959702 0.251204 Vertex 4917 0.459406 0.630165 0.443074 Vertex 4918 0.445926 0.169465 0.563316 Vertex 4919 0.505852 0.382687 0.590312 Vertex 4920 0.33702 0.911213 0.302494 Vertex 4921 0.377567 0.392477 0.25513 Vertex 4922 0.383057 0.213873 0.646322 Vertex 4923 0.468462 0.504966 0.607582 Vertex 4924 0.468397 0.492641 0.609537 Vertex 4925 0.520457 0.381538 0.44067 Vertex 4926 0.453318 0.137968 0.791303 Vertex 4927 0.474124 0.555001 0.420473 Vertex 4928 0.501741 0.168121 0.785925 Vertex 4929 0.687103 0.466356 0.19588 Vertex 4930 0.417616 0.839277 0.348478 Vertex 4931 0.407683 0.334885 0.222597 Vertex 4932 0.492845 0.533756 0.382675 Vertex 4933 0.495321 0.540532 0.380051 Vertex 4934 0.496192 0.536072 0.38088 Vertex 4935 0.450795 0.581848 0.455684 Vertex 4936 0.456658 0.694148 0.459912 Vertex 4937 0.378224 0.283388 0.600724 Vertex 4938 0.363198 0.224303 0.222621 Vertex 4939 0.455237 0.130689 0.641501 Vertex 4940 0.503252 0.253845 0.552987 Vertex 4941 0.452897 0.129777 0.774826 Vertex 4942 0.366006 0.215182 0.48506 Vertex 4943 0.458583 0.159634 0.540692 Vertex 4944 0.46171 0.412063 0.381153 Vertex 4945 0.360302 0.22409 0.497178 Vertex 4946 0.504081 0.259833 0.555167 Vertex 4947 0.367966 0.361679 0.287764 Vertex 4948 0.41299 0.243795 0.221128 Vertex 4949 0.423408 0.383155 0.32314 Vertex 4950 0.55466 0.46933 0.546816 Vertex 4951 0.473638 0.394201 0.623875 Vertex 4952 0.508718 0.416724 0.595802 Vertex 4953 0.448668 0.433414 0.395391 Vertex 4954 0.359834 0.333333 0.533045 Vertex 4955 0.443196 0.19418 0.799056 Vertex 4956 0.481735 0.288203 0.439746 Vertex 4957 0.514339 0.107283 0.713462 Vertex 4958 0.671224 0.486529 0.205807 Vertex 4959 0.452879 0.548901 0.436577 Vertex 4960 0.488374 0.10418 0.806347 Vertex 4961 0.387878 0.863607 0.335815 Vertex 4962 0.410657 0.333144 0.21324 Vertex 4963 0.386125 0.886883 0.382391 Vertex 4964 0.402152 0.251168 0.201643 Vertex 4965 0.540458 0.470781 0.573823 Vertex 4966 0.652911 0.430252 0.231156 Vertex 4967 0.47458 0.810256 0.41397 Vertex 4968 0.490524 0.648164 0.403404 Vertex 4969 0.522506 0.462489 0.408214 Vertex 4970 0.485525 0.39959 0.397417 Vertex 4971 0.450066 0.135682 0.636876 Vertex 4972 0.606241 0.494276 0.202081 Vertex 4973 0.512526 0.326759 0.459764 Vertex 4974 0.51284 0.317994 0.466836 Vertex 4975 0.526018 0.646808 0.433503 Vertex 4976 0.488794 0.317224 0.623852 Vertex 4977 0.403502 0.341678 0.211303 Vertex 4978 0.61882 0.47492 0.341436 Vertex 4979 0.42201 0.235633 0.214898 Vertex 4980 0.521108 0.111962 0.791623 Vertex 4981 0.516216 0.112981 0.793589 Vertex 4982 0.43475 0.230427 0.783118 Vertex 4983 0.51136 0.130257 0.698003 Vertex 4984 0.625661 0.454321 0.190953 Vertex 4985 0.424362 0.302216 0.641608 Vertex 4986 0.414364 0.305633 0.639144 Vertex 4987 0.360752 0.228508 0.497219 Vertex 4988 0.416419 0.274154 0.645037 Vertex 4989 0.368108 0.222633 0.235621 Vertex 4990 0.398959 0.365268 0.376895 Vertex 4991 0.451256 0.798635 0.46458 Vertex 4992 0.444647 0.806359 0.458159 Vertex 4993 0.442716 0.508324 0.432425 Vertex 4994 0.446116 0.509752 0.428268 Vertex 4995 0.335326 0.257713 0.203899 Vertex 4996 0.485519 0.0708054 0.731336 Vertex 4997 0.413322 0.145721 0.658872 Vertex 4998 0.325666 0.260117 0.233033 Vertex 4999 0.323623 0.256445 0.229343 Vertex 5000 0.375121 0.343017 0.274859 Vertex 5001 0.38484 0.23667 0.671209 Vertex 5002 0.36921 0.359855 0.229669 Vertex 5003 0.36847 0.359707 0.235947 Vertex 5004 0.520593 0.143921 0.720788 Vertex 5005 0.360592 0.339671 0.553188 Vertex 5006 0.428484 0.448689 0.607363 Vertex 5007 0.422312 0.172705 0.766523 Vertex 5008 0.443954 0.125318 0.6526 Vertex 5009 0.417841 0.154641 0.621506 Vertex 5010 0.461396 0.180552 0.667751 Vertex 5011 0.407678 0.232085 0.749957 Vertex 5012 0.481136 0.188388 0.561362 Vertex 5013 0.406694 0.34429 0.222017 Vertex 5014 0.42217 0.422552 0.612385 Vertex 5015 0.420245 0.43409 0.60818 Vertex 5016 0.388382 0.335033 0.266928 Vertex 5017 0.398184 0.34522 0.264873 Vertex 5018 0.381227 0.429956 0.328435 Vertex 5019 0.651099 0.425466 0.199606 Vertex 5020 0.380504 0.354945 0.335465 Vertex 5021 0.479016 0.686525 0.507774 Vertex 5022 0.47763 0.679477 0.509959 Vertex 5023 0.53142 0.105648 0.723572 Vertex 5024 0.392125 0.318236 0.450093 Vertex 5025 0.494794 0.0791623 0.768643 Vertex 5026 0.548992 0.563079 0.532347 Vertex 5027 0.607437 0.52075 0.318556 Vertex 5028 0.454407 0.147611 0.654466 Vertex 5029 0.459838 0.152698 0.657036 Vertex 5030 0.454046 0.150465 0.657025 Vertex 5031 0.458245 0.150708 0.657036 Vertex 5032 0.414826 0.161629 0.627619 Vertex 5033 0.445689 0.110979 0.720107 Vertex 5034 0.511656 0.0732574 0.77681 Vertex 5035 0.481622 0.65539 0.418756 Vertex 5036 0.424912 0.824891 0.436968 Vertex 5037 0.396928 0.390842 0.61373 Vertex 5038 0.49814 0.294137 0.60073 Vertex 5039 0.494083 0.299278 0.609075 Vertex 5040 0.541334 0.157377 0.431312 Vertex 5041 0.645863 0.466724 0.219298 Vertex 5042 0.44621 0.421705 0.397665 Vertex 5043 0.553713 0.024123 0.726426 Vertex 5044 0.490316 0.337947 0.435227 Vertex 5045 0.573163 0.522035 0.486789 Vertex 5046 0.494889 0.684547 0.407035 Vertex 5047 0.435283 0.419135 0.636153 Vertex 5048 0.650489 0.424596 0.227104 Vertex 5049 0.597801 0.441487 0.394645 Vertex 5050 0.539344 0.00627803 0.74985 Vertex 5051 0.395773 0.249279 0.714729 Vertex 5052 0.399789 0.248 0.457105 Vertex 5053 0.495268 0.663243 0.536119 Vertex 5054 0.456664 0.127491 0.805452 Vertex 5055 0.453383 0.128089 0.804446 Vertex 5056 0.524295 0.6983 0.44536 Vertex 5057 0.506402 0.75694 0.481424 Vertex 5058 0.448266 0.617645 0.48124 Vertex 5059 0.507273 0.708445 0.507501 Vertex 5060 0.475095 0.0972146 0.772724 Vertex 5061 0.477411 0.074365 0.706319 Vertex 5062 0.528239 0.149743 0.789781 Vertex 5063 0.529708 0.14629 0.788691 Vertex 5064 0.512177 0.0436559 0.6646 Vertex 5065 0.478986 0.320819 0.428984 Vertex 5066 0.470564 0.312823 0.425478 Vertex 5067 0.373208 0.871443 0.337438 Vertex 5068 0.378562 0.869127 0.339884 Vertex 5069 0.380054 0.86735 0.34384 Vertex 5070 0.362038 0.384037 0.314724 Vertex 5071 0.698314 0.44635 0.214513 Vertex 5072 0.618222 0.54232 0.283482 Vertex 5073 0.433802 0.159023 0.770769 Vertex 5074 0.417385 0.2463 0.195092 Vertex 5075 0.422407 0.185652 0.774737 Vertex 5076 0.515115 0.576216 0.409374 Vertex 5077 0.458749 0.232725 0.720954 Vertex 5078 0.395465 0.304603 0.443554 Vertex 5079 0.518947 0.107911 0.709156 Vertex 5080 0.521221 0.10386 0.712579 Vertex 5081 0.518769 0.11426 0.708498 Vertex 5082 0.524105 0.100697 0.715381 Vertex 5083 0.467029 0.22791 0.604917 Vertex 5084 0.477985 0.116286 0.816771 Vertex 5085 0.411142 0.244079 0.74991 Vertex 5086 0.580773 0.466404 0.490918 Vertex 5087 0.584493 0.474802 0.47845 Vertex 5088 0.446222 0.406016 0.640749 Vertex 5089 0.524496 0.321583 0.506014 Vertex 5090 0.477287 0.756798 0.494175 Vertex 5091 0.357655 0.119359 0.457537 Vertex 5092 0.37884 0.224427 0.211765 Vertex 5093 0.514149 0.544719 0.402409 Vertex 5094 0.450907 0.176418 0.604935 Vertex 5095 0.45436 0.178918 0.615282 Vertex 5096 0.372989 0.469252 0.522628 Vertex 5097 0.371383 0.469454 0.507999 Vertex 5098 0.528073 0.400254 0.455316 Vertex 5099 0.421999 0.160557 0.71891 Vertex 5100 0.355209 0.155511 0.477118 Vertex 5101 0.503767 0.164218 0.466279 Vertex 5102 0.512639 0.157377 0.459954 Vertex 5103 0.45404 0.284258 0.633553 Vertex 5104 0.637743 0.482117 0.230883 Vertex 5105 0.429378 0.114153 0.702191 Vertex 5106 0.663803 0.405371 0.229823 Vertex 5107 0.355831 0.373649 0.405933 Vertex 5108 0.599139 0.487619 0.393146 Vertex 5109 0.435917 0.163809 0.507501 Vertex 5110 0.559819 0.526489 0.530297 Vertex 5111 0.556976 0.511404 0.540786 Vertex 5112 0.376619 0.359014 0.466652 Vertex 5113 0.554435 0.472498 0.37481 Vertex 5114 0.553902 0.470431 0.370676 Vertex 5115 0.415318 0.162992 0.59871 Vertex 5116 0.399546 0.352238 0.44237 Vertex 5117 0.44823 0.338504 0.416132 Vertex 5118 0.378668 0.209331 0.479327 Vertex 5119 0.345987 0.91488 0.322246 Vertex 5120 0.544574 0.608536 0.467108 Vertex 5121 0.547749 0.161535 0.430429 Vertex 5122 0.425333 0.137844 0.696102 Vertex 5123 0.530833 0.168174 0.441446 Vertex 5124 0.539244 0.16805 0.440723 Vertex 5125 0.378988 0.407568 0.291182 Vertex 5126 0.605192 0.474103 0.213287 Vertex 5127 0.396028 0.278318 0.193482 Vertex 5128 0.390253 0.294889 0.193618 Vertex 5129 0.364478 0.268415 0.197491 Vertex 5130 0.364928 0.267053 0.19838 Vertex 5131 0.365455 0.366352 0.347885 Vertex 5132 0.542282 0.590886 0.451929 Vertex 5133 0.61715 0.47989 0.304277 Vertex 5134 0.450966 0.488762 0.413017 Vertex 5135 0.45314 0.48522 0.409961 Vertex 5136 0.453187 0.453309 0.398903 Vertex 5137 0.44836 0.454458 0.402356 Vertex 5138 0.603629 0.529107 0.237777 Vertex 5139 0.527801 0.500056 0.590531 Vertex 5140 0.439601 0.198232 0.798025 Vertex 5141 0.479739 0.137678 0.799512 Vertex 5142 0.511466 0.296429 0.480642 Vertex 5143 0.382394 0.22621 0.62978 Vertex 5144 0.46264 0.0815491 0.742743 Vertex 5145 0.51351 0.0545655 0.632742 Vertex 5146 0.421466 0.541124 0.515923 Vertex 5147 0.430557 0.185012 0.785102 Vertex 5148 0.545551 0.616993 0.468311 Vertex 5149 0.330872 0.264577 0.204308 Vertex 5150 0.365396 0.403138 0.527946 Vertex 5151 0.462302 0.233797 0.764485 Vertex 5152 0.444327 0.794608 0.393662 Vertex 5153 0.408128 0.233868 0.754121 Vertex 5154 0.522565 0.307167 0.491196 Vertex 5155 0.454881 0.798594 0.376107 Vertex 5156 0.367504 0.218623 0.571182 Vertex 5157 0.365372 0.201199 0.554018 Vertex 5158 0.443989 0.288925 0.636064 Vertex 5159 0.389359 0.20079 0.588428 Vertex 5160 0.373699 0.312083 0.196644 Vertex 5161 0.370602 0.315163 0.200506 Vertex 5162 0.557302 0.415872 0.375124 Vertex 5163 0.466306 0.111772 0.783082 Vertex 5164 0.392391 0.378351 0.232305 Vertex 5165 0.477565 0.582908 0.560604 Vertex 5166 0.460875 0.579455 0.551133 Vertex 5167 0.503376 0.0881884 0.712591 Vertex 5168 0.344501 0.285431 0.231546 Vertex 5169 0.334639 0.913606 0.302512 Vertex 5170 0.479099 0.167428 0.524096 Vertex 5171 0.369974 0.354892 0.364611 Vertex 5172 0.603777 0.519121 0.323058 Vertex 5173 0.419102 0.285224 0.640868 Vertex 5174 0.508529 0.0328589 0.733297 Vertex 5175 0.572102 0.499523 0.505517 Vertex 5176 0.505295 0.2653 0.555155 Vertex 5177 0.454425 0.745823 0.428321 Vertex 5178 0.45452 0.804019 0.374271 Vertex 5179 0.438167 0.0922928 0.671298 Vertex 5180 0.440827 0.0900659 0.665275 Vertex 5181 0.422478 0.838424 0.432645 Vertex 5182 0.382607 0.253496 0.203574 Vertex 5183 0.383957 0.25012 0.210758 Vertex 5184 0.388382 0.196603 0.619771 Vertex 5185 0.524709 0.459729 0.592669 Vertex 5186 0.388109 0.33543 0.621483 Vertex 5187 0.390697 0.330117 0.623218 Vertex 5188 0.52847 0.0167789 0.729133 Vertex 5189 0.525396 0.0204036 0.724211 Vertex 5190 0.370649 0.300972 0.590217 Vertex 5191 0.40339 0.387573 0.265353 Vertex 5192 0.390401 0.856417 0.366785 Vertex 5193 0.34029 0.908353 0.276109 Vertex 5194 0.342807 0.914204 0.272656 Vertex 5195 0.350796 0.900511 0.284039 Vertex 5196 0.426067 0.323839 0.647075 Vertex 5197 0.36427 0.445846 0.467245 Vertex 5198 0.429218 0.184088 0.486014 Vertex 5199 0.488184 0.776887 0.415167 Vertex 5200 0.59019 0.508419 0.287237 Vertex 5201 0.351483 0.307588 0.209585 Vertex 5202 0.475646 0.205552 0.485184 Vertex 5203 0.471275 0.201607 0.484 Vertex 5204 0.629446 0.515497 0.206683 Vertex 5205 0.43138 0.471408 0.599012 Vertex 5206 0.483713 0.214702 0.495105 Vertex 5207 0.484382 0.515609 0.394426 Vertex 5208 0.480852 0.519329 0.401361 Vertex 5209 0.48206 0.514336 0.401527 Vertex 5210 0.517383 0.104535 0.713065 Vertex 5211 0.4153 0.360891 0.632031 Vertex 5212 0.546878 0.546786 0.442245 Vertex 5213 0.551699 0.466463 0.35883 Vertex 5214 0.551912 0.468092 0.362343 Vertex 5215 0.419102 0.16109 0.714705 Vertex 5216 0.490956 0.623224 0.404121 Vertex 5217 0.487089 0.618515 0.412353 Vertex 5218 0.488931 0.621672 0.409588 Vertex 5219 0.49127 0.545418 0.381017 Vertex 5220 0.612353 0.455488 0.349952 Vertex 5221 0.35599 0.233365 0.517528 Vertex 5222 0.516838 0.372435 0.474423 Vertex 5223 0.362648 0.347915 0.254562 Vertex 5224 0.336126 0.244339 0.219162 Vertex 5225 0.415644 0.155784 0.696073 Vertex 5226 0.409366 0.161049 0.696073 Vertex 5227 0.441762 0.815687 0.36589 Vertex 5228 0.500888 0.0543227 0.635596 Vertex 5229 0.540274 0.0557619 0.801532 Vertex 5230 0.496926 0.491409 0.39391 Vertex 5231 0.589728 0.482881 0.415019 Vertex 5232 0.555264 0.526051 0.452527 Vertex 5233 0.392332 0.39362 0.255231 Vertex 5234 0.390401 0.392163 0.251127 Vertex 5235 0.536004 0.125578 0.791392 Vertex 5236 0.495712 0.632825 0.403227 Vertex 5237 0.49188 0.63122 0.403659 Vertex 5238 0.489831 0.634116 0.403647 Vertex 5239 0.349304 0.262866 0.210403 Vertex 5240 0.417746 0.270778 0.649384 Vertex 5241 0.461094 0.470147 0.619866 Vertex 5242 0.618394 0.48198 0.276843 Vertex 5243 0.609143 0.475844 0.287646 Vertex 5244 0.492099 0.219506 0.533188 Vertex 5245 0.496002 0.179368 0.505416 Vertex 5246 0.4136 0.282926 0.435227 Vertex 5247 0.322178 0.949018 0.279254 Vertex 5248 0.371076 0.356627 0.450105 Vertex 5249 0.548672 0.445574 0.542682 Vertex 5250 0.543946 0.425052 0.546816 Vertex 5251 0.406398 0.86841 0.411655 Vertex 5252 0.400387 0.879136 0.398885 Vertex 5253 0.490411 0.0752948 0.727481 Vertex 5254 0.440193 0.323673 0.419407 Vertex 5255 0.516767 0.342052 0.467796 Vertex 5256 0.449586 0.629022 0.464005 Vertex 5257 0.375204 0.426011 0.401835 Vertex 5258 0.378449 0.425514 0.395403 Vertex 5259 0.515914 0.583554 0.416665 Vertex 5260 0.49339 0.158301 0.669895 Vertex 5261 0.499935 0.15871 0.683718 Vertex 5262 0.372023 0.286094 0.590442 Vertex 5263 0.360509 0.28456 0.565656 Vertex 5264 0.438564 0.252365 0.687799 Vertex 5265 0.358673 0.37462 0.376255 Vertex 5266 0.367694 0.228834 0.232743 Vertex 5267 0.575407 0.410642 0.434931 Vertex 5268 0.407352 0.830079 0.391393 Vertex 5269 0.421987 0.167712 0.534568 Vertex 5270 0.538616 0.549197 0.563541 Vertex 5271 0.431143 0.163371 0.772718 Vertex 5272 0.414264 0.153977 0.63668 Vertex 5273 0.564267 0.44542 0.511748 Vertex 5274 0.460573 0.822966 0.396848 Vertex 5275 0.537556 0.0525222 0.797155 Vertex 5276 0.566973 0.498724 0.360299 Vertex 5277 0.366142 0.316134 0.493139 Vertex 5278 0.362026 0.318965 0.505487 Vertex 5279 0.499076 0.171846 0.785155 Vertex 5280 0.491187 0.167629 0.791795 Vertex 5281 0.396827 0.407669 0.605024 Vertex 5282 0.485827 0.205919 0.480192 Vertex 5283 0.482576 0.0859023 0.721641 Vertex 5284 0.38991 0.193079 0.652867 Vertex 5285 0.574987 0.520774 0.453587 Vertex 5286 0.567015 0.524428 0.449459 Vertex 5287 0.3669 0.403327 0.300172 Vertex 5288 0.443391 0.463484 0.409019 Vertex 5289 0.478892 0.554675 0.402996 Vertex 5290 0.370448 0.279935 0.586231 Vertex 5291 0.452998 0.430666 0.625563 Vertex 5292 0.625898 0.46532 0.186084 Vertex 5293 0.494373 0.387703 0.436032 Vertex 5294 0.374232 0.340843 0.413195 Vertex 5295 0.433394 0.140959 0.627548 Vertex 5296 0.420192 0.149701 0.698169 Vertex 5297 0.379172 0.22987 0.232488 Vertex 5298 0.378722 0.230984 0.233987 Vertex 5299 0.35849 0.336526 0.233608 Vertex 5300 0.532273 0.39699 0.430139 Vertex 5301 0.441342 0.130701 0.635235 Vertex 5302 0.48896 0.0826389 0.768448 Vertex 5303 0.50963 0.087454 0.805393 Vertex 5304 0.508203 0.316116 0.586142 Vertex 5305 0.513782 0.319747 0.575701 Vertex 5306 0.372313 0.324562 0.478504 Vertex 5307 0.375399 0.242598 0.202839 Vertex 5308 0.438623 0.304881 0.640139 Vertex 5309 0.559156 0.490995 0.38553 Vertex 5310 0.471044 0.18304 0.799168 Vertex 5311 0.483008 0.0755376 0.754316 Vertex 5312 0.55572 0.43685 0.353772 Vertex 5313 0.453193 0.177698 0.801253 Vertex 5314 0.49342 0.727978 0.407076 Vertex 5315 0.553713 0.506275 0.409724 Vertex 5316 0.512254 0.173534 0.758225 Vertex 5317 0.527274 0.49395 0.414634 Vertex 5318 0.531876 0.500737 0.416896 Vertex 5319 0.531834 0.507661 0.419153 Vertex 5320 0.306051 0.993331 0.208507 Vertex 5321 0.376465 0.917077 0.312112 Vertex 5322 0.315598 0.938623 0.267201 Vertex 5323 0.360835 0.307327 0.495111 Vertex 5324 0.382897 0.347335 0.452243 Vertex 5325 0.430663 0.130257 0.715404 Vertex 5326 0.363483 0.353926 0.380786 Vertex 5327 0.450001 0.368472 0.636953 Vertex 5328 0.477014 0.167007 0.532364 Vertex 5329 0.376453 0.399566 0.546881 Vertex 5330 0.536922 0.132229 0.454393 Vertex 5331 0.535595 0.129126 0.452012 Vertex 5332 0.522577 0.0757805 0.662965 Vertex 5333 0.564865 0.428884 0.351054 Vertex 5334 0.413529 0.851258 0.341542 Vertex 5335 0.398959 0.254147 0.205072 Vertex 5336 0.421809 0.808141 0.412448 Vertex 5337 0.383519 0.455115 0.424566 Vertex 5338 0.388245 0.452882 0.413603 Vertex 5339 0.402928 0.460221 0.403772 Vertex 5340 0.499633 0.622187 0.408231 Vertex 5341 0.591707 0.436376 0.42013 Vertex 5342 0.357021 0.433136 0.479037 Vertex 5343 0.403905 0.319883 0.203822 Vertex 5344 0.524893 0.344758 0.521893 Vertex 5345 0.525367 0.336342 0.514454 Vertex 5346 0.498205 0.416245 0.604828 Vertex 5347 0.496411 0.0984465 0.812388 Vertex 5348 0.493556 0.100644 0.809243 Vertex 5349 0.492058 0.441706 0.608696 Vertex 5350 0.594354 0.467606 0.411945 Vertex 5351 0.386391 0.257381 0.613209 Vertex 5352 0.40426 0.383557 0.268776 Vertex 5353 0.481107 0.242882 0.59855 Vertex 5354 0.457268 0.205984 0.594535 Vertex 5355 0.456628 0.200316 0.594558 Vertex 5356 0.523466 0.716263 0.453575 Vertex 5357 0.398906 0.436589 0.383463 Vertex 5358 0.601141 0.451609 0.211711 Vertex 5359 0.520279 0.0868262 0.675622 Vertex 5360 0.534861 0.402587 0.46192 Vertex 5361 0.535352 0.403997 0.455589 Vertex 5362 0.486644 0.13477 0.646382 Vertex 5363 0.428223 0.810007 0.436998 Vertex 5364 0.457114 0.123902 0.638996 Vertex 5365 0.508925 0.365641 0.588257 Vertex 5366 0.427495 0.166989 0.530303 Vertex 5367 0.40776 0.232139 0.756188 Vertex 5368 0.301206 0.971702 0.226506 Vertex 5369 0.534997 0.157347 0.455316 Vertex 5370 0.537461 0.155973 0.451739 Vertex 5371 0.448058 0.756306 0.436998 Vertex 5372 0.56987 0.526377 0.497178 Vertex 5373 0.54917 0.0666477 0.747902 Vertex 5374 0.400221 0.501827 0.464177 Vertex 5375 0.610013 0.455547 0.341909 Vertex 5376 0.446299 0.191634 0.800507 Vertex 5377 0.414489 0.265815 0.664949 Vertex 5378 0.417148 0.265614 0.669142 Vertex 5379 0.52356 0.316673 0.511694 Vertex 5380 0.458838 0.0864709 0.726645 Vertex 5381 0.459773 0.435014 0.620612 Vertex 5382 0.577895 0.507839 0.376841 Vertex 5383 0.582668 0.509533 0.374774 Vertex 5384 0.471802 0.0563067 0.654727 Vertex 5385 0.472993 0.0525518 0.664819 Vertex 5386 0.393872 0.272223 0.44802 Vertex 5387 0.524224 0.112424 0.716423 Vertex 5388 0.375008 0.872692 0.351717 Vertex 5389 0.369524 0.879575 0.34795 Vertex 5390 0.369619 0.87759 0.343787 Vertex 5391 0.502914 0.188252 0.457567 Vertex 5392 0.507658 0.186185 0.456827 Vertex 5393 0.404029 0.259993 0.447102 Vertex 5394 0.373208 0.35966 0.507501 Vertex 5395 0.509861 0.131276 0.702558 Vertex 5396 0.612898 0.448115 0.202958 Vertex 5397 0.616576 0.449595 0.201726 Vertex 5398 0.480728 0.204136 0.727107 Vertex 5399 0.363619 0.888269 0.345818 Vertex 5400 0.466265 0.791688 0.387312 Vertex 5401 0.521558 0.150726 0.747985 Vertex 5402 0.526308 0.142902 0.760334 Vertex 5403 0.529199 0.0298088 0.656 Vertex 5404 0.666622 0.454422 0.201211 Vertex 5405 0.437895 0.779245 0.42658 Vertex 5406 0.583539 0.424519 0.2005 Vertex 5407 0.518538 0.395521 0.557257 Vertex 5408 0.422117 0.376178 0.427735 Vertex 5409 0.529205 0.696517 0.459859 Vertex 5410 0.371129 0.160149 0.46391 Vertex 5411 0.606158 0.504516 0.244162 Vertex 5412 0.325915 0.922028 0.271513 Vertex 5413 0.418913 0.374342 0.347868 Vertex 5414 0.36719 0.21087 0.479647 Vertex 5415 0.538118 0.433136 0.397523 Vertex 5416 0.392788 0.268196 0.196011 Vertex 5417 0.521037 0.336235 0.555155 Vertex 5418 0.51842 0.339748 0.567598 Vertex 5419 0.521055 0.729891 0.466007 Vertex 5420 0.517265 0.727712 0.443282 Vertex 5421 0.521399 0.721664 0.450176 Vertex 5422 0.6876 0.450318 0.210266 Vertex 5423 0.498786 0.206215 0.489632 Vertex 5424 0.490844 0.643201 0.535882 Vertex 5425 0.399735 0.846023 0.3958 Vertex 5426 0.49663 0.246827 0.486837 Vertex 5427 0.509749 0.10505 0.712117 Vertex 5428 0.365561 0.117997 0.474595 Vertex 5429 0.382453 0.238547 0.616656 Vertex 5430 0.416579 0.375189 0.301736 Vertex 5431 0.41514 0.229284 0.77055 Vertex 5432 0.464186 0.355993 0.411358 Vertex 5433 0.42002 0.148754 0.634951 Vertex 5434 0.328859 0.964275 0.254716 Vertex 5435 0.359651 0.217125 0.550973 Vertex 5436 0.513782 0.316389 0.472794 Vertex 5437 0.422064 0.263529 0.723027 Vertex 5438 0.40917 0.263695 0.69901 Vertex 5439 0.43905 0.212665 0.795627 Vertex 5440 0.394186 0.262931 0.62978 Vertex 5441 0.362517 0.351913 0.242012 Vertex 5442 0.523489 0.517433 0.413645 Vertex 5443 0.39107 0.0761121 0.46821 Vertex 5444 0.342807 0.904604 0.314683 Vertex 5445 0.416206 0.174908 0.55519 Vertex 5446 0.597303 0.463602 0.190082 Vertex 5447 0.487859 0.253751 0.464947 Vertex 5448 0.491827 0.751835 0.497794 Vertex 5449 0.488344 0.216254 0.49918 Vertex 5450 0.619099 0.477746 0.22178 Vertex 5451 0.472785 0.194192 0.693313 Vertex 5452 0.49002 0.583311 0.397991 Vertex 5453 0.369103 0.910905 0.350586 Vertex 5454 0.365224 0.434486 0.544826 Vertex 5455 0.328053 0.273734 0.213014 Vertex 5456 0.490565 0.0574202 0.690304 Vertex 5457 0.358057 0.262635 0.20907 Vertex 5458 0.504614 0.386537 0.590312 Vertex 5459 0.545048 0.0542634 0.793074 Vertex 5460 0.509358 0.0881055 0.691767 Vertex 5461 0.479668 0.382414 0.408178 Vertex 5462 0.480301 0.372014 0.418768 Vertex 5463 0.518052 0.685353 0.430157 Vertex 5464 0.594135 0.529148 0.285614 Vertex 5465 0.385331 0.204202 0.617183 Vertex 5466 0.552078 0.458781 0.370569 Vertex 5467 0.37428 0.374756 0.507637 Vertex 5468 0.518212 0.600321 0.425312 Vertex 5469 0.347568 0.941946 0.275866 Vertex 5470 0.551101 0.580646 0.476573 Vertex 5471 0.641415 0.478267 0.189732 Vertex 5472 0.476363 0.109498 0.652026 Vertex 5473 0.585488 0.428724 0.339161 Vertex 5474 0.586252 0.425141 0.345978 Vertex 5475 0.452796 0.149802 0.789183 Vertex 5476 0.389412 0.244286 0.700284 Vertex 5477 0.521517 0.494205 0.411696 Vertex 5478 0.518188 0.506352 0.408871 Vertex 5479 0.525136 0.125685 0.796485 Vertex 5480 0.428508 0.835314 0.352659 Vertex 5481 0.413677 0.175927 0.571756 Vertex 5482 0.470268 0.430951 0.371967 Vertex 5483 0.569911 0.501306 0.381437 Vertex 5484 0.388784 0.350065 0.412353 Vertex 5485 0.42236 0.399543 0.338486 Vertex 5486 0.672278 0.453463 0.208798 Vertex 5487 0.548803 0.397843 0.462104 Vertex 5488 0.424522 0.398263 0.62769 Vertex 5489 0.517318 0.28751 0.495111 Vertex 5490 0.427708 0.806163 0.398003 Vertex 5491 0.536051 0.0110695 0.729725 Vertex 5492 0.644732 0.433278 0.19912 Vertex 5493 0.475279 0.385938 0.401663 Vertex 5494 0.479922 0.388716 0.402178 Vertex 5495 0.450765 0.516124 0.5852 Vertex 5496 0.452222 0.524345 0.581736 Vertex 5497 0.474118 0.456234 0.61049 Vertex 5498 0.530046 0.552312 0.424471 Vertex 5499 0.572784 0.529812 0.472249 Vertex 5500 0.488072 0.225813 0.573746 Vertex 5501 0.357915 0.316803 0.242338 Vertex 5502 0.369293 0.315518 0.25012 Vertex 5503 0.456936 0.203278 0.474482 Vertex 5504 0.398462 0.299817 0.239815 Vertex 5505 0.382453 0.490201 0.509544 Vertex 5506 0.414216 0.417003 0.36592 Vertex 5507 0.361623 0.253152 0.218872 Vertex 5508 0.394073 0.507596 0.505434 Vertex 5509 0.388334 0.500897 0.507483 Vertex 5510 0.595971 0.517463 0.205913 Vertex 5511 0.498667 0.472883 0.393188 Vertex 5512 0.501309 0.467268 0.394005 Vertex 5513 0.491993 0.73521 0.512399 Vertex 5514 0.500041 0.688379 0.534929 Vertex 5515 0.363512 0.436109 0.538761 Vertex 5516 0.546605 0.163696 0.441298 Vertex 5517 0.497607 0.533365 0.589109 Vertex 5518 0.394132 0.502721 0.545507 Vertex 5519 0.569591 0.538897 0.490598 Vertex 5520 0.38542 0.471083 0.441416 Vertex 5521 0.409401 0.481601 0.42183 Vertex 5522 0.393967 0.476928 0.428919 Vertex 5523 0.389779 0.476792 0.437608 Vertex 5524 0.427708 0.404198 0.391541 Vertex 5525 0.400908 0.263517 0.196093 Vertex 5526 0.362985 0.242628 0.227359 Vertex 5527 0.430059 0.261249 0.712668 Vertex 5528 0.544521 0.0523326 0.719432 Vertex 5529 0.459299 0.460232 0.397026 Vertex 5530 0.311286 0.975 0.244819 Vertex 5531 0.473514 0.52168 0.598763 Vertex 5532 0.517247 0.35411 0.465338 Vertex 5533 0.381938 0.403173 0.573882 Vertex 5534 0.38731 0.407183 0.588387 Vertex 5535 0.343719 0.900949 0.304348 Vertex 5536 0.576201 0.499932 0.415427 Vertex 5537 0.339454 0.291851 0.215899 Vertex 5538 0.508558 0.341465 0.452243 Vertex 5539 0.473822 0.775093 0.490414 Vertex 5540 0.509997 0.728789 0.429707 Vertex 5541 0.540179 0.456063 0.565508 Vertex 5542 0.380664 0.435618 0.405892 Vertex 5543 0.550029 0.0409137 0.793044 Vertex 5544 0.549442 0.0466232 0.787394 Vertex 5545 0.371176 0.455891 0.544826 Vertex 5546 0.508505 0.616632 0.557281 Vertex 5547 0.604002 0.477556 0.197941 Vertex 5548 0.4464 0.832999 0.379465 Vertex 5549 0.41546 0.410281 0.614281 Vertex 5550 0.357838 0.924279 0.330674 Vertex 5551 0.489789 0.71881 0.515828 Vertex 5552 0.414536 0.348661 0.436275 Vertex 5553 0.378793 0.246981 0.472711 Vertex 5554 0.492822 0.739918 0.507714 Vertex 5555 0.507658 0.558856 0.397091 Vertex 5556 0.452601 0.619931 0.495739 Vertex 5557 0.373883 0.33039 0.47845 Vertex 5558 0.354107 0.208815 0.528272 Vertex 5559 0.461266 0.106738 0.657895 Vertex 5560 0.450558 0.114681 0.658553 Vertex 5561 0.644258 0.425762 0.19819 Vertex 5562 0.646408 0.430418 0.193073 Vertex 5563 0.559997 0.00617142 0.7562 Vertex 5564 0.494196 0.556446 0.378417 Vertex 5565 0.495552 0.551423 0.378689 Vertex 5566 0.320413 0.96264 0.207299 Vertex 5567 0.360806 0.25352 0.501122 Vertex 5568 0.357827 0.259928 0.513222 Vertex 5569 0.451203 0.179996 0.596643 Vertex 5570 0.351081 0.378079 0.437294 Vertex 5571 0.406416 0.350408 0.443264 Vertex 5572 0.472412 0.562019 0.42485 Vertex 5573 0.4265 0.148262 0.710595 Vertex 5574 0.440418 0.122664 0.734037 Vertex 5575 0.468811 0.120923 0.803918 Vertex 5576 0.420559 0.151442 0.625652 Vertex 5577 0.560079 0.490207 0.378772 Vertex 5578 0.543431 0.640903 0.480843 Vertex 5579 0.527919 0.160095 0.459462 Vertex 5580 0.596984 0.446865 0.184023 Vertex 5581 0.597451 0.452337 0.185705 Vertex 5582 0.325003 0.262866 0.209259 Vertex 5583 0.533576 0.0665056 0.706816 Vertex 5584 0.625519 0.535474 0.285668 Vertex 5585 0.357021 0.281048 0.22746 Vertex 5586 0.363423 0.360684 0.453984 Vertex 5587 0.553351 0.492268 0.551015 Vertex 5588 0.506746 0.0273627 0.66791 Vertex 5589 0.46094 0.564335 0.434155 Vertex 5590 0.516281 0.741695 0.457697 Vertex 5591 0.443255 0.561285 0.464674 Vertex 5592 0.410971 0.279117 0.221342 Vertex 5593 0.595017 0.43833 0.187091 Vertex 5594 0.515387 0.744763 0.476419 Vertex 5595 0.515873 0.746332 0.468299 Vertex 5596 0.504845 0.765433 0.472238 Vertex 5597 0.488007 0.765948 0.488774 Vertex 5598 0.384342 0.206896 0.611396 Vertex 5599 0.395015 0.356307 0.399691 Vertex 5600 0.391023 0.354945 0.383066 Vertex 5601 0.468106 0.615163 0.532447 Vertex 5602 0.473407 0.17046 0.498635 Vertex 5603 0.4403 0.539276 0.459924 Vertex 5604 0.524064 0.0544293 0.644581 Vertex 5605 0.343103 0.299758 0.216361 Vertex 5606 0.447407 0.134036 0.760375 Vertex 5607 0.637512 0.509278 0.256872 Vertex 5608 0.421466 0.311082 0.642881 Vertex 5609 0.385266 0.911983 0.341773 Vertex 5610 0.423971 0.224291 0.781714 Vertex 5611 0.493527 0.184846 0.532353 Vertex 5612 0.529803 0.0512192 0.784226 Vertex 5613 0.515369 0.40209 0.444502 Vertex 5614 0.414275 0.172267 0.590436 Vertex 5615 0.413079 0.149897 0.676534 Vertex 5616 0.493568 0.115486 0.797445 Vertex 5617 0.49403 0.459936 0.387555 Vertex 5618 0.442343 0.853947 0.396072 Vertex 5619 0.530158 0.605622 0.437051 Vertex 5620 0.489991 0.181299 0.789236 Vertex 5621 0.494522 0.188264 0.774862 Vertex 5622 0.49743 0.177176 0.783136 Vertex 5623 0.483766 0.338664 0.629425 Vertex 5624 0.43411 0.105974 0.665956 Vertex 5625 0.51794 0.0222218 0.729222 Vertex 5626 0.39537 0.44892 0.397665 Vertex 5627 0.497661 0.626209 0.407171 Vertex 5628 0.612536 0.471106 0.218588 Vertex 5629 0.487515 0.0878627 0.72523 Vertex 5630 0.463066 0.530955 0.42424 Vertex 5631 0.355185 0.229408 0.51603 Vertex 5632 0.354824 0.224439 0.517812 Vertex 5633 0.559126 0.0189288 0.7623 Vertex 5634 0.562798 0.494288 0.358286 Vertex 5635 0.564314 0.4961 0.358274 Vertex 5636 0.635967 0.474974 0.222781 Vertex 5637 0.404225 0.253863 0.723572 Vertex 5638 0.470345 0.0921092 0.76015 Vertex 5639 0.405433 0.83933 0.370735 Vertex 5640 0.509358 0.04564 0.666862 Vertex 5641 0.466875 0.443258 0.378618 Vertex 5642 0.460727 0.448648 0.388456 Vertex 5643 0.372574 0.882127 0.360382 Vertex 5644 0.38526 0.870187 0.378932 Vertex 5645 0.379089 0.875251 0.368609 Vertex 5646 0.541826 0.148452 0.439977 Vertex 5647 0.535269 0.15467 0.436044 Vertex 5648 0.58473 0.452177 0.315169 Vertex 5649 0.457161 0.204664 0.798866 Vertex 5650 0.474527 0.111322 0.649598 Vertex 5651 0.516009 0.0319113 0.664043 Vertex 5652 0.469439 0.328311 0.419603 Vertex 5653 0.35544 0.209781 0.48525 Vertex 5654 0.315752 0.986579 0.230261 Vertex 5655 0.352253 0.108616 0.458165 Vertex 5656 0.399996 0.305355 0.219056 Vertex 5657 0.466537 0.477994 0.399401 Vertex 5658 0.473958 0.480032 0.394822 Vertex 5659 0.477926 0.47559 0.387911 Vertex 5660 0.455841 0.427296 0.622851 Vertex 5661 0.491377 0.209425 0.484953 Vertex 5662 0.516323 0.504676 0.596915 Vertex 5663 0.535542 0.676783 0.474861 Vertex 5664 0.536081 0.62673 0.522166 Vertex 5665 0.492455 0.0456993 0.683582 Vertex 5666 0.376453 0.269706 0.233234 Vertex 5667 0.495783 0.494448 0.392536 Vertex 5668 0.463433 0.475821 0.617396 Vertex 5669 0.497453 0.204314 0.478954 Vertex 5670 0.391965 0.250908 0.65048 Vertex 5671 0.464654 0.658339 0.506287 Vertex 5672 0.57931 0.508419 0.437051 Vertex 5673 0.413896 0.825684 0.385068 Vertex 5674 0.592488 0.519696 0.314422 Vertex 5675 0.588864 0.517546 0.305746 Vertex 5676 0.462113 0.225162 0.615311 Vertex 5677 0.577072 0.520401 0.461885 Vertex 5678 0.50828 0.0848125 0.791386 Vertex 5679 0.365212 0.368236 0.275345 Vertex 5680 0.54577 0.62599 0.478166 Vertex 5681 0.467609 0.508946 0.409552 Vertex 5682 0.440388 0.336235 0.418448 Vertex 5683 0.477677 0.392388 0.395024 Vertex 5684 0.370033 0.17582 0.462145 Vertex 5685 0.434951 0.202614 0.794087 Vertex 5686 0.487053 0.361217 0.627897 Vertex 5687 0.418386 0.814354 0.412679 Vertex 5688 0.63727 0.488631 0.239832 Vertex 5689 0.35419 0.0932464 0.451781 Vertex 5690 0.398799 0.187962 0.708475 Vertex 5691 0.442988 0.16831 0.596643 Vertex 5692 0.517205 0.341128 0.573752 Vertex 5693 0.504489 0.348377 0.600706 Vertex 5694 0.554068 0.145526 0.424915 Vertex 5695 0.518562 0.703121 0.501199 Vertex 5696 0.388565 0.396629 0.26697 Vertex 5697 0.395358 0.25657 0.216331 Vertex 5698 0.358389 0.0859556 0.443596 Vertex 5699 0.405451 0.505363 0.462755 Vertex 5700 0.317452 0.957375 0.268113 Vertex 5701 0.624293 0.514419 0.293788 Vertex 5702 0.426352 0.329347 0.426894 Vertex 5703 0.52606 0.385613 0.44324 Vertex 5704 0.406428 0.324574 0.212606 Vertex 5705 0.359432 0.382373 0.48978 Vertex 5706 0.358046 0.391192 0.499819 Vertex 5707 0.642014 0.490236 0.235384 Vertex 5708 0.511306 0.58414 0.409049 Vertex 5709 0.441401 0.438964 0.630586 Vertex 5710 0.393801 0.364806 0.620588 Vertex 5711 0.352662 0.091671 0.443074 Vertex 5712 0.637412 0.44603 0.207358 Vertex 5713 0.487041 0.200287 0.768637 Vertex 5714 0.525396 0.0285295 0.644853 Vertex 5715 0.383211 0.351557 0.615436 Vertex 5716 0.468971 0.184224 0.694545 Vertex 5717 0.597647 0.529516 0.270926 Vertex 5718 0.529939 0.0416185 0.654045 Vertex 5719 0.617908 0.493879 0.238754 Vertex 5720 0.376933 0.34076 0.609104 Vertex 5721 0.378171 0.335383 0.611118 Vertex 5722 0.588342 0.487038 0.437134 Vertex 5723 0.399925 0.353423 0.225961 Vertex 5724 0.602669 0.445076 0.331385 Vertex 5725 0.599815 0.437643 0.341678 Vertex 5726 0.404029 0.359707 0.2774 Vertex 5727 0.449823 0.200968 0.801609 Vertex 5728 0.519426 0.305248 0.534414 Vertex 5729 0.51714 0.178077 0.46731 Vertex 5730 0.580009 0.502686 0.32638 Vertex 5731 0.577391 0.505256 0.335465 Vertex 5732 0.410224 0.265732 0.224658 Vertex 5733 0.372313 0.35103 0.592574 Vertex 5734 0.357963 0.363468 0.387437 Vertex 5735 0.518461 0.528207 0.406081 Vertex 5736 0.512663 0.531766 0.400573 Vertex 5737 0.512064 0.52492 0.399146 Vertex 5738 0.513729 0.526767 0.401023 Vertex 5739 0.476528 0.603555 0.546129 Vertex 5740 0.510394 0.126348 0.669083 Vertex 5741 0.510732 0.130091 0.673235 Vertex 5742 0.556834 0.523546 0.538583 Vertex 5743 0.532658 0.131015 0.451556 Vertex 5744 0.531882 0.134415 0.45518 Vertex 5745 0.435437 0.554089 0.509977 Vertex 5746 0.53633 0.546721 0.433231 Vertex 5747 0.532705 0.543463 0.426917 Vertex 5748 0.493645 0.0523682 0.725639 Vertex 5749 0.471216 0.635206 0.524831 Vertex 5750 0.45497 0.838969 0.419342 Vertex 5751 0.446726 0.847634 0.413491 Vertex 5752 0.525136 0.152899 0.443536 Vertex 5753 0.303895 0.990553 0.219085 Vertex 5754 0.543579 0.0449412 0.710998 Vertex 5755 0.449195 0.118637 0.749969 Vertex 5756 0.321461 0.974207 0.242693 Vertex 5757 0.496654 0.0887274 0.787412 Vertex 5758 0.378337 0.339754 0.215845 Vertex 5759 0.368949 0.335033 0.215004 Vertex 5760 0.472951 0.188358 0.569689 Vertex 5761 0.343032 0.130257 0.464041 Vertex 5762 0.391307 0.340162 0.45155 Vertex 5763 0.381351 0.344065 0.459995 Vertex 5764 0.534452 0.00997969 0.739539 Vertex 5765 0.513764 0.302559 0.479131 Vertex 5766 0.477968 0.283133 0.618687 Vertex 5767 0.491069 0.0596234 0.726752 Vertex 5768 0.42814 0.167671 0.772747 Vertex 5769 0.452708 0.405045 0.629496 Vertex 5770 0.46415 0.560965 0.429624 Vertex 5771 0.593714 0.432864 0.398151 Vertex 5772 0.502221 0.048092 0.677345 Vertex 5773 0.39367 0.332504 0.211084 Vertex 5774 0.389519 0.339155 0.216876 Vertex 5775 0.520895 0.377611 0.503355 Vertex 5776 0.519657 0.363195 0.48981 Vertex 5777 0.428034 0.118465 0.673282 Vertex 5778 0.512722 0.0723276 0.682066 Vertex 5779 0.473407 0.311532 0.632523 Vertex 5780 0.467562 0.309234 0.633233 Vertex 5781 0.387487 0.247022 0.681544 Vertex 5782 0.320526 0.989161 0.201696 Vertex 5783 0.565137 0.428191 0.495099 Vertex 5784 0.486117 0.427178 0.611941 Vertex 5785 0.369459 0.311112 0.480737 Vertex 5786 0.499467 0.17126 0.723951 Vertex 5787 0.32264 0.26662 0.220684 Vertex 5788 0.526498 0.131992 0.714705 Vertex 5789 0.518485 0.33039 0.482721 Vertex 5790 0.396993 0.334832 0.205724 Vertex 5791 0.524958 0.453528 0.408735 Vertex 5792 0.387096 0.200601 0.689866 Vertex 5793 0.46771 0.394704 0.390114 Vertex 5794 0.383247 0.214009 0.652517 Vertex 5795 0.448579 0.182975 0.586272 Vertex 5796 0.393783 0.180268 0.554829 Vertex 5797 0.392729 0.488246 0.449506 Vertex 5798 0.402377 0.278981 0.233009 Vertex 5799 0.569816 0.454375 0.322501 Vertex 5800 0.414092 0.83079 0.424566 Vertex 5801 0.412274 0.830061 0.418365 Vertex 5802 0.459833 0.764325 0.39856 Vertex 5803 0.380196 0.339303 0.272259 Vertex 5804 0.464665 0.171437 0.672376 Vertex 5805 0.4464 0.171236 0.584158 Vertex 5806 0.475486 0.76538 0.390836 Vertex 5807 0.471234 0.767494 0.388645 Vertex 5808 0.470932 0.169287 0.673525 Vertex 5809 0.454923 0.127112 0.778854 Vertex 5810 0.454242 0.438579 0.625291 Vertex 5811 0.391479 0.19116 0.479973 Vertex 5812 0.466999 0.669367 0.431922 Vertex 5813 0.489612 0.339854 0.62615 Vertex 5814 0.446175 0.247508 0.710601 Vertex 5815 0.471956 0.426313 0.372103 Vertex 5816 0.459649 0.595832 0.440735 Vertex 5817 0.452601 0.0897698 0.730833 Vertex 5818 0.361196 0.202259 0.472741 Vertex 5819 0.365698 0.37558 0.275321 Vertex 5820 0.362257 0.108154 0.480825 Vertex 5821 0.538853 0.563186 0.553123 Vertex 5822 0.435508 0.317911 0.421557 Vertex 5823 0.399866 0.4858 0.433936 Vertex 5824 0.435573 0.820721 0.361549 Vertex 5825 0.477275 0.0745604 0.650883 Vertex 5826 0.453004 0.590377 0.526246 Vertex 5827 0.460069 0.594659 0.536569 Vertex 5828 0.601941 0.529379 0.301641 Vertex 5829 0.430853 0.392424 0.420201 Vertex 5830 0.429147 0.398015 0.414231 Vertex 5831 0.502517 0.0742583 0.637965 Vertex 5832 0.595604 0.429819 0.193535 Vertex 5833 0.495688 0.162992 0.697684 Vertex 5834 0.642991 0.509408 0.200974 Vertex 5835 0.474017 0.374081 0.628306 Vertex 5836 0.352425 0.211344 0.503491 Vertex 5837 0.375695 0.351119 0.289808 Vertex 5838 0.670081 0.463768 0.217776 Vertex 5839 0.398231 0.883353 0.393022 Vertex 5840 0.459992 0.491581 0.610567 Vertex 5841 0.441526 0.256161 0.735458 Vertex 5842 0.552872 0.472492 0.380034 Vertex 5843 0.457576 0.140035 0.797777 Vertex 5844 0.419647 0.248977 0.225855 Vertex 5845 0.37964 0.0843802 0.473582 Vertex 5846 0.477115 0.180552 0.70135 Vertex 5847 0.460028 0.546188 0.429109 Vertex 5848 0.458139 0.539934 0.429636 Vertex 5849 0.432896 0.256664 0.679495 Vertex 5850 0.430468 0.259833 0.675343 Vertex 5851 0.429147 0.850269 0.361484 Vertex 5852 0.446637 0.246418 0.758267 Vertex 5853 0.363352 0.278276 0.572715 Vertex 5854 0.500391 0.25073 0.515852 Vertex 5855 0.364904 0.189389 0.517895 Vertex 5856 0.481841 0.269422 0.447279 Vertex 5857 0.65865 0.499351 0.196964 Vertex 5858 0.663229 0.493636 0.195389 Vertex 5859 0.471666 0.302719 0.429393 Vertex 5860 0.506106 0.0963203 0.713426 Vertex 5861 0.492383 0.612812 0.402167 Vertex 5862 0.495748 0.614109 0.403973 Vertex 5863 0.3531 0.392003 0.445544 Vertex 5864 0.480485 0.551495 0.398169 Vertex 5865 0.53014 0.398672 0.507531 Vertex 5866 0.655168 0.455773 0.216769 Vertex 5867 0.391295 0.367874 0.228111 Vertex 5868 0.600774 0.491184 0.389652 Vertex 5869 0.489837 0.0823132 0.727978 Vertex 5870 0.39537 0.183271 0.622952 Vertex 5871 0.448769 0.80749 0.37083 Vertex 5872 0.440531 0.349123 0.417968 Vertex 5873 0.532592 0.51956 0.421072 Vertex 5874 0.511413 0.136867 0.694 Vertex 5875 0.503115 0.139816 0.667508 Vertex 5876 0.510459 0.271039 0.524244 Vertex 5877 0.454597 0.516367 0.42613 Vertex 5878 0.391698 0.169441 0.503397 Vertex 5879 0.461686 0.0897343 0.72504 Vertex 5880 0.418717 0.228644 0.204338 Vertex 5881 0.364134 0.882648 0.339665 Vertex 5882 0.366035 0.87919 0.33742 Vertex 5883 0.400647 0.362781 0.402013 Vertex 5884 0.516838 0.169969 0.783094 Vertex 5885 0.478513 0.535865 0.39853 Vertex 5886 0.434247 0.382675 0.421611 Vertex 5887 0.428401 0.551193 0.542735 Vertex 5888 0.429787 0.554752 0.52823 Vertex 5889 0.325435 0.238369 0.229586 Vertex 5890 0.468947 0.209301 0.69182 Vertex 5891 0.538391 0.0550808 0.710838 Vertex 5892 0.504199 0.0937913 0.81115 Vertex 5893 0.386865 0.350752 0.432437 Vertex 5894 0.342428 0.120366 0.471841 Vertex 5895 0.522755 0.0741754 0.795704 Vertex 5896 0.563532 0.462382 0.526163 Vertex 5897 0.349037 0.10614 0.457016 Vertex 5898 0.548518 0.566621 0.455707 Vertex 5899 0.512757 0.0318521 0.722523 Vertex 5900 0.450072 0.145472 0.781051 Vertex 5901 0.525479 0.398992 0.486789 Vertex 5902 0.532113 0.094579 0.793228 Vertex 5903 0.432796 0.797001 0.437134 Vertex 5904 0.434454 0.791872 0.437039 Vertex 5905 0.407991 0.417524 0.309666 Vertex 5906 0.460573 0.166907 0.654744 Vertex 5907 0.467354 0.185966 0.483135 Vertex 5908 0.321834 0.249226 0.222272 Vertex 5909 0.541737 0.00370166 0.739592 Vertex 5910 0.444777 0.391026 0.643272 Vertex 5911 0.354605 0.931114 0.321553 Vertex 5912 0.377484 0.272739 0.598497 Vertex 5913 0.404136 0.332818 0.202052 Vertex 5914 0.531301 0.533507 0.421344 Vertex 5915 0.584753 0.489496 0.30218 Vertex 5916 0.352455 0.097108 0.454825 Vertex 5917 0.488563 0.595251 0.400094 Vertex 5918 0.397295 0.314576 0.206351 Vertex 5919 0.398918 0.317123 0.203438 Vertex 5920 0.522826 0.141652 0.449862 Vertex 5921 0.490316 0.229012 0.50961 Vertex 5922 0.490796 0.22557 0.51969 Vertex 5923 0.37104 0.368058 0.561385 Vertex 5924 0.480751 0.11015 0.795656 Vertex 5925 0.508043 0.0516515 0.63228 Vertex 5926 0.447946 0.128936 0.752024 Vertex 5927 0.499745 0.18131 0.772795 Vertex 5928 0.47872 0.779156 0.485498 Vertex 5929 0.487545 0.466025 0.38598 Vertex 5930 0.384816 0.311301 0.195963 Vertex 5931 0.489896 0.524262 0.592977 Vertex 5932 0.356417 0.413254 0.454866 Vertex 5933 0.417675 0.252063 0.446658 Vertex 5934 0.50491 0.433438 0.403345 Vertex 5935 0.483109 0.595672 0.420308 Vertex 5936 0.472785 0.233608 0.468163 Vertex 5937 0.546967 0.0672933 0.733356 Vertex 5938 0.527203 0.0563067 0.659021 Vertex 5939 0.496737 0.498422 0.393158 Vertex 5940 0.629392 0.494477 0.258139 Vertex 5941 0.544586 0.0446924 0.792671 Vertex 5942 0.369399 0.367738 0.304318 Vertex 5943 0.367978 0.370901 0.312657 Vertex 5944 0.46906 0.110535 0.642366 Vertex 5945 0.465589 0.117891 0.642218 Vertex 5946 0.373083 0.887736 0.362135 Vertex 5947 0.551563 0.398897 0.434901 Vertex 5948 0.547014 0.575618 0.503503 Vertex 5949 0.600608 0.498256 0.261213 Vertex 5950 0.396424 0.318225 0.445698 Vertex 5951 0.375281 0.388189 0.541355 Vertex 5952 0.378118 0.46256 0.563494 Vertex 5953 0.537881 0.118992 0.431229 Vertex 5954 0.543757 0.123701 0.435541 Vertex 5955 0.473774 0.734452 0.488957 Vertex 5956 0.496097 0.708256 0.525701 Vertex 5957 0.564705 0.520442 0.443228 Vertex 5958 0.536874 0.570832 0.439053 Vertex 5959 0.542371 0.0370759 0.723809 Vertex 5960 0.511443 0.348282 0.586142 Vertex 5961 0.545403 0.592213 0.457994 Vertex 5962 0.460419 0.198397 0.61954 Vertex 5963 0.518745 0.570506 0.412105 Vertex 5964 0.592713 0.516906 0.290743 Vertex 5965 0.32996 0.918694 0.292064 Vertex 5966 0.332341 0.916218 0.290258 Vertex 5967 0.485845 0.542107 0.587398 Vertex 5968 0.537384 0.533596 0.426769 Vertex 5969 0.40394 0.271175 0.227537 Vertex 5970 0.603487 0.458568 0.213506 Vertex 5971 0.499905 0.645529 0.406911 Vertex 5972 0.497453 0.641211 0.405702 Vertex 5973 0.501214 0.167303 0.718751 Vertex 5974 0.356393 0.352689 0.394426 Vertex 5975 0.358448 0.349751 0.402137 Vertex 5976 0.485792 0.579645 0.40607 Vertex 5977 0.418019 0.168364 0.580006 Vertex 5978 0.493758 0.736613 0.50974 Vertex 5979 0.464802 0.565229 0.429707 Vertex 5980 0.502955 0.26065 0.503397 Vertex 5981 0.494522 0.753842 0.414788 Vertex 5982 0.662494 0.42276 0.20984 Vertex 5983 0.661724 0.431774 0.205108 Vertex 5984 0.585097 0.428813 0.205321 Vertex 5985 0.607674 0.491374 0.195063 Vertex 5986 0.37425 0.443412 0.567669 Vertex 5987 0.36472 0.23449 0.234046 Vertex 5988 0.555223 0.52133 0.445319 Vertex 5989 0.498164 0.393164 0.442683 Vertex 5990 0.438469 0.135818 0.630183 Vertex 5991 0.506462 0.196899 0.468032 Vertex 5992 0.35936 0.380602 0.358232 Vertex 5993 0.369867 0.0929443 0.46712 Vertex 5994 0.371958 0.0799737 0.468471 Vertex 5995 0.368398 0.0877502 0.466783 Vertex 5996 0.571747 0.40906 0.445266 Vertex 5997 0.36908 0.275457 0.233578 Vertex 5998 0.391319 0.170448 0.532447 Vertex 5999 0.415193 0.265353 0.227649 Vertex 6000 0.42066 0.171449 0.499505 Vertex 6001 0.429929 0.166841 0.563494 Vertex 6002 0.473425 0.788058 0.481199 Vertex 6003 0.525556 0.0717294 0.675332 Vertex 6004 0.506 0.0777942 0.636277 Vertex 6005 0.458038 0.234099 0.77068 Vertex 6006 0.555827 0.443039 0.526205 Vertex 6007 0.551421 0.433373 0.532394 Vertex 6008 0.458654 0.614701 0.445047 Vertex 6009 0.382684 0.2264 0.638048 Vertex 6010 0.47272 0.217557 0.772801 Vertex 6011 0.417266 0.167588 0.723074 Vertex 6012 0.414246 0.158544 0.704388 Vertex 6013 0.367208 0.24139 0.204823 Vertex 6014 0.558012 0.544358 0.520099 Vertex 6015 0.583036 0.505304 0.311325 Vertex 6016 0.505348 0.400023 0.443513 Vertex 6017 0.507563 0.405661 0.442316 Vertex 6018 0.492561 0.721315 0.51879 Vertex 6019 0.469901 0.147474 0.79982 Vertex 6020 0.491323 0.173451 0.497166 Vertex 6021 0.48129 0.18474 0.711892 Vertex 6022 0.562502 0.474559 0.331083 Vertex 6023 0.49846 0.321802 0.444164 Vertex 6024 0.42695 0.226169 0.204634 Vertex 6025 0.419102 0.393123 0.356929 Vertex 6026 0.386226 0.172053 0.530333 Vertex 6027 0.435561 0.312847 0.422499 Vertex 6028 0.508191 0.744976 0.436767 Vertex 6029 0.453495 0.138211 0.650148 Vertex 6030 0.584179 0.508567 0.329507 Vertex 6031 0.583403 0.509242 0.333304 Vertex 6032 0.393813 0.901524 0.362218 Vertex 6033 0.353846 0.371309 0.455038 Vertex 6034 0.514309 0.0167019 0.642182 Vertex 6035 0.571564 0.504315 0.372855 Vertex 6036 0.523312 0.0747736 0.669048 Vertex 6037 0.321787 0.238263 0.218374 Vertex 6038 0.496654 0.553348 0.377747 Vertex 6039 0.656666 0.41535 0.231813 Vertex 6040 0.323736 0.236291 0.217853 Vertex 6041 0.617707 0.477793 0.293219 Vertex 6042 0.647936 0.506749 0.227649 Vertex 6043 0.520948 0.490935 0.597058 Vertex 6044 0.420192 0.402824 0.352126 Vertex 6045 0.491951 0.492617 0.39134 Vertex 6046 0.482392 0.309927 0.629176 Vertex 6047 0.548246 0.520093 0.559348 Vertex 6048 0.555004 0.0116973 0.770686 Vertex 6049 0.557225 0.00832134 0.762478 Vertex 6050 0.467579 0.567509 0.564898 Vertex 6051 0.480888 0.642319 0.418282 Vertex 6052 0.52051 0.439497 0.595068 Vertex 6053 0.425807 0.262279 0.6629 Vertex 6054 0.401139 0.269149 0.195466 Vertex 6055 0.502434 0.416428 0.602311 Vertex 6056 0.383614 0.340571 0.617514 Vertex 6057 0.463617 0.706745 0.434871 Vertex 6058 0.484204 0.573497 0.405797 Vertex 6059 0.594182 0.524588 0.283293 Vertex 6060 0.661108 0.488862 0.192558 Vertex 6061 0.596249 0.530576 0.276855 Vertex 6062 0.513669 0.388053 0.563452 Vertex 6063 0.320869 0.262931 0.224552 Vertex 6064 0.453395 0.820792 0.459356 Vertex 6065 0.459945 0.812234 0.465367 Vertex 6066 0.495961 0.618735 0.55676 Vertex 6067 0.476931 0.384588 0.625552 Vertex 6068 0.349156 0.182975 0.474263 Vertex 6069 0.354788 0.30446 0.544612 Vertex 6070 0.549389 0.399655 0.416636 Vertex 6071 0.405516 0.362597 0.287741 Vertex 6072 0.497133 0.578312 0.57249 Vertex 6073 0.366817 0.35292 0.437092 Vertex 6074 0.526486 0.0831009 0.796124 Vertex 6075 0.382785 0.229556 0.683629 Vertex 6076 0.385604 0.907038 0.353962 Vertex 6077 0.382791 0.909845 0.350491 Vertex 6078 0.509974 0.0310881 0.670274 Vertex 6079 0.390816 0.889773 0.3206 Vertex 6080 0.527096 0.0581013 0.784042 Vertex 6081 0.528198 0.0551104 0.787678 Vertex 6082 0.526291 0.056443 0.785321 Vertex 6083 0.494658 0.180771 0.726189 Vertex 6084 0.492212 0.191758 0.779002 Vertex 6085 0.383371 0.215982 0.600232 Vertex 6086 0.389803 0.199564 0.594499 Vertex 6087 0.50671 0.278454 0.474269 Vertex 6088 0.461378 0.720421 0.433989 Vertex 6089 0.436053 0.391056 0.42058 Vertex 6090 0.533522 0.127858 0.434806 Vertex 6091 0.594271 0.519489 0.282037 Vertex 6092 0.593264 0.516184 0.284258 Vertex 6093 0.60569 0.448251 0.337136 Vertex 6094 0.52558 0.694983 0.497172 Vertex 6095 0.532018 0.689374 0.478557 Vertex 6096 0.520765 0.691145 0.505464 Vertex 6097 0.517963 0.073826 0.783272 Vertex 6098 0.525041 0.147664 0.762489 Vertex 6099 0.349612 0.290886 0.232032 Vertex 6100 0.469563 0.0791031 0.734919 Vertex 6101 0.355807 0.407864 0.456187 Vertex 6102 0.375879 0.348472 0.285301 Vertex 6103 0.340023 0.932097 0.311769 Vertex 6104 0.478927 0.162435 0.6646 Vertex 6105 0.552599 0.431638 0.369687 Vertex 6106 0.622765 0.520934 0.297081 Vertex 6107 0.424824 0.836375 0.434617 Vertex 6108 0.397242 0.292745 0.198409 Vertex 6109 0.396987 0.301073 0.201862 Vertex 6110 0.5381 0.659346 0.493073 Vertex 6111 0.525231 0.343283 0.536161 Vertex 6112 0.355736 0.106383 0.470413 Vertex 6113 0.476037 0.33357 0.423328 Vertex 6114 0.549247 0.567 0.528219 Vertex 6115 0.610286 0.500666 0.241905 Vertex 6116 0.527357 0.0251299 0.728061 Vertex 6117 0.517531 0.32805 0.561362 Vertex 6118 0.472069 0.507969 0.405756 Vertex 6119 0.473206 0.511126 0.406774 Vertex 6120 0.458222 0.207862 0.604402 Vertex 6121 0.440009 0.559153 0.492351 Vertex 6122 0.376039 0.355206 0.300184 Vertex 6123 0.349594 0.926381 0.27127 Vertex 6124 0.394517 0.358019 0.226613 Vertex 6125 0.336617 0.276482 0.228846 Vertex 6126 0.379983 0.870234 0.335477 Vertex 6127 0.544384 0.629289 0.472492 Vertex 6128 0.527298 0.053452 0.78621 Vertex 6129 0.439613 0.825785 0.362408 Vertex 6130 0.597256 0.520827 0.243759 Vertex 6131 0.59616 0.513051 0.233773 Vertex 6132 0.518402 0.316341 0.550997 Vertex 6133 0.442295 0.373151 0.647027 Vertex 6134 0.306282 0.950889 0.24386 Vertex 6135 0.453797 0.226139 0.783959 Vertex 6136 0.456042 0.220116 0.789556 Vertex 6137 0.451156 0.809261 0.466297 Vertex 6138 0.400588 0.23648 0.731295 Vertex 6139 0.399652 0.227377 0.733356 Vertex 6140 0.523791 0.0823902 0.714942 Vertex 6141 0.523839 0.089521 0.709861 Vertex 6142 0.356553 0.278519 0.516438 Vertex 6143 0.354664 0.272034 0.530659 Vertex 6144 0.472205 0.0774151 0.749223 Vertex 6145 0.570491 0.417252 0.470182 Vertex 6146 0.507249 0.268634 0.481157 Vertex 6147 0.503921 0.270198 0.473446 Vertex 6148 0.41039 0.175423 0.723068 Vertex 6149 0.526131 0.128622 0.706656 Vertex 6150 0.463647 0.130376 0.646832 Vertex 6151 0.452009 0.600475 0.456886 Vertex 6152 0.457955 0.167872 0.646399 Vertex 6153 0.505893 0.0654158 0.730489 Vertex 6154 0.486988 0.6482 0.409345 Vertex 6155 0.43594 0.163685 0.528266 Vertex 6156 0.416745 0.393875 0.368313 Vertex 6157 0.416443 0.390067 0.365647 Vertex 6158 0.411492 0.38287 0.370664 Vertex 6159 0.505668 0.170638 0.778984 Vertex 6160 0.55559 0.431691 0.521988 Vertex 6161 0.615296 0.480677 0.22406 Vertex 6162 0.39704 0.38736 0.241846 Vertex 6163 0.539676 0.0502419 0.710305 Vertex 6164 0.34193 0.908436 0.316762 Vertex 6165 0.386001 0.42748 0.590691 Vertex 6166 0.640817 0.441842 0.211954 Vertex 6167 0.660072 0.422227 0.233554 Vertex 6168 0.456901 0.771652 0.398086 Vertex 6169 0.48931 0.180973 0.714759 Vertex 6170 0.498099 0.657937 0.407983 Vertex 6171 0.431546 0.267408 0.436074 Vertex 6172 0.511306 0.287729 0.555155 Vertex 6173 0.554773 0.47636 0.372743 Vertex 6174 0.445488 0.76256 0.432834 Vertex 6175 0.52051 0.511126 0.593001 Vertex 6176 0.535814 0.0662627 0.710488 Vertex 6177 0.550503 0.406585 0.511665 Vertex 6178 0.439701 0.257209 0.735458 Vertex 6179 0.515002 0.128403 0.685696 Vertex 6180 0.520048 0.0777705 0.719136 Vertex 6181 0.478157 0.590312 0.425247 Vertex 6182 0.479981 0.58751 0.422481 Vertex 6183 0.368795 0.101023 0.467203 Vertex 6184 0.509305 0.102551 0.713633 Vertex 6185 0.512064 0.10505 0.717744 Vertex 6186 0.609818 0.51895 0.209289 Vertex 6187 0.307484 0.970624 0.246637 Vertex 6188 0.493236 0.164419 0.683605 Vertex 6189 0.485803 0.657143 0.52579 Vertex 6190 0.396537 0.429381 0.351457 Vertex 6191 0.565368 0.495537 0.36441 Vertex 6192 0.491608 0.057586 0.726503 Vertex 6193 0.348374 0.899025 0.292011 Vertex 6194 0.365443 0.269937 0.575351 Vertex 6195 0.483109 0.0563601 0.692045 Vertex 6196 0.48591 0.0536943 0.69121 Vertex 6197 0.377383 0.22406 0.482247 Vertex 6198 0.446945 0.358297 0.639588 Vertex 6199 0.544983 0.0653388 0.768596 Vertex 6200 0.347296 0.923254 0.270127 Vertex 6201 0.473206 0.324976 0.631658 Vertex 6202 0.42406 0.234182 0.198741 Vertex 6203 0.362482 0.111986 0.460552 Vertex 6204 0.501836 0.0411566 0.677316 Vertex 6205 0.421312 0.867439 0.35475 Vertex 6206 0.374665 0.269872 0.195033 Vertex 6207 0.435283 0.172705 0.493725 Vertex 6208 0.479016 0.515941 0.405904 Vertex 6209 0.408507 0.520851 0.503355 Vertex 6210 0.412824 0.529 0.511665 Vertex 6211 0.41299 0.23497 0.200429 Vertex 6212 0.506166 0.498439 0.400461 Vertex 6213 0.379746 0.279579 0.23279 Vertex 6214 0.566144 0.443015 0.505517 Vertex 6215 0.506266 0.29823 0.462619 Vertex 6216 0.511401 0.133218 0.677387 Vertex 6217 0.454253 0.0889465 0.739178 Vertex 6218 0.595509 0.446 0.208851 Vertex 6219 0.59725 0.450969 0.209348 Vertex 6220 0.664537 0.4564 0.204746 Vertex 6221 0.540961 0.403849 0.522083 Vertex 6222 0.647291 0.452557 0.21889 Vertex 6223 0.367694 0.350391 0.521431 Vertex 6224 0.504833 0.289144 0.461423 Vertex 6225 0.456214 0.715997 0.452622 Vertex 6226 0.374434 0.186238 0.548101 Vertex 6227 0.458808 0.618178 0.515716 Vertex 6228 0.524129 0.722109 0.470319 Vertex 6229 0.520066 0.728031 0.484788 Vertex 6230 0.385675 0.205552 0.66704 Vertex 6231 0.426944 0.262321 0.720954 Vertex 6232 0.433749 0.258773 0.723027 Vertex 6233 0.491394 0.424294 0.38277 Vertex 6234 0.489055 0.633802 0.407983 Vertex 6235 0.542833 0.130429 0.439011 Vertex 6236 0.524917 0.0350859 0.640139 Vertex 6237 0.39935 0.182904 0.704388 Vertex 6238 0.47031 0.217753 0.48124 Vertex 6239 0.471779 0.211534 0.486233 Vertex 6240 0.471399 0.750105 0.394846 Vertex 6241 0.436213 0.25827 0.72507 Vertex 6242 0.350429 0.127396 0.457342 Vertex 6243 0.435852 0.813075 0.377191 Vertex 6244 0.433015 0.814869 0.381058 Vertex 6245 0.389702 0.251453 0.675284 Vertex 6246 0.523489 0.0719722 0.794264 Vertex 6247 0.354889 0.1798 0.454185 Vertex 6248 0.351584 0.178633 0.458574 Vertex 6249 0.442444 0.454872 0.619765 Vertex 6250 0.393155 0.472226 0.424578 Vertex 6251 0.409401 0.445556 0.389717 Vertex 6252 0.465459 0.791978 0.482744 Vertex 6253 0.450487 0.251565 0.446113 Vertex 6254 0.344548 0.903395 0.289873 Vertex 6255 0.595769 0.45553 0.420456 Vertex 6256 0.381547 0.31489 0.251861 Vertex 6257 0.354581 0.195797 0.46991 Vertex 6258 0.391574 0.3354 0.453617 Vertex 6259 0.381091 0.340482 0.464497 Vertex 6260 0.485134 0.0815491 0.729127 Vertex 6261 0.428762 0.5531 0.530297 Vertex 6262 0.3591 0.17646 0.493091 Vertex 6263 0.50045 0.631628 0.556126 Vertex 6264 0.504199 0.626452 0.558424 Vertex 6265 0.437664 0.802746 0.391648 Vertex 6266 0.554086 0.496112 0.399869 Vertex 6267 0.54766 0.57881 0.459859 Vertex 6268 0.561276 0.480357 0.340553 Vertex 6269 0.508392 0.395681 0.582061 Vertex 6270 0.444682 0.468092 0.614435 Vertex 6271 0.439915 0.163673 0.540692 Vertex 6272 0.455112 0.176922 0.481607 Vertex 6273 0.487124 0.0774388 0.705744 Vertex 6274 0.429023 0.252554 0.756051 Vertex 6275 0.434632 0.350633 0.648336 Vertex 6276 0.497376 0.136701 0.79565 Vertex 6277 0.501279 0.138063 0.794413 Vertex 6278 0.366634 0.377972 0.264927 Vertex 6279 0.479614 0.0986597 0.651428 Vertex 6280 0.520901 0.454327 0.409955 Vertex 6281 0.464665 0.0967822 0.660004 Vertex 6282 0.496032 0.238168 0.552466 Vertex 6283 0.521446 0.473073 0.409765 Vertex 6284 0.322385 0.953229 0.220359 Vertex 6285 0.323896 0.952631 0.22634 Vertex 6286 0.393949 0.325113 0.209502 Vertex 6287 0.369938 0.879841 0.310804 Vertex 6288 0.360966 0.885693 0.3189 Vertex 6289 0.451339 0.149405 0.652624 Vertex 6290 0.470665 0.171029 0.798363 Vertex 6291 0.359177 0.232642 0.498368 Vertex 6292 0.604529 0.462406 0.301256 Vertex 6293 0.363654 0.930326 0.301315 Vertex 6294 0.658905 0.427071 0.20265 Vertex 6295 0.408915 0.263955 0.696452 Vertex 6296 0.491377 0.520016 0.388343 Vertex 6297 0.495499 0.361673 0.43807 Vertex 6298 0.450072 0.644326 0.470615 Vertex 6299 0.39938 0.45582 0.401456 Vertex 6300 0.597167 0.455855 0.201886 Vertex 6301 0.443302 0.373424 0.415735 Vertex 6302 0.507919 0.597218 0.562831 Vertex 6303 0.510844 0.60179 0.556576 Vertex 6304 0.459525 0.0682468 0.666957 Vertex 6305 0.50385 0.588097 0.403594 Vertex 6306 0.496097 0.591952 0.400366 Vertex 6307 0.498804 0.590436 0.401089 Vertex 6308 0.48867 0.130239 0.7969 Vertex 6309 0.54622 0.147066 0.42652 Vertex 6310 0.566565 0.51661 0.436998 Vertex 6311 0.382109 0.0800507 0.46545 Vertex 6312 0.425623 0.263665 0.708493 Vertex 6313 0.53418 0.0953134 0.723672 Vertex 6314 0.359135 0.889797 0.299408 Vertex 6315 0.512823 0.0419443 0.63013 Vertex 6316 0.601828 0.472356 0.191415 Vertex 6317 0.477666 0.195732 0.709914 Vertex 6318 0.460561 0.215342 0.652683 Vertex 6319 0.491051 0.508354 0.3915 Vertex 6320 0.637009 0.515503 0.227679 Vertex 6321 0.585606 0.445811 0.318941 Vertex 6322 0.443699 0.136577 0.627305 Vertex 6323 0.554761 0.477396 0.362449 Vertex 6324 0.368239 0.217545 0.237522 Vertex 6325 0.417225 0.410831 0.354069 Vertex 6326 0.502476 0.662539 0.545507 Vertex 6327 0.429657 0.444283 0.395444 Vertex 6328 0.637903 0.50133 0.190461 Vertex 6329 0.462616 0.428511 0.378636 Vertex 6330 0.595864 0.457869 0.187991 Vertex 6331 0.624406 0.495395 0.184343 Vertex 6332 0.359651 0.886996 0.331355 Vertex 6333 0.4983 0.0336763 0.672074 Vertex 6334 0.399273 0.310194 0.227626 Vertex 6335 0.493734 0.370948 0.617372 Vertex 6336 0.420014 0.169424 0.511665 Vertex 6337 0.380457 0.44404 0.416564 Vertex 6338 0.437433 0.497711 0.433409 Vertex 6339 0.596066 0.51234 0.245441 Vertex 6340 0.384686 0.251482 0.219731 Vertex 6341 0.383081 0.243208 0.222615 Vertex 6342 0.382737 0.244707 0.227241 Vertex 6343 0.476161 0.373104 0.413739 Vertex 6344 0.494291 0.706106 0.405537 Vertex 6345 0.430012 0.844554 0.360572 Vertex 6346 0.413985 0.253466 0.741565 Vertex 6347 0.396484 0.429932 0.376415 Vertex 6348 0.532113 0.129997 0.794726 Vertex 6349 0.410822 0.824488 0.38935 Vertex 6350 0.534505 0.105003 0.794922 Vertex 6351 0.525598 0.104399 0.794187 Vertex 6352 0.521209 0.62291 0.538814 Vertex 6353 0.469096 0.438934 0.613481 Vertex 6354 0.36019 0.360992 0.378103 Vertex 6355 0.348332 0.307303 0.227436 Vertex 6356 0.35544 0.306486 0.236788 Vertex 6357 0.515168 0.283239 0.488531 Vertex 6358 0.570823 0.4053 0.378932 Vertex 6359 0.444925 0.76596 0.43913 Vertex 6360 0.480443 0.487897 0.393271 Vertex 6361 0.584072 0.501306 0.439106 Vertex 6362 0.490115 0.198095 0.762389 Vertex 6363 0.472513 0.448002 0.610893 Vertex 6364 0.421252 0.394378 0.380377 Vertex 6365 0.530999 0.64512 0.519921 Vertex 6366 0.597712 0.433414 0.348016 Vertex 6367 0.634847 0.50775 0.263393 Vertex 6368 0.548572 0.583969 0.494453 Vertex 6369 0.45141 0.368236 0.411181 Vertex 6370 0.43751 0.362431 0.419437 Vertex 6371 0.442373 0.363024 0.416932 Vertex 6372 0.461041 0.202419 0.65048 Vertex 6373 0.463694 0.20124 0.660815 Vertex 6374 0.507332 0.060115 0.683493 Vertex 6375 0.460756 0.5739 0.555398 Vertex 6376 0.404077 0.276997 0.636491 Vertex 6377 0.480005 0.0804357 0.712692 Vertex 6378 0.491921 0.231623 0.567474 Vertex 6379 0.371911 0.358789 0.480002 Vertex 6380 0.370845 0.359885 0.486428 Vertex 6381 0.488551 0.175317 0.519933 Vertex 6382 0.542383 0.53715 0.432929 Vertex 6383 0.375103 0.386406 0.52415 Vertex 6384 0.420707 0.357314 0.431839 Vertex 6385 0.460537 0.353328 0.410897 Vertex 6386 0.363743 0.240271 0.211516 Vertex 6387 0.365514 0.240738 0.20798 Vertex 6388 0.467562 0.406449 0.381165 Vertex 6389 0.515985 0.0386039 0.663048 Vertex 6390 0.515369 0.0460842 0.660732 Vertex 6391 0.406807 0.268089 0.198439 Vertex 6392 0.495825 0.248858 0.480588 Vertex 6393 0.340603 0.283743 0.22926 Vertex 6394 0.410384 0.838554 0.420456 Vertex 6395 0.456954 0.83336 0.435215 Vertex 6396 0.530413 0.0362052 0.729068 Vertex 6397 0.417035 0.368011 0.432058 Vertex 6398 0.527108 0.337633 0.497438 Vertex 6399 0.341515 0.101627 0.452841 Vertex 6400 0.380789 0.356592 0.31887 Vertex 6401 0.482392 0.187553 0.472303 Vertex 6402 0.538752 0.589364 0.528266 Vertex 6403 0.599276 0.511807 0.224493 Vertex 6404 0.654244 0.413378 0.220193 Vertex 6405 0.395175 0.256605 0.656705 Vertex 6406 0.353633 0.138063 0.455411 Vertex 6407 0.366586 0.205901 0.477526 Vertex 6408 0.483446 0.176347 0.483117 Vertex 6409 0.692054 0.447096 0.213068 Vertex 6410 0.504934 0.761601 0.478071 Vertex 6411 0.571107 0.500246 0.405785 Vertex 6412 0.45895 0.18198 0.640056 Vertex 6413 0.484305 0.0422463 0.646453 Vertex 6414 0.45786 0.152112 0.657202 Vertex 6415 0.488848 0.161807 0.793945 Vertex 6416 0.363216 0.164733 0.477586 Vertex 6417 0.483162 0.404429 0.620316 Vertex 6418 0.385971 0.238085 0.6525 Vertex 6419 0.509932 0.129126 0.706431 Vertex 6420 0.454952 0.120094 0.76442 Vertex 6421 0.537277 0.117429 0.43878 Vertex 6422 0.532889 0.115877 0.432224 Vertex 6423 0.53383 0.114313 0.433326 Vertex 6424 0.358857 0.270944 0.492937 Vertex 6425 0.425339 0.134296 0.676475 Vertex 6426 0.43969 0.168038 0.560568 Vertex 6427 0.444108 0.166853 0.555167 Vertex 6428 0.620017 0.451662 0.195039 Vertex 6429 0.495066 0.0504019 0.722026 Vertex 6430 0.49952 0.0485599 0.722849 Vertex 6431 0.349795 0.923396 0.324023 Vertex 6432 0.504519 0.0942769 0.721712 Vertex 6433 0.464624 0.526116 0.419899 Vertex 6434 0.55087 0.0606599 0.758124 Vertex 6435 0.370975 0.350728 0.279467 Vertex 6436 0.516489 0.355899 0.45348 Vertex 6437 0.354451 0.360394 0.418365 Vertex 6438 0.583841 0.423559 0.204207 Vertex 6439 0.355292 0.38839 0.419206 Vertex 6440 0.362274 0.412733 0.415658 Vertex 6441 0.487936 0.471521 0.387082 Vertex 6442 0.410787 0.348146 0.632363 Vertex 6443 0.514937 0.112507 0.696037 Vertex 6444 0.489013 0.165686 0.677292 Vertex 6445 0.409135 0.440457 0.603762 Vertex 6446 0.42002 0.440877 0.60574 Vertex 6447 0.580465 0.408101 0.372761 Vertex 6448 0.44746 0.845815 0.38977 Vertex 6449 0.321651 0.931777 0.255095 Vertex 6450 0.526237 0.65719 0.435079 Vertex 6451 0.419286 0.244487 0.222834 Vertex 6452 0.418386 0.247443 0.22409 Vertex 6453 0.431469 0.848469 0.438016 Vertex 6454 0.375719 0.389285 0.553123 Vertex 6455 0.524656 0.702066 0.495052 Vertex 6456 0.68211 0.465118 0.191794 Vertex 6457 0.605779 0.468151 0.391281 Vertex 6458 0.384265 0.429808 0.393063 Vertex 6459 0.384597 0.426846 0.38723 Vertex 6460 0.530069 0.585437 0.547461 Vertex 6461 0.424776 0.167238 0.567622 Vertex 6462 0.326152 0.251251 0.204776 Vertex 6463 0.483517 0.56074 0.576873 Vertex 6464 0.414044 0.267586 0.227655 Vertex 6465 0.412961 0.263979 0.689818 Vertex 6466 0.485614 0.199173 0.561385 Vertex 6467 0.381742 0.887653 0.374484 Vertex 6468 0.503417 0.598035 0.56684 Vertex 6469 0.405936 0.172349 0.706479 Vertex 6470 0.466034 0.205753 0.67741 Vertex 6471 0.351377 0.394153 0.475963 Vertex 6472 0.51778 0.0970014 0.683647 Vertex 6473 0.42698 0.262658 0.727107 Vertex 6474 0.440477 0.220892 0.791386 Vertex 6475 0.473502 0.209005 0.787169 Vertex 6476 0.445583 0.590661 0.485919 Vertex 6477 0.363654 0.447623 0.522805 Vertex 6478 0.522755 0.573716 0.561711 Vertex 6479 0.591292 0.497332 0.389705 Vertex 6480 0.585269 0.499523 0.390777 Vertex 6481 0.383395 0.220963 0.592539 Vertex 6482 0.357228 0.384025 0.399703 Vertex 6483 0.363696 0.908868 0.291182 Vertex 6484 0.390058 0.879243 0.38701 Vertex 6485 0.329919 0.244067 0.229142 Vertex 6486 0.479993 0.304881 0.433189 Vertex 6487 0.502434 0.152218 0.701219 Vertex 6488 0.51152 0.1486 0.705881 Vertex 6489 0.473615 0.523066 0.411957 Vertex 6490 0.42323 0.809948 0.422446 Vertex 6491 0.427305 0.488246 0.429772 Vertex 6492 0.605749 0.482969 0.20461 Vertex 6493 0.607165 0.485771 0.198569 Vertex 6494 0.553008 0.469075 0.368597 Vertex 6495 0.359982 0.192155 0.51796 Vertex 6496 0.541145 0.490698 0.404056 Vertex 6497 0.523395 0.0444733 0.77626 Vertex 6498 0.482552 0.393585 0.622851 Vertex 6499 0.65727 0.430465 0.231321 Vertex 6500 0.369571 0.373199 0.23369 Vertex 6501 0.555176 0.0449885 0.7295 Vertex 6502 0.595225 0.450016 0.191888 Vertex 6503 0.373314 0.229379 0.203366 Vertex 6504 0.408311 0.883868 0.342348 Vertex 6505 0.388624 0.351534 0.445888 Vertex 6506 0.373148 0.262794 0.59216 Vertex 6507 0.455515 0.173155 0.62978 Vertex 6508 0.563911 0.40209 0.441238 Vertex 6509 0.505615 0.0851916 0.63745 Vertex 6510 0.500391 0.0854403 0.639867 Vertex 6511 0.405759 0.337515 0.208318 Vertex 6512 0.362825 0.227134 0.208306 Vertex 6513 0.454342 0.24306 0.74792 Vertex 6514 0.498804 0.169672 0.713124 Vertex 6515 0.463102 0.234834 0.613268 Vertex 6516 0.469842 0.823386 0.427356 Vertex 6517 0.412534 0.291348 0.638155 Vertex 6518 0.378402 0.406425 0.563494 Vertex 6519 0.380883 0.410097 0.571863 Vertex 6520 0.447762 0.239661 0.671209 Vertex 6521 0.421329 0.405388 0.377872 Vertex 6522 0.51133 0.0352754 0.756093 Vertex 6523 0.509263 0.0305195 0.74789 Vertex 6524 0.487669 0.310798 0.623769 Vertex 6525 0.453874 0.112412 0.756188 Vertex 6526 0.375618 0.339528 0.406383 Vertex 6527 0.490245 0.0592148 0.728985 Vertex 6528 0.490198 0.063947 0.73184 Vertex 6529 0.374066 0.354981 0.295902 Vertex 6530 0.37733 0.236326 0.203497 Vertex 6531 0.407529 0.888091 0.381384 Vertex 6532 0.378645 0.26235 0.465409 Vertex 6533 0.518188 0.185178 0.462264 Vertex 6534 0.373658 0.381455 0.538376 Vertex 6535 0.375594 0.387158 0.559324 Vertex 6536 0.372574 0.381283 0.551056 Vertex 6537 0.496482 0.190532 0.752841 Vertex 6538 0.478785 0.610757 0.426769 Vertex 6539 0.377508 0.297862 0.24014 Vertex 6540 0.405474 0.181488 0.55519 Vertex 6541 0.360912 0.351587 0.428795 Vertex 6542 0.445209 0.47177 0.408758 Vertex 6543 0.510809 0.0934359 0.723619 Vertex 6544 0.517111 0.102847 0.719029 Vertex 6545 0.498531 0.655313 0.546632 Vertex 6546 0.486331 0.619522 0.543232 Vertex 6547 0.504993 0.0281504 0.631871 Vertex 6548 0.536738 0.670582 0.469555 Vertex 6549 0.536495 0.672293 0.46564 Vertex 6550 0.50401 0.544583 0.393312 Vertex 6551 0.506841 0.54216 0.394603 Vertex 6552 0.387144 0.259762 0.203005 Vertex 6553 0.394132 0.258607 0.20429 Vertex 6554 0.414092 0.470342 0.59627 Vertex 6555 0.521286 0.0949877 0.717033 Vertex 6556 0.456042 0.552744 0.433906 Vertex 6557 0.494006 0.183069 0.785102 Vertex 6558 0.591416 0.494696 0.277879 Vertex 6559 0.556881 0.482152 0.364433 Vertex 6560 0.327064 0.244422 0.231464 Vertex 6561 0.521126 0.116558 0.713699 Vertex 6562 0.553713 0.553668 0.484681 Vertex 6563 0.51948 0.36236 0.455737 Vertex 6564 0.619555 0.537132 0.260875 Vertex 6565 0.363779 0.314606 0.576186 Vertex 6566 0.362144 0.306675 0.570974 Vertex 6567 0.379586 0.432597 0.403375 Vertex 6568 0.519432 0.176714 0.451792 Vertex 6569 0.577072 0.406982 0.399715 Vertex 6570 0.581614 0.409884 0.397648 Vertex 6571 0.659799 0.451875 0.206269 Vertex 6572 0.470991 0.725722 0.418401 Vertex 6573 0.541091 0.0558744 0.802319 Vertex 6574 0.54362 0.0591615 0.797481 Vertex 6575 0.545143 0.0536416 0.797942 Vertex 6576 0.477002 0.100679 0.779037 Vertex 6577 0.498993 0.712715 0.521893 Vertex 6578 0.516554 0.102225 0.689842 Vertex 6579 0.515737 0.1072 0.694 Vertex 6580 0.45497 0.240762 0.623733 Vertex 6581 0.490684 0.601979 0.400941 Vertex 6582 0.606525 0.507886 0.219411 Vertex 6583 0.376892 0.434386 0.573959 Vertex 6584 0.461597 0.418312 0.378813 Vertex 6585 0.511194 0.130038 0.702327 Vertex 6586 0.618986 0.488703 0.369071 Vertex 6587 0.449 0.778735 0.459628 Vertex 6588 0.465874 0.187245 0.667093 Vertex 6589 0.51457 0.0843209 0.681953 Vertex 6590 0.408785 0.176104 0.594221 Vertex 6591 0.471767 0.115486 0.795384 Vertex 6592 0.392492 0.252566 0.693864 Vertex 6593 0.520439 0.0922158 0.67221 Vertex 6594 0.423414 0.265868 0.656663 Vertex 6595 0.403538 0.291194 0.631474 Vertex 6596 0.540955 0.0302174 0.77928 Vertex 6597 0.485614 0.172349 0.705294 Vertex 6598 0.515209 0.0296488 0.724573 Vertex 6599 0.514706 0.0272028 0.725757 Vertex 6600 0.646118 0.447422 0.217883 Vertex 6601 0.484441 0.528005 0.391583 Vertex 6602 0.44107 0.160013 0.51372 Vertex 6603 0.37714 0.176146 0.487862 Vertex 6604 0.628676 0.445491 0.199765 Vertex 6605 0.495185 0.239743 0.513738 Vertex 6606 0.35692 0.243374 0.51308 Vertex 6607 0.396934 0.421309 0.303436 Vertex 6608 0.472637 0.755832 0.486748 Vertex 6609 0.471921 0.767014 0.488679 Vertex 6610 0.384603 0.88776 0.315867 Vertex 6611 0.628024 0.489929 0.245056 Vertex 6612 0.440892 0.248894 0.650474 Vertex 6613 0.433631 0.255332 0.656687 Vertex 6614 0.310421 0.946542 0.240567 Vertex 6615 0.489428 0.0686851 0.694468 Vertex 6616 0.437007 0.537245 0.466102 Vertex 6617 0.434566 0.548166 0.557939 Vertex 6618 0.440708 0.549309 0.561154 Vertex 6619 0.483511 0.170881 0.69875 Vertex 6620 0.599874 0.532767 0.266466 Vertex 6621 0.379113 0.354471 0.450786 Vertex 6622 0.418024 0.413467 0.33723 Vertex 6623 0.472939 0.221123 0.483159 Vertex 6624 0.470197 0.161807 0.660898 Vertex 6625 0.405462 0.244748 0.206594 Vertex 6626 0.406831 0.346908 0.239998 Vertex 6627 0.54734 0.603744 0.485048 Vertex 6628 0.404136 0.248337 0.215982 Vertex 6629 0.406564 0.243321 0.212558 Vertex 6630 0.520712 0.344888 0.559271 Vertex 6631 0.496482 0.725348 0.515651 Vertex 6632 0.493325 0.546377 0.379897 Vertex 6633 0.420121 0.227649 0.464722 Vertex 6634 0.411521 0.221164 0.47142 Vertex 6635 0.414092 0.226346 0.467938 Vertex 6636 0.545729 0.00345291 0.729725 Vertex 6637 0.489351 0.385624 0.619416 Vertex 6638 0.468527 0.185273 0.683594 Vertex 6639 0.356417 0.253656 0.550808 Vertex 6640 0.355529 0.25288 0.542528 Vertex 6641 0.464369 0.402202 0.623674 Vertex 6642 0.498857 0.264228 0.58414 Vertex 6643 0.623884 0.518902 0.210811 Vertex 6644 0.530999 0.0928969 0.776887 Vertex 6645 0.470943 0.121509 0.64435 Vertex 6646 0.364377 0.351226 0.54787 Vertex 6647 0.424285 0.469057 0.407929 Vertex 6648 0.523329 0.0764616 0.679152 Vertex 6649 0.521399 0.0842972 0.679288 Vertex 6650 0.419855 0.139597 0.684476 Vertex 6651 0.485312 0.309151 0.436222 Vertex 6652 0.530371 0.0963499 0.794833 Vertex 6653 0.458085 0.699751 0.474405 Vertex 6654 0.462533 0.697595 0.484722 Vertex 6655 0.478388 0.540342 0.404245 Vertex 6656 0.454336 0.67086 0.460143 Vertex 6657 0.453738 0.668248 0.461891 Vertex 6658 0.457908 0.204652 0.614547 Vertex 6659 0.602071 0.527703 0.252596 Vertex 6660 0.38831 0.24672 0.63597 Vertex 6661 0.382879 0.239157 0.621536 Vertex 6662 0.644667 0.476946 0.224273 Vertex 6663 0.429929 0.409037 0.394165 Vertex 6664 0.543745 0.398992 0.490918 Vertex 6665 0.435875 0.430607 0.397351 Vertex 6666 0.436254 0.419775 0.401172 Vertex 6667 0.400742 0.167588 0.521982 Vertex 6668 0.385491 0.353737 0.360311 Vertex 6669 0.410556 0.185314 0.745823 Vertex 6670 0.526279 0.0525814 0.782846 Vertex 6671 0.494877 0.100833 0.810155 Vertex 6672 0.459068 0.713598 0.472303 Vertex 6673 0.418178 0.260633 0.209259 Vertex 6674 0.351164 0.893694 0.31672 Vertex 6675 0.497406 0.562594 0.385133 Vertex 6676 0.456409 0.176359 0.62564 Vertex 6677 0.600792 0.518061 0.347868 Vertex 6678 0.393131 0.300747 0.621406 Vertex 6679 0.484577 0.731703 0.400561 Vertex 6680 0.481989 0.0788839 0.708883 Vertex 6681 0.546771 0.58369 0.462933 Vertex 6682 0.548027 0.588458 0.465592 Vertex 6683 0.656672 0.411974 0.229633 Vertex 6684 0.386605 0.337592 0.270843 Vertex 6685 0.452542 0.232305 0.675343 Vertex 6686 0.450658 0.236042 0.679495 Vertex 6687 0.451168 0.784924 0.393555 Vertex 6688 0.409934 0.52813 0.526258 Vertex 6689 0.471411 0.208093 0.700148 Vertex 6690 0.461929 0.472551 0.400301 Vertex 6691 0.525071 0.328234 0.519643 Vertex 6692 0.445855 0.451147 0.627139 Vertex 6693 0.52693 0.355383 0.508733 Vertex 6694 0.499609 0.543689 0.387449 Vertex 6695 0.461266 0.482105 0.61614 Vertex 6696 0.457499 0.474239 0.619866 Vertex 6697 0.379036 0.871443 0.329371 Vertex 6698 0.460377 0.19479 0.627524 Vertex 6699 0.455876 0.729471 0.45784 Vertex 6700 0.525923 0.397843 0.526163 Vertex 6701 0.557112 0.405477 0.395415 Vertex 6702 0.605885 0.541586 0.279561 Vertex 6703 0.572251 0.514419 0.499192 Vertex 6704 0.375695 0.348969 0.602909 Vertex 6705 0.4266 0.288055 0.430933 Vertex 6706 0.437824 0.29836 0.424756 Vertex 6707 0.365259 0.351694 0.535012 Vertex 6708 0.481 0.701184 0.411672 Vertex 6709 0.478536 0.69381 0.420633 Vertex 6710 0.385331 0.209822 0.592598 Vertex 6711 0.444469 0.569873 0.470088 Vertex 6712 0.447502 0.284003 0.430548 Vertex 6713 0.441893 0.28841 0.428878 Vertex 6714 0.563858 0.516823 0.522071 Vertex 6715 0.406629 0.222431 0.469365 Vertex 6716 0.547837 0.402415 0.410867 Vertex 6717 0.487705 0.776289 0.48294 Vertex 6718 0.39001 0.262824 0.455056 Vertex 6719 0.397029 0.256297 0.453818 Vertex 6720 0.555229 0.149731 0.427587 Vertex 6721 0.349085 0.94072 0.303122 Vertex 6722 0.526427 0.168446 0.442358 Vertex 6723 0.490565 0.212937 0.502668 Vertex 6724 0.436053 0.246626 0.766108 Vertex 6725 0.301466 0.980106 0.225742 Vertex 6726 0.534808 0.679691 0.46285 Vertex 6727 0.693262 0.456708 0.204042 Vertex 6728 0.690864 0.459391 0.200565 Vertex 6729 0.370075 0.349437 0.511748 Vertex 6730 0.399469 0.849943 0.360299 Vertex 6731 0.493094 0.264536 0.596643 Vertex 6732 0.403893 0.220998 0.745793 Vertex 6733 0.369447 0.356005 0.445994 Vertex 6734 0.359177 0.258962 0.216307 Vertex 6735 0.39582 0.203467 0.475276 Vertex 6736 0.450931 0.561545 0.445266 Vertex 6737 0.528606 0.629526 0.530517 Vertex 6738 0.439921 0.162802 0.575535 Vertex 6739 0.438783 0.159551 0.575807 Vertex 6740 0.458695 0.566212 0.439284 Vertex 6741 0.449503 0.506352 0.423885 Vertex 6742 0.420423 0.406993 0.337912 Vertex 6743 0.496737 0.0608494 0.6396 Vertex 6744 0.509429 0.0996369 0.698412 Vertex 6745 0.53463 0.0581546 0.710595 Vertex 6746 0.476345 0.459468 0.379465 Vertex 6747 0.374623 0.334062 0.264346 Vertex 6748 0.442035 0.14501 0.762395 Vertex 6749 0.519657 0.295197 0.491895 Vertex 6750 0.489623 0.0458592 0.679821 Vertex 6751 0.401163 0.419289 0.605758 Vertex 6752 0.52401 0.175044 0.460179 Vertex 6753 0.498804 0.531239 0.385885 Vertex 6754 0.373676 0.475513 0.485279 Vertex 6755 0.508215 0.193624 0.463987 Vertex 6756 0.612075 0.492138 0.226098 Vertex 6757 0.407435 0.36361 0.300214 Vertex 6758 0.461781 0.230901 0.774678 Vertex 6759 0.464097 0.160925 0.513465 Vertex 6760 0.689034 0.468719 0.206594 Vertex 6761 0.363643 0.239524 0.566822 Vertex 6762 0.557017 0.549913 0.487796 Vertex 6763 0.467698 0.515953 0.411874 Vertex 6764 0.502298 0.0630231 0.68835 Vertex 6765 0.496654 0.0605237 0.687728 Vertex 6766 0.53399 0.119738 0.431815 Vertex 6767 0.523489 0.553034 0.574095 Vertex 6768 0.520415 0.554752 0.574143 Vertex 6769 0.35801 0.287131 0.19713 Vertex 6770 0.36411 0.275552 0.197456 Vertex 6771 0.591801 0.471781 0.296376 Vertex 6772 0.370661 0.901311 0.357782 Vertex 6773 0.527529 0.0765208 0.709529 Vertex 6774 0.486005 0.17723 0.534485 Vertex 6775 0.341314 0.933512 0.312699 Vertex 6776 0.452601 0.188696 0.607043 Vertex 6777 0.577705 0.498392 0.40023 Vertex 6778 0.402928 0.331183 0.225144 Vertex 6779 0.397354 0.307457 0.209183 Vertex 6780 0.398296 0.301991 0.206049 Vertex 6781 0.451156 0.557506 0.560385 Vertex 6782 0.568892 0.487595 0.515834 Vertex 6783 0.565315 0.482253 0.526163 Vertex 6784 0.439648 0.154504 0.592509 Vertex 6785 0.43966 0.155387 0.580077 Vertex 6786 0.603765 0.469122 0.211842 Vertex 6787 0.466792 0.195637 0.683647 Vertex 6788 0.524283 0.369254 0.505464 Vertex 6789 0.416597 0.155879 0.704364 Vertex 6790 0.573749 0.405531 0.405945 Vertex 6791 0.433992 0.137056 0.639488 Vertex 6792 0.38975 0.317135 0.249747 Vertex 6793 0.386522 0.317407 0.251589 Vertex 6794 0.387837 0.314795 0.249415 Vertex 6795 0.554447 0.510362 0.422594 Vertex 6796 0.63233 0.453753 0.188394 Vertex 6797 0.413665 0.364806 0.339611 Vertex 6798 0.327224 0.935111 0.239181 Vertex 6799 0.576017 0.487299 0.317318 Vertex 6800 0.423456 0.120911 0.687325 Vertex 6801 0.364294 0.332652 0.252347 Vertex 6802 0.439293 0.474376 0.601896 Vertex 6803 0.522713 0.0777409 0.671659 Vertex 6804 0.529424 0.0872882 0.716636 Vertex 6805 0.447638 0.198001 0.472611 Vertex 6806 0.508854 0.428078 0.42225 Vertex 6807 0.492247 0.185474 0.536504 Vertex 6808 0.508055 0.625066 0.415872 Vertex 6809 0.355659 0.888571 0.321156 Vertex 6810 0.599116 0.432994 0.361211 Vertex 6811 0.631501 0.450768 0.199718 Vertex 6812 0.468201 0.191527 0.799222 Vertex 6813 0.570811 0.407479 0.371831 Vertex 6814 0.519397 0.150436 0.735595 Vertex 6815 0.514173 0.155648 0.729879 Vertex 6816 0.511626 0.636129 0.421326 Vertex 6817 0.654487 0.419005 0.206328 Vertex 6818 0.500231 0.57929 0.396232 Vertex 6819 0.48867 0.689487 0.515923 Vertex 6820 0.35637 0.246016 0.547532 Vertex 6821 0.577569 0.511369 0.439171 Vertex 6822 0.416028 0.150643 0.635881 Vertex 6823 0.448135 0.824387 0.377901 Vertex 6824 0.416354 0.267029 0.65658 Vertex 6825 0.536969 0.48368 0.582121 Vertex 6826 0.553239 0.0197462 0.775383 Vertex 6827 0.439701 0.24861 0.656687 Vertex 6828 0.530993 0.133029 0.445266 Vertex 6829 0.54824 0.0410204 0.718839 Vertex 6830 0.551041 0.0336763 0.724039 Vertex 6831 0.519794 0.519666 0.408202 Vertex 6832 0.534452 0.139858 0.458213 Vertex 6833 0.355078 0.261734 0.528953 Vertex 6834 0.437155 0.135001 0.660732 Vertex 6835 0.52003 0.0190117 0.644196 Vertex 6836 0.527339 0.641957 0.43679 Vertex 6837 0.517478 0.425306 0.426141 Vertex 6838 0.375535 0.226933 0.231576 Vertex 6839 0.582988 0.505363 0.31948 Vertex 6840 0.358182 0.0871283 0.445781 Vertex 6841 0.333994 0.28241 0.220364 Vertex 6842 0.353687 0.915833 0.332611 Vertex 6843 0.524401 0.541426 0.410897 Vertex 6844 0.509453 0.39362 0.44725 Vertex 6845 0.455556 0.514051 0.423583 Vertex 6846 0.421999 0.166966 0.747932 Vertex 6847 0.372734 0.372914 0.535154 Vertex 6848 0.401933 0.293397 0.210509 Vertex 6849 0.402359 0.298052 0.22762 Vertex 6850 0.404473 0.291697 0.222615 Vertex 6851 0.369891 0.384896 0.505339 Vertex 6852 0.504815 0.732734 0.422617 Vertex 6853 0.501469 0.590691 0.402723 Vertex 6854 0.500711 0.248722 0.551056 Vertex 6855 0.479294 0.598189 0.42639 Vertex 6856 0.416402 0.264577 0.712662 Vertex 6857 0.422774 0.140142 0.650148 Vertex 6858 0.421957 0.141895 0.642099 Vertex 6859 0.554986 0.44587 0.346535 Vertex 6860 0.505484 0.302867 0.457105 Vertex 6861 0.497353 0.037295 0.677943 Vertex 6862 0.379527 0.421794 0.374638 Vertex 6863 0.367771 0.407207 0.380957 Vertex 6864 0.401121 0.168594 0.619771 Vertex 6865 0.480556 0.0462145 0.671097 Vertex 6866 0.417083 0.253845 0.199878 Vertex 6867 0.407914 0.262386 0.711549 Vertex 6868 0.598997 0.520241 0.271282 Vertex 6869 0.537283 0.114017 0.796444 Vertex 6870 0.320745 0.929165 0.267308 Vertex 6871 0.506651 0.141599 0.699301 Vertex 6872 0.498981 0.0998561 0.64008 Vertex 6873 0.433814 0.286544 0.429162 Vertex 6874 0.438582 0.506879 0.587078 Vertex 6875 0.505088 0.636905 0.554705 Vertex 6876 0.524893 0.350207 0.513945 Vertex 6877 0.406985 0.175666 0.544849 Vertex 6878 0.362357 0.344077 0.540715 Vertex 6879 0.405569 0.286189 0.213068 Vertex 6880 0.562431 0.542616 0.479404 Vertex 6881 0.549727 0.536167 0.444383 Vertex 6882 0.494533 0.632363 0.545436 Vertex 6883 0.480935 0.0771131 0.724721 Vertex 6884 0.483582 0.0782028 0.726942 Vertex 6885 0.453691 0.181855 0.615282 Vertex 6886 0.495961 0.181328 0.732385 Vertex 6887 0.446732 0.0942532 0.661857 Vertex 6888 0.593312 0.5099 0.257352 Vertex 6889 0.413813 0.164135 0.621589 Vertex 6890 0.464203 0.167765 0.663018 Vertex 6891 0.501279 0.196709 0.500524 Vertex 6892 0.35326 0.0856535 0.440314 Vertex 6893 0.456587 0.648839 0.489011 Vertex 6894 0.595876 0.522426 0.312112 Vertex 6895 0.490316 0.0636805 0.731289 Vertex 6896 0.434815 0.163098 0.57159 Vertex 6897 0.489896 0.568196 0.389528 Vertex 6898 0.640722 0.433397 0.195116 Vertex 6899 0.47397 0.345943 0.418703 Vertex 6900 0.695999 0.444662 0.20798 Vertex 6901 0.357311 0.263245 0.550079 Vertex 6902 0.366592 0.417275 0.356153 Vertex 6903 0.419351 0.290844 0.640104 Vertex 6904 0.51688 0.143246 0.708149 Vertex 6905 0.595787 0.514271 0.255859 Vertex 6906 0.369216 0.191811 0.467541 Vertex 6907 0.563941 0.416168 0.490918 Vertex 6908 0.503524 0.0209129 0.648466 Vertex 6909 0.505484 0.0209721 0.650569 Vertex 6910 0.534766 0.638196 0.517623 Vertex 6911 0.487106 0.279064 0.44767 Vertex 6912 0.572606 0.404174 0.401799 Vertex 6913 0.375097 0.314701 0.199013 Vertex 6914 0.605915 0.497746 0.2005 Vertex 6915 0.652147 0.432532 0.193944 Vertex 6916 0.536649 0.610757 0.445319 Vertex 6917 0.645846 0.433041 0.203473 Vertex 6918 0.394683 0.315293 0.243919 Vertex 6919 0.474254 0.466641 0.385447 Vertex 6920 0.383762 0.224439 0.660845 Vertex 6921 0.527321 0.708528 0.468417 Vertex 6922 0.607354 0.467221 0.184977 Vertex 6923 0.478116 0.530576 0.402883 Vertex 6924 0.524709 0.0174896 0.725194 Vertex 6925 0.386593 0.169886 0.509568 Vertex 6926 0.633817 0.445177 0.19697 Vertex 6927 0.553109 0.556541 0.483117 Vertex 6928 0.465672 0.0906641 0.754221 Vertex 6929 0.366083 0.383706 0.289849 Vertex 6930 0.354605 0.271951 0.202816 Vertex 6931 0.583356 0.453374 0.472936 Vertex 6932 0.36215 0.245956 0.215597 Vertex 6933 0.500344 0.77963 0.451792 Vertex 6934 0.499331 0.773523 0.438372 Vertex 6935 0.432576 0.257713 0.745734 Vertex 6936 0.516856 0.523871 0.402942 Vertex 6937 0.449888 0.162885 0.796971 Vertex 6938 0.449112 0.242776 0.704364 Vertex 6939 0.457055 0.230522 0.708522 Vertex 6940 0.452246 0.238055 0.704364 Vertex 6941 0.45019 0.24396 0.712668 Vertex 6942 0.356518 0.318094 0.528817 Vertex 6943 0.39312 0.218309 0.472338 Vertex 6944 0.511129 0.374022 0.582097 Vertex 6945 0.450617 0.424619 0.62978 Vertex 6946 0.49631 0.403884 0.604787 Vertex 6947 0.402655 0.353026 0.229497 Vertex 6948 0.402543 0.34846 0.222426 Vertex 6949 0.3704 0.391381 0.279496 Vertex 6950 0.492638 0.701628 0.523587 Vertex 6951 0.517845 0.087152 0.720581 Vertex 6952 0.481504 0.417411 0.376338 Vertex 6953 0.662767 0.43348 0.215354 Vertex 6954 0.393919 0.360347 0.374774 Vertex 6955 0.531609 0.0387342 0.779227 Vertex 6956 0.489718 0.208501 0.546768 Vertex 6957 0.588479 0.424708 0.195637 Vertex 6958 0.353811 0.285537 0.539164 Vertex 6959 0.361096 0.300249 0.567995 Vertex 6960 0.321147 0.929408 0.279319 Vertex 6961 0.529613 0.487038 0.411276 Vertex 6962 0.464665 0.137542 0.805026 Vertex 6963 0.38773 0.311639 0.619226 Vertex 6964 0.400967 0.311662 0.628004 Vertex 6965 0.459128 0.128012 0.803741 Vertex 6966 0.441265 0.250161 0.70023 Vertex 6967 0.356654 0.366719 0.391417 Vertex 6968 0.519219 0.147569 0.446379 Vertex 6969 0.456149 0.328643 0.417808 Vertex 6970 0.495132 0.248977 0.582198 Vertex 6971 0.627041 0.456365 0.205807 Vertex 6972 0.396016 0.173818 0.663842 Vertex 6973 0.514813 0.325024 0.473991 Vertex 6974 0.365064 0.393419 0.293995 Vertex 6975 0.364549 0.273011 0.484871 Vertex 6976 0.489138 0.366133 0.4313 Vertex 6977 0.532243 0.466676 0.404423 Vertex 6978 0.507688 0.048092 0.726557 Vertex 6979 0.438558 0.242053 0.45155 Vertex 6980 0.464535 0.21016 0.648383 Vertex 6981 0.41116 0.453504 0.600214 Vertex 6982 0.35143 0.16465 0.455222 Vertex 6983 0.465862 0.601997 0.538583 Vertex 6984 0.456865 0.597526 0.526477 Vertex 6985 0.395986 0.208774 0.725123 Vertex 6986 0.461858 0.803978 0.387437 Vertex 6987 0.513669 0.367466 0.575884 Vertex 6988 0.533895 0.0255148 0.730697 Vertex 6989 0.525207 0.330289 0.509296 Vertex 6990 0.484672 0.409037 0.383978 Vertex 6991 0.4844 0.403274 0.389231 Vertex 6992 0.478293 0.569014 0.569417 Vertex 6993 0.475427 0.56459 0.571087 Vertex 6994 0.40795 0.332788 0.205043 Vertex 6995 0.3772 0.420462 0.573882 Vertex 6996 0.424178 0.154504 0.611118 Vertex 6997 0.437492 0.563944 0.534473 Vertex 6998 0.403093 0.165728 0.646565 Vertex 6999 0.392581 0.288096 0.193381 Vertex 7000 0.492751 0.174855 0.708581 Vertex 7001 0.632235 0.450495 0.197491 Vertex 7002 0.504448 0.264032 0.495093 Vertex 7003 0.368321 0.189105 0.536771 Vertex 7004 0.567252 0.538352 0.475892 Vertex 7005 0.518698 0.133846 0.704341 Vertex 7006 0.553713 0.483017 0.383557 Vertex 7007 0.455509 0.137311 0.651753 Vertex 7008 0.358549 0.365671 0.455465 Vertex 7009 0.370578 0.212404 0.571981 Vertex 7010 0.527321 0.0644445 0.721753 Vertex 7011 0.361966 0.396386 0.308494 Vertex 7012 0.546505 0.601997 0.472166 Vertex 7013 0.647291 0.46131 0.192451 Vertex 7014 0.401601 0.175779 0.596673 Vertex 7015 0.509222 0.461754 0.604911 Vertex 7016 0.358993 0.116694 0.47729 Vertex 7017 0.499473 0.477153 0.394088 Vertex 7018 0.35936 0.391903 0.39349 Vertex 7019 0.425463 0.469424 0.598722 Vertex 7020 0.528606 0.155648 0.440385 Vertex 7021 0.509974 0.697322 0.511718 Vertex 7022 0.457807 0.499203 0.412815 Vertex 7023 0.400736 0.381775 0.240715 Vertex 7024 0.566138 0.405146 0.457751 Vertex 7025 0.356133 0.111447 0.458159 Vertex 7026 0.504857 0.107881 0.796799 Vertex 7027 0.486591 0.477136 0.605563 Vertex 7028 0.395542 0.325101 0.447475 Vertex 7029 0.331719 0.93738 0.297229 Vertex 7030 0.331743 0.933352 0.298467 Vertex 7031 0.38359 0.234928 0.629822 Vertex 7032 0.382607 0.224226 0.625652 Vertex 7033 0.611162 0.48952 0.184947 Vertex 7034 0.551646 0.414563 0.519921 Vertex 7035 0.381636 0.348756 0.378985 Vertex 7036 0.498762 0.189744 0.525376 Vertex 7037 0.500752 0.194666 0.513039 Vertex 7038 0.368949 0.156181 0.472202 Vertex 7039 0.36892 0.362414 0.561403 Vertex 7040 0.554092 0.00614181 0.731413 Vertex 7041 0.374286 0.326125 0.258039 Vertex 7042 0.485892 0.672133 0.408243 Vertex 7043 0.354658 0.287918 0.228656 Vertex 7044 0.354865 0.107396 0.465178 Vertex 7045 0.452743 0.306675 0.422677 Vertex 7046 0.462054 0.119306 0.785286 Vertex 7047 0.506675 0.121142 0.658713 Vertex 7048 0.448852 0.420213 0.633867 Vertex 7049 0.606401 0.50775 0.211356 Vertex 7050 0.453329 0.748921 0.455737 Vertex 7051 0.403236 0.389954 0.259342 Vertex 7052 0.417521 0.143026 0.68113 Vertex 7053 0.638549 0.473173 0.184449 Vertex 7054 0.426352 0.545501 0.552004 Vertex 7055 0.584043 0.513489 0.343787 Vertex 7056 0.409993 0.379133 0.280272 Vertex 7057 0.403994 0.190017 0.733374 Vertex 7058 0.402608 0.195199 0.735488 Vertex 7059 0.677526 0.447439 0.198741 Vertex 7060 0.51916 0.700527 0.435025 Vertex 7061 0.620467 0.532447 0.24386 Vertex 7062 0.534399 0.17091 0.444573 Vertex 7063 0.373208 0.45033 0.435108 Vertex 7064 0.49865 0.678636 0.537683 Vertex 7065 0.478684 0.500518 0.399999 Vertex 7066 0.357939 0.402403 0.427379 Vertex 7067 0.354764 0.307078 0.525512 Vertex 7068 0.550959 0.539223 0.546863 Vertex 7069 0.479206 0.57525 0.414243 Vertex 7070 0.36751 0.187186 0.524096 Vertex 7071 0.449101 0.442127 0.631302 Vertex 7072 0.663957 0.469318 0.191794 Vertex 7073 0.456261 0.241917 0.454783 Vertex 7074 0.397858 0.179042 0.485143 Vertex 7075 0.55148 0.444466 0.357279 Vertex 7076 0.477435 0.669302 0.423642 Vertex 7077 0.521772 0.581706 0.554841 Vertex 7078 0.391159 0.270618 0.227276 Vertex 7079 0.325453 0.940536 0.285697 Vertex 7080 0.659148 0.439775 0.202431 Vertex 7081 0.547322 0.148712 0.422446 Vertex 7082 0.623179 0.490811 0.241467 Vertex 7083 0.622481 0.490527 0.252187 Vertex 7084 0.484933 0.424317 0.613025 Vertex 7085 0.588763 0.421771 0.405957 Vertex 7086 0.363459 0.308494 0.487725 Vertex 7087 0.389483 0.190384 0.667063 Vertex 7088 0.516122 0.383623 0.55108 Vertex 7089 0.517963 0.379927 0.532347 Vertex 7090 0.378426 0.0796776 0.477017 Vertex 7091 0.361777 0.0942236 0.481512 Vertex 7092 0.502641 0.149352 0.700929 Vertex 7093 0.426879 0.82797 0.359796 Vertex 7094 0.64767 0.499375 0.233773 Vertex 7095 0.476961 0.552276 0.410067 Vertex 7096 0.39036 0.26787 0.615205 Vertex 7097 0.566174 0.540271 0.501857 Vertex 7098 0.49467 0.206026 0.479676 Vertex 7099 0.34607 0.0842439 0.445817 Vertex 7100 0.549845 0.56395 0.489099 Vertex 7101 0.498342 0.10893 0.803924 Vertex 7102 0.325116 0.244014 0.232873 Vertex 7103 0.32078 0.236616 0.224682 Vertex 7104 0.326513 0.930539 0.250552 Vertex 7105 0.498981 0.169359 0.786743 Vertex 7106 0.496056 0.172444 0.788804 Vertex 7107 0.399854 0.328737 0.229118 Vertex 7108 0.539244 0.150874 0.436151 Vertex 7109 0.324535 0.957309 0.27551 Vertex 7110 0.317392 0.962758 0.26267 Vertex 7111 0.386261 0.25227 0.210758 Vertex 7112 0.38914 0.256605 0.219281 Vertex 7113 0.390839 0.257713 0.220282 Vertex 7114 0.529678 0.109611 0.728683 Vertex 7115 0.537094 0.43515 0.567604 Vertex 7116 0.49018 0.119661 0.643272 Vertex 7117 0.353675 0.897716 0.333345 Vertex 7118 0.418557 0.540253 0.532394 Vertex 7119 0.481474 0.132798 0.801899 Vertex 7120 0.571652 0.480855 0.319468 Vertex 7121 0.358342 0.228834 0.506204 Vertex 7122 0.662388 0.405625 0.2178 Vertex 7123 0.393996 0.184752 0.691956 Vertex 7124 0.45879 0.103854 0.661147 Vertex 7125 0.479638 0.067163 0.704317 Vertex 7126 0.474657 0.226619 0.481743 Vertex 7127 0.474787 0.221206 0.484953 Vertex 7128 0.503595 0.274237 0.469898 Vertex 7129 0.478927 0.272342 0.612303 Vertex 7130 0.373747 0.351125 0.439148 Vertex 7131 0.530212 0.13772 0.790622 Vertex 7132 0.413097 0.299367 0.434179 Vertex 7133 0.370442 0.348833 0.430891 Vertex 7134 0.481634 0.516782 0.596744 Vertex 7135 0.417977 0.859384 0.425206 Vertex 7136 0.430296 0.31768 0.646346 Vertex 7137 0.42676 0.148096 0.62352 Vertex 7138 0.459519 0.198303 0.609075 Vertex 7139 0.49252 0.230439 0.522118 Vertex 7140 0.62617 0.503337 0.185841 Vertex 7141 0.554222 0.0530434 0.747671 Vertex 7142 0.407435 0.518961 0.499221 Vertex 7143 0.470979 0.588594 0.553562 Vertex 7144 0.554625 0.037372 0.770473 Vertex 7145 0.368789 0.425626 0.555398 Vertex 7146 0.454763 0.73598 0.441185 Vertex 7147 0.444931 0.55596 0.558697 Vertex 7148 0.48976 0.412733 0.385571 Vertex 7149 0.435236 0.477011 0.42074 Vertex 7150 0.402104 0.425602 0.368609 Vertex 7151 0.65624 0.4226 0.231647 Vertex 7152 0.374913 0.421421 0.315269 Vertex 7153 0.605607 0.508153 0.203171 Vertex 7154 0.520498 0.624847 0.428795 Vertex 7155 0.518769 0.628643 0.427545 Vertex 7156 0.377543 0.260893 0.232328 Vertex 7157 0.472377 0.215123 0.723027 Vertex 7158 0.486946 0.594002 0.559543 Vertex 7159 0.482641 0.587451 0.560858 Vertex 7160 0.480716 0.592539 0.556452 Vertex 7161 0.412913 0.533502 0.549736 Vertex 7162 0.504489 0.0851146 0.783088 Vertex 7163 0.52436 0.634246 0.431798 Vertex 7164 0.58868 0.516047 0.362218 Vertex 7165 0.349795 0.124666 0.473345 Vertex 7166 0.416532 0.403671 0.306219 Vertex 7167 0.417284 0.40479 0.310496 Vertex 7168 0.418575 0.401633 0.309797 Vertex 7169 0.34809 0.121438 0.456939 Vertex 7170 0.487515 0.322726 0.435339 Vertex 7171 0.521055 0.157999 0.760174 Vertex 7172 0.596747 0.518144 0.323999 Vertex 7173 0.440477 0.125768 0.735506 Vertex 7174 0.395927 0.341329 0.444229 Vertex 7175 0.578677 0.447653 0.480553 Vertex 7176 0.59988 0.433835 0.206032 Vertex 7177 0.489854 0.226808 0.567551 Vertex 7178 0.457677 0.17874 0.6525 Vertex 7179 0.45423 0.078801 0.691992 Vertex 7180 0.447022 0.799222 0.3785 Vertex 7181 0.321947 0.986396 0.21889 Vertex 7182 0.397994 0.174606 0.5428 Vertex 7183 0.659201 0.45813 0.195341 Vertex 7184 0.493621 0.0863347 0.719846 Vertex 7185 0.365348 0.217042 0.214726 Vertex 7186 0.406019 0.258252 0.223 Vertex 7187 0.408299 0.367774 0.25888 Vertex 7188 0.438872 0.485445 0.423719 Vertex 7189 0.494439 0.392086 0.432414 Vertex 7190 0.507273 0.73117 0.497391 Vertex 7191 0.549442 0.0240164 0.719414 Vertex 7192 0.552623 0.0221685 0.72398 Vertex 7193 0.41267 0.261711 0.199469 Vertex 7194 0.3565 0.428884 0.484871 Vertex 7195 0.369802 0.380395 0.237742 Vertex 7196 0.587762 0.480357 0.461938 Vertex 7197 0.39107 0.352505 0.302168 Vertex 7198 0.352733 0.377096 0.42254 Vertex 7199 0.559665 0.551222 0.493914 Vertex 7200 0.585079 0.489881 0.296115 Vertex 7201 0.358283 0.385832 0.343745 Vertex 7202 0.473455 0.073364 0.706052 Vertex 7203 0.438712 0.146698 0.598793 Vertex 7204 0.597718 0.47941 0.398518 Vertex 7205 0.596297 0.486073 0.397553 Vertex 7206 0.439512 0.79029 0.447392 Vertex 7207 0.322889 0.950806 0.224001 Vertex 7208 0.490085 0.240383 0.584223 Vertex 7209 0.385675 0.0809509 0.466741 Vertex 7210 0.386285 0.0804594 0.47116 Vertex 7211 0.487497 0.173208 0.492985 Vertex 7212 0.427939 0.869915 0.388035 Vertex 7213 0.465986 0.763994 0.480275 Vertex 7214 0.528227 0.441055 0.406514 Vertex 7215 0.402572 0.344379 0.213269 Vertex 7216 0.382536 0.429731 0.343052 Vertex 7217 0.426393 0.113129 0.674952 Vertex 7218 0.425428 0.169927 0.51369 Vertex 7219 0.613774 0.470348 0.313907 Vertex 7220 0.590871 0.449044 0.441375 Vertex 7221 0.587028 0.457686 0.462471 Vertex 7222 0.402442 0.318965 0.201998 Vertex 7223 0.526018 0.395089 0.45335 Vertex 7224 0.527013 0.393993 0.447339 Vertex 7225 0.444209 0.54729 0.449489 Vertex 7226 0.606839 0.445514 0.366257 Vertex 7227 0.605038 0.443827 0.376948 Vertex 7228 0.441395 0.557885 0.470822 Vertex 7229 0.499959 0.179012 0.490918 Vertex 7230 0.543881 0.0175962 0.728813 Vertex 7231 0.422224 0.156121 0.714569 Vertex 7232 0.365248 0.212635 0.562149 Vertex 7233 0.372864 0.337171 0.478533 Vertex 7234 0.373676 0.333914 0.478486 Vertex 7235 0.616209 0.538186 0.294427 Vertex 7236 0.405474 0.431975 0.605266 Vertex 7237 0.500681 0.060956 0.762223 Vertex 7238 0.450889 0.753588 0.449577 Vertex 7239 0.450445 0.755453 0.449169 Vertex 7240 0.503062 0.105299 0.642123 Vertex 7241 0.614864 0.455547 0.208638 Vertex 7242 0.61763 0.453238 0.205753 Vertex 7243 0.548287 0.143992 0.41506 Vertex 7244 0.398249 0.859745 0.335655 Vertex 7245 0.534902 0.0567154 0.71955 Vertex 7246 0.533576 0.0586225 0.718176 Vertex 7247 0.360853 0.447605 0.501981 Vertex 7248 0.420269 0.83798 0.349159 Vertex 7249 0.47506 0.274332 0.440072 Vertex 7250 0.454378 0.760659 0.41612 Vertex 7251 0.663122 0.426414 0.225606 Vertex 7252 0.659829 0.427693 0.231274 Vertex 7253 0.359491 0.30006 0.500323 Vertex 7254 0.379746 0.326765 0.260372 Vertex 7255 0.608266 0.447043 0.361934 Vertex 7256 0.392498 0.353926 0.335436 Vertex 7257 0.401571 0.357367 0.331302 Vertex 7258 0.377259 0.319397 0.256054 Vertex 7259 0.364365 0.229705 0.491149 Vertex 7260 0.535897 0.487163 0.406478 Vertex 7261 0.538302 0.492955 0.407426 Vertex 7262 0.400985 0.481441 0.426793 Vertex 7263 0.435781 0.79029 0.408462 Vertex 7264 0.460016 0.112045 0.774874 Vertex 7265 0.506083 0.365718 0.450555 Vertex 7266 0.358573 0.414201 0.520466 Vertex 7267 0.527321 0.0567154 0.786612 Vertex 7268 0.526605 0.0547609 0.789171 Vertex 7269 0.366509 0.163797 0.456744 Vertex 7270 0.424474 0.379382 0.426059 Vertex 7271 0.386468 0.214021 0.700195 Vertex 7272 0.475841 0.169548 0.542664 Vertex 7273 0.396762 0.370859 0.233282 Vertex 7274 0.395844 0.366512 0.230812 Vertex 7275 0.521327 0.0742583 0.680917 Vertex 7276 0.408815 0.403973 0.296933 Vertex 7277 0.520646 0.367738 0.453664 Vertex 7278 0.458192 0.611035 0.516758 Vertex 7279 0.36427 0.12774 0.464076 Vertex 7280 0.365111 0.134433 0.460635 Vertex 7281 0.549306 0.575849 0.459137 Vertex 7282 0.360119 0.225707 0.554385 Vertex 7283 0.540221 0.402226 0.447931 Vertex 7284 0.413091 0.385074 0.375982 Vertex 7285 0.419002 0.396031 0.374674 Vertex 7286 0.356701 0.368929 0.395557 Vertex 7287 0.361315 0.0914222 0.474405 Vertex 7288 0.436805 0.82444 0.359091 Vertex 7289 0.427051 0.132129 0.705573 Vertex 7290 0.426399 0.133805 0.695303 Vertex 7291 0.373379 0.203538 0.478397 Vertex 7292 0.656826 0.446729 0.219654 Vertex 7293 0.578724 0.476768 0.497136 Vertex 7294 0.334539 0.269422 0.230486 Vertex 7295 0.489837 0.188862 0.786435 Vertex 7296 0.626555 0.525962 0.269742 Vertex 7297 0.51672 0.342383 0.476419 Vertex 7298 0.404509 0.366642 0.410446 Vertex 7299 0.504235 0.0358203 0.727161 Vertex 7300 0.513285 0.747689 0.453617 Vertex 7301 0.451985 0.131003 0.635792 Vertex 7302 0.455841 0.173001 0.638042 Vertex 7303 0.455154 0.251275 0.624776 Vertex 7304 0.427062 0.421468 0.616093 Vertex 7305 0.422721 0.427391 0.610928 Vertex 7306 0.527801 0.0330722 0.64669 Vertex 7307 0.340053 0.123209 0.468032 Vertex 7308 0.51948 0.0927015 0.66399 Vertex 7309 0.522429 0.0177325 0.725307 Vertex 7310 0.436639 0.421356 0.636301 Vertex 7311 0.524526 0.151211 0.76445 Vertex 7312 0.475125 0.0724638 0.747629 Vertex 7313 0.354682 0.89219 0.329152 Vertex 7314 0.417906 0.256919 0.227572 Vertex 7315 0.444588 0.23388 0.780287 Vertex 7316 0.522731 0.414723 0.57361 Vertex 7317 0.495161 0.169098 0.466267 Vertex 7318 0.524591 0.145881 0.755933 Vertex 7319 0.425339 0.241893 0.209455 Vertex 7320 0.510649 0.398145 0.446504 Vertex 7321 0.378508 0.424347 0.315334 Vertex 7322 0.655423 0.411951 0.224114 Vertex 7323 0.475439 0.809948 0.454215 Vertex 7324 0.465347 0.811257 0.462323 Vertex 7325 0.587164 0.430169 0.207435 Vertex 7326 0.588271 0.434522 0.206186 Vertex 7327 0.408353 0.891207 0.362574 Vertex 7328 0.530484 0.0620991 0.79581 Vertex 7329 0.373391 0.216076 0.214294 Vertex 7330 0.483594 0.804398 0.443501 Vertex 7331 0.481136 0.808426 0.438141 Vertex 7332 0.546138 0.615382 0.480689 Vertex 7333 0.584362 0.407408 0.384837 Vertex 7334 0.564119 0.401237 0.418809 Vertex 7335 0.504655 0.67516 0.415848 Vertex 7336 0.368949 0.464793 0.50987 Vertex 7337 0.539036 0.463875 0.397488 Vertex 7338 0.684337 0.457265 0.211907 Vertex 7339 0.451653 0.592716 0.45569 Vertex 7340 0.454715 0.593492 0.4494 Vertex 7341 0.52202 0.510042 0.412312 Vertex 7342 0.588034 0.486801 0.449453 Vertex 7343 0.640047 0.438277 0.210183 Vertex 7344 0.363015 0.123795 0.474678 Vertex 7345 0.509932 0.288517 0.56963 Vertex 7346 0.476357 0.556268 0.416351 Vertex 7347 0.597256 0.434327 0.190716 Vertex 7348 0.455663 0.626783 0.451336 Vertex 7349 0.472086 0.575529 0.425028 Vertex 7350 0.62482 0.495537 0.297027 Vertex 7351 0.344832 0.091511 0.446338 Vertex 7352 0.343126 0.0958287 0.447931 Vertex 7353 0.34074 0.0930332 0.450691 Vertex 7354 0.57459 0.4157 0.451508 Vertex 7355 0.506462 0.0750224 0.730738 Vertex 7356 0.408276 0.516207 0.563766 Vertex 7357 0.498277 0.506595 0.393123 Vertex 7358 0.473893 0.0799145 0.728404 Vertex 7359 0.505917 0.641531 0.551056 Vertex 7360 0.509127 0.635383 0.54896 Vertex 7361 0.330464 0.259111 0.203041 Vertex 7362 0.382968 0.458947 0.578158 Vertex 7363 0.398355 0.266034 0.637983 Vertex 7364 0.396738 0.263357 0.644143 Vertex 7365 0.420778 0.239471 0.215982 Vertex 7366 0.543342 0.573462 0.530333 Vertex 7367 0.585879 0.46439 0.470088 Vertex 7368 0.585097 0.465296 0.474541 Vertex 7369 0.519657 0.0899001 0.79786 Vertex 7370 0.443214 0.823836 0.458989 Vertex 7371 0.480556 0.211238 0.754133 Vertex 7372 0.447946 0.112856 0.662094 Vertex 7373 0.493988 0.120597 0.796024 Vertex 7374 0.371591 0.367845 0.487293 Vertex 7375 0.374961 0.362467 0.473718 Vertex 7376 0.353053 0.112276 0.455737 Vertex 7377 0.406677 0.837358 0.410121 Vertex 7378 0.408317 0.832324 0.408296 Vertex 7379 0.541784 0.650261 0.470182 Vertex 7380 0.451339 0.615898 0.457164 Vertex 7381 0.51454 0.0503545 0.671701 Vertex 7382 0.486662 0.730643 0.509515 Vertex 7383 0.483683 0.734351 0.501525 Vertex 7384 0.410822 0.822658 0.395581 Vertex 7385 0.508298 0.172746 0.772753 Vertex 7386 0.585725 0.497308 0.303542 Vertex 7387 0.425736 0.205753 0.47601 Vertex 7388 0.432251 0.211901 0.472066 Vertex 7389 0.474023 0.743051 0.39792 Vertex 7390 0.522186 0.0326161 0.660341 Vertex 7391 0.525029 0.030709 0.658369 Vertex 7392 0.522317 0.0255148 0.659471 Vertex 7393 0.434537 0.509823 0.450105 Vertex 7394 0.354137 0.385808 0.423287 Vertex 7395 0.416165 0.417459 0.37446 Vertex 7396 0.397218 0.257748 0.669065 Vertex 7397 0.3669 0.911344 0.293817 Vertex 7398 0.387623 0.902395 0.320819 Vertex 7399 0.386593 0.497664 0.495058 Vertex 7400 0.545604 0.0408841 0.793696 Vertex 7401 0.523815 0.595423 0.427924 Vertex 7402 0.355315 0.304348 0.235894 Vertex 7403 0.500207 0.256416 0.480683 Vertex 7404 0.48575 0.540982 0.389231 Vertex 7405 0.607757 0.453309 0.324882 Vertex 7406 0.380718 0.232589 0.236107 Vertex 7407 0.441087 0.112844 0.718401 Vertex 7408 0.362802 0.258933 0.206541 Vertex 7409 0.439322 0.126609 0.668674 Vertex 7410 0.545255 0.156548 0.426254 Vertex 7411 0.361587 0.374395 0.358244 Vertex 7412 0.358389 0.382237 0.368609 Vertex 7413 0.441312 0.497954 0.429719 Vertex 7414 0.481545 0.111772 0.805749 Vertex 7415 0.511466 0.748867 0.480517 Vertex 7416 0.382903 0.482833 0.538625 Vertex 7417 0.413174 0.466789 0.598029 Vertex 7418 0.410757 0.467357 0.596963 Vertex 7419 0.40089 0.474376 0.419449 Vertex 7420 0.548258 0.444668 0.372553 Vertex 7421 0.382453 0.394514 0.594689 Vertex 7422 0.453217 0.125495 0.636443 Vertex 7423 0.541465 0.0517641 0.7157 Vertex 7424 0.546232 0.0445799 0.716636 Vertex 7425 0.658792 0.500044 0.211954 Vertex 7426 0.3219 0.253958 0.210296 Vertex 7427 0.442455 0.219547 0.467896 Vertex 7428 0.439571 0.221596 0.466605 Vertex 7429 0.436752 0.217421 0.468619 Vertex 7430 0.486443 0.79539 0.46192 Vertex 7431 0.492638 0.789532 0.450359 Vertex 7432 0.489991 0.794809 0.447386 Vertex 7433 0.589639 0.411424 0.382645 Vertex 7434 0.402347 0.520797 0.530286 Vertex 7435 0.588994 0.498043 0.276956 Vertex 7436 0.351714 0.933725 0.318313 Vertex 7437 0.40583 0.160042 0.643112 Vertex 7438 0.409425 0.150969 0.651783 Vertex 7439 0.413251 0.373886 0.291395 Vertex 7440 0.525627 0.157786 0.789615 Vertex 7441 0.526587 0.155008 0.786897 Vertex 7442 0.515026 0.335483 0.460825 Vertex 7443 0.350642 0.377137 0.441582 Vertex 7444 0.455835 0.231215 0.77684 Vertex 7445 0.495363 0.234928 0.539264 Vertex 7446 0.367575 0.436619 0.437679 Vertex 7447 0.4992 0.253046 0.499221 Vertex 7448 0.497453 0.396812 0.602732 Vertex 7449 0.426174 0.369071 0.644007 Vertex 7450 0.391248 0.188305 0.641318 Vertex 7451 0.395755 0.180647 0.630977 Vertex 7452 0.463238 0.216989 0.604917 Vertex 7453 0.47843 0.122771 0.646299 Vertex 7454 0.408222 0.155772 0.665464 Vertex 7455 0.412161 0.148386 0.663705 Vertex 7456 0.392131 0.855286 0.36053 Vertex 7457 0.643417 0.431999 0.211107 Vertex 7458 0.438031 0.171793 0.787394 Vertex 7459 0.37223 0.366867 0.51083 Vertex 7460 0.413713 0.281729 0.640631 Vertex 7461 0.404604 0.281214 0.633506 Vertex 7462 0.656998 0.46914 0.214347 Vertex 7463 0.523027 0.429221 0.417151 Vertex 7464 0.375168 0.387318 0.534923 Vertex 7465 0.393043 0.193772 0.478486 Vertex 7466 0.457629 0.129641 0.797244 Vertex 7467 0.417474 0.172338 0.561391 Vertex 7468 0.501972 0.180659 0.751994 Vertex 7469 0.501647 0.182454 0.762406 Vertex 7470 0.590694 0.417092 0.389735 Vertex 7471 0.433104 0.138276 0.656681 Vertex 7472 0.499787 0.4771 0.606848 Vertex 7473 0.415359 0.27705 0.64294 Vertex 7474 0.479857 0.104505 0.787305 Vertex 7475 0.53614 0.163234 0.451692 Vertex 7476 0.424924 0.181174 0.776769 Vertex 7477 0.400606 0.208786 0.739545 Vertex 7478 0.403313 0.208827 0.745793 Vertex 7479 0.458222 0.151306 0.658801 Vertex 7480 0.497637 0.031935 0.636816 Vertex 7481 0.620568 0.478616 0.367193 Vertex 7482 0.39707 0.196804 0.712668 Vertex 7483 0.517276 0.149897 0.448535 Vertex 7484 0.509429 0.615607 0.41846 Vertex 7485 0.541867 0.597537 0.453078 Vertex 7486 0.491033 0.212227 0.498173 Vertex 7487 0.469942 0.446107 0.376569 Vertex 7488 0.462054 0.396303 0.625836 Vertex 7489 0.457523 0.754677 0.415931 Vertex 7490 0.46755 0.220702 0.776941 Vertex 7491 0.371727 0.364753 0.536066 Vertex 7492 0.37409 0.366317 0.523285 Vertex 7493 0.505159 0.278259 0.577874 Vertex 7494 0.494705 0.572763 0.574557 Vertex 7495 0.521908 0.394491 0.532388 Vertex 7496 0.470807 0.15759 0.798689 Vertex 7497 0.471956 0.535598 0.413437 Vertex 7498 0.494764 0.675865 0.531837 Vertex 7499 0.477233 0.62259 0.426159 Vertex 7500 0.370365 0.453486 0.544849 Vertex 7501 0.478684 0.431703 0.3725 Vertex 7502 0.48164 0.423151 0.374389 Vertex 7503 0.486165 0.144412 0.796942 Vertex 7504 0.406949 0.159699 0.634459 Vertex 7505 0.402957 0.163945 0.631474 Vertex 7506 0.476481 0.189199 0.567622 Vertex 7507 0.408684 0.204273 0.473612 Vertex 7508 0.497317 0.37677 0.442624 Vertex 7509 0.434312 0.832892 0.447392 Vertex 7510 0.365271 0.183218 0.460084 Vertex 7511 0.496671 0.658831 0.539862 Vertex 7512 0.545 0.625942 0.497361 Vertex 7513 0.498324 0.587498 0.569914 Vertex 7514 0.499745 0.736353 0.417548 Vertex 7515 0.504519 0.384339 0.448849 Vertex 7516 0.495037 0.763176 0.420349 Vertex 7517 0.499106 0.523504 0.391719 Vertex 7518 0.594005 0.425851 0.197621 Vertex 7519 0.562253 0.0115847 0.74991 Vertex 7520 0.399179 0.851146 0.399715 Vertex 7521 0.532551 0.617586 0.44064 Vertex 7522 0.49406 0.599338 0.563565 Vertex 7523 0.402211 0.388467 0.250878 Vertex 7524 0.530638 0.467997 0.586492 Vertex 7525 0.403407 0.173522 0.538583 Vertex 7526 0.580418 0.508064 0.466054 Vertex 7527 0.639289 0.435576 0.193351 Vertex 7528 0.64854 0.438626 0.193564 Vertex 7529 0.640894 0.435553 0.192149 Vertex 7530 0.592394 0.456584 0.442192 Vertex 7531 0.493734 0.0470556 0.637634 Vertex 7532 0.423136 0.20355 0.780968 Vertex 7533 0.392835 0.323745 0.252382 Vertex 7534 0.390863 0.320943 0.252299 Vertex 7535 0.475391 0.436174 0.37186 Vertex 7536 0.545231 0.449637 0.37889 Vertex 7537 0.476013 0.0635975 0.65141 Vertex 7538 0.379806 0.397588 0.571756 Vertex 7539 0.640705 0.499458 0.244493 Vertex 7540 0.475326 0.213317 0.73335 Vertex 7541 0.467674 0.585325 0.554047 Vertex 7542 0.391272 0.185065 0.483319 Vertex 7543 0.601479 0.493926 0.264494 Vertex 7544 0.4153 0.172865 0.582097 Vertex 7545 0.406813 0.283932 0.437175 Vertex 7546 0.498804 0.0969244 0.812062 Vertex 7547 0.388334 0.0730087 0.467541 Vertex 7548 0.441312 0.810765 0.368555 Vertex 7549 0.51011 0.369148 0.451556 Vertex 7550 0.583202 0.48493 0.302263 Vertex 7551 0.564895 0.494246 0.372843 Vertex 7552 0.410911 0.263653 0.706366 Vertex 7553 0.395601 0.847124 0.372962 Vertex 7554 0.393641 0.294706 0.44478 Vertex 7555 0.685498 0.455607 0.211415 Vertex 7556 0.511218 0.275771 0.483781 Vertex 7557 0.509766 0.280693 0.480506 Vertex 7558 0.327751 0.956433 0.236658 Vertex 7559 0.403366 0.465314 0.408557 Vertex 7560 0.517886 0.133722 0.789313 Vertex 7561 0.518254 0.390185 0.553011 Vertex 7562 0.511626 0.0863939 0.643089 Vertex 7563 0.54105 0.050621 0.711632 Vertex 7564 0.373563 0.304413 0.468198 Vertex 7565 0.376157 0.300658 0.464035 Vertex 7566 0.547523 0.0495312 0.791161 Vertex 7567 0.474053 0.218155 0.762418 Vertex 7568 0.323262 0.971103 0.218682 Vertex 7569 0.457919 0.801283 0.379068 Vertex 7570 0.620425 0.488223 0.332634 Vertex 7571 0.586139 0.49366 0.447386 Vertex 7572 0.402347 0.893854 0.372447 Vertex 7573 0.397425 0.896188 0.371523 Vertex 7574 0.464061 0.144957 0.798079 Vertex 7575 0.373101 0.380993 0.502479 Vertex 7576 0.521381 0.0974337 0.711632 Vertex 7577 0.643346 0.440723 0.21995 Vertex 7578 0.430995 0.268427 0.640773 Vertex 7579 0.470215 0.287865 0.433717 Vertex 7580 0.486905 0.1072 0.801206 Vertex 7581 0.419339 0.827106 0.430797 Vertex 7582 0.445138 0.383605 0.643811 Vertex 7583 0.407624 0.184047 0.737525 Vertex 7584 0.409034 0.831074 0.383315 Vertex 7585 0.662767 0.460203 0.210811 Vertex 7586 0.545308 0.435061 0.384239 Vertex 7587 0.363169 0.372932 0.337521 Vertex 7588 0.320046 0.25824 0.219731 Vertex 7589 0.508161 0.0377807 0.628987 Vertex 7590 0.495475 0.548054 0.380158 Vertex 7591 0.460016 0.229787 0.71682 Vertex 7592 0.504199 0.191349 0.461287 Vertex 7593 0.591227 0.479191 0.441837 Vertex 7594 0.530916 0.68399 0.45155 Vertex 7595 0.601064 0.528343 0.212635 Vertex 7596 0.360806 0.259111 0.487044 Vertex 7597 0.366876 0.263245 0.479001 Vertex 7598 0.483109 0.766481 0.40373 Vertex 7599 0.379871 0.289902 0.457887 Vertex 7600 0.488711 0.36361 0.626505 Vertex 7601 0.376957 0.177218 0.517866 Vertex 7602 0.422028 0.13644 0.685785 Vertex 7603 0.39309 0.85419 0.364735 Vertex 7604 0.371052 0.355395 0.486789 Vertex 7605 0.372207 0.368579 0.501353 Vertex 7606 0.321112 0.977393 0.200476 Vertex 7607 0.420405 0.300794 0.640228 Vertex 7608 0.38102 0.20037 0.570583 Vertex 7609 0.446465 0.595109 0.492848 Vertex 7610 0.445298 0.59781 0.480695 Vertex 7611 0.358596 0.283239 0.493121 Vertex 7612 0.466869 0.523445 0.416511 Vertex 7613 0.469439 0.526691 0.415954 Vertex 7614 0.413511 0.166693 0.594576 Vertex 7615 0.488184 0.700858 0.403387 Vertex 7616 0.44486 0.141895 0.625859 Vertex 7617 0.526196 0.0829113 0.710559 Vertex 7618 0.371052 0.212949 0.483443 Vertex 7619 0.484832 0.334476 0.431336 Vertex 7620 0.47885 0.326913 0.427883 Vertex 7621 0.493473 0.580237 0.395883 Vertex 7622 0.394701 0.509142 0.517854 Vertex 7623 0.436189 0.849618 0.426141 Vertex 7624 0.586015 0.474974 0.468115 Vertex 7625 0.369814 0.343508 0.395184 Vertex 7626 0.459945 0.727593 0.472332 Vertex 7627 0.542696 0.503178 0.414255 Vertex 7628 0.524336 0.0602275 0.725639 Vertex 7629 0.531082 0.0590253 0.722701 Vertex 7630 0.498531 0.247099 0.555214 Vertex 7631 0.354338 0.321583 0.23192 Vertex 7632 0.41328 0.175791 0.737555 Vertex 7633 0.536383 0.0769828 0.789289 Vertex 7634 0.537248 0.0701243 0.796012 Vertex 7635 0.490139 0.564388 0.387342 Vertex 7636 0.458364 0.413532 0.624503 Vertex 7637 0.438197 0.110576 0.714622 Vertex 7638 0.367167 0.879817 0.341791 Vertex 7639 0.373492 0.341957 0.482614 Vertex 7640 0.34225 0.946317 0.268871 Vertex 7641 0.352159 0.088295 0.440924 Vertex 7642 0.619596 0.482478 0.321263 Vertex 7643 0.593779 0.442743 0.189786 Vertex 7644 0.357963 0.319516 0.213257 Vertex 7645 0.454437 0.758752 0.461914 Vertex 7646 0.353811 0.163033 0.452515 Vertex 7647 0.506556 0.0239098 0.661212 Vertex 7648 0.481794 0.0905871 0.648709 Vertex 7649 0.359503 0.192356 0.462382 Vertex 7650 0.380214 0.333659 0.466143 Vertex 7651 0.471548 0.0873178 0.756134 Vertex 7652 0.385237 0.254923 0.464171 Vertex 7653 0.541009 0.645854 0.496882 Vertex 7654 0.352585 0.940584 0.28982 Vertex 7655 0.553156 0.554865 0.528313 Vertex 7656 0.425576 0.252732 0.224339 Vertex 7657 0.586293 0.43746 0.443222 Vertex 7658 0.422022 0.265205 0.669119 Vertex 7659 0.418806 0.265152 0.675284 Vertex 7660 0.418871 0.265365 0.673235 Vertex 7661 0.547796 0.0208063 0.724496 Vertex 7662 0.41299 0.381183 0.28838 Vertex 7663 0.504039 0.177911 0.747588 Vertex 7664 0.530591 0.103611 0.733907 Vertex 7665 0.360284 0.332516 0.558448 Vertex 7666 0.483286 0.262498 0.60503 Vertex 7667 0.379693 0.297632 0.457976 Vertex 7668 0.517342 0.351634 0.481974 Vertex 7669 0.447946 0.470159 0.618326 Vertex 7670 0.55771 0.556108 0.5117 Vertex 7671 0.518212 0.449264 0.411252 Vertex 7672 0.454958 0.432046 0.388153 Vertex 7673 0.515695 0.291371 0.515882 Vertex 7674 0.416585 0.233146 0.770361 Vertex 7675 0.440252 0.837263 0.372636 Vertex 7676 0.372781 0.099939 0.475228 Vertex 7677 0.454792 0.599012 0.520016 Vertex 7678 0.450984 0.599883 0.509787 Vertex 7679 0.516566 0.460517 0.408581 Vertex 7680 0.543745 0.482211 0.397677 Vertex 7681 0.396158 0.396949 0.611396 Vertex 7682 0.607218 0.505985 0.209425 Vertex 7683 0.50812 0.288611 0.471432 Vertex 7684 0.467236 0.62994 0.52245 Vertex 7685 0.54872 0.409173 0.401373 Vertex 7686 0.457854 0.234751 0.764491 Vertex 7687 0.47153 0.107935 0.783088 Vertex 7688 0.446732 0.611444 0.476235 Vertex 7689 0.369447 0.217421 0.232352 Vertex 7690 0.606892 0.509325 0.218671 Vertex 7691 0.449385 0.171301 0.619416 Vertex 7692 0.452453 0.170294 0.625741 Vertex 7693 0.499568 0.0567154 0.686087 Vertex 7694 0.502476 0.0548379 0.68113 Vertex 7695 0.419102 0.518091 0.573521 Vertex 7696 0.533475 0.112696 0.78101 Vertex 7697 0.606566 0.50467 0.230024 Vertex 7698 0.357288 0.122504 0.476058 Vertex 7699 0.518171 0.129043 0.71008 Vertex 7700 0.468799 0.361993 0.413195 Vertex 7701 0.422366 0.390617 0.396617 Vertex 7702 0.425617 0.399638 0.386904 Vertex 7703 0.620384 0.474607 0.353855 Vertex 7704 0.538468 0.535361 0.569689 Vertex 7705 0.354202 0.40803 0.471243 Vertex 7706 0.410941 0.243007 0.220193 Vertex 7707 0.354545 0.187517 0.501336 Vertex 7708 0.459702 0.104535 0.760357 Vertex 7709 0.467947 0.437543 0.374662 Vertex 7710 0.382944 0.236658 0.227756 Vertex 7711 0.43571 0.783414 0.424222 Vertex 7712 0.377324 0.902039 0.36374 Vertex 7713 0.518905 0.122812 0.711045 Vertex 7714 0.558664 0.0262196 0.756288 Vertex 7715 0.419061 0.85525 0.349259 Vertex 7716 0.418374 0.850465 0.344687 Vertex 7717 0.424533 0.842605 0.350343 Vertex 7718 0.505431 0.417139 0.431881 Vertex 7719 0.396851 0.351587 0.285674 Vertex 7720 0.545415 0.137027 0.451828 Vertex 7721 0.484157 0.343236 0.428753 Vertex 7722 0.358354 0.424045 0.458296 Vertex 7723 0.589823 0.437625 0.201832 Vertex 7724 0.418777 0.410281 0.374756 Vertex 7725 0.380925 0.310259 0.248438 Vertex 7726 0.475729 0.470704 0.608506 Vertex 7727 0.427667 0.823534 0.36823 Vertex 7728 0.629819 0.51202 0.281901 Vertex 7729 0.492212 0.336449 0.62233 Vertex 7730 0.464831 0.196508 0.669113 Vertex 7731 0.520433 0.113632 0.711448 Vertex 7732 0.419203 0.864099 0.416162 Vertex 7733 0.458263 0.720237 0.442642 Vertex 7734 0.513575 0.570423 0.404405 Vertex 7735 0.43202 0.555759 0.517895 Vertex 7736 0.559357 0.0317159 0.733172 Vertex 7737 0.455367 0.576547 0.445319 Vertex 7738 0.441081 0.350402 0.645221 Vertex 7739 0.359834 0.244736 0.557417 Vertex 7740 0.561969 0.534905 0.512298 Vertex 7741 0.53614 0.132745 0.437827 Vertex 7742 0.484329 0.71878 0.501578 Vertex 7743 0.474752 0.713699 0.495105 Vertex 7744 0.48848 0.730975 0.402901 Vertex 7745 0.485501 0.724045 0.401391 Vertex 7746 0.505852 0.761672 0.444004 Vertex 7747 0.406996 0.359855 0.244162 Vertex 7748 0.495783 0.243374 0.493002 Vertex 7749 0.43234 0.224333 0.465965 Vertex 7750 0.531266 0.641614 0.522272 Vertex 7751 0.36199 0.908779 0.345149 Vertex 7752 0.513995 0.130352 0.707687 Vertex 7753 0.547701 0.402427 0.505422 Vertex 7754 0.488729 0.606167 0.404038 Vertex 7755 0.485886 0.59858 0.410121 Vertex 7756 0.487106 0.595761 0.402066 Vertex 7757 0.516797 0.0788602 0.791433 Vertex 7758 0.452642 0.165971 0.800389 Vertex 7759 0.397425 0.171206 0.669545 Vertex 7760 0.44948 0.844495 0.416837 Vertex 7761 0.365692 0.920263 0.339434 Vertex 7762 0.359201 0.926115 0.32872 Vertex 7763 0.417136 0.382651 0.358244 Vertex 7764 0.547938 0.585064 0.48827 Vertex 7765 0.423989 0.244245 0.218943 Vertex 7766 0.458192 0.793323 0.473262 Vertex 7767 0.351614 0.382189 0.463448 Vertex 7768 0.498573 0.421083 0.398181 Vertex 7769 0.495984 0.423127 0.392495 Vertex 7770 0.422549 0.431638 0.386211 Vertex 7771 0.660883 0.405092 0.218185 Vertex 7772 0.462273 0.292449 0.633316 Vertex 7773 0.462598 0.297963 0.633719 Vertex 7774 0.521345 0.71557 0.490912 Vertex 7775 0.409135 0.169056 0.61299 Vertex 7776 0.359674 0.389984 0.387271 Vertex 7777 0.495984 0.162613 0.6828 Vertex 7778 0.373575 0.393531 0.275102 Vertex 7779 0.337571 0.0993941 0.461974 Vertex 7780 0.3384 0.101437 0.453895 Vertex 7781 0.399883 0.3587 0.437525 Vertex 7782 0.449438 0.174582 0.602891 Vertex 7783 0.496263 0.235757 0.528219 Vertex 7784 0.427483 0.798635 0.416298 Vertex 7785 0.394594 0.50021 0.477064 Vertex 7786 0.363435 0.25269 0.225156 Vertex 7787 0.435621 0.139816 0.615258 Vertex 7788 0.438357 0.13756 0.619878 Vertex 7789 0.48931 0.371132 0.624012 Vertex 7790 0.433032 0.242178 0.772209 Vertex 7791 0.391811 0.330532 0.453504 Vertex 7792 0.534719 0.516527 0.58006 Vertex 7793 0.433258 0.234685 0.779867 Vertex 7794 0.510228 0.645339 0.540757 Vertex 7795 0.514054 0.639417 0.538785 Vertex 7796 0.399812 0.319924 0.201898 Vertex 7797 0.606537 0.503183 0.20965 Vertex 7798 0.498898 0.550298 0.38662 Vertex 7799 0.49894 0.554947 0.383125 Vertex 7800 0.54179 0.50133 0.573847 Vertex 7801 0.492466 0.615163 0.553082 Vertex 7802 0.545918 0.41044 0.526116 Vertex 7803 0.536413 0.413858 0.54893 Vertex 7804 0.532243 0.421794 0.567533 Vertex 7805 0.446382 0.76002 0.434931 Vertex 7806 0.59478 0.52961 0.282475 Vertex 7807 0.415116 0.159225 0.611195 Vertex 7808 0.43411 0.406123 0.412312 Vertex 7809 0.561057 0.411311 0.490918 Vertex 7810 0.556283 0.458923 0.338131 Vertex 7811 0.520392 0.104043 0.67741 Vertex 7812 0.519545 0.101734 0.6794 Vertex 7813 0.484181 0.429458 0.374212 Vertex 7814 0.542454 0.399353 0.43788 Vertex 7815 0.420897 0.809136 0.404151 Vertex 7816 0.469682 0.583536 0.429286 Vertex 7817 0.46553 0.333783 0.416949 Vertex 7818 0.438908 0.434113 0.630355 Vertex 7819 0.538752 0.00815551 0.729589 Vertex 7820 0.641303 0.507697 0.195395 Vertex 7821 0.435194 0.51632 0.45155 Vertex 7822 0.415661 0.258471 0.73518 Vertex 7823 0.391248 0.342265 0.273035 Vertex 7824 0.530591 0.0831542 0.794969 Vertex 7825 0.531491 0.0865242 0.7952 Vertex 7826 0.516062 0.0823961 0.721984 Vertex 7827 0.367398 0.304466 0.194139 Vertex 7828 0.509672 0.585574 0.563796 Vertex 7829 0.491904 0.188305 0.457532 Vertex 7830 0.492425 0.176768 0.460268 Vertex 7831 0.462498 0.56337 0.564436 Vertex 7832 0.595011 0.521864 0.280201 Vertex 7833 0.542098 0.118501 0.435381 Vertex 7834 0.560867 0.502662 0.405631 Vertex 7835 0.351791 0.264293 0.221721 Vertex 7836 0.550686 0.487151 0.392809 Vertex 7837 0.524792 0.132401 0.741523 Vertex 7838 0.522346 0.396031 0.540632 Vertex 7839 0.351584 0.902939 0.331195 Vertex 7840 0.631501 0.506743 0.274379 Vertex 7841 0.379527 0.267722 0.231949 Vertex 7842 0.52927 0.399566 0.486748 Vertex 7843 0.543099 0.0277418 0.779239 Vertex 7844 0.524472 0.395047 0.511677 Vertex 7845 0.437694 0.806359 0.452077 Vertex 7846 0.645129 0.500518 0.193221 Vertex 7847 0.553114 0.506684 0.413728 Vertex 7848 0.400878 0.457591 0.596122 Vertex 7849 0.615978 0.534976 0.298159 Vertex 7850 0.510436 0.28607 0.559295 Vertex 7851 0.373172 0.38338 0.55519 Vertex 7852 0.398645 0.892219 0.332403 Vertex 7853 0.414352 0.533596 0.528236 Vertex 7854 0.471317 0.541971 0.420527 Vertex 7855 0.504614 0.353518 0.6007 Vertex 7856 0.51624 0.356965 0.573776 Vertex 7857 0.516797 0.351859 0.573776 Vertex 7858 0.515097 0.353761 0.577927 Vertex 7859 0.552066 0.463845 0.368668 Vertex 7860 0.398675 0.35915 0.347826 Vertex 7861 0.43507 0.4797 0.597099 Vertex 7862 0.447727 0.570945 0.458917 Vertex 7863 0.452163 0.570879 0.451899 Vertex 7864 0.433032 0.251766 0.444964 Vertex 7865 0.605044 0.498576 0.383433 Vertex 7866 0.510459 0.274954 0.519962 Vertex 7867 0.35621 0.241337 0.521248 Vertex 7868 0.622943 0.486967 0.353334 Vertex 7869 0.478536 0.549374 0.404465 Vertex 7870 0.425937 0.85743 0.42273 Vertex 7871 0.337618 0.936835 0.255474 Vertex 7872 0.493118 0.559567 0.379275 Vertex 7873 0.39046 0.194423 0.57249 Vertex 7874 0.556325 0.51613 0.437092 Vertex 7875 0.440418 0.148795 0.762199 Vertex 7876 0.47827 0.195033 0.479973 Vertex 7877 0.500462 0.0536652 0.756057 Vertex 7878 0.354107 0.219162 0.50762 Vertex 7879 0.425268 0.371511 0.641312 Vertex 7880 0.463374 0.282286 0.630858 Vertex 7881 0.474858 0.816984 0.429843 Vertex 7882 0.400239 0.318195 0.442014 Vertex 7883 0.471506 0.121456 0.815556 Vertex 7884 0.453703 0.672305 0.470236 Vertex 7885 0.619051 0.488525 0.265092 Vertex 7886 0.528334 0.129789 0.770692 Vertex 7887 0.603031 0.511688 0.202081 Vertex 7888 0.386468 0.374069 0.613837 Vertex 7889 0.630417 0.48153 0.226832 Vertex 7890 0.51974 0.38187 0.49915 Vertex 7891 0.352348 0.26633 0.207572 Vertex 7892 0.464932 0.214963 0.687728 Vertex 7893 0.623612 0.496242 0.303761 Vertex 7894 0.454549 0.47527 0.406532 Vertex 7895 0.451304 0.472824 0.40652 Vertex 7896 0.418362 0.200056 0.77267 Vertex 7897 0.648321 0.417411 0.210811 Vertex 7898 0.480141 0.201074 0.785238 Vertex 7899 0.398095 0.42966 0.340701 Vertex 7900 0.390306 0.43114 0.324976 Vertex 7901 0.487882 0.20766 0.555143 Vertex 7902 0.488557 0.20952 0.553082 Vertex 7903 0.507018 0.578828 0.401183 Vertex 7904 0.365348 0.293237 0.576897 Vertex 7905 0.423959 0.462761 0.403606 Vertex 7906 0.376145 0.357456 0.304129 Vertex 7907 0.334231 0.280598 0.209751 Vertex 7908 0.412659 0.380721 0.624456 Vertex 7909 0.457392 0.14462 0.79446 Vertex 7910 0.542643 0.533484 0.432319 Vertex 7911 0.474592 0.765409 0.493672 Vertex 7912 0.470517 0.775786 0.487488 Vertex 7913 0.476825 0.506524 0.403197 Vertex 7914 0.422295 0.28645 0.432727 Vertex 7915 0.596071 0.509248 0.250606 Vertex 7916 0.499674 0.770218 0.476223 Vertex 7917 0.459063 0.118909 0.639707 Vertex 7918 0.469563 0.223924 0.745829 Vertex 7919 0.378745 0.245577 0.235627 Vertex 7920 0.514907 0.365618 0.448991 Vertex 7921 0.513148 0.357936 0.450792 Vertex 7922 0.509613 0.360311 0.449767 Vertex 7923 0.480674 0.762098 0.500418 Vertex 7924 0.458678 0.200642 0.601079 Vertex 7925 0.456226 0.519666 0.586669 Vertex 7926 0.494788 0.12193 0.643675 Vertex 7927 0.421614 0.816765 0.389107 Vertex 7928 0.523448 0.402368 0.553218 Vertex 7929 0.379403 0.414616 0.572153 Vertex 7930 0.376062 0.413254 0.56363 Vertex 7931 0.362594 0.249166 0.2118 Vertex 7932 0.53296 0.523089 0.421628 Vertex 7933 0.465803 0.548302 0.576139 Vertex 7934 0.467295 0.556404 0.572301 Vertex 7935 0.46264 0.766991 0.391772 Vertex 7936 0.447738 0.244434 0.702297 Vertex 7937 0.361463 0.398483 0.376853 Vertex 7938 0.542525 0.494607 0.405904 Vertex 7939 0.444688 0.14032 0.766469 Vertex 7940 0.48177 0.53917 0.395977 Vertex 7941 0.591061 0.441985 0.189809 Vertex 7942 0.38898 0.887925 0.384659 Vertex 7943 0.528441 0.126064 0.768637 Vertex 7944 0.693399 0.456098 0.216201 Vertex 7945 0.696224 0.453942 0.218019 Vertex 7946 0.466324 0.179012 0.563589 Vertex 7947 0.655251 0.492221 0.223486 Vertex 7948 0.435419 0.144359 0.737508 Vertex 7949 0.508623 0.138116 0.704299 Vertex 7950 0.432209 0.141706 0.718887 Vertex 7951 0.531266 0.0657475 0.710678 Vertex 7952 0.658704 0.462051 0.208472 Vertex 7953 0.353823 0.27679 0.533644 Vertex 7954 0.532658 0.12283 0.778948 Vertex 7955 0.529341 0.11657 0.720977 Vertex 7956 0.526018 0.118353 0.717051 Vertex 7957 0.416259 0.531837 0.50345 Vertex 7958 0.536602 0.621311 0.524055 Vertex 7959 0.483014 0.373288 0.627796 Vertex 7960 0.47201 0.168897 0.546863 Vertex 7961 0.395341 0.864448 0.395474 Vertex 7962 0.508096 0.266863 0.52396 Vertex 7963 0.607194 0.480991 0.213749 Vertex 7964 0.514037 0.514164 0.402315 Vertex 7965 0.663092 0.459871 0.193079 Vertex 7966 0.663039 0.46532 0.191853 Vertex 7967 0.48594 0.798345 0.431567 Vertex 7968 0.540825 0.152971 0.446142 Vertex 7969 0.542477 0.148659 0.442328 Vertex 7970 0.386913 0.381721 0.234123 Vertex 7971 0.467793 0.798849 0.476046 Vertex 7972 0.452477 0.103066 0.663172 Vertex 7973 0.417628 0.848723 0.342768 Vertex 7974 0.391621 0.85615 0.379044 Vertex 7975 0.392498 0.858028 0.385204 Vertex 7976 0.553251 0.554888 0.4616 Vertex 7977 0.509263 0.0778771 0.689913 Vertex 7978 0.446572 0.553804 0.449583 Vertex 7979 0.423621 0.262972 0.689842 Vertex 7980 0.421951 0.264346 0.696043 Vertex 7981 0.639094 0.510492 0.250582 Vertex 7982 0.414275 0.837423 0.36271 Vertex 7983 0.426849 0.230551 0.211226 Vertex 7984 0.442402 0.232115 0.460605 Vertex 7985 0.399327 0.319054 0.23388 Vertex 7986 0.441899 0.574196 0.501288 Vertex 7987 0.530822 0.683949 0.492949 Vertex 7988 0.399836 0.326481 0.235236 Vertex 7989 0.356287 0.903727 0.339274 Vertex 7990 0.440827 0.550381 0.474002 Vertex 7991 0.440868 0.566935 0.505464 Vertex 7992 0.412629 0.275961 0.218872 Vertex 7993 0.497009 0.5756 0.392643 Vertex 7994 0.395246 0.289387 0.237724 Vertex 7995 0.391722 0.299704 0.238038 Vertex 7996 0.3531 0.369124 0.432846 Vertex 7997 0.457653 0.654727 0.490965 Vertex 7998 0.399652 0.23006 0.467079 Vertex 7999 0.414536 0.243404 0.7562 Vertex 8000 0.599874 0.512962 0.229906 Vertex 8001 0.509476 0.420165 0.433326 Vertex 8002 0.435508 0.151596 0.74577 Vertex 8003 0.404041 0.374573 0.246318 Vertex 8004 0.46203 0.0829113 0.727842 Vertex 8005 0.315503 0.96986 0.252187 Vertex 8006 0.494818 0.192315 0.749223 Vertex 8007 0.66051 0.4615 0.209941 Vertex 8008 0.462498 0.18028 0.481838 Vertex 8009 0.545907 0.533395 0.436044 Vertex 8010 0.507457 0.611308 0.560675 Vertex 8011 0.465986 0.0880522 0.66014 Vertex 8012 0.549727 0.424892 0.532317 Vertex 8013 0.320502 0.931149 0.263067 Vertex 8014 0.377282 0.479321 0.472309 Vertex 8015 0.360225 0.348608 0.416298 Vertex 8016 0.362896 0.346446 0.422469 Vertex 8017 0.513261 0.0274693 0.665091 Vertex 8018 0.435117 0.832057 0.358031 Vertex 8019 0.498531 0.428836 0.607635 Vertex 8020 0.523424 0.377824 0.451692 Vertex 8021 0.465773 0.196994 0.580077 Vertex 8022 0.461361 0.197947 0.584134 Vertex 8023 0.453691 0.737875 0.449625 Vertex 8024 0.603433 0.527685 0.228929 Vertex 8025 0.419629 0.240342 0.197894 Vertex 8026 0.48562 0.708943 0.404056 Vertex 8027 0.482457 0.159959 0.661277 Vertex 8028 0.419108 0.835563 0.352807 Vertex 8029 0.426186 0.492463 0.59226 Vertex 8030 0.424723 0.477888 0.595986 Vertex 8031 0.411065 0.472593 0.594694 Vertex 8032 0.448307 0.38656 0.637883 Vertex 8033 0.398509 0.174103 0.627411 Vertex 8034 0.542424 0.565898 0.4417 Vertex 8035 0.422911 0.201252 0.477669 Vertex 8036 0.552925 0.44375 0.532394 Vertex 8037 0.495712 0.700763 0.528917 Vertex 8038 0.354107 0.0939275 0.447747 Vertex 8039 0.388156 0.859118 0.368567 Vertex 8040 0.459596 0.637687 0.501709 Vertex 8041 0.42894 0.168026 0.521988 Vertex 8042 0.462871 0.829196 0.410245 Vertex 8043 0.430563 0.524019 0.472611 Vertex 8044 0.427305 0.518647 0.465426 Vertex 8045 0.481083 0.120502 0.810706 Vertex 8046 0.529252 0.115717 0.76676 Vertex 8047 0.517774 0.383273 0.440273 Vertex 8048 0.43969 0.307102 0.42254 Vertex 8049 0.538989 0.605107 0.524138 Vertex 8050 0.380031 0.47097 0.555244 Vertex 8051 0.393901 0.391133 0.248272 Vertex 8052 0.645301 0.431312 0.220631 Vertex 8053 0.534156 0.0944428 0.738207 Vertex 8054 0.478803 0.798505 0.46805 Vertex 8055 0.410058 0.255154 0.447605 Vertex 8056 0.380262 0.241224 0.234537 Vertex 8057 0.50918 0.0652855 0.634459 Vertex 8058 0.511833 0.0597656 0.633808 Vertex 8059 0.389382 0.431448 0.342294 Vertex 8060 0.393386 0.429636 0.354359 Vertex 8061 0.500527 0.366684 0.607008 Vertex 8062 0.37377 0.222141 0.208336 Vertex 8063 0.437587 0.387407 0.647572 Vertex 8064 0.475646 0.215301 0.77485 Vertex 8065 0.398225 0.360767 0.389231 Vertex 8066 0.473709 0.213506 0.782988 Vertex 8067 0.445304 0.152165 0.61681 Vertex 8068 0.498259 0.54559 0.385897 Vertex 8069 0.422378 0.152805 0.619333 Vertex 8070 0.472856 0.258471 0.447386 Vertex 8071 0.347776 0.261112 0.214294 Vertex 8072 0.514173 0.431359 0.423737 Vertex 8073 0.414181 0.451254 0.393431 Vertex 8074 0.509997 0.67269 0.528367 Vertex 8075 0.502641 0.440184 0.393081 Vertex 8076 0.362849 0.361134 0.248349 Vertex 8077 0.354054 0.225286 0.525328 Vertex 8078 0.455462 0.157922 0.799103 Vertex 8079 0.602119 0.440018 0.347897 Vertex 8080 0.409673 0.25054 0.221484 Vertex 8081 0.501919 0.183952 0.453113 Vertex 8082 0.502381 0.182157 0.45242 Vertex 8083 0.499331 0.178456 0.452977 Vertex 8084 0.537656 0.159876 0.433012 Vertex 8085 0.360877 0.270985 0.489313 Vertex 8086 0.361244 0.439467 0.470786 Vertex 8087 0.393451 0.303187 0.197728 Vertex 8088 0.54108 0.4002 0.501259 Vertex 8089 0.463049 0.201933 0.630313 Vertex 8090 0.523856 0.570945 0.563565 Vertex 8091 0.410657 0.241864 0.456922 Vertex 8092 0.398497 0.238956 0.464722 Vertex 8093 0.367344 0.421196 0.339558 Vertex 8094 0.378793 0.428747 0.337059 Vertex 8095 0.595983 0.528556 0.298413 Vertex 8096 0.513806 0.282748 0.53041 Vertex 8097 0.397793 0.900653 0.357196 Vertex 8098 0.638069 0.442678 0.198415 Vertex 8099 0.478803 0.188441 0.708635 Vertex 8100 0.40028 0.361365 0.237824 Vertex 8101 0.512651 0.66062 0.422848 Vertex 8102 0.404781 0.262238 0.68938 Vertex 8103 0.467721 0.26126 0.61713 Vertex 8104 0.473372 0.25805 0.611467 Vertex 8105 0.485389 0.631907 0.41464 Vertex 8106 0.596984 0.428149 0.388361 Vertex 8107 0.504057 0.596998 0.407947 Vertex 8108 0.491187 0.110493 0.804055 Vertex 8109 0.399777 0.512914 0.54617 Vertex 8110 0.508446 0.0626499 0.769928 Vertex 8111 0.354107 0.292935 0.523184 Vertex 8112 0.369447 0.920731 0.301002 Vertex 8113 0.460437 0.379198 0.403659 Vertex 8114 0.495226 0.0653921 0.729317 Vertex 8115 0.361966 0.437223 0.52354 Vertex 8116 0.358549 0.101757 0.475827 Vertex 8117 0.358709 0.410778 0.519879 Vertex 8118 0.519112 0.412211 0.575837 Vertex 8119 0.365692 0.41124 0.368514 Vertex 8120 0.511443 0.421249 0.594848 Vertex 8121 0.428188 0.801774 0.404014 Vertex 8122 0.407482 0.34933 0.233146 Vertex 8123 0.417835 0.139514 0.665707 Vertex 8124 0.453181 0.83599 0.434084 Vertex 8125 0.374368 0.467606 0.459954 Vertex 8126 0.375648 0.470863 0.461968 Vertex 8127 0.516797 0.308417 0.550997 Vertex 8128 0.401785 0.36425 0.406188 Vertex 8129 0.356518 0.903236 0.287385 Vertex 8130 0.411219 0.37173 0.285058 Vertex 8131 0.408649 0.36916 0.271187 Vertex 8132 0.47506 0.075893 0.711247 Vertex 8133 0.45468 0.815183 0.467855 Vertex 8134 0.460573 0.68161 0.488904 Vertex 8135 0.617624 0.52399 0.30709 Vertex 8136 0.372829 0.176483 0.49514 Vertex 8137 0.501783 0.173901 0.778954 Vertex 8138 0.512663 0.0774151 0.726456 Vertex 8139 0.55023 0.578774 0.495561 Vertex 8140 0.434158 0.153948 0.754174 Vertex 8141 0.475362 0.12129 0.812725 Vertex 8142 0.412274 0.172515 0.528313 Vertex 8143 0.517667 0.373827 0.463987 Vertex 8144 0.48334 0.437762 0.376148 Vertex 8145 0.511508 0.193825 0.468038 Vertex 8146 0.51775 0.297069 0.507477 Vertex 8147 0.490139 0.226808 0.509556 Vertex 8148 0.519195 0.440474 0.416701 Vertex 8149 0.574685 0.43056 0.468115 Vertex 8150 0.493598 0.204587 0.536504 Vertex 8151 0.373403 0.280112 0.194903 Vertex 8152 0.461574 0.16144 0.508455 Vertex 8153 0.567779 0.408077 0.46192 Vertex 8154 0.383839 0.25458 0.229503 Vertex 8155 0.553849 0.466433 0.345907 Vertex 8156 0.362944 0.0995836 0.467298 Vertex 8157 0.476221 0.215804 0.779002 Vertex 8158 0.371603 0.876773 0.34583 Vertex 8159 0.386788 0.444022 0.406786 Vertex 8160 0.552889 0.559478 0.500572 Vertex 8161 0.665977 0.484379 0.216912 Vertex 8162 0.524662 0.134782 0.760517 Vertex 8163 0.448212 0.0990388 0.663563 Vertex 8164 0.49233 0.471864 0.390428 Vertex 8165 0.409075 0.370966 0.421628 Vertex 8166 0.395252 0.858679 0.338154 Vertex 8167 0.351507 0.113455 0.471331 Vertex 8168 0.406185 0.426746 0.330502 Vertex 8169 0.368896 0.261574 0.19915 Vertex 8170 0.375671 0.211374 0.482247 Vertex 8171 0.425866 0.156939 0.600771 Vertex 8172 0.404995 0.425425 0.353607 Vertex 8173 0.551196 0.422813 0.381177 Vertex 8174 0.551243 0.426284 0.376646 Vertex 8175 0.357442 0.289837 0.556333 Vertex 8176 0.523679 0.598633 0.430578 Vertex 8177 0.430201 0.33787 0.64849 Vertex 8178 0.492614 0.172012 0.478486 Vertex 8179 0.607952 0.499671 0.195738 Vertex 8180 0.512242 0.589003 0.413834 Vertex 8181 0.447182 0.38717 0.409836 Vertex 8182 0.567151 0.497847 0.376865 Vertex 8183 0.447513 0.342194 0.415096 Vertex 8184 0.443071 0.458183 0.407752 Vertex 8185 0.439648 0.454973 0.40758 Vertex 8186 0.381191 0.429115 0.324189 Vertex 8187 0.396288 0.239945 0.718679 Vertex 8188 0.439755 0.144904 0.603022 Vertex 8189 0.408755 0.877128 0.398423 Vertex 8190 0.642339 0.440782 0.213595 Vertex 8191 0.64231 0.443122 0.211984 Vertex 8192 0.642464 0.439142 0.211492 Vertex 8193 0.369459 0.329028 0.493304 Vertex 8194 0.389442 0.432947 0.388941 Vertex 8195 0.40917 0.468056 0.409825 Vertex 8196 0.387422 0.189259 0.563589 Vertex 8197 0.50491 0.646725 0.550784 Vertex 8198 0.460354 0.514739 0.592935 Vertex 8199 0.685048 0.46359 0.217883 Vertex 8200 0.540215 0.00456638 0.73136 Vertex 8201 0.618643 0.521561 0.212937 Vertex 8202 0.530277 0.690819 0.488815 Vertex 8203 0.514842 0.0405821 0.766469 Vertex 8204 0.540505 0.147622 0.448855 Vertex 8205 0.369571 0.408628 0.301475 Vertex 8206 0.489772 0.0609857 0.692116 Vertex 8207 0.68638 0.450922 0.204361 Vertex 8208 0.462065 0.370824 0.630319 Vertex 8209 0.457102 0.366405 0.633369 Vertex 8210 0.40949 0.264524 0.669101 Vertex 8211 0.411356 0.857216 0.420373 Vertex 8212 0.402436 0.845803 0.362491 Vertex 8213 0.399871 0.277879 0.232844 Vertex 8214 0.398509 0.275256 0.230125 Vertex 8215 0.487201 0.347725 0.628371 Vertex 8216 0.36472 0.234454 0.569813 Vertex 8217 0.54981 0.497634 0.404068 Vertex 8218 0.482593 0.583216 0.414326 Vertex 8219 0.41684 0.343917 0.638564 Vertex 8220 0.518147 0.0702605 0.643858 Vertex 8221 0.329196 0.960223 0.268794 Vertex 8222 0.462752 0.373163 0.406188 Vertex 8223 0.522092 0.3743 0.499233 Vertex 8224 0.479591 0.230996 0.479457 Vertex 8225 0.513628 0.361952 0.577951 Vertex 8226 0.471435 0.569085 0.565123 Vertex 8227 0.359544 0.32378 0.215111 Vertex 8228 0.364827 0.334571 0.216823 Vertex 8229 0.604961 0.463519 0.214732 Vertex 8230 0.328497 0.919837 0.285792 Vertex 8231 0.371662 0.304603 0.474725 Vertex 8232 0.365579 0.349816 0.384114 Vertex 8233 0.575467 0.50204 0.335193 Vertex 8234 0.610387 0.478154 0.219683 Vertex 8235 0.460217 0.216379 0.626677 Vertex 8236 0.579962 0.496112 0.405874 Vertex 8237 0.381428 0.490876 0.495069 Vertex 8238 0.330831 0.932695 0.24903 Vertex 8239 0.598648 0.450626 0.315311 Vertex 8240 0.391538 0.224374 0.71467 Vertex 8241 0.420559 0.378624 0.312237 Vertex 8242 0.486603 0.67991 0.408853 Vertex 8243 0.535998 0.0411329 0.72706 Vertex 8244 0.534683 0.0536119 0.723435 Vertex 8245 0.384781 0.204314 0.625777 Vertex 8246 0.536874 0.664748 0.494092 Vertex 8247 0.529708 0.143435 0.78714 Vertex 8248 0.560044 0.402593 0.396599 Vertex 8249 0.516631 0.322234 0.479635 Vertex 8250 0.376015 0.358605 0.331272 Vertex 8251 0.394014 0.504095 0.490201 Vertex 8252 0.429378 0.17903 0.780998 Vertex 8253 0.583539 0.488063 0.478486 Vertex 8254 0.582349 0.480067 0.484681 Vertex 8255 0.340929 0.945968 0.296577 Vertex 8256 0.339176 0.945269 0.29855 Vertex 8257 0.493734 0.25699 0.468441 Vertex 8258 0.514203 0.116084 0.691844 Vertex 8259 0.488753 0.376723 0.62349 Vertex 8260 0.512799 0.163768 0.448659 Vertex 8261 0.540043 0.0142499 0.732118 Vertex 8262 0.373907 0.345593 0.478575 Vertex 8263 0.457783 0.667976 0.486831 Vertex 8264 0.473478 0.674159 0.50984 Vertex 8265 0.493781 0.426817 0.382793 Vertex 8266 0.456901 0.783746 0.38386 Vertex 8267 0.336771 0.910467 0.286053 Vertex 8268 0.449456 0.764266 0.453587 Vertex 8269 0.370791 0.388811 0.269102 Vertex 8270 0.361724 0.259614 0.565798 Vertex 8271 0.455876 0.235106 0.71682 Vertex 8272 0.435236 0.527176 0.470182 Vertex 8273 0.435621 0.52919 0.472249 Vertex 8274 0.413926 0.505025 0.453617 Vertex 8275 0.498626 0.405602 0.419082 Vertex 8276 0.500154 0.402978 0.429121 Vertex 8277 0.50135 0.17662 0.737164 Vertex 8278 0.487746 0.755874 0.498771 Vertex 8279 0.459252 0.185338 0.633968 Vertex 8280 0.370009 0.342229 0.503491 Vertex 8281 0.365331 0.12023 0.465284 Vertex 8282 0.39418 0.259448 0.652275 Vertex 8283 0.420636 0.383984 0.347921 Vertex 8284 0.46322 0.608779 0.530653 Vertex 8285 0.463647 0.152888 0.800146 Vertex 8286 0.349955 0.894725 0.30866 Vertex 8287 0.346331 0.89842 0.306752 Vertex 8288 0.454561 0.231623 0.694 Vertex 8289 0.352822 0.395971 0.488768 Vertex 8290 0.477654 0.054299 0.681426 Vertex 8291 0.51197 0.406774 0.44282 Vertex 8292 0.546232 0.532566 0.55936 Vertex 8293 0.49509 0.309743 0.444946 Vertex 8294 0.465903 0.452793 0.386169 Vertex 8295 0.425238 0.162097 0.584134 Vertex 8296 0.510708 0.160054 0.453522 Vertex 8297 0.675092 0.4503 0.193162 Vertex 8298 0.351288 0.896602 0.290282 Vertex 8299 0.616108 0.527034 0.223486 Vertex 8300 0.613911 0.524606 0.217131 Vertex 8301 0.515577 0.303311 0.483212 Vertex 8302 0.481545 0.18349 0.793862 Vertex 8303 0.548483 0.462353 0.553135 Vertex 8304 0.4568 0.232233 0.623656 Vertex 8305 0.508914 0.102391 0.803599 Vertex 8306 0.385183 0.330887 0.264251 Vertex 8307 0.382109 0.325989 0.259614 Vertex 8308 0.49066 0.102142 0.805482 Vertex 8309 0.384786 0.866349 0.372761 Vertex 8310 0.424877 0.139544 0.658251 Vertex 8311 0.406902 0.847764 0.347435 Vertex 8312 0.383335 0.221543 0.598923 Vertex 8313 0.358365 0.367928 0.383818 Vertex 8314 0.36934 0.320019 0.484722 Vertex 8315 0.519272 0.384298 0.466297 Vertex 8316 0.453329 0.448565 0.627802 Vertex 8317 0.458056 0.767405 0.40408 Vertex 8318 0.664834 0.416292 0.23189 Vertex 8319 0.465169 0.211711 0.658695 Vertex 8320 0.466229 0.204421 0.669136 Vertex 8321 0.429514 0.404429 0.39789 Vertex 8322 0.429876 0.405276 0.40524 Vertex 8323 0.557059 0.0254556 0.730181 Vertex 8324 0.481912 0.213725 0.492801 Vertex 8325 0.392912 0.25484 0.642159 Vertex 8326 0.434104 0.793246 0.406111 Vertex 8327 0.480402 0.463164 0.607091 Vertex 8328 0.653681 0.417003 0.22531 Vertex 8329 0.319726 0.933181 0.253223 Vertex 8330 0.492466 0.289144 0.448073 Vertex 8331 0.452571 0.246762 0.752066 Vertex 8332 0.450569 0.249439 0.749987 Vertex 8333 0.542317 0.0691708 0.72093 Vertex 8334 0.47718 0.547597 0.581203 Vertex 8335 0.483345 0.549019 0.582944 Vertex 8336 0.483825 0.553804 0.57987 Vertex 8337 0.580234 0.503835 0.382989 Vertex 8338 0.593673 0.509983 0.374733 Vertex 8339 0.358022 0.182578 0.452936 Vertex 8340 0.374173 0.38325 0.538654 Vertex 8341 0.548074 0.593735 0.47909 Vertex 8342 0.6599 0.435476 0.225665 Vertex 8343 0.35143 0.198557 0.480559 Vertex 8344 0.639698 0.456791 0.185818 Vertex 8345 0.390905 0.395486 0.262238 Vertex 8346 0.314769 0.994474 0.219109 Vertex 8347 0.597256 0.533596 0.286171 Vertex 8348 0.599957 0.539199 0.278028 Vertex 8349 0.447993 0.558999 0.449536 Vertex 8350 0.367634 0.449755 0.540745 Vertex 8351 0.481557 0.525938 0.394959 Vertex 8352 0.511928 0.17322 0.448588 Vertex 8353 0.440939 0.321826 0.41949 Vertex 8354 0.512515 0.553467 0.401894 Vertex 8355 0.420393 0.832027 0.366559 Vertex 8356 0.362257 0.240792 0.562742 Vertex 8357 0.506136 0.716666 0.505381 Vertex 8358 0.510732 0.722701 0.49918 Vertex 8359 0.336795 0.272833 0.202514 Vertex 8360 0.465323 0.760713 0.393146 Vertex 8361 0.426168 0.236616 0.212588 Vertex 8362 0.36478 0.320517 0.208205 Vertex 8363 0.407121 0.386785 0.28167 Vertex 8364 0.577753 0.502721 0.424483 Vertex 8365 0.512242 0.693603 0.424578 Vertex 8366 0.379687 0.395136 0.582121 Vertex 8367 0.374546 0.313966 0.474808 Vertex 8368 0.444137 0.775253 0.447422 Vertex 8369 0.350429 0.90644 0.331006 Vertex 8370 0.483109 0.706769 0.503438 Vertex 8371 0.536786 0.162571 0.434492 Vertex 8372 0.329131 0.925155 0.295861 Vertex 8373 0.520303 0.309341 0.508905 Vertex 8374 0.501078 0.154463 0.701747 Vertex 8375 0.531544 0.588511 0.434155 Vertex 8376 0.533392 0.586841 0.435718 Vertex 8377 0.49172 0.217397 0.541402 Vertex 8378 0.491282 0.690061 0.405619 Vertex 8379 0.481622 0.450075 0.378594 Vertex 8380 0.402134 0.508081 0.562185 Vertex 8381 0.382477 0.865289 0.346049 Vertex 8382 0.308402 0.94964 0.253656 Vertex 8383 0.353402 0.319391 0.225689 Vertex 8384 0.574957 0.507169 0.354264 Vertex 8385 0.577 0.509977 0.362491 Vertex 8386 0.41222 0.212091 0.764373 Vertex 8387 0.345211 0.103907 0.455085 Vertex 8388 0.387102 0.425674 0.372678 Vertex 8389 0.502902 0.516646 0.394751 Vertex 8390 0.524686 0.368011 0.515828 Vertex 8391 0.525 0.35966 0.503355 Vertex 8392 0.525965 0.358055 0.513809 Vertex 8393 0.492265 0.222414 0.542089 Vertex 8394 0.455503 0.812346 0.470923 Vertex 8395 0.590137 0.470692 0.453398 Vertex 8396 0.588479 0.466647 0.459308 Vertex 8397 0.398231 0.287551 0.197379 Vertex 8398 0.406807 0.362461 0.262877 Vertex 8399 0.64302 0.442162 0.21764 Vertex 8400 0.442124 0.0962136 0.662065 Vertex 8401 0.459424 0.642372 0.441594 Vertex 8402 0.339135 0.256351 0.228769 Vertex 8403 0.511792 0.379619 0.57377 Vertex 8404 0.630441 0.462163 0.213038 Vertex 8405 0.357205 0.221733 0.543576 Vertex 8406 0.505917 0.26912 0.561362 Vertex 8407 0.5934 0.422339 0.366773 Vertex 8408 0.520066 0.0395515 0.770858 Vertex 8409 0.445227 0.57101 0.532447 Vertex 8410 0.510732 0.278792 0.544849 Vertex 8411 0.388038 0.248829 0.686839 Vertex 8412 0.376649 0.352588 0.295914 Vertex 8413 0.364904 0.385879 0.300172 Vertex 8414 0.532136 0.401669 0.534354 Vertex 8415 0.588633 0.484699 0.430347 Vertex 8416 0.554358 0.547574 0.47729 Vertex 8417 0.514499 0.0430281 0.663326 Vertex 8418 0.483091 0.486132 0.389243 Vertex 8419 0.359574 0.402889 0.362325 Vertex 8420 0.44929 0.138975 0.637415 Vertex 8421 0.447039 0.134006 0.630704 Vertex 8422 0.416419 0.157892 0.623603 Vertex 8423 0.425215 0.250653 0.223213 Vertex 8424 0.484471 0.740368 0.505535 Vertex 8425 0.452086 0.308772 0.421913 Vertex 8426 0.525165 0.17322 0.449903 Vertex 8427 0.503281 0.369343 0.600706 Vertex 8428 0.563562 0.518334 0.43913 Vertex 8429 0.528974 0.0128107 0.733267 Vertex 8430 0.563994 0.494151 0.364528 Vertex 8431 0.419144 0.523054 0.478533 Vertex 8432 0.562745 0.548557 0.505878 Vertex 8433 0.491092 0.213547 0.545098 Vertex 8434 0.466342 0.4589 0.390428 Vertex 8435 0.402306 0.275949 0.196911 Vertex 8436 0.513723 0.121835 0.673276 Vertex 8437 0.339727 0.0908773 0.45348 Vertex 8438 0.484607 0.533419 0.392412 Vertex 8439 0.481172 0.531855 0.394278 Vertex 8440 0.412439 0.149257 0.651049 Vertex 8441 0.497678 0.587155 0.40023 Vertex 8442 0.548992 0.568356 0.491847 Vertex 8443 0.445411 0.402178 0.642182 Vertex 8444 0.586329 0.433213 0.20156 Vertex 8445 0.482919 0.724632 0.499369 Vertex 8446 0.582438 0.4226 0.428712 Vertex 8447 0.468284 0.193174 0.575914 Vertex 8448 0.463416 0.251713 0.44889 Vertex 8449 0.592613 0.518683 0.216521 Vertex 8450 0.662299 0.412934 0.23298 Vertex 8451 0.367184 0.351966 0.229687 Vertex 8452 0.363927 0.337562 0.221069 Vertex 8453 0.417734 0.403013 0.371671 Vertex 8454 0.693712 0.459362 0.215407 Vertex 8455 0.516305 0.107745 0.706343 Vertex 8456 0.534766 0.100371 0.787063 Vertex 8457 0.351264 0.199037 0.491072 Vertex 8458 0.382352 0.215615 0.638019 Vertex 8459 0.548394 0.523824 0.434167 Vertex 8460 0.624903 0.507862 0.190816 Vertex 8461 0.447875 0.167724 0.490722 Vertex 8462 0.458334 0.223557 0.625996 Vertex 8463 0.454597 0.231487 0.638001 Vertex 8464 0.512414 0.0834266 0.724395 Vertex 8465 0.635173 0.484006 0.23375 Vertex 8466 0.596504 0.471521 0.39946 Vertex 8467 0.440596 0.193624 0.473671 Vertex 8468 0.472471 0.33999 0.631711 Vertex 8469 0.63554 0.442796 0.194115 Vertex 8470 0.413665 0.490426 0.433693 Vertex 8471 0.500041 0.33126 0.445378 Vertex 8472 0.454153 0.181678 0.573841 Vertex 8473 0.55177 0.0121355 0.722837 Vertex 8474 0.366841 0.0947981 0.483212 Vertex 8475 0.530277 0.589702 0.546905 Vertex 8476 0.367711 0.899208 0.353595 Vertex 8477 0.554169 0.0404222 0.726788 Vertex 8478 0.366823 0.379986 0.26912 Vertex 8479 0.597943 0.52595 0.305817 Vertex 8480 0.597665 0.52813 0.302168 Vertex 8481 0.525231 0.128853 0.762353 Vertex 8482 0.370501 0.35947 0.347921 Vertex 8483 0.360705 0.371955 0.366542 Vertex 8484 0.519657 0.0991217 0.718152 Vertex 8485 0.536466 0.121047 0.795342 Vertex 8486 0.518562 0.0226009 0.739533 Vertex 8487 0.362665 0.150057 0.454582 Vertex 8488 0.363619 0.140225 0.456691 Vertex 8489 0.524455 0.114438 0.79427 Vertex 8490 0.351104 0.104997 0.462169 Vertex 8491 0.545735 0.00206701 0.741642 Vertex 8492 0.575324 0.459918 0.501336 Vertex 8493 0.65759 0.41413 0.211528 Vertex 8494 0.431759 0.176691 0.492801 Vertex 8495 0.616102 0.508893 0.197562 Vertex 8496 0.446311 0.579971 0.471302 Vertex 8497 0.586192 0.487246 0.468115 Vertex 8498 0.416573 0.411791 0.371155 Vertex 8499 0.468841 0.188968 0.678328 Vertex 8500 0.516323 0.357474 0.476751 Vertex 8501 0.545989 0.606404 0.496295 Vertex 8502 0.502434 0.350391 0.445544 Vertex 8503 0.430421 0.277648 0.639813 Vertex 8504 0.367664 0.171277 0.484284 Vertex 8505 0.543804 0.562232 0.443033 Vertex 8506 0.513071 0.165195 0.75216 Vertex 8507 0.421128 0.376367 0.632961 Vertex 8508 0.458778 0.511049 0.41801 Vertex 8509 0.452826 0.640998 0.453433 Vertex 8510 0.455136 0.804511 0.471213 Vertex 8511 0.491785 0.096871 0.79552 Vertex 8512 0.390976 0.185516 0.679501 Vertex 8513 0.408264 0.841705 0.362502 Vertex 8514 0.399854 0.841705 0.371043 Vertex 8515 0.483517 0.441126 0.609371 Vertex 8516 0.467425 0.663101 0.43236 Vertex 8517 0.460081 0.21976 0.472119 Vertex 8518 0.60813 0.534627 0.246039 Vertex 8519 0.478335 0.0606836 0.695617 Vertex 8520 0.439062 0.179694 0.793423 Vertex 8521 0.439731 0.184686 0.796255 Vertex 8522 0.552339 0.147024 0.431774 Vertex 8523 0.401666 0.224185 0.468536 Vertex 8524 0.475853 0.543576 0.410055 Vertex 8525 0.402318 0.352689 0.260739 Vertex 8526 0.517845 0.357273 0.461648 Vertex 8527 0.496926 0.491729 0.604597 Vertex 8528 0.519871 0.1668 0.786849 Vertex 8529 0.586329 0.511096 0.328625 Vertex 8530 0.498602 0.707551 0.525921 Vertex 8531 0.500853 0.705265 0.524138 Vertex 8532 0.537798 0.12684 0.434931 Vertex 8533 0.369891 0.222645 0.489265 Vertex 8534 0.520048 0.385861 0.501353 Vertex 8535 0.337364 0.103285 0.462051 Vertex 8536 0.537366 0.668319 0.483988 Vertex 8537 0.647362 0.422167 0.2014 Vertex 8538 0.498958 0.200885 0.526169 Vertex 8539 0.348694 0.140847 0.470686 Vertex 8540 0.441899 0.275108 0.635863 Vertex 8541 0.442894 0.459729 0.616514 Vertex 8542 0.514102 0.122202 0.694 Vertex 8543 0.372923 0.374798 0.51629 Vertex 8544 0.561957 0.401237 0.406419 Vertex 8545 0.410509 0.271951 0.229474 Vertex 8546 0.407914 0.266224 0.225825 Vertex 8547 0.460472 0.308156 0.423151 Vertex 8548 0.492058 0.0629401 0.690985 Vertex 8549 0.466253 0.657131 0.432887 Vertex 8550 0.451766 0.0803765 0.6595 Vertex 8551 0.552297 0.457076 0.368775 Vertex 8552 0.42544 0.542842 0.509704 Vertex 8553 0.460751 0.126011 0.645961 Vertex 8554 0.542797 0.478972 0.396564 Vertex 8555 0.485294 0.106874 0.804789 Vertex 8556 0.429189 0.390049 0.421522 Vertex 8557 0.371591 0.109214 0.470153 Vertex 8558 0.371052 0.106655 0.466783 Vertex 8559 0.359153 0.418697 0.524185 Vertex 8560 0.357714 0.421492 0.515343 Vertex 8561 0.523791 0.121006 0.715007 Vertex 8562 0.508801 0.714593 0.423435 Vertex 8563 0.469942 0.35286 0.416298 Vertex 8564 0.441395 0.140414 0.747837 Vertex 8565 0.393534 0.482697 0.575043 Vertex 8566 0.38391 0.345818 0.28337 Vertex 8567 0.399563 0.312089 0.231754 Vertex 8568 0.401109 0.301381 0.233939 Vertex 8569 0.493527 0.6396 0.403931 Vertex 8570 0.354913 0.256078 0.532637 Vertex 8571 0.512414 0.295902 0.565555 Vertex 8572 0.510773 0.291549 0.567551 Vertex 8573 0.429834 0.142754 0.634678 Vertex 8574 0.518988 0.0338362 0.764402 Vertex 8575 0.626253 0.524564 0.225618 Vertex 8576 0.446495 0.798855 0.382888 Vertex 8577 0.467088 0.489093 0.405199 Vertex 8578 0.591707 0.475465 0.291993 Vertex 8579 0.467046 0.086228 0.728031 Vertex 8580 0.560867 0.488608 0.36865 Vertex 8581 0.381819 0.321802 0.2075 Vertex 8582 0.361037 0.172675 0.452799 Vertex 8583 0.369974 0.171982 0.461654 Vertex 8584 0.408536 0.260568 0.196283 Vertex 8585 0.526658 0.14138 0.76657 Vertex 8586 0.493509 0.0383255 0.676024 Vertex 8587 0.644045 0.443607 0.221401 Vertex 8588 0.483707 0.477657 0.387798 Vertex 8589 0.421898 0.393164 0.626813 Vertex 8590 0.529844 0.105512 0.766552 Vertex 8591 0.503275 0.253573 0.540881 Vertex 8592 0.502138 0.251127 0.530333 Vertex 8593 0.612756 0.513791 0.335424 Vertex 8594 0.369435 0.209698 0.213619 Vertex 8595 0.500136 0.0888695 0.730418 Vertex 8596 0.453412 0.788229 0.383475 Vertex 8597 0.460756 0.232998 0.758267 Vertex 8598 0.450836 0.262593 0.439829 Vertex 8599 0.400866 0.842582 0.395622 Vertex 8600 0.520475 0.0189288 0.731289 Vertex 8601 0.476955 0.192931 0.703168 Vertex 8602 0.374066 0.180428 0.473523 Vertex 8603 0.519355 0.0617201 0.673442 Vertex 8604 0.387233 0.0730916 0.472575 Vertex 8605 0.355742 0.421954 0.47116 Vertex 8606 0.420269 0.1634 0.72093 Vertex 8607 0.385148 0.208774 0.476982 Vertex 8608 0.557385 0.535409 0.466374 Vertex 8609 0.446903 0.416813 0.638872 Vertex 8610 0.472685 0.796474 0.474725 Vertex 8611 0.481142 0.788774 0.476146 Vertex 8612 0.529092 0.139585 0.457792 Vertex 8613 0.52587 0.141054 0.457561 Vertex 8614 0.477263 0.686004 0.423393 Vertex 8615 0.459187 0.487873 0.407781 Vertex 8616 0.51351 0.0703435 0.638125 Vertex 8617 0.45436 0.134225 0.648158 Vertex 8618 0.455148 0.131738 0.64393 Vertex 8619 0.374493 0.309151 0.468086 Vertex 8620 0.513741 0.644486 0.422321 Vertex 8621 0.550041 0.470105 0.383557 Vertex 8622 0.54503 0.464331 0.389504 Vertex 8623 0.548898 0.464094 0.383297 Vertex 8624 0.390514 0.274835 0.195087 Vertex 8625 0.461698 0.668568 0.439225 Vertex 8626 0.455539 0.292858 0.426929 Vertex 8627 0.359775 0.369675 0.372837 Vertex 8628 0.358442 0.88654 0.327126 Vertex 8629 0.368381 0.880824 0.321085 Vertex 8630 0.520119 0.121059 0.712467 Vertex 8631 0.362381 0.932103 0.314505 Vertex 8632 0.392818 0.262332 0.200909 Vertex 8633 0.460028 0.195637 0.640115 Vertex 8634 0.443077 0.444194 0.402747 Vertex 8635 0.493444 0.626487 0.402859 Vertex 8636 0.628599 0.523445 0.235917 Vertex 8637 0.630524 0.520442 0.244221 Vertex 8638 0.321604 0.246774 0.217676 Vertex 8639 0.505893 0.370616 0.452337 Vertex 8640 0.503826 0.392844 0.447291 Vertex 8641 0.505621 0.393904 0.446788 Vertex 8642 0.473697 0.0724638 0.703956 Vertex 8643 0.415839 0.880333 0.387366 Vertex 8644 0.500574 0.338202 0.446456 Vertex 8645 0.503945 0.315311 0.594469 Vertex 8646 0.359124 0.271607 0.202514 Vertex 8647 0.524573 0.322827 0.529498 Vertex 8648 0.502085 0.409434 0.427859 Vertex 8649 0.364561 0.312598 0.493073 Vertex 8650 0.453318 0.545779 0.570613 Vertex 8651 0.520048 0.0244784 0.724525 Vertex 8652 0.50661 0.42854 0.413455 Vertex 8653 0.576473 0.429932 0.461938 Vertex 8654 0.480976 0.0713503 0.740274 Vertex 8655 0.444866 0.539608 0.445497 Vertex 8656 0.374457 0.355395 0.449352 Vertex 8657 0.479123 0.542427 0.585437 Vertex 8658 0.540091 0.0495312 0.795325 Vertex 8659 0.326969 0.94271 0.235082 Vertex 8660 0.45025 0.41034 0.393703 Vertex 8661 0.374493 0.363184 0.590525 Vertex 8662 0.548027 0.57021 0.501247 Vertex 8663 0.510868 0.557317 0.575179 Vertex 8664 0.456356 0.0922099 0.662237 Vertex 8665 0.447271 0.596264 0.467393 Vertex 8666 0.446376 0.601168 0.472575 Vertex 8667 0.44749 0.603827 0.470686 Vertex 8668 0.526332 0.0590786 0.659725 Vertex 8669 0.520877 0.312811 0.536481 Vertex 8670 0.352111 0.316134 0.219814 Vertex 8671 0.536815 0.0821769 0.764373 Vertex 8672 0.54179 0.0785286 0.745823 Vertex 8673 0.485774 0.615163 0.414077 Vertex 8674 0.480668 0.604283 0.42485 Vertex 8675 0.502298 0.259205 0.482673 Vertex 8676 0.365763 0.187665 0.511753 Vertex 8677 0.379059 0.346227 0.383421 Vertex 8678 0.479567 0.212624 0.760369 Vertex 8679 0.535269 0.114461 0.430643 Vertex 8680 0.466241 0.771225 0.38723 Vertex 8681 0.498087 0.186753 0.764509 Vertex 8682 0.524182 0.396706 0.462933 Vertex 8683 0.526634 0.473617 0.592396 Vertex 8684 0.618222 0.516172 0.314097 Vertex 8685 0.481711 0.382195 0.411832 Vertex 8686 0.405498 0.444614 0.602447 Vertex 8687 0.424723 0.239323 0.202786 Vertex 8688 0.382026 0.22191 0.605586 Vertex 8689 0.600987 0.525026 0.259235 Vertex 8690 0.599276 0.519127 0.253715 Vertex 8691 0.440193 0.568078 0.489549 Vertex 8692 0.46556 0.219968 0.60285 Vertex 8693 0.402454 0.873397 0.404844 Vertex 8694 0.365787 0.340482 0.256546 Vertex 8695 0.394577 0.457158 0.592574 Vertex 8696 0.658787 0.447878 0.208987 Vertex 8697 0.406001 0.434327 0.380105 Vertex 8698 0.417343 0.38338 0.39198 Vertex 8699 0.417361 0.381538 0.400206 Vertex 8700 0.412031 0.375811 0.395865 Vertex 8701 0.414506 0.384203 0.379814 Vertex 8702 0.518188 0.0672459 0.778996 Vertex 8703 0.526332 0.0411566 0.659026 Vertex 8704 0.395655 0.357137 0.406111 Vertex 8705 0.536359 0.0557323 0.710465 Vertex 8706 0.421631 0.330585 0.646026 Vertex 8707 0.343813 0.254402 0.219814 Vertex 8708 0.526131 0.390084 0.445426 Vertex 8709 0.481527 0.0699407 0.704157 Vertex 8710 0.37457 0.282262 0.234911 Vertex 8711 0.350897 0.942165 0.296619 Vertex 8712 0.500711 0.108847 0.800009 Vertex 8713 0.606803 0.448914 0.379572 Vertex 8714 0.446056 0.202679 0.470425 Vertex 8715 0.497128 0.760736 0.48702 Vertex 8716 0.467479 0.224635 0.735458 Vertex 8717 0.428389 0.39497 0.637421 Vertex 8718 0.442941 0.226275 0.788265 Vertex 8719 0.445938 0.503853 0.427735 Vertex 8720 0.524526 0.120899 0.795739 Vertex 8721 0.483482 0.346073 0.629733 Vertex 8722 0.4646 0.350574 0.632789 Vertex 8723 0.464956 0.366583 0.408486 Vertex 8724 0.465885 0.364019 0.410257 Vertex 8725 0.444481 0.11593 0.723625 Vertex 8726 0.335853 0.939577 0.302784 Vertex 8727 0.519841 0.519287 0.590744 Vertex 8728 0.384739 0.209005 0.662912 Vertex 8729 0.667765 0.491137 0.204883 Vertex 8730 0.598488 0.51276 0.234123 Vertex 8731 0.471471 0.158366 0.657042 Vertex 8732 0.383922 0.866841 0.327316 Vertex 8733 0.428857 0.197023 0.478758 Vertex 8734 0.594644 0.442595 0.208721 Vertex 8735 0.569775 0.537837 0.48615 Vertex 8736 0.466661 0.103854 0.654584 Vertex 8737 0.431581 0.258447 0.669136 Vertex 8738 0.543158 0.638836 0.497533 Vertex 8739 0.441608 0.527609 0.44481 Vertex 8740 0.429834 0.285413 0.430453 Vertex 8741 0.355807 0.12726 0.474867 Vertex 8742 0.403964 0.16982 0.526163 Vertex 8743 0.428211 0.551281 0.51597 Vertex 8744 0.52606 0.0285591 0.766013 Vertex 8745 0.531793 0.0183839 0.760239 Vertex 8746 0.536371 0.0155588 0.760185 Vertex 8747 0.432304 0.860504 0.40928 Vertex 8748 0.438469 0.854332 0.413728 Vertex 8749 0.434572 0.855493 0.416665 Vertex 8750 0.428371 0.23449 0.458799 Vertex 8751 0.357998 0.269748 0.516995 Vertex 8752 0.366456 0.332457 0.582861 Vertex 8753 0.523057 0.576074 0.425028 Vertex 8754 0.455248 0.439319 0.389024 Vertex 8755 0.527434 0.701291 0.455743 Vertex 8756 0.524958 0.0729257 0.719461 Vertex 8757 0.428028 0.797078 0.420379 Vertex 8758 0.362517 0.204871 0.474695 Vertex 8759 0.404503 0.356988 0.442612 Vertex 8760 0.492455 0.39362 0.420254 Vertex 8761 0.494587 0.236397 0.557719 Vertex 8762 0.423136 0.386317 0.337521 Vertex 8763 0.409306 0.336265 0.218185 Vertex 8764 0.59295 0.521028 0.220821 Vertex 8765 0.416254 0.264577 0.683641 Vertex 8766 0.442444 0.501892 0.430631 Vertex 8767 0.442669 0.500216 0.430317 Vertex 8768 0.516258 0.433101 0.597058 Vertex 8769 0.431149 0.154179 0.731372 Vertex 8770 0.519355 0.10601 0.711566 Vertex 8771 0.43703 0.540662 0.482667 Vertex 8772 0.437439 0.541237 0.488868 Vertex 8773 0.455 0.640263 0.487986 Vertex 8774 0.470393 0.188684 0.483893 Vertex 8775 0.557006 0.0178154 0.772291 Vertex 8776 0.463534 0.0788839 0.734025 Vertex 8777 0.476268 0.199499 0.792067 Vertex 8778 0.418818 0.381129 0.354069 Vertex 8779 0.588727 0.513412 0.32468 Vertex 8780 0.455325 0.770088 0.468121 Vertex 8781 0.43998 0.775584 0.430809 Vertex 8782 0.436947 0.783657 0.436998 Vertex 8783 0.437439 0.7813 0.430891 Vertex 8784 0.507771 0.265329 0.528219 Vertex 8785 0.326425 0.922632 0.285686 Vertex 8786 0.5639 0.511777 0.426716 Vertex 8787 0.551468 0.441078 0.360477 Vertex 8788 0.609084 0.46208 0.306954 Vertex 8789 0.400736 0.838365 0.385192 Vertex 8790 0.412451 0.153877 0.683576 Vertex 8791 0.472205 0.383161 0.402261 Vertex 8792 0.542507 0.637231 0.471977 Vertex 8793 0.448905 0.628513 0.476958 Vertex 8794 0.592121 0.418791 0.377043 Vertex 8795 0.591428 0.439254 0.428724 Vertex 8796 0.359337 0.273254 0.225257 Vertex 8797 0.527683 0.0700414 0.793962 Vertex 8798 0.475143 0.768732 0.493956 Vertex 8799 0.502955 0.34493 0.447149 Vertex 8800 0.443865 0.269884 0.435677 Vertex 8801 0.446951 0.273485 0.434155 Vertex 8802 0.456409 0.284311 0.430891 Vertex 8803 0.518787 0.117754 0.685696 Vertex 8804 0.370904 0.362733 0.497119 Vertex 8805 0.646657 0.42443 0.220886 Vertex 8806 0.549034 0.422339 0.390084 Vertex 8807 0.554121 0.41734 0.385245 Vertex 8808 0.367794 0.242734 0.233856 Vertex 8809 0.517039 0.318829 0.559271 Vertex 8810 0.548382 0.0267882 0.780779 Vertex 8811 0.550206 0.0319113 0.782715 Vertex 8812 0.388707 0.27833 0.229142 Vertex 8813 0.314058 0.939577 0.255202 Vertex 8814 0.31513 0.938197 0.260793 Vertex 8815 0.492863 0.233732 0.511771 Vertex 8816 0.482943 0.352013 0.425899 Vertex 8817 0.468178 0.505322 0.410541 Vertex 8818 0.376246 0.389237 0.557234 Vertex 8819 0.52606 0.40126 0.478208 Vertex 8820 0.54256 0.545714 0.559348 Vertex 8821 0.314858 0.995753 0.210373 Vertex 8822 0.361966 0.358019 0.377368 Vertex 8823 0.532107 0.577767 0.546863 Vertex 8824 0.502748 0.177135 0.772753 Vertex 8825 0.488575 0.792434 0.461855 Vertex 8826 0.587484 0.514087 0.337533 Vertex 8827 0.580045 0.510089 0.341832 Vertex 8828 0.401299 0.255983 0.71769 Vertex 8829 0.571747 0.511961 0.430891 Vertex 8830 0.533392 0.120313 0.434492 Vertex 8831 0.355949 0.325308 0.239891 Vertex 8832 0.497743 0.716228 0.521402 Vertex 8833 0.469155 0.477692 0.397594 Vertex 8834 0.534357 0.622045 0.443187 Vertex 8835 0.441437 0.129967 0.739403 Vertex 8836 0.446951 0.132555 0.750111 Vertex 8837 0.384117 0.247863 0.611444 Vertex 8838 0.492016 0.218416 0.509598 Vertex 8839 0.503293 0.045486 0.675485 Vertex 8840 0.550503 0.149091 0.413508 Vertex 8841 0.442923 0.572301 0.483266 Vertex 8842 0.507291 0.16359 0.732059 Vertex 8843 0.538012 0.110262 0.792908 Vertex 8844 0.536466 0.111974 0.787169 Vertex 8845 0.472169 0.2264 0.479676 Vertex 8846 0.491009 0.078422 0.708907 Vertex 8847 0.500154 0.0789668 0.706218 Vertex 8848 0.561223 0.00698874 0.754038 Vertex 8849 0.340485 0.274586 0.200535 Vertex 8850 0.335806 0.933542 0.30436 Vertex 8851 0.400114 0.477124 0.423056 Vertex 8852 0.601982 0.474186 0.288854 Vertex 8853 0.598666 0.483331 0.280367 Vertex 8854 0.599116 0.470401 0.292947 Vertex 8855 0.453329 0.754796 0.422292 Vertex 8856 0.456166 0.226548 0.658778 Vertex 8857 0.476759 0.514229 0.407479 Vertex 8858 0.601834 0.499979 0.384091 Vertex 8859 0.667493 0.477236 0.217012 Vertex 8860 0.485596 0.0750224 0.701865 Vertex 8861 0.452352 0.587481 0.528266 Vertex 8862 0.45654 0.773896 0.392276 Vertex 8863 0.480035 0.145869 0.648851 Vertex 8864 0.426991 0.312805 0.425887 Vertex 8865 0.599139 0.517244 0.339588 Vertex 8866 0.441052 0.128865 0.662829 Vertex 8867 0.438783 0.141581 0.607002 Vertex 8868 0.465862 0.302068 0.426603 Vertex 8869 0.482048 0.632422 0.41904 Vertex 8870 0.677473 0.452314 0.211492 Vertex 8871 0.527434 0.535989 0.415943 Vertex 8872 0.52757 0.546152 0.576162 Vertex 8873 0.522293 0.536806 0.583341 Vertex 8874 0.406617 0.844512 0.356544 Vertex 8875 0.522636 0.425514 0.586308 Vertex 8876 0.50661 0.301617 0.584105 Vertex 8877 0.510347 0.108018 0.714273 Vertex 8878 0.511715 0.107692 0.716198 Vertex 8879 0.512361 0.107988 0.712005 Vertex 8880 0.421643 0.247129 0.224818 Vertex 8881 0.359201 0.391873 0.374745 Vertex 8882 0.383199 0.363794 0.614298 Vertex 8883 0.368037 0.215153 0.23529 Vertex 8884 0.352952 0.92878 0.323893 Vertex 8885 0.498573 0.518239 0.595151 Vertex 8886 0.484767 0.561818 0.394982 Vertex 8887 0.470345 0.263221 0.442897 Vertex 8888 0.536359 0.564317 0.436169 Vertex 8889 0.354237 0.931202 0.2817 Vertex 8890 0.42419 0.547781 0.526169 Vertex 8891 0.425084 0.548741 0.532394 Vertex 8892 0.442692 0.521603 0.437122 Vertex 8893 0.595225 0.497521 0.268385 Vertex 8894 0.492774 0.574747 0.389966 Vertex 8895 0.36443 0.370095 0.476466 Vertex 8896 0.544082 0.468791 0.392276 Vertex 8897 0.407666 0.370534 0.410583 Vertex 8898 0.453175 0.541811 0.433746 Vertex 8899 0.451949 0.536398 0.434836 Vertex 8900 0.413879 0.240371 0.220003 Vertex 8901 0.463854 0.517949 0.419289 Vertex 8902 0.540357 0.550209 0.437389 Vertex 8903 0.367877 0.113295 0.47697 Vertex 8904 0.612756 0.47543 0.289577 Vertex 8905 0.373599 0.306267 0.245986 Vertex 8906 0.60694 0.49655 0.198001 Vertex 8907 0.460827 0.757431 0.405998 Vertex 8908 0.484974 0.599285 0.554681 Vertex 8909 0.486698 0.588713 0.563079 Vertex 8910 0.379071 0.425626 0.358262 Vertex 8911 0.381268 0.337236 0.615335 Vertex 8912 0.406475 0.163199 0.689866 Vertex 8913 0.546138 0.398808 0.455364 Vertex 8914 0.460863 0.507809 0.600327 Vertex 8915 0.583989 0.495591 0.398844 Vertex 8916 0.476416 0.692655 0.503355 Vertex 8917 0.398959 0.334198 0.246288 Vertex 8918 0.508351 0.0995303 0.709393 Vertex 8919 0.381067 0.35167 0.220003 Vertex 8920 0.385148 0.345913 0.218996 Vertex 8921 0.499384 0.172053 0.7304 Vertex 8922 0.352401 0.208721 0.497119 Vertex 8923 0.448733 0.490402 0.416553 Vertex 8924 0.37932 0.336626 0.214104 Vertex 8925 0.376909 0.330443 0.21196 Vertex 8926 0.371763 0.325983 0.209858 Vertex 8927 0.402472 0.338006 0.204717 Vertex 8928 0.431214 0.148534 0.602844 Vertex 8929 0.451926 0.183597 0.59871 Vertex 8930 0.515097 0.155008 0.451686 Vertex 8931 0.627995 0.447333 0.201886 Vertex 8932 0.421341 0.228633 0.77681 Vertex 8933 0.530863 0.0706159 0.705691 Vertex 8934 0.382968 0.224439 0.648377 Vertex 8935 0.629706 0.497486 0.264861 Vertex 8936 0.481954 0.0661265 0.701154 Vertex 8937 0.544758 0.624201 0.467434 Vertex 8938 0.449918 0.566289 0.552211 Vertex 8939 0.516856 0.110244 0.685732 Vertex 8940 0.322569 0.235728 0.228248 Vertex 8941 0.326975 0.239661 0.227839 Vertex 8942 0.595278 0.526921 0.300386 Vertex 8943 0.541636 0.13708 0.443293 Vertex 8944 0.397621 0.848374 0.391405 Vertex 8945 0.439613 0.819927 0.452811 Vertex 8946 0.46967 0.785795 0.485309 Vertex 8947 0.465039 0.787548 0.483763 Vertex 8948 0.55087 0.493186 0.399513 Vertex 8949 0.52587 0.590288 0.428931 Vertex 8950 0.491092 0.77007 0.485321 Vertex 8951 0.411693 0.845803 0.420278 Vertex 8952 0.374937 0.305929 0.602773 Vertex 8953 0.630423 0.490693 0.249137 Vertex 8954 0.619744 0.455352 0.206624 Vertex 8955 0.630849 0.511985 0.201264 Vertex 8956 0.395803 0.304899 0.238885 Vertex 8957 0.491229 0.218049 0.522941 Vertex 8958 0.401305 0.251778 0.202188 Vertex 8959 0.374363 0.419798 0.395622 Vertex 8960 0.3695 0.412596 0.391458 Vertex 8961 0.452139 0.810309 0.373341 Vertex 8962 0.486715 0.71621 0.402557 Vertex 8963 0.488919 0.237813 0.481329 Vertex 8964 0.58913 0.413905 0.391583 Vertex 8965 0.37977 0.236356 0.207027 Vertex 8966 0.436485 0.3647 0.648496 Vertex 8967 0.392101 0.898965 0.36849 Vertex 8968 0.532563 0.0756739 0.795194 Vertex 8969 0.574365 0.507264 0.37077 Vertex 8970 0.576248 0.505594 0.37895 Vertex 8971 0.573311 0.506115 0.374869 Vertex 8972 0.441265 0.772516 0.426769 Vertex 8973 0.366177 0.226388 0.230919 Vertex 8974 0.425084 0.263286 0.712644 Vertex 8975 0.424682 0.247443 0.206192 Vertex 8976 0.449403 0.784492 0.399839 Vertex 8977 0.363743 0.406289 0.528639 Vertex 8978 0.39068 0.399241 0.273432 Vertex 8979 0.441265 0.353553 0.417998 Vertex 8980 0.484933 0.770473 0.408368 Vertex 8981 0.377898 0.870465 0.356124 Vertex 8982 0.380196 0.868179 0.360258 Vertex 8983 0.380457 0.866018 0.352523 Vertex 8984 0.505917 0.0876139 0.797617 Vertex 8985 0.491448 0.113703 0.64393 Vertex 8986 0.497755 0.657836 0.544796 Vertex 8987 0.445529 0.296986 0.636123 Vertex 8988 0.493894 0.272265 0.458349 Vertex 8989 0.431267 0.474885 0.416813 Vertex 8990 0.613532 0.515206 0.325237 Vertex 8991 0.508606 0.650859 0.54081 Vertex 8992 0.385148 0.197781 0.478622 Vertex 8993 0.579909 0.513767 0.451603 Vertex 8994 0.454804 0.240721 0.731324 Vertex 8995 0.419671 0.264429 0.714705 Vertex 8996 0.610061 0.447955 0.197953 Vertex 8997 0.612104 0.44863 0.195797 Vertex 8998 0.550911 0.477994 0.557234 Vertex 8999 0.502517 0.711359 0.513767 Vertex 9000 0.367587 0.290921 0.19498 Vertex 9001 0.53383 0.0880285 0.789372 Vertex 9002 0.511727 0.733196 0.436465 Vertex 9003 0.536697 0.0542101 0.795479 Vertex 9004 0.536904 0.0551637 0.797261 Vertex 9005 0.517164 0.294872 0.511748 Vertex 9006 0.485039 0.493713 0.392057 Vertex 9007 0.40718 0.338711 0.231783 Vertex 9008 0.461361 0.170282 0.55535 Vertex 9009 0.554115 0.555558 0.470088 Vertex 9010 0.454295 0.211238 0.472036 Vertex 9011 0.410651 0.158082 0.635762 Vertex 9012 0.4689 0.0842143 0.723435 Vertex 9013 0.522269 0.0516812 0.639867 Vertex 9014 0.552327 0.46933 0.360341 Vertex 9015 0.55257 0.468708 0.352766 Vertex 9016 0.492674 0.0635383 0.754962 Vertex 9017 0.489381 0.0665056 0.753819 Vertex 9018 0.448366 0.175098 0.582032 Vertex 9019 0.468728 0.594564 0.547751 Vertex 9020 0.500853 0.18715 0.501247 Vertex 9021 0.403538 0.841746 0.40392 Vertex 9022 0.480888 0.784557 0.479771 Vertex 9023 0.61561 0.463146 0.369752 Vertex 9024 0.617067 0.466025 0.357255 Vertex 9025 0.617624 0.468518 0.351184 Vertex 9026 0.524549 0.442085 0.590389 Vertex 9027 0.517164 0.450353 0.598846 Vertex 9028 0.443646 0.205807 0.798351 Vertex 9029 0.60216 0.524991 0.309418 Vertex 9030 0.600389 0.532915 0.295991 Vertex 9031 0.440388 0.0926482 0.688533 Vertex 9032 0.41851 0.38274 0.412798 Vertex 9033 0.513261 0.0305432 0.754044 Vertex 9034 0.568987 0.501738 0.358357 Vertex 9035 0.530508 0.136198 0.778943 Vertex 9036 0.659177 0.444152 0.209046 Vertex 9037 0.532196 0.0950114 0.781051 Vertex 9038 0.538148 0.0458059 0.721368 Vertex 9039 0.378171 0.878645 0.368585 Vertex 9040 0.356287 0.422002 0.483769 Vertex 9041 0.387623 0.455068 0.41583 Vertex 9042 0.399285 0.298455 0.205345 Vertex 9043 0.448301 0.612954 0.488957 Vertex 9044 0.527463 0.125033 0.716684 Vertex 9045 0.623215 0.450318 0.200038 Vertex 9046 0.552155 0.518351 0.551033 Vertex 9047 0.486627 0.0917539 0.779031 Vertex 9048 0.371064 0.370042 0.484035 Vertex 9049 0.384579 0.349709 0.295955 Vertex 9050 0.364146 0.236681 0.487471 Vertex 9051 0.486212 0.79735 0.457703 Vertex 9052 0.512473 0.680212 0.424021 Vertex 9053 0.579162 0.515633 0.455684 Vertex 9054 0.578996 0.515153 0.46394 Vertex 9055 0.359124 0.235977 0.507312 Vertex 9056 0.435804 0.11169 0.666442 Vertex 9057 0.386202 0.206405 0.596146 Vertex 9058 0.594135 0.468524 0.435416 Vertex 9059 0.464665 0.625398 0.437661 Vertex 9060 0.515233 0.10402 0.664973 Vertex 9061 0.492425 0.353423 0.621589 Vertex 9062 0.44335 0.200447 0.800442 Vertex 9063 0.402519 0.483597 0.58398 Vertex 9064 0.616114 0.49732 0.368798 Vertex 9065 0.37104 0.359837 0.298099 Vertex 9066 0.440987 0.258743 0.441256 Vertex 9067 0.444339 0.262676 0.438887 Vertex 9068 0.4066 0.891698 0.354489 Vertex 9069 0.407085 0.891621 0.356509 Vertex 9070 0.442781 0.49501 0.592349 Vertex 9071 0.409869 0.423684 0.327334 Vertex 9072 0.344447 0.279621 0.231244 Vertex 9073 0.39858 0.452177 0.59659 Vertex 9074 0.433873 0.148345 0.596619 Vertex 9075 0.502541 0.494122 0.397689 Vertex 9076 0.395222 0.169465 0.530303 Vertex 9077 0.596735 0.427592 0.196561 Vertex 9078 0.595331 0.427208 0.199523 Vertex 9079 0.597031 0.427504 0.199795 Vertex 9080 0.597576 0.427018 0.2014 Vertex 9081 0.597339 0.427729 0.200204 Vertex 9082 0.597303 0.429387 0.199718 Vertex 9083 0.413357 0.164271 0.602844 Vertex 9084 0.409046 0.262498 0.224735 Vertex 9085 0.40474 0.184361 0.727202 Vertex 9086 0.404467 0.366056 0.624793 Vertex 9087 0.390306 0.362911 0.619712 Vertex 9088 0.400482 0.186303 0.567462 Vertex 9089 0.429491 0.406674 0.396019 Vertex 9090 0.338145 0.0961307 0.455684 Vertex 9091 0.472809 0.498724 0.606599 Vertex 9092 0.489268 0.200109 0.756188 Vertex 9093 0.369322 0.453368 0.456987 Vertex 9094 0.364572 0.442796 0.4624 Vertex 9095 0.592151 0.444822 0.200725 Vertex 9096 0.592068 0.446427 0.205368 Vertex 9097 0.592944 0.448263 0.205025 Vertex 9098 0.59555 0.515911 0.241248 Vertex 9099 0.313857 0.992413 0.201726 Vertex 9100 0.691385 0.449453 0.201234 Vertex 9101 0.526332 0.574315 0.428481 Vertex 9102 0.538942 0.568836 0.440616 Vertex 9103 0.388601 0.492842 0.474506 Vertex 9104 0.506764 0.577631 0.400141 Vertex 9105 0.381766 0.173558 0.507531 Vertex 9106 0.374759 0.340944 0.472427 Vertex 9107 0.32601 0.243498 0.233116 Vertex 9108 0.374759 0.364818 0.226838 Vertex 9109 0.3747 0.378979 0.234377 Vertex 9110 0.517229 0.519145 0.404257 Vertex 9111 0.331103 0.240602 0.22502 Vertex 9112 0.357436 0.15762 0.452379 Vertex 9113 0.630115 0.486422 0.235355 Vertex 9114 0.374469 0.0900422 0.478575 Vertex 9115 0.427394 0.268113 0.436287 Vertex 9116 0.418925 0.260769 0.442358 Vertex 9117 0.371336 0.339913 0.265122 Vertex 9118 0.556188 0.422552 0.515799 Vertex 9119 0.360438 0.210403 0.549818 Vertex 9120 0.583083 0.497895 0.463958 Vertex 9121 0.525491 0.612089 0.540786 Vertex 9122 0.49146 0.592847 0.399851 Vertex 9123 0.54734 0.15589 0.443459 Vertex 9124 0.40689 0.361774 0.248349 Vertex 9125 0.432529 0.493062 0.436287 Vertex 9126 0.554625 0.0129232 0.732983 Vertex 9127 0.425499 0.182116 0.487944 Vertex 9128 0.426352 0.253863 0.751799 Vertex 9129 0.40782 0.365298 0.43531 Vertex 9130 0.536413 0.524813 0.425543 Vertex 9131 0.634687 0.471497 0.183502 Vertex 9132 0.480408 0.680425 0.420006 Vertex 9133 0.450208 0.289239 0.428226 Vertex 9134 0.523353 0.477064 0.595287 Vertex 9135 0.354658 0.394633 0.494637 Vertex 9136 0.442337 0.159308 0.599237 Vertex 9137 0.43998 0.150264 0.596756 Vertex 9138 0.432405 0.8332 0.353387 Vertex 9139 0.603037 0.46988 0.186546 Vertex 9140 0.478767 0.13567 0.646808 Vertex 9141 0.399883 0.373051 0.620784 Vertex 9142 0.45616 0.722399 0.451644 Vertex 9143 0.624192 0.530736 0.26501 Vertex 9144 0.534399 0.146858 0.459859 Vertex 9145 0.592856 0.500803 0.266917 Vertex 9146 0.422727 0.195525 0.479493 Vertex 9147 0.504175 0.418667 0.425597 Vertex 9148 0.535921 0.0487139 0.794697 Vertex 9149 0.531372 0.510551 0.418578 Vertex 9150 0.444955 0.588399 0.491972 Vertex 9151 0.444777 0.589056 0.496384 Vertex 9152 0.541133 0.0689339 0.774832 Vertex 9153 0.536969 0.0766037 0.785155 Vertex 9154 0.673611 0.450217 0.208389 Vertex 9155 0.452785 0.654626 0.457697 Vertex 9156 0.676602 0.457188 0.191397 Vertex 9157 0.382003 0.316306 0.615353 Vertex 9158 0.512544 0.0218428 0.660164 Vertex 9159 0.544627 0.636544 0.486345 Vertex 9160 0.358975 0.22794 0.215354 Vertex 9161 0.548625 0.398945 0.475637 Vertex 9162 0.373681 0.382101 0.569665 Vertex 9163 0.343352 0.299752 0.221419 Vertex 9164 0.371271 0.328927 0.596726 Vertex 9165 0.374594 0.343657 0.602791 Vertex 9166 0.374049 0.452882 0.559461 Vertex 9167 0.495363 0.0430281 0.681604 Vertex 9168 0.557894 0.541237 0.475596 Vertex 9169 0.457185 0.468879 0.621761 Vertex 9170 0.497447 0.502579 0.393241 Vertex 9171 0.387623 0.372512 0.229971 Vertex 9172 0.393736 0.197444 0.70225 Vertex 9173 0.552759 0.419751 0.383475 Vertex 9174 0.480118 0.254402 0.456175 Vertex 9175 0.364537 0.217042 0.225529 Vertex 9176 0.363619 0.219695 0.217593 Vertex 9177 0.373439 0.361732 0.507483 Vertex 9178 0.392699 0.404867 0.282475 Vertex 9179 0.55755 0.536641 0.526163 Vertex 9180 0.48681 0.631847 0.5368 Vertex 9181 0.449693 0.188193 0.800744 Vertex 9182 0.518923 0.093353 0.683534 Vertex 9183 0.500965 0.570033 0.393691 Vertex 9184 0.373403 0.372553 0.501288 Vertex 9185 0.372704 0.372097 0.494969 Vertex 9186 0.373918 0.376125 0.501904 Vertex 9187 0.530537 0.628744 0.438466 Vertex 9188 0.357963 0.438295 0.492487 Vertex 9189 0.35692 0.894399 0.292556 Vertex 9190 0.462669 0.213317 0.652671 Vertex 9191 0.53123 0.673004 0.501253 Vertex 9192 0.443948 0.321802 0.640767 Vertex 9193 0.486319 0.11317 0.807247 Vertex 9194 0.435348 0.524363 0.461968 Vertex 9195 0.52009 0.374253 0.491101 Vertex 9196 0.336517 0.943593 0.299094 Vertex 9197 0.586192 0.512103 0.309447 Vertex 9198 0.479294 0.0759522 0.731153 Vertex 9199 0.491217 0.248568 0.590412 Vertex 9200 0.455302 0.827828 0.445236 Vertex 9201 0.425611 0.111346 0.685536 Vertex 9202 0.51117 0.311491 0.577803 Vertex 9203 0.510844 0.618415 0.420787 Vertex 9204 0.444374 0.796148 0.457727 Vertex 9205 0.550585 0.459474 0.357989 Vertex 9206 0.420725 0.458959 0.400082 Vertex 9207 0.539036 0.634939 0.510279 Vertex 9208 0.459329 0.808224 0.386329 Vertex 9209 0.489612 0.0650427 0.734292 Vertex 9210 0.398184 0.174268 0.611171 Vertex 9211 0.49573 0.331942 0.615276 Vertex 9212 0.448828 0.397961 0.636882 Vertex 9213 0.391272 0.861268 0.385269 Vertex 9214 0.600827 0.448849 0.18532 Vertex 9215 0.35682 0.40142 0.435961 Vertex 9216 0.396199 0.31232 0.205807 Vertex 9217 0.379426 0.42016 0.381052 Vertex 9218 0.480864 0.685892 0.418839 Vertex 9219 0.528304 0.349384 0.501199 Vertex 9220 0.356997 0.248734 0.513773 Vertex 9221 0.357388 0.283346 0.511748 Vertex 9222 0.442988 0.488578 0.596146 Vertex 9223 0.462018 0.196952 0.799684 Vertex 9224 0.602563 0.479031 0.393827 Vertex 9225 0.399729 0.36104 0.39747 Vertex 9226 0.437326 0.151839 0.754079 Vertex 9227 0.543537 0.0592681 0.718478 Vertex 9228 0.49082 0.661733 0.405252 Vertex 9229 0.490713 0.667756 0.404844 Vertex 9230 0.453122 0.131098 0.804262 Vertex 9231 0.490115 0.37953 0.431164 Vertex 9232 0.435526 0.547088 0.502023 Vertex 9233 0.505739 0.289375 0.582008 Vertex 9234 0.501723 0.287551 0.590359 Vertex 9235 0.548809 0.0272265 0.716873 Vertex 9236 0.541228 0.0747499 0.760322 Vertex 9237 0.54349 0.0755969 0.74991 Vertex 9238 0.357388 0.207317 0.478628 Vertex 9239 0.51672 0.534029 0.404559 Vertex 9240 0.506817 0.686223 0.524156 Vertex 9241 0.436628 0.559792 0.542782 Vertex 9242 0.51351 0.60741 0.553052 Vertex 9243 0.36847 0.207098 0.479084 Vertex 9244 0.557657 0.400573 0.406993 Vertex 9245 0.585754 0.477728 0.298401 Vertex 9246 0.572144 0.529717 0.466054 Vertex 9247 0.456137 0.446273 0.623585 Vertex 9248 0.349404 0.153243 0.45813 Vertex 9249 0.552481 0.0143328 0.721019 Vertex 9250 0.510483 0.174405 0.756342 Vertex 9251 0.37499 0.370356 0.588292 Vertex 9252 0.388601 0.423607 0.594558 Vertex 9253 0.554406 0.528592 0.453113 Vertex 9254 0.369251 0.875162 0.333612 Vertex 9255 0.369998 0.875387 0.33983 Vertex 9256 0.441395 0.129019 0.644196 Vertex 9257 0.378562 0.340263 0.401811 Vertex 9258 0.45314 0.840295 0.400869 Vertex 9259 0.39858 0.315109 0.227158 Vertex 9260 0.521997 0.0842676 0.717347 Vertex 9261 0.530277 0.0433302 0.656136 Vertex 9262 0.384893 0.335483 0.459954 Vertex 9263 0.495783 0.0489093 0.685536 Vertex 9264 0.556188 0.00902614 0.736382 Vertex 9265 0.473318 0.356965 0.417098 Vertex 9266 0.520741 0.375917 0.530351 Vertex 9267 0.478892 0.429298 0.613209 Vertex 9268 0.533202 0.135694 0.441564 Vertex 9269 0.534659 0.138034 0.444259 Vertex 9270 0.391295 0.173629 0.496147 Vertex 9271 0.528725 0.503699 0.41676 Vertex 9272 0.495848 0.241402 0.517866 Vertex 9273 0.36122 0.266389 0.204498 Vertex 9274 0.364087 0.400958 0.383137 Vertex 9275 0.573216 0.500222 0.337343 Vertex 9276 0.358129 0.198261 0.469027 Vertex 9277 0.474124 0.378103 0.406691 Vertex 9278 0.327248 0.92329 0.263363 Vertex 9279 0.494841 0.209929 0.488762 Vertex 9280 0.525029 0.684897 0.439515 Vertex 9281 0.529353 0.140835 0.446024 Vertex 9282 0.528334 0.120502 0.764503 Vertex 9283 0.521772 0.158692 0.461938 Vertex 9284 0.515535 0.157525 0.462062 Vertex 9285 0.5527 0.513317 0.431815 Vertex 9286 0.5103 0.663563 0.532418 Vertex 9287 0.503252 0.67545 0.540461 Vertex 9288 0.504175 0.66409 0.544636 Vertex 9289 0.494261 0.209727 0.51003 Vertex 9290 0.492928 0.209058 0.526163 Vertex 9291 0.511768 0.414545 0.439094 Vertex 9292 0.46967 0.20355 0.685572 Vertex 9293 0.419878 0.439764 0.387881 Vertex 9294 0.518698 0.118204 0.790699 Vertex 9295 0.362932 0.419046 0.538719 Vertex 9296 0.582141 0.495762 0.482614 Vertex 9297 0.500071 0.198924 0.518037 Vertex 9298 0.339058 0.908394 0.300374 Vertex 9299 0.338992 0.908436 0.292254 Vertex 9300 0.546369 0.154179 0.424915 Vertex 9301 0.463463 0.634388 0.515503 Vertex 9302 0.317683 0.991075 0.220554 Vertex 9303 0.365455 0.29557 0.233554 Vertex 9304 0.530413 0.103309 0.794922 Vertex 9305 0.41947 0.423832 0.610549 Vertex 9306 0.486763 0.0420272 0.671523 Vertex 9307 0.491596 0.0366672 0.667668 Vertex 9308 0.599086 0.517149 0.329247 Vertex 9309 0.478453 0.0768169 0.723163 Vertex 9310 0.501723 0.148777 0.702943 Vertex 9311 0.443658 0.169684 0.565745 Vertex 9312 0.526859 0.680591 0.503314 Vertex 9313 0.322385 0.259152 0.22942 Vertex 9314 0.352662 0.925303 0.276926 Vertex 9315 0.512159 0.170638 0.781187 Vertex 9316 0.36414 0.918007 0.342934 Vertex 9317 0.384188 0.912955 0.327263 Vertex 9318 0.434566 0.530043 0.478587 Vertex 9319 0.432713 0.526821 0.476697 Vertex 9320 0.377063 0.427166 0.326422 Vertex 9321 0.552244 0.542243 0.538583 Vertex 9322 0.605832 0.505932 0.226536 Vertex 9323 0.469048 0.509687 0.604858 Vertex 9324 0.550503 0.482045 0.388657 Vertex 9325 0.530999 0.0952838 0.760334 Vertex 9326 0.530371 0.101816 0.760322 Vertex 9327 0.55219 0.463271 0.349786 Vertex 9328 0.435603 0.228236 0.785339 Vertex 9329 0.381322 0.251127 0.23391 Vertex 9330 0.43799 0.467606 0.414841 Vertex 9331 0.434217 0.465261 0.411915 Vertex 9332 0.440685 0.465308 0.412389 Vertex 9333 0.432114 0.450726 0.401562 Vertex 9334 0.435372 0.138484 0.730762 Vertex 9335 0.522388 0.489147 0.413129 Vertex 9336 0.322385 0.238192 0.230883 Vertex 9337 0.592624 0.433053 0.192504 Vertex 9338 0.433346 0.412573 0.635543 Vertex 9339 0.322018 0.928253 0.275196 Vertex 9340 0.481095 0.71005 0.408379 Vertex 9341 0.48036 0.718046 0.405726 Vertex 9342 0.359248 0.363195 0.382876 Vertex 9343 0.508191 0.734339 0.494915 Vertex 9344 0.623452 0.527585 0.23173 Vertex 9345 0.419866 0.139899 0.690902 Vertex 9346 0.368286 0.254443 0.581185 Vertex 9347 0.583119 0.493772 0.417737 Vertex 9348 0.537964 0.666744 0.464508 Vertex 9349 0.428028 0.831678 0.439088 Vertex 9350 0.429195 0.823931 0.441173 Vertex 9351 0.445494 0.819163 0.367714 Vertex 9352 0.522044 0.558744 0.41185 Vertex 9353 0.412108 0.856796 0.341773 Vertex 9354 0.574489 0.405163 0.399703 Vertex 9355 0.383519 0.388438 0.600771 Vertex 9356 0.410041 0.229272 0.762442 Vertex 9357 0.511099 0.105648 0.710103 Vertex 9358 0.381961 0.235159 0.616158 Vertex 9359 0.491477 0.569476 0.575475 Vertex 9360 0.530348 0.0312776 0.652275 Vertex 9361 0.499402 0.162352 0.789183 Vertex 9362 0.606922 0.525891 0.308849 Vertex 9363 0.482356 0.29634 0.623793 Vertex 9364 0.455989 0.191717 0.62349 Vertex 9365 0.603356 0.531914 0.254686 Vertex 9366 0.384709 0.352132 0.443252 Vertex 9367 0.379918 0.349532 0.43727 Vertex 9368 0.520688 0.0825856 0.672672 Vertex 9369 0.401838 0.511724 0.493032 Vertex 9370 0.399232 0.507507 0.487109 Vertex 9371 0.506189 0.167742 0.786393 Vertex 9372 0.48867 0.713651 0.403535 Vertex 9373 0.487882 0.735002 0.511422 Vertex 9374 0.559771 0.0114248 0.76028 Vertex 9375 0.513439 0.605717 0.420527 Vertex 9376 0.531491 0.400348 0.424211 Vertex 9377 0.399421 0.387158 0.244677 Vertex 9378 0.492928 0.54007 0.381887 Vertex 9379 0.374072 0.918765 0.338279 Vertex 9380 0.378384 0.915341 0.343473 Vertex 9381 0.471589 0.175027 0.49138 Vertex 9382 0.36433 0.237392 0.209532 Vertex 9383 0.423331 0.527798 0.485048 Vertex 9384 0.447969 0.126715 0.634779 Vertex 9385 0.538989 0.0776046 0.720906 Vertex 9386 0.537567 0.0812234 0.720853 Vertex 9387 0.503767 0.201578 0.477633 Vertex 9388 0.470114 0.0564667 0.67012 Vertex 9389 0.643482 0.428149 0.21568 Vertex 9390 0.465554 0.426295 0.37507 Vertex 9391 0.402886 0.508372 0.477153 Vertex 9392 0.448035 0.463863 0.622318 Vertex 9393 0.669483 0.458763 0.189762 Vertex 9394 0.398065 0.325486 0.205505 Vertex 9395 0.375831 0.352398 0.459125 Vertex 9396 0.475154 0.21661 0.486653 Vertex 9397 0.472827 0.219926 0.483117 Vertex 9398 0.463327 0.231772 0.762424 Vertex 9399 0.384976 0.860859 0.359879 Vertex 9400 0.531674 0.171888 0.451792 Vertex 9401 0.521695 0.0743946 0.791025 Vertex 9402 0.519681 0.0747499 0.795111 Vertex 9403 0.514801 0.602127 0.421901 Vertex 9404 0.395613 0.462897 0.411388 Vertex 9405 0.460028 0.329644 0.417246 Vertex 9406 0.546191 0.602074 0.50194 Vertex 9407 0.49403 0.0629697 0.726788 Vertex 9408 0.384461 0.352588 0.44812 Vertex 9409 0.404521 0.287699 0.227703 Vertex 9410 0.406493 0.286544 0.221662 Vertex 9411 0.407624 0.285004 0.22319 Vertex 9412 0.499864 0.118951 0.646216 Vertex 9413 0.509861 0.0698223 0.773067 Vertex 9414 0.407595 0.872532 0.407675 Vertex 9415 0.460217 0.331172 0.634998 Vertex 9416 0.374386 0.419206 0.310727 Vertex 9417 0.607437 0.495673 0.214809 Vertex 9418 0.374759 0.380667 0.575908 Vertex 9419 0.517774 0.336164 0.479499 Vertex 9420 0.474491 0.217847 0.486701 Vertex 9421 0.549128 0.551264 0.44895 Vertex 9422 0.552966 0.547905 0.53038 Vertex 9423 0.413162 0.84103 0.348087 Vertex 9424 0.457499 0.714036 0.44619 Vertex 9425 0.578155 0.420053 0.445319 Vertex 9426 0.447697 0.477177 0.410245 Vertex 9427 0.431534 0.86292 0.371576 Vertex 9428 0.441081 0.84761 0.37828 Vertex 9429 0.56817 0.418258 0.480523 Vertex 9430 0.494219 0.155322 0.667176 Vertex 9431 0.371994 0.339019 0.495052 Vertex 9432 0.494397 0.404589 0.409049 Vertex 9433 0.60582 0.51741 0.329235 Vertex 9434 0.316007 0.936782 0.252732 Vertex 9435 0.514907 0.171354 0.770603 Vertex 9436 0.389092 0.326943 0.258441 Vertex 9437 0.501972 0.743099 0.42254 Vertex 9438 0.352182 0.208229 0.522 Vertex 9439 0.355635 0.328175 0.237937 Vertex 9440 0.479502 0.764556 0.395515 Vertex 9441 0.541281 0.51552 0.424915 Vertex 9442 0.545729 0.518926 0.427474 Vertex 9443 0.371591 0.0872586 0.480825 Vertex 9444 0.408785 0.282434 0.227673 Vertex 9445 0.526889 0.423915 0.580006 Vertex 9446 0.507581 0.322003 0.453398 Vertex 9447 0.541038 0.582908 0.524043 Vertex 9448 0.492342 0.0691175 0.695788 Vertex 9449 0.531953 0.428996 0.573841 Vertex 9450 0.350139 0.142576 0.458349 Vertex 9451 0.402223 0.246667 0.728298 Vertex 9452 0.528441 0.618492 0.534514 Vertex 9453 0.588532 0.453374 0.453072 Vertex 9454 0.461959 0.202259 0.643272 Vertex 9455 0.368262 0.371173 0.482205 Vertex 9456 0.370122 0.245317 0.202816 Vertex 9457 0.675299 0.462086 0.190384 Vertex 9458 0.443119 0.367519 0.416144 Vertex 9459 0.323031 0.234709 0.224114 Vertex 9460 0.612335 0.499511 0.187849 Vertex 9461 0.613709 0.494969 0.18532 Vertex 9462 0.374309 0.2377 0.590258 Vertex 9463 0.373859 0.232998 0.58754 Vertex 9464 0.463771 0.466451 0.39728 Vertex 9465 0.467088 0.462376 0.392305 Vertex 9466 0.430207 0.304413 0.642567 Vertex 9467 0.429941 0.298567 0.641608 Vertex 9468 0.532196 0.053914 0.785564 Vertex 9469 0.529246 0.0559514 0.785564 Vertex 9470 0.647966 0.41968 0.215845 Vertex 9471 0.407529 0.286207 0.634826 Vertex 9472 0.407482 0.220986 0.754144 Vertex 9473 0.408874 0.221093 0.758272 Vertex 9474 0.341385 0.918273 0.313907 Vertex 9475 0.452216 0.146929 0.787217 Vertex 9476 0.360409 0.203141 0.54232 Vertex 9477 0.422597 0.365985 0.638131 Vertex 9478 0.647362 0.426248 0.201234 Vertex 9479 0.459317 0.739681 0.424513 Vertex 9480 0.41331 0.418744 0.366151 Vertex 9481 0.602338 0.441813 0.385488 Vertex 9482 0.600656 0.441505 0.389966 Vertex 9483 0.403188 0.24611 0.739575 Vertex 9484 0.556976 0.482288 0.36865 Vertex 9485 0.360278 0.888761 0.308725 Vertex 9486 0.49602 0.784693 0.455773 Vertex 9487 0.556597 0.467322 0.339303 Vertex 9488 0.506651 0.326504 0.452142 Vertex 9489 0.506787 0.436269 0.60391 Vertex 9490 0.489695 0.186564 0.727978 Vertex 9491 0.58762 0.514904 0.312533 Vertex 9492 0.364904 0.437868 0.542895 Vertex 9493 0.459714 0.546626 0.574178 Vertex 9494 0.443302 0.381668 0.415564 Vertex 9495 0.495226 0.39012 0.609045 Vertex 9496 0.456664 0.129327 0.80101 Vertex 9497 0.478785 0.228834 0.592456 Vertex 9498 0.504081 0.123997 0.654525 Vertex 9499 0.316285 0.963925 0.210296 Vertex 9500 0.577107 0.500974 0.493038 Vertex 9501 0.542063 0.574149 0.534337 Vertex 9502 0.525367 0.324378 0.501981 Vertex 9503 0.574164 0.404358 0.389326 Vertex 9504 0.450445 0.749412 0.437063 Vertex 9505 0.537147 0.594931 0.442778 Vertex 9506 0.619827 0.480962 0.295588 Vertex 9507 0.401334 0.301854 0.222562 Vertex 9508 0.651531 0.447202 0.224031 Vertex 9509 0.64687 0.44584 0.225529 Vertex 9510 0.437457 0.406798 0.642567 Vertex 9511 0.451286 0.623378 0.457804 Vertex 9512 0.426168 0.26315 0.671203 Vertex 9513 0.406446 0.521864 0.515988 Vertex 9514 0.371419 0.342365 0.415931 Vertex 9515 0.478483 0.494317 0.603117 Vertex 9516 0.396507 0.165793 0.515805 Vertex 9517 0.416627 0.263327 0.225582 Vertex 9518 0.553008 0.0494779 0.72841 Vertex 9519 0.400938 0.344338 0.213855 Vertex 9520 0.530484 0.0754014 0.708658 Vertex 9521 0.485638 0.0504848 0.687325 Vertex 9522 0.550503 0.0450715 0.789603 Vertex 9523 0.371176 0.359802 0.460984 Vertex 9524 0.374161 0.357634 0.458307 Vertex 9525 0.648149 0.427095 0.195934 Vertex 9526 0.465275 0.340269 0.414728 Vertex 9527 0.414566 0.81773 0.402054 Vertex 9528 0.418623 0.81298 0.401906 Vertex 9529 0.566198 0.533543 0.466054 Vertex 9530 0.382003 0.220921 0.633867 Vertex 9531 0.491448 0.0578881 0.724448 Vertex 9532 0.487148 0.195472 0.729636 Vertex 9533 0.525805 0.0795354 0.71223 Vertex 9534 0.545356 0.0638937 0.723015 Vertex 9535 0.45025 0.621625 0.459859 Vertex 9536 0.465483 0.117713 0.789372 Vertex 9537 0.463931 0.796728 0.479582 Vertex 9538 0.374896 0.218037 0.580741 Vertex 9539 0.371312 0.22319 0.579917 Vertex 9540 0.402744 0.517345 0.548213 Vertex 9541 0.381085 0.865259 0.358303 Vertex 9542 0.506977 0.519181 0.594795 Vertex 9543 0.597576 0.502064 0.259786 Vertex 9544 0.626342 0.494264 0.290228 Vertex 9545 0.548815 0.037372 0.793323 Vertex 9546 0.450344 0.791635 0.463626 Vertex 9547 0.493118 0.0540206 0.723809 Vertex 9548 0.416704 0.242545 0.195389 Vertex 9549 0.423598 0.834651 0.351107 Vertex 9550 0.358442 0.288599 0.497136 Vertex 9551 0.358626 0.285004 0.499192 Vertex 9552 0.35897 0.277376 0.497125 Vertex 9553 0.366533 0.429038 0.426657 Vertex 9554 0.360492 0.409445 0.423885 Vertex 9555 0.441537 0.570258 0.503355 Vertex 9556 0.515914 0.0885201 0.685436 Vertex 9557 0.517691 0.0931931 0.687526 Vertex 9558 0.510625 0.0939275 0.691743 Vertex 9559 0.449687 0.158384 0.534467 Vertex 9560 0.441312 0.159521 0.521988 Vertex 9561 0.449391 0.451413 0.400058 Vertex 9562 0.369393 0.204527 0.220874 Vertex 9563 0.509997 0.291519 0.477988 Vertex 9564 0.552339 0.505742 0.408314 Vertex 9565 0.53293 0.071836 0.712591 Vertex 9566 0.533694 0.0723039 0.708445 Vertex 9567 0.441626 0.335619 0.64422 Vertex 9568 0.351862 0.310294 0.212635 Vertex 9569 0.365561 0.243972 0.210485 Vertex 9570 0.519521 0.180783 0.457194 Vertex 9571 0.437504 0.262605 0.636953 Vertex 9572 0.397864 0.203426 0.729222 Vertex 9573 0.422182 0.390209 0.315933 Vertex 9574 0.360829 0.401148 0.405525 Vertex 9575 0.367771 0.236681 0.236634 Vertex 9576 0.51053 0.177396 0.474441 Vertex 9577 0.449355 0.611663 0.494963 Vertex 9578 0.588496 0.505008 0.280912 Vertex 9579 0.499171 0.0922928 0.728197 Vertex 9580 0.651371 0.47668 0.215845 Vertex 9581 0.500344 0.715529 0.414349 Vertex 9582 0.367978 0.215857 0.230131 Vertex 9583 0.449569 0.180689 0.590436 Vertex 9584 0.358916 0.309963 0.241585 Vertex 9585 0.626858 0.515994 0.28517 Vertex 9586 0.416111 0.153906 0.627707 Vertex 9587 0.527096 0.614891 0.538601 Vertex 9588 0.422769 0.392921 0.388402 Vertex 9589 0.375352 0.382284 0.523403 Vertex 9590 0.374102 0.465811 0.538637 Vertex 9591 0.535323 0.100484 0.791256 Vertex 9592 0.490388 0.231203 0.49273 Vertex 9593 0.551344 0.0379465 0.790569 Vertex 9594 0.495961 0.405146 0.413141 Vertex 9595 0.497062 0.402107 0.418774 Vertex 9596 0.519195 0.304632 0.514685 Vertex 9597 0.395518 0.882181 0.326558 Vertex 9598 0.538006 0.604976 0.448434 Vertex 9599 0.420921 0.166148 0.737525 Vertex 9600 0.521943 0.0952601 0.711655 Vertex 9601 0.527463 0.397938 0.509882 Vertex 9602 0.40965 0.181352 0.482993 Vertex 9603 0.40776 0.170419 0.493168 Vertex 9604 0.380427 0.179842 0.493577 Vertex 9605 0.321337 0.955112 0.218996 Vertex 9606 0.60537 0.467274 0.295766 Vertex 9607 0.541731 0.0624249 0.78515 Vertex 9608 0.545918 0.0570175 0.776935 Vertex 9609 0.543378 0.0591911 0.785132 Vertex 9610 0.430166 0.20525 0.47376 Vertex 9611 0.44258 0.4321 0.398802 Vertex 9612 0.489215 0.639162 0.404707 Vertex 9613 0.486988 0.641312 0.408788 Vertex 9614 0.600975 0.436293 0.193683 Vertex 9615 0.5035 0.610348 0.56363 Vertex 9616 0.512432 0.713112 0.501247 Vertex 9617 0.51117 0.115142 0.794969 Vertex 9618 0.475913 0.174908 0.687662 Vertex 9619 0.481557 0.170839 0.6906 Vertex 9620 0.386812 0.476022 0.56976 Vertex 9621 0.385473 0.302506 0.192611 Vertex 9622 0.442965 0.568516 0.532353 Vertex 9623 0.51566 0.398755 0.567646 Vertex 9624 0.514351 0.402131 0.571726 Vertex 9625 0.456054 0.395942 0.392821 Vertex 9626 0.596338 0.429434 0.358244 Vertex 9627 0.450031 0.132377 0.770686 Vertex 9628 0.383294 0.351551 0.34583 Vertex 9629 0.387523 0.352511 0.341667 Vertex 9630 0.388772 0.355395 0.360311 Vertex 9631 0.603084 0.507886 0.374514 Vertex 9632 0.477749 0.0525281 0.649254 Vertex 9633 0.64135 0.511398 0.231813 Vertex 9634 0.520741 0.0880522 0.681461 Vertex 9635 0.513101 0.62384 0.546934 Vertex 9636 0.335966 0.244245 0.214317 Vertex 9637 0.548714 0.0432769 0.722654 Vertex 9638 0.547103 0.0450715 0.720794 Vertex 9639 0.49743 0.737745 0.501199 Vertex 9640 0.525 0.138377 0.747943 Vertex 9641 0.514066 0.416724 0.588345 Vertex 9642 0.353189 0.388278 0.481116 Vertex 9643 0.49663 0.303732 0.448209 Vertex 9644 0.492674 0.293711 0.447327 Vertex 9645 0.491554 0.298171 0.444946 Vertex 9646 0.382234 0.238452 0.603827 Vertex 9647 0.472513 0.119715 0.816084 Vertex 9648 0.460804 0.574368 0.437134 Vertex 9649 0.398722 0.4287 0.373696 Vertex 9650 0.446127 0.608968 0.480192 Vertex 9651 0.44746 0.61216 0.484734 Vertex 9652 0.353355 0.919588 0.2783 Vertex 9653 0.386161 0.260337 0.611071 Vertex 9654 0.565641 0.54559 0.490094 Vertex 9655 0.495268 0.271921 0.596619 Vertex 9656 0.408068 0.346594 0.233933 Vertex 9657 0.406061 0.342413 0.237907 Vertex 9658 0.381683 0.394763 0.2627 Vertex 9659 0.493183 0.418637 0.387994 Vertex 9660 0.640101 0.444419 0.191142 Vertex 9661 0.350826 0.189217 0.490965 Vertex 9662 0.473834 0.0643912 0.69936 Vertex 9663 0.475291 0.723826 0.410885 Vertex 9664 0.625247 0.533851 0.279431 Vertex 9665 0.472365 0.536646 0.587362 Vertex 9666 0.414423 0.260674 0.727107 Vertex 9667 0.409537 0.258921 0.725005 Vertex 9668 0.414631 0.263955 0.718863 Vertex 9669 0.508777 0.459468 0.401254 Vertex 9670 0.571978 0.504386 0.366731 Vertex 9671 0.571196 0.503201 0.368626 Vertex 9672 0.437859 0.380176 0.64852 Vertex 9673 0.355896 0.112003 0.475459 Vertex 9674 0.374665 0.29483 0.237801 Vertex 9675 0.387156 0.199428 0.61399 Vertex 9676 0.49984 0.0479025 0.749169 Vertex 9677 0.500752 0.0431999 0.741908 Vertex 9678 0.489351 0.199878 0.745788 Vertex 9679 0.415709 0.534568 0.521988 Vertex 9680 0.375281 0.355899 0.459995 Vertex 9681 0.341444 0.123411 0.470656 Vertex 9682 0.486508 0.202206 0.561362 Vertex 9683 0.473834 0.446983 0.374733 Vertex 9684 0.475344 0.745722 0.488596 Vertex 9685 0.524934 0.596584 0.549066 Vertex 9686 0.520877 0.0272798 0.633731 Vertex 9687 0.52269 0.0338895 0.634039 Vertex 9688 0.40108 0.331758 0.235787 Vertex 9689 0.522388 0.0507809 0.660945 Vertex 9690 0.373747 0.362787 0.46972 Vertex 9691 0.456036 0.343852 0.635543 Vertex 9692 0.470991 0.0961366 0.654821 Vertex 9693 0.580507 0.511831 0.447404 Vertex 9694 0.410852 0.53195 0.543831 Vertex 9695 0.363459 0.274859 0.227484 Vertex 9696 0.662713 0.421172 0.229882 Vertex 9697 0.480905 0.574007 0.56822 Vertex 9698 0.643044 0.510445 0.209538 Vertex 9699 0.438031 0.342786 0.418401 Vertex 9700 0.414489 0.264903 0.673217 Vertex 9701 0.515873 0.311627 0.480192 Vertex 9702 0.60537 0.50329 0.213311 Vertex 9703 0.398598 0.314102 0.222751 Vertex 9704 0.558848 0.0346002 0.742287 Vertex 9705 0.557657 0.0377511 0.748085 Vertex 9706 0.503648 0.0208596 0.640228 Vertex 9707 0.591322 0.442257 0.204746 Vertex 9708 0.495049 0.745177 0.413414 Vertex 9709 0.490115 0.637877 0.537126 Vertex 9710 0.510596 0.582997 0.565833 Vertex 9711 0.613709 0.4581 0.356544 Vertex 9712 0.415845 0.390801 0.622572 Vertex 9713 0.498993 0.371908 0.443726 Vertex 9714 0.499171 0.363474 0.444016 Vertex 9715 0.528304 0.0518233 0.660187 Vertex 9716 0.547837 0.586355 0.469454 Vertex 9717 0.420642 0.531825 0.562144 Vertex 9718 0.422182 0.139242 0.664979 Vertex 9719 0.372414 0.354193 0.289849 Vertex 9720 0.439524 0.1634 0.572325 Vertex 9721 0.437249 0.178906 0.485333 Vertex 9722 0.643933 0.432046 0.21639 Vertex 9723 0.448597 0.482253 0.41355 Vertex 9724 0.510898 0.0921092 0.805097 Vertex 9725 0.454289 0.142724 0.652464 Vertex 9726 0.397834 0.358848 0.431448 Vertex 9727 0.373172 0.377783 0.498724 Vertex 9728 0.420435 0.377285 0.345771 Vertex 9729 0.43594 0.402688 0.413994 Vertex 9730 0.359935 0.397274 0.370693 Vertex 9731 0.399078 0.367543 0.237712 Vertex 9732 0.402898 0.369527 0.242231 Vertex 9733 0.516447 0.572218 0.566449 Vertex 9734 0.442236 0.13737 0.623567 Vertex 9735 0.492591 0.349704 0.436494 Vertex 9736 0.493568 0.353382 0.43701 Vertex 9737 0.517436 0.399768 0.56347 Vertex 9738 0.410698 0.196271 0.758415 Vertex 9739 0.652047 0.451028 0.2212 Vertex 9740 0.589047 0.44282 0.189975 Vertex 9741 0.590409 0.448582 0.190816 Vertex 9742 0.421951 0.344586 0.429926 Vertex 9743 0.558303 0.526602 0.45364 Vertex 9744 0.562342 0.499636 0.39455 Vertex 9745 0.44704 0.377617 0.640287 Vertex 9746 0.493787 0.429322 0.383178 Vertex 9747 0.494107 0.434546 0.383421 Vertex 9748 0.373782 0.354714 0.505464 Vertex 9749 0.414548 0.264796 0.698152 Vertex 9750 0.408832 0.263612 0.693721 Vertex 9751 0.642576 0.494501 0.237824 Vertex 9752 0.338738 0.112803 0.460268 Vertex 9753 0.552297 0.469033 0.364421 Vertex 9754 0.503329 0.138128 0.79263 Vertex 9755 0.366456 0.144507 0.470401 Vertex 9756 0.39832 0.360045 0.406093 Vertex 9757 0.4861 0.196952 0.778996 Vertex 9758 0.362807 0.902833 0.347637 Vertex 9759 0.518698 0.301304 0.488626 Vertex 9760 0.36799 0.418904 0.549043 Vertex 9761 0.620289 0.49209 0.242284 Vertex 9762 0.334065 0.952015 0.285768 Vertex 9763 0.336517 0.950593 0.28751 Vertex 9764 0.546913 0.147474 0.439918 Vertex 9765 0.400866 0.269298 0.444863 Vertex 9766 0.394689 0.268415 0.44889 Vertex 9767 0.399641 0.273135 0.444247 Vertex 9768 0.392261 0.31412 0.246229 Vertex 9769 0.321373 0.993118 0.206215 Vertex 9770 0.587347 0.49947 0.286473 Vertex 9771 0.531834 0.0925712 0.762282 Vertex 9772 0.432097 0.167576 0.522 Vertex 9773 0.498738 0.733024 0.503308 Vertex 9774 0.496446 0.409771 0.407319 Vertex 9775 0.61134 0.46166 0.319249 Vertex 9776 0.529205 0.0134622 0.741576 Vertex 9777 0.414874 0.236261 0.459859 Vertex 9778 0.576971 0.502585 0.385204 Vertex 9779 0.394458 0.298544 0.23834 Vertex 9780 0.441585 0.161126 0.591147 Vertex 9781 0.514582 0.130488 0.691933 Vertex 9782 0.510246 0.142523 0.690114 Vertex 9783 0.477056 0.127165 0.809705 Vertex 9784 0.653889 0.414912 0.216278 Vertex 9785 0.368333 0.224647 0.23404 Vertex 9786 0.36969 0.222266 0.235319 Vertex 9787 0.483849 0.687988 0.510018 Vertex 9788 0.458731 0.558347 0.43464 Vertex 9789 0.497388 0.410695 0.604852 Vertex 9790 0.372313 0.3648 0.505416 Vertex 9791 0.530413 0.569138 0.559674 Vertex 9792 0.660202 0.413331 0.213157 Vertex 9793 0.53014 0.170525 0.443963 Vertex 9794 0.386125 0.876732 0.380632 Vertex 9795 0.39094 0.87043 0.386862 Vertex 9796 0.403964 0.176975 0.708546 Vertex 9797 0.459483 0.164324 0.654389 Vertex 9798 0.515387 0.0809213 0.679957 Vertex 9799 0.516951 0.0742287 0.680295 Vertex 9800 0.355671 0.260514 0.214572 Vertex 9801 0.491531 0.0584271 0.688053 Vertex 9802 0.49066 0.0600025 0.690055 Vertex 9803 0.553701 0.531257 0.4494 Vertex 9804 0.462592 0.442216 0.383107 Vertex 9805 0.359568 0.273745 0.564051 Vertex 9806 0.508144 0.379749 0.450081 Vertex 9807 0.603866 0.465154 0.185131 Vertex 9808 0.680771 0.4719 0.216846 Vertex 9809 0.604961 0.456939 0.389664 Vertex 9810 0.487314 0.320149 0.625913 Vertex 9811 0.543715 0.0417785 0.710862 Vertex 9812 0.405374 0.226494 0.466421 Vertex 9813 0.449989 0.167819 0.559295 Vertex 9814 0.545528 0.591585 0.508923 Vertex 9815 0.37499 0.273639 0.466102 Vertex 9816 0.366314 0.272247 0.478675 Vertex 9817 0.425072 0.803172 0.408273 Vertex 9818 0.411936 0.238286 0.198054 Vertex 9819 0.45147 0.237676 0.698152 Vertex 9820 0.353379 0.108077 0.468311 Vertex 9821 0.43751 0.513317 0.442885 Vertex 9822 0.437315 0.516622 0.44536 Vertex 9823 0.404562 0.866053 0.409742 Vertex 9824 0.603682 0.441428 0.19498 Vertex 9825 0.49602 0.433189 0.385571 Vertex 9826 0.362517 0.301671 0.23619 Vertex 9827 0.358442 0.302269 0.235947 Vertex 9828 0.475362 0.368561 0.414865 Vertex 9829 0.600608 0.443329 0.185048 Vertex 9830 0.400144 0.897295 0.347879 Vertex 9831 0.387914 0.418791 0.592598 Vertex 9832 0.424368 0.135167 0.687343 Vertex 9833 0.600881 0.442577 0.333345 Vertex 9834 0.630097 0.518867 0.212961 Vertex 9835 0.621894 0.476135 0.220092 Vertex 9836 0.418646 0.171195 0.743762 Vertex 9837 0.457434 0.0709713 0.663634 Vertex 9838 0.457919 0.0727125 0.659103 Vertex 9839 0.462148 0.0742583 0.656213 Vertex 9840 0.456563 0.0744242 0.658748 Vertex 9841 0.417254 0.173694 0.544962 Vertex 9842 0.47888 0.0585929 0.691175 Vertex 9843 0.447093 0.60301 0.493991 Vertex 9844 0.500663 0.0401201 0.72706 Vertex 9845 0.484133 0.156897 0.796124 Vertex 9846 0.34161 0.922164 0.267053 Vertex 9847 0.433222 0.539703 0.564613 Vertex 9848 0.650092 0.497415 0.229586 Vertex 9849 0.374653 0.301304 0.242663 Vertex 9850 0.520439 0.0664819 0.725277 Vertex 9851 0.507036 0.0825264 0.78098 Vertex 9852 0.465127 0.798345 0.389255 Vertex 9853 0.389643 0.176282 0.544826 Vertex 9854 0.467793 0.814704 0.405063 Vertex 9855 0.46906 0.809148 0.401876 Vertex 9856 0.307247 0.973828 0.242776 Vertex 9857 0.478619 0.185989 0.704003 Vertex 9858 0.361013 0.348703 0.242041 Vertex 9859 0.360912 0.297916 0.196011 Vertex 9860 0.506148 0.077575 0.77472 Vertex 9861 0.43831 0.167138 0.785185 Vertex 9862 0.54041 0.591443 0.524138 Vertex 9863 0.361907 0.928508 0.322667 Vertex 9864 0.55559 0.540988 0.465456 Vertex 9865 0.506556 0.632919 0.413112 Vertex 9866 0.523762 0.169903 0.444164 Vertex 9867 0.519006 0.32407 0.555143 Vertex 9868 0.369346 0.357504 0.360394 Vertex 9869 0.318921 0.973194 0.247153 Vertex 9870 0.488267 0.070071 0.729257 Vertex 9871 0.416899 0.848978 0.426372 Vertex 9872 0.456593 0.393365 0.629668 Vertex 9873 0.452453 0.399353 0.630544 Vertex 9874 0.352846 0.293456 0.230942 Vertex 9875 0.477695 0.336158 0.424957 Vertex 9876 0.499195 0.0556256 0.636822 Vertex 9877 0.398361 0.267829 0.226489 Vertex 9878 0.618536 0.479013 0.284815 Vertex 9879 0.367552 0.379299 0.250398 Vertex 9880 0.339366 0.951328 0.267965 Vertex 9881 0.336931 0.948585 0.259501 Vertex 9882 0.400179 0.312006 0.441635 Vertex 9883 0.598595 0.530605 0.298005 Vertex 9884 0.345122 0.0986834 0.463389 Vertex 9885 0.47516 0.161292 0.663078 Vertex 9886 0.458944 0.584922 0.544962 Vertex 9887 0.459483 0.600724 0.443074 Vertex 9888 0.46052 0.785505 0.475921 Vertex 9889 0.459596 0.183597 0.654614 Vertex 9890 0.469534 0.220714 0.733356 Vertex 9891 0.380244 0.222064 0.589003 Vertex 9892 0.380113 0.352647 0.343722 Vertex 9893 0.396993 0.854214 0.349775 Vertex 9894 0.395862 0.855771 0.344267 Vertex 9895 0.365579 0.209194 0.478711 Vertex 9896 0.446815 0.763597 0.424442 Vertex 9897 0.450617 0.759647 0.422215 Vertex 9898 0.446631 0.761761 0.426526 Vertex 9899 0.512526 0.0843506 0.685234 Vertex 9900 0.415703 0.163726 0.592491 Vertex 9901 0.463303 0.618237 0.438834 Vertex 9902 0.489718 0.0966993 0.646855 Vertex 9903 0.48591 0.0891657 0.646133 Vertex 9904 0.493455 0.0900067 0.642864 Vertex 9905 0.516512 0.0564963 0.673276 Vertex 9906 0.399871 0.298401 0.237688 Vertex 9907 0.537011 0.115486 0.435866 Vertex 9908 0.328077 0.253194 0.203491 Vertex 9909 0.366876 0.24582 0.232109 Vertex 9910 0.535542 0.549783 0.433829 Vertex 9911 0.480201 0.362277 0.62891 Vertex 9912 0.422875 0.245417 0.764094 Vertex 9913 0.318778 0.996482 0.214643 Vertex 9914 0.502641 0.270334 0.579971 Vertex 9915 0.45163 0.124364 0.758361 Vertex 9916 0.462202 0.213873 0.673276 Vertex 9917 0.504697 0.769982 0.459871 Vertex 9918 0.425203 0.80393 0.420337 Vertex 9919 0.378508 0.353376 0.354122 Vertex 9920 0.512526 0.541308 0.400017 Vertex 9921 0.351643 0.207021 0.505416 Vertex 9922 0.523815 0.0607961 0.670582 Vertex 9923 0.463416 0.205102 0.656764 Vertex 9924 0.548246 0.02282 0.777426 Vertex 9925 0.502085 0.611337 0.408296 Vertex 9926 0.500255 0.60773 0.406241 Vertex 9927 0.480349 0.663486 0.420432 Vertex 9928 0.420867 0.255563 0.443945 Vertex 9929 0.426298 0.263096 0.439319 Vertex 9930 0.655879 0.43281 0.194275 Vertex 9931 0.351744 0.391103 0.454138 Vertex 9932 0.350897 0.385832 0.453504 Vertex 9933 0.418925 0.325172 0.643053 Vertex 9934 0.452453 0.571715 0.547136 Vertex 9935 0.472317 0.16173 0.530333 Vertex 9936 0.440057 0.253549 0.712662 Vertex 9937 0.446584 0.248094 0.714729 Vertex 9938 0.444126 0.252051 0.723027 Vertex 9939 0.421631 0.218825 0.782165 Vertex 9940 0.384976 0.236628 0.642159 Vertex 9941 0.386457 0.239838 0.64836 Vertex 9942 0.498223 0.59409 0.568084 Vertex 9943 0.497009 0.597449 0.566242 Vertex 9944 0.458002 0.142712 0.79488 Vertex 9945 0.532575 0.0574794 0.787305 Vertex 9946 0.423864 0.263327 0.681544 Vertex 9947 0.422952 0.345895 0.644042 Vertex 9948 0.420405 0.353056 0.638872 Vertex 9949 0.524846 0.323377 0.50621 Vertex 9950 0.552789 0.523095 0.441866 Vertex 9951 0.553345 0.524256 0.444081 Vertex 9952 0.372888 0.182821 0.509598 Vertex 9953 0.368286 0.23131 0.203165 Vertex 9954 0.492224 0.415481 0.389747 Vertex 9955 0.345519 0.902371 0.318829 Vertex 9956 0.472732 0.434605 0.613031 Vertex 9957 0.381268 0.426769 0.354738 Vertex 9958 0.363222 0.367229 0.469732 Vertex 9959 0.482001 0.616632 0.420527 Vertex 9960 0.408957 0.172663 0.607031 Vertex 9961 0.484808 0.155594 0.658156 Vertex 9962 0.321426 0.961479 0.211629 Vertex 9963 0.544752 0.00611811 0.728085 Vertex 9964 0.35621 0.272413 0.551708 Vertex 9965 0.502381 0.726024 0.417737 Vertex 9966 0.501907 0.411353 0.417358 Vertex 9967 0.497524 0.416724 0.401864 Vertex 9968 0.496446 0.41811 0.398015 Vertex 9969 0.514339 0.302778 0.555131 Vertex 9970 0.360705 0.329389 0.248106 Vertex 9971 0.485063 0.432727 0.374934 Vertex 9972 0.47994 0.428765 0.372837 Vertex 9973 0.354107 0.396866 0.448257 Vertex 9974 0.505988 0.0358795 0.718377 Vertex 9975 0.423894 0.49209 0.432479 Vertex 9976 0.372941 0.399981 0.53699 Vertex 9977 0.462302 0.235053 0.770598 Vertex 9978 0.464405 0.232139 0.770734 Vertex 9979 0.566008 0.506411 0.418081 Vertex 9980 0.389199 0.355206 0.316779 Vertex 9981 0.379486 0.884135 0.370362 Vertex 9982 0.564178 0.407207 0.379489 Vertex 9983 0.501647 0.409866 0.419194 Vertex 9984 0.502221 0.415481 0.415889 Vertex 9985 0.580234 0.411998 0.412146 Vertex 9986 0.577806 0.413171 0.422511 Vertex 9987 0.408252 0.310063 0.63315 Vertex 9988 0.377851 0.478829 0.519145 Vertex 9989 0.377567 0.473831 0.534414 Vertex 9990 0.554121 0.00963025 0.724223 Vertex 9991 0.366089 0.378055 0.491563 Vertex 9992 0.372414 0.366956 0.483266 Vertex 9993 0.607437 0.486446 0.214785 Vertex 9994 0.368635 0.314345 0.199357 Vertex 9995 0.472691 0.486126 0.60808 Vertex 9996 0.416028 0.513548 0.465746 Vertex 9997 0.332572 0.916544 0.272247 Vertex 9998 0.551373 0.45502 0.366613 Vertex 9999 0.422182 0.264293 0.70023 Vertex 10000 0.478951 0.166936 0.673081 Vertex 10001 0.516311 0.0436559 0.729121 Vertex 10002 0.421839 0.254526 0.207714 Vertex 10003 0.476629 0.351966 0.420444 Vertex 10004 0.351874 0.154712 0.475732 Vertex 10005 0.651851 0.415161 0.21459 Vertex 10006 0.424083 0.137625 0.668669 Vertex 10007 0.596344 0.436346 0.188832 Vertex 10008 0.526913 0.609235 0.433853 Vertex 10009 0.642926 0.428777 0.19835 Vertex 10010 0.399119 0.431016 0.602418 Vertex 10011 0.46601 0.639973 0.432793 Vertex 10012 0.393463 0.308458 0.241035 Vertex 10013 0.493485 0.286598 0.604941 Vertex 10014 0.492561 0.195566 0.758308 Vertex 10015 0.557752 0.413307 0.379121 Vertex 10016 0.301875 0.968924 0.232518 Vertex 10017 0.506817 0.268729 0.490924 Vertex 10018 0.473555 0.190236 0.482845 Vertex 10019 0.612116 0.498724 0.246554 Vertex 10020 0.616617 0.494969 0.242669 Vertex 10021 0.507729 0.517972 0.395989 Vertex 10022 0.447851 0.51831 0.431395 Vertex 10023 0.463179 0.0844631 0.660762 Vertex 10024 0.351631 0.217385 0.522029 Vertex 10025 0.473466 0.527609 0.411933 Vertex 10026 0.371614 0.281486 0.468334 Vertex 10027 0.368037 0.276494 0.474358 Vertex 10028 0.467319 0.123209 0.814508 Vertex 10029 0.446584 0.778048 0.410091 Vertex 10030 0.593916 0.449453 0.191586 Vertex 10031 0.59253 0.450549 0.192504 Vertex 10032 0.590694 0.44526 0.192338 Vertex 10033 0.49082 0.0559514 0.641809 Vertex 10034 0.481794 0.10614 0.652085 Vertex 10035 0.535643 0.0902791 0.743886 Vertex 10036 0.459329 0.197539 0.615388 Vertex 10037 0.421104 0.139745 0.660969 Vertex 10038 0.602077 0.532086 0.262741 Vertex 10039 0.608989 0.45136 0.371073 Vertex 10040 0.472625 0.201211 0.693994 Vertex 10041 0.46906 0.798144 0.39561 Vertex 10042 0.536033 0.0110398 0.756075 Vertex 10043 0.380925 0.178497 0.497219 Vertex 10044 0.646633 0.506352 0.2317 Vertex 10045 0.486662 0.0683298 0.739409 Vertex 10046 0.442526 0.0984169 0.706378 Vertex 10047 0.48527 0.0981444 0.651949 Vertex 10048 0.390928 0.500352 0.532394 Vertex 10049 0.411444 0.208869 0.762525 Vertex 10050 0.419126 0.178989 0.764456 Vertex 10051 0.457232 0.721457 0.465995 Vertex 10052 0.461224 0.718839 0.476526 Vertex 10053 0.373782 0.201442 0.565531 Vertex 10054 0.375938 0.212091 0.577442 Vertex 10055 0.502268 0.0879693 0.791439 Vertex 10056 0.537011 0.411015 0.410885 Vertex 10057 0.473709 0.527111 0.595204 Vertex 10058 0.398983 0.256078 0.708522 Vertex 10059 0.448129 0.333049 0.416867 Vertex 10060 0.540902 0.478527 0.575884 Vertex 10061 0.382648 0.269422 0.228627 Vertex 10062 0.560867 0.463194 0.32975 Vertex 10063 0.558717 0.458396 0.333221 Vertex 10064 0.564593 0.456874 0.326404 Vertex 10065 0.476967 0.269801 0.443714 Vertex 10066 0.421999 0.403872 0.332948 Vertex 10067 0.529678 0.107745 0.719947 Vertex 10068 0.483399 0.0734706 0.729257 Vertex 10069 0.630168 0.522734 0.266508 Vertex 10070 0.499728 0.04978 0.679839 Vertex 10071 0.36385 0.298976 0.489443 Vertex 10072 0.548513 0.0342744 0.716251 Vertex 10073 0.394606 0.214347 0.722997 Vertex 10074 0.501836 0.726823 0.505369 Vertex 10075 0.483055 0.208336 0.758267 Vertex 10076 0.450723 0.797273 0.37661 Vertex 10077 0.562389 0.490941 0.368609 Vertex 10078 0.496168 0.172746 0.714042 Vertex 10079 0.408418 0.263724 0.683789 Vertex 10080 0.497974 0.347962 0.442233 Vertex 10081 0.444238 0.806761 0.370226 Vertex 10082 0.435603 0.262972 0.438354 Vertex 10083 0.447525 0.265637 0.437774 Vertex 10084 0.540819 0.654205 0.485504 Vertex 10085 0.486763 0.0775217 0.726101 Vertex 10086 0.48761 0.249794 0.468524 Vertex 10087 0.480437 0.173262 0.538583 Vertex 10088 0.464198 0.534728 0.584111 Vertex 10089 0.399913 0.447795 0.599474 Vertex 10090 0.377004 0.0876139 0.469454 Vertex 10091 0.385681 0.337319 0.215111 Vertex 10092 0.52526 0.33235 0.515888 Vertex 10093 0.444682 0.584371 0.482667 Vertex 10094 0.369571 0.881251 0.308754 Vertex 10095 0.584137 0.495123 0.455654 Vertex 10096 0.395891 0.439604 0.38707 Vertex 10097 0.392711 0.482069 0.439088 Vertex 10098 0.331169 0.928585 0.255237 Vertex 10099 0.466673 0.459551 0.616069 Vertex 10100 0.552759 0.442903 0.353162 Vertex 10101 0.443741 0.51738 0.434072 Vertex 10102 0.618459 0.485611 0.270997 Vertex 10103 0.388429 0.342596 0.218238 Vertex 10104 0.451156 0.233584 0.776929 Vertex 10105 0.456569 0.235923 0.764503 Vertex 10106 0.475883 0.40238 0.384061 Vertex 10107 0.512894 0.135967 0.686585 Vertex 10108 0.539936 0.401799 0.442624 Vertex 10109 0.545308 0.403321 0.511611 Vertex 10110 0.437374 0.322507 0.645227 Vertex 10111 0.49981 0.166137 0.704003 Vertex 10112 0.533664 0.122309 0.43746 Vertex 10113 0.494261 0.0705389 0.729447 Vertex 10114 0.480408 0.316169 0.63103 Vertex 10115 0.591245 0.435529 0.195116 Vertex 10116 0.453329 0.133982 0.799405 Vertex 10117 0.58592 0.48519 0.295316 Vertex 10118 0.510074 0.75768 0.45813 Vertex 10119 0.418421 0.869482 0.404382 Vertex 10120 0.353764 0.222141 0.520016 Vertex 10121 0.479774 0.0809806 0.717069 Vertex 10122 0.450753 0.502248 0.420633 Vertex 10123 0.455444 0.505458 0.417003 Vertex 10124 0.501771 0.619795 0.409688 Vertex 10125 0.599412 0.468417 0.18856 Vertex 10126 0.559683 0.401059 0.402652 Vertex 10127 0.480129 0.674828 0.514709 Vertex 10128 0.48315 0.459362 0.381556 Vertex 10129 0.517644 0.154682 0.460132 Vertex 10130 0.407962 0.352931 0.23802 Vertex 10131 0.481367 0.749548 0.500974 Vertex 10132 0.545362 0.146331 0.430832 Vertex 10133 0.503115 0.180635 0.451929 Vertex 10134 0.515304 0.175832 0.449725 Vertex 10135 0.418415 0.818405 0.420509 Vertex 10136 0.548572 0.00152213 0.737525 Vertex 10137 0.39803 0.872118 0.399294 Vertex 10138 0.50876 0.515058 0.397499 Vertex 10139 0.375352 0.909904 0.30478 Vertex 10140 0.433619 0.511398 0.453297 Vertex 10141 0.394168 0.350296 0.440261 Vertex 10142 0.480266 0.113443 0.813099 Vertex 10143 0.485389 0.228443 0.490965 Vertex 10144 0.490085 0.225138 0.495875 Vertex 10145 0.493621 0.196994 0.462785 Vertex 10146 0.496275 0.195472 0.461737 Vertex 10147 0.576775 0.439148 0.327482 Vertex 10148 0.576148 0.435837 0.330461 Vertex 10149 0.372781 0.246134 0.477254 Vertex 10150 0.523655 0.144507 0.74593 Vertex 10151 0.479063 0.152603 0.798487 Vertex 10152 0.465305 0.550411 0.42658 Vertex 10153 0.433074 0.216917 0.790456 Vertex 10154 0.454135 0.456631 0.399116 Vertex 10155 0.620194 0.502858 0.347731 Vertex 10156 0.3885 0.197296 0.660833 Vertex 10157 0.486354 0.0747203 0.645724 Vertex 10158 0.393398 0.89418 0.325018 Vertex 10159 0.386942 0.895163 0.315648 Vertex 10160 0.675714 0.45701 0.215597 Vertex 10161 0.678781 0.454973 0.213482 Vertex 10162 0.512663 0.564619 0.571839 Vertex 10163 0.423669 0.532264 0.493358 Vertex 10164 0.506953 0.393365 0.580077 Vertex 10165 0.423136 0.166676 0.52823 Vertex 10166 0.381114 0.0757272 0.475785 Vertex 10167 0.359799 0.892711 0.295955 Vertex 10168 0.542424 0.523806 0.567604 Vertex 10169 0.494563 0.186783 0.456009 Vertex 10170 0.497453 0.183869 0.454487 Vertex 10171 0.320135 0.239891 0.223213 Vertex 10172 0.45879 0.320517 0.419437 Vertex 10173 0.409087 0.369023 0.356195 Vertex 10174 0.345987 0.0866426 0.444668 Vertex 10175 0.456024 0.502668 0.597928 Vertex 10176 0.335095 0.284679 0.213311 Vertex 10177 0.574365 0.465432 0.315986 Vertex 10178 0.492129 0.211546 0.50849 Vertex 10179 0.491418 0.213287 0.511665 Vertex 10180 0.401654 0.326913 0.200689 Vertex 10181 0.359894 0.239554 0.55657 Vertex 10182 0.473005 0.504564 0.605865 Vertex 10183 0.506189 0.392199 0.447481 Vertex 10184 0.384437 0.413769 0.29557 Vertex 10185 0.377774 0.405092 0.288801 Vertex 10186 0.365188 0.882868 0.316738 Vertex 10187 0.462616 0.72889 0.4261 Vertex 10188 0.59574 0.452041 0.203491 Vertex 10189 0.35865 0.233489 0.511007 Vertex 10190 0.45099 0.576103 0.455275 Vertex 10191 0.367611 0.256445 0.478178 Vertex 10192 0.523874 0.459326 0.407917 Vertex 10193 0.597303 0.50685 0.254307 Vertex 10194 0.667274 0.487619 0.213097 Vertex 10195 0.448485 0.616673 0.470407 Vertex 10196 0.555306 0.535906 0.460451 Vertex 10197 0.516992 0.619753 0.543007 Vertex 10198 0.321929 0.248722 0.213672 Vertex 10199 0.47522 0.223924 0.483348 Vertex 10200 0.534944 0.126881 0.449536 Vertex 10201 0.521724 0.405531 0.56347 Vertex 10202 0.400345 0.841652 0.389735 Vertex 10203 0.401518 0.839294 0.389462 Vertex 10204 0.591333 0.436429 0.329738 Vertex 10205 0.596297 0.44077 0.3285 Vertex 10206 0.599057 0.528065 0.228141 Vertex 10207 0.374676 0.384529 0.532394 Vertex 10208 0.374517 0.384156 0.526033 Vertex 10209 0.405208 0.36104 0.269108 Vertex 10210 0.412955 0.168594 0.515787 Vertex 10211 0.338726 0.254692 0.208715 Vertex 10212 0.412244 0.272046 0.209834 Vertex 10213 0.46627 0.499209 0.408912 Vertex 10214 0.506 0.478427 0.399442 Vertex 10215 0.519409 0.537659 0.406828 Vertex 10216 0.361913 0.361626 0.371588 Vertex 10217 0.53293 0.400484 0.469815 Vertex 10218 0.51268 0.109705 0.714208 Vertex 10219 0.510844 0.108752 0.712419 Vertex 10220 0.393114 0.255681 0.6483 Vertex 10221 0.463374 0.0972442 0.758278 Vertex 10222 0.355623 0.238666 0.538103 Vertex 10223 0.488386 0.650077 0.406804 Vertex 10224 0.559908 0.433397 0.511706 Vertex 10225 0.520303 0.387733 0.480423 Vertex 10226 0.348409 0.259626 0.217451 Vertex 10227 0.458624 0.530789 0.427409 Vertex 10228 0.39245 0.416517 0.596679 Vertex 10229 0.519491 0.163969 0.768637 Vertex 10230 0.491489 0.679945 0.524594 Vertex 10231 0.495256 0.685548 0.531251 Vertex 10232 0.307205 0.953969 0.22871 Vertex 10233 0.311328 0.959631 0.21979 Vertex 10234 0.410894 0.878325 0.3432 Vertex 10235 0.580145 0.428587 0.449453 Vertex 10236 0.446767 0.243522 0.642176 Vertex 10237 0.509838 0.58969 0.410132 Vertex 10238 0.508831 0.587546 0.407888 Vertex 10239 0.531135 0.56337 0.563541 Vertex 10240 0.504383 0.0789668 0.702161 Vertex 10241 0.577759 0.51889 0.457792 Vertex 10242 0.52972 0.546626 0.417263 Vertex 10243 0.415442 0.148955 0.686632 Vertex 10244 0.456001 0.0985531 0.725538 Vertex 10245 0.504774 0.172853 0.740374 Vertex 10246 0.507551 0.169347 0.7416 Vertex 10247 0.382968 0.468151 0.56976 Vertex 10248 0.489772 0.0500228 0.688883 Vertex 10249 0.500598 0.533075 0.388805 Vertex 10250 0.428389 0.356177 0.648502 Vertex 10251 0.520717 0.044035 0.73059 Vertex 10252 0.514653 0.0352221 0.725372 Vertex 10253 0.492928 0.602169 0.561 Vertex 10254 0.542098 0.142292 0.456009 Vertex 10255 0.434886 0.394378 0.419194 Vertex 10256 0.506166 0.413254 0.59659 Vertex 10257 0.476748 0.0768465 0.737709 Vertex 10258 0.56737 0.475738 0.322341 Vertex 10259 0.430296 0.492997 0.435843 Vertex 10260 0.409336 0.438005 0.382853 Vertex 10261 0.518881 0.119087 0.712206 Vertex 10262 0.51117 0.111429 0.714853 Vertex 10263 0.487225 0.191717 0.728997 Vertex 10264 0.421466 0.403025 0.324408 Vertex 10265 0.360705 0.406312 0.319385 Vertex 10266 0.372876 0.267325 0.470455 Vertex 10267 0.643808 0.420598 0.204314 Vertex 10268 0.51454 0.149784 0.714083 Vertex 10269 0.518283 0.149529 0.726355 Vertex 10270 0.470701 0.679513 0.428197 Vertex 10271 0.370098 0.302316 0.48079 Vertex 10272 0.420844 0.396718 0.351095 Vertex 10273 0.3643 0.218197 0.227892 Vertex 10274 0.491282 0.481394 0.390007 Vertex 10275 0.516122 0.110096 0.700165 Vertex 10276 0.445144 0.252933 0.632031 Vertex 10277 0.475528 0.749323 0.488845 Vertex 10278 0.525396 0.0552703 0.783876 Vertex 10279 0.468142 0.190343 0.681598 Vertex 10280 0.400742 0.179137 0.590472 Vertex 10281 0.593945 0.52399 0.210592 Vertex 10282 0.437131 0.14568 0.747807 Vertex 10283 0.357447 0.898663 0.34156 Vertex 10284 0.548122 0.0013563 0.747837 Vertex 10285 0.567151 0.422967 0.486789 Vertex 10286 0.39184 0.34888 0.289683 Vertex 10287 0.509956 0.0829647 0.63867 Vertex 10288 0.506847 0.0870454 0.637989 Vertex 10289 0.396253 0.357421 0.412312 Vertex 10290 0.401026 0.168038 0.632416 Vertex 10291 0.378609 0.258637 0.231819 Vertex 10292 0.585689 0.422872 0.416322 Vertex 10293 0.575828 0.450543 0.493002 Vertex 10294 0.518769 0.421386 0.586344 Vertex 10295 0.383152 0.259845 0.227703 Vertex 10296 0.552297 0.46779 0.38001 Vertex 10297 0.505526 0.260881 0.536528 Vertex 10298 0.505088 0.358848 0.598627 Vertex 10299 0.486603 0.195513 0.781069 Vertex 10300 0.378745 0.22534 0.222514 Vertex 10301 0.381523 0.238902 0.211492 Vertex 10302 0.490358 0.398879 0.406668 Vertex 10303 0.362884 0.4495 0.486973 Vertex 10304 0.474527 0.709807 0.422049 Vertex 10305 0.390697 0.896442 0.372772 Vertex 10306 0.373516 0.370166 0.580107 Vertex 10307 0.373083 0.366921 0.582186 Vertex 10308 0.373658 0.368834 0.582168 Vertex 10309 0.531461 0.06387 0.797854 Vertex 10310 0.529868 0.0709653 0.795751 Vertex 10311 0.513148 0.292828 0.483899 Vertex 10312 0.535181 0.580427 0.538607 Vertex 10313 0.384484 0.425253 0.367169 Vertex 10314 0.35647 0.910823 0.337177 Vertex 10315 0.483867 0.357871 0.62901 Vertex 10316 0.460419 0.456098 0.393869 Vertex 10317 0.498804 0.422937 0.398465 Vertex 10318 0.595035 0.44889 0.193292 Vertex 10319 0.503879 0.418371 0.418596 Vertex 10320 0.50475 0.420651 0.411874 Vertex 10321 0.36215 0.430281 0.454446 Vertex 10322 0.356968 0.423488 0.498771 Vertex 10323 0.601183 0.461642 0.209313 Vertex 10324 0.433423 0.191965 0.79722 Vertex 10325 0.412244 0.420675 0.351948 Vertex 10326 0.610061 0.530161 0.23067 Vertex 10327 0.389045 0.464467 0.42254 Vertex 10328 0.491187 0.0393857 0.672346 Vertex 10329 0.38757 0.903834 0.359292 Vertex 10330 0.435988 0.836351 0.449021 Vertex 10331 0.477849 0.212813 0.781069 Vertex 10332 0.495161 0.471432 0.607659 Vertex 10333 0.488806 0.470698 0.606895 Vertex 10334 0.369157 0.353601 0.370717 Vertex 10335 0.343997 0.296613 0.227347 Vertex 10336 0.4464 0.160599 0.789236 Vertex 10337 0.659195 0.416653 0.233661 Vertex 10338 0.385627 0.863554 0.366832 Vertex 10339 0.402193 0.35934 0.298159 Vertex 10340 0.564812 0.486529 0.338907 Vertex 10341 0.449107 0.160066 0.793033 Vertex 10342 0.510921 0.0840307 0.799927 Vertex 10343 0.439429 0.235485 0.780506 Vertex 10344 0.461864 0.188619 0.65048 Vertex 10345 0.361777 0.38858 0.503041 Vertex 10346 0.560536 0.452391 0.524138 Vertex 10347 0.562893 0.449678 0.517919 Vertex 10348 0.531971 0.164301 0.436737 Vertex 10349 0.537431 0.629988 0.448209 Vertex 10350 0.498004 0.277542 0.594523 Vertex 10351 0.368736 0.362597 0.341678 Vertex 10352 0.365615 0.364581 0.352031 Vertex 10353 0.585831 0.513027 0.368283 Vertex 10354 0.588034 0.509953 0.374745 Vertex 10355 0.386184 0.347879 0.416677 Vertex 10356 0.386593 0.349058 0.421042 Vertex 10357 0.501102 0.63979 0.408818 Vertex 10358 0.504335 0.182892 0.452663 Vertex 10359 0.539261 0.0110932 0.730424 Vertex 10360 0.519355 0.693656 0.434984 Vertex 10361 0.520948 0.69124 0.436915 Vertex 10362 0.369056 0.886403 0.356177 Vertex 10363 0.374753 0.877448 0.36037 Vertex 10364 0.509589 0.051924 0.768454 Vertex 10365 0.438825 0.303134 0.423885 Vertex 10366 0.507581 0.486126 0.604419 Vertex 10367 0.518562 0.383007 0.480417 Vertex 10368 0.522133 0.0726592 0.794057 Vertex 10369 0.602746 0.457484 0.306942 Vertex 10370 0.410343 0.2377 0.758255 Vertex 10371 0.3591 0.401308 0.511943 Vertex 10372 0.359615 0.198599 0.526797 Vertex 10373 0.53274 0.0660436 0.800146 Vertex 10374 0.621651 0.491759 0.316069 Vertex 10375 0.620017 0.497634 0.32147 Vertex 10376 0.340011 0.909283 0.312657 Vertex 10377 0.575354 0.446865 0.488868 Vertex 10378 0.504406 0.262238 0.484722 Vertex 10379 0.565167 0.471047 0.526163 Vertex 10380 0.454419 0.162465 0.546881 Vertex 10381 0.59404 0.49488 0.272057 Vertex 10382 0.498762 0.401195 0.424649 Vertex 10383 0.460674 0.192996 0.477988 Vertex 10384 0.415484 0.417032 0.371943 Vertex 10385 0.383063 0.303246 0.241686 Vertex 10386 0.380872 0.295659 0.237801 Vertex 10387 0.470979 0.518091 0.411945 Vertex 10388 0.459513 0.134202 0.806376 Vertex 10389 0.50876 0.544476 0.396807 Vertex 10390 0.50642 0.543825 0.394929 Vertex 10391 0.50366 0.548367 0.391826 Vertex 10392 0.378959 0.36072 0.609264 Vertex 10393 0.442432 0.253111 0.720954 Vertex 10394 0.594407 0.455921 0.192131 Vertex 10395 0.447004 0.838045 0.436808 Vertex 10396 0.388589 0.268427 0.611071 Vertex 10397 0.384022 0.25057 0.231079 Vertex 10398 0.654599 0.465154 0.216858 Vertex 10399 0.381156 0.202597 0.477337 Vertex 10400 0.418575 0.215046 0.776887 Vertex 10401 0.423527 0.390067 0.41692 Vertex 10402 0.401856 0.261574 0.669065 Vertex 10403 0.499147 0.703085 0.528035 Vertex 10404 0.383886 0.0748032 0.465687 Vertex 10405 0.460069 0.682362 0.445041 Vertex 10406 0.544272 0.140385 0.449625 Vertex 10407 0.460212 0.202111 0.799056 Vertex 10408 0.393522 0.381775 0.234668 Vertex 10409 0.389335 0.381029 0.233335 Vertex 10410 0.53293 0.646707 0.443264 Vertex 10411 0.41116 0.879841 0.392347 Vertex 10412 0.39312 0.903022 0.33922 Vertex 10413 0.436302 0.447173 0.616531 Vertex 10414 0.436841 0.857187 0.408042 Vertex 10415 0.442307 0.110535 0.718354 Vertex 10416 0.359627 0.242924 0.499819 Vertex 10417 0.36106 0.247088 0.49809 Vertex 10418 0.421104 0.158816 0.606759 Vertex 10419 0.48575 0.38964 0.410121 Vertex 10420 0.519409 0.550233 0.40668 Vertex 10421 0.336102 0.912433 0.306219 Vertex 10422 0.372521 0.376089 0.565531 Vertex 10423 0.371982 0.375443 0.553082 Vertex 10424 0.37184 0.373649 0.555238 Vertex 10425 0.532652 0.0656646 0.802313 Vertex 10426 0.538574 0.0645215 0.799927 Vertex 10427 0.419659 0.34862 0.639482 Vertex 10428 0.472525 0.639742 0.523309 Vertex 10429 0.595929 0.429932 0.352019 Vertex 10430 0.599388 0.43496 0.349964 Vertex 10431 0.483559 0.0799145 0.647602 Vertex 10432 0.476321 0.0895447 0.6525 Vertex 10433 0.36433 0.329146 0.5056 Vertex 10434 0.532604 0.412596 0.555125 Vertex 10435 0.501036 0.186753 0.455133 Vertex 10436 0.44181 0.406614 0.642917 Vertex 10437 0.458749 0.503024 0.41397 Vertex 10438 0.562206 0.401491 0.451603 Vertex 10439 0.400132 0.242261 0.733362 Vertex 10440 0.526676 0.0558152 0.790699 Vertex 10441 0.557793 0.495863 0.540692 Vertex 10442 0.528168 0.0450715 0.650782 Vertex 10443 0.527203 0.0408841 0.647951 Vertex 10444 0.399534 0.402705 0.28318 Vertex 10445 0.596717 0.432135 0.347879 Vertex 10446 0.480805 0.752077 0.395515 Vertex 10447 0.511816 0.126621 0.708493 Vertex 10448 0.460348 0.215549 0.641318 Vertex 10449 0.527759 0.123251 0.716636 Vertex 10450 0.541062 0.146941 0.453729 Vertex 10451 0.46415 0.447576 0.616715 Vertex 10452 0.382992 0.242817 0.224795 Vertex 10453 0.444309 0.246039 0.689866 Vertex 10454 0.442106 0.248651 0.691933 Vertex 10455 0.526308 0.0902258 0.709292 Vertex 10456 0.59712 0.42873 0.367211 Vertex 10457 0.602012 0.434486 0.373738 Vertex 10458 0.400251 0.340636 0.250416 Vertex 10459 0.514676 0.589743 0.556955 Vertex 10460 0.492727 0.708907 0.521787 Vertex 10461 0.546292 0.00929859 0.727658 Vertex 10462 0.564871 0.501821 0.39882 Vertex 10463 0.461846 0.498836 0.607724 Vertex 10464 0.596231 0.498072 0.386768 Vertex 10465 0.647397 0.483135 0.225636 Vertex 10466 0.363536 0.344373 0.566094 Vertex 10467 0.405759 0.158869 0.655728 Vertex 10468 0.369524 0.316193 0.480979 Vertex 10469 0.449195 0.349514 0.414053 Vertex 10470 0.383424 0.399975 0.276967 Vertex 10471 0.526332 0.124311 0.712532 Vertex 10472 0.492656 0.107745 0.645766 Vertex 10473 0.6435 0.436174 0.223657 Vertex 10474 0.368079 0.379406 0.244245 Vertex 10475 0.516039 0.408166 0.57785 Vertex 10476 0.64998 0.49209 0.192368 Vertex 10477 0.325299 0.925647 0.262919 Vertex 10478 0.376021 0.31948 0.468181 Vertex 10479 0.374149 0.323324 0.474399 Vertex 10480 0.382684 0.254284 0.6042 Vertex 10481 0.643672 0.444241 0.214104 Vertex 10482 0.643536 0.444146 0.211842 Vertex 10483 0.603576 0.43942 0.376421 Vertex 10484 0.454005 0.800702 0.3751 Vertex 10485 0.53274 0.0892723 0.766689 Vertex 10486 0.434519 0.830647 0.354833 Vertex 10487 0.554725 0.00163465 0.757763 Vertex 10488 0.508706 0.350983 0.450869 Vertex 10489 0.4897 0.0734706 0.758219 Vertex 10490 0.496719 0.597081 0.402587 Vertex 10491 0.540896 0.165331 0.447807 Vertex 10492 0.505591 0.37099 0.594469 Vertex 10493 0.505159 0.17582 0.745006 Vertex 10494 0.568857 0.403239 0.403837 Vertex 10495 0.401026 0.323235 0.215336 Vertex 10496 0.400529 0.366169 0.366477 Vertex 10497 0.568904 0.4036 0.409955 Vertex 10498 0.456267 0.130648 0.807217 Vertex 10499 0.639745 0.440889 0.208904 Vertex 10500 0.403786 0.36695 0.404234 Vertex 10501 0.417497 0.454979 0.397132 Vertex 10502 0.519616 0.0948514 0.677274 Vertex 10503 0.455894 0.126544 0.638599 Vertex 10504 0.425072 0.807525 0.399691 Vertex 10505 0.329475 0.932103 0.243315 Vertex 10506 0.515275 0.167084 0.760286 Vertex 10507 0.335368 0.91241 0.290021 Vertex 10508 0.439873 0.781063 0.441185 Vertex 10509 0.43844 0.780702 0.437081 Vertex 10510 0.418694 0.398145 0.309228 Vertex 10511 0.493118 0.720249 0.405933 Vertex 10512 0.503228 0.0934063 0.812311 Vertex 10513 0.366521 0.435333 0.549001 Vertex 10514 0.514611 0.0487435 0.66056 Vertex 10515 0.465998 0.0632422 0.656622 Vertex 10516 0.581934 0.423743 0.202294 Vertex 10517 0.4403 0.249291 0.669136 Vertex 10518 0.4464 0.241508 0.679495 Vertex 10519 0.68567 0.457757 0.1927 Vertex 10520 0.404947 0.888494 0.341477 Vertex 10521 0.372414 0.33357 0.490935 Vertex 10522 0.495801 0.389261 0.438413 Vertex 10523 0.528861 0.489247 0.590572 Vertex 10524 0.359568 0.311514 0.563677 Vertex 10525 0.397467 0.844127 0.374828 Vertex 10526 0.526539 0.174825 0.453617 Vertex 10527 0.456504 0.0818216 0.731105 Vertex 10528 0.461592 0.633642 0.439651 Vertex 10529 0.490482 0.646453 0.534189 Vertex 10530 0.488457 0.282819 0.609223 Vertex 10531 0.49833 0.687129 0.534568 Vertex 10532 0.513006 0.0607665 0.730886 Vertex 10533 0.516216 0.0588357 0.730217 Vertex 10534 0.53293 0.462951 0.582073 Vertex 10535 0.530212 0.463128 0.586207 Vertex 10536 0.427862 0.423198 0.388633 Vertex 10537 0.427495 0.430418 0.388906 Vertex 10538 0.425985 0.428268 0.388278 Vertex 10539 0.376015 0.875849 0.315512 Vertex 10540 0.453874 0.599243 0.451556 Vertex 10541 0.318441 0.936947 0.275321 Vertex 10542 0.504679 0.0689339 0.690464 Vertex 10543 0.401856 0.425413 0.364492 Vertex 10544 0.539261 0.575967 0.441606 Vertex 10545 0.532018 0.568854 0.433106 Vertex 10546 0.485614 0.596619 0.40819 Vertex 10547 0.444244 0.840295 0.378813 Vertex 10548 0.399652 0.32686 0.44327 Vertex 10549 0.51791 0.344948 0.571655 Vertex 10550 0.514516 0.347181 0.5799 Vertex 10551 0.46694 0.535 0.422309 Vertex 10552 0.446945 0.241414 0.656705 Vertex 10553 0.353053 0.931724 0.32166 Vertex 10554 0.360302 0.285822 0.228662 Vertex 10555 0.519616 0.379797 0.524043 Vertex 10556 0.458589 0.770763 0.393502 Vertex 10557 0.53033 0.0119401 0.749856 Vertex 10558 0.421477 0.146752 0.695966 Vertex 10559 0.400618 0.344403 0.256629 Vertex 10560 0.353929 0.149417 0.453942 Vertex 10561 0.503411 0.683078 0.534461 Vertex 10562 0.480372 0.226577 0.487251 Vertex 10563 0.481302 0.225896 0.489129 Vertex 10564 0.351323 0.138608 0.457235 Vertex 10565 0.551012 0.154398 0.424726 Vertex 10566 0.586968 0.48188 0.293983 Vertex 10567 0.486852 0.0944487 0.650071 Vertex 10568 0.487746 0.0944428 0.649088 Vertex 10569 0.486212 0.098713 0.789284 Vertex 10570 0.34594 0.103019 0.466783 Vertex 10571 0.410455 0.177425 0.590359 Vertex 10572 0.537881 0.610289 0.528337 Vertex 10573 0.389335 0.864312 0.38303 Vertex 10574 0.474627 0.10097 0.649769 Vertex 10575 0.469575 0.107852 0.64621 Vertex 10576 0.472785 0.101514 0.650516 Vertex 10577 0.357755 0.390979 0.352031 Vertex 10578 0.488931 0.0345173 0.648762 Vertex 10579 0.506722 0.0939808 0.808277 Vertex 10580 0.533528 0.401035 0.439402 Vertex 10581 0.539261 0.483372 0.40113 Vertex 10582 0.516607 0.11856 0.708398 Vertex 10583 0.412428 0.521271 0.488868 Vertex 10584 0.497755 0.593901 0.401633 Vertex 10585 0.41957 0.199144 0.477201 Vertex 10586 0.542045 0.119579 0.44109 Vertex 10587 0.485389 0.232305 0.586225 Vertex 10588 0.326946 0.93324 0.242776 Vertex 10589 0.457452 0.359067 0.634684 Vertex 10590 0.40638 0.166172 0.511623 Vertex 10591 0.462332 0.163696 0.801301 Vertex 10592 0.405634 0.493393 0.579509 Vertex 10593 0.400452 0.849784 0.403772 Vertex 10594 0.398343 0.885941 0.389107 Vertex 10595 0.420932 0.357841 0.638321 Vertex 10596 0.40474 0.836268 0.379216 Vertex 10597 0.498969 0.182009 0.744775 Vertex 10598 0.616392 0.479244 0.280965 Vertex 10599 0.359858 0.408142 0.328299 Vertex 10600 0.382109 0.286639 0.193754 Vertex 10601 0.468474 0.718733 0.424051 Vertex 10602 0.511058 0.550506 0.578378 Vertex 10603 0.381825 0.231392 0.23192 Vertex 10604 0.436106 0.843956 0.439159 Vertex 10605 0.382429 0.23109 0.226323 Vertex 10606 0.51865 0.105323 0.673247 Vertex 10607 0.47609 0.664919 0.424661 Vertex 10608 0.403082 0.401397 0.612433 Vertex 10609 0.480242 0.806702 0.425289 Vertex 10610 0.418273 0.816119 0.395213 Vertex 10611 0.445227 0.529397 0.438425 Vertex 10612 0.448763 0.53532 0.439183 Vertex 10613 0.428774 0.123221 0.710305 Vertex 10614 0.358904 0.21016 0.481193 Vertex 10615 0.65605 0.501626 0.214756 Vertex 10616 0.453513 0.787915 0.466741 Vertex 10617 0.469712 0.340571 0.417044 Vertex 10618 0.597031 0.522379 0.276612 Vertex 10619 0.539155 0.129872 0.436903 Vertex 10620 0.324292 0.239347 0.231647 Vertex 10621 0.538918 0.497172 0.409795 Vertex 10622 0.505295 0.551814 0.394236 Vertex 10623 0.410591 0.327831 0.214566 Vertex 10624 0.413772 0.483775 0.59213 Vertex 10625 0.461195 0.146918 0.796989 Vertex 10626 0.502381 0.555457 0.39105 Vertex 10627 0.501214 0.551305 0.390534 Vertex 10628 0.438582 0.560627 0.513868 Vertex 10629 0.431759 0.257926 0.691933 Vertex 10630 0.497542 0.436619 0.388071 Vertex 10631 0.457647 0.223492 0.646322 Vertex 10632 0.531177 0.691773 0.4806 Vertex 10633 0.379586 0.232808 0.478178 Vertex 10634 0.39909 0.200287 0.475134 Vertex 10635 0.499864 0.159551 0.702848 Vertex 10636 0.444291 0.344515 0.415836 Vertex 10637 0.50488 0.619522 0.561089 Vertex 10638 0.515482 0.102059 0.691956 Vertex 10639 0.40519 0.368662 0.248296 Vertex 10640 0.36799 0.425573 0.414326 Vertex 10641 0.489647 0.627826 0.406449 Vertex 10642 0.484471 0.183342 0.546881 Vertex 10643 0.490506 0.189721 0.542705 Vertex 10644 0.534126 0.398459 0.49103 Vertex 10645 0.564077 0.401219 0.424578 Vertex 10646 0.57799 0.471598 0.499221 Vertex 10647 0.519018 0.0851679 0.656509 Vertex 10648 0.381849 0.352268 0.302168 Vertex 10649 0.522619 0.0592148 0.779908 Vertex 10650 0.408021 0.36082 0.316833 Vertex 10651 0.528334 0.129126 0.796065 Vertex 10652 0.365236 0.882181 0.310413 Vertex 10653 0.350613 0.0841906 0.448571 Vertex 10654 0.505958 0.0991217 0.807265 Vertex 10655 0.505022 0.0957458 0.808822 Vertex 10656 0.344915 0.268072 0.201613 Vertex 10657 0.435372 0.825305 0.447439 Vertex 10658 0.502476 0.0909602 0.717234 Vertex 10659 0.521558 0.089906 0.718295 Vertex 10660 0.424723 0.828195 0.36486 Vertex 10661 0.337755 0.285212 0.225991 Vertex 10662 0.378218 0.907038 0.358043 Vertex 10663 0.361587 0.893031 0.345812 Vertex 10664 0.371312 0.352102 0.512618 Vertex 10665 0.498519 0.565774 0.388906 Vertex 10666 0.324778 0.250866 0.22839 Vertex 10667 0.59362 0.524043 0.302222 Vertex 10668 0.525444 0.158354 0.790427 Vertex 10669 0.524893 0.71708 0.470407 Vertex 10670 0.530253 0.505629 0.417767 Vertex 10671 0.466306 0.683973 0.433349 Vertex 10672 0.501256 0.64907 0.407888 Vertex 10673 0.35637 0.414314 0.459261 Vertex 10674 0.370685 0.357598 0.524233 Vertex 10675 0.394701 0.480198 0.579272 Vertex 10676 0.371751 0.389397 0.250446 Vertex 10677 0.406155 0.3967 0.285466 Vertex 10678 0.517318 0.55888 0.406241 Vertex 10679 0.579772 0.460043 0.490882 Vertex 10680 0.535352 0.171781 0.447238 Vertex 10681 0.451351 0.750253 0.43066 Vertex 10682 0.455627 0.749975 0.422292 Vertex 10683 0.511632 0.278531 0.509556 Vertex 10684 0.430113 0.144223 0.716796 Vertex 10685 0.483245 0.0727362 0.73537 Vertex 10686 0.492455 0.0470852 0.686383 Vertex 10687 0.371662 0.361543 0.331302 Vertex 10688 0.331358 0.949184 0.245601 Vertex 10689 0.310042 0.965098 0.253354 Vertex 10690 0.454478 0.0846763 0.734185 Vertex 10691 0.551196 0.446355 0.366826 Vertex 10692 0.526332 0.41663 0.571726 Vertex 10693 0.363175 0.191497 0.462471 Vertex 10694 0.509305 0.438176 0.407888 Vertex 10695 0.45025 0.187855 0.594623 Vertex 10696 0.469765 0.178414 0.685483 Vertex 10697 0.472673 0.731739 0.407497 Vertex 10698 0.370264 0.21613 0.229776 Vertex 10699 0.406232 0.201755 0.75004 Vertex 10700 0.406647 0.228443 0.465663 Vertex 10701 0.507771 0.161931 0.464538 Vertex 10702 0.643725 0.471402 0.189377 Vertex 10703 0.492342 0.20313 0.474997 Vertex 10704 0.488782 0.200233 0.470686 Vertex 10705 0.539214 0.577957 0.532394 Vertex 10706 0.607994 0.518257 0.324503 Vertex 10707 0.542063 0.0487435 0.792819 Vertex 10708 0.487361 0.789201 0.470141 Vertex 10709 0.359781 0.236628 0.493222 Vertex 10710 0.4386 0.236273 0.456009 Vertex 10711 0.437415 0.491107 0.429926 Vertex 10712 0.33904 0.936183 0.308138 Vertex 10713 0.440531 0.254965 0.443293 Vertex 10714 0.554767 0.518334 0.440599 Vertex 10715 0.388784 0.0789076 0.46657 Vertex 10716 0.552238 0.00517048 0.729417 Vertex 10717 0.472353 0.282843 0.43618 Vertex 10718 0.526889 0.123345 0.714202 Vertex 10719 0.443557 0.141297 0.619576 Vertex 10720 0.456451 0.13371 0.650877 Vertex 10721 0.458707 0.128812 0.64618 Vertex 10722 0.510228 0.75495 0.474168 Vertex 10723 0.399179 0.358978 0.232275 Vertex 10724 0.542234 0.15502 0.429026 Vertex 10725 0.516122 0.0477663 0.631889 Vertex 10726 0.479934 0.10152 0.781241 Vertex 10727 0.552214 0.455571 0.370676 Vertex 10728 0.360462 0.258595 0.502117 Vertex 10729 0.395139 0.43711 0.59781 Vertex 10730 0.552096 0.460463 0.370717 Vertex 10731 0.551699 0.463324 0.364451 Vertex 10732 0.670277 0.451248 0.202052 Vertex 10733 0.455687 0.0955029 0.716689 Vertex 10734 0.406369 0.412348 0.300617 Vertex 10735 0.42785 0.311816 0.645067 Vertex 10736 0.498235 0.547746 0.387532 Vertex 10737 0.491146 0.332374 0.436317 Vertex 10738 0.693961 0.444401 0.208259 Vertex 10739 0.693523 0.443584 0.210711 Vertex 10740 0.696686 0.446492 0.214726 Vertex 10741 0.323078 0.949296 0.226672 Vertex 10742 0.453945 0.132525 0.789284 Vertex 10743 0.451446 0.244422 0.731336 Vertex 10744 0.450795 0.244487 0.725094 Vertex 10745 0.556176 0.0460487 0.742145 Vertex 10746 0.527529 0.144768 0.776941 Vertex 10747 0.643423 0.463442 0.218736 Vertex 10748 0.376542 0.0731449 0.468897 Vertex 10749 0.502541 0.374999 0.449003 Vertex 10750 0.665432 0.405252 0.225884 Vertex 10751 0.610748 0.512867 0.35501 Vertex 10752 0.473994 0.274782 0.617947 Vertex 10753 0.526836 0.107526 0.794105 Vertex 10754 0.471204 0.324195 0.422428 Vertex 10755 0.515387 0.655733 0.423855 Vertex 10756 0.64687 0.421581 0.21658 Vertex 10757 0.482161 0.0586166 0.695492 Vertex 10758 0.527872 0.442079 0.586249 Vertex 10759 0.528535 0.516942 0.417696 Vertex 10760 0.5389 0.0575268 0.803 Vertex 10761 0.375121 0.207305 0.4823 Vertex 10762 0.445127 0.594878 0.48243 Vertex 10763 0.445476 0.596128 0.482567 Vertex 10764 0.373439 0.474832 0.497936 Vertex 10765 0.373178 0.472445 0.508235 Vertex 10766 0.545741 0.0727895 0.739539 Vertex 10767 0.49833 0.314333 0.604911 Vertex 10768 0.446939 0.574013 0.46394 Vertex 10769 0.485661 0.213672 0.571726 Vertex 10770 0.451126 0.243919 0.758267 Vertex 10771 0.49188 0.229965 0.49867 Vertex 10772 0.432405 0.364741 0.422943 Vertex 10773 0.388453 0.350296 0.404014 Vertex 10774 0.431652 0.466546 0.4114 Vertex 10775 0.61853 0.530386 0.233833 Vertex 10776 0.419008 0.383155 0.354045 Vertex 10777 0.497157 0.640252 0.549481 Vertex 10778 0.46046 0.607908 0.443062 Vertex 10779 0.481302 0.755163 0.501744 Vertex 10780 0.483434 0.751408 0.50496 Vertex 10781 0.450895 0.777758 0.40604 Vertex 10782 0.455521 0.772084 0.404216 Vertex 10783 0.547103 0.591627 0.500187 Vertex 10784 0.511004 0.0287249 0.731289 Vertex 10785 0.31924 0.956605 0.217587 Vertex 10786 0.320804 0.957943 0.215253 Vertex 10787 0.558901 0.510024 0.421966 Vertex 10788 0.612246 0.449429 0.206577 Vertex 10789 0.406511 0.369704 0.40004 Vertex 10790 0.40885 0.371848 0.397855 Vertex 10791 0.510708 0.129179 0.70026 Vertex 10792 0.497607 0.626772 0.555629 Vertex 10793 0.424794 0.162707 0.743762 Vertex 10794 0.45115 0.245021 0.737555 Vertex 10795 0.470795 0.12684 0.644356 Vertex 10796 0.520581 0.707983 0.441238 Vertex 10797 0.477677 0.711329 0.416476 Vertex 10798 0.470837 0.782923 0.486843 Vertex 10799 0.466596 0.470952 0.396315 Vertex 10800 0.502819 0.397636 0.592349 Vertex 10801 0.527872 0.660655 0.437543 Vertex 10802 0.450433 0.0914755 0.710785 Vertex 10803 0.510246 0.153948 0.70899 Vertex 10804 0.313531 0.948532 0.232553 Vertex 10805 0.595823 0.465853 0.403008 Vertex 10806 0.56817 0.471681 0.319131 Vertex 10807 0.416804 0.42854 0.380809 Vertex 10808 0.502612 0.402255 0.440954 Vertex 10809 0.379089 0.367791 0.602791 Vertex 10810 0.452192 0.746919 0.432633 Vertex 10811 0.426239 0.24996 0.214862 Vertex 10812 0.625738 0.490616 0.256185 Vertex 10813 0.573731 0.502123 0.387123 Vertex 10814 0.493781 0.0366968 0.674141 Vertex 10815 0.489446 0.558472 0.384618 Vertex 10816 0.48177 0.11532 0.649035 Vertex 10817 0.460756 0.0801099 0.65889 Vertex 10818 0.457819 0.0767873 0.657818 Vertex 10819 0.345122 0.129997 0.470182 Vertex 10820 0.498413 0.24778 0.5117 Vertex 10821 0.480509 0.335448 0.630207 Vertex 10822 0.418072 0.502721 0.584075 Vertex 10823 0.418084 0.496615 0.588132 Vertex 10824 0.380587 0.378671 0.602909 Vertex 10825 0.406629 0.335448 0.20567 Vertex 10826 0.427039 0.128729 0.677298 Vertex 10827 0.489487 0.613647 0.40601 Vertex 10828 0.497353 0.208176 0.494453 Vertex 10829 0.525888 0.391677 0.435067 Vertex 10830 0.550941 0.0243421 0.720219 Vertex 10831 0.472537 0.665713 0.512346 Vertex 10832 0.451174 0.190384 0.588345 Vertex 10833 0.459288 0.166243 0.801478 Vertex 10834 0.379344 0.336721 0.268735 Vertex 10835 0.446471 0.583507 0.511665 Vertex 10836 0.421999 0.393502 0.384387 Vertex 10837 0.350482 0.267503 0.225807 Vertex 10838 0.481042 0.472066 0.385014 Vertex 10839 0.491394 0.645073 0.40283 Vertex 10840 0.602243 0.471793 0.196946 Vertex 10841 0.507409 0.305479 0.584105 Vertex 10842 0.660919 0.402966 0.219595 Vertex 10843 0.497501 0.527911 0.388823 Vertex 10844 0.529827 0.666992 0.443323 Vertex 10845 0.496073 0.0528775 0.687094 Vertex 10846 0.598216 0.492795 0.268605 Vertex 10847 0.547962 0.15932 0.443293 Vertex 10848 0.365479 0.359707 0.267094 Vertex 10849 0.662601 0.462216 0.208827 Vertex 10850 0.480076 0.0647169 0.699407 Vertex 10851 0.437095 0.462216 0.607037 Vertex 10852 0.402851 0.338936 0.629265 Vertex 10853 0.37781 0.394538 0.567598 Vertex 10854 0.317955 0.970043 0.202952 Vertex 10855 0.550686 0.510516 0.425164 Vertex 10856 0.418451 0.240507 0.220122 Vertex 10857 0.444842 0.250529 0.737555 Vertex 10858 0.527706 0.499725 0.416008 Vertex 10859 0.423361 0.394674 0.333357 Vertex 10860 0.611109 0.4615 0.383137 Vertex 10861 0.650986 0.416819 0.216983 Vertex 10862 0.392148 0.344752 0.2196 Vertex 10863 0.375304 0.290311 0.598609 Vertex 10864 0.463066 0.52569 0.587641 Vertex 10865 0.6262 0.487702 0.234046 Vertex 10866 0.632028 0.485072 0.232387 Vertex 10867 0.451944 0.817025 0.467108 Vertex 10868 0.518325 0.332871 0.565496 Vertex 10869 0.571564 0.502111 0.385287 Vertex 10870 0.490453 0.296897 0.613274 Vertex 10871 0.666332 0.460558 0.217012 Vertex 10872 0.66927 0.457389 0.212398 Vertex 10873 0.631921 0.473167 0.183881 Vertex 10874 0.355487 0.106572 0.467719 Vertex 10875 0.359627 0.10826 0.463383 Vertex 10876 0.517981 0.297626 0.526116 Vertex 10877 0.427234 0.81269 0.389474 Vertex 10878 0.536685 0.452355 0.397239 Vertex 10879 0.46614 0.195116 0.67741 Vertex 10880 0.489612 0.707415 0.403659 Vertex 10881 0.405842 0.164229 0.629022 Vertex 10882 0.45606 0.808058 0.473339 Vertex 10883 0.443853 0.245169 0.449731 Vertex 10884 0.468788 0.223504 0.768637 Vertex 10885 0.502328 0.376178 0.600724 Vertex 10886 0.530685 0.496953 0.415605 Vertex 10887 0.440211 0.429908 0.633855 Vertex 10888 0.420204 0.861214 0.351978 Vertex 10889 0.547233 0.552039 0.443009 Vertex 10890 0.302059 0.974882 0.234105 Vertex 10891 0.349434 0.286503 0.196372 Vertex 10892 0.491637 0.363989 0.621589 Vertex 10893 0.376832 0.449429 0.427652 Vertex 10894 0.368872 0.31277 0.247834 Vertex 10895 0.366006 0.357054 0.446557 Vertex 10896 0.361179 0.413467 0.528455 Vertex 10897 0.542963 0.609655 0.4633 Vertex 10898 0.540955 0.610668 0.455275 Vertex 10899 0.432097 0.254094 0.443145 Vertex 10900 0.448579 0.149689 0.637065 Vertex 10901 0.364987 0.444798 0.538601 Vertex 10902 0.362665 0.104642 0.481785 Vertex 10903 0.462829 0.408995 0.381271 Vertex 10904 0.493621 0.189786 0.779002 Vertex 10905 0.552481 0.555184 0.478776 Vertex 10906 0.377395 0.216716 0.481512 Vertex 10907 0.416781 0.518665 0.473582 Vertex 10908 0.305097 0.963558 0.245903 Vertex 10909 0.398782 0.193825 0.723021 Vertex 10910 0.539214 0.161742 0.43364 Vertex 10911 0.367954 0.341684 0.405785 Vertex 10912 0.3851 0.39349 0.600884 Vertex 10913 0.457671 0.812252 0.469448 Vertex 10914 0.462178 0.159562 0.517759 Vertex 10915 0.477115 0.234478 0.471556 Vertex 10916 0.68532 0.454191 0.209342 Vertex 10917 0.602948 0.443015 0.189952 Vertex 10918 0.41466 0.406449 0.615761 Vertex 10919 0.511916 0.517421 0.399555 Vertex 10920 0.506077 0.526602 0.396522 Vertex 10921 0.509565 0.519086 0.397049 Vertex 10922 0.523993 0.0298917 0.637965 Vertex 10923 0.361427 0.354157 0.434943 Vertex 10924 0.464298 0.787951 0.382959 Vertex 10925 0.512757 0.314185 0.468346 Vertex 10926 0.397354 0.314073 0.239862 Vertex 10927 0.369707 0.286148 0.235485 Vertex 10928 0.365662 0.283731 0.231298 Vertex 10929 0.43183 0.458005 0.605112 Vertex 10930 0.455687 0.566982 0.445728 Vertex 10931 0.34819 0.146319 0.463987 Vertex 10932 0.464784 0.434771 0.378363 Vertex 10933 0.453744 0.142955 0.789183 Vertex 10934 0.488557 0.60195 0.401266 Vertex 10935 0.416721 0.25269 0.223652 Vertex 10936 0.534494 0.128054 0.787495 Vertex 10937 0.576468 0.519779 0.474316 Vertex 10938 0.592624 0.467985 0.444069 Vertex 10939 0.641492 0.443305 0.214264 Vertex 10940 0.367036 0.341187 0.218759 Vertex 10941 0.429846 0.390641 0.643219 Vertex 10942 0.474509 0.397985 0.622946 Vertex 10943 0.431493 0.261965 0.706455 Vertex 10944 0.471317 0.108616 0.644474 Vertex 10945 0.394363 0.854918 0.387135 Vertex 10946 0.478181 0.397908 0.389368 Vertex 10947 0.556893 0.4849 0.378932 Vertex 10948 0.426523 0.396031 0.409511 Vertex 10949 0.428004 0.401172 0.405933 Vertex 10950 0.393546 0.27663 0.229527 Vertex 10951 0.47163 0.221081 0.760351 Vertex 10952 0.496097 0.784468 0.446705 Vertex 10953 0.425517 0.350681 0.645985 Vertex 10954 0.50642 0.539276 0.585378 Vertex 10955 0.447478 0.791114 0.393514 Vertex 10956 0.370945 0.363059 0.227466 Vertex 10957 0.440027 0.56546 0.517854 Vertex 10958 0.697278 0.454162 0.215786 Vertex 10959 0.421667 0.264808 0.675332 Vertex 10960 0.474657 0.108876 0.65035 Vertex 10961 0.478098 0.213844 0.752054 Vertex 10962 0.477873 0.215046 0.758267 Vertex 10963 0.487148 0.488235 0.603881 Vertex 10964 0.493325 0.6889 0.525743 Vertex 10965 0.413896 0.36714 0.310614 Vertex 10966 0.376465 0.394633 0.546905 Vertex 10967 0.422579 0.398352 0.334091 Vertex 10968 0.484725 0.063793 0.74327 Vertex 10969 0.392652 0.244938 0.708534 Vertex 10970 0.441881 0.542913 0.457757 Vertex 10971 0.362725 0.919428 0.289109 Vertex 10972 0.359994 0.261462 0.496331 Vertex 10973 0.359544 0.187748 0.457478 Vertex 10974 0.408234 0.263683 0.678281 Vertex 10975 0.433909 0.837838 0.363077 Vertex 10976 0.48379 0.790036 0.41782 Vertex 10977 0.506094 0.332818 0.596519 Vertex 10978 0.554204 0.56177 0.515799 Vertex 10979 0.450019 0.40681 0.632694 Vertex 10980 0.43947 0.536173 0.457792 Vertex 10981 0.490139 0.183543 0.723216 Vertex 10982 0.492887 0.0880516 0.730323 Vertex 10983 0.463795 0.18686 0.571892 Vertex 10984 0.436906 0.101899 0.664167 Vertex 10985 0.367326 0.455281 0.472474 Vertex 10986 0.495339 0.135629 0.65029 Vertex 10987 0.464067 0.615388 0.437756 Vertex 10988 0.577705 0.433189 0.46192 Vertex 10989 0.626034 0.522521 0.279929 Vertex 10990 0.453762 0.264512 0.629366 Vertex 10991 0.465506 0.17964 0.677173 Vertex 10992 0.49875 0.459143 0.389285 Vertex 10993 0.490429 0.457496 0.385855 Vertex 10994 0.518834 0.389907 0.546863 Vertex 10995 0.479407 0.523451 0.597377 Vertex 10996 0.460129 0.215028 0.793157 Vertex 10997 0.451665 0.374069 0.410079 Vertex 10998 0.523057 0.149814 0.751852 Vertex 10999 0.354634 0.168855 0.478344 Vertex 11000 0.634723 0.513927 0.266591 Vertex 11001 0.322486 0.978803 0.226098 Vertex 11002 0.403271 0.29287 0.227756 Vertex 11003 0.403218 0.289304 0.229876 Vertex 11004 0.56416 0.470325 0.32574 Vertex 11005 0.356749 0.31213 0.551631 Vertex 11006 0.358697 0.319972 0.55875 Vertex 11007 0.358626 0.314837 0.559893 Vertex 11008 0.371994 0.249261 0.476804 Vertex 11009 0.510347 0.280941 0.555131 Vertex 11010 0.45725 0.542913 0.431105 Vertex 11011 0.62203 0.490426 0.311538 Vertex 11012 0.647533 0.429357 0.201051 Vertex 11013 0.480384 0.194802 0.79125 Vertex 11014 0.453501 0.236818 0.708522 Vertex 11015 0.494995 0.182643 0.73698 Vertex 11016 0.519859 0.108941 0.681544 Vertex 11017 0.517507 0.101597 0.683605 Vertex 11018 0.342984 0.096948 0.448624 Vertex 11019 0.508991 0.196194 0.477935 Vertex 11020 0.490713 0.608879 0.401876 Vertex 11021 0.474065 0.119756 0.816824 Vertex 11022 0.348717 0.302281 0.204906 Vertex 11023 0.366888 0.342821 0.511801 Vertex 11024 0.517981 0.36573 0.450057 Vertex 11025 0.365627 0.909407 0.34904 Vertex 11026 0.327935 0.257979 0.234804 Vertex 11027 0.570728 0.439692 0.331331 Vertex 11028 0.48206 0.0910965 0.772724 Vertex 11029 0.455473 0.231854 0.70023 Vertex 11030 0.493663 0.421522 0.388361 Vertex 11031 0.388174 0.298917 0.449495 Vertex 11032 0.493716 0.0514975 0.724626 Vertex 11033 0.479614 0.348022 0.423666 Vertex 11034 0.40455 0.385909 0.271293 Vertex 11035 0.499579 0.740658 0.497166 Vertex 11036 0.461343 0.0728724 0.700195 Vertex 11037 0.370904 0.34586 0.425259 Vertex 11038 0.622019 0.489544 0.264737 Vertex 11039 0.475178 0.731141 0.491024 Vertex 11040 0.480437 0.723885 0.402806 Vertex 11041 0.41947 0.173522 0.551033 Vertex 11042 0.360652 0.131981 0.473943 Vertex 11043 0.454176 0.614755 0.507394 Vertex 11044 0.525752 0.656225 0.520205 Vertex 11045 0.41052 0.51738 0.482673 Vertex 11046 0.410301 0.518689 0.486789 Vertex 11047 0.49679 0.267965 0.592485 Vertex 11048 0.509156 0.403025 0.443714 Vertex 11049 0.50982 0.65215 0.417808 Vertex 11050 0.553576 0.158828 0.433515 Vertex 11051 0.512159 0.1884 0.460676 Vertex 11052 0.663933 0.418122 0.221614 Vertex 11053 0.324861 0.245755 0.231404 Vertex 11054 0.368215 0.418584 0.322258 Vertex 11055 0.493159 0.552336 0.378227 Vertex 11056 0.44441 0.16786 0.577987 Vertex 11057 0.67158 0.478829 0.194056 Vertex 11058 0.667682 0.476223 0.193653 Vertex 11059 0.506266 0.0426254 0.670925 Vertex 11060 0.507036 0.046487 0.670037 Vertex 11061 0.354137 0.0912623 0.453398 Vertex 11062 0.378609 0.899078 0.307635 Vertex 11063 0.505319 0.273544 0.473724 Vertex 11064 0.480751 0.208336 0.739539 Vertex 11065 0.529151 0.637557 0.43791 Vertex 11066 0.395388 0.257233 0.689244 Vertex 11067 0.533392 0.39946 0.522029 Vertex 11068 0.434312 0.13666 0.662799 Vertex 11069 0.497909 0.240679 0.540733 Vertex 11070 0.315965 0.938902 0.246418 Vertex 11071 0.358472 0.136346 0.455032 Vertex 11072 0.48575 0.46028 0.607209 Vertex 11073 0.52863 0.109445 0.739462 Vertex 11074 0.485093 0.692697 0.509959 Vertex 11075 0.462314 0.208626 0.592426 Vertex 11076 0.367978 0.880244 0.32702 Vertex 11077 0.421063 0.248746 0.202679 Vertex 11078 0.524472 0.0669142 0.663368 Vertex 11079 0.525343 0.0640299 0.662657 Vertex 11080 0.411782 0.176827 0.582121 Vertex 11081 0.417817 0.368994 0.3396 Vertex 11082 0.416935 0.367051 0.335454 Vertex 11083 0.448396 0.60253 0.50005 Vertex 11084 0.527517 0.605349 0.54328 Vertex 11085 0.332939 0.24611 0.209917 Vertex 11086 0.371235 0.877478 0.31293 Vertex 11087 0.370993 0.87842 0.31675 Vertex 11088 0.598174 0.524475 0.242065 Vertex 11089 0.595384 0.519696 0.239589 Vertex 11090 0.596516 0.524144 0.238044 Vertex 11091 0.603712 0.510285 0.370593 Vertex 11092 0.538373 0.401284 0.517824 Vertex 11093 0.689667 0.454641 0.200091 Vertex 11094 0.686694 0.451443 0.200121 Vertex 11095 0.363033 0.104369 0.464591 Vertex 11096 0.369707 0.173451 0.490829 Vertex 11097 0.61882 0.454701 0.191255 Vertex 11098 0.520374 0.086613 0.683345 Vertex 11099 0.574898 0.429523 0.338308 Vertex 11100 0.447312 0.154463 0.625321 Vertex 11101 0.488877 0.697103 0.404411 Vertex 11102 0.42111 0.22467 0.466291 Vertex 11103 0.683549 0.452503 0.207601 Vertex 11104 0.365716 0.455773 0.517392 Vertex 11105 0.361013 0.232328 0.557441 Vertex 11106 0.323345 0.990287 0.210024 Vertex 11107 0.592654 0.52123 0.214839 Vertex 11108 0.388233 0.478367 0.445319 Vertex 11109 0.349168 0.179326 0.472386 Vertex 11110 0.488942 0.0859615 0.729903 Vertex 11111 0.497726 0.0832371 0.729666 Vertex 11112 0.368813 0.293794 0.474459 Vertex 11113 0.452642 0.102332 0.719598 Vertex 11114 0.54853 0.0134622 0.769413 Vertex 11115 0.427317 0.261018 0.685696 Vertex 11116 0.372373 0.344201 0.495099 Vertex 11117 0.374149 0.349354 0.499269 Vertex 11118 0.450001 0.144098 0.77896 Vertex 11119 0.483286 0.18028 0.47524 Vertex 11120 0.639094 0.440806 0.206819 Vertex 11121 0.536359 0.0643023 0.80194 Vertex 11122 0.365798 0.448938 0.533265 Vertex 11123 0.54169 0.0340553 0.781051 Vertex 11124 0.395329 0.175802 0.67741 Vertex 11125 0.394648 0.347915 0.279603 Vertex 11126 0.394014 0.349194 0.285632 Vertex 11127 0.401506 0.352641 0.264891 Vertex 11128 0.366776 0.309388 0.244274 Vertex 11129 0.516933 0.132389 0.707237 Vertex 11130 0.412842 0.145147 0.663095 Vertex 11131 0.386593 0.351534 0.381123 Vertex 11132 0.38545 0.354661 0.310424 Vertex 11133 0.522921 0.362141 0.54065 Vertex 11134 0.475326 0.361312 0.416239 Vertex 11135 0.528358 0.141137 0.79029 Vertex 11136 0.412333 0.237363 0.214892 Vertex 11137 0.597374 0.534153 0.271175 Vertex 11138 0.465974 0.604064 0.536759 Vertex 11139 0.5311 0.541793 0.424785 Vertex 11140 0.358993 0.147131 0.453587 Vertex 11141 0.52009 0.0773026 0.795875 Vertex 11142 0.42146 0.40248 0.345599 Vertex 11143 0.521476 0.360483 0.553082 Vertex 11144 0.522642 0.365073 0.536504 Vertex 11145 0.508623 0.101112 0.719947 Vertex 11146 0.470866 0.151158 0.800466 Vertex 11147 0.402264 0.363148 0.35411 Vertex 11148 0.633254 0.519246 0.263381 Vertex 11149 0.409839 0.428972 0.376498 Vertex 11150 0.39614 0.362876 0.370693 Vertex 11151 0.591239 0.477775 0.43101 Vertex 11152 0.615516 0.46317 0.354939 Vertex 11153 0.517164 0.0964269 0.720059 Vertex 11154 0.40551 0.25651 0.448351 Vertex 11155 0.441081 0.524481 0.579432 Vertex 11156 0.392539 0.257861 0.679501 Vertex 11157 0.529524 0.402344 0.461464 Vertex 11158 0.417195 0.235432 0.460552 Vertex 11159 0.520854 0.0798908 0.681106 Vertex 11160 0.573998 0.526412 0.480553 Vertex 11161 0.422425 0.260757 0.73335 Vertex 11162 0.4075 0.476383 0.592154 Vertex 11163 0.373172 0.371084 0.539016 Vertex 11164 0.373314 0.366352 0.531891 Vertex 11165 0.459513 0.210255 0.613073 Vertex 11166 0.459074 0.208993 0.608702 Vertex 11167 0.512284 0.453646 0.40694 Vertex 11168 0.555371 0.426609 0.367454 Vertex 11169 0.563349 0.403298 0.459859 Vertex 11170 0.599779 0.522521 0.271134 Vertex 11171 0.490399 0.737336 0.404299 Vertex 11172 0.475747 0.533395 0.409931 Vertex 11173 0.416556 0.266822 0.221448 Vertex 11174 0.539948 0.473529 0.397908 Vertex 11175 0.551646 0.534277 0.44802 Vertex 11176 0.487337 0.663836 0.407509 Vertex 11177 0.519112 0.515745 0.407698 Vertex 11178 0.460608 0.761761 0.474316 Vertex 11179 0.420743 0.267639 0.654531 Vertex 11180 0.373699 0.094958 0.475892 Vertex 11181 0.3617 0.250653 0.488951 Vertex 11182 0.433903 0.806193 0.39131 Vertex 11183 0.648457 0.470425 0.191634 Vertex 11184 0.652728 0.457834 0.195169 Vertex 11185 0.413825 0.196638 0.764491 Vertex 11186 0.342901 0.111607 0.470644 Vertex 11187 0.536916 0.137246 0.442926 Vertex 11188 0.535951 0.121646 0.44112 Vertex 11189 0.604719 0.542842 0.271459 Vertex 11190 0.504857 0.750508 0.433811 Vertex 11191 0.372781 0.209479 0.221093 Vertex 11192 0.486958 0.0815195 0.72751 Vertex 11193 0.425469 0.818352 0.437051 Vertex 11194 0.614515 0.449098 0.199931 Vertex 11195 0.370394 0.0966756 0.482111 Vertex 11196 0.371656 0.093353 0.481702 Vertex 11197 0.425049 0.15849 0.594558 Vertex 11198 0.398509 0.304745 0.237795 Vertex 11199 0.41578 0.41817 0.33617 Vertex 11200 0.51566 0.34291 0.459628 Vertex 11201 0.49663 0.181435 0.511623 Vertex 11202 0.498478 0.182975 0.505434 Vertex 11203 0.452204 0.0787181 0.682658 Vertex 11204 0.451659 0.083397 0.69599 Vertex 11205 0.486005 0.644575 0.410298 Vertex 11206 0.386137 0.363332 0.225393 Vertex 11207 0.336771 0.24993 0.226204 Vertex 11208 0.397224 0.17813 0.602844 Vertex 11209 0.461982 0.68941 0.486789 Vertex 11210 0.352561 0.382971 0.433568 Vertex 11211 0.351791 0.384712 0.440439 Vertex 11212 0.527203 0.351859 0.499547 Vertex 11213 0.521286 0.648751 0.428185 Vertex 11214 0.552155 0.039439 0.783035 Vertex 11215 0.360409 0.280124 0.198078 Vertex 11216 0.385284 0.183028 0.486002 Vertex 11217 0.593756 0.513566 0.274829 Vertex 11218 0.593999 0.516646 0.279656 Vertex 11219 0.488368 0.667123 0.525156 Vertex 11220 0.602391 0.50971 0.211173 Vertex 11221 0.550366 0.0430281 0.791345 Vertex 11222 0.496831 0.541722 0.585449 Vertex 11223 0.415803 0.319516 0.432372 Vertex 11224 0.625093 0.490023 0.272804 Vertex 11225 0.519888 0.14183 0.712532 Vertex 11226 0.380848 0.244191 0.231576 Vertex 11227 0.505668 0.504925 0.399022 Vertex 11228 0.473502 0.0599492 0.652446 Vertex 11229 0.466081 0.344675 0.414527 Vertex 11230 0.368612 0.904734 0.296826 Vertex 11231 0.362884 0.370901 0.35411 Vertex 11232 0.655085 0.437264 0.194465 Vertex 11233 0.52401 0.0991217 0.713124 Vertex 11234 0.3634 0.881612 0.333464 Vertex 11235 0.413766 0.270642 0.227649 Vertex 11236 0.649808 0.472468 0.215733 Vertex 11237 0.603818 0.509384 0.222645 Vertex 11238 0.603439 0.474423 0.195282 Vertex 11239 0.548163 0.401657 0.49918 Vertex 11240 0.400878 0.438769 0.600345 Vertex 11241 0.493598 0.658476 0.405495 Vertex 11242 0.524863 0.703902 0.447386 Vertex 11243 0.380398 0.415208 0.300362 Vertex 11244 0.500545 0.179451 0.744123 Vertex 11245 0.607627 0.508241 0.199357 Vertex 11246 0.524443 0.0227371 0.648336 Vertex 11247 0.39492 0.302399 0.238452 Vertex 11248 0.486644 0.106572 0.805914 Vertex 11249 0.497175 0.0750757 0.766659 Vertex 11250 0.500805 0.0822006 0.774785 Vertex 11251 0.421288 0.449838 0.603199 Vertex 11252 0.556976 0.403831 0.482638 Vertex 11253 0.451979 0.181287 0.80075 Vertex 11254 0.421187 0.46365 0.403576 Vertex 11255 0.417716 0.315477 0.641128 Vertex 11256 0.421904 0.322915 0.644694 Vertex 11257 0.506166 0.0247212 0.663569 Vertex 11258 0.525231 0.106709 0.718312 Vertex 11259 0.406049 0.178728 0.575914 Vertex 11260 0.358123 0.221816 0.497385 Vertex 11261 0.331056 0.278164 0.220305 Vertex 11262 0.554258 0.00924528 0.76795 Vertex 11263 0.411433 0.27554 0.225642 Vertex 11264 0.48373 0.187079 0.720285 Vertex 11265 0.483961 0.184183 0.717827 Vertex 11266 0.489055 0.551512 0.58247 Vertex 11267 0.476067 0.623058 0.535338 Vertex 11268 0.363145 0.404245 0.308506 Vertex 11269 0.359728 0.395545 0.31887 Vertex 11270 0.356885 0.337544 0.240117 Vertex 11271 0.356701 0.335619 0.237961 Vertex 11272 0.505822 0.138892 0.702327 Vertex 11273 0.397455 0.356361 0.327156 Vertex 11274 0.448123 0.621127 0.47331 Vertex 11275 0.375352 0.465367 0.453629 Vertex 11276 0.449699 0.173913 0.797528 Vertex 11277 0.417118 0.310727 0.640198 Vertex 11278 0.534174 0.493683 0.411945 Vertex 11279 0.533149 0.488412 0.409481 Vertex 11280 0.593211 0.476117 0.409209 Vertex 11281 0.521399 0.391737 0.436441 Vertex 11282 0.531082 0.0673762 0.707113 Vertex 11283 0.541311 0.0447457 0.785155 Vertex 11284 0.650874 0.502627 0.225529 Vertex 11285 0.649073 0.502804 0.22977 Vertex 11286 0.644152 0.457123 0.188968 Vertex 11287 0.644543 0.463087 0.190112 Vertex 11288 0.398444 0.319972 0.225831 Vertex 11289 0.457256 0.597993 0.445183 Vertex 11290 0.396993 0.443986 0.599119 Vertex 11291 0.537431 0.108539 0.794969 Vertex 11292 0.384005 0.491723 0.515799 Vertex 11293 0.441295 0.161073 0.536528 Vertex 11294 0.397899 0.843973 0.385109 Vertex 11295 0.373024 0.371132 0.575926 Vertex 11296 0.403176 0.381591 0.256019 Vertex 11297 0.465068 0.187529 0.660851 Vertex 11298 0.351667 0.273745 0.199629 Vertex 11299 0.375192 0.406632 0.551175 Vertex 11300 0.489351 0.713479 0.513951 Vertex 11301 0.397804 0.853017 0.356029 Vertex 11302 0.441123 0.567344 0.480689 Vertex 11303 0.413541 0.376776 0.410825 Vertex 11304 0.511603 0.723459 0.430737 Vertex 11305 0.526332 0.328275 0.498173 Vertex 11306 0.551196 0.451283 0.360761 Vertex 11307 0.624974 0.531393 0.294102 Vertex 11308 0.425428 0.407947 0.62349 Vertex 11309 0.540683 0.444591 0.561362 Vertex 11310 0.541879 0.43512 0.557228 Vertex 11311 0.54413 0.442062 0.553123 Vertex 11312 0.358217 0.088757 0.441949 Vertex 11313 0.457049 0.234111 0.462163 Vertex 11314 0.398906 0.175465 0.607055 Vertex 11315 0.371176 0.370439 0.555155 Vertex 11316 0.657869 0.407817 0.225914 Vertex 11317 0.487148 0.676516 0.520383 Vertex 11318 0.507848 0.136008 0.702297 Vertex 11319 0.331376 0.271649 0.227756 Vertex 11320 0.327337 0.270127 0.226015 Vertex 11321 0.516122 0.624337 0.425152 Vertex 11322 0.606347 0.493304 0.208365 Vertex 11323 0.322018 0.951949 0.219897 Vertex 11324 0.516512 0.473096 0.408042 Vertex 11325 0.464736 0.78201 0.382782 Vertex 11326 0.560968 0.552436 0.506749 Vertex 11327 0.457481 0.204871 0.599812 Vertex 11328 0.494107 0.0995007 0.809409 Vertex 11329 0.408453 0.485232 0.427367 Vertex 11330 0.530022 0.696244 0.468027 Vertex 11331 0.463587 0.436251 0.617349 Vertex 11332 0.37152 0.367229 0.57178 Vertex 11333 0.504584 0.285034 0.465053 Vertex 11334 0.492129 0.22788 0.540745 Vertex 11335 0.567986 0.465705 0.319759 Vertex 11336 0.399901 0.265827 0.446977 Vertex 11337 0.478483 0.494602 0.400585 Vertex 11338 0.470002 0.647193 0.4278 Vertex 11339 0.431285 0.227572 0.78387 Vertex 11340 0.428484 0.368887 0.646885 Vertex 11341 0.393451 0.412981 0.291508 Vertex 11342 0.412807 0.363651 0.323022 Vertex 11343 0.409318 0.373513 0.362384 Vertex 11344 0.552617 0.0161274 0.72465 Vertex 11345 0.611618 0.489188 0.223729 Vertex 11346 0.356358 0.238002 0.546265 Vertex 11347 0.452204 0.197633 0.472877 Vertex 11348 0.601248 0.479925 0.283577 Vertex 11349 0.613502 0.461541 0.340168 Vertex 11350 0.434489 0.457401 0.406899 Vertex 11351 0.507871 0.472415 0.605764 Vertex 11352 0.34803 0.297643 0.200559 Vertex 11353 0.529524 0.572952 0.557204 Vertex 11354 0.460212 0.188655 0.635981 Vertex 11355 0.48681 0.717205 0.5056 Vertex 11356 0.481059 0.54585 0.399187 Vertex 11357 0.428371 0.276517 0.433231 Vertex 11358 0.370578 0.32105 0.254064 Vertex 11359 0.414447 0.176442 0.565537 Vertex 11360 0.351691 0.399057 0.478806 Vertex 11361 0.536602 0.495857 0.582085 Vertex 11362 0.530999 0.506524 0.586225 Vertex 11363 0.466306 0.756833 0.480476 Vertex 11364 0.509156 0.381183 0.582097 Vertex 11365 0.606786 0.529077 0.303122 Vertex 11366 0.491856 0.426307 0.378772 Vertex 11367 0.492614 0.429636 0.381301 Vertex 11368 0.361884 0.317123 0.205422 Vertex 11369 0.363998 0.315708 0.202893 Vertex 11370 0.357998 0.254515 0.512452 Vertex 11371 0.417272 0.405465 0.367886 Vertex 11372 0.355339 0.237214 0.527117 Vertex 11373 0.394535 0.226086 0.470271 Vertex 11374 0.53986 0.660626 0.484515 Vertex 11375 0.38195 0.267764 0.602732 Vertex 11376 0.430675 0.295796 0.427166 Vertex 11377 0.538699 0.576299 0.538554 Vertex 11378 0.519018 0.022441 0.659021 Vertex 11379 0.353604 0.262427 0.210539 Vertex 11380 0.489582 0.610395 0.403144 Vertex 11381 0.634669 0.449601 0.199493 Vertex 11382 0.419327 0.830458 0.372802 Vertex 11383 0.535264 0.141842 0.443868 Vertex 11384 0.58913 0.50663 0.301925 Vertex 11385 0.543757 0.0548912 0.799494 Vertex 11386 0.443705 0.57515 0.513815 Vertex 11387 0.688003 0.453883 0.213909 Vertex 11388 0.354788 0.359885 0.424566 Vertex 11389 0.353503 0.363717 0.424566 Vertex 11390 0.402128 0.270239 0.63944 Vertex 11391 0.479294 0.319462 0.630876 Vertex 11392 0.516631 0.0863939 0.79892 Vertex 11393 0.453181 0.630219 0.453617 Vertex 11394 0.362197 0.421291 0.440273 Vertex 11395 0.372621 0.349887 0.283441 Vertex 11396 0.444736 0.423316 0.637421 Vertex 11397 0.44335 0.421018 0.638297 Vertex 11398 0.406167 0.832637 0.389255 Vertex 11399 0.36645 0.207536 0.227839 Vertex 11400 0.556786 0.0141137 0.734996 Vertex 11401 0.504543 0.142197 0.701664 Vertex 11402 0.325045 0.242598 0.233904 Vertex 11403 0.39983 0.511451 0.499405 Vertex 11404 0.355416 0.328412 0.233987 Vertex 11405 0.555454 0.509645 0.544826 Vertex 11406 0.52237 0.393632 0.47652 Vertex 11407 0.629381 0.508081 0.191965 Vertex 11408 0.473271 0.121036 0.814609 Vertex 11409 0.508055 0.310194 0.459995 Vertex 11410 0.510756 0.0199357 0.637237 Vertex 11411 0.464476 0.224386 0.718887 Vertex 11412 0.374576 0.903591 0.361004 Vertex 11413 0.48318 0.0528301 0.682439 Vertex 11414 0.394784 0.310342 0.623514 Vertex 11415 0.512064 0.126544 0.706431 Vertex 11416 0.307241 0.995126 0.216307 Vertex 11417 0.472904 0.228212 0.478166 Vertex 11418 0.42435 0.164597 0.579941 Vertex 11419 0.447857 0.394864 0.404465 Vertex 11420 0.484423 0.570033 0.400248 Vertex 11421 0.420826 0.8756 0.392193 Vertex 11422 0.51929 0.373157 0.5531 Vertex 11423 0.483109 0.20015 0.726746 Vertex 11424 0.394073 0.297045 0.197207 Vertex 11425 0.595787 0.517084 0.245654 Vertex 11426 0.382897 0.457834 0.428972 Vertex 11427 0.481504 0.638729 0.530167 Vertex 11428 0.40516 0.360998 0.308482 Vertex 11429 0.577018 0.410754 0.41631 Vertex 11430 0.521499 0.163223 0.778866 Vertex 11431 0.525858 0.383427 0.449506 Vertex 11432 0.465305 0.192966 0.662852 Vertex 11433 0.477642 0.535136 0.403908 Vertex 11434 0.320188 0.954514 0.273894 Vertex 11435 0.50507 0.258838 0.522112 Vertex 11436 0.403277 0.836161 0.391624 Vertex 11437 0.443557 0.375734 0.646198 Vertex 11438 0.459981 0.23388 0.741689 Vertex 11439 0.456723 0.238097 0.747932 Vertex 11440 0.407991 0.237416 0.461097 Vertex 11441 0.365028 0.343982 0.406585 Vertex 11442 0.359064 0.349887 0.412134 Vertex 11443 0.301188 0.97715 0.215709 Vertex 11444 0.301739 0.985081 0.213476 Vertex 11445 0.436793 0.14308 0.602951 Vertex 11446 0.593312 0.523984 0.217255 Vertex 11447 0.525598 0.465983 0.408119 Vertex 11448 0.450978 0.185231 0.609081 Vertex 11449 0.680967 0.45049 0.200666 Vertex 11450 0.404444 0.231517 0.741659 Vertex 11451 0.410852 0.278981 0.225606 Vertex 11452 0.460976 0.710791 0.476561 Vertex 11453 0.558166 0.490509 0.540692 Vertex 11454 0.496968 0.244624 0.561403 Vertex 11455 0.450113 0.615027 0.461476 Vertex 11456 0.379509 0.402072 0.282831 Vertex 11457 0.370181 0.266496 0.584679 Vertex 11458 0.397449 0.289956 0.238914 Vertex 11459 0.546789 0.0708587 0.745503 Vertex 11460 0.539398 0.159497 0.4494 Vertex 11461 0.400659 0.328874 0.222668 Vertex 11462 0.388174 0.323371 0.256049 Vertex 11463 0.478566 0.186374 0.795502 Vertex 11464 0.425842 0.851821 0.433799 Vertex 11465 0.60996 0.455624 0.38001 Vertex 11466 0.450949 0.556357 0.441386 Vertex 11467 0.353556 0.156814 0.452989 Vertex 11468 0.511235 0.0340553 0.670232 Vertex 11469 0.372941 0.353139 0.44324 Vertex 11470 0.376892 0.347725 0.464858 Vertex 11471 0.486715 0.416316 0.380306 Vertex 11472 0.538533 0.0677908 0.797481 Vertex 11473 0.472732 0.457697 0.381206 Vertex 11474 0.537567 0.00693544 0.739539 Vertex 11475 0.423817 0.242817 0.203467 Vertex 11476 0.499656 0.142754 0.793826 Vertex 11477 0.507688 0.270411 0.50756 Vertex 11478 0.550366 0.530481 0.553064 Vertex 11479 0.676424 0.447694 0.20374 Vertex 11480 0.474509 0.307955 0.632582 Vertex 11481 0.482025 0.16937 0.515787 Vertex 11482 0.380333 0.228046 0.226423 Vertex 11483 0.490275 0.621157 0.40739 Vertex 11484 0.51454 0.628098 0.542895 Vertex 11485 0.451795 0.490154 0.607067 Vertex 11486 0.570959 0.507957 0.505464 Vertex 11487 0.601888 0.506867 0.247046 Vertex 11488 0.340278 0.924557 0.311692 Vertex 11489 0.523531 0.0697749 0.657599 Vertex 11490 0.502043 0.542753 0.389095 Vertex 11491 0.463131 0.431176 0.618083 Vertex 11492 0.498762 0.39163 0.602767 Vertex 11493 0.428922 0.407112 0.391855 Vertex 11494 0.428839 0.406425 0.387472 Vertex 11495 0.363335 0.226252 0.494969 Vertex 11496 0.401092 0.166 0.657581 Vertex 11497 0.440619 0.830322 0.453865 Vertex 11498 0.61474 0.520863 0.313202 Vertex 11499 0.452447 0.785925 0.387881 Vertex 11500 0.39216 0.356147 0.35199 Vertex 11501 0.662139 0.427622 0.208584 Vertex 11502 0.551509 0.0392495 0.724904 Vertex 11503 0.590131 0.433841 0.33299 Vertex 11504 0.486171 0.754523 0.502662 Vertex 11505 0.474787 0.801976 0.467748 Vertex 11506 0.548755 0.0503782 0.778943 Vertex 11507 0.514593 0.28135 0.492582 Vertex 11508 0.518094 0.117701 0.681515 Vertex 11509 0.608219 0.455417 0.33575 Vertex 11510 0.379782 0.341359 0.40819 Vertex 11511 0.468811 0.610626 0.433136 Vertex 11512 0.508232 0.294558 0.57785 Vertex 11513 0.355001 0.922253 0.330828 Vertex 11514 0.361404 0.2835 0.489218 Vertex 11515 0.502452 0.7562 0.433035 Vertex 11516 0.46097 0.185326 0.640115 Vertex 11517 0.368398 0.269055 0.195412 Vertex 11518 0.381979 0.21212 0.477171 Vertex 11519 0.505242 0.408214 0.440723 Vertex 11520 0.468527 0.519394 0.413289 Vertex 11521 0.484743 0.6569 0.41307 Vertex 11522 0.509156 0.670315 0.420876 Vertex 11523 0.395406 0.190206 0.573089 Vertex 11524 0.430652 0.455441 0.403268 Vertex 11525 0.571421 0.491913 0.509734 Vertex 11526 0.576888 0.49225 0.497166 Vertex 11527 0.47185 0.645392 0.519909 Vertex 11528 0.443924 0.831459 0.453451 Vertex 11529 0.449959 0.824654 0.458159 Vertex 11530 0.555673 0.147285 0.422908 Vertex 11531 0.351608 0.896028 0.324858 Vertex 11532 0.372621 0.166054 0.46821 Vertex 11533 0.486467 0.325569 0.433799 Vertex 11534 0.424125 0.278602 0.433545 Vertex 11535 0.402057 0.3638 0.240081 Vertex 11536 0.371626 0.316495 0.598633 Vertex 11537 0.538331 0.0504552 0.789183 Vertex 11538 0.500527 0.720948 0.5117 Vertex 11539 0.452263 0.5177 0.428688 Vertex 11540 0.445008 0.100508 0.714646 Vertex 11541 0.356127 0.176199 0.452841 Vertex 11542 0.600827 0.508911 0.243344 Vertex 11543 0.522826 0.308411 0.495596 Vertex 11544 0.493367 0.209129 0.522035 Vertex 11545 0.538711 0.126378 0.450377 Vertex 11546 0.491377 0.775336 0.420728 Vertex 11547 0.616789 0.491338 0.229823 Vertex 11548 0.53986 0.0437389 0.72093 Vertex 11549 0.494397 0.505126 0.393146 Vertex 11550 0.523377 0.0173001 0.739539 Vertex 11551 0.440021 0.814858 0.454079 Vertex 11552 0.547831 0.599883 0.475868 Vertex 11553 0.341841 0.254171 0.223894 Vertex 11554 0.45051 0.539199 0.437104 Vertex 11555 0.429657 0.829439 0.356829 Vertex 11556 0.416064 0.385346 0.384008 Vertex 11557 0.451949 0.825033 0.383759 Vertex 11558 0.406481 0.355117 0.248266 Vertex 11559 0.51653 0.105785 0.796663 Vertex 11560 0.466389 0.207968 0.667063 Vertex 11561 0.46816 0.796699 0.478486 Vertex 11562 0.586056 0.444993 0.453617 Vertex 11563 0.582248 0.445651 0.466019 Vertex 11564 0.467538 0.563263 0.427776 Vertex 11565 0.346194 0.303548 0.213257 Vertex 11566 0.504312 0.263884 0.559324 Vertex 11567 0.449705 0.63533 0.462199 Vertex 11568 0.361333 0.231991 0.211439 Vertex 11569 0.56817 0.536208 0.472303 Vertex 11570 0.446388 0.804475 0.459723 Vertex 11571 0.372153 0.437602 0.420509 Vertex 11572 0.566973 0.498854 0.364516 Vertex 11573 0.441526 0.271365 0.434996 Vertex 11574 0.530212 0.396901 0.428037 Vertex 11575 0.488415 0.454102 0.383652 Vertex 11576 0.513456 0.122504 0.704341 Vertex 11577 0.482445 0.515017 0.39622 Vertex 11578 0.303942 0.955941 0.231754 Vertex 11579 0.385219 0.899025 0.314328 Vertex 11580 0.410041 0.246039 0.22072 Vertex 11581 0.394879 0.342869 0.217261 Vertex 11582 0.362778 0.886018 0.339653 Vertex 11583 0.491744 0.216663 0.509598 Vertex 11584 0.490085 0.21491 0.507258 Vertex 11585 0.38571 0.430826 0.590667 Vertex 11586 0.492312 0.166107 0.688124 Vertex 11587 0.488113 0.16741 0.679335 Vertex 11588 0.577344 0.509805 0.368816 Vertex 11589 0.387831 0.858348 0.352777 Vertex 11590 0.478465 0.117346 0.81574 Vertex 11591 0.483695 0.113348 0.811624 Vertex 11592 0.559392 0.00774685 0.75829 Vertex 11593 0.410236 0.437359 0.604852 Vertex 11594 0.404947 0.358516 0.335465 Vertex 11595 0.51255 0.566041 0.401811 Vertex 11596 0.607301 0.515811 0.203763 Vertex 11597 0.543022 0.599972 0.513684 Vertex 11598 0.548436 0.580782 0.503397 Vertex 11599 0.345703 0.929461 0.317621 Vertex 11600 0.599169 0.463306 0.192723 Vertex 11601 0.512823 0.118678 0.696073 Vertex 11602 0.492928 0.0801336 0.728819 Vertex 11603 0.357311 0.141202 0.475294 Vertex 11604 0.451316 0.189176 0.582144 Vertex 11605 0.454366 0.186072 0.575908 Vertex 11606 0.447584 0.0837228 0.660768 Vertex 11607 0.514866 0.169074 0.446977 Vertex 11608 0.499171 0.516806 0.391204 Vertex 11609 0.385562 0.309548 0.245631 Vertex 11610 0.389442 0.309193 0.242989 Vertex 11611 0.526587 0.0324266 0.657954 Vertex 11612 0.371135 0.415558 0.376581 Vertex 11613 0.519355 0.664878 0.522207 Vertex 11614 0.535814 0.0549741 0.717033 Vertex 11615 0.438197 0.459551 0.410132 Vertex 11616 0.595467 0.445668 0.406218 Vertex 11617 0.507113 0.136837 0.672814 Vertex 11618 0.380883 0.351036 0.368585 Vertex 11619 0.460999 0.62676 0.443074 Vertex 11620 0.472045 0.140948 0.79979 Vertex 11621 0.577942 0.510978 0.474328 Vertex 11622 0.416804 0.846455 0.344071 Vertex 11623 0.489037 0.179202 0.532353 Vertex 11624 0.418741 0.264577 0.696096 Vertex 11625 0.443071 0.310294 0.421942 Vertex 11626 0.440371 0.418395 0.402859 Vertex 11627 0.605412 0.498996 0.205291 Vertex 11628 0.457671 0.727492 0.43701 Vertex 11629 0.560861 0.509657 0.532394 Vertex 11630 0.508896 0.173421 0.754168 Vertex 11631 0.467366 0.278318 0.434794 Vertex 11632 0.550716 0.450164 0.354317 Vertex 11633 0.372023 0.378701 0.553052 Vertex 11634 0.389359 0.338824 0.456104 Vertex 11635 0.444511 0.0851975 0.668917 Vertex 11636 0.458204 0.113117 0.644593 Vertex 11637 0.395086 0.355626 0.3932 Vertex 11638 0.550041 0.571288 0.473179 Vertex 11639 0.521097 0.389954 0.468115 Vertex 11640 0.389069 0.182264 0.555842 Vertex 11641 0.630577 0.486553 0.237747 Vertex 11642 0.436438 0.23048 0.46105 Vertex 11643 0.626396 0.452035 0.193262 Vertex 11644 0.600188 0.461725 0.204202 Vertex 11645 0.399729 0.348241 0.21995 Vertex 11646 0.454514 0.794957 0.467748 Vertex 11647 0.577427 0.497486 0.410731 Vertex 11648 0.352366 0.920897 0.328897 Vertex 11649 0.518923 0.388195 0.538601 Vertex 11650 0.537283 0.0590253 0.712591 Vertex 11651 0.492822 0.192167 0.458307 Vertex 11652 0.52401 0.336366 0.542682 Vertex 11653 0.574631 0.515165 0.488815 Vertex 11654 0.391147 0.190958 0.691909 Vertex 11655 0.32344 0.92679 0.269688 Vertex 11656 0.357495 0.37032 0.387301 Vertex 11657 0.376512 0.229556 0.481376 Vertex 11658 0.564486 0.495093 0.36242 Vertex 11659 0.412333 0.168352 0.60285 Vertex 11660 0.368949 0.34933 0.583045 Vertex 11661 0.522921 0.177763 0.460226 Vertex 11662 0.45975 0.805814 0.475868 Vertex 11663 0.536371 0.598876 0.441375 Vertex 11664 0.499728 0.406372 0.42318 Vertex 11665 0.376412 0.229841 0.204119 Vertex 11666 0.485543 0.785872 0.4763 Vertex 11667 0.475545 0.814869 0.44003 Vertex 11668 0.465435 0.668325 0.503403 Vertex 11669 0.572428 0.414723 0.45983 Vertex 11670 0.377851 0.455216 0.569825 Vertex 11671 0.53219 0.119045 0.776994 Vertex 11672 0.459992 0.219778 0.637794 Vertex 11673 0.383424 0.493707 0.488857 Vertex 11674 0.343766 0.937516 0.267361 Vertex 11675 0.534582 0.058048 0.797481 Vertex 11676 0.43937 0.821195 0.361975 Vertex 11677 0.529365 0.0269244 0.730098 Vertex 11678 0.467378 0.597916 0.542936 Vertex 11679 0.416964 0.815444 0.399999 Vertex 11680 0.437273 0.320902 0.420391 Vertex 11681 0.438375 0.323022 0.419982 Vertex 11682 0.349327 0.0981148 0.460783 Vertex 11683 0.360669 0.265027 0.564661 Vertex 11684 0.434045 0.21915 0.468548 Vertex 11685 0.50748 0.0342448 0.74991 Vertex 11686 0.496713 0.777657 0.472208 Vertex 11687 0.475072 0.208922 0.582073 Vertex 11688 0.478353 0.206612 0.57788 Vertex 11689 0.583444 0.426775 0.201975 Vertex 11690 0.58528 0.426124 0.207163 Vertex 11691 0.366953 0.231203 0.23282 Vertex 11692 0.367818 0.914613 0.346914 Vertex 11693 0.391751 0.25336 0.67333 Vertex 11694 0.360278 0.355069 0.385654 Vertex 11695 0.54981 0.565555 0.459581 Vertex 11696 0.551729 0.144347 0.422991 Vertex 11697 0.593075 0.516509 0.360329 Vertex 11698 0.414566 0.387111 0.366518 Vertex 11699 0.373379 0.364534 0.512535 Vertex 11700 0.446311 0.456223 0.624912 Vertex 11701 0.400683 0.261041 0.687325 Vertex 11702 0.640924 0.444194 0.211492 Vertex 11703 0.370075 0.22406 0.234614 Vertex 11704 0.533759 0.0702605 0.710512 Vertex 11705 0.532332 0.0723572 0.709861 Vertex 11706 0.503879 0.0937913 0.725881 Vertex 11707 0.517182 0.129262 0.790095 Vertex 11708 0.517069 0.595328 0.422582 Vertex 11709 0.512663 0.595068 0.418975 Vertex 11710 0.604132 0.440913 0.356165 Vertex 11711 0.395193 0.314102 0.204125 Vertex 11712 0.494794 0.522675 0.386608 Vertex 11713 0.495013 0.528414 0.385423 Vertex 11714 0.550828 0.418951 0.526163 Vertex 11715 0.469184 0.22303 0.762424 Vertex 11716 0.469866 0.222023 0.764509 Vertex 11717 0.446015 0.796219 0.386904 Vertex 11718 0.448123 0.796403 0.382142 Vertex 11719 0.449089 0.793518 0.383546 Vertex 11720 0.393066 0.252311 0.656687 Vertex 11721 0.585778 0.450815 0.461885 Vertex 11722 0.396424 0.445532 0.393348 Vertex 11723 0.373036 0.356236 0.50955 Vertex 11724 0.47625 0.715055 0.415954 Vertex 11725 0.352644 0.163045 0.47697 Vertex 11726 0.51518 0.106821 0.715552 Vertex 11727 0.661262 0.43284 0.225417 Vertex 11728 0.661191 0.438141 0.219168 Vertex 11729 0.537094 0.167984 0.440847 Vertex 11730 0.369595 0.217682 0.487222 Vertex 11731 0.370921 0.337272 0.262575 Vertex 11732 0.484376 0.387656 0.410038 Vertex 11733 0.609309 0.50249 0.194026 Vertex 11734 0.594265 0.51645 0.328335 Vertex 11735 0.544219 0.598408 0.46134 Vertex 11736 0.492591 0.144466 0.795751 Vertex 11737 0.495404 0.154599 0.792908 Vertex 11738 0.494107 0.474512 0.607191 Vertex 11739 0.450937 0.121509 0.642301 Vertex 11740 0.370785 0.423749 0.331237 Vertex 11741 0.408619 0.8375 0.370735 Vertex 11742 0.658159 0.484699 0.220963 Vertex 11743 0.387499 0.872609 0.382853 Vertex 11744 0.381707 0.351084 0.297857 Vertex 11745 0.385633 0.353423 0.364487 Vertex 11746 0.44075 0.254692 0.636443 Vertex 11747 0.421477 0.233365 0.774915 Vertex 11748 0.472229 0.396789 0.387899 Vertex 11749 0.469344 0.711549 0.426171 Vertex 11750 0.511152 0.0303536 0.722286 Vertex 11751 0.448751 0.0980615 0.730691 Vertex 11752 0.446767 0.105459 0.727528 Vertex 11753 0.453472 0.100561 0.728079 Vertex 11754 0.369684 0.447741 0.445455 Vertex 11755 0.366864 0.441831 0.449169 Vertex 11756 0.36767 0.441564 0.44481 Vertex 11757 0.503417 0.449429 0.394206 Vertex 11758 0.484702 0.129274 0.79892 Vertex 11759 0.366326 0.884147 0.305621 Vertex 11760 0.42204 0.375994 0.333381 Vertex 11761 0.490127 0.174677 0.46795 Vertex 11762 0.533285 0.553739 0.567598 Vertex 11763 0.548347 0.0637042 0.762389 Vertex 11764 0.353651 0.281688 0.53442 Vertex 11765 0.551971 0.146467 0.412744 Vertex 11766 0.554666 0.149198 0.419111 Vertex 11767 0.497933 0.108953 0.641205 Vertex 11768 0.539125 0.449003 0.565555 Vertex 11769 0.35496 0.224303 0.537944 Vertex 11770 0.352869 0.22146 0.529373 Vertex 11771 0.457185 0.178947 0.801851 Vertex 11772 0.510436 0.355111 0.450087 Vertex 11773 0.371129 0.0950173 0.469531 Vertex 11774 0.593531 0.507063 0.257245 Vertex 11775 0.410621 0.848392 0.34323 Vertex 11776 0.405593 0.350118 0.628697 Vertex 11777 0.611245 0.493796 0.256943 Vertex 11778 0.438227 0.549522 0.499588 Vertex 11779 0.436722 0.546277 0.499914 Vertex 11780 0.436941 0.548326 0.501383 Vertex 11781 0.407038 0.474695 0.415315 Vertex 11782 0.440767 0.803533 0.385174 Vertex 11783 0.544888 0.632499 0.494175 Vertex 11784 0.594869 0.523966 0.23189 Vertex 11785 0.5173 0.187405 0.466753 Vertex 11786 0.436764 0.187352 0.7969 Vertex 11787 0.527298 0.147267 0.444383 Vertex 11788 0.374173 0.263612 0.233388 Vertex 11789 0.366083 0.39933 0.298129 Vertex 11790 0.488131 0.504327 0.599634 Vertex 11791 0.483043 0.506364 0.599042 Vertex 11792 0.690976 0.462459 0.201027 Vertex 11793 0.417343 0.859331 0.347814 Vertex 11794 0.564812 0.422736 0.356396 Vertex 11795 0.633935 0.485498 0.235621 Vertex 11796 0.457161 0.197006 0.588375 Vertex 11797 0.575052 0.507969 0.495105 Vertex 11798 0.433453 0.136796 0.718194 Vertex 11799 0.470813 0.0822006 0.733149 Vertex 11800 0.41238 0.37985 0.364451 Vertex 11801 0.412564 0.165835 0.609069 Vertex 11802 0.553837 0.0176495 0.773997 Vertex 11803 0.411356 0.264998 0.199985 Vertex 11804 0.410544 0.21125 0.471977 Vertex 11805 0.498573 0.264074 0.46991 Vertex 11806 0.490263 0.258974 0.463667 Vertex 11807 0.44704 0.19588 0.800288 Vertex 11808 0.468432 0.223053 0.772795 Vertex 11809 0.402406 0.383812 0.246312 Vertex 11810 0.35926 0.37696 0.372772 Vertex 11811 0.392818 0.242805 0.710678 Vertex 11812 0.467958 0.647833 0.51478 Vertex 11813 0.398403 0.324763 0.244162 Vertex 11814 0.514653 0.433888 0.420675 Vertex 11815 0.512734 0.433166 0.420959 Vertex 11816 0.534997 0.594967 0.536528 Vertex 11817 0.445458 0.122528 0.662965 Vertex 11818 0.445369 0.121604 0.664724 Vertex 11819 0.444647 0.123742 0.66515 Vertex 11820 0.501593 0.662971 0.412407 Vertex 11821 0.409454 0.150957 0.65603 Vertex 11822 0.408157 0.373554 0.385488 Vertex 11823 0.404639 0.370166 0.383066 Vertex 11824 0.523602 0.151502 0.758201 Vertex 11825 0.374753 0.376504 0.580077 Vertex 11826 0.467046 0.824381 0.438615 Vertex 11827 0.461224 0.823682 0.447889 Vertex 11828 0.535092 0.0187689 0.729459 Vertex 11829 0.574211 0.44006 0.480571 Vertex 11830 0.569408 0.434386 0.486837 Vertex 11831 0.362748 0.0866604 0.47646 Vertex 11832 0.477399 0.20843 0.785043 Vertex 11833 0.350873 0.293237 0.232145 Vertex 11834 0.471204 0.0769235 0.70973 Vertex 11835 0.446086 0.18304 0.478664 Vertex 11836 0.386652 0.255042 0.206079 Vertex 11837 0.393185 0.255972 0.208116 Vertex 11838 0.474947 0.751029 0.393407 Vertex 11839 0.476226 0.745592 0.395243 Vertex 11840 0.566245 0.49735 0.354098 Vertex 11841 0.567116 0.498256 0.349964 Vertex 11842 0.565919 0.492031 0.343556 Vertex 11843 0.62203 0.480944 0.356734 Vertex 11844 0.505242 0.186955 0.484817 Vertex 11845 0.511887 0.083782 0.682936 Vertex 11846 0.52908 0.532062 0.580214 Vertex 11847 0.447934 0.596892 0.503491 Vertex 11848 0.404426 0.455056 0.398121 Vertex 11849 0.607058 0.494519 0.212795 Vertex 11850 0.570551 0.501851 0.393472 Vertex 11851 0.58056 0.512897 0.35414 Vertex 11852 0.579257 0.512263 0.362556 Vertex 11853 0.379586 0.249415 0.203165 Vertex 11854 0.434158 0.25423 0.751935 Vertex 11855 0.498259 0.388302 0.604834 Vertex 11856 0.391378 0.352825 0.425283 Vertex 11857 0.466312 0.16446 0.664404 Vertex 11858 0.463931 0.815728 0.399566 Vertex 11859 0.670863 0.48474 0.19925 Vertex 11860 0.697847 0.451088 0.217338 Vertex 11861 0.392983 0.450549 0.402421 Vertex 11862 0.370424 0.347773 0.273106 Vertex 11863 0.341107 0.292354 0.208454 Vertex 11864 0.564077 0.46038 0.524138 Vertex 11865 0.556378 0.466765 0.542688 Vertex 11866 0.412895 0.509029 0.459871 Vertex 11867 0.513344 0.330289 0.460179 Vertex 11868 0.436853 0.130624 0.727149 Vertex 11869 0.477689 0.647412 0.523646 Vertex 11870 0.520717 0.308275 0.521431 Vertex 11871 0.513729 0.64066 0.423832 Vertex 11872 0.683034 0.463484 0.190899 Vertex 11873 0.406155 0.376373 0.258743 Vertex 11874 0.502914 0.179356 0.768625 Vertex 11875 0.358514 0.388527 0.395551 Vertex 11876 0.356577 0.37696 0.397624 Vertex 11877 0.35833 0.386673 0.391435 Vertex 11878 0.448538 0.423263 0.635436 Vertex 11879 0.476629 0.531168 0.592995 Vertex 11880 0.387073 0.247022 0.627761 Vertex 11881 0.655855 0.472771 0.191124 Vertex 11882 0.445814 0.591615 0.492392 Vertex 11883 0.469344 0.317176 0.423926 Vertex 11884 0.439755 0.319326 0.419342 Vertex 11885 0.452968 0.179966 0.611171 Vertex 11886 0.463605 0.228088 0.735458 Vertex 11887 0.418386 0.3397 0.641454 Vertex 11888 0.556976 0.482205 0.36037 Vertex 11889 0.484192 0.174582 0.532394 Vertex 11890 0.422218 0.416031 0.614873 Vertex 11891 0.499704 0.397067 0.440901 Vertex 11892 0.513048 0.594967 0.557779 Vertex 11893 0.386788 0.398021 0.271714 Vertex 11894 0.499283 0.692383 0.534325 Vertex 11895 0.498111 0.700201 0.530599 Vertex 11896 0.380848 0.449921 0.421344 Vertex 11897 0.591618 0.441114 0.323602 Vertex 11898 0.441401 0.378192 0.417832 Vertex 11899 0.490346 0.739865 0.509639 Vertex 11900 0.562389 0.400875 0.428795 Vertex 11901 0.65114 0.502716 0.195797 Vertex 11902 0.483055 0.0676546 0.748488 Vertex 11903 0.519136 0.483603 0.410446 Vertex 11904 0.424131 0.116955 0.690849 Vertex 11905 0.410189 0.32426 0.635792 Vertex 11906 0.392729 0.506311 0.499221 Vertex 11907 0.355499 0.386833 0.48689 Vertex 11908 0.355529 0.391654 0.494009 Vertex 11909 0.514789 0.615471 0.546934 Vertex 11910 0.431025 0.853817 0.363865 Vertex 11911 0.542969 0.568427 0.544909 Vertex 11912 0.503826 0.0421871 0.630349 Vertex 11913 0.3876 0.436725 0.59303 Vertex 11914 0.62424 0.529539 0.247295 Vertex 11915 0.426701 0.435233 0.611527 Vertex 11916 0.43138 0.441161 0.613919 Vertex 11917 0.657863 0.406768 0.220886 Vertex 11918 0.448591 0.146029 0.638593 Vertex 11919 0.362334 0.253182 0.212369 Vertex 11920 0.437261 0.260769 0.727297 Vertex 11921 0.439145 0.260757 0.729257 Vertex 11922 0.441259 0.258418 0.731324 Vertex 11923 0.563627 0.52412 0.517901 Vertex 11924 0.424107 0.846562 0.353429 Vertex 11925 0.435893 0.787045 0.437081 Vertex 11926 0.491939 0.226672 0.498185 Vertex 11927 0.547695 0.13387 0.447422 Vertex 11928 0.546967 0.129286 0.447392 Vertex 11929 0.428833 0.315619 0.646127 Vertex 11930 0.488018 0.194127 0.461002 Vertex 11931 0.45282 0.446444 0.394982 Vertex 11932 0.361516 0.323336 0.509651 Vertex 11933 0.360119 0.330662 0.52611 Vertex 11934 0.562295 0.413793 0.369017 Vertex 11935 0.559398 0.425229 0.361567 Vertex 11936 0.443166 0.160463 0.607789 Vertex 11937 0.432796 0.810096 0.387585 Vertex 11938 0.418557 0.386317 0.356165 Vertex 11939 0.464186 0.415374 0.620588 Vertex 11940 0.459744 0.701492 0.443169 Vertex 11941 0.385284 0.240176 0.673276 Vertex 11942 0.38484 0.238399 0.677387 Vertex 11943 0.560328 0.46978 0.332812 Vertex 11944 0.657596 0.426337 0.232767 Vertex 11945 0.406671 0.892166 0.369319 Vertex 11946 0.386913 0.464793 0.428386 Vertex 11947 0.480876 0.079186 0.756158 Vertex 11948 0.402543 0.2091 0.472984 Vertex 11949 0.398124 0.330443 0.246252 Vertex 11950 0.50475 0.421735 0.423151 Vertex 11951 0.514404 0.106661 0.704116 Vertex 11952 0.437202 0.192534 0.797954 Vertex 11953 0.405066 0.495348 0.445378 Vertex 11954 0.579204 0.425212 0.449441 Vertex 11955 0.44948 0.430033 0.631711 Vertex 11956 0.358857 0.349704 0.395705 Vertex 11957 0.39017 0.259898 0.22207 Vertex 11958 0.385284 0.288368 0.234259 Vertex 11959 0.497726 0.207767 0.48798 Vertex 11960 0.498981 0.504723 0.600777 Vertex 11961 0.525189 0.0701835 0.720954 Vertex 11962 0.521748 0.071374 0.721688 Vertex 11963 0.592163 0.513388 0.292129 Vertex 11964 0.503186 0.320617 0.598663 Vertex 11965 0.41665 0.26164 0.227649 Vertex 11966 0.374321 0.354987 0.468441 Vertex 11967 0.376015 0.178864 0.495188 Vertex 11968 0.554222 0.480198 0.550973 Vertex 11969 0.443693 0.765871 0.430891 Vertex 11970 0.371863 0.902359 0.359553 Vertex 11971 0.374825 0.251565 0.235592 Vertex 11972 0.479152 0.221679 0.490989 Vertex 11973 0.449225 0.231351 0.462163 Vertex 11974 0.445328 0.2239 0.466131 Vertex 11975 0.401429 0.356829 0.232873 Vertex 11976 0.386735 0.080027 0.464929 Vertex 11977 0.616605 0.514448 0.204148 Vertex 11978 0.558948 0.483331 0.352061 Vertex 11979 0.506491 0.394289 0.582097 Vertex 11980 0.464588 0.521846 0.59338 Vertex 11981 0.518425 0.158887 0.754085 Vertex 11982 0.575585 0.521733 0.457709 Vertex 11983 0.409105 0.218351 0.75816 Vertex 11984 0.355108 0.246886 0.522207 Vertex 11985 0.484808 0.0701835 0.740001 Vertex 11986 0.554121 0.145449 0.416511 Vertex 11987 0.396028 0.198421 0.708522 Vertex 11988 0.509524 0.269173 0.530238 Vertex 11989 0.47737 0.774459 0.399501 Vertex 11990 0.383241 0.226139 0.687775 Vertex 11991 0.366314 0.360074 0.45752 Vertex 11992 0.489529 0.402226 0.402996 Vertex 11993 0.493485 0.403487 0.408924 Vertex 11994 0.492318 0.406401 0.403227 Vertex 11995 0.444049 0.367323 0.642834 Vertex 11996 0.517537 0.368425 0.559301 Vertex 11997 0.516856 0.369213 0.563452 Vertex 11998 0.464221 0.309927 0.42353 Vertex 11999 0.468041 0.313451 0.424157 Vertex 12000 0.435573 0.275268 0.637687 Vertex 12001 0.531864 0.481874 0.588345 Vertex 12002 0.494972 0.0932168 0.793412 Vertex 12003 0.419979 0.264891 0.704317 Vertex 12004 0.478803 0.518902 0.40373 Vertex 12005 0.484672 0.0840544 0.728949 Vertex 12006 0.398112 0.459498 0.594002 Vertex 12007 0.408181 0.366873 0.254603 Vertex 12008 0.404408 0.883868 0.336597 Vertex 12009 0.481906 0.244559 0.467701 Vertex 12010 0.476759 0.252353 0.454949 Vertex 12011 0.482676 0.248432 0.463981 Vertex 12012 0.495896 0.0503486 0.74372 Vertex 12013 0.402442 0.889957 0.380377 Vertex 12014 0.452524 0.186955 0.6215 Vertex 12015 0.508179 0.160475 0.723406 Vertex 12016 0.431498 0.259383 0.737525 Vertex 12017 0.431581 0.155482 0.584205 Vertex 12018 0.508422 0.700491 0.511611 Vertex 12019 0.479223 0.584371 0.422155 Vertex 12020 0.386865 0.862387 0.370747 Vertex 12021 0.466448 0.725662 0.482709 Vertex 12022 0.36674 0.203728 0.22088 Vertex 12023 0.60258 0.472504 0.188394 Vertex 12024 0.377513 0.340979 0.412596 Vertex 12025 0.537875 0.429198 0.563429 Vertex 12026 0.49743 0.0986834 0.812542 Vertex 12027 0.45786 0.655023 0.445135 Vertex 12028 0.535459 0.407941 0.540579 Vertex 12029 0.654516 0.415445 0.227566 Vertex 12030 0.542554 0.437975 0.389095 Vertex 12031 0.541328 0.442974 0.38916 Vertex 12032 0.616522 0.477331 0.318817 Vertex 12033 0.549904 0.545915 0.44799 Vertex 12034 0.508967 0.0825264 0.785155 Vertex 12035 0.390804 0.867824 0.328323 Vertex 12036 0.384413 0.868659 0.323484 Vertex 12037 0.3825 0.873504 0.320517 Vertex 12038 0.496968 0.266851 0.464094 Vertex 12039 0.493787 0.447315 0.385121 Vertex 12040 0.530774 0.577904 0.432603 Vertex 12041 0.43597 0.537932 0.474316 Vertex 12042 0.514066 0.740475 0.44799 Vertex 12043 0.374286 0.397363 0.281344 Vertex 12044 0.411717 0.827935 0.412353 Vertex 12045 0.466342 0.132987 0.808124 Vertex 12046 0.488386 0.146361 0.652109 Vertex 12047 0.510625 0.105085 0.702161 Vertex 12048 0.394257 0.346719 0.443157 Vertex 12049 0.469866 0.54328 0.422102 Vertex 12050 0.586702 0.495863 0.285999 Vertex 12051 0.362357 0.29159 0.229669 Vertex 12052 0.523057 0.374354 0.507477 Vertex 12053 0.524662 0.341033 0.515325 Vertex 12054 0.56711 0.498238 0.370693 Vertex 12055 0.352087 0.895193 0.298159 Vertex 12056 0.460075 0.272111 0.628691 Vertex 12057 0.416751 0.410097 0.362408 Vertex 12058 0.349588 0.158751 0.474079 Vertex 12059 0.334041 0.917752 0.304306 Vertex 12060 0.451156 0.221667 0.790699 Vertex 12061 0.485022 0.556446 0.392003 Vertex 12062 0.409904 0.827615 0.387259 Vertex 12063 0.426038 0.297128 0.641223 Vertex 12064 0.544864 0.543114 0.557257 Vertex 12065 0.391331 0.881849 0.390617 Vertex 12066 0.39017 0.884496 0.388906 Vertex 12067 0.373907 0.353382 0.47463 Vertex 12068 0.458678 0.235829 0.7562 Vertex 12069 0.59359 0.515005 0.226127 Vertex 12070 0.497595 0.168814 0.788413 Vertex 12071 0.364324 0.267639 0.482981 Vertex 12072 0.447851 0.598923 0.501709 Vertex 12073 0.442082 0.53667 0.451615 Vertex 12074 0.510092 0.279188 0.553052 Vertex 12075 0.486875 0.392868 0.619499 Vertex 12076 0.5415 0.514253 0.571756 Vertex 12077 0.590682 0.415872 0.376788 Vertex 12078 0.484808 0.393739 0.403594 Vertex 12079 0.55042 0.0393857 0.795153 Vertex 12080 0.499485 0.400064 0.431039 Vertex 12081 0.663489 0.454422 0.201347 Vertex 12082 0.525136 0.501087 0.414989 Vertex 12083 0.421104 0.155932 0.611112 Vertex 12084 0.399794 0.356864 0.295902 Vertex 12085 0.440483 0.435357 0.631658 Vertex 12086 0.444137 0.443584 0.629425 Vertex 12087 0.360509 0.232287 0.226352 Vertex 12088 0.362565 0.235361 0.230859 Vertex 12089 0.383863 0.343834 0.279159 Vertex 12090 0.567749 0.501193 0.392045 Vertex 12091 0.374641 0.375763 0.514046 Vertex 12092 0.496861 0.700829 0.529972 Vertex 12093 0.433311 0.137311 0.645985 Vertex 12094 0.36385 0.28921 0.196123 Vertex 12095 0.45712 0.227027 0.683629 Vertex 12096 0.374546 0.17383 0.478758 Vertex 12097 0.398847 0.885367 0.329205 Vertex 12098 0.478252 0.170987 0.681307 Vertex 12099 0.392575 0.903757 0.354223 Vertex 12100 0.462136 0.0905279 0.661923 Vertex 12101 0.413269 0.502058 0.449453 Vertex 12102 0.595823 0.514223 0.238938 Vertex 12103 0.435467 0.308381 0.642899 Vertex 12104 0.421128 0.260023 0.215111 Vertex 12105 0.430841 0.289127 0.639683 Vertex 12106 0.421904 0.169347 0.758267 Vertex 12107 0.591203 0.521544 0.299847 Vertex 12108 0.499283 0.0580184 0.68755 Vertex 12109 0.548021 0.506417 0.412134 Vertex 12110 0.396472 0.17617 0.64708 Vertex 12111 0.554909 0.00456638 0.739569 Vertex 12112 0.641783 0.490035 0.190923 Vertex 12113 0.541417 0.51321 0.423885 Vertex 12114 0.427667 0.551702 0.528219 Vertex 12115 0.407636 0.191403 0.745823 Vertex 12116 0.443788 0.815195 0.457674 Vertex 12117 0.432227 0.370901 0.649195 Vertex 12118 0.377875 0.895696 0.368585 Vertex 12119 0.482593 0.474151 0.385382 Vertex 12120 0.521037 0.480085 0.411453 Vertex 12121 0.632129 0.519258 0.246335 Vertex 12122 0.39415 0.185705 0.619327 Vertex 12123 0.385699 0.20204 0.629508 Vertex 12124 0.503808 0.648958 0.55076 Vertex 12125 0.47047 0.536481 0.416363 Vertex 12126 0.402075 0.363646 0.419236 Vertex 12127 0.525367 0.670907 0.511759 Vertex 12128 0.526539 0.143405 0.790409 Vertex 12129 0.356026 0.393857 0.426349 Vertex 12130 0.603386 0.476413 0.393081 Vertex 12131 0.388749 0.352866 0.337533 Vertex 12132 0.396963 0.859609 0.397351 Vertex 12133 0.496263 0.392957 0.43833 Vertex 12134 0.436325 0.214365 0.793874 Vertex 12135 0.493272 0.409226 0.401391 Vertex 12136 0.372805 0.307967 0.194577 Vertex 12137 0.368582 0.351397 0.377463 Vertex 12138 0.372716 0.348596 0.378511 Vertex 12139 0.6772 0.452989 0.195389 Vertex 12140 0.67906 0.451443 0.198877 Vertex 12141 0.678343 0.450519 0.197047 Vertex 12142 0.650708 0.419342 0.206784 Vertex 12143 0.400292 0.896869 0.366826 Vertex 12144 0.484494 0.801461 0.449323 Vertex 12145 0.476025 0.43974 0.372281 Vertex 12146 0.51133 0.557091 0.400502 Vertex 12147 0.491187 0.221531 0.517895 Vertex 12148 0.364318 0.345386 0.418377 Vertex 12149 0.557847 0.528142 0.456507 Vertex 12150 0.495907 0.0382959 0.679862 Vertex 12151 0.355943 0.888903 0.32702 Vertex 12152 0.438031 0.420995 0.401077 Vertex 12153 0.523489 0.522793 0.412365 Vertex 12154 0.458364 0.609004 0.51863 Vertex 12155 0.532142 0.144685 0.444899 Vertex 12156 0.423491 0.196698 0.779002 Vertex 12157 0.438813 0.530955 0.453611 Vertex 12158 0.438375 0.525678 0.449305 Vertex 12159 0.516258 0.643651 0.53455 Vertex 12160 0.547512 0.570181 0.526199 Vertex 12161 0.349635 0.93539 0.314671 Vertex 12162 0.359503 0.274658 0.49116 Vertex 12163 0.392587 0.42886 0.378879 Vertex 12164 0.549407 0.429979 0.379044 Vertex 12165 0.379024 0.176513 0.526217 Vertex 12166 0.384313 0.0798079 0.465373 Vertex 12167 0.586844 0.488063 0.420527 Vertex 12168 0.446435 0.112329 0.724958 Vertex 12169 0.471779 0.418483 0.617811 Vertex 12170 0.416573 0.26832 0.653199 Vertex 12171 0.456628 0.6275 0.502704 Vertex 12172 0.46967 0.45444 0.3838 Vertex 12173 0.508665 0.402249 0.586249 Vertex 12174 0.587667 0.427877 0.196159 Vertex 12175 0.524727 0.315246 0.496432 Vertex 12176 0.534316 0.674538 0.490882 Vertex 12177 0.430201 0.526116 0.476668 Vertex 12178 0.597973 0.517439 0.253952 Vertex 12179 0.599412 0.446782 0.209941 Vertex 12180 0.525669 0.398483 0.490965 Vertex 12181 0.363287 0.224688 0.562262 Vertex 12182 0.654084 0.449654 0.197047 Vertex 12183 0.48912 0.202531 0.546816 Vertex 12184 0.376489 0.238938 0.239453 Vertex 12185 0.415661 0.388189 0.364487 Vertex 12186 0.399871 0.503237 0.468346 Vertex 12187 0.356553 0.303223 0.23619 Vertex 12188 0.463753 0.749004 0.476383 Vertex 12189 0.623091 0.525778 0.22528 Vertex 12190 0.502245 0.19694 0.466291 Vertex 12191 0.443705 0.115486 0.720533 Vertex 12192 0.51576 0.158556 0.745604 Vertex 12193 0.370477 0.360643 0.488868 Vertex 12194 0.5233 0.160149 0.778948 Vertex 12195 0.515985 0.348412 0.468945 Vertex 12196 0.382163 0.265655 0.228875 Vertex 12197 0.537526 0.0728191 0.716689 Vertex 12198 0.348173 0.308411 0.219079 Vertex 12199 0.43953 0.163507 0.503397 Vertex 12200 0.447875 0.161671 0.499594 Vertex 12201 0.510436 0.104944 0.714208 Vertex 12202 0.341433 0.108669 0.454855 Vertex 12203 0.447312 0.130855 0.631954 Vertex 12204 0.535376 0.0675953 0.706408 Vertex 12205 0.521926 0.0814129 0.659696 Vertex 12206 0.548708 0.145976 0.412798 Vertex 12207 0.633337 0.45476 0.208851 Vertex 12208 0.33753 0.914968 0.269677 Vertex 12209 0.337381 0.911184 0.274261 Vertex 12210 0.420186 0.184361 0.484586 Vertex 12211 0.512272 0.350213 0.452243 Vertex 12212 0.540872 0.615625 0.517919 Vertex 12213 0.414548 0.418969 0.61068 Vertex 12214 0.373125 0.0984406 0.475459 Vertex 12215 0.482931 0.795117 0.468169 Vertex 12216 0.46858 0.516971 0.599693 Vertex 12217 0.654214 0.495105 0.193073 Vertex 12218 0.36892 0.397316 0.289849 Vertex 12219 0.519545 0.609371 0.546999 Vertex 12220 0.596883 0.426361 0.2005 Vertex 12221 0.596196 0.425922 0.199084 Vertex 12222 0.431481 0.183721 0.484722 Vertex 12223 0.48848 0.409386 0.387206 Vertex 12224 0.488848 0.406449 0.395243 Vertex 12225 0.541376 0.521869 0.426455 Vertex 12226 0.428229 0.228644 0.202626 Vertex 12227 0.488901 0.214892 0.503178 Vertex 12228 0.605453 0.537292 0.29178 Vertex 12229 0.389566 0.422339 0.304277 Vertex 12230 0.565599 0.509645 0.423151 Vertex 12231 0.45677 0.407757 0.386004 Vertex 12232 0.530591 0.560461 0.429926 Vertex 12233 0.526445 0.539726 0.41246 Vertex 12234 0.416579 0.350935 0.635543 Vertex 12235 0.358099 0.371363 0.382195 Vertex 12236 0.48164 0.215182 0.580042 Vertex 12237 0.503411 0.163128 0.462021 Vertex 12238 0.357163 0.296222 0.197402 Vertex 12239 0.419801 0.404157 0.316371 Vertex 12240 0.422378 0.139082 0.694616 Vertex 12241 0.374505 0.329223 0.260508 Vertex 12242 0.372574 0.367377 0.481281 Vertex 12243 0.372438 0.366601 0.476792 Vertex 12244 0.515251 0.539335 0.403499 Vertex 12245 0.459145 0.749312 0.41756 Vertex 12246 0.482629 0.532785 0.592266 Vertex 12247 0.477595 0.534603 0.591046 Vertex 12248 0.529963 0.401936 0.46561 Vertex 12249 0.373125 0.263896 0.470674 Vertex 12250 0.549768 0.571081 0.460451 Vertex 12251 0.332845 0.945973 0.293586 Vertex 12252 0.642612 0.47126 0.221425 Vertex 12253 0.587555 0.500275 0.279236 Vertex 12254 0.393321 0.320078 0.207003 Vertex 12255 0.519752 0.369497 0.54893 Vertex 12256 0.518378 0.360755 0.453587 Vertex 12257 0.487041 0.590934 0.402694 Vertex 12258 0.393913 0.354756 0.418904 Vertex 12259 0.388725 0.350266 0.420977 Vertex 12260 0.477689 0.389836 0.399051 Vertex 12261 0.546126 0.502745 0.565555 Vertex 12262 0.545539 0.51321 0.565555 Vertex 12263 0.434069 0.156684 0.76644 Vertex 12264 0.423343 0.39195 0.400941 Vertex 12265 0.522388 0.632682 0.429731 Vertex 12266 0.525491 0.515532 0.588748 Vertex 12267 0.49445 0.209739 0.501531 Vertex 12268 0.382648 0.37022 0.611236 Vertex 12269 0.527683 0.588588 0.549682 Vertex 12270 0.41222 0.525731 0.503586 Vertex 12271 0.50507 0.658837 0.544885 Vertex 12272 0.513966 0.749495 0.468115 Vertex 12273 0.479069 0.0749928 0.705768 Vertex 12274 0.66157 0.404269 0.227377 Vertex 12275 0.466377 0.213577 0.691885 Vertex 12276 0.467076 0.215141 0.698116 Vertex 12277 0.484702 0.107638 0.795467 Vertex 12278 0.4231 0.406034 0.379814 Vertex 12279 0.517614 0.171751 0.465563 Vertex 12280 0.526226 0.165343 0.459587 Vertex 12281 0.515713 0.681734 0.51584 Vertex 12282 0.425706 0.250694 0.217202 Vertex 12283 0.531817 0.171645 0.445633 Vertex 12284 0.527647 0.17152 0.444857 Vertex 12285 0.400553 0.293047 0.204314 Vertex 12286 0.420245 0.388189 0.392276 Vertex 12287 0.383152 0.217847 0.589974 Vertex 12288 0.4637 0.391494 0.626677 Vertex 12289 0.608183 0.478326 0.284175 Vertex 12290 0.367208 0.153918 0.458758 Vertex 12291 0.393872 0.889448 0.324242 Vertex 12292 0.456522 0.577033 0.54723 Vertex 12293 0.47856 0.0766274 0.709944 Vertex 12294 0.54073 0.64852 0.461885 Vertex 12295 0.474858 0.080489 0.731271 Vertex 12296 0.526196 0.0647939 0.669006 Vertex 12297 0.492656 0.396949 0.611035 Vertex 12298 0.382003 0.378079 0.607174 Vertex 12299 0.45677 0.17983 0.642176 Vertex 12300 0.603439 0.514839 0.201566 Vertex 12301 0.524022 0.36406 0.503503 Vertex 12302 0.542412 0.571809 0.542705 Vertex 12303 0.515115 0.291454 0.538488 Vertex 12304 0.447271 0.798849 0.380809 Vertex 12305 0.592713 0.483591 0.399863 Vertex 12306 0.597072 0.480221 0.398708 Vertex 12307 0.485134 0.19928 0.730738 Vertex 12308 0.45025 0.767915 0.416227 Vertex 12309 0.41039 0.365689 0.304372 Vertex 12310 0.492561 0.589329 0.399075 Vertex 12311 0.60964 0.49565 0.222781 Vertex 12312 0.463102 0.510178 0.415196 Vertex 12313 0.455207 0.680129 0.470514 Vertex 12314 0.472229 0.0629697 0.696013 Vertex 12315 0.440193 0.538808 0.568653 Vertex 12316 0.520202 0.150477 0.445834 Vertex 12317 0.664715 0.409771 0.232737 Vertex 12318 0.544983 0.479505 0.394876 Vertex 12319 0.524609 0.133574 0.704501 Vertex 12320 0.524224 0.0895743 0.797309 Vertex 12321 0.512106 0.664055 0.423476 Vertex 12322 0.581916 0.501306 0.470182 Vertex 12323 0.580584 0.502627 0.480506 Vertex 12324 0.431238 0.550683 0.551246 Vertex 12325 0.421785 0.228739 0.209431 Vertex 12326 0.402335 0.350989 0.443868 Vertex 12327 0.40304 0.279023 0.199558 Vertex 12328 0.400831 0.317259 0.202573 Vertex 12329 0.436213 0.154179 0.766505 Vertex 12330 0.606104 0.505677 0.23831 Vertex 12331 0.606324 0.504427 0.242148 Vertex 12332 0.604227 0.506506 0.239791 Vertex 12333 0.624346 0.527993 0.278886 Vertex 12334 0.451043 0.0966756 0.740884 Vertex 12335 0.593442 0.526305 0.285632 Vertex 12336 0.343446 0.904592 0.283453 Vertex 12337 0.384117 0.343479 0.455465 Vertex 12338 0.424054 0.162121 0.731324 Vertex 12339 0.538669 0.545276 0.432645 Vertex 12340 0.504886 0.363936 0.598627 Vertex 12341 0.388518 0.35167 0.440125 Vertex 12342 0.511792 0.281593 0.54065 Vertex 12343 0.512201 0.317093 0.577827 Vertex 12344 0.455479 0.421889 0.624557 Vertex 12345 0.43953 0.255794 0.737519 Vertex 12346 0.546742 0.146029 0.430495 Vertex 12347 0.413636 0.146941 0.673875 Vertex 12348 0.46062 0.177289 0.66502 Vertex 12349 0.59298 0.511765 0.266496 Vertex 12350 0.523625 0.377179 0.448014 Vertex 12351 0.429354 0.799453 0.430838 Vertex 12352 0.498762 0.160516 0.694681 Vertex 12353 0.550994 0.0463745 0.790332 Vertex 12354 0.548767 0.0483112 0.789236 Vertex 12355 0.481669 0.207305 0.772801 Vertex 12356 0.356518 0.257979 0.545163 Vertex 12357 0.396093 0.378973 0.234614 Vertex 12358 0.463587 0.55596 0.430714 Vertex 12359 0.443521 0.580344 0.486748 Vertex 12360 0.510258 0.406034 0.582097 Vertex 12361 0.486739 0.190384 0.460564 Vertex 12362 0.535175 0.130583 0.453042 Vertex 12363 0.378426 0.884011 0.313066 Vertex 12364 0.416413 0.395681 0.372837 Vertex 12365 0.358697 0.404903 0.349964 Vertex 12366 0.419671 0.447771 0.39237 Vertex 12367 0.548477 0.0261663 0.718727 Vertex 12368 0.587389 0.490426 0.437797 Vertex 12369 0.397953 0.185107 0.481228 Vertex 12370 0.384893 0.286586 0.45367 Vertex 12371 0.422384 0.390108 0.343283 Vertex 12372 0.645709 0.487346 0.229936 Vertex 12373 0.540955 0.649337 0.491054 Vertex 12374 0.607058 0.484379 0.18853 Vertex 12375 0.370809 0.389113 0.514519 Vertex 12376 0.443142 0.482336 0.599995 Vertex 12377 0.543804 0.582612 0.44834 Vertex 12378 0.404716 0.836902 0.401687 Vertex 12379 0.405682 0.3941 0.616703 Vertex 12380 0.376755 0.318142 0.609039 Vertex 12381 0.549247 0.58918 0.478178 Vertex 12382 0.359135 0.19482 0.465474 Vertex 12383 0.468764 0.456554 0.386021 Vertex 12384 0.463303 0.502763 0.41355 Vertex 12385 0.433216 0.406152 0.640032 Vertex 12386 0.358182 0.310756 0.201187 Vertex 12387 0.356541 0.310892 0.203574 Vertex 12388 0.59189 0.475329 0.44536 Vertex 12389 0.610914 0.476905 0.185462 Vertex 12390 0.55774 0.0402326 0.743164 Vertex 12391 0.507249 0.274071 0.561385 Vertex 12392 0.510809 0.272875 0.532394 Vertex 12393 0.69132 0.446 0.211273 Vertex 12394 0.464452 0.694397 0.437158 Vertex 12395 0.503465 0.298082 0.456661 Vertex 12396 0.518769 0.377967 0.542729 Vertex 12397 0.471986 0.0579355 0.682658 Vertex 12398 0.499171 0.0438455 0.679513 Vertex 12399 0.49743 0.0381952 0.68068 Vertex 12400 0.553523 0.514964 0.548983 Vertex 12401 0.594828 0.474832 0.402409 Vertex 12402 0.384757 0.907648 0.320001 Vertex 12403 0.385023 0.408255 0.58221 Vertex 12404 0.50491 0.599569 0.410298 Vertex 12405 0.524046 0.0166723 0.727161 Vertex 12406 0.356358 0.401859 0.506062 Vertex 12407 0.356062 0.407183 0.506986 Vertex 12408 0.407452 0.354744 0.240134 Vertex 12409 0.610469 0.4771 0.38598 Vertex 12410 0.605607 0.475465 0.390807 Vertex 12411 0.529116 0.073062 0.707936 Vertex 12412 0.492834 0.100508 0.807324 Vertex 12413 0.49406 0.114829 0.641993 Vertex 12414 0.341148 0.294185 0.222129 Vertex 12415 0.303764 0.955929 0.235947 Vertex 12416 0.44794 0.771308 0.416268 Vertex 12417 0.44287 0.774761 0.418252 Vertex 12418 0.454419 0.544583 0.433651 Vertex 12419 0.322166 0.96232 0.214975 Vertex 12420 0.500136 0.382971 0.602791 Vertex 12421 0.499704 0.729559 0.505416 Vertex 12422 0.495688 0.731893 0.509657 Vertex 12423 0.533623 0.399223 0.50762 Vertex 12424 0.348433 0.0839478 0.44481 Vertex 12425 0.473419 0.213915 0.488217 Vertex 12426 0.437042 0.296684 0.638966 Vertex 12427 0.446222 0.153717 0.783189 Vertex 12428 0.33028 0.250013 0.231428 Vertex 12429 0.519041 0.147516 0.45579 Vertex 12430 0.585008 0.491913 0.298307 Vertex 12431 0.496032 0.538021 0.379654 Vertex 12432 0.472691 0.751793 0.393312 Vertex 12433 0.463049 0.0929443 0.754186 Vertex 12434 0.417592 0.410204 0.349556 Vertex 12435 0.39479 0.36788 0.231493 Vertex 12436 0.526154 0.569322 0.425614 Vertex 12437 0.34427 0.901198 0.300386 Vertex 12438 0.5355 0.147267 0.44369 Vertex 12439 0.46826 0.499363 0.609424 Vertex 12440 0.309675 0.969421 0.249747 Vertex 12441 0.510092 0.336537 0.455275 Vertex 12442 0.444137 0.105489 0.662473 Vertex 12443 0.398444 0.317555 0.227673 Vertex 12444 0.443326 0.253668 0.725094 Vertex 12445 0.433956 0.174796 0.785073 Vertex 12446 0.357341 0.113455 0.457259 Vertex 12447 0.37993 0.227081 0.218398 Vertex 12448 0.530212 0.126283 0.776846 Vertex 12449 0.523738 0.338877 0.491616 Vertex 12450 0.491691 0.61957 0.404026 Vertex 12451 0.377117 0.180132 0.499239 Vertex 12452 0.373048 0.182702 0.505458 Vertex 12453 0.48379 0.69612 0.407929 Vertex 12454 0.495457 0.543191 0.379181 Vertex 12455 0.457369 0.0824731 0.66046 Vertex 12456 0.485407 0.165823 0.794519 Vertex 12457 0.590475 0.424045 0.204581 Vertex 12458 0.486715 0.210515 0.487708 Vertex 12459 0.658526 0.448422 0.203935 Vertex 12460 0.659604 0.450792 0.204089 Vertex 12461 0.404236 0.424756 0.315636 Vertex 12462 0.544082 0.53988 0.437353 Vertex 12463 0.374203 0.872171 0.344018 Vertex 12464 0.635635 0.491433 0.243919 Vertex 12465 0.639366 0.486251 0.235592 Vertex 12466 0.41745 0.303086 0.639511 Vertex 12467 0.46704 0.100697 0.770651 Vertex 12468 0.463066 0.103475 0.766517 Vertex 12469 0.382737 0.31861 0.458112 Vertex 12470 0.495297 0.72112 0.519281 Vertex 12471 0.503346 0.131128 0.658689 Vertex 12472 0.47246 0.493257 0.404174 Vertex 12473 0.475391 0.491907 0.40097 Vertex 12474 0.472317 0.487026 0.400366 Vertex 12475 0.6124 0.45335 0.190141 Vertex 12476 0.525017 0.129641 0.734694 Vertex 12477 0.463179 0.0870454 0.726012 Vertex 12478 0.396253 0.848048 0.385476 Vertex 12479 0.698699 0.447356 0.214454 Vertex 12480 0.455918 0.722103 0.459581 Vertex 12481 0.623997 0.511807 0.201128 Vertex 12482 0.370768 0.363977 0.4874 Vertex 12483 0.417965 0.254947 0.743584 Vertex 12484 0.360278 0.277554 0.226317 Vertex 12485 0.39033 0.188045 0.481903 Vertex 12486 0.451902 0.191391 0.600777 Vertex 12487 0.575911 0.518849 0.451603 Vertex 12488 0.545409 0.030247 0.724122 Vertex 12489 0.389602 0.317745 0.6214 Vertex 12490 0.503115 0.594197 0.405347 Vertex 12491 0.541417 0.0427616 0.716849 Vertex 12492 0.539172 0.0468719 0.719272 Vertex 12493 0.496286 0.17492 0.720794 Vertex 12494 0.521499 0.511374 0.410814 Vertex 12495 0.421323 0.210201 0.782929 Vertex 12496 0.47044 0.190763 0.693123 Vertex 12497 0.406996 0.832004 0.385601 Vertex 12498 0.450256 0.17341 0.615282 Vertex 12499 0.368215 0.085002 0.468891 Vertex 12500 0.363329 0.425762 0.540786 Vertex 12501 0.504857 0.3916 0.586207 Vertex 12502 0.376453 0.317739 0.203171 Vertex 12503 0.432405 0.446847 0.4001 Vertex 12504 0.51473 0.0979253 0.799287 Vertex 12505 0.400298 0.170839 0.532394 Vertex 12506 0.631613 0.444804 0.198024 Vertex 12507 0.446424 0.831021 0.451372 Vertex 12508 0.441526 0.837719 0.445864 Vertex 12509 0.366403 0.367276 0.246039 Vertex 12510 0.394671 0.331183 0.256564 Vertex 12511 0.367771 0.433711 0.553177 Vertex 12512 0.496618 0.282108 0.455222 Vertex 12513 0.398865 0.320303 0.217338 Vertex 12514 0.387766 0.245358 0.669119 Vertex 12515 0.503672 0.177597 0.751669 Vertex 12516 0.506746 0.0843506 0.726835 Vertex 12517 0.558516 0.41766 0.370842 Vertex 12518 0.419629 0.380667 0.349946 Vertex 12519 0.463795 0.522006 0.419111 Vertex 12520 0.536442 0.528207 0.426076 Vertex 12521 0.37499 0.386045 0.543262 Vertex 12522 0.506106 0.655485 0.412975 Vertex 12523 0.390058 0.85743 0.377001 Vertex 12524 0.376282 0.292621 0.461695 Vertex 12525 0.617032 0.505345 0.191497 Vertex 12526 0.472768 0.190793 0.798025 Vertex 12527 0.379942 0.278259 0.602791 Vertex 12528 0.362511 0.368792 0.360341 Vertex 12529 0.509429 0.191391 0.479131 Vertex 12530 0.353562 0.403724 0.464331 Vertex 12531 0.355807 0.404956 0.451467 Vertex 12532 0.458595 0.831021 0.400603 Vertex 12533 0.516666 0.159391 0.4477 Vertex 12534 0.496654 0.54665 0.386252 Vertex 12535 0.376489 0.385583 0.580131 Vertex 12536 0.472418 0.17296 0.49408 Vertex 12537 0.548992 0.572911 0.496929 Vertex 12538 0.644531 0.429683 0.215922 Vertex 12539 0.533795 0.398856 0.501377 Vertex 12540 0.423396 0.813833 0.391476 Vertex 12541 0.423236 0.811203 0.39535 Vertex 12542 0.358733 0.264962 0.513868 Vertex 12543 0.477056 0.760209 0.496745 Vertex 12544 0.500178 0.63851 0.553787 Vertex 12545 0.388044 0.490236 0.544826 Vertex 12546 0.516974 0.110357 0.704175 Vertex 12547 0.454449 0.36149 0.635845 Vertex 12548 0.397532 0.198356 0.723027 Vertex 12549 0.456451 0.7079 0.461885 Vertex 12550 0.456243 0.701924 0.464029 Vertex 12551 0.336244 0.272656 0.229876 Vertex 12552 0.492265 0.563399 0.38444 Vertex 12553 0.356014 0.320819 0.540324 Vertex 12554 0.444226 0.251565 0.733391 Vertex 12555 0.445654 0.595832 0.473961 Vertex 12556 0.558439 0.0350859 0.731703 Vertex 12557 0.622581 0.493364 0.34798 Vertex 12558 0.631341 0.487625 0.240353 Vertex 12559 0.497702 0.558169 0.380537 Vertex 12560 0.465068 0.804499 0.471799 Vertex 12561 0.35615 0.359523 0.393336 Vertex 12562 0.36478 0.377096 0.314712 Vertex 12563 0.424421 0.24306 0.216307 Vertex 12564 0.5372 0.06724 0.714622 Vertex 12565 0.378929 0.380815 0.592598 Vertex 12566 0.465897 0.245281 0.454813 Vertex 12567 0.618773 0.478527 0.327126 Vertex 12568 0.612246 0.466925 0.324218 Vertex 12569 0.441449 0.388651 0.64653 Vertex 12570 0.449574 0.639002 0.472119 Vertex 12571 0.45728 0.122949 0.780826 Vertex 12572 0.363826 0.345943 0.534414 Vertex 12573 0.410343 0.421457 0.358682 Vertex 12574 0.412256 0.42055 0.368952 Vertex 12575 0.408862 0.422902 0.356929 Vertex 12576 0.426316 0.514448 0.458906 Vertex 12577 0.424723 0.512399 0.457431 Vertex 12578 0.634279 0.446782 0.19071 Vertex 12579 0.430628 0.408948 0.401278 Vertex 12580 0.453365 0.273965 0.434783 Vertex 12581 0.365307 0.427877 0.432372 Vertex 12582 0.409768 0.166516 0.624503 Vertex 12583 0.402021 0.167481 0.625859 Vertex 12584 0.678533 0.44696 0.200832 Vertex 12585 0.42759 0.149435 0.617372 Vertex 12586 0.481314 0.733528 0.399022 Vertex 12587 0.477565 0.736092 0.399513 Vertex 12588 0.483997 0.496959 0.392821 Vertex 12589 0.571795 0.533282 0.48509 Vertex 12590 0.382009 0.424157 0.368354 Vertex 12591 0.417172 0.833182 0.368555 Vertex 12592 0.500071 0.667816 0.411128 Vertex 12593 0.447022 0.149743 0.630971 Vertex 12594 0.416834 0.356396 0.63437 Vertex 12595 0.433992 0.151063 0.735458 Vertex 12596 0.44441 0.784664 0.453617 Vertex 12597 0.476132 0.577714 0.42167 Vertex 12598 0.389726 0.19347 0.627548 Vertex 12599 0.472732 0.756928 0.391648 Vertex 12600 0.430847 0.335856 0.648709 Vertex 12601 0.432813 0.33649 0.648105 Vertex 12602 0.437753 0.341139 0.646861 Vertex 12603 0.434608 0.337645 0.648028 Vertex 12604 0.418646 0.24566 0.760334 Vertex 12605 0.646112 0.502668 0.235917 Vertex 12606 0.461088 0.828663 0.438182 Vertex 12607 0.533848 0.643278 0.445289 Vertex 12608 0.374066 0.348211 0.482667 Vertex 12609 0.552564 0.543007 0.457751 Vertex 12610 0.504519 0.25654 0.549043 Vertex 12611 0.504027 0.254787 0.550973 Vertex 12612 0.309812 0.99894 0.214347 Vertex 12613 0.482185 0.59226 0.420456 Vertex 12614 0.481427 0.594144 0.422617 Vertex 12615 0.562377 0.508431 0.42103 Vertex 12616 0.562117 0.433681 0.347743 Vertex 12617 0.566612 0.430903 0.345392 Vertex 12618 0.671976 0.450436 0.204391 Vertex 12619 0.34594 0.277524 0.197183 Vertex 12620 0.359704 0.33543 0.543967 Vertex 12621 0.478903 0.170608 0.536528 Vertex 12622 0.565131 0.403375 0.44738 Vertex 12623 0.418386 0.881233 0.370078 Vertex 12624 0.415762 0.880084 0.355496 Vertex 12625 0.430729 0.816729 0.379003 Vertex 12626 0.495783 0.507365 0.392098 Vertex 12627 0.446039 0.249101 0.743762 Vertex 12628 0.420506 0.842007 0.346932 Vertex 12629 0.370075 0.908868 0.297152 Vertex 12630 0.365271 0.915827 0.29242 Vertex 12631 0.527611 0.127006 0.714753 Vertex 12632 0.376359 0.359251 0.325089 Vertex 12633 0.358626 0.394426 0.362378 Vertex 12634 0.50186 0.528509 0.392903 Vertex 12635 0.508446 0.302784 0.462998 Vertex 12636 0.511004 0.309015 0.465693 Vertex 12637 0.480005 0.559313 0.405548 Vertex 12638 0.519545 0.0203147 0.653963 Vertex 12639 0.487065 0.569411 0.574095 Vertex 12640 0.423438 0.431703 0.609922 Vertex 12641 0.439595 0.332599 0.418241 Vertex 12642 0.368653 0.366269 0.242071 Vertex 12643 0.499195 0.510143 0.39089 Vertex 12644 0.498111 0.51311 0.389107 Vertex 12645 0.431729 0.194536 0.477663 Vertex 12646 0.40153 0.273011 0.228899 Vertex 12647 0.475599 0.188222 0.69824 Vertex 12648 0.529519 0.63443 0.526116 Vertex 12649 0.523815 0.636455 0.530434 Vertex 12650 0.520717 0.452474 0.595536 Vertex 12651 0.416757 0.217788 0.772724 Vertex 12652 0.341196 0.123618 0.462264 Vertex 12653 0.424267 0.484782 0.424975 Vertex 12654 0.619691 0.483816 0.312971 Vertex 12655 0.529134 0.142902 0.459308 Vertex 12656 0.332318 0.949237 0.289944 Vertex 12657 0.5968 0.518109 0.249711 Vertex 12658 0.423272 0.82797 0.434563 Vertex 12659 0.513166 0.280018 0.494678 Vertex 12660 0.528512 0.602477 0.4347 Vertex 12661 0.478199 0.168067 0.675178 Vertex 12662 0.363127 0.415895 0.331302 Vertex 12663 0.455604 0.196425 0.594558 Vertex 12664 0.605939 0.470437 0.215052 Vertex 12665 0.433258 0.154653 0.580042 Vertex 12666 0.368606 0.384067 0.248379 Vertex 12667 0.429929 0.850678 0.434996 Vertex 12668 0.596243 0.530469 0.292011 Vertex 12669 0.471725 0.355123 0.630758 Vertex 12670 0.508813 0.0313072 0.721339 Vertex 12671 0.400819 0.278626 0.196011 Vertex 12672 0.419002 0.811801 0.408042 Vertex 12673 0.515914 0.357563 0.468305 Vertex 12674 0.400292 0.352777 0.625321 Vertex 12675 0.359384 0.269286 0.495069 Vertex 12676 0.474473 0.205374 0.789402 Vertex 12677 0.545362 0.0555427 0.796349 Vertex 12678 0.415116 0.40819 0.30924 Vertex 12679 0.441531 0.44526 0.626049 Vertex 12680 0.546143 0.552869 0.544796 Vertex 12681 0.547429 0.547823 0.546863 Vertex 12682 0.434886 0.255972 0.696061 Vertex 12683 0.437066 0.253833 0.702297 Vertex 12684 0.433169 0.259276 0.702297 Vertex 12685 0.371994 0.907476 0.354957 Vertex 12686 0.366006 0.383842 0.293983 Vertex 12687 0.468444 0.369254 0.410381 Vertex 12688 0.480947 0.363237 0.421557 Vertex 12689 0.480443 0.364718 0.419561 Vertex 12690 0.533943 0.0512192 0.795088 Vertex 12691 0.501487 0.67227 0.541929 Vertex 12692 0.499035 0.672874 0.541154 Vertex 12693 0.476528 0.646536 0.422973 Vertex 12694 0.52003 0.298182 0.494418 Vertex 12695 0.482996 0.208324 0.749957 Vertex 12696 0.450208 0.301771 0.424418 Vertex 12697 0.516406 0.374697 0.445325 Vertex 12698 0.323078 0.252667 0.224795 Vertex 12699 0.485928 0.38717 0.413899 Vertex 12700 0.484607 0.385263 0.413781 Vertex 12701 0.466691 0.545667 0.424264 Vertex 12702 0.546777 0.611817 0.482158 Vertex 12703 0.545581 0.617272 0.493772 Vertex 12704 0.6218 0.493186 0.337461 Vertex 12705 0.408631 0.283512 0.220738 Vertex 12706 0.499337 0.255083 0.569553 Vertex 12707 0.500888 0.253508 0.559271 Vertex 12708 0.338003 0.25978 0.231298 Vertex 12709 0.571795 0.427912 0.474358 Vertex 12710 0.574768 0.436109 0.472291 Vertex 12711 0.522524 0.392477 0.463816 Vertex 12712 0.57164 0.532151 0.472338 Vertex 12713 0.433637 0.829611 0.355419 Vertex 12714 0.670762 0.45476 0.205866 Vertex 12715 0.351383 0.385494 0.466143 Vertex 12716 0.479626 0.452551 0.608009 Vertex 12717 0.417095 0.169507 0.502479 Vertex 12718 0.488782 0.582577 0.399726 Vertex 12719 0.439062 0.250381 0.677428 Vertex 12720 0.427033 0.37789 0.425093 Vertex 12721 0.384413 0.429571 0.348306 Vertex 12722 0.623748 0.504344 0.18638 Vertex 12723 0.338951 0.103937 0.466102 Vertex 12724 0.5571 0.399821 0.463952 Vertex 12725 0.412303 0.372133 0.427912 Vertex 12726 0.374676 0.189744 0.554942 Vertex 12727 0.334965 0.913819 0.296323 Vertex 12728 0.523312 0.0688983 0.653252 Vertex 12729 0.473697 0.21722 0.776935 Vertex 12730 0.514611 0.725858 0.495022 Vertex 12731 0.495866 0.20098 0.534461 Vertex 12732 0.585103 0.508543 0.318071 Vertex 12733 0.35419 0.365985 0.43701 Vertex 12734 0.353136 0.36926 0.444206 Vertex 12735 0.410289 0.161795 0.702297 Vertex 12736 0.587798 0.503255 0.303382 Vertex 12737 0.538989 0.505932 0.418377 Vertex 12738 0.537336 0.503361 0.417968 Vertex 12739 0.368345 0.413627 0.372731 Vertex 12740 0.379089 0.449275 0.57602 Vertex 12741 0.466253 0.162204 0.658991 Vertex 12742 0.477849 0.532862 0.39988 Vertex 12743 0.494741 0.735595 0.507886 Vertex 12744 0.517916 0.0450182 0.657552 Vertex 12745 0.519847 0.0389297 0.659121 Vertex 12746 0.544532 0.128664 0.449998 Vertex 12747 0.617494 0.482253 0.37481 Vertex 12748 0.536874 0.116451 0.429938 Vertex 12749 0.44948 0.487323 0.415031 Vertex 12750 0.484376 0.0524156 0.685134 Vertex 12751 0.502458 0.675971 0.540484 Vertex 12752 0.347201 0.141042 0.464123 Vertex 12753 0.45545 0.479949 0.616283 Vertex 12754 0.518988 0.144507 0.449666 Vertex 12755 0.522323 0.1418 0.453427 Vertex 12756 0.377371 0.0829943 0.477331 Vertex 12757 0.459063 0.42042 0.380768 Vertex 12758 0.505455 0.645523 0.411074 Vertex 12759 0.631418 0.444822 0.196395 Vertex 12760 0.690615 0.460665 0.217255 Vertex 12761 0.491051 0.662189 0.53012 Vertex 12762 0.489037 0.0654987 0.692555 Vertex 12763 0.516495 0.0327464 0.629644 Vertex 12764 0.551823 0.565069 0.484314 Vertex 12765 0.454016 0.156601 0.650456 Vertex 12766 0.385053 0.0783391 0.474399 Vertex 12767 0.531509 0.100869 0.739539 Vertex 12768 0.607674 0.506767 0.211901 Vertex 12769 0.508351 0.422505 0.429908 Vertex 12770 0.519059 0.0572366 0.670309 Vertex 12771 0.453329 0.819975 0.382758 Vertex 12772 0.409123 0.238192 0.21138 Vertex 12773 0.473389 0.350213 0.630917 Vertex 12774 0.440388 0.835522 0.449862 Vertex 12775 0.323126 0.9914 0.204723 Vertex 12776 0.543016 0.449654 0.385352 Vertex 12777 0.496073 0.612303 0.560355 Vertex 12778 0.538562 0.148333 0.457911 Vertex 12779 0.487533 0.333552 0.62692 Vertex 12780 0.42759 0.206831 0.787714 Vertex 12781 0.41931 0.220554 0.776887 Vertex 12782 0.386628 0.237783 0.698128 Vertex 12783 0.467639 0.182892 0.683647 Vertex 12784 0.465116 0.225067 0.472439 Vertex 12785 0.457416 0.320298 0.636343 Vertex 12786 0.477506 0.462738 0.381017 Vertex 12787 0.629991 0.513116 0.204693 Vertex 12788 0.490986 0.225257 0.559324 Vertex 12789 0.518271 0.287539 0.490935 Vertex 12790 0.507172 0.0412336 0.756093 Vertex 12791 0.548424 0.0584567 0.72417 Vertex 12792 0.50186 0.0990447 0.639517 Vertex 12793 0.484631 0.762241 0.496349 Vertex 12794 0.462361 0.702901 0.48275 Vertex 12795 0.527783 0.0732574 0.7104 Vertex 12796 0.345371 0.937001 0.311431 Vertex 12797 0.34912 0.932861 0.318379 Vertex 12798 0.494741 0.0822302 0.772534 Vertex 12799 0.53765 0.0506802 0.796622 Vertex 12800 0.552481 0.450253 0.364546 Vertex 12801 0.358549 0.351818 0.424578 Vertex 12802 0.610973 0.486784 0.268231 Vertex 12803 0.515369 0.620665 0.424702 Vertex 12804 0.443646 0.46346 0.614251 Vertex 12805 0.442805 0.465912 0.61158 Vertex 12806 0.491377 0.0811405 0.64345 Vertex 12807 0.596569 0.455767 0.399472 Vertex 12808 0.573719 0.506607 0.366559 Vertex 12809 0.489404 0.206162 0.477515 Vertex 12810 0.413831 0.214448 0.47174 Vertex 12811 0.471003 0.550209 0.424453 Vertex 12812 0.469848 0.554219 0.426047 Vertex 12813 0.446483 0.140983 0.629703 Vertex 12814 0.326401 0.241117 0.23067 Vertex 12815 0.441851 0.255154 0.725094 Vertex 12816 0.477731 0.201785 0.575807 Vertex 12817 0.502031 0.0399602 0.720948 Vertex 12818 0.480171 0.729891 0.400407 Vertex 12819 0.521635 0.726563 0.460043 Vertex 12820 0.554453 0.0447161 0.764645 Vertex 12821 0.550775 0.0498037 0.772747 Vertex 12822 0.372337 0.37693 0.531583 Vertex 12823 0.47731 0.0701776 0.704246 Vertex 12824 0.518443 0.372725 0.482845 Vertex 12825 0.546588 0.0376444 0.789284 Vertex 12826 0.459619 0.514703 0.422007 Vertex 12827 0.381902 0.226032 0.61267 Vertex 12828 0.382269 0.218783 0.613576 Vertex 12829 0.381819 0.224771 0.618812 Vertex 12830 0.546558 0.431721 0.544796 Vertex 12831 0.560186 0.529788 0.457845 Vertex 12832 0.533576 0.652956 0.446006 Vertex 12833 0.367244 0.26617 0.196721 Vertex 12834 0.447087 0.163631 0.546916 Vertex 12835 0.468705 0.0854403 0.727948 Vertex 12836 0.506106 0.0920796 0.809521 Vertex 12837 0.367848 0.249605 0.232216 Vertex 12838 0.364709 0.176199 0.49514 Vertex 12839 0.486644 0.587765 0.399335 Vertex 12840 0.385468 0.330123 0.460309 Vertex 12841 0.493734 0.42427 0.384535 Vertex 12842 0.489422 0.423956 0.378488 Vertex 12843 0.36995 0.298946 0.476603 Vertex 12844 0.478785 0.42552 0.374022 Vertex 12845 0.52051 0.307031 0.53038 Vertex 12846 0.599193 0.518973 0.262238 Vertex 12847 0.597902 0.516723 0.260265 Vertex 12848 0.4992 0.431039 0.393952 Vertex 12849 0.567204 0.433971 0.340796 Vertex 12850 0.369873 0.467298 0.490965 Vertex 12851 0.555448 0.559218 0.513732 Vertex 12852 0.502547 0.0926482 0.809604 Vertex 12853 0.522334 0.114094 0.791741 Vertex 12854 0.533422 0.0863939 0.776929 Vertex 12855 0.456261 0.483651 0.614109 Vertex 12856 0.517318 0.0186919 0.638925 Vertex 12857 0.56987 0.498445 0.511677 Vertex 12858 0.465838 0.228467 0.77482 Vertex 12859 0.370845 0.915507 0.345664 Vertex 12860 0.370217 0.913168 0.349514 Vertex 12861 0.468361 0.513139 0.409155 Vertex 12862 0.470819 0.512044 0.407538 Vertex 12863 0.49339 0.23279 0.561587 Vertex 12864 0.45622 0.156844 0.654993 Vertex 12865 0.596747 0.429618 0.20339 Vertex 12866 0.534754 0.116297 0.797172 Vertex 12867 0.533895 0.495294 0.414746 Vertex 12868 0.613395 0.458953 0.211439 Vertex 12869 0.519112 0.667573 0.429257 Vertex 12870 0.356518 0.326274 0.538737 Vertex 12871 0.370921 0.415119 0.308494 Vertex 12872 0.577936 0.409179 0.410091 Vertex 12873 0.363583 0.401474 0.37892 Vertex 12874 0.363903 0.338006 0.573468 Vertex 12875 0.470991 0.387111 0.39901 Vertex 12876 0.441478 0.218173 0.793311 Vertex 12877 0.44226 0.379767 0.647406 Vertex 12878 0.416188 0.341495 0.433231 Vertex 12879 0.647445 0.434569 0.192267 Vertex 12880 0.636138 0.444425 0.196946 Vertex 12881 0.40548 0.219843 0.471758 Vertex 12882 0.567252 0.51398 0.432834 Vertex 12883 0.417071 0.211398 0.472344 Vertex 12884 0.439553 0.82983 0.367347 Vertex 12885 0.39813 0.173421 0.620985 Vertex 12886 0.404029 0.390244 0.269937 Vertex 12887 0.659912 0.496378 0.194163 Vertex 12888 0.656145 0.452497 0.215543 Vertex 12889 0.658224 0.456999 0.207897 Vertex 12890 0.49188 0.765593 0.486807 Vertex 12891 0.365455 0.355478 0.548373 Vertex 12892 0.640515 0.511209 0.238014 Vertex 12893 0.48591 0.575132 0.401799 Vertex 12894 0.486798 0.581114 0.403576 Vertex 12895 0.399948 0.328287 0.6283 Vertex 12896 0.545498 0.0691471 0.731241 Vertex 12897 0.354362 0.27275 0.541574 Vertex 12898 0.419268 0.393531 0.37632 Vertex 12899 0.341196 0.905498 0.31059 Vertex 12900 0.461118 0.145407 0.652683 Vertex 12901 0.522891 0.433409 0.590436 Vertex 12902 0.378959 0.343372 0.276938 Vertex 12903 0.50321 0.505333 0.396422 Vertex 12904 0.48591 0.734534 0.507394 Vertex 12905 0.399054 0.297584 0.626647 Vertex 12906 0.351347 0.183964 0.488857 Vertex 12907 0.434158 0.118637 0.669006 Vertex 12908 0.463599 0.108479 0.77684 Vertex 12909 0.499224 0.694764 0.411045 Vertex 12910 0.497364 0.706876 0.40922 Vertex 12911 0.51303 0.186647 0.459143 Vertex 12912 0.565872 0.460013 0.323602 Vertex 12913 0.43886 0.124299 0.725585 Vertex 12914 0.585879 0.469874 0.470182 Vertex 12915 0.548542 0.0446924 0.722701 Vertex 12916 0.338264 0.289144 0.220738 Vertex 12917 0.464233 0.338693 0.633364 Vertex 12918 0.35419 0.413882 0.495561 Vertex 12919 0.356701 0.416642 0.510522 Vertex 12920 0.361356 0.293782 0.491237 Vertex 12921 0.51454 0.169003 0.786938 Vertex 12922 0.481965 0.338066 0.428185 Vertex 12923 0.395832 0.224303 0.72504 Vertex 12924 0.517845 0.41583 0.431774 Vertex 12925 0.586192 0.481915 0.466007 Vertex 12926 0.392083 0.450389 0.592023 Vertex 12927 0.441312 0.241064 0.772582 Vertex 12928 0.500545 0.1841 0.758255 Vertex 12929 0.431309 0.328056 0.423938 Vertex 12930 0.381268 0.17341 0.515799 Vertex 12931 0.478702 0.134468 0.805014 Vertex 12932 0.433702 0.417796 0.63305 Vertex 12933 0.430835 0.418353 0.624521 Vertex 12934 0.37284 0.236302 0.237226 Vertex 12935 0.472069 0.105731 0.780974 Vertex 12936 0.361096 0.306758 0.2403 Vertex 12937 0.491898 0.0606895 0.689131 Vertex 12938 0.476813 0.511967 0.600155 Vertex 12939 0.412611 0.263724 0.710577 Vertex 12940 0.350086 0.28286 0.229876 Vertex 12941 0.382317 0.319462 0.254443 Vertex 12942 0.484862 0.370859 0.426361 Vertex 12943 0.412777 0.160356 0.631486 Vertex 12944 0.451339 0.14719 0.653234 Vertex 12945 0.619241 0.524943 0.219458 Vertex 12946 0.577622 0.480251 0.312563 Vertex 12947 0.392391 0.252501 0.646393 Vertex 12948 0.435253 0.520614 0.453711 Vertex 12949 0.436408 0.526235 0.455684 Vertex 12950 0.365615 0.111038 0.479404 Vertex 12951 0.579903 0.40636 0.389759 Vertex 12952 0.476446 0.79462 0.474216 Vertex 12953 0.599684 0.511481 0.236788 Vertex 12954 0.52356 0.0235544 0.725319 Vertex 12955 0.522293 0.0193908 0.723489 Vertex 12956 0.449438 0.169151 0.79555 Vertex 12957 0.527759 0.119318 0.728399 Vertex 12958 0.448467 0.582547 0.46298 Vertex 12959 0.60771 0.515254 0.349946 Vertex 12960 0.465347 0.335347 0.633097 Vertex 12961 0.678977 0.477313 0.203094 Vertex 12962 0.463096 0.577904 0.434084 Vertex 12963 0.565055 0.498943 0.388929 Vertex 12964 0.422999 0.213168 0.471858 Vertex 12965 0.443758 0.846585 0.422309 Vertex 12966 0.534908 0.0930273 0.727392 Vertex 12967 0.561329 0.547343 0.513815 Vertex 12968 0.446199 0.204829 0.798866 Vertex 12969 0.348593 0.17261 0.466469 Vertex 12970 0.35037 0.172089 0.472682 Vertex 12971 0.483032 0.0737135 0.701676 Vertex 12972 0.602397 0.464236 0.21122 Vertex 12973 0.45237 0.136049 0.787169 Vertex 12974 0.356447 0.418448 0.457763 Vertex 12975 0.307117 0.954212 0.252596 Vertex 12976 0.628954 0.507548 0.285603 Vertex 12977 0.35124 0.29438 0.197373 Vertex 12978 0.434703 0.35292 0.422049 Vertex 12979 0.380789 0.48689 0.476466 Vertex 12980 0.381316 0.488845 0.4806 Vertex 12981 0.467396 0.766013 0.389326 Vertex 12982 0.456996 0.148913 0.655887 Vertex 12983 0.462065 0.318544 0.420622 Vertex 12984 0.663531 0.409795 0.218238 Vertex 12985 0.6089 0.533863 0.296921 Vertex 12986 0.606294 0.531666 0.299302 Vertex 12987 0.453839 0.633518 0.489005 Vertex 12988 0.521245 0.465426 0.408853 Vertex 12989 0.518556 0.468151 0.408924 Vertex 12990 0.551196 0.151294 0.418501 Vertex 12991 0.551284 0.149689 0.415504 Vertex 12992 0.516222 0.344018 0.472522 Vertex 12993 0.51576 0.34769 0.473161 Vertex 12994 0.523276 0.319919 0.536433 Vertex 12995 0.383383 0.416766 0.582399 Vertex 12996 0.435336 0.257736 0.718887 Vertex 12997 0.369583 0.400277 0.531257 Vertex 12998 0.426577 0.134717 0.693313 Vertex 12999 0.521085 0.122309 0.71223 Vertex 13000 0.40516 0.289281 0.223604 Vertex 13001 0.42005 0.409896 0.617372 Vertex 13002 0.355866 0.227489 0.511665 Vertex 13003 0.397621 0.286763 0.236764 Vertex 13004 0.380688 0.346772 0.285194 Vertex 13005 0.432399 0.816966 0.37481 Vertex 13006 0.373539 0.33222 0.48262 Vertex 13007 0.425985 0.33084 0.648336 Vertex 13008 0.398995 0.243196 0.722049 Vertex 13009 0.485679 0.19697 0.472279 Vertex 13010 0.451908 0.0949877 0.716453 Vertex 13011 0.38189 0.902554 0.365292 Vertex 13012 0.391763 0.356692 0.37895 Vertex 13013 0.510679 0.0297022 0.743667 Vertex 13014 0.392219 0.445971 0.399578 Vertex 13015 0.605465 0.489686 0.211901 Vertex 13016 0.389874 0.351261 0.399732 Vertex 13017 0.629635 0.521893 0.223415 Vertex 13018 0.3824 0.867569 0.337983 Vertex 13019 0.524846 0.0703435 0.677209 Vertex 13020 0.528535 0.139366 0.448707 Vertex 13021 0.45478 0.301795 0.635028 Vertex 13022 0.529365 0.0357433 0.657824 Vertex 13023 0.592394 0.488934 0.283482 Vertex 13024 0.549632 0.564915 0.493494 Vertex 13025 0.429834 0.846798 0.439456 Vertex 13026 0.423811 0.386862 0.325782 Vertex 13027 0.423456 0.382426 0.331373 Vertex 13028 0.48058 0.191255 0.715167 Vertex 13029 0.508232 0.268332 0.544796 Vertex 13030 0.553843 0.0115314 0.724679 Vertex 13031 0.553488 0.00521787 0.727463 Vertex 13032 0.553849 0.00951772 0.730969 Vertex 13033 0.348457 0.0994474 0.453024 Vertex 13034 0.325803 0.245115 0.23282 Vertex 13035 0.365591 0.356183 0.239785 Vertex 13036 0.380605 0.349384 0.291875 Vertex 13037 0.527463 0.0543997 0.789153 Vertex 13038 0.35936 0.364386 0.378837 Vertex 13039 0.351791 0.396143 0.46978 Vertex 13040 0.614005 0.458781 0.362923 Vertex 13041 0.50966 0.700532 0.422623 Vertex 13042 0.512177 0.708374 0.426171 Vertex 13043 0.448656 0.13666 0.632925 Vertex 13044 0.424374 0.85743 0.426757 Vertex 13045 0.582805 0.496982 0.424744 Vertex 13046 0.516281 0.0936551 0.72189 Vertex 13047 0.4983 0.291715 0.450744 Vertex 13048 0.501723 0.289115 0.455547 Vertex 13049 0.551646 0.46471 0.356449 Vertex 13050 0.510809 0.0193079 0.650782 Vertex 13051 0.514842 0.0174363 0.648703 Vertex 13052 0.326146 0.243386 0.214021 Vertex 13053 0.425682 0.846331 0.438028 Vertex 13054 0.473224 0.813726 0.450869 Vertex 13055 0.433305 0.260011 0.731336 Vertex 13056 0.595331 0.450744 0.19893 Vertex 13057 0.387387 0.17495 0.540733 Vertex 13058 0.518947 0.378517 0.461855 Vertex 13059 0.42939 0.193256 0.788851 Vertex 13060 0.385515 0.255302 0.22207 Vertex 13061 0.492318 0.228413 0.553496 Vertex 13062 0.468148 0.225405 0.7562 Vertex 13063 0.403342 0.180754 0.577981 Vertex 13064 0.464038 0.120514 0.643183 Vertex 13065 0.473407 0.25612 0.449453 Vertex 13066 0.469901 0.181843 0.695167 Vertex 13067 0.621255 0.48429 0.276725 Vertex 13068 0.42079 0.257967 0.22534 Vertex 13069 0.574483 0.50724 0.362206 Vertex 13070 0.539445 0.0480091 0.717507 Vertex 13071 0.39293 0.889039 0.384807 Vertex 13072 0.506491 0.174079 0.768619 Vertex 13073 0.512136 0.173113 0.766523 Vertex 13074 0.513302 0.172077 0.764438 Vertex 13075 0.404414 0.262741 0.683665 Vertex 13076 0.404639 0.523344 0.534467 Vertex 13077 0.477115 0.594458 0.426349 Vertex 13078 0.430113 0.493731 0.591502 Vertex 13079 0.364537 0.321441 0.499405 Vertex 13080 0.470932 0.285455 0.628098 Vertex 13081 0.471873 0.296163 0.631391 Vertex 13082 0.380504 0.349929 0.453984 Vertex 13083 0.630968 0.489147 0.186475 Vertex 13084 0.621574 0.490775 0.184615 Vertex 13085 0.387073 0.216977 0.474915 Vertex 13086 0.386845 0.213678 0.475246 Vertex 13087 0.608592 0.495893 0.192729 Vertex 13088 0.482872 0.699928 0.505416 Vertex 13089 0.485756 0.447362 0.608151 Vertex 13090 0.499337 0.111713 0.796533 Vertex 13091 0.499793 0.11015 0.797297 Vertex 13092 0.543703 0.0211676 0.727978 Vertex 13093 0.558628 0.400621 0.411536 Vertex 13094 0.651312 0.414965 0.209775 Vertex 13095 0.388358 0.253371 0.212665 Vertex 13096 0.572322 0.404447 0.397624 Vertex 13097 0.467194 0.174103 0.557323 Vertex 13098 0.525598 0.409434 0.561385 Vertex 13099 0.460212 0.363651 0.63315 Vertex 13100 0.382577 0.0806311 0.474263 Vertex 13101 0.475954 0.460724 0.380188 Vertex 13102 0.49663 0.186522 0.528177 Vertex 13103 0.490139 0.178699 0.52611 Vertex 13104 0.351406 0.308221 0.233388 Vertex 13105 0.404959 0.507999 0.469637 Vertex 13106 0.525094 0.584975 0.551844 Vertex 13107 0.345555 0.270251 0.229829 Vertex 13108 0.454212 0.777059 0.393117 Vertex 13109 0.436124 0.306397 0.42353 Vertex 13110 0.354374 0.358516 0.41005 Vertex 13111 0.369393 0.285591 0.195472 Vertex 13112 0.451499 0.285674 0.4296 Vertex 13113 0.489612 0.655615 0.529456 Vertex 13114 0.399469 0.341353 0.210213 Vertex 13115 0.367759 0.411909 0.399744 Vertex 13116 0.504217 0.0367205 0.71939 Vertex 13117 0.599779 0.504054 0.255622 Vertex 13118 0.351691 0.300012 0.233767 Vertex 13119 0.35416 0.296062 0.231298 Vertex 13120 0.352241 0.298964 0.233531 Vertex 13121 0.461615 0.529723 0.584377 Vertex 13122 0.492016 0.386323 0.431845 Vertex 13123 0.450771 0.237635 0.640109 Vertex 13124 0.36995 0.381911 0.50069 Vertex 13125 0.4101 0.842718 0.351842 Vertex 13126 0.460389 0.181257 0.662965 Vertex 13127 0.48119 0.207115 0.779002 Vertex 13128 0.366497 0.216065 0.233933 Vertex 13129 0.470073 0.198913 0.795793 Vertex 13130 0.615835 0.472267 0.37767 Vertex 13131 0.340692 0.90506 0.297993 Vertex 13132 0.342664 0.901921 0.302766 Vertex 13133 0.471903 0.474239 0.392832 Vertex 13134 0.358022 0.433752 0.498125 Vertex 13135 0.36106 0.440178 0.515615 Vertex 13136 0.525503 0.334903 0.520667 Vertex 13137 0.524609 0.332593 0.536623 Vertex 13138 0.484725 0.146752 0.649734 Vertex 13139 0.409768 0.242095 0.196964 Vertex 13140 0.406783 0.24412 0.202052 Vertex 13141 0.488167 0.103256 0.80534 Vertex 13142 0.486875 0.103422 0.805583 Vertex 13143 0.486899 0.10261 0.805885 Vertex 13144 0.487722 0.102521 0.805565 Vertex 13145 0.487497 0.102415 0.805482 Vertex 13146 0.45709 0.0749928 0.691933 Vertex 13147 0.41074 0.854374 0.340944 Vertex 13148 0.517454 0.0239868 0.753984 Vertex 13149 0.514131 0.448588 0.409588 Vertex 13150 0.469463 0.211042 0.698104 Vertex 13151 0.47288 0.632363 0.427356 Vertex 13152 0.454236 0.452343 0.627145 Vertex 13153 0.517549 0.7399 0.476383 Vertex 13154 0.517507 0.742145 0.468127 Vertex 13155 0.399504 0.177668 0.594558 Vertex 13156 0.392024 0.196016 0.589388 Vertex 13157 0.395157 0.189081 0.592041 Vertex 13158 0.396744 0.186753 0.584205 Vertex 13159 0.430201 0.512133 0.583832 Vertex 13160 0.365556 0.338824 0.511718 Vertex 13161 0.436586 0.472309 0.417275 Vertex 13162 0.41437 0.249155 0.193701 Vertex 13163 0.644424 0.419455 0.205214 Vertex 13164 0.403573 0.358191 0.442204 Vertex 13165 0.398693 0.308962 0.221993 Vertex 13166 0.488143 0.170419 0.791966 Vertex 13167 0.469439 0.578318 0.428226 Vertex 13168 0.592352 0.515775 0.337562 Vertex 13169 0.494379 0.208187 0.482265 Vertex 13170 0.347385 0.90002 0.316993 Vertex 13171 0.47827 0.0774388 0.718946 Vertex 13172 0.524573 0.399454 0.472291 Vertex 13173 0.381926 0.231594 0.611396 Vertex 13174 0.480805 0.14074 0.797516 Vertex 13175 0.517507 0.152793 0.733622 Vertex 13176 0.605566 0.496574 0.25795 Vertex 13177 0.333763 0.246134 0.227022 Vertex 13178 0.434632 0.51205 0.451437 Vertex 13179 0.502594 0.4148 0.417589 Vertex 13180 0.414791 0.449406 0.602062 Vertex 13181 0.437261 0.544174 0.482614 Vertex 13182 0.440069 0.551601 0.482478 Vertex 13183 0.365716 0.350716 0.528367 Vertex 13184 0.410639 0.153865 0.643628 Vertex 13185 0.515304 0.0874777 0.651049 Vertex 13186 0.567803 0.40546 0.445319 Vertex 13187 0.395708 0.245755 0.716707 Vertex 13188 0.369263 0.300486 0.482792 Vertex 13189 0.367871 0.297531 0.484871 Vertex 13190 0.427755 0.158342 0.737525 Vertex 13191 0.406475 0.22897 0.747878 Vertex 13192 0.387647 0.24396 0.646316 Vertex 13193 0.516169 0.12283 0.681515 Vertex 13194 0.444955 0.247076 0.702297 Vertex 13195 0.437504 0.254378 0.706443 Vertex 13196 0.4386 0.254663 0.710601 Vertex 13197 0.466744 0.22852 0.766558 Vertex 13198 0.502955 0.512512 0.395255 Vertex 13199 0.416034 0.232358 0.463117 Vertex 13200 0.40965 0.233021 0.463987 Vertex 13201 0.507089 0.66977 0.534514 Vertex 13202 0.511679 0.667792 0.528402 Vertex 13203 0.423823 0.817552 0.384576 Vertex 13204 0.605637 0.521271 0.210758 Vertex 13205 0.494587 0.621909 0.552632 Vertex 13206 0.561791 0.491237 0.360329 Vertex 13207 0.563213 0.495916 0.360341 Vertex 13208 0.558078 0.0313072 0.754038 Vertex 13209 0.354729 0.412359 0.478261 Vertex 13210 0.508967 0.422499 0.597786 Vertex 13211 0.37749 0.479398 0.512897 Vertex 13212 0.507403 0.0388408 0.721795 Vertex 13213 0.501605 0.0434131 0.721848 Vertex 13214 0.492614 0.208353 0.536534 Vertex 13215 0.459128 0.659891 0.493121 Vertex 13216 0.449622 0.217942 0.468767 Vertex 13217 0.321147 0.940638 0.280722 Vertex 13218 0.461361 0.113224 0.642022 Vertex 13219 0.4361 0.099477 0.694201 Vertex 13220 0.440069 0.480719 0.41846 Vertex 13221 0.54105 0.0329715 0.726971 Vertex 13222 0.473757 0.316134 0.426349 Vertex 13223 0.414518 0.524209 0.491054 Vertex 13224 0.397745 0.281824 0.234555 Vertex 13225 0.378585 0.341951 0.393579 Vertex 13226 0.40307 0.261545 0.696339 Vertex 13227 0.401334 0.26081 0.698406 Vertex 13228 0.399273 0.2593 0.694272 Vertex 13229 0.508446 0.71984 0.501205 Vertex 13230 0.53293 0.105566 0.780968 Vertex 13231 0.546173 0.419242 0.536481 Vertex 13232 0.477115 0.364996 0.629206 Vertex 13233 0.537704 0.117292 0.79565 Vertex 13234 0.425576 0.23048 0.199061 Vertex 13235 0.516909 0.0729553 0.724614 Vertex 13236 0.428667 0.869589 0.375207 Vertex 13237 0.44428 0.515633 0.584075 Vertex 13238 0.386445 0.901867 0.364042 Vertex 13239 0.603084 0.442577 0.209206 Vertex 13240 0.467455 0.177135 0.680869 Vertex 13241 0.464956 0.174499 0.674502 Vertex 13242 0.490334 0.210989 0.489591 Vertex 13243 0.450712 0.565229 0.44956 Vertex 13244 0.443794 0.53025 0.44128 Vertex 13245 0.653166 0.48506 0.223675 Vertex 13246 0.554163 0.0223817 0.727937 Vertex 13247 0.352425 0.375396 0.430838 Vertex 13248 0.52693 0.0532033 0.654365 Vertex 13249 0.37229 0.371825 0.545619 Vertex 13250 0.40259 0.394911 0.273023 Vertex 13251 0.451884 0.657273 0.468305 Vertex 13252 0.524769 0.331959 0.507501 Vertex 13253 0.420068 0.264619 0.710601 Vertex 13254 0.632792 0.511155 0.195957 Vertex 13255 0.392261 0.382 0.614701 Vertex 13256 0.336434 0.267313 0.202081 Vertex 13257 0.345347 0.940122 0.305491 Vertex 13258 0.534209 0.131258 0.435499 Vertex 13259 0.49188 0.0589719 0.737146 Vertex 13260 0.427299 0.173096 0.501288 Vertex 13261 0.44072 0.555954 0.481252 Vertex 13262 0.405012 0.262889 0.70023 Vertex 13263 0.365556 0.408077 0.3768 Vertex 13264 0.525118 0.175737 0.453113 Vertex 13265 0.499882 0.254621 0.493032 Vertex 13266 0.455503 0.66685 0.453617 Vertex 13267 0.571877 0.406585 0.428724 Vertex 13268 0.475072 0.176347 0.689777 Vertex 13269 0.500776 0.50576 0.393816 Vertex 13270 0.502108 0.33787 0.60487 Vertex 13271 0.463428 0.207412 0.6525 Vertex 13272 0.500178 0.273052 0.464005 Vertex 13273 0.402318 0.359387 0.308482 Vertex 13274 0.535489 0.476792 0.582097 Vertex 13275 0.646852 0.428587 0.220821 Vertex 13276 0.550414 0.398945 0.470638 Vertex 13277 0.476345 0.616531 0.426728 Vertex 13278 0.475143 0.62095 0.427664 Vertex 13279 0.313572 0.979508 0.240987 Vertex 13280 0.551912 0.453723 0.368798 Vertex 13281 0.367854 0.197077 0.552827 Vertex 13282 0.406327 0.36361 0.246282 Vertex 13283 0.618714 0.506524 0.329424 Vertex 13284 0.428922 0.804848 0.397973 Vertex 13285 0.426168 0.283648 0.63976 Vertex 13286 0.516104 0.0230629 0.727024 Vertex 13287 0.37884 0.403049 0.563512 Vertex 13288 0.41267 0.177994 0.569665 Vertex 13289 0.459661 0.344024 0.412667 Vertex 13290 0.412475 0.466031 0.407112 Vertex 13291 0.482108 0.597271 0.422689 Vertex 13292 0.659142 0.452746 0.208555 Vertex 13293 0.513142 0.103392 0.797439 Vertex 13294 0.371603 0.420006 0.36441 Vertex 13295 0.374102 0.420722 0.366435 Vertex 13296 0.516826 0.335939 0.46901 Vertex 13297 0.548803 0.0657179 0.73932 Vertex 13298 0.467686 0.238666 0.609081 Vertex 13299 0.372627 0.370913 0.526359 Vertex 13300 0.372023 0.373838 0.529048 Vertex 13301 0.460703 0.124962 0.793287 Vertex 13302 0.431564 0.413171 0.396208 Vertex 13303 0.530774 0.403162 0.456146 Vertex 13304 0.531147 0.403239 0.46211 Vertex 13305 0.549898 0.0192013 0.774666 Vertex 13306 0.622102 0.537588 0.291875 Vertex 13307 0.504424 0.767636 0.468127 Vertex 13308 0.473502 0.112382 0.647288 Vertex 13309 0.470718 0.110926 0.643864 Vertex 13310 0.528008 0.0552999 0.79 Vertex 13311 0.529524 0.0536949 0.785925 Vertex 13312 0.384265 0.26787 0.198954 Vertex 13313 0.514226 0.381881 0.444176 Vertex 13314 0.508558 0.383332 0.44921 Vertex 13315 0.391378 0.277228 0.448073 Vertex 13316 0.488457 0.376829 0.429026 Vertex 13317 0.544136 0.0514679 0.797528 Vertex 13318 0.453785 0.41047 0.388373 Vertex 13319 0.451156 0.175003 0.607043 Vertex 13320 0.528115 0.0321541 0.771924 Vertex 13321 0.468705 0.739563 0.409659 Vertex 13322 0.366083 0.360672 0.362378 Vertex 13323 0.367954 0.35966 0.358303 Vertex 13324 0.598263 0.517167 0.356177 Vertex 13325 0.451333 0.235906 0.644297 Vertex 13326 0.45677 0.399241 0.627755 Vertex 13327 0.362725 0.0959175 0.468773 Vertex 13328 0.438381 0.777166 0.424673 Vertex 13329 0.309628 0.991134 0.225825 Vertex 13330 0.559114 0.450833 0.336988 Vertex 13331 0.371946 0.370539 0.517949 Vertex 13332 0.371342 0.369616 0.511534 Vertex 13333 0.379723 0.411335 0.295588 Vertex 13334 0.490506 0.50348 0.39134 Vertex 13335 0.486757 0.501715 0.392507 Vertex 13336 0.55716 0.514063 0.432958 Vertex 13337 0.492478 0.208975 0.482537 Vertex 13338 0.540766 0.0725704 0.72093 Vertex 13339 0.548672 0.426473 0.385423 Vertex 13340 0.680931 0.450951 0.207358 Vertex 13341 0.432257 0.101491 0.667887 Vertex 13342 0.464535 0.12514 0.813122 Vertex 13343 0.462829 0.126242 0.812542 Vertex 13344 0.36417 0.344604 0.402587 Vertex 13345 0.517128 0.325681 0.480044 Vertex 13346 0.510809 0.387247 0.446415 Vertex 13347 0.501309 0.530108 0.392536 Vertex 13348 0.519385 0.16038 0.791078 Vertex 13349 0.519343 0.165414 0.788863 Vertex 13350 0.575123 0.525707 0.472249 Vertex 13351 0.573518 0.524896 0.459776 Vertex 13352 0.47102 0.728037 0.416079 Vertex 13353 0.359728 0.321737 0.246199 Vertex 13354 0.490251 0.0801336 0.726752 Vertex 13355 0.532835 0.126188 0.441457 Vertex 13356 0.407849 0.462945 0.597212 Vertex 13357 0.365585 0.408711 0.534692 Vertex 13358 0.413209 0.821224 0.406123 Vertex 13359 0.47246 0.370765 0.412774 Vertex 13360 0.659776 0.431229 0.199007 Vertex 13361 0.521357 0.0289144 0.661005 Vertex 13362 0.464298 0.211178 0.654324 Vertex 13363 0.404473 0.453771 0.599231 Vertex 13364 0.417118 0.139378 0.672157 Vertex 13365 0.495226 0.141202 0.654389 Vertex 13366 0.352828 0.403623 0.494228 Vertex 13367 0.358259 0.395687 0.504818 Vertex 13368 0.37345 0.212677 0.484231 Vertex 13369 0.363092 0.331207 0.57255 Vertex 13370 0.381636 0.206363 0.47784 Vertex 13371 0.389323 0.203278 0.477331 Vertex 13372 0.494083 0.238316 0.505422 Vertex 13373 0.492982 0.463158 0.388402 Vertex 13374 0.439613 0.251115 0.696061 Vertex 13375 0.472252 0.101953 0.77684 Vertex 13376 0.452477 0.232263 0.65045 Vertex 13377 0.487432 0.23452 0.485256 Vertex 13378 0.507089 0.0873948 0.803812 Vertex 13379 0.506325 0.0901192 0.809243 Vertex 13380 0.529311 0.14395 0.789236 Vertex 13381 0.486253 0.522687 0.392211 Vertex 13382 0.503826 0.199866 0.473209 Vertex 13383 0.500965 0.750076 0.490918 Vertex 13384 0.439417 0.155144 0.588375 Vertex 13385 0.430326 0.110398 0.668544 Vertex 13386 0.449018 0.112276 0.747783 Vertex 13387 0.373699 0.260212 0.198303 Vertex 13388 0.453874 0.125211 0.766523 Vertex 13389 0.435022 0.277198 0.43252 Vertex 13390 0.494397 0.107964 0.806051 Vertex 13391 0.641629 0.43621 0.207554 Vertex 13392 0.487953 0.121699 0.800116 Vertex 13393 0.491377 0.115646 0.800655 Vertex 13394 0.618234 0.450051 0.197864 Vertex 13395 0.487041 0.196561 0.553052 Vertex 13396 0.437113 0.149689 0.749874 Vertex 13397 0.437374 0.261409 0.731052 Vertex 13398 0.534997 0.482407 0.404844 Vertex 13399 0.423503 0.52977 0.489129 Vertex 13400 0.347983 0.0892486 0.456098 Vertex 13401 0.418575 0.372612 0.313729 Vertex 13402 0.511099 0.170555 0.776929 Vertex 13403 0.460075 0.705898 0.476425 Vertex 13404 0.487669 0.511908 0.39134 Vertex 13405 0.540955 0.415232 0.540597 Vertex 13406 0.518171 0.290406 0.489265 Vertex 13407 0.655884 0.454813 0.214454 Vertex 13408 0.544219 0.466427 0.563452 Vertex 13409 0.446649 0.585277 0.507483 Vertex 13410 0.533801 0.487589 0.586249 Vertex 13411 0.488303 0.720747 0.50987 Vertex 13412 0.599542 0.432692 0.197 Vertex 13413 0.598346 0.432556 0.193405 Vertex 13414 0.324743 0.940892 0.234401 Vertex 13415 0.520392 0.0955562 0.719384 Vertex 13416 0.534997 0.066322 0.70822 Vertex 13417 0.359911 0.261888 0.220465 Vertex 13418 0.35101 0.0995066 0.455453 Vertex 13419 0.533339 0.156423 0.457911 Vertex 13420 0.324796 0.958968 0.226974 Vertex 13421 0.458944 0.437246 0.620411 Vertex 13422 0.455669 0.434706 0.623674 Vertex 13423 0.543158 0.148777 0.430957 Vertex 13424 0.491513 0.63883 0.403807 Vertex 13425 0.50536 0.537339 0.392945 Vertex 13426 0.533712 0.610668 0.441469 Vertex 13427 0.397793 0.326493 0.222728 Vertex 13428 0.434904 0.142671 0.607008 Vertex 13429 0.545273 0.124909 0.443222 Vertex 13430 0.474491 0.209793 0.48702 Vertex 13431 0.458381 0.201744 0.611941 Vertex 13432 0.526308 0.0153634 0.731508 Vertex 13433 0.465518 0.828178 0.422404 Vertex 13434 0.401767 0.217913 0.471977 Vertex 13435 0.357365 0.200056 0.470644 Vertex 13436 0.544521 0.511534 0.425135 Vertex 13437 0.638981 0.437181 0.213583 Vertex 13438 0.525544 0.0378873 0.73014 Vertex 13439 0.351655 0.395231 0.480328 Vertex 13440 0.528606 0.0679211 0.71804 Vertex 13441 0.428898 0.797285 0.409973 Vertex 13442 0.492999 0.521603 0.593433 Vertex 13443 0.371703 0.283441 0.588351 Vertex 13444 0.41748 0.388556 0.380051 Vertex 13445 0.510021 0.173872 0.77074 Vertex 13446 0.538805 0.660406 0.459137 Vertex 13447 0.377188 0.392957 0.563458 Vertex 13448 0.37377 0.360903 0.514004 Vertex 13449 0.373285 0.361407 0.509556 Vertex 13450 0.363802 0.195116 0.466374 Vertex 13451 0.380676 0.34663 0.455577 Vertex 13452 0.422081 0.849624 0.352156 Vertex 13453 0.492887 0.367418 0.619416 Vertex 13454 0.524917 0.0527709 0.72754 Vertex 13455 0.692445 0.464408 0.209727 Vertex 13456 0.414228 0.412271 0.314245 Vertex 13457 0.592986 0.420675 0.379329 Vertex 13458 0.483345 0.381123 0.415481 Vertex 13459 0.553026 0.400508 0.409996 Vertex 13460 0.450954 0.156749 0.63995 Vertex 13461 0.454911 0.16619 0.640139 Vertex 13462 0.586068 0.413556 0.36653 Vertex 13463 0.358709 0.236071 0.496757 Vertex 13464 0.363512 0.170336 0.482383 Vertex 13465 0.341569 0.086151 0.449548 Vertex 13466 0.342457 0.0873711 0.456418 Vertex 13467 0.470025 0.0635975 0.695889 Vertex 13468 0.600146 0.483733 0.394509 Vertex 13469 0.50273 0.774281 0.453427 Vertex 13470 0.502108 0.685258 0.41326 Vertex 13471 0.496464 0.687905 0.408409 Vertex 13472 0.405237 0.238192 0.741736 Vertex 13473 0.374481 0.229977 0.233495 Vertex 13474 0.409703 0.397553 0.293669 Vertex 13475 0.354682 0.31861 0.217528 Vertex 13476 0.588721 0.504297 0.28517 Vertex 13477 0.4966 0.0515745 0.685714 Vertex 13478 0.560541 0.520099 0.44324 Vertex 13479 0.42605 0.229663 0.211113 Vertex 13480 0.607899 0.531689 0.237386 Vertex 13481 0.600105 0.433628 0.363266 Vertex 13482 0.382234 0.237759 0.217528 Vertex 13483 0.528198 0.540289 0.578141 Vertex 13484 0.5527 0.557589 0.476709 Vertex 13485 0.397112 0.187583 0.576672 Vertex 13486 0.364797 0.927098 0.298496 Vertex 13487 0.495896 0.535462 0.38062 Vertex 13488 0.384188 0.390736 0.24659 Vertex 13489 0.375719 0.390256 0.245169 Vertex 13490 0.543484 0.164271 0.433924 Vertex 13491 0.391592 0.178758 0.488768 Vertex 13492 0.469753 0.217326 0.779002 Vertex 13493 0.445861 0.249794 0.74792 Vertex 13494 0.534428 0.583595 0.540745 Vertex 13495 0.5139 0.286722 0.509598 Vertex 13496 0.485436 0.58873 0.405744 Vertex 13497 0.501078 0.627174 0.4088 Vertex 13498 0.505129 0.625996 0.412241 Vertex 13499 0.470256 0.228319 0.473582 Vertex 13500 0.581976 0.416541 0.41631 Vertex 13501 0.49493 0.618284 0.404192 Vertex 13502 0.496968 0.620973 0.40604 Vertex 13503 0.542525 0.577448 0.4477 Vertex 13504 0.376122 0.331859 0.472522 Vertex 13505 0.366509 0.299059 0.579746 Vertex 13506 0.355736 0.269037 0.206654 Vertex 13507 0.626822 0.491664 0.285537 Vertex 13508 0.625714 0.488791 0.280977 Vertex 13509 0.606578 0.445947 0.195661 Vertex 13510 0.359283 0.32516 0.246175 Vertex 13511 0.496861 0.309287 0.607037 Vertex 13512 0.492958 0.210432 0.530274 Vertex 13513 0.465838 0.529486 0.421397 Vertex 13514 0.315823 0.959051 0.264619 Vertex 13515 0.357969 0.382249 0.379003 Vertex 13516 0.427216 0.191213 0.783088 Vertex 13517 0.445204 0.567018 0.463164 Vertex 13518 0.444682 0.56838 0.467707 Vertex 13519 0.528239 0.554728 0.420894 Vertex 13520 0.528008 0.549996 0.415943 Vertex 13521 0.49342 0.209603 0.486914 Vertex 13522 0.321195 0.997874 0.212144 Vertex 13523 0.420145 0.538832 0.553911 Vertex 13524 0.510572 0.141581 0.704637 Vertex 13525 0.485951 0.596631 0.556979 Vertex 13526 0.496885 0.504167 0.392998 Vertex 13527 0.483843 0.15104 0.796663 Vertex 13528 0.508843 0.19588 0.467979 Vertex 13529 0.519178 0.170815 0.445769 Vertex 13530 0.447188 0.305207 0.637148 Vertex 13531 0.538557 0.166391 0.437312 Vertex 13532 0.476333 0.0488501 0.657415 Vertex 13533 0.407595 0.423684 0.367904 Vertex 13534 0.507658 0.307167 0.584075 Vertex 13535 0.448816 0.326534 0.637859 Vertex 13536 0.457499 0.181393 0.629834 Vertex 13537 0.306714 0.96768 0.215437 Vertex 13538 0.402572 0.344652 0.216088 Vertex 13539 0.493023 0.515177 0.388728 Vertex 13540 0.491584 0.389149 0.428114 Vertex 13541 0.416028 0.267461 0.217095 Vertex 13542 0.59221 0.437649 0.190461 Vertex 13543 0.54702 0.603146 0.47652 Vertex 13544 0.363986 0.210503 0.220388 Vertex 13545 0.364377 0.206464 0.219577 Vertex 13546 0.475143 0.104588 0.784972 Vertex 13547 0.54256 0.146752 0.437241 Vertex 13548 0.482724 0.798866 0.421557 Vertex 13549 0.418409 0.823114 0.426674 Vertex 13550 0.480923 0.27981 0.614488 Vertex 13551 0.333147 0.917468 0.267325 Vertex 13552 0.608035 0.495946 0.218671 Vertex 13553 0.341379 0.950623 0.278259 Vertex 13554 0.416615 0.165059 0.716849 Vertex 13555 0.523625 0.352748 0.528177 Vertex 13556 0.523448 0.353287 0.542729 Vertex 13557 0.466057 0.577578 0.557121 Vertex 13558 0.422952 0.177248 0.49193 Vertex 13559 0.581241 0.423695 0.34538 Vertex 13560 0.464026 0.486203 0.405756 Vertex 13561 0.44948 0.608927 0.464781 Vertex 13562 0.488167 0.0676486 0.731218 Vertex 13563 0.453874 0.743567 0.455684 Vertex 13564 0.452968 0.741458 0.447238 Vertex 13565 0.611855 0.542682 0.271282 Vertex 13566 0.490897 0.5402 0.587789 Vertex 13567 0.362642 0.22236 0.49382 Vertex 13568 0.393582 0.484189 0.441226 Vertex 13569 0.676993 0.455222 0.193736 Vertex 13570 0.474077 0.764219 0.491705 Vertex 13571 0.496778 0.0472806 0.725502 Vertex 13572 0.360421 0.430702 0.520614 Vertex 13573 0.448011 0.212185 0.79648 Vertex 13574 0.452737 0.771012 0.463952 Vertex 13575 0.606987 0.505239 0.204036 Vertex 13576 0.4992 0.245743 0.524138 Vertex 13577 0.418202 0.396978 0.366364 Vertex 13578 0.386202 0.293888 0.19267 Vertex 13579 0.363951 0.366169 0.258797 Vertex 13580 0.402335 0.165941 0.636123 Vertex 13581 0.452062 0.15502 0.644285 Vertex 13582 0.382453 0.423814 0.385299 Vertex 13583 0.427418 0.540638 0.501442 Vertex 13584 0.430344 0.168026 0.546958 Vertex 13585 0.561602 0.489786 0.354151 Vertex 13586 0.495759 0.408142 0.407153 Vertex 13587 0.353005 0.18625 0.462163 Vertex 13588 0.495783 0.56289 0.383066 Vertex 13589 0.420737 0.372553 0.329235 Vertex 13590 0.530466 0.528455 0.418555 Vertex 13591 0.414003 0.380448 0.387798 Vertex 13592 0.459299 0.254035 0.622401 Vertex 13593 0.507083 0.455168 0.605468 Vertex 13594 0.437273 0.819163 0.449725 Vertex 13595 0.482143 0.173901 0.703743 Vertex 13596 0.562395 0.0148777 0.740682 Vertex 13597 0.471453 0.21684 0.483402 Vertex 13598 0.476665 0.19668 0.70164 Vertex 13599 0.600656 0.45566 0.21119 Vertex 13600 0.437326 0.202774 0.471112 Vertex 13601 0.646852 0.449755 0.192179 Vertex 13602 0.443255 0.340731 0.416932 Vertex 13603 0.38311 0.238914 0.224167 Vertex 13604 0.330049 0.916644 0.279757 Vertex 13605 0.551421 0.0139301 0.721676 Vertex 13606 0.406327 0.167481 0.618782 Vertex 13607 0.595053 0.440782 0.403387 Vertex 13608 0.35419 0.205741 0.481193 Vertex 13609 0.524087 0.338545 0.508632 Vertex 13610 0.591061 0.428623 0.208667 Vertex 13611 0.593306 0.429002 0.208418 Vertex 13612 0.443166 0.125466 0.667046 Vertex 13613 0.368837 0.207003 0.56501 Vertex 13614 0.406049 0.178035 0.716796 Vertex 13615 0.357181 0.917302 0.28276 Vertex 13616 0.443166 0.84989 0.416529 Vertex 13617 0.43658 0.284791 0.636976 Vertex 13618 0.44531 0.16279 0.614174 Vertex 13619 0.551284 0.564797 0.513767 Vertex 13620 0.655423 0.503361 0.206565 Vertex 13621 0.391829 0.287332 0.446977 Vertex 13622 0.37409 0.382101 0.56347 Vertex 13623 0.372284 0.378979 0.555167 Vertex 13624 0.54211 0.161239 0.447564 Vertex 13625 0.384484 0.0720847 0.468417 Vertex 13626 0.516447 0.342057 0.463987 Vertex 13627 0.516607 0.342229 0.465883 Vertex 13628 0.595088 0.460807 0.429908 Vertex 13629 0.645324 0.434883 0.200233 Vertex 13630 0.561957 0.52521 0.524043 Vertex 13631 0.561086 0.528716 0.524067 Vertex 13632 0.463451 0.183881 0.669782 Vertex 13633 0.539706 0.613736 0.521982 Vertex 13634 0.509103 0.100863 0.705211 Vertex 13635 0.624411 0.517617 0.289997 Vertex 13636 0.394073 0.464064 0.589844 Vertex 13637 0.356263 0.295967 0.551086 Vertex 13638 0.358928 0.303311 0.560331 Vertex 13639 0.450996 0.244559 0.451698 Vertex 13640 0.414945 0.151146 0.646743 Vertex 13641 0.408086 0.874511 0.338539 Vertex 13642 0.618086 0.510776 0.321701 Vertex 13643 0.519888 0.445775 0.413686 Vertex 13644 0.569396 0.480121 0.515834 Vertex 13645 0.508653 0.269718 0.515935 Vertex 13646 0.453702 0.09542 0.744455 Vertex 13647 0.506787 0.544287 0.582381 Vertex 13648 0.495759 0.544903 0.584602 Vertex 13649 0.45205 0.757852 0.455832 Vertex 13650 0.400328 0.298283 0.211516 Vertex 13651 0.4014 0.297507 0.21761 Vertex 13652 0.463303 0.21058 0.476875 Vertex 13653 0.383152 0.35087 0.372689 Vertex 13654 0.379823 0.34801 0.379453 Vertex 13655 0.36661 0.454754 0.525571 Vertex 13656 0.47102 0.211617 0.704341 Vertex 13657 0.491993 0.530434 0.384333 Vertex 13658 0.489854 0.58006 0.397991 Vertex 13659 0.475095 0.536646 0.409671 Vertex 13660 0.488095 0.674917 0.405685 Vertex 13661 0.458832 0.697921 0.447392 Vertex 13662 0.506094 0.636307 0.413698 Vertex 13663 0.502979 0.636272 0.409943 Vertex 13664 0.342434 0.93019 0.313729 Vertex 13665 0.472205 0.183395 0.48631 Vertex 13666 0.438315 0.533348 0.457757 Vertex 13667 0.616617 0.492653 0.184461 Vertex 13668 0.330825 0.240638 0.219547 Vertex 13669 0.529501 0.461754 0.406478 Vertex 13670 0.526451 0.457727 0.407479 Vertex 13671 0.50135 0.699798 0.413959 Vertex 13672 0.446856 0.583045 0.515799 Vertex 13673 0.551675 0.0597656 0.743644 Vertex 13674 0.551604 0.0567154 0.736092 Vertex 13675 0.348765 0.919345 0.324568 Vertex 13676 0.6184 0.471124 0.216467 Vertex 13677 0.444682 0.411649 0.401254 Vertex 13678 0.496535 0.183395 0.776941 Vertex 13679 0.360462 0.123482 0.460226 Vertex 13680 0.529459 0.535272 0.419775 Vertex 13681 0.453922 0.342265 0.414095 Vertex 13682 0.553624 0.0126745 0.771385 Vertex 13683 0.35326 0.303134 0.235296 Vertex 13684 0.552238 0.460576 0.374703 Vertex 13685 0.529459 0.170105 0.455927 Vertex 13686 0.545231 0.0365902 0.71345 Vertex 13687 0.543851 0.0382189 0.717696 Vertex 13688 0.403923 0.366921 0.360317 Vertex 13689 0.519586 0.469152 0.598213 Vertex 13690 0.516323 0.472771 0.601434 Vertex 13691 0.517247 0.469803 0.600214 Vertex 13692 0.429147 0.439011 0.393555 Vertex 13693 0.357447 0.415196 0.448434 Vertex 13694 0.590842 0.443489 0.191308 Vertex 13695 0.445648 0.137382 0.758172 Vertex 13696 0.401109 0.336721 0.242012 Vertex 13697 0.320111 0.933074 0.25882 Vertex 13698 0.448467 0.599918 0.465693 Vertex 13699 0.449296 0.605296 0.46426 Vertex 13700 0.462788 0.199606 0.636331 Vertex 13701 0.494764 0.560165 0.579373 Vertex 13702 0.398918 0.316027 0.220874 Vertex 13703 0.542383 0.632143 0.46481 Vertex 13704 0.548376 0.589956 0.491214 Vertex 13705 0.346218 0.134906 0.461097 Vertex 13706 0.501297 0.166924 0.716541 Vertex 13707 0.572345 0.532015 0.478456 Vertex 13708 0.523489 0.0495075 0.778492 Vertex 13709 0.410248 0.871976 0.340743 Vertex 13710 0.521807 0.0666714 0.780879 Vertex 13711 0.408222 0.174257 0.540733 Vertex 13712 0.529815 0.421386 0.571667 Vertex 13713 0.356002 0.360903 0.434889 Vertex 13714 0.428454 0.161227 0.760339 Vertex 13715 0.594046 0.444129 0.190816 Vertex 13716 0.611103 0.482288 0.384523 Vertex 13717 0.486917 0.606084 0.410038 Vertex 13718 0.475397 0.184141 0.563482 Vertex 13719 0.475841 0.188045 0.796799 Vertex 13720 0.543295 0.0172172 0.766392 Vertex 13721 0.330274 0.933637 0.243777 Vertex 13722 0.51091 0.745521 0.484734 Vertex 13723 0.360989 0.238956 0.220957 Vertex 13724 0.361889 0.242574 0.221419 Vertex 13725 0.398876 0.51481 0.519962 Vertex 13726 0.452767 0.281919 0.431395 Vertex 13727 0.320514 0.933299 0.279485 Vertex 13728 0.448491 0.47492 0.615744 Vertex 13729 0.528239 0.58337 0.429594 Vertex 13730 0.546043 0.439426 0.377818 Vertex 13731 0.488984 0.174351 0.475732 Vertex 13732 0.482629 0.668538 0.414675 Vertex 13733 0.442556 0.551056 0.461097 Vertex 13734 0.41212 0.311994 0.636206 Vertex 13735 0.374126 0.23327 0.202543 Vertex 13736 0.477464 0.722156 0.407983 Vertex 13737 0.417746 0.140657 0.67651 Vertex 13738 0.549904 0.574196 0.482111 Vertex 13739 0.403597 0.187079 0.478729 Vertex 13740 0.421951 0.246205 0.44937 Vertex 13741 0.523655 0.463081 0.594025 Vertex 13742 0.395773 0.888139 0.325942 Vertex 13743 0.527161 0.0560047 0.789147 Vertex 13744 0.534565 0.436642 0.399963 Vertex 13745 0.434975 0.455879 0.406206 Vertex 13746 0.554258 0.0499932 0.736744 Vertex 13747 0.555673 0.0483348 0.746842 Vertex 13748 0.508606 0.0406709 0.629697 Vertex 13749 0.514445 0.0390067 0.629976 Vertex 13750 0.382133 0.865455 0.362325 Vertex 13751 0.386972 0.169347 0.515805 Vertex 13752 0.652206 0.435381 0.229497 Vertex 13753 0.356334 0.323182 0.536202 Vertex 13754 0.354054 0.377096 0.416322 Vertex 13755 0.48931 0.513406 0.390469 Vertex 13756 0.49509 0.243113 0.497125 Vertex 13757 0.454763 0.819548 0.458894 Vertex 13758 0.545498 0.0540798 0.791072 Vertex 13759 0.54147 0.153634 0.432141 Vertex 13760 0.488095 0.0956984 0.650539 Vertex 13761 0.473603 0.108154 0.786891 Vertex 13762 0.470487 0.269067 0.440984 Vertex 13763 0.37306 0.191557 0.470099 Vertex 13764 0.522388 0.392477 0.493121 Vertex 13765 0.468077 0.388053 0.396848 Vertex 13766 0.512663 0.27679 0.48798 Vertex 13767 0.46065 0.796657 0.380567 Vertex 13768 0.385604 0.422961 0.590472 Vertex 13769 0.57427 0.405163 0.378991 Vertex 13770 0.406564 0.37574 0.374839 Vertex 13771 0.409288 0.378008 0.37889 Vertex 13772 0.407174 0.375189 0.378879 Vertex 13773 0.432405 0.787827 0.416594 Vertex 13774 0.551604 0.44709 0.360412 Vertex 13775 0.337482 0.108426 0.465859 Vertex 13776 0.473455 0.0731982 0.741659 Vertex 13777 0.456569 0.148463 0.793542 Vertex 13778 0.390745 0.884893 0.388959 Vertex 13779 0.524609 0.13692 0.754233 Vertex 13780 0.511579 0.0748328 0.683765 Vertex 13781 0.458968 0.707746 0.442832 Vertex 13782 0.457677 0.703393 0.447279 Vertex 13783 0.385574 0.890608 0.315228 Vertex 13784 0.494794 0.39975 0.414503 Vertex 13785 0.414826 0.485202 0.424797 Vertex 13786 0.416283 0.488436 0.428961 Vertex 13787 0.551196 0.434901 0.37016 Vertex 13788 0.522731 0.548344 0.410121 Vertex 13789 0.602391 0.528509 0.256783 Vertex 13790 0.473087 0.118364 0.812086 Vertex 13791 0.468728 0.121794 0.815337 Vertex 13792 0.467721 0.121521 0.807904 Vertex 13793 0.37743 0.424359 0.362242 Vertex 13794 0.4387 0.412484 0.407615 Vertex 13795 0.40487 0.416618 0.303613 Vertex 13796 0.402175 0.419662 0.30452 Vertex 13797 0.365111 0.411376 0.313048 Vertex 13798 0.442805 0.357924 0.64313 Vertex 13799 0.518076 0.0218428 0.743644 Vertex 13800 0.496369 0.428961 0.387028 Vertex 13801 0.432351 0.844672 0.440563 Vertex 13802 0.60325 0.540437 0.264536 Vertex 13803 0.60001 0.538163 0.268723 Vertex 13804 0.351614 0.378055 0.454321 Vertex 13805 0.601017 0.436352 0.207737 Vertex 13806 0.413091 0.440279 0.385583 Vertex 13807 0.33564 0.91148 0.278016 Vertex 13808 0.609095 0.502028 0.242308 Vertex 13809 0.42098 0.866705 0.407769 Vertex 13810 0.325643 0.9333 0.245038 Vertex 13811 0.384028 0.488608 0.472439 Vertex 13812 0.385491 0.303412 0.615335 Vertex 13813 0.60473 0.453445 0.211925 Vertex 13814 0.377804 0.904195 0.305722 Vertex 13815 0.379782 0.907861 0.310164 Vertex 13816 0.455781 0.325202 0.636526 Vertex 13817 0.513575 0.172527 0.770692 Vertex 13818 0.663329 0.419182 0.217646 Vertex 13819 0.422437 0.416405 0.380798 Vertex 13820 0.448787 0.52903 0.434901 Vertex 13821 0.524336 0.136577 0.723133 Vertex 13822 0.524159 0.137027 0.729666 Vertex 13823 0.482949 0.0836695 0.714942 Vertex 13824 0.488267 0.0868558 0.722979 Vertex 13825 0.591612 0.504404 0.267325 Vertex 13826 0.508232 0.37558 0.450353 Vertex 13827 0.356002 0.269161 0.551311 Vertex 13828 0.416834 0.471468 0.408788 Vertex 13829 0.534357 0.477692 0.403689 Vertex 13830 0.644951 0.473475 0.190384 Vertex 13831 0.478181 0.560758 0.412146 Vertex 13832 0.511443 0.363332 0.449317 Vertex 13833 0.546913 0.0237499 0.725639 Vertex 13834 0.530632 0.0130002 0.730329 Vertex 13835 0.458269 0.109279 0.762395 Vertex 13836 0.457327 0.196668 0.60067 Vertex 13837 0.340242 0.0937913 0.461979 Vertex 13838 0.456699 0.8003 0.472522 Vertex 13839 0.51778 0.45704 0.409143 Vertex 13840 0.514676 0.105625 0.69583 Vertex 13841 0.481942 0.5636 0.40174 Vertex 13842 0.48058 0.562049 0.405957 Vertex 13843 0.447294 0.241728 0.662912 Vertex 13844 0.530442 0.044497 0.658114 Vertex 13845 0.609279 0.449838 0.349964 Vertex 13846 0.526646 0.395622 0.42995 Vertex 13847 0.384496 0.214039 0.689866 Vertex 13848 0.356701 0.302405 0.513773 Vertex 13849 0.383632 0.897467 0.370557 Vertex 13850 0.375056 0.402729 0.544986 Vertex 13851 0.459661 0.293687 0.633914 Vertex 13852 0.505348 0.106306 0.797563 Vertex 13853 0.432405 0.144235 0.61129 Vertex 13854 0.537798 0.564412 0.555238 Vertex 13855 0.639212 0.502603 0.249338 Vertex 13856 0.364341 0.3431 0.230457 Vertex 13857 0.367107 0.347412 0.225961 Vertex 13858 0.540274 0.0539969 0.799506 Vertex 13859 0.598772 0.536048 0.284039 Vertex 13860 0.372023 0.878514 0.323034 Vertex 13861 0.346988 0.945269 0.280746 Vertex 13862 0.514771 0.523557 0.400165 Vertex 13863 0.455325 0.515899 0.587883 Vertex 13864 0.612809 0.520851 0.315595 Vertex 13865 0.485596 0.0597064 0.695392 Vertex 13866 0.400837 0.366915 0.37895 Vertex 13867 0.452956 0.228727 0.781791 Vertex 13868 0.50661 0.735766 0.427065 Vertex 13869 0.485981 0.389356 0.622134 Vertex 13870 0.628788 0.469537 0.184621 Vertex 13871 0.524656 0.0718656 0.791475 Vertex 13872 0.447478 0.323863 0.418703 Vertex 13873 0.457919 0.323863 0.418377 Vertex 13874 0.343719 0.253768 0.215988 Vertex 13875 0.518852 0.381171 0.507483 Vertex 13876 0.53505 0.0590845 0.801342 Vertex 13877 0.600146 0.474559 0.397428 Vertex 13878 0.350346 0.193227 0.480559 Vertex 13879 0.553713 0.436263 0.364463 Vertex 13880 0.386913 0.24325 0.638036 Vertex 13881 0.599359 0.519003 0.266686 Vertex 13882 0.367794 0.344717 0.422446 Vertex 13883 0.536922 0.0232524 0.768536 Vertex 13884 0.598725 0.524961 0.20695 Vertex 13885 0.452417 0.232559 0.671209 Vertex 13886 0.497974 0.381508 0.443921 Vertex 13887 0.350737 0.381289 0.448571 Vertex 13888 0.375251 0.38521 0.517593 Vertex 13889 0.455077 0.183218 0.478024 Vertex 13890 0.484607 0.420651 0.376373 Vertex 13891 0.430859 0.546626 0.505695 Vertex 13892 0.333236 0.930089 0.301694 Vertex 13893 0.535228 0.40296 0.444762 Vertex 13894 0.3228 0.932784 0.248379 Vertex 13895 0.475759 0.193813 0.697186 Vertex 13896 0.55087 0.557062 0.458094 Vertex 13897 0.451262 0.355762 0.412596 Vertex 13898 0.437587 0.418809 0.638119 Vertex 13899 0.384413 0.436861 0.402125 Vertex 13900 0.442029 0.541195 0.451603 Vertex 13901 0.419801 0.148197 0.647613 Vertex 13902 0.550668 0.564062 0.526063 Vertex 13903 0.545918 0.619001 0.477035 Vertex 13904 0.545456 0.622116 0.47973 Vertex 13905 0.465323 0.173504 0.487388 Vertex 13906 0.495297 0.189857 0.534461 Vertex 13907 0.492425 0.192641 0.54065 Vertex 13908 0.433127 0.461837 0.409682 Vertex 13909 0.38805 0.258607 0.459634 Vertex 13910 0.390934 0.494086 0.472338 Vertex 13911 0.533623 0.12129 0.436044 Vertex 13912 0.381428 0.868831 0.327239 Vertex 13913 0.459987 0.398335 0.388236 Vertex 13914 0.359591 0.220892 0.551613 Vertex 13915 0.420796 0.249155 0.756051 Vertex 13916 0.466792 0.43303 0.615519 Vertex 13917 0.504175 0.15467 0.70366 Vertex 13918 0.526658 0.490059 0.413781 Vertex 13919 0.528168 0.491936 0.413497 Vertex 13920 0.448396 0.783059 0.460333 Vertex 13921 0.461597 0.207891 0.635709 Vertex 13922 0.467917 0.691133 0.495099 Vertex 13923 0.487651 0.485682 0.38983 Vertex 13924 0.494154 0.486215 0.392424 Vertex 13925 0.491667 0.486807 0.391038 Vertex 13926 0.538859 0.0187689 0.732142 Vertex 13927 0.377063 0.226021 0.587966 Vertex 13928 0.5259 0.053452 0.664351 Vertex 13929 0.477411 0.706816 0.499132 Vertex 13930 0.384022 0.247686 0.21889 Vertex 13931 0.361131 0.377558 0.335448 Vertex 13932 0.408601 0.414687 0.307013 Vertex 13933 0.383934 0.0815787 0.468334 Vertex 13934 0.354788 0.0918842 0.449352 Vertex 13935 0.529063 0.397612 0.445408 Vertex 13936 0.448816 0.0899593 0.704364 Vertex 13937 0.383312 0.873125 0.376782 Vertex 13938 0.344595 0.902395 0.294256 Vertex 13939 0.488439 0.700799 0.511795 Vertex 13940 0.516216 0.105625 0.685625 Vertex 13941 0.582112 0.513465 0.364487 Vertex 13942 0.580832 0.510883 0.370676 Vertex 13943 0.374961 0.222349 0.231049 Vertex 13944 0.374309 0.215585 0.226725 Vertex 13945 0.525029 0.343781 0.507258 Vertex 13946 0.524384 0.335347 0.503693 Vertex 13947 0.561152 0.507045 0.414675 Vertex 13948 0.620733 0.486985 0.323893 Vertex 13949 0.416573 0.457022 0.600588 Vertex 13950 0.524769 0.397037 0.522029 Vertex 13951 0.53033 0.133177 0.793317 Vertex 13952 0.396022 0.493909 0.455737 Vertex 13953 0.399966 0.497202 0.45348 Vertex 13954 0.470795 0.470781 0.39086 Vertex 13955 0.470002 0.465835 0.389788 Vertex 13956 0.525071 0.32365 0.512435 Vertex 13957 0.566565 0.428167 0.490965 Vertex 13958 0.387831 0.198776 0.601103 Vertex 13959 0.372544 0.352013 0.486926 Vertex 13960 0.357074 0.0856062 0.439811 Vertex 13961 0.518645 0.674988 0.42825 Vertex 13962 0.406576 0.271163 0.199659 Vertex 13963 0.457345 0.188524 0.631137 Vertex 13964 0.538805 0.0814425 0.727107 Vertex 13965 0.378609 0.876412 0.3155 Vertex 13966 0.381345 0.245998 0.601026 Vertex 13967 0.381452 0.242438 0.600451 Vertex 13968 0.529447 0.542616 0.418797 Vertex 13969 0.465068 0.0672933 0.654993 Vertex 13970 0.51287 0.132863 0.704684 Vertex 13971 0.515713 0.13666 0.704803 Vertex 13972 0.415501 0.370948 0.305461 Vertex 13973 0.599211 0.460902 0.19623 Vertex 13974 0.500438 0.572295 0.394343 Vertex 13975 0.486627 0.222633 0.573841 Vertex 13976 0.489037 0.221774 0.565425 Vertex 13977 0.382441 0.215549 0.642182 Vertex 13978 0.455722 0.206813 0.473345 Vertex 13979 0.594141 0.502982 0.260727 Vertex 13980 0.464298 0.739699 0.476389 Vertex 13981 0.500344 0.556606 0.57942 Vertex 13982 0.569941 0.519044 0.503397 Vertex 13983 0.37056 0.3198 0.480737 Vertex 13984 0.39569 0.360453 0.360258 Vertex 13985 0.486579 0.781862 0.416132 Vertex 13986 0.323807 0.990873 0.207329 Vertex 13987 0.582793 0.48644 0.306533 Vertex 13988 0.376329 0.266946 0.466333 Vertex 13989 0.401672 0.301475 0.227762 Vertex 13990 0.40169 0.296062 0.2317 Vertex 13991 0.537135 0.527502 0.573799 Vertex 13992 0.354616 0.168364 0.452557 Vertex 13993 0.40731 0.34663 0.228739 Vertex 13994 0.497353 0.32917 0.611171 Vertex 13995 0.585559 0.515722 0.360246 Vertex 13996 0.405095 0.355715 0.254532 Vertex 13997 0.640971 0.438686 0.198273 Vertex 13998 0.360119 0.205659 0.475542 Vertex 13999 0.546499 0.494477 0.403564 Vertex 14000 0.402483 0.258814 0.710423 Vertex 14001 0.312814 0.945944 0.264429 Vertex 14002 0.380398 0.263547 0.23173 Vertex 14003 0.55219 0.398258 0.457792 Vertex 14004 0.400985 0.338089 0.441908 Vertex 14005 0.36112 0.384067 0.31887 Vertex 14006 0.549348 0.513453 0.428493 Vertex 14007 0.583989 0.407343 0.380744 Vertex 14008 0.358721 0.332131 0.543629 Vertex 14009 0.649547 0.506719 0.2187 Vertex 14010 0.536792 0.0549445 0.793453 Vertex 14011 0.367966 0.211984 0.568031 Vertex 14012 0.476333 0.166735 0.671026 Vertex 14013 0.428952 0.260171 0.662912 Vertex 14014 0.554441 0.0288374 0.780334 Vertex 14015 0.362174 0.223504 0.216278 Vertex 14016 0.518947 0.341513 0.565496 Vertex 14017 0.541133 0.555783 0.555143 Vertex 14018 0.541909 0.560527 0.54893 Vertex 14019 0.485229 0.293415 0.618136 Vertex 14020 0.420198 0.274261 0.436003 Vertex 14021 0.361522 0.313001 0.200636 Vertex 14022 0.526812 0.0965098 0.718194 Vertex 14023 0.530413 0.0966993 0.719846 Vertex 14024 0.527529 0.100484 0.718816 Vertex 14025 0.531272 0.100129 0.720379 Vertex 14026 0.614876 0.540668 0.265104 Vertex 14027 0.360604 0.18131 0.453249 Vertex 14028 0.51438 0.584152 0.412815 Vertex 14029 0.523205 0.159959 0.790332 Vertex 14030 0.351768 0.131151 0.472984 Vertex 14031 0.496494 0.348341 0.615282 Vertex 14032 0.370258 0.923029 0.305515 Vertex 14033 0.662601 0.420349 0.211546 Vertex 14034 0.356494 0.382237 0.403849 Vertex 14035 0.489351 0.174428 0.707201 Vertex 14036 0.508925 0.137258 0.698009 Vertex 14037 0.604138 0.478752 0.204308 Vertex 14038 0.519107 0.605717 0.426017 Vertex 14039 0.693997 0.453723 0.216005 Vertex 14040 0.525965 0.659891 0.517907 Vertex 14041 0.358733 0.38091 0.485368 Vertex 14042 0.357803 0.930752 0.287427 Vertex 14043 0.444789 0.356047 0.415694 Vertex 14044 0.494522 0.241633 0.5013 Vertex 14045 0.539753 0.634566 0.453569 Vertex 14046 0.418546 0.470431 0.597342 Vertex 14047 0.416899 0.475015 0.595713 Vertex 14048 0.48832 0.604153 0.402243 Vertex 14049 0.477334 0.738301 0.491344 Vertex 14050 0.466081 0.731194 0.480612 Vertex 14051 0.613176 0.535527 0.247698 Vertex 14052 0.333443 0.267396 0.230753 Vertex 14053 0.336748 0.263896 0.232328 Vertex 14054 0.330233 0.262119 0.235076 Vertex 14055 0.439553 0.361809 0.64759 Vertex 14056 0.524757 0.0575268 0.668787 Vertex 14057 0.43905 0.777166 0.430601 Vertex 14058 0.513764 0.321139 0.469282 Vertex 14059 0.383134 0.342934 0.401539 Vertex 14060 0.38712 0.318693 0.204391 Vertex 14061 0.494492 0.733308 0.409588 Vertex 14062 0.518171 0.0519003 0.667514 Vertex 14063 0.410272 0.888707 0.359784 Vertex 14064 0.578996 0.499375 0.419342 Vertex 14065 0.575188 0.502668 0.420402 Vertex 14066 0.488919 0.0967822 0.649858 Vertex 14067 0.411474 0.867119 0.415753 Vertex 14068 0.42419 0.235675 0.214951 Vertex 14069 0.380558 0.422227 0.30818 Vertex 14070 0.548856 0.557613 0.536528 Vertex 14071 0.457073 0.312332 0.420935 Vertex 14072 0.499242 0.437158 0.390179 Vertex 14073 0.50257 0.432402 0.399199 Vertex 14074 0.502559 0.437181 0.393555 Vertex 14075 0.463659 0.140249 0.802538 Vertex 14076 0.498644 0.54007 0.38489 Vertex 14077 0.472045 0.68187 0.505695 Vertex 14078 0.632135 0.518908 0.240111 Vertex 14079 0.413541 0.438769 0.38463 Vertex 14080 0.376749 0.427095 0.400502 Vertex 14081 0.517614 0.295807 0.502941 Vertex 14082 0.376145 0.393259 0.262848 Vertex 14083 0.542436 0.165669 0.438313 Vertex 14084 0.476416 0.562641 0.416268 Vertex 14085 0.427702 0.858081 0.418116 Vertex 14086 0.398959 0.323188 0.443661 Vertex 14087 0.42621 0.249356 0.2196 Vertex 14088 0.542471 0.13541 0.45518 Vertex 14089 0.375358 0.244517 0.593297 Vertex 14090 0.484169 0.509846 0.395592 Vertex 14091 0.484714 0.508259 0.395977 Vertex 14092 0.482345 0.0934418 0.64942 Vertex 14093 0.356589 0.373566 0.393484 Vertex 14094 0.557799 0.487346 0.381135 Vertex 14095 0.420393 0.873687 0.357978 Vertex 14096 0.453513 0.409013 0.628738 Vertex 14097 0.49342 0.235852 0.561498 Vertex 14098 0.350506 0.174351 0.474263 Vertex 14099 0.581431 0.506938 0.459824 Vertex 14100 0.476943 0.590614 0.555948 Vertex 14101 0.561223 0.476798 0.536528 Vertex 14102 0.455787 0.238002 0.762418 Vertex 14103 0.498519 0.251233 0.563494 Vertex 14104 0.523288 0.512802 0.412365 Vertex 14105 0.432624 0.554509 0.514004 Vertex 14106 0.51608 0.495093 0.407823 Vertex 14107 0.55559 0.553034 0.490645 Vertex 14108 0.424498 0.391026 0.417299 Vertex 14109 0.400316 0.446628 0.391364 Vertex 14110 0.368789 0.213056 0.482804 Vertex 14111 0.53399 0.398258 0.426349 Vertex 14112 0.425374 0.479872 0.420106 Vertex 14113 0.425084 0.549635 0.524096 Vertex 14114 0.457511 0.748636 0.466019 Vertex 14115 0.392391 0.853615 0.370759 Vertex 14116 0.592713 0.442079 0.185539 Vertex 14117 0.513142 0.188684 0.461476 Vertex 14118 0.315503 0.989837 0.20002 Vertex 14119 0.31192 0.98299 0.200991 Vertex 14120 0.304173 0.986887 0.203935 Vertex 14121 0.509997 0.106247 0.797338 Vertex 14122 0.457712 0.207264 0.596021 Vertex 14123 0.484518 0.0478196 0.677025 Vertex 14124 0.439891 0.161754 0.782899 Vertex 14125 0.498786 0.250612 0.505327 Vertex 14126 0.498804 0.251399 0.50345 Vertex 14127 0.374333 0.458408 0.445378 Vertex 14128 0.378905 0.464988 0.445266 Vertex 14129 0.472779 0.249699 0.608998 Vertex 14130 0.538059 0.0699881 0.794519 Vertex 14131 0.538716 0.0686555 0.796622 Vertex 14132 0.540085 0.0658541 0.795609 Vertex 14133 0.442213 0.346908 0.643811 Vertex 14134 0.398539 0.30956 0.217812 Vertex 14135 0.355682 0.242734 0.52579 Vertex 14136 0.477642 0.490118 0.398613 Vertex 14137 0.398782 0.336028 0.204284 Vertex 14138 0.475978 0.162624 0.664517 Vertex 14139 0.523874 0.36425 0.526199 Vertex 14140 0.500041 0.318728 0.4477 Vertex 14141 0.513723 0.179338 0.453723 Vertex 14142 0.516471 0.178687 0.453984 Vertex 14143 0.619555 0.465261 0.187038 Vertex 14144 0.622451 0.47556 0.186712 Vertex 14145 0.621302 0.472605 0.186789 Vertex 14146 0.624305 0.470129 0.186386 Vertex 14147 0.537704 0.115101 0.791356 Vertex 14148 0.463931 0.200299 0.584188 Vertex 14149 0.324778 0.923171 0.277838 Vertex 14150 0.385811 0.273609 0.228094 Vertex 14151 0.497678 0.0484415 0.635164 Vertex 14152 0.643423 0.480606 0.22743 Vertex 14153 0.38513 0.271637 0.197805 Vertex 14154 0.490157 0.302802 0.441771 Vertex 14155 0.491596 0.306527 0.442855 Vertex 14156 0.426334 0.52258 0.575464 Vertex 14157 0.386569 0.34673 0.386756 Vertex 14158 0.433169 0.345262 0.422825 Vertex 14159 0.49573 0.0336703 0.668289 Vertex 14160 0.629825 0.448997 0.193239 Vertex 14161 0.5311 0.400188 0.478439 Vertex 14162 0.486644 0.214134 0.495182 Vertex 14163 0.454816 0.11211 0.652926 Vertex 14164 0.526913 0.109978 0.718514 Vertex 14165 0.476759 0.774151 0.491154 Vertex 14166 0.660634 0.482578 0.191503 Vertex 14167 0.478453 0.202638 0.482845 Vertex 14168 0.560233 0.546573 0.484634 Vertex 14169 0.385817 0.864833 0.374881 Vertex 14170 0.495161 0.495733 0.391843 Vertex 14171 0.445044 0.119235 0.664837 Vertex 14172 0.487924 0.517653 0.39134 Vertex 14173 0.662269 0.436198 0.211978 Vertex 14174 0.533422 0.0915643 0.789372 Vertex 14175 0.424184 0.121332 0.69583 Vertex 14176 0.343363 0.117168 0.47174 Vertex 14177 0.567524 0.534331 0.50066 Vertex 14178 0.570823 0.536356 0.48785 Vertex 14179 0.570415 0.536605 0.485877 Vertex 14180 0.438375 0.152058 0.592539 Vertex 14181 0.437356 0.151964 0.590436 Vertex 14182 0.382974 0.231706 0.627773 Vertex 14183 0.486046 0.370575 0.627441 Vertex 14184 0.532788 0.133017 0.43897 Vertex 14185 0.532551 0.131015 0.438236 Vertex 14186 0.457837 0.227229 0.696061 Vertex 14187 0.482137 0.482389 0.389368 Vertex 14188 0.518947 0.429547 0.421557 Vertex 14189 0.45025 0.237321 0.658778 Vertex 14190 0.433394 0.834284 0.356574 Vertex 14191 0.675494 0.453048 0.191172 Vertex 14192 0.588769 0.425099 0.410257 Vertex 14193 0.534665 0.100508 0.793317 Vertex 14194 0.552516 0.451609 0.370842 Vertex 14195 0.548258 0.452302 0.373264 Vertex 14196 0.373747 0.384937 0.511428 Vertex 14197 0.45741 0.244067 0.621595 Vertex 14198 0.55668 0.516373 0.54065 Vertex 14199 0.419825 0.151786 0.708498 Vertex 14200 0.505781 0.265614 0.511795 Vertex 14201 0.397988 0.432419 0.379696 Vertex 14202 0.454236 0.50685 0.592616 Vertex 14203 0.376453 0.335483 0.472386 Vertex 14204 0.373415 0.379216 0.57178 Vertex 14205 0.373563 0.377279 0.573882 Vertex 14206 0.580915 0.495934 0.401456 Vertex 14207 0.53142 0.433349 0.577927 Vertex 14208 0.529667 0.431703 0.58003 Vertex 14209 0.528056 0.429073 0.582073 Vertex 14210 0.632318 0.502034 0.263067 Vertex 14211 0.355001 0.355117 0.399691 Vertex 14212 0.54086 0.14841 0.446788 Vertex 14213 0.600691 0.494495 0.387964 Vertex 14214 0.539534 0.620665 0.517854 Vertex 14215 0.509358 0.283251 0.478912 Vertex 14216 0.636316 0.486333 0.188287 Vertex 14217 0.401032 0.404844 0.28751 Vertex 14218 0.470499 0.198504 0.688012 Vertex 14219 0.570266 0.519637 0.445319 Vertex 14220 0.567435 0.518132 0.441173 Vertex 14221 0.454923 0.676593 0.461968 Vertex 14222 0.447821 0.157786 0.519933 Vertex 14223 0.53187 0.0111228 0.743709 Vertex 14224 0.501196 0.406608 0.429476 Vertex 14225 0.429307 0.392222 0.641045 Vertex 14226 0.494379 0.322359 0.615282 Vertex 14227 0.389459 0.192196 0.685714 Vertex 14228 0.545628 0.145218 0.413656 Vertex 14229 0.547387 0.146983 0.418347 Vertex 14230 0.364797 0.224196 0.207465 Vertex 14231 0.3747 0.332001 0.607055 Vertex 14232 0.455888 0.392572 0.395444 Vertex 14233 0.399445 0.167428 0.664381 Vertex 14234 0.483298 0.198095 0.565508 Vertex 14235 0.486413 0.193091 0.551015 Vertex 14236 0.483612 0.188601 0.557257 Vertex 14237 0.494551 0.0745308 0.703061 Vertex 14238 0.585156 0.493666 0.305449 Vertex 14239 0.524022 0.390019 0.451591 Vertex 14240 0.509861 0.0665056 0.683831 Vertex 14241 0.42541 0.472024 0.41137 Vertex 14242 0.411486 0.498037 0.44536 Vertex 14243 0.418587 0.499885 0.443128 Vertex 14244 0.54211 0.00437685 0.745788 Vertex 14245 0.497388 0.0610686 0.72693 Vertex 14246 0.495576 0.0535349 0.723577 Vertex 14247 0.447235 0.815847 0.367714 Vertex 14248 0.404491 0.510747 0.480138 Vertex 14249 0.399599 0.308411 0.227655 Vertex 14250 0.644513 0.443637 0.218783 Vertex 14251 0.525444 0.175992 0.457532 Vertex 14252 0.466039 0.474334 0.615199 Vertex 14253 0.399978 0.171994 0.611106 Vertex 14254 0.458447 0.824494 0.393407 Vertex 14255 0.678835 0.448008 0.205647 Vertex 14256 0.460206 0.123114 0.641661 Vertex 14257 0.528494 0.506228 0.417299 Vertex 14258 0.430693 0.28966 0.428807 Vertex 14259 0.479981 0.590341 0.424471 Vertex 14260 0.371994 0.209739 0.481755 Vertex 14261 0.416005 0.171112 0.524108 Vertex 14262 0.513302 0.421889 0.592379 Vertex 14263 0.553683 0.00717827 0.725739 Vertex 14264 0.620645 0.515141 0.307161 Vertex 14265 0.62588 0.489751 0.249409 Vertex 14266 0.449207 0.318829 0.638587 Vertex 14267 0.357963 0.188222 0.509592 Vertex 14268 0.526972 0.124447 0.762389 Vertex 14269 0.400849 0.355069 0.229337 Vertex 14270 0.392812 0.238263 0.712627 Vertex 14271 0.541678 0.0715635 0.766552 Vertex 14272 0.358206 0.281771 0.507572 Vertex 14273 0.327568 0.935094 0.291152 Vertex 14274 0.325524 0.92881 0.289849 Vertex 14275 0.323357 0.931244 0.285614 Vertex 14276 0.434934 0.136198 0.647649 Vertex 14277 0.434857 0.13708 0.652517 Vertex 14278 0.622943 0.491012 0.300865 Vertex 14279 0.50048 0.261859 0.476383 Vertex 14280 0.453916 0.740054 0.436779 Vertex 14281 0.395068 0.255261 0.660815 Vertex 14282 0.686025 0.452177 0.210811 Vertex 14283 0.549028 0.143654 0.412786 Vertex 14284 0.50385 0.0806252 0.637308 Vertex 14285 0.3211 0.243208 0.225671 Vertex 14286 0.606069 0.449323 0.333108 Vertex 14287 0.603439 0.482205 0.391826 Vertex 14288 0.479152 0.283133 0.439497 Vertex 14289 0.483849 0.2818 0.444093 Vertex 14290 0.524431 0.137832 0.740327 Vertex 14291 0.406126 0.262972 0.675124 Vertex 14292 0.464932 0.362508 0.631646 Vertex 14293 0.527339 0.699235 0.490918 Vertex 14294 0.437409 0.325758 0.419627 Vertex 14295 0.499443 0.0560343 0.683096 Vertex 14296 0.508067 0.082858 0.695688 Vertex 14297 0.389122 0.498807 0.484906 Vertex 14298 0.389862 0.497444 0.480778 Vertex 14299 0.46094 0.210989 0.632055 Vertex 14300 0.447632 0.581197 0.522035 Vertex 14301 0.567477 0.501383 0.400194 Vertex 14302 0.573216 0.503758 0.381029 Vertex 14303 0.396063 0.357379 0.416867 Vertex 14304 0.394742 0.353091 0.437472 Vertex 14305 0.498786 0.0390304 0.679205 Vertex 14306 0.612987 0.496076 0.250665 Vertex 14307 0.395293 0.448227 0.595832 Vertex 14308 0.484654 0.298129 0.438804 Vertex 14309 0.532278 0.131791 0.785327 Vertex 14310 0.501297 0.193256 0.508508 Vertex 14311 0.524863 0.0970547 0.714729 Vertex 14312 0.445227 0.472149 0.612309 Vertex 14313 0.507362 0.154955 0.705484 Vertex 14314 0.515523 0.42652 0.427664 Vertex 14315 0.504815 0.102628 0.806838 Vertex 14316 0.516281 0.0429274 0.770603 Vertex 14317 0.400061 0.250623 0.208336 Vertex 14318 0.420944 0.381864 0.345818 Vertex 14319 0.486467 0.396143 0.402611 Vertex 14320 0.496168 0.66823 0.538678 Vertex 14321 0.497524 0.713385 0.523267 Vertex 14322 0.398711 0.30998 0.237961 Vertex 14323 0.313306 0.939613 0.249303 Vertex 14324 0.416289 0.172213 0.577981 Vertex 14325 0.459827 0.404731 0.384535 Vertex 14326 0.609095 0.491137 0.1875 Vertex 14327 0.565511 0.411661 0.367294 Vertex 14328 0.320478 0.951795 0.221993 Vertex 14329 0.526741 0.593492 0.549368 Vertex 14330 0.48405 0.549203 0.38855 Vertex 14331 0.408021 0.836173 0.412282 Vertex 14332 0.452494 0.389859 0.402883 Vertex 14333 0.451766 0.386317 0.405578 Vertex 14334 0.422816 0.232998 0.461186 Vertex 14335 0.529519 0.0832667 0.714853 Vertex 14336 0.445464 0.132608 0.74577 Vertex 14337 0.489487 0.0776579 0.725449 Vertex 14338 0.487639 0.0737668 0.727107 Vertex 14339 0.451884 0.128919 0.768637 Vertex 14340 0.463279 0.220892 0.783077 Vertex 14341 0.449474 0.800791 0.463081 Vertex 14342 0.594218 0.514004 0.232932 Vertex 14343 0.397988 0.259993 0.198539 Vertex 14344 0.50966 0.0487435 0.6309 Vertex 14345 0.462598 0.794531 0.480275 Vertex 14346 0.497127 0.43958 0.60821 Vertex 14347 0.429893 0.501845 0.444342 Vertex 14348 0.52693 0.0739622 0.795556 Vertex 14349 0.39768 0.176377 0.617266 Vertex 14350 0.365325 0.353239 0.55657 Vertex 14351 0.348723 0.261847 0.221561 Vertex 14352 0.50045 0.568824 0.575487 Vertex 14353 0.362985 0.345114 0.254307 Vertex 14354 0.350299 0.094881 0.446095 Vertex 14355 0.548898 0.0399839 0.79658 Vertex 14356 0.430782 0.167984 0.524049 Vertex 14357 0.378508 0.396268 0.56347 Vertex 14358 0.380273 0.397274 0.57589 Vertex 14359 0.492455 0.622869 0.402652 Vertex 14360 0.543105 0.615199 0.457792 Vertex 14361 0.410876 0.360619 0.629609 Vertex 14362 0.568158 0.539768 0.48243 Vertex 14363 0.674618 0.468121 0.194488 Vertex 14364 0.594182 0.453149 0.433053 Vertex 14365 0.59234 0.444508 0.432958 Vertex 14366 0.358046 0.32763 0.551477 Vertex 14367 0.626852 0.483603 0.227104 Vertex 14368 0.420536 0.407408 0.333712 Vertex 14369 0.446678 0.598372 0.493304 Vertex 14370 0.49621 0.237309 0.519962 Vertex 14371 0.513616 0.0675124 0.7295 Vertex 14372 0.574951 0.52271 0.459723 Vertex 14373 0.490222 0.313635 0.621589 Vertex 14374 0.394879 0.16959 0.499914 Vertex 14375 0.419813 0.834835 0.357581 Vertex 14376 0.469439 0.780281 0.487109 Vertex 14377 0.374984 0.237268 0.20265 Vertex 14378 0.468651 0.238612 0.46224 Vertex 14379 0.374546 0.216225 0.217504 Vertex 14380 0.452548 0.235527 0.631818 Vertex 14381 0.34764 0.908981 0.327138 Vertex 14382 0.546907 0.0328826 0.715007 Vertex 14383 0.546238 0.0346772 0.71432 Vertex 14384 0.546973 0.0330485 0.716275 Vertex 14385 0.496073 0.426935 0.388846 Vertex 14386 0.475545 0.477692 0.607606 Vertex 14387 0.480923 0.74452 0.49597 Vertex 14388 0.512959 0.0479795 0.663261 Vertex 14389 0.520717 0.375135 0.446 Vertex 14390 0.505034 0.176934 0.760357 Vertex 14391 0.376672 0.919701 0.333671 Vertex 14392 0.361333 0.224291 0.212256 Vertex 14393 0.505739 0.578686 0.56944 Vertex 14394 0.516921 0.0908299 0.687503 Vertex 14395 0.476617 0.122949 0.811677 Vertex 14396 0.379426 0.889519 0.370202 Vertex 14397 0.384686 0.883027 0.378511 Vertex 14398 0.370833 0.32901 0.211569 Vertex 14399 0.465755 0.158869 0.528266 Vertex 14400 0.433862 0.789615 0.433095 Vertex 14401 0.431741 0.791256 0.426384 Vertex 14402 0.604855 0.518446 0.20448 Vertex 14403 0.542063 0.639707 0.468115 Vertex 14404 0.481669 0.587291 0.418483 Vertex 14405 0.374594 0.0779837 0.477799 Vertex 14406 0.586062 0.462708 0.308032 Vertex 14407 0.444588 0.480393 0.413615 Vertex 14408 0.419102 0.41002 0.328009 Vertex 14409 0.416437 0.415344 0.327115 Vertex 14410 0.442669 0.245755 0.656687 Vertex 14411 0.365005 0.219162 0.490017 Vertex 14412 0.510228 0.0993408 0.805008 Vertex 14413 0.456261 0.746368 0.424033 Vertex 14414 0.382453 0.207358 0.579988 Vertex 14415 0.384508 0.204664 0.57926 Vertex 14416 0.505893 0.168825 0.781596 Vertex 14417 0.369707 0.0799441 0.476247 Vertex 14418 0.648161 0.434267 0.227655 Vertex 14419 0.643091 0.439805 0.223379 Vertex 14420 0.64562 0.441303 0.225612 Vertex 14421 0.367552 0.269884 0.230676 Vertex 14422 0.365739 0.226755 0.491237 Vertex 14423 0.417266 0.851874 0.428593 Vertex 14424 0.429023 0.404867 0.39577 Vertex 14425 0.503512 0.293592 0.458076 Vertex 14426 0.645401 0.422848 0.203029 Vertex 14427 0.513166 0.46933 0.603069 Vertex 14428 0.578623 0.439639 0.466054 Vertex 14429 0.52908 0.449856 0.406763 Vertex 14430 0.387629 0.865289 0.329632 Vertex 14431 0.401015 0.165017 0.50955 Vertex 14432 0.355694 0.400597 0.444437 Vertex 14433 0.503903 0.602637 0.408812 Vertex 14434 0.521422 0.678524 0.511665 Vertex 14435 0.50151 0.31181 0.450608 Vertex 14436 0.387754 0.358428 0.224416 Vertex 14437 0.642612 0.42992 0.193399 Vertex 14438 0.670454 0.481607 0.194488 Vertex 14439 0.603268 0.437448 0.367602 Vertex 14440 0.493461 0.340393 0.439337 Vertex 14441 0.497589 0.341003 0.443092 Vertex 14442 0.533475 0.114965 0.434374 Vertex 14443 0.532136 0.113958 0.433444 Vertex 14444 0.55347 0.00122007 0.747837 Vertex 14445 0.427045 0.399703 0.401592 Vertex 14446 0.380421 0.905978 0.358801 Vertex 14447 0.540505 0.145662 0.446278 Vertex 14448 0.571611 0.418833 0.468086 Vertex 14449 0.617766 0.499808 0.362514 Vertex 14450 0.370211 0.437697 0.424649 Vertex 14451 0.513332 0.301392 0.561391 Vertex 14452 0.514842 0.30847 0.563405 Vertex 14453 0.442153 0.146562 0.607955 Vertex 14454 0.592163 0.476928 0.420106 Vertex 14455 0.3747 0.376095 0.509912 Vertex 14456 0.37486 0.377694 0.510113 Vertex 14457 0.368221 0.439965 0.438111 Vertex 14458 0.377075 0.275759 0.195116 Vertex 14459 0.45205 0.225002 0.786612 Vertex 14460 0.467076 0.153592 0.654425 Vertex 14461 0.394577 0.860995 0.333943 Vertex 14462 0.448455 0.842226 0.427261 Vertex 14463 0.655334 0.501347 0.195797 Vertex 14464 0.447282 0.248284 0.729257 Vertex 14465 0.409792 0.154818 0.673549 Vertex 14466 0.507291 0.311953 0.586142 Vertex 14467 0.474485 0.506411 0.603774 Vertex 14468 0.508138 0.272306 0.501288 Vertex 14469 0.53842 0.150791 0.455731 Vertex 14470 0.452257 0.560313 0.559484 Vertex 14471 0.480005 0.274533 0.443128 Vertex 14472 0.521517 0.485161 0.413195 Vertex 14473 0.514801 0.10617 0.719846 Vertex 14474 0.515778 0.104073 0.719325 Vertex 14475 0.419434 0.845401 0.344468 Vertex 14476 0.394132 0.307303 0.444614 Vertex 14477 0.33946 0.951576 0.280705 Vertex 14478 0.474461 0.566242 0.42058 Vertex 14479 0.593631 0.527609 0.289997 Vertex 14480 0.454597 0.0769532 0.659068 Vertex 14481 0.387783 0.348235 0.449216 Vertex 14482 0.653675 0.453427 0.218398 Vertex 14483 0.654949 0.453972 0.216533 Vertex 14484 0.367895 0.0827988 0.478717 Vertex 14485 0.463315 0.757058 0.398548 Vertex 14486 0.464719 0.420112 0.619226 Vertex 14487 0.389394 0.85759 0.372867 Vertex 14488 0.455367 0.607819 0.449441 Vertex 14489 0.621936 0.506068 0.305544 Vertex 14490 0.358466 0.261272 0.555972 Vertex 14491 0.387546 0.304822 0.241301 Vertex 14492 0.463463 0.221217 0.704364 Vertex 14493 0.361173 0.25118 0.494554 Vertex 14494 0.348534 0.901145 0.284069 Vertex 14495 0.578659 0.419852 0.352523 Vertex 14496 0.516394 0.0247804 0.72526 Vertex 14497 0.39505 0.418655 0.298834 Vertex 14498 0.361463 0.309382 0.196366 Vertex 14499 0.624358 0.526927 0.293545 Vertex 14500 0.383128 0.227975 0.644273 Vertex 14501 0.419102 0.384156 0.404624 Vertex 14502 0.414601 0.378517 0.402315 Vertex 14503 0.415495 0.379767 0.398086 Vertex 14504 0.417823 0.328465 0.642366 Vertex 14505 0.366509 0.362544 0.46436 Vertex 14506 0.540825 0.398186 0.482798 Vertex 14507 0.365508 0.216118 0.229551 Vertex 14508 0.367759 0.881144 0.308849 Vertex 14509 0.355866 0.295381 0.513785 Vertex 14510 0.5415 0.593925 0.452562 Vertex 14511 0.484293 0.0640595 0.697459 Vertex 14512 0.484648 0.0676783 0.695901 Vertex 14513 0.527013 0.0902258 0.715511 Vertex 14514 0.354291 0.366222 0.443566 Vertex 14515 0.436776 0.814858 0.369533 Vertex 14516 0.377188 0.347743 0.432982 Vertex 14517 0.450984 0.652091 0.470319 Vertex 14518 0.498898 0.251346 0.482667 Vertex 14519 0.399469 0.441765 0.386021 Vertex 14520 0.492656 0.0895447 0.783035 Vertex 14521 0.537875 0.143026 0.458811 Vertex 14522 0.479668 0.462945 0.381639 Vertex 14523 0.452003 0.759611 0.420225 Vertex 14524 0.585458 0.420396 0.412158 Vertex 14525 0.517093 0.403558 0.441049 Vertex 14526 0.423716 0.257967 0.741642 Vertex 14527 0.455308 0.0741221 0.679264 Vertex 14528 0.445671 0.574913 0.522029 Vertex 14529 0.36427 0.206286 0.477159 Vertex 14530 0.49663 0.610526 0.404678 Vertex 14531 0.525965 0.558323 0.417571 Vertex 14532 0.52738 0.561338 0.422061 Vertex 14533 0.369399 0.363012 0.551068 Vertex 14534 0.596202 0.531926 0.277903 Vertex 14535 0.45677 0.359215 0.410541 Vertex 14536 0.459738 0.356532 0.410825 Vertex 14537 0.396875 0.303886 0.624639 Vertex 14538 0.400239 0.331485 0.202081 Vertex 14539 0.539907 0.660945 0.465421 Vertex 14540 0.539759 0.659891 0.463134 Vertex 14541 0.538847 0.664765 0.46619 Vertex 14542 0.460756 0.832164 0.411021 Vertex 14543 0.405338 0.250677 0.735488 Vertex 14544 0.37486 0.394076 0.529622 Vertex 14545 0.489908 0.576577 0.394248 Vertex 14546 0.384893 0.388231 0.24049 Vertex 14547 0.538438 0.0266283 0.775004 Vertex 14548 0.670022 0.451881 0.194334 Vertex 14549 0.670051 0.45011 0.199765 Vertex 14550 0.666782 0.453457 0.198895 Vertex 14551 0.420802 0.146059 0.647163 Vertex 14552 0.541328 0.121344 0.433675 Vertex 14553 0.48761 0.563423 0.392483 Vertex 14554 0.491134 0.565881 0.386021 Vertex 14555 0.450072 0.819471 0.376877 Vertex 14556 0.369293 0.260348 0.231783 Vertex 14557 0.373083 0.257357 0.232844 Vertex 14558 0.466069 0.741203 0.414053 Vertex 14559 0.381339 0.278223 0.458183 Vertex 14560 0.474675 0.0589186 0.690049 Vertex 14561 0.576704 0.44693 0.322051 Vertex 14562 0.44778 0.366317 0.412543 Vertex 14563 0.415661 0.818014 0.395403 Vertex 14564 0.381594 0.398127 0.586255 Vertex 14565 0.440436 0.142671 0.752024 Vertex 14566 0.533025 0.403298 0.462649 Vertex 14567 0.469084 0.218416 0.716826 Vertex 14568 0.527067 0.140604 0.458917 Vertex 14569 0.374345 0.475104 0.476419 Vertex 14570 0.378266 0.475377 0.462074 Vertex 14571 0.373231 0.46991 0.470319 Vertex 14572 0.386042 0.480091 0.561474 Vertex 14573 0.508967 0.314837 0.460558 Vertex 14574 0.449355 0.376829 0.636414 Vertex 14575 0.452808 0.37266 0.634595 Vertex 14576 0.440803 0.566982 0.4978 Vertex 14577 0.448651 0.106033 0.720006 Vertex 14578 0.478797 0.518908 0.598284 Vertex 14579 0.505668 0.145994 0.704116 Vertex 14580 0.501771 0.415966 0.411714 Vertex 14581 0.368517 0.368579 0.477526 Vertex 14582 0.354936 0.226139 0.519915 Vertex 14583 0.589918 0.517658 0.30006 Vertex 14584 0.49252 0.23369 0.494963 Vertex 14585 0.532705 0.605296 0.536498 Vertex 14586 0.546143 0.617911 0.487441 Vertex 14587 0.490494 0.196236 0.766552 Vertex 14588 0.415638 0.509426 0.577003 Vertex 14589 0.525124 0.343657 0.494288 Vertex 14590 0.45587 0.180049 0.623573 Vertex 14591 0.499864 0.245358 0.54649 Vertex 14592 0.492999 0.185516 0.733492 Vertex 14593 0.489191 0.191474 0.733024 Vertex 14594 0.483559 0.0662094 0.647134 Vertex 14595 0.406931 0.36939 0.252294 Vertex 14596 0.407316 0.363569 0.250392 Vertex 14597 0.436604 0.138276 0.619599 Vertex 14598 0.396703 0.202081 0.720954 Vertex 14599 0.455858 0.773393 0.396481 Vertex 14600 0.547891 0.592953 0.464171 Vertex 14601 0.664366 0.418904 0.226015 Vertex 14602 0.355854 0.416268 0.468139 Vertex 14603 0.385035 0.418934 0.302346 Vertex 14604 0.591156 0.44138 0.200447 Vertex 14605 0.593673 0.447392 0.198794 Vertex 14606 0.411261 0.531512 0.532394 Vertex 14607 0.426944 0.159308 0.588322 Vertex 14608 0.45494 0.275037 0.632694 Vertex 14609 0.444463 0.183721 0.79767 Vertex 14610 0.358389 0.288623 0.505464 Vertex 14611 0.440779 0.500619 0.589542 Vertex 14612 0.38455 0.244339 0.619439 Vertex 14613 0.420512 0.144033 0.64265 Vertex 14614 0.50963 0.275149 0.509598 Vertex 14615 0.324269 0.968953 0.228603 Vertex 14616 0.476688 0.209656 0.725094 Vertex 14617 0.386711 0.205647 0.587457 Vertex 14618 0.591849 0.446533 0.191717 Vertex 14619 0.428916 0.795858 0.416553 Vertex 14620 0.409839 0.263884 0.197343 Vertex 14621 0.417551 0.26556 0.673128 Vertex 14622 0.533392 0.631267 0.524096 Vertex 14623 0.463463 0.288967 0.430021 Vertex 14624 0.365248 0.0978424 0.466972 Vertex 14625 0.508055 0.440972 0.403742 Vertex 14626 0.496073 0.181909 0.738805 Vertex 14627 0.49098 0.223569 0.507584 Vertex 14628 0.416556 0.375994 0.354098 Vertex 14629 0.405593 0.333783 0.226921 Vertex 14630 0.658852 0.453747 0.198326 Vertex 14631 0.340141 0.935923 0.259229 Vertex 14632 0.544491 0.127331 0.439088 Vertex 14633 0.31144 0.999366 0.215786 Vertex 14634 0.592121 0.426124 0.397334 Vertex 14635 0.40304 0.183028 0.567669 Vertex 14636 0.423675 0.385346 0.323431 Vertex 14637 0.561057 0.486345 0.349935 Vertex 14638 0.673919 0.448043 0.198326 Vertex 14639 0.516335 0.395136 0.567598 Vertex 14640 0.405012 0.174867 0.600777 Vertex 14641 0.460762 0.187719 0.801259 Vertex 14642 0.451227 0.781241 0.400058 Vertex 14643 0.482333 0.568493 0.407983 Vertex 14644 0.505852 0.124417 0.794951 Vertex 14645 0.493159 0.16484 0.694136 Vertex 14646 0.468474 0.383931 0.627305 Vertex 14647 0.354297 0.291673 0.197053 Vertex 14648 0.340343 0.272111 0.230611 Vertex 14649 0.528577 0.0573136 0.724721 Vertex 14650 0.455479 0.78079 0.469501 Vertex 14651 0.36443 0.44706 0.471604 Vertex 14652 0.696869 0.448997 0.20249 Vertex 14653 0.372971 0.311135 0.600836 Vertex 14654 0.470061 0.588967 0.430388 Vertex 14655 0.472596 0.586474 0.427954 Vertex 14656 0.476114 0.590851 0.426455 Vertex 14657 0.481622 0.181802 0.70918 Vertex 14658 0.50218 0.250067 0.540786 Vertex 14659 0.505224 0.0919138 0.72706 Vertex 14660 0.376282 0.429962 0.405619 Vertex 14661 0.441176 0.264577 0.635579 Vertex 14662 0.415732 0.15271 0.691927 Vertex 14663 0.529335 0.417577 0.567575 Vertex 14664 0.449681 0.250067 0.751835 Vertex 14665 0.374913 0.0887274 0.467843 Vertex 14666 0.42599 0.507661 0.449968 Vertex 14667 0.560133 0.535338 0.467979 Vertex 14668 0.563195 0.52823 0.455654 Vertex 14669 0.316563 0.94043 0.270831 Vertex 14670 0.434478 0.0967822 0.671251 Vertex 14671 0.585648 0.420835 0.354069 Vertex 14672 0.590516 0.424679 0.35411 Vertex 14673 0.478607 0.203183 0.716796 Vertex 14674 0.404136 0.448422 0.600807 Vertex 14675 0.448597 0.293971 0.426432 Vertex 14676 0.467822 0.224605 0.741689 Vertex 14677 0.468397 0.223598 0.737555 Vertex 14678 0.436438 0.241088 0.77395 Vertex 14679 0.499568 0.0792097 0.729938 Vertex 14680 0.62225 0.522491 0.214975 Vertex 14681 0.416277 0.837749 0.351812 Vertex 14682 0.489464 0.63488 0.40408 Vertex 14683 0.512882 0.0625374 0.634963 Vertex 14684 0.39678 0.87781 0.397227 Vertex 14685 0.442988 0.570115 0.52415 Vertex 14686 0.38513 0.347311 0.617319 Vertex 14687 0.367711 0.116546 0.470455 Vertex 14688 0.536513 0.661088 0.453249 Vertex 14689 0.357803 0.17062 0.451733 Vertex 14690 0.481024 0.735974 0.496793 Vertex 14691 0.390597 0.860563 0.34172 Vertex 14692 0.654487 0.420734 0.229936 Vertex 14693 0.658378 0.42071 0.233525 Vertex 14694 0.325897 0.959951 0.271305 Vertex 14695 0.359201 0.209562 0.543493 Vertex 14696 0.353379 0.400757 0.459581 Vertex 14697 0.33179 0.920133 0.300048 Vertex 14698 0.523353 0.721214 0.45977 Vertex 14699 0.547387 0.497527 0.563458 Vertex 14700 0.503648 0.114775 0.648413 Vertex 14701 0.376205 0.900333 0.305201 Vertex 14702 0.62588 0.479973 0.223794 Vertex 14703 0.43533 0.163306 0.513732 Vertex 14704 0.662796 0.466593 0.216361 Vertex 14705 0.671716 0.470591 0.217119 Vertex 14706 0.372349 0.340719 0.490918 Vertex 14707 0.370969 0.342513 0.499221 Vertex 14708 0.508422 0.431087 0.601731 Vertex 14709 0.465056 0.123861 0.812027 Vertex 14710 0.355351 0.412407 0.505789 Vertex 14711 0.655547 0.488513 0.192291 Vertex 14712 0.416396 0.17794 0.752024 Vertex 14713 0.494658 0.29483 0.448488 Vertex 14714 0.621118 0.531446 0.239512 Vertex 14715 0.499106 0.169128 0.706639 Vertex 14716 0.452453 0.234561 0.691933 Vertex 14717 0.391793 0.309832 0.198735 Vertex 14718 0.461171 0.126786 0.808082 Vertex 14719 0.36199 0.346174 0.407414 Vertex 14720 0.43799 0.446492 0.40347 Vertex 14721 0.377016 0.358807 0.468601 Vertex 14722 0.507711 0.0647169 0.634548 Vertex 14723 0.505224 0.0605474 0.635981 Vertex 14724 0.478755 0.29451 0.625723 Vertex 14725 0.480704 0.301991 0.628116 Vertex 14726 0.433696 0.129724 0.670546 Vertex 14727 0.407595 0.457508 0.599083 Vertex 14728 0.490524 0.19392 0.779002 Vertex 14729 0.418042 0.374342 0.428771 Vertex 14730 0.446127 0.604147 0.487944 Vertex 14731 0.533937 0.524961 0.577975 Vertex 14732 0.599921 0.524677 0.270707 Vertex 14733 0.35865 0.104778 0.478806 Vertex 14734 0.470316 0.182578 0.565579 Vertex 14735 0.353444 0.893439 0.325101 Vertex 14736 0.374102 0.368384 0.52152 Vertex 14737 0.500598 0.42581 0.400763 Vertex 14738 0.556609 0.0365843 0.756057 Vertex 14739 0.469747 0.508555 0.407183 Vertex 14740 0.496654 0.424519 0.390534 Vertex 14741 0.584599 0.411589 0.368585 Vertex 14742 0.580696 0.413414 0.363047 Vertex 14743 0.461224 0.33883 0.41352 Vertex 14744 0.365627 0.420515 0.544909 Vertex 14745 0.605696 0.50775 0.206648 Vertex 14746 0.502914 0.643704 0.409291 Vertex 14747 0.523928 0.36759 0.526163 Vertex 14748 0.485294 0.768003 0.48936 Vertex 14749 0.481314 0.498747 0.601269 Vertex 14750 0.506651 0.023507 0.658132 Vertex 14751 0.434566 0.164336 0.519933 Vertex 14752 0.508339 0.164763 0.451467 Vertex 14753 0.363903 0.391997 0.300196 Vertex 14754 0.495066 0.418768 0.39407 Vertex 14755 0.577895 0.473695 0.31203 Vertex 14756 0.579909 0.466208 0.311923 Vertex 14757 0.496393 0.208199 0.507347 Vertex 14758 0.454976 0.13265 0.648141 Vertex 14759 0.454384 0.136636 0.650332 Vertex 14760 0.400428 0.851276 0.354762 Vertex 14761 0.344885 0.264921 0.227868 Vertex 14762 0.497133 0.55108 0.380182 Vertex 14763 0.462545 0.214081 0.667069 Vertex 14764 0.459963 0.220797 0.671186 Vertex 14765 0.355925 0.416861 0.474589 Vertex 14766 0.585606 0.413603 0.398412 Vertex 14767 0.452713 0.156423 0.795378 Vertex 14768 0.458867 0.21828 0.660809 Vertex 14769 0.411853 0.255889 0.223403 Vertex 14770 0.447389 0.109611 0.743484 Vertex 14771 0.64045 0.511019 0.244168 Vertex 14772 0.638176 0.514336 0.248379 Vertex 14773 0.481829 0.376776 0.627364 Vertex 14774 0.486538 0.375035 0.626132 Vertex 14775 0.390194 0.313285 0.247644 Vertex 14776 0.323078 0.241106 0.2316 Vertex 14777 0.547429 0.597318 0.492523 Vertex 14778 0.463037 0.1901 0.654561 Vertex 14779 0.475154 0.077498 0.725739 Vertex 14780 0.531141 0.396078 0.434919 Vertex 14781 0.605696 0.442701 0.359594 Vertex 14782 0.411628 0.42209 0.347731 Vertex 14783 0.452269 0.167629 0.800383 Vertex 14784 0.607301 0.455216 0.384772 Vertex 14785 0.344198 0.131572 0.466433 Vertex 14786 0.361593 0.398417 0.393448 Vertex 14787 0.518295 0.720806 0.442002 Vertex 14788 0.549999 0.507904 0.412419 Vertex 14789 0.316196 0.949503 0.27063 Vertex 14790 0.533801 0.118625 0.42976 Vertex 14791 0.415833 0.838418 0.356544 Vertex 14792 0.662524 0.459687 0.213773 Vertex 14793 0.439405 0.428925 0.398571 Vertex 14794 0.438783 0.430666 0.398856 Vertex 14795 0.437498 0.428013 0.398163 Vertex 14796 0.44226 0.112069 0.731928 Vertex 14797 0.353343 0.40819 0.496947 Vertex 14798 0.479904 0.343615 0.425289 Vertex 14799 0.510785 0.521046 0.398802 Vertex 14800 0.629274 0.500654 0.278093 Vertex 14801 0.508096 0.569399 0.398684 Vertex 14802 0.507291 0.565762 0.398234 Vertex 14803 0.504661 0.568931 0.397624 Vertex 14804 0.366349 0.426201 0.420485 Vertex 14805 0.489926 0.22534 0.511623 Vertex 14806 0.318672 0.979081 0.199931 Vertex 14807 0.324956 0.269937 0.218682 Vertex 14808 0.440116 0.439799 0.401876 Vertex 14809 0.441028 0.437027 0.400846 Vertex 14810 0.362411 0.271596 0.569689 Vertex 14811 0.373308 0.361312 0.503367 Vertex 14812 0.542738 0.40071 0.503314 Vertex 14813 0.500083 0.103937 0.640145 Vertex 14814 0.412528 0.492842 0.43701 Vertex 14815 0.455029 0.133426 0.798262 Vertex 14816 0.490849 0.280888 0.450596 Vertex 14817 0.409075 0.340346 0.63286 Vertex 14818 0.420642 0.397802 0.313131 Vertex 14819 0.420962 0.390617 0.311947 Vertex 14820 0.419914 0.389723 0.307718 Vertex 14821 0.651644 0.460635 0.194192 Vertex 14822 0.651496 0.455767 0.195033 Vertex 14823 0.32184 0.975836 0.20339 Vertex 14824 0.371419 0.371446 0.551039 Vertex 14825 0.398361 0.396653 0.26973 Vertex 14826 0.397804 0.393739 0.260834 Vertex 14827 0.494711 0.245512 0.482614 Vertex 14828 0.445393 0.429731 0.397215 Vertex 14829 0.450048 0.428724 0.394153 Vertex 14830 0.543158 0.403487 0.515787 Vertex 14831 0.506106 0.645357 0.549001 Vertex 14832 0.475243 0.64939 0.423855 Vertex 14833 0.463268 0.160107 0.538607 Vertex 14834 0.521979 0.451526 0.410067 Vertex 14835 0.489464 0.606895 0.402285 Vertex 14836 0.471411 0.482253 0.399116 Vertex 14837 0.547429 0.0280142 0.721203 Vertex 14838 0.374309 0.360127 0.464994 Vertex 14839 0.358709 0.39734 0.409469 Vertex 14840 0.52096 0.377931 0.51372 Vertex 14841 0.485857 0.287415 0.613404 Vertex 14842 0.430675 0.123576 0.671452 Vertex 14843 0.481367 0.51494 0.403866 Vertex 14844 0.423278 0.318231 0.427859 Vertex 14845 0.575603 0.405513 0.395539 Vertex 14846 0.552753 0.547568 0.458438 Vertex 14847 0.415886 0.157495 0.617396 Vertex 14848 0.410177 0.159521 0.691951 Vertex 14849 0.406114 0.279171 0.231618 Vertex 14850 0.395187 0.260674 0.638036 Vertex 14851 0.460123 0.234982 0.76657 Vertex 14852 0.460899 0.235799 0.768673 Vertex 14853 0.326744 0.925262 0.291898 Vertex 14854 0.405652 0.382598 0.272762 Vertex 14855 0.440371 0.227258 0.787483 Vertex 14856 0.350163 0.310975 0.227649 Vertex 14857 0.445973 0.122297 0.666661 Vertex 14858 0.490399 0.21122 0.547136 Vertex 14859 0.504981 0.435481 0.399768 Vertex 14860 0.418972 0.265081 0.700284 Vertex 14861 0.486307 0.0507809 0.685596 Vertex 14862 0.533759 0.094117 0.721528 Vertex 14863 0.398225 0.429186 0.323833 Vertex 14864 0.450712 0.802189 0.372352 Vertex 14865 0.507634 0.198545 0.47649 Vertex 14866 0.522642 0.0798079 0.679424 Vertex 14867 0.499106 0.413277 0.603117 Vertex 14868 0.526812 0.131696 0.708421 Vertex 14869 0.353503 0.290447 0.531725 Vertex 14870 0.601603 0.440539 0.339653 Vertex 14871 0.417865 0.149541 0.645985 Vertex 14872 0.5311 0.136754 0.44526 Vertex 14873 0.464014 0.330899 0.416867 Vertex 14874 0.647605 0.459581 0.192392 Vertex 14875 0.362434 0.242681 0.215632 Vertex 14876 0.588905 0.4615 0.456323 Vertex 14877 0.584179 0.451123 0.468086 Vertex 14878 0.48347 0.152331 0.65366 Vertex 14879 0.358561 0.278412 0.560746 Vertex 14880 0.362197 0.287249 0.570062 Vertex 14881 0.465074 0.227081 0.739622 Vertex 14882 0.465826 0.225529 0.735458 Vertex 14883 0.411752 0.354809 0.438816 Vertex 14884 0.547239 0.0152568 0.727386 Vertex 14885 0.40872 0.4632 0.404802 Vertex 14886 0.418386 0.370534 0.316774 Vertex 14887 0.515737 0.56411 0.405223 Vertex 14888 0.535962 0.464662 0.577874 Vertex 14889 0.537384 0.0450715 0.783207 Vertex 14890 0.348723 0.896164 0.314748 Vertex 14891 0.372669 0.173356 0.467932 Vertex 14892 0.53986 0.148061 0.442737 Vertex 14893 0.530099 0.134581 0.447469 Vertex 14894 0.513095 0.482555 0.60301 Vertex 14895 0.515725 0.493903 0.600208 Vertex 14896 0.570592 0.427285 0.345812 Vertex 14897 0.400464 0.308511 0.231813 Vertex 14898 0.648067 0.50788 0.208442 Vertex 14899 0.513918 0.379631 0.563452 Vertex 14900 0.489173 0.418791 0.380223 Vertex 14901 0.469818 0.737087 0.483852 Vertex 14902 0.391479 0.267568 0.6215 Vertex 14903 0.482783 0.647921 0.416008 Vertex 14904 0.413482 0.834231 0.42459 Vertex 14905 0.508369 0.278845 0.563429 Vertex 14906 0.537106 0.0788306 0.774684 Vertex 14907 0.432268 0.383611 0.64727 Vertex 14908 0.328486 0.248651 0.206156 Vertex 14909 0.456226 0.228615 0.627802 Vertex 14910 0.603984 0.475596 0.20586 Vertex 14911 0.402543 0.367744 0.3665 Vertex 14912 0.663933 0.40248 0.221336 Vertex 14913 0.66314 0.401355 0.223278 Vertex 14914 0.514499 0.534852 0.58661 Vertex 14915 0.444653 0.293059 0.63623 Vertex 14916 0.507711 0.621127 0.557642 Vertex 14917 0.591108 0.440693 0.18731 Vertex 14918 0.589397 0.440036 0.189211 Vertex 14919 0.410207 0.358007 0.439118 Vertex 14920 0.546505 0.600244 0.471876 Vertex 14921 0.506817 0.0863347 0.70283 Vertex 14922 0.450534 0.237321 0.687775 Vertex 14923 0.446311 0.243019 0.685714 Vertex 14924 0.353396 0.382195 0.424963 Vertex 14925 0.520528 0.388396 0.470046 Vertex 14926 0.401352 0.303371 0.229853 Vertex 14927 0.389418 0.278069 0.194844 Vertex 14928 0.468515 0.294108 0.430317 Vertex 14929 0.406748 0.283198 0.212416 Vertex 14930 0.403739 0.289743 0.211788 Vertex 14931 0.404124 0.290909 0.216148 Vertex 14932 0.405314 0.287604 0.215461 Vertex 14933 0.550639 0.562523 0.497166 Vertex 14934 0.371076 0.249658 0.58863 Vertex 14935 0.407731 0.32718 0.206351 Vertex 14936 0.507889 0.762347 0.455767 Vertex 14937 0.505277 0.42331 0.416606 Vertex 14938 0.424705 0.208596 0.474192 Vertex 14939 0.510163 0.0869328 0.8029 Vertex 14940 0.422964 0.396333 0.32314 Vertex 14941 0.373907 0.905788 0.302334 Vertex 14942 0.521126 0.392299 0.522249 Vertex 14943 0.540914 0.575837 0.530286 Vertex 14944 0.469694 0.384061 0.400994 Vertex 14945 0.489055 0.744413 0.507205 Vertex 14946 0.367403 0.296246 0.235811 Vertex 14947 0.454153 0.471325 0.620174 Vertex 14948 0.36411 0.212434 0.222834 Vertex 14949 0.378301 0.476905 0.528266 Vertex 14950 0.456954 0.332457 0.415901 Vertex 14951 0.457677 0.330952 0.416665 Vertex 14952 0.490062 0.218499 0.550352 Vertex 14953 0.553944 0.562072 0.473256 Vertex 14954 0.552066 0.570607 0.483402 Vertex 14955 0.58284 0.447558 0.318651 Vertex 14956 0.54179 0.608559 0.459036 Vertex 14957 0.46373 0.0738497 0.704957 Vertex 14958 0.457677 0.0812293 0.707983 Vertex 14959 0.515713 0.100537 0.662835 Vertex 14960 0.528701 0.694 0.453504 Vertex 14961 0.520575 0.18092 0.46115 Vertex 14962 0.444072 0.454085 0.405264 Vertex 14963 0.41174 0.368064 0.299219 Vertex 14964 0.447596 0.494258 0.420254 Vertex 14965 0.503873 0.0504315 0.677736 Vertex 14966 0.425653 0.238873 0.206849 Vertex 14967 0.512503 0.343153 0.584051 Vertex 14968 0.521724 0.583216 0.424211 Vertex 14969 0.518745 0.578952 0.415504 Vertex 14970 0.520303 0.577122 0.417127 Vertex 14971 0.552889 0.560811 0.479357 Vertex 14972 0.519296 0.159699 0.462767 Vertex 14973 0.356997 0.393442 0.415522 Vertex 14974 0.443794 0.171982 0.596643 Vertex 14975 0.40795 0.282736 0.216444 Vertex 14976 0.53014 0.136429 0.447333 Vertex 14977 0.613804 0.458959 0.34817 Vertex 14978 0.378976 0.300741 0.459901 Vertex 14979 0.456468 0.448091 0.39237 Vertex 14980 0.496073 0.367637 0.438928 Vertex 14981 0.373172 0.40055 0.287658 Vertex 14982 0.411279 0.374431 0.410719 Vertex 14983 0.39383 0.178971 0.654348 Vertex 14984 0.511543 0.374383 0.448381 Vertex 14985 0.456776 0.386537 0.631462 Vertex 14986 0.512313 0.64939 0.536664 Vertex 14987 0.513711 0.404903 0.575813 Vertex 14988 0.52558 0.0551637 0.650747 Vertex 14989 0.52558 0.0522023 0.648158 Vertex 14990 0.4524 0.276345 0.633814 Vertex 14991 0.52436 0.32105 0.531523 Vertex 14992 0.468373 0.652233 0.513169 Vertex 14993 0.466572 0.656533 0.5099 Vertex 14994 0.490755 0.482922 0.3898 Vertex 14995 0.641078 0.437436 0.21549 Vertex 14996 0.41206 0.226725 0.766523 Vertex 14997 0.478684 0.179433 0.489224 Vertex 14998 0.428508 0.147308 0.716772 Vertex 14999 0.342795 0.902833 0.312752 Vertex 15000 0.366083 0.378434 0.271187 Vertex 15001 0.447673 0.180771 0.798369 Vertex 15002 0.356518 0.329851 0.231564 Vertex 15003 0.492727 0.626724 0.545507 Vertex 15004 0.466342 0.411264 0.378174 Vertex 15005 0.37746 0.39962 0.55519 Vertex 15006 0.479537 0.504599 0.40004 Vertex 15007 0.481427 0.505523 0.399863 Vertex 15008 0.366681 0.214933 0.233773 Vertex 15009 0.439382 0.54187 0.466102 Vertex 15010 0.540357 0.0265217 0.728849 Vertex 15011 0.593104 0.521869 0.225801 Vertex 15012 0.438031 0.251725 0.664996 Vertex 15013 0.482872 0.389314 0.404393 Vertex 15014 0.354687 0.313309 0.530706 Vertex 15015 0.523329 0.0626736 0.672317 Vertex 15016 0.508558 0.0748861 0.77469 Vertex 15017 0.51438 0.0743946 0.780962 Vertex 15018 0.484109 0.16956 0.793998 Vertex 15019 0.450184 0.140112 0.643545 Vertex 15020 0.469368 0.163045 0.664215 Vertex 15021 0.442295 0.190414 0.798641 Vertex 15022 0.392628 0.492819 0.45996 Vertex 15023 0.450889 0.201199 0.471977 Vertex 15024 0.39386 0.187405 0.613215 Vertex 15025 0.414133 0.883027 0.383747 Vertex 15026 0.6512 0.434173 0.193535 Vertex 15027 0.650501 0.432573 0.193784 Vertex 15028 0.465471 0.159604 0.519779 Vertex 15029 0.373818 0.381881 0.236362 Vertex 15030 0.354557 0.147528 0.454102 Vertex 15031 0.464067 0.199132 0.664996 Vertex 15032 0.489351 0.616721 0.407959 Vertex 15033 0.350826 0.898314 0.286136 Vertex 15034 0.460727 0.232387 0.729257 Vertex 15035 0.366864 0.114598 0.462513 Vertex 15036 0.414518 0.859437 0.423992 Vertex 15037 0.413553 0.861427 0.421901 Vertex 15038 0.402839 0.406928 0.291928 Vertex 15039 0.400428 0.410553 0.292728 Vertex 15040 0.401471 0.282505 0.233631 Vertex 15041 0.378129 0.184248 0.478006 Vertex 15042 0.541873 0.16725 0.443359 Vertex 15043 0.545048 0.164188 0.443459 Vertex 15044 0.492383 0.178592 0.519915 Vertex 15045 0.479164 0.805612 0.455038 Vertex 15046 0.462812 0.551193 0.429908 Vertex 15047 0.596279 0.433136 0.343787 Vertex 15048 0.462936 0.204788 0.635034 Vertex 15049 0.542181 0.606658 0.51799 Vertex 15050 0.550135 0.584887 0.481607 Vertex 15051 0.490299 0.0745841 0.70283 Vertex 15052 0.35926 0.890644 0.337521 Vertex 15053 0.589811 0.454624 0.310845 Vertex 15054 0.396892 0.491581 0.570832 Vertex 15055 0.499254 0.199345 0.46959 Vertex 15056 0.486171 0.123209 0.644966 Vertex 15057 0.539172 0.0829647 0.741576 Vertex 15058 0.458778 0.210906 0.473854 Vertex 15059 0.384105 0.325255 0.459735 Vertex 15060 0.37993 0.328234 0.46638 Vertex 15061 0.604458 0.537541 0.258335 Vertex 15062 0.628439 0.447392 0.197047 Vertex 15063 0.554269 0.153498 0.439284 Vertex 15064 0.307981 0.946957 0.245139 Vertex 15065 0.380054 0.174677 0.519962 Vertex 15066 0.615012 0.473262 0.299302 Vertex 15067 0.493663 0.200583 0.470733 Vertex 15068 0.594692 0.511404 0.251393 Vertex 15069 0.476493 0.294972 0.627891 Vertex 15070 0.624411 0.457076 0.189075 Vertex 15071 0.364697 0.879776 0.33556 Vertex 15072 0.503145 0.577904 0.397257 Vertex 15073 0.583119 0.464408 0.482638 Vertex 15074 0.462966 0.628116 0.516569 Vertex 15075 0.514978 0.319285 0.571685 Vertex 15076 0.65942 0.405146 0.225582 Vertex 15077 0.660155 0.403375 0.221691 Vertex 15078 0.493461 0.335252 0.438549 Vertex 15079 0.408536 0.156696 0.640104 Vertex 15080 0.391568 0.259898 0.204012 Vertex 15081 0.444404 0.828847 0.375017 Vertex 15082 0.394286 0.211125 0.72093 Vertex 15083 0.586056 0.491001 0.453587 Vertex 15084 0.500871 0.0325332 0.671387 Vertex 15085 0.506355 0.03569 0.672323 Vertex 15086 0.5035 0.0384677 0.673904 Vertex 15087 0.589728 0.445651 0.191361 Vertex 15088 0.453264 0.405916 0.389664 Vertex 15089 0.525965 0.40039 0.46391 Vertex 15090 0.483653 0.744064 0.50409 Vertex 15091 0.42544 0.345214 0.646311 Vertex 15092 0.438469 0.470419 0.603555 Vertex 15093 0.500113 0.391695 0.446053 Vertex 15094 0.446933 0.0976588 0.714682 Vertex 15095 0.398432 0.357972 0.62387 Vertex 15096 0.389779 0.350166 0.296009 Vertex 15097 0.399149 0.354661 0.287764 Vertex 15098 0.449095 0.173617 0.577975 Vertex 15099 0.576414 0.459936 0.316395 Vertex 15100 0.482321 0.311153 0.433201 Vertex 15101 0.580969 0.429363 0.336419 Vertex 15102 0.462569 0.0790498 0.738124 Vertex 15103 0.429585 0.404589 0.399786 Vertex 15104 0.396875 0.182483 0.600777 Vertex 15105 0.53431 0.151827 0.438958 Vertex 15106 0.564675 0.414089 0.364872 Vertex 15107 0.486917 0.791966 0.426183 Vertex 15108 0.394973 0.177248 0.549013 Vertex 15109 0.495475 0.0365547 0.676173 Vertex 15110 0.532841 0.557044 0.431146 Vertex 15111 0.442811 0.124867 0.739575 Vertex 15112 0.480876 0.211084 0.760334 Vertex 15113 0.477731 0.212553 0.768637 Vertex 15114 0.398035 0.262623 0.223734 Vertex 15115 0.403786 0.2653 0.225665 Vertex 15116 0.4403 0.805364 0.381029 Vertex 15117 0.536874 0.553508 0.434273 Vertex 15118 0.604636 0.490503 0.204048 Vertex 15119 0.490139 0.160587 0.668674 Vertex 15120 0.484945 0.165005 0.670848 Vertex 15121 0.350956 0.172515 0.457857 Vertex 15122 0.378929 0.391926 0.586344 Vertex 15123 0.497838 0.0572307 0.755015 Vertex 15124 0.508025 0.433219 0.40739 Vertex 15125 0.418937 0.409771 0.332226 Vertex 15126 0.436166 0.562706 0.528266 Vertex 15127 0.439198 0.838892 0.446504 Vertex 15128 0.399054 0.169359 0.624426 Vertex 15129 0.452459 0.243753 0.741695 Vertex 15130 0.51117 0.0793459 0.783041 Vertex 15131 0.541547 0.399839 0.460007 Vertex 15132 0.421993 0.398074 0.378731 Vertex 15133 0.636914 0.510415 0.259312 Vertex 15134 0.435419 0.156696 0.575973 Vertex 15135 0.377857 0.234259 0.235846 Vertex 15136 0.473159 0.144075 0.798322 Vertex 15137 0.391805 0.294599 0.619416 Vertex 15138 0.495552 0.25609 0.586249 Vertex 15139 0.496446 0.259679 0.586231 Vertex 15140 0.557521 0.484201 0.374964 Vertex 15141 0.472353 0.719953 0.490965 Vertex 15142 0.668778 0.481909 0.216195 Vertex 15143 0.463659 0.230344 0.74792 Vertex 15144 0.461361 0.233009 0.749987 Vertex 15145 0.383685 0.441985 0.584383 Vertex 15146 0.581703 0.483591 0.486748 Vertex 15147 0.585322 0.48843 0.297898 Vertex 15148 0.34225 0.0929739 0.448571 Vertex 15149 0.346988 0.0852212 0.453249 Vertex 15150 0.590048 0.500619 0.386999 Vertex 15151 0.446311 0.100407 0.731508 Vertex 15152 0.496529 0.37783 0.611118 Vertex 15153 0.425807 0.157389 0.720906 Vertex 15154 0.364667 0.212665 0.21549 Vertex 15155 0.565783 0.511996 0.428741 Vertex 15156 0.456155 0.124163 0.774862 Vertex 15157 0.492727 0.484888 0.605651 Vertex 15158 0.641321 0.435203 0.216989 Vertex 15159 0.604541 0.450655 0.187417 Vertex 15160 0.384816 0.330254 0.619445 Vertex 15161 0.379622 0.30712 0.24569 Vertex 15162 0.371395 0.223693 0.4874 Vertex 15163 0.365532 0.113662 0.460854 Vertex 15164 0.613952 0.54177 0.286852 Vertex 15165 0.617885 0.539128 0.2922 Vertex 15166 0.421051 0.814141 0.422511 Vertex 15167 0.607479 0.449181 0.190301 Vertex 15168 0.417331 0.169495 0.528183 Vertex 15169 0.34007 0.263138 0.203337 Vertex 15170 0.364134 0.358114 0.260947 Vertex 15171 0.448378 0.14247 0.638131 Vertex 15172 0.636298 0.516705 0.244351 Vertex 15173 0.525343 0.13092 0.726332 Vertex 15174 0.516335 0.417435 0.586278 Vertex 15175 0.601858 0.527881 0.237688 Vertex 15176 0.453146 0.474026 0.618871 Vertex 15177 0.41116 0.151786 0.664381 Vertex 15178 0.406807 0.36425 0.287776 Vertex 15179 0.501949 0.539566 0.585538 Vertex 15180 0.518052 0.137761 0.703932 Vertex 15181 0.516039 0.140006 0.704874 Vertex 15182 0.528997 0.613422 0.538601 Vertex 15183 0.489037 0.630272 0.409836 Vertex 15184 0.450173 0.239335 0.633914 Vertex 15185 0.404011 0.380821 0.251482 Vertex 15186 0.404379 0.379287 0.24691 Vertex 15187 0.411219 0.252104 0.741417 Vertex 15188 0.553807 0.0124554 0.722482 Vertex 15189 0.362482 0.106193 0.46349 Vertex 15190 0.397437 0.300812 0.23943 Vertex 15191 0.368079 0.259952 0.477159 Vertex 15192 0.467295 0.514431 0.414349 Vertex 15193 0.554038 0.470786 0.372802 Vertex 15194 0.393647 0.35485 0.389036 Vertex 15195 0.606187 0.458645 0.185794 Vertex 15196 0.442349 0.0899889 0.663048 Vertex 15197 0.446572 0.501691 0.425271 Vertex 15198 0.512367 0.106276 0.702025 Vertex 15199 0.440554 0.781495 0.412146 Vertex 15200 0.364318 0.225434 0.226862 Vertex 15201 0.549816 0.563328 0.501709 Vertex 15202 0.513918 0.170744 0.774826 Vertex 15203 0.411202 0.522977 0.497166 Vertex 15204 0.354581 0.153172 0.453249 Vertex 15205 0.553517 0.0139775 0.727107 Vertex 15206 0.518117 0.119454 0.687775 Vertex 15207 0.46726 0.433142 0.373767 Vertex 15208 0.487397 0.571839 0.395663 Vertex 15209 0.551142 0.578964 0.467843 Vertex 15210 0.401257 0.242503 0.737508 Vertex 15211 0.404225 0.243469 0.741659 Vertex 15212 0.402075 0.244476 0.739557 Vertex 15213 0.691953 0.444152 0.208093 Vertex 15214 0.564042 0.492274 0.526163 Vertex 15215 0.413677 0.419016 0.368324 Vertex 15216 0.362067 0.417435 0.429055 Vertex 15217 0.521262 0.328104 0.54893 Vertex 15218 0.542098 0.40055 0.453711 Vertex 15219 0.385207 0.393993 0.256623 Vertex 15220 0.37964 0.320754 0.255646 Vertex 15221 0.509103 0.0224647 0.634815 Vertex 15222 0.643287 0.420509 0.205208 Vertex 15223 0.387339 0.38338 0.611225 Vertex 15224 0.620917 0.500406 0.342987 Vertex 15225 0.427317 0.861232 0.361336 Vertex 15226 0.375802 0.277702 0.464195 Vertex 15227 0.3384 0.107419 0.456501 Vertex 15228 0.466792 0.539714 0.422866 Vertex 15229 0.36372 0.256907 0.225938 Vertex 15230 0.576183 0.40681 0.403849 Vertex 15231 0.622723 0.524363 0.219435 Vertex 15232 0.483274 0.668515 0.51956 Vertex 15233 0.405569 0.37966 0.263772 Vertex 15234 0.408755 0.375669 0.27108 Vertex 15235 0.408678 0.373886 0.264755 Vertex 15236 0.426067 0.403262 0.385287 Vertex 15237 0.427033 0.403695 0.387324 Vertex 15238 0.47442 0.734025 0.403564 Vertex 15239 0.358928 0.274563 0.502662 Vertex 15240 0.358792 0.278152 0.505464 Vertex 15241 0.35817 0.277826 0.511937 Vertex 15242 0.357619 0.367051 0.387164 Vertex 15243 0.404811 0.523628 0.52823 Vertex 15244 0.463351 0.107342 0.65048 Vertex 15245 0.359982 0.306036 0.5013 Vertex 15246 0.36173 0.308926 0.494726 Vertex 15247 0.519249 0.576482 0.564163 Vertex 15248 0.597303 0.491682 0.392033 Vertex 15249 0.420198 0.294872 0.639784 Vertex 15250 0.416579 0.29897 0.638883 Vertex 15251 0.423355 0.149364 0.631735 Vertex 15252 0.583581 0.503142 0.44324 Vertex 15253 0.399641 0.255125 0.201507 Vertex 15254 0.451014 0.748713 0.443714 Vertex 15255 0.665461 0.492996 0.199144 Vertex 15256 0.418042 0.235757 0.770331 Vertex 15257 0.493272 0.229716 0.547438 Vertex 15258 0.496737 0.0806252 0.710263 Vertex 15259 0.486141 0.483597 0.389178 Vertex 15260 0.369583 0.387644 0.275345 Vertex 15261 0.517365 0.712674 0.43663 Vertex 15262 0.370673 0.388639 0.262919 Vertex 15263 0.411936 0.86841 0.414118 Vertex 15264 0.388074 0.202721 0.696085 Vertex 15265 0.388382 0.217385 0.706455 Vertex 15266 0.432387 0.19925 0.474565 Vertex 15267 0.550461 0.458521 0.361975 Vertex 15268 0.553807 0.46763 0.374946 Vertex 15269 0.575632 0.495241 0.325918 Vertex 15270 0.54445 0.146929 0.434877 Vertex 15271 0.401275 0.355117 0.273278 Vertex 15272 0.468924 0.374123 0.407171 Vertex 15273 0.600733 0.541118 0.273959 Vertex 15274 0.408785 0.157116 0.678328 Vertex 15275 0.547334 0.13416 0.445325 Vertex 15276 0.547156 0.135126 0.447439 Vertex 15277 0.557118 0.03232 0.729257 Vertex 15278 0.511034 0.0474938 0.67009 Vertex 15279 0.506539 0.0485244 0.675041 Vertex 15280 0.434803 0.803368 0.445319 Vertex 15281 0.431617 0.795988 0.432929 Vertex 15282 0.45025 0.240845 0.702297 Vertex 15283 0.485341 0.1106 0.806199 Vertex 15284 0.370027 0.209017 0.479564 Vertex 15285 0.368292 0.207483 0.478622 Vertex 15286 0.535542 0.675965 0.479025 Vertex 15287 0.3513 0.188264 0.468074 Vertex 15288 0.428744 0.490616 0.433 Vertex 15289 0.464109 0.211741 0.650646 Vertex 15290 0.353112 0.201181 0.513732 Vertex 15291 0.632626 0.497172 0.186848 Vertex 15292 0.491856 0.415925 0.387774 Vertex 15293 0.444955 0.416405 0.639867 Vertex 15294 0.49252 0.53545 0.589003 Vertex 15295 0.450386 0.618788 0.459907 Vertex 15296 0.359615 0.316957 0.515473 Vertex 15297 0.360409 0.309299 0.50345 Vertex 15298 0.524958 0.399638 0.47633 Vertex 15299 0.320733 0.985466 0.223213 Vertex 15300 0.446382 0.137655 0.629259 Vertex 15301 0.438416 0.161564 0.511665 Vertex 15302 0.417118 0.24184 0.454464 Vertex 15303 0.35599 0.159266 0.47758 Vertex 15304 0.354972 0.14886 0.47601 Vertex 15305 0.508831 0.168855 0.745278 Vertex 15306 0.489748 0.422777 0.61158 Vertex 15307 0.586293 0.431661 0.205913 Vertex 15308 0.469611 0.475211 0.395498 Vertex 15309 0.43998 0.502094 0.432686 Vertex 15310 0.430053 0.158206 0.577827 Vertex 15311 0.370815 0.102663 0.478208 Vertex 15312 0.455325 0.228171 0.644273 Vertex 15313 0.486757 0.611248 0.412253 Vertex 15314 0.488208 0.103208 0.806074 Vertex 15315 0.501333 0.0589423 0.685945 Vertex 15316 0.381819 0.483698 0.468252 Vertex 15317 0.443794 0.301167 0.424673 Vertex 15318 0.40262 0.250067 0.218481 Vertex 15319 0.399196 0.258785 0.221282 Vertex 15320 0.371247 0.44292 0.55936 Vertex 15321 0.370033 0.447037 0.549001 Vertex 15322 0.524496 0.0787181 0.714806 Vertex 15323 0.621338 0.541325 0.281522 Vertex 15324 0.415519 0.840201 0.426538 Vertex 15325 0.481314 0.0746374 0.704548 Vertex 15326 0.454632 0.196994 0.473943 Vertex 15327 0.40381 0.371185 0.376895 Vertex 15328 0.383211 0.222686 0.65462 Vertex 15329 0.54362 0.0753481 0.735441 Vertex 15330 0.589894 0.509485 0.300249 Vertex 15331 0.364134 0.12559 0.466534 Vertex 15332 0.386498 0.222917 0.702297 Vertex 15333 0.519977 0.386045 0.515651 Vertex 15334 0.606744 0.505849 0.216444 Vertex 15335 0.513048 0.04105 0.66457 Vertex 15336 0.391894 0.469341 0.423287 Vertex 15337 0.526539 0.141273 0.760185 Vertex 15338 0.567021 0.403321 0.389421 Vertex 15339 0.523081 0.172308 0.4477 Vertex 15340 0.448396 0.379986 0.63732 Vertex 15341 0.56753 0.412981 0.362941 Vertex 15342 0.4334 0.367418 0.64881 Vertex 15343 0.518485 0.0409078 0.631634 Vertex 15344 0.360438 0.225736 0.212641 Vertex 15345 0.457132 0.193553 0.61508 Vertex 15346 0.383335 0.342555 0.397174 Vertex 15347 0.499283 0.558472 0.385731 Vertex 15348 0.360119 0.25503 0.491006 Vertex 15349 0.424693 0.46548 0.599717 Vertex 15350 0.443302 0.143518 0.615732 Vertex 15351 0.482469 0.164816 0.6689 Vertex 15352 0.471921 0.495022 0.607606 Vertex 15353 0.430237 0.167836 0.55519 Vertex 15354 0.434176 0.168038 0.5531 Vertex 15355 0.399498 0.322465 0.233904 Vertex 15356 0.512159 0.551655 0.401663 Vertex 15357 0.422863 0.152751 0.714569 Vertex 15358 0.42451 0.151063 0.714705 Vertex 15359 0.620017 0.511831 0.310958 Vertex 15360 0.478282 0.673016 0.422908 Vertex 15361 0.489772 0.197456 0.544826 Vertex 15362 0.440685 0.826827 0.366394 Vertex 15363 0.519355 0.380578 0.519915 Vertex 15364 0.552297 0.521644 0.43958 Vertex 15365 0.384129 0.240016 0.225961 Vertex 15366 0.354948 0.26299 0.219488 Vertex 15367 0.358993 0.265774 0.221336 Vertex 15368 0.449699 0.478675 0.41076 Vertex 15369 0.549904 0.0108799 0.72648 Vertex 15370 0.547523 0.0131602 0.727244 Vertex 15371 0.497862 0.619925 0.558963 Vertex 15372 0.460069 0.197432 0.65048 Vertex 15373 0.361724 0.368615 0.364475 Vertex 15374 0.449012 0.0809806 0.662633 Vertex 15375 0.369056 0.383024 0.242989 Vertex 15376 0.49358 0.582251 0.571484 Vertex 15377 0.376797 0.427367 0.574018 Vertex 15378 0.360521 0.419342 0.444448 Vertex 15379 0.487705 0.198314 0.770734 Vertex 15380 0.601609 0.459302 0.185545 Vertex 15381 0.541281 0.124133 0.434469 Vertex 15382 0.561797 0.490266 0.372761 Vertex 15383 0.31834 0.97532 0.243534 Vertex 15384 0.52372 0.149488 0.444229 Vertex 15385 0.360486 0.248011 0.559893 Vertex 15386 0.487586 0.435635 0.610354 Vertex 15387 0.369891 0.42347 0.557364 Vertex 15388 0.56817 0.541906 0.491291 Vertex 15389 0.488249 0.219885 0.496929 Vertex 15390 0.352135 0.398009 0.484953 Vertex 15391 0.521588 0.108592 0.792316 Vertex 15392 0.302562 0.967467 0.235811 Vertex 15393 0.387327 0.243196 0.696102 Vertex 15394 0.429129 0.432212 0.391026 Vertex 15395 0.571451 0.532222 0.489247 Vertex 15396 0.508487 0.347228 0.592373 Vertex 15397 0.683982 0.458479 0.214702 Vertex 15398 0.583723 0.514875 0.352043 Vertex 15399 0.522524 0.11856 0.714356 Vertex 15400 0.510554 0.0898172 0.689895 Vertex 15401 0.435668 0.150193 0.592515 Vertex 15402 0.516447 0.325983 0.567586 Vertex 15403 0.586246 0.511534 0.333316 Vertex 15404 0.583255 0.500726 0.3112 Vertex 15405 0.540689 0.0500228 0.793826 Vertex 15406 0.447667 0.439983 0.632315 Vertex 15407 0.358893 0.382296 0.345812 Vertex 15408 0.521653 0.501359 0.594736 Vertex 15409 0.430847 0.866177 0.393407 Vertex 15410 0.518325 0.73165 0.48464 Vertex 15411 0.540819 0.558922 0.438928 Vertex 15412 0.468764 0.212635 0.787122 Vertex 15413 0.357596 0.918386 0.336881 Vertex 15414 0.5415 0.644486 0.471106 Vertex 15415 0.413405 0.377878 0.393827 Vertex 15416 0.47994 0.211942 0.580006 Vertex 15417 0.381719 0.9127 0.319143 Vertex 15418 0.431232 0.850879 0.430832 Vertex 15419 0.554637 0.470526 0.379275 Vertex 15420 0.455325 0.117891 0.641483 Vertex 15421 0.475806 0.0661502 0.704104 Vertex 15422 0.612483 0.473203 0.293326 Vertex 15423 0.363512 0.407319 0.310655 Vertex 15424 0.514434 0.0363415 0.66457 Vertex 15425 0.496399 0.311899 0.609051 Vertex 15426 0.472809 0.525269 0.413769 Vertex 15427 0.35817 0.352689 0.38999 Vertex 15428 0.45677 0.711223 0.450051 Vertex 15429 0.531591 0.446806 0.404162 Vertex 15430 0.50321 0.424157 0.406206 Vertex 15431 0.491584 0.080489 0.768459 Vertex 15432 0.599868 0.534627 0.292118 Vertex 15433 0.360119 0.274764 0.199878 Vertex 15434 0.388749 0.350734 0.427012 Vertex 15435 0.431196 0.152384 0.725141 Vertex 15436 0.391592 0.283524 0.232328 Vertex 15437 0.404592 0.258483 0.719598 Vertex 15438 0.527955 0.110114 0.795846 Vertex 15439 0.384473 0.213044 0.597377 Vertex 15440 0.388956 0.344474 0.279171 Vertex 15441 0.369068 0.229799 0.579455 Vertex 15442 0.366864 0.234206 0.575588 Vertex 15443 0.366545 0.22961 0.573633 Vertex 15444 0.375695 0.218416 0.221916 Vertex 15445 0.567335 0.414776 0.476389 Vertex 15446 0.482108 0.468791 0.383777 Vertex 15447 0.504353 0.588784 0.567586 Vertex 15448 0.476161 0.131643 0.645209 Vertex 15449 0.474473 0.131234 0.644818 Vertex 15450 0.446584 0.761281 0.428534 Vertex 15451 0.333852 0.937315 0.250937 Vertex 15452 0.480266 0.0653388 0.703215 Vertex 15453 0.502405 0.150726 0.702984 Vertex 15454 0.444913 0.781128 0.407959 Vertex 15455 0.524318 0.604064 0.545584 Vertex 15456 0.392403 0.430797 0.597081 Vertex 15457 0.445393 0.587587 0.479084 Vertex 15458 0.445411 0.589222 0.483579 Vertex 15459 0.329866 0.267787 0.205889 Vertex 15460 0.353769 0.260905 0.217391 Vertex 15461 0.357998 0.263014 0.21886 Vertex 15462 0.618501 0.507999 0.19623 Vertex 15463 0.49631 0.416245 0.397742 Vertex 15464 0.353995 0.411501 0.499511 Vertex 15465 0.440732 0.15849 0.580107 Vertex 15466 0.406629 0.285946 0.225582 Vertex 15467 0.605423 0.500968 0.216906 Vertex 15468 0.557568 0.504475 0.540692 Vertex 15469 0.54256 0.453966 0.559324 Vertex 15470 0.471986 0.0943895 0.766375 Vertex 15471 0.601982 0.441031 0.187636 Vertex 15472 0.390081 0.415398 0.592515 Vertex 15473 0.45677 0.157715 0.534514 Vertex 15474 0.5934 0.425875 0.199552 Vertex 15475 0.579038 0.509248 0.37481 Vertex 15476 0.576971 0.506613 0.428629 Vertex 15477 0.447638 0.176199 0.584182 Vertex 15478 0.366142 0.245441 0.573521 Vertex 15479 0.416396 0.170786 0.731336 Vertex 15480 0.438949 0.812648 0.368378 Vertex 15481 0.538166 0.112696 0.794679 Vertex 15482 0.351335 0.377516 0.447931 Vertex 15483 0.461041 0.232725 0.735488 Vertex 15484 0.515304 0.747179 0.472255 Vertex 15485 0.418759 0.262581 0.217853 Vertex 15486 0.496754 0.653554 0.54386 Vertex 15487 0.408507 0.208667 0.756241 Vertex 15488 0.390792 0.321085 0.207169 Vertex 15489 0.535666 0.404844 0.451846 Vertex 15490 0.500776 0.362277 0.447102 Vertex 15491 0.486946 0.637332 0.410689 Vertex 15492 0.503003 0.260958 0.49716 Vertex 15493 0.45805 0.369805 0.6318 Vertex 15494 0.358099 0.298721 0.233288 Vertex 15495 0.403555 0.184645 0.563494 Vertex 15496 0.563165 0.544476 0.509408 Vertex 15497 0.544219 0.609104 0.509734 Vertex 15498 0.538699 0.613031 0.526163 Vertex 15499 0.54362 0.609158 0.51369 Vertex 15500 0.426352 0.473203 0.597697 Vertex 15501 0.355742 0.260988 0.541521 Vertex 15502 0.472685 0.331906 0.420497 Vertex 15503 0.433974 0.396576 0.417684 Vertex 15504 0.405634 0.240614 0.743756 Vertex 15505 0.36629 0.375491 0.293995 Vertex 15506 0.365852 0.380359 0.289861 Vertex 15507 0.366083 0.37539 0.287776 Vertex 15508 0.630494 0.521573 0.25561 Vertex 15509 0.490932 0.269001 0.60089 Vertex 15510 0.35753 0.269001 0.224333 Vertex 15511 0.448017 0.847367 0.40264 Vertex 15512 0.39046 0.85634 0.35629 Vertex 15513 0.508475 0.0861451 0.63851 Vertex 15514 0.524455 0.153877 0.774814 Vertex 15515 0.599216 0.436536 0.389368 Vertex 15516 0.596433 0.444685 0.399596 Vertex 15517 0.398847 0.895702 0.33938 Vertex 15518 0.37088 0.315352 0.202158 Vertex 15519 0.511887 0.598224 0.557394 Vertex 15520 0.490115 0.565176 0.389285 Vertex 15521 0.453874 0.151827 0.655864 Vertex 15522 0.383999 0.313984 0.198385 Vertex 15523 0.50934 0.543144 0.396504 Vertex 15524 0.40057 0.171751 0.492635 Vertex 15525 0.574412 0.505541 0.345789 Vertex 15526 0.426399 0.842279 0.438395 Vertex 15527 0.406126 0.862653 0.41185 Vertex 15528 0.538391 0.423512 0.557228 Vertex 15529 0.429639 0.403535 0.40816 Vertex 15530 0.368345 0.282233 0.195578 Vertex 15531 0.474947 0.409309 0.619623 Vertex 15532 0.355132 0.246395 0.539288 Vertex 15533 0.515618 0.399383 0.443975 Vertex 15534 0.502641 0.403191 0.596507 Vertex 15535 0.555235 0.476496 0.377001 Vertex 15536 0.555643 0.479131 0.372784 Vertex 15537 0.396934 0.362088 0.233578 Vertex 15538 0.507237 0.0479321 0.762294 Vertex 15539 0.382968 0.472794 0.448571 Vertex 15540 0.44759 0.810427 0.460635 Vertex 15541 0.521422 0.0628631 0.778907 Vertex 15542 0.562709 0.465148 0.328323 Vertex 15543 0.525343 0.143761 0.754097 Vertex 15544 0.427578 0.410737 0.386211 Vertex 15545 0.356263 0.428126 0.4763 Vertex 15546 0.360225 0.391512 0.378962 Vertex 15547 0.634912 0.517765 0.225588 Vertex 15548 0.54275 0.644018 0.485688 Vertex 15549 0.416627 0.264263 0.689842 Vertex 15550 0.400416 0.327884 0.238014 Vertex 15551 0.520635 0.019148 0.751971 Vertex 15552 0.61336 0.482567 0.223652 Vertex 15553 0.534867 0.0835391 0.780939 Vertex 15554 0.406996 0.36425 0.266994 Vertex 15555 0.490986 0.174499 0.507501 Vertex 15556 0.385894 0.203118 0.61267 Vertex 15557 0.419286 0.25272 0.226613 Vertex 15558 0.421679 0.251494 0.225565 Vertex 15559 0.46662 0.52685 0.41907 Vertex 15560 0.694731 0.451384 0.200837 Vertex 15561 0.518378 0.342744 0.482567 Vertex 15562 0.371419 0.326345 0.256238 Vertex 15563 0.375281 0.387472 0.573841 Vertex 15564 0.376986 0.390967 0.575884 Vertex 15565 0.459809 0.151851 0.798162 Vertex 15566 0.314218 0.997116 0.212932 Vertex 15567 0.383312 0.211753 0.622946 Vertex 15568 0.556105 0.0293231 0.778777 Vertex 15569 0.508096 0.156489 0.791191 Vertex 15570 0.366533 0.348235 0.262824 Vertex 15571 0.426944 0.202366 0.477242 Vertex 15572 0.492224 0.0427083 0.679223 Vertex 15573 0.494397 0.0407716 0.680099 Vertex 15574 0.411385 0.369941 0.291057 Vertex 15575 0.371212 0.364564 0.316779 Vertex 15576 0.425617 0.13878 0.664375 Vertex 15577 0.460229 0.61299 0.442938 Vertex 15578 0.43539 0.354987 0.648982 Vertex 15579 0.447881 0.327831 0.418021 Vertex 15580 0.456818 0.131981 0.796805 Vertex 15581 0.476943 0.114888 0.805926 Vertex 15582 0.339407 0.927317 0.261882 Vertex 15583 0.397088 0.358345 0.395474 Vertex 15584 0.461212 0.21488 0.645428 Vertex 15585 0.478282 0.215709 0.492191 Vertex 15586 0.431949 0.534129 0.487251 Vertex 15587 0.363589 0.921874 0.337408 Vertex 15588 0.360308 0.922496 0.334619 Vertex 15589 0.361593 0.921353 0.336893 Vertex 15590 0.517276 0.116096 0.79106 Vertex 15591 0.507889 0.437803 0.403807 Vertex 15592 0.536099 0.120964 0.78708 Vertex 15593 0.430835 0.139585 0.638238 Vertex 15594 0.426352 0.11705 0.699087 Vertex 15595 0.428827 0.117061 0.704974 Vertex 15596 0.432772 0.401059 0.642182 Vertex 15597 0.49557 0.180742 0.515805 Vertex 15598 0.378935 0.073826 0.475459 Vertex 15599 0.373859 0.0746966 0.475981 Vertex 15600 0.593495 0.515911 0.233122 Vertex 15601 0.479454 0.0766807 0.737668 Vertex 15602 0.484933 0.103445 0.652292 Vertex 15603 0.374599 0.387194 0.56347 Vertex 15604 0.554269 0.541562 0.459362 Vertex 15605 0.518645 0.31364 0.546863 Vertex 15606 0.527185 0.342821 0.498185 Vertex 15607 0.49358 0.45457 0.386098 Vertex 15608 0.553713 0.438271 0.528313 Vertex 15609 0.50218 0.148197 0.673193 Vertex 15610 0.491092 0.627305 0.403849 Vertex 15611 0.45356 0.129019 0.805885 Vertex 15612 0.460709 0.180061 0.664973 Vertex 15613 0.384425 0.248023 0.468388 Vertex 15614 0.385539 0.241242 0.470786 Vertex 15615 0.531556 0.470994 0.58645 Vertex 15616 0.35634 0.33373 0.235864 Vertex 15617 0.46556 0.20891 0.479487 Vertex 15618 0.416242 0.530736 0.558625 Vertex 15619 0.529299 0.165835 0.439319 Vertex 15620 0.354711 0.26145 0.535249 Vertex 15621 0.444511 0.514857 0.431922 Vertex 15622 0.3643 0.209751 0.217936 Vertex 15623 0.419102 0.248989 0.198569 Vertex 15624 0.399611 0.32259 0.627755 Vertex 15625 0.369399 0.253887 0.201453 Vertex 15626 0.419102 0.184603 0.768584 Vertex 15627 0.546369 0.506607 0.415179 Vertex 15628 0.413825 0.172705 0.530297 Vertex 15629 0.40869 0.173084 0.532353 Vertex 15630 0.490316 0.693917 0.404624 Vertex 15631 0.54532 0.0428149 0.792944 Vertex 15632 0.383519 0.21398 0.658766 Vertex 15633 0.522554 0.653193 0.524185 Vertex 15634 0.397609 0.356177 0.337503 Vertex 15635 0.550041 0.0648768 0.749945 Vertex 15636 0.394902 0.350029 0.222751 Vertex 15637 0.538118 0.0496971 0.794596 Vertex 15638 0.367925 0.357148 0.531115 Vertex 15639 0.424178 0.547432 0.532364 Vertex 15640 0.481924 0.71101 0.501383 Vertex 15641 0.632081 0.485718 0.237635 Vertex 15642 0.593809 0.45611 0.437691 Vertex 15643 0.525598 0.11978 0.74792 Vertex 15644 0.407334 0.268593 0.649201 Vertex 15645 0.496968 0.178935 0.729761 Vertex 15646 0.504057 0.509402 0.396481 Vertex 15647 0.511603 0.509065 0.402705 Vertex 15648 0.548886 0.04763 0.791605 Vertex 15649 0.438008 0.488632 0.427409 Vertex 15650 0.442757 0.338557 0.642668 Vertex 15651 0.518402 0.365807 0.459995 Vertex 15652 0.510625 0.388367 0.569618 Vertex 15653 0.435846 0.183774 0.7952 Vertex 15654 0.357678 0.38656 0.399495 Vertex 15655 0.513261 0.727054 0.435245 Vertex 15656 0.5034 0.585337 0.56947 Vertex 15657 0.468041 0.189703 0.691246 Vertex 15658 0.374126 0.877318 0.311639 Vertex 15659 0.366189 0.890863 0.351948 Vertex 15660 0.327023 0.950836 0.233904 Vertex 15661 0.685551 0.471325 0.212014 Vertex 15662 0.450759 0.106247 0.725419 Vertex 15663 0.452636 0.10418 0.722648 Vertex 15664 0.44897 0.109267 0.721836 Vertex 15665 0.449551 0.107775 0.721611 Vertex 15666 0.350459 0.166214 0.458065 Vertex 15667 0.487106 0.36939 0.430062 Vertex 15668 0.485543 0.107662 0.803 Vertex 15669 0.44836 0.239418 0.455364 Vertex 15670 0.464588 0.24948 0.450975 Vertex 15671 0.409336 0.372458 0.404299 Vertex 15672 0.533054 0.680946 0.455684 Vertex 15673 0.355973 0.425727 0.469608 Vertex 15674 0.487325 0.213003 0.563429 Vertex 15675 0.514404 0.0967881 0.722618 Vertex 15676 0.494705 0.4512 0.385636 Vertex 15677 0.425641 0.808805 0.395675 Vertex 15678 0.536413 0.0740688 0.793175 Vertex 15679 0.507682 0.584975 0.405767 Vertex 15680 0.535406 0.399886 0.517854 Vertex 15681 0.544402 0.0582908 0.793346 Vertex 15682 0.433074 0.256949 0.673276 Vertex 15683 0.373699 0.35292 0.476603 Vertex 15684 0.372621 0.351095 0.478533 Vertex 15685 0.363092 0.158111 0.476277 Vertex 15686 0.4092 0.529699 0.54017 Vertex 15687 0.465435 0.67564 0.434007 Vertex 15688 0.491187 0.778611 0.423447 Vertex 15689 0.373563 0.38049 0.536119 Vertex 15690 0.522796 0.359624 0.544802 Vertex 15691 0.5873 0.468169 0.464058 Vertex 15692 0.586613 0.470514 0.466605 Vertex 15693 0.426677 0.261598 0.691927 Vertex 15694 0.355155 0.397843 0.49918 Vertex 15695 0.473869 0.475294 0.391784 Vertex 15696 0.47442 0.472593 0.387899 Vertex 15697 0.393137 0.259561 0.6318 Vertex 15698 0.388358 0.253822 0.619451 Vertex 15699 0.522115 0.388687 0.457911 Vertex 15700 0.392581 0.288475 0.234993 Vertex 15701 0.460715 0.0972738 0.662343 Vertex 15702 0.672118 0.483964 0.211546 Vertex 15703 0.493556 0.209479 0.515828 Vertex 15704 0.469635 0.595885 0.432331 Vertex 15705 0.46749 0.596655 0.43377 Vertex 15706 0.345963 0.909904 0.322815 Vertex 15707 0.408536 0.400822 0.294374 Vertex 15708 0.369364 0.0911794 0.46619 Vertex 15709 0.548157 0.0278839 0.718774 Vertex 15710 0.546422 0.547384 0.551015 Vertex 15711 0.454212 0.135611 0.79353 Vertex 15712 0.48347 0.0847059 0.727208 Vertex 15713 0.489102 0.087993 0.729003 Vertex 15714 0.59038 0.437027 0.206322 Vertex 15715 0.513332 0.477562 0.405377 Vertex 15716 0.422911 0.245252 0.222479 Vertex 15717 0.368357 0.409896 0.542895 Vertex 15718 0.358916 0.257126 0.559484 Vertex 15719 0.353527 0.125306 0.457058 Vertex 15720 0.465998 0.227815 0.754133 Vertex 15721 0.466709 0.226074 0.762424 Vertex 15722 0.586192 0.423263 0.206103 Vertex 15723 0.480266 0.114094 0.814864 Vertex 15724 0.605506 0.481607 0.276748 Vertex 15725 0.361966 0.191361 0.518055 Vertex 15726 0.605465 0.509195 0.200695 Vertex 15727 0.497021 0.646761 0.54617 Vertex 15728 0.512461 0.35398 0.450792 Vertex 15729 0.349221 0.181678 0.468175 Vertex 15730 0.442799 0.253401 0.735458 Vertex 15731 0.36921 0.219328 0.235917 Vertex 15732 0.415418 0.855611 0.344142 Vertex 15733 0.375885 0.424702 0.349881 Vertex 15734 0.430474 0.499742 0.441647 Vertex 15735 0.435828 0.281297 0.431105 Vertex 15736 0.475913 0.082479 0.652926 Vertex 15737 0.663282 0.459871 0.20801 Vertex 15738 0.549756 0.0366139 0.720421 Vertex 15739 0.613176 0.511777 0.350219 Vertex 15740 0.618595 0.491237 0.255095 Vertex 15741 0.588905 0.495046 0.281427 Vertex 15742 0.586329 0.492114 0.287972 Vertex 15743 0.386368 0.389356 0.606925 Vertex 15744 0.409964 0.457958 0.399934 Vertex 15745 0.368659 0.214116 0.229888 Vertex 15746 0.533854 0.134675 0.456205 Vertex 15747 0.484749 0.169957 0.696339 Vertex 15748 0.42066 0.219885 0.469217 Vertex 15749 0.366533 0.38733 0.287741 Vertex 15750 0.50555 0.767245 0.451425 Vertex 15751 0.429201 0.806809 0.437021 Vertex 15752 0.489813 0.358931 0.626085 Vertex 15753 0.461982 0.152479 0.65542 Vertex 15754 0.518716 0.588677 0.421303 Vertex 15755 0.4153 0.414403 0.357131 Vertex 15756 0.487035 0.316578 0.6257 Vertex 15757 0.545735 0.14629 0.432656 Vertex 15758 0.495783 0.545714 0.380063 Vertex 15759 0.412025 0.17386 0.542729 Vertex 15760 0.359775 0.889009 0.312586 Vertex 15761 0.505532 0.420053 0.600309 Vertex 15762 0.466377 0.124554 0.813033 Vertex 15763 0.316925 0.992786 0.202822 Vertex 15764 0.382832 0.321583 0.617349 Vertex 15765 0.51197 0.0578289 0.730507 Vertex 15766 0.523312 0.718212 0.484681 Vertex 15767 0.384129 0.288203 0.611071 Vertex 15768 0.387233 0.293847 0.615228 Vertex 15769 0.470949 0.0614713 0.691862 Vertex 15770 0.401654 0.347915 0.219079 Vertex 15771 0.404604 0.343888 0.217936 Vertex 15772 0.614864 0.527336 0.30568 Vertex 15773 0.611245 0.526116 0.308168 Vertex 15774 0.59882 0.517576 0.26418 Vertex 15775 0.615794 0.536481 0.252649 Vertex 15776 0.527274 0.390665 0.441256 Vertex 15777 0.384366 0.208898 0.586231 Vertex 15778 0.38914 0.200571 0.582056 Vertex 15779 0.481841 0.399649 0.390682 Vertex 15780 0.48052 0.401533 0.387301 Vertex 15781 0.396756 0.364167 0.23478 Vertex 15782 0.538029 0.403511 0.447658 Vertex 15783 0.585292 0.509752 0.322886 Vertex 15784 0.487408 0.264743 0.602909 Vertex 15785 0.467135 0.182726 0.679685 Vertex 15786 0.35952 0.30131 0.502579 Vertex 15787 0.395056 0.508064 0.534431 Vertex 15788 0.396756 0.191308 0.704364 Vertex 15789 0.458944 0.235349 0.745829 Vertex 15790 0.443782 0.504883 0.43149 Vertex 15791 0.424338 0.841036 0.348768 Vertex 15792 0.562022 0.43069 0.351634 Vertex 15793 0.517963 0.699425 0.50332 Vertex 15794 0.492709 0.423097 0.386631 Vertex 15795 0.372556 0.373199 0.533128 Vertex 15796 0.36706 0.219287 0.233797 Vertex 15797 0.483867 0.101704 0.78942 Vertex 15798 0.474728 0.212772 0.727161 Vertex 15799 0.574223 0.526785 0.466025 Vertex 15800 0.560417 0.0276884 0.743839 Vertex 15801 0.633905 0.518825 0.26116 Vertex 15802 0.545308 0.452391 0.553135 Vertex 15803 0.65711 0.425117 0.202632 Vertex 15804 0.498667 0.49934 0.602376 Vertex 15805 0.369204 0.455666 0.461618 Vertex 15806 0.448929 0.165278 0.55108 Vertex 15807 0.306305 0.985928 0.232873 Vertex 15808 0.424379 0.37449 0.637965 Vertex 15809 0.4334 0.142819 0.727161 Vertex 15810 0.444463 0.21398 0.469353 Vertex 15811 0.50427 0.420373 0.416446 Vertex 15812 0.535678 0.119235 0.430252 Vertex 15813 0.337482 0.920595 0.26546 Vertex 15814 0.527736 0.0548912 0.791025 Vertex 15815 0.66083 0.423198 0.231813 Vertex 15816 0.468841 0.448369 0.379548 Vertex 15817 0.459477 0.0765682 0.704276 Vertex 15818 0.627242 0.501176 0.291152 Vertex 15819 0.528861 0.46978 0.407076 Vertex 15820 0.516406 0.106247 0.711199 Vertex 15821 0.612075 0.449299 0.194133 Vertex 15822 0.507771 0.160326 0.459877 Vertex 15823 0.527096 0.450792 0.588191 Vertex 15824 0.523164 0.447475 0.592456 Vertex 15825 0.426577 0.261491 0.687775 Vertex 15826 0.406078 0.280995 0.20583 Vertex 15827 0.571333 0.502941 0.4148 Vertex 15828 0.413008 0.175246 0.590442 Vertex 15829 0.397331 0.369396 0.233773 Vertex 15830 0.366112 0.25673 0.575351 Vertex 15831 0.626555 0.493411 0.264684 Vertex 15832 0.474716 0.803421 0.408664 Vertex 15833 0.369388 0.22467 0.578312 Vertex 15834 0.523288 0.639647 0.432804 Vertex 15835 0.475226 0.166504 0.509929 Vertex 15836 0.45131 0.157116 0.51372 Vertex 15837 0.367528 0.357545 0.450774 Vertex 15838 0.37964 0.371499 0.603004 Vertex 15839 0.454893 0.137234 0.79571 Vertex 15840 0.406303 0.503699 0.457751 Vertex 15841 0.465074 0.224605 0.725094 Vertex 15842 0.607763 0.503776 0.235675 Vertex 15843 0.449705 0.607635 0.500648 Vertex 15844 0.44884 0.608056 0.496609 Vertex 15845 0.372521 0.378203 0.535971 Vertex 15846 0.460212 0.751532 0.413728 Vertex 15847 0.527914 0.0149073 0.737608 Vertex 15848 0.587472 0.409286 0.384742 Vertex 15849 0.493663 0.232755 0.521899 Vertex 15850 0.496446 0.335383 0.615282 Vertex 15851 0.480959 0.6275 0.534923 Vertex 15852 0.446566 0.82068 0.371061 Vertex 15853 0.527955 0.11041 0.758225 Vertex 15854 0.463279 0.162696 0.544772 Vertex 15855 0.423148 0.139745 0.654288 Vertex 15856 0.491051 0.229177 0.517854 Vertex 15857 0.518674 0.463022 0.408717 Vertex 15858 0.432624 0.251535 0.757994 Vertex 15859 0.420168 0.403321 0.375639 Vertex 15860 0.351424 0.0977891 0.452799 Vertex 15861 0.3531 0.0952601 0.45229 Vertex 15862 0.642653 0.426657 0.19928 Vertex 15863 0.495528 0.639701 0.404832 Vertex 15864 0.475255 0.338184 0.421545 Vertex 15865 0.419079 0.369841 0.329235 Vertex 15866 0.436639 0.272904 0.434344 Vertex 15867 0.6089 0.489419 0.3838 Vertex 15868 0.367552 0.46208 0.498949 Vertex 15869 0.36902 0.465349 0.497119 Vertex 15870 0.559754 0.443151 0.341394 Vertex 15871 0.392634 0.44404 0.396019 Vertex 15872 0.431765 0.168446 0.778954 Vertex 15873 0.421276 0.144916 0.638493 Vertex 15874 0.374736 0.26954 0.594493 Vertex 15875 0.529501 0.0598959 0.784913 Vertex 15876 0.365248 0.203076 0.474766 Vertex 15877 0.379711 0.427533 0.319907 Vertex 15878 0.361202 0.160475 0.453018 Vertex 15879 0.45311 0.595849 0.453569 Vertex 15880 0.339407 0.277974 0.201406 Vertex 15881 0.373758 0.378648 0.52306 Vertex 15882 0.521126 0.534141 0.408137 Vertex 15883 0.519083 0.532382 0.406052 Vertex 15884 0.40259 0.520809 0.522083 Vertex 15885 0.489404 0.39073 0.41817 Vertex 15886 0.420565 0.385666 0.416701 Vertex 15887 0.363779 0.313433 0.245601 Vertex 15888 0.521499 0.310703 0.521727 Vertex 15889 0.352117 0.185338 0.493032 Vertex 15890 0.583906 0.501347 0.387082 Vertex 15891 0.369056 0.345439 0.389214 Vertex 15892 0.396336 0.430352 0.330419 Vertex 15893 0.519018 0.365671 0.557257 Vertex 15894 0.373356 0.346174 0.475602 Vertex 15895 0.465423 0.47434 0.397932 Vertex 15896 0.48851 0.20766 0.480506 Vertex 15897 0.447573 0.315482 0.420823 Vertex 15898 0.43905 0.0929443 0.6647 Vertex 15899 0.459797 0.192712 0.637877 Vertex 15900 0.657869 0.450454 0.202354 Vertex 15901 0.485543 0.401995 0.392862 Vertex 15902 0.39001 0.25439 0.210509 Vertex 15903 0.440347 0.141913 0.607529 Vertex 15904 0.500527 0.592758 0.402243 Vertex 15905 0.519195 0.527585 0.588434 Vertex 15906 0.326975 0.250665 0.231754 Vertex 15907 0.327165 0.256108 0.232826 Vertex 15908 0.509476 0.70363 0.507572 Vertex 15909 0.413695 0.271596 0.213778 Vertex 15910 0.534126 0.40447 0.450602 Vertex 15911 0.554856 0.524179 0.449453 Vertex 15912 0.448728 0.630817 0.47036 Vertex 15913 0.427791 0.2307 0.462033 Vertex 15914 0.424421 0.22836 0.463892 Vertex 15915 0.430012 0.229201 0.462767 Vertex 15916 0.470298 0.217818 0.723027 Vertex 15917 0.67797 0.454789 0.195466 Vertex 15918 0.678787 0.456708 0.192427 Vertex 15919 0.62485 0.531079 0.28347 Vertex 15920 0.342813 0.937054 0.30972 Vertex 15921 0.497637 0.7209 0.517866 Vertex 15922 0.497773 0.723323 0.515651 Vertex 15923 0.531899 0.472925 0.404613 Vertex 15924 0.527665 0.472557 0.407604 Vertex 15925 0.646799 0.421569 0.202952 Vertex 15926 0.373356 0.87592 0.32654 Vertex 15927 0.436124 0.511043 0.444638 Vertex 15928 0.446655 0.333144 0.639298 Vertex 15929 0.399498 0.241035 0.724863 Vertex 15930 0.407666 0.363432 0.304348 Vertex 15931 0.380356 0.451686 0.424146 Vertex 15932 0.414797 0.158911 0.629757 Vertex 15933 0.530004 0.111062 0.720356 Vertex 15934 0.480289 0.760085 0.500619 Vertex 15935 0.37136 0.189555 0.549108 Vertex 15936 0.500563 0.448742 0.607073 Vertex 15937 0.59831 0.51298 0.226643 Vertex 15938 0.556514 0.50576 0.408912 Vertex 15939 0.5181 0.3794 0.536611 Vertex 15940 0.45404 0.0847059 0.659364 Vertex 15941 0.452477 0.0836695 0.658784 Vertex 15942 0.366533 0.101816 0.482342 Vertex 15943 0.596883 0.436311 0.33742 Vertex 15944 0.41809 0.834391 0.362112 Vertex 15945 0.363903 0.412821 0.360258 Vertex 15946 0.510868 0.638054 0.421747 Vertex 15947 0.415738 0.249166 0.751917 Vertex 15948 0.393706 0.360412 0.366554 Vertex 15949 0.634741 0.516349 0.235953 Vertex 15950 0.519195 0.526252 0.405075 Vertex 15951 0.453128 0.765936 0.414172 Vertex 15952 0.419286 0.23924 0.768536 Vertex 15953 0.486413 0.186493 0.72427 Vertex 15954 0.475978 0.077575 0.729311 Vertex 15955 0.478702 0.152834 0.653495 Vertex 15956 0.554477 0.550624 0.481974 Vertex 15957 0.411296 0.374999 0.281374 Vertex 15958 0.464393 0.226358 0.733391 Vertex 15959 0.485892 0.191788 0.78647 Vertex 15960 0.577303 0.499707 0.396285 Vertex 15961 0.370122 0.344971 0.218374 Vertex 15962 0.600496 0.447037 0.39298 Vertex 15963 0.398592 0.259081 0.673193 Vertex 15964 0.610914 0.504563 0.370729 Vertex 15965 0.426488 0.133586 0.691032 Vertex 15966 0.466069 0.702274 0.432982 Vertex 15967 0.422431 0.163987 0.584188 Vertex 15968 0.417835 0.39378 0.36393 Vertex 15969 0.557468 0.432834 0.355229 Vertex 15970 0.55893 0.429636 0.35732 Vertex 15971 0.445227 0.815515 0.366542 Vertex 15972 0.452832 0.241568 0.720954 Vertex 15973 0.488534 0.211439 0.555143 Vertex 15974 0.547387 0.418353 0.532347 Vertex 15975 0.535163 0.461452 0.401592 Vertex 15976 0.506787 0.263476 0.53635 Vertex 15977 0.675269 0.475157 0.19694 Vertex 15978 0.555187 0.471687 0.348602 Vertex 15979 0.399729 0.286219 0.235373 Vertex 15980 0.532699 0.618924 0.530422 Vertex 15981 0.539948 0.454179 0.39259 Vertex 15982 0.463203 0.213956 0.65847 Vertex 15983 0.400221 0.25224 0.219186 Vertex 15984 0.501996 0.19113 0.459907 Vertex 15985 0.500231 0.189626 0.456785 Vertex 15986 0.537467 0.00668669 0.733338 Vertex 15987 0.591576 0.520774 0.308316 Vertex 15988 0.489079 0.167357 0.688835 Vertex 15989 0.452577 0.532512 0.434374 Vertex 15990 0.637027 0.477929 0.185918 Vertex 15991 0.4145 0.843298 0.424471 Vertex 15992 0.492502 0.0305432 0.654105 Vertex 15993 0.487859 0.686668 0.515562 Vertex 15994 0.498188 0.323016 0.609057 Vertex 15995 0.538752 0.0512251 0.794105 Vertex 15996 0.527274 0.46513 0.590359 Vertex 15997 0.37486 0.319551 0.474358 Vertex 15998 0.375144 0.31383 0.47033 Vertex 15999 0.39739 0.333547 0.252519 Vertex 16000 0.566269 0.530001 0.459954 Vertex 16001 0.60322 0.530943 0.250505 Vertex 16002 0.593252 0.427616 0.352084 Vertex 16003 0.445855 0.44863 0.401278 Vertex 16004 0.409827 0.16484 0.628554 Vertex 16005 0.419985 0.39638 0.355146 Vertex 16006 0.59266 0.421332 0.390102 Vertex 16007 0.365822 0.380259 0.279485 Vertex 16008 0.407393 0.156583 0.644516 Vertex 16009 0.475196 0.20827 0.712662 Vertex 16010 0.492982 0.703808 0.523794 Vertex 16011 0.581063 0.431987 0.45152 Vertex 16012 0.557432 0.533395 0.463952 Vertex 16013 0.521037 0.394538 0.546608 Vertex 16014 0.484631 0.120029 0.807111 Vertex 16015 0.607792 0.473558 0.216876 Vertex 16016 0.489582 0.228455 0.569825 Vertex 16017 0.490388 0.223219 0.561403 Vertex 16018 0.467976 0.185788 0.675829 Vertex 16019 0.418214 0.538411 0.517866 Vertex 16020 0.501605 0.653886 0.409143 Vertex 16021 0.458867 0.675503 0.486878 Vertex 16022 0.456119 0.678725 0.476715 Vertex 16023 0.381298 0.240122 0.231357 Vertex 16024 0.373676 0.238423 0.238529 Vertex 16025 0.656921 0.456424 0.210651 Vertex 16026 0.605684 0.501306 0.211303 Vertex 16027 0.591304 0.516107 0.322353 Vertex 16028 0.541719 0.588588 0.447422 Vertex 16029 0.409016 0.23513 0.752054 Vertex 16030 0.522891 0.0413461 0.635881 Vertex 16031 0.48976 0.12087 0.797723 Vertex 16032 0.489926 0.119934 0.798322 Vertex 16033 0.644614 0.423423 0.20156 Vertex 16034 0.516376 0.360891 0.468767 Vertex 16035 0.473638 0.539673 0.412199 Vertex 16036 0.431647 0.848901 0.437092 Vertex 16037 0.438227 0.508159 0.438301 Vertex 16038 0.595562 0.454304 0.426663 Vertex 16039 0.475314 0.416268 0.375384 Vertex 16040 0.588798 0.44157 0.187719 Vertex 16041 0.45635 0.177982 0.648336 Vertex 16042 0.549306 0.159089 0.428647 Vertex 16043 0.323617 0.953069 0.279425 Vertex 16044 0.555993 0.410577 0.389391 Vertex 16045 0.620331 0.482152 0.186173 Vertex 16046 0.627592 0.486168 0.18622 Vertex 16047 0.339721 0.120147 0.469537 Vertex 16048 0.514078 0.08133 0.682646 Vertex 16049 0.457416 0.223462 0.664973 Vertex 16050 0.52314 0.358742 0.536498 Vertex 16051 0.597712 0.486861 0.277323 Vertex 16052 0.633443 0.513809 0.206731 Vertex 16053 0.506349 0.618273 0.415084 Vertex 16054 0.527683 0.124133 0.718454 Vertex 16055 0.55023 0.56225 0.503586 Vertex 16056 0.324843 0.923497 0.273378 Vertex 16057 0.357418 0.242343 0.551015 Vertex 16058 0.390123 0.306433 0.195714 Vertex 16059 0.389619 0.302488 0.194299 Vertex 16060 0.491554 0.0589719 0.74792 Vertex 16061 0.494628 0.0560047 0.749098 Vertex 16062 0.625383 0.528065 0.266005 Vertex 16063 0.525124 0.33819 0.523771 Vertex 16064 0.471032 0.0896276 0.758272 Vertex 16065 0.584505 0.411181 0.395557 Vertex 16066 0.589183 0.505973 0.287332 Vertex 16067 0.47272 0.363948 0.415315 Vertex 16068 0.465572 0.685566 0.495099 Vertex 16069 0.560263 0.405009 0.478504 Vertex 16070 0.511058 0.0971376 0.723127 Vertex 16071 0.699274 0.44924 0.210568 Vertex 16072 0.490411 0.548616 0.380756 Vertex 16073 0.328077 0.924451 0.259069 Vertex 16074 0.500207 0.560799 0.388153 Vertex 16075 0.553576 0.449785 0.3708 Vertex 16076 0.657922 0.458598 0.212363 Vertex 16077 0.496831 0.125359 0.795929 Vertex 16078 0.489831 0.126881 0.7969 Vertex 16079 0.367267 0.414201 0.313214 Vertex 16080 0.41986 0.235023 0.213322 Vertex 16081 0.357963 0.401716 0.3396 Vertex 16082 0.39556 0.270713 0.22836 Vertex 16083 0.39328 0.178906 0.671203 Vertex 16084 0.438795 0.328459 0.418691 Vertex 16085 0.372965 0.374164 0.493038 Vertex 16086 0.416887 0.245713 0.222834 Vertex 16087 0.443575 0.167848 0.588298 Vertex 16088 0.382601 0.262404 0.462187 Vertex 16089 0.324334 0.969498 0.249824 Vertex 16090 0.326057 0.968663 0.243102 Vertex 16091 0.621201 0.487938 0.317632 Vertex 16092 0.505022 0.568167 0.573746 Vertex 16093 0.465666 0.197142 0.677387 Vertex 16094 0.470185 0.438058 0.37295 Vertex 16095 0.335735 0.912368 0.300771 Vertex 16096 0.532823 0.128688 0.437377 Vertex 16097 0.512064 0.28796 0.548948 Vertex 16098 0.447111 0.608145 0.47142 Vertex 16099 0.529524 0.523113 0.417885 Vertex 16100 0.354664 0.263872 0.535521 Vertex 16101 0.433115 0.215585 0.470372 Vertex 16102 0.369251 0.302174 0.241058 Vertex 16103 0.539936 0.13387 0.439823 Vertex 16104 0.428786 0.815918 0.38537 Vertex 16105 0.625418 0.450383 0.202869 Vertex 16106 0.590729 0.41336 0.384878 Vertex 16107 0.39739 0.25715 0.217995 Vertex 16108 0.361451 0.341678 0.559573 Vertex 16109 0.515044 0.144756 0.706585 Vertex 16110 0.484252 0.0912031 0.775105 Vertex 16111 0.394742 0.341222 0.266863 Vertex 16112 0.350222 0.294481 0.233033 Vertex 16113 0.448929 0.754642 0.432668 Vertex 16114 0.528144 0.12042 0.716986 Vertex 16115 0.492863 0.615791 0.402587 Vertex 16116 0.490897 0.057746 0.743525 Vertex 16117 0.470665 0.531464 0.41419 Vertex 16118 0.462148 0.25118 0.619593 Vertex 16119 0.329783 0.918883 0.269375 Vertex 16120 0.65855 0.406745 0.226891 Vertex 16121 0.658023 0.406241 0.225967 Vertex 16122 0.657833 0.405714 0.226157 Vertex 16123 0.653083 0.480375 0.218457 Vertex 16124 0.599643 0.520555 0.25776 Vertex 16125 0.493568 0.173629 0.78942 Vertex 16126 0.643157 0.460303 0.187772 Vertex 16127 0.387179 0.197758 0.637065 Vertex 16128 0.359858 0.132472 0.456827 Vertex 16129 0.471086 0.0839419 0.731378 Vertex 16130 0.396857 0.272887 0.629733 Vertex 16131 0.373208 0.319024 0.254153 Vertex 16132 0.372888 0.370818 0.230155 Vertex 16133 0.493296 0.306865 0.613215 Vertex 16134 0.494901 0.303151 0.609069 Vertex 16135 0.479898 0.354305 0.42289 Vertex 16136 0.545184 0.545418 0.438046 Vertex 16137 0.503601 0.174825 0.740789 Vertex 16138 0.440436 0.78499 0.407917 Vertex 16139 0.488942 0.18028 0.712443 Vertex 16140 0.469439 0.29117 0.431667 Vertex 16141 0.360936 0.264648 0.223296 Vertex 16142 0.492224 0.498558 0.392021 Vertex 16143 0.489677 0.499375 0.390996 Vertex 16144 0.413026 0.385944 0.371914 Vertex 16145 0.364087 0.886178 0.304046 Vertex 16146 0.470085 0.607772 0.431975 Vertex 16147 0.697059 0.452521 0.217664 Vertex 16148 0.582805 0.497823 0.476383 Vertex 16149 0.424 0.823137 0.377001 Vertex 16150 0.446311 0.340707 0.639316 Vertex 16151 0.363654 0.433432 0.452663 Vertex 16152 0.498762 0.290228 0.451573 Vertex 16153 0.498342 0.631356 0.553745 Vertex 16154 0.486946 0.135357 0.797019 Vertex 16155 0.482949 0.134373 0.798091 Vertex 16156 0.373172 0.312634 0.476739 Vertex 16157 0.422182 0.37783 0.322477 Vertex 16158 0.421323 0.376592 0.318177 Vertex 16159 0.478524 0.247319 0.602791 Vertex 16160 0.569408 0.501685 0.362491 Vertex 16161 0.306744 0.981119 0.237256 Vertex 16162 0.448307 0.233827 0.459735 Vertex 16163 0.511466 0.101408 0.801034 Vertex 16164 0.479283 0.776905 0.487524 Vertex 16165 0.379746 0.24415 0.206079 Vertex 16166 0.468717 0.700894 0.492937 Vertex 16167 0.367717 0.294966 0.235621 Vertex 16168 0.553713 0.412946 0.51372 Vertex 16169 0.532154 0.688142 0.459818 Vertex 16170 0.512757 0.124405 0.702274 Vertex 16171 0.377804 0.179936 0.499055 Vertex 16172 0.489375 0.430429 0.611 Vertex 16173 0.430474 0.224374 0.786944 Vertex 16174 0.369263 0.464035 0.513868 Vertex 16175 0.45327 0.801419 0.466943 Vertex 16176 0.384022 0.490811 0.47649 Vertex 16177 0.545599 0.624888 0.484379 Vertex 16178 0.310664 0.948372 0.259815 Vertex 16179 0.313892 0.942769 0.266727 Vertex 16180 0.529803 0.637367 0.52415 Vertex 16181 0.570782 0.476768 0.31778 Vertex 16182 0.522731 0.154966 0.760334 Vertex 16183 0.627503 0.494613 0.268889 Vertex 16184 0.584208 0.428037 0.434931 Vertex 16185 0.5216 0.667543 0.517949 Vertex 16186 0.620289 0.480654 0.224599 Vertex 16187 0.356233 0.397571 0.433272 Vertex 16188 0.521037 0.127373 0.710305 Vertex 16189 0.519409 0.12578 0.710944 Vertex 16190 0.524686 0.523427 0.586503 Vertex 16191 0.52285 0.0434664 0.657842 Vertex 16192 0.372627 0.46641 0.530333 Vertex 16193 0.494397 0.163673 0.681153 Vertex 16194 0.373196 0.371961 0.505517 Vertex 16195 0.532563 0.0431407 0.781158 Vertex 16196 0.51775 0.733569 0.450584 Vertex 16197 0.44948 0.18137 0.582073 Vertex 16198 0.510436 0.0931161 0.64621 Vertex 16199 0.512295 0.0938979 0.650308 Vertex 16200 0.384159 0.250025 0.221798 Vertex 16201 0.497228 0.0495845 0.73698 Vertex 16202 0.421537 0.399679 0.622946 Vertex 16203 0.546558 0.417897 0.395705 Vertex 16204 0.439085 0.255018 0.741689 Vertex 16205 0.652124 0.485718 0.19142 Vertex 16206 0.476943 0.230113 0.478865 Vertex 16207 0.547642 0.477218 0.390374 Vertex 16208 0.569763 0.496088 0.339475 Vertex 16209 0.566594 0.496124 0.347856 Vertex 16210 0.665313 0.455571 0.196395 Vertex 16211 0.481989 0.0948218 0.776769 Vertex 16212 0.489244 0.13583 0.646749 Vertex 16213 0.364685 0.242231 0.487346 Vertex 16214 0.540505 0.0479558 0.710862 Vertex 16215 0.525 0.0819578 0.71249 Vertex 16216 0.374203 0.876441 0.319267 Vertex 16217 0.368837 0.16892 0.459545 Vertex 16218 0.477565 0.455222 0.377807 Vertex 16219 0.474627 0.458082 0.379423 Vertex 16220 0.438114 0.139828 0.739539 Vertex 16221 0.518905 0.124186 0.790652 Vertex 16222 0.402389 0.168731 0.687822 Vertex 16223 0.510323 0.394976 0.577927 Vertex 16224 0.478649 0.169779 0.532347 Vertex 16225 0.355369 0.301576 0.19694 Vertex 16226 0.352271 0.30465 0.20015 Vertex 16227 0.366266 0.307629 0.581084 Vertex 16228 0.383158 0.269392 0.458633 Vertex 16229 0.512414 0.0853574 0.687455 Vertex 16230 0.386001 0.468275 0.43573 Vertex 16231 0.465204 0.508129 0.604751 Vertex 16232 0.398462 0.191568 0.710577 Vertex 16233 0.633064 0.485202 0.236717 Vertex 16234 0.589456 0.431798 0.193564 Vertex 16235 0.590818 0.433533 0.194761 Vertex 16236 0.444339 0.524896 0.437039 Vertex 16237 0.437048 0.810137 0.452065 Vertex 16238 0.38516 0.480879 0.45784 Vertex 16239 0.522062 0.15807 0.764396 Vertex 16240 0.465903 0.821213 0.446829 Vertex 16241 0.460721 0.816569 0.457508 Vertex 16242 0.533528 0.439941 0.57586 Vertex 16243 0.354658 0.245944 0.526584 Vertex 16244 0.372461 0.412348 0.383125 Vertex 16245 0.438132 0.317549 0.420266 Vertex 16246 0.490139 0.530001 0.386969 Vertex 16247 0.489677 0.52505 0.388142 Vertex 16248 0.539812 0.074288 0.766523 Vertex 16249 0.538764 0.0793459 0.760375 Vertex 16250 0.459317 0.578597 0.439515 Vertex 16251 0.311191 0.961852 0.257736 Vertex 16252 0.442479 0.237445 0.455275 Vertex 16253 0.461183 0.173179 0.559407 Vertex 16254 0.400002 0.361271 0.40607 Vertex 16255 0.398687 0.359956 0.401811 Vertex 16256 0.48639 0.106057 0.795686 Vertex 16257 0.663359 0.429796 0.219322 Vertex 16258 0.363264 0.396333 0.516705 Vertex 16259 0.34607 0.121865 0.472717 Vertex 16260 0.55238 0.548344 0.469229 Vertex 16261 0.436947 0.206446 0.795467 Vertex 16262 0.487337 0.327423 0.626813 Vertex 16263 0.460727 0.17258 0.65873 Vertex 16264 0.351063 0.3742 0.439011 Vertex 16265 0.373196 0.3475 0.279425 Vertex 16266 0.511928 0.106572 0.707604 Vertex 16267 0.455675 0.142452 0.791007 Vertex 16268 0.350696 0.261385 0.215816 Vertex 16269 0.605832 0.507596 0.223598 Vertex 16270 0.392421 0.329851 0.211279 Vertex 16271 0.546096 0.00136221 0.733208 Vertex 16272 0.60001 0.536463 0.288203 Vertex 16273 0.502339 0.69015 0.528284 Vertex 16274 0.503927 0.694408 0.522136 Vertex 16275 0.546777 0.0495845 0.720515 Vertex 16276 0.406493 0.378298 0.265039 Vertex 16277 0.374286 0.874647 0.354163 Vertex 16278 0.50151 0.77167 0.470182 Vertex 16279 0.551047 0.0449945 0.791629 Vertex 16280 0.456001 0.169222 0.800886 Vertex 16281 0.609551 0.483325 0.219215 Vertex 16282 0.390265 0.242041 0.704364 Vertex 16283 0.40137 0.505896 0.472344 Vertex 16284 0.371028 0.367519 0.503397 Vertex 16285 0.570598 0.404731 0.41419 Vertex 16286 0.383679 0.409819 0.290607 Vertex 16287 0.534529 0.499049 0.417329 Vertex 16288 0.480349 0.750502 0.497113 Vertex 16289 0.51438 0.118791 0.692081 Vertex 16290 0.464571 0.636769 0.435363 Vertex 16291 0.5812 0.40723 0.391393 Vertex 16292 0.334083 0.277062 0.227211 Vertex 16293 0.493704 0.474429 0.391435 Vertex 16294 0.492265 0.523765 0.387028 Vertex 16295 0.364407 0.238707 0.233169 Vertex 16296 0.638792 0.490675 0.239897 Vertex 16297 0.620372 0.450869 0.202484 Vertex 16298 0.425807 0.396765 0.399075 Vertex 16299 0.510708 0.0288315 0.66791 Vertex 16300 0.417651 0.154439 0.708522 Vertex 16301 0.537141 0.0511896 0.718354 Vertex 16302 0.469581 0.103392 0.651872 Vertex 16303 0.406197 0.404891 0.612314 Vertex 16304 0.475853 0.520264 0.4097 Vertex 16305 0.546878 0.398968 0.451413 Vertex 16306 0.481231 0.31325 0.630379 Vertex 16307 0.47012 0.50149 0.407929 Vertex 16308 0.470813 0.505144 0.407562 Vertex 16309 0.555401 0.402232 0.403144 Vertex 16310 0.383774 0.307676 0.193381 Vertex 16311 0.461633 0.776331 0.38489 Vertex 16312 0.446039 0.762934 0.439077 Vertex 16313 0.401554 0.84488 0.401799 Vertex 16314 0.399013 0.845347 0.391595 Vertex 16315 0.44162 0.469365 0.412733 Vertex 16316 0.464097 0.381402 0.401918 Vertex 16317 0.410805 0.263819 0.714759 Vertex 16318 0.417118 0.397499 0.368775 Vertex 16319 0.559819 0.0262492 0.751965 Vertex 16320 0.458204 0.803107 0.476425 Vertex 16321 0.372657 0.184686 0.540668 Vertex 16322 0.377164 0.453729 0.433 Vertex 16323 0.399925 0.863003 0.401391 Vertex 16324 0.427939 0.156382 0.729251 Vertex 16325 0.502884 0.284584 0.461002 Vertex 16326 0.322131 0.933074 0.283506 Vertex 16327 0.424462 0.251139 0.445728 Vertex 16328 0.479478 0.538548 0.400028 Vertex 16329 0.35878 0.40463 0.514549 Vertex 16330 0.544574 0.16529 0.44215 Vertex 16331 0.485093 0.479872 0.387668 Vertex 16332 0.328948 0.240993 0.22868 Vertex 16333 0.449687 0.245767 0.723027 Vertex 16334 0.642422 0.440895 0.215816 Vertex 16335 0.523258 0.154884 0.768637 Vertex 16336 0.489055 0.660027 0.40607 Vertex 16337 0.405226 0.361318 0.300226 Vertex 16338 0.500367 0.690843 0.532809 Vertex 16339 0.473739 0.290151 0.628276 Vertex 16340 0.435526 0.85387 0.371641 Vertex 16341 0.504951 0.166255 0.470271 Vertex 16342 0.50966 0.169613 0.470911 Vertex 16343 0.495434 0.175423 0.787276 Vertex 16344 0.495161 0.172989 0.78913 Vertex 16345 0.497447 0.172717 0.787264 Vertex 16346 0.391965 0.186522 0.562416 Vertex 16347 0.46813 0.0922988 0.658393 Vertex 16348 0.35528 0.20936 0.53134 Vertex 16349 0.525639 0.69124 0.499174 Vertex 16350 0.530371 0.0607369 0.787122 Vertex 16351 0.585559 0.504427 0.382888 Vertex 16352 0.590084 0.424051 0.197977 Vertex 16353 0.595864 0.425999 0.197071 Vertex 16354 0.53954 0.436808 0.56347 Vertex 16355 0.535317 0.428315 0.567551 Vertex 16356 0.443516 0.767749 0.434943 Vertex 16357 0.456083 0.648549 0.447386 Vertex 16358 0.452796 0.633695 0.453291 Vertex 16359 0.352597 0.369023 0.420432 Vertex 16360 0.472471 0.077575 0.712798 Vertex 16361 0.498123 0.76644 0.430974 Vertex 16362 0.518923 0.116013 0.710648 Vertex 16363 0.533895 0.589086 0.540668 Vertex 16364 0.507468 0.666661 0.420402 Vertex 16365 0.476446 0.596305 0.426959 Vertex 16366 0.383288 0.187991 0.47973 Vertex 16367 0.525858 0.143405 0.764592 Vertex 16368 0.39004 0.406798 0.284744 Vertex 16369 0.383478 0.214021 0.681568 Vertex 16370 0.383661 0.21228 0.673276 Vertex 16371 0.524863 0.326884 0.506701 Vertex 16372 0.471678 0.216864 0.727149 Vertex 16373 0.644477 0.445894 0.215686 Vertex 16374 0.484098 0.415747 0.379489 Vertex 16375 0.369216 0.189922 0.543144 Vertex 16376 0.421643 0.398021 0.342472 Vertex 16377 0.347255 0.262291 0.210545 Vertex 16378 0.551563 0.405827 0.507483 Vertex 16379 0.495416 0.411998 0.401456 Vertex 16380 0.378301 0.484456 0.495052 Vertex 16381 0.446749 0.286106 0.63514 Vertex 16382 0.557343 0.55201 0.492298 Vertex 16383 0.306927 0.957126 0.224848 Vertex 16384 0.606513 0.502011 0.22512 Vertex 16385 0.605879 0.503047 0.226346 Vertex 16386 0.490915 0.149488 0.795331 Vertex 16387 0.499704 0.199268 0.524096 Vertex 16388 0.502707 0.407207 0.433663 Vertex 16389 0.58226 0.513809 0.36027 Vertex 16390 0.500272 0.710009 0.413479 Vertex 16391 0.407636 0.830008 0.387638 Vertex 16392 0.443077 0.175802 0.485131 Vertex 16393 0.459157 0.379358 0.630651 Vertex 16394 0.494219 0.671654 0.406342 Vertex 16395 0.434472 0.493731 0.436151 Vertex 16396 0.368369 0.295126 0.194601 Vertex 16397 0.511401 0.160788 0.735233 Vertex 16398 0.450167 0.131655 0.634003 Vertex 16399 0.588449 0.517025 0.358244 Vertex 16400 0.393274 0.327879 0.254526 Vertex 16401 0.344429 0.25949 0.224818 Vertex 16402 0.348901 0.265637 0.225257 Vertex 16403 0.549211 0.0184669 0.724069 Vertex 16404 0.359283 0.0867966 0.4417 Vertex 16405 0.468237 0.423944 0.373382 Vertex 16406 0.463605 0.0662331 0.683647 Vertex 16407 0.53723 0.501608 0.580054 Vertex 16408 0.3609 0.358345 0.443211 Vertex 16409 0.434614 0.517949 0.455778 Vertex 16410 0.433358 0.519696 0.464171 Vertex 16411 0.421537 0.229568 0.463626 Vertex 16412 0.481853 0.0425129 0.653329 Vertex 16413 0.514706 0.285715 0.486884 Vertex 16414 0.512988 0.0847296 0.683493 Vertex 16415 0.451701 0.833313 0.440314 Vertex 16416 0.389199 0.169874 0.530149 Vertex 16417 0.499674 0.378079 0.445876 Vertex 16418 0.499011 0.204053 0.4978 Vertex 16419 0.559262 0.415872 0.503397 Vertex 16420 0.4283 0.132768 0.673738 Vertex 16421 0.446524 0.137874 0.768619 Vertex 16422 0.518828 0.183135 0.46179 Vertex 16423 0.529844 0.10386 0.754174 Vertex 16424 0.464434 0.194589 0.662811 Vertex 16425 0.598446 0.436933 0.209153 Vertex 16426 0.431096 0.189336 0.793175 Vertex 16427 0.431724 0.189188 0.795331 Vertex 16428 0.360284 0.408077 0.356165 Vertex 16429 0.407251 0.358736 0.248402 Vertex 16430 0.533327 0.0807318 0.792423 Vertex 16431 0.522186 0.133331 0.790101 Vertex 16432 0.549987 0.481915 0.559324 Vertex 16433 0.457902 0.22791 0.70023 Vertex 16434 0.504584 0.153415 0.690553 Vertex 16435 0.525965 0.395782 0.456371 Vertex 16436 0.528713 0.399407 0.451923 Vertex 16437 0.529827 0.40142 0.449945 Vertex 16438 0.499728 0.535705 0.387502 Vertex 16439 0.531461 0.454244 0.582061 Vertex 16440 0.370098 0.366133 0.555214 Vertex 16441 0.467443 0.795171 0.391488 Vertex 16442 0.469344 0.792618 0.393389 Vertex 16443 0.498922 0.157786 0.700669 Vertex 16444 0.518609 0.167807 0.778901 Vertex 16445 0.489582 0.216118 0.503314 Vertex 16446 0.500805 0.485398 0.395717 Vertex 16447 0.418362 0.243457 0.196147 Vertex 16448 0.514173 0.299343 0.482774 Vertex 16449 0.398551 0.339576 0.256623 Vertex 16450 0.322747 0.265928 0.225665 Vertex 16451 0.39537 0.500192 0.555676 Vertex 16452 0.524958 0.511961 0.414201 Vertex 16453 0.500231 0.200583 0.507679 Vertex 16454 0.544574 0.058125 0.778954 Vertex 16455 0.433258 0.256937 0.694 Vertex 16456 0.506965 0.158911 0.710252 Vertex 16457 0.343997 0.0836991 0.447481 Vertex 16458 0.34466 0.0849784 0.445633 Vertex 16459 0.6029 0.502123 0.252756 Vertex 16460 0.55042 0.438769 0.366542 Vertex 16461 0.601568 0.510421 0.217397 Vertex 16462 0.370027 0.323662 0.592995 Vertex 16463 0.342019 0.929384 0.262101 Vertex 16464 0.622019 0.54023 0.285668 Vertex 16465 0.504152 0.0921862 0.810842 Vertex 16466 0.458914 0.228739 0.710595 Vertex 16467 0.411841 0.332546 0.63658 Vertex 16468 0.526445 0.0963499 0.795976 Vertex 16469 0.3721 0.0904983 0.465776 Vertex 16470 0.421827 0.263789 0.718887 Vertex 16471 0.380801 0.36926 0.607037 Vertex 16472 0.38022 0.365825 0.609223 Vertex 16473 0.55023 0.144004 0.41265 Vertex 16474 0.444386 0.764219 0.430726 Vertex 16475 0.418925 0.393164 0.306302 Vertex 16476 0.510477 0.416215 0.43791 Vertex 16477 0.527049 0.0566029 0.666584 Vertex 16478 0.490157 0.36252 0.623946 Vertex 16479 0.460046 0.157389 0.800377 Vertex 16480 0.372787 0.350171 0.219269 Vertex 16481 0.367735 0.345996 0.221744 Vertex 16482 0.354865 0.310099 0.237765 Vertex 16483 0.321147 0.992573 0.202324 Vertex 16484 0.460111 0.657641 0.496295 Vertex 16485 0.570965 0.503912 0.35629 Vertex 16486 0.438031 0.787809 0.407971 Vertex 16487 0.389027 0.484551 0.45364 Vertex 16488 0.504448 0.0968118 0.719982 Vertex 16489 0.542477 0.15852 0.428552 Vertex 16490 0.403573 0.231884 0.465231 Vertex 16491 0.3807 0.260798 0.600588 Vertex 16492 0.344133 0.126911 0.459545 Vertex 16493 0.544029 0.621311 0.460694 Vertex 16494 0.652645 0.503006 0.219322 Vertex 16495 0.414098 0.364516 0.329223 Vertex 16496 0.383791 0.0816024 0.465977 Vertex 16497 0.509127 0.0289144 0.629721 Vertex 16498 0.514434 0.0320949 0.629022 Vertex 16499 0.573447 0.500429 0.401172 Vertex 16500 0.491282 0.600285 0.400994 Vertex 16501 0.459335 0.764237 0.401705 Vertex 16502 0.452092 0.206695 0.798541 Vertex 16503 0.520552 0.661834 0.428996 Vertex 16504 0.487089 0.272739 0.450827 Vertex 16505 0.630725 0.520288 0.217285 Vertex 16506 0.432624 0.816315 0.445408 Vertex 16507 0.500018 0.0458888 0.731739 Vertex 16508 0.553985 0.52874 0.544796 Vertex 16509 0.525556 0.343822 0.532447 Vertex 16510 0.512177 0.124708 0.698128 Vertex 16511 0.412682 0.1452 0.669498 Vertex 16512 0.386178 0.204433 0.600084 Vertex 16513 0.526539 0.554977 0.416961 Vertex 16514 0.495226 0.192386 0.753303 Vertex 16515 0.397929 0.470052 0.417299 Vertex 16516 0.42185 0.259857 0.219358 Vertex 16517 0.452062 0.110902 0.752024 Vertex 16518 0.578078 0.503557 0.488857 Vertex 16519 0.513669 0.155796 0.455737 Vertex 16520 0.504661 0.433545 0.40116 Vertex 16521 0.385604 0.230765 0.698169 Vertex 16522 0.650601 0.427966 0.196449 Vertex 16523 0.450765 0.61081 0.500974 Vertex 16524 0.495594 0.176797 0.501288 Vertex 16525 0.500272 0.184035 0.498771 Vertex 16526 0.374457 0.251766 0.201098 Vertex 16527 0.601508 0.525322 0.267011 Vertex 16528 0.45847 0.819033 0.390315 Vertex 16529 0.477985 0.175548 0.698442 Vertex 16530 0.508079 0.435097 0.405116 Vertex 16531 0.428839 0.405667 0.389433 Vertex 16532 0.418332 0.147202 0.654128 Vertex 16533 0.368997 0.419863 0.405957 Vertex 16534 0.516009 0.0625374 0.675687 Vertex 16535 0.483055 0.638297 0.415084 Vertex 16536 0.64138 0.442079 0.209994 Vertex 16537 0.521073 0.0957517 0.713177 Vertex 16538 0.413049 0.215395 0.766552 Vertex 16539 0.383057 0.486529 0.526163 Vertex 16540 0.599631 0.446385 0.32269 Vertex 16541 0.598962 0.453392 0.311159 Vertex 16542 0.602622 0.454914 0.310993 Vertex 16543 0.603546 0.452237 0.316886 Vertex 16544 0.583255 0.506867 0.326202 Vertex 16545 0.533339 0.657605 0.506257 Vertex 16546 0.538254 0.65356 0.496402 Vertex 16547 0.415809 0.82033 0.391239 Vertex 16548 0.522731 0.105761 0.793435 Vertex 16549 0.530075 0.53898 0.422375 Vertex 16550 0.354841 0.280479 0.227549 Vertex 16551 0.592559 0.449518 0.315145 Vertex 16552 0.49146 0.606167 0.557482 Vertex 16553 0.494261 0.0360098 0.671659 Vertex 16554 0.310741 0.996725 0.21783 Vertex 16555 0.507954 0.270168 0.551015 Vertex 16556 0.358679 0.239785 0.505849 Vertex 16557 0.373942 0.363521 0.51863 Vertex 16558 0.373332 0.359435 0.520193 Vertex 16559 0.431575 0.119496 0.713539 Vertex 16560 0.485039 0.0507809 0.685898 Vertex 16561 0.544331 0.151158 0.426674 Vertex 16562 0.524846 0.339795 0.520093 Vertex 16563 0.38035 0.326481 0.209721 Vertex 16564 0.395151 0.17874 0.641318 Vertex 16565 0.352502 0.207808 0.491095 Vertex 16566 0.350873 0.198273 0.48506 Vertex 16567 0.465495 0.46314 0.616887 Vertex 16568 0.458778 0.464272 0.623029 Vertex 16569 0.50151 0.0902258 0.639156 Vertex 16570 0.435437 0.497711 0.437578 Vertex 16571 0.383288 0.473695 0.563541 Vertex 16572 0.679948 0.460771 0.190414 Vertex 16573 0.399866 0.372695 0.237765 Vertex 16574 0.332069 0.242859 0.214347 Vertex 16575 0.360255 0.286313 0.491154 Vertex 16576 0.464002 0.19633 0.480132 Vertex 16577 0.498804 0.155973 0.674988 Vertex 16578 0.58762 0.501495 0.282351 Vertex 16579 0.498395 0.780494 0.46192 Vertex 16580 0.398865 0.317313 0.23799 Vertex 16581 0.435514 0.533786 0.472255 Vertex 16582 0.520717 0.368745 0.493032 Vertex 16583 0.361404 0.405388 0.522805 Vertex 16584 0.465039 0.163548 0.662183 Vertex 16585 0.367534 0.0877265 0.481974 Vertex 16586 0.370365 0.0832075 0.479493 Vertex 16587 0.501374 0.190591 0.503829 Vertex 16588 0.61821 0.470538 0.370539 Vertex 16589 0.615516 0.496805 0.241929 Vertex 16590 0.413594 0.173587 0.729251 Vertex 16591 0.423852 0.27047 0.646506 Vertex 16592 0.465151 0.659702 0.435298 Vertex 16593 0.471678 0.662699 0.4278 Vertex 16594 0.360095 0.443057 0.507756 Vertex 16595 0.517507 0.303643 0.542705 Vertex 16596 0.402039 0.249303 0.212091 Vertex 16597 0.44438 0.456069 0.622863 Vertex 16598 0.561542 0.517522 0.437051 Vertex 16599 0.507457 0.173984 0.749957 Vertex 16600 0.497406 0.733172 0.413277 Vertex 16601 0.3634 0.422227 0.431798 Vertex 16602 0.374049 0.368715 0.584087 Vertex 16603 0.512503 0.414314 0.588328 Vertex 16604 0.567601 0.531837 0.464035 Vertex 16605 0.464553 0.376308 0.6292 Vertex 16606 0.4508 0.449595 0.628554 Vertex 16607 0.449711 0.452722 0.6275 Vertex 16608 0.488729 0.540615 0.385394 Vertex 16609 0.541559 0.469022 0.395107 Vertex 16610 0.475362 0.325486 0.425081 Vertex 16611 0.450712 0.392246 0.635034 Vertex 16612 0.451701 0.389089 0.63437 Vertex 16613 0.534263 0.128486 0.793536 Vertex 16614 0.588177 0.502526 0.300498 Vertex 16615 0.437996 0.338279 0.419899 Vertex 16616 0.41466 0.368763 0.432058 Vertex 16617 0.448864 0.242355 0.631759 Vertex 16618 0.446584 0.246051 0.633885 Vertex 16619 0.47015 0.729471 0.415996 Vertex 16620 0.426026 0.245074 0.209858 Vertex 16621 0.358342 0.196313 0.466966 Vertex 16622 0.520741 0.573408 0.418596 Vertex 16623 0.51117 0.729921 0.495022 Vertex 16624 0.521908 0.390594 0.497249 Vertex 16625 0.40291 0.252951 0.219849 Vertex 16626 0.485951 0.169382 0.702398 Vertex 16627 0.59555 0.526252 0.225724 Vertex 16628 0.48286 0.110493 0.803516 Vertex 16629 0.582165 0.510314 0.337491 Vertex 16630 0.506556 0.752954 0.484776 Vertex 16631 0.382637 0.333144 0.213103 Vertex 16632 0.482356 0.70668 0.407592 Vertex 16633 0.462912 0.693052 0.486837 Vertex 16634 0.497566 0.543949 0.381573 Vertex 16635 0.40731 0.155837 0.654999 Vertex 16636 0.398551 0.483058 0.432017 Vertex 16637 0.371614 0.197645 0.558939 Vertex 16638 0.442917 0.126242 0.648354 Vertex 16639 0.459773 0.0688213 0.67808 Vertex 16640 0.512278 0.578277 0.56655 Vertex 16641 0.457238 0.761459 0.468038 Vertex 16642 0.435804 0.482507 0.427367 Vertex 16643 0.357761 0.269404 0.206103 Vertex 16644 0.376672 0.381887 0.584205 Vertex 16645 0.647563 0.507939 0.221638 Vertex 16646 0.468053 0.527336 0.417903 Vertex 16647 0.504027 0.0856299 0.728399 Vertex 16648 0.370442 0.309655 0.247887 Vertex 16649 0.369476 0.331503 0.590667 Vertex 16650 0.478933 0.581528 0.421083 Vertex 16651 0.361427 0.354483 0.250469 Vertex 16652 0.530259 0.0172705 0.728985 Vertex 16653 0.545687 0.615554 0.495739 Vertex 16654 0.546777 0.611355 0.492706 Vertex 16655 0.407405 0.3275 0.217048 Vertex 16656 0.492129 0.209982 0.536481 Vertex 16657 0.445896 0.550298 0.447392 Vertex 16658 0.483055 0.575647 0.407852 Vertex 16659 0.51351 0.106418 0.717827 Vertex 16660 0.349588 0.905907 0.281398 Vertex 16661 0.347936 0.902833 0.281972 Vertex 16662 0.479822 0.471325 0.606356 Vertex 16663 0.455213 0.681491 0.464218 Vertex 16664 0.45603 0.687526 0.462128 Vertex 16665 0.498164 0.249563 0.488857 Vertex 16666 0.519112 0.385305 0.472202 Vertex 16667 0.404278 0.845549 0.410014 Vertex 16668 0.406931 0.167114 0.702297 Vertex 16669 0.512124 0.27981 0.517854 Vertex 16670 0.44531 0.487246 0.418732 Vertex 16671 0.557823 0.0259531 0.770603 Vertex 16672 0.351193 0.314647 0.225938 Vertex 16673 0.359384 0.262415 0.490882 Vertex 16674 0.530123 0.0305432 0.731159 Vertex 16675 0.455142 0.352955 0.635596 Vertex 16676 0.504098 0.269925 0.573776 Vertex 16677 0.480751 0.486855 0.390795 Vertex 16678 0.486277 0.489549 0.389054 Vertex 16679 0.500521 0.0611219 0.638072 Vertex 16680 0.476724 0.573183 0.41827 Vertex 16681 0.354972 0.217587 0.534787 Vertex 16682 0.453241 0.663782 0.46394 Vertex 16683 0.414198 0.203562 0.766464 Vertex 16684 0.531325 0.0995836 0.794217 Vertex 16685 0.5328 0.0979016 0.794419 Vertex 16686 0.554133 0.421249 0.374798 Vertex 16687 0.549727 0.427006 0.38104 Vertex 16688 0.413233 0.409866 0.30773 Vertex 16689 0.426849 0.190615 0.482679 Vertex 16690 0.387854 0.898172 0.318011 Vertex 16691 0.396596 0.452391 0.399513 Vertex 16692 0.477079 0.345706 0.630331 Vertex 16693 0.418516 0.381455 0.421474 Vertex 16694 0.407974 0.178568 0.57178 Vertex 16695 0.438315 0.261029 0.440054 Vertex 16696 0.404408 0.361863 0.437608 Vertex 16697 0.402572 0.363053 0.434481 Vertex 16698 0.513468 0.0461849 0.662912 Vertex 16699 0.549579 0.437383 0.371304 Vertex 16700 0.384159 0.196342 0.569464 Vertex 16701 0.429686 0.153373 0.594552 Vertex 16702 0.695809 0.456193 0.216414 Vertex 16703 0.417018 0.378192 0.356153 Vertex 16704 0.409549 0.277187 0.208934 Vertex 16705 0.509399 0.30006 0.468802 Vertex 16706 0.431729 0.293249 0.640654 Vertex 16707 0.405984 0.330034 0.21998 Vertex 16708 0.395832 0.339475 0.213399 Vertex 16709 0.556378 0.541402 0.47386 Vertex 16710 0.450167 0.583915 0.457757 Vertex 16711 0.340923 0.248704 0.215052 Vertex 16712 0.534268 0.398098 0.432656 Vertex 16713 0.494208 0.16404 0.700254 Vertex 16714 0.524538 0.398808 0.540745 Vertex 16715 0.395968 0.406745 0.286408 Vertex 16716 0.511194 0.438958 0.411767 Vertex 16717 0.510761 0.432745 0.417998 Vertex 16718 0.430829 0.249196 0.762193 Vertex 16719 0.449622 0.433592 0.632825 Vertex 16720 0.451268 0.433515 0.62978 Vertex 16721 0.450214 0.434593 0.631818 Vertex 16722 0.526427 0.394491 0.4494 Vertex 16723 0.545989 0.529978 0.435487 Vertex 16724 0.419434 0.38662 0.390043 Vertex 16725 0.538888 0.443815 0.565579 Vertex 16726 0.391041 0.861374 0.335548 Vertex 16727 0.517727 0.0209425 0.74789 Vertex 16728 0.551237 0.0408249 0.789047 Vertex 16729 0.489286 0.796112 0.445586 Vertex 16730 0.549816 0.567432 0.524043 Vertex 16731 0.520664 0.565478 0.4131 Vertex 16732 0.494587 0.0499399 0.727528 Vertex 16733 0.447673 0.578532 0.46667 Vertex 16734 0.582112 0.505837 0.441173 Vertex 16735 0.403721 0.316945 0.630728 Vertex 16736 0.667552 0.457265 0.209668 Vertex 16737 0.364454 0.390244 0.29605 Vertex 16738 0.618998 0.493174 0.236516 Vertex 16739 0.499976 0.174553 0.484817 Vertex 16740 0.453874 0.414616 0.627944 Vertex 16741 0.460395 0.796219 0.477473 Vertex 16742 0.559831 0.00810221 0.739806 Vertex 16743 0.527665 0.0870454 0.712775 Vertex 16744 0.526812 0.0859023 0.709665 Vertex 16745 0.480905 0.563559 0.408012 Vertex 16746 0.590054 0.423997 0.206292 Vertex 16747 0.402175 0.232233 0.737437 Vertex 16748 0.476576 0.581528 0.423559 Vertex 16749 0.542466 0.398352 0.468986 Vertex 16750 0.553251 0.512026 0.429363 Vertex 16751 0.439429 0.55397 0.48721 Vertex 16752 0.49573 0.558833 0.37895 Vertex 16753 0.441218 0.512375 0.435393 Vertex 16754 0.475622 0.185065 0.483893 Vertex 16755 0.628018 0.523149 0.247893 Vertex 16756 0.507344 0.100075 0.715878 Vertex 16757 0.41726 0.523937 0.48477 Vertex 16758 0.520824 0.0826922 0.681053 Vertex 16759 0.431747 0.510492 0.452651 Vertex 16760 0.354 0.280722 0.54039 Vertex 16761 0.548518 0.410577 0.522029 Vertex 16762 0.605151 0.448559 0.384073 Vertex 16763 0.423053 0.482614 0.594422 Vertex 16764 0.357181 0.225476 0.544186 Vertex 16765 0.421282 0.400384 0.349526 Vertex 16766 0.529039 0.136511 0.791984 Vertex 16767 0.432944 0.329567 0.647898 Vertex 16768 0.4792 0.81115 0.438899 Vertex 16769 0.678355 0.478095 0.21411 Vertex 16770 0.364614 0.186262 0.509734 Vertex 16771 0.370809 0.384795 0.2403 Vertex 16772 0.471506 0.221194 0.752066 Vertex 16773 0.56124 0.0244547 0.735926 Vertex 16774 0.492129 0.768288 0.417453 Vertex 16775 0.467763 0.738805 0.4806 Vertex 16776 0.601289 0.43714 0.357267 Vertex 16777 0.600514 0.436891 0.354122 Vertex 16778 0.599821 0.435416 0.356177 Vertex 16779 0.600134 0.436157 0.355188 Vertex 16780 0.611666 0.501904 0.190218 Vertex 16781 0.411385 0.405501 0.301013 Vertex 16782 0.544947 0.398672 0.429695 Vertex 16783 0.455693 0.0909899 0.713858 Vertex 16784 0.35817 0.111239 0.479457 Vertex 16785 0.383247 0.251429 0.206103 Vertex 16786 0.457511 0.232849 0.463117 Vertex 16787 0.362174 0.398234 0.38104 Vertex 16788 0.554038 0.0325569 0.781235 Vertex 16789 0.513835 0.689173 0.513868 Vertex 16790 0.494995 0.374437 0.615252 Vertex 16791 0.46312 0.166445 0.658766 Vertex 16792 0.396063 0.25484 0.207631 Vertex 16793 0.407885 0.255835 0.196259 Vertex 16794 0.365579 0.251506 0.205208 Vertex 16795 0.657673 0.440125 0.198539 Vertex 16796 0.375974 0.232399 0.233773 Vertex 16797 0.643998 0.436577 0.201288 Vertex 16798 0.410698 0.823149 0.399673 Vertex 16799 0.450895 0.821988 0.461784 Vertex 16800 0.439044 0.230782 0.7839 Vertex 16801 0.539409 0.0351984 0.781069 Vertex 16802 0.605791 0.493541 0.385109 Vertex 16803 0.504122 0.256854 0.542782 Vertex 16804 0.414518 0.14565 0.679886 Vertex 16805 0.564806 0.496846 0.36037 Vertex 16806 0.526877 0.333825 0.498913 Vertex 16807 0.518988 0.636953 0.534651 Vertex 16808 0.527256 0.148481 0.459764 Vertex 16809 0.535406 0.15101 0.460007 Vertex 16810 0.359994 0.269925 0.499221 Vertex 16811 0.513237 0.027416 0.735417 Vertex 16812 0.53842 0.166527 0.449625 Vertex 16813 0.544071 0.0426491 0.789864 Vertex 16814 0.389862 0.231067 0.708498 Vertex 16815 0.475622 0.727024 0.406354 Vertex 16816 0.362825 0.230125 0.56318 Vertex 16817 0.357838 0.242651 0.508538 Vertex 16818 0.500805 0.168281 0.71255 Vertex 16819 0.516649 0.609015 0.424797 Vertex 16820 0.413961 0.238802 0.45762 Vertex 16821 0.502843 0.330526 0.449074 Vertex 16822 0.535678 0.439177 0.571709 Vertex 16823 0.47506 0.261124 0.446758 Vertex 16824 0.51945 0.55769 0.572828 Vertex 16825 0.519953 0.556174 0.573568 Vertex 16826 0.447312 0.458278 0.404873 Vertex 16827 0.448135 0.455743 0.403049 Vertex 16828 0.507836 0.168908 0.784688 Vertex 16829 0.486781 0.707219 0.507584 Vertex 16830 0.402774 0.241224 0.739569 Vertex 16831 0.473087 0.57679 0.561291 Vertex 16832 0.538859 0.0499162 0.714048 Vertex 16833 0.38391 0.415001 0.580427 Vertex 16834 0.385402 0.251903 0.22929 Vertex 16835 0.322753 0.926245 0.277494 Vertex 16836 0.499728 0.40697 0.419099 Vertex 16837 0.500438 0.408948 0.417169 Vertex 16838 0.363275 0.905006 0.347477 Vertex 16839 0.530685 0.0915051 0.795479 Vertex 16840 0.355742 0.248894 0.520318 Vertex 16841 0.461461 0.21443 0.632499 Vertex 16842 0.463404 0.221697 0.609069 Vertex 16843 0.590054 0.514389 0.328595 Vertex 16844 0.394731 0.350485 0.289725 Vertex 16845 0.603818 0.4771 0.192996 Vertex 16846 0.455106 0.0996369 0.720628 Vertex 16847 0.508623 0.0928377 0.806495 Vertex 16848 0.356636 0.304146 0.196395 Vertex 16849 0.462498 0.463845 0.396925 Vertex 16850 0.455343 0.074365 0.660626 Vertex 16851 0.396928 0.179137 0.624201 Vertex 16852 0.448775 0.82598 0.380034 Vertex 16853 0.356417 0.16099 0.452012 Vertex 16854 0.362689 0.451165 0.493719 Vertex 16855 0.425789 0.131667 0.695054 Vertex 16856 0.472033 0.800069 0.47193 Vertex 16857 0.466353 0.0609027 0.667235 Vertex 16858 0.322936 0.263612 0.229474 Vertex 16859 0.327615 0.263736 0.232198 Vertex 16860 0.634332 0.447197 0.196828 Vertex 16861 0.504081 0.470816 0.606901 Vertex 16862 0.396839 0.194317 0.47742 Vertex 16863 0.630802 0.457561 0.18638 Vertex 16864 0.418001 0.266496 0.658801 Vertex 16865 0.555223 0.528692 0.455139 Vertex 16866 0.344459 0.113188 0.455589 Vertex 16867 0.506858 0.756306 0.442991 Vertex 16868 0.593495 0.452746 0.193108 Vertex 16869 0.594899 0.453018 0.192285 Vertex 16870 0.459892 0.568765 0.43746 Vertex 16871 0.413908 0.825276 0.416393 Vertex 16872 0.581798 0.496805 0.420539 Vertex 16873 0.416236 0.287101 0.640139 Vertex 16874 0.416028 0.260265 0.205291 Vertex 16875 0.460022 0.150329 0.655514 Vertex 16876 0.406813 0.364398 0.277417 Vertex 16877 0.516145 0.0358795 0.762306 Vertex 16878 0.539652 0.626162 0.451556 Vertex 16879 0.397585 0.427166 0.315115 Vertex 16880 0.352686 0.371908 0.420456 Vertex 16881 0.402406 0.322637 0.212908 Vertex 16882 0.400683 0.250653 0.454677 Vertex 16883 0.35647 0.250025 0.550322 Vertex 16884 0.365775 0.370131 0.329235 Vertex 16885 0.366533 0.367377 0.337521 Vertex 16886 0.47195 0.507673 0.605788 Vertex 16887 0.387558 0.497687 0.517895 Vertex 16888 0.53444 0.0380235 0.727646 Vertex 16889 0.312524 0.99066 0.200091 Vertex 16890 0.345235 0.293373 0.20371 Vertex 16891 0.351377 0.194956 0.495058 Vertex 16892 0.430415 0.823671 0.361525 Vertex 16893 0.438031 0.333653 0.646808 Vertex 16894 0.39062 0.426698 0.370421 Vertex 16895 0.537793 0.00769355 0.752024 Vertex 16896 0.35865 0.290133 0.499203 Vertex 16897 0.421246 0.403849 0.347844 Vertex 16898 0.402673 0.18009 0.584158 Vertex 16899 0.402957 0.365985 0.242118 Vertex 16900 0.526812 0.678009 0.439148 Vertex 16901 0.405474 0.387745 0.275676 Vertex 16902 0.483103 0.227857 0.489064 Vertex 16903 0.48119 0.234318 0.477929 Vertex 16904 0.479419 0.235497 0.473475 Vertex 16905 0.345182 0.289618 0.231138 Vertex 16906 0.446767 0.819525 0.462021 Vertex 16907 0.544461 0.139147 0.445408 Vertex 16908 0.488617 0.0615305 0.746617 Vertex 16909 0.399167 0.357184 0.320937 Vertex 16910 0.466501 0.681355 0.499316 Vertex 16911 0.374274 0.340979 0.398358 Vertex 16912 0.521772 0.682628 0.433367 Vertex 16913 0.521126 0.686875 0.434137 Vertex 16914 0.363583 0.386471 0.306427 Vertex 16915 0.440323 0.242882 0.770603 Vertex 16916 0.543105 0.627666 0.506429 Vertex 16917 0.544266 0.627115 0.499784 Vertex 16918 0.532918 0.118341 0.432058 Vertex 16919 0.471358 0.522847 0.413343 Vertex 16920 0.445121 0.781223 0.453617 Vertex 16921 0.680469 0.447066 0.200452 Vertex 16922 0.54949 0.0283162 0.718129 Vertex 16923 0.476908 0.19633 0.573841 Vertex 16924 0.340094 0.108397 0.469093 Vertex 16925 0.486182 0.623289 0.414053 Vertex 16926 0.451499 0.512974 0.425751 Vertex 16927 0.555584 0.549724 0.524138 Vertex 16928 0.452358 0.256907 0.443128 Vertex 16929 0.589687 0.50974 0.27955 Vertex 16930 0.529068 0.508514 0.417411 Vertex 16931 0.636541 0.456424 0.213832 Vertex 16932 0.553932 0.153527 0.428386 Vertex 16933 0.490358 0.450969 0.384523 Vertex 16934 0.482848 0.791741 0.472238 Vertex 16935 0.480947 0.390919 0.400176 Vertex 16936 0.492502 0.232577 0.518085 Vertex 16937 0.598814 0.469152 0.396984 Vertex 16938 0.404308 0.375894 0.250499 Vertex 16939 0.528056 0.121498 0.720841 Vertex 16940 0.52651 0.122599 0.731271 Vertex 16941 0.486875 0.0704797 0.729169 Vertex 16942 0.385219 0.238547 0.667046 Vertex 16943 0.497892 0.634116 0.406135 Vertex 16944 0.414696 0.266674 0.208608 Vertex 16945 0.411279 0.221952 0.764509 Vertex 16946 0.356079 0.314422 0.54617 Vertex 16947 0.463386 0.119549 0.642117 Vertex 16948 0.514108 0.604372 0.552413 Vertex 16949 0.455515 0.25885 0.626404 Vertex 16950 0.518402 0.38287 0.47437 Vertex 16951 0.45985 0.234437 0.735458 Vertex 16952 0.520741 0.125276 0.792393 Vertex 16953 0.536596 0.00878331 0.745734 Vertex 16954 0.54365 0.0502656 0.793779 Vertex 16955 0.394091 0.355342 0.306332 Vertex 16956 0.497892 0.2437 0.526163 Vertex 16957 0.444321 0.154368 0.780939 Vertex 16958 0.489813 0.103119 0.803243 Vertex 16959 0.358425 0.418353 0.521117 Vertex 16960 0.501279 0.412531 0.413384 Vertex 16961 0.532794 0.623639 0.528236 Vertex 16962 0.369867 0.18686 0.536534 Vertex 16963 0.373966 0.447256 0.563565 Vertex 16964 0.358354 0.276192 0.509284 Vertex 16965 0.535352 0.531837 0.424702 Vertex 16966 0.611832 0.462542 0.186475 Vertex 16967 0.388358 0.168322 0.521982 Vertex 16968 0.482795 0.225079 0.492896 Vertex 16969 0.376252 0.353014 0.219985 Vertex 16970 0.379503 0.356586 0.221833 Vertex 16971 0.456237 0.310567 0.635946 Vertex 16972 0.492561 0.251873 0.590436 Vertex 16973 0.520824 0.0209958 0.637391 Vertex 16974 0.474023 0.536694 0.411874 Vertex 16975 0.483582 0.0700414 0.750869 Vertex 16976 0.562893 0.492931 0.368544 Vertex 16977 0.359491 0.395545 0.372719 Vertex 16978 0.488042 0.0810872 0.725396 Vertex 16979 0.357311 0.370824 0.464994 Vertex 16980 0.352792 0.376794 0.462382 Vertex 16981 0.406617 0.356574 0.441635 Vertex 16982 0.470298 0.727747 0.486837 Vertex 16983 0.506977 0.0802165 0.728547 Vertex 16984 0.511004 0.0807614 0.726343 Vertex 16985 0.375411 0.432461 0.40989 Vertex 16986 0.368215 0.343372 0.263108 Vertex 16987 0.396045 0.851874 0.362165 Vertex 16988 0.404675 0.262309 0.687277 Vertex 16989 0.365212 0.280859 0.480547 Vertex 16990 0.365834 0.277879 0.478557 Vertex 16991 0.456996 0.176632 0.631782 Vertex 16992 0.50385 0.565804 0.394562 Vertex 16993 0.582846 0.490621 0.480571 Vertex 16994 0.408986 0.825477 0.395663 Vertex 16995 0.501564 0.386513 0.598568 Vertex 16996 0.494741 0.384795 0.611118 Vertex 16997 0.458944 0.203757 0.607932 Vertex 16998 0.459613 0.202229 0.605432 Vertex 16999 0.43016 0.137761 0.712413 Vertex 17000 0.406712 0.440972 0.602418 Vertex 17001 0.464417 0.111133 0.643758 Vertex 17002 0.539569 0.149405 0.438917 Vertex 17003 0.510844 0.402131 0.580006 Vertex 17004 0.51152 0.403736 0.577927 Vertex 17005 0.508392 0.134486 0.700219 Vertex 17006 0.532415 0.0653625 0.798825 Vertex 17007 0.409454 0.360809 0.33129 Vertex 17008 0.46389 0.567817 0.431501 Vertex 17009 0.436716 0.827112 0.35857 Vertex 17010 0.54702 0.144306 0.413112 Vertex 17011 0.435757 0.167167 0.562872 Vertex 17012 0.537431 0.0619629 0.802432 Vertex 17013 0.509263 0.132798 0.702487 Vertex 17014 0.555022 0.150033 0.434972 Vertex 17015 0.508854 0.332516 0.590306 Vertex 17016 0.404775 0.348661 0.44385 Vertex 17017 0.65993 0.461672 0.218185 Vertex 17018 0.444232 0.249534 0.752012 Vertex 17019 0.536874 0.49225 0.582097 Vertex 17020 0.508606 0.370948 0.588215 Vertex 17021 0.41052 0.860752 0.420319 Vertex 17022 0.534316 0.0692241 0.706497 Vertex 17023 0.443889 0.252039 0.444668 Vertex 17024 0.458381 0.787827 0.472386 Vertex 17025 0.480029 0.171343 0.684589 Vertex 17026 0.355001 0.93414 0.315962 Vertex 17027 0.462456 0.197023 0.629638 Vertex 17028 0.458944 0.194068 0.623402 Vertex 17029 0.527138 0.018224 0.725739 Vertex 17030 0.452696 0.42966 0.391067 Vertex 17031 0.441537 0.544524 0.461968 Vertex 17032 0.442532 0.547917 0.459824 Vertex 17033 0.440708 0.555943 0.474778 Vertex 17034 0.440844 0.546893 0.468115 Vertex 17035 0.513628 0.170377 0.760292 Vertex 17036 0.626016 0.447279 0.200749 Vertex 17037 0.39996 0.415718 0.605379 Vertex 17038 0.375671 0.0917776 0.474079 Vertex 17039 0.422502 0.225938 0.202904 Vertex 17040 0.377774 0.344426 0.468252 Vertex 17041 0.430663 0.105761 0.66884 Vertex 17042 0.688874 0.451994 0.20002 Vertex 17043 0.36244 0.400638 0.397659 Vertex 17044 0.396762 0.39195 0.252074 Vertex 17045 0.507291 0.597348 0.411696 Vertex 17046 0.522062 0.363936 0.497219 Vertex 17047 0.524336 0.669196 0.434919 Vertex 17048 0.520457 0.670718 0.429831 Vertex 17049 0.438233 0.796805 0.397772 Vertex 17050 0.596332 0.52919 0.278679 Vertex 17051 0.587034 0.498747 0.294824 Vertex 17052 0.586341 0.498836 0.301446 Vertex 17053 0.427667 0.139165 0.704477 Vertex 17054 0.431682 0.24351 0.450774 Vertex 17055 0.425783 0.24075 0.453024 Vertex 17056 0.481172 0.0574202 0.690488 Vertex 17057 0.461674 0.770248 0.389936 Vertex 17058 0.544432 0.538323 0.437039 Vertex 17059 0.502683 0.257357 0.561314 Vertex 17060 0.565647 0.4969 0.381052 Vertex 17061 0.562757 0.492955 0.379027 Vertex 17062 0.613093 0.52807 0.225553 Vertex 17063 0.527203 0.487429 0.411933 Vertex 17064 0.468717 0.208513 0.791197 Vertex 17065 0.538527 0.169056 0.445443 Vertex 17066 0.346491 0.0914814 0.444271 Vertex 17067 0.507018 0.0266342 0.666282 Vertex 17068 0.415022 0.24521 0.754091 Vertex 17069 0.488646 0.665453 0.405507 Vertex 17070 0.515506 0.35411 0.47418 Vertex 17071 0.544811 0.400638 0.499186 Vertex 17072 0.373125 0.335359 0.482638 Vertex 17073 0.49108 0.228402 0.563512 Vertex 17074 0.529678 0.0858253 0.796213 Vertex 17075 0.622398 0.523717 0.301736 Vertex 17076 0.519195 0.546081 0.579532 Vertex 17077 0.508742 0.601529 0.55997 Vertex 17078 0.420275 0.165574 0.725094 Vertex 17079 0.481409 0.661176 0.418608 Vertex 17080 0.510992 0.17473 0.760286 Vertex 17081 0.406967 0.372127 0.385476 Vertex 17082 0.621474 0.488424 0.231132 Vertex 17083 0.466691 0.826887 0.430548 Vertex 17084 0.421667 0.507643 0.451372 Vertex 17085 0.404308 0.496982 0.575564 Vertex 17086 0.489736 0.499802 0.601571 Vertex 17087 0.386001 0.30144 0.23905 Vertex 17088 0.657981 0.500489 0.199416 Vertex 17089 0.353835 0.215697 0.501057 Vertex 17090 0.331009 0.255071 0.234804 Vertex 17091 0.333443 0.253561 0.231191 Vertex 17092 0.609095 0.456465 0.320925 Vertex 17093 0.474675 0.492683 0.402397 Vertex 17094 0.412149 0.24996 0.747754 Vertex 17095 0.482078 0.462175 0.38062 Vertex 17096 0.540547 0.0583975 0.716873 Vertex 17097 0.551498 0.145869 0.427421 Vertex 17098 0.449563 0.195116 0.80107 Vertex 17099 0.362932 0.391861 0.509704 Vertex 17100 0.360148 0.395237 0.508538 Vertex 17101 0.55042 0.454736 0.361371 Vertex 17102 0.538302 0.154054 0.449441 Vertex 17103 0.539398 0.1512 0.447943 Vertex 17104 0.409555 0.177449 0.551015 Vertex 17105 0.485981 0.172652 0.515745 Vertex 17106 0.384828 0.346677 0.412472 Vertex 17107 0.506817 0.266822 0.50961 Vertex 17108 0.463801 0.821266 0.402569 Vertex 17109 0.439233 0.793086 0.40177 Vertex 17110 0.347882 0.274877 0.229633 Vertex 17111 0.352638 0.275676 0.227566 Vertex 17112 0.531218 0.438591 0.58003 Vertex 17113 0.535352 0.0219494 0.731615 Vertex 17114 0.492129 0.235675 0.573657 Vertex 17115 0.301692 0.969261 0.219654 Vertex 17116 0.483132 0.383848 0.411714 Vertex 17117 0.492632 0.194737 0.747712 Vertex 17118 0.450137 0.750988 0.441238 Vertex 17119 0.47516 0.0863347 0.758124 Vertex 17120 0.3669 0.137465 0.463407 Vertex 17121 0.364963 0.137489 0.459273 Vertex 17122 0.474841 0.216213 0.780832 Vertex 17123 0.439447 0.196834 0.472125 Vertex 17124 0.538716 0.0424359 0.725005 Vertex 17125 0.375488 0.253289 0.594641 Vertex 17126 0.392444 0.346766 0.445408 Vertex 17127 0.45423 0.0864176 0.729867 Vertex 17128 0.456587 0.703446 0.455773 Vertex 17129 0.390265 0.426858 0.363308 Vertex 17130 0.588905 0.43618 0.201969 Vertex 17131 0.363767 0.215549 0.485783 Vertex 17132 0.357181 0.351463 0.402611 Vertex 17133 0.527025 0.0687917 0.791522 Vertex 17134 0.421833 0.543191 0.520016 Vertex 17135 0.422081 0.538856 0.507756 Vertex 17136 0.65653 0.415599 0.209639 Vertex 17137 0.590818 0.466949 0.450638 Vertex 17138 0.418735 0.239335 0.217368 Vertex 17139 0.605654 0.50419 0.216769 Vertex 17140 0.419837 0.170703 0.559295 Vertex 17141 0.423438 0.169234 0.517895 Vertex 17142 0.424172 0.167984 0.522029 Vertex 17143 0.384496 0.87653 0.32041 Vertex 17144 0.371579 0.103937 0.469395 Vertex 17145 0.389785 0.39394 0.25667 Vertex 17146 0.425072 0.495745 0.436737 Vertex 17147 0.558255 0.0282629 0.730596 Vertex 17148 0.555371 0.0276055 0.728712 Vertex 17149 0.392835 0.20461 0.706455 Vertex 17150 0.407393 0.247591 0.219547 Vertex 17151 0.420281 0.225014 0.776781 Vertex 17152 0.476825 0.783473 0.403061 Vertex 17153 0.435692 0.454085 0.611071 Vertex 17154 0.593661 0.516859 0.210047 Vertex 17155 0.369974 0.230072 0.485558 Vertex 17156 0.487106 0.129191 0.645564 Vertex 17157 0.409075 0.170839 0.524096 Vertex 17158 0.409383 0.16892 0.517895 Vertex 17159 0.457499 0.226956 0.467381 Vertex 17160 0.537384 0.115131 0.432947 Vertex 17161 0.381411 0.378399 0.233033 Vertex 17162 0.384366 0.375953 0.231736 Vertex 17163 0.497892 0.351771 0.613209 Vertex 17164 0.502683 0.325812 0.600724 Vertex 17165 0.546043 0.567042 0.447658 Vertex 17166 0.596285 0.467902 0.297312 Vertex 17167 0.527185 0.640032 0.526383 Vertex 17168 0.385148 0.860178 0.35395 Vertex 17169 0.385059 0.862867 0.34798 Vertex 17170 0.596522 0.513157 0.226477 Vertex 17171 0.454117 0.129493 0.801336 Vertex 17172 0.461894 0.424021 0.378334 Vertex 17173 0.458695 0.42732 0.382521 Vertex 17174 0.520184 0.303465 0.501608 Vertex 17175 0.509589 0.658944 0.418797 Vertex 17176 0.387854 0.247046 0.67741 Vertex 17177 0.480426 0.0646281 0.701403 Vertex 17178 0.491009 0.587546 0.398299 Vertex 17179 0.489772 0.755779 0.409534 Vertex 17180 0.552481 0.467085 0.350426 Vertex 17181 0.479099 0.114657 0.650202 Vertex 17182 0.581063 0.410713 0.40177 Vertex 17183 0.583119 0.413277 0.405916 Vertex 17184 0.406215 0.835196 0.40408 Vertex 17185 0.407618 0.830363 0.401989 Vertex 17186 0.489102 0.725662 0.51478 Vertex 17187 0.456699 0.112548 0.762383 Vertex 17188 0.516009 0.288179 0.497575 Vertex 17189 0.532752 0.0619629 0.710465 Vertex 17190 0.304351 0.966158 0.243889 Vertex 17191 0.382601 0.291057 0.235455 Vertex 17192 0.585879 0.429683 0.20127 Vertex 17193 0.582289 0.494945 0.312468 Vertex 17194 0.646094 0.430506 0.218132 Vertex 17195 0.441608 0.772066 0.430874 Vertex 17196 0.38728 0.17383 0.499286 Vertex 17197 0.472768 0.349283 0.417666 Vertex 17198 0.499947 0.550967 0.388562 Vertex 17199 0.445044 0.558756 0.457561 Vertex 17200 0.416206 0.369941 0.347856 Vertex 17201 0.421175 0.820502 0.430809 Vertex 17202 0.409324 0.372233 0.271365 Vertex 17203 0.438049 0.232251 0.459948 Vertex 17204 0.527842 0.557962 0.421451 Vertex 17205 0.506586 0.162382 0.725366 Vertex 17206 0.591387 0.44067 0.206571 Vertex 17207 0.422709 0.828515 0.368976 Vertex 17208 0.376039 0.87351 0.327197 Vertex 17209 0.593839 0.427693 0.194056 Vertex 17210 0.505917 0.597028 0.565928 Vertex 17211 0.359544 0.232956 0.504676 Vertex 17212 0.5156 0.632179 0.540881 Vertex 17213 0.515642 0.635898 0.538637 Vertex 17214 0.602699 0.527703 0.222508 Vertex 17215 0.50257 0.594197 0.56806 Vertex 17216 0.447407 0.599646 0.495508 Vertex 17217 0.496446 0.604751 0.402723 Vertex 17218 0.553026 0.551495 0.459 Vertex 17219 0.540085 0.0536652 0.711892 Vertex 17220 0.482427 0.762851 0.498718 Vertex 17221 0.578949 0.41801 0.437021 Vertex 17222 0.416804 0.231499 0.202004 Vertex 17223 0.585322 0.492114 0.292023 Vertex 17224 0.596285 0.513003 0.241739 Vertex 17225 0.459128 0.456614 0.622306 Vertex 17226 0.595195 0.4624 0.421599 Vertex 17227 0.595787 0.449228 0.419437 Vertex 17228 0.409419 0.37783 0.370634 Vertex 17229 0.411107 0.378654 0.36653 Vertex 17230 0.528032 0.167292 0.458207 Vertex 17231 0.603404 0.516782 0.335454 Vertex 17232 0.588816 0.412661 0.376581 Vertex 17233 0.453489 0.099175 0.663889 Vertex 17234 0.374363 0.384896 0.557257 Vertex 17235 0.373794 0.218226 0.485682 Vertex 17236 0.517401 0.330585 0.567551 Vertex 17237 0.588994 0.456631 0.453534 Vertex 17238 0.467976 0.320386 0.422552 Vertex 17239 0.603576 0.538139 0.287889 Vertex 17240 0.605423 0.540064 0.285751 Vertex 17241 0.546653 0.038977 0.713361 Vertex 17242 0.525479 0.63084 0.532672 Vertex 17243 0.440009 0.784924 0.445325 Vertex 17244 0.367368 0.372476 0.304348 Vertex 17245 0.360889 0.896294 0.345706 Vertex 17246 0.512023 0.621672 0.549137 Vertex 17247 0.455331 0.167451 0.555255 Vertex 17248 0.673013 0.455624 0.189815 Vertex 17249 0.565789 0.495934 0.352043 Vertex 17250 0.505484 0.375988 0.451739 Vertex 17251 0.464505 0.336461 0.415901 Vertex 17252 0.38423 0.234916 0.635958 Vertex 17253 0.497542 0.729702 0.412744 Vertex 17254 0.410775 0.887428 0.378594 Vertex 17255 0.489025 0.566698 0.390724 Vertex 17256 0.508925 0.273787 0.479593 Vertex 17257 0.398965 0.316027 0.204367 Vertex 17258 0.396851 0.316389 0.204646 Vertex 17259 0.456332 0.150453 0.658665 Vertex 17260 0.348937 0.905308 0.329193 Vertex 17261 0.500853 0.152082 0.791712 Vertex 17262 0.377247 0.239945 0.475981 Vertex 17263 0.443391 0.16468 0.602039 Vertex 17264 0.479845 0.0980852 0.776787 Vertex 17265 0.445411 0.148315 0.772724 Vertex 17266 0.371419 0.357966 0.293942 Vertex 17267 0.507089 0.383007 0.45027 Vertex 17268 0.373208 0.23237 0.48166 Vertex 17269 0.371822 0.23712 0.480044 Vertex 17270 0.429745 0.841883 0.442221 Vertex 17271 0.414737 0.423725 0.376646 Vertex 17272 0.374676 0.351042 0.490918 Vertex 17273 0.453247 0.215875 0.794324 Vertex 17274 0.450463 0.211344 0.79693 Vertex 17275 0.456368 0.413556 0.386021 Vertex 17276 0.367107 0.220566 0.210811 Vertex 17277 0.480396 0.368194 0.62885 Vertex 17278 0.42069 0.349994 0.431282 Vertex 17279 0.394198 0.414249 0.598823 Vertex 17280 0.520119 0.0291277 0.632363 Vertex 17281 0.557112 0.0178983 0.733172 Vertex 17282 0.517614 0.355366 0.482537 Vertex 17283 0.516702 0.353074 0.480192 Vertex 17284 0.449723 0.789982 0.389066 Vertex 17285 0.57398 0.428054 0.468115 Vertex 17286 0.401601 0.851981 0.405892 Vertex 17287 0.407814 0.853864 0.413887 Vertex 17288 0.494356 0.538388 0.381177 Vertex 17289 0.447312 0.11301 0.722802 Vertex 17290 0.519722 0.105352 0.681467 Vertex 17291 0.370768 0.180576 0.465101 Vertex 17292 0.510459 0.630307 0.549013 Vertex 17293 0.377004 0.419082 0.387336 Vertex 17294 0.540452 0.41955 0.548906 Vertex 17295 0.532705 0.416949 0.561338 Vertex 17296 0.399931 0.855173 0.40203 Vertex 17297 0.452737 0.130458 0.781075 Vertex 17298 0.373681 0.894286 0.361904 Vertex 17299 0.346781 0.093353 0.45922 Vertex 17300 0.519503 0.452456 0.410731 Vertex 17301 0.357963 0.207346 0.534787 Vertex 17302 0.383714 0.347826 0.427587 Vertex 17303 0.48318 0.754855 0.50326 Vertex 17304 0.497743 0.404767 0.416961 Vertex 17305 0.396644 0.496195 0.457792 Vertex 17306 0.554862 0.472776 0.377072 Vertex 17307 0.358152 0.406834 0.434356 Vertex 17308 0.359568 0.404056 0.418892 Vertex 17309 0.374937 0.436103 0.569802 Vertex 17310 0.374848 0.432692 0.56976 Vertex 17311 0.524111 0.158153 0.790971 Vertex 17312 0.524591 0.160095 0.788721 Vertex 17313 0.508416 0.353512 0.592355 Vertex 17314 0.454425 0.487885 0.40925 Vertex 17315 0.474657 0.164668 0.519915 Vertex 17316 0.399362 0.31736 0.23388 Vertex 17317 0.529803 0.672808 0.443347 Vertex 17318 0.433441 0.184781 0.79125 Vertex 17319 0.392261 0.437815 0.390102 Vertex 17320 0.497702 0.651866 0.406241 Vertex 17321 0.39277 0.500021 0.482205 Vertex 17322 0.446832 0.8487 0.39455 Vertex 17323 0.418173 0.387869 0.384114 Vertex 17324 0.61625 0.465663 0.346742 Vertex 17325 0.495866 0.396119 0.426603 Vertex 17326 0.42987 0.531464 0.484977 Vertex 17327 0.405433 0.832714 0.391541 Vertex 17328 0.387167 0.858069 0.354602 Vertex 17329 0.421075 0.320061 0.429245 Vertex 17330 0.425416 0.14568 0.705833 Vertex 17331 0.41437 0.272004 0.223515 Vertex 17332 0.401092 0.290963 0.233957 Vertex 17333 0.561655 0.516865 0.528236 Vertex 17334 0.590285 0.482324 0.410612 Vertex 17335 0.507824 0.36714 0.590329 Vertex 17336 0.505496 0.648982 0.411518 Vertex 17337 0.503275 0.170851 0.781158 Vertex 17338 0.402152 0.25914 0.706544 Vertex 17339 0.403176 0.262184 0.702108 Vertex 17340 0.476463 0.290951 0.435635 Vertex 17341 0.448579 0.184521 0.584188 Vertex 17342 0.471127 0.566171 0.426035 Vertex 17343 0.503601 0.0702368 0.768998 Vertex 17344 0.47031 0.214377 0.484948 Vertex 17345 0.357181 0.887161 0.323289 Vertex 17346 0.360095 0.885142 0.320949 Vertex 17347 0.440596 0.808686 0.371914 Vertex 17348 0.413126 0.197894 0.475596 Vertex 17349 0.511401 0.754689 0.469637 Vertex 17350 0.458476 0.346944 0.412253 Vertex 17351 0.43947 0.85528 0.38187 Vertex 17352 0.480384 0.555001 0.398589 Vertex 17353 0.43886 0.337698 0.646524 Vertex 17354 0.382074 0.274101 0.196727 Vertex 17355 0.377348 0.348412 0.607014 Vertex 17356 0.530413 0.0370759 0.657025 Vertex 17357 0.594597 0.507922 0.255202 Vertex 17358 0.638413 0.514407 0.244268 Vertex 17359 0.492016 0.212037 0.521982 Vertex 17360 0.39704 0.281717 0.623763 Vertex 17361 0.354314 0.289387 0.522805 Vertex 17362 0.544538 0.585929 0.450827 Vertex 17363 0.465116 0.114965 0.641827 Vertex 17364 0.463753 0.113052 0.642176 Vertex 17365 0.466407 0.112815 0.642402 Vertex 17366 0.360361 0.389267 0.31887 Vertex 17367 0.558012 0.462815 0.33405 Vertex 17368 0.46306 0.628098 0.439242 Vertex 17369 0.449065 0.206831 0.471059 Vertex 17370 0.500942 0.0935721 0.807946 Vertex 17371 0.436639 0.486399 0.429192 Vertex 17372 0.369157 0.375544 0.235621 Vertex 17373 0.485093 0.778664 0.482247 Vertex 17374 0.397899 0.185516 0.590418 Vertex 17375 0.311464 0.942165 0.250878 Vertex 17376 0.527706 0.45351 0.407248 Vertex 17377 0.405605 0.44308 0.38614 Vertex 17378 0.369547 0.353139 0.519506 Vertex 17379 0.519018 0.153486 0.745776 Vertex 17380 0.570551 0.537156 0.483781 Vertex 17381 0.492312 0.174446 0.501288 Vertex 17382 0.415845 0.382841 0.387899 Vertex 17383 0.543105 0.0655342 0.718839 Vertex 17384 0.511099 0.103037 0.717169 Vertex 17385 0.438327 0.805719 0.385542 Vertex 17386 0.365236 0.10996 0.461695 Vertex 17387 0.428952 0.393555 0.418241 Vertex 17388 0.635445 0.505126 0.25872 Vertex 17389 0.398764 0.344379 0.626404 Vertex 17390 0.35663 0.264322 0.522491 Vertex 17391 0.512799 0.429026 0.425093 Vertex 17392 0.368215 0.199049 0.472848 Vertex 17393 0.413186 0.175571 0.577987 Vertex 17394 0.551456 0.458177 0.372417 Vertex 17395 0.456587 0.524606 0.583708 Vertex 17396 0.374801 0.373649 0.582097 Vertex 17397 0.604393 0.443039 0.349946 Vertex 17398 0.545901 0.584241 0.511671 Vertex 17399 0.542282 0.0499932 0.715428 Vertex 17400 0.369293 0.353802 0.277358 Vertex 17401 0.409922 0.425212 0.373057 Vertex 17402 0.359858 0.320333 0.516124 Vertex 17403 0.491649 0.0547846 0.689244 Vertex 17404 0.487314 0.41108 0.615785 Vertex 17405 0.519136 0.385998 0.524102 Vertex 17406 0.497755 0.580297 0.397227 Vertex 17407 0.494794 0.582683 0.398027 Vertex 17408 0.532427 0.151336 0.441606 Vertex 17409 0.361961 0.436867 0.53455 Vertex 17410 0.496286 0.398506 0.420485 Vertex 17411 0.653219 0.416381 0.223166 Vertex 17412 0.492289 0.447493 0.608317 Vertex 17413 0.524413 0.342176 0.511256 Vertex 17414 0.524567 0.340707 0.511066 Vertex 17415 0.48251 0.0992875 0.780962 Vertex 17416 0.30502 0.978803 0.206577 Vertex 17417 0.308757 0.971654 0.209674 Vertex 17418 0.58826 0.418951 0.360329 Vertex 17419 0.668008 0.487619 0.197941 Vertex 17420 0.418694 0.319285 0.642147 Vertex 17421 0.352609 0.218268 0.528906 Vertex 17422 0.358306 0.29284 0.197319 Vertex 17423 0.358904 0.251494 0.558537 Vertex 17424 0.45985 0.807425 0.474305 Vertex 17425 0.348741 0.292621 0.232897 Vertex 17426 0.577942 0.421871 0.449453 Vertex 17427 0.576835 0.4261 0.457763 Vertex 17428 0.534263 0.0110695 0.729636 Vertex 17429 0.440613 0.384665 0.647086 Vertex 17430 0.389335 0.464378 0.58462 Vertex 17431 0.438114 0.436642 0.62766 Vertex 17432 0.545551 0.570779 0.522041 Vertex 17433 0.356263 0.418857 0.464224 Vertex 17434 0.509915 0.572627 0.570127 Vertex 17435 0.4629 0.170638 0.668047 Vertex 17436 0.585446 0.476792 0.472261 Vertex 17437 0.539172 0.143394 0.445455 Vertex 17438 0.604274 0.441244 0.374514 Vertex 17439 0.374173 0.419342 0.565691 Vertex 17440 0.50475 0.0472214 0.673407 Vertex 17441 0.418498 0.405187 0.357036 Vertex 17442 0.41864 0.401148 0.360465 Vertex 17443 0.369103 0.216989 0.212286 Vertex 17444 0.466069 0.409919 0.621228 Vertex 17445 0.385918 0.194287 0.479131 Vertex 17446 0.525734 0.712751 0.472617 Vertex 17447 0.527611 0.708019 0.476372 Vertex 17448 0.460253 0.216485 0.648466 Vertex 17449 0.480805 0.181583 0.477935 Vertex 17450 0.420932 0.169181 0.569689 Vertex 17451 0.493527 0.371351 0.435665 Vertex 17452 0.491785 0.374348 0.434332 Vertex 17453 0.380285 0.319569 0.205291 Vertex 17454 0.373178 0.321441 0.207062 Vertex 17455 0.384141 0.445668 0.41249 Vertex 17456 0.387398 0.448565 0.411797 Vertex 17457 0.400849 0.257073 0.450513 Vertex 17458 0.368665 0.223652 0.235455 Vertex 17459 0.556319 0.0209958 0.774974 Vertex 17460 0.587798 0.427095 0.343763 Vertex 17461 0.591156 0.429162 0.343722 Vertex 17462 0.494071 0.103339 0.644634 Vertex 17463 0.519195 0.430216 0.593403 Vertex 17464 0.516471 0.439308 0.598817 Vertex 17465 0.506243 0.634021 0.555676 Vertex 17466 0.411521 0.258104 0.19697 Vertex 17467 0.369974 0.239305 0.203201 Vertex 17468 0.488646 0.102983 0.650989 Vertex 17469 0.487586 0.100401 0.652026 Vertex 17470 0.372361 0.340618 0.596702 Vertex 17471 0.327799 0.927998 0.293699 Vertex 17472 0.501564 0.199144 0.490284 Vertex 17473 0.500527 0.204421 0.482756 Vertex 17474 0.55058 0.0140663 0.723625 Vertex 17475 0.48777 0.58873 0.401474 Vertex 17476 0.355055 0.368396 0.408024 Vertex 17477 0.473514 0.808982 0.458681 Vertex 17478 0.397242 0.17258 0.65494 Vertex 17479 0.521695 0.14716 0.737573 Vertex 17480 0.569218 0.404571 0.432887 Vertex 17481 0.441845 0.118329 0.724359 Vertex 17482 0.455278 0.135818 0.802213 Vertex 17483 0.408969 0.308038 0.634507 Vertex 17484 0.549662 0.430441 0.536481 Vertex 17485 0.370732 0.275937 0.470467 Vertex 17486 0.694636 0.448334 0.215135 Vertex 17487 0.672444 0.456768 0.213506 Vertex 17488 0.445121 0.805346 0.37096 Vertex 17489 0.378585 0.383155 0.590436 Vertex 17490 0.388885 0.348241 0.221644 Vertex 17491 0.61731 0.469347 0.345025 Vertex 17492 0.465003 0.800454 0.476928 Vertex 17493 0.676685 0.479623 0.214513 Vertex 17494 0.42759 0.338966 0.647939 Vertex 17495 0.458944 0.508372 0.416008 Vertex 17496 0.405634 0.334151 0.203574 Vertex 17497 0.445494 0.596756 0.48477 Vertex 17498 0.444955 0.599693 0.483171 Vertex 17499 0.681044 0.455198 0.212197 Vertex 17500 0.485951 0.30629 0.43727 Vertex 17501 0.437155 0.133817 0.664914 Vertex 17502 0.546925 0.516509 0.427012 Vertex 17503 0.498821 0.167072 0.470319 Vertex 17504 0.394488 0.408462 0.600824 Vertex 17505 0.302432 0.985845 0.223894 Vertex 17506 0.350749 0.924154 0.27275 Vertex 17507 0.441573 0.117322 0.734908 Vertex 17508 0.540807 0.586201 0.522071 Vertex 17509 0.398551 0.174458 0.633808 Vertex 17510 0.475196 0.452941 0.609975 Vertex 17511 0.459341 0.257286 0.443975 Vertex 17512 0.512722 0.2982 0.563429 Vertex 17513 0.510501 0.738503 0.491196 Vertex 17514 0.494107 0.241947 0.485386 Vertex 17515 0.605364 0.479984 0.208389 Vertex 17516 0.414382 0.384209 0.292864 Vertex 17517 0.400049 0.221247 0.73537 Vertex 17518 0.515778 0.364587 0.569665 Vertex 17519 0.660338 0.409884 0.231706 Vertex 17520 0.658354 0.408575 0.227566 Vertex 17521 0.523424 0.0281504 0.636147 Vertex 17522 0.523353 0.0264092 0.640139 Vertex 17523 0.383679 0.212825 0.589062 Vertex 17524 0.502316 0.189567 0.495004 Vertex 17525 0.503512 0.192155 0.488821 Vertex 17526 0.438315 0.151063 0.760351 Vertex 17527 0.552712 0.012485 0.721232 Vertex 17528 0.517093 0.371398 0.447285 Vertex 17529 0.406523 0.510107 0.473345 Vertex 17530 0.383175 0.220933 0.664996 Vertex 17531 0.479028 0.493198 0.399418 Vertex 17532 0.518076 0.077575 0.789189 Vertex 17533 0.474509 0.544062 0.41419 Vertex 17534 0.440987 0.251127 0.752018 Vertex 17535 0.43539 0.484971 0.595038 Vertex 17536 0.373255 0.379062 0.561385 Vertex 17537 0.37284 0.377967 0.559301 Vertex 17538 0.409976 0.333932 0.211439 Vertex 17539 0.475451 0.504131 0.403292 Vertex 17540 0.553209 0.433101 0.368147 Vertex 17541 0.400102 0.199837 0.733421 Vertex 17542 0.607076 0.523273 0.312794 Vertex 17543 0.542341 0.622549 0.456922 Vertex 17544 0.398035 0.359985 0.352019 Vertex 17545 0.571516 0.52149 0.495046 Vertex 17546 0.348765 0.308221 0.214839 Vertex 17547 0.418232 0.147421 0.639298 Vertex 17548 0.375008 0.356864 0.455885 Vertex 17549 0.531177 0.545667 0.423275 Vertex 17550 0.483837 0.421356 0.615205 Vertex 17551 0.450747 0.175234 0.575884 Vertex 17552 0.489748 0.0483348 0.687692 Vertex 17553 0.490453 0.0467298 0.68434 Vertex 17554 0.45959 0.522823 0.587344 Vertex 17555 0.46749 0.222047 0.729222 Vertex 17556 0.351081 0.154043 0.455547 Vertex 17557 0.515914 0.107419 0.704388 Vertex 17558 0.497678 0.391695 0.442358 Vertex 17559 0.493053 0.401817 0.410843 Vertex 17560 0.37502 0.377137 0.516249 Vertex 17561 0.519296 0.303596 0.510344 Vertex 17562 0.662932 0.490426 0.215384 Vertex 17563 0.411202 0.234224 0.206186 Vertex 17564 0.454289 0.13583 0.79828 Vertex 17565 0.568075 0.462572 0.517895 Vertex 17566 0.519332 0.132146 0.705898 Vertex 17567 0.514475 0.0429215 0.661011 Vertex 17568 0.519533 0.100946 0.711709 Vertex 17569 0.519432 0.102794 0.711679 Vertex 17570 0.454573 0.194903 0.592462 Vertex 17571 0.47673 0.597081 0.550588 Vertex 17572 0.353633 0.288315 0.537576 Vertex 17573 0.411841 0.364344 0.312669 Vertex 17574 0.449734 0.290803 0.635407 Vertex 17575 0.531218 0.0612818 0.720906 Vertex 17576 0.370602 0.416079 0.372772 Vertex 17577 0.589231 0.488519 0.287261 Vertex 17578 0.42631 0.19668 0.783023 Vertex 17579 0.54307 0.409594 0.405975 Vertex 17580 0.477654 0.785428 0.405335 Vertex 17581 0.440596 0.452071 0.406229 Vertex 17582 0.420808 0.386406 0.347909 Vertex 17583 0.553807 0.476087 0.36653 Vertex 17584 0.364892 0.210485 0.226643 Vertex 17585 0.404746 0.334281 0.231458 Vertex 17586 0.371686 0.305805 0.594641 Vertex 17587 0.414631 0.265353 0.669113 Vertex 17588 0.365295 0.446462 0.462862 Vertex 17589 0.375914 0.220293 0.213666 Vertex 17590 0.417296 0.392151 0.363728 Vertex 17591 0.412291 0.249048 0.450786 Vertex 17592 0.469694 0.539087 0.420539 Vertex 17593 0.375304 0.3475 0.486748 Vertex 17594 0.437356 0.782478 0.418252 Vertex 17595 0.487124 0.434303 0.377072 Vertex 17596 0.541553 0.039362 0.783633 Vertex 17597 0.687737 0.449974 0.207909 Vertex 17598 0.470855 0.392749 0.391991 Vertex 17599 0.56628 0.407692 0.374443 Vertex 17600 0.566429 0.409552 0.370557 Vertex 17601 0.370655 0.334014 0.495235 Vertex 17602 0.511579 0.100348 0.721043 Vertex 17603 0.540914 0.16574 0.436548 Vertex 17604 0.503157 0.0957754 0.810481 Vertex 17605 0.421537 0.395089 0.346334 Vertex 17606 0.620591 0.491391 0.326789 Vertex 17607 0.545403 0.00249937 0.752024 Vertex 17608 0.566091 0.47187 0.322418 Vertex 17609 0.551456 0.446889 0.369521 Vertex 17610 0.440098 0.563861 0.54299 Vertex 17611 0.480876 0.452124 0.377996 Vertex 17612 0.484749 0.698246 0.406188 Vertex 17613 0.448266 0.757799 0.441019 Vertex 17614 0.476748 0.0715635 0.741748 Vertex 17615 0.376305 0.359168 0.310561 Vertex 17616 0.645241 0.498937 0.23799 Vertex 17617 0.512201 0.0812234 0.789212 Vertex 17618 0.489286 0.717104 0.513868 Vertex 17619 0.362908 0.129084 0.460445 Vertex 17620 0.490085 0.394426 0.412271 Vertex 17621 0.489138 0.392524 0.414225 Vertex 17622 0.490316 0.392844 0.416227 Vertex 17623 0.408465 0.227898 0.7562 Vertex 17624 0.568584 0.488703 0.334417 Vertex 17625 0.563444 0.489147 0.345771 Vertex 17626 0.542874 0.63501 0.473641 Vertex 17627 0.434934 0.343195 0.647892 Vertex 17628 0.570853 0.524167 0.453569 Vertex 17629 0.452785 0.18882 0.615282 Vertex 17630 0.389015 0.354525 0.310507 Vertex 17631 0.452186 0.83599 0.391802 Vertex 17632 0.523874 0.0701776 0.785049 Vertex 17633 0.456587 0.587185 0.443963 Vertex 17634 0.458222 0.587581 0.440166 Vertex 17635 0.358721 0.295576 0.50345 Vertex 17636 0.449569 0.780986 0.403985 Vertex 17637 0.513847 0.0773322 0.641703 Vertex 17638 0.348605 0.297531 0.231274 Vertex 17639 0.492561 0.365896 0.434984 Vertex 17640 0.389862 0.447356 0.404642 Vertex 17641 0.436006 0.429411 0.628317 Vertex 17642 0.533718 0.404358 0.453984 Vertex 17643 0.51759 0.568996 0.567924 Vertex 17644 0.426701 0.252145 0.220613 Vertex 17645 0.424397 0.253863 0.217889 Vertex 17646 0.518698 0.38107 0.46606 Vertex 17647 0.375127 0.390825 0.526981 Vertex 17648 0.356127 0.282067 0.551056 Vertex 17649 0.410692 0.171698 0.604935 Vertex 17650 0.574916 0.491314 0.323004 Vertex 17651 0.400588 0.299142 0.215875 Vertex 17652 0.469966 0.0841906 0.727569 Vertex 17653 0.458085 0.329347 0.417536 Vertex 17654 0.550722 0.443335 0.362846 Vertex 17655 0.460129 0.446847 0.619866 Vertex 17656 0.581241 0.483295 0.308482 Vertex 17657 0.398918 0.180878 0.698169 Vertex 17658 0.394683 0.189217 0.579432 Vertex 17659 0.364513 0.883845 0.306551 Vertex 17660 0.463131 0.754423 0.476354 Vertex 17661 0.469848 0.615222 0.431667 Vertex 17662 0.473514 0.231037 0.598686 Vertex 17663 0.495499 0.771782 0.480825 Vertex 17664 0.398811 0.260129 0.222734 Vertex 17665 0.450978 0.096948 0.729909 Vertex 17666 0.49387 0.53147 0.383255 Vertex 17667 0.45895 0.767476 0.399661 Vertex 17668 0.435786 0.280639 0.636882 Vertex 17669 0.466975 0.324094 0.421166 Vertex 17670 0.373954 0.440433 0.567669 Vertex 17671 0.548892 0.148061 0.415019 Vertex 17672 0.492561 0.419917 0.386169 Vertex 17673 0.491898 0.417761 0.383842 Vertex 17674 0.647291 0.426449 0.223734 Vertex 17675 0.494522 0.06387 0.727208 Vertex 17676 0.370009 0.459492 0.464171 Vertex 17677 0.557385 0.537156 0.468767 Vertex 17678 0.496808 0.43464 0.385595 Vertex 17679 0.582207 0.455879 0.479907 Vertex 17680 0.43674 0.18089 0.793542 Vertex 17681 0.60662 0.493251 0.197675 Vertex 17682 0.378118 0.240099 0.204853 Vertex 17683 0.545824 0.574871 0.505535 Vertex 17684 0.538195 0.591396 0.444194 Vertex 17685 0.621936 0.496438 0.184372 Vertex 17686 0.458216 0.179273 0.567711 Vertex 17687 0.574347 0.447279 0.493002 Vertex 17688 0.340236 0.0988551 0.464123 Vertex 17689 0.428744 0.266549 0.644368 Vertex 17690 0.412884 0.370824 0.297353 Vertex 17691 0.402987 0.227176 0.466374 Vertex 17692 0.425031 0.287077 0.639867 Vertex 17693 0.513356 0.307511 0.473588 Vertex 17694 0.449231 0.279117 0.634447 Vertex 17695 0.519752 0.426497 0.590495 Vertex 17696 0.423284 0.805666 0.414213 Vertex 17697 0.546967 0.605847 0.472711 Vertex 17698 0.545634 0.600878 0.467884 Vertex 17699 0.476226 0.796426 0.40729 Vertex 17700 0.634178 0.494092 0.24871 Vertex 17701 0.376732 0.3112 0.607037 Vertex 17702 0.382305 0.35536 0.310454 Vertex 17703 0.491815 0.0697453 0.758036 Vertex 17704 0.51239 0.335015 0.584051 Vertex 17705 0.4464 0.363794 0.413455 Vertex 17706 0.53489 0.0149606 0.728381 Vertex 17707 0.405776 0.325498 0.203899 Vertex 17708 0.430196 0.402066 0.635762 Vertex 17709 0.429473 0.409907 0.629046 Vertex 17710 0.595266 0.439284 0.185184 Vertex 17711 0.592026 0.419159 0.370729 Vertex 17712 0.67656 0.447635 0.207163 Vertex 17713 0.592992 0.45441 0.190953 Vertex 17714 0.430652 0.102847 0.670653 Vertex 17715 0.436811 0.0943599 0.676925 Vertex 17716 0.46556 0.0623479 0.66043 Vertex 17717 0.490003 0.139514 0.648336 Vertex 17718 0.464049 0.441386 0.616916 Vertex 17719 0.376406 0.220649 0.222183 Vertex 17720 0.636109 0.496787 0.249006 Vertex 17721 0.351483 0.213358 0.519962 Vertex 17722 0.547429 0.607991 0.479321 Vertex 17723 0.567886 0.432692 0.341732 Vertex 17724 0.452074 0.816196 0.378091 Vertex 17725 0.460721 0.211848 0.625913 Vertex 17726 0.598174 0.533733 0.290187 Vertex 17727 0.546552 0.589139 0.457425 Vertex 17728 0.40814 0.26485 0.664973 Vertex 17729 0.379539 0.0747499 0.466102 Vertex 17730 0.538302 0.643331 0.453569 Vertex 17731 0.598624 0.431359 0.195389 Vertex 17732 0.447762 0.177585 0.584205 Vertex 17733 0.370306 0.406608 0.543007 Vertex 17734 0.369044 0.461677 0.475323 Vertex 17735 0.589687 0.496734 0.391784 Vertex 17736 0.407855 0.469181 0.594766 Vertex 17737 0.398497 0.316489 0.214643 Vertex 17738 0.531283 0.103747 0.776887 Vertex 17739 0.499035 0.497267 0.392412 Vertex 17740 0.640871 0.46638 0.184834 Vertex 17741 0.450652 0.162938 0.798819 Vertex 17742 0.520279 0.0926186 0.721066 Vertex 17743 0.457718 0.675432 0.449542 Vertex 17744 0.676774 0.450904 0.194417 Vertex 17745 0.364501 0.366465 0.267053 Vertex 17746 0.516311 0.0504019 0.661822 Vertex 17747 0.533392 0.686437 0.468175 Vertex 17748 0.520338 0.0891124 0.669628 Vertex 17749 0.600857 0.437021 0.190461 Vertex 17750 0.524336 0.317378 0.492505 Vertex 17751 0.519841 0.326125 0.486067 Vertex 17752 0.333206 0.942793 0.297383 Vertex 17753 0.393819 0.42748 0.597875 Vertex 17754 0.415454 0.370859 0.430601 Vertex 17755 0.487823 0.231991 0.48904 Vertex 17756 0.407897 0.369237 0.427924 Vertex 17757 0.509103 0.760837 0.46192 Vertex 17758 0.507771 0.763253 0.464029 Vertex 17759 0.38664 0.352061 0.378879 Vertex 17760 0.484376 0.582849 0.565632 Vertex 17761 0.547778 0.510137 0.423684 Vertex 17762 0.537935 0.57204 0.441215 Vertex 17763 0.44704 0.102113 0.718194 Vertex 17764 0.511739 0.388769 0.567586 Vertex 17765 0.440418 0.534052 0.453569 Vertex 17766 0.555229 0.00484473 0.759955 Vertex 17767 0.346538 0.113188 0.455263 Vertex 17768 0.368381 0.384624 0.256676 Vertex 17769 0.425653 0.450116 0.604834 Vertex 17770 0.533119 0.167102 0.438224 Vertex 17771 0.537206 0.167469 0.438928 Vertex 17772 0.48867 0.0955325 0.648022 Vertex 17773 0.500367 0.678275 0.539045 Vertex 17774 0.519953 0.150507 0.458225 Vertex 17775 0.438031 0.133449 0.636153 Vertex 17776 0.439405 0.518511 0.441392 Vertex 17777 0.412866 0.178527 0.741659 Vertex 17778 0.422686 0.14164 0.699224 Vertex 17779 0.417035 0.226714 0.772718 Vertex 17780 0.606649 0.497658 0.213447 Vertex 17781 0.533108 0.404174 0.458758 Vertex 17782 0.526498 0.0156181 0.73964 Vertex 17783 0.535731 0.0523326 0.795011 Vertex 17784 0.453513 0.242272 0.735458 Vertex 17785 0.466756 0.804605 0.395515 Vertex 17786 0.502819 0.0393857 0.677434 Vertex 17787 0.521014 0.309791 0.487482 Vertex 17788 0.456451 0.46349 0.400656 Vertex 17789 0.357258 0.312497 0.519281 Vertex 17790 0.355606 0.309027 0.521218 Vertex 17791 0.486852 0.104316 0.806027 Vertex 17792 0.488753 0.105868 0.806347 Vertex 17793 0.578167 0.505256 0.48676 Vertex 17794 0.300821 0.978832 0.221887 Vertex 17795 0.553251 0.456773 0.344403 Vertex 17796 0.411427 0.272454 0.229687 Vertex 17797 0.353396 0.292651 0.527662 Vertex 17798 0.434703 0.290572 0.427895 Vertex 17799 0.366154 0.207388 0.478901 Vertex 17800 0.464245 0.0986834 0.762395 Vertex 17801 0.618998 0.51844 0.310111 Vertex 17802 0.45516 0.251684 0.447013 Vertex 17803 0.509725 0.159793 0.455773 Vertex 17804 0.412125 0.235171 0.210373 Vertex 17805 0.464902 0.178171 0.674994 Vertex 17806 0.467603 0.0817387 0.731508 Vertex 17807 0.51688 0.440693 0.415575 Vertex 17808 0.515026 0.440101 0.415481 Vertex 17809 0.504472 0.041127 0.751692 Vertex 17810 0.612294 0.521917 0.212576 Vertex 17811 0.524419 0.397067 0.495099 Vertex 17812 0.418557 0.384298 0.39834 Vertex 17813 0.550964 0.540668 0.449127 Vertex 17814 0.392065 0.323371 0.452065 Vertex 17815 0.599915 0.468246 0.190354 Vertex 17816 0.60033 0.466972 0.194494 Vertex 17817 0.508007 0.129126 0.666998 Vertex 17818 0.490251 0.529575 0.591662 Vertex 17819 0.341379 0.0902021 0.458527 Vertex 17820 0.58762 0.446172 0.449453 Vertex 17821 0.421999 0.388414 0.404654 Vertex 17822 0.443741 0.245317 0.662912 Vertex 17823 0.662849 0.401746 0.221365 Vertex 17824 0.545581 0.161659 0.42976 Vertex 17825 0.372574 0.420296 0.399649 Vertex 17826 0.564865 0.402226 0.395569 Vertex 17827 0.415099 0.394017 0.298526 Vertex 17828 0.379391 0.915946 0.317863 Vertex 17829 0.407991 0.394526 0.289097 Vertex 17830 0.390229 0.21552 0.474044 Vertex 17831 0.374943 0.353376 0.461553 Vertex 17832 0.504797 0.395533 0.446249 Vertex 17833 0.529886 0.506986 0.419259 Vertex 17834 0.433358 0.830322 0.445236 Vertex 17835 0.537248 0.551465 0.436015 Vertex 17836 0.547565 0.562528 0.536481 Vertex 17837 0.381191 0.182305 0.550742 Vertex 17838 0.556733 0.0391962 0.730483 Vertex 17839 0.469338 0.121971 0.815935 Vertex 17840 0.54256 0.0546721 0.800708 Vertex 17841 0.352709 0.195483 0.50342 Vertex 17842 0.351975 0.204326 0.497219 Vertex 17843 0.609143 0.540093 0.260864 Vertex 17844 0.65778 0.471953 0.21424 Vertex 17845 0.621338 0.481086 0.344113 Vertex 17846 0.422366 0.241473 0.215543 Vertex 17847 0.385497 0.319101 0.253691 Vertex 17848 0.511603 0.660128 0.532447 Vertex 17849 0.552155 0.406312 0.400597 Vertex 17850 0.395341 0.333552 0.20891 Vertex 17851 0.552937 0.456981 0.540668 Vertex 17852 0.547837 0.451473 0.546863 Vertex 17853 0.502594 0.251832 0.536558 Vertex 17854 0.502955 0.253656 0.530469 Vertex 17855 0.469439 0.111157 0.785185 Vertex 17856 0.427773 0.297768 0.427664 Vertex 17857 0.547808 0.0312243 0.715126 Vertex 17858 0.523395 0.528829 0.411264 Vertex 17859 0.52266 0.525121 0.410731 Vertex 17860 0.357205 0.412543 0.446 Vertex 17861 0.50793 0.137175 0.790373 Vertex 17862 0.490198 0.061418 0.729311 Vertex 17863 0.443521 0.255397 0.729251 Vertex 17864 0.330653 0.917142 0.287942 Vertex 17865 0.331654 0.917859 0.295997 Vertex 17866 0.400316 0.303151 0.236083 Vertex 17867 0.366408 0.244801 0.206103 Vertex 17868 0.459761 0.214501 0.620138 Vertex 17869 0.508843 0.64268 0.54492 Vertex 17870 0.420589 0.242492 0.198622 Vertex 17871 0.483683 0.201524 0.567551 Vertex 17872 0.36411 0.0898172 0.482152 Vertex 17873 0.464298 0.47954 0.615744 Vertex 17874 0.416396 0.44497 0.603934 Vertex 17875 0.587028 0.430281 0.428724 Vertex 17876 0.505159 0.188347 0.459628 Vertex 17877 0.380534 0.916431 0.33684 Vertex 17878 0.382423 0.913873 0.342508 Vertex 17879 0.557059 0.557571 0.508182 Vertex 17880 0.599441 0.449619 0.210509 Vertex 17881 0.423071 0.319599 0.644688 Vertex 17882 0.387233 0.469235 0.577691 Vertex 17883 0.559937 0.486985 0.366542 Vertex 17884 0.43048 0.258986 0.656705 Vertex 17885 0.390413 0.254757 0.675343 Vertex 17886 0.371502 0.373838 0.489413 Vertex 17887 0.547553 0.0512725 0.787353 Vertex 17888 0.376868 0.404903 0.555238 Vertex 17889 0.364963 0.218961 0.5652 Vertex 17890 0.571611 0.41586 0.463958 Vertex 17891 0.392539 0.183608 0.665867 Vertex 17892 0.477056 0.505008 0.601624 Vertex 17893 0.462421 0.285182 0.632303 Vertex 17894 0.451884 0.185367 0.613221 Vertex 17895 0.357619 0.431087 0.493547 Vertex 17896 0.425398 0.805447 0.424684 Vertex 17897 0.395418 0.291904 0.195797 Vertex 17898 0.365348 0.441404 0.542919 Vertex 17899 0.435917 0.784664 0.430619 Vertex 17900 0.412593 0.146396 0.661194 Vertex 17901 0.494166 0.6448 0.539862 Vertex 17902 0.46816 0.520715 0.414444 Vertex 17903 0.419825 0.381265 0.306415 Vertex 17904 0.555809 0.44138 0.34798 Vertex 17905 0.563426 0.43618 0.343325 Vertex 17906 0.398711 0.316318 0.22961 Vertex 17907 0.50218 0.250582 0.546893 Vertex 17908 0.477826 0.11208 0.79552 Vertex 17909 0.411936 0.844116 0.346683 Vertex 17910 0.377223 0.872118 0.331562 Vertex 17911 0.37213 0.374798 0.522805 Vertex 17912 0.614349 0.523942 0.309607 Vertex 17913 0.423787 0.240288 0.770313 Vertex 17914 0.419452 0.243877 0.764266 Vertex 17915 0.458222 0.568724 0.557311 Vertex 17916 0.495416 0.189063 0.768637 Vertex 17917 0.528417 0.351326 0.503557 Vertex 17918 0.562875 0.493364 0.35414 Vertex 17919 0.470404 0.443548 0.37462 Vertex 17920 0.478199 0.225873 0.485285 Vertex 17921 0.476635 0.767571 0.392222 Vertex 17922 0.466987 0.787767 0.386768 Vertex 17923 0.349932 0.175791 0.459735 Vertex 17924 0.419286 0.391518 0.380199 Vertex 17925 0.410289 0.240271 0.749957 Vertex 17926 0.398918 0.181678 0.592491 Vertex 17927 0.597155 0.431342 0.390902 Vertex 17928 0.37964 0.358481 0.611396 Vertex 17929 0.441389 0.47832 0.414053 Vertex 17930 0.32601 0.244328 0.233904 Vertex 17931 0.56156 0.42427 0.50342 Vertex 17932 0.530822 0.0921033 0.718887 Vertex 17933 0.46861 0.13878 0.804605 Vertex 17934 0.37682 0.319753 0.255883 Vertex 17935 0.475042 0.217285 0.752054 Vertex 17936 0.476943 0.213927 0.743762 Vertex 17937 0.328142 0.96466 0.246389 Vertex 17938 0.480976 0.614518 0.422742 Vertex 17939 0.496097 0.467274 0.3907 Vertex 17940 0.370661 0.45415 0.451603 Vertex 17941 0.556514 0.430797 0.361839 Vertex 17942 0.483008 0.51298 0.403961 Vertex 17943 0.598091 0.531766 0.294131 Vertex 17944 0.507208 0.284898 0.47312 Vertex 17945 0.354474 0.282819 0.523688 Vertex 17946 0.49066 0.194642 0.781069 Vertex 17947 0.487012 0.244559 0.472397 Vertex 17948 0.460585 0.106193 0.764456 Vertex 17949 0.534209 0.125945 0.433948 Vertex 17950 0.44993 0.116149 0.656574 Vertex 17951 0.489404 0.573491 0.390985 Vertex 17952 0.631862 0.512002 0.202437 Vertex 17953 0.533801 0.129073 0.44956 Vertex 17954 0.421667 0.401219 0.341027 Vertex 17955 0.542181 0.0653092 0.776917 Vertex 17956 0.502748 0.413307 0.420728 Vertex 17957 0.503512 0.415895 0.424714 Vertex 17958 0.663146 0.45553 0.204859 Vertex 17959 0.661997 0.457757 0.20689 Vertex 17960 0.425848 0.24778 0.762199 Vertex 17961 0.480568 0.19928 0.787305 Vertex 17962 0.443516 0.245145 0.677428 Vertex 17963 0.576971 0.503835 0.333274 Vertex 17964 0.360119 0.178456 0.497166 Vertex 17965 0.438558 0.258459 0.725088 Vertex 17966 0.492591 0.211208 0.501981 Vertex 17967 0.517573 0.0764083 0.721274 Vertex 17968 0.401749 0.205321 0.741659 Vertex 17969 0.552149 0.0358499 0.785783 Vertex 17970 0.387789 0.417139 0.590685 Vertex 17971 0.384117 0.418448 0.586426 Vertex 17972 0.552978 0.497527 0.551015 Vertex 17973 0.651904 0.456146 0.219026 Vertex 17974 0.545918 0.576944 0.453451 Vertex 17975 0.430385 0.51523 0.458621 Vertex 17976 0.437711 0.208063 0.468903 Vertex 17977 0.438831 0.849724 0.423583 Vertex 17978 0.483695 0.49116 0.39259 Vertex 17979 0.364377 0.348099 0.534662 Vertex 17980 0.60601 0.485421 0.203058 Vertex 17981 0.462249 0.38319 0.629508 Vertex 17982 0.553547 0.0536416 0.751941 Vertex 17983 0.508718 0.563624 0.573385 Vertex 17984 0.395193 0.360992 0.622134 Vertex 17985 0.510572 0.287604 0.561385 Vertex 17986 0.479922 0.209615 0.774868 Vertex 17987 0.380765 0.335531 0.267947 Vertex 17988 0.595651 0.433136 0.191551 Vertex 17989 0.499171 0.0291573 0.664019 Vertex 17990 0.499106 0.0269066 0.656711 Vertex 17991 0.511632 0.74423 0.444626 Vertex 17992 0.439032 0.436376 0.400698 Vertex 17993 0.639212 0.440344 0.192315 Vertex 17994 0.338874 0.0929206 0.457792 Vertex 17995 0.469475 0.753315 0.39426 Vertex 17996 0.55835 0.399454 0.43403 Vertex 17997 0.358893 0.230332 0.215733 Vertex 17998 0.660475 0.498937 0.205102 Vertex 17999 0.494954 0.68954 0.530191 Vertex 18000 0.412499 0.23388 0.203846 Vertex 18001 0.389163 0.319427 0.252086 Vertex 18002 0.606839 0.499346 0.220033 Vertex 18003 0.376465 0.233773 0.591508 Vertex 18004 0.37284 0.315068 0.478367 Vertex 18005 0.48912 0.574078 0.392684 Vertex 18006 0.358182 0.269215 0.559301 Vertex 18007 0.440767 0.155772 0.776876 Vertex 18008 0.587715 0.432899 0.199221 Vertex 18009 0.499964 0.492043 0.395456 Vertex 18010 0.460431 0.726237 0.431028 Vertex 18011 0.596385 0.453593 0.193375 Vertex 18012 0.463931 0.7865 0.482288 Vertex 18013 0.513125 0.029483 0.629614 Vertex 18014 0.548027 0.58844 0.495289 Vertex 18015 0.368505 0.273882 0.581848 Vertex 18016 0.402809 0.3509 0.256599 Vertex 18017 0.539155 0.598598 0.445183 Vertex 18018 0.356287 0.408818 0.449945 Vertex 18019 0.503417 0.0397115 0.738769 Vertex 18020 0.403407 0.295334 0.221229 Vertex 18021 0.662465 0.460286 0.21661 Vertex 18022 0.465773 0.139846 0.649544 Vertex 18023 0.470381 0.13753 0.647033 Vertex 18024 0.512621 0.431152 0.598106 Vertex 18025 0.404396 0.368597 0.387188 Vertex 18026 0.484305 0.0512725 0.686656 Vertex 18027 0.369974 0.345765 0.507584 Vertex 18028 0.4827 0.426905 0.374555 Vertex 18029 0.486005 0.380578 0.421356 Vertex 18030 0.451511 0.180458 0.47922 Vertex 18031 0.384206 0.295695 0.453711 Vertex 18032 0.387683 0.293995 0.45014 Vertex 18033 0.541376 0.651949 0.466007 Vertex 18034 0.536549 0.0293231 0.776751 Vertex 18035 0.373883 0.299094 0.241331 Vertex 18036 0.420743 0.238067 0.77071 Vertex 18037 0.522157 0.111376 0.715167 Vertex 18038 0.464991 0.0875073 0.724543 Vertex 18039 0.49894 0.761542 0.428049 Vertex 18040 0.619555 0.506032 0.316489 Vertex 18041 0.461041 0.120011 0.640873 Vertex 18042 0.691024 0.464976 0.203574 Vertex 18043 0.4403 0.144318 0.75816 Vertex 18044 0.410058 0.279378 0.639677 Vertex 18045 0.353787 0.365618 0.414255 Vertex 18046 0.539581 0.461103 0.56963 Vertex 18047 0.467947 0.063485 0.689789 Vertex 18048 0.526291 0.0552999 0.786938 Vertex 18049 0.516702 0.0784753 0.793643 Vertex 18050 0.515464 0.0799145 0.795982 Vertex 18051 0.541417 0.024123 0.774465 Vertex 18052 0.524526 0.348395 0.525998 Vertex 18053 0.355552 0.18301 0.45579 Vertex 18054 0.58252 0.494092 0.403049 Vertex 18055 0.467396 0.551104 0.426331 Vertex 18056 0.424687 0.221395 0.783272 Vertex 18057 0.401305 0.284477 0.200689 Vertex 18058 0.581976 0.500459 0.315293 Vertex 18059 0.479283 0.196911 0.571756 Vertex 18060 0.474077 0.16892 0.501608 Vertex 18061 0.46521 0.806412 0.467707 Vertex 18062 0.491394 0.234792 0.491018 Vertex 18063 0.665977 0.46458 0.191148 Vertex 18064 0.468397 0.747475 0.400372 Vertex 18065 0.410941 0.263357 0.224469 Vertex 18066 0.457801 0.111269 0.64849 Vertex 18067 0.457594 0.109551 0.654857 Vertex 18068 0.368789 0.319504 0.252128 Vertex 18069 0.452086 0.194139 0.802313 Vertex 18070 0.545308 0.455358 0.383492 Vertex 18071 0.621338 0.533128 0.248296 Vertex 18072 0.360095 0.444804 0.490965 Vertex 18073 0.487705 0.20291 0.473623 Vertex 18074 0.515985 0.129286 0.71143 Vertex 18075 0.496073 0.500121 0.392969 Vertex 18076 0.381938 0.272537 0.230232 Vertex 18077 0.479519 0.613736 0.54251 Vertex 18078 0.468645 0.540638 0.58263 Vertex 18079 0.47015 0.626316 0.527721 Vertex 18080 0.408234 0.180606 0.731324 Vertex 18081 0.41607 0.411785 0.364895 Vertex 18082 0.346538 0.304792 0.222917 Vertex 18083 0.590178 0.507442 0.296921 Vertex 18084 0.389003 0.354294 0.329235 Vertex 18085 0.37643 0.909306 0.353826 Vertex 18086 0.322409 0.250801 0.209775 Vertex 18087 0.541091 0.117891 0.439106 Vertex 18088 0.454561 0.229503 0.675343 Vertex 18089 0.584943 0.484189 0.297596 Vertex 18090 0.421406 0.808266 0.406188 Vertex 18091 0.54307 0.0410737 0.785197 Vertex 18092 0.371869 0.307872 0.474316 Vertex 18093 0.47827 0.214009 0.762418 Vertex 18094 0.486028 0.683647 0.514004 Vertex 18095 0.474521 0.166214 0.538583 Vertex 18096 0.524526 0.0743116 0.672649 Vertex 18097 0.47975 0.726462 0.40193 Vertex 18098 0.493189 0.418797 0.60959 Vertex 18099 0.514173 0.525299 0.400058 Vertex 18100 0.42005 0.446267 0.391606 Vertex 18101 0.425463 0.464562 0.405116 Vertex 18102 0.516951 0.341163 0.465652 Vertex 18103 0.37229 0.372334 0.559295 Vertex 18104 0.455894 0.151377 0.65722 Vertex 18105 0.448088 0.122558 0.644113 Vertex 18106 0.548761 0.592864 0.472522 Vertex 18107 0.457742 0.472498 0.403197 Vertex 18108 0.454058 0.477313 0.407971 Vertex 18109 0.409827 0.242148 0.218238 Vertex 18110 0.435573 0.842463 0.443074 Vertex 18111 0.465672 0.0939038 0.66014 Vertex 18112 0.480129 0.168583 0.795958 Vertex 18113 0.442852 0.535498 0.447937 Vertex 18114 0.500136 0.718822 0.414811 Vertex 18115 0.383922 0.212298 0.620772 Vertex 18116 0.550354 0.559081 0.456371 Vertex 18117 0.455835 0.397636 0.391677 Vertex 18118 0.451724 0.402155 0.393964 Vertex 18119 0.650607 0.481305 0.221857 Vertex 18120 0.487177 0.692217 0.405874 Vertex 18121 0.330185 0.934845 0.294824 Vertex 18122 0.357732 0.322317 0.217148 Vertex 18123 0.503986 0.367519 0.450039 Vertex 18124 0.510501 0.178989 0.451964 Vertex 18125 0.546191 0.0357433 0.78493 Vertex 18126 0.37181 0.880173 0.356396 Vertex 18127 0.51672 0.42453 0.590934 Vertex 18128 0.599216 0.452722 0.210764 Vertex 18129 0.401003 0.295002 0.439284 Vertex 18130 0.371567 0.917272 0.302275 Vertex 18131 0.600839 0.457561 0.210782 Vertex 18132 0.313395 0.972649 0.248568 Vertex 18133 0.357211 0.420462 0.508905 Vertex 18134 0.513231 0.033617 0.666667 Vertex 18135 0.397893 0.296577 0.239998 Vertex 18136 0.486508 0.0504848 0.683558 Vertex 18137 0.475575 0.629614 0.529646 Vertex 18138 0.452062 0.355774 0.636526 Vertex 18139 0.444037 0.354157 0.641685 Vertex 18140 0.522133 0.176033 0.451425 Vertex 18141 0.524982 0.13567 0.744034 Vertex 18142 0.607212 0.461529 0.215389 Vertex 18143 0.529311 0.159077 0.437774 Vertex 18144 0.415093 0.818512 0.407876 Vertex 18145 0.416798 0.815479 0.407852 Vertex 18146 0.386682 0.43191 0.327736 Vertex 18147 0.56554 0.540988 0.47867 Vertex 18148 0.381375 0.214839 0.58558 Vertex 18149 0.396963 0.179095 0.553105 Vertex 18150 0.436213 0.531091 0.461968 Vertex 18151 0.338951 0.916544 0.312343 Vertex 18152 0.649109 0.415256 0.210456 Vertex 18153 0.514362 0.598503 0.42138 Vertex 18154 0.613721 0.46439 0.378879 Vertex 18155 0.488208 0.0836458 0.729257 Vertex 18156 0.458399 0.435339 0.385559 Vertex 18157 0.536033 0.399543 0.505434 Vertex 18158 0.542454 0.0358203 0.725502 Vertex 18159 0.636571 0.44709 0.201027 Vertex 18160 0.511792 0.479984 0.603744 Vertex 18161 0.510187 0.491184 0.60301 Vertex 18162 0.533066 0.600647 0.437922 Vertex 18163 0.597617 0.483651 0.396996 Vertex 18164 0.371105 0.305793 0.244707 Vertex 18165 0.510436 0.15162 0.706443 Vertex 18166 0.532924 0.539851 0.57387 Vertex 18167 0.358442 0.331574 0.547722 Vertex 18168 0.478986 0.37751 0.412134 Vertex 18169 0.481539 0.385168 0.407769 Vertex 18170 0.613229 0.497089 0.232281 Vertex 18171 0.49018 0.548302 0.583862 Vertex 18172 0.430924 0.265365 0.642342 Vertex 18173 0.499538 0.0735772 0.639417 Vertex 18174 0.536768 0.664256 0.45582 Vertex 18175 0.456794 0.302447 0.424021 Vertex 18176 0.467029 0.360998 0.411714 Vertex 18177 0.370969 0.206132 0.479925 Vertex 18178 0.450439 0.181926 0.604935 Vertex 18179 0.378816 0.176241 0.509592 Vertex 18180 0.652124 0.439604 0.22762 Vertex 18181 0.418711 0.161689 0.594558 Vertex 18182 0.458577 0.496005 0.412353 Vertex 18183 0.624056 0.53702 0.275374 Vertex 18184 0.375814 0.38646 0.521935 Vertex 18185 0.393203 0.313173 0.447605 Vertex 18186 0.388861 0.316323 0.451467 Vertex 18187 0.459412 0.730922 0.430672 Vertex 18188 0.361463 0.42045 0.5324 Vertex 18189 0.360966 0.42748 0.530339 Vertex 18190 0.322824 0.980982 0.21568 Vertex 18191 0.415922 0.867984 0.410802 Vertex 18192 0.363826 0.452118 0.51497 Vertex 18193 0.465127 0.19418 0.799234 Vertex 18194 0.456705 0.19347 0.801206 Vertex 18195 0.435804 0.837624 0.448014 Vertex 18196 0.445731 0.78881 0.399851 Vertex 18197 0.373575 0.233104 0.234691 Vertex 18198 0.469848 0.621998 0.431691 Vertex 18199 0.686866 0.455624 0.196348 Vertex 18200 0.338051 0.250463 0.210515 Vertex 18201 0.522642 0.387952 0.436696 Vertex 18202 0.383016 0.349946 0.451603 Vertex 18203 0.649867 0.461968 0.218564 Vertex 18204 0.652509 0.459687 0.218836 Vertex 18205 0.485869 0.750466 0.50576 Vertex 18206 0.387487 0.0800803 0.467932 Vertex 18207 0.403692 0.359204 0.439959 Vertex 18208 0.361084 0.12363 0.475874 Vertex 18209 0.493159 0.595559 0.564826 Vertex 18210 0.422046 0.348744 0.642858 Vertex 18211 0.449539 0.507193 0.5894 Vertex 18212 0.472471 0.620298 0.534052 Vertex 18213 0.466401 0.621725 0.52781 Vertex 18214 0.599631 0.443335 0.3285 Vertex 18215 0.517318 0.146414 0.717258 Vertex 18216 0.438813 0.162014 0.534461 Vertex 18217 0.47044 0.204125 0.483621 Vertex 18218 0.430024 0.855067 0.421504 Vertex 18219 0.414951 0.526051 0.497207 Vertex 18220 0.425481 0.872876 0.386768 Vertex 18221 0.384757 0.494992 0.501288 Vertex 18222 0.39935 0.318544 0.210568 Vertex 18223 0.641658 0.502745 0.244162 Vertex 18224 0.541417 0.0615305 0.79963 Vertex 18225 0.477275 0.172201 0.500418 Vertex 18226 0.436254 0.129724 0.72093 Vertex 18227 0.492686 0.210474 0.526205 Vertex 18228 0.485638 0.114639 0.808959 Vertex 18229 0.365165 0.31932 0.578863 Vertex 18230 0.547701 0.567829 0.511665 Vertex 18231 0.47737 0.238452 0.467422 Vertex 18232 0.436189 0.530682 0.470425 Vertex 18233 0.521772 0.364889 0.544826 Vertex 18234 0.469735 0.0700769 0.702487 Vertex 18235 0.488593 0.245577 0.592491 Vertex 18236 0.417497 0.821757 0.386726 Vertex 18237 0.453004 0.493364 0.413627 Vertex 18238 0.350666 0.0986834 0.459356 Vertex 18239 0.398278 0.348578 0.271199 Vertex 18240 0.365692 0.435861 0.446326 Vertex 18241 0.413742 0.431087 0.380282 Vertex 18242 0.408921 0.431845 0.37847 Vertex 18243 0.332294 0.959767 0.25994 Vertex 18244 0.365627 0.918173 0.343437 Vertex 18245 0.49403 0.0907174 0.727078 Vertex 18246 0.371129 0.08669 0.466658 Vertex 18247 0.499556 0.615021 0.407076 Vertex 18248 0.413961 0.24155 0.760334 Vertex 18249 0.380054 0.326031 0.260023 Vertex 18250 0.396738 0.269309 0.194678 Vertex 18251 0.360409 0.344119 0.250416 Vertex 18252 0.357915 0.335442 0.244322 Vertex 18253 0.603534 0.443613 0.337461 Vertex 18254 0.395281 0.488057 0.445319 Vertex 18255 0.447359 0.761737 0.445076 Vertex 18256 0.485199 0.0486606 0.643959 Vertex 18257 0.552273 0.0594339 0.751562 Vertex 18258 0.483215 0.745426 0.397008 Vertex 18259 0.485016 0.742423 0.398358 Vertex 18260 0.592749 0.452041 0.192866 Vertex 18261 0.545273 0.0465936 0.714646 Vertex 18262 0.35952 0.268563 0.563293 Vertex 18263 0.356263 0.364149 0.447155 Vertex 18264 0.423456 0.263789 0.714729 Vertex 18265 0.697882 0.454434 0.211528 Vertex 18266 0.367415 0.36701 0.29605 Vertex 18267 0.432997 0.25673 0.683647 Vertex 18268 0.437184 0.253454 0.683641 Vertex 18269 0.356636 0.256961 0.517362 Vertex 18270 0.357252 0.255711 0.514875 Vertex 18271 0.506166 0.129914 0.793998 Vertex 18272 0.35599 0.385399 0.410192 Vertex 18273 0.452636 0.839342 0.426153 Vertex 18274 0.379219 0.257304 0.467079 Vertex 18275 0.446311 0.607819 0.477852 Vertex 18276 0.587892 0.48779 0.441582 Vertex 18277 0.465471 0.0687147 0.700183 Vertex 18278 0.543395 0.596122 0.51372 Vertex 18279 0.543851 0.594742 0.515787 Vertex 18280 0.425451 0.160611 0.725094 Vertex 18281 0.343049 0.277376 0.231156 Vertex 18282 0.514203 0.304662 0.559277 Vertex 18283 0.444694 0.810007 0.369165 Vertex 18284 0.472021 0.328329 0.631895 Vertex 18285 0.514131 0.287907 0.536623 Vertex 18286 0.533256 0.538388 0.426035 Vertex 18287 0.522186 0.560639 0.569802 Vertex 18288 0.361647 0.328275 0.514875 Vertex 18289 0.52847 0.0752948 0.707811 Vertex 18290 0.475764 0.329442 0.423506 Vertex 18291 0.442307 0.162228 0.59547 Vertex 18292 0.416117 0.253478 0.745722 Vertex 18293 0.446376 0.377937 0.413123 Vertex 18294 0.373782 0.175246 0.474494 Vertex 18295 0.569502 0.474293 0.318231 Vertex 18296 0.603729 0.471106 0.207358 Vertex 18297 0.396644 0.328868 0.445864 Vertex 18298 0.400795 0.331722 0.442358 Vertex 18299 0.320964 0.968989 0.204581 Vertex 18300 0.360859 0.296293 0.232085 Vertex 18301 0.545273 0.620991 0.475323 Vertex 18302 0.587578 0.485871 0.424347 Vertex 18303 0.525367 0.0491522 0.661277 Vertex 18304 0.486141 0.700177 0.404435 Vertex 18305 0.442124 0.370628 0.417536 Vertex 18306 0.437812 0.369124 0.41933 Vertex 18307 0.513918 0.106928 0.702072 Vertex 18308 0.651277 0.42549 0.202383 Vertex 18309 0.447229 0.0821473 0.668976 Vertex 18310 0.374872 0.343011 0.390102 Vertex 18311 0.363376 0.126473 0.472338 Vertex 18312 0.483707 0.0708054 0.701202 Vertex 18313 0.48405 0.0704501 0.700331 Vertex 18314 0.457683 0.754387 0.468032 Vertex 18315 0.403123 0.305355 0.629994 Vertex 18316 0.46383 0.719923 0.429423 Vertex 18317 0.659142 0.442085 0.219298 Vertex 18318 0.524472 0.50884 0.413864 Vertex 18319 0.375281 0.342744 0.419698 Vertex 18320 0.662488 0.426177 0.227809 Vertex 18321 0.497933 0.170513 0.717667 Vertex 18322 0.426891 0.866509 0.402569 Vertex 18323 0.482143 0.679021 0.41673 Vertex 18324 0.503252 0.643201 0.552602 Vertex 18325 0.471654 0.181245 0.799056 Vertex 18326 0.498875 0.371363 0.609045 Vertex 18327 0.622492 0.45781 0.208395 Vertex 18328 0.519432 0.360394 0.563452 Vertex 18329 0.402483 0.179137 0.588345 Vertex 18330 0.643773 0.432864 0.191959 Vertex 18331 0.520877 0.0986597 0.675349 Vertex 18332 0.368689 0.323016 0.587475 Vertex 18333 0.371259 0.36342 0.535699 Vertex 18334 0.444232 0.244476 0.65048 Vertex 18335 0.552422 0.159918 0.437134 Vertex 18336 0.476297 0.0995362 0.650646 Vertex 18337 0.474799 0.103907 0.648579 Vertex 18338 0.517247 0.383244 0.546893 Vertex 18339 0.516773 0.38521 0.549084 Vertex 18340 0.465743 0.165929 0.66476 Vertex 18341 0.511443 0.372316 0.449358 Vertex 18342 0.550503 0.542753 0.544796 Vertex 18343 0.596143 0.452035 0.400846 Vertex 18344 0.595604 0.455032 0.40344 Vertex 18345 0.41071 0.235444 0.461298 Vertex 18346 0.382169 0.264346 0.602708 Vertex 18347 0.37688 0.874209 0.319427 Vertex 18348 0.416609 0.425537 0.608885 Vertex 18349 0.349327 0.898942 0.323058 Vertex 18350 0.379894 0.227365 0.591976 Vertex 18351 0.664318 0.424566 0.216278 Vertex 18352 0.357732 0.268237 0.557145 Vertex 18353 0.485312 0.555575 0.389273 Vertex 18354 0.501125 0.182495 0.766558 Vertex 18355 0.362594 0.256433 0.208442 Vertex 18356 0.543241 0.163157 0.432046 Vertex 18357 0.681228 0.47068 0.197426 Vertex 18358 0.352478 0.39298 0.452243 Vertex 18359 0.459412 0.170448 0.652458 Vertex 18360 0.471068 0.202502 0.687716 Vertex 18361 0.517886 0.351818 0.5696 Vertex 18362 0.380688 0.335501 0.464183 Vertex 18363 0.509861 0.125247 0.792796 Vertex 18364 0.404918 0.262255 0.692371 Vertex 18365 0.532977 0.075052 0.714919 Vertex 18366 0.484945 0.066014 0.741458 Vertex 18367 0.369684 0.206393 0.224937 Vertex 18368 0.458038 0.127645 0.642964 Vertex 18369 0.505739 0.143625 0.699798 Vertex 18370 0.507824 0.143553 0.697074 Vertex 18371 0.391064 0.897348 0.32378 Vertex 18372 0.460798 0.19925 0.64085 Vertex 18373 0.650738 0.448908 0.223107 Vertex 18374 0.42695 0.227709 0.782585 Vertex 18375 0.394689 0.205457 0.714729 Vertex 18376 0.521422 0.377457 0.507531 Vertex 18377 0.403774 0.306119 0.439088 Vertex 18378 0.67723 0.48028 0.208069 Vertex 18379 0.424723 0.438769 0.389812 Vertex 18380 0.353633 0.893629 0.296417 Vertex 18381 0.352508 0.894583 0.30247 Vertex 18382 0.551456 0.0616371 0.751793 Vertex 18383 0.475528 0.217083 0.776941 Vertex 18384 0.593075 0.515668 0.220003 Vertex 18385 0.481539 0.0496438 0.646482 Vertex 18386 0.369411 0.210894 0.480138 Vertex 18387 0.422076 0.207672 0.782431 Vertex 18388 0.452915 0.198232 0.801395 Vertex 18389 0.426677 0.374626 0.64435 Vertex 18390 0.642991 0.473203 0.188803 Vertex 18391 0.394825 0.898699 0.368064 Vertex 18392 0.558392 0.0168914 0.768317 Vertex 18393 0.661345 0.439764 0.215194 Vertex 18394 0.520048 0.0199061 0.727161 Vertex 18395 0.431285 0.347779 0.648437 Vertex 18396 0.429686 0.406526 0.400271 Vertex 18397 0.558486 0.407728 0.38961 Vertex 18398 0.55482 0.407781 0.394959 Vertex 18399 0.547204 0.427669 0.540621 Vertex 18400 0.404823 0.313735 0.631184 Vertex 18401 0.605566 0.532287 0.244197 Vertex 18402 0.455183 0.128842 0.787305 Vertex 18403 0.45712 0.128853 0.791238 Vertex 18404 0.413458 0.162299 0.609069 Vertex 18405 0.402241 0.357148 0.442778 Vertex 18406 0.503376 0.729554 0.501353 Vertex 18407 0.448751 0.0888695 0.661413 Vertex 18408 0.377164 0.206938 0.480275 Vertex 18409 0.638738 0.511647 0.204125 Vertex 18410 0.370418 0.107662 0.474861 Vertex 18411 0.364685 0.273704 0.48477 Vertex 18412 0.463647 0.824571 0.405199 Vertex 18413 0.47442 0.216704 0.768637 Vertex 18414 0.45141 0.6266 0.488578 Vertex 18415 0.554133 0.398536 0.447718 Vertex 18416 0.531834 0.515899 0.419615 Vertex 18417 0.40089 0.444466 0.38871 Vertex 18418 0.62617 0.526116 0.248675 Vertex 18419 0.437451 0.51648 0.583056 Vertex 18420 0.490986 0.226412 0.496011 Vertex 18421 0.62822 0.523516 0.258412 Vertex 18422 0.500302 0.281771 0.458846 Vertex 18423 0.459299 0.175992 0.656681 Vertex 18424 0.435757 0.209633 0.794596 Vertex 18425 0.473372 0.243712 0.460179 Vertex 18426 0.482279 0.755287 0.39789 Vertex 18427 0.485614 0.756128 0.403772 Vertex 18428 0.464322 0.165112 0.500021 Vertex 18429 0.411107 0.180606 0.56347 Vertex 18430 0.398432 0.234762 0.727137 Vertex 18431 0.327982 0.935988 0.238671 Vertex 18432 0.329866 0.935828 0.241982 Vertex 18433 0.496808 0.355851 0.439787 Vertex 18434 0.511354 0.0664227 0.77286 Vertex 18435 0.554956 0.543949 0.468169 Vertex 18436 0.532059 0.0187926 0.730098 Vertex 18437 0.531189 0.115865 0.774874 Vertex 18438 0.513456 0.125602 0.696013 Vertex 18439 0.512704 0.131128 0.696013 Vertex 18440 0.448011 0.258418 0.441428 Vertex 18441 0.41376 0.514229 0.469401 Vertex 18442 0.477737 0.137287 0.802082 Vertex 18443 0.38205 0.244067 0.230042 Vertex 18444 0.386362 0.241212 0.226021 Vertex 18445 0.446305 0.160392 0.617917 Vertex 18446 0.492004 0.217954 0.517806 Vertex 18447 0.426541 0.817392 0.383297 Vertex 18448 0.435828 0.256445 0.644232 Vertex 18449 0.430142 0.261112 0.652488 Vertex 18450 0.434247 0.554936 0.54912 Vertex 18451 0.364223 0.399288 0.302222 Vertex 18452 0.408098 0.336674 0.224795 Vertex 18453 0.373048 0.356094 0.47729 Vertex 18454 0.465252 0.390369 0.394289 Vertex 18455 0.384508 0.270577 0.227756 Vertex 18456 0.538207 0.620855 0.448802 Vertex 18457 0.531135 0.135913 0.789076 Vertex 18458 0.68256 0.457158 0.213322 Vertex 18459 0.473792 0.096871 0.652494 Vertex 18460 0.436468 0.45123 0.404311 Vertex 18461 0.490565 0.176252 0.790273 Vertex 18462 0.490932 0.178592 0.789284 Vertex 18463 0.480556 0.459883 0.379874 Vertex 18464 0.421282 0.856233 0.429132 Vertex 18465 0.399042 0.873184 0.401183 Vertex 18466 0.535299 0.456045 0.57586 Vertex 18467 0.470712 0.592675 0.430755 Vertex 18468 0.322166 0.260769 0.211498 Vertex 18469 0.585731 0.460588 0.469448 Vertex 18470 0.588123 0.462969 0.460825 Vertex 18471 0.586654 0.462595 0.465456 Vertex 18472 0.441762 0.178373 0.793962 Vertex 18473 0.482978 0.272821 0.609223 Vertex 18474 0.470025 0.442636 0.612806 Vertex 18475 0.49146 0.414225 0.389676 Vertex 18476 0.492905 0.412407 0.395557 Vertex 18477 0.403141 0.425265 0.360382 Vertex 18478 0.48119 0.226062 0.491243 Vertex 18479 0.481853 0.2256 0.491101 Vertex 18480 0.358472 0.401355 0.356177 Vertex 18481 0.46537 0.746149 0.478397 Vertex 18482 0.535595 0.0678915 0.710447 Vertex 18483 0.536217 0.0702901 0.714694 Vertex 18484 0.458749 0.158342 0.519933 Vertex 18485 0.357228 0.109854 0.478208 Vertex 18486 0.492709 0.668686 0.531115 Vertex 18487 0.496926 0.337509 0.442612 Vertex 18488 0.652503 0.444484 0.196609 Vertex 18489 0.503648 0.0582079 0.684245 Vertex 18490 0.507468 0.0687147 0.635786 Vertex 18491 0.518852 0.583643 0.555759 Vertex 18492 0.515506 0.0904509 0.800181 Vertex 18493 0.501718 0.295381 0.454404 Vertex 18494 0.443575 0.57589 0.481803 Vertex 18495 0.405605 0.367187 0.41907 Vertex 18496 0.393967 0.850198 0.37038 Vertex 18497 0.379853 0.31309 0.250606 Vertex 18498 0.412961 0.303104 0.637965 Vertex 18499 0.419191 0.14459 0.687503 Vertex 18500 0.494492 0.0462738 0.683765 Vertex 18501 0.405006 0.251358 0.197266 Vertex 18502 0.401429 0.255806 0.197811 Vertex 18503 0.397088 0.326777 0.445633 Vertex 18504 0.42538 0.382414 0.424418 Vertex 18505 0.425209 0.169536 0.55108 Vertex 18506 0.4222 0.17126 0.546976 Vertex 18507 0.407654 0.180238 0.567563 Vertex 18508 0.406765 0.526305 0.532394 Vertex 18509 0.411539 0.287699 0.434913 Vertex 18510 0.436391 0.537203 0.568516 Vertex 18511 0.361647 0.884307 0.32933 Vertex 18512 0.363275 0.882115 0.331302 Vertex 18513 0.390863 0.353707 0.341655 Vertex 18514 0.473751 0.211711 0.716749 Vertex 18515 0.429052 0.167238 0.559324 Vertex 18516 0.408128 0.275475 0.229716 Vertex 18517 0.382714 0.239335 0.61033 Vertex 18518 0.520362 0.345487 0.486926 Vertex 18519 0.440276 0.107798 0.71467 Vertex 18520 0.358709 0.218825 0.492173 Vertex 18521 0.364193 0.222195 0.493085 Vertex 18522 0.445831 0.244979 0.698152 Vertex 18523 0.486437 0.0516812 0.688829 Vertex 18524 0.484441 0.0527709 0.689866 Vertex 18525 0.517928 0.403321 0.567598 Vertex 18526 0.49942 0.291075 0.596584 Vertex 18527 0.373889 0.426657 0.339546 Vertex 18528 0.372556 0.423399 0.347785 Vertex 18529 0.422265 0.382788 0.319006 Vertex 18530 0.376868 0.428339 0.335217 Vertex 18531 0.377051 0.428428 0.335465 Vertex 18532 0.375488 0.42764 0.335465 Vertex 18533 0.44207 0.132129 0.631184 Vertex 18534 0.512337 0.104097 0.696085 Vertex 18535 0.355232 0.176904 0.488857 Vertex 18536 0.354498 0.0874244 0.450294 Vertex 18537 0.541879 0.576897 0.526246 Vertex 18538 0.543389 0.573598 0.524096 Vertex 18539 0.348303 0.133426 0.470976 Vertex 18540 0.422135 0.161961 0.5903 Vertex 18541 0.354362 0.387016 0.427622 Vertex 18542 0.389359 0.876584 0.384784 Vertex 18543 0.547162 0.398346 0.457058 Vertex 18544 0.548193 0.15823 0.443442 Vertex 18545 0.500503 0.256582 0.56963 Vertex 18546 0.415176 0.537156 0.536617 Vertex 18547 0.409549 0.414201 0.610384 Vertex 18548 0.446364 0.560823 0.455589 Vertex 18549 0.447028 0.564175 0.454274 Vertex 18550 0.627912 0.498179 0.184698 Vertex 18551 0.460668 0.201157 0.588328 Vertex 18552 0.506355 0.294054 0.464076 Vertex 18553 0.552019 0.486097 0.390919 Vertex 18554 0.551539 0.490414 0.39468 Vertex 18555 0.622534 0.490154 0.256291 Vertex 18556 0.469931 0.119128 0.799571 Vertex 18557 0.469143 0.510445 0.407846 Vertex 18558 0.50045 0.278916 0.590389 Vertex 18559 0.373243 0.369497 0.53455 Vertex 18560 0.590546 0.425875 0.195631 Vertex 18561 0.490915 0.409013 0.395308 Vertex 18562 0.542797 0.0412336 0.713225 Vertex 18563 0.513918 0.324023 0.465474 Vertex 18564 0.508215 0.39927 0.586201 Vertex 18565 0.496328 0.542338 0.379951 Vertex 18566 0.497181 0.534763 0.384262 Vertex 18567 0.497199 0.538921 0.382918 Vertex 18568 0.605086 0.489514 0.201673 Vertex 18569 0.370282 0.0803291 0.470467 Vertex 18570 0.509915 0.131015 0.700195 Vertex 18571 0.486526 0.0403156 0.643835 Vertex 18572 0.490897 0.034387 0.644166 Vertex 18573 0.522731 0.346689 0.551015 Vertex 18574 0.658295 0.444668 0.204936 Vertex 18575 0.488072 0.750757 0.404761 Vertex 18576 0.488984 0.745663 0.403866 Vertex 18577 0.548139 0.48904 0.398329 Vertex 18578 0.432855 0.160528 0.772718 Vertex 18579 0.518834 0.376557 0.548906 Vertex 18580 0.554311 0.421386 0.519915 Vertex 18581 0.498087 0.48779 0.394236 Vertex 18582 0.529388 0.683173 0.447427 Vertex 18583 0.529459 0.49475 0.415001 Vertex 18584 0.423835 0.141735 0.639677 Vertex 18585 0.429224 0.22897 0.20689 Vertex 18586 0.396229 0.851685 0.389462 Vertex 18587 0.591701 0.451526 0.190058 Vertex 18588 0.477139 0.675533 0.51189 Vertex 18589 0.365307 0.207933 0.55936 Vertex 18590 0.498981 0.36021 0.443619 Vertex 18591 0.451085 0.17277 0.62153 Vertex 18592 0.301336 0.975865 0.228248 Vertex 18593 0.506882 0.263085 0.522325 Vertex 18594 0.504584 0.262036 0.513584 Vertex 18595 0.513918 0.115373 0.696043 Vertex 18596 0.538989 0.557115 0.436613 Vertex 18597 0.371958 0.211409 0.227732 Vertex 18598 0.393451 0.311994 0.202567 Vertex 18599 0.400132 0.514188 0.50762 Vertex 18600 0.399078 0.514496 0.51372 Vertex 18601 0.390567 0.249439 0.667063 Vertex 18602 0.370489 0.325036 0.486855 Vertex 18603 0.414429 0.264553 0.704364 Vertex 18604 0.416117 0.264619 0.702297 Vertex 18605 0.523602 0.0966519 0.711596 Vertex 18606 0.436995 0.782407 0.432804 Vertex 18607 0.358596 0.399543 0.327156 Vertex 18608 0.395518 0.396469 0.265951 Vertex 18609 0.673913 0.44863 0.206867 Vertex 18610 0.341474 0.950025 0.271702 Vertex 18611 0.585973 0.511908 0.314085 Vertex 18612 0.658052 0.468186 0.191391 Vertex 18613 0.594182 0.500974 0.385447 Vertex 18614 0.534399 0.401219 0.528177 Vertex 18615 0.500065 0.102711 0.807964 Vertex 18616 0.496464 0.10293 0.808366 Vertex 18617 0.564539 0.545181 0.502941 Vertex 18618 0.568484 0.538672 0.497083 Vertex 18619 0.322847 0.953146 0.222159 Vertex 18620 0.484862 0.736394 0.399324 Vertex 18621 0.450723 0.534544 0.576618 Vertex 18622 0.440098 0.399039 0.645233 Vertex 18623 0.412866 0.820194 0.395811 Vertex 18624 0.520214 0.73181 0.459806 Vertex 18625 0.613721 0.471053 0.318248 Vertex 18626 0.611814 0.5263 0.221176 Vertex 18627 0.436308 0.329975 0.41997 Vertex 18628 0.365875 0.357871 0.366571 Vertex 18629 0.355084 0.253697 0.523498 Vertex 18630 0.476049 0.813235 0.422712 Vertex 18631 0.381476 0.34371 0.21767 Vertex 18632 0.430101 0.11811 0.671097 Vertex 18633 0.405066 0.160652 0.639132 Vertex 18634 0.501309 0.458971 0.391826 Vertex 18635 0.501415 0.462258 0.392382 Vertex 18636 0.464434 0.478752 0.401172 Vertex 18637 0.574318 0.45428 0.319676 Vertex 18638 0.57042 0.457638 0.320706 Vertex 18639 0.5449 0.6214 0.500921 Vertex 18640 0.519355 0.0474109 0.658156 Vertex 18641 0.473615 0.155772 0.798493 Vertex 18642 0.616386 0.449654 0.203876 Vertex 18643 0.600827 0.523445 0.252128 Vertex 18644 0.468977 0.131738 0.645446 Vertex 18645 0.435111 0.506151 0.444425 Vertex 18646 0.511715 0.426935 0.596803 Vertex 18647 0.539676 0.434131 0.561403 Vertex 18648 0.62819 0.510907 0.286201 Vertex 18649 0.388476 0.328548 0.211415 Vertex 18650 0.356678 0.31341 0.240028 Vertex 18651 0.371395 0.365855 0.540555 Vertex 18652 0.451914 0.234028 0.656687 Vertex 18653 0.490062 0.590341 0.39917 Vertex 18654 0.553209 0.559751 0.466647 Vertex 18655 0.484074 0.0732515 0.727481 Vertex 18656 0.382488 0.241141 0.215922 Vertex 18657 0.359888 0.297312 0.493121 Vertex 18658 0.44152 0.475276 0.412881 Vertex 18659 0.423989 0.409013 0.378049 Vertex 18660 0.415667 0.23773 0.766416 Vertex 18661 0.5968 0.517925 0.345842 Vertex 18662 0.503986 0.742382 0.492902 Vertex 18663 0.510945 0.38303 0.571709 Vertex 18664 0.414044 0.157282 0.698152 Vertex 18665 0.402377 0.887428 0.335329 Vertex 18666 0.387363 0.345706 0.392832 Vertex 18667 0.382903 0.876584 0.376758 Vertex 18668 0.433121 0.557897 0.522029 Vertex 18669 0.434934 0.560023 0.522071 Vertex 18670 0.476831 0.178444 0.795929 Vertex 18671 0.447946 0.510202 0.427338 Vertex 18672 0.403538 0.164354 0.678121 Vertex 18673 0.622492 0.49276 0.34153 Vertex 18674 0.546605 0.599095 0.488697 Vertex 18675 0.354291 0.924048 0.328246 Vertex 18676 0.545729 0.60423 0.49812 Vertex 18677 0.416751 0.189626 0.766434 Vertex 18678 0.593957 0.441967 0.422813 Vertex 18679 0.443575 0.579041 0.503367 Vertex 18680 0.471737 0.215111 0.781069 Vertex 18681 0.653711 0.42244 0.228005 Vertex 18682 0.367552 0.357918 0.563328 Vertex 18683 0.538254 0.639796 0.451556 Vertex 18684 0.46415 0.582636 0.552715 Vertex 18685 0.548163 0.0328293 0.715191 Vertex 18686 0.520741 0.341305 0.55721 Vertex 18687 0.546564 0.0570945 0.719823 Vertex 18688 0.420376 0.216088 0.782857 Vertex 18689 0.383555 0.39821 0.27294 Vertex 18690 0.440228 0.121616 0.722938 Vertex 18691 0.423272 0.391897 0.339286 Vertex 18692 0.422265 0.253656 0.749821 Vertex 18693 0.456522 0.2653 0.439349 Vertex 18694 0.490547 0.58446 0.56934 Vertex 18695 0.499076 0.720806 0.413206 Vertex 18696 0.408524 0.522474 0.511753 Vertex 18697 0.617121 0.46548 0.361359 Vertex 18698 0.427234 0.8678 0.366636 Vertex 18699 0.485661 0.684482 0.409682 Vertex 18700 0.570634 0.432094 0.480571 Vertex 18701 0.475083 0.0510297 0.67057 Vertex 18702 0.530822 0.0412928 0.65619 Vertex 18703 0.522755 0.0285887 0.727208 Vertex 18704 0.51964 0.305994 0.519115 Vertex 18705 0.494261 0.382758 0.437448 Vertex 18706 0.423485 0.512144 0.581274 Vertex 18707 0.518976 0.290678 0.495371 Vertex 18708 0.499568 0.184864 0.453664 Vertex 18709 0.498602 0.187707 0.454943 Vertex 18710 0.352318 0.387905 0.474861 Vertex 18711 0.503962 0.0948751 0.723951 Vertex 18712 0.508055 0.322317 0.588215 Vertex 18713 0.518402 0.356029 0.459172 Vertex 18714 0.458583 0.2057 0.620961 Vertex 18715 0.461343 0.20291 0.62442 Vertex 18716 0.61946 0.541509 0.275374 Vertex 18717 0.411646 0.427166 0.60741 Vertex 18718 0.488439 0.193541 0.546839 Vertex 18719 0.466158 0.541746 0.42318 Vertex 18720 0.525479 0.158248 0.788413 Vertex 18721 0.403786 0.319699 0.203064 Vertex 18722 0.490334 0.213506 0.509029 Vertex 18723 0.490986 0.215573 0.511611 Vertex 18724 0.491282 0.65953 0.40514 Vertex 18725 0.603735 0.506091 0.24258 Vertex 18726 0.449112 0.580202 0.526199 Vertex 18727 0.506166 0.0185261 0.644232 Vertex 18728 0.462273 0.504587 0.415113 Vertex 18729 0.302254 0.966045 0.22727 Vertex 18730 0.454342 0.231541 0.687775 Vertex 18731 0.444232 0.268131 0.634684 Vertex 18732 0.377875 0.873018 0.360548 Vertex 18733 0.472856 0.178906 0.695255 Vertex 18734 0.431724 0.273337 0.433746 Vertex 18735 0.39492 0.277062 0.6215 Vertex 18736 0.460756 0.197065 0.6214 Vertex 18737 0.489789 0.194749 0.782934 Vertex 18738 0.421116 0.437874 0.607416 Vertex 18739 0.408631 0.334334 0.207435 Vertex 18740 0.36138 0.213382 0.554385 Vertex 18741 0.524307 0.476141 0.409901 Vertex 18742 0.340971 0.905498 0.306427 Vertex 18743 0.510418 0.0423826 0.665393 Vertex 18744 0.412807 0.402291 0.300238 Vertex 18745 0.35692 0.408492 0.511339 Vertex 18746 0.327502 0.268634 0.209265 Vertex 18747 0.323854 0.266005 0.211818 Vertex 18748 0.461432 0.19225 0.650474 Vertex 18749 0.463878 0.230332 0.760357 Vertex 18750 0.378976 0.353328 0.300113 Vertex 18751 0.457025 0.523469 0.428345 Vertex 18752 0.599323 0.536208 0.268605 Vertex 18753 0.417296 0.399288 0.371209 Vertex 18754 0.42544 0.547686 0.546591 Vertex 18755 0.401275 0.840473 0.391352 Vertex 18756 0.459981 0.206926 0.625232 Vertex 18757 0.357738 0.424294 0.505191 Vertex 18758 0.427086 0.265584 0.648472 Vertex 18759 0.526237 0.0554124 0.790847 Vertex 18760 0.383632 0.462299 0.43361 Vertex 18761 0.524863 0.0862813 0.709867 Vertex 18762 0.51454 0.550026 0.403144 Vertex 18763 0.499224 0.528758 0.590797 Vertex 18764 0.369915 0.35844 0.22695 Vertex 18765 0.368126 0.355911 0.229633 Vertex 18766 0.368333 0.357095 0.23173 Vertex 18767 0.619134 0.50403 0.324704 Vertex 18768 0.431386 0.261355 0.702274 Vertex 18769 0.353811 0.382 0.418483 Vertex 18770 0.517318 0.106655 0.708883 Vertex 18771 0.410787 0.835101 0.420432 Vertex 18772 0.409703 0.830843 0.412123 Vertex 18773 0.548299 0.144697 0.41734 Vertex 18774 0.370234 0.307588 0.481074 Vertex 18775 0.511697 0.0852804 0.688196 Vertex 18776 0.396537 0.259478 0.678767 Vertex 18777 0.453785 0.190982 0.60497 Vertex 18778 0.639828 0.476496 0.187227 Vertex 18779 0.553351 0.144128 0.420633 Vertex 18780 0.377537 0.178225 0.491344 Vertex 18781 0.32344 0.973366 0.239927 Vertex 18782 0.464719 0.422019 0.375994 Vertex 18783 0.64533 0.426799 0.21119 Vertex 18784 0.646556 0.422002 0.212363 Vertex 18785 0.381612 0.225529 0.606226 Vertex 18786 0.363038 0.262404 0.22634 Vertex 18787 0.363951 0.260745 0.227519 Vertex 18788 0.58088 0.504113 0.32683 Vertex 18789 0.371934 0.875002 0.343763 Vertex 18790 0.35647 0.305064 0.55233 Vertex 18791 0.336381 0.258293 0.231647 Vertex 18792 0.355582 0.275214 0.199961 Vertex 18793 0.486253 0.73075 0.507264 Vertex 18794 0.539214 0.149636 0.451834 Vertex 18795 0.353242 0.298182 0.537132 Vertex 18796 0.623162 0.460801 0.187689 Vertex 18797 0.58611 0.496994 0.394479 Vertex 18798 0.364318 0.173356 0.489011 Vertex 18799 0.419108 0.391239 0.356929 Vertex 18800 0.357495 0.167292 0.478989 Vertex 18801 0.368712 0.356331 0.364546 Vertex 18802 0.503192 0.697932 0.522118 Vertex 18803 0.349351 0.138727 0.459172 Vertex 18804 0.511739 0.0526347 0.676374 Vertex 18805 0.433216 0.202354 0.47222 Vertex 18806 0.499621 0.530434 0.389308 Vertex 18807 0.471139 0.185681 0.696499 Vertex 18808 0.351448 0.105186 0.464876 Vertex 18809 0.318257 0.933808 0.266591 Vertex 18810 0.526877 0.0815491 0.710862 Vertex 18811 0.512254 0.753694 0.464959 Vertex 18812 0.493527 0.0314967 0.660217 Vertex 18813 0.547014 0.498611 0.405916 Vertex 18814 0.583989 0.481856 0.478486 Vertex 18815 0.400292 0.330639 0.231458 Vertex 18816 0.44749 0.427622 0.635981 Vertex 18817 0.562253 0.507009 0.418608 Vertex 18818 0.323072 0.974829 0.229746 Vertex 18819 0.425985 0.540751 0.557648 Vertex 18820 0.588082 0.426799 0.414225 Vertex 18821 0.459128 0.240205 0.619333 Vertex 18822 0.449112 0.250635 0.747937 Vertex 18823 0.54124 0.00617142 0.728487 Vertex 18824 0.582438 0.504024 0.436986 Vertex 18825 0.553807 0.507596 0.418116 Vertex 18826 0.638667 0.459895 0.184698 Vertex 18827 0.405711 0.36897 0.624639 Vertex 18828 0.446495 0.0999094 0.733575 Vertex 18829 0.464565 0.156939 0.800489 Vertex 18830 0.485039 0.35443 0.629206 Vertex 18831 0.594005 0.522853 0.286527 Vertex 18832 0.516092 0.097872 0.689866 Vertex 18833 0.497595 0.74571 0.497059 Vertex 18834 0.479235 0.434658 0.611829 Vertex 18835 0.35939 0.288653 0.229225 Vertex 18836 0.454165 0.663374 0.478616 Vertex 18837 0.353159 0.132715 0.455636 Vertex 18838 0.355967 0.135724 0.455032 Vertex 18839 0.354054 0.136458 0.455222 Vertex 18840 0.468029 0.198682 0.483254 Vertex 18841 0.494492 0.343882 0.619422 Vertex 18842 0.470718 0.345179 0.631462 Vertex 18843 0.458518 0.441813 0.386916 Vertex 18844 0.463534 0.582399 0.433391 Vertex 18845 0.379503 0.873593 0.368609 Vertex 18846 0.488167 0.412046 0.383759 Vertex 18847 0.459424 0.154043 0.655953 Vertex 18848 0.462077 0.157484 0.656888 Vertex 18849 0.459507 0.159403 0.657107 Vertex 18850 0.588692 0.426201 0.19514 Vertex 18851 0.438161 0.48095 0.422564 Vertex 18852 0.594543 0.517931 0.23744 Vertex 18853 0.534944 0.504942 0.418608 Vertex 18854 0.534251 0.506707 0.418513 Vertex 18855 0.645863 0.420165 0.204101 Vertex 18856 0.512526 0.0278247 0.727208 Vertex 18857 0.542963 0.1435 0.452065 Vertex 18858 0.542365 0.142452 0.447072 Vertex 18859 0.531135 0.0597064 0.79356 Vertex 18860 0.41241 0.870643 0.409416 Vertex 18861 0.409425 0.166676 0.505979 Vertex 18862 0.606525 0.49475 0.206375 Vertex 18863 0.442035 0.357812 0.41756 Vertex 18864 0.560642 0.0150969 0.736649 Vertex 18865 0.476919 0.191486 0.79555 Vertex 18866 0.523898 0.0667247 0.722565 Vertex 18867 0.525136 0.336389 0.520643 Vertex 18868 0.469646 0.46208 0.388467 Vertex 18869 0.514173 0.648478 0.422878 Vertex 18870 0.357785 0.377191 0.383125 Vertex 18871 0.403757 0.383492 0.256208 Vertex 18872 0.493639 0.416014 0.391731 Vertex 18873 0.485205 0.773186 0.486973 Vertex 18874 0.590629 0.413716 0.380715 Vertex 18875 0.45147 0.151514 0.648437 Vertex 18876 0.441306 0.572022 0.497125 Vertex 18877 0.509151 0.0893078 0.806305 Vertex 18878 0.43953 0.558809 0.503077 Vertex 18879 0.523258 0.0579355 0.727563 Vertex 18880 0.363619 0.346091 0.396546 Vertex 18881 0.4248 0.225665 0.206565 Vertex 18882 0.45478 0.241023 0.743762 Vertex 18883 0.645164 0.507643 0.19819 Vertex 18884 0.643826 0.504433 0.193973 Vertex 18885 0.417254 0.236628 0.2144 Vertex 18886 0.503962 0.395273 0.588185 Vertex 18887 0.518852 0.385713 0.438739 Vertex 18888 0.353906 0.226494 0.5342 Vertex 18889 0.354474 0.218949 0.503995 Vertex 18890 0.498602 0.667597 0.542569 Vertex 18891 0.45372 0.182128 0.619416 Vertex 18892 0.470298 0.548616 0.424945 Vertex 18893 0.416532 0.141747 0.664126 Vertex 18894 0.593448 0.46041 0.440504 Vertex 18895 0.496873 0.0646281 0.727244 Vertex 18896 0.448242 0.440498 0.39641 Vertex 18897 0.577652 0.516326 0.449453 Vertex 18898 0.460934 0.600481 0.532584 Vertex 18899 0.504845 0.039439 0.720634 Vertex 18900 0.4498 0.492073 0.415344 Vertex 18901 0.396809 0.892166 0.378677 Vertex 18902 0.526196 0.0588653 0.668686 Vertex 18903 0.384816 0.219257 0.696085 Vertex 18904 0.384129 0.22085 0.691933 Vertex 18905 0.457641 0.206488 0.617017 Vertex 18906 0.458399 0.207074 0.612747 Vertex 18907 0.468717 0.732598 0.416405 Vertex 18908 0.400156 0.338741 0.205807 Vertex 18909 0.387914 0.309329 0.243972 Vertex 18910 0.528358 0.0256747 0.652737 Vertex 18911 0.51653 0.0331847 0.76028 Vertex 18912 0.409259 0.17232 0.714753 Vertex 18913 0.457606 0.641116 0.49408 Vertex 18914 0.368428 0.250434 0.202845 Vertex 18915 0.517845 0.0263025 0.662473 Vertex 18916 0.375731 0.391002 0.546934 Vertex 18917 0.411261 0.264115 0.698128 Vertex 18918 0.364638 0.195596 0.542599 Vertex 18919 0.396211 0.258743 0.203556 Vertex 18920 0.557562 0.48387 0.364445 Vertex 18921 0.417071 0.537837 0.532447 Vertex 18922 0.483263 0.0620162 0.698353 Vertex 18923 0.354137 0.300463 0.235023 Vertex 18924 0.499864 0.253206 0.507312 Vertex 18925 0.371472 0.354714 0.517303 Vertex 18926 0.489404 0.73101 0.513678 Vertex 18927 0.486739 0.736418 0.50987 Vertex 18928 0.439666 0.345984 0.417358 Vertex 18929 0.463374 0.0925949 0.661715 Vertex 18930 0.392492 0.246857 0.704412 Vertex 18931 0.535868 0.158656 0.43467 Vertex 18932 0.366663 0.328548 0.212908 Vertex 18933 0.465726 0.58844 0.433296 Vertex 18934 0.580371 0.435369 0.329383 Vertex 18935 0.362144 0.320848 0.571087 Vertex 18936 0.44117 0.164502 0.573598 Vertex 18937 0.508991 0.0471681 0.669699 Vertex 18938 0.421631 0.297223 0.640133 Vertex 18939 0.494261 0.4287 0.609596 Vertex 18940 0.549359 0.399649 0.482655 Vertex 18941 0.368949 0.415232 0.368378 Vertex 18942 0.375411 0.359257 0.471053 Vertex 18943 0.364851 0.320807 0.249924 Vertex 18944 0.486875 0.195075 0.466185 Vertex 18945 0.485774 0.193866 0.462299 Vertex 18946 0.656287 0.498125 0.193345 Vertex 18947 0.550775 0.469294 0.381248 Vertex 18948 0.509376 0.539768 0.395977 Vertex 18949 0.505644 0.193541 0.462619 Vertex 18950 0.58913 0.500791 0.274735 Vertex 18951 0.577628 0.469632 0.313143 Vertex 18952 0.576746 0.471112 0.313498 Vertex 18953 0.497228 0.757165 0.489277 Vertex 18954 0.537692 0.052386 0.711655 Vertex 18955 0.474888 0.60911 0.428481 Vertex 18956 0.461947 0.129114 0.809059 Vertex 18957 0.48639 0.668402 0.407846 Vertex 18958 0.535489 0.00922158 0.731697 Vertex 18959 0.364697 0.242788 0.212014 Vertex 18960 0.52221 0.726805 0.476377 Vertex 18961 0.452826 0.552851 0.565259 Vertex 18962 0.488729 0.0666418 0.730371 Vertex 18963 0.505413 0.531879 0.394603 Vertex 18964 0.494522 0.171615 0.462074 Vertex 18965 0.457996 0.115729 0.770651 Vertex 18966 0.501605 0.653234 0.548634 Vertex 18967 0.550041 0.57846 0.491196 Vertex 18968 0.44964 0.817499 0.374271 Vertex 18969 0.609095 0.452829 0.210183 Vertex 18970 0.498993 0.420651 0.400135 Vertex 18971 0.523258 0.0220027 0.655491 Vertex 18972 0.508161 0.284874 0.573681 Vertex 18973 0.403662 0.258637 0.222047 Vertex 18974 0.405557 0.259792 0.223871 Vertex 18975 0.517709 0.139585 0.789402 Vertex 18976 0.380167 0.34448 0.464076 Vertex 18977 0.425777 0.251589 0.755969 Vertex 18978 0.357495 0.405027 0.510693 Vertex 18979 0.473774 0.219328 0.487109 Vertex 18980 0.53431 0.590016 0.438218 Vertex 18981 0.378852 0.891189 0.31078 Vertex 18982 0.508801 0.364285 0.450087 Vertex 18983 0.428389 0.520726 0.468346 Vertex 18984 0.424936 0.519708 0.468494 Vertex 18985 0.427128 0.519311 0.466931 Vertex 18986 0.536187 0.0849487 0.758267 Vertex 18987 0.539486 0.0811701 0.752018 Vertex 18988 0.450901 0.592805 0.513874 Vertex 18989 0.524443 0.101627 0.795224 Vertex 18990 0.522133 0.096646 0.79658 Vertex 18991 0.450196 0.438934 0.632055 Vertex 18992 0.376039 0.388953 0.24171 Vertex 18993 0.515671 0.0934359 0.656172 Vertex 18994 0.402673 0.240614 0.4616 Vertex 18995 0.386498 0.440279 0.591046 Vertex 18996 0.533611 0.420237 0.409469 Vertex 18997 0.467721 0.824204 0.417192 Vertex 18998 0.389276 0.246093 0.660815 Vertex 18999 0.517727 0.351084 0.460635 Vertex 19000 0.516394 0.353322 0.454902 Vertex 19001 0.472181 0.207139 0.582186 Vertex 19002 0.370732 0.309424 0.592485 Vertex 19003 0.606946 0.443904 0.20785 Vertex 19004 0.498359 0.72568 0.511665 Vertex 19005 0.392859 0.384665 0.236569 Vertex 19006 0.534405 0.0616371 0.70822 Vertex 19007 0.533066 0.0622649 0.708795 Vertex 19008 0.419422 0.828569 0.376729 Vertex 19009 0.416265 0.830156 0.377013 Vertex 19010 0.453146 0.479736 0.409291 Vertex 19011 0.506924 0.163157 0.466048 Vertex 19012 0.49146 0.684399 0.405714 Vertex 19013 0.406523 0.880416 0.337722 Vertex 19014 0.511792 0.437602 0.41397 Vertex 19015 0.44303 0.247561 0.760334 Vertex 19016 0.432197 0.431537 0.393975 Vertex 19017 0.412428 0.529445 0.554865 Vertex 19018 0.674647 0.460043 0.216829 Vertex 19019 0.599821 0.504404 0.380839 Vertex 19020 0.594407 0.505618 0.380756 Vertex 19021 0.405131 0.328832 0.202407 Vertex 19022 0.494889 0.173546 0.488857 Vertex 19023 0.499864 0.284152 0.457158 Vertex 19024 0.514019 0.0246679 0.729174 Vertex 19025 0.52051 0.0568753 0.63995 Vertex 19026 0.465903 0.104316 0.774874 Vertex 19027 0.372758 0.211587 0.21674 Vertex 19028 0.486194 0.0789668 0.708522 Vertex 19029 0.426867 0.135872 0.697684 Vertex 19030 0.389199 0.894967 0.376361 Vertex 19031 0.36892 0.15207 0.461879 Vertex 19032 0.600063 0.523042 0.250144 Vertex 19033 0.511354 0.166148 0.749637 Vertex 19034 0.625466 0.530268 0.291709 Vertex 19035 0.622996 0.52685 0.300072 Vertex 19036 0.361931 0.242859 0.219352 Vertex 19037 0.529205 0.172474 0.4494 Vertex 19038 0.546967 0.508733 0.419478 Vertex 19039 0.586921 0.496455 0.2965 Vertex 19040 0.418634 0.294427 0.432005 Vertex 19041 0.463143 0.167836 0.492386 Vertex 19042 0.385758 0.259016 0.224416 Vertex 19043 0.610286 0.4831 0.273976 Vertex 19044 0.485116 0.383096 0.417672 Vertex 19045 0.453193 0.140385 0.652091 Vertex 19046 0.396484 0.180073 0.620156 Vertex 19047 0.368037 0.174825 0.459954 Vertex 19048 0.367735 0.179433 0.461186 Vertex 19049 0.395329 0.182767 0.616537 Vertex 19050 0.494196 0.207358 0.530374 Vertex 19051 0.522607 0.482117 0.41137 Vertex 19052 0.378325 0.243919 0.235651 Vertex 19053 0.508736 0.710281 0.422771 Vertex 19054 0.504815 0.705223 0.418365 Vertex 19055 0.531597 0.014167 0.756016 Vertex 19056 0.482664 0.501276 0.39577 Vertex 19057 0.551646 0.446219 0.353079 Vertex 19058 0.518621 0.303311 0.536569 Vertex 19059 0.474491 0.0785049 0.735962 Vertex 19060 0.472323 0.0789668 0.736145 Vertex 19061 0.448396 0.492594 0.599373 Vertex 19062 0.478365 0.367602 0.416268 Vertex 19063 0.359811 0.099554 0.479499 Vertex 19064 0.333674 0.276126 0.206571 Vertex 19065 0.421773 0.263327 0.687775 Vertex 19066 0.553955 0.423968 0.371031 Vertex 19067 0.552623 0.428102 0.371155 Vertex 19068 0.35833 0.316525 0.210568 Vertex 19069 0.463019 0.790095 0.481903 Vertex 19070 0.38195 0.427693 0.584383 Vertex 19071 0.323303 0.240804 0.216201 Vertex 19072 0.472051 0.220116 0.481305 Vertex 19073 0.371709 0.239187 0.237576 Vertex 19074 0.373758 0.241224 0.237143 Vertex 19075 0.611299 0.452693 0.358167 Vertex 19076 0.457902 0.0822302 0.728487 Vertex 19077 0.526178 0.136239 0.764539 Vertex 19078 0.527665 0.139271 0.770692 Vertex 19079 0.494818 0.0383255 0.677979 Vertex 19080 0.498359 0.0374786 0.679205 Vertex 19081 0.462284 0.717157 0.478575 Vertex 19082 0.584392 0.479232 0.301002 Vertex 19083 0.506379 0.104292 0.801117 Vertex 19084 0.444049 0.116013 0.664683 Vertex 19085 0.442254 0.123251 0.667152 Vertex 19086 0.377028 0.0863939 0.476419 Vertex 19087 0.61821 0.458657 0.209964 Vertex 19088 0.456451 0.688699 0.470271 Vertex 19089 0.606839 0.483058 0.191468 Vertex 19090 0.607342 0.48474 0.191823 Vertex 19091 0.624713 0.490639 0.292159 Vertex 19092 0.358389 0.385909 0.374904 Vertex 19093 0.55771 0.476277 0.344752 Vertex 19094 0.496583 0.314185 0.445378 Vertex 19095 0.546682 0.526685 0.434889 Vertex 19096 0.413263 0.483562 0.423192 Vertex 19097 0.408821 0.484089 0.425751 Vertex 19098 0.330594 0.268196 0.229965 Vertex 19099 0.495611 0.0302174 0.640601 Vertex 19100 0.440945 0.297685 0.637332 Vertex 19101 0.407452 0.397896 0.289683 Vertex 19102 0.419286 0.376178 0.309951 Vertex 19103 0.427992 0.218552 0.787068 Vertex 19104 0.565546 0.402528 0.437051 Vertex 19105 0.407565 0.268344 0.226589 Vertex 19106 0.539948 0.662556 0.478409 Vertex 19107 0.427957 0.836878 0.438899 Vertex 19108 0.444552 0.430121 0.635271 Vertex 19109 0.447342 0.133941 0.756105 Vertex 19110 0.486538 0.63408 0.412638 Vertex 19111 0.496233 0.189774 0.762436 Vertex 19112 0.489831 0.605118 0.401645 Vertex 19113 0.507593 0.431342 0.40479 Vertex 19114 0.480076 0.802236 0.41827 Vertex 19115 0.377004 0.235556 0.238097 Vertex 19116 0.377614 0.18198 0.544826 Vertex 19117 0.499443 0.628009 0.557121 Vertex 19118 0.492887 0.230439 0.5411 Vertex 19119 0.541826 0.488134 0.400869 Vertex 19120 0.538391 0.486102 0.403783 Vertex 19121 0.456611 0.120911 0.638872 Vertex 19122 0.372758 0.338705 0.48262 Vertex 19123 0.378141 0.437738 0.41243 Vertex 19124 0.494841 0.568581 0.388438 Vertex 19125 0.516198 0.348649 0.45839 Vertex 19126 0.474775 0.236764 0.600664 Vertex 19127 0.392699 0.255314 0.214347 Vertex 19128 0.396661 0.254064 0.213583 Vertex 19129 0.484755 0.200547 0.776935 Vertex 19130 0.364572 0.121344 0.470407 Vertex 19131 0.446856 0.1296 0.63286 Vertex 19132 0.426849 0.800779 0.408243 Vertex 19133 0.511413 0.300172 0.57162 Vertex 19134 0.567151 0.403813 0.441197 Vertex 19135 0.364643 0.26485 0.57255 Vertex 19136 0.334592 0.929437 0.257026 Vertex 19137 0.504679 0.267722 0.477201 Vertex 19138 0.365561 0.243173 0.21016 Vertex 19139 0.488249 0.510178 0.391216 Vertex 19140 0.515464 0.317958 0.565508 Vertex 19141 0.356897 0.166705 0.451597 Vertex 19142 0.518236 0.112489 0.685649 Vertex 19143 0.353562 0.393691 0.490367 Vertex 19144 0.493047 0.0377274 0.638564 Vertex 19145 0.474758 0.65552 0.518955 Vertex 19146 0.393801 0.401219 0.607055 Vertex 19147 0.557657 0.00290803 0.756105 Vertex 19148 0.643779 0.435831 0.198847 Vertex 19149 0.45147 0.185622 0.60285 Vertex 19150 0.634883 0.510575 0.266016 Vertex 19151 0.551237 0.563026 0.465367 Vertex 19152 0.395601 0.848178 0.380726 Vertex 19153 0.385 0.348146 0.423381 Vertex 19154 0.378609 0.346689 0.428303 Vertex 19155 0.516495 0.15313 0.728997 Vertex 19156 0.471684 0.0592444 0.653299 Vertex 19157 0.499497 0.647051 0.550322 Vertex 19158 0.360302 0.361963 0.450407 Vertex 19159 0.47031 0.77607 0.388183 Vertex 19160 0.457132 0.713396 0.465871 Vertex 19161 0.505739 0.390594 0.448399 Vertex 19162 0.410888 0.873616 0.404056 Vertex 19163 0.431629 0.135724 0.667217 Vertex 19164 0.427945 0.193772 0.480914 Vertex 19165 0.518769 0.111701 0.793003 Vertex 19166 0.481142 0.126484 0.806815 Vertex 19167 0.53765 0.0561172 0.798967 Vertex 19168 0.443581 0.769585 0.441226 Vertex 19169 0.606051 0.503776 0.22727 Vertex 19170 0.385675 0.454618 0.419467 Vertex 19171 0.371295 0.298869 0.472427 Vertex 19172 0.439844 0.434143 0.400058 Vertex 19173 0.335232 0.25166 0.207003 Vertex 19174 0.383454 0.299059 0.611225 Vertex 19175 0.393505 0.260076 0.453865 Vertex 19176 0.394511 0.26299 0.451283 Vertex 19177 0.367084 0.379441 0.260822 Vertex 19178 0.461047 0.216349 0.618083 Vertex 19179 0.460946 0.213737 0.611272 Vertex 19180 0.483742 0.599148 0.418401 Vertex 19181 0.63891 0.504942 0.251755 Vertex 19182 0.477399 0.0768169 0.725094 Vertex 19183 0.486076 0.602441 0.412158 Vertex 19184 0.376305 0.331172 0.264536 Vertex 19185 0.607301 0.503432 0.207572 Vertex 19186 0.479531 0.564471 0.412158 Vertex 19187 0.424202 0.175299 0.77267 Vertex 19188 0.372278 0.254609 0.474079 Vertex 19189 0.521884 0.311295 0.530286 Vertex 19190 0.520066 0.308275 0.536445 Vertex 19191 0.544627 0.617917 0.462199 Vertex 19192 0.405149 0.175044 0.59656 Vertex 19193 0.467455 0.170525 0.674011 Vertex 19194 0.549265 0.585064 0.471065 Vertex 19195 0.551284 0.581902 0.472522 Vertex 19196 0.475693 0.066316 0.651084 Vertex 19197 0.549934 0.0115847 0.7684 Vertex 19198 0.535406 0.117713 0.436808 Vertex 19199 0.523667 0.385074 0.439349 Vertex 19200 0.437753 0.32805 0.646103 Vertex 19201 0.465998 0.209822 0.685572 Vertex 19202 0.547837 0.042732 0.793643 Vertex 19203 0.526385 0.35164 0.510143 Vertex 19204 0.385971 0.392821 0.252347 Vertex 19205 0.524549 0.06188 0.654063 Vertex 19206 0.472892 0.60131 0.545258 Vertex 19207 0.496737 0.411607 0.405454 Vertex 19208 0.387807 0.197106 0.681568 Vertex 19209 0.4966 0.237457 0.536392 Vertex 19210 0.411243 0.526874 0.517949 Vertex 19211 0.596154 0.510285 0.248592 Vertex 19212 0.528251 0.644161 0.524185 Vertex 19213 0.535572 0.643734 0.514318 Vertex 19214 0.535133 0.647187 0.510753 Vertex 19215 0.499224 0.471225 0.393022 Vertex 19216 0.479437 0.107692 0.791386 Vertex 19217 0.447946 0.613321 0.472113 Vertex 19218 0.447904 0.610212 0.469501 Vertex 19219 0.506515 0.0998324 0.717992 Vertex 19220 0.313626 0.99801 0.215111 Vertex 19221 0.516104 0.124773 0.683647 Vertex 19222 0.526913 0.15531 0.442221 Vertex 19223 0.34851 0.103096 0.456021 Vertex 19224 0.478797 0.648152 0.421012 Vertex 19225 0.421667 0.809806 0.416606 Vertex 19226 0.426127 0.532524 0.491208 Vertex 19227 0.523762 0.13798 0.714729 Vertex 19228 0.444416 0.222118 0.791161 Vertex 19229 0.372917 0.457348 0.551039 Vertex 19230 0.619507 0.48275 0.334062 Vertex 19231 0.529951 0.399022 0.426236 Vertex 19232 0.551883 0.568356 0.48509 Vertex 19233 0.427483 0.140687 0.63902 Vertex 19234 0.549496 0.146195 0.411791 Vertex 19235 0.549034 0.144169 0.410772 Vertex 19236 0.388334 0.356728 0.22441 Vertex 19237 0.602924 0.527395 0.214566 Vertex 19238 0.586477 0.424157 0.197592 Vertex 19239 0.587981 0.424619 0.196698 Vertex 19240 0.443054 0.48461 0.418306 Vertex 19241 0.474716 0.805328 0.462074 Vertex 19242 0.356334 0.104488 0.469099 Vertex 19243 0.489102 0.618284 0.547165 Vertex 19244 0.650501 0.434013 0.22977 Vertex 19245 0.455906 0.151934 0.793536 Vertex 19246 0.378609 0.353393 0.347897 Vertex 19247 0.528932 0.108805 0.732923 Vertex 19248 0.375358 0.291738 0.236841 Vertex 19249 0.547932 0.549996 0.542729 Vertex 19250 0.489244 0.406342 0.39728 Vertex 19251 0.486834 0.403511 0.395119 Vertex 19252 0.515488 0.282843 0.492677 Vertex 19253 0.513006 0.0782028 0.684227 Vertex 19254 0.461432 0.216621 0.669119 Vertex 19255 0.450333 0.761021 0.45354 Vertex 19256 0.390016 0.207874 0.47652 Vertex 19257 0.543976 0.0758693 0.739622 Vertex 19258 0.615895 0.473647 0.219079 Vertex 19259 0.617938 0.476176 0.220447 Vertex 19260 0.436705 0.78201 0.422712 Vertex 19261 0.423082 0.249782 0.225263 Vertex 19262 0.422727 0.833159 0.354667 Vertex 19263 0.475622 0.297809 0.629994 Vertex 19264 0.524247 0.720616 0.478533 Vertex 19265 0.449035 0.375248 0.411655 Vertex 19266 0.401571 0.392246 0.262155 Vertex 19267 0.603534 0.508573 0.233045 Vertex 19268 0.531645 0.0727954 0.711436 Vertex 19269 0.586341 0.495129 0.294498 Vertex 19270 0.476262 0.574315 0.565194 Vertex 19271 0.41748 0.234194 0.198871 Vertex 19272 0.36443 0.21767 0.231837 Vertex 19273 0.38712 0.426035 0.379737 Vertex 19274 0.657247 0.448511 0.215354 Vertex 19275 0.445802 0.352777 0.4157 Vertex 19276 0.358336 0.327855 0.224984 Vertex 19277 0.423373 0.812086 0.426698 Vertex 19278 0.494841 0.679981 0.406774 Vertex 19279 0.541956 0.635608 0.465409 Vertex 19280 0.472104 0.703737 0.425679 Vertex 19281 0.475024 0.700935 0.423749 Vertex 19282 0.47272 0.69028 0.426485 Vertex 19283 0.397911 0.379927 0.236634 Vertex 19284 0.375435 0.871028 0.339896 Vertex 19285 0.492656 0.317313 0.442221 Vertex 19286 0.486946 0.316987 0.436707 Vertex 19287 0.469522 0.558608 0.427859 Vertex 19288 0.406351 0.198534 0.474453 Vertex 19289 0.426707 0.197035 0.47954 Vertex 19290 0.52693 0.0692833 0.720634 Vertex 19291 0.49936 0.250132 0.557228 Vertex 19292 0.455989 0.126881 0.803871 Vertex 19293 0.326561 0.240194 0.228407 Vertex 19294 0.404716 0.246489 0.456187 Vertex 19295 0.356287 0.412359 0.46317 Vertex 19296 0.394008 0.858466 0.391393 Vertex 19297 0.387416 0.433136 0.392726 Vertex 19298 0.385106 0.434439 0.398222 Vertex 19299 0.516797 0.34631 0.462187 Vertex 19300 0.492845 0.0535823 0.727344 Vertex 19301 0.614053 0.474435 0.185978 Vertex 19302 0.395678 0.499523 0.468252 Vertex 19303 0.471163 0.427966 0.371742 Vertex 19304 0.405972 0.248462 0.741381 Vertex 19305 0.422609 0.137139 0.673087 Vertex 19306 0.366474 0.0940637 0.467434 Vertex 19307 0.472537 0.429962 0.371831 Vertex 19308 0.439844 0.204095 0.797771 Vertex 19309 0.502458 0.428676 0.401237 Vertex 19310 0.504152 0.43175 0.401266 Vertex 19311 0.548945 0.0382189 0.796574 Vertex 19312 0.371869 0.466729 0.470289 Vertex 19313 0.538936 0.0702605 0.716689 Vertex 19314 0.523738 0.588274 0.552738 Vertex 19315 0.525651 0.618048 0.433308 Vertex 19316 0.412131 0.375597 0.360317 Vertex 19317 0.339727 0.254272 0.226915 Vertex 19318 0.359751 0.367738 0.375059 Vertex 19319 0.555874 0.0309281 0.776988 Vertex 19320 0.555922 0.031171 0.778765 Vertex 19321 0.554406 0.034541 0.776805 Vertex 19322 0.382791 0.22621 0.675343 Vertex 19323 0.527759 0.151567 0.786897 Vertex 19324 0.513646 0.402291 0.444816 Vertex 19325 0.511905 0.397476 0.447167 Vertex 19326 0.461224 0.230451 0.617402 Vertex 19327 0.409703 0.326718 0.210213 Vertex 19328 0.516305 0.459634 0.600072 Vertex 19329 0.563888 0.547864 0.492813 Vertex 19330 0.420097 0.816386 0.422458 Vertex 19331 0.419647 0.815586 0.418312 Vertex 19332 0.359728 0.354981 0.432864 Vertex 19333 0.647551 0.505102 0.195987 Vertex 19334 0.389702 0.439562 0.394876 Vertex 19335 0.333834 0.938304 0.301084 Vertex 19336 0.466904 0.1694 0.799838 Vertex 19337 0.357915 0.398856 0.420473 Vertex 19338 0.424557 0.156015 0.606901 Vertex 19339 0.500503 0.430305 0.397405 Vertex 19340 0.469765 0.521763 0.413846 Vertex 19341 0.438304 0.153213 0.588411 Vertex 19342 0.375671 0.303548 0.60285 Vertex 19343 0.494107 0.729198 0.515609 Vertex 19344 0.493568 0.730631 0.514744 Vertex 19345 0.4464 0.446207 0.39988 Vertex 19346 0.456954 0.0968651 0.727024 Vertex 19347 0.482208 0.549072 0.390996 Vertex 19348 0.492928 0.788229 0.455589 Vertex 19349 0.601064 0.52656 0.208253 Vertex 19350 0.601941 0.523747 0.207767 Vertex 19351 0.433027 0.392175 0.421018 Vertex 19352 0.472993 0.219316 0.762418 Vertex 19353 0.508007 0.407479 0.588233 Vertex 19354 0.395506 0.866456 0.331521 Vertex 19355 0.413689 0.418774 0.325971 Vertex 19356 0.4551 0.530108 0.430755 Vertex 19357 0.521014 0.0266046 0.760197 Vertex 19358 0.518609 0.0297614 0.760286 Vertex 19359 0.387653 0.312308 0.247401 Vertex 19360 0.384816 0.311893 0.24797 Vertex 19361 0.462326 0.228644 0.776609 Vertex 19362 0.549892 0.149038 0.439148 Vertex 19363 0.549543 0.147634 0.437081 Vertex 19364 0.438979 0.841071 0.441215 Vertex 19365 0.437593 0.843991 0.434931 Vertex 19366 0.45147 0.137542 0.781021 Vertex 19367 0.362529 0.372778 0.347879 Vertex 19368 0.6218 0.482288 0.291182 Vertex 19369 0.616759 0.476413 0.301677 Vertex 19370 0.381825 0.229924 0.224599 Vertex 19371 0.51152 0.172421 0.762389 Vertex 19372 0.528263 0.60731 0.540757 Vertex 19373 0.481853 0.750869 0.503213 Vertex 19374 0.407974 0.254053 0.733255 Vertex 19375 0.400197 0.188779 0.718887 Vertex 19376 0.5208 0.596998 0.42652 Vertex 19377 0.43594 0.0989855 0.664659 Vertex 19378 0.420737 0.140823 0.656983 Vertex 19379 0.438493 0.419715 0.401947 Vertex 19380 0.520267 0.486511 0.598029 Vertex 19381 0.524982 0.711934 0.484681 Vertex 19382 0.471299 0.679039 0.505926 Vertex 19383 0.489884 0.0946323 0.789366 Vertex 19384 0.428656 0.424045 0.617917 Vertex 19385 0.408299 0.217913 0.47193 Vertex 19386 0.444137 0.540153 0.569227 Vertex 19387 0.36979 0.185338 0.509598 Vertex 19388 0.627639 0.492842 0.260248 Vertex 19389 0.375281 0.204894 0.570086 Vertex 19390 0.545539 0.616857 0.470407 Vertex 19391 0.504679 0.665524 0.416511 Vertex 19392 0.486698 0.387082 0.622033 Vertex 19393 0.475462 0.299367 0.432645 Vertex 19394 0.522867 0.0936254 0.710737 Vertex 19395 0.522814 0.0915347 0.711732 Vertex 19396 0.621527 0.489064 0.309311 Vertex 19397 0.552427 0.469886 0.551033 Vertex 19398 0.53399 0.501022 0.418063 Vertex 19399 0.50411 0.0359328 0.721001 Vertex 19400 0.512663 0.326445 0.579947 Vertex 19401 0.610647 0.499434 0.37635 Vertex 19402 0.521612 0.0847296 0.662373 Vertex 19403 0.347456 0.0965098 0.448203 Vertex 19404 0.59253 0.513832 0.28767 Vertex 19405 0.593495 0.519305 0.286704 Vertex 19406 0.455627 0.621127 0.503995 Vertex 19407 0.43844 0.148072 0.754026 Vertex 19408 0.521861 0.13175 0.704637 Vertex 19409 0.474692 0.254651 0.609187 Vertex 19410 0.357761 0.384114 0.383125 Vertex 19411 0.357827 0.401693 0.349952 Vertex 19412 0.420465 0.159278 0.714705 Vertex 19413 0.354054 0.228171 0.530149 Vertex 19414 0.375512 0.356947 0.464307 Vertex 19415 0.428744 0.145626 0.712644 Vertex 19416 0.357655 0.252637 0.514277 Vertex 19417 0.592198 0.444549 0.190816 Vertex 19418 0.551095 0.00720788 0.727344 Vertex 19419 0.386421 0.431063 0.323715 Vertex 19420 0.542371 0.0143862 0.762306 Vertex 19421 0.517276 0.298366 0.534473 Vertex 19422 0.515044 0.295286 0.542705 Vertex 19423 0.583403 0.40784 0.389433 Vertex 19424 0.503636 0.500027 0.398121 Vertex 19425 0.59555 0.513821 0.261936 Vertex 19426 0.593211 0.512731 0.270737 Vertex 19427 0.432985 0.826022 0.358191 Vertex 19428 0.362896 0.891977 0.299503 Vertex 19429 0.523856 0.163696 0.442085 Vertex 19430 0.519794 0.070995 0.679614 Vertex 19431 0.515488 0.0711845 0.680461 Vertex 19432 0.471086 0.164543 0.666501 Vertex 19433 0.538018 0.566017 0.438016 Vertex 19434 0.59253 0.489064 0.398684 Vertex 19435 0.378106 0.482561 0.478533 Vertex 19436 0.387647 0.276494 0.611219 Vertex 19437 0.465554 0.169927 0.553271 Vertex 19438 0.478524 0.208732 0.731289 Vertex 19439 0.491353 0.632771 0.402966 Vertex 19440 0.391171 0.190858 0.624793 Vertex 19441 0.463647 0.0870691 0.661165 Vertex 19442 0.470268 0.0789905 0.655153 Vertex 19443 0.508789 0.103119 0.711981 Vertex 19444 0.318305 0.991323 0.200879 Vertex 19445 0.592636 0.512583 0.281321 Vertex 19446 0.354824 0.318693 0.237007 Vertex 19447 0.677348 0.471479 0.217314 Vertex 19448 0.497104 0.200695 0.473073 Vertex 19449 0.358596 0.390321 0.366595 Vertex 19450 0.358881 0.389332 0.362378 Vertex 19451 0.321698 0.944694 0.231819 Vertex 19452 0.369547 0.367827 0.308523 Vertex 19453 0.368002 0.354696 0.441238 Vertex 19454 0.49082 0.32237 0.621619 Vertex 19455 0.518852 0.0264921 0.758172 Vertex 19456 0.336837 0.107964 0.459995 Vertex 19457 0.467076 0.675568 0.50149 Vertex 19458 0.437018 0.376178 0.648721 Vertex 19459 0.578114 0.408604 0.405916 Vertex 19460 0.361333 0.375852 0.34583 Vertex 19461 0.363951 0.372097 0.333369 Vertex 19462 0.551971 0.00106016 0.757846 Vertex 19463 0.505579 0.35732 0.4485 Vertex 19464 0.463268 0.655633 0.435908 Vertex 19465 0.404841 0.372553 0.376895 Vertex 19466 0.47102 0.78875 0.483218 Vertex 19467 0.516459 0.121344 0.709097 Vertex 19468 0.479123 0.0790202 0.716749 Vertex 19469 0.505757 0.118939 0.654561 Vertex 19470 0.584309 0.422991 0.19941 Vertex 19471 0.585049 0.425976 0.198522 Vertex 19472 0.505319 0.187269 0.457295 Vertex 19473 0.505591 0.18622 0.455056 Vertex 19474 0.365532 0.145159 0.45778 Vertex 19475 0.389542 0.406608 0.594558 Vertex 19476 0.451636 0.103801 0.727001 Vertex 19477 0.504543 0.0254556 0.662237 Vertex 19478 0.367267 0.280722 0.232435 Vertex 19479 0.487776 0.793489 0.430495 Vertex 19480 0.425084 0.495573 0.591206 Vertex 19481 0.65197 0.426361 0.200068 Vertex 19482 0.40718 0.241905 0.21013 Vertex 19483 0.488901 0.0600321 0.742074 Vertex 19484 0.45985 0.306255 0.63459 Vertex 19485 0.302331 0.97859 0.21122 Vertex 19486 0.517667 0.710554 0.499269 Vertex 19487 0.520321 0.712745 0.495046 Vertex 19488 0.367552 0.370729 0.300196 Vertex 19489 0.431119 0.402042 0.412815 Vertex 19490 0.403964 0.426988 0.345747 Vertex 19491 0.539125 0.413905 0.542664 Vertex 19492 0.458008 0.219654 0.658778 Vertex 19493 0.4145 0.264891 0.683629 Vertex 19494 0.373083 0.330153 0.48477 Vertex 19495 0.465755 0.162121 0.662989 Vertex 19496 0.476961 0.245862 0.460984 Vertex 19497 0.682187 0.462821 0.217208 Vertex 19498 0.507711 0.114165 0.656598 Vertex 19499 0.440619 0.208134 0.797309 Vertex 19500 0.550994 0.529948 0.443199 Vertex 19501 0.697983 0.44693 0.20586 Vertex 19502 0.434478 0.515319 0.453942 Vertex 19503 0.511816 0.526003 0.401456 Vertex 19504 0.521262 0.0560402 0.667869 Vertex 19505 0.366793 0.223314 0.207198 Vertex 19506 0.45677 0.128948 0.806945 Vertex 19507 0.458512 0.128705 0.805991 Vertex 19508 0.514771 0.289168 0.513761 Vertex 19509 0.543851 0.592171 0.456098 Vertex 19510 0.523098 0.314612 0.515692 Vertex 19511 0.429799 0.256309 0.441256 Vertex 19512 0.378876 0.192617 0.561202 Vertex 19513 0.488877 0.475371 0.388361 Vertex 19514 0.454253 0.543191 0.572763 Vertex 19515 0.488184 0.724928 0.402326 Vertex 19516 0.430965 0.258814 0.741689 Vertex 19517 0.351999 0.205493 0.486789 Vertex 19518 0.427815 0.167712 0.538625 Vertex 19519 0.491394 0.328874 0.620411 Vertex 19520 0.373563 0.363332 0.509604 Vertex 19521 0.552801 0.53821 0.452699 Vertex 19522 0.497453 0.423559 0.394491 Vertex 19523 0.416005 0.385873 0.362343 Vertex 19524 0.433181 0.505404 0.446841 Vertex 19525 0.590694 0.509408 0.297543 Vertex 19526 0.509861 0.610928 0.556932 Vertex 19527 0.506882 0.613149 0.561439 Vertex 19528 0.459927 0.714101 0.437448 Vertex 19529 0.376749 0.869512 0.347785 Vertex 19530 0.533623 0.100265 0.783088 Vertex 19531 0.610748 0.452497 0.349946 Vertex 19532 0.46826 0.49995 0.409481 Vertex 19533 0.631187 0.507673 0.27875 Vertex 19534 0.481545 0.239347 0.472303 Vertex 19535 0.383999 0.314564 0.250309 Vertex 19536 0.36411 0.42103 0.425152 Vertex 19537 0.338009 0.909602 0.290039 Vertex 19538 0.409673 0.432645 0.606048 Vertex 19539 0.483802 0.539033 0.393502 Vertex 19540 0.592394 0.430489 0.404257 Vertex 19541 0.379036 0.201418 0.476573 Vertex 19542 0.439447 0.827123 0.453534 Vertex 19543 0.356127 0.290584 0.228988 Vertex 19544 0.486307 0.763076 0.49276 Vertex 19545 0.356524 0.218487 0.541059 Vertex 19546 0.344406 0.282167 0.198362 Vertex 19547 0.430113 0.19052 0.791605 Vertex 19548 0.431439 0.19116 0.794833 Vertex 19549 0.430592 0.190562 0.793364 Vertex 19550 0.430474 0.191592 0.793317 Vertex 19551 0.463238 0.185107 0.6629 Vertex 19552 0.389987 0.168962 0.507501 Vertex 19553 0.39492 0.167262 0.505422 Vertex 19554 0.564812 0.4382 0.337912 Vertex 19555 0.462225 0.065475 0.664019 Vertex 19556 0.571285 0.487619 0.327357 Vertex 19557 0.429544 0.481933 0.424453 Vertex 19558 0.506473 0.509029 0.399187 Vertex 19559 0.585269 0.495123 0.449441 Vertex 19560 0.382648 0.225665 0.595494 Vertex 19561 0.612536 0.457834 0.371534 Vertex 19562 0.325299 0.945132 0.231321 Vertex 19563 0.466679 0.186102 0.671813 Vertex 19564 0.421542 0.266087 0.439148 Vertex 19565 0.428484 0.27172 0.434765 Vertex 19566 0.485709 0.330171 0.432615 Vertex 19567 0.533937 0.0458355 0.726284 Vertex 19568 0.399013 0.491919 0.44513 Vertex 19569 0.436805 0.162133 0.522029 Vertex 19570 0.552297 0.551518 0.469649 Vertex 19571 0.471299 0.225097 0.478065 Vertex 19572 0.418273 0.385536 0.387934 Vertex 19573 0.390229 0.249534 0.642171 Vertex 19574 0.362458 0.43772 0.463987 Vertex 19575 0.359295 0.436488 0.472794 Vertex 19576 0.509725 0.6767 0.526252 Vertex 19577 0.489926 0.555942 0.38152 Vertex 19578 0.490435 0.554403 0.380839 Vertex 19579 0.383359 0.392323 0.596838 Vertex 19580 0.515209 0.519086 0.402451 Vertex 19581 0.359491 0.393229 0.400218 Vertex 19582 0.633325 0.44475 0.194056 Vertex 19583 0.51136 0.60635 0.555107 Vertex 19584 0.481 0.22406 0.488951 Vertex 19585 0.445411 0.260064 0.440149 Vertex 19586 0.448467 0.262972 0.439118 Vertex 19587 0.529803 0.171899 0.446746 Vertex 19588 0.442219 0.245903 0.76432 Vertex 19589 0.494166 0.597993 0.400834 Vertex 19590 0.362505 0.380034 0.31887 Vertex 19591 0.449296 0.615797 0.465918 Vertex 19592 0.618915 0.538856 0.265134 Vertex 19593 0.618347 0.54055 0.269185 Vertex 19594 0.61715 0.540852 0.269007 Vertex 19595 0.354913 0.0899297 0.441582 Vertex 19596 0.356885 0.0875606 0.448298 Vertex 19597 0.39739 0.853894 0.346274 Vertex 19598 0.55559 0.540384 0.467488 Vertex 19599 0.561738 0.00941111 0.754121 Vertex 19600 0.462504 0.509461 0.601061 Vertex 19601 0.547749 0.553011 0.540621 Vertex 19602 0.392948 0.855985 0.383202 Vertex 19603 0.353769 0.939962 0.295955 Vertex 19604 0.453785 0.66781 0.472356 Vertex 19605 0.653427 0.488957 0.225363 Vertex 19606 0.396022 0.258637 0.656734 Vertex 19607 0.632466 0.451165 0.197704 Vertex 19608 0.459282 0.069609 0.660981 Vertex 19609 0.546967 0.00606481 0.760185 Vertex 19610 0.524662 0.565069 0.418809 Vertex 19611 0.431196 0.312207 0.424471 Vertex 19612 0.395909 0.17431 0.681574 Vertex 19613 0.406754 0.844554 0.41416 Vertex 19614 0.398829 0.284708 0.626357 Vertex 19615 0.591091 0.482389 0.404139 Vertex 19616 0.398616 0.464206 0.593326 Vertex 19617 0.554583 0.417548 0.515834 Vertex 19618 0.390241 0.430418 0.348347 Vertex 19619 0.585505 0.481886 0.472249 Vertex 19620 0.356654 0.114775 0.456554 Vertex 19621 0.400736 0.270263 0.227892 Vertex 19622 0.45452 0.840414 0.413289 Vertex 19623 0.364756 0.382189 0.304348 Vertex 19624 0.523027 0.315897 0.505339 Vertex 19625 0.526178 0.14504 0.458989 Vertex 19626 0.500752 0.113757 0.796118 Vertex 19627 0.501972 0.110505 0.796604 Vertex 19628 0.533848 0.399975 0.422837 Vertex 19629 0.594318 0.438709 0.189211 Vertex 19630 0.52051 0.645357 0.427764 Vertex 19631 0.649997 0.478675 0.190846 Vertex 19632 0.644045 0.476952 0.190283 Vertex 19633 0.60964 0.54232 0.281238 Vertex 19634 0.502979 0.703375 0.520057 Vertex 19635 0.594994 0.524227 0.306208 Vertex 19636 0.36966 0.280639 0.234342 Vertex 19637 0.429965 0.261178 0.727155 Vertex 19638 0.425505 0.26296 0.727107 Vertex 19639 0.517318 0.553668 0.405418 Vertex 19640 0.429106 0.164164 0.575724 Vertex 19641 0.430492 0.161985 0.575748 Vertex 19642 0.454514 0.234111 0.702297 Vertex 19643 0.453128 0.236806 0.702297 Vertex 19644 0.371686 0.376859 0.557257 Vertex 19645 0.467224 0.16064 0.534514 Vertex 19646 0.506349 0.557998 0.576648 Vertex 19647 0.621657 0.480973 0.286746 Vertex 19648 0.606051 0.446154 0.345842 Vertex 19649 0.548572 0.56854 0.503355 Vertex 19650 0.548382 0.568629 0.507483 Vertex 19651 0.546505 0.571993 0.505422 Vertex 19652 0.544248 0.57785 0.511665 Vertex 19653 0.43953 0.496817 0.429612 Vertex 19654 0.446127 0.523611 0.434344 Vertex 19655 0.459329 0.0813063 0.660116 Vertex 19656 0.533528 0.660981 0.503397 Vertex 19657 0.520877 0.168144 0.462838 Vertex 19658 0.476564 0.533365 0.407971 Vertex 19659 0.328397 0.262427 0.233116 Vertex 19660 0.620467 0.491391 0.250694 Vertex 19661 0.466928 0.800845 0.474494 Vertex 19662 0.480532 0.538601 0.588784 Vertex 19663 0.475859 0.137708 0.647862 Vertex 19664 0.509263 0.39179 0.573687 Vertex 19665 0.486627 0.204219 0.756188 Vertex 19666 0.483411 0.204338 0.737525 Vertex 19667 0.472554 0.713177 0.422416 Vertex 19668 0.36886 0.342975 0.412353 Vertex 19669 0.534428 0.0650664 0.801585 Vertex 19670 0.434744 0.787045 0.414065 Vertex 19671 0.481036 0.0827751 0.760138 Vertex 19672 0.50215 0.581256 0.398204 Vertex 19673 0.36173 0.197918 0.534929 Vertex 19674 0.643417 0.466048 0.187772 Vertex 19675 0.354421 0.305905 0.531666 Vertex 19676 0.35374 0.301931 0.537304 Vertex 19677 0.494604 0.0648768 0.69095 Vertex 19678 0.438132 0.256256 0.720954 Vertex 19679 0.350873 0.900138 0.329235 Vertex 19680 0.537881 0.480257 0.58003 Vertex 19681 0.523312 0.0349792 0.658689 Vertex 19682 0.521233 0.0350622 0.660708 Vertex 19683 0.449788 0.39962 0.398163 Vertex 19684 0.480609 0.070071 0.749596 Vertex 19685 0.606324 0.482697 0.195874 Vertex 19686 0.545 0.615986 0.502254 Vertex 19687 0.479063 0.184266 0.703689 Vertex 19688 0.461118 0.411726 0.622946 Vertex 19689 0.519817 0.110452 0.709251 Vertex 19690 0.370341 0.220305 0.233631 Vertex 19691 0.403135 0.389356 0.261379 Vertex 19692 0.475764 0.5177 0.409943 Vertex 19693 0.421898 0.398619 0.319415 Vertex 19694 0.443563 0.510776 0.43066 Vertex 19695 0.633165 0.465178 0.215662 Vertex 19696 0.541607 0.147611 0.443933 Vertex 19697 0.369974 0.325847 0.591757 Vertex 19698 0.408217 0.425218 0.34281 Vertex 19699 0.509151 0.0344107 0.720083 Vertex 19700 0.511792 0.278045 0.501057 Vertex 19701 0.366634 0.108154 0.479599 Vertex 19702 0.361268 0.111459 0.480014 Vertex 19703 0.446909 0.610028 0.484497 Vertex 19704 0.408536 0.362686 0.345801 Vertex 19705 0.567447 0.499825 0.354122 Vertex 19706 0.439008 0.847183 0.427462 Vertex 19707 0.359201 0.434635 0.506565 Vertex 19708 0.565872 0.542741 0.483171 Vertex 19709 0.452915 0.151733 0.652174 Vertex 19710 0.456907 0.0967289 0.718751 Vertex 19711 0.532302 0.686365 0.486789 Vertex 19712 0.562573 0.523605 0.447422 Vertex 19713 0.481871 0.162216 0.664706 Vertex 19714 0.472827 0.404192 0.382468 Vertex 19715 0.456368 0.68078 0.476383 Vertex 19716 0.456776 0.23818 0.743762 Vertex 19717 0.476013 0.111482 0.652115 Vertex 19718 0.486988 0.579408 0.401527 Vertex 19719 0.33615 0.925872 0.30584 Vertex 19720 0.362251 0.349704 0.388823 Vertex 19721 0.387096 0.198883 0.6076 Vertex 19722 0.348741 0.168784 0.470313 Vertex 19723 0.504489 0.17855 0.764473 Vertex 19724 0.441585 0.442062 0.402397 Vertex 19725 0.559315 0.439775 0.344604 Vertex 19726 0.427317 0.40498 0.385394 Vertex 19727 0.502707 0.0466232 0.723572 Vertex 19728 0.54853 0.584241 0.502988 Vertex 19729 0.456794 0.430957 0.622134 Vertex 19730 0.384656 0.348649 0.38293 Vertex 19731 0.512159 0.131098 0.789953 Vertex 19732 0.418415 0.41262 0.339126 Vertex 19733 0.580033 0.512079 0.350154 Vertex 19734 0.456042 0.490971 0.410689 Vertex 19735 0.381399 0.868884 0.366613 Vertex 19736 0.386788 0.449974 0.586746 Vertex 19737 0.479922 0.769543 0.400425 Vertex 19738 0.608633 0.480067 0.217699 Vertex 19739 0.39511 0.321683 0.447658 Vertex 19740 0.36488 0.0854166 0.480055 Vertex 19741 0.47654 0.235296 0.46917 Vertex 19742 0.328213 0.927696 0.255231 Vertex 19743 0.455799 0.07796 0.658256 Vertex 19744 0.432955 0.141611 0.723027 Vertex 19745 0.426672 0.142511 0.705075 Vertex 19746 0.429017 0.141285 0.708854 Vertex 19747 0.341261 0.942728 0.301843 Vertex 19748 0.345028 0.942378 0.301831 Vertex 19749 0.339277 0.938541 0.306219 Vertex 19750 0.358721 0.327322 0.52579 Vertex 19751 0.496233 0.62673 0.404121 Vertex 19752 0.49727 0.629834 0.406111 Vertex 19753 0.498466 0.627867 0.407876 Vertex 19754 0.499929 0.0666418 0.76426 Vertex 19755 0.499129 0.0714569 0.766114 Vertex 19756 0.642849 0.457591 0.21764 Vertex 19757 0.638501 0.454239 0.215407 Vertex 19758 0.491448 0.785783 0.470135 Vertex 19759 0.553393 0.0103587 0.770195 Vertex 19760 0.551729 0.0134918 0.770515 Vertex 19761 0.43186 0.458758 0.405975 Vertex 19762 0.496891 0.206014 0.524102 Vertex 19763 0.40339 0.38412 0.264861 Vertex 19764 0.403093 0.382432 0.260402 Vertex 19765 0.551657 0.0288019 0.723121 Vertex 19766 0.55238 0.0299213 0.72536 Vertex 19767 0.535962 0.570945 0.437116 Vertex 19768 0.486946 0.339203 0.431744 Vertex 19769 0.52539 0.338575 0.530333 Vertex 19770 0.367451 0.361419 0.352055 Vertex 19771 0.512503 0.0867433 0.801585 Vertex 19772 0.485069 0.542978 0.389308 Vertex 19773 0.398355 0.882127 0.394888 Vertex 19774 0.504584 0.0903087 0.638161 Vertex 19775 0.483837 0.247289 0.59871 Vertex 19776 0.494563 0.240099 0.492991 Vertex 19777 0.463801 0.210349 0.644279 Vertex 19778 0.383632 0.309175 0.455773 Vertex 19779 0.504122 0.521271 0.395267 Vertex 19780 0.518171 0.35947 0.459764 Vertex 19781 0.519136 0.381319 0.48657 Vertex 19782 0.58409 0.422848 0.202679 Vertex 19783 0.452305 0.55952 0.441321 Vertex 19784 0.431652 0.256647 0.747647 Vertex 19785 0.505893 0.17518 0.758142 Vertex 19786 0.41052 0.205155 0.760351 Vertex 19787 0.548945 0.452148 0.370907 Vertex 19788 0.38969 0.339611 0.270831 Vertex 19789 0.575952 0.508834 0.372719 Vertex 19790 0.525154 0.340541 0.504273 Vertex 19791 0.374469 0.278205 0.594422 Vertex 19792 0.469848 0.372014 0.410026 Vertex 19793 0.324085 0.254094 0.205587 Vertex 19794 0.436941 0.20416 0.470188 Vertex 19795 0.491282 0.70472 0.517895 Vertex 19796 0.522346 0.473695 0.595968 Vertex 19797 0.4844 0.064634 0.745634 Vertex 19798 0.601343 0.526904 0.305556 Vertex 19799 0.437551 0.138744 0.615305 Vertex 19800 0.448396 0.510314 0.587362 Vertex 19801 0.521724 0.353749 0.555143 Vertex 19802 0.543378 0.612913 0.511623 Vertex 19803 0.374386 0.373566 0.505416 Vertex 19804 0.499905 0.375307 0.44619 Vertex 19805 0.545729 0.52136 0.563452 Vertex 19806 0.696632 0.45614 0.214128 Vertex 19807 0.420163 0.847391 0.430945 Vertex 19808 0.462361 0.239009 0.615305 Vertex 19809 0.366243 0.311242 0.482667 Vertex 19810 0.496968 0.20676 0.515526 Vertex 19811 0.498531 0.203402 0.512589 Vertex 19812 0.437865 0.510676 0.44064 Vertex 19813 0.382417 0.235337 0.601239 Vertex 19814 0.442076 0.325983 0.418596 Vertex 19815 0.481942 0.0558152 0.687775 Vertex 19816 0.493159 0.527271 0.384659 Vertex 19817 0.509903 0.668266 0.422742 Vertex 19818 0.351928 0.392062 0.479819 Vertex 19819 0.453276 0.654626 0.478587 Vertex 19820 0.683241 0.460753 0.18959 Vertex 19821 0.360284 0.37741 0.360317 Vertex 19822 0.526676 0.151514 0.790569 Vertex 19823 0.408418 0.256214 0.72953 Vertex 19824 0.628788 0.490248 0.24919 Vertex 19825 0.536922 0.12408 0.447386 Vertex 19826 0.63169 0.519933 0.272288 Vertex 19827 0.455858 0.731443 0.459954 Vertex 19828 0.45542 0.733131 0.459924 Vertex 19829 0.62158 0.527147 0.22743 Vertex 19830 0.461781 0.165142 0.656782 Vertex 19831 0.494196 0.786358 0.44128 Vertex 19832 0.433749 0.408214 0.410322 Vertex 19833 0.465139 0.148357 0.798588 Vertex 19834 0.404876 0.372476 0.250398 Vertex 19835 0.37284 0.356675 0.352043 Vertex 19836 0.407405 0.245252 0.216983 Vertex 19837 0.425327 0.225813 0.465367 Vertex 19838 0.650986 0.425851 0.229699 Vertex 19839 0.397011 0.32516 0.222645 Vertex 19840 0.37993 0.345161 0.281427 Vertex 19841 0.378585 0.177721 0.484302 Vertex 19842 0.458944 0.167345 0.553188 Vertex 19843 0.529205 0.137601 0.45367 Vertex 19844 0.511833 0.535734 0.399211 Vertex 19845 0.387499 0.863542 0.339724 Vertex 19846 0.517383 0.0754014 0.645997 Vertex 19847 0.45818 0.827793 0.395924 Vertex 19848 0.45757 0.561818 0.438164 Vertex 19849 0.36722 0.352013 0.231754 Vertex 19850 0.354705 0.367335 0.447931 Vertex 19851 0.368997 0.335862 0.260443 Vertex 19852 0.505088 0.605669 0.563891 Vertex 19853 0.430835 0.145082 0.617372 Vertex 19854 0.541192 0.641584 0.46394 Vertex 19855 0.501812 0.0271199 0.666003 Vertex 19856 0.580412 0.448831 0.476419 Vertex 19857 0.511905 0.488134 0.404613 Vertex 19858 0.418362 0.157851 0.609021 Vertex 19859 0.531503 0.40161 0.446095 Vertex 19860 0.385953 0.355395 0.31887 Vertex 19861 0.55389 0.469057 0.378813 Vertex 19862 0.553197 0.466889 0.378144 Vertex 19863 0.453703 0.623437 0.453575 Vertex 19864 0.361907 0.249291 0.218262 Vertex 19865 0.363802 0.247863 0.22727 Vertex 19866 0.362458 0.250665 0.222698 Vertex 19867 0.425623 0.548853 0.540668 Vertex 19868 0.504152 0.712242 0.417411 Vertex 19869 0.531734 0.119359 0.797309 Vertex 19870 0.550734 0.0260005 0.720498 Vertex 19871 0.550325 0.0240697 0.719136 Vertex 19872 0.372207 0.339807 0.40694 Vertex 19873 0.436331 0.248989 0.447208 Vertex 19874 0.589592 0.481222 0.429654 Vertex 19875 0.533925 0.0887274 0.783041 Vertex 19876 0.360604 0.261343 0.208531 Vertex 19877 0.475178 0.211315 0.72093 Vertex 19878 0.329546 0.245317 0.22961 Vertex 19879 0.55219 0.423968 0.374567 Vertex 19880 0.35124 0.0926541 0.456471 Vertex 19881 0.461076 0.424566 0.619866 Vertex 19882 0.439873 0.129084 0.667235 Vertex 19883 0.441674 0.127669 0.667046 Vertex 19884 0.565368 0.412223 0.480559 Vertex 19885 0.562875 0.414272 0.490918 Vertex 19886 0.521073 0.370356 0.54065 Vertex 19887 0.497915 0.358736 0.613209 Vertex 19888 0.376856 0.353571 0.446663 Vertex 19889 0.596445 0.516527 0.274817 Vertex 19890 0.40047 0.513252 0.50345 Vertex 19891 0.497062 0.0482815 0.721872 Vertex 19892 0.365875 0.896294 0.351824 Vertex 19893 0.372278 0.335803 0.492991 Vertex 19894 0.675329 0.477728 0.197296 Vertex 19895 0.459987 0.129872 0.647975 Vertex 19896 0.541826 0.0322904 0.780334 Vertex 19897 0.494658 0.240164 0.507489 Vertex 19898 0.542874 0.04442 0.788863 Vertex 19899 0.572251 0.403997 0.389338 Vertex 19900 0.510667 0.715979 0.501199 Vertex 19901 0.351359 0.38874 0.466647 Vertex 19902 0.393765 0.254064 0.669119 Vertex 19903 0.396093 0.256741 0.669065 Vertex 19904 0.382329 0.224386 0.62978 Vertex 19905 0.503767 0.318888 0.596566 Vertex 19906 0.456042 0.239826 0.754138 Vertex 19907 0.507753 0.133544 0.671144 Vertex 19908 0.378277 0.443009 0.576133 Vertex 19909 0.424889 0.390321 0.419313 Vertex 19910 0.453282 0.345629 0.636331 Vertex 19911 0.446678 0.346049 0.639239 Vertex 19912 0.548382 0.569067 0.496443 Vertex 19913 0.646308 0.447422 0.223326 Vertex 19914 0.492099 0.158828 0.793086 Vertex 19915 0.473697 0.656219 0.425845 Vertex 19916 0.490003 0.613149 0.404192 Vertex 19917 0.489079 0.610437 0.40559 Vertex 19918 0.345347 0.13002 0.460226 Vertex 19919 0.510092 0.567669 0.40023 Vertex 19920 0.502707 0.771628 0.445497 Vertex 19921 0.485116 0.222947 0.494453 Vertex 19922 0.472548 0.217913 0.733391 Vertex 19923 0.389015 0.346855 0.620861 Vertex 19924 0.393629 0.340162 0.624183 Vertex 19925 0.448183 0.104292 0.663172 Vertex 19926 0.377993 0.225446 0.226643 Vertex 19927 0.501741 0.150874 0.701326 Vertex 19928 0.365692 0.414367 0.54094 Vertex 19929 0.479804 0.737223 0.398109 Vertex 19930 0.580057 0.50111 0.389907 Vertex 19931 0.609279 0.482288 0.186114 Vertex 19932 0.537094 0.47007 0.399904 Vertex 19933 0.556461 0.438555 0.522035 Vertex 19934 0.499195 0.165906 0.464029 Vertex 19935 0.391408 0.303181 0.195957 Vertex 19936 0.36112 0.341903 0.546934 Vertex 19937 0.386682 0.341216 0.21767 Vertex 19938 0.580211 0.439799 0.461938 Vertex 19939 0.383614 0.23324 0.689913 Vertex 19940 0.50488 0.752012 0.486884 Vertex 19941 0.440252 0.136932 0.741553 Vertex 19942 0.474278 0.0535645 0.652707 Vertex 19943 0.405083 0.337408 0.235781 Vertex 19944 0.6383 0.448825 0.213311 Vertex 19945 0.320638 0.996138 0.210373 Vertex 19946 0.41071 0.477491 0.416837 Vertex 19947 0.384052 0.352185 0.352019 Vertex 19948 0.376649 0.298994 0.461914 Vertex 19949 0.337986 0.113306 0.464129 Vertex 19950 0.506166 0.386483 0.58619 Vertex 19951 0.455509 0.332321 0.636064 Vertex 19952 0.547062 0.00582198 0.728813 Vertex 19953 0.544627 0.580054 0.454167 Vertex 19954 0.511289 0.127248 0.790924 Vertex 19955 0.371946 0.432674 0.563766 Vertex 19956 0.453424 0.186901 0.625232 Vertex 19957 0.445814 0.249628 0.749957 Vertex 19958 0.457511 0.625119 0.449169 Vertex 19959 0.449657 0.155197 0.789289 Vertex 19960 0.596569 0.465663 0.399093 Vertex 19961 0.513918 0.0662627 0.77485 Vertex 19962 0.521789 0.0782561 0.669741 Vertex 19963 0.534671 0.52271 0.42337 Vertex 19964 0.489375 0.481803 0.605266 Vertex 19965 0.464802 0.786843 0.383202 Vertex 19966 0.361913 0.239418 0.216533 Vertex 19967 0.514907 0.107425 0.700094 Vertex 19968 0.375571 0.380454 0.518908 Vertex 19969 0.375387 0.38078 0.516888 Vertex 19970 0.420435 0.142316 0.695445 Vertex 19971 0.403123 0.262877 0.660768 Vertex 19972 0.539297 0.561178 0.553064 Vertex 19973 0.589551 0.518742 0.304016 Vertex 19974 0.59937 0.520075 0.319676 Vertex 19975 0.493598 0.190277 0.740599 Vertex 19976 0.594543 0.459557 0.436086 Vertex 19977 0.525325 0.0417785 0.642182 Vertex 19978 0.524792 0.0474346 0.64223 Vertex 19979 0.320176 0.930977 0.277388 Vertex 19980 0.609143 0.509189 0.367412 Vertex 19981 0.485436 0.0556789 0.69278 Vertex 19982 0.450184 0.172213 0.565519 Vertex 19983 0.521422 0.311573 0.513353 Vertex 19984 0.417118 0.217693 0.471053 Vertex 19985 0.541796 0.0466765 0.710352 Vertex 19986 0.54307 0.0478729 0.712467 Vertex 19987 0.364732 0.350989 0.237795 Vertex 19988 0.490293 0.415125 0.385731 Vertex 19989 0.457185 0.147362 0.793826 Vertex 19990 0.490275 0.632919 0.404968 Vertex 19991 0.446246 0.835806 0.440776 Vertex 19992 0.499656 0.0681639 0.692638 Vertex 19993 0.576687 0.413141 0.361798 Vertex 19994 0.351714 0.910882 0.280545 Vertex 19995 0.318399 0.964689 0.206819 Vertex 19996 0.34835 0.917485 0.324408 Vertex 19997 0.382477 0.236575 0.621518 Vertex 19998 0.484192 0.803658 0.439035 Vertex 19999 0.525775 0.32346 0.497527 Vertex 20000 0.485199 0.583589 0.407947 Vertex 20001 0.466342 0.509823 0.411862 Vertex 20002 0.483239 0.184947 0.5531 Vertex 20003 0.519426 0.434658 0.418377 Vertex 20004 0.445666 0.122611 0.656486 Vertex 20005 0.45054 0.119128 0.646079 Vertex 20006 0.450641 0.117227 0.650717 Vertex 20007 0.429135 0.148777 0.611201 Vertex 20008 0.43533 0.426544 0.396534 Vertex 20009 0.501487 0.166841 0.712206 Vertex 20010 0.444321 0.168772 0.572828 Vertex 20011 0.554761 0.465723 0.376664 Vertex 20012 0.380605 0.468986 0.561427 Vertex 20013 0.536087 0.399081 0.482182 Vertex 20014 0.537875 0.398743 0.490918 Vertex 20015 0.560174 0.473493 0.335602 Vertex 20016 0.44704 0.838904 0.382456 Vertex 20017 0.496464 0.394947 0.432656 Vertex 20018 0.660338 0.416014 0.211244 Vertex 20019 0.355155 0.396007 0.43955 Vertex 20020 0.35663 0.402913 0.43833 Vertex 20021 0.427134 0.511404 0.455056 Vertex 20022 0.420956 0.413568 0.615442 Vertex 20023 0.387464 0.423535 0.306818 Vertex 20024 0.356518 0.366737 0.397659 Vertex 20025 0.488575 0.201536 0.754121 Vertex 20026 0.683875 0.468417 0.196674 Vertex 20027 0.452636 0.115812 0.756146 Vertex 20028 0.451339 0.237511 0.457573 Vertex 20029 0.403461 0.33986 0.208851 Vertex 20030 0.517229 0.296169 0.488033 Vertex 20031 0.419262 0.229894 0.464503 Vertex 20032 0.596148 0.474062 0.399732 Vertex 20033 0.404858 0.246051 0.211137 Vertex 20034 0.49387 0.236261 0.565632 Vertex 20035 0.470268 0.240638 0.607008 Vertex 20036 0.451523 0.460232 0.625095 Vertex 20037 0.664472 0.464911 0.217148 Vertex 20038 0.385699 0.912102 0.335394 Vertex 20039 0.651389 0.473173 0.214264 Vertex 20040 0.552433 0.438609 0.360406 Vertex 20041 0.504312 0.51507 0.396167 Vertex 20042 0.523164 0.0730087 0.679258 Vertex 20043 0.515985 0.1123 0.687799 Vertex 20044 0.382554 0.422801 0.374555 Vertex 20045 0.318583 0.959329 0.214732 Vertex 20046 0.487314 0.391192 0.619522 Vertex 20047 0.360912 0.110967 0.461559 Vertex 20048 0.443747 0.171479 0.598722 Vertex 20049 0.614686 0.487411 0.226779 Vertex 20050 0.472892 0.636988 0.426455 Vertex 20051 0.421827 0.499476 0.441469 Vertex 20052 0.436947 0.164366 0.56918 Vertex 20053 0.317576 0.935603 0.26081 Vertex 20054 0.498845 0.466954 0.607789 Vertex 20055 0.644886 0.455624 0.189549 Vertex 20056 0.544313 0.639944 0.486926 Vertex 20057 0.41912 0.377096 0.427989 Vertex 20058 0.365514 0.140089 0.470141 Vertex 20059 0.49788 0.249859 0.482608 Vertex 20060 0.453495 0.644634 0.482478 Vertex 20061 0.514131 0.42116 0.431188 Vertex 20062 0.452435 0.649479 0.455873 Vertex 20063 0.451446 0.653163 0.462169 Vertex 20064 0.510501 0.64509 0.418673 Vertex 20065 0.42589 0.172213 0.503397 Vertex 20066 0.349061 0.0998265 0.461885 Vertex 20067 0.43735 0.815953 0.366731 Vertex 20068 0.389252 0.86494 0.329264 Vertex 20069 0.395477 0.267817 0.629887 Vertex 20070 0.591114 0.514472 0.298129 Vertex 20071 0.395891 0.285443 0.194062 Vertex 20072 0.398687 0.281143 0.194441 Vertex 20073 0.646337 0.496272 0.192664 Vertex 20074 0.466744 0.592462 0.434113 Vertex 20075 0.655523 0.426994 0.199226 Vertex 20076 0.530591 0.656136 0.513815 Vertex 20077 0.437895 0.797013 0.447386 Vertex 20078 0.368369 0.308239 0.195306 Vertex 20079 0.455503 0.79125 0.469045 Vertex 20080 0.450048 0.646358 0.46455 Vertex 20081 0.563858 0.434569 0.501336 Vertex 20082 0.30444 0.989795 0.222402 Vertex 20083 0.302082 0.987177 0.220714 Vertex 20084 0.590107 0.433272 0.20801 Vertex 20085 0.644341 0.433711 0.219322 Vertex 20086 0.447365 0.831494 0.447658 Vertex 20087 0.489244 0.652511 0.405442 Vertex 20088 0.42201 0.227436 0.200482 Vertex 20089 0.504584 0.507922 0.397334 Vertex 20090 0.526907 0.049857 0.651676 Vertex 20091 0.483559 0.145502 0.79693 Vertex 20092 0.365052 0.168879 0.454961 Vertex 20093 0.458233 0.137572 0.801478 Vertex 20094 0.380955 0.234857 0.235485 Vertex 20095 0.364478 0.371499 0.254603 Vertex 20096 0.409638 0.860883 0.340766 Vertex 20097 0.410971 0.265489 0.442683 Vertex 20098 0.514593 0.0713207 0.778954 Vertex 20099 0.463487 0.665032 0.43701 Vertex 20100 0.459347 0.667016 0.443323 Vertex 20101 0.460253 0.661526 0.442707 Vertex 20102 0.409721 0.181855 0.559336 Vertex 20103 0.388796 0.257423 0.220601 Vertex 20104 0.650909 0.422617 0.225037 Vertex 20105 0.512704 0.0259768 0.74789 Vertex 20106 0.631039 0.453149 0.204557 Vertex 20107 0.447851 0.477041 0.613292 Vertex 20108 0.524087 0.0662627 0.674692 Vertex 20109 0.424178 0.316252 0.644883 Vertex 20110 0.498182 0.673827 0.539519 Vertex 20111 0.526427 0.0449885 0.660815 Vertex 20112 0.524496 0.321577 0.516486 Vertex 20113 0.457902 0.179925 0.6318 Vertex 20114 0.395222 0.21764 0.725094 Vertex 20115 0.478584 0.188589 0.479404 Vertex 20116 0.52003 0.0189051 0.640139 Vertex 20117 0.482611 0.628513 0.418714 Vertex 20118 0.412884 0.272016 0.646701 Vertex 20119 0.568768 0.501495 0.387271 Vertex 20120 0.435372 0.166948 0.538678 Vertex 20121 0.433536 0.166758 0.530357 Vertex 20122 0.489428 0.645813 0.403985 Vertex 20123 0.438315 0.154232 0.584205 Vertex 20124 0.450244 0.248462 0.743762 Vertex 20125 0.499959 0.193333 0.52354 Vertex 20126 0.479626 0.266662 0.609258 Vertex 20127 0.409093 0.200097 0.7562 Vertex 20128 0.5934 0.451721 0.187417 Vertex 20129 0.596385 0.449512 0.185077 Vertex 20130 0.527339 0.0659607 0.789284 Vertex 20131 0.523856 0.0666951 0.782982 Vertex 20132 0.482848 0.541237 0.394047 Vertex 20133 0.458932 0.45049 0.620671 Vertex 20134 0.418238 0.177846 0.489224 Vertex 20135 0.349795 0.186386 0.470319 Vertex 20136 0.479123 0.499014 0.398791 Vertex 20137 0.422241 0.833911 0.432727 Vertex 20138 0.535447 0.0512725 0.796438 Vertex 20139 0.346354 0.0897935 0.444288 Vertex 20140 0.409887 0.840959 0.358167 Vertex 20141 0.392421 0.31781 0.248112 Vertex 20142 0.493023 0.548284 0.379394 Vertex 20143 0.658034 0.482211 0.219322 Vertex 20144 0.521588 0.38319 0.455826 Vertex 20145 0.439068 0.158804 0.778818 Vertex 20146 0.503252 0.179694 0.760334 Vertex 20147 0.535459 0.134433 0.438082 Vertex 20148 0.487189 0.128119 0.797427 Vertex 20149 0.39906 0.427208 0.371167 Vertex 20150 0.370134 0.0921862 0.482709 Vertex 20151 0.478524 0.101467 0.651434 Vertex 20152 0.348717 0.286669 0.231789 Vertex 20153 0.493923 0.637823 0.403849 Vertex 20154 0.532521 0.0662627 0.797889 Vertex 20155 0.454111 0.435422 0.389557 Vertex 20156 0.457925 0.0956095 0.724762 Vertex 20157 0.400405 0.383812 0.241876 Vertex 20158 0.523424 0.588547 0.426917 Vertex 20159 0.304173 0.983286 0.231292 Vertex 20160 0.464203 0.0838057 0.727842 Vertex 20161 0.375494 0.388005 0.548972 Vertex 20162 0.375594 0.205356 0.481471 Vertex 20163 0.434815 0.845093 0.368366 Vertex 20164 0.475729 0.341672 0.42058 Vertex 20165 0.477583 0.343183 0.422458 Vertex 20166 0.531971 0.102089 0.722938 Vertex 20167 0.510246 0.445491 0.603738 Vertex 20168 0.513616 0.448274 0.602086 Vertex 20169 0.519296 0.347826 0.48525 Vertex 20170 0.336754 0.922798 0.308085 Vertex 20171 0.358259 0.438431 0.481797 Vertex 20172 0.447673 0.229515 0.463069 Vertex 20173 0.415501 0.173398 0.569689 Vertex 20174 0.435253 0.475868 0.419342 Vertex 20175 0.521209 0.521976 0.410464 Vertex 20176 0.439133 0.146995 0.59884 Vertex 20177 0.442035 0.55506 0.463898 Vertex 20178 0.411705 0.246016 0.749868 Vertex 20179 0.497501 0.0439817 0.681302 Vertex 20180 0.552433 0.00906167 0.725597 Vertex 20181 0.551498 0.00483882 0.728031 Vertex 20182 0.604446 0.471071 0.186173 Vertex 20183 0.50305 0.0477071 0.754079 Vertex 20184 0.64998 0.430826 0.229876 Vertex 20185 0.361623 0.400224 0.31059 Vertex 20186 0.506355 0.260538 0.526015 Vertex 20187 0.594816 0.516965 0.358262 Vertex 20188 0.437794 0.184195 0.795846 Vertex 20189 0.506396 0.372956 0.452444 Vertex 20190 0.665408 0.479031 0.192261 Vertex 20191 0.599868 0.526252 0.242065 Vertex 20192 0.372544 0.0930569 0.467748 Vertex 20193 0.378562 0.427255 0.346156 Vertex 20194 0.567471 0.506251 0.515834 Vertex 20195 0.565647 0.509681 0.519974 Vertex 20196 0.449035 0.845839 0.410731 Vertex 20197 0.368079 0.183081 0.462021 Vertex 20198 0.487799 0.0683001 0.732829 Vertex 20199 0.400085 0.240164 0.729293 Vertex 20200 0.668038 0.489816 0.209017 Vertex 20201 0.426488 0.235224 0.204042 Vertex 20202 0.641107 0.437543 0.217533 Vertex 20203 0.378426 0.309968 0.248432 Vertex 20204 0.515369 0.391263 0.565496 Vertex 20205 0.512473 0.394236 0.573823 Vertex 20206 0.382577 0.222686 0.681568 Vertex 20207 0.529963 0.693567 0.486807 Vertex 20208 0.460514 0.169003 0.489087 Vertex 20209 0.45218 0.167072 0.490325 Vertex 20210 0.451262 0.16401 0.494365 Vertex 20211 0.360154 0.334032 0.229308 Vertex 20212 0.446767 0.165793 0.616537 Vertex 20213 0.380925 0.356728 0.325089 Vertex 20214 0.461171 0.38951 0.395634 Vertex 20215 0.425825 0.539632 0.503509 Vertex 20216 0.382577 0.352866 0.445971 Vertex 20217 0.507771 0.306989 0.459498 Vertex 20218 0.501783 0.331077 0.604893 Vertex 20219 0.382672 0.348975 0.291833 Vertex 20220 0.472217 0.0918605 0.762489 Vertex 20221 0.505455 0.0819578 0.727599 Vertex 20222 0.508422 0.0821473 0.726047 Vertex 20223 0.641605 0.434113 0.211303 Vertex 20224 0.420725 0.404767 0.341749 Vertex 20225 0.526539 0.587362 0.551791 Vertex 20226 0.553878 0.147421 0.429446 Vertex 20227 0.475995 0.539631 0.407846 Vertex 20228 0.458932 0.135398 0.804742 Vertex 20229 0.365674 0.362508 0.360299 Vertex 20230 0.363566 0.415398 0.345812 Vertex 20231 0.361096 0.411542 0.343745 Vertex 20232 0.516743 0.370812 0.468169 Vertex 20233 0.517093 0.374354 0.472249 Vertex 20234 0.517614 0.3777 0.468169 Vertex 20235 0.448639 0.793773 0.462021 Vertex 20236 0.516903 0.168802 0.766629 Vertex 20237 0.462166 0.76278 0.395788 Vertex 20238 0.321112 0.263855 0.218327 Vertex 20239 0.468213 0.225174 0.74789 Vertex 20240 0.466815 0.225541 0.739622 Vertex 20241 0.665775 0.47193 0.192996 Vertex 20242 0.517247 0.409499 0.43791 Vertex 20243 0.456255 0.590851 0.4451 Vertex 20244 0.541145 0.0640062 0.789183 Vertex 20245 0.592334 0.460931 0.304905 Vertex 20246 0.593128 0.456608 0.308328 Vertex 20247 0.606022 0.500086 0.252074 Vertex 20248 0.49172 0.166433 0.690328 Vertex 20249 0.313507 0.990127 0.227104 Vertex 20250 0.474189 0.559182 0.422386 Vertex 20251 0.598405 0.521603 0.247917 Vertex 20252 0.497607 0.0533691 0.636609 Vertex 20253 0.491625 0.352221 0.435037 Vertex 20254 0.428371 0.253247 0.443513 Vertex 20255 0.543324 0.132608 0.453261 Vertex 20256 0.554228 0.0483052 0.760375 Vertex 20257 0.553304 0.445491 0.532394 Vertex 20258 0.359408 0.42337 0.523907 Vertex 20259 0.46113 0.502899 0.414095 Vertex 20260 0.59699 0.45473 0.206375 Vertex 20261 0.51268 0.410322 0.440901 Vertex 20262 0.49663 0.327132 0.441025 Vertex 20263 0.323262 0.24948 0.226269 Vertex 20264 0.463499 0.115142 0.782846 Vertex 20265 0.401068 0.250529 0.203935 Vertex 20266 0.446163 0.135031 0.75001 Vertex 20267 0.458547 0.327731 0.417737 Vertex 20268 0.512094 0.118761 0.793358 Vertex 20269 0.515044 0.116191 0.792162 Vertex 20270 0.357554 0.237665 0.516249 Vertex 20271 0.677532 0.469507 0.195774 Vertex 20272 0.342297 0.282339 0.200944 Vertex 20273 0.506124 0.592248 0.406845 Vertex 20274 0.551616 0.0416482 0.780939 Vertex 20275 0.450966 0.8254 0.454132 Vertex 20276 0.400754 0.168162 0.628252 Vertex 20277 0.545498 0.572129 0.530386 Vertex 20278 0.396259 0.362911 0.231244 Vertex 20279 0.537106 0.120639 0.791422 Vertex 20280 0.457689 0.190289 0.800554 Vertex 20281 0.534861 0.115729 0.429748 Vertex 20282 0.455983 0.350545 0.63578 Vertex 20283 0.554447 0.533567 0.453865 Vertex 20284 0.423456 0.269694 0.650516 Vertex 20285 0.529501 0.523409 0.582281 Vertex 20286 0.567803 0.405554 0.449453 Vertex 20287 0.441893 0.3414 0.644297 Vertex 20288 0.438084 0.155837 0.576618 Vertex 20289 0.370845 0.232577 0.583708 Vertex 20290 0.447128 0.0868262 0.66059 Vertex 20291 0.474592 0.164324 0.524096 Vertex 20292 0.475024 0.0744242 0.749957 Vertex 20293 0.485774 0.0729553 0.700692 Vertex 20294 0.428573 0.548741 0.511937 Vertex 20295 0.452648 0.234004 0.460961 Vertex 20296 0.396928 0.360891 0.385394 Vertex 20297 0.459246 0.606492 0.524238 Vertex 20298 0.46158 0.603922 0.530517 Vertex 20299 0.524129 0.613736 0.540715 Vertex 20300 0.522482 0.617319 0.53869 Vertex 20301 0.567968 0.469874 0.519921 Vertex 20302 0.404841 0.235023 0.741659 Vertex 20303 0.482345 0.0857128 0.719532 Vertex 20304 0.419505 0.830529 0.430684 Vertex 20305 0.645709 0.479842 0.225203 Vertex 20306 0.515896 0.0569642 0.774228 Vertex 20307 0.357755 0.411264 0.51584 Vertex 20308 0.38157 0.200435 0.477444 Vertex 20309 0.463007 0.752569 0.407307 Vertex 20310 0.460804 0.537618 0.579971 Vertex 20311 0.582532 0.511511 0.370557 Vertex 20312 0.402939 0.187867 0.727208 Vertex 20313 0.516702 0.725917 0.441019 Vertex 20314 0.432807 0.182957 0.78727 Vertex 20315 0.461432 0.376042 0.405359 Vertex 20316 0.469184 0.10078 0.772807 Vertex 20317 0.468053 0.0984998 0.768554 Vertex 20318 0.371431 0.345848 0.501383 Vertex 20319 0.370264 0.344255 0.50342 Vertex 20320 0.41129 0.515941 0.475785 Vertex 20321 0.470481 0.313913 0.63299 Vertex 20322 0.539753 0.128107 0.436672 Vertex 20323 0.518733 0.441724 0.415463 Vertex 20324 0.363115 0.295399 0.48936 Vertex 20325 0.356541 0.115214 0.475566 Vertex 20326 0.55331 0.00492173 0.731336 Vertex 20327 0.434792 0.550109 0.505985 Vertex 20328 0.599465 0.51401 0.202904 Vertex 20329 0.320774 0.976386 0.238891 Vertex 20330 0.528725 0.138661 0.774826 Vertex 20331 0.479981 0.78204 0.482561 Vertex 20332 0.498004 0.257245 0.47437 Vertex 20333 0.400185 0.182779 0.586272 Vertex 20334 0.388269 0.203278 0.59319 Vertex 20335 0.488777 0.293373 0.44369 Vertex 20336 0.529205 0.583536 0.547278 Vertex 20337 0.468977 0.811494 0.459681 Vertex 20338 0.643713 0.430116 0.213832 Vertex 20339 0.644158 0.427989 0.213423 Vertex 20340 0.500545 0.512731 0.391814 Vertex 20341 0.607431 0.47938 0.388983 Vertex 20342 0.357524 0.897147 0.290732 Vertex 20343 0.559084 0.483639 0.54065 Vertex 20344 0.529365 0.106495 0.74712 Vertex 20345 0.45911 0.63347 0.505517 Vertex 20346 0.335232 0.914471 0.271447 Vertex 20347 0.588396 0.418039 0.401758 Vertex 20348 0.573619 0.496082 0.330674 Vertex 20349 0.522921 0.357 0.532394 Vertex 20350 0.472993 0.161712 0.662414 Vertex 20351 0.398675 0.308606 0.213423 Vertex 20352 0.472993 0.545394 0.420456 Vertex 20353 0.391479 0.352689 0.418774 Vertex 20354 0.494332 0.42668 0.384837 Vertex 20355 0.366266 0.190562 0.532394 Vertex 20356 0.477032 0.437483 0.372162 Vertex 20357 0.5259 0.579183 0.553123 Vertex 20358 0.51518 0.581522 0.563512 Vertex 20359 0.398918 0.241106 0.72289 Vertex 20360 0.38237 0.211901 0.584869 Vertex 20361 0.421004 0.816711 0.426645 Vertex 20362 0.460964 0.209781 0.627636 Vertex 20363 0.595698 0.515254 0.249338 Vertex 20364 0.356002 0.893037 0.294581 Vertex 20365 0.505644 0.141599 0.703393 Vertex 20366 0.608633 0.458568 0.385121 Vertex 20367 0.413559 0.227744 0.467014 Vertex 20368 0.515914 0.587125 0.417234 Vertex 20369 0.402389 0.252501 0.200666 Vertex 20370 0.629925 0.452095 0.202626 Vertex 20371 0.363927 0.316252 0.499286 Vertex 20372 0.47567 0.178539 0.699253 Vertex 20373 0.474124 0.182223 0.699686 Vertex 20374 0.353402 0.107147 0.46256 Vertex 20375 0.381535 0.232885 0.234668 Vertex 20376 0.449385 0.237487 0.772753 Vertex 20377 0.449882 0.241864 0.764485 Vertex 20378 0.491448 0.532424 0.385216 Vertex 20379 0.430018 0.548344 0.552673 Vertex 20380 0.375488 0.357563 0.337521 Vertex 20381 0.396075 0.510332 0.532394 Vertex 20382 0.383104 0.250991 0.225689 Vertex 20383 0.539812 0.0522793 0.7104 Vertex 20384 0.658271 0.492653 0.193322 Vertex 20385 0.655221 0.492985 0.193156 Vertex 20386 0.46235 0.557589 0.568333 Vertex 20387 0.531597 0.132265 0.441256 Vertex 20388 0.431783 0.16789 0.542759 Vertex 20389 0.434264 0.168269 0.546905 Vertex 20390 0.54532 0.148197 0.426793 Vertex 20391 0.547097 0.0694728 0.753902 Vertex 20392 0.589414 0.483408 0.451508 Vertex 20393 0.391414 0.336218 0.264861 Vertex 20394 0.443794 0.45563 0.406312 Vertex 20395 0.503465 0.408373 0.438449 Vertex 20396 0.503032 0.409546 0.433189 Vertex 20397 0.406582 0.285537 0.219245 Vertex 20398 0.501173 0.26938 0.469489 Vertex 20399 0.395773 0.256185 0.694183 Vertex 20400 0.390377 0.47925 0.573249 Vertex 20401 0.364928 0.32718 0.252051 Vertex 20402 0.512586 0.281403 0.511694 Vertex 20403 0.471086 0.195785 0.796799 Vertex 20404 0.371686 0.362787 0.480464 Vertex 20405 0.578813 0.406834 0.395569 Vertex 20406 0.319998 0.930569 0.265448 Vertex 20407 0.510667 0.654886 0.536617 Vertex 20408 0.467875 0.162423 0.66165 Vertex 20409 0.349014 0.894369 0.312829 Vertex 20410 0.488782 0.753481 0.500595 Vertex 20411 0.453643 0.60301 0.453617 Vertex 20412 0.463362 0.173031 0.557394 Vertex 20413 0.384206 0.38643 0.605112 Vertex 20414 0.381399 0.381864 0.600866 Vertex 20415 0.540594 0.447279 0.561362 Vertex 20416 0.487272 0.53805 0.388823 Vertex 20417 0.359307 0.361075 0.386483 Vertex 20418 0.484577 0.625119 0.416227 Vertex 20419 0.407802 0.212878 0.472113 Vertex 20420 0.414234 0.458598 0.399158 Vertex 20421 0.530454 0.572627 0.431827 Vertex 20422 0.515713 0.152544 0.453972 Vertex 20423 0.441081 0.852988 0.410962 Vertex 20424 0.39768 0.197266 0.475963 Vertex 20425 0.515357 0.183164 0.47055 Vertex 20426 0.513302 0.179765 0.472309 Vertex 20427 0.650489 0.458615 0.194435 Vertex 20428 0.568531 0.500169 0.375005 Vertex 20429 0.370868 0.388799 0.25458 Vertex 20430 0.355819 0.353926 0.41628 Vertex 20431 0.481136 0.465059 0.382782 Vertex 20432 0.544219 0.0492588 0.718751 Vertex 20433 0.551012 0.56392 0.509775 Vertex 20434 0.430942 0.411021 0.398832 Vertex 20435 0.59513 0.517836 0.324094 Vertex 20436 0.466543 0.449074 0.383149 Vertex 20437 0.508623 0.0870987 0.803818 Vertex 20438 0.494587 0.185042 0.783171 Vertex 20439 0.374226 0.316442 0.477017 Vertex 20440 0.464707 0.645238 0.433936 Vertex 20441 0.45744 0.153296 0.656053 Vertex 20442 0.492946 0.22746 0.530007 Vertex 20443 0.595521 0.459308 0.189057 Vertex 20444 0.508854 0.074128 0.687799 Vertex 20445 0.530685 0.656598 0.44279 Vertex 20446 0.538148 0.0774743 0.718786 Vertex 20447 0.48867 0.116297 0.804517 Vertex 20448 0.502316 0.274047 0.584128 Vertex 20449 0.495848 0.447777 0.385678 Vertex 20450 0.385237 0.17261 0.503367 Vertex 20451 0.535394 0.579835 0.436465 Vertex 20452 0.536306 0.574421 0.437578 Vertex 20453 0.545545 0.609614 0.471379 Vertex 20454 0.371289 0.898557 0.357741 Vertex 20455 0.517691 0.326208 0.559259 Vertex 20456 0.516145 0.324141 0.569653 Vertex 20457 0.517229 0.369201 0.476383 Vertex 20458 0.517963 0.364196 0.481749 Vertex 20459 0.516933 0.364617 0.469324 Vertex 20460 0.517045 0.363338 0.466054 Vertex 20461 0.517045 0.364149 0.468169 Vertex 20462 0.516814 0.365179 0.468169 Vertex 20463 0.662239 0.492221 0.193185 Vertex 20464 0.3807 0.245986 0.23173 Vertex 20465 0.484785 0.0777113 0.705561 Vertex 20466 0.486064 0.408214 0.617189 Vertex 20467 0.413553 0.353002 0.632878 Vertex 20468 0.491803 0.227069 0.53442 Vertex 20469 0.458749 0.689463 0.449755 Vertex 20470 0.663057 0.472315 0.21549 Vertex 20471 0.354504 0.201524 0.521952 Vertex 20472 0.355576 0.204587 0.528402 Vertex 20473 0.467929 0.572544 0.561474 Vertex 20474 0.442485 0.132555 0.741588 Vertex 20475 0.436237 0.193511 0.474997 Vertex 20476 0.383957 0.355164 0.312598 Vertex 20477 0.664235 0.402705 0.227537 Vertex 20478 0.438114 0.25336 0.646233 Vertex 20479 0.433749 0.257168 0.65045 Vertex 20480 0.523928 0.397091 0.486789 Vertex 20481 0.327982 0.921714 0.291928 Vertex 20482 0.395424 0.85541 0.391458 Vertex 20483 0.387754 0.412857 0.588405 Vertex 20484 0.481658 0.550203 0.395581 Vertex 20485 0.490388 0.42533 0.378825 Vertex 20486 0.548382 0.399105 0.423044 Vertex 20487 0.428324 0.82476 0.363278 Vertex 20488 0.603451 0.467345 0.211469 Vertex 20489 0.358182 0.212144 0.484722 Vertex 20490 0.380872 0.214661 0.479226 Vertex 20491 0.458287 0.366684 0.40909 Vertex 20492 0.561868 0.00739741 0.745823 Vertex 20493 0.560636 0.00484473 0.745823 Vertex 20494 0.531355 0.4261 0.571703 Vertex 20495 0.534482 0.433213 0.571726 Vertex 20496 0.535181 0.435665 0.571726 Vertex 20497 0.434792 0.851205 0.369225 Vertex 20498 0.375008 0.2602 0.232601 Vertex 20499 0.639615 0.438431 0.195904 Vertex 20500 0.496754 0.589382 0.400271 Vertex 20501 0.433873 0.813247 0.383273 Vertex 20502 0.460508 0.219559 0.787264 Vertex 20503 0.492863 0.208353 0.480689 Vertex 20504 0.400866 0.357184 0.327156 Vertex 20505 0.36324 0.426088 0.443021 Vertex 20506 0.441745 0.163525 0.501288 Vertex 20507 0.586939 0.500897 0.386933 Vertex 20508 0.484305 0.712988 0.403837 Vertex 20509 0.365508 0.365807 0.246116 Vertex 20510 0.429141 0.281374 0.639588 Vertex 20511 0.359467 0.258797 0.490918 Vertex 20512 0.377898 0.396108 0.557234 Vertex 20513 0.53967 0.540638 0.429654 Vertex 20514 0.534671 0.536919 0.425597 Vertex 20515 0.460259 0.131655 0.807893 Vertex 20516 0.515808 0.717939 0.43557 Vertex 20517 0.489653 0.213346 0.507021 Vertex 20518 0.364223 0.212677 0.216467 Vertex 20519 0.468971 0.823736 0.423316 Vertex 20520 0.354451 0.363977 0.432822 Vertex 20521 0.518188 0.354525 0.461067 Vertex 20522 0.525094 0.714836 0.464035 Vertex 20523 0.524917 0.712745 0.457751 Vertex 20524 0.501836 0.425075 0.604733 Vertex 20525 0.500853 0.428131 0.605924 Vertex 20526 0.37425 0.313421 0.251204 Vertex 20527 0.489446 0.473712 0.388509 Vertex 20528 0.370845 0.183312 0.519933 Vertex 20529 0.371887 0.354021 0.481062 Vertex 20530 0.396253 0.255563 0.215715 Vertex 20531 0.448579 0.16189 0.544849 Vertex 20532 0.47015 0.500601 0.60869 Vertex 20533 0.453122 0.56613 0.447469 Vertex 20534 0.362748 0.236492 0.563926 Vertex 20535 0.59468 0.52579 0.212985 Vertex 20536 0.424054 0.155008 0.71666 Vertex 20537 0.411794 0.464443 0.598248 Vertex 20538 0.501931 0.183691 0.451058 Vertex 20539 0.477334 0.17752 0.492635 Vertex 20540 0.375067 0.38287 0.510889 Vertex 20541 0.37515 0.380821 0.512677 Vertex 20542 0.665598 0.458598 0.192504 Vertex 20543 0.563657 0.547757 0.501383 Vertex 20544 0.561465 0.551352 0.500104 Vertex 20545 0.517667 0.0540206 0.67083 Vertex 20546 0.454816 0.221993 0.46853 Vertex 20547 0.51865 0.018686 0.648496 Vertex 20548 0.367942 0.35411 0.371671 Vertex 20549 0.395737 0.253004 0.708522 Vertex 20550 0.431925 0.516966 0.462246 Vertex 20551 0.415608 0.866592 0.344877 Vertex 20552 0.463931 0.754677 0.401213 Vertex 20553 0.60877 0.54039 0.287415 Vertex 20554 0.595225 0.438194 0.331604 Vertex 20555 0.593667 0.436151 0.333014 Vertex 20556 0.502357 0.253656 0.521982 Vertex 20557 0.501623 0.251387 0.524179 Vertex 20558 0.43186 0.811239 0.443145 Vertex 20559 0.426435 0.81314 0.434931 Vertex 20560 0.321746 0.964517 0.262279 Vertex 20561 0.600928 0.538299 0.284069 Vertex 20562 0.596853 0.51539 0.257766 Vertex 20563 0.531651 0.691862 0.474233 Vertex 20564 0.551883 0.527822 0.442749 Vertex 20565 0.374937 0.389883 0.522545 Vertex 20566 0.465927 0.206245 0.6733 Vertex 20567 0.686262 0.467345 0.217391 Vertex 20568 0.547837 0.580024 0.485457 Vertex 20569 0.512704 0.144318 0.705099 Vertex 20570 0.513646 0.139668 0.704803 Vertex 20571 0.58528 0.428214 0.202893 Vertex 20572 0.392587 0.185717 0.63225 Vertex 20573 0.391088 0.189229 0.630929 Vertex 20574 0.429473 0.408676 0.389883 Vertex 20575 0.466111 0.821088 0.40864 Vertex 20576 0.404225 0.470721 0.413396 Vertex 20577 0.375902 0.0859556 0.467251 Vertex 20578 0.514131 0.191936 0.468121 Vertex 20579 0.513006 0.189389 0.47418 Vertex 20580 0.39341 0.478752 0.432005 Vertex 20581 0.439962 0.80043 0.392139 Vertex 20582 0.411752 0.331035 0.212748 Vertex 20583 0.514949 0.411607 0.582144 Vertex 20584 0.500989 0.16959 0.725467 Vertex 20585 0.338217 0.9092 0.296364 Vertex 20586 0.503601 0.567486 0.394917 Vertex 20587 0.5017 0.0381597 0.721019 Vertex 20588 0.391224 0.166717 0.519933 Vertex 20589 0.394867 0.167102 0.522 Vertex 20590 0.432861 0.178811 0.489129 Vertex 20591 0.457315 0.758397 0.468038 Vertex 20592 0.500462 0.189146 0.514365 Vertex 20593 0.410455 0.175589 0.546863 Vertex 20594 0.361356 0.244203 0.561338 Vertex 20595 0.376175 0.444804 0.571827 Vertex 20596 0.506053 0.263843 0.544802 Vertex 20597 0.534061 0.0590786 0.71162 Vertex 20598 0.534494 0.058889 0.709724 Vertex 20599 0.449557 0.6214 0.464645 Vertex 20600 0.561104 0.551435 0.510847 Vertex 20601 0.367451 0.307463 0.483218 Vertex 20602 0.366474 0.305367 0.48506 Vertex 20603 0.46787 0.187091 0.686555 Vertex 20604 0.457138 0.40055 0.38813 Vertex 20605 0.508896 0.580978 0.404666 Vertex 20606 0.527001 0.398921 0.534325 Vertex 20607 0.329907 0.93199 0.245927 Vertex 20608 0.411065 0.242095 0.220033 Vertex 20609 0.480621 0.773772 0.489307 Vertex 20610 0.461343 0.765575 0.394668 Vertex 20611 0.468628 0.166758 0.668923 Vertex 20612 0.362411 0.202289 0.548284 Vertex 20613 0.548749 0.557299 0.449998 Vertex 20614 0.443119 0.566657 0.473914 Vertex 20615 0.491009 0.215081 0.523954 Vertex 20616 0.535483 0.676155 0.462151 Vertex 20617 0.354522 0.091588 0.44404 Vertex 20618 0.457351 0.17537 0.652488 Vertex 20619 0.433483 0.16616 0.524096 Vertex 20620 0.552054 0.451212 0.347992 Vertex 20621 0.545634 0.611716 0.478071 Vertex 20622 0.457783 0.765486 0.470182 Vertex 20623 0.407897 0.363663 0.252513 Vertex 20624 0.414992 0.495591 0.439148 Vertex 20625 0.494604 0.650125 0.539454 Vertex 20626 0.37486 0.446581 0.426757 Vertex 20627 0.450232 0.448186 0.397606 Vertex 20628 0.37746 0.425052 0.354939 Vertex 20629 0.581839 0.508283 0.445319 Vertex 20630 0.3747 0.221626 0.484681 Vertex 20631 0.524709 0.718443 0.466007 Vertex 20632 0.539036 0.512535 0.421978 Vertex 20633 0.490861 0.184248 0.458574 Vertex 20634 0.432494 0.836606 0.446148 Vertex 20635 0.393351 0.862138 0.391405 Vertex 20636 0.391698 0.861404 0.387176 Vertex 20637 0.697195 0.444934 0.212333 Vertex 20638 0.481509 0.200707 0.783165 Vertex 20639 0.429195 0.477669 0.596584 Vertex 20640 0.392723 0.374383 0.617017 Vertex 20641 0.398456 0.364386 0.622762 Vertex 20642 0.430231 0.259614 0.439319 Vertex 20643 0.510175 0.727024 0.429393 Vertex 20644 0.528198 0.705898 0.468305 Vertex 20645 0.454467 0.194927 0.59871 Vertex 20646 0.453839 0.193772 0.600807 Vertex 20647 0.45388 0.145964 0.789183 Vertex 20648 0.585505 0.514472 0.364273 Vertex 20649 0.433263 0.258714 0.72719 Vertex 20650 0.354291 0.267325 0.536433 Vertex 20651 0.362908 0.924261 0.291993 Vertex 20652 0.474189 0.0818749 0.732805 Vertex 20653 0.626413 0.526234 0.240105 Vertex 20654 0.469901 0.197781 0.57804 Vertex 20655 0.401625 0.436287 0.602193 Vertex 20656 0.594188 0.426361 0.358819 Vertex 20657 0.401204 0.295659 0.210971 Vertex 20658 0.303871 0.96235 0.222129 Vertex 20659 0.461746 0.52165 0.421178 Vertex 20660 0.455527 0.33039 0.417139 Vertex 20661 0.455687 0.82925 0.392288 Vertex 20662 0.526042 0.146983 0.772795 Vertex 20663 0.384757 0.245577 0.615246 Vertex 20664 0.460727 0.227868 0.714729 Vertex 20665 0.445494 0.567462 0.547017 Vertex 20666 0.593892 0.517356 0.352073 Vertex 20667 0.522157 0.163833 0.785185 Vertex 20668 0.527937 0.138958 0.451846 Vertex 20669 0.523697 0.109267 0.791854 Vertex 20670 0.540043 0.118909 0.433296 Vertex 20671 0.476132 0.5868 0.557394 Vertex 20672 0.488794 0.214021 0.4978 Vertex 20673 0.596474 0.513003 0.21337 Vertex 20674 0.595005 0.514875 0.209313 Vertex 20675 0.342001 0.119999 0.459261 Vertex 20676 0.485341 0.205522 0.760357 Vertex 20677 0.484252 0.206867 0.760357 Vertex 20678 0.460899 0.100046 0.758267 Vertex 20679 0.349381 0.0974337 0.451046 Vertex 20680 0.63923 0.43502 0.213174 Vertex 20681 0.454396 0.149678 0.658612 Vertex 20682 0.423479 0.536741 0.501519 Vertex 20683 0.521861 0.374324 0.519933 Vertex 20684 0.513302 0.0830713 0.681219 Vertex 20685 0.340556 0.950291 0.284649 Vertex 20686 0.525284 0.473558 0.408717 Vertex 20687 0.505182 0.422629 0.414338 Vertex 20688 0.368766 0.371819 0.23802 Vertex 20689 0.369595 0.374952 0.234259 Vertex 20690 0.552664 0.552845 0.476253 Vertex 20691 0.492638 0.214661 0.53227 Vertex 20692 0.533759 0.683013 0.480517 Vertex 20693 0.543946 0.603881 0.460102 Vertex 20694 0.433121 0.437377 0.618261 Vertex 20695 0.556745 0.534562 0.532347 Vertex 20696 0.554577 0.533969 0.54065 Vertex 20697 0.549798 0.0216236 0.721505 Vertex 20698 0.540819 0.608607 0.522166 Vertex 20699 0.536874 0.612137 0.530623 Vertex 20700 0.403638 0.857643 0.338646 Vertex 20701 0.400085 0.857572 0.338006 Vertex 20702 0.423118 0.38762 0.319622 Vertex 20703 0.42236 0.38643 0.317484 Vertex 20704 0.345679 0.298147 0.206269 Vertex 20705 0.51948 0.0458592 0.774009 Vertex 20706 0.692226 0.45364 0.202377 Vertex 20707 0.542886 0.577448 0.524138 Vertex 20708 0.557343 0.478024 0.349212 Vertex 20709 0.559665 0.481039 0.34519 Vertex 20710 0.485543 0.237771 0.590359 Vertex 20711 0.44457 0.799873 0.457792 Vertex 20712 0.501125 0.255859 0.486789 Vertex 20713 0.605654 0.497717 0.202893 Vertex 20714 0.486253 0.172349 0.499132 Vertex 20715 0.462812 0.115024 0.64159 Vertex 20716 0.408086 0.36714 0.275386 Vertex 20717 0.526634 0.120775 0.796716 Vertex 20718 0.415567 0.170502 0.534461 Vertex 20719 0.437303 0.255711 0.712668 Vertex 20720 0.558628 0.033617 0.745971 Vertex 20721 0.40259 0.839366 0.39747 Vertex 20722 0.533013 0.123008 0.435203 Vertex 20723 0.507545 0.0445029 0.667241 Vertex 20724 0.506651 0.0409137 0.670031 Vertex 20725 0.508991 0.500951 0.600866 Vertex 20726 0.655967 0.455553 0.19623 Vertex 20727 0.361096 0.198492 0.530884 Vertex 20728 0.393682 0.2585 0.652387 Vertex 20729 0.413577 0.346547 0.634809 Vertex 20730 0.530999 0.398459 0.439823 Vertex 20731 0.444605 0.140509 0.623579 Vertex 20732 0.539717 0.572621 0.544772 Vertex 20733 0.369571 0.211019 0.229663 Vertex 20734 0.5423 0.167019 0.440682 Vertex 20735 0.522713 0.328684 0.490231 Vertex 20736 0.381719 0.869234 0.331314 Vertex 20737 0.490844 0.72626 0.516107 Vertex 20738 0.418765 0.403002 0.312095 Vertex 20739 0.456113 0.224576 0.468038 Vertex 20740 0.416834 0.401693 0.36955 Vertex 20741 0.473147 0.202543 0.484083 Vertex 20742 0.467159 0.511848 0.410624 Vertex 20743 0.427305 0.799725 0.422617 Vertex 20744 0.442485 0.0985235 0.662118 Vertex 20745 0.523004 0.601168 0.547165 Vertex 20746 0.510667 0.392021 0.447279 Vertex 20747 0.532841 0.59354 0.436844 Vertex 20748 0.521979 0.320659 0.48904 Vertex 20749 0.455965 0.460066 0.625557 Vertex 20750 0.321971 0.979827 0.20175 Vertex 20751 0.627515 0.506091 0.188317 Vertex 20752 0.497045 0.602714 0.402901 Vertex 20753 0.493758 0.0902791 0.787252 Vertex 20754 0.35605 0.276819 0.550209 Vertex 20755 0.453537 0.158869 0.507021 Vertex 20756 0.405391 0.176768 0.546958 Vertex 20757 0.665325 0.406656 0.228141 Vertex 20758 0.468237 0.225665 0.770728 Vertex 20759 0.5968 0.512802 0.236634 Vertex 20760 0.567572 0.501324 0.404328 Vertex 20761 0.456391 0.696541 0.466155 Vertex 20762 0.578167 0.516646 0.453617 Vertex 20763 0.394825 0.315571 0.204669 Vertex 20764 0.500983 0.751142 0.426076 Vertex 20765 0.499283 0.746747 0.419271 Vertex 20766 0.354741 0.25824 0.528367 Vertex 20767 0.368979 0.35822 0.454772 Vertex 20768 0.496719 0.625119 0.404044 Vertex 20769 0.498371 0.480334 0.393419 Vertex 20770 0.548299 0.145994 0.432236 Vertex 20771 0.546463 0.146088 0.432982 Vertex 20772 0.360421 0.262658 0.48721 Vertex 20773 0.422389 0.312035 0.428333 Vertex 20774 0.424 0.314375 0.427527 Vertex 20775 0.373747 0.342419 0.474358 Vertex 20776 0.377004 0.339013 0.470325 Vertex 20777 0.495919 0.540478 0.379643 Vertex 20778 0.431108 0.321986 0.646814 Vertex 20779 0.410159 0.379358 0.370622 Vertex 20780 0.448491 0.195649 0.472711 Vertex 20781 0.479762 0.70854 0.412253 Vertex 20782 0.515073 0.367525 0.571756 Vertex 20783 0.53633 0.671097 0.486701 Vertex 20784 0.409519 0.454061 0.396558 Vertex 20785 0.478193 0.0462974 0.660868 Vertex 20786 0.595521 0.524102 0.208644 Vertex 20787 0.372758 0.397701 0.532311 Vertex 20788 0.420198 0.847089 0.345801 Vertex 20789 0.520919 0.513163 0.411264 Vertex 20790 0.37836 0.316762 0.25458 Vertex 20791 0.37759 0.318645 0.25529 Vertex 20792 0.374161 0.31781 0.253828 Vertex 20793 0.438114 0.778883 0.433012 Vertex 20794 0.354522 0.359748 0.420432 Vertex 20795 0.449018 0.244328 0.62978 Vertex 20796 0.625815 0.50332 0.296032 Vertex 20797 0.641404 0.471592 0.186327 Vertex 20798 0.417166 0.508727 0.456116 Vertex 20799 0.420559 0.511848 0.458592 Vertex 20800 0.487722 0.674159 0.522035 Vertex 20801 0.596687 0.525168 0.208661 Vertex 20802 0.541743 0.580889 0.526163 Vertex 20803 0.499959 0.176892 0.779002 Vertex 20804 0.639662 0.46959 0.220329 Vertex 20805 0.45773 0.470935 0.402954 Vertex 20806 0.475279 0.331574 0.631066 Vertex 20807 0.393505 0.498736 0.476466 Vertex 20808 0.401933 0.32837 0.220222 Vertex 20809 0.401856 0.851637 0.34618 Vertex 20810 0.497915 0.694527 0.533359 Vertex 20811 0.496713 0.694112 0.531944 Vertex 20812 0.57719 0.508952 0.484681 Vertex 20813 0.427578 0.241716 0.770236 Vertex 20814 0.619596 0.474607 0.368893 Vertex 20815 0.535962 0.124394 0.793589 Vertex 20816 0.446862 0.22579 0.465231 Vertex 20817 0.452417 0.228538 0.464277 Vertex 20818 0.456516 0.229527 0.465367 Vertex 20819 0.421999 0.375669 0.329247 Vertex 20820 0.507984 0.0945257 0.722239 Vertex 20821 0.49615 0.243036 0.515787 Vertex 20822 0.444593 0.562019 0.462471 Vertex 20823 0.327443 0.236083 0.223628 Vertex 20824 0.54365 0.400597 0.41612 Vertex 20825 0.546232 0.404571 0.409724 Vertex 20826 0.478868 0.110612 0.652322 Vertex 20827 0.503595 0.118246 0.795485 Vertex 20828 0.49124 0.559425 0.382906 Vertex 20829 0.492342 0.561522 0.384185 Vertex 20830 0.474017 0.232275 0.473203 Vertex 20831 0.512041 0.344201 0.454404 Vertex 20832 0.580329 0.475057 0.492985 Vertex 20833 0.419102 0.539904 0.521988 Vertex 20834 0.366225 0.252163 0.481281 Vertex 20835 0.368789 0.252838 0.478344 Vertex 20836 0.497862 0.179232 0.499221 Vertex 20837 0.379586 0.478829 0.530333 Vertex 20838 0.520457 0.5704 0.416037 Vertex 20839 0.385284 0.28241 0.23192 Vertex 20840 0.444161 0.801425 0.382509 Vertex 20841 0.468213 0.152467 0.800092 Vertex 20842 0.52481 0.485504 0.593895 Vertex 20843 0.50507 0.146112 0.791623 Vertex 20844 0.493817 0.0488797 0.688101 Vertex 20845 0.394091 0.35594 0.316791 Vertex 20846 0.43886 0.564199 0.524096 Vertex 20847 0.433974 0.809006 0.447404 Vertex 20848 0.432186 0.804143 0.441155 Vertex 20849 0.372781 0.345516 0.274977 Vertex 20850 0.423633 0.390694 0.33485 Vertex 20851 0.536786 0.45248 0.571756 Vertex 20852 0.460964 0.621536 0.518043 Vertex 20853 0.467905 0.300658 0.427871 Vertex 20854 0.357708 0.322341 0.552916 Vertex 20855 0.350441 0.091748 0.443554 Vertex 20856 0.476078 0.509065 0.405317 Vertex 20857 0.440892 0.38794 0.416197 Vertex 20858 0.458707 0.71714 0.440083 Vertex 20859 0.630885 0.485546 0.236433 Vertex 20860 0.464464 0.176241 0.48477 Vertex 20861 0.461929 0.218825 0.611965 Vertex 20862 0.513237 0.303057 0.565531 Vertex 20863 0.515002 0.0579947 0.634755 Vertex 20864 0.495066 0.0606836 0.687988 Vertex 20865 0.52526 0.125235 0.747896 Vertex 20866 0.381043 0.329792 0.263665 Vertex 20867 0.454597 0.614808 0.451508 Vertex 20868 0.609172 0.530919 0.300824 Vertex 20869 0.379693 0.242379 0.598609 Vertex 20870 0.408507 0.865283 0.415889 Vertex 20871 0.429112 0.307972 0.643953 Vertex 20872 0.391171 0.24906 0.462672 Vertex 20873 0.546055 0.127752 0.447469 Vertex 20874 0.424267 0.335803 0.647839 Vertex 20875 0.538071 0.0773618 0.770657 Vertex 20876 0.537419 0.0813833 0.762389 Vertex 20877 0.44948 0.177017 0.59871 Vertex 20878 0.53383 0.129304 0.435813 Vertex 20879 0.534529 0.592894 0.538678 Vertex 20880 0.410692 0.18625 0.480109 Vertex 20881 0.365419 0.354063 0.439159 Vertex 20882 0.443332 0.235147 0.45784 Vertex 20883 0.344524 0.907038 0.27782 Vertex 20884 0.380848 0.338693 0.215052 Vertex 20885 0.533339 0.0959412 0.742583 Vertex 20886 0.356518 0.370214 0.391417 Vertex 20887 0.551865 0.0538548 0.731378 Vertex 20888 0.382329 0.225464 0.62519 Vertex 20889 0.462077 0.8246 0.40116 Vertex 20890 0.505822 0.0316862 0.629798 Vertex 20891 0.524265 0.496171 0.413698 Vertex 20892 0.388405 0.395344 0.262723 Vertex 20893 0.552872 0.465723 0.374703 Vertex 20894 0.468041 0.182915 0.689818 Vertex 20895 0.602865 0.540692 0.279917 Vertex 20896 0.506882 0.683688 0.418797 Vertex 20897 0.366373 0.241621 0.574895 Vertex 20898 0.666575 0.456584 0.206026 Vertex 20899 0.549087 0.0079956 0.727925 Vertex 20900 0.452435 0.245944 0.745829 Vertex 20901 0.486005 0.182063 0.542717 Vertex 20902 0.483014 0.177828 0.54065 Vertex 20903 0.45786 0.208229 0.600315 Vertex 20904 0.616943 0.478024 0.376403 Vertex 20905 0.514066 0.289985 0.485415 Vertex 20906 0.436705 0.500121 0.435665 Vertex 20907 0.358632 0.324603 0.555238 Vertex 20908 0.554992 0.0502182 0.745278 Vertex 20909 0.653509 0.416191 0.212256 Vertex 20910 0.603955 0.516894 0.347879 Vertex 20911 0.500669 0.396119 0.444531 Vertex 20912 0.501007 0.524564 0.393389 Vertex 20913 0.474491 0.320884 0.425792 Vertex 20914 0.648067 0.442364 0.227104 Vertex 20915 0.644993 0.444697 0.224013 Vertex 20916 0.646965 0.443963 0.225618 Vertex 20917 0.60537 0.457585 0.21424 Vertex 20918 0.510211 0.0259472 0.631847 Vertex 20919 0.624269 0.531417 0.273266 Vertex 20920 0.442669 0.285401 0.430181 Vertex 20921 0.388749 0.47325 0.434753 Vertex 20922 0.447999 0.619416 0.47729 Vertex 20923 0.448461 0.619552 0.479374 Vertex 20924 0.360213 0.185012 0.456051 Vertex 20925 0.453785 0.20204 0.80043 Vertex 20926 0.404959 0.356781 0.238067 Vertex 20927 0.405545 0.353239 0.234152 Vertex 20928 0.461491 0.542522 0.427859 Vertex 20929 0.457606 0.188441 0.47729 Vertex 20930 0.352757 0.167996 0.455097 Vertex 20931 0.479614 0.689333 0.420568 Vertex 20932 0.607627 0.448115 0.37077 Vertex 20933 0.515073 0.510308 0.404968 Vertex 20934 0.520919 0.507821 0.411086 Vertex 20935 0.520066 0.0520602 0.663172 Vertex 20936 0.460514 0.464118 0.398696 Vertex 20937 0.545824 0.0616668 0.77068 Vertex 20938 0.607674 0.479872 0.280201 Vertex 20939 0.605844 0.479955 0.280764 Vertex 20940 0.530466 0.398459 0.491024 Vertex 20941 0.44948 0.212049 0.470591 Vertex 20942 0.431214 0.793684 0.428783 Vertex 20943 0.540031 0.136251 0.456205 Vertex 20944 0.541376 0.138715 0.45688 Vertex 20945 0.336647 0.913008 0.308334 Vertex 20946 0.518188 0.381319 0.538601 Vertex 20947 0.517821 0.381538 0.534431 Vertex 20948 0.425138 0.148659 0.627737 Vertex 20949 0.396721 0.252607 0.71467 Vertex 20950 0.362541 0.270956 0.487263 Vertex 20951 0.616576 0.479913 0.310727 Vertex 20952 0.615747 0.476632 0.308275 Vertex 20953 0.375754 0.359879 0.596406 Vertex 20954 0.458192 0.520472 0.425733 Vertex 20955 0.41363 0.832543 0.374946 Vertex 20956 0.651288 0.414201 0.212262 Vertex 20957 0.418344 0.403671 0.354738 Vertex 20958 0.455793 0.619155 0.507862 Vertex 20959 0.449847 0.320973 0.419218 Vertex 20960 0.459613 0.234194 0.762424 Vertex 20961 0.66189 0.401799 0.225553 Vertex 20962 0.330517 0.919369 0.29624 Vertex 20963 0.434022 0.206269 0.470781 Vertex 20964 0.512473 0.423761 0.430329 Vertex 20965 0.44749 0.597774 0.497314 Vertex 20966 0.556271 0.49135 0.391364 Vertex 20967 0.360966 0.347915 0.399335 Vertex 20968 0.531242 0.502502 0.416878 Vertex 20969 0.39155 0.90577 0.34198 Vertex 20970 0.404811 0.514247 0.488922 Vertex 20971 0.401601 0.479487 0.423956 Vertex 20972 0.412824 0.166107 0.712644 Vertex 20973 0.371786 0.17152 0.478439 Vertex 20974 0.369814 0.168962 0.476561 Vertex 20975 0.467111 0.163862 0.5047 Vertex 20976 0.49124 0.746907 0.504865 Vertex 20977 0.39447 0.330798 0.449696 Vertex 20978 0.390034 0.19097 0.646162 Vertex 20979 0.420956 0.408877 0.376391 Vertex 20980 0.476848 0.77809 0.487944 Vertex 20981 0.396324 0.501146 0.471604 Vertex 20982 0.508529 0.386483 0.448156 Vertex 20983 0.441851 0.853402 0.387573 Vertex 20984 0.400268 0.260787 0.676771 Vertex 20985 0.464979 0.126105 0.811671 Vertex 20986 0.381796 0.37022 0.229094 Vertex 20987 0.400333 0.840272 0.385731 Vertex 20988 0.437859 0.300794 0.639316 Vertex 20989 0.393179 0.251044 0.700373 Vertex 20990 0.522062 0.143583 0.728795 Vertex 20991 0.404005 0.873237 0.405998 Vertex 20992 0.559084 0.489028 0.381751 Vertex 20993 0.509399 0.527289 0.398181 Vertex 20994 0.411675 0.150412 0.661964 Vertex 20995 0.525965 0.686383 0.441908 Vertex 20996 0.486781 0.185516 0.462116 Vertex 20997 0.484536 0.187896 0.464852 Vertex 20998 0.52051 0.387567 0.507614 Vertex 20999 0.473087 0.428126 0.371452 Vertex 21000 0.48649 0.106306 0.803924 Vertex 21001 0.498626 0.695711 0.533288 Vertex 21002 0.499591 0.694882 0.531944 Vertex 21003 0.352087 0.401432 0.485504 Vertex 21004 0.598411 0.507969 0.25012 Vertex 21005 0.514676 0.540964 0.40389 Vertex 21006 0.497595 0.674633 0.537618 Vertex 21007 0.496097 0.678636 0.53423 Vertex 21008 0.36199 0.886368 0.314576 Vertex 21009 0.447312 0.466285 0.620411 Vertex 21010 0.406428 0.838969 0.412134 Vertex 21011 0.493988 0.210284 0.491072 Vertex 21012 0.595728 0.444259 0.183863 Vertex 21013 0.44162 0.839366 0.374839 Vertex 21014 0.445944 0.828936 0.455589 Vertex 21015 0.494166 0.395924 0.420349 Vertex 21016 0.469013 0.123043 0.813489 Vertex 21017 0.57597 0.409203 0.367934 Vertex 21018 0.68702 0.46779 0.198243 Vertex 21019 0.365739 0.292064 0.484953 Vertex 21020 0.544219 0.565146 0.540692 Vertex 21021 0.384046 0.212458 0.476146 Vertex 21022 0.453098 0.573598 0.451467 Vertex 21023 0.507699 0.393004 0.446966 Vertex 21024 0.585695 0.433888 0.330893 Vertex 21025 0.460395 0.592776 0.438686 Vertex 21026 0.401613 0.341216 0.208555 Vertex 21027 0.47503 0.440516 0.610934 Vertex 21028 0.374753 0.347412 0.492991 Vertex 21029 0.486046 0.548332 0.386412 Vertex 21030 0.486852 0.552199 0.38463 Vertex 21031 0.432754 0.394236 0.419165 Vertex 21032 0.374884 0.179545 0.513708 Vertex 21033 0.390561 0.175956 0.493358 Vertex 21034 0.525343 0.172065 0.446296 Vertex 21035 0.433311 0.808301 0.389528 Vertex 21036 0.515808 0.359896 0.472984 Vertex 21037 0.381979 0.390534 0.245411 Vertex 21038 0.37184 0.0802698 0.478065 Vertex 21039 0.367552 0.143583 0.466143 Vertex 21040 0.366728 0.138892 0.466421 Vertex 21041 0.442207 0.820176 0.365185 Vertex 21042 0.367871 0.9188 0.341518 Vertex 21043 0.524129 0.327458 0.536581 Vertex 21044 0.485679 0.454085 0.381899 Vertex 21045 0.3997 0.494264 0.449495 Vertex 21046 0.391479 0.27297 0.615282 Vertex 21047 0.387582 0.353891 0.372678 Vertex 21048 0.387262 0.354246 0.366554 Vertex 21049 0.455201 0.237434 0.623686 Vertex 21050 0.374096 0.217368 0.485232 Vertex 21051 0.513166 0.172172 0.469353 Vertex 21052 0.450031 0.600712 0.461369 Vertex 21053 0.596871 0.511019 0.244026 Vertex 21054 0.460934 0.215466 0.66059 Vertex 21055 0.406848 0.369841 0.406342 Vertex 21056 0.404698 0.393531 0.276736 Vertex 21057 0.411462 0.270032 0.64942 Vertex 21058 0.491975 0.184538 0.78708 Vertex 21059 0.662139 0.416493 0.215253 Vertex 21060 0.374913 0.301535 0.193328 Vertex 21061 0.491785 0.224374 0.527579 Vertex 21062 0.411142 0.390979 0.292295 Vertex 21063 0.581289 0.510255 0.455684 Vertex 21064 0.41533 0.380039 0.294196 Vertex 21065 0.431652 0.138608 0.652766 Vertex 21066 0.608231 0.528254 0.228384 Vertex 21067 0.355096 0.415232 0.482892 Vertex 21068 0.355422 0.927252 0.326362 Vertex 21069 0.403585 0.835913 0.385234 Vertex 21070 0.466389 0.0781495 0.74372 Vertex 21071 0.376021 0.387656 0.553106 Vertex 21072 0.46049 0.0803587 0.730241 Vertex 21073 0.608864 0.49366 0.190189 Vertex 21074 0.506083 0.281605 0.472794 Vertex 21075 0.507291 0.174037 0.764509 Vertex 21076 0.478933 0.219737 0.586272 Vertex 21077 0.471151 0.219452 0.592485 Vertex 21078 0.408495 0.154149 0.64817 Vertex 21079 0.54179 0.545483 0.434332 Vertex 21080 0.415288 0.16314 0.600777 Vertex 21081 0.524419 0.544796 0.411453 Vertex 21082 0.456036 0.690055 0.46609 Vertex 21083 0.403159 0.335856 0.203361 Vertex 21084 0.372544 0.343473 0.422345 Vertex 21085 0.458524 0.195241 0.608749 Vertex 21086 0.459323 0.199481 0.61357 Vertex 21087 0.381387 0.315619 0.200227 Vertex 21088 0.605335 0.539104 0.287776 Vertex 21089 0.561779 0.491024 0.374976 Vertex 21090 0.467994 0.80473 0.467067 Vertex 21091 0.60091 0.51786 0.327138 Vertex 21092 0.312797 0.993959 0.221229 Vertex 21093 0.524769 0.0159083 0.751917 Vertex 21094 0.388441 0.265868 0.454825 Vertex 21095 0.525598 0.122327 0.7157 Vertex 21096 0.352241 0.932186 0.322353 Vertex 21097 0.479318 0.0866071 0.650403 Vertex 21098 0.451985 0.810818 0.468471 Vertex 21099 0.597428 0.455607 0.195389 Vertex 21100 0.379012 0.21639 0.584069 Vertex 21101 0.500041 0.122664 0.648306 Vertex 21102 0.383815 0.413277 0.578176 Vertex 21103 0.491501 0.168257 0.703606 Vertex 21104 0.401234 0.492819 0.575647 Vertex 21105 0.384852 0.240099 0.681544 Vertex 21106 0.531651 0.495336 0.41583 Vertex 21107 0.5139 0.562404 0.403073 Vertex 21108 0.361244 0.230101 0.495235 Vertex 21109 0.587211 0.511967 0.305544 Vertex 21110 0.488232 0.401829 0.400982 Vertex 21111 0.339016 0.102492 0.453534 Vertex 21112 0.409146 0.828634 0.405738 Vertex 21113 0.569899 0.515479 0.43701 Vertex 21114 0.477932 0.508703 0.600434 Vertex 21115 0.402537 0.431199 0.377208 Vertex 21116 0.405279 0.436998 0.382077 Vertex 21117 0.503927 0.442103 0.395047 Vertex 21118 0.527546 0.127207 0.710577 Vertex 21119 0.546967 0.150519 0.423056 Vertex 21120 0.406659 0.30186 0.633695 Vertex 21121 0.449912 0.401248 0.633778 Vertex 21122 0.532196 0.0565792 0.785564 Vertex 21123 0.466845 0.108758 0.645481 Vertex 21124 0.43703 0.253531 0.689866 Vertex 21125 0.367451 0.356266 0.235864 Vertex 21126 0.451191 0.183668 0.594582 Vertex 21127 0.423823 0.239157 0.200997 Vertex 21128 0.52009 0.0848125 0.668959 Vertex 21129 0.505455 0.427592 0.408871 Vertex 21130 0.421975 0.514922 0.46243 Vertex 21131 0.412315 0.859929 0.422049 Vertex 21132 0.684586 0.455056 0.209532 Vertex 21133 0.464873 0.297495 0.42828 Vertex 21134 0.385758 0.487317 0.468346 Vertex 21135 0.340005 0.906801 0.293888 Vertex 21136 0.497133 0.0327523 0.669812 Vertex 21137 0.408157 0.890212 0.356136 Vertex 21138 0.491714 0.241159 0.481388 Vertex 21139 0.498709 0.466025 0.391109 Vertex 21140 0.49833 0.689356 0.534514 Vertex 21141 0.44804 0.372044 0.412744 Vertex 21142 0.414749 0.168067 0.505464 Vertex 21143 0.405326 0.165657 0.504617 Vertex 21144 0.450617 0.791274 0.383409 Vertex 21145 0.477778 0.421522 0.373886 Vertex 21146 0.352046 0.894399 0.320611 Vertex 21147 0.425825 0.261189 0.733391 Vertex 21148 0.632508 0.498072 0.256049 Vertex 21149 0.398663 0.234289 0.466279 Vertex 21150 0.392628 0.232263 0.47004 Vertex 21151 0.494314 0.511694 0.597454 Vertex 21152 0.60781 0.513868 0.357758 Vertex 21153 0.410621 0.243593 0.220933 Vertex 21154 0.465666 0.12896 0.809693 Vertex 21155 0.400866 0.274983 0.194625 Vertex 21156 0.58868 0.431063 0.422523 Vertex 21157 0.494516 0.541995 0.381544 Vertex 21158 0.35881 0.23648 0.55198 Vertex 21159 0.5354 0.0597064 0.802811 Vertex 21160 0.360859 0.30574 0.491605 Vertex 21161 0.492982 0.177869 0.787299 Vertex 21162 0.374226 0.382 0.506613 Vertex 21163 0.505852 0.353287 0.448529 Vertex 21164 0.505141 0.34933 0.448257 Vertex 21165 0.457434 0.339665 0.635271 Vertex 21166 0.441585 0.162311 0.582168 Vertex 21167 0.552339 0.403647 0.404299 Vertex 21168 0.549407 0.401225 0.410814 Vertex 21169 0.534209 0.68139 0.461831 Vertex 21170 0.374066 0.383439 0.544932 Vertex 21171 0.359206 0.283619 0.197402 Vertex 21172 0.530075 0.0685489 0.709369 Vertex 21173 0.52003 0.340488 0.48615 Vertex 21174 0.458583 0.471136 0.620683 Vertex 21175 0.451843 0.183543 0.577975 Vertex 21176 0.40474 0.326996 0.631498 Vertex 21177 0.655067 0.414776 0.213992 Vertex 21178 0.485205 0.0399365 0.665192 Vertex 21179 0.515387 0.624936 0.542836 Vertex 21180 0.497388 0.0979845 0.812986 Vertex 21181 0.378301 0.0857898 0.471124 Vertex 21182 0.364407 0.345487 0.422446 Vertex 21183 0.348409 0.127331 0.459302 Vertex 21184 0.636002 0.450744 0.208495 Vertex 21185 0.40628 0.359802 0.33957 Vertex 21186 0.431493 0.440018 0.395758 Vertex 21187 0.420885 0.451029 0.395379 Vertex 21188 0.517561 0.475465 0.600345 Vertex 21189 0.530259 0.105459 0.772635 Vertex 21190 0.623245 0.48689 0.274711 Vertex 21191 0.504081 0.200683 0.48156 Vertex 21192 0.501214 0.203497 0.480411 Vertex 21193 0.503441 0.629561 0.557856 Vertex 21194 0.636044 0.485173 0.235781 Vertex 21195 0.536786 0.123114 0.432864 Vertex 21196 0.389371 0.31043 0.197325 Vertex 21197 0.595835 0.450513 0.205558 Vertex 21198 0.59606 0.451721 0.20538 Vertex 21199 0.450972 0.755613 0.426592 Vertex 21200 0.470677 0.120271 0.813744 Vertex 21201 0.438298 0.20634 0.469353 Vertex 21202 0.544627 0.0553236 0.798369 Vertex 21203 0.446311 0.426663 0.396504 Vertex 21204 0.44855 0.171781 0.615341 Vertex 21205 0.675826 0.473748 0.196668 Vertex 21206 0.393937 0.366642 0.228822 Vertex 21207 0.452737 0.434386 0.627684 Vertex 21208 0.456942 0.238298 0.737561 Vertex 21209 0.502979 0.299604 0.592402 Vertex 21210 0.418753 0.409286 0.347092 Vertex 21211 0.454804 0.802408 0.374715 Vertex 21212 0.351033 0.382343 0.452941 Vertex 21213 0.46553 0.180114 0.800389 Vertex 21214 0.450747 0.249605 0.74792 Vertex 21215 0.542199 0.0461612 0.791161 Vertex 21216 0.352745 0.37879 0.424513 Vertex 21217 0.528808 0.0143625 0.730975 Vertex 21218 0.380137 0.354981 0.306142 Vertex 21219 0.506106 0.174624 0.477894 Vertex 21220 0.496766 0.546004 0.388266 Vertex 21221 0.467538 0.502502 0.412839 Vertex 21222 0.468189 0.503101 0.411193 Vertex 21223 0.404242 0.179356 0.582127 Vertex 21224 0.536264 0.670333 0.461103 Vertex 21225 0.502594 0.623194 0.410079 Vertex 21226 0.487746 0.202638 0.550997 Vertex 21227 0.374297 0.338741 0.21565 Vertex 21228 0.499443 0.403049 0.424945 Vertex 21229 0.585559 0.491232 0.459818 Vertex 21230 0.462966 0.123618 0.645304 Vertex 21231 0.349292 0.306367 0.230996 Vertex 21232 0.360883 0.414385 0.430933 Vertex 21233 0.519166 0.382018 0.517949 Vertex 21234 0.492502 0.642135 0.403333 Vertex 21235 0.49236 0.706852 0.403985 Vertex 21236 0.318162 0.936444 0.248592 Vertex 21237 0.518188 0.11702 0.687692 Vertex 21238 0.476499 0.216065 0.7562 Vertex 21239 0.606898 0.477153 0.215413 Vertex 21240 0.405113 0.268836 0.645937 Vertex 21241 0.568892 0.40482 0.439106 Vertex 21242 0.536833 0.604887 0.528236 Vertex 21243 0.540813 0.603051 0.519962 Vertex 21244 0.416307 0.826022 0.424619 Vertex 21245 0.432624 0.515017 0.456199 Vertex 21246 0.444659 0.76808 0.443104 Vertex 21247 0.599181 0.438828 0.337586 Vertex 21248 0.375251 0.388823 0.528775 Vertex 21249 0.42878 0.122664 0.674034 Vertex 21250 0.365331 0.0927548 0.482946 Vertex 21251 0.52847 0.400923 0.480737 Vertex 21252 0.503388 0.436915 0.395634 Vertex 21253 0.491691 0.220661 0.501531 Vertex 21254 0.489789 0.217557 0.501276 Vertex 21255 0.448123 0.100863 0.718152 Vertex 21256 0.459465 0.372233 0.631439 Vertex 21257 0.364685 0.20525 0.217587 Vertex 21258 0.582207 0.460309 0.312462 Vertex 21259 0.403662 0.891538 0.34432 Vertex 21260 0.515073 0.0545655 0.673952 Vertex 21261 0.513095 0.0604112 0.677683 Vertex 21262 0.417219 0.861801 0.422552 Vertex 21263 0.35936 0.299408 0.561776 Vertex 21264 0.36003 0.302488 0.564276 Vertex 21265 0.587567 0.425283 0.196123 Vertex 21266 0.462166 0.128078 0.646648 Vertex 21267 0.465702 0.120556 0.642585 Vertex 21268 0.526812 0.143257 0.770657 Vertex 21269 0.360699 0.276085 0.225642 Vertex 21270 0.362381 0.19867 0.541314 Vertex 21271 0.583148 0.473339 0.484681 Vertex 21272 0.448212 0.405602 0.636976 Vertex 21273 0.351851 0.290447 0.230806 Vertex 21274 0.388269 0.0737431 0.466208 Vertex 21275 0.390253 0.077119 0.465646 Vertex 21276 0.46967 0.733581 0.484841 Vertex 21277 0.535163 0.0841314 0.718614 Vertex 21278 0.531734 0.0804594 0.715351 Vertex 21279 0.536223 0.0810576 0.718514 Vertex 21280 0.437113 0.169424 0.49594 Vertex 21281 0.33211 0.248148 0.207222 Vertex 21282 0.306211 0.989902 0.202952 Vertex 21283 0.493337 0.0768169 0.764639 Vertex 21284 0.497815 0.249534 0.569742 Vertex 21285 0.497406 0.251808 0.575908 Vertex 21286 0.381156 0.24816 0.206494 Vertex 21287 0.644507 0.436269 0.199902 Vertex 21288 0.446127 0.174754 0.594552 Vertex 21289 0.460555 0.0886504 0.747807 Vertex 21290 0.385367 0.352967 0.335477 Vertex 21291 0.470665 0.773446 0.487222 Vertex 21292 0.42037 0.468169 0.40585 Vertex 21293 0.522524 0.4123 0.5696 Vertex 21294 0.520007 0.0216769 0.737525 Vertex 21295 0.517827 0.360755 0.48336 Vertex 21296 0.467603 0.192777 0.674852 Vertex 21297 0.399498 0.261284 0.196609 Vertex 21298 0.519912 0.299924 0.496793 Vertex 21299 0.463428 0.0833733 0.745776 Vertex 21300 0.454188 0.758503 0.417903 Vertex 21301 0.368665 0.401835 0.296062 Vertex 21302 0.425523 0.389474 0.633991 Vertex 21303 0.489647 0.637746 0.404234 Vertex 21304 0.534494 0.0645748 0.708125 Vertex 21305 0.525598 0.0544293 0.666222 Vertex 21306 0.355351 0.267598 0.546798 Vertex 21307 0.409608 0.170608 0.610905 Vertex 21308 0.412362 0.17065 0.600777 Vertex 21309 0.694257 0.445242 0.20644 Vertex 21310 0.503826 0.418904 0.414118 Vertex 21311 0.400316 0.175696 0.600777 Vertex 21312 0.593537 0.522959 0.308209 Vertex 21313 0.490251 0.226779 0.515668 Vertex 21314 0.494107 0.564134 0.384535 Vertex 21315 0.38205 0.345575 0.41907 Vertex 21316 0.376293 0.303477 0.243599 Vertex 21317 0.482895 0.225896 0.492576 Vertex 21318 0.58592 0.493364 0.300729 Vertex 21319 0.542969 0.0141433 0.729867 Vertex 21320 0.615291 0.504001 0.363539 Vertex 21321 0.593773 0.470591 0.41461 Vertex 21322 0.518947 0.387727 0.532394 Vertex 21323 0.518188 0.384363 0.53038 Vertex 21324 0.462717 0.122664 0.793098 Vertex 21325 0.549413 0.0553532 0.770686 Vertex 21326 0.533623 0.0678382 0.706544 Vertex 21327 0.322018 0.990725 0.202869 Vertex 21328 0.649458 0.421267 0.220151 Vertex 21329 0.381659 0.379986 0.605047 Vertex 21330 0.548791 0.0661265 0.755915 Vertex 21331 0.323167 0.995564 0.209941 Vertex 21332 0.474852 0.530896 0.409617 Vertex 21333 0.4776 0.53147 0.407686 Vertex 21334 0.484293 0.268533 0.450786 Vertex 21335 0.415484 0.252625 0.195874 Vertex 21336 0.36613 0.376059 0.264968 Vertex 21337 0.365952 0.375574 0.260822 Vertex 21338 0.548489 0.538968 0.553106 Vertex 21339 0.42053 0.247455 0.200399 Vertex 21340 0.402667 0.182673 0.577981 Vertex 21341 0.386652 0.198913 0.63947 Vertex 21342 0.468029 0.116025 0.643219 Vertex 21343 0.470049 0.512897 0.60253 Vertex 21344 0.598707 0.43053 0.369385 Vertex 21345 0.475533 0.55204 0.577667 Vertex 21346 0.471921 0.54986 0.577957 Vertex 21347 0.445583 0.594546 0.484379 Vertex 21348 0.59253 0.445023 0.204752 Vertex 21349 0.593631 0.443797 0.194328 Vertex 21350 0.336144 0.91899 0.308275 Vertex 21351 0.488504 0.28751 0.445414 Vertex 21352 0.55238 0.0335104 0.726006 Vertex 21353 0.520623 0.474701 0.410014 Vertex 21354 0.474728 0.279621 0.620689 Vertex 21355 0.662903 0.402504 0.219541 Vertex 21356 0.34129 0.29284 0.224273 Vertex 21357 0.458891 0.825584 0.446432 Vertex 21358 0.524401 0.663202 0.518037 Vertex 21359 0.393096 0.180535 0.669119 Vertex 21360 0.425807 0.149731 0.712692 Vertex 21361 0.534494 0.00979016 0.733581 Vertex 21362 0.472951 0.14074 0.648366 Vertex 21363 0.385343 0.221887 0.476792 Vertex 21364 0.520297 0.0928436 0.666009 Vertex 21365 0.516974 0.0826922 0.679981 Vertex 21366 0.519154 0.0815254 0.680834 Vertex 21367 0.398645 0.262741 0.654442 Vertex 21368 0.381796 0.477088 0.548948 Vertex 21369 0.369767 0.184686 0.51372 Vertex 21370 0.549816 0.0375082 0.795106 Vertex 21371 0.568306 0.502745 0.41095 Vertex 21372 0.371105 0.219897 0.230942 Vertex 21373 0.371543 0.21854 0.230261 Vertex 21374 0.369583 0.217693 0.230042 Vertex 21375 0.495528 0.111595 0.641555 Vertex 21376 0.436604 0.423488 0.398465 Vertex 21377 0.487533 0.591579 0.399786 Vertex 21378 0.320739 0.950238 0.224765 Vertex 21379 0.447738 0.57072 0.540692 Vertex 21380 0.662974 0.401995 0.227732 Vertex 21381 0.419102 0.410506 0.3302 Vertex 21382 0.537639 0.52319 0.425111 Vertex 21383 0.632982 0.51186 0.199469 Vertex 21384 0.508718 0.0872408 0.694 Vertex 21385 0.417284 0.522811 0.480642 Vertex 21386 0.448668 0.372565 0.638054 Vertex 21387 0.416716 0.158177 0.708522 Vertex 21388 0.368689 0.268646 0.580978 Vertex 21389 0.374517 0.41079 0.298591 Vertex 21390 0.377922 0.412063 0.298212 Vertex 21391 0.432363 0.395918 0.643941 Vertex 21392 0.456409 0.7251 0.449536 Vertex 21393 0.439867 0.248746 0.760286 Vertex 21394 0.555276 0.146207 0.418555 Vertex 21395 0.363335 0.41721 0.538678 Vertex 21396 0.440193 0.566041 0.493494 Vertex 21397 0.412913 0.365807 0.345801 Vertex 21398 0.518171 0.173285 0.447611 Vertex 21399 0.374517 0.350302 0.473908 Vertex 21400 0.402868 0.340162 0.242041 Vertex 21401 0.379847 0.476413 0.459966 Vertex 21402 0.569076 0.500791 0.349911 Vertex 21403 0.569538 0.500477 0.345895 Vertex 21404 0.440371 0.515698 0.437241 Vertex 21405 0.449107 0.479232 0.612616 Vertex 21406 0.511727 0.13923 0.687277 Vertex 21407 0.520374 0.391103 0.536611 Vertex 21408 0.371383 0.369023 0.567586 Vertex 21409 0.507889 0.430376 0.414349 Vertex 21410 0.507088 0.429451 0.413202 Vertex 21411 0.507226 0.429778 0.413331 Vertex 21412 0.468012 0.81789 0.409712 Vertex 21413 0.507848 0.0912623 0.725366 Vertex 21414 0.42066 0.378748 0.427024 Vertex 21415 0.373516 0.873717 0.347708 Vertex 21416 0.396211 0.895352 0.331154 Vertex 21417 0.487361 0.168269 0.699822 Vertex 21418 0.49047 0.396558 0.410405 Vertex 21419 0.490755 0.215532 0.543381 Vertex 21420 0.478453 0.210444 0.737525 Vertex 21421 0.463741 0.468518 0.617692 Vertex 21422 0.557195 0.012023 0.768223 Vertex 21423 0.463007 0.0698223 0.655917 Vertex 21424 0.545498 0.620571 0.479457 Vertex 21425 0.463167 0.321843 0.420296 Vertex 21426 0.426695 0.80473 0.402202 Vertex 21427 0.461278 0.104156 0.660158 Vertex 21428 0.401121 0.377789 0.239672 Vertex 21429 0.466158 0.293823 0.63286 Vertex 21430 0.359858 0.933157 0.295979 Vertex 21431 0.473792 0.169382 0.675154 Vertex 21432 0.493781 0.231256 0.526134 Vertex 21433 0.487314 0.400484 0.401077 Vertex 21434 0.398249 0.252566 0.45473 Vertex 21435 0.397123 0.249765 0.457419 Vertex 21436 0.364087 0.121112 0.474186 Vertex 21437 0.364845 0.118068 0.476751 Vertex 21438 0.659823 0.413579 0.23282 Vertex 21439 0.37428 0.352221 0.472261 Vertex 21440 0.462225 0.78204 0.382414 Vertex 21441 0.367599 0.29419 0.480737 Vertex 21442 0.381535 0.398583 0.575908 Vertex 21443 0.379095 0.396143 0.569665 Vertex 21444 0.510667 0.633061 0.418868 Vertex 21445 0.51518 0.633334 0.424578 Vertex 21446 0.380374 0.284708 0.458254 Vertex 21447 0.403271 0.355721 0.443187 Vertex 21448 0.48546 0.467541 0.606433 Vertex 21449 0.485732 0.473203 0.605948 Vertex 21450 0.428129 0.395533 0.415031 Vertex 21451 0.505224 0.3414 0.450264 Vertex 21452 0.492887 0.310069 0.615276 Vertex 21453 0.516429 0.103854 0.687775 Vertex 21454 0.360255 0.427024 0.456323 Vertex 21455 0.371733 0.356313 0.58619 Vertex 21456 0.366349 0.354075 0.562896 Vertex 21457 0.367374 0.353228 0.571075 Vertex 21458 0.377827 0.354797 0.455168 Vertex 21459 0.504288 0.529474 0.394805 Vertex 21460 0.362369 0.335756 0.225126 Vertex 21461 0.37682 0.2264 0.205895 Vertex 21462 0.59285 0.430305 0.192664 Vertex 21463 0.467846 0.160084 0.799779 Vertex 21464 0.400328 0.174079 0.691968 Vertex 21465 0.419831 0.385536 0.400502 Vertex 21466 0.391977 0.881689 0.323916 Vertex 21467 0.478927 0.191592 0.567622 Vertex 21468 0.41511 0.878017 0.350983 Vertex 21469 0.496831 0.0484711 0.730554 Vertex 21470 0.429657 0.155458 0.735458 Vertex 21471 0.415869 0.415208 0.36971 Vertex 21472 0.382601 0.0736602 0.475596 Vertex 21473 0.65849 0.448073 0.21119 Vertex 21474 0.431741 0.556878 0.534461 Vertex 21475 0.42984 0.554456 0.532394 Vertex 21476 0.389382 0.4287 0.355976 Vertex 21477 0.463866 0.759984 0.478397 Vertex 21478 0.408507 0.373619 0.624728 Vertex 21479 0.405243 0.878046 0.399703 Vertex 21480 0.664715 0.41647 0.223379 Vertex 21481 0.525444 0.126105 0.709689 Vertex 21482 0.518188 0.437323 0.418093 Vertex 21483 0.517614 0.438715 0.417329 Vertex 21484 0.504217 0.541035 0.391689 Vertex 21485 0.500734 0.543949 0.389462 Vertex 21486 0.596338 0.532726 0.28196 Vertex 21487 0.545362 0.0286953 0.726243 Vertex 21488 0.400061 0.278667 0.441718 Vertex 21489 0.395175 0.273663 0.446367 Vertex 21490 0.431267 0.835978 0.355265 Vertex 21491 0.458766 0.0744775 0.657712 Vertex 21492 0.413346 0.387543 0.293533 Vertex 21493 0.404142 0.288286 0.209366 Vertex 21494 0.565967 0.497403 0.364487 Vertex 21495 0.46694 0.367418 0.408966 Vertex 21496 0.417497 0.206405 0.772718 Vertex 21497 0.523448 0.126313 0.710702 Vertex 21498 0.609504 0.502046 0.2385 Vertex 21499 0.365662 0.23067 0.231866 Vertex 21500 0.362849 0.232003 0.230261 Vertex 21501 0.473543 0.0815017 0.734677 Vertex 21502 0.411296 0.50685 0.458491 Vertex 21503 0.491963 0.220293 0.521082 Vertex 21504 0.367321 0.278193 0.580018 Vertex 21505 0.471553 0.414113 0.375817 Vertex 21506 0.539475 0.462181 0.396439 Vertex 21507 0.423142 0.429896 0.38624 Vertex 21508 0.661381 0.424181 0.208122 Vertex 21509 0.431025 0.790486 0.422144 Vertex 21510 0.358573 0.34416 0.242172 Vertex 21511 0.470908 0.534627 0.588458 Vertex 21512 0.388494 0.0786411 0.471485 Vertex 21513 0.357211 0.375443 0.387271 Vertex 21514 0.35753 0.275445 0.515698 Vertex 21515 0.446039 0.413141 0.640305 Vertex 21516 0.448035 0.413171 0.637764 Vertex 21517 0.434839 0.205428 0.7935 Vertex 21518 0.411296 0.162749 0.706479 Vertex 21519 0.404242 0.519086 0.513903 Vertex 21520 0.65746 0.406745 0.226376 Vertex 21521 0.491649 0.391192 0.424359 Vertex 21522 0.529436 0.105376 0.762442 Vertex 21523 0.388915 0.298964 0.238103 Vertex 21524 0.467183 0.514715 0.600664 Vertex 21525 0.489191 0.736181 0.511771 Vertex 21526 0.457262 0.225215 0.673276 Vertex 21527 0.444209 0.584644 0.493672 Vertex 21528 0.444137 0.578141 0.490556 Vertex 21529 0.366776 0.906914 0.35138 Vertex 21530 0.421785 0.221259 0.780636 Vertex 21531 0.46235 0.231487 0.760357 Vertex 21532 0.480822 0.0753185 0.729222 Vertex 21533 0.390911 0.49209 0.464035 Vertex 21534 0.394452 0.497521 0.466102 Vertex 21535 0.470683 0.0971613 0.768637 Vertex 21536 0.409786 0.275812 0.438236 Vertex 21537 0.404337 0.265625 0.445195 Vertex 21538 0.562437 0.466866 0.328459 Vertex 21539 0.335439 0.25439 0.229989 Vertex 21540 0.419695 0.167031 0.580107 Vertex 21541 0.415845 0.396167 0.370936 Vertex 21542 0.557385 0.488454 0.385109 Vertex 21543 0.553061 0.472628 0.368626 Vertex 21544 0.523928 0.319012 0.50772 Vertex 21545 0.513142 0.295671 0.553082 Vertex 21546 0.550597 0.567693 0.468305 Vertex 21547 0.534357 0.066239 0.799192 Vertex 21548 0.351791 0.13002 0.456714 Vertex 21549 0.349487 0.12469 0.457887 Vertex 21550 0.458832 0.232233 0.621625 Vertex 21551 0.42785 0.427859 0.388983 Vertex 21552 0.520717 0.119045 0.790895 Vertex 21553 0.547458 0.431312 0.542682 Vertex 21554 0.437202 0.262717 0.729311 Vertex 21555 0.385681 0.865567 0.335791 Vertex 21556 0.43828 0.161239 0.574457 Vertex 21557 0.46646 0.417873 0.375414 Vertex 21558 0.388589 0.901897 0.363059 Vertex 21559 0.476724 0.382645 0.405211 Vertex 21560 0.47185 0.378257 0.405335 Vertex 21561 0.662305 0.418797 0.233685 Vertex 21562 0.550088 0.0583738 0.764426 Vertex 21563 0.47872 0.507389 0.402451 Vertex 21564 0.418741 0.265803 0.667099 Vertex 21565 0.418463 0.266277 0.671126 Vertex 21566 0.530638 0.100454 0.754121 Vertex 21567 0.528073 0.569908 0.561824 Vertex 21568 0.424682 0.253561 0.211386 Vertex 21569 0.329498 0.275895 0.214513 Vertex 21570 0.558901 0.547917 0.51796 Vertex 21571 0.389963 0.196123 0.694023 Vertex 21572 0.414092 0.531144 0.515805 Vertex 21573 0.505265 0.674615 0.536664 Vertex 21574 0.504637 0.676374 0.536534 Vertex 21575 0.439097 0.216444 0.468767 Vertex 21576 0.436213 0.218961 0.467867 Vertex 21577 0.544355 0.148209 0.428931 Vertex 21578 0.555395 0.149529 0.429654 Vertex 21579 0.402318 0.413532 0.297164 Vertex 21580 0.420921 0.143731 0.653145 Vertex 21581 0.331719 0.252667 0.232352 Vertex 21582 0.447401 0.242 0.64634 Vertex 21583 0.408033 0.349704 0.239726 Vertex 21584 0.493556 0.615116 0.402273 Vertex 21585 0.526634 0.708433 0.484598 Vertex 21586 0.444321 0.769822 0.422333 Vertex 21587 0.344572 0.0935425 0.446622 Vertex 21588 0.448396 0.622081 0.469187 Vertex 21589 0.489013 0.481394 0.388479 Vertex 21590 0.607425 0.517493 0.327073 Vertex 21591 0.552753 0.0372654 0.784883 Vertex 21592 0.506787 0.0621524 0.729814 Vertex 21593 0.546096 0.0414823 0.795017 Vertex 21594 0.510418 0.386483 0.571679 Vertex 21595 0.612157 0.454659 0.356248 Vertex 21596 0.44014 0.267544 0.436749 Vertex 21597 0.51332 0.587125 0.413402 Vertex 21598 0.507237 0.369793 0.453072 Vertex 21599 0.389779 0.302488 0.239264 Vertex 21600 0.53399 0.123452 0.783088 Vertex 21601 0.506396 0.0371529 0.737887 Vertex 21602 0.400008 0.252217 0.214975 Vertex 21603 0.638501 0.438514 0.193866 Vertex 21604 0.453513 0.133858 0.803048 Vertex 21605 0.494196 0.611485 0.401604 Vertex 21606 0.592814 0.428439 0.347962 Vertex 21607 0.612353 0.470994 0.29727 Vertex 21608 0.514327 0.746735 0.459125 Vertex 21609 0.493852 0.58767 0.569387 Vertex 21610 0.389074 0.197675 0.57531 Vertex 21611 0.543395 0.579503 0.517866 Vertex 21612 0.378354 0.264459 0.232352 Vertex 21613 0.562383 0.492979 0.364475 Vertex 21614 0.563669 0.494057 0.362366 Vertex 21615 0.395637 0.326534 0.209052 Vertex 21616 0.336013 0.943338 0.254663 Vertex 21617 0.500344 0.500459 0.394562 Vertex 21618 0.53633 0.0532329 0.796788 Vertex 21619 0.525598 0.470242 0.592793 Vertex 21620 0.385491 0.352825 0.445224 Vertex 21621 0.543295 0.513157 0.426432 Vertex 21622 0.461331 0.358623 0.410719 Vertex 21623 0.403544 0.248189 0.211664 Vertex 21624 0.476552 0.725858 0.493174 Vertex 21625 0.531597 0.652855 0.513767 Vertex 21626 0.489718 0.415741 0.383723 Vertex 21627 0.547245 0.0464633 0.792399 Vertex 21628 0.387487 0.233584 0.702297 Vertex 21629 0.409952 0.494092 0.582855 Vertex 21630 0.518443 0.12068 0.712899 Vertex 21631 0.506669 0.0336763 0.727208 Vertex 21632 0.682513 0.450946 0.205025 Vertex 21633 0.436669 0.859544 0.399945 Vertex 21634 0.42018 0.541586 0.522 Vertex 21635 0.434673 0.419615 0.398192 Vertex 21636 0.635972 0.481086 0.186848 Vertex 21637 0.418131 0.190958 0.479676 Vertex 21638 0.495339 0.234887 0.549801 Vertex 21639 0.547784 0.149417 0.420142 Vertex 21640 0.547239 0.146385 0.421954 Vertex 21641 0.516743 0.344758 0.476751 Vertex 21642 0.559766 0.399963 0.430104 Vertex 21643 0.483203 0.0820407 0.728861 Vertex 21644 0.410272 0.511031 0.466564 Vertex 21645 0.453513 0.238506 0.714729 Vertex 21646 0.439891 0.777622 0.418324 Vertex 21647 0.406552 0.835522 0.380821 Vertex 21648 0.538254 0.601677 0.528183 Vertex 21649 0.540357 0.598633 0.526122 Vertex 21650 0.539291 0.601908 0.524043 Vertex 21651 0.491418 0.0778238 0.727599 Vertex 21652 0.445612 0.76416 0.434919 Vertex 21653 0.524265 0.0388408 0.657795 Vertex 21654 0.432097 0.27894 0.431608 Vertex 21655 0.525017 0.133343 0.722429 Vertex 21656 0.491009 0.124145 0.643604 Vertex 21657 0.490755 0.130553 0.645748 Vertex 21658 0.375079 0.339807 0.402285 Vertex 21659 0.372852 0.340298 0.402682 Vertex 21660 0.50905 0.439088 0.405412 Vertex 21661 0.558948 0.462128 0.534461 Vertex 21662 0.43138 0.244855 0.76808 Vertex 21663 0.399273 0.313516 0.229716 Vertex 21664 0.399563 0.313558 0.233904 Vertex 21665 0.361623 0.253685 0.216829 Vertex 21666 0.321378 0.956936 0.217119 Vertex 21667 0.358626 0.399638 0.360299 Vertex 21668 0.356263 0.372014 0.401782 Vertex 21669 0.495919 0.160107 0.676161 Vertex 21670 0.611891 0.508946 0.198409 Vertex 21671 0.595521 0.521627 0.206458 Vertex 21672 0.607437 0.487826 0.215662 Vertex 21673 0.594549 0.518334 0.23943 Vertex 21674 0.397911 0.366459 0.233578 Vertex 21675 0.399196 0.365724 0.237522 Vertex 21676 0.497797 0.196899 0.464674 Vertex 21677 0.481326 0.176892 0.490094 Vertex 21678 0.479123 0.217628 0.492386 Vertex 21679 0.47673 0.215857 0.490325 Vertex 21680 0.506515 0.0876495 0.727552 Vertex 21681 0.346645 0.258785 0.220655 Vertex 21682 0.346046 0.261284 0.223296 Vertex 21683 0.375559 0.361833 0.469312 Vertex 21684 0.570059 0.421907 0.353322 Vertex 21685 0.49342 0.633014 0.402368 Vertex 21686 0.451156 0.177259 0.800246 Vertex 21687 0.530863 0.0228259 0.729773 Vertex 21688 0.585654 0.418329 0.358262 Vertex 21689 0.369867 0.409996 0.385234 Vertex 21690 0.445239 0.128611 0.634039 Vertex 21691 0.463771 0.595986 0.540804 Vertex 21692 0.51457 0.497332 0.600126 Vertex 21693 0.383519 0.397843 0.594582 Vertex 21694 0.546143 0.600753 0.472018 Vertex 21695 0.546416 0.602637 0.468032 Vertex 21696 0.422686 0.274971 0.643396 Vertex 21697 0.388648 0.284163 0.615276 Vertex 21698 0.498111 0.205984 0.496112 Vertex 21699 0.361279 0.446889 0.510302 Vertex 21700 0.364033 0.895056 0.298455 Vertex 21701 0.399794 0.887949 0.384647 Vertex 21702 0.404793 0.886184 0.385885 Vertex 21703 0.461295 0.233448 0.754133 Vertex 21704 0.434181 0.479984 0.424661 Vertex 21705 0.505769 0.611308 0.411986 Vertex 21706 0.422407 0.228058 0.778901 Vertex 21707 0.371869 0.425987 0.408012 Vertex 21708 0.607396 0.488549 0.266994 Vertex 21709 0.604091 0.489597 0.267402 Vertex 21710 0.505875 0.161754 0.719047 Vertex 21711 0.467011 0.613238 0.435351 Vertex 21712 0.593039 0.505659 0.261136 Vertex 21713 0.480805 0.0554894 0.685353 Vertex 21714 0.545634 0.0125916 0.728529 Vertex 21715 0.506924 0.0340553 0.719272 Vertex 21716 0.563207 0.485309 0.341068 Vertex 21717 0.510667 0.589246 0.560841 Vertex 21718 0.517229 0.296477 0.513773 Vertex 21719 0.503601 0.405252 0.44067 Vertex 21720 0.440904 0.297999 0.425597 Vertex 21721 0.443196 0.296897 0.426076 Vertex 21722 0.356287 0.899078 0.288434 Vertex 21723 0.389827 0.281854 0.231025 Vertex 21724 0.395791 0.319243 0.206375 Vertex 21725 0.385195 0.351954 0.341696 Vertex 21726 0.488593 0.186303 0.459711 Vertex 21727 0.488249 0.192344 0.459871 Vertex 21728 0.344447 0.9309 0.264192 Vertex 21729 0.420198 0.385399 0.628205 Vertex 21730 0.503145 0.10617 0.800702 Vertex 21731 0.477962 0.798428 0.411672 Vertex 21732 0.476783 0.803705 0.41262 Vertex 21733 0.424563 0.393259 0.407479 Vertex 21734 0.486988 0.712532 0.507708 Vertex 21735 0.45709 0.202176 0.592462 Vertex 21736 0.419558 0.877306 0.360803 Vertex 21737 0.503619 0.387016 0.44908 Vertex 21738 0.505508 0.388307 0.44889 Vertex 21739 0.55331 0.0138709 0.724762 Vertex 21740 0.389069 0.298324 0.193647 Vertex 21741 0.377898 0.250801 0.235757 Vertex 21742 0.348741 0.930498 0.319889 Vertex 21743 0.647202 0.431401 0.225636 Vertex 21744 0.48485 0.46744 0.384866 Vertex 21745 0.367415 0.381502 0.252536 Vertex 21746 0.370856 0.227744 0.233252 Vertex 21747 0.513071 0.44061 0.413929 Vertex 21748 0.438031 0.233471 0.78201 Vertex 21749 0.539534 0.118406 0.440913 Vertex 21750 0.591138 0.444934 0.185048 Vertex 21751 0.438623 0.555871 0.494228 Vertex 21752 0.379036 0.23542 0.237114 Vertex 21753 0.446127 0.144525 0.630242 Vertex 21754 0.402637 0.221857 0.470153 Vertex 21755 0.477482 0.365718 0.416091 Vertex 21756 0.349197 0.156654 0.458153 Vertex 21757 0.368748 0.419798 0.351936 Vertex 21758 0.364182 0.414711 0.356153 Vertex 21759 0.497335 0.726296 0.412134 Vertex 21760 0.684882 0.451579 0.20644 Vertex 21761 0.685285 0.451283 0.20236 Vertex 21762 0.50273 0.61896 0.561362 Vertex 21763 0.418208 0.405951 0.314778 Vertex 21764 0.652805 0.415558 0.218671 Vertex 21765 0.510134 0.73993 0.437774 Vertex 21766 0.414151 0.17643 0.561403 Vertex 21767 0.419831 0.1694 0.505416 Vertex 21768 0.35544 0.191118 0.464354 Vertex 21769 0.448212 0.431448 0.634051 Vertex 21770 0.538343 0.648502 0.453587 Vertex 21771 0.597345 0.443667 0.209751 Vertex 21772 0.428211 0.131317 0.675485 Vertex 21773 0.470653 0.0573136 0.676427 Vertex 21774 0.33445 0.282126 0.223296 Vertex 21775 0.420873 0.811381 0.397796 Vertex 21776 0.354889 0.907346 0.334909 Vertex 21777 0.548068 0.511671 0.42594 Vertex 21778 0.456042 0.120544 0.76859 Vertex 21779 0.473289 0.529403 0.411672 Vertex 21780 0.415116 0.184793 0.758267 Vertex 21781 0.55803 0.511226 0.424347 Vertex 21782 0.432713 0.153432 0.733421 Vertex 21783 0.353444 0.399975 0.495656 Vertex 21784 0.354972 0.404358 0.502479 Vertex 21785 0.486739 0.564062 0.576062 Vertex 21786 0.468213 0.0600617 0.677298 Vertex 21787 0.469747 0.784936 0.389516 Vertex 21788 0.379847 0.416351 0.576245 Vertex 21789 0.360409 0.296992 0.565472 Vertex 21790 0.491033 0.355934 0.433527 Vertex 21791 0.440631 0.44138 0.627571 Vertex 21792 0.468557 0.770432 0.387828 Vertex 21793 0.616978 0.485149 0.185356 Vertex 21794 0.408554 0.229853 0.466238 Vertex 21795 0.371336 0.424679 0.33957 Vertex 21796 0.522755 0.642099 0.530842 Vertex 21797 0.488646 0.0381952 0.642887 Vertex 21798 0.391307 0.266318 0.198024 Vertex 21799 0.404177 0.345161 0.243972 Vertex 21800 0.508967 0.165402 0.738378 Vertex 21801 0.602213 0.521437 0.205315 Vertex 21802 0.528032 0.435067 0.584188 Vertex 21803 0.515073 0.126621 0.693976 Vertex 21804 0.40715 0.50695 0.463407 Vertex 21805 0.481207 0.478687 0.388236 Vertex 21806 0.354314 0.298378 0.524096 Vertex 21807 0.473342 0.203426 0.700071 Vertex 21808 0.665272 0.45874 0.21244 Vertex 21809 0.649518 0.460309 0.193102 Vertex 21810 0.519432 0.298751 0.490284 Vertex 21811 0.601343 0.464005 0.20692 Vertex 21812 0.417539 0.837133 0.353701 Vertex 21813 0.478252 0.316158 0.429381 Vertex 21814 0.483091 0.317632 0.432656 Vertex 21815 0.404918 0.364907 0.246146 Vertex 21816 0.399244 0.168784 0.65831 Vertex 21817 0.356577 0.361442 0.439077 Vertex 21818 0.560968 0.535894 0.514792 Vertex 21819 0.474604 0.371132 0.413887 Vertex 21820 0.47795 0.369894 0.416665 Vertex 21821 0.475759 0.369118 0.414788 Vertex 21822 0.454289 0.539282 0.432046 Vertex 21823 0.545308 0.051924 0.796166 Vertex 21824 0.509453 0.0930569 0.693899 Vertex 21825 0.515725 0.351587 0.471657 Vertex 21826 0.514404 0.373779 0.446687 Vertex 21827 0.413464 0.506607 0.455737 Vertex 21828 0.454419 0.231203 0.633867 Vertex 21829 0.520581 0.32195 0.54893 Vertex 21830 0.40975 0.26296 0.197183 Vertex 21831 0.529068 0.0128936 0.74574 Vertex 21832 0.584824 0.49026 0.294161 Vertex 21833 0.525533 0.35979 0.517854 Vertex 21834 0.430693 0.388071 0.645262 Vertex 21835 0.499337 0.0838886 0.712467 Vertex 21836 0.52539 0.034843 0.643325 Vertex 21837 0.500853 0.0438988 0.677245 Vertex 21838 0.443071 0.417086 0.402243 Vertex 21839 0.376086 0.349929 0.372743 Vertex 21840 0.37457 0.351688 0.366625 Vertex 21841 0.577243 0.509704 0.352055 Vertex 21842 0.574874 0.507442 0.358126 Vertex 21843 0.476132 0.115634 0.801721 Vertex 21844 0.309533 0.992401 0.204231 Vertex 21845 0.381582 0.229337 0.477959 Vertex 21846 0.346816 0.258092 0.218671 Vertex 21847 0.460525 0.20612 0.629253 Vertex 21848 0.482469 0.0563304 0.646701 Vertex 21849 0.480165 0.0543167 0.647613 Vertex 21850 0.491217 0.379684 0.619493 Vertex 21851 0.356133 0.89277 0.33344 Vertex 21852 0.33413 0.913085 0.285887 Vertex 21853 0.586287 0.448861 0.457751 Vertex 21854 0.51669 0.108266 0.671186 Vertex 21855 0.358561 0.320659 0.522628 Vertex 21856 0.358194 0.323733 0.525387 Vertex 21857 0.492455 0.715908 0.521159 Vertex 21858 0.543348 0.429932 0.551015 Vertex 21859 0.65313 0.46869 0.191823 Vertex 21860 0.39001 0.501632 0.493411 Vertex 21861 0.493455 0.197906 0.465592 Vertex 21862 0.502138 0.745243 0.493032 Vertex 21863 0.560701 0.431223 0.352345 Vertex 21864 0.543378 0.516841 0.425354 Vertex 21865 0.471666 0.064332 0.698927 Vertex 21866 0.452411 0.14289 0.787252 Vertex 21867 0.516376 0.372689 0.567598 Vertex 21868 0.531597 0.169601 0.454049 Vertex 21869 0.432032 0.352049 0.649224 Vertex 21870 0.46476 0.229 0.760357 Vertex 21871 0.451168 0.249344 0.628004 Vertex 21872 0.391461 0.493707 0.553153 Vertex 21873 0.41273 0.233471 0.766333 Vertex 21874 0.399333 0.364718 0.381029 Vertex 21875 0.399487 0.363243 0.387395 Vertex 21876 0.352597 0.377048 0.426645 Vertex 21877 0.48848 0.625072 0.409984 Vertex 21878 0.543946 0.444022 0.380182 Vertex 21879 0.435917 0.147285 0.596673 Vertex 21880 0.535583 0.615524 0.528219 Vertex 21881 0.526948 0.0233649 0.651487 Vertex 21882 0.424699 0.803622 0.416624 Vertex 21883 0.500805 0.649254 0.550269 Vertex 21884 0.500018 0.495478 0.394751 Vertex 21885 0.36892 0.464935 0.50345 Vertex 21886 0.502843 0.383469 0.449181 Vertex 21887 0.470209 0.461672 0.613209 Vertex 21888 0.427667 0.377789 0.646074 Vertex 21889 0.431125 0.374158 0.648638 Vertex 21890 0.377827 0.388231 0.584359 Vertex 21891 0.581703 0.422055 0.348454 Vertex 21892 0.415484 0.152668 0.6318 Vertex 21893 0.434792 0.831713 0.356094 Vertex 21894 0.552872 0.0441475 0.725461 Vertex 21895 0.610499 0.446427 0.205345 Vertex 21896 0.426636 0.221898 0.784877 Vertex 21897 0.50218 0.38993 0.596536 Vertex 21898 0.38542 0.431424 0.338605 Vertex 21899 0.562437 0.404589 0.470188 Vertex 21900 0.602397 0.530321 0.258743 Vertex 21901 0.456895 0.719118 0.446877 Vertex 21902 0.455391 0.388165 0.400271 Vertex 21903 0.332069 0.955112 0.280391 Vertex 21904 0.516471 0.333345 0.475051 Vertex 21905 0.549762 0.504475 0.557257 Vertex 21906 0.550461 0.514839 0.555167 Vertex 21907 0.424516 0.124867 0.683528 Vertex 21908 0.425985 0.131548 0.682226 Vertex 21909 0.479691 0.682391 0.51006 Vertex 21910 0.525829 0.674662 0.509639 Vertex 21911 0.462865 0.620097 0.440231 Vertex 21912 0.385077 0.209769 0.596785 Vertex 21913 0.623108 0.529077 0.235917 Vertex 21914 0.487515 0.492653 0.39115 Vertex 21915 0.462764 0.744923 0.415954 Vertex 21916 0.52009 0.415907 0.577951 Vertex 21917 0.489736 0.787151 0.427125 Vertex 21918 0.333627 0.921898 0.262184 Vertex 21919 0.430296 0.791966 0.418596 Vertex 21920 0.456267 0.736068 0.435025 Vertex 21921 0.404858 0.894316 0.357267 Vertex 21922 0.495712 0.550026 0.3785 Vertex 21923 0.423142 0.212298 0.786192 Vertex 21924 0.553713 0.0527413 0.741499 Vertex 21925 0.496127 0.0995836 0.641827 Vertex 21926 0.373208 0.877117 0.313161 Vertex 21927 0.489612 0.486286 0.389622 Vertex 21928 0.364614 0.282736 0.482756 Vertex 21929 0.580655 0.497107 0.316993 Vertex 21930 0.485596 0.228425 0.582097 Vertex 21931 0.311742 0.996138 0.211445 Vertex 21932 0.516773 0.0483052 0.659163 Vertex 21933 0.402116 0.884147 0.390043 Vertex 21934 0.37213 0.159728 0.468157 Vertex 21935 0.478045 0.425466 0.614458 Vertex 21936 0.466827 0.515633 0.599752 Vertex 21937 0.516311 0.291821 0.504646 Vertex 21938 0.484074 0.168636 0.679341 Vertex 21939 0.522092 0.389249 0.435517 Vertex 21940 0.428046 0.237771 0.774631 Vertex 21941 0.685918 0.453309 0.212884 Vertex 21942 0.375103 0.897609 0.363823 Vertex 21943 0.336173 0.274752 0.203331 Vertex 21944 0.371443 0.270589 0.471989 Vertex 21945 0.551646 0.549534 0.532447 Vertex 21946 0.50048 0.356497 0.444964 Vertex 21947 0.5181 0.120568 0.710696 Vertex 21948 0.428596 0.552709 0.532353 Vertex 21949 0.415324 0.250067 0.223267 Vertex 21950 0.361522 0.178971 0.454049 Vertex 21951 0.512041 0.0238802 0.663344 Vertex 21952 0.416206 0.379702 0.410689 Vertex 21953 0.360486 0.225026 0.214655 Vertex 21954 0.533256 0.100786 0.79414 Vertex 21955 0.405877 0.369568 0.362384 Vertex 21956 0.433352 0.301481 0.641128 Vertex 21957 0.364158 0.345167 0.411139 Vertex 21958 0.622658 0.519258 0.294741 Vertex 21959 0.446127 0.168364 0.56058 Vertex 21960 0.462948 0.791345 0.382865 Vertex 21961 0.363826 0.381591 0.495235 Vertex 21962 0.63894 0.437264 0.21138 Vertex 21963 0.606199 0.517812 0.206032 Vertex 21964 0.589865 0.502384 0.271661 Vertex 21965 0.443575 0.256238 0.633672 Vertex 21966 0.407814 0.339795 0.216876 Vertex 21967 0.404142 0.359855 0.312574 Vertex 21968 0.405705 0.36072 0.312574 Vertex 21969 0.529288 0.0807673 0.795106 Vertex 21970 0.390152 0.421018 0.596625 Vertex 21971 0.518188 0.142576 0.710329 Vertex 21972 0.519776 0.37815 0.492896 Vertex 21973 0.355072 0.282777 0.1962 Vertex 21974 0.484903 0.443412 0.608678 Vertex 21975 0.455325 0.129096 0.800762 Vertex 21976 0.607218 0.471497 0.291644 Vertex 21977 0.432097 0.155334 0.754067 Vertex 21978 0.494154 0.0690879 0.695688 Vertex 21979 0.362778 0.232494 0.491018 Vertex 21980 0.494705 0.326398 0.439088 Vertex 21981 0.411356 0.29483 0.637403 Vertex 21982 0.518147 0.0952305 0.685714 Vertex 21983 0.483316 0.0727125 0.737691 Vertex 21984 0.364957 0.279419 0.196555 Vertex 21985 0.373563 0.354163 0.493121 Vertex 21986 0.377614 0.893013 0.367957 Vertex 21987 0.340509 0.0924883 0.460742 Vertex 21988 0.342854 0.0918605 0.459498 Vertex 21989 0.412013 0.170188 0.604935 Vertex 21990 0.413665 0.169412 0.594576 Vertex 21991 0.421205 0.85387 0.352943 Vertex 21992 0.449687 0.363059 0.637965 Vertex 21993 0.569639 0.408735 0.455684 Vertex 21994 0.38542 0.417062 0.299829 Vertex 21995 0.413648 0.452728 0.601079 Vertex 21996 0.348119 0.929982 0.271945 Vertex 21997 0.547156 0.563897 0.451236 Vertex 21998 0.367504 0.209887 0.478208 Vertex 21999 0.527706 0.128184 0.766558 Vertex 22000 0.507018 0.0337533 0.671748 Vertex 22001 0.365982 0.302133 0.194056 Vertex 22002 0.366385 0.167931 0.478219 Vertex 22003 0.421614 0.271963 0.6456 Vertex 22004 0.359041 0.888654 0.333422 Vertex 22005 0.516216 0.728476 0.490852 Vertex 22006 0.50154 0.409226 0.423393 Vertex 22007 0.421809 0.862346 0.35395 Vertex 22008 0.393303 0.219257 0.718839 Vertex 22009 0.432576 0.164123 0.569553 Vertex 22010 0.546327 0.571347 0.532311 Vertex 22011 0.641919 0.438656 0.221336 Vertex 22012 0.491418 0.408219 0.399359 Vertex 22013 0.552155 0.447978 0.349816 Vertex 22014 0.552481 0.507306 0.41612 Vertex 22015 0.358768 0.202709 0.473025 Vertex 22016 0.497181 0.240573 0.526163 Vertex 22017 0.52269 0.0220915 0.644279 Vertex 22018 0.492247 0.511292 0.391026 Vertex 22019 0.534535 0.63549 0.517895 Vertex 22020 0.52202 0.392708 0.468115 Vertex 22021 0.361724 0.40569 0.366477 Vertex 22022 0.365354 0.409309 0.372731 Vertex 22023 0.499331 0.716974 0.517812 Vertex 22024 0.35631 0.404174 0.44282 Vertex 22025 0.406919 0.502579 0.455696 Vertex 22026 0.473869 0.467304 0.386329 Vertex 22027 0.477903 0.770124 0.494086 Vertex 22028 0.481859 0.77074 0.491397 Vertex 22029 0.431285 0.141409 0.714705 Vertex 22030 0.508232 0.516486 0.396463 Vertex 22031 0.51473 0.159604 0.743703 Vertex 22032 0.403437 0.214009 0.745817 Vertex 22033 0.468095 0.282588 0.4347 Vertex 22034 0.398995 0.266526 0.225671 Vertex 22035 0.358342 0.259519 0.214602 Vertex 22036 0.498857 0.18458 0.511748 Vertex 22037 0.369595 0.926062 0.323058 Vertex 22038 0.362671 0.92647 0.326309 Vertex 22039 0.36459 0.231037 0.206215 Vertex 22040 0.444499 0.243617 0.675349 Vertex 22041 0.390069 0.207293 0.7044 Vertex 22042 0.531692 0.526637 0.420201 Vertex 22043 0.525343 0.13628 0.790569 Vertex 22044 0.479016 0.631409 0.422985 Vertex 22045 0.477749 0.630023 0.423873 Vertex 22046 0.432831 0.846414 0.439077 Vertex 22047 0.43157 0.847675 0.438123 Vertex 22048 0.428816 0.84931 0.437389 Vertex 22049 0.371934 0.360536 0.526661 Vertex 22050 0.526794 0.150359 0.780779 Vertex 22051 0.529175 0.142606 0.783035 Vertex 22052 0.540274 0.147966 0.451467 Vertex 22053 0.464067 0.41567 0.377546 Vertex 22054 0.445411 0.469685 0.408735 Vertex 22055 0.482878 0.0967289 0.778818 Vertex 22056 0.623944 0.486256 0.27875 Vertex 22057 0.43183 0.802663 0.397582 Vertex 22058 0.366533 0.37353 0.485007 Vertex 22059 0.369157 0.374123 0.487524 Vertex 22060 0.549999 0.143773 0.416867 Vertex 22061 0.355025 0.381473 0.41185 Vertex 22062 0.355659 0.375361 0.407988 Vertex 22063 0.498922 0.6967 0.532045 Vertex 22064 0.592305 0.423447 0.360803 Vertex 22065 0.527665 0.344971 0.502633 Vertex 22066 0.496446 0.245009 0.489739 Vertex 22067 0.423088 0.149855 0.706431 Vertex 22068 0.409016 0.459551 0.59765 Vertex 22069 0.491608 0.190301 0.785013 Vertex 22070 0.613543 0.452693 0.207548 Vertex 22071 0.407452 0.244801 0.195714 Vertex 22072 0.369364 0.307191 0.245411 Vertex 22073 0.369524 0.366542 0.233797 Vertex 22074 0.369091 0.363195 0.233856 Vertex 22075 0.384893 0.278602 0.195602 Vertex 22076 0.512704 0.434741 0.41843 Vertex 22077 0.365147 0.349567 0.564524 Vertex 22078 0.35326 0.224901 0.527549 Vertex 22079 0.465927 0.351551 0.412975 Vertex 22080 0.509476 0.379803 0.582097 Vertex 22081 0.504815 0.379548 0.59444 Vertex 22082 0.508392 0.38306 0.584105 Vertex 22083 0.400712 0.342176 0.252536 Vertex 22084 0.382234 0.174973 0.52842 Vertex 22085 0.382003 0.174174 0.524102 Vertex 22086 0.546327 0.00124968 0.739592 Vertex 22087 0.54702 0.00111346 0.739557 Vertex 22088 0.584451 0.46455 0.478492 Vertex 22089 0.369974 0.111849 0.472628 Vertex 22090 0.595236 0.435683 0.209206 Vertex 22091 0.669181 0.479759 0.217368 Vertex 22092 0.327295 0.272602 0.22085 Vertex 22093 0.395234 0.35613 0.420864 Vertex 22094 0.473928 0.0529664 0.654644 Vertex 22095 0.489286 0.0884313 0.727107 Vertex 22096 0.445671 0.165835 0.553123 Vertex 22097 0.413233 0.311953 0.433853 Vertex 22098 0.645455 0.425514 0.219056 Vertex 22099 0.491122 0.0597597 0.733172 Vertex 22100 0.493337 0.0565022 0.688012 Vertex 22101 0.473774 0.569683 0.422345 Vertex 22102 0.555691 0.54248 0.52611 Vertex 22103 0.508369 0.702445 0.421628 Vertex 22104 0.387339 0.243184 0.642182 Vertex 22105 0.48594 0.364629 0.628276 Vertex 22106 0.540866 0.0369159 0.725994 Vertex 22107 0.60996 0.455198 0.188104 Vertex 22108 0.512911 0.159657 0.4511 Vertex 22109 0.387546 0.325059 0.6214 Vertex 22110 0.407352 0.506938 0.570909 Vertex 22111 0.405326 0.511694 0.563885 Vertex 22112 0.496695 0.2463 0.507531 Vertex 22113 0.413363 0.377374 0.289808 Vertex 22114 0.405433 0.428191 0.373519 Vertex 22115 0.401299 0.426272 0.369793 Vertex 22116 0.486467 0.0615838 0.694408 Vertex 22117 0.457416 0.799222 0.377534 Vertex 22118 0.449083 0.424756 0.634003 Vertex 22119 0.44104 0.128948 0.65061 Vertex 22120 0.461882 0.437543 0.382308 Vertex 22121 0.524336 0.575505 0.559674 Vertex 22122 0.544396 0.0483052 0.793098 Vertex 22123 0.611192 0.478119 0.283547 Vertex 22124 0.326762 0.270672 0.211788 Vertex 22125 0.533392 0.0946915 0.791422 Vertex 22126 0.473846 0.431389 0.613748 Vertex 22127 0.422218 0.226222 0.206351 Vertex 22128 0.358656 0.385719 0.364504 Vertex 22129 0.64854 0.435997 0.227809 Vertex 22130 0.639674 0.511197 0.201809 Vertex 22131 0.373101 0.376883 0.525026 Vertex 22132 0.519817 0.0749394 0.794016 Vertex 22133 0.452246 0.613007 0.455601 Vertex 22134 0.592121 0.431501 0.339694 Vertex 22135 0.510596 0.564293 0.39962 Vertex 22136 0.373859 0.368929 0.527993 Vertex 22137 0.515209 0.379495 0.557234 Vertex 22138 0.309089 0.985898 0.234911 Vertex 22139 0.328971 0.239323 0.217285 Vertex 22140 0.53113 0.126692 0.796574 Vertex 22141 0.551332 0.477941 0.383516 Vertex 22142 0.482712 0.374454 0.420853 Vertex 22143 0.479336 0.375141 0.415155 Vertex 22144 0.556052 0.408711 0.501247 Vertex 22145 0.457724 0.171437 0.648336 Vertex 22146 0.478915 0.179492 0.486381 Vertex 22147 0.396442 0.179682 0.609069 Vertex 22148 0.371087 0.257819 0.474725 Vertex 22149 0.445938 0.322234 0.639328 Vertex 22150 0.496695 0.726876 0.513767 Vertex 22151 0.53463 0.401012 0.466327 Vertex 22152 0.359858 0.382734 0.331302 Vertex 22153 0.475723 0.170922 0.679223 Vertex 22154 0.510945 0.347311 0.452924 Vertex 22155 0.513557 0.0903621 0.689179 Vertex 22156 0.495066 0.241917 0.565668 Vertex 22157 0.407719 0.370125 0.360329 Vertex 22158 0.367291 0.215697 0.235781 Vertex 22159 0.482262 0.585159 0.41631 Vertex 22160 0.521748 0.706526 0.497113 Vertex 22161 0.431652 0.434463 0.616253 Vertex 22162 0.41748 0.15422 0.702274 Vertex 22163 0.488007 0.172308 0.503397 Vertex 22164 0.356062 0.170324 0.479582 Vertex 22165 0.356263 0.17325 0.483396 Vertex 22166 0.587898 0.428765 0.341003 Vertex 22167 0.478317 0.0650664 0.704915 Vertex 22168 0.414477 0.147214 0.654661 Vertex 22169 0.38423 0.0726296 0.473446 Vertex 22170 0.427216 0.293657 0.640684 Vertex 22171 0.321562 0.25593 0.223385 Vertex 22172 0.513125 0.611219 0.553177 Vertex 22173 0.436527 0.530209 0.474085 Vertex 22174 0.461171 0.832987 0.425982 Vertex 22175 0.41819 0.20204 0.475323 Vertex 22176 0.418321 0.207915 0.473487 Vertex 22177 0.344968 0.899836 0.308464 Vertex 22178 0.385059 0.346819 0.416647 Vertex 22179 0.394577 0.188483 0.480766 Vertex 22180 0.400523 0.190058 0.477852 Vertex 22181 0.361108 0.366548 0.370759 Vertex 22182 0.36138 0.0893848 0.478486 Vertex 22183 0.547837 0.00255859 0.731324 Vertex 22184 0.690787 0.465403 0.2144 Vertex 22185 0.513859 0.579059 0.409984 Vertex 22186 0.500409 0.675746 0.410908 Vertex 22187 0.368102 0.36361 0.293954 Vertex 22188 0.370537 0.45704 0.538601 Vertex 22189 0.367415 0.382568 0.275309 Vertex 22190 0.522867 0.31447 0.490053 Vertex 22191 0.393937 0.284406 0.23404 Vertex 22192 0.410272 0.374022 0.277388 Vertex 22193 0.456018 0.0857128 0.710992 Vertex 22194 0.460176 0.0823665 0.70989 Vertex 22195 0.416248 0.231013 0.205291 Vertex 22196 0.442521 0.136618 0.745651 Vertex 22197 0.375974 0.420651 0.372731 Vertex 22198 0.324506 0.242207 0.23263 Vertex 22199 0.549496 0.161647 0.439201 Vertex 22200 0.526451 0.113674 0.747932 Vertex 22201 0.512337 0.0814662 0.793346 Vertex 22202 0.479324 0.55846 0.408042 Vertex 22203 0.409608 0.263967 0.702274 Vertex 22204 0.524822 0.33177 0.503047 Vertex 22205 0.511905 0.276126 0.528266 Vertex 22206 0.511543 0.276357 0.524179 Vertex 22207 0.510175 0.272999 0.519933 Vertex 22208 0.420938 0.400366 0.351457 Vertex 22209 0.387499 0.243445 0.662912 Vertex 22210 0.457067 0.779014 0.386833 Vertex 22211 0.62976 0.484332 0.23035 Vertex 22212 0.451487 0.614476 0.499322 Vertex 22213 0.446945 0.59502 0.499097 Vertex 22214 0.525716 0.0438751 0.644711 Vertex 22215 0.463635 0.777397 0.383682 Vertex 22216 0.516495 0.527123 0.403511 Vertex 22217 0.528879 0.557429 0.425449 Vertex 22218 0.5259 0.621264 0.43377 Vertex 22219 0.584913 0.492973 0.455654 Vertex 22220 0.468693 0.22682 0.472907 Vertex 22221 0.467579 0.199215 0.681651 Vertex 22222 0.333354 0.932784 0.301677 Vertex 22223 0.589912 0.423612 0.199333 Vertex 22224 0.412084 0.166758 0.613209 Vertex 22225 0.500912 0.307819 0.598657 Vertex 22226 0.503346 0.303234 0.592396 Vertex 22227 0.518538 0.560989 0.57162 Vertex 22228 0.376696 0.296252 0.193784 Vertex 22229 0.389412 0.8626 0.381188 Vertex 22230 0.490453 0.0888162 0.778498 Vertex 22231 0.447946 0.614518 0.474399 Vertex 22232 0.468148 0.513986 0.410286 Vertex 22233 0.503619 0.653797 0.547669 Vertex 22234 0.399534 0.184633 0.584188 Vertex 22235 0.489393 0.212446 0.496846 Vertex 22236 0.376199 0.389451 0.565531 Vertex 22237 0.382417 0.355531 0.329264 Vertex 22238 0.629736 0.521846 0.219494 Vertex 22239 0.631803 0.485907 0.234241 Vertex 22240 0.369103 0.412845 0.39561 Vertex 22241 0.381399 0.276559 0.604787 Vertex 22242 0.491951 0.518351 0.388456 Vertex 22243 0.520457 0.398447 0.553218 Vertex 22244 0.468829 0.25805 0.615382 Vertex 22245 0.366823 0.878591 0.335584 Vertex 22246 0.499568 0.20249 0.505896 Vertex 22247 0.386078 0.178509 0.547343 Vertex 22248 0.39325 0.430974 0.341613 Vertex 22249 0.471003 0.497539 0.40694 Vertex 22250 0.633515 0.450495 0.198332 Vertex 22251 0.442076 0.152544 0.772777 Vertex 22252 0.48334 0.126407 0.804055 Vertex 22253 0.537798 0.154747 0.435322 Vertex 22254 0.426855 0.139532 0.657931 Vertex 22255 0.471086 0.191663 0.573847 Vertex 22256 0.499283 0.192534 0.458989 Vertex 22257 0.497797 0.190627 0.457354 Vertex 22258 0.554862 0.0485303 0.756235 Vertex 22259 0.522234 0.688231 0.505517 Vertex 22260 0.524958 0.68553 0.503403 Vertex 22261 0.383608 0.347311 0.423476 Vertex 22262 0.476647 0.47957 0.390647 Vertex 22263 0.521357 0.553763 0.409049 Vertex 22264 0.493432 0.111974 0.642828 Vertex 22265 0.584961 0.497391 0.434954 Vertex 22266 0.586654 0.493328 0.431993 Vertex 22267 0.499674 0.0996369 0.809284 Vertex 22268 0.55684 0.00190709 0.74789 Vertex 22269 0.534861 0.152805 0.460132 Vertex 22270 0.535731 0.154504 0.456702 Vertex 22271 0.491229 0.216088 0.507679 Vertex 22272 0.433838 0.560005 0.526163 Vertex 22273 0.465755 0.162707 0.542682 Vertex 22274 0.487243 0.118068 0.645422 Vertex 22275 0.489375 0.0661265 0.732337 Vertex 22276 0.579826 0.509142 0.441173 Vertex 22277 0.529311 0.147107 0.790385 Vertex 22278 0.64366 0.449814 0.217095 Vertex 22279 0.360278 0.349295 0.248432 Vertex 22280 0.567204 0.402688 0.412176 Vertex 22281 0.494563 0.400437 0.606877 Vertex 22282 0.450303 0.421628 0.392684 Vertex 22283 0.518147 0.103907 0.683469 Vertex 22284 0.518769 0.352973 0.486239 Vertex 22285 0.488249 0.0866663 0.645144 Vertex 22286 0.425084 0.236231 0.774862 Vertex 22287 0.372023 0.313504 0.249492 Vertex 22288 0.388038 0.434741 0.592977 Vertex 22289 0.520528 0.373868 0.546828 Vertex 22290 0.497625 0.0461612 0.722571 Vertex 22291 0.45391 0.446658 0.626766 Vertex 22292 0.477056 0.542522 0.408 Vertex 22293 0.567003 0.408711 0.466054 Vertex 22294 0.566239 0.409268 0.470194 Vertex 22295 0.509198 0.296228 0.474589 Vertex 22296 0.507267 0.291454 0.467766 Vertex 22297 0.388678 0.323745 0.256049 Vertex 22298 0.44855 0.44369 0.630704 Vertex 22299 0.45985 0.221827 0.635981 Vertex 22300 0.352502 0.370587 0.424578 Vertex 22301 0.51887 0.382616 0.526163 Vertex 22302 0.572754 0.478539 0.509687 Vertex 22303 0.510679 0.174405 0.768637 Vertex 22304 0.492727 0.425354 0.38062 Vertex 22305 0.408448 0.261397 0.720308 Vertex 22306 0.408086 0.262255 0.716796 Vertex 22307 0.516281 0.369604 0.472291 Vertex 22308 0.545498 0.152058 0.42485 Vertex 22309 0.429562 0.445935 0.609045 Vertex 22310 0.441075 0.254947 0.737525 Vertex 22311 0.444824 0.836404 0.378132 Vertex 22312 0.587649 0.500992 0.288896 Vertex 22313 0.49573 0.607138 0.562197 Vertex 22314 0.470416 0.162204 0.516669 Vertex 22315 0.453318 0.441546 0.62798 Vertex 22316 0.472146 0.729234 0.409333 Vertex 22317 0.558149 0.51831 0.536581 Vertex 22318 0.510051 0.399158 0.445485 Vertex 22319 0.519503 0.304745 0.526217 Vertex 22320 0.529572 0.154653 0.46012 Vertex 22321 0.361623 0.425537 0.449489 Vertex 22322 0.465654 0.204367 0.662912 Vertex 22323 0.479721 0.0771723 0.722565 Vertex 22324 0.439293 0.356047 0.647246 Vertex 22325 0.414832 0.263339 0.7209 Vertex 22326 0.483345 0.518748 0.395592 Vertex 22327 0.434839 0.258009 0.704364 Vertex 22328 0.435668 0.255237 0.69814 Vertex 22329 0.512988 0.103125 0.719734 Vertex 22330 0.513468 0.106199 0.71987 Vertex 22331 0.453549 0.0998561 0.720551 Vertex 22332 0.368215 0.387194 0.508052 Vertex 22333 0.403733 0.1677 0.694 Vertex 22334 0.507711 0.629318 0.555125 Vertex 22335 0.506977 0.625261 0.557145 Vertex 22336 0.553251 0.556517 0.489455 Vertex 22337 0.553796 0.554977 0.489147 Vertex 22338 0.524709 0.133017 0.754038 Vertex 22339 0.497157 0.344752 0.441813 Vertex 22340 0.525461 0.584922 0.428131 Vertex 22341 0.446127 0.120597 0.662775 Vertex 22342 0.604049 0.515532 0.358232 Vertex 22343 0.545676 0.443856 0.376296 Vertex 22344 0.5086 0.135599 0.702351 Vertex 22345 0.408448 0.241976 0.199333 Vertex 22346 0.433945 0.534976 0.487157 Vertex 22347 0.491963 0.537458 0.382657 Vertex 22348 0.356174 0.230155 0.512968 Vertex 22349 0.452257 0.139011 0.648212 Vertex 22350 0.492751 0.0572011 0.732521 Vertex 22351 0.650353 0.452722 0.21976 Vertex 22352 0.515097 0.333144 0.462513 Vertex 22353 0.46094 0.192208 0.646287 Vertex 22354 0.379829 0.453907 0.429038 Vertex 22355 0.510347 0.605942 0.416772 Vertex 22356 0.442473 0.0938979 0.69814 Vertex 22357 0.52484 0.136671 0.710542 Vertex 22358 0.394588 0.295369 0.238642 Vertex 22359 0.539948 0.480417 0.399146 Vertex 22360 0.390277 0.29634 0.447522 Vertex 22361 0.462812 0.0882121 0.71432 Vertex 22362 0.46601 0.0808976 0.710577 Vertex 22363 0.459299 0.0919671 0.715463 Vertex 22364 0.479875 0.762057 0.395243 Vertex 22365 0.534997 0.443128 0.398109 Vertex 22366 0.530277 0.444206 0.405075 Vertex 22367 0.515251 0.404684 0.443211 Vertex 22368 0.526945 0.0559425 0.791555 Vertex 22369 0.386202 0.430092 0.389528 Vertex 22370 0.372645 0.405643 0.545069 Vertex 22371 0.685853 0.466327 0.193997 Vertex 22372 0.363678 0.267367 0.227566 Vertex 22373 0.409673 0.271134 0.20371 Vertex 22374 0.524798 0.116665 0.71554 Vertex 22375 0.450824 0.398021 0.633263 Vertex 22376 0.512106 0.189721 0.461843 Vertex 22377 0.362322 0.271909 0.226678 Vertex 22378 0.434472 0.527792 0.474459 Vertex 22379 0.397864 0.313001 0.212091 Vertex 22380 0.534902 0.034464 0.778623 Vertex 22381 0.531461 0.0319054 0.774968 Vertex 22382 0.438464 0.258447 0.733391 Vertex 22383 0.522482 0.133763 0.703358 Vertex 22384 0.52266 0.126283 0.794892 Vertex 22385 0.413464 0.258364 0.733308 Vertex 22386 0.459791 0.190562 0.576038 Vertex 22387 0.357252 0.891485 0.335424 Vertex 22388 0.35647 0.894891 0.337544 Vertex 22389 0.444434 0.460463 0.407307 Vertex 22390 0.458873 0.270524 0.436559 Vertex 22391 0.359491 0.427912 0.516059 Vertex 22392 0.498342 0.43114 0.389243 Vertex 22393 0.505484 0.754891 0.485232 Vertex 22394 0.588029 0.418418 0.403825 Vertex 22395 0.422727 0.327316 0.646506 Vertex 22396 0.397621 0.295707 0.200938 Vertex 22397 0.458458 0.46115 0.39837 Vertex 22398 0.525829 0.386898 0.447386 Vertex 22399 0.513285 0.663842 0.528266 Vertex 22400 0.371751 0.359985 0.224522 Vertex 22401 0.437569 0.820745 0.361496 Vertex 22402 0.463659 0.201359 0.63437 Vertex 22403 0.570509 0.511913 0.505464 Vertex 22404 0.555093 0.146752 0.424957 Vertex 22405 0.376359 0.23664 0.478125 Vertex 22406 0.354788 0.201376 0.476046 Vertex 22407 0.500136 0.711572 0.520016 Vertex 22408 0.398213 0.31309 0.216284 Vertex 22409 0.354178 0.228875 0.536706 Vertex 22410 0.503743 0.416926 0.420337 Vertex 22411 0.594911 0.477236 0.400804 Vertex 22412 0.59449 0.481039 0.399187 Vertex 22413 0.602948 0.449317 0.210592 Vertex 22414 0.610505 0.465296 0.303051 Vertex 22415 0.447087 0.61248 0.4806 Vertex 22416 0.49865 0.0910432 0.730045 Vertex 22417 0.363092 0.310839 0.490284 Vertex 22418 0.450072 0.831234 0.444425 Vertex 22419 0.502108 0.201009 0.473623 Vertex 22420 0.367818 0.361863 0.347939 Vertex 22421 0.383555 0.425946 0.312314 Vertex 22422 0.353236 0.902211 0.335359 Vertex 22423 0.556147 0.526489 0.45441 Vertex 22424 0.352295 0.191077 0.468411 Vertex 22425 0.452115 0.164283 0.631782 Vertex 22426 0.452743 0.160421 0.641916 Vertex 22427 0.363009 0.377048 0.486239 Vertex 22428 0.508191 0.07796 0.694018 Vertex 22429 0.422253 0.242314 0.218783 Vertex 22430 0.425451 0.139218 0.64326 Vertex 22431 0.450723 0.649603 0.462347 Vertex 22432 0.502612 0.17171 0.478557 Vertex 22433 0.50661 0.16571 0.468714 Vertex 22434 0.437777 0.127319 0.726509 Vertex 22435 0.41299 0.316341 0.637865 Vertex 22436 0.420802 0.40681 0.378156 Vertex 22437 0.497702 0.320298 0.44404 Vertex 22438 0.446056 0.275268 0.433539 Vertex 22439 0.537941 0.40055 0.437744 Vertex 22440 0.45677 0.631089 0.501152 Vertex 22441 0.501723 0.4028 0.436779 Vertex 22442 0.5415 0.620665 0.511937 Vertex 22443 0.519722 0.366625 0.488258 Vertex 22444 0.613449 0.466208 0.332403 Vertex 22445 0.61336 0.468791 0.326445 Vertex 22446 0.3228 0.235497 0.226287 Vertex 22447 0.465104 0.18705 0.662912 Vertex 22448 0.454958 0.233258 0.77482 Vertex 22449 0.464138 0.575025 0.432532 Vertex 22450 0.407014 0.382326 0.276778 Vertex 22451 0.421418 0.861812 0.420414 Vertex 22452 0.422585 0.858549 0.426757 Vertex 22453 0.433032 0.141569 0.623597 Vertex 22454 0.351975 0.298597 0.197023 Vertex 22455 0.374505 0.282926 0.464402 Vertex 22456 0.416804 0.381088 0.402368 Vertex 22457 0.472501 0.219666 0.739628 Vertex 22458 0.436408 0.480677 0.424714 Vertex 22459 0.685723 0.451662 0.208365 Vertex 22460 0.414814 0.161239 0.607037 Vertex 22461 0.476025 0.59319 0.553775 Vertex 22462 0.447573 0.147948 0.778954 Vertex 22463 0.436373 0.124571 0.7199 Vertex 22464 0.465506 0.60465 0.436074 Vertex 22465 0.464476 0.609922 0.438804 Vertex 22466 0.531461 0.0647939 0.800252 Vertex 22467 0.532089 0.0631889 0.800021 Vertex 22468 0.58656 0.460066 0.465012 Vertex 22469 0.505526 0.557068 0.395024 Vertex 22470 0.381245 0.420325 0.58231 Vertex 22471 0.354895 0.309696 0.205866 Vertex 22472 0.531586 0.403375 0.454363 Vertex 22473 0.347983 0.895566 0.308796 Vertex 22474 0.424723 0.839508 0.434415 Vertex 22475 0.422253 0.840977 0.432532 Vertex 22476 0.416348 0.416677 0.34021 Vertex 22477 0.481474 0.186955 0.47527 Vertex 22478 0.472134 0.379542 0.627216 Vertex 22479 0.423852 0.390155 0.328406 Vertex 22480 0.423538 0.39394 0.326925 Vertex 22481 0.590054 0.42427 0.202579 Vertex 22482 0.586056 0.42347 0.204255 Vertex 22483 0.597996 0.464751 0.187802 Vertex 22484 0.455669 0.583738 0.445319 Vertex 22485 0.45439 0.581801 0.447345 Vertex 22486 0.45346 0.580107 0.449495 Vertex 22487 0.458393 0.573527 0.44112 Vertex 22488 0.354504 0.230575 0.522071 Vertex 22489 0.463635 0.180167 0.671405 Vertex 22490 0.46049 0.230972 0.46532 Vertex 22491 0.473087 0.374922 0.409019 Vertex 22492 0.508422 0.271068 0.489727 Vertex 22493 0.608266 0.487802 0.194328 Vertex 22494 0.60643 0.491291 0.199546 Vertex 22495 0.416656 0.257221 0.202567 Vertex 22496 0.403538 0.379986 0.243161 Vertex 22497 0.543757 0.48541 0.571732 Vertex 22498 0.485543 0.628691 0.414308 Vertex 22499 0.516649 0.0984998 0.687692 Vertex 22500 0.413091 0.840165 0.353038 Vertex 22501 0.566144 0.476603 0.326297 Vertex 22502 0.56631 0.474743 0.323768 Vertex 22503 0.417942 0.46134 0.402397 Vertex 22504 0.373439 0.0741754 0.472439 Vertex 22505 0.626698 0.45444 0.203716 Vertex 22506 0.418741 0.488703 0.592622 Vertex 22507 0.509156 0.569037 0.571726 Vertex 22508 0.540547 0.058048 0.802177 Vertex 22509 0.657134 0.461133 0.218759 Vertex 22510 0.522459 0.375574 0.501336 Vertex 22511 0.4343 0.138389 0.720308 Vertex 22512 0.553819 0.0412928 0.770603 Vertex 22513 0.371603 0.362876 0.501336 Vertex 22514 0.398184 0.477284 0.584946 Vertex 22515 0.51223 0.0461849 0.7684 Vertex 22516 0.361564 0.334382 0.522254 Vertex 22517 0.374961 0.258418 0.470277 Vertex 22518 0.370442 0.348608 0.381017 Vertex 22519 0.459128 0.217545 0.791197 Vertex 22520 0.419813 0.21809 0.778907 Vertex 22521 0.438469 0.123902 0.668432 Vertex 22522 0.420204 0.13968 0.69294 Vertex 22523 0.572428 0.507009 0.501336 Vertex 22524 0.570817 0.502804 0.507501 Vertex 22525 0.515642 0.351853 0.478024 Vertex 22526 0.532225 0.452681 0.403671 Vertex 22527 0.539842 0.0216769 0.729311 Vertex 22528 0.535447 0.0279609 0.729867 Vertex 22529 0.405865 0.169643 0.613001 Vertex 22530 0.379456 0.349248 0.374828 Vertex 22531 0.500521 0.410737 0.411128 Vertex 22532 0.417118 0.170555 0.579971 Vertex 22533 0.527546 0.0537008 0.660922 Vertex 22534 0.435467 0.149772 0.74574 Vertex 22535 0.446767 0.592639 0.502994 Vertex 22536 0.463007 0.564252 0.430702 Vertex 22537 0.494711 0.112762 0.798322 Vertex 22538 0.613614 0.478065 0.221857 Vertex 22539 0.538657 0.123399 0.445319 Vertex 22540 0.429331 0.213536 0.788312 Vertex 22541 0.471044 0.715434 0.490971 Vertex 22542 0.384473 0.492973 0.480737 Vertex 22543 0.501143 0.284738 0.590389 Vertex 22544 0.584688 0.49315 0.468115 Vertex 22545 0.43539 0.814325 0.374786 Vertex 22546 0.362689 0.298964 0.194713 Vertex 22547 0.362138 0.29438 0.196561 Vertex 22548 0.654469 0.423216 0.203011 Vertex 22549 0.368493 0.317958 0.486837 Vertex 22550 0.510844 0.0215703 0.657173 Vertex 22551 0.643453 0.42321 0.203118 Vertex 22552 0.64318 0.421682 0.204427 Vertex 22553 0.488557 0.668295 0.405116 Vertex 22554 0.316557 0.95683 0.219352 Vertex 22555 0.496778 0.534402 0.382278 Vertex 22556 0.317712 0.982102 0.233661 Vertex 22557 0.523377 0.372411 0.50345 Vertex 22558 0.410017 0.386365 0.28751 Vertex 22559 0.356079 0.400763 0.503859 Vertex 22560 0.364365 0.084546 0.47665 Vertex 22561 0.427643 0.839804 0.351919 Vertex 22562 0.519847 0.0768998 0.68174 Vertex 22563 0.444937 0.214679 0.795425 Vertex 22564 0.526865 0.0731686 0.714759 Vertex 22565 0.530277 0.696156 0.474358 Vertex 22566 0.506627 0.0934418 0.639861 Vertex 22567 0.362482 0.262646 0.205268 Vertex 22568 0.588816 0.504208 0.298467 Vertex 22569 0.607165 0.505849 0.213174 Vertex 22570 0.404912 0.247905 0.200772 Vertex 22571 0.403869 0.249291 0.201151 Vertex 22572 0.312429 0.942461 0.260538 Vertex 22573 0.479294 0.485682 0.604615 Vertex 22574 0.480976 0.480677 0.604911 Vertex 22575 0.614325 0.464218 0.213802 Vertex 22576 0.583634 0.438378 0.451556 Vertex 22577 0.508256 0.403789 0.586249 Vertex 22578 0.499656 0.0379169 0.677754 Vertex 22579 0.370631 0.345179 0.590549 Vertex 22580 0.327751 0.953483 0.283062 Vertex 22581 0.471885 0.134498 0.644954 Vertex 22582 0.53752 0.543736 0.430453 Vertex 22583 0.517413 0.642099 0.534733 Vertex 22584 0.360373 0.244369 0.50207 Vertex 22585 0.424178 0.404447 0.381562 Vertex 22586 0.422561 0.403351 0.379489 Vertex 22587 0.492751 0.416381 0.387703 Vertex 22588 0.465127 0.454931 0.388941 Vertex 22589 0.35345 0.891367 0.32102 Vertex 22590 0.612063 0.46439 0.311106 Vertex 22591 0.610387 0.467766 0.299219 Vertex 22592 0.510294 0.27021 0.524138 Vertex 22593 0.595574 0.514768 0.243155 Vertex 22594 0.445494 0.584508 0.478486 Vertex 22595 0.404716 0.358576 0.327156 Vertex 22596 0.366326 0.23218 0.233471 Vertex 22597 0.397994 0.340393 0.626404 Vertex 22598 0.513575 0.128895 0.70225 Vertex 22599 0.313294 0.972086 0.205208 Vertex 22600 0.518769 0.0891657 0.68553 Vertex 22601 0.374884 0.458219 0.55734 Vertex 22602 0.406765 0.265584 0.196857 Vertex 22603 0.404011 0.342052 0.213583 Vertex 22604 0.393718 0.354892 0.414622 Vertex 22605 0.518828 0.151881 0.739498 Vertex 22606 0.501262 0.257452 0.495099 Vertex 22607 0.478767 0.704785 0.416393 Vertex 22608 0.495611 0.607908 0.403363 Vertex 22609 0.494332 0.059351 0.725941 Vertex 22610 0.528826 0.552276 0.571839 Vertex 22611 0.351223 0.118761 0.456092 Vertex 22612 0.45571 0.719189 0.45784 Vertex 22613 0.542886 0.485285 0.399253 Vertex 22614 0.403372 0.200695 0.474399 Vertex 22615 0.419866 0.433 0.385192 Vertex 22616 0.421483 0.434883 0.386874 Vertex 22617 0.505567 0.479191 0.605841 Vertex 22618 0.452548 0.841267 0.420106 Vertex 22619 0.44069 0.167072 0.553123 Vertex 22620 0.603955 0.513359 0.201098 Vertex 22621 0.496127 0.421309 0.396439 Vertex 22622 0.499656 0.0415119 0.721339 Vertex 22623 0.550366 0.150288 0.41612 Vertex 22624 0.620793 0.507371 0.192593 Vertex 22625 0.617121 0.504901 0.188992 Vertex 22626 0.519379 0.34663 0.565472 Vertex 22627 0.474568 0.418774 0.373821 Vertex 22628 0.471471 0.421249 0.373234 Vertex 22629 0.544627 0.147243 0.432917 Vertex 22630 0.546422 0.145994 0.432479 Vertex 22631 0.498188 0.41464 0.405685 Vertex 22632 0.371212 0.358534 0.484148 Vertex 22633 0.534126 0.0496438 0.794377 Vertex 22634 0.556052 0.549203 0.483627 Vertex 22635 0.37916 0.89739 0.369479 Vertex 22636 0.490162 0.626179 0.40607 Vertex 22637 0.36199 0.293438 0.230155 Vertex 22638 0.545824 0.0320712 0.722387 Vertex 22639 0.463694 0.204681 0.797172 Vertex 22640 0.528535 0.615388 0.536528 Vertex 22641 0.30518 0.952684 0.233033 Vertex 22642 0.355031 0.89614 0.335412 Vertex 22643 0.372094 0.909306 0.352789 Vertex 22644 0.392219 0.353808 0.430293 Vertex 22645 0.531929 0.403849 0.45797 Vertex 22646 0.523791 0.537778 0.410423 Vertex 22647 0.43183 0.260129 0.733356 Vertex 22648 0.361404 0.136387 0.473943 Vertex 22649 0.509085 0.524043 0.397878 Vertex 22650 0.489789 0.505712 0.392057 Vertex 22651 0.435692 0.558294 0.516124 Vertex 22652 0.529039 0.14825 0.788502 Vertex 22653 0.605737 0.442328 0.365902 Vertex 22654 0.436166 0.153403 0.586278 Vertex 22655 0.407198 0.830168 0.397488 Vertex 22656 0.408033 0.82906 0.391731 Vertex 22657 0.450309 0.270127 0.436056 Vertex 22658 0.561424 0.411015 0.488857 Vertex 22659 0.521807 0.144128 0.446705 Vertex 22660 0.476309 0.360862 0.629336 Vertex 22661 0.406582 0.43496 0.604479 Vertex 22662 0.377922 0.411566 0.565745 Vertex 22663 0.492638 0.528692 0.383664 Vertex 22664 0.355185 0.325059 0.231458 Vertex 22665 0.468012 0.146302 0.798778 Vertex 22666 0.507309 0.429434 0.414361 Vertex 22667 0.378953 0.878923 0.370664 Vertex 22668 0.48591 0.776479 0.411252 Vertex 22669 0.4966 0.250286 0.478486 Vertex 22670 0.510163 0.186617 0.458758 Vertex 22671 0.36215 0.364338 0.461097 Vertex 22672 0.464719 0.215804 0.598663 Vertex 22673 0.492425 0.177627 0.71329 Vertex 22674 0.535962 0.558347 0.561249 Vertex 22675 0.40638 0.157744 0.661822 Vertex 22676 0.528808 0.129452 0.77482 Vertex 22677 0.352318 0.394289 0.456661 Vertex 22678 0.440193 0.779452 0.41631 Vertex 22679 0.522157 0.114029 0.71451 Vertex 22680 0.552339 0.547047 0.46481 Vertex 22681 0.470286 0.207808 0.693976 Vertex 22682 0.319862 0.930142 0.271365 Vertex 22683 0.49493 0.163525 0.69365 Vertex 22684 0.625584 0.488246 0.28517 Vertex 22685 0.483582 0.210403 0.488857 Vertex 22686 0.528903 0.116724 0.71891 Vertex 22687 0.504981 0.0398181 0.673087 Vertex 22688 0.430302 0.554799 0.522 Vertex 22689 0.394879 0.207086 0.720924 Vertex 22690 0.399599 0.360074 0.434931 Vertex 22691 0.402655 0.364007 0.430264 Vertex 22692 0.455918 0.686182 0.466327 Vertex 22693 0.444049 0.308144 0.638599 Vertex 22694 0.502014 0.178171 0.741565 Vertex 22695 0.536152 0.673993 0.470135 Vertex 22696 0.408276 0.232494 0.752054 Vertex 22697 0.452003 0.143844 0.651611 Vertex 22698 0.502979 0.736234 0.421303 Vertex 22699 0.375464 0.336763 0.266709 Vertex 22700 0.498164 0.262321 0.472202 Vertex 22701 0.440412 0.7961 0.451556 Vertex 22702 0.406215 0.521437 0.552276 Vertex 22703 0.525965 0.50679 0.590791 Vertex 22704 0.447312 0.38319 0.640329 Vertex 22705 0.476197 0.108616 0.789479 Vertex 22706 0.412439 0.1651 0.623579 Vertex 22707 0.403857 0.844625 0.362574 Vertex 22708 0.40548 0.843659 0.362437 Vertex 22709 0.496056 0.724004 0.517433 Vertex 22710 0.469279 0.227027 0.600753 Vertex 22711 0.562111 0.510575 0.423707 Vertex 22712 0.469344 0.229965 0.46991 Vertex 22713 0.357963 0.890472 0.30462 Vertex 22714 0.558717 0.456779 0.530351 Vertex 22715 0.377898 0.233294 0.23388 Vertex 22716 0.394488 0.863607 0.332244 Vertex 22717 0.476457 0.0775513 0.712514 Vertex 22718 0.513859 0.191882 0.466143 Vertex 22719 0.364916 0.140794 0.458527 Vertex 22720 0.460383 0.722269 0.474411 Vertex 22721 0.604813 0.52136 0.31691 Vertex 22722 0.607111 0.520217 0.320694 Vertex 22723 0.521357 0.606629 0.547734 Vertex 22724 0.349476 0.151839 0.470372 Vertex 22725 0.447638 0.25314 0.444543 Vertex 22726 0.669098 0.483017 0.195004 Vertex 22727 0.426346 0.802296 0.422742 Vertex 22728 0.376512 0.300143 0.602791 Vertex 22729 0.388174 0.196603 0.679495 Vertex 22730 0.338448 0.0995836 0.453765 Vertex 22731 0.526563 0.330804 0.496432 Vertex 22732 0.410058 0.834088 0.377463 Vertex 22733 0.359544 0.915063 0.340648 Vertex 22734 0.352502 0.394811 0.484409 Vertex 22735 0.506586 0.146793 0.680893 Vertex 22736 0.490062 0.642182 0.403416 Vertex 22737 0.458464 0.128285 0.801573 Vertex 22738 0.418066 0.263357 0.221448 Vertex 22739 0.655393 0.495727 0.221395 Vertex 22740 0.523081 0.0708883 0.659962 Vertex 22741 0.45317 0.331367 0.417044 Vertex 22742 0.374753 0.217397 0.228407 Vertex 22743 0.371934 0.350527 0.507898 Vertex 22744 0.404236 0.253768 0.451011 Vertex 22745 0.56111 0.467049 0.330402 Vertex 22746 0.409105 0.884094 0.386969 Vertex 22747 0.406144 0.88205 0.391257 Vertex 22748 0.358833 0.240288 0.501679 Vertex 22749 0.476665 0.213903 0.772801 Vertex 22750 0.383815 0.862517 0.358558 Vertex 22751 0.500711 0.68437 0.536753 Vertex 22752 0.569319 0.447475 0.503397 Vertex 22753 0.567252 0.44478 0.505535 Vertex 22754 0.489327 0.236196 0.581783 Vertex 22755 0.454016 0.177082 0.617372 Vertex 22756 0.351039 0.180102 0.482614 Vertex 22757 0.308402 0.993799 0.219843 Vertex 22758 0.339638 0.268166 0.230942 Vertex 22759 0.488113 0.438893 0.379625 Vertex 22760 0.485869 0.43624 0.376687 Vertex 22761 0.521517 0.0834266 0.719248 Vertex 22762 0.484145 0.190194 0.467517 Vertex 22763 0.478969 0.168186 0.509787 Vertex 22764 0.41732 0.492102 0.433243 Vertex 22765 0.414957 0.492191 0.434753 Vertex 22766 0.417095 0.493145 0.434575 Vertex 22767 0.415164 0.49238 0.43464 Vertex 22768 0.370785 0.366956 0.547088 Vertex 22769 0.471601 0.761844 0.390114 Vertex 22770 0.371289 0.368615 0.229373 Vertex 22771 0.360119 0.414426 0.437406 Vertex 22772 0.357631 0.40957 0.441226 Vertex 22773 0.471103 0.723015 0.419449 Vertex 22774 0.440098 0.150927 0.766671 Vertex 22775 0.430053 0.524452 0.575997 Vertex 22776 0.434839 0.523504 0.578247 Vertex 22777 0.477091 0.214406 0.779002 Vertex 22778 0.363619 0.114574 0.460185 Vertex 22779 0.487225 0.46041 0.385245 Vertex 22780 0.384117 0.864555 0.364558 Vertex 22781 0.355209 0.293847 0.23064 Vertex 22782 0.423272 0.500601 0.588476 Vertex 22783 0.386238 0.200245 0.633364 Vertex 22784 0.643589 0.510474 0.227673 Vertex 22785 0.52927 0.627186 0.530558 Vertex 22786 0.361173 0.299053 0.491249 Vertex 22787 0.36831 0.306308 0.243125 Vertex 22788 0.434478 0.519329 0.457751 Vertex 22789 0.511632 0.0958879 0.804878 Vertex 22790 0.366296 0.220892 0.491883 Vertex 22791 0.403739 0.369023 0.383084 Vertex 22792 0.432067 0.387407 0.422256 Vertex 22793 0.371946 0.389498 0.26081 Vertex 22794 0.480153 0.167493 0.517895 Vertex 22795 0.534671 0.130079 0.434374 Vertex 22796 0.455319 0.239199 0.723027 Vertex 22797 0.583634 0.424554 0.205706 Vertex 22798 0.538716 0.475104 0.577927 Vertex 22799 0.676851 0.45364 0.212961 Vertex 22800 0.657792 0.447599 0.201779 Vertex 22801 0.602024 0.467032 0.200447 Vertex 22802 0.509589 0.273272 0.542717 Vertex 22803 0.509494 0.171414 0.774814 Vertex 22804 0.445938 0.222236 0.466848 Vertex 22805 0.502914 0.766084 0.4763 Vertex 22806 0.401897 0.184538 0.571756 Vertex 22807 0.383614 0.235011 0.685696 Vertex 22808 0.448212 0.13477 0.768554 Vertex 22809 0.448366 0.140906 0.774732 Vertex 22810 0.454419 0.549996 0.434469 Vertex 22811 0.609504 0.516344 0.205487 Vertex 22812 0.451884 0.231215 0.78005 Vertex 22813 0.368612 0.220062 0.237203 Vertex 22814 0.351815 0.085926 0.441197 Vertex 22815 0.33734 0.284448 0.207246 Vertex 22816 0.528618 0.482969 0.410245 Vertex 22817 0.442627 0.206257 0.469999 Vertex 22818 0.300957 0.974124 0.22268 Vertex 22819 0.488232 0.088301 0.774714 Vertex 22820 0.403911 0.401118 0.286681 Vertex 22821 0.657383 0.466463 0.215952 Vertex 22822 0.652076 0.467659 0.215899 Vertex 22823 0.366681 0.323022 0.495235 Vertex 22824 0.460768 0.558288 0.432769 Vertex 22825 0.538675 0.403162 0.449098 Vertex 22826 0.542614 0.400686 0.449684 Vertex 22827 0.331263 0.920263 0.26357 Vertex 22828 0.385468 0.316851 0.202703 Vertex 22829 0.362831 0.286681 0.230261 Vertex 22830 0.554311 0.555735 0.493358 Vertex 22831 0.360995 0.37539 0.480002 Vertex 22832 0.359888 0.376735 0.480369 Vertex 22833 0.464843 0.316389 0.422321 Vertex 22834 0.373178 0.332309 0.262261 Vertex 22835 0.671301 0.47492 0.195448 Vertex 22836 0.430563 0.46773 0.600285 Vertex 22837 0.387831 0.351338 0.447931 Vertex 22838 0.494978 0.301801 0.446877 Vertex 22839 0.362482 0.221134 0.559733 Vertex 22840 0.509891 0.576251 0.401645 Vertex 22841 0.370329 0.364629 0.567711 Vertex 22842 0.525556 0.0382722 0.643864 Vertex 22843 0.428744 0.154641 0.725141 Vertex 22844 0.54808 0.00846348 0.764266 Vertex 22845 0.505781 0.330088 0.596542 Vertex 22846 0.677259 0.454197 0.19607 Vertex 22847 0.402164 0.186783 0.723027 Vertex 22848 0.394239 0.355496 0.327156 Vertex 22849 0.372669 0.33328 0.60102 Vertex 22850 0.590972 0.476135 0.449862 Vertex 22851 0.449912 0.13711 0.639185 Vertex 22852 0.605743 0.466244 0.390996 Vertex 22853 0.417959 0.196668 0.477473 Vertex 22854 0.445796 0.125738 0.745835 Vertex 22855 0.389566 0.333825 0.45582 Vertex 22856 0.672717 0.450371 0.193671 Vertex 22857 0.594774 0.443199 0.412282 Vertex 22858 0.47654 0.13352 0.646322 Vertex 22859 0.531568 0.073062 0.795976 Vertex 22860 0.435419 0.513299 0.449589 Vertex 22861 0.346674 0.258281 0.216989 Vertex 22862 0.367244 0.881061 0.310958 Vertex 22863 0.463753 0.400224 0.385435 Vertex 22864 0.386753 0.307955 0.451508 Vertex 22865 0.595633 0.481927 0.284418 Vertex 22866 0.499035 0.646956 0.549854 Vertex 22867 0.396211 0.878976 0.328459 Vertex 22868 0.496695 0.208762 0.496763 Vertex 22869 0.514131 0.312782 0.474316 Vertex 22870 0.469534 0.813809 0.455743 Vertex 22871 0.402104 0.839348 0.374976 Vertex 22872 0.398456 0.842126 0.380863 Vertex 22873 0.487586 0.601624 0.403345 Vertex 22874 0.483665 0.0802758 0.72863 Vertex 22875 0.530999 0.104126 0.721262 Vertex 22876 0.383922 0.247307 0.22313 Vertex 22877 0.539587 0.157146 0.447564 Vertex 22878 0.37948 0.350213 0.370693 Vertex 22879 0.506787 0.108752 0.796716 Vertex 22880 0.340236 0.0988788 0.451556 Vertex 22881 0.61946 0.534899 0.250606 Vertex 22882 0.486437 0.0692063 0.752433 Vertex 22883 0.516062 0.291348 0.534461 Vertex 22884 0.44881 0.384446 0.409209 Vertex 22885 0.338258 0.284193 0.227466 Vertex 22886 0.535299 0.103771 0.787217 Vertex 22887 0.417882 0.170869 0.569689 Vertex 22888 0.5156 0.31338 0.559271 Vertex 22889 0.515304 0.310034 0.559295 Vertex 22890 0.494468 0.465344 0.389 Vertex 22891 0.560541 0.401799 0.398494 Vertex 22892 0.669507 0.479896 0.192315 Vertex 22893 0.400428 0.306397 0.627441 Vertex 22894 0.357655 0.124731 0.458112 Vertex 22895 0.3539 0.108888 0.470781 Vertex 22896 0.365875 0.252187 0.228769 Vertex 22897 0.553624 0.522414 0.443726 Vertex 22898 0.481231 0.558394 0.398992 Vertex 22899 0.490162 0.393365 0.615175 Vertex 22900 0.446477 0.419253 0.397855 Vertex 22901 0.478483 0.740078 0.397351 Vertex 22902 0.428964 0.543783 0.503557 Vertex 22903 0.490755 0.578638 0.39577 Vertex 22904 0.489949 0.59762 0.400597 Vertex 22905 0.396075 0.291644 0.239643 Vertex 22906 0.39527 0.293575 0.2394 Vertex 22907 0.394553 0.290613 0.236901 Vertex 22908 0.438511 0.176525 0.791422 Vertex 22909 0.475859 0.720385 0.412282 Vertex 22910 0.380931 0.404844 0.571863 Vertex 22911 0.421815 0.46099 0.600285 Vertex 22912 0.52757 0.651866 0.436169 Vertex 22913 0.680795 0.455571 0.193292 Vertex 22914 0.347249 0.944878 0.293385 Vertex 22915 0.479537 0.228698 0.483538 Vertex 22916 0.440252 0.167061 0.567563 Vertex 22917 0.499242 0.0385151 0.632795 Vertex 22918 0.501297 0.0331018 0.632523 Vertex 22919 0.550461 0.553094 0.534461 Vertex 22920 0.418877 0.840686 0.347542 Vertex 22921 0.393736 0.870815 0.390973 Vertex 22922 0.514753 0.340215 0.579917 Vertex 22923 0.456581 0.698519 0.457887 Vertex 22924 0.456996 0.696357 0.455737 Vertex 22925 0.530395 0.475157 0.589619 Vertex 22926 0.366953 0.211984 0.481376 Vertex 22927 0.676963 0.459824 0.190325 Vertex 22928 0.45478 0.173273 0.625729 Vertex 22929 0.471163 0.621725 0.532856 Vertex 22930 0.370945 0.213903 0.229799 Vertex 22931 0.372864 0.21485 0.229337 Vertex 22932 0.497104 0.718247 0.410885 Vertex 22933 0.353077 0.409084 0.492896 Vertex 22934 0.458038 0.580616 0.5462 Vertex 22935 0.543022 0.150341 0.429026 Vertex 22936 0.371917 0.414723 0.557465 Vertex 22937 0.577101 0.456063 0.495069 Vertex 22938 0.574685 0.454594 0.499269 Vertex 22939 0.57186 0.457502 0.507531 Vertex 22940 0.504312 0.0893315 0.799636 Vertex 22941 0.440756 0.841231 0.436767 Vertex 22942 0.338074 0.244872 0.217776 Vertex 22943 0.527357 0.399543 0.488697 Vertex 22944 0.482469 0.221383 0.49459 Vertex 22945 0.356186 0.41968 0.47922 Vertex 22946 0.449657 0.335116 0.416606 Vertex 22947 0.455675 0.337076 0.414444 Vertex 22948 0.37884 0.904592 0.362574 Vertex 22949 0.575407 0.504842 0.339724 Vertex 22950 0.517667 0.0225535 0.731425 Vertex 22951 0.519409 0.0208596 0.731283 Vertex 22952 0.506 0.445325 0.605343 Vertex 22953 0.420376 0.373122 0.339588 Vertex 22954 0.363358 0.408788 0.3665 Vertex 22955 0.476647 0.223379 0.485232 Vertex 22956 0.624305 0.53837 0.283607 Vertex 22957 0.370394 0.416428 0.399744 Vertex 22958 0.538343 0.398471 0.427966 Vertex 22959 0.517963 0.704039 0.434984 Vertex 22960 0.636109 0.48095 0.228467 Vertex 22961 0.382785 0.904817 0.313457 Vertex 22962 0.427222 0.860669 0.414403 Vertex 22963 0.402472 0.319243 0.206381 Vertex 22964 0.361196 0.143174 0.475092 Vertex 22965 0.345543 0.124092 0.472474 Vertex 22966 0.537739 0.00669261 0.731372 Vertex 22967 0.453329 0.240857 0.760334 Vertex 22968 0.454058 0.242859 0.7562 Vertex 22969 0.388772 0.884082 0.386673 Vertex 22970 0.453193 0.82537 0.451496 Vertex 22971 0.4629 0.197361 0.660791 Vertex 22972 0.461882 0.200749 0.656651 Vertex 22973 0.516678 0.151537 0.455956 Vertex 22974 0.551687 0.559792 0.481483 Vertex 22975 0.551948 0.55801 0.481424 Vertex 22976 0.47381 0.216852 0.48477 Vertex 22977 0.327088 0.236261 0.219571 Vertex 22978 0.605181 0.510912 0.200553 Vertex 22979 0.49339 0.0507572 0.723074 Vertex 22980 0.523377 0.652239 0.430506 Vertex 22981 0.450404 0.106792 0.721546 Vertex 22982 0.351128 0.150886 0.455636 Vertex 22983 0.399558 0.354542 0.442026 Vertex 22984 0.519563 0.110695 0.679477 Vertex 22985 0.51133 0.0463211 0.666578 Vertex 22986 0.515044 0.0486073 0.667371 Vertex 22987 0.463131 0.163537 0.658114 Vertex 22988 0.463499 0.164934 0.658339 Vertex 22989 0.369346 0.366222 0.238014 Vertex 22990 0.368677 0.370137 0.242178 Vertex 22991 0.5406 0.163969 0.433444 Vertex 22992 0.562934 0.546401 0.486339 Vertex 22993 0.401139 0.861404 0.336147 Vertex 22994 0.414583 0.419502 0.372802 Vertex 22995 0.589865 0.484154 0.404601 Vertex 22996 0.58868 0.485871 0.402954 Vertex 22997 0.514309 0.127604 0.681544 Vertex 22998 0.542525 0.154096 0.445372 Vertex 22999 0.512935 0.0827988 0.686105 Vertex 23000 0.403994 0.178699 0.590454 Vertex 23001 0.486538 0.202816 0.764491 Vertex 23002 0.539907 0.0665648 0.7934 Vertex 23003 0.465483 0.198954 0.675349 Vertex 23004 0.407583 0.362277 0.252536 Vertex 23005 0.354729 0.927122 0.326078 Vertex 23006 0.355659 0.319397 0.535746 Vertex 23007 0.430113 0.23115 0.781922 Vertex 23008 0.542661 0.398009 0.48477 Vertex 23009 0.411948 0.170975 0.716843 Vertex 23010 0.465672 0.548598 0.425342 Vertex 23011 0.414275 0.156139 0.694018 Vertex 23012 0.500462 0.187855 0.509912 Vertex 23013 0.635943 0.474334 0.183851 Vertex 23014 0.362849 0.346174 0.553698 Vertex 23015 0.364116 0.349295 0.553994 Vertex 23016 0.379272 0.482205 0.515206 Vertex 23017 0.372337 0.337361 0.492985 Vertex 23018 0.624021 0.500181 0.302139 Vertex 23019 0.405042 0.516432 0.501341 Vertex 23020 0.365579 0.20506 0.215869 Vertex 23021 0.396703 0.259466 0.685832 Vertex 23022 0.638845 0.504706 0.192102 Vertex 23023 0.471163 0.515876 0.601103 Vertex 23024 0.388725 0.355312 0.364516 Vertex 23025 0.440347 0.16574 0.546881 Vertex 23026 0.504152 0.672536 0.540484 Vertex 23027 0.535951 0.499292 0.582121 Vertex 23028 0.493663 0.182507 0.52823 Vertex 23029 0.489381 0.560823 0.386661 Vertex 23030 0.490162 0.773648 0.416434 Vertex 23031 0.528565 0.593871 0.431199 Vertex 23032 0.511306 0.330958 0.584051 Vertex 23033 0.477198 0.183964 0.796112 Vertex 23034 0.487379 0.103285 0.806128 Vertex 23035 0.416153 0.171657 0.496189 Vertex 23036 0.63355 0.515366 0.208715 Vertex 23037 0.371052 0.411862 0.551151 Vertex 23038 0.357732 0.350947 0.41005 Vertex 23039 0.383347 0.229799 0.640139 Vertex 23040 0.646935 0.423672 0.202004 Vertex 23041 0.389702 0.283607 0.193866 Vertex 23042 0.547014 0.131193 0.443305 Vertex 23043 0.457635 0.72398 0.44112 Vertex 23044 0.53033 0.14671 0.789781 Vertex 23045 0.538716 0.116777 0.432058 Vertex 23046 0.561519 0.0246679 0.740191 Vertex 23047 0.358123 0.0855528 0.441523 Vertex 23048 0.359917 0.103256 0.466943 Vertex 23049 0.379219 0.273313 0.461979 Vertex 23050 0.55344 0.145123 0.414474 Vertex 23051 0.443995 0.792233 0.397932 Vertex 23052 0.4983 0.453723 0.387502 Vertex 23053 0.497732 0.455423 0.387514 Vertex 23054 0.353746 0.214092 0.497249 Vertex 23055 0.512858 0.749507 0.474269 Vertex 23056 0.448579 0.108349 0.662035 Vertex 23057 0.365692 0.37375 0.318882 Vertex 23058 0.352366 0.204622 0.513761 Vertex 23059 0.352988 0.206719 0.524096 Vertex 23060 0.470517 0.364066 0.414172 Vertex 23061 0.433258 0.51327 0.454955 Vertex 23062 0.517727 0.0547254 0.73107 Vertex 23063 0.525094 0.0455038 0.728902 Vertex 23064 0.499443 0.584271 0.571045 Vertex 23065 0.516122 0.739403 0.482584 Vertex 23066 0.550449 0.457733 0.353488 Vertex 23067 0.36411 0.414148 0.322151 Vertex 23068 0.364294 0.0889762 0.470372 Vertex 23069 0.406446 0.263843 0.225203 Vertex 23070 0.422727 0.874481 0.364107 Vertex 23071 0.372681 0.381183 0.544772 Vertex 23072 0.372023 0.379797 0.542782 Vertex 23073 0.371751 0.376966 0.542273 Vertex 23074 0.366586 0.318059 0.493127 Vertex 23075 0.39935 0.319972 0.212961 Vertex 23076 0.355659 0.255385 0.540828 Vertex 23077 0.407749 0.382071 0.621868 Vertex 23078 0.412534 0.16253 0.629911 Vertex 23079 0.508327 0.101568 0.648277 Vertex 23080 0.410929 0.378055 0.38364 Vertex 23081 0.515914 0.611663 0.54893 Vertex 23082 0.476416 0.210432 0.582056 Vertex 23083 0.609871 0.51539 0.335436 Vertex 23084 0.50427 0.376095 0.596542 Vertex 23085 0.329267 0.26065 0.234016 Vertex 23086 0.453975 0.158218 0.510427 Vertex 23087 0.517247 0.349704 0.464692 Vertex 23088 0.411658 0.183828 0.745829 Vertex 23089 0.500018 0.0632955 0.728215 Vertex 23090 0.47333 0.177289 0.557234 Vertex 23091 0.477654 0.175506 0.548948 Vertex 23092 0.475533 0.180469 0.559295 Vertex 23093 0.457315 0.769952 0.399786 Vertex 23094 0.544586 0.611539 0.46972 Vertex 23095 0.544817 0.576435 0.515787 Vertex 23096 0.496263 0.182608 0.519933 Vertex 23097 0.429473 0.495756 0.437827 Vertex 23098 0.424912 0.503888 0.446107 Vertex 23099 0.404675 0.160652 0.671008 Vertex 23100 0.360788 0.355899 0.439077 Vertex 23101 0.526729 0.392323 0.445372 Vertex 23102 0.471719 0.405987 0.620861 Vertex 23103 0.5259 0.133941 0.706455 Vertex 23104 0.521174 0.0916414 0.718727 Vertex 23105 0.372029 0.332137 0.213311 Vertex 23106 0.421335 0.386993 0.313433 Vertex 23107 0.484725 0.571715 0.402534 Vertex 23108 0.482196 0.178296 0.481388 Vertex 23109 0.517478 0.119454 0.689753 Vertex 23110 0.481723 0.806927 0.444194 Vertex 23111 0.482374 0.457295 0.607233 Vertex 23112 0.368369 0.205303 0.224712 Vertex 23113 0.457546 0.737549 0.466054 Vertex 23114 0.455935 0.742329 0.46192 Vertex 23115 0.458974 0.745278 0.468074 Vertex 23116 0.416562 0.39715 0.303039 Vertex 23117 0.552019 0.556932 0.53038 Vertex 23118 0.468296 0.381591 0.402303 Vertex 23119 0.490684 0.718715 0.403742 Vertex 23120 0.372989 0.359026 0.475412 Vertex 23121 0.442532 0.332729 0.642727 Vertex 23122 0.412587 0.264536 0.685696 Vertex 23123 0.386178 0.244813 0.681574 Vertex 23124 0.483032 0.177952 0.479214 Vertex 23125 0.393706 0.344888 0.275214 Vertex 23126 0.607496 0.502911 0.195442 Vertex 23127 0.412439 0.375757 0.404275 Vertex 23128 0.547932 0.543114 0.443631 Vertex 23129 0.302752 0.98957 0.216112 Vertex 23130 0.363619 0.179137 0.456702 Vertex 23131 0.350642 0.276547 0.197266 Vertex 23132 0.528417 0.511552 0.416991 Vertex 23133 0.461663 0.487127 0.613594 Vertex 23134 0.58826 0.451544 0.452882 Vertex 23135 0.501125 0.579426 0.571703 Vertex 23136 0.472033 0.217492 0.776929 Vertex 23137 0.493509 0.236699 0.501288 Vertex 23138 0.359467 0.287036 0.561936 Vertex 23139 0.597754 0.430542 0.361022 Vertex 23140 0.598162 0.432769 0.354122 Vertex 23141 0.550734 0.047251 0.791167 Vertex 23142 0.558386 0.0243184 0.760097 Vertex 23143 0.511443 0.289103 0.483674 Vertex 23144 0.495132 0.182033 0.734724 Vertex 23145 0.443255 0.545756 0.453658 Vertex 23146 0.541826 0.160392 0.430589 Vertex 23147 0.408536 0.473647 0.593936 Vertex 23148 0.444049 0.341139 0.641383 Vertex 23149 0.601343 0.534597 0.264494 Vertex 23150 0.552753 0.471059 0.358262 Vertex 23151 0.428217 0.800975 0.428848 Vertex 23152 0.349144 0.309578 0.223403 Vertex 23153 0.430474 0.44889 0.399691 Vertex 23154 0.534855 0.0819578 0.789319 Vertex 23155 0.577255 0.506968 0.488827 Vertex 23156 0.328349 0.919582 0.275564 Vertex 23157 0.374001 0.922881 0.319794 Vertex 23158 0.545735 0.623976 0.48846 Vertex 23159 0.305417 0.969421 0.245447 Vertex 23160 0.523655 0.579882 0.425531 Vertex 23161 0.473372 0.150205 0.800454 Vertex 23162 0.511887 0.529326 0.400313 Vertex 23163 0.515547 0.530617 0.40344 Vertex 23164 0.513302 0.528159 0.402167 Vertex 23165 0.552155 0.438822 0.5324 Vertex 23166 0.480171 0.225298 0.588345 Vertex 23167 0.519296 0.310194 0.48564 Vertex 23168 0.504614 0.16173 0.713065 Vertex 23169 0.40686 0.173652 0.536635 Vertex 23170 0.437463 0.425371 0.634595 Vertex 23171 0.324221 0.237185 0.230694 Vertex 23172 0.324476 0.23603 0.22868 Vertex 23173 0.582574 0.482922 0.482614 Vertex 23174 0.509494 0.18943 0.460594 Vertex 23175 0.506586 0.190573 0.46009 Vertex 23176 0.507457 0.188714 0.45935 Vertex 23177 0.354433 0.210788 0.489117 Vertex 23178 0.355475 0.215413 0.493494 Vertex 23179 0.49849 0.306717 0.60282 Vertex 23180 0.49339 0.520347 0.386797 Vertex 23181 0.482208 0.55076 0.393389 Vertex 23182 0.429473 0.816001 0.441007 Vertex 23183 0.454656 0.790433 0.380241 Vertex 23184 0.45616 0.794786 0.377522 Vertex 23185 0.520415 0.52903 0.407752 Vertex 23186 0.466572 0.368508 0.407864 Vertex 23187 0.423236 0.256203 0.21838 Vertex 23188 0.472691 0.150927 0.652511 Vertex 23189 0.47625 0.144643 0.649609 Vertex 23190 0.354871 0.314292 0.537073 Vertex 23191 0.443788 0.169738 0.567373 Vertex 23192 0.512177 0.173084 0.760292 Vertex 23193 0.503032 0.101763 0.640269 Vertex 23194 0.49984 0.681379 0.537795 Vertex 23195 0.567933 0.429275 0.486789 Vertex 23196 0.606969 0.499861 0.198622 Vertex 23197 0.515411 0.351824 0.475975 Vertex 23198 0.544568 0.147391 0.430957 Vertex 23199 0.44226 0.50929 0.433717 Vertex 23200 0.418925 0.486795 0.426414 Vertex 23201 0.373148 0.392062 0.522941 Vertex 23202 0.419304 0.389397 0.354507 Vertex 23203 0.42053 0.391079 0.350414 Vertex 23204 0.424782 0.16722 0.764503 Vertex 23205 0.42435 0.864235 0.358001 Vertex 23206 0.482427 0.323093 0.629395 Vertex 23207 0.487746 0.598651 0.401633 Vertex 23208 0.456066 0.131436 0.799512 Vertex 23209 0.458393 0.221792 0.652511 Vertex 23210 0.498028 0.572354 0.391855 Vertex 23211 0.428839 0.260526 0.667063 Vertex 23212 0.432985 0.256801 0.6629 Vertex 23213 0.430201 0.258743 0.660833 Vertex 23214 0.467141 0.187825 0.571892 Vertex 23215 0.413328 0.422315 0.608891 Vertex 23216 0.404041 0.42331 0.605675 Vertex 23217 0.409964 0.419319 0.608755 Vertex 23218 0.51778 0.36916 0.461968 Vertex 23219 0.516678 0.612593 0.425354 Vertex 23220 0.525627 0.335566 0.501383 Vertex 23221 0.510021 0.322365 0.457342 Vertex 23222 0.479934 0.0761358 0.707349 Vertex 23223 0.539676 0.146983 0.444596 Vertex 23224 0.554121 0.552697 0.465379 Vertex 23225 0.555371 0.537938 0.460777 Vertex 23226 0.448052 0.549659 0.443483 Vertex 23227 0.360729 0.236291 0.555972 Vertex 23228 0.445642 0.368881 0.640666 Vertex 23229 0.644045 0.422167 0.204119 Vertex 23230 0.582384 0.501495 0.461885 Vertex 23231 0.48655 0.482182 0.388266 Vertex 23232 0.504016 0.708149 0.51372 Vertex 23233 0.486763 0.377913 0.425152 Vertex 23234 0.518976 0.335122 0.483402 Vertex 23235 0.510542 0.312835 0.464224 Vertex 23236 0.409354 0.366731 0.291928 Vertex 23237 0.551426 0.455512 0.348726 Vertex 23238 0.454982 0.183733 0.62769 Vertex 23239 0.629007 0.445692 0.197971 Vertex 23240 0.420844 0.177816 0.76859 Vertex 23241 0.419884 0.181014 0.768584 Vertex 23242 0.392267 0.879136 0.390712 Vertex 23243 0.45478 0.0915584 0.727836 Vertex 23244 0.487746 0.407455 0.389231 Vertex 23245 0.409839 0.840686 0.362479 Vertex 23246 0.393214 0.256759 0.218072 Vertex 23247 0.525829 0.558809 0.569849 Vertex 23248 0.517045 0.552229 0.576542 Vertex 23249 0.399717 0.428149 0.350805 Vertex 23250 0.375375 0.234697 0.236 Vertex 23251 0.544041 0.0738497 0.754002 Vertex 23252 0.363951 0.218949 0.230149 Vertex 23253 0.365123 0.221288 0.228171 Vertex 23254 0.366556 0.221774 0.230285 Vertex 23255 0.319809 0.961361 0.210711 Vertex 23256 0.462409 0.213506 0.654549 Vertex 23257 0.479152 0.606954 0.426769 Vertex 23258 0.461811 0.38691 0.39776 Vertex 23259 0.438831 0.134036 0.631954 Vertex 23260 0.438173 0.225055 0.465178 Vertex 23261 0.504199 0.633287 0.556138 Vertex 23262 0.507551 0.394811 0.44674 Vertex 23263 0.356494 0.888909 0.316916 Vertex 23264 0.47182 0.558999 0.425407 Vertex 23265 0.472086 0.56411 0.424838 Vertex 23266 0.470943 0.564495 0.425733 Vertex 23267 0.544207 0.141202 0.44674 Vertex 23268 0.621569 0.480026 0.360886 Vertex 23269 0.418925 0.394947 0.306587 Vertex 23270 0.502085 0.154504 0.68062 Vertex 23271 0.397953 0.36467 0.368585 Vertex 23272 0.678456 0.460155 0.216337 Vertex 23273 0.478453 0.0886741 0.764094 Vertex 23274 0.518947 0.0751586 0.785286 Vertex 23275 0.510898 0.687633 0.423204 Vertex 23276 0.320052 0.966454 0.204284 Vertex 23277 0.544082 0.057586 0.785185 Vertex 23278 0.322131 0.246406 0.226015 Vertex 23279 0.406629 0.358102 0.242172 Vertex 23280 0.393617 0.184017 0.633914 Vertex 23281 0.447365 0.434569 0.633766 Vertex 23282 0.490684 0.100893 0.801176 Vertex 23283 0.612661 0.537659 0.254532 Vertex 23284 0.434401 0.152846 0.743756 Vertex 23285 0.4689 0.186712 0.680046 Vertex 23286 0.536632 0.159823 0.451556 Vertex 23287 0.532059 0.160937 0.455684 Vertex 23288 0.326217 0.265069 0.230883 Vertex 23289 0.482208 0.0655342 0.69946 Vertex 23290 0.635445 0.450247 0.188453 Vertex 23291 0.640426 0.448097 0.189484 Vertex 23292 0.502843 0.0372654 0.72918 Vertex 23293 0.493758 0.562576 0.382823 Vertex 23294 0.536709 0.138703 0.444135 Vertex 23295 0.498413 0.618788 0.407947 Vertex 23296 0.570385 0.502716 0.352019 Vertex 23297 0.486117 0.131329 0.796989 Vertex 23298 0.419641 0.870951 0.400301 Vertex 23299 0.524757 0.34204 0.517895 Vertex 23300 0.523993 0.350959 0.519986 Vertex 23301 0.544858 0.0262492 0.728079 Vertex 23302 0.544219 0.535646 0.561439 Vertex 23303 0.508327 0.0187689 0.64852 Vertex 23304 0.656838 0.496751 0.192966 Vertex 23305 0.522092 0.357137 0.553082 Vertex 23306 0.475895 0.400325 0.622253 Vertex 23307 0.617257 0.471793 0.334814 Vertex 23308 0.617991 0.474198 0.332948 Vertex 23309 0.617079 0.472255 0.332788 Vertex 23310 0.514516 0.553123 0.576536 Vertex 23311 0.5449 0.598787 0.507939 Vertex 23312 0.44884 0.61896 0.483485 Vertex 23313 0.439956 0.161481 0.577394 Vertex 23314 0.592832 0.510445 0.261965 Vertex 23315 0.536004 0.602116 0.53455 Vertex 23316 0.590107 0.439473 0.204687 Vertex 23317 0.52099 0.436536 0.415658 Vertex 23318 0.447312 0.483544 0.604046 Vertex 23319 0.44441 0.484811 0.599202 Vertex 23320 0.476457 0.113484 0.650474 Vertex 23321 0.477689 0.540277 0.586444 Vertex 23322 0.4049 0.389995 0.617728 Vertex 23323 0.496885 0.100508 0.810801 Vertex 23324 0.398936 0.357818 0.314724 Vertex 23325 0.552789 0.56594 0.474079 Vertex 23326 0.454899 0.810078 0.472006 Vertex 23327 0.398539 0.362562 0.235675 Vertex 23328 0.357838 0.927015 0.326812 Vertex 23329 0.386338 0.243457 0.6318 Vertex 23330 0.38728 0.245086 0.633867 Vertex 23331 0.500776 0.51205 0.597893 Vertex 23332 0.579909 0.426473 0.341039 Vertex 23333 0.528494 0.498043 0.415943 Vertex 23334 0.362334 0.440895 0.521935 Vertex 23335 0.633526 0.450158 0.196644 Vertex 23336 0.481403 0.45441 0.379151 Vertex 23337 0.458376 0.191977 0.629496 Vertex 23338 0.495635 0.407669 0.409238 Vertex 23339 0.44515 0.258471 0.633014 Vertex 23340 0.496695 0.510912 0.389759 Vertex 23341 0.445742 0.361999 0.640471 Vertex 23342 0.497868 0.149553 0.66566 Vertex 23343 0.452086 0.234383 0.681568 Vertex 23344 0.427578 0.396653 0.63437 Vertex 23345 0.552872 0.462234 0.372784 Vertex 23346 0.433453 0.165983 0.513732 Vertex 23347 0.536863 0.636313 0.447439 Vertex 23348 0.507344 0.51276 0.397867 Vertex 23349 0.576426 0.510178 0.435037 Vertex 23350 0.40814 0.229936 0.754168 Vertex 23351 0.49509 0.376267 0.438413 Vertex 23352 0.491993 0.652192 0.534325 Vertex 23353 0.492739 0.649201 0.536339 Vertex 23354 0.423142 0.370539 0.63758 Vertex 23355 0.418812 0.384718 0.302838 Vertex 23356 0.535453 0.672252 0.459397 Vertex 23357 0.677745 0.466179 0.193209 Vertex 23358 0.484654 0.212553 0.492801 Vertex 23359 0.350459 0.283364 0.195466 Vertex 23360 0.451707 0.597182 0.513542 Vertex 23361 0.35936 0.348839 0.408231 Vertex 23362 0.3591 0.299053 0.497119 Vertex 23363 0.359811 0.30314 0.493719 Vertex 23364 0.470185 0.807839 0.463081 Vertex 23365 0.531781 0.563737 0.432384 Vertex 23366 0.335279 0.952471 0.258222 Vertex 23367 0.433169 0.792505 0.432876 Vertex 23368 0.367871 0.87826 0.331219 Vertex 23369 0.365188 0.880256 0.331343 Vertex 23370 0.371182 0.210639 0.214211 Vertex 23371 0.425297 0.854901 0.430797 Vertex 23372 0.491448 0.57846 0.394615 Vertex 23373 0.404077 0.249794 0.737525 Vertex 23374 0.32245 0.955847 0.220495 Vertex 23375 0.511389 0.291075 0.563429 Vertex 23376 0.441218 0.567071 0.528266 Vertex 23377 0.4576 0.765634 0.408107 Vertex 23378 0.494107 0.0830713 0.715244 Vertex 23379 0.445411 0.592592 0.479907 Vertex 23380 0.492004 0.604236 0.401035 Vertex 23381 0.491009 0.735002 0.405033 Vertex 23382 0.541269 0.655212 0.470182 Vertex 23383 0.528073 0.484563 0.411388 Vertex 23384 0.523258 0.143625 0.457058 Vertex 23385 0.42936 0.83721 0.353447 Vertex 23386 0.501647 0.0950706 0.812092 Vertex 23387 0.473923 0.739278 0.400911 Vertex 23388 0.49493 0.16298 0.790681 Vertex 23389 0.419434 0.381129 0.629757 Vertex 23390 0.533475 0.586989 0.542895 Vertex 23391 0.523217 0.644966 0.528402 Vertex 23392 0.5242 0.648004 0.524043 Vertex 23393 0.479247 0.138946 0.798351 Vertex 23394 0.463558 0.10614 0.654584 Vertex 23395 0.362097 0.250434 0.214158 Vertex 23396 0.592014 0.498345 0.271228 Vertex 23397 0.376329 0.389314 0.561403 Vertex 23398 0.441176 0.531512 0.449903 Vertex 23399 0.479833 0.176566 0.493956 Vertex 23400 0.449438 0.639399 0.466463 Vertex 23401 0.351193 0.194725 0.476235 Vertex 23402 0.514593 0.317911 0.475003 Vertex 23403 0.39245 0.279988 0.23083 Vertex 23404 0.34087 0.929212 0.311757 Vertex 23405 0.529613 0.664961 0.441309 Vertex 23406 0.423509 0.264482 0.704364 Vertex 23407 0.545486 0.039901 0.711632 Vertex 23408 0.489102 0.568516 0.391227 Vertex 23409 0.373048 0.921655 0.311254 Vertex 23410 0.431647 0.260414 0.712644 Vertex 23411 0.400499 0.243522 0.731289 Vertex 23412 0.531283 0.0661857 0.708771 Vertex 23413 0.560269 0.512701 0.43082 Vertex 23414 0.675252 0.451745 0.209775 Vertex 23415 0.678165 0.450116 0.210195 Vertex 23416 0.551592 0.553171 0.457395 Vertex 23417 0.45346 0.112353 0.656782 Vertex 23418 0.443373 0.828545 0.456152 Vertex 23419 0.441674 0.462347 0.41031 Vertex 23420 0.411006 0.263434 0.690168 Vertex 23421 0.523164 0.332042 0.490598 Vertex 23422 0.552789 0.520318 0.441457 Vertex 23423 0.448378 0.177366 0.590436 Vertex 23424 0.552066 0.398992 0.43066 Vertex 23425 0.352437 0.892456 0.314914 Vertex 23426 0.522867 0.03017 0.634234 Vertex 23427 0.528103 0.400923 0.472617 Vertex 23428 0.479466 0.592319 0.424305 Vertex 23429 0.395655 0.179397 0.486292 Vertex 23430 0.449569 0.0799974 0.67471 Vertex 23431 0.388885 0.288949 0.449672 Vertex 23432 0.528784 0.476496 0.408077 Vertex 23433 0.485341 0.0434664 0.64387 Vertex 23434 0.485022 0.0402326 0.648164 Vertex 23435 0.484115 0.367323 0.425952 Vertex 23436 0.494291 0.708125 0.524274 Vertex 23437 0.50456 0.40248 0.442666 Vertex 23438 0.446311 0.3275 0.638783 Vertex 23439 0.329552 0.938167 0.293249 Vertex 23440 0.448396 0.261491 0.631711 Vertex 23441 0.643174 0.438449 0.214975 Vertex 23442 0.548815 0.399081 0.443009 Vertex 23443 0.462136 0.126502 0.811109 Vertex 23444 0.664129 0.457994 0.206648 Vertex 23445 0.533664 0.114787 0.43127 Vertex 23446 0.433263 0.497634 0.439515 Vertex 23447 0.595408 0.520152 0.318148 Vertex 23448 0.594999 0.520863 0.316276 Vertex 23449 0.433838 0.466706 0.413183 Vertex 23450 0.391763 0.462276 0.415439 Vertex 23451 0.55376 0.000266531 0.754091 Vertex 23452 0.446666 0.424051 0.637314 Vertex 23453 0.514842 0.700598 0.428765 Vertex 23454 0.553251 0.412709 0.391447 Vertex 23455 0.548708 0.151158 0.419467 Vertex 23456 0.473271 0.535089 0.412271 Vertex 23457 0.536472 0.0503189 0.722429 Vertex 23458 0.448194 0.172486 0.567551 Vertex 23459 0.480775 0.178894 0.704714 Vertex 23460 0.538942 0.596347 0.528367 Vertex 23461 0.565274 0.467671 0.322815 Vertex 23462 0.625164 0.497847 0.297353 Vertex 23463 0.554068 0.464064 0.376977 Vertex 23464 0.450421 0.199185 0.80149 Vertex 23465 0.514813 0.315482 0.567586 Vertex 23466 0.552185 0.398945 0.468169 Vertex 23467 0.444593 0.571809 0.468222 Vertex 23468 0.605725 0.504475 0.220773 Vertex 23469 0.456545 0.23799 0.729257 Vertex 23470 0.479206 0.062182 0.69753 Vertex 23471 0.393416 0.34878 0.442328 Vertex 23472 0.455698 0.484989 0.406976 Vertex 23473 0.451037 0.483159 0.411631 Vertex 23474 0.502641 0.261041 0.567563 Vertex 23475 0.485501 0.192291 0.725177 Vertex 23476 0.66176 0.483485 0.219488 Vertex 23477 0.570225 0.403541 0.391447 Vertex 23478 0.394239 0.267764 0.226044 Vertex 23479 0.354362 0.372417 0.459356 Vertex 23480 0.355558 0.368259 0.454221 Vertex 23481 0.357631 0.385601 0.372731 Vertex 23482 0.526415 0.147131 0.774903 Vertex 23483 0.412724 0.193067 0.760375 Vertex 23484 0.464097 0.801721 0.389445 Vertex 23485 0.422816 0.258104 0.221448 Vertex 23486 0.417314 0.440895 0.387703 Vertex 23487 0.30454 0.956534 0.22727 Vertex 23488 0.531692 0.132105 0.783029 Vertex 23489 0.390745 0.352357 0.408285 Vertex 23490 0.41986 0.173682 0.760351 Vertex 23491 0.418735 0.174144 0.756158 Vertex 23492 0.343559 0.271963 0.200204 Vertex 23493 0.35692 0.427592 0.467624 Vertex 23494 0.484808 0.203822 0.741606 Vertex 23495 0.375778 0.314091 0.468086 Vertex 23496 0.455479 0.244517 0.452474 Vertex 23497 0.446281 0.532341 0.439023 Vertex 23498 0.450747 0.351853 0.413224 Vertex 23499 0.366728 0.214039 0.230451 Vertex 23500 0.464257 0.211629 0.667099 Vertex 23501 0.504614 0.0549741 0.681331 Vertex 23502 0.562188 0.416724 0.497136 Vertex 23503 0.51688 0.421344 0.429298 Vertex 23504 0.600431 0.522918 0.205889 Vertex 23505 0.396886 0.891592 0.328311 Vertex 23506 0.516062 0.546472 0.404506 Vertex 23507 0.441431 0.130121 0.639268 Vertex 23508 0.440892 0.49934 0.430536 Vertex 23509 0.403952 0.16446 0.629336 Vertex 23510 0.460342 0.158206 0.528219 Vertex 23511 0.475261 0.511665 0.406733 Vertex 23512 0.477701 0.618592 0.537819 Vertex 23513 0.453353 0.606717 0.45354 Vertex 23514 0.453922 0.593172 0.522029 Vertex 23515 0.456587 0.595891 0.526341 Vertex 23516 0.523187 0.391133 0.457721 Vertex 23517 0.474065 0.102438 0.782899 Vertex 23518 0.606051 0.499541 0.20108 Vertex 23519 0.405054 0.262729 0.698306 Vertex 23520 0.511401 0.543167 0.398317 Vertex 23521 0.47365 0.216076 0.731336 Vertex 23522 0.526729 0.160557 0.439515 Vertex 23523 0.601568 0.435665 0.202733 Vertex 23524 0.515482 0.731064 0.441961 Vertex 23525 0.453922 0.505239 0.419099 Vertex 23526 0.520623 0.45932 0.596542 Vertex 23527 0.491975 0.126923 0.796669 Vertex 23528 0.471435 0.290732 0.630041 Vertex 23529 0.477399 0.607185 0.544429 Vertex 23530 0.321011 0.253614 0.218836 Vertex 23531 0.353503 0.408788 0.479955 Vertex 23532 0.558794 0.00668669 0.739865 Vertex 23533 0.623091 0.490177 0.258341 Vertex 23534 0.56448 0.40447 0.461885 Vertex 23535 0.528903 0.702303 0.472575 Vertex 23536 0.354557 0.269404 0.540852 Vertex 23537 0.478524 0.0998265 0.777166 Vertex 23538 0.43183 0.259697 0.718863 Vertex 23539 0.552202 0.564104 0.519915 Vertex 23540 0.554856 0.560136 0.517866 Vertex 23541 0.544627 0.570417 0.446326 Vertex 23542 0.542383 0.571454 0.444656 Vertex 23543 0.615776 0.495893 0.243996 Vertex 23544 0.562111 0.527289 0.519915 Vertex 23545 0.454396 0.734475 0.447439 Vertex 23546 0.395755 0.873581 0.39519 Vertex 23547 0.546007 0.61402 0.484722 Vertex 23548 0.360717 0.246543 0.502342 Vertex 23549 0.507427 0.157703 0.707877 Vertex 23550 0.651833 0.494151 0.227513 Vertex 23551 0.507919 0.0350089 0.735417 Vertex 23552 0.592571 0.433332 0.336182 Vertex 23553 0.516222 0.467985 0.408664 Vertex 23554 0.561685 0.010797 0.742252 Vertex 23555 0.508623 0.415072 0.438532 Vertex 23556 0.49188 0.421018 0.382183 Vertex 23557 0.421673 0.381265 0.424744 Vertex 23558 0.49814 0.460984 0.389599 Vertex 23559 0.401015 0.343236 0.441783 Vertex 23560 0.38494 0.350545 0.436601 Vertex 23561 0.472608 0.0770065 0.711436 Vertex 23562 0.361037 0.394787 0.38104 Vertex 23563 0.555176 0.0138709 0.77161 Vertex 23564 0.553523 0.0147119 0.771966 Vertex 23565 0.459151 0.756579 0.411738 Vertex 23566 0.460786 0.755122 0.409659 Vertex 23567 0.420992 0.245915 0.224149 Vertex 23568 0.385734 0.219316 0.700171 Vertex 23569 0.442757 0.316756 0.420266 Vertex 23570 0.372254 0.376853 0.561385 Vertex 23571 0.371567 0.374893 0.559295 Vertex 23572 0.495132 0.23478 0.543493 Vertex 23573 0.526196 0.402107 0.548948 Vertex 23574 0.383726 0.35292 0.362437 Vertex 23575 0.527937 0.398186 0.501152 Vertex 23576 0.414968 0.26851 0.225476 Vertex 23577 0.35358 0.215917 0.507394 Vertex 23578 0.63252 0.448944 0.197864 Vertex 23579 0.528766 0.0443134 0.659559 Vertex 23580 0.52821 0.0391666 0.658203 Vertex 23581 0.377277 0.421468 0.310727 Vertex 23582 0.496346 0.0869624 0.730128 Vertex 23583 0.394055 0.468791 0.419638 Vertex 23584 0.503009 0.696321 0.41525 Vertex 23585 0.539771 0.651961 0.457751 Vertex 23586 0.547512 0.509645 0.421463 Vertex 23587 0.545599 0.510516 0.421966 Vertex 23588 0.369263 0.266538 0.195934 Vertex 23589 0.480935 0.74144 0.396587 Vertex 23590 0.512704 0.374437 0.577957 Vertex 23591 0.522323 0.0791268 0.66348 Vertex 23592 0.458222 0.223083 0.628045 Vertex 23593 0.497974 0.179883 0.779031 Vertex 23594 0.394577 0.371416 0.230836 Vertex 23595 0.459939 0.231339 0.774601 Vertex 23596 0.371774 0.372689 0.524665 Vertex 23597 0.373125 0.369568 0.52396 Vertex 23598 0.447282 0.483467 0.415818 Vertex 23599 0.51409 0.306675 0.565508 Vertex 23600 0.428839 0.159278 0.749999 Vertex 23601 0.579636 0.481886 0.492985 Vertex 23602 0.370418 0.37879 0.235834 Vertex 23603 0.381819 0.222728 0.616342 Vertex 23604 0.589533 0.483242 0.438478 Vertex 23605 0.589965 0.482342 0.444638 Vertex 23606 0.591008 0.47829 0.448079 Vertex 23607 0.408548 0.252145 0.73945 Vertex 23608 0.531053 0.40004 0.530286 Vertex 23609 0.660475 0.462992 0.208531 Vertex 23610 0.494978 0.051083 0.687639 Vertex 23611 0.456042 0.593545 0.528219 Vertex 23612 0.532788 0.131655 0.454209 Vertex 23613 0.454763 0.174796 0.565579 Vertex 23614 0.4637 0.500814 0.41143 Vertex 23615 0.353189 0.384446 0.47418 Vertex 23616 0.56156 0.491812 0.364475 Vertex 23617 0.398231 0.318728 0.203899 Vertex 23618 0.422081 0.263967 0.710595 Vertex 23619 0.560133 0.0296725 0.734842 Vertex 23620 0.391331 0.502917 0.526163 Vertex 23621 0.546511 0.398098 0.465397 Vertex 23622 0.549632 0.0603045 0.73486 Vertex 23623 0.485679 0.30231 0.438259 Vertex 23624 0.476813 0.448002 0.609087 Vertex 23625 0.381399 0.474293 0.555167 Vertex 23626 0.377958 0.0793992 0.466113 Vertex 23627 0.398172 0.38874 0.245329 Vertex 23628 0.502268 0.0977062 0.809515 Vertex 23629 0.499864 0.0988196 0.810208 Vertex 23630 0.590629 0.515319 0.364445 Vertex 23631 0.550994 0.524167 0.438111 Vertex 23632 0.406659 0.263724 0.67118 Vertex 23633 0.450433 0.241372 0.706455 Vertex 23634 0.460028 0.312183 0.634761 Vertex 23635 0.390401 0.388219 0.611396 Vertex 23636 0.486822 0.0702605 0.696635 Vertex 23637 0.601343 0.468068 0.294718 Vertex 23638 0.521766 0.394562 0.538625 Vertex 23639 0.592192 0.447439 0.203278 Vertex 23640 0.35159 0.372832 0.442885 Vertex 23641 0.372965 0.333547 0.486789 Vertex 23642 0.52202 0.310614 0.500293 Vertex 23643 0.532415 0.0986597 0.732953 Vertex 23644 0.557669 0.0384381 0.734481 Vertex 23645 0.368031 0.222254 0.23385 Vertex 23646 0.39367 0.33893 0.447528 Vertex 23647 0.501877 0.153184 0.699437 Vertex 23648 0.418457 0.170608 0.538648 Vertex 23649 0.407974 0.420023 0.314304 Vertex 23650 0.694405 0.457727 0.216823 Vertex 23651 0.487124 0.253478 0.59871 Vertex 23652 0.365165 0.213536 0.226939 Vertex 23653 0.499964 0.463656 0.607641 Vertex 23654 0.468865 0.566313 0.427693 Vertex 23655 0.423923 0.258974 0.441161 Vertex 23656 0.446495 0.771148 0.418294 Vertex 23657 0.427157 0.550867 0.536498 Vertex 23658 0.548945 0.582399 0.483485 Vertex 23659 0.542181 0.465663 0.393354 Vertex 23660 0.39707 0.31502 0.204397 Vertex 23661 0.354948 0.265258 0.208116 Vertex 23662 0.596599 0.53057 0.274942 Vertex 23663 0.449888 0.643047 0.464058 Vertex 23664 0.359124 0.40296 0.358244 Vertex 23665 0.509808 0.138892 0.695925 Vertex 23666 0.363802 0.275214 0.486973 Vertex 23667 0.479709 0.103907 0.785416 Vertex 23668 0.508878 0.0906641 0.641454 Vertex 23669 0.556105 0.429819 0.519915 Vertex 23670 0.38545 0.456063 0.58414 Vertex 23671 0.595236 0.513708 0.220003 Vertex 23672 0.542229 0.00437685 0.729364 Vertex 23673 0.499035 0.753226 0.422487 Vertex 23674 0.372989 0.364635 0.507531 Vertex 23675 0.51454 0.742305 0.480517 Vertex 23676 0.45051 0.753546 0.447605 Vertex 23677 0.365271 0.393857 0.515834 Vertex 23678 0.366752 0.39115 0.513134 Vertex 23679 0.609232 0.460066 0.310886 Vertex 23680 0.40689 0.834195 0.382716 Vertex 23681 0.437812 0.546129 0.496704 Vertex 23682 0.36324 0.442571 0.466842 Vertex 23683 0.542063 0.627648 0.457709 Vertex 23684 0.541328 0.630906 0.457792 Vertex 23685 0.376181 0.263695 0.596128 Vertex 23686 0.506586 0.634483 0.413343 Vertex 23687 0.303889 0.970748 0.239453 Vertex 23688 0.482895 0.544198 0.585899 Vertex 23689 0.428573 0.192196 0.481613 Vertex 23690 0.45301 0.293912 0.426633 Vertex 23691 0.454745 0.288842 0.428416 Vertex 23692 0.52009 0.0545655 0.776662 Vertex 23693 0.509701 0.277335 0.550997 Vertex 23694 0.456954 0.376806 0.406028 Vertex 23695 0.521191 0.372145 0.449725 Vertex 23696 0.544029 0.124512 0.44536 Vertex 23697 0.522506 0.456578 0.408895 Vertex 23698 0.520688 0.410855 0.571679 Vertex 23699 0.523258 0.395545 0.493032 Vertex 23700 0.523584 0.395089 0.497196 Vertex 23701 0.46367 0.0759996 0.70652 Vertex 23702 0.508025 0.267669 0.520152 Vertex 23703 0.491939 0.395509 0.414272 Vertex 23704 0.437392 0.105216 0.706431 Vertex 23705 0.446945 0.44815 0.628655 Vertex 23706 0.373841 0.38412 0.56347 Vertex 23707 0.51608 0.308008 0.481743 Vertex 23708 0.494563 0.179842 0.456596 Vertex 23709 0.390905 0.892521 0.320884 Vertex 23710 0.393688 0.259016 0.64605 Vertex 23711 0.501416 0.0751823 0.730886 Vertex 23712 0.394014 0.354862 0.337438 Vertex 23713 0.527025 0.0583738 0.664914 Vertex 23714 0.429266 0.208063 0.474453 Vertex 23715 0.353402 0.928294 0.279307 Vertex 23716 0.627722 0.524363 0.231837 Vertex 23717 0.532794 0.172065 0.449506 Vertex 23718 0.622303 0.482869 0.282706 Vertex 23719 0.37916 0.0763846 0.476478 Vertex 23720 0.505046 0.717157 0.420148 Vertex 23721 0.384419 0.238506 0.631794 Vertex 23722 0.513302 0.0738793 0.727617 Vertex 23723 0.468568 0.396268 0.624012 Vertex 23724 0.438138 0.474417 0.416855 Vertex 23725 0.381482 0.385713 0.59659 Vertex 23726 0.410852 0.173054 0.538607 Vertex 23727 0.462054 0.127165 0.811351 Vertex 23728 0.507972 0.0183366 0.640299 Vertex 23729 0.627805 0.494773 0.264619 Vertex 23730 0.546469 0.0165953 0.769129 Vertex 23731 0.525284 0.39821 0.430548 Vertex 23732 0.521233 0.398074 0.435801 Vertex 23733 0.523329 0.402143 0.432414 Vertex 23734 0.501279 0.597401 0.406206 Vertex 23735 0.483239 0.178675 0.793121 Vertex 23736 0.425055 0.134101 0.684962 Vertex 23737 0.496583 0.556404 0.378049 Vertex 23738 0.491744 0.556819 0.38043 Vertex 23739 0.524709 0.0956925 0.712934 Vertex 23740 0.385468 0.243729 0.6257 Vertex 23741 0.648238 0.428972 0.202875 Vertex 23742 0.649328 0.425674 0.204101 Vertex 23743 0.317203 0.984115 0.200393 Vertex 23744 0.475782 0.121468 0.646346 Vertex 23745 0.401186 0.245512 0.735464 Vertex 23746 0.401796 0.244014 0.737531 Vertex 23747 0.503483 0.329057 0.600724 Vertex 23748 0.40057 0.330496 0.22743 Vertex 23749 0.3565 0.26126 0.210782 Vertex 23750 0.368215 0.350663 0.225067 Vertex 23751 0.366497 0.348099 0.229556 Vertex 23752 0.366841 0.350438 0.229616 Vertex 23753 0.498549 0.66107 0.543327 Vertex 23754 0.48883 0.0573669 0.692549 Vertex 23755 0.589089 0.513951 0.335424 Vertex 23756 0.357986 0.212896 0.486108 Vertex 23757 0.444913 0.244339 0.683647 Vertex 23758 0.435739 0.142493 0.735458 Vertex 23759 0.433909 0.145626 0.731289 Vertex 23760 0.415383 0.175234 0.743762 Vertex 23761 0.520321 0.156412 0.461885 Vertex 23762 0.337429 0.946021 0.296796 Vertex 23763 0.338767 0.944694 0.298443 Vertex 23764 0.49233 0.191906 0.741091 Vertex 23765 0.473342 0.724519 0.416784 Vertex 23766 0.54362 0.629253 0.468364 Vertex 23767 0.535678 0.120733 0.432496 Vertex 23768 0.471666 0.366447 0.413822 Vertex 23769 0.499224 0.169643 0.708836 Vertex 23770 0.547292 0.468257 0.559324 Vertex 23771 0.478033 0.199144 0.710559 Vertex 23772 0.354841 0.407817 0.503041 Vertex 23773 0.544491 0.164994 0.435938 Vertex 23774 0.453797 0.660306 0.457626 Vertex 23775 0.387019 0.346813 0.285579 Vertex 23776 0.428211 0.231866 0.209585 Vertex 23777 0.565552 0.418282 0.358943 Vertex 23778 0.440507 0.561125 0.492677 Vertex 23779 0.358259 0.0869921 0.43961 Vertex 23780 0.375985 0.399596 0.542717 Vertex 23781 0.527777 0.564957 0.56347 Vertex 23782 0.531283 0.565591 0.561302 Vertex 23783 0.372758 0.449755 0.557346 Vertex 23784 0.536033 0.0567391 0.797255 Vertex 23785 0.442219 0.234289 0.781246 Vertex 23786 0.393368 0.191788 0.698128 Vertex 23787 0.410941 0.152509 0.668787 Vertex 23788 0.536276 0.131359 0.435991 Vertex 23789 0.510519 0.298964 0.476934 Vertex 23790 0.36443 0.883549 0.314695 Vertex 23791 0.366314 0.207033 0.21443 Vertex 23792 0.513261 0.281119 0.486375 Vertex 23793 0.537715 0.0490693 0.795698 Vertex 23794 0.554364 0.439645 0.354181 Vertex 23795 0.465572 0.531446 0.587368 Vertex 23796 0.527203 0.173368 0.449945 Vertex 23797 0.368079 0.453723 0.535794 Vertex 23798 0.55514 0.472771 0.546816 Vertex 23799 0.40628 0.366631 0.356165 Vertex 23800 0.452968 0.103664 0.724721 Vertex 23801 0.425072 0.324023 0.427474 Vertex 23802 0.43892 0.42331 0.399578 Vertex 23803 0.37698 0.273514 0.233009 Vertex 23804 0.374457 0.271282 0.233306 Vertex 23805 0.463404 0.623378 0.440764 Vertex 23806 0.569757 0.531926 0.46606 Vertex 23807 0.439014 0.24996 0.652494 Vertex 23808 0.344039 0.0876436 0.446385 Vertex 23809 0.34129 0.0891657 0.449678 Vertex 23810 0.588887 0.504244 0.290974 Vertex 23811 0.510981 0.426858 0.426917 Vertex 23812 0.428656 0.156939 0.739592 Vertex 23813 0.450398 0.246477 0.741689 Vertex 23814 0.601141 0.513821 0.366417 Vertex 23815 0.442983 0.248829 0.4468 Vertex 23816 0.605607 0.484059 0.389652 Vertex 23817 0.381902 0.353192 0.337503 Vertex 23818 0.473289 0.773358 0.491006 Vertex 23819 0.359544 0.266348 0.490918 Vertex 23820 0.589894 0.443388 0.191669 Vertex 23821 0.459258 0.202679 0.607683 Vertex 23822 0.550651 0.038136 0.792991 Vertex 23823 0.434744 0.144466 0.60282 Vertex 23824 0.409638 0.253561 0.2221 Vertex 23825 0.382714 0.243646 0.604633 Vertex 23826 0.382269 0.240312 0.604153 Vertex 23827 0.435147 0.843885 0.441161 Vertex 23828 0.48761 0.670913 0.405933 Vertex 23829 0.389519 0.425052 0.594558 Vertex 23830 0.515873 0.105897 0.717507 Vertex 23831 0.372213 0.382326 0.55326 Vertex 23832 0.464802 0.524315 0.418797 Vertex 23833 0.502274 0.689866 0.413994 Vertex 23834 0.497406 0.664949 0.540668 Vertex 23835 0.579909 0.506636 0.378849 Vertex 23836 0.497815 0.394337 0.441025 Vertex 23837 0.479419 0.207737 0.783035 Vertex 23838 0.6218 0.515449 0.300646 Vertex 23839 0.622356 0.519737 0.30115 Vertex 23840 0.441632 0.381011 0.417234 Vertex 23841 0.61734 0.509645 0.330147 Vertex 23842 0.536561 0.0641957 0.712692 Vertex 23843 0.535998 0.06188 0.709867 Vertex 23844 0.362357 0.409522 0.528556 Vertex 23845 0.374386 0.354815 0.501288 Vertex 23846 0.515967 0.317857 0.479049 Vertex 23847 0.494628 0.099477 0.811257 Vertex 23848 0.414702 0.236711 0.214454 Vertex 23849 0.390496 0.503657 0.505369 Vertex 23850 0.354498 0.358789 0.403849 Vertex 23851 0.383264 0.214596 0.617017 Vertex 23852 0.645052 0.425212 0.215466 Vertex 23853 0.645301 0.423512 0.217314 Vertex 23854 0.484335 0.175139 0.488857 Vertex 23855 0.440767 0.129232 0.664949 Vertex 23856 0.461526 0.0963203 0.756117 Vertex 23857 0.444043 0.834704 0.448571 Vertex 23858 0.600282 0.52505 0.248165 Vertex 23859 0.410437 0.84116 0.354234 Vertex 23860 0.458139 0.164395 0.649633 Vertex 23861 0.545362 0.605415 0.502621 Vertex 23862 0.52927 0.478403 0.591153 Vertex 23863 0.373439 0.180712 0.519921 Vertex 23864 0.460905 0.225855 0.708522 Vertex 23865 0.371235 0.302346 0.476383 Vertex 23866 0.367664 0.236492 0.483591 Vertex 23867 0.458174 0.208122 0.797309 Vertex 23868 0.589414 0.476449 0.456471 Vertex 23869 0.550911 0.153296 0.422511 Vertex 23870 0.525 0.488057 0.413686 Vertex 23871 0.519491 0.733338 0.476425 Vertex 23872 0.480728 0.79844 0.465954 Vertex 23873 0.481912 0.800608 0.460179 Vertex 23874 0.412901 0.363515 0.33129 Vertex 23875 0.363169 0.432692 0.538743 Vertex 23876 0.491501 0.454108 0.384784 Vertex 23877 0.458014 0.595713 0.443282 Vertex 23878 0.355896 0.256203 0.521484 Vertex 23879 0.535761 0.128883 0.452148 Vertex 23880 0.444552 0.58138 0.478125 Vertex 23881 0.364561 0.260319 0.481009 Vertex 23882 0.465927 0.660572 0.506441 Vertex 23883 0.320271 0.972199 0.201424 Vertex 23884 0.500219 0.662876 0.544731 Vertex 23885 0.501196 0.666856 0.544062 Vertex 23886 0.502274 0.663842 0.545163 Vertex 23887 0.619235 0.481358 0.33174 Vertex 23888 0.465459 0.377587 0.404583 Vertex 23889 0.45677 0.810202 0.472611 Vertex 23890 0.42345 0.54755 0.522 Vertex 23891 0.361889 0.346547 0.237659 Vertex 23892 0.364614 0.34631 0.233531 Vertex 23893 0.508878 0.0875369 0.807111 Vertex 23894 0.506266 0.0884846 0.805583 Vertex 23895 0.581798 0.490562 0.484722 Vertex 23896 0.654706 0.457863 0.217806 Vertex 23897 0.482196 0.604414 0.422386 Vertex 23898 0.504507 0.674307 0.538719 Vertex 23899 0.46749 0.202585 0.679424 Vertex 23900 0.458518 0.0949047 0.720367 Vertex 23901 0.419002 0.24566 0.224848 Vertex 23902 0.493894 0.236752 0.55962 Vertex 23903 0.508469 0.181405 0.47867 Vertex 23904 0.360806 0.887286 0.335489 Vertex 23905 0.39216 0.4537 0.409072 Vertex 23906 0.4049 0.482851 0.42658 Vertex 23907 0.595959 0.52874 0.296293 Vertex 23908 0.52975 0.0471681 0.659092 Vertex 23909 0.483606 0.766191 0.491948 Vertex 23910 0.492792 0.193932 0.764491 Vertex 23911 0.49082 0.212949 0.50955 Vertex 23912 0.436906 0.0956688 0.66531 Vertex 23913 0.574495 0.499203 0.41143 Vertex 23914 0.590244 0.477372 0.291318 Vertex 23915 0.506166 0.277962 0.57377 Vertex 23916 0.504774 0.280722 0.579971 Vertex 23917 0.373883 0.382024 0.534277 Vertex 23918 0.521126 0.0787181 0.655159 Vertex 23919 0.544082 0.148765 0.441878 Vertex 23920 0.542803 0.15059 0.444697 Vertex 23921 0.465572 0.742216 0.478504 Vertex 23922 0.480728 0.208555 0.779002 Vertex 23923 0.34867 0.264115 0.206784 Vertex 23924 0.525444 0.519181 0.415753 Vertex 23925 0.488457 0.188074 0.728399 Vertex 23926 0.388684 0.25914 0.617449 Vertex 23927 0.507036 0.133438 0.791345 Vertex 23928 0.504981 0.133331 0.792997 Vertex 23929 0.444617 0.200109 0.470733 Vertex 23930 0.374919 0.267367 0.233631 Vertex 23931 0.473194 0.182223 0.487482 Vertex 23932 0.473786 0.183762 0.486428 Vertex 23933 0.505319 0.0946086 0.715517 Vertex 23934 0.388062 0.476111 0.442435 Vertex 23935 0.476635 0.56103 0.416239 Vertex 23936 0.512201 0.719532 0.499186 Vertex 23937 0.487533 0.061341 0.744591 Vertex 23938 0.597209 0.428493 0.194009 Vertex 23939 0.493663 0.438579 0.383706 Vertex 23940 0.462865 0.195483 0.579994 Vertex 23941 0.547239 0.430145 0.384031 Vertex 23942 0.662465 0.461677 0.192042 Vertex 23943 0.659521 0.44404 0.215218 Vertex 23944 0.484216 0.542084 0.392057 Vertex 23945 0.484494 0.536516 0.393211 Vertex 23946 0.387464 0.283713 0.451277 Vertex 23947 0.503672 0.497527 0.398725 Vertex 23948 0.387937 0.266863 0.225422 Vertex 23949 0.523395 0.108995 0.716707 Vertex 23950 0.477115 0.678583 0.423761 Vertex 23951 0.511413 0.541539 0.398068 Vertex 23952 0.426168 0.411838 0.621962 Vertex 23953 0.458607 0.741387 0.424483 Vertex 23954 0.601426 0.509509 0.238666 Vertex 23955 0.450605 0.146876 0.648443 Vertex 23956 0.491513 0.212049 0.51369 Vertex 23957 0.461982 0.18545 0.656764 Vertex 23958 0.452263 0.136808 0.644196 Vertex 23959 0.597576 0.488116 0.395592 Vertex 23960 0.553523 0.47524 0.551015 Vertex 23961 0.432114 0.43512 0.394876 Vertex 23962 0.429331 0.839259 0.442127 Vertex 23963 0.456705 0.353382 0.411483 Vertex 23964 0.425031 0.231049 0.198871 Vertex 23965 0.423675 0.228792 0.199167 Vertex 23966 0.656909 0.419425 0.206079 Vertex 23967 0.424948 0.526306 0.480737 Vertex 23968 0.399078 0.285064 0.235757 Vertex 23969 0.531651 0.0738023 0.708309 Vertex 23970 0.593726 0.439663 0.190846 Vertex 23971 0.592713 0.438875 0.193262 Vertex 23972 0.40429 0.378097 0.255213 Vertex 23973 0.404995 0.377801 0.258749 Vertex 23974 0.494563 0.0497563 0.724253 Vertex 23975 0.492709 0.608642 0.401485 Vertex 23976 0.42342 0.169601 0.540869 Vertex 23977 0.412197 0.887706 0.369888 Vertex 23978 0.409519 0.889904 0.362189 Vertex 23979 0.629221 0.516427 0.280586 Vertex 23980 0.4084 0.23478 0.758255 Vertex 23981 0.490162 0.497906 0.391109 Vertex 23982 0.59693 0.510403 0.373708 Vertex 23983 0.490245 0.237102 0.48525 Vertex 23984 0.489079 0.235189 0.48721 Vertex 23985 0.436485 0.259845 0.638445 Vertex 23986 0.553073 0.0563304 0.747932 Vertex 23987 0.483227 0.046487 0.64525 Vertex 23988 0.536466 0.0884076 0.730643 Vertex 23989 0.34395 0.292733 0.229533 Vertex 23990 0.442017 0.11917 0.722322 Vertex 23991 0.54705 0.580895 0.462293 Vertex 23992 0.550414 0.577542 0.46349 Vertex 23993 0.471163 0.510759 0.407047 Vertex 23994 0.391663 0.241473 0.708493 Vertex 23995 0.457653 0.261124 0.441363 Vertex 23996 0.397899 0.29098 0.197568 Vertex 23997 0.487912 0.556108 0.384902 Vertex 23998 0.595562 0.456993 0.412217 Vertex 23999 0.371626 0.292473 0.468169 Vertex 24000 0.556366 0.519773 0.443323 Vertex 24001 0.455781 0.23799 0.760357 Vertex 24002 0.601532 0.469632 0.19694 Vertex 24003 0.35907 0.273544 0.497125 Vertex 24004 0.358733 0.276274 0.495099 Vertex 24005 0.358887 0.274681 0.492991 Vertex 24006 0.403218 0.165088 0.511671 Vertex 24007 0.520066 0.174867 0.464123 Vertex 24008 0.519563 0.177887 0.464822 Vertex 24009 0.365603 0.207139 0.225665 Vertex 24010 0.479052 0.158869 0.796574 Vertex 24011 0.485525 0.159006 0.795686 Vertex 24012 0.621391 0.489786 0.336988 Vertex 24013 0.493645 0.318693 0.442287 Vertex 24014 0.496263 0.280521 0.598704 Vertex 24015 0.486739 0.725579 0.50775 Vertex 24016 0.403952 0.360483 0.30436 Vertex 24017 0.414814 0.876027 0.397553 Vertex 24018 0.401287 0.517078 0.515923 Vertex 24019 0.396294 0.294925 0.240324 Vertex 24020 0.49281 0.12665 0.644196 Vertex 24021 0.447851 0.611308 0.488785 Vertex 24022 0.521085 0.309868 0.519542 Vertex 24023 0.394186 0.208229 0.475175 Vertex 24024 0.39906 0.212825 0.472978 Vertex 24025 0.499129 0.588872 0.401959 Vertex 24026 0.54609 0.13753 0.447356 Vertex 24027 0.461212 0.668627 0.495111 Vertex 24028 0.462498 0.671885 0.495099 Vertex 24029 0.432097 0.401669 0.414634 Vertex 24030 0.375754 0.359985 0.468998 Vertex 24031 0.378976 0.449181 0.423778 Vertex 24032 0.450433 0.37783 0.409901 Vertex 24033 0.472317 0.106845 0.646376 Vertex 24034 0.517478 0.507548 0.59537 Vertex 24035 0.435212 0.348975 0.64833 Vertex 24036 0.390632 0.262427 0.201815 Vertex 24037 0.369767 0.358931 0.289849 Vertex 24038 0.510939 0.520288 0.593628 Vertex 24039 0.353687 0.363794 0.428712 Vertex 24040 0.472554 0.771444 0.388983 Vertex 24041 0.440069 0.137814 0.619522 Vertex 24042 0.544532 0.629614 0.495887 Vertex 24043 0.441265 0.506121 0.434332 Vertex 24044 0.430409 0.260147 0.698128 Vertex 24045 0.462598 0.19909 0.6257 Vertex 24046 0.579216 0.513157 0.466025 Vertex 24047 0.485679 0.0872882 0.770141 Vertex 24048 0.367184 0.344154 0.419016 Vertex 24049 0.394535 0.903105 0.347477 Vertex 24050 0.559671 0.511913 0.428741 Vertex 24051 0.465406 0.525541 0.591064 Vertex 24052 0.49865 0.242343 0.536481 Vertex 24053 0.49743 0.238802 0.534467 Vertex 24054 0.497815 0.240507 0.534514 Vertex 24055 0.551101 0.46243 0.36053 Vertex 24056 0.551888 0.464828 0.362271 Vertex 24057 0.551557 0.463673 0.362692 Vertex 24058 0.396199 0.186345 0.59871 Vertex 24059 0.376963 0.457336 0.565579 Vertex 24060 0.376512 0.452035 0.567646 Vertex 24061 0.609587 0.450537 0.364421 Vertex 24062 0.516933 0.123031 0.687799 Vertex 24063 0.396655 0.279923 0.233797 Vertex 24064 0.495576 0.710891 0.407657 Vertex 24065 0.324956 0.964689 0.261734 Vertex 24066 0.472655 0.199185 0.691885 Vertex 24067 0.405237 0.277145 0.231576 Vertex 24068 0.364501 0.223746 0.226643 Vertex 24069 0.429491 0.365825 0.64775 Vertex 24070 0.43058 0.362645 0.648253 Vertex 24071 0.479537 0.396013 0.622762 Vertex 24072 0.483517 0.397014 0.6214 Vertex 24073 0.42621 0.270073 0.644409 Vertex 24074 0.507593 0.174541 0.760375 Vertex 24075 0.581703 0.501146 0.428712 Vertex 24076 0.410509 0.529812 0.528367 Vertex 24077 0.514203 0.0309518 0.66454 Vertex 24078 0.510939 0.0282629 0.666092 Vertex 24079 0.364596 0.36852 0.267053 Vertex 24080 0.467609 0.125969 0.644368 Vertex 24081 0.621622 0.477953 0.354181 Vertex 24082 0.4266 0.108539 0.680668 Vertex 24083 0.337666 0.246584 0.221638 Vertex 24084 0.440341 0.196313 0.798588 Vertex 24085 0.54622 0.130103 0.449672 Vertex 24086 0.391929 0.24415 0.706479 Vertex 24087 0.598672 0.518168 0.349946 Vertex 24088 0.385284 0.420947 0.590531 Vertex 24089 0.502683 0.178971 0.750093 Vertex 24090 0.577705 0.511001 0.360287 Vertex 24091 0.363459 0.366411 0.252536 Vertex 24092 0.454022 0.753872 0.459818 Vertex 24093 0.651833 0.504546 0.198486 Vertex 24094 0.524129 0.423151 0.582168 Vertex 24095 0.462296 0.348294 0.411832 Vertex 24096 0.44072 0.563997 0.493073 Vertex 24097 0.523815 0.103937 0.716091 Vertex 24098 0.443302 0.803658 0.377208 Vertex 24099 0.482777 0.723974 0.40116 Vertex 24100 0.446945 0.787459 0.459172 Vertex 24101 0.399327 0.170229 0.616099 Vertex 24102 0.402306 0.168867 0.615388 Vertex 24103 0.371917 0.30401 0.193997 Vertex 24104 0.433696 0.86154 0.37526 Vertex 24105 0.501812 0.0273153 0.662556 Vertex 24106 0.431167 0.283032 0.430264 Vertex 24107 0.465435 0.371694 0.408095 Vertex 24108 0.384461 0.402753 0.584164 Vertex 24109 0.386226 0.403926 0.590389 Vertex 24110 0.456847 0.15422 0.795479 Vertex 24111 0.651697 0.437187 0.194003 Vertex 24112 0.371887 0.355899 0.493073 Vertex 24113 0.647391 0.466457 0.192398 Vertex 24114 0.645164 0.467262 0.190461 Vertex 24115 0.388014 0.243048 0.6525 Vertex 24116 0.447365 0.244316 0.762389 Vertex 24117 0.39094 0.0778475 0.467713 Vertex 24118 0.388233 0.195442 0.673282 Vertex 24119 0.386125 0.202052 0.67741 Vertex 24120 0.397295 0.284833 0.44199 Vertex 24121 0.456622 0.730939 0.439106 Vertex 24122 0.540262 0.0776639 0.727119 Vertex 24123 0.379071 0.426224 0.351551 Vertex 24124 0.496056 0.635898 0.548196 Vertex 24125 0.383495 0.427071 0.358108 Vertex 24126 0.426168 0.265993 0.65051 Vertex 24127 0.491051 0.05851 0.728742 Vertex 24128 0.49108 0.058812 0.726699 Vertex 24129 0.486253 0.112341 0.648413 Vertex 24130 0.594946 0.464603 0.428357 Vertex 24131 0.367184 0.234573 0.20352 Vertex 24132 0.427963 0.442464 0.393472 Vertex 24133 0.392024 0.357137 0.358262 Vertex 24134 0.463451 0.432556 0.379968 Vertex 24135 0.421643 0.169886 0.509586 Vertex 24136 0.354729 0.404518 0.455826 Vertex 24137 0.35342 0.397701 0.454902 Vertex 24138 0.60001 0.433326 0.198812 Vertex 24139 0.598814 0.43143 0.198735 Vertex 24140 0.445932 0.590614 0.47312 Vertex 24141 0.461088 0.686194 0.443596 Vertex 24142 0.369607 0.083859 0.468802 Vertex 24143 0.500255 0.175234 0.452882 Vertex 24144 0.382719 0.226743 0.599853 Vertex 24145 0.390472 0.307511 0.447836 Vertex 24146 0.524632 0.0350622 0.638108 Vertex 24147 0.606715 0.450158 0.189241 Vertex 24148 0.418824 0.43618 0.386104 Vertex 24149 0.368837 0.232885 0.234431 Vertex 24150 0.476884 0.417939 0.374733 Vertex 24151 0.433269 0.257014 0.667063 Vertex 24152 0.544491 0.399241 0.419739 Vertex 24153 0.478098 0.381289 0.626458 Vertex 24154 0.482949 0.759048 0.501513 Vertex 24155 0.364537 0.352049 0.541627 Vertex 24156 0.465015 0.0867729 0.726373 Vertex 24157 0.377969 0.311319 0.464123 Vertex 24158 0.37682 0.418667 0.571839 Vertex 24159 0.427672 0.111038 0.693674 Vertex 24160 0.376039 0.479795 0.482667 Vertex 24161 0.320277 0.945997 0.276855 Vertex 24162 0.531722 0.579538 0.544796 Vertex 24163 0.403828 0.360347 0.345771 Vertex 24164 0.395358 0.244339 0.716772 Vertex 24165 0.353811 0.261397 0.212967 Vertex 24166 0.469942 0.634886 0.429476 Vertex 24167 0.529803 0.145609 0.790018 Vertex 24168 0.525367 0.148629 0.791433 Vertex 24169 0.588171 0.502366 0.293261 Vertex 24170 0.641569 0.512121 0.220441 Vertex 24171 0.450723 0.0798671 0.661034 Vertex 24172 0.383152 0.210527 0.635952 Vertex 24173 0.382767 0.213613 0.635958 Vertex 24174 0.525207 0.714166 0.478533 Vertex 24175 0.371934 0.359719 0.584288 Vertex 24176 0.370489 0.163495 0.462347 Vertex 24177 0.372598 0.161523 0.466048 Vertex 24178 0.555318 0.155701 0.436998 Vertex 24179 0.381292 0.251097 0.601837 Vertex 24180 0.551883 0.559591 0.485931 Vertex 24181 0.551699 0.55952 0.48381 Vertex 24182 0.456569 0.188601 0.575949 Vertex 24183 0.394269 0.305201 0.200802 Vertex 24184 0.427406 0.136239 0.668047 Vertex 24185 0.464488 0.587676 0.549564 Vertex 24186 0.469818 0.734511 0.412063 Vertex 24187 0.671905 0.451028 0.20676 Vertex 24188 0.449942 0.62227 0.485931 Vertex 24189 0.449024 0.621956 0.481891 Vertex 24190 0.425665 0.3638 0.427989 Vertex 24191 0.376098 0.192712 0.559484 Vertex 24192 0.405569 0.343882 0.629988 Vertex 24193 0.473982 0.0751823 0.738017 Vertex 24194 0.398361 0.440237 0.599444 Vertex 24195 0.492845 0.521952 0.38643 Vertex 24196 0.50411 0.421386 0.408119 Vertex 24197 0.374777 0.352866 0.362479 Vertex 24198 0.432499 0.517658 0.462388 Vertex 24199 0.351116 0.387816 0.462246 Vertex 24200 0.366314 0.408379 0.389403 Vertex 24201 0.370134 0.412022 0.387378 Vertex 24202 0.649571 0.476111 0.216716 Vertex 24203 0.366189 0.326629 0.499328 Vertex 24204 0.454431 0.651055 0.451597 Vertex 24205 0.505893 0.700609 0.515799 Vertex 24206 0.431812 0.84132 0.443459 Vertex 24207 0.506284 0.266727 0.503456 Vertex 24208 0.426233 0.818565 0.38165 Vertex 24209 0.442307 0.778232 0.44536 Vertex 24210 0.518348 0.721937 0.493032 Vertex 24211 0.488782 0.521561 0.390641 Vertex 24212 0.389596 0.317857 0.204231 Vertex 24213 0.468936 0.674662 0.429594 Vertex 24214 0.505715 0.747949 0.488857 Vertex 24215 0.503891 0.427859 0.402925 Vertex 24216 0.503376 0.716595 0.509639 Vertex 24217 0.483653 0.583453 0.412176 Vertex 24218 0.460395 0.195211 0.65048 Vertex 24219 0.460514 0.233732 0.733391 Vertex 24220 0.360545 0.325267 0.563589 Vertex 24221 0.467277 0.584188 0.430779 Vertex 24222 0.490986 0.198178 0.753629 Vertex 24223 0.412428 0.375319 0.625996 Vertex 24224 0.405409 0.26315 0.196159 Vertex 24225 0.424362 0.404607 0.623123 Vertex 24226 0.368422 0.421172 0.329033 Vertex 24227 0.372598 0.103202 0.473434 Vertex 24228 0.368446 0.290435 0.473025 Vertex 24229 0.373332 0.288611 0.465918 Vertex 24230 0.368529 0.28369 0.472658 Vertex 24231 0.43937 0.15531 0.586272 Vertex 24232 0.366041 0.351907 0.380075 Vertex 24233 0.54471 0.0301108 0.726657 Vertex 24234 0.544384 0.0324207 0.724679 Vertex 24235 0.589551 0.441765 0.439077 Vertex 24236 0.411717 0.505404 0.455364 Vertex 24237 0.489239 0.467796 0.38813 Vertex 24238 0.404716 0.180019 0.571803 Vertex 24239 0.583664 0.507424 0.311674 Vertex 24240 0.543905 0.0627032 0.718839 Vertex 24241 0.321195 0.982285 0.200962 Vertex 24242 0.591197 0.433083 0.413343 Vertex 24243 0.533114 0.682901 0.457751 Vertex 24244 0.524064 0.117648 0.716612 Vertex 24245 0.381458 0.329934 0.211706 Vertex 24246 0.464038 0.232316 0.764491 Vertex 24247 0.480905 0.766659 0.495235 Vertex 24248 0.383406 0.25272 0.231813 Vertex 24249 0.513439 0.737685 0.443264 Vertex 24250 0.46203 0.231215 0.741689 Vertex 24251 0.386101 0.27236 0.454446 Vertex 24252 0.388417 0.270062 0.453131 Vertex 24253 0.4386 0.285863 0.429446 Vertex 24254 0.428964 0.261124 0.675343 Vertex 24255 0.504247 0.681621 0.532447 Vertex 24256 0.466122 0.218061 0.783118 Vertex 24257 0.621711 0.452776 0.193434 Vertex 24258 0.460833 0.174582 0.801206 Vertex 24259 0.445227 0.545116 0.445236 Vertex 24260 0.516773 0.583039 0.558679 Vertex 24261 0.46569 0.195146 0.671203 Vertex 24262 0.355007 0.113703 0.472984 Vertex 24263 0.49339 0.249806 0.474453 Vertex 24264 0.485892 0.464224 0.384114 Vertex 24265 0.444753 0.255196 0.442968 Vertex 24266 0.382856 0.179273 0.493304 Vertex 24267 0.363542 0.245998 0.211167 Vertex 24268 0.372835 0.409286 0.551246 Vertex 24269 0.353053 0.0936254 0.455411 Vertex 24270 0.606922 0.542018 0.267077 Vertex 24271 0.440945 0.55429 0.478871 Vertex 24272 0.440418 0.556245 0.479309 Vertex 24273 0.529986 0.140059 0.458159 Vertex 24274 0.40368 0.261053 0.705188 Vertex 24275 0.539907 0.00427024 0.735464 Vertex 24276 0.535998 0.640536 0.515692 Vertex 24277 0.454875 0.134699 0.650148 Vertex 24278 0.337849 0.256866 0.206132 Vertex 24279 0.366657 0.407645 0.378825 Vertex 24280 0.53511 0.148765 0.443157 Vertex 24281 0.471737 0.119087 0.803818 Vertex 24282 0.474704 0.116842 0.805719 Vertex 24283 0.499443 0.426337 0.398654 Vertex 24284 0.529365 0.0770894 0.709043 Vertex 24285 0.582005 0.50374 0.32208 Vertex 24286 0.353136 0.175098 0.4806 Vertex 24287 0.509838 0.38306 0.577927 Vertex 24288 0.484074 0.210639 0.573793 Vertex 24289 0.440531 0.249688 0.689866 Vertex 24290 0.397627 0.277974 0.232192 Vertex 24291 0.397804 0.277121 0.23064 Vertex 24292 0.42785 0.138401 0.646998 Vertex 24293 0.403911 0.382414 0.264388 Vertex 24294 0.416419 0.169287 0.515787 Vertex 24295 0.408601 0.489295 0.435025 Vertex 24296 0.585695 0.430441 0.198409 Vertex 24297 0.387694 0.49902 0.490882 Vertex 24298 0.364513 0.345706 0.416322 Vertex 24299 0.476688 0.200707 0.706408 Vertex 24300 0.367528 0.422576 0.551216 Vertex 24301 0.455248 0.416653 0.626049 Vertex 24302 0.349748 0.271572 0.228218 Vertex 24303 0.342978 0.271145 0.230504 Vertex 24304 0.476517 0.554539 0.412188 Vertex 24305 0.389833 0.328838 0.260348 Vertex 24306 0.506284 0.73101 0.42424 Vertex 24307 0.393185 0.229912 0.716772 Vertex 24308 0.493136 0.449204 0.384564 Vertex 24309 0.526753 0.348703 0.507531 Vertex 24310 0.535678 0.0887037 0.722381 Vertex 24311 0.416076 0.255628 0.198054 Vertex 24312 0.502031 0.760878 0.482721 Vertex 24313 0.493254 0.761222 0.489058 Vertex 24314 0.406523 0.159414 0.647211 Vertex 24315 0.550414 0.560005 0.532447 Vertex 24316 0.462669 0.641685 0.437241 Vertex 24317 0.511194 0.276884 0.53442 Vertex 24318 0.421359 0.144738 0.697808 Vertex 24319 0.423112 0.145378 0.701889 Vertex 24320 0.425007 0.848972 0.355851 Vertex 24321 0.524318 0.3432 0.542759 Vertex 24322 0.525627 0.341483 0.53253 Vertex 24323 0.524526 0.346855 0.54065 Vertex 24324 0.38516 0.333689 0.266508 Vertex 24325 0.509796 0.742358 0.488732 Vertex 24326 0.575857 0.515532 0.443252 Vertex 24327 0.305826 0.985039 0.203029 Vertex 24328 0.60598 0.479321 0.187796 Vertex 24329 0.527937 0.703221 0.484764 Vertex 24330 0.625229 0.534129 0.290258 Vertex 24331 0.488984 0.179107 0.530286 Vertex 24332 0.493373 0.051847 0.722002 Vertex 24333 0.40538 0.874297 0.4054 Vertex 24334 0.439293 0.445402 0.622033 Vertex 24335 0.595734 0.438194 0.396564 Vertex 24336 0.594763 0.436287 0.398489 Vertex 24337 0.535044 0.461198 0.577904 Vertex 24338 0.483055 0.607831 0.420473 Vertex 24339 0.404509 0.322086 0.208442 Vertex 24340 0.404746 0.321618 0.204664 Vertex 24341 0.460739 0.526738 0.424548 Vertex 24342 0.458944 0.226524 0.704388 Vertex 24343 0.457706 0.228946 0.706455 Vertex 24344 0.425783 0.132188 0.690873 Vertex 24345 0.525396 0.155511 0.790427 Vertex 24346 0.57523 0.42732 0.341382 Vertex 24347 0.413529 0.827852 0.383356 Vertex 24348 0.479822 0.490343 0.396042 Vertex 24349 0.502547 0.0787714 0.730418 Vertex 24350 0.357092 0.4036 0.508307 Vertex 24351 0.397011 0.458242 0.406206 Vertex 24352 0.309859 0.989108 0.230966 Vertex 24353 0.415993 0.232926 0.200091 Vertex 24354 0.418883 0.230279 0.200364 Vertex 24355 0.377602 0.870696 0.335762 Vertex 24356 0.340278 0.11981 0.461784 Vertex 24357 0.360042 0.105459 0.480553 Vertex 24358 0.359858 0.33591 0.552602 Vertex 24359 0.601882 0.517214 0.331166 Vertex 24360 0.452909 0.254402 0.627826 Vertex 24361 0.386054 0.413568 0.584247 Vertex 24362 0.595384 0.427966 0.358179 Vertex 24363 0.48058 0.562688 0.574913 Vertex 24364 0.414702 0.46869 0.597277 Vertex 24365 0.641279 0.443329 0.216361 Vertex 24366 0.418735 0.868304 0.351089 Vertex 24367 0.482445 0.195596 0.787264 Vertex 24368 0.484607 0.195934 0.783136 Vertex 24369 0.404272 0.514721 0.495099 Vertex 24370 0.525124 0.597135 0.430116 Vertex 24371 0.365952 0.134403 0.462613 Vertex 24372 0.458583 0.201294 0.616087 Vertex 24373 0.505212 0.0459717 0.673365 Vertex 24374 0.382026 0.23388 0.599042 Vertex 24375 0.480728 0.449323 0.608009 Vertex 24376 0.538438 0.402042 0.458681 Vertex 24377 0.407103 0.37783 0.622851 Vertex 24378 0.528997 0.488975 0.412146 Vertex 24379 0.36706 0.373673 0.250446 Vertex 24380 0.518076 0.336449 0.569642 Vertex 24381 0.389619 0.502058 0.511623 Vertex 24382 0.600359 0.455891 0.185486 Vertex 24383 0.547375 0.157957 0.426402 Vertex 24384 0.586015 0.478539 0.468086 Vertex 24385 0.525053 0.170365 0.460185 Vertex 24386 0.524632 0.170051 0.460428 Vertex 24387 0.385894 0.867249 0.325604 Vertex 24388 0.520439 0.367756 0.546863 Vertex 24389 0.504247 0.0420272 0.676238 Vertex 24390 0.357815 0.392684 0.35411 Vertex 24391 0.357755 0.394378 0.358244 Vertex 24392 0.399498 0.320706 0.238014 Vertex 24393 0.313525 0.939938 0.258903 Vertex 24394 0.314603 0.938819 0.26286 Vertex 24395 0.314153 0.9395 0.260887 Vertex 24396 0.45709 0.193298 0.619274 Vertex 24397 0.393262 0.871081 0.328844 Vertex 24398 0.471684 0.525755 0.414788 Vertex 24399 0.617796 0.542776 0.279496 Vertex 24400 0.452554 0.168038 0.62782 Vertex 24401 0.45433 0.169601 0.633855 Vertex 24402 0.521014 0.0872882 0.720036 Vertex 24403 0.411717 0.244233 0.194358 Vertex 24404 0.474852 0.213844 0.490325 Vertex 24405 0.472501 0.21443 0.486369 Vertex 24406 0.494397 0.209479 0.486612 Vertex 24407 0.516471 0.164691 0.446409 Vertex 24408 0.517886 0.169015 0.445266 Vertex 24409 0.419061 0.534082 0.501424 Vertex 24410 0.43029 0.261219 0.723056 Vertex 24411 0.427033 0.262007 0.716796 Vertex 24412 0.458222 0.108177 0.658493 Vertex 24413 0.662701 0.486073 0.217913 Vertex 24414 0.563532 0.460534 0.326244 Vertex 24415 0.50555 0.664055 0.542759 Vertex 24416 0.507113 0.664268 0.538648 Vertex 24417 0.54705 0.0258406 0.721688 Vertex 24418 0.574134 0.505434 0.424453 Vertex 24419 0.496902 0.203864 0.476899 Vertex 24420 0.468764 0.203266 0.582144 Vertex 24421 0.556561 0.0289737 0.77697 Vertex 24422 0.421643 0.375686 0.325113 Vertex 24423 0.442396 0.816717 0.456051 Vertex 24424 0.535945 0.546976 0.567598 Vertex 24425 0.502653 0.25885 0.509598 Vertex 24426 0.510761 0.285976 0.48336 Vertex 24427 0.358561 0.386448 0.383125 Vertex 24428 0.498188 0.384606 0.443963 Vertex 24429 0.412623 0.824914 0.41204 Vertex 24430 0.59147 0.479398 0.416339 Vertex 24431 0.548027 0.0446628 0.792665 Vertex 24432 0.549679 0.0443607 0.792174 Vertex 24433 0.36831 0.161481 0.474915 Vertex 24434 0.422579 0.841515 0.347228 Vertex 24435 0.365028 0.8808 0.339546 Vertex 24436 0.366385 0.881796 0.34371 Vertex 24437 0.670537 0.486345 0.21013 Vertex 24438 0.521262 0.370954 0.495235 Vertex 24439 0.523531 0.369616 0.501424 Vertex 24440 0.370169 0.215994 0.485386 Vertex 24441 0.407719 0.284039 0.218813 Vertex 24442 0.437202 0.251293 0.756057 Vertex 24443 0.508487 0.0633251 0.6845 Vertex 24444 0.475362 0.497219 0.603798 Vertex 24445 0.500207 0.183899 0.752024 Vertex 24446 0.49204 0.656574 0.40453 Vertex 24447 0.49172 0.562576 0.578117 Vertex 24448 0.450931 0.235337 0.667046 Vertex 24449 0.455841 0.226494 0.669136 Vertex 24450 0.548347 0.566497 0.511665 Vertex 24451 0.615883 0.47726 0.28921 Vertex 24452 0.419736 0.138105 0.682149 Vertex 24453 0.437362 0.175477 0.789177 Vertex 24454 0.526913 0.34201 0.502265 Vertex 24455 0.47975 0.48307 0.390428 Vertex 24456 0.367871 0.245838 0.203982 Vertex 24457 0.388808 0.251577 0.685436 Vertex 24458 0.3876 0.248503 0.683582 Vertex 24459 0.604511 0.523249 0.211226 Vertex 24460 0.515411 0.108876 0.689842 Vertex 24461 0.439613 0.300948 0.424021 Vertex 24462 0.451944 0.792523 0.379737 Vertex 24463 0.404544 0.447001 0.390469 Vertex 24464 0.431617 0.143092 0.72093 Vertex 24465 0.622765 0.489123 0.296323 Vertex 24466 0.451991 0.745361 0.436903 Vertex 24467 0.660285 0.497812 0.196449 Vertex 24468 0.415525 0.851874 0.34201 Vertex 24469 0.387754 0.890235 0.31675 Vertex 24470 0.402152 0.301446 0.629366 Vertex 24471 0.523531 0.643379 0.431229 Vertex 24472 0.420642 0.168405 0.577874 Vertex 24473 0.418386 0.148807 0.650095 Vertex 24474 0.360995 0.150299 0.475732 Vertex 24475 0.462296 0.506121 0.415113 Vertex 24476 0.521422 0.161552 0.770657 Vertex 24477 0.6391 0.471568 0.184017 Vertex 24478 0.36751 0.283417 0.580006 Vertex 24479 0.432138 0.258607 0.69814 Vertex 24480 0.509725 0.044497 0.665571 Vertex 24481 0.447946 0.586628 0.511617 Vertex 24482 0.459057 0.110096 0.766517 Vertex 24483 0.438949 0.839751 0.445053 Vertex 24484 0.524147 0.145354 0.760334 Vertex 24485 0.535489 0.0817387 0.774868 Vertex 24486 0.490388 0.27063 0.455773 Vertex 24487 0.490743 0.275771 0.452882 Vertex 24488 0.389436 0.248746 0.692276 Vertex 24489 0.467994 0.189857 0.483029 Vertex 24490 0.510074 0.288203 0.479564 Vertex 24491 0.46312 0.0687912 0.691909 Vertex 24492 0.513859 0.287131 0.502212 Vertex 24493 0.454964 0.135054 0.795846 Vertex 24494 0.485845 0.720634 0.503645 Vertex 24495 0.371052 0.345765 0.50345 Vertex 24496 0.662186 0.404299 0.217853 Vertex 24497 0.359846 0.348235 0.403813 Vertex 24498 0.655884 0.433397 0.229776 Vertex 24499 0.476688 0.16147 0.660945 Vertex 24500 0.370341 0.262498 0.58619 Vertex 24501 0.381719 0.0816557 0.466327 Vertex 24502 0.329498 0.25166 0.233306 Vertex 24503 0.521582 0.374129 0.536487 Vertex 24504 0.470298 0.196698 0.483852 Vertex 24505 0.473016 0.196247 0.483035 Vertex 24506 0.456895 0.160149 0.800365 Vertex 24507 0.438268 0.809894 0.377096 Vertex 24508 0.445494 0.246016 0.637989 Vertex 24509 0.515535 0.0242059 0.737437 Vertex 24510 0.419316 0.160054 0.712668 Vertex 24511 0.537798 0.0527176 0.791208 Vertex 24512 0.360119 0.251293 0.503124 Vertex 24513 0.372473 0.394236 0.279485 Vertex 24514 0.465803 0.227638 0.7562 Vertex 24515 0.319827 0.957534 0.271418 Vertex 24516 0.493213 0.41044 0.399442 Vertex 24517 0.624465 0.49077 0.268776 Vertex 24518 0.475474 0.546745 0.412217 Vertex 24519 0.467958 0.0598189 0.658766 Vertex 24520 0.437089 0.463898 0.413183 Vertex 24521 0.507771 0.0329359 0.721043 Vertex 24522 0.396928 0.900126 0.344551 Vertex 24523 0.532107 0.115255 0.433788 Vertex 24524 0.445488 0.187446 0.799411 Vertex 24525 0.427595 0.228615 0.200423 Vertex 24526 0.549952 0.424045 0.387437 Vertex 24527 0.412884 0.234614 0.461701 Vertex 24528 0.589509 0.436157 0.199683 Vertex 24529 0.45529 0.486594 0.61248 Vertex 24530 0.371502 0.896004 0.357841 Vertex 24531 0.464221 0.818127 0.452977 Vertex 24532 0.454621 0.814721 0.469039 Vertex 24533 0.520439 0.134948 0.703085 Vertex 24534 0.411841 0.831749 0.418448 Vertex 24535 0.35156 0.398258 0.47437 Vertex 24536 0.469498 0.368153 0.629496 Vertex 24537 0.306607 0.995777 0.214317 Vertex 24538 0.447087 0.794685 0.387336 Vertex 24539 0.384093 0.233311 0.673276 Vertex 24540 0.362985 0.338877 0.522669 Vertex 24541 0.433933 0.167872 0.536558 Vertex 24542 0.417663 0.383386 0.394047 Vertex 24543 0.355552 0.240519 0.529652 Vertex 24544 0.470991 0.504113 0.607055 Vertex 24545 0.390863 0.349733 0.390807 Vertex 24546 0.391686 0.351711 0.395296 Vertex 24547 0.386848 0.3466 0.399442 Vertex 24548 0.478637 0.350633 0.422078 Vertex 24549 0.537609 0.588233 0.441647 Vertex 24550 0.458719 0.235296 0.731324 Vertex 24551 0.341628 0.115196 0.458225 Vertex 24552 0.445186 0.484569 0.417329 Vertex 24553 0.510554 0.283784 0.55519 Vertex 24554 0.521381 0.0743116 0.719645 Vertex 24555 0.49236 0.346268 0.436388 Vertex 24556 0.502801 0.161481 0.705028 Vertex 24557 0.364928 0.378879 0.308506 Vertex 24558 0.545137 0.618456 0.498232 Vertex 24559 0.421542 0.376267 0.339534 Vertex 24560 0.442852 0.201726 0.799003 Vertex 24561 0.39492 0.337272 0.260633 Vertex 24562 0.605003 0.446658 0.336934 Vertex 24563 0.541334 0.0513021 0.79767 Vertex 24564 0.542779 0.0525577 0.799056 Vertex 24565 0.659314 0.422161 0.206186 Vertex 24566 0.401903 0.204746 0.473937 Vertex 24567 0.455616 0.636088 0.49151 Vertex 24568 0.491554 0.577815 0.391654 Vertex 24569 0.49984 0.501999 0.394876 Vertex 24570 0.472412 0.6862 0.50342 Vertex 24571 0.342208 0.932263 0.260674 Vertex 24572 0.420393 0.373199 0.320949 Vertex 24573 0.370732 0.35292 0.368638 Vertex 24574 0.407062 0.465296 0.596619 Vertex 24575 0.60903 0.457869 0.333943 Vertex 24576 0.322018 0.9741 0.206784 Vertex 24577 0.382429 0.220797 0.646311 Vertex 24578 0.377093 0.281634 0.598586 Vertex 24579 0.521819 0.124542 0.713148 Vertex 24580 0.472525 0.506707 0.405933 Vertex 24581 0.423675 0.443122 0.605811 Vertex 24582 0.371052 0.464082 0.46901 Vertex 24583 0.545 0.606303 0.509142 Vertex 24584 0.424794 0.23372 0.213648 Vertex 24585 0.365798 0.270429 0.196745 Vertex 24586 0.419766 0.21228 0.781063 Vertex 24587 0.418409 0.21212 0.77501 Vertex 24588 0.432209 0.501294 0.443074 Vertex 24589 0.49403 0.765794 0.484675 Vertex 24590 0.590516 0.508022 0.289612 Vertex 24591 0.444842 0.171206 0.602874 Vertex 24592 0.340941 0.264376 0.230238 Vertex 24593 0.538669 0.625996 0.51799 Vertex 24594 0.592488 0.441303 0.188506 Vertex 24595 0.604873 0.480541 0.198054 Vertex 24596 0.60463 0.478504 0.193221 Vertex 24597 0.487556 0.155144 0.659696 Vertex 24598 0.358626 0.288244 0.499192 Vertex 24599 0.368653 0.916781 0.344634 Vertex 24600 0.526794 0.100673 0.794969 Vertex 24601 0.519491 0.0758634 0.720741 Vertex 24602 0.374066 0.38274 0.565531 Vertex 24603 0.400564 0.281623 0.627773 Vertex 24604 0.371763 0.369023 0.48156 Vertex 24605 0.494587 0.603543 0.40222 Vertex 24606 0.494764 0.612824 0.402261 Vertex 24607 0.359568 0.2783 0.491208 Vertex 24608 0.408021 0.443655 0.602803 Vertex 24609 0.505988 0.318918 0.453161 Vertex 24610 0.453661 0.152941 0.791576 Vertex 24611 0.555033 0.152994 0.430293 Vertex 24612 0.50366 0.0802165 0.774737 Vertex 24613 0.503962 0.735168 0.496947 Vertex 24614 0.533747 0.117701 0.780915 Vertex 24615 0.518508 0.0309518 0.663155 Vertex 24616 0.495801 0.163252 0.685051 Vertex 24617 0.492822 0.164721 0.685761 Vertex 24618 0.445476 0.137139 0.754121 Vertex 24619 0.425682 0.175862 0.49424 Vertex 24620 0.488563 0.420029 0.613209 Vertex 24621 0.5173 0.313913 0.48243 Vertex 24622 0.332845 0.914192 0.277933 Vertex 24623 0.331423 0.915211 0.283986 Vertex 24624 0.375168 0.379305 0.512435 Vertex 24625 0.353444 0.0844868 0.44199 Vertex 24626 0.49342 0.396196 0.418377 Vertex 24627 0.528766 0.565762 0.42889 Vertex 24628 0.526812 0.566041 0.424998 Vertex 24629 0.465139 0.100484 0.766523 Vertex 24630 0.417687 0.373015 0.309678 Vertex 24631 0.659029 0.438674 0.223409 Vertex 24632 0.37781 0.86812 0.343882 Vertex 24633 0.442017 0.252365 0.71682 Vertex 24634 0.395039 0.369669 0.2307 Vertex 24635 0.48806 0.0531796 0.690138 Vertex 24636 0.520854 0.0193671 0.74372 Vertex 24637 0.543389 0.518594 0.567598 Vertex 24638 0.555412 0.0224943 0.730122 Vertex 24639 0.552108 0.465557 0.370717 Vertex 24640 0.521926 0.0602749 0.670226 Vertex 24641 0.6124 0.539857 0.291004 Vertex 24642 0.597765 0.518553 0.203846 Vertex 24643 0.374274 0.353678 0.466054 Vertex 24644 0.534766 0.510634 0.419846 Vertex 24645 0.479691 0.749939 0.394805 Vertex 24646 0.4188 0.87775 0.388574 Vertex 24647 0.554394 0.554776 0.465693 Vertex 24648 0.552433 0.55663 0.462021 Vertex 24649 0.436349 0.458414 0.608862 Vertex 24650 0.46434 0.123547 0.799607 Vertex 24651 0.460164 0.127059 0.801851 Vertex 24652 0.476114 0.0645505 0.701054 Vertex 24653 0.549579 0.455879 0.372837 Vertex 24654 0.657726 0.412223 0.23192 Vertex 24655 0.368795 0.367554 0.3189 Vertex 24656 0.58528 0.493222 0.463952 Vertex 24657 0.374984 0.17794 0.476834 Vertex 24658 0.406108 0.880036 0.395267 Vertex 24659 0.488374 0.351172 0.431146 Vertex 24660 0.489837 0.343473 0.434137 Vertex 24661 0.510809 0.275487 0.492203 Vertex 24662 0.512977 0.522456 0.400828 Vertex 24663 0.52975 0.064409 0.795793 Vertex 24664 0.518538 0.392062 0.555078 Vertex 24665 0.513148 0.303495 0.477254 Vertex 24666 0.387233 0.909899 0.34538 Vertex 24667 0.460964 0.365636 0.408717 Vertex 24668 0.463546 0.364492 0.409795 Vertex 24669 0.484335 0.240217 0.474358 Vertex 24670 0.484998 0.234531 0.481471 Vertex 24671 0.486603 0.237404 0.479357 Vertex 24672 0.433577 0.300078 0.425164 Vertex 24673 0.476446 0.432117 0.372121 Vertex 24674 0.486277 0.401195 0.397417 Vertex 24675 0.460431 0.12832 0.80759 Vertex 24676 0.4508 0.226998 0.465178 Vertex 24677 0.482108 0.594878 0.555735 Vertex 24678 0.545551 0.615933 0.466007 Vertex 24679 0.51929 0.374437 0.45797 Vertex 24680 0.520528 0.376225 0.455559 Vertex 24681 0.523803 0.455879 0.593267 Vertex 24682 0.441218 0.246845 0.448197 Vertex 24683 0.437913 0.244967 0.449731 Vertex 24684 0.425339 0.494684 0.435677 Vertex 24685 0.394055 0.304958 0.241502 Vertex 24686 0.611216 0.536741 0.250232 Vertex 24687 0.389489 0.351907 0.302168 Vertex 24688 0.355108 0.360347 0.399768 Vertex 24689 0.323813 0.257861 0.231268 Vertex 24690 0.448899 0.624337 0.482247 Vertex 24691 0.450528 0.62676 0.461571 Vertex 24692 0.410017 0.408551 0.30176 Vertex 24693 0.366817 0.35761 0.542048 Vertex 24694 0.616327 0.531227 0.233987 Vertex 24695 0.379942 0.285632 0.234478 Vertex 24696 0.542288 0.400627 0.442559 Vertex 24697 0.480041 0.128024 0.645363 Vertex 24698 0.537745 0.456993 0.571732 Vertex 24699 0.323854 0.240857 0.233009 Vertex 24700 0.344453 0.101218 0.465883 Vertex 24701 0.486253 0.0725467 0.754991 Vertex 24702 0.477494 0.0472451 0.665411 Vertex 24703 0.478199 0.501496 0.601346 Vertex 24704 0.47304 0.218647 0.482952 Vertex 24705 0.451517 0.520401 0.430874 Vertex 24706 0.372313 0.321903 0.60298 Vertex 24707 0.372989 0.326629 0.604751 Vertex 24708 0.634284 0.453344 0.187363 Vertex 24709 0.628291 0.453255 0.191343 Vertex 24710 0.528168 0.568901 0.429476 Vertex 24711 0.47628 0.697932 0.501152 Vertex 24712 0.474556 0.526086 0.409973 Vertex 24713 0.475226 0.528065 0.408077 Vertex 24714 0.595005 0.495129 0.390795 Vertex 24715 0.363998 0.360495 0.244114 Vertex 24716 0.465139 0.495857 0.407592 Vertex 24717 0.364803 0.330769 0.5056 Vertex 24718 0.655683 0.473286 0.213968 Vertex 24719 0.378485 0.223817 0.218102 Vertex 24720 0.515671 0.640708 0.5368 Vertex 24721 0.445346 0.847314 0.386075 Vertex 24722 0.552623 0.0476834 0.726041 Vertex 24723 0.482238 0.182975 0.713515 Vertex 24724 0.480728 0.195252 0.715801 Vertex 24725 0.480384 0.198273 0.716299 Vertex 24726 0.460188 0.780583 0.475134 Vertex 24727 0.641877 0.476739 0.189436 Vertex 24728 0.632697 0.452148 0.201809 Vertex 24729 0.348042 0.108177 0.455773 Vertex 24730 0.371751 0.299006 0.594552 Vertex 24731 0.349635 0.174197 0.470644 Vertex 24732 0.443077 0.577169 0.507483 Vertex 24733 0.441626 0.572591 0.503355 Vertex 24734 0.412333 0.382136 0.378908 Vertex 24735 0.370945 0.334056 0.594694 Vertex 24736 0.529134 0.502058 0.415901 Vertex 24737 0.469575 0.174387 0.798878 Vertex 24738 0.389442 0.890644 0.382213 Vertex 24739 0.49981 0.0953134 0.811351 Vertex 24740 0.549739 0.0455926 0.782929 Vertex 24741 0.4403 0.423423 0.636704 Vertex 24742 0.542933 0.628685 0.504498 Vertex 24743 0.588816 0.43833 0.436998 Vertex 24744 0.549863 0.545827 0.540621 Vertex 24745 0.417853 0.253999 0.201886 Vertex 24746 0.450658 0.0961011 0.662912 Vertex 24747 0.507658 0.329336 0.592396 Vertex 24748 0.370193 0.304881 0.482122 Vertex 24749 0.594093 0.435831 0.19087 Vertex 24750 0.445766 0.435339 0.398382 Vertex 24751 0.440323 0.432402 0.399513 Vertex 24752 0.378218 0.342496 0.468548 Vertex 24753 0.358283 0.388088 0.497249 Vertex 24754 0.484607 0.094958 0.650427 Vertex 24755 0.523288 0.0625374 0.648028 Vertex 24756 0.491377 0.192658 0.781069 Vertex 24757 0.404823 0.284886 0.2066 Vertex 24758 0.693067 0.447422 0.202816 Vertex 24759 0.69402 0.448831 0.200909 Vertex 24760 0.415442 0.388989 0.297697 Vertex 24761 0.319128 0.99252 0.202431 Vertex 24762 0.419091 0.856808 0.427746 Vertex 24763 0.551776 0.559727 0.496568 Vertex 24764 0.49387 0.0536949 0.740356 Vertex 24765 0.61028 0.461725 0.214211 Vertex 24766 0.477097 0.464094 0.382521 Vertex 24767 0.517531 0.121699 0.790871 Vertex 24768 0.385835 0.344906 0.390807 Vertex 24769 0.436693 0.154043 0.580054 Vertex 24770 0.658526 0.406502 0.218517 Vertex 24771 0.488386 0.350485 0.627115 Vertex 24772 0.557598 0.0287012 0.762389 Vertex 24773 0.414329 0.405329 0.304751 Vertex 24774 0.300963 0.982937 0.220252 Vertex 24775 0.563834 0.502556 0.407307 Vertex 24776 0.405616 0.358978 0.258743 Vertex 24777 0.38805 0.247076 0.689795 Vertex 24778 0.595698 0.425371 0.373288 Vertex 24779 0.503062 0.686762 0.530374 Vertex 24780 0.526658 0.572816 0.559277 Vertex 24781 0.431558 0.338741 0.423968 Vertex 24782 0.416443 0.415143 0.34413 Vertex 24783 0.527369 0.40158 0.476413 Vertex 24784 0.530561 0.593238 0.545098 Vertex 24785 0.392024 0.351546 0.621968 Vertex 24786 0.524662 0.0631356 0.671618 Vertex 24787 0.382257 0.467701 0.443578 Vertex 24788 0.375559 0.39163 0.251814 Vertex 24789 0.554269 0.470881 0.377001 Vertex 24790 0.44749 0.173273 0.602791 Vertex 24791 0.501723 0.518878 0.393679 Vertex 24792 0.492016 0.624284 0.402492 Vertex 24793 0.44303 0.470863 0.608725 Vertex 24794 0.362411 0.185391 0.458432 Vertex 24795 0.356553 0.891029 0.312847 Vertex 24796 0.608894 0.52945 0.302891 Vertex 24797 0.40201 0.173966 0.608862 Vertex 24798 0.40644 0.172148 0.610733 Vertex 24799 0.354764 0.301848 0.524588 Vertex 24800 0.355375 0.298751 0.517498 Vertex 24801 0.460212 0.222834 0.689866 Vertex 24802 0.47737 0.411151 0.377599 Vertex 24803 0.505757 0.0346239 0.721078 Vertex 24804 0.379071 0.485984 0.499186 Vertex 24805 0.46123 0.135285 0.649444 Vertex 24806 0.458612 0.133094 0.650154 Vertex 24807 0.3721 0.464751 0.464035 Vertex 24808 0.411024 0.264198 0.67741 Vertex 24809 0.448123 0.577169 0.52823 Vertex 24810 0.648067 0.447309 0.221063 Vertex 24811 0.525941 0.700621 0.449453 Vertex 24812 0.433684 0.149447 0.594517 Vertex 24813 0.46781 0.371351 0.410417 Vertex 24814 0.433406 0.490177 0.434374 Vertex 24815 0.496209 0.29881 0.448855 Vertex 24816 0.389507 0.494797 0.476656 Vertex 24817 0.396389 0.274877 0.229527 Vertex 24818 0.673581 0.448511 0.20355 Vertex 24819 0.63374 0.488608 0.241769 Vertex 24820 0.630826 0.509704 0.192913 Vertex 24821 0.631584 0.507288 0.190793 Vertex 24822 0.649073 0.417613 0.215324 Vertex 24823 0.528565 0.494779 0.590507 Vertex 24824 0.653071 0.417003 0.20801 Vertex 24825 0.504679 0.341453 0.6007 Vertex 24826 0.35101 0.1452 0.457016 Vertex 24827 0.348563 0.142754 0.460084 Vertex 24828 0.514268 0.123997 0.708498 Vertex 24829 0.402318 0.180469 0.710601 Vertex 24830 0.406694 0.276221 0.639482 Vertex 24831 0.355238 0.12174 0.475092 Vertex 24832 0.537011 0.560254 0.435162 Vertex 24833 0.396229 0.502911 0.480002 Vertex 24834 0.603072 0.489123 0.389 Vertex 24835 0.375606 0.916449 0.341927 Vertex 24836 0.370418 0.100727 0.46946 Vertex 24837 0.612519 0.498659 0.239809 Vertex 24838 0.513628 0.0346239 0.629206 Vertex 24839 0.388127 0.413307 0.292283 Vertex 24840 0.388038 0.420213 0.301872 Vertex 24841 0.466057 0.209425 0.662912 Vertex 24842 0.368398 0.436536 0.555214 Vertex 24843 0.56201 0.526211 0.451508 Vertex 24844 0.694157 0.44542 0.213672 Vertex 24845 0.419843 0.264838 0.675343 Vertex 24846 0.406244 0.369154 0.408421 Vertex 24847 0.362357 0.268593 0.201483 Vertex 24848 0.544615 0.0236077 0.776982 Vertex 24849 0.608391 0.489846 0.192504 Vertex 24850 0.50257 0.275119 0.465936 Vertex 24851 0.355452 0.304419 0.520655 Vertex 24852 0.512177 0.153509 0.714913 Vertex 24853 0.440371 0.148096 0.602056 Vertex 24854 0.441443 0.153415 0.602732 Vertex 24855 0.419523 0.236385 0.214726 Vertex 24856 0.48745 0.525382 0.389978 Vertex 24857 0.640432 0.447025 0.21411 Vertex 24858 0.311511 0.953122 0.226939 Vertex 24859 0.372029 0.453664 0.445372 Vertex 24860 0.460798 0.732663 0.472261 Vertex 24861 0.551373 0.521597 0.43762 Vertex 24862 0.325045 0.256025 0.205161 Vertex 24863 0.479691 0.531008 0.395675 Vertex 24864 0.417906 0.81561 0.41416 Vertex 24865 0.42544 0.133532 0.680567 Vertex 24866 0.519343 0.521378 0.408545 Vertex 24867 0.454236 0.123565 0.637723 Vertex 24868 0.357447 0.436619 0.485877 Vertex 24869 0.38513 0.865396 0.339706 Vertex 24870 0.562573 0.400413 0.421083 Vertex 24871 0.567116 0.402392 0.420444 Vertex 24872 0.405208 0.251915 0.7278 Vertex 24873 0.605927 0.494981 0.198078 Vertex 24874 0.543431 0.542066 0.435665 Vertex 24875 0.486591 0.515254 0.392288 Vertex 24876 0.495066 0.236018 0.517854 Vertex 24877 0.496399 0.239293 0.519974 Vertex 24878 0.436272 0.133479 0.729802 Vertex 24879 0.436142 0.132798 0.725461 Vertex 24880 0.532823 0.029483 0.730649 Vertex 24881 0.489138 0.608642 0.403677 Vertex 24882 0.439956 0.25914 0.72719 Vertex 24883 0.473911 0.217871 0.764503 Vertex 24884 0.372236 0.105844 0.470372 Vertex 24885 0.372544 0.104505 0.471787 Vertex 24886 0.457499 0.23712 0.754133 Vertex 24887 0.490482 0.0626736 0.733717 Vertex 24888 0.511603 0.707723 0.503219 Vertex 24889 0.513279 0.704951 0.503355 Vertex 24890 0.490115 0.230184 0.569778 Vertex 24891 0.384632 0.185924 0.482353 Vertex 24892 0.469646 0.0760825 0.746013 Vertex 24893 0.346491 0.289316 0.200452 Vertex 24894 0.553896 0.471628 0.355075 Vertex 24895 0.484725 0.75832 0.499808 Vertex 24896 0.495712 0.128717 0.7961 Vertex 24897 0.359734 0.100046 0.471053 Vertex 24898 0.442811 0.769419 0.430874 Vertex 24899 0.552321 0.550618 0.467351 Vertex 24900 0.457552 0.568244 0.443104 Vertex 24901 0.456919 0.565466 0.441837 Vertex 24902 0.594964 0.450472 0.2014 Vertex 24903 0.416028 0.166705 0.584164 Vertex 24904 0.441206 0.290406 0.427954 Vertex 24905 0.555412 0.479055 0.376758 Vertex 24906 0.555756 0.48153 0.37895 Vertex 24907 0.554678 0.477805 0.378742 Vertex 24908 0.657732 0.459468 0.208069 Vertex 24909 0.35865 0.405027 0.345801 Vertex 24910 0.491921 0.455056 0.607979 Vertex 24911 0.375387 0.32988 0.262469 Vertex 24912 0.376199 0.328104 0.260414 Vertex 24913 0.370501 0.330248 0.2585 Vertex 24914 0.555442 0.00772315 0.76394 Vertex 24915 0.364892 0.402688 0.381017 Vertex 24916 0.589308 0.417411 0.396345 Vertex 24917 0.399487 0.381721 0.239566 Vertex 24918 0.520321 0.100348 0.673247 Vertex 24919 0.456125 0.768714 0.408012 Vertex 24920 0.394286 0.181299 0.637675 Vertex 24921 0.371158 0.368253 0.565555 Vertex 24922 0.369642 0.183478 0.505535 Vertex 24923 0.355736 0.0899001 0.448938 Vertex 24924 0.354528 0.0910136 0.447339 Vertex 24925 0.37306 0.381372 0.542646 Vertex 24926 0.357436 0.435286 0.48997 Vertex 24927 0.605471 0.541296 0.26479 Vertex 24928 0.366556 0.117198 0.472528 Vertex 24929 0.354374 0.14199 0.454683 Vertex 24930 0.383424 0.394017 0.25866 Vertex 24931 0.503346 0.0937913 0.71955 Vertex 24932 0.374386 0.343751 0.480553 Vertex 24933 0.374594 0.34397 0.484687 Vertex 24934 0.423142 0.394201 0.337556 Vertex 24935 0.446584 0.243291 0.689866 Vertex 24936 0.525136 0.157484 0.783029 Vertex 24937 0.535181 0.662284 0.50024 Vertex 24938 0.355552 0.307955 0.200476 Vertex 24939 0.437498 0.128078 0.66916 Vertex 24940 0.414317 0.823901 0.38749 Vertex 24941 0.392362 0.305752 0.621489 Vertex 24942 0.354451 0.895868 0.290459 Vertex 24943 0.38866 0.211605 0.475649 Vertex 24944 0.392054 0.345943 0.279212 Vertex 24945 0.447733 0.296133 0.426195 Vertex 24946 0.496654 0.242711 0.559247 Vertex 24947 0.482102 0.490154 0.603501 Vertex 24948 0.499633 0.641122 0.407278 Vertex 24949 0.47458 0.240762 0.46349 Vertex 24950 0.513942 0.542954 0.402178 Vertex 24951 0.475682 0.181204 0.488685 Vertex 24952 0.501487 0.173765 0.736649 Vertex 24953 0.321834 0.960194 0.215437 Vertex 24954 0.464221 0.170389 0.489372 Vertex 24955 0.47224 0.706757 0.495052 Vertex 24956 0.530348 0.124678 0.774826 Vertex 24957 0.420885 0.845543 0.34554 Vertex 24958 0.505022 0.457093 0.396451 Vertex 24959 0.463605 0.0812234 0.729767 Vertex 24960 0.36472 0.257002 0.480968 Vertex 24961 0.602296 0.516569 0.35411 Vertex 24962 0.348143 0.908655 0.329128 Vertex 24963 0.452346 0.384772 0.405821 Vertex 24964 0.336582 0.287006 0.218321 Vertex 24965 0.327935 0.932014 0.244795 Vertex 24966 0.521943 0.0728428 0.795479 Vertex 24967 0.52372 0.0725171 0.795342 Vertex 24968 0.525053 0.316549 0.498635 Vertex 24969 0.545812 0.461766 0.387164 Vertex 24970 0.464855 0.257476 0.618971 Vertex 24971 0.447762 0.173303 0.485605 Vertex 24972 0.446779 0.164585 0.495046 Vertex 24973 0.5 0.04442 0.632659 Vertex 24974 0.404177 0.262717 0.678417 Vertex 24975 0.580365 0.496627 0.416582 Vertex 24976 0.378461 0.430814 0.578117 Vertex 24977 0.424918 0.445242 0.393679 Vertex 24978 0.507522 0.0901429 0.809059 Vertex 24979 0.378094 0.333659 0.213565 Vertex 24980 0.425469 0.419242 0.385097 Vertex 24981 0.537194 0.459024 0.573823 Vertex 24982 0.408536 0.289902 0.635709 Vertex 24983 0.372213 0.347329 0.501525 Vertex 24984 0.358999 0.281812 0.561202 Vertex 24985 0.520007 0.407977 0.571643 Vertex 24986 0.559043 0.024585 0.731982 Vertex 24987 0.506953 0.140101 0.704341 Vertex 24988 0.513332 0.170774 0.783728 Vertex 24989 0.64244 0.440314 0.217936 Vertex 24990 0.357755 0.350989 0.416298 Vertex 24991 0.664093 0.408077 0.232364 Vertex 24992 0.504098 0.177858 0.45091 Vertex 24993 0.338631 0.93119 0.309826 Vertex 24994 0.499988 0.582766 0.571643 Vertex 24995 0.386522 0.204065 0.658778 Vertex 24996 0.495499 0.601725 0.564341 Vertex 24997 0.615474 0.542356 0.284584 Vertex 24998 0.437374 0.504652 0.436927 Vertex 24999 0.447774 0.503255 0.423843 Vertex 25000 0.539534 0.663427 0.48506 Vertex 25001 0.603161 0.461861 0.392749 Vertex 25002 0.599595 0.460286 0.395432 Vertex 25003 0.518621 0.534029 0.406378 Vertex 25004 0.358259 0.328548 0.532347 Vertex 25005 0.386368 0.198516 0.573752 Vertex 25006 0.5761 0.51205 0.484687 Vertex 25007 0.414234 0.530434 0.507537 Vertex 25008 0.353242 0.171467 0.455411 Vertex 25009 0.422135 0.233797 0.198522 Vertex 25010 0.602628 0.534627 0.293859 Vertex 25011 0.485732 0.101544 0.652654 Vertex 25012 0.370708 0.352689 0.586344 Vertex 25013 0.517229 0.020753 0.657261 Vertex 25014 0.603765 0.446865 0.3285 Vertex 25015 0.546967 0.0179516 0.726462 Vertex 25016 0.373563 0.350752 0.285478 Vertex 25017 0.373415 0.374401 0.497302 Vertex 25018 0.519817 0.438555 0.416334 Vertex 25019 0.43048 0.121711 0.671257 Vertex 25020 0.481036 0.0820703 0.712911 Vertex 25021 0.413263 0.162026 0.613215 Vertex 25022 0.365834 0.431312 0.437081 Vertex 25023 0.599412 0.52961 0.299847 Vertex 25024 0.680736 0.457644 0.214649 Vertex 25025 0.367895 0.221638 0.574007 Vertex 25026 0.440619 0.103475 0.663131 Vertex 25027 0.445855 0.1487 0.626778 Vertex 25028 0.498188 0.403138 0.418774 Vertex 25029 0.397988 0.303791 0.208495 Vertex 25030 0.399966 0.304194 0.214643 Vertex 25031 0.396413 0.310567 0.207684 Vertex 25032 0.510554 0.292976 0.480227 Vertex 25033 0.435467 0.551489 0.555374 Vertex 25034 0.426441 0.262486 0.658784 Vertex 25035 0.438452 0.40376 0.643728 Vertex 25036 0.354658 0.357012 0.41419 Vertex 25037 0.465423 0.22496 0.731324 Vertex 25038 0.505117 0.0676783 0.63636 Vertex 25039 0.329546 0.960419 0.247644 Vertex 25040 0.407713 0.244653 0.745551 Vertex 25041 0.479703 0.16937 0.528177 Vertex 25042 0.369251 0.319048 0.590768 Vertex 25043 0.47153 0.0724638 0.704068 Vertex 25044 0.534908 0.476087 0.403185 Vertex 25045 0.402673 0.289577 0.231629 Vertex 25046 0.399581 0.893813 0.374987 Vertex 25047 0.483345 0.0435197 0.670256 Vertex 25048 0.604553 0.516918 0.202869 Vertex 25049 0.522062 0.483514 0.411453 Vertex 25050 0.467141 0.219683 0.712662 Vertex 25051 0.478696 0.451994 0.37661 Vertex 25052 0.452246 0.374342 0.634353 Vertex 25053 0.466803 0.190289 0.687289 Vertex 25054 0.411752 0.395734 0.618871 Vertex 25055 0.34867 0.089983 0.44343 Vertex 25056 0.401838 0.371683 0.239915 Vertex 25057 0.441034 0.284069 0.635496 Vertex 25058 0.449989 0.104292 0.7199 Vertex 25059 0.484577 0.743087 0.505937 Vertex 25060 0.588579 0.422505 0.206428 Vertex 25061 0.55376 0.556955 0.472386 Vertex 25062 0.493544 0.463211 0.607926 Vertex 25063 0.448668 0.105654 0.743673 Vertex 25064 0.575549 0.489461 0.319889 Vertex 25065 0.53123 0.0643556 0.715031 Vertex 25066 0.530194 0.601813 0.54126 Vertex 25067 0.530715 0.596945 0.5428 Vertex 25068 0.530591 0.599142 0.540923 Vertex 25069 0.464932 0.10171 0.65847 Vertex 25070 0.410852 0.264459 0.695788 Vertex 25071 0.400002 0.273882 0.633831 Vertex 25072 0.514037 0.138306 0.789461 Vertex 25073 0.396963 0.262457 0.197136 Vertex 25074 0.437226 0.397227 0.415439 Vertex 25075 0.463268 0.230889 0.752054 Vertex 25076 0.550313 0.507833 0.410435 Vertex 25077 0.374967 0.42363 0.360216 Vertex 25078 0.532515 0.0638404 0.80226 Vertex 25079 0.611234 0.518547 0.208365 Vertex 25080 0.382269 0.221176 0.609726 Vertex 25081 0.330784 0.259898 0.235544 Vertex 25082 0.465406 0.537452 0.583157 Vertex 25083 0.362985 0.359612 0.449589 Vertex 25084 0.523258 0.0259531 0.638025 Vertex 25085 0.456036 0.164028 0.549019 Vertex 25086 0.525367 0.134468 0.749957 Vertex 25087 0.521997 0.394651 0.526157 Vertex 25088 0.448194 0.623331 0.475963 Vertex 25089 0.484074 0.595666 0.416298 Vertex 25090 0.42284 0.45916 0.401663 Vertex 25091 0.453874 0.133722 0.642336 Vertex 25092 0.453886 0.13371 0.644166 Vertex 25093 0.534482 0.0692241 0.708558 Vertex 25094 0.392865 0.184319 0.646832 Vertex 25095 0.461811 0.703085 0.439077 Vertex 25096 0.52542 0.326996 0.513033 Vertex 25097 0.384005 0.257914 0.463354 Vertex 25098 0.459821 0.207767 0.47527 Vertex 25099 0.644294 0.47402 0.222591 Vertex 25100 0.383886 0.227868 0.658748 Vertex 25101 0.384242 0.229598 0.664979 Vertex 25102 0.600093 0.516699 0.358191 Vertex 25103 0.506136 0.5808 0.40113 Vertex 25104 0.356452 0.412087 0.450407 Vertex 25105 0.487568 0.603093 0.405507 Vertex 25106 0.610333 0.492647 0.222426 Vertex 25107 0.613182 0.489881 0.226263 Vertex 25108 0.523531 0.128978 0.706378 Vertex 25109 0.463741 0.204042 0.641116 Vertex 25110 0.548122 0.589565 0.469969 Vertex 25111 0.489191 0.207862 0.548906 Vertex 25112 0.362174 0.263203 0.485155 Vertex 25113 0.488018 0.585425 0.399851 Vertex 25114 0.401121 0.368615 0.374839 Vertex 25115 0.356541 0.425679 0.484361 Vertex 25116 0.551729 0.448908 0.360489 Vertex 25117 0.351377 0.279526 0.228088 Vertex 25118 0.54471 0.122747 0.437134 Vertex 25119 0.368126 0.343603 0.509823 Vertex 25120 0.406061 0.1651 0.696085 Vertex 25121 0.551646 0.45903 0.368514 Vertex 25122 0.557166 0.422138 0.368324 Vertex 25123 0.355001 0.308553 0.542622 Vertex 25124 0.552066 0.509781 0.422854 Vertex 25125 0.427068 0.125264 0.676883 Vertex 25126 0.515085 0.410577 0.440273 Vertex 25127 0.477997 0.461038 0.380034 Vertex 25128 0.49679 0.02619 0.648537 Vertex 25129 0.603404 0.472267 0.201187 Vertex 25130 0.382417 0.426609 0.39131 Vertex 25131 0.446927 0.556653 0.558625 Vertex 25132 0.447579 0.561012 0.555054 Vertex 25133 0.351874 0.267491 0.206186 Vertex 25134 0.537473 0.152532 0.455707 Vertex 25135 0.3695 0.363243 0.300131 Vertex 25136 0.379954 0.375059 0.602957 Vertex 25137 0.505893 0.522278 0.593605 Vertex 25138 0.497779 0.612682 0.404737 Vertex 25139 0.398112 0.325983 0.226802 Vertex 25140 0.630826 0.520288 0.250481 Vertex 25141 0.447419 0.114923 0.662396 Vertex 25142 0.453531 0.547633 0.435606 Vertex 25143 0.479721 0.165266 0.668888 Vertex 25144 0.514706 0.286544 0.528219 Vertex 25145 0.394636 0.333552 0.258548 Vertex 25146 0.510365 0.317994 0.46083 Vertex 25147 0.409786 0.224279 0.762164 Vertex 25148 0.559452 0.499257 0.536569 Vertex 25149 0.352401 0.110179 0.469863 Vertex 25150 0.349511 0.112708 0.471142 Vertex 25151 0.49188 0.332883 0.6214 Vertex 25152 0.49066 0.336301 0.624823 Vertex 25153 0.501605 0.0568812 0.636787 Vertex 25154 0.549904 0.503343 0.408119 Vertex 25155 0.569858 0.505008 0.418294 Vertex 25156 0.381979 0.417613 0.302482 Vertex 25157 0.552546 0.410097 0.395036 Vertex 25158 0.328397 0.932997 0.241384 Vertex 25159 0.448277 0.108479 0.725964 Vertex 25160 0.401992 0.261711 0.671565 Vertex 25161 0.547292 0.572265 0.501306 Vertex 25162 0.506882 0.647228 0.413206 Vertex 25163 0.467378 0.809261 0.463804 Vertex 25164 0.486561 0.0795887 0.725123 Vertex 25165 0.525627 0.392311 0.447392 Vertex 25166 0.549768 0.552732 0.451212 Vertex 25167 0.538195 0.0531026 0.709967 Vertex 25168 0.529542 0.0626973 0.789319 Vertex 25169 0.467183 0.381402 0.628217 Vertex 25170 0.436077 0.144945 0.743762 Vertex 25171 0.580276 0.408764 0.397636 Vertex 25172 0.524727 0.330615 0.505233 Vertex 25173 0.357862 0.351172 0.420444 Vertex 25174 0.527623 0.456015 0.588185 Vertex 25175 0.499621 0.439047 0.390138 Vertex 25176 0.444321 0.47925 0.60404 Vertex 25177 0.447128 0.478527 0.610022 Vertex 25178 0.615646 0.489567 0.374135 Vertex 25179 0.471968 0.582731 0.427421 Vertex 25180 0.33015 0.923118 0.297928 Vertex 25181 0.493444 0.646186 0.403167 Vertex 25182 0.370317 0.393744 0.283601 Vertex 25183 0.523004 0.395101 0.486831 Vertex 25184 0.515725 0.110695 0.696043 Vertex 25185 0.380173 0.910289 0.312586 Vertex 25186 0.54715 0.0638937 0.729257 Vertex 25187 0.375281 0.881286 0.364421 Vertex 25188 0.476037 0.21764 0.778996 Vertex 25189 0.400452 0.279295 0.629336 Vertex 25190 0.481344 0.0424063 0.657658 Vertex 25191 0.459483 0.762365 0.403825 Vertex 25192 0.399167 0.357 0.227732 Vertex 25193 0.445577 0.349567 0.640595 Vertex 25194 0.343766 0.101816 0.454138 Vertex 25195 0.375127 0.37462 0.509598 Vertex 25196 0.406949 0.499014 0.449305 Vertex 25197 0.479774 0.765504 0.497065 Vertex 25198 0.504383 0.261871 0.5531 Vertex 25199 0.360924 0.434664 0.516942 Vertex 25200 0.368262 0.315755 0.201323 Vertex 25201 0.369974 0.317407 0.202839 Vertex 25202 0.490932 0.673016 0.40514 Vertex 25203 0.489718 0.670499 0.405104 Vertex 25204 0.662376 0.429464 0.22589 Vertex 25205 0.418326 0.400484 0.3734 Vertex 25206 0.44194 0.523605 0.43961 Vertex 25207 0.422182 0.167931 0.524055 Vertex 25208 0.36212 0.400005 0.38935 Vertex 25209 0.42371 0.394153 0.392714 Vertex 25210 0.485792 0.354264 0.427818 Vertex 25211 0.524336 0.399217 0.468263 Vertex 25212 0.491092 0.225636 0.504469 Vertex 25213 0.413926 0.269404 0.650889 Vertex 25214 0.420198 0.270156 0.65029 Vertex 25215 0.371934 0.346405 0.384659 Vertex 25216 0.382512 0.492221 0.499186 Vertex 25217 0.348261 0.12254 0.47312 Vertex 25218 0.615681 0.452012 0.205753 Vertex 25219 0.54792 0.588132 0.467659 Vertex 25220 0.525017 0.10633 0.792902 Vertex 25221 0.617115 0.507661 0.351149 Vertex 25222 0.373859 0.384209 0.569659 Vertex 25223 0.53357 0.0181411 0.727984 Vertex 25224 0.363974 0.123251 0.472427 Vertex 25225 0.488919 0.685104 0.406324 Vertex 25226 0.489037 0.150708 0.656705 Vertex 25227 0.533202 0.530043 0.422617 Vertex 25228 0.531781 0.110505 0.777059 Vertex 25229 0.521126 0.371588 0.453711 Vertex 25230 0.448129 0.50483 0.590016 Vertex 25231 0.377063 0.869595 0.341939 Vertex 25232 0.352899 0.392495 0.486102 Vertex 25233 0.500681 0.15672 0.697921 Vertex 25234 0.527493 0.141528 0.447712 Vertex 25235 0.487841 0.391725 0.412188 Vertex 25236 0.434335 0.311917 0.644161 Vertex 25237 0.411296 0.33126 0.214892 Vertex 25238 0.521861 0.156477 0.444721 Vertex 25239 0.400162 0.486529 0.43467 Vertex 25240 0.40153 0.487619 0.437039 Vertex 25241 0.445435 0.200802 0.801336 Vertex 25242 0.379024 0.34458 0.421492 Vertex 25243 0.501048 0.410831 0.60073 Vertex 25244 0.42859 0.552934 0.519921 Vertex 25245 0.616481 0.467547 0.374691 Vertex 25246 0.565872 0.431685 0.495099 Vertex 25247 0.541743 0.149281 0.43618 Vertex 25248 0.35881 0.22788 0.217504 Vertex 25249 0.494723 0.232151 0.532625 Vertex 25250 0.498833 0.664215 0.410719 Vertex 25251 0.442917 0.451342 0.405335 Vertex 25252 0.387783 0.447262 0.408705 Vertex 25253 0.531236 0.41413 0.41628 Vertex 25254 0.535779 0.405661 0.416837 Vertex 25255 0.463374 0.0661028 0.6578 Vertex 25256 0.448372 0.528805 0.578609 Vertex 25257 0.622753 0.53346 0.258767 Vertex 25258 0.352745 0.115237 0.455589 Vertex 25259 0.429929 0.861937 0.409919 Vertex 25260 0.422182 0.843896 0.432793 Vertex 25261 0.376986 0.463111 0.557281 Vertex 25262 0.36112 0.169412 0.480464 Vertex 25263 0.402264 0.29072 0.205807 Vertex 25264 0.503032 0.13281 0.794632 Vertex 25265 0.442876 0.577448 0.501288 Vertex 25266 0.513332 0.103445 0.660732 Vertex 25267 0.435153 0.56122 0.534473 Vertex 25268 0.414696 0.517374 0.570074 Vertex 25269 0.353296 0.291561 0.533916 Vertex 25270 0.390881 0.342105 0.449548 Vertex 25271 0.619898 0.458136 0.189348 Vertex 25272 0.662103 0.43512 0.219677 Vertex 25273 0.441354 0.561107 0.473446 Vertex 25274 0.512894 0.107147 0.710998 Vertex 25275 0.474213 0.0649894 0.702114 Vertex 25276 0.572375 0.459853 0.318627 Vertex 25277 0.499929 0.148221 0.792813 Vertex 25278 0.482919 0.184426 0.715902 Vertex 25279 0.438031 0.777432 0.422523 Vertex 25280 0.598589 0.446509 0.395379 Vertex 25281 0.596012 0.434765 0.393816 Vertex 25282 0.502286 0.553716 0.390807 Vertex 25283 0.522388 0.665962 0.43252 Vertex 25284 0.405557 0.331077 0.631622 Vertex 25285 0.547754 0.155742 0.425845 Vertex 25286 0.40859 0.362846 0.437187 Vertex 25287 0.64905 0.478391 0.219056 Vertex 25288 0.399747 0.167084 0.674905 Vertex 25289 0.448899 0.129114 0.633506 Vertex 25290 0.345229 0.904539 0.279526 Vertex 25291 0.347308 0.907565 0.278898 Vertex 25292 0.395246 0.26209 0.648383 Vertex 25293 0.368286 0.247632 0.481554 Vertex 25294 0.368185 0.2091 0.229237 Vertex 25295 0.469232 0.386033 0.399199 Vertex 25296 0.504845 0.263831 0.488857 Vertex 25297 0.423136 0.253875 0.223278 Vertex 25298 0.478145 0.789094 0.408024 Vertex 25299 0.484133 0.0858727 0.719272 Vertex 25300 0.444747 0.25076 0.718887 Vertex 25301 0.526154 0.589139 0.552525 Vertex 25302 0.47718 0.307025 0.431122 Vertex 25303 0.486739 0.625072 0.412123 Vertex 25304 0.367267 0.262771 0.230368 Vertex 25305 0.506586 0.594979 0.565555 Vertex 25306 0.458583 0.223764 0.67741 Vertex 25307 0.496233 0.0770065 0.729542 Vertex 25308 0.520167 0.0809806 0.719088 Vertex 25309 0.455302 0.369207 0.409226 Vertex 25310 0.512935 0.27811 0.492351 Vertex 25311 0.355475 0.376498 0.470425 Vertex 25312 0.439133 0.320712 0.419028 Vertex 25313 0.412398 0.224972 0.469353 Vertex 25314 0.310955 0.943362 0.24813 Vertex 25315 0.461526 0.199931 0.621761 Vertex 25316 0.488072 0.167931 0.682705 Vertex 25317 0.396798 0.262741 0.642022 Vertex 25318 0.46826 0.624474 0.527851 Vertex 25319 0.376092 0.213873 0.482028 Vertex 25320 0.581371 0.500429 0.31948 Vertex 25321 0.452192 0.774477 0.407947 Vertex 25322 0.431469 0.452965 0.607807 Vertex 25323 0.471666 0.210065 0.787122 Vertex 25324 0.471986 0.7857 0.484788 Vertex 25325 0.423456 0.263487 0.694 Vertex 25326 0.597534 0.477088 0.398613 Vertex 25327 0.321189 0.99053 0.21568 Vertex 25328 0.320135 0.995481 0.214021 Vertex 25329 0.599874 0.463892 0.194056 Vertex 25330 0.552617 0.538571 0.542688 Vertex 25331 0.595201 0.446166 0.319362 Vertex 25332 0.428739 0.461701 0.405702 Vertex 25333 0.449574 0.805292 0.371197 Vertex 25334 0.450978 0.808124 0.371357 Vertex 25335 0.454573 0.510474 0.421516 Vertex 25336 0.589639 0.416215 0.368526 Vertex 25337 0.596504 0.456252 0.307653 Vertex 25338 0.360284 0.268711 0.204474 Vertex 25339 0.523928 0.0332676 0.636141 Vertex 25340 0.645111 0.461831 0.190953 Vertex 25341 0.403964 0.247117 0.205072 Vertex 25342 0.468029 0.320795 0.63318 Vertex 25343 0.472436 0.0737135 0.652926 Vertex 25344 0.398799 0.323063 0.203331 Vertex 25345 0.401186 0.321121 0.201128 Vertex 25346 0.369103 0.361353 0.537985 Vertex 25347 0.538586 0.114355 0.795331 Vertex 25348 0.538047 0.117458 0.794649 Vertex 25349 0.538663 0.115889 0.794833 Vertex 25350 0.497815 0.083859 0.776751 Vertex 25351 0.492591 0.191053 0.776929 Vertex 25352 0.453359 0.838797 0.398358 Vertex 25353 0.386155 0.314333 0.199197 Vertex 25354 0.358537 0.271649 0.506565 Vertex 25355 0.543851 0.405554 0.521982 Vertex 25356 0.392516 0.403783 0.602974 Vertex 25357 0.361196 0.413094 0.337503 Vertex 25358 0.489991 0.630604 0.403973 Vertex 25359 0.465252 0.405916 0.622217 Vertex 25360 0.382465 0.237173 0.614298 Vertex 25361 0.510347 0.352321 0.450679 Vertex 25362 0.499882 0.369995 0.445171 Vertex 25363 0.332489 0.242681 0.222834 Vertex 25364 0.481 0.075893 0.727244 Vertex 25365 0.479668 0.076355 0.727421 Vertex 25366 0.587253 0.476875 0.463993 Vertex 25367 0.47227 0.261533 0.613274 Vertex 25368 0.568034 0.473304 0.519962 Vertex 25369 0.459803 0.40296 0.625374 Vertex 25370 0.507386 0.468802 0.39988 Vertex 25371 0.529175 0.0132727 0.751983 Vertex 25372 0.430924 0.418661 0.392128 Vertex 25373 0.430847 0.412271 0.392453 Vertex 25374 0.495404 0.180185 0.783136 Vertex 25375 0.493213 0.180428 0.785197 Vertex 25376 0.510844 0.196259 0.472386 Vertex 25377 0.514244 0.358795 0.577927 Vertex 25378 0.38173 0.24736 0.208525 Vertex 25379 0.382714 0.246258 0.212446 Vertex 25380 0.44531 0.58372 0.499683 Vertex 25381 0.365721 0.378565 0.281552 Vertex 25382 0.533623 0.452521 0.577927 Vertex 25383 0.546232 0.424785 0.540597 Vertex 25384 0.445695 0.339534 0.416363 Vertex 25385 0.431469 0.164259 0.571732 Vertex 25386 0.429787 0.164994 0.571756 Vertex 25387 0.30637 0.963818 0.219328 Vertex 25388 0.332809 0.916609 0.294036 Vertex 25389 0.505455 0.0870691 0.707847 Vertex 25390 0.443705 0.527384 0.43942 Vertex 25391 0.648078 0.449915 0.219571 Vertex 25392 0.386569 0.452533 0.586545 Vertex 25393 0.435739 0.528775 0.468068 Vertex 25394 0.511792 0.369023 0.449755 Vertex 25395 0.37197 0.370409 0.505476 Vertex 25396 0.46094 0.232725 0.743762 Vertex 25397 0.671337 0.456063 0.210373 Vertex 25398 0.478199 0.148641 0.798553 Vertex 25399 0.370306 0.316211 0.201649 Vertex 25400 0.51865 0.0765445 0.794614 Vertex 25401 0.561874 0.0181411 0.749957 Vertex 25402 0.414352 0.266591 0.660785 Vertex 25403 0.450901 0.468169 0.621791 Vertex 25404 0.411853 0.194003 0.476739 Vertex 25405 0.406167 0.191568 0.476697 Vertex 25406 0.406985 0.324467 0.210432 Vertex 25407 0.464571 0.298425 0.427977 Vertex 25408 0.458583 0.295565 0.427148 Vertex 25409 0.441247 0.326984 0.418448 Vertex 25410 0.397846 0.266064 0.195466 Vertex 25411 0.487408 0.574557 0.571827 Vertex 25412 0.473923 0.372855 0.411779 Vertex 25413 0.461645 0.812032 0.392927 Vertex 25414 0.561519 0.409724 0.377054 Vertex 25415 0.411065 0.31502 0.635508 Vertex 25416 0.542181 0.445568 0.557228 Vertex 25417 0.495866 0.51966 0.388207 Vertex 25418 0.36417 0.913683 0.345054 Vertex 25419 0.365111 0.915999 0.344657 Vertex 25420 0.363038 0.916319 0.342916 Vertex 25421 0.422609 0.489058 0.428617 Vertex 25422 0.627829 0.495022 0.281658 Vertex 25423 0.511768 0.27811 0.521952 Vertex 25424 0.401015 0.8808 0.397322 Vertex 25425 0.382453 0.20971 0.582494 Vertex 25426 0.474325 0.173996 0.683357 Vertex 25427 0.521262 0.0841314 0.681242 Vertex 25428 0.361487 0.201009 0.471243 Vertex 25429 0.501007 0.106744 0.804523 Vertex 25430 0.37229 0.379749 0.235408 Vertex 25431 0.618483 0.482786 0.310863 Vertex 25432 0.35682 0.107473 0.474618 Vertex 25433 0.423088 0.391488 0.320244 Vertex 25434 0.422769 0.393555 0.318491 Vertex 25435 0.492561 0.391926 0.426278 Vertex 25436 0.521902 0.368668 0.536528 Vertex 25437 0.53739 0.406289 0.534331 Vertex 25438 0.409656 0.177502 0.577987 Vertex 25439 0.467425 0.782478 0.485415 Vertex 25440 0.520486 0.355579 0.561362 Vertex 25441 0.414465 0.388438 0.374052 Vertex 25442 0.41546 0.392447 0.370421 Vertex 25443 0.382346 0.215532 0.587658 Vertex 25444 0.492999 0.41278 0.610324 Vertex 25445 0.34591 0.300149 0.227975 Vertex 25446 0.442917 0.403458 0.643811 Vertex 25447 0.316303 0.997986 0.215164 Vertex 25448 0.480959 0.359215 0.423216 Vertex 25449 0.55771 0.54055 0.522029 Vertex 25450 0.560553 0.541426 0.515882 Vertex 25451 0.582384 0.508022 0.33296 Vertex 25452 0.464802 0.668461 0.434575 Vertex 25453 0.430053 0.262469 0.708522 Vertex 25454 0.468971 0.202111 0.79536 Vertex 25455 0.403585 0.421149 0.308766 Vertex 25456 0.383424 0.267977 0.227294 Vertex 25457 0.506053 0.272614 0.567551 Vertex 25458 0.573856 0.525915 0.461885 Vertex 25459 0.314366 0.977529 0.201625 Vertex 25460 0.417906 0.453646 0.396191 Vertex 25461 0.501256 0.197621 0.496432 Vertex 25462 0.501487 0.194139 0.502254 Vertex 25463 0.412516 0.267598 0.204835 Vertex 25464 0.481776 0.0670268 0.702599 Vertex 25465 0.420056 0.137341 0.673519 Vertex 25466 0.477831 0.184497 0.701747 Vertex 25467 0.53033 0.0665589 0.715463 Vertex 25468 0.52975 0.0655816 0.719532 Vertex 25469 0.488984 0.0474642 0.682551 Vertex 25470 0.414033 0.339013 0.637225 Vertex 25471 0.495499 0.124121 0.64531 Vertex 25472 0.491146 0.227164 0.521662 Vertex 25473 0.400553 0.425537 0.36653 Vertex 25474 0.36443 0.341708 0.573983 Vertex 25475 0.495203 0.77488 0.478533 Vertex 25476 0.488617 0.773511 0.485096 Vertex 25477 0.553251 0.0208596 0.726059 Vertex 25478 0.587022 0.411915 0.372512 Vertex 25479 0.445612 0.0845164 0.676101 Vertex 25480 0.417456 0.156477 0.613209 Vertex 25481 0.349695 0.261734 0.214181 Vertex 25482 0.588585 0.505256 0.276642 Vertex 25483 0.525136 0.140521 0.4511 Vertex 25484 0.378408 0.484468 0.490918 Vertex 25485 0.316753 0.99711 0.212203 Vertex 25486 0.476114 0.060115 0.693621 Vertex 25487 0.448378 0.797534 0.380128 Vertex 25488 0.449545 0.8435 0.395498 Vertex 25489 0.627888 0.465835 0.185077 Vertex 25490 0.543484 0.523587 0.428493 Vertex 25491 0.486573 0.336733 0.628282 Vertex 25492 0.523288 0.0590786 0.646109 Vertex 25493 0.533119 0.135126 0.438816 Vertex 25494 0.498164 0.0533158 0.683096 Vertex 25495 0.606709 0.484468 0.206351 Vertex 25496 0.50963 0.0537186 0.632339 Vertex 25497 0.492312 0.583637 0.397405 Vertex 25498 0.465388 0.783112 0.482667 Vertex 25499 0.459276 0.649444 0.495058 Vertex 25500 0.36112 0.255794 0.487074 Vertex 25501 0.563669 0.477746 0.331166 Vertex 25502 0.561738 0.471142 0.330733 Vertex 25503 0.301508 0.973502 0.230563 Vertex 25504 0.644566 0.490521 0.233685 Vertex 25505 0.440116 0.773968 0.426728 Vertex 25506 0.356233 0.401148 0.440208 Vertex 25507 0.63567 0.449323 0.201696 Vertex 25508 0.383519 0.233157 0.67741 Vertex 25509 0.385183 0.239891 0.691909 Vertex 25510 0.444593 0.56915 0.538583 Vertex 25511 0.382607 0.432941 0.586681 Vertex 25512 0.548489 0.535225 0.555155 Vertex 25513 0.659829 0.453403 0.200476 Vertex 25514 0.486331 0.211492 0.567586 Vertex 25515 0.485022 0.217723 0.575884 Vertex 25516 0.698232 0.449228 0.216823 Vertex 25517 0.373148 0.287415 0.194631 Vertex 25518 0.471299 0.544447 0.42254 Vertex 25519 0.372207 0.168079 0.470591 Vertex 25520 0.316996 0.993769 0.20676 Vertex 25521 0.354581 0.901441 0.33745 Vertex 25522 0.368345 0.882642 0.349893 Vertex 25523 0.502867 0.107253 0.797315 Vertex 25524 0.372598 0.337414 0.490918 Vertex 25525 0.39078 0.458461 0.413656 Vertex 25526 0.457908 0.721759 0.443187 Vertex 25527 0.385657 0.47829 0.451692 Vertex 25528 0.403052 0.329418 0.200997 Vertex 25529 0.481575 0.535776 0.590833 Vertex 25530 0.419156 0.37876 0.349964 Vertex 25531 0.529228 0.0682765 0.795556 Vertex 25532 0.499011 0.514365 0.390564 Vertex 25533 0.455201 0.159971 0.648875 Vertex 25534 0.626858 0.507904 0.292319 Vertex 25535 0.467917 0.21318 0.590371 Vertex 25536 0.549774 0.0468956 0.789781 Vertex 25537 0.472649 0.371653 0.628501 Vertex 25538 0.433749 0.842635 0.442802 Vertex 25539 0.406126 0.24861 0.196419 Vertex 25540 0.408921 0.252584 0.195152 Vertex 25541 0.505893 0.767151 0.461831 Vertex 25542 0.418279 0.264198 0.694023 Vertex 25543 0.51287 0.110179 0.796172 Vertex 25544 0.428057 0.21122 0.472794 Vertex 25545 0.447762 0.578366 0.524138 Vertex 25546 0.435372 0.416653 0.403582 Vertex 25547 0.43395 0.41262 0.406763 Vertex 25548 0.432665 0.411311 0.40498 Vertex 25549 0.632466 0.465101 0.183608 Vertex 25550 0.363299 0.360122 0.368757 Vertex 25551 0.43276 0.257044 0.65462 Vertex 25552 0.524401 0.350213 0.536487 Vertex 25553 0.526131 0.634151 0.530386 Vertex 25554 0.473881 0.0639766 0.697565 Vertex 25555 0.5389 0.566882 0.553218 Vertex 25556 0.539214 0.538388 0.567586 Vertex 25557 0.373196 0.338693 0.478504 Vertex 25558 0.349612 0.306948 0.211327 Vertex 25559 0.42785 0.175548 0.495739 Vertex 25560 0.497933 0.249919 0.501288 Vertex 25561 0.645958 0.435511 0.225801 Vertex 25562 0.469267 0.207453 0.584211 Vertex 25563 0.522506 0.120745 0.714433 Vertex 25564 0.549904 0.049395 0.722286 Vertex 25565 0.404491 0.851608 0.343763 Vertex 25566 0.54577 0.428238 0.544796 Vertex 25567 0.517342 0.463004 0.599456 Vertex 25568 0.481758 0.483651 0.390197 Vertex 25569 0.496695 0.756265 0.41907 Vertex 25570 0.364928 0.362046 0.244055 Vertex 25571 0.547375 0.481281 0.392412 Vertex 25572 0.553713 0.521846 0.546881 Vertex 25573 0.468959 0.490781 0.609027 Vertex 25574 0.586477 0.423174 0.199173 Vertex 25575 0.626011 0.485854 0.229687 Vertex 25576 0.455094 0.173054 0.6318 Vertex 25577 0.473099 0.518796 0.412022 Vertex 25578 0.470576 0.520264 0.412881 Vertex 25579 0.522986 0.0712674 0.67895 Vertex 25580 0.431575 0.423263 0.623775 Vertex 25581 0.385971 0.202016 0.673276 Vertex 25582 0.660883 0.408326 0.216467 Vertex 25583 0.44531 0.459687 0.621672 Vertex 25584 0.488575 0.403535 0.399146 Vertex 25585 0.470896 0.779114 0.388444 Vertex 25586 0.354841 0.254651 0.527739 Vertex 25587 0.530537 0.0889465 0.796207 Vertex 25588 0.528304 0.0899001 0.796853 Vertex 25589 0.444392 0.372968 0.643995 Vertex 25590 0.440619 0.37173 0.647975 Vertex 25591 0.420909 0.264891 0.702297 Vertex 25592 0.402039 0.897011 0.355988 Vertex 25593 0.516583 0.36393 0.473452 Vertex 25594 0.445393 0.376308 0.643793 Vertex 25595 0.487776 0.064172 0.692987 Vertex 25596 0.423645 0.119182 0.686981 Vertex 25597 0.507871 0.14655 0.693212 Vertex 25598 0.493716 0.0404459 0.677245 Vertex 25599 0.457132 0.222917 0.785564 Vertex 25600 0.414797 0.165781 0.590395 Vertex 25601 0.367688 0.298473 0.237824 Vertex 25602 0.305873 0.95558 0.248568 Vertex 25603 0.542507 0.581528 0.517866 Vertex 25604 0.386605 0.326943 0.457928 Vertex 25605 0.43183 0.161523 0.772629 Vertex 25606 0.435111 0.16677 0.781104 Vertex 25607 0.430474 0.485161 0.428605 Vertex 25608 0.493325 0.402457 0.410897 Vertex 25609 0.494492 0.401906 0.414865 Vertex 25610 0.480633 0.238666 0.596477 Vertex 25611 0.357596 0.185314 0.455305 Vertex 25612 0.376661 0.402178 0.285318 Vertex 25613 0.44945 0.537825 0.439077 Vertex 25614 0.3919 0.338456 0.215733 Vertex 25615 0.363299 0.226548 0.225097 Vertex 25616 0.307999 0.948799 0.240359 Vertex 25617 0.427139 0.54543 0.509734 Vertex 25618 0.345235 0.0854403 0.44555 Vertex 25619 0.451837 0.174446 0.613221 Vertex 25620 0.43693 0.137601 0.623402 Vertex 25621 0.439405 0.136701 0.625777 Vertex 25622 0.522269 0.0240993 0.636343 Vertex 25623 0.399078 0.257085 0.200174 Vertex 25624 0.560826 0.437466 0.511718 Vertex 25625 0.487361 0.0801869 0.764237 Vertex 25626 0.496654 0.548202 0.381982 Vertex 25627 0.380812 0.475193 0.455743 Vertex 25628 0.496286 0.0402859 0.681153 Vertex 25629 0.515304 0.408302 0.442044 Vertex 25630 0.502357 0.773298 0.463987 Vertex 25631 0.509577 0.434196 0.601731 Vertex 25632 0.385734 0.21809 0.476792 Vertex 25633 0.422549 0.238233 0.456187 Vertex 25634 0.47397 0.063408 0.652707 Vertex 25635 0.374066 0.345623 0.490918 Vertex 25636 0.373439 0.342448 0.48676 Vertex 25637 0.523548 0.70045 0.443347 Vertex 25638 0.512621 0.0186564 0.63851 Vertex 25639 0.512159 0.0207826 0.636431 Vertex 25640 0.511543 0.0193671 0.637663 Vertex 25641 0.539261 0.0740155 0.772724 Vertex 25642 0.3617 0.338877 0.529373 Vertex 25643 0.457606 0.701326 0.449583 Vertex 25644 0.37595 0.200897 0.476845 Vertex 25645 0.484945 0.0852271 0.766387 Vertex 25646 0.490435 0.0851916 0.772759 Vertex 25647 0.497797 0.428054 0.393229 Vertex 25648 0.542341 0.452521 0.387532 Vertex 25649 0.568401 0.533786 0.468169 Vertex 25650 0.570415 0.533922 0.472291 Vertex 25651 0.4861 0.185818 0.546839 Vertex 25652 0.503648 0.277281 0.582073 Vertex 25653 0.659012 0.432419 0.229171 Vertex 25654 0.443693 0.247579 0.696073 Vertex 25655 0.521979 0.0770361 0.665352 Vertex 25656 0.466721 0.318319 0.633695 Vertex 25657 0.653219 0.41904 0.227347 Vertex 25658 0.495078 0.425875 0.386714 Vertex 25659 0.356381 0.244351 0.517528 Vertex 25660 0.44505 0.250582 0.729257 Vertex 25661 0.443421 0.254734 0.72719 Vertex 25662 0.51117 0.303193 0.573699 Vertex 25663 0.678805 0.446468 0.19925 Vertex 25664 0.678207 0.448233 0.197675 Vertex 25665 0.676175 0.448091 0.197616 Vertex 25666 0.503305 0.677327 0.538565 Vertex 25667 0.570876 0.513548 0.432941 Vertex 25668 0.566973 0.415232 0.480553 Vertex 25669 0.492656 0.578591 0.57239 Vertex 25670 0.406807 0.431987 0.37802 Vertex 25671 0.548945 0.589956 0.482667 Vertex 25672 0.406197 0.379299 0.267923 Vertex 25673 0.435561 0.533869 0.470188 Vertex 25674 0.478216 0.474103 0.386063 Vertex 25675 0.452666 0.441866 0.392696 Vertex 25676 0.476463 0.215016 0.766558 Vertex 25677 0.394417 0.355822 0.406052 Vertex 25678 0.498833 0.583779 0.398737 Vertex 25679 0.411462 0.258986 0.72706 Vertex 25680 0.412149 0.260852 0.724815 Vertex 25681 0.411628 0.259342 0.726426 Vertex 25682 0.395518 0.471953 0.58629 Vertex 25683 0.361931 0.2256 0.220903 Vertex 25684 0.413233 0.400686 0.299882 Vertex 25685 0.361647 0.113579 0.459723 Vertex 25686 0.384473 0.465663 0.575997 Vertex 25687 0.373907 0.89505 0.30603 Vertex 25688 0.498123 0.195691 0.530286 Vertex 25689 0.359959 0.903093 0.343301 Vertex 25690 0.361966 0.244843 0.219677 Vertex 25691 0.421714 0.39211 0.345682 Vertex 25692 0.422911 0.842505 0.34692 Vertex 25693 0.49894 0.0417252 0.723121 Vertex 25694 0.537775 0.0637871 0.801532 Vertex 25695 0.500438 0.203195 0.486837 Vertex 25696 0.361487 0.238535 0.222994 Vertex 25697 0.524496 0.564732 0.565993 Vertex 25698 0.521926 0.563002 0.568404 Vertex 25699 0.521369 0.558288 0.572052 Vertex 25700 0.435307 0.828249 0.35674 Vertex 25701 0.379426 0.476905 0.534431 Vertex 25702 0.516566 0.597253 0.55413 Vertex 25703 0.667191 0.45566 0.203218 Vertex 25704 0.349778 0.300611 0.232275 Vertex 25705 0.475397 0.163264 0.796894 Vertex 25706 0.536602 0.00881292 0.741689 Vertex 25707 0.451138 0.594795 0.457792 Vertex 25708 0.508925 0.662639 0.419834 Vertex 25709 0.643808 0.443554 0.223432 Vertex 25710 0.513557 0.0962136 0.802029 Vertex 25711 0.515713 0.428037 0.594475 Vertex 25712 0.429171 0.814046 0.387585 Vertex 25713 0.412499 0.351451 0.438301 Vertex 25714 0.480633 0.143719 0.647998 Vertex 25715 0.514226 0.537772 0.401278 Vertex 25716 0.515452 0.537636 0.403197 Vertex 25717 0.454958 0.230018 0.642182 Vertex 25718 0.424593 0.806945 0.424548 Vertex 25719 0.465169 0.348851 0.63244 Vertex 25720 0.496446 0.705442 0.527449 Vertex 25721 0.400736 0.304691 0.225203 Vertex 25722 0.399836 0.306225 0.225612 Vertex 25723 0.400482 0.305556 0.225553 Vertex 25724 0.513208 0.174103 0.768637 Vertex 25725 0.526101 0.0612285 0.668781 Vertex 25726 0.376039 0.348365 0.467132 Vertex 25727 0.436823 0.165302 0.538637 Vertex 25728 0.590178 0.423725 0.200666 Vertex 25729 0.588153 0.42334 0.201406 Vertex 25730 0.398983 0.503788 0.560692 Vertex 25731 0.494522 0.423909 0.388592 Vertex 25732 0.583853 0.498747 0.39304 Vertex 25733 0.351015 0.388118 0.451692 Vertex 25734 0.522826 0.400538 0.550997 Vertex 25735 0.433003 0.168802 0.5013 Vertex 25736 0.471086 0.212742 0.785013 Vertex 25737 0.401719 0.364019 0.358179 Vertex 25738 0.500438 0.612806 0.562694 Vertex 25739 0.325939 0.92881 0.254988 Vertex 25740 0.359248 0.235284 0.511262 Vertex 25741 0.466507 0.56443 0.566639 Vertex 25742 0.356156 0.236219 0.520466 Vertex 25743 0.428673 0.447362 0.396735 Vertex 25744 0.396857 0.352552 0.440303 Vertex 25745 0.434489 0.237392 0.777308 Vertex 25746 0.477482 0.558922 0.575292 Vertex 25747 0.471388 0.79892 0.399673 Vertex 25748 0.6124 0.506548 0.196123 Vertex 25749 0.536099 0.171248 0.445603 Vertex 25750 0.439512 0.148001 0.758166 Vertex 25751 0.373883 0.384665 0.561403 Vertex 25752 0.547387 0.454712 0.376687 Vertex 25753 0.385758 0.4849 0.546881 Vertex 25754 0.546967 0.438603 0.544772 Vertex 25755 0.571054 0.42453 0.474322 Vertex 25756 0.590469 0.447297 0.186137 Vertex 25757 0.499716 0.178118 0.735547 Vertex 25758 0.671082 0.46208 0.190165 Vertex 25759 0.526237 0.132472 0.764533 Vertex 25760 0.381985 0.226169 0.602086 Vertex 25761 0.519219 0.664351 0.428688 Vertex 25762 0.365946 0.102249 0.465462 Vertex 25763 0.383395 0.248473 0.607416 Vertex 25764 0.432855 0.277607 0.431898 Vertex 25765 0.408969 0.372133 0.267035 Vertex 25766 0.359432 0.935111 0.304792 Vertex 25767 0.501279 0.326137 0.446557 Vertex 25768 0.322403 0.976499 0.232085 Vertex 25769 0.348143 0.146876 0.462021 Vertex 25770 0.544538 0.494063 0.569665 Vertex 25771 0.60643 0.496597 0.206565 Vertex 25772 0.656258 0.418821 0.231872 Vertex 25773 0.520712 0.387567 0.495016 Vertex 25774 0.429106 0.198462 0.78679 Vertex 25775 0.403206 0.344841 0.217717 Vertex 25776 0.395939 0.510474 0.521988 Vertex 25777 0.431143 0.814751 0.443128 Vertex 25778 0.502031 0.551678 0.579947 Vertex 25779 0.384899 0.234739 0.694047 Vertex 25780 0.359183 0.269475 0.491018 Vertex 25781 0.568993 0.40784 0.372068 Vertex 25782 0.567708 0.406383 0.376989 Vertex 25783 0.442894 0.18179 0.795793 Vertex 25784 0.508606 0.38656 0.58003 Vertex 25785 0.486372 0.104778 0.805186 Vertex 25786 0.446033 0.158313 0.509515 Vertex 25787 0.505804 0.0946619 0.72552 Vertex 25788 0.40394 0.352043 0.444123 Vertex 25789 0.480212 0.103664 0.652085 Vertex 25790 0.523738 0.165864 0.461186 Vertex 25791 0.353112 0.128119 0.473529 Vertex 25792 0.468012 0.501081 0.411483 Vertex 25793 0.320875 0.256362 0.212937 Vertex 25794 0.417711 0.410754 0.321956 Vertex 25795 0.416206 0.414314 0.32275 Vertex 25796 0.411829 0.416541 0.317413 Vertex 25797 0.490299 0.0524452 0.68938 Vertex 25798 0.441899 0.570323 0.51372 Vertex 25799 0.665787 0.490752 0.196609 Vertex 25800 0.317019 0.953069 0.27037 Vertex 25801 0.593158 0.440374 0.185622 Vertex 25802 0.494314 0.536048 0.381846 Vertex 25803 0.408359 0.344841 0.229941 Vertex 25804 0.4897 0.420847 0.380359 Vertex 25805 0.499402 0.568996 0.391144 Vertex 25806 0.558854 0.533484 0.526163 Vertex 25807 0.636452 0.480719 0.230078 Vertex 25808 0.507753 0.279431 0.567575 Vertex 25809 0.365787 0.370865 0.250339 Vertex 25810 0.481723 0.522402 0.397908 Vertex 25811 0.492982 0.144075 0.654288 Vertex 25812 0.541553 0.1288 0.437472 Vertex 25813 0.444682 0.851312 0.403772 Vertex 25814 0.342848 0.932701 0.313824 Vertex 25815 0.485016 0.0917243 0.647075 Vertex 25816 0.52266 0.591769 0.553011 Vertex 25817 0.622125 0.494003 0.314262 Vertex 25818 0.4542 0.37985 0.406597 Vertex 25819 0.449302 0.143666 0.642325 Vertex 25820 0.375695 0.0815491 0.478113 Vertex 25821 0.47561 0.212961 0.782982 Vertex 25822 0.530194 0.162613 0.436725 Vertex 25823 0.505484 0.038136 0.67221 Vertex 25824 0.358442 0.440291 0.490598 Vertex 25825 0.476262 0.742613 0.396504 Vertex 25826 0.449266 0.24075 0.698152 Vertex 25827 0.372758 0.35411 0.478954 Vertex 25828 0.464067 0.272768 0.625824 Vertex 25829 0.523679 0.0520069 0.662473 Vertex 25830 0.500521 0.41567 0.602891 Vertex 25831 0.623861 0.532684 0.269161 Vertex 25832 0.589349 0.507774 0.283293 Vertex 25833 0.564895 0.402178 0.405874 Vertex 25834 0.488877 0.0712911 0.698264 Vertex 25835 0.356541 0.244393 0.547207 Vertex 25836 0.593442 0.46773 0.439651 Vertex 25837 0.628954 0.449187 0.201453 Vertex 25838 0.630204 0.446089 0.200482 Vertex 25839 0.500438 0.197811 0.513595 Vertex 25840 0.695466 0.44388 0.210266 Vertex 25841 0.365194 0.416245 0.41015 Vertex 25842 0.368126 0.416328 0.403878 Vertex 25843 0.479638 0.537405 0.397624 Vertex 25844 0.482836 0.53718 0.396072 Vertex 25845 0.485572 0.378517 0.625996 Vertex 25846 0.4966 0.714925 0.522533 Vertex 25847 0.416757 0.373992 0.352019 Vertex 25848 0.478181 0.355443 0.630367 Vertex 25849 0.593359 0.444727 0.429654 Vertex 25850 0.603984 0.534402 0.254526 Vertex 25851 0.451037 0.0787714 0.663836 Vertex 25852 0.35403 0.227407 0.534337 Vertex 25853 0.451884 0.446409 0.628993 Vertex 25854 0.465222 0.489247 0.611444 Vertex 25855 0.464488 0.16022 0.516794 Vertex 25856 0.422247 0.808449 0.402072 Vertex 25857 0.40782 0.501063 0.451372 Vertex 25858 0.426707 0.833692 0.352653 Vertex 25859 0.429816 0.833413 0.353701 Vertex 25860 0.488344 0.211072 0.557234 Vertex 25861 0.380741 0.297211 0.193345 Vertex 25862 0.402335 0.184047 0.480689 Vertex 25863 0.532225 0.0612581 0.797617 Vertex 25864 0.376222 0.237256 0.239323 Vertex 25865 0.476446 0.0794288 0.733409 Vertex 25866 0.348433 0.26761 0.227495 Vertex 25867 0.36215 0.319297 0.20801 Vertex 25868 0.38728 0.40209 0.278614 Vertex 25869 0.394132 0.452124 0.593243 Vertex 25870 0.668346 0.452302 0.20034 Vertex 25871 0.567382 0.405744 0.381248 Vertex 25872 0.513557 0.0329655 0.664789 Vertex 25873 0.540073 0.398417 0.470508 Vertex 25874 0.395424 0.289861 0.62352 Vertex 25875 0.367717 0.0827751 0.472332 Vertex 25876 0.430409 0.193025 0.793175 Vertex 25877 0.380955 0.283441 0.604917 Vertex 25878 0.583438 0.501821 0.455654 Vertex 25879 0.390881 0.85634 0.373169 Vertex 25880 0.379344 0.4858 0.484681 Vertex 25881 0.428839 0.429162 0.61556 Vertex 25882 0.371259 0.337633 0.497207 Vertex 25883 0.518745 0.678311 0.428919 Vertex 25884 0.303302 0.958772 0.234366 Vertex 25885 0.341699 0.906013 0.289589 Vertex 25886 0.553488 0.526874 0.448719 Vertex 25887 0.532243 0.631776 0.440776 Vertex 25888 0.498395 0.0471918 0.744917 Vertex 25889 0.46521 0.432994 0.37767 Vertex 25890 0.4637 0.431661 0.378541 Vertex 25891 0.35403 0.0918842 0.445834 Vertex 25892 0.355031 0.0907174 0.445455 Vertex 25893 0.345886 0.28796 0.231618 Vertex 25894 0.506977 0.121101 0.795029 Vertex 25895 0.466608 0.76262 0.391281 Vertex 25896 0.45898 0.222834 0.470265 Vertex 25897 0.473271 0.343177 0.417927 Vertex 25898 0.475729 0.174867 0.551015 Vertex 25899 0.42079 0.144697 0.691518 Vertex 25900 0.367403 0.220921 0.235621 Vertex 25901 0.447851 0.617645 0.474915 Vertex 25902 0.501161 0.642644 0.552756 Vertex 25903 0.392912 0.293184 0.236758 Vertex 25904 0.408939 0.229272 0.758272 Vertex 25905 0.440916 0.341803 0.416801 Vertex 25906 0.607384 0.502798 0.246335 Vertex 25907 0.555945 0.497527 0.544849 Vertex 25908 0.468112 0.0823132 0.714646 Vertex 25909 0.453276 0.569772 0.449725 Vertex 25910 0.497661 0.533229 0.384091 Vertex 25911 0.372598 0.371908 0.567622 Vertex 25912 0.432405 0.168008 0.538565 Vertex 25913 0.462498 0.455956 0.392264 Vertex 25914 0.511141 0.546597 0.398927 Vertex 25915 0.489647 0.365162 0.624474 Vertex 25916 0.487225 0.36714 0.627844 Vertex 25917 0.479324 0.364516 0.417767 Vertex 25918 0.477689 0.813365 0.435185 Vertex 25919 0.489582 0.172592 0.791197 Vertex 25920 0.508232 0.299006 0.4667 Vertex 25921 0.364134 0.302589 0.488501 Vertex 25922 0.368381 0.38855 0.283642 Vertex 25923 0.532711 0.169791 0.442938 Vertex 25924 0.535181 0.170579 0.442914 Vertex 25925 0.370057 0.365813 0.561403 Vertex 25926 0.306424 0.994966 0.212499 Vertex 25927 0.440732 0.410322 0.406206 Vertex 25928 0.439553 0.401716 0.410204 Vertex 25929 0.415792 0.355899 0.435511 Vertex 25930 0.54041 0.543961 0.56347 Vertex 25931 0.485335 0.391127 0.621945 Vertex 25932 0.608065 0.452391 0.341667 Vertex 25933 0.383531 0.214051 0.669119 Vertex 25934 0.461455 0.172403 0.662041 Vertex 25935 0.433441 0.108805 0.667063 Vertex 25936 0.404213 0.22958 0.465592 Vertex 25937 0.49188 0.25763 0.466617 Vertex 25938 0.416283 0.820757 0.41843 Vertex 25939 0.39046 0.188832 0.673282 Vertex 25940 0.354913 0.222633 0.507933 Vertex 25941 0.52542 0.096646 0.716595 Vertex 25942 0.368529 0.879332 0.312722 Vertex 25943 0.510211 0.103724 0.707509 Vertex 25944 0.456267 0.133177 0.796936 Vertex 25945 0.487379 0.760843 0.408516 Vertex 25946 0.558948 0.513157 0.536528 Vertex 25947 0.440987 0.253004 0.638066 Vertex 25948 0.452737 0.268332 0.631036 Vertex 25949 0.525071 0.366275 0.509598 Vertex 25950 0.513231 0.0235544 0.634104 Vertex 25951 0.384324 0.390019 0.243789 Vertex 25952 0.546055 0.603259 0.491516 Vertex 25953 0.547565 0.596862 0.483917 Vertex 25954 0.591108 0.417684 0.383392 Vertex 25955 0.522524 0.584786 0.426455 Vertex 25956 0.449207 0.237037 0.677434 Vertex 25957 0.570746 0.403718 0.397624 Vertex 25958 0.478228 0.551951 0.403849 Vertex 25959 0.477464 0.548652 0.407947 Vertex 25960 0.384609 0.337035 0.460226 Vertex 25961 0.61625 0.490858 0.258767 Vertex 25962 0.395477 0.181968 0.627003 Vertex 25963 0.469635 0.711679 0.490918 Vertex 25964 0.50151 0.248473 0.536664 Vertex 25965 0.500752 0.248639 0.52415 Vertex 25966 0.400132 0.168843 0.651783 Vertex 25967 0.509263 0.543392 0.582583 Vertex 25968 0.404077 0.249468 0.733391 Vertex 25969 0.479431 0.211984 0.749957 Vertex 25970 0.539676 0.502644 0.415913 Vertex 25971 0.450439 0.183573 0.477515 Vertex 25972 0.313116 0.951902 0.264619 Vertex 25973 0.357436 0.210391 0.537535 Vertex 25974 0.529868 0.461156 0.586142 Vertex 25975 0.361931 0.888843 0.301138 Vertex 25976 0.504383 0.370711 0.450827 Vertex 25977 0.361256 0.090824 0.480796 Vertex 25978 0.34835 0.164994 0.462128 Vertex 25979 0.349014 0.168719 0.462015 Vertex 25980 0.38914 0.297312 0.617266 Vertex 25981 0.46617 0.222811 0.475092 Vertex 25982 0.391438 0.440539 0.392643 Vertex 25983 0.509127 0.410304 0.590395 Vertex 25984 0.379036 0.422227 0.578129 Vertex 25985 0.532977 0.404245 0.452284 Vertex 25986 0.354741 0.249468 0.535604 Vertex 25987 0.386089 0.888352 0.38274 Vertex 25988 0.443705 0.394651 0.644848 Vertex 25989 0.446584 0.398506 0.640684 Vertex 25990 0.499633 0.420402 0.402137 Vertex 25991 0.309267 0.967982 0.250659 Vertex 25992 0.488386 0.199795 0.740647 Vertex 25993 0.516145 0.100235 0.79767 Vertex 25994 0.447579 0.171289 0.611195 Vertex 25995 0.352846 0.0959175 0.450365 Vertex 25996 0.411889 0.524126 0.501383 Vertex 25997 0.515233 0.0428682 0.6301 Vertex 25998 0.332069 0.244914 0.22871 Vertex 25999 0.460756 0.519749 0.590087 Vertex 26000 0.465252 0.520022 0.594712 Vertex 26001 0.410017 0.45049 0.600807 Vertex 26002 0.526403 0.400248 0.461885 Vertex 26003 0.505715 0.380419 0.450626 Vertex 26004 0.349144 0.897745 0.290311 Vertex 26005 0.5449 0.611266 0.473854 Vertex 26006 0.545184 0.610763 0.473724 Vertex 26007 0.441934 0.364658 0.415806 Vertex 26008 0.517111 0.316945 0.555167 Vertex 26009 0.520048 0.317496 0.546839 Vertex 26010 0.521724 0.0406887 0.657907 Vertex 26011 0.526729 0.38977 0.439047 Vertex 26012 0.650305 0.425028 0.200772 Vertex 26013 0.616848 0.506228 0.194731 Vertex 26014 0.520007 0.730027 0.455873 Vertex 26015 0.41992 0.263967 0.685714 Vertex 26016 0.441762 0.127941 0.660928 Vertex 26017 0.488007 0.757793 0.494992 Vertex 26018 0.373966 0.381923 0.538447 Vertex 26019 0.576509 0.480198 0.501306 Vertex 26020 0.47047 0.768756 0.486618 Vertex 26021 0.375174 0.388029 0.532909 Vertex 26022 0.521902 0.303548 0.492896 Vertex 26023 0.582757 0.408699 0.393893 Vertex 26024 0.527546 0.13557 0.768643 Vertex 26025 0.494954 0.209425 0.503503 Vertex 26026 0.419286 0.139135 0.665411 Vertex 26027 0.591144 0.512186 0.370528 Vertex 26028 0.452003 0.188862 0.60285 Vertex 26029 0.507634 0.0522793 0.678257 Vertex 26030 0.45985 0.265667 0.62641 Vertex 26031 0.447111 0.219014 0.468305 Vertex 26032 0.418599 0.863335 0.420645 Vertex 26033 0.340349 0.111311 0.469863 Vertex 26034 0.519817 0.100697 0.716115 Vertex 26035 0.520415 0.0991217 0.713586 Vertex 26036 0.456042 0.182388 0.802136 Vertex 26037 0.450196 0.819809 0.46426 Vertex 26038 0.399179 0.347879 0.442085 Vertex 26039 0.485661 0.424708 0.375639 Vertex 26040 0.467159 0.190396 0.666998 Vertex 26041 0.531509 0.547846 0.571756 Vertex 26042 0.501078 0.128433 0.65244 Vertex 26043 0.531692 0.691577 0.462098 Vertex 26044 0.50732 0.0211617 0.636633 Vertex 26045 0.356968 0.194192 0.465776 Vertex 26046 0.361427 0.195732 0.46519 Vertex 26047 0.48408 0.543463 0.392655 Vertex 26048 0.515725 0.387384 0.557257 Vertex 26049 0.482712 0.202774 0.731703 Vertex 26050 0.551509 0.0594043 0.758272 Vertex 26051 0.52202 0.101953 0.71255 Vertex 26052 0.513723 0.0800566 0.724223 Vertex 26053 0.538616 0.00522379 0.737484 Vertex 26054 0.684272 0.47296 0.208063 Vertex 26055 0.552108 0.0239335 0.778084 Vertex 26056 0.555649 0.023661 0.776514 Vertex 26057 0.530022 0.164028 0.437092 Vertex 26058 0.341539 0.284803 0.203218 Vertex 26059 0.47625 0.568333 0.41631 Vertex 26060 0.542424 0.517836 0.425656 Vertex 26061 0.411219 0.842635 0.348981 Vertex 26062 0.467822 0.364765 0.410772 Vertex 26063 0.502014 0.0494009 0.678257 Vertex 26064 0.420518 0.14783 0.694171 Vertex 26065 0.598245 0.517167 0.270423 Vertex 26066 0.526468 0.118056 0.739 Vertex 26067 0.355943 0.292052 0.513773 Vertex 26068 0.477139 0.166527 0.524138 Vertex 26069 0.581093 0.422742 0.437021 Vertex 26070 0.445831 0.761204 0.430578 Vertex 26071 0.517981 0.291821 0.4978 Vertex 26072 0.422911 0.264725 0.658718 Vertex 26073 0.492212 0.272265 0.600824 Vertex 26074 0.369938 0.361353 0.3396 Vertex 26075 0.480005 0.0785049 0.722979 Vertex 26076 0.482493 0.804659 0.447972 Vertex 26077 0.464434 0.504433 0.414977 Vertex 26078 0.466478 0.504901 0.412584 Vertex 26079 0.514866 0.328737 0.470319 Vertex 26080 0.524632 0.446385 0.410843 Vertex 26081 0.4386 0.259845 0.731289 Vertex 26082 0.53296 0.168133 0.439651 Vertex 26083 0.522542 0.572757 0.562298 Vertex 26084 0.445944 0.249522 0.731324 Vertex 26085 0.571196 0.483106 0.322205 Vertex 26086 0.584807 0.428451 0.198676 Vertex 26087 0.684355 0.457555 0.190793 Vertex 26088 0.495522 0.392139 0.436482 Vertex 26089 0.547133 0.612137 0.486393 Vertex 26090 0.535228 0.115658 0.434972 Vertex 26091 0.408649 0.860089 0.416091 Vertex 26092 0.408116 0.857643 0.414053 Vertex 26093 0.572286 0.414361 0.360056 Vertex 26094 0.525479 0.570258 0.563701 Vertex 26095 0.352585 0.188045 0.497196 Vertex 26096 0.607982 0.504054 0.23815 Vertex 26097 0.492265 0.403724 0.405003 Vertex 26098 0.506841 0.0472747 0.671606 Vertex 26099 0.582372 0.408853 0.372731 Vertex 26100 0.529341 0.426698 0.577957 Vertex 26101 0.315023 0.938464 0.257002 Vertex 26102 0.447733 0.548616 0.565442 Vertex 26103 0.512568 0.294889 0.559295 Vertex 26104 0.52003 0.351397 0.561338 Vertex 26105 0.470866 0.118056 0.644788 Vertex 26106 0.407772 0.181435 0.565531 Vertex 26107 0.606892 0.48384 0.210953 Vertex 26108 0.45439 0.115687 0.645452 Vertex 26109 0.589314 0.487613 0.401106 Vertex 26110 0.469706 0.205848 0.687597 Vertex 26111 0.499745 0.041891 0.678802 Vertex 26112 0.479419 0.190425 0.793862 Vertex 26113 0.357732 0.912327 0.339138 Vertex 26114 0.355659 0.91363 0.334909 Vertex 26115 0.387416 0.332972 0.264317 Vertex 26116 0.475326 0.573089 0.420959 Vertex 26117 0.657134 0.457774 0.215443 Vertex 26118 0.397941 0.465906 0.59216 Vertex 26119 0.413328 0.274154 0.218517 Vertex 26120 0.379823 0.424501 0.364392 Vertex 26121 0.380421 0.42321 0.370557 Vertex 26122 0.437682 0.25529 0.745788 Vertex 26123 0.39646 0.509953 0.50345 Vertex 26124 0.394731 0.509266 0.50955 Vertex 26125 0.525408 0.612865 0.432538 Vertex 26126 0.504661 0.272099 0.573793 Vertex 26127 0.520717 0.460055 0.409197 Vertex 26128 0.454005 0.138087 0.651789 Vertex 26129 0.390354 0.193908 0.610526 Vertex 26130 0.365662 0.286912 0.480748 Vertex 26131 0.558498 0.399916 0.41949 Vertex 26132 0.56124 0.400277 0.425531 Vertex 26133 0.363767 0.220483 0.224066 Vertex 26134 0.541192 0.0515449 0.713722 Vertex 26135 0.432772 0.168121 0.534473 Vertex 26136 0.379983 0.378748 0.598763 Vertex 26137 0.533232 0.0500761 0.794886 Vertex 26138 0.424539 0.244191 0.205694 Vertex 26139 0.492496 0.39734 0.412336 Vertex 26140 0.492845 0.397174 0.414379 Vertex 26141 0.460004 0.637172 0.441161 Vertex 26142 0.348996 0.937978 0.308956 Vertex 26143 0.417166 0.150098 0.692892 Vertex 26144 0.500338 0.0396285 0.722885 Vertex 26145 0.501196 0.0378873 0.724987 Vertex 26146 0.506882 0.266798 0.551033 Vertex 26147 0.533096 0.0102521 0.735458 Vertex 26148 0.469415 0.093815 0.762347 Vertex 26149 0.452589 0.238328 0.708522 Vertex 26150 0.371863 0.302405 0.5946 Vertex 26151 0.499147 0.485344 0.606048 Vertex 26152 0.419517 0.369568 0.430874 Vertex 26153 0.365532 0.133615 0.466333 Vertex 26154 0.479668 0.800525 0.415943 Vertex 26155 0.372681 0.335667 0.488827 Vertex 26156 0.628356 0.497202 0.277684 Vertex 26157 0.526178 0.524795 0.414379 Vertex 26158 0.55893 0.0193671 0.765972 Vertex 26159 0.436705 0.793104 0.403902 Vertex 26160 0.572233 0.404589 0.40588 Vertex 26161 0.453383 0.200926 0.473416 Vertex 26162 0.691018 0.466895 0.210296 Vertex 26163 0.433441 0.258945 0.725094 Vertex 26164 0.638306 0.486316 0.18949 Vertex 26165 0.467858 0.0770894 0.739142 Vertex 26166 0.548122 0.523569 0.559324 Vertex 26167 0.624305 0.489259 0.185516 Vertex 26168 0.389371 0.249658 0.633861 Vertex 26169 0.466134 0.227803 0.764491 Vertex 26170 0.451701 0.192599 0.596625 Vertex 26171 0.524609 0.336164 0.538488 Vertex 26172 0.355339 0.235337 0.53959 Vertex 26173 0.354913 0.231049 0.532643 Vertex 26174 0.479573 0.661283 0.421966 Vertex 26175 0.471861 0.821017 0.433077 Vertex 26176 0.49082 0.621945 0.404915 Vertex 26177 0.377786 0.267775 0.598657 Vertex 26178 0.376246 0.27021 0.596507 Vertex 26179 0.363962 0.330526 0.21565 Vertex 26180 0.479437 0.210201 0.770692 Vertex 26181 0.486117 0.595832 0.405631 Vertex 26182 0.458079 0.373756 0.406804 Vertex 26183 0.377075 0.417808 0.383137 Vertex 26184 0.541648 0.53195 0.430098 Vertex 26185 0.491744 0.780068 0.476354 Vertex 26186 0.602379 0.445053 0.388142 Vertex 26187 0.587987 0.417186 0.362574 Vertex 26188 0.397722 0.419644 0.300984 Vertex 26189 0.459702 0.492842 0.410529 Vertex 26190 0.531053 0.0328293 0.654306 Vertex 26191 0.482392 0.400325 0.621228 Vertex 26192 0.455669 0.174719 0.638025 Vertex 26193 0.457689 0.390132 0.629851 Vertex 26194 0.512704 0.159888 0.463294 Vertex 26195 0.525669 0.407657 0.427533 Vertex 26196 0.504039 0.439337 0.395498 Vertex 26197 0.379255 0.257494 0.598941 Vertex 26198 0.440069 0.215952 0.79446 Vertex 26199 0.384141 0.401331 0.588328 Vertex 26200 0.497868 0.650723 0.546377 Vertex 26201 0.59876 0.460517 0.193955 Vertex 26202 0.597783 0.461855 0.192066 Vertex 26203 0.482576 0.67561 0.416162 Vertex 26204 0.457499 0.435256 0.621862 Vertex 26205 0.452299 0.0917243 0.713497 Vertex 26206 0.383347 0.868369 0.333588 Vertex 26207 0.496968 0.51648 0.388918 Vertex 26208 0.399457 0.485706 0.579722 Vertex 26209 0.368369 0.241704 0.234964 Vertex 26210 0.493645 0.575701 0.572715 Vertex 26211 0.474213 0.302316 0.63225 Vertex 26212 0.456196 0.713385 0.459942 Vertex 26213 0.513492 0.0918013 0.723163 Vertex 26214 0.457647 0.680763 0.451644 Vertex 26215 0.463279 0.17749 0.563565 Vertex 26216 0.526486 0.357978 0.505002 Vertex 26217 0.355807 0.297359 0.233507 Vertex 26218 0.522577 0.394076 0.43316 Vertex 26219 0.480935 0.184112 0.557228 Vertex 26220 0.376637 0.904485 0.361182 Vertex 26221 0.456907 0.837304 0.414569 Vertex 26222 0.348173 0.0936017 0.445319 Vertex 26223 0.490346 0.635656 0.402534 Vertex 26224 0.463694 0.830535 0.425194 Vertex 26225 0.535595 0.119916 0.796663 Vertex 26226 0.535299 0.122528 0.795627 Vertex 26227 0.458192 0.232423 0.71682 Vertex 26228 0.412724 0.381721 0.366488 Vertex 26229 0.487746 0.639002 0.408095 Vertex 26230 0.487639 0.575185 0.397582 Vertex 26231 0.450617 0.159373 0.796201 Vertex 26232 0.378953 0.0725704 0.473529 Vertex 26233 0.367771 0.364036 0.341678 Vertex 26234 0.563746 0.505481 0.412123 Vertex 26235 0.417687 0.245305 0.758267 Vertex 26236 0.416573 0.243836 0.760357 Vertex 26237 0.398829 0.343846 0.215052 Vertex 26238 0.371946 0.363095 0.320955 Vertex 26239 0.577391 0.509876 0.370735 Vertex 26240 0.507155 0.546585 0.395255 Vertex 26241 0.471103 0.735944 0.407633 Vertex 26242 0.488249 0.0736898 0.701267 Vertex 26243 0.456409 0.178089 0.638019 Vertex 26244 0.589035 0.515366 0.343775 Vertex 26245 0.585381 0.514691 0.347844 Vertex 26246 0.358561 0.119087 0.476413 Vertex 26247 0.499947 0.527532 0.391606 Vertex 26248 0.389069 0.85711 0.36207 Vertex 26249 0.440098 0.119306 0.731241 Vertex 26250 0.440507 0.118489 0.726865 Vertex 26251 0.432671 0.112844 0.667182 Vertex 26252 0.433216 0.110872 0.667093 Vertex 26253 0.417651 0.491172 0.431934 Vertex 26254 0.437581 0.119579 0.719064 Vertex 26255 0.609777 0.501377 0.192611 Vertex 26256 0.589551 0.457271 0.308902 Vertex 26257 0.511466 0.170211 0.783687 Vertex 26258 0.510039 0.517576 0.396273 Vertex 26259 0.446524 0.558922 0.453759 Vertex 26260 0.445209 0.55785 0.455962 Vertex 26261 0.445855 0.558264 0.455192 Vertex 26262 0.337731 0.933808 0.307961 Vertex 26263 0.36799 0.357918 0.277376 Vertex 26264 0.375227 0.349573 0.490918 Vertex 26265 0.368055 0.341441 0.260716 Vertex 26266 0.409259 0.160528 0.632226 Vertex 26267 0.462764 0.544559 0.426414 Vertex 26268 0.604505 0.439959 0.207145 Vertex 26269 0.607567 0.444454 0.202703 Vertex 26270 0.452447 0.27724 0.433035 Vertex 26271 0.550041 0.497142 0.557257 Vertex 26272 0.429236 0.796255 0.424631 Vertex 26273 0.500829 0.0556316 0.72632 Vertex 26274 0.531556 0.0460487 0.726746 Vertex 26275 0.494818 0.629016 0.403712 Vertex 26276 0.495132 0.63453 0.40328 Vertex 26277 0.390905 0.312645 0.621341 Vertex 26278 0.486141 0.32474 0.628045 Vertex 26279 0.418546 0.152846 0.623579 Vertex 26280 0.519983 0.389522 0.534662 Vertex 26281 0.401429 0.362733 0.425656 Vertex 26282 0.413434 0.327914 0.638321 Vertex 26283 0.509749 0.161795 0.453072 Vertex 26284 0.540031 0.0325569 0.779855 Vertex 26285 0.390792 0.197758 0.587723 Vertex 26286 0.36706 0.228674 0.204284 Vertex 26287 0.362014 0.138934 0.455743 Vertex 26288 0.304884 0.976221 0.2394 Vertex 26289 0.525 0.150601 0.772753 Vertex 26290 0.371052 0.344018 0.499233 Vertex 26291 0.384555 0.208815 0.650504 Vertex 26292 0.382844 0.219121 0.654596 Vertex 26293 0.442894 0.789621 0.453617 Vertex 26294 0.402069 0.363977 0.408338 Vertex 26295 0.501297 0.0239631 0.652618 Vertex 26296 0.490743 0.229947 0.513898 Vertex 26297 0.493023 0.279402 0.602868 Vertex 26298 0.410361 0.21828 0.471515 Vertex 26299 0.476268 0.159172 0.658251 Vertex 26300 0.476463 0.10704 0.650948 Vertex 26301 0.330736 0.916923 0.277714 Vertex 26302 0.380765 0.323223 0.257352 Vertex 26303 0.50555 0.607801 0.411483 Vertex 26304 0.468077 0.47453 0.613209 Vertex 26305 0.347409 0.0834029 0.447771 Vertex 26306 0.555371 0.461861 0.340731 Vertex 26307 0.556064 0.454517 0.338877 Vertex 26308 0.636381 0.46638 0.183389 Vertex 26309 0.370708 0.258554 0.587617 Vertex 26310 0.374126 0.258986 0.593605 Vertex 26311 0.57844 0.497356 0.414894 Vertex 26312 0.455059 0.358191 0.411086 Vertex 26313 0.421252 0.536581 0.503586 Vertex 26314 0.439162 0.131667 0.648336 Vertex 26315 0.361072 0.31502 0.203254 Vertex 26316 0.364063 0.218292 0.223675 Vertex 26317 0.456196 0.178225 0.623597 Vertex 26318 0.457363 0.178266 0.627755 Vertex 26319 0.371543 0.89097 0.359867 Vertex 26320 0.403005 0.347228 0.252483 Vertex 26321 0.389311 0.470709 0.430483 Vertex 26322 0.455444 0.152763 0.656243 Vertex 26323 0.345946 0.2817 0.229971 Vertex 26324 0.346633 0.279704 0.230261 Vertex 26325 0.534263 0.574782 0.548948 Vertex 26326 0.51489 0.106981 0.706591 Vertex 26327 0.522269 0.444881 0.412543 Vertex 26328 0.520374 0.448908 0.411903 Vertex 26329 0.51993 0.450472 0.410363 Vertex 26330 0.474373 0.163264 0.664463 Vertex 26331 0.414874 0.836458 0.426497 Vertex 26332 0.35201 0.206991 0.499286 Vertex 26333 0.383472 0.350302 0.376853 Vertex 26334 0.527321 0.0503189 0.781785 Vertex 26335 0.540274 0.575783 0.443554 Vertex 26336 0.507771 0.338456 0.594464 Vertex 26337 0.374149 0.359748 0.224114 Vertex 26338 0.37486 0.357516 0.222734 Vertex 26339 0.551101 0.57759 0.473943 Vertex 26340 0.530022 0.402143 0.424963 Vertex 26341 0.487432 0.645991 0.407562 Vertex 26342 0.452595 0.243102 0.758267 Vertex 26343 0.512064 0.447439 0.408486 Vertex 26344 0.42207 0.171141 0.553123 Vertex 26345 0.403354 0.162962 0.633369 Vertex 26346 0.531734 0.657516 0.510693 Vertex 26347 0.46781 0.189881 0.672193 Vertex 26348 0.393984 0.183597 0.55962 Vertex 26349 0.632466 0.482128 0.229876 Vertex 26350 0.49188 0.0628335 0.729174 Vertex 26351 0.317156 0.937344 0.271365 Vertex 26352 0.573719 0.506192 0.352304 Vertex 26353 0.381292 0.348211 0.381384 Vertex 26354 0.381203 0.349218 0.376936 Vertex 26355 0.502286 0.755477 0.487891 Vertex 26356 0.3997 0.464064 0.408681 Vertex 26357 0.36443 0.276411 0.574392 Vertex 26358 0.492958 0.0430341 0.680869 Vertex 26359 0.404047 0.478154 0.420876 Vertex 26360 0.497963 0.187689 0.752196 Vertex 26361 0.419416 0.833088 0.362491 Vertex 26362 0.422413 0.301392 0.641193 Vertex 26363 0.517916 0.108479 0.795656 Vertex 26364 0.499147 0.622543 0.558513 Vertex 26365 0.606253 0.53516 0.250209 Vertex 26366 0.50796 0.366927 0.451964 Vertex 26367 0.588017 0.514087 0.3163 Vertex 26368 0.508854 0.575647 0.568818 Vertex 26369 0.567708 0.511374 0.51372 Vertex 26370 0.592583 0.523824 0.291981 Vertex 26371 0.542383 0.0239098 0.72844 Vertex 26372 0.609504 0.464094 0.38598 Vertex 26373 0.405557 0.846425 0.354057 Vertex 26374 0.457576 0.128255 0.803516 Vertex 26375 0.422401 0.39933 0.325823 Vertex 26376 0.395323 0.177828 0.685732 Vertex 26377 0.478068 0.616816 0.425774 Vertex 26378 0.357655 0.418904 0.517078 Vertex 26379 0.455154 0.0737727 0.664304 Vertex 26380 0.404183 0.266674 0.196745 Vertex 26381 0.518425 0.140414 0.706135 Vertex 26382 0.390857 0.0758101 0.470407 Vertex 26383 0.385758 0.896845 0.31399 Vertex 26384 0.322338 0.951061 0.222052 Vertex 26385 0.444386 0.439823 0.400585 Vertex 26386 0.372165 0.272288 0.234449 Vertex 26387 0.371318 0.273828 0.234751 Vertex 26388 0.442532 0.319599 0.641608 Vertex 26389 0.62588 0.489526 0.243374 Vertex 26390 0.36934 0.350574 0.517173 Vertex 26391 0.435283 0.834118 0.362378 Vertex 26392 0.513699 0.395509 0.573722 Vertex 26393 0.518011 0.384772 0.538637 Vertex 26394 0.454792 0.671802 0.47665 Vertex 26395 0.553713 0.464751 0.345641 Vertex 26396 0.321248 0.235923 0.222479 Vertex 26397 0.321562 0.235402 0.224469 Vertex 26398 0.494314 0.314701 0.443714 Vertex 26399 0.419855 0.406075 0.348519 Vertex 26400 0.463901 0.445325 0.383303 Vertex 26401 0.449865 0.237214 0.64634 Vertex 26402 0.428673 0.228875 0.209123 Vertex 26403 0.355967 0.303288 0.550198 Vertex 26404 0.427684 0.402066 0.393336 Vertex 26405 0.487065 0.233489 0.584182 Vertex 26406 0.438073 0.556855 0.509687 Vertex 26407 0.438552 0.554906 0.505517 Vertex 26408 0.589403 0.424643 0.408042 Vertex 26409 0.409904 0.862482 0.418448 Vertex 26410 0.485638 0.296773 0.619439 Vertex 26411 0.524863 0.715955 0.476188 Vertex 26412 0.54275 0.00570945 0.756211 Vertex 26413 0.544811 0.00631355 0.758201 Vertex 26414 0.4983 0.537405 0.384784 Vertex 26415 0.53524 0.455986 0.400698 Vertex 26416 0.488072 0.306865 0.439266 Vertex 26417 0.368582 0.377279 0.237931 Vertex 26418 0.535897 0.0496971 0.796065 Vertex 26419 0.639064 0.460339 0.216663 Vertex 26420 0.508007 0.553117 0.577714 Vertex 26421 0.456954 0.174855 0.648354 Vertex 26422 0.447857 0.249522 0.629911 Vertex 26423 0.382003 0.341897 0.399365 Vertex 26424 0.500699 0.194127 0.517214 Vertex 26425 0.493349 0.40742 0.405294 Vertex 26426 0.495961 0.403286 0.412798 Vertex 26427 0.400387 0.252406 0.217066 Vertex 26428 0.407974 0.503539 0.456234 Vertex 26429 0.373024 0.310661 0.474085 Vertex 26430 0.569911 0.529557 0.46192 Vertex 26431 0.505686 0.267284 0.559271 Vertex 26432 0.353929 0.274083 0.533223 Vertex 26433 0.486307 0.484278 0.604449 Vertex 26434 0.535868 0.399081 0.49918 Vertex 26435 0.513421 0.408764 0.441771 Vertex 26436 0.511235 0.400413 0.579988 Vertex 26437 0.514884 0.396949 0.571667 Vertex 26438 0.512609 0.281007 0.501424 Vertex 26439 0.421643 0.379299 0.318574 Vertex 26440 0.420968 0.377967 0.316329 Vertex 26441 0.382737 0.342863 0.460043 Vertex 26442 0.382394 0.341678 0.461843 Vertex 26443 0.359959 0.885065 0.325196 Vertex 26444 0.497542 0.4762 0.392886 Vertex 26445 0.382026 0.224439 0.620861 Vertex 26446 0.525681 0.159089 0.789538 Vertex 26447 0.358466 0.175109 0.452657 Vertex 26448 0.373989 0.37494 0.505558 Vertex 26449 0.314313 0.97394 0.24797 Vertex 26450 0.51284 0.365251 0.449033 Vertex 26451 0.647587 0.431804 0.192937 Vertex 26452 0.495594 0.115889 0.796361 Vertex 26453 0.410319 0.284833 0.63748 Vertex 26454 0.550769 0.0350326 0.786109 Vertex 26455 0.461355 0.773239 0.387733 Vertex 26456 0.381168 0.866403 0.356313 Vertex 26457 0.380972 0.866296 0.360341 Vertex 26458 0.555513 0.00567984 0.735831 Vertex 26459 0.498395 0.268267 0.588298 Vertex 26460 0.497181 0.264713 0.588322 Vertex 26461 0.473283 0.553419 0.420497 Vertex 26462 0.490506 0.405229 0.40116 Vertex 26463 0.495363 0.207696 0.481974 Vertex 26464 0.508055 0.1435 0.704501 Vertex 26465 0.378852 0.329839 0.263991 Vertex 26466 0.59661 0.475015 0.289766 Vertex 26467 0.355967 0.42517 0.47376 Vertex 26468 0.505182 0.200192 0.479238 Vertex 26469 0.357524 0.42764 0.495099 Vertex 26470 0.357412 0.425437 0.496882 Vertex 26471 0.351981 0.30253 0.234265 Vertex 26472 0.556597 0.529054 0.457058 Vertex 26473 0.367368 0.392548 0.287753 Vertex 26474 0.490589 0.715126 0.518091 Vertex 26475 0.525923 0.693088 0.497125 Vertex 26476 0.46312 0.120882 0.644143 Vertex 26477 0.52237 0.695634 0.501336 Vertex 26478 0.548886 0.568801 0.524096 Vertex 26479 0.385651 0.0814425 0.464828 Vertex 26480 0.446228 0.113306 0.721315 Vertex 26481 0.429846 0.414314 0.625557 Vertex 26482 0.550805 0.460635 0.362301 Vertex 26483 0.507498 0.711164 0.505464 Vertex 26484 0.458512 0.226838 0.623573 Vertex 26485 0.619916 0.451579 0.20451 Vertex 26486 0.372532 0.0956925 0.473073 Vertex 26487 0.519681 0.587262 0.554018 Vertex 26488 0.4213 0.8781 0.373382 Vertex 26489 0.491921 0.555794 0.581274 Vertex 26490 0.39906 0.337171 0.627328 Vertex 26491 0.379355 0.256475 0.200091 Vertex 26492 0.383501 0.257245 0.201886 Vertex 26493 0.446542 0.274415 0.634892 Vertex 26494 0.520552 0.150424 0.741624 Vertex 26495 0.460816 0.512162 0.418021 Vertex 26496 0.615462 0.495916 0.239536 Vertex 26497 0.490897 0.747221 0.408054 Vertex 26498 0.520007 0.724424 0.488815 Vertex 26499 0.579038 0.508235 0.434972 Vertex 26500 0.51948 0.470591 0.408379 Vertex 26501 0.497933 0.324846 0.609051 Vertex 26502 0.483547 0.552336 0.38919 Vertex 26503 0.438724 0.424702 0.398939 Vertex 26504 0.54182 0.651866 0.478587 Vertex 26505 0.541773 0.647696 0.482182 Vertex 26506 0.462752 0.214679 0.679448 Vertex 26507 0.432748 0.838732 0.445591 Vertex 26508 0.530697 0.142553 0.445183 Vertex 26509 0.501812 0.0996369 0.808443 Vertex 26510 0.434792 0.19777 0.474601 Vertex 26511 0.556976 0.484906 0.372814 Vertex 26512 0.423663 0.300605 0.42886 Vertex 26513 0.533114 0.130293 0.793216 Vertex 26514 0.469942 0.494809 0.609223 Vertex 26515 0.689472 0.452888 0.199825 Vertex 26516 0.360178 0.327879 0.559946 Vertex 26517 0.48254 0.207714 0.768637 Vertex 26518 0.483802 0.206624 0.766558 Vertex 26519 0.450872 0.431886 0.393786 Vertex 26520 0.521446 0.106874 0.712627 Vertex 26521 0.522784 0.104292 0.714255 Vertex 26522 0.543893 0.13647 0.454547 Vertex 26523 0.3695 0.0859852 0.480642 Vertex 26524 0.3669 0.085008 0.480517 Vertex 26525 0.551047 0.535758 0.44834 Vertex 26526 0.303172 0.991377 0.210237 Vertex 26527 0.538284 0.157987 0.43361 Vertex 26528 0.647066 0.474186 0.190958 Vertex 26529 0.470393 0.171994 0.553106 Vertex 26530 0.424362 0.241005 0.207358 Vertex 26531 0.556082 0.399365 0.439225 Vertex 26532 0.641629 0.435967 0.196757 Vertex 26533 0.536004 0.104126 0.793471 Vertex 26534 0.619691 0.535894 0.25439 Vertex 26535 0.50472 0.573089 0.398044 Vertex 26536 0.333129 0.270861 0.203982 Vertex 26537 0.408998 0.236397 0.7562 Vertex 26538 0.410177 0.238138 0.754121 Vertex 26539 0.420405 0.405193 0.375876 Vertex 26540 0.464843 0.81924 0.404162 Vertex 26541 0.469463 0.52919 0.416405 Vertex 26542 0.457446 0.362793 0.409973 Vertex 26543 0.455971 0.361353 0.410464 Vertex 26544 0.536004 0.613736 0.530303 Vertex 26545 0.373918 0.333606 0.604941 Vertex 26546 0.423254 0.305698 0.642182 Vertex 26547 0.335759 0.912463 0.294279 Vertex 26548 0.425108 0.248651 0.222431 Vertex 26549 0.424705 0.245755 0.22162 Vertex 26550 0.528346 0.690393 0.495004 Vertex 26551 0.517318 0.726385 0.490882 Vertex 26552 0.409105 0.195673 0.754121 Vertex 26553 0.487012 0.212049 0.492813 Vertex 26554 0.513356 0.118299 0.698128 Vertex 26555 0.407381 0.358386 0.246318 Vertex 26556 0.474787 0.164064 0.528236 Vertex 26557 0.450102 0.381011 0.636206 Vertex 26558 0.494208 0.103119 0.80807 Vertex 26559 0.457819 0.628637 0.44706 Vertex 26560 0.373196 0.391304 0.269132 Vertex 26561 0.509915 0.613606 0.555238 Vertex 26562 0.388417 0.344788 0.449903 Vertex 26563 0.54108 0.422665 0.551015 Vertex 26564 0.462995 0.21318 0.79263 Vertex 26565 0.521997 0.128089 0.707877 Vertex 26566 0.41408 0.374437 0.2956 Vertex 26567 0.520972 0.445076 0.595251 Vertex 26568 0.594046 0.441256 0.418483 Vertex 26569 0.367303 0.192913 0.543967 Vertex 26570 0.503826 0.168245 0.784913 Vertex 26571 0.424984 0.415072 0.383084 Vertex 26572 0.400499 0.219162 0.737484 Vertex 26573 0.430308 0.168541 0.515787 Vertex 26574 0.412747 0.426574 0.376977 Vertex 26575 0.436657 0.14504 0.600842 Vertex 26576 0.539895 0.399916 0.419342 Vertex 26577 0.547387 0.144466 0.415179 Vertex 26578 0.48883 0.104837 0.80303 Vertex 26579 0.391118 0.19328 0.606078 Vertex 26580 0.365579 0.278969 0.229859 Vertex 26581 0.432114 0.478895 0.422523 Vertex 26582 0.579683 0.40941 0.40177 Vertex 26583 0.443853 0.147131 0.614127 Vertex 26584 0.431765 0.226607 0.784824 Vertex 26585 0.49727 0.067542 0.692732 Vertex 26586 0.478832 0.340482 0.630562 Vertex 26587 0.552747 0.400597 0.478533 Vertex 26588 0.483411 0.782324 0.480452 Vertex 26589 0.580465 0.498291 0.395569 Vertex 26590 0.407814 0.367661 0.252193 Vertex 26591 0.408601 0.492736 0.43913 Vertex 26592 0.560879 0.426284 0.357539 Vertex 26593 0.410834 0.362645 0.316762 Vertex 26594 0.378538 0.347311 0.460268 Vertex 26595 0.496032 0.208567 0.486245 Vertex 26596 0.437457 0.127983 0.722429 Vertex 26597 0.397254 0.319705 0.244049 Vertex 26598 0.398201 0.336585 0.44369 Vertex 26599 0.581472 0.499665 0.317283 Vertex 26600 0.537982 0.398725 0.473825 Vertex 26601 0.367759 0.230101 0.487388 Vertex 26602 0.426476 0.855422 0.358505 Vertex 26603 0.524846 0.519447 0.413751 Vertex 26604 0.523708 0.519643 0.411832 Vertex 26605 0.521967 0.517481 0.411767 Vertex 26606 0.471299 0.10617 0.647862 Vertex 26607 0.608438 0.512482 0.2014 Vertex 26608 0.587519 0.515775 0.308209 Vertex 26609 0.607715 0.536919 0.252211 Vertex 26610 0.364685 0.24505 0.229906 Vertex 26611 0.373966 0.241088 0.590815 Vertex 26612 0.412943 0.334441 0.434836 Vertex 26613 0.513125 0.415398 0.438005 Vertex 26614 0.517774 0.061039 0.728943 Vertex 26615 0.407044 0.212256 0.754138 Vertex 26616 0.462225 0.138442 0.804055 Vertex 26617 0.345188 0.0968947 0.449725 Vertex 26618 0.538468 0.059813 0.715078 Vertex 26619 0.49984 0.3397 0.609045 Vertex 26620 0.585867 0.505902 0.305775 Vertex 26621 0.371656 0.348022 0.4296 Vertex 26622 0.420553 0.240478 0.217391 Vertex 26623 0.464932 0.360317 0.411293 Vertex 26624 0.385402 0.226157 0.698152 Vertex 26625 0.489191 0.62153 0.41015 Vertex 26626 0.487586 0.621429 0.412312 Vertex 26627 0.506325 0.422161 0.42658 Vertex 26628 0.506586 0.421682 0.427859 Vertex 26629 0.496737 0.244938 0.511665 Vertex 26630 0.406144 0.251915 0.220441 Vertex 26631 0.489612 0.203603 0.473724 Vertex 26632 0.490755 0.199878 0.46882 Vertex 26633 0.322616 0.23988 0.231274 Vertex 26634 0.441034 0.45736 0.408243 Vertex 26635 0.358229 0.432372 0.470271 Vertex 26636 0.548163 0.588322 0.499505 Vertex 26637 0.35085 0.915519 0.329016 Vertex 26638 0.449687 0.519169 0.583477 Vertex 26639 0.442526 0.251168 0.710595 Vertex 26640 0.452293 0.235692 0.772807 Vertex 26641 0.553807 0.484272 0.385394 Vertex 26642 0.37152 0.449542 0.439118 Vertex 26643 0.339407 0.940317 0.259981 Vertex 26644 0.3609 0.0956451 0.480689 Vertex 26645 0.367291 0.14138 0.462335 Vertex 26646 0.443119 0.166676 0.58006 Vertex 26647 0.437895 0.545003 0.563032 Vertex 26648 0.501173 0.547929 0.581659 Vertex 26649 0.474912 0.450057 0.376048 Vertex 26650 0.595005 0.503634 0.258441 Vertex 26651 0.441668 0.134267 0.629496 Vertex 26652 0.426352 0.246531 0.214264 Vertex 26653 0.426381 0.244967 0.211907 Vertex 26654 0.545918 0.622371 0.496657 Vertex 26655 0.492111 0.211261 0.511665 Vertex 26656 0.534263 0.0489626 0.794774 Vertex 26657 0.606975 0.507566 0.217421 Vertex 26658 0.53229 0.408326 0.548906 Vertex 26659 0.544953 0.481886 0.569653 Vertex 26660 0.464381 0.749306 0.405975 Vertex 26661 0.466241 0.751213 0.400058 Vertex 26662 0.664093 0.404684 0.219518 Vertex 26663 0.440193 0.523628 0.441795 Vertex 26664 0.454336 0.156204 0.652494 Vertex 26665 0.500965 0.403671 0.431122 Vertex 26666 0.466306 0.147077 0.652168 Vertex 26667 0.398918 0.179409 0.594552 Vertex 26668 0.470624 0.449542 0.37828 Vertex 26669 0.545362 0.59961 0.465592 Vertex 26670 0.399214 0.269694 0.635981 Vertex 26671 0.420897 0.387597 0.309352 Vertex 26672 0.419973 0.265164 0.671168 Vertex 26673 0.55347 0.555481 0.485048 Vertex 26674 0.618139 0.466487 0.213559 Vertex 26675 0.392563 0.266129 0.224872 Vertex 26676 0.304517 0.959649 0.244061 Vertex 26677 0.560364 0.400662 0.445414 Vertex 26678 0.58499 0.509029 0.308168 Vertex 26679 0.384348 0.219014 0.594144 Vertex 26680 0.501931 0.476543 0.395758 Vertex 26681 0.500586 0.474014 0.395047 Vertex 26682 0.496991 0.477882 0.392821 Vertex 26683 0.500018 0.475602 0.394645 Vertex 26684 0.49252 0.703914 0.403677 Vertex 26685 0.448597 0.0946086 0.712668 Vertex 26686 0.539261 0.406632 0.530256 Vertex 26687 0.645129 0.423695 0.214839 Vertex 26688 0.579636 0.485984 0.311189 Vertex 26689 0.382477 0.300853 0.455696 Vertex 26690 0.45131 0.48063 0.41076 Vertex 26691 0.533937 0.0584271 0.720119 Vertex 26692 0.496346 0.531689 0.38428 Vertex 26693 0.624737 0.533158 0.277335 Vertex 26694 0.417888 0.265341 0.702274 Vertex 26695 0.405237 0.361271 0.24213 Vertex 26696 0.403674 0.362568 0.242118 Vertex 26697 0.421098 0.541811 0.551287 Vertex 26698 0.444505 0.110558 0.726936 Vertex 26699 0.429728 0.834497 0.441309 Vertex 26700 0.513533 0.344699 0.456134 Vertex 26701 0.459761 0.206695 0.592426 Vertex 26702 0.377727 0.26745 0.196419 Vertex 26703 0.547571 0.0360394 0.714457 Vertex 26704 0.36629 0.348697 0.231618 Vertex 26705 0.471915 0.123671 0.811387 Vertex 26706 0.469599 0.12408 0.811298 Vertex 26707 0.526913 0.0551637 0.790895 Vertex 26708 0.40885 0.372044 0.262783 Vertex 26709 0.405421 0.368508 0.404234 Vertex 26710 0.544983 0.620582 0.466836 Vertex 26711 0.329954 0.264417 0.232085 Vertex 26712 0.388044 0.429736 0.318752 Vertex 26713 0.490334 0.104043 0.806578 Vertex 26714 0.477654 0.10495 0.785108 Vertex 26715 0.394535 0.259721 0.221395 Vertex 26716 0.634397 0.479055 0.185569 Vertex 26717 0.423071 0.843991 0.348886 Vertex 26718 0.52805 0.118749 0.760375 Vertex 26719 0.368031 0.413402 0.544986 Vertex 26720 0.404177 0.225926 0.74372 Vertex 26721 0.414246 0.188317 0.760334 Vertex 26722 0.394654 0.43085 0.330597 Vertex 26723 0.496346 0.643704 0.545756 Vertex 26724 0.492247 0.789586 0.439823 Vertex 26725 0.384763 0.285318 0.193997 Vertex 26726 0.352046 0.386839 0.470508 Vertex 26727 0.453643 0.532661 0.578691 Vertex 26728 0.538716 0.585295 0.530286 Vertex 26729 0.543703 0.595559 0.458811 Vertex 26730 0.645875 0.431413 0.205345 Vertex 26731 0.418445 0.389907 0.380116 Vertex 26732 0.483896 0.170851 0.700781 Vertex 26733 0.419647 0.398968 0.355745 Vertex 26734 0.511081 0.315103 0.579894 Vertex 26735 0.527339 0.677138 0.505434 Vertex 26736 0.460342 0.696505 0.480642 Vertex 26737 0.373747 0.398394 0.535468 Vertex 26738 0.526172 0.401284 0.474642 Vertex 26739 0.372473 0.279526 0.235562 Vertex 26740 0.560162 0.507033 0.416991 Vertex 26741 0.555963 0.506506 0.413426 Vertex 26742 0.491489 0.579148 0.395948 Vertex 26743 0.45497 0.126923 0.805387 Vertex 26744 0.370685 0.874215 0.333055 Vertex 26745 0.373255 0.871733 0.335181 Vertex 26746 0.530294 0.396333 0.439148 Vertex 26747 0.473727 0.781401 0.487388 Vertex 26748 0.614467 0.470982 0.305378 Vertex 26749 0.483547 0.383303 0.413686 Vertex 26750 0.483043 0.382592 0.414012 Vertex 26751 0.563207 0.539608 0.474512 Vertex 26752 0.563669 0.535527 0.468175 Vertex 26753 0.307158 0.94916 0.247538 Vertex 26754 0.410272 0.224457 0.467813 Vertex 26755 0.429994 0.840977 0.357664 Vertex 26756 0.428188 0.840817 0.353814 Vertex 26757 0.525764 0.0346298 0.658014 Vertex 26758 0.461307 0.0759463 0.705898 Vertex 26759 0.302426 0.964008 0.231268 Vertex 26760 0.523217 0.370948 0.522029 Vertex 26761 0.405208 0.890502 0.377872 Vertex 26762 0.367344 0.180073 0.501442 Vertex 26763 0.368215 0.175465 0.495182 Vertex 26764 0.391882 0.475602 0.578875 Vertex 26765 0.464991 0.226767 0.609051 Vertex 26766 0.624518 0.452965 0.203988 Vertex 26767 0.622641 0.45444 0.206541 Vertex 26768 0.41273 0.367501 0.305349 Vertex 26769 0.502055 0.674698 0.542273 Vertex 26770 0.5008 0.673738 0.541426 Vertex 26771 0.411859 0.366719 0.349935 Vertex 26772 0.430569 0.810534 0.389243 Vertex 26773 0.465897 0.431087 0.375047 Vertex 26774 0.47137 0.213577 0.712668 Vertex 26775 0.38221 0.191266 0.477988 Vertex 26776 0.420547 0.232589 0.212037 Vertex 26777 0.394588 0.311627 0.241532 Vertex 26778 0.392545 0.310448 0.242557 Vertex 26779 0.574874 0.504528 0.380863 Vertex 26780 0.525308 0.600345 0.43271 Vertex 26781 0.500942 0.257642 0.501235 Vertex 26782 0.510459 0.0855469 0.80107 Vertex 26783 0.595698 0.525435 0.277346 Vertex 26784 0.596735 0.526329 0.274586 Vertex 26785 0.380907 0.230492 0.234235 Vertex 26786 0.499651 0.31534 0.60282 Vertex 26787 0.497915 0.319972 0.609069 Vertex 26788 0.436237 0.542457 0.495377 Vertex 26789 0.337719 0.911373 0.308618 Vertex 26790 0.347089 0.13114 0.459083 Vertex 26791 0.367942 0.223598 0.234206 Vertex 26792 0.469001 0.29794 0.429423 Vertex 26793 0.412256 0.238802 0.760339 Vertex 26794 0.376732 0.396119 0.549001 Vertex 26795 0.476748 0.526951 0.404465 Vertex 26796 0.478785 0.527247 0.401918 Vertex 26797 0.476404 0.522337 0.405471 Vertex 26798 0.479431 0.521242 0.403635 Vertex 26799 0.53081 0.40049 0.47312 Vertex 26800 0.428508 0.227478 0.206707 Vertex 26801 0.456445 0.684156 0.474233 Vertex 26802 0.401536 0.177478 0.592539 Vertex 26803 0.653918 0.503314 0.215081 Vertex 26804 0.651697 0.505126 0.215982 Vertex 26805 0.651833 0.505416 0.213885 Vertex 26806 0.497364 0.555712 0.378813 Vertex 26807 0.501723 0.590335 0.569043 Vertex 26808 0.373285 0.095041 0.478261 Vertex 26809 0.559771 0.552608 0.498362 Vertex 26810 0.396519 0.358516 0.226939 Vertex 26811 0.396016 0.353423 0.224303 Vertex 26812 0.390952 0.355478 0.225126 Vertex 26813 0.453809 0.40177 0.629609 Vertex 26814 0.456847 0.13156 0.798351 Vertex 26815 0.500776 0.0528538 0.679608 Vertex 26816 0.553239 0.403398 0.495022 Vertex 26817 0.556425 0.406123 0.495046 Vertex 26818 0.607858 0.494803 0.193209 Vertex 26819 0.478702 0.51895 0.405821 Vertex 26820 0.364904 0.293166 0.232299 Vertex 26821 0.36674 0.292704 0.580054 Vertex 26822 0.424948 0.523469 0.474459 Vertex 26823 0.396993 0.185841 0.700219 Vertex 26824 0.550775 0.571572 0.479457 Vertex 26825 0.52481 0.067542 0.665553 Vertex 26826 0.503767 0.715493 0.418021 Vertex 26827 0.527683 0.114532 0.740327 Vertex 26828 0.404823 0.262919 0.694681 Vertex 26829 0.449231 0.0855232 0.659802 Vertex 26830 0.501404 0.398021 0.442026 Vertex 26831 0.377602 0.47206 0.542759 Vertex 26832 0.464772 0.20076 0.669119 Vertex 26833 0.522346 0.0763787 0.680946 Vertex 26834 0.389359 0.310561 0.245056 Vertex 26835 0.449024 0.51414 0.428493 Vertex 26836 0.409514 0.884662 0.346103 Vertex 26837 0.412244 0.884496 0.35459 Vertex 26838 0.604274 0.532335 0.297584 Vertex 26839 0.38985 0.357598 0.620772 Vertex 26840 0.360699 0.303276 0.237303 Vertex 26841 0.461355 0.234194 0.463217 Vertex 26842 0.492887 0.744408 0.503639 Vertex 26843 0.544219 0.560088 0.444762 Vertex 26844 0.511739 0.175435 0.758267 Vertex 26845 0.430746 0.140414 0.636307 Vertex 26846 0.445766 0.573734 0.466238 Vertex 26847 0.446726 0.576838 0.468637 Vertex 26848 0.503595 0.253182 0.544962 Vertex 26849 0.484358 0.546762 0.389285 Vertex 26850 0.397591 0.302861 0.204172 Vertex 26851 0.485039 0.460096 0.384197 Vertex 26852 0.454899 0.319243 0.419627 Vertex 26853 0.521031 0.0908536 0.667644 Vertex 26854 0.352111 0.182199 0.459966 Vertex 26855 0.528399 0.699946 0.459859 Vertex 26856 0.411433 0.172758 0.59871 Vertex 26857 0.526018 0.0639766 0.670848 Vertex 26858 0.526196 0.0636509 0.666992 Vertex 26859 0.471589 0.221176 0.743756 Vertex 26860 0.467242 0.49735 0.609945 Vertex 26861 0.439162 0.810096 0.4546 Vertex 26862 0.454822 0.180144 0.619416 Vertex 26863 0.600514 0.463419 0.200008 Vertex 26864 0.633515 0.518766 0.227626 Vertex 26865 0.457114 0.0761358 0.696085 Vertex 26866 0.471702 0.384529 0.4011 Vertex 26867 0.494533 0.561587 0.380649 Vertex 26868 0.486236 0.168215 0.681426 Vertex 26869 0.412895 0.4615 0.402013 Vertex 26870 0.449172 0.304845 0.423571 Vertex 26871 0.448094 0.308316 0.422499 Vertex 26872 0.42865 0.402978 0.399786 Vertex 26873 0.476588 0.14032 0.798168 Vertex 26874 0.547156 0.0692241 0.737579 Vertex 26875 0.48681 0.52701 0.593427 Vertex 26876 0.343352 0.129001 0.460866 Vertex 26877 0.508487 0.0884905 0.808526 Vertex 26878 0.523276 0.395948 0.530422 Vertex 26879 0.526125 0.153622 0.780832 Vertex 26880 0.553985 0.450389 0.368449 Vertex 26881 0.537336 0.628092 0.447931 Vertex 26882 0.448722 0.425828 0.394722 Vertex 26883 0.388755 0.489247 0.466108 Vertex 26884 0.389519 0.488791 0.461968 Vertex 26885 0.397295 0.356029 0.331302 Vertex 26886 0.479354 0.634755 0.42167 Vertex 26887 0.372076 0.405939 0.295873 Vertex 26888 0.592885 0.43836 0.32763 Vertex 26889 0.456036 0.109729 0.758267 Vertex 26890 0.376276 0.905711 0.30417 Vertex 26891 0.452269 0.181678 0.611106 Vertex 26892 0.455977 0.424098 0.38624 Vertex 26893 0.525734 0.0681935 0.67404 Vertex 26894 0.499947 0.0231991 0.647578 Vertex 26895 0.395003 0.301582 0.200121 Vertex 26896 0.520664 0.702327 0.439148 Vertex 26897 0.429834 0.39731 0.64056 Vertex 26898 0.483162 0.173493 0.498037 Vertex 26899 0.483559 0.59056 0.412176 Vertex 26900 0.476434 0.0606836 0.694633 Vertex 26901 0.481314 0.221531 0.492665 Vertex 26902 0.413186 0.520726 0.48477 Vertex 26903 0.572973 0.412051 0.362722 Vertex 26904 0.372598 0.374247 0.537547 Vertex 26905 0.496577 0.40264 0.414675 Vertex 26906 0.554583 0.148659 0.431626 Vertex 26907 0.507445 0.0832371 0.636953 Vertex 26908 0.511265 0.598686 0.417642 Vertex 26909 0.502274 0.314304 0.45091 Vertex 26910 0.393629 0.326759 0.451342 Vertex 26911 0.473526 0.48939 0.400585 Vertex 26912 0.430278 0.81959 0.372932 Vertex 26913 0.493053 0.20849 0.532394 Vertex 26914 0.362884 0.304881 0.194275 Vertex 26915 0.466241 0.104997 0.652322 Vertex 26916 0.369607 0.31181 0.58966 Vertex 26917 0.360877 0.411726 0.331331 Vertex 26918 0.524046 0.0174363 0.723435 Vertex 26919 0.377277 0.340162 0.408379 Vertex 26920 0.628575 0.51109 0.197781 Vertex 26921 0.535459 0.114657 0.433799 Vertex 26922 0.57629 0.515811 0.478486 Vertex 26923 0.640071 0.440338 0.203414 Vertex 26924 0.516495 0.590649 0.555759 Vertex 26925 0.401613 0.228017 0.737431 Vertex 26926 0.60046 0.468062 0.396096 Vertex 26927 0.380925 0.332001 0.615365 Vertex 26928 0.409182 0.482567 0.423328 Vertex 26929 0.365745 0.928673 0.319889 Vertex 26930 0.383863 0.171313 0.509592 Vertex 26931 0.516281 0.0271732 0.631818 Vertex 26932 0.459525 0.218143 0.644202 Vertex 26933 0.370892 0.328518 0.488963 Vertex 26934 0.558214 0.419964 0.509598 Vertex 26935 0.520635 0.0754014 0.795597 Vertex 26936 0.53094 0.108616 0.724087 Vertex 26937 0.346123 0.276043 0.230646 Vertex 26938 0.519491 0.128865 0.790918 Vertex 26939 0.490435 0.216758 0.547805 Vertex 26940 0.40808 0.16959 0.708522 Vertex 26941 0.60768 0.465261 0.299201 Vertex 26942 0.547701 0.423808 0.536481 Vertex 26943 0.596243 0.437543 0.186084 Vertex 26944 0.477962 0.787193 0.478427 Vertex 26945 0.491341 0.213968 0.517854 Vertex 26946 0.337826 0.105791 0.455956 Vertex 26947 0.326377 0.239809 0.215603 Vertex 26948 0.464334 0.368472 0.407686 Vertex 26949 0.461307 0.371132 0.40729 Vertex 26950 0.463534 0.370575 0.407213 Vertex 26951 0.355659 0.0846763 0.445781 Vertex 26952 0.415484 0.263464 0.227649 Vertex 26953 0.468112 0.0683831 0.701788 Vertex 26954 0.468592 0.0747736 0.705881 Vertex 26955 0.465536 0.0706455 0.703221 Vertex 26956 0.453495 0.813999 0.470153 Vertex 26957 0.47561 0.799417 0.470236 Vertex 26958 0.550911 0.560254 0.4607 Vertex 26959 0.362138 0.195637 0.52813 Vertex 26960 0.500888 0.498712 0.394686 Vertex 26961 0.551456 0.399951 0.414024 Vertex 26962 0.547648 0.399241 0.418987 Vertex 26963 0.375375 0.385091 0.51969 Vertex 26964 0.391011 0.18946 0.654288 Vertex 26965 0.47163 0.335987 0.631462 Vertex 26966 0.456534 0.438472 0.6215 Vertex 26967 0.541281 0.640631 0.50236 Vertex 26968 0.428585 0.822048 0.370338 Vertex 26969 0.367759 0.354619 0.36865 Vertex 26970 0.581567 0.496971 0.314902 Vertex 26971 0.3556 0.921217 0.3328 Vertex 26972 0.373599 0.339878 0.268889 Vertex 26973 0.379296 0.228248 0.229669 Vertex 26974 0.536697 0.0785049 0.778954 Vertex 26975 0.398266 0.288179 0.236983 Vertex 26976 0.373012 0.366032 0.480778 Vertex 26977 0.379877 0.441475 0.578247 Vertex 26978 0.515796 0.604319 0.551204 Vertex 26979 0.320046 0.242651 0.221531 Vertex 26980 0.670431 0.460179 0.216805 Vertex 26981 0.36918 0.109688 0.464058 Vertex 26982 0.371182 0.424679 0.335477 Vertex 26983 0.55835 0.401545 0.470176 Vertex 26984 0.450966 0.247253 0.754121 Vertex 26985 0.448544 0.246205 0.7562 Vertex 26986 0.41732 0.374123 0.629336 Vertex 26987 0.381867 0.87152 0.32163 Vertex 26988 0.533078 0.09205 0.783088 Vertex 26989 0.499905 0.657741 0.546674 Vertex 26990 0.497062 0.172172 0.718064 Vertex 26991 0.550911 0.454955 0.363403 Vertex 26992 0.479614 0.170146 0.795846 Vertex 26993 0.668808 0.454618 0.201566 Vertex 26994 0.412031 0.488116 0.430589 Vertex 26995 0.480532 0.207003 0.575789 Vertex 26996 0.404929 0.174511 0.606937 Vertex 26997 0.518283 0.377345 0.464118 Vertex 26998 0.510519 0.42902 0.424021 Vertex 26999 0.430024 0.208164 0.789834 Vertex 27000 0.526794 0.0516515 0.661822 Vertex 27001 0.339407 0.109338 0.456282 Vertex 27002 0.51223 0.0306794 0.668888 Vertex 27003 0.580359 0.437762 0.32699 Vertex 27004 0.455035 0.555546 0.436015 Vertex 27005 0.385077 0.242107 0.685684 Vertex 27006 0.374777 0.215478 0.221638 Vertex 27007 0.368582 0.386146 0.277417 Vertex 27008 0.482895 0.0766866 0.703541 Vertex 27009 0.398278 0.337823 0.206109 Vertex 27010 0.518076 0.0861747 0.683831 Vertex 27011 0.520066 0.084623 0.682735 Vertex 27012 0.572831 0.406751 0.416298 Vertex 27013 0.361096 0.24845 0.494134 Vertex 27014 0.472691 0.103119 0.780974 Vertex 27015 0.395151 0.326398 0.250416 Vertex 27016 0.396395 0.329703 0.250363 Vertex 27017 0.426417 0.257328 0.745734 Vertex 27018 0.421359 0.255166 0.745722 Vertex 27019 0.387623 0.253804 0.208644 Vertex 27020 0.538574 0.0449648 0.723577 Vertex 27021 0.448485 0.160149 0.502526 Vertex 27022 0.427033 0.137163 0.699988 Vertex 27023 0.388038 0.351469 0.436234 Vertex 27024 0.466584 0.0860918 0.72648 Vertex 27025 0.439553 0.157484 0.577608 Vertex 27026 0.554897 0.415072 0.385542 Vertex 27027 0.480556 0.154327 0.654922 Vertex 27028 0.533469 0.492825 0.586278 Vertex 27029 0.388204 0.89736 0.371736 Vertex 27030 0.49849 0.180404 0.45386 Vertex 27031 0.351507 0.106957 0.459924 Vertex 27032 0.353538 0.108426 0.459581 Vertex 27033 0.614645 0.472593 0.309891 Vertex 27034 0.615095 0.476336 0.312503 Vertex 27035 0.362174 0.313883 0.572052 Vertex 27036 0.442219 0.201317 0.470632 Vertex 27037 0.504199 0.0387875 0.736382 Vertex 27038 0.361404 0.412934 0.424252 Vertex 27039 0.446311 0.159509 0.536569 Vertex 27040 0.357963 0.385767 0.395569 Vertex 27041 0.593904 0.453812 0.192753 Vertex 27042 0.413008 0.854545 0.422238 Vertex 27043 0.412475 0.85759 0.422481 Vertex 27044 0.363903 0.29544 0.195288 Vertex 27045 0.573352 0.511031 0.430755 Vertex 27046 0.49172 0.678476 0.405282 Vertex 27047 0.462598 0.182086 0.669758 Vertex 27048 0.422911 0.264441 0.664979 Vertex 27049 0.517093 0.300149 0.538565 Vertex 27050 0.36183 0.440101 0.52823 Vertex 27051 0.471447 0.793068 0.478966 Vertex 27052 0.370892 0.180292 0.50149 Vertex 27053 0.331471 0.917924 0.268735 Vertex 27054 0.605335 0.446936 0.381692 Vertex 27055 0.601011 0.489425 0.269878 Vertex 27056 0.65303 0.500897 0.194269 Vertex 27057 0.659799 0.487405 0.219435 Vertex 27058 0.573625 0.511155 0.497207 Vertex 27059 0.414696 0.368372 0.309418 Vertex 27060 0.445648 0.572763 0.53038 Vertex 27061 0.367552 0.380721 0.250446 Vertex 27062 0.445209 0.137382 0.627328 Vertex 27063 0.639254 0.480411 0.228366 Vertex 27064 0.371887 0.371688 0.488027 Vertex 27065 0.592944 0.521484 0.310288 Vertex 27066 0.559345 0.542137 0.477615 Vertex 27067 0.506847 0.449376 0.605426 Vertex 27068 0.363275 0.411015 0.362343 Vertex 27069 0.434839 0.257861 0.737525 Vertex 27070 0.436349 0.256582 0.741689 Vertex 27071 0.428685 0.409884 0.388076 Vertex 27072 0.440868 0.470662 0.413887 Vertex 27073 0.582384 0.472392 0.306646 Vertex 27074 0.525094 0.336585 0.493168 Vertex 27075 0.487841 0.580527 0.400816 Vertex 27076 0.523856 0.413378 0.569553 Vertex 27077 0.395151 0.358368 0.354098 Vertex 27078 0.622492 0.451336 0.196395 Vertex 27079 0.607111 0.50637 0.205943 Vertex 27080 0.561465 0.0170573 0.736844 Vertex 27081 0.479419 0.213547 0.491285 Vertex 27082 0.369938 0.878153 0.31457 Vertex 27083 0.47105 0.120473 0.815622 Vertex 27084 0.44948 0.169631 0.621044 Vertex 27085 0.465116 0.613179 0.530392 Vertex 27086 0.470404 0.614204 0.536339 Vertex 27087 0.445944 0.399928 0.40328 Vertex 27088 0.428052 0.480766 0.595559 Vertex 27089 0.441443 0.567462 0.524096 Vertex 27090 0.344453 0.923533 0.316039 Vertex 27091 0.403733 0.522077 0.522089 Vertex 27092 0.483109 0.111648 0.807756 Vertex 27093 0.482374 0.112602 0.811985 Vertex 27094 0.486331 0.527982 0.390505 Vertex 27095 0.409887 0.33328 0.209206 Vertex 27096 0.400985 0.262907 0.656403 Vertex 27097 0.351951 0.212268 0.524043 Vertex 27098 0.548299 0.533069 0.439947 Vertex 27099 0.550686 0.538642 0.448861 Vertex 27100 0.549952 0.537973 0.444638 Vertex 27101 0.372414 0.316631 0.202324 Vertex 27102 0.517963 0.555735 0.574504 Vertex 27103 0.385314 0.496467 0.490924 Vertex 27104 0.495457 0.78355 0.466007 Vertex 27105 0.447146 0.817298 0.367916 Vertex 27106 0.428573 0.263653 0.706455 Vertex 27107 0.44974 0.771747 0.457721 Vertex 27108 0.605927 0.500625 0.220874 Vertex 27109 0.338305 0.947176 0.294931 Vertex 27110 0.338578 0.946104 0.296767 Vertex 27111 0.321147 0.960419 0.213832 Vertex 27112 0.430119 0.317028 0.42424 Vertex 27113 0.403597 0.364747 0.423204 Vertex 27114 0.410319 0.262623 0.720172 Vertex 27115 0.496535 0.739847 0.414462 Vertex 27116 0.453809 0.586355 0.449453 Vertex 27117 0.467958 0.821124 0.41249 Vertex 27118 0.659628 0.477775 0.191225 Vertex 27119 0.529063 0.447878 0.407686 Vertex 27120 0.437155 0.546401 0.498676 Vertex 27121 0.485407 0.641412 0.410979 Vertex 27122 0.421631 0.3941 0.314517 Vertex 27123 0.465139 0.691317 0.490965 Vertex 27124 0.51284 0.715013 0.429215 Vertex 27125 0.510572 0.0285354 0.727208 Vertex 27126 0.533386 0.116179 0.43021 Vertex 27127 0.522962 0.61081 0.542919 Vertex 27128 0.502884 0.164188 0.717833 Vertex 27129 0.529299 0.145354 0.78711 Vertex 27130 0.43873 0.499802 0.431922 Vertex 27131 0.459975 0.647193 0.496757 Vertex 27132 0.415288 0.435695 0.606492 Vertex 27133 0.389726 0.312166 0.449583 Vertex 27134 0.530259 0.609187 0.437578 Vertex 27135 0.402205 0.25336 0.19835 Vertex 27136 0.642286 0.442541 0.192149 Vertex 27137 0.541009 0.0133793 0.760405 Vertex 27138 0.496902 0.242462 0.522071 Vertex 27139 0.364063 0.311112 0.486778 Vertex 27140 0.444943 0.585805 0.497936 Vertex 27141 0.499568 0.0354708 0.673111 Vertex 27142 0.586068 0.499186 0.303898 Vertex 27143 0.490115 0.723252 0.516438 Vertex 27144 0.458518 0.202774 0.618415 Vertex 27145 0.615593 0.475074 0.295274 Vertex 27146 0.375962 0.178485 0.526181 Vertex 27147 0.486946 0.487619 0.388479 Vertex 27148 0.357471 0.392708 0.347879 Vertex 27149 0.385148 0.44921 0.415931 Vertex 27150 0.475326 0.779606 0.398506 Vertex 27151 0.466561 0.278709 0.627251 Vertex 27152 0.470245 0.272916 0.620251 Vertex 27153 0.545735 0.130322 0.441375 Vertex 27154 0.531053 0.0338895 0.656492 Vertex 27155 0.566973 0.404707 0.385311 Vertex 27156 0.481758 0.0694195 0.648129 Vertex 27157 0.481586 0.0743946 0.64852 Vertex 27158 0.390792 0.43175 0.329247 Vertex 27159 0.45478 0.227922 0.664979 Vertex 27160 0.352846 0.375461 0.46009 Vertex 27161 0.50472 0.296666 0.460499 Vertex 27162 0.314686 0.992917 0.203443 Vertex 27163 0.523057 0.584271 0.552756 Vertex 27164 0.516429 0.657415 0.528266 Vertex 27165 0.359615 0.389936 0.383107 Vertex 27166 0.621338 0.485072 0.3405 Vertex 27167 0.474005 0.760659 0.489176 Vertex 27168 0.545735 0.582399 0.511771 Vertex 27169 0.386753 0.35183 0.380892 Vertex 27170 0.480633 0.517457 0.401432 Vertex 27171 0.374226 0.302891 0.46776 Vertex 27172 0.445488 0.587344 0.485368 Vertex 27173 0.364412 0.341507 0.51863 Vertex 27174 0.390905 0.352588 0.399851 Vertex 27175 0.441401 0.553917 0.470153 Vertex 27176 0.349156 0.94043 0.277512 Vertex 27177 0.444191 0.573462 0.472818 Vertex 27178 0.443741 0.572354 0.479037 Vertex 27179 0.444327 0.571039 0.474512 Vertex 27180 0.440436 0.345943 0.645985 Vertex 27181 0.609285 0.485285 0.217918 Vertex 27182 0.482262 0.209668 0.758267 Vertex 27183 0.51457 0.683647 0.426213 Vertex 27184 0.604215 0.517546 0.327197 Vertex 27185 0.332892 0.957943 0.270097 Vertex 27186 0.491904 0.128297 0.644883 Vertex 27187 0.483055 0.0681402 0.698679 Vertex 27188 0.48315 0.0685193 0.702191 Vertex 27189 0.359443 0.322738 0.51863 Vertex 27190 0.540085 0.428214 0.557204 Vertex 27191 0.471317 0.0737668 0.705768 Vertex 27192 0.38914 0.353423 0.347879 Vertex 27193 0.544681 0.606948 0.464722 Vertex 27194 0.519586 0.389824 0.528171 Vertex 27195 0.541696 0.481258 0.397878 Vertex 27196 0.527546 0.147433 0.780885 Vertex 27197 0.351631 0.391553 0.471284 Vertex 27198 0.374286 0.186659 0.470751 Vertex 27199 0.557894 0.464816 0.334376 Vertex 27200 0.654001 0.46956 0.214128 Vertex 27201 0.330553 0.943089 0.293557 Vertex 27202 0.545551 0.592314 0.5047 Vertex 27203 0.359337 0.233282 0.551447 Vertex 27204 0.491868 0.46657 0.388633 Vertex 27205 0.514037 0.461073 0.407615 Vertex 27206 0.515956 0.456229 0.408871 Vertex 27207 0.515369 0.45765 0.40835 Vertex 27208 0.408779 0.174351 0.596234 Vertex 27209 0.498573 0.412235 0.407384 Vertex 27210 0.456457 0.277755 0.433539 Vertex 27211 0.365455 0.380448 0.300214 Vertex 27212 0.524798 0.705768 0.492985 Vertex 27213 0.501931 0.196846 0.491948 Vertex 27214 0.507273 0.0342981 0.743632 Vertex 27215 0.463931 0.387384 0.39728 Vertex 27216 0.364389 0.254757 0.571045 Vertex 27217 0.474278 0.785304 0.48294 Vertex 27218 0.487124 0.205576 0.477432 Vertex 27219 0.43886 0.543825 0.472439 Vertex 27220 0.661695 0.415836 0.233442 Vertex 27221 0.515642 0.34246 0.466143 Vertex 27222 0.46704 0.2264 0.74789 Vertex 27223 0.519817 0.659482 0.427776 Vertex 27224 0.45144 0.57685 0.538785 Vertex 27225 0.495321 0.0870158 0.781246 Vertex 27226 0.39996 0.308417 0.235864 Vertex 27227 0.492905 0.0548083 0.742743 Vertex 27228 0.538533 0.0562534 0.712502 Vertex 27229 0.482724 0.693787 0.507898 Vertex 27230 0.372213 0.357137 0.479676 Vertex 27231 0.427394 0.225422 0.78313 Vertex 27232 0.487586 0.695605 0.404571 Vertex 27233 0.599412 0.44077 0.184923 Vertex 27234 0.514635 0.664161 0.425152 Vertex 27235 0.343855 0.912025 0.320623 Vertex 27236 0.344364 0.908246 0.320914 Vertex 27237 0.48864 0.119211 0.801336 Vertex 27238 0.360545 0.198149 0.468115 Vertex 27239 0.362274 0.199037 0.469815 Vertex 27240 0.446844 0.313001 0.638966 Vertex 27241 0.445482 0.317176 0.640139 Vertex 27242 0.385035 0.464254 0.433065 Vertex 27243 0.523424 0.178485 0.458213 Vertex 27244 0.415484 0.532832 0.509598 Vertex 27245 0.536768 0.67134 0.47601 Vertex 27246 0.465347 0.189217 0.660815 Vertex 27247 0.596042 0.460718 0.190437 Vertex 27248 0.457499 0.234425 0.768625 Vertex 27249 0.49814 0.628519 0.40713 Vertex 27250 0.49875 0.629478 0.407592 Vertex 27251 0.455876 0.0856299 0.738378 Vertex 27252 0.46049 0.799394 0.477752 Vertex 27253 0.437089 0.167303 0.544849 Vertex 27254 0.548518 0.596862 0.471053 Vertex 27255 0.405083 0.85278 0.341749 Vertex 27256 0.373676 0.365091 0.47652 Vertex 27257 0.629161 0.487814 0.240217 Vertex 27258 0.628676 0.487429 0.236468 Vertex 27259 0.482457 0.370534 0.422428 Vertex 27260 0.535092 0.0574735 0.711685 Vertex 27261 0.419635 0.387342 0.352031 Vertex 27262 0.371395 0.323478 0.255936 Vertex 27263 0.577622 0.432692 0.332978 Vertex 27264 0.578262 0.430169 0.335726 Vertex 27265 0.427661 0.391429 0.420006 Vertex 27266 0.636861 0.492215 0.189353 Vertex 27267 0.320733 0.237866 0.227762 Vertex 27268 0.427554 0.352061 0.647975 Vertex 27269 0.453649 0.234697 0.627713 Vertex 27270 0.492928 0.691447 0.524002 Vertex 27271 0.500711 0.0970547 0.639784 Vertex 27272 0.498182 0.0975995 0.640583 Vertex 27273 0.519296 0.38123 0.503391 Vertex 27274 0.517478 0.148167 0.448203 Vertex 27275 0.348433 0.93764 0.275048 Vertex 27276 0.429402 0.352321 0.426076 Vertex 27277 0.527161 0.0157247 0.729358 Vertex 27278 0.492247 0.695036 0.522574 Vertex 27279 0.374126 0.470419 0.526856 Vertex 27280 0.442615 0.24325 0.768531 Vertex 27281 0.610428 0.542818 0.273278 Vertex 27282 0.613668 0.543375 0.279467 Vertex 27283 0.405042 0.36146 0.304348 Vertex 27284 0.497892 0.046102 0.723743 Vertex 27285 0.499947 0.0431407 0.727024 Vertex 27286 0.537656 0.121498 0.443323 Vertex 27287 0.511656 0.164922 0.789349 Vertex 27288 0.515506 0.0167552 0.646453 Vertex 27289 0.482445 0.412436 0.379761 Vertex 27290 0.389542 0.254988 0.216793 Vertex 27291 0.36963 0.368745 0.233069 Vertex 27292 0.352271 0.136091 0.456146 Vertex 27293 0.360225 0.306154 0.564821 Vertex 27294 0.456996 0.15528 0.797226 Vertex 27295 0.647291 0.442974 0.194163 Vertex 27296 0.603729 0.474074 0.199286 Vertex 27297 0.516122 0.344936 0.575777 Vertex 27298 0.380605 0.0724342 0.468068 Vertex 27299 0.402033 0.168079 0.498629 Vertex 27300 0.43626 0.412892 0.407769 Vertex 27301 0.435781 0.414314 0.40652 Vertex 27302 0.521588 0.134729 0.789236 Vertex 27303 0.445115 0.77774 0.451556 Vertex 27304 0.343719 0.903052 0.31675 Vertex 27305 0.3609 0.290151 0.491291 Vertex 27306 0.427128 0.238506 0.454997 Vertex 27307 0.441354 0.247887 0.675349 Vertex 27308 0.464428 0.280521 0.434137 Vertex 27309 0.365248 0.332948 0.254443 Vertex 27310 0.594318 0.440362 0.188181 Vertex 27311 0.489191 0.266851 0.457259 Vertex 27312 0.39556 0.260822 0.200725 Vertex 27313 0.385995 0.347962 0.410417 Vertex 27314 0.636754 0.514662 0.255746 Vertex 27315 0.526948 0.0894381 0.710731 Vertex 27316 0.52558 0.0921566 0.711495 Vertex 27317 0.476345 0.254746 0.452426 Vertex 27318 0.489268 0.18946 0.458947 Vertex 27319 0.491856 0.729672 0.515189 Vertex 27320 0.497524 0.732272 0.505369 Vertex 27321 0.427317 0.403262 0.38935 Vertex 27322 0.500829 0.24691 0.532364 Vertex 27323 0.410112 0.528455 0.550553 Vertex 27324 0.502748 0.389291 0.448393 Vertex 27325 0.304765 0.980822 0.235266 Vertex 27326 0.394423 0.205333 0.710595 Vertex 27327 0.670354 0.454736 0.203058 Vertex 27328 0.365739 0.417873 0.347868 Vertex 27329 0.488919 0.198409 0.764485 Vertex 27330 0.463362 0.0643023 0.672275 Vertex 27331 0.346881 0.291537 0.232305 Vertex 27332 0.444682 0.167072 0.608589 Vertex 27333 0.505455 0.140782 0.701379 Vertex 27334 0.518171 0.443175 0.414882 Vertex 27335 0.400588 0.357723 0.440652 Vertex 27336 0.53752 0.448203 0.394603 Vertex 27337 0.353527 0.367335 0.439088 Vertex 27338 0.413849 0.234762 0.209751 Vertex 27339 0.485638 0.418063 0.379044 Vertex 27340 0.526314 0.0911498 0.70989 Vertex 27341 0.532107 0.128066 0.443359 Vertex 27342 0.511289 0.0893552 0.724223 Vertex 27343 0.512757 0.085849 0.723258 Vertex 27344 0.499443 0.6041 0.404737 Vertex 27345 0.461663 0.245157 0.453522 Vertex 27346 0.498277 0.493411 0.394218 Vertex 27347 0.418925 0.15181 0.627737 Vertex 27348 0.5276 0.646316 0.521935 Vertex 27349 0.522891 0.331207 0.544802 Vertex 27350 0.514516 0.0494246 0.662284 Vertex 27351 0.407269 0.282233 0.229906 Vertex 27352 0.396424 0.445704 0.59868 Vertex 27353 0.532142 0.170839 0.444135 Vertex 27354 0.466774 0.619433 0.434629 Vertex 27355 0.357755 0.168802 0.451194 Vertex 27356 0.610452 0.459658 0.336076 Vertex 27357 0.449752 0.634051 0.477266 Vertex 27358 0.396022 0.360139 0.227922 Vertex 27359 0.474527 0.20573 0.706319 Vertex 27360 0.506693 0.268824 0.497178 Vertex 27361 0.396691 0.287344 0.442328 Vertex 27362 0.524727 0.449264 0.410067 Vertex 27363 0.436716 0.253099 0.677434 Vertex 27364 0.410159 0.52107 0.495188 Vertex 27365 0.49984 0.201471 0.512133 Vertex 27366 0.372094 0.368692 0.497166 Vertex 27367 0.389679 0.280462 0.449352 Vertex 27368 0.443302 0.492629 0.42337 Vertex 27369 0.571451 0.437483 0.332706 Vertex 27370 0.459791 0.454517 0.620683 Vertex 27371 0.423775 0.254349 0.220388 Vertex 27372 0.54288 0.069307 0.723021 Vertex 27373 0.367244 0.439692 0.442452 Vertex 27374 0.640995 0.4399 0.209923 Vertex 27375 0.519249 0.104316 0.712206 Vertex 27376 0.504614 0.198451 0.483266 Vertex 27377 0.554856 0.478829 0.378239 Vertex 27378 0.542418 0.597679 0.517854 Vertex 27379 0.448562 0.814597 0.463259 Vertex 27380 0.482001 0.171396 0.502941 Vertex 27381 0.454117 0.132579 0.805292 Vertex 27382 0.546232 0.571241 0.528313 Vertex 27383 0.498614 0.555546 0.381218 Vertex 27384 0.444753 0.821716 0.369112 Vertex 27385 0.526385 0.610437 0.540786 Vertex 27386 0.500095 0.0295659 0.668846 Vertex 27387 0.380374 0.244162 0.233827 Vertex 27388 0.370181 0.362141 0.573657 Vertex 27389 0.370602 0.364481 0.571679 Vertex 27390 0.55774 0.487542 0.379234 Vertex 27391 0.341308 0.0966756 0.463164 Vertex 27392 0.343677 0.0963499 0.462536 Vertex 27393 0.378408 0.238369 0.596122 Vertex 27394 0.376933 0.240531 0.594475 Vertex 27395 0.367267 0.2386 0.235757 Vertex 27396 0.505958 0.329146 0.452663 Vertex 27397 0.50706 0.330336 0.454783 Vertex 27398 0.569982 0.501815 0.36865 Vertex 27399 0.477701 0.163507 0.666619 Vertex 27400 0.459773 0.331124 0.41612 Vertex 27401 0.381559 0.257126 0.230018 Vertex 27402 0.456913 0.50865 0.417192 Vertex 27403 0.443758 0.25503 0.733391 Vertex 27404 0.442171 0.257032 0.733391 Vertex 27405 0.421773 0.204569 0.476289 Vertex 27406 0.494125 0.134468 0.648472 Vertex 27407 0.485247 0.225014 0.58003 Vertex 27408 0.527665 0.0282629 0.656195 Vertex 27409 0.597167 0.516184 0.204557 Vertex 27410 0.410615 0.166391 0.617366 Vertex 27411 0.495848 0.42902 0.389557 Vertex 27412 0.355167 0.31733 0.21536 Vertex 27413 0.459483 0.124992 0.642721 Vertex 27414 0.474142 0.699822 0.499085 Vertex 27415 0.451126 0.147599 0.650533 Vertex 27416 0.379071 0.308381 0.609004 Vertex 27417 0.503186 0.543375 0.391239 Vertex 27418 0.502298 0.545483 0.390724 Vertex 27419 0.679812 0.463934 0.191343 Vertex 27420 0.397271 0.845928 0.37019 Vertex 27421 0.5795 0.413195 0.416298 Vertex 27422 0.536371 0.57438 0.546881 Vertex 27423 0.530046 0.144116 0.445449 Vertex 27424 0.36488 0.930817 0.311787 Vertex 27425 0.36613 0.188222 0.522 Vertex 27426 0.515434 0.0460783 0.658333 Vertex 27427 0.425682 0.266549 0.6526 Vertex 27428 0.425825 0.267136 0.650486 Vertex 27429 0.545273 0.125075 0.439088 Vertex 27430 0.492129 0.102604 0.807217 Vertex 27431 0.540683 0.158964 0.432538 Vertex 27432 0.403206 0.42639 0.352315 Vertex 27433 0.521582 0.713888 0.445331 Vertex 27434 0.52452 0.711389 0.453617 Vertex 27435 0.49066 0.229012 0.505144 Vertex 27436 0.488919 0.632072 0.408024 Vertex 27437 0.541826 0.537215 0.430903 Vertex 27438 0.36324 0.357966 0.372991 Vertex 27439 0.3773 0.223231 0.20965 Vertex 27440 0.399931 0.370711 0.237765 Vertex 27441 0.411006 0.1478 0.655301 Vertex 27442 0.538616 0.638238 0.510794 Vertex 27443 0.372444 0.373868 0.563494 Vertex 27444 0.372177 0.373702 0.561391 Vertex 27445 0.531491 0.132306 0.451556 Vertex 27446 0.324636 0.245619 0.212772 Vertex 27447 0.477067 0.702191 0.420728 Vertex 27448 0.508232 0.619433 0.417109 Vertex 27449 0.553902 0.476496 0.368626 Vertex 27450 0.444315 0.332131 0.41718 Vertex 27451 0.567613 0.474559 0.321062 Vertex 27452 0.553713 0.398571 0.461979 Vertex 27453 0.393434 0.392572 0.61158 Vertex 27454 0.369026 0.327867 0.211522 Vertex 27455 0.355262 0.10845 0.47206 Vertex 27456 0.404319 0.39715 0.2817 Vertex 27457 0.446856 0.600155 0.470236 Vertex 27458 0.413766 0.142932 0.666856 Vertex 27459 0.472744 0.21982 0.7562 Vertex 27460 0.644614 0.429298 0.217883 Vertex 27461 0.551746 0.487542 0.39256 Vertex 27462 0.542981 0.397624 0.479546 Vertex 27463 0.601751 0.444401 0.331314 Vertex 27464 0.586187 0.491557 0.451508 Vertex 27465 0.470718 0.0578822 0.654833 Vertex 27466 0.588271 0.516207 0.303773 Vertex 27467 0.610748 0.462187 0.325823 Vertex 27468 0.415845 0.144454 0.660406 Vertex 27469 0.418285 0.142535 0.659743 Vertex 27470 0.544953 0.0640832 0.72093 Vertex 27471 0.523205 0.657131 0.52226 Vertex 27472 0.480266 0.599824 0.551133 Vertex 27473 0.362221 0.289358 0.230397 Vertex 27474 0.473372 0.101082 0.777024 Vertex 27475 0.395785 0.354661 0.300036 Vertex 27476 0.581324 0.445947 0.320096 Vertex 27477 0.587211 0.448784 0.316395 Vertex 27478 0.541091 0.477426 0.397488 Vertex 27479 0.433933 0.25949 0.710577 Vertex 27480 0.479016 0.0790439 0.71255 Vertex 27481 0.357021 0.26662 0.222751 Vertex 27482 0.521262 0.0876672 0.665002 Vertex 27483 0.592761 0.494317 0.393081 Vertex 27484 0.572985 0.530084 0.474316 Vertex 27485 0.415798 0.417785 0.369497 Vertex 27486 0.4335 0.102847 0.665494 Vertex 27487 0.502843 0.167481 0.453984 Vertex 27488 0.469901 0.79154 0.48294 Vertex 27489 0.494237 0.524315 0.3864 Vertex 27490 0.526699 0.397908 0.522029 Vertex 27491 0.606566 0.491842 0.263393 Vertex 27492 0.378585 0.479789 0.468252 Vertex 27493 0.383679 0.432094 0.397719 Vertex 27494 0.585695 0.489609 0.406111 Vertex 27495 0.622729 0.45033 0.201975 Vertex 27496 0.493663 0.238725 0.574119 Vertex 27497 0.6184 0.468791 0.361685 Vertex 27498 0.519249 0.542842 0.407675 Vertex 27499 0.433749 0.240573 0.774169 Vertex 27500 0.565546 0.402451 0.430797 Vertex 27501 0.567625 0.403215 0.426645 Vertex 27502 0.342582 0.0982037 0.450407 Vertex 27503 0.445784 0.762999 0.434972 Vertex 27504 0.392912 0.263203 0.625688 Vertex 27505 0.436545 0.22576 0.787797 Vertex 27506 0.45985 0.234709 0.754138 Vertex 27507 0.501445 0.112193 0.64419 Vertex 27508 0.501676 0.1089 0.642538 Vertex 27509 0.385083 0.333783 0.619528 Vertex 27510 0.513373 0.0295955 0.724211 Vertex 27511 0.545362 0.624936 0.473813 Vertex 27512 0.5449 0.625398 0.46972 Vertex 27513 0.440388 0.495537 0.591242 Vertex 27514 0.440021 0.490473 0.593978 Vertex 27515 0.445411 0.494092 0.594718 Vertex 27516 0.370471 0.29579 0.590578 Vertex 27517 0.426008 0.515497 0.460469 Vertex 27518 0.531325 0.0711845 0.710838 Vertex 27519 0.426849 0.168446 0.555167 Vertex 27520 0.509932 0.405531 0.582097 Vertex 27521 0.359064 0.0878331 0.44369 Vertex 27522 0.422378 0.168204 0.565555 Vertex 27523 0.436669 0.406401 0.412253 Vertex 27524 0.549442 0.0474642 0.722126 Vertex 27525 0.526812 0.708919 0.462157 Vertex 27526 0.390703 0.427178 0.374253 Vertex 27527 0.407352 0.525571 0.526205 Vertex 27528 0.310001 0.997216 0.212985 Vertex 27529 0.560405 0.490722 0.376788 Vertex 27530 0.558664 0.489419 0.372837 Vertex 27531 0.490873 0.755951 0.494501 Vertex 27532 0.46351 0.35379 0.632582 Vertex 27533 0.352792 0.379957 0.428919 Vertex 27534 0.398645 0.252815 0.206813 Vertex 27535 0.45789 0.186943 0.631895 Vertex 27536 0.54169 0.646589 0.488395 Vertex 27537 0.36934 0.396439 0.524233 Vertex 27538 0.515873 0.377611 0.557281 Vertex 27539 0.578677 0.436512 0.461938 Vertex 27540 0.483665 0.795425 0.420918 Vertex 27541 0.570817 0.467085 0.513732 Vertex 27542 0.544438 0.626215 0.467766 Vertex 27543 0.463374 0.160285 0.80075 Vertex 27544 0.499283 0.0935188 0.799636 Vertex 27545 0.591114 0.448126 0.192179 Vertex 27546 0.323351 0.961337 0.26787 Vertex 27547 0.585505 0.496982 0.445319 Vertex 27548 0.379527 0.869755 0.337657 Vertex 27549 0.354788 0.416079 0.489449 Vertex 27550 0.37184 0.309009 0.248106 Vertex 27551 0.319773 0.259424 0.21995 Vertex 27552 0.506882 0.614654 0.414421 Vertex 27553 0.416751 0.161825 0.604852 Vertex 27554 0.673611 0.46458 0.217836 Vertex 27555 0.48745 0.534538 0.390546 Vertex 27556 0.485584 0.536421 0.391162 Vertex 27557 0.519569 0.379885 0.515787 Vertex 27558 0.445464 0.56395 0.460457 Vertex 27559 0.420198 0.542563 0.526205 Vertex 27560 0.447407 0.141842 0.633914 Vertex 27561 0.435111 0.316252 0.645428 Vertex 27562 0.5173 0.730685 0.445905 Vertex 27563 0.440211 0.56299 0.501424 Vertex 27564 0.440844 0.564957 0.499547 Vertex 27565 0.484204 0.701403 0.40604 Vertex 27566 0.487201 0.70421 0.403564 Vertex 27567 0.346254 0.933755 0.270683 Vertex 27568 0.438008 0.25564 0.71682 Vertex 27569 0.396608 0.255083 0.70196 Vertex 27570 0.555484 0.498789 0.401391 Vertex 27571 0.367475 0.432508 0.428552 Vertex 27572 0.47458 0.65356 0.424785 Vertex 27573 0.441401 0.159758 0.52823 Vertex 27574 0.527256 0.344539 0.498457 Vertex 27575 0.599738 0.523113 0.248006 Vertex 27576 0.361913 0.885041 0.33344 Vertex 27577 0.361042 0.885201 0.331373 Vertex 27578 0.424326 0.391103 0.413858 Vertex 27579 0.475599 0.137382 0.804742 Vertex 27580 0.517045 0.372133 0.47649 Vertex 27581 0.426435 0.235011 0.213151 Vertex 27582 0.556182 0.514679 0.542729 Vertex 27583 0.646082 0.422552 0.218724 Vertex 27584 0.533161 0.401995 0.442683 Vertex 27585 0.3566 0.356076 0.390523 Vertex 27586 0.459145 0.197023 0.606848 Vertex 27587 0.680256 0.452118 0.198498 Vertex 27588 0.493758 0.189963 0.772801 Vertex 27589 0.552433 0.054755 0.737887 Vertex 27590 0.523122 0.397772 0.542599 Vertex 27591 0.597807 0.536421 0.273728 Vertex 27592 0.37698 0.388029 0.557204 Vertex 27593 0.416573 0.379435 0.298141 Vertex 27594 0.399794 0.429346 0.602293 Vertex 27595 0.692273 0.462051 0.205019 Vertex 27596 0.505484 0.623242 0.559324 Vertex 27597 0.483594 0.149974 0.651813 Vertex 27598 0.550722 0.00905575 0.76676 Vertex 27599 0.474787 0.192096 0.571756 Vertex 27600 0.373907 0.902116 0.303246 Vertex 27601 0.539309 0.0293468 0.727978 Vertex 27602 0.412528 0.177028 0.735458 Vertex 27603 0.418386 0.371221 0.343722 Vertex 27604 0.531775 0.40238 0.464035 Vertex 27605 0.535311 0.566834 0.557305 Vertex 27606 0.626988 0.520863 0.214839 Vertex 27607 0.46094 0.476905 0.618687 Vertex 27608 0.538337 0.617455 0.448203 Vertex 27609 0.373835 0.240774 0.202792 Vertex 27610 0.533025 0.137696 0.457241 Vertex 27611 0.437587 0.13586 0.73537 Vertex 27612 0.548625 0.566242 0.507531 Vertex 27613 0.698646 0.450211 0.214999 Vertex 27614 0.532018 0.0954792 0.751799 Vertex 27615 0.370602 0.234899 0.235894 Vertex 27616 0.365929 0.234685 0.23619 Vertex 27617 0.550627 0.411062 0.517824 Vertex 27618 0.635511 0.450407 0.204859 Vertex 27619 0.400908 0.251032 0.721131 Vertex 27620 0.613259 0.467553 0.313569 Vertex 27621 0.592388 0.47681 0.413656 Vertex 27622 0.3902 0.427231 0.594819 Vertex 27623 0.470085 0.617455 0.532761 Vertex 27624 0.466525 0.718212 0.48477 Vertex 27625 0.422318 0.14674 0.636526 Vertex 27626 0.357572 0.399318 0.424809 Vertex 27627 0.503145 0.279881 0.464467 Vertex 27628 0.603315 0.526305 0.211735 Vertex 27629 0.609273 0.54254 0.277086 Vertex 27630 0.486781 0.197947 0.730466 Vertex 27631 0.500853 0.18301 0.495052 Vertex 27632 0.423355 0.124246 0.689955 Vertex 27633 0.443214 0.477082 0.411779 Vertex 27634 0.402454 0.867848 0.405347 Vertex 27635 0.402673 0.862956 0.40559 Vertex 27636 0.55257 0.511374 0.551033 Vertex 27637 0.649725 0.429298 0.229616 Vertex 27638 0.430409 0.1245 0.714504 Vertex 27639 0.534446 0.0820644 0.717756 Vertex 27640 0.533801 0.081632 0.716885 Vertex 27641 0.480864 0.204379 0.573734 Vertex 27642 0.426707 0.167469 0.534408 Vertex 27643 0.488646 0.547272 0.382728 Vertex 27644 0.378769 0.181897 0.479783 Vertex 27645 0.556698 0.537405 0.528219 Vertex 27646 0.484767 0.310614 0.435529 Vertex 27647 0.481504 0.307901 0.433148 Vertex 27648 0.554613 0.469057 0.372784 Vertex 27649 0.504081 0.533567 0.588351 Vertex 27650 0.48976 0.0430578 0.675444 Vertex 27651 0.489428 0.0451544 0.678186 Vertex 27652 0.406493 0.426295 0.341056 Vertex 27653 0.408832 0.42549 0.336212 Vertex 27654 0.546967 0.434149 0.380827 Vertex 27655 0.352502 0.312959 0.23407 Vertex 27656 0.435301 0.140948 0.611148 Vertex 27657 0.523625 0.133112 0.760138 Vertex 27658 0.612619 0.448334 0.200944 Vertex 27659 0.484483 0.731159 0.501709 Vertex 27660 0.523791 0.341897 0.492067 Vertex 27661 0.408667 0.339238 0.220903 Vertex 27662 0.491975 0.223432 0.505369 Vertex 27663 0.491531 0.223734 0.505487 Vertex 27664 0.550805 0.0465936 0.791901 Vertex 27665 0.478975 0.360276 0.419289 Vertex 27666 0.358596 0.401331 0.420746 Vertex 27667 0.449723 0.24585 0.72719 Vertex 27668 0.632845 0.48368 0.231511 Vertex 27669 0.35069 0.270411 0.202241 Vertex 27670 0.402957 0.382699 0.245631 Vertex 27671 0.552108 0.0547609 0.762211 Vertex 27672 0.349132 0.172024 0.462021 Vertex 27673 0.498235 0.705839 0.527443 Vertex 27674 0.496257 0.315382 0.609051 Vertex 27675 0.442509 0.8073 0.456098 Vertex 27676 0.4153 0.387869 0.376077 Vertex 27677 0.357365 0.260905 0.547627 Vertex 27678 0.424687 0.117263 0.680182 Vertex 27679 0.544568 0.397985 0.482804 Vertex 27680 0.383945 0.29072 0.453617 Vertex 27681 0.480017 0.496136 0.397215 Vertex 27682 0.41395 0.164804 0.594552 Vertex 27683 0.418741 0.250499 0.201211 Vertex 27684 0.53229 0.398281 0.515852 Vertex 27685 0.470049 0.777835 0.487032 Vertex 27686 0.436171 0.372281 0.649444 Vertex 27687 0.377727 0.331859 0.470508 Vertex 27688 0.374848 0.335531 0.474494 Vertex 27689 0.614142 0.543007 0.275374 Vertex 27690 0.526972 0.585846 0.550648 Vertex 27691 0.360486 0.375538 0.364504 Vertex 27692 0.497933 0.167072 0.788265 Vertex 27693 0.38731 0.354471 0.310507 Vertex 27694 0.394973 0.35613 0.432165 Vertex 27695 0.436077 0.488608 0.431584 Vertex 27696 0.373835 0.321683 0.47649 Vertex 27697 0.436166 0.50223 0.438532 Vertex 27698 0.55931 0.487157 0.360353 Vertex 27699 0.544681 0.634187 0.481714 Vertex 27700 0.544266 0.637053 0.482247 Vertex 27701 0.532889 0.12495 0.437039 Vertex 27702 0.37207 0.876903 0.327138 Vertex 27703 0.38221 0.220169 0.60529 Vertex 27704 0.524982 0.0620162 0.78143 Vertex 27705 0.388464 0.860367 0.37696 Vertex 27706 0.530999 0.572354 0.557305 Vertex 27707 0.484933 0.17964 0.711158 Vertex 27708 0.60431 0.509687 0.219381 Vertex 27709 0.421466 0.45595 0.398234 Vertex 27710 0.545456 0.581244 0.456335 Vertex 27711 0.395151 0.184444 0.610484 Vertex 27712 0.545593 0.569174 0.538601 Vertex 27713 0.465435 0.0789076 0.708635 Vertex 27714 0.521517 0.728422 0.472415 Vertex 27715 0.493621 0.230658 0.545211 Vertex 27716 0.43029 0.370166 0.648537 Vertex 27717 0.465607 0.0759996 0.706431 Vertex 27718 0.494794 0.209236 0.513738 Vertex 27719 0.607058 0.507999 0.21334 Vertex 27720 0.489327 0.110517 0.804469 Vertex 27721 0.487474 0.109107 0.805666 Vertex 27722 0.537188 0.14308 0.444656 Vertex 27723 0.644454 0.450436 0.190011 Vertex 27724 0.386913 0.860071 0.36287 Vertex 27725 0.661724 0.495117 0.213121 Vertex 27726 0.523531 0.31171 0.496023 Vertex 27727 0.443214 0.530659 0.575837 Vertex 27728 0.439198 0.529563 0.575019 Vertex 27729 0.493829 0.188755 0.783171 Vertex 27730 0.372781 0.31534 0.200832 Vertex 27731 0.373966 0.373601 0.507365 Vertex 27732 0.436124 0.535622 0.482721 Vertex 27733 0.561927 0.492623 0.381094 Vertex 27734 0.47975 0.241485 0.46853 Vertex 27735 0.481545 0.785594 0.478261 Vertex 27736 0.490044 0.194204 0.737437 Vertex 27737 0.518881 0.100075 0.679424 Vertex 27738 0.541139 0.562203 0.439159 Vertex 27739 0.433666 0.508573 0.586118 Vertex 27740 0.427939 0.506192 0.586551 Vertex 27741 0.437865 0.392945 0.646701 Vertex 27742 0.504519 0.423174 0.601553 Vertex 27743 0.502819 0.421978 0.603578 Vertex 27744 0.398249 0.313096 0.224765 Vertex 27745 0.47137 0.80422 0.466641 Vertex 27746 0.383081 0.238464 0.226453 Vertex 27747 0.399901 0.426408 0.362325 Vertex 27748 0.403585 0.425425 0.35626 Vertex 27749 0.501469 0.087916 0.639381 Vertex 27750 0.385574 0.0751823 0.474399 Vertex 27751 0.387363 0.0764912 0.473392 Vertex 27752 0.54683 0.0432828 0.718751 Vertex 27753 0.549034 0.0405821 0.72106 Vertex 27754 0.368162 0.429138 0.418442 Vertex 27755 0.670946 0.449625 0.197266 Vertex 27756 0.570089 0.502668 0.374922 Vertex 27757 0.402116 0.179315 0.483804 Vertex 27758 0.417296 0.46121 0.59932 Vertex 27759 0.469889 0.514981 0.410014 Vertex 27760 0.403846 0.249226 0.729477 Vertex 27761 0.40323 0.248367 0.729174 Vertex 27762 0.449983 0.57759 0.457751 Vertex 27763 0.336309 0.948443 0.293249 Vertex 27764 0.453104 0.658505 0.476608 Vertex 27765 0.421791 0.834065 0.3526 Vertex 27766 0.462533 0.174049 0.670582 Vertex 27767 0.48286 0.625036 0.420379 Vertex 27768 0.485596 0.318781 0.627305 Vertex 27769 0.412747 0.883075 0.352221 Vertex 27770 0.553523 0.457046 0.370788 Vertex 27771 0.351566 0.110872 0.456009 Vertex 27772 0.407068 0.458923 0.597632 Vertex 27773 0.406582 0.460232 0.596655 Vertex 27774 0.514771 0.54447 0.404382 Vertex 27775 0.415987 0.246785 0.754038 Vertex 27776 0.363909 0.200109 0.47142 Vertex 27777 0.543988 0.056058 0.799737 Vertex 27778 0.416721 0.367241 0.323022 Vertex 27779 0.301283 0.971275 0.221964 Vertex 27780 0.684953 0.466137 0.218321 Vertex 27781 0.602717 0.455512 0.212884 Vertex 27782 0.494901 0.186333 0.778996 Vertex 27783 0.401459 0.175897 0.700219 Vertex 27784 0.386776 0.35456 0.619274 Vertex 27785 0.393487 0.29181 0.194465 Vertex 27786 0.446998 0.403487 0.640145 Vertex 27787 0.64225 0.436725 0.221608 Vertex 27788 0.331583 0.953643 0.284217 Vertex 27789 0.572209 0.442595 0.490918 Vertex 27790 0.375215 0.379252 0.516657 Vertex 27791 0.327852 0.245672 0.21016 Vertex 27792 0.514789 0.679803 0.517866 Vertex 27793 0.433761 0.452574 0.403345 Vertex 27794 0.598547 0.528396 0.22181 Vertex 27795 0.461118 0.233744 0.772534 Vertex 27796 0.406813 0.860018 0.339274 Vertex 27797 0.465039 0.272727 0.436642 Vertex 27798 0.559179 0.413224 0.374964 Vertex 27799 0.35897 0.280166 0.49918 Vertex 27800 0.494587 0.232601 0.528503 Vertex 27801 0.366059 0.364907 0.468945 Vertex 27802 0.543022 0.552039 0.439444 Vertex 27803 0.472146 0.252406 0.451656 Vertex 27804 0.363773 0.225695 0.207773 Vertex 27805 0.418546 0.404607 0.36117 Vertex 27806 0.417485 0.408415 0.359867 Vertex 27807 0.372621 0.881339 0.3103 Vertex 27808 0.482759 0.386922 0.408107 Vertex 27809 0.386593 0.495946 0.482709 Vertex 27810 0.489813 0.769834 0.413822 Vertex 27811 0.403437 0.161943 0.662935 Vertex 27812 0.430509 0.230084 0.782952 Vertex 27813 0.538397 0.131791 0.436861 Vertex 27814 0.622072 0.486618 0.359796 Vertex 27815 0.507699 0.564086 0.397908 Vertex 27816 0.449018 0.196763 0.801336 Vertex 27817 0.521357 0.471355 0.408409 Vertex 27818 0.363038 0.124133 0.463484 Vertex 27819 0.393262 0.388639 0.240194 Vertex 27820 0.381428 0.864969 0.348033 Vertex 27821 0.500663 0.435422 0.607085 Vertex 27822 0.508464 0.147853 0.70469 Vertex 27823 0.452441 0.243581 0.731324 Vertex 27824 0.408726 0.278916 0.229693 Vertex 27825 0.491649 0.221774 0.507501 Vertex 27826 0.520119 0.387573 0.476437 Vertex 27827 0.553535 0.562072 0.519915 Vertex 27828 0.43321 0.257126 0.689866 Vertex 27829 0.48036 0.0827988 0.717323 Vertex 27830 0.412765 0.873889 0.401675 Vertex 27831 0.493189 0.23369 0.559336 Vertex 27832 0.376453 0.345439 0.27936 Vertex 27833 0.379965 0.300107 0.241194 Vertex 27834 0.488155 0.589565 0.399335 Vertex 27835 0.412818 0.267082 0.656959 Vertex 27836 0.478951 0.0694728 0.742803 Vertex 27837 0.350269 0.0887866 0.454718 Vertex 27838 0.482712 0.1072 0.793092 Vertex 27839 0.522867 0.50403 0.593569 Vertex 27840 0.528565 0.552821 0.42055 Vertex 27841 0.334776 0.913351 0.292106 Vertex 27842 0.383199 0.259152 0.604917 Vertex 27843 0.470718 0.278981 0.624503 Vertex 27844 0.410657 0.367554 0.627251 Vertex 27845 0.592796 0.480654 0.401497 Vertex 27846 0.403869 0.247863 0.739498 Vertex 27847 0.428057 0.382971 0.64454 Vertex 27848 0.479004 0.172379 0.687041 Vertex 27849 0.476955 0.173356 0.685489 Vertex 27850 0.497388 0.0369633 0.679655 Vertex 27851 0.550094 0.569014 0.489686 Vertex 27852 0.471956 0.136156 0.645209 Vertex 27853 0.356713 0.147717 0.452977 Vertex 27854 0.488919 0.78374 0.422446 Vertex 27855 0.360853 0.402705 0.518191 Vertex 27856 0.448271 0.116967 0.659021 Vertex 27857 0.52131 0.650036 0.526246 Vertex 27858 0.402288 0.39362 0.268616 Vertex 27859 0.598079 0.526809 0.270713 Vertex 27860 0.662222 0.455281 0.206186 Vertex 27861 0.672059 0.457976 0.189128 Vertex 27862 0.475042 0.0719722 0.743821 Vertex 27863 0.359307 0.933891 0.313173 Vertex 27864 0.370258 0.188714 0.465977 Vertex 27865 0.367415 0.409907 0.39349 Vertex 27866 0.549952 0.44308 0.366802 Vertex 27867 0.408524 0.365162 0.296074 Vertex 27868 0.453347 0.739332 0.44327 Vertex 27869 0.621065 0.537339 0.26713 Vertex 27870 0.465086 0.191675 0.575961 Vertex 27871 0.450534 0.344604 0.414308 Vertex 27872 0.367107 0.226808 0.574895 Vertex 27873 0.544586 0.624432 0.503557 Vertex 27874 0.385308 0.251903 0.215603 Vertex 27875 0.675246 0.455216 0.190733 Vertex 27876 0.522838 0.666181 0.517907 Vertex 27877 0.511987 0.16449 0.745918 Vertex 27878 0.658988 0.410417 0.2152 Vertex 27879 0.527244 0.590934 0.549937 Vertex 27880 0.449705 0.585159 0.524096 Vertex 27881 0.422911 0.847764 0.434877 Vertex 27882 0.394417 0.452722 0.403185 Vertex 27883 0.45837 0.209905 0.602666 Vertex 27884 0.600413 0.452231 0.393851 Vertex 27885 0.483813 0.204273 0.772801 Vertex 27886 0.404183 0.250404 0.199197 Vertex 27887 0.513125 0.0977062 0.692022 Vertex 27888 0.676697 0.446379 0.200014 Vertex 27889 0.457819 0.822214 0.452474 Vertex 27890 0.54821 0.593463 0.491794 Vertex 27891 0.459661 0.215004 0.624373 Vertex 27892 0.460602 0.0715635 0.657143 Vertex 27893 0.40397 0.36682 0.399922 Vertex 27894 0.670513 0.471995 0.19498 Vertex 27895 0.673179 0.470786 0.195957 Vertex 27896 0.421306 0.54453 0.530244 Vertex 27897 0.42143 0.544476 0.526217 Vertex 27898 0.462936 0.501892 0.606895 Vertex 27899 0.530638 0.149606 0.443347 Vertex 27900 0.55238 0.463981 0.372761 Vertex 27901 0.498247 0.286669 0.453398 Vertex 27902 0.383264 0.235325 0.225363 Vertex 27903 0.54073 0.154641 0.432905 Vertex 27904 0.479437 0.205356 0.725082 Vertex 27905 0.52879 0.110683 0.76442 Vertex 27906 0.493254 0.414385 0.393679 Vertex 27907 0.597534 0.461784 0.302873 Vertex 27908 0.376205 0.344977 0.607055 Vertex 27909 0.492822 0.188986 0.538601 Vertex 27910 0.578534 0.492274 0.493032 Vertex 27911 0.388204 0.375278 0.614524 Vertex 27912 0.49727 0.509225 0.390019 Vertex 27913 0.402033 0.410808 0.607789 Vertex 27914 0.630778 0.503154 0.269825 Vertex 27915 0.63788 0.499334 0.249083 Vertex 27916 0.439648 0.350527 0.417862 Vertex 27917 0.389679 0.33039 0.45563 Vertex 27918 0.478062 0.528959 0.402273 Vertex 27919 0.56358 0.438307 0.505464 Vertex 27920 0.497406 0.0483052 0.741109 Vertex 27921 0.515138 0.40209 0.569689 Vertex 27922 0.4049 0.834106 0.38935 Vertex 27923 0.516554 0.716387 0.497113 Vertex 27924 0.539309 0.149932 0.437229 Vertex 27925 0.374653 0.360755 0.316779 Vertex 27926 0.470712 0.762632 0.484681 Vertex 27927 0.468705 0.757692 0.48249 Vertex 27928 0.400114 0.168855 0.622134 Vertex 27929 0.492585 0.309826 0.443211 Vertex 27930 0.49573 0.738378 0.503456 Vertex 27931 0.383886 0.174647 0.534651 Vertex 27932 0.559546 0.554912 0.509544 Vertex 27933 0.526948 0.579835 0.429245 Vertex 27934 0.459602 0.431584 0.38232 Vertex 27935 0.370732 0.218623 0.211569 Vertex 27936 0.439512 0.810042 0.372897 Vertex 27937 0.502458 0.763479 0.480689 Vertex 27938 0.397449 0.356864 0.320949 Vertex 27939 0.359064 0.201442 0.471349 Vertex 27940 0.46017 0.159758 0.513631 Vertex 27941 0.501173 0.16616 0.705857 Vertex 27942 0.511265 0.0464337 0.664398 Vertex 27943 0.482605 0.194275 0.475726 Vertex 27944 0.518947 0.147107 0.723489 Vertex 27945 0.365508 0.36361 0.271157 Vertex 27946 0.363903 0.355804 0.376782 Vertex 27947 0.467917 0.104725 0.650332 Vertex 27948 0.498123 0.244079 0.55127 Vertex 27949 0.497649 0.244547 0.555054 Vertex 27950 0.370341 0.427415 0.559484 Vertex 27951 0.466952 0.226275 0.760357 Vertex 27952 0.51149 0.18564 0.457804 Vertex 27953 0.590546 0.484385 0.28854 Vertex 27954 0.51566 0.107171 0.689842 Vertex 27955 0.380113 0.452634 0.576026 Vertex 27956 0.490796 0.792648 0.449127 Vertex 27957 0.467929 0.541272 0.421611 Vertex 27958 0.498359 0.242574 0.544867 Vertex 27959 0.497228 0.240531 0.546679 Vertex 27960 0.359728 0.189472 0.513815 Vertex 27961 0.35647 0.356603 0.426603 Vertex 27962 0.640758 0.51218 0.214513 Vertex 27963 0.565955 0.525506 0.451556 Vertex 27964 0.538805 0.433373 0.563494 Vertex 27965 0.446945 0.445023 0.398394 Vertex 27966 0.419701 0.386152 0.396327 Vertex 27967 0.430296 0.845324 0.440397 Vertex 27968 0.576521 0.508312 0.347897 Vertex 27969 0.579364 0.510498 0.345652 Vertex 27970 0.372444 0.441925 0.424649 Vertex 27971 0.398568 0.48779 0.57714 Vertex 27972 0.471873 0.341412 0.417411 Vertex 27973 0.420891 0.136594 0.677499 Vertex 27974 0.36831 0.0836458 0.480286 Vertex 27975 0.368404 0.084925 0.48079 Vertex 27976 0.623896 0.51966 0.288339 Vertex 27977 0.556052 0.480677 0.362378 Vertex 27978 0.610499 0.521627 0.212772 Vertex 27979 0.339087 0.933382 0.256972 Vertex 27980 0.386972 0.883673 0.382793 Vertex 27981 0.344874 0.085387 0.454085 Vertex 27982 0.46614 0.0636212 0.683641 Vertex 27983 0.547062 0.0470022 0.720948 Vertex 27984 0.56711 0.455465 0.323999 Vertex 27985 0.568673 0.45107 0.325089 Vertex 27986 0.402033 0.223042 0.739539 Vertex 27987 0.38985 0.255261 0.679477 Vertex 27988 0.389945 0.254064 0.683854 Vertex 27989 0.538166 0.0492943 0.720077 Vertex 27990 0.374967 0.388461 0.520288 Vertex 27991 0.441757 0.832223 0.452841 Vertex 27992 0.517182 0.65122 0.530558 Vertex 27993 0.441265 0.222538 0.466267 Vertex 27994 0.433791 0.786488 0.422943 Vertex 27995 0.371076 0.205765 0.566639 Vertex 27996 0.587715 0.505333 0.303963 Vertex 27997 0.36199 0.127331 0.473991 Vertex 27998 0.407909 0.233815 0.74789 Vertex 27999 0.455444 0.417092 0.386726 Vertex 28000 0.469694 0.134444 0.645795 Vertex 28001 0.642227 0.475732 0.224848 Vertex 28002 0.443166 0.446486 0.627553 Vertex 28003 0.402472 0.2619 0.684227 Vertex 28004 0.495759 0.410121 0.405371 Vertex 28005 0.529489 0.045486 0.655076 Vertex 28006 0.545362 0.476745 0.567598 Vertex 28007 0.557515 0.525079 0.451656 Vertex 28008 0.541648 0.553491 0.439841 Vertex 28009 0.53893 0.0199416 0.765895 Vertex 28010 0.520256 0.387135 0.46606 Vertex 28011 0.504353 0.176401 0.770686 Vertex 28012 0.473194 0.39821 0.386714 Vertex 28013 0.482368 0.113609 0.813596 Vertex 28014 0.371911 0.471953 0.493494 Vertex 28015 0.412356 0.16574 0.604935 Vertex 28016 0.387256 0.200518 0.65048 Vertex 28017 0.443758 0.496846 0.426153 Vertex 28018 0.441762 0.497107 0.428072 Vertex 28019 0.518425 0.321393 0.483443 Vertex 28020 0.467123 0.52823 0.419176 Vertex 28021 0.541607 0.0445266 0.711033 Vertex 28022 0.494995 0.640536 0.543327 Vertex 28023 0.455077 0.229882 0.681568 Vertex 28024 0.456226 0.228561 0.687775 Vertex 28025 0.523655 0.0287249 0.659672 Vertex 28026 0.525941 0.0287249 0.65818 Vertex 28027 0.53142 0.608696 0.536635 Vertex 28028 0.466022 0.511831 0.413497 Vertex 28029 0.437433 0.78037 0.424548 Vertex 28030 0.521316 0.483378 0.597141 Vertex 28031 0.517111 0.541053 0.405608 Vertex 28032 0.39649 0.200275 0.71682 Vertex 28033 0.451659 0.159888 0.798541 Vertex 28034 0.453472 0.158887 0.799269 Vertex 28035 0.452482 0.158259 0.798458 Vertex 28036 0.536928 0.0570412 0.71095 Vertex 28037 0.454632 0.762466 0.463952 Vertex 28038 0.450102 0.246175 0.735458 Vertex 28039 0.454514 0.605533 0.512304 Vertex 28040 0.378266 0.245376 0.597164 Vertex 28041 0.378354 0.248989 0.597715 Vertex 28042 0.405178 0.337331 0.206221 Vertex 28043 0.497062 0.180795 0.738479 Vertex 28044 0.532373 0.552116 0.428321 Vertex 28045 0.54853 0.486813 0.394082 Vertex 28046 0.502547 0.761654 0.435991 Vertex 28047 0.412208 0.528479 0.520016 Vertex 28048 0.46771 0.19206 0.679501 Vertex 28049 0.490915 0.401308 0.406922 Vertex 28050 0.404106 0.366405 0.358244 Vertex 28051 0.54169 0.652873 0.476383 Vertex 28052 0.539516 0.654922 0.490047 Vertex 28053 0.400932 0.260864 0.69079 Vertex 28054 0.606732 0.503497 0.201844 Vertex 28055 0.490062 0.403398 0.613025 Vertex 28056 0.623612 0.472605 0.217782 Vertex 28057 0.405451 0.285004 0.210782 Vertex 28058 0.389418 0.332457 0.213097 Vertex 28059 0.433364 0.831589 0.353595 Vertex 28060 0.401169 0.176241 0.486369 Vertex 28061 0.433666 0.818589 0.367791 Vertex 28062 0.383839 0.252679 0.222325 Vertex 28063 0.526237 0.532453 0.582281 Vertex 28064 0.529909 0.535936 0.578064 Vertex 28065 0.535915 0.537861 0.571803 Vertex 28066 0.513006 0.569772 0.569002 Vertex 28067 0.368997 0.291537 0.23606 Vertex 28068 0.450196 0.572354 0.456471 Vertex 28069 0.345051 0.900049 0.310573 Vertex 28070 0.503074 0.26662 0.57377 Vertex 28071 0.5449 0.0357433 0.721126 Vertex 28072 0.34225 0.105323 0.454487 Vertex 28073 0.545089 0.475057 0.567598 Vertex 28074 0.357181 0.405027 0.436399 Vertex 28075 0.401204 0.293071 0.233833 Vertex 28076 0.358365 0.285075 0.497166 Vertex 28077 0.483642 0.665903 0.41307 Vertex 28078 0.507865 0.615981 0.559514 Vertex 28079 0.304398 0.959086 0.223841 Vertex 28080 0.34074 0.942485 0.302085 Vertex 28081 0.536051 0.578668 0.538583 Vertex 28082 0.534908 0.577679 0.542729 Vertex 28083 0.455687 0.16959 0.638019 Vertex 28084 0.388405 0.199345 0.598983 Vertex 28085 0.327988 0.964115 0.259039 Vertex 28086 0.484631 0.113075 0.809468 Vertex 28087 0.460899 0.247698 0.619505 Vertex 28088 0.550313 0.453824 0.357089 Vertex 28089 0.428484 0.342928 0.647726 Vertex 28090 0.446678 0.170922 0.582109 Vertex 28091 0.364087 0.365174 0.360382 Vertex 28092 0.462717 0.484184 0.615222 Vertex 28093 0.389856 0.177952 0.549043 Vertex 28094 0.452453 0.183721 0.615335 Vertex 28095 0.542341 0.644433 0.481578 Vertex 28096 0.525189 0.335945 0.526341 Vertex 28097 0.559997 0.027801 0.74786 Vertex 28098 0.439085 0.553532 0.498078 Vertex 28099 0.544438 0.40177 0.507483 Vertex 28100 0.540629 0.632878 0.507572 Vertex 28101 0.40949 0.42321 0.353103 Vertex 28102 0.426488 0.237185 0.208561 Vertex 28103 0.426488 0.240004 0.211113 Vertex 28104 0.561359 0.494063 0.5324 Vertex 28105 0.370625 0.418371 0.315405 Vertex 28106 0.360119 0.0964032 0.473854 Vertex 28107 0.36106 0.0969244 0.470514 Vertex 28108 0.515346 0.0893552 0.723341 Vertex 28109 0.407488 0.407106 0.297815 Vertex 28110 0.334278 0.940365 0.25012 Vertex 28111 0.538391 0.542155 0.430086 Vertex 28112 0.522234 0.141433 0.720628 Vertex 28113 0.581567 0.510474 0.451508 Vertex 28114 0.473016 0.08332 0.733202 Vertex 28115 0.479691 0.594564 0.424264 Vertex 28116 0.612993 0.495158 0.229201 Vertex 28117 0.490873 0.355028 0.623852 Vertex 28118 0.520581 0.181192 0.459083 Vertex 28119 0.430746 0.160842 0.768542 Vertex 28120 0.426612 0.238423 0.210865 Vertex 28121 0.402667 0.859757 0.337207 Vertex 28122 0.576154 0.521721 0.461885 Vertex 28123 0.369778 0.288546 0.586391 Vertex 28124 0.315823 0.945541 0.270571 Vertex 28125 0.434815 0.471379 0.416949 Vertex 28126 0.602853 0.450519 0.318941 Vertex 28127 0.509749 0.436808 0.405507 Vertex 28128 0.347355 0.926843 0.269256 Vertex 28129 0.34594 0.929076 0.266111 Vertex 28130 0.365556 0.265531 0.199274 Vertex 28131 0.606389 0.495721 0.204344 Vertex 28132 0.416579 0.264553 0.675332 Vertex 28133 0.421714 0.830191 0.36865 Vertex 28134 0.595266 0.42732 0.195442 Vertex 28135 0.397159 0.258104 0.219435 Vertex 28136 0.55219 0.467713 0.364445 Vertex 28137 0.371662 0.378215 0.54896 Vertex 28138 0.48408 0.606261 0.418306 Vertex 28139 0.419286 0.169347 0.737573 Vertex 28140 0.602652 0.54222 0.269647 Vertex 28141 0.604665 0.444721 0.341696 Vertex 28142 0.656838 0.429221 0.197402 Vertex 28143 0.657478 0.433349 0.195442 Vertex 28144 0.342108 0.296447 0.216112 Vertex 28145 0.585731 0.491421 0.466019 Vertex 28146 0.415851 0.170691 0.530286 Vertex 28147 0.509376 0.122202 0.664914 Vertex 28148 0.506722 0.126786 0.662858 Vertex 28149 0.546143 0.571561 0.530297 Vertex 28150 0.547612 0.570009 0.530203 Vertex 28151 0.363264 0.324929 0.24993 Vertex 28152 0.36385 0.323371 0.24996 Vertex 28153 0.45006 0.237214 0.681574 Vertex 28154 0.365295 0.384955 0.501898 Vertex 28155 0.368126 0.384476 0.50345 Vertex 28156 0.460389 0.396576 0.389474 Vertex 28157 0.477749 0.280166 0.439379 Vertex 28158 0.474177 0.27705 0.437691 Vertex 28159 0.396389 0.288434 0.238369 Vertex 28160 0.347385 0.123985 0.458106 Vertex 28161 0.623091 0.506607 0.189105 Vertex 28162 0.478228 0.0617201 0.650095 Vertex 28163 0.389483 0.315204 0.250096 Vertex 28164 0.391994 0.316134 0.248189 Vertex 28165 0.355718 0.227407 0.540461 Vertex 28166 0.507137 0.0861747 0.799547 Vertex 28167 0.550277 0.562049 0.501472 Vertex 28168 0.564225 0.500631 0.392957 Vertex 28169 0.564042 0.501703 0.394876 Vertex 28170 0.490334 0.216515 0.5531 Vertex 28171 0.449112 0.180795 0.588351 Vertex 28172 0.344548 0.132283 0.462708 Vertex 28173 0.537852 0.0143625 0.732207 Vertex 28174 0.361884 0.331403 0.517445 Vertex 28175 0.370442 0.225079 0.205043 Vertex 28176 0.416206 0.159835 0.625688 Vertex 28177 0.488143 0.764545 0.489656 Vertex 28178 0.532563 0.499008 0.417382 Vertex 28179 0.6539 0.442464 0.225719 Vertex 28180 0.379527 0.205167 0.477118 Vertex 28181 0.660095 0.428362 0.20265 Vertex 28182 0.558469 0.0370996 0.74051 Vertex 28183 0.323718 0.94605 0.229414 Vertex 28184 0.380641 0.463549 0.569778 Vertex 28185 0.38019 0.45993 0.571869 Vertex 28186 0.512686 0.0497563 0.673211 Vertex 28187 0.48681 0.198474 0.555143 Vertex 28188 0.670839 0.457922 0.214673 Vertex 28189 0.471334 0.212511 0.586272 Vertex 28190 0.455248 0.129345 0.639239 Vertex 28191 0.456261 0.130227 0.643396 Vertex 28192 0.516429 0.123482 0.691909 Vertex 28193 0.358129 0.292041 0.505523 Vertex 28194 0.383004 0.401509 0.577987 Vertex 28195 0.476712 0.116055 0.814283 Vertex 28196 0.492863 0.202786 0.538625 Vertex 28197 0.570598 0.404589 0.383125 Vertex 28198 0.453098 0.591443 0.524096 Vertex 28199 0.409952 0.27384 0.22958 Vertex 28200 0.502203 0.684316 0.535657 Vertex 28201 0.501173 0.686454 0.535521 Vertex 28202 0.403709 0.314973 0.43961 Vertex 28203 0.430746 0.790581 0.41676 Vertex 28204 0.519385 0.328684 0.555143 Vertex 28205 0.450256 0.551702 0.441268 Vertex 28206 0.492887 0.171793 0.705969 Vertex 28207 0.371786 0.376859 0.552969 Vertex 28208 0.452642 0.0909069 0.662314 Vertex 28209 0.512414 0.193949 0.47206 Vertex 28210 0.548844 0.5627 0.455044 Vertex 28211 0.546286 0.559846 0.448624 Vertex 28212 0.490755 0.238612 0.483301 Vertex 28213 0.606211 0.491978 0.203793 Vertex 28214 0.41222 0.824879 0.387188 Vertex 28215 0.348694 0.142588 0.470017 Vertex 28216 0.516702 0.35947 0.47909 Vertex 28217 0.49894 0.700219 0.529551 Vertex 28218 0.612335 0.458414 0.341992 Vertex 28219 0.354385 0.22239 0.515828 Vertex 28220 0.555093 0.14549 0.420592 Vertex 28221 0.372645 0.354945 0.513216 Vertex 28222 0.453495 0.145378 0.652956 Vertex 28223 0.519545 0.0665589 0.644001 Vertex 28224 0.362689 0.914175 0.288475 Vertex 28225 0.471003 0.452681 0.61251 Vertex 28226 0.499443 0.186807 0.518411 Vertex 28227 0.492502 0.635762 0.402694 Vertex 28228 0.492318 0.67545 0.4054 Vertex 28229 0.470085 0.333783 0.419165 Vertex 28230 0.377898 0.239974 0.237226 Vertex 28231 0.454846 0.0842972 0.708741 Vertex 28232 0.366225 0.154356 0.473937 Vertex 28233 0.587146 0.482833 0.46192 Vertex 28234 0.408051 0.360122 0.323004 Vertex 28235 0.367403 0.352458 0.22852 Vertex 28236 0.481806 0.0599255 0.697382 Vertex 28237 0.663033 0.423151 0.225612 Vertex 28238 0.442757 0.139283 0.74991 Vertex 28239 0.394269 0.359529 0.37895 Vertex 28240 0.549223 0.0135451 0.725911 Vertex 28241 0.357779 0.340725 0.240034 Vertex 28242 0.382577 0.870999 0.372761 Vertex 28243 0.474923 0.2023 0.577927 Vertex 28244 0.439755 0.360945 0.41827 Vertex 28245 0.586015 0.489052 0.422908 Vertex 28246 0.510027 0.138999 0.679063 Vertex 28247 0.373978 0.381088 0.529841 Vertex 28248 0.440643 0.568878 0.496011 Vertex 28249 0.407654 0.173753 0.604941 Vertex 28250 0.418386 0.148848 0.635253 Vertex 28251 0.553517 0.0109332 0.730614 Vertex 28252 0.411995 0.176786 0.731336 Vertex 28253 0.413209 0.174825 0.731324 Vertex 28254 0.606661 0.506613 0.199854 Vertex 28255 0.606401 0.483828 0.200239 Vertex 28256 0.605962 0.4858 0.200885 Vertex 28257 0.619732 0.491563 0.246501 Vertex 28258 0.39479 0.281469 0.19357 Vertex 28259 0.593993 0.42212 0.381532 Vertex 28260 0.461396 0.235692 0.770633 Vertex 28261 0.370921 0.357273 0.488827 Vertex 28262 0.465204 0.737916 0.418401 Vertex 28263 0.569366 0.498416 0.343704 Vertex 28264 0.37457 0.261302 0.469732 Vertex 28265 0.391112 0.172948 0.538636 Vertex 28266 0.373859 0.0868854 0.479487 Vertex 28267 0.501007 0.180167 0.452243 Vertex 28268 0.494125 0.769277 0.48294 Vertex 28269 0.56904 0.529723 0.497634 Vertex 28270 0.545498 0.00252898 0.745829 Vertex 28271 0.32447 0.92788 0.287818 Vertex 28272 0.593033 0.443311 0.321861 Vertex 28273 0.546398 0.164324 0.437649 Vertex 28274 0.665562 0.408083 0.22406 Vertex 28275 0.665041 0.411193 0.222532 Vertex 28276 0.450623 0.151063 0.645387 Vertex 28277 0.447158 0.7597 0.43701 Vertex 28278 0.589503 0.505896 0.380798 Vertex 28279 0.414826 0.207139 0.768454 Vertex 28280 0.489428 0.383078 0.427569 Vertex 28281 0.489487 0.386371 0.425922 Vertex 28282 0.483742 0.47081 0.385151 Vertex 28283 0.485039 0.473238 0.384772 Vertex 28284 0.385391 0.236397 0.646322 Vertex 28285 0.387546 0.170513 0.528284 Vertex 28286 0.446613 0.190834 0.800987 Vertex 28287 0.528381 0.605705 0.435203 Vertex 28288 0.361013 0.350592 0.244132 Vertex 28289 0.473603 0.738627 0.487713 Vertex 28290 0.555412 0.448091 0.344575 Vertex 28291 0.5545 0.45139 0.343787 Vertex 28292 0.631015 0.520288 0.238044 Vertex 28293 0.534156 0.0570471 0.79125 Vertex 28294 0.350944 0.912996 0.331018 Vertex 28295 0.375435 0.388053 0.524369 Vertex 28296 0.471263 0.107313 0.64637 Vertex 28297 0.522636 0.177384 0.454138 Vertex 28298 0.432932 0.469691 0.414634 Vertex 28299 0.329179 0.27599 0.219056 Vertex 28300 0.433719 0.539306 0.493535 Vertex 28301 0.431854 0.538779 0.493441 Vertex 28302 0.433719 0.544133 0.499867 Vertex 28303 0.547387 0.564317 0.53442 Vertex 28304 0.458914 0.784782 0.382035 Vertex 28305 0.424403 0.201021 0.781566 Vertex 28306 0.43353 0.556256 0.544174 Vertex 28307 0.414613 0.400514 0.618326 Vertex 28308 0.377543 0.313735 0.197236 Vertex 28309 0.378153 0.311763 0.196016 Vertex 28310 0.469155 0.742868 0.482804 Vertex 28311 0.533623 0.114041 0.432183 Vertex 28312 0.450256 0.805067 0.463656 Vertex 28313 0.543946 0.475685 0.39471 Vertex 28314 0.546055 0.609602 0.498907 Vertex 28315 0.373048 0.312142 0.249303 Vertex 28316 0.48161 0.0818453 0.725194 Vertex 28317 0.498188 0.543807 0.383516 Vertex 28318 0.464719 0.747564 0.407852 Vertex 28319 0.609178 0.490444 0.218949 Vertex 28320 0.436639 0.30847 0.423056 Vertex 28321 0.36629 0.422114 0.546987 Vertex 28322 0.606324 0.504759 0.211445 Vertex 28323 0.447093 0.168867 0.793453 Vertex 28324 0.504584 0.732171 0.499387 Vertex 28325 0.467319 0.450892 0.614322 Vertex 28326 0.57886 0.511173 0.368597 Vertex 28327 0.442532 0.553781 0.459356 Vertex 28328 0.49082 0.212582 0.500323 Vertex 28329 0.323173 0.940146 0.236788 Vertex 28330 0.519195 0.0722742 0.782958 Vertex 28331 0.424723 0.379933 0.638208 Vertex 28332 0.425155 0.378748 0.639328 Vertex 28333 0.352662 0.127071 0.456868 Vertex 28334 0.440282 0.483603 0.597182 Vertex 28335 0.517057 0.390754 0.441102 Vertex 28336 0.530123 0.39872 0.513732 Vertex 28337 0.50876 0.286775 0.475323 Vertex 28338 0.519521 0.0902021 0.683594 Vertex 28339 0.435609 0.195377 0.474453 Vertex 28340 0.352769 0.1694 0.476834 Vertex 28341 0.476564 0.244718 0.602737 Vertex 28342 0.522429 0.0295126 0.764373 Vertex 28343 0.467929 0.172687 0.490556 Vertex 28344 0.460395 0.0711009 0.689866 Vertex 28345 0.356524 0.378879 0.401799 Vertex 28346 0.5355 0.503024 0.419111 Vertex 28347 0.408821 0.439639 0.383392 Vertex 28348 0.506746 0.633233 0.555303 Vertex 28349 0.48254 0.284667 0.615388 Vertex 28350 0.398414 0.324491 0.218049 Vertex 28351 0.529986 0.1418 0.789064 Vertex 28352 0.494901 0.503533 0.39304 Vertex 28353 0.420707 0.404956 0.32272 Vertex 28354 0.678017 0.475223 0.198759 Vertex 28355 0.501279 0.13971 0.663528 Vertex 28356 0.543431 0.155132 0.426793 Vertex 28357 0.44393 0.128474 0.636526 Vertex 28358 0.484945 0.197266 0.561362 Vertex 28359 0.461017 0.729198 0.428398 Vertex 28360 0.554986 0.150643 0.423547 Vertex 28361 0.361546 0.396653 0.383107 Vertex 28362 0.362115 0.39821 0.387271 Vertex 28363 0.539078 0.0514087 0.792766 Vertex 28364 0.356316 0.326724 0.240513 Vertex 28365 0.498436 0.404743 0.602732 Vertex 28366 0.432624 0.461849 0.603537 Vertex 28367 0.616617 0.485315 0.271157 Vertex 28368 0.375227 0.34663 0.382077 Vertex 28369 0.347699 0.913766 0.275741 Vertex 28370 0.534073 0.666501 0.49918 Vertex 28371 0.531781 0.665909 0.505416 Vertex 28372 0.438772 0.450744 0.405649 Vertex 28373 0.333396 0.914921 0.295831 Vertex 28374 0.518443 0.736655 0.478504 Vertex 28375 0.453454 0.808266 0.374567 Vertex 28376 0.517093 0.292621 0.52842 Vertex 28377 0.406511 0.277962 0.439011 Vertex 28378 0.403407 0.274278 0.441386 Vertex 28379 0.373782 0.362923 0.507489 Vertex 28380 0.358839 0.144288 0.475702 Vertex 28381 0.468924 0.219192 0.776935 Vertex 28382 0.59802 0.517025 0.258009 Vertex 28383 0.441768 0.488513 0.421587 Vertex 28384 0.301348 0.985525 0.217693 Vertex 28385 0.366876 0.405827 0.385204 Vertex 28386 0.56358 0.495265 0.35623 Vertex 28387 0.448698 0.760422 0.424525 Vertex 28388 0.449871 0.762507 0.420183 Vertex 28389 0.417166 0.165361 0.584241 Vertex 28390 0.498626 0.642917 0.550849 Vertex 28391 0.393984 0.354904 0.422837 Vertex 28392 0.354729 0.251002 0.52932 Vertex 28393 0.529228 0.402279 0.457976 Vertex 28394 0.593128 0.444774 0.206926 Vertex 28395 0.511075 0.329756 0.458296 Vertex 28396 0.539996 0.0683001 0.783065 Vertex 28397 0.372758 0.343277 0.272762 Vertex 28398 0.494995 0.251002 0.474423 Vertex 28399 0.361747 0.3742 0.35411 Vertex 28400 0.360302 0.263233 0.496568 Vertex 28401 0.420334 0.392844 0.310265 Vertex 28402 0.418415 0.151283 0.702274 Vertex 28403 0.420559 0.150098 0.702297 Vertex 28404 0.39726 0.168186 0.524126 Vertex 28405 0.493734 0.36021 0.619416 Vertex 28406 0.502979 0.175015 0.774785 Vertex 28407 0.495108 0.456691 0.386904 Vertex 28408 0.549407 0.574178 0.477959 Vertex 28409 0.494995 0.560414 0.378855 Vertex 28410 0.539587 0.0651789 0.797996 Vertex 28411 0.508665 0.0784457 0.778943 Vertex 28412 0.39367 0.851169 0.376527 Vertex 28413 0.678154 0.47604 0.216035 Vertex 28414 0.389702 0.23478 0.706408 Vertex 28415 0.596966 0.427829 0.198492 Vertex 28416 0.548299 0.0679744 0.747807 Vertex 28417 0.505401 0.431016 0.403114 Vertex 28418 0.375831 0.378997 0.584288 Vertex 28419 0.376222 0.376859 0.58629 Vertex 28420 0.373883 0.375212 0.575926 Vertex 28421 0.43539 0.117962 0.717122 Vertex 28422 0.417302 0.405317 0.370036 Vertex 28423 0.410603 0.277228 0.227703 Vertex 28424 0.53508 0.657368 0.501762 Vertex 28425 0.396857 0.883791 0.392915 Vertex 28426 0.393599 0.881831 0.392862 Vertex 28427 0.447117 0.560627 0.453492 Vertex 28428 0.44791 0.557068 0.449483 Vertex 28429 0.4265 0.835575 0.436885 Vertex 28430 0.51672 0.153906 0.449264 Vertex 28431 0.5069 0.659021 0.540786 Vertex 28432 0.479638 0.206991 0.485593 Vertex 28433 0.535163 0.0139538 0.758397 Vertex 28434 0.430237 0.26485 0.437406 Vertex 28435 0.660883 0.498114 0.200666 Vertex 28436 0.600514 0.436885 0.352031 Vertex 28437 0.370513 0.377137 0.493855 Vertex 28438 0.598298 0.447771 0.319006 Vertex 28439 0.52757 0.0743116 0.708907 Vertex 28440 0.599139 0.520797 0.204172 Vertex 28441 0.486467 0.469252 0.386714 Vertex 28442 0.581016 0.450614 0.477118 Vertex 28443 0.536051 0.0673229 0.708546 Vertex 28444 0.359627 0.411785 0.434913 Vertex 28445 0.40628 0.223492 0.468032 Vertex 28446 0.382317 0.0788543 0.465426 Vertex 28447 0.530371 0.0362822 0.651268 Vertex 28448 0.372361 0.370214 0.48612 Vertex 28449 0.431303 0.511943 0.454215 Vertex 28450 0.444102 0.522402 0.581463 Vertex 28451 0.486046 0.274752 0.448446 Vertex 28452 0.417663 0.148724 0.641638 Vertex 28453 0.356263 0.266697 0.550766 Vertex 28454 0.514102 0.0749098 0.6819 Vertex 28455 0.371478 0.361786 0.482667 Vertex 28456 0.422763 0.155115 0.613209 Vertex 28457 0.425345 0.152301 0.617372 Vertex 28458 0.36751 0.236208 0.578366 Vertex 28459 0.390472 0.314884 0.201862 Vertex 28460 0.533854 0.0905279 0.754411 Vertex 28461 0.390253 0.481127 0.443365 Vertex 28462 0.458263 0.235757 0.758267 Vertex 28463 0.521316 0.702576 0.499132 Vertex 28464 0.469303 0.113064 0.643414 Vertex 28465 0.43305 0.240875 0.452799 Vertex 28466 0.64138 0.478065 0.226915 Vertex 28467 0.502067 0.166788 0.72292 Vertex 28468 0.346645 0.127491 0.472261 Vertex 28469 0.429657 0.537245 0.564596 Vertex 28470 0.625981 0.518843 0.210865 Vertex 28471 0.601888 0.527703 0.250446 Vertex 28472 0.474189 0.321731 0.631622 Vertex 28473 0.588111 0.424803 0.347897 Vertex 28474 0.456658 0.661686 0.449542 Vertex 28475 0.37258 0.276043 0.19466 Vertex 28476 0.45237 0.232642 0.64634 Vertex 28477 0.50642 0.0429215 0.756099 Vertex 28478 0.593448 0.447333 0.207358 Vertex 28479 0.498602 0.158502 0.790409 Vertex 28480 0.488279 0.72388 0.512162 Vertex 28481 0.606869 0.504078 0.19713 Vertex 28482 0.3851 0.0734706 0.474263 Vertex 28483 0.470718 0.599972 0.4313 Vertex 28484 0.494604 0.391997 0.609045 Vertex 28485 0.422911 0.333327 0.647353 Vertex 28486 0.436705 0.0958287 0.685779 Vertex 28487 0.532983 0.685471 0.48294 Vertex 28488 0.412428 0.378701 0.387763 Vertex 28489 0.681974 0.473339 0.214815 Vertex 28490 0.532107 0.530197 0.578016 Vertex 28491 0.462361 0.125916 0.809515 Vertex 28492 0.430344 0.791966 0.422292 Vertex 28493 0.479786 0.172675 0.695326 Vertex 28494 0.430231 0.508022 0.450792 Vertex 28495 0.36443 0.193322 0.53378 Vertex 28496 0.347438 0.936746 0.313066 Vertex 28497 0.59295 0.43865 0.208318 Vertex 28498 0.55026 0.0283399 0.719757 Vertex 28499 0.550177 0.0311177 0.719823 Vertex 28500 0.549727 0.0267349 0.719053 Vertex 28501 0.392054 0.348146 0.287741 Vertex 28502 0.419748 0.810972 0.411945 Vertex 28503 0.419233 0.813063 0.412448 Vertex 28504 0.425623 0.136375 0.69371 Vertex 28505 0.355742 0.213844 0.536226 Vertex 28506 0.356127 0.21594 0.538625 Vertex 28507 0.415152 0.388687 0.367791 Vertex 28508 0.447774 0.101491 0.728849 Vertex 28509 0.356577 0.18259 0.499233 Vertex 28510 0.478702 0.41734 0.617212 Vertex 28511 0.383335 0.215626 0.660833 Vertex 28512 0.581336 0.457567 0.48445 Vertex 28513 0.435212 0.183786 0.793453 Vertex 28514 0.435165 0.256078 0.702297 Vertex 28515 0.435846 0.255344 0.700219 Vertex 28516 0.346645 0.932695 0.316874 Vertex 28517 0.552972 0.0371825 0.726409 Vertex 28518 0.529175 0.0491581 0.657658 Vertex 28519 0.456788 0.14202 0.793412 Vertex 28520 0.45632 0.142493 0.791895 Vertex 28521 0.528606 0.639926 0.439171 Vertex 28522 0.528239 0.639109 0.438289 Vertex 28523 0.355807 0.419526 0.468666 Vertex 28524 0.519586 0.103285 0.79642 Vertex 28525 0.395986 0.212896 0.727102 Vertex 28526 0.373539 0.355531 0.472848 Vertex 28527 0.373439 0.355069 0.47495 Vertex 28528 0.484838 0.411045 0.382539 Vertex 28529 0.509684 0.0791031 0.727925 Vertex 28530 0.322936 0.94309 0.282623 Vertex 28531 0.480497 0.447356 0.377054 Vertex 28532 0.35753 0.357652 0.434919 Vertex 28533 0.539344 0.638102 0.453617 Vertex 28534 0.516145 0.359008 0.452018 Vertex 28535 0.514789 0.355798 0.451834 Vertex 28536 0.398414 0.847166 0.393312 Vertex 28537 0.388257 0.181968 0.48647 Vertex 28538 0.596249 0.461097 0.400153 Vertex 28539 0.422674 0.171899 0.499132 Vertex 28540 0.420168 0.173303 0.496349 Vertex 28541 0.347758 0.163779 0.466143 Vertex 28542 0.354557 0.308138 0.527715 Vertex 28543 0.503808 0.146385 0.700414 Vertex 28544 0.390016 0.431039 0.385844 Vertex 28545 0.393321 0.43419 0.386317 Vertex 28546 0.532918 0.540016 0.426349 Vertex 28547 0.636002 0.44706 0.197539 Vertex 28548 0.436675 0.393306 0.419259 Vertex 28549 0.438695 0.391216 0.4174 Vertex 28550 0.469386 0.387591 0.626085 Vertex 28551 0.584807 0.477136 0.300688 Vertex 28552 0.552801 0.56289 0.517854 Vertex 28553 0.540179 0.167428 0.439094 Vertex 28554 0.381245 0.37465 0.607227 Vertex 28555 0.367107 0.29865 0.487358 Vertex 28556 0.482226 0.380182 0.413982 Vertex 28557 0.494006 0.576844 0.391529 Vertex 28558 0.496056 0.578443 0.394858 Vertex 28559 0.498069 0.579148 0.395717 Vertex 28560 0.421448 0.259709 0.223403 Vertex 28561 0.534032 0.0781732 0.792979 Vertex 28562 0.484933 0.248965 0.46606 Vertex 28563 0.46842 0.0851679 0.729909 Vertex 28564 0.57109 0.503563 0.360447 Vertex 28565 0.531053 0.13644 0.455636 Vertex 28566 0.637684 0.512133 0.206381 Vertex 28567 0.521861 0.605669 0.547823 Vertex 28568 0.518011 0.381455 0.530286 Vertex 28569 0.553576 0.0342152 0.78079 Vertex 28570 0.467526 0.1634 0.664724 Vertex 28571 0.487841 0.0606303 0.692987 Vertex 28572 0.376649 0.392761 0.557257 Vertex 28573 0.376039 0.392797 0.553082 Vertex 28574 0.498028 0.205167 0.515118 Vertex 28575 0.466241 0.202081 0.481471 Vertex 28576 0.463931 0.262498 0.441333 Vertex 28577 0.531378 0.164378 0.455547 Vertex 28578 0.532705 0.168109 0.453711 Vertex 28579 0.363423 0.347092 0.558015 Vertex 28580 0.388701 0.349792 0.414515 Vertex 28581 0.493189 0.344154 0.43788 Vertex 28582 0.509524 0.13522 0.67529 Vertex 28583 0.513439 0.124186 0.706431 Vertex 28584 0.594638 0.465154 0.415765 Vertex 28585 0.594271 0.468796 0.424862 Vertex 28586 0.540357 0.659939 0.480091 Vertex 28587 0.511152 0.639618 0.421942 Vertex 28588 0.515026 0.642265 0.423885 Vertex 28589 0.510945 0.641626 0.420171 Vertex 28590 0.388441 0.429109 0.384564 Vertex 28591 0.523898 0.397802 0.48477 Vertex 28592 0.539936 0.606267 0.45261 Vertex 28593 0.399226 0.349248 0.625451 Vertex 28594 0.469931 0.0631356 0.693923 Vertex 28595 0.481243 0.36746 0.420006 Vertex 28596 0.454514 0.735766 0.455725 Vertex 28597 0.389323 0.262741 0.617372 Vertex 28598 0.477885 0.568244 0.414213 Vertex 28599 0.533475 0.502639 0.418555 Vertex 28600 0.593537 0.519643 0.233525 Vertex 28601 0.513101 0.443009 0.411631 Vertex 28602 0.497293 0.683842 0.534781 Vertex 28603 0.398906 0.404707 0.285686 Vertex 28604 0.540268 0.552845 0.559277 Vertex 28605 0.460437 0.21446 0.607251 Vertex 28606 0.42069 0.406235 0.344166 Vertex 28607 0.546149 0.448097 0.375645 Vertex 28608 0.481669 0.0728961 0.751651 Vertex 28609 0.510732 0.273514 0.52415 Vertex 28610 0.56583 0.417192 0.486801 Vertex 28611 0.561643 0.408628 0.484705 Vertex 28612 0.372876 0.375988 0.49546 Vertex 28613 0.4213 0.475021 0.596838 Vertex 28614 0.400955 0.508662 0.484189 Vertex 28615 0.324837 0.266893 0.227649 Vertex 28616 0.354202 0.384576 0.418815 Vertex 28617 0.487568 0.457905 0.38428 Vertex 28618 0.543016 0.0562771 0.718152 Vertex 28619 0.545687 0.0536416 0.719509 Vertex 28620 0.369263 0.419532 0.358244 Vertex 28621 0.455616 0.192398 0.613025 Vertex 28622 0.405374 0.247887 0.218019 Vertex 28623 0.405178 0.249901 0.219298 Vertex 28624 0.437812 0.545092 0.486375 Vertex 28625 0.437587 0.542457 0.48676 Vertex 28626 0.451055 0.0930569 0.731336 Vertex 28627 0.452684 0.76365 0.416162 Vertex 28628 0.543022 0.502739 0.571756 Vertex 28629 0.470393 0.566017 0.566775 Vertex 28630 0.483203 0.341897 0.428398 Vertex 28631 0.516471 0.121101 0.708196 Vertex 28632 0.411486 0.821935 0.401266 Vertex 28633 0.650252 0.421865 0.205481 Vertex 28634 0.571202 0.504925 0.376906 Vertex 28635 0.437184 0.159657 0.776917 Vertex 28636 0.365248 0.455553 0.48766 Vertex 28637 0.439476 0.815355 0.366026 Vertex 28638 0.573749 0.518742 0.447392 Vertex 28639 0.596285 0.502775 0.383338 Vertex 28640 0.44682 0.130743 0.749691 Vertex 28641 0.636002 0.482099 0.231813 Vertex 28642 0.615782 0.473375 0.324668 Vertex 28643 0.459963 0.627648 0.510605 Vertex 28644 0.449912 0.251127 0.749957 Vertex 28645 0.6633 0.430234 0.212985 Vertex 28646 0.471619 0.347465 0.417204 Vertex 28647 0.410479 0.430441 0.606871 Vertex 28648 0.512639 0.171645 0.758278 Vertex 28649 0.511603 0.172729 0.756105 Vertex 28650 0.513806 0.40742 0.44324 Vertex 28651 0.421702 0.545294 0.538601 Vertex 28652 0.475391 0.526051 0.405714 Vertex 28653 0.49984 0.267651 0.468181 Vertex 28654 0.48527 0.312817 0.6275 Vertex 28655 0.453519 0.1296 0.802627 Vertex 28656 0.454419 0.12745 0.803676 Vertex 28657 0.424539 0.864501 0.40906 Vertex 28658 0.45914 0.332646 0.415753 Vertex 28659 0.454952 0.228141 0.648354 Vertex 28660 0.450534 0.235621 0.6525 Vertex 28661 0.510228 0.0831246 0.795514 Vertex 28662 0.565629 0.488063 0.339055 Vertex 28663 0.420891 0.261178 0.731289 Vertex 28664 0.441928 0.570802 0.483088 Vertex 28665 0.601201 0.438709 0.347879 Vertex 28666 0.472412 0.109486 0.787169 Vertex 28667 0.379646 0.902069 0.365535 Vertex 28668 0.399593 0.260568 0.449429 Vertex 28669 0.402087 0.272046 0.195851 Vertex 28670 0.496233 0.629253 0.549664 Vertex 28671 0.419831 0.384523 0.419573 Vertex 28672 0.530259 0.110422 0.796438 Vertex 28673 0.604393 0.472771 0.209668 Vertex 28674 0.60537 0.475921 0.213293 Vertex 28675 0.44069 0.520335 0.438182 Vertex 28676 0.396626 0.260106 0.222651 Vertex 28677 0.402975 0.428925 0.374366 Vertex 28678 0.404835 0.430198 0.376279 Vertex 28679 0.536649 0.12578 0.449998 Vertex 28680 0.461834 0.655023 0.501851 Vertex 28681 0.365064 0.371309 0.262901 Vertex 28682 0.36478 0.37141 0.258767 Vertex 28683 0.420512 0.842937 0.430737 Vertex 28684 0.341658 0.12665 0.467529 Vertex 28685 0.366059 0.448274 0.536528 Vertex 28686 0.525165 0.332309 0.522438 Vertex 28687 0.52484 0.330544 0.530327 Vertex 28688 0.507889 0.105382 0.79799 Vertex 28689 0.479342 0.331811 0.427296 Vertex 28690 0.376732 0.480701 0.500512 Vertex 28691 0.512704 0.166676 0.467197 Vertex 28692 0.410846 0.463709 0.405335 Vertex 28693 0.482481 0.171888 0.530286 Vertex 28694 0.520688 0.37568 0.524096 Vertex 28695 0.573536 0.474648 0.315251 Vertex 28696 0.69084 0.445639 0.209177 Vertex 28697 0.691971 0.447037 0.205161 Vertex 28698 0.403692 0.386513 0.254497 Vertex 28699 0.603872 0.477201 0.200121 Vertex 28700 0.543851 0.623781 0.461103 Vertex 28701 0.373391 0.173694 0.487613 Vertex 28702 0.4101 0.824517 0.39176 Vertex 28703 0.374759 0.360809 0.308506 Vertex 28704 0.653438 0.501519 0.219381 Vertex 28705 0.491554 0.370575 0.433734 Vertex 28706 0.473697 0.168417 0.797451 Vertex 28707 0.348907 0.0852745 0.443128 Vertex 28708 0.51945 0.389587 0.542759 Vertex 28709 0.520184 0.365399 0.455737 Vertex 28710 0.481545 0.209319 0.764509 Vertex 28711 0.49358 0.593166 0.40052 Vertex 28712 0.381031 0.411809 0.571892 Vertex 28713 0.475545 0.591858 0.427474 Vertex 28714 0.484672 0.591769 0.407947 Vertex 28715 0.407435 0.244896 0.45614 Vertex 28716 0.446856 0.60333 0.49193 Vertex 28717 0.486905 0.203811 0.557234 Vertex 28718 0.382453 0.312403 0.249303 Vertex 28719 0.420091 0.851033 0.348507 Vertex 28720 0.402803 0.896194 0.36207 Vertex 28721 0.558581 0.00310347 0.745823 Vertex 28722 0.398142 0.322039 0.22406 Vertex 28723 0.488617 0.374431 0.430589 Vertex 28724 0.357915 0.338841 0.244245 Vertex 28725 0.550414 0.572248 0.464769 Vertex 28726 0.495161 0.573782 0.390469 Vertex 28727 0.363423 0.250517 0.568404 Vertex 28728 0.451387 0.167848 0.799465 Vertex 28729 0.524573 0.346742 0.512026 Vertex 28730 0.582621 0.504013 0.315595 Vertex 28731 0.361747 0.441505 0.517854 Vertex 28732 0.602977 0.52935 0.241929 Vertex 28733 0.370365 0.240383 0.480547 Vertex 28734 0.485069 0.1944 0.785185 Vertex 28735 0.492478 0.629235 0.402297 Vertex 28736 0.436989 0.43332 0.62673 Vertex 28737 0.58441 0.485984 0.297833 Vertex 28738 0.531911 0.47954 0.405862 Vertex 28739 0.444955 0.193091 0.473635 Vertex 28740 0.372965 0.220009 0.48615 Vertex 28741 0.468112 0.287634 0.630645 Vertex 28742 0.558119 0.495721 0.39474 Vertex 28743 0.587028 0.502005 0.305284 Vertex 28744 0.382269 0.305615 0.243623 Vertex 28745 0.58913 0.484811 0.447285 Vertex 28746 0.410236 0.52534 0.513732 Vertex 28747 0.510228 0.717051 0.425697 Vertex 28748 0.460614 0.21321 0.615542 Vertex 28749 0.531775 0.548444 0.427841 Vertex 28750 0.533475 0.546745 0.429434 Vertex 28751 0.359651 0.345439 0.240034 Vertex 28752 0.367143 0.440717 0.547005 Vertex 28753 0.491667 0.149772 0.658274 Vertex 28754 0.385835 0.322998 0.208253 Vertex 28755 0.349452 0.911889 0.32914 Vertex 28756 0.474213 0.459812 0.380324 Vertex 28757 0.622125 0.496041 0.342087 Vertex 28758 0.582384 0.429671 0.443228 Vertex 28759 0.44335 0.579675 0.482342 Vertex 28760 0.686777 0.458491 0.21568 Vertex 28761 0.403253 0.250434 0.724217 Vertex 28762 0.401838 0.248189 0.723572 Vertex 28763 0.406108 0.264553 0.662876 Vertex 28764 0.423645 0.148357 0.704364 Vertex 28765 0.496695 0.277595 0.457532 Vertex 28766 0.554856 0.155541 0.432739 Vertex 28767 0.45975 0.177858 0.801774 Vertex 28768 0.593726 0.471456 0.429583 Vertex 28769 0.592559 0.475602 0.426195 Vertex 28770 0.43953 0.251755 0.702297 Vertex 28771 0.489854 0.241728 0.478344 Vertex 28772 0.435834 0.518037 0.449589 Vertex 28773 0.517916 0.513625 0.407538 Vertex 28774 0.572606 0.51847 0.493002 Vertex 28775 0.34607 0.905255 0.323004 Vertex 28776 0.553671 0.0305965 0.781246 Vertex 28777 0.555916 0.0297318 0.780097 Vertex 28778 0.367759 0.285241 0.23385 Vertex 28779 0.561608 0.439361 0.341939 Vertex 28780 0.361072 0.317419 0.50961 Vertex 28781 0.410852 0.385773 0.621862 Vertex 28782 0.393493 0.859147 0.339819 Vertex 28783 0.425623 0.204231 0.784747 Vertex 28784 0.508298 0.695486 0.420645 Vertex 28785 0.595461 0.526963 0.279117 Vertex 28786 0.378017 0.206843 0.574172 Vertex 28787 0.508055 0.391328 0.447795 Vertex 28788 0.5355 0.128119 0.434291 Vertex 28789 0.453063 0.492641 0.606558 Vertex 28790 0.486443 0.744336 0.399945 Vertex 28791 0.467159 0.214081 0.696061 Vertex 28792 0.380996 0.083705 0.469999 Vertex 28793 0.374967 0.420325 0.567735 Vertex 28794 0.376524 0.422138 0.571863 Vertex 28795 0.579121 0.507886 0.472261 Vertex 28796 0.378218 0.352505 0.360329 Vertex 28797 0.492152 0.034843 0.665062 Vertex 28798 0.488196 0.0380827 0.66653 Vertex 28799 0.498235 0.255125 0.47649 Vertex 28800 0.428028 0.868712 0.392086 Vertex 28801 0.597167 0.527857 0.272697 Vertex 28802 0.391118 0.192356 0.618687 Vertex 28803 0.398865 0.336786 0.250446 Vertex 28804 0.606282 0.477372 0.286325 Vertex 28805 0.49066 0.198243 0.744354 Vertex 28806 0.418392 0.155197 0.617372 Vertex 28807 0.505129 0.0862576 0.789319 Vertex 28808 0.553073 0.545779 0.464467 Vertex 28809 0.649766 0.504895 0.197266 Vertex 28810 0.478513 0.580344 0.562742 Vertex 28811 0.354154 0.935721 0.284513 Vertex 28812 0.409123 0.362277 0.312657 Vertex 28813 0.550165 0.585141 0.47312 Vertex 28814 0.503962 0.0827751 0.706135 Vertex 28815 0.530596 0.0263262 0.766464 Vertex 28816 0.373024 0.368792 0.485504 Vertex 28817 0.371016 0.365434 0.485279 Vertex 28818 0.506243 0.672927 0.417802 Vertex 28819 0.457055 0.137832 0.800169 Vertex 28820 0.454555 0.136115 0.800886 Vertex 28821 0.475072 0.0750224 0.709381 Vertex 28822 0.43353 0.46548 0.602039 Vertex 28823 0.355659 0.322862 0.22422 Vertex 28824 0.38744 0.444857 0.58892 Vertex 28825 0.387523 0.442571 0.590685 Vertex 28826 0.396484 0.245281 0.460682 Vertex 28827 0.496138 0.655497 0.541521 Vertex 28828 0.44239 0.571993 0.509598 Vertex 28829 0.442207 0.571454 0.509598 Vertex 28830 0.663531 0.46237 0.217836 Vertex 28831 0.430302 0.107419 0.669024 Vertex 28832 0.380078 0.236995 0.235438 Vertex 28833 0.434472 0.140835 0.615276 Vertex 28834 0.484423 0.114207 0.810552 Vertex 28835 0.499864 0.428564 0.399051 Vertex 28836 0.494764 0.260295 0.468252 Vertex 28837 0.493213 0.262374 0.463762 Vertex 28838 0.428223 0.166172 0.567628 Vertex 28839 0.433169 0.258797 0.71682 Vertex 28840 0.569864 0.501928 0.364569 Vertex 28841 0.494705 0.554912 0.377315 Vertex 28842 0.531645 0.107064 0.777107 Vertex 28843 0.55546 0.404411 0.399566 Vertex 28844 0.431783 0.48888 0.59322 Vertex 28845 0.363512 0.302488 0.57435 Vertex 28846 0.361818 0.303311 0.5705 Vertex 28847 0.542696 0.566449 0.544885 Vertex 28848 0.345016 0.92541 0.267444 Vertex 28849 0.360261 0.291359 0.229177 Vertex 28850 0.480793 0.419265 0.374893 Vertex 28851 0.436272 0.243688 0.770515 Vertex 28852 0.49724 0.497166 0.60301 Vertex 28853 0.641706 0.427895 0.196698 Vertex 28854 0.470795 0.0556256 0.66566 Vertex 28855 0.587484 0.424069 0.412188 Vertex 28856 0.544894 0.0574261 0.797398 Vertex 28857 0.362511 0.422499 0.538678 Vertex 28858 0.494681 0.752237 0.494856 Vertex 28859 0.395921 0.505499 0.489863 Vertex 28860 0.40519 0.167712 0.621127 Vertex 28861 0.526587 0.536048 0.413959 Vertex 28862 0.37595 0.369331 0.592592 Vertex 28863 0.545717 0.624562 0.494909 Vertex 28864 0.422081 0.838619 0.348904 Vertex 28865 0.416615 0.380815 0.358232 Vertex 28866 0.417136 0.380395 0.356177 Vertex 28867 0.360142 0.318645 0.564661 Vertex 28868 0.362884 0.292893 0.570838 Vertex 28869 0.358893 0.406585 0.343763 Vertex 28870 0.486467 0.0361223 0.655917 Vertex 28871 0.427418 0.17171 0.505369 Vertex 28872 0.377442 0.34233 0.417151 Vertex 28873 0.636399 0.515254 0.213151 Vertex 28874 0.664117 0.45415 0.199475 Vertex 28875 0.527967 0.123209 0.7969 Vertex 28876 0.407529 0.889714 0.377345 Vertex 28877 0.685634 0.471408 0.203331 Vertex 28878 0.460028 0.0990684 0.662284 Vertex 28879 0.399747 0.173984 0.609075 Vertex 28880 0.546357 0.488128 0.399578 Vertex 28881 0.353035 0.222076 0.52415 Vertex 28882 0.577445 0.416612 0.357373 Vertex 28883 0.509524 0.0295659 0.727102 Vertex 28884 0.507836 0.0319587 0.729092 Vertex 28885 0.504845 0.0405288 0.674733 Vertex 28886 0.438031 0.544613 0.490462 Vertex 28887 0.323007 0.927033 0.265164 Vertex 28888 0.321698 0.928342 0.265146 Vertex 28889 0.53229 0.6889 0.474399 Vertex 28890 0.531817 0.690464 0.476437 Vertex 28891 0.450072 0.619824 0.48766 Vertex 28892 0.539528 0.515141 0.423464 Vertex 28893 0.484441 0.178864 0.474832 Vertex 28894 0.448029 0.193037 0.801176 Vertex 28895 0.488303 0.769075 0.48721 Vertex 28896 0.484933 0.769715 0.489632 Vertex 28897 0.375227 0.285508 0.235538 Vertex 28898 0.475083 0.183804 0.485741 Vertex 28899 0.61349 0.460096 0.373862 Vertex 28900 0.451541 0.395894 0.633322 Vertex 28901 0.435668 0.360672 0.648822 Vertex 28902 0.384366 0.32131 0.255314 Vertex 28903 0.645549 0.42212 0.201862 Vertex 28904 0.477873 0.0782857 0.735494 Vertex 28905 0.476446 0.079565 0.735642 Vertex 28906 0.655085 0.447795 0.198214 Vertex 28907 0.408341 0.837838 0.416298 Vertex 28908 0.527979 0.0901429 0.717211 Vertex 28909 0.588479 0.499813 0.276778 Vertex 28910 0.441253 0.169128 0.493316 Vertex 28911 0.644258 0.42016 0.205161 Vertex 28912 0.536087 0.60837 0.530469 Vertex 28913 0.418587 0.430092 0.382414 Vertex 28914 0.374386 0.226293 0.204557 Vertex 28915 0.498549 0.486345 0.394491 Vertex 28916 0.470967 0.478616 0.610301 Vertex 28917 0.464701 0.1271 0.645689 Vertex 28918 0.510809 0.571217 0.400668 Vertex 28919 0.424539 0.830754 0.358055 Vertex 28920 0.428573 0.16401 0.768566 Vertex 28921 0.389856 0.168079 0.511665 Vertex 28922 0.493988 0.233187 0.554 Vertex 28923 0.607111 0.503675 0.20551 Vertex 28924 0.608776 0.52685 0.223811 Vertex 28925 0.502203 0.456933 0.607055 Vertex 28926 0.398918 0.451307 0.396398 Vertex 28927 0.441537 0.462572 0.612125 Vertex 28928 0.467745 0.0592681 0.668787 Vertex 28929 0.394014 0.285075 0.621589 Vertex 28930 0.553209 0.470786 0.356331 Vertex 28931 0.552285 0.468962 0.357036 Vertex 28932 0.551782 0.467553 0.358327 Vertex 28933 0.477547 0.0765445 0.751562 Vertex 28934 0.404562 0.361774 0.291928 Vertex 28935 0.492727 0.554106 0.378156 Vertex 28936 0.648534 0.423672 0.223213 Vertex 28937 0.42162 0.397067 0.34448 Vertex 28938 0.446181 0.31967 0.419698 Vertex 28939 0.553126 0.460475 0.372897 Vertex 28940 0.377117 0.408125 0.559384 Vertex 28941 0.331601 0.917604 0.292052 Vertex 28942 0.390792 0.35379 0.331314 Vertex 28943 0.404154 0.381721 0.249522 Vertex 28944 0.405646 0.288445 0.219867 Vertex 28945 0.460395 0.0767636 0.657415 Vertex 28946 0.573246 0.521325 0.451508 Vertex 28947 0.414317 0.168067 0.590418 Vertex 28948 0.415519 0.170786 0.584164 Vertex 28949 0.450072 0.189596 0.590436 Vertex 28950 0.557645 0.503539 0.40646 Vertex 28951 0.485501 0.0703435 0.735648 Vertex 28952 0.498697 0.175163 0.733089 Vertex 28953 0.521108 0.57525 0.418827 Vertex 28954 0.504288 0.256937 0.532228 Vertex 28955 0.459128 0.21655 0.658689 Vertex 28956 0.335024 0.929023 0.303679 Vertex 28957 0.598855 0.490059 0.391606 Vertex 28958 0.452743 0.556878 0.439011 Vertex 28959 0.505372 0.598603 0.566206 Vertex 28960 0.39569 0.327452 0.447884 Vertex 28961 0.4049 0.174565 0.540786 Vertex 28962 0.502748 0.491374 0.397742 Vertex 28963 0.509861 0.10402 0.705211 Vertex 28964 0.510323 0.105104 0.705768 Vertex 28965 0.550183 0.0296488 0.781756 Vertex 28966 0.411859 0.231813 0.46426 Vertex 28967 0.323209 0.942165 0.233821 Vertex 28968 0.377898 0.428493 0.339588 Vertex 28969 0.38019 0.429796 0.334932 Vertex 28970 0.48745 0.519181 0.392424 Vertex 28971 0.483434 0.52271 0.394645 Vertex 28972 0.580643 0.499298 0.484722 Vertex 28973 0.596776 0.454487 0.309388 Vertex 28974 0.373101 0.428285 0.565579 Vertex 28975 0.374641 0.428972 0.569736 Vertex 28976 0.333449 0.247058 0.209396 Vertex 28977 0.463854 0.205984 0.639328 Vertex 28978 0.481894 0.68065 0.511979 Vertex 28979 0.434655 0.421297 0.633322 Vertex 28980 0.497388 0.648295 0.405566 Vertex 28981 0.586731 0.493873 0.438449 Vertex 28982 0.490778 0.0408604 0.639434 Vertex 28983 0.398385 0.172024 0.624965 Vertex 28984 0.398497 0.437951 0.384428 Vertex 28985 0.368239 0.894594 0.353405 Vertex 28986 0.462332 0.807839 0.470591 Vertex 28987 0.575141 0.439663 0.476437 Vertex 28988 0.440548 0.822758 0.362574 Vertex 28989 0.58377 0.503835 0.383054 Vertex 28990 0.458565 0.568256 0.440042 Vertex 28991 0.303077 0.985608 0.20586 Vertex 28992 0.355327 0.411566 0.469555 Vertex 28993 0.355375 0.412916 0.474044 Vertex 28994 0.430652 0.521153 0.468494 Vertex 28995 0.599761 0.533395 0.29406 Vertex 28996 0.505455 0.0744775 0.636662 Vertex 28997 0.37643 0.229065 0.588565 Vertex 28998 0.332708 0.932257 0.253135 Vertex 28999 0.380925 0.406514 0.288392 Vertex 29000 0.524686 0.130227 0.745331 Vertex 29001 0.389833 0.899895 0.366844 Vertex 29002 0.376122 0.257328 0.233086 Vertex 29003 0.364318 0.314606 0.201596 Vertex 29004 0.495712 0.185569 0.741565 Vertex 29005 0.457309 0.732041 0.464005 Vertex 29006 0.535542 0.535338 0.425218 Vertex 29007 0.461905 0.6007 0.439118 Vertex 29008 0.541974 0.149026 0.445135 Vertex 29009 0.541524 0.147403 0.445864 Vertex 29010 0.40965 0.274681 0.642923 Vertex 29011 0.437214 0.413579 0.640056 Vertex 29012 0.486988 0.218173 0.569642 Vertex 29013 0.487977 0.216379 0.563429 Vertex 29014 0.487568 0.219956 0.567604 Vertex 29015 0.37611 0.287172 0.462163 Vertex 29016 0.585973 0.442974 0.45152 Vertex 29017 0.353764 0.126816 0.474287 Vertex 29018 0.550882 0.0221922 0.721019 Vertex 29019 0.544775 0.0373187 0.785197 Vertex 29020 0.547239 0.602133 0.482679 Vertex 29021 0.39983 0.490574 0.443104 Vertex 29022 0.467893 0.172349 0.676374 Vertex 29023 0.469368 0.175779 0.681106 Vertex 29024 0.388518 0.195691 0.687775 Vertex 29025 0.358916 0.237025 0.501152 Vertex 29026 0.417634 0.881671 0.366026 Vertex 29027 0.389252 0.191865 0.567971 Vertex 29028 0.574809 0.411175 0.441161 Vertex 29029 0.4637 0.37879 0.629076 Vertex 29030 0.392634 0.211848 0.474944 Vertex 29031 0.398492 0.492789 0.447333 Vertex 29032 0.394719 0.288487 0.194109 Vertex 29033 0.513125 0.154285 0.721315 Vertex 29034 0.535868 0.0895447 0.726699 Vertex 29035 0.457831 0.225351 0.63177 Vertex 29036 0.452802 0.171941 0.801153 Vertex 29037 0.45914 0.59547 0.532364 Vertex 29038 0.312773 0.950113 0.264453 Vertex 29039 0.516607 0.0230629 0.728979 Vertex 29040 0.365271 0.210106 0.479789 Vertex 29041 0.44884 0.160937 0.623964 Vertex 29042 0.634439 0.505594 0.190573 Vertex 29043 0.607165 0.453865 0.320801 Vertex 29044 0.606288 0.454576 0.316845 Vertex 29045 0.497607 0.0294001 0.661277 Vertex 29046 0.495866 0.0319113 0.665056 Vertex 29047 0.516909 0.392335 0.563405 Vertex 29048 0.525627 0.499227 0.41506 Vertex 29049 0.423456 0.251168 0.20695 Vertex 29050 0.579441 0.428374 0.337953 Vertex 29051 0.552244 0.0246442 0.722701 Vertex 29052 0.48241 0.167481 0.675154 Vertex 29053 0.528441 0.490722 0.412839 Vertex 29054 0.495842 0.564619 0.385476 Vertex 29055 0.429384 0.847835 0.438194 Vertex 29056 0.407814 0.177846 0.723027 Vertex 29057 0.60771 0.450726 0.377629 Vertex 29058 0.656672 0.444342 0.221691 Vertex 29059 0.423479 0.264127 0.706378 Vertex 29060 0.546558 0.604248 0.489496 Vertex 29061 0.547606 0.605616 0.483165 Vertex 29062 0.531283 0.413674 0.559247 Vertex 29063 0.499378 0.353204 0.44276 Vertex 29064 0.31176 0.980627 0.240105 Vertex 29065 0.539261 0.401995 0.416878 Vertex 29066 0.442396 0.807739 0.370463 Vertex 29067 0.407731 0.341163 0.219245 Vertex 29068 0.49018 0.672637 0.525672 Vertex 29069 0.351193 0.301073 0.198249 Vertex 29070 0.513456 0.426497 0.427569 Vertex 29071 0.511863 0.355449 0.584158 Vertex 29072 0.511496 0.358878 0.584111 Vertex 29073 0.486988 0.341951 0.62856 Vertex 29074 0.510921 0.592041 0.414515 Vertex 29075 0.646663 0.445284 0.218973 Vertex 29076 0.514617 0.567758 0.403866 Vertex 29077 0.50963 0.0374549 0.756057 Vertex 29078 0.416674 0.238067 0.458118 Vertex 29079 0.455633 0.454458 0.625427 Vertex 29080 0.456504 0.458467 0.625504 Vertex 29081 0.42098 0.398856 0.376895 Vertex 29082 0.424362 0.398506 0.384807 Vertex 29083 0.370057 0.239483 0.584892 Vertex 29084 0.518212 0.146154 0.4537 Vertex 29085 0.339176 0.93539 0.257328 Vertex 29086 0.384715 0.340429 0.216793 Vertex 29087 0.547387 0.565478 0.451467 Vertex 29088 0.603806 0.531802 0.248811 Vertex 29089 0.547417 0.130784 0.447469 Vertex 29090 0.536359 0.0782621 0.787122 Vertex 29091 0.444694 0.279674 0.635134 Vertex 29092 0.360622 0.405637 0.412584 Vertex 29093 0.362618 0.411785 0.412176 Vertex 29094 0.515506 0.120722 0.67741 Vertex 29095 0.598529 0.519802 0.249818 Vertex 29096 0.357803 0.890449 0.300469 Vertex 29097 0.434566 0.13451 0.666933 Vertex 29098 0.504584 0.0897343 0.712555 Vertex 29099 0.506402 0.16125 0.461938 Vertex 29100 0.412043 0.420242 0.324325 Vertex 29101 0.451772 0.133698 0.638339 Vertex 29102 0.492561 0.0368804 0.674633 Vertex 29103 0.403324 0.163933 0.637794 Vertex 29104 0.535649 0.674958 0.483212 Vertex 29105 0.322131 0.96986 0.252376 Vertex 29106 0.475291 0.552572 0.416351 Vertex 29107 0.495594 0.42966 0.385121 Vertex 29108 0.627515 0.494276 0.273129 Vertex 29109 0.558285 0.487157 0.376977 Vertex 29110 0.4559 0.218931 0.470141 Vertex 29111 0.406292 0.245305 0.212914 Vertex 29112 0.501173 0.263369 0.577904 Vertex 29113 0.398634 0.410713 0.604988 Vertex 29114 0.463605 0.223995 0.714729 Vertex 29115 0.639183 0.512826 0.244268 Vertex 29116 0.41947 0.408812 0.33617 Vertex 29117 0.498069 0.251293 0.569689 Vertex 29118 0.428744 0.254461 0.751835 Vertex 29119 0.458512 0.173599 0.6525 Vertex 29120 0.543834 0.547272 0.436423 Vertex 29121 0.432991 0.477011 0.420106 Vertex 29122 0.642902 0.435772 0.205783 Vertex 29123 0.417977 0.505943 0.451964 Vertex 29124 0.373859 0.362733 0.512162 Vertex 29125 0.67656 0.480429 0.21244 Vertex 29126 0.639887 0.436216 0.194867 Vertex 29127 0.60229 0.539406 0.284039 Vertex 29128 0.414696 0.236344 0.212991 Vertex 29129 0.494818 0.553236 0.377208 Vertex 29130 0.370365 0.161387 0.472611 Vertex 29131 0.36995 0.166054 0.474541 Vertex 29132 0.365923 0.219737 0.212961 Vertex 29133 0.532036 0.398299 0.42565 Vertex 29134 0.633361 0.449187 0.196721 Vertex 29135 0.572487 0.502698 0.343882 Vertex 29136 0.418557 0.388485 0.303501 Vertex 29137 0.456409 0.658114 0.486837 Vertex 29138 0.618755 0.479297 0.291217 Vertex 29139 0.540914 0.401397 0.50961 Vertex 29140 0.482836 0.616348 0.418525 Vertex 29141 0.356174 0.392708 0.421913 Vertex 29142 0.589035 0.462216 0.456418 Vertex 29143 0.383791 0.334992 0.268332 Vertex 29144 0.364436 0.405525 0.376758 Vertex 29145 0.494901 0.696647 0.528882 Vertex 29146 0.467479 0.785209 0.485498 Vertex 29147 0.568484 0.514857 0.509598 Vertex 29148 0.412641 0.263967 0.712692 Vertex 29149 0.56987 0.508455 0.424495 Vertex 29150 0.522251 0.345439 0.490746 Vertex 29151 0.426008 0.242954 0.209532 Vertex 29152 0.425451 0.241781 0.211546 Vertex 29153 0.553517 0.470976 0.368597 Vertex 29154 0.524905 0.338006 0.514845 Vertex 29155 0.521014 0.379702 0.455684 Vertex 29156 0.382163 0.184752 0.55519 Vertex 29157 0.378585 0.186386 0.553881 Vertex 29158 0.351951 0.306119 0.204723 Vertex 29159 0.362802 0.211534 0.556067 Vertex 29160 0.540778 0.49581 0.575884 Vertex 29161 0.554666 0.48952 0.54893 Vertex 29162 0.492792 0.568078 0.387585 Vertex 29163 0.359544 0.229651 0.552963 Vertex 29164 0.522323 0.0733877 0.792855 Vertex 29165 0.46813 0.778451 0.484776 Vertex 29166 0.531834 0.135303 0.442956 Vertex 29167 0.442455 0.426817 0.397991 Vertex 29168 0.380321 0.39715 0.58003 Vertex 29169 0.380244 0.396605 0.580042 Vertex 29170 0.425872 0.830801 0.436903 Vertex 29171 0.357021 0.14626 0.453161 Vertex 29172 0.35833 0.143394 0.453913 Vertex 29173 0.464417 0.204758 0.658801 Vertex 29174 0.37486 0.357107 0.470733 Vertex 29175 0.380297 0.3431 0.389338 Vertex 29176 0.41896 0.26485 0.698152 Vertex 29177 0.371579 0.0915051 0.465634 Vertex 29178 0.443036 0.833846 0.451336 Vertex 29179 0.515577 0.0787536 0.721392 Vertex 29180 0.388257 0.321304 0.621317 Vertex 29181 0.472922 0.427717 0.614518 Vertex 29182 0.46389 0.42889 0.617562 Vertex 29183 0.553168 0.419887 0.521982 Vertex 29184 0.478513 0.0952897 0.650889 Vertex 29185 0.661979 0.496769 0.208798 Vertex 29186 0.512858 0.702232 0.426698 Vertex 29187 0.488753 0.39638 0.40646 Vertex 29188 0.560867 0.489034 0.366571 Vertex 29189 0.54346 0.591212 0.517949 Vertex 29190 0.353159 0.918226 0.332729 Vertex 29191 0.395613 0.188915 0.588345 Vertex 29192 0.5311 0.680425 0.449536 Vertex 29193 0.426476 0.351178 0.427912 Vertex 29194 0.599507 0.521088 0.251666 Vertex 29195 0.418741 0.150453 0.696961 Vertex 29196 0.394269 0.257275 0.642147 Vertex 29197 0.410971 0.17367 0.59656 Vertex 29198 0.439014 0.146467 0.756241 Vertex 29199 0.363879 0.424981 0.436399 Vertex 29200 0.584753 0.508301 0.320392 Vertex 29201 0.458559 0.663368 0.445266 Vertex 29202 0.395589 0.190206 0.570956 Vertex 29203 0.445482 0.247046 0.448677 Vertex 29204 0.36892 0.271542 0.474915 Vertex 29205 0.482777 0.751994 0.397458 Vertex 29206 0.533475 0.0126982 0.728878 Vertex 29207 0.356186 0.415581 0.463715 Vertex 29208 0.353556 0.385719 0.478557 Vertex 29209 0.475628 0.072979 0.704554 Vertex 29210 0.52051 0.165402 0.788158 Vertex 29211 0.550734 0.508081 0.414539 Vertex 29212 0.455675 0.727569 0.451615 Vertex 29213 0.407855 0.365784 0.264956 Vertex 29214 0.36831 0.353992 0.575381 Vertex 29215 0.524757 0.0646281 0.78281 Vertex 29216 0.542341 0.621169 0.509775 Vertex 29217 0.510761 0.0173771 0.640281 Vertex 29218 0.386705 0.905628 0.355514 Vertex 29219 0.42785 0.259969 0.737484 Vertex 29220 0.429941 0.259697 0.737525 Vertex 29221 0.518147 0.358795 0.455494 Vertex 29222 0.502357 0.52614 0.591858 Vertex 29223 0.418741 0.168897 0.534514 Vertex 29224 0.491975 0.376225 0.434605 Vertex 29225 0.499283 0.176999 0.733338 Vertex 29226 0.467674 0.352689 0.414717 Vertex 29227 0.435757 0.254473 0.673282 Vertex 29228 0.460129 0.701907 0.478616 Vertex 29229 0.466265 0.7053 0.488951 Vertex 29230 0.610244 0.477082 0.285739 Vertex 29231 0.467141 0.167333 0.669427 Vertex 29232 0.333715 0.259667 0.233821 Vertex 29233 0.447271 0.613884 0.48294 Vertex 29234 0.417841 0.535575 0.507572 Vertex 29235 0.367818 0.33861 0.216497 Vertex 29236 0.356186 0.247822 0.518037 Vertex 29237 0.547417 0.0182477 0.771196 Vertex 29238 0.473016 0.0752711 0.708747 Vertex 29239 0.363352 0.317911 0.205422 Vertex 29240 0.36934 0.0976588 0.468767 Vertex 29241 0.501143 0.515751 0.393217 Vertex 29242 0.496399 0.69458 0.407846 Vertex 29243 0.496369 0.698223 0.407947 Vertex 29244 0.597611 0.527336 0.229936 Vertex 29245 0.440483 0.117239 0.666228 Vertex 29246 0.506124 0.623875 0.413876 Vertex 29247 0.471234 0.368147 0.413141 Vertex 29248 0.383211 0.246815 0.225257 Vertex 29249 0.424918 0.263381 0.698152 Vertex 29250 0.490044 0.619161 0.407983 Vertex 29251 0.521174 0.390155 0.472338 Vertex 29252 0.583065 0.488264 0.306711 Vertex 29253 0.491691 0.237594 0.48721 Vertex 29254 0.548382 0.460386 0.381532 Vertex 29255 0.549952 0.461808 0.379258 Vertex 29256 0.479028 0.0486073 0.650533 Vertex 29257 0.457689 0.501004 0.41307 Vertex 29258 0.51688 0.167138 0.465237 Vertex 29259 0.519628 0.165236 0.463176 Vertex 29260 0.669447 0.455731 0.207275 Vertex 29261 0.369103 0.32057 0.206956 Vertex 29262 0.485312 0.5126 0.393105 Vertex 29263 0.388257 0.43756 0.396285 Vertex 29264 0.384289 0.206612 0.632523 Vertex 29265 0.453241 0.751082 0.426278 Vertex 29266 0.5156 0.659021 0.424388 Vertex 29267 0.483399 0.217652 0.495152 Vertex 29268 0.41947 0.153758 0.619499 Vertex 29269 0.356678 0.430305 0.474453 Vertex 29270 0.33349 0.944961 0.248924 Vertex 29271 0.43443 0.548071 0.503912 Vertex 29272 0.520741 0.491001 0.411329 Vertex 29273 0.461905 0.219737 0.685696 Vertex 29274 0.483014 0.648241 0.527212 Vertex 29275 0.515808 0.437625 0.417601 Vertex 29276 0.380421 0.286858 0.604858 Vertex 29277 0.376015 0.361596 0.471325 Vertex 29278 0.452086 0.204504 0.472356 Vertex 29279 0.525574 0.637456 0.434238 Vertex 29280 0.505431 0.166379 0.732716 Vertex 29281 0.452441 0.0869921 0.707278 Vertex 29282 0.368162 0.878402 0.339724 Vertex 29283 0.583954 0.496414 0.459824 Vertex 29284 0.583569 0.500376 0.45152 Vertex 29285 0.419979 0.258228 0.737525 Vertex 29286 0.418042 0.258566 0.735452 Vertex 29287 0.631051 0.456773 0.186629 Vertex 29288 0.512568 0.120787 0.696013 Vertex 29289 0.635131 0.518037 0.256564 Vertex 29290 0.635155 0.518647 0.254503 Vertex 29291 0.524609 0.119904 0.795496 Vertex 29292 0.562158 0.0178746 0.745788 Vertex 29293 0.36154 0.282085 0.569328 Vertex 29294 0.5985 0.458787 0.197704 Vertex 29295 0.39556 0.23606 0.467245 Vertex 29296 0.473686 0.771071 0.389693 Vertex 29297 0.368997 0.248639 0.584223 Vertex 29298 0.62055 0.494288 0.320914 Vertex 29299 0.598861 0.513649 0.231618 Vertex 29300 0.597155 0.512938 0.229586 Vertex 29301 0.441899 0.79738 0.393365 Vertex 29302 0.373107 0.35915 0.588458 Vertex 29303 0.567009 0.543848 0.493855 Vertex 29304 0.56583 0.545252 0.496378 Vertex 29305 0.34819 0.102823 0.465456 Vertex 29306 0.402703 0.439639 0.600943 Vertex 29307 0.398764 0.444561 0.390374 Vertex 29308 0.387446 0.289387 0.615359 Vertex 29309 0.339289 0.952696 0.272508 Vertex 29310 0.33599 0.956095 0.267231 Vertex 29311 0.454265 0.101568 0.722837 Vertex 29312 0.515588 0.160818 0.749691 Vertex 29313 0.445731 0.166368 0.614678 Vertex 29314 0.449936 0.433379 0.6318 Vertex 29315 0.395021 0.358777 0.385192 Vertex 29316 0.395477 0.357871 0.38916 Vertex 29317 0.474947 0.11362 0.795384 Vertex 29318 0.490873 0.455962 0.384985 Vertex 29319 0.482445 0.288842 0.617437 Vertex 29320 0.370833 0.165521 0.462755 Vertex 29321 0.372153 0.365499 0.482673 Vertex 29322 0.436705 0.552176 0.506198 Vertex 29323 0.629813 0.486446 0.233471 Vertex 29324 0.364643 0.368236 0.271187 Vertex 29325 0.365218 0.371837 0.281534 Vertex 29326 0.515138 0.386762 0.442624 Vertex 29327 0.378485 0.237961 0.205155 Vertex 29328 0.475895 0.289891 0.625368 Vertex 29329 0.496831 0.208407 0.490325 Vertex 29330 0.499473 0.0505085 0.63456 Vertex 29331 0.5355 0.11429 0.432301 Vertex 29332 0.545853 0.552152 0.441155 Vertex 29333 0.592707 0.420426 0.383569 Vertex 29334 0.430071 0.175696 0.495004 Vertex 29335 0.504406 0.0483882 0.675343 Vertex 29336 0.483707 0.553508 0.391529 Vertex 29337 0.466134 0.768181 0.480464 Vertex 29338 0.504934 0.0804949 0.728908 Vertex 29339 0.352662 0.211534 0.499286 Vertex 29340 0.531858 0.543665 0.424957 Vertex 29341 0.486686 0.594517 0.400206 Vertex 29342 0.486935 0.592266 0.402297 Vertex 29343 0.39736 0.192125 0.477988 Vertex 29344 0.452666 0.295351 0.42591 Vertex 29345 0.42419 0.139029 0.651896 Vertex 29346 0.409288 0.845164 0.346837 Vertex 29347 0.534393 0.678204 0.457674 Vertex 29348 0.53922 0.0279609 0.777059 Vertex 29349 0.658769 0.423512 0.233252 Vertex 29350 0.365396 0.275664 0.229474 Vertex 29351 0.517963 0.0230629 0.725266 Vertex 29352 0.369755 0.923029 0.331112 Vertex 29353 0.513942 0.332652 0.579894 Vertex 29354 0.34764 0.89967 0.297993 Vertex 29355 0.346816 0.898746 0.303039 Vertex 29356 0.402359 0.378565 0.620316 Vertex 29357 0.517045 0.341821 0.478397 Vertex 29358 0.516974 0.343645 0.476561 Vertex 29359 0.516773 0.343662 0.474506 Vertex 29360 0.531591 0.15547 0.459859 Vertex 29361 0.374066 0.219683 0.211658 Vertex 29362 0.352549 0.402534 0.489822 Vertex 29363 0.32344 0.235497 0.219867 Vertex 29364 0.397834 0.850571 0.393608 Vertex 29365 0.524632 0.68158 0.436885 Vertex 29366 0.384573 0.866841 0.331752 Vertex 29367 0.396188 0.338054 0.210237 Vertex 29368 0.423278 0.26485 0.673282 Vertex 29369 0.493799 0.231908 0.541237 Vertex 29370 0.519432 0.38126 0.459871 Vertex 29371 0.520552 0.385346 0.459901 Vertex 29372 0.538166 0.0496201 0.787578 Vertex 29373 0.453637 0.747387 0.428534 Vertex 29374 0.455284 0.774003 0.401633 Vertex 29375 0.400185 0.262771 0.223788 Vertex 29376 0.635884 0.515337 0.260277 Vertex 29377 0.537656 0.451336 0.569618 Vertex 29378 0.498898 0.387591 0.444762 Vertex 29379 0.363666 0.134391 0.471106 Vertex 29380 0.611115 0.511292 0.200583 Vertex 29381 0.441537 0.209455 0.468986 Vertex 29382 0.444114 0.799453 0.385731 Vertex 29383 0.43324 0.28196 0.638202 Vertex 29384 0.525124 0.126704 0.74054 Vertex 29385 0.516281 0.353926 0.467612 Vertex 29386 0.487746 0.371546 0.626085 Vertex 29387 0.500367 0.375716 0.60487 Vertex 29388 0.594999 0.530617 0.283725 Vertex 29389 0.539036 0.12517 0.449127 Vertex 29390 0.400097 0.496082 0.571756 Vertex 29391 0.457315 0.5869 0.54094 Vertex 29392 0.460395 0.586841 0.54572 Vertex 29393 0.459519 0.58603 0.545258 Vertex 29394 0.425635 0.125833 0.702671 Vertex 29395 0.505295 0.680265 0.416647 Vertex 29396 0.45696 0.154955 0.655106 Vertex 29397 0.500829 0.303975 0.451644 Vertex 29398 0.509684 0.279443 0.55721 Vertex 29399 0.366793 0.361229 0.275345 Vertex 29400 0.560322 0.0206997 0.754044 Vertex 29401 0.380688 0.901145 0.308796 Vertex 29402 0.594271 0.527377 0.294392 Vertex 29403 0.591712 0.522142 0.297637 Vertex 29404 0.593211 0.524387 0.298117 Vertex 29405 0.482824 0.513246 0.597058 Vertex 29406 0.392468 0.215413 0.714694 Vertex 29407 0.469267 0.259815 0.444247 Vertex 29408 0.419286 0.845555 0.428848 Vertex 29409 0.414631 0.884822 0.375438 Vertex 29410 0.343488 0.262332 0.227809 Vertex 29411 0.490003 0.217587 0.557257 Vertex 29412 0.519272 0.495916 0.597514 Vertex 29413 0.478986 0.766084 0.395687 Vertex 29414 0.618915 0.490414 0.259093 Vertex 29415 0.372497 0.359583 0.335436 Vertex 29416 0.498804 0.544909 0.387816 Vertex 29417 0.41376 0.445153 0.389024 Vertex 29418 0.432014 0.207714 0.79157 Vertex 29419 0.369998 0.344119 0.505552 Vertex 29420 0.372574 0.297175 0.468346 Vertex 29421 0.588816 0.486073 0.432645 Vertex 29422 0.498205 0.146331 0.662989 Vertex 29423 0.485951 0.174185 0.484722 Vertex 29424 0.608438 0.501703 0.229859 Vertex 29425 0.407666 0.828089 0.39789 Vertex 29426 0.356524 0.422529 0.464769 Vertex 29427 0.644134 0.43406 0.223598 Vertex 29428 0.427915 0.291549 0.428901 Vertex 29429 0.424599 0.29008 0.4304 Vertex 29430 0.49002 0.636905 0.403333 Vertex 29431 0.528518 0.686573 0.447564 Vertex 29432 0.326833 0.967212 0.249113 Vertex 29433 0.427033 0.139408 0.702505 Vertex 29434 0.510625 0.0224943 0.662142 Vertex 29435 0.491554 0.624746 0.405033 Vertex 29436 0.382257 0.243415 0.471977 Vertex 29437 0.556188 0.485439 0.38322 Vertex 29438 0.581887 0.464911 0.486789 Vertex 29439 0.578304 0.460635 0.495099 Vertex 29440 0.378402 0.873154 0.32121 Vertex 29441 0.528304 0.543304 0.414853 Vertex 29442 0.482469 0.181571 0.711199 Vertex 29443 0.410923 0.235829 0.201619 Vertex 29444 0.51069 0.396676 0.580006 Vertex 29445 0.446122 0.564596 0.551246 Vertex 29446 0.547417 0.0538311 0.778954 Vertex 29447 0.545308 0.00198409 0.731372 Vertex 29448 0.360421 0.888494 0.302074 Vertex 29449 0.406718 0.446486 0.390315 Vertex 29450 0.552232 0.554018 0.474263 Vertex 29451 0.592938 0.426224 0.395107 Vertex 29452 0.614319 0.448825 0.197675 Vertex 29453 0.432345 0.17402 0.494726 Vertex 29454 0.446933 0.605805 0.490183 Vertex 29455 0.587567 0.435002 0.204284 Vertex 29456 0.351815 0.909762 0.332948 Vertex 29457 0.545225 0.628697 0.491397 Vertex 29458 0.555957 0.0396048 0.728523 Vertex 29459 0.496944 0.248355 0.48477 Vertex 29460 0.411557 0.146343 0.65924 Vertex 29461 0.489351 0.399513 0.404832 Vertex 29462 0.432014 0.181097 0.486973 Vertex 29463 0.607449 0.4858 0.196449 Vertex 29464 0.36417 0.122569 0.465272 Vertex 29465 0.375328 0.427717 0.337533 Vertex 29466 0.438949 0.236492 0.778765 Vertex 29467 0.328628 0.94823 0.288078 Vertex 29468 0.444333 0.766007 0.426538 Vertex 29469 0.431741 0.259614 0.735417 Vertex 29470 0.363092 0.224279 0.209911 Vertex 29471 0.511626 0.513388 0.400869 Vertex 29472 0.357874 0.430578 0.497663 Vertex 29473 0.464902 0.490207 0.406774 Vertex 29474 0.470102 0.487488 0.402747 Vertex 29475 0.486194 0.183312 0.464443 Vertex 29476 0.524822 0.327186 0.528473 Vertex 29477 0.41331 0.447422 0.60285 Vertex 29478 0.436805 0.78201 0.427095 Vertex 29479 0.42544 0.218973 0.785428 Vertex 29480 0.423858 0.216947 0.786293 Vertex 29481 0.397662 0.353838 0.291916 Vertex 29482 0.409058 0.228046 0.466617 Vertex 29483 0.409786 0.375135 0.364475 Vertex 29484 0.37104 0.387727 0.512127 Vertex 29485 0.415525 0.373104 0.301546 Vertex 29486 0.485815 0.72905 0.401468 Vertex 29487 0.490642 0.574095 0.389581 Vertex 29488 0.466661 0.193701 0.669113 Vertex 29489 0.523993 0.598828 0.547941 Vertex 29490 0.491584 0.213547 0.540804 Vertex 29491 0.621527 0.531044 0.298875 Vertex 29492 0.39877 0.169264 0.528218 Vertex 29493 0.379089 0.385998 0.238666 Vertex 29494 0.514884 0.465089 0.407485 Vertex 29495 0.481391 0.491788 0.393952 Vertex 29496 0.554909 0.504599 0.407118 Vertex 29497 0.505046 0.655994 0.545003 Vertex 29498 0.465275 0.177858 0.677002 Vertex 29499 0.305061 0.988706 0.225748 Vertex 29500 0.447638 0.604698 0.496295 Vertex 29501 0.47965 0.173818 0.542682 Vertex 29502 0.497104 0.363391 0.613209 Vertex 29503 0.368031 0.350456 0.269067 Vertex 29504 0.366509 0.352049 0.264796 Vertex 29505 0.502517 0.292882 0.590353 Vertex 29506 0.537798 0.665464 0.46009 Vertex 29507 0.393967 0.355851 0.310561 Vertex 29508 0.420299 0.376539 0.428167 Vertex 29509 0.494889 0.181707 0.728399 Vertex 29510 0.484879 0.163294 0.667999 Vertex 29511 0.436171 0.811268 0.379352 Vertex 29512 0.551835 0.531239 0.44536 Vertex 29513 0.549999 0.532708 0.443827 Vertex 29514 0.311464 0.943219 0.257055 Vertex 29515 0.47288 0.203361 0.792067 Vertex 29516 0.400405 0.395652 0.61373 Vertex 29517 0.447034 0.760985 0.44109 Vertex 29518 0.519343 0.337704 0.561338 Vertex 29519 0.39678 0.376966 0.23465 Vertex 29520 0.57398 0.404607 0.383137 Vertex 29521 0.461728 0.595068 0.438561 Vertex 29522 0.449539 0.597816 0.507584 Vertex 29523 0.656637 0.409961 0.225334 Vertex 29524 0.516376 0.0502952 0.664078 Vertex 29525 0.432576 0.426586 0.62442 Vertex 29526 0.378544 0.180481 0.542759 Vertex 29527 0.442894 0.538945 0.448476 Vertex 29528 0.540547 0.0637338 0.716932 Vertex 29529 0.506574 0.175506 0.750194 Vertex 29530 0.588804 0.428996 0.208418 Vertex 29531 0.418273 0.420947 0.611586 Vertex 29532 0.451813 0.160315 0.639979 Vertex 29533 0.359994 0.400739 0.318639 Vertex 29534 0.506627 0.0558211 0.634465 Vertex 29535 0.485294 0.0759996 0.726047 Vertex 29536 0.416064 0.182548 0.484136 Vertex 29537 0.52606 0.0702901 0.67227 Vertex 29538 0.420559 0.145869 0.65141 Vertex 29539 0.461212 0.517137 0.422078 Vertex 29540 0.466039 0.516255 0.415795 Vertex 29541 0.524863 0.382675 0.443305 Vertex 29542 0.492863 0.29419 0.609081 Vertex 29543 0.417 0.265164 0.219352 Vertex 29544 0.47516 0.106412 0.649254 Vertex 29545 0.550177 0.0548912 0.725461 Vertex 29546 0.487089 0.200216 0.472972 Vertex 29547 0.429106 0.121521 0.709967 Vertex 29548 0.517342 0.164324 0.762075 Vertex 29549 0.518171 0.162814 0.760458 Vertex 29550 0.352164 0.896975 0.32917 Vertex 29551 0.402087 0.35915 0.293965 Vertex 29552 0.515624 0.0845401 0.722298 Vertex 29553 0.497175 0.408415 0.41121 Vertex 29554 0.427992 0.493322 0.435079 Vertex 29555 0.522133 0.153729 0.756146 Vertex 29556 0.478116 0.11827 0.648111 Vertex 29557 0.476588 0.345949 0.420876 Vertex 29558 0.477168 0.348999 0.420716 Vertex 29559 0.425647 0.193434 0.481068 Vertex 29560 0.422585 0.19177 0.480926 Vertex 29561 0.493645 0.786103 0.459818 Vertex 29562 0.400529 0.364943 0.385109 Vertex 29563 0.368398 0.909188 0.351066 Vertex 29564 0.481504 0.7294 0.497391 Vertex 29565 0.398894 0.30308 0.237848 Vertex 29566 0.461479 0.288327 0.632706 Vertex 29567 0.432582 0.149867 0.727107 Vertex 29568 0.408939 0.172865 0.600747 Vertex 29569 0.394186 0.180209 0.650261 Vertex 29570 0.395418 0.176401 0.651594 Vertex 29571 0.553985 0.559271 0.468577 Vertex 29572 0.341243 0.910201 0.274681 Vertex 29573 0.340473 0.914868 0.271009 Vertex 29574 0.351288 0.903869 0.283453 Vertex 29575 0.443285 0.499837 0.590276 Vertex 29576 0.459436 0.215532 0.47299 Vertex 29577 0.505875 0.74789 0.433284 Vertex 29578 0.507131 0.746842 0.435079 Vertex 29579 0.541855 0.0764616 0.754227 Vertex 29580 0.506675 0.589145 0.406383 Vertex 29581 0.36892 0.444638 0.442956 Vertex 29582 0.589172 0.501875 0.273917 Vertex 29583 0.426352 0.161576 0.743756 Vertex 29584 0.513237 0.106335 0.705425 Vertex 29585 0.380652 0.916781 0.328435 Vertex 29586 0.525764 0.709807 0.457887 Vertex 29587 0.40307 0.358025 0.320914 Vertex 29588 0.486076 0.688142 0.511884 Vertex 29589 0.525231 0.39211 0.433734 Vertex 29590 0.525231 0.389196 0.437092 Vertex 29591 0.517288 0.348649 0.481512 Vertex 29592 0.491904 0.222959 0.499683 Vertex 29593 0.525616 0.51414 0.589145 Vertex 29594 0.525923 0.520377 0.58658 Vertex 29595 0.497974 0.519465 0.390493 Vertex 29596 0.442657 0.513572 0.432562 Vertex 29597 0.36767 0.273177 0.231576 Vertex 29598 0.360889 0.229924 0.21109 Vertex 29599 0.34594 0.136636 0.466208 Vertex 29600 0.51117 0.075052 0.637634 Vertex 29601 0.397354 0.472042 0.41994 Vertex 29602 0.378177 0.397884 0.559324 Vertex 29603 0.543022 0.0326931 0.727297 Vertex 29604 0.35085 0.192848 0.493032 Vertex 29605 0.562828 0.427308 0.354844 Vertex 29606 0.442035 0.843553 0.377516 Vertex 29607 0.452548 0.19055 0.473387 Vertex 29608 0.35342 0.298046 0.23356 Vertex 29609 0.36831 0.149879 0.469898 Vertex 29610 0.517288 0.0791801 0.796243 Vertex 29611 0.54683 0.608862 0.475323 Vertex 29612 0.450925 0.0869624 0.703286 Vertex 29613 0.499728 0.50865 0.391731 Vertex 29614 0.360018 0.203485 0.538163 Vertex 29615 0.68795 0.451413 0.212689 Vertex 29616 0.36138 0.208596 0.477988 Vertex 29617 0.452968 0.244138 0.625777 Vertex 29618 0.5034 0.668301 0.414728 Vertex 29619 0.514475 0.287131 0.532447 Vertex 29620 0.53274 0.491344 0.411696 Vertex 29621 0.469611 0.586255 0.554231 Vertex 29622 0.506349 0.424098 0.600155 Vertex 29623 0.407334 0.365541 0.283619 Vertex 29624 0.441851 0.198356 0.799974 Vertex 29625 0.464269 0.570423 0.560764 Vertex 29626 0.405024 0.361863 0.283589 Vertex 29627 0.403366 0.357966 0.271145 Vertex 29628 0.452779 0.741855 0.439308 Vertex 29629 0.51268 0.0456756 0.630432 Vertex 29630 0.491963 0.428309 0.381194 Vertex 29631 0.521452 0.40376 0.559295 Vertex 29632 0.339822 0.12174 0.464088 Vertex 29633 0.372758 0.0824198 0.467464 Vertex 29634 0.544817 0.0522793 0.794377 Vertex 29635 0.558119 0.006663 0.758444 Vertex 29636 0.372763 0.194571 0.558193 Vertex 29637 0.502594 0.0369396 0.720906 Vertex 29638 0.645437 0.425117 0.201779 Vertex 29639 0.534505 0.0723276 0.796065 Vertex 29640 0.373634 0.447664 0.430945 Vertex 29641 0.514653 0.11981 0.704364 Vertex 29642 0.443871 0.091286 0.661852 Vertex 29643 0.611109 0.534129 0.241585 Vertex 29644 0.394594 0.317147 0.246045 Vertex 29645 0.482978 0.703138 0.407604 Vertex 29646 0.480509 0.696179 0.413929 Vertex 29647 0.462119 0.586806 0.435132 Vertex 29648 0.463096 0.590655 0.436115 Vertex 29649 0.645958 0.421018 0.20265 Vertex 29650 0.514582 0.0565022 0.731159 Vertex 29651 0.56445 0.440125 0.505464 Vertex 29652 0.434181 0.319101 0.646014 Vertex 29653 0.370418 0.878189 0.311496 Vertex 29654 0.436491 0.828971 0.359198 Vertex 29655 0.429876 0.500601 0.589364 Vertex 29656 0.374517 0.384582 0.524002 Vertex 29657 0.555359 0.525133 0.451929 Vertex 29658 0.539214 0.00617142 0.743638 Vertex 29659 0.36427 0.213559 0.483627 Vertex 29660 0.551563 0.515366 0.432372 Vertex 29661 0.524147 0.114923 0.715404 Vertex 29662 0.470813 0.227448 0.477337 Vertex 29663 0.458654 0.290459 0.428593 Vertex 29664 0.331021 0.240697 0.226536 Vertex 29665 0.468509 0.0682468 0.653412 Vertex 29666 0.511212 0.412934 0.590359 Vertex 29667 0.421075 0.524837 0.569618 Vertex 29668 0.551883 0.453403 0.366636 Vertex 29669 0.372106 0.373856 0.518399 Vertex 29670 0.451499 0.57785 0.45335 Vertex 29671 0.444842 0.577957 0.47331 Vertex 29672 0.44351 0.578277 0.477906 Vertex 29673 0.474153 0.211374 0.784782 Vertex 29674 0.451523 0.402232 0.631551 Vertex 29675 0.51948 0.377736 0.536522 Vertex 29676 0.412955 0.839348 0.360507 Vertex 29677 0.516495 0.379631 0.44282 Vertex 29678 0.466987 0.110031 0.643888 Vertex 29679 0.472548 0.437164 0.371902 Vertex 29680 0.492425 0.384795 0.615222 Vertex 29681 0.449746 0.830286 0.38277 Vertex 29682 0.3945 0.886569 0.389054 Vertex 29683 0.508025 0.503563 0.401047 Vertex 29684 0.48912 0.424643 0.611171 Vertex 29685 0.411889 0.207412 0.47293 Vertex 29686 0.658188 0.454949 0.20888 Vertex 29687 0.47872 0.474559 0.606273 Vertex 29688 0.452536 0.234437 0.687799 Vertex 29689 0.523898 0.0849547 0.713349 Vertex 29690 0.606241 0.517795 0.32673 Vertex 29691 0.605275 0.51741 0.32718 Vertex 29692 0.526291 0.141528 0.75646 Vertex 29693 0.531509 0.67118 0.447469 Vertex 29694 0.450475 0.176632 0.60285 Vertex 29695 0.450629 0.178361 0.604935 Vertex 29696 0.531858 0.511748 0.584188 Vertex 29697 0.515535 0.0935425 0.799311 Vertex 29698 0.350145 0.897414 0.294007 Vertex 29699 0.368369 0.403576 0.534141 Vertex 29700 0.544302 0.0295718 0.780933 Vertex 29701 0.37104 0.323087 0.4806 Vertex 29702 0.540547 0.657688 0.46481 Vertex 29703 0.411006 0.230765 0.764456 Vertex 29704 0.443741 0.583738 0.487251 Vertex 29705 0.537875 0.516841 0.575926 Vertex 29706 0.429023 0.459326 0.60253 Vertex 29707 0.659586 0.425075 0.231866 Vertex 29708 0.503275 0.615981 0.410979 Vertex 29709 0.493645 0.237173 0.563452 Vertex 29710 0.412131 0.512133 0.467801 Vertex 29711 0.444647 0.0865834 0.662438 Vertex 29712 0.356897 0.22576 0.505872 Vertex 29713 0.525367 0.0829883 0.711063 Vertex 29714 0.525284 0.431389 0.413206 Vertex 29715 0.457996 0.560959 0.436844 Vertex 29716 0.502108 0.093353 0.726101 Vertex 29717 0.367794 0.277512 0.232056 Vertex 29718 0.496423 0.413739 0.40158 Vertex 29719 0.403662 0.254988 0.722298 Vertex 29720 0.528381 0.590436 0.549066 Vertex 29721 0.416467 0.841385 0.346647 Vertex 29722 0.414098 0.842558 0.34663 Vertex 29723 0.455485 0.0799441 0.700171 Vertex 29724 0.411006 0.39179 0.620144 Vertex 29725 0.525574 0.381775 0.447522 Vertex 29726 0.315456 0.992318 0.200204 Vertex 29727 0.359834 0.226044 0.499239 Vertex 29728 0.44361 0.249919 0.708522 Vertex 29729 0.563112 0.419775 0.360045 Vertex 29730 0.493527 0.725722 0.516971 Vertex 29731 0.419132 0.399614 0.311502 Vertex 29732 0.491827 0.223859 0.538121 Vertex 29733 0.491146 0.223817 0.534052 Vertex 29734 0.491418 0.21998 0.531204 Vertex 29735 0.492585 0.219002 0.537209 Vertex 29736 0.509376 0.735293 0.432929 Vertex 29737 0.45985 0.224741 0.702274 Vertex 29738 0.434158 0.175802 0.491184 Vertex 29739 0.508896 0.5929 0.410748 Vertex 29740 0.508232 0.595014 0.411193 Vertex 29741 0.543851 0.535296 0.434546 Vertex 29742 0.460212 0.2196 0.629336 Vertex 29743 0.377117 0.0830713 0.466753 Vertex 29744 0.532604 0.635715 0.441321 Vertex 29745 0.456468 0.30844 0.422102 Vertex 29746 0.503364 0.440291 0.606362 Vertex 29747 0.535038 0.679744 0.467032 Vertex 29748 0.507889 0.158585 0.714208 Vertex 29749 0.395293 0.299687 0.199771 Vertex 29750 0.418202 0.512914 0.462388 Vertex 29751 0.490897 0.172853 0.490918 Vertex 29752 0.499011 0.168405 0.474399 Vertex 29753 0.518159 0.150969 0.447386 Vertex 29754 0.560784 0.533869 0.465592 Vertex 29755 0.362648 0.339292 0.252264 Vertex 29756 0.472756 0.286396 0.627145 Vertex 29757 0.351347 0.382509 0.442287 Vertex 29758 0.550094 0.0534757 0.72311 Vertex 29759 0.505005 0.169453 0.735695 Vertex 29760 0.393505 0.440658 0.390185 Vertex 29761 0.39617 0.425543 0.310655 Vertex 29762 0.526699 0.399679 0.459 Vertex 29763 0.598174 0.511985 0.218647 Vertex 29764 0.408412 0.341578 0.229853 Vertex 29765 0.407026 0.340109 0.233821 Vertex 29766 0.532841 0.445692 0.577927 Vertex 29767 0.506473 0.0975995 0.807217 Vertex 29768 0.543579 0.161156 0.429002 Vertex 29769 0.474912 0.505795 0.404174 Vertex 29770 0.556431 0.485623 0.381301 Vertex 29771 0.378911 0.479866 0.523374 Vertex 29772 0.397271 0.257873 0.662929 Vertex 29773 0.394553 0.329839 0.209917 Vertex 29774 0.482676 0.223557 0.49276 Vertex 29775 0.524247 0.320375 0.512133 Vertex 29776 0.372444 0.38104 0.54893 Vertex 29777 0.46755 0.230184 0.468714 Vertex 29778 0.554216 0.469886 0.350533 Vertex 29779 0.367504 0.885965 0.352061 Vertex 29780 0.402572 0.166747 0.68158 Vertex 29781 0.366035 0.356645 0.550606 Vertex 29782 0.491975 0.407781 0.401337 Vertex 29783 0.482576 0.0545359 0.689978 Vertex 29784 0.401613 0.399543 0.280284 Vertex 29785 0.373071 0.17261 0.474725 Vertex 29786 0.525491 0.683209 0.439225 Vertex 29787 0.44547 0.588452 0.489745 Vertex 29788 0.434744 0.798363 0.399703 Vertex 29789 0.329404 0.270766 0.227566 Vertex 29790 0.493183 0.74869 0.412123 Vertex 29791 0.329564 0.261983 0.204634 Vertex 29792 0.328811 0.264441 0.206156 Vertex 29793 0.420163 0.141214 0.686827 Vertex 29794 0.473076 0.219654 0.485007 Vertex 29795 0.559398 0.488549 0.370735 Vertex 29796 0.49557 0.0361756 0.674064 Vertex 29797 0.475853 0.77071 0.493535 Vertex 29798 0.41241 0.152396 0.681236 Vertex 29799 0.354865 0.224208 0.513406 Vertex 29800 0.364033 0.238819 0.210598 Vertex 29801 0.415128 0.416381 0.367809 Vertex 29802 0.511887 0.125264 0.70023 Vertex 29803 0.488617 0.181257 0.790752 Vertex 29804 0.51566 0.325758 0.571703 Vertex 29805 0.449 0.484853 0.415238 Vertex 29806 0.502819 0.0888399 0.793453 Vertex 29807 0.529667 0.0499695 0.659405 Vertex 29808 0.526362 0.397499 0.515704 Vertex 29809 0.580915 0.435665 0.455737 Vertex 29810 0.365348 0.885171 0.345872 Vertex 29811 0.601882 0.538625 0.264346 Vertex 29812 0.369388 0.901388 0.299924 Vertex 29813 0.50594 0.0892486 0.807774 Vertex 29814 0.515956 0.731881 0.488714 Vertex 29815 0.537798 0.150288 0.458017 Vertex 29816 0.490891 0.216497 0.520016 Vertex 29817 0.363595 0.347412 0.392495 Vertex 29818 0.406126 0.273272 0.227786 Vertex 29819 0.544124 0.140414 0.451656 Vertex 29820 0.552753 0.519447 0.439171 Vertex 29821 0.450208 0.822806 0.379435 Vertex 29822 0.416615 0.239169 0.219079 Vertex 29823 0.366793 0.353601 0.530842 Vertex 29824 0.516649 0.741689 0.459954 Vertex 29825 0.46219 0.219926 0.615282 Vertex 29826 0.482481 0.358333 0.425218 Vertex 29827 0.553683 0.0156714 0.726918 Vertex 29828 0.514108 0.446107 0.411003 Vertex 29829 0.365946 0.21363 0.214045 Vertex 29830 0.366657 0.211682 0.213642 Vertex 29831 0.465021 0.533134 0.424033 Vertex 29832 0.644697 0.505973 0.235894 Vertex 29833 0.453187 0.802213 0.372974 Vertex 29834 0.600514 0.511724 0.227756 Vertex 29835 0.526362 0.334613 0.494827 Vertex 29836 0.486117 0.662823 0.524736 Vertex 29837 0.52542 0.022056 0.653554 Vertex 29838 0.589598 0.505499 0.293888 Vertex 29839 0.405516 0.366838 0.248195 Vertex 29840 0.502316 0.180931 0.756188 Vertex 29841 0.554773 0.436784 0.358108 Vertex 29842 0.505526 0.172687 0.774826 Vertex 29843 0.54105 0.573959 0.538554 Vertex 29844 0.489191 0.750389 0.503995 Vertex 29845 0.492152 0.749004 0.501235 Vertex 29846 0.536413 0.11872 0.438857 Vertex 29847 0.432304 0.508597 0.450744 Vertex 29848 0.494468 0.0552999 0.736193 Vertex 29849 0.535394 0.401882 0.440984 Vertex 29850 0.640462 0.438159 0.211552 Vertex 29851 0.454236 0.601677 0.51597 Vertex 29852 0.533262 0.686668 0.472303 Vertex 29853 0.471654 0.327636 0.420728 Vertex 29854 0.34668 0.119253 0.456797 Vertex 29855 0.364957 0.215466 0.225263 Vertex 29856 0.364821 0.216687 0.227543 Vertex 29857 0.528535 0.0814129 0.712763 Vertex 29858 0.406943 0.502058 0.574095 Vertex 29859 0.454544 0.625214 0.453403 Vertex 29860 0.355268 0.390345 0.491705 Vertex 29861 0.623351 0.524612 0.293326 Vertex 29862 0.475841 0.215928 0.488489 Vertex 29863 0.573346 0.528455 0.482626 Vertex 29864 0.500095 0.151407 0.671944 Vertex 29865 0.482291 0.0752119 0.725508 Vertex 29866 0.43953 0.153278 0.594641 Vertex 29867 0.482824 0.568812 0.572514 Vertex 29868 0.369056 0.204841 0.216823 Vertex 29869 0.578588 0.492274 0.316531 Vertex 29870 0.467781 0.523226 0.41461 Vertex 29871 0.420565 0.38216 0.347897 Vertex 29872 0.594585 0.448849 0.205587 Vertex 29873 0.456083 0.47636 0.405726 Vertex 29874 0.487272 0.731224 0.511558 Vertex 29875 0.487515 0.727309 0.51199 Vertex 29876 0.582432 0.499541 0.313338 Vertex 29877 0.370785 0.36422 0.495099 Vertex 29878 0.371087 0.360891 0.497207 Vertex 29879 0.458464 0.0935188 0.662527 Vertex 29880 0.359443 0.408853 0.430317 Vertex 29881 0.499337 0.503717 0.395077 Vertex 29882 0.478465 0.66393 0.423571 Vertex 29883 0.479206 0.669279 0.422659 Vertex 29884 0.475806 0.729453 0.404026 Vertex 29885 0.492999 0.181097 0.722263 Vertex 29886 0.448194 0.815106 0.368786 Vertex 29887 0.520457 0.13923 0.706159 Vertex 29888 0.593957 0.430252 0.345789 Vertex 29889 0.430894 0.2031 0.473896 Vertex 29890 0.421264 0.512269 0.579758 Vertex 29891 0.493758 0.544423 0.380211 Vertex 29892 0.599276 0.513276 0.228413 Vertex 29893 0.456587 0.54906 0.570258 Vertex 29894 0.568946 0.492298 0.337177 Vertex 29895 0.49621 0.165728 0.702374 Vertex 29896 0.465791 0.398281 0.387052 Vertex 29897 0.555324 0.0408841 0.762253 Vertex 29898 0.48177 0.463354 0.382622 Vertex 29899 0.510483 0.436867 0.411589 Vertex 29900 0.383738 0.240561 0.623585 Vertex 29901 0.425072 0.35944 0.645422 Vertex 29902 0.425985 0.356769 0.646909 Vertex 29903 0.320324 0.238612 0.220903 Vertex 29904 0.450735 0.757473 0.451692 Vertex 29905 0.618122 0.450786 0.2048 Vertex 29906 0.463534 0.830043 0.416624 Vertex 29907 0.389015 0.0791031 0.469134 Vertex 29908 0.530395 0.457727 0.405892 Vertex 29909 0.649103 0.505345 0.225535 Vertex 29910 0.375559 0.090445 0.4763 Vertex 29911 0.401796 0.428102 0.325071 Vertex 29912 0.45834 0.651493 0.493399 Vertex 29913 0.554447 0.556381 0.468032 Vertex 29914 0.369115 0.448997 0.449998 Vertex 29915 0.38195 0.219411 0.640115 Vertex 29916 0.331708 0.918202 0.298277 Vertex 29917 0.393487 0.886451 0.323715 Vertex 29918 0.364981 0.34612 0.523498 Vertex 29919 0.507498 0.0768228 0.636467 Vertex 29920 0.64581 0.506281 0.196123 Vertex 29921 0.399179 0.852348 0.352043 Vertex 29922 0.5008 0.164609 0.788265 Vertex 29923 0.46601 0.773174 0.385696 Vertex 29924 0.455598 0.187541 0.629206 Vertex 29925 0.444682 0.115101 0.740516 Vertex 29926 0.495635 0.179954 0.511611 Vertex 29927 0.471838 0.72581 0.488951 Vertex 29928 0.488753 0.358333 0.430234 Vertex 29929 0.549816 0.000379059 0.751983 Vertex 29930 0.435603 0.408237 0.411661 Vertex 29931 0.552558 0.418904 0.386957 Vertex 29932 0.353308 0.0935721 0.445876 Vertex 29933 0.490956 0.187979 0.732106 Vertex 29934 0.538971 0.581398 0.440385 Vertex 29935 0.590925 0.474014 0.294374 Vertex 29936 0.443391 0.162749 0.542759 Vertex 29937 0.499692 0.0283162 0.636763 Vertex 29938 0.505822 0.0222218 0.635981 Vertex 29939 0.385882 0.277459 0.453303 Vertex 29940 0.473342 0.702884 0.49703 Vertex 29941 0.509766 0.187772 0.460226 Vertex 29942 0.554222 0.0313368 0.727433 Vertex 29943 0.356263 0.196846 0.46821 Vertex 29944 0.508161 0.349147 0.451319 Vertex 29945 0.37425 0.383931 0.534467 Vertex 29946 0.471921 0.540638 0.418472 Vertex 29947 0.597718 0.429245 0.197698 Vertex 29948 0.597765 0.429411 0.195821 Vertex 29949 0.375227 0.387135 0.517895 Vertex 29950 0.477677 0.515793 0.598663 Vertex 29951 0.482196 0.624693 0.537268 Vertex 29952 0.463049 0.64531 0.50679 Vertex 29953 0.373208 0.328287 0.210592 Vertex 29954 0.513859 0.174268 0.448209 Vertex 29955 0.389015 0.863956 0.33145 Vertex 29956 0.463268 0.229367 0.468032 Vertex 29957 0.367942 0.915039 0.296127 Vertex 29958 0.376039 0.382089 0.580054 Vertex 29959 0.354273 0.298307 0.543357 Vertex 29960 0.42493 0.397873 0.388864 Vertex 29961 0.425789 0.399341 0.388947 Vertex 29962 0.524632 0.0594339 0.782283 Vertex 29963 0.523353 0.0568516 0.78156 Vertex 29964 0.429811 0.181571 0.48827 Vertex 29965 0.513492 0.386471 0.561403 Vertex 29966 0.476813 0.0913215 0.766517 Vertex 29967 0.494006 0.0987426 0.805968 Vertex 29968 0.427335 0.333298 0.648573 Vertex 29969 0.668908 0.455494 0.201862 Vertex 29970 0.466999 0.0706929 0.653832 Vertex 29971 0.691563 0.457887 0.216112 Vertex 29972 0.494741 0.089906 0.730371 Vertex 29973 0.603546 0.496029 0.385624 Vertex 29974 0.648475 0.416813 0.213097 Vertex 29975 0.466407 0.0865301 0.724223 Vertex 29976 0.550461 0.535776 0.551015 Vertex 29977 0.408986 0.870098 0.41185 Vertex 29978 0.450433 0.130091 0.766552 Vertex 29979 0.451274 0.134172 0.779002 Vertex 29980 0.506787 0.708119 0.420633 Vertex 29981 0.388843 0.350497 0.425164 Vertex 29982 0.533895 0.0965986 0.725994 Vertex 29983 0.541648 0.599776 0.451342 Vertex 29984 0.543158 0.599243 0.457378 Vertex 29985 0.440939 0.230208 0.461885 Vertex 29986 0.483422 0.169903 0.683884 Vertex 29987 0.445577 0.526442 0.435718 Vertex 29988 0.543946 0.508911 0.420106 Vertex 29989 0.55042 0.064249 0.745865 Vertex 29990 0.551782 0.0459954 0.790871 Vertex 29991 0.501487 0.400437 0.439171 Vertex 29992 0.355369 0.408972 0.462726 Vertex 29993 0.423509 0.298135 0.641099 Vertex 29994 0.601426 0.478018 0.395894 Vertex 29995 0.446199 0.570672 0.461435 Vertex 29996 0.475901 0.529901 0.407769 Vertex 29997 0.467271 0.165562 0.667093 Vertex 29998 0.488984 0.0967881 0.791279 Vertex 29999 0.360669 0.37751 0.341667 Vertex 30000 0.372278 0.101432 0.473848 Vertex 30001 0.381322 0.42193 0.38104 Vertex 30002 0.560091 0.0301108 0.739225 Vertex 30003 0.597292 0.434729 0.341595 Vertex 30004 0.533114 0.654478 0.509959 Vertex 30005 0.404781 0.351397 0.230344 Vertex 30006 0.433423 0.220921 0.467884 Vertex 30007 0.382003 0.181257 0.487074 Vertex 30008 0.504424 0.642153 0.410624 Vertex 30009 0.490435 0.610739 0.40177 Vertex 30010 0.468924 0.518144 0.411672 Vertex 30011 0.523027 0.0766274 0.658766 Vertex 30012 0.600176 0.512672 0.231902 Vertex 30013 0.60813 0.48827 0.187879 Vertex 30014 0.608177 0.489976 0.189892 Vertex 30015 0.528766 0.0270903 0.652944 Vertex 30016 0.45131 0.128172 0.764503 Vertex 30017 0.361487 0.891047 0.343745 Vertex 30018 0.573299 0.4226 0.350438 Vertex 30019 0.414548 0.149216 0.682575 Vertex 30020 0.383187 0.352209 0.450057 Vertex 30021 0.525461 0.5808 0.551015 Vertex 30022 0.397668 0.278164 0.625552 Vertex 30023 0.617766 0.503343 0.35671 Vertex 30024 0.622445 0.493014 0.352179 Vertex 30025 0.620686 0.497148 0.355306 Vertex 30026 0.544764 0.635845 0.490473 Vertex 30027 0.543668 0.634607 0.498919 Vertex 30028 0.52372 0.371096 0.511582 Vertex 30029 0.4628 0.235094 0.768637 Vertex 30030 0.370744 0.341086 0.411578 Vertex 30031 0.36677 0.407621 0.387301 Vertex 30032 0.51473 0.668787 0.425887 Vertex 30033 0.541358 0.0121592 0.730537 Vertex 30034 0.504247 0.373892 0.450815 Vertex 30035 0.512935 0.282997 0.507501 Vertex 30036 0.517727 0.490017 0.40928 Vertex 30037 0.607982 0.504208 0.242338 Vertex 30038 0.608545 0.504344 0.240377 Vertex 30039 0.490932 0.0869921 0.722618 Vertex 30040 0.489393 0.0839419 0.718064 Vertex 30041 0.434016 0.170567 0.497344 Vertex 30042 0.541743 0.538921 0.431188 Vertex 30043 0.543431 0.642046 0.491658 Vertex 30044 0.512663 0.0354945 0.667401 Vertex 30045 0.416437 0.24948 0.194678 Vertex 30046 0.595876 0.485072 0.281629 Vertex 30047 0.370785 0.268427 0.195116 Vertex 30048 0.483896 0.719663 0.40264 Vertex 30049 0.366426 0.364806 0.28363 Vertex 30050 0.368262 0.359938 0.283619 Vertex 30051 0.501688 0.382189 0.448393 Vertex 30052 0.455841 0.651919 0.486837 Vertex 30053 0.552202 0.435712 0.368295 Vertex 30054 0.534861 0.089604 0.720581 Vertex 30055 0.430201 0.259164 0.679477 Vertex 30056 0.448396 0.239501 0.770686 Vertex 30057 0.508079 0.495537 0.401894 Vertex 30058 0.50491 0.495543 0.399892 Vertex 30059 0.480633 0.169613 0.508218 Vertex 30060 0.488919 0.198095 0.466244 Vertex 30061 0.491513 0.19713 0.46561 Vertex 30062 0.398811 0.275475 0.193671 Vertex 30063 0.523791 0.156927 0.774874 Vertex 30064 0.442159 0.14077 0.615465 Vertex 30065 0.438742 0.138946 0.61357 Vertex 30066 0.409567 0.829493 0.385234 Vertex 30067 0.408068 0.375218 0.26479 Vertex 30068 0.512935 0.558768 0.402652 Vertex 30069 0.399866 0.180209 0.590412 Vertex 30070 0.353029 0.197444 0.507501 Vertex 30071 0.352952 0.199215 0.509568 Vertex 30072 0.47439 0.197349 0.69583 Vertex 30073 0.370892 0.2826 0.235183 Vertex 30074 0.379894 0.421403 0.385269 Vertex 30075 0.506556 0.551009 0.579023 Vertex 30076 0.501783 0.366654 0.448571 Vertex 30077 0.399327 0.354797 0.226779 Vertex 30078 0.534428 0.0522793 0.786068 Vertex 30079 0.65175 0.417761 0.219168 Vertex 30080 0.334728 0.956634 0.261106 Vertex 30081 0.434335 0.857643 0.372458 Vertex 30082 0.470701 0.337355 0.418401 Vertex 30083 0.424682 0.226643 0.208063 Vertex 30084 0.604955 0.501442 0.214862 Vertex 30085 0.531372 0.0914518 0.774874 Vertex 30086 0.365556 0.275676 0.480654 Vertex 30087 0.428211 0.182347 0.780974 Vertex 30088 0.502043 0.181257 0.764473 Vertex 30089 0.513166 0.693076 0.511611 Vertex 30090 0.517691 0.30401 0.48702 Vertex 30091 0.518307 0.307819 0.485504 Vertex 30092 0.532658 0.0655283 0.707053 Vertex 30093 0.36645 0.250013 0.204646 Vertex 30094 0.434839 0.532074 0.480737 Vertex 30095 0.554767 0.409825 0.507531 Vertex 30096 0.489973 0.212037 0.548906 Vertex 30097 0.442384 0.305248 0.423328 Vertex 30098 0.45898 0.414148 0.383557 Vertex 30099 0.631856 0.495176 0.253679 Vertex 30100 0.441478 0.375716 0.647892 Vertex 30101 0.539717 0.0677908 0.789319 Vertex 30102 0.440252 0.559911 0.47973 Vertex 30103 0.491134 0.208513 0.54235 Vertex 30104 0.534582 0.623976 0.443442 Vertex 30105 0.401672 0.237813 0.733445 Vertex 30106 0.513669 0.0635975 0.677943 Vertex 30107 0.544165 0.456489 0.557228 Vertex 30108 0.334888 0.918445 0.265815 Vertex 30109 0.495825 0.0507276 0.733208 Vertex 30110 0.604008 0.525382 0.309293 Vertex 30111 0.533884 0.0951298 0.729962 Vertex 30112 0.515233 0.153948 0.792541 Vertex 30113 0.455296 0.0801869 0.660051 Vertex 30114 0.530454 0.422872 0.571679 Vertex 30115 0.430231 0.16937 0.509544 Vertex 30116 0.424237 0.411353 0.380264 Vertex 30117 0.477263 0.13265 0.807217 Vertex 30118 0.535074 0.403025 0.459948 Vertex 30119 0.461112 0.219056 0.633198 Vertex 30120 0.408252 0.266958 0.65385 Vertex 30121 0.413026 0.441967 0.6042 Vertex 30122 0.554358 0.147308 0.416677 Vertex 30123 0.517152 0.579041 0.413645 Vertex 30124 0.602077 0.528319 0.264903 Vertex 30125 0.531787 0.132324 0.453617 Vertex 30126 0.361072 0.400461 0.372701 Vertex 30127 0.366349 0.237351 0.204918 Vertex 30128 0.435869 0.16173 0.572946 Vertex 30129 0.432351 0.158094 0.576074 Vertex 30130 0.433885 0.161333 0.573906 Vertex 30131 0.435147 0.161197 0.573699 Vertex 30132 0.510051 0.378565 0.448541 Vertex 30133 0.688193 0.450211 0.203828 Vertex 30134 0.565599 0.544133 0.485605 Vertex 30135 0.529299 0.445556 0.584164 Vertex 30136 0.480716 0.115142 0.815266 Vertex 30137 0.541311 0.407373 0.409807 Vertex 30138 0.538343 0.415048 0.406804 Vertex 30139 0.512704 0.416843 0.589737 Vertex 30140 0.326395 0.966377 0.255373 Vertex 30141 0.464784 0.520235 0.418335 Vertex 30142 0.480029 0.051 0.678257 Vertex 30143 0.362517 0.345167 0.547224 Vertex 30144 0.478755 0.11872 0.814088 Vertex 30145 0.551646 0.466096 0.360246 Vertex 30146 0.609913 0.458675 0.325427 Vertex 30147 0.508191 0.688965 0.520016 Vertex 30148 0.468225 0.435126 0.614298 Vertex 30149 0.530046 0.0845697 0.715677 Vertex 30150 0.394168 0.255178 0.214128 Vertex 30151 0.433186 0.335383 0.648324 Vertex 30152 0.342777 0.902454 0.300563 Vertex 30153 0.488232 0.363847 0.626985 Vertex 30154 0.505212 0.261942 0.544784 Vertex 30155 0.479123 0.0931102 0.772718 Vertex 30156 0.37746 0.342596 0.217421 Vertex 30157 0.564705 0.494098 0.349964 Vertex 30158 0.472442 0.499896 0.406543 Vertex 30159 0.547156 0.571501 0.507531 Vertex 30160 0.478228 0.0645452 0.701219 Vertex 30161 0.454277 0.595476 0.449441 Vertex 30162 0.518052 0.593765 0.422185 Vertex 30163 0.515085 0.590377 0.417844 Vertex 30164 0.50706 0.0986064 0.713586 Vertex 30165 0.484654 0.3025 0.624693 Vertex 30166 0.435621 0.839981 0.367483 Vertex 30167 0.43289 0.84132 0.363865 Vertex 30168 0.549904 0.565188 0.511718 Vertex 30169 0.451624 0.169139 0.561338 Vertex 30170 0.475599 0.311781 0.428943 Vertex 30171 0.374138 0.316353 0.604935 Vertex 30172 0.623594 0.511043 0.297602 Vertex 30173 0.52202 0.57149 0.420201 Vertex 30174 0.334781 0.949971 0.255829 Vertex 30175 0.398598 0.310496 0.224303 Vertex 30176 0.393937 0.320931 0.248195 Vertex 30177 0.354397 0.248325 0.526898 Vertex 30178 0.436195 0.831098 0.449595 Vertex 30179 0.435147 0.833597 0.449068 Vertex 30180 0.39941 0.265519 0.643995 Vertex 30181 0.311061 0.991921 0.201945 Vertex 30182 0.433376 0.79276 0.40835 Vertex 30183 0.432861 0.791202 0.412063 Vertex 30184 0.434815 0.789657 0.410517 Vertex 30185 0.535962 0.403831 0.447747 Vertex 30186 0.375411 0.383167 0.521484 Vertex 30187 0.438469 0.181435 0.482348 Vertex 30188 0.514327 0.541467 0.583234 Vertex 30189 0.415809 0.537778 0.550399 Vertex 30190 0.406842 0.364386 0.279455 Vertex 30191 0.542371 0.445402 0.386714 Vertex 30192 0.391485 0.89219 0.380632 Vertex 30193 0.641143 0.459113 0.185735 Vertex 30194 0.430332 0.528781 0.480962 Vertex 30195 0.498709 0.045948 0.721404 Vertex 30196 0.494291 0.0493476 0.72292 Vertex 30197 0.411486 0.277512 0.221484 Vertex 30198 0.558214 0.553491 0.515787 Vertex 30199 0.385675 0.238221 0.658778 Vertex 30200 0.385941 0.239767 0.662912 Vertex 30201 0.359822 0.264062 0.22104 Vertex 30202 0.504383 0.297371 0.588233 Vertex 30203 0.436876 0.142239 0.604988 Vertex 30204 0.458038 0.780494 0.384647 Vertex 30205 0.523833 0.351853 0.522166 Vertex 30206 0.342943 0.128948 0.468175 Vertex 30207 0.420921 0.390185 0.388278 Vertex 30208 0.516281 0.133165 0.706319 Vertex 30209 0.493544 0.404541 0.407005 Vertex 30210 0.480473 0.713479 0.499369 Vertex 30211 0.449616 0.207589 0.797984 Vertex 30212 0.453981 0.567729 0.55336 Vertex 30213 0.513551 0.375988 0.573793 Vertex 30214 0.520238 0.370575 0.490787 Vertex 30215 0.483979 0.800738 0.453534 Vertex 30216 0.441176 0.838513 0.443074 Vertex 30217 0.427773 0.839437 0.439011 Vertex 30218 0.44884 0.227922 0.78509 Vertex 30219 0.502085 0.411216 0.421451 Vertex 30220 0.452269 0.236628 0.698152 Vertex 30221 0.404005 0.281919 0.232139 Vertex 30222 0.340461 0.277566 0.230457 Vertex 30223 0.498709 0.40039 0.600647 Vertex 30224 0.374066 0.907103 0.357267 Vertex 30225 0.37345 0.909336 0.353648 Vertex 30226 0.346674 0.0864709 0.454766 Vertex 30227 0.458192 0.685732 0.451301 Vertex 30228 0.470712 0.221312 0.479362 Vertex 30229 0.469794 0.206363 0.483899 Vertex 30230 0.525888 0.126135 0.760458 Vertex 30231 0.427033 0.160255 0.584188 Vertex 30232 0.363951 0.888162 0.30263 Vertex 30233 0.411492 0.241716 0.752024 Vertex 30234 0.495919 0.349111 0.440344 Vertex 30235 0.50273 0.120858 0.65032 Vertex 30236 0.437593 0.778611 0.424388 Vertex 30237 0.50812 0.0671038 0.685856 Vertex 30238 0.552617 0.149974 0.41737 Vertex 30239 0.530046 0.137477 0.448807 Vertex 30240 0.438031 0.52704 0.451573 Vertex 30241 0.43793 0.52935 0.455684 Vertex 30242 0.437587 0.527224 0.453753 Vertex 30243 0.360569 0.190627 0.460422 Vertex 30244 0.358022 0.190917 0.462104 Vertex 30245 0.509239 0.0759996 0.77684 Vertex 30246 0.362689 0.273503 0.198895 Vertex 30247 0.534156 0.572585 0.553123 Vertex 30248 0.435153 0.400662 0.643864 Vertex 30249 0.515737 0.145147 0.708771 Vertex 30250 0.359663 0.256161 0.505937 Vertex 30251 0.357578 0.258175 0.512997 Vertex 30252 0.359272 0.260254 0.50881 Vertex 30253 0.358709 0.110748 0.461535 Vertex 30254 0.357365 0.109107 0.462892 Vertex 30255 0.528784 0.107147 0.754085 Vertex 30256 0.527517 0.111524 0.746244 Vertex 30257 0.449148 0.109676 0.724034 Vertex 30258 0.490222 0.490995 0.390102 Vertex 30259 0.524496 0.342851 0.515609 Vertex 30260 0.356038 0.362704 0.397677 Vertex 30261 0.544438 0.579562 0.511771 Vertex 30262 0.507688 0.619653 0.558537 Vertex 30263 0.348202 0.161493 0.462151 Vertex 30264 0.499129 0.68527 0.535752 Vertex 30265 0.590966 0.506014 0.268344 Vertex 30266 0.695643 0.454736 0.205457 Vertex 30267 0.52115 0.385998 0.437945 Vertex 30268 0.521381 0.384339 0.438846 Vertex 30269 0.382601 0.406585 0.575979 Vertex 30270 0.34607 0.0911261 0.445183 Vertex 30271 0.388257 0.474648 0.43807 Vertex 30272 0.424747 0.220755 0.46853 Vertex 30273 0.427661 0.218771 0.469951 Vertex 30274 0.433885 0.226974 0.786109 Vertex 30275 0.435834 0.227709 0.786103 Vertex 30276 0.505988 0.42549 0.417666 Vertex 30277 0.52439 0.132786 0.762306 Vertex 30278 0.526018 0.138359 0.762442 Vertex 30279 0.464967 0.207566 0.677428 Vertex 30280 0.486798 0.428884 0.375888 Vertex 30281 0.418646 0.161837 0.598722 Vertex 30282 0.528974 0.404269 0.548835 Vertex 30283 0.356103 0.271678 0.52396 Vertex 30284 0.366403 0.281717 0.476561 Vertex 30285 0.409597 0.152343 0.658339 Vertex 30286 0.473159 0.81532 0.446847 Vertex 30287 0.476197 0.0647406 0.702819 Vertex 30288 0.434069 0.237078 0.455731 Vertex 30289 0.619045 0.524375 0.217285 Vertex 30290 0.427548 0.200843 0.478024 Vertex 30291 0.625584 0.448665 0.197758 Vertex 30292 0.518579 0.156844 0.751852 Vertex 30293 0.465074 0.714143 0.430329 Vertex 30294 0.541417 0.0761358 0.729222 Vertex 30295 0.447946 0.158384 0.524067 Vertex 30296 0.516092 0.574285 0.409007 Vertex 30297 0.45025 0.426497 0.629757 Vertex 30298 0.493254 0.785274 0.434777 Vertex 30299 0.481841 0.0982214 0.651919 Vertex 30300 0.545498 0.631308 0.487524 Vertex 30301 0.490684 0.330911 0.436192 Vertex 30302 0.505715 0.0655816 0.687597 Vertex 30303 0.362932 0.449595 0.514739 Vertex 30304 0.464097 0.493115 0.407645 Vertex 30305 0.628545 0.492629 0.255995 Vertex 30306 0.476173 0.526442 0.596074 Vertex 30307 0.476884 0.791848 0.476425 Vertex 30308 0.479668 0.215585 0.494092 Vertex 30309 0.371994 0.920068 0.336674 Vertex 30310 0.487841 0.182904 0.540668 Vertex 30311 0.489813 0.183354 0.538601 Vertex 30312 0.498738 0.605118 0.564773 Vertex 30313 0.507362 0.450389 0.400585 Vertex 30314 0.371626 0.368745 0.545163 Vertex 30315 0.564664 0.446308 0.331912 Vertex 30316 0.527884 0.395782 0.447463 Vertex 30317 0.529015 0.397825 0.447493 Vertex 30318 0.370306 0.237066 0.238014 Vertex 30319 0.360018 0.391577 0.38935 Vertex 30320 0.605518 0.467144 0.215064 Vertex 30321 0.441976 0.106987 0.716636 Vertex 30322 0.523531 0.142262 0.790113 Vertex 30323 0.398906 0.425354 0.602003 Vertex 30324 0.486573 0.79289 0.465965 Vertex 30325 0.464369 0.183514 0.80056 Vertex 30326 0.460561 0.182045 0.801526 Vertex 30327 0.517318 0.575849 0.565259 Vertex 30328 0.441934 0.351368 0.417601 Vertex 30329 0.488753 0.395438 0.408391 Vertex 30330 0.380481 0.230125 0.231292 Vertex 30331 0.524934 0.0243955 0.656711 Vertex 30332 0.557112 0.46901 0.339451 Vertex 30333 0.549946 0.483787 0.391322 Vertex 30334 0.490932 0.698063 0.404465 Vertex 30335 0.377466 0.339754 0.403985 Vertex 30336 0.473342 0.648342 0.520235 Vertex 30337 0.545362 0.537037 0.436725 Vertex 30338 0.437682 0.31277 0.421575 Vertex 30339 0.434608 0.310063 0.423749 Vertex 30340 0.473603 0.719171 0.418146 Vertex 30341 0.525639 0.153444 0.460268 Vertex 30342 0.604257 0.503811 0.248704 Vertex 30343 0.513018 0.406999 0.579994 Vertex 30344 0.508623 0.408403 0.588268 Vertex 30345 0.543022 0.581256 0.515834 Vertex 30346 0.479703 0.645582 0.420225 Vertex 30347 0.365591 0.301084 0.488092 Vertex 30348 0.367475 0.300842 0.486837 Vertex 30349 0.352828 0.401533 0.468305 Vertex 30350 0.352733 0.404358 0.475187 Vertex 30351 0.464956 0.245376 0.615252 Vertex 30352 0.491827 0.21077 0.48936 Vertex 30353 0.415193 0.845205 0.424294 Vertex 30354 0.413802 0.358653 0.631705 Vertex 30355 0.426956 0.836606 0.351403 Vertex 30356 0.501469 0.316868 0.60073 Vertex 30357 0.387144 0.202016 0.578431 Vertex 30358 0.508179 0.757135 0.476899 Vertex 30359 0.510027 0.7536 0.478136 Vertex 30360 0.423817 0.255438 0.213938 Vertex 30361 0.346585 0.946157 0.285212 Vertex 30362 0.344939 0.94682 0.27705 Vertex 30363 0.58409 0.44635 0.46192 Vertex 30364 0.432263 0.0996666 0.678394 Vertex 30365 0.556644 0.0156121 0.771065 Vertex 30366 0.61317 0.456424 0.358463 Vertex 30367 0.6124 0.455251 0.362627 Vertex 30368 0.401903 0.518488 0.539246 Vertex 30369 0.5173 0.178509 0.454718 Vertex 30370 0.479407 0.204859 0.783088 Vertex 30371 0.547204 0.514762 0.426716 Vertex 30372 0.488386 0.67911 0.406366 Vertex 30373 0.449207 0.845389 0.404299 Vertex 30374 0.621474 0.498007 0.338267 Vertex 30375 0.517276 0.339292 0.46959 Vertex 30376 0.388358 0.252667 0.682196 Vertex 30377 0.43263 0.167303 0.561403 Vertex 30378 0.441449 0.790871 0.451556 Vertex 30379 0.329546 0.931392 0.295464 Vertex 30380 0.445458 0.590252 0.494282 Vertex 30381 0.418617 0.165414 0.582168 Vertex 30382 0.546558 0.601677 0.474233 Vertex 30383 0.3782 0.348738 0.458378 Vertex 30384 0.500586 0.196751 0.509106 Vertex 30385 0.303208 0.962652 0.224386 Vertex 30386 0.403692 0.456075 0.598769 Vertex 30387 0.579358 0.410192 0.407988 Vertex 30388 0.521126 0.0936254 0.718976 Vertex 30389 0.521635 0.0927311 0.716607 Vertex 30390 0.611245 0.513969 0.343627 Vertex 30391 0.418374 0.837678 0.349786 Vertex 30392 0.405462 0.363278 0.244185 Vertex 30393 0.448686 0.0962136 0.732657 Vertex 30394 0.387973 0.908181 0.330188 Vertex 30395 0.558717 0.0349555 0.733794 Vertex 30396 0.361884 0.412324 0.35199 Vertex 30397 0.361256 0.41143 0.349946 Vertex 30398 0.533244 0.0100626 0.739592 Vertex 30399 0.481735 0.192943 0.717394 Vertex 30400 0.401625 0.215668 0.741636 Vertex 30401 0.359982 0.348377 0.418365 Vertex 30402 0.491921 0.226346 0.557394 Vertex 30403 0.614372 0.449601 0.204717 Vertex 30404 0.384976 0.86475 0.36868 Vertex 30405 0.385284 0.864608 0.370747 Vertex 30406 0.370341 0.314369 0.250037 Vertex 30407 0.537656 0.4036 0.455003 Vertex 30408 0.592204 0.518647 0.294155 Vertex 30409 0.444232 0.158419 0.515787 Vertex 30410 0.537935 0.146361 0.444596 Vertex 30411 0.394606 0.867439 0.393283 Vertex 30412 0.439867 0.160463 0.515799 Vertex 30413 0.406428 0.256919 0.22191 Vertex 30414 0.407909 0.259312 0.224333 Vertex 30415 0.455011 0.774951 0.397896 Vertex 30416 0.608474 0.504984 0.196236 Vertex 30417 0.332158 0.251002 0.231541 Vertex 30418 0.523833 0.356876 0.524126 Vertex 30419 0.636671 0.479481 0.226749 Vertex 30420 0.519249 0.394888 0.553147 Vertex 30421 0.631175 0.49719 0.258198 Vertex 30422 0.489854 0.478989 0.389599 Vertex 30423 0.50218 0.200411 0.486067 Vertex 30424 0.52439 0.34673 0.517895 Vertex 30425 0.525094 0.348389 0.51202 Vertex 30426 0.378959 0.179421 0.491901 Vertex 30427 0.459045 0.0891361 0.713017 Vertex 30428 0.480224 0.105323 0.789325 Vertex 30429 0.472288 0.358114 0.416334 Vertex 30430 0.456871 0.144548 0.790427 Vertex 30431 0.455213 0.144874 0.79263 Vertex 30432 0.458381 0.203864 0.601642 Vertex 30433 0.385675 0.3181 0.619256 Vertex 30434 0.423414 0.380857 0.327002 Vertex 30435 0.455 0.77729 0.390955 Vertex 30436 0.519657 0.115131 0.790924 Vertex 30437 0.443302 0.249397 0.704364 Vertex 30438 0.354664 0.0917539 0.451413 Vertex 30439 0.617571 0.47177 0.339013 Vertex 30440 0.462966 0.227418 0.723027 Vertex 30441 0.548708 0.597869 0.477568 Vertex 30442 0.36433 0.151893 0.455518 Vertex 30443 0.387019 0.299651 0.238802 Vertex 30444 0.457339 0.0923758 0.74786 Vertex 30445 0.355191 0.235787 0.533371 Vertex 30446 0.347592 0.917817 0.273159 Vertex 30447 0.488966 0.196206 0.735731 Vertex 30448 0.408033 0.358019 0.439959 Vertex 30449 0.425872 0.263191 0.677428 Vertex 30450 0.511004 0.28411 0.550997 Vertex 30451 0.415661 0.265164 0.225618 Vertex 30452 0.523395 0.521384 0.412158 Vertex 30453 0.431712 0.159456 0.766523 Vertex 30454 0.450113 0.173546 0.607055 Vertex 30455 0.453862 0.233418 0.696073 Vertex 30456 0.645597 0.422641 0.214489 Vertex 30457 0.581377 0.419117 0.424607 Vertex 30458 0.624577 0.52961 0.271187 Vertex 30459 0.511656 0.579929 0.566366 Vertex 30460 0.506841 0.637184 0.553123 Vertex 30461 0.449367 0.601813 0.463715 Vertex 30462 0.584167 0.502064 0.309009 Vertex 30463 0.523412 0.340073 0.546863 Vertex 30464 0.403508 0.175791 0.594552 Vertex 30465 0.314674 0.937753 0.254556 Vertex 30466 0.57459 0.506192 0.37696 Vertex 30467 0.614053 0.541882 0.269238 Vertex 30468 0.465406 0.0937617 0.756235 Vertex 30469 0.617677 0.537985 0.25888 Vertex 30470 0.491116 0.652458 0.404056 Vertex 30471 0.554773 0.551903 0.486375 Vertex 30472 0.491767 0.543375 0.381887 Vertex 30473 0.472625 0.76002 0.486778 Vertex 30474 0.52417 0.716269 0.457751 Vertex 30475 0.467739 0.569689 0.428972 Vertex 30476 0.465619 0.570323 0.430495 Vertex 30477 0.375103 0.345955 0.482614 Vertex 30478 0.573311 0.482561 0.318556 Vertex 30479 0.462486 0.739812 0.420361 Vertex 30480 0.509607 0.271311 0.485439 Vertex 30481 0.301413 0.981634 0.213447 Vertex 30482 0.352295 0.206269 0.492979 Vertex 30483 0.496695 0.631308 0.405454 Vertex 30484 0.475362 0.101189 0.781098 Vertex 30485 0.495961 0.189881 0.746475 Vertex 30486 0.497501 0.560716 0.38293 Vertex 30487 0.341036 0.260443 0.205972 Vertex 30488 0.366799 0.459302 0.485883 Vertex 30489 0.514753 0.179107 0.470449 Vertex 30490 0.372189 0.372417 0.557204 Vertex 30491 0.454561 0.41246 0.627956 Vertex 30492 0.487515 0.41689 0.615584 Vertex 30493 0.382512 0.436174 0.404003 Vertex 30494 0.554175 0.454659 0.536569 Vertex 30495 0.372556 0.385097 0.509343 Vertex 30496 0.403674 0.289482 0.227821 Vertex 30497 0.362594 0.223355 0.218321 Vertex 30498 0.413713 0.365855 0.434101 Vertex 30499 0.506266 0.0688746 0.731413 Vertex 30500 0.66831 0.48923 0.200233 Vertex 30501 0.495937 0.606338 0.40283 Vertex 30502 0.450617 0.321121 0.638327 Vertex 30503 0.489013 0.737662 0.511066 Vertex 30504 0.41074 0.368307 0.293041 Vertex 30505 0.61307 0.460937 0.378346 Vertex 30506 0.380244 0.476383 0.542705 Vertex 30507 0.48745 0.0409907 0.641768 Vertex 30508 0.375719 0.351486 0.291898 Vertex 30509 0.369755 0.366186 0.231102 Vertex 30510 0.595414 0.516782 0.239234 Vertex 30511 0.595823 0.517321 0.243487 Vertex 30512 0.539024 0.662041 0.489129 Vertex 30513 0.394452 0.226062 0.720989 Vertex 30514 0.527783 0.0810576 0.711306 Vertex 30515 0.627894 0.449121 0.195685 Vertex 30516 0.41395 0.848178 0.34307 Vertex 30517 0.417118 0.84729 0.343177 Vertex 30518 0.410189 0.247319 0.747618 Vertex 30519 0.399747 0.429198 0.340358 Vertex 30520 0.534174 0.1322 0.437661 Vertex 30521 0.400831 0.426657 0.358232 Vertex 30522 0.478803 0.308038 0.63103 Vertex 30523 0.530413 0.550707 0.424157 Vertex 30524 0.397591 0.850796 0.360761 Vertex 30525 0.408862 0.159308 0.634128 Vertex 30526 0.457144 0.514851 0.423589 Vertex 30527 0.420607 0.375118 0.318071 Vertex 30528 0.413357 0.155973 0.634998 Vertex 30529 0.466596 0.122706 0.813418 Vertex 30530 0.511443 0.748986 0.447333 Vertex 30531 0.398213 0.172172 0.683665 Vertex 30532 0.439014 0.553858 0.55647 Vertex 30533 0.436438 0.434362 0.39853 Vertex 30534 0.378816 0.321986 0.464224 Vertex 30535 0.595278 0.513791 0.24922 Vertex 30536 0.463741 0.459498 0.393934 Vertex 30537 0.532243 0.425739 0.569576 Vertex 30538 0.415484 0.472771 0.595873 Vertex 30539 0.370993 0.450247 0.551086 Vertex 30540 0.477968 0.529373 0.403866 Vertex 30541 0.558486 0.434877 0.350752 Vertex 30542 0.53014 0.0778771 0.711021 Vertex 30543 0.403324 0.242355 0.741588 Vertex 30544 0.319276 0.983014 0.229414 Vertex 30545 0.317114 0.986579 0.228307 Vertex 30546 0.491584 0.10524 0.647536 Vertex 30547 0.512799 0.043958 0.63029 Vertex 30548 0.372047 0.3431 0.420213 Vertex 30549 0.381268 0.348152 0.453433 Vertex 30550 0.369228 0.884277 0.307054 Vertex 30551 0.414945 0.153539 0.689564 Vertex 30552 0.537248 0.154273 0.4537 Vertex 30553 0.568241 0.402504 0.399703 Vertex 30554 0.467917 0.0623419 0.655046 Vertex 30555 0.463534 0.734404 0.422428 Vertex 30556 0.578931 0.505902 0.480517 Vertex 30557 0.455989 0.0836161 0.659447 Vertex 30558 0.393357 0.255983 0.216248 Vertex 30559 0.394144 0.255954 0.216225 Vertex 30560 0.522962 0.0672933 0.650942 Vertex 30561 0.49894 0.106957 0.641258 Vertex 30562 0.513344 0.170513 0.778824 Vertex 30563 0.343126 0.94213 0.268083 Vertex 30564 0.345419 0.940809 0.271809 Vertex 30565 0.48915 0.658185 0.405874 Vertex 30566 0.376566 0.321707 0.468257 Vertex 30567 0.466815 0.45245 0.615015 Vertex 30568 0.532977 0.085464 0.717483 Vertex 30569 0.32312 0.935656 0.243646 Vertex 30570 0.354741 0.233418 0.526679 Vertex 30571 0.31073 1 0.214045 Vertex 30572 0.500272 0.0455867 0.678305 Vertex 30573 0.525367 0.121563 0.741879 Vertex 30574 0.397194 0.356911 0.316791 Vertex 30575 0.465939 0.0910432 0.660495 Vertex 30576 0.532515 0.620991 0.441197 Vertex 30577 0.501759 0.0389297 0.630698 Vertex 30578 0.419795 0.837749 0.430797 Vertex 30579 0.42085 0.861422 0.422481 Vertex 30580 0.453199 0.805292 0.372731 Vertex 30581 0.38744 0.252063 0.463981 Vertex 30582 0.448668 0.17919 0.584188 Vertex 30583 0.4049 0.42655 0.324284 Vertex 30584 0.4792 0.173042 0.500329 Vertex 30585 0.452251 0.49934 0.417506 Vertex 30586 0.449178 0.495976 0.419176 Vertex 30587 0.438191 0.20849 0.795881 Vertex 30588 0.459039 0.489437 0.40883 Vertex 30589 0.456847 0.488525 0.408599 Vertex 30590 0.459376 0.182536 0.479973 Vertex 30591 0.563491 0.471592 0.530333 Vertex 30592 0.454964 0.166024 0.491291 Vertex 30593 0.380054 0.880771 0.315133 Vertex 30594 0.676199 0.477805 0.199363 Vertex 30595 0.36722 0.246637 0.57785 Vertex 30596 0.452625 0.481506 0.613375 Vertex 30597 0.459116 0.261557 0.625232 Vertex 30598 0.606063 0.498072 0.209348 Vertex 30599 0.495475 0.198439 0.466007 Vertex 30600 0.405664 0.404008 0.293219 Vertex 30601 0.494427 0.413354 0.397582 Vertex 30602 0.355659 0.174174 0.453386 Vertex 30603 0.489102 0.311023 0.439621 Vertex 30604 0.363654 0.219381 0.228224 Vertex 30605 0.462231 0.755838 0.403659 Vertex 30606 0.373285 0.200547 0.476058 Vertex 30607 0.475344 0.546531 0.580818 Vertex 30608 0.420909 0.49501 0.590637 Vertex 30609 0.488753 0.194873 0.77485 Vertex 30610 0.607627 0.521686 0.212635 Vertex 30611 0.37444 0.378381 0.506103 Vertex 30612 0.611014 0.469495 0.218374 Vertex 30613 0.612904 0.469412 0.217368 Vertex 30614 0.424978 0.427344 0.612913 Vertex 30615 0.435869 0.156234 0.77055 Vertex 30616 0.394962 0.186878 0.604917 Vertex 30617 0.353396 0.892711 0.310424 Vertex 30618 0.411326 0.167315 0.50759 Vertex 30619 0.427578 0.285976 0.639505 Vertex 30620 0.466057 0.11577 0.787122 Vertex 30621 0.390194 0.30465 0.196395 Vertex 30622 0.51489 0.311858 0.565508 Vertex 30623 0.473674 0.522278 0.412798 Vertex 30624 0.397479 0.170229 0.665133 Vertex 30625 0.478661 0.121071 0.812269 Vertex 30626 0.505958 0.174132 0.770728 Vertex 30627 0.542282 0.135641 0.442109 Vertex 30628 0.454745 0.161239 0.800744 Vertex 30629 0.617719 0.540988 0.28828 Vertex 30630 0.364869 0.387893 0.50666 Vertex 30631 0.529365 0.668597 0.443282 Vertex 30632 0.583906 0.466706 0.307457 Vertex 30633 0.50857 0.172948 0.751977 Vertex 30634 0.5812 0.500056 0.425502 Vertex 30635 0.348741 0.132905 0.458071 Vertex 30636 0.360752 0.407479 0.417169 Vertex 30637 0.609771 0.476579 0.219162 Vertex 30638 0.483766 0.653021 0.414865 Vertex 30639 0.51438 0.279798 0.490296 Vertex 30640 0.566985 0.499008 0.362479 Vertex 30641 0.371431 0.349058 0.277305 Vertex 30642 0.445766 0.170703 0.571383 Vertex 30643 0.397313 0.420402 0.603419 Vertex 30644 0.417172 0.410304 0.356331 Vertex 30645 0.455971 0.744484 0.426319 Vertex 30646 0.357862 0.389267 0.343745 Vertex 30647 0.37502 0.381218 0.510646 Vertex 30648 0.540594 0.53282 0.567598 Vertex 30649 0.419914 0.406561 0.323087 Vertex 30650 0.400268 0.846633 0.364315 Vertex 30651 0.506722 0.0569582 0.766333 Vertex 30652 0.535814 0.443815 0.571756 Vertex 30653 0.313946 0.966975 0.254959 Vertex 30654 0.492561 0.118708 0.796331 Vertex 30655 0.462557 0.356633 0.632303 Vertex 30656 0.460383 0.356633 0.633044 Vertex 30657 0.484998 0.38961 0.408148 Vertex 30658 0.39919 0.854545 0.341927 Vertex 30659 0.451523 0.478563 0.615904 Vertex 30660 0.405054 0.374212 0.252513 Vertex 30661 0.372313 0.302541 0.471651 Vertex 30662 0.582479 0.503296 0.457757 Vertex 30663 0.370211 0.266212 0.474695 Vertex 30664 0.422911 0.859959 0.422635 Vertex 30665 0.421466 0.401633 0.32208 Vertex 30666 0.466987 0.712093 0.486789 Vertex 30667 0.467674 0.531192 0.420432 Vertex 30668 0.468728 0.534579 0.419153 Vertex 30669 0.366728 0.354726 0.374052 Vertex 30670 0.65406 0.426272 0.199629 Vertex 30671 0.358549 0.392749 0.362366 Vertex 30672 0.691711 0.449696 0.214021 Vertex 30673 0.404657 0.270701 0.442518 Vertex 30674 0.368736 0.385583 0.252519 Vertex 30675 0.512094 0.106223 0.709292 Vertex 30676 0.409976 0.344201 0.633014 Vertex 30677 0.372153 0.371683 0.511623 Vertex 30678 0.540552 0.14074 0.445171 Vertex 30679 0.441881 0.155103 0.605047 Vertex 30680 0.44239 0.156885 0.603128 Vertex 30681 0.600928 0.526649 0.268806 Vertex 30682 0.462995 0.106744 0.772795 Vertex 30683 0.47593 0.354294 0.419342 Vertex 30684 0.492792 0.0371825 0.671073 Vertex 30685 0.393534 0.493701 0.561249 Vertex 30686 0.510051 0.418981 0.594179 Vertex 30687 0.587383 0.508792 0.304087 Vertex 30688 0.545332 0.138863 0.447339 Vertex 30689 0.379586 0.396196 0.575884 Vertex 30690 0.447312 0.579609 0.522071 Vertex 30691 0.455841 0.200162 0.474233 Vertex 30692 0.456119 0.805831 0.473256 Vertex 30693 0.519616 0.024123 0.634755 Vertex 30694 0.420956 0.16911 0.536581 Vertex 30695 0.518828 0.110683 0.683576 Vertex 30696 0.379711 0.38274 0.594558 Vertex 30697 0.402033 0.502662 0.462382 Vertex 30698 0.542886 0.458811 0.561362 Vertex 30699 0.518348 0.296352 0.498635 Vertex 30700 0.473283 0.160694 0.659423 Vertex 30701 0.463191 0.296252 0.633677 Vertex 30702 0.412084 0.160777 0.631646 Vertex 30703 0.501647 0.628827 0.408978 Vertex 30704 0.359982 0.33684 0.542089 Vertex 30705 0.367528 0.362822 0.466196 Vertex 30706 0.410112 0.825856 0.40222 Vertex 30707 0.486301 0.181204 0.713017 Vertex 30708 0.451677 0.304745 0.63623 Vertex 30709 0.458411 0.163495 0.653495 Vertex 30710 0.356127 0.26806 0.207761 Vertex 30711 0.471885 0.167428 0.671008 Vertex 30712 0.373178 0.363201 0.477888 Vertex 30713 0.40195 0.426722 0.318515 Vertex 30714 0.38282 0.226222 0.644214 Vertex 30715 0.674979 0.478758 0.216444 Vertex 30716 0.433666 0.7883 0.428712 Vertex 30717 0.361771 0.332137 0.566503 Vertex 30718 0.535554 0.0487139 0.795502 Vertex 30719 0.553849 0.563127 0.477663 Vertex 30720 0.39803 0.312918 0.220554 Vertex 30721 0.508552 0.595476 0.562232 Vertex 30722 0.427039 0.385583 0.6396 Vertex 30723 0.496808 0.777 0.435037 Vertex 30724 0.439245 0.548486 0.479961 Vertex 30725 0.399883 0.172936 0.538607 Vertex 30726 0.420873 0.214744 0.784314 Vertex 30727 0.514475 0.127385 0.709434 Vertex 30728 0.30428 0.993189 0.210491 Vertex 30729 0.605044 0.526874 0.224303 Vertex 30730 0.373539 0.385447 0.565537 Vertex 30731 0.545048 0.0440172 0.712627 Vertex 30732 0.377762 0.266455 0.232761 Vertex 30733 0.437688 0.256078 0.442737 Vertex 30734 0.490861 0.0724105 0.728707 Vertex 30735 0.518716 0.61819 0.428031 Vertex 30736 0.516903 0.620257 0.42652 Vertex 30737 0.38484 0.210515 0.476235 Vertex 30738 0.41328 0.178035 0.56347 Vertex 30739 0.45988 0.117103 0.640684 Vertex 30740 0.549952 0.549635 0.450685 Vertex 30741 0.469765 0.219529 0.729222 Vertex 30742 0.549543 0.581629 0.498214 Vertex 30743 0.551047 0.575339 0.490645 Vertex 30744 0.500912 0.097108 0.811298 Vertex 30745 0.473994 0.0792689 0.735731 Vertex 30746 0.488824 0.576891 0.571294 Vertex 30747 0.65515 0.442139 0.197515 Vertex 30748 0.42002 0.321802 0.64294 Vertex 30749 0.362298 0.347228 0.396913 Vertex 30750 0.451896 0.236368 0.635898 Vertex 30751 0.513741 0.299053 0.553064 Vertex 30752 0.514753 0.301339 0.551015 Vertex 30753 0.452625 0.240656 0.625859 Vertex 30754 0.475107 0.0549741 0.651185 Vertex 30755 0.477749 0.533644 0.402137 Vertex 30756 0.442088 0.461026 0.409428 Vertex 30757 0.379036 0.347885 0.432591 Vertex 30758 0.478116 0.406472 0.620411 Vertex 30759 0.541328 0.569037 0.442358 Vertex 30760 0.59616 0.52582 0.304223 Vertex 30761 0.598405 0.524943 0.307759 Vertex 30762 0.417047 0.413579 0.373738 Vertex 30763 0.417266 0.412134 0.373181 Vertex 30764 0.416751 0.409771 0.368692 Vertex 30765 0.452796 0.191989 0.586249 Vertex 30766 0.540819 0.659666 0.473635 Vertex 30767 0.532379 0.0693899 0.7969 Vertex 30768 0.427667 0.398571 0.409836 Vertex 30769 0.514925 0.737283 0.486837 Vertex 30770 0.501907 0.407455 0.427421 Vertex 30771 0.438416 0.099477 0.700148 Vertex 30772 0.506379 0.103581 0.804842 Vertex 30773 0.429307 0.408527 0.398506 Vertex 30774 0.479691 0.130909 0.64544 Vertex 30775 0.477595 0.131453 0.645582 Vertex 30776 0.415276 0.4797 0.594061 Vertex 30777 0.434353 0.109593 0.706479 Vertex 30778 0.442988 0.13496 0.744046 Vertex 30779 0.413328 0.263695 0.442832 Vertex 30780 0.430936 0.551169 0.511937 Vertex 30781 0.547245 0.455553 0.378387 Vertex 30782 0.408969 0.377913 0.276126 Vertex 30783 0.620704 0.492102 0.322637 Vertex 30784 0.403372 0.341548 0.242065 Vertex 30785 0.378035 0.404897 0.561427 Vertex 30786 0.452038 0.75399 0.45367 Vertex 30787 0.517401 0.0470022 0.658174 Vertex 30788 0.515506 0.594238 0.556126 Vertex 30789 0.525444 0.0521727 0.662912 Vertex 30790 0.412315 0.176714 0.573823 Vertex 30791 0.38035 0.331266 0.266016 Vertex 30792 0.356133 0.93748 0.295138 Vertex 30793 0.386569 0.420462 0.592574 Vertex 30794 0.506924 0.17431 0.756057 Vertex 30795 0.462592 0.699686 0.439077 Vertex 30796 0.334017 0.243481 0.214329 Vertex 30797 0.444593 0.116066 0.721635 Vertex 30798 0.39511 0.240247 0.71666 Vertex 30799 0.443166 0.575511 0.490094 Vertex 30800 0.444505 0.58093 0.495158 Vertex 30801 0.460715 0.229947 0.466344 Vertex 30802 0.542738 0.166066 0.444288 Vertex 30803 0.618453 0.449133 0.200909 Vertex 30804 0.381434 0.230397 0.2144 Vertex 30805 0.391781 0.312971 0.245903 Vertex 30806 0.383839 0.869672 0.374828 Vertex 30807 0.527546 0.398281 0.428126 Vertex 30808 0.348717 0.145585 0.468068 Vertex 30809 0.457481 0.584697 0.44276 Vertex 30810 0.554903 0.426473 0.522 Vertex 30811 0.411859 0.501087 0.579692 Vertex 30812 0.582846 0.502094 0.312859 Vertex 30813 0.35605 0.309009 0.548983 Vertex 30814 0.621977 0.464556 0.212304 Vertex 30815 0.599388 0.43403 0.359209 Vertex 30816 0.401032 0.507418 0.477343 Vertex 30817 0.477903 0.211167 0.488815 Vertex 30818 0.53306 0.0553236 0.723791 Vertex 30819 0.364182 0.178539 0.499369 Vertex 30820 0.352159 0.89418 0.30645 Vertex 30821 0.655559 0.484876 0.223083 Vertex 30822 0.652674 0.483058 0.222378 Vertex 30823 0.597031 0.434931 0.190058 Vertex 30824 0.409839 0.436423 0.382349 Vertex 30825 0.504217 0.652109 0.410784 Vertex 30826 0.477446 0.261651 0.609223 Vertex 30827 0.485039 0.189922 0.553082 Vertex 30828 0.410971 0.439918 0.384322 Vertex 30829 0.37207 0.448126 0.435037 Vertex 30830 0.391663 0.269298 0.619439 Vertex 30831 0.338086 0.244624 0.216035 Vertex 30832 0.365165 0.138347 0.470076 Vertex 30833 0.368446 0.105921 0.478587 Vertex 30834 0.5372 0.0514087 0.794448 Vertex 30835 0.570959 0.463034 0.318586 Vertex 30836 0.567613 0.460777 0.32166 Vertex 30837 0.39492 0.25808 0.219518 Vertex 30838 0.619507 0.512287 0.201969 Vertex 30839 0.438031 0.25657 0.737525 Vertex 30840 0.595005 0.519992 0.280095 Vertex 30841 0.402039 0.345208 0.21549 Vertex 30842 0.37239 0.442524 0.563541 Vertex 30843 0.480532 0.374176 0.628027 Vertex 30844 0.476357 0.220975 0.486671 Vertex 30845 0.484293 0.716778 0.403114 Vertex 30846 0.395637 0.178622 0.643379 Vertex 30847 0.588941 0.451585 0.314067 Vertex 30848 0.447993 0.170105 0.617402 Vertex 30849 0.482108 0.192291 0.563458 Vertex 30850 0.399966 0.843896 0.393448 Vertex 30851 0.509808 0.284163 0.481098 Vertex 30852 0.454745 0.426497 0.623769 Vertex 30853 0.43305 0.154001 0.586255 Vertex 30854 0.431285 0.153444 0.590389 Vertex 30855 0.511887 0.335501 0.45685 Vertex 30856 0.382832 0.0773855 0.475323 Vertex 30857 0.442035 0.163957 0.591532 Vertex 30858 0.585784 0.417796 0.407983 Vertex 30859 0.490589 0.772096 0.485368 Vertex 30860 0.308254 0.969563 0.248622 Vertex 30861 0.451748 0.158923 0.798452 Vertex 30862 0.662459 0.410618 0.21645 Vertex 30863 0.43356 0.227039 0.463709 Vertex 30864 0.564267 0.454712 0.519974 Vertex 30865 0.460579 0.171603 0.557364 Vertex 30866 0.363903 0.363195 0.26081 Vertex 30867 0.352194 0.202679 0.509598 Vertex 30868 0.313436 0.963783 0.258364 Vertex 30869 0.312246 0.963161 0.258009 Vertex 30870 0.363423 0.325711 0.505606 Vertex 30871 0.437457 0.167872 0.557281 Vertex 30872 0.35201 0.161754 0.453492 Vertex 30873 0.451446 0.166054 0.553147 Vertex 30874 0.485205 0.0791031 0.727877 Vertex 30875 0.38991 0.167576 0.517866 Vertex 30876 0.503465 0.194477 0.463496 Vertex 30877 0.555181 0.04779 0.738443 Vertex 30878 0.532225 0.59553 0.435144 Vertex 30879 0.477411 0.176691 0.795431 Vertex 30880 0.523572 0.358789 0.532347 Vertex 30881 0.604227 0.488631 0.206026 Vertex 30882 0.455391 0.11593 0.762383 Vertex 30883 0.483055 0.185883 0.792671 Vertex 30884 0.374836 0.297448 0.239589 Vertex 30885 0.428573 0.203781 0.475412 Vertex 30886 0.592251 0.464289 0.44568 Vertex 30887 0.433015 0.815426 0.377031 Vertex 30888 0.537526 0.118696 0.793098 Vertex 30889 0.537011 0.119294 0.795277 Vertex 30890 0.528008 0.103907 0.795141 Vertex 30891 0.380481 0.349111 0.28979 Vertex 30892 0.345188 0.0894085 0.445864 Vertex 30893 0.518923 0.379524 0.528284 Vertex 30894 0.358075 0.338741 0.235698 Vertex 30895 0.398918 0.370812 0.236498 Vertex 30896 0.525627 0.344853 0.528361 Vertex 30897 0.51011 0.597028 0.415427 Vertex 30898 0.381274 0.342792 0.464041 Vertex 30899 0.409768 0.237919 0.213322 Vertex 30900 0.508896 0.2679 0.528266 Vertex 30901 0.453726 0.376308 0.632955 Vertex 30902 0.388701 0.0730916 0.470514 Vertex 30903 0.415507 0.414178 0.367661 Vertex 30904 0.468142 0.524973 0.417032 Vertex 30905 0.529844 0.0612818 0.793643 Vertex 30906 0.349487 0.263991 0.222017 Vertex 30907 0.352117 0.396765 0.463531 Vertex 30908 0.468409 0.47094 0.394372 Vertex 30909 0.421483 0.170051 0.51372 Vertex 30910 0.553565 0.47264 0.370693 Vertex 30911 0.442521 0.130565 0.632967 Vertex 30912 0.548945 0.0479025 0.785197 Vertex 30913 0.344868 0.300842 0.213394 Vertex 30914 0.43539 0.801093 0.395663 Vertex 30915 0.378668 0.0854936 0.475051 Vertex 30916 0.498916 0.453747 0.6076 Vertex 30917 0.528227 0.398506 0.525944 Vertex 30918 0.468112 0.487026 0.611005 Vertex 30919 0.495256 0.482863 0.392442 Vertex 30920 0.580602 0.512121 0.366459 Vertex 30921 0.35358 0.284844 0.528408 Vertex 30922 0.592613 0.436909 0.192966 Vertex 30923 0.401234 0.838767 0.387378 Vertex 30924 0.36074 0.101491 0.481293 Vertex 30925 0.383863 0.911207 0.322815 Vertex 30926 0.494279 0.336449 0.619439 Vertex 30927 0.53274 0.151881 0.460226 Vertex 30928 0.554222 0.400141 0.413834 Vertex 30929 0.481545 0.566947 0.410067 Vertex 30930 0.482552 0.570192 0.407929 Vertex 30931 0.350553 0.19527 0.484722 Vertex 30932 0.36212 0.342502 0.536261 Vertex 30933 0.569271 0.538323 0.484172 Vertex 30934 0.499905 0.709422 0.522166 Vertex 30935 0.359153 0.33039 0.22727 Vertex 30936 0.619188 0.472593 0.186765 Vertex 30937 0.524129 0.365671 0.524138 Vertex 30938 0.523655 0.36939 0.526163 Vertex 30939 0.400405 0.231025 0.733374 Vertex 30940 0.399641 0.187121 0.569849 Vertex 30941 0.399913 0.186493 0.573959 Vertex 30942 0.494208 0.240194 0.497136 Vertex 30943 0.524538 0.0316329 0.642295 Vertex 30944 0.427518 0.443933 0.394372 Vertex 30945 0.511632 0.0675657 0.681787 Vertex 30946 0.444866 0.244002 0.664996 Vertex 30947 0.52436 0.135884 0.727078 Vertex 30948 0.386421 0.201945 0.685708 Vertex 30949 0.385473 0.207222 0.685708 Vertex 30950 0.386261 0.202135 0.687775 Vertex 30951 0.315918 0.996079 0.217101 Vertex 30952 0.392261 0.409309 0.596679 Vertex 30953 0.419363 0.516527 0.46651 Vertex 30954 0.436545 0.256771 0.720954 Vertex 30955 0.637903 0.513874 0.235947 Vertex 30956 0.643962 0.495644 0.237824 Vertex 30957 0.478181 0.640032 0.421942 Vertex 30958 0.509808 0.300794 0.575748 Vertex 30959 0.369921 0.265406 0.23192 Vertex 30960 0.621711 0.46933 0.215135 Vertex 30961 0.461597 0.383007 0.400775 Vertex 30962 0.502221 0.309098 0.596566 Vertex 30963 0.534393 0.0887037 0.758012 Vertex 30964 0.512414 0.295108 0.565531 Vertex 30965 0.363216 0.342543 0.567948 Vertex 30966 0.412025 0.373376 0.358244 Vertex 30967 0.49445 0.203331 0.475187 Vertex 30968 0.493159 0.204284 0.477201 Vertex 30969 0.643482 0.504451 0.240028 Vertex 30970 0.46476 0.0768702 0.656266 Vertex 30971 0.405462 0.424294 0.366731 Vertex 30972 0.405776 0.513915 0.484871 Vertex 30973 0.550177 0.0413461 0.723352 Vertex 30974 0.427773 0.110126 0.672169 Vertex 30975 0.356944 0.0888458 0.440545 Vertex 30976 0.474201 0.077196 0.714409 Vertex 30977 0.500853 0.02282 0.642182 Vertex 30978 0.49849 0.0254852 0.64156 Vertex 30979 0.512023 0.390736 0.569523 Vertex 30980 0.37502 0.254503 0.234212 Vertex 30981 0.504353 0.651688 0.547005 Vertex 30982 0.504063 0.653826 0.546958 Vertex 30983 0.523466 0.363977 0.530303 Vertex 30984 0.443237 0.141569 0.762335 Vertex 30985 0.462871 0.801828 0.477337 Vertex 30986 0.461769 0.800608 0.478018 Vertex 30987 0.383448 0.368324 0.613268 Vertex 30988 0.501374 0.688042 0.532897 Vertex 30989 0.439707 0.483023 0.421344 Vertex 30990 0.341977 0.936728 0.263286 Vertex 30991 0.457469 0.337562 0.413959 Vertex 30992 0.35647 0.191432 0.511617 Vertex 30993 0.513006 0.279621 0.53038 Vertex 30994 0.337571 0.94271 0.300836 Vertex 30995 0.345075 0.283607 0.231156 Vertex 30996 0.44595 0.598592 0.491332 Vertex 30997 0.40291 0.848866 0.408042 Vertex 30998 0.407085 0.84809 0.413982 Vertex 30999 0.522713 0.428102 0.588387 Vertex 31000 0.447004 0.606883 0.473351 Vertex 31001 0.444102 0.236071 0.778593 Vertex 31002 0.364774 0.260662 0.202869 Vertex 31003 0.349316 0.0845164 0.450105 Vertex 31004 0.366018 0.367004 0.343734 Vertex 31005 0.473206 0.317881 0.632363 Vertex 31006 0.365923 0.458627 0.502911 Vertex 31007 0.525616 0.117577 0.74792 Vertex 31008 0.442041 0.812364 0.367235 Vertex 31009 0.448834 0.507015 0.425052 Vertex 31010 0.479111 0.225677 0.487334 Vertex 31011 0.396525 0.847432 0.366814 Vertex 31012 0.660634 0.437406 0.203899 Vertex 31013 0.419819 0.477657 0.41631 Vertex 31014 0.42053 0.154712 0.712514 Vertex 31015 0.422354 0.354157 0.641768 Vertex 31016 0.461266 0.760073 0.399294 Vertex 31017 0.460987 0.75954 0.401758 Vertex 31018 0.495907 0.11641 0.642745 Vertex 31019 0.5968 0.533134 0.273337 Vertex 31020 0.499384 0.52916 0.391405 Vertex 31021 0.503417 0.0835688 0.779091 Vertex 31022 0.522157 0.311911 0.52396 Vertex 31023 0.658792 0.451935 0.202632 Vertex 31024 0.349878 0.10383 0.457721 Vertex 31025 0.350713 0.101082 0.458225 Vertex 31026 0.42589 0.165071 0.577856 Vertex 31027 0.522826 0.391926 0.499357 Vertex 31028 0.484335 0.198326 0.726509 Vertex 31029 0.546872 0.601813 0.486926 Vertex 31030 0.520267 0.443471 0.41461 Vertex 31031 0.452044 0.185421 0.47633 Vertex 31032 0.358608 0.436861 0.502804 Vertex 31033 0.487746 0.383931 0.621672 Vertex 31034 0.620331 0.501276 0.185243 Vertex 31035 0.485294 0.506476 0.395634 Vertex 31036 0.586708 0.48843 0.418501 Vertex 31037 0.634936 0.516509 0.231813 Vertex 31038 0.479383 0.166948 0.517895 Vertex 31039 0.54413 0.609525 0.509544 Vertex 31040 0.392983 0.442464 0.393389 Vertex 31041 0.499609 0.202229 0.474263 Vertex 31042 0.381535 0.314837 0.198622 Vertex 31043 0.492656 0.211587 0.528177 Vertex 31044 0.432772 0.17832 0.785102 Vertex 31045 0.450641 0.244653 0.718887 Vertex 31046 0.513373 0.149879 0.709914 Vertex 31047 0.427862 0.259099 0.741695 Vertex 31048 0.610043 0.48827 0.266265 Vertex 31049 0.614047 0.486831 0.267829 Vertex 31050 0.61195 0.489994 0.262741 Vertex 31051 0.607212 0.485984 0.270642 Vertex 31052 0.420014 0.288665 0.432656 Vertex 31053 0.521014 0.0953193 0.67118 Vertex 31054 0.322569 0.251198 0.222461 Vertex 31055 0.488143 0.23603 0.483266 Vertex 31056 0.488694 0.235769 0.485238 Vertex 31057 0.421673 0.402315 0.377327 Vertex 31058 0.546191 0.618101 0.485368 Vertex 31059 0.497678 0.324426 0.442571 Vertex 31060 0.38773 0.318456 0.251778 Vertex 31061 0.40349 0.205303 0.745788 Vertex 31062 0.402631 0.198788 0.739622 Vertex 31063 0.356198 0.305574 0.197023 Vertex 31064 0.49814 0.0783924 0.6405 Vertex 31065 0.432476 0.195187 0.795342 Vertex 31066 0.490618 0.515899 0.389243 Vertex 31067 0.520184 0.0595701 0.671784 Vertex 31068 0.501534 0.44154 0.391879 Vertex 31069 0.506083 0.318556 0.590282 Vertex 31070 0.463534 0.76538 0.392844 Vertex 31071 0.487432 0.211178 0.561385 Vertex 31072 0.494658 0.657605 0.536119 Vertex 31073 0.499905 0.159604 0.690186 Vertex 31074 0.468717 0.421107 0.617592 Vertex 31075 0.495416 0.292923 0.448991 Vertex 31076 0.405409 0.366512 0.423352 Vertex 31077 0.369044 0.325581 0.491101 Vertex 31078 0.366841 0.330206 0.499423 Vertex 31079 0.436029 0.560639 0.520069 Vertex 31080 0.49108 0.219358 0.501436 Vertex 31081 0.492152 0.221952 0.503764 Vertex 31082 0.574631 0.417737 0.455642 Vertex 31083 0.364667 0.397387 0.300208 Vertex 31084 0.475942 0.0772256 0.720966 Vertex 31085 0.477932 0.0759226 0.727605 Vertex 31086 0.520415 0.115486 0.712591 Vertex 31087 0.528648 0.138975 0.455956 Vertex 31088 0.595823 0.444668 0.401823 Vertex 31089 0.548572 0.553283 0.447238 Vertex 31090 0.393297 0.854652 0.381532 Vertex 31091 0.322593 0.965181 0.21549 Vertex 31092 0.418783 0.279727 0.641993 Vertex 31093 0.42143 0.278572 0.642402 Vertex 31094 0.525852 0.485421 0.411098 Vertex 31095 0.365822 0.298153 0.235651 Vertex 31096 0.540547 0.0391666 0.724306 Vertex 31097 0.554121 0.469365 0.370729 Vertex 31098 0.454425 0.590164 0.530422 Vertex 31099 0.326744 0.920459 0.275309 Vertex 31100 0.54275 0.414249 0.402587 Vertex 31101 0.563929 0.417897 0.492991 Vertex 31102 0.322575 0.984601 0.216444 Vertex 31103 0.435165 0.151964 0.590412 Vertex 31104 0.461515 0.122338 0.643124 Vertex 31105 0.473176 0.0757805 0.749406 Vertex 31106 0.505242 0.543191 0.395012 Vertex 31107 0.596693 0.519761 0.245773 Vertex 31108 0.561412 0.520371 0.52823 Vertex 31109 0.517531 0.397091 0.561385 Vertex 31110 0.422425 0.830896 0.364338 Vertex 31111 0.521635 0.602595 0.547438 Vertex 31112 0.551237 0.144318 0.41262 Vertex 31113 0.581922 0.407047 0.387419 Vertex 31114 0.374434 0.183899 0.542729 Vertex 31115 0.515097 0.0746137 0.641993 Vertex 31116 0.367161 0.151105 0.472445 Vertex 31117 0.453312 0.745225 0.453895 Vertex 31118 0.5 0.424074 0.400544 Vertex 31119 0.485478 0.108018 0.799287 Vertex 31120 0.373622 0.248462 0.235834 Vertex 31121 0.5873 0.514419 0.339611 Vertex 31122 0.395678 0.460055 0.592776 Vertex 31123 0.552327 0.0185735 0.724626 Vertex 31124 0.448579 0.294315 0.635786 Vertex 31125 0.525165 0.625261 0.432402 Vertex 31126 0.459862 0.362058 0.410109 Vertex 31127 0.495066 0.626677 0.549664 Vertex 31128 0.350648 0.11593 0.471918 Vertex 31129 0.491554 0.698365 0.521159 Vertex 31130 0.532059 0.0650901 0.802065 Vertex 31131 0.547239 0.416055 0.530286 Vertex 31132 0.66208 0.488004 0.217285 Vertex 31133 0.368766 0.259667 0.581546 Vertex 31134 0.645141 0.419502 0.204883 Vertex 31135 0.565096 0.47524 0.326274 Vertex 31136 0.516566 0.0532862 0.634051 Vertex 31137 0.452619 0.097108 0.663534 Vertex 31138 0.502411 0.536196 0.390274 Vertex 31139 0.593768 0.451739 0.192558 Vertex 31140 0.592938 0.451881 0.193156 Vertex 31141 0.350376 0.0988788 0.453202 Vertex 31142 0.51409 0.400437 0.571655 Vertex 31143 0.491584 0.165698 0.68399 Vertex 31144 0.490796 0.22146 0.550766 Vertex 31145 0.490589 0.218688 0.546063 Vertex 31146 0.551782 0.0225772 0.722233 Vertex 31147 0.512988 0.091588 0.803741 Vertex 31148 0.513285 0.0947152 0.804055 Vertex 31149 0.43382 0.832596 0.354465 Vertex 31150 0.545687 0.0527946 0.797267 Vertex 31151 0.545362 0.0546188 0.797534 Vertex 31152 0.372621 0.908051 0.300907 Vertex 31153 0.6685 0.461754 0.217664 Vertex 31154 0.554086 0.47421 0.358303 Vertex 31155 0.459009 0.141735 0.797676 Vertex 31156 0.510282 0.172444 0.754038 Vertex 31157 0.414098 0.367057 0.345801 Vertex 31158 0.456593 0.180073 0.646316 Vertex 31159 0.57164 0.505943 0.374839 Vertex 31160 0.589077 0.481743 0.455684 Vertex 31161 0.50812 0.647969 0.542812 Vertex 31162 0.483653 0.563435 0.397351 Vertex 31163 0.447004 0.0836991 0.661739 Vertex 31164 0.521861 0.619605 0.538814 Vertex 31165 0.604784 0.51343 0.364487 Vertex 31166 0.412516 0.238286 0.762335 Vertex 31167 0.47872 0.465995 0.383261 Vertex 31168 0.53614 0.126378 0.433906 Vertex 31169 0.469581 0.424838 0.616176 Vertex 31170 0.622581 0.491237 0.24585 Vertex 31171 0.624293 0.490621 0.247615 Vertex 31172 0.479591 0.226998 0.485321 Vertex 31173 0.445778 0.118542 0.743673 Vertex 31174 0.443308 0.121888 0.739444 Vertex 31175 0.508606 0.0305728 0.629342 Vertex 31176 0.342487 0.904698 0.292325 Vertex 31177 0.419244 0.38646 0.392181 Vertex 31178 0.498324 0.741725 0.416582 Vertex 31179 0.359811 0.264062 0.207311 Vertex 31180 0.396809 0.361188 0.230504 Vertex 31181 0.4706 0.740854 0.484219 Vertex 31182 0.494563 0.329105 0.615252 Vertex 31183 0.481136 0.30054 0.627145 Vertex 31184 0.541743 0.647377 0.473635 Vertex 31185 0.497045 0.397002 0.428564 Vertex 31186 0.494196 0.68437 0.529178 Vertex 31187 0.536187 0.39994 0.421504 Vertex 31188 0.434525 0.846662 0.434954 Vertex 31189 0.493988 0.733338 0.511558 Vertex 31190 0.492958 0.736329 0.511446 Vertex 31191 0.414874 0.169193 0.500619 Vertex 31192 0.41623 0.168825 0.503456 Vertex 31193 0.65605 0.502917 0.210675 Vertex 31194 0.371158 0.918202 0.340731 Vertex 31195 0.583361 0.482892 0.301582 Vertex 31196 0.412451 0.205279 0.764473 Vertex 31197 0.522921 0.395948 0.532589 Vertex 31198 0.419286 0.2559 0.206215 Vertex 31199 0.500598 0.0824494 0.729328 Vertex 31200 0.464245 0.193375 0.577927 Vertex 31201 0.464452 0.210788 0.652541 Vertex 31202 0.365532 0.882074 0.3086 Vertex 31203 0.467378 0.193825 0.687775 Vertex 31204 0.539676 0.484089 0.577975 Vertex 31205 0.417681 0.261764 0.727202 Vertex 31206 0.402483 0.459326 0.59531 Vertex 31207 0.391011 0.339611 0.453895 Vertex 31208 0.429479 0.534242 0.489176 Vertex 31209 0.530277 0.10203 0.76657 Vertex 31210 0.468717 0.121089 0.809977 Vertex 31211 0.413594 0.376042 0.358244 Vertex 31212 0.40795 0.297898 0.633855 Vertex 31213 0.606158 0.504403 0.226974 Vertex 31214 0.397881 0.169969 0.675669 Vertex 31215 0.388992 0.865964 0.383125 Vertex 31216 0.588135 0.430649 0.196259 Vertex 31217 0.521884 0.0534816 0.665358 Vertex 31218 0.412131 0.188234 0.752071 Vertex 31219 0.498602 0.184905 0.747393 Vertex 31220 0.511129 0.0470319 0.668112 Vertex 31221 0.424723 0.264429 0.438573 Vertex 31222 0.395696 0.264115 0.633867 Vertex 31223 0.474775 0.212079 0.488329 Vertex 31224 0.42204 0.259383 0.219026 Vertex 31225 0.503619 0.55185 0.392382 Vertex 31226 0.534346 0.668064 0.452515 Vertex 31227 0.337204 0.109895 0.463898 Vertex 31228 0.516773 0.0227667 0.660389 Vertex 31229 0.588082 0.486713 0.453587 Vertex 31230 0.588034 0.484888 0.457804 Vertex 31231 0.402839 0.248391 0.735458 Vertex 31232 0.368736 0.405987 0.538785 Vertex 31233 0.48848 0.167712 0.693212 Vertex 31234 0.525343 0.328382 0.515473 Vertex 31235 0.4144 0.1608 0.708522 Vertex 31236 0.458944 0.18195 0.635981 Vertex 31237 0.535352 0.410233 0.544749 Vertex 31238 0.450196 0.517872 0.429352 Vertex 31239 0.369133 0.362876 0.298105 Vertex 31240 0.515713 0.304247 0.550997 Vertex 31241 0.384461 0.406585 0.285656 Vertex 31242 0.53357 0.483603 0.586231 Vertex 31243 0.593312 0.43377 0.404654 Vertex 31244 0.518117 0.104073 0.715002 Vertex 31245 0.520374 0.387615 0.513678 Vertex 31246 0.445044 0.374573 0.414266 Vertex 31247 0.540369 0.0431466 0.783408 Vertex 31248 0.534541 0.0100626 0.743709 Vertex 31249 0.655612 0.480109 0.218126 Vertex 31250 0.374203 0.179421 0.499316 Vertex 31251 0.492561 0.36393 0.4347 Vertex 31252 0.451724 0.141854 0.65051 Vertex 31253 0.435561 0.529054 0.463952 Vertex 31254 0.50385 0.262143 0.5056 Vertex 31255 0.473757 0.134717 0.645031 Vertex 31256 0.403176 0.835972 0.389297 Vertex 31257 0.386972 0.322909 0.255883 Vertex 31258 0.382714 0.297768 0.19286 Vertex 31259 0.43799 0.495354 0.430891 Vertex 31260 0.43674 0.49315 0.432633 Vertex 31261 0.453993 0.67282 0.464035 Vertex 31262 0.462361 0.539495 0.426213 Vertex 31263 0.338744 0.0970843 0.463081 Vertex 31264 0.33904 0.101651 0.464307 Vertex 31265 0.429017 0.144412 0.711412 Vertex 31266 0.424267 0.85666 0.42867 Vertex 31267 0.375855 0.233744 0.234751 Vertex 31268 0.484577 0.0513554 0.681704 Vertex 31269 0.36892 0.363746 0.335448 Vertex 31270 0.564255 0.403185 0.45367 Vertex 31271 0.384692 0.905628 0.317538 Vertex 31272 0.445831 0.470419 0.615744 Vertex 31273 0.368973 0.363201 0.237961 Vertex 31274 0.354267 0.279579 0.527537 Vertex 31275 0.573571 0.461837 0.317443 Vertex 31276 0.368446 0.359837 0.565555 Vertex 31277 0.509701 0.759084 0.461962 Vertex 31278 0.51069 0.754772 0.453865 Vertex 31279 0.526498 0.503474 0.416239 Vertex 31280 0.523531 0.50547 0.413532 Vertex 31281 0.476221 0.0786411 0.731318 Vertex 31282 0.540866 0.13352 0.454173 Vertex 31283 0.610428 0.45444 0.373465 Vertex 31284 0.501469 0.421018 0.40408 Vertex 31285 0.500954 0.41891 0.405933 Vertex 31286 0.377934 0.223788 0.222396 Vertex 31287 0.50594 0.374383 0.59444 Vertex 31288 0.507036 0.372689 0.592373 Vertex 31289 0.457049 0.593054 0.44385 Vertex 31290 0.603955 0.440534 0.200121 Vertex 31291 0.603546 0.440563 0.19838 Vertex 31292 0.46813 0.555386 0.427693 Vertex 31293 0.459406 0.139763 0.800661 Vertex 31294 0.528879 0.696179 0.488827 Vertex 31295 0.377667 0.179788 0.495342 Vertex 31296 0.459453 0.196425 0.476656 Vertex 31297 0.63172 0.517108 0.276043 Vertex 31298 0.480041 0.715191 0.407183 Vertex 31299 0.426577 0.158342 0.590371 Vertex 31300 0.502245 0.669113 0.543191 Vertex 31301 0.425528 0.842593 0.436968 Vertex 31302 0.506651 0.763905 0.449767 Vertex 31303 0.401933 0.168038 0.642899 Vertex 31304 0.4266 0.50544 0.447327 Vertex 31305 0.404136 0.433106 0.378648 Vertex 31306 0.379622 0.0824198 0.475773 Vertex 31307 0.354889 0.25869 0.535249 Vertex 31308 0.351193 0.933133 0.320392 Vertex 31309 0.389542 0.348282 0.388645 Vertex 31310 0.547103 0.13281 0.449506 Vertex 31311 0.60197 0.518239 0.202567 Vertex 31312 0.594052 0.519708 0.318207 Vertex 31313 0.386913 0.492463 0.530333 Vertex 31314 0.651389 0.496674 0.193405 Vertex 31315 0.348433 0.296364 0.198824 Vertex 31316 0.630915 0.476312 0.184971 Vertex 31317 0.549253 0.441244 0.370812 Vertex 31318 0.506953 0.403896 0.590353 Vertex 31319 0.456587 0.202176 0.595275 Vertex 31320 0.457132 0.200707 0.597058 Vertex 31321 0.410177 0.279254 0.21764 Vertex 31322 0.36154 0.933192 0.302085 Vertex 31323 0.384988 0.863115 0.362805 Vertex 31324 0.52266 0.578141 0.560467 Vertex 31325 0.514937 0.582488 0.56177 Vertex 31326 0.522784 0.579645 0.557228 Vertex 31327 0.559392 0.549386 0.489467 Vertex 31328 0.481669 0.230996 0.5903 Vertex 31329 0.512272 0.310294 0.467796 Vertex 31330 0.45709 0.161061 0.503557 Vertex 31331 0.486621 0.798866 0.448571 Vertex 31332 0.320964 0.241674 0.219144 Vertex 31333 0.583983 0.46978 0.480553 Vertex 31334 0.378508 0.453155 0.571892 Vertex 31335 0.523448 0.60195 0.431134 Vertex 31336 0.416864 0.866071 0.414225 Vertex 31337 0.387019 0.257275 0.222757 Vertex 31338 0.401275 0.30311 0.224901 Vertex 31339 0.603131 0.533756 0.258684 Vertex 31340 0.366716 0.113306 0.478302 Vertex 31341 0.346858 0.923941 0.320475 Vertex 31342 0.637797 0.444614 0.204225 Vertex 31343 0.364774 0.349105 0.258684 Vertex 31344 0.36847 0.361217 0.555102 Vertex 31345 0.49406 0.624746 0.402925 Vertex 31346 0.440767 0.773405 0.422523 Vertex 31347 0.462148 0.21854 0.609051 Vertex 31348 0.607763 0.506743 0.21424 Vertex 31349 0.451079 0.795609 0.377475 Vertex 31350 0.415792 0.824044 0.42061 Vertex 31351 0.415703 0.819157 0.413686 Vertex 31352 0.593584 0.505185 0.258957 Vertex 31353 0.661096 0.415025 0.213097 Vertex 31354 0.371703 0.183804 0.532406 Vertex 31355 0.502357 0.351723 0.604852 Vertex 31356 0.362849 0.156737 0.454162 Vertex 31357 0.481243 0.0794821 0.725177 Vertex 31358 0.497447 0.432117 0.608145 Vertex 31359 0.455527 0.667028 0.480707 Vertex 31360 0.546558 0.0398181 0.795248 Vertex 31361 0.545089 0.0408841 0.791623 Vertex 31362 0.484785 0.737117 0.506009 Vertex 31363 0.383886 0.231381 0.642182 Vertex 31364 0.427394 0.135955 0.703979 Vertex 31365 0.562389 0.462921 0.327097 Vertex 31366 0.603818 0.542107 0.27573 Vertex 31367 0.545954 0.570583 0.517895 Vertex 31368 0.544846 0.572573 0.519962 Vertex 31369 0.524295 0.387905 0.451508 Vertex 31370 0.396886 0.357462 0.345718 Vertex 31371 0.531597 0.0265217 0.731526 Vertex 31372 0.469113 0.503142 0.409552 Vertex 31373 0.476825 0.0629994 0.696813 Vertex 31374 0.484471 0.174878 0.792399 Vertex 31375 0.459596 0.76599 0.399093 Vertex 31376 0.553671 0.444342 0.348892 Vertex 31377 0.458512 0.221667 0.642182 Vertex 31378 0.457321 0.223261 0.658766 Vertex 31379 0.455841 0.226494 0.660851 Vertex 31380 0.404604 0.347062 0.223515 Vertex 31381 0.579257 0.499263 0.323916 Vertex 31382 0.520635 0.676753 0.513732 Vertex 31383 0.400636 0.31768 0.202022 Vertex 31384 0.394819 0.255237 0.662912 Vertex 31385 0.487035 0.164218 0.671014 Vertex 31386 0.41671 0.363338 0.632523 Vertex 31387 0.512337 0.361176 0.450081 Vertex 31388 0.366154 0.406289 0.304348 Vertex 31389 0.436533 0.316169 0.421083 Vertex 31390 0.525053 0.355224 0.515828 Vertex 31391 0.660226 0.43669 0.223409 Vertex 31392 0.394269 0.433355 0.598165 Vertex 31393 0.386735 0.351587 0.302044 Vertex 31394 0.383087 0.229758 0.631818 Vertex 31395 0.486834 0.14225 0.796971 Vertex 31396 0.365852 0.375763 0.310573 Vertex 31397 0.579991 0.40713 0.374946 Vertex 31398 0.592476 0.516077 0.2144 Vertex 31399 0.513237 0.658979 0.42254 Vertex 31400 0.401708 0.512227 0.497249 Vertex 31401 0.551184 0.442127 0.536498 Vertex 31402 0.527842 0.0978187 0.795005 Vertex 31403 0.470381 0.10168 0.652571 Vertex 31404 0.434744 0.124856 0.669853 Vertex 31405 0.424539 0.821461 0.437081 Vertex 31406 0.473022 0.416541 0.374922 Vertex 31407 0.470197 0.108397 0.780998 Vertex 31408 0.522133 0.163809 0.78714 Vertex 31409 0.471204 0.178823 0.689753 Vertex 31410 0.521718 0.543049 0.580539 Vertex 31411 0.522092 0.547224 0.578389 Vertex 31412 0.521724 0.545116 0.579669 Vertex 31413 0.504152 0.254769 0.546987 Vertex 31414 0.504329 0.254284 0.549013 Vertex 31415 0.523531 0.148001 0.791659 Vertex 31416 0.326833 0.965246 0.240353 Vertex 31417 0.375559 0.39497 0.536119 Vertex 31418 0.375855 0.394834 0.540804 Vertex 31419 0.367036 0.219914 0.489958 Vertex 31420 0.457227 0.565365 0.558335 Vertex 31421 0.406351 0.368011 0.425816 Vertex 31422 0.39858 0.426497 0.368555 Vertex 31423 0.491578 0.209265 0.482537 Vertex 31424 0.554394 0.473286 0.3552 Vertex 31425 0.504543 0.413094 0.435517 Vertex 31426 0.483499 0.332925 0.629253 Vertex 31427 0.398906 0.495525 0.453534 Vertex 31428 0.389495 0.259436 0.204361 Vertex 31429 0.386113 0.262581 0.201015 Vertex 31430 0.598814 0.518191 0.34583 Vertex 31431 0.412747 0.310294 0.637421 Vertex 31432 0.484252 0.20695 0.758267 Vertex 31433 0.503275 0.162654 0.707095 Vertex 31434 0.505455 0.159426 0.706443 Vertex 31435 0.658461 0.460244 0.21013 Vertex 31436 0.425155 0.168855 0.517866 Vertex 31437 0.557847 0.531855 0.461518 Vertex 31438 0.403082 0.36788 0.244245 Vertex 31439 0.370839 0.430903 0.561587 Vertex 31440 0.553855 0.014931 0.729269 Vertex 31441 0.436859 0.381721 0.420266 Vertex 31442 0.51775 0.185681 0.466481 Vertex 31443 0.496891 0.616395 0.559662 Vertex 31444 0.568401 0.499103 0.347879 Vertex 31445 0.405143 0.257517 0.196532 Vertex 31446 0.428656 0.498451 0.439906 Vertex 31447 0.506556 0.0558981 0.681189 Vertex 31448 0.462225 0.109498 0.646701 Vertex 31449 0.594763 0.509266 0.252975 Vertex 31450 0.438997 0.48111 0.597674 Vertex 31451 0.412682 0.43451 0.381923 Vertex 31452 0.365899 0.217599 0.233199 Vertex 31453 0.510228 0.197266 0.47376 Vertex 31454 0.578262 0.516758 0.463952 Vertex 31455 0.408187 0.465101 0.407509 Vertex 31456 0.63384 0.450792 0.200281 Vertex 31457 0.380771 0.229136 0.218588 Vertex 31458 0.381719 0.234372 0.214981 Vertex 31459 0.467502 0.7788 0.384712 Vertex 31460 0.349695 0.180902 0.464171 Vertex 31461 0.372657 0.0893019 0.466706 Vertex 31462 0.370181 0.0897106 0.465829 Vertex 31463 0.347663 0.911012 0.324775 Vertex 31464 0.396567 0.17938 0.613736 Vertex 31465 0.397929 0.175192 0.614926 Vertex 31466 0.39062 0.25224 0.689955 Vertex 31467 0.381547 0.351907 0.452189 Vertex 31468 0.350198 0.108941 0.457016 Vertex 31469 0.527801 0.0438455 0.778966 Vertex 31470 0.381458 0.219518 0.588434 Vertex 31471 0.3669 0.314559 0.48275 Vertex 31472 0.536099 0.448642 0.396984 Vertex 31473 0.543922 0.496817 0.40607 Vertex 31474 0.367344 0.109243 0.462483 Vertex 31475 0.440234 0.374354 0.418377 Vertex 31476 0.358626 0.407681 0.517214 Vertex 31477 0.384709 0.887274 0.38043 Vertex 31478 0.434892 0.147978 0.743679 Vertex 31479 0.395234 0.855825 0.346263 Vertex 31480 0.383158 0.880279 0.376474 Vertex 31481 0.507634 0.553621 0.396285 Vertex 31482 0.495688 0.600072 0.401716 Vertex 31483 0.498152 0.59961 0.404216 Vertex 31484 0.44576 0.0875073 0.689795 Vertex 31485 0.434934 0.302453 0.424199 Vertex 31486 0.666877 0.468151 0.192451 Vertex 31487 0.396756 0.281877 0.193564 Vertex 31488 0.453857 0.136061 0.648306 Vertex 31489 0.357412 0.397961 0.347885 Vertex 31490 0.595888 0.518109 0.24126 Vertex 31491 0.595284 0.518032 0.239329 Vertex 31492 0.364087 0.41968 0.418406 Vertex 31493 0.496168 0.398571 0.418365 Vertex 31494 0.527611 0.0302707 0.657676 Vertex 31495 0.371994 0.214116 0.213921 Vertex 31496 0.447733 0.828865 0.452977 Vertex 31497 0.442621 0.55782 0.462104 Vertex 31498 0.51197 0.57602 0.405513 Vertex 31499 0.451718 0.245293 0.7562 Vertex 31500 0.409217 0.878976 0.394585 Vertex 31501 0.385 0.861232 0.352019 Vertex 31502 0.443391 0.834266 0.375929 Vertex 31503 0.399137 0.43772 0.599421 Vertex 31504 0.457132 0.467168 0.401876 Vertex 31505 0.69851 0.448422 0.206274 Vertex 31506 0.5 0.245631 0.530351 Vertex 31507 0.408643 0.246951 0.194417 Vertex 31508 0.503092 0.650948 0.549001 Vertex 31509 0.473727 0.0569582 0.684405 Vertex 31510 0.499609 0.0717827 0.696783 Vertex 31511 0.494356 0.711223 0.523143 Vertex 31512 0.461597 0.145407 0.7969 Vertex 31513 0.529228 0.0397115 0.728523 Vertex 31514 0.460644 0.78971 0.381396 Vertex 31515 0.597807 0.452657 0.209757 Vertex 31516 0.355659 0.418383 0.485415 Vertex 31517 0.418421 0.415273 0.37613 Vertex 31518 0.610156 0.506962 0.19713 Vertex 31519 0.418587 0.332599 0.642704 Vertex 31520 0.524709 0.133218 0.733172 Vertex 31521 0.49387 0.393318 0.426307 Vertex 31522 0.617932 0.507501 0.346701 Vertex 31523 0.492247 0.218197 0.511659 Vertex 31524 0.353906 0.368508 0.414266 Vertex 31525 0.508096 0.584188 0.567124 Vertex 31526 0.401459 0.352641 0.227276 Vertex 31527 0.477287 0.138525 0.800116 Vertex 31528 0.423207 0.815533 0.389054 Vertex 31529 0.423882 0.384849 0.327577 Vertex 31530 0.414335 0.475868 0.594694 Vertex 31531 0.596569 0.427569 0.194299 Vertex 31532 0.596557 0.525731 0.234206 Vertex 31533 0.601479 0.527798 0.233525 Vertex 31534 0.405664 0.177952 0.592491 Vertex 31535 0.416781 0.390049 0.363509 Vertex 31536 0.551373 0.561859 0.505736 Vertex 31537 0.556502 0.557826 0.50409 Vertex 31538 0.423278 0.358025 0.642727 Vertex 31539 0.365052 0.23494 0.205889 Vertex 31540 0.39049 0.426449 0.366897 Vertex 31541 0.517093 0.453054 0.409807 Vertex 31542 0.438464 0.825524 0.360258 Vertex 31543 0.495896 0.665725 0.408273 Vertex 31544 0.478104 0.806903 0.419271 Vertex 31545 0.407849 0.362911 0.627488 Vertex 31546 0.543668 0.0401734 0.711821 Vertex 31547 0.420441 0.207441 0.778866 Vertex 31548 0.484767 0.168938 0.691956 Vertex 31549 0.596154 0.45428 0.203828 Vertex 31550 0.526078 0.630307 0.433041 Vertex 31551 0.45189 0.240561 0.710595 Vertex 31552 0.446098 0.768584 0.447356 Vertex 31553 0.514226 0.308772 0.475785 Vertex 31554 0.496393 0.202774 0.5324 Vertex 31555 0.382648 0.429796 0.321683 Vertex 31556 0.436894 0.474743 0.599747 Vertex 31557 0.450617 0.417956 0.631131 Vertex 31558 0.449112 0.4175 0.633968 Vertex 31559 0.526427 0.514626 0.415972 Vertex 31560 0.500527 0.372749 0.447392 Vertex 31561 0.545871 0.578312 0.45582 Vertex 31562 0.386753 0.0794821 0.472936 Vertex 31563 0.521517 0.390321 0.482667 Vertex 31564 0.539948 0.55519 0.438289 Vertex 31565 0.402424 0.299574 0.22637 Vertex 31566 0.465287 0.809515 0.46423 Vertex 31567 0.53986 0.662462 0.467796 Vertex 31568 0.48761 0.417986 0.380146 Vertex 31569 0.51672 0.535758 0.404832 Vertex 31570 0.489517 0.388764 0.422078 Vertex 31571 0.44531 0.123878 0.6482 Vertex 31572 0.509577 0.132265 0.790332 Vertex 31573 0.448283 0.618284 0.470704 Vertex 31574 0.41376 0.821716 0.410381 Vertex 31575 0.547292 0.00443016 0.728949 Vertex 31576 0.50048 0.254515 0.563429 Vertex 31577 0.431546 0.201104 0.47418 Vertex 31578 0.510187 0.706651 0.505327 Vertex 31579 0.51964 0.3777 0.443187 Vertex 31580 0.413417 0.273692 0.225565 Vertex 31581 0.412303 0.27557 0.223539 Vertex 31582 0.355209 0.311964 0.52611 Vertex 31583 0.452032 0.830517 0.386697 Vertex 31584 0.449681 0.837991 0.388207 Vertex 31585 0.454644 0.832531 0.39301 Vertex 31586 0.454165 0.139135 0.793269 Vertex 31587 0.382133 0.353559 0.306249 Vertex 31588 0.584451 0.457117 0.31248 Vertex 31589 0.510294 0.0754014 0.685714 Vertex 31590 0.325595 0.924077 0.28767 Vertex 31591 0.440945 0.15868 0.584182 Vertex 31592 0.674375 0.447895 0.205268 Vertex 31593 0.504395 0.482697 0.605687 Vertex 31594 0.468693 0.223492 0.764503 Vertex 31595 0.387523 0.863305 0.376977 Vertex 31596 0.436124 0.796237 0.44324 Vertex 31597 0.550414 0.0343514 0.722144 Vertex 31598 0.329398 0.922058 0.261409 Vertex 31599 0.476149 0.488572 0.605361 Vertex 31600 0.367528 0.381473 0.258749 Vertex 31601 0.368102 0.383013 0.262901 Vertex 31602 0.531236 0.0762483 0.712739 Vertex 31603 0.396975 0.175897 0.640601 Vertex 31604 0.455651 0.539519 0.576245 Vertex 31605 0.49445 0.0505914 0.729394 Vertex 31606 0.414832 0.422067 0.375669 Vertex 31607 0.460798 0.110055 0.774773 Vertex 31608 0.384028 0.210882 0.599285 Vertex 31609 0.648215 0.448422 0.223539 Vertex 31610 0.572576 0.418146 0.356041 Vertex 31611 0.328539 0.919825 0.289944 Vertex 31612 0.377164 0.361407 0.600866 Vertex 31613 0.378408 0.362846 0.60497 Vertex 31614 0.377419 0.364901 0.598823 Vertex 31615 0.405113 0.482661 0.586628 Vertex 31616 0.53081 0.519933 0.582186 Vertex 31617 0.524087 0.51189 0.591011 Vertex 31618 0.527937 0.508591 0.588476 Vertex 31619 0.491904 0.37632 0.619356 Vertex 31620 0.36427 0.367963 0.258797 Vertex 31621 0.640817 0.473203 0.18638 Vertex 31622 0.433139 0.260414 0.708522 Vertex 31623 0.520765 0.133112 0.703245 Vertex 31624 0.459827 0.197568 0.64422 Vertex 31625 0.420423 0.392957 0.380282 Vertex 31626 0.469327 0.159782 0.526163 Vertex 31627 0.550911 0.465101 0.551056 Vertex 31628 0.515808 0.713343 0.499233 Vertex 31629 0.484234 0.108912 0.803628 Vertex 31630 0.37184 0.470863 0.4806 Vertex 31631 0.373498 0.473422 0.476437 Vertex 31632 0.530306 0.576577 0.551015 Vertex 31633 0.553055 0.470786 0.364463 Vertex 31634 0.488303 0.535574 0.38829 Vertex 31635 0.594366 0.513465 0.368431 Vertex 31636 0.489487 0.608915 0.401936 Vertex 31637 0.546469 0.606629 0.492025 Vertex 31638 0.52821 0.140343 0.776881 Vertex 31639 0.489635 0.327423 0.623307 Vertex 31640 0.553351 0.15104 0.439047 Vertex 31641 0.4024 0.296252 0.227786 Vertex 31642 0.42018 0.245631 0.197728 Vertex 31643 0.459501 0.802076 0.477568 Vertex 31644 0.418557 0.541906 0.536528 Vertex 31645 0.365402 0.344432 0.40023 Vertex 31646 0.649595 0.446681 0.224599 Vertex 31647 0.489215 0.347145 0.626156 Vertex 31648 0.365798 0.209224 0.561545 Vertex 31649 0.502298 0.1089 0.797066 Vertex 31650 0.514404 0.0256807 0.741636 Vertex 31651 0.334776 0.934821 0.30263 Vertex 31652 0.477802 0.20313 0.787305 Vertex 31653 0.536768 0.67012 0.465231 Vertex 31654 0.35753 0.223817 0.50149 Vertex 31655 0.357939 0.240425 0.552738 Vertex 31656 0.357524 0.239471 0.550577 Vertex 31657 0.363986 0.215153 0.216687 Vertex 31658 0.363962 0.213453 0.218671 Vertex 31659 0.456711 0.699496 0.468032 Vertex 31660 0.501972 0.52107 0.594333 Vertex 31661 0.494125 0.518434 0.594712 Vertex 31662 0.403324 0.385228 0.248242 Vertex 31663 0.323902 0.971157 0.24585 Vertex 31664 0.490998 0.614891 0.402913 Vertex 31665 0.491217 0.614062 0.402557 Vertex 31666 0.573565 0.501691 0.390659 Vertex 31667 0.369506 0.417684 0.553188 Vertex 31668 0.390146 0.192273 0.656705 Vertex 31669 0.369524 0.418791 0.36223 Vertex 31670 0.607858 0.492138 0.216444 Vertex 31671 0.554637 0.532969 0.455873 Vertex 31672 0.537336 0.0744242 0.789064 Vertex 31673 0.400511 0.511588 0.552602 Vertex 31674 0.453016 0.0885971 0.734919 Vertex 31675 0.453217 0.0870454 0.73258 Vertex 31676 0.441389 0.771824 0.434943 Vertex 31677 0.542691 0.147539 0.434877 Vertex 31678 0.600514 0.518618 0.323519 Vertex 31679 0.436438 0.479457 0.423287 Vertex 31680 0.489991 0.166735 0.701314 Vertex 31681 0.507001 0.169903 0.779328 Vertex 31682 0.367368 0.32718 0.584004 Vertex 31683 0.322575 0.236575 0.217966 Vertex 31684 0.503524 0.673738 0.540786 Vertex 31685 0.459519 0.200109 0.6094 Vertex 31686 0.372153 0.427456 0.563589 Vertex 31687 0.453874 0.238369 0.764491 Vertex 31688 0.495416 0.444697 0.608323 Vertex 31689 0.399534 0.259738 0.701291 Vertex 31690 0.522198 0.0478196 0.730045 Vertex 31691 0.465737 0.755163 0.396872 Vertex 31692 0.495801 0.110286 0.803273 Vertex 31693 0.500201 0.156275 0.702244 Vertex 31694 0.418741 0.239157 0.216278 Vertex 31695 0.495759 0.0914518 0.729127 Vertex 31696 0.413725 0.474968 0.413343 Vertex 31697 0.649073 0.414089 0.212635 Vertex 31698 0.453637 0.513246 0.423926 Vertex 31699 0.402537 0.471681 0.591828 Vertex 31700 0.509838 0.0899001 0.805067 Vertex 31701 0.428579 0.819294 0.376841 Vertex 31702 0.545735 0.149731 0.425052 Vertex 31703 0.411018 0.238979 0.198486 Vertex 31704 0.541826 0.119413 0.43422 Vertex 31705 0.386344 0.171277 0.526163 Vertex 31706 0.547103 0.590063 0.459581 Vertex 31707 0.602616 0.470325 0.292349 Vertex 31708 0.598814 0.472172 0.291152 Vertex 31709 0.388956 0.284993 0.232909 Vertex 31710 0.553357 0.46227 0.374904 Vertex 31711 0.44948 0.589222 0.511665 Vertex 31712 0.449266 0.587943 0.515787 Vertex 31713 0.409354 0.326534 0.21459 Vertex 31714 0.372876 0.369118 0.483645 Vertex 31715 0.506148 0.396516 0.586172 Vertex 31716 0.599643 0.53006 0.265975 Vertex 31717 0.6107 0.461748 0.332119 Vertex 31718 0.490873 0.0447161 0.680135 Vertex 31719 0.360438 0.229136 0.223811 Vertex 31720 0.408785 0.172474 0.530297 Vertex 31721 0.372621 0.351279 0.372761 Vertex 31722 0.368629 0.352404 0.375509 Vertex 31723 0.368653 0.352689 0.37491 Vertex 31724 0.370394 0.352469 0.372784 Vertex 31725 0.371472 0.351723 0.372897 Vertex 31726 0.457469 0.397126 0.62766 Vertex 31727 0.426168 0.527834 0.48291 Vertex 31728 0.480212 0.112927 0.809811 Vertex 31729 0.510163 0.103362 0.699988 Vertex 31730 0.341977 0.90628 0.312942 Vertex 31731 0.473188 0.121657 0.812583 Vertex 31732 0.440779 0.565579 0.480506 Vertex 31733 0.406523 0.466729 0.595494 Vertex 31734 0.487106 0.47389 0.386169 Vertex 31735 0.495635 0.235473 0.522029 Vertex 31736 0.398811 0.184059 0.590436 Vertex 31737 0.589503 0.482152 0.425585 Vertex 31738 0.408767 0.325113 0.212304 Vertex 31739 0.54365 0.00801929 0.727694 Vertex 31740 0.533895 0.468145 0.582097 Vertex 31741 0.464233 0.343313 0.413183 Vertex 31742 0.425398 0.169927 0.770657 Vertex 31743 0.595983 0.449731 0.315405 Vertex 31744 0.445671 0.381816 0.643628 Vertex 31745 0.512106 0.390345 0.445603 Vertex 31746 0.502594 0.413556 0.418525 Vertex 31747 0.466294 0.229272 0.772801 Vertex 31748 0.52927 0.0159379 0.729998 Vertex 31749 0.521979 0.168814 0.443649 Vertex 31750 0.545782 0.528704 0.561427 Vertex 31751 0.394038 0.428404 0.359156 Vertex 31752 0.359467 0.120408 0.458681 Vertex 31753 0.519426 0.372233 0.447345 Vertex 31754 0.52285 0.0380531 0.729909 Vertex 31755 0.46521 0.0855469 0.660341 Vertex 31756 0.468361 0.0886208 0.658405 Vertex 31757 0.544894 0.451905 0.381396 Vertex 31758 0.619419 0.4944 0.363521 Vertex 31759 0.554767 0.467328 0.376877 Vertex 31760 0.520167 0.0985531 0.717756 Vertex 31761 0.410153 0.44266 0.387312 Vertex 31762 0.407683 0.443501 0.38765 Vertex 31763 0.388968 0.255059 0.207826 Vertex 31764 0.372645 0.369539 0.538856 Vertex 31765 0.361783 0.241064 0.223675 Vertex 31766 0.435846 0.441783 0.619416 Vertex 31767 0.535998 0.170703 0.447475 Vertex 31768 0.398112 0.316383 0.4434 Vertex 31769 0.563627 0.492493 0.370652 Vertex 31770 0.36385 0.336691 0.515923 Vertex 31771 0.367024 0.396439 0.291952 Vertex 31772 0.356725 0.364149 0.391897 Vertex 31773 0.436213 0.359067 0.648875 Vertex 31774 0.542661 0.529895 0.565519 Vertex 31775 0.527801 0.0705567 0.716411 Vertex 31776 0.418202 0.152888 0.706455 Vertex 31777 0.470932 0.815053 0.411045 Vertex 31778 0.471968 0.818186 0.417708 Vertex 31779 0.457499 0.236344 0.72719 Vertex 31780 0.537058 0.161754 0.432899 Vertex 31781 0.497175 0.424051 0.392483 Vertex 31782 0.499674 0.173398 0.734724 Vertex 31783 0.438487 0.0966164 0.66332 Vertex 31784 0.450718 0.189567 0.596643 Vertex 31785 0.500752 0.0396878 0.678441 Vertex 31786 0.538059 0.474026 0.399649 Vertex 31787 0.381873 0.352588 0.354098 Vertex 31788 0.41947 0.371132 0.323022 Vertex 31789 0.372254 0.370172 0.519962 Vertex 31790 0.515073 0.0709416 0.640027 Vertex 31791 0.505319 0.640631 0.412377 Vertex 31792 0.350015 0.102551 0.461831 Vertex 31793 0.447128 0.612913 0.476419 Vertex 31794 0.381612 0.232222 0.607256 Vertex 31795 0.441573 0.448985 0.404737 Vertex 31796 0.383175 0.867415 0.368668 Vertex 31797 0.416254 0.861232 0.346103 Vertex 31798 0.428389 0.229053 0.209508 Vertex 31799 0.490932 0.589518 0.566266 Vertex 31800 0.654848 0.462376 0.218451 Vertex 31801 0.4498 0.159154 0.538607 Vertex 31802 0.54044 0.60333 0.449921 Vertex 31803 0.472134 0.134948 0.807034 Vertex 31804 0.523193 0.466546 0.408474 Vertex 31805 0.495203 0.19206 0.457982 Vertex 31806 0.494741 0.19331 0.458811 Vertex 31807 0.435153 0.163495 0.570175 Vertex 31808 0.593584 0.499156 0.267035 Vertex 31809 0.505431 0.405927 0.441428 Vertex 31810 0.438772 0.32256 0.42013 Vertex 31811 0.373439 0.340571 0.476389 Vertex 31812 0.337684 0.289808 0.214602 Vertex 31813 0.357524 0.273568 0.558015 Vertex 31814 0.358075 0.27153 0.559757 Vertex 31815 0.406677 0.371369 0.387514 Vertex 31816 0.467834 0.162423 0.509598 Vertex 31817 0.410005 0.51786 0.564874 Vertex 31818 0.37152 0.319978 0.598817 Vertex 31819 0.516566 0.585112 0.418945 Vertex 31820 0.555673 0.552987 0.521982 Vertex 31821 0.425327 0.268806 0.65051 Vertex 31822 0.607792 0.496455 0.256131 Vertex 31823 0.478418 0.534378 0.397215 Vertex 31824 0.35615 0.28026 0.516669 Vertex 31825 0.36417 0.144454 0.456104 Vertex 31826 0.404503 0.223965 0.745793 Vertex 31827 0.539753 0.604887 0.450282 Vertex 31828 0.541921 0.606445 0.456608 Vertex 31829 0.524496 0.136606 0.706272 Vertex 31830 0.346123 0.901773 0.289748 Vertex 31831 0.465104 0.110546 0.781027 Vertex 31832 0.578262 0.512263 0.441155 Vertex 31833 0.400606 0.362603 0.395551 Vertex 31834 0.478661 0.267242 0.446113 Vertex 31835 0.342256 0.903567 0.310632 Vertex 31836 0.433169 0.257612 0.696073 Vertex 31837 0.627319 0.48047 0.186463 Vertex 31838 0.382879 0.249018 0.231238 Vertex 31839 0.418255 0.40585 0.354969 Vertex 31840 0.376542 0.356047 0.341637 Vertex 31841 0.365028 0.418744 0.333381 Vertex 31842 0.360717 0.116357 0.458953 Vertex 31843 0.633088 0.489496 0.187061 Vertex 31844 0.353029 0.367294 0.428712 Vertex 31845 0.425617 0.239062 0.772398 Vertex 31846 0.4153 0.243741 0.221881 Vertex 31847 0.43321 0.399318 0.41657 Vertex 31848 0.503417 0.600072 0.408474 Vertex 31849 0.504833 0.598906 0.410227 Vertex 31850 0.361096 0.341051 0.540443 Vertex 31851 0.425138 0.25224 0.217504 Vertex 31852 0.529436 0.401882 0.452669 Vertex 31853 0.381801 0.398471 0.577975 Vertex 31854 0.583539 0.492404 0.406857 Vertex 31855 0.37948 0.302352 0.459942 Vertex 31856 0.427394 0.167114 0.526163 Vertex 31857 0.523791 0.0318521 0.767938 Vertex 31858 0.497815 0.419342 0.402232 Vertex 31859 0.450978 0.177461 0.577904 Vertex 31860 0.435893 0.526714 0.457804 Vertex 31861 0.443622 0.804765 0.372553 Vertex 31862 0.441851 0.806317 0.373998 Vertex 31863 0.487379 0.389693 0.414107 Vertex 31864 0.416171 0.451982 0.601796 Vertex 31865 0.38035 0.20419 0.476899 Vertex 31866 0.490222 0.339605 0.435476 Vertex 31867 0.503281 0.660904 0.546081 Vertex 31868 0.500871 0.661277 0.545738 Vertex 31869 0.510963 0.106247 0.658559 Vertex 31870 0.42814 0.18715 0.484314 Vertex 31871 0.511034 0.103037 0.798594 Vertex 31872 0.504934 0.0380531 0.748998 Vertex 31873 0.498626 0.553579 0.380892 Vertex 31874 0.512147 0.037757 0.66736 Vertex 31875 0.4498 0.265489 0.438206 Vertex 31876 0.352478 0.288623 0.22977 Vertex 31877 0.367291 0.316252 0.48477 Vertex 31878 0.513166 0.115634 0.793962 Vertex 31879 0.373196 0.220619 0.232038 Vertex 31880 0.603315 0.437708 0.374075 Vertex 31881 0.450167 0.112927 0.660626 Vertex 31882 0.450558 0.37966 0.634998 Vertex 31883 0.654001 0.434303 0.193482 Vertex 31884 0.656619 0.435416 0.194246 Vertex 31885 0.415513 0.154955 0.694023 Vertex 31886 0.512272 0.452414 0.602868 Vertex 31887 0.599957 0.511884 0.206677 Vertex 31888 0.603019 0.510178 0.205617 Vertex 31889 0.462581 0.472137 0.618871 Vertex 31890 0.438351 0.466208 0.41336 Vertex 31891 0.526812 0.652926 0.520057 Vertex 31892 0.633272 0.495484 0.187387 Vertex 31893 0.372153 0.24476 0.589417 Vertex 31894 0.523004 0.0567924 0.668266 Vertex 31895 0.533931 0.119117 0.435091 Vertex 31896 0.507036 0.381502 0.450738 Vertex 31897 0.508215 0.382065 0.450543 Vertex 31898 0.43186 0.260295 0.725094 Vertex 31899 0.383187 0.256605 0.228005 Vertex 31900 0.614538 0.479078 0.281072 Vertex 31901 0.615107 0.478267 0.283062 Vertex 31902 0.515138 0.413603 0.584223 Vertex 31903 0.520338 0.473357 0.597745 Vertex 31904 0.415703 0.413603 0.352523 Vertex 31905 0.549987 0.0382722 0.796604 Vertex 31906 0.632899 0.481382 0.227928 Vertex 31907 0.369388 0.878805 0.31187 Vertex 31908 0.450167 0.123766 0.754038 Vertex 31909 0.492792 0.50955 0.390546 Vertex 31910 0.480633 0.407236 0.382391 Vertex 31911 0.535542 0.548071 0.433557 Vertex 31912 0.531538 0.677985 0.449489 Vertex 31913 0.381132 0.395918 0.266846 Vertex 31914 0.442082 0.440498 0.401699 Vertex 31915 0.517519 0.377499 0.476419 Vertex 31916 0.367759 0.882181 0.347802 Vertex 31917 0.368126 0.878378 0.343514 Vertex 31918 0.37223 0.423725 0.403961 Vertex 31919 0.464719 0.211178 0.683558 Vertex 31920 0.392527 0.431377 0.337521 Vertex 31921 0.61102 0.469945 0.297312 Vertex 31922 0.508813 0.627903 0.5532 Vertex 31923 0.509293 0.624432 0.553188 Vertex 31924 0.363068 0.254882 0.208229 Vertex 31925 0.354658 0.229977 0.528219 Vertex 31926 0.355866 0.380543 0.407983 Vertex 31927 0.524265 0.119199 0.715979 Vertex 31928 0.489404 0.204409 0.546863 Vertex 31929 0.387416 0.893582 0.377913 Vertex 31930 0.546505 0.478403 0.565508 Vertex 31931 0.350322 0.104754 0.459693 Vertex 31932 0.463587 0.087454 0.749957 Vertex 31933 0.357347 0.922271 0.332729 Vertex 31934 0.697444 0.445177 0.208034 Vertex 31935 0.497815 0.0524985 0.724034 Vertex 31936 0.595361 0.457336 0.429352 Vertex 31937 0.419855 0.170134 0.743762 Vertex 31938 0.453999 0.665127 0.460422 Vertex 31939 0.452767 0.660359 0.462655 Vertex 31940 0.524472 0.0712141 0.787169 Vertex 31941 0.523993 0.616348 0.431176 Vertex 31942 0.648724 0.463549 0.193268 Vertex 31943 0.610612 0.460043 0.317022 Vertex 31944 0.435378 0.11535 0.66736 Vertex 31945 0.4092 0.498599 0.447256 Vertex 31946 0.348433 0.898101 0.316791 Vertex 31947 0.509672 0.159687 0.727107 Vertex 31948 0.358046 0.437779 0.496627 Vertex 31949 0.498762 0.680289 0.409522 Vertex 31950 0.46553 0.653737 0.432591 Vertex 31951 0.367107 0.28793 0.233916 Vertex 31952 0.524591 0.492825 0.413277 Vertex 31953 0.385906 0.400514 0.596702 Vertex 31954 0.474118 0.199659 0.793033 Vertex 31955 0.590516 0.429896 0.194548 Vertex 31956 0.578949 0.504024 0.484681 Vertex 31957 0.482629 0.398121 0.393555 Vertex 31958 0.49252 0.730916 0.40604 Vertex 31959 0.617067 0.478213 0.284898 Vertex 31960 0.394103 0.454274 0.406573 Vertex 31961 0.440916 0.788691 0.403902 Vertex 31962 0.413417 0.37693 0.39795 Vertex 31963 0.487474 0.179776 0.46564 Vertex 31964 0.463303 0.225488 0.718887 Vertex 31965 0.560731 0.428203 0.507501 Vertex 31966 0.451132 0.174292 0.567604 Vertex 31967 0.682785 0.45595 0.192777 Vertex 31968 0.515914 0.111909 0.70026 Vertex 31969 0.516104 0.115835 0.704317 Vertex 31970 0.382257 0.249356 0.206571 Vertex 31971 0.425635 0.130992 0.686431 Vertex 31972 0.518052 0.111174 0.705768 Vertex 31973 0.387339 0.4417 0.40418 Vertex 31974 0.388707 0.451366 0.412502 Vertex 31975 0.60771 0.453457 0.33126 Vertex 31976 0.516856 0.409777 0.577874 Vertex 31977 0.350696 0.273965 0.228082 Vertex 31978 0.469575 0.141925 0.799832 Vertex 31979 0.471666 0.142185 0.798908 Vertex 31980 0.529501 0.460037 0.406241 Vertex 31981 0.463203 0.169441 0.661342 Vertex 31982 0.463131 0.169779 0.663451 Vertex 31983 0.471163 0.732882 0.409303 Vertex 31984 0.436213 0.537837 0.472255 Vertex 31985 0.49631 0.261545 0.588292 Vertex 31986 0.548655 0.515301 0.428617 Vertex 31987 0.496713 0.0455038 0.682522 Vertex 31988 0.496423 0.546597 0.382059 Vertex 31989 0.436657 0.219381 0.791368 Vertex 31990 0.4482 0.435061 0.395906 Vertex 31991 0.650305 0.436867 0.229148 Vertex 31992 0.501623 0.130524 0.795141 Vertex 31993 0.500503 0.133911 0.795372 Vertex 31994 0.458891 0.348205 0.634507 Vertex 31995 0.474989 0.571715 0.565691 Vertex 31996 0.685989 0.463673 0.19145 Vertex 31997 0.687168 0.463282 0.193298 Vertex 31998 0.686866 0.459954 0.192777 Vertex 31999 0.447235 0.759812 0.428629 Vertex 32000 0.443356 0.470449 0.410529 Vertex 32001 0.379059 0.413467 0.570033 Vertex 32002 0.447022 0.580344 0.469176 Vertex 32003 0.61429 0.538761 0.258767 Vertex 32004 0.446524 0.173955 0.793826 Vertex 32005 0.449272 0.17553 0.797948 Vertex 32006 0.348303 0.137382 0.470455 Vertex 32007 0.345004 0.13416 0.46619 Vertex 32008 0.358129 0.314316 0.558288 Vertex 32009 0.507309 0.107176 0.797084 Vertex 32010 0.517644 0.36297 0.47954 Vertex 32011 0.442343 0.366133 0.645085 Vertex 32012 0.56756 0.536765 0.472427 Vertex 32013 0.444795 0.0854403 0.664677 Vertex 32014 0.491187 0.220376 0.52717 Vertex 32015 0.50199 0.0562771 0.76018 Vertex 32016 0.361072 0.394674 0.385204 Vertex 32017 0.317795 0.987947 0.200583 Vertex 32018 0.413209 0.421273 0.337059 Vertex 32019 0.502316 0.527502 0.395883 Vertex 32020 0.401672 0.375461 0.239755 Vertex 32021 0.680221 0.467588 0.195199 Vertex 32022 0.392527 0.501217 0.484924 Vertex 32023 0.546422 0.514821 0.563458 Vertex 32024 0.498478 0.639168 0.405578 Vertex 32025 0.456551 0.835741 0.401645 Vertex 32026 0.416254 0.27618 0.436287 Vertex 32027 0.524064 0.438538 0.590395 Vertex 32028 0.384621 0.236616 0.691951 Vertex 32029 0.564225 0.410281 0.371043 Vertex 32030 0.527256 0.55769 0.569778 Vertex 32031 0.36167 0.436625 0.527739 Vertex 32032 0.548672 0.578366 0.48721 Vertex 32033 0.419606 0.271187 0.437554 Vertex 32034 0.481877 0.546922 0.583915 Vertex 32035 0.472691 0.523907 0.597372 Vertex 32036 0.575549 0.41063 0.428712 Vertex 32037 0.497678 0.495289 0.3924 Vertex 32038 0.476049 0.460599 0.381325 Vertex 32039 0.39736 0.170869 0.534467 Vertex 32040 0.531538 0.142375 0.459356 Vertex 32041 0.443575 0.532886 0.44324 Vertex 32042 0.37223 0.268006 0.232654 Vertex 32043 0.360782 0.333712 0.248195 Vertex 32044 0.362014 0.335471 0.250363 Vertex 32045 0.454615 0.785049 0.385465 Vertex 32046 0.405024 0.861155 0.409819 Vertex 32047 0.503376 0.0975699 0.808378 Vertex 32048 0.529732 0.0178983 0.758255 Vertex 32049 0.462504 0.57393 0.433936 Vertex 32050 0.487841 0.140728 0.647531 Vertex 32051 0.494901 0.423512 0.390605 Vertex 32052 0.48915 0.408326 0.391269 Vertex 32053 0.456155 0.456608 0.397144 Vertex 32054 0.459827 0.776076 0.386483 Vertex 32055 0.435194 0.259762 0.727244 Vertex 32056 0.435224 0.260183 0.731241 Vertex 32057 0.408667 0.36894 0.430139 Vertex 32058 0.465252 0.50361 0.413822 Vertex 32059 0.443071 0.572769 0.513773 Vertex 32060 0.475486 0.0765504 0.737922 Vertex 32061 0.532184 0.122872 0.797113 Vertex 32062 0.464837 0.795644 0.387147 Vertex 32063 0.538112 0.0546188 0.797854 Vertex 32064 0.368345 0.372014 0.244245 Vertex 32065 0.57886 0.503237 0.328773 Vertex 32066 0.562141 0.480168 0.53442 Vertex 32067 0.51454 0.09741 0.657339 Vertex 32068 0.325376 0.253863 0.229533 Vertex 32069 0.507634 0.264891 0.532258 Vertex 32070 0.367184 0.882074 0.307256 Vertex 32071 0.432499 0.297401 0.641128 Vertex 32072 0.398782 0.25994 0.68922 Vertex 32073 0.418593 0.229053 0.206428 Vertex 32074 0.48745 0.189786 0.546863 Vertex 32075 0.591754 0.451165 0.19164 Vertex 32076 0.467076 0.34875 0.414882 Vertex 32077 0.497678 0.709138 0.525281 Vertex 32078 0.364774 0.309151 0.48509 Vertex 32079 0.645822 0.471758 0.191095 Vertex 32080 0.606839 0.472137 0.389948 Vertex 32081 0.415513 0.173208 0.492896 Vertex 32082 0.456273 0.271773 0.435961 Vertex 32083 0.406919 0.1824 0.557305 Vertex 32084 0.302071 0.977038 0.23192 Vertex 32085 0.3669 0.395806 0.520099 Vertex 32086 0.456516 0.496485 0.413728 Vertex 32087 0.505372 0.177259 0.764491 Vertex 32088 0.402389 0.347826 0.442873 Vertex 32089 0.409673 0.181109 0.565519 Vertex 32090 0.390046 0.428925 0.595156 Vertex 32091 0.655642 0.413603 0.229823 Vertex 32092 0.351164 0.182116 0.486789 Vertex 32093 0.594164 0.50117 0.262629 Vertex 32094 0.397455 0.186031 0.563654 Vertex 32095 0.39996 0.185829 0.563565 Vertex 32096 0.48777 0.0500228 0.687615 Vertex 32097 0.555507 0.0333209 0.772676 Vertex 32098 0.409638 0.330153 0.217202 Vertex 32099 0.520901 0.566888 0.568955 Vertex 32100 0.347041 0.262635 0.208318 Vertex 32101 0.388085 0.250244 0.625652 Vertex 32102 0.479271 0.491836 0.397624 Vertex 32103 0.368582 0.221721 0.236758 Vertex 32104 0.52526 0.138336 0.752297 Vertex 32105 0.53261 0.137352 0.444176 Vertex 32106 0.456575 0.174932 0.644196 Vertex 32107 0.387464 0.878402 0.32192 Vertex 32108 0.419884 0.407432 0.376279 Vertex 32109 0.377555 0.919772 0.325113 Vertex 32110 0.460069 0.185462 0.650468 Vertex 32111 0.417497 0.346547 0.433106 Vertex 32112 0.356524 0.219968 0.497575 Vertex 32113 0.386865 0.457508 0.420645 Vertex 32114 0.507403 0.400111 0.444164 Vertex 32115 0.518881 0.381283 0.5117 Vertex 32116 0.487148 0.655135 0.409007 Vertex 32117 0.450072 0.835267 0.438887 Vertex 32118 0.421312 0.168825 0.749999 Vertex 32119 0.438849 0.780808 0.418294 Vertex 32120 0.437315 0.783965 0.414243 Vertex 32121 0.506349 0.170839 0.450655 Vertex 32122 0.355108 0.244991 0.530813 Vertex 32123 0.491951 0.215058 0.513684 Vertex 32124 0.521262 0.161262 0.790391 Vertex 32125 0.548299 0.153391 0.423411 Vertex 32126 0.532823 0.483295 0.406721 Vertex 32127 0.50321 0.300113 0.454902 Vertex 32128 0.526042 0.156287 0.788502 Vertex 32129 0.521884 0.0813892 0.679424 Vertex 32130 0.549318 0.0208359 0.775561 Vertex 32131 0.448698 0.184414 0.799838 Vertex 32132 0.449847 0.181097 0.799547 Vertex 32133 0.50135 0.357924 0.446918 Vertex 32134 0.469753 0.728387 0.418081 Vertex 32135 0.440483 0.561362 0.546952 Vertex 32136 0.466963 0.510954 0.409167 Vertex 32137 0.360924 0.362088 0.376006 Vertex 32138 0.399149 0.206298 0.474079 Vertex 32139 0.373622 0.36146 0.505416 Vertex 32140 0.454828 0.17877 0.569689 Vertex 32141 0.502801 0.0532388 0.635182 Vertex 32142 0.476434 0.75399 0.491018 Vertex 32143 0.475474 0.757017 0.491012 Vertex 32144 0.498958 0.0479558 0.734351 Vertex 32145 0.497512 0.432023 0.38723 Vertex 32146 0.386261 0.863412 0.343609 Vertex 32147 0.475895 0.057586 0.651126 Vertex 32148 0.648813 0.423583 0.20031 Vertex 32149 0.41989 0.141747 0.691175 Vertex 32150 0.658034 0.499126 0.195063 Vertex 32151 0.348356 0.303513 0.210272 Vertex 32152 0.359177 0.249699 0.5073 Vertex 32153 0.476481 0.32805 0.631237 Vertex 32154 0.380273 0.428404 0.344616 Vertex 32155 0.497293 0.632878 0.55028 Vertex 32156 0.49865 0.630396 0.555463 Vertex 32157 0.455811 0.755584 0.418039 Vertex 32158 0.410876 0.837109 0.368703 Vertex 32159 0.446062 0.803759 0.372103 Vertex 32160 0.403816 0.286124 0.437922 Vertex 32161 0.39123 0.498392 0.540692 Vertex 32162 0.487041 0.679673 0.518002 Vertex 32163 0.522524 0.68293 0.507501 Vertex 32164 0.448579 0.124038 0.638173 Vertex 32165 0.536999 0.0621524 0.712644 Vertex 32166 0.452862 0.33819 0.415273 Vertex 32167 0.450208 0.339694 0.41567 Vertex 32168 0.509156 0.0847296 0.692004 Vertex 32169 0.3825 0.909004 0.3163 Vertex 32170 0.532841 0.504475 0.418063 Vertex 32171 0.463984 0.541148 0.579805 Vertex 32172 0.370655 0.431975 0.416393 Vertex 32173 0.544681 0.572313 0.528284 Vertex 32174 0.529981 0.0744834 0.707314 Vertex 32175 0.474384 0.760807 0.390576 Vertex 32176 0.383128 0.863933 0.360489 Vertex 32177 0.451114 0.403647 0.631984 Vertex 32178 0.347616 0.304603 0.229154 Vertex 32179 0.3893 0.238547 0.704364 Vertex 32180 0.44948 0.619706 0.464319 Vertex 32181 0.449024 0.245252 0.712668 Vertex 32182 0.607259 0.486168 0.194388 Vertex 32183 0.361356 0.175056 0.453617 Vertex 32184 0.459945 0.190656 0.638042 Vertex 32185 0.525 0.533869 0.583015 Vertex 32186 0.358265 0.219518 0.547301 Vertex 32187 0.464819 0.202762 0.662912 Vertex 32188 0.420808 0.249184 0.447854 Vertex 32189 0.599092 0.465308 0.192013 Vertex 32190 0.392131 0.35411 0.38704 Vertex 32191 0.448283 0.132608 0.764414 Vertex 32192 0.452678 0.459273 0.401687 Vertex 32193 0.45494 0.458763 0.399116 Vertex 32194 0.452257 0.455956 0.40116 Vertex 32195 0.360883 0.233501 0.493168 Vertex 32196 0.322889 0.958784 0.220874 Vertex 32197 0.437498 0.829937 0.363497 Vertex 32198 0.40814 0.367637 0.27124 Vertex 32199 0.629333 0.521739 0.251612 Vertex 32200 0.394991 0.426473 0.366856 Vertex 32201 0.556425 0.040203 0.754067 Vertex 32202 0.342546 0.251168 0.218996 Vertex 32203 0.417793 0.239566 0.197343 Vertex 32204 0.677935 0.447777 0.202194 Vertex 32205 0.439186 0.559028 0.550144 Vertex 32206 0.37948 0.869921 0.35841 Vertex 32207 0.548572 0.439094 0.372761 Vertex 32208 0.556976 0.0423767 0.739456 Vertex 32209 0.551835 0.564317 0.513767 Vertex 32210 0.431238 0.257944 0.683641 Vertex 32211 0.417586 0.409013 0.372731 Vertex 32212 0.449314 0.459077 0.404097 Vertex 32213 0.694234 0.458651 0.214892 Vertex 32214 0.525029 0.0715102 0.793181 Vertex 32215 0.375494 0.448274 0.567622 Vertex 32216 0.50706 0.628927 0.414539 Vertex 32217 0.365952 0.316252 0.202816 Vertex 32218 0.531135 0.649165 0.515834 Vertex 32219 0.476013 0.207874 0.714729 Vertex 32220 0.477423 0.205617 0.716749 Vertex 32221 0.478068 0.286272 0.437774 Vertex 32222 0.546238 0.0446095 0.792855 Vertex 32223 0.380374 0.253591 0.201915 Vertex 32224 0.401921 0.856553 0.405643 Vertex 32225 0.394198 0.901583 0.338835 Vertex 32226 0.418386 0.22621 0.466267 Vertex 32227 0.463469 0.691364 0.43961 Vertex 32228 0.658852 0.472285 0.190982 Vertex 32229 0.476463 0.455547 0.60911 Vertex 32230 0.507919 0.645671 0.544986 Vertex 32231 0.473526 0.545003 0.418365 Vertex 32232 0.40583 0.518499 0.507584 Vertex 32233 0.664887 0.406721 0.230178 Vertex 32234 0.553126 0.0250232 0.724768 Vertex 32235 0.461597 0.226779 0.617455 Vertex 32236 0.461698 0.230374 0.615353 Vertex 32237 0.448668 0.762495 0.449595 Vertex 32238 0.518443 0.62291 0.540692 Vertex 32239 0.519083 0.625581 0.538921 Vertex 32240 0.521955 0.626079 0.536937 Vertex 32241 0.414044 0.272561 0.218943 Vertex 32242 0.592613 0.473126 0.436441 Vertex 32243 0.553896 0.00976055 0.726675 Vertex 32244 0.465187 0.217984 0.600771 Vertex 32245 0.478157 0.21103 0.783082 Vertex 32246 0.488877 0.636491 0.407823 Vertex 32247 0.493787 0.164407 0.698217 Vertex 32248 0.458684 0.790219 0.472753 Vertex 32249 0.57106 0.485356 0.511748 Vertex 32250 0.467159 0.517481 0.413645 Vertex 32251 0.423977 0.135285 0.676812 Vertex 32252 0.449539 0.188056 0.586278 Vertex 32253 0.385491 0.302761 0.239891 Vertex 32254 0.547204 0.606765 0.477064 Vertex 32255 0.507907 0.393318 0.577975 Vertex 32256 0.536223 0.569748 0.5531 Vertex 32257 0.539344 0.568878 0.55111 Vertex 32258 0.412724 0.470538 0.409753 Vertex 32259 0.543378 0.608968 0.465231 Vertex 32260 0.447638 0.360169 0.413769 Vertex 32261 0.397313 0.395071 0.263256 Vertex 32262 0.394517 0.395385 0.261734 Vertex 32263 0.428673 0.169749 0.509473 Vertex 32264 0.496464 0.618971 0.406283 Vertex 32265 0.515914 0.332178 0.468548 Vertex 32266 0.359526 0.178089 0.452876 Vertex 32267 0.50135 0.438159 0.391867 Vertex 32268 0.523193 0.356479 0.544826 Vertex 32269 0.594407 0.44674 0.190763 Vertex 32270 0.362257 0.431975 0.456827 Vertex 32271 0.357104 0.891461 0.297016 Vertex 32272 0.506651 0.760529 0.475566 Vertex 32273 0.391669 0.394526 0.259667 Vertex 32274 0.354764 0.408439 0.467026 Vertex 32275 0.376684 0.346037 0.426467 Vertex 32276 0.375251 0.346961 0.429002 Vertex 32277 0.463433 0.218825 0.696073 Vertex 32278 0.46389 0.218404 0.691933 Vertex 32279 0.426749 0.32057 0.426716 Vertex 32280 0.469386 0.130636 0.809142 Vertex 32281 0.463558 0.135315 0.806483 Vertex 32282 0.649701 0.465663 0.217889 Vertex 32283 0.456587 0.131412 0.646334 Vertex 32284 0.389963 0.338522 0.622567 Vertex 32285 0.376696 0.0723276 0.47174 Vertex 32286 0.371289 0.220116 0.487796 Vertex 32287 0.441905 0.830351 0.371481 Vertex 32288 0.370027 0.311295 0.247615 Vertex 32289 0.373291 0.274699 0.592456 Vertex 32290 0.59478 0.512837 0.25779 Vertex 32291 0.385077 0.485718 0.54065 Vertex 32292 0.513397 0.127876 0.695966 Vertex 32293 0.503737 0.391423 0.590329 Vertex 32294 0.516856 0.359435 0.571732 Vertex 32295 0.466205 0.672808 0.432562 Vertex 32296 0.500118 0.199878 0.471841 Vertex 32297 0.387387 0.198859 0.677428 Vertex 32298 0.643174 0.485771 0.190846 Vertex 32299 0.519314 0.148303 0.727925 Vertex 32300 0.416023 0.141706 0.674798 Vertex 32301 0.410526 0.448908 0.391298 Vertex 32302 0.378224 0.88561 0.368147 Vertex 32303 0.506219 0.661011 0.415303 Vertex 32304 0.5449 0.0559514 0.791279 Vertex 32305 0.426423 0.426775 0.387419 Vertex 32306 0.552504 0.440451 0.532353 Vertex 32307 0.416603 0.482099 0.593889 Vertex 32308 0.31991 0.960141 0.268095 Vertex 32309 0.432097 0.33861 0.648158 Vertex 32310 0.424445 0.8332 0.352736 Vertex 32311 0.369938 0.365582 0.559324 Vertex 32312 0.532385 0.0883484 0.77254 Vertex 32313 0.532794 0.0884846 0.779002 Vertex 32314 0.440116 0.343437 0.416825 Vertex 32315 0.450623 0.332131 0.417275 Vertex 32316 0.433749 0.210391 0.793536 Vertex 32317 0.520528 0.162559 0.462566 Vertex 32318 0.488042 0.0973508 0.65077 Vertex 32319 0.412131 0.178225 0.557281 Vertex 32320 0.410876 0.179599 0.555214 Vertex 32321 0.410852 0.180523 0.557257 Vertex 32322 0.348883 0.176033 0.468027 Vertex 32323 0.456723 0.295185 0.426823 Vertex 32324 0.452133 0.359381 0.411915 Vertex 32325 0.450723 0.363663 0.411779 Vertex 32326 0.494841 0.701901 0.527537 Vertex 32327 0.395524 0.508378 0.499221 Vertex 32328 0.402406 0.169613 0.613209 Vertex 32329 0.510898 0.0874777 0.689297 Vertex 32330 0.380321 0.238411 0.207275 Vertex 32331 0.41392 0.828918 0.422499 Vertex 32332 0.382429 0.23324 0.223136 Vertex 32333 0.388684 0.24646 0.642171 Vertex 32334 0.5156 0.291182 0.511611 Vertex 32335 0.589071 0.493713 0.397754 Vertex 32336 0.597671 0.503776 0.257577 Vertex 32337 0.407198 0.362141 0.308494 Vertex 32338 0.512432 0.523901 0.399608 Vertex 32339 0.459921 0.0679507 0.673389 Vertex 32340 0.417201 0.383658 0.298686 Vertex 32341 0.522933 0.608056 0.545021 Vertex 32342 0.530253 0.491972 0.413864 Vertex 32343 0.49467 0.173125 0.460268 Vertex 32344 0.439044 0.410334 0.408273 Vertex 32345 0.520717 0.310851 0.506974 Vertex 32346 0.478376 0.170312 0.538583 Vertex 32347 0.377567 0.19774 0.476058 Vertex 32348 0.345756 0.934022 0.315269 Vertex 32349 0.482042 0.655117 0.523966 Vertex 32350 0.411373 0.339191 0.436222 Vertex 32351 0.406878 0.34066 0.439213 Vertex 32352 0.469303 0.604698 0.539726 Vertex 32353 0.352668 0.406632 0.486239 Vertex 32354 0.437812 0.353245 0.419834 Vertex 32355 0.440234 0.829025 0.454398 Vertex 32356 0.480129 0.468151 0.383788 Vertex 32357 0.545989 0.585052 0.45473 Vertex 32358 0.546546 0.584081 0.458758 Vertex 32359 0.510732 0.746149 0.443051 Vertex 32360 0.457191 0.651694 0.445651 Vertex 32361 0.370856 0.271175 0.586308 Vertex 32362 0.511679 0.156897 0.725875 Vertex 32363 0.362138 0.193772 0.463253 Vertex 32364 0.365479 0.192303 0.465136 Vertex 32365 0.458997 0.185379 0.479084 Vertex 32366 0.597671 0.458319 0.397689 Vertex 32367 0.421945 0.387218 0.418839 Vertex 32368 0.38789 0.860912 0.370735 Vertex 32369 0.516459 0.367004 0.472255 Vertex 32370 0.456409 0.0979786 0.72109 Vertex 32371 0.338738 0.907997 0.298319 Vertex 32372 0.448751 0.444756 0.396724 Vertex 32373 0.434519 0.817185 0.447564 Vertex 32374 0.4153 0.150667 0.686928 Vertex 32375 0.500065 0.769952 0.437661 Vertex 32376 0.615054 0.505002 0.193049 Vertex 32377 0.407547 0.374679 0.368597 Vertex 32378 0.4049 0.3725 0.370693 Vertex 32379 0.404349 0.171888 0.702297 Vertex 32380 0.490684 0.720077 0.517818 Vertex 32381 0.498738 0.0889762 0.791522 Vertex 32382 0.468189 0.63318 0.522894 Vertex 32383 0.383981 0.355443 0.320937 Vertex 32384 0.389098 0.355028 0.325101 Vertex 32385 0.489612 0.782751 0.476383 Vertex 32386 0.407334 0.354744 0.244268 Vertex 32387 0.409283 0.158751 0.685714 Vertex 32388 0.524976 0.100182 0.717205 Vertex 32389 0.425292 0.234614 0.199819 Vertex 32390 0.444404 0.36332 0.414865 Vertex 32391 0.548163 0.14889 0.417453 Vertex 32392 0.557331 0.0355774 0.72982 Vertex 32393 0.49557 0.243155 0.509544 Vertex 32394 0.534494 0.404547 0.536487 Vertex 32395 0.472418 0.0848954 0.753884 Vertex 32396 0.415341 0.175015 0.546905 Vertex 32397 0.561602 0.551264 0.504332 Vertex 32398 0.557752 0.488578 0.372743 Vertex 32399 0.550313 0.158135 0.441428 Vertex 32400 0.352182 0.142185 0.456525 Vertex 32401 0.388749 0.410618 0.590507 Vertex 32402 0.535643 0.0532092 0.721019 Vertex 32403 0.617038 0.522539 0.213453 Vertex 32404 0.519385 0.131613 0.708054 Vertex 32405 0.572985 0.407023 0.420432 Vertex 32406 0.471518 0.104565 0.778818 Vertex 32407 0.497595 0.78355 0.453629 Vertex 32408 0.532243 0.599367 0.538909 Vertex 32409 0.52269 0.0721617 0.653903 Vertex 32410 0.448668 0.41124 0.63562 Vertex 32411 0.327384 0.945399 0.235296 Vertex 32412 0.388364 0.887896 0.318521 Vertex 32413 0.433583 0.140675 0.629579 Vertex 32414 0.57202 0.504451 0.368881 Vertex 32415 0.332726 0.951446 0.287551 Vertex 32416 0.360646 0.129481 0.458349 Vertex 32417 0.523104 0.127071 0.709257 Vertex 32418 0.354344 0.363829 0.410091 Vertex 32419 0.403372 0.491326 0.441173 Vertex 32420 0.512367 0.0991217 0.802313 Vertex 32421 0.492058 0.576601 0.390114 Vertex 32422 0.428235 0.385761 0.422878 Vertex 32423 0.4628 0.160421 0.658505 Vertex 32424 0.457161 0.616496 0.447333 Vertex 32425 0.50507 0.63026 0.557281 Vertex 32426 0.422034 0.462459 0.403197 Vertex 32427 0.475954 0.118364 0.81664 Vertex 32428 0.373356 0.368419 0.580243 Vertex 32429 0.445227 0.598734 0.476603 Vertex 32430 0.447667 0.241864 0.689866 Vertex 32431 0.451884 0.310661 0.637065 Vertex 32432 0.424379 0.377096 0.426621 Vertex 32433 0.456273 0.588647 0.536617 Vertex 32434 0.405202 0.841557 0.366666 Vertex 32435 0.460946 0.113674 0.778818 Vertex 32436 0.363666 0.446267 0.526844 Vertex 32437 0.48745 0.493731 0.602927 Vertex 32438 0.507794 0.153184 0.705211 Vertex 32439 0.537745 0.580379 0.534514 Vertex 32440 0.436509 0.53988 0.478486 Vertex 32441 0.549981 0.000864725 0.756105 Vertex 32442 0.445973 0.764906 0.443495 Vertex 32443 0.463499 0.398441 0.625095 Vertex 32444 0.437326 0.804143 0.44956 Vertex 32445 0.594046 0.449021 0.203278 Vertex 32446 0.501173 0.555623 0.38916 Vertex 32447 0.353189 0.367554 0.432876 Vertex 32448 0.420855 0.224498 0.778729 Vertex 32449 0.370288 0.350166 0.275268 Vertex 32450 0.643962 0.426734 0.196532 Vertex 32451 0.642357 0.426746 0.197681 Vertex 32452 0.42172 0.349437 0.642117 Vertex 32453 0.34809 0.0864176 0.443293 Vertex 32454 0.59189 0.520454 0.295493 Vertex 32455 0.600472 0.438555 0.187665 Vertex 32456 0.469013 0.403215 0.383327 Vertex 32457 0.425635 0.537292 0.499405 Vertex 32458 0.435259 0.215372 0.469341 Vertex 32459 0.356103 0.898343 0.339588 Vertex 32460 0.357572 0.896975 0.341655 Vertex 32461 0.450036 0.530931 0.435245 Vertex 32462 0.543988 0.159823 0.427492 Vertex 32463 0.491258 0.723577 0.404488 Vertex 32464 0.509589 0.271299 0.540621 Vertex 32465 0.537656 0.166853 0.437785 Vertex 32466 0.549952 0.572804 0.473446 Vertex 32467 0.385941 0.262457 0.608915 Vertex 32468 0.491187 0.369177 0.621518 Vertex 32469 0.487776 0.067619 0.737052 Vertex 32470 0.489381 0.0645274 0.736329 Vertex 32471 0.407488 0.318983 0.633595 Vertex 32472 0.355369 0.373601 0.465729 Vertex 32473 0.4361 0.195365 0.797492 Vertex 32474 0.620242 0.487246 0.330402 Vertex 32475 0.611305 0.474695 0.219926 Vertex 32476 0.505182 0.393395 0.584134 Vertex 32477 0.507581 0.391749 0.577957 Vertex 32478 0.373622 0.0787181 0.467108 Vertex 32479 0.372781 0.077498 0.468601 Vertex 32480 0.455941 0.798541 0.470271 Vertex 32481 0.499787 0.0285591 0.666637 Vertex 32482 0.538716 0.0490989 0.716636 Vertex 32483 0.539356 0.0484415 0.715167 Vertex 32484 0.461663 0.505683 0.603685 Vertex 32485 0.459098 0.500435 0.604514 Vertex 32486 0.592802 0.425602 0.195549 Vertex 32487 0.375435 0.222485 0.583406 Vertex 32488 0.377075 0.221123 0.585058 Vertex 32489 0.45648 0.709955 0.459954 Vertex 32490 0.409354 0.280847 0.218019 Vertex 32491 0.459661 0.210705 0.623763 Vertex 32492 0.496032 0.716387 0.522029 Vertex 32493 0.499769 0.091588 0.721961 Vertex 32494 0.407405 0.343206 0.235947 Vertex 32495 0.414264 0.26867 0.211107 Vertex 32496 0.484577 0.0518174 0.688184 Vertex 32497 0.605287 0.4875 0.21013 Vertex 32498 0.350097 0.0839715 0.444626 Vertex 32499 0.580631 0.505138 0.432822 Vertex 32500 0.307987 0.959157 0.2221 Vertex 32501 0.462883 0.163329 0.503367 Vertex 32502 0.490115 0.542409 0.383261 Vertex 32503 0.523584 0.111228 0.79244 Vertex 32504 0.344364 0.0994237 0.45152 Vertex 32505 0.578469 0.410393 0.412164 Vertex 32506 0.351744 0.262332 0.220015 Vertex 32507 0.459098 0.339854 0.413195 Vertex 32508 0.632845 0.507726 0.27015 Vertex 32509 0.468776 0.182702 0.693674 Vertex 32510 0.508742 0.290542 0.47376 Vertex 32511 0.387647 0.456217 0.587072 Vertex 32512 0.480947 0.696582 0.505476 Vertex 32513 0.546096 0.599794 0.503675 Vertex 32514 0.441946 0.152876 0.606771 Vertex 32515 0.40317 0.357148 0.626274 Vertex 32516 0.528701 0.171722 0.455707 Vertex 32517 0.384733 0.343692 0.397197 Vertex 32518 0.407814 0.513898 0.479635 Vertex 32519 0.550277 0.548616 0.536481 Vertex 32520 0.542981 0.579047 0.447884 Vertex 32521 0.46373 0.166735 0.660809 Vertex 32522 0.458287 0.130636 0.807306 Vertex 32523 0.455142 0.127888 0.80653 Vertex 32524 0.449201 0.16571 0.795111 Vertex 32525 0.469327 0.799364 0.473908 Vertex 32526 0.502938 0.634738 0.4097 Vertex 32527 0.548068 0.508241 0.41692 Vertex 32528 0.479662 0.261616 0.450353 Vertex 32529 0.46938 0.642419 0.428931 Vertex 32530 0.48912 0.75819 0.409955 Vertex 32531 0.421572 0.211042 0.47267 Vertex 32532 0.421264 0.405217 0.337533 Vertex 32533 0.341148 0.103037 0.454102 Vertex 32534 0.435011 0.522687 0.457792 Vertex 32535 0.370394 0.357918 0.225174 Vertex 32536 0.367107 0.409386 0.53879 Vertex 32537 0.491531 0.300172 0.613232 Vertex 32538 0.409549 0.220566 0.471556 Vertex 32539 0.435259 0.561208 0.524185 Vertex 32540 0.617393 0.513181 0.320078 Vertex 32541 0.491323 0.790053 0.435801 Vertex 32542 0.491975 0.617728 0.402925 Vertex 32543 0.392664 0.855659 0.354264 Vertex 32544 0.441614 0.526086 0.442233 Vertex 32545 0.453282 0.669095 0.468169 Vertex 32546 0.35576 0.285632 0.549682 Vertex 32547 0.352526 0.372612 0.432846 Vertex 32548 0.402021 0.191266 0.729251 Vertex 32549 0.605044 0.483159 0.274983 Vertex 32550 0.349535 0.146385 0.458485 Vertex 32551 0.527067 0.488928 0.413781 Vertex 32552 0.394227 0.497711 0.468139 Vertex 32553 0.501445 0.0424596 0.739533 Vertex 32554 0.588218 0.443815 0.188068 Vertex 32555 0.481178 0.597626 0.424495 Vertex 32556 0.482001 0.599042 0.422677 Vertex 32557 0.340242 0.913109 0.314493 Vertex 32558 0.335694 0.246217 0.223551 Vertex 32559 0.69193 0.444442 0.211469 Vertex 32560 0.575692 0.511937 0.488821 Vertex 32561 0.57504 0.515532 0.484681 Vertex 32562 0.575324 0.513791 0.486748 Vertex 32563 0.466134 0.202478 0.673276 Vertex 32564 0.42737 0.226779 0.202514 Vertex 32565 0.53489 0.583139 0.437051 Vertex 32566 0.533202 0.584922 0.435458 Vertex 32567 0.438493 0.336022 0.419656 Vertex 32568 0.51993 0.382503 0.439485 Vertex 32569 0.339152 0.249006 0.223213 Vertex 32570 0.48052 0.526234 0.399187 Vertex 32571 0.478353 0.508751 0.403772 Vertex 32572 0.399179 0.89418 0.336917 Vertex 32573 0.420038 0.412188 0.37661 Vertex 32574 0.421768 0.833401 0.357362 Vertex 32575 0.464334 0.212239 0.654282 Vertex 32576 0.381766 0.262741 0.229722 Vertex 32577 0.508002 0.0952838 0.710785 Vertex 32578 0.443794 0.125193 0.664724 Vertex 32579 0.395986 0.253697 0.211546 Vertex 32580 0.500616 0.55291 0.388805 Vertex 32581 0.472892 0.595423 0.549682 Vertex 32582 0.373362 0.371955 0.530653 Vertex 32583 0.606389 0.489419 0.386371 Vertex 32584 0.516856 0.358244 0.464005 Vertex 32585 0.481539 0.466238 0.606877 Vertex 32586 0.491554 0.211546 0.495833 Vertex 32587 0.499283 0.559727 0.578863 Vertex 32588 0.502778 0.562132 0.576162 Vertex 32589 0.599116 0.516924 0.333381 Vertex 32590 0.441081 0.443554 0.403416 Vertex 32591 0.362908 0.385767 0.310561 Vertex 32592 0.443427 0.251411 0.737555 Vertex 32593 0.394091 0.498398 0.472309 Vertex 32594 0.445849 0.799583 0.459137 Vertex 32595 0.448769 0.80409 0.461512 Vertex 32596 0.406215 0.277702 0.203165 Vertex 32597 0.495416 0.346961 0.439959 Vertex 32598 0.450949 0.619984 0.457703 Vertex 32599 0.452074 0.106199 0.662373 Vertex 32600 0.440708 0.358102 0.646162 Vertex 32601 0.521085 0.360945 0.493494 Vertex 32602 0.520457 0.363255 0.491877 Vertex 32603 0.525053 0.328406 0.502532 Vertex 32604 0.511466 0.0903621 0.804374 Vertex 32605 0.513142 0.0901725 0.802989 Vertex 32606 0.47201 0.631901 0.5263 Vertex 32607 0.354764 0.415196 0.497847 Vertex 32608 0.480266 0.210296 0.745823 Vertex 32609 0.479904 0.207891 0.735405 Vertex 32610 0.45805 0.484326 0.405702 Vertex 32611 0.443859 0.549232 0.453617 Vertex 32612 0.382613 0.243469 0.606765 Vertex 32613 0.423302 0.273052 0.643811 Vertex 32614 0.454005 0.469116 0.404038 Vertex 32615 0.523288 0.0243955 0.760108 Vertex 32616 0.491584 0.39516 0.613179 Vertex 32617 0.548246 0.405205 0.407171 Vertex 32618 0.548299 0.403724 0.408978 Vertex 32619 0.361807 0.925031 0.330402 Vertex 32620 0.3626 0.923426 0.334174 Vertex 32621 0.424735 0.431827 0.387763 Vertex 32622 0.416787 0.506251 0.580492 Vertex 32623 0.39094 0.37587 0.231268 Vertex 32624 0.396004 0.488158 0.573249 Vertex 32625 0.365982 0.410257 0.308523 Vertex 32626 0.500041 0.415072 0.4097 Vertex 32627 0.383241 0.484764 0.534431 Vertex 32628 0.365248 0.0994237 0.483076 Vertex 32629 0.354397 0.267995 0.224084 Vertex 32630 0.595201 0.523741 0.27875 Vertex 32631 0.433032 0.516427 0.581984 Vertex 32632 0.451292 0.0934359 0.738207 Vertex 32633 0.594644 0.440291 0.407633 Vertex 32634 0.521908 0.147462 0.445278 Vertex 32635 0.408969 0.260319 0.722968 Vertex 32636 0.516495 0.342869 0.470153 Vertex 32637 0.519912 0.366488 0.451603 Vertex 32638 0.356861 0.426746 0.48872 Vertex 32639 0.401334 0.401746 0.611586 Vertex 32640 0.544165 0.611124 0.50791 Vertex 32641 0.538018 0.0812767 0.722979 Vertex 32642 0.604873 0.472409 0.211552 Vertex 32643 0.607171 0.540804 0.262919 Vertex 32644 0.353213 0.398571 0.493399 Vertex 32645 0.47904 0.694687 0.418401 Vertex 32646 0.443391 0.576624 0.477669 Vertex 32647 0.387925 0.290897 0.449862 Vertex 32648 0.517501 0.442713 0.598497 Vertex 32649 0.442752 0.37507 0.41583 Vertex 32650 0.583202 0.485421 0.480553 Vertex 32651 0.532746 0.124394 0.781021 Vertex 32652 0.537609 0.0214045 0.731425 Vertex 32653 0.386054 0.490236 0.472492 Vertex 32654 0.521683 0.0723276 0.794732 Vertex 32655 0.495665 0.354075 0.617372 Vertex 32656 0.566138 0.426248 0.352233 Vertex 32657 0.605009 0.471325 0.392098 Vertex 32658 0.603617 0.469057 0.393816 Vertex 32659 0.495611 0.307285 0.446557 Vertex 32660 0.541009 0.65815 0.473363 Vertex 32661 0.388707 0.308245 0.619327 Vertex 32662 0.391414 0.270985 0.450679 Vertex 32663 0.529827 0.161742 0.457674 Vertex 32664 0.485774 0.752717 0.504155 Vertex 32665 0.45677 0.205848 0.597946 Vertex 32666 0.389069 0.224457 0.708522 Vertex 32667 0.530277 0.104345 0.742643 Vertex 32668 0.528974 0.546857 0.415327 Vertex 32669 0.526699 0.548604 0.413834 Vertex 32670 0.437895 0.439308 0.400698 Vertex 32671 0.457819 0.199742 0.590389 Vertex 32672 0.5381 0.0500228 0.718129 Vertex 32673 0.44775 0.554456 0.561172 Vertex 32674 0.353817 0.0923758 0.447605 Vertex 32675 0.359775 0.185231 0.507584 Vertex 32676 0.342297 0.9265 0.264441 Vertex 32677 0.555181 0.511908 0.428996 Vertex 32678 0.372692 0.371908 0.507691 Vertex 32679 0.422271 0.399821 0.378973 Vertex 32680 0.511425 0.431638 0.421451 Vertex 32681 0.362932 0.190058 0.51597 Vertex 32682 0.464026 0.221667 0.474642 Vertex 32683 0.373308 0.0816557 0.467298 Vertex 32684 0.619596 0.480411 0.337912 Vertex 32685 0.483055 0.688705 0.412857 Vertex 32686 0.558812 0.508052 0.419372 Vertex 32687 0.529773 0.0984939 0.772765 Vertex 32688 0.441674 0.162595 0.586255 Vertex 32689 0.462231 0.21398 0.649414 Vertex 32690 0.507593 0.131791 0.791487 Vertex 32691 0.452032 0.476656 0.408871 Vertex 32692 0.412356 0.15252 0.645256 Vertex 32693 0.364774 0.103315 0.482436 Vertex 32694 0.36613 0.0840544 0.472291 Vertex 32695 0.477506 0.520537 0.405483 Vertex 32696 0.469415 0.372956 0.408379 Vertex 32697 0.427595 0.509864 0.453084 Vertex 32698 0.670022 0.466031 0.192404 Vertex 32699 0.548074 0.580788 0.489775 Vertex 32700 0.358916 0.344213 0.246365 Vertex 32701 0.423852 0.198083 0.478829 Vertex 32702 0.64302 0.43281 0.221555 Vertex 32703 0.479294 0.560473 0.410109 Vertex 32704 0.523531 0.140237 0.736548 Vertex 32705 0.359834 0.226317 0.217077 Vertex 32706 0.477298 0.476964 0.388888 Vertex 32707 0.552623 0.0425129 0.725212 Vertex 32708 0.464736 0.200044 0.480654 Vertex 32709 0.377004 0.229379 0.232299 Vertex 32710 0.566683 0.440948 0.501383 Vertex 32711 0.524336 0.320795 0.507993 Vertex 32712 0.451529 0.248041 0.749999 Vertex 32713 0.393753 0.34663 0.220661 Vertex 32714 0.429657 0.518576 0.46426 Vertex 32715 0.446767 0.174239 0.586225 Vertex 32716 0.38526 0.25288 0.612119 Vertex 32717 0.383863 0.246774 0.611361 Vertex 32718 0.364063 0.441404 0.53869 Vertex 32719 0.545089 0.57483 0.517824 Vertex 32720 0.502724 0.168612 0.474453 Vertex 32721 0.52439 0.394289 0.503355 Vertex 32722 0.495185 0.183377 0.526116 Vertex 32723 0.342208 0.0861747 0.447747 Vertex 32724 0.554725 0.474376 0.372843 Vertex 32725 0.589734 0.437406 0.204202 Vertex 32726 0.392983 0.252145 0.654596 Vertex 32727 0.358425 0.422801 0.517576 Vertex 32728 0.41899 0.812453 0.399904 Vertex 32729 0.464896 0.544636 0.424578 Vertex 32730 0.503441 0.186955 0.488857 Vertex 32731 0.376512 0.403025 0.55108 Vertex 32732 0.372829 0.372109 0.50685 Vertex 32733 0.52003 0.384298 0.505458 Vertex 32734 0.528997 0.69795 0.486701 Vertex 32735 0.503601 0.417512 0.42228 Vertex 32736 0.455136 0.159645 0.540668 Vertex 32737 0.462302 0.707041 0.480571 Vertex 32738 0.372373 0.215603 0.484604 Vertex 32739 0.35849 0.275706 0.507128 Vertex 32740 0.51948 0.143488 0.716524 Vertex 32741 0.523951 0.359375 0.501164 Vertex 32742 0.522891 0.362295 0.49931 Vertex 32743 0.385468 0.430033 0.346944 Vertex 32744 0.515902 0.582363 0.414367 Vertex 32745 0.423456 0.170827 0.507501 Vertex 32746 0.451458 0.235906 0.691933 Vertex 32747 0.513048 0.174268 0.770657 Vertex 32748 0.451843 0.644161 0.456015 Vertex 32749 0.368997 0.36149 0.23385 Vertex 32750 0.38253 0.421131 0.304768 Vertex 32751 0.359627 0.444235 0.499547 Vertex 32752 0.484358 0.0509764 0.685755 Vertex 32753 0.43475 0.182442 0.791528 Vertex 32754 0.435804 0.180973 0.791386 Vertex 32755 0.596202 0.455684 0.192777 Vertex 32756 0.357365 0.229118 0.508372 Vertex 32757 0.501415 0.172065 0.453018 Vertex 32758 0.584084 0.422552 0.20127 Vertex 32759 0.356701 0.26466 0.220773 Vertex 32760 0.676004 0.449264 0.208608 Vertex 32761 0.502357 0.475975 0.606871 Vertex 32762 0.521635 0.39497 0.435286 Vertex 32763 0.424504 0.242166 0.205398 Vertex 32764 0.487817 0.100318 0.793317 Vertex 32765 0.364407 0.388065 0.300196 Vertex 32766 0.322587 0.24842 0.211409 Vertex 32767 0.488303 0.214827 0.561362 Vertex 32768 0.497892 0.110085 0.80056 Vertex 32769 0.454271 0.156056 0.797125 Vertex 32770 0.49894 0.431247 0.391458 Vertex 32771 0.378633 0.354927 0.339611 Vertex 32772 0.589503 0.44353 0.186203 Vertex 32773 0.433619 0.460309 0.408895 Vertex 32774 0.514445 0.705863 0.42889 Vertex 32775 0.573998 0.514958 0.492985 Vertex 32776 0.486899 0.68925 0.407017 Vertex 32777 0.555738 0.528716 0.54065 Vertex 32778 0.4896 0.518843 0.594606 Vertex 32779 0.386155 0.396741 0.600907 Vertex 32780 0.55177 0.446841 0.364682 Vertex 32781 0.550177 0.444442 0.369183 Vertex 32782 0.433838 0.199688 0.793743 Vertex 32783 0.374641 0.385275 0.546952 Vertex 32784 0.400132 0.311846 0.23388 Vertex 32785 0.505893 0.571892 0.572573 Vertex 32786 0.644217 0.42581 0.201755 Vertex 32787 0.65653 0.411353 0.21552 Vertex 32788 0.397881 0.278395 0.193482 Vertex 32789 0.375754 0.413378 0.300836 Vertex 32790 0.459975 0.176116 0.660845 Vertex 32791 0.45959 0.177775 0.658748 Vertex 32792 0.422727 0.231677 0.198439 Vertex 32793 0.56756 0.420379 0.356491 Vertex 32794 0.619513 0.488104 0.229118 Vertex 32795 0.569686 0.406289 0.44324 Vertex 32796 0.467443 0.704862 0.430631 Vertex 32797 0.481622 0.305858 0.628874 Vertex 32798 0.428573 0.259602 0.685696 Vertex 32799 0.545676 0.159308 0.445378 Vertex 32800 0.451215 0.751811 0.449672 Vertex 32801 0.483867 0.160966 0.663451 Vertex 32802 0.457463 0.225162 0.627707 Vertex 32803 0.354658 0.287794 0.522438 Vertex 32804 0.545735 0.482969 0.39561 Vertex 32805 0.522678 0.716091 0.449489 Vertex 32806 0.52269 0.717773 0.451496 Vertex 32807 0.394926 0.506311 0.540692 Vertex 32808 0.39643 0.50881 0.540745 Vertex 32809 0.396353 0.509444 0.538607 Vertex 32810 0.395785 0.507809 0.540692 Vertex 32811 0.468693 0.12639 0.8107 Vertex 32812 0.534476 0.490473 0.408924 Vertex 32813 0.512799 0.623467 0.421273 Vertex 32814 0.510921 0.625806 0.419816 Vertex 32815 0.401163 0.240111 0.733409 Vertex 32816 0.403324 0.384908 0.260727 Vertex 32817 0.551604 0.546028 0.53442 Vertex 32818 0.486798 0.760896 0.493873 Vertex 32819 0.371395 0.366459 0.501306 Vertex 32820 0.371603 0.366317 0.497166 Vertex 32821 0.370993 0.364943 0.49915 Vertex 32822 0.481042 0.590483 0.422576 Vertex 32823 0.531047 0.0425958 0.657741 Vertex 32824 0.528168 0.0417252 0.659263 Vertex 32825 0.372313 0.374762 0.541888 Vertex 32826 0.460751 0.758788 0.474316 Vertex 32827 0.459921 0.105512 0.660454 Vertex 32828 0.453104 0.58282 0.534651 Vertex 32829 0.520143 0.118341 0.713699 Vertex 32830 0.385835 0.329472 0.261882 Vertex 32831 0.565676 0.533099 0.505055 Vertex 32832 0.56541 0.534864 0.505369 Vertex 32833 0.523625 0.672726 0.433178 Vertex 32834 0.417663 0.160161 0.710595 Vertex 32835 0.659823 0.430927 0.229746 Vertex 32836 0.460472 0.242083 0.455998 Vertex 32837 0.421104 0.400739 0.345256 Vertex 32838 0.399421 0.364427 0.36441 Vertex 32839 0.414151 0.385127 0.366518 Vertex 32840 0.57395 0.503811 0.341815 Vertex 32841 0.383294 0.893493 0.374567 Vertex 32842 0.556467 0.0460783 0.749738 Vertex 32843 0.542152 0.586717 0.519986 Vertex 32844 0.365141 0.217261 0.229699 Vertex 32845 0.533339 0.113336 0.796953 Vertex 32846 0.426849 0.133911 0.674058 Vertex 32847 0.526539 0.0772256 0.711247 Vertex 32848 0.434016 0.147812 0.598722 Vertex 32849 0.570794 0.499505 0.341696 Vertex 32850 0.618589 0.513471 0.31566 Vertex 32851 0.53627 0.0674058 0.712603 Vertex 32852 0.451026 0.609886 0.460469 Vertex 32853 0.427151 0.232074 0.461186 Vertex 32854 0.43934 0.776727 0.42674 Vertex 32855 0.501647 0.413929 0.415658 Vertex 32856 0.556011 0.518227 0.542682 Vertex 32857 0.425292 0.401936 0.625723 Vertex 32858 0.526308 0.655449 0.434783 Vertex 32859 0.334314 0.913825 0.29409 Vertex 32860 0.526646 0.0467357 0.649195 Vertex 32861 0.655642 0.428309 0.232003 Vertex 32862 0.36154 0.417796 0.435594 Vertex 32863 0.405267 0.284175 0.230072 Vertex 32864 0.353586 0.318142 0.232909 Vertex 32865 0.407334 0.362046 0.246335 Vertex 32866 0.528577 0.395569 0.443252 Vertex 32867 0.420097 0.139135 0.686496 Vertex 32868 0.480899 0.385719 0.624776 Vertex 32869 0.485229 0.152834 0.655485 Vertex 32870 0.359627 0.378926 0.356177 Vertex 32871 0.524863 0.393893 0.431638 Vertex 32872 0.471571 0.310531 0.426781 Vertex 32873 0.476446 0.213903 0.770734 Vertex 32874 0.575467 0.500903 0.394532 Vertex 32875 0.51239 0.0347364 0.723163 Vertex 32876 0.515985 0.0331314 0.725419 Vertex 32877 0.519847 0.685406 0.509639 Vertex 32878 0.484601 0.0501294 0.686543 Vertex 32879 0.553606 0.149447 0.437081 Vertex 32880 0.507089 0.638238 0.551311 Vertex 32881 0.508706 0.638972 0.547029 Vertex 32882 0.508694 0.602358 0.414367 Vertex 32883 0.46389 0.216319 0.787939 Vertex 32884 0.507403 0.657445 0.414977 Vertex 32885 0.587436 0.49132 0.433681 Vertex 32886 0.375814 0.875879 0.360447 Vertex 32887 0.419647 0.247212 0.758201 Vertex 32888 0.448852 0.300036 0.636058 Vertex 32889 0.5372 0.106276 0.789236 Vertex 32890 0.366142 0.188116 0.515805 Vertex 32891 0.38311 0.227786 0.673276 Vertex 32892 0.625655 0.526169 0.274243 Vertex 32893 0.450297 0.469691 0.620061 Vertex 32894 0.457736 0.687633 0.476437 Vertex 32895 0.458441 0.68617 0.4806 Vertex 32896 0.558522 0.012485 0.764456 Vertex 32897 0.557781 0.0101159 0.764325 Vertex 32898 0.533013 0.107798 0.796148 Vertex 32899 0.534861 0.110221 0.796663 Vertex 32900 0.445814 0.593925 0.473671 Vertex 32901 0.55257 0.558317 0.491972 Vertex 32902 0.548489 0.467636 0.38595 Vertex 32903 0.536649 0.588132 0.534414 Vertex 32904 0.509565 0.0617201 0.63363 Vertex 32905 0.506106 0.0637575 0.63546 Vertex 32906 0.671959 0.452166 0.192315 Vertex 32907 0.47047 0.812086 0.457425 Vertex 32908 0.531189 0.689647 0.486789 Vertex 32909 0.349292 0.899433 0.285863 Vertex 32910 0.348421 0.280793 0.229527 Vertex 32911 0.551592 0.423648 0.379044 Vertex 32912 0.470351 0.265572 0.61633 Vertex 32913 0.565368 0.504433 0.522029 Vertex 32914 0.423456 0.238055 0.772475 Vertex 32915 0.572938 0.499707 0.40755 Vertex 32916 0.355534 0.260757 0.212416 Vertex 32917 0.518461 0.388165 0.542812 Vertex 32918 0.364774 0.41583 0.540893 Vertex 32919 0.595876 0.527407 0.215573 Vertex 32920 0.529365 0.0539377 0.725875 Vertex 32921 0.400618 0.252134 0.45348 Vertex 32922 0.354006 0.134906 0.455263 Vertex 32923 0.514037 0.0485007 0.630953 Vertex 32924 0.627977 0.496627 0.283986 Vertex 32925 0.626644 0.497705 0.29072 Vertex 32926 0.48405 0.108213 0.651214 Vertex 32927 0.444576 0.554515 0.45364 Vertex 32928 0.374126 0.370125 0.582286 Vertex 32929 0.489564 0.220903 0.497065 Vertex 32930 0.490494 0.220441 0.499505 Vertex 32931 0.543757 0.555712 0.54896 Vertex 32932 0.408755 0.371511 0.258358 Vertex 32933 0.408726 0.371955 0.260656 Vertex 32934 0.409093 0.371031 0.260645 Vertex 32935 0.418392 0.168227 0.530286 Vertex 32936 0.409881 0.235959 0.204581 Vertex 32937 0.495416 0.247656 0.57801 Vertex 32938 0.359432 0.399128 0.364451 Vertex 32939 0.412108 0.176851 0.586272 Vertex 32940 0.413961 0.174144 0.588351 Vertex 32941 0.459483 0.813756 0.389368 Vertex 32942 0.461319 0.508437 0.415493 Vertex 32943 0.488072 0.451408 0.383149 Vertex 32944 0.484945 0.187405 0.79029 Vertex 32945 0.447484 0.337088 0.638694 Vertex 32946 0.476481 0.493909 0.60407 Vertex 32947 0.375328 0.175423 0.478486 Vertex 32948 0.537106 0.0306261 0.72889 Vertex 32949 0.500083 0.423997 0.606256 Vertex 32950 0.45157 0.464443 0.403552 Vertex 32951 0.448094 0.467606 0.40649 Vertex 32952 0.368493 0.167522 0.476851 Vertex 32953 0.50427 0.273787 0.577904 Vertex 32954 0.5103 0.41785 0.435511 Vertex 32955 0.416117 0.140752 0.668272 Vertex 32956 0.509915 0.0430044 0.726107 Vertex 32957 0.521037 0.726586 0.482614 Vertex 32958 0.385314 0.173155 0.532281 Vertex 32959 0.377383 0.383463 0.584164 Vertex 32960 0.587294 0.507211 0.303921 Vertex 32961 0.364904 0.229231 0.205291 Vertex 32962 0.504027 0.0836221 0.6378 Vertex 32963 0.393451 0.277595 0.231019 Vertex 32964 0.380427 0.228236 0.222728 Vertex 32965 0.361463 0.331539 0.220578 Vertex 32966 0.491092 0.501608 0.391393 Vertex 32967 0.47195 0.405477 0.381692 Vertex 32968 0.387387 0.380217 0.233181 Vertex 32969 0.382714 0.381283 0.234449 Vertex 32970 0.384342 0.383066 0.235675 Vertex 32971 0.388494 0.384037 0.235947 Vertex 32972 0.458648 0.528509 0.427587 Vertex 32973 0.593862 0.520691 0.208472 Vertex 32974 0.533712 0.0509764 0.795846 Vertex 32975 0.55238 0.439941 0.358747 Vertex 32976 0.519195 0.0919138 0.679477 Vertex 32977 0.431445 0.249386 0.446841 Vertex 32978 0.428851 0.251713 0.444519 Vertex 32979 0.559771 0.48689 0.36865 Vertex 32980 0.557225 0.484379 0.370664 Vertex 32981 0.487817 0.132283 0.64605 Vertex 32982 0.37948 0.399294 0.565531 Vertex 32983 0.360557 0.338172 0.535847 Vertex 32984 0.539528 0.530161 0.428031 Vertex 32985 0.49403 0.512204 0.389172 Vertex 32986 0.423088 0.168079 0.575884 Vertex 32987 0.614829 0.495312 0.248675 Vertex 32988 0.349819 0.924397 0.270873 Vertex 32989 0.390674 0.24951 0.646322 Vertex 32990 0.389015 0.246229 0.646322 Vertex 32991 0.389187 0.24627 0.650456 Vertex 32992 0.36138 0.27445 0.225689 Vertex 32993 0.516104 0.608459 0.551459 Vertex 32994 0.554992 0.547361 0.47928 Vertex 32995 0.540683 0.423861 0.553052 Vertex 32996 0.472708 0.208501 0.704317 Vertex 32997 0.358816 0.431561 0.504048 Vertex 32998 0.445583 0.167913 0.491457 Vertex 32999 0.652449 0.475371 0.214702 Vertex 33000 0.477518 0.699768 0.420527 Vertex 33001 0.449746 0.391589 0.404613 Vertex 33002 0.411036 0.27679 0.641756 Vertex 33003 0.375547 0.351634 0.461257 Vertex 33004 0.391751 0.887458 0.386602 Vertex 33005 0.453626 0.324396 0.418199 Vertex 33006 0.508529 0.0357433 0.628738 Vertex 33007 0.413553 0.171396 0.594576 Vertex 33008 0.648949 0.455239 0.219144 Vertex 33009 0.377359 0.227027 0.229912 Vertex 33010 0.376317 0.224771 0.230208 Vertex 33011 0.442082 0.533946 0.449915 Vertex 33012 0.651579 0.426823 0.197971 Vertex 33013 0.410384 0.381425 0.372743 Vertex 33014 0.46097 0.450626 0.618598 Vertex 33015 0.629493 0.500056 0.185658 Vertex 33016 0.624737 0.501116 0.184722 Vertex 33017 0.392332 0.46744 0.420242 Vertex 33018 0.495611 0.207874 0.522071 Vertex 33019 0.395388 0.175411 0.672613 Vertex 33020 0.524822 0.0161807 0.74372 Vertex 33021 0.481302 0.314239 0.432046 Vertex 33022 0.509198 0.102527 0.709707 Vertex 33023 0.53062 0.587587 0.547224 Vertex 33024 0.582532 0.513489 0.347708 Vertex 33025 0.349304 0.293616 0.197894 Vertex 33026 0.521558 0.10999 0.713017 Vertex 33027 0.325874 0.247958 0.231428 Vertex 33028 0.453886 0.450134 0.396368 Vertex 33029 0.453478 0.451473 0.39747 Vertex 33030 0.454579 0.453457 0.397174 Vertex 33031 0.497933 0.205238 0.51083 Vertex 33032 0.454105 0.4633 0.401687 Vertex 33033 0.384852 0.495093 0.509598 Vertex 33034 0.519018 0.378594 0.459723 Vertex 33035 0.64857 0.457946 0.193866 Vertex 33036 0.343559 0.260171 0.210592 Vertex 33037 0.383863 0.171046 0.515799 Vertex 33038 0.515073 0.362508 0.573823 Vertex 33039 0.346437 0.929354 0.267894 Vertex 33040 0.347124 0.929325 0.269866 Vertex 33041 0.60091 0.527395 0.239945 Vertex 33042 0.601935 0.528396 0.241929 Vertex 33043 0.530022 0.103771 0.75829 Vertex 33044 0.396975 0.468417 0.589897 Vertex 33045 0.589728 0.450383 0.446053 Vertex 33046 0.437131 0.147841 0.749856 Vertex 33047 0.417308 0.162269 0.712692 Vertex 33048 0.435573 0.53805 0.489129 Vertex 33049 0.402205 0.8703 0.405418 Vertex 33050 0.467609 0.186659 0.688699 Vertex 33051 0.526291 0.692513 0.446652 Vertex 33052 0.524087 0.689949 0.44048 Vertex 33053 0.442224 0.203278 0.797996 Vertex 33054 0.46874 0.0789076 0.747446 Vertex 33055 0.371087 0.888761 0.360163 Vertex 33056 0.528281 0.173641 0.451686 Vertex 33057 0.327076 0.938132 0.237143 Vertex 33058 0.352034 0.0958287 0.45656 Vertex 33059 0.639337 0.440806 0.197781 Vertex 33060 0.363767 0.221614 0.22634 Vertex 33061 0.490524 0.223243 0.515834 Vertex 33062 0.491489 0.222129 0.520466 Vertex 33063 0.385077 0.24049 0.631818 Vertex 33064 0.515115 0.315844 0.476745 Vertex 33065 0.595864 0.450075 0.413195 Vertex 33066 0.432032 0.862191 0.405317 Vertex 33067 0.541784 0.505209 0.417015 Vertex 33068 0.502819 0.0927015 0.63886 Vertex 33069 0.504886 0.0933826 0.638836 Vertex 33070 0.644395 0.427444 0.217699 Vertex 33071 0.430924 0.834302 0.353814 Vertex 33072 0.506189 0.416677 0.434356 Vertex 33073 0.643121 0.453072 0.188347 Vertex 33074 0.499704 0.706052 0.525968 Vertex 33075 0.422307 0.482389 0.42183 Vertex 33076 0.652094 0.441925 0.196011 Vertex 33077 0.510027 0.142754 0.68598 Vertex 33078 0.507848 0.147539 0.689155 Vertex 33079 0.466401 0.466765 0.395255 Vertex 33080 0.356837 0.315488 0.524138 Vertex 33081 0.44704 0.774204 0.452936 Vertex 33082 0.362642 0.309015 0.242829 Vertex 33083 0.46113 0.792346 0.479001 Vertex 33084 0.589089 0.413988 0.3725 Vertex 33085 0.370649 0.292283 0.590395 Vertex 33086 0.462983 0.0812826 0.70973 Vertex 33087 0.461082 0.078422 0.707764 Vertex 33088 0.528441 0.0502656 0.655917 Vertex 33089 0.443871 0.580462 0.499369 Vertex 33090 0.421714 0.388787 0.400656 Vertex 33091 0.512568 0.283133 0.538554 Vertex 33092 0.398509 0.842463 0.374893 Vertex 33093 0.474841 0.513548 0.409114 Vertex 33094 0.487491 0.185367 0.789781 Vertex 33095 0.495937 0.569357 0.576245 Vertex 33096 0.425576 0.450116 0.396848 Vertex 33097 0.428205 0.448938 0.397351 Vertex 33098 0.510501 0.315944 0.462619 Vertex 33099 0.602663 0.448422 0.388687 Vertex 33100 0.462533 0.169548 0.659364 Vertex 33101 0.366983 0.291579 0.478616 Vertex 33102 0.53996 0.402451 0.445562 Vertex 33103 0.373356 0.227027 0.233418 Vertex 33104 0.526498 0.0560106 0.791807 Vertex 33105 0.425457 0.128226 0.700965 Vertex 33106 0.507386 0.427806 0.601778 Vertex 33107 0.425232 0.245684 0.218973 Vertex 33108 0.551604 0.0388704 0.788922 Vertex 33109 0.315799 0.961633 0.214021 Vertex 33110 0.453513 0.139461 0.791114 Vertex 33111 0.383264 0.243404 0.218327 Vertex 33112 0.444114 0.252134 0.733391 Vertex 33113 0.381162 0.433953 0.402546 Vertex 33114 0.442384 0.166421 0.572413 Vertex 33115 0.556094 0.474891 0.348945 Vertex 33116 0.394038 0.333961 0.450039 Vertex 33117 0.383614 0.201524 0.478125 Vertex 33118 0.496695 0.784095 0.457757 Vertex 33119 0.30383 0.980704 0.206867 Vertex 33120 0.453152 0.183585 0.621518 Vertex 33121 0.483476 0.430702 0.373862 Vertex 33122 0.691539 0.457176 0.202294 Vertex 33123 0.594917 0.513495 0.236628 Vertex 33124 0.558747 0.536149 0.468394 Vertex 33125 0.496257 0.263434 0.46619 Vertex 33126 0.523531 0.123606 0.79571 Vertex 33127 0.555454 0.150862 0.431845 Vertex 33128 0.522577 0.641667 0.431105 Vertex 33129 0.338815 0.117263 0.467979 Vertex 33130 0.475622 0.811867 0.418335 Vertex 33131 0.641024 0.507916 0.246235 Vertex 33132 0.588443 0.498984 0.389 Vertex 33133 0.583746 0.500678 0.389433 Vertex 33134 0.385308 0.427942 0.356491 Vertex 33135 0.351898 0.38216 0.435718 Vertex 33136 0.43443 0.510202 0.451692 Vertex 33137 0.352638 0.374247 0.455684 Vertex 33138 0.491051 0.389196 0.615258 Vertex 33139 0.507617 0.0869921 0.801792 Vertex 33140 0.358561 0.386584 0.389338 Vertex 33141 0.53357 0.496218 0.416458 Vertex 33142 0.450054 0.248758 0.752024 Vertex 33143 0.388097 0.866651 0.327482 Vertex 33144 0.620467 0.491924 0.3311 Vertex 33145 0.45542 0.777835 0.469039 Vertex 33146 0.517614 0.121112 0.685696 Vertex 33147 0.53893 0.0831246 0.735417 Vertex 33148 0.552297 0.560716 0.502988 Vertex 33149 0.55055 0.562155 0.503491 Vertex 33150 0.619969 0.501875 0.334855 Vertex 33151 0.509512 0.757254 0.470407 Vertex 33152 0.341658 0.94823 0.290513 Vertex 33153 0.476635 0.21934 0.48846 Vertex 33154 0.41803 0.232547 0.199635 Vertex 33155 0.375594 0.882595 0.311579 Vertex 33156 0.359734 0.30144 0.195821 Vertex 33157 0.525627 0.150424 0.77684 Vertex 33158 0.59051 0.510676 0.300196 Vertex 33159 0.445671 0.137163 0.762442 Vertex 33160 0.673487 0.484101 0.205025 Vertex 33161 0.37284 0.368881 0.517528 Vertex 33162 0.541417 0.504984 0.573847 Vertex 33163 0.485205 0.183786 0.7199 Vertex 33164 0.49663 0.590709 0.400668 Vertex 33165 0.575739 0.481418 0.315133 Vertex 33166 0.452601 0.0787714 0.66043 Vertex 33167 0.501279 0.510599 0.598633 Vertex 33168 0.464956 0.10367 0.772617 Vertex 33169 0.582982 0.506927 0.451556 Vertex 33170 0.422508 0.393259 0.341501 Vertex 33171 0.440732 0.291851 0.637438 Vertex 33172 0.329587 0.933844 0.241662 Vertex 33173 0.360053 0.151306 0.453611 Vertex 33174 0.544758 0.398234 0.474186 Vertex 33175 0.411889 0.840307 0.358682 Vertex 33176 0.371295 0.255409 0.589216 Vertex 33177 0.509701 0.0316625 0.741612 Vertex 33178 0.429562 0.851649 0.432929 Vertex 33179 0.372598 0.378813 0.557228 Vertex 33180 0.376045 0.899729 0.364812 Vertex 33181 0.535447 0.596892 0.534597 Vertex 33182 0.537745 0.593095 0.530351 Vertex 33183 0.402359 0.179788 0.586249 Vertex 33184 0.605832 0.486316 0.207222 Vertex 33185 0.496926 0.496674 0.391879 Vertex 33186 0.49188 0.0401497 0.674496 Vertex 33187 0.451085 0.124542 0.63626 Vertex 33188 0.444209 0.164218 0.78942 Vertex 33189 0.42252 0.231529 0.776858 Vertex 33190 0.457067 0.768839 0.405839 Vertex 33191 0.515162 0.0302174 0.629721 Vertex 33192 0.680002 0.447895 0.198522 Vertex 33193 0.406031 0.178716 0.582121 Vertex 33194 0.457167 0.0719722 0.661413 Vertex 33195 0.496737 0.73608 0.503456 Vertex 33196 0.390176 0.417329 0.296808 Vertex 33197 0.599495 0.460902 0.202348 Vertex 33198 0.506053 0.0992342 0.64223 Vertex 33199 0.50369 0.110807 0.645914 Vertex 33200 0.358099 0.412869 0.518191 Vertex 33201 0.49679 0.622644 0.555978 Vertex 33202 0.495013 0.615021 0.557619 Vertex 33203 0.445204 0.242829 0.654596 Vertex 33204 0.502245 0.179137 0.748127 Vertex 33205 0.502778 0.178171 0.74574 Vertex 33206 0.36918 0.875109 0.33771 Vertex 33207 0.372207 0.872799 0.339623 Vertex 33208 0.482048 0.0665938 0.744111 Vertex 33209 0.452713 0.164407 0.635952 Vertex 33210 0.545498 0.614062 0.47633 Vertex 33211 0.549632 0.43589 0.538554 Vertex 33212 0.500462 0.0850554 0.78101 Vertex 33213 0.374345 0.307623 0.24778 Vertex 33214 0.398876 0.499162 0.459871 Vertex 33215 0.37473 0.414882 0.380987 Vertex 33216 0.354557 0.323135 0.23388 Vertex 33217 0.651472 0.48108 0.219897 Vertex 33218 0.384212 0.352647 0.366518 Vertex 33219 0.50536 0.147948 0.698128 Vertex 33220 0.404077 0.352588 0.254526 Vertex 33221 0.4145 0.252951 0.743709 Vertex 33222 0.460768 0.524345 0.422689 Vertex 33223 0.372645 0.339155 0.486748 Vertex 33224 0.42159 0.386051 0.34583 Vertex 33225 0.603439 0.447392 0.187861 Vertex 33226 0.477044 0.0716761 0.748168 Vertex 33227 0.438795 0.166403 0.546881 Vertex 33228 0.602444 0.457099 0.212795 Vertex 33229 0.52099 0.374407 0.49514 Vertex 33230 0.491418 0.226873 0.502538 Vertex 33231 0.461432 0.515177 0.420633 Vertex 33232 0.544035 0.399495 0.455725 Vertex 33233 0.546043 0.398672 0.453913 Vertex 33234 0.443705 0.196508 0.472617 Vertex 33235 0.499568 0.422392 0.40033 Vertex 33236 0.463374 0.216947 0.475501 Vertex 33237 0.467781 0.217249 0.479173 Vertex 33238 0.386729 0.30529 0.193221 Vertex 33239 0.525995 0.0146349 0.747896 Vertex 33240 0.506029 0.386288 0.448393 Vertex 33241 0.515713 0.56209 0.572076 Vertex 33242 0.501688 0.165929 0.707847 Vertex 33243 0.422265 0.40055 0.330242 Vertex 33244 0.447644 0.420651 0.636609 Vertex 33245 0.397313 0.325059 0.220524 Vertex 33246 0.596243 0.427231 0.365008 Vertex 33247 0.598127 0.430714 0.365262 Vertex 33248 0.444333 0.123997 0.662829 Vertex 33249 0.598322 0.498747 0.26373 Vertex 33250 0.427595 0.827698 0.438982 Vertex 33251 0.422911 0.826182 0.434783 Vertex 33252 0.356725 0.372044 0.38935 Vertex 33253 0.324908 0.264062 0.231079 Vertex 33254 0.324215 0.265246 0.229414 Vertex 33255 0.518947 0.387484 0.530333 Vertex 33256 0.578985 0.511777 0.366518 Vertex 33257 0.555229 0.557713 0.499885 Vertex 33258 0.549632 0.0579118 0.766523 Vertex 33259 0.429017 0.13368 0.671636 Vertex 33260 0.483547 0.0835865 0.728671 Vertex 33261 0.503169 0.089983 0.797492 Vertex 33262 0.360338 0.267219 0.223539 Vertex 33263 0.355292 0.311899 0.210237 Vertex 33264 0.635753 0.455488 0.186173 Vertex 33265 0.423148 0.38961 0.629988 Vertex 33266 0.37698 0.395047 0.551015 Vertex 33267 0.521446 0.615797 0.540692 Vertex 33268 0.585973 0.493145 0.289968 Vertex 33269 0.431706 0.836813 0.35716 Vertex 33270 0.491501 0.46099 0.387703 Vertex 33271 0.359615 0.32484 0.559431 Vertex 33272 0.41851 0.832004 0.370676 Vertex 33273 0.589734 0.473286 0.297016 Vertex 33274 0.321284 0.250067 0.218262 Vertex 33275 0.320982 0.250813 0.214158 Vertex 33276 0.321604 0.249143 0.215922 Vertex 33277 0.631673 0.521265 0.25965 Vertex 33278 0.358123 0.307256 0.558886 Vertex 33279 0.372787 0.336585 0.214845 Vertex 33280 0.433956 0.391441 0.646287 Vertex 33281 0.632431 0.477692 0.223729 Vertex 33282 0.447762 0.157934 0.509592 Vertex 33283 0.516429 0.435914 0.419911 Vertex 33284 0.475853 0.368692 0.628856 Vertex 33285 0.349748 0.188453 0.474192 Vertex 33286 0.360119 0.379163 0.3396 Vertex 33287 0.3876 0.886676 0.384606 Vertex 33288 0.377223 0.233744 0.204557 Vertex 33289 0.593205 0.520099 0.229716 Vertex 33290 0.593525 0.521899 0.229497 Vertex 33291 0.539214 0.57698 0.534384 Vertex 33292 0.420885 0.857673 0.427681 Vertex 33293 0.358442 0.214649 0.544405 Vertex 33294 0.456913 0.226862 0.677428 Vertex 33295 0.384022 0.346772 0.38492 Vertex 33296 0.469386 0.148996 0.800193 Vertex 33297 0.356524 0.276956 0.51831 Vertex 33298 0.656038 0.497444 0.219251 Vertex 33299 0.400292 0.259111 0.197154 Vertex 33300 0.464322 0.168446 0.667591 Vertex 33301 0.421999 0.491895 0.592242 Vertex 33302 0.303723 0.958535 0.240247 Vertex 33303 0.394286 0.260976 0.633914 Vertex 33304 0.445411 0.138034 0.627305 Vertex 33305 0.517958 0.0527176 0.669273 Vertex 33306 0.520919 0.150904 0.792494 Vertex 33307 0.457185 0.611219 0.447333 Vertex 33308 0.389803 0.33222 0.262019 Vertex 33309 0.43048 0.552146 0.5462 Vertex 33310 0.360521 0.278886 0.566864 Vertex 33311 0.359503 0.281403 0.563192 Vertex 33312 0.475533 0.792606 0.404761 Vertex 33313 0.455918 0.751811 0.463981 Vertex 33314 0.601248 0.452752 0.313078 Vertex 33315 0.41286 0.223569 0.470686 Vertex 33316 0.414631 0.224836 0.468903 Vertex 33317 0.464837 0.186072 0.667869 Vertex 33318 0.409827 0.374176 0.391707 Vertex 33319 0.411557 0.850796 0.341897 Vertex 33320 0.431558 0.829824 0.356124 Vertex 33321 0.446293 0.814739 0.459498 Vertex 33322 0.441034 0.823534 0.455234 Vertex 33323 0.444137 0.817315 0.458106 Vertex 33324 0.352295 0.210106 0.524067 Vertex 33325 0.413458 0.164419 0.598704 Vertex 33326 0.552155 0.559846 0.464722 Vertex 33327 0.467775 0.122392 0.815183 Vertex 33328 0.496719 0.17322 0.484788 Vertex 33329 0.425807 0.401509 0.385056 Vertex 33330 0.592624 0.517629 0.218677 Vertex 33331 0.303456 0.959276 0.228082 Vertex 33332 0.413618 0.144916 0.660815 Vertex 33333 0.383134 0.212037 0.633867 Vertex 33334 0.452921 0.494992 0.414622 Vertex 33335 0.454271 0.496876 0.414361 Vertex 33336 0.5242 0.540775 0.580516 Vertex 33337 0.478471 0.742127 0.396356 Vertex 33338 0.481853 0.137761 0.798126 Vertex 33339 0.483263 0.139953 0.797717 Vertex 33340 0.483813 0.609365 0.418389 Vertex 33341 0.414518 0.32471 0.639417 Vertex 33342 0.492999 0.741997 0.40909 Vertex 33343 0.491856 0.211818 0.519933 Vertex 33344 0.497595 0.670534 0.540786 Vertex 33345 0.522702 0.708723 0.44536 Vertex 33346 0.456587 0.38319 0.402569 Vertex 33347 0.453815 0.386347 0.40373 Vertex 33348 0.515796 0.0700177 0.778907 Vertex 33349 0.506977 0.100348 0.720131 Vertex 33350 0.467579 0.637504 0.519459 Vertex 33351 0.444203 0.131057 0.74359 Vertex 33352 0.426672 0.249765 0.217231 Vertex 33353 0.533694 0.570145 0.555303 Vertex 33354 0.529122 0.0341086 0.73059 Vertex 33355 0.552759 0.494003 0.398358 Vertex 33356 0.542329 0.052386 0.717744 Vertex 33357 0.649139 0.456465 0.193944 Vertex 33358 0.352638 0.938754 0.30433 Vertex 33359 0.35278 0.940069 0.300267 Vertex 33360 0.37499 0.36021 0.320937 Vertex 33361 0.49339 0.712988 0.406111 Vertex 33362 0.39707 0.314239 0.205534 Vertex 33363 0.413174 0.169139 0.598722 Vertex 33364 0.493852 0.351818 0.619439 Vertex 33365 0.43533 0.255972 0.648354 Vertex 33366 0.400434 0.446409 0.60073 Vertex 33367 0.570373 0.445112 0.499269 Vertex 33368 0.397668 0.413005 0.293397 Vertex 33369 0.624133 0.502869 0.185539 Vertex 33370 0.535406 0.127047 0.791333 Vertex 33371 0.646361 0.507993 0.202271 Vertex 33372 0.359591 0.338225 0.233371 Vertex 33373 0.494741 0.609703 0.559543 Vertex 33374 0.462515 0.207726 0.637693 Vertex 33375 0.483109 0.189063 0.470224 Vertex 33376 0.43533 0.257085 0.714729 Vertex 33377 0.579897 0.415398 0.359902 Vertex 33378 0.458334 0.724667 0.437158 Vertex 33379 0.630725 0.522059 0.262048 Vertex 33380 0.480763 0.0826626 0.723536 Vertex 33381 0.35605 0.322033 0.240602 Vertex 33382 0.515754 0.282926 0.490598 Vertex 33383 0.57517 0.406674 0.405945 Vertex 33384 0.337068 0.106519 0.46394 Vertex 33385 0.372989 0.352641 0.287711 Vertex 33386 0.309314 0.945239 0.249605 Vertex 33387 0.542886 0.595287 0.456785 Vertex 33388 0.519355 0.581765 0.420118 Vertex 33389 0.357915 0.422416 0.455927 Vertex 33390 0.447223 0.576074 0.528219 Vertex 33391 0.513166 0.13368 0.683605 Vertex 33392 0.487497 0.195365 0.463543 Vertex 33393 0.49984 0.20204 0.499452 Vertex 33394 0.592471 0.495774 0.273769 Vertex 33395 0.445109 0.843482 0.427977 Vertex 33396 0.507522 0.744952 0.488963 Vertex 33397 0.512337 0.740925 0.443986 Vertex 33398 0.429657 0.421291 0.620061 Vertex 33399 0.614562 0.449406 0.201951 Vertex 33400 0.443782 0.158123 0.61158 Vertex 33401 0.624115 0.490965 0.26466 Vertex 33402 0.431558 0.353654 0.64923 Vertex 33403 0.364022 0.88362 0.318805 Vertex 33404 0.551196 0.161375 0.43637 Vertex 33405 0.547837 0.163359 0.435091 Vertex 33406 0.493023 0.233217 0.517937 Vertex 33407 0.493663 0.234182 0.51629 Vertex 33408 0.375168 0.4253 0.569849 Vertex 33409 0.362393 0.886457 0.306456 Vertex 33410 0.49621 0.759931 0.419739 Vertex 33411 0.468936 0.212908 0.700207 Vertex 33412 0.492058 0.240247 0.58006 Vertex 33413 0.495392 0.0490219 0.725141 Vertex 33414 0.478536 0.0703435 0.741796 Vertex 33415 0.508096 0.62012 0.556866 Vertex 33416 0.51197 0.31492 0.466463 Vertex 33417 0.497471 0.711928 0.410322 Vertex 33418 0.357347 0.268741 0.521159 Vertex 33419 0.358573 0.268551 0.514602 Vertex 33420 0.524147 0.130417 0.705235 Vertex 33421 0.544681 0.13878 0.451662 Vertex 33422 0.496671 0.523925 0.389202 Vertex 33423 0.371289 0.365251 0.472427 Vertex 33424 0.405616 0.425946 0.370611 Vertex 33425 0.6054 0.504267 0.22634 Vertex 33426 0.605329 0.503562 0.225203 Vertex 33427 0.605471 0.503716 0.223213 Vertex 33428 0.606022 0.505659 0.223273 Vertex 33429 0.373474 0.18073 0.471432 Vertex 33430 0.472353 0.32054 0.424157 Vertex 33431 0.534061 0.15441 0.459818 Vertex 33432 0.541062 0.483793 0.399377 Vertex 33433 0.344814 0.125211 0.458864 Vertex 33434 0.559499 0.0171639 0.734961 Vertex 33435 0.480153 0.296802 0.625783 Vertex 33436 0.475682 0.555942 0.418442 Vertex 33437 0.484471 0.070456 0.698104 Vertex 33438 0.60643 0.502881 0.204012 Vertex 33439 0.601935 0.44032 0.343745 Vertex 33440 0.409916 0.268575 0.201151 Vertex 33441 0.463131 0.380555 0.629395 Vertex 33442 0.484945 0.207388 0.483532 Vertex 33443 0.396075 0.27037 0.447605 Vertex 33444 0.407909 0.371197 0.402178 Vertex 33445 0.312797 0.940003 0.253271 Vertex 33446 0.415649 0.228034 0.466374 Vertex 33447 0.410591 0.230386 0.465906 Vertex 33448 0.417012 0.833526 0.366382 Vertex 33449 0.578996 0.501987 0.387283 Vertex 33450 0.621894 0.535136 0.263096 Vertex 33451 0.445583 0.139763 0.627571 Vertex 33452 0.452779 0.208857 0.47206 Vertex 33453 0.521422 0.126253 0.711774 Vertex 33454 0.525207 0.10383 0.71785 Vertex 33455 0.392711 0.506311 0.511623 Vertex 33456 0.371259 0.0981977 0.480654 Vertex 33457 0.323872 0.931256 0.250475 Vertex 33458 0.60495 0.505138 0.241526 Vertex 33459 0.60229 0.507661 0.240922 Vertex 33460 0.595497 0.513051 0.229799 Vertex 33461 0.418848 0.172308 0.557228 Vertex 33462 0.511887 0.0319646 0.669895 Vertex 33463 0.468746 0.756265 0.392672 Vertex 33464 0.540914 0.0730916 0.764509 Vertex 33465 0.362434 0.247141 0.489182 Vertex 33466 0.422928 0.246922 0.22316 Vertex 33467 0.503186 0.280722 0.58414 Vertex 33468 0.382346 0.302281 0.611171 Vertex 33469 0.539771 0.629425 0.513584 Vertex 33470 0.523258 0.397126 0.472581 Vertex 33471 0.644916 0.43605 0.200263 Vertex 33472 0.44948 0.369947 0.636882 Vertex 33473 0.415128 0.240478 0.762389 Vertex 33474 0.464269 0.599231 0.538927 Vertex 33475 0.491187 0.558584 0.380377 Vertex 33476 0.461106 0.118951 0.783414 Vertex 33477 0.518461 0.738556 0.47633 Vertex 33478 0.321284 0.971784 0.204669 Vertex 33479 0.4127 0.418691 0.364327 Vertex 33480 0.450031 0.421249 0.631818 Vertex 33481 0.512894 0.75145 0.469093 Vertex 33482 0.371934 0.876743 0.349923 Vertex 33483 0.441798 0.138768 0.619493 Vertex 33484 0.504312 0.195868 0.484977 Vertex 33485 0.35599 0.0894085 0.446693 Vertex 33486 0.611109 0.500056 0.23606 Vertex 33487 0.487065 0.20249 0.745788 Vertex 33488 0.460306 0.770005 0.474269 Vertex 33489 0.390336 0.187038 0.662912 Vertex 33490 0.487681 0.0433302 0.673661 Vertex 33491 0.395572 0.429162 0.599255 Vertex 33492 0.577528 0.509752 0.372719 Vertex 33493 0.438931 0.126271 0.732491 Vertex 33494 0.50257 0.163809 0.71162 Vertex 33495 0.357205 0.368236 0.458254 Vertex 33496 0.352804 0.371546 0.451005 Vertex 33497 0.388097 0.350391 0.619866 Vertex 33498 0.391023 0.341359 0.218072 Vertex 33499 0.484512 0.614109 0.416227 Vertex 33500 0.470345 0.0812767 0.749317 Vertex 33501 0.541198 0.0787181 0.74991 Vertex 33502 0.468841 0.21578 0.783088 Vertex 33503 0.594733 0.474423 0.404476 Vertex 33504 0.480408 0.67006 0.419206 Vertex 33505 0.505372 0.286207 0.467245 Vertex 33506 0.454703 0.731348 0.453682 Vertex 33507 0.474995 0.116653 0.810048 Vertex 33508 0.374836 0.321447 0.256031 Vertex 33509 0.498188 0.467606 0.391612 Vertex 33510 0.337299 0.954159 0.275196 Vertex 33511 0.558439 0.00212032 0.749957 Vertex 33512 0.394121 0.393306 0.254988 Vertex 33513 0.427074 0.805612 0.430832 Vertex 33514 0.485661 0.108426 0.805435 Vertex 33515 0.488901 0.581576 0.39901 Vertex 33516 0.372005 0.191095 0.553502 Vertex 33517 0.606187 0.481506 0.208424 Vertex 33518 0.430024 0.157863 0.751977 Vertex 33519 0.579476 0.445704 0.474316 Vertex 33520 0.44457 0.411193 0.64101 Vertex 33521 0.553008 0.499962 0.404257 Vertex 33522 0.549851 0.500536 0.406176 Vertex 33523 0.518609 0.0209425 0.636793 Vertex 33524 0.490299 0.563725 0.385832 Vertex 33525 0.469303 0.179925 0.687597 Vertex 33526 0.375144 0.218351 0.216384 Vertex 33527 0.472454 0.777764 0.488513 Vertex 33528 0.471968 0.77931 0.487796 Vertex 33529 0.462936 0.574013 0.557234 Vertex 33530 0.508937 0.370913 0.453297 Vertex 33531 0.508179 0.271827 0.509692 Vertex 33532 0.590149 0.420787 0.360666 Vertex 33533 0.500409 0.77716 0.461885 Vertex 33534 0.524129 0.350497 0.540668 Vertex 33535 0.524496 0.349982 0.532228 Vertex 33536 0.51454 0.0245613 0.727054 Vertex 33537 0.472181 0.641365 0.52152 Vertex 33538 0.366634 0.255972 0.202034 Vertex 33539 0.3609 0.349301 0.424566 Vertex 33540 0.411853 0.250203 0.193754 Vertex 33541 0.474728 0.0812234 0.733492 Vertex 33542 0.560447 0.477124 0.338077 Vertex 33543 0.560322 0.478895 0.340553 Vertex 33544 0.337156 0.286639 0.221964 Vertex 33545 0.373563 0.374342 0.499464 Vertex 33546 0.664863 0.487263 0.192042 Vertex 33547 0.353148 0.222852 0.53166 Vertex 33548 0.472649 0.352398 0.417939 Vertex 33549 0.378082 0.459865 0.439171 Vertex 33550 0.515713 0.31736 0.561362 Vertex 33551 0.433619 0.524049 0.470242 Vertex 33552 0.434158 0.52595 0.472356 Vertex 33553 0.360912 0.218416 0.555255 Vertex 33554 0.431581 0.488762 0.43271 Vertex 33555 0.596877 0.52614 0.27278 Vertex 33556 0.484246 0.0580184 0.694035 Vertex 33557 0.481965 0.0579947 0.693425 Vertex 33558 0.358993 0.277062 0.499192 Vertex 33559 0.384129 0.468435 0.441078 Vertex 33560 0.483032 0.472688 0.384428 Vertex 33561 0.334864 0.91376 0.306314 Vertex 33562 0.335072 0.916206 0.306344 Vertex 33563 0.530046 0.145188 0.789325 Vertex 33564 0.491691 0.0968355 0.644747 Vertex 33565 0.491993 0.211777 0.509639 Vertex 33566 0.475646 0.409084 0.378594 Vertex 33567 0.496346 0.644486 0.405608 Vertex 33568 0.485176 0.190727 0.462424 Vertex 33569 0.454555 0.235307 0.710595 Vertex 33570 0.355878 0.356076 0.422469 Vertex 33571 0.398077 0.176483 0.604935 Vertex 33572 0.398308 0.176904 0.600771 Vertex 33573 0.508505 0.177248 0.450353 Vertex 33574 0.509127 0.175275 0.449862 Vertex 33575 0.546286 0.13583 0.445183 Vertex 33576 0.48145 0.0682765 0.704003 Vertex 33577 0.601094 0.453812 0.211273 Vertex 33578 0.346745 0.918907 0.322572 Vertex 33579 0.419819 0.81773 0.42254 Vertex 33580 0.488208 0.49039 0.389243 Vertex 33581 0.419535 0.271667 0.647021 Vertex 33582 0.491868 0.424134 0.384795 Vertex 33583 0.46107 0.187121 0.638036 Vertex 33584 0.552019 0.54453 0.45171 Vertex 33585 0.593223 0.511197 0.257843 Vertex 33586 0.531283 0.0584271 0.785564 Vertex 33587 0.457458 0.179966 0.627761 Vertex 33588 0.553026 0.554675 0.472155 Vertex 33589 0.324109 0.925102 0.281794 Vertex 33590 0.322942 0.928703 0.283506 Vertex 33591 0.322338 0.928294 0.281167 Vertex 33592 0.456534 0.263221 0.627666 Vertex 33593 0.512639 0.169453 0.756105 Vertex 33594 0.532871 0.629709 0.526383 Vertex 33595 0.541743 0.646364 0.479866 Vertex 33596 0.507089 0.27037 0.503355 Vertex 33597 0.495712 0.454914 0.387093 Vertex 33598 0.500065 0.200778 0.516207 Vertex 33599 0.515831 0.0769768 0.785185 Vertex 33600 0.344732 0.929112 0.263801 Vertex 33601 0.39248 0.358659 0.362408 Vertex 33602 0.548672 0.560527 0.45261 Vertex 33603 0.501854 0.574285 0.395758 Vertex 33604 0.391118 0.41888 0.596702 Vertex 33605 0.383726 0.263025 0.199955 Vertex 33606 0.515168 0.0616905 0.774655 Vertex 33607 0.44531 0.838661 0.436767 Vertex 33608 0.447371 0.841054 0.431501 Vertex 33609 0.568069 0.512316 0.430779 Vertex 33610 0.39919 0.273177 0.229556 Vertex 33611 0.498857 0.690879 0.534793 Vertex 33612 0.618127 0.492221 0.246554 Vertex 33613 0.55434 0.543055 0.461707 Vertex 33614 0.648339 0.506773 0.223539 Vertex 33615 0.513048 0.443394 0.601618 Vertex 33616 0.41007 0.370539 0.358262 Vertex 33617 0.360729 0.194423 0.52226 Vertex 33618 0.358679 0.201524 0.529563 Vertex 33619 0.388382 0.407455 0.285265 Vertex 33620 0.533801 0.398897 0.517901 Vertex 33621 0.529341 0.116126 0.723352 Vertex 33622 0.445227 0.591259 0.496657 Vertex 33623 0.360693 0.223 0.495549 Vertex 33624 0.352549 0.204053 0.482792 Vertex 33625 0.52863 0.168897 0.442654 Vertex 33626 0.527896 0.170365 0.443566 Vertex 33627 0.495363 0.352185 0.438917 Vertex 33628 0.518325 0.0737964 0.722346 Vertex 33629 0.464665 0.232328 0.76657 Vertex 33630 0.437356 0.166978 0.499174 Vertex 33631 0.478927 0.0779896 0.6508 Vertex 33632 0.530306 0.399679 0.446042 Vertex 33633 0.544159 0.140551 0.448754 Vertex 33634 0.543662 0.141913 0.449074 Vertex 33635 0.398734 0.882779 0.32872 Vertex 33636 0.376773 0.415102 0.567782 Vertex 33637 0.497838 0.159331 0.701036 Vertex 33638 0.523489 0.390919 0.434415 Vertex 33639 0.375423 0.396119 0.277335 Vertex 33640 0.371727 0.390457 0.273242 Vertex 33641 0.656258 0.413147 0.213536 Vertex 33642 0.37345 0.375905 0.2325 Vertex 33643 0.520783 0.0867196 0.797711 Vertex 33644 0.518443 0.0931398 0.797753 Vertex 33645 0.572008 0.500708 0.401485 Vertex 33646 0.460946 0.226471 0.778818 Vertex 33647 0.4214 0.244464 0.199819 Vertex 33648 0.658135 0.486588 0.221721 Vertex 33649 0.535228 0.00963025 0.75216 Vertex 33650 0.455237 0.4927 0.60834 Vertex 33651 0.547831 0.405744 0.51372 Vertex 33652 0.602616 0.458491 0.392359 Vertex 33653 0.343819 0.944398 0.298064 Vertex 33654 0.526468 0.120218 0.715712 Vertex 33655 0.411172 0.278928 0.223521 Vertex 33656 0.410834 0.277228 0.225582 Vertex 33657 0.373634 0.475151 0.482667 Vertex 33658 0.599003 0.527745 0.208963 Vertex 33659 0.53948 0.608009 0.452936 Vertex 33660 0.35544 0.330354 0.235894 Vertex 33661 0.402608 0.25821 0.715925 Vertex 33662 0.424042 0.11577 0.688586 Vertex 33663 0.451517 0.195922 0.801887 Vertex 33664 0.530212 0.0292402 0.770224 Vertex 33665 0.526913 0.0266579 0.764183 Vertex 33666 0.659551 0.459225 0.207518 Vertex 33667 0.558623 0.399703 0.451526 Vertex 33668 0.391301 0.357231 0.374786 Vertex 33669 0.460306 0.388876 0.62885 Vertex 33670 0.478536 0.0572011 0.687799 Vertex 33671 0.538302 0.499808 0.41397 Vertex 33672 0.511389 0.386483 0.567563 Vertex 33673 0.613271 0.532933 0.236758 Vertex 33674 0.544722 0.0019604 0.737431 Vertex 33675 0.394423 0.364984 0.228603 Vertex 33676 0.501718 0.142819 0.792689 Vertex 33677 0.476404 0.550648 0.412146 Vertex 33678 0.513764 0.350166 0.582032 Vertex 33679 0.433542 0.340796 0.647785 Vertex 33680 0.494356 0.60465 0.56196 Vertex 33681 0.539587 0.0521964 0.79767 Vertex 33682 0.467526 0.224783 0.774826 Vertex 33683 0.45317 0.193837 0.596625 Vertex 33684 0.382761 0.900055 0.368135 Vertex 33685 0.478601 0.762306 0.498996 Vertex 33686 0.410503 0.832495 0.379341 Vertex 33687 0.439601 0.251589 0.445266 Vertex 33688 0.528417 0.567527 0.561747 Vertex 33689 0.478601 0.549813 0.580468 Vertex 33690 0.380765 0.458106 0.432739 Vertex 33691 0.435964 0.783183 0.420728 Vertex 33692 0.370608 0.467381 0.512073 Vertex 33693 0.428744 0.1685 0.517812 Vertex 33694 0.443741 0.81715 0.366246 Vertex 33695 0.440572 0.818589 0.364232 Vertex 33696 0.44226 0.818044 0.365452 Vertex 33697 0.502867 0.0263558 0.660655 Vertex 33698 0.373575 0.387703 0.516018 Vertex 33699 0.421075 0.139585 0.694894 Vertex 33700 0.490085 0.193606 0.776929 Vertex 33701 0.398278 0.17258 0.614488 Vertex 33702 0.399131 0.171917 0.612208 Vertex 33703 0.382844 0.219316 0.600836 Vertex 33704 0.566867 0.495354 0.345735 Vertex 33705 0.357939 0.112572 0.458758 Vertex 33706 0.441306 0.164597 0.57708 Vertex 33707 0.418942 0.231079 0.463117 Vertex 33708 0.527049 0.345789 0.504865 Vertex 33709 0.424948 0.171112 0.509586 Vertex 33710 0.456954 0.737881 0.430726 Vertex 33711 0.607739 0.487548 0.196555 Vertex 33712 0.45218 0.585195 0.453569 Vertex 33713 0.475314 0.718899 0.414421 Vertex 33714 0.386202 0.348104 0.289577 Vertex 33715 0.596326 0.452586 0.194554 Vertex 33716 0.626822 0.463567 0.212908 Vertex 33717 0.367267 0.0915051 0.467026 Vertex 33718 0.546102 0.0189584 0.770698 Vertex 33719 0.512201 0.0678382 0.636337 Vertex 33720 0.357596 0.260378 0.551731 Vertex 33721 0.477494 0.102196 0.781241 Vertex 33722 0.492502 0.228141 0.549315 Vertex 33723 0.435869 0.167943 0.553106 Vertex 33724 0.480716 0.0752948 0.735458 Vertex 33725 0.437226 0.523688 0.4511 Vertex 33726 0.438173 0.519329 0.44536 Vertex 33727 0.513983 0.0300338 0.723708 Vertex 33728 0.515452 0.0288611 0.725188 Vertex 33729 0.373255 0.229284 0.584863 Vertex 33730 0.481083 0.125004 0.645772 Vertex 33731 0.547754 0.585005 0.492665 Vertex 33732 0.49082 0.0754073 0.760239 Vertex 33733 0.368837 0.242788 0.203716 Vertex 33734 0.371982 0.414847 0.389391 Vertex 33735 0.45805 0.169927 0.648336 Vertex 33736 0.325892 0.257831 0.23295 Vertex 33737 0.459827 0.226631 0.468619 Vertex 33738 0.351543 0.199973 0.495093 Vertex 33739 0.372781 0.343556 0.217913 Vertex 33740 0.422301 0.378334 0.427409 Vertex 33741 0.333265 0.954052 0.25455 Vertex 33742 0.491554 0.12174 0.796201 Vertex 33743 0.542341 0.634607 0.467298 Vertex 33744 0.52266 0.592077 0.42546 Vertex 33745 0.38102 0.915809 0.32397 Vertex 33746 0.526042 0.617692 0.536569 Vertex 33747 0.527096 0.623562 0.534651 Vertex 33748 0.403419 0.225677 0.467529 Vertex 33749 0.537366 0.46256 0.399732 Vertex 33750 0.403135 0.318521 0.630047 Vertex 33751 0.576562 0.492961 0.321186 Vertex 33752 0.574116 0.492144 0.325687 Vertex 33753 0.409058 0.262794 0.706289 Vertex 33754 0.436373 0.160066 0.574095 Vertex 33755 0.529151 0.659157 0.51369 Vertex 33756 0.41665 0.145461 0.685874 Vertex 33757 0.399457 0.28215 0.196236 Vertex 33758 0.494314 0.284353 0.60285 Vertex 33759 0.454698 0.741097 0.432804 Vertex 33760 0.533475 0.562961 0.561474 Vertex 33761 0.485478 0.446243 0.38043 Vertex 33762 0.50661 0.111986 0.65247 Vertex 33763 0.403508 0.837915 0.375141 Vertex 33764 0.406215 0.83782 0.372719 Vertex 33765 0.584546 0.494803 0.463952 Vertex 33766 0.497364 0.0972501 0.81128 Vertex 33767 0.431729 0.51844 0.464556 Vertex 33768 0.440051 0.420787 0.401373 Vertex 33769 0.491785 0.214815 0.515828 Vertex 33770 0.366035 0.296796 0.487482 Vertex 33771 0.536033 0.667182 0.492979 Vertex 33772 0.357524 0.104482 0.472018 Vertex 33773 0.518692 0.301392 0.530434 Vertex 33774 0.561181 0.489686 0.360329 Vertex 33775 0.542477 0.637142 0.501614 Vertex 33776 0.515713 0.155049 0.459824 Vertex 33777 0.545634 0.615009 0.499867 Vertex 33778 0.468728 0.67298 0.505789 Vertex 33779 0.383264 0.233554 0.227241 Vertex 33780 0.598488 0.438135 0.391855 Vertex 33781 0.486141 0.578312 0.403878 Vertex 33782 0.376749 0.419615 0.376539 Vertex 33783 0.550692 0.451822 0.352481 Vertex 33784 0.404793 0.45335 0.395338 Vertex 33785 0.379563 0.341139 0.274628 Vertex 33786 0.356861 0.180073 0.452562 Vertex 33787 0.356541 0.181583 0.453344 Vertex 33788 0.484986 0.198314 0.779002 Vertex 33789 0.407251 0.221081 0.470591 Vertex 33790 0.502357 0.0345173 0.672453 Vertex 33791 0.430806 0.394491 0.418294 Vertex 33792 0.51438 0.516551 0.593925 Vertex 33793 0.511218 0.10505 0.701291 Vertex 33794 0.510554 0.104588 0.700805 Vertex 33795 0.491649 0.213044 0.513815 Vertex 33796 0.656637 0.438964 0.196419 Vertex 33797 0.41543 0.881689 0.357918 Vertex 33798 0.387487 0.858348 0.358884 Vertex 33799 0.532048 0.0984702 0.779008 Vertex 33800 0.436716 0.457537 0.408652 Vertex 33801 0.507427 0.360915 0.449305 Vertex 33802 0.36751 0.276926 0.23173 Vertex 33803 0.603031 0.474151 0.394876 Vertex 33804 0.604091 0.474784 0.392755 Vertex 33805 0.425605 0.279034 0.641205 Vertex 33806 0.55026 0.564199 0.486707 Vertex 33807 0.457635 0.166285 0.646281 Vertex 33808 0.45478 0.0977595 0.663611 Vertex 33809 0.417918 0.251168 0.196638 Vertex 33810 0.500136 0.344237 0.609045 Vertex 33811 0.5372 0.136073 0.44112 Vertex 33812 0.534766 0.137056 0.441754 Vertex 33813 0.372917 0.23449 0.235219 Vertex 33814 0.391491 0.863027 0.387206 Vertex 33815 0.488072 0.747896 0.506293 Vertex 33816 0.434039 0.470236 0.600451 Vertex 33817 0.486579 0.386874 0.41586 Vertex 33818 0.464334 0.815728 0.456797 Vertex 33819 0.470073 0.178592 0.487796 Vertex 33820 0.593999 0.422179 0.375165 Vertex 33821 0.508079 0.282244 0.476792 Vertex 33822 0.42162 0.396439 0.380649 Vertex 33823 0.335782 0.949266 0.291466 Vertex 33824 0.389679 0.370492 0.616999 Vertex 33825 0.498549 0.396279 0.438656 Vertex 33826 0.445926 0.262783 0.633369 Vertex 33827 0.447229 0.265027 0.632635 Vertex 33828 0.490755 0.415102 0.387798 Vertex 33829 0.471417 0.218552 0.772795 Vertex 33830 0.474142 0.216568 0.774862 Vertex 33831 0.483683 0.391056 0.404447 Vertex 33832 0.537473 0.538832 0.427587 Vertex 33833 0.354154 0.388254 0.432046 Vertex 33834 0.516376 0.381325 0.551015 Vertex 33835 0.3747 0.379749 0.504131 Vertex 33836 0.585784 0.474654 0.301161 Vertex 33837 0.461846 0.337313 0.414338 Vertex 33838 0.488196 0.484053 0.389516 Vertex 33839 0.457446 0.11766 0.64053 Vertex 33840 0.457126 0.115563 0.642555 Vertex 33841 0.425789 0.342176 0.42764 Vertex 33842 0.423639 0.262729 0.683629 Vertex 33843 0.519977 0.0212979 0.754002 Vertex 33844 0.519272 0.0237736 0.756111 Vertex 33845 0.494835 0.186451 0.781104 Vertex 33846 0.34803 0.137666 0.460143 Vertex 33847 0.324956 0.928839 0.257055 Vertex 33848 0.424966 0.300421 0.641738 Vertex 33849 0.411628 0.379951 0.284163 Vertex 33850 0.527736 0.111879 0.796118 Vertex 33851 0.360829 0.423784 0.530357 Vertex 33852 0.554494 0.536031 0.454268 Vertex 33853 0.571516 0.523273 0.493002 Vertex 33854 0.567661 0.41047 0.367549 Vertex 33855 0.4024 0.843802 0.364682 Vertex 33856 0.525308 0.332101 0.518032 Vertex 33857 0.490547 0.320765 0.438834 Vertex 33858 0.479294 0.285537 0.618427 Vertex 33859 0.50594 0.195472 0.465409 Vertex 33860 0.432351 0.131519 0.71753 Vertex 33861 0.528879 0.113306 0.718786 Vertex 33862 0.517537 0.297181 0.532364 Vertex 33863 0.542738 0.575481 0.447422 Vertex 33864 0.581324 0.417435 0.356657 Vertex 33865 0.436391 0.202419 0.795881 Vertex 33866 0.584451 0.510687 0.333505 Vertex 33867 0.332294 0.260254 0.203005 Vertex 33868 0.536276 0.672649 0.467837 Vertex 33869 0.406677 0.167374 0.499452 Vertex 33870 0.339638 0.093738 0.461968 Vertex 33871 0.586187 0.422505 0.201045 Vertex 33872 0.456001 0.354791 0.411465 Vertex 33873 0.657217 0.410233 0.22746 Vertex 33874 0.490085 0.239009 0.582446 Vertex 33875 0.487746 0.236995 0.586095 Vertex 33876 0.380617 0.39744 0.273254 Vertex 33877 0.466081 0.480162 0.401663 Vertex 33878 0.421803 0.832312 0.432686 Vertex 33879 0.506266 0.429908 0.406774 Vertex 33880 0.523164 0.076734 0.717507 Vertex 33881 0.409401 0.367691 0.288907 Vertex 33882 0.410135 0.369444 0.286935 Vertex 33883 0.454834 0.121551 0.638889 Vertex 33884 0.397301 0.222959 0.728955 Vertex 33885 0.381251 0.463673 0.439746 Vertex 33886 0.449184 0.520359 0.431596 Vertex 33887 0.363696 0.909336 0.347068 Vertex 33888 0.359064 0.908708 0.341258 Vertex 33889 0.403603 0.343331 0.215869 Vertex 33890 0.417663 0.229841 0.772345 Vertex 33891 0.610286 0.4918 0.260793 Vertex 33892 0.410888 0.263487 0.716772 Vertex 33893 0.369364 0.319919 0.486748 Vertex 33894 0.370649 0.323093 0.482667 Vertex 33895 0.522062 0.367472 0.538583 Vertex 33896 0.600105 0.443596 0.3924 Vertex 33897 0.396389 0.256949 0.671186 Vertex 33898 0.45144 0.157892 0.530297 Vertex 33899 0.351951 0.208626 0.51372 Vertex 33900 0.351797 0.21228 0.513732 Vertex 33901 0.433992 0.844151 0.441321 Vertex 33902 0.388861 0.191936 0.664979 Vertex 33903 0.583776 0.507193 0.313866 Vertex 33904 0.49252 0.282653 0.451437 Vertex 33905 0.365822 0.283565 0.47845 Vertex 33906 0.422081 0.14369 0.699662 Vertex 33907 0.524632 0.131027 0.739184 Vertex 33908 0.366817 0.261776 0.200227 Vertex 33909 0.59542 0.493417 0.271442 Vertex 33910 0.638146 0.512423 0.252483 Vertex 33911 0.525094 0.326463 0.508768 Vertex 33912 0.466312 0.122599 0.811624 Vertex 33913 0.435786 0.436707 0.622981 Vertex 33914 0.595562 0.530819 0.279822 Vertex 33915 0.350666 0.196111 0.480369 Vertex 33916 0.467467 0.0783924 0.735239 Vertex 33917 0.39662 0.426698 0.368555 Vertex 33918 0.542471 0.0606599 0.787217 Vertex 33919 0.508007 0.579373 0.402534 Vertex 33920 0.424006 0.454576 0.602151 Vertex 33921 0.416425 0.397772 0.371084 Vertex 33922 0.510945 0.371084 0.450957 Vertex 33923 0.428632 0.469276 0.411536 Vertex 33924 0.43064 0.470923 0.413763 Vertex 33925 0.431925 0.47293 0.416215 Vertex 33926 0.435473 0.254757 0.691927 Vertex 33927 0.396336 0.324325 0.208039 Vertex 33928 0.509263 0.0602512 0.68145 Vertex 33929 0.411107 0.329845 0.210592 Vertex 33930 0.496517 0.692187 0.532015 Vertex 33931 0.408128 0.826774 0.393324 Vertex 33932 0.354474 0.889424 0.320748 Vertex 33933 0.375168 0.356177 0.457928 Vertex 33934 0.448183 0.418608 0.635407 Vertex 33935 0.398829 0.845063 0.368526 Vertex 33936 0.55944 0.469803 0.538583 Vertex 33937 0.370442 0.295304 0.23725 Vertex 33938 0.484441 0.775881 0.485036 Vertex 33939 0.430243 0.803462 0.437051 Vertex 33940 0.539895 0.589743 0.445781 Vertex 33941 0.369316 0.363379 0.231754 Vertex 33942 0.388494 0.432562 0.334103 Vertex 33943 0.393339 0.431152 0.333167 Vertex 33944 0.503713 0.60946 0.40989 Vertex 33945 0.504489 0.713207 0.50974 Vertex 33946 0.474225 0.817582 0.425786 Vertex 33947 0.506764 0.166516 0.787904 Vertex 33948 0.38035 0.891082 0.372227 Vertex 33949 0.447579 0.1711 0.56533 Vertex 33950 0.51133 0.57464 0.568356 Vertex 33951 0.553114 0.00573906 0.729358 Vertex 33952 0.490109 0.676682 0.524274 Vertex 33953 0.483517 0.17537 0.706242 Vertex 33954 0.487681 0.175684 0.707871 Vertex 33955 0.485069 0.176863 0.708706 Vertex 33956 0.5103 0.102302 0.715576 Vertex 33957 0.454277 0.165414 0.551033 Vertex 33958 0.490482 0.70472 0.515882 Vertex 33959 0.375174 0.19633 0.562398 Vertex 33960 0.475326 0.681521 0.508034 Vertex 33961 0.3556 0.379477 0.475063 Vertex 33962 0.432849 0.303045 0.641638 Vertex 33963 0.423586 0.546679 0.542729 Vertex 33964 0.409585 0.366453 0.352002 Vertex 33965 0.406765 0.368579 0.358244 Vertex 33966 0.513604 0.698027 0.50759 Vertex 33967 0.638655 0.499038 0.190627 Vertex 33968 0.463546 0.191053 0.480381 Vertex 33969 0.477861 0.490527 0.399963 Vertex 33970 0.457262 0.636905 0.495478 Vertex 33971 0.52266 0.573035 0.422481 Vertex 33972 0.361907 0.366838 0.36865 Vertex 33973 0.503577 0.671914 0.541675 Vertex 33974 0.443841 0.422315 0.399484 Vertex 33975 0.513148 0.281321 0.521976 Vertex 33976 0.512757 0.281374 0.517895 Vertex 33977 0.51136 0.278247 0.517854 Vertex 33978 0.34116 0.110179 0.455636 Vertex 33979 0.654327 0.451171 0.197071 Vertex 33980 0.390863 0.35398 0.306356 Vertex 33981 0.523531 0.0779304 0.677322 Vertex 33982 0.489582 0.214175 0.500737 Vertex 33983 0.460602 0.746119 0.417779 Vertex 33984 0.459311 0.20573 0.622975 Vertex 33985 0.360569 0.358244 0.381923 Vertex 33986 0.350482 0.176324 0.476289 Vertex 33987 0.501279 0.377232 0.447279 Vertex 33988 0.500154 0.380016 0.446687 Vertex 33989 0.472975 0.750324 0.486754 Vertex 33990 0.568756 0.506476 0.420515 Vertex 33991 0.397745 0.311129 0.213938 Vertex 33992 0.338264 0.0946619 0.459871 Vertex 33993 0.407411 0.178663 0.588345 Vertex 33994 0.421999 0.263327 0.725082 Vertex 33995 0.504288 0.725911 0.50326 Vertex 33996 0.458612 0.6214 0.512032 Vertex 33997 0.458974 0.623467 0.510148 Vertex 33998 0.493118 0.0670505 0.693301 Vertex 33999 0.646627 0.432645 0.201104 Vertex 34000 0.670507 0.456341 0.190029 Vertex 34001 0.516429 0.354009 0.478314 Vertex 34002 0.486331 0.172296 0.511528 Vertex 34003 0.548193 0.597046 0.481743 Vertex 34004 0.547606 0.599972 0.484415 Vertex 34005 0.430261 0.816782 0.381153 Vertex 34006 0.498466 0.427208 0.395077 Vertex 34007 0.397745 0.255385 0.704299 Vertex 34008 0.396259 0.254325 0.702297 Vertex 34009 0.397544 0.177638 0.630213 Vertex 34010 0.354362 0.412916 0.501792 Vertex 34011 0.372681 0.235254 0.235675 Vertex 34012 0.565919 0.501193 0.392193 Vertex 34013 0.457357 0.49366 0.412448 Vertex 34014 0.538166 0.11426 0.794407 Vertex 34015 0.608083 0.515538 0.343787 Vertex 34016 0.387914 0.335856 0.268901 Vertex 34017 0.414465 0.397393 0.299189 Vertex 34018 0.415833 0.380584 0.396031 Vertex 34019 0.469244 0.0774388 0.73698 Vertex 34020 0.425114 0.212144 0.786849 Vertex 34021 0.433394 0.429843 0.622134 Vertex 34022 0.374594 0.378701 0.578064 Vertex 34023 0.431498 0.168008 0.524055 Vertex 34024 0.488711 0.322827 0.624912 Vertex 34025 0.456563 0.503657 0.414906 Vertex 34026 0.472122 0.163661 0.516492 Vertex 34027 0.46389 0.535959 0.425123 Vertex 34028 0.363583 0.404056 0.391417 Vertex 34029 0.44396 0.16125 0.612012 Vertex 34030 0.496583 0.458923 0.387532 Vertex 34031 0.359307 0.390979 0.322981 Vertex 34032 0.361196 0.284258 0.197479 Vertex 34033 0.522755 0.0999627 0.71249 Vertex 34034 0.533718 0.399916 0.436097 Vertex 34035 0.391331 0.471053 0.426538 Vertex 34036 0.347136 0.293959 0.200695 Vertex 34037 0.396809 0.356266 0.623662 Vertex 34038 0.488018 0.201418 0.760322 Vertex 34039 0.375802 0.391725 0.541699 Vertex 34040 0.378876 0.880581 0.370539 Vertex 34041 0.540967 0.143287 0.446142 Vertex 34042 0.544266 0.526874 0.431039 Vertex 34043 0.404841 0.365985 0.431353 Vertex 34044 0.607384 0.526649 0.306723 Vertex 34045 0.497779 0.249794 0.497136 Vertex 34046 0.460354 0.496586 0.607801 Vertex 34047 0.517863 0.377967 0.548948 Vertex 34048 0.485661 0.576571 0.40389 Vertex 34049 0.697231 0.451769 0.204746 Vertex 34050 0.548056 0.0229266 0.722209 Vertex 34051 0.45025 0.14247 0.778954 Vertex 34052 0.479099 0.429956 0.372091 Vertex 34053 0.33991 0.289766 0.20798 Vertex 34054 0.414489 0.864063 0.419544 Vertex 34055 0.427501 0.403837 0.38938 Vertex 34056 0.366474 0.268332 0.195934 Vertex 34057 0.514593 0.322684 0.473671 Vertex 34058 0.654445 0.418951 0.229687 Vertex 34059 0.519847 0.573853 0.414569 Vertex 34060 0.414933 0.225873 0.770692 Vertex 34061 0.486331 0.192753 0.461044 Vertex 34062 0.644951 0.435772 0.19941 Vertex 34063 0.396288 0.174511 0.661745 Vertex 34064 0.405149 0.838578 0.405933 Vertex 34065 0.444973 0.566538 0.467339 Vertex 34066 0.41129 0.263801 0.694 Vertex 34067 0.411095 0.263624 0.693425 Vertex 34068 0.493645 0.0640062 0.729251 Vertex 34069 0.379219 0.314701 0.251287 Vertex 34070 0.543703 0.131317 0.452071 Vertex 34071 0.580234 0.489603 0.311514 Vertex 34072 0.444132 0.314748 0.640595 Vertex 34073 0.404319 0.181707 0.567652 Vertex 34074 0.366432 0.232926 0.2351 Vertex 34075 0.411338 0.176934 0.551039 Vertex 34076 0.480266 0.234899 0.476099 Vertex 34077 0.435236 0.853017 0.420391 Vertex 34078 0.420613 0.17197 0.544749 Vertex 34079 0.465116 0.631907 0.43592 Vertex 34080 0.464049 0.628874 0.437365 Vertex 34081 0.431913 0.187594 0.793175 Vertex 34082 0.48745 0.22791 0.577927 Vertex 34083 0.510619 0.339931 0.453848 Vertex 34084 0.451203 0.179599 0.59871 Vertex 34085 0.450173 0.178604 0.594558 Vertex 34086 0.394648 0.258418 0.676948 Vertex 34087 0.590901 0.42045 0.396617 Vertex 34088 0.460111 0.298455 0.42658 Vertex 34089 0.356553 0.41551 0.453024 Vertex 34090 0.478702 0.602311 0.426864 Vertex 34091 0.663667 0.419319 0.230238 Vertex 34092 0.663827 0.417411 0.233424 Vertex 34093 0.4966 0.493962 0.39346 Vertex 34094 0.368369 0.335252 0.587297 Vertex 34095 0.443391 0.518742 0.435185 Vertex 34096 0.372284 0.335537 0.480464 Vertex 34097 0.37229 0.336218 0.478622 Vertex 34098 0.45571 0.227667 0.780962 Vertex 34099 0.510483 0.0309518 0.628951 Vertex 34100 0.450984 0.764847 0.457751 Vertex 34101 0.661541 0.402178 0.221691 Vertex 34102 0.488942 0.167114 0.680484 Vertex 34103 0.599957 0.539714 0.273852 Vertex 34104 0.597665 0.513791 0.205913 Vertex 34105 0.556218 0.554811 0.495046 Vertex 34106 0.402318 0.354981 0.267 Vertex 34107 0.402957 0.390647 0.263789 Vertex 34108 0.552516 0.155713 0.429014 Vertex 34109 0.508161 0.275623 0.557228 Vertex 34110 0.503512 0.524375 0.395225 Vertex 34111 0.436077 0.533282 0.478456 Vertex 34112 0.461597 0.773914 0.476377 Vertex 34113 0.497335 0.426136 0.392714 Vertex 34114 0.599276 0.449323 0.317253 Vertex 34115 0.470452 0.796035 0.476881 Vertex 34116 0.446027 0.288937 0.428961 Vertex 34117 0.518579 0.318142 0.553082 Vertex 34118 0.383288 0.867706 0.325302 Vertex 34119 0.561791 0.407159 0.385364 Vertex 34120 0.450641 0.47492 0.617432 Vertex 34121 0.396413 0.483455 0.434646 Vertex 34122 0.400588 0.483183 0.429926 Vertex 34123 0.402164 0.484983 0.431531 Vertex 34124 0.400221 0.484515 0.431744 Vertex 34125 0.451162 0.781075 0.46394 Vertex 34126 0.471654 0.0661798 0.700669 Vertex 34127 0.364549 0.191462 0.526163 Vertex 34128 0.420299 0.814194 0.420373 Vertex 34129 0.354498 0.189827 0.503408 Vertex 34130 0.374297 0.377972 0.51863 Vertex 34131 0.524863 0.46744 0.408065 Vertex 34132 0.425386 0.396131 0.403375 Vertex 34133 0.424723 0.395207 0.396955 Vertex 34134 0.528808 0.549771 0.417903 Vertex 34135 0.530774 0.547734 0.421534 Vertex 34136 0.476647 0.537103 0.588766 Vertex 34137 0.601615 0.437821 0.356165 Vertex 34138 0.382317 0.195744 0.567575 Vertex 34139 0.47246 0.545874 0.422594 Vertex 34140 0.361955 0.24781 0.215922 Vertex 34141 0.495066 0.381952 0.439461 Vertex 34142 0.406292 0.332954 0.203141 Vertex 34143 0.495203 0.581303 0.396682 Vertex 34144 0.525343 0.12729 0.753955 Vertex 34145 0.52972 0.544222 0.419016 Vertex 34146 0.501404 0.393123 0.446432 Vertex 34147 0.479123 0.333055 0.630319 Vertex 34148 0.454952 0.473985 0.405537 Vertex 34149 0.383187 0.316898 0.252596 Vertex 34150 0.635173 0.517913 0.248485 Vertex 34151 0.399285 0.424157 0.309963 Vertex 34152 0.399285 0.421705 0.305272 Vertex 34153 0.609694 0.449512 0.35411 Vertex 34154 0.389762 0.351178 0.443809 Vertex 34155 0.361623 0.398417 0.397665 Vertex 34156 0.503986 0.382788 0.59444 Vertex 34157 0.495392 0.245086 0.571916 Vertex 34158 0.412895 0.164093 0.615335 Vertex 34159 0.474604 0.757123 0.391855 Vertex 34160 0.47522 0.756383 0.392424 Vertex 34161 0.4776 0.75553 0.393312 Vertex 34162 0.599986 0.4762 0.287847 Vertex 34163 0.365923 0.368342 0.285697 Vertex 34164 0.525444 0.428149 0.584241 Vertex 34165 0.359568 0.394242 0.374715 Vertex 34166 0.520256 0.385808 0.505594 Vertex 34167 0.645792 0.465663 0.191059 Vertex 34168 0.605412 0.524144 0.213399 Vertex 34169 0.535951 0.0867196 0.753955 Vertex 34170 0.438161 0.548468 0.488951 Vertex 34171 0.438197 0.550434 0.489194 Vertex 34172 0.419085 0.140266 0.661407 Vertex 34173 0.442621 0.165906 0.593907 Vertex 34174 0.324772 0.927749 0.259176 Vertex 34175 0.367871 0.924184 0.301813 Vertex 34176 0.644134 0.438141 0.192179 Vertex 34177 0.524307 0.324384 0.534485 Vertex 34178 0.424379 0.806465 0.422481 Vertex 34179 0.603125 0.468631 0.204823 Vertex 34180 0.598488 0.533099 0.292183 Vertex 34181 0.463587 0.216337 0.685661 Vertex 34182 0.403875 0.339392 0.440439 Vertex 34183 0.525639 0.335424 0.51863 Vertex 34184 0.415845 0.400437 0.303667 Vertex 34185 0.459684 0.570577 0.557465 Vertex 34186 0.652509 0.45932 0.194548 Vertex 34187 0.442852 0.137749 0.623413 Vertex 34188 0.372023 0.370717 0.565531 Vertex 34189 0.386054 0.201744 0.610307 Vertex 34190 0.393493 0.488608 0.568137 Vertex 34191 0.47731 0.639955 0.526762 Vertex 34192 0.477381 0.64371 0.525156 Vertex 34193 0.391224 0.464035 0.417441 Vertex 34194 0.463102 0.172213 0.670386 Vertex 34195 0.487859 0.708581 0.403535 Vertex 34196 0.48562 0.744793 0.50669 Vertex 34197 0.414033 0.419129 0.370557 Vertex 34198 0.372094 0.355206 0.360353 Vertex 34199 0.371176 0.357231 0.356177 Vertex 34200 0.42313 0.166747 0.532453 Vertex 34201 0.504247 0.39073 0.448434 Vertex 34202 0.373676 0.0914755 0.466972 Vertex 34203 0.448651 0.497545 0.59412 Vertex 34204 0.457049 0.625398 0.504409 Vertex 34205 0.451819 0.822972 0.457792 Vertex 34206 0.387073 0.889146 0.382444 Vertex 34207 0.528926 0.581629 0.546952 Vertex 34208 0.492383 0.225695 0.544731 Vertex 34209 0.491785 0.222171 0.546401 Vertex 34210 0.418024 0.17001 0.517907 Vertex 34211 0.53187 0.0664227 0.801016 Vertex 34212 0.49146 0.110926 0.645256 Vertex 34213 0.465862 0.223107 0.720954 Vertex 34214 0.523993 0.143269 0.446652 Vertex 34215 0.411095 0.824369 0.404109 Vertex 34216 0.370809 0.877863 0.34798 Vertex 34217 0.545735 0.615933 0.49148 Vertex 34218 0.484305 0.536919 0.393312 Vertex 34219 0.373231 0.175246 0.47206 Vertex 34220 0.528672 0.11853 0.719023 Vertex 34221 0.491489 0.606392 0.40132 Vertex 34222 0.458032 0.546875 0.43149 Vertex 34223 0.541927 0.035228 0.782478 Vertex 34224 0.403354 0.386323 0.267284 Vertex 34225 0.466709 0.107011 0.776887 Vertex 34226 0.473466 0.187186 0.484284 Vertex 34227 0.475995 0.187867 0.481838 Vertex 34228 0.394316 0.208691 0.718863 Vertex 34229 0.4265 0.809403 0.432864 Vertex 34230 0.360669 0.259721 0.220199 Vertex 34231 0.463771 0.613511 0.526981 Vertex 34232 0.546641 0.0340316 0.783136 Vertex 34233 0.400002 0.251577 0.20429 Vertex 34234 0.600975 0.438194 0.208691 Vertex 34235 0.514706 0.106928 0.717791 Vertex 34236 0.626662 0.509793 0.194518 Vertex 34237 0.499976 0.434173 0.393543 Vertex 34238 0.517093 0.0352754 0.66377 Vertex 34239 0.501877 0.16529 0.46821 Vertex 34240 0.389714 0.293551 0.448257 Vertex 34241 0.622765 0.496982 0.308221 Vertex 34242 0.461414 0.198747 0.799512 Vertex 34243 0.524591 0.332214 0.505422 Vertex 34244 0.47506 0.392898 0.392655 Vertex 34245 0.51117 0.0547609 0.729684 Vertex 34246 0.488711 0.390842 0.416144 Vertex 34247 0.468651 0.109119 0.781021 Vertex 34248 0.480129 0.0776876 0.708581 Vertex 34249 0.598352 0.515899 0.362301 Vertex 34250 0.372461 0.216485 0.23067 Vertex 34251 0.491051 0.157454 0.665843 Vertex 34252 0.512965 0.297821 0.557204 Vertex 34253 0.513048 0.295713 0.555167 Vertex 34254 0.551509 0.560923 0.488306 Vertex 34255 0.420346 0.539815 0.513785 Vertex 34256 0.49493 0.237718 0.513809 Vertex 34257 0.524022 0.131151 0.762253 Vertex 34258 0.516175 0.486126 0.600996 Vertex 34259 0.500752 0.400366 0.435866 Vertex 34260 0.581887 0.412413 0.407983 Vertex 34261 0.364928 0.285934 0.195957 Vertex 34262 0.594135 0.514543 0.224196 Vertex 34263 0.515985 0.034002 0.629289 Vertex 34264 0.356861 0.290595 0.197053 Vertex 34265 0.445559 0.605024 0.483905 Vertex 34266 0.596368 0.4261 0.386033 Vertex 34267 0.688637 0.450353 0.201678 Vertex 34268 0.439068 0.557399 0.498688 Vertex 34269 0.609599 0.488134 0.185794 Vertex 34270 0.599821 0.531512 0.297928 Vertex 34271 0.478216 0.54482 0.583181 Vertex 34272 0.517875 0.370919 0.559295 Vertex 34273 0.519859 0.371416 0.550973 Vertex 34274 0.609883 0.486867 0.219595 Vertex 34275 0.422792 0.259193 0.737437 Vertex 34276 0.477914 0.776402 0.401799 Vertex 34277 0.356263 0.335619 0.240164 Vertex 34278 0.468628 0.541894 0.421575 Vertex 34279 0.364661 0.449755 0.47835 Vertex 34280 0.465986 0.357427 0.412815 Vertex 34281 0.546055 0.597046 0.465041 Vertex 34282 0.524632 0.717151 0.480559 Vertex 34283 0.369186 0.342265 0.505736 Vertex 34284 0.366349 0.377013 0.258749 Vertex 34285 0.441028 0.843736 0.430714 Vertex 34286 0.405267 0.207044 0.749969 Vertex 34287 0.434892 0.0999627 0.665115 Vertex 34288 0.598458 0.526075 0.237931 Vertex 34289 0.367024 0.44972 0.461002 Vertex 34290 0.549223 0.0413165 0.795111 Vertex 34291 0.60611 0.516427 0.203876 Vertex 34292 0.57517 0.511961 0.436927 Vertex 34293 0.515588 0.412573 0.437785 Vertex 34294 0.441928 0.57409 0.495046 Vertex 34295 0.479804 0.174185 0.699881 Vertex 34296 0.397396 0.333298 0.444288 Vertex 34297 0.396371 0.330567 0.446415 Vertex 34298 0.543212 0.02818 0.728659 Vertex 34299 0.516583 0.113946 0.687799 Vertex 34300 0.593916 0.527911 0.283642 Vertex 34301 0.525461 0.159687 0.789556 Vertex 34302 0.49384 0.696013 0.526655 Vertex 34303 0.516222 0.463075 0.408569 Vertex 34304 0.362576 0.306119 0.48936 Vertex 34305 0.493254 0.0608731 0.75216 Vertex 34306 0.446678 0.609922 0.47601 Vertex 34307 0.509239 0.36743 0.586166 Vertex 34308 0.363175 0.350254 0.428741 Vertex 34309 0.516471 0.150631 0.451467 Vertex 34310 0.57523 0.423014 0.459859 Vertex 34311 0.606253 0.492979 0.199801 Vertex 34312 0.455296 0.189857 0.6275 Vertex 34313 0.468628 0.818962 0.446053 Vertex 34314 0.409733 0.290151 0.435363 Vertex 34315 0.365716 0.378813 0.293995 Vertex 34316 0.420796 0.389682 0.626766 Vertex 34317 0.55578 0.0320712 0.779967 Vertex 34318 0.532456 0.0930569 0.754032 Vertex 34319 0.50186 0.409748 0.414959 Vertex 34320 0.50186 0.185178 0.454766 Vertex 34321 0.46094 0.0836695 0.660572 Vertex 34322 0.454597 0.167848 0.557257 Vertex 34323 0.386018 0.201483 0.635709 Vertex 34324 0.422591 0.259792 0.221448 Vertex 34325 0.619922 0.481554 0.370012 Vertex 34326 0.4792 0.20018 0.789372 Vertex 34327 0.441265 0.145721 0.604941 Vertex 34328 0.682815 0.471136 0.216361 Vertex 34329 0.487568 0.174268 0.477888 Vertex 34330 0.553713 0.55968 0.474956 Vertex 34331 0.596936 0.494601 0.390374 Vertex 34332 0.397378 0.188169 0.568244 Vertex 34333 0.459661 0.238926 0.458811 Vertex 34334 0.364981 0.449566 0.527129 Vertex 34335 0.593075 0.518168 0.226779 Vertex 34336 0.463801 0.659186 0.437146 Vertex 34337 0.382761 0.254882 0.231783 Vertex 34338 0.53938 0.16099 0.44956 Vertex 34339 0.538426 0.157578 0.449583 Vertex 34340 0.494723 0.52919 0.591153 Vertex 34341 0.536685 0.580646 0.536569 Vertex 34342 0.355315 0.326996 0.236083 Vertex 34343 0.550461 0.586255 0.477568 Vertex 34344 0.464855 0.0783391 0.740054 Vertex 34345 0.518402 0.384517 0.519986 Vertex 34346 0.597019 0.52216 0.239779 Vertex 34347 0.54471 0.592912 0.513649 Vertex 34348 0.40105 0.3578 0.3396 Vertex 34349 0.358123 0.133165 0.474678 Vertex 34350 0.417847 0.174784 0.551033 Vertex 34351 0.470025 0.102604 0.774785 Vertex 34352 0.39617 0.366873 0.234419 Vertex 34353 0.404995 0.173753 0.60885 Vertex 34354 0.545528 0.132241 0.451875 Vertex 34355 0.577024 0.497906 0.406608 Vertex 34356 0.535684 0.676552 0.466427 Vertex 34357 0.485217 0.79687 0.427255 Vertex 34358 0.645514 0.420485 0.20429 Vertex 34359 0.599086 0.436962 0.188838 Vertex 34360 0.382453 0.180635 0.490118 Vertex 34361 0.460265 0.539466 0.427977 Vertex 34362 0.481302 0.180576 0.551015 Vertex 34363 0.40965 0.264169 0.673235 Vertex 34364 0.48639 0.330585 0.627636 Vertex 34365 0.369459 0.311674 0.197106 Vertex 34366 0.366705 0.313688 0.199357 Vertex 34367 0.43571 0.504054 0.441173 Vertex 34368 0.414098 0.29974 0.638202 Vertex 34369 0.467645 0.222195 0.774868 Vertex 34370 0.457866 0.696286 0.474441 Vertex 34371 0.457416 0.69917 0.472415 Vertex 34372 0.352561 0.106549 0.4633 Vertex 34373 0.493272 0.778048 0.4763 Vertex 34374 0.586613 0.412383 0.393869 Vertex 34375 0.374173 0.374484 0.511665 Vertex 34376 0.534535 0.0577519 0.715167 Vertex 34377 0.511727 0.602222 0.418134 Vertex 34378 0.475545 0.671393 0.51276 Vertex 34379 0.383632 0.282381 0.609045 Vertex 34380 0.480988 0.294013 0.623573 Vertex 34381 0.508878 0.0349792 0.671458 Vertex 34382 0.439476 0.22364 0.789455 Vertex 34383 0.469451 0.221448 0.770728 Vertex 34384 0.645946 0.509153 0.223515 Vertex 34385 0.536318 0.0726296 0.795088 Vertex 34386 0.350944 0.196603 0.49087 Vertex 34387 0.519432 0.436263 0.595257 Vertex 34388 0.525598 0.319889 0.499103 Vertex 34389 0.528932 0.394917 0.431993 Vertex 34390 0.621195 0.517878 0.305337 Vertex 34391 0.438315 0.133136 0.662876 Vertex 34392 0.623884 0.517244 0.208336 Vertex 34393 0.497406 0.690606 0.408978 Vertex 34394 0.388796 0.415025 0.590489 Vertex 34395 0.39001 0.416677 0.592592 Vertex 34396 0.607858 0.452574 0.328992 Vertex 34397 0.468604 0.185285 0.68158 Vertex 34398 0.512988 0.614375 0.421942 Vertex 34399 0.423047 0.399312 0.380892 Vertex 34400 0.333076 0.914666 0.292064 Vertex 34401 0.414844 0.377048 0.417299 Vertex 34402 0.400328 0.363255 0.404311 Vertex 34403 0.526729 0.544843 0.413206 Vertex 34404 0.364158 0.217871 0.229912 Vertex 34405 0.598666 0.523942 0.244026 Vertex 34406 0.429147 0.113241 0.670031 Vertex 34407 0.471334 0.188655 0.798635 Vertex 34408 0.549543 0.161387 0.432265 Vertex 34409 0.544621 0.612036 0.467659 Vertex 34410 0.524846 0.329146 0.524096 Vertex 34411 0.525053 0.32978 0.526205 Vertex 34412 0.460851 0.43393 0.382758 Vertex 34413 0.656376 0.437021 0.227922 Vertex 34414 0.399196 0.323271 0.232601 Vertex 34415 0.541192 0.398897 0.421611 Vertex 34416 0.473188 0.103066 0.649497 Vertex 34417 0.534399 0.125714 0.447386 Vertex 34418 0.45728 0.227134 0.689866 Vertex 34419 0.434608 0.486102 0.431051 Vertex 34420 0.561152 0.48705 0.534461 Vertex 34421 0.664389 0.481963 0.218374 Vertex 34422 0.362624 0.238192 0.489313 Vertex 34423 0.505088 0.460943 0.396682 Vertex 34424 0.663531 0.40161 0.225482 Vertex 34425 0.610511 0.491492 0.185213 Vertex 34426 0.680985 0.449595 0.204687 Vertex 34427 0.358561 0.39099 0.329235 Vertex 34428 0.358709 0.393875 0.326191 Vertex 34429 0.490873 0.566864 0.387567 Vertex 34430 0.415454 0.144276 0.679548 Vertex 34431 0.363115 0.257423 0.206511 Vertex 34432 0.483879 0.78326 0.412543 Vertex 34433 0.405877 0.833834 0.385056 Vertex 34434 0.395311 0.375823 0.232684 Vertex 34435 0.35599 0.415741 0.506222 Vertex 34436 0.657815 0.416517 0.210266 Vertex 34437 0.36292 0.277992 0.227513 Vertex 34438 0.487314 0.198516 0.470686 Vertex 34439 0.493296 0.363983 0.619445 Vertex 34440 0.330043 0.951606 0.286663 Vertex 34441 0.445648 0.164774 0.548983 Vertex 34442 0.464736 0.81234 0.398791 Vertex 34443 0.411521 0.148428 0.66168 Vertex 34444 0.50963 0.592266 0.561723 Vertex 34445 0.519059 0.417637 0.582121 Vertex 34446 0.505686 0.333144 0.453338 Vertex 34447 0.365739 0.374756 0.271199 Vertex 34448 0.431652 0.849547 0.434996 Vertex 34449 0.504258 0.668704 0.542409 Vertex 34450 0.522867 0.49934 0.413017 Vertex 34451 0.48209 0.343739 0.629917 Vertex 34452 0.357619 0.396196 0.3396 Vertex 34453 0.646082 0.476312 0.221916 Vertex 34454 0.45786 0.830914 0.439011 Vertex 34455 0.475072 0.589637 0.555575 Vertex 34456 0.521174 0.0470319 0.635981 Vertex 34457 0.440027 0.245252 0.448991 Vertex 34458 0.504039 0.178171 0.756188 Vertex 34459 0.585505 0.51613 0.358191 Vertex 34460 0.588437 0.516024 0.312059 Vertex 34461 0.550177 0.424359 0.383433 Vertex 34462 0.42759 0.389083 0.421652 Vertex 34463 0.491993 0.216799 0.51372 Vertex 34464 0.513699 0.420533 0.591259 Vertex 34465 0.427738 0.230972 0.200826 Vertex 34466 0.427672 0.232536 0.203384 Vertex 34467 0.485661 0.721582 0.401841 Vertex 34468 0.519296 0.397203 0.555279 Vertex 34469 0.518094 0.397636 0.559384 Vertex 34470 0.418042 0.427829 0.608678 Vertex 34471 0.553535 0.551358 0.528313 Vertex 34472 0.548382 0.586853 0.488531 Vertex 34473 0.446672 0.25333 0.631279 Vertex 34474 0.399469 0.307682 0.215253 Vertex 34475 0.405474 0.872503 0.336964 Vertex 34476 0.409217 0.452657 0.599829 Vertex 34477 0.460905 0.181843 0.660833 Vertex 34478 0.339922 0.906694 0.279058 Vertex 34479 0.324541 0.240152 0.215899 Vertex 34480 0.478353 0.219571 0.490663 Vertex 34481 0.475379 0.217616 0.488697 Vertex 34482 0.559126 0.485356 0.356207 Vertex 34483 0.445227 0.488608 0.597786 Vertex 34484 0.519569 0.315708 0.544796 Vertex 34485 0.414548 0.417299 0.34904 Vertex 34486 0.501196 0.092435 0.801626 Vertex 34487 0.617038 0.482958 0.225772 Vertex 34488 0.437522 0.476946 0.419313 Vertex 34489 0.429112 0.104049 0.675343 Vertex 34490 0.398876 0.316181 0.206511 Vertex 34491 0.30839 0.95147 0.231351 Vertex 34492 0.357779 0.426586 0.501288 Vertex 34493 0.372657 0.337319 0.480506 Vertex 34494 0.636967 0.515609 0.250369 Vertex 34495 0.595876 0.524019 0.276819 Vertex 34496 0.596379 0.523936 0.274557 Vertex 34497 0.598595 0.521958 0.274053 Vertex 34498 0.595574 0.522023 0.278395 Vertex 34499 0.511028 0.117263 0.664925 Vertex 34500 0.350903 0.288736 0.196745 Vertex 34501 0.348486 0.289589 0.198078 Vertex 34502 0.498602 0.44921 0.38829 Vertex 34503 0.544017 0.148505 0.431199 Vertex 34504 0.47917 0.210906 0.74372 Vertex 34505 0.659438 0.45961 0.216687 Vertex 34506 0.448579 0.62567 0.469637 Vertex 34507 0.405616 0.251713 0.730969 Vertex 34508 0.54532 0.0719722 0.735417 Vertex 34509 0.527277 0.0559396 0.790225 Vertex 34510 0.328995 0.930817 0.250369 Vertex 34511 0.530999 0.154345 0.439379 Vertex 34512 0.617932 0.536907 0.296062 Vertex 34513 0.415626 0.494495 0.437021 Vertex 34514 0.448236 0.564293 0.45171 Vertex 34515 0.607994 0.504723 0.206701 Vertex 34516 0.501623 0.170555 0.731952 Vertex 34517 0.359248 0.332546 0.552442 Vertex 34518 0.46848 0.331865 0.418472 Vertex 34519 0.52003 0.562919 0.569961 Vertex 34520 0.444617 0.50127 0.429352 Vertex 34521 0.361463 0.411335 0.32638 Vertex 34522 0.548898 0.525589 0.436536 Vertex 34523 0.516033 0.480144 0.601677 Vertex 34524 0.554222 0.0498333 0.755986 Vertex 34525 0.546191 0.066316 0.764462 Vertex 34526 0.545214 0.0677553 0.764473 Vertex 34527 0.522062 0.527064 0.40906 Vertex 34528 0.374884 0.38521 0.528266 Vertex 34529 0.594212 0.432947 0.396019 Vertex 34530 0.53434 0.614429 0.442002 Vertex 34531 0.337458 0.909306 0.277305 Vertex 34532 0.515896 0.695392 0.428741 Vertex 34533 0.476416 0.52027 0.407402 Vertex 34534 0.357939 0.306918 0.238837 Vertex 34535 0.373439 0.205576 0.481145 Vertex 34536 0.36706 0.347335 0.578703 Vertex 34537 0.367978 0.350272 0.579023 Vertex 34538 0.36979 0.350716 0.585094 Vertex 34539 0.496346 0.422292 0.607855 Vertex 34540 0.538722 0.491107 0.406845 Vertex 34541 0.352182 0.14074 0.473529 Vertex 34542 0.402756 0.511967 0.558128 Vertex 34543 0.375914 0.180606 0.505381 Vertex 34544 0.377531 0.179504 0.503314 Vertex 34545 0.535027 0.558892 0.433178 Vertex 34546 0.528808 0.526927 0.416458 Vertex 34547 0.350139 0.924836 0.324165 Vertex 34548 0.482872 0.567059 0.402137 Vertex 34549 0.428585 0.513809 0.457378 Vertex 34550 0.406013 0.158556 0.640785 Vertex 34551 0.473774 0.766298 0.492067 Vertex 34552 0.364093 0.265667 0.483046 Vertex 34553 0.496671 0.381212 0.441416 Vertex 34554 0.37229 0.878455 0.3112 Vertex 34555 0.408157 0.196804 0.751971 Vertex 34556 0.524958 0.382456 0.451686 Vertex 34557 0.662713 0.456175 0.196668 Vertex 34558 0.608527 0.471331 0.185243 Vertex 34559 0.513261 0.526003 0.590655 Vertex 34560 0.406078 0.159349 0.672702 Vertex 34561 0.47429 0.444721 0.373738 Vertex 34562 0.508896 0.612356 0.558015 Vertex 34563 0.508096 0.612865 0.559484 Vertex 34564 0.390585 0.338196 0.268847 Vertex 34565 0.492342 0.138727 0.795982 Vertex 34566 0.46951 0.823534 0.433853 Vertex 34567 0.39643 0.177869 0.48702 Vertex 34568 0.518348 0.310525 0.546839 Vertex 34569 0.519314 0.312035 0.542735 Vertex 34570 0.40256 0.318148 0.203745 Vertex 34571 0.465803 0.190123 0.573983 Vertex 34572 0.395477 0.343479 0.269049 Vertex 34573 0.595929 0.526833 0.210865 Vertex 34574 0.491785 0.218742 0.505422 Vertex 34575 0.537011 0.169767 0.442914 Vertex 34576 0.576693 0.512446 0.478486 Vertex 34577 0.499337 0.252921 0.482614 Vertex 34578 0.580193 0.513986 0.457751 Vertex 34579 0.476576 0.280669 0.61906 Vertex 34580 0.530075 0.0334038 0.657173 Vertex 34581 0.493159 0.432046 0.609916 Vertex 34582 0.458423 0.196259 0.584247 Vertex 34583 0.487083 0.218256 0.497527 Vertex 34584 0.446127 0.592675 0.498854 Vertex 34585 0.4387 0.254692 0.640139 Vertex 34586 0.439707 0.255835 0.637065 Vertex 34587 0.632733 0.47081 0.183579 Vertex 34588 0.423284 0.292189 0.640329 Vertex 34589 0.567832 0.523788 0.505416 Vertex 34590 0.399273 0.268415 0.446326 Vertex 34591 0.537686 0.574285 0.439473 Vertex 34592 0.41466 0.255113 0.19681 Vertex 34593 0.514131 0.161701 0.74587 Vertex 34594 0.495984 0.538388 0.380975 Vertex 34595 0.494681 0.170324 0.790225 Vertex 34596 0.396904 0.316246 0.241929 Vertex 34597 0.504175 0.311947 0.592396 Vertex 34598 0.504057 0.306752 0.592402 Vertex 34599 0.404793 0.263381 0.669083 Vertex 34600 0.504697 0.28411 0.582056 Vertex 34601 0.519521 0.652275 0.426888 Vertex 34602 0.444552 0.832756 0.451556 Vertex 34603 0.354924 0.890158 0.32513 Vertex 34604 0.356476 0.889424 0.32917 Vertex 34605 0.479383 0.164354 0.796118 Vertex 34606 0.479294 0.485042 0.391867 Vertex 34607 0.471666 0.214051 0.783088 Vertex 34608 0.641931 0.438709 0.219061 Vertex 34609 0.678408 0.453084 0.197681 Vertex 34610 0.514516 0.0333268 0.758213 Vertex 34611 0.475462 0.200707 0.483171 Vertex 34612 0.470002 0.494104 0.405649 Vertex 34613 0.397585 0.348146 0.220447 Vertex 34614 0.417628 0.390718 0.376148 Vertex 34615 0.528198 0.620032 0.534514 Vertex 34616 0.45314 0.45563 0.626813 Vertex 34617 0.428585 0.811381 0.389445 Vertex 34618 0.342706 0.124625 0.459824 Vertex 34619 0.534849 0.143938 0.444383 Vertex 34620 0.390828 0.249646 0.671203 Vertex 34621 0.493947 0.164301 0.689706 Vertex 34622 0.490453 0.182915 0.536528 Vertex 34623 0.342712 0.0842439 0.449548 Vertex 34624 0.32344 0.986579 0.208146 Vertex 34625 0.519776 0.632143 0.427936 Vertex 34626 0.434904 0.0981148 0.686241 Vertex 34627 0.500669 0.680632 0.411021 Vertex 34628 0.601526 0.436885 0.195744 Vertex 34629 0.474349 0.1106 0.652103 Vertex 34630 0.519166 0.114124 0.683647 Vertex 34631 0.543851 0.126176 0.437347 Vertex 34632 0.381227 0.292135 0.606901 Vertex 34633 0.46158 0.829315 0.406229 Vertex 34634 0.460531 0.83079 0.406638 Vertex 34635 0.488042 0.50454 0.393241 Vertex 34636 0.524455 0.0606007 0.649609 Vertex 34637 0.422733 0.875707 0.3855 Vertex 34638 0.425807 0.873391 0.378322 Vertex 34639 0.445121 0.18195 0.797907 Vertex 34640 0.473591 0.209248 0.710512 Vertex 34641 0.512414 0.0287782 0.741642 Vertex 34642 0.367759 0.220513 0.233442 Vertex 34643 0.647498 0.476543 0.21979 Vertex 34644 0.432488 0.515586 0.458076 Vertex 34645 0.465607 0.146805 0.797528 Vertex 34646 0.466572 0.144211 0.798908 Vertex 34647 0.450617 0.620032 0.459788 Vertex 34648 0.536371 0.545157 0.430862 Vertex 34649 0.347675 0.117932 0.472291 Vertex 34650 0.597943 0.432899 0.349994 Vertex 34651 0.414749 0.383658 0.383954 Vertex 34652 0.509672 0.0985235 0.695966 Vertex 34653 0.394375 0.437845 0.388207 Vertex 34654 0.48408 0.748494 0.505926 Vertex 34655 0.564131 0.473398 0.326131 Vertex 34656 0.516797 0.364765 0.466054 Vertex 34657 0.376145 0.277388 0.233554 Vertex 34658 0.331654 0.922218 0.26126 Vertex 34659 0.329919 0.92554 0.25728 Vertex 34660 0.332306 0.924729 0.259259 Vertex 34661 0.347124 0.272247 0.229308 Vertex 34662 0.409288 0.336585 0.216142 Vertex 34663 0.347527 0.0956391 0.446652 Vertex 34664 0.385077 0.346132 0.403878 Vertex 34665 0.589539 0.424347 0.196591 Vertex 34666 0.588082 0.423648 0.197918 Vertex 34667 0.423242 0.3258 0.646541 Vertex 34668 0.55482 0.530819 0.455506 Vertex 34669 0.504371 0.61415 0.562416 Vertex 34670 0.504951 0.612551 0.562641 Vertex 34671 0.56904 0.484811 0.329537 Vertex 34672 0.413831 0.819003 0.400082 Vertex 34673 0.497815 0.127343 0.648348 Vertex 34674 0.525681 0.57698 0.557305 Vertex 34675 0.401654 0.333416 0.235971 Vertex 34676 0.301923 0.966016 0.222751 Vertex 34677 0.373338 0.365434 0.527484 Vertex 34678 0.402537 0.496266 0.449542 Vertex 34679 0.459732 0.548279 0.430169 Vertex 34680 0.520321 0.352185 0.490053 Vertex 34681 0.471263 0.458467 0.612634 Vertex 34682 0.535862 0.0810931 0.785197 Vertex 34683 0.404183 0.387508 0.269487 Vertex 34684 0.500338 0.562404 0.389077 Vertex 34685 0.517365 0.374342 0.561385 Vertex 34686 0.509547 0.308091 0.579894 Vertex 34687 0.406902 0.174837 0.712668 Vertex 34688 0.374173 0.188957 0.470455 Vertex 34689 0.372313 0.324295 0.209242 Vertex 34690 0.546469 0.044343 0.718816 Vertex 34691 0.546037 0.0466232 0.718816 Vertex 34692 0.428839 0.405501 0.62978 Vertex 34693 0.430385 0.408279 0.631954 Vertex 34694 0.457345 0.801976 0.474678 Vertex 34695 0.409058 0.203716 0.756158 Vertex 34696 0.58682 0.489692 0.45152 Vertex 34697 0.584362 0.491486 0.417192 Vertex 34698 0.36478 0.267461 0.197082 Vertex 34699 0.370181 0.464988 0.475649 Vertex 34700 0.518579 0.0917776 0.685986 Vertex 34701 0.37791 0.292639 0.19376 Vertex 34702 0.516649 0.29242 0.502585 Vertex 34703 0.442917 0.434712 0.633061 Vertex 34704 0.458393 0.518647 0.424744 Vertex 34705 0.456391 0.517214 0.42533 Vertex 34706 0.382121 0.217273 0.633867 Vertex 34707 0.442852 0.148114 0.610147 Vertex 34708 0.40516 0.292953 0.63244 Vertex 34709 0.400896 0.292041 0.628424 Vertex 34710 0.452548 0.81189 0.375384 Vertex 34711 0.625549 0.530943 0.291815 Vertex 34712 0.457286 0.80659 0.381218 Vertex 34713 0.604322 0.470508 0.210835 Vertex 34714 0.536821 0.035992 0.780323 Vertex 34715 0.380741 0.248953 0.470686 Vertex 34716 0.517478 0.513761 0.593545 Vertex 34717 0.390644 0.856417 0.37125 Vertex 34718 0.321005 0.99461 0.208507 Vertex 34719 0.421282 0.506068 0.584046 Vertex 34720 0.448834 0.603377 0.466155 Vertex 34721 0.537011 0.520756 0.575884 Vertex 34722 0.472732 0.219654 0.743756 Vertex 34723 0.354889 0.252471 0.533673 Vertex 34724 0.340189 0.0968118 0.451875 Vertex 34725 0.340053 0.0960241 0.451834 Vertex 34726 0.356701 0.323798 0.534094 Vertex 34727 0.547701 0.582174 0.487956 Vertex 34728 0.540849 0.646915 0.463987 Vertex 34729 0.519776 0.362177 0.559324 Vertex 34730 0.373622 0.394538 0.527496 Vertex 34731 0.54307 0.594469 0.520033 Vertex 34732 0.499171 0.715138 0.519962 Vertex 34733 0.418232 0.384665 0.392033 Vertex 34734 0.664034 0.426574 0.219215 Vertex 34735 0.434205 0.328702 0.421806 Vertex 34736 0.459838 0.764077 0.47222 Vertex 34737 0.460952 0.763502 0.474275 Vertex 34738 0.451713 0.513489 0.587232 Vertex 34739 0.471453 0.44475 0.611426 Vertex 34740 0.48639 0.306178 0.623757 Vertex 34741 0.460537 0.470437 0.400698 Vertex 34742 0.40307 0.162666 0.658849 Vertex 34743 0.443439 0.449897 0.404204 Vertex 34744 0.417284 0.180167 0.486564 Vertex 34745 0.323072 0.237226 0.231215 Vertex 34746 0.499443 0.166285 0.460777 Vertex 34747 0.415513 0.365807 0.333381 Vertex 34748 0.402655 0.358534 0.237961 Vertex 34749 0.406167 0.34387 0.440723 Vertex 34750 0.388932 0.42668 0.377629 Vertex 34751 0.421525 0.259602 0.217119 Vertex 34752 0.478045 0.440723 0.373264 Vertex 34753 0.380955 0.345303 0.218345 Vertex 34754 0.388541 0.194151 0.638427 Vertex 34755 0.516649 0.362876 0.46901 Vertex 34756 0.392213 0.254704 0.212197 Vertex 34757 0.436574 0.829658 0.449577 Vertex 34758 0.453063 0.132212 0.801561 Vertex 34759 0.453815 0.13262 0.79969 Vertex 34760 0.430942 0.799737 0.403167 Vertex 34761 0.59895 0.429221 0.377611 Vertex 34762 0.528251 0.400674 0.540597 Vertex 34763 0.331009 0.934087 0.246175 Vertex 34764 0.55193 0.562268 0.52611 Vertex 34765 0.383679 0.403321 0.58003 Vertex 34766 0.425985 0.811144 0.391553 Vertex 34767 0.425315 0.812998 0.391008 Vertex 34768 0.441431 0.0905516 0.684103 Vertex 34769 0.578712 0.497527 0.490965 Vertex 34770 0.35647 0.928555 0.32513 Vertex 34771 0.357021 0.930634 0.321429 Vertex 34772 0.471216 0.469306 0.38977 Vertex 34773 0.370845 0.364386 0.540366 Vertex 34774 0.407802 0.363882 0.260781 Vertex 34775 0.425985 0.363148 0.645446 Vertex 34776 0.565398 0.542611 0.502443 Vertex 34777 0.424 0.323508 0.646299 Vertex 34778 0.371934 0.355993 0.291887 Vertex 34779 0.373575 0.353139 0.291875 Vertex 34780 0.559173 0.506992 0.415007 Vertex 34781 0.473318 0.164123 0.536498 Vertex 34782 0.426968 0.848338 0.437312 Vertex 34783 0.588402 0.497279 0.279319 Vertex 34784 0.488184 0.12514 0.797723 Vertex 34785 0.372142 0.317544 0.203248 Vertex 34786 0.341616 0.274219 0.230534 Vertex 34787 0.408098 0.87117 0.339161 Vertex 34788 0.409857 0.874617 0.340725 Vertex 34789 0.51945 0.381011 0.490935 Vertex 34790 0.39033 0.078422 0.465965 Vertex 34791 0.390069 0.079186 0.466806 Vertex 34792 0.471642 0.668787 0.427433 Vertex 34793 0.466709 0.671511 0.431898 Vertex 34794 0.446655 0.796166 0.46054 Vertex 34795 0.503281 0.153184 0.69705 Vertex 34796 0.602948 0.471302 0.198924 Vertex 34797 0.408116 0.37343 0.260716 Vertex 34798 0.457937 0.128936 0.799382 Vertex 34799 0.357963 0.325296 0.52781 Vertex 34800 0.370696 0.110914 0.468068 Vertex 34801 0.548258 0.58786 0.471799 Vertex 34802 0.496494 0.119727 0.795899 Vertex 34803 0.391171 0.397428 0.268901 Vertex 34804 0.426849 0.161997 0.752066 Vertex 34805 0.36414 0.2213 0.213506 Vertex 34806 0.487515 0.114574 0.806672 Vertex 34807 0.48851 0.113419 0.804878 Vertex 34808 0.546742 0.0331018 0.718194 Vertex 34809 0.545184 0.0365547 0.715653 Vertex 34810 0.512106 0.5661 0.571205 Vertex 34811 0.569651 0.466937 0.31778 Vertex 34812 0.457789 0.157294 0.798807 Vertex 34813 0.514842 0.0852745 0.799465 Vertex 34814 0.441721 0.313179 0.421178 Vertex 34815 0.310321 0.963925 0.25532 Vertex 34816 0.455337 0.267912 0.437744 Vertex 34817 0.391669 0.44815 0.402042 Vertex 34818 0.552812 0.467541 0.366542 Vertex 34819 0.483778 0.194003 0.561362 Vertex 34820 0.352182 0.312764 0.215111 Vertex 34821 0.518159 0.106519 0.710263 Vertex 34822 0.3539 0.411998 0.488904 Vertex 34823 0.394322 0.171414 0.496894 Vertex 34824 0.599761 0.458177 0.18606 Vertex 34825 0.555507 0.558892 0.509544 Vertex 34826 0.453898 0.140971 0.791238 Vertex 34827 0.489298 0.105814 0.649497 Vertex 34828 0.486852 0.103718 0.65186 Vertex 34829 0.340509 0.0879752 0.451603 Vertex 34830 0.465204 0.220264 0.708522 Vertex 34831 0.489837 0.71024 0.513975 Vertex 34832 0.54705 0.569665 0.51372 Vertex 34833 0.447845 0.138756 0.633364 Vertex 34834 0.534263 0.397961 0.42806 Vertex 34835 0.328118 0.237297 0.225535 Vertex 34836 0.563426 0.401983 0.401876 Vertex 34837 0.505644 0.174973 0.754227 Vertex 34838 0.551468 0.0367264 0.788253 Vertex 34839 0.402495 0.258826 0.712366 Vertex 34840 0.434975 0.323289 0.646453 Vertex 34841 0.426944 0.80123 0.418661 Vertex 34842 0.684586 0.465557 0.191995 Vertex 34843 0.4378 0.268332 0.436275 Vertex 34844 0.517709 0.0674591 0.727244 Vertex 34845 0.408572 0.34201 0.225719 Vertex 34846 0.534316 0.0937084 0.736139 Vertex 34847 0.32046 0.237866 0.224735 Vertex 34848 0.558664 0.407373 0.490888 Vertex 34849 0.378011 0.08669 0.474305 Vertex 34850 0.433032 0.151555 0.729222 Vertex 34851 0.439921 0.261965 0.439787 Vertex 34852 0.546043 0.0602749 0.720468 Vertex 34853 0.471684 0.55567 0.424596 Vertex 34854 0.405682 0.352724 0.44343 Vertex 34855 0.408169 0.352268 0.441878 Vertex 34856 0.410118 0.275653 0.228034 Vertex 34857 0.504655 0.258785 0.520051 Vertex 34858 0.503826 0.256813 0.522029 Vertex 34859 0.472412 0.163169 0.519986 Vertex 34860 0.498507 0.107745 0.805707 Vertex 34861 0.445393 0.581487 0.475892 Vertex 34862 0.531639 0.0595405 0.789236 Vertex 34863 0.682347 0.451686 0.198622 Vertex 34864 0.371567 0.416979 0.310863 Vertex 34865 0.423503 0.254053 0.44404 Vertex 34866 0.369873 0.16982 0.477704 Vertex 34867 0.367167 0.337088 0.505606 Vertex 34868 0.412807 0.495727 0.441256 Vertex 34869 0.591523 0.517913 0.3163 Vertex 34870 0.484033 0.378079 0.419165 Vertex 34871 0.403366 0.364291 0.242118 Vertex 34872 0.401625 0.365535 0.240081 Vertex 34873 0.363015 0.218351 0.48904 Vertex 34874 0.362067 0.407657 0.31505 Vertex 34875 0.38423 0.233063 0.650474 Vertex 34876 0.384715 0.234792 0.654614 Vertex 34877 0.36581 0.355028 0.55676 Vertex 34878 0.563307 0.509687 0.526199 Vertex 34879 0.517182 0.691903 0.430862 Vertex 34880 0.52131 0.695143 0.439077 Vertex 34881 0.507291 0.529924 0.39686 Vertex 34882 0.502665 0.506885 0.395853 Vertex 34883 0.457499 0.159989 0.655076 Vertex 34884 0.457807 0.158419 0.655947 Vertex 34885 0.441123 0.217083 0.468714 Vertex 34886 0.443901 0.282434 0.431146 Vertex 34887 0.586791 0.498795 0.29926 Vertex 34888 0.353236 0.295061 0.536635 Vertex 34889 0.370394 0.388053 0.250416 Vertex 34890 0.490263 0.471414 0.389693 Vertex 34891 0.343399 0.256049 0.222698 Vertex 34892 0.599045 0.518766 0.257736 Vertex 34893 0.569408 0.494063 0.513767 Vertex 34894 0.472868 0.777657 0.392234 Vertex 34895 0.553754 0.556991 0.495786 Vertex 34896 0.596148 0.433349 0.209295 Vertex 34897 0.518378 0.530546 0.406982 Vertex 34898 0.597031 0.527064 0.303992 Vertex 34899 0.366693 0.210947 0.229876 Vertex 34900 0.584274 0.506275 0.307676 Vertex 34901 0.617825 0.489869 0.261231 Vertex 34902 0.481989 0.516504 0.397322 Vertex 34903 0.367214 0.0837228 0.480138 Vertex 34904 0.528808 0.0653092 0.793435 Vertex 34905 0.528168 0.067465 0.793453 Vertex 34906 0.493645 0.500536 0.39176 Vertex 34907 0.449681 0.140361 0.641667 Vertex 34908 0.489564 0.217913 0.559295 Vertex 34909 0.539457 0.469578 0.397784 Vertex 34910 0.526178 0.0881351 0.709292 Vertex 34911 0.473561 0.137234 0.646885 Vertex 34912 0.495576 0.514211 0.389528 Vertex 34913 0.491092 0.514502 0.389759 Vertex 34914 0.47352 0.577039 0.424282 Vertex 34915 0.489991 0.176211 0.517866 Vertex 34916 0.392972 0.392134 0.250742 Vertex 34917 0.593773 0.436909 0.407236 Vertex 34918 0.574987 0.523095 0.478456 Vertex 34919 0.452601 0.487873 0.609584 Vertex 34920 0.383104 0.217368 0.664979 Vertex 34921 0.357803 0.286408 0.227839 Vertex 34922 0.447312 0.242095 0.453161 Vertex 34923 0.441265 0.24075 0.452195 Vertex 34924 0.426405 0.469146 0.409943 Vertex 34925 0.465187 0.514146 0.59977 Vertex 34926 0.458287 0.316951 0.420225 Vertex 34927 0.600958 0.469181 0.186955 Vertex 34928 0.359201 0.397393 0.364475 Vertex 34929 0.401121 0.357095 0.335465 Vertex 34930 0.340562 0.088757 0.455684 Vertex 34931 0.457256 0.717376 0.446687 Vertex 34932 0.366817 0.356882 0.561149 Vertex 34933 0.412451 0.481169 0.592592 Vertex 34934 0.6487 0.439882 0.22762 Vertex 34935 0.524934 0.362414 0.505511 Vertex 34936 0.423461 0.819821 0.382183 Vertex 34937 0.455598 0.44462 0.39131 Vertex 34938 0.36167 0.233827 0.55978 Vertex 34939 0.402957 0.342821 0.212179 Vertex 34940 0.498436 0.404334 0.421042 Vertex 34941 0.446945 0.371446 0.639055 Vertex 34942 0.544082 0.587546 0.515834 Vertex 34943 0.535181 0.167102 0.451739 Vertex 34944 0.556188 0.47726 0.354098 Vertex 34945 0.556378 0.476543 0.351202 Vertex 34946 0.476759 0.216076 0.760369 Vertex 34947 0.529909 0.145757 0.444762 Vertex 34948 0.475427 0.46978 0.385654 Vertex 34949 0.456338 0.0717827 0.672672 Vertex 34950 0.533368 0.0507039 0.725147 Vertex 34951 0.535038 0.0495904 0.724863 Vertex 34952 0.40307 0.268113 0.643924 Vertex 34953 0.555537 0.537499 0.462797 Vertex 34954 0.555412 0.53516 0.462471 Vertex 34955 0.562982 0.491184 0.352019 Vertex 34956 0.420737 0.163685 0.588292 Vertex 34957 0.614592 0.53683 0.296512 Vertex 34958 0.509127 0.282665 0.565508 Vertex 34959 0.373516 0.462216 0.542759 Vertex 34960 0.375985 0.465184 0.548972 Vertex 34961 0.376086 0.468879 0.542782 Vertex 34962 0.684218 0.451366 0.206458 Vertex 34963 0.387742 0.904485 0.323265 Vertex 34964 0.470736 0.305716 0.427516 Vertex 34965 0.638845 0.484189 0.233146 Vertex 34966 0.451979 0.169862 0.799684 Vertex 34967 0.450984 0.170448 0.797711 Vertex 34968 0.634906 0.448961 0.196775 Vertex 34969 0.634231 0.450081 0.196431 Vertex 34970 0.373599 0.873776 0.331373 Vertex 34971 0.519794 0.73672 0.470236 Vertex 34972 0.39707 0.865378 0.397363 Vertex 34973 0.39935 0.327511 0.202052 Vertex 34974 0.356174 0.421581 0.487986 Vertex 34975 0.452032 0.366494 0.410731 Vertex 34976 0.436527 0.441943 0.400561 Vertex 34977 0.439482 0.441487 0.402694 Vertex 34978 0.524591 0.395598 0.431063 Vertex 34979 0.554637 0.506151 0.546905 Vertex 34980 0.463268 0.328601 0.633908 Vertex 34981 0.387523 0.326179 0.258198 Vertex 34982 0.498549 0.392501 0.444437 Vertex 34983 0.46322 0.346594 0.412419 Vertex 34984 0.509701 0.0243955 0.664327 Vertex 34985 0.595414 0.449897 0.1928 Vertex 34986 0.446127 0.405987 0.400561 Vertex 34987 0.453513 0.173777 0.623674 Vertex 34988 0.392083 0.257654 0.67741 Vertex 34989 0.392616 0.257926 0.677641 Vertex 34990 0.374913 0.386134 0.548948 Vertex 34991 0.400896 0.281267 0.233554 Vertex 34992 0.434886 0.134255 0.719757 Vertex 34993 0.363767 0.36191 0.458349 Vertex 34994 0.627752 0.523089 0.27551 Vertex 34995 0.442444 0.164668 0.584211 Vertex 34996 0.663359 0.421297 0.224439 Vertex 34997 0.53967 0.663972 0.480825 Vertex 34998 0.376779 0.480298 0.504682 Vertex 34999 0.474053 0.520176 0.599581 Vertex 35000 0.409383 0.430394 0.377493 Vertex 35001 0.402987 0.369568 0.368585 Vertex 35002 0.591274 0.417666 0.374904 Vertex 35003 0.402087 0.3967 0.275647 Vertex 35004 0.480307 0.112602 0.801668 Vertex 35005 0.502884 0.410583 0.430429 Vertex 35006 0.453922 0.175737 0.802065 Vertex 35007 0.451926 0.175192 0.801342 Vertex 35008 0.417018 0.393644 0.302411 Vertex 35009 0.505088 0.642265 0.552193 Vertex 35010 0.456243 0.34076 0.413668 Vertex 35011 0.368529 0.206079 0.214839 Vertex 35012 0.403757 0.359665 0.28363 Vertex 35013 0.497406 0.7502 0.418021 Vertex 35014 0.490547 0.261734 0.59874 Vertex 35015 0.459797 0.510356 0.595849 Vertex 35016 0.518147 0.42732 0.423885 Vertex 35017 0.415004 0.386839 0.623431 Vertex 35018 0.544296 0.149666 0.427095 Vertex 35019 0.440051 0.775478 0.437051 Vertex 35020 0.463818 0.294321 0.428741 Vertex 35021 0.307934 0.97731 0.240898 Vertex 35022 0.419191 0.254674 0.226696 Vertex 35023 0.518698 0.0666418 0.677618 Vertex 35024 0.364774 0.34888 0.530469 Vertex 35025 0.357732 0.137832 0.454766 Vertex 35026 0.552599 0.423838 0.526163 Vertex 35027 0.515298 0.12042 0.691992 Vertex 35028 0.376062 0.247088 0.202135 Vertex 35029 0.528725 0.398459 0.505416 Vertex 35030 0.445559 0.248355 0.754085 Vertex 35031 0.556923 0.476792 0.544772 Vertex 35032 0.507208 0.266277 0.540715 Vertex 35033 0.508469 0.268006 0.534514 Vertex 35034 0.36966 0.272792 0.233631 Vertex 35035 0.368475 0.367418 0.300184 Vertex 35036 0.427394 0.372233 0.645795 Vertex 35037 0.439085 0.148019 0.596785 Vertex 35038 0.396306 0.30722 0.207169 Vertex 35039 0.455142 0.236764 0.766558 Vertex 35040 0.382684 0.318882 0.204806 Vertex 35041 0.513883 0.0245613 0.74792 Vertex 35042 0.478045 0.182169 0.482424 Vertex 35043 0.493556 0.123482 0.643628 Vertex 35044 0.617227 0.488335 0.264944 Vertex 35045 0.387766 0.353239 0.376823 Vertex 35046 0.322018 0.965962 0.211167 Vertex 35047 0.55514 0.151365 0.425733 Vertex 35048 0.552753 0.153646 0.424347 Vertex 35049 0.485069 0.405163 0.619688 Vertex 35050 0.353136 0.297164 0.532803 Vertex 35051 0.471814 0.657682 0.515568 Vertex 35052 0.30794 0.98941 0.201299 Vertex 35053 0.505277 0.382414 0.450093 Vertex 35054 0.500426 0.526329 0.393744 Vertex 35055 0.438084 0.45293 0.406626 Vertex 35056 0.358585 0.392139 0.36865 Vertex 35057 0.359224 0.388213 0.379027 Vertex 35058 0.377277 0.243457 0.203141 Vertex 35059 0.433968 0.185255 0.794732 Vertex 35060 0.552842 0.448511 0.364558 Vertex 35061 0.621651 0.527721 0.300617 Vertex 35062 0.399498 0.251932 0.212878 Vertex 35063 0.492152 0.739752 0.509177 Vertex 35064 0.389092 0.253496 0.677387 Vertex 35065 0.479294 0.460013 0.607422 Vertex 35066 0.508161 0.741967 0.490781 Vertex 35067 0.511762 0.187079 0.476016 Vertex 35068 0.623884 0.536789 0.289861 Vertex 35069 0.565469 0.495662 0.366542 Vertex 35070 0.564978 0.496053 0.362461 Vertex 35071 0.38009 0.31938 0.254663 Vertex 35072 0.491092 0.117565 0.642727 Vertex 35073 0.400328 0.318367 0.208442 Vertex 35074 0.599903 0.513216 0.233229 Vertex 35075 0.499882 0.765078 0.432615 Vertex 35076 0.423254 0.38553 0.321417 Vertex 35077 0.403052 0.390084 0.257381 Vertex 35078 0.40227 0.391127 0.259732 Vertex 35079 0.638549 0.442986 0.2014 Vertex 35080 0.50921 0.666323 0.422321 Vertex 35081 0.55806 0.0020374 0.754067 Vertex 35082 0.605518 0.444484 0.349946 Vertex 35083 0.55196 0.0110162 0.724721 Vertex 35084 0.48832 0.0782324 0.762253 Vertex 35085 0.4386 0.252376 0.70023 Vertex 35086 0.497678 0.728955 0.509651 Vertex 35087 0.598174 0.433106 0.207909 Vertex 35088 0.573026 0.505701 0.376936 Vertex 35089 0.525231 0.135368 0.716772 Vertex 35090 0.425706 0.262255 0.729216 Vertex 35091 0.34411 0.930954 0.315115 Vertex 35092 0.378793 0.375497 0.598485 Vertex 35093 0.378722 0.377179 0.594766 Vertex 35094 0.511081 0.0303596 0.751935 Vertex 35095 0.545735 0.149814 0.441564 Vertex 35096 0.475178 0.117494 0.815716 Vertex 35097 0.399871 0.326765 0.233063 Vertex 35098 0.484808 0.0456163 0.674556 Vertex 35099 0.372153 0.295736 0.594694 Vertex 35100 0.527185 0.136482 0.791943 Vertex 35101 0.429514 0.153036 0.723074 Vertex 35102 0.660226 0.460072 0.212061 Vertex 35103 0.546872 0.609703 0.477568 Vertex 35104 0.42323 0.808171 0.418513 Vertex 35105 0.483867 0.435819 0.375544 Vertex 35106 0.393765 0.241183 0.465409 Vertex 35107 0.525325 0.0613943 0.670445 Vertex 35108 0.601793 0.500542 0.256919 Vertex 35109 0.521671 0.393206 0.530327 Vertex 35110 0.379219 0.366133 0.604994 Vertex 35111 0.529341 0.112371 0.768542 Vertex 35112 0.363299 0.238926 0.231238 Vertex 35113 0.592441 0.516107 0.326327 Vertex 35114 0.406369 0.322128 0.632499 Vertex 35115 0.688524 0.464828 0.197562 Vertex 35116 0.60354 0.466054 0.185184 Vertex 35117 0.617061 0.474648 0.375775 Vertex 35118 0.454153 0.132158 0.639955 Vertex 35119 0.50215 0.193239 0.495644 Vertex 35120 0.51566 0.580646 0.564163 Vertex 35121 0.584167 0.426722 0.342359 Vertex 35122 0.376572 0.903662 0.303803 Vertex 35123 0.459909 0.0701243 0.683694 Vertex 35124 0.357803 0.279881 0.510095 Vertex 35125 0.357619 0.281824 0.509704 Vertex 35126 0.540724 0.399039 0.46436 Vertex 35127 0.499793 0.0422167 0.725141 Vertex 35128 0.515523 0.734274 0.444596 Vertex 35129 0.573026 0.510492 0.42867 Vertex 35130 0.456847 0.0752178 0.657842 Vertex 35131 0.378118 0.259981 0.198539 Vertex 35132 0.44592 0.122611 0.66486 Vertex 35133 0.551059 0.445668 0.360477 Vertex 35134 0.562111 0.490248 0.370676 Vertex 35135 0.46434 0.510421 0.602335 Vertex 35136 0.419375 0.144999 0.655728 Vertex 35137 0.324399 0.925191 0.26909 Vertex 35138 0.419914 0.3129 0.429719 Vertex 35139 0.354557 0.301884 0.543878 Vertex 35140 0.376613 0.242053 0.236758 Vertex 35141 0.537881 0.120828 0.43271 Vertex 35142 0.339638 0.106874 0.455038 Vertex 35143 0.325738 0.932263 0.289464 Vertex 35144 0.525124 0.0432769 0.659121 Vertex 35145 0.504478 0.256351 0.55108 Vertex 35146 0.646633 0.502662 0.194471 Vertex 35147 0.380872 0.269309 0.230623 Vertex 35148 0.427815 0.224481 0.466102 Vertex 35149 0.539812 0.535438 0.428824 Vertex 35150 0.460555 0.15804 0.530286 Vertex 35151 0.653681 0.417163 0.227537 Vertex 35152 0.443942 0.371635 0.416079 Vertex 35153 0.514131 0.162162 0.46455 Vertex 35154 0.527623 0.438449 0.586249 Vertex 35155 0.419831 0.40787 0.325427 Vertex 35156 0.337666 0.920133 0.309963 Vertex 35157 0.471838 0.0746196 0.739729 Vertex 35158 0.4386 0.49334 0.428345 Vertex 35159 0.359206 0.27082 0.491101 Vertex 35160 0.467414 0.543487 0.424051 Vertex 35161 0.615326 0.511226 0.337503 Vertex 35162 0.344181 0.901299 0.314766 Vertex 35163 0.541565 0.151484 0.433065 Vertex 35164 0.540766 0.150821 0.434954 Vertex 35165 0.38969 0.19909 0.579615 Vertex 35166 0.606845 0.504783 0.199902 Vertex 35167 0.464476 0.212866 0.594517 Vertex 35168 0.491353 0.228917 0.496568 Vertex 35169 0.380907 0.339149 0.464449 Vertex 35170 0.45969 0.592355 0.538873 Vertex 35171 0.472596 0.139816 0.802864 Vertex 35172 0.360095 0.409522 0.345789 Vertex 35173 0.514268 0.564157 0.403333 Vertex 35174 0.595515 0.513892 0.245145 Vertex 35175 0.49942 0.372541 0.445443 Vertex 35176 0.486413 0.0698045 0.733255 Vertex 35177 0.551675 0.460534 0.366542 Vertex 35178 0.499224 0.251251 0.486789 Vertex 35179 0.587199 0.422215 0.410067 Vertex 35180 0.435804 0.267313 0.637894 Vertex 35181 0.455693 0.193784 0.581848 Vertex 35182 0.465631 0.225191 0.733391 Vertex 35183 0.371626 0.380721 0.500376 Vertex 35184 0.489612 0.0550808 0.690961 Vertex 35185 0.605382 0.516841 0.333369 Vertex 35186 0.5449 0.625629 0.499458 Vertex 35187 0.577717 0.462945 0.314789 Vertex 35188 0.539652 0.168677 0.443211 Vertex 35189 0.524662 0.0162103 0.737484 Vertex 35190 0.495392 0.364149 0.438466 Vertex 35191 0.443521 0.784237 0.405839 Vertex 35192 0.369755 0.251044 0.233199 Vertex 35193 0.479206 0.357569 0.420841 Vertex 35194 0.408465 0.240194 0.211788 Vertex 35195 0.477198 0.215573 0.762389 Vertex 35196 0.460212 0.82675 0.442221 Vertex 35197 0.522346 0.0760529 0.795846 Vertex 35198 0.465033 0.624882 0.522189 Vertex 35199 0.391781 0.194453 0.578561 Vertex 35200 0.549549 0.0369929 0.790977 Vertex 35201 0.320135 0.932695 0.25458 Vertex 35202 0.31513 0.940797 0.244677 Vertex 35203 0.508446 0.27368 0.503438 Vertex 35204 0.381689 0.0821532 0.473215 Vertex 35205 0.357572 0.113946 0.477349 Vertex 35206 0.433986 0.512624 0.453344 Vertex 35207 0.665213 0.473937 0.193239 Vertex 35208 0.458423 0.179001 0.654584 Vertex 35209 0.437771 0.162287 0.780968 Vertex 35210 0.442894 0.1478 0.766606 Vertex 35211 0.562502 0.415481 0.366636 Vertex 35212 0.443024 0.251316 0.635981 Vertex 35213 0.501487 0.681159 0.538121 Vertex 35214 0.419322 0.819507 0.387164 Vertex 35215 0.369447 0.284542 0.234887 Vertex 35216 0.587525 0.500566 0.280355 Vertex 35217 0.386575 0.263339 0.458515 Vertex 35218 0.364797 0.271513 0.482845 Vertex 35219 0.352218 0.403576 0.483674 Vertex 35220 0.446767 0.57387 0.532489 Vertex 35221 0.471536 0.598923 0.545945 Vertex 35222 0.5449 0.0264388 0.780062 Vertex 35223 0.514428 0.362266 0.449808 Vertex 35224 0.443575 0.569867 0.528236 Vertex 35225 0.360071 0.402504 0.410079 Vertex 35226 0.361611 0.405762 0.408077 Vertex 35227 0.590054 0.463875 0.303921 Vertex 35228 0.587798 0.468364 0.30308 Vertex 35229 0.451529 0.441244 0.631362 Vertex 35230 0.628344 0.491054 0.253573 Vertex 35231 0.390176 0.257286 0.621589 Vertex 35232 0.437753 0.50313 0.588328 Vertex 35233 0.611938 0.487068 0.185107 Vertex 35234 0.372704 0.171917 0.471556 Vertex 35235 0.553197 0.0351984 0.78252 Vertex 35236 0.472092 0.66136 0.514016 Vertex 35237 0.416757 0.167398 0.582073 Vertex 35238 0.490589 0.192901 0.783118 Vertex 35239 0.490139 0.191189 0.784966 Vertex 35240 0.426352 0.246951 0.210106 Vertex 35241 0.474787 0.271868 0.615246 Vertex 35242 0.47599 0.660851 0.51754 Vertex 35243 0.516702 0.340352 0.473991 Vertex 35244 0.550094 0.0573373 0.730057 Vertex 35245 0.505781 0.674875 0.534461 Vertex 35246 0.389092 0.0776876 0.465047 Vertex 35247 0.605696 0.460605 0.185267 Vertex 35248 0.355534 0.402131 0.504131 Vertex 35249 0.431362 0.274723 0.639813 Vertex 35250 0.322664 0.263339 0.211818 Vertex 35251 0.515914 0.425052 0.428996 Vertex 35252 0.627568 0.523824 0.252264 Vertex 35253 0.484216 0.469205 0.384754 Vertex 35254 0.398811 0.315382 0.225014 Vertex 35255 0.39906 0.313558 0.227673 Vertex 35256 0.551178 0.546028 0.449945 Vertex 35257 0.435621 0.152888 0.750004 Vertex 35258 0.455254 0.442221 0.623603 Vertex 35259 0.421069 0.809569 0.414444 Vertex 35260 0.48546 0.38486 0.623692 Vertex 35261 0.59125 0.436317 0.207856 Vertex 35262 0.482919 0.0869624 0.64775 Vertex 35263 0.369003 0.148262 0.464224 Vertex 35264 0.452494 0.490094 0.411578 Vertex 35265 0.575609 0.501797 0.388698 Vertex 35266 0.47654 0.21594 0.776935 Vertex 35267 0.380872 0.479955 0.534461 Vertex 35268 0.508777 0.273337 0.548948 Vertex 35269 0.433885 0.557666 0.540692 Vertex 35270 0.434383 0.557506 0.5428 Vertex 35271 0.477275 0.277962 0.616827 Vertex 35272 0.494533 0.17816 0.721576 Vertex 35273 0.617198 0.455328 0.207086 Vertex 35274 0.595414 0.458005 0.408148 Vertex 35275 0.602995 0.50223 0.382065 Vertex 35276 0.402987 0.163696 0.65478 Vertex 35277 0.35936 0.348484 0.401799 Vertex 35278 0.531467 0.097949 0.794087 Vertex 35279 0.517981 0.0222455 0.726989 Vertex 35280 0.414962 0.256037 0.224688 Vertex 35281 0.513616 0.356449 0.579971 Vertex 35282 0.517845 0.38303 0.540692 Vertex 35283 0.474509 0.465349 0.384511 Vertex 35284 0.531082 0.398186 0.495158 Vertex 35285 0.381819 0.233418 0.615927 Vertex 35286 0.611518 0.450217 0.192451 Vertex 35287 0.610019 0.448606 0.193807 Vertex 35288 0.510347 0.287575 0.565531 Vertex 35289 0.505141 0.402107 0.592379 Vertex 35290 0.493485 0.764663 0.418744 Vertex 35291 0.496002 0.764728 0.424702 Vertex 35292 0.515002 0.171816 0.768643 Vertex 35293 0.381612 0.398441 0.582121 Vertex 35294 0.382554 0.39978 0.580042 Vertex 35295 0.562662 0.512826 0.430797 Vertex 35296 0.381191 0.249249 0.23407 Vertex 35297 0.692469 0.462542 0.213696 Vertex 35298 0.438908 0.376859 0.64852 Vertex 35299 0.373747 0.369941 0.5324 Vertex 35300 0.526362 0.0613943 0.723601 Vertex 35301 0.435236 0.825797 0.358191 Vertex 35302 0.408453 0.337225 0.222698 Vertex 35303 0.441757 0.160273 0.509544 Vertex 35304 0.527647 0.125152 0.712644 Vertex 35305 0.438677 0.205114 0.470236 Vertex 35306 0.395388 0.429979 0.345368 Vertex 35307 0.395021 0.429985 0.351824 Vertex 35308 0.490482 0.787175 0.468038 Vertex 35309 0.499793 0.164514 0.703766 Vertex 35310 0.341208 0.248011 0.21655 Vertex 35311 0.362541 0.239578 0.227324 Vertex 35312 0.500207 0.170472 0.78496 Vertex 35313 0.426926 0.151881 0.609075 Vertex 35314 0.454893 0.100401 0.725958 Vertex 35315 0.491489 0.181992 0.530297 Vertex 35316 0.533202 0.404109 0.460825 Vertex 35317 0.432985 0.153717 0.737555 Vertex 35318 0.488167 0.193458 0.784534 Vertex 35319 0.490222 0.194192 0.783136 Vertex 35320 0.522796 0.395871 0.480553 Vertex 35321 0.35817 0.37664 0.378796 Vertex 35322 0.359574 0.373578 0.372784 Vertex 35323 0.500776 0.101651 0.639328 Vertex 35324 0.375571 0.875387 0.317632 Vertex 35325 0.395127 0.361952 0.372784 Vertex 35326 0.356085 0.0845697 0.441688 Vertex 35327 0.427708 0.139123 0.661982 Vertex 35328 0.592879 0.446486 0.200962 Vertex 35329 0.62617 0.511777 0.201513 Vertex 35330 0.414382 0.83554 0.366678 Vertex 35331 0.484293 0.139964 0.647246 Vertex 35332 0.360438 0.3224 0.565211 Vertex 35333 0.418137 0.362372 0.433053 Vertex 35334 0.539024 0.60012 0.528219 Vertex 35335 0.479052 0.178592 0.490965 Vertex 35336 0.341498 0.286639 0.229017 Vertex 35337 0.353663 0.176661 0.455056 Vertex 35338 0.470173 0.670197 0.509189 Vertex 35339 0.456291 0.197823 0.592491 Vertex 35340 0.552137 0.564548 0.46972 Vertex 35341 0.532427 0.525056 0.419858 Vertex 35342 0.536051 0.50133 0.418868 Vertex 35343 0.380167 0.391518 0.590572 Vertex 35344 0.526385 0.141232 0.762312 Vertex 35345 0.587798 0.494661 0.283619 Vertex 35346 0.589047 0.493079 0.283672 Vertex 35347 0.506627 0.132348 0.666998 Vertex 35348 0.357998 0.890182 0.335448 Vertex 35349 0.473147 0.232139 0.470674 Vertex 35350 0.371496 0.879166 0.320979 Vertex 35351 0.369239 0.0819815 0.478504 Vertex 35352 0.371911 0.367957 0.51327 Vertex 35353 0.405202 0.267379 0.22634 Vertex 35354 0.484335 0.422138 0.375408 Vertex 35355 0.519681 0.0853574 0.673235 Vertex 35356 0.585008 0.491622 0.302642 Vertex 35357 0.401417 0.167742 0.681082 Vertex 35358 0.429935 0.138265 0.646648 Vertex 35359 0.429124 0.139419 0.640595 Vertex 35360 0.512775 0.464147 0.405442 Vertex 35361 0.636292 0.447475 0.189673 Vertex 35362 0.420737 0.306569 0.641638 Vertex 35363 0.523697 0.386418 0.453534 Vertex 35364 0.528879 0.0320712 0.648348 Vertex 35365 0.419428 0.879657 0.378144 Vertex 35366 0.496097 0.0772256 0.706479 Vertex 35367 0.482345 0.566888 0.405933 Vertex 35368 0.55257 0.399205 0.426728 Vertex 35369 0.458607 0.149103 0.795941 Vertex 35370 0.571415 0.416452 0.358043 Vertex 35371 0.435781 0.460599 0.410174 Vertex 35372 0.500734 0.731265 0.416689 Vertex 35373 0.440531 0.259383 0.635454 Vertex 35374 0.444137 0.108722 0.73537 Vertex 35375 0.307129 0.950569 0.237884 Vertex 35376 0.334965 0.911972 0.281931 Vertex 35377 0.405285 0.190727 0.737525 Vertex 35378 0.579068 0.41647 0.428712 Vertex 35379 0.477701 0.575754 0.418252 Vertex 35380 0.476173 0.576393 0.420758 Vertex 35381 0.44547 0.59001 0.47729 Vertex 35382 0.47015 0.693034 0.497125 Vertex 35383 0.494397 0.78499 0.43878 Vertex 35384 0.535868 0.519358 0.422659 Vertex 35385 0.415869 0.530001 0.501436 Vertex 35386 0.420198 0.264672 0.706408 Vertex 35387 0.500136 0.358789 0.609045 Vertex 35388 0.589675 0.514821 0.32038 Vertex 35389 0.60325 0.4425 0.381248 Vertex 35390 0.3194 0.990311 0.219879 Vertex 35391 0.575419 0.525518 0.468115 Vertex 35392 0.574252 0.527224 0.470182 Vertex 35393 0.379918 0.47296 0.55108 Vertex 35394 0.564806 0.517374 0.439077 Vertex 35395 0.521967 0.151158 0.444804 Vertex 35396 0.371289 0.371771 0.486014 Vertex 35397 0.428768 0.242314 0.770053 Vertex 35398 0.463469 0.227365 0.72719 Vertex 35399 0.607259 0.475246 0.288013 Vertex 35400 0.420879 0.836718 0.349544 Vertex 35401 0.517205 0.131276 0.708978 Vertex 35402 0.620887 0.51398 0.30481 Vertex 35403 0.550899 0.561285 0.483852 Vertex 35404 0.585186 0.49209 0.425721 Vertex 35405 0.418024 0.170964 0.575908 Vertex 35406 0.392054 0.254485 0.635981 Vertex 35407 0.541056 0.612036 0.519915 Vertex 35408 0.485584 0.696647 0.509657 Vertex 35409 0.3885 0.248473 0.679477 Vertex 35410 0.444333 0.764847 0.432929 Vertex 35411 0.615243 0.472954 0.305568 Vertex 35412 0.389779 0.395521 0.607179 Vertex 35413 0.481107 0.0847296 0.721552 Vertex 35414 0.498046 0.549795 0.384553 Vertex 35415 0.499106 0.552857 0.384807 Vertex 35416 0.572393 0.408326 0.370066 Vertex 35417 0.572932 0.406905 0.372772 Vertex 35418 0.373676 0.0746729 0.470289 Vertex 35419 0.47044 0.358878 0.63013 Vertex 35420 0.490222 0.219381 0.559259 Vertex 35421 0.350506 0.926719 0.273201 Vertex 35422 0.544817 0.592894 0.511617 Vertex 35423 0.357181 0.333606 0.233608 Vertex 35424 0.58788 0.484237 0.29178 Vertex 35425 0.535352 0.656545 0.450567 Vertex 35426 0.509547 0.301943 0.466943 Vertex 35427 0.406049 0.230919 0.465545 Vertex 35428 0.420168 0.46574 0.599196 Vertex 35429 0.4214 0.424459 0.382811 Vertex 35430 0.460792 0.671997 0.441256 Vertex 35431 0.532889 0.0588949 0.79552 Vertex 35432 0.525829 0.140237 0.455903 Vertex 35433 0.480532 0.563624 0.410109 Vertex 35434 0.543668 0.0370522 0.721528 Vertex 35435 0.474852 0.720314 0.493121 Vertex 35436 0.395311 0.902477 0.351486 Vertex 35437 0.352401 0.270293 0.226423 Vertex 35438 0.382601 0.25102 0.603721 Vertex 35439 0.497181 0.0689516 0.729666 Vertex 35440 0.449515 0.558241 0.44536 Vertex 35441 0.49146 0.625942 0.402599 Vertex 35442 0.453152 0.191948 0.60285 Vertex 35443 0.501262 0.647738 0.550944 Vertex 35444 0.457777 0.113389 0.76657 Vertex 35445 0.565096 0.531393 0.462033 Vertex 35446 0.472389 0.424756 0.372897 Vertex 35447 0.474361 0.425762 0.373045 Vertex 35448 0.48315 0.39654 0.396587 Vertex 35449 0.48161 0.393893 0.398222 Vertex 35450 0.408708 0.266295 0.657872 Vertex 35451 0.380445 0.875215 0.318017 Vertex 35452 0.437996 0.418667 0.402747 Vertex 35453 0.451381 0.266182 0.630763 Vertex 35454 0.395921 0.477331 0.42674 Vertex 35455 0.379047 0.314973 0.25333 Vertex 35456 0.468592 0.773251 0.387271 Vertex 35457 0.505022 0.388213 0.588268 Vertex 35458 0.582994 0.51218 0.341507 Vertex 35459 0.522838 0.721345 0.48474 Vertex 35460 0.468106 0.140142 0.803113 Vertex 35461 0.4629 0.558584 0.431028 Vertex 35462 0.465187 0.55753 0.429991 Vertex 35463 0.510898 0.393164 0.573746 Vertex 35464 0.463428 0.113253 0.640933 Vertex 35465 0.352135 0.918818 0.3311 Vertex 35466 0.511952 0.0652559 0.730691 Vertex 35467 0.343742 0.281812 0.230942 Vertex 35468 0.341883 0.280628 0.230806 Vertex 35469 0.37993 0.266129 0.600623 Vertex 35470 0.62036 0.476993 0.366927 Vertex 35471 0.586429 0.513744 0.310395 Vertex 35472 0.516104 0.189022 0.465243 Vertex 35473 0.492686 0.241319 0.483354 Vertex 35474 0.387831 0.313179 0.451597 Vertex 35475 0.418356 0.413094 0.330745 Vertex 35476 0.540487 0.142008 0.458361 Vertex 35477 0.449882 0.786559 0.462892 Vertex 35478 0.493923 0.140728 0.652215 Vertex 35479 0.575366 0.469235 0.314707 Vertex 35480 0.402075 0.379572 0.241497 Vertex 35481 0.443474 0.251263 0.741689 Vertex 35482 0.61731 0.493352 0.24261 Vertex 35483 0.616605 0.494193 0.244434 Vertex 35484 0.373172 0.341767 0.415575 Vertex 35485 0.506266 0.614606 0.561587 Vertex 35486 0.316628 0.936971 0.250309 Vertex 35487 0.431848 0.846751 0.438668 Vertex 35488 0.5381 0.0689812 0.796971 Vertex 35489 0.478282 0.241686 0.466321 Vertex 35490 0.457724 0.716062 0.444354 Vertex 35491 0.373208 0.382414 0.557228 Vertex 35492 0.372047 0.362508 0.467707 Vertex 35493 0.457469 0.70334 0.470366 Vertex 35494 0.527854 0.025651 0.650504 Vertex 35495 0.550686 0.540721 0.447102 Vertex 35496 0.374943 0.415872 0.30568 Vertex 35497 0.355339 0.909271 0.334932 Vertex 35498 0.389827 0.222686 0.710571 Vertex 35499 0.491904 0.219843 0.515923 Vertex 35500 0.426168 0.146764 0.633778 Vertex 35501 0.405569 0.367703 0.414924 Vertex 35502 0.590516 0.448203 0.187417 Vertex 35503 0.554542 0.519939 0.443021 Vertex 35504 0.493598 0.557613 0.379957 Vertex 35505 0.48976 0.195335 0.781104 Vertex 35506 0.375974 0.348697 0.375941 Vertex 35507 0.470908 0.611864 0.43101 Vertex 35508 0.493663 0.0533395 0.729565 Vertex 35509 0.494658 0.664742 0.535657 Vertex 35510 0.493716 0.660199 0.533223 Vertex 35511 0.492946 0.661395 0.532181 Vertex 35512 0.419322 0.406099 0.619143 Vertex 35513 0.441164 0.0942769 0.662693 Vertex 35514 0.373101 0.87868 0.358303 Vertex 35515 0.648298 0.425739 0.225091 Vertex 35516 0.547565 0.610111 0.48387 Vertex 35517 0.547281 0.609655 0.479605 Vertex 35518 0.518881 0.738692 0.470224 Vertex 35519 0.420441 0.25397 0.747843 Vertex 35520 0.604636 0.508461 0.210835 Vertex 35521 0.556419 0.501146 0.403772 Vertex 35522 0.517614 0.0781732 0.795567 Vertex 35523 0.516471 0.0789668 0.795188 Vertex 35524 0.489653 0.251032 0.594576 Vertex 35525 0.365591 0.350853 0.43085 Vertex 35526 0.661351 0.433675 0.203331 Vertex 35527 0.583717 0.496603 0.310573 Vertex 35528 0.423994 0.160652 0.721013 Vertex 35529 0.422804 0.158775 0.716885 Vertex 35530 0.522524 0.0891183 0.712028 Vertex 35531 0.562798 0.493227 0.360311 Vertex 35532 0.426565 0.250227 0.21995 Vertex 35533 0.40349 0.442743 0.385927 Vertex 35534 0.409058 0.180985 0.555214 Vertex 35535 0.617802 0.478391 0.320884 Vertex 35536 0.381452 0.238956 0.600013 Vertex 35537 0.60248 0.44006 0.352031 Vertex 35538 0.491306 0.343183 0.623846 Vertex 35539 0.517424 0.519879 0.404352 Vertex 35540 0.455858 0.225967 0.664979 Vertex 35541 0.416467 0.219476 0.470407 Vertex 35542 0.562988 0.429896 0.501306 Vertex 35543 0.586749 0.433237 0.203935 Vertex 35544 0.539036 0.0500761 0.712028 Vertex 35545 0.439618 0.560225 0.505416 Vertex 35546 0.439962 0.562019 0.503355 Vertex 35547 0.439648 0.560367 0.503355 Vertex 35548 0.442396 0.574149 0.509639 Vertex 35549 0.554252 0.523119 0.447102 Vertex 35550 0.51133 0.544932 0.398625 Vertex 35551 0.54041 0.066014 0.785221 Vertex 35552 0.515316 0.439047 0.416257 Vertex 35553 0.539084 0.164502 0.449643 Vertex 35554 0.522554 0.466558 0.595287 Vertex 35555 0.621024 0.476857 0.349881 Vertex 35556 0.444333 0.77167 0.445372 Vertex 35557 0.446394 0.418448 0.6387 Vertex 35558 0.379823 0.421113 0.376687 Vertex 35559 0.537283 0.0578289 0.802781 Vertex 35560 0.440483 0.562392 0.497065 Vertex 35561 0.385793 0.201009 0.620861 Vertex 35562 0.549952 0.0152331 0.77161 Vertex 35563 0.599578 0.509219 0.245767 Vertex 35564 0.377721 0.409961 0.563565 Vertex 35565 0.459607 0.561557 0.435742 Vertex 35566 0.497595 0.782153 0.46192 Vertex 35567 0.510394 0.273935 0.489875 Vertex 35568 0.371656 0.37507 0.53144 Vertex 35569 0.422212 0.239418 0.199363 Vertex 35570 0.511466 0.192848 0.466054 Vertex 35571 0.458328 0.544861 0.431336 Vertex 35572 0.462302 0.546348 0.427083 Vertex 35573 0.605654 0.513927 0.201489 Vertex 35574 0.375227 0.360726 0.473351 Vertex 35575 0.530046 0.14119 0.785073 Vertex 35576 0.402501 0.359168 0.312628 Vertex 35577 0.593448 0.47177 0.419099 Vertex 35578 0.357655 0.302293 0.556197 Vertex 35579 0.354687 0.889448 0.317052 Vertex 35580 0.367848 0.382391 0.267053 Vertex 35581 0.458038 0.236901 0.74792 Vertex 35582 0.544912 0.49225 0.402107 Vertex 35583 0.420921 0.379868 0.314505 Vertex 35584 0.426352 0.133301 0.697346 Vertex 35585 0.426974 0.134593 0.695344 Vertex 35586 0.517981 0.186143 0.464467 Vertex 35587 0.517193 0.184467 0.460226 Vertex 35588 0.376122 0.351954 0.443323 Vertex 35589 0.443261 0.498179 0.429328 Vertex 35590 0.365994 0.358161 0.451094 Vertex 35591 0.353355 0.37966 0.469128 Vertex 35592 0.388541 0.202786 0.586746 Vertex 35593 0.472181 0.0740155 0.745604 Vertex 35594 0.433471 0.202419 0.792286 Vertex 35595 0.495132 0.233637 0.534893 Vertex 35596 0.5355 0.0648768 0.71021 Vertex 35597 0.509524 0.0993941 0.721664 Vertex 35598 0.617387 0.494886 0.236735 Vertex 35599 0.423094 0.544014 0.517949 Vertex 35600 0.449024 0.247496 0.741689 Vertex 35601 0.431664 0.165384 0.567604 Vertex 35602 0.455527 0.192155 0.619333 Vertex 35603 0.358561 0.148955 0.45335 Vertex 35604 0.359941 0.375272 0.368609 Vertex 35605 0.401151 0.840757 0.393502 Vertex 35606 0.37207 0.417411 0.370622 Vertex 35607 0.443853 0.576601 0.488175 Vertex 35608 0.533747 0.0600854 0.799494 Vertex 35609 0.37181 0.309098 0.478273 Vertex 35610 0.38086 0.870785 0.324953 Vertex 35611 0.468106 0.182264 0.484415 Vertex 35612 0.513972 0.146669 0.70719 Vertex 35613 0.521683 0.350574 0.491616 Vertex 35614 0.523922 0.352019 0.495703 Vertex 35615 0.509749 0.403949 0.582097 Vertex 35616 0.446175 0.177407 0.482567 Vertex 35617 0.594123 0.434143 0.400384 Vertex 35618 0.407974 0.490473 0.437063 Vertex 35619 0.500776 0.179954 0.772759 Vertex 35620 0.453288 0.529563 0.432645 Vertex 35621 0.537639 0.0124554 0.731431 Vertex 35622 0.484974 0.666992 0.521336 Vertex 35623 0.482712 0.671399 0.518085 Vertex 35624 0.523069 0.453623 0.409534 Vertex 35625 0.521499 0.314967 0.536504 Vertex 35626 0.455633 0.560716 0.439023 Vertex 35627 0.468764 0.305698 0.633595 Vertex 35628 0.603901 0.445976 0.38386 Vertex 35629 0.346171 0.283322 0.197017 Vertex 35630 0.493461 0.235023 0.50971 Vertex 35631 0.540641 0.525938 0.569689 Vertex 35632 0.447573 0.246164 0.708522 Vertex 35633 0.484945 0.59553 0.412199 Vertex 35634 0.373439 0.266087 0.592462 Vertex 35635 0.401163 0.305201 0.229722 Vertex 35636 0.541648 0.564495 0.546893 Vertex 35637 0.447946 0.584051 0.465409 Vertex 35638 0.448751 0.58603 0.461346 Vertex 35639 0.457629 0.770124 0.395539 Vertex 35640 0.393582 0.244748 0.712603 Vertex 35641 0.540695 0.0707758 0.718839 Vertex 35642 0.368517 0.457366 0.529918 Vertex 35643 0.592026 0.476111 0.441215 Vertex 35644 0.579417 0.411175 0.36605 Vertex 35645 0.468053 0.803498 0.469176 Vertex 35646 0.457422 0.752433 0.417666 Vertex 35647 0.394689 0.38996 0.244026 Vertex 35648 0.375032 0.385642 0.553082 Vertex 35649 0.373539 0.383806 0.551015 Vertex 35650 0.489973 0.223723 0.565519 Vertex 35651 0.490198 0.225257 0.563512 Vertex 35652 0.489635 0.22682 0.569576 Vertex 35653 0.551373 0.00285473 0.737442 Vertex 35654 0.552706 0.00339961 0.735281 Vertex 35655 0.369459 0.393235 0.519512 Vertex 35656 0.55068 0.566201 0.519986 Vertex 35657 0.548436 0.568605 0.520016 Vertex 35658 0.490642 0.206097 0.542717 Vertex 35659 0.388861 0.246383 0.664973 Vertex 35660 0.398799 0.474334 0.420781 Vertex 35661 0.49342 0.740315 0.505511 Vertex 35662 0.490684 0.744514 0.506743 Vertex 35663 0.337618 0.101218 0.455773 Vertex 35664 0.359959 0.183502 0.453451 Vertex 35665 0.414264 0.237605 0.216716 Vertex 35666 0.615273 0.461672 0.365316 Vertex 35667 0.449705 0.609655 0.498824 Vertex 35668 0.456628 0.195347 0.586249 Vertex 35669 0.434087 0.139313 0.724679 Vertex 35670 0.60556 0.499482 0.203278 Vertex 35671 0.394819 0.35613 0.401835 Vertex 35672 0.400659 0.877182 0.401142 Vertex 35673 0.63708 0.483514 0.233685 Vertex 35674 0.512858 0.365434 0.577975 Vertex 35675 0.432215 0.814218 0.385003 Vertex 35676 0.503281 0.479191 0.397227 Vertex 35677 0.500829 0.47967 0.395012 Vertex 35678 0.432991 0.163821 0.569713 Vertex 35679 0.503092 0.672974 0.413846 Vertex 35680 0.539403 0.0741813 0.718762 Vertex 35681 0.36921 0.35838 0.285697 Vertex 35682 0.359526 0.302038 0.498469 Vertex 35683 0.334799 0.945719 0.295547 Vertex 35684 0.391894 0.877093 0.388929 Vertex 35685 0.384715 0.234762 0.667063 Vertex 35686 0.604813 0.453238 0.316856 Vertex 35687 0.459661 0.708108 0.440711 Vertex 35688 0.525669 0.135096 0.708421 Vertex 35689 0.460756 0.666726 0.49514 Vertex 35690 0.513699 0.723145 0.434605 Vertex 35691 0.596 0.452071 0.419875 Vertex 35692 0.361783 0.337373 0.565288 Vertex 35693 0.500255 0.137465 0.658671 Vertex 35694 0.43472 0.786885 0.432905 Vertex 35695 0.588111 0.433083 0.430797 Vertex 35696 0.476677 0.314559 0.632333 Vertex 35697 0.367427 0.350118 0.381668 Vertex 35698 0.369103 0.877371 0.341678 Vertex 35699 0.531692 0.536694 0.423885 Vertex 35700 0.630387 0.508733 0.281155 Vertex 35701 0.433749 0.411216 0.638238 Vertex 35702 0.439891 0.468175 0.414497 Vertex 35703 0.58826 0.508893 0.376741 Vertex 35704 0.421163 0.527561 0.486926 Vertex 35705 0.571694 0.50204 0.389119 Vertex 35706 0.53033 0.135505 0.45348 Vertex 35707 0.52975 0.137039 0.451508 Vertex 35708 0.468243 0.222876 0.476561 Vertex 35709 0.646438 0.424045 0.210485 Vertex 35710 0.462326 0.223273 0.613238 Vertex 35711 0.634302 0.458219 0.212422 Vertex 35712 0.447383 0.248355 0.743756 Vertex 35713 0.621622 0.488519 0.313433 Vertex 35714 0.455698 0.0996369 0.663279 Vertex 35715 0.427039 0.208028 0.475228 Vertex 35716 0.363909 0.372873 0.481199 Vertex 35717 0.378325 0.418353 0.57618 Vertex 35718 0.524472 0.463626 0.408314 Vertex 35719 0.491951 0.70902 0.404405 Vertex 35720 0.536969 0.399975 0.466605 Vertex 35721 0.545267 0.146793 0.428765 Vertex 35722 0.497773 0.540176 0.382894 Vertex 35723 0.365028 0.912978 0.292052 Vertex 35724 0.534535 0.541793 0.428493 Vertex 35725 0.595456 0.517421 0.341708 Vertex 35726 0.573382 0.50608 0.364214 Vertex 35727 0.398906 0.319012 0.229722 Vertex 35728 0.367368 0.3725 0.31264 Vertex 35729 0.369239 0.367691 0.312657 Vertex 35730 0.367392 0.370676 0.316779 Vertex 35731 0.384496 0.208798 0.601026 Vertex 35732 0.333674 0.24717 0.22852 Vertex 35733 0.497364 0.722577 0.517498 Vertex 35734 0.496778 0.721718 0.518813 Vertex 35735 0.499129 0.719846 0.515893 Vertex 35736 0.381168 0.350438 0.295819 Vertex 35737 0.39582 0.17938 0.634998 Vertex 35738 0.373835 0.365535 0.518967 Vertex 35739 0.427311 0.26209 0.679495 Vertex 35740 0.479383 0.810842 0.432402 Vertex 35741 0.52439 0.0637338 0.652281 Vertex 35742 0.498738 0.051462 0.681325 Vertex 35743 0.482244 0.663237 0.521111 Vertex 35744 0.619969 0.509331 0.312699 Vertex 35745 0.479466 0.671221 0.421285 Vertex 35746 0.471103 0.33604 0.418987 Vertex 35747 0.438167 0.324195 0.419561 Vertex 35748 0.469931 0.200832 0.685672 Vertex 35749 0.542981 0.11898 0.439077 Vertex 35750 0.53062 0.139911 0.789082 Vertex 35751 0.373243 0.303951 0.24367 Vertex 35752 0.616297 0.482253 0.275037 Vertex 35753 0.455651 0.232547 0.706455 Vertex 35754 0.483713 0.632836 0.416689 Vertex 35755 0.450256 0.83869 0.432846 Vertex 35756 0.38696 0.322821 0.455684 Vertex 35757 0.345827 0.135694 0.462892 Vertex 35758 0.37733 0.421984 0.368514 Vertex 35759 0.433933 0.258619 0.712662 Vertex 35760 0.419535 0.8254 0.430779 Vertex 35761 0.55379 0.475098 0.379015 Vertex 35762 0.537964 0.462412 0.573746 Vertex 35763 0.531911 0.641638 0.44324 Vertex 35764 0.527854 0.643017 0.436885 Vertex 35765 0.440436 0.365618 0.647057 Vertex 35766 0.509535 0.351818 0.590258 Vertex 35767 0.482333 0.177058 0.485504 Vertex 35768 0.425505 0.119507 0.678281 Vertex 35769 0.365875 0.239376 0.207175 Vertex 35770 0.36613 0.238233 0.206304 Vertex 35771 0.557385 0.553419 0.494678 Vertex 35772 0.503092 0.434575 0.606119 Vertex 35773 0.502221 0.430518 0.605403 Vertex 35774 0.528441 0.0168322 0.727433 Vertex 35775 0.55883 0.400384 0.459818 Vertex 35776 0.523679 0.595251 0.550825 Vertex 35777 0.529199 0.0487968 0.660211 Vertex 35778 0.529175 0.0504019 0.660626 Vertex 35779 0.361771 0.389101 0.31264 Vertex 35780 0.473188 0.176809 0.491457 Vertex 35781 0.645129 0.422256 0.216278 Vertex 35782 0.448354 0.227626 0.464224 Vertex 35783 0.524609 0.145893 0.762489 Vertex 35784 0.524401 0.147759 0.760452 Vertex 35785 0.321604 0.982019 0.224629 Vertex 35786 0.611844 0.47954 0.279526 Vertex 35787 0.44749 0.121918 0.747671 Vertex 35788 0.439044 0.144507 0.602826 Vertex 35789 0.495907 0.405578 0.410991 Vertex 35790 0.420826 0.54421 0.534461 Vertex 35791 0.425155 0.548966 0.528266 Vertex 35792 0.418095 0.412436 0.326404 Vertex 35793 0.575271 0.499103 0.33084 Vertex 35794 0.618637 0.4494 0.203082 Vertex 35795 0.464168 0.430542 0.377303 Vertex 35796 0.487924 0.209088 0.557234 Vertex 35797 0.481545 0.100975 0.783171 Vertex 35798 0.434525 0.211273 0.470591 Vertex 35799 0.373966 0.3146 0.251938 Vertex 35800 0.491146 0.424501 0.380715 Vertex 35801 0.375121 0.455488 0.439171 Vertex 35802 0.372023 0.382734 0.555054 Vertex 35803 0.373107 0.2843 0.23568 Vertex 35804 0.35544 0.250694 0.520803 Vertex 35805 0.466436 0.21318 0.592426 Vertex 35806 0.53505 0.168364 0.440054 Vertex 35807 0.50706 0.442103 0.604402 Vertex 35808 0.460881 0.0857128 0.726373 Vertex 35809 0.689099 0.456069 0.215117 Vertex 35810 0.455574 0.764556 0.412294 Vertex 35811 0.497133 0.246229 0.489822 Vertex 35812 0.512064 0.0818453 0.797451 Vertex 35813 0.589503 0.472984 0.455956 Vertex 35814 0.455858 0.36746 0.409398 Vertex 35815 0.505401 0.179587 0.451088 Vertex 35816 0.546967 0.00293764 0.729903 Vertex 35817 0.517182 0.369385 0.476283 Vertex 35818 0.469019 0.824411 0.429772 Vertex 35819 0.382719 0.339339 0.27249 Vertex 35820 0.384473 0.339309 0.272626 Vertex 35821 0.398278 0.359298 0.412377 Vertex 35822 0.48742 0.222728 0.495531 Vertex 35823 0.38019 0.352458 0.349935 Vertex 35824 0.55482 0.0516812 0.748026 Vertex 35825 0.421211 0.843322 0.345777 Vertex 35826 0.363619 0.267935 0.571075 Vertex 35827 0.55238 0.459172 0.346985 Vertex 35828 0.519628 0.600836 0.550049 Vertex 35829 0.35785 0.304603 0.237392 Vertex 35830 0.322302 0.256895 0.227922 Vertex 35831 0.621574 0.4658 0.186984 Vertex 35832 0.543241 0.0589956 0.799684 Vertex 35833 0.448491 0.244843 0.708522 Vertex 35834 0.48485 0.151241 0.653234 Vertex 35835 0.462983 0.168121 0.659157 Vertex 35836 0.506627 0.429109 0.411672 Vertex 35837 0.47044 0.145786 0.799364 Vertex 35838 0.471103 0.143773 0.798949 Vertex 35839 0.441851 0.515716 0.434587 Vertex 35840 0.396395 0.257873 0.453072 Vertex 35841 0.461414 0.213844 0.602927 Vertex 35842 0.462095 0.215751 0.604917 Vertex 35843 0.463913 0.21979 0.607014 Vertex 35844 0.460247 0.416351 0.380336 Vertex 35845 0.480325 0.526963 0.595097 Vertex 35846 0.476919 0.566645 0.569991 Vertex 35847 0.496891 0.0865301 0.717442 Vertex 35848 0.441034 0.152574 0.598722 Vertex 35849 0.441478 0.157442 0.596963 Vertex 35850 0.449563 0.0797309 0.668621 Vertex 35851 0.511656 0.400686 0.445959 Vertex 35852 0.508665 0.397114 0.446142 Vertex 35853 0.358425 0.260905 0.216876 Vertex 35854 0.601929 0.527449 0.210249 Vertex 35855 0.653213 0.448316 0.222976 Vertex 35856 0.514108 0.34018 0.457395 Vertex 35857 0.466176 0.521111 0.415806 Vertex 35858 0.585458 0.493233 0.294374 Vertex 35859 0.453312 0.242 0.725123 Vertex 35860 0.359888 0.921276 0.336591 Vertex 35861 0.515221 0.300581 0.484953 Vertex 35862 0.543976 0.120923 0.441256 Vertex 35863 0.460602 0.722002 0.434315 Vertex 35864 0.575692 0.408901 0.416298 Vertex 35865 0.37152 0.17473 0.464171 Vertex 35866 0.387339 0.33007 0.261705 Vertex 35867 0.360468 0.406632 0.321606 Vertex 35868 0.4361 0.495389 0.435067 Vertex 35869 0.510459 0.164804 0.450176 Vertex 35870 0.473342 0.746475 0.486653 Vertex 35871 0.465204 0.483194 0.614914 Vertex 35872 0.456545 0.600149 0.447522 Vertex 35873 0.44993 0.132905 0.634133 Vertex 35874 0.401708 0.284205 0.23385 Vertex 35875 0.319495 0.942165 0.276997 Vertex 35876 0.420749 0.406289 0.329288 Vertex 35877 0.321852 0.94701 0.228988 Vertex 35878 0.510501 0.272999 0.536481 Vertex 35879 0.454182 0.571377 0.449453 Vertex 35880 0.460212 0.137572 0.803682 Vertex 35881 0.447211 0.486357 0.417098 Vertex 35882 0.613395 0.463845 0.336295 Vertex 35883 0.514434 0.0881292 0.800922 Vertex 35884 0.373071 0.213713 0.228283 Vertex 35885 0.379823 0.17768 0.53253 Vertex 35886 0.349754 0.899486 0.325196 Vertex 35887 0.394008 0.338741 0.264832 Vertex 35888 0.526314 0.362544 0.51372 Vertex 35889 0.400268 0.24264 0.735399 Vertex 35890 0.61394 0.534254 0.298413 Vertex 35891 0.503785 0.393442 0.588239 Vertex 35892 0.53274 0.0585337 0.722381 Vertex 35893 0.471186 0.121959 0.813774 Vertex 35894 0.46155 0.23221 0.733391 Vertex 35895 0.374641 0.424205 0.399768 Vertex 35896 0.420056 0.140888 0.695255 Vertex 35897 0.482504 0.0704797 0.740102 Vertex 35898 0.479259 0.0731686 0.740137 Vertex 35899 0.543253 0.495762 0.571732 Vertex 35900 0.395601 0.478042 0.581783 Vertex 35901 0.589403 0.439876 0.202484 Vertex 35902 0.555863 0.534236 0.536487 Vertex 35903 0.557426 0.530641 0.534414 Vertex 35904 0.36167 0.412573 0.345842 Vertex 35905 0.440584 0.561794 0.490616 Vertex 35906 0.602717 0.44369 0.18872 Vertex 35907 0.447229 0.199606 0.471841 Vertex 35908 0.547754 0.0637575 0.731467 Vertex 35909 0.624672 0.487974 0.276778 Vertex 35910 0.414317 0.258797 0.198948 Vertex 35911 0.449385 0.447404 0.629342 Vertex 35912 0.357288 0.277743 0.226749 Vertex 35913 0.358573 0.900712 0.289831 Vertex 35914 0.364158 0.198314 0.547355 Vertex 35915 0.458168 0.205143 0.61248 Vertex 35916 0.618548 0.468406 0.186712 Vertex 35917 0.52224 0.395871 0.53667 Vertex 35918 0.456089 0.382207 0.632386 Vertex 35919 0.459708 0.377647 0.630112 Vertex 35920 0.519314 0.289784 0.493222 Vertex 35921 0.450978 0.416405 0.631415 Vertex 35922 0.465607 0.61896 0.527413 Vertex 35923 0.403093 0.466558 0.410055 Vertex 35924 0.557195 0.412277 0.383161 Vertex 35925 0.643891 0.430743 0.198634 Vertex 35926 0.374434 0.214785 0.578152 Vertex 35927 0.501143 0.768021 0.4763 Vertex 35928 0.506995 0.761933 0.472291 Vertex 35929 0.479223 0.180712 0.703221 Vertex 35930 0.495706 0.0516041 0.746095 Vertex 35931 0.421057 0.1418 0.654969 Vertex 35932 0.466436 0.485439 0.404435 Vertex 35933 0.545989 0.603146 0.466054 Vertex 35934 0.417865 0.170324 0.522029 Vertex 35935 0.418226 0.170176 0.521952 Vertex 35936 0.461905 0.183206 0.569713 Vertex 35937 0.403774 0.381265 0.260017 Vertex 35938 0.485253 0.219358 0.575884 Vertex 35939 0.366326 0.23754 0.574439 Vertex 35940 0.483571 0.498345 0.393946 Vertex 35941 0.361315 0.443986 0.514087 Vertex 35942 0.47827 0.427415 0.373655 Vertex 35943 0.374043 0.913659 0.347625 Vertex 35944 0.443758 0.246312 0.648366 Vertex 35945 0.466673 0.230261 0.607025 Vertex 35946 0.496559 0.158111 0.791031 Vertex 35947 0.606069 0.480896 0.18856 Vertex 35948 0.381227 0.448742 0.420183 Vertex 35949 0.514155 0.114248 0.693976 Vertex 35950 0.549294 0.0338954 0.784172 Vertex 35951 0.676252 0.455311 0.192202 Vertex 35952 0.526539 0.11365 0.752024 Vertex 35953 0.356476 0.366956 0.453865 Vertex 35954 0.527179 0.339013 0.499683 Vertex 35955 0.524686 0.0366672 0.657741 Vertex 35956 0.358679 0.278193 0.493032 Vertex 35957 0.354018 0.932452 0.319907 Vertex 35958 0.62514 0.457105 0.206186 Vertex 35959 0.445766 0.548604 0.445538 Vertex 35960 0.428697 0.260088 0.689842 Vertex 35961 0.430018 0.25933 0.694 Vertex 35962 0.412623 0.829664 0.381313 Vertex 35963 0.414536 0.828829 0.381206 Vertex 35964 0.48562 0.55824 0.392222 Vertex 35965 0.426488 0.166516 0.571756 Vertex 35966 0.484767 0.180564 0.792991 Vertex 35967 0.497062 0.315891 0.445591 Vertex 35968 0.529542 0.118228 0.768637 Vertex 35969 0.537094 0.0438751 0.725686 Vertex 35970 0.475682 0.489875 0.399922 Vertex 35971 0.529524 0.172349 0.444425 Vertex 35972 0.474657 0.200855 0.700094 Vertex 35973 0.423456 0.143542 0.701563 Vertex 35974 0.484631 0.375224 0.422837 Vertex 35975 0.368997 0.206695 0.227294 Vertex 35976 0.515251 0.107336 0.698116 Vertex 35977 0.460573 0.0909899 0.715144 Vertex 35978 0.423515 0.541426 0.511807 Vertex 35979 0.461834 0.142754 0.6517 Vertex 35980 0.535074 0.61723 0.528313 Vertex 35981 0.534808 0.619108 0.528367 Vertex 35982 0.645212 0.482454 0.226968 Vertex 35983 0.31821 0.976357 0.20031 Vertex 35984 0.473846 0.420379 0.373341 Vertex 35985 0.473478 0.422043 0.37375 Vertex 35986 0.544355 0.0121296 0.762253 Vertex 35987 0.394227 0.275433 0.446053 Vertex 35988 0.59484 0.526987 0.2982 Vertex 35989 0.527831 0.401817 0.465409 Vertex 35990 0.486277 0.084925 0.729222 Vertex 35991 0.550633 0.0428919 0.789183 Vertex 35992 0.69578 0.452835 0.203088 Vertex 35993 0.434655 0.541781 0.563589 Vertex 35994 0.317469 0.960164 0.265993 Vertex 35995 0.610286 0.515858 0.33004 Vertex 35996 0.448277 0.81773 0.463614 Vertex 35997 0.317979 0.961526 0.211954 Vertex 35998 0.484181 0.0827988 0.729814 Vertex 35999 0.364478 0.141883 0.457614 Vertex 36000 0.443285 0.439858 0.631054 Vertex 36001 0.3626 0.312953 0.200346 Vertex 36002 0.439891 0.338794 0.41907 Vertex 36003 0.456202 0.719734 0.451088 Vertex 36004 0.456664 0.722162 0.449459 Vertex 36005 0.418368 0.150927 0.63177 Vertex 36006 0.323297 0.952631 0.224416 Vertex 36007 0.371869 0.388852 0.246987 Vertex 36008 0.468776 0.498801 0.407675 Vertex 36009 0.580282 0.424406 0.443222 Vertex 36010 0.329131 0.920423 0.295938 Vertex 36011 0.368997 0.433497 0.422564 Vertex 36012 0.431587 0.795621 0.406093 Vertex 36013 0.526445 0.130784 0.706378 Vertex 36014 0.434738 0.28427 0.429121 Vertex 36015 0.438031 0.286953 0.428659 Vertex 36016 0.435964 0.286609 0.428795 Vertex 36017 0.611559 0.542107 0.285152 Vertex 36018 0.408684 0.226169 0.758267 Vertex 36019 0.424379 0.543416 0.513868 Vertex 36020 0.539066 0.587362 0.526199 Vertex 36021 0.482244 0.502698 0.396848 Vertex 36022 0.490316 0.597182 0.560704 Vertex 36023 0.589687 0.495887 0.393774 Vertex 36024 0.452003 0.566633 0.449506 Vertex 36025 0.368564 0.88985 0.356082 Vertex 36026 0.492176 0.23343 0.505416 Vertex 36027 0.465767 0.212173 0.790243 Vertex 36028 0.551047 0.508235 0.416624 Vertex 36029 0.413233 0.254663 0.739504 Vertex 36030 0.593993 0.516729 0.339653 Vertex 36031 0.541358 0.399478 0.497113 Vertex 36032 0.46627 0.326037 0.633144 Vertex 36033 0.460585 0.323567 0.635051 Vertex 36034 0.412208 0.149814 0.666039 Vertex 36035 0.471553 0.209846 0.584223 Vertex 36036 0.435804 0.148369 0.5946 Vertex 36037 0.490003 0.570672 0.389202 Vertex 36038 0.644323 0.506257 0.19479 Vertex 36039 0.496517 0.371309 0.439485 Vertex 36040 0.549407 0.146017 0.427936 Vertex 36041 0.323351 0.950208 0.28106 Vertex 36042 0.615148 0.462364 0.344267 Vertex 36043 0.519977 0.0214104 0.741636 Vertex 36044 0.440252 0.850731 0.419259 Vertex 36045 0.46556 0.697755 0.434492 Vertex 36046 0.594869 0.517546 0.352055 Vertex 36047 0.347722 0.105186 0.467843 Vertex 36048 0.621284 0.525618 0.223409 Vertex 36049 0.417782 0.324763 0.431472 Vertex 36050 0.4361 0.794934 0.401936 Vertex 36051 0.491584 0.222431 0.535788 Vertex 36052 0.410017 0.373151 0.402125 Vertex 36053 0.358573 0.237582 0.50772 Vertex 36054 0.472365 0.236587 0.602773 Vertex 36055 0.684817 0.45906 0.190953 Vertex 36056 0.466608 0.110819 0.642615 Vertex 36057 0.387807 0.227963 0.704388 Vertex 36058 0.464233 0.710021 0.482667 Vertex 36059 0.511235 0.729992 0.433906 Vertex 36060 0.489079 0.19928 0.760357 Vertex 36061 0.499035 0.665891 0.410772 Vertex 36062 0.464405 0.433817 0.617047 Vertex 36063 0.442752 0.532566 0.447564 Vertex 36064 0.602622 0.529675 0.252566 Vertex 36065 0.622723 0.531512 0.247857 Vertex 36066 0.631187 0.481933 0.186167 Vertex 36067 0.438173 0.137216 0.621945 Vertex 36068 0.373676 0.354098 0.47052 Vertex 36069 0.541553 0.648247 0.470182 Vertex 36070 0.622901 0.522006 0.290909 Vertex 36071 0.554962 0.0101692 0.769372 Vertex 36072 0.556325 0.00946442 0.766233 Vertex 36073 0.551509 0.46458 0.378772 Vertex 36074 0.447922 0.186084 0.475963 Vertex 36075 0.483162 0.525459 0.392246 Vertex 36076 0.531692 0.130772 0.445266 Vertex 36077 0.537147 0.115089 0.431111 Vertex 36078 0.426867 0.400111 0.397488 Vertex 36079 0.550911 0.0120526 0.724496 Vertex 36080 0.427862 0.316904 0.425573 Vertex 36081 0.462515 0.79995 0.385245 Vertex 36082 0.387327 0.351089 0.383125 Vertex 36083 0.510163 0.102278 0.7199 Vertex 36084 0.467698 0.183597 0.567758 Vertex 36085 0.372781 0.342519 0.490924 Vertex 36086 0.470351 0.552472 0.424347 Vertex 36087 0.402756 0.233785 0.46458 Vertex 36088 0.66096 0.465201 0.192125 Vertex 36089 0.662269 0.463573 0.191444 Vertex 36090 0.370537 0.339801 0.591858 Vertex 36091 0.535269 0.0570945 0.710329 Vertex 36092 0.322889 0.24566 0.215111 Vertex 36093 0.478098 0.064249 0.699389 Vertex 36094 0.483043 0.58873 0.416334 Vertex 36095 0.372444 0.353891 0.590454 Vertex 36096 0.492727 0.394935 0.416185 Vertex 36097 0.365064 0.432621 0.544849 Vertex 36098 0.41511 0.163098 0.623585 Vertex 36099 0.526634 0.358546 0.507803 Vertex 36100 0.42676 0.520181 0.468346 Vertex 36101 0.433032 0.534307 0.56944 Vertex 36102 0.546143 0.619552 0.494039 Vertex 36103 0.653539 0.420995 0.204634 Vertex 36104 0.574868 0.502822 0.337438 Vertex 36105 0.384058 0.375443 0.611219 Vertex 36106 0.452915 0.613511 0.505244 Vertex 36107 0.493159 0.758071 0.490918 Vertex 36108 0.52314 0.578141 0.42533 Vertex 36109 0.459222 0.718999 0.440042 Vertex 36110 0.440613 0.55949 0.488164 Vertex 36111 0.500113 0.133669 0.654478 Vertex 36112 0.389335 0.0766274 0.472113 Vertex 36113 0.650773 0.490331 0.22746 Vertex 36114 0.550953 0.543878 0.540621 Vertex 36115 0.549845 0.544968 0.542705 Vertex 36116 0.591932 0.425354 0.20374 Vertex 36117 0.427033 0.226181 0.206464 Vertex 36118 0.360693 0.312219 0.200281 Vertex 36119 0.510921 0.0828521 0.797309 Vertex 36120 0.422911 0.396818 0.331681 Vertex 36121 0.579222 0.455281 0.316602 Vertex 36122 0.523762 0.634021 0.53253 Vertex 36123 0.561323 0.446598 0.517895 Vertex 36124 0.398184 0.214756 0.472581 Vertex 36125 0.543976 0.035684 0.783272 Vertex 36126 0.523312 0.521425 0.58802 Vertex 36127 0.534849 0.102983 0.793577 Vertex 36128 0.534126 0.0978187 0.792962 Vertex 36129 0.347112 0.284465 0.231949 Vertex 36130 0.446572 0.246134 0.704364 Vertex 36131 0.489529 0.0627802 0.738124 Vertex 36132 0.466158 0.809752 0.398246 Vertex 36133 0.361611 0.318278 0.246472 Vertex 36134 0.519657 0.306865 0.517119 Vertex 36135 0.519817 0.400757 0.559271 Vertex 36136 0.418202 0.54219 0.542729 Vertex 36137 0.371543 0.360619 0.335465 Vertex 36138 0.440412 0.453788 0.617408 Vertex 36139 0.53062 0.138756 0.456933 Vertex 36140 0.581241 0.408243 0.372837 Vertex 36141 0.484903 0.48198 0.604633 Vertex 36142 0.536004 0.00951772 0.73964 Vertex 36143 0.399871 0.433332 0.379465 Vertex 36144 0.528127 0.035607 0.647104 Vertex 36145 0.460395 0.689268 0.445325 Vertex 36146 0.553902 0.00647347 0.727652 Vertex 36147 0.554281 0.00785938 0.725917 Vertex 36148 0.524318 0.593788 0.427598 Vertex 36149 0.417337 0.850376 0.342987 Vertex 36150 0.538166 0.148819 0.458112 Vertex 36151 0.511987 0.193701 0.474263 Vertex 36152 0.502043 0.502224 0.601594 Vertex 36153 0.359775 0.264903 0.507347 Vertex 36154 0.461396 0.406496 0.383356 Vertex 36155 0.360018 0.300202 0.234312 Vertex 36156 0.363009 0.297726 0.233175 Vertex 36157 0.568537 0.457407 0.321879 Vertex 36158 0.510382 0.541758 0.396125 Vertex 36159 0.516092 0.187186 0.469045 Vertex 36160 0.360521 0.201104 0.535651 Vertex 36161 0.419736 0.307327 0.430293 Vertex 36162 0.404278 0.878698 0.335643 Vertex 36163 0.403307 0.874594 0.335235 Vertex 36164 0.437569 0.12986 0.731182 Vertex 36165 0.379871 0.239524 0.598213 Vertex 36166 0.416212 0.231772 0.20711 Vertex 36167 0.418208 0.231013 0.208478 Vertex 36168 0.43873 0.19989 0.796752 Vertex 36169 0.503785 0.0384855 0.742832 Vertex 36170 0.371911 0.919665 0.304715 Vertex 36171 0.62286 0.51494 0.29624 Vertex 36172 0.515346 0.033925 0.664457 Vertex 36173 0.587395 0.456122 0.31094 Vertex 36174 0.477826 0.114491 0.809918 Vertex 36175 0.482576 0.181601 0.548948 Vertex 36176 0.394742 0.427829 0.372541 Vertex 36177 0.493971 0.406798 0.407254 Vertex 36178 0.502434 0.570743 0.395758 Vertex 36179 0.486627 0.582855 0.567326 Vertex 36180 0.498259 0.204202 0.524055 Vertex 36181 0.536401 0.605024 0.446598 Vertex 36182 0.534671 0.602086 0.442121 Vertex 36183 0.490986 0.568972 0.388698 Vertex 36184 0.536738 0.420396 0.557204 Vertex 36185 0.550639 0.47421 0.384535 Vertex 36186 0.414198 0.250339 0.749768 Vertex 36187 0.524917 0.521218 0.414024 Vertex 36188 0.42034 0.241609 0.220193 Vertex 36189 0.417628 0.242912 0.221881 Vertex 36190 0.351264 0.383481 0.446687 Vertex 36191 0.383057 0.863358 0.352084 Vertex 36192 0.403739 0.28196 0.202105 Vertex 36193 0.447697 0.125424 0.636301 Vertex 36194 0.349878 0.943338 0.290637 Vertex 36195 0.460857 0.228005 0.718887 Vertex 36196 0.358596 0.382237 0.376936 Vertex 36197 0.412629 0.424436 0.375248 Vertex 36198 0.672391 0.480138 0.19607 Vertex 36199 0.518988 0.734925 0.457893 Vertex 36200 0.518254 0.393792 0.559336 Vertex 36201 0.541867 0.0546721 0.801028 Vertex 36202 0.469682 0.550506 0.425366 Vertex 36203 0.454212 0.231363 0.681568 Vertex 36204 0.43754 0.389012 0.419342 Vertex 36205 0.433483 0.211196 0.793269 Vertex 36206 0.487089 0.63196 0.412158 Vertex 36207 0.487065 0.630396 0.413959 Vertex 36208 0.486046 0.631912 0.413846 Vertex 36209 0.352792 0.166273 0.476466 Vertex 36210 0.354788 0.167274 0.477615 Vertex 36211 0.446293 0.198326 0.801301 Vertex 36212 0.516104 0.514502 0.403712 Vertex 36213 0.48912 0.411998 0.614843 Vertex 36214 0.453566 0.739788 0.451603 Vertex 36215 0.445476 0.108888 0.662556 Vertex 36216 0.36417 0.208691 0.215899 Vertex 36217 0.471482 0.361377 0.415072 Vertex 36218 0.469451 0.360619 0.414391 Vertex 36219 0.480402 0.0809806 0.719165 Vertex 36220 0.400114 0.296394 0.207003 Vertex 36221 0.479247 0.0460013 0.654312 Vertex 36222 0.595331 0.523066 0.235894 Vertex 36223 0.458222 0.130541 0.64637 Vertex 36224 0.336647 0.910799 0.293693 Vertex 36225 0.374913 0.921495 0.329999 Vertex 36226 0.375802 0.921537 0.325646 Vertex 36227 0.553304 0.419005 0.381354 Vertex 36228 0.487722 0.205534 0.553052 Vertex 36229 0.428922 0.407941 0.389812 Vertex 36230 0.422763 0.168855 0.559324 Vertex 36231 0.635445 0.511913 0.199659 Vertex 36232 0.518745 0.295245 0.489863 Vertex 36233 0.382903 0.382977 0.604941 Vertex 36234 0.358146 0.246922 0.553745 Vertex 36235 0.551047 0.403718 0.501247 Vertex 36236 0.556976 0.399377 0.443596 Vertex 36237 0.370341 0.317857 0.594819 Vertex 36238 0.363151 0.325989 0.212932 Vertex 36239 0.430201 0.54055 0.49748 Vertex 36240 0.520439 0.516255 0.409688 Vertex 36241 0.523839 0.129167 0.794703 Vertex 36242 0.497892 0.624468 0.406922 Vertex 36243 0.375121 0.304419 0.466155 Vertex 36244 0.518698 0.727149 0.447202 Vertex 36245 0.523051 0.32484 0.49167 Vertex 36246 0.452672 0.797078 0.376184 Vertex 36247 0.554802 0.0504019 0.751941 Vertex 36248 0.452737 0.114355 0.653773 Vertex 36249 0.562603 0.400899 0.432876 Vertex 36250 0.45914 0.834456 0.413769 Vertex 36251 0.529205 0.127479 0.772854 Vertex 36252 0.356772 0.310756 0.203005 Vertex 36253 0.355132 0.309234 0.203793 Vertex 36254 0.387937 0.496805 0.524096 Vertex 36255 0.38975 0.499885 0.526163 Vertex 36256 0.516951 0.387058 0.553082 Vertex 36257 0.404124 0.836043 0.395379 Vertex 36258 0.520392 0.406928 0.569606 Vertex 36259 0.405433 0.450904 0.599196 Vertex 36260 0.660694 0.440374 0.209183 Vertex 36261 0.401323 0.299894 0.23192 Vertex 36262 0.460964 0.21507 0.634809 Vertex 36263 0.439873 0.140699 0.609513 Vertex 36264 0.381375 0.864833 0.354454 Vertex 36265 0.596942 0.514851 0.263926 Vertex 36266 0.449918 0.109078 0.74786 Vertex 36267 0.616155 0.495336 0.233993 Vertex 36268 0.567927 0.504368 0.413319 Vertex 36269 0.406061 0.354246 0.235947 Vertex 36270 0.471838 0.728061 0.414213 Vertex 36271 0.351928 0.284057 0.228822 Vertex 36272 0.350808 0.287172 0.231138 Vertex 36273 0.601064 0.471219 0.189922 Vertex 36274 0.528168 0.0870987 0.714705 Vertex 36275 0.449651 0.592864 0.510984 Vertex 36276 0.542779 0.0767873 0.735399 Vertex 36277 0.460253 0.521129 0.589086 Vertex 36278 0.43093 0.138306 0.650693 Vertex 36279 0.520007 0.391162 0.544731 Vertex 36280 0.364981 0.356586 0.444531 Vertex 36281 0.572606 0.43425 0.334311 Vertex 36282 0.438244 0.56305 0.520016 Vertex 36283 0.546967 0.556908 0.540715 Vertex 36284 0.52757 0.597182 0.431869 Vertex 36285 0.447661 0.3431 0.638753 Vertex 36286 0.385574 0.201483 0.576524 Vertex 36287 0.54824 0.148463 0.420006 Vertex 36288 0.537793 0.440279 0.567622 Vertex 36289 0.461497 0.333961 0.634548 Vertex 36290 0.426221 0.210349 0.472889 Vertex 36291 0.428508 0.209941 0.473997 Vertex 36292 0.547186 0.134972 0.449489 Vertex 36293 0.434738 0.499997 0.440178 Vertex 36294 0.495594 0.421705 0.394449 Vertex 36295 0.357732 0.227187 0.546472 Vertex 36296 0.535364 0.0694195 0.712763 Vertex 36297 0.383128 0.217995 0.623893 Vertex 36298 0.506325 0.435914 0.40264 Vertex 36299 0.490003 0.603419 0.400502 Vertex 36300 0.455118 0.521828 0.4295 Vertex 36301 0.396703 0.280355 0.443376 Vertex 36302 0.373308 0.379062 0.531754 Vertex 36303 0.529252 0.107289 0.764462 Vertex 36304 0.439222 0.250635 0.675349 Vertex 36305 0.459661 0.200855 0.605207 Vertex 36306 0.442621 0.36897 0.417109 Vertex 36307 0.437812 0.167522 0.562594 Vertex 36308 0.544059 0.461784 0.389421 Vertex 36309 0.424178 0.274806 0.434492 Vertex 36310 0.449438 0.598278 0.463117 Vertex 36311 0.515944 0.0856299 0.682735 Vertex 36312 0.560038 0.0282629 0.732479 Vertex 36313 0.376252 0.348999 0.435067 Vertex 36314 0.354273 0.891621 0.314695 Vertex 36315 0.357939 0.376539 0.47633 Vertex 36316 0.473727 0.749092 0.39452 Vertex 36317 0.471411 0.748494 0.396179 Vertex 36318 0.367208 0.31277 0.583909 Vertex 36319 0.486253 0.182412 0.717323 Vertex 36320 0.41822 0.391725 0.359227 Vertex 36321 0.647966 0.503971 0.231677 Vertex 36322 0.489511 0.294599 0.613268 Vertex 36323 0.584451 0.494619 0.453569 Vertex 36324 0.550532 0.470781 0.555214 Vertex 36325 0.518485 0.0376741 0.661899 Vertex 36326 0.520113 0.378008 0.499192 Vertex 36327 0.61198 0.516551 0.205812 Vertex 36328 0.49403 0.146971 0.795088 Vertex 36329 0.58197 0.501193 0.474316 Vertex 36330 0.544029 0.447244 0.380419 Vertex 36331 0.496482 0.272697 0.460333 Vertex 36332 0.375281 0.440516 0.418851 Vertex 36333 0.441158 0.567669 0.519915 Vertex 36334 0.650199 0.505481 0.221365 Vertex 36335 0.490932 0.318876 0.621512 Vertex 36336 0.49849 0.200299 0.472338 Vertex 36337 0.421276 0.388491 0.347542 Vertex 36338 0.430936 0.13281 0.671026 Vertex 36339 0.503648 0.417086 0.413698 Vertex 36340 0.45478 0.591526 0.449412 Vertex 36341 0.515873 0.688669 0.511748 Vertex 36342 0.48639 0.0395515 0.645831 Vertex 36343 0.396413 0.348703 0.277471 Vertex 36344 0.345644 0.088295 0.445319 Vertex 36345 0.357755 0.328181 0.244351 Vertex 36346 0.340941 0.119211 0.470875 Vertex 36347 0.530117 0.140059 0.790752 Vertex 36348 0.45741 0.693656 0.455607 Vertex 36349 0.402868 0.268522 0.196757 Vertex 36350 0.45102 0.493547 0.414948 Vertex 36351 0.403857 0.270997 0.197681 Vertex 36352 0.535092 0.0677553 0.797996 Vertex 36353 0.405788 0.18535 0.733427 Vertex 36354 0.487912 0.619433 0.411566 Vertex 36355 0.362807 0.129985 0.472468 Vertex 36356 0.436237 0.534739 0.476466 Vertex 36357 0.515944 0.0811701 0.797131 Vertex 36358 0.546558 0.60057 0.499547 Vertex 36359 0.438227 0.551424 0.501981 Vertex 36360 0.486875 0.494791 0.391814 Vertex 36361 0.326839 0.934472 0.240543 Vertex 36362 0.534452 0.130079 0.451603 Vertex 36363 0.374801 0.391565 0.52492 Vertex 36364 0.545907 0.620245 0.481471 Vertex 36365 0.381191 0.206802 0.577975 Vertex 36366 0.473786 0.0930332 0.766333 Vertex 36367 0.571149 0.416156 0.466019 Vertex 36368 0.540043 0.487097 0.402149 Vertex 36369 0.452477 0.162559 0.639955 Vertex 36370 0.36167 0.274332 0.489313 Vertex 36371 0.519705 0.0535349 0.666998 Vertex 36372 0.480988 0.633725 0.420201 Vertex 36373 0.353296 0.404707 0.470822 Vertex 36374 0.381902 0.265394 0.461666 Vertex 36375 0.416206 0.385447 0.297004 Vertex 36376 0.572784 0.505381 0.370747 Vertex 36377 0.572967 0.505896 0.372761 Vertex 36378 0.474177 0.135357 0.806755 Vertex 36379 0.326928 0.922988 0.289778 Vertex 36380 0.621758 0.48044 0.348211 Vertex 36381 0.462735 0.328951 0.417613 Vertex 36382 0.375287 0.474257 0.518819 Vertex 36383 0.476831 0.634252 0.42398 Vertex 36384 0.534174 0.674449 0.455731 Vertex 36385 0.534642 0.677387 0.458254 Vertex 36386 0.323807 0.243866 0.231274 Vertex 36387 0.409283 0.208827 0.472889 Vertex 36388 0.389305 0.293752 0.617266 Vertex 36389 0.362671 0.882992 0.333357 Vertex 36390 0.550443 0.0613114 0.739267 Vertex 36391 0.539309 0.631113 0.511813 Vertex 36392 0.52975 0.56238 0.428238 Vertex 36393 0.52975 0.558833 0.427664 Vertex 36394 0.390354 0.861339 0.337787 Vertex 36395 0.465323 0.0681639 0.698152 Vertex 36396 0.505159 0.170093 0.781098 Vertex 36397 0.391461 0.193624 0.597614 Vertex 36398 0.354936 0.37706 0.412158 Vertex 36399 0.626934 0.494471 0.184509 Vertex 36400 0.397491 0.35549 0.225636 Vertex 36401 0.523928 0.0279905 0.642407 Vertex 36402 0.443166 0.159521 0.532394 Vertex 36403 0.525533 0.418584 0.575766 Vertex 36404 0.522986 0.418353 0.577975 Vertex 36405 0.564782 0.494222 0.368668 Vertex 36406 0.56573 0.495762 0.37077 Vertex 36407 0.564314 0.49257 0.372743 Vertex 36408 0.481344 0.765089 0.399418 Vertex 36409 0.537064 0.151211 0.437353 Vertex 36410 0.578357 0.511013 0.356248 Vertex 36411 0.579257 0.512423 0.358327 Vertex 36412 0.577486 0.51006 0.358167 Vertex 36413 0.354522 0.356911 0.408012 Vertex 36414 0.480728 0.230942 0.481471 Vertex 36415 0.513385 0.190793 0.463987 Vertex 36416 0.368055 0.342964 0.584247 Vertex 36417 0.510459 0.477574 0.604183 Vertex 36418 0.516542 0.745278 0.470224 Vertex 36419 0.49108 0.402717 0.404968 Vertex 36420 0.480141 0.794022 0.472255 Vertex 36421 0.421768 0.189176 0.774737 Vertex 36422 0.36106 0.352552 0.246282 Vertex 36423 0.369133 0.299059 0.586278 Vertex 36424 0.573352 0.524096 0.457703 Vertex 36425 0.483499 0.039824 0.659074 Vertex 36426 0.488753 0.508834 0.392578 Vertex 36427 0.394784 0.166421 0.50955 Vertex 36428 0.443622 0.170146 0.592462 Vertex 36429 0.372971 0.380501 0.559301 Vertex 36430 0.373196 0.382414 0.561385 Vertex 36431 0.36414 0.336828 0.219162 Vertex 36432 0.493598 0.461369 0.388615 Vertex 36433 0.418273 0.266087 0.67314 Vertex 36434 0.535785 0.107283 0.795502 Vertex 36435 0.375251 0.358706 0.464662 Vertex 36436 0.483144 0.586823 0.414225 Vertex 36437 0.546232 0.136754 0.449589 Vertex 36438 0.396199 0.887564 0.386987 Vertex 36439 0.639473 0.46378 0.18413 Vertex 36440 0.5311 0.141025 0.443661 Vertex 36441 0.45054 0.60465 0.504273 Vertex 36442 0.360095 0.241686 0.493251 Vertex 36443 0.420204 0.542776 0.530333 Vertex 36444 0.43828 0.472628 0.416529 Vertex 36445 0.489351 0.599231 0.400721 Vertex 36446 0.414992 0.146941 0.684269 Vertex 36447 0.351726 0.266064 0.223403 Vertex 36448 0.476783 0.165017 0.668828 Vertex 36449 0.396892 0.18686 0.590418 Vertex 36450 0.354107 0.890312 0.31675 Vertex 36451 0.3591 0.0870158 0.443732 Vertex 36452 0.388222 0.196005 0.630236 Vertex 36453 0.391965 0.191788 0.569736 Vertex 36454 0.529827 0.500791 0.588375 Vertex 36455 0.370661 0.349384 0.432958 Vertex 36456 0.651904 0.500897 0.225553 Vertex 36457 0.609504 0.458414 0.316939 Vertex 36458 0.4161 0.168204 0.509586 Vertex 36459 0.614224 0.493358 0.184568 Vertex 36460 0.525775 0.698708 0.495022 Vertex 36461 0.501072 0.248515 0.548812 Vertex 36462 0.4844 0.183816 0.467381 Vertex 36463 0.483511 0.185569 0.467215 Vertex 36464 0.375654 0.429186 0.571892 Vertex 36465 0.33198 0.940667 0.297478 Vertex 36466 0.439796 0.563577 0.488951 Vertex 36467 0.571333 0.503101 0.370622 Vertex 36468 0.488865 0.369616 0.626321 Vertex 36469 0.586708 0.409522 0.389107 Vertex 36470 0.507155 0.275487 0.565496 Vertex 36471 0.36401 0.119537 0.472439 Vertex 36472 0.44229 0.353103 0.643841 Vertex 36473 0.565647 0.511582 0.426686 Vertex 36474 0.370282 0.362508 0.492985 Vertex 36475 0.37213 0.461103 0.45781 Vertex 36476 0.480935 0.373667 0.418963 Vertex 36477 0.484577 0.495158 0.392128 Vertex 36478 0.509766 0.304881 0.57785 Vertex 36479 0.355635 0.283459 0.519311 Vertex 36480 0.320845 0.933844 0.248787 Vertex 36481 0.350186 0.100916 0.456341 Vertex 36482 0.543579 0.0419443 0.787311 Vertex 36483 0.457689 0.678986 0.48275 Vertex 36484 0.35817 0.412733 0.443714 Vertex 36485 0.473697 0.303874 0.632789 Vertex 36486 0.340734 0.909762 0.314766 Vertex 36487 0.500527 0.686472 0.536119 Vertex 36488 0.49387 0.493772 0.392288 Vertex 36489 0.469931 0.401556 0.383475 Vertex 36490 0.499035 0.779387 0.44359 Vertex 36491 0.49615 0.175992 0.497166 Vertex 36492 0.509127 0.132703 0.70023 Vertex 36493 0.481859 0.067542 0.742062 Vertex 36494 0.568348 0.403351 0.418365 Vertex 36495 0.409827 0.258145 0.726189 Vertex 36496 0.611186 0.53532 0.245873 Vertex 36497 0.573346 0.524144 0.484687 Vertex 36498 0.411107 0.32962 0.212659 Vertex 36499 0.410526 0.328003 0.212523 Vertex 36500 0.518443 0.602181 0.425573 Vertex 36501 0.497726 0.424702 0.607665 Vertex 36502 0.417337 0.183899 0.764438 Vertex 36503 0.329954 0.916567 0.283524 Vertex 36504 0.515044 0.676516 0.519962 Vertex 36505 0.51688 0.673572 0.520051 Vertex 36506 0.445671 0.242503 0.669136 Vertex 36507 0.407115 0.518819 0.558566 Vertex 36508 0.543579 0.573953 0.44706 Vertex 36509 0.52847 0.134486 0.79289 Vertex 36510 0.36783 0.328406 0.254201 Vertex 36511 0.318624 0.93199 0.273242 Vertex 36512 0.31821 0.93369 0.271104 Vertex 36513 0.518076 0.400573 0.440261 Vertex 36514 0.40105 0.358102 0.235349 Vertex 36515 0.6124 0.495129 0.227075 Vertex 36516 0.376092 0.176744 0.491285 Vertex 36517 0.483997 0.803006 0.432591 Vertex 36518 0.397479 0.434285 0.382486 Vertex 36519 0.665775 0.454321 0.197515 Vertex 36520 0.437486 0.157146 0.575701 Vertex 36521 0.434857 0.154599 0.57801 Vertex 36522 0.435964 0.156382 0.576133 Vertex 36523 0.492235 0.325527 0.619439 Vertex 36524 0.537686 0.608234 0.449033 Vertex 36525 0.535909 0.608743 0.44513 Vertex 36526 0.517573 0.568996 0.409955 Vertex 36527 0.515162 0.570945 0.406395 Vertex 36528 0.337068 0.911267 0.299953 Vertex 36529 0.377875 0.348377 0.377712 Vertex 36530 0.540144 0.0458355 0.7165 Vertex 36531 0.485389 0.0613114 0.696647 Vertex 36532 0.462681 0.360945 0.410517 Vertex 36533 0.519261 0.668769 0.520099 Vertex 36534 0.36677 0.429198 0.551175 Vertex 36535 0.562934 0.50111 0.396765 Vertex 36536 0.385183 0.207222 0.65462 Vertex 36537 0.424403 0.258986 0.739504 Vertex 36538 0.560873 0.490171 0.374733 Vertex 36539 0.570551 0.403849 0.403902 Vertex 36540 0.385953 0.35196 0.345818 Vertex 36541 0.516933 0.570696 0.566662 Vertex 36542 0.454153 0.491054 0.411062 Vertex 36543 0.382785 0.223012 0.671209 Vertex 36544 0.448935 0.0810872 0.677209 Vertex 36545 0.649346 0.417169 0.208389 Vertex 36546 0.640409 0.487696 0.235675 Vertex 36547 0.549265 0.542273 0.54896 Vertex 36548 0.409993 0.366542 0.297122 Vertex 36549 0.546084 0.510261 0.423938 Vertex 36550 0.524769 0.718626 0.467796 Vertex 36551 0.654653 0.484373 0.191314 Vertex 36552 0.600827 0.523664 0.266958 Vertex 36553 0.423456 0.170555 0.511665 Vertex 36554 0.516678 0.0298917 0.663682 Vertex 36555 0.358993 0.313925 0.561936 Vertex 36556 0.394837 0.356165 0.410381 Vertex 36557 0.522251 0.0223284 0.638119 Vertex 36558 0.51136 0.0194263 0.637693 Vertex 36559 0.504329 0.153172 0.703245 Vertex 36560 0.456267 0.429085 0.386525 Vertex 36561 0.451742 0.804043 0.371777 Vertex 36562 0.599412 0.520454 0.267094 Vertex 36563 0.443516 0.767968 0.432686 Vertex 36564 0.508789 0.0982807 0.707024 Vertex 36565 0.458506 0.73608 0.428605 Vertex 36566 0.384917 0.900138 0.367466 Vertex 36567 0.651288 0.41689 0.207986 Vertex 36568 0.548056 0.475288 0.561403 Vertex 36569 0.521789 0.575067 0.562256 Vertex 36570 0.50963 0.627956 0.418229 Vertex 36571 0.60091 0.523871 0.254141 Vertex 36572 0.488208 0.180268 0.536569 Vertex 36573 0.494379 0.480032 0.606338 Vertex 36574 0.52266 0.393857 0.49318 Vertex 36575 0.50507 0.198788 0.470917 Vertex 36576 0.597102 0.429707 0.201424 Vertex 36577 0.450214 0.242397 0.762389 Vertex 36578 0.395968 0.336265 0.445278 Vertex 36579 0.532249 0.0485244 0.783314 Vertex 36580 0.459827 0.0927548 0.724004 Vertex 36581 0.491323 0.572715 0.389433 Vertex 36582 0.461118 0.233661 0.752066 Vertex 36583 0.359153 0.281688 0.227377 Vertex 36584 0.599086 0.528669 0.268439 Vertex 36585 0.383347 0.214596 0.477988 Vertex 36586 0.380238 0.212239 0.478954 Vertex 36587 0.436823 0.25288 0.6525 Vertex 36588 0.436077 0.252513 0.656687 Vertex 36589 0.458577 0.672074 0.486884 Vertex 36590 0.384668 0.234887 0.656687 Vertex 36591 0.359568 0.395545 0.368638 Vertex 36592 0.385207 0.0779067 0.46455 Vertex 36593 0.38407 0.351498 0.370788 Vertex 36594 0.491448 0.0359328 0.641401 Vertex 36595 0.502612 0.405388 0.438816 Vertex 36596 0.506533 0.276736 0.474044 Vertex 36597 0.506675 0.273106 0.475608 Vertex 36598 0.522891 0.367282 0.532347 Vertex 36599 0.371135 0.469691 0.503859 Vertex 36600 0.368239 0.462584 0.509568 Vertex 36601 0.435621 0.256676 0.706443 Vertex 36602 0.426352 0.237771 0.212908 Vertex 36603 0.367084 0.365215 0.243996 Vertex 36604 0.536004 0.588233 0.43977 Vertex 36605 0.464245 0.123819 0.803486 Vertex 36606 0.461746 0.12559 0.798973 Vertex 36607 0.455858 0.547384 0.432739 Vertex 36608 0.538521 0.399181 0.434469 Vertex 36609 0.365763 0.396883 0.296092 Vertex 36610 0.390016 0.190615 0.671209 Vertex 36611 0.522417 0.0915051 0.714184 Vertex 36612 0.632075 0.50984 0.276914 Vertex 36613 0.363382 0.447676 0.48028 Vertex 36614 0.466679 0.3743 0.406052 Vertex 36615 0.64706 0.460333 0.218754 Vertex 36616 0.58441 0.428564 0.201347 Vertex 36617 0.417468 0.371227 0.311579 Vertex 36618 0.541607 0.0454801 0.787039 Vertex 36619 0.492401 0.573 0.573734 Vertex 36620 0.50661 0.265217 0.544932 Vertex 36621 0.590729 0.433995 0.418365 Vertex 36622 0.370157 0.35167 0.375165 Vertex 36623 0.354409 0.309607 0.530238 Vertex 36624 0.421466 0.516527 0.464728 Vertex 36625 0.319862 0.984027 0.200826 Vertex 36626 0.668944 0.48933 0.206577 Vertex 36627 0.399641 0.294759 0.237848 Vertex 36628 0.600549 0.523409 0.269256 Vertex 36629 0.445411 0.59672 0.480517 Vertex 36630 0.349268 0.894186 0.31075 Vertex 36631 0.472205 0.774033 0.489917 Vertex 36632 0.56843 0.499565 0.378825 Vertex 36633 0.353189 0.380768 0.422659 Vertex 36634 0.468065 0.180754 0.685625 Vertex 36635 0.377827 0.390256 0.244458 Vertex 36636 0.587898 0.485445 0.426331 Vertex 36637 0.431356 0.232518 0.459995 Vertex 36638 0.400683 0.17662 0.594623 Vertex 36639 0.397573 0.194903 0.71682 Vertex 36640 0.480035 0.20249 0.721203 Vertex 36641 0.48007 0.203793 0.723536 Vertex 36642 0.403419 0.380176 0.253626 Vertex 36643 0.495635 0.191515 0.756235 Vertex 36644 0.435419 0.261284 0.638783 Vertex 36645 0.459453 0.677002 0.44513 Vertex 36646 0.664443 0.402664 0.223462 Vertex 36647 0.377739 0.351735 0.607114 Vertex 36648 0.515304 0.293207 0.485753 Vertex 36649 0.520688 0.348412 0.559271 Vertex 36650 0.523377 0.496266 0.594659 Vertex 36651 0.604227 0.44892 0.324805 Vertex 36652 0.586654 0.428291 0.42459 Vertex 36653 0.339152 0.0925179 0.455636 Vertex 36654 0.49252 0.209846 0.52409 Vertex 36655 0.460389 0.178308 0.662912 Vertex 36656 0.460561 0.175382 0.664813 Vertex 36657 0.46091 0.178456 0.664979 Vertex 36658 0.507427 0.0385151 0.670072 Vertex 36659 0.678343 0.478539 0.205516 Vertex 36660 0.472839 0.491942 0.402842 Vertex 36661 0.463096 0.723708 0.428185 Vertex 36662 0.419126 0.385583 0.352043 Vertex 36663 0.498786 0.286473 0.59659 Vertex 36664 0.381766 0.228153 0.610851 Vertex 36665 0.325424 0.241959 0.232417 Vertex 36666 0.493829 0.0367442 0.676125 Vertex 36667 0.425605 0.812885 0.432864 Vertex 36668 0.382453 0.863388 0.356461 Vertex 36669 0.453424 0.794738 0.377451 Vertex 36670 0.379954 0.424915 0.313066 Vertex 36671 0.520238 0.032314 0.662438 Vertex 36672 0.648286 0.43085 0.227821 Vertex 36673 0.598541 0.449346 0.184752 Vertex 36674 0.5139 0.100318 0.799056 Vertex 36675 0.521452 0.0248633 0.634915 Vertex 36676 0.488208 0.596761 0.401065 Vertex 36677 0.438351 0.146396 0.752071 Vertex 36678 0.553357 0.450016 0.366447 Vertex 36679 0.532326 0.0868262 0.793317 Vertex 36680 0.43443 0.164555 0.509592 Vertex 36681 0.592624 0.501685 0.385666 Vertex 36682 0.59064 0.502627 0.385003 Vertex 36683 0.408821 0.241893 0.747789 Vertex 36684 0.489979 0.265856 0.458485 Vertex 36685 0.380031 0.334423 0.213482 Vertex 36686 0.662897 0.49366 0.21244 Vertex 36687 0.484145 0.619362 0.541219 Vertex 36688 0.545362 0.0207589 0.772724 Vertex 36689 0.471548 0.816765 0.445195 Vertex 36690 0.451458 0.237931 0.631682 Vertex 36691 0.372177 0.349514 0.37661 Vertex 36692 0.49146 0.588097 0.567948 Vertex 36693 0.395157 0.491883 0.451556 Vertex 36694 0.453785 0.144655 0.7891 Vertex 36695 0.319566 0.985715 0.225553 Vertex 36696 0.535181 0.0424359 0.781845 Vertex 36697 0.374149 0.361679 0.590472 Vertex 36698 0.4283 0.400461 0.632742 Vertex 36699 0.452909 0.287835 0.634501 Vertex 36700 0.609012 0.525636 0.308464 Vertex 36701 0.424 0.855831 0.356763 Vertex 36702 0.536051 0.551601 0.434048 Vertex 36703 0.422543 0.161535 0.721001 Vertex 36704 0.533611 0.632961 0.442873 Vertex 36705 0.404124 0.293563 0.222941 Vertex 36706 0.403123 0.296571 0.223539 Vertex 36707 0.483571 0.597407 0.418501 Vertex 36708 0.430486 0.168227 0.521982 Vertex 36709 0.4386 0.181162 0.794057 Vertex 36710 0.456226 0.432745 0.622946 Vertex 36711 0.525734 0.091973 0.713497 Vertex 36712 0.504951 0.0249936 0.659382 Vertex 36713 0.416106 0.85175 0.426266 Vertex 36714 0.496056 0.207797 0.517854 Vertex 36715 0.357963 0.205712 0.477059 Vertex 36716 0.366799 0.117985 0.46619 Vertex 36717 0.45494 0.154084 0.655218 Vertex 36718 0.505988 0.609406 0.562967 Vertex 36719 0.508025 0.60946 0.559982 Vertex 36720 0.455722 0.565395 0.443199 Vertex 36721 0.440282 0.273692 0.434125 Vertex 36722 0.504353 0.182566 0.484776 Vertex 36723 0.355167 0.234289 0.522391 Vertex 36724 0.354711 0.231541 0.517629 Vertex 36725 0.390277 0.36425 0.226672 Vertex 36726 0.537579 0.137056 0.457241 Vertex 36727 0.476262 0.0994533 0.776668 Vertex 36728 0.348563 0.149802 0.462157 Vertex 36729 0.491762 0.186576 0.731739 Vertex 36730 0.521766 0.390866 0.488898 Vertex 36731 0.549762 0.0639529 0.739723 Vertex 36732 0.459637 0.183828 0.644184 Vertex 36733 0.460069 0.183733 0.638054 Vertex 36734 0.52205 0.0811938 0.717234 Vertex 36735 0.456409 0.138537 0.797356 Vertex 36736 0.482025 0.219559 0.494365 Vertex 36737 0.517424 0.296281 0.522071 Vertex 36738 0.429201 0.504214 0.446705 Vertex 36739 0.481877 0.546762 0.394876 Vertex 36740 0.481859 0.60956 0.42254 Vertex 36741 0.398539 0.213139 0.733338 Vertex 36742 0.397177 0.207062 0.729169 Vertex 36743 0.464109 0.211546 0.64653 Vertex 36744 0.469581 0.530576 0.416718 Vertex 36745 0.392747 0.461346 0.590235 Vertex 36746 0.562389 0.493133 0.381396 Vertex 36747 0.493094 0.11763 0.642052 Vertex 36748 0.523584 0.410393 0.565496 Vertex 36749 0.592856 0.522195 0.213204 Vertex 36750 0.470381 0.65292 0.427859 Vertex 36751 0.467502 0.649349 0.430098 Vertex 36752 0.363009 0.883466 0.325302 Vertex 36753 0.36677 0.881742 0.325089 Vertex 36754 0.48209 0.623307 0.421883 Vertex 36755 0.535779 0.12026 0.438875 Vertex 36756 0.433648 0.820342 0.36332 Vertex 36757 0.550775 0.0368034 0.724632 Vertex 36758 0.660634 0.452071 0.204207 Vertex 36759 0.375671 0.870921 0.337763 Vertex 36760 0.54811 0.403535 0.509598 Vertex 36761 0.440839 0.278247 0.635768 Vertex 36762 0.438469 0.351913 0.64743 Vertex 36763 0.44627 0.0981977 0.662793 Vertex 36764 0.382352 0.429038 0.395012 Vertex 36765 0.569123 0.50133 0.408391 Vertex 36766 0.518117 0.59855 0.42504 Vertex 36767 0.520303 0.571975 0.41631 Vertex 36768 0.375648 0.472682 0.466143 Vertex 36769 0.426239 0.155784 0.7209 Vertex 36770 0.413393 0.515793 0.472338 Vertex 36771 0.671135 0.453184 0.20246 Vertex 36772 0.416923 0.147498 0.654365 Vertex 36773 0.419102 0.362822 0.634187 Vertex 36774 0.494658 0.729879 0.40906 Vertex 36775 0.451499 0.103581 0.720231 Vertex 36776 0.515464 0.305017 0.481376 Vertex 36777 0.508256 0.0849191 0.795609 Vertex 36778 0.459299 0.629662 0.508952 Vertex 36779 0.474373 0.106685 0.785256 Vertex 36780 0.497773 0.507922 0.391571 Vertex 36781 0.498969 0.415966 0.405779 Vertex 36782 0.50411 0.281552 0.466706 Vertex 36783 0.423817 0.388029 0.334429 Vertex 36784 0.323688 0.260674 0.231156 Vertex 36785 0.326442 0.261734 0.233045 Vertex 36786 0.466869 0.478154 0.613641 Vertex 36787 0.510134 0.282452 0.559206 Vertex 36788 0.320603 0.964796 0.205889 Vertex 36789 0.387339 0.202354 0.660833 Vertex 36790 0.371709 0.260011 0.589838 Vertex 36791 0.417965 0.265898 0.6629 Vertex 36792 0.420944 0.26485 0.660845 Vertex 36793 0.43969 0.808793 0.454404 Vertex 36794 0.526972 0.0884372 0.797036 Vertex 36795 0.547103 0.464609 0.557228 Vertex 36796 0.502203 0.411151 0.419384 Vertex 36797 0.408187 0.265697 0.198297 Vertex 36798 0.482664 0.0474346 0.675284 Vertex 36799 0.399303 0.390185 0.249463 Vertex 36800 0.545717 0.00337591 0.756158 Vertex 36801 0.363329 0.220998 0.21998 Vertex 36802 0.363435 0.221952 0.217972 Vertex 36803 0.465607 0.709523 0.431093 Vertex 36804 0.386753 0.869767 0.324692 Vertex 36805 0.465619 0.175601 0.676895 Vertex 36806 0.457689 0.330289 0.418134 Vertex 36807 0.487361 0.701433 0.509734 Vertex 36808 0.387019 0.486126 0.464094 Vertex 36809 0.388334 0.485256 0.457757 Vertex 36810 0.407251 0.252145 0.735458 Vertex 36811 0.443462 0.175956 0.793412 Vertex 36812 0.371567 0.444662 0.43085 Vertex 36813 0.356221 0.138105 0.474583 Vertex 36814 0.439032 0.490349 0.425899 Vertex 36815 0.368398 0.348146 0.516794 Vertex 36816 0.452447 0.150667 0.652979 Vertex 36817 0.548477 0.054376 0.721315 Vertex 36818 0.44656 0.813815 0.367643 Vertex 36819 0.367048 0.226755 0.232873 Vertex 36820 0.425848 0.487074 0.593569 Vertex 36821 0.42695 0.483953 0.594582 Vertex 36822 0.534446 0.0632422 0.802989 Vertex 36823 0.38484 0.072138 0.471622 Vertex 36824 0.441259 0.79825 0.453617 Vertex 36825 0.50706 0.266686 0.54896 Vertex 36826 0.351039 0.161985 0.476283 Vertex 36827 0.45985 0.082017 0.727895 Vertex 36828 0.382944 0.444105 0.582369 Vertex 36829 0.624595 0.528479 0.295819 Vertex 36830 0.390952 0.351913 0.386975 Vertex 36831 0.601248 0.503888 0.253253 Vertex 36832 0.420192 0.160818 0.604781 Vertex 36833 0.441265 0.408166 0.642538 Vertex 36834 0.357596 0.234531 0.515473 Vertex 36835 0.32235 0.930788 0.259347 Vertex 36836 0.415875 0.155387 0.627684 Vertex 36837 0.373208 0.20801 0.570856 Vertex 36838 0.519385 0.386365 0.519879 Vertex 36839 0.602811 0.460665 0.303365 Vertex 36840 0.606975 0.46012 0.307161 Vertex 36841 0.604458 0.458432 0.307203 Vertex 36842 0.358401 0.267734 0.206902 Vertex 36843 0.594964 0.516284 0.237167 Vertex 36844 0.419286 0.409333 0.340577 Vertex 36845 0.62832 0.50884 0.287972 Vertex 36846 0.465483 0.228034 0.745829 Vertex 36847 0.522577 0.314428 0.509325 Vertex 36848 0.548898 0.39856 0.452243 Vertex 36849 0.507658 0.419662 0.597614 Vertex 36850 0.525284 0.125507 0.752024 Vertex 36851 0.524472 0.143518 0.457928 Vertex 36852 0.306282 0.964742 0.247721 Vertex 36853 0.475806 0.28347 0.6214 Vertex 36854 0.504697 0.694574 0.416843 Vertex 36855 0.49942 0.54222 0.385228 Vertex 36856 0.500438 0.540313 0.386797 Vertex 36857 0.418386 0.142985 0.68312 Vertex 36858 0.471998 0.132472 0.644954 Vertex 36859 0.514404 0.124761 0.677387 Vertex 36860 0.430225 0.377878 0.423642 Vertex 36861 0.60601 0.446729 0.192996 Vertex 36862 0.605737 0.447445 0.19145 Vertex 36863 0.463913 0.529747 0.586142 Vertex 36864 0.395021 0.262267 0.198788 Vertex 36865 0.554583 0.00769355 0.731467 Vertex 36866 0.554406 0.00495134 0.733308 Vertex 36867 0.526101 0.134119 0.792405 Vertex 36868 0.592713 0.447741 0.185136 Vertex 36869 0.525533 0.333102 0.511842 Vertex 36870 0.534387 0.0188222 0.76198 Vertex 36871 0.365556 0.224457 0.492475 Vertex 36872 0.409366 0.17171 0.491753 Vertex 36873 0.603866 0.467784 0.213423 Vertex 36874 0.358626 0.405116 0.335465 Vertex 36875 0.425268 0.135108 0.689321 Vertex 36876 0.451671 0.170051 0.624959 Vertex 36877 0.412499 0.822747 0.408065 Vertex 36878 0.493213 0.37741 0.617372 Vertex 36879 0.505875 0.36839 0.451739 Vertex 36880 0.488196 0.624888 0.410529 Vertex 36881 0.520848 0.112572 0.712775 Vertex 36882 0.356683 0.390298 0.412934 Vertex 36883 0.524798 0.586492 0.428493 Vertex 36884 0.360077 0.360169 0.384262 Vertex 36885 0.552937 0.480689 0.383096 Vertex 36886 0.5103 0.587943 0.409819 Vertex 36887 0.450167 0.413443 0.393555 Vertex 36888 0.450167 0.456146 0.402557 Vertex 36889 0.394168 0.28302 0.232873 Vertex 36890 0.434975 0.258483 0.725094 Vertex 36891 0.414915 0.267296 0.655106 Vertex 36892 0.417722 0.267882 0.653986 Vertex 36893 0.416952 0.26742 0.65475 Vertex 36894 0.527831 0.117713 0.796882 Vertex 36895 0.423319 0.813857 0.428753 Vertex 36896 0.480349 0.155174 0.797457 Vertex 36897 0.487959 0.651114 0.407633 Vertex 36898 0.555963 0.53805 0.530286 Vertex 36899 0.510258 0.0885379 0.804552 Vertex 36900 0.470553 0.0783154 0.711294 Vertex 36901 0.443871 0.199114 0.80136 Vertex 36902 0.485827 0.578875 0.568658 Vertex 36903 0.362298 0.276505 0.226044 Vertex 36904 0.423426 0.382971 0.634412 Vertex 36905 0.415484 0.507128 0.455003 Vertex 36906 0.452293 0.496627 0.415427 Vertex 36907 0.513439 0.539335 0.40174 Vertex 36908 0.541038 0.654324 0.464224 Vertex 36909 0.511034 0.183774 0.456187 Vertex 36910 0.468936 0.117281 0.795609 Vertex 36911 0.510436 0.0314138 0.72093 Vertex 36912 0.539948 0.0702368 0.776899 Vertex 36913 0.456249 0.465332 0.62349 Vertex 36914 0.513918 0.282997 0.524102 Vertex 36915 0.373338 0.0759996 0.476668 Vertex 36916 0.487041 0.48063 0.387301 Vertex 36917 0.665106 0.405193 0.227791 Vertex 36918 0.631365 0.484811 0.237007 Vertex 36919 0.484838 0.178699 0.538583 Vertex 36920 0.603913 0.48047 0.279117 Vertex 36921 0.477079 0.559182 0.414255 Vertex 36922 0.529175 0.699224 0.478752 Vertex 36923 0.593726 0.494631 0.27355 Vertex 36924 0.63374 0.500323 0.188122 Vertex 36925 0.446726 0.299142 0.425437 Vertex 36926 0.458239 0.188684 0.800981 Vertex 36927 0.402306 0.434392 0.603584 Vertex 36928 0.476688 0.535113 0.407835 Vertex 36929 0.459773 0.121728 0.640038 Vertex 36930 0.460555 0.664949 0.441256 Vertex 36931 0.597451 0.528663 0.300172 Vertex 36932 0.334918 0.914163 0.300101 Vertex 36933 0.414459 0.171657 0.532364 Vertex 36934 0.637903 0.451609 0.214513 Vertex 36935 0.475729 0.427729 0.372435 Vertex 36936 0.65974 0.476715 0.216307 Vertex 36937 0.414003 0.380904 0.362343 Vertex 36938 0.556561 0.0307327 0.779766 Vertex 36939 0.518621 0.0180108 0.644166 Vertex 36940 0.434318 0.168121 0.542759 Vertex 36941 0.499745 0.0904983 0.793726 Vertex 36942 0.384609 0.491486 0.519933 Vertex 36943 0.357915 0.387496 0.349952 Vertex 36944 0.358046 0.38752 0.35411 Vertex 36945 0.347118 0.300628 0.207607 Vertex 36946 0.353698 0.0926778 0.449672 Vertex 36947 0.586749 0.430743 0.203467 Vertex 36948 0.418095 0.138549 0.669741 Vertex 36949 0.524147 0.153977 0.791629 Vertex 36950 0.619815 0.482886 0.298011 Vertex 36951 0.38773 0.880303 0.382657 Vertex 36952 0.389619 0.878698 0.384754 Vertex 36953 0.389459 0.881452 0.387052 Vertex 36954 0.409555 0.280734 0.638836 Vertex 36955 0.587075 0.514069 0.306018 Vertex 36956 0.356174 0.426775 0.473991 Vertex 36957 0.328853 0.9395 0.291259 Vertex 36958 0.414133 0.438875 0.605669 Vertex 36959 0.502458 0.147255 0.702671 Vertex 36960 0.630044 0.489034 0.24463 Vertex 36961 0.372177 0.414563 0.378541 Vertex 36962 0.571978 0.413277 0.457763 Vertex 36963 0.419783 0.373601 0.343722 Vertex 36964 0.387464 0.196561 0.478995 Vertex 36965 0.388589 0.199049 0.478439 Vertex 36966 0.565001 0.478527 0.52823 Vertex 36967 0.471921 0.791872 0.480245 Vertex 36968 0.427773 0.224605 0.784042 Vertex 36969 0.689182 0.465397 0.216367 Vertex 36970 0.503115 0.0921329 0.727842 Vertex 36971 0.620651 0.484687 0.317241 Vertex 36972 0.459602 0.210675 0.608885 Vertex 36973 0.543117 0.608234 0.46304 Vertex 36974 0.451339 0.178171 0.607037 Vertex 36975 0.434288 0.306338 0.424631 Vertex 36976 0.546682 0.487127 0.565531 Vertex 36977 0.546736 0.483639 0.565508 Vertex 36978 0.44335 0.169862 0.598704 Vertex 36979 0.355072 0.271068 0.545288 Vertex 36980 0.583403 0.494098 0.476419 Vertex 36981 0.584226 0.491149 0.474316 Vertex 36982 0.356127 0.382237 0.481797 Vertex 36983 0.525941 0.331995 0.500797 Vertex 36984 0.452251 0.159059 0.799103 Vertex 36985 0.357732 0.104807 0.467559 Vertex 36986 0.381612 0.348608 0.613209 Vertex 36987 0.515387 0.403831 0.571726 Vertex 36988 0.610333 0.500631 0.244298 Vertex 36989 0.551101 0.0465107 0.723992 Vertex 36990 0.458038 0.600789 0.526246 Vertex 36991 0.531005 0.399886 0.482845 Vertex 36992 0.489037 0.261847 0.459859 Vertex 36993 0.487314 0.260171 0.458846 Vertex 36994 0.405066 0.162162 0.630929 Vertex 36995 0.398278 0.318236 0.221336 Vertex 36996 0.37393 0.376498 0.505831 Vertex 36997 0.502547 0.0366672 0.727107 Vertex 36998 0.375671 0.354726 0.352055 Vertex 36999 0.475255 0.215111 0.781021 Vertex 37000 0.359408 0.423743 0.453848 Vertex 37001 0.541228 0.0541568 0.800933 Vertex 37002 0.514978 0.393395 0.5696 Vertex 37003 0.484607 0.357131 0.426562 Vertex 37004 0.487379 0.363089 0.428972 Vertex 37005 0.48485 0.361176 0.426959 Vertex 37006 0.455687 0.82582 0.389652 Vertex 37007 0.360829 0.923171 0.287889 Vertex 37008 0.36003 0.92024 0.285413 Vertex 37009 0.483434 0.764888 0.495212 Vertex 37010 0.546422 0.521603 0.429885 Vertex 37011 0.521031 0.0679211 0.677333 Vertex 37012 0.542619 0.399768 0.418116 Vertex 37013 0.481409 0.371221 0.420592 Vertex 37014 0.463522 0.185433 0.664996 Vertex 37015 0.43674 0.161878 0.517866 Vertex 37016 0.431949 0.166474 0.776887 Vertex 37017 0.461811 0.0884076 0.661413 Vertex 37018 0.422384 0.227951 0.464035 Vertex 37019 0.466975 0.742826 0.409819 Vertex 37020 0.614829 0.508834 0.355893 Vertex 37021 0.487053 0.200299 0.555167 Vertex 37022 0.443125 0.483159 0.416961 Vertex 37023 0.46951 0.378879 0.404405 Vertex 37024 0.539623 0.570441 0.44279 Vertex 37025 0.384781 0.204829 0.619499 Vertex 37026 0.364146 0.218061 0.221502 Vertex 37027 0.386362 0.390209 0.24367 Vertex 37028 0.589237 0.43053 0.338581 Vertex 37029 0.393901 0.20015 0.704388 Vertex 37030 0.3566 0.272537 0.202413 Vertex 37031 0.355392 0.221816 0.503752 Vertex 37032 0.522554 0.313913 0.522029 Vertex 37033 0.440667 0.212173 0.469264 Vertex 37034 0.414684 0.379619 0.391784 Vertex 37035 0.352461 0.304982 0.234614 Vertex 37036 0.441946 0.57249 0.487708 Vertex 37037 0.352549 0.935147 0.314345 Vertex 37038 0.406842 0.254366 0.730537 Vertex 37039 0.380901 0.209739 0.478136 Vertex 37040 0.379272 0.207157 0.4788 Vertex 37041 0.413802 0.374247 0.356177 Vertex 37042 0.63766 0.4425 0.192528 Vertex 37043 0.523625 0.0676783 0.6594 Vertex 37044 0.444564 0.585159 0.48509 Vertex 37045 0.4153 0.418371 0.367454 Vertex 37046 0.515967 0.55509 0.575126 Vertex 37047 0.377407 0.0744775 0.466605 Vertex 37048 0.40715 0.400899 0.292526 Vertex 37049 0.663489 0.425152 0.212144 Vertex 37050 0.355185 0.417299 0.493855 Vertex 37051 0.355375 0.416541 0.500104 Vertex 37052 0.374961 0.31938 0.472291 Vertex 37053 0.527025 0.128581 0.716772 Vertex 37054 0.526362 0.126976 0.725502 Vertex 37055 0.64369 0.509752 0.205185 Vertex 37056 0.525438 0.341915 0.524185 Vertex 37057 0.453886 0.0971376 0.717856 Vertex 37058 0.679297 0.455571 0.193671 Vertex 37059 0.451707 0.174511 0.617372 Vertex 37060 0.451363 0.574634 0.540852 Vertex 37061 0.518674 0.336129 0.565508 Vertex 37062 0.635291 0.486493 0.237878 Vertex 37063 0.530875 0.398625 0.505535 Vertex 37064 0.370696 0.219369 0.577193 Vertex 37065 0.452411 0.38049 0.634323 Vertex 37066 0.601437 0.52492 0.268995 Vertex 37067 0.389151 0.217326 0.474097 Vertex 37068 0.525 0.336988 0.518849 Vertex 37069 0.542833 0.629928 0.46436 Vertex 37070 0.495386 0.427717 0.386957 Vertex 37071 0.443214 0.38319 0.645985 Vertex 37072 0.515808 0.375716 0.565531 Vertex 37073 0.54991 0.430145 0.377013 Vertex 37074 0.472134 0.101408 0.774903 Vertex 37075 0.360302 0.427456 0.526169 Vertex 37076 0.552546 0.524404 0.442109 Vertex 37077 0.392616 0.85387 0.375479 Vertex 37078 0.601799 0.48063 0.393934 Vertex 37079 0.409152 0.331995 0.207003 Vertex 37080 0.396306 0.349147 0.441606 Vertex 37081 0.513782 0.188891 0.462074 Vertex 37082 0.402821 0.365215 0.395663 Vertex 37083 0.533025 0.669735 0.450874 Vertex 37084 0.645739 0.430803 0.200044 Vertex 37085 0.366793 0.333523 0.503586 Vertex 37086 0.557201 0.006663 0.737851 Vertex 37087 0.593128 0.453013 0.188506 Vertex 37088 0.413559 0.314511 0.637699 Vertex 37089 0.483559 0.253401 0.460286 Vertex 37090 0.507972 0.26787 0.544796 Vertex 37091 0.664887 0.459385 0.215164 Vertex 37092 0.517164 0.0986656 0.683647 Vertex 37093 0.601935 0.517641 0.341696 Vertex 37094 0.553985 0.530984 0.451413 Vertex 37095 0.496926 0.161114 0.699336 Vertex 37096 0.426577 0.132324 0.678044 Vertex 37097 0.458014 0.42966 0.383747 Vertex 37098 0.357631 0.185693 0.505416 Vertex 37099 0.426328 0.248491 0.212475 Vertex 37100 0.489677 0.580705 0.570607 Vertex 37101 0.356417 0.172172 0.452888 Vertex 37102 0.543484 0.573462 0.534414 Vertex 37103 0.514747 0.170934 0.780743 Vertex 37104 0.614604 0.475886 0.291318 Vertex 37105 0.439956 0.550121 0.480369 Vertex 37106 0.486715 0.0553591 0.644166 Vertex 37107 0.348433 0.0947448 0.459279 Vertex 37108 0.429372 0.404541 0.402149 Vertex 37109 0.360829 0.885805 0.329371 Vertex 37110 0.50273 0.731703 0.501472 Vertex 37111 0.541678 0.610626 0.519968 Vertex 37112 0.548809 0.57894 0.461784 Vertex 37113 0.461538 0.19607 0.625415 Vertex 37114 0.460158 0.420924 0.621341 Vertex 37115 0.354107 0.283607 0.541017 Vertex 37116 0.547156 0.604544 0.478829 Vertex 37117 0.415738 0.161618 0.6215 Vertex 37118 0.414352 0.162802 0.619416 Vertex 37119 0.374001 0.328518 0.476419 Vertex 37120 0.373989 0.330206 0.480553 Vertex 37121 0.373285 0.328465 0.480559 Vertex 37122 0.385491 0.267764 0.606925 Vertex 37123 0.496713 0.250327 0.577927 Vertex 37124 0.443788 0.579148 0.488596 Vertex 37125 0.443705 0.581712 0.48904 Vertex 37126 0.483571 0.800341 0.425887 Vertex 37127 0.619371 0.534929 0.297626 Vertex 37128 0.566322 0.519637 0.513732 Vertex 37129 0.504815 0.200121 0.475187 Vertex 37130 0.441721 0.516586 0.583726 Vertex 37131 0.56265 0.54771 0.510006 Vertex 37132 0.517958 0.381402 0.536569 Vertex 37133 0.447851 0.0997495 0.737632 Vertex 37134 0.500871 0.256214 0.488845 Vertex 37135 0.519018 0.379104 0.44215 Vertex 37136 0.488439 0.19774 0.734126 Vertex 37137 0.370477 0.0783924 0.474399 Vertex 37138 0.371549 0.0768702 0.476164 Vertex 37139 0.317019 0.97092 0.251287 Vertex 37140 0.572618 0.530368 0.484681 Vertex 37141 0.371946 0.369894 0.491237 Vertex 37142 0.527647 0.151691 0.788827 Vertex 37143 0.518947 0.715736 0.44112 Vertex 37144 0.506675 0.148303 0.683191 Vertex 37145 0.509263 0.017081 0.644279 Vertex 37146 0.557432 0.506334 0.411074 Vertex 37147 0.619312 0.484332 0.308873 Vertex 37148 0.504395 0.09741 0.639867 Vertex 37149 0.507682 0.576251 0.399963 Vertex 37150 0.404764 0.40906 0.610111 Vertex 37151 0.546096 0.162855 0.431798 Vertex 37152 0.48527 0.118749 0.807223 Vertex 37153 0.389382 0.883762 0.320991 Vertex 37154 0.417841 0.538548 0.530333 Vertex 37155 0.484157 0.503343 0.39513 Vertex 37156 0.460105 0.721558 0.436382 Vertex 37157 0.356654 0.295659 0.231736 Vertex 37158 0.423876 0.538897 0.505706 Vertex 37159 0.510809 0.280888 0.551015 Vertex 37160 0.521002 0.049016 0.659601 Vertex 37161 0.519261 0.0500228 0.730969 Vertex 37162 0.515873 0.0498037 0.730181 Vertex 37163 0.443255 0.323833 0.640761 Vertex 37164 0.583717 0.494424 0.400804 Vertex 37165 0.554222 0.542936 0.530286 Vertex 37166 0.553902 0.541882 0.532347 Vertex 37167 0.433346 0.144235 0.606871 Vertex 37168 0.417503 0.139301 0.674194 Vertex 37169 0.495114 0.18519 0.455139 Vertex 37170 0.508529 0.173001 0.764462 Vertex 37171 0.51053 0.172444 0.764485 Vertex 37172 0.548056 0.593172 0.483301 Vertex 37173 0.545225 0.0520898 0.792772 Vertex 37174 0.398403 0.245512 0.721043 Vertex 37175 0.501279 0.191557 0.508265 Vertex 37176 0.417817 0.234644 0.211516 Vertex 37177 0.520717 0.391695 0.530191 Vertex 37178 0.361244 0.929976 0.320896 Vertex 37179 0.538574 0.596584 0.444946 Vertex 37180 0.473686 0.524991 0.412063 Vertex 37181 0.39909 0.450815 0.597141 Vertex 37182 0.556828 0.0118039 0.736708 Vertex 37183 0.3695 0.359014 0.528864 Vertex 37184 0.371431 0.361999 0.531221 Vertex 37185 0.411948 0.274373 0.644303 Vertex 37186 0.419008 0.273064 0.645256 Vertex 37187 0.393416 0.419372 0.299041 Vertex 37188 0.449705 0.615838 0.491303 Vertex 37189 0.38195 0.238233 0.606025 Vertex 37190 0.692356 0.445692 0.20711 Vertex 37191 0.364549 0.119075 0.462335 Vertex 37192 0.3617 0.11943 0.459385 Vertex 37193 0.367427 0.368852 0.296062 Vertex 37194 0.442621 0.134279 0.629306 Vertex 37195 0.471506 0.22104 0.7562 Vertex 37196 0.370732 0.314748 0.199931 Vertex 37197 0.608367 0.471864 0.217042 Vertex 37198 0.622664 0.490971 0.239127 Vertex 37199 0.420559 0.287415 0.640512 Vertex 37200 0.592299 0.452811 0.439633 Vertex 37201 0.537277 0.485344 0.582097 Vertex 37202 0.42509 0.242409 0.207465 Vertex 37203 0.563935 0.493885 0.366654 Vertex 37204 0.475243 0.0740688 0.707788 Vertex 37205 0.514019 0.436666 0.418021 Vertex 37206 0.430663 0.809024 0.441173 Vertex 37207 0.359544 0.918599 0.338918 Vertex 37208 0.458766 0.195714 0.582121 Vertex 37209 0.446074 0.83015 0.453528 Vertex 37210 0.439482 0.211196 0.795793 Vertex 37211 0.460371 0.180197 0.660845 Vertex 37212 0.374309 0.3527 0.493032 Vertex 37213 0.366953 0.344474 0.416991 Vertex 37214 0.487012 0.386045 0.621962 Vertex 37215 0.492585 0.183531 0.72693 Vertex 37216 0.363192 0.329306 0.57435 Vertex 37217 0.379195 0.357326 0.312657 Vertex 37218 0.382317 0.355816 0.314695 Vertex 37219 0.529637 0.611681 0.538737 Vertex 37220 0.445304 0.168867 0.607031 Vertex 37221 0.371994 0.0844039 0.479552 Vertex 37222 0.50661 0.420924 0.430074 Vertex 37223 0.358022 0.257967 0.555516 Vertex 37224 0.38295 0.870519 0.321879 Vertex 37225 0.420097 0.265625 0.66502 Vertex 37226 0.36581 0.378428 0.277417 Vertex 37227 0.470286 0.105086 0.649609 Vertex 37228 0.506083 0.0899001 0.727427 Vertex 37229 0.520646 0.387769 0.49918 Vertex 37230 0.532361 0.15656 0.436725 Vertex 37231 0.45478 0.814858 0.381787 Vertex 37232 0.507871 0.0838886 0.785238 Vertex 37233 0.410775 0.504001 0.576618 Vertex 37234 0.501723 0.57759 0.571247 Vertex 37235 0.390034 0.167872 0.526104 Vertex 37236 0.36831 0.310016 0.246063 Vertex 37237 0.600123 0.454914 0.309175 Vertex 37238 0.487977 0.270411 0.453439 Vertex 37239 0.618595 0.464206 0.212173 Vertex 37240 0.447413 0.423488 0.395675 Vertex 37241 0.412528 0.363882 0.318882 Vertex 37242 0.390632 0.219464 0.473025 Vertex 37243 0.360581 0.25718 0.217717 Vertex 37244 0.40108 0.289375 0.233288 Vertex 37245 0.61628 0.449625 0.198273 Vertex 37246 0.450943 0.3967 0.39834 Vertex 37247 0.520528 0.108509 0.711063 Vertex 37248 0.511218 0.187091 0.460197 Vertex 37249 0.541731 0.0726059 0.725088 Vertex 37250 0.351744 0.202555 0.492985 Vertex 37251 0.489162 0.692448 0.404938 Vertex 37252 0.45654 0.0821177 0.735423 Vertex 37253 0.455758 0.719929 0.455743 Vertex 37254 0.45587 0.716228 0.45579 Vertex 37255 0.450072 0.153361 0.639517 Vertex 37256 0.443942 0.217522 0.794045 Vertex 37257 0.5173 0.095041 0.719781 Vertex 37258 0.381108 0.238547 0.233578 Vertex 37259 0.380872 0.24033 0.233661 Vertex 37260 0.379853 0.23905 0.235509 Vertex 37261 0.599714 0.522047 0.269392 Vertex 37262 0.51945 0.379684 0.505422 Vertex 37263 0.442082 0.104813 0.714622 Vertex 37264 0.445766 0.100946 0.716595 Vertex 37265 0.382086 0.223284 0.612172 Vertex 37266 0.46383 0.648158 0.434617 Vertex 37267 0.418753 0.400757 0.362609 Vertex 37268 0.471601 0.381129 0.627168 Vertex 37269 0.541447 0.155961 0.429624 Vertex 37270 0.472418 0.603223 0.430222 Vertex 37271 0.437812 0.141925 0.741642 Vertex 37272 0.428484 0.823783 0.365784 Vertex 37273 0.470452 0.694308 0.428765 Vertex 37274 0.46749 0.692383 0.432496 Vertex 37275 0.475143 0.0730323 0.739918 Vertex 37276 0.473076 0.512067 0.40835 Vertex 37277 0.471903 0.515177 0.410204 Vertex 37278 0.533392 0.638196 0.44343 Vertex 37279 0.378828 0.344107 0.611231 Vertex 37280 0.519847 0.33668 0.48564 Vertex 37281 0.436053 0.386993 0.420704 Vertex 37282 0.496233 0.14013 0.79539 Vertex 37283 0.445044 0.172977 0.600789 Vertex 37284 0.382269 0.344332 0.455968 Vertex 37285 0.359811 0.0961307 0.477064 Vertex 37286 0.358425 0.385879 0.383107 Vertex 37287 0.464002 0.770361 0.388153 Vertex 37288 0.505088 0.644942 0.550944 Vertex 37289 0.387973 0.344065 0.219056 Vertex 37290 0.478299 0.520472 0.59871 Vertex 37291 0.426488 0.309234 0.644356 Vertex 37292 0.421643 0.166966 0.74375 Vertex 37293 0.506379 0.438413 0.401225 Vertex 37294 0.354267 0.0885675 0.440421 Vertex 37295 0.493296 0.257085 0.592491 Vertex 37296 0.479898 0.188631 0.794561 Vertex 37297 0.548755 0.577525 0.480642 Vertex 37298 0.374825 0.382142 0.525565 Vertex 37299 0.487225 0.176472 0.530286 Vertex 37300 0.465483 0.778486 0.383534 Vertex 37301 0.457635 0.698193 0.451692 Vertex 37302 0.496778 0.547112 0.384185 Vertex 37303 0.463167 0.467576 0.398317 Vertex 37304 0.463019 0.749163 0.410215 Vertex 37305 0.46219 0.748062 0.414012 Vertex 37306 0.509915 0.710838 0.503397 Vertex 37307 0.366817 0.188874 0.528266 Vertex 37308 0.555555 0.00891953 0.734315 Vertex 37309 0.509156 0.171153 0.75004 Vertex 37310 0.368712 0.313001 0.480914 Vertex 37311 0.502517 0.165112 0.456554 Vertex 37312 0.658443 0.490473 0.219464 Vertex 37313 0.635937 0.511588 0.198498 Vertex 37314 0.61959 0.480648 0.282789 Vertex 37315 0.527831 0.118992 0.717169 Vertex 37316 0.412487 0.2454 0.221934 Vertex 37317 0.48036 0.082935 0.721522 Vertex 37318 0.383371 0.311864 0.615365 Vertex 37319 0.422324 0.267639 0.654584 Vertex 37320 0.409745 0.260378 0.224416 Vertex 37321 0.50642 0.17556 0.764462 Vertex 37322 0.479875 0.161618 0.662876 Vertex 37323 0.362274 0.137015 0.456785 Vertex 37324 0.375352 0.220631 0.229551 Vertex 37325 0.389465 0.193363 0.650877 Vertex 37326 0.475166 0.776763 0.48933 Vertex 37327 0.545456 0.629419 0.478741 Vertex 37328 0.543745 0.631818 0.472996 Vertex 37329 0.606578 0.445076 0.197645 Vertex 37330 0.545439 0.399703 0.492985 Vertex 37331 0.445547 0.587291 0.481145 Vertex 37332 0.532089 0.10184 0.724987 Vertex 37333 0.439062 0.41448 0.640406 Vertex 37334 0.412499 0.833964 0.372867 Vertex 37335 0.351608 0.157809 0.454582 Vertex 37336 0.563834 0.520566 0.519962 Vertex 37337 0.431469 0.390185 0.421818 Vertex 37338 0.374256 0.358659 0.462672 Vertex 37339 0.524934 0.325581 0.525387 Vertex 37340 0.524917 0.327867 0.526383 Vertex 37341 0.383886 0.353109 0.35822 Vertex 37342 0.643986 0.441321 0.222947 Vertex 37343 0.644868 0.439361 0.225316 Vertex 37344 0.445914 0.146574 0.770692 Vertex 37345 0.457096 0.225037 0.6525 Vertex 37346 0.454757 0.229787 0.656687 Vertex 37347 0.360255 0.338788 0.546608 Vertex 37348 0.359443 0.235147 0.50923 Vertex 37349 0.357939 0.231979 0.510794 Vertex 37350 0.406943 0.33999 0.214916 Vertex 37351 0.535459 0.0604704 0.709825 Vertex 37352 0.54811 0.580924 0.464224 Vertex 37353 0.490897 0.713165 0.404678 Vertex 37354 0.457238 0.237363 0.62172 Vertex 37355 0.504448 0.420598 0.414172 Vertex 37356 0.497062 0.168938 0.704826 Vertex 37357 0.377555 0.220021 0.481933 Vertex 37358 0.489772 0.452811 0.385038 Vertex 37359 0.366373 0.288694 0.478664 Vertex 37360 0.448088 0.172663 0.569689 Vertex 37361 0.530999 0.0949877 0.795011 Vertex 37362 0.355031 0.090824 0.451194 Vertex 37363 0.377004 0.353654 0.298005 Vertex 37364 0.502458 0.0382426 0.719923 Vertex 37365 0.357436 0.178758 0.495188 Vertex 37366 0.403502 0.1841 0.565561 Vertex 37367 0.365739 0.352689 0.560675 Vertex 37368 0.399777 0.32426 0.240081 Vertex 37369 0.368345 0.226619 0.488714 Vertex 37370 0.568703 0.41978 0.478486 Vertex 37371 0.442444 0.448944 0.625913 Vertex 37372 0.479028 0.149174 0.65141 Vertex 37373 0.494379 0.757301 0.415386 Vertex 37374 0.482333 0.730128 0.400289 Vertex 37375 0.573672 0.406075 0.408024 Vertex 37376 0.355967 0.353287 0.398832 Vertex 37377 0.431718 0.213968 0.790053 Vertex 37378 0.398865 0.466149 0.411684 Vertex 37379 0.638359 0.509621 0.196206 Vertex 37380 0.423082 0.207033 0.475554 Vertex 37381 0.526362 0.598603 0.432265 Vertex 37382 0.532273 0.603875 0.538773 Vertex 37383 0.353556 0.0921566 0.454321 Vertex 37384 0.413393 0.253099 0.22313 Vertex 37385 0.426672 0.178645 0.49148 Vertex 37386 0.401873 0.181926 0.55718 Vertex 37387 0.397455 0.181476 0.557204 Vertex 37388 0.391722 0.349792 0.291815 Vertex 37389 0.370181 0.195714 0.554657 Vertex 37390 0.435301 0.462128 0.411045 Vertex 37391 0.490861 0.166705 0.696931 Vertex 37392 0.401417 0.519234 0.524096 Vertex 37393 0.444327 0.105678 0.73271 Vertex 37394 0.494901 0.308144 0.611177 Vertex 37395 0.492845 0.0891124 0.72459 Vertex 37396 0.374872 0.324982 0.258198 Vertex 37397 0.37688 0.189282 0.473529 Vertex 37398 0.554494 0.0117743 0.771527 Vertex 37399 0.520937 0.553183 0.574694 Vertex 37400 0.519983 0.550529 0.576322 Vertex 37401 0.353396 0.899125 0.286556 Vertex 37402 0.471838 0.0598959 0.689676 Vertex 37403 0.45388 0.127438 0.805855 Vertex 37404 0.509997 0.275185 0.496627 Vertex 37405 0.509293 0.273443 0.499203 Vertex 37406 0.410668 0.372239 0.358244 Vertex 37407 0.51133 0.0786115 0.685945 Vertex 37408 0.416804 0.822338 0.422481 Vertex 37409 0.539759 0.435233 0.394319 Vertex 37410 0.412208 0.443199 0.388319 Vertex 37411 0.354847 0.405874 0.458112 Vertex 37412 0.396075 0.859307 0.33601 Vertex 37413 0.51351 0.120609 0.791789 Vertex 37414 0.408619 0.325427 0.210213 Vertex 37415 0.478436 0.322317 0.428185 Vertex 37416 0.382921 0.431039 0.586628 Vertex 37417 0.520664 0.463442 0.409019 Vertex 37418 0.493971 0.0538015 0.687277 Vertex 37419 0.483109 0.726734 0.499363 Vertex 37420 0.551012 0.494886 0.401645 Vertex 37421 0.460928 0.204545 0.626819 Vertex 37422 0.488131 0.729062 0.513216 Vertex 37423 0.531408 0.602358 0.43634 Vertex 37424 0.47429 0.335957 0.421901 Vertex 37425 0.474325 0.339398 0.419816 Vertex 37426 0.49066 0.635217 0.538856 Vertex 37427 0.490388 0.631456 0.540366 Vertex 37428 0.525189 0.388142 0.438046 Vertex 37429 0.485229 0.457336 0.382562 Vertex 37430 0.428223 0.261355 0.729257 Vertex 37431 0.478684 0.5316 0.593089 Vertex 37432 0.441081 0.143163 0.607576 Vertex 37433 0.472169 0.224279 0.479813 Vertex 37434 0.359177 0.327286 0.555895 Vertex 37435 0.423307 0.122054 0.691797 Vertex 37436 0.423627 0.119934 0.691423 Vertex 37437 0.423284 0.120556 0.689457 Vertex 37438 0.418552 0.457721 0.600398 Vertex 37439 0.44361 0.258891 0.440889 Vertex 37440 0.492466 0.269842 0.458663 Vertex 37441 0.400428 0.328341 0.233223 Vertex 37442 0.382785 0.219476 0.619955 Vertex 37443 0.382637 0.222485 0.622578 Vertex 37444 0.402543 0.346221 0.6283 Vertex 37445 0.496263 0.0498037 0.73303 Vertex 37446 0.4654 0.590164 0.433799 Vertex 37447 0.406765 0.167451 0.620861 Vertex 37448 0.615735 0.533922 0.242995 Vertex 37449 0.511603 0.045261 0.766387 Vertex 37450 0.613911 0.49199 0.228407 Vertex 37451 0.500409 0.0648768 0.689706 Vertex 37452 0.417124 0.253709 0.446053 Vertex 37453 0.391183 0.453321 0.590359 Vertex 37454 0.444611 0.376095 0.414882 Vertex 37455 0.443978 0.377783 0.415291 Vertex 37456 0.491856 0.400638 0.408788 Vertex 37457 0.480668 0.122149 0.810244 Vertex 37458 0.440886 0.277648 0.432686 Vertex 37459 0.507919 0.34525 0.450928 Vertex 37460 0.522133 0.0936551 0.712715 Vertex 37461 0.395418 0.182317 0.618545 Vertex 37462 0.37152 0.375082 0.232162 Vertex 37463 0.399001 0.481122 0.428072 Vertex 37464 0.470849 0.215697 0.718863 Vertex 37465 0.555549 0.399152 0.459693 Vertex 37466 0.484033 0.57204 0.404968 Vertex 37467 0.438031 0.502248 0.434238 Vertex 37468 0.413867 0.146533 0.675882 Vertex 37469 0.3729 0.372133 0.541331 Vertex 37470 0.41623 0.374395 0.428321 Vertex 37471 0.417983 0.378162 0.425229 Vertex 37472 0.492656 0.191255 0.781116 Vertex 37473 0.386101 0.8661 0.327944 Vertex 37474 0.522933 0.152846 0.444354 Vertex 37475 0.55925 0.40004 0.439361 Vertex 37476 0.531911 0.131602 0.438887 Vertex 37477 0.429112 0.406585 0.393893 Vertex 37478 0.529205 0.428487 0.580006 Vertex 37479 0.397609 0.33328 0.250446 Vertex 37480 0.59468 0.470147 0.408054 Vertex 37481 0.372473 0.319924 0.478616 Vertex 37482 0.396016 0.387271 0.239625 Vertex 37483 0.397958 0.385861 0.240928 Vertex 37484 0.465619 0.196626 0.677387 Vertex 37485 0.48405 0.635259 0.533359 Vertex 37486 0.488303 0.638783 0.535426 Vertex 37487 0.492709 0.640352 0.539318 Vertex 37488 0.358365 0.313415 0.203414 Vertex 37489 0.462433 0.213151 0.598663 Vertex 37490 0.538166 0.119158 0.441256 Vertex 37491 0.550941 0.456957 0.366654 Vertex 37492 0.551604 0.455512 0.368585 Vertex 37493 0.401275 0.184361 0.580042 Vertex 37494 0.46094 0.64066 0.50409 Vertex 37495 0.552546 0.544109 0.534378 Vertex 37496 0.55357 0.540727 0.536445 Vertex 37497 0.485436 0.0874836 0.723483 Vertex 37498 0.40975 0.263624 0.71435 Vertex 37499 0.393801 0.319759 0.449506 Vertex 37500 0.448633 0.821355 0.375426 Vertex 37501 0.501102 0.24861 0.530339 Vertex 37502 0.502476 0.251725 0.532347 Vertex 37503 0.544331 0.608459 0.511611 Vertex 37504 0.426221 0.417252 0.616804 Vertex 37505 0.427394 0.414474 0.620861 Vertex 37506 0.423533 0.199582 0.478166 Vertex 37507 0.364756 0.0922988 0.468441 Vertex 37508 0.646627 0.462892 0.19302 Vertex 37509 0.45237 0.609187 0.455956 Vertex 37510 0.582941 0.492842 0.411276 Vertex 37511 0.586477 0.487873 0.412081 Vertex 37512 0.58518 0.490236 0.410541 Vertex 37513 0.440756 0.165562 0.570785 Vertex 37514 0.385444 0.404358 0.586278 Vertex 37515 0.443871 0.498309 0.427462 Vertex 37516 0.393493 0.210515 0.475412 Vertex 37517 0.590332 0.506992 0.270399 Vertex 37518 0.453377 0.164609 0.800436 Vertex 37519 0.676116 0.451585 0.192338 Vertex 37520 0.522944 0.357 0.536569 Vertex 37521 0.516838 0.108586 0.705371 Vertex 37522 0.508925 0.507454 0.598769 Vertex 37523 0.465927 0.198232 0.798404 Vertex 37524 0.503465 0.0756442 0.770983 Vertex 37525 0.536371 0.562392 0.435689 Vertex 37526 0.337855 0.10293 0.45582 Vertex 37527 0.350038 0.183366 0.482673 Vertex 37528 0.590516 0.437649 0.199659 Vertex 37529 0.320691 0.245619 0.219766 Vertex 37530 0.470085 0.5074 0.406395 Vertex 37531 0.574359 0.409197 0.434931 Vertex 37532 0.493704 0.420053 0.39025 Vertex 37533 0.399463 0.354294 0.281534 Vertex 37534 0.526972 0.397227 0.505233 Vertex 37535 0.524336 0.175257 0.451739 Vertex 37536 0.53094 0.693686 0.48047 Vertex 37537 0.432867 0.161997 0.573859 Vertex 37538 0.375192 0.343562 0.421954 Vertex 37539 0.508694 0.162204 0.731786 Vertex 37540 0.592559 0.522521 0.217071 Vertex 37541 0.46389 0.171917 0.800477 Vertex 37542 0.447318 0.843754 0.387336 Vertex 37543 0.440098 0.121101 0.725005 Vertex 37544 0.438931 0.123576 0.727842 Vertex 37545 0.506148 0.302352 0.459036 Vertex 37546 0.511194 0.158479 0.459984 Vertex 37547 0.492058 0.175897 0.509544 Vertex 37548 0.556188 0.557388 0.51372 Vertex 37549 0.517821 0.118175 0.710186 Vertex 37550 0.364087 0.36759 0.354122 Vertex 37551 0.502221 0.318456 0.60073 Vertex 37552 0.412428 0.872171 0.342128 Vertex 37553 0.520457 0.0740984 0.650332 Vertex 37554 0.412824 0.166024 0.59874 Vertex 37555 0.404396 0.245145 0.741606 Vertex 37556 0.416206 0.496959 0.441256 Vertex 37557 0.546055 0.0542397 0.796936 Vertex 37558 0.660498 0.426124 0.206405 Vertex 37559 0.514753 0.72064 0.497166 Vertex 37560 0.479531 0.620985 0.424495 Vertex 37561 0.568721 0.424756 0.482667 Vertex 37562 0.381215 0.864661 0.356449 Vertex 37563 0.587211 0.500814 0.299858 Vertex 37564 0.430385 0.796308 0.428943 Vertex 37565 0.361913 0.322957 0.211706 Vertex 37566 0.511727 0.0897935 0.645961 Vertex 37567 0.544207 0.057509 0.787252 Vertex 37568 0.530413 0.094958 0.774862 Vertex 37569 0.421483 0.455524 0.60166 Vertex 37570 0.350003 0.927761 0.322092 Vertex 37571 0.496399 0.180617 0.781098 Vertex 37572 0.557432 0.412182 0.503397 Vertex 37573 0.560784 0.413805 0.497166 Vertex 37574 0.478293 0.657173 0.520803 Vertex 37575 0.429893 0.102604 0.677108 Vertex 37576 0.46537 0.788691 0.384635 Vertex 37577 0.358756 0.239104 0.499405 Vertex 37578 0.529151 0.401035 0.476277 Vertex 37579 0.36462 0.370409 0.3396 Vertex 37580 0.629552 0.458491 0.209532 Vertex 37581 0.515488 0.110653 0.687775 Vertex 37582 0.515044 0.114438 0.689895 Vertex 37583 0.514753 0.112353 0.689889 Vertex 37584 0.51759 0.525802 0.403132 Vertex 37585 0.359337 0.231541 0.502479 Vertex 37586 0.373498 0.347589 0.28151 Vertex 37587 0.533262 0.4028 0.446278 Vertex 37588 0.448354 0.240247 0.662912 Vertex 37589 0.422893 0.248023 0.204421 Vertex 37590 0.490844 0.521538 0.387609 Vertex 37591 0.420251 0.395296 0.376498 Vertex 37592 0.360912 0.393075 0.508099 Vertex 37593 0.433494 0.517641 0.460179 Vertex 37594 0.450836 0.114752 0.751971 Vertex 37595 0.482493 0.129831 0.80303 Vertex 37596 0.412884 0.528088 0.557992 Vertex 37597 0.49679 0.422617 0.394437 Vertex 37598 0.435153 0.545128 0.49992 Vertex 37599 0.430059 0.111008 0.699407 Vertex 37600 0.600875 0.441303 0.335371 Vertex 37601 0.519586 0.386223 0.4806 Vertex 37602 0.563526 0.432117 0.347613 Vertex 37603 0.540055 0.147622 0.456021 Vertex 37604 0.478951 0.753718 0.495596 Vertex 37605 0.576645 0.407829 0.407983 Vertex 37606 0.537935 0.480855 0.402001 Vertex 37607 0.474852 0.788721 0.402084 Vertex 37608 0.649458 0.435665 0.192996 Vertex 37609 0.385183 0.296897 0.192747 Vertex 37610 0.391248 0.237919 0.708498 Vertex 37611 0.492958 0.594979 0.400153 Vertex 37612 0.423515 0.263695 0.691933 Vertex 37613 0.382868 0.333825 0.462015 Vertex 37614 0.360782 0.315589 0.509657 Vertex 37615 0.510187 0.096646 0.693864 Vertex 37616 0.411527 0.831559 0.416363 Vertex 37617 0.504193 0.322264 0.449725 Vertex 37618 0.360806 0.291863 0.19713 Vertex 37619 0.544894 0.157223 0.445603 Vertex 37620 0.360332 0.263529 0.487293 Vertex 37621 0.527463 0.0370166 0.775105 Vertex 37622 0.43693 0.860119 0.383024 Vertex 37623 0.459039 0.235432 0.739622 Vertex 37624 0.497607 0.440072 0.387721 Vertex 37625 0.480396 0.5584 0.401142 Vertex 37626 0.373587 0.384529 0.559324 Vertex 37627 0.382192 0.345759 0.283429 Vertex 37628 0.492111 0.70764 0.520436 Vertex 37629 0.498738 0.347287 0.611171 Vertex 37630 0.487681 0.33485 0.433053 Vertex 37631 0.453821 0.0806252 0.696102 Vertex 37632 0.363702 0.92095 0.339588 Vertex 37633 0.464796 0.291277 0.632795 Vertex 37634 0.553304 0.0379702 0.776805 Vertex 37635 0.55559 0.0357433 0.766416 Vertex 37636 0.386362 0.452213 0.415931 Vertex 37637 0.593223 0.518227 0.222728 Vertex 37638 0.592992 0.516729 0.222242 Vertex 37639 0.555004 0.0154226 0.772291 Vertex 37640 0.482481 0.199114 0.783136 Vertex 37641 0.525367 0.0555427 0.648703 Vertex 37642 0.519776 0.544707 0.407876 Vertex 37643 0.4464 0.248924 0.741689 Vertex 37644 0.529868 0.10723 0.768625 Vertex 37645 0.393315 0.253822 0.648437 Vertex 37646 0.401536 0.881825 0.332498 Vertex 37647 0.50645 0.290151 0.465563 Vertex 37648 0.582805 0.482697 0.306154 Vertex 37649 0.434217 0.098636 0.667099 Vertex 37650 0.433619 0.138199 0.635543 Vertex 37651 0.607792 0.467114 0.21674 Vertex 37652 0.486757 0.259466 0.600824 Vertex 37653 0.510365 0.531991 0.398844 Vertex 37654 0.513604 0.535906 0.401077 Vertex 37655 0.485229 0.157632 0.660472 Vertex 37656 0.386089 0.331675 0.264198 Vertex 37657 0.438695 0.290921 0.427527 Vertex 37658 0.533025 0.0950706 0.783035 Vertex 37659 0.587282 0.496734 0.292485 Vertex 37660 0.494468 0.0431644 0.636467 Vertex 37661 0.598174 0.441209 0.331373 Vertex 37662 0.533475 0.0604941 0.710139 Vertex 37663 0.363791 0.364984 0.364504 Vertex 37664 0.528766 0.701782 0.464035 Vertex 37665 0.593643 0.514519 0.230747 Vertex 37666 0.625928 0.489964 0.245204 Vertex 37667 0.492318 0.616857 0.403132 Vertex 37668 0.462912 0.503456 0.415641 Vertex 37669 0.480153 0.155689 0.797338 Vertex 37670 0.434069 0.232423 0.781975 Vertex 37671 0.421691 0.826827 0.376906 Vertex 37672 0.423414 0.82524 0.37311 Vertex 37673 0.501676 0.0508105 0.678607 Vertex 37674 0.444203 0.17062 0.791469 Vertex 37675 0.495149 0.397174 0.420391 Vertex 37676 0.494522 0.397476 0.418418 Vertex 37677 0.497364 0.24816 0.493002 Vertex 37678 0.363903 0.410008 0.532507 Vertex 37679 0.363068 0.281646 0.487062 Vertex 37680 0.501907 0.199363 0.469099 Vertex 37681 0.357572 0.329484 0.229284 Vertex 37682 0.522062 0.148481 0.743644 Vertex 37683 0.458352 0.136091 0.650877 Vertex 37684 0.49185 0.0315796 0.647791 Vertex 37685 0.553434 0.508923 0.420497 Vertex 37686 0.527049 0.534307 0.415753 Vertex 37687 0.43594 0.376267 0.420716 Vertex 37688 0.405344 0.346446 0.442589 Vertex 37689 0.394962 0.385026 0.237368 Vertex 37690 0.55193 0.462341 0.370759 Vertex 37691 0.515411 0.0239335 0.74372 Vertex 37692 0.503903 0.123795 0.795153 Vertex 37693 0.461402 0.187038 0.646322 Vertex 37694 0.524686 0.338658 0.510646 Vertex 37695 0.5242 0.340393 0.506749 Vertex 37696 0.652609 0.429683 0.195614 Vertex 37697 0.561602 0.511777 0.428688 Vertex 37698 0.472158 0.624432 0.429612 Vertex 37699 0.502138 0.0659133 0.72969 Vertex 37700 0.426672 0.133449 0.693052 Vertex 37701 0.418812 0.408214 0.374502 Vertex 37702 0.396792 0.354708 0.438466 Vertex 37703 0.485638 0.0977062 0.787264 Vertex 37704 0.413677 0.244872 0.194192 Vertex 37705 0.539753 0.62249 0.515852 Vertex 37706 0.591191 0.481311 0.408202 Vertex 37707 0.524336 0.451325 0.408818 Vertex 37708 0.386468 0.248977 0.619416 Vertex 37709 0.518052 0.657558 0.425869 Vertex 37710 0.556834 0.511688 0.426686 Vertex 37711 0.541056 0.437377 0.559348 Vertex 37712 0.518745 0.59001 0.554266 Vertex 37713 0.464464 0.264512 0.621696 Vertex 37714 0.50812 0.325539 0.45386 Vertex 37715 0.661831 0.454085 0.202407 Vertex 37716 0.371052 0.420213 0.362325 Vertex 37717 0.485022 0.679655 0.411524 Vertex 37718 0.45943 0.228686 0.621583 Vertex 37719 0.480029 0.567527 0.412105 Vertex 37720 0.430936 0.215585 0.471189 Vertex 37721 0.439245 0.158028 0.576222 Vertex 37722 0.590818 0.516924 0.358262 Vertex 37723 0.467271 0.226589 0.754133 Vertex 37724 0.367818 0.351178 0.227087 Vertex 37725 0.424705 0.549339 0.522 Vertex 37726 0.376749 0.337793 0.214809 Vertex 37727 0.498046 0.406768 0.415084 Vertex 37728 0.368712 0.406449 0.300226 Vertex 37729 0.367794 0.408243 0.303921 Vertex 37730 0.36902 0.40845 0.302239 Vertex 37731 0.49875 0.41801 0.404003 Vertex 37732 0.422366 0.409996 0.619054 Vertex 37733 0.376749 0.390955 0.571756 Vertex 37734 0.377579 0.392388 0.571756 Vertex 37735 0.462213 0.132662 0.648081 Vertex 37736 0.628463 0.523546 0.240057 Vertex 37737 0.499704 0.482916 0.394165 Vertex 37738 0.582751 0.503716 0.313498 Vertex 37739 0.554258 0.4348 0.364445 Vertex 37740 0.438167 0.154996 0.577975 Vertex 37741 0.439648 0.155499 0.579894 Vertex 37742 0.434981 0.392459 0.421386 Vertex 37743 0.339839 0.93074 0.259667 Vertex 37744 0.463327 0.223569 0.710601 Vertex 37745 0.353035 0.365369 0.420432 Vertex 37746 0.367504 0.203633 0.218759 Vertex 37747 0.505958 0.262877 0.517949 Vertex 37748 0.375411 0.377558 0.512127 Vertex 37749 0.515115 0.170964 0.447019 Vertex 37750 0.338489 0.11169 0.468441 Vertex 37751 0.418925 0.259845 0.225553 Vertex 37752 0.375695 0.328512 0.609051 Vertex 37753 0.459187 0.126348 0.644309 Vertex 37754 0.518425 0.65343 0.528319 Vertex 37755 0.417562 0.172527 0.743756 Vertex 37756 0.418208 0.171112 0.739628 Vertex 37757 0.458909 0.0788543 0.658671 Vertex 37758 0.421104 0.144957 0.695759 Vertex 37759 0.531325 0.133953 0.443323 Vertex 37760 0.392219 0.431448 0.597105 Vertex 37761 0.412623 0.25487 0.196016 Vertex 37762 0.36183 0.887511 0.339623 Vertex 37763 0.360966 0.889027 0.339588 Vertex 37764 0.415661 0.874653 0.399347 Vertex 37765 0.321059 0.929426 0.26357 Vertex 37766 0.37499 0.316673 0.475134 Vertex 37767 0.551699 0.525299 0.551033 Vertex 37768 0.367475 0.238612 0.578472 Vertex 37769 0.430024 0.408901 0.391974 Vertex 37770 0.439867 0.248758 0.660845 Vertex 37771 0.499035 0.19376 0.460635 Vertex 37772 0.595787 0.456448 0.42488 Vertex 37773 0.366497 0.889146 0.35199 Vertex 37774 0.553251 0.0278247 0.726888 Vertex 37775 0.508505 0.506909 0.400941 Vertex 37776 0.474077 0.407159 0.380063 Vertex 37777 0.479602 0.40941 0.379684 Vertex 37778 0.470102 0.0646577 0.653234 Vertex 37779 0.379829 0.870075 0.362574 Vertex 37780 0.352976 0.0954496 0.454404 Vertex 37781 0.521233 0.0865005 0.681888 Vertex 37782 0.430924 0.12832 0.672512 Vertex 37783 0.468243 0.185883 0.692874 Vertex 37784 0.39367 0.85634 0.350343 Vertex 37785 0.318897 0.934193 0.255042 Vertex 37786 0.31908 0.934578 0.252673 Vertex 37787 0.384893 0.205333 0.642182 Vertex 37788 0.382761 0.21748 0.65048 Vertex 37789 0.620289 0.483733 0.226423 Vertex 37790 0.414749 0.37109 0.352019 Vertex 37791 0.396199 0.345268 0.271074 Vertex 37792 0.460028 0.533691 0.581499 Vertex 37793 0.466732 0.533993 0.586882 Vertex 37794 0.582982 0.492588 0.310004 Vertex 37795 0.371786 0.374437 0.548983 Vertex 37796 0.371727 0.376587 0.548948 Vertex 37797 0.374505 0.875375 0.321168 Vertex 37798 0.385841 0.207453 0.47739 Vertex 37799 0.540547 0.151105 0.446231 Vertex 37800 0.426369 0.454914 0.40049 Vertex 37801 0.428496 0.455109 0.40222 Vertex 37802 0.429017 0.453563 0.401551 Vertex 37803 0.424652 0.453173 0.398358 Vertex 37804 0.532794 0.125862 0.435529 Vertex 37805 0.38744 0.198765 0.664973 Vertex 37806 0.410301 0.170934 0.609027 Vertex 37807 0.397437 0.176187 0.609057 Vertex 37808 0.415134 0.162909 0.60285 Vertex 37809 0.513148 0.0476537 0.667916 Vertex 37810 0.459341 0.196395 0.617337 Vertex 37811 0.478513 0.395871 0.392098 Vertex 37812 0.402472 0.889548 0.337775 Vertex 37813 0.521245 0.0583738 0.641945 Vertex 37814 0.325826 0.937356 0.287427 Vertex 37815 0.504679 0.415966 0.600398 Vertex 37816 0.328261 0.932174 0.242942 Vertex 37817 0.366793 0.25166 0.576524 Vertex 37818 0.368896 0.255889 0.583127 Vertex 37819 0.657946 0.423808 0.204616 Vertex 37820 0.509915 0.13159 0.673217 Vertex 37821 0.444747 0.345522 0.640868 Vertex 37822 0.498857 0.367554 0.442683 Vertex 37823 0.48084 0.574634 0.410014 Vertex 37824 0.459513 0.17646 0.482448 Vertex 37825 0.490861 0.0722979 0.699905 Vertex 37826 0.41681 0.442482 0.388183 Vertex 37827 0.611897 0.529243 0.228094 Vertex 37828 0.496233 0.574557 0.573331 Vertex 37829 0.496855 0.572952 0.574717 Vertex 37830 0.480876 0.134415 0.801449 Vertex 37831 0.382791 0.2412 0.222272 Vertex 37832 0.507083 0.358807 0.594446 Vertex 37833 0.315651 0.972951 0.248793 Vertex 37834 0.315734 0.974337 0.246714 Vertex 37835 0.603226 0.441215 0.192996 Vertex 37836 0.447407 0.59736 0.499405 Vertex 37837 0.592423 0.522023 0.306385 Vertex 37838 0.349245 0.160818 0.458106 Vertex 37839 0.483926 0.449939 0.380223 Vertex 37840 0.514747 0.288043 0.517812 Vertex 37841 0.46389 0.313747 0.633908 Vertex 37842 0.314561 0.937623 0.250694 Vertex 37843 0.398492 0.352475 0.223871 Vertex 37844 0.472839 0.167345 0.542705 Vertex 37845 0.592382 0.443471 0.204989 Vertex 37846 0.365875 0.242533 0.232571 Vertex 37847 0.550544 0.565739 0.524002 Vertex 37848 0.551142 0.565442 0.517895 Vertex 37849 0.379646 0.199132 0.477556 Vertex 37850 0.362565 0.351777 0.384837 Vertex 37851 0.478193 0.142031 0.797587 Vertex 37852 0.474065 0.141421 0.798404 Vertex 37853 0.476185 0.141569 0.797954 Vertex 37854 0.478601 0.768223 0.494744 Vertex 37855 0.385195 0.338824 0.619516 Vertex 37856 0.592388 0.49934 0.38765 Vertex 37857 0.355232 0.220797 0.537345 Vertex 37858 0.354291 0.222603 0.535699 Vertex 37859 0.488931 0.704838 0.403239 Vertex 37860 0.458328 0.812577 0.467405 Vertex 37861 0.443119 0.795171 0.455707 Vertex 37862 0.41822 0.264388 0.679477 Vertex 37863 0.416236 0.264595 0.681568 Vertex 37864 0.583356 0.492078 0.415333 Vertex 37865 0.413867 0.28748 0.638966 Vertex 37866 0.360462 0.237487 0.218623 Vertex 37867 0.550366 0.565306 0.461565 Vertex 37868 0.571285 0.531553 0.470182 Vertex 37869 0.458654 0.127278 0.793542 Vertex 37870 0.343624 0.301073 0.218647 Vertex 37871 0.364744 0.130174 0.46606 Vertex 37872 0.439251 0.851205 0.377019 Vertex 37873 0.502517 0.700106 0.522207 Vertex 37874 0.501025 0.698661 0.526181 Vertex 37875 0.553251 0.55824 0.49812 Vertex 37876 0.440892 0.251915 0.706455 Vertex 37877 0.506965 0.600102 0.563512 Vertex 37878 0.467958 0.73778 0.41416 Vertex 37879 0.513972 0.154463 0.725917 Vertex 37880 0.539309 0.585935 0.526116 Vertex 37881 0.364134 0.369539 0.347879 Vertex 37882 0.365402 0.26296 0.574297 Vertex 37883 0.365378 0.264524 0.574504 Vertex 37884 0.333994 0.941745 0.299242 Vertex 37885 0.444593 0.49565 0.424785 Vertex 37886 0.505917 0.0514679 0.633423 Vertex 37887 0.508558 0.444146 0.404121 Vertex 37888 0.487089 0.541882 0.387123 Vertex 37889 0.502707 0.356592 0.446871 Vertex 37890 0.55559 0.514786 0.435067 Vertex 37891 0.454419 0.174185 0.80194 Vertex 37892 0.447632 0.0907707 0.661384 Vertex 37893 0.368766 0.438739 0.43358 Vertex 37894 0.520901 0.559567 0.570956 Vertex 37895 0.544219 0.0600617 0.776887 Vertex 37896 0.366403 0.383439 0.283607 Vertex 37897 0.513421 0.143299 0.70485 Vertex 37898 0.495937 0.0355241 0.672495 Vertex 37899 0.417361 0.537292 0.515805 Vertex 37900 0.523217 0.0272265 0.762253 Vertex 37901 0.384342 0.205522 0.609045 Vertex 37902 0.529246 0.605622 0.540786 Vertex 37903 0.452601 0.179409 0.800981 Vertex 37904 0.315509 0.964648 0.258957 Vertex 37905 0.411853 0.219529 0.764509 Vertex 37906 0.489375 0.215792 0.501063 Vertex 37907 0.542199 0.124459 0.445455 Vertex 37908 0.37425 0.38303 0.540692 Vertex 37909 0.368002 0.345084 0.220276 Vertex 37910 0.362748 0.40177 0.376812 Vertex 37911 0.537935 0.0751823 0.778954 Vertex 37912 0.533576 0.684784 0.463952 Vertex 37913 0.487361 0.0692537 0.731241 Vertex 37914 0.370329 0.286923 0.586367 Vertex 37915 0.494243 0.423399 0.386442 Vertex 37916 0.371478 0.102438 0.469922 Vertex 37917 0.521316 0.693277 0.503367 Vertex 37918 0.633603 0.501685 0.2585 Vertex 37919 0.499745 0.0510534 0.751781 Vertex 37920 0.373255 0.325361 0.476419 Vertex 37921 0.391929 0.282535 0.44706 Vertex 37922 0.506166 0.0755672 0.696043 Vertex 37923 0.461224 0.360672 0.633287 Vertex 37924 0.481267 0.628685 0.421018 Vertex 37925 0.476884 0.227815 0.481471 Vertex 37926 0.37932 0.322821 0.208122 Vertex 37927 0.384324 0.320724 0.206351 Vertex 37928 0.441218 0.303584 0.638581 Vertex 37929 0.369133 0.231582 0.485137 Vertex 37930 0.52436 0.0745012 0.675172 Vertex 37931 0.531639 0.0429748 0.657261 Vertex 37932 0.385681 0.3648 0.226181 Vertex 37933 0.594123 0.521135 0.284993 Vertex 37934 0.418078 0.264429 0.716772 Vertex 37935 0.368896 0.215845 0.23404 Vertex 37936 0.368564 0.21549 0.233442 Vertex 37937 0.558907 0.0103114 0.738201 Vertex 37938 0.491069 0.476964 0.606327 Vertex 37939 0.530638 0.563926 0.430465 Vertex 37940 0.568442 0.499677 0.372689 Vertex 37941 0.592115 0.440877 0.19816 Vertex 37942 0.592666 0.442654 0.198462 Vertex 37943 0.51544 0.169684 0.774767 Vertex 37944 0.422585 0.806975 0.406164 Vertex 37945 0.603818 0.539401 0.262226 Vertex 37946 0.412108 0.846982 0.343799 Vertex 37947 0.415069 0.172107 0.52823 Vertex 37948 0.411403 0.490236 0.586788 Vertex 37949 0.518757 0.288137 0.493002 Vertex 37950 0.429929 0.450537 0.400028 Vertex 37951 0.652295 0.415481 0.216633 Vertex 37952 0.398734 0.298188 0.239619 Vertex 37953 0.445565 0.505387 0.428753 Vertex 37954 0.444315 0.502881 0.430453 Vertex 37955 0.548803 0.58892 0.476099 Vertex 37956 0.443966 0.431661 0.634548 Vertex 37957 0.524431 0.574368 0.426663 Vertex 37958 0.45754 0.193908 0.606575 Vertex 37959 0.457499 0.193624 0.610816 Vertex 37960 0.530235 0.103937 0.762335 Vertex 37961 0.600194 0.50974 0.241384 Vertex 37962 0.492887 0.663984 0.406152 Vertex 37963 0.492289 0.66948 0.405252 Vertex 37964 0.532563 0.582997 0.542824 Vertex 37965 0.522115 0.163021 0.443471 Vertex 37966 0.485365 0.395545 0.401782 Vertex 37967 0.503672 0.377736 0.449352 Vertex 37968 0.345715 0.291792 0.202816 Vertex 37969 0.400061 0.244014 0.733391 Vertex 37970 0.51136 0.106057 0.705869 Vertex 37971 0.526078 0.400248 0.470479 Vertex 37972 0.382453 0.330289 0.463898 Vertex 37973 0.457487 0.101734 0.75405 Vertex 37974 0.360042 0.410914 0.430536 Vertex 37975 0.503228 0.718875 0.418637 Vertex 37976 0.456409 0.645315 0.488584 Vertex 37977 0.501279 0.702872 0.414231 Vertex 37978 0.494107 0.702759 0.405702 Vertex 37979 0.495801 0.70488 0.407059 Vertex 37980 0.49557 0.701729 0.406869 Vertex 37981 0.36648 0.173913 0.457295 Vertex 37982 0.480088 0.808882 0.442642 Vertex 37983 0.428513 0.262214 0.712644 Vertex 37984 0.383004 0.231612 0.681568 Vertex 37985 0.358833 0.384114 0.362396 Vertex 37986 0.378585 0.386513 0.586367 Vertex 37987 0.37704 0.387455 0.582233 Vertex 37988 0.36831 0.908601 0.29499 Vertex 37989 0.576059 0.509752 0.370634 Vertex 37990 0.576047 0.507856 0.374851 Vertex 37991 0.358182 0.385897 0.391417 Vertex 37992 0.371455 0.208649 0.225363 Vertex 37993 0.450836 0.0898527 0.662177 Vertex 37994 0.61394 0.470325 0.324473 Vertex 37995 0.34514 0.0964802 0.446462 Vertex 37996 0.598263 0.516071 0.265963 Vertex 37997 0.608337 0.50685 0.37141 Vertex 37998 0.318127 0.978098 0.239678 Vertex 37999 0.4966 0.284246 0.454079 Vertex 38000 0.410467 0.249072 0.745545 Vertex 38001 0.518147 0.379495 0.544802 Vertex 38002 0.554939 0.520093 0.544826 Vertex 38003 0.601532 0.471053 0.190935 Vertex 38004 0.601556 0.470946 0.192723 Vertex 38005 0.575739 0.523605 0.472249 Vertex 38006 0.37733 0.232251 0.479499 Vertex 38007 0.43953 0.512814 0.439118 Vertex 38008 0.504081 0.275907 0.470058 Vertex 38009 0.502085 0.273011 0.467801 Vertex 38010 0.603712 0.476176 0.189863 Vertex 38011 0.375512 0.244203 0.236225 Vertex 38012 0.375204 0.24675 0.236492 Vertex 38013 0.461295 0.216319 0.628679 Vertex 38014 0.52606 0.39837 0.495022 Vertex 38015 0.505182 0.562226 0.395894 Vertex 38016 0.489635 0.721943 0.515775 Vertex 38017 0.580684 0.452557 0.481696 Vertex 38018 0.549442 0.00761654 0.764633 Vertex 38019 0.553606 0.0265987 0.779778 Vertex 38020 0.427033 0.44048 0.609762 Vertex 38021 0.443978 0.541699 0.447303 Vertex 38022 0.448751 0.105163 0.727244 Vertex 38023 0.355842 0.906694 0.337177 Vertex 38024 0.491785 0.231529 0.501028 Vertex 38025 0.386018 0.415072 0.584271 Vertex 38026 0.392747 0.465847 0.417192 Vertex 38027 0.608112 0.447735 0.194654 Vertex 38028 0.361487 0.255942 0.220903 Vertex 38029 0.355682 0.892006 0.310655 Vertex 38030 0.362825 0.330218 0.250096 Vertex 38031 0.363459 0.143121 0.473623 Vertex 38032 0.396199 0.256605 0.205807 Vertex 38033 0.492591 0.227596 0.542824 Vertex 38034 0.582787 0.408279 0.374733 Vertex 38035 0.508025 0.269463 0.487405 Vertex 38036 0.526403 0.120325 0.735144 Vertex 38037 0.429692 0.188548 0.482584 Vertex 38038 0.410485 0.175708 0.594357 Vertex 38039 0.375719 0.180061 0.499535 Vertex 38040 0.366977 0.361229 0.356195 Vertex 38041 0.446927 0.797149 0.384209 Vertex 38042 0.476345 0.61636 0.538856 Vertex 38043 0.531491 0.612362 0.536623 Vertex 38044 0.519953 0.0320416 0.764414 Vertex 38045 0.4861 0.0818453 0.645967 Vertex 38046 0.32511 0.268563 0.223622 Vertex 38047 0.486763 0.0956925 0.650782 Vertex 38048 0.402128 0.2619 0.676812 Vertex 38049 0.392397 0.486233 0.447469 Vertex 38050 0.53113 0.65494 0.442464 Vertex 38051 0.35894 0.18949 0.459954 Vertex 38052 0.475024 0.703121 0.422973 Vertex 38053 0.421323 0.501063 0.443104 Vertex 38054 0.623559 0.522385 0.286663 Vertex 38055 0.532409 0.0825856 0.716387 Vertex 38056 0.399362 0.243771 0.460499 Vertex 38057 0.409105 0.38338 0.283032 Vertex 38058 0.393505 0.354436 0.225203 Vertex 38059 0.38985 0.857803 0.352357 Vertex 38060 0.427607 0.325847 0.647619 Vertex 38061 0.4024 0.292816 0.229959 Vertex 38062 0.453495 0.10081 0.747878 Vertex 38063 0.613301 0.480032 0.381698 Vertex 38064 0.612714 0.476158 0.383066 Vertex 38065 0.534446 0.0572307 0.721937 Vertex 38066 0.360764 0.230818 0.557168 Vertex 38067 0.39617 0.507389 0.493257 Vertex 38068 0.423272 0.264891 0.669119 Vertex 38069 0.651525 0.420462 0.2221 Vertex 38070 0.524265 0.16744 0.442535 Vertex 38071 0.429408 0.795171 0.420497 Vertex 38072 0.487776 0.773079 0.412543 Vertex 38073 0.43533 0.259342 0.733303 Vertex 38074 0.448052 0.829688 0.380851 Vertex 38075 0.518621 0.15958 0.446504 Vertex 38076 0.557059 0.51706 0.439094 Vertex 38077 0.477032 0.214608 0.74789 Vertex 38078 0.517205 0.149186 0.453984 Vertex 38079 0.468882 0.188127 0.682308 Vertex 38080 0.455894 0.237836 0.758267 Vertex 38081 0.365372 0.37539 0.279485 Vertex 38082 0.489428 0.182264 0.718999 Vertex 38083 0.488303 0.183502 0.721428 Vertex 38084 0.553624 0.552638 0.480328 Vertex 38085 0.65175 0.497592 0.227513 Vertex 38086 0.312897 0.96216 0.259531 Vertex 38087 0.490778 0.686709 0.405714 Vertex 38088 0.487172 0.102332 0.806021 Vertex 38089 0.487148 0.101739 0.805879 Vertex 38090 0.439008 0.185758 0.478859 Vertex 38091 0.58313 0.505724 0.315471 Vertex 38092 0.494681 0.27535 0.59871 Vertex 38093 0.497104 0.385494 0.607008 Vertex 38094 0.386018 0.27535 0.196289 Vertex 38095 0.474568 0.223379 0.592485 Vertex 38096 0.352295 0.399466 0.487293 Vertex 38097 0.588769 0.513317 0.302346 Vertex 38098 0.439873 0.779179 0.439225 Vertex 38099 0.434768 0.382752 0.647975 Vertex 38100 0.490316 0.222645 0.497628 Vertex 38101 0.499195 0.432769 0.391636 Vertex 38102 0.435259 0.477858 0.422345 Vertex 38103 0.391378 0.899646 0.326173 Vertex 38104 0.366201 0.436044 0.444152 Vertex 38105 0.461929 0.166569 0.656734 Vertex 38106 0.505212 0.28427 0.469093 Vertex 38107 0.420613 0.222236 0.778871 Vertex 38108 0.51053 0.19328 0.47729 Vertex 38109 0.483748 0.0397944 0.652677 Vertex 38110 0.45253 0.437679 0.629917 Vertex 38111 0.424379 0.859307 0.420527 Vertex 38112 0.40256 0.177828 0.549001 Vertex 38113 0.504934 0.0333742 0.671766 Vertex 38114 0.341924 0.127468 0.466048 Vertex 38115 0.49204 0.228751 0.521704 Vertex 38116 0.50186 0.0248337 0.654804 Vertex 38117 0.47888 0.651641 0.42138 Vertex 38118 0.462681 0.341276 0.412934 Vertex 38119 0.508558 0.405744 0.586207 Vertex 38120 0.515967 0.353601 0.575837 Vertex 38121 0.404414 0.381052 0.261953 Vertex 38122 0.509032 0.533134 0.397103 Vertex 38123 0.531734 0.129345 0.440966 Vertex 38124 0.484654 0.0718123 0.729269 Vertex 38125 0.500249 0.507282 0.393146 Vertex 38126 0.532332 0.409771 0.417927 Vertex 38127 0.537609 0.406993 0.41371 Vertex 38128 0.396928 0.485173 0.437039 Vertex 38129 0.401234 0.300338 0.220222 Vertex 38130 0.516145 0.34448 0.468305 Vertex 38131 0.516554 0.345516 0.464254 Vertex 38132 0.517454 0.567296 0.409682 Vertex 38133 0.349831 0.0958583 0.449264 Vertex 38134 0.523993 0.335809 0.506151 Vertex 38135 0.479395 0.796764 0.413248 Vertex 38136 0.604766 0.470514 0.213014 Vertex 38137 0.364869 0.28838 0.485019 Vertex 38138 0.49172 0.0986834 0.799328 Vertex 38139 0.367871 0.366453 0.331302 Vertex 38140 0.459299 0.0966993 0.754091 Vertex 38141 0.452003 0.425371 0.391381 Vertex 38142 0.320052 0.943765 0.234774 Vertex 38143 0.360989 0.375852 0.354122 Vertex 38144 0.424184 0.162151 0.737561 Vertex 38145 0.424883 0.161629 0.735458 Vertex 38146 0.394577 0.508176 0.526116 Vertex 38147 0.392818 0.503343 0.536504 Vertex 38148 0.513071 0.702001 0.505162 Vertex 38149 0.443083 0.11381 0.736293 Vertex 38150 0.493527 0.507726 0.392957 Vertex 38151 0.370098 0.402865 0.536854 Vertex 38152 0.411598 0.821994 0.393869 Vertex 38153 0.439571 0.155091 0.582127 Vertex 38154 0.526362 0.411726 0.424264 Vertex 38155 0.490796 0.361265 0.432402 Vertex 38156 0.485389 0.216811 0.495833 Vertex 38157 0.519136 0.041891 0.658393 Vertex 38158 0.402021 0.260242 0.196366 Vertex 38159 0.505182 0.467517 0.606581 Vertex 38160 0.447774 0.800086 0.461044 Vertex 38161 0.432221 0.167943 0.530339 Vertex 38162 0.551693 0.457431 0.349011 Vertex 38163 0.493988 0.324692 0.43894 Vertex 38164 0.582349 0.497302 0.480553 Vertex 38165 0.582668 0.497527 0.478439 Vertex 38166 0.362689 0.245577 0.565632 Vertex 38167 0.363779 0.2437 0.567184 Vertex 38168 0.486715 0.368573 0.628205 Vertex 38169 0.457499 0.275475 0.434806 Vertex 38170 0.367611 0.29544 0.48294 Vertex 38171 0.508351 0.273976 0.507489 Vertex 38172 0.500249 0.702173 0.526341 Vertex 38173 0.476481 0.507779 0.404938 Vertex 38174 0.419831 0.171888 0.7562 Vertex 38175 0.644531 0.424732 0.199795 Vertex 38176 0.538971 0.0678678 0.795111 Vertex 38177 0.486852 0.174511 0.522 Vertex 38178 0.594324 0.513453 0.266413 Vertex 38179 0.410005 0.456945 0.599752 Vertex 38180 0.456747 0.512322 0.591484 Vertex 38181 0.47654 0.388438 0.400123 Vertex 38182 0.661831 0.479984 0.191604 Vertex 38183 0.657726 0.482205 0.191284 Vertex 38184 0.368795 0.202093 0.559893 Vertex 38185 0.515352 0.357048 0.575837 Vertex 38186 0.543431 0.410281 0.530333 Vertex 38187 0.544355 0.416357 0.536504 Vertex 38188 0.381298 0.33755 0.270263 Vertex 38189 0.492946 0.456418 0.385814 Vertex 38190 0.377508 0.460771 0.563494 Vertex 38191 0.491394 0.494092 0.391204 Vertex 38192 0.494427 0.492049 0.392643 Vertex 38193 0.501931 0.255723 0.561362 Vertex 38194 0.494794 0.647833 0.540253 Vertex 38195 0.551237 0.576897 0.467517 Vertex 38196 0.553659 0.437323 0.360447 Vertex 38197 0.4023 0.287835 0.231819 Vertex 38198 0.410301 0.825672 0.387692 Vertex 38199 0.448331 0.215289 0.469264 Vertex 38200 0.525461 0.615471 0.538625 Vertex 38201 0.647806 0.425413 0.206239 Vertex 38202 0.455426 0.12726 0.802538 Vertex 38203 0.477287 0.0977891 0.774957 Vertex 38204 0.403022 0.358576 0.281563 Vertex 38205 0.43969 0.256108 0.723027 Vertex 38206 0.379965 0.390321 0.244215 Vertex 38207 0.38195 0.391056 0.248651 Vertex 38208 0.504016 0.502935 0.397908 Vertex 38209 0.453383 0.251085 0.626949 Vertex 38210 0.464565 0.602181 0.536664 Vertex 38211 0.384733 0.207139 0.64836 Vertex 38212 0.499905 0.359837 0.445467 Vertex 38213 0.396395 0.236397 0.720966 Vertex 38214 0.521174 0.393004 0.540692 Vertex 38215 0.516785 0.361679 0.4667 Vertex 38216 0.518117 0.740493 0.470206 Vertex 38217 0.517016 0.1685 0.776887 Vertex 38218 0.512935 0.051462 0.631385 Vertex 38219 0.516957 0.398571 0.56347 Vertex 38220 0.441123 0.458219 0.614654 Vertex 38221 0.357288 0.133408 0.455453 Vertex 38222 0.354605 0.310537 0.536723 Vertex 38223 0.482291 0.387792 0.406188 Vertex 38224 0.391455 0.862944 0.331752 Vertex 38225 0.354764 0.226998 0.523469 Vertex 38226 0.461746 0.215372 0.671203 Vertex 38227 0.605554 0.503041 0.211498 Vertex 38228 0.42493 0.255356 0.442642 Vertex 38229 0.603487 0.531606 0.256593 Vertex 38230 0.356079 0.169969 0.451686 Vertex 38231 0.474775 0.725639 0.409647 Vertex 38232 0.419286 0.148345 0.645618 Vertex 38233 0.364957 0.347169 0.568404 Vertex 38234 0.478228 0.530682 0.401308 Vertex 38235 0.528103 0.392933 0.435801 Vertex 38236 0.529909 0.395024 0.43698 Vertex 38237 0.607573 0.493145 0.193079 Vertex 38238 0.441721 0.227229 0.463816 Vertex 38239 0.4378 0.226808 0.464088 Vertex 38240 0.475942 0.781424 0.400804 Vertex 38241 0.396703 0.308891 0.239755 Vertex 38242 0.520664 0.140183 0.708445 Vertex 38243 0.586015 0.493334 0.298526 Vertex 38244 0.420784 0.189146 0.48166 Vertex 38245 0.362665 0.365718 0.465503 Vertex 38246 0.505917 0.13666 0.790895 Vertex 38247 0.519888 0.114272 0.710423 Vertex 38248 0.515985 0.344841 0.472711 Vertex 38249 0.426032 0.267598 0.646571 Vertex 38250 0.534203 0.398897 0.423968 Vertex 38251 0.503145 0.0265987 0.66444 Vertex 38252 0.508896 0.0334867 0.737525 Vertex 38253 0.326051 0.952281 0.282926 Vertex 38254 0.408169 0.336863 0.212091 Vertex 38255 0.52009 0.0876969 0.660951 Vertex 38256 0.37056 0.154463 0.468364 Vertex 38257 0.387647 0.490059 0.470413 Vertex 38258 0.536099 0.125276 0.449453 Vertex 38259 0.428211 0.403884 0.387188 Vertex 38260 0.373391 0.359802 0.509639 Vertex 38261 0.449296 0.753244 0.440753 Vertex 38262 0.356405 0.256351 0.546934 Vertex 38263 0.597203 0.517546 0.32596 Vertex 38264 0.583675 0.462459 0.480559 Vertex 38265 0.508096 0.567658 0.3984 Vertex 38266 0.382192 0.221206 0.613937 Vertex 38267 0.519041 0.136553 0.703902 Vertex 38268 0.455325 0.190899 0.800661 Vertex 38269 0.4724 0.195785 0.575908 Vertex 38270 0.385343 0.189744 0.480061 Vertex 38271 0.351714 0.0969718 0.45688 Vertex 38272 0.565967 0.497498 0.358232 Vertex 38273 0.402164 0.265667 0.650758 Vertex 38274 0.555916 0.151514 0.435108 Vertex 38275 0.357051 0.201211 0.472723 Vertex 38276 0.569177 0.517753 0.441161 Vertex 38277 0.488368 0.62461 0.541811 Vertex 38278 0.500616 0.168446 0.721179 Vertex 38279 0.385053 0.172865 0.528266 Vertex 38280 0.684586 0.450567 0.20461 Vertex 38281 0.438114 0.219926 0.467381 Vertex 38282 0.363275 0.444377 0.530842 Vertex 38283 0.449035 0.0859852 0.696262 Vertex 38284 0.674452 0.454298 0.21093 Vertex 38285 0.537011 0.0492351 0.7856 Vertex 38286 0.436959 0.529788 0.472392 Vertex 38287 0.414696 0.264251 0.716796 Vertex 38288 0.410207 0.486807 0.428984 Vertex 38289 0.409745 0.263327 0.711466 Vertex 38290 0.496671 0.427966 0.391174 Vertex 38291 0.50748 0.265288 0.524108 Vertex 38292 0.459702 0.0923462 0.725828 Vertex 38293 0.517276 0.639523 0.427356 Vertex 38294 0.506764 0.384256 0.448985 Vertex 38295 0.655452 0.417299 0.207897 Vertex 38296 0.510341 0.574652 0.40132 Vertex 38297 0.493692 0.599285 0.401172 Vertex 38298 0.552617 0.0422167 0.774737 Vertex 38299 0.458103 0.385317 0.400094 Vertex 38300 0.638578 0.508241 0.252376 Vertex 38301 0.516281 0.348377 0.575837 Vertex 38302 0.641895 0.430649 0.196502 Vertex 38303 0.557568 0.507033 0.417382 Vertex 38304 0.520392 0.640352 0.532815 Vertex 38305 0.62848 0.511641 0.201045 Vertex 38306 0.615563 0.541195 0.267171 Vertex 38307 0.615054 0.51568 0.320831 Vertex 38308 0.435988 0.788827 0.439077 Vertex 38309 0.46033 0.819945 0.453848 Vertex 38310 0.533066 0.0970014 0.722002 Vertex 38311 0.374256 0.0841373 0.466878 Vertex 38312 0.447128 0.783846 0.458574 Vertex 38313 0.312477 0.941372 0.255474 Vertex 38314 0.645538 0.459687 0.189999 Vertex 38315 0.485176 0.0519832 0.683671 Vertex 38316 0.371638 0.370919 0.559301 Vertex 38317 0.334977 0.28456 0.217231 Vertex 38318 0.471784 0.616111 0.430062 Vertex 38319 0.454242 0.179765 0.479534 Vertex 38320 0.528535 0.530274 0.417015 Vertex 38321 0.364774 0.34153 0.225393 Vertex 38322 0.423994 0.184402 0.776805 Vertex 38323 0.445855 0.764847 0.42443 Vertex 38324 0.445855 0.762868 0.42652 Vertex 38325 0.525734 0.11147 0.794655 Vertex 38326 0.542696 0.608927 0.517949 Vertex 38327 0.428306 0.166758 0.563494 Vertex 38328 0.498413 0.37507 0.443975 Vertex 38329 0.509032 0.271732 0.513815 Vertex 38330 0.508179 0.269623 0.511617 Vertex 38331 0.654025 0.413852 0.218185 Vertex 38332 0.366847 0.20586 0.225565 Vertex 38333 0.505141 0.151377 0.683908 Vertex 38334 0.493544 0.550648 0.378754 Vertex 38335 0.502434 0.39959 0.594387 Vertex 38336 0.412125 0.530771 0.526217 Vertex 38337 0.476363 0.553834 0.414225 Vertex 38338 0.474361 0.147107 0.799328 Vertex 38339 0.436776 0.15396 0.584205 Vertex 38340 0.362464 0.216307 0.558933 Vertex 38341 0.408222 0.862387 0.41631 Vertex 38342 0.461195 0.195146 0.654531 Vertex 38343 0.502108 0.723287 0.507667 Vertex 38344 0.501783 0.361407 0.60487 Vertex 38345 0.553671 0.410754 0.511671 Vertex 38346 0.388441 0.168594 0.526205 Vertex 38347 0.489813 0.543321 0.586634 Vertex 38348 0.654925 0.445591 0.223545 Vertex 38349 0.423651 0.162518 0.588215 Vertex 38350 0.428774 0.189827 0.785102 Vertex 38351 0.442876 0.166308 0.588328 Vertex 38352 0.499882 0.633192 0.555054 Vertex 38353 0.358756 0.330473 0.534816 Vertex 38354 0.442888 0.251044 0.74792 Vertex 38355 0.378816 0.235651 0.595648 Vertex 38356 0.380125 0.230848 0.594635 Vertex 38357 0.452785 0.482288 0.409143 Vertex 38358 0.494314 0.0286657 0.649189 Vertex 38359 0.366474 0.135901 0.464953 Vertex 38360 0.359526 0.368194 0.46426 Vertex 38361 0.498413 0.172841 0.724312 Vertex 38362 0.391248 0.249237 0.698128 Vertex 38363 0.407334 0.832187 0.383587 Vertex 38364 0.519586 0.182412 0.459445 Vertex 38365 0.52587 0.0852804 0.709458 Vertex 38366 0.500888 0.565478 0.391026 Vertex 38367 0.529613 0.131258 0.794922 Vertex 38368 0.49403 0.177082 0.717211 Vertex 38369 0.404521 0.366139 0.426823 Vertex 38370 0.41074 0.149583 0.651357 Vertex 38371 0.372544 0.359014 0.300101 Vertex 38372 0.392664 0.188791 0.620038 Vertex 38373 0.444143 0.127142 0.74359 Vertex 38374 0.448923 0.760168 0.447576 Vertex 38375 0.650637 0.470662 0.19158 Vertex 38376 0.548015 0.588369 0.493121 Vertex 38377 0.356612 0.412099 0.509823 Vertex 38378 0.495552 0.0563304 0.639168 Vertex 38379 0.355446 0.249534 0.544068 Vertex 38380 0.478767 0.588097 0.425188 Vertex 38381 0.448905 0.28751 0.429132 Vertex 38382 0.509891 0.278886 0.480233 Vertex 38383 0.481658 0.504546 0.397529 Vertex 38384 0.498123 0.299787 0.602826 Vertex 38385 0.602379 0.528183 0.261041 Vertex 38386 0.463428 0.230575 0.774714 Vertex 38387 0.451126 0.138241 0.643817 Vertex 38388 0.516222 0.170389 0.768566 Vertex 38389 0.547796 0.0388408 0.715256 Vertex 38390 0.620272 0.494477 0.329413 Vertex 38391 0.61965 0.499884 0.32824 Vertex 38392 0.392077 0.186807 0.651594 Vertex 38393 0.392527 0.359286 0.368626 Vertex 38394 0.432535 0.408676 0.637693 Vertex 38395 0.512621 0.165343 0.44834 Vertex 38396 0.392083 0.274551 0.228662 Vertex 38397 0.439222 0.478687 0.417944 Vertex 38398 0.511792 0.420835 0.432804 Vertex 38399 0.411646 0.238979 0.217314 Vertex 38400 0.469184 0.581214 0.557121 Vertex 38401 0.40625 0.525364 0.539335 Vertex 38402 0.487568 0.397067 0.404583 Vertex 38403 0.491649 0.380768 0.43316 Vertex 38404 0.476149 0.559443 0.41843 Vertex 38405 0.349156 0.131667 0.471379 Vertex 38406 0.454419 0.132188 0.644226 Vertex 38407 0.366035 0.214839 0.229171 Vertex 38408 0.488439 0.476792 0.388941 Vertex 38409 0.51624 0.54437 0.406247 Vertex 38410 0.529134 0.100431 0.794543 Vertex 38411 0.380949 0.0731153 0.474944 Vertex 38412 0.380688 0.0734173 0.475975 Vertex 38413 0.525071 0.582257 0.551341 Vertex 38414 0.620751 0.48878 0.322068 Vertex 38415 0.362517 0.189022 0.513815 Vertex 38416 0.368422 0.895726 0.353352 Vertex 38417 0.402335 0.511647 0.488312 Vertex 38418 0.571925 0.411311 0.45152 Vertex 38419 0.39216 0.410618 0.289073 Vertex 38420 0.420559 0.151336 0.627737 Vertex 38421 0.624169 0.529107 0.285348 Vertex 38422 0.364365 0.881742 0.329401 Vertex 38423 0.417083 0.372115 0.430329 Vertex 38424 0.429307 0.251399 0.758119 Vertex 38425 0.540085 0.650859 0.493553 Vertex 38426 0.451541 0.501815 0.593374 Vertex 38427 0.41116 0.412845 0.308494 Vertex 38428 0.443285 0.573497 0.485469 Vertex 38429 0.445204 0.157241 0.785475 Vertex 38430 0.618862 0.45672 0.208495 Vertex 38431 0.402975 0.322092 0.201264 Vertex 38432 0.571149 0.534864 0.485457 Vertex 38433 0.458873 0.199837 0.799832 Vertex 38434 0.471915 0.289221 0.629259 Vertex 38435 0.513669 0.284288 0.532394 Vertex 38436 0.536602 0.610395 0.530517 Vertex 38437 0.336582 0.286408 0.210355 Vertex 38438 0.401885 0.246951 0.731324 Vertex 38439 0.659681 0.443969 0.211143 Vertex 38440 0.350737 0.191284 0.47248 Vertex 38441 0.552001 0.0514087 0.726746 Vertex 38442 0.430071 0.211913 0.472889 Vertex 38443 0.543946 0.140006 0.447416 Vertex 38444 0.453993 0.459492 0.625836 Vertex 38445 0.609415 0.468524 0.185379 Vertex 38446 0.355001 0.250771 0.538139 Vertex 38447 0.435668 0.294427 0.639653 Vertex 38448 0.528091 0.0721084 0.795331 Vertex 38449 0.449877 0.595749 0.509361 Vertex 38450 0.516856 0.123819 0.70989 Vertex 38451 0.48395 0.710334 0.503586 Vertex 38452 0.564539 0.547361 0.496929 Vertex 38453 0.372106 0.164567 0.464354 Vertex 38454 0.532379 0.059351 0.720403 Vertex 38455 0.395542 0.356864 0.425354 Vertex 38456 0.43167 0.495881 0.438313 Vertex 38457 0.453306 0.811908 0.470372 Vertex 38458 0.483032 0.208312 0.760334 Vertex 38459 0.536507 0.0557382 0.79539 Vertex 38460 0.520919 0.729417 0.46192 Vertex 38461 0.556378 0.00704205 0.735974 Vertex 38462 0.437759 0.805269 0.387964 Vertex 38463 0.389069 0.254538 0.208691 Vertex 38464 0.463913 0.230208 0.611207 Vertex 38465 0.462788 0.231854 0.613232 Vertex 38466 0.464843 0.234016 0.611201 Vertex 38467 0.511928 0.369177 0.580006 Vertex 38468 0.519953 0.624112 0.538856 Vertex 38469 0.520581 0.0748861 0.787122 Vertex 38470 0.39492 0.363095 0.228899 Vertex 38471 0.473822 0.551406 0.418365 Vertex 38472 0.503032 0.748003 0.490841 Vertex 38473 0.496494 0.749548 0.494963 Vertex 38474 0.444848 0.578449 0.515882 Vertex 38475 0.442082 0.248515 0.687775 Vertex 38476 0.405877 0.246691 0.215324 Vertex 38477 0.538373 0.646826 0.503811 Vertex 38478 0.535216 0.649799 0.508917 Vertex 38479 0.437759 0.833342 0.450845 Vertex 38480 0.379877 0.487702 0.490918 Vertex 38481 0.381742 0.490645 0.486789 Vertex 38482 0.378242 0.340914 0.397719 Vertex 38483 0.524727 0.0594635 0.669101 Vertex 38484 0.41986 0.388787 0.388195 Vertex 38485 0.544953 0.6223 0.469217 Vertex 38486 0.301289 0.968711 0.221827 Vertex 38487 0.693961 0.460013 0.213103 Vertex 38488 0.475841 0.0520602 0.674858 Vertex 38489 0.470369 0.17553 0.557257 Vertex 38490 0.37473 0.351084 0.492985 Vertex 38491 0.476457 0.328412 0.425123 Vertex 38492 0.474053 0.322738 0.424975 Vertex 38493 0.62286 0.491374 0.347648 Vertex 38494 0.621794 0.497462 0.348756 Vertex 38495 0.345371 0.279212 0.197154 Vertex 38496 0.377348 0.91132 0.349473 Vertex 38497 0.493065 0.752083 0.41265 Vertex 38498 0.400896 0.336129 0.20355 Vertex 38499 0.365372 0.364261 0.356195 Vertex 38500 0.454709 0.2956 0.426621 Vertex 38501 0.370258 0.36252 0.333381 Vertex 38502 0.366403 0.150139 0.458094 Vertex 38503 0.538284 0.509355 0.420183 Vertex 38504 0.51865 0.0183306 0.640163 Vertex 38505 0.629434 0.522379 0.258009 Vertex 38506 0.424907 0.836606 0.350331 Vertex 38507 0.337068 0.941075 0.302778 Vertex 38508 0.464269 0.789426 0.483485 Vertex 38509 0.430983 0.821355 0.366856 Vertex 38510 0.496968 0.207915 0.500838 Vertex 38511 0.485176 0.360441 0.628383 Vertex 38512 0.488072 0.357966 0.627305 Vertex 38513 0.461746 0.625072 0.442885 Vertex 38514 0.532498 0.0979845 0.739267 Vertex 38515 0.427128 0.144329 0.707415 Vertex 38516 0.484696 0.188915 0.722565 Vertex 38517 0.361333 0.319622 0.507572 Vertex 38518 0.423266 0.159403 0.602826 Vertex 38519 0.578766 0.506553 0.335353 Vertex 38520 0.577759 0.505114 0.33325 Vertex 38521 0.342339 0.259342 0.227377 Vertex 38522 0.497311 0.105489 0.641667 Vertex 38523 0.496831 0.107117 0.641963 Vertex 38524 0.495321 0.105785 0.643521 Vertex 38525 0.382785 0.273023 0.457845 Vertex 38526 0.445944 0.229989 0.785286 Vertex 38527 0.450534 0.785161 0.395687 Vertex 38528 0.449669 0.382468 0.636882 Vertex 38529 0.537704 0.616312 0.524102 Vertex 38530 0.4429 0.825033 0.368271 Vertex 38531 0.322569 0.926523 0.275635 Vertex 38532 0.494818 0.241799 0.505422 Vertex 38533 0.659112 0.404867 0.220205 Vertex 38534 0.657886 0.407485 0.223468 Vertex 38535 0.557071 0.0382189 0.752024 Vertex 38536 0.477334 0.197527 0.708108 Vertex 38537 0.499882 0.70681 0.412952 Vertex 38538 0.464304 0.215247 0.789135 Vertex 38539 0.588034 0.475104 0.461926 Vertex 38540 0.47503 0.688575 0.424827 Vertex 38541 0.466792 0.793684 0.48166 Vertex 38542 0.41607 0.164638 0.590436 Vertex 38543 0.356393 0.37022 0.399703 Vertex 38544 0.607076 0.445568 0.364078 Vertex 38545 0.382346 0.297395 0.455773 Vertex 38546 0.540304 0.398281 0.473943 Vertex 38547 0.371934 0.309424 0.596702 Vertex 38548 0.602717 0.480565 0.281386 Vertex 38549 0.418386 0.825749 0.381283 Vertex 38550 0.431232 0.468003 0.412217 Vertex 38551 0.455017 0.73444 0.443074 Vertex 38552 0.364193 0.915122 0.290347 Vertex 38553 0.516542 0.512476 0.405726 Vertex 38554 0.520415 0.420787 0.584211 Vertex 38555 0.526658 0.605717 0.433349 Vertex 38556 0.430142 0.397274 0.416298 Vertex 38557 0.470991 0.181909 0.486393 Vertex 38558 0.527256 0.143447 0.774874 Vertex 38559 0.405942 0.362656 0.296092 Vertex 38560 0.481207 0.383332 0.4097 Vertex 38561 0.41607 0.838578 0.349544 Vertex 38562 0.340781 0.939417 0.306142 Vertex 38563 0.492058 0.400348 0.611035 Vertex 38564 0.572292 0.453155 0.321524 Vertex 38565 0.543834 0.56305 0.542717 Vertex 38566 0.410562 0.156625 0.684292 Vertex 38567 0.493136 0.210557 0.506115 Vertex 38568 0.535542 0.603963 0.532394 Vertex 38569 0.534837 0.603881 0.534431 Vertex 38570 0.465204 0.179492 0.483485 Vertex 38571 0.516974 0.327689 0.563452 Vertex 38572 0.587898 0.432212 0.20782 Vertex 38573 0.530697 0.403262 0.458118 Vertex 38574 0.506189 0.616668 0.414853 Vertex 38575 0.385858 0.866574 0.376877 Vertex 38576 0.546558 0.600238 0.493121 Vertex 38577 0.510732 0.113224 0.662201 Vertex 38578 0.512094 0.117618 0.667022 Vertex 38579 0.633526 0.450792 0.196994 Vertex 38580 0.520279 0.347642 0.48721 Vertex 38581 0.503962 0.0628394 0.766298 Vertex 38582 0.505958 0.0594339 0.766469 Vertex 38583 0.384058 0.453232 0.419834 Vertex 38584 0.451588 0.553508 0.439225 Vertex 38585 0.341196 0.124435 0.469679 Vertex 38586 0.459602 0.165538 0.49376 Vertex 38587 0.506189 0.175654 0.746919 Vertex 38588 0.545083 0.602275 0.508455 Vertex 38589 0.515642 0.308458 0.555143 Vertex 38590 0.554583 0.0242355 0.728529 Vertex 38591 0.543401 0.161997 0.431105 Vertex 38592 0.545498 0.162595 0.431081 Vertex 38593 0.50456 0.744088 0.428688 Vertex 38594 0.462853 0.780139 0.478575 Vertex 38595 0.392865 0.182211 0.681568 Vertex 38596 0.391307 0.187896 0.687799 Vertex 38597 0.393451 0.180771 0.683641 Vertex 38598 0.520303 0.129126 0.709482 Vertex 38599 0.457996 0.0775217 0.70225 Vertex 38600 0.456747 0.835693 0.427095 Vertex 38601 0.602444 0.509793 0.229876 Vertex 38602 0.517205 0.101082 0.66704 Vertex 38603 0.455479 0.233975 0.712668 Vertex 38604 0.456356 0.232044 0.710595 Vertex 38605 0.389074 0.365973 0.618326 Vertex 38606 0.43385 0.143749 0.729257 Vertex 38607 0.560968 0.534301 0.515787 Vertex 38608 0.498833 0.405146 0.423257 Vertex 38609 0.607076 0.499156 0.381094 Vertex 38610 0.400328 0.384203 0.617372 Vertex 38611 0.532059 0.133888 0.440735 Vertex 38612 0.438073 0.787844 0.443282 Vertex 38613 0.407867 0.346719 0.235977 Vertex 38614 0.417485 0.441807 0.605136 Vertex 38615 0.411658 0.256907 0.446278 Vertex 38616 0.522388 0.0878627 0.7157 Vertex 38617 0.400511 0.169643 0.632742 Vertex 38618 0.400908 0.376314 0.620316 Vertex 38619 0.474947 0.250286 0.607037 Vertex 38620 0.377875 0.351723 0.456418 Vertex 38621 0.522364 0.351824 0.551015 Vertex 38622 0.585458 0.468009 0.472249 Vertex 38623 0.583812 0.45935 0.475963 Vertex 38624 0.359834 0.260159 0.494009 Vertex 38625 0.502748 0.396167 0.445402 Vertex 38626 0.336386 0.940637 0.25439 Vertex 38627 0.448751 0.179107 0.586278 Vertex 38628 0.456711 0.237771 0.725094 Vertex 38629 0.364596 0.146361 0.473392 Vertex 38630 0.504507 0.265856 0.479037 Vertex 38631 0.518514 0.301392 0.514318 Vertex 38632 0.609001 0.490148 0.186167 Vertex 38633 0.342303 0.295861 0.212393 Vertex 38634 0.41071 0.16298 0.630219 Vertex 38635 0.577326 0.518867 0.455778 Vertex 38636 0.320964 0.252921 0.212387 Vertex 38637 0.502458 0.134551 0.794726 Vertex 38638 0.479502 0.391304 0.398832 Vertex 38639 0.491993 0.738805 0.406543 Vertex 38640 0.487953 0.740872 0.401254 Vertex 38641 0.365899 0.377048 0.300208 Vertex 38642 0.386522 0.432117 0.334311 Vertex 38643 0.437546 0.84809 0.372553 Vertex 38644 0.542371 0.165071 0.436139 Vertex 38645 0.37781 0.868742 0.350248 Vertex 38646 0.404858 0.838862 0.402084 Vertex 38647 0.434158 0.165835 0.566224 Vertex 38648 0.558611 0.401284 0.400929 Vertex 38649 0.352745 0.895299 0.29223 Vertex 38650 0.534263 0.0655283 0.708232 Vertex 38651 0.541097 0.0547017 0.716299 Vertex 38652 0.368031 0.462246 0.484035 Vertex 38653 0.530194 0.478527 0.590442 Vertex 38654 0.39447 0.85191 0.382853 Vertex 38655 0.469581 0.775294 0.485688 Vertex 38656 0.355659 0.291916 0.230149 Vertex 38657 0.51945 0.304608 0.523089 Vertex 38658 0.419973 0.276535 0.643562 Vertex 38659 0.457866 0.554154 0.433337 Vertex 38660 0.487841 0.401148 0.617349 Vertex 38661 0.52757 0.539655 0.414379 Vertex 38662 0.490684 0.629099 0.403552 Vertex 38663 0.594164 0.514821 0.278774 Vertex 38664 0.552422 0.55801 0.483455 Vertex 38665 0.362197 0.252815 0.22319 Vertex 38666 0.534671 0.601583 0.537079 Vertex 38667 0.382026 0.453078 0.423139 Vertex 38668 0.360948 0.338332 0.561314 Vertex 38669 0.453999 0.484332 0.408095 Vertex 38670 0.591659 0.512079 0.288185 Vertex 38671 0.371763 0.263274 0.472907 Vertex 38672 0.39001 0.883454 0.388929 Vertex 38673 0.582112 0.41872 0.420456 Vertex 38674 0.583391 0.421848 0.422499 Vertex 38675 0.460413 0.0745841 0.702232 Vertex 38676 0.543514 0.429381 0.392672 Vertex 38677 0.546505 0.427166 0.389913 Vertex 38678 0.332247 0.264305 0.232737 Vertex 38679 0.474858 0.0786944 0.751207 Vertex 38680 0.379503 0.867546 0.353838 Vertex 38681 0.458695 0.591769 0.43977 Vertex 38682 0.457783 0.588926 0.441434 Vertex 38683 0.410254 0.356722 0.439687 Vertex 38684 0.56798 0.500832 0.388906 Vertex 38685 0.526753 0.150181 0.459859 Vertex 38686 0.365064 0.239252 0.486559 Vertex 38687 0.387007 0.311295 0.196336 Vertex 38688 0.479537 0.664475 0.42228 Vertex 38689 0.460999 0.419751 0.379275 Vertex 38690 0.516495 0.329336 0.478622 Vertex 38691 0.582562 0.480541 0.305734 Vertex 38692 0.409135 0.327269 0.634773 Vertex 38693 0.624305 0.530594 0.258797 Vertex 38694 0.359135 0.20098 0.470141 Vertex 38695 0.43029 0.412235 0.39025 Vertex 38696 0.547115 0.491788 0.40113 Vertex 38697 0.4844 0.0714569 0.73807 Vertex 38698 0.401921 0.895607 0.368526 Vertex 38699 0.519776 0.0900422 0.67526 Vertex 38700 0.589047 0.509906 0.302346 Vertex 38701 0.490435 0.688995 0.519731 Vertex 38702 0.463232 0.339552 0.413437 Vertex 38703 0.606401 0.508911 0.221123 Vertex 38704 0.529827 0.696588 0.484651 Vertex 38705 0.517164 0.357362 0.480819 Vertex 38706 0.519503 0.532767 0.586255 Vertex 38707 0.465726 0.281552 0.629265 Vertex 38708 0.460899 0.276369 0.629822 Vertex 38709 0.508896 0.190994 0.461233 Vertex 38710 0.515808 0.337959 0.57785 Vertex 38711 0.516678 0.339659 0.575807 Vertex 38712 0.516649 0.294789 0.515621 Vertex 38713 0.549028 0.575523 0.499233 Vertex 38714 0.451387 0.568333 0.550186 Vertex 38715 0.459726 0.654122 0.441416 Vertex 38716 0.425481 0.152971 0.613209 Vertex 38717 0.472389 0.624326 0.53253 Vertex 38718 0.358596 0.210527 0.482993 Vertex 38719 0.50828 0.354578 0.449441 Vertex 38720 0.491803 0.181873 0.787199 Vertex 38721 0.570326 0.502342 0.412798 Vertex 38722 0.630879 0.521005 0.229663 Vertex 38723 0.436053 0.549102 0.503912 Vertex 38724 0.554181 0.00402149 0.737798 Vertex 38725 0.368813 0.205919 0.477633 Vertex 38726 0.512734 0.341495 0.584069 Vertex 38727 0.391414 0.326125 0.210029 Vertex 38728 0.538018 0.0268178 0.729269 Vertex 38729 0.355902 0.29993 0.196863 Vertex 38730 0.522293 0.556979 0.411536 Vertex 38731 0.374517 0.346908 0.472628 Vertex 38732 0.375962 0.342596 0.470615 Vertex 38733 0.514771 0.28305 0.494909 Vertex 38734 0.451523 0.800614 0.373803 Vertex 38735 0.398859 0.322276 0.21764 Vertex 38736 0.453981 0.168879 0.800661 Vertex 38737 0.344501 0.086228 0.455547 Vertex 38738 0.572251 0.494092 0.507637 Vertex 38739 0.415661 0.390392 0.367969 Vertex 38740 0.548992 0.540437 0.443051 Vertex 38741 0.546771 0.541539 0.441428 Vertex 38742 0.468693 0.476135 0.396984 Vertex 38743 0.470452 0.492961 0.608506 Vertex 38744 0.553724 0.40248 0.486754 Vertex 38745 0.393315 0.191296 0.479327 Vertex 38746 0.513071 0.124571 0.704364 Vertex 38747 0.456012 0.195566 0.801579 Vertex 38748 0.431267 0.789147 0.418513 Vertex 38749 0.613176 0.476407 0.185658 Vertex 38750 0.593128 0.452965 0.193156 Vertex 38751 0.426168 0.225612 0.202579 Vertex 38752 0.401844 0.30006 0.43958 Vertex 38753 0.509441 0.0881884 0.807265 Vertex 38754 0.496671 0.592171 0.568581 Vertex 38755 0.569177 0.504451 0.511677 Vertex 38756 0.427678 0.26357 0.654644 Vertex 38757 0.471216 0.716648 0.422215 Vertex 38758 0.492425 0.16449 0.681681 Vertex 38759 0.455379 0.805204 0.376551 Vertex 38760 0.395435 0.394076 0.259229 Vertex 38761 0.594182 0.435203 0.334595 Vertex 38762 0.47763 0.613149 0.427054 Vertex 38763 0.376222 0.389634 0.55519 Vertex 38764 0.376672 0.399217 0.281155 Vertex 38765 0.373859 0.397825 0.283482 Vertex 38766 0.624323 0.530546 0.277157 Vertex 38767 0.657507 0.462376 0.218866 Vertex 38768 0.468142 0.115794 0.791368 Vertex 38769 0.521535 0.394266 0.534597 Vertex 38770 0.502979 0.681106 0.536581 Vertex 38771 0.449539 0.518434 0.430062 Vertex 38772 0.506953 0.26867 0.555125 Vertex 38773 0.530413 0.0374608 0.653637 Vertex 38774 0.367084 0.341862 0.509823 Vertex 38775 0.513285 0.299971 0.559324 Vertex 38776 0.505526 0.10097 0.807253 Vertex 38777 0.504951 0.162393 0.457751 Vertex 38778 0.559618 0.400384 0.415451 Vertex 38779 0.357068 0.273159 0.517493 Vertex 38780 0.399948 0.277595 0.229941 Vertex 38781 0.351827 0.145354 0.474085 Vertex 38782 0.608474 0.46744 0.297395 Vertex 38783 0.395281 0.174488 0.492161 Vertex 38784 0.380907 0.303927 0.242746 Vertex 38785 0.544082 0.12495 0.437158 Vertex 38786 0.366521 0.226441 0.490284 Vertex 38787 0.469084 0.210462 0.483621 Vertex 38788 0.516258 0.348786 0.477479 Vertex 38789 0.525627 0.170815 0.444614 Vertex 38790 0.440347 0.333061 0.645061 Vertex 38791 0.607431 0.444756 0.358244 Vertex 38792 0.458974 0.191266 0.633506 Vertex 38793 0.554939 0.0463745 0.760268 Vertex 38794 0.432405 0.80531 0.393448 Vertex 38795 0.533256 0.129588 0.785114 Vertex 38796 0.631998 0.513027 0.204421 Vertex 38797 0.378449 0.200832 0.568872 Vertex 38798 0.620046 0.510196 0.199144 Vertex 38799 0.531734 0.555386 0.428961 Vertex 38800 0.451499 0.234164 0.64634 Vertex 38801 0.446815 0.565916 0.456146 Vertex 38802 0.455687 0.125181 0.638398 Vertex 38803 0.477494 0.731715 0.493168 Vertex 38804 0.504478 0.265951 0.565508 Vertex 38805 0.496127 0.258092 0.47055 Vertex 38806 0.488919 0.593788 0.399756 Vertex 38807 0.411444 0.52669 0.507531 Vertex 38808 0.518514 0.300403 0.503586 Vertex 38809 0.684449 0.45656 0.192866 Vertex 38810 0.600922 0.516053 0.201892 Vertex 38811 0.461307 0.154013 0.799974 Vertex 38812 0.460531 0.173925 0.662438 Vertex 38813 0.640462 0.491083 0.237688 Vertex 38814 0.602811 0.436394 0.371795 Vertex 38815 0.397177 0.358706 0.416742 Vertex 38816 0.435224 0.861937 0.396285 Vertex 38817 0.41986 0.153527 0.619445 Vertex 38818 0.663311 0.407408 0.217995 Vertex 38819 0.499106 0.250517 0.507572 Vertex 38820 0.498205 0.311816 0.446883 Vertex 38821 0.52202 0.333292 0.550973 Vertex 38822 0.384597 0.207086 0.675343 Vertex 38823 0.464245 0.203183 0.797942 Vertex 38824 0.481326 0.3396 0.427569 Vertex 38825 0.546422 0.507643 0.417358 Vertex 38826 0.421294 0.832146 0.362242 Vertex 38827 0.355108 0.394449 0.496627 Vertex 38828 0.363145 0.229503 0.493358 Vertex 38829 0.364294 0.228099 0.493073 Vertex 38830 0.458926 0.220033 0.625291 Vertex 38831 0.626224 0.523368 0.221502 Vertex 38832 0.494901 0.193784 0.536498 Vertex 38833 0.453874 0.190834 0.580054 Vertex 38834 0.436545 0.19925 0.472954 Vertex 38835 0.408187 0.352049 0.240164 Vertex 38836 0.370075 0.270535 0.195087 Vertex 38837 0.41209 0.170881 0.494145 Vertex 38838 0.665272 0.455441 0.203301 Vertex 38839 0.496286 0.152491 0.666418 Vertex 38840 0.444137 0.250215 0.714729 Vertex 38841 0.426215 0.139147 0.65584 Vertex 38842 0.495866 0.645357 0.543967 Vertex 38843 0.529773 0.500352 0.415954 Vertex 38844 0.502381 0.5142 0.395225 Vertex 38845 0.504886 0.513341 0.395894 Vertex 38846 0.466875 0.22576 0.741689 Vertex 38847 0.601834 0.537618 0.288037 Vertex 38848 0.514753 0.0683535 0.776781 Vertex 38849 0.381707 0.342265 0.405957 Vertex 38850 0.503619 0.0772493 0.63732 Vertex 38851 0.361884 0.337509 0.229397 Vertex 38852 0.45741 0.631907 0.44536 Vertex 38853 0.456699 0.630165 0.44725 Vertex 38854 0.363779 0.0956925 0.48275 Vertex 38855 0.458595 0.787969 0.381248 Vertex 38856 0.38118 0.448263 0.580445 Vertex 38857 0.355659 0.243143 0.542895 Vertex 38858 0.450297 0.632031 0.460043 Vertex 38859 0.490932 0.3916 0.420201 Vertex 38860 0.50687 0.050621 0.764272 Vertex 38861 0.518242 0.426609 0.591828 Vertex 38862 0.53826 0.0819637 0.755939 Vertex 38863 0.406564 0.335252 0.227075 Vertex 38864 0.406292 0.335383 0.229278 Vertex 38865 0.51351 0.375438 0.446663 Vertex 38866 0.373652 0.371653 0.53269 Vertex 38867 0.370341 0.347181 0.42658 Vertex 38868 0.476345 0.766049 0.495875 Vertex 38869 0.527611 0.128853 0.712579 Vertex 38870 0.454182 0.0823428 0.658884 Vertex 38871 0.452257 0.0817683 0.658713 Vertex 38872 0.450368 0.0836221 0.659346 Vertex 38873 0.44746 0.847871 0.407059 Vertex 38874 0.447484 0.219831 0.792796 Vertex 38875 0.324405 0.970179 0.23295 Vertex 38876 0.477251 0.62567 0.534023 Vertex 38877 0.391663 0.483876 0.44536 Vertex 38878 0.570409 0.441428 0.495099 Vertex 38879 0.665349 0.494092 0.203574 Vertex 38880 0.600792 0.528029 0.227211 Vertex 38881 0.36703 0.433349 0.55111 Vertex 38882 0.438481 0.237392 0.454624 Vertex 38883 0.40721 0.172882 0.710625 Vertex 38884 0.545083 0.633825 0.483727 Vertex 38885 0.412439 0.842777 0.422404 Vertex 38886 0.412108 0.847894 0.420171 Vertex 38887 0.354545 0.894292 0.331331 Vertex 38888 0.305227 0.952909 0.230889 Vertex 38889 0.545273 0.054376 0.794703 Vertex 38890 0.429017 0.167795 0.524055 Vertex 38891 0.503139 0.400325 0.442085 Vertex 38892 0.492058 0.212416 0.515787 Vertex 38893 0.397562 0.284406 0.194844 Vertex 38894 0.531331 0.0883247 0.795431 Vertex 38895 0.529637 0.592077 0.432876 Vertex 38896 0.472412 0.790652 0.481068 Vertex 38897 0.475314 0.789165 0.478995 Vertex 38898 0.524087 0.319089 0.518399 Vertex 38899 0.523762 0.31829 0.51414 Vertex 38900 0.418285 0.38951 0.358872 Vertex 38901 0.490618 0.230208 0.567598 Vertex 38902 0.395424 0.853651 0.358303 Vertex 38903 0.393617 0.854492 0.356562 Vertex 38904 0.485543 0.573853 0.402871 Vertex 38905 0.59831 0.429873 0.194246 Vertex 38906 0.478969 0.128054 0.808414 Vertex 38907 0.382376 0.231884 0.623609 Vertex 38908 0.439921 0.259353 0.729257 Vertex 38909 0.45638 0.543949 0.431827 Vertex 38910 0.510898 0.14539 0.705028 Vertex 38911 0.469694 0.603827 0.432236 Vertex 38912 0.450978 0.770218 0.459818 Vertex 38913 0.448988 0.823973 0.460368 Vertex 38914 0.515725 0.740801 0.480506 Vertex 38915 0.346123 0.898888 0.308891 Vertex 38916 0.346881 0.897307 0.308713 Vertex 38917 0.509766 0.0298088 0.731247 Vertex 38918 0.383655 0.217492 0.687799 Vertex 38919 0.615474 0.477692 0.312657 Vertex 38920 0.614556 0.474701 0.314476 Vertex 38921 0.416064 0.367708 0.316815 Vertex 38922 0.439618 0.56395 0.51372 Vertex 38923 0.508896 0.288244 0.573657 Vertex 38924 0.607259 0.501525 0.196401 Vertex 38925 0.412025 0.533158 0.536528 Vertex 38926 0.546191 0.602412 0.499885 Vertex 38927 0.441342 0.247852 0.664996 Vertex 38928 0.369364 0.306587 0.482484 Vertex 38929 0.423947 0.369023 0.640329 Vertex 38930 0.454022 0.0921329 0.714267 Vertex 38931 0.338169 0.282085 0.204883 Vertex 38932 0.467645 0.519441 0.5973 Vertex 38933 0.354764 0.264944 0.531713 Vertex 38934 0.383335 0.212363 0.610307 Vertex 38935 0.436876 0.239459 0.77533 Vertex 38936 0.400955 0.244369 0.735506 Vertex 38937 0.365899 0.203698 0.21886 Vertex 38938 0.475474 0.477272 0.3907 Vertex 38939 0.413097 0.179747 0.74372 Vertex 38940 0.526605 0.55984 0.419804 Vertex 38941 0.373699 0.413467 0.559597 Vertex 38942 0.436947 0.283388 0.430293 Vertex 38943 0.398509 0.318414 0.214945 Vertex 38944 0.364454 0.305574 0.576844 Vertex 38945 0.387523 0.303815 0.240081 Vertex 38946 0.379047 0.33543 0.468222 Vertex 38947 0.430847 0.792944 0.426633 Vertex 38948 0.519776 0.367554 0.551015 Vertex 38949 0.458891 0.743762 0.422197 Vertex 38950 0.39967 0.455151 0.596744 Vertex 38951 0.398278 0.252009 0.717833 Vertex 38952 0.663383 0.403286 0.219518 Vertex 38953 0.592014 0.493299 0.279656 Vertex 38954 0.492247 0.649313 0.402966 Vertex 38955 0.440436 0.089681 0.673276 Vertex 38956 0.468977 0.714563 0.425478 Vertex 38957 0.37197 0.259626 0.232571 Vertex 38958 0.519977 0.579639 0.561847 Vertex 38959 0.61689 0.465616 0.367809 Vertex 38960 0.547198 0.0405584 0.796426 Vertex 38961 0.574252 0.52232 0.455607 Vertex 38962 0.438422 0.0926245 0.666501 Vertex 38963 0.542933 0.442026 0.386347 Vertex 38964 0.413665 0.375165 0.423938 Vertex 38965 0.423088 0.436867 0.388207 Vertex 38966 0.444428 0.369977 0.415777 Vertex 38967 0.473626 0.515941 0.410979 Vertex 38968 0.59391 0.505594 0.256842 Vertex 38969 0.594514 0.446332 0.190739 Vertex 38970 0.387967 0.250866 0.683629 Vertex 38971 0.527274 0.641809 0.526477 Vertex 38972 0.43138 0.293669 0.427356 Vertex 38973 0.369802 0.911267 0.297501 Vertex 38974 0.401429 0.169874 0.613546 Vertex 38975 0.441567 0.146533 0.762383 Vertex 38976 0.462752 0.0895447 0.718839 Vertex 38977 0.460212 0.0925653 0.717607 Vertex 38978 0.506503 0.173273 0.476194 Vertex 38979 0.46694 0.328974 0.419005 Vertex 38980 0.459809 0.127835 0.805612 Vertex 38981 0.482137 0.741523 0.497569 Vertex 38982 0.446204 0.825797 0.375982 Vertex 38983 0.600514 0.447422 0.321091 Vertex 38984 0.520688 0.0834503 0.674935 Vertex 38985 0.435437 0.254787 0.667063 Vertex 38986 0.509577 0.180754 0.452977 Vertex 38987 0.389359 0.352967 0.3396 Vertex 38988 0.388725 0.352967 0.335448 Vertex 38989 0.400097 0.265774 0.6474 Vertex 38990 0.474692 0.0901725 0.762282 Vertex 38991 0.516281 0.396878 0.567551 Vertex 38992 0.463795 0.224576 0.778954 Vertex 38993 0.464701 0.226974 0.776751 Vertex 38994 0.524129 0.532358 0.411655 Vertex 38995 0.633763 0.513003 0.270861 Vertex 38996 0.619596 0.539631 0.269309 Vertex 38997 0.394239 0.310069 0.203633 Vertex 38998 0.487272 0.660862 0.526246 Vertex 38999 0.546961 0.55872 0.540715 Vertex 39000 0.547292 0.582956 0.507542 Vertex 39001 0.506693 0.0365843 0.735458 Vertex 39002 0.378301 0.901879 0.305651 Vertex 39003 0.337808 0.289334 0.211546 Vertex 39004 0.59898 0.440534 0.209479 Vertex 39005 0.378657 0.873344 0.364487 Vertex 39006 0.55257 0.1486 0.415179 Vertex 39007 0.619975 0.528556 0.229633 Vertex 39008 0.617962 0.527431 0.225553 Vertex 39009 0.460289 0.257748 0.622952 Vertex 39010 0.387203 0.387247 0.609211 Vertex 39011 0.389323 0.391328 0.609181 Vertex 39012 0.399854 0.841267 0.37677 Vertex 39013 0.401642 0.840905 0.37096 Vertex 39014 0.376542 0.222757 0.585378 Vertex 39015 0.491554 0.224647 0.523403 Vertex 39016 0.509885 0.0946856 0.805991 Vertex 39017 0.489298 0.103173 0.805991 Vertex 39018 0.46049 0.426284 0.619961 Vertex 39019 0.507634 0.29634 0.579917 Vertex 39020 0.341012 0.254704 0.211415 Vertex 39021 0.341681 0.252975 0.212635 Vertex 39022 0.589456 0.426858 0.34583 Vertex 39023 0.395909 0.357545 0.403931 Vertex 39024 0.517863 0.174908 0.448997 Vertex 39025 0.559766 0.0298621 0.743863 Vertex 39026 0.477885 0.385589 0.403902 Vertex 39027 0.367759 0.413627 0.310886 Vertex 39028 0.361931 0.339386 0.231357 Vertex 39029 0.370537 0.347382 0.505535 Vertex 39030 0.36613 0.425573 0.549066 Vertex 39031 0.487272 0.763597 0.408948 Vertex 39032 0.53752 0.084623 0.75004 Vertex 39033 0.366817 0.366956 0.291928 Vertex 39034 0.45985 0.234004 0.760369 Vertex 39035 0.659225 0.405258 0.222645 Vertex 39036 0.506817 0.764598 0.466054 Vertex 39037 0.535962 0.0804061 0.776917 Vertex 39038 0.408051 0.833982 0.409955 Vertex 39039 0.479934 0.547793 0.40203 Vertex 39040 0.480455 0.544014 0.40113 Vertex 39041 0.369157 0.211913 0.481512 Vertex 39042 0.441857 0.338871 0.418116 Vertex 39043 0.390069 0.194317 0.691933 Vertex 39044 0.467526 0.147865 0.79905 Vertex 39045 0.326661 0.264565 0.208093 Vertex 39046 0.458032 0.712934 0.443797 Vertex 39047 0.43135 0.408492 0.404642 Vertex 39048 0.424545 0.849067 0.435843 Vertex 39049 0.525284 0.320386 0.494963 Vertex 39050 0.524496 0.319214 0.49273 Vertex 39051 0.620289 0.530979 0.23744 Vertex 39052 0.497797 0.779209 0.466048 Vertex 39053 0.478607 0.582772 0.42254 Vertex 39054 0.467183 0.615892 0.530469 Vertex 39055 0.514706 0.44141 0.414539 Vertex 39056 0.440347 0.813726 0.366719 Vertex 39057 0.494563 0.0951002 0.642479 Vertex 39058 0.533439 0.133982 0.437501 Vertex 39059 0.413091 0.273189 0.214128 Vertex 39060 0.450581 0.54325 0.437472 Vertex 39061 0.452939 0.543606 0.434492 Vertex 39062 0.420435 0.21446 0.47142 Vertex 39063 0.423876 0.217042 0.470378 Vertex 39064 0.474349 0.538346 0.410352 Vertex 39065 0.536697 0.116232 0.437175 Vertex 39066 0.541737 0.497403 0.408338 Vertex 39067 0.498383 0.410529 0.409262 Vertex 39068 0.390887 0.352647 0.404026 Vertex 39069 0.628788 0.482839 0.186244 Vertex 39070 0.39328 0.258826 0.650474 Vertex 39071 0.603682 0.48888 0.203899 Vertex 39072 0.605998 0.48724 0.202952 Vertex 39073 0.308597 0.996517 0.216088 Vertex 39074 0.320046 0.257168 0.217427 Vertex 39075 0.516198 0.169957 0.784818 Vertex 39076 0.469415 0.160326 0.658375 Vertex 39077 0.364377 0.216296 0.221235 Vertex 39078 0.42483 0.395071 0.401414 Vertex 39079 0.547535 0.0516812 0.785061 Vertex 39080 0.42528 0.430234 0.387354 Vertex 39081 0.522796 0.0270903 0.635875 Vertex 39082 0.523004 0.0261722 0.636491 Vertex 39083 0.465163 0.222988 0.607031 Vertex 39084 0.530685 0.46641 0.586201 Vertex 39085 0.464038 0.197781 0.66704 Vertex 39086 0.339087 0.93417 0.309992 Vertex 39087 0.51255 0.119401 0.696085 Vertex 39088 0.529584 0.147978 0.789609 Vertex 39089 0.582977 0.413076 0.364504 Vertex 39090 0.359283 0.234792 0.49514 Vertex 39091 0.359384 0.235728 0.494282 Vertex 39092 0.412167 0.16789 0.609057 Vertex 39093 0.463836 0.234016 0.766558 Vertex 39094 0.384342 0.0736898 0.465924 Vertex 39095 0.370839 0.359748 0.343763 Vertex 39096 0.445239 0.113401 0.720468 Vertex 39097 0.413867 0.172172 0.5263 Vertex 39098 0.446127 0.374075 0.642342 Vertex 39099 0.447762 0.375171 0.640145 Vertex 39100 0.478684 0.235852 0.596448 Vertex 39101 0.548347 0.566538 0.509598 Vertex 39102 0.36722 0.138537 0.464964 Vertex 39103 0.517093 0.141735 0.706366 Vertex 39104 0.498667 0.543848 0.385559 Vertex 39105 0.404823 0.48888 0.437051 Vertex 39106 0.562472 0.493547 0.356195 Vertex 39107 0.495688 0.0998857 0.812021 Vertex 39108 0.399996 0.271625 0.228739 Vertex 39109 0.404918 0.280693 0.634548 Vertex 39110 0.488877 0.587309 0.398601 Vertex 39111 0.542886 0.126798 0.448754 Vertex 39112 0.445458 0.249143 0.751977 Vertex 39113 0.53293 0.605391 0.44083 Vertex 39114 0.528239 0.57602 0.430578 Vertex 39115 0.619282 0.522829 0.306604 Vertex 39116 0.610369 0.461292 0.310898 Vertex 39117 0.346674 0.100756 0.464538 Vertex 39118 0.604132 0.517025 0.341678 Vertex 39119 0.515275 0.735601 0.486789 Vertex 39120 0.513592 0.641412 0.538648 Vertex 39121 0.524129 0.0736305 0.668805 Vertex 39122 0.516607 0.340127 0.463354 Vertex 39123 0.337915 0.0963203 0.461885 Vertex 39124 0.361256 0.432556 0.526163 Vertex 39125 0.492822 0.230439 0.559567 Vertex 39126 0.432434 0.852259 0.424975 Vertex 39127 0.491649 0.228034 0.561439 Vertex 39128 0.529015 0.0644682 0.721274 Vertex 39129 0.46123 0.466267 0.399306 Vertex 39130 0.382554 0.414426 0.298022 Vertex 39131 0.637252 0.445135 0.199256 Vertex 39132 0.532687 0.675408 0.495058 Vertex 39133 0.352769 0.0902317 0.441837 Vertex 39134 0.353787 0.0908536 0.442085 Vertex 39135 0.37486 0.345812 0.486748 Vertex 39136 0.400333 0.476407 0.421545 Vertex 39137 0.587484 0.491729 0.287219 Vertex 39138 0.494125 0.267829 0.596643 Vertex 39139 0.394038 0.445568 0.596501 Vertex 39140 0.563627 0.466759 0.325279 Vertex 39141 0.581146 0.495366 0.40347 Vertex 39142 0.524863 0.127604 0.745835 Vertex 39143 0.368629 0.379062 0.239998 Vertex 39144 0.613958 0.517729 0.319226 Vertex 39145 0.475119 0.512399 0.408445 Vertex 39146 0.448153 0.786085 0.400028 Vertex 39147 0.55007 0.56376 0.499588 Vertex 39148 0.458399 0.213725 0.795141 Vertex 39149 0.529797 0.567273 0.431081 Vertex 39150 0.567181 0.541562 0.48275 Vertex 39151 0.444309 0.350841 0.417086 Vertex 39152 0.397088 0.342608 0.21565 Vertex 39153 0.330872 0.915016 0.281877 Vertex 39154 0.422585 0.388189 0.343123 Vertex 39155 0.422774 0.386922 0.341667 Vertex 39156 0.536874 0.455826 0.399093 Vertex 39157 0.485709 0.437732 0.378038 Vertex 39158 0.424747 0.446468 0.605758 Vertex 39159 0.524224 0.134077 0.790788 Vertex 39160 0.550686 0.562552 0.486517 Vertex 39161 0.479259 0.539981 0.401959 Vertex 39162 0.493136 0.735091 0.407959 Vertex 39163 0.498709 0.20509 0.481009 Vertex 39164 0.514268 0.711489 0.430566 Vertex 39165 0.593454 0.441055 0.208229 Vertex 39166 0.361244 0.24903 0.496295 Vertex 39167 0.52099 0.13092 0.705348 Vertex 39168 0.440057 0.509568 0.43743 Vertex 39169 0.344684 0.258554 0.222728 Vertex 39170 0.538166 0.140811 0.444271 Vertex 39171 0.638928 0.475868 0.224273 Vertex 39172 0.640486 0.476839 0.225689 Vertex 39173 0.360302 0.26678 0.497113 Vertex 39174 0.370525 0.903318 0.3578 Vertex 39175 0.536886 0.0484178 0.724223 Vertex 39176 0.335782 0.256321 0.204717 Vertex 39177 0.333419 0.256907 0.203165 Vertex 39178 0.426215 0.173599 0.499369 Vertex 39179 0.438813 0.194263 0.798268 Vertex 39180 0.5372 0.515929 0.422458 Vertex 39181 0.555833 0.401059 0.40514 Vertex 39182 0.557029 0.403351 0.399105 Vertex 39183 0.596178 0.52043 0.278176 Vertex 39184 0.469498 0.223859 0.752054 Vertex 39185 0.39386 0.269025 0.227022 Vertex 39186 0.444866 0.202437 0.800276 Vertex 39187 0.44162 0.19928 0.799636 Vertex 39188 0.456587 0.355117 0.634548 Vertex 39189 0.351383 0.263274 0.209858 Vertex 39190 0.492087 0.212203 0.534135 Vertex 39191 0.403774 0.356266 0.260739 Vertex 39192 0.365858 0.391263 0.289725 Vertex 39193 0.498069 0.161304 0.68861 Vertex 39194 0.366266 0.314647 0.488857 Vertex 39195 0.525029 0.0768702 0.715007 Vertex 39196 0.391224 0.30465 0.44706 Vertex 39197 0.382186 0.490604 0.482709 Vertex 39198 0.516903 0.314647 0.5531 Vertex 39199 0.374203 0.217847 0.229823 Vertex 39200 0.481391 0.589086 0.420414 Vertex 39201 0.604091 0.517303 0.329235 Vertex 39202 0.390585 0.300386 0.194796 Vertex 39203 0.380457 0.388811 0.241301 Vertex 39204 0.440844 0.552223 0.476466 Vertex 39205 0.543342 0.462945 0.391014 Vertex 39206 0.35326 0.378298 0.466836 Vertex 39207 0.377804 0.341258 0.274871 Vertex 39208 0.449112 0.147403 0.640826 Vertex 39209 0.444647 0.385234 0.643675 Vertex 39210 0.479567 0.699739 0.50326 Vertex 39211 0.481391 0.70344 0.503314 Vertex 39212 0.336795 0.947419 0.295026 Vertex 39213 0.555181 0.4451 0.528313 Vertex 39214 0.521635 0.580024 0.421611 Vertex 39215 0.445369 0.168446 0.611177 Vertex 39216 0.444505 0.164899 0.612504 Vertex 39217 0.472418 0.584733 0.556772 Vertex 39218 0.603131 0.465201 0.393514 Vertex 39219 0.319519 0.93292 0.262646 Vertex 39220 0.434833 0.817239 0.36868 Vertex 39221 0.367664 0.0897343 0.466878 Vertex 39222 0.525752 0.326493 0.50011 Vertex 39223 0.46126 0.341128 0.634276 Vertex 39224 0.355606 0.935573 0.311864 Vertex 39225 0.466389 0.229284 0.76657 Vertex 39226 0.478471 0.173493 0.795384 Vertex 39227 0.427228 0.13002 0.707349 Vertex 39228 0.530537 0.138063 0.781116 Vertex 39229 0.425155 0.518772 0.466878 Vertex 39230 0.461799 0.199386 0.638599 Vertex 39231 0.451339 0.471106 0.40607 Vertex 39232 0.573127 0.441925 0.486789 Vertex 39233 0.463268 0.752486 0.476383 Vertex 39234 0.40291 0.371221 0.242207 Vertex 39235 0.58239 0.514472 0.354122 Vertex 39236 0.457173 0.134539 0.804096 Vertex 39237 0.456818 0.135789 0.802272 Vertex 39238 0.3772 0.263624 0.466327 Vertex 39239 0.416396 0.389261 0.376107 Vertex 39240 0.567388 0.507809 0.422404 Vertex 39241 0.424012 0.187612 0.483763 Vertex 39242 0.425552 0.188287 0.483864 Vertex 39243 0.693126 0.443329 0.209206 Vertex 39244 0.438588 0.552229 0.493737 Vertex 39245 0.645792 0.420278 0.203663 Vertex 39246 0.455396 0.465314 0.402042 Vertex 39247 0.399812 0.216758 0.471876 Vertex 39248 0.402377 0.215804 0.472279 Vertex 39249 0.361463 0.437679 0.530333 Vertex 39250 0.349061 0.300972 0.200529 Vertex 39251 0.392036 0.352369 0.435991 Vertex 39252 0.393179 0.35379 0.433936 Vertex 39253 0.528837 0.0128344 0.735417 Vertex 39254 0.438173 0.310839 0.422155 Vertex 39255 0.459945 0.195294 0.646322 Vertex 39256 0.458322 0.18301 0.650474 Vertex 39257 0.650246 0.506583 0.212114 Vertex 39258 0.400203 0.363201 0.406437 Vertex 39259 0.464896 0.744271 0.413805 Vertex 39260 0.438961 0.389658 0.647246 Vertex 39261 0.43504 0.388331 0.647193 Vertex 39262 0.450842 0.239335 0.62978 Vertex 39263 0.452737 0.238926 0.625996 Vertex 39264 0.502683 0.657238 0.410855 Vertex 39265 0.409217 0.369207 0.27955 Vertex 39266 0.40949 0.370593 0.277417 Vertex 39267 0.471702 0.433948 0.372068 Vertex 39268 0.450617 0.244381 0.723027 Vertex 39269 0.381547 0.304348 0.457668 Vertex 39270 0.454958 0.321121 0.637249 Vertex 39271 0.480976 0.645357 0.527004 Vertex 39272 0.510483 0.576992 0.403772 Vertex 39273 0.441762 0.474062 0.604751 Vertex 39274 0.341036 0.11683 0.459314 Vertex 39275 0.431285 0.258021 0.745687 Vertex 39276 0.393629 0.317692 0.623567 Vertex 39277 0.618264 0.472688 0.343283 Vertex 39278 0.377259 0.349792 0.218404 Vertex 39279 0.59927 0.476052 0.397837 Vertex 39280 0.446382 0.241455 0.65048 Vertex 39281 0.664751 0.489692 0.213832 Vertex 39282 0.551604 0.421107 0.385855 Vertex 39283 0.37284 0.356947 0.222698 Vertex 39284 0.416935 0.155345 0.698152 Vertex 39285 0.474444 0.728872 0.406668 Vertex 39286 0.523312 0.143228 0.741227 Vertex 39287 0.518757 0.383516 0.470277 Vertex 39288 0.375387 0.0752415 0.4763 Vertex 39289 0.481711 0.291454 0.620529 Vertex 39290 0.370134 0.257979 0.199967 Vertex 39291 0.530537 0.110736 0.722375 Vertex 39292 0.525627 0.352043 0.497569 Vertex 39293 0.525461 0.140077 0.75203 Vertex 39294 0.363459 0.884455 0.310685 Vertex 39295 0.383472 0.866403 0.339475 Vertex 39296 0.539486 0.583862 0.530297 Vertex 39297 0.445138 0.383149 0.413437 Vertex 39298 0.434294 0.415806 0.635508 Vertex 39299 0.534375 0.171686 0.449358 Vertex 39300 0.376755 0.907316 0.358031 Vertex 39301 0.419286 0.164869 0.720966 Vertex 39302 0.476416 0.588867 0.426153 Vertex 39303 0.525308 0.486855 0.411957 Vertex 39304 0.529501 0.609732 0.538814 Vertex 39305 0.664561 0.462672 0.190958 Vertex 39306 0.464938 0.160569 0.536534 Vertex 39307 0.494492 0.315394 0.613215 Vertex 39308 0.39123 0.493938 0.470277 Vertex 39309 0.425303 0.248556 0.760268 Vertex 39310 0.533712 0.555439 0.430797 Vertex 39311 0.44117 0.568676 0.499233 Vertex 39312 0.430622 0.839069 0.443637 Vertex 39313 0.403461 0.173019 0.536528 Vertex 39314 0.409401 0.834497 0.416298 Vertex 39315 0.364561 0.23221 0.232003 Vertex 39316 0.631074 0.521182 0.221502 Vertex 39317 0.445209 0.304608 0.63732 Vertex 39318 0.524431 0.659346 0.520099 Vertex 39319 0.558883 0.489496 0.376883 Vertex 39320 0.691948 0.444442 0.209639 Vertex 39321 0.357495 0.240833 0.550784 Vertex 39322 0.35692 0.186617 0.45749 Vertex 39323 0.35897 0.130198 0.474222 Vertex 39324 0.535044 0.169915 0.44154 Vertex 39325 0.359177 0.27002 0.506293 Vertex 39326 0.362097 0.408924 0.31739 Vertex 39327 0.498709 0.203947 0.476697 Vertex 39328 0.435781 0.531215 0.476383 Vertex 39329 0.405285 0.522278 0.544986 Vertex 39330 0.50706 0.17367 0.766529 Vertex 39331 0.472892 0.351735 0.63122 Vertex 39332 0.430746 0.14799 0.722867 Vertex 39333 0.483434 0.229432 0.48718 Vertex 39334 0.362464 0.310116 0.57146 Vertex 39335 0.432944 0.106033 0.698116 Vertex 39336 0.423272 0.338705 0.646482 Vertex 39337 0.424066 0.342656 0.645416 Vertex 39338 0.42053 0.340073 0.643462 Vertex 39339 0.488386 0.566674 0.392874 Vertex 39340 0.460034 0.215259 0.654744 Vertex 39341 0.510311 0.0507631 0.676812 Vertex 39342 0.384656 0.495022 0.486789 Vertex 39343 0.401802 0.36788 0.240051 Vertex 39344 0.460751 0.675533 0.491018 Vertex 39345 0.459892 0.192179 0.640115 Vertex 39346 0.529477 0.0593273 0.72289 Vertex 39347 0.426784 0.397683 0.407426 Vertex 39348 0.405421 0.176158 0.594381 Vertex 39349 0.632626 0.520288 0.265797 Vertex 39350 0.462669 0.128012 0.810386 Vertex 39351 0.686653 0.454422 0.211107 Vertex 39352 0.394257 0.178225 0.658393 Vertex 39353 0.490399 0.21164 0.491842 Vertex 39354 0.492455 0.210989 0.493583 Vertex 39355 0.468053 0.165266 0.667016 Vertex 39356 0.393096 0.166445 0.519933 Vertex 39357 0.540221 0.152544 0.434794 Vertex 39358 0.627693 0.492481 0.185219 Vertex 39359 0.376062 0.248148 0.473937 Vertex 39360 0.448722 0.756413 0.442903 Vertex 39361 0.446791 0.10935 0.726237 Vertex 39362 0.445381 0.106495 0.728061 Vertex 39363 0.538438 0.0732041 0.779002 Vertex 39364 0.367427 0.386744 0.283701 Vertex 39365 0.489926 0.177384 0.709801 Vertex 39366 0.468882 0.223421 0.739622 Vertex 39367 0.522228 0.476851 0.410458 Vertex 39368 0.525491 0.479819 0.410435 Vertex 39369 0.378171 0.899895 0.366927 Vertex 39370 0.519776 0.296441 0.494228 Vertex 39371 0.449723 0.23693 0.671209 Vertex 39372 0.49743 0.704282 0.528532 Vertex 39373 0.496831 0.241372 0.552875 Vertex 39374 0.519503 0.375988 0.546863 Vertex 39375 0.499947 0.0884313 0.71727 Vertex 39376 0.547565 0.601168 0.478261 Vertex 39377 0.359479 0.889613 0.307351 Vertex 39378 0.497228 0.412573 0.604887 Vertex 39379 0.410485 0.365985 0.30115 Vertex 39380 0.413417 0.208584 0.766665 Vertex 39381 0.444404 0.15502 0.613132 Vertex 39382 0.427755 0.512677 0.582926 Vertex 39383 0.529382 0.136742 0.77485 Vertex 39384 0.361244 0.884064 0.323087 Vertex 39385 0.506011 0.307599 0.455636 Vertex 39386 0.45147 0.757692 0.422375 Vertex 39387 0.395222 0.199102 0.476194 Vertex 39388 0.357128 0.279485 0.554782 Vertex 39389 0.357388 0.275611 0.55625 Vertex 39390 0.505277 0.270293 0.567575 Vertex 39391 0.374617 0.921169 0.332131 Vertex 39392 0.361564 0.354305 0.246312 Vertex 39393 0.369844 0.359719 0.459137 Vertex 39394 0.372781 0.358114 0.456335 Vertex 39395 0.36292 0.122569 0.475365 Vertex 39396 0.427139 0.544198 0.50762 Vertex 39397 0.410426 0.42103 0.362805 Vertex 39398 0.498235 0.173777 0.730856 Vertex 39399 0.499497 0.172201 0.732521 Vertex 39400 0.575141 0.523232 0.461855 Vertex 39401 0.436941 0.807608 0.383492 Vertex 39402 0.517886 0.0692833 0.679365 Vertex 39403 0.491767 0.0486606 0.688859 Vertex 39404 0.606104 0.494601 0.200068 Vertex 39405 0.364827 0.31126 0.484817 Vertex 39406 0.366035 0.885414 0.347844 Vertex 39407 0.501143 0.412436 0.600789 Vertex 39408 0.361404 0.381088 0.49138 Vertex 39409 0.400049 0.272129 0.194518 Vertex 39410 0.360569 0.369894 0.370812 Vertex 39411 0.368789 0.106247 0.464331 Vertex 39412 0.404746 0.508976 0.473689 Vertex 39413 0.524549 0.337136 0.503912 Vertex 39414 0.611618 0.494572 0.225257 Vertex 39415 0.613176 0.493648 0.226998 Vertex 39416 0.434975 0.18028 0.789372 Vertex 39417 0.402774 0.16574 0.638155 Vertex 39418 0.463386 0.254473 0.619256 Vertex 39419 0.362642 0.440427 0.534514 Vertex 39420 0.458269 0.199647 0.475335 Vertex 39421 0.370211 0.345522 0.271051 Vertex 39422 0.396744 0.305663 0.206867 Vertex 39423 0.366876 0.356396 0.537547 Vertex 39424 0.420927 0.169128 0.563482 Vertex 39425 0.511768 0.137341 0.691933 Vertex 39426 0.487243 0.754292 0.405412 Vertex 39427 0.540085 0.610194 0.524233 Vertex 39428 0.369263 0.302293 0.482809 Vertex 39429 0.391118 0.285875 0.193458 Vertex 39430 0.539309 0.0777172 0.722979 Vertex 39431 0.649127 0.429434 0.195063 Vertex 39432 0.545456 0.622691 0.475566 Vertex 39433 0.422727 0.39298 0.390546 Vertex 39434 0.443575 0.414148 0.640868 Vertex 39435 0.504507 0.63854 0.554112 Vertex 39436 0.445286 0.570483 0.463709 Vertex 39437 0.499882 0.185107 0.50528 Vertex 39438 0.483227 0.573823 0.570015 Vertex 39439 0.496831 0.688628 0.53333 Vertex 39440 0.520457 0.112069 0.711134 Vertex 39441 0.366793 0.34894 0.521295 Vertex 39442 0.485732 0.478142 0.388017 Vertex 39443 0.364851 0.304928 0.487074 Vertex 39444 0.35849 0.886131 0.320925 Vertex 39445 0.532794 0.429275 0.571726 Vertex 39446 0.530958 0.694545 0.472291 Vertex 39447 0.476967 0.166978 0.528219 Vertex 39448 0.478098 0.168174 0.52823 Vertex 39449 0.373071 0.37266 0.509284 Vertex 39450 0.457375 0.088301 0.726835 Vertex 39451 0.475427 0.2187 0.588345 Vertex 39452 0.533937 0.683286 0.476164 Vertex 39453 0.417337 0.448494 0.602933 Vertex 39454 0.460259 0.267841 0.438342 Vertex 39455 0.37704 0.175506 0.483958 Vertex 39456 0.438997 0.140616 0.609158 Vertex 39457 0.437291 0.140675 0.609081 Vertex 39458 0.448751 0.184686 0.590472 Vertex 39459 0.470884 0.402155 0.622033 Vertex 39460 0.457238 0.176934 0.650474 Vertex 39461 0.411356 0.37231 0.426023 Vertex 39462 0.399054 0.283251 0.235319 Vertex 39463 0.365875 0.376539 0.275309 Vertex 39464 0.357631 0.351356 0.412134 Vertex 39465 0.400659 0.169359 0.615732 Vertex 39466 0.42387 0.268362 0.652677 Vertex 39467 0.360883 0.105269 0.464414 Vertex 39468 0.543052 0.142102 0.453812 Vertex 39469 0.542608 0.14048 0.455465 Vertex 39470 0.5242 0.391974 0.453433 Vertex 39471 0.490506 0.223409 0.559295 Vertex 39472 0.490589 0.219873 0.557305 Vertex 39473 0.491762 0.221057 0.519554 Vertex 39474 0.471399 0.179925 0.693787 Vertex 39475 0.600596 0.524612 0.250256 Vertex 39476 0.384366 0.445082 0.411128 Vertex 39477 0.390336 0.322637 0.208176 Vertex 39478 0.490251 0.287279 0.609187 Vertex 39479 0.425084 0.226607 0.200802 Vertex 39480 0.598814 0.433977 0.347909 Vertex 39481 0.468041 0.537636 0.421208 Vertex 39482 0.410479 0.823878 0.397582 Vertex 39483 0.341675 0.101953 0.46667 Vertex 39484 0.513279 0.384772 0.561403 Vertex 39485 0.606241 0.502046 0.208063 Vertex 39486 0.359159 0.17967 0.452337 Vertex 39487 0.536004 0.669338 0.490882 Vertex 39488 0.467958 0.210799 0.481826 Vertex 39489 0.468213 0.213234 0.481341 Vertex 39490 0.405409 0.376095 0.256653 Vertex 39491 0.499609 0.157495 0.679383 Vertex 39492 0.402359 0.344652 0.214454 Vertex 39493 0.378793 0.327197 0.260372 Vertex 39494 0.527546 0.0556316 0.661005 Vertex 39495 0.426849 0.150791 0.716867 Vertex 39496 0.386824 0.307546 0.243291 Vertex 39497 0.537597 0.134782 0.439515 Vertex 39498 0.381979 0.233679 0.613807 Vertex 39499 0.480751 0.527632 0.39513 Vertex 39500 0.370033 0.413905 0.551133 Vertex 39501 0.430563 0.410666 0.394343 Vertex 39502 0.510406 0.17046 0.449021 Vertex 39503 0.392895 0.310987 0.201815 Vertex 39504 0.410177 0.481281 0.591017 Vertex 39505 0.419647 0.410879 0.616277 Vertex 39506 0.473869 0.460108 0.382118 Vertex 39507 0.420429 0.144371 0.640595 Vertex 39508 0.333692 0.269108 0.203171 Vertex 39509 0.623369 0.454298 0.191906 Vertex 39510 0.614811 0.461914 0.350586 Vertex 39511 0.411142 0.366601 0.303353 Vertex 39512 0.520119 0.166747 0.783047 Vertex 39513 0.48058 0.186919 0.794128 Vertex 39514 0.5389 0.454239 0.567598 Vertex 39515 0.363595 0.397985 0.519062 Vertex 39516 0.625525 0.531968 0.285656 Vertex 39517 0.372941 0.236587 0.588268 Vertex 39518 0.405693 0.392039 0.280556 Vertex 39519 0.540547 0.0800566 0.733385 Vertex 39520 0.510311 0.751236 0.479866 Vertex 39521 0.502778 0.259122 0.486807 Vertex 39522 0.422709 0.504184 0.447345 Vertex 39523 0.366456 0.230451 0.203905 Vertex 39524 0.369506 0.450187 0.544938 Vertex 39525 0.370009 0.453587 0.542759 Vertex 39526 0.31619 0.937024 0.25882 Vertex 39527 0.561519 0.463093 0.530333 Vertex 39528 0.484494 0.419478 0.61588 Vertex 39529 0.464553 0.784486 0.382853 Vertex 39530 0.421833 0.399975 0.321755 Vertex 39531 0.508582 0.0227371 0.66181 Vertex 39532 0.374481 0.35613 0.298076 Vertex 39533 0.375731 0.354483 0.298022 Vertex 39534 0.545764 0.589791 0.511617 Vertex 39535 0.484021 0.190479 0.78913 Vertex 39536 0.508665 0.116149 0.795111 Vertex 39537 0.387156 0.354157 0.358203 Vertex 39538 0.449207 0.21488 0.795005 Vertex 39539 0.459507 0.21828 0.650504 Vertex 39540 0.431404 0.260106 0.650504 Vertex 39541 0.488439 0.198652 0.736548 Vertex 39542 0.372888 0.258252 0.472575 Vertex 39543 0.536359 0.606712 0.446871 Vertex 39544 0.525461 0.572757 0.426254 Vertex 39545 0.521789 0.37414 0.52823 Vertex 39546 0.440436 0.803255 0.453806 Vertex 39547 0.365958 0.364854 0.347885 Vertex 39548 0.574732 0.50804 0.368567 Vertex 39549 0.546961 0.587036 0.507898 Vertex 39550 0.398722 0.254147 0.215301 Vertex 39551 0.60556 0.499885 0.21324 Vertex 39552 0.473739 0.0988492 0.651357 Vertex 39553 0.503636 0.288297 0.586201 Vertex 39554 0.519503 0.374437 0.551015 Vertex 39555 0.568904 0.539359 0.486517 Vertex 39556 0.458784 0.822723 0.392945 Vertex 39557 0.457694 0.804635 0.475009 Vertex 39558 0.369399 0.322353 0.254141 Vertex 39559 0.418273 0.382705 0.40861 Vertex 39560 0.391882 0.271051 0.617378 Vertex 39561 0.443575 0.107662 0.730969 Vertex 39562 0.445044 0.104209 0.730199 Vertex 39563 0.459128 0.366684 0.631936 Vertex 39564 0.349458 0.166285 0.459954 Vertex 39565 0.350429 0.164105 0.456744 Vertex 39566 0.359177 0.263938 0.490918 Vertex 39567 0.508487 0.0973804 0.704637 Vertex 39568 0.35881 0.173493 0.452746 Vertex 39569 0.457606 0.0952601 0.726592 Vertex 39570 0.61102 0.497006 0.187523 Vertex 39571 0.521807 0.727096 0.464349 Vertex 39572 0.627041 0.525654 0.263227 Vertex 39573 0.356405 0.0901192 0.442506 Vertex 39574 0.36995 0.185012 0.5117 Vertex 39575 0.532563 0.498066 0.586249 Vertex 39576 0.477861 0.0778771 0.716909 Vertex 39577 0.485022 0.112163 0.807626 Vertex 39578 0.383863 0.222023 0.596785 Vertex 39579 0.455811 0.618237 0.449483 Vertex 39580 0.525787 0.0255977 0.646838 Vertex 39581 0.451108 0.521407 0.58308 Vertex 39582 0.528903 0.700455 0.482614 Vertex 39583 0.35143 0.0838649 0.446474 Vertex 39584 0.392604 0.25699 0.456335 Vertex 39585 0.496209 0.185213 0.774868 Vertex 39586 0.433903 0.440859 0.617556 Vertex 39587 0.566245 0.428587 0.349271 Vertex 39588 0.489173 0.173641 0.477568 Vertex 39589 0.423011 0.472131 0.410038 Vertex 39590 0.421264 0.840384 0.348099 Vertex 39591 0.561655 0.543416 0.513601 Vertex 39592 0.371567 0.298958 0.240217 Vertex 39593 0.446222 0.593095 0.49257 Vertex 39594 0.524087 0.147759 0.756158 Vertex 39595 0.437593 0.315204 0.644131 Vertex 39596 0.534505 0.0509467 0.794596 Vertex 39597 0.662305 0.485712 0.19193 Vertex 39598 0.516838 0.0193671 0.652618 Vertex 39599 0.395187 0.877863 0.395201 Vertex 39600 0.394026 0.876933 0.393081 Vertex 39601 0.391811 0.256582 0.62981 Vertex 39602 0.524662 0.154884 0.443228 Vertex 39603 0.537384 0.0722446 0.793228 Vertex 39604 0.513344 0.600297 0.55535 Vertex 39605 0.512799 0.602412 0.553905 Vertex 39606 0.510649 0.602595 0.555996 Vertex 39607 0.4135 0.163483 0.627636 Vertex 39608 0.405557 0.889501 0.379803 Vertex 39609 0.457754 0.143583 0.794105 Vertex 39610 0.470452 0.428623 0.615009 Vertex 39611 0.507498 0.174322 0.762442 Vertex 39612 0.520646 0.0940104 0.673282 Vertex 39613 0.364478 0.906173 0.349621 Vertex 39614 0.361475 0.412661 0.341667 Vertex 39615 0.501996 0.49607 0.398601 Vertex 39616 0.380457 0.872586 0.321239 Vertex 39617 0.581567 0.476768 0.488815 Vertex 39618 0.386018 0.325391 0.258116 Vertex 39619 0.531491 0.0907174 0.718662 Vertex 39620 0.552883 0.460955 0.345078 Vertex 39621 0.419606 0.827165 0.378582 Vertex 39622 0.372965 0.300717 0.470153 Vertex 39623 0.375671 0.31062 0.467529 Vertex 39624 0.529424 0.690665 0.451603 Vertex 39625 0.360154 0.10935 0.480275 Vertex 39626 0.471471 0.440208 0.372897 Vertex 39627 0.450013 0.48888 0.605089 Vertex 39628 0.407577 0.362224 0.25667 Vertex 39629 0.357963 0.296714 0.557334 Vertex 39630 0.511141 0.191349 0.462755 Vertex 39631 0.36979 0.265164 0.197106 Vertex 39632 0.403555 0.449637 0.392033 Vertex 39633 0.507344 0.0981681 0.711448 Vertex 39634 0.452713 0.509195 0.422825 Vertex 39635 0.372692 0.350225 0.482709 Vertex 39636 0.373539 0.346908 0.478456 Vertex 39637 0.518348 0.0806785 0.651647 Vertex 39638 0.398829 0.328187 0.244162 Vertex 39639 0.399765 0.325983 0.240034 Vertex 39640 0.503376 0.438757 0.393638 Vertex 39641 0.489653 0.675912 0.405359 Vertex 39642 0.390721 0.193174 0.47922 Vertex 39643 0.429378 0.23513 0.778113 Vertex 39644 0.426683 0.233513 0.778682 Vertex 39645 0.439062 0.33408 0.418051 Vertex 39646 0.320135 0.974722 0.200612 Vertex 39647 0.442894 0.390754 0.645724 Vertex 39648 0.44351 0.38874 0.64454 Vertex 39649 0.560091 0.400923 0.406976 Vertex 39650 0.391047 0.335294 0.623023 Vertex 39651 0.449367 0.162228 0.795248 Vertex 39652 0.470114 0.308138 0.633287 Vertex 39653 0.321568 0.261557 0.227549 Vertex 39654 0.320745 0.259016 0.225582 Vertex 39655 0.415069 0.365813 0.337544 Vertex 39656 0.375802 0.876821 0.313362 Vertex 39657 0.383566 0.32182 0.458349 Vertex 39658 0.459525 0.582908 0.438721 Vertex 39659 0.46476 0.0852745 0.713396 Vertex 39660 0.466324 0.0836161 0.713242 Vertex 39661 0.636642 0.472226 0.183419 Vertex 39662 0.386113 0.314239 0.248622 Vertex 39663 0.504791 0.518523 0.395486 Vertex 39664 0.592311 0.485605 0.285656 Vertex 39665 0.522133 0.586338 0.426781 Vertex 39666 0.459661 0.467902 0.620902 Vertex 39667 0.398172 0.183342 0.594558 Vertex 39668 0.525396 0.12389 0.737976 Vertex 39669 0.383335 0.323976 0.208726 Vertex 39670 0.541559 0.461624 0.392755 Vertex 39671 0.419985 0.828948 0.374839 Vertex 39672 0.633467 0.485173 0.233223 Vertex 39673 0.508025 0.0430044 0.666311 Vertex 39674 0.37197 0.371215 0.561391 Vertex 39675 0.646627 0.423423 0.200145 Vertex 39676 0.302929 0.972418 0.215164 Vertex 39677 0.623434 0.460339 0.210183 Vertex 39678 0.501593 0.424981 0.402492 Vertex 39679 0.483997 0.0814958 0.729713 Vertex 39680 0.3825 0.245648 0.602874 Vertex 39681 0.498342 0.0815787 0.772718 Vertex 39682 0.400683 0.851412 0.350551 Vertex 39683 0.501647 0.776449 0.451692 Vertex 39684 0.50186 0.258933 0.567563 Vertex 39685 0.358839 0.295973 0.23189 Vertex 39686 0.449646 0.591585 0.45983 Vertex 39687 0.539172 0.117061 0.439011 Vertex 39688 0.352342 0.177437 0.456649 Vertex 39689 0.396276 0.315749 0.445645 Vertex 39690 0.457315 0.528988 0.582038 Vertex 39691 0.542383 0.54784 0.559336 Vertex 39692 0.411486 0.370492 0.289002 Vertex 39693 0.485294 0.173599 0.528219 Vertex 39694 0.415484 0.159278 0.619416 Vertex 39695 0.515737 0.126952 0.79029 Vertex 39696 0.521861 0.458266 0.408723 Vertex 39697 0.566784 0.510137 0.424471 Vertex 39698 0.444469 0.142452 0.62172 Vertex 39699 0.595929 0.497 0.388728 Vertex 39700 0.355925 0.421172 0.47739 Vertex 39701 0.470073 0.411625 0.377072 Vertex 39702 0.506693 0.313688 0.588215 Vertex 39703 0.444688 0.513613 0.430891 Vertex 39704 0.473757 0.217954 0.739622 Vertex 39705 0.408068 0.178254 0.580054 Vertex 39706 0.412623 0.368792 0.301315 Vertex 39707 0.346491 0.305615 0.21674 Vertex 39708 0.640237 0.509325 0.248077 Vertex 39709 0.418694 0.399975 0.358339 Vertex 39710 0.418777 0.396854 0.361975 Vertex 39711 0.419055 0.397227 0.359879 Vertex 39712 0.488984 0.21231 0.492351 Vertex 39713 0.489215 0.21231 0.495235 Vertex 39714 0.509565 0.0633488 0.730697 Vertex 39715 0.489949 0.158733 0.794377 Vertex 39716 0.368932 0.237487 0.582553 Vertex 39717 0.509547 0.0913156 0.692045 Vertex 39718 0.514582 0.55525 0.403961 Vertex 39719 0.527096 0.651268 0.520051 Vertex 39720 0.436349 0.20586 0.469637 Vertex 39721 0.516335 0.292775 0.518126 Vertex 39722 0.475107 0.140468 0.648318 Vertex 39723 0.500669 0.259916 0.478439 Vertex 39724 0.553932 0.546324 0.472936 Vertex 39725 0.553565 0.549499 0.475596 Vertex 39726 0.579068 0.500352 0.391867 Vertex 39727 0.413618 0.454019 0.396522 Vertex 39728 0.522642 0.0736068 0.6647 Vertex 39729 0.377644 0.912676 0.347459 Vertex 39730 0.40291 0.175939 0.544867 Vertex 39731 0.391112 0.273378 0.44985 Vertex 39732 0.516358 0.344486 0.46192 Vertex 39733 0.516856 0.364338 0.472202 Vertex 39734 0.380949 0.874108 0.372761 Vertex 39735 0.528304 0.411791 0.561403 Vertex 39736 0.499283 0.603602 0.565354 Vertex 39737 0.392545 0.307919 0.446273 Vertex 39738 0.443036 0.137394 0.625415 Vertex 39739 0.37441 0.209319 0.482928 Vertex 39740 0.48177 0.172403 0.701379 Vertex 39741 0.440418 0.326072 0.643385 Vertex 39742 0.486852 0.626914 0.41204 Vertex 39743 0.423876 0.243812 0.766114 Vertex 39744 0.592287 0.50287 0.265258 Vertex 39745 0.499171 0.70854 0.524043 Vertex 39746 0.52712 0.132295 0.766659 Vertex 39747 0.473697 0.774056 0.391624 Vertex 39748 0.358514 0.169305 0.479866 Vertex 39749 0.4118 0.874049 0.342579 Vertex 39750 0.452785 0.450253 0.628181 Vertex 39751 0.376359 0.0900067 0.470265 Vertex 39752 0.434128 0.809231 0.38537 Vertex 39753 0.482783 0.626949 0.418673 Vertex 39754 0.536276 0.103771 0.789319 Vertex 39755 0.449184 0.114692 0.6603 Vertex 39756 0.416402 0.393555 0.372512 Vertex 39757 0.489079 0.362088 0.626647 Vertex 39758 0.389234 0.254064 0.68158 Vertex 39759 0.466134 0.553562 0.573711 Vertex 39760 0.597534 0.431253 0.356941 Vertex 39761 0.480242 0.673353 0.420373 Vertex 39762 0.375547 0.0808976 0.466753 Vertex 39763 0.359153 0.267432 0.561066 Vertex 39764 0.514854 0.0212979 0.658784 Vertex 39765 0.395524 0.848617 0.366719 Vertex 39766 0.574306 0.441303 0.327494 Vertex 39767 0.5069 0.587498 0.565407 Vertex 39768 0.375352 0.369941 0.229361 Vertex 39769 0.527392 0.128024 0.708635 Vertex 39770 0.475859 0.475015 0.387733 Vertex 39771 0.420026 0.26463 0.67741 Vertex 39772 0.337227 0.0977891 0.459859 Vertex 39773 0.337156 0.101135 0.459901 Vertex 39774 0.509749 0.27342 0.48156 Vertex 39775 0.532658 0.40376 0.421516 Vertex 39776 0.585091 0.49119 0.470182 Vertex 39777 0.404811 0.348294 0.226068 Vertex 39778 0.551196 0.43512 0.534473 Vertex 39779 0.416206 0.264826 0.673235 Vertex 39780 0.547843 0.0300575 0.716476 Vertex 39781 0.487041 0.106904 0.803083 Vertex 39782 0.481806 0.112276 0.810019 Vertex 39783 0.418759 0.168814 0.526116 Vertex 39784 0.542827 0.473612 0.571726 Vertex 39785 0.357436 0.26485 0.552466 Vertex 39786 0.457629 0.192777 0.625504 Vertex 39787 0.40718 0.836084 0.376622 Vertex 39788 0.370075 0.89938 0.355537 Vertex 39789 0.500462 0.180238 0.746415 Vertex 39790 0.465187 0.248083 0.452296 Vertex 39791 0.419244 0.408948 0.323561 Vertex 39792 0.527463 0.117198 0.734452 Vertex 39793 0.493663 0.605841 0.401971 Vertex 39794 0.448325 0.820561 0.463389 Vertex 39795 0.395637 0.382053 0.235781 Vertex 39796 0.303918 0.96466 0.221046 Vertex 39797 0.484631 0.48137 0.387857 Vertex 39798 0.527274 0.41801 0.571726 Vertex 39799 0.31041 0.9939 0.221312 Vertex 39800 0.37207 0.164324 0.470384 Vertex 39801 0.393386 0.430121 0.352084 Vertex 39802 0.472045 0.183899 0.698152 Vertex 39803 0.488593 0.300285 0.441446 Vertex 39804 0.527274 0.609655 0.540852 Vertex 39805 0.428028 0.389261 0.639381 Vertex 39806 0.38712 0.24136 0.656705 Vertex 39807 0.582627 0.454085 0.315512 Vertex 39808 0.585375 0.450057 0.316436 Vertex 39809 0.642908 0.447528 0.215988 Vertex 39810 0.311458 0.991892 0.224872 Vertex 39811 0.45022 0.814721 0.372299 Vertex 39812 0.626088 0.51398 0.204693 Vertex 39813 0.383057 0.0749928 0.475501 Vertex 39814 0.525136 0.324094 0.508307 Vertex 39815 0.516222 0.108752 0.704151 Vertex 39816 0.418925 0.247182 0.197047 Vertex 39817 0.418232 0.249427 0.196863 Vertex 39818 0.58743 0.513157 0.36839 Vertex 39819 0.453904 0.23478 0.772795 Vertex 39820 0.478365 0.108237 0.652198 Vertex 39821 0.584001 0.506636 0.317757 Vertex 39822 0.553618 0.0353879 0.778871 Vertex 39823 0.42114 0.318544 0.643485 Vertex 39824 0.620289 0.451224 0.199197 Vertex 39825 0.390229 0.269392 0.196674 Vertex 39826 0.389116 0.272632 0.196046 Vertex 39827 0.452346 0.178035 0.609057 Vertex 39828 0.389163 0.353559 0.306344 Vertex 39829 0.308621 0.994142 0.20904 Vertex 39830 0.515577 0.3837 0.442204 Vertex 39831 0.340988 0.266727 0.201755 Vertex 39832 0.369346 0.421729 0.345747 Vertex 39833 0.411172 0.240288 0.457721 Vertex 39834 0.513285 0.507288 0.597372 Vertex 39835 0.442988 0.507033 0.431638 Vertex 39836 0.458743 0.76044 0.409996 Vertex 39837 0.381268 0.241739 0.231404 Vertex 39838 0.546096 0.0708054 0.754079 Vertex 39839 0.502547 0.0469549 0.676374 Vertex 39840 0.622812 0.520537 0.212967 Vertex 39841 0.413665 0.22133 0.470781 Vertex 39842 0.548791 0.00146882 0.743726 Vertex 39843 0.549549 0.00209071 0.741659 Vertex 39844 0.442035 0.100916 0.66261 Vertex 39845 0.454206 0.303039 0.423518 Vertex 39846 0.524224 0.0250766 0.644611 Vertex 39847 0.601882 0.526963 0.256955 Vertex 39848 0.578398 0.418146 0.441185 Vertex 39849 0.385574 0.271216 0.606954 Vertex 39850 0.41299 0.26405 0.694 Vertex 39851 0.48591 0.510735 0.597597 Vertex 39852 0.407731 0.841338 0.364581 Vertex 39853 0.365982 0.903265 0.351664 Vertex 39854 0.541364 0.0171876 0.731378 Vertex 39855 0.369583 0.365233 0.302103 Vertex 39856 0.371105 0.364516 0.304289 Vertex 39857 0.371786 0.162832 0.464277 Vertex 39858 0.339887 0.922632 0.31181 Vertex 39859 0.567335 0.402889 0.408024 Vertex 39860 0.371603 0.247319 0.202188 Vertex 39861 0.490915 0.182264 0.532394 Vertex 39862 0.476919 0.356224 0.419046 Vertex 39863 0.455989 0.838418 0.408545 Vertex 39864 0.513148 0.167061 0.788448 Vertex 39865 0.462385 0.234928 0.76657 Vertex 39866 0.433483 0.287812 0.638955 Vertex 39867 0.436776 0.29098 0.639156 Vertex 39868 0.520214 0.100265 0.677333 Vertex 39869 0.340603 0.091588 0.459308 Vertex 39870 0.343926 0.107828 0.454635 Vertex 39871 0.652668 0.505333 0.207358 Vertex 39872 0.654469 0.503716 0.202597 Vertex 39873 0.525308 0.124773 0.744461 Vertex 39874 0.618672 0.492398 0.24242 Vertex 39875 0.404373 0.291987 0.220548 Vertex 39876 0.517928 0.332273 0.480979 Vertex 39877 0.396839 0.426799 0.364066 Vertex 39878 0.493325 0.10617 0.806862 Vertex 39879 0.52542 0.607588 0.431703 Vertex 39880 0.534209 0.096646 0.785155 Vertex 39881 0.626798 0.469282 0.185871 Vertex 39882 0.480272 0.629206 0.533182 Vertex 39883 0.47394 0.218333 0.484995 Vertex 39884 0.593916 0.426858 0.3561 Vertex 39885 0.473289 0.793921 0.476697 Vertex 39886 0.522293 0.447581 0.411696 Vertex 39887 0.370051 0.300522 0.478812 Vertex 39888 0.619952 0.475655 0.219358 Vertex 39889 0.420891 0.194246 0.774631 Vertex 39890 0.48649 0.0716464 0.699851 Vertex 39891 0.519569 0.109528 0.793814 Vertex 39892 0.355475 0.26055 0.524458 Vertex 39893 0.422763 0.545874 0.530333 Vertex 39894 0.531467 0.691862 0.476336 Vertex 39895 0.533392 0.528343 0.422333 Vertex 39896 0.550503 0.155458 0.427219 Vertex 39897 0.551332 0.157336 0.429423 Vertex 39898 0.523791 0.153338 0.764462 Vertex 39899 0.513373 0.290435 0.544796 Vertex 39900 0.399682 0.17386 0.489739 Vertex 39901 0.603315 0.446225 0.209893 Vertex 39902 0.387233 0.35228 0.447658 Vertex 39903 0.519545 0.0873415 0.671618 Vertex 39904 0.416242 0.350254 0.434818 Vertex 39905 0.523738 0.316898 0.522408 Vertex 39906 0.523424 0.315897 0.520146 Vertex 39907 0.503305 0.144158 0.702049 Vertex 39908 0.424563 0.172948 0.499369 Vertex 39909 0.439962 0.418193 0.639144 Vertex 39910 0.572529 0.50188 0.395243 Vertex 39911 0.480307 0.171236 0.532394 Vertex 39912 0.450143 0.175098 0.798866 Vertex 39913 0.465039 0.0722446 0.65478 Vertex 39914 0.357116 0.403422 0.43406 Vertex 39915 0.39938 0.338924 0.252513 Vertex 39916 0.36167 0.238085 0.225067 Vertex 39917 0.466294 0.371173 0.629502 Vertex 39918 0.357892 0.932837 0.289849 Vertex 39919 0.318577 0.951908 0.223788 Vertex 39920 0.458464 0.537932 0.428593 Vertex 39921 0.420802 0.394473 0.352807 Vertex 39922 0.398823 0.882127 0.395077 Vertex 39923 0.606146 0.51847 0.324745 Vertex 39924 0.471938 0.709369 0.424453 Vertex 39925 0.551509 0.462945 0.35626 Vertex 39926 0.570035 0.537541 0.488187 Vertex 39927 0.570598 0.537316 0.485931 Vertex 39928 0.571516 0.517789 0.499203 Vertex 39929 0.457878 0.0726829 0.685045 Vertex 39930 0.52821 0.585929 0.549753 Vertex 39931 0.377277 0.476839 0.523143 Vertex 39932 0.420245 0.407894 0.344509 Vertex 39933 0.453146 0.134664 0.800661 Vertex 39934 0.473342 0.293154 0.433266 Vertex 39935 0.505348 0.298816 0.46073 Vertex 39936 0.592761 0.507507 0.261527 Vertex 39937 0.360521 0.402392 0.36653 Vertex 39938 0.501102 0.276411 0.588292 Vertex 39939 0.383791 0.208975 0.628762 Vertex 39940 0.352917 0.218523 0.515923 Vertex 39941 0.461207 0.130393 0.808319 Vertex 39942 0.487337 0.583139 0.401237 Vertex 39943 0.381523 0.348205 0.287273 Vertex 39944 0.580128 0.504344 0.478439 Vertex 39945 0.445055 0.105571 0.718502 Vertex 39946 0.498371 0.303519 0.44982 Vertex 39947 0.515298 0.506435 0.406324 Vertex 39948 0.54683 0.423796 0.392057 Vertex 39949 0.321011 0.961935 0.209449 Vertex 39950 0.484358 0.788745 0.474316 Vertex 39951 0.378497 0.175968 0.519962 Vertex 39952 0.447365 0.176104 0.588345 Vertex 39953 0.606199 0.451982 0.322803 Vertex 39954 0.484808 0.612042 0.416298 Vertex 39955 0.395613 0.483834 0.577306 Vertex 39956 0.454022 0.36916 0.634406 Vertex 39957 0.661215 0.464497 0.217391 Vertex 39958 0.514593 0.166504 0.758172 Vertex 39959 0.444866 0.291644 0.427622 Vertex 39960 0.395015 0.852046 0.38508 Vertex 39961 0.579275 0.496171 0.412377 Vertex 39962 0.594786 0.440972 0.184651 Vertex 39963 0.389495 0.455879 0.413508 Vertex 39964 0.5181 0.384476 0.534378 Vertex 39965 0.439198 0.223095 0.46561 Vertex 39966 0.437214 0.851146 0.421901 Vertex 39967 0.518117 0.481062 0.409303 Vertex 39968 0.524318 0.483366 0.411483 Vertex 39969 0.550775 0.14655 0.43194 Vertex 39970 0.529205 0.129848 0.77684 Vertex 39971 0.385148 0.205398 0.671203 Vertex 39972 0.507711 0.169193 0.78249 Vertex 39973 0.492638 0.0385447 0.674153 Vertex 39974 0.454342 0.180594 0.615276 Vertex 39975 0.370892 0.302577 0.590549 Vertex 39976 0.606614 0.493713 0.204178 Vertex 39977 0.425084 0.395101 0.405252 Vertex 39978 0.634279 0.448861 0.196283 Vertex 39979 0.566565 0.439604 0.334743 Vertex 39980 0.554358 0.482016 0.381366 Vertex 39981 0.36908 0.313966 0.248734 Vertex 39982 0.495297 0.587617 0.399324 Vertex 39983 0.419647 0.261776 0.219298 Vertex 39984 0.352745 0.29955 0.234561 Vertex 39985 0.473911 0.124026 0.811351 Vertex 39986 0.389335 0.249782 0.675343 Vertex 39987 0.480301 0.656545 0.420823 Vertex 39988 0.480923 0.515899 0.401551 Vertex 39989 0.304647 0.979454 0.236954 Vertex 39990 0.406215 0.871431 0.408681 Vertex 39991 0.562111 0.529723 0.457804 Vertex 39992 0.594076 0.426408 0.195697 Vertex 39993 0.559452 0.460286 0.33126 Vertex 39994 0.56092 0.457727 0.330757 Vertex 39995 0.393582 0.867865 0.329874 Vertex 39996 0.526948 0.697518 0.451479 Vertex 39997 0.446945 0.473144 0.614624 Vertex 39998 0.410041 0.824529 0.394141 Vertex 39999 0.352715 0.139976 0.47376 Vertex 40000 0.601526 0.433788 0.377967 Vertex 40001 0.380664 0.443216 0.414811 Vertex 40002 0.404349 0.395385 0.279212 Vertex 40003 0.492928 0.627921 0.403073 Vertex 40004 0.665071 0.416357 0.229776 Vertex 40005 0.356417 0.407408 0.445408 Vertex 40006 0.570284 0.403647 0.387366 Vertex 40007 0.460531 0.260076 0.442026 Vertex 40008 0.590599 0.472682 0.45152 Vertex 40009 0.531283 0.489064 0.411234 Vertex 40010 0.400405 0.168375 0.626221 Vertex 40011 0.522133 0.0485777 0.638025 Vertex 40012 0.55193 0.459522 0.349336 Vertex 40013 0.553103 0.459581 0.344865 Vertex 40014 0.48373 0.593925 0.416351 Vertex 40015 0.567145 0.521182 0.445319 Vertex 40016 0.347231 0.901548 0.320896 Vertex 40017 0.41328 0.15316 0.643089 Vertex 40018 0.469196 0.545116 0.579248 Vertex 40019 0.464417 0.546052 0.576956 Vertex 40020 0.397479 0.257168 0.203414 Vertex 40021 0.515251 0.516486 0.40203 Vertex 40022 0.451375 0.486233 0.412857 Vertex 40023 0.365372 0.227489 0.205291 Vertex 40024 0.535666 0.62278 0.524067 Vertex 40025 0.538071 0.621897 0.519915 Vertex 40026 0.467905 0.39821 0.624012 Vertex 40027 0.532249 0.162719 0.436476 Vertex 40028 0.534956 0.162056 0.435416 Vertex 40029 0.446767 0.432117 0.397067 Vertex 40030 0.392681 0.182767 0.653009 Vertex 40031 0.538799 0.00916237 0.756342 Vertex 40032 0.553902 0.47264 0.372719 Vertex 40033 0.635321 0.480985 0.23048 Vertex 40034 0.451156 0.170798 0.623603 Vertex 40035 0.403034 0.36191 0.349893 Vertex 40036 0.471263 0.194358 0.483301 Vertex 40037 0.418557 0.266022 0.669219 Vertex 40038 0.472306 0.254515 0.611035 Vertex 40039 0.385633 0.385915 0.238067 Vertex 40040 0.582805 0.495816 0.478486 Vertex 40041 0.435508 0.557228 0.547615 Vertex 40042 0.596474 0.499689 0.385038 Vertex 40043 0.449841 0.277376 0.634216 Vertex 40044 0.486372 0.205919 0.565472 Vertex 40045 0.493023 0.583779 0.570524 Vertex 40046 0.391355 0.351095 0.298064 Vertex 40047 0.445494 0.094117 0.704341 Vertex 40048 0.658769 0.412436 0.213127 Vertex 40049 0.354249 0.270891 0.536872 Vertex 40050 0.466774 0.783094 0.384156 Vertex 40051 0.512988 0.297033 0.482567 Vertex 40052 0.547369 0.503888 0.410381 Vertex 40053 0.456889 0.158408 0.513678 Vertex 40054 0.358283 0.888269 0.329247 Vertex 40055 0.360693 0.885556 0.327292 Vertex 40056 0.670946 0.46975 0.194328 Vertex 40057 0.659148 0.414545 0.211356 Vertex 40058 0.55559 0.530617 0.457478 Vertex 40059 0.420133 0.385127 0.408788 Vertex 40060 0.376062 0.391304 0.561385 Vertex 40061 0.377395 0.39436 0.561403 Vertex 40062 0.426488 0.381467 0.642532 Vertex 40063 0.399013 0.293592 0.440652 Vertex 40064 0.409146 0.167357 0.615252 Vertex 40065 0.456089 0.66454 0.45152 Vertex 40066 0.536152 0.672654 0.463632 Vertex 40067 0.682187 0.469578 0.217753 Vertex 40068 0.436213 0.146616 0.598686 Vertex 40069 0.363435 0.241402 0.229562 Vertex 40070 0.601526 0.514051 0.20159 Vertex 40071 0.520256 0.317087 0.486612 Vertex 40072 0.555454 0.416316 0.380963 Vertex 40073 0.435028 0.252134 0.4451 Vertex 40074 0.484631 0.200571 0.732621 Vertex 40075 0.367403 0.209183 0.213867 Vertex 40076 0.503743 0.419319 0.412022 Vertex 40077 0.489635 0.677819 0.405483 Vertex 40078 0.488966 0.673632 0.405157 Vertex 40079 0.540321 0.543825 0.432165 Vertex 40080 0.442165 0.793323 0.399335 Vertex 40081 0.38696 0.427279 0.383202 Vertex 40082 0.383999 0.349751 0.381188 Vertex 40083 0.650933 0.442221 0.226506 Vertex 40084 0.490897 0.533993 0.384576 Vertex 40085 0.519314 0.472593 0.40928 Vertex 40086 0.421276 0.392293 0.314274 Vertex 40087 0.517667 0.724087 0.442707 Vertex 40088 0.479662 0.684731 0.421178 Vertex 40089 0.477642 0.689575 0.422878 Vertex 40090 0.427761 0.464751 0.406993 Vertex 40091 0.421466 0.137287 0.688124 Vertex 40092 0.424178 0.868825 0.360886 Vertex 40093 0.358466 0.279431 0.198196 Vertex 40094 0.372444 0.243984 0.235408 Vertex 40095 0.340414 0.945399 0.264808 Vertex 40096 0.53229 0.599059 0.435677 Vertex 40097 0.595278 0.449678 0.195335 Vertex 40098 0.582479 0.430856 0.334417 Vertex 40099 0.586429 0.431999 0.333843 Vertex 40100 0.603439 0.505837 0.246448 Vertex 40101 0.475095 0.292597 0.627956 Vertex 40102 0.403366 0.505973 0.468802 Vertex 40103 0.646846 0.508514 0.210758 Vertex 40104 0.448485 0.202052 0.471254 Vertex 40105 0.597428 0.4564 0.193843 Vertex 40106 0.435283 0.254609 0.67741 Vertex 40107 0.451985 0.116434 0.648449 Vertex 40108 0.385604 0.884923 0.380537 Vertex 40109 0.400049 0.179628 0.70023 Vertex 40110 0.566565 0.498925 0.356195 Vertex 40111 0.401032 0.260662 0.692531 Vertex 40112 0.339774 0.246649 0.220003 Vertex 40113 0.56445 0.528396 0.51093 Vertex 40114 0.449101 0.182702 0.590442 Vertex 40115 0.394577 0.292254 0.23802 Vertex 40116 0.401139 0.274278 0.230534 Vertex 40117 0.455716 0.672305 0.455962 Vertex 40118 0.505958 0.260621 0.521816 Vertex 40119 0.354237 0.285401 0.526122 Vertex 40120 0.344501 0.903857 0.318882 Vertex 40121 0.392314 0.356213 0.383066 Vertex 40122 0.556425 0.544263 0.478533 Vertex 40123 0.599323 0.521573 0.271459 Vertex 40124 0.5994 0.520264 0.269067 Vertex 40125 0.457961 0.729376 0.466155 Vertex 40126 0.502748 0.409108 0.598609 Vertex 40127 0.433358 0.259833 0.704364 Vertex 40128 0.43074 0.14976 0.72289 Vertex 40129 0.480556 0.0716761 0.704299 Vertex 40130 0.438831 0.0998857 0.663486 Vertex 40131 0.359224 0.228698 0.503865 Vertex 40132 0.408957 0.2636 0.704341 Vertex 40133 0.372023 0.37539 0.555167 Vertex 40134 0.362642 0.0942532 0.470135 Vertex 40135 0.570746 0.503373 0.366654 Vertex 40136 0.508831 0.712852 0.423162 Vertex 40137 0.63082 0.516906 0.208827 Vertex 40138 0.425096 0.195134 0.480275 Vertex 40139 0.598038 0.458373 0.305704 Vertex 40140 0.597398 0.52807 0.212849 Vertex 40141 0.501647 0.458574 0.607233 Vertex 40142 0.420518 0.543078 0.547763 Vertex 40143 0.505431 0.423612 0.421925 Vertex 40144 0.462545 0.232411 0.772753 Vertex 40145 0.397396 0.201673 0.725094 Vertex 40146 0.559724 0.00935189 0.760132 Vertex 40147 0.560642 0.0110695 0.758119 Vertex 40148 0.544864 0.445793 0.377439 Vertex 40149 0.422182 0.150684 0.625652 Vertex 40150 0.479259 0.103256 0.783171 Vertex 40151 0.372651 0.0991513 0.477171 Vertex 40152 0.365798 0.253235 0.574854 Vertex 40153 0.528263 0.526833 0.582346 Vertex 40154 0.558771 0.400662 0.404737 Vertex 40155 0.556295 0.0472214 0.750194 Vertex 40156 0.500752 0.379524 0.602773 Vertex 40157 0.561904 0.530114 0.515805 Vertex 40158 0.561655 0.530576 0.515923 Vertex 40159 0.370525 0.366542 0.553082 Vertex 40160 0.369921 0.36393 0.551033 Vertex 40161 0.379367 0.229118 0.592396 Vertex 40162 0.481083 0.146396 0.797125 Vertex 40163 0.54596 0.152941 0.423897 Vertex 40164 0.384988 0.215395 0.696061 Vertex 40165 0.470612 0.107147 0.779091 Vertex 40166 0.519178 0.183069 0.463774 Vertex 40167 0.475379 0.176892 0.696884 Vertex 40168 0.46646 0.19376 0.683647 Vertex 40169 0.466815 0.193458 0.68158 Vertex 40170 0.439571 0.250949 0.689866 Vertex 40171 0.521772 0.376125 0.513761 Vertex 40172 0.461994 0.114805 0.780749 Vertex 40173 0.400849 0.350935 0.223213 Vertex 40174 0.514404 0.748311 0.465965 Vertex 40175 0.504797 0.66245 0.544826 Vertex 40176 0.503536 0.666051 0.544364 Vertex 40177 0.428052 0.525926 0.476608 Vertex 40178 0.490684 0.126692 0.643811 Vertex 40179 0.383335 0.227898 0.650504 Vertex 40180 0.430924 0.103883 0.668627 Vertex 40181 0.461396 0.0668668 0.677245 Vertex 40182 0.439778 0.447735 0.404707 Vertex 40183 0.491554 0.763324 0.48904 Vertex 40184 0.377531 0.329987 0.264482 Vertex 40185 0.459163 0.146616 0.796172 Vertex 40186 0.529252 0.0415593 0.651896 Vertex 40187 0.448301 0.175086 0.600771 Vertex 40188 0.416449 0.388556 0.361496 Vertex 40189 0.542146 0.642099 0.472753 Vertex 40190 0.553197 0.550571 0.465095 Vertex 40191 0.599986 0.442956 0.33129 Vertex 40192 0.432713 0.863554 0.399051 Vertex 40193 0.508505 0.298082 0.470739 Vertex 40194 0.436764 0.802248 0.447404 Vertex 40195 0.494261 0.630604 0.403073 Vertex 40196 0.387375 0.340796 0.457395 Vertex 40197 0.389762 0.340624 0.455453 Vertex 40198 0.504199 0.0425129 0.751888 Vertex 40199 0.372142 0.307161 0.246691 Vertex 40200 0.445026 0.124571 0.644119 Vertex 40201 0.499473 0.611497 0.406608 Vertex 40202 0.32771 0.96107 0.239566 Vertex 40203 0.368529 0.0955029 0.467796 Vertex 40204 0.414826 0.17598 0.553106 Vertex 40205 0.602107 0.47867 0.285425 Vertex 40206 0.458968 0.358244 0.410731 Vertex 40207 0.464085 0.516965 0.595074 Vertex 40208 0.417172 0.397754 0.373086 Vertex 40209 0.433583 0.786174 0.42058 Vertex 40210 0.379195 0.178853 0.49918 Vertex 40211 0.383981 0.178278 0.494406 Vertex 40212 0.422336 0.138875 0.667022 Vertex 40213 0.484335 0.40713 0.618871 Vertex 40214 0.535868 0.569126 0.43682 Vertex 40215 0.495866 0.188957 0.456608 Vertex 40216 0.394606 0.295292 0.196638 Vertex 40217 0.394819 0.293687 0.195821 Vertex 40218 0.384105 0.288653 0.611059 Vertex 40219 0.52757 0.122759 0.764367 Vertex 40220 0.549472 0.413195 0.395729 Vertex 40221 0.507593 0.639245 0.416061 Vertex 40222 0.508232 0.640903 0.416239 Vertex 40223 0.587436 0.465663 0.463573 Vertex 40224 0.424178 0.136458 0.672678 Vertex 40225 0.428602 0.43637 0.613209 Vertex 40226 0.576154 0.416653 0.447386 Vertex 40227 0.352846 0.264879 0.208472 Vertex 40228 0.35053 0.265134 0.207086 Vertex 40229 0.592992 0.47851 0.289032 Vertex 40230 0.384129 0.351818 0.349964 Vertex 40231 0.385995 0.352469 0.351978 Vertex 40232 0.549952 0.143707 0.414746 Vertex 40233 0.325133 0.932067 0.248023 Vertex 40234 0.456421 0.183531 0.62978 Vertex 40235 0.387991 0.196899 0.573249 Vertex 40236 0.494859 0.0707284 0.697891 Vertex 40237 0.625685 0.490645 0.289849 Vertex 40238 0.375387 0.350592 0.287575 Vertex 40239 0.546955 0.131791 0.443187 Vertex 40240 0.474852 0.241212 0.602732 Vertex 40241 0.376832 0.340346 0.399975 Vertex 40242 0.490778 0.640767 0.403049 Vertex 40243 0.555454 0.44375 0.346399 Vertex 40244 0.527896 0.127047 0.712692 Vertex 40245 0.527831 0.125306 0.714694 Vertex 40246 0.499443 0.0308452 0.669895 Vertex 40247 0.453821 0.739456 0.453664 Vertex 40248 0.351081 0.896324 0.323004 Vertex 40249 0.410941 0.170312 0.522029 Vertex 40250 0.615835 0.501898 0.186736 Vertex 40251 0.484358 0.316442 0.628697 Vertex 40252 0.4671 0.502775 0.608015 Vertex 40253 0.523993 0.129535 0.758124 Vertex 40254 0.471767 0.186973 0.569689 Vertex 40255 0.506627 0.628744 0.556659 Vertex 40256 0.523531 0.156027 0.791576 Vertex 40257 0.417687 0.815391 0.397624 Vertex 40258 0.474278 0.779665 0.487589 Vertex 40259 0.373492 0.342365 0.394437 Vertex 40260 0.451351 0.190751 0.598722 Vertex 40261 0.387096 0.311295 0.246507 Vertex 40262 0.35865 0.387461 0.362396 Vertex 40263 0.495321 0.521248 0.387828 Vertex 40264 0.403508 0.349514 0.22512 Vertex 40265 0.362014 0.230492 0.228064 Vertex 40266 0.397698 0.504942 0.482069 Vertex 40267 0.424 0.39163 0.330716 Vertex 40268 0.462729 0.604425 0.439308 Vertex 40269 0.499058 0.395521 0.442914 Vertex 40270 0.495801 0.265341 0.592485 Vertex 40271 0.498099 0.592539 0.400396 Vertex 40272 0.501564 0.192587 0.460866 Vertex 40273 0.459134 0.173652 0.654549 Vertex 40274 0.505668 0.713752 0.419561 Vertex 40275 0.540505 0.0683831 0.778954 Vertex 40276 0.584019 0.409706 0.372648 Vertex 40277 0.534494 0.625753 0.443732 Vertex 40278 0.535643 0.0478255 0.783823 Vertex 40279 0.455752 0.123878 0.638149 Vertex 40280 0.39139 0.252827 0.673306 Vertex 40281 0.355072 0.0889228 0.450685 Vertex 40282 0.595331 0.513051 0.227815 Vertex 40283 0.546055 0.0140604 0.767168 Vertex 40284 0.394956 0.339102 0.44555 Vertex 40285 0.484246 0.476052 0.387164 Vertex 40286 0.484654 0.474618 0.386098 Vertex 40287 0.484749 0.405738 0.387271 Vertex 40288 0.46601 0.145626 0.798132 Vertex 40289 0.373231 0.360915 0.329223 Vertex 40290 0.466904 0.195377 0.482661 Vertex 40291 0.407778 0.425922 0.330135 Vertex 40292 0.382186 0.438247 0.408273 Vertex 40293 0.481829 0.764835 0.497527 Vertex 40294 0.603386 0.463436 0.299473 Vertex 40295 0.518579 0.304745 0.538601 Vertex 40296 0.568567 0.478237 0.321512 Vertex 40297 0.36138 0.290151 0.1971 Vertex 40298 0.522115 0.139354 0.710512 Vertex 40299 0.507658 0.363977 0.592396 Vertex 40300 0.510051 0.161511 0.464585 Vertex 40301 0.35069 0.167493 0.474695 Vertex 40302 0.347805 0.306131 0.213317 Vertex 40303 0.516797 0.667922 0.427356 Vertex 40304 0.516512 0.671665 0.426361 Vertex 40305 0.417545 0.408788 0.317443 Vertex 40306 0.37916 0.394491 0.577951 Vertex 40307 0.463268 0.785837 0.480506 Vertex 40308 0.319146 0.947443 0.229799 Vertex 40309 0.575952 0.45232 0.495052 Vertex 40310 0.577155 0.449808 0.488821 Vertex 40311 0.43931 0.146207 0.600866 Vertex 40312 0.552155 0.401882 0.490924 Vertex 40313 0.354249 0.187814 0.462353 Vertex 40314 0.401417 0.427592 0.350373 Vertex 40315 0.464654 0.14353 0.798973 Vertex 40316 0.372029 0.340808 0.492985 Vertex 40317 0.409922 0.149121 0.655674 Vertex 40318 0.527937 0.0841847 0.712763 Vertex 40319 0.527647 0.0825856 0.711845 Vertex 40320 0.519426 0.365896 0.457994 Vertex 40321 0.576154 0.502384 0.333191 Vertex 40322 0.511656 0.350136 0.586142 Vertex 40323 0.450984 0.0922099 0.733682 Vertex 40324 0.396561 0.332131 0.252519 Vertex 40325 0.408726 0.240152 0.203254 Vertex 40326 0.359432 0.206855 0.538814 Vertex 40327 0.393629 0.20352 0.475797 Vertex 40328 0.370649 0.368561 0.551015 Vertex 40329 0.380262 0.079488 0.476247 Vertex 40330 0.363749 0.224143 0.224658 Vertex 40331 0.62713 0.461908 0.185918 Vertex 40332 0.422727 0.405578 0.379791 Vertex 40333 0.548655 0.568303 0.455956 Vertex 40334 0.503773 0.603282 0.565099 Vertex 40335 0.415661 0.498256 0.443252 Vertex 40336 0.425268 0.23863 0.214134 Vertex 40337 0.41052 0.172338 0.60285 Vertex 40338 0.540505 0.126022 0.435404 Vertex 40339 0.316972 0.980023 0.238014 Vertex 40340 0.588721 0.5047 0.283139 Vertex 40341 0.362197 0.321618 0.505558 Vertex 40342 0.616659 0.53718 0.254686 Vertex 40343 0.453489 0.743596 0.433 Vertex 40344 0.421513 0.535338 0.559733 Vertex 40345 0.353846 0.403949 0.462157 Vertex 40346 0.527819 0.0369633 0.729773 Vertex 40347 0.503192 0.0627565 0.637047 Vertex 40348 0.32447 0.933488 0.287344 Vertex 40349 0.595604 0.45428 0.407538 Vertex 40350 0.436545 0.200423 0.795881 Vertex 40351 0.49708 0.419964 0.400313 Vertex 40352 0.40901 0.182821 0.739592 Vertex 40353 0.436237 0.137856 0.630781 Vertex 40354 0.465127 0.372512 0.406982 Vertex 40355 0.467046 0.373104 0.407035 Vertex 40356 0.400754 0.187269 0.716796 Vertex 40357 0.312891 0.944605 0.241005 Vertex 40358 0.383335 0.21488 0.606404 Vertex 40359 0.494356 0.722754 0.407888 Vertex 40360 0.5242 0.34204 0.509225 Vertex 40361 0.362701 0.248254 0.224333 Vertex 40362 0.374688 0.423761 0.358262 Vertex 40363 0.51688 0.406496 0.440344 Vertex 40364 0.5639 0.409049 0.478486 Vertex 40365 0.452417 0.598053 0.455684 Vertex 40366 0.524934 0.0492351 0.643604 Vertex 40367 0.470215 0.784391 0.486239 Vertex 40368 0.470256 0.168612 0.548865 Vertex 40369 0.471086 0.167031 0.544772 Vertex 40370 0.531597 0.678619 0.495069 Vertex 40371 0.510501 0.283755 0.483029 Vertex 40372 0.598079 0.443584 0.183851 Vertex 40373 0.44072 0.253958 0.741689 Vertex 40374 0.508813 0.368609 0.452426 Vertex 40375 0.510211 0.366956 0.450863 Vertex 40376 0.595876 0.439716 0.209508 Vertex 40377 0.419008 0.173522 0.546952 Vertex 40378 0.473573 0.230084 0.475921 Vertex 40379 0.44367 0.536196 0.445591 Vertex 40380 0.587211 0.431063 0.201134 Vertex 40381 0.541826 0.583039 0.444437 Vertex 40382 0.54365 0.642005 0.48525 Vertex 40383 0.359888 0.299574 0.492801 Vertex 40384 0.55225 0.00829173 0.766244 Vertex 40385 0.441662 0.504629 0.433409 Vertex 40386 0.47137 0.475252 0.394112 Vertex 40387 0.535092 0.40004 0.521935 Vertex 40388 0.458275 0.552312 0.432615 Vertex 40389 0.673475 0.472676 0.196609 Vertex 40390 0.509956 0.0603342 0.633417 Vertex 40391 0.3539 0.929899 0.323431 Vertex 40392 0.433311 0.810872 0.385405 Vertex 40393 0.412943 0.362822 0.435784 Vertex 40394 0.456711 0.494667 0.607286 Vertex 40395 0.592761 0.471053 0.440326 Vertex 40396 0.504335 0.109551 0.796758 Vertex 40397 0.364797 0.356811 0.372583 Vertex 40398 0.584872 0.47845 0.476383 Vertex 40399 0.500503 0.455624 0.3907 Vertex 40400 0.464369 0.527271 0.420876 Vertex 40401 0.443865 0.457508 0.619901 Vertex 40402 0.524709 0.341821 0.513323 Vertex 40403 0.334225 0.915638 0.301949 Vertex 40404 0.444753 0.583311 0.480506 Vertex 40405 0.49679 0.40299 0.416837 Vertex 40406 0.586044 0.494145 0.287984 Vertex 40407 0.502245 0.0414527 0.747807 Vertex 40408 0.646308 0.442837 0.225559 Vertex 40409 0.56987 0.50117 0.399715 Vertex 40410 0.45754 0.0809806 0.660874 Vertex 40411 0.418937 0.236273 0.198486 Vertex 40412 0.369056 0.328317 0.58815 Vertex 40413 0.377188 0.392607 0.565531 Vertex 40414 0.525325 0.398483 0.46105 Vertex 40415 0.405297 0.184017 0.561403 Vertex 40416 0.41803 0.171218 0.56347 Vertex 40417 0.487177 0.683226 0.407835 Vertex 40418 0.410254 0.349858 0.440042 Vertex 40419 0.425434 0.264127 0.704364 Vertex 40420 0.33946 0.908181 0.308464 Vertex 40421 0.376566 0.221561 0.22656 Vertex 40422 0.438244 0.257275 0.735458 Vertex 40423 0.505455 0.315157 0.454783 Vertex 40424 0.372278 0.337467 0.495052 Vertex 40425 0.358229 0.275718 0.51138 Vertex 40426 0.363619 0.265027 0.202277 Vertex 40427 0.467834 0.12453 0.81195 Vertex 40428 0.603072 0.531814 0.260716 Vertex 40429 0.440098 0.773665 0.433118 Vertex 40430 0.526042 0.603827 0.433148 Vertex 40431 0.63262 0.446823 0.197698 Vertex 40432 0.357915 0.360258 0.441185 Vertex 40433 0.440596 0.133301 0.739539 Vertex 40434 0.60107 0.532364 0.264672 Vertex 40435 0.372763 0.0749394 0.474328 Vertex 40436 0.543105 0.613102 0.459581 Vertex 40437 0.508914 0.0476004 0.671742 Vertex 40438 0.490725 0.729163 0.403985 Vertex 40439 0.413434 0.183911 0.749945 Vertex 40440 0.505396 0.193239 0.484355 Vertex 40441 0.514617 0.372832 0.573793 Vertex 40442 0.396152 0.341696 0.264779 Vertex 40443 0.452944 0.11147 0.65921 Vertex 40444 0.348261 0.109907 0.469951 Vertex 40445 0.518609 0.382829 0.515834 Vertex 40446 0.518514 0.384635 0.517895 Vertex 40447 0.638057 0.44417 0.191278 Vertex 40448 0.576645 0.407757 0.371292 Vertex 40449 0.447869 0.429322 0.395308 Vertex 40450 0.506219 0.0496674 0.676611 Vertex 40451 0.596095 0.466244 0.401006 Vertex 40452 0.527623 0.0541094 0.658825 Vertex 40453 0.45086 0.638842 0.458296 Vertex 40454 0.523951 0.714658 0.484705 Vertex 40455 0.522867 0.714297 0.488803 Vertex 40456 0.611666 0.481015 0.221525 Vertex 40457 0.457623 0.816463 0.460226 Vertex 40458 0.407251 0.249492 0.220057 Vertex 40459 0.525852 0.149731 0.443963 Vertex 40460 0.464796 0.239838 0.613292 Vertex 40461 0.475208 0.421149 0.616472 Vertex 40462 0.612536 0.498481 0.241793 Vertex 40463 0.493254 0.274681 0.456104 Vertex 40464 0.441075 0.430009 0.398453 Vertex 40465 0.358514 0.385897 0.358244 Vertex 40466 0.484945 0.173955 0.49427 Vertex 40467 0.375488 0.354169 0.459581 Vertex 40468 0.375263 0.355531 0.461926 Vertex 40469 0.616161 0.470514 0.332646 Vertex 40470 0.397911 0.255125 0.706443 Vertex 40471 0.511626 0.306853 0.467387 Vertex 40472 0.437587 0.447907 0.40437 Vertex 40473 0.376039 0.225476 0.230865 Vertex 40474 0.366326 0.37035 0.325089 Vertex 40475 0.697912 0.453457 0.209206 Vertex 40476 0.368321 0.413443 0.37481 Vertex 40477 0.45025 0.482016 0.609726 Vertex 40478 0.409366 0.24476 0.194731 Vertex 40479 0.528944 0.147255 0.786944 Vertex 40480 0.478797 0.472498 0.38579 Vertex 40481 0.478157 0.076355 0.725875 Vertex 40482 0.38696 0.305426 0.241793 Vertex 40483 0.456338 0.659394 0.449483 Vertex 40484 0.401062 0.353654 0.44343 Vertex 40485 0.465056 0.441386 0.379951 Vertex 40486 0.526451 0.128569 0.764456 Vertex 40487 0.464535 0.229136 0.758267 Vertex 40488 0.634504 0.516036 0.264832 Vertex 40489 0.450273 0.348099 0.637794 Vertex 40490 0.590409 0.519109 0.310383 Vertex 40491 0.390146 0.170419 0.503397 Vertex 40492 0.468663 0.441985 0.375532 Vertex 40493 0.464873 0.767281 0.389652 Vertex 40494 0.48084 0.217557 0.494228 Vertex 40495 0.529613 0.0692241 0.711797 Vertex 40496 0.459761 0.233921 0.619528 Vertex 40497 0.530253 0.452474 0.584128 Vertex 40498 0.385171 0.342093 0.457703 Vertex 40499 0.382186 0.239743 0.60834 Vertex 40500 0.461882 0.190793 0.575973 Vertex 40501 0.527896 0.126431 0.766742 Vertex 40502 0.413115 0.17319 0.725123 Vertex 40503 0.414364 0.172184 0.729251 Vertex 40504 0.495801 0.741144 0.501247 Vertex 40505 0.356553 0.317484 0.548308 Vertex 40506 0.375914 0.352535 0.602957 Vertex 40507 0.37682 0.355881 0.605047 Vertex 40508 0.339454 0.949509 0.265554 Vertex 40509 0.457991 0.532797 0.427871 Vertex 40510 0.555507 0.019071 0.774548 Vertex 40511 0.592856 0.516172 0.226897 Vertex 40512 0.405006 0.845188 0.36056 Vertex 40513 0.506953 0.350657 0.449767 Vertex 40514 0.433175 0.847557 0.437116 Vertex 40515 0.512254 0.3042 0.473256 Vertex 40516 0.41052 0.172758 0.530303 Vertex 40517 0.345436 0.266591 0.202431 Vertex 40518 0.525693 0.334014 0.516385 Vertex 40519 0.528766 0.164585 0.45794 Vertex 40520 0.549063 0.020451 0.722701 Vertex 40521 0.400529 0.264062 0.447522 Vertex 40522 0.496529 0.339209 0.61527 Vertex 40523 0.519888 0.388005 0.519962 Vertex 40524 0.408317 0.362911 0.308357 Vertex 40525 0.410058 0.363794 0.308482 Vertex 40526 0.522796 0.142292 0.455547 Vertex 40527 0.510963 0.273935 0.485688 Vertex 40528 0.491163 0.664019 0.530475 Vertex 40529 0.497199 0.111239 0.797492 Vertex 40530 0.35817 0.384031 0.37481 Vertex 40531 0.528417 0.664582 0.5117 Vertex 40532 0.526794 0.667543 0.511623 Vertex 40533 0.559588 0.0325569 0.737525 Vertex 40534 0.515328 0.0476834 0.772037 Vertex 40535 0.392498 0.350716 0.223598 Vertex 40536 0.680665 0.46638 0.192889 Vertex 40537 0.605003 0.520797 0.3189 Vertex 40538 0.4689 0.108018 0.778682 Vertex 40539 0.352597 0.894511 0.296334 Vertex 40540 0.508736 0.154682 0.70719 Vertex 40541 0.512663 0.149701 0.707924 Vertex 40542 0.510844 0.106087 0.707734 Vertex 40543 0.37152 0.214389 0.574255 Vertex 40544 0.465654 0.289512 0.430495 Vertex 40545 0.423207 0.38961 0.410855 Vertex 40546 0.556591 0.530943 0.459492 Vertex 40547 0.555045 0.532684 0.457887 Vertex 40548 0.556597 0.532838 0.46192 Vertex 40549 0.361487 0.322264 0.24797 Vertex 40550 0.382394 0.216538 0.615353 Vertex 40551 0.383863 0.23494 0.689901 Vertex 40552 0.43029 0.389421 0.64451 Vertex 40553 0.491489 0.224303 0.555078 Vertex 40554 0.547251 0.0436559 0.720906 Vertex 40555 0.495866 0.481145 0.392578 Vertex 40556 0.445766 0.407479 0.640489 Vertex 40557 0.352745 0.904195 0.333245 Vertex 40558 0.573565 0.506228 0.35822 Vertex 40559 0.382992 0.232559 0.22496 Vertex 40560 0.598677 0.462548 0.187387 Vertex 40561 0.600188 0.464354 0.186819 Vertex 40562 0.440886 0.318142 0.642544 Vertex 40563 0.619134 0.471521 0.353553 Vertex 40564 0.619051 0.470911 0.357717 Vertex 40565 0.480402 0.34878 0.630047 Vertex 40566 0.430652 0.555806 0.530351 Vertex 40567 0.487124 0.639162 0.410204 Vertex 40568 0.415845 0.268699 0.219215 Vertex 40569 0.500426 0.389125 0.446936 Vertex 40570 0.595645 0.475104 0.400176 Vertex 40571 0.595361 0.473345 0.402149 Vertex 40572 0.502914 0.555386 0.578573 Vertex 40573 0.502132 0.414089 0.60089 Vertex 40574 0.509305 0.0722446 0.685856 Vertex 40575 0.495108 0.191065 0.762442 Vertex 40576 0.363542 0.347098 0.545234 Vertex 40577 0.442941 0.159154 0.524067 Vertex 40578 0.624328 0.529148 0.242853 Vertex 40579 0.590516 0.445135 0.439088 Vertex 40580 0.45025 0.429618 0.629668 Vertex 40581 0.416396 0.511505 0.460694 Vertex 40582 0.313081 0.986088 0.23372 Vertex 40583 0.423112 0.808668 0.399661 Vertex 40584 0.48379 0.739462 0.503586 Vertex 40585 0.42801 0.516071 0.460416 Vertex 40586 0.513468 0.432094 0.422754 Vertex 40587 0.426754 0.261888 0.694 Vertex 40588 0.430379 0.357 0.648863 Vertex 40589 0.596474 0.520454 0.241633 Vertex 40590 0.356174 0.168227 0.450928 Vertex 40591 0.39678 0.350853 0.222597 Vertex 40592 0.382009 0.174647 0.503391 Vertex 40593 0.461319 0.659867 0.441144 Vertex 40594 0.426251 0.21597 0.786618 Vertex 40595 0.391491 0.220921 0.71467 Vertex 40596 0.430018 0.225381 0.785837 Vertex 40597 0.53293 0.414545 0.557204 Vertex 40598 0.371472 0.87887 0.352345 Vertex 40599 0.383815 0.353938 0.308263 Vertex 40600 0.45465 0.328423 0.636431 Vertex 40601 0.517111 0.565857 0.407402 Vertex 40602 0.482416 0.593818 0.420527 Vertex 40603 0.573814 0.528805 0.478456 Vertex 40604 0.583083 0.49735 0.468115 Vertex 40605 0.545818 0.0448286 0.714593 Vertex 40606 0.33413 0.915531 0.298129 Vertex 40607 0.373883 0.298863 0.598639 Vertex 40608 0.414643 0.157999 0.702297 Vertex 40609 0.365378 0.154167 0.45643 Vertex 40610 0.618809 0.532424 0.299586 Vertex 40611 0.485638 0.431359 0.374691 Vertex 40612 0.332341 0.943646 0.295452 Vertex 40613 0.382808 0.272904 0.604887 Vertex 40614 0.641842 0.440563 0.221667 Vertex 40615 0.451102 0.0780962 0.669977 Vertex 40616 0.497228 0.206867 0.506986 Vertex 40617 0.617991 0.526412 0.305118 Vertex 40618 0.475877 0.0729257 0.74914 Vertex 40619 0.543757 0.590282 0.453711 Vertex 40620 0.496464 0.775348 0.43271 Vertex 40621 0.354362 0.36021 0.414201 Vertex 40622 0.507871 0.693254 0.517895 Vertex 40623 0.495132 0.406099 0.40906 Vertex 40624 0.573808 0.506275 0.350225 Vertex 40625 0.427139 0.162299 0.760334 Vertex 40626 0.440323 0.558169 0.483781 Vertex 40627 0.440092 0.558258 0.481702 Vertex 40628 0.565872 0.508662 0.42228 Vertex 40629 0.383448 0.477882 0.455773 Vertex 40630 0.406576 0.331308 0.203414 Vertex 40631 0.528032 0.578638 0.551015 Vertex 40632 0.524591 0.389522 0.435339 Vertex 40633 0.639212 0.490639 0.190325 Vertex 40634 0.394334 0.369616 0.619327 Vertex 40635 0.461278 0.22319 0.704364 Vertex 40636 0.332549 0.279348 0.211765 Vertex 40637 0.635641 0.516723 0.242308 Vertex 40638 0.370525 0.214448 0.484326 Vertex 40639 0.43507 0.510747 0.585295 Vertex 40640 0.533161 0.0656349 0.706733 Vertex 40641 0.448117 0.481607 0.606866 Vertex 40642 0.46826 0.220619 0.725094 Vertex 40643 0.512639 0.106004 0.703328 Vertex 40644 0.411675 0.489544 0.433841 Vertex 40645 0.463647 0.320985 0.634139 Vertex 40646 0.489582 0.152479 0.659003 Vertex 40647 0.500989 0.247022 0.538583 Vertex 40648 0.539948 0.631308 0.453569 Vertex 40649 0.540955 0.634649 0.457703 Vertex 40650 0.604458 0.480393 0.2005 Vertex 40651 0.401625 0.36422 0.40203 Vertex 40652 0.371076 0.269215 0.587119 Vertex 40653 0.359201 0.215763 0.548717 Vertex 40654 0.525598 0.63774 0.528503 Vertex 40655 0.425967 0.406697 0.62461 Vertex 40656 0.671597 0.467825 0.193866 Vertex 40657 0.497779 0.692774 0.533632 Vertex 40658 0.609551 0.538755 0.256783 Vertex 40659 0.596794 0.530268 0.294238 Vertex 40660 0.437184 0.151294 0.592509 Vertex 40661 0.606892 0.451034 0.3311 Vertex 40662 0.360729 0.265803 0.503124 Vertex 40663 0.594917 0.523421 0.280705 Vertex 40664 0.393801 0.360672 0.370717 Vertex 40665 0.427483 0.799447 0.414172 Vertex 40666 0.428046 0.797202 0.414474 Vertex 40667 0.433032 0.102249 0.691382 Vertex 40668 0.3807 0.261734 0.231629 Vertex 40669 0.374825 0.386317 0.557281 Vertex 40670 0.39094 0.450969 0.408545 Vertex 40671 0.480076 0.583969 0.420379 Vertex 40672 0.363583 0.201347 0.473392 Vertex 40673 0.51916 0.0571774 0.729565 Vertex 40674 0.353373 0.308458 0.207844 Vertex 40675 0.357341 0.27082 0.557619 Vertex 40676 0.438872 0.310987 0.641803 Vertex 40677 0.442704 0.312497 0.640394 Vertex 40678 0.437463 0.833028 0.366026 Vertex 40679 0.437688 0.83676 0.368733 Vertex 40680 0.445583 0.347032 0.416197 Vertex 40681 0.552463 0.401977 0.406241 Vertex 40682 0.426831 0.843375 0.439829 Vertex 40683 0.408998 0.502579 0.45348 Vertex 40684 0.478821 0.728055 0.401989 Vertex 40685 0.38786 0.861155 0.368857 Vertex 40686 0.575609 0.431342 0.335412 Vertex 40687 0.489102 0.463348 0.607274 Vertex 40688 0.528144 0.346345 0.502757 Vertex 40689 0.621438 0.493488 0.316412 Vertex 40690 0.514593 0.406532 0.44359 Vertex 40691 0.395886 0.290311 0.195495 Vertex 40692 0.369216 0.219328 0.488276 Vertex 40693 0.36719 0.218363 0.488087 Vertex 40694 0.368564 0.360074 0.354122 Vertex 40695 0.391438 0.26485 0.452118 Vertex 40696 0.460354 0.220862 0.631599 Vertex 40697 0.537798 0.11211 0.795923 Vertex 40698 0.441395 0.484871 0.419917 Vertex 40699 0.438422 0.528775 0.451745 Vertex 40700 0.584493 0.494092 0.307919 Vertex 40701 0.361386 0.109433 0.462441 Vertex 40702 0.484808 0.348525 0.629366 Vertex 40703 0.595325 0.448014 0.207791 Vertex 40704 0.47609 0.258933 0.449127 Vertex 40705 0.532438 0.146195 0.459912 Vertex 40706 0.42525 0.147131 0.706378 Vertex 40707 0.470452 0.626588 0.430797 Vertex 40708 0.360646 0.24524 0.500009 Vertex 40709 0.503921 0.41567 0.428416 Vertex 40710 0.399966 0.235852 0.46519 Vertex 40711 0.568567 0.460558 0.515852 Vertex 40712 0.358833 0.315299 0.205753 Vertex 40713 0.356612 0.312681 0.205783 Vertex 40714 0.417539 0.370214 0.431229 Vertex 40715 0.60354 0.536741 0.291916 Vertex 40716 0.488303 0.407941 0.615015 Vertex 40717 0.496121 0.235592 0.530333 Vertex 40718 0.495848 0.234437 0.528509 Vertex 40719 0.401642 0.462045 0.594801 Vertex 40720 0.349683 0.18471 0.468346 Vertex 40721 0.424403 0.328868 0.647708 Vertex 40722 0.468592 0.678453 0.42995 Vertex 40723 0.53848 0.452805 0.394816 Vertex 40724 0.438961 0.81574 0.451739 Vertex 40725 0.473923 0.0789076 0.726148 Vertex 40726 0.49342 0.468554 0.389841 Vertex 40727 0.376613 0.410032 0.295979 Vertex 40728 0.552433 0.464236 0.366542 Vertex 40729 0.551231 0.462187 0.362609 Vertex 40730 0.32633 0.258785 0.205593 Vertex 40731 0.510187 0.196206 0.470135 Vertex 40732 0.343393 0.109688 0.454689 Vertex 40733 0.505159 0.506216 0.397257 Vertex 40734 0.62055 0.484592 0.274735 Vertex 40735 0.613206 0.502034 0.370012 Vertex 40736 0.395655 0.210284 0.474316 Vertex 40737 0.514244 0.0683001 0.680395 Vertex 40738 0.481989 0.105275 0.79106 Vertex 40739 0.561519 0.501608 0.401172 Vertex 40740 0.563609 0.501715 0.402936 Vertex 40741 0.534251 0.010335 0.731336 Vertex 40742 0.4188 0.377688 0.426947 Vertex 40743 0.444238 0.12896 0.634643 Vertex 40744 0.56541 0.496053 0.354122 Vertex 40745 0.443125 0.499322 0.430033 Vertex 40746 0.414548 0.884656 0.362733 Vertex 40747 0.321787 0.241212 0.229663 Vertex 40748 0.439447 0.775306 0.432876 Vertex 40749 0.391793 0.326765 0.623935 Vertex 40750 0.522986 0.355259 0.532394 Vertex 40751 0.452169 0.781945 0.395213 Vertex 40752 0.352715 0.318313 0.223652 Vertex 40753 0.372153 0.091671 0.48124 Vertex 40754 0.35599 0.286598 0.196668 Vertex 40755 0.445127 0.232097 0.782715 Vertex 40756 0.439802 0.781371 0.414231 Vertex 40757 0.552439 0.468909 0.354886 Vertex 40758 0.454958 0.235497 0.714729 Vertex 40759 0.397165 0.184059 0.698193 Vertex 40760 0.46001 0.460736 0.622235 Vertex 40761 0.408524 0.334613 0.220418 Vertex 40762 0.446832 0.133817 0.752054 Vertex 40763 0.517667 0.421131 0.587143 Vertex 40764 0.37072 0.469235 0.484734 Vertex 40765 0.45314 0.349396 0.413088 Vertex 40766 0.407565 0.188234 0.478456 Vertex 40767 0.526658 0.447279 0.588257 Vertex 40768 0.355475 0.257399 0.536937 Vertex 40769 0.359491 0.441345 0.481986 Vertex 40770 0.493527 0.1625 0.676919 Vertex 40771 0.459483 0.21783 0.622762 Vertex 40772 0.517478 0.40158 0.565531 Vertex 40773 0.584961 0.445378 0.457763 Vertex 40774 0.560417 0.00503426 0.754121 Vertex 40775 0.400061 0.186878 0.712644 Vertex 40776 0.444197 0.47315 0.410091 Vertex 40777 0.395755 0.356449 0.31264 Vertex 40778 0.551563 0.154848 0.441173 Vertex 40779 0.373498 0.335803 0.476626 Vertex 40780 0.506438 0.417038 0.599391 Vertex 40781 0.451156 0.190414 0.590418 Vertex 40782 0.539048 0.155482 0.447463 Vertex 40783 0.664905 0.460635 0.19161 Vertex 40784 0.452169 0.123304 0.637888 Vertex 40785 0.434104 0.50226 0.442725 Vertex 40786 0.534399 0.524659 0.423778 Vertex 40787 0.451339 0.768945 0.414213 Vertex 40788 0.481504 0.564062 0.403985 Vertex 40789 0.504247 0.411193 0.438046 Vertex 40790 0.492455 0.0558685 0.725881 Vertex 40791 0.479324 0.212594 0.762436 Vertex 40792 0.399789 0.427308 0.356544 Vertex 40793 0.544313 0.556701 0.444194 Vertex 40794 0.417539 0.25012 0.223794 Vertex 40795 0.51011 0.13692 0.789917 Vertex 40796 0.371366 0.423014 0.326747 Vertex 40797 0.605802 0.491308 0.210183 Vertex 40798 0.605098 0.489313 0.210053 Vertex 40799 0.497471 0.255113 0.577927 Vertex 40800 0.480266 0.517137 0.403659 Vertex 40801 0.479904 0.517955 0.403564 Vertex 40802 0.543117 0.637859 0.476164 Vertex 40803 0.446151 0.130932 0.747487 Vertex 40804 0.500272 0.37003 0.606954 Vertex 40805 0.512473 0.320683 0.463034 Vertex 40806 0.517549 0.295464 0.532507 Vertex 40807 0.489517 0.793903 0.453569 Vertex 40808 0.399232 0.331906 0.244185 Vertex 40809 0.399498 0.391897 0.256019 Vertex 40810 0.501415 0.597407 0.567 Vertex 40811 0.612708 0.467114 0.328406 Vertex 40812 0.49047 0.178935 0.711892 Vertex 40813 0.478927 0.237132 0.470591 Vertex 40814 0.54683 0.00130299 0.73335 Vertex 40815 0.586157 0.487542 0.295529 Vertex 40816 0.381298 0.359802 0.613375 Vertex 40817 0.505526 0.0975699 0.715629 Vertex 40818 0.385835 0.901743 0.31675 Vertex 40819 0.383555 0.90044 0.312722 Vertex 40820 0.410591 0.381319 0.376853 Vertex 40821 0.408643 0.378428 0.376877 Vertex 40822 0.507871 0.179042 0.450359 Vertex 40823 0.516743 0.051083 0.77376 Vertex 40824 0.558309 0.0230629 0.76625 Vertex 40825 0.388885 0.500595 0.515799 Vertex 40826 0.485981 0.185136 0.722103 Vertex 40827 0.408276 0.828882 0.38938 Vertex 40828 0.544165 0.0528775 0.79876 Vertex 40829 0.409241 0.458977 0.400751 Vertex 40830 0.4066 0.251903 0.737525 Vertex 40831 0.309954 0.973899 0.244795 Vertex 40832 0.373522 0.359707 0.503355 Vertex 40833 0.468746 0.244245 0.457425 Vertex 40834 0.469415 0.242124 0.459628 Vertex 40835 0.533712 0.504078 0.584164 Vertex 40836 0.593045 0.519885 0.222864 Vertex 40837 0.491365 0.551169 0.379915 Vertex 40838 0.445411 0.599735 0.487346 Vertex 40839 0.445571 0.598716 0.489277 Vertex 40840 0.545089 0.435754 0.548906 Vertex 40841 0.558747 0.494092 0.538625 Vertex 40842 0.510347 0.0632126 0.682362 Vertex 40843 0.360462 0.204338 0.474257 Vertex 40844 0.408643 0.239649 0.205321 Vertex 40845 0.372923 0.391814 0.273118 Vertex 40846 0.589077 0.465118 0.456922 Vertex 40847 0.419701 0.810386 0.4037 Vertex 40848 0.44595 0.223871 0.789674 Vertex 40849 0.507954 0.718727 0.424169 Vertex 40850 0.567122 0.498546 0.366542 Vertex 40851 0.458405 0.772665 0.39192 Vertex 40852 0.420547 0.240614 0.219079 Vertex 40853 0.474254 0.513193 0.600943 Vertex 40854 0.465495 0.202502 0.669119 Vertex 40855 0.337755 0.909496 0.281688 Vertex 40856 0.34029 0.907186 0.283524 Vertex 40857 0.593371 0.444235 0.184509 Vertex 40858 0.446566 0.594511 0.496976 Vertex 40859 0.542702 0.0328826 0.781513 Vertex 40860 0.545137 0.031935 0.781566 Vertex 40861 0.555827 0.53988 0.469501 Vertex 40862 0.541411 0.0501827 0.796349 Vertex 40863 0.354154 0.0868795 0.439361 Vertex 40864 0.522323 0.320481 0.540632 Vertex 40865 0.4766 0.621429 0.536036 Vertex 40866 0.451399 0.539857 0.435434 Vertex 40867 0.392036 0.22534 0.471604 Vertex 40868 0.412659 0.53484 0.54065 Vertex 40869 0.547062 0.597816 0.486286 Vertex 40870 0.370762 0.209804 0.227673 Vertex 40871 0.644288 0.507596 0.23388 Vertex 40872 0.432713 0.258376 0.743756 Vertex 40873 0.448194 0.107556 0.720243 Vertex 40874 0.455391 0.738047 0.434818 Vertex 40875 0.357738 0.399951 0.35411 Vertex 40876 0.596279 0.498955 0.266656 Vertex 40877 0.481877 0.445894 0.608577 Vertex 40878 0.345786 0.12238 0.457751 Vertex 40879 0.50215 0.678293 0.538293 Vertex 40880 0.398948 0.868233 0.333398 Vertex 40881 0.415697 0.377137 0.356165 Vertex 40882 0.471956 0.552093 0.422446 Vertex 40883 0.330689 0.930462 0.29772 Vertex 40884 0.460146 0.655674 0.498078 Vertex 40885 0.378266 0.22146 0.586989 Vertex 40886 0.373883 0.908738 0.302808 Vertex 40887 0.342552 0.913683 0.318657 Vertex 40888 0.528944 0.677985 0.443305 Vertex 40889 0.507226 0.0888932 0.808781 Vertex 40890 0.51438 0.0998265 0.692116 Vertex 40891 0.516649 0.101189 0.689955 Vertex 40892 0.491691 0.195839 0.462293 Vertex 40893 0.355718 0.144211 0.453794 Vertex 40894 0.371312 0.398832 0.532761 Vertex 40895 0.379503 0.437892 0.578152 Vertex 40896 0.530253 0.0984169 0.76657 Vertex 40897 0.530123 0.100235 0.770734 Vertex 40898 0.406155 0.303311 0.633198 Vertex 40899 0.449379 0.24245 0.702297 Vertex 40900 0.388589 0.31338 0.198948 Vertex 40901 0.59128 0.45569 0.444519 Vertex 40902 0.374434 0.342265 0.60304 Vertex 40903 0.552297 0.152331 0.420308 Vertex 40904 0.440643 0.250529 0.646299 Vertex 40905 0.522157 0.361241 0.54893 Vertex 40906 0.513101 0.59351 0.418649 Vertex 40907 0.454733 0.666661 0.457745 Vertex 40908 0.460899 0.126555 0.805985 Vertex 40909 0.563669 0.451935 0.330147 Vertex 40910 0.436272 0.182388 0.794602 Vertex 40911 0.467775 0.182838 0.685714 Vertex 40912 0.450078 0.160285 0.627909 Vertex 40913 0.449569 0.158325 0.629798 Vertex 40914 0.533848 0.165426 0.437578 Vertex 40915 0.492792 0.784836 0.470141 Vertex 40916 0.354764 0.216769 0.497273 Vertex 40917 0.408051 0.389747 0.28623 Vertex 40918 0.54551 0.504486 0.413029 Vertex 40919 0.526042 0.396901 0.511665 Vertex 40920 0.432547 0.54145 0.562369 Vertex 40921 0.367321 0.249427 0.577981 Vertex 40922 0.485253 0.798363 0.457194 Vertex 40923 0.42294 0.395521 0.384535 Vertex 40924 0.462569 0.825856 0.441718 Vertex 40925 0.521422 0.617917 0.429695 Vertex 40926 0.417841 0.266129 0.660833 Vertex 40927 0.44284 0.253342 0.723027 Vertex 40928 0.508446 0.437756 0.603004 Vertex 40929 0.502843 0.72077 0.50756 Vertex 40930 0.533469 0.468311 0.402628 Vertex 40931 0.445411 0.112489 0.663255 Vertex 40932 0.446358 0.350935 0.415155 Vertex 40933 0.521979 0.393916 0.522071 Vertex 40934 0.393783 0.354525 0.395379 Vertex 40935 0.46094 0.179202 0.66531 Vertex 40936 0.462628 0.178853 0.669296 Vertex 40937 0.439571 0.775111 0.424607 Vertex 40938 0.471702 0.818162 0.441173 Vertex 40939 0.457114 0.794572 0.471574 Vertex 40940 0.378508 0.276725 0.232654 Vertex 40941 0.516631 0.743525 0.474263 Vertex 40942 0.525598 0.1435 0.756259 Vertex 40943 0.378769 0.302997 0.192676 Vertex 40944 0.355819 0.105299 0.468619 Vertex 40945 0.335279 0.955888 0.27358 Vertex 40946 0.44746 0.615803 0.481062 Vertex 40947 0.487474 0.087916 0.72735 Vertex 40948 0.484335 0.0862813 0.725532 Vertex 40949 0.512663 0.546028 0.580539 Vertex 40950 0.429745 0.319397 0.646346 Vertex 40951 0.410289 0.267704 0.653678 Vertex 40952 0.649103 0.506334 0.199659 Vertex 40953 0.53848 0.661958 0.459445 Vertex 40954 0.486988 0.557275 0.579598 Vertex 40955 0.595793 0.442162 0.325456 Vertex 40956 0.34225 0.920263 0.313415 Vertex 40957 0.514066 0.681568 0.517949 Vertex 40958 0.517436 0.373963 0.476466 Vertex 40959 0.470061 0.0772789 0.747671 Vertex 40960 0.39569 0.252566 0.706431 Vertex 40961 0.462042 0.430406 0.379246 Vertex 40962 0.392652 0.258347 0.219405 Vertex 40963 0.359272 0.123197 0.4763 Vertex 40964 0.356867 0.305953 0.513815 Vertex 40965 0.356287 0.305799 0.516385 Vertex 40966 0.356612 0.304146 0.514004 Vertex 40967 0.375618 0.342134 0.417453 Vertex 40968 0.412641 0.19142 0.758302 Vertex 40969 0.453975 0.657818 0.455737 Vertex 40970 0.374594 0.348649 0.484705 Vertex 40971 0.588763 0.419502 0.403813 Vertex 40972 0.587389 0.418608 0.405904 Vertex 40973 0.50305 0.473357 0.396617 Vertex 40974 0.403857 0.486618 0.432307 Vertex 40975 0.606241 0.481554 0.193482 Vertex 40976 0.53614 0.15762 0.453356 Vertex 40977 0.474841 0.110244 0.791025 Vertex 40978 0.516933 0.0233116 0.737496 Vertex 40979 0.487397 0.0764379 0.704157 Vertex 40980 0.408157 0.344936 0.23388 Vertex 40981 0.497868 0.642834 0.549564 Vertex 40982 0.453649 0.432212 0.625552 Vertex 40983 0.511543 0.155103 0.71785 Vertex 40984 0.468409 0.236616 0.607037 Vertex 40985 0.436628 0.131519 0.723121 Vertex 40986 0.358608 0.172622 0.484817 Vertex 40987 0.527683 0.662284 0.513767 Vertex 40988 0.489789 0.537363 0.384322 Vertex 40989 0.403295 0.340109 0.20798 Vertex 40990 0.550035 0.587125 0.482022 Vertex 40991 0.549128 0.589056 0.486701 Vertex 40992 0.356417 0.259709 0.543517 Vertex 40993 0.342155 0.906256 0.277956 Vertex 40994 0.619833 0.537517 0.293942 Vertex 40995 0.516957 0.286355 0.488732 Vertex 40996 0.532249 0.506151 0.418241 Vertex 40997 0.367587 0.372601 0.308506 Vertex 40998 0.458512 0.593054 0.441351 Vertex 40999 0.507634 0.0940104 0.64156 Vertex 41000 0.389827 0.432396 0.594831 Vertex 41001 0.532059 0.570868 0.557553 Vertex 41002 0.518147 0.326961 0.482217 Vertex 41003 0.473419 0.0740984 0.707657 Vertex 41004 0.45879 0.120585 0.638949 Vertex 41005 0.497264 0.160664 0.701338 Vertex 41006 0.658715 0.446166 0.211001 Vertex 41007 0.345241 0.0838057 0.44661 Vertex 41008 0.505917 0.105489 0.646079 Vertex 41009 0.414033 0.526874 0.501472 Vertex 41010 0.457185 0.707954 0.449305 Vertex 41011 0.499882 0.197402 0.524096 Vertex 41012 0.545551 0.595778 0.505233 Vertex 41013 0.529459 0.616069 0.534461 Vertex 41014 0.530371 0.614204 0.536528 Vertex 41015 0.590463 0.418039 0.366559 Vertex 41016 0.560589 0.0053067 0.743709 Vertex 41017 0.372621 0.222319 0.232986 Vertex 41018 0.609996 0.457869 0.338006 Vertex 41019 0.526101 0.0571241 0.668272 Vertex 41020 0.464956 0.166214 0.662699 Vertex 41021 0.405474 0.219204 0.749957 Vertex 41022 0.585784 0.473304 0.470182 Vertex 41023 0.435147 0.491569 0.434084 Vertex 41024 0.464991 0.0868025 0.660987 Vertex 41025 0.517128 0.339718 0.478042 Vertex 41026 0.518212 0.339167 0.482022 Vertex 41027 0.342546 0.917326 0.316519 Vertex 41028 0.343423 0.919292 0.316235 Vertex 41029 0.53062 0.515414 0.584205 Vertex 41030 0.546653 0.152668 0.443359 Vertex 41031 0.527991 0.523166 0.415984 Vertex 41032 0.502458 0.372002 0.449139 Vertex 41033 0.395204 0.35456 0.623413 Vertex 41034 0.46094 0.121752 0.641347 Vertex 41035 0.426067 0.235799 0.201975 Vertex 41036 0.581336 0.504865 0.463952 Vertex 41037 0.443948 0.574279 0.479362 Vertex 41038 0.647089 0.431016 0.203005 Vertex 41039 0.411474 0.857613 0.341507 Vertex 41040 0.411308 0.85602 0.341151 Vertex 41041 0.562472 0.401669 0.398222 Vertex 41042 0.535003 0.156275 0.456501 Vertex 41043 0.321076 0.94515 0.278981 Vertex 41044 0.501374 0.43624 0.393786 Vertex 41045 0.476173 0.467168 0.384742 Vertex 41046 0.453868 0.397363 0.394248 Vertex 41047 0.544586 0.57685 0.513732 Vertex 41048 0.47182 0.482424 0.609655 Vertex 41049 0.60694 0.451283 0.326854 Vertex 41050 0.334 0.244896 0.22406 Vertex 41051 0.453584 0.130648 0.637474 Vertex 41052 0.456178 0.129138 0.641223 Vertex 41053 0.516062 0.627642 0.425679 Vertex 41054 0.449693 0.244979 0.758267 Vertex 41055 0.482238 0.185747 0.716174 Vertex 41056 0.480325 0.188003 0.712573 Vertex 41057 0.363927 0.176093 0.455518 Vertex 41058 0.473384 0.53988 0.585165 Vertex 41059 0.659124 0.450726 0.208045 Vertex 41060 0.658757 0.449376 0.207003 Vertex 41061 0.608444 0.524458 0.217131 Vertex 41062 0.40323 0.847053 0.408024 Vertex 41063 0.346171 0.260591 0.221946 Vertex 41064 0.398296 0.221804 0.470088 Vertex 41065 0.384976 0.207672 0.617734 Vertex 41066 0.527043 0.0287249 0.647021 Vertex 41067 0.487823 0.491729 0.390019 Vertex 41068 0.529424 0.581528 0.431259 Vertex 41069 0.44749 0.401936 0.639055 Vertex 41070 0.50902 0.0872053 0.639896 Vertex 41071 0.550414 0.508863 0.420864 Vertex 41072 0.395886 0.356396 0.341655 Vertex 41073 0.507237 0.152343 0.791291 Vertex 41074 0.344501 0.0875132 0.456933 Vertex 41075 0.65839 0.455133 0.1971 Vertex 41076 0.54471 0.520484 0.427829 Vertex 41077 0.527623 0.403351 0.426959 Vertex 41078 0.658295 0.499263 0.215135 Vertex 41079 0.655766 0.500192 0.217148 Vertex 41080 0.544793 0.398725 0.425342 Vertex 41081 0.514244 0.288641 0.504469 Vertex 41082 0.39418 0.399128 0.273088 Vertex 41083 0.595651 0.456246 0.416298 Vertex 41084 0.361499 0.187583 0.511742 Vertex 41085 0.369435 0.333511 0.2143 Vertex 41086 0.398628 0.17001 0.620428 Vertex 41087 0.423639 0.384819 0.333369 Vertex 41088 0.420666 0.822148 0.382266 Vertex 41089 0.41562 0.366376 0.630977 Vertex 41090 0.557296 0.0319054 0.758527 Vertex 41091 0.456261 0.0809213 0.660845 Vertex 41092 0.550396 0.568931 0.470644 Vertex 41093 0.435419 0.828853 0.356461 Vertex 41094 0.387019 0.338824 0.458349 Vertex 41095 0.545172 0.42106 0.540526 Vertex 41096 0.354083 0.229829 0.532394 Vertex 41097 0.442444 0.783924 0.449489 Vertex 41098 0.461076 0.202123 0.645469 Vertex 41099 0.536549 0.147338 0.459516 Vertex 41100 0.383454 0.425602 0.586468 Vertex 41101 0.511306 0.16834 0.448529 Vertex 41102 0.505212 0.42042 0.427587 Vertex 41103 0.497678 0.374028 0.441854 Vertex 41104 0.505686 0.591259 0.566615 Vertex 41105 0.459833 0.691186 0.480695 Vertex 41106 0.456362 0.692697 0.468388 Vertex 41107 0.468811 0.529107 0.418075 Vertex 41108 0.468604 0.530434 0.418596 Vertex 41109 0.660771 0.45476 0.198024 Vertex 41110 0.494071 0.656456 0.405223 Vertex 41111 0.495475 0.660033 0.407153 Vertex 41112 0.372473 0.368425 0.536587 Vertex 41113 0.404592 0.179504 0.575914 Vertex 41114 0.45635 0.238819 0.741689 Vertex 41115 0.456587 0.232654 0.774737 Vertex 41116 0.552925 0.479973 0.381721 Vertex 41117 0.431558 0.32718 0.647791 Vertex 41118 0.516702 0.361644 0.475193 Vertex 41119 0.399789 0.326854 0.230919 Vertex 41120 0.390987 0.310128 0.24245 Vertex 41121 0.465204 0.561954 0.567136 Vertex 41122 0.371733 0.217723 0.486517 Vertex 41123 0.436977 0.808301 0.452337 Vertex 41124 0.538752 0.0712378 0.785061 Vertex 41125 0.439891 0.792162 0.449453 Vertex 41126 0.402537 0.845111 0.40585 Vertex 41127 0.557385 0.0229562 0.774459 Vertex 41128 0.304771 0.993917 0.212659 Vertex 41129 0.304623 0.992869 0.214566 Vertex 41130 0.59019 0.507975 0.299776 Vertex 41131 0.486165 0.0952068 0.783041 Vertex 41132 0.684029 0.47097 0.199339 Vertex 41133 0.477642 0.166433 0.514821 Vertex 41134 0.472134 0.090445 0.655266 Vertex 41135 0.443829 0.229829 0.785831 Vertex 41136 0.564599 0.425703 0.354519 Vertex 41137 0.365638 0.211273 0.22852 Vertex 41138 0.521357 0.305799 0.488868 Vertex 41139 0.45478 0.595707 0.522219 Vertex 41140 0.497797 0.545637 0.38386 Vertex 41141 0.348214 0.944771 0.289002 Vertex 41142 0.375352 0.453013 0.435067 Vertex 41143 0.399463 0.356686 0.331314 Vertex 41144 0.447579 0.611627 0.484634 Vertex 41145 0.552937 0.478184 0.380555 Vertex 41146 0.488018 0.645392 0.53221 Vertex 41147 0.496073 0.460428 0.388112 Vertex 41148 0.304173 0.956113 0.22958 Vertex 41149 0.443391 0.20419 0.470319 Vertex 41150 0.412854 0.275676 0.221419 Vertex 41151 0.411794 0.276944 0.221265 Vertex 41152 0.468882 0.539839 0.421137 Vertex 41153 0.391295 0.18561 0.664996 Vertex 41154 0.367587 0.221519 0.232109 Vertex 41155 0.389122 0.34153 0.453344 Vertex 41156 0.545391 0.515503 0.565496 Vertex 41157 0.482042 0.0669972 0.746338 Vertex 41158 0.46415 0.105086 0.656841 Vertex 41159 0.445044 0.226536 0.787714 Vertex 41160 0.337672 0.111755 0.466196 Vertex 41161 0.551835 0.424341 0.376823 Vertex 41162 0.387694 0.341821 0.275078 Vertex 41163 0.337707 0.926843 0.307842 Vertex 41164 0.47625 0.392945 0.624166 Vertex 41165 0.403295 0.376628 0.242201 Vertex 41166 0.459833 0.480026 0.61726 Vertex 41167 0.420417 0.471225 0.597591 Vertex 41168 0.459862 0.727759 0.431241 Vertex 41169 0.45914 0.727107 0.433231 Vertex 41170 0.489564 0.183312 0.7891 Vertex 41171 0.464352 0.737579 0.476354 Vertex 41172 0.674262 0.447688 0.200553 Vertex 41173 0.676365 0.44712 0.201838 Vertex 41174 0.636245 0.511552 0.261705 Vertex 41175 0.382968 0.278383 0.456288 Vertex 41176 0.527866 0.0147415 0.741636 Vertex 41177 0.408169 0.847722 0.345096 Vertex 41178 0.495937 0.173019 0.711981 Vertex 41179 0.490139 0.212375 0.498226 Vertex 41180 0.477352 0.423334 0.373832 Vertex 41181 0.478436 0.264293 0.609223 Vertex 41182 0.400333 0.384795 0.24441 Vertex 41183 0.487325 0.420947 0.378677 Vertex 41184 0.479531 0.551465 0.400479 Vertex 41185 0.489612 0.0801632 0.711572 Vertex 41186 0.395323 0.256972 0.218001 Vertex 41187 0.369506 0.191539 0.547615 Vertex 41188 0.472785 0.390345 0.625007 Vertex 41189 0.410455 0.189146 0.75001 Vertex 41190 0.373148 0.23905 0.478764 Vertex 41191 0.412765 0.45569 0.398056 Vertex 41192 0.656921 0.465101 0.192504 Vertex 41193 0.44836 0.462637 0.40495 Vertex 41194 0.471358 0.529326 0.413769 Vertex 41195 0.461248 0.609471 0.5263 Vertex 41196 0.42284 0.826804 0.371019 Vertex 41197 0.443924 0.559159 0.459995 Vertex 41198 0.58807 0.486671 0.445597 Vertex 41199 0.412197 0.170555 0.60285 Vertex 41200 0.45025 0.598325 0.460884 Vertex 41201 0.507498 0.198776 0.47463 Vertex 41202 0.506367 0.268972 0.479226 Vertex 41203 0.465086 0.176756 0.561474 Vertex 41204 0.524958 0.136618 0.760049 Vertex 41205 0.514801 0.744336 0.45656 Vertex 41206 0.465021 0.217984 0.700183 Vertex 41207 0.435484 0.233229 0.459125 Vertex 41208 0.406511 0.260496 0.718336 Vertex 41209 0.441674 0.491427 0.423583 Vertex 41210 0.417912 0.264553 0.67741 Vertex 41211 0.371052 0.286941 0.468862 Vertex 41212 0.555347 0.147421 0.420823 Vertex 41213 0.478329 0.213192 0.776929 Vertex 41214 0.412013 0.147433 0.665707 Vertex 41215 0.524591 0.709316 0.451556 Vertex 41216 0.48116 0.664961 0.418418 Vertex 41217 0.458565 0.463975 0.400123 Vertex 41218 0.409034 0.235307 0.749999 Vertex 41219 0.462444 0.1642 0.500021 Vertex 41220 0.389963 0.253401 0.675314 Vertex 41221 0.458867 0.792346 0.379761 Vertex 41222 0.569899 0.501661 0.377114 Vertex 41223 0.362458 0.12007 0.476834 Vertex 41224 0.608497 0.498333 0.224114 Vertex 41225 0.389779 0.325018 0.454031 Vertex 41226 0.467781 0.383925 0.400206 Vertex 41227 0.401032 0.166747 0.519915 Vertex 41228 0.591712 0.425602 0.205836 Vertex 41229 0.42252 0.178456 0.49061 Vertex 41230 0.411539 0.820774 0.397624 Vertex 41231 0.519657 0.0196988 0.650563 Vertex 41232 0.562526 0.492783 0.362396 Vertex 41233 0.548205 0.571531 0.45441 Vertex 41234 0.411539 0.158366 0.694 Vertex 41235 0.546043 0.617183 0.476745 Vertex 41236 0.36372 0.881262 0.335507 Vertex 41237 0.598346 0.458503 0.204125 Vertex 41238 0.466774 0.665002 0.432686 Vertex 41239 0.482457 0.186315 0.469833 Vertex 41240 0.457925 0.477372 0.404435 Vertex 41241 0.459157 0.47941 0.404109 Vertex 41242 0.483529 0.238369 0.475602 Vertex 41243 0.533007 0.405442 0.54065 Vertex 41244 0.427939 0.407544 0.385678 Vertex 41245 0.42676 0.412223 0.384458 Vertex 41246 0.491714 0.52521 0.386033 Vertex 41247 0.467029 0.225529 0.472711 Vertex 41248 0.454703 0.821917 0.455109 Vertex 41249 0.472288 0.399566 0.38553 Vertex 41250 0.552682 0.055981 0.756259 Vertex 41251 0.546007 0.134569 0.452118 Vertex 41252 0.595035 0.429458 0.206867 Vertex 41253 0.549306 0.5652 0.52823 Vertex 41254 0.547796 0.56636 0.532447 Vertex 41255 0.548347 0.568463 0.530297 Vertex 41256 0.391064 0.423814 0.306616 Vertex 41257 0.369873 0.386862 0.24922 Vertex 41258 0.37377 0.896786 0.361685 Vertex 41259 0.446726 0.568955 0.544867 Vertex 41260 0.489055 0.227282 0.494175 Vertex 41261 0.362541 0.912048 0.345256 Vertex 41262 0.365354 0.911646 0.347376 Vertex 41263 0.50167 0.0776046 0.730868 Vertex 41264 0.389335 0.500068 0.488857 Vertex 41265 0.561738 0.491634 0.377167 Vertex 41266 0.406831 0.267219 0.198196 Vertex 41267 0.484281 0.578739 0.408202 Vertex 41268 0.377875 0.471325 0.455743 Vertex 41269 0.380848 0.470982 0.449589 Vertex 41270 0.436284 0.539691 0.491018 Vertex 41271 0.476132 0.412182 0.618415 Vertex 41272 0.370341 0.873421 0.335276 Vertex 41273 0.46094 0.688971 0.48474 Vertex 41274 0.562828 0.516373 0.434931 Vertex 41275 0.363175 0.365316 0.366571 Vertex 41276 0.494427 0.233134 0.545572 Vertex 41277 0.449711 0.285212 0.634637 Vertex 41278 0.352846 0.22255 0.526217 Vertex 41279 0.527049 0.0930036 0.71772 Vertex 41280 0.475913 0.370901 0.415031 Vertex 41281 0.38696 0.494264 0.526163 Vertex 41282 0.488439 0.626997 0.409955 Vertex 41283 0.503962 0.7718 0.45582 Vertex 41284 0.631945 0.447848 0.191794 Vertex 41285 0.361818 0.309341 0.497172 Vertex 41286 0.55023 0.466398 0.381206 Vertex 41287 0.35849 0.340707 0.246335 Vertex 41288 0.498383 0.0374549 0.680123 Vertex 41289 0.463753 0.129369 0.809527 Vertex 41290 0.592121 0.427551 0.399673 Vertex 41291 0.657051 0.457543 0.208478 Vertex 41292 0.347065 0.899581 0.312871 Vertex 41293 0.347385 0.897295 0.312794 Vertex 41294 0.371751 0.171846 0.482365 Vertex 41295 0.457132 0.67548 0.482833 Vertex 41296 0.396294 0.33084 0.207358 Vertex 41297 0.583403 0.502935 0.447386 Vertex 41298 0.448135 0.760156 0.426592 Vertex 41299 0.514108 0.368929 0.448434 Vertex 41300 0.453294 0.158082 0.528219 Vertex 41301 0.542234 0.54039 0.433462 Vertex 41302 0.541056 0.54232 0.431815 Vertex 41303 0.374937 0.469152 0.536528 Vertex 41304 0.492727 0.648212 0.402628 Vertex 41305 0.537052 0.0770065 0.783088 Vertex 41306 0.513533 0.450951 0.408966 Vertex 41307 0.517667 0.451188 0.410109 Vertex 41308 0.527067 0.130488 0.766434 Vertex 41309 0.326513 0.237049 0.217693 Vertex 41310 0.39357 0.170733 0.534621 Vertex 41311 0.395246 0.259549 0.654448 Vertex 41312 0.476629 0.768187 0.494744 Vertex 41313 0.419144 0.245577 0.197432 Vertex 41314 0.359935 0.279348 0.227004 Vertex 41315 0.375671 0.36191 0.225067 Vertex 41316 0.337387 0.930977 0.257713 Vertex 41317 0.332572 0.918469 0.30202 Vertex 41318 0.414412 0.270251 0.225553 Vertex 41319 0.459134 0.797729 0.475963 Vertex 41320 0.360569 0.348839 0.395308 Vertex 41321 0.5103 0.275119 0.517949 Vertex 41322 0.353651 0.893682 0.298431 Vertex 41323 0.45439 0.395504 0.394657 Vertex 41324 0.503157 0.202342 0.479907 Vertex 41325 0.334562 0.923906 0.261296 Vertex 41326 0.50661 0.368792 0.592373 Vertex 41327 0.508232 0.173315 0.770657 Vertex 41328 0.49342 0.230723 0.549706 Vertex 41329 0.49387 0.298597 0.44693 Vertex 41330 0.35676 0.394076 0.417791 Vertex 41331 0.494628 0.118927 0.795982 Vertex 41332 0.330606 0.272958 0.226643 Vertex 41333 0.479857 0.0783687 0.718662 Vertex 41334 0.47872 0.71345 0.411033 Vertex 41335 0.4248 0.406075 0.381763 Vertex 41336 0.362961 0.374656 0.331302 Vertex 41337 0.493965 0.185285 0.785155 Vertex 41338 0.498111 0.758071 0.423381 Vertex 41339 0.535595 0.593368 0.44064 Vertex 41340 0.526972 0.449785 0.408314 Vertex 41341 0.427128 0.837381 0.436423 Vertex 41342 0.451914 0.625101 0.457751 Vertex 41343 0.484204 0.207252 0.752066 Vertex 41344 0.512757 0.546537 0.400775 Vertex 41345 0.443918 0.102983 0.662438 Vertex 41346 0.638501 0.514034 0.240134 Vertex 41347 0.508138 0.101325 0.713776 Vertex 41348 0.4896 0.195347 0.46221 Vertex 41349 0.359153 0.246951 0.506838 Vertex 41350 0.544396 0.421309 0.542569 Vertex 41351 0.382897 0.222662 0.685708 Vertex 41352 0.511816 0.27811 0.503367 Vertex 41353 0.490062 0.193665 0.774868 Vertex 41354 0.477139 0.457342 0.378363 Vertex 41355 0.512663 0.556979 0.402409 Vertex 41356 0.500326 0.364149 0.446065 Vertex 41357 0.464198 0.580599 0.432941 Vertex 41358 0.397562 0.507104 0.551015 Vertex 41359 0.3643 0.210065 0.215407 Vertex 41360 0.372177 0.182086 0.515799 Vertex 41361 0.528535 0.115687 0.762442 Vertex 41362 0.404687 0.382207 0.266289 Vertex 41363 0.491951 0.225967 0.525879 Vertex 41364 0.462148 0.484237 0.405104 Vertex 41365 0.367688 0.104215 0.464964 Vertex 41366 0.549543 0.450768 0.542729 Vertex 41367 0.401885 0.281498 0.629668 Vertex 41368 0.355096 0.243078 0.538761 Vertex 41369 0.355185 0.245305 0.54126 Vertex 41370 0.353343 0.363717 0.420432 Vertex 41371 0.408222 0.263831 0.680484 Vertex 41372 0.358608 0.923307 0.332623 Vertex 41373 0.481669 0.257085 0.455305 Vertex 41374 0.484808 0.586936 0.407852 Vertex 41375 0.618323 0.515591 0.205777 Vertex 41376 0.515298 0.155932 0.735725 Vertex 41377 0.523839 0.0300812 0.640109 Vertex 41378 0.508505 0.331343 0.456797 Vertex 41379 0.474858 0.100377 0.778759 Vertex 41380 0.597671 0.50865 0.248266 Vertex 41381 0.357667 0.374816 0.382853 Vertex 41382 0.469866 0.215372 0.482661 Vertex 41383 0.439666 0.559271 0.49459 Vertex 41384 0.552783 0.553307 0.459326 Vertex 41385 0.418741 0.41044 0.345119 Vertex 41386 0.527298 0.130376 0.710577 Vertex 41387 0.52908 0.439681 0.4054 Vertex 41388 0.540683 0.645114 0.498949 Vertex 41389 0.474118 0.753753 0.392726 Vertex 41390 0.35907 0.251956 0.507673 Vertex 41391 0.424006 0.1262 0.688047 Vertex 41392 0.500888 0.308038 0.450134 Vertex 41393 0.439222 0.0931102 0.684725 Vertex 41394 0.513918 0.455311 0.408681 Vertex 41395 0.514404 0.453706 0.409126 Vertex 41396 0.6469 0.507833 0.227626 Vertex 41397 0.538148 0.443909 0.39346 Vertex 41398 0.519355 0.53943 0.582956 Vertex 41399 0.508558 0.0851916 0.799832 Vertex 41400 0.52163 0.607547 0.428037 Vertex 41401 0.410959 0.147403 0.657362 Vertex 41402 0.656773 0.409126 0.221176 Vertex 41403 0.367623 0.115101 0.474595 Vertex 41404 0.388151 0.893256 0.317241 Vertex 41405 0.526486 0.360933 0.511665 Vertex 41406 0.39566 0.36072 0.381017 Vertex 41407 0.359384 0.288599 0.493162 Vertex 41408 0.359888 0.283168 0.491291 Vertex 41409 0.519112 0.302405 0.505932 Vertex 41410 0.612809 0.495756 0.375491 Vertex 41411 0.666681 0.463194 0.217913 Vertex 41412 0.506053 0.155648 0.79093 Vertex 41413 0.526048 0.0165361 0.727244 Vertex 41414 0.499745 0.66454 0.544014 Vertex 41415 0.457274 0.253058 0.623467 Vertex 41416 0.455734 0.247621 0.62349 Vertex 41417 0.516512 0.344515 0.463993 Vertex 41418 0.522103 0.0812234 0.675391 Vertex 41419 0.473147 0.699834 0.425449 Vertex 41420 0.555412 0.150341 0.425585 Vertex 41421 0.555176 0.15104 0.427829 Vertex 41422 0.438564 0.164994 0.501466 Vertex 41423 0.535666 0.642135 0.516059 Vertex 41424 0.535264 0.642733 0.516249 Vertex 41425 0.513421 0.131069 0.681538 Vertex 41426 0.689318 0.457905 0.198462 Vertex 41427 0.430948 0.216402 0.789064 Vertex 41428 0.533339 0.124026 0.433882 Vertex 41429 0.529436 0.39943 0.530434 Vertex 41430 0.497933 0.264482 0.586231 Vertex 41431 0.452482 0.778309 0.399809 Vertex 41432 0.560322 0.0125916 0.738432 Vertex 41433 0.442497 0.324183 0.419005 Vertex 41434 0.488184 0.538737 0.386578 Vertex 41435 0.512609 0.396007 0.575807 Vertex 41436 0.649411 0.50204 0.19498 Vertex 41437 0.609095 0.482525 0.386969 Vertex 41438 0.460863 0.222769 0.783065 Vertex 41439 0.545409 0.438579 0.54893 Vertex 41440 0.421116 0.31723 0.428659 Vertex 41441 0.484808 0.199197 0.563405 Vertex 41442 0.465755 0.562552 0.428552 Vertex 41443 0.522234 0.563624 0.568084 Vertex 41444 0.492312 0.224647 0.499914 Vertex 41445 0.49146 0.223924 0.497628 Vertex 41446 0.500118 0.393442 0.598603 Vertex 41447 0.500563 0.396901 0.59656 Vertex 41448 0.644045 0.442275 0.220714 Vertex 41449 0.528008 0.143583 0.790332 Vertex 41450 0.324606 0.235011 0.223539 Vertex 41451 0.391852 0.331622 0.212096 Vertex 41452 0.505893 0.362277 0.596542 Vertex 41453 0.517886 0.414338 0.580018 Vertex 41454 0.455391 0.287237 0.429203 Vertex 41455 0.423461 0.125045 0.694408 Vertex 41456 0.475853 0.0946323 0.770657 Vertex 41457 0.623914 0.490065 0.254289 Vertex 41458 0.548015 0.594333 0.487708 Vertex 41459 0.434069 0.788366 0.432698 Vertex 41460 0.530306 0.530209 0.418851 Vertex 41461 0.437474 0.467274 0.604645 Vertex 41462 0.534802 0.678145 0.460451 Vertex 41463 0.55434 0.528455 0.450957 Vertex 41464 0.497376 0.0507572 0.72292 Vertex 41465 0.401601 0.350213 0.260751 Vertex 41466 0.354107 0.093276 0.453848 Vertex 41467 0.450587 0.621725 0.457792 Vertex 41468 0.450433 0.620612 0.46009 Vertex 41469 0.327935 0.238286 0.226968 Vertex 41470 0.363767 0.324437 0.575588 Vertex 41471 0.363743 0.326984 0.57602 Vertex 41472 0.55042 0.45906 0.374662 Vertex 41473 0.609694 0.519003 0.322151 Vertex 41474 0.472732 0.765717 0.389042 Vertex 41475 0.452044 0.211072 0.471598 Vertex 41476 0.532604 0.521561 0.58006 Vertex 41477 0.419102 0.529599 0.495383 Vertex 41478 0.468977 0.219861 0.478622 Vertex 41479 0.496831 0.451544 0.386756 Vertex 41480 0.587282 0.502787 0.384961 Vertex 41481 0.342179 0.0942532 0.462021 Vertex 41482 0.400197 0.841853 0.369088 Vertex 41483 0.374493 0.410067 0.55535 Vertex 41484 0.40519 0.325024 0.215028 Vertex 41485 0.350299 0.308825 0.231304 Vertex 41486 0.427122 0.163507 0.76445 Vertex 41487 0.527665 0.148043 0.790758 Vertex 41488 0.471755 0.211931 0.708498 Vertex 41489 0.498069 0.474879 0.394455 Vertex 41490 0.488534 0.175761 0.79106 Vertex 41491 0.503808 0.766872 0.443021 Vertex 41492 0.542548 0.528615 0.429446 Vertex 41493 0.347355 0.906825 0.327156 Vertex 41494 0.485709 0.484906 0.390398 Vertex 41495 0.595633 0.51552 0.245169 Vertex 41496 0.464002 0.0679507 0.655834 Vertex 41497 0.444955 0.135357 0.629153 Vertex 41498 0.429609 0.853373 0.361685 Vertex 41499 0.398918 0.849191 0.397541 Vertex 41500 0.516429 0.100182 0.720717 Vertex 41501 0.518526 0.101141 0.718537 Vertex 41502 0.392859 0.1807 0.675349 Vertex 41503 0.510418 0.308363 0.577827 Vertex 41504 0.477458 0.166107 0.519962 Vertex 41505 0.55257 0.465563 0.368609 Vertex 41506 0.598174 0.46635 0.18943 Vertex 41507 0.46694 0.730898 0.420349 Vertex 41508 0.502695 0.372778 0.600724 Vertex 41509 0.401903 0.24521 0.737555 Vertex 41510 0.494261 0.238233 0.561403 Vertex 41511 0.498887 0.635893 0.553396 Vertex 41512 0.504697 0.17617 0.754144 Vertex 41513 0.50369 0.177792 0.75405 Vertex 41514 0.475279 0.462779 0.382195 Vertex 41515 0.385918 0.890502 0.380649 Vertex 41516 0.516702 0.303981 0.546839 Vertex 41517 0.534813 0.17152 0.445728 Vertex 41518 0.403141 0.248053 0.209585 Vertex 41519 0.538071 0.0666181 0.798185 Vertex 41520 0.540629 0.167848 0.445325 Vertex 41521 0.607769 0.483775 0.215164 Vertex 41522 0.421466 0.170117 0.515787 Vertex 41523 0.437996 0.161825 0.573468 Vertex 41524 0.466892 0.552549 0.427681 Vertex 41525 0.421602 0.404032 0.328802 Vertex 41526 0.480657 0.436826 0.611035 Vertex 41527 0.479206 0.464384 0.382456 Vertex 41528 0.358182 0.223504 0.547965 Vertex 41529 0.514428 0.596809 0.421107 Vertex 41530 0.363678 0.120994 0.463205 Vertex 41531 0.638614 0.442239 0.20496 Vertex 41532 0.539723 0.411045 0.536498 Vertex 41533 0.360278 0.257369 0.215135 Vertex 41534 0.497797 0.399016 0.426686 Vertex 41535 0.500426 0.0460546 0.722209 Vertex 41536 0.493923 0.51889 0.387828 Vertex 41537 0.394879 0.354904 0.302085 Vertex 41538 0.477192 0.115972 0.648845 Vertex 41539 0.478086 0.112625 0.652239 Vertex 41540 0.454745 0.157051 0.798215 Vertex 41541 0.432884 0.813489 0.445278 Vertex 41542 0.500888 0.251156 0.517895 Vertex 41543 0.603682 0.468897 0.209804 Vertex 41544 0.359467 0.332777 0.537274 Vertex 41545 0.359941 0.335999 0.53773 Vertex 41546 0.530537 0.135967 0.445811 Vertex 41547 0.464203 0.274196 0.435339 Vertex 41548 0.449835 0.55551 0.444057 Vertex 41549 0.57844 0.510853 0.352073 Vertex 41550 0.374753 0.386673 0.53911 Vertex 41551 0.375215 0.389083 0.537322 Vertex 41552 0.5968 0.529172 0.277021 Vertex 41553 0.51454 0.324603 0.46972 Vertex 41554 0.438031 0.828462 0.36313 Vertex 41555 0.535228 0.167522 0.438384 Vertex 41556 0.424 0.27021 0.648656 Vertex 41557 0.479395 0.177194 0.548948 Vertex 41558 0.454011 0.48397 0.612634 Vertex 41559 0.553197 0.556908 0.4874 Vertex 41560 0.508096 0.418531 0.434575 Vertex 41561 0.48379 0.463875 0.383042 Vertex 41562 0.393813 0.322909 0.250333 Vertex 41563 0.314402 0.955171 0.264429 Vertex 41564 0.414429 0.170662 0.522029 Vertex 41565 0.458044 0.118122 0.774826 Vertex 41566 0.445666 0.462969 0.406922 Vertex 41567 0.387807 0.079725 0.469863 Vertex 41568 0.556378 0.482395 0.372802 Vertex 41569 0.591795 0.424679 0.199037 Vertex 41570 0.593945 0.426544 0.200772 Vertex 41571 0.531082 0.102196 0.744028 Vertex 41572 0.529459 0.10614 0.742832 Vertex 41573 0.516649 0.158384 0.747837 Vertex 41574 0.603534 0.456738 0.309039 Vertex 41575 0.491554 0.564915 0.38463 Vertex 41576 0.386836 0.217385 0.702297 Vertex 41577 0.487106 0.147498 0.652209 Vertex 41578 0.521031 0.160421 0.764402 Vertex 41579 0.467538 0.296175 0.632682 Vertex 41580 0.521997 0.539543 0.408841 Vertex 41581 0.459619 0.513898 0.420456 Vertex 41582 0.459833 0.513341 0.419668 Vertex 41583 0.491306 0.214744 0.525986 Vertex 41584 0.523513 0.399454 0.546905 Vertex 41585 0.357969 0.24033 0.510237 Vertex 41586 0.552706 0.53224 0.546905 Vertex 41587 0.512094 0.41904 0.59226 Vertex 41588 0.347249 0.90394 0.325101 Vertex 41589 0.374836 0.331758 0.474453 Vertex 41590 0.524792 0.0650901 0.672595 Vertex 41591 0.599216 0.432757 0.195169 Vertex 41592 0.455503 0.0820644 0.706106 Vertex 41593 0.519586 0.37985 0.519968 Vertex 41594 0.461212 0.222769 0.471894 Vertex 41595 0.391147 0.415344 0.594552 Vertex 41596 0.564758 0.430406 0.349082 Vertex 41597 0.608083 0.456394 0.21225 Vertex 41598 0.331814 0.276464 0.225203 Vertex 41599 0.365064 0.204883 0.21992 Vertex 41600 0.465903 0.195092 0.675314 Vertex 41601 0.489375 0.712046 0.40408 Vertex 41602 0.53627 0.495152 0.410014 Vertex 41603 0.362961 0.264933 0.227075 Vertex 41604 0.463268 0.514715 0.417903 Vertex 41605 0.461763 0.190414 0.648354 Vertex 41606 0.578298 0.455198 0.490935 Vertex 41607 0.368629 0.345913 0.424483 Vertex 41608 0.367208 0.405525 0.383125 Vertex 41609 0.369133 0.408373 0.383096 Vertex 41610 0.372094 0.412573 0.380916 Vertex 41611 0.546096 0.0524985 0.791291 Vertex 41612 0.433862 0.259969 0.642182 Vertex 41613 0.551225 0.492108 0.397298 Vertex 41614 0.427305 0.551169 0.530297 Vertex 41615 0.382169 0.219707 0.617947 Vertex 41616 0.373806 0.380685 0.534052 Vertex 41617 0.352597 0.11657 0.472155 Vertex 41618 0.450611 0.64095 0.476146 Vertex 41619 0.602432 0.526673 0.266887 Vertex 41620 0.542015 0.634459 0.463958 Vertex 41621 0.542199 0.634566 0.465184 Vertex 41622 0.542939 0.0772789 0.741612 Vertex 41623 0.582805 0.50695 0.331166 Vertex 41624 0.58165 0.505434 0.329033 Vertex 41625 0.465074 0.196384 0.673276 Vertex 41626 0.387019 0.206813 0.59184 Vertex 41627 0.480888 0.208472 0.770728 Vertex 41628 0.410319 0.462216 0.597976 Vertex 41629 0.500118 0.731923 0.50326 Vertex 41630 0.358573 0.311899 0.24171 Vertex 41631 0.357323 0.30866 0.239779 Vertex 41632 0.466904 0.611444 0.534692 Vertex 41633 0.600087 0.538625 0.269529 Vertex 41634 0.433406 0.403612 0.413793 Vertex 41635 0.433802 0.402119 0.415072 Vertex 41636 0.673368 0.456898 0.214643 Vertex 41637 0.437617 0.162678 0.571946 Vertex 41638 0.590611 0.43945 0.200121 Vertex 41639 0.423858 0.229639 0.210764 Vertex 41640 0.403816 0.882074 0.393348 Vertex 41641 0.458393 0.146414 0.653631 Vertex 41642 0.408181 0.527377 0.545175 Vertex 41643 0.496926 0.622732 0.406123 Vertex 41644 0.415561 0.201809 0.768536 Vertex 41645 0.531509 0.133965 0.789769 Vertex 41646 0.460573 0.223219 0.694 Vertex 41647 0.40137 0.174582 0.542759 Vertex 41648 0.417379 0.342419 0.639417 Vertex 41649 0.531283 0.0601387 0.795733 Vertex 41650 0.519124 0.0289974 0.662716 Vertex 41651 0.387677 0.439959 0.400941 Vertex 41652 0.39078 0.443767 0.400407 Vertex 41653 0.49406 0.717051 0.521325 Vertex 41654 0.495226 0.713894 0.522764 Vertex 41655 0.509476 0.436074 0.407444 Vertex 41656 0.452477 0.14501 0.787169 Vertex 41657 0.415199 0.384256 0.362343 Vertex 41658 0.466093 0.187979 0.664996 Vertex 41659 0.511028 0.690879 0.423601 Vertex 41660 0.417888 0.401823 0.307813 Vertex 41661 0.360095 0.259549 0.5618 Vertex 41662 0.360971 0.261586 0.564116 Vertex 41663 0.362802 0.26251 0.56822 Vertex 41664 0.381008 0.229243 0.227762 Vertex 41665 0.506219 0.0836695 0.703221 Vertex 41666 0.478986 0.0789432 0.75405 Vertex 41667 0.343547 0.902797 0.296346 Vertex 41668 0.53306 0.614654 0.532364 Vertex 41669 0.468717 0.36403 0.630313 Vertex 41670 0.414192 0.260242 0.201317 Vertex 41671 0.501564 0.737413 0.497065 Vertex 41672 0.502594 0.739332 0.495111 Vertex 41673 0.478033 0.624006 0.535521 Vertex 41674 0.329587 0.953756 0.242308 Vertex 41675 0.512959 0.120692 0.700207 Vertex 41676 0.569165 0.42581 0.349621 Vertex 41677 0.42759 0.113685 0.672477 Vertex 41678 0.50584 0.660626 0.542895 Vertex 41679 0.438564 0.250037 0.660845 Vertex 41680 0.527783 0.0143862 0.735512 Vertex 41681 0.520113 0.378055 0.524096 Vertex 41682 0.48832 0.579728 0.399495 Vertex 41683 0.402803 0.169033 0.691933 Vertex 41684 0.506847 0.41005 0.440871 Vertex 41685 0.507036 0.408972 0.440966 Vertex 41686 0.508896 0.40819 0.441363 Vertex 41687 0.515044 0.331095 0.464277 Vertex 41688 0.537248 0.449003 0.569689 Vertex 41689 0.371763 0.372666 0.549001 Vertex 41690 0.352526 0.212227 0.50762 Vertex 41691 0.531355 0.490236 0.588488 Vertex 41692 0.371934 0.261681 0.232761 Vertex 41693 0.648671 0.425828 0.227632 Vertex 41694 0.404154 0.372381 0.248385 Vertex 41695 0.580767 0.512133 0.453587 Vertex 41696 0.407855 0.518328 0.493032 Vertex 41697 0.36356 0.406342 0.372701 Vertex 41698 0.346171 0.29332 0.231517 Vertex 41699 0.364904 0.367602 0.248242 Vertex 41700 0.3695 0.278803 0.195205 Vertex 41701 0.538065 0.133331 0.437975 Vertex 41702 0.378082 0.48275 0.505416 Vertex 41703 0.496346 0.0481157 0.728529 Vertex 41704 0.562022 0.49151 0.356207 Vertex 41705 0.560731 0.488673 0.356195 Vertex 41706 0.360486 0.0927548 0.476437 Vertex 41707 0.596231 0.469507 0.399578 Vertex 41708 0.471755 0.502419 0.406952 Vertex 41709 0.403538 0.881262 0.395391 Vertex 41710 0.412108 0.167848 0.607043 Vertex 41711 0.499579 0.252199 0.507489 Vertex 41712 0.381719 0.864715 0.360122 Vertex 41713 0.528381 0.467008 0.407224 Vertex 41714 0.461686 0.569547 0.434658 Vertex 41715 0.379166 0.902637 0.30738 Vertex 41716 0.354107 0.303596 0.539945 Vertex 41717 0.447099 0.248296 0.71682 Vertex 41718 0.428851 0.268836 0.642733 Vertex 41719 0.531651 0.400923 0.442506 Vertex 41720 0.385882 0.315435 0.249984 Vertex 41721 0.48848 0.337225 0.627121 Vertex 41722 0.429846 0.84992 0.437039 Vertex 41723 0.523258 0.377587 0.44619 Vertex 41724 0.44794 0.816901 0.369088 Vertex 41725 0.516678 0.335756 0.471124 Vertex 41726 0.467538 0.73457 0.481696 Vertex 41727 0.491856 0.216402 0.511742 Vertex 41728 0.368724 0.891218 0.304087 Vertex 41729 0.489789 0.707888 0.513903 Vertex 41730 0.49127 0.706822 0.518215 Vertex 41731 0.311784 0.966069 0.25458 Vertex 41732 0.381138 0.243469 0.232417 Vertex 41733 0.475599 0.676344 0.509823 Vertex 41734 0.352366 0.0933826 0.444869 Vertex 41735 0.373622 0.357918 0.341625 Vertex 41736 0.523548 0.159989 0.461292 Vertex 41737 0.362985 0.402226 0.30645 Vertex 41738 0.386054 0.243404 0.679477 Vertex 41739 0.387203 0.24611 0.679477 Vertex 41740 0.337618 0.91395 0.310454 Vertex 41741 0.481669 0.158135 0.658784 Vertex 41742 0.49098 0.208377 0.487026 Vertex 41743 0.359627 0.169767 0.451644 Vertex 41744 0.483825 0.0590253 0.695901 Vertex 41745 0.568839 0.500838 0.352019 Vertex 41746 0.548702 0.473967 0.388059 Vertex 41747 0.523081 0.393531 0.499221 Vertex 41748 0.432488 0.189134 0.796811 Vertex 41749 0.432268 0.190982 0.796391 Vertex 41750 0.504448 0.190236 0.459083 Vertex 41751 0.640782 0.43823 0.205889 Vertex 41752 0.446856 0.231801 0.461227 Vertex 41753 0.686943 0.453664 0.198297 Vertex 41754 0.435022 0.323514 0.421587 Vertex 41755 0.383863 0.348649 0.429831 Vertex 41756 0.460579 0.678891 0.443252 Vertex 41757 0.321598 0.976795 0.201708 Vertex 41758 0.460371 0.826016 0.399555 Vertex 41759 0.45407 0.188791 0.625415 Vertex 41760 0.365455 0.418418 0.3293 Vertex 41761 0.478216 0.414385 0.376243 Vertex 41762 0.440998 0.191693 0.474589 Vertex 41763 0.493645 0.612451 0.55657 Vertex 41764 0.489789 0.610378 0.552211 Vertex 41765 0.490062 0.615388 0.549599 Vertex 41766 0.4283 0.264115 0.650504 Vertex 41767 0.40227 0.841362 0.368757 Vertex 41768 0.52099 0.0658245 0.675018 Vertex 41769 0.397763 0.326445 0.206813 Vertex 41770 0.397532 0.327233 0.207198 Vertex 41771 0.479875 0.248432 0.602868 Vertex 41772 0.51791 0.115622 0.708362 Vertex 41773 0.368612 0.927667 0.317087 Vertex 41774 0.3712 0.92538 0.318503 Vertex 41775 0.359935 0.319652 0.210865 Vertex 41776 0.4525 0.749442 0.453711 Vertex 41777 0.48084 0.600801 0.424744 Vertex 41778 0.496369 0.246774 0.499221 Vertex 41779 0.511952 0.413277 0.439811 Vertex 41780 0.524769 0.0939275 0.712028 Vertex 41781 0.502357 0.752225 0.489087 Vertex 41782 0.592802 0.516504 0.212387 Vertex 41783 0.491554 0.218321 0.52149 Vertex 41784 0.493461 0.579189 0.394437 Vertex 41785 0.547429 0.546419 0.444217 Vertex 41786 0.539581 0.573314 0.443264 Vertex 41787 0.528725 0.167629 0.441256 Vertex 41788 0.492591 0.621074 0.550008 Vertex 41789 0.489991 0.307049 0.441019 Vertex 41790 0.531556 0.0331847 0.730122 Vertex 41791 0.466732 0.0960537 0.762347 Vertex 41792 0.376542 0.292692 0.6007 Vertex 41793 0.485093 0.284951 0.443862 Vertex 41794 0.489517 0.284927 0.447439 Vertex 41795 0.426488 0.453996 0.603199 Vertex 41796 0.485069 0.285976 0.613534 Vertex 41797 0.304759 0.969445 0.243315 Vertex 41798 0.552937 0.144483 0.416511 Vertex 41799 0.444037 0.255125 0.731324 Vertex 41800 0.424231 0.427231 0.386086 Vertex 41801 0.396075 0.461713 0.409984 Vertex 41802 0.434608 0.266087 0.436944 Vertex 41803 0.334319 0.913736 0.29024 Vertex 41804 0.472744 0.175518 0.683422 Vertex 41805 0.553168 0.541467 0.457395 Vertex 41806 0.471589 0.164502 0.509687 Vertex 41807 0.534861 0.124186 0.433272 Vertex 41808 0.506402 0.697767 0.41904 Vertex 41809 0.498833 0.504783 0.392536 Vertex 41810 0.551521 0.425674 0.374756 Vertex 41811 0.647125 0.418395 0.213613 Vertex 41812 0.526451 0.497231 0.416026 Vertex 41813 0.66266 0.43435 0.211652 Vertex 41814 0.595461 0.491557 0.394331 Vertex 41815 0.370306 0.207033 0.214892 Vertex 41816 0.478838 0.286994 0.619327 Vertex 41817 0.546327 0.606901 0.494181 Vertex 41818 0.610558 0.499186 0.230315 Vertex 41819 0.349671 0.162707 0.474453 Vertex 41820 0.514054 0.317283 0.571726 Vertex 41821 0.47949 0.0692833 0.747173 Vertex 41822 0.532059 0.614139 0.534431 Vertex 41823 0.426174 0.111091 0.676498 Vertex 41824 0.479466 0.571424 0.412093 Vertex 41825 0.483103 0.393046 0.401675 Vertex 41826 0.371567 0.904817 0.358001 Vertex 41827 0.411095 0.367679 0.433077 Vertex 41828 0.556656 0.0272798 0.777977 Vertex 41829 0.364093 0.232725 0.567652 Vertex 41830 0.525154 0.552685 0.574095 Vertex 41831 0.472365 0.543576 0.420568 Vertex 41832 0.534263 0.0726296 0.714729 Vertex 41833 0.476771 0.763946 0.392151 Vertex 41834 0.59128 0.418608 0.389871 Vertex 41835 0.351851 0.374709 0.451644 Vertex 41836 0.592287 0.441452 0.429352 Vertex 41837 0.457392 0.76153 0.411968 Vertex 41838 0.492537 0.195774 0.750076 Vertex 41839 0.376222 0.272265 0.596459 Vertex 41840 0.509701 0.0395219 0.724122 Vertex 41841 0.542886 0.0544293 0.718129 Vertex 41842 0.40349 0.239116 0.73964 Vertex 41843 0.417272 0.39943 0.369059 Vertex 41844 0.474308 0.186451 0.698169 Vertex 41845 0.376933 0.456963 0.437483 Vertex 41846 0.544811 0.508153 0.567622 Vertex 41847 0.523205 0.0734943 0.719633 Vertex 41848 0.440531 0.565318 0.503367 Vertex 41849 0.509861 0.0194204 0.637794 Vertex 41850 0.537473 0.567432 0.438413 Vertex 41851 0.540085 0.566834 0.440018 Vertex 41852 0.448852 0.177248 0.594558 Vertex 41853 0.464381 0.497172 0.609347 Vertex 41854 0.465702 0.495407 0.609945 Vertex 41855 0.464956 0.496207 0.609768 Vertex 41856 0.4966 0.306687 0.607037 Vertex 41857 0.539403 0.0575564 0.803101 Vertex 41858 0.621201 0.490645 0.254663 Vertex 41859 0.487148 0.592941 0.399975 Vertex 41860 0.485584 0.64095 0.532039 Vertex 41861 0.477595 0.17216 0.683446 Vertex 41862 0.384733 0.290418 0.234887 Vertex 41863 0.660427 0.420734 0.20782 Vertex 41864 0.502541 0.765036 0.438644 Vertex 41865 0.391147 0.479617 0.438846 Vertex 41866 0.345596 0.922389 0.318462 Vertex 41867 0.46649 0.519583 0.414379 Vertex 41868 0.362689 0.919387 0.340725 Vertex 41869 0.458192 0.225488 0.635958 Vertex 41870 0.511306 0.104263 0.697482 Vertex 41871 0.43533 0.399105 0.415966 Vertex 41872 0.402128 0.278424 0.440913 Vertex 41873 0.406209 0.266603 0.652091 Vertex 41874 0.489582 0.319427 0.43878 Vertex 41875 0.395909 0.403849 0.282013 Vertex 41876 0.390146 0.422914 0.596643 Vertex 41877 0.45863 0.167996 0.801147 Vertex 41878 0.386913 0.18455 0.484355 Vertex 41879 0.372965 0.0876199 0.466842 Vertex 41880 0.321722 0.248325 0.220033 Vertex 41881 0.481231 0.485226 0.389871 Vertex 41882 0.326762 0.272549 0.216716 Vertex 41883 0.497838 0.434214 0.387567 Vertex 41884 0.492425 0.211575 0.499885 Vertex 41885 0.353112 0.166871 0.45386 Vertex 41886 0.511235 0.277121 0.498866 Vertex 41887 0.534973 0.131477 0.454351 Vertex 41888 0.45494 0.227898 0.669136 Vertex 41889 0.352662 0.916378 0.278815 Vertex 41890 0.531082 0.402344 0.449352 Vertex 41891 0.472323 0.26485 0.443536 Vertex 41892 0.407867 0.843322 0.35822 Vertex 41893 0.408033 0.843938 0.35395 Vertex 41894 0.41533 0.413976 0.320706 Vertex 41895 0.487379 0.166214 0.793086 Vertex 41896 0.404657 0.854083 0.409724 Vertex 41897 0.545308 0.137394 0.445408 Vertex 41898 0.482208 0.0806489 0.710488 Vertex 41899 0.484009 0.079263 0.708658 Vertex 41900 0.407654 0.853213 0.341216 Vertex 41901 0.511218 0.285839 0.54896 Vertex 41902 0.625252 0.499434 0.184325 Vertex 41903 0.606525 0.456791 0.387336 Vertex 41904 0.608444 0.455393 0.382391 Vertex 41905 0.400837 0.321488 0.212985 Vertex 41906 0.620325 0.458296 0.209698 Vertex 41907 0.451825 0.185516 0.596673 Vertex 41908 0.3228 0.262877 0.229444 Vertex 41909 0.381168 0.897929 0.310164 Vertex 41910 0.550396 0.575783 0.486487 Vertex 41911 0.398361 0.384547 0.240051 Vertex 41912 0.386362 0.396356 0.266928 Vertex 41913 0.526154 0.567729 0.564033 Vertex 41914 0.35849 0.305064 0.195306 Vertex 41915 0.446607 0.247834 0.6318 Vertex 41916 0.512704 0.637504 0.423488 Vertex 41917 0.517454 0.634459 0.426538 Vertex 41918 0.408051 0.172882 0.609021 Vertex 41919 0.432014 0.15608 0.57801 Vertex 41920 0.549816 0.144928 0.423435 Vertex 41921 0.371774 0.10739 0.472344 Vertex 41922 0.382637 0.351042 0.44083 Vertex 41923 0.440371 0.330573 0.418033 Vertex 41924 0.580643 0.512802 0.360311 Vertex 41925 0.442153 0.238464 0.454239 Vertex 41926 0.455651 0.642828 0.447564 Vertex 41927 0.498413 0.332783 0.611177 Vertex 41928 0.351454 0.106768 0.46763 Vertex 41929 0.551782 0.0269007 0.722754 Vertex 41930 0.420097 0.513732 0.462335 Vertex 41931 0.610268 0.492789 0.186463 Vertex 41932 0.471702 0.314938 0.42549 Vertex 41933 0.55087 0.459522 0.353701 Vertex 41934 0.387073 0.862375 0.372855 Vertex 41935 0.418238 0.821213 0.424578 Vertex 41936 0.44887 0.773393 0.412081 Vertex 41937 0.528974 0.114888 0.718839 Vertex 41938 0.601882 0.517244 0.337533 Vertex 41939 0.395921 0.187748 0.579029 Vertex 41940 0.471482 0.454837 0.380987 Vertex 41941 0.632999 0.520472 0.257227 Vertex 41942 0.557391 0.484112 0.377126 Vertex 41943 0.350482 0.178935 0.460226 Vertex 41944 0.403052 0.854682 0.340494 Vertex 41945 0.542015 0.400715 0.455956 Vertex 41946 0.580643 0.507418 0.439094 Vertex 41947 0.420157 0.146467 0.691885 Vertex 41948 0.407381 0.37064 0.39365 Vertex 41949 0.545907 0.414936 0.532317 Vertex 41950 0.416887 0.264441 0.696073 Vertex 41951 0.519385 0.103528 0.681467 Vertex 41952 0.329457 0.243143 0.213666 Vertex 41953 0.362642 0.413905 0.327197 Vertex 41954 0.358768 0.229485 0.219867 Vertex 41955 0.55514 0.434883 0.358303 Vertex 41956 0.376933 0.354525 0.34583 Vertex 41957 0.49002 0.654969 0.404938 Vertex 41958 0.505159 0.0785582 0.730039 Vertex 41959 0.386569 0.859864 0.3518 Vertex 41960 0.414945 0.264607 0.706455 Vertex 41961 0.442082 0.247046 0.667063 Vertex 41962 0.489286 0.58603 0.398003 Vertex 41963 0.612033 0.463875 0.319539 Vertex 41964 0.499467 0.269611 0.466072 Vertex 41965 0.432772 0.524541 0.472522 Vertex 41966 0.366817 0.196626 0.550648 Vertex 41967 0.45879 0.201933 0.609768 Vertex 41968 0.390804 0.0773618 0.470088 Vertex 41969 0.442254 0.252335 0.737561 Vertex 41970 0.548258 0.145336 0.421652 Vertex 41971 0.395495 0.901269 0.361904 Vertex 41972 0.429201 0.167481 0.530297 Vertex 41973 0.430669 0.167765 0.52823 Vertex 41974 0.404698 0.339339 0.237712 Vertex 41975 0.519912 0.143174 0.451662 Vertex 41976 0.469327 0.433948 0.372571 Vertex 41977 0.478412 0.11362 0.806039 Vertex 41978 0.4084 0.365807 0.289873 Vertex 41979 0.49952 0.178918 0.776935 Vertex 41980 0.405462 0.168541 0.70026 Vertex 41981 0.523057 0.0166427 0.728997 Vertex 41982 0.505319 0.152437 0.688196 Vertex 41983 0.506858 0.149352 0.687503 Vertex 41984 0.530277 0.396078 0.430086 Vertex 41985 0.370465 0.362544 0.490918 Vertex 41986 0.404716 0.359251 0.240087 Vertex 41987 0.366924 0.299971 0.48766 Vertex 41988 0.590901 0.437353 0.327547 Vertex 41989 0.493758 0.690109 0.406514 Vertex 41990 0.36979 0.44157 0.55519 Vertex 41991 0.371395 0.444721 0.557305 Vertex 41992 0.446258 0.807188 0.370433 Vertex 41993 0.49323 0.194696 0.7562 Vertex 41994 0.667357 0.468257 0.216307 Vertex 41995 0.467141 0.385494 0.399264 Vertex 41996 0.415199 0.846076 0.34477 Vertex 41997 0.405682 0.261829 0.446 Vertex 41998 0.390123 0.271216 0.613209 Vertex 41999 0.497133 0.378932 0.442518 Vertex 42000 0.372621 0.377238 0.555167 Vertex 42001 0.429242 0.489147 0.431703 Vertex 42002 0.541376 0.454795 0.390617 Vertex 42003 0.359088 0.305905 0.505523 Vertex 42004 0.339152 0.275433 0.229989 Vertex 42005 0.548347 0.146112 0.428072 Vertex 42006 0.454757 0.502935 0.41647 Vertex 42007 0.365923 0.255356 0.228141 Vertex 42008 0.450433 0.41872 0.392749 Vertex 42009 0.523738 0.319563 0.533543 Vertex 42010 0.546191 0.610437 0.475649 Vertex 42011 0.541133 0.655402 0.479238 Vertex 42012 0.458944 0.302405 0.634353 Vertex 42013 0.374363 0.462045 0.451603 Vertex 42014 0.37659 0.464935 0.449536 Vertex 42015 0.36019 0.380957 0.335448 Vertex 42016 0.547612 0.145692 0.41978 Vertex 42017 0.580371 0.507258 0.33315 Vertex 42018 0.417432 0.235988 0.212932 Vertex 42019 0.434383 0.813738 0.381188 Vertex 42020 0.400097 0.171834 0.639511 Vertex 42021 0.544296 0.578413 0.451834 Vertex 42022 0.445298 0.44375 0.401047 Vertex 42023 0.451641 0.164271 0.800104 Vertex 42024 0.450759 0.164638 0.798997 Vertex 42025 0.494006 0.348412 0.619416 Vertex 42026 0.521191 0.30937 0.53221 Vertex 42027 0.521789 0.30985 0.527964 Vertex 42028 0.351246 0.37696 0.44359 Vertex 42029 0.488617 0.0924824 0.783082 Vertex 42030 0.455367 0.256108 0.444016 Vertex 42031 0.469575 0.49549 0.406419 Vertex 42032 0.510039 0.424234 0.429476 Vertex 42033 0.397958 0.844352 0.370611 Vertex 42034 0.42422 0.547467 0.534461 Vertex 42035 0.517845 0.570779 0.410174 Vertex 42036 0.578215 0.457526 0.492991 Vertex 42037 0.421359 0.487394 0.593628 Vertex 42038 0.445375 0.530919 0.576684 Vertex 42039 0.461278 0.417637 0.621619 Vertex 42040 0.497732 0.775371 0.474316 Vertex 42041 0.372337 0.099477 0.473576 Vertex 42042 0.438558 0.818601 0.363563 Vertex 42043 0.483825 0.0947448 0.778907 Vertex 42044 0.462202 0.0658778 0.661828 Vertex 42045 0.399457 0.487761 0.439171 Vertex 42046 0.362932 0.292023 0.489265 Vertex 42047 0.492087 0.71756 0.520288 Vertex 42048 0.372396 0.376723 0.533679 Vertex 42049 0.481634 0.803225 0.454286 Vertex 42050 0.551012 0.159687 0.439242 Vertex 42051 0.50793 0.0910669 0.807709 Vertex 42052 0.507581 0.273704 0.557228 Vertex 42053 0.508665 0.277566 0.559259 Vertex 42054 0.395151 0.355899 0.418637 Vertex 42055 0.383975 0.226157 0.662912 Vertex 42056 0.546286 0.447315 0.54893 Vertex 42057 0.460792 0.544287 0.428511 Vertex 42058 0.470517 0.454221 0.613268 Vertex 42059 0.423876 0.389237 0.324011 Vertex 42060 0.514131 0.621346 0.422866 Vertex 42061 0.389495 0.0750816 0.472303 Vertex 42062 0.468462 0.351966 0.631895 Vertex 42063 0.461497 0.576761 0.435689 Vertex 42064 0.544432 0.633612 0.49652 Vertex 42065 0.45677 0.169465 0.642159 Vertex 42066 0.424723 0.234685 0.776698 Vertex 42067 0.38266 0.241905 0.229278 Vertex 42068 0.551699 0.466593 0.356698 Vertex 42069 0.510785 0.292923 0.569606 Vertex 42070 0.367232 0.330011 0.254337 Vertex 42071 0.471885 0.219287 0.735452 Vertex 42072 0.365958 0.407864 0.397677 Vertex 42073 0.346722 0.297466 0.230042 Vertex 42074 0.475439 0.22711 0.594535 Vertex 42075 0.478667 0.269813 0.611278 Vertex 42076 0.520415 0.300664 0.490509 Vertex 42077 0.526907 0.0758338 0.795656 Vertex 42078 0.522915 0.471959 0.595293 Vertex 42079 0.399717 0.36701 0.62249 Vertex 42080 0.475841 0.310478 0.632226 Vertex 42081 0.497364 0.595251 0.402996 Vertex 42082 0.367735 0.343692 0.412525 Vertex 42083 0.435846 0.829279 0.357486 Vertex 42084 0.521789 0.128717 0.792819 Vertex 42085 0.509494 0.306018 0.463354 Vertex 42086 0.537567 0.666542 0.487915 Vertex 42087 0.534938 0.665056 0.49918 Vertex 42088 0.405984 0.362544 0.273295 Vertex 42089 0.544076 0.504463 0.569653 Vertex 42090 0.419102 0.380821 0.352019 Vertex 42091 0.31266 0.99599 0.219352 Vertex 42092 0.461319 0.778167 0.384091 Vertex 42093 0.542744 0.0305195 0.780068 Vertex 42094 0.519705 0.0903087 0.674034 Vertex 42095 0.344133 0.300824 0.222781 Vertex 42096 0.42236 0.825927 0.375141 Vertex 42097 0.397408 0.321251 0.206032 Vertex 42098 0.408821 0.369106 0.275345 Vertex 42099 0.426156 0.132555 0.686656 Vertex 42100 0.565463 0.535296 0.468169 Vertex 42101 0.579275 0.428907 0.453587 Vertex 42102 0.458624 0.158573 0.515745 Vertex 42103 0.331388 0.276411 0.210592 Vertex 42104 0.532468 0.104126 0.79488 Vertex 42105 0.559167 0.535474 0.521982 Vertex 42106 0.370921 0.233756 0.48204 Vertex 42107 0.559357 0.502745 0.536528 Vertex 42108 0.534346 0.126911 0.794999 Vertex 42109 0.423645 0.175151 0.494453 Vertex 42110 0.384917 0.234697 0.648354 Vertex 42111 0.360705 0.262676 0.500601 Vertex 42112 0.557616 0.514821 0.538648 Vertex 42113 0.54683 0.507922 0.563494 Vertex 42114 0.480088 0.187079 0.561385 Vertex 42115 0.521191 0.518037 0.40986 Vertex 42116 0.532687 0.0989025 0.722369 Vertex 42117 0.513261 0.345303 0.581937 Vertex 42118 0.405451 0.835178 0.383054 Vertex 42119 0.354818 0.163169 0.477663 Vertex 42120 0.457783 0.132348 0.806992 Vertex 42121 0.511443 0.555374 0.40023 Vertex 42122 0.40307 0.458414 0.402587 Vertex 42123 0.55793 0.515556 0.434972 Vertex 42124 0.527783 0.0986064 0.718265 Vertex 42125 0.461497 0.565964 0.562434 Vertex 42126 0.563165 0.472498 0.3285 Vertex 42127 0.562982 0.470431 0.328198 Vertex 42128 0.524549 0.136103 0.739995 Vertex 42129 0.514499 0.471817 0.60253 Vertex 42130 0.425985 0.247988 0.216716 Vertex 42131 0.446216 0.501952 0.427125 Vertex 42132 0.376021 0.34021 0.412721 Vertex 42133 0.48915 0.500939 0.391518 Vertex 42134 0.474627 0.114248 0.648591 Vertex 42135 0.407914 0.828391 0.393774 Vertex 42136 0.40872 0.825726 0.391719 Vertex 42137 0.479786 0.212404 0.754133 Vertex 42138 0.481539 0.210077 0.752024 Vertex 42139 0.544586 0.613919 0.463709 Vertex 42140 0.531923 0.447333 0.580006 Vertex 42141 0.39996 0.490302 0.576346 Vertex 42142 0.440116 0.81022 0.37016 Vertex 42143 0.622901 0.53988 0.279496 Vertex 42144 0.658135 0.428611 0.199031 Vertex 42145 0.562069 0.0151206 0.738627 Vertex 42146 0.551776 0.148167 0.413088 Vertex 42147 0.629274 0.450057 0.19302 Vertex 42148 0.475942 0.739592 0.398927 Vertex 42149 0.545824 0.581007 0.458355 Vertex 42150 0.43019 0.193487 0.479813 Vertex 42151 0.36613 0.222171 0.2091 Vertex 42152 0.466543 0.788472 0.484231 Vertex 42153 0.472691 0.47344 0.609815 Vertex 42154 0.437498 0.469235 0.415753 Vertex 42155 0.409058 0.420995 0.318556 Vertex 42156 0.326383 0.252501 0.231351 Vertex 42157 0.390437 0.256961 0.206594 Vertex 42158 0.390857 0.25593 0.207897 Vertex 42159 0.496577 0.544447 0.380116 Vertex 42160 0.385527 0.353761 0.362437 Vertex 42161 0.521085 0.515722 0.591342 Vertex 42162 0.438464 0.095041 0.689842 Vertex 42163 0.519219 0.381721 0.464129 Vertex 42164 0.581188 0.498345 0.423121 Vertex 42165 0.35278 0.906173 0.333085 Vertex 42166 0.481965 0.548966 0.393211 Vertex 42167 0.41376 0.531666 0.522029 Vertex 42168 0.427039 0.818832 0.439118 Vertex 42169 0.37207 0.307736 0.472249 Vertex 42170 0.479774 0.720474 0.405839 Vertex 42171 0.442088 0.294149 0.636704 Vertex 42172 0.339454 0.281469 0.229444 Vertex 42173 0.34257 0.284424 0.230208 Vertex 42174 0.513385 0.428623 0.595743 Vertex 42175 0.470653 0.222171 0.74792 Vertex 42176 0.387055 0.276263 0.228248 Vertex 42177 0.460857 0.247834 0.451094 Vertex 42178 0.524934 0.573989 0.559484 Vertex 42179 0.524129 0.0328826 0.658375 Vertex 42180 0.521724 0.0616964 0.671808 Vertex 42181 0.448935 0.403558 0.636503 Vertex 42182 0.611014 0.455879 0.37568 Vertex 42183 0.418255 0.172663 0.749957 Vertex 42184 0.633526 0.518008 0.244298 Vertex 42185 0.632294 0.518878 0.244298 Vertex 42186 0.471737 0.282695 0.625913 Vertex 42187 0.365248 0.402551 0.383125 Vertex 42188 0.363376 0.399655 0.38107 Vertex 42189 0.521085 0.364516 0.494009 Vertex 42190 0.396655 0.336081 0.207086 Vertex 42191 0.533333 0.64419 0.517949 Vertex 42192 0.444416 0.584425 0.495703 Vertex 42193 0.365419 0.308381 0.242592 Vertex 42194 0.365763 0.328838 0.501424 Vertex 42195 0.512568 0.101704 0.694225 Vertex 42196 0.391598 0.255385 0.685596 Vertex 42197 0.402152 0.249605 0.216361 Vertex 42198 0.425825 0.546585 0.513909 Vertex 42199 0.464304 0.167671 0.665139 Vertex 42200 0.519817 0.384339 0.461802 Vertex 42201 0.519847 0.637367 0.428753 Vertex 42202 0.376696 0.481394 0.492991 Vertex 42203 0.377739 0.482916 0.490924 Vertex 42204 0.349547 0.897769 0.288161 Vertex 42205 0.381132 0.328003 0.262184 Vertex 42206 0.539569 0.574931 0.538583 Vertex 42207 0.642902 0.43823 0.223652 Vertex 42208 0.493852 0.710388 0.405862 Vertex 42209 0.599779 0.495318 0.264968 Vertex 42210 0.375488 0.380827 0.514744 Vertex 42211 0.656175 0.44263 0.199469 Vertex 42212 0.528518 0.599504 0.543031 Vertex 42213 0.513646 0.74359 0.480559 Vertex 42214 0.421714 0.374247 0.327197 Vertex 42215 0.462735 0.106359 0.770686 Vertex 42216 0.51576 0.743158 0.476413 Vertex 42217 0.490506 0.225245 0.507531 Vertex 42218 0.37717 0.428404 0.337533 Vertex 42219 0.380901 0.247538 0.206434 Vertex 42220 0.408359 0.830049 0.405957 Vertex 42221 0.436675 0.562292 0.524096 Vertex 42222 0.384105 0.349159 0.220009 Vertex 42223 0.546055 0.399839 0.445544 Vertex 42224 0.595604 0.500003 0.385151 Vertex 42225 0.549981 0.565739 0.486973 Vertex 42226 0.364247 0.35549 0.441333 Vertex 42227 0.364892 0.353109 0.437081 Vertex 42228 0.497471 0.161511 0.697157 Vertex 42229 0.487586 0.328749 0.434167 Vertex 42230 0.502938 0.257831 0.513495 Vertex 42231 0.498685 0.0479025 0.738751 Vertex 42232 0.558119 0.483876 0.366554 Vertex 42233 0.418854 0.398186 0.375005 Vertex 42234 0.494699 0.641643 0.404162 Vertex 42235 0.598358 0.520022 0.273894 Vertex 42236 0.532705 0.0121829 0.754186 Vertex 42237 0.514771 0.742187 0.452432 Vertex 42238 0.586566 0.488703 0.40373 Vertex 42239 0.393445 0.313913 0.24367 Vertex 42240 0.625093 0.52813 0.242148 Vertex 42241 0.616759 0.53468 0.247076 Vertex 42242 0.411995 0.146479 0.663433 Vertex 42243 0.622806 0.482833 0.286894 Vertex 42244 0.552664 0.0537482 0.760239 Vertex 42245 0.390887 0.251127 0.673235 Vertex 42246 0.378562 0.345493 0.465965 Vertex 42247 0.368244 0.876359 0.33556 Vertex 42248 0.582438 0.512079 0.368585 Vertex 42249 0.399871 0.327505 0.220441 Vertex 42250 0.490932 0.0693425 0.729577 Vertex 42251 0.399013 0.31534 0.237961 Vertex 42252 0.374884 0.188033 0.552578 Vertex 42253 0.508215 0.535871 0.395539 Vertex 42254 0.367854 0.183449 0.50557 Vertex 42255 0.358626 0.326777 0.222206 Vertex 42256 0.546605 0.494068 0.565519 Vertex 42257 0.392699 0.254212 0.644184 Vertex 42258 0.559304 0.528301 0.455737 Vertex 42259 0.541962 0.636408 0.463987 Vertex 42260 0.400369 0.257381 0.706153 Vertex 42261 0.597511 0.520045 0.247834 Vertex 42262 0.458002 0.196058 0.602595 Vertex 42263 0.363423 0.272442 0.487251 Vertex 42264 0.526279 0.156915 0.441582 Vertex 42265 0.444043 0.164283 0.497249 Vertex 42266 0.353823 0.299414 0.528681 Vertex 42267 0.598731 0.435659 0.19036 Vertex 42268 0.335285 0.279579 0.227075 Vertex 42269 0.4992 0.0371351 0.676327 Vertex 42270 0.532889 0.158627 0.456608 Vertex 42271 0.553073 0.55519 0.48079 Vertex 42272 0.552273 0.556908 0.479007 Vertex 42273 0.456155 0.800702 0.376936 Vertex 42274 0.491448 0.417637 0.611396 Vertex 42275 0.411995 0.379435 0.383706 Vertex 42276 0.50507 0.59553 0.407521 Vertex 42277 0.541192 0.138484 0.444247 Vertex 42278 0.383981 0.23131 0.65462 Vertex 42279 0.386409 0.402178 0.594523 Vertex 42280 0.499568 0.652239 0.547982 Vertex 42281 0.471216 0.471497 0.611586 Vertex 42282 0.420944 0.400935 0.343106 Vertex 42283 0.49981 0.580705 0.397227 Vertex 42284 0.498626 0.577359 0.394722 Vertex 42285 0.360361 0.891165 0.297898 Vertex 42286 0.517827 0.367916 0.480334 Vertex 42287 0.50369 0.16234 0.709043 Vertex 42288 0.4283 0.159266 0.58003 Vertex 42289 0.385835 0.214229 0.475294 Vertex 42290 0.409887 0.256416 0.19607 Vertex 42291 0.417841 0.26469 0.216331 Vertex 42292 0.40047 0.313232 0.627891 Vertex 42293 0.449841 0.423151 0.393348 Vertex 42294 0.48915 0.219381 0.499452 Vertex 42295 0.537064 0.105406 0.793044 Vertex 42296 0.490346 0.611769 0.403333 Vertex 42297 0.448739 0.378879 0.636254 Vertex 42298 0.519888 0.583181 0.422375 Vertex 42299 0.51438 0.114082 0.691933 Vertex 42300 0.354865 0.287948 0.545992 Vertex 42301 0.371727 0.372506 0.5531 Vertex 42302 0.515671 0.586492 0.55641 Vertex 42303 0.529542 0.107526 0.730507 Vertex 42304 0.51133 0.0285058 0.729174 Vertex 42305 0.483286 0.201305 0.478125 Vertex 42306 0.484577 0.198978 0.475228 Vertex 42307 0.39444 0.848327 0.37099 Vertex 42308 0.489695 0.36916 0.62384 Vertex 42309 0.534535 0.0543997 0.787394 Vertex 42310 0.525136 0.47816 0.593534 Vertex 42311 0.370501 0.464935 0.520193 Vertex 42312 0.478086 0.0773026 0.737614 Vertex 42313 0.536045 0.127805 0.451141 Vertex 42314 0.365763 0.288078 0.232352 Vertex 42315 0.554133 0.469602 0.348412 Vertex 42316 0.418741 0.250801 0.198948 Vertex 42317 0.480165 0.786014 0.40928 Vertex 42318 0.666758 0.492179 0.200938 Vertex 42319 0.439601 0.558075 0.55278 Vertex 42320 0.507155 0.0337888 0.74789 Vertex 42321 0.515002 0.171372 0.764473 Vertex 42322 0.39322 0.866349 0.391281 Vertex 42323 0.382785 0.248787 0.208608 Vertex 42324 0.491258 0.163294 0.675343 Vertex 42325 0.530158 0.600528 0.5411 Vertex 42326 0.555537 0.459794 0.340375 Vertex 42327 0.516222 0.431501 0.422333 Vertex 42328 0.514813 0.429683 0.424323 Vertex 42329 0.373101 0.419153 0.368419 Vertex 42330 0.604636 0.446409 0.334784 Vertex 42331 0.478767 0.19803 0.480458 Vertex 42332 0.429052 0.152479 0.602903 Vertex 42333 0.48161 0.11593 0.813596 Vertex 42334 0.406303 0.455749 0.398802 Vertex 42335 0.541133 0.483562 0.575884 Vertex 42336 0.601941 0.460884 0.211244 Vertex 42337 0.417533 0.152657 0.69814 Vertex 42338 0.418386 0.151105 0.698152 Vertex 42339 0.464784 0.515236 0.597875 Vertex 42340 0.473792 0.122338 0.645369 Vertex 42341 0.536235 0.0551104 0.714682 Vertex 42342 0.447294 0.259792 0.440451 Vertex 42343 0.401459 0.165615 0.676486 Vertex 42344 0.459104 0.119875 0.781128 Vertex 42345 0.39216 0.504095 0.493399 Vertex 42346 0.48206 0.197758 0.720243 Vertex 42347 0.360409 0.26851 0.565283 Vertex 42348 0.638176 0.508123 0.194494 Vertex 42349 0.554542 0.429411 0.367306 Vertex 42350 0.425919 0.391606 0.418134 Vertex 42351 0.490411 0.596128 0.400248 Vertex 42352 0.518988 0.0933293 0.681515 Vertex 42353 0.354522 0.389172 0.487435 Vertex 42354 0.536768 0.121101 0.793731 Vertex 42355 0.384473 0.431727 0.328258 Vertex 42356 0.389252 0.192913 0.633902 Vertex 42357 0.388417 0.195033 0.634353 Vertex 42358 0.366373 0.302541 0.580267 Vertex 42359 0.466691 0.559543 0.42867 Vertex 42360 0.392208 0.195104 0.593433 Vertex 42361 0.499882 0.0874836 0.789372 Vertex 42362 0.425155 0.262948 0.718887 Vertex 42363 0.422911 0.390108 0.317934 Vertex 42364 0.513071 0.724768 0.497136 Vertex 42365 0.513285 0.727214 0.495052 Vertex 42366 0.485981 0.388764 0.412022 Vertex 42367 0.600063 0.528669 0.218588 Vertex 42368 0.488984 0.10367 0.804499 Vertex 42369 0.409768 0.416031 0.311271 Vertex 42370 0.496583 0.4261 0.390783 Vertex 42371 0.556105 0.0448523 0.754038 Vertex 42372 0.491033 0.29284 0.445822 Vertex 42373 0.46556 0.108071 0.646743 Vertex 42374 0.570373 0.419265 0.472249 Vertex 42375 0.676886 0.449299 0.196123 Vertex 42376 0.447111 0.409682 0.63761 Vertex 42377 0.418255 0.16468 0.586272 Vertex 42378 0.482605 0.380904 0.626132 Vertex 42379 0.636944 0.507424 0.25673 Vertex 42380 0.557343 0.0271199 0.774554 Vertex 42381 0.53463 0.426698 0.567551 Vertex 42382 0.555045 0.474755 0.377054 Vertex 42383 0.371727 0.107715 0.468358 Vertex 42384 0.489653 0.0880226 0.724886 Vertex 42385 0.436639 0.507833 0.440652 Vertex 42386 0.503903 0.02481 0.635271 Vertex 42387 0.50048 0.0252128 0.638155 Vertex 42388 0.494901 0.244559 0.576133 Vertex 42389 0.513983 0.400088 0.446113 Vertex 42390 0.488806 0.527609 0.388604 Vertex 42391 0.365431 0.448884 0.469637 Vertex 42392 0.387144 0.231381 0.702345 Vertex 42393 0.450937 0.268522 0.437092 Vertex 42394 0.51794 0.562552 0.571347 Vertex 42395 0.354711 0.397257 0.444069 Vertex 42396 0.449705 0.149636 0.64114 Vertex 42397 0.543668 0.61402 0.510557 Vertex 42398 0.553535 0.561794 0.511813 Vertex 42399 0.489381 0.56299 0.389255 Vertex 42400 0.437498 0.409724 0.410204 Vertex 42401 0.438008 0.407817 0.410517 Vertex 42402 0.439459 0.408166 0.408421 Vertex 42403 0.463362 0.30221 0.633731 Vertex 42404 0.44531 0.452746 0.626233 Vertex 42405 0.612146 0.468897 0.301215 Vertex 42406 0.405616 0.424359 0.357918 Vertex 42407 0.373391 0.876957 0.322939 Vertex 42408 0.374209 0.384476 0.54893 Vertex 42409 0.417681 0.478972 0.594517 Vertex 42410 0.477494 0.666388 0.515935 Vertex 42411 0.409087 0.243658 0.747748 Vertex 42412 0.541417 0.624598 0.455281 Vertex 42413 0.462693 0.278424 0.434332 Vertex 42414 0.369778 0.38752 0.267053 Vertex 42415 0.362985 0.356686 0.377043 Vertex 42416 0.369826 0.443584 0.436287 Vertex 42417 0.507735 0.677369 0.528319 Vertex 42418 0.414868 0.464941 0.40514 Vertex 42419 0.49936 0.205125 0.485184 Vertex 42420 0.497732 0.206446 0.483538 Vertex 42421 0.36847 0.361881 0.291875 Vertex 42422 0.610469 0.472901 0.291549 Vertex 42423 0.652177 0.423239 0.203556 Vertex 42424 0.508896 0.156068 0.709476 Vertex 42425 0.502221 0.0922928 0.719734 Vertex 42426 0.503648 0.0926719 0.717294 Vertex 42427 0.449888 0.157454 0.635981 Vertex 42428 0.41209 0.172882 0.532364 Vertex 42429 0.49727 0.269813 0.592456 Vertex 42430 0.436693 0.437128 0.399187 Vertex 42431 0.400606 0.196123 0.475921 Vertex 42432 0.519272 0.305218 0.512713 Vertex 42433 0.361724 0.36104 0.373631 Vertex 42434 0.51438 0.442796 0.412679 Vertex 42435 0.403277 0.513341 0.493032 Vertex 42436 0.545764 0.0656113 0.727137 Vertex 42437 0.456356 0.568765 0.445319 Vertex 42438 0.457386 0.570234 0.443169 Vertex 42439 0.429473 0.473754 0.415031 Vertex 42440 0.368493 0.332492 0.258441 Vertex 42441 0.371946 0.329063 0.258577 Vertex 42442 0.468604 0.338605 0.632203 Vertex 42443 0.514937 0.0236373 0.733226 Vertex 42444 0.498087 0.681189 0.53635 Vertex 42445 0.484109 0.489846 0.391245 Vertex 42446 0.355256 0.393235 0.43271 Vertex 42447 0.559084 0.487139 0.364421 Vertex 42448 0.560174 0.488489 0.360329 Vertex 42449 0.5216 0.389012 0.501152 Vertex 42450 0.428579 0.403079 0.404245 Vertex 42451 0.479662 0.200654 0.787288 Vertex 42452 0.409283 0.248284 0.220886 Vertex 42453 0.40869 0.3648 0.302293 Vertex 42454 0.488919 0.717353 0.511748 Vertex 42455 0.53399 0.145893 0.444585 Vertex 42456 0.465441 0.365535 0.409671 Vertex 42457 0.356174 0.392412 0.42398 Vertex 42458 0.357815 0.400248 0.50772 Vertex 42459 0.553576 0.0226838 0.725828 Vertex 42460 0.539842 0.64159 0.457703 Vertex 42461 0.50369 0.634844 0.555676 Vertex 42462 0.382832 0.213915 0.642182 Vertex 42463 0.45253 0.128948 0.635407 Vertex 42464 0.429574 0.254757 0.442529 Vertex 42465 0.526741 0.0721617 0.718976 Vertex 42466 0.4706 0.499375 0.407307 Vertex 42467 0.386889 0.481737 0.455743 Vertex 42468 0.59661 0.453782 0.199665 Vertex 42469 0.350429 0.0865005 0.441837 Vertex 42470 0.423621 0.418448 0.614328 Vertex 42471 0.474704 0.326848 0.423624 Vertex 42472 0.578659 0.413692 0.361809 Vertex 42473 0.499035 0.660406 0.544867 Vertex 42474 0.403786 0.35058 0.252459 Vertex 42475 0.358721 0.253265 0.558862 Vertex 42476 0.437166 0.456063 0.407906 Vertex 42477 0.462616 0.637326 0.509651 Vertex 42478 0.35342 0.206227 0.483088 Vertex 42479 0.540138 0.415344 0.542664 Vertex 42480 0.371845 0.310987 0.478533 Vertex 42481 0.358206 0.327695 0.225292 Vertex 42482 0.359574 0.329934 0.225257 Vertex 42483 0.626615 0.459741 0.209887 Vertex 42484 0.450943 0.160966 0.631818 Vertex 42485 0.687754 0.460884 0.217178 Vertex 42486 0.446009 0.592077 0.488175 Vertex 42487 0.487379 0.214797 0.565496 Vertex 42488 0.479235 0.758865 0.394509 Vertex 42489 0.479283 0.75537 0.394657 Vertex 42490 0.487012 0.632416 0.412253 Vertex 42491 0.643287 0.43849 0.213174 Vertex 42492 0.636263 0.469531 0.219328 Vertex 42493 0.481302 0.689173 0.507963 Vertex 42494 0.549306 0.00459599 0.760138 Vertex 42495 0.468474 0.35658 0.4148 Vertex 42496 0.500776 0.250517 0.553123 Vertex 42497 0.486988 0.199469 0.735541 Vertex 42498 0.533149 0.130269 0.436915 Vertex 42499 0.411059 0.265365 0.664955 Vertex 42500 0.490956 0.182377 0.720794 Vertex 42501 0.603433 0.52287 0.209259 Vertex 42502 0.351264 0.153539 0.474399 Vertex 42503 0.526676 0.0748624 0.710903 Vertex 42504 0.360936 0.224848 0.216687 Vertex 42505 0.447549 0.822628 0.461529 Vertex 42506 0.446649 0.824162 0.460268 Vertex 42507 0.533072 0.126461 0.796201 Vertex 42508 0.561702 0.402563 0.463987 Vertex 42509 0.384105 0.278626 0.230344 Vertex 42510 0.538166 0.115622 0.796029 Vertex 42511 0.536051 0.112003 0.796533 Vertex 42512 0.497542 0.514798 0.389107 Vertex 42513 0.585879 0.425354 0.19729 Vertex 42514 0.467378 0.275907 0.625048 Vertex 42515 0.371176 0.368384 0.505422 Vertex 42516 0.616825 0.47004 0.216278 Vertex 42517 0.473751 0.068466 0.65183 Vertex 42518 0.541512 0.64865 0.486612 Vertex 42519 0.389779 0.260787 0.619499 Vertex 42520 0.452234 0.120923 0.758083 Vertex 42521 0.434703 0.143299 0.604887 Vertex 42522 0.3617 0.356633 0.441215 Vertex 42523 0.591932 0.435002 0.1928 Vertex 42524 0.413233 0.154818 0.639055 Vertex 42525 0.54413 0.636822 0.494963 Vertex 42526 0.440554 0.501158 0.430998 Vertex 42527 0.382796 0.431448 0.330674 Vertex 42528 0.378058 0.428511 0.330745 Vertex 42529 0.382944 0.430465 0.326274 Vertex 42530 0.382163 0.344261 0.279265 Vertex 42531 0.3824 0.342744 0.27695 Vertex 42532 0.400464 0.169045 0.526163 Vertex 42533 0.431196 0.27573 0.433148 Vertex 42534 0.650092 0.422215 0.222289 Vertex 42535 0.523839 0.35183 0.532204 Vertex 42536 0.403508 0.365049 0.419236 Vertex 42537 0.445138 0.248829 0.712668 Vertex 42538 0.390745 0.354264 0.345789 Vertex 42539 0.417314 0.258483 0.227703 Vertex 42540 0.389803 0.200068 0.592485 Vertex 42541 0.394577 0.271909 0.625688 Vertex 42542 0.406671 0.203698 0.473712 Vertex 42543 0.431949 0.789349 0.422552 Vertex 42544 0.357708 0.893268 0.337556 Vertex 42545 0.357998 0.89184 0.337521 Vertex 42546 0.60248 0.526507 0.265104 Vertex 42547 0.36324 0.252667 0.48506 Vertex 42548 0.510625 0.0329359 0.753984 Vertex 42549 0.470517 0.654478 0.515307 Vertex 42550 0.518325 0.638469 0.534793 Vertex 42551 0.505644 0.0415356 0.72289 Vertex 42552 0.538533 0.619054 0.522 Vertex 42553 0.451843 0.560663 0.443293 Vertex 42554 0.487977 0.740445 0.508834 Vertex 42555 0.383241 0.217409 0.656705 Vertex 42556 0.559073 0.431614 0.354246 Vertex 42557 0.512124 0.636526 0.542782 Vertex 42558 0.509861 0.633831 0.549001 Vertex 42559 0.460212 0.15868 0.522 Vertex 42560 0.49573 0.18705 0.772795 Vertex 42561 0.506029 0.057746 0.682385 Vertex 42562 0.429609 0.105435 0.670967 Vertex 42563 0.423639 0.392607 0.324586 Vertex 42564 0.408068 0.334334 0.204989 Vertex 42565 0.408299 0.49838 0.578318 Vertex 42566 0.368239 0.241864 0.482981 Vertex 42567 0.571475 0.511564 0.428931 Vertex 42568 0.451707 0.638149 0.481607 Vertex 42569 0.609771 0.516782 0.326054 Vertex 42570 0.594455 0.443631 0.423002 Vertex 42571 0.353811 0.0909899 0.453398 Vertex 42572 0.523762 0.51125 0.411767 Vertex 42573 0.399504 0.306699 0.223628 Vertex 42574 0.453626 0.329383 0.417613 Vertex 42575 0.552202 0.413953 0.517812 Vertex 42576 0.433589 0.167576 0.532453 Vertex 42577 0.517229 0.539353 0.405317 Vertex 42578 0.523531 0.0688213 0.677322 Vertex 42579 0.469984 0.0636745 0.69705 Vertex 42580 0.647753 0.453445 0.192042 Vertex 42581 0.647427 0.454955 0.191604 Vertex 42582 0.696111 0.447694 0.202188 Vertex 42583 0.357779 0.384025 0.372743 Vertex 42584 0.398142 0.371955 0.235864 Vertex 42585 0.356518 0.412661 0.458989 Vertex 42586 0.607952 0.517777 0.207495 Vertex 42587 0.548601 0.591899 0.470271 Vertex 42588 0.446483 0.151431 0.781016 Vertex 42589 0.530123 0.69657 0.478492 Vertex 42590 0.544675 0.131436 0.441309 Vertex 42591 0.365248 0.882565 0.312438 Vertex 42592 0.358833 0.27554 0.225801 Vertex 42593 0.362873 0.443933 0.524458 Vertex 42594 0.362807 0.446273 0.520566 Vertex 42595 0.419286 0.252365 0.20355 Vertex 42596 0.375719 0.402753 0.287575 Vertex 42597 0.358288 0.35549 0.3881 Vertex 42598 0.375435 0.389498 0.54896 Vertex 42599 0.375754 0.387543 0.551015 Vertex 42600 0.355896 0.358605 0.430797 Vertex 42601 0.568259 0.541094 0.486884 Vertex 42602 0.495984 0.727877 0.514875 Vertex 42603 0.32858 0.267533 0.22977 Vertex 42604 0.498549 0.525139 0.391529 Vertex 42605 0.450943 0.375763 0.410014 Vertex 42606 0.590463 0.4253 0.405892 Vertex 42607 0.52099 0.729334 0.476437 Vertex 42608 0.520321 0.731022 0.47437 Vertex 42609 0.362197 0.206174 0.47559 Vertex 42610 0.364614 0.205007 0.476058 Vertex 42611 0.537384 0.152971 0.453806 Vertex 42612 0.536922 0.549753 0.435742 Vertex 42613 0.378325 0.217995 0.584425 Vertex 42614 0.43321 0.533075 0.485143 Vertex 42615 0.474604 0.431063 0.372068 Vertex 42616 0.326122 0.252649 0.204095 Vertex 42617 0.458014 0.223533 0.648354 Vertex 42618 0.663904 0.471456 0.191989 Vertex 42619 0.441792 0.540887 0.457763 Vertex 42620 0.511235 0.414912 0.591093 Vertex 42621 0.55026 0.152437 0.420539 Vertex 42622 0.442829 0.159562 0.601328 Vertex 42623 0.587744 0.508514 0.301422 Vertex 42624 0.450943 0.438384 0.393448 Vertex 42625 0.450072 0.441611 0.394917 Vertex 42626 0.321467 0.964138 0.209242 Vertex 42627 0.366035 0.385447 0.291898 Vertex 42628 0.476677 0.168298 0.506524 Vertex 42629 0.525669 0.471628 0.408095 Vertex 42630 0.603167 0.460357 0.213133 Vertex 42631 0.677668 0.452551 0.197207 Vertex 42632 0.358075 0.371872 0.380182 Vertex 42633 0.523975 0.0672163 0.655023 Vertex 42634 0.371176 0.081792 0.479084 Vertex 42635 0.578819 0.510314 0.370693 Vertex 42636 0.561424 0.500542 0.397162 Vertex 42637 0.446127 0.102225 0.729394 Vertex 42638 0.521653 0.309613 0.523634 Vertex 42639 0.36411 0.356728 0.241935 Vertex 42640 0.408234 0.868422 0.413491 Vertex 42641 0.68561 0.467825 0.196395 Vertex 42642 0.559268 0.0153397 0.762519 Vertex 42643 0.496517 0.437045 0.386045 Vertex 42644 0.434069 0.360181 0.422049 Vertex 42645 0.497974 0.131069 0.650314 Vertex 42646 0.528701 0.135274 0.772813 Vertex 42647 0.447383 0.241568 0.683641 Vertex 42648 0.535435 0.160599 0.434818 Vertex 42649 0.428419 0.842552 0.356136 Vertex 42650 0.424877 0.158259 0.598722 Vertex 42651 0.334314 0.250854 0.22945 Vertex 42652 0.365763 0.0838353 0.478486 Vertex 42653 0.503743 0.645493 0.409197 Vertex 42654 0.430764 0.17107 0.501288 Vertex 42655 0.519681 0.379495 0.499203 Vertex 42656 0.622866 0.524375 0.221401 Vertex 42657 0.622937 0.524777 0.223278 Vertex 42658 0.504478 0.42581 0.40668 Vertex 42659 0.449468 0.809883 0.370729 Vertex 42660 0.449663 0.812181 0.370267 Vertex 42661 0.456587 0.116896 0.766523 Vertex 42662 0.357311 0.154345 0.476875 Vertex 42663 0.356968 0.241799 0.548906 Vertex 42664 0.453513 0.0868558 0.660081 Vertex 42665 0.465299 0.222633 0.779002 Vertex 42666 0.439737 0.14629 0.758219 Vertex 42667 0.508339 0.707255 0.507483 Vertex 42668 0.391355 0.185652 0.681574 Vertex 42669 0.3539 0.0929206 0.445864 Vertex 42670 0.444682 0.575002 0.470822 Vertex 42671 0.581934 0.423151 0.432876 Vertex 42672 0.58592 0.457235 0.466836 Vertex 42673 0.470979 0.163548 0.798227 Vertex 42674 0.447721 0.763668 0.422309 Vertex 42675 0.364661 0.220128 0.49257 Vertex 42676 0.491092 0.615986 0.4037 Vertex 42677 0.370525 0.349017 0.588452 Vertex 42678 0.376749 0.4261 0.346375 Vertex 42679 0.499591 0.172089 0.728256 Vertex 42680 0.527067 0.336028 0.497166 Vertex 42681 0.366793 0.116588 0.464088 Vertex 42682 0.367368 0.927477 0.30667 Vertex 42683 0.365716 0.930142 0.309471 Vertex 42684 0.514037 0.0848421 0.722695 Vertex 42685 0.50321 0.169809 0.783414 Vertex 42686 0.607301 0.458112 0.310886 Vertex 42687 0.413985 0.416979 0.357362 Vertex 42688 0.457677 0.513388 0.421942 Vertex 42689 0.531461 0.693348 0.46821 Vertex 42690 0.499147 0.357616 0.443418 Vertex 42691 0.424859 0.384008 0.423814 Vertex 42692 0.515547 0.667952 0.524321 Vertex 42693 0.442876 0.413579 0.403156 Vertex 42694 0.4049 0.261776 0.224309 Vertex 42695 0.409241 0.856553 0.41586 Vertex 42696 0.380978 0.372926 0.607138 Vertex 42697 0.407849 0.841362 0.416298 Vertex 42698 0.356772 0.389954 0.495668 Vertex 42699 0.490316 0.0472806 0.68617 Vertex 42700 0.627805 0.490154 0.249273 Vertex 42701 0.410692 0.150601 0.660033 Vertex 42702 0.526634 0.622963 0.433936 Vertex 42703 0.490547 0.377202 0.432864 Vertex 42704 0.462628 0.519761 0.42058 Vertex 42705 0.477547 0.169749 0.677298 Vertex 42706 0.491092 0.0600321 0.691133 Vertex 42707 0.359248 0.398098 0.322655 Vertex 42708 0.35833 0.396303 0.329235 Vertex 42709 0.383519 0.479025 0.553082 Vertex 42710 0.551284 0.0114544 0.724726 Vertex 42711 0.514961 0.1228 0.790752 Vertex 42712 0.530099 0.136144 0.449441 Vertex 42713 0.46601 0.33864 0.415954 Vertex 42714 0.410751 0.372044 0.281291 Vertex 42715 0.403994 0.290122 0.63225 Vertex 42716 0.562324 0.0138946 0.742714 Vertex 42717 0.562324 0.0151739 0.745059 Vertex 42718 0.506189 0.391535 0.582073 Vertex 42719 0.459465 0.219287 0.639955 Vertex 42720 0.452636 0.392684 0.633369 Vertex 42721 0.362393 0.0882417 0.47437 Vertex 42722 0.555401 0.494821 0.396848 Vertex 42723 0.405747 0.346363 0.242018 Vertex 42724 0.376832 0.328844 0.262575 Vertex 42725 0.524632 0.324876 0.529865 Vertex 42726 0.570059 0.479321 0.320096 Vertex 42727 0.372189 0.351954 0.370705 Vertex 42728 0.579227 0.51526 0.459818 Vertex 42729 0.597256 0.526785 0.20875 Vertex 42730 0.460987 0.40158 0.3855 Vertex 42731 0.580602 0.498801 0.319362 Vertex 42732 0.461562 0.617183 0.440924 Vertex 42733 0.39935 0.428404 0.348685 Vertex 42734 0.362541 0.897449 0.29557 Vertex 42735 0.405634 0.25076 0.739622 Vertex 42736 0.392948 0.901417 0.334755 Vertex 42737 0.423533 0.545756 0.517949 Vertex 42738 0.339543 0.24646 0.214602 Vertex 42739 0.504027 0.757343 0.483947 Vertex 42740 0.47185 0.361217 0.629887 Vertex 42741 0.474225 0.815023 0.419005 Vertex 42742 0.443978 0.819708 0.367045 Vertex 42743 0.406985 0.875026 0.404121 Vertex 42744 0.514801 0.607316 0.422689 Vertex 42745 0.366509 0.195051 0.468471 Vertex 42746 0.389898 0.249397 0.638036 Vertex 42747 0.406031 0.380448 0.270139 Vertex 42748 0.38789 0.250256 0.681562 Vertex 42749 0.357732 0.233679 0.547461 Vertex 42750 0.508742 0.0365073 0.753984 Vertex 42751 0.435508 0.468571 0.415167 Vertex 42752 0.482647 0.206802 0.741659 Vertex 42753 0.399119 0.259383 0.669065 Vertex 42754 0.467479 0.64191 0.515799 Vertex 42755 0.440732 0.257902 0.733391 Vertex 42756 0.411752 0.420278 0.366719 Vertex 42757 0.534612 0.0788839 0.716796 Vertex 42758 0.353971 0.180902 0.456738 Vertex 42759 0.636535 0.515888 0.219186 Vertex 42760 0.508392 0.622217 0.555486 Vertex 42761 0.588935 0.432757 0.426674 Vertex 42762 0.489772 0.55718 0.383084 Vertex 42763 0.443966 0.126159 0.642123 Vertex 42764 0.552137 0.555783 0.476603 Vertex 42765 0.381612 0.230534 0.607037 Vertex 42766 0.506817 0.377279 0.450495 Vertex 42767 0.501279 0.25779 0.497207 Vertex 42768 0.488658 0.572028 0.393502 Vertex 42769 0.412777 0.263938 0.708445 Vertex 42770 0.50475 0.687171 0.52624 Vertex 42771 0.369293 0.465847 0.48445 Vertex 42772 0.382761 0.219245 0.675343 Vertex 42773 0.409229 0.375669 0.383096 Vertex 42774 0.476552 0.266099 0.445591 Vertex 42775 0.510827 0.429956 0.598763 Vertex 42776 0.495363 0.725935 0.516752 Vertex 42777 0.599578 0.505878 0.253792 Vertex 42778 0.48347 0.320754 0.432277 Vertex 42779 0.543532 0.120082 0.435624 Vertex 42780 0.444688 0.378571 0.644711 Vertex 42781 0.372189 0.331776 0.488951 Vertex 42782 0.476457 0.195282 0.699389 Vertex 42783 0.385379 0.203876 0.638315 Vertex 42784 0.38455 0.208312 0.61373 Vertex 42785 0.359728 0.409013 0.521567 Vertex 42786 0.408412 0.369343 0.25641 Vertex 42787 0.3695 0.914986 0.347879 Vertex 42788 0.502493 0.296625 0.456566 Vertex 42789 0.504448 0.294789 0.460226 Vertex 42790 0.50154 0.106685 0.641673 Vertex 42791 0.501647 0.104914 0.640844 Vertex 42792 0.524129 0.67757 0.509639 Vertex 42793 0.469682 0.315654 0.63318 Vertex 42794 0.499467 0.411749 0.409303 Vertex 42795 0.457144 0.686739 0.455861 Vertex 42796 0.320549 0.938298 0.242284 Vertex 42797 0.498046 0.170987 0.787199 Vertex 42798 0.558747 0.0317396 0.731082 Vertex 42799 0.479383 0.192398 0.792938 Vertex 42800 0.335143 0.916354 0.268208 Vertex 42801 0.362197 0.348099 0.424495 Vertex 42802 0.491377 0.179735 0.526163 Vertex 42803 0.546694 0.429411 0.386631 Vertex 42804 0.444226 0.252051 0.727202 Vertex 42805 0.364063 0.220228 0.563494 Vertex 42806 0.558166 0.427367 0.513767 Vertex 42807 0.576793 0.510557 0.437158 Vertex 42808 0.403626 0.390392 0.267882 Vertex 42809 0.594786 0.525435 0.210651 Vertex 42810 0.441946 0.806536 0.371848 Vertex 42811 0.418095 0.398323 0.307226 Vertex 42812 0.527748 0.635946 0.43576 Vertex 42813 0.587578 0.488318 0.428961 Vertex 42814 0.435834 0.415558 0.405347 Vertex 42815 0.437854 0.414178 0.406745 Vertex 42816 0.65669 0.448588 0.200073 Vertex 42817 0.658242 0.449145 0.201951 Vertex 42818 0.520854 0.310377 0.513264 Vertex 42819 0.522482 0.393804 0.480547 Vertex 42820 0.352218 0.122907 0.456922 Vertex 42821 0.378266 0.19479 0.475365 Vertex 42822 0.396276 0.299414 0.624095 Vertex 42823 0.535897 0.142416 0.459054 Vertex 42824 0.368446 0.214323 0.484136 Vertex 42825 0.463362 0.750869 0.407657 Vertex 42826 0.468178 0.590016 0.55092 Vertex 42827 0.357708 0.388923 0.370717 Vertex 42828 0.410455 0.522793 0.559857 Vertex 42829 0.464417 0.266182 0.440125 Vertex 42830 0.502641 0.151365 0.677896 Vertex 42831 0.427181 0.495934 0.437175 Vertex 42832 0.427826 0.845946 0.43955 Vertex 42833 0.506556 0.397156 0.44536 Vertex 42834 0.519616 0.3258 0.553082 Vertex 42835 0.519059 0.321583 0.555143 Vertex 42836 0.412884 0.146645 0.671808 Vertex 42837 0.321651 0.236492 0.227786 Vertex 42838 0.500302 0.461133 0.390102 Vertex 42839 0.395056 0.897283 0.3699 Vertex 42840 0.673611 0.453445 0.190846 Vertex 42841 0.441899 0.43406 0.399703 Vertex 42842 0.438049 0.143405 0.745829 Vertex 42843 0.46556 0.217 0.47726 Vertex 42844 0.595497 0.500275 0.262048 Vertex 42845 0.455604 0.531914 0.430169 Vertex 42846 0.457499 0.53452 0.428185 Vertex 42847 0.456717 0.533046 0.428765 Vertex 42848 0.517963 0.164881 0.766114 Vertex 42849 0.591783 0.426799 0.207412 Vertex 42850 0.459637 0.200695 0.617917 Vertex 42851 0.525995 0.159142 0.460369 Vertex 42852 0.572292 0.43069 0.338581 Vertex 42853 0.568472 0.434113 0.338006 Vertex 42854 0.456291 0.727605 0.457751 Vertex 42855 0.499728 0.0365902 0.674633 Vertex 42856 0.43799 0.496236 0.59075 Vertex 42857 0.429929 0.868333 0.383255 Vertex 42858 0.493254 0.0813655 0.713225 Vertex 42859 0.359858 0.301357 0.493411 Vertex 42860 0.544627 0.608317 0.505298 Vertex 42861 0.474248 0.589471 0.427527 Vertex 42862 0.621882 0.531719 0.243943 Vertex 42863 0.460176 0.208513 0.625427 Vertex 42864 0.41212 0.225541 0.46821 Vertex 42865 0.384022 0.272425 0.22852 Vertex 42866 0.506473 0.281812 0.575777 Vertex 42867 0.585742 0.513844 0.341655 Vertex 42868 0.473206 0.362325 0.41522 Vertex 42869 0.316107 0.936995 0.26315 Vertex 42870 0.499988 0.284069 0.592438 Vertex 42871 0.484335 0.601026 0.553502 Vertex 42872 0.489286 0.599687 0.558039 Vertex 42873 0.422543 0.817262 0.430832 Vertex 42874 0.362067 0.144768 0.454825 Vertex 42875 0.432932 0.187748 0.796634 Vertex 42876 0.434655 0.187014 0.796391 Vertex 42877 0.487705 0.229977 0.490799 Vertex 42878 0.367072 0.265057 0.478954 Vertex 42879 0.592394 0.511345 0.268658 Vertex 42880 0.459246 0.222224 0.675343 Vertex 42881 0.448739 0.131667 0.631954 Vertex 42882 0.449705 0.238956 0.691933 Vertex 42883 0.524265 0.362141 0.526163 Vertex 42884 0.595509 0.517078 0.326096 Vertex 42885 0.561655 0.0218132 0.745788 Vertex 42886 0.398645 0.315761 0.205179 Vertex 42887 0.487497 0.546597 0.384932 Vertex 42888 0.329498 0.918386 0.27939 Vertex 42889 0.365561 0.26726 0.229065 Vertex 42890 0.368162 0.368384 0.244108 Vertex 42891 0.480384 0.764 0.498741 Vertex 42892 0.495801 0.425277 0.388645 Vertex 42893 0.423254 0.443394 0.391648 Vertex 42894 0.421537 0.44157 0.389717 Vertex 42895 0.530371 0.525133 0.418063 Vertex 42896 0.497133 0.24797 0.503314 Vertex 42897 0.450765 0.0971909 0.718336 Vertex 42898 0.382488 0.175411 0.532441 Vertex 42899 0.345863 0.902904 0.285834 Vertex 42900 0.525094 0.322311 0.503829 Vertex 42901 0.452737 0.202324 0.472492 Vertex 42902 0.517845 0.381141 0.472249 Vertex 42903 0.424362 0.400437 0.382989 Vertex 42904 0.397639 0.276328 0.627666 Vertex 42905 0.520066 0.383919 0.497219 Vertex 42906 0.499905 0.16109 0.703168 Vertex 42907 0.410408 0.272466 0.644735 Vertex 42908 0.584724 0.481927 0.476419 Vertex 42909 0.543295 0.164502 0.445408 Vertex 42910 0.358679 0.283429 0.501288 Vertex 42911 0.449006 0.620351 0.479404 Vertex 42912 0.517537 0.501093 0.597413 Vertex 42913 0.372947 0.390842 0.26286 Vertex 42914 0.583717 0.478563 0.480553 Vertex 42915 0.55023 0.440036 0.364777 Vertex 42916 0.478607 0.486967 0.394278 Vertex 42917 0.449095 0.371227 0.636976 Vertex 42918 0.514285 0.548213 0.402901 Vertex 42919 0.490986 0.634021 0.403008 Vertex 42920 0.481273 0.621832 0.422209 Vertex 42921 0.481 0.620334 0.422659 Vertex 42922 0.528328 0.395871 0.445319 Vertex 42923 0.367741 0.878153 0.341655 Vertex 42924 0.366657 0.439207 0.446687 Vertex 42925 0.482605 0.563239 0.575037 Vertex 42926 0.464269 0.209289 0.793708 Vertex 42927 0.47885 0.207127 0.72719 Vertex 42928 0.467562 0.715546 0.486884 Vertex 42929 0.465974 0.713693 0.484788 Vertex 42930 0.397864 0.315246 0.210403 Vertex 42931 0.40872 0.239021 0.747878 Vertex 42932 0.368381 0.351309 0.521484 Vertex 42933 0.36276 0.214637 0.558566 Vertex 42934 0.320437 0.950765 0.275647 Vertex 42935 0.322018 0.955142 0.2757 Vertex 42936 0.528032 0.407367 0.555167 Vertex 42937 0.470061 0.472901 0.393294 Vertex 42938 0.363056 0.356213 0.256676 Vertex 42939 0.363826 0.359748 0.26081 Vertex 42940 0.374066 0.380039 0.525429 Vertex 42941 0.446678 0.0992105 0.716707 Vertex 42942 0.519112 0.666039 0.429091 Vertex 42943 0.401352 0.342176 0.209994 Vertex 42944 0.41726 0.395509 0.368449 Vertex 42945 0.465039 0.687556 0.493032 Vertex 42946 0.475599 0.502994 0.60333 Vertex 42947 0.422076 0.360862 0.638487 Vertex 42948 0.427957 0.181393 0.488857 Vertex 42949 0.492058 0.372607 0.619439 Vertex 42950 0.474118 0.796154 0.403375 Vertex 42951 0.567939 0.500791 0.362461 Vertex 42952 0.537935 0.562185 0.555167 Vertex 42953 0.38969 0.191486 0.658778 Vertex 42954 0.513942 0.46041 0.60224 Vertex 42955 0.434288 0.451005 0.402842 Vertex 42956 0.372254 0.289589 0.236818 Vertex 42957 0.446856 0.529652 0.436642 Vertex 42958 0.449805 0.375396 0.636337 Vertex 42959 0.451209 0.377457 0.634128 Vertex 42960 0.517318 0.416328 0.584241 Vertex 42961 0.482712 0.0774388 0.705537 Vertex 42962 0.475439 0.524079 0.405388 Vertex 42963 0.512367 0.367187 0.449394 Vertex 42964 0.482629 0.527064 0.392672 Vertex 42965 0.484417 0.530185 0.392074 Vertex 42966 0.390146 0.320019 0.452059 Vertex 42967 0.485638 0.385026 0.41782 Vertex 42968 0.506053 0.0459658 0.758172 Vertex 42969 0.484862 0.514028 0.39391 Vertex 42970 0.505496 0.130091 0.662799 Vertex 42971 0.390964 0.256321 0.68068 Vertex 42972 0.374937 0.373394 0.584223 Vertex 42973 0.509701 0.413728 0.439633 Vertex 42974 0.499106 0.131613 0.79552 Vertex 42975 0.482125 0.428747 0.374135 Vertex 42976 0.510868 0.16468 0.742027 Vertex 42977 0.521055 0.179545 0.456738 Vertex 42978 0.519195 0.178414 0.455316 Vertex 42979 0.36154 0.227572 0.223415 Vertex 42980 0.360255 0.227638 0.221472 Vertex 42981 0.526036 0.70809 0.455731 Vertex 42982 0.39813 0.40126 0.278963 Vertex 42983 0.442082 0.24932 0.756158 Vertex 42984 0.513421 0.31765 0.470917 Vertex 42985 0.392344 0.490207 0.455684 Vertex 42986 0.392403 0.490941 0.457763 Vertex 42987 0.552516 0.544423 0.46009 Vertex 42988 0.55328 0.542978 0.459735 Vertex 42989 0.514676 0.0790794 0.787169 Vertex 42990 0.508464 0.730643 0.428102 Vertex 42991 0.520486 0.0437922 0.657113 Vertex 42992 0.609723 0.473096 0.218209 Vertex 42993 0.446909 0.24354 0.638001 Vertex 42994 0.372704 0.225476 0.58221 Vertex 42995 0.544136 0.495052 0.404447 Vertex 42996 0.597973 0.515195 0.261663 Vertex 42997 0.499106 0.0250232 0.652032 Vertex 42998 0.494628 0.174375 0.495099 Vertex 42999 0.511656 0.608536 0.555244 Vertex 43000 0.603818 0.523072 0.313161 Vertex 43001 0.450925 0.176252 0.482525 Vertex 43002 0.372177 0.188714 0.467902 Vertex 43003 0.372923 0.189922 0.468992 Vertex 43004 0.373492 0.189922 0.469679 Vertex 43005 0.301851 0.987616 0.216278 Vertex 43006 0.45876 0.573183 0.553798 Vertex 43007 0.632466 0.484189 0.236818 Vertex 43008 0.322065 0.967532 0.258116 Vertex 43009 0.467781 0.658345 0.431679 Vertex 43010 0.365295 0.362141 0.364433 Vertex 43011 0.437682 0.25442 0.747807 Vertex 43012 0.428401 0.813815 0.439035 Vertex 43013 0.447188 0.422315 0.637148 Vertex 43014 0.40291 0.35273 0.25866 Vertex 43015 0.48334 0.0541272 0.687041 Vertex 43016 0.453241 0.160125 0.799927 Vertex 43017 0.357572 0.382373 0.395557 Vertex 43018 0.524958 0.430234 0.586308 Vertex 43019 0.332395 0.934928 0.24993 Vertex 43020 0.386433 0.466398 0.431531 Vertex 43021 0.360569 0.37186 0.368626 Vertex 43022 0.457215 0.566461 0.443347 Vertex 43023 0.305227 0.984133 0.23269 Vertex 43024 0.472341 0.472741 0.391885 Vertex 43025 0.361356 0.347554 0.41631 Vertex 43026 0.391207 0.180552 0.486967 Vertex 43027 0.603712 0.486292 0.271471 Vertex 43028 0.483884 0.0981681 0.783041 Vertex 43029 0.474621 0.485623 0.397091 Vertex 43030 0.46078 0.196111 0.636141 Vertex 43031 0.33548 0.912297 0.304223 Vertex 43032 0.384603 0.244422 0.621512 Vertex 43033 0.670875 0.483005 0.213998 Vertex 43034 0.497376 0.170596 0.707166 Vertex 43035 0.37547 0.42347 0.319782 Vertex 43036 0.321834 0.234928 0.224119 Vertex 43037 0.479164 0.257885 0.607085 Vertex 43038 0.437865 0.540964 0.470242 Vertex 43039 0.529116 0.141913 0.446462 Vertex 43040 0.656802 0.452474 0.213311 Vertex 43041 0.514404 0.591307 0.557672 Vertex 43042 0.502683 0.252122 0.551015 Vertex 43043 0.496464 0.32057 0.611177 Vertex 43044 0.493663 0.513412 0.389788 Vertex 43045 0.49573 0.416766 0.395788 Vertex 43046 0.494818 0.415185 0.397796 Vertex 43047 0.375701 0.222834 0.208306 Vertex 43048 0.473206 0.504652 0.405412 Vertex 43049 0.655417 0.415256 0.211871 Vertex 43050 0.38898 0.857187 0.368745 Vertex 43051 0.589278 0.44584 0.18959 Vertex 43052 0.524129 0.578638 0.557257 Vertex 43053 0.469291 0.186522 0.483893 Vertex 43054 0.512911 0.301576 0.567551 Vertex 43055 0.37884 0.26954 0.23247 Vertex 43056 0.498051 0.182021 0.454357 Vertex 43057 0.564131 0.538435 0.472249 Vertex 43058 0.526634 0.330615 0.498445 Vertex 43059 0.5562 0.400117 0.415765 Vertex 43060 0.627231 0.510776 0.290524 Vertex 43061 0.52927 0.41567 0.565508 Vertex 43062 0.50135 0.469892 0.394645 Vertex 43063 0.371318 0.368016 0.509556 Vertex 43064 0.430563 0.142659 0.712668 Vertex 43065 0.436254 0.397576 0.64544 Vertex 43066 0.487397 0.609525 0.41015 Vertex 43067 0.402039 0.500589 0.457721 Vertex 43068 0.524958 0.122528 0.714202 Vertex 43069 0.386836 0.497652 0.486884 Vertex 43070 0.481083 0.722316 0.497356 Vertex 43071 0.508161 0.598769 0.413887 Vertex 43072 0.438878 0.341264 0.418158 Vertex 43073 0.338992 0.110505 0.457656 Vertex 43074 0.515624 0.0584567 0.674633 Vertex 43075 0.389323 0.195714 0.608862 Vertex 43076 0.444232 0.581605 0.49106 Vertex 43077 0.368505 0.458923 0.472848 Vertex 43078 0.498697 0.0765445 0.704276 Vertex 43079 0.500817 0.0756442 0.701291 Vertex 43080 0.527919 0.0633488 0.785132 Vertex 43081 0.470529 0.683209 0.503503 Vertex 43082 0.679599 0.469341 0.217699 Vertex 43083 0.437178 0.217942 0.792274 Vertex 43084 0.469084 0.544991 0.423245 Vertex 43085 0.431475 0.105974 0.667063 Vertex 43086 0.472922 0.269055 0.442298 Vertex 43087 0.36995 0.102663 0.467559 Vertex 43088 0.524111 0.490337 0.412827 Vertex 43089 0.653326 0.478024 0.216473 Vertex 43090 0.462829 0.165438 0.548983 Vertex 43091 0.357264 0.302352 0.196644 Vertex 43092 0.628463 0.503118 0.186599 Vertex 43093 0.452169 0.081632 0.691968 Vertex 43094 0.43594 0.533419 0.466054 Vertex 43095 0.437249 0.534657 0.46192 Vertex 43096 0.400695 0.429073 0.335951 Vertex 43097 0.547346 0.0597301 0.722381 Vertex 43098 0.470256 0.370711 0.411074 Vertex 43099 0.437125 0.240407 0.452882 Vertex 43100 0.436397 0.242 0.451899 Vertex 43101 0.382441 0.228372 0.62564 Vertex 43102 0.459821 0.212268 0.607014 Vertex 43103 0.450718 0.164052 0.548983 Vertex 43104 0.40108 0.332131 0.231653 Vertex 43105 0.465406 0.735441 0.478397 Vertex 43106 0.395601 0.390896 0.248 Vertex 43107 0.372047 0.369793 0.48904 Vertex 43108 0.540819 0.140426 0.45752 Vertex 43109 0.445849 0.394426 0.641768 Vertex 43110 0.478453 0.0589779 0.694941 Vertex 43111 0.427418 0.402066 0.395569 Vertex 43112 0.498898 0.203888 0.521952 Vertex 43113 0.532598 0.67333 0.497136 Vertex 43114 0.526385 0.606818 0.542936 Vertex 43115 0.39078 0.318693 0.25012 Vertex 43116 0.468474 0.332492 0.632576 Vertex 43117 0.526634 0.645523 0.524067 Vertex 43118 0.531218 0.63222 0.526181 Vertex 43119 0.441573 0.564222 0.475963 Vertex 43120 0.463866 0.62673 0.43894 Vertex 43121 0.674221 0.483295 0.20907 Vertex 43122 0.495445 0.109842 0.641845 Vertex 43123 0.517223 0.177354 0.452799 Vertex 43124 0.419831 0.216444 0.780832 Vertex 43125 0.518834 0.688669 0.43252 Vertex 43126 0.365692 0.246489 0.485173 Vertex 43127 0.400754 0.303412 0.218617 Vertex 43128 0.465808 0.630485 0.520697 Vertex 43129 0.338992 0.0979312 0.453575 Vertex 43130 0.425084 0.262646 0.691927 Vertex 43131 0.367321 0.379672 0.254609 Vertex 43132 0.46389 0.338024 0.415001 Vertex 43133 0.3825 0.247099 0.227809 Vertex 43134 0.587928 0.487133 0.445698 Vertex 43135 0.38985 0.264512 0.200257 Vertex 43136 0.470256 0.664659 0.51051 Vertex 43137 0.552789 0.464769 0.350006 Vertex 43138 0.417634 0.872414 0.351895 Vertex 43139 0.416396 0.432556 0.607588 Vertex 43140 0.43096 0.142766 0.716796 Vertex 43141 0.349718 0.279147 0.196147 Vertex 43142 0.618874 0.506506 0.192937 Vertex 43143 0.669483 0.483568 0.214217 Vertex 43144 0.431019 0.819892 0.443347 Vertex 43145 0.422549 0.233827 0.213536 Vertex 43146 0.557278 0.0289677 0.766754 Vertex 43147 0.535044 0.0627802 0.707959 Vertex 43148 0.44207 0.319433 0.419561 Vertex 43149 0.399214 0.320629 0.231813 Vertex 43150 0.35833 0.391162 0.360311 Vertex 43151 0.505704 0.0876436 0.799867 Vertex 43152 0.470517 0.464692 0.388343 Vertex 43153 0.468971 0.462838 0.390197 Vertex 43154 0.480775 0.100099 0.778996 Vertex 43155 0.523928 0.330479 0.538583 Vertex 43156 0.545362 0.612178 0.503628 Vertex 43157 0.545119 0.607499 0.500874 Vertex 43158 0.385053 0.347275 0.451384 Vertex 43159 0.497293 0.705111 0.40906 Vertex 43160 0.538752 0.163169 0.433871 Vertex 43161 0.458381 0.125412 0.78923 Vertex 43162 0.32235 0.974669 0.240353 Vertex 43163 0.477695 0.552199 0.578064 Vertex 43164 0.378668 0.38463 0.588268 Vertex 43165 0.376613 0.350136 0.438982 Vertex 43166 0.445553 0.144999 0.628353 Vertex 43167 0.432263 0.845365 0.439716 Vertex 43168 0.430853 0.84395 0.441363 Vertex 43169 0.485543 0.253413 0.46243 Vertex 43170 0.506627 0.348347 0.596507 Vertex 43171 0.459661 0.76057 0.405537 Vertex 43172 0.46062 0.760878 0.401663 Vertex 43173 0.413725 0.320534 0.6387 Vertex 43174 0.366693 0.348513 0.229361 Vertex 43175 0.549022 0.591354 0.484953 Vertex 43176 0.581105 0.500394 0.391512 Vertex 43177 0.488249 0.602595 0.401456 Vertex 43178 0.347675 0.269771 0.228627 Vertex 43179 0.435283 0.785031 0.416665 Vertex 43180 0.491501 0.16616 0.686194 Vertex 43181 0.461331 0.570743 0.436086 Vertex 43182 0.377164 0.379891 0.588458 Vertex 43183 0.46585 0.687556 0.434741 Vertex 43184 0.484021 0.363882 0.628625 Vertex 43185 0.447128 0.605533 0.471012 Vertex 43186 0.50321 0.42193 0.406135 Vertex 43187 0.364549 0.228864 0.229497 Vertex 43188 0.372254 0.379062 0.540366 Vertex 43189 0.476185 0.167493 0.796971 Vertex 43190 0.355416 0.37173 0.408012 Vertex 43191 0.365088 0.311775 0.197835 Vertex 43192 0.488113 0.273325 0.605136 Vertex 43193 0.561613 0.0189288 0.737164 Vertex 43194 0.52051 0.0195566 0.646346 Vertex 43195 0.404764 0.159864 0.666619 Vertex 43196 0.468397 0.595393 0.546306 Vertex 43197 0.541133 0.0446095 0.712964 Vertex 43198 0.36372 0.095728 0.467985 Vertex 43199 0.538112 0.587042 0.530286 Vertex 43200 0.356014 0.267242 0.527301 Vertex 43201 0.593673 0.434214 0.335495 Vertex 43202 0.528494 0.138727 0.791623 Vertex 43203 0.453631 0.107751 0.751977 Vertex 43204 0.398296 0.856287 0.340144 Vertex 43205 0.417095 0.40803 0.364107 Vertex 43206 0.661209 0.453321 0.206351 Vertex 43207 0.642221 0.456075 0.187061 Vertex 43208 0.552108 0.438141 0.362384 Vertex 43209 0.345519 0.941348 0.30369 Vertex 43210 0.388589 0.250067 0.67741 Vertex 43211 0.356713 0.288694 0.228413 Vertex 43212 0.46749 0.792594 0.482892 Vertex 43213 0.367451 0.233335 0.577442 Vertex 43214 0.597836 0.513116 0.36849 Vertex 43215 0.418261 0.381591 0.356112 Vertex 43216 0.41822 0.383711 0.356136 Vertex 43217 0.515577 0.320866 0.477444 Vertex 43218 0.354984 0.233525 0.528775 Vertex 43219 0.355392 0.237214 0.535711 Vertex 43220 0.355499 0.234046 0.535101 Vertex 43221 0.397496 0.364315 0.374839 Vertex 43222 0.509263 0.0833496 0.797676 Vertex 43223 0.512598 0.0581546 0.633784 Vertex 43224 0.537852 0.00753363 0.745793 Vertex 43225 0.422543 0.258039 0.223409 Vertex 43226 0.498709 0.755181 0.490598 Vertex 43227 0.511816 0.365677 0.580018 Vertex 43228 0.372444 0.467298 0.526661 Vertex 43229 0.48058 0.800537 0.462483 Vertex 43230 0.676069 0.476543 0.197136 Vertex 43231 0.673611 0.476656 0.195525 Vertex 43232 0.552753 0.535361 0.45014 Vertex 43233 0.423088 0.241591 0.201288 Vertex 43234 0.425072 0.239021 0.20477 Vertex 43235 0.439553 0.791125 0.403345 Vertex 43236 0.547162 0.0340257 0.713995 Vertex 43237 0.649358 0.461677 0.194601 Vertex 43238 0.502778 0.15589 0.69333 Vertex 43239 0.496423 0.699526 0.530244 Vertex 43240 0.504797 0.701741 0.417873 Vertex 43241 0.358721 0.293794 0.495152 Vertex 43242 0.422342 0.377291 0.327138 Vertex 43243 0.461769 0.226631 0.716796 Vertex 43244 0.448212 0.62012 0.475228 Vertex 43245 0.448414 0.621388 0.477609 Vertex 43246 0.429911 0.803237 0.399786 Vertex 43247 0.348125 0.900511 0.286148 Vertex 43248 0.477932 0.538299 0.404316 Vertex 43249 0.397331 0.180156 0.598722 Vertex 43250 0.49146 0.71111 0.404518 Vertex 43251 0.450291 0.165521 0.797178 Vertex 43252 0.552753 0.467103 0.348359 Vertex 43253 0.48058 0.539282 0.398109 Vertex 43254 0.484933 0.487139 0.388633 Vertex 43255 0.385124 0.19286 0.566615 Vertex 43256 0.426168 0.250244 0.212778 Vertex 43257 0.420784 0.476472 0.596205 Vertex 43258 0.530253 0.0305195 0.654371 Vertex 43259 0.373676 0.376409 0.503811 Vertex 43260 0.46312 0.174363 0.672637 Vertex 43261 0.355789 0.19838 0.470686 Vertex 43262 0.449195 0.565715 0.451603 Vertex 43263 0.479016 0.189756 0.710974 Vertex 43264 0.375281 0.426633 0.328856 Vertex 43265 0.359568 0.262688 0.488957 Vertex 43266 0.366266 0.107283 0.462838 Vertex 43267 0.355789 0.413514 0.467707 Vertex 43268 0.460614 0.181204 0.666738 Vertex 43269 0.459483 0.767476 0.396996 Vertex 43270 0.45924 0.768625 0.394289 Vertex 43271 0.526753 0.400301 0.48464 Vertex 43272 0.463499 0.0954496 0.756241 Vertex 43273 0.380955 0.892824 0.372666 Vertex 43274 0.357447 0.271311 0.517297 Vertex 43275 0.561513 0.00698874 0.743726 Vertex 43276 0.54596 0.145638 0.432384 Vertex 43277 0.412724 0.24261 0.754121 Vertex 43278 0.493373 0.56514 0.383996 Vertex 43279 0.506924 0.10081 0.718081 Vertex 43280 0.641143 0.49674 0.242065 Vertex 43281 0.640083 0.497006 0.244168 Vertex 43282 0.639011 0.497675 0.246525 Vertex 43283 0.582757 0.506814 0.447386 Vertex 43284 0.356577 0.410281 0.452243 Vertex 43285 0.552108 0.160842 0.434143 Vertex 43286 0.459809 0.0955325 0.662527 Vertex 43287 0.511697 0.289334 0.55721 Vertex 43288 0.379586 0.300575 0.192972 Vertex 43289 0.378976 0.263855 0.197805 Vertex 43290 0.398687 0.318592 0.225636 Vertex 43291 0.428413 0.216171 0.7874 Vertex 43292 0.485294 0.205439 0.749951 Vertex 43293 0.500853 0.110233 0.642727 Vertex 43294 0.455698 0.49735 0.602957 Vertex 43295 0.459359 0.565668 0.560414 Vertex 43296 0.450356 0.18731 0.582121 Vertex 43297 0.449255 0.186315 0.584188 Vertex 43298 0.519272 0.0692537 0.781158 Vertex 43299 0.530395 0.0928081 0.795336 Vertex 43300 0.438647 0.856938 0.382266 Vertex 43301 0.439032 0.778978 0.418513 Vertex 43302 0.467562 0.102225 0.774737 Vertex 43303 0.542525 0.155932 0.445864 Vertex 43304 0.493236 0.119946 0.642555 Vertex 43305 0.548903 0.0607665 0.730779 Vertex 43306 0.468811 0.422007 0.373832 Vertex 43307 0.512337 0.416564 0.436885 Vertex 43308 0.431925 0.517706 0.463626 Vertex 43309 0.417172 0.434421 0.384357 Vertex 43310 0.435757 0.135641 0.650474 Vertex 43311 0.512977 0.324432 0.461435 Vertex 43312 0.524567 0.586628 0.552602 Vertex 43313 0.516062 0.149216 0.717904 Vertex 43314 0.413879 0.246531 0.751977 Vertex 43315 0.462385 0.367691 0.407906 Vertex 43316 0.337755 0.289754 0.217557 Vertex 43317 0.438967 0.254935 0.714729 Vertex 43318 0.447733 0.833182 0.381408 Vertex 43319 0.5355 0.589465 0.536528 Vertex 43320 0.384828 0.358795 0.617023 Vertex 43321 0.546605 0.0434368 0.716607 Vertex 43322 0.654949 0.467357 0.215164 Vertex 43323 0.54256 0.00429394 0.751983 Vertex 43324 0.423769 0.349479 0.644309 Vertex 43325 0.42631 0.349147 0.646695 Vertex 43326 0.670892 0.486316 0.201536 Vertex 43327 0.470025 0.608779 0.538488 Vertex 43328 0.464049 0.209265 0.675367 Vertex 43329 0.463232 0.211113 0.677434 Vertex 43330 0.46383 0.209769 0.677387 Vertex 43331 0.3634 0.334139 0.252536 Vertex 43332 0.37977 0.3941 0.260751 Vertex 43333 0.622765 0.484794 0.355146 Vertex 43334 0.393463 0.255125 0.210077 Vertex 43335 0.39537 0.291413 0.443767 Vertex 43336 0.472756 0.16616 0.668805 Vertex 43337 0.500409 0.0644682 0.63841 Vertex 43338 0.57854 0.500654 0.421735 Vertex 43339 0.596433 0.436352 0.394047 Vertex 43340 0.490388 0.791617 0.455654 Vertex 43341 0.511401 0.381319 0.571703 Vertex 43342 0.374913 0.346174 0.484681 Vertex 43343 0.552475 0.502716 0.406502 Vertex 43344 0.456587 0.0965927 0.74991 Vertex 43345 0.673611 0.469507 0.195146 Vertex 43346 0.618122 0.479759 0.280758 Vertex 43347 0.491667 0.0573373 0.72831 Vertex 43348 0.503293 0.295381 0.45839 Vertex 43349 0.302568 0.98944 0.209721 Vertex 43350 0.499828 0.630983 0.407467 Vertex 43351 0.449296 0.843476 0.420935 Vertex 43352 0.353396 0.213465 0.499286 Vertex 43353 0.625827 0.478587 0.186546 Vertex 43354 0.362411 0.275037 0.57021 Vertex 43355 0.548056 0.590851 0.474423 Vertex 43356 0.416929 0.876743 0.395148 Vertex 43357 0.538716 0.458414 0.569689 Vertex 43358 0.519983 0.617437 0.540769 Vertex 43359 0.390472 0.85615 0.360329 Vertex 43360 0.500912 0.407455 0.42318 Vertex 43361 0.401216 0.286207 0.233554 Vertex 43362 0.414992 0.83365 0.3708 Vertex 43363 0.457552 0.806702 0.474766 Vertex 43364 0.429657 0.816463 0.383315 Vertex 43365 0.401873 0.433788 0.37937 Vertex 43366 0.400345 0.839999 0.37908 Vertex 43367 0.359283 0.122694 0.458989 Vertex 43368 0.387683 0.252134 0.619445 Vertex 43369 0.370258 0.386004 0.24386 Vertex 43370 0.502612 0.0402267 0.734736 Vertex 43371 0.462883 0.220797 0.702274 Vertex 43372 0.418966 0.374111 0.313895 Vertex 43373 0.365479 0.132265 0.464508 Vertex 43374 0.541719 0.145828 0.450312 Vertex 43375 0.467408 0.760837 0.391512 Vertex 43376 0.520475 0.307854 0.519275 Vertex 43377 0.594461 0.444774 0.208744 Vertex 43378 0.486698 0.711626 0.403564 Vertex 43379 0.572345 0.529995 0.468121 Vertex 43380 0.359663 0.229243 0.499203 Vertex 43381 0.508144 0.603466 0.559064 Vertex 43382 0.383211 0.24479 0.224872 Vertex 43383 0.38359 0.245524 0.220744 Vertex 43384 0.650057 0.465723 0.1928 Vertex 43385 0.651034 0.46423 0.193209 Vertex 43386 0.452666 0.0776579 0.662006 Vertex 43387 0.48591 0.510847 0.393146 Vertex 43388 0.636701 0.494661 0.246448 Vertex 43389 0.571042 0.533964 0.489549 Vertex 43390 0.35817 0.41679 0.448571 Vertex 43391 0.515944 0.155701 0.461369 Vertex 43392 0.548856 0.585337 0.496763 Vertex 43393 0.492614 0.297999 0.611195 Vertex 43394 0.51964 0.105459 0.675349 Vertex 43395 0.472069 0.727978 0.411986 Vertex 43396 0.305067 0.952696 0.235757 Vertex 43397 0.506367 0.719278 0.503219 Vertex 43398 0.506787 0.0332676 0.722979 Vertex 43399 0.363056 0.138034 0.473126 Vertex 43400 0.44287 0.156791 0.609406 Vertex 43401 0.390857 0.245577 0.702274 Vertex 43402 0.362725 0.300285 0.490094 Vertex 43403 0.343879 0.901174 0.312563 Vertex 43404 0.582479 0.416245 0.414213 Vertex 43405 0.505319 0.652766 0.544962 Vertex 43406 0.596984 0.448807 0.209177 Vertex 43407 0.421252 0.532151 0.495371 Vertex 43408 0.330831 0.945541 0.291762 Vertex 43409 0.489564 0.593078 0.562534 Vertex 43410 0.419837 0.401118 0.313771 Vertex 43411 0.43029 0.259235 0.673276 Vertex 43412 0.433169 0.140154 0.718839 Vertex 43413 0.511117 0.0351984 0.628993 Vertex 43414 0.379586 0.274918 0.195934 Vertex 43415 0.47272 0.113537 0.793589 Vertex 43416 0.361291 0.262279 0.222751 Vertex 43417 0.41116 0.276807 0.212855 Vertex 43418 0.470553 0.122475 0.811914 Vertex 43419 0.582023 0.502283 0.386756 Vertex 43420 0.373243 0.333926 0.480553 Vertex 43421 0.379272 0.308458 0.247236 Vertex 43422 0.659574 0.490616 0.193073 Vertex 43423 0.524182 0.174553 0.450312 Vertex 43424 0.477067 0.772771 0.397156 Vertex 43425 0.490162 0.165793 0.680158 Vertex 43426 0.497364 0.771616 0.47845 Vertex 43427 0.480029 0.623141 0.424104 Vertex 43428 0.591742 0.511848 0.277305 Vertex 43429 0.389234 0.367418 0.227484 Vertex 43430 0.400067 0.242095 0.729275 Vertex 43431 0.476333 0.161961 0.66476 Vertex 43432 0.536193 0.117891 0.79658 Vertex 43433 0.373966 0.404316 0.291792 Vertex 43434 0.345075 0.261871 0.208365 Vertex 43435 0.417154 0.297312 0.63902 Vertex 43436 0.385651 0.903502 0.360915 Vertex 43437 0.606572 0.533756 0.246418 Vertex 43438 0.363216 0.353109 0.382758 Vertex 43439 0.362274 0.355224 0.381177 Vertex 43440 0.540955 0.580516 0.528325 Vertex 43441 0.424077 0.227555 0.199801 Vertex 43442 0.488249 0.497036 0.391091 Vertex 43443 0.479573 0.054755 0.683197 Vertex 43444 0.420198 0.835137 0.430441 Vertex 43445 0.526723 0.509657 0.415599 Vertex 43446 0.453093 0.167902 0.62978 Vertex 43447 0.403159 0.354572 0.260739 Vertex 43448 0.537313 0.17001 0.445141 Vertex 43449 0.590285 0.479078 0.433462 Vertex 43450 0.497815 0.092891 0.641057 Vertex 43451 0.530774 0.519477 0.419206 Vertex 43452 0.443948 0.566266 0.471651 Vertex 43453 0.443758 0.564702 0.469353 Vertex 43454 0.607165 0.521135 0.316519 Vertex 43455 0.3825 0.238748 0.21979 Vertex 43456 0.407932 0.341578 0.231813 Vertex 43457 0.3435 0.939909 0.267716 Vertex 43458 0.662139 0.408699 0.216367 Vertex 43459 0.529388 0.555984 0.425152 Vertex 43460 0.370625 0.22146 0.488489 Vertex 43461 0.535868 0.571703 0.551056 Vertex 43462 0.532794 0.497202 0.417139 Vertex 43463 0.547014 0.452254 0.37574 Vertex 43464 0.441312 0.186712 0.797534 Vertex 43465 0.498259 0.186919 0.524096 Vertex 43466 0.459128 0.560053 0.563938 Vertex 43467 0.646734 0.491012 0.231623 Vertex 43468 0.647468 0.48827 0.228739 Vertex 43469 0.528263 0.393555 0.441197 Vertex 43470 0.414382 0.211273 0.76859 Vertex 43471 0.590042 0.514632 0.324704 Vertex 43472 0.332845 0.942005 0.246608 Vertex 43473 0.393303 0.210284 0.712668 Vertex 43474 0.400434 0.430009 0.375372 Vertex 43475 0.55174 0.512654 0.42976 Vertex 43476 0.371076 0.383658 0.238772 Vertex 43477 0.452269 0.129683 0.635579 Vertex 43478 0.530306 0.0390304 0.656065 Vertex 43479 0.403774 0.320629 0.439923 Vertex 43480 0.415667 0.244778 0.756188 Vertex 43481 0.448485 0.606481 0.496432 Vertex 43482 0.471334 0.811837 0.408368 Vertex 43483 0.448668 0.624936 0.480411 Vertex 43484 0.373782 0.364356 0.514549 Vertex 43485 0.502665 0.261071 0.48063 Vertex 43486 0.392812 0.47925 0.576944 Vertex 43487 0.405936 0.517895 0.503397 Vertex 43488 0.381683 0.451958 0.580291 Vertex 43489 0.510809 0.357782 0.450093 Vertex 43490 0.543999 0.051 0.79565 Vertex 43491 0.437676 0.812465 0.451798 Vertex 43492 0.51993 0.15207 0.74577 Vertex 43493 0.363986 0.170472 0.453996 Vertex 43494 0.649494 0.474482 0.191178 Vertex 43495 0.471447 0.192155 0.693188 Vertex 43496 0.462504 0.156352 0.800566 Vertex 43497 0.324085 0.255071 0.205913 Vertex 43498 0.606069 0.50403 0.246205 Vertex 43499 0.405575 0.170555 0.526199 Vertex 43500 0.535951 0.675148 0.466155 Vertex 43501 0.4144 0.279704 0.641116 Vertex 43502 0.63891 0.446083 0.211765 Vertex 43503 0.443788 0.584839 0.491652 Vertex 43504 0.398598 0.360394 0.393093 Vertex 43505 0.48848 0.125057 0.644202 Vertex 43506 0.535352 0.660128 0.451141 Vertex 43507 0.53062 0.658339 0.443092 Vertex 43508 0.369707 0.177887 0.462696 Vertex 43509 0.490618 0.75338 0.498078 Vertex 43510 0.516856 0.490509 0.600013 Vertex 43511 0.521724 0.0175962 0.733255 Vertex 43512 0.590788 0.412644 0.382645 Vertex 43513 0.376465 0.868991 0.345611 Vertex 43514 0.37932 0.867196 0.345812 Vertex 43515 0.465163 0.616774 0.52717 Vertex 43516 0.466803 0.617592 0.529101 Vertex 43517 0.458056 0.511807 0.419206 Vertex 43518 0.399226 0.169915 0.654211 Vertex 43519 0.456036 0.174878 0.631782 Vertex 43520 0.438464 0.422315 0.636603 Vertex 43521 0.35419 0.306711 0.536256 Vertex 43522 0.485928 0.771835 0.487808 Vertex 43523 0.439891 0.369616 0.418294 Vertex 43524 0.456172 0.726124 0.453617 Vertex 43525 0.412084 0.178035 0.55519 Vertex 43526 0.463469 0.352268 0.411358 Vertex 43527 0.391331 0.210243 0.475921 Vertex 43528 0.364353 0.214104 0.21623 Vertex 43529 0.455758 0.539999 0.431051 Vertex 43530 0.380054 0.34204 0.466416 Vertex 43531 0.531135 0.133059 0.447386 Vertex 43532 0.53704 0.124921 0.449358 Vertex 43533 0.354362 0.248462 0.531204 Vertex 43534 0.516666 0.154694 0.739575 Vertex 43535 0.389459 0.35411 0.380987 Vertex 43536 0.467822 0.210675 0.691844 Vertex 43537 0.384046 0.231227 0.691933 Vertex 43538 0.476262 0.193008 0.571756 Vertex 43539 0.351448 0.176513 0.478557 Vertex 43540 0.428821 0.179107 0.491605 Vertex 43541 0.35156 0.3811 0.459042 Vertex 43542 0.358442 0.366358 0.38149 Vertex 43543 0.524757 0.0706396 0.668023 Vertex 43544 0.523217 0.0703435 0.664102 Vertex 43545 0.48745 0.559923 0.38961 Vertex 43546 0.531586 0.61585 0.5324 Vertex 43547 0.362393 0.411933 0.356165 Vertex 43548 0.534612 0.639209 0.518002 Vertex 43549 0.353029 0.310034 0.210675 Vertex 43550 0.526539 0.0678915 0.789289 Vertex 43551 0.382216 0.486801 0.519962 Vertex 43552 0.433702 0.185012 0.79321 Vertex 43553 0.514771 0.0192309 0.637883 Vertex 43554 0.553624 0.551104 0.477947 Vertex 43555 0.370833 0.361863 0.57801 Vertex 43556 0.383288 0.865556 0.344225 Vertex 43557 0.413985 0.839525 0.350017 Vertex 43558 0.412161 0.841415 0.350533 Vertex 43559 0.497133 0.715463 0.41076 Vertex 43560 0.544479 0.610141 0.469501 Vertex 43561 0.471986 0.112371 0.645363 Vertex 43562 0.479626 0.557986 0.405371 Vertex 43563 0.510844 0.550026 0.399472 Vertex 43564 0.369844 0.387496 0.258743 Vertex 43565 0.374043 0.198083 0.562807 Vertex 43566 0.561193 0.401379 0.402433 Vertex 43567 0.441721 0.165574 0.497427 Vertex 43568 0.407683 0.377007 0.374828 Vertex 43569 0.508079 0.025574 0.632114 Vertex 43570 0.58178 0.432941 0.331752 Vertex 43571 0.406351 0.282191 0.208069 Vertex 43572 0.441312 0.247822 0.679501 Vertex 43573 0.420322 0.86295 0.418851 Vertex 43574 0.573157 0.527638 0.463958 Vertex 43575 0.369447 0.309341 0.588488 Vertex 43576 0.43831 0.117168 0.718614 Vertex 43577 0.350666 0.14074 0.458254 Vertex 43578 0.375671 0.286396 0.194417 Vertex 43579 0.498738 0.113241 0.796438 Vertex 43580 0.470979 0.463727 0.387052 Vertex 43581 0.554909 0.516634 0.438289 Vertex 43582 0.476209 0.248023 0.458444 Vertex 43583 0.362002 0.188453 0.459628 Vertex 43584 0.462924 0.395782 0.389569 Vertex 43585 0.576971 0.475116 0.5013 Vertex 43586 0.389779 0.254473 0.460309 Vertex 43587 0.448935 0.5272 0.579319 Vertex 43588 0.4403 0.176578 0.792618 Vertex 43589 0.494125 0.461529 0.608009 Vertex 43590 0.473697 0.514839 0.600842 Vertex 43591 0.372189 0.392412 0.275196 Vertex 43592 0.510596 0.0218428 0.658908 Vertex 43593 0.453531 0.819809 0.46115 Vertex 43594 0.444043 0.208596 0.469501 Vertex 43595 0.375227 0.0750461 0.467979 Vertex 43596 0.356079 0.420106 0.498398 Vertex 43597 0.479786 0.183952 0.705673 Vertex 43598 0.446311 0.24585 0.760334 Vertex 43599 0.488729 0.101106 0.651759 Vertex 43600 0.505621 0.443815 0.398246 Vertex 43601 0.371911 0.874724 0.331278 Vertex 43602 0.45163 0.788442 0.386507 Vertex 43603 0.535317 0.652269 0.507217 Vertex 43604 0.406765 0.172391 0.490189 Vertex 43605 0.519657 0.383883 0.438591 Vertex 43606 0.482564 0.0747203 0.727421 Vertex 43607 0.469415 0.169098 0.496882 Vertex 43608 0.470653 0.171686 0.493808 Vertex 43609 0.547292 0.0150673 0.769514 Vertex 43610 0.612981 0.457644 0.345966 Vertex 43611 0.430385 0.405625 0.397855 Vertex 43612 0.696034 0.444976 0.213589 Vertex 43613 0.507605 0.643106 0.414598 Vertex 43614 0.480509 0.179356 0.482016 Vertex 43615 0.406659 0.364338 0.271157 Vertex 43616 0.336718 0.269149 0.231221 Vertex 43617 0.41533 0.168405 0.504042 Vertex 43618 0.499905 0.614322 0.562096 Vertex 43619 0.444736 0.110221 0.737662 Vertex 43620 0.399652 0.516207 0.534556 Vertex 43621 0.372023 0.374437 0.52489 Vertex 43622 0.37197 0.371582 0.522355 Vertex 43623 0.347551 0.140112 0.468263 Vertex 43624 0.459714 0.0898705 0.661526 Vertex 43625 0.39678 0.262646 0.640015 Vertex 43626 0.467721 0.101218 0.772511 Vertex 43627 0.525 0.491362 0.593782 Vertex 43628 0.430811 0.323644 0.424169 Vertex 43629 0.406262 0.351504 0.246175 Vertex 43630 0.512361 0.62551 0.546916 Vertex 43631 0.487243 0.108041 0.649858 Vertex 43632 0.444191 0.168079 0.584164 Vertex 43633 0.357252 0.361217 0.389214 Vertex 43634 0.461195 0.392548 0.627056 Vertex 43635 0.363643 0.304093 0.238855 Vertex 43636 0.518254 0.096871 0.681538 Vertex 43637 0.400132 0.307072 0.229586 Vertex 43638 0.37213 0.471166 0.506068 Vertex 43639 0.405747 0.887232 0.383694 Vertex 43640 0.396762 0.288025 0.195584 Vertex 43641 0.42525 0.248935 0.208448 Vertex 43642 0.482872 0.550322 0.581896 Vertex 43643 0.49236 0.417086 0.385761 Vertex 43644 0.555128 0.464005 0.341068 Vertex 43645 0.544983 0.0426491 0.711199 Vertex 43646 0.503192 0.176128 0.741061 Vertex 43647 0.658135 0.450004 0.211167 Vertex 43648 0.480692 0.168162 0.515882 Vertex 43649 0.550639 0.490592 0.557257 Vertex 43650 0.392296 0.259709 0.625723 Vertex 43651 0.489239 0.418057 0.613777 Vertex 43652 0.42695 0.261207 0.683641 Vertex 43653 0.545681 0.0546721 0.787341 Vertex 43654 0.461811 0.216917 0.613765 Vertex 43655 0.524129 0.666779 0.434913 Vertex 43656 0.472963 0.0532033 0.658748 Vertex 43657 0.441674 0.146876 0.605918 Vertex 43658 0.517478 0.434131 0.420882 Vertex 43659 0.518348 0.152082 0.458112 Vertex 43660 0.336061 0.912593 0.298277 Vertex 43661 0.60341 0.536883 0.260384 Vertex 43662 0.582053 0.487133 0.484693 Vertex 43663 0.430711 0.167765 0.536528 Vertex 43664 0.455189 0.372002 0.633417 Vertex 43665 0.449705 0.388639 0.63578 Vertex 43666 0.518674 0.693763 0.505381 Vertex 43667 0.369707 0.878023 0.312835 Vertex 43668 0.359408 0.380555 0.364475 Vertex 43669 0.462284 0.20246 0.626292 Vertex 43670 0.448029 0.368011 0.63841 Vertex 43671 0.325826 0.947685 0.231647 Vertex 43672 0.340977 0.279591 0.200417 Vertex 43673 0.384709 0.463354 0.578662 Vertex 43674 0.531858 0.0132431 0.7294 Vertex 43675 0.435893 0.345084 0.420432 Vertex 43676 0.359408 0.268184 0.492985 Vertex 43677 0.611618 0.498605 0.248787 Vertex 43678 0.607354 0.443252 0.206026 Vertex 43679 0.532107 0.449678 0.403742 Vertex 43680 0.349855 0.181518 0.478397 Vertex 43681 0.415099 0.336164 0.639144 Vertex 43682 0.35098 0.199594 0.48477 Vertex 43683 0.376696 0.416884 0.569802 Vertex 43684 0.469948 0.591336 0.55156 Vertex 43685 0.43969 0.27063 0.435553 Vertex 43686 0.344406 0.302784 0.216467 Vertex 43687 0.506586 0.26209 0.534467 Vertex 43688 0.483458 0.0532092 0.68861 Vertex 43689 0.430652 0.415161 0.391648 Vertex 43690 0.356429 0.0865005 0.447943 Vertex 43691 0.519219 0.380815 0.526199 Vertex 43692 0.374333 0.376308 0.507856 Vertex 43693 0.453294 0.616816 0.503675 Vertex 43694 0.401026 0.181269 0.586255 Vertex 43695 0.644081 0.494667 0.191752 Vertex 43696 0.54044 0.537339 0.429014 Vertex 43697 0.502801 0.171058 0.736145 Vertex 43698 0.536324 0.565395 0.557417 Vertex 43699 0.513918 0.1072 0.664931 Vertex 43700 0.511603 0.100348 0.654448 Vertex 43701 0.463232 0.542818 0.425478 Vertex 43702 0.553168 0.146059 0.427178 Vertex 43703 0.418942 0.836375 0.351024 Vertex 43704 0.37704 0.345025 0.424063 Vertex 43705 0.421768 0.382882 0.423695 Vertex 43706 0.495611 0.558868 0.377599 Vertex 43707 0.487148 0.449672 0.607914 Vertex 43708 0.487995 0.453676 0.607855 Vertex 43709 0.468106 0.190781 0.676611 Vertex 43710 0.525071 0.138347 0.756348 Vertex 43711 0.441401 0.12084 0.735595 Vertex 43712 0.441312 0.123795 0.735974 Vertex 43713 0.585144 0.489804 0.299995 Vertex 43714 0.397745 0.843529 0.372772 Vertex 43715 0.321752 0.973087 0.24457 Vertex 43716 0.519841 0.494252 0.597372 Vertex 43717 0.398865 0.256635 0.710625 Vertex 43718 0.400801 0.257476 0.710287 Vertex 43719 0.467307 0.22043 0.598704 Vertex 43720 0.457416 0.230356 0.776751 Vertex 43721 0.519059 0.167902 0.785321 Vertex 43722 0.367095 0.917841 0.343651 Vertex 43723 0.475682 0.182074 0.797451 Vertex 43724 0.582207 0.449157 0.318313 Vertex 43725 0.405693 0.848321 0.349407 Vertex 43726 0.42034 0.171112 0.540733 Vertex 43727 0.469877 0.561498 0.570033 Vertex 43728 0.567572 0.403511 0.437063 Vertex 43729 0.406001 0.385826 0.277441 Vertex 43730 0.48379 0.117387 0.647246 Vertex 43731 0.506882 0.0901429 0.705946 Vertex 43732 0.317706 0.935141 0.25885 Vertex 43733 0.364501 0.420379 0.542895 Vertex 43734 0.581289 0.508354 0.376841 Vertex 43735 0.426488 0.490852 0.431963 Vertex 43736 0.486028 0.423607 0.376456 Vertex 43737 0.552108 0.451662 0.366654 Vertex 43738 0.397011 0.893635 0.330757 Vertex 43739 0.399232 0.890318 0.332024 Vertex 43740 0.308899 0.970937 0.247123 Vertex 43741 0.354557 0.277962 0.197621 Vertex 43742 0.528654 0.166326 0.457614 Vertex 43743 0.536726 0.0542634 0.791333 Vertex 43744 0.316374 0.942817 0.270672 Vertex 43745 0.513397 0.5411 0.401947 Vertex 43746 0.626644 0.490497 0.247271 Vertex 43747 0.529886 0.571318 0.55962 Vertex 43748 0.384632 0.47315 0.567693 Vertex 43749 0.421839 0.146698 0.698027 Vertex 43750 0.42111 0.147693 0.696179 Vertex 43751 0.446311 0.844714 0.421611 Vertex 43752 0.65887 0.418809 0.23369 Vertex 43753 0.357341 0.328654 0.545412 Vertex 43754 0.356944 0.327174 0.543144 Vertex 43755 0.357288 0.326765 0.547136 Vertex 43756 0.547476 0.596264 0.466836 Vertex 43757 0.576521 0.466404 0.501288 Vertex 43758 0.374801 0.345759 0.480642 Vertex 43759 0.538657 0.115906 0.435707 Vertex 43760 0.457677 0.18179 0.644184 Vertex 43761 0.634302 0.452503 0.207086 Vertex 43762 0.359017 0.387508 0.329235 Vertex 43763 0.532468 0.0913393 0.791439 Vertex 43764 0.455006 0.675965 0.474257 Vertex 43765 0.530916 0.426171 0.573841 Vertex 43766 0.590149 0.482614 0.417056 Vertex 43767 0.502405 0.0733048 0.769324 Vertex 43768 0.438849 0.823676 0.360601 Vertex 43769 0.678189 0.455524 0.194163 Vertex 43770 0.451339 0.644386 0.476662 Vertex 43771 0.527665 0.114207 0.758308 Vertex 43772 0.524336 0.378517 0.449412 Vertex 43773 0.426849 0.54967 0.543007 Vertex 43774 0.420014 0.156927 0.71249 Vertex 43775 0.42162 0.157863 0.714729 Vertex 43776 0.365875 0.340571 0.511759 Vertex 43777 0.410941 0.828361 0.385068 Vertex 43778 0.477903 0.724756 0.405631 Vertex 43779 0.474509 0.677641 0.425555 Vertex 43780 0.361516 0.296175 0.196129 Vertex 43781 0.404912 0.342282 0.215603 Vertex 43782 0.465406 0.209698 0.669166 Vertex 43783 0.453335 0.0964269 0.729044 Vertex 43784 0.367794 0.283921 0.195667 Vertex 43785 0.446726 0.802041 0.37375 Vertex 43786 0.473016 0.166231 0.506577 Vertex 43787 0.423977 0.499488 0.440344 Vertex 43788 0.549306 0.42684 0.534378 Vertex 43789 0.371526 0.211972 0.229337 Vertex 43790 0.470748 0.768116 0.486926 Vertex 43791 0.523424 0.36576 0.50133 Vertex 43792 0.557302 0.472605 0.34201 Vertex 43793 0.502594 0.649799 0.550162 Vertex 43794 0.473739 0.177301 0.692851 Vertex 43795 0.472306 0.177425 0.687662 Vertex 43796 0.46434 0.300007 0.427083 Vertex 43797 0.465163 0.131057 0.808959 Vertex 43798 0.340461 0.94682 0.294718 Vertex 43799 0.35432 0.176158 0.484634 Vertex 43800 0.583628 0.504095 0.309175 Vertex 43801 0.517152 0.289725 0.497575 Vertex 43802 0.477287 0.572319 0.416375 Vertex 43803 0.509376 0.0832608 0.789325 Vertex 43804 0.465666 0.774062 0.480458 Vertex 43805 0.45943 0.185391 0.801934 Vertex 43806 0.483979 0.0541272 0.69156 Vertex 43807 0.392077 0.431105 0.383966 Vertex 43808 0.491856 0.185853 0.538565 Vertex 43809 0.559618 0.51738 0.439077 Vertex 43810 0.422857 0.371688 0.42809 Vertex 43811 0.552599 0.551358 0.473908 Vertex 43812 0.361291 0.241171 0.560805 Vertex 43813 0.433814 0.213317 0.470313 Vertex 43814 0.431652 0.213577 0.471379 Vertex 43815 0.41822 0.264198 0.689842 Vertex 43816 0.506302 0.0907174 0.710447 Vertex 43817 0.363933 0.368425 0.256706 Vertex 43818 0.507753 0.556114 0.396653 Vertex 43819 0.416111 0.416979 0.331681 Vertex 43820 0.525053 0.434877 0.588328 Vertex 43821 0.419813 0.169317 0.521893 Vertex 43822 0.478767 0.201471 0.714694 Vertex 43823 0.515387 0.535871 0.402925 Vertex 43824 0.592014 0.444206 0.202816 Vertex 43825 0.377324 0.355295 0.451005 Vertex 43826 0.379717 0.353518 0.448363 Vertex 43827 0.429858 0.272697 0.64085 Vertex 43828 0.512201 0.619919 0.549084 Vertex 43829 0.495635 0.0495845 0.686928 Vertex 43830 0.369157 0.385873 0.273254 Vertex 43831 0.373676 0.385044 0.56347 Vertex 43832 0.5208 0.13114 0.790652 Vertex 43833 0.560915 0.0266816 0.738532 Vertex 43834 0.389856 0.867901 0.385091 Vertex 43835 0.388932 0.871271 0.384849 Vertex 43836 0.496642 0.678512 0.40816 Vertex 43837 0.47949 0.0888103 0.650225 Vertex 43838 0.352899 0.190029 0.499269 Vertex 43839 0.497062 0.162542 0.691086 Vertex 43840 0.449705 0.449939 0.398956 Vertex 43841 0.450984 0.748056 0.438994 Vertex 43842 0.538018 0.428238 0.561362 Vertex 43843 0.585488 0.502337 0.38489 Vertex 43844 0.49419 0.191568 0.744917 Vertex 43845 0.649056 0.486801 0.2264 Vertex 43846 0.51759 0.0773618 0.719757 Vertex 43847 0.371176 0.353139 0.283524 Vertex 43848 0.40638 0.25269 0.731289 Vertex 43849 0.432274 0.432597 0.617592 Vertex 43850 0.497471 0.406946 0.413088 Vertex 43851 0.402454 0.369841 0.376906 Vertex 43852 0.385918 0.207548 0.694023 Vertex 43853 0.673427 0.46022 0.189377 Vertex 43854 0.536359 0.458029 0.400176 Vertex 43855 0.494995 0.238221 0.559212 Vertex 43856 0.384046 0.292064 0.611071 Vertex 43857 0.627071 0.49456 0.288025 Vertex 43858 0.468474 0.161292 0.516207 Vertex 43859 0.530531 0.483893 0.408978 Vertex 43860 0.453146 0.359067 0.636254 Vertex 43861 0.539682 0.494501 0.407509 Vertex 43862 0.374102 0.38412 0.571732 Vertex 43863 0.329824 0.961497 0.262575 Vertex 43864 0.4386 0.231937 0.782857 Vertex 43865 0.503879 0.184947 0.45348 Vertex 43866 0.524087 0.370871 0.505464 Vertex 43867 0.436456 0.537641 0.48477 Vertex 43868 0.462581 0.449133 0.386631 Vertex 43869 0.522524 0.387058 0.455636 Vertex 43870 0.414092 0.233756 0.20159 Vertex 43871 0.4153 0.233921 0.199363 Vertex 43872 0.540179 0.00511126 0.729447 Vertex 43873 0.315551 0.971518 0.250659 Vertex 43874 0.314082 0.970973 0.250552 Vertex 43875 0.55113 0.561682 0.463028 Vertex 43876 0.51688 0.297898 0.536433 Vertex 43877 0.553659 0.561314 0.477337 Vertex 43878 0.523513 0.0503782 0.728766 Vertex 43879 0.457996 0.734108 0.466185 Vertex 43880 0.451446 0.50608 0.422173 Vertex 43881 0.378888 0.244748 0.203982 Vertex 43882 0.537692 0.057586 0.712638 Vertex 43883 0.432399 0.793998 0.40668 Vertex 43884 0.432132 0.79372 0.408214 Vertex 43885 0.535181 0.0835332 0.770586 Vertex 43886 0.369157 0.367827 0.240063 Vertex 43887 0.543946 0.594469 0.511635 Vertex 43888 0.561981 0.411074 0.373015 Vertex 43889 0.550094 0.569014 0.462199 Vertex 43890 0.537745 0.614334 0.52611 Vertex 43891 0.50218 0.16401 0.459901 Vertex 43892 0.480408 0.612853 0.424684 Vertex 43893 0.460792 0.787602 0.476289 Vertex 43894 0.35605 0.257535 0.521662 Vertex 43895 0.500272 0.544287 0.583364 Vertex 43896 0.499947 0.692916 0.532435 Vertex 43897 0.448603 0.139325 0.774737 Vertex 43898 0.521126 0.146616 0.731745 Vertex 43899 0.559221 0.48689 0.358274 Vertex 43900 0.461461 0.623496 0.443157 Vertex 43901 0.545599 0.617141 0.495893 Vertex 43902 0.530395 0.54004 0.575949 Vertex 43903 0.368582 0.185693 0.515799 Vertex 43904 0.495132 0.601802 0.401971 Vertex 43905 0.512106 0.586255 0.411388 Vertex 43906 0.500805 0.634483 0.407864 Vertex 43907 0.372888 0.360637 0.524594 Vertex 43908 0.526332 0.702718 0.490918 Vertex 43909 0.524443 0.346493 0.514146 Vertex 43910 0.356861 0.261314 0.517729 Vertex 43911 0.492425 0.16574 0.690162 Vertex 43912 0.536697 0.554379 0.563541 Vertex 43913 0.37181 0.389178 0.51648 Vertex 43914 0.482872 0.187731 0.467801 Vertex 43915 0.518799 0.114763 0.685714 Vertex 43916 0.376199 0.401444 0.546934 Vertex 43917 0.465927 0.227732 0.749999 Vertex 43918 0.464417 0.229432 0.752054 Vertex 43919 0.526196 0.0556553 0.726551 Vertex 43920 0.51605 0.104351 0.667063 Vertex 43921 0.467775 0.621518 0.433705 Vertex 43922 0.450943 0.521686 0.431691 Vertex 43923 0.442041 0.502858 0.432496 Vertex 43924 0.493337 0.0710483 0.698625 Vertex 43925 0.389074 0.502425 0.501288 Vertex 43926 0.38118 0.0830713 0.467168 Vertex 43927 0.494083 0.232944 0.524292 Vertex 43928 0.538112 0.553443 0.436251 Vertex 43929 0.409638 0.525844 0.520099 Vertex 43930 0.542661 0.541284 0.561403 Vertex 43931 0.560429 0.506826 0.412661 Vertex 43932 0.379166 0.308417 0.193701 Vertex 43933 0.397378 0.881037 0.32853 Vertex 43934 0.4049 0.512826 0.561984 Vertex 43935 0.356358 0.322501 0.540555 Vertex 43936 0.512378 0.169601 0.785611 Vertex 43937 0.51688 0.168257 0.787412 Vertex 43938 0.505893 0.389859 0.584158 Vertex 43939 0.340503 0.907346 0.312409 Vertex 43940 0.350015 0.895435 0.316833 Vertex 43941 0.350038 0.894446 0.314801 Vertex 43942 0.466857 0.180825 0.681764 Vertex 43943 0.496286 0.383427 0.609045 Vertex 43944 0.473709 0.367181 0.413941 Vertex 43945 0.53078 0.504131 0.417299 Vertex 43946 0.54641 0.547047 0.440231 Vertex 43947 0.441721 0.572407 0.489958 Vertex 43948 0.390721 0.190058 0.650148 Vertex 43949 0.534494 0.543511 0.428765 Vertex 43950 0.372917 0.434332 0.565745 Vertex 43951 0.551237 0.149908 0.439266 Vertex 43952 0.549176 0.429458 0.380851 Vertex 43953 0.497998 0.711626 0.523445 Vertex 43954 0.42743 0.262019 0.673276 Vertex 43955 0.484755 0.419425 0.37783 Vertex 43956 0.473478 0.162855 0.532364 Vertex 43957 0.498804 0.13907 0.795058 Vertex 43958 0.59147 0.469258 0.448725 Vertex 43959 0.46858 0.363012 0.412176 Vertex 43960 0.330233 0.263286 0.233116 Vertex 43961 0.302201 0.987106 0.211409 Vertex 43962 0.5017 0.169382 0.727528 Vertex 43963 0.435917 0.353464 0.649118 Vertex 43964 0.398823 0.428149 0.355188 Vertex 43965 0.49981 0.775306 0.440693 Vertex 43966 0.516122 0.1728 0.447333 Vertex 43967 0.509512 0.401012 0.444602 Vertex 43968 0.494356 0.24004 0.495052 Vertex 43969 0.438031 0.842345 0.439148 Vertex 43970 0.488208 0.422801 0.378346 Vertex 43971 0.491341 0.437353 0.609223 Vertex 43972 0.647415 0.429322 0.22547 Vertex 43973 0.450617 0.18394 0.604935 Vertex 43974 0.520688 0.597454 0.551447 Vertex 43975 0.37229 0.46657 0.468175 Vertex 43976 0.353764 0.281172 0.528177 Vertex 43977 0.379326 0.433491 0.404636 Vertex 43978 0.463404 0.562919 0.429885 Vertex 43979 0.386048 0.265519 0.225476 Vertex 43980 0.383945 0.265762 0.227158 Vertex 43981 0.529613 0.0468423 0.657161 Vertex 43982 0.523187 0.723649 0.464035 Vertex 43983 0.534861 0.117363 0.429594 Vertex 43984 0.404995 0.445195 0.388983 Vertex 43985 0.354314 0.394052 0.441469 Vertex 43986 0.508623 0.401059 0.586207 Vertex 43987 0.558066 0.432858 0.515787 Vertex 43988 0.496926 0.415421 0.401758 Vertex 43989 0.354397 0.130281 0.473718 Vertex 43990 0.341208 0.0956095 0.448754 Vertex 43991 0.341924 0.126348 0.462157 Vertex 43992 0.66651 0.489905 0.211492 Vertex 43993 0.477275 0.0742583 0.704554 Vertex 43994 0.522323 0.157946 0.791487 Vertex 43995 0.547133 0.603501 0.474423 Vertex 43996 0.451523 0.140959 0.78313 Vertex 43997 0.529134 0.544559 0.417032 Vertex 43998 0.576059 0.51706 0.447469 Vertex 43999 0.439459 0.563559 0.484634 Vertex 44000 0.554773 0.477728 0.376664 Vertex 44001 0.526267 0.0575564 0.657445 Vertex 44002 0.496861 0.181299 0.507483 Vertex 44003 0.654735 0.502698 0.1979 Vertex 44004 0.419908 0.40845 0.344657 Vertex 44005 0.353995 0.406496 0.498718 Vertex 44006 0.401625 0.878153 0.400941 Vertex 44007 0.506693 0.641957 0.549137 Vertex 44008 0.423781 0.222538 0.782105 Vertex 44009 0.36372 0.110558 0.480055 Vertex 44010 0.453614 0.245471 0.752066 Vertex 44011 0.468444 0.344349 0.416067 Vertex 44012 0.370762 0.357972 0.45441 Vertex 44013 0.461929 0.196952 0.582144 Vertex 44014 0.491051 0.211848 0.544867 Vertex 44015 0.523004 0.0237973 0.642289 Vertex 44016 0.374434 0.37128 0.584247 Vertex 44017 0.52571 0.43756 0.410079 Vertex 44018 0.524526 0.440474 0.410666 Vertex 44019 0.52436 0.39715 0.528147 Vertex 44020 0.366497 0.160451 0.475501 Vertex 44021 0.479555 0.547201 0.582606 Vertex 44022 0.450427 0.307049 0.422795 Vertex 44023 0.581377 0.446581 0.470194 Vertex 44024 0.532 0.658203 0.508686 Vertex 44025 0.553073 0.0554361 0.752285 Vertex 44026 0.472353 0.595713 0.429488 Vertex 44027 0.431718 0.125359 0.671505 Vertex 44028 0.482368 0.738757 0.499085 Vertex 44029 0.412333 0.475377 0.594475 Vertex 44030 0.421104 0.389658 0.3924 Vertex 44031 0.523258 0.624746 0.536854 Vertex 44032 0.455616 0.399466 0.390072 Vertex 44033 0.369068 0.4382 0.428765 Vertex 44034 0.399487 0.301481 0.21215 Vertex 44035 0.370833 0.909656 0.352369 Vertex 44036 0.40859 0.839751 0.366636 Vertex 44037 0.303344 0.990992 0.20772 Vertex 44038 0.490494 0.324076 0.622128 Vertex 44039 0.339543 0.906303 0.29605 Vertex 44040 0.381707 0.321168 0.255587 Vertex 44041 0.610647 0.541325 0.287279 Vertex 44042 0.453472 0.258512 0.627755 Vertex 44043 0.458607 0.462625 0.399347 Vertex 44044 0.520759 0.519749 0.410186 Vertex 44045 0.547701 0.586349 0.505552 Vertex 44046 0.443439 0.34676 0.416949 Vertex 44047 0.323303 0.245607 0.22961 Vertex 44048 0.588354 0.502307 0.297886 Vertex 44049 0.384597 0.250108 0.217314 Vertex 44050 0.60001 0.522183 0.26742 Vertex 44051 0.515097 0.322779 0.573734 Vertex 44052 0.38298 0.247117 0.605136 Vertex 44053 0.41986 0.264322 0.718899 Vertex 44054 0.396122 0.304514 0.202543 Vertex 44055 0.538047 0.667259 0.470958 Vertex 44056 0.510021 0.535255 0.587007 Vertex 44057 0.384786 0.204255 0.606629 Vertex 44058 0.384792 0.206393 0.604834 Vertex 44059 0.485525 0.756744 0.501424 Vertex 44060 0.619099 0.504854 0.3206 Vertex 44061 0.422946 0.144158 0.638054 Vertex 44062 0.357181 0.176389 0.490989 Vertex 44063 0.482226 0.222005 0.492576 Vertex 44064 0.564344 0.458763 0.325332 Vertex 44065 0.351164 0.388876 0.456063 Vertex 44066 0.500462 0.18429 0.762389 Vertex 44067 0.605708 0.503515 0.227187 Vertex 44068 0.467508 0.513631 0.413195 Vertex 44069 0.405409 0.361952 0.281469 Vertex 44070 0.469848 0.128747 0.810013 Vertex 44071 0.488711 0.546348 0.585177 Vertex 44072 0.488386 0.73377 0.512263 Vertex 44073 0.666468 0.456738 0.193191 Vertex 44074 0.516583 0.0496438 0.660353 Vertex 44075 0.395477 0.266236 0.448961 Vertex 44076 0.397082 0.268237 0.4477 Vertex 44077 0.49403 0.179107 0.785185 Vertex 44078 0.360853 0.340707 0.250398 Vertex 44079 0.50427 0.576571 0.570311 Vertex 44080 0.431759 0.481199 0.425152 Vertex 44081 0.510365 0.693437 0.422511 Vertex 44082 0.68705 0.450632 0.202194 Vertex 44083 0.498993 0.188181 0.522953 Vertex 44084 0.498922 0.188726 0.524043 Vertex 44085 0.628113 0.496189 0.266846 Vertex 44086 0.46351 0.593966 0.543007 Vertex 44087 0.379563 0.349656 0.372707 Vertex 44088 0.529406 0.0661561 0.796391 Vertex 44089 0.418368 0.832525 0.366559 Vertex 44090 0.60524 0.46805 0.18516 Vertex 44091 0.391592 0.183774 0.673282 Vertex 44092 0.456457 0.518304 0.426663 Vertex 44093 0.502653 0.606486 0.564483 Vertex 44094 0.527274 0.571176 0.561551 Vertex 44095 0.393274 0.330206 0.451609 Vertex 44096 0.365775 0.296269 0.194518 Vertex 44097 0.375304 0.388053 0.569665 Vertex 44098 0.488984 0.37016 0.432017 Vertex 44099 0.52972 0.0634317 0.793589 Vertex 44100 0.439358 0.314369 0.42074 Vertex 44101 0.462533 0.731022 0.476372 Vertex 44102 0.657187 0.490248 0.193428 Vertex 44103 0.38545 0.297264 0.613203 Vertex 44104 0.391479 0.85865 0.347802 Vertex 44105 0.527221 0.473748 0.408 Vertex 44106 0.425215 0.24181 0.213778 Vertex 44107 0.426026 0.243173 0.211682 Vertex 44108 0.537881 0.612451 0.528367 Vertex 44109 0.538942 0.612042 0.526217 Vertex 44110 0.486277 0.78008 0.480506 Vertex 44111 0.386042 0.421871 0.30452 Vertex 44112 0.356026 0.147326 0.475981 Vertex 44113 0.483245 0.363871 0.425561 Vertex 44114 0.485572 0.368372 0.428007 Vertex 44115 0.472673 0.217451 0.774862 Vertex 44116 0.402033 0.185391 0.567622 Vertex 44117 0.442432 0.575523 0.497136 Vertex 44118 0.497637 0.179913 0.734037 Vertex 44119 0.525503 0.172349 0.448393 Vertex 44120 0.358472 0.11593 0.457703 Vertex 44121 0.595379 0.46166 0.406573 Vertex 44122 0.622866 0.4858 0.228277 Vertex 44123 0.448751 0.771468 0.455707 Vertex 44124 0.530508 0.562108 0.430198 Vertex 44125 0.449888 0.82553 0.456104 Vertex 44126 0.36918 0.390072 0.283565 Vertex 44127 0.454798 0.679981 0.466208 Vertex 44128 0.499704 0.183478 0.768637 Vertex 44129 0.553766 0.00913867 0.729305 Vertex 44130 0.550124 0.579224 0.478575 Vertex 44131 0.413298 0.529747 0.517895 Vertex 44132 0.437812 0.52149 0.580131 Vertex 44133 0.539676 0.659109 0.486428 Vertex 44134 0.351347 0.921981 0.274397 Vertex 44135 0.349274 0.920702 0.272206 Vertex 44136 0.480692 0.688806 0.41862 Vertex 44137 0.465672 0.825903 0.41355 Vertex 44138 0.666741 0.484788 0.193399 Vertex 44139 0.429147 0.202259 0.476283 Vertex 44140 0.39649 0.334334 0.256564 Vertex 44141 0.375399 0.333085 0.264287 Vertex 44142 0.378218 0.334648 0.266318 Vertex 44143 0.457132 0.710323 0.466102 Vertex 44144 0.501415 0.313611 0.598657 Vertex 44145 0.508718 0.090824 0.695966 Vertex 44146 0.53739 0.14886 0.442121 Vertex 44147 0.584943 0.482288 0.298727 Vertex 44148 0.362334 0.413514 0.417862 Vertex 44149 0.364294 0.258483 0.204421 Vertex 44150 0.467443 0.173889 0.489005 Vertex 44151 0.594816 0.430246 0.208282 Vertex 44152 0.460395 0.15868 0.536528 Vertex 44153 0.503145 0.179587 0.766558 Vertex 44154 0.579038 0.405987 0.391405 Vertex 44155 0.453377 0.244476 0.745829 Vertex 44156 0.41896 0.457318 0.398015 Vertex 44157 0.399273 0.462406 0.593729 Vertex 44158 0.609913 0.4788 0.281907 Vertex 44159 0.355896 0.39516 0.430832 Vertex 44160 0.356678 0.398968 0.429162 Vertex 44161 0.319773 0.96049 0.212576 Vertex 44162 0.533895 0.53176 0.575926 Vertex 44163 0.371626 0.376723 0.559271 Vertex 44164 0.380149 0.196816 0.47697 Vertex 44165 0.339863 0.907648 0.304383 Vertex 44166 0.456036 0.177899 0.64422 Vertex 44167 0.456089 0.186901 0.476887 Vertex 44168 0.379 0.271341 0.600617 Vertex 44169 0.379563 0.340666 0.466516 Vertex 44170 0.407867 0.166989 0.511635 Vertex 44171 0.407565 0.169305 0.519962 Vertex 44172 0.408388 0.470781 0.411548 Vertex 44173 0.373036 0.326854 0.478504 Vertex 44174 0.371579 0.324923 0.480606 Vertex 44175 0.5761 0.521461 0.470182 Vertex 44176 0.422366 0.396955 0.319089 Vertex 44177 0.524609 0.0507572 0.661585 Vertex 44178 0.474758 0.267544 0.613286 Vertex 44179 0.540505 0.570891 0.546863 Vertex 44180 0.419055 0.204326 0.77501 Vertex 44181 0.55466 0.552981 0.488685 Vertex 44182 0.389862 0.321666 0.254224 Vertex 44183 0.63567 0.510912 0.19607 Vertex 44184 0.449112 0.611906 0.467434 Vertex 44185 0.387623 0.908459 0.349407 Vertex 44186 0.476078 0.494643 0.401977 Vertex 44187 0.477423 0.497498 0.40116 Vertex 44188 0.528577 0.0838353 0.795787 Vertex 44189 0.606643 0.498753 0.217202 Vertex 44190 0.405942 0.351143 0.231973 Vertex 44191 0.320135 0.241568 0.223492 Vertex 44192 0.372835 0.378659 0.569642 Vertex 44193 0.374102 0.380395 0.569689 Vertex 44194 0.537923 0.603466 0.526122 Vertex 44195 0.462788 0.222864 0.706455 Vertex 44196 0.364484 0.122735 0.468003 Vertex 44197 0.353266 0.203822 0.480819 Vertex 44198 0.496902 0.569037 0.38977 Vertex 44199 0.413192 0.379198 0.362366 Vertex 44200 0.369388 0.361502 0.229693 Vertex 44201 0.526042 0.0394923 0.658002 Vertex 44202 0.589716 0.483283 0.421474 Vertex 44203 0.482291 0.176934 0.706319 Vertex 44204 0.48251 0.17877 0.708682 Vertex 44205 0.52009 0.38906 0.437252 Vertex 44206 0.360095 0.439876 0.4753 Vertex 44207 0.371982 0.390084 0.267035 Vertex 44208 0.515275 0.105542 0.693864 Vertex 44209 0.427033 0.261302 0.689866 Vertex 44210 0.509974 0.0838057 0.724958 Vertex 44211 0.51136 0.081715 0.724821 Vertex 44212 0.574093 0.472557 0.31457 Vertex 44213 0.575638 0.474233 0.313469 Vertex 44214 0.64979 0.470028 0.216604 Vertex 44215 0.360622 0.39497 0.395551 Vertex 44216 0.416028 0.159716 0.708534 Vertex 44217 0.545687 0.412892 0.530286 Vertex 44218 0.518514 0.0224647 0.735494 Vertex 44219 0.523353 0.71284 0.449459 Vertex 44220 0.585458 0.439467 0.324473 Vertex 44221 0.434472 0.541035 0.495668 Vertex 44222 0.50456 0.267775 0.567563 Vertex 44223 0.557894 0.52027 0.536569 Vertex 44224 0.498342 0.200968 0.528266 Vertex 44225 0.381085 0.396522 0.586255 Vertex 44226 0.547559 0.146521 0.424051 Vertex 44227 0.376282 0.40697 0.555255 Vertex 44228 0.620568 0.485895 0.319539 Vertex 44229 0.510921 0.405477 0.58003 Vertex 44230 0.39803 0.259466 0.658665 Vertex 44231 0.426831 0.265353 0.652571 Vertex 44232 0.469877 0.121036 0.815349 Vertex 44233 0.459252 0.804292 0.476899 Vertex 44234 0.557142 0.0288019 0.772665 Vertex 44235 0.45388 0.134184 0.791291 Vertex 44236 0.506053 0.18474 0.454049 Vertex 44237 0.504039 0.184319 0.453178 Vertex 44238 0.47731 0.505079 0.402303 Vertex 44239 0.500723 0.61819 0.410132 Vertex 44240 0.523122 0.0798079 0.716524 Vertex 44241 0.373208 0.390866 0.2567 Vertex 44242 0.373652 0.391079 0.255533 Vertex 44243 0.444588 0.568214 0.469786 Vertex 44244 0.490251 0.167061 0.684429 Vertex 44245 0.428034 0.404109 0.393679 Vertex 44246 0.405569 0.832714 0.394058 Vertex 44247 0.42451 0.138034 0.666554 Vertex 44248 0.425303 0.136304 0.670392 Vertex 44249 0.3566 0.154072 0.452965 Vertex 44250 0.440365 0.526092 0.444816 Vertex 44251 0.367765 0.214525 0.213234 Vertex 44252 0.391295 0.333416 0.212932 Vertex 44253 0.455847 0.746066 0.46192 Vertex 44254 0.622984 0.481175 0.224546 Vertex 44255 0.383578 0.233199 0.631841 Vertex 44256 0.535299 0.0803291 0.789515 Vertex 44257 0.352135 0.213944 0.526181 Vertex 44258 0.352686 0.215656 0.528325 Vertex 44259 0.549768 0.398998 0.439225 Vertex 44260 0.535897 0.0904154 0.733202 Vertex 44261 0.426038 0.826721 0.364066 Vertex 44262 0.552481 0.549013 0.467197 Vertex 44263 0.390828 0.39378 0.257571 Vertex 44264 0.38985 0.394201 0.260017 Vertex 44265 0.516607 0.342922 0.467701 Vertex 44266 0.417296 0.166036 0.582186 Vertex 44267 0.626289 0.499209 0.293178 Vertex 44268 0.475107 0.172012 0.498813 Vertex 44269 0.443853 0.16385 0.60821 Vertex 44270 0.442988 0.158994 0.605468 Vertex 44271 0.492342 0.654584 0.404411 Vertex 44272 0.4464 0.23282 0.780725 Vertex 44273 0.530259 0.170815 0.453913 Vertex 44274 0.531355 0.105163 0.725585 Vertex 44275 0.453353 0.61813 0.453534 Vertex 44276 0.523922 0.629099 0.431051 Vertex 44277 0.50812 0.294925 0.470319 Vertex 44278 0.526427 0.0348134 0.772629 Vertex 44279 0.365952 0.371819 0.285709 Vertex 44280 0.481178 0.23263 0.479552 Vertex 44281 0.595011 0.513465 0.234863 Vertex 44282 0.434768 0.517102 0.453682 Vertex 44283 0.480337 0.638783 0.419354 Vertex 44284 0.374149 0.361543 0.467334 Vertex 44285 0.372627 0.360074 0.462892 Vertex 44286 0.37502 0.360039 0.467014 Vertex 44287 0.497181 0.185841 0.454085 Vertex 44288 0.499035 0.186386 0.453942 Vertex 44289 0.458583 0.307955 0.422647 Vertex 44290 0.521558 0.0804357 0.671298 Vertex 44291 0.454899 0.467689 0.402966 Vertex 44292 0.354895 0.303234 0.236219 Vertex 44293 0.4464 0.555806 0.451656 Vertex 44294 0.51759 0.327423 0.559295 Vertex 44295 0.335054 0.935473 0.253608 Vertex 44296 0.653456 0.48827 0.191989 Vertex 44297 0.538018 0.654117 0.454031 Vertex 44298 0.540458 0.653412 0.459907 Vertex 44299 0.48761 0.765895 0.488957 Vertex 44300 0.665894 0.479522 0.217563 Vertex 44301 0.662411 0.478972 0.217451 Vertex 44302 0.370442 0.17062 0.478397 Vertex 44303 0.349387 0.10062 0.454718 Vertex 44304 0.389803 0.325427 0.256321 Vertex 44305 0.40474 0.477793 0.589524 Vertex 44306 0.454289 0.0822302 0.701865 Vertex 44307 0.485815 0.195104 0.78313 Vertex 44308 0.372313 0.377593 0.496609 Vertex 44309 0.598079 0.478403 0.286337 Vertex 44310 0.513166 0.047251 0.665991 Vertex 44311 0.439915 0.476336 0.415031 Vertex 44312 0.536549 0.0594102 0.710838 Vertex 44313 0.490346 0.215478 0.509604 Vertex 44314 0.439666 0.136292 0.627897 Vertex 44315 0.618548 0.461269 0.187962 Vertex 44316 0.377354 0.312865 0.250256 Vertex 44317 0.500326 0.166119 0.787536 Vertex 44318 0.346722 0.105702 0.455405 Vertex 44319 0.593631 0.442458 0.191634 Vertex 44320 0.478116 0.347086 0.42209 Vertex 44321 0.526587 0.338202 0.495342 Vertex 44322 0.448088 0.121225 0.64801 Vertex 44323 0.47628 0.473238 0.386643 Vertex 44324 0.52741 0.656817 0.518138 Vertex 44325 0.392012 0.299278 0.445597 Vertex 44326 0.524265 0.408373 0.561362 Vertex 44327 0.374676 0.181139 0.50345 Vertex 44328 0.45818 0.725893 0.468228 Vertex 44329 0.461106 0.180363 0.801336 Vertex 44330 0.359017 0.277909 0.198895 Vertex 44331 0.398018 0.326534 0.220601 Vertex 44332 0.357068 0.313415 0.553745 Vertex 44333 0.522417 0.442062 0.412703 Vertex 44334 0.482226 0.761435 0.500702 Vertex 44335 0.441253 0.11593 0.73271 Vertex 44336 0.601645 0.450981 0.391381 Vertex 44337 0.47429 0.389196 0.397855 Vertex 44338 0.539907 0.0552762 0.714095 Vertex 44339 0.44948 0.157241 0.517895 Vertex 44340 0.503009 0.0295659 0.632659 Vertex 44341 0.520321 0.0709713 0.647667 Vertex 44342 0.493444 0.0416185 0.678897 Vertex 44343 0.385811 0.444958 0.586468 Vertex 44344 0.451867 0.761311 0.457709 Vertex 44345 0.376613 0.874191 0.360216 Vertex 44346 0.687985 0.463709 0.21799 Vertex 44347 0.476434 0.556191 0.414243 Vertex 44348 0.605696 0.525139 0.215526 Vertex 44349 0.41639 0.44404 0.388906 Vertex 44350 0.387179 0.471545 0.436956 Vertex 44351 0.584777 0.471509 0.476419 Vertex 44352 0.521286 0.583092 0.554503 Vertex 44353 0.364205 0.423968 0.542919 Vertex 44354 0.460354 0.234626 0.772398 Vertex 44355 0.466963 0.0737668 0.654727 Vertex 44356 0.52539 0.393206 0.449453 Vertex 44357 0.381742 0.222467 0.590934 Vertex 44358 0.533848 0.567693 0.557157 Vertex 44359 0.491146 0.174008 0.503355 Vertex 44360 0.523312 0.136796 0.789372 Vertex 44361 0.367978 0.309145 0.482697 Vertex 44362 0.376832 0.238097 0.203627 Vertex 44363 0.44929 0.472119 0.406816 Vertex 44364 0.360308 0.348969 0.244191 Vertex 44365 0.482765 0.328654 0.629822 Vertex 44366 0.499195 0.0580243 0.758219 Vertex 44367 0.423918 0.393075 0.403132 Vertex 44368 0.387623 0.252637 0.679495 Vertex 44369 0.484204 0.181352 0.544796 Vertex 44370 0.370525 0.316626 0.252104 Vertex 44371 0.410894 0.266117 0.660708 Vertex 44372 0.461331 0.188655 0.640115 Vertex 44373 0.528535 0.669699 0.50762 Vertex 44374 0.532379 0.668088 0.501288 Vertex 44375 0.48119 0.79337 0.41461 Vertex 44376 0.629795 0.50143 0.271785 Vertex 44377 0.676833 0.454221 0.214643 Vertex 44378 0.531971 0.139396 0.443785 Vertex 44379 0.500711 0.170744 0.47867 Vertex 44380 0.417841 0.250866 0.751698 Vertex 44381 0.470393 0.213346 0.706431 Vertex 44382 0.469901 0.212896 0.704317 Vertex 44383 0.415377 0.538897 0.54601 Vertex 44384 0.523791 0.054453 0.780832 Vertex 44385 0.606839 0.516551 0.333357 Vertex 44386 0.426843 0.184088 0.486778 Vertex 44387 0.377934 0.473475 0.459954 Vertex 44388 0.491323 0.27445 0.454209 Vertex 44389 0.568348 0.443951 0.501383 Vertex 44390 0.493053 0.396789 0.416393 Vertex 44391 0.360142 0.341726 0.235544 Vertex 44392 0.399652 0.26463 0.225073 Vertex 44393 0.444659 0.246122 0.694018 Vertex 44394 0.463753 0.195934 0.662852 Vertex 44395 0.380812 0.343337 0.412555 Vertex 44396 0.540819 0.46237 0.567598 Vertex 44397 0.397147 0.212339 0.729174 Vertex 44398 0.472732 0.743448 0.486476 Vertex 44399 0.39983 0.253875 0.718401 Vertex 44400 0.399137 0.255575 0.715404 Vertex 44401 0.482137 0.205291 0.73537 Vertex 44402 0.482025 0.203035 0.729548 Vertex 44403 0.604322 0.506009 0.244132 Vertex 44404 0.496423 0.204356 0.530351 Vertex 44405 0.413091 0.264553 0.675349 Vertex 44406 0.382317 0.22236 0.601381 Vertex 44407 0.480408 0.752237 0.499405 Vertex 44408 0.517727 0.728689 0.488815 Vertex 44409 0.532373 0.581108 0.542729 Vertex 44410 0.530727 0.582269 0.54492 Vertex 44411 0.420151 0.831133 0.370445 Vertex 44412 0.380262 0.250665 0.470046 Vertex 44413 0.382352 0.910734 0.348602 Vertex 44414 0.513468 0.319462 0.469081 Vertex 44415 0.477885 0.517978 0.408314 Vertex 44416 0.553109 0.524203 0.446278 Vertex 44417 0.616576 0.520945 0.310886 Vertex 44418 0.459175 0.370765 0.407781 Vertex 44419 0.488782 0.332149 0.434522 Vertex 44420 0.526178 0.518843 0.586847 Vertex 44421 0.593294 0.526602 0.287877 Vertex 44422 0.618264 0.476443 0.329016 Vertex 44423 0.440844 0.38412 0.417192 Vertex 44424 0.392812 0.506311 0.517866 Vertex 44425 0.43594 0.551098 0.505926 Vertex 44426 0.316628 0.97782 0.241574 Vertex 44427 0.419138 0.873154 0.398613 Vertex 44428 0.42002 0.874511 0.396463 Vertex 44429 0.503927 0.277933 0.468305 Vertex 44430 0.554494 0.145994 0.416476 Vertex 44431 0.486484 0.69827 0.405003 Vertex 44432 0.555152 0.0108503 0.734677 Vertex 44433 0.510311 0.0567391 0.770331 Vertex 44434 0.496446 0.766659 0.48275 Vertex 44435 0.429745 0.154925 0.590412 Vertex 44436 0.475646 0.763052 0.495508 Vertex 44437 0.307703 0.947655 0.242865 Vertex 44438 0.572292 0.498978 0.337408 Vertex 44439 0.476712 0.0511126 0.651244 Vertex 44440 0.397011 0.385074 0.615607 Vertex 44441 0.372094 0.380116 0.555155 Vertex 44442 0.444955 0.236776 0.456773 Vertex 44443 0.392906 0.252471 0.660815 Vertex 44444 0.552001 0.475412 0.381325 Vertex 44445 0.470855 0.342987 0.416689 Vertex 44446 0.405451 0.36284 0.289861 Vertex 44447 0.368002 0.319782 0.491101 Vertex 44448 0.467662 0.390641 0.394017 Vertex 44449 0.615427 0.463626 0.350764 Vertex 44450 0.413186 0.463188 0.40408 Vertex 44451 0.563858 0.532086 0.509408 Vertex 44452 0.355499 0.131844 0.45569 Vertex 44453 0.419304 0.386886 0.387994 Vertex 44454 0.569639 0.481471 0.323235 Vertex 44455 0.40474 0.840278 0.404003 Vertex 44456 0.394269 0.185136 0.621317 Vertex 44457 0.448733 0.172284 0.607055 Vertex 44458 0.43735 0.255533 0.70851 Vertex 44459 0.370608 0.348253 0.428724 Vertex 44460 0.368629 0.349058 0.428795 Vertex 44461 0.474811 0.415943 0.617734 Vertex 44462 0.372657 0.227164 0.485184 Vertex 44463 0.388932 0.35485 0.374768 Vertex 44464 0.323209 0.926364 0.279834 Vertex 44465 0.518881 0.0833733 0.720356 Vertex 44466 0.497963 0.095805 0.807549 Vertex 44467 0.502434 0.0921862 0.807484 Vertex 44468 0.528281 0.1123 0.762389 Vertex 44469 0.498188 0.0728487 0.730098 Vertex 44470 0.321236 0.96768 0.206269 Vertex 44471 0.394132 0.356864 0.387218 Vertex 44472 0.521108 0.388414 0.461885 Vertex 44473 0.607816 0.478646 0.216071 Vertex 44474 0.514937 0.585437 0.415001 Vertex 44475 0.356417 0.195703 0.46731 Vertex 44476 0.413393 0.276452 0.643112 Vertex 44477 0.520184 0.175139 0.450187 Vertex 44478 0.353953 0.276399 0.540159 Vertex 44479 0.674837 0.449583 0.19495 Vertex 44480 0.517359 0.17489 0.466327 Vertex 44481 0.519794 0.171313 0.464171 Vertex 44482 0.519314 0.172758 0.464467 Vertex 44483 0.532427 0.397227 0.433012 Vertex 44484 0.575668 0.405276 0.379003 Vertex 44485 0.498277 0.32805 0.443051 Vertex 44486 0.596066 0.448126 0.402368 Vertex 44487 0.359283 0.261953 0.509106 Vertex 44488 0.402347 0.880546 0.397351 Vertex 44489 0.658656 0.437181 0.225606 Vertex 44490 0.454419 0.753576 0.422102 Vertex 44491 0.384917 0.382432 0.609134 Vertex 44492 0.358993 0.42902 0.507856 Vertex 44493 0.406967 0.22852 0.749987 Vertex 44494 0.485407 0.19527 0.557228 Vertex 44495 0.309486 0.957398 0.257434 Vertex 44496 0.393854 0.296761 0.196668 Vertex 44497 0.391757 0.29685 0.195175 Vertex 44498 0.449569 0.430222 0.394562 Vertex 44499 0.388701 0.196384 0.613351 Vertex 44500 0.610695 0.513548 0.349935 Vertex 44501 0.435419 0.153539 0.760464 Vertex 44502 0.50706 0.0960774 0.807383 Vertex 44503 0.401666 0.398098 0.277921 Vertex 44504 0.455734 0.466783 0.622892 Vertex 44505 0.454733 0.469691 0.6215 Vertex 44506 0.443758 0.58006 0.50149 Vertex 44507 0.414364 0.268374 0.653435 Vertex 44508 0.414317 0.820135 0.39362 Vertex 44509 0.691509 0.458977 0.20252 Vertex 44510 0.691266 0.460955 0.200772 Vertex 44511 0.55257 0.0450182 0.772759 Vertex 44512 0.57106 0.495176 0.335081 Vertex 44513 0.395554 0.34981 0.283601 Vertex 44514 0.397129 0.351084 0.281374 Vertex 44515 0.546789 0.449945 0.54893 Vertex 44516 0.646284 0.469874 0.191397 Vertex 44517 0.345679 0.268741 0.22926 Vertex 44518 0.470884 0.299237 0.632475 Vertex 44519 0.46842 0.300149 0.633061 Vertex 44520 0.474177 0.334097 0.421901 Vertex 44521 0.440667 0.249551 0.683641 Vertex 44522 0.341895 0.296755 0.219571 Vertex 44523 0.530075 0.0118098 0.739504 Vertex 44524 0.387079 0.245334 0.631841 Vertex 44525 0.464109 0.249468 0.617509 Vertex 44526 0.589266 0.411809 0.38062 Vertex 44527 0.388174 0.252092 0.677434 Vertex 44528 0.450966 0.106093 0.662527 Vertex 44529 0.473928 0.282286 0.62349 Vertex 44530 0.498626 0.714403 0.521757 Vertex 44531 0.544355 0.627784 0.470153 Vertex 44532 0.445671 0.455328 0.404678 Vertex 44533 0.406351 0.261178 0.708475 Vertex 44534 0.387991 0.909798 0.341015 Vertex 44535 0.356198 0.888441 0.322832 Vertex 44536 0.402175 0.354904 0.231706 Vertex 44537 0.457872 0.458242 0.39641 Vertex 44538 0.3626 0.236764 0.562096 Vertex 44539 0.42278 0.545963 0.528219 Vertex 44540 0.355132 0.897165 0.288404 Vertex 44541 0.446631 0.596021 0.497207 Vertex 44542 0.419156 0.538275 0.5117 Vertex 44543 0.503767 0.107011 0.643864 Vertex 44544 0.347367 0.139366 0.462104 Vertex 44545 0.549034 0.480008 0.38964 Vertex 44546 0.52266 0.316057 0.533134 Vertex 44547 0.397218 0.354294 0.295736 Vertex 44548 0.394511 0.351818 0.293847 Vertex 44549 0.376329 0.397861 0.544826 Vertex 44550 0.499497 0.295428 0.598657 Vertex 44551 0.506379 0.270808 0.561385 Vertex 44552 0.414548 0.14183 0.670801 Vertex 44553 0.337435 0.938049 0.304401 Vertex 44554 0.413393 0.271921 0.227673 Vertex 44555 0.4127 0.271299 0.229699 Vertex 44556 0.439447 0.309151 0.640868 Vertex 44557 0.501836 0.64191 0.409209 Vertex 44558 0.51839 0.362876 0.459942 Vertex 44559 0.500734 0.54248 0.387176 Vertex 44560 0.566654 0.412336 0.36502 Vertex 44561 0.383187 0.411566 0.293053 Vertex 44562 0.496831 0.409309 0.409303 Vertex 44563 0.637844 0.489165 0.239915 Vertex 44564 0.456166 0.824162 0.45091 Vertex 44565 0.621574 0.503728 0.309435 Vertex 44566 0.437226 0.477556 0.42119 Vertex 44567 0.43828 0.479315 0.421599 Vertex 44568 0.605791 0.452995 0.18747 Vertex 44569 0.499076 0.427142 0.607416 Vertex 44570 0.452038 0.594333 0.455654 Vertex 44571 0.439844 0.299 0.424548 Vertex 44572 0.524224 0.317786 0.503213 Vertex 44573 0.490932 0.38977 0.424128 Vertex 44574 0.482907 0.190206 0.473179 Vertex 44575 0.592441 0.42289 0.394627 Vertex 44576 0.503986 0.261669 0.557257 Vertex 44577 0.360385 0.198344 0.469963 Vertex 44578 0.520581 0.152396 0.749904 Vertex 44579 0.527108 0.122445 0.760227 Vertex 44580 0.457132 0.516569 0.424051 Vertex 44581 0.377223 0.417483 0.381052 Vertex 44582 0.510382 0.685596 0.520004 Vertex 44583 0.409087 0.243931 0.218647 Vertex 44584 0.425138 0.51064 0.454268 Vertex 44585 0.602444 0.51741 0.345818 Vertex 44586 0.362529 0.346553 0.398903 Vertex 44587 0.43703 0.138336 0.618219 Vertex 44588 0.490897 0.553046 0.379589 Vertex 44589 0.482173 0.0453972 0.647377 Vertex 44590 0.460573 0.216473 0.64634 Vertex 44591 0.515138 0.315672 0.561362 Vertex 44592 0.545415 0.605071 0.506767 Vertex 44593 0.357228 0.248491 0.552045 Vertex 44594 0.458595 0.192871 0.578105 Vertex 44595 0.506148 0.411264 0.594535 Vertex 44596 0.50793 0.412685 0.59444 Vertex 44597 0.507184 0.414598 0.597188 Vertex 44598 0.368564 0.361271 0.557257 Vertex 44599 0.446495 0.772534 0.416185 Vertex 44600 0.451718 0.0849784 0.700929 Vertex 44601 0.477814 0.579331 0.420781 Vertex 44602 0.501487 0.419455 0.604153 Vertex 44603 0.395613 0.890768 0.326244 Vertex 44604 0.501415 0.189051 0.499369 Vertex 44605 0.501279 0.0384322 0.677766 Vertex 44606 0.46906 0.286367 0.433746 Vertex 44607 0.480017 0.07796 0.720681 Vertex 44608 0.548139 0.502745 0.561385 Vertex 44609 0.473153 0.564661 0.569417 Vertex 44610 0.446495 0.240667 0.675349 Vertex 44611 0.349612 0.261711 0.216337 Vertex 44612 0.337618 0.263843 0.202484 Vertex 44613 0.474485 0.283239 0.436749 Vertex 44614 0.428028 0.229349 0.204966 Vertex 44615 0.405936 0.369479 0.391541 Vertex 44616 0.55931 0.52149 0.445289 Vertex 44617 0.45571 0.126052 0.783189 Vertex 44618 0.514203 0.502662 0.405987 Vertex 44619 0.495635 0.091511 0.726882 Vertex 44620 0.513148 0.28302 0.513732 Vertex 44621 0.452139 0.334559 0.41647 Vertex 44622 0.514445 0.39872 0.571679 Vertex 44623 0.495025 0.515692 0.388604 Vertex 44624 0.416899 0.230658 0.463679 Vertex 44625 0.417225 0.229408 0.464959 Vertex 44626 0.350346 0.295659 0.231783 Vertex 44627 0.505046 0.706621 0.513738 Vertex 44628 0.502458 0.41785 0.409807 Vertex 44629 0.583865 0.497486 0.39497 Vertex 44630 0.391378 0.360856 0.22656 Vertex 44631 0.460804 0.16125 0.800933 Vertex 44632 0.395542 0.286858 0.62368 Vertex 44633 0.415205 0.425881 0.377996 Vertex 44634 0.372337 0.379761 0.5531 Vertex 44635 0.476771 0.0772256 0.718952 Vertex 44636 0.497335 0.646411 0.404992 Vertex 44637 0.350062 0.110914 0.47036 Vertex 44638 0.441899 0.420189 0.401604 Vertex 44639 0.477251 0.182631 0.701563 Vertex 44640 0.451884 0.22409 0.466972 Vertex 44641 0.472608 0.518032 0.600309 Vertex 44642 0.370951 0.0977595 0.470887 Vertex 44643 0.515985 0.303086 0.485232 Vertex 44644 0.418741 0.41124 0.334619 Vertex 44645 0.418907 0.410737 0.336579 Vertex 44646 0.510809 0.439521 0.409742 Vertex 44647 0.520202 0.385962 0.511665 Vertex 44648 0.359307 0.271649 0.501288 Vertex 44649 0.527611 0.145774 0.444721 Vertex 44650 0.525343 0.146319 0.444679 Vertex 44651 0.511916 0.137234 0.682723 Vertex 44652 0.38054 0.36021 0.223622 Vertex 44653 0.455669 0.521182 0.585769 Vertex 44654 0.492751 0.341412 0.621512 Vertex 44655 0.524431 0.139283 0.742583 Vertex 44656 0.459039 0.795609 0.378523 Vertex 44657 0.452802 0.488252 0.411329 Vertex 44658 0.446127 0.48198 0.414622 Vertex 44659 0.368055 0.152562 0.472018 Vertex 44660 0.410503 0.1711 0.714759 Vertex 44661 0.558717 0.408788 0.495058 Vertex 44662 0.486781 0.0712674 0.698128 Vertex 44663 0.463191 0.203834 0.643302 Vertex 44664 0.432547 0.843351 0.442085 Vertex 44665 0.442035 0.45415 0.406922 Vertex 44666 0.367291 0.286858 0.580054 Vertex 44667 0.545628 0.571081 0.536481 Vertex 44668 0.371994 0.333464 0.262386 Vertex 44669 0.502843 0.30526 0.594475 Vertex 44670 0.378888 0.480654 0.519921 Vertex 44671 0.560536 0.550731 0.513678 Vertex 44672 0.364744 0.354525 0.260822 Vertex 44673 0.320182 0.243155 0.223729 Vertex 44674 0.460875 0.107532 0.656107 Vertex 44675 0.401654 0.840917 0.397541 Vertex 44676 0.30688 0.957073 0.253135 Vertex 44677 0.518283 0.151377 0.732355 Vertex 44678 0.416479 0.155606 0.706455 Vertex 44679 0.37428 0.476585 0.493855 Vertex 44680 0.505348 0.0206701 0.638309 Vertex 44681 0.439956 0.141759 0.607055 Vertex 44682 0.550041 0.0430578 0.723518 Vertex 44683 0.35936 0.380857 0.360329 Vertex 44684 0.477997 0.489395 0.397458 Vertex 44685 0.451701 0.619931 0.455601 Vertex 44686 0.483778 0.484107 0.390126 Vertex 44687 0.663092 0.494554 0.210462 Vertex 44688 0.45571 0.716903 0.457834 Vertex 44689 0.371994 0.359286 0.477888 Vertex 44690 0.459459 0.111198 0.646263 Vertex 44691 0.390721 0.355395 0.314724 Vertex 44692 0.627284 0.492463 0.258169 Vertex 44693 0.392036 0.855357 0.366269 Vertex 44694 0.392652 0.853829 0.36698 Vertex 44695 0.398568 0.269665 0.446059 Vertex 44696 0.620017 0.496834 0.325592 Vertex 44697 0.454514 0.166907 0.800661 Vertex 44698 0.44836 0.345978 0.414634 Vertex 44699 0.450937 0.161416 0.799003 Vertex 44700 0.418409 0.81808 0.391518 Vertex 44701 0.435396 0.483923 0.428481 Vertex 44702 0.398492 0.426254 0.366613 Vertex 44703 0.372023 0.171437 0.474873 Vertex 44704 0.369263 0.354063 0.441155 Vertex 44705 0.33551 0.91177 0.287753 Vertex 44706 0.313963 0.937676 0.252566 Vertex 44707 0.491418 0.386809 0.429991 Vertex 44708 0.428833 0.55307 0.524096 Vertex 44709 0.390176 0.468465 0.583015 Vertex 44710 0.478513 0.592118 0.426811 Vertex 44711 0.370341 0.884935 0.35822 Vertex 44712 0.509334 0.733279 0.495194 Vertex 44713 0.510347 0.731117 0.495152 Vertex 44714 0.46155 0.50146 0.412377 Vertex 44715 0.424978 0.526075 0.571869 Vertex 44716 0.355108 0.401657 0.450957 Vertex 44717 0.520214 0.376231 0.493002 Vertex 44718 0.435781 0.535474 0.474358 Vertex 44719 0.588437 0.458219 0.455962 Vertex 44720 0.397893 0.33222 0.204634 Vertex 44721 0.390561 0.308417 0.447884 Vertex 44722 0.485543 0.708321 0.505535 Vertex 44723 0.367184 0.358516 0.559224 Vertex 44724 0.511816 0.0312243 0.753984 Vertex 44725 0.523738 0.145626 0.45813 Vertex 44726 0.401323 0.168364 0.621862 Vertex 44727 0.478471 0.193487 0.711549 Vertex 44728 0.478684 0.196994 0.712165 Vertex 44729 0.509239 0.0735535 0.730015 Vertex 44730 0.451008 0.292775 0.426674 Vertex 44731 0.441762 0.244582 0.44985 Vertex 44732 0.36985 0.405513 0.298076 Vertex 44733 0.370501 0.206203 0.217291 Vertex 44734 0.522346 0.669658 0.515882 Vertex 44735 0.433441 0.555463 0.514004 Vertex 44736 0.400659 0.33007 0.201323 Vertex 44737 0.450919 0.570891 0.454215 Vertex 44738 0.472537 0.480411 0.396587 Vertex 44739 0.458103 0.567752 0.440995 Vertex 44740 0.495256 0.401397 0.416801 Vertex 44741 0.421643 0.404293 0.37767 Vertex 44742 0.464198 0.663243 0.436749 Vertex 44743 0.554358 0.526075 0.450596 Vertex 44744 0.505781 0.311029 0.456199 Vertex 44745 0.46001 0.473422 0.620227 Vertex 44746 0.369388 0.212339 0.229367 Vertex 44747 0.462581 0.242882 0.455885 Vertex 44748 0.521055 0.10508 0.795141 Vertex 44749 0.434383 0.500246 0.589192 Vertex 44750 0.433494 0.496461 0.590418 Vertex 44751 0.399978 0.363486 0.36027 Vertex 44752 0.398752 0.362106 0.358203 Vertex 44753 0.398225 0.36303 0.362378 Vertex 44754 0.474017 0.132922 0.644711 Vertex 44755 0.528518 0.0674591 0.719959 Vertex 44756 0.484577 0.223367 0.580054 Vertex 44757 0.507273 0.637622 0.41586 Vertex 44758 0.402039 0.331722 0.22743 Vertex 44759 0.359728 0.229023 0.213287 Vertex 44760 0.644027 0.421984 0.203165 Vertex 44761 0.39617 0.317857 0.205422 Vertex 44762 0.357252 0.419887 0.513051 Vertex 44763 0.44704 0.586308 0.506204 Vertex 44764 0.433897 0.378879 0.648336 Vertex 44765 0.403857 0.248272 0.203165 Vertex 44766 0.530685 0.39959 0.443282 Vertex 44767 0.545119 0.125726 0.445325 Vertex 44768 0.362778 0.345439 0.557808 Vertex 44769 0.506977 0.085849 0.79151 Vertex 44770 0.410248 0.227282 0.762436 Vertex 44771 0.509932 0.194518 0.46795 Vertex 44772 0.380167 0.227709 0.209911 Vertex 44773 0.339614 0.0911853 0.457674 Vertex 44774 0.595698 0.436482 0.335412 Vertex 44775 0.456255 0.686004 0.470271 Vertex 44776 0.456439 0.687236 0.47055 Vertex 44777 0.463191 0.507957 0.414569 Vertex 44778 0.36815 0.16484 0.459024 Vertex 44779 0.49849 0.253342 0.478486 Vertex 44780 0.565736 0.414089 0.362881 Vertex 44781 0.358863 0.275978 0.499233 Vertex 44782 0.363447 0.297223 0.48933 Vertex 44783 0.533611 0.163768 0.453208 Vertex 44784 0.393682 0.254106 0.671227 Vertex 44785 0.55495 0.544393 0.474589 Vertex 44786 0.551196 0.53282 0.445781 Vertex 44787 0.358721 0.286532 0.503367 Vertex 44788 0.517247 0.384902 0.544826 Vertex 44789 0.400772 0.288025 0.201347 Vertex 44790 0.402637 0.291987 0.208063 Vertex 44791 0.488048 0.574178 0.39561 Vertex 44792 0.478329 0.531281 0.405608 Vertex 44793 0.413375 0.870726 0.407444 Vertex 44794 0.414293 0.160557 0.617372 Vertex 44795 0.482469 0.161712 0.795787 Vertex 44796 0.356518 0.25076 0.516284 Vertex 44797 0.388701 0.89848 0.320055 Vertex 44798 0.390697 0.894944 0.321293 Vertex 44799 0.510785 0.569499 0.400407 Vertex 44800 0.42804 0.2593 0.739592 Vertex 44801 0.392847 0.860397 0.335602 Vertex 44802 0.398936 0.188358 0.479137 Vertex 44803 0.508286 0.197432 0.469951 Vertex 44804 0.486508 0.188684 0.78804 Vertex 44805 0.490725 0.733042 0.513169 Vertex 44806 0.409768 0.176987 0.486476 Vertex 44807 0.52481 0.674473 0.435008 Vertex 44808 0.481794 0.581588 0.414338 Vertex 44809 0.480307 0.580344 0.416511 Vertex 44810 0.512337 0.106383 0.700775 Vertex 44811 0.439707 0.561818 0.482205 Vertex 44812 0.457055 0.67866 0.453368 Vertex 44813 0.54147 0.00374905 0.735458 Vertex 44814 0.684218 0.466978 0.194334 Vertex 44815 0.505141 0.331539 0.453161 Vertex 44816 0.379687 0.319782 0.613191 Vertex 44817 0.464298 0.208051 0.647975 Vertex 44818 0.497797 0.476496 0.606759 Vertex 44819 0.641433 0.464775 0.18519 Vertex 44820 0.469386 0.564021 0.427545 Vertex 44821 0.467076 0.564619 0.42867 Vertex 44822 0.400482 0.844347 0.366595 Vertex 44823 0.389116 0.387905 0.239589 Vertex 44824 0.552113 0.016157 0.772641 Vertex 44825 0.485436 0.205807 0.756188 Vertex 44826 0.653048 0.415581 0.22085 Vertex 44827 0.46646 0.606765 0.435813 Vertex 44828 0.602213 0.51 0.225938 Vertex 44829 0.604446 0.508259 0.225286 Vertex 44830 0.428585 0.165752 0.770686 Vertex 44831 0.459773 0.0815491 0.739172 Vertex 44832 0.459483 0.0805719 0.737336 Vertex 44833 0.489908 0.214566 0.551885 Vertex 44834 0.517182 0.104405 0.717116 Vertex 44835 0.36645 0.38553 0.287764 Vertex 44836 0.399285 0.241947 0.722979 Vertex 44837 0.504543 0.67009 0.540733 Vertex 44838 0.371863 0.369118 0.515609 Vertex 44839 0.495896 0.289346 0.602826 Vertex 44840 0.396975 0.443098 0.388888 Vertex 44841 0.44152 0.128024 0.664795 Vertex 44842 0.594543 0.42318 0.385855 Vertex 44843 0.396093 0.446492 0.394982 Vertex 44844 0.542827 0.143518 0.44982 Vertex 44845 0.35605 0.252187 0.548521 Vertex 44846 0.476677 0.153296 0.799411 Vertex 44847 0.445914 0.848972 0.390493 Vertex 44848 0.419535 0.507702 0.453024 Vertex 44849 0.489564 0.688758 0.405661 Vertex 44850 0.431469 0.411335 0.63244 Vertex 44851 0.502517 0.718188 0.509598 Vertex 44852 0.469599 0.482182 0.400869 Vertex 44853 0.375802 0.219328 0.21992 Vertex 44854 0.484358 0.710625 0.404506 Vertex 44855 0.356494 0.39731 0.426811 Vertex 44856 0.441537 0.562807 0.473635 Vertex 44857 0.518787 0.308742 0.542705 Vertex 44858 0.518425 0.386673 0.540621 Vertex 44859 0.454064 0.47771 0.617917 Vertex 44860 0.438872 0.253804 0.708522 Vertex 44861 0.515251 0.544843 0.580652 Vertex 44862 0.474461 0.562404 0.42055 Vertex 44863 0.339845 0.906452 0.299912 Vertex 44864 0.405083 0.424104 0.364179 Vertex 44865 0.418925 0.371878 0.430293 Vertex 44866 0.488889 0.209591 0.551015 Vertex 44867 0.639609 0.511961 0.208424 Vertex 44868 0.353189 0.294202 0.530102 Vertex 44869 0.568857 0.51356 0.432846 Vertex 44870 0.374173 0.366133 0.588458 Vertex 44871 0.51778 0.468175 0.599456 Vertex 44872 0.582982 0.484219 0.304129 Vertex 44873 0.381636 0.435381 0.584359 Vertex 44874 0.644726 0.431614 0.20782 Vertex 44875 0.48806 0.427883 0.611574 Vertex 44876 0.385379 0.343698 0.279088 Vertex 44877 0.435147 0.158017 0.575019 Vertex 44878 0.491951 0.393827 0.418241 Vertex 44879 0.48681 0.786826 0.421137 Vertex 44880 0.500207 0.334802 0.445923 Vertex 44881 0.456498 0.741203 0.428593 Vertex 44882 0.452086 0.379429 0.408326 Vertex 44883 0.516358 0.366867 0.470182 Vertex 44884 0.502695 0.0280438 0.668828 Vertex 44885 0.506438 0.0285295 0.669255 Vertex 44886 0.329451 0.269108 0.207027 Vertex 44887 0.458601 0.400064 0.626766 Vertex 44888 0.516447 0.401793 0.442589 Vertex 44889 0.498573 0.145923 0.793779 Vertex 44890 0.381268 0.229556 0.222751 Vertex 44891 0.368505 0.357367 0.528864 Vertex 44892 0.432126 0.257997 0.689866 Vertex 44893 0.484631 0.309329 0.627032 Vertex 44894 0.362097 0.369805 0.472427 Vertex 44895 0.423112 0.256605 0.216343 Vertex 44896 0.402886 0.837275 0.393365 Vertex 44897 0.332756 0.914258 0.28751 Vertex 44898 0.363666 0.31447 0.499369 Vertex 44899 0.361546 0.312728 0.503491 Vertex 44900 0.355191 0.240205 0.531808 Vertex 44901 0.611186 0.454955 0.369124 Vertex 44902 0.451156 0.454973 0.626949 Vertex 44903 0.414044 0.239607 0.762347 Vertex 44904 0.437326 0.532128 0.459859 Vertex 44905 0.420607 0.407213 0.335803 Vertex 44906 0.390194 0.0743116 0.470407 Vertex 44907 0.36443 0.428167 0.438928 Vertex 44908 0.478104 0.188643 0.706639 Vertex 44909 0.571877 0.461168 0.509604 Vertex 44910 0.363927 0.212268 0.220655 Vertex 44911 0.402223 0.185273 0.56347 Vertex 44912 0.382897 0.414847 0.578312 Vertex 44913 0.413008 0.416955 0.610567 Vertex 44914 0.409135 0.428037 0.606688 Vertex 44915 0.46813 0.184645 0.679886 Vertex 44916 0.503826 0.550156 0.392074 Vertex 44917 0.488048 0.38123 0.425502 Vertex 44918 0.408862 0.378328 0.372678 Vertex 44919 0.568632 0.499446 0.370581 Vertex 44920 0.546327 0.61845 0.481145 Vertex 44921 0.421187 0.28045 0.433965 Vertex 44922 0.55087 0.0370463 0.79051 Vertex 44923 0.475462 0.535438 0.409522 Vertex 44924 0.397159 0.198996 0.720954 Vertex 44925 0.545273 0.612824 0.474044 Vertex 44926 0.494071 0.734765 0.509692 Vertex 44927 0.479123 0.669196 0.516213 Vertex 44928 0.551041 0.422529 0.528266 Vertex 44929 0.549543 0.416434 0.526169 Vertex 44930 0.445825 0.537517 0.443649 Vertex 44931 0.447318 0.536096 0.441659 Vertex 44932 0.447768 0.537126 0.441511 Vertex 44933 0.353189 0.369296 0.43701 Vertex 44934 0.552516 0.558999 0.528313 Vertex 44935 0.400742 0.185883 0.571756 Vertex 44936 0.530306 0.0935721 0.719213 Vertex 44937 0.542845 0.12193 0.443169 Vertex 44938 0.380244 0.222864 0.480192 Vertex 44939 0.402347 0.258678 0.708173 Vertex 44940 0.38542 0.335039 0.26883 Vertex 44941 0.561104 0.492191 0.383161 Vertex 44942 0.53874 0.64451 0.505517 Vertex 44943 0.373356 0.357456 0.345842 Vertex 44944 0.508191 0.168446 0.786352 Vertex 44945 0.519018 0.643746 0.532672 Vertex 44946 0.459661 0.761329 0.472249 Vertex 44947 0.510311 0.104807 0.797623 Vertex 44948 0.494332 0.305064 0.445544 Vertex 44949 0.473384 0.619416 0.428724 Vertex 44950 0.524336 0.0479795 0.778528 Vertex 44951 0.598571 0.451301 0.21119 Vertex 44952 0.435396 0.171615 0.785055 Vertex 44953 0.463433 0.805618 0.391476 Vertex 44954 0.461698 0.806631 0.389907 Vertex 44955 0.62055 0.482614 0.295724 Vertex 44956 0.37515 0.317164 0.471006 Vertex 44957 0.426944 0.838714 0.436589 Vertex 44958 0.488208 0.692874 0.513951 Vertex 44959 0.560216 0.448784 0.522029 Vertex 44960 0.452939 0.398021 0.630562 Vertex 44961 0.434987 0.407384 0.641312 Vertex 44962 0.56904 0.415943 0.472249 Vertex 44963 0.505242 0.565715 0.396427 Vertex 44964 0.356654 0.287225 0.513732 Vertex 44965 0.355256 0.288665 0.517907 Vertex 44966 0.417805 0.228076 0.465776 Vertex 44967 0.49342 0.539146 0.587558 Vertex 44968 0.326294 0.936509 0.238559 Vertex 44969 0.454277 0.130701 0.806394 Vertex 44970 0.522891 0.443797 0.592485 Vertex 44971 0.376489 0.883377 0.36634 Vertex 44972 0.493455 0.135451 0.796024 Vertex 44973 0.371934 0.167996 0.465136 Vertex 44974 0.360018 0.270239 0.225091 Vertex 44975 0.493923 0.109172 0.643622 Vertex 44976 0.367107 0.243949 0.577418 Vertex 44977 0.64045 0.484865 0.233418 Vertex 44978 0.641492 0.485925 0.233821 Vertex 44979 0.378816 0.256623 0.233223 Vertex 44980 0.431925 0.259804 0.72719 Vertex 44981 0.371336 0.169791 0.474541 Vertex 44982 0.631175 0.512672 0.279621 Vertex 44983 0.554175 0.556541 0.466007 Vertex 44984 0.552753 0.515319 0.434279 Vertex 44985 0.507771 0.0664286 0.635324 Vertex 44986 0.448005 0.381236 0.639055 Vertex 44987 0.530235 0.637948 0.439349 Vertex 44988 0.617991 0.540561 0.267148 Vertex 44989 0.490796 0.509171 0.391731 Vertex 44990 0.376086 0.869263 0.343976 Vertex 44991 0.420062 0.150696 0.631759 Vertex 44992 0.501309 0.112098 0.796201 Vertex 44993 0.450433 0.246247 0.756188 Vertex 44994 0.418024 0.145692 0.687828 Vertex 44995 0.547429 0.583536 0.490325 Vertex 44996 0.496073 0.180902 0.734404 Vertex 44997 0.504371 0.676113 0.538761 Vertex 44998 0.459625 0.451254 0.391133 Vertex 44999 0.414412 0.487074 0.427533 Vertex 45000 0.462545 0.343751 0.633535 Vertex 45001 0.493023 0.229681 0.543108 Vertex 45002 0.527392 0.0558744 0.791303 Vertex 45003 0.601935 0.456205 0.392317 Vertex 45004 0.355819 0.332238 0.238038 Vertex 45005 0.362067 0.310294 0.243315 Vertex 45006 0.396276 0.501898 0.476561 Vertex 45007 0.344418 0.0937617 0.460422 Vertex 45008 0.382186 0.260798 0.602737 Vertex 45009 0.656808 0.456797 0.213068 Vertex 45010 0.529524 0.554296 0.424862 Vertex 45011 0.383655 0.493654 0.484722 Vertex 45012 0.608864 0.454926 0.324953 Vertex 45013 0.482108 0.641371 0.416215 Vertex 45014 0.38773 0.254757 0.218451 Vertex 45015 0.375855 0.389634 0.243244 Vertex 45016 0.60412 0.478924 0.197616 Vertex 45017 0.366408 0.415321 0.31778 Vertex 45018 0.448751 0.311976 0.421587 Vertex 45019 0.372076 0.376042 0.537867 Vertex 45020 0.454597 0.444561 0.624699 Vertex 45021 0.599921 0.459445 0.207495 Vertex 45022 0.533066 0.434605 0.575837 Vertex 45023 0.414702 0.264921 0.679477 Vertex 45024 0.414945 0.264826 0.681568 Vertex 45025 0.392747 0.321304 0.623585 Vertex 45026 0.626283 0.490645 0.279076 Vertex 45027 0.525479 0.553348 0.414734 Vertex 45028 0.473727 0.818666 0.430293 Vertex 45029 0.474236 0.817588 0.434315 Vertex 45030 0.453679 0.233021 0.633867 Vertex 45031 0.529856 0.55076 0.57178 Vertex 45032 0.338442 0.25137 0.225878 Vertex 45033 0.550532 0.547781 0.450324 Vertex 45034 0.549306 0.547734 0.448393 Vertex 45035 0.586844 0.51677 0.356248 Vertex 45036 0.588532 0.516746 0.354223 Vertex 45037 0.506219 0.304514 0.457241 Vertex 45038 0.454182 0.650634 0.482721 Vertex 45039 0.505159 0.0533395 0.679768 Vertex 45040 0.50305 0.0530671 0.679685 Vertex 45041 0.491785 0.768353 0.485007 Vertex 45042 0.461295 0.232956 0.762424 Vertex 45043 0.531325 0.0107437 0.735233 Vertex 45044 0.522293 0.314529 0.507258 Vertex 45045 0.489138 0.0399839 0.670694 Vertex 45046 0.397224 0.325083 0.445378 Vertex 45047 0.507036 0.697127 0.515882 Vertex 45048 0.540043 0.00443016 0.739456 Vertex 45049 0.543437 0.003293 0.741606 Vertex 45050 0.467745 0.189063 0.684802 Vertex 45051 0.45253 0.232672 0.662912 Vertex 45052 0.451867 0.23433 0.660845 Vertex 45053 0.395477 0.350438 0.287764 Vertex 45054 0.499882 0.553147 0.386797 Vertex 45055 0.488919 0.658837 0.527768 Vertex 45056 0.448212 0.543819 0.441132 Vertex 45057 0.495783 0.625161 0.553011 Vertex 45058 0.364957 0.392293 0.513584 Vertex 45059 0.394689 0.509213 0.51372 Vertex 45060 0.516222 0.0841077 0.650367 Vertex 45061 0.328598 0.948532 0.237552 Vertex 45062 0.543307 0.483787 0.398643 Vertex 45063 0.498786 0.0453143 0.680709 Vertex 45064 0.50064 0.0469726 0.679726 Vertex 45065 0.382785 0.22791 0.679495 Vertex 45066 0.308171 0.983618 0.236326 Vertex 45067 0.533339 0.125383 0.783029 Vertex 45068 0.400866 0.179765 0.704388 Vertex 45069 0.394819 0.874215 0.393117 Vertex 45070 0.496073 0.393502 0.434563 Vertex 45071 0.602296 0.466475 0.204421 Vertex 45072 0.45112 0.240099 0.706455 Vertex 45073 0.416573 0.503024 0.449317 Vertex 45074 0.413464 0.49135 0.434753 Vertex 45075 0.420346 0.137341 0.681947 Vertex 45076 0.409354 0.372879 0.26463 Vertex 45077 0.454597 0.574747 0.447356 Vertex 45078 0.453614 0.179818 0.573823 Vertex 45079 0.404236 0.354009 0.627251 Vertex 45080 0.487201 0.725461 0.510006 Vertex 45081 0.431167 0.195785 0.792837 Vertex 45082 0.469107 0.234478 0.604917 Vertex 45083 0.484631 0.568576 0.398003 Vertex 45084 0.548447 0.0365014 0.716287 Vertex 45085 0.382944 0.345315 0.453658 Vertex 45086 0.413132 0.259573 0.729222 Vertex 45087 0.579826 0.415996 0.422511 Vertex 45088 0.488184 0.568463 0.393502 Vertex 45089 0.602391 0.438822 0.194352 Vertex 45090 0.510092 0.170051 0.779091 Vertex 45091 0.367403 0.272413 0.579669 Vertex 45092 0.444226 0.491338 0.595808 Vertex 45093 0.471536 0.790308 0.396558 Vertex 45094 0.417776 0.4053 0.372091 Vertex 45095 0.418937 0.404174 0.373832 Vertex 45096 0.363009 0.392412 0.304372 Vertex 45097 0.418806 0.403096 0.35886 Vertex 45098 0.600413 0.523694 0.264702 Vertex 45099 0.468379 0.19633 0.577987 Vertex 45100 0.5276 0.13201 0.770657 Vertex 45101 0.522482 0.138359 0.706218 Vertex 45102 0.372864 0.242503 0.236142 Vertex 45103 0.509453 0.0329655 0.670872 Vertex 45104 0.631128 0.521449 0.257636 Vertex 45105 0.517845 0.376746 0.443673 Vertex 45106 0.436077 0.306433 0.642289 Vertex 45107 0.517531 0.035607 0.629567 Vertex 45108 0.494658 0.186167 0.532364 Vertex 45109 0.40262 0.324325 0.215271 Vertex 45110 0.52237 0.372642 0.499239 Vertex 45111 0.554956 0.54004 0.45903 Vertex 45112 0.358075 0.384025 0.379015 Vertex 45113 0.484358 0.176442 0.478729 Vertex 45114 0.382133 0.227448 0.614926 Vertex 45115 0.371443 0.371084 0.513868 Vertex 45116 0.361913 0.370368 0.360317 Vertex 45117 0.361747 0.343195 0.544932 Vertex 45118 0.352662 0.892824 0.317159 Vertex 45119 0.516974 0.360536 0.451875 Vertex 45120 0.531491 0.540176 0.424471 Vertex 45121 0.4966 0.290175 0.450312 Vertex 45122 0.490873 0.546993 0.380632 Vertex 45123 0.51518 0.160895 0.79093 Vertex 45124 0.489665 0.649242 0.404245 Vertex 45125 0.359283 0.20782 0.477704 Vertex 45126 0.497364 0.536919 0.382539 Vertex 45127 0.372574 0.0805719 0.46757 Vertex 45128 0.441857 0.144738 0.607665 Vertex 45129 0.407654 0.225873 0.467476 Vertex 45130 0.493047 0.231499 0.56347 Vertex 45131 0.493645 0.234206 0.563405 Vertex 45132 0.357205 0.400674 0.429363 Vertex 45133 0.431658 0.79337 0.411809 Vertex 45134 0.509684 0.145828 0.791356 Vertex 45135 0.418528 0.836552 0.355419 Vertex 45136 0.365011 0.408575 0.308577 Vertex 45137 0.664016 0.420734 0.217747 Vertex 45138 0.453685 0.177502 0.613221 Vertex 45139 0.429662 0.86671 0.395788 Vertex 45140 0.487272 0.759279 0.494459 Vertex 45141 0.339318 0.101355 0.452634 Vertex 45142 0.381683 0.234046 0.219215 Vertex 45143 0.522921 0.404541 0.557228 Vertex 45144 0.570189 0.409108 0.368976 Vertex 45145 0.350086 0.174636 0.472575 Vertex 45146 0.516909 0.101893 0.687728 Vertex 45147 0.402928 0.84851 0.357906 Vertex 45148 0.394198 0.215845 0.72093 Vertex 45149 0.450925 0.191012 0.594558 Vertex 45150 0.505224 0.768146 0.463857 Vertex 45151 0.393203 0.366589 0.619777 Vertex 45152 0.413067 0.164028 0.617378 Vertex 45153 0.459667 0.101301 0.661526 Vertex 45154 0.603451 0.491729 0.387395 Vertex 45155 0.598352 0.455388 0.185948 Vertex 45156 0.418232 0.194968 0.770603 Vertex 45157 0.564865 0.424868 0.495099 Vertex 45158 0.5761 0.519832 0.453711 Vertex 45159 0.429017 0.170892 0.50541 Vertex 45160 0.500071 0.419478 0.404038 Vertex 45161 0.552842 0.448227 0.366814 Vertex 45162 0.457961 0.380324 0.403689 Vertex 45163 0.524798 0.563304 0.418501 Vertex 45164 0.624601 0.489715 0.241686 Vertex 45165 0.517247 0.379471 0.53455 Vertex 45166 0.347568 0.289891 0.232654 Vertex 45167 0.636642 0.447528 0.204202 Vertex 45168 0.355339 0.231866 0.541219 Vertex 45169 0.540872 0.0530434 0.713912 Vertex 45170 0.644395 0.493849 0.235651 Vertex 45171 0.352869 0.113768 0.455737 Vertex 45172 0.526486 0.643841 0.526341 Vertex 45173 0.377324 0.300664 0.461938 Vertex 45174 0.511561 0.283565 0.544796 Vertex 45175 0.439707 0.131288 0.658718 Vertex 45176 0.410657 0.376504 0.364475 Vertex 45177 0.625679 0.495893 0.292745 Vertex 45178 0.390585 0.499885 0.485007 Vertex 45179 0.390644 0.50072 0.486482 Vertex 45180 0.390703 0.500246 0.485605 Vertex 45181 0.490139 0.691252 0.518085 Vertex 45182 0.375648 0.350065 0.492985 Vertex 45183 0.427939 0.107556 0.686585 Vertex 45184 0.513006 0.397428 0.575837 Vertex 45185 0.405528 0.893108 0.354874 Vertex 45186 0.519817 0.374632 0.54893 Vertex 45187 0.399457 0.889175 0.382716 Vertex 45188 0.397745 0.505517 0.486517 Vertex 45189 0.522731 0.323958 0.540692 Vertex 45190 0.407583 0.374981 0.262794 Vertex 45191 0.51608 0.340666 0.461435 Vertex 45192 0.510459 0.379749 0.577957 Vertex 45193 0.361037 0.248882 0.498315 Vertex 45194 0.436408 0.261302 0.439077 Vertex 45195 0.530916 0.0969718 0.758166 Vertex 45196 0.452589 0.155322 0.647382 Vertex 45197 0.695975 0.446373 0.204148 Vertex 45198 0.685587 0.452557 0.198433 Vertex 45199 0.471317 0.643562 0.519773 Vertex 45200 0.620052 0.489093 0.185077 Vertex 45201 0.48543 0.600759 0.414284 Vertex 45202 0.602563 0.435416 0.375941 Vertex 45203 0.616209 0.478948 0.22297 Vertex 45204 0.418024 0.221206 0.468986 Vertex 45205 0.413926 0.155813 0.691956 Vertex 45206 0.385183 0.242071 0.627737 Vertex 45207 0.608687 0.488104 0.192149 Vertex 45208 0.503252 0.0332439 0.630698 Vertex 45209 0.492709 0.210077 0.51372 Vertex 45210 0.519296 0.383285 0.505464 Vertex 45211 0.445529 0.490509 0.420414 Vertex 45212 0.412659 0.874511 0.344539 Vertex 45213 0.530508 0.116434 0.796989 Vertex 45214 0.548021 0.60057 0.482312 Vertex 45215 0.371235 0.341921 0.268901 Vertex 45216 0.504217 0.255261 0.544867 Vertex 45217 0.496097 0.72263 0.518582 Vertex 45218 0.337684 0.101218 0.462062 Vertex 45219 0.481243 0.548669 0.397541 Vertex 45220 0.509974 0.384902 0.57586 Vertex 45221 0.588082 0.453321 0.455192 Vertex 45222 0.376282 0.0845993 0.477704 Vertex 45223 0.398231 0.316412 0.227703 Vertex 45224 0.356577 0.297999 0.197325 Vertex 45225 0.35926 0.324426 0.216604 Vertex 45226 0.4084 0.527123 0.528313 Vertex 45227 0.62116 0.456004 0.208495 Vertex 45228 0.401287 0.296429 0.233667 Vertex 45229 0.397088 0.258335 0.690849 Vertex 45230 0.493598 0.249551 0.586308 Vertex 45231 0.481894 0.807342 0.435707 Vertex 45232 0.536004 0.473126 0.401592 Vertex 45233 0.352952 0.122368 0.47421 Vertex 45234 0.414767 0.82216 0.389717 Vertex 45235 0.385858 0.378103 0.232435 Vertex 45236 0.499852 0.200802 0.519933 Vertex 45237 0.450072 0.246217 0.739622 Vertex 45238 0.635066 0.449027 0.198024 Vertex 45239 0.430456 0.542504 0.499547 Vertex 45240 0.540168 0.0612581 0.801532 Vertex 45241 0.369239 0.381366 0.23998 Vertex 45242 0.388624 0.408764 0.590507 Vertex 45243 0.479069 0.19222 0.479007 Vertex 45244 0.521422 0.0941229 0.714853 Vertex 45245 0.521635 0.594979 0.552045 Vertex 45246 0.445731 0.562321 0.458112 Vertex 45247 0.404077 0.435618 0.603644 Vertex 45248 0.623778 0.53901 0.283619 Vertex 45249 0.530999 0.157389 0.45922 Vertex 45250 0.401885 0.493909 0.445224 Vertex 45251 0.641794 0.438739 0.201163 Vertex 45252 0.593063 0.431176 0.400082 Vertex 45253 0.30807 0.962865 0.251968 Vertex 45254 0.475658 0.630811 0.42549 Vertex 45255 0.473774 0.629076 0.427391 Vertex 45256 0.365603 0.315802 0.247621 Vertex 45257 0.393274 0.368662 0.229148 Vertex 45258 0.392681 0.370409 0.22961 Vertex 45259 0.447211 0.594564 0.501116 Vertex 45260 0.359064 0.234247 0.498605 Vertex 45261 0.52439 0.358303 0.522029 Vertex 45262 0.466963 0.795141 0.480186 Vertex 45263 0.603688 0.476141 0.19498 Vertex 45264 0.388245 0.394212 0.258749 Vertex 45265 0.3893 0.393893 0.257873 Vertex 45266 0.519794 0.147462 0.791966 Vertex 45267 0.463546 0.33264 0.416049 Vertex 45268 0.583628 0.511209 0.33742 Vertex 45269 0.374001 0.340073 0.410991 Vertex 45270 0.684929 0.468275 0.217664 Vertex 45271 0.383679 0.263434 0.227377 Vertex 45272 0.366326 0.222526 0.49238 Vertex 45273 0.365763 0.350716 0.235675 Vertex 45274 0.503672 0.614707 0.410695 Vertex 45275 0.370377 0.876276 0.341897 Vertex 45276 0.371259 0.87454 0.34137 Vertex 45277 0.555584 0.477544 0.35623 Vertex 45278 0.523856 0.0538844 0.665684 Vertex 45279 0.527611 0.662373 0.437158 Vertex 45280 0.530158 0.662142 0.441635 Vertex 45281 0.529015 0.664025 0.439947 Vertex 45282 0.418735 0.406585 0.350888 Vertex 45283 0.489422 0.533342 0.387437 Vertex 45284 0.488249 0.531766 0.389137 Vertex 45285 0.491377 0.445177 0.383451 Vertex 45286 0.492129 0.701871 0.52165 Vertex 45287 0.378218 0.243688 0.596921 Vertex 45288 0.511679 0.0294889 0.723868 Vertex 45289 0.635256 0.512144 0.202922 Vertex 45290 0.627154 0.458041 0.20798 Vertex 45291 0.601011 0.484598 0.275753 Vertex 45292 0.555827 0.537043 0.46481 Vertex 45293 0.418279 0.265015 0.704299 Vertex 45294 0.437498 0.558922 0.513874 Vertex 45295 0.439162 0.560325 0.509639 Vertex 45296 0.419108 0.387437 0.354205 Vertex 45297 0.458399 0.162311 0.801289 Vertex 45298 0.384804 0.208703 0.683647 Vertex 45299 0.504217 0.410743 0.596542 Vertex 45300 0.521926 0.0681639 0.723121 Vertex 45301 0.615936 0.479866 0.279023 Vertex 45302 0.393522 0.315678 0.246146 Vertex 45303 0.530727 0.548966 0.423832 Vertex 45304 0.432944 0.289144 0.428552 Vertex 45305 0.4966 0.169578 0.460777 Vertex 45306 0.419505 0.522758 0.569742 Vertex 45307 0.419914 0.515834 0.57621 Vertex 45308 0.546232 0.0208063 0.726373 Vertex 45309 0.463179 0.662059 0.500619 Vertex 45310 0.572535 0.504901 0.354069 Vertex 45311 0.445138 0.147841 0.62249 Vertex 45312 0.36831 0.460043 0.521893 Vertex 45313 0.367095 0.459143 0.515556 Vertex 45314 0.451043 0.110191 0.66107 Vertex 45315 0.44149 0.248053 0.671209 Vertex 45316 0.358105 0.320025 0.243463 Vertex 45317 0.557432 0.0360927 0.749916 Vertex 45318 0.368422 0.283032 0.233531 Vertex 45319 0.497281 0.632499 0.406342 Vertex 45320 0.351667 0.198492 0.497166 Vertex 45321 0.477731 0.0596767 0.693242 Vertex 45322 0.492727 0.496805 0.391879 Vertex 45323 0.390377 0.340648 0.453155 Vertex 45324 0.593803 0.50117 0.264619 Vertex 45325 0.484577 0.427877 0.374869 Vertex 45326 0.508286 0.266632 0.526193 Vertex 45327 0.460585 0.194601 0.800063 Vertex 45328 0.509796 0.388302 0.571703 Vertex 45329 0.509701 0.389984 0.571655 Vertex 45330 0.511371 0.388254 0.567551 Vertex 45331 0.476748 0.772588 0.492564 Vertex 45332 0.53874 0.663516 0.461784 Vertex 45333 0.47609 0.502337 0.403156 Vertex 45334 0.436545 0.30446 0.423926 Vertex 45335 0.406754 0.495863 0.445408 Vertex 45336 0.40721 0.494998 0.443323 Vertex 45337 0.515778 0.7451 0.463898 Vertex 45338 0.497868 0.24797 0.561439 Vertex 45339 0.632679 0.515941 0.273609 Vertex 45340 0.682027 0.450519 0.202733 Vertex 45341 0.426061 0.133941 0.689019 Vertex 45342 0.648232 0.465373 0.19286 Vertex 45343 0.463084 0.201376 0.586272 Vertex 45344 0.499035 0.0457289 0.727895 Vertex 45345 0.515873 0.304691 0.483402 Vertex 45346 0.458624 0.189555 0.633263 Vertex 45347 0.560826 0.48907 0.37077 Vertex 45348 0.507617 0.272016 0.555125 Vertex 45349 0.507865 0.273609 0.555143 Vertex 45350 0.370306 0.366269 0.306427 Vertex 45351 0.370211 0.36605 0.31059 Vertex 45352 0.389886 0.075052 0.466244 Vertex 45353 0.358573 0.317313 0.558448 Vertex 45354 0.657981 0.440634 0.223539 Vertex 45355 0.380321 0.865621 0.350237 Vertex 45356 0.404242 0.3259 0.440054 Vertex 45357 0.399611 0.310235 0.229693 Vertex 45358 0.489487 0.572407 0.389528 Vertex 45359 0.432488 0.186481 0.482069 Vertex 45360 0.509613 0.282369 0.561362 Vertex 45361 0.444137 0.564086 0.549155 Vertex 45362 0.685664 0.451342 0.206103 Vertex 45363 0.494563 0.458396 0.387135 Vertex 45364 0.35374 0.412134 0.495413 Vertex 45365 0.469948 0.531257 0.590555 Vertex 45366 0.539433 0.136292 0.442435 Vertex 45367 0.509796 0.095041 0.694047 Vertex 45368 0.338169 0.244778 0.218783 Vertex 45369 0.496926 0.583122 0.398631 Vertex 45370 0.454615 0.193102 0.801887 Vertex 45371 0.484808 0.322359 0.628205 Vertex 45372 0.360622 0.394402 0.376812 Vertex 45373 0.398722 0.252092 0.208798 Vertex 45374 0.495297 0.508597 0.390292 Vertex 45375 0.618252 0.501146 0.358422 Vertex 45376 0.475243 0.626997 0.531547 Vertex 45377 0.413269 0.369858 0.431039 Vertex 45378 0.389803 0.192481 0.631622 Vertex 45379 0.508179 0.762584 0.460043 Vertex 45380 0.444593 0.0908536 0.695854 Vertex 45381 0.529696 0.533543 0.419467 Vertex 45382 0.549502 0.442346 0.368585 Vertex 45383 0.627746 0.525074 0.267266 Vertex 45384 0.500462 0.0856002 0.729506 Vertex 45385 0.362411 0.416055 0.424596 Vertex 45386 0.44351 0.837381 0.440889 Vertex 45387 0.399078 0.359174 0.233359 Vertex 45388 0.381683 0.225855 0.593581 Vertex 45389 0.366426 0.441896 0.451384 Vertex 45390 0.379622 0.0807318 0.466007 Vertex 45391 0.522784 0.452557 0.593646 Vertex 45392 0.367398 0.326208 0.495188 Vertex 45393 0.432772 0.455393 0.607256 Vertex 45394 0.423272 0.392116 0.396712 Vertex 45395 0.51284 0.403487 0.443619 Vertex 45396 0.510827 0.404565 0.443264 Vertex 45397 0.326111 0.922798 0.269037 Vertex 45398 0.409135 0.850731 0.342241 Vertex 45399 0.421466 0.142185 0.652814 Vertex 45400 0.420014 0.203183 0.475702 Vertex 45401 0.528192 0.351036 0.505653 Vertex 45402 0.494125 0.210077 0.507993 Vertex 45403 0.496583 0.207589 0.511475 Vertex 45404 0.495576 0.208963 0.509728 Vertex 45405 0.45773 0.43698 0.386483 Vertex 45406 0.351057 0.896359 0.292662 Vertex 45407 0.377691 0.270903 0.464443 Vertex 45408 0.374363 0.271667 0.467813 Vertex 45409 0.482972 0.2074 0.760375 Vertex 45410 0.357288 0.29393 0.230913 Vertex 45411 0.536833 0.540911 0.569689 Vertex 45412 0.440163 0.161523 0.507483 Vertex 45413 0.513208 0.117689 0.694023 Vertex 45414 0.411243 0.263748 0.687662 Vertex 45415 0.373231 0.390641 0.520649 Vertex 45416 0.467159 0.204598 0.679448 Vertex 45417 0.466176 0.206192 0.681515 Vertex 45418 0.421466 0.15059 0.706455 Vertex 45419 0.554175 0.530706 0.45348 Vertex 45420 0.418409 0.154765 0.710512 Vertex 45421 0.494302 0.188755 0.781069 Vertex 45422 0.469866 0.321411 0.423151 Vertex 45423 0.513859 0.690316 0.426674 Vertex 45424 0.370921 0.330017 0.594623 Vertex 45425 0.46158 0.111038 0.644676 Vertex 45426 0.536087 0.652002 0.449489 Vertex 45427 0.472939 0.117144 0.799559 Vertex 45428 0.552244 0.52614 0.442423 Vertex 45429 0.416923 0.265625 0.667069 Vertex 45430 0.51775 0.0468956 0.730235 Vertex 45431 0.360385 0.406312 0.360276 Vertex 45432 0.592559 0.470236 0.444478 Vertex 45433 0.458222 0.205493 0.592485 Vertex 45434 0.422247 0.262522 0.440753 Vertex 45435 0.376086 0.392584 0.549001 Vertex 45436 0.363607 0.444318 0.469187 Vertex 45437 0.530585 0.498416 0.416991 Vertex 45438 0.41896 0.19177 0.770692 Vertex 45439 0.494818 0.234123 0.520033 Vertex 45440 0.494054 0.234668 0.515745 Vertex 45441 0.457837 0.527449 0.582808 Vertex 45442 0.63801 0.443471 0.206736 Vertex 45443 0.671574 0.479463 0.217042 Vertex 45444 0.53293 0.423524 0.567551 Vertex 45445 0.51576 0.114532 0.79295 Vertex 45446 0.527683 0.128824 0.710488 Vertex 45447 0.433216 0.811582 0.445224 Vertex 45448 0.471216 0.304881 0.633061 Vertex 45449 0.476771 0.174991 0.691956 Vertex 45450 0.358857 0.239785 0.554598 Vertex 45451 0.599412 0.520632 0.253934 Vertex 45452 0.504679 0.189353 0.486014 Vertex 45453 0.581751 0.407236 0.389622 Vertex 45454 0.482196 0.216758 0.58006 Vertex 45455 0.44765 0.589613 0.506536 Vertex 45456 0.446039 0.590164 0.502668 Vertex 45457 0.434353 0.140616 0.61938 Vertex 45458 0.452062 0.151407 0.650551 Vertex 45459 0.451499 0.149743 0.65051 Vertex 45460 0.430113 0.324976 0.647566 Vertex 45461 0.490571 0.194044 0.770734 Vertex 45462 0.361499 0.397991 0.5152 Vertex 45463 0.604636 0.469128 0.293859 Vertex 45464 0.408904 0.877063 0.339357 Vertex 45465 0.453353 0.177058 0.569689 Vertex 45466 0.381582 0.233933 0.212825 Vertex 45467 0.507634 0.567059 0.57281 Vertex 45468 0.511235 0.0179753 0.648656 Vertex 45469 0.377395 0.418495 0.378742 Vertex 45470 0.302106 0.96627 0.229551 Vertex 45471 0.371603 0.211125 0.482798 Vertex 45472 0.514131 0.674277 0.42485 Vertex 45473 0.4585 0.616531 0.515485 Vertex 45474 0.475397 0.0737431 0.706106 Vertex 45475 0.614965 0.461038 0.358884 Vertex 45476 0.358703 0.3509 0.391731 Vertex 45477 0.512378 0.569499 0.402433 Vertex 45478 0.461615 0.493571 0.609626 Vertex 45479 0.458464 0.489692 0.611906 Vertex 45480 0.337482 0.109676 0.460007 Vertex 45481 0.420826 0.432443 0.608577 Vertex 45482 0.54683 0.0220323 0.776396 Vertex 45483 0.646829 0.421445 0.2144 Vertex 45484 0.430687 0.141558 0.712875 Vertex 45485 0.496944 0.404174 0.414924 Vertex 45486 0.425825 0.805565 0.426757 Vertex 45487 0.496719 0.114479 0.642425 Vertex 45488 0.57308 0.503497 0.418703 Vertex 45489 0.541512 0.645718 0.473404 Vertex 45490 0.520475 0.732059 0.470182 Vertex 45491 0.451108 0.491883 0.604668 Vertex 45492 0.443119 0.551151 0.457721 Vertex 45493 0.52009 0.0885142 0.683517 Vertex 45494 0.533807 0.121018 0.781075 Vertex 45495 0.349955 0.311295 0.223432 Vertex 45496 0.508161 0.625717 0.555255 Vertex 45497 0.421116 0.818695 0.428741 Vertex 45498 0.493408 0.235118 0.497136 Vertex 45499 0.398894 0.317461 0.231754 Vertex 45500 0.508025 0.136458 0.700047 Vertex 45501 0.487065 0.101976 0.805571 Vertex 45502 0.48745 0.102012 0.8056 Vertex 45503 0.411717 0.837227 0.422481 Vertex 45504 0.36459 0.341678 0.227294 Vertex 45505 0.403869 0.3811 0.245329 Vertex 45506 0.35926 0.394455 0.366542 Vertex 45507 0.533848 0.399016 0.511759 Vertex 45508 0.450534 0.444306 0.630461 Vertex 45509 0.542477 0.0633251 0.779002 Vertex 45510 0.475291 0.459119 0.609223 Vertex 45511 0.472501 0.461103 0.611035 Vertex 45512 0.447827 0.812305 0.460961 Vertex 45513 0.375144 0.349615 0.495052 Vertex 45514 0.37184 0.356728 0.450039 Vertex 45515 0.538509 0.401012 0.515787 Vertex 45516 0.378277 0.451798 0.428321 Vertex 45517 0.538663 0.146017 0.458491 Vertex 45518 0.421614 0.374342 0.335436 Vertex 45519 0.505822 0.626807 0.557962 Vertex 45520 0.669341 0.460665 0.190058 Vertex 45521 0.501125 0.349259 0.444057 Vertex 45522 0.379646 0.427989 0.322051 Vertex 45523 0.406416 0.30892 0.632226 Vertex 45524 0.608497 0.538139 0.291395 Vertex 45525 0.510323 0.391139 0.57162 Vertex 45526 0.591002 0.500684 0.269268 Vertex 45527 0.592068 0.499121 0.269025 Vertex 45528 0.508161 0.0210788 0.652737 Vertex 45529 0.507445 0.0203443 0.650569 Vertex 45530 0.510021 0.100786 0.804369 Vertex 45531 0.418634 0.382012 0.302453 Vertex 45532 0.488782 0.723323 0.514223 Vertex 45533 0.568211 0.536516 0.498854 Vertex 45534 0.398249 0.18394 0.561089 Vertex 45535 0.497815 0.188726 0.75829 Vertex 45536 0.433412 0.1512 0.592438 Vertex 45537 0.424036 0.138863 0.696452 Vertex 45538 0.3893 0.189721 0.679477 Vertex 45539 0.623043 0.536516 0.271252 Vertex 45540 0.477198 0.74664 0.490598 Vertex 45541 0.358241 0.904539 0.341246 Vertex 45542 0.629416 0.45457 0.205321 Vertex 45543 0.39941 0.392933 0.260485 Vertex 45544 0.348741 0.155363 0.468388 Vertex 45545 0.402928 0.171277 0.492203 Vertex 45546 0.552001 0.487127 0.555214 Vertex 45547 0.373071 0.217682 0.212849 Vertex 45548 0.521683 0.427421 0.419982 Vertex 45549 0.412392 0.842451 0.347376 Vertex 45550 0.391248 0.188388 0.634963 Vertex 45551 0.483665 0.0501057 0.679637 Vertex 45552 0.388464 0.480926 0.567693 Vertex 45553 0.503962 0.0297851 0.670037 Vertex 45554 0.427394 0.148754 0.714729 Vertex 45555 0.512639 0.631711 0.544909 Vertex 45556 0.536413 0.478527 0.402705 Vertex 45557 0.384265 0.313421 0.248811 Vertex 45558 0.450771 0.132579 0.774826 Vertex 45559 0.379089 0.321802 0.256753 Vertex 45560 0.404746 0.269191 0.226939 Vertex 45561 0.529678 0.697352 0.472202 Vertex 45562 0.503346 0.262741 0.565519 Vertex 45563 0.478293 0.221561 0.488714 Vertex 45564 0.379942 0.410233 0.293314 Vertex 45565 0.477737 0.168571 0.534414 Vertex 45566 0.479087 0.0765978 0.72459 Vertex 45567 0.393001 0.252376 0.650468 Vertex 45568 0.512295 0.0636509 0.679637 Vertex 45569 0.382032 0.343118 0.461778 Vertex 45570 0.421258 0.402729 0.343491 Vertex 45571 0.490275 0.702055 0.403618 Vertex 45572 0.407174 0.426609 0.334619 Vertex 45573 0.430148 0.500791 0.442885 Vertex 45574 0.498247 0.647957 0.548213 Vertex 45575 0.396199 0.362733 0.368597 Vertex 45576 0.358425 0.361774 0.446462 Vertex 45577 0.427033 0.262794 0.723056 Vertex 45578 0.371526 0.328329 0.486884 Vertex 45579 0.489541 0.795609 0.447617 Vertex 45580 0.376696 0.251589 0.20124 Vertex 45581 0.409608 0.167848 0.513732 Vertex 45582 0.353189 0.151537 0.475773 Vertex 45583 0.462681 0.744739 0.474233 Vertex 45584 0.392835 0.257642 0.682362 Vertex 45585 0.438138 0.826685 0.360832 Vertex 45586 0.520765 0.0926186 0.797439 Vertex 45587 0.5173 0.0905279 0.798422 Vertex 45588 0.435964 0.396493 0.417068 Vertex 45589 0.388174 0.246406 0.638036 Vertex 45590 0.363145 0.0860622 0.478533 Vertex 45591 0.473982 0.678607 0.507898 Vertex 45592 0.456883 0.161961 0.650379 Vertex 45593 0.40638 0.485256 0.429162 Vertex 45594 0.412623 0.826525 0.413982 Vertex 45595 0.548074 0.568469 0.50955 Vertex 45596 0.599921 0.497172 0.386169 Vertex 45597 0.59895 0.495318 0.388183 Vertex 45598 0.367279 0.339061 0.258607 Vertex 45599 0.380457 0.868144 0.339505 Vertex 45600 0.379326 0.867688 0.341738 Vertex 45601 0.430924 0.259342 0.65462 Vertex 45602 0.43308 0.812737 0.385382 Vertex 45603 0.418629 0.385281 0.389948 Vertex 45604 0.475107 0.182797 0.487062 Vertex 45605 0.507617 0.0254852 0.664973 Vertex 45606 0.543212 0.034766 0.725171 Vertex 45607 0.474521 0.099477 0.774743 Vertex 45608 0.4161 0.157537 0.625688 Vertex 45609 0.496517 0.24675 0.495087 Vertex 45610 0.470197 0.153107 0.799873 Vertex 45611 0.425712 0.830636 0.355999 Vertex 45612 0.331974 0.267681 0.203846 Vertex 45613 0.496535 0.18734 0.455044 Vertex 45614 0.351744 0.262552 0.211664 Vertex 45615 0.386202 0.0743413 0.465693 Vertex 45616 0.455 0.363918 0.410322 Vertex 45617 0.475587 0.209603 0.718863 Vertex 45618 0.399102 0.32086 0.240063 Vertex 45619 0.51624 0.580569 0.413994 Vertex 45620 0.521926 0.0236966 0.636337 Vertex 45621 0.380641 0.227555 0.216225 Vertex 45622 0.471447 0.821645 0.428972 Vertex 45623 0.448651 0.767784 0.418229 Vertex 45624 0.412955 0.26357 0.718863 Vertex 45625 0.535258 0.108835 0.785292 Vertex 45626 0.505319 0.320298 0.592379 Vertex 45627 0.473188 0.250339 0.453948 Vertex 45628 0.499674 0.168938 0.717146 Vertex 45629 0.391272 0.857459 0.380904 Vertex 45630 0.537656 0.532613 0.571726 Vertex 45631 0.481954 0.274249 0.444857 Vertex 45632 0.420352 0.403031 0.620588 Vertex 45633 0.477127 0.71509 0.413887 Vertex 45634 0.5199 0.181666 0.463354 Vertex 45635 0.615373 0.495289 0.246146 Vertex 45636 0.500326 0.404157 0.427054 Vertex 45637 0.499959 0.401308 0.428712 Vertex 45638 0.458233 0.692874 0.476526 Vertex 45639 0.350269 0.100916 0.46115 Vertex 45640 0.350121 0.189963 0.484776 Vertex 45641 0.415531 0.391873 0.372393 Vertex 45642 0.420429 0.22624 0.465723 Vertex 45643 0.450723 0.191841 0.802272 Vertex 45644 0.53508 0.641584 0.447386 Vertex 45645 0.525787 0.070071 0.789372 Vertex 45646 0.393167 0.183069 0.644457 Vertex 45647 0.322131 0.244748 0.227596 Vertex 45648 0.517454 0.511066 0.407331 Vertex 45649 0.519569 0.512429 0.409291 Vertex 45650 0.433329 0.281759 0.430198 Vertex 45651 0.417639 0.408995 0.351569 Vertex 45652 0.36157 0.279828 0.489224 Vertex 45653 0.424012 0.162174 0.725094 Vertex 45654 0.366314 0.381911 0.281563 Vertex 45655 0.366776 0.399466 0.52492 Vertex 45656 0.477381 0.545507 0.408202 Vertex 45657 0.384413 0.913458 0.335779 Vertex 45658 0.372621 0.877821 0.316856 Vertex 45659 0.36892 0.87903 0.316549 Vertex 45660 0.574033 0.480032 0.31611 Vertex 45661 0.529406 0.402267 0.454718 Vertex 45662 0.422863 0.382189 0.320949 Vertex 45663 0.472069 0.0649894 0.70023 Vertex 45664 0.358306 0.234614 0.513347 Vertex 45665 0.451624 0.122173 0.640056 Vertex 45666 0.382026 0.344604 0.414651 Vertex 45667 0.521286 0.08332 0.679205 Vertex 45668 0.454555 0.171289 0.6318 Vertex 45669 0.540138 0.116872 0.43557 Vertex 45670 0.404106 0.493583 0.443128 Vertex 45671 0.475279 0.484811 0.606848 Vertex 45672 0.419049 0.34416 0.640577 Vertex 45673 0.402744 0.276422 0.441292 Vertex 45674 0.460028 0.193878 0.642182 Vertex 45675 0.483973 0.192629 0.721203 Vertex 45676 0.613721 0.49735 0.244357 Vertex 45677 0.40718 0.833958 0.405779 Vertex 45678 0.483345 0.162855 0.666092 Vertex 45679 0.51027 0.752895 0.448334 Vertex 45680 0.369583 0.15377 0.462489 Vertex 45681 0.448183 0.516906 0.430033 Vertex 45682 0.395524 0.224374 0.470052 Vertex 45683 0.374848 0.385808 0.526246 Vertex 45684 0.476884 0.275475 0.440113 Vertex 45685 0.467739 0.0960241 0.657688 Vertex 45686 0.340349 0.915264 0.314304 Vertex 45687 0.47044 0.057284 0.656705 Vertex 45688 0.371076 0.260348 0.47418 Vertex 45689 0.391929 0.855013 0.377096 Vertex 45690 0.398509 0.229705 0.7294 Vertex 45691 0.673256 0.448849 0.196692 Vertex 45692 0.441034 0.250025 0.696061 Vertex 45693 0.483144 0.11105 0.805476 Vertex 45694 0.501812 0.409594 0.417056 Vertex 45695 0.384632 0.425058 0.368934 Vertex 45696 0.415152 0.309826 0.639381 Vertex 45697 0.509684 0.724176 0.499221 Vertex 45698 0.503186 0.359245 0.448203 Vertex 45699 0.346242 0.296613 0.203491 Vertex 45700 0.494705 0.0322844 0.663309 Vertex 45701 0.420091 0.497871 0.440344 Vertex 45702 0.41947 0.498256 0.440984 Vertex 45703 0.538574 0.664434 0.487435 Vertex 45704 0.634669 0.491492 0.188098 Vertex 45705 0.439358 0.782923 0.412123 Vertex 45706 0.619969 0.502869 0.339256 Vertex 45707 0.356589 0.106845 0.472765 Vertex 45708 0.648831 0.420758 0.21799 Vertex 45709 0.489422 0.21379 0.505002 Vertex 45710 0.466253 0.655023 0.509592 Vertex 45711 0.372787 0.420402 0.563612 Vertex 45712 0.52863 0.701818 0.480914 Vertex 45713 0.546789 0.033617 0.715031 Vertex 45714 0.633799 0.517955 0.217202 Vertex 45715 0.337482 0.909845 0.292035 Vertex 45716 0.36427 0.323105 0.501519 Vertex 45717 0.542738 0.507341 0.57178 Vertex 45718 0.540576 0.51022 0.573859 Vertex 45719 0.602427 0.522355 0.207275 Vertex 45720 0.464085 0.208827 0.652511 Vertex 45721 0.385699 0.284679 0.453208 Vertex 45722 0.373782 0.361265 0.511937 Vertex 45723 0.343902 0.901163 0.310454 Vertex 45724 0.398829 0.341128 0.442695 Vertex 45725 0.396537 0.16661 0.505416 Vertex 45726 0.563372 0.511049 0.424619 Vertex 45727 0.561377 0.511374 0.426621 Vertex 45728 0.578138 0.505855 0.378985 Vertex 45729 0.525396 0.168825 0.460043 Vertex 45730 0.469498 0.190645 0.573823 Vertex 45731 0.553061 0.556582 0.474453 Vertex 45732 0.534754 0.0968651 0.789266 Vertex 45733 0.338513 0.91007 0.304306 Vertex 45734 0.413464 0.268806 0.227655 Vertex 45735 0.387807 0.431525 0.389214 Vertex 45736 0.483109 0.411489 0.380916 Vertex 45737 0.484382 0.413674 0.380892 Vertex 45738 0.377691 0.228046 0.206079 Vertex 45739 0.387203 0.173285 0.536528 Vertex 45740 0.513877 0.181719 0.456098 Vertex 45741 0.407269 0.28472 0.223107 Vertex 45742 0.361463 0.347678 0.252548 Vertex 45743 0.513468 0.0802165 0.685074 Vertex 45744 0.460579 0.790622 0.476745 Vertex 45745 0.561969 0.502739 0.530339 Vertex 45746 0.387967 0.243309 0.658778 Vertex 45747 0.383685 0.862109 0.356177 Vertex 45748 0.485365 0.39211 0.406312 Vertex 45749 0.54766 0.131981 0.445325 Vertex 45750 0.411936 0.826827 0.385559 Vertex 45751 0.52587 0.143322 0.762442 Vertex 45752 0.342617 0.294528 0.22637 Vertex 45753 0.439482 0.563275 0.486789 Vertex 45754 0.425333 0.111713 0.68145 Vertex 45755 0.523762 0.0788602 0.716174 Vertex 45756 0.484346 0.400846 0.620618 Vertex 45757 0.357128 0.420746 0.460143 Vertex 45758 0.513883 0.131969 0.691956 Vertex 45759 0.505591 0.64724 0.411264 Vertex 45760 0.527339 0.043496 0.648537 Vertex 45761 0.481095 0.101491 0.652144 Vertex 45762 0.627319 0.507045 0.189815 Vertex 45763 0.476416 0.225831 0.483319 Vertex 45764 0.358288 0.126419 0.475412 Vertex 45765 0.360178 0.398098 0.511292 Vertex 45766 0.34193 0.113484 0.457532 Vertex 45767 0.498804 0.180712 0.742477 Vertex 45768 0.586702 0.438555 0.325261 Vertex 45769 0.441762 0.812648 0.456323 Vertex 45770 0.681453 0.46227 0.190384 Vertex 45771 0.443658 0.777024 0.414148 Vertex 45772 0.546179 0.549125 0.548948 Vertex 45773 0.463143 0.4892 0.611959 Vertex 45774 0.382163 0.33559 0.462157 Vertex 45775 0.454372 0.200287 0.80043 Vertex 45776 0.65855 0.41044 0.229171 Vertex 45777 0.597481 0.428564 0.371369 Vertex 45778 0.516921 0.121278 0.689895 Vertex 45779 0.49018 0.181287 0.716524 Vertex 45780 0.449456 0.238778 0.687775 Vertex 45781 0.535181 0.404411 0.45367 Vertex 45782 0.570403 0.471379 0.316626 Vertex 45783 0.355842 0.417773 0.476845 Vertex 45784 0.426435 0.250422 0.758201 Vertex 45785 0.396389 0.345025 0.218292 Vertex 45786 0.513101 0.0924054 0.650338 Vertex 45787 0.604796 0.459924 0.214839 Vertex 45788 0.568904 0.444265 0.329128 Vertex 45789 0.569455 0.441765 0.330597 Vertex 45790 0.363791 0.362467 0.246205 Vertex 45791 0.362961 0.362822 0.250446 Vertex 45792 0.433305 0.166137 0.50955 Vertex 45793 0.431931 0.167931 0.511635 Vertex 45794 0.387339 0.438573 0.592888 Vertex 45795 0.480947 0.616123 0.541752 Vertex 45796 0.572251 0.453646 0.503403 Vertex 45797 0.604606 0.512476 0.200476 Vertex 45798 0.361647 0.266182 0.225067 Vertex 45799 0.446743 0.133272 0.630592 Vertex 45800 0.555507 0.485883 0.385026 Vertex 45801 0.527321 0.66415 0.437229 Vertex 45802 0.516358 0.143707 0.708173 Vertex 45803 0.3997 0.347962 0.626268 Vertex 45804 0.354267 0.221152 0.512044 Vertex 45805 0.40715 0.365582 0.279538 Vertex 45806 0.36154 0.25827 0.208418 Vertex 45807 0.434383 0.257944 0.700219 Vertex 45808 0.483422 0.231991 0.48339 Vertex 45809 0.497524 0.750851 0.493073 Vertex 45810 0.497062 0.386223 0.44199 Vertex 45811 0.457315 0.198368 0.598793 Vertex 45812 0.394322 0.176999 0.489816 Vertex 45813 0.337761 0.929354 0.307907 Vertex 45814 0.594176 0.510492 0.253389 Vertex 45815 0.41899 0.398808 0.362301 Vertex 45816 0.586003 0.500163 0.30693 Vertex 45817 0.40946 0.890129 0.368585 Vertex 45818 0.467579 0.163086 0.540692 Vertex 45819 0.368185 0.355354 0.366625 Vertex 45820 0.538799 0.584887 0.440984 Vertex 45821 0.384869 0.457389 0.425152 Vertex 45822 0.508256 0.398643 0.444721 Vertex 45823 0.504217 0.256404 0.5531 Vertex 45824 0.409656 0.514365 0.475981 Vertex 45825 0.367735 0.903514 0.353666 Vertex 45826 0.453969 0.155417 0.795212 Vertex 45827 0.491921 0.459557 0.386643 Vertex 45828 0.40092 0.837381 0.38322 Vertex 45829 0.507457 0.263381 0.530599 Vertex 45830 0.354107 0.272401 0.22656 Vertex 45831 0.54734 0.0314434 0.717607 Vertex 45832 0.503796 0.509728 0.599142 Vertex 45833 0.434335 0.331942 0.647791 Vertex 45834 0.447484 0.127343 0.750004 Vertex 45835 0.459199 0.159225 0.800246 Vertex 45836 0.505348 0.729447 0.49934 Vertex 45837 0.48251 0.0829883 0.727279 Vertex 45838 0.505668 0.265205 0.48676 Vertex 45839 0.505401 0.265164 0.483035 Vertex 45840 0.429657 0.177017 0.493796 Vertex 45841 0.541328 0.652956 0.483082 Vertex 45842 0.46123 0.23282 0.7562 Vertex 45843 0.381168 0.253478 0.233779 Vertex 45844 0.370525 0.321275 0.594819 Vertex 45845 0.374967 0.313682 0.472528 Vertex 45846 0.346988 0.896271 0.310738 Vertex 45847 0.37486 0.375811 0.511896 Vertex 45848 0.599862 0.445023 0.184562 Vertex 45849 0.366106 0.376462 0.26912 Vertex 45850 0.493296 0.111186 0.802864 Vertex 45851 0.553168 0.0121592 0.726663 Vertex 45852 0.512313 0.171396 0.774826 Vertex 45853 0.503962 0.297999 0.45871 Vertex 45854 0.504199 0.29955 0.456785 Vertex 45855 0.371887 0.252406 0.233916 Vertex 45856 0.394008 0.182074 0.648437 Vertex 45857 0.563313 0.491729 0.374638 Vertex 45858 0.399913 0.435174 0.601896 Vertex 45859 0.496535 0.0520661 0.686555 Vertex 45860 0.460899 0.226915 0.619522 Vertex 45861 0.480864 0.426064 0.374514 Vertex 45862 0.471725 0.50913 0.406241 Vertex 45863 0.441762 0.774554 0.441292 Vertex 45864 0.475575 0.165917 0.513216 Vertex 45865 0.532977 0.0586462 0.793418 Vertex 45866 0.40949 0.885912 0.348845 Vertex 45867 0.372781 0.37022 0.575937 Vertex 45868 0.495611 0.475329 0.392003 Vertex 45869 0.440323 0.146669 0.602874 Vertex 45870 0.368452 0.422339 0.335477 Vertex 45871 0.347355 0.0834799 0.446652 Vertex 45872 0.655766 0.411749 0.227649 Vertex 45873 0.478465 0.212393 0.745829 Vertex 45874 0.513344 0.0670268 0.679839 Vertex 45875 0.522595 0.0719485 0.795194 Vertex 45876 0.517057 0.159687 0.462785 Vertex 45877 0.537384 0.655076 0.496745 Vertex 45878 0.438623 0.150601 0.594677 Vertex 45879 0.577326 0.437004 0.466054 Vertex 45880 0.427584 0.261586 0.669119 Vertex 45881 0.502665 0.0844868 0.710003 Vertex 45882 0.39582 0.35623 0.320949 Vertex 45883 0.371798 0.374881 0.561362 Vertex 45884 0.543342 0.423535 0.396546 Vertex 45885 0.589047 0.432396 0.196881 Vertex 45886 0.497524 0.186209 0.768637 Vertex 45887 0.527819 0.0142262 0.733308 Vertex 45888 0.528032 0.398335 0.513826 Vertex 45889 0.498046 0.369296 0.611071 Vertex 45890 0.520119 0.476496 0.410446 Vertex 45891 0.413144 0.260147 0.199333 Vertex 45892 0.496535 0.3431 0.441511 Vertex 45893 0.455995 0.787228 0.382142 Vertex 45894 0.416473 0.253982 0.197681 Vertex 45895 0.382868 0.215626 0.648354 Vertex 45896 0.475895 0.815142 0.431513 Vertex 45897 0.516992 0.0952305 0.688036 Vertex 45898 0.41745 0.539957 0.536569 Vertex 45899 0.495268 0.209455 0.50557 Vertex 45900 0.329362 0.917924 0.281794 Vertex 45901 0.39848 0.260348 0.680348 Vertex 45902 0.446181 0.762922 0.44109 Vertex 45903 0.521736 0.50756 0.593486 Vertex 45904 0.424978 0.269286 0.646743 Vertex 45905 0.394944 0.328684 0.252436 Vertex 45906 0.37993 0.403096 0.567669 Vertex 45907 0.443178 0.111814 0.727433 Vertex 45908 0.643856 0.419822 0.205078 Vertex 45909 0.646124 0.427039 0.200787 Vertex 45910 0.373356 0.369343 0.229361 Vertex 45911 0.470268 0.159254 0.798896 Vertex 45912 0.595195 0.525168 0.230285 Vertex 45913 0.488344 0.035767 0.661905 Vertex 45914 0.5259 0.127414 0.708309 Vertex 45915 0.351768 0.936799 0.310549 Vertex 45916 0.383703 0.253863 0.606113 Vertex 45917 0.586838 0.480209 0.463987 Vertex 45918 0.472939 0.0978957 0.77074 Vertex 45919 0.372941 0.345759 0.497207 Vertex 45920 0.396294 0.428013 0.36056 Vertex 45921 0.30858 0.997678 0.214294 Vertex 45922 0.486443 0.174701 0.526163 Vertex 45923 0.463463 0.203171 0.634684 Vertex 45924 0.506053 0.393123 0.446746 Vertex 45925 0.407334 0.269505 0.647785 Vertex 45926 0.453975 0.0926778 0.662746 Vertex 45927 0.533895 0.119768 0.797072 Vertex 45928 0.475427 0.133313 0.645102 Vertex 45929 0.43353 0.828468 0.445319 Vertex 45930 0.345827 0.919588 0.320724 Vertex 45931 0.549211 0.565164 0.491468 Vertex 45932 0.494291 0.690008 0.528011 Vertex 45933 0.415116 0.252394 0.747671 Vertex 45934 0.484832 0.520578 0.393952 Vertex 45935 0.42217 0.149227 0.702297 Vertex 45936 0.381339 0.869074 0.329128 Vertex 45937 0.633029 0.519311 0.250529 Vertex 45938 0.490897 0.101414 0.803261 Vertex 45939 0.448538 0.835368 0.383723 Vertex 45940 0.427151 0.854 0.430832 Vertex 45941 0.42676 0.134948 0.697541 Vertex 45942 0.578351 0.407817 0.401782 Vertex 45943 0.547837 0.595613 0.490047 Vertex 45944 0.40917 0.154611 0.643947 Vertex 45945 0.498958 0.654063 0.407485 Vertex 45946 0.416935 0.380116 0.416855 Vertex 45947 0.583717 0.476004 0.303282 Vertex 45948 0.514866 0.595293 0.420799 Vertex 45949 0.49679 0.78374 0.449506 Vertex 45950 0.480141 0.205795 0.729174 Vertex 45951 0.416603 0.26485 0.698152 Vertex 45952 0.494492 0.590335 0.400094 Vertex 45953 0.388044 0.460665 0.420568 Vertex 45954 0.449888 0.789491 0.463354 Vertex 45955 0.446945 0.789917 0.459628 Vertex 45956 0.418007 0.215437 0.774785 Vertex 45957 0.358893 0.363794 0.385192 Vertex 45958 0.357365 0.364984 0.387763 Vertex 45959 0.543147 0.538488 0.435162 Vertex 45960 0.464162 0.154777 0.655514 Vertex 45961 0.358833 0.298917 0.505552 Vertex 45962 0.392948 0.349265 0.222811 Vertex 45963 0.502884 0.270808 0.471568 Vertex 45964 0.380789 0.216823 0.586006 Vertex 45965 0.589722 0.505973 0.299112 Vertex 45966 0.355007 0.244328 0.526353 Vertex 45967 0.415466 0.173042 0.573841 Vertex 45968 0.400701 0.316898 0.203799 Vertex 45969 0.522133 0.045723 0.658049 Vertex 45970 0.648647 0.425697 0.197266 Vertex 45971 0.564675 0.526329 0.512677 Vertex 45972 0.511739 0.278057 0.484035 Vertex 45973 0.520374 0.298638 0.492339 Vertex 45974 0.365556 0.930089 0.315808 Vertex 45975 0.4334 0.484379 0.595097 Vertex 45976 0.405936 0.192777 0.741689 Vertex 45977 0.457084 0.233815 0.71682 Vertex 45978 0.530194 0.102338 0.756188 Vertex 45979 0.540138 0.128759 0.45123 Vertex 45980 0.539297 0.131495 0.453261 Vertex 45981 0.435508 0.529978 0.470182 Vertex 45982 0.360201 0.892539 0.341667 Vertex 45983 0.510092 0.276944 0.544849 Vertex 45984 0.455841 0.239335 0.735488 Vertex 45985 0.454763 0.24094 0.739622 Vertex 45986 0.543099 0.573598 0.526163 Vertex 45987 0.49082 0.230125 0.507637 Vertex 45988 0.42769 0.187665 0.782816 Vertex 45989 0.523004 0.395758 0.46821 Vertex 45990 0.424907 0.838134 0.434179 Vertex 45991 0.485436 0.537452 0.391186 Vertex 45992 0.341924 0.903484 0.302387 Vertex 45993 0.495528 0.118424 0.643213 Vertex 45994 0.53784 0.600428 0.443524 Vertex 45995 0.372917 0.18564 0.543967 Vertex 45996 0.371946 0.18625 0.542759 Vertex 45997 0.50263 0.0226542 0.63838 Vertex 45998 0.458038 0.234845 0.723027 Vertex 45999 0.601372 0.510415 0.220305 Vertex 46000 0.476309 0.803587 0.463667 Vertex 46001 0.352188 0.272371 0.201163 Vertex 46002 0.43703 0.782076 0.434943 Vertex 46003 0.643097 0.508591 0.235834 Vertex 46004 0.407482 0.830061 0.395077 Vertex 46005 0.466875 0.201755 0.796936 Vertex 46006 0.440708 0.794347 0.451556 Vertex 46007 0.543431 0.0486902 0.714782 Vertex 46008 0.496583 0.634388 0.548812 Vertex 46009 0.361955 0.920405 0.338782 Vertex 46010 0.45285 0.433438 0.391417 Vertex 46011 0.456812 0.506299 0.595962 Vertex 46012 0.372556 0.386015 0.239708 Vertex 46013 0.485892 0.211072 0.490746 Vertex 46014 0.47599 0.064332 0.699413 Vertex 46015 0.492751 0.6024 0.401497 Vertex 46016 0.458044 0.423216 0.382403 Vertex 46017 0.459661 0.424596 0.380632 Vertex 46018 0.491051 0.41647 0.3838 Vertex 46019 0.356713 0.326664 0.536617 Vertex 46020 0.447673 0.0981681 0.735269 Vertex 46021 0.447217 0.0983577 0.733214 Vertex 46022 0.427667 0.233892 0.20785 Vertex 46023 0.472365 0.119211 0.814236 Vertex 46024 0.462669 0.445597 0.618326 Vertex 46025 0.609599 0.458272 0.335981 Vertex 46026 0.624305 0.490935 0.26251 Vertex 46027 0.449705 0.155428 0.637794 Vertex 46028 0.358146 0.274154 0.511215 Vertex 46029 0.372473 0.470425 0.512263 Vertex 46030 0.374836 0.47492 0.512618 Vertex 46031 0.546143 0.573089 0.507489 Vertex 46032 0.488226 0.191527 0.730969 Vertex 46033 0.590682 0.508555 0.294647 Vertex 46034 0.368197 0.444194 0.447238 Vertex 46035 0.371028 0.0786411 0.476762 Vertex 46036 0.390306 0.350633 0.397428 Vertex 46037 0.364987 0.371872 0.2774 Vertex 46038 0.343263 0.0977358 0.463294 Vertex 46039 0.514961 0.348697 0.579971 Vertex 46040 0.690597 0.452805 0.21459 Vertex 46041 0.507794 0.292254 0.57785 Vertex 46042 0.474384 0.0505914 0.661982 Vertex 46043 0.473893 0.0516041 0.658493 Vertex 46044 0.397449 0.847012 0.389214 Vertex 46045 0.441993 0.539116 0.453587 Vertex 46046 0.442396 0.538873 0.450596 Vertex 46047 0.452465 0.341441 0.636609 Vertex 46048 0.346011 0.0870454 0.445082 Vertex 46049 0.504886 0.752741 0.436287 Vertex 46050 0.368185 0.360501 0.546537 Vertex 46051 0.521831 0.304881 0.497344 Vertex 46052 0.438114 0.132922 0.644516 Vertex 46053 0.483103 0.452859 0.379992 Vertex 46054 0.324452 0.243972 0.214602 Vertex 46055 0.490506 0.602631 0.558424 Vertex 46056 0.44531 0.324058 0.639197 Vertex 46057 0.456356 0.77238 0.399715 Vertex 46058 0.520321 0.10505 0.679477 Vertex 46059 0.446915 0.562392 0.453913 Vertex 46060 0.433666 0.163264 0.776805 Vertex 46061 0.435804 0.165059 0.780939 Vertex 46062 0.33259 0.916727 0.297993 Vertex 46063 0.48161 0.0423233 0.661852 Vertex 46064 0.350192 0.186345 0.484776 Vertex 46065 0.500853 0.370948 0.604893 Vertex 46066 0.445482 0.798144 0.385139 Vertex 46067 0.41299 0.242492 0.756188 Vertex 46068 0.505372 0.573314 0.571756 Vertex 46069 0.559398 0.406449 0.484722 Vertex 46070 0.528441 0.398258 0.522023 Vertex 46071 0.504679 0.261924 0.551033 Vertex 46072 0.518242 0.0516871 0.665553 Vertex 46073 0.406078 0.261533 0.71294 Vertex 46074 0.406126 0.261071 0.710998 Vertex 46075 0.363198 0.192333 0.522 Vertex 46076 0.589047 0.431176 0.336567 Vertex 46077 0.58698 0.430743 0.336087 Vertex 46078 0.557971 0.410464 0.385311 Vertex 46079 0.375974 0.337236 0.607091 Vertex 46080 0.578304 0.51645 0.459818 Vertex 46081 0.45468 0.447297 0.393733 Vertex 46082 0.359651 0.437732 0.509106 Vertex 46083 0.537431 0.669172 0.477752 Vertex 46084 0.362896 0.315068 0.245933 Vertex 46085 0.463605 0.233513 0.768637 Vertex 46086 0.462018 0.552685 0.571803 Vertex 46087 0.432985 0.154599 0.582121 Vertex 46088 0.436029 0.21318 0.469341 Vertex 46089 0.423687 0.171165 0.503397 Vertex 46090 0.480106 0.335205 0.426894 Vertex 46091 0.477968 0.334281 0.425354 Vertex 46092 0.476209 0.48079 0.39211 Vertex 46093 0.504027 0.177899 0.749685 Vertex 46094 0.355315 0.254366 0.536339 Vertex 46095 0.355967 0.22685 0.509823 Vertex 46096 0.504584 0.0365014 0.629342 Vertex 46097 0.497649 0.207305 0.498487 Vertex 46098 0.369423 0.391837 0.283565 Vertex 46099 0.368244 0.432597 0.555255 Vertex 46100 0.422407 0.38306 0.339588 Vertex 46101 0.51881 0.337835 0.565508 Vertex 46102 0.492999 0.112382 0.800827 Vertex 46103 0.493894 0.0764912 0.705946 Vertex 46104 0.521221 0.0622057 0.64406 Vertex 46105 0.556058 0.479753 0.374934 Vertex 46106 0.411373 0.361963 0.327156 Vertex 46107 0.536223 0.669059 0.458758 Vertex 46108 0.529039 0.521265 0.417642 Vertex 46109 0.369595 0.879539 0.325427 Vertex 46110 0.584226 0.41602 0.360341 Vertex 46111 0.586003 0.415907 0.362437 Vertex 46112 0.533392 0.480144 0.586255 Vertex 46113 0.459199 0.172225 0.485747 Vertex 46114 0.465577 0.162352 0.508129 Vertex 46115 0.519503 0.122581 0.79093 Vertex 46116 0.474118 0.797895 0.473025 Vertex 46117 0.430859 0.505932 0.44815 Vertex 46118 0.371982 0.301221 0.241846 Vertex 46119 0.498922 0.478752 0.393703 Vertex 46120 0.343269 0.299248 0.21533 Vertex 46121 0.325092 0.94608 0.284554 Vertex 46122 0.411841 0.823789 0.390985 Vertex 46123 0.344773 0.131874 0.461375 Vertex 46124 0.370465 0.213032 0.213174 Vertex 46125 0.51608 0.299142 0.486653 Vertex 46126 0.357779 0.914281 0.339055 Vertex 46127 0.380374 0.265531 0.231161 Vertex 46128 0.480935 0.252489 0.458894 Vertex 46129 0.464885 0.208869 0.590371 Vertex 46130 0.526889 0.706485 0.486695 Vertex 46131 0.659604 0.450413 0.205967 Vertex 46132 0.397911 0.306622 0.237629 Vertex 46133 0.594449 0.442737 0.416529 Vertex 46134 0.436604 0.843115 0.441238 Vertex 46135 0.552137 0.153977 0.426657 Vertex 46136 0.306738 0.991513 0.204527 Vertex 46137 0.424883 0.458485 0.601049 Vertex 46138 0.533214 0.399863 0.473398 Vertex 46139 0.462284 0.569636 0.560467 Vertex 46140 0.431102 0.196626 0.477538 Vertex 46141 0.399261 0.355395 0.227217 Vertex 46142 0.32001 0.976303 0.199765 Vertex 46143 0.400801 0.322779 0.201157 Vertex 46144 0.438398 0.784131 0.44112 Vertex 46145 0.498685 0.701782 0.529048 Vertex 46146 0.529678 0.396765 0.441238 Vertex 46147 0.515671 0.35674 0.474565 Vertex 46148 0.51759 0.34862 0.571685 Vertex 46149 0.420382 0.261154 0.217504 Vertex 46150 0.474023 0.508674 0.405495 Vertex 46151 0.435153 0.165864 0.50345 Vertex 46152 0.422887 0.392749 0.392619 Vertex 46153 0.369595 0.24505 0.585674 Vertex 46154 0.369844 0.248355 0.586207 Vertex 46155 0.595781 0.450851 0.406976 Vertex 46156 0.352899 0.286681 0.229118 Vertex 46157 0.476333 0.807081 0.45784 Vertex 46158 0.363962 0.390617 0.509325 Vertex 46159 0.480272 0.549682 0.400111 Vertex 46160 0.509766 0.395847 0.447279 Vertex 46161 0.533712 0.54803 0.431721 Vertex 46162 0.534529 0.549937 0.431898 Vertex 46163 0.500426 0.25442 0.484722 Vertex 46164 0.500367 0.600753 0.405916 Vertex 46165 0.40965 0.529421 0.54723 Vertex 46166 0.493894 0.131128 0.646814 Vertex 46167 0.425623 0.535172 0.495324 Vertex 46168 0.660202 0.452853 0.202354 Vertex 46169 0.476635 0.196313 0.703743 Vertex 46170 0.476552 0.194317 0.705573 Vertex 46171 0.432849 0.256297 0.747671 Vertex 46172 0.350921 0.292491 0.231375 Vertex 46173 0.502641 0.560716 0.391843 Vertex 46174 0.414868 0.272519 0.646334 Vertex 46175 0.4153 0.27153 0.648188 Vertex 46176 0.311766 0.948828 0.262356 Vertex 46177 0.349801 0.129452 0.457466 Vertex 46178 0.385811 0.328548 0.459723 Vertex 46179 0.598683 0.535894 0.286284 Vertex 46180 0.499443 0.67134 0.541639 Vertex 46181 0.472596 0.547888 0.420402 Vertex 46182 0.443421 0.101325 0.712579 Vertex 46183 0.434797 0.432994 0.622217 Vertex 46184 0.527683 0.152426 0.442956 Vertex 46185 0.378242 0.318586 0.464094 Vertex 46186 0.436941 0.158354 0.574664 Vertex 46187 0.475208 0.564412 0.418294 Vertex 46188 0.367634 0.353808 0.229663 Vertex 46189 0.514404 0.0529604 0.730318 Vertex 46190 0.367587 0.240081 0.204308 Vertex 46191 0.45144 0.610395 0.458438 Vertex 46192 0.408649 0.826502 0.389368 Vertex 46193 0.502339 0.644788 0.552182 Vertex 46194 0.503986 0.644421 0.552211 Vertex 46195 0.451523 0.1927 0.59871 Vertex 46196 0.432724 0.22409 0.788135 Vertex 46197 0.467745 0.542954 0.422268 Vertex 46198 0.382317 0.218594 0.60503 Vertex 46199 0.623482 0.526513 0.287196 Vertex 46200 0.37964 0.260414 0.232305 Vertex 46201 0.378953 0.262404 0.232654 Vertex 46202 0.376512 0.262794 0.232654 Vertex 46203 0.47246 0.384908 0.626049 Vertex 46204 0.585553 0.496082 0.396558 Vertex 46205 0.398764 0.300794 0.205783 Vertex 46206 0.65197 0.4538 0.195389 Vertex 46207 0.559671 0.538755 0.472765 Vertex 46208 0.408892 0.84206 0.360287 Vertex 46209 0.413665 0.45993 0.400301 Vertex 46210 0.516429 0.13114 0.789645 Vertex 46211 0.477032 0.111062 0.793773 Vertex 46212 0.360989 0.251535 0.492517 Vertex 46213 0.461882 0.231173 0.729257 Vertex 46214 0.485732 0.173042 0.497083 Vertex 46215 0.483665 0.172474 0.499458 Vertex 46216 0.40747 0.488791 0.584306 Vertex 46217 0.534428 0.0982807 0.785286 Vertex 46218 0.60492 0.527685 0.30526 Vertex 46219 0.422952 0.384256 0.423079 Vertex 46220 0.521967 0.725082 0.480559 Vertex 46221 0.430936 0.461672 0.407686 Vertex 46222 0.320158 0.237238 0.222728 Vertex 46223 0.362689 0.310857 0.493062 Vertex 46224 0.455349 0.727925 0.449429 Vertex 46225 0.452251 0.134267 0.787086 Vertex 46226 0.433269 0.259312 0.729269 Vertex 46227 0.676928 0.447025 0.204806 Vertex 46228 0.537431 0.418288 0.553029 Vertex 46229 0.423349 0.389658 0.41541 Vertex 46230 0.506166 0.0355478 0.74577 Vertex 46231 0.356707 0.106874 0.466374 Vertex 46232 0.474461 0.194068 0.695279 Vertex 46233 0.55177 0.542066 0.45348 Vertex 46234 0.678302 0.449187 0.208578 Vertex 46235 0.382785 0.335471 0.617378 Vertex 46236 0.424054 0.153948 0.61527 Vertex 46237 0.375056 0.888085 0.364042 Vertex 46238 0.502612 0.569014 0.39535 Vertex 46239 0.409135 0.222005 0.470644 Vertex 46240 0.407529 0.829558 0.399703 Vertex 46241 0.464648 0.119579 0.791576 Vertex 46242 0.521316 0.668414 0.431217 Vertex 46243 0.351483 0.131329 0.457058 Vertex 46244 0.480301 0.5143 0.59749 Vertex 46245 0.373966 0.367057 0.519186 Vertex 46246 0.381245 0.870643 0.368638 Vertex 46247 0.481575 0.157922 0.796284 Vertex 46248 0.471548 0.489733 0.40219 Vertex 46249 0.394488 0.854794 0.354382 Vertex 46250 0.43594 0.18137 0.793726 Vertex 46251 0.451209 0.749614 0.447848 Vertex 46252 0.513261 0.412271 0.586225 Vertex 46253 0.455977 0.498203 0.413739 Vertex 46254 0.600194 0.522414 0.261012 Vertex 46255 0.494764 0.668894 0.406709 Vertex 46256 0.445748 0.160599 0.503314 Vertex 46257 0.403869 0.871389 0.406911 Vertex 46258 0.521908 0.377647 0.453836 Vertex 46259 0.438031 0.251849 0.681568 Vertex 46260 0.435348 0.254556 0.681568 Vertex 46261 0.480935 0.708451 0.501383 Vertex 46262 0.365455 0.223723 0.228609 Vertex 46263 0.49252 0.323514 0.43897 Vertex 46264 0.532101 0.399407 0.437756 Vertex 46265 0.47224 0.0798079 0.720107 Vertex 46266 0.517507 0.353678 0.4823 Vertex 46267 0.391538 0.883738 0.390742 Vertex 46268 0.599495 0.537476 0.282067 Vertex 46269 0.582603 0.411424 0.399715 Vertex 46270 0.311784 0.989742 0.229254 Vertex 46271 0.385527 0.353873 0.331331 Vertex 46272 0.387102 0.203947 0.477823 Vertex 46273 0.462095 0.658695 0.500376 Vertex 46274 0.525284 0.164964 0.441434 Vertex 46275 0.358881 0.415256 0.522071 Vertex 46276 0.423408 0.235568 0.458568 Vertex 46277 0.512734 0.0852508 0.800418 Vertex 46278 0.456818 0.469264 0.402273 Vertex 46279 0.395968 0.84822 0.38322 Vertex 46280 0.406185 0.455198 0.599521 Vertex 46281 0.406712 0.453623 0.599527 Vertex 46282 0.522986 0.0745308 0.66059 Vertex 46283 0.430894 0.155908 0.749969 Vertex 46284 0.50963 0.598603 0.560059 Vertex 46285 0.475391 0.462003 0.381271 Vertex 46286 0.392433 0.457123 0.59117 Vertex 46287 0.472513 0.262658 0.444312 Vertex 46288 0.449367 0.753084 0.434765 Vertex 46289 0.473016 0.061418 0.653009 Vertex 46290 0.46967 0.168435 0.671423 Vertex 46291 0.500409 0.246963 0.528319 Vertex 46292 0.448123 0.617811 0.479173 Vertex 46293 0.321147 0.929384 0.269677 Vertex 46294 0.439097 0.144697 0.754091 Vertex 46295 0.472033 0.205416 0.791789 Vertex 46296 0.472868 0.207044 0.78942 Vertex 46297 0.463362 0.701646 0.484788 Vertex 46298 0.467958 0.19697 0.483266 Vertex 46299 0.367451 0.419591 0.326789 Vertex 46300 0.356867 0.108266 0.476437 Vertex 46301 0.357915 0.10829 0.478557 Vertex 46302 0.453045 0.0889998 0.661058 Vertex 46303 0.480485 0.210539 0.76657 Vertex 46304 0.601574 0.442008 0.186546 Vertex 46305 0.548056 0.589518 0.463626 Vertex 46306 0.379036 0.0760055 0.465912 Vertex 46307 0.403159 0.369704 0.244304 Vertex 46308 0.447401 0.329472 0.417832 Vertex 46309 0.472489 0.566041 0.424376 Vertex 46310 0.348617 0.161754 0.472445 Vertex 46311 0.586595 0.434948 0.439065 Vertex 46312 0.586957 0.433432 0.434931 Vertex 46313 0.410757 0.280669 0.223539 Vertex 46314 0.463232 0.611396 0.528864 Vertex 46315 0.520741 0.165035 0.779097 Vertex 46316 0.373154 0.362958 0.225884 Vertex 46317 0.500711 0.402107 0.598568 Vertex 46318 0.375962 0.225831 0.586012 Vertex 46319 0.37746 0.224386 0.58767 Vertex 46320 0.369139 0.386424 0.254609 Vertex 46321 0.475658 0.634341 0.528219 Vertex 46322 0.476943 0.631729 0.529687 Vertex 46323 0.409425 0.1781 0.586278 Vertex 46324 0.427856 0.231108 0.781294 Vertex 46325 0.566334 0.464378 0.322228 Vertex 46326 0.446815 0.599883 0.493535 Vertex 46327 0.374552 0.236912 0.238458 Vertex 46328 0.593175 0.433101 0.337763 Vertex 46329 0.323671 0.964766 0.22191 Vertex 46330 0.322616 0.972009 0.212576 Vertex 46331 0.621255 0.505221 0.187588 Vertex 46332 0.462166 0.183626 0.667869 Vertex 46333 0.516471 0.0965927 0.660744 Vertex 46334 0.364069 0.901962 0.349733 Vertex 46335 0.495499 0.70363 0.527484 Vertex 46336 0.593128 0.455932 0.439823 Vertex 46337 0.598452 0.429038 0.384061 Vertex 46338 0.599643 0.43175 0.384345 Vertex 46339 0.445944 0.249386 0.725094 Vertex 46340 0.505117 0.0906641 0.809426 Vertex 46341 0.39704 0.438247 0.598278 Vertex 46342 0.634172 0.460226 0.184568 Vertex 46343 0.456214 0.725662 0.459764 Vertex 46344 0.414654 0.175654 0.557257 Vertex 46345 0.502819 0.365772 0.602791 Vertex 46346 0.400156 0.3285 0.231156 Vertex 46347 0.383578 0.430903 0.338877 Vertex 46348 0.382293 0.429198 0.346168 Vertex 46349 0.453318 0.77671 0.403754 Vertex 46350 0.547204 0.582174 0.464538 Vertex 46351 0.323511 0.986686 0.205913 Vertex 46352 0.478803 0.079263 0.714729 Vertex 46353 0.490085 0.174227 0.470319 Vertex 46354 0.352585 0.4045 0.479493 Vertex 46355 0.525343 0.601215 0.545394 Vertex 46356 0.481219 0.0843032 0.717465 Vertex 46357 0.525989 0.14048 0.790018 Vertex 46358 0.532835 0.588695 0.542824 Vertex 46359 0.365716 0.169844 0.480914 Vertex 46360 0.375067 0.342549 0.392098 Vertex 46361 0.377016 0.387952 0.555214 Vertex 46362 0.375719 0.185107 0.547722 Vertex 46363 0.536768 0.120029 0.44109 Vertex 46364 0.456587 0.727623 0.441173 Vertex 46365 0.396756 0.852419 0.360015 Vertex 46366 0.38327 0.233596 0.683629 Vertex 46367 0.466608 0.204136 0.675343 Vertex 46368 0.547671 0.0421338 0.72077 Vertex 46369 0.488984 0.494809 0.391216 Vertex 46370 0.568537 0.431247 0.342004 Vertex 46371 0.43732 0.860504 0.391512 Vertex 46372 0.471536 0.216935 0.778984 Vertex 46373 0.380262 0.175548 0.505416 Vertex 46374 0.377407 0.178089 0.507483 Vertex 46375 0.402821 0.244381 0.739592 Vertex 46376 0.364981 0.30956 0.484634 Vertex 46377 0.473591 0.194708 0.79584 Vertex 46378 0.405083 0.164271 0.685732 Vertex 46379 0.600241 0.451662 0.185456 Vertex 46380 0.486212 0.414391 0.616259 Vertex 46381 0.396946 0.363201 0.376853 Vertex 46382 0.429929 0.836025 0.354098 Vertex 46383 0.398492 0.468062 0.414243 Vertex 46384 0.483606 0.124323 0.804961 Vertex 46385 0.450072 0.241372 0.704364 Vertex 46386 0.399717 0.364883 0.237884 Vertex 46387 0.418788 0.147924 0.651996 Vertex 46388 0.602853 0.4374 0.205125 Vertex 46389 0.621302 0.477177 0.358339 Vertex 46390 0.456628 0.180564 0.801774 Vertex 46391 0.416899 0.385091 0.36027 Vertex 46392 0.646189 0.509059 0.217391 Vertex 46393 0.513995 0.626541 0.423707 Vertex 46394 0.509198 0.760026 0.459954 Vertex 46395 0.435692 0.255042 0.687775 Vertex 46396 0.419316 0.140237 0.680437 Vertex 46397 0.383821 0.467878 0.571827 Vertex 46398 0.48007 0.059813 0.696179 Vertex 46399 0.580418 0.509959 0.463952 Vertex 46400 0.518402 0.119318 0.685708 Vertex 46401 0.489564 0.353239 0.625824 Vertex 46402 0.647533 0.421545 0.218647 Vertex 46403 0.458885 0.28947 0.633198 Vertex 46404 0.47824 0.342229 0.630479 Vertex 46405 0.333579 0.956474 0.256943 Vertex 46406 0.470576 0.563002 0.426621 Vertex 46407 0.412451 0.886131 0.35905 Vertex 46408 0.492401 0.771942 0.420106 Vertex 46409 0.452062 0.162761 0.800181 Vertex 46410 0.530235 0.141546 0.787116 Vertex 46411 0.430711 0.815195 0.385435 Vertex 46412 0.531189 0.422736 0.5696 Vertex 46413 0.444955 0.526051 0.579692 Vertex 46414 0.471163 0.221762 0.594558 Vertex 46415 0.437066 0.780477 0.426526 Vertex 46416 0.347296 0.900712 0.288078 Vertex 46417 0.553671 0.513821 0.433693 Vertex 46418 0.371863 0.374709 0.533454 Vertex 46419 0.400428 0.515396 0.511677 Vertex 46420 0.570782 0.437519 0.486789 Vertex 46421 0.552889 0.548166 0.471243 Vertex 46422 0.420559 0.373886 0.428605 Vertex 46423 0.420423 0.365624 0.6353 Vertex 46424 0.465791 0.383806 0.400384 Vertex 46425 0.438967 0.530588 0.451686 Vertex 46426 0.358833 0.433409 0.504326 Vertex 46427 0.48591 0.250463 0.598722 Vertex 46428 0.361487 0.233797 0.22871 Vertex 46429 0.526812 0.709647 0.476437 Vertex 46430 0.322178 0.236599 0.229722 Vertex 46431 0.364892 0.111701 0.460913 Vertex 46432 0.466507 0.525589 0.418703 Vertex 46433 0.535435 0.67481 0.459859 Vertex 46434 0.475397 0.174565 0.685536 Vertex 46435 0.423538 0.388876 0.419698 Vertex 46436 0.425659 0.389723 0.420337 Vertex 46437 0.414181 0.190206 0.762347 Vertex 46438 0.537828 0.634376 0.512488 Vertex 46439 0.480153 0.386181 0.405116 Vertex 46440 0.443154 0.396356 0.645019 Vertex 46441 0.408264 0.827319 0.399797 Vertex 46442 0.49252 0.490864 0.391636 Vertex 46443 0.525734 0.133722 0.716796 Vertex 46444 0.496529 0.318983 0.444028 Vertex 46445 0.398343 0.269037 0.227655 Vertex 46446 0.465187 0.0780192 0.70774 Vertex 46447 0.321195 0.974319 0.201809 Vertex 46448 0.419647 0.467251 0.598414 Vertex 46449 0.360853 0.92772 0.29072 Vertex 46450 0.521422 0.569961 0.565857 Vertex 46451 0.376696 0.346482 0.46821 Vertex 46452 0.633171 0.51757 0.23805 Vertex 46453 0.505455 0.433841 0.604804 Vertex 46454 0.527232 0.0878035 0.710897 Vertex 46455 0.351057 0.0860622 0.451413 Vertex 46456 0.416573 0.390481 0.299882 Vertex 46457 0.403774 0.338605 0.206411 Vertex 46458 0.624678 0.527383 0.233987 Vertex 46459 0.501877 0.391002 0.447469 Vertex 46460 0.3591 0.261071 0.218736 Vertex 46461 0.370181 0.323324 0.486837 Vertex 46462 0.406564 0.857524 0.411968 Vertex 46463 0.549679 0.459498 0.377244 Vertex 46464 0.616842 0.476158 0.297353 Vertex 46465 0.520646 0.166024 0.444135 Vertex 46466 0.49554 0.76503 0.484811 Vertex 46467 0.371994 0.37879 0.551015 Vertex 46468 0.369915 0.894583 0.355638 Vertex 46469 0.353971 0.195839 0.509544 Vertex 46470 0.398326 0.312035 0.237931 Vertex 46471 0.514327 0.68829 0.426947 Vertex 46472 0.51223 0.126934 0.698075 Vertex 46473 0.387144 0.224048 0.47511 Vertex 46474 0.394393 0.323662 0.208774 Vertex 46475 0.499402 0.751574 0.422155 Vertex 46476 0.439618 0.546312 0.474358 Vertex 46477 0.379687 0.872118 0.323182 Vertex 46478 0.399102 0.374981 0.237226 Vertex 46479 0.522577 0.46057 0.408379 Vertex 46480 0.405267 0.481258 0.423464 Vertex 46481 0.497447 0.0571537 0.725881 Vertex 46482 0.485501 0.08133 0.711845 Vertex 46483 0.407814 0.342519 0.221614 Vertex 46484 0.502138 0.249291 0.536569 Vertex 46485 0.50218 0.249848 0.536706 Vertex 46486 0.506402 0.632463 0.555901 Vertex 46487 0.472554 0.145934 0.799234 Vertex 46488 0.404687 0.459326 0.59656 Vertex 46489 0.405066 0.458278 0.597697 Vertex 46490 0.555555 0.519305 0.442464 Vertex 46491 0.455325 0.173096 0.635981 Vertex 46492 0.379616 0.35164 0.454221 Vertex 46493 0.492727 0.64865 0.536339 Vertex 46494 0.371407 0.420693 0.401699 Vertex 46495 0.36847 0.269558 0.476354 Vertex 46496 0.44438 0.226453 0.464372 Vertex 46497 0.446311 0.227039 0.464497 Vertex 46498 0.49525 0.634667 0.546567 Vertex 46499 0.396703 0.253863 0.712644 Vertex 46500 0.397834 0.255178 0.712638 Vertex 46501 0.374801 0.465563 0.542759 Vertex 46502 0.392764 0.352422 0.300113 Vertex 46503 0.459619 0.196206 0.619333 Vertex 46504 0.364193 0.119715 0.475679 Vertex 46505 0.39771 0.447718 0.597834 Vertex 46506 0.453839 0.793323 0.378257 Vertex 46507 0.469338 0.79292 0.482122 Vertex 46508 0.447691 0.799684 0.376403 Vertex 46509 0.555945 0.154244 0.43727 Vertex 46510 0.409537 0.236901 0.749957 Vertex 46511 0.358182 0.892243 0.295191 Vertex 46512 0.480035 0.42597 0.613754 Vertex 46513 0.491744 0.176703 0.51372 Vertex 46514 0.468515 0.0649834 0.698033 Vertex 46515 0.539907 0.579698 0.53038 Vertex 46516 0.545166 0.0275818 0.722938 Vertex 46517 0.555969 0.451633 0.340962 Vertex 46518 0.52693 0.398779 0.457425 Vertex 46519 0.405285 0.426361 0.60529 Vertex 46520 0.395252 0.168731 0.526163 Vertex 46521 0.354818 0.290364 0.518517 Vertex 46522 0.42066 0.834651 0.355052 Vertex 46523 0.457268 0.173955 0.563589 Vertex 46524 0.477666 0.143571 0.797534 Vertex 46525 0.451718 0.628548 0.457697 Vertex 46526 0.398047 0.3224 0.222017 Vertex 46527 0.423651 0.843351 0.434848 Vertex 46528 0.446767 0.369296 0.413615 Vertex 46529 0.453928 0.827283 0.447552 Vertex 46530 0.487041 0.26806 0.45412 Vertex 46531 0.510228 0.705288 0.423915 Vertex 46532 0.414216 0.880119 0.389759 Vertex 46533 0.355132 0.404796 0.45367 Vertex 46534 0.403674 0.37465 0.244162 Vertex 46535 0.485217 0.577448 0.405987 Vertex 46536 0.365662 0.343301 0.515923 Vertex 46537 0.377348 0.87653 0.364558 Vertex 46538 0.493094 0.0796717 0.768394 Vertex 46539 0.610635 0.49597 0.225037 Vertex 46540 0.331518 0.246803 0.229201 Vertex 46541 0.523193 0.064711 0.67362 Vertex 46542 0.393339 0.290939 0.23606 Vertex 46543 0.546369 0.60452 0.468346 Vertex 46544 0.40885 0.190088 0.74792 Vertex 46545 0.39293 0.17919 0.552661 Vertex 46546 0.533801 0.622223 0.528266 Vertex 46547 0.597256 0.534467 0.28196 Vertex 46548 0.453631 0.776674 0.397606 Vertex 46549 0.486117 0.168731 0.683232 Vertex 46550 0.436556 0.257423 0.735488 Vertex 46551 0.464843 0.329928 0.417998 Vertex 46552 0.451191 0.158994 0.50557 Vertex 46553 0.532154 0.473292 0.58632 Vertex 46554 0.422502 0.812873 0.393964 Vertex 46555 0.588254 0.488703 0.401414 Vertex 46556 0.40869 0.376178 0.368585 Vertex 46557 0.525231 0.02282 0.655348 Vertex 46558 0.404077 0.166077 0.627441 Vertex 46559 0.63477 0.48461 0.187008 Vertex 46560 0.462883 0.218919 0.785558 Vertex 46561 0.404142 0.191948 0.476383 Vertex 46562 0.459116 0.0690642 0.663095 Vertex 46563 0.533712 0.598953 0.437566 Vertex 46564 0.458233 0.204284 0.618699 Vertex 46565 0.431658 0.166652 0.564921 Vertex 46566 0.431925 0.165888 0.566586 Vertex 46567 0.523762 0.0371529 0.636064 Vertex 46568 0.375594 0.320588 0.205972 Vertex 46569 0.443794 0.850873 0.410215 Vertex 46570 0.351655 0.375775 0.447581 Vertex 46571 0.406061 0.361075 0.310383 Vertex 46572 0.39139 0.352641 0.416677 Vertex 46573 0.420778 0.849025 0.432941 Vertex 46574 0.555584 0.0027422 0.757651 Vertex 46575 0.400636 0.358244 0.306439 Vertex 46576 0.384597 0.219044 0.694 Vertex 46577 0.508967 0.0820644 0.637426 Vertex 46578 0.662986 0.476496 0.192261 Vertex 46579 0.42406 0.423423 0.613179 Vertex 46580 0.362985 0.256066 0.56716 Vertex 46581 0.490044 0.387982 0.42613 Vertex 46582 0.516062 0.721238 0.438153 Vertex 46583 0.355191 0.362295 0.401835 Vertex 46584 0.307525 0.989742 0.227791 Vertex 46585 0.524496 0.517658 0.588612 Vertex 46586 0.548708 0.568854 0.499203 Vertex 46587 0.617121 0.478184 0.287018 Vertex 46588 0.463972 0.493139 0.610182 Vertex 46589 0.54596 0.614654 0.484829 Vertex 46590 0.41299 0.2775 0.641857 Vertex 46591 0.448935 0.0962373 0.716684 Vertex 46592 0.533339 0.52614 0.424104 Vertex 46593 0.380949 0.187991 0.47803 Vertex 46594 0.499793 0.406532 0.421125 Vertex 46595 0.381961 0.236042 0.231357 Vertex 46596 0.517039 0.183993 0.4684 Vertex 46597 0.513148 0.710921 0.501383 Vertex 46598 0.513942 0.709979 0.501247 Vertex 46599 0.37457 0.351451 0.467843 Vertex 46600 0.375435 0.349259 0.469501 Vertex 46601 0.536602 0.00873001 0.737608 Vertex 46602 0.555643 0.55824 0.517854 Vertex 46603 0.453472 0.778765 0.393638 Vertex 46604 0.431404 0.864768 0.373998 Vertex 46605 0.402821 0.364664 0.414539 Vertex 46606 0.474692 0.0621524 0.695368 Vertex 46607 0.494243 0.388213 0.611088 Vertex 46608 0.485661 0.339475 0.628927 Vertex 46609 0.509287 0.171005 0.472036 Vertex 46610 0.397082 0.852615 0.393579 Vertex 46611 0.516335 0.336028 0.575807 Vertex 46612 0.517229 0.336952 0.573734 Vertex 46613 0.444428 0.447001 0.402208 Vertex 46614 0.427122 0.170892 0.774767 Vertex 46615 0.42984 0.171195 0.778848 Vertex 46616 0.424723 0.549203 0.519962 Vertex 46617 0.486538 0.79969 0.444448 Vertex 46618 0.519586 0.698762 0.435037 Vertex 46619 0.518171 0.702404 0.435008 Vertex 46620 0.460371 0.598722 0.532643 Vertex 46621 0.462498 0.304336 0.424998 Vertex 46622 0.467763 0.224605 0.739622 Vertex 46623 0.461686 0.517196 0.592237 Vertex 46624 0.313484 0.94505 0.266656 Vertex 46625 0.4992 0.464473 0.390481 Vertex 46626 0.501931 0.24996 0.528355 Vertex 46627 0.497743 0.0490989 0.734771 Vertex 46628 0.394239 0.324141 0.450039 Vertex 46629 0.431498 0.164668 0.569689 Vertex 46630 0.554992 0.478687 0.364487 Vertex 46631 0.485069 0.425999 0.374756 Vertex 46632 0.39049 0.329116 0.211706 Vertex 46633 0.577569 0.518772 0.466019 Vertex 46634 0.653373 0.486967 0.225073 Vertex 46635 0.360515 0.220388 0.492706 Vertex 46636 0.378118 0.196123 0.563926 Vertex 46637 0.452275 0.161754 0.498901 Vertex 46638 0.484933 0.103664 0.791279 Vertex 46639 0.3669 0.359446 0.273242 Vertex 46640 0.417634 0.34801 0.637314 Vertex 46641 0.50048 0.0471089 0.633358 Vertex 46642 0.510809 0.272288 0.526246 Vertex 46643 0.572754 0.422055 0.466019 Vertex 46644 0.383472 0.410073 0.57804 Vertex 46645 0.428656 0.551968 0.538583 Vertex 46646 0.372177 0.220619 0.21013 Vertex 46647 0.419955 0.813815 0.418229 Vertex 46648 0.67463 0.466244 0.193185 Vertex 46649 0.446406 0.459658 0.405933 Vertex 46650 0.491448 0.0507276 0.689019 Vertex 46651 0.49467 0.0970547 0.802017 Vertex 46652 0.463102 0.185095 0.660851 Vertex 46653 0.478181 0.808449 0.421628 Vertex 46654 0.55087 0.445041 0.364475 Vertex 46655 0.474444 0.1858 0.79799 Vertex 46656 0.450723 0.185202 0.607055 Vertex 46657 0.474432 0.164869 0.666844 Vertex 46658 0.383495 0.227963 0.669136 Vertex 46659 0.489191 0.24739 0.472208 Vertex 46660 0.564533 0.443501 0.509687 Vertex 46661 0.561649 0.442725 0.513773 Vertex 46662 0.333396 0.244991 0.211356 Vertex 46663 0.469753 0.109267 0.644711 Vertex 46664 0.492887 0.176241 0.710885 Vertex 46665 0.428389 0.83798 0.352073 Vertex 46666 0.65887 0.429061 0.231623 Vertex 46667 0.400482 0.345706 0.215922 Vertex 46668 0.566138 0.458817 0.323697 Vertex 46669 0.360509 0.242871 0.559087 Vertex 46670 0.39036 0.07459 0.468257 Vertex 46671 0.39646 0.29451 0.198788 Vertex 46672 0.606507 0.504948 0.215028 Vertex 46673 0.460194 0.122285 0.787359 Vertex 46674 0.425031 0.225233 0.204444 Vertex 46675 0.36613 0.446598 0.540745 Vertex 46676 0.511626 0.29409 0.567551 Vertex 46677 0.386178 0.426248 0.363539 Vertex 46678 0.481669 0.370818 0.628116 Vertex 46679 0.514771 0.477556 0.602666 Vertex 46680 0.515819 0.474293 0.601819 Vertex 46681 0.504519 0.594742 0.567397 Vertex 46682 0.423823 0.229705 0.462862 Vertex 46683 0.425617 0.252122 0.21103 Vertex 46684 0.645549 0.434605 0.201915 Vertex 46685 0.520214 0.387194 0.484651 Vertex 46686 0.461355 0.821485 0.396653 Vertex 46687 0.471571 0.316957 0.424904 Vertex 46688 0.439068 0.498096 0.43101 Vertex 46689 0.452767 0.573462 0.545003 Vertex 46690 0.519722 0.393182 0.549203 Vertex 46691 0.356393 0.391565 0.4174 Vertex 46692 0.438416 0.150696 0.756105 Vertex 46693 0.437131 0.152058 0.756188 Vertex 46694 0.540819 0.40145 0.452142 Vertex 46695 0.513208 0.645629 0.536617 Vertex 46696 0.5103 0.650634 0.538761 Vertex 46697 0.432849 0.46317 0.411169 Vertex 46698 0.545871 0.398643 0.484764 Vertex 46699 0.548601 0.571152 0.496663 Vertex 46700 0.369524 0.417038 0.366311 Vertex 46701 0.37659 0.209224 0.48124 Vertex 46702 0.608633 0.49822 0.195412 Vertex 46703 0.442307 0.565146 0.473854 Vertex 46704 0.490245 0.199155 0.748761 Vertex 46705 0.481539 0.35504 0.424525 Vertex 46706 0.362961 0.203331 0.474589 Vertex 46707 0.498046 0.488519 0.605349 Vertex 46708 0.547974 0.550044 0.444721 Vertex 46709 0.448502 0.153119 0.785327 Vertex 46710 0.398948 0.186185 0.578336 Vertex 46711 0.503252 0.679092 0.414012 Vertex 46712 0.562691 0.537067 0.510374 Vertex 46713 0.620242 0.499458 0.353565 Vertex 46714 0.57719 0.406822 0.397636 Vertex 46715 0.595142 0.443554 0.408054 Vertex 46716 0.494314 0.0545359 0.746747 Vertex 46717 0.452927 0.191853 0.58414 Vertex 46718 0.441449 0.142659 0.758255 Vertex 46719 0.529406 0.591253 0.54707 Vertex 46720 0.665669 0.408397 0.228307 Vertex 46721 0.380931 0.470781 0.55936 Vertex 46722 0.398634 0.898314 0.365185 Vertex 46723 0.608266 0.500056 0.193458 Vertex 46724 0.40198 0.234028 0.735506 Vertex 46725 0.441762 0.116759 0.720196 Vertex 46726 0.49419 0.054453 0.731869 Vertex 46727 0.522251 0.59868 0.428688 Vertex 46728 0.544349 0.507146 0.417779 Vertex 46729 0.69424 0.454979 0.203633 Vertex 46730 0.410615 0.455168 0.600155 Vertex 46731 0.604257 0.51613 0.35411 Vertex 46732 0.606104 0.515165 0.356059 Vertex 46733 0.336612 0.930219 0.305817 Vertex 46734 0.524526 0.357735 0.500743 Vertex 46735 0.422259 0.505517 0.448482 Vertex 46736 0.432043 0.464964 0.410488 Vertex 46737 0.47561 0.0773026 0.7278 Vertex 46738 0.476908 0.0765445 0.726936 Vertex 46739 0.459412 0.612415 0.518908 Vertex 46740 0.416218 0.46439 0.599101 Vertex 46741 0.429058 0.260976 0.679495 Vertex 46742 0.414382 0.415718 0.363876 Vertex 46743 0.459667 0.77713 0.474411 Vertex 46744 0.55771 0.48705 0.383125 Vertex 46745 0.5233 0.397701 0.478575 Vertex 46746 0.419239 0.225979 0.774737 Vertex 46747 0.416396 0.382249 0.39195 Vertex 46748 0.552789 0.504475 0.550997 Vertex 46749 0.461207 0.468512 0.399827 Vertex 46750 0.349085 0.151525 0.468275 Vertex 46751 0.542288 0.0744775 0.758172 Vertex 46752 0.531147 0.44173 0.403173 Vertex 46753 0.526634 0.346813 0.496704 Vertex 46754 0.428579 0.440699 0.393691 Vertex 46755 0.385758 0.34522 0.399377 Vertex 46756 0.529519 0.674502 0.443293 Vertex 46757 0.459525 0.393283 0.392442 Vertex 46758 0.434608 0.284329 0.637794 Vertex 46759 0.477458 0.16616 0.517866 Vertex 46760 0.371176 0.457703 0.45569 Vertex 46761 0.482824 0.196206 0.565531 Vertex 46762 0.482137 0.731591 0.399555 Vertex 46763 0.398959 0.360139 0.430181 Vertex 46764 0.41501 0.233187 0.208288 Vertex 46765 0.55684 0.00127929 0.749951 Vertex 46766 0.368997 0.425188 0.412253 Vertex 46767 0.469475 0.366317 0.412158 Vertex 46768 0.537283 0.531926 0.42652 Vertex 46769 0.474627 0.566674 0.56838 Vertex 46770 0.626852 0.490041 0.251559 Vertex 46771 0.382317 0.329892 0.263541 Vertex 46772 0.583675 0.475074 0.48262 Vertex 46773 0.646112 0.458053 0.191201 Vertex 46774 0.383128 0.377712 0.609264 Vertex 46775 0.458062 0.234982 0.762424 Vertex 46776 0.332898 0.936728 0.298798 Vertex 46777 0.628545 0.523344 0.229799 Vertex 46778 0.516814 0.361093 0.479321 Vertex 46779 0.386468 0.394544 0.260716 Vertex 46780 0.438896 0.225257 0.788549 Vertex 46781 0.493852 0.234875 0.557595 Vertex 46782 0.473342 0.591917 0.429014 Vertex 46783 0.490275 0.193363 0.460185 Vertex 46784 0.513533 0.158153 0.734588 Vertex 46785 0.324612 0.260621 0.20904 Vertex 46786 0.367711 0.361377 0.46192 Vertex 46787 0.302201 0.972785 0.234176 Vertex 46788 0.46925 0.269173 0.618841 Vertex 46789 0.607858 0.498013 0.198107 Vertex 46790 0.541364 0.645392 0.468115 Vertex 46791 0.509198 0.0305432 0.745788 Vertex 46792 0.467331 0.0776046 0.737389 Vertex 46793 0.373208 0.880416 0.360353 Vertex 46794 0.549306 0.531855 0.555155 Vertex 46795 0.473857 0.118613 0.815924 Vertex 46796 0.439115 0.260023 0.72719 Vertex 46797 0.510092 0.434741 0.413491 Vertex 46798 0.493444 0.761228 0.416008 Vertex 46799 0.453329 0.752522 0.457757 Vertex 46800 0.523205 0.690316 0.503397 Vertex 46801 0.390354 0.280124 0.23032 Vertex 46802 0.511579 0.61604 0.551015 Vertex 46803 0.43764 0.24479 0.768128 Vertex 46804 0.370868 0.248094 0.234638 Vertex 46805 0.592423 0.42732 0.194026 Vertex 46806 0.504217 0.0492351 0.676771 Vertex 46807 0.361564 0.282819 0.228194 Vertex 46808 0.612839 0.456791 0.35225 Vertex 46809 0.433394 0.863115 0.377682 Vertex 46810 0.466756 0.428813 0.373939 Vertex 46811 0.47262 0.768951 0.490568 Vertex 46812 0.473757 0.770201 0.492481 Vertex 46813 0.388772 0.267473 0.198498 Vertex 46814 0.534944 0.0919967 0.723021 Vertex 46815 0.363536 0.24136 0.213642 Vertex 46816 0.393913 0.43929 0.38916 Vertex 46817 0.437178 0.179516 0.792671 Vertex 46818 0.491122 0.118761 0.798778 Vertex 46819 0.505591 0.294599 0.584128 Vertex 46820 0.389051 0.306539 0.61925 Vertex 46821 0.478062 0.532341 0.401959 Vertex 46822 0.451523 0.185367 0.611207 Vertex 46823 0.425297 0.548966 0.536528 Vertex 46824 0.501647 0.600984 0.407088 Vertex 46825 0.560233 0.509278 0.421723 Vertex 46826 0.524662 0.348324 0.534544 Vertex 46827 0.62636 0.525482 0.231754 Vertex 46828 0.611234 0.452373 0.35411 Vertex 46829 0.396507 0.259857 0.682226 Vertex 46830 0.439796 0.259371 0.731324 Vertex 46831 0.452785 0.366494 0.635893 Vertex 46832 0.530004 0.478747 0.407538 Vertex 46833 0.528056 0.477829 0.408681 Vertex 46834 0.467603 0.154262 0.799832 Vertex 46835 0.549999 0.438692 0.368952 Vertex 46836 0.52115 0.380116 0.441837 Vertex 46837 0.468645 0.485445 0.611426 Vertex 46838 0.324494 0.235118 0.225553 Vertex 46839 0.533066 0.170774 0.451929 Vertex 46840 0.416431 0.869636 0.347394 Vertex 46841 0.530591 0.0653092 0.717371 Vertex 46842 0.413896 0.819347 0.402516 Vertex 46843 0.424907 0.872065 0.390996 Vertex 46844 0.374937 0.397683 0.537292 Vertex 46845 0.402264 0.894506 0.347121 Vertex 46846 0.456391 0.714101 0.452391 Vertex 46847 0.505431 0.357048 0.598609 Vertex 46848 0.416295 0.367554 0.341667 Vertex 46849 0.387363 0.455749 0.417589 Vertex 46850 0.510868 0.300936 0.475063 Vertex 46851 0.484423 0.576654 0.568931 Vertex 46852 0.395382 0.24181 0.716684 Vertex 46853 0.433619 0.530617 0.480968 Vertex 46854 0.442894 0.166391 0.575724 Vertex 46855 0.474384 0.173712 0.495703 Vertex 46856 0.362334 0.228171 0.56074 Vertex 46857 0.472205 0.173996 0.681266 Vertex 46858 0.513148 0.33447 0.458663 Vertex 46859 0.3997 0.198107 0.475459 Vertex 46860 0.55379 0.511428 0.548948 Vertex 46861 0.55559 0.511232 0.544826 Vertex 46862 0.570876 0.500951 0.410204 Vertex 46863 0.377987 0.425656 0.576038 Vertex 46864 0.379906 0.426633 0.580267 Vertex 46865 0.365378 0.389374 0.291833 Vertex 46866 0.463955 0.256824 0.445372 Vertex 46867 0.473289 0.497172 0.60625 Vertex 46868 0.490755 0.0615542 0.735648 Vertex 46869 0.342345 0.904574 0.312503 Vertex 46870 0.439749 0.163033 0.57361 Vertex 46871 0.355629 0.423541 0.471432 Vertex 46872 0.602444 0.531968 0.297732 Vertex 46873 0.433175 0.425437 0.394319 Vertex 46874 0.366776 0.267432 0.19575 Vertex 46875 0.415726 0.394212 0.370622 Vertex 46876 0.436485 0.840165 0.445455 Vertex 46877 0.428484 0.167179 0.559336 Vertex 46878 0.395589 0.409635 0.289056 Vertex 46879 0.450072 0.191474 0.472889 Vertex 46880 0.440892 0.51276 0.585094 Vertex 46881 0.553209 0.472593 0.362408 Vertex 46882 0.46755 0.18625 0.690849 Vertex 46883 0.480716 0.20843 0.776929 Vertex 46884 0.524034 0.0622412 0.724034 Vertex 46885 0.656417 0.431016 0.195963 Vertex 46886 0.357228 0.381591 0.391405 Vertex 46887 0.434839 0.561557 0.530297 Vertex 46888 0.371443 0.274983 0.234911 Vertex 46889 0.482593 0.737306 0.398317 Vertex 46890 0.66529 0.487174 0.215378 Vertex 46891 0.593021 0.4495 0.434605 Vertex 46892 0.459714 0.0857661 0.743797 Vertex 46893 0.456522 0.0834325 0.728997 Vertex 46894 0.475901 0.174719 0.796349 Vertex 46895 0.451884 0.241852 0.714729 Vertex 46896 0.619324 0.4849 0.304727 Vertex 46897 0.533475 0.103173 0.783094 Vertex 46898 0.530022 0.485273 0.410666 Vertex 46899 0.590001 0.478693 0.454677 Vertex 46900 0.483103 0.592237 0.418347 Vertex 46901 0.602622 0.47312 0.193156 Vertex 46902 0.603131 0.474287 0.191391 Vertex 46903 0.528672 0.0327464 0.657913 Vertex 46904 0.482238 0.685187 0.51006 Vertex 46905 0.411752 0.234342 0.208229 Vertex 46906 0.505739 0.085464 0.705969 Vertex 46907 0.460105 0.762868 0.399578 Vertex 46908 0.506787 0.198575 0.478723 Vertex 46909 0.382477 0.242178 0.602329 Vertex 46910 0.385627 0.238263 0.656681 Vertex 46911 0.428389 0.430305 0.614298 Vertex 46912 0.359994 0.338362 0.552987 Vertex 46913 0.361564 0.352825 0.252566 Vertex 46914 0.518881 0.0439284 0.77267 Vertex 46915 0.374913 0.379477 0.510385 Vertex 46916 0.449184 0.421309 0.633968 Vertex 46917 0.445375 0.823973 0.460185 Vertex 46918 0.494924 0.648152 0.404026 Vertex 46919 0.535299 0.526305 0.425952 Vertex 46920 0.387073 0.89296 0.315133 Vertex 46921 0.384342 0.892551 0.313771 Vertex 46922 0.491785 0.598503 0.400775 Vertex 46923 0.523762 0.155251 0.772747 Vertex 46924 0.531787 0.586385 0.545003 Vertex 46925 0.533392 0.56209 0.433894 Vertex 46926 0.374203 0.33896 0.602974 Vertex 46927 0.448123 0.244233 0.6318 Vertex 46928 0.520415 0.584738 0.424661 Vertex 46929 0.497607 0.116451 0.796112 Vertex 46930 0.424587 0.874617 0.378701 Vertex 46931 0.531692 0.134077 0.785019 Vertex 46932 0.532918 0.686561 0.47707 Vertex 46933 0.485732 0.573414 0.400573 Vertex 46934 0.609279 0.47495 0.218049 Vertex 46935 0.388044 0.877318 0.382634 Vertex 46936 0.572156 0.503255 0.503397 Vertex 46937 0.400564 0.458414 0.595002 Vertex 46938 0.569485 0.404139 0.422469 Vertex 46939 0.391088 0.277951 0.230013 Vertex 46940 0.389228 0.276588 0.228419 Vertex 46941 0.468243 0.465551 0.392098 Vertex 46942 0.469155 0.470129 0.392767 Vertex 46943 0.60091 0.435683 0.38486 Vertex 46944 0.436894 0.155049 0.770586 Vertex 46945 0.490293 0.239133 0.481335 Vertex 46946 0.477115 0.36178 0.4174 Vertex 46947 0.459453 0.187417 0.573906 Vertex 46948 0.504312 0.657368 0.546354 Vertex 46949 0.488877 0.182904 0.460907 Vertex 46950 0.370317 0.393365 0.52152 Vertex 46951 0.368896 0.360264 0.349964 Vertex 46952 0.540813 0.0639766 0.796995 Vertex 46953 0.503074 0.638966 0.41034 Vertex 46954 0.315965 0.966644 0.207358 Vertex 46955 0.381961 0.352458 0.351936 Vertex 46956 0.620242 0.484053 0.336283 Vertex 46957 0.551148 0.40742 0.400627 Vertex 46958 0.481924 0.747505 0.500566 Vertex 46959 0.617719 0.467606 0.357403 Vertex 46960 0.36565 0.322856 0.579343 Vertex 46961 0.494083 0.637231 0.542936 Vertex 46962 0.46755 0.191841 0.689629 Vertex 46963 0.457819 0.0866426 0.66059 Vertex 46964 0.556147 0.153048 0.435322 Vertex 46965 0.503192 0.266579 0.475134 Vertex 46966 0.353527 0.387158 0.480873 Vertex 46967 0.472158 0.401012 0.383895 Vertex 46968 0.473869 0.402617 0.383327 Vertex 46969 0.40837 0.1668 0.620499 Vertex 46970 0.407251 0.167209 0.619433 Vertex 46971 0.351827 0.119442 0.473037 Vertex 46972 0.352502 0.118068 0.472848 Vertex 46973 0.33936 0.0941999 0.45367 Vertex 46974 0.340325 0.0942236 0.451792 Vertex 46975 0.361884 0.307972 0.195418 Vertex 46976 0.359491 0.308707 0.196348 Vertex 46977 0.657478 0.489881 0.221537 Vertex 46978 0.479934 0.588837 0.424536 Vertex 46979 0.390514 0.197088 0.581297 Vertex 46980 0.410479 0.363332 0.343704 Vertex 46981 0.489854 0.256475 0.596619 Vertex 46982 0.381523 0.350118 0.374798 Vertex 46983 0.394689 0.256214 0.673247 Vertex 46984 0.303539 0.959169 0.230267 Vertex 46985 0.463268 0.20037 0.629994 Vertex 46986 0.516797 0.123031 0.689866 Vertex 46987 0.358549 0.389267 0.335448 Vertex 46988 0.359153 0.384357 0.3396 Vertex 46989 0.443758 0.165479 0.495596 Vertex 46990 0.550414 0.41323 0.521935 Vertex 46991 0.381091 0.394941 0.590418 Vertex 46992 0.405462 0.16038 0.634779 Vertex 46993 0.583042 0.502342 0.310792 Vertex 46994 0.609226 0.480517 0.278051 Vertex 46995 0.475326 0.671405 0.424933 Vertex 46996 0.623422 0.524096 0.295339 Vertex 46997 0.622996 0.522847 0.29942 Vertex 46998 0.596978 0.523747 0.20689 Vertex 46999 0.458233 0.209603 0.619528 Vertex 47000 0.516607 0.442251 0.414853 Vertex 47001 0.600774 0.43624 0.19177 Vertex 47002 0.498833 0.713947 0.412294 Vertex 47003 0.441976 0.189051 0.475921 Vertex 47004 0.543212 0.606818 0.515882 Vertex 47005 0.538799 0.116149 0.795372 Vertex 47006 0.534126 0.120366 0.435961 Vertex 47007 0.516743 0.335945 0.466966 Vertex 47008 0.35769 0.329567 0.539057 Vertex 47009 0.452192 0.264891 0.438928 Vertex 47010 0.371822 0.877525 0.314884 Vertex 47011 0.513095 0.436607 0.600398 Vertex 47012 0.546037 0.613185 0.499476 Vertex 47013 0.432097 0.259667 0.700219 Vertex 47014 0.588562 0.484971 0.455654 Vertex 47015 0.456226 0.174624 0.627761 Vertex 47016 0.413967 0.855144 0.342567 Vertex 47017 0.534701 0.587404 0.540692 Vertex 47018 0.374434 0.450981 0.561545 Vertex 47019 0.595142 0.431401 0.393348 Vertex 47020 0.656092 0.423423 0.203064 Vertex 47021 0.380611 0.413277 0.572052 Vertex 47022 0.351288 0.1927 0.47238 Vertex 47023 0.49894 0.184538 0.509604 Vertex 47024 0.471494 0.231748 0.600753 Vertex 47025 0.392083 0.895323 0.374733 Vertex 47026 0.461331 0.211741 0.794578 Vertex 47027 0.385734 0.339795 0.272774 Vertex 47028 0.437273 0.152858 0.764509 Vertex 47029 0.460259 0.526785 0.584519 Vertex 47030 0.454638 0.811091 0.379098 Vertex 47031 0.400144 0.183271 0.708498 Vertex 47032 0.441662 0.836446 0.448807 Vertex 47033 0.521718 0.140699 0.714593 Vertex 47034 0.374653 0.460179 0.553123 Vertex 47035 0.470819 0.556197 0.426213 Vertex 47036 0.607259 0.482744 0.187583 Vertex 47037 0.406979 0.36191 0.244245 Vertex 47038 0.422561 0.438449 0.38871 Vertex 47039 0.37168 0.368857 0.503397 Vertex 47040 0.351791 0.917355 0.331006 Vertex 47041 0.439429 0.16744 0.553283 Vertex 47042 0.518212 0.579426 0.56363 Vertex 47043 0.55225 0.0390304 0.785049 Vertex 47044 0.393214 0.336952 0.262753 Vertex 47045 0.387991 0.301617 0.193138 Vertex 47046 0.387256 0.303655 0.193126 Vertex 47047 0.443439 0.379033 0.416689 Vertex 47048 0.553304 0.470727 0.366542 Vertex 47049 0.594644 0.463454 0.434605 Vertex 47050 0.416532 0.414113 0.371659 Vertex 47051 0.514978 0.0287249 0.664351 Vertex 47052 0.604955 0.490586 0.206168 Vertex 47053 0.410834 0.86921 0.341098 Vertex 47054 0.483245 0.444839 0.378428 Vertex 47055 0.426073 0.448559 0.396356 Vertex 47056 0.544598 0.399478 0.451141 Vertex 47057 0.547115 0.398672 0.453338 Vertex 47058 0.362381 0.401693 0.391405 Vertex 47059 0.411628 0.170567 0.607037 Vertex 47060 0.419375 0.382343 0.352019 Vertex 47061 0.347906 0.129617 0.471515 Vertex 47062 0.350553 0.12896 0.472516 Vertex 47063 0.444576 0.569594 0.472155 Vertex 47064 0.40747 0.178497 0.590395 Vertex 47065 0.469131 0.220145 0.774868 Vertex 47066 0.635635 0.518055 0.250505 Vertex 47067 0.547837 0.454102 0.548972 Vertex 47068 0.517093 0.0604467 0.674508 Vertex 47069 0.550124 0.0446332 0.787353 Vertex 47070 0.44069 0.816611 0.365239 Vertex 47071 0.385787 0.369296 0.615015 Vertex 47072 0.437303 0.257914 0.441635 Vertex 47073 0.393617 0.255859 0.689155 Vertex 47074 0.373308 0.306385 0.193997 Vertex 47075 0.48649 0.570992 0.573361 Vertex 47076 0.35894 0.225813 0.501472 Vertex 47077 0.401151 0.391127 0.255669 Vertex 47078 0.524472 0.461458 0.407864 Vertex 47079 0.511603 0.530736 0.589027 Vertex 47080 0.523833 0.125057 0.711904 Vertex 47081 0.476197 0.135818 0.805689 Vertex 47082 0.42939 0.114858 0.670232 Vertex 47083 0.458453 0.537973 0.578703 Vertex 47084 0.475439 0.176786 0.492801 Vertex 47085 0.461118 0.282612 0.632167 Vertex 47086 0.590327 0.516841 0.352019 Vertex 47087 0.606703 0.453528 0.38463 Vertex 47088 0.485081 0.69891 0.507572 Vertex 47089 0.389833 0.197811 0.577306 Vertex 47090 0.492058 0.214922 0.538856 Vertex 47091 0.492656 0.215532 0.536664 Vertex 47092 0.450765 0.796645 0.464195 Vertex 47093 0.449728 0.239092 0.640104 Vertex 47094 0.349061 0.265353 0.223569 Vertex 47095 0.444297 0.138306 0.625415 Vertex 47096 0.404675 0.399703 0.286296 Vertex 47097 0.462332 0.479025 0.617017 Vertex 47098 0.384632 0.279171 0.609045 Vertex 47099 0.39139 0.31181 0.200097 Vertex 47100 0.517247 0.296565 0.534461 Vertex 47101 0.380309 0.353186 0.45248 Vertex 47102 0.551729 0.0578585 0.740493 Vertex 47103 0.386249 0.183745 0.556523 Vertex 47104 0.561377 0.530617 0.517854 Vertex 47105 0.5355 0.152195 0.459859 Vertex 47106 0.420257 0.257346 0.443471 Vertex 47107 0.463404 0.207536 0.639677 Vertex 47108 0.356944 0.270429 0.521567 Vertex 47109 0.577948 0.406496 0.374816 Vertex 47110 0.42185 0.374022 0.633914 Vertex 47111 0.640953 0.483408 0.231321 Vertex 47112 0.55357 0.528669 0.448991 Vertex 47113 0.454834 0.509195 0.42013 Vertex 47114 0.621338 0.498066 0.184426 Vertex 47115 0.488232 0.104914 0.804096 Vertex 47116 0.505591 0.135694 0.669065 Vertex 47117 0.528577 0.348987 0.50326 Vertex 47118 0.544124 0.434267 0.551015 Vertex 47119 0.532427 0.521206 0.421534 Vertex 47120 0.453543 0.594144 0.520099 Vertex 47121 0.452761 0.595796 0.518055 Vertex 47122 0.467159 0.557642 0.428031 Vertex 47123 0.46646 0.350029 0.413822 Vertex 47124 0.373024 0.322359 0.256185 Vertex 47125 0.443166 0.457419 0.407035 Vertex 47126 0.456699 0.405827 0.626321 Vertex 47127 0.432126 0.11638 0.669142 Vertex 47128 0.389074 0.328726 0.456175 Vertex 47129 0.588573 0.506666 0.279254 Vertex 47130 0.385941 0.859449 0.358013 Vertex 47131 0.320928 0.929408 0.277074 Vertex 47132 0.411006 0.159047 0.633731 Vertex 47133 0.47654 0.752681 0.393253 Vertex 47134 0.519314 0.432117 0.419929 Vertex 47135 0.571795 0.519933 0.495046 Vertex 47136 0.370625 0.366234 0.565555 Vertex 47137 0.494332 0.283962 0.452243 Vertex 47138 0.383762 0.214365 0.618995 Vertex 47139 0.60091 0.521301 0.204261 Vertex 47140 0.450167 0.25609 0.630331 Vertex 47141 0.552066 0.437383 0.364641 Vertex 47142 0.461728 0.214691 0.630349 Vertex 47143 0.485638 0.597401 0.410079 Vertex 47144 0.484465 0.593658 0.41015 Vertex 47145 0.527919 0.553858 0.57194 Vertex 47146 0.514244 0.285768 0.522029 Vertex 47147 0.374801 0.357427 0.460309 Vertex 47148 0.360018 0.329602 0.223379 Vertex 47149 0.451813 0.578911 0.536617 Vertex 47150 0.429556 0.213097 0.471651 Vertex 47151 0.507818 0.272478 0.503397 Vertex 47152 0.453691 0.152509 0.654419 Vertex 47153 0.496991 0.400437 0.420622 Vertex 47154 0.466679 0.806903 0.46561 Vertex 47155 0.474787 0.80698 0.411329 Vertex 47156 0.458038 0.732444 0.432751 Vertex 47157 0.60781 0.507235 0.215514 Vertex 47158 0.370009 0.27811 0.23465 Vertex 47159 0.589865 0.4114 0.386833 Vertex 47160 0.543757 0.436891 0.386874 Vertex 47161 0.558528 0.428925 0.359144 Vertex 47162 0.322853 0.978258 0.221774 Vertex 47163 0.487491 0.677553 0.520152 Vertex 47164 0.524846 0.0573373 0.783065 Vertex 47165 0.509062 0.595476 0.413248 Vertex 47166 0.415661 0.523202 0.486837 Vertex 47167 0.486372 0.371902 0.428398 Vertex 47168 0.352976 0.899261 0.333357 Vertex 47169 0.460004 0.64297 0.50024 Vertex 47170 0.517205 0.486677 0.408936 Vertex 47171 0.474065 0.058125 0.687911 Vertex 47172 0.616469 0.529379 0.229716 Vertex 47173 0.590652 0.509645 0.272602 Vertex 47174 0.601479 0.525234 0.207601 Vertex 47175 0.598085 0.531097 0.268113 Vertex 47176 0.443302 0.336899 0.641963 Vertex 47177 0.614313 0.472771 0.320546 Vertex 47178 0.615054 0.474198 0.320665 Vertex 47179 0.379071 0.357095 0.308357 Vertex 47180 0.425244 0.161943 0.586201 Vertex 47181 0.365224 0.189869 0.524096 Vertex 47182 0.376489 0.390919 0.563452 Vertex 47183 0.44868 0.156654 0.789236 Vertex 47184 0.510596 0.27833 0.542759 Vertex 47185 0.337849 0.2696 0.201755 Vertex 47186 0.368173 0.144862 0.463958 Vertex 47187 0.595278 0.530641 0.285804 Vertex 47188 0.395039 0.435481 0.385873 Vertex 47189 0.380931 0.317324 0.203165 Vertex 47190 0.479354 0.0780962 0.710536 Vertex 47191 0.543514 0.010495 0.760049 Vertex 47192 0.511289 0.274438 0.53038 Vertex 47193 0.504258 0.306433 0.453587 Vertex 47194 0.406534 0.367827 0.421439 Vertex 47195 0.443865 0.582547 0.482667 Vertex 47196 0.450972 0.458278 0.403008 Vertex 47197 0.614142 0.457123 0.210101 Vertex 47198 0.443012 0.161156 0.538625 Vertex 47199 0.474142 0.0808443 0.734529 Vertex 47200 0.412996 0.377321 0.393827 Vertex 47201 0.39771 0.359014 0.426959 Vertex 47202 0.519681 0.0577815 0.776899 Vertex 47203 0.351791 0.163548 0.453753 Vertex 47204 0.52314 0.528509 0.586142 Vertex 47205 0.470795 0.804303 0.401799 Vertex 47206 0.647889 0.47954 0.222651 Vertex 47207 0.373883 0.213234 0.219298 Vertex 47208 0.580282 0.50608 0.331219 Vertex 47209 0.585784 0.495176 0.303217 Vertex 47210 0.586104 0.495733 0.305935 Vertex 47211 0.438576 0.555072 0.555238 Vertex 47212 0.438031 0.203414 0.796989 Vertex 47213 0.47137 0.186588 0.48445 Vertex 47214 0.498235 0.0888399 0.640814 Vertex 47215 0.365011 0.416079 0.354086 Vertex 47216 0.478181 0.25612 0.453208 Vertex 47217 0.473822 0.526217 0.41204 Vertex 47218 0.528903 0.0126982 0.747837 Vertex 47219 0.551971 0.546265 0.451982 Vertex 47220 0.46155 0.571673 0.557962 Vertex 47221 0.444878 0.818364 0.366731 Vertex 47222 0.356701 0.331859 0.242148 Vertex 47223 0.461728 0.487328 0.407076 Vertex 47224 0.355369 0.365807 0.447576 Vertex 47225 0.371887 0.364996 0.577803 Vertex 47226 0.446039 0.248787 0.751977 Vertex 47227 0.606022 0.500903 0.204936 Vertex 47228 0.586435 0.490995 0.290228 Vertex 47229 0.495783 0.209573 0.490693 Vertex 47230 0.519888 0.0898231 0.681728 Vertex 47231 0.40108 0.165562 0.505416 Vertex 47232 0.436722 0.109255 0.710559 Vertex 47233 0.449894 0.793702 0.380827 Vertex 47234 0.609279 0.495502 0.190408 Vertex 47235 0.524046 0.0943895 0.710648 Vertex 47236 0.407044 0.162174 0.630604 Vertex 47237 0.345241 0.105625 0.468483 Vertex 47238 0.480935 0.437916 0.374543 Vertex 47239 0.452352 0.780103 0.397257 Vertex 47240 0.396241 0.307025 0.239566 Vertex 47241 0.457315 0.206529 0.600084 Vertex 47242 0.503785 0.105186 0.804369 Vertex 47243 0.491631 0.153119 0.794892 Vertex 47244 0.477831 0.317745 0.428961 Vertex 47245 0.403994 0.48689 0.432615 Vertex 47246 0.574963 0.477011 0.314286 Vertex 47247 0.411752 0.444644 0.388811 Vertex 47248 0.458399 0.204107 0.610159 Vertex 47249 0.458944 0.20461 0.6059 Vertex 47250 0.417497 0.398998 0.373246 Vertex 47251 0.416739 0.435884 0.384943 Vertex 47252 0.310463 0.966401 0.252921 Vertex 47253 0.418214 0.307457 0.641039 Vertex 47254 0.419552 0.310016 0.641638 Vertex 47255 0.363666 0.890075 0.347868 Vertex 47256 0.42387 0.390528 0.326327 Vertex 47257 0.570047 0.501952 0.391269 Vertex 47258 0.553209 0.529652 0.44706 Vertex 47259 0.509885 0.386406 0.575837 Vertex 47260 0.376672 0.353287 0.358244 Vertex 47261 0.370157 0.365896 0.314712 Vertex 47262 0.560322 0.400715 0.455642 Vertex 47263 0.386788 0.309643 0.451792 Vertex 47264 0.657655 0.408877 0.217066 Vertex 47265 0.455995 0.193322 0.474808 Vertex 47266 0.52738 0.123606 0.722731 Vertex 47267 0.50687 0.048933 0.631918 Vertex 47268 0.59253 0.51815 0.214211 Vertex 47269 0.47227 0.784782 0.486008 Vertex 47270 0.525852 0.712401 0.468127 Vertex 47271 0.363702 0.259099 0.569618 Vertex 47272 0.440057 0.109161 0.664375 Vertex 47273 0.458772 0.2238 0.681568 Vertex 47274 0.36244 0.102551 0.482383 Vertex 47275 0.59937 0.485226 0.394846 Vertex 47276 0.601112 0.484811 0.392578 Vertex 47277 0.599359 0.482644 0.396546 Vertex 47278 0.600324 0.481311 0.396208 Vertex 47279 0.40394 0.850494 0.409848 Vertex 47280 0.523122 0.150507 0.754044 Vertex 47281 0.456901 0.132188 0.648158 Vertex 47282 0.42631 0.809338 0.393525 Vertex 47283 0.486005 0.702143 0.403825 Vertex 47284 0.417562 0.845803 0.426307 Vertex 47285 0.481622 0.362461 0.423423 Vertex 47286 0.411261 0.829741 0.414172 Vertex 47287 0.456214 0.107556 0.756164 Vertex 47288 0.420405 0.387135 0.400597 Vertex 47289 0.629908 0.47925 0.185622 Vertex 47290 0.449314 0.480606 0.411832 Vertex 47291 0.528304 0.397026 0.428049 Vertex 47292 0.347148 0.111376 0.455316 Vertex 47293 0.643636 0.478747 0.226186 Vertex 47294 0.503796 0.0896573 0.728949 Vertex 47295 0.610795 0.457691 0.187369 Vertex 47296 0.458227 0.690902 0.451828 Vertex 47297 0.529678 0.580202 0.546881 Vertex 47298 0.610564 0.455085 0.343858 Vertex 47299 0.448579 0.245263 0.450744 Vertex 47300 0.364436 0.343479 0.572153 Vertex 47301 0.380605 0.425899 0.393241 Vertex 47302 0.586429 0.510658 0.322122 Vertex 47303 0.445547 0.414776 0.640376 Vertex 47304 0.388636 0.390617 0.245554 Vertex 47305 0.382684 0.213944 0.625652 Vertex 47306 0.338856 0.937646 0.257547 Vertex 47307 0.507001 0.402107 0.443607 Vertex 47308 0.449207 0.620665 0.48156 Vertex 47309 0.519083 0.381218 0.515882 Vertex 47310 0.36488 0.882565 0.320819 Vertex 47311 0.39476 0.377552 0.232761 Vertex 47312 0.582982 0.449654 0.470188 Vertex 47313 0.471151 0.511114 0.407793 Vertex 47314 0.548655 0.478421 0.561403 Vertex 47315 0.461538 0.125768 0.803545 Vertex 47316 0.375997 0.437868 0.57194 Vertex 47317 0.507332 0.268439 0.553029 Vertex 47318 0.433749 0.834651 0.35857 Vertex 47319 0.482427 0.117292 0.811257 Vertex 47320 0.444688 0.833692 0.449542 Vertex 47321 0.386617 0.252744 0.208744 Vertex 47322 0.542655 0.150359 0.431312 Vertex 47323 0.527096 0.125821 0.710903 Vertex 47324 0.459323 0.211208 0.602666 Vertex 47325 0.484903 0.340595 0.430127 Vertex 47326 0.576888 0.520158 0.466025 Vertex 47327 0.433832 0.127858 0.718887 Vertex 47328 0.51284 0.329199 0.579941 Vertex 47329 0.507688 0.333783 0.455192 Vertex 47330 0.462397 0.205457 0.6525 Vertex 47331 0.375192 0.383842 0.575926 Vertex 47332 0.368795 0.878976 0.34557 Vertex 47333 0.37457 0.386317 0.569665 Vertex 47334 0.390401 0.351486 0.42289 Vertex 47335 0.370075 0.187079 0.538625 Vertex 47336 0.368872 0.188714 0.538761 Vertex 47337 0.369032 0.188317 0.538601 Vertex 47338 0.321444 0.932227 0.257168 Vertex 47339 0.363767 0.0908536 0.482395 Vertex 47340 0.491448 0.344652 0.436056 Vertex 47341 0.555632 0.541971 0.469827 Vertex 47342 0.431848 0.259069 0.739592 Vertex 47343 0.418226 0.25054 0.447564 Vertex 47344 0.604417 0.511493 0.368526 Vertex 47345 0.371887 0.421729 0.354086 Vertex 47346 0.435111 0.463247 0.413165 Vertex 47347 0.469398 0.14626 0.651084 Vertex 47348 0.557053 0.555036 0.515799 Vertex 47349 0.478045 0.175832 0.495739 Vertex 47350 0.484725 0.553763 0.388823 Vertex 47351 0.491377 0.221762 0.548557 Vertex 47352 0.374913 0.346037 0.27939 Vertex 47353 0.446584 0.609525 0.478095 Vertex 47354 0.446856 0.610467 0.480328 Vertex 47355 0.455426 0.736773 0.459859 Vertex 47356 0.456036 0.738917 0.462009 Vertex 47357 0.593252 0.514324 0.283263 Vertex 47358 0.401139 0.506885 0.474778 Vertex 47359 0.359799 0.360127 0.380223 Vertex 47360 0.420198 0.262889 0.725082 Vertex 47361 0.516974 0.0979016 0.720285 Vertex 47362 0.462462 0.0718419 0.655568 Vertex 47363 0.470428 0.27535 0.437122 Vertex 47364 0.360071 0.268101 0.489011 Vertex 47365 0.36154 0.268646 0.487151 Vertex 47366 0.61015 0.448695 0.195934 Vertex 47367 0.446495 0.139082 0.770609 Vertex 47368 0.318257 0.988546 0.224167 Vertex 47369 0.39341 0.325575 0.252406 Vertex 47370 0.446957 0.120189 0.657042 Vertex 47371 0.442988 0.247141 0.683641 Vertex 47372 0.463049 0.141516 0.800608 Vertex 47373 0.591144 0.520152 0.297774 Vertex 47374 0.395252 0.28286 0.443975 Vertex 47375 0.405634 0.867054 0.411832 Vertex 47376 0.521979 0.357267 0.494909 Vertex 47377 0.521724 0.0398477 0.633743 Vertex 47378 0.510572 0.0246738 0.633061 Vertex 47379 0.482238 0.633506 0.418637 Vertex 47380 0.639716 0.512364 0.238038 Vertex 47381 0.554222 0.481471 0.381627 Vertex 47382 0.465826 0.745983 0.407621 Vertex 47383 0.449557 0.18795 0.590436 Vertex 47384 0.460614 0.210811 0.634187 Vertex 47385 0.653871 0.415718 0.225393 Vertex 47386 0.41947 0.260568 0.211167 Vertex 47387 0.454798 0.233608 0.70023 Vertex 47388 0.533202 0.594878 0.540804 Vertex 47389 0.392865 0.251725 0.696973 Vertex 47390 0.468947 0.194767 0.483455 Vertex 47391 0.473318 0.173913 0.553082 Vertex 47392 0.581431 0.501655 0.32182 Vertex 47393 0.406967 0.262635 0.692258 Vertex 47394 0.573672 0.449423 0.497207 Vertex 47395 0.502108 0.379477 0.44834 Vertex 47396 0.421969 0.379838 0.426059 Vertex 47397 0.525829 0.35796 0.502716 Vertex 47398 0.411048 0.422499 0.352304 Vertex 47399 0.522944 0.355123 0.546881 Vertex 47400 0.459738 0.781223 0.382947 Vertex 47401 0.420459 0.145502 0.64493 Vertex 47402 0.458583 0.162719 0.500234 Vertex 47403 0.39171 0.884627 0.322489 Vertex 47404 0.512586 0.409001 0.584188 Vertex 47405 0.622492 0.490479 0.254307 Vertex 47406 0.513859 0.573462 0.567675 Vertex 47407 0.496275 0.0804055 0.729405 Vertex 47408 0.560216 0.399886 0.433882 Vertex 47409 0.557385 0.525541 0.536504 Vertex 47410 0.637376 0.440853 0.193535 Vertex 47411 0.427844 0.456424 0.602631 Vertex 47412 0.661268 0.454191 0.199546 Vertex 47413 0.460531 0.210272 0.59659 Vertex 47414 0.386628 0.171141 0.505416 Vertex 47415 0.389187 0.304022 0.193926 Vertex 47416 0.399641 0.360992 0.624012 Vertex 47417 0.405705 0.35966 0.439308 Vertex 47418 0.383555 0.214578 0.608477 Vertex 47419 0.462693 0.214252 0.664973 Vertex 47420 0.432304 0.789147 0.414557 Vertex 47421 0.513332 0.652648 0.534656 Vertex 47422 0.427122 0.17004 0.511558 Vertex 47423 0.458168 0.21976 0.656687 Vertex 47424 0.369684 0.370214 0.481702 Vertex 47425 0.385835 0.433859 0.590815 Vertex 47426 0.616902 0.49459 0.240815 Vertex 47427 0.509701 0.0845401 0.799328 Vertex 47428 0.534523 0.405738 0.452243 Vertex 47429 0.355232 0.265963 0.544387 Vertex 47430 0.379296 0.243102 0.204889 Vertex 47431 0.363423 0.226945 0.207761 Vertex 47432 0.527049 0.502017 0.41647 Vertex 47433 0.495363 0.0283992 0.655212 Vertex 47434 0.41135 0.347423 0.438721 Vertex 47435 0.360361 0.352606 0.387324 Vertex 47436 0.422917 0.136239 0.687728 Vertex 47437 0.671461 0.457312 0.212197 Vertex 47438 0.64443 0.427071 0.213447 Vertex 47439 0.591754 0.463324 0.30327 Vertex 47440 0.482795 0.171206 0.528219 Vertex 47441 0.625608 0.505185 0.296334 Vertex 47442 0.514475 0.106874 0.711318 Vertex 47443 0.393819 0.854439 0.360897 Vertex 47444 0.451351 0.0918901 0.735731 Vertex 47445 0.508831 0.316987 0.458811 Vertex 47446 0.611109 0.463673 0.328092 Vertex 47447 0.496464 0.241141 0.557619 Vertex 47448 0.551699 0.0497504 0.724324 Vertex 47449 0.425209 0.11365 0.690209 Vertex 47450 0.513071 0.596904 0.419206 Vertex 47451 0.525444 0.331207 0.513678 Vertex 47452 0.525136 0.330976 0.515882 Vertex 47453 0.451014 0.247579 0.627773 Vertex 47454 0.455083 0.456246 0.626019 Vertex 47455 0.406671 0.376557 0.260822 Vertex 47456 0.455432 0.083782 0.708718 Vertex 47457 0.556094 0.046025 0.75399 Vertex 47458 0.549164 0.0391192 0.719088 Vertex 47459 0.498969 0.345895 0.443536 Vertex 47460 0.502884 0.173913 0.451556 Vertex 47461 0.505253 0.174197 0.450649 Vertex 47462 0.447916 0.757899 0.437081 Vertex 47463 0.510649 0.0494838 0.675148 Vertex 47464 0.57459 0.506986 0.37295 Vertex 47465 0.51993 0.372968 0.548948 Vertex 47466 0.541773 0.652239 0.474316 Vertex 47467 0.517318 0.471491 0.408581 Vertex 47468 0.518485 0.47437 0.408758 Vertex 47469 0.521014 0.467541 0.408527 Vertex 47470 0.402655 0.182578 0.569689 Vertex 47471 0.358365 0.418904 0.451005 Vertex 47472 0.43533 0.257695 0.723027 Vertex 47473 0.406919 0.325427 0.206138 Vertex 47474 0.520048 0.640494 0.429203 Vertex 47475 0.519243 0.642733 0.427557 Vertex 47476 0.45009 0.484166 0.413479 Vertex 47477 0.390934 0.435197 0.389705 Vertex 47478 0.38423 0.460037 0.429067 Vertex 47479 0.516039 0.0252661 0.662912 Vertex 47480 0.518348 0.0248041 0.66155 Vertex 47481 0.490891 0.195406 0.741695 Vertex 47482 0.354682 0.224167 0.522071 Vertex 47483 0.51284 0.026954 0.733391 Vertex 47484 0.342001 0.93555 0.311526 Vertex 47485 0.341077 0.936586 0.30972 Vertex 47486 0.406813 0.846467 0.349733 Vertex 47487 0.530413 0.59736 0.433598 Vertex 47488 0.622617 0.493103 0.350047 Vertex 47489 0.622765 0.490657 0.351759 Vertex 47490 0.428774 0.161511 0.76442 Vertex 47491 0.437457 0.147445 0.596655 Vertex 47492 0.392397 0.342134 0.447238 Vertex 47493 0.481735 0.470218 0.384961 Vertex 47494 0.517644 0.298692 0.532584 Vertex 47495 0.378668 0.178035 0.488164 Vertex 47496 0.454425 0.626955 0.453315 Vertex 47497 0.417995 0.393857 0.36178 Vertex 47498 0.387677 0.270577 0.197728 Vertex 47499 0.409058 0.258909 0.196591 Vertex 47500 0.5181 0.0216769 0.751917 Vertex 47501 0.525308 0.325196 0.514875 Vertex 47502 0.338317 0.0979786 0.463087 Vertex 47503 0.374333 0.392749 0.527259 Vertex 47504 0.588935 0.515183 0.36441 Vertex 47505 0.419789 0.839188 0.348863 Vertex 47506 0.370785 0.914388 0.299841 Vertex 47507 0.413896 0.244641 0.453433 Vertex 47508 0.510898 0.643651 0.540757 Vertex 47509 0.534239 0.121426 0.437229 Vertex 47510 0.583812 0.42552 0.430797 Vertex 47511 0.448005 0.608784 0.492594 Vertex 47512 0.547429 0.573639 0.501424 Vertex 47513 0.415679 0.166527 0.586255 Vertex 47514 0.481509 0.65202 0.418282 Vertex 47515 0.345596 0.931031 0.268261 Vertex 47516 0.419795 0.40463 0.350373 Vertex 47517 0.426606 0.849464 0.43592 Vertex 47518 0.401885 0.166516 0.629917 Vertex 47519 0.388174 0.858709 0.370871 Vertex 47520 0.428691 0.321755 0.425342 Vertex 47521 0.453241 0.299053 0.424744 Vertex 47522 0.394636 0.856808 0.39134 Vertex 47523 0.43295 0.820626 0.445497 Vertex 47524 0.471903 0.162447 0.534461 Vertex 47525 0.499935 0.594244 0.402871 Vertex 47526 0.405006 0.835486 0.399703 Vertex 47527 0.388932 0.419715 0.594606 Vertex 47528 0.450469 0.39943 0.63225 Vertex 47529 0.456723 0.114805 0.76445 Vertex 47530 0.407867 0.422961 0.361608 Vertex 47531 0.402104 0.339191 0.206328 Vertex 47532 0.550686 0.403487 0.406597 Vertex 47533 0.355351 0.400946 0.501845 Vertex 47534 0.502612 0.0465403 0.752018 Vertex 47535 0.538337 0.438087 0.394816 Vertex 47536 0.37136 0.340944 0.400887 Vertex 47537 0.369103 0.341951 0.401414 Vertex 47538 0.498466 0.676984 0.537778 Vertex 47539 0.411812 0.178568 0.737555 Vertex 47540 0.584179 0.472901 0.480523 Vertex 47541 0.34347 0.917142 0.27124 Vertex 47542 0.539593 0.0502656 0.796527 Vertex 47543 0.372153 0.0977358 0.47463 Vertex 47544 0.3729 0.0965394 0.476206 Vertex 47545 0.373255 0.0975995 0.476982 Vertex 47546 0.421075 0.376681 0.31611 Vertex 47547 0.431054 0.163738 0.57377 Vertex 47548 0.3928 0.286396 0.234502 Vertex 47549 0.548678 0.507939 0.412229 Vertex 47550 0.449746 0.149565 0.785144 Vertex 47551 0.50793 0.728505 0.425751 Vertex 47552 0.375571 0.309098 0.249326 Vertex 47553 0.531491 0.689795 0.484545 Vertex 47554 0.402104 0.424827 0.313842 Vertex 47555 0.525 0.131098 0.75405 Vertex 47556 0.443604 0.146562 0.766434 Vertex 47557 0.477322 0.497717 0.602394 Vertex 47558 0.54532 0.601263 0.465871 Vertex 47559 0.403022 0.364978 0.406229 Vertex 47560 0.460401 0.194642 0.629609 Vertex 47561 0.655304 0.452533 0.217403 Vertex 47562 0.419647 0.249048 0.200808 Vertex 47563 0.521997 0.560473 0.412158 Vertex 47564 0.417337 0.230374 0.206731 Vertex 47565 0.410556 0.274551 0.208365 Vertex 47566 0.515026 0.366086 0.571756 Vertex 47567 0.567341 0.485445 0.334121 Vertex 47568 0.426056 0.251956 0.215194 Vertex 47569 0.494356 0.717572 0.407153 Vertex 47570 0.658467 0.431501 0.197017 Vertex 47571 0.65993 0.433053 0.199203 Vertex 47572 0.494995 0.203852 0.477124 Vertex 47573 0.392332 0.201157 0.476792 Vertex 47574 0.419541 0.283879 0.640832 Vertex 47575 0.497264 0.238861 0.524138 Vertex 47576 0.496737 0.240804 0.522 Vertex 47577 0.47561 0.195146 0.794904 Vertex 47578 0.403621 0.386874 0.25243 Vertex 47579 0.423414 0.159853 0.594552 Vertex 47580 0.510282 0.344888 0.452799 Vertex 47581 0.602888 0.53022 0.254639 Vertex 47582 0.42079 0.326309 0.644711 Vertex 47583 0.436302 0.46561 0.413005 Vertex 47584 0.490725 0.56055 0.385423 Vertex 47585 0.491489 0.211072 0.524096 Vertex 47586 0.504815 0.313504 0.454629 Vertex 47587 0.388233 0.416902 0.297098 Vertex 47588 0.385758 0.416245 0.297584 Vertex 47589 0.459602 0.500187 0.412294 Vertex 47590 0.50732 0.663386 0.538702 Vertex 47591 0.543484 0.601026 0.457614 Vertex 47592 0.438031 0.251873 0.669136 Vertex 47593 0.515411 0.662503 0.42504 Vertex 47594 0.413742 0.52486 0.495058 Vertex 47595 0.493544 0.680425 0.528639 Vertex 47596 0.432434 0.40601 0.410381 Vertex 47597 0.361623 0.258838 0.222615 Vertex 47598 0.520184 0.510107 0.410067 Vertex 47599 0.514937 0.542765 0.404109 Vertex 47600 0.448035 0.589465 0.464123 Vertex 47601 0.516406 0.369704 0.474316 Vertex 47602 0.416757 0.376735 0.301925 Vertex 47603 0.373308 0.188755 0.469039 Vertex 47604 0.36995 0.886741 0.358232 Vertex 47605 0.38407 0.300202 0.192729 Vertex 47606 0.365532 0.409226 0.374798 Vertex 47607 0.351898 0.315299 0.229835 Vertex 47608 0.508558 0.0857898 0.801443 Vertex 47609 0.429224 0.807425 0.393715 Vertex 47610 0.549111 0.0429511 0.79263 Vertex 47611 0.325323 0.235621 0.219624 Vertex 47612 0.638093 0.474707 0.185219 Vertex 47613 0.485803 0.203603 0.766558 Vertex 47614 0.467645 0.289115 0.63135 Vertex 47615 0.400819 0.427717 0.320925 Vertex 47616 0.408785 0.197876 0.474678 Vertex 47617 0.454348 0.802864 0.469045 Vertex 47618 0.392125 0.266851 0.623674 Vertex 47619 0.419286 0.843748 0.346073 Vertex 47620 0.49936 0.276286 0.460232 Vertex 47621 0.355736 0.265667 0.527111 Vertex 47622 0.431469 0.532317 0.485048 Vertex 47623 0.434797 0.812032 0.381301 Vertex 47624 0.501279 0.0520957 0.634637 Vertex 47625 0.44438 0.190804 0.799411 Vertex 47626 0.428863 0.854214 0.425751 Vertex 47627 0.427134 0.85509 0.42674 Vertex 47628 0.557793 0.544707 0.480464 Vertex 47629 0.415661 0.151419 0.64239 Vertex 47630 0.444209 0.204065 0.798505 Vertex 47631 0.481829 0.183881 0.474482 Vertex 47632 0.439707 0.543375 0.468169 Vertex 47633 0.370785 0.0882417 0.466617 Vertex 47634 0.421643 0.136156 0.681544 Vertex 47635 0.455485 0.682741 0.468121 Vertex 47636 0.408299 0.461648 0.597342 Vertex 47637 0.369755 0.364149 0.555167 Vertex 47638 0.478536 0.438709 0.373068 Vertex 47639 0.384763 0.306717 0.61527 Vertex 47640 0.521245 0.646453 0.528177 Vertex 47641 0.566565 0.497527 0.520016 Vertex 47642 0.331927 0.258376 0.234911 Vertex 47643 0.426855 0.157567 0.725094 Vertex 47644 0.395773 0.19482 0.704388 Vertex 47645 0.39017 0.199919 0.698152 Vertex 47646 0.457937 0.706656 0.470313 Vertex 47647 0.45388 0.133597 0.646127 Vertex 47648 0.481 0.364617 0.421694 Vertex 47649 0.350873 0.379169 0.441854 Vertex 47650 0.4256 0.481643 0.59505 Vertex 47651 0.501415 0.0936254 0.809965 Vertex 47652 0.556976 0.483639 0.544772 Vertex 47653 0.412031 0.419455 0.360394 Vertex 47654 0.420435 0.809338 0.401835 Vertex 47655 0.498413 0.101597 0.640234 Vertex 47656 0.426488 0.872254 0.375899 Vertex 47657 0.43138 0.23834 0.45492 Vertex 47658 0.506787 0.725094 0.501288 Vertex 47659 0.507155 0.723382 0.501306 Vertex 47660 0.501433 0.522556 0.593599 Vertex 47661 0.3591 0.332925 0.547959 Vertex 47662 0.490316 0.198356 0.742281 Vertex 47663 0.376708 0.0877265 0.476608 Vertex 47664 0.539024 0.137708 0.443714 Vertex 47665 0.66295 0.406834 0.217717 Vertex 47666 0.664182 0.406336 0.219707 Vertex 47667 0.450575 0.249699 0.745829 Vertex 47668 0.51576 0.108776 0.698193 Vertex 47669 0.410911 0.263884 0.712627 Vertex 47670 0.447579 0.132324 0.754002 Vertex 47671 0.407683 0.375864 0.370664 Vertex 47672 0.586139 0.501199 0.302103 Vertex 47673 0.515387 0.645162 0.534568 Vertex 47674 0.508416 0.699751 0.421149 Vertex 47675 0.550082 0.574421 0.460931 Vertex 47676 0.35387 0.373601 0.416351 Vertex 47677 0.391757 0.168979 0.528219 Vertex 47678 0.38282 0.227951 0.631818 Vertex 47679 0.360557 0.357782 0.383901 Vertex 47680 0.359858 0.356882 0.385938 Vertex 47681 0.515464 0.156885 0.449583 Vertex 47682 0.371129 0.344539 0.501306 Vertex 47683 0.609735 0.514922 0.203716 Vertex 47684 0.468681 0.511937 0.407864 Vertex 47685 0.519195 0.402936 0.565472 Vertex 47686 0.501487 0.157389 0.685353 Vertex 47687 0.395003 0.330088 0.625723 Vertex 47688 0.498016 0.780826 0.443578 Vertex 47689 0.481344 0.180404 0.706953 Vertex 47690 0.533161 0.579698 0.434646 Vertex 47691 0.426133 0.530108 0.486973 Vertex 47692 0.430255 0.198628 0.477526 Vertex 47693 0.450208 0.193351 0.802171 Vertex 47694 0.518508 0.535734 0.406668 Vertex 47695 0.458766 0.166462 0.650373 Vertex 47696 0.362873 0.334168 0.219731 Vertex 47697 0.424314 0.227732 0.780684 Vertex 47698 0.365188 0.424406 0.425543 Vertex 47699 0.396259 0.271376 0.62978 Vertex 47700 0.364845 0.406561 0.530665 Vertex 47701 0.377354 0.329022 0.210947 Vertex 47702 0.447419 0.50467 0.424975 Vertex 47703 0.399226 0.301493 0.237848 Vertex 47704 0.340597 0.104778 0.468062 Vertex 47705 0.517093 0.363148 0.463952 Vertex 47706 0.516838 0.362733 0.466025 Vertex 47707 0.548809 0.436506 0.374052 Vertex 47708 0.510382 0.282262 0.557257 Vertex 47709 0.459116 0.199114 0.602903 Vertex 47710 0.412546 0.230469 0.465178 Vertex 47711 0.589924 0.434285 0.197343 Vertex 47712 0.518271 0.542593 0.581825 Vertex 47713 0.497933 0.542084 0.383368 Vertex 47714 0.374457 0.179368 0.519962 Vertex 47715 0.36199 0.288351 0.197219 Vertex 47716 0.435556 0.208105 0.469507 Vertex 47717 0.375648 0.237582 0.592154 Vertex 47718 0.471115 0.0748328 0.707113 Vertex 47719 0.471334 0.0753718 0.708309 Vertex 47720 0.687973 0.468903 0.202543 Vertex 47721 0.427074 0.155677 0.59871 Vertex 47722 0.400784 0.33126 0.240063 Vertex 47723 0.467307 0.0707225 0.702961 Vertex 47724 0.562691 0.494945 0.385245 Vertex 47725 0.519195 0.707355 0.49934 Vertex 47726 0.535352 0.469507 0.400982 Vertex 47727 0.554856 0.145283 0.418442 Vertex 47728 0.378745 0.301262 0.241876 Vertex 47729 0.619833 0.513696 0.311242 Vertex 47730 0.387126 0.424157 0.592485 Vertex 47731 0.421406 0.170662 0.501383 Vertex 47732 0.607846 0.484107 0.195851 Vertex 47733 0.460597 0.757272 0.408024 Vertex 47734 0.485205 0.0770894 0.704039 Vertex 47735 0.355327 0.238997 0.536066 Vertex 47736 0.453928 0.126952 0.804878 Vertex 47737 0.387499 0.317313 0.203218 Vertex 47738 0.514203 0.305663 0.477432 Vertex 47739 0.466869 0.0822539 0.657872 Vertex 47740 0.386889 0.0739622 0.473594 Vertex 47741 0.539172 0.610194 0.45123 Vertex 47742 0.433666 0.786156 0.418051 Vertex 47743 0.40381 0.864489 0.407645 Vertex 47744 0.364732 0.249522 0.207275 Vertex 47745 0.364732 0.252921 0.205587 Vertex 47746 0.515221 0.113283 0.67118 Vertex 47747 0.36401 0.158733 0.454653 Vertex 47748 0.46842 0.565306 0.566822 Vertex 47749 0.415685 0.439011 0.38598 Vertex 47750 0.362831 0.245743 0.21334 Vertex 47751 0.510228 0.0732811 0.636716 Vertex 47752 0.441585 0.0882477 0.669048 Vertex 47753 0.404971 0.262605 0.69641 Vertex 47754 0.577255 0.51 0.366654 Vertex 47755 0.539309 0.0564963 0.801615 Vertex 47756 0.394956 0.317994 0.447931 Vertex 47757 0.558948 0.555327 0.503219 Vertex 47758 0.481723 0.589791 0.558288 Vertex 47759 0.432659 0.414065 0.399809 Vertex 47760 0.434383 0.416884 0.401077 Vertex 47761 0.450795 0.557915 0.442358 Vertex 47762 0.3851 0.256582 0.610544 Vertex 47763 0.451322 0.105654 0.747843 Vertex 47764 0.41511 0.171603 0.538607 Vertex 47765 0.371105 0.37003 0.507531 Vertex 47766 0.477298 0.643568 0.422771 Vertex 47767 0.503601 0.5661 0.57464 Vertex 47768 0.449415 0.777201 0.408077 Vertex 47769 0.645946 0.439521 0.192913 Vertex 47770 0.576752 0.411726 0.422499 Vertex 47771 0.519083 0.290187 0.491243 Vertex 47772 0.487995 0.186522 0.726148 Vertex 47773 0.637542 0.463022 0.183934 Vertex 47774 0.567003 0.498848 0.358244 Vertex 47775 0.416573 0.536149 0.519933 Vertex 47776 0.43308 0.258577 0.64833 Vertex 47777 0.500041 0.70424 0.526152 Vertex 47778 0.40869 0.369539 0.265122 Vertex 47779 0.408388 0.367365 0.262836 Vertex 47780 0.382346 0.875814 0.319119 Vertex 47781 0.495445 0.104807 0.807573 Vertex 47782 0.618181 0.450075 0.199955 Vertex 47783 0.627077 0.493002 0.262492 Vertex 47784 0.626342 0.493204 0.266769 Vertex 47785 0.463203 0.786393 0.382006 Vertex 47786 0.549549 0.062567 0.760322 Vertex 47787 0.55042 0.0633488 0.754097 Vertex 47788 0.422911 0.511043 0.455778 Vertex 47789 0.363986 0.105708 0.481098 Vertex 47790 0.437996 0.347613 0.418774 Vertex 47791 0.396626 0.251316 0.456691 Vertex 47792 0.366337 0.137897 0.461292 Vertex 47793 0.365259 0.115468 0.460961 Vertex 47794 0.594537 0.527259 0.281457 Vertex 47795 0.473911 0.359061 0.416405 Vertex 47796 0.465903 0.0876969 0.752024 Vertex 47797 0.497281 0.640767 0.549368 Vertex 47798 0.551468 0.541906 0.542705 Vertex 47799 0.515073 0.377321 0.56347 Vertex 47800 0.310706 0.944777 0.243646 Vertex 47801 0.417728 0.515011 0.465835 Vertex 47802 0.437463 0.782064 0.420373 Vertex 47803 0.362458 0.223124 0.559958 Vertex 47804 0.473786 0.427415 0.372624 Vertex 47805 0.461965 0.806033 0.474453 Vertex 47806 0.353319 0.113075 0.471663 Vertex 47807 0.354687 0.302121 0.236249 Vertex 47808 0.526291 0.0409611 0.776301 Vertex 47809 0.489013 0.305698 0.440285 Vertex 47810 0.619134 0.47954 0.331468 Vertex 47811 0.504081 0.346677 0.447374 Vertex 47812 0.484346 0.192753 0.787264 Vertex 47813 0.482291 0.193961 0.789319 Vertex 47814 0.690532 0.448274 0.205345 Vertex 47815 0.430847 0.36839 0.64852 Vertex 47816 0.51775 0.0638404 0.776692 Vertex 47817 0.544207 0.405554 0.409534 Vertex 47818 0.474645 0.811239 0.452391 Vertex 47819 0.453377 0.103037 0.722849 Vertex 47820 0.486674 0.112436 0.806287 Vertex 47821 0.357643 0.26142 0.515508 Vertex 47822 0.404456 0.402315 0.288907 Vertex 47823 0.529678 0.588132 0.550008 Vertex 47824 0.501078 0.0595168 0.727534 Vertex 47825 0.43475 0.534378 0.484953 Vertex 47826 0.605068 0.503657 0.226453 Vertex 47827 0.531236 0.614654 0.438277 Vertex 47828 0.468604 0.45826 0.386839 Vertex 47829 0.540517 0.464964 0.395024 Vertex 47830 0.406979 0.842984 0.360584 Vertex 47831 0.38516 0.236154 0.6525 Vertex 47832 0.551693 0.558448 0.479131 Vertex 47833 0.604636 0.477544 0.20801 Vertex 47834 0.452915 0.462542 0.624693 Vertex 47835 0.488072 0.212908 0.494815 Vertex 47836 0.503441 0.199226 0.470958 Vertex 47837 0.477677 0.20098 0.710512 Vertex 47838 0.340331 0.2593 0.228875 Vertex 47839 0.338536 0.258145 0.229876 Vertex 47840 0.486739 0.399679 0.619416 Vertex 47841 0.525965 0.0910195 0.797096 Vertex 47842 0.453868 0.567693 0.4477 Vertex 47843 0.488167 0.72029 0.402463 Vertex 47844 0.34161 0.944748 0.298348 Vertex 47845 0.507771 0.138673 0.675154 Vertex 47846 0.55357 0.0473043 0.727972 Vertex 47847 0.479822 0.0694965 0.704222 Vertex 47848 0.523027 0.631308 0.534733 Vertex 47849 0.543893 0.44799 0.382047 Vertex 47850 0.543028 0.445911 0.382959 Vertex 47851 0.559754 0.471924 0.335329 Vertex 47852 0.414092 0.269161 0.652073 Vertex 47853 0.35621 0.326475 0.229444 Vertex 47854 0.398799 0.321689 0.228165 Vertex 47855 0.321337 0.23921 0.22961 Vertex 47856 0.486467 0.046487 0.676623 Vertex 47857 0.337121 0.917515 0.267408 Vertex 47858 0.391331 0.405898 0.59868 Vertex 47859 0.371579 0.184005 0.507691 Vertex 47860 0.495576 0.268753 0.461695 Vertex 47861 0.479395 0.201471 0.716962 Vertex 47862 0.535536 0.124488 0.447404 Vertex 47863 0.445671 0.59762 0.48275 Vertex 47864 0.590463 0.509876 0.285603 Vertex 47865 0.611873 0.46529 0.215461 Vertex 47866 0.311831 0.952044 0.262007 Vertex 47867 0.365561 0.395113 0.294025 Vertex 47868 0.532332 0.459498 0.582056 Vertex 47869 0.457647 0.259276 0.625415 Vertex 47870 0.406783 0.849162 0.345558 Vertex 47871 0.52587 0.0470319 0.647217 Vertex 47872 0.53014 0.604183 0.5411 Vertex 47873 0.514108 0.588813 0.415641 Vertex 47874 0.555412 0.413254 0.387206 Vertex 47875 0.492674 0.165497 0.700692 Vertex 47876 0.47012 0.730922 0.414053 Vertex 47877 0.463007 0.334613 0.415605 Vertex 47878 0.572535 0.504966 0.351919 Vertex 47879 0.494604 0.733226 0.509639 Vertex 47880 0.40349 0.291152 0.214163 Vertex 47881 0.434975 0.831021 0.447422 Vertex 47882 0.437741 0.454422 0.40758 Vertex 47883 0.425528 0.392495 0.414326 Vertex 47884 0.444593 0.466013 0.408581 Vertex 47885 0.388524 0.350254 0.408243 Vertex 47886 0.427838 0.798943 0.424673 Vertex 47887 0.414702 0.371635 0.301452 Vertex 47888 0.512639 0.30667 0.571643 Vertex 47889 0.409229 0.881476 0.390872 Vertex 47890 0.391147 0.389261 0.241248 Vertex 47891 0.369707 0.343692 0.416488 Vertex 47892 0.368446 0.343834 0.416647 Vertex 47893 0.424723 0.4676 0.40694 Vertex 47894 0.469291 0.189377 0.693052 Vertex 47895 0.598079 0.505576 0.255895 Vertex 47896 0.371295 0.314701 0.596673 Vertex 47897 0.435123 0.525097 0.468139 Vertex 47898 0.519178 0.378162 0.532347 Vertex 47899 0.557894 0.483787 0.368626 Vertex 47900 0.489653 0.211344 0.489834 Vertex 47901 0.449705 0.225381 0.787116 Vertex 47902 0.49833 0.273976 0.460961 Vertex 47903 0.498028 0.274681 0.460185 Vertex 47904 0.497815 0.277145 0.458485 Vertex 47905 0.525094 0.332457 0.532441 Vertex 47906 0.450392 0.786518 0.393117 Vertex 47907 0.570219 0.459302 0.320215 Vertex 47908 0.481806 0.490236 0.393407 Vertex 47909 0.355292 0.279129 0.520969 Vertex 47910 0.416935 0.165302 0.586272 Vertex 47911 0.568537 0.449447 0.507572 Vertex 47912 0.367084 0.418969 0.349946 Vertex 47913 0.363518 0.922828 0.335258 Vertex 47914 0.43886 0.555871 0.492025 Vertex 47915 0.384159 0.238997 0.627737 Vertex 47916 0.383863 0.239074 0.625652 Vertex 47917 0.525639 0.523072 0.414201 Vertex 47918 0.461224 0.535758 0.426414 Vertex 47919 0.472584 0.116422 0.797409 Vertex 47920 0.604499 0.446628 0.332611 Vertex 47921 0.471536 0.537286 0.414107 Vertex 47922 0.469978 0.535415 0.415546 Vertex 47923 0.40458 0.163116 0.643811 Vertex 47924 0.343624 0.121657 0.458106 Vertex 47925 0.541281 0.576435 0.528266 Vertex 47926 0.552753 0.55904 0.477017 Vertex 47927 0.686404 0.450981 0.2066 Vertex 47928 0.456883 0.203811 0.594552 Vertex 47929 0.403846 0.847 0.358262 Vertex 47930 0.385527 0.210095 0.594677 Vertex 47931 0.354634 0.229432 0.519702 Vertex 47932 0.402898 0.360287 0.438028 Vertex 47933 0.525343 0.345427 0.532441 Vertex 47934 0.537656 0.575618 0.542729 Vertex 47935 0.584724 0.414687 0.403849 Vertex 47936 0.528672 0.422529 0.575807 Vertex 47937 0.529986 0.42305 0.57377 Vertex 47938 0.435514 0.529137 0.474316 Vertex 47939 0.369204 0.35934 0.228467 Vertex 47940 0.36892 0.102468 0.480547 Vertex 47941 0.515328 0.124613 0.693976 Vertex 47942 0.489327 0.507098 0.392317 Vertex 47943 0.528654 0.160747 0.43791 Vertex 47944 0.434566 0.131957 0.66874 Vertex 47945 0.432494 0.130909 0.670741 Vertex 47946 0.465791 0.214406 0.594523 Vertex 47947 0.356103 0.41464 0.457241 Vertex 47948 0.454407 0.0756442 0.660868 Vertex 47949 0.467508 0.121509 0.801561 Vertex 47950 0.472252 0.659068 0.427516 Vertex 47951 0.47397 0.661715 0.426171 Vertex 47952 0.435484 0.135724 0.728168 Vertex 47953 0.436675 0.213317 0.79488 Vertex 47954 0.510667 0.154232 0.711045 Vertex 47955 0.658958 0.500406 0.203438 Vertex 47956 0.42804 0.165562 0.573841 Vertex 47957 0.486781 0.643237 0.408474 Vertex 47958 0.365739 0.404085 0.385204 Vertex 47959 0.366634 0.286461 0.233442 Vertex 47960 0.369642 0.348484 0.512535 Vertex 47961 0.54702 0.0614476 0.724863 Vertex 47962 0.446945 0.429186 0.63562 Vertex 47963 0.508434 0.457668 0.604941 Vertex 47964 0.408353 0.51093 0.471468 Vertex 47965 0.406523 0.509817 0.471189 Vertex 47966 0.462853 0.218351 0.474678 Vertex 47967 0.486437 0.706437 0.404121 Vertex 47968 0.503648 0.0804949 0.704276 Vertex 47969 0.50154 0.742281 0.494963 Vertex 47970 0.595686 0.516373 0.331373 Vertex 47971 0.593999 0.516047 0.335477 Vertex 47972 0.505372 0.724194 0.42122 Vertex 47973 0.348558 0.141013 0.460226 Vertex 47974 0.499882 0.570465 0.575215 Vertex 47975 0.373308 0.376196 0.518547 Vertex 47976 0.55793 0.554651 0.49902 Vertex 47977 0.44704 0.609614 0.486517 Vertex 47978 0.48915 0.677381 0.522397 Vertex 47979 0.398047 0.502609 0.471243 Vertex 47980 0.518662 0.522876 0.590395 Vertex 47981 0.519681 0.52598 0.588973 Vertex 47982 0.499337 0.340476 0.44481 Vertex 47983 0.517549 0.285757 0.490781 Vertex 47984 0.440163 0.149008 0.598746 Vertex 47985 0.490684 0.793477 0.444964 Vertex 47986 0.622339 0.530659 0.239809 Vertex 47987 0.481829 0.685625 0.416647 Vertex 47988 0.407352 0.157158 0.640329 Vertex 47989 0.40901 0.15759 0.638048 Vertex 47990 0.416935 0.456744 0.397606 Vertex 47991 0.375938 0.873403 0.323442 Vertex 47992 0.373332 0.380229 0.561385 Vertex 47993 0.589645 0.435464 0.206168 Vertex 47994 0.468065 0.102575 0.654265 Vertex 47995 0.466875 0.490959 0.405619 Vertex 47996 0.359775 0.430092 0.512162 Vertex 47997 0.45025 0.224114 0.78881 Vertex 47998 0.609534 0.471331 0.293462 Vertex 47999 0.516104 0.109119 0.685803 Vertex 48000 0.353663 0.913061 0.332854 Vertex 48001 0.521683 0.697228 0.501353 Vertex 48002 0.518893 0.087531 0.684914 Vertex 48003 0.609279 0.50984 0.199606 Vertex 48004 0.50645 0.732769 0.497302 Vertex 48005 0.411675 0.277376 0.219245 Vertex 48006 0.498259 0.698335 0.410132 Vertex 48007 0.417118 0.387218 0.299284 Vertex 48008 0.49743 0.541995 0.381425 Vertex 48009 0.45924 0.262866 0.44083 Vertex 48010 0.49942 0.169382 0.786026 Vertex 48011 0.524893 0.0744242 0.717394 Vertex 48012 0.366373 0.372133 0.482709 Vertex 48013 0.554311 0.155742 0.439242 Vertex 48014 0.465222 0.453676 0.387567 Vertex 48015 0.451197 0.428167 0.62769 Vertex 48016 0.522595 0.407254 0.56347 Vertex 48017 0.521357 0.405762 0.565508 Vertex 48018 0.501723 0.691891 0.528367 Vertex 48019 0.359503 0.303181 0.500785 Vertex 48020 0.542193 0.62907 0.506802 Vertex 48021 0.581212 0.508887 0.335353 Vertex 48022 0.48174 0.0961307 0.651161 Vertex 48023 0.357163 0.252607 0.554817 Vertex 48024 0.369547 0.399022 0.528911 Vertex 48025 0.306649 0.987539 0.202052 Vertex 48026 0.455355 0.448725 0.625415 Vertex 48027 0.46537 0.50204 0.41291 Vertex 48028 0.358306 0.927986 0.324976 Vertex 48029 0.525491 0.0671334 0.667472 Vertex 48030 0.6391 0.450217 0.215164 Vertex 48031 0.426855 0.162228 0.7562 Vertex 48032 0.574768 0.518961 0.482626 Vertex 48033 0.407749 0.413816 0.304905 Vertex 48034 0.421128 0.142008 0.697429 Vertex 48035 0.464452 0.199144 0.669113 Vertex 48036 0.358514 0.424756 0.513631 Vertex 48037 0.510667 0.0297318 0.733421 Vertex 48038 0.373356 0.350485 0.48477 Vertex 48039 0.50706 0.151134 0.704453 Vertex 48040 0.493758 0.229077 0.530108 Vertex 48041 0.518787 0.302689 0.518683 Vertex 48042 0.531408 0.418122 0.565472 Vertex 48043 0.363802 0.229527 0.565211 Vertex 48044 0.47904 0.411216 0.377884 Vertex 48045 0.410325 0.278981 0.227703 Vertex 48046 0.462735 0.19973 0.478764 Vertex 48047 0.532427 0.428587 0.571726 Vertex 48048 0.537964 0.585064 0.534461 Vertex 48049 0.555495 0.452367 0.532447 Vertex 48050 0.531651 0.493749 0.4148 Vertex 48051 0.352549 0.0865834 0.439663 Vertex 48052 0.35865 0.27618 0.507163 Vertex 48053 0.460833 0.708581 0.476437 Vertex 48054 0.475072 0.724122 0.412502 Vertex 48055 0.603084 0.468512 0.18606 Vertex 48056 0.398645 0.36823 0.237635 Vertex 48057 0.549916 0.00106016 0.74789 Vertex 48058 0.482356 0.234928 0.592284 Vertex 48059 0.365739 0.229947 0.489265 Vertex 48060 0.420743 0.860207 0.42443 Vertex 48061 0.570876 0.450407 0.503397 Vertex 48062 0.461917 0.108479 0.77482 Vertex 48063 0.462853 0.109948 0.778635 Vertex 48064 0.552066 0.559407 0.498605 Vertex 48065 0.407251 0.33649 0.207962 Vertex 48066 0.481059 0.375941 0.417056 Vertex 48067 0.470102 0.76554 0.389095 Vertex 48068 0.46649 0.769383 0.388035 Vertex 48069 0.513468 0.133817 0.687775 Vertex 48070 0.592506 0.448494 0.191959 Vertex 48071 0.545048 0.0745012 0.741565 Vertex 48072 0.545824 0.0725467 0.743726 Vertex 48073 0.447022 0.611983 0.474151 Vertex 48074 0.448947 0.128824 0.754227 Vertex 48075 0.593045 0.516823 0.231019 Vertex 48076 0.380398 0.254538 0.467796 Vertex 48077 0.376465 0.255059 0.470313 Vertex 48078 0.450481 0.764503 0.418229 Vertex 48079 0.465495 0.1944 0.577993 Vertex 48080 0.47262 0.21979 0.749999 Vertex 48081 0.448396 0.198504 0.801472 Vertex 48082 0.395986 0.413532 0.60102 Vertex 48083 0.466572 0.286461 0.432319 Vertex 48084 0.518881 0.399193 0.55936 Vertex 48085 0.345833 0.9006 0.314801 Vertex 48086 0.491501 0.212144 0.50451 Vertex 48087 0.542246 0.611989 0.457425 Vertex 48088 0.512757 0.0976825 0.654525 Vertex 48089 0.52606 0.122338 0.796693 Vertex 48090 0.485229 0.386744 0.411892 Vertex 48091 0.477464 0.357462 0.62978 Vertex 48092 0.52677 0.33572 0.499269 Vertex 48093 0.530638 0.429754 0.577927 Vertex 48094 0.610795 0.504623 0.194109 Vertex 48095 0.380493 0.429488 0.339084 Vertex 48096 0.64979 0.418555 0.217504 Vertex 48097 0.411894 0.172622 0.536528 Vertex 48098 0.511508 0.170744 0.754091 Vertex 48099 0.357939 0.925629 0.328909 Vertex 48100 0.462042 0.374786 0.405631 Vertex 48101 0.361907 0.254443 0.214892 Vertex 48102 0.410289 0.40392 0.298798 Vertex 48103 0.393049 0.442725 0.596838 Vertex 48104 0.35637 0.302624 0.236439 Vertex 48105 0.4498 0.123138 0.640056 Vertex 48106 0.527967 0.0470022 0.660276 Vertex 48107 0.363666 0.382237 0.310561 Vertex 48108 0.646598 0.494933 0.233957 Vertex 48109 0.306513 0.993142 0.218292 Vertex 48110 0.649565 0.500968 0.229687 Vertex 48111 0.649784 0.502964 0.227673 Vertex 48112 0.541648 0.0420272 0.783479 Vertex 48113 0.412274 0.860883 0.342371 Vertex 48114 0.534582 0.61498 0.530333 Vertex 48115 0.41883 0.51889 0.471787 Vertex 48116 0.35634 0.207566 0.532992 Vertex 48117 0.362221 0.442743 0.47331 Vertex 48118 0.310114 0.963001 0.217178 Vertex 48119 0.561181 0.484154 0.345433 Vertex 48120 0.592062 0.43624 0.41583 Vertex 48121 0.369388 0.35719 0.452391 Vertex 48122 0.387671 0.204433 0.587161 Vertex 48123 0.526143 0.114681 0.74699 Vertex 48124 0.379877 0.313179 0.196721 Vertex 48125 0.429662 0.82816 0.441173 Vertex 48126 0.527854 0.117523 0.717607 Vertex 48127 0.55835 0.0321245 0.749957 Vertex 48128 0.380741 0.227815 0.21411 Vertex 48129 0.364981 0.211167 0.48124 Vertex 48130 0.545089 0.398009 0.479309 Vertex 48131 0.513208 0.655627 0.422061 Vertex 48132 0.321781 0.985768 0.202081 Vertex 48133 0.508641 0.752954 0.4443 Vertex 48134 0.529092 0.0466528 0.726971 Vertex 48135 0.392587 0.884502 0.390682 Vertex 48136 0.36199 0.441108 0.530517 Vertex 48137 0.44226 0.126407 0.739456 Vertex 48138 0.475314 0.712153 0.420242 Vertex 48139 0.603345 0.449856 0.320819 Vertex 48140 0.556609 0.0435493 0.745971 Vertex 48141 0.55716 0.0413165 0.747943 Vertex 48142 0.334225 0.948692 0.291549 Vertex 48143 0.466845 0.109895 0.781241 Vertex 48144 0.489949 0.211522 0.496473 Vertex 48145 0.432979 0.416316 0.397144 Vertex 48146 0.513533 0.0260538 0.727386 Vertex 48147 0.497566 0.244274 0.522029 Vertex 48148 0.367528 0.339659 0.583755 Vertex 48149 0.427305 0.359286 0.647412 Vertex 48150 0.336007 0.944505 0.297193 Vertex 48151 0.592802 0.458817 0.306646 Vertex 48152 0.48129 0.460558 0.607037 Vertex 48153 0.417432 0.252584 0.197242 Vertex 48154 0.417118 0.253413 0.199795 Vertex 48155 0.5233 0.590116 0.553384 Vertex 48156 0.551047 0.5687 0.474766 Vertex 48157 0.37345 0.357918 0.499274 Vertex 48158 0.535044 0.610141 0.532554 Vertex 48159 0.419357 0.303915 0.640139 Vertex 48160 0.689454 0.461304 0.196863 Vertex 48161 0.373101 0.353192 0.507572 Vertex 48162 0.371129 0.350663 0.509823 Vertex 48163 0.549034 0.590922 0.487026 Vertex 48164 0.400369 0.36255 0.408326 Vertex 48165 0.544769 0.0374549 0.714386 Vertex 48166 0.368055 0.244067 0.581522 Vertex 48167 0.468728 0.0664523 0.699709 Vertex 48168 0.603895 0.484983 0.390333 Vertex 48169 0.503323 0.453504 0.606747 Vertex 48170 0.51197 0.0787181 0.639565 Vertex 48171 0.541737 0.64191 0.468115 Vertex 48172 0.422543 0.806708 0.410435 Vertex 48173 0.627977 0.478634 0.186203 Vertex 48174 0.369003 0.295523 0.586308 Vertex 48175 0.406949 0.284258 0.216805 Vertex 48176 0.660475 0.467434 0.191557 Vertex 48177 0.466815 0.102065 0.656628 Vertex 48178 0.46627 0.0993408 0.658227 Vertex 48179 0.53935 0.149784 0.449767 Vertex 48180 0.381843 0.198409 0.477568 Vertex 48181 0.404444 0.358978 0.339546 Vertex 48182 0.551456 0.148345 0.437134 Vertex 48183 0.528565 0.57438 0.430275 Vertex 48184 0.623559 0.534491 0.271157 Vertex 48185 0.335883 0.259833 0.232684 Vertex 48186 0.487995 0.548877 0.383706 Vertex 48187 0.540138 0.546999 0.434818 Vertex 48188 0.505105 0.12623 0.658689 Vertex 48189 0.60983 0.463904 0.215549 Vertex 48190 0.482102 0.572437 0.407906 Vertex 48191 0.431125 0.138715 0.659287 Vertex 48192 0.406564 0.244002 0.204202 Vertex 48193 0.495866 0.409297 0.606895 Vertex 48194 0.329451 0.923177 0.259478 Vertex 48195 0.48036 0.370166 0.41843 Vertex 48196 0.419108 0.155754 0.613232 Vertex 48197 0.604689 0.444206 0.19376 Vertex 48198 0.533262 0.150181 0.460197 Vertex 48199 0.517774 0.353559 0.5696 Vertex 48200 0.428389 0.417796 0.619499 Vertex 48201 0.383104 0.0772789 0.465409 Vertex 48202 0.503808 0.678127 0.53667 Vertex 48203 0.474692 0.228875 0.479605 Vertex 48204 0.452062 0.518665 0.584738 Vertex 48205 0.441851 0.168375 0.562286 Vertex 48206 0.362784 0.883483 0.331237 Vertex 48207 0.491975 0.119969 0.7961 Vertex 48208 0.449059 0.797149 0.378121 Vertex 48209 0.430575 0.545365 0.503628 Vertex 48210 0.61442 0.538074 0.294658 Vertex 48211 0.442432 0.257286 0.731324 Vertex 48212 0.399149 0.428404 0.321091 Vertex 48213 0.401121 0.393318 0.264494 Vertex 48214 0.616688 0.519181 0.209425 Vertex 48215 0.477322 0.0542397 0.649408 Vertex 48216 0.549265 0.42318 0.532347 Vertex 48217 0.525544 0.147445 0.766558 Vertex 48218 0.358703 0.392767 0.502076 Vertex 48219 0.342961 0.942331 0.301937 Vertex 48220 0.483245 0.441072 0.377232 Vertex 48221 0.538799 0.665328 0.470561 Vertex 48222 0.39941 0.300107 0.209834 Vertex 48223 0.40429 0.253437 0.197319 Vertex 48224 0.526403 0.0637871 0.783171 Vertex 48225 0.386297 0.342312 0.455636 Vertex 48226 0.331157 0.917326 0.27573 Vertex 48227 0.488575 0.0715931 0.756567 Vertex 48228 0.429503 0.162435 0.768572 Vertex 48229 0.557847 0.0178391 0.77029 Vertex 48230 0.543105 0.593646 0.456471 Vertex 48231 0.509932 0.275362 0.505434 Vertex 48232 0.447857 0.474618 0.408391 Vertex 48233 0.558486 0.0300812 0.730833 Vertex 48234 0.380238 0.341163 0.399566 Vertex 48235 0.496127 0.757953 0.489443 Vertex 48236 0.525805 0.159195 0.790101 Vertex 48237 0.347776 0.89983 0.318983 Vertex 48238 0.619448 0.454244 0.205398 Vertex 48239 0.428454 0.308138 0.425952 Vertex 48240 0.523205 0.683635 0.435393 Vertex 48241 0.343215 0.292935 0.205913 Vertex 48242 0.445144 0.499399 0.428961 Vertex 48243 0.441354 0.827645 0.455873 Vertex 48244 0.484518 0.752912 0.504486 Vertex 48245 0.412315 0.218961 0.47142 Vertex 48246 0.643121 0.497906 0.240028 Vertex 48247 0.366693 0.450833 0.465503 Vertex 48248 0.315941 0.953282 0.224084 Vertex 48249 0.460922 0.0720841 0.696061 Vertex 48250 0.366243 0.247561 0.231298 Vertex 48251 0.519018 0.349479 0.485605 Vertex 48252 0.590788 0.457212 0.446966 Vertex 48253 0.474225 0.0641957 0.701036 Vertex 48254 0.51881 0.38017 0.441049 Vertex 48255 0.382897 0.231896 0.228952 Vertex 48256 0.488806 0.414012 0.383735 Vertex 48257 0.389542 0.222118 0.473623 Vertex 48258 0.394825 0.190668 0.588114 Vertex 48259 0.407518 0.325527 0.214732 Vertex 48260 0.631122 0.51619 0.278039 Vertex 48261 0.457677 0.454552 0.622952 Vertex 48262 0.40715 0.171574 0.528272 Vertex 48263 0.369476 0.238452 0.236906 Vertex 48264 0.525136 0.33543 0.534408 Vertex 48265 0.372153 0.347962 0.430797 Vertex 48266 0.566198 0.50188 0.39837 Vertex 48267 0.518698 0.358789 0.567575 Vertex 48268 0.511603 0.747132 0.482667 Vertex 48269 0.554477 0.471343 0.352831 Vertex 48270 0.436669 0.154481 0.57804 Vertex 48271 0.555359 0.0275522 0.779416 Vertex 48272 0.513972 0.172486 0.766523 Vertex 48273 0.530508 0.135013 0.791445 Vertex 48274 0.544402 0.617728 0.502633 Vertex 48275 0.497566 0.422138 0.396386 Vertex 48276 0.482919 0.742891 0.396943 Vertex 48277 0.367848 0.108154 0.478356 Vertex 48278 0.608823 0.445556 0.207092 Vertex 48279 0.639639 0.513714 0.225618 Vertex 48280 0.394227 0.186753 0.564246 Vertex 48281 0.396703 0.187583 0.566064 Vertex 48282 0.538343 0.125235 0.433853 Vertex 48283 0.481942 0.718212 0.404316 Vertex 48284 0.391224 0.251997 0.640115 Vertex 48285 0.327935 0.923071 0.261178 Vertex 48286 0.497892 0.0631948 0.760185 Vertex 48287 0.496002 0.0479262 0.683582 Vertex 48288 0.527842 0.140414 0.774785 Vertex 48289 0.492401 0.0420805 0.67757 Vertex 48290 0.514866 0.306533 0.559301 Vertex 48291 0.425434 0.151987 0.716772 Vertex 48292 0.444386 0.523332 0.436317 Vertex 48293 0.412724 0.263938 0.714705 Vertex 48294 0.512911 0.0195803 0.637486 Vertex 48295 0.549999 0.529172 0.44112 Vertex 48296 0.505372 0.657635 0.41291 Vertex 48297 0.356494 0.258335 0.517576 Vertex 48298 0.429657 0.407556 0.393964 Vertex 48299 0.525029 0.126893 0.758314 Vertex 48300 0.508339 0.029945 0.725005 Vertex 48301 0.507794 0.0314138 0.722979 Vertex 48302 0.381156 0.427942 0.31784 Vertex 48303 0.553713 0.55413 0.482667 Vertex 48304 0.52741 0.125945 0.716749 Vertex 48305 0.462302 0.318562 0.634732 Vertex 48306 0.530413 0.471343 0.405714 Vertex 48307 0.482356 0.244067 0.468903 Vertex 48308 0.407624 0.348715 0.442298 Vertex 48309 0.373356 0.361809 0.304141 Vertex 48310 0.341658 0.93228 0.313362 Vertex 48311 0.393724 0.307167 0.201128 Vertex 48312 0.394269 0.308221 0.203414 Vertex 48313 0.373747 0.390481 0.248349 Vertex 48314 0.409537 0.293521 0.63639 Vertex 48315 0.353651 0.130553 0.456158 Vertex 48316 0.457049 0.130796 0.645286 Vertex 48317 0.453839 0.296992 0.425229 Vertex 48318 0.486023 0.105512 0.805749 Vertex 48319 0.374481 0.344077 0.472439 Vertex 48320 0.523803 0.0426254 0.638084 Vertex 48321 0.501647 0.431016 0.399282 Vertex 48322 0.434454 0.141161 0.729204 Vertex 48323 0.48164 0.183135 0.711519 Vertex 48324 0.509453 0.441345 0.603306 Vertex 48325 0.505739 0.344841 0.598627 Vertex 48326 0.41241 0.319024 0.434374 Vertex 48327 0.551918 0.409931 0.51372 Vertex 48328 0.602705 0.473505 0.189946 Vertex 48329 0.525805 0.141611 0.754227 Vertex 48330 0.457505 0.582304 0.543967 Vertex 48331 0.507113 0.295659 0.466327 Vertex 48332 0.380848 0.356592 0.323004 Vertex 48333 0.399729 0.278205 0.194571 Vertex 48334 0.451387 0.380851 0.408054 Vertex 48335 0.513208 0.673732 0.524244 Vertex 48336 0.496233 0.252418 0.474494 Vertex 48337 0.405066 0.886617 0.339001 Vertex 48338 0.382145 0.867771 0.327292 Vertex 48339 0.460964 0.767316 0.393869 Vertex 48340 0.409217 0.313789 0.633731 Vertex 48341 0.521327 0.0831542 0.660033 Vertex 48342 0.505988 0.178047 0.45046 Vertex 48343 0.459175 0.11381 0.642869 Vertex 48344 0.37775 0.271447 0.232524 Vertex 48345 0.598677 0.527247 0.30391 Vertex 48346 0.573808 0.436802 0.331586 Vertex 48347 0.609238 0.450353 0.190799 Vertex 48348 0.60877 0.516569 0.329193 Vertex 48349 0.608391 0.516841 0.328394 Vertex 48350 0.415732 0.526305 0.562759 Vertex 48351 0.41716 0.528373 0.5618 Vertex 48352 0.363826 0.424341 0.434196 Vertex 48353 0.583036 0.505298 0.321891 Vertex 48354 0.472282 0.21854 0.590412 Vertex 48355 0.410485 0.257316 0.731241 Vertex 48356 0.468515 0.306071 0.426224 Vertex 48357 0.439749 0.143459 0.754121 Vertex 48358 0.603587 0.474613 0.288517 Vertex 48359 0.404142 0.248094 0.4555 Vertex 48360 0.49082 0.198042 0.756241 Vertex 48361 0.46428 0.762525 0.393514 Vertex 48362 0.681778 0.475223 0.210894 Vertex 48363 0.680712 0.475596 0.213204 Vertex 48364 0.679161 0.478237 0.209615 Vertex 48365 0.437078 0.541562 0.476419 Vertex 48366 0.436545 0.539934 0.476383 Vertex 48367 0.525669 0.345475 0.507217 Vertex 48368 0.510163 0.0791564 0.687935 Vertex 48369 0.476985 0.813857 0.439663 Vertex 48370 0.371934 0.367004 0.228573 Vertex 48371 0.359112 0.328838 0.528082 Vertex 48372 0.374528 0.899025 0.362556 Vertex 48373 0.548436 0.534929 0.440166 Vertex 48374 0.427299 0.172551 0.503355 Vertex 48375 0.461248 0.186901 0.650474 Vertex 48376 0.437504 0.561557 0.540786 Vertex 48377 0.537431 0.0846289 0.727119 Vertex 48378 0.412499 0.172717 0.596696 Vertex 48379 0.360278 0.428884 0.45871 Vertex 48380 0.684254 0.46256 0.18959 Vertex 48381 0.357738 0.396878 0.415931 Vertex 48382 0.358673 0.400141 0.416268 Vertex 48383 0.513101 0.158449 0.461885 Vertex 48384 0.525343 0.045563 0.642917 Vertex 48385 0.408003 0.353257 0.242172 Vertex 48386 0.406979 0.354933 0.246235 Vertex 48387 0.605844 0.483562 0.20246 Vertex 48388 0.524295 0.590389 0.427083 Vertex 48389 0.498259 0.101218 0.809278 Vertex 48390 0.423698 0.164135 0.74789 Vertex 48391 0.422952 0.163454 0.739592 Vertex 48392 0.406949 0.353512 0.236628 Vertex 48393 0.381245 0.401083 0.57178 Vertex 48394 0.542199 0.597502 0.519915 Vertex 48395 0.334225 0.915454 0.304253 Vertex 48396 0.553251 0.544535 0.462116 Vertex 48397 0.487705 0.600428 0.402777 Vertex 48398 0.382785 0.481062 0.542759 Vertex 48399 0.416354 0.88311 0.377019 Vertex 48400 0.463037 0.788863 0.382562 Vertex 48401 0.464991 0.592396 0.546218 Vertex 48402 0.529382 0.642864 0.524458 Vertex 48403 0.523993 0.568404 0.419437 Vertex 48404 0.411018 0.165781 0.621506 Vertex 48405 0.422265 0.141214 0.644024 Vertex 48406 0.462397 0.830221 0.433936 Vertex 48407 0.508025 0.478403 0.605024 Vertex 48408 0.401565 0.277281 0.633263 Vertex 48409 0.508831 0.0540206 0.72857 Vertex 48410 0.546055 0.45579 0.553177 Vertex 48411 0.637542 0.514069 0.252483 Vertex 48412 0.459892 0.213044 0.617734 Vertex 48413 0.570604 0.404032 0.393502 Vertex 48414 0.393919 0.178716 0.667022 Vertex 48415 0.414228 0.839674 0.355988 Vertex 48416 0.40397 0.88375 0.389717 Vertex 48417 0.540955 0.658938 0.469217 Vertex 48418 0.557254 0.0411803 0.737063 Vertex 48419 0.402939 0.250748 0.201696 Vertex 48420 0.359337 0.380673 0.35411 Vertex 48421 0.376957 0.339748 0.404097 Vertex 48422 0.376305 0.351036 0.368609 Vertex 48423 0.46219 0.132377 0.80823 Vertex 48424 0.473555 0.0570115 0.65202 Vertex 48425 0.357838 0.414752 0.516397 Vertex 48426 0.562022 0.0143091 0.751977 Vertex 48427 0.372467 0.376581 0.565555 Vertex 48428 0.410894 0.151839 0.64743 Vertex 48429 0.50167 0.166012 0.718514 Vertex 48430 0.487882 0.635436 0.409659 Vertex 48431 0.542282 0.53516 0.432633 Vertex 48432 0.62267 0.492138 0.311704 Vertex 48433 0.49384 0.238411 0.501288 Vertex 48434 0.480532 0.211273 0.7562 Vertex 48435 0.525787 0.581576 0.427587 Vertex 48436 0.528263 0.671926 0.50762 Vertex 48437 0.525165 0.67269 0.511801 Vertex 48438 0.422153 0.515888 0.577987 Vertex 48439 0.485158 0.78008 0.411886 Vertex 48440 0.534032 0.16064 0.453676 Vertex 48441 0.426849 0.239566 0.772345 Vertex 48442 0.419262 0.3941 0.623793 Vertex 48443 0.527434 0.584034 0.549955 Vertex 48444 0.433577 0.459326 0.605865 Vertex 48445 0.510732 0.589702 0.412081 Vertex 48446 0.421809 0.21125 0.784557 Vertex 48447 0.376832 0.395758 0.275196 Vertex 48448 0.378562 0.398909 0.279159 Vertex 48449 0.395246 0.259679 0.640115 Vertex 48450 0.317712 0.935603 0.254201 Vertex 48451 0.391526 0.331906 0.623431 Vertex 48452 0.357939 0.420515 0.519417 Vertex 48453 0.533339 0.663427 0.4477 Vertex 48454 0.641107 0.485297 0.190496 Vertex 48455 0.514244 0.396356 0.445076 Vertex 48456 0.64318 0.507833 0.196674 Vertex 48457 0.37213 0.412916 0.385269 Vertex 48458 0.53168 0.0887274 0.718431 Vertex 48459 0.494101 0.411074 0.401527 Vertex 48460 0.409721 0.444123 0.388521 Vertex 48461 0.41135 0.446065 0.389433 Vertex 48462 0.401234 0.435914 0.381597 Vertex 48463 0.540624 0.493204 0.406691 Vertex 48464 0.504543 0.258447 0.544784 Vertex 48465 0.4792 0.0758101 0.728955 Vertex 48466 0.608539 0.527609 0.304739 Vertex 48467 0.391064 0.25654 0.218321 Vertex 48468 0.514706 0.128486 0.694 Vertex 48469 0.392764 0.257642 0.633855 Vertex 48470 0.365111 0.349929 0.428807 Vertex 48471 0.3539 0.286011 0.530919 Vertex 48472 0.452785 0.234561 0.638048 Vertex 48473 0.398918 0.170365 0.681598 Vertex 48474 0.497726 0.576577 0.572461 Vertex 48475 0.407583 0.263221 0.196532 Vertex 48476 0.4524 0.140906 0.787217 Vertex 48477 0.483043 0.553491 0.393756 Vertex 48478 0.417776 0.375959 0.427735 Vertex 48479 0.525308 0.387135 0.439414 Vertex 48480 0.613964 0.449317 0.195578 Vertex 48481 0.432304 0.198397 0.791943 Vertex 48482 0.538669 0.00530079 0.733149 Vertex 48483 0.510785 0.742939 0.486653 Vertex 48484 0.451541 0.331225 0.636976 Vertex 48485 0.375831 0.473612 0.524979 Vertex 48486 0.441449 0.536629 0.453617 Vertex 48487 0.489244 0.390019 0.617325 Vertex 48488 0.51688 0.558809 0.57281 Vertex 48489 0.504199 0.16911 0.733539 Vertex 48490 0.365236 0.120733 0.467796 Vertex 48491 0.346905 0.907755 0.325101 Vertex 48492 0.409638 0.505209 0.456939 Vertex 48493 0.391947 0.347642 0.283607 Vertex 48494 0.415513 0.822125 0.418175 Vertex 48495 0.536969 0.577957 0.438028 Vertex 48496 0.522186 0.372784 0.532347 Vertex 48497 0.459483 0.650533 0.441392 Vertex 48498 0.37595 0.279064 0.19485 Vertex 48499 0.375754 0.356497 0.453617 Vertex 48500 0.342641 0.0990921 0.46436 Vertex 48501 0.364276 0.207577 0.217836 Vertex 48502 0.471873 0.758397 0.39086 Vertex 48503 0.577806 0.497711 0.40222 Vertex 48504 0.395056 0.848741 0.377043 Vertex 48505 0.373676 0.377593 0.500844 Vertex 48506 0.537656 0.0751823 0.785144 Vertex 48507 0.536602 0.123399 0.445319 Vertex 48508 0.610511 0.541793 0.267041 Vertex 48509 0.611618 0.541035 0.26501 Vertex 48510 0.422502 0.163833 0.586249 Vertex 48511 0.465187 0.0794525 0.743857 Vertex 48512 0.355416 0.366032 0.40389 Vertex 48513 0.354776 0.365855 0.408012 Vertex 48514 0.362985 0.362106 0.368733 Vertex 48515 0.465264 0.110013 0.644433 Vertex 48516 0.368541 0.147054 0.466291 Vertex 48517 0.531325 0.0346535 0.655242 Vertex 48518 0.440667 0.201252 0.797587 Vertex 48519 0.444795 0.552709 0.451603 Vertex 48520 0.398112 0.421468 0.603738 Vertex 48521 0.5199 0.313694 0.48615 Vertex 48522 0.461278 0.177094 0.667016 Vertex 48523 0.491323 0.197799 0.466102 Vertex 48524 0.554358 0.545092 0.47055 Vertex 48525 0.412824 0.420924 0.371114 Vertex 48526 0.51284 0.112856 0.666039 Vertex 48527 0.512449 0.114858 0.666365 Vertex 48528 0.561886 0.518197 0.439148 Vertex 48529 0.454396 0.128214 0.802065 Vertex 48530 0.414477 0.179107 0.74789 Vertex 48531 0.517478 0.349887 0.460499 Vertex 48532 0.363352 0.102877 0.465663 Vertex 48533 0.392948 0.254076 0.650486 Vertex 48534 0.489884 0.373601 0.432402 Vertex 48535 0.596338 0.508312 0.252566 Vertex 48536 0.441526 0.141433 0.611396 Vertex 48537 0.416573 0.264417 0.710577 Vertex 48538 0.606294 0.499132 0.211167 Vertex 48539 0.496861 0.296311 0.449767 Vertex 48540 0.336037 0.265886 0.2317 Vertex 48541 0.391224 0.298544 0.195092 Vertex 48542 0.391663 0.297632 0.195306 Vertex 48543 0.475474 0.216906 0.762418 Vertex 48544 0.472922 0.605894 0.429855 Vertex 48545 0.525207 0.715902 0.466267 Vertex 48546 0.450534 0.4053 0.632031 Vertex 48547 0.523856 0.151022 0.443892 Vertex 48548 0.383531 0.352552 0.3396 Vertex 48549 0.367208 0.353926 0.528698 Vertex 48550 0.510394 0.0519299 0.631374 Vertex 48551 0.5242 0.369568 0.511665 Vertex 48552 0.504857 0.263653 0.505381 Vertex 48553 0.361907 0.243415 0.491214 Vertex 48554 0.506722 0.694414 0.517889 Vertex 48555 0.517288 0.320617 0.561338 Vertex 48556 0.516145 0.319243 0.565496 Vertex 48557 0.355155 0.225653 0.511884 Vertex 48558 0.455136 0.123766 0.768596 Vertex 48559 0.354741 0.141652 0.474678 Vertex 48560 0.66693 0.481933 0.217776 Vertex 48561 0.397354 0.89864 0.34214 Vertex 48562 0.407488 0.164514 0.628744 Vertex 48563 0.412955 0.381591 0.380999 Vertex 48564 0.411486 0.380691 0.37892 Vertex 48565 0.369133 0.386513 0.26081 Vertex 48566 0.502221 0.324106 0.600706 Vertex 48567 0.38423 0.208922 0.620174 Vertex 48568 0.528358 0.427184 0.580006 Vertex 48569 0.494604 0.240069 0.563589 Vertex 48570 0.362594 0.255942 0.210645 Vertex 48571 0.40686 0.365985 0.250197 Vertex 48572 0.531325 0.687864 0.455684 Vertex 48573 0.40394 0.335809 0.630053 Vertex 48574 0.523081 0.118299 0.793264 Vertex 48575 0.608592 0.499671 0.250416 Vertex 48576 0.435348 0.15993 0.774826 Vertex 48577 0.358993 0.440587 0.501199 Vertex 48578 0.359568 0.114325 0.458704 Vertex 48579 0.394316 0.239702 0.466368 Vertex 48580 0.495759 0.261871 0.4685 Vertex 48581 0.494942 0.182454 0.73271 Vertex 48582 0.381215 0.270239 0.197645 Vertex 48583 0.368689 0.353476 0.372802 Vertex 48584 0.319536 0.9352 0.248278 Vertex 48585 0.474373 0.180209 0.699413 Vertex 48586 0.46312 0.290572 0.429434 Vertex 48587 0.54734 0.55519 0.445633 Vertex 48588 0.411142 0.845596 0.345173 Vertex 48589 0.409733 0.846479 0.344657 Vertex 48590 0.427595 0.265856 0.64637 Vertex 48591 0.470582 0.671979 0.42809 Vertex 48592 0.377667 0.1841 0.54941 Vertex 48593 0.583764 0.483739 0.299681 Vertex 48594 0.429331 0.194885 0.787578 Vertex 48595 0.486781 0.576299 0.399839 Vertex 48596 0.407198 0.251044 0.451964 Vertex 48597 0.526676 0.0585929 0.666886 Vertex 48598 0.465874 0.799453 0.477201 Vertex 48599 0.580838 0.491255 0.311799 Vertex 48600 0.411255 0.423103 0.343609 Vertex 48601 0.412487 0.421386 0.343473 Vertex 48602 0.475622 0.0542397 0.679501 Vertex 48603 0.628155 0.517789 0.280936 Vertex 48604 0.546262 0.401521 0.503355 Vertex 48605 0.511603 0.537677 0.399703 Vertex 48606 0.572618 0.407254 0.372299 Vertex 48607 0.399042 0.290447 0.199878 Vertex 48608 0.359153 0.399152 0.409742 Vertex 48609 0.470683 0.753297 0.484574 Vertex 48610 0.47336 0.691038 0.501259 Vertex 48611 0.360889 0.234709 0.555706 Vertex 48612 0.416727 0.265092 0.221448 Vertex 48613 0.416206 0.26681 0.223515 Vertex 48614 0.418492 0.41044 0.338687 Vertex 48615 0.418581 0.412223 0.34111 Vertex 48616 0.532794 0.0960182 0.793418 Vertex 48617 0.444925 0.844826 0.38364 Vertex 48618 0.572754 0.530368 0.482614 Vertex 48619 0.409105 0.180209 0.567509 Vertex 48620 0.467917 0.185936 0.799684 Vertex 48621 0.476813 0.767186 0.495206 Vertex 48622 0.478969 0.764 0.498528 Vertex 48623 0.492194 0.359079 0.433948 Vertex 48624 0.502168 0.621495 0.409878 Vertex 48625 0.629446 0.495756 0.262469 Vertex 48626 0.407299 0.349514 0.242095 Vertex 48627 0.476677 0.547059 0.410038 Vertex 48628 0.40134 0.333547 0.238233 Vertex 48629 0.483055 0.673679 0.414515 Vertex 48630 0.369447 0.454683 0.538625 Vertex 48631 0.525627 0.176128 0.455287 Vertex 48632 0.493272 0.210065 0.5117 Vertex 48633 0.354788 0.21273 0.531956 Vertex 48634 0.491951 0.667158 0.530937 Vertex 48635 0.482919 0.768146 0.491569 Vertex 48636 0.421104 0.829534 0.370948 Vertex 48637 0.598026 0.451544 0.312912 Vertex 48638 0.361084 0.303773 0.490876 Vertex 48639 0.548489 0.594061 0.468483 Vertex 48640 0.547796 0.593966 0.46436 Vertex 48641 0.451849 0.127616 0.635128 Vertex 48642 0.528032 0.396516 0.449489 Vertex 48643 0.598067 0.455743 0.207335 Vertex 48644 0.357969 0.284886 0.557619 Vertex 48645 0.356861 0.286692 0.553834 Vertex 48646 0.357915 0.394455 0.335448 Vertex 48647 0.447851 0.242083 0.694 Vertex 48648 0.372681 0.182525 0.532394 Vertex 48649 0.567015 0.468962 0.320529 Vertex 48650 0.493325 0.210308 0.489099 Vertex 48651 0.445642 0.498978 0.425324 Vertex 48652 0.374836 0.354981 0.463869 Vertex 48653 0.487474 0.705223 0.509681 Vertex 48654 0.592613 0.517054 0.322489 Vertex 48655 0.402999 0.1833 0.559271 Vertex 48656 0.401506 0.18474 0.561474 Vertex 48657 0.555507 0.426497 0.519915 Vertex 48658 0.540114 0.400413 0.43955 Vertex 48659 0.457919 0.696298 0.451496 Vertex 48660 0.58826 0.44404 0.320244 Vertex 48661 0.4075 0.527715 0.534431 Vertex 48662 0.401796 0.383007 0.244079 Vertex 48663 0.644507 0.429381 0.21119 Vertex 48664 0.530395 0.604052 0.436755 Vertex 48665 0.446749 0.330763 0.417494 Vertex 48666 0.380972 0.342265 0.393253 Vertex 48667 0.378277 0.342413 0.391571 Vertex 48668 0.503986 0.171426 0.779008 Vertex 48669 0.401992 0.16574 0.631907 Vertex 48670 0.478975 0.723086 0.495265 Vertex 48671 0.485543 0.60603 0.414266 Vertex 48672 0.48113 0.166202 0.671008 Vertex 48673 0.39479 0.230439 0.469448 Vertex 48674 0.480272 0.668325 0.420373 Vertex 48675 0.465885 0.401083 0.383777 Vertex 48676 0.420559 0.54158 0.519962 Vertex 48677 0.551888 0.000538977 0.756057 Vertex 48678 0.532379 0.526329 0.422173 Vertex 48679 0.517383 0.614375 0.544784 Vertex 48680 0.39768 0.286094 0.196318 Vertex 48681 0.338856 0.907997 0.294688 Vertex 48682 0.388062 0.246857 0.690713 Vertex 48683 0.486028 0.0749098 0.756342 Vertex 48684 0.484246 0.185024 0.720356 Vertex 48685 0.355232 0.255587 0.523634 Vertex 48686 0.487841 0.164911 0.793228 Vertex 48687 0.468882 0.279307 0.435363 Vertex 48688 0.480171 0.475015 0.386495 Vertex 48689 0.512686 0.281267 0.499269 Vertex 48690 0.373841 0.417613 0.391447 Vertex 48691 0.377827 0.358333 0.316791 Vertex 48692 0.453122 0.0851146 0.70485 Vertex 48693 0.37136 0.373394 0.555255 Vertex 48694 0.415389 0.839697 0.347637 Vertex 48695 0.531236 0.556553 0.567693 Vertex 48696 0.551646 0.507483 0.412365 Vertex 48697 0.464061 0.0893019 0.661324 Vertex 48698 0.505005 0.326629 0.59656 Vertex 48699 0.493947 0.199375 0.468358 Vertex 48700 0.570415 0.502034 0.387437 Vertex 48701 0.456409 0.181843 0.627707 Vertex 48702 0.467579 0.41461 0.376119 Vertex 48703 0.46389 0.412111 0.379068 Vertex 48704 0.360278 0.314375 0.203384 Vertex 48705 0.462077 0.695759 0.48474 Vertex 48706 0.451037 0.126159 0.635051 Vertex 48707 0.512639 0.582997 0.563731 Vertex 48708 0.468799 0.745065 0.482567 Vertex 48709 0.497702 0.240164 0.536581 Vertex 48710 0.513249 0.183241 0.45701 Vertex 48711 0.506266 0.166871 0.470289 Vertex 48712 0.582349 0.406745 0.380904 Vertex 48713 0.366112 0.9188 0.294895 Vertex 48714 0.395465 0.251222 0.712668 Vertex 48715 0.41238 0.428191 0.377818 Vertex 48716 0.462148 0.0902554 0.723293 Vertex 48717 0.510809 0.165698 0.745645 Vertex 48718 0.531603 0.399105 0.488821 Vertex 48719 0.472341 0.819507 0.422102 Vertex 48720 0.551332 0.0613943 0.745882 Vertex 48721 0.403508 0.360317 0.296062 Vertex 48722 0.55986 0.0173534 0.758278 Vertex 48723 0.367451 0.323691 0.583406 Vertex 48724 0.662376 0.431584 0.22178 Vertex 48725 0.512686 0.440676 0.412271 Vertex 48726 0.40975 0.163643 0.704388 Vertex 48727 0.404011 0.321529 0.202869 Vertex 48728 0.499976 0.780044 0.455684 Vertex 48729 0.415128 0.152206 0.636254 Vertex 48730 0.457677 0.173421 0.648348 Vertex 48731 0.506106 0.288475 0.465367 Vertex 48732 0.550461 0.400248 0.412567 Vertex 48733 0.352271 0.218919 0.519968 Vertex 48734 0.499171 0.4201 0.605675 Vertex 48735 0.370993 0.366512 0.505416 Vertex 48736 0.450421 0.134006 0.774832 Vertex 48737 0.415253 0.375716 0.29775 Vertex 48738 0.480426 0.0684897 0.742341 Vertex 48739 0.474947 0.286082 0.62432 Vertex 48740 0.412795 0.163945 0.710559 Vertex 48741 0.41456 0.165467 0.714759 Vertex 48742 0.484293 0.540751 0.3915 Vertex 48743 0.481545 0.211836 0.490367 Vertex 48744 0.483476 0.739835 0.397659 Vertex 48745 0.509032 0.732082 0.430358 Vertex 48746 0.527967 0.608056 0.540852 Vertex 48747 0.48832 0.207074 0.55304 Vertex 48748 0.388151 0.307357 0.194524 Vertex 48749 0.432026 0.168026 0.553123 Vertex 48750 0.336973 0.253182 0.207826 Vertex 48751 0.494492 0.409013 0.40328 Vertex 48752 0.458766 0.408125 0.38463 Vertex 48753 0.337453 0.261788 0.232109 Vertex 48754 0.401234 0.357545 0.291898 Vertex 48755 0.502085 0.259436 0.495052 Vertex 48756 0.508256 0.161073 0.455861 Vertex 48757 0.527647 0.590247 0.430767 Vertex 48758 0.526451 0.59213 0.429132 Vertex 48759 0.415371 0.847563 0.424388 Vertex 48760 0.340213 0.250718 0.212091 Vertex 48761 0.605287 0.503237 0.218836 Vertex 48762 0.407062 0.17319 0.534568 Vertex 48763 0.555685 0.479321 0.360341 Vertex 48764 0.546742 0.597679 0.467197 Vertex 48765 0.440584 0.509165 0.43602 Vertex 48766 0.371703 0.172717 0.465681 Vertex 48767 0.623778 0.453072 0.193162 Vertex 48768 0.363192 0.133763 0.4589 Vertex 48769 0.420453 0.136944 0.679726 Vertex 48770 0.392995 0.305473 0.445212 Vertex 48771 0.396028 0.879764 0.395296 Vertex 48772 0.522619 0.313877 0.51138 Vertex 48773 0.509861 0.276967 0.479955 Vertex 48774 0.380664 0.485421 0.51372 Vertex 48775 0.383104 0.491936 0.505416 Vertex 48776 0.594407 0.446438 0.19174 Vertex 48777 0.453146 0.231025 0.667046 Vertex 48778 0.378094 0.338202 0.270885 Vertex 48779 0.378609 0.339369 0.272762 Vertex 48780 0.385391 0.303548 0.241283 Vertex 48781 0.468006 0.225233 0.758302 Vertex 48782 0.61731 0.483923 0.273047 Vertex 48783 0.487977 0.172474 0.49918 Vertex 48784 0.447685 0.525133 0.433539 Vertex 48785 0.368872 0.211344 0.21334 Vertex 48786 0.560926 0.421083 0.362585 Vertex 48787 0.556976 0.438141 0.349313 Vertex 48788 0.416793 0.375722 0.628791 Vertex 48789 0.499349 0.247413 0.517895 Vertex 48790 0.457594 0.203266 0.616502 Vertex 48791 0.529596 0.0629994 0.791469 Vertex 48792 0.389027 0.285306 0.449725 Vertex 48793 0.448651 0.247277 0.731324 Vertex 48794 0.49018 0.0693899 0.643787 Vertex 48795 0.407287 0.373015 0.383107 Vertex 48796 0.403236 0.384878 0.262848 Vertex 48797 0.595183 0.486878 0.39792 Vertex 48798 0.421187 0.844536 0.43066 Vertex 48799 0.449201 0.601263 0.503995 Vertex 48800 0.361522 0.302447 0.194571 Vertex 48801 0.515831 0.119537 0.706366 Vertex 48802 0.485963 0.397938 0.39946 Vertex 48803 0.476161 0.501188 0.602749 Vertex 48804 0.49297 0.634282 0.40193 Vertex 48805 0.457049 0.720889 0.447197 Vertex 48806 0.407488 0.250286 0.195033 Vertex 48807 0.40028 0.217859 0.737383 Vertex 48808 0.660149 0.470319 0.214839 Vertex 48809 0.508025 0.28427 0.475051 Vertex 48810 0.373978 0.285241 0.594576 Vertex 48811 0.395204 0.188424 0.583477 Vertex 48812 0.351288 0.384712 0.459628 Vertex 48813 0.386812 0.198611 0.671203 Vertex 48814 0.488415 0.382379 0.621625 Vertex 48815 0.451156 0.293184 0.635508 Vertex 48816 0.587253 0.491184 0.442204 Vertex 48817 0.521979 0.0527413 0.663569 Vertex 48818 0.360646 0.196751 0.467677 Vertex 48819 0.436604 0.792813 0.443252 Vertex 48820 0.385787 0.175779 0.49729 Vertex 48821 0.426168 0.436725 0.610851 Vertex 48822 0.407849 0.400484 0.614867 Vertex 48823 0.429378 0.300285 0.641472 Vertex 48824 0.40776 0.366488 0.43364 Vertex 48825 0.362381 0.359885 0.371238 Vertex 48826 0.440412 0.445615 0.403363 Vertex 48827 0.363483 0.233377 0.208146 Vertex 48828 0.420559 0.170271 0.752071 Vertex 48829 0.639348 0.51398 0.221502 Vertex 48830 0.387487 0.346387 0.449814 Vertex 48831 0.374546 0.330254 0.474482 Vertex 48832 0.434359 0.81423 0.378908 Vertex 48833 0.549768 0.406911 0.403333 Vertex 48834 0.421466 0.24094 0.198741 Vertex 48835 0.520066 0.52685 0.407183 Vertex 48836 0.373723 0.37892 0.573859 Vertex 48837 0.48655 0.0640358 0.740901 Vertex 48838 0.407162 0.262877 0.697921 Vertex 48839 0.409105 0.263547 0.698193 Vertex 48840 0.397757 0.318148 0.443566 Vertex 48841 0.421578 0.812204 0.42061 Vertex 48842 0.544633 0.0159083 0.766712 Vertex 48843 0.436841 0.327944 0.419354 Vertex 48844 0.597238 0.513134 0.231618 Vertex 48845 0.413434 0.173587 0.592509 Vertex 48846 0.483381 0.114775 0.81176 Vertex 48847 0.404467 0.254663 0.22085 Vertex 48848 0.424533 0.802989 0.414503 Vertex 48849 0.425949 0.802236 0.416446 Vertex 48850 0.519018 0.387846 0.526252 Vertex 48851 0.505804 0.337171 0.451846 Vertex 48852 0.451482 0.399152 0.395705 Vertex 48853 0.41803 0.263298 0.223515 Vertex 48854 0.67566 0.474257 0.216882 Vertex 48855 0.401708 0.837494 0.389338 Vertex 48856 0.428312 0.861801 0.363403 Vertex 48857 0.495611 0.127604 0.64666 Vertex 48858 0.67248 0.462021 0.217587 Vertex 48859 0.484933 0.188074 0.551015 Vertex 48860 0.388281 0.206582 0.70023 Vertex 48861 0.368162 0.381236 0.246288 Vertex 48862 0.59343 0.522112 0.210705 Vertex 48863 0.576183 0.51276 0.438982 Vertex 48864 0.357714 0.244381 0.50878 Vertex 48865 0.436586 0.25654 0.718887 Vertex 48866 0.313028 0.959157 0.261201 Vertex 48867 0.53399 0.605118 0.442737 Vertex 48868 0.373439 0.418288 0.374733 Vertex 48869 0.522459 0.0282629 0.634619 Vertex 48870 0.374019 0.32516 0.606883 Vertex 48871 0.505662 0.0989025 0.720059 Vertex 48872 0.412996 0.420586 0.328471 Vertex 48873 0.570539 0.501466 0.347897 Vertex 48874 0.598458 0.458971 0.200174 Vertex 48875 0.384917 0.207115 0.68158 Vertex 48876 0.388198 0.199215 0.656705 Vertex 48877 0.483144 0.492955 0.392442 Vertex 48878 0.516992 0.603993 0.423968 Vertex 48879 0.488646 0.469454 0.388266 Vertex 48880 0.345105 0.301908 0.224682 Vertex 48881 0.463238 0.549937 0.427954 Vertex 48882 0.529524 0.164881 0.438413 Vertex 48883 0.494681 0.0716228 0.762063 Vertex 48884 0.470369 0.222005 0.762418 Vertex 48885 0.498531 0.170051 0.71111 Vertex 48886 0.599507 0.443904 0.326937 Vertex 48887 0.656145 0.48663 0.191717 Vertex 48888 0.657809 0.488572 0.192777 Vertex 48889 0.558392 0.530546 0.459125 Vertex 48890 0.660036 0.440036 0.219322 Vertex 48891 0.661505 0.439473 0.213204 Vertex 48892 0.660806 0.441677 0.215188 Vertex 48893 0.352111 0.186605 0.464171 Vertex 48894 0.399498 0.315334 0.231813 Vertex 48895 0.521724 0.429831 0.590525 Vertex 48896 0.437326 0.543849 0.484722 Vertex 48897 0.512544 0.15743 0.453534 Vertex 48898 0.355108 0.357966 0.422499 Vertex 48899 0.415845 0.265489 0.210373 Vertex 48900 0.620236 0.482342 0.27875 Vertex 48901 0.599874 0.521514 0.249658 Vertex 48902 0.350589 0.313001 0.219458 Vertex 48903 0.47856 0.666755 0.423547 Vertex 48904 0.552481 0.556766 0.481151 Vertex 48905 0.580832 0.478456 0.490918 Vertex 48906 0.518271 0.623461 0.426811 Vertex 48907 0.419262 0.376125 0.349923 Vertex 48908 0.441028 0.818399 0.454351 Vertex 48909 0.411202 0.823374 0.393271 Vertex 48910 0.63015 0.505481 0.280787 Vertex 48911 0.455509 0.273135 0.631575 Vertex 48912 0.439784 0.355626 0.418744 Vertex 48913 0.678302 0.468222 0.195525 Vertex 48914 0.464772 0.162802 0.80043 Vertex 48915 0.373125 0.340666 0.480559 Vertex 48916 0.386409 0.202111 0.64634 Vertex 48917 0.51409 0.169098 0.46731 Vertex 48918 0.383957 0.43624 0.588748 Vertex 48919 0.482931 0.773849 0.407023 Vertex 48920 0.527665 0.694 0.493032 Vertex 48921 0.428484 0.136849 0.70822 Vertex 48922 0.44396 0.820289 0.458527 Vertex 48923 0.49865 0.204367 0.517025 Vertex 48924 0.365165 0.354246 0.543967 Vertex 48925 0.373415 0.382598 0.553123 Vertex 48926 0.30977 0.945891 0.254882 Vertex 48927 0.532373 0.535089 0.423547 Vertex 48928 0.385171 0.252951 0.218783 Vertex 48929 0.47638 0.583424 0.424146 Vertex 48930 0.541121 0.5964 0.524185 Vertex 48931 0.502221 0.73502 0.499085 Vertex 48932 0.382394 0.200695 0.572538 Vertex 48933 0.632792 0.518547 0.269783 Vertex 48934 0.539214 0.560758 0.437472 Vertex 48935 0.359917 0.336567 0.554728 Vertex 48936 0.359911 0.334435 0.554456 Vertex 48937 0.556556 0.404447 0.486754 Vertex 48938 0.488984 0.514271 0.389812 Vertex 48939 0.520048 0.148931 0.445728 Vertex 48940 0.360326 0.309554 0.565354 Vertex 48941 0.372941 0.383066 0.559301 Vertex 48942 0.520392 0.573545 0.416541 Vertex 48943 0.368369 0.34782 0.582831 Vertex 48944 0.465862 0.169874 0.672104 Vertex 48945 0.40317 0.358019 0.325089 Vertex 48946 0.486905 0.774228 0.485019 Vertex 48947 0.492822 0.733368 0.513134 Vertex 48948 0.507563 0.409126 0.590353 Vertex 48949 0.48681 0.194903 0.551015 Vertex 48950 0.55023 0.571377 0.477396 Vertex 48951 0.551604 0.570098 0.479131 Vertex 48952 0.361955 0.372553 0.360287 Vertex 48953 0.455083 0.18092 0.571756 Vertex 48954 0.45478 0.18365 0.573841 Vertex 48955 0.430835 0.433888 0.393271 Vertex 48956 0.354314 0.290868 0.54232 Vertex 48957 0.343997 0.122161 0.472492 Vertex 48958 0.510205 0.287522 0.48156 Vertex 48959 0.526078 0.0706929 0.791629 Vertex 48960 0.510187 0.36916 0.584105 Vertex 48961 0.595846 0.469803 0.295411 Vertex 48962 0.442669 0.570483 0.480778 Vertex 48963 0.53614 0.659974 0.497669 Vertex 48964 0.463179 0.696256 0.439065 Vertex 48965 0.363512 0.187322 0.460268 Vertex 48966 0.42034 0.864152 0.352304 Vertex 48967 0.584587 0.49209 0.423654 Vertex 48968 0.665136 0.414225 0.231434 Vertex 48969 0.352709 0.140373 0.456146 Vertex 48970 0.353373 0.0897698 0.452936 Vertex 48971 0.386125 0.496266 0.513684 Vertex 48972 0.400097 0.33084 0.229497 Vertex 48973 0.485584 0.695178 0.406147 Vertex 48974 0.587294 0.414456 0.396191 Vertex 48975 0.494575 0.393069 0.430317 Vertex 48976 0.399427 0.353239 0.277323 Vertex 48977 0.613164 0.530185 0.30218 Vertex 48978 0.457647 0.152982 0.796012 Vertex 48979 0.533712 0.605568 0.534473 Vertex 48980 0.593448 0.516403 0.281972 Vertex 48981 0.370708 0.437939 0.561587 Vertex 48982 0.507729 0.0750461 0.636366 Vertex 48983 0.506284 0.192291 0.461067 Vertex 48984 0.544538 0.631865 0.496242 Vertex 48985 0.409152 0.281457 0.436885 Vertex 48986 0.513373 0.120556 0.694047 Vertex 48987 0.428667 0.37481 0.647264 Vertex 48988 0.389211 0.076355 0.465421 Vertex 48989 0.637471 0.500951 0.251458 Vertex 48990 0.419091 0.850867 0.430874 Vertex 48991 0.432405 0.15422 0.741689 Vertex 48992 0.373883 0.395557 0.279319 Vertex 48993 0.366864 0.259478 0.229989 Vertex 48994 0.598174 0.535734 0.271039 Vertex 48995 0.484974 0.1348 0.797481 Vertex 48996 0.35894 0.390155 0.391447 Vertex 48997 0.419671 0.17004 0.517866 Vertex 48998 0.446524 0.508022 0.427409 Vertex 48999 0.507291 0.732462 0.426443 Vertex 49000 0.617215 0.541296 0.271211 Vertex 49001 0.47108 0.385328 0.399827 Vertex 49002 0.620289 0.45107 0.197236 Vertex 49003 0.517111 0.162216 0.446658 Vertex 49004 0.503619 0.4261 0.603152 Vertex 49005 0.606803 0.459522 0.387798 Vertex 49006 0.606099 0.47742 0.389747 Vertex 49007 0.468728 0.18134 0.689795 Vertex 49008 0.493053 0.259276 0.46683 Vertex 49009 0.453874 0.618835 0.501762 Vertex 49010 0.423029 0.822444 0.379814 Vertex 49011 0.365123 0.29181 0.195472 Vertex 49012 0.427394 0.519127 0.466244 Vertex 49013 0.417675 0.392761 0.374294 Vertex 49014 0.362274 0.39821 0.385192 Vertex 49015 0.58441 0.494264 0.457751 Vertex 49016 0.498277 0.207441 0.489958 Vertex 49017 0.392125 0.34907 0.443827 Vertex 49018 0.408086 0.442026 0.385364 Vertex 49019 0.528263 0.39837 0.497166 Vertex 49020 0.552019 0.519382 0.437229 Vertex 49021 0.358833 0.393928 0.370717 Vertex 49022 0.419333 0.228917 0.201696 Vertex 49023 0.406919 0.831329 0.387626 Vertex 49024 0.344874 0.942846 0.272206 Vertex 49025 0.613271 0.467636 0.309323 Vertex 49026 0.389187 0.26463 0.615246 Vertex 49027 0.391307 0.207779 0.706455 Vertex 49028 0.600792 0.528396 0.210728 Vertex 49029 0.481367 0.177218 0.488898 Vertex 49030 0.511371 0.539957 0.397837 Vertex 49031 0.372657 0.372458 0.528722 Vertex 49032 0.593258 0.522936 0.221448 Vertex 49033 0.455059 0.515479 0.424388 Vertex 49034 0.378816 0.882157 0.370498 Vertex 49035 0.493201 0.771486 0.483129 Vertex 49036 0.406386 0.174144 0.604935 Vertex 49037 0.559221 0.0319054 0.745657 Vertex 49038 0.402223 0.179925 0.5531 Vertex 49039 0.458423 0.765682 0.405862 Vertex 49040 0.480775 0.171123 0.688563 Vertex 49041 0.621024 0.509426 0.306261 Vertex 49042 0.407435 0.177028 0.54893 Vertex 49043 0.520214 0.0336466 0.631391 Vertex 49044 0.500326 0.0341086 0.67227 Vertex 49045 0.547417 0.536516 0.438455 Vertex 49046 0.444416 0.579876 0.475785 Vertex 49047 0.520895 0.0304366 0.661857 Vertex 49048 0.322433 0.247739 0.215573 Vertex 49049 0.57719 0.515615 0.474322 Vertex 49050 0.577842 0.513601 0.472291 Vertex 49051 0.401921 0.326534 0.217836 Vertex 49052 0.491092 0.696043 0.404654 Vertex 49053 0.438452 0.165941 0.567711 Vertex 49054 0.524159 0.546514 0.411738 Vertex 49055 0.434649 0.290939 0.639659 Vertex 49056 0.459412 0.2213 0.623301 Vertex 49057 0.360006 0.263695 0.562446 Vertex 49058 0.481207 0.226862 0.489224 Vertex 49059 0.589225 0.445372 0.186137 Vertex 49060 0.349831 0.0883484 0.442233 Vertex 49061 0.688601 0.45829 0.196502 Vertex 49062 0.632709 0.458053 0.185646 Vertex 49063 0.647658 0.468885 0.218623 Vertex 49064 0.445494 0.171082 0.5679 Vertex 49065 0.481024 0.772576 0.490426 Vertex 49066 0.440892 0.250582 0.644184 Vertex 49067 0.516459 0.342685 0.474405 Vertex 49068 0.503465 0.255545 0.526163 Vertex 49069 0.363814 0.237635 0.568469 Vertex 49070 0.46646 0.600428 0.540621 Vertex 49071 0.426032 0.232482 0.198871 Vertex 49072 0.374126 0.0795887 0.478208 Vertex 49073 0.554583 0.561362 0.517818 Vertex 49074 0.407867 0.156643 0.669895 Vertex 49075 0.520066 0.710323 0.497119 Vertex 49076 0.564539 0.536919 0.470188 Vertex 49077 0.564314 0.536765 0.469827 Vertex 49078 0.375056 0.393875 0.531754 Vertex 49079 0.667528 0.458432 0.190881 Vertex 49080 0.602758 0.438307 0.359346 Vertex 49081 0.604736 0.441244 0.359511 Vertex 49082 0.499485 0.408581 0.415155 Vertex 49083 0.487177 0.603875 0.408012 Vertex 49084 0.422763 0.231689 0.462566 Vertex 49085 0.423829 0.27153 0.644522 Vertex 49086 0.348469 0.307896 0.225334 Vertex 49087 0.486538 0.39317 0.406366 Vertex 49088 0.547523 0.586628 0.465373 Vertex 49089 0.531971 0.0779896 0.714942 Vertex 49090 0.593312 0.512156 0.262261 Vertex 49091 0.597937 0.427533 0.381787 Vertex 49092 0.369216 0.231446 0.233442 Vertex 49093 0.475143 0.536149 0.411388 Vertex 49094 0.529436 0.0286953 0.652517 Vertex 49095 0.507036 0.548302 0.395539 Vertex 49096 0.500942 0.464751 0.392779 Vertex 49097 0.39832 0.20782 0.733338 Vertex 49098 0.476209 0.55631 0.57531 Vertex 49099 0.471311 0.557571 0.573225 Vertex 49100 0.617494 0.492552 0.252519 Vertex 49101 0.367344 0.262007 0.577975 Vertex 49102 0.520392 0.164502 0.774862 Vertex 49103 0.55514 0.535936 0.458349 Vertex 49104 0.469084 0.465118 0.613754 Vertex 49105 0.491092 0.0998028 0.646897 Vertex 49106 0.540043 0.0258406 0.775146 Vertex 49107 0.367611 0.356882 0.533318 Vertex 49108 0.400221 0.501146 0.566586 Vertex 49109 0.367374 0.189294 0.532388 Vertex 49110 0.438049 0.145597 0.600771 Vertex 49111 0.527505 0.603093 0.543558 Vertex 49112 0.503945 0.733208 0.499233 Vertex 49113 0.553061 0.0469489 0.768619 Vertex 49114 0.410503 0.870921 0.410257 Vertex 49115 0.501646 0.0906878 0.79552 Vertex 49116 0.526587 0.127343 0.723406 Vertex 49117 0.343766 0.914962 0.320392 Vertex 49118 0.395832 0.188169 0.586272 Vertex 49119 0.570189 0.481886 0.513821 Vertex 49120 0.568294 0.483651 0.517895 Vertex 49121 0.568993 0.485445 0.515852 Vertex 49122 0.346147 0.102308 0.45518 Vertex 49123 0.569591 0.507957 0.509639 Vertex 49124 0.539783 0.167765 0.447386 Vertex 49125 0.392077 0.192113 0.601506 Vertex 49126 0.447093 0.172474 0.584087 Vertex 49127 0.444676 0.170229 0.588292 Vertex 49128 0.582438 0.501987 0.432864 Vertex 49129 0.609777 0.484426 0.272099 Vertex 49130 0.526214 0.114272 0.749999 Vertex 49131 0.405895 0.246543 0.200417 Vertex 49132 0.600555 0.516107 0.360246 Vertex 49133 0.332205 0.939085 0.246335 Vertex 49134 0.347959 0.14289 0.462062 Vertex 49135 0.348646 0.142085 0.460226 Vertex 49136 0.439133 0.343437 0.646725 Vertex 49137 0.518733 0.603815 0.549528 Vertex 49138 0.547891 0.0372121 0.791161 Vertex 49139 0.390727 0.421083 0.30176 Vertex 49140 0.329196 0.250161 0.204776 Vertex 49141 0.366876 0.205321 0.215164 Vertex 49142 0.384632 0.236563 0.675343 Vertex 49143 0.622629 0.492629 0.307558 Vertex 49144 0.505804 0.342229 0.450584 Vertex 49145 0.46524 0.597182 0.435594 Vertex 49146 0.54683 0.599385 0.497172 Vertex 49147 0.437859 0.778646 0.420622 Vertex 49148 0.546907 0.154493 0.443714 Vertex 49149 0.366243 0.194044 0.544251 Vertex 49150 0.365188 0.242148 0.571087 Vertex 49151 0.516566 0.367282 0.448446 Vertex 49152 0.405747 0.244108 0.743673 Vertex 49153 0.355487 0.316631 0.530842 Vertex 49154 0.355629 0.315163 0.528544 Vertex 49155 0.532053 0.0614535 0.714433 Vertex 49156 0.464843 0.211451 0.656444 Vertex 49157 0.360071 0.428676 0.522491 Vertex 49158 0.413618 0.490331 0.588588 Vertex 49159 0.350956 0.936562 0.278774 Vertex 49160 0.462652 0.21276 0.647027 Vertex 49161 0.362197 0.43098 0.536617 Vertex 49162 0.40644 0.892841 0.358901 Vertex 49163 0.449207 0.580658 0.526199 Vertex 49164 0.356678 0.385767 0.405904 Vertex 49165 0.35663 0.388823 0.410559 Vertex 49166 0.414945 0.406798 0.30696 Vertex 49167 0.35878 0.376361 0.376444 Vertex 49168 0.357986 0.401746 0.335448 Vertex 49169 0.542933 0.417577 0.54065 Vertex 49170 0.44929 0.567504 0.453534 Vertex 49171 0.463783 0.357972 0.411317 Vertex 49172 0.422395 0.870785 0.397665 Vertex 49173 0.46322 0.194056 0.65873 Vertex 49174 0.463487 0.19222 0.656646 Vertex 49175 0.462042 0.193458 0.654561 Vertex 49176 0.553944 0.158656 0.437081 Vertex 49177 0.371336 0.266863 0.195661 Vertex 49178 0.443859 0.251796 0.735458 Vertex 49179 0.410651 0.50958 0.463164 Vertex 49180 0.400736 0.330017 0.235562 Vertex 49181 0.534671 0.5099 0.582144 Vertex 49182 0.422259 0.262238 0.729216 Vertex 49183 0.524632 0.133775 0.728955 Vertex 49184 0.45924 0.231215 0.718887 Vertex 49185 0.531218 0.102438 0.720966 Vertex 49186 0.36167 0.195904 0.526169 Vertex 49187 0.605151 0.462572 0.390576 Vertex 49188 0.404047 0.336046 0.235757 Vertex 49189 0.402744 0.334761 0.236113 Vertex 49190 0.439115 0.555409 0.500512 Vertex 49191 0.323256 0.926814 0.273349 Vertex 49192 0.45407 0.771498 0.408119 Vertex 49193 0.496399 0.710406 0.524185 Vertex 49194 0.50305 0.143299 0.670191 Vertex 49195 0.370993 0.36531 0.501247 Vertex 49196 0.366556 0.243333 0.205208 Vertex 49197 0.437178 0.253709 0.698152 Vertex 49198 0.595325 0.446326 0.414811 Vertex 49199 0.459294 0.214377 0.622264 Vertex 49200 0.633935 0.519708 0.254852 Vertex 49201 0.512609 0.279538 0.524138 Vertex 49202 0.466193 0.191053 0.799559 Vertex 49203 0.536223 0.0263262 0.772179 Vertex 49204 0.352585 0.296796 0.19713 Vertex 49205 0.482208 0.475513 0.386809 Vertex 49206 0.453874 0.242231 0.731336 Vertex 49207 0.489926 0.11641 0.644403 Vertex 49208 0.495226 0.208732 0.484284 Vertex 49209 0.405391 0.285508 0.632789 Vertex 49210 0.408234 0.256279 0.727344 Vertex 49211 0.372337 0.446172 0.55936 Vertex 49212 0.400896 0.362289 0.428102 Vertex 49213 0.440388 0.465646 0.608678 Vertex 49214 0.384437 0.867842 0.372814 Vertex 49215 0.384313 0.866213 0.370705 Vertex 49216 0.427495 0.841972 0.440149 Vertex 49217 0.6046 0.538411 0.289891 Vertex 49218 0.385811 0.353139 0.368626 Vertex 49219 0.486662 0.413905 0.381964 Vertex 49220 0.479573 0.616182 0.424418 Vertex 49221 0.380534 0.485581 0.509544 Vertex 49222 0.358833 0.285075 0.493121 Vertex 49223 0.45346 0.738645 0.44751 Vertex 49224 0.472685 0.784978 0.395527 Vertex 49225 0.380273 0.337272 0.466102 Vertex 49226 0.403769 0.382651 0.247644 Vertex 49227 0.389886 0.251198 0.462755 Vertex 49228 0.394784 0.250925 0.459225 Vertex 49229 0.449705 0.23905 0.642182 Vertex 49230 0.422182 0.503717 0.586071 Vertex 49231 0.517886 0.422967 0.427409 Vertex 49232 0.615178 0.463845 0.374253 Vertex 49233 0.399445 0.361117 0.403973 Vertex 49234 0.358442 0.365446 0.383421 Vertex 49235 0.395056 0.430826 0.599255 Vertex 49236 0.37743 0.0854936 0.468714 Vertex 49237 0.475042 0.522598 0.410026 Vertex 49238 0.517507 0.36682 0.561385 Vertex 49239 0.355452 0.207797 0.481832 Vertex 49240 0.35124 0.378926 0.452391 Vertex 49241 0.366936 0.460718 0.49459 Vertex 49242 0.453744 0.128853 0.783035 Vertex 49243 0.594869 0.521402 0.282422 Vertex 49244 0.455604 0.232097 0.463354 Vertex 49245 0.470381 0.71852 0.422144 Vertex 49246 0.531556 0.403997 0.460043 Vertex 49247 0.396424 0.493186 0.45367 Vertex 49248 0.414139 0.533667 0.53038 Vertex 49249 0.559641 0.499322 0.397363 Vertex 49250 0.32874 0.929325 0.252785 Vertex 49251 0.457677 0.701522 0.472338 Vertex 49252 0.484169 0.143773 0.797244 Vertex 49253 0.483997 0.131205 0.798778 Vertex 49254 0.371869 0.10277 0.475732 Vertex 49255 0.506947 0.301807 0.460961 Vertex 49256 0.450889 0.190615 0.586278 Vertex 49257 0.401903 0.416144 0.299764 Vertex 49258 0.621065 0.484426 0.295926 Vertex 49259 0.504797 0.0743116 0.771202 Vertex 49260 0.482629 0.170051 0.513495 Vertex 49261 0.375677 0.348377 0.488827 Vertex 49262 0.536632 0.109812 0.795982 Vertex 49263 0.452589 0.157318 0.797125 Vertex 49264 0.383312 0.220903 0.658766 Vertex 49265 0.424415 0.236942 0.200482 Vertex 49266 0.36173 0.343467 0.553425 Vertex 49267 0.454609 0.231635 0.62978 Vertex 49268 0.375227 0.175246 0.489496 Vertex 49269 0.472708 0.115539 0.646459 Vertex 49270 0.413328 0.242326 0.220276 Vertex 49271 0.498667 0.767002 0.480423 Vertex 49272 0.369056 0.364883 0.23388 Vertex 49273 0.455669 0.557429 0.563677 Vertex 49274 0.53142 0.651505 0.441866 Vertex 49275 0.390449 0.873616 0.386673 Vertex 49276 0.410153 0.468909 0.595387 Vertex 49277 0.447946 0.573 0.536635 Vertex 49278 0.40198 0.229639 0.465883 Vertex 49279 0.530863 0.538257 0.424264 Vertex 49280 0.443658 0.556849 0.457887 Vertex 49281 0.518828 0.73165 0.452154 Vertex 49282 0.516258 0.511096 0.594831 Vertex 49283 0.643447 0.433859 0.208253 Vertex 49284 0.523655 0.524878 0.412661 Vertex 49285 0.504335 0.420574 0.418081 Vertex 49286 0.454058 0.190645 0.611189 Vertex 49287 0.591138 0.417897 0.379181 Vertex 49288 0.517507 0.446219 0.41326 Vertex 49289 0.422076 0.813341 0.424631 Vertex 49290 0.427104 0.400638 0.391109 Vertex 49291 0.411433 0.397529 0.295529 Vertex 49292 0.480437 0.208827 0.781069 Vertex 49293 0.350145 0.31126 0.217148 Vertex 49294 0.476297 0.200873 0.704299 Vertex 49295 0.50732 0.173889 0.77074 Vertex 49296 0.515778 0.385388 0.553147 Vertex 49297 0.479626 0.79648 0.470194 Vertex 49298 0.613691 0.475074 0.220394 Vertex 49299 0.397941 0.171941 0.650504 Vertex 49300 0.398936 0.171029 0.648087 Vertex 49301 0.463007 0.72504 0.478492 Vertex 49302 0.584315 0.487779 0.300113 Vertex 49303 0.497062 0.0902317 0.730454 Vertex 49304 0.555774 0.0118039 0.769508 Vertex 49305 0.497364 0.399679 0.422606 Vertex 49306 0.466069 0.20615 0.6629 Vertex 49307 0.592127 0.421386 0.364718 Vertex 49308 0.449705 0.0811701 0.66056 Vertex 49309 0.525734 0.45675 0.590637 Vertex 49310 0.508789 0.3258 0.588233 Vertex 49311 0.414506 0.500204 0.582855 Vertex 49312 0.506302 0.137814 0.702374 Vertex 49313 0.465743 0.308221 0.633968 Vertex 49314 0.528565 0.168162 0.45784 Vertex 49315 0.494107 0.237404 0.569713 Vertex 49316 0.345241 0.299752 0.211244 Vertex 49317 0.447117 0.189377 0.800827 Vertex 49318 0.513285 0.0186031 0.650865 Vertex 49319 0.47012 0.742595 0.403102 Vertex 49320 0.437587 0.228982 0.785055 Vertex 49321 0.369571 0.334707 0.591194 Vertex 49322 0.450641 0.437323 0.631936 Vertex 49323 0.460525 0.207726 0.631599 Vertex 49324 0.467875 0.699289 0.492985 Vertex 49325 0.478453 0.730969 0.400271 Vertex 49326 0.479188 0.732586 0.399501 Vertex 49327 0.420974 0.429636 0.384878 Vertex 49328 0.362778 0.264648 0.568546 Vertex 49329 0.433329 0.800898 0.441173 Vertex 49330 0.41466 0.519062 0.476928 Vertex 49331 0.406736 0.22303 0.752071 Vertex 49332 0.420565 0.833508 0.359973 Vertex 49333 0.451861 0.236196 0.640139 Vertex 49334 0.407778 0.230551 0.752066 Vertex 49335 0.550491 0.561806 0.530286 Vertex 49336 0.514611 0.709807 0.430234 Vertex 49337 0.48867 0.656006 0.406366 Vertex 49338 0.657217 0.450353 0.200346 Vertex 49339 0.486046 0.555658 0.386738 Vertex 49340 0.373403 0.362733 0.522805 Vertex 49341 0.585079 0.493115 0.453569 Vertex 49342 0.434703 0.507886 0.447114 Vertex 49343 0.360409 0.254746 0.493115 Vertex 49344 0.31757 0.939666 0.273011 Vertex 49345 0.49663 0.176146 0.725094 Vertex 49346 0.353005 0.203088 0.517854 Vertex 49347 0.523217 0.048933 0.660377 Vertex 49348 0.44746 0.443524 0.397523 Vertex 49349 0.434584 0.84517 0.439254 Vertex 49350 0.448011 0.14459 0.774785 Vertex 49351 0.487515 0.173463 0.488827 Vertex 49352 0.362002 0.165698 0.453042 Vertex 49353 0.357655 0.164721 0.451899 Vertex 49354 0.357365 0.235325 0.547805 Vertex 49355 0.53553 0.398767 0.490965 Vertex 49356 0.442207 0.327079 0.64162 Vertex 49357 0.555229 0.535823 0.536481 Vertex 49358 0.373468 0.353239 0.472546 Vertex 49359 0.512651 0.750573 0.456051 Vertex 49360 0.56647 0.480896 0.524043 Vertex 49361 0.387623 0.260727 0.45903 Vertex 49362 0.367794 0.375852 0.248432 Vertex 49363 0.490008 0.78875 0.429446 Vertex 49364 0.4127 0.4417 0.387218 Vertex 49365 0.562069 0.0128107 0.740374 Vertex 49366 0.354682 0.411128 0.503586 Vertex 49367 0.491649 0.0568753 0.741245 Vertex 49368 0.357755 0.282517 0.557257 Vertex 49369 0.391331 0.195033 0.574552 Vertex 49370 0.544752 0.593137 0.509284 Vertex 49371 0.324908 0.947685 0.229693 Vertex 49372 0.587247 0.435399 0.202105 Vertex 49373 0.447555 0.111364 0.724359 Vertex 49374 0.37688 0.442079 0.418543 Vertex 49375 0.475143 0.233596 0.469815 Vertex 49376 0.463647 0.763052 0.478302 Vertex 49377 0.41947 0.409173 0.334145 Vertex 49378 0.389803 0.413905 0.592515 Vertex 49379 0.453549 0.121403 0.762312 Vertex 49380 0.606513 0.481607 0.190082 Vertex 49381 0.324032 0.924865 0.277731 Vertex 49382 0.48129 0.208952 0.74372 Vertex 49383 0.492709 0.680324 0.405566 Vertex 49384 0.508067 0.0966993 0.708966 Vertex 49385 0.421531 0.869447 0.401799 Vertex 49386 0.510898 0.158532 0.455778 Vertex 49387 0.547103 0.466048 0.387259 Vertex 49388 0.547292 0.468992 0.388769 Vertex 49389 0.4524 0.778664 0.465426 Vertex 49390 0.41039 0.258388 0.224001 Vertex 49391 0.590285 0.481258 0.448665 Vertex 49392 0.353604 0.290027 0.535604 Vertex 49393 0.368138 0.330751 0.213429 Vertex 49394 0.421116 0.384025 0.310886 Vertex 49395 0.374102 0.352505 0.470236 Vertex 49396 0.355078 0.371084 0.459036 Vertex 49397 0.457908 0.201809 0.614115 Vertex 49398 0.697805 0.444839 0.209923 Vertex 49399 0.621877 0.490533 0.235627 Vertex 49400 0.485247 0.215721 0.573799 Vertex 49401 0.514676 0.528088 0.589465 Vertex 49402 0.342664 0.0860977 0.454677 Vertex 49403 0.520119 0.394704 0.437661 Vertex 49404 0.462421 0.435914 0.381532 Vertex 49405 0.46614 0.436933 0.376877 Vertex 49406 0.508025 0.311994 0.46025 Vertex 49407 0.507362 0.313871 0.458527 Vertex 49408 0.507267 0.375941 0.590329 Vertex 49409 0.526948 0.0950114 0.717945 Vertex 49410 0.398616 0.358345 0.228111 Vertex 49411 0.375328 0.335448 0.214158 Vertex 49412 0.532379 0.54816 0.429814 Vertex 49413 0.370584 0.208934 0.56928 Vertex 49414 0.520741 0.0911794 0.665648 Vertex 49415 0.509239 0.271596 0.542729 Vertex 49416 0.322989 0.247005 0.21324 Vertex 49417 0.512568 0.402107 0.57586 Vertex 49418 0.371845 0.38977 0.254603 Vertex 49419 0.547429 0.513057 0.561427 Vertex 49420 0.492058 0.201021 0.540715 Vertex 49421 0.546191 0.0393916 0.793311 Vertex 49422 0.554583 0.436891 0.526163 Vertex 49423 0.524064 0.686898 0.438016 Vertex 49424 0.432186 0.547888 0.505789 Vertex 49425 0.455698 0.176335 0.638036 Vertex 49426 0.644027 0.464514 0.188317 Vertex 49427 0.529406 0.435991 0.582097 Vertex 49428 0.359959 0.409931 0.333369 Vertex 49429 0.489564 0.41044 0.387378 Vertex 49430 0.492058 0.505653 0.59961 Vertex 49431 0.451091 0.170786 0.563512 Vertex 49432 0.60643 0.49456 0.195738 Vertex 49433 0.495203 0.785197 0.459818 Vertex 49434 0.361842 0.180144 0.501241 Vertex 49435 0.503252 0.486529 0.397784 Vertex 49436 0.452595 0.134948 0.642099 Vertex 49437 0.49124 0.766375 0.415196 Vertex 49438 0.461461 0.548468 0.42825 Vertex 49439 0.545 0.634844 0.48814 Vertex 49440 0.544313 0.638179 0.486653 Vertex 49441 0.684716 0.460842 0.216633 Vertex 49442 0.493799 0.748565 0.499043 Vertex 49443 0.450232 0.180387 0.592491 Vertex 49444 0.430474 0.258962 0.6629 Vertex 49445 0.502594 0.637877 0.55448 Vertex 49446 0.587347 0.490302 0.443222 Vertex 49447 0.511999 0.384025 0.445876 Vertex 49448 0.443427 0.567669 0.542782 Vertex 49449 0.412587 0.165941 0.613215 Vertex 49450 0.456628 0.461577 0.399715 Vertex 49451 0.470345 0.467701 0.612616 Vertex 49452 0.370785 0.352641 0.439118 Vertex 49453 0.372781 0.377019 0.569689 Vertex 49454 0.458607 0.183721 0.648336 Vertex 49455 0.512959 0.669273 0.424264 Vertex 49456 0.334793 0.259312 0.203384 Vertex 49457 0.478145 0.44587 0.375177 Vertex 49458 0.515713 0.108728 0.691933 Vertex 49459 0.47163 0.182021 0.697832 Vertex 49460 0.490915 0.736708 0.511807 Vertex 49461 0.454846 0.0836458 0.731976 Vertex 49462 0.532877 0.0408012 0.780648 Vertex 49463 0.354042 0.401491 0.497936 Vertex 49464 0.388062 0.350213 0.298064 Vertex 49465 0.507001 0.764811 0.461879 Vertex 49466 0.507018 0.623822 0.557743 Vertex 49467 0.502884 0.379572 0.598609 Vertex 49468 0.355144 0.916674 0.334429 Vertex 49469 0.488249 0.787175 0.472166 Vertex 49470 0.354865 0.303086 0.197456 Vertex 49471 0.355392 0.925511 0.328133 Vertex 49472 0.606839 0.492552 0.214128 Vertex 49473 0.364981 0.370125 0.273266 Vertex 49474 0.467319 0.1228 0.64329 Vertex 49475 0.537242 0.569091 0.43878 Vertex 49476 0.365467 0.245115 0.571454 Vertex 49477 0.4387 0.550097 0.493399 Vertex 49478 0.351543 0.393229 0.465154 Vertex 49479 0.437048 0.822302 0.360204 Vertex 49480 0.513302 0.500974 0.599557 Vertex 49481 0.454958 0.760772 0.46394 Vertex 49482 0.374185 0.358836 0.592574 Vertex 49483 0.491785 0.402889 0.406952 Vertex 49484 0.406386 0.35931 0.335454 Vertex 49485 0.417841 0.178527 0.758267 Vertex 49486 0.51791 0.344515 0.48079 Vertex 49487 0.454698 0.451005 0.627192 Vertex 49488 0.489541 0.61585 0.406111 Vertex 49489 0.40548 0.524564 0.536528 Vertex 49490 0.412818 0.149186 0.670096 Vertex 49491 0.458038 0.772641 0.472338 Vertex 49492 0.539072 0.0379169 0.782573 Vertex 49493 0.623695 0.524896 0.284868 Vertex 49494 0.409123 0.256582 0.223053 Vertex 49495 0.545871 0.600712 0.469951 Vertex 49496 0.393001 0.498961 0.478995 Vertex 49497 0.453975 0.322489 0.418649 Vertex 49498 0.459785 0.521082 0.423275 Vertex 49499 0.500503 0.120911 0.79555 Vertex 49500 0.378094 0.355164 0.453072 Vertex 49501 0.414767 0.403695 0.30436 Vertex 49502 0.445417 0.3414 0.415504 Vertex 49503 0.599045 0.432295 0.363225 Vertex 49504 0.559156 0.502283 0.40389 Vertex 49505 0.554589 0.00355953 0.743726 Vertex 49506 0.556976 0.00411032 0.743726 Vertex 49507 0.3919 0.254811 0.210326 Vertex 49508 0.507083 0.583045 0.403618 Vertex 49509 0.366936 0.363148 0.28154 Vertex 49510 0.595331 0.514105 0.241467 Vertex 49511 0.435834 0.511665 0.446521 Vertex 49512 0.371182 0.363657 0.484953 Vertex 49513 0.526699 0.398352 0.528266 Vertex 49514 0.602486 0.49687 0.260479 Vertex 49515 0.607567 0.494086 0.259691 Vertex 49516 0.473638 0.12729 0.644605 Vertex 49517 0.355552 0.888405 0.319048 Vertex 49518 0.438073 0.174132 0.789224 Vertex 49519 0.435514 0.169003 0.783177 Vertex 49520 0.372556 0.18243 0.511635 Vertex 49521 0.400179 0.337171 0.246252 Vertex 49522 0.555454 0.507122 0.417808 Vertex 49523 0.586708 0.486399 0.459859 Vertex 49524 0.540588 0.0706692 0.772759 Vertex 49525 0.305233 0.952524 0.238938 Vertex 49526 0.305553 0.953809 0.243777 Vertex 49527 0.553707 0.474334 0.364475 Vertex 49528 0.504815 0.148221 0.67924 Vertex 49529 0.372497 0.330668 0.212742 Vertex 49530 0.484216 0.171414 0.502804 Vertex 49531 0.488557 0.794904 0.434836 Vertex 49532 0.5034 0.255178 0.536706 Vertex 49533 0.342392 0.922905 0.313623 Vertex 49534 0.367137 0.379524 0.262901 Vertex 49535 0.545551 0.129386 0.44128 Vertex 49536 0.633905 0.473878 0.183715 Vertex 49537 0.561738 0.545756 0.484272 Vertex 49538 0.54532 0.123399 0.441197 Vertex 49539 0.52003 0.0722209 0.721984 Vertex 49540 0.506556 0.607635 0.562126 Vertex 49541 0.355144 0.134498 0.474032 Vertex 49542 0.448911 0.576844 0.5324 Vertex 49543 0.427975 0.405987 0.391843 Vertex 49544 0.500888 0.188264 0.505653 Vertex 49545 0.451641 0.760529 0.420183 Vertex 49546 0.439844 0.832945 0.451828 Vertex 49547 0.504774 0.672619 0.538719 Vertex 49548 0.449035 0.177384 0.798505 Vertex 49549 0.474236 0.54543 0.41631 Vertex 49550 0.49615 0.23728 0.546105 Vertex 49551 0.590327 0.448742 0.189051 Vertex 49552 0.601888 0.530244 0.260864 Vertex 49553 0.546884 0.39837 0.472546 Vertex 49554 0.375204 0.380584 0.58006 Vertex 49555 0.56307 0.40209 0.395652 Vertex 49556 0.495339 0.31704 0.611171 Vertex 49557 0.485803 0.497983 0.391867 Vertex 49558 0.373622 0.298869 0.19389 Vertex 49559 0.355001 0.115824 0.473161 Vertex 49560 0.522115 0.718277 0.44956 Vertex 49561 0.5242 0.13522 0.735678 Vertex 49562 0.575923 0.506471 0.34368 Vertex 49563 0.371579 0.100673 0.471829 Vertex 49564 0.421696 0.470212 0.407633 Vertex 49565 0.455503 0.383948 0.63244 Vertex 49566 0.446495 0.170579 0.488395 Vertex 49567 0.499793 0.252311 0.559277 Vertex 49568 0.384875 0.259721 0.201317 Vertex 49569 0.494439 0.534603 0.382551 Vertex 49570 0.369459 0.354246 0.22425 Vertex 49571 0.605044 0.468962 0.21462 Vertex 49572 0.339508 0.908074 0.287492 Vertex 49573 0.395968 0.430329 0.338948 Vertex 49574 0.630281 0.491374 0.251423 Vertex 49575 0.56528 0.449619 0.329193 Vertex 49576 0.516222 0.344705 0.474695 Vertex 49577 0.631963 0.489407 0.244185 Vertex 49578 0.496121 0.733782 0.505517 Vertex 49579 0.637489 0.515811 0.246282 Vertex 49580 0.482173 0.171141 0.694847 Vertex 49581 0.479531 0.586906 0.423778 Vertex 49582 0.543348 0.610899 0.511611 Vertex 49583 0.43183 0.155049 0.74792 Vertex 49584 0.518325 0.681953 0.429458 Vertex 49585 0.362825 0.223273 0.220394 Vertex 49586 0.553251 0.435126 0.528313 Vertex 49587 0.615735 0.466451 0.338445 Vertex 49588 0.53784 0.110641 0.794679 Vertex 49589 0.39643 0.173167 0.676374 Vertex 49590 0.475711 0.374158 0.412324 Vertex 49591 0.544402 0.63764 0.492937 Vertex 49592 0.581052 0.50329 0.474316 Vertex 49593 0.511265 0.278016 0.536481 Vertex 49594 0.37425 0.331077 0.262321 Vertex 49595 0.549904 0.576026 0.475963 Vertex 49596 0.468296 0.0602749 0.656752 Vertex 49597 0.485436 0.410156 0.61678 Vertex 49598 0.696443 0.456264 0.209775 Vertex 49599 0.419547 0.243919 0.197681 Vertex 49600 0.480935 0.762839 0.397186 Vertex 49601 0.373918 0.347725 0.598746 Vertex 49602 0.35544 0.311402 0.20782 Vertex 49603 0.442479 0.111115 0.729577 Vertex 49604 0.404639 0.476111 0.418335 Vertex 49605 0.418202 0.379998 0.352031 Vertex 49606 0.430835 0.554592 0.517907 Vertex 49607 0.452352 0.579556 0.451562 Vertex 49608 0.550858 0.0426254 0.784871 Vertex 49609 0.382417 0.176703 0.499274 Vertex 49610 0.41299 0.264607 0.681568 Vertex 49611 0.515547 0.102113 0.797451 Vertex 49612 0.459661 0.192889 0.633642 Vertex 49613 0.456954 0.436838 0.621512 Vertex 49614 0.53829 0.398808 0.479049 Vertex 49615 0.449272 0.575665 0.459628 Vertex 49616 0.447762 0.584608 0.515834 Vertex 49617 0.471601 0.0815195 0.724679 Vertex 49618 0.583492 0.502366 0.451526 Vertex 49619 0.451701 0.840106 0.396712 Vertex 49620 0.387546 0.34878 0.412395 Vertex 49621 0.394334 0.247058 0.712603 Vertex 49622 0.65884 0.449323 0.206026 Vertex 49623 0.457902 0.80823 0.474316 Vertex 49624 0.5829 0.410577 0.397594 Vertex 49625 0.539125 0.457295 0.395652 Vertex 49626 0.368766 0.383285 0.246365 Vertex 49627 0.544764 0.576121 0.511665 Vertex 49628 0.539842 0.551714 0.437756 Vertex 49629 0.622208 0.489247 0.341015 Vertex 49630 0.542981 0.598171 0.513684 Vertex 49631 0.39704 0.299331 0.20159 Vertex 49632 0.587851 0.512239 0.33148 Vertex 49633 0.529909 0.112519 0.770781 Vertex 49634 0.594046 0.501513 0.384837 Vertex 49635 0.460058 0.299006 0.634051 Vertex 49636 0.548791 0.575754 0.480464 Vertex 49637 0.51133 0.468423 0.603987 Vertex 49638 0.586015 0.512121 0.311692 Vertex 49639 0.370732 0.364291 0.497083 Vertex 49640 0.504016 0.262309 0.490965 Vertex 49641 0.514753 0.638611 0.425478 Vertex 49642 0.38189 0.352777 0.356153 Vertex 49643 0.523329 0.365339 0.52826 Vertex 49644 0.42217 0.242995 0.220305 Vertex 49645 0.452785 0.599569 0.513868 Vertex 49646 0.362304 0.378192 0.327138 Vertex 49647 0.403526 0.201021 0.74372 Vertex 49648 0.632081 0.50592 0.189655 Vertex 49649 0.491596 0.0906404 0.784883 Vertex 49650 0.503796 0.418904 0.602151 Vertex 49651 0.395234 0.379897 0.616531 Vertex 49652 0.515967 0.116327 0.689795 Vertex 49653 0.342368 0.949799 0.275812 Vertex 49654 0.549999 0.563263 0.505464 Vertex 49655 0.522713 0.162038 0.789005 Vertex 49656 0.480497 0.381183 0.410298 Vertex 49657 0.431558 0.207429 0.472889 Vertex 49658 0.504424 0.437069 0.605604 Vertex 49659 0.518159 0.0280971 0.631871 Vertex 49660 0.45802 0.357273 0.634045 Vertex 49661 0.403236 0.213577 0.472279 Vertex 49662 0.407577 0.377096 0.268806 Vertex 49663 0.377691 0.180973 0.540715 Vertex 49664 0.356014 0.403926 0.506388 Vertex 49665 0.493758 0.738846 0.507258 Vertex 49666 0.366337 0.408397 0.391405 Vertex 49667 0.454798 0.749614 0.424513 Vertex 49668 0.536282 0.116084 0.78698 Vertex 49669 0.51287 0.0818216 0.642325 Vertex 49670 0.543443 0.0673466 0.72093 Vertex 49671 0.361623 0.236587 0.214081 Vertex 49672 0.418925 0.404518 0.359061 Vertex 49673 0.463451 0.373234 0.630183 Vertex 49674 0.580329 0.408741 0.37099 Vertex 49675 0.495896 0.089681 0.722559 Vertex 49676 0.478216 0.224345 0.487157 Vertex 49677 0.53489 0.442085 0.573776 Vertex 49678 0.464517 0.565916 0.430453 Vertex 49679 0.501143 0.247686 0.544731 Vertex 49680 0.364827 0.312871 0.488857 Vertex 49681 0.490915 0.445076 0.608512 Vertex 49682 0.59147 0.497853 0.273266 Vertex 49683 0.491092 0.112181 0.802687 Vertex 49684 0.416028 0.244624 0.452562 Vertex 49685 0.379113 0.226779 0.226672 Vertex 49686 0.423266 0.463294 0.600463 Vertex 49687 0.461461 0.22043 0.785096 Vertex 49688 0.532604 0.601168 0.53911 Vertex 49689 0.455325 0.158135 0.522029 Vertex 49690 0.358999 0.295535 0.501288 Vertex 49691 0.358229 0.342413 0.240028 Vertex 49692 0.366556 0.301167 0.237931 Vertex 49693 0.445411 0.592758 0.484136 Vertex 49694 0.425925 0.833342 0.437039 Vertex 49695 0.492502 0.399566 0.410612 Vertex 49696 0.540902 0.459516 0.565508 Vertex 49697 0.360806 0.257357 0.499748 Vertex 49698 0.38282 0.385204 0.602986 Vertex 49699 0.545687 0.5773 0.507667 Vertex 49700 0.365899 0.0867433 0.481471 Vertex 49701 0.588816 0.515698 0.347939 Vertex 49702 0.437048 0.114041 0.716547 Vertex 49703 0.381535 0.393739 0.256978 Vertex 49704 0.613176 0.484604 0.271554 Vertex 49705 0.517016 0.364291 0.471379 Vertex 49706 0.568294 0.446794 0.327973 Vertex 49707 0.479336 0.132922 0.805831 Vertex 49708 0.437007 0.166137 0.540692 Vertex 49709 0.478933 0.232642 0.475554 Vertex 49710 0.478282 0.780559 0.484397 Vertex 49711 0.423159 0.382 0.322992 Vertex 49712 0.4464 0.168731 0.615282 Vertex 49713 0.325276 0.964144 0.229823 Vertex 49714 0.345229 0.304188 0.216793 Vertex 49715 0.51672 0.0299983 0.758178 Vertex 49716 0.372236 0.105352 0.47206 Vertex 49717 0.453868 0.220199 0.790462 Vertex 49718 0.366716 0.373566 0.300208 Vertex 49719 0.488617 0.0954555 0.649396 Vertex 49720 0.403538 0.449939 0.59884 Vertex 49721 0.41864 0.229444 0.207601 Vertex 49722 0.49544 0.673176 0.533496 Vertex 49723 0.416473 0.524854 0.488993 Vertex 49724 0.466975 0.228781 0.770734 Vertex 49725 0.43873 0.828865 0.453113 Vertex 49726 0.355606 0.107715 0.463111 Vertex 49727 0.353823 0.219452 0.533099 Vertex 49728 0.508144 0.666282 0.53452 Vertex 49729 0.399563 0.357373 0.302275 Vertex 49730 0.525136 0.67975 0.437134 Vertex 49731 0.418966 0.409286 0.332131 Vertex 49732 0.489979 0.142606 0.650243 Vertex 49733 0.321515 0.265448 0.220714 Vertex 49734 0.508161 0.352777 0.449684 Vertex 49735 0.503169 0.486339 0.60529 Vertex 49736 0.493461 0.236599 0.50547 Vertex 49737 0.360225 0.201471 0.533614 Vertex 49738 0.375387 0.279212 0.234828 Vertex 49739 0.492911 0.571614 0.574913 Vertex 49740 0.511768 0.298271 0.569618 Vertex 49741 0.355896 0.417962 0.468394 Vertex 49742 0.509749 0.406241 0.442399 Vertex 49743 0.523412 0.139733 0.723761 Vertex 49744 0.350506 0.158342 0.475483 Vertex 49745 0.544402 0.541793 0.437584 Vertex 49746 0.519586 0.558975 0.408042 Vertex 49747 0.422366 0.520945 0.472338 Vertex 49748 0.388198 0.19739 0.64743 Vertex 49749 0.58528 0.46548 0.472474 Vertex 49750 0.465897 0.227543 0.760351 Vertex 49751 0.388441 0.491919 0.540668 Vertex 49752 0.65855 0.444442 0.20695 Vertex 49753 0.443077 0.166664 0.577981 Vertex 49754 0.442988 0.166462 0.577033 Vertex 49755 0.400831 0.36576 0.383084 Vertex 49756 0.459442 0.161031 0.50685 Vertex 49757 0.394209 0.234804 0.716707 Vertex 49758 0.370424 0.385832 0.242047 Vertex 49759 0.546451 0.620168 0.491972 Vertex 49760 0.428656 0.230765 0.207198 Vertex 49761 0.613597 0.523652 0.215028 Vertex 49762 0.469113 0.515479 0.60073 Vertex 49763 0.453768 0.664896 0.474672 Vertex 49764 0.508694 0.426982 0.424009 Vertex 49765 0.453886 0.391399 0.399306 Vertex 49766 0.672776 0.46359 0.191018 Vertex 49767 0.420376 0.164857 0.723027 Vertex 49768 0.455918 0.230113 0.696085 Vertex 49769 0.508831 0.0671867 0.731034 Vertex 49770 0.344133 0.0950173 0.461784 Vertex 49771 0.465767 0.275718 0.434741 Vertex 49772 0.456593 0.663344 0.486884 Vertex 49773 0.531923 0.575156 0.551015 Vertex 49774 0.464162 0.0707225 0.702114 Vertex 49775 0.549431 0.586628 0.473487 Vertex 49776 0.371774 0.357285 0.481797 Vertex 49777 0.50507 0.0606599 0.685258 Vertex 49778 0.595651 0.471225 0.401758 Vertex 49779 0.490767 0.221981 0.5117 Vertex 49780 0.562603 0.504433 0.410121 Vertex 49781 0.481658 0.584051 0.562759 Vertex 49782 0.627077 0.487938 0.186031 Vertex 49783 0.474841 0.21491 0.735441 Vertex 49784 0.490162 0.232287 0.573823 Vertex 49785 0.369938 0.290175 0.470698 Vertex 49786 0.422727 0.168677 0.573847 Vertex 49787 0.385468 0.241781 0.689818 Vertex 49788 0.528358 0.113822 0.729583 Vertex 49789 0.367735 0.324793 0.254141 Vertex 49790 0.495132 0.33989 0.441143 Vertex 49791 0.380445 0.0807614 0.475791 Vertex 49792 0.556461 0.547793 0.522118 Vertex 49793 0.622445 0.532264 0.250197 Vertex 49794 0.391538 0.187979 0.636976 Vertex 49795 0.379403 0.332001 0.468305 Vertex 49796 0.502938 0.038598 0.732385 Vertex 49797 0.583764 0.494448 0.472249 Vertex 49798 0.45372 0.774791 0.466007 Vertex 49799 0.453608 0.351172 0.636609 Vertex 49800 0.559262 0.532933 0.463573 Vertex 49801 0.518461 0.299924 0.526383 Vertex 49802 0.357732 0.434605 0.494051 Vertex 49803 0.383738 0.242409 0.612812 Vertex 49804 0.610837 0.489064 0.381384 Vertex 49805 0.564362 0.49437 0.352043 Vertex 49806 0.44226 0.77087 0.437092 Vertex 49807 0.502339 0.405501 0.435215 Vertex 49808 0.500669 0.199771 0.50326 Vertex 49809 0.395874 0.490574 0.447386 Vertex 49810 0.523548 0.355164 0.524049 Vertex 49811 0.550781 0.0412928 0.790924 Vertex 49812 0.497293 0.246939 0.567622 Vertex 49813 0.396928 0.338326 0.258495 Vertex 49814 0.37409 0.456608 0.443305 Vertex 49815 0.503157 0.0957754 0.639144 Vertex 49816 0.448899 0.182495 0.584164 Vertex 49817 0.411006 0.329567 0.214762 Vertex 49818 0.468788 0.22191 0.733391 Vertex 49819 0.479602 0.767855 0.398068 Vertex 49820 0.359064 0.329051 0.225257 Vertex 49821 0.557616 0.0218961 0.731786 Vertex 49822 0.33946 0.0955562 0.462536 Vertex 49823 0.401334 0.303294 0.227762 Vertex 49824 0.462314 0.553046 0.430714 Vertex 49825 0.591932 0.424436 0.19713 Vertex 49826 0.542643 0.557115 0.551056 Vertex 49827 0.442065 0.560077 0.466789 Vertex 49828 0.54827 0.0499399 0.783118 Vertex 49829 0.509701 0.55888 0.398927 Vertex 49830 0.405143 0.287794 0.225612 Vertex 49831 0.500154 0.179788 0.742074 Vertex 49832 0.540641 0.452521 0.563429 Vertex 49833 0.493272 0.0395752 0.675551 Vertex 49834 0.546558 0.619433 0.487625 Vertex 49835 0.460052 0.143459 0.796936 Vertex 49836 0.413026 0.164324 0.607037 Vertex 49837 0.453839 0.756596 0.459764 Vertex 49838 0.492999 0.39837 0.412448 Vertex 49839 0.445144 0.113496 0.725283 Vertex 49840 0.32877 0.934353 0.240081 Vertex 49841 0.488806 0.348839 0.626375 Vertex 49842 0.497595 0.2386 0.530327 Vertex 49843 0.422751 0.256351 0.223432 Vertex 49844 0.532361 0.661822 0.445497 Vertex 49845 0.514593 0.724667 0.43682 Vertex 49846 0.489138 0.112258 0.803972 Vertex 49847 0.414352 0.256919 0.737419 Vertex 49848 0.434744 0.520649 0.459859 Vertex 49849 0.371727 0.419692 0.317609 Vertex 49850 0.389554 0.373294 0.230232 Vertex 49851 0.357732 0.887594 0.318924 Vertex 49852 0.358206 0.251032 0.511813 Vertex 49853 0.451547 0.100484 0.664061 Vertex 49854 0.448307 0.429896 0.633595 Vertex 49855 0.520901 0.0941999 0.672394 Vertex 49856 0.511099 0.741126 0.488815 Vertex 49857 0.474627 0.417483 0.374839 Vertex 49858 0.467603 0.189022 0.669989 Vertex 49859 0.358703 0.224552 0.550168 Vertex 49860 0.404319 0.460369 0.595766 Vertex 49861 0.526078 0.0606303 0.662017 Vertex 49862 0.534221 0.680087 0.484272 Vertex 49863 0.510844 0.0646044 0.634738 Vertex 49864 0.448396 0.166243 0.620618 Vertex 49865 0.608225 0.486458 0.187067 Vertex 49866 0.493556 0.100075 0.809557 Vertex 49867 0.397029 0.206014 0.474559 Vertex 49868 0.427667 0.518961 0.578887 Vertex 49869 0.477802 0.0839952 0.75813 Vertex 49870 0.445583 0.427142 0.636704 Vertex 49871 0.418024 0.391737 0.304087 Vertex 49872 0.374019 0.291318 0.194281 Vertex 49873 0.515831 0.296939 0.540733 Vertex 49874 0.45327 0.153989 0.651161 Vertex 49875 0.355327 0.299479 0.547639 Vertex 49876 0.43494 0.203645 0.470455 Vertex 49877 0.498028 0.698785 0.531618 Vertex 49878 0.532983 0.447694 0.401971 Vertex 49879 0.424616 0.264157 0.67741 Vertex 49880 0.528766 0.108586 0.743448 Vertex 49881 0.396324 0.372476 0.23282 Vertex 49882 0.477565 0.576897 0.564394 Vertex 49883 0.37184 0.451858 0.553218 Vertex 49884 0.443089 0.342282 0.415504 Vertex 49885 0.418024 0.368561 0.325089 Vertex 49886 0.377958 0.423399 0.366133 Vertex 49887 0.482688 0.595613 0.422333 Vertex 49888 0.36661 0.879734 0.33957 Vertex 49889 0.537502 0.147788 0.443963 Vertex 49890 0.365271 0.886895 0.347921 Vertex 49891 0.500136 0.0445799 0.729305 Vertex 49892 0.517691 0.609649 0.549108 Vertex 49893 0.404746 0.41551 0.608287 Vertex 49894 0.425232 0.825311 0.36849 Vertex 49895 0.480805 0.249782 0.602874 Vertex 49896 0.539587 0.491486 0.577957 Vertex 49897 0.518579 0.108912 0.675332 Vertex 49898 0.541328 0.626079 0.512683 Vertex 49899 0.371994 0.37664 0.544334 Vertex 49900 0.451339 0.24094 0.764456 Vertex 49901 0.629197 0.504167 0.285016 Vertex 49902 0.460028 0.311396 0.422037 Vertex 49903 0.520415 0.0592977 0.669936 Vertex 49904 0.474787 0.766807 0.494228 Vertex 49905 0.373012 0.356497 0.590489 Vertex 49906 0.529501 0.542664 0.575973 Vertex 49907 0.414957 0.2636 0.205967 Vertex 49908 0.549579 0.399566 0.478575 Vertex 49909 0.3851 0.267272 0.457751 Vertex 49910 0.364093 0.218351 0.225801 Vertex 49911 0.36613 0.92737 0.302589 Vertex 49912 0.463605 0.1461 0.79722 Vertex 49913 0.54532 0.0624308 0.72093 Vertex 49914 0.484329 0.383741 0.415735 Vertex 49915 0.44319 0.813389 0.457259 Vertex 49916 0.526131 0.143174 0.758361 Vertex 49917 0.489517 0.191965 0.544772 Vertex 49918 0.564131 0.508176 0.420864 Vertex 49919 0.493213 0.306622 0.444721 Vertex 49920 0.444469 0.551264 0.561747 Vertex 49921 0.496127 0.419727 0.398317 Vertex 49922 0.35387 0.197864 0.473345 Vertex 49923 0.511999 0.386537 0.565472 Vertex 49924 0.363619 0.390155 0.302275 Vertex 49925 0.514925 0.186647 0.471195 Vertex 49926 0.544165 0.471225 0.567598 Vertex 49927 0.373835 0.351534 0.476206 Vertex 49928 0.47246 0.102249 0.778777 Vertex 49929 0.36472 0.318112 0.497249 Vertex 49930 0.3729 0.355804 0.479268 Vertex 49931 0.439162 0.308701 0.421954 Vertex 49932 0.432203 0.150068 0.596625 Vertex 49933 0.523531 0.465237 0.409197 Vertex 49934 0.423775 0.392986 0.333073 Vertex 49935 0.48697 0.309886 0.437637 Vertex 49936 0.52542 0.060956 0.660134 Vertex 49937 0.472548 0.185012 0.485285 Vertex 49938 0.380558 0.385938 0.592402 Vertex 49939 0.444025 0.374265 0.645422 Vertex 49940 0.380078 0.3509 0.441404 Vertex 49941 0.442586 0.0872349 0.67314 Vertex 49942 0.583539 0.459196 0.478071 Vertex 49943 0.5156 0.126378 0.685696 Vertex 49944 0.406013 0.831169 0.389705 Vertex 49945 0.459424 0.218647 0.662882 Vertex 49946 0.528725 0.692667 0.490965 Vertex 49947 0.406979 0.392957 0.617882 Vertex 49948 0.349902 0.298271 0.197698 Vertex 49949 0.489244 0.199659 0.74372 Vertex 49950 0.476037 0.597786 0.427622 Vertex 49951 0.429402 0.398281 0.637794 Vertex 49952 0.372989 0.44048 0.565608 Vertex 49953 0.606389 0.516207 0.343734 Vertex 49954 0.390839 0.435819 0.595151 Vertex 49955 0.395465 0.211125 0.725082 Vertex 49956 0.441401 0.161837 0.50541 Vertex 49957 0.473318 0.291579 0.629336 Vertex 49958 0.478045 0.209153 0.579994 Vertex 49959 0.465874 0.21854 0.704364 Vertex 49960 0.433992 0.410553 0.409179 Vertex 49961 0.383566 0.211587 0.614328 Vertex 49962 0.357803 0.370717 0.386329 Vertex 49963 0.495825 0.59319 0.401604 Vertex 49964 0.526332 0.174742 0.456987 Vertex 49965 0.537526 0.086228 0.739586 Vertex 49966 0.526812 0.083859 0.710151 Vertex 49967 0.357755 0.32484 0.244132 Vertex 49968 0.461698 0.0851146 0.711732 Vertex 49969 0.458772 0.180671 0.654561 Vertex 49970 0.482333 0.700094 0.409143 Vertex 49971 0.371626 0.362656 0.327156 Vertex 49972 0.417811 0.140509 0.663753 Vertex 49973 0.438422 0.257002 0.723027 Vertex 49974 0.505046 0.665832 0.542853 Vertex 49975 0.492999 0.331722 0.438058 Vertex 49976 0.366876 0.345806 0.391743 Vertex 49977 0.32858 0.94271 0.289589 Vertex 49978 0.550029 0.580616 0.46606 Vertex 49979 0.376465 0.428564 0.403689 Vertex 49980 0.406463 0.28347 0.210379 Vertex 49981 0.527647 0.14629 0.778907 Vertex 49982 0.370075 0.373051 0.232216 Vertex 49983 0.410639 0.496082 0.443365 Vertex 49984 0.521085 0.38906 0.513767 Vertex 49985 0.568122 0.47954 0.324449 Vertex 49986 0.549336 0.56838 0.52611 Vertex 49987 0.518538 0.377238 0.459948 Vertex 49988 0.370584 0.347862 0.427693 Vertex 49989 0.545901 0.545181 0.440018 Vertex 49990 0.38664 0.252009 0.615951 Vertex 49991 0.386729 0.250612 0.617402 Vertex 49992 0.39726 0.512731 0.526163 Vertex 49993 0.394085 0.431359 0.381952 Vertex 49994 0.621024 0.48429 0.36592 Vertex 49995 0.37993 0.377149 0.60086 Vertex 49996 0.520605 0.43175 0.592598 Vertex 49997 0.607573 0.538684 0.256457 Vertex 49998 0.389679 0.192368 0.640056 Vertex 49999 0.358952 0.2775 0.503397 Vertex 50000 0.456421 0.809462 0.473339 Vertex 50001 0.349748 0.136742 0.457792 Vertex 50002 0.513332 0.0872349 0.646944 Face 1 17888 11299 32731 Face 2 9222 1190 17535 Face 3 430 36457 29044 Face 4 4191 43333 11843 Face 5 16219 26668 41940 Face 6 19980 21152 31165 Face 7 21878 22343 13730 Face 8 25928 34986 27087 Face 9 18988 23360 38449 Face 10 31852 41890 22472 Face 11 6319 4252 38150 Face 12 20423 36044 13616 Face 13 27045 26499 35129 Face 14 12075 6498 25931 Face 15 40745 34520 48242 Face 16 26367 35388 34869 Face 17 15490 30076 4507 Face 18 23653 1871 40141 Face 19 8164 40726 24237 Face 20 49905 21455 36095 Face 21 35138 36161 22097 Face 22 5776 32601 17282 Face 23 29023 13240 10696 Face 24 14928 5859 19393 Face 25 24536 41669 13232 Face 26 9947 45672 39337 Face 27 4410 25417 26207 Face 28 8496 34861 22594 Face 29 3109 20781 6708 Face 30 12363 37153 32107 Face 31 29747 37912 5663 Face 32 46756 40888 31912 Face 33 3568 4442 30339 Face 34 14151 24973 7531 Face 35 37345 23209 42617 Face 36 21535 15470 45918 Face 37 7123 2649 17657 Face 38 34063 1808 21816 Face 39 43923 40385 15790 Face 40 5020 32771 20380 Face 41 37098 14267 7707 Face 42 34995 32688 617 Face 43 3345 30780 5745 Face 44 13891 22902 25617 Face 45 6491 12653 25421 Face 46 30536 9465 8434 Face 47 12524 29015 24229 Face 48 12024 26919 11510 Face 49 47554 34151 29761 Face 50 7284 40820 33013 Face 51 45745 34878 11629 Face 52 28987 12710 14428 Face 53 33534 3993 24323 Face 54 26434 20014 8088 Face 55 28845 38944 6566 Face 56 29163 7282 38066 Face 57 46819 9233 11512 Face 58 15806 22096 34441 Face 59 4052 49633 25228 Face 60 18490 47751 33719 Face 61 42647 45780 28153 Face 62 47360 910 28663 Face 63 28680 5671 40884 Face 64 24214 7415 19940 Face 65 18754 26697 7054 Face 66 45389 16151 3485 Face 67 31133 11457 3700 Face 68 39650 26490 22597 Face 69 9943 40810 39736 Face 70 21692 29412 42912 Face 71 12821 20256 27671 Face 72 848 33177 38252 Face 73 14473 34235 23830 Face 74 18155 6260 35990 Face 75 38649 24942 20364 Face 76 7654 21430 28811 Face 77 16920 27303 38312 Face 78 4802 20361 42873 Face 79 10655 23628 17604 Face 80 6139 12923 33884 Face 81 36517 10609 19998 Face 82 34357 27540 13548 Face 83 7363 26670 20069 Face 84 35944 21582 10236 Face 85 12151 17345 8628 Face 86 17417 9499 13537 Face 87 44676 4916 25602 Face 88 40945 27185 21903 Face 89 43768 7288 31542 Face 90 2194 41936 10029 Face 91 42013 14127 46760 Face 92 25196 12101 31945 Face 93 9233 38923 46041 Face 94 14584 9592 18062 Face 95 26737 23780 13850 Face 96 17814 42966 41225 Face 97 28313 16207 4625 Face 98 46862 23913 32915 Face 99 14376 29146 25439 Face 100 44059 8278 24895 Face 101 25648 42002 18070 Face 102 41080 22958 34415 Face 103 47721 42650 11197 Face 104 37650 15593 26845 Face 105 32362 31947 16397 Face 106 10986 13365 35693 Face 107 28582 47845 401 Face 108 19846 37553 44341 Face 109 28397 20849 11862 Face 110 33013 44918 20779 Face 111 2890 42329 35606 Face 112 20044 8388 45695 Face 113 9340 16632 6708 Face 114 40438 5314 32463 Face 115 49337 30565 41957 Face 116 10778 33307 15577 Face 117 37653 20993 34881 Face 118 47726 4627 40930 Face 119 34878 17333 11629 Face 120 8236 34355 11647 Face 121 14171 22341 25141 Face 122 43203 47287 16517 Face 123 44876 15440 8566 Face 124 10734 48033 24692 Face 125 3277 23750 49570 Face 126 45580 35028 39860 Face 127 45081 25876 31065 Face 128 18677 46437 36502 Face 129 42400 29930 27300 Face 130 34154 12341 4797 Face 131 37689 19005 27819 Face 132 40917 21062 22558 Face 133 46449 39918 13486 Face 134 22554 48118 33109 Face 135 26314 22119 2038 Face 136 16212 46166 21657 Face 137 17766 24914 4813 Face 138 13871 9401 31940 Face 139 18823 9963 23672 Face 140 29545 35244 20887 Face 141 49442 18833 38473 Face 142 8341 18106 34003 Face 143 40784 24867 33883 Face 144 24812 45536 15401 Face 145 12901 34387 49996 Face 146 20257 48049 30494 Face 147 18415 33667 37465 Face 148 15341 35370 26093 Face 149 23710 25292 7364 Face 150 42765 18785 36664 Face 151 31570 15885 44573 Face 152 8181 144 11419 Face 153 11019 14865 46908 Face 154 38270 17445 5811 Face 155 30170 15100 25302 Face 156 29063 42690 21946 Face 157 20307 18745 31476 Face 158 43551 48774 44670 Face 159 29559 9146 40138 Face 160 36933 48097 15628 Face 161 11626 21838 13794 Face 162 33800 11615 26634 Face 163 9407 22609 5767 Face 164 12411 18289 32174 Face 165 19665 23001 34038 Face 166 47997 19228 12060 Face 167 31645 44586 18880 Face 168 16980 43541 13804 Face 169 13086 17830 24943 Face 170 41408 11514 24607 Face 171 47970 38263 11734 Face 172 38703 11237 27708 Face 173 12567 13948 3711 Face 174 21913 47986 40578 Face 175 12605 29832 30969 Face 176 47773 26308 36439 Face 177 36960 12558 49577 Face 178 25575 14367 22211 Face 179 15842 33486 21498 Face 180 16384 18002 41224 Face 181 16066 23810 5200 Face 182 16051 2394 30046 Face 183 17035 10506 33593 Face 184 21954 36127 42104 Face 185 4069 23744 29556 Face 186 305 27415 12944 Face 187 16803 4499 48464 Face 188 31329 23235 10925 Face 189 22615 18241 43309 Face 190 15755 6325 31904 Face 191 22063 1863 28217 Face 192 30089 2136 7021 Face 193 10709 4370 34422 Face 194 10024 17421 41278 Face 195 34316 35017 21729 Face 196 28927 10851 24649 Face 197 28225 6363 17510 Face 198 21992 12547 5327 Face 199 25403 44505 14947 Face 200 38099 9672 8063 Face 201 14197 41416 47453 Face 202 1148 25562 25535 Face 203 30642 15098 20010 Face 204 27586 21085 37958 Face 205 26156 44376 14800 Face 206 3238 13067 22056 Face 207 5512 34423 49096 Face 208 25370 4764 9669 Face 209 44357 45388 18350 Face 210 28457 7137 8069 Face 211 20012 8050 25261 Face 212 32511 46286 36745 Face 213 18713 29221 8526 Face 214 4925 30268 19199 Face 215 30371 21621 17502 Face 216 1627 20789 26605 Face 217 41261 25418 22733 Face 218 26761 11945 7572 Face 219 28717 21226 36228 Face 220 13102 7036 13906 Face 221 29936 27039 20531 Face 222 37824 38570 20860 Face 223 30961 33346 38299 Face 224 32315 48665 10059 Face 225 41668 20699 26544 Face 226 14070 22919 23117 Face 227 38599 26865 11036 Face 228 7179 11203 14527 Face 229 2971 18526 5038 Face 230 26405 1831 22754 Face 231 14371 23722 34844 Face 232 49303 31695 22416 Face 233 26345 18633 29103 Face 234 29056 9085 13614 Face 235 21855 15296 17789 Face 236 19494 37121 120 Face 237 22710 43719 46414 Face 238 14 17868 19178 Face 239 44672 42938 5223 Face 240 25868 9178 8978 Face 241 13589 22953 27603 Face 242 28353 35876 10066 Face 243 12480 10051 44328 Face 244 41756 36645 26214 Face 245 47134 45548 14188 Face 246 23317 5415 29714 Face 247 19420 28009 8746 Face 248 42494 4813 2996 Face 249 29627 34106 39191 Face 250 38204 15097 37533 Face 251 5231 17334 37511 Face 252 5350 44121 10805 Face 253 15656 7513 23064 Face 254 6737 43118 12648 Face 255 9013 31136 19025 Face 256 18571 30507 3826 Face 257 45907 4264 2848 Face 258 2221 14338 16941 Face 259 49674 21017 3975 Face 260 13459 21168 40681 Face 261 7350 7893 14278 Face 262 14499 19035 17075 Face 263 28115 13077 6855 Face 264 28971 22326 25810 Face 265 20187 34249 13324 Face 266 12963 28168 34012 Face 267 20116 38504 16973 Face 268 25043 18234 1539 Face 269 38180 34738 18211 Face 270 1090 41764 3778 Face 271 32112 40916 17089 Face 272 13450 32363 26046 Face 273 34781 4274 47524 Face 274 12236 21076 15416 Face 275 3239 7052 34430 Face 276 24865 37096 21908 Face 277 26890 35122 14941 Face 278 40678 32197 26391 Face 279 12307 11423 26049 Face 280 43709 26347 21296 Face 281 33619 24839 11341 Face 282 26917 3134 12662 Face 283 17278 6384 29193 Face 284 47417 47932 4600 Face 285 25993 36674 12504 Face 286 20841 8285 33296 Face 287 38998 3207 6189 Face 288 20737 29730 27319 Face 289 30507 28982 3826 Face 290 23912 37649 19377 Face 291 31902 2765 9641 Face 292 47685 36135 10201 Face 293 24987 20365 14579 Face 294 47668 35976 6579 Face 295 25020 13823 20303 Face 296 22329 17602 36083 Face 297 43731 3284 43816 Face 298 18534 10638 13840 Face 299 7520 17296 46610 Face 300 25987 4120 31477 Face 301 11615 30756 26634 Face 302 41023 31260 27695 Face 303 17432 18538 32173 Face 304 3803 19570 29450 Face 305 10461 15369 20899 Face 306 8244 32402 23457 Face 307 10415 18519 30321 Face 308 23736 24865 21908 Face 309 11161 35090 49182 Face 310 12729 18383 33830 Face 311 19101 47096 37048 Face 312 40809 33512 38760 Face 313 31031 44167 13889 Face 314 17755 18062 9592 Face 315 7681 35412 27453 Face 316 20512 40061 14357 Face 317 38639 18576 33342 Face 318 29833 36561 30580 Face 319 5807 21792 24040 Face 320 18907 41507 28262 Face 321 11839 7389 36317 Face 322 34467 47843 8962 Face 323 29251 11639 11406 Face 324 29725 1564 29541 Face 325 47854 11288 28722 Face 326 17316 21664 48894 Face 327 41914 46975 26914 Face 328 47853 37681 2142 Face 329 25166 13896 23416 Face 330 24627 24710 39149 Face 331 32017 23743 14118 Face 332 18818 14615 7568 Face 333 6725 24774 17794 Face 334 2538 46584 29499 Face 335 47162 18818 7568 Face 336 22556 37998 3079 Face 337 37173 29634 16954 Face 338 17074 25588 36794 Face 339 8843 11291 42295 Face 340 39159 16431 172 Face 341 29679 41976 16094 Face 342 2656 13765 44448 Face 343 12160 26478 35657 Face 344 47079 982 25137 Face 345 46206 882 33357 Face 346 38348 9508 28179 Face 347 13312 31429 33605 Face 348 26715 11957 40962 Face 349 16107 28135 41186 Face 350 11458 22905 28159 Face 351 21569 11261 10176 Face 352 24695 11958 41862 Face 353 39032 18986 15057 Face 354 30963 1707 18986 Face 355 47333 43862 15563 Face 356 37795 32825 13249 Face 357 27911 15223 46774 Face 358 46235 5186 37855 Face 359 42578 20108 13019 Face 360 29434 39531 9158 Face 361 38935 27499 25745 Face 362 11854 19784 29118 Face 363 19662 25529 5967 Face 364 36902 28810 49882 Face 365 26552 12115 46544 Face 366 31826 26720 27986 Face 367 19390 26710 41235 Face 368 30104 4875 40277 Face 369 12725 37470 17754 Face 370 13444 34614 26731 Face 371 8165 14982 34401 Face 372 12259 10355 28580 Face 373 43663 13584 19518 Face 374 6271 12834 23025 Face 375 14334 33707 13199 Face 376 12883 22176 29685 Face 377 8982 13750 19735 Face 378 48636 17207 4492 Face 379 18706 39382 49868 Face 380 31699 17736 23147 Face 381 12887 5858 20463 Face 382 46458 42240 20653 Face 383 26775 37397 3544 Face 384 24176 12290 44778 Face 385 48592 46362 19116 Face 386 38340 22839 33553 Face 387 20360 15777 17523 Face 388 29156 17837 47103 Face 389 3529 1052 23759 Face 390 16999 48921 5325 Face 391 31159 28634 35088 Face 392 20348 3328 44512 Face 393 46788 32912 35241 Face 394 25948 18731 33827 Face 395 30313 43600 24958 Face 396 33283 21482 43658 Face 397 29838 46033 24590 Face 398 48786 12517 25122 Face 399 4149 26360 31219 Face 400 30399 44727 24724 Face 401 1126 31064 18173 Face 402 29184 48022 14092 Face 403 42886 17257 2071 Face 404 22828 21087 47189 Face 405 19577 23997 42762 Face 406 6655 1880 20227 Face 407 5584 34711 39516 Face 408 34869 16027 48654 Face 409 6702 20895 17240 Face 410 24590 11963 38670 Face 411 18724 41957 30565 Face 412 11049 18869 8620 Face 413 44167 32365 13889 Face 414 48743 22685 28432 Face 415 9011 30528 42524 Face 416 320 14640 49036 Face 417 13527 10151 25398 Face 418 11013 8777 47577 Face 419 1441 47114 13667 Face 420 33371 40952 18883 Face 421 12578 2949 23290 Face 422 38632 34425 7033 Face 423 7831 43466 20386 Face 424 27060 35224 9622 Face 425 19116 17837 48592 Face 426 28537 7542 43026 Face 427 19387 39574 32890 Face 428 24891 12485 41878 Face 429 28659 37345 42617 Face 430 42362 24411 37983 Face 431 14080 27493 36764 Face 432 11946 43020 26321 Face 433 18378 3148 33160 Face 434 14483 12888 13407 Face 435 18465 14684 449 Face 436 21262 26032 1448 Face 437 43731 6744 3284 Face 438 35023 37011 19430 Face 439 39283 26338 439 Face 440 46320 43564 20429 Face 441 46593 15041 4868 Face 442 11967 9604 31295 Face 443 9413 17343 18434 Face 444 17617 43803 12034 Face 445 4370 16213 34422 Face 446 28193 17635 16896 Face 447 8 19139 12 Face 448 16677 41881 34606 Face 449 16810 15239 44781 Face 450 35578 33278 18790 Face 451 26954 11834 27713 Face 452 26954 47719 11834 Face 453 48653 8370 36807 Face 454 7626 22720 49301 Face 455 24470 18315 14537 Face 456 36762 22324 6275 Face 457 25975 6314 42285 Face 458 18732 44345 16277 Face 459 34658 30108 22827 Face 460 27600 14701 25687 Face 461 14207 17112 49427 Face 462 23502 45157 16419 Face 463 21401 40629 25627 Face 464 28651 46823 8891 Face 465 26065 2612 19889 Face 466 31107 11425 12657 Face 467 12178 29095 12657 Face 468 39051 21913 10775 Face 469 44462 11657 6197 Face 470 48076 18274 25097 Face 471 5020 9892 32771 Face 472 46575 23324 40777 Face 473 25776 13725 18600 Face 474 7622 23620 38146 Face 475 9312 22260 14434 Face 476 2229 49862 28487 Face 477 9367 41755 23560 Face 478 36280 16408 42226 Face 479 17366 14005 22152 Face 480 37896 45654 15506 Face 481 10989 49493 27976 Face 482 15508 25140 32199 Face 483 26317 5095 26862 Face 484 34173 30857 38351 Face 485 37875 32901 24763 Face 486 30134 15388 19708 Face 487 46417 37890 16750 Face 488 27066 14168 1066 Face 489 4335 19695 42492 Face 490 15062 14160 19582 Face 491 42905 34789 19781 Face 492 31390 19203 6693 Face 493 40523 48850 17405 Face 494 38119 19353 22577 Face 495 21155 39409 30062 Face 496 4948 1305 37316 Face 497 6848 22396 36220 Face 498 12104 21568 10002 Face 499 43012 11193 20559 Face 500 15324 38885 45503 Face 501 15662 38022 25159 Face 502 12835 16129 28563 Face 503 43640 23996 8397 Face 504 16310 28309 5930 Face 505 27063 47111 34965 Face 506 43143 24437 8161 Face 507 23358 14162 26553 Face 508 35708 19571 30228 Face 509 9862 34942 29189 Face 510 14953 34330 29571 Face 511 18459 39552 18336 Face 512 25069 28878 21427 Face 513 15502 5652 34518 Face 514 7170 19286 42778 Face 515 22454 31315 49948 Face 516 4269 11261 22092 Face 517 43091 38729 16225 Face 518 1964 16574 30796 Face 519 21846 8707 13874 Face 520 2368 17111 24302 Face 521 16794 33538 15625 Face 522 30710 16643 36842 Face 523 6342 42067 3691 Face 524 48570 31924 11919 Face 525 37720 43814 47150 Face 526 13216 4100 38199 Face 527 37162 48409 34245 Face 528 32875 5899 19699 Face 529 20284 25214 37319 Face 530 18938 7607 15250 Face 531 3508 24508 16618 Face 532 44476 29010 37185 Face 533 3693 26165 34019 Face 534 1939 7651 47796 Face 535 18297 28960 20977 Face 536 18377 7132 1245 Face 537 6496 19120 7260 Face 538 37697 35295 15155 Face 539 24554 41847 11962 Face 540 30389 45244 36611 Face 541 10954 44056 30188 Face 542 8327 11072 21448 Face 543 43834 5644 31215 Face 544 33888 10314 38023 Face 545 30384 6891 49808 Face 546 37771 21676 30876 Face 547 5944 13309 10944 Face 548 5945 10795 6645 Face 549 1891 18698 23070 Face 550 46569 20423 13616 Face 551 46151 41422 12199 Face 552 30187 11835 16392 Face 553 31004 37881 37579 Face 554 36190 25733 5863 Face 555 3575 17132 23038 Face 556 46583 48512 12561 Face 557 35443 25902 46193 Face 558 46961 9709 37426 Face 559 46650 25797 10248 Face 560 46482 13823 41898 Face 561 44908 8601 46170 Face 562 10803 31046 40541 Face 563 22900 13677 42693 Face 564 32192 4396 33032 Face 565 48214 11977 36327 Face 566 9461 41931 4854 Face 567 45802 741 16109 Face 568 35641 17383 4353 Face 569 23207 36676 7756 Face 570 14038 36500 48878 Face 571 49190 36359 26407 Face 572 8772 33048 41270 Face 573 26992 39226 6290 Face 574 17916 23910 27588 Face 575 11322 40797 11849 Face 576 4335 5636 28056 Face 577 2826 24328 19931 Face 578 16015 30637 21239 Face 579 24307 8240 18430 Face 580 19322 36543 20206 Face 581 28098 49477 23681 Face 582 43095 44904 18150 Face 583 26265 11731 9117 Face 584 16400 12510 9436 Face 585 38093 12420 16995 Face 586 46607 4013 16996 Face 587 32477 42718 3075 Face 588 45299 39407 25243 Face 589 37020 15739 585 Face 590 3819 5027 41473 Face 591 26563 41350 5250 Face 592 23608 11067 18614 Face 593 24969 18070 36308 Face 594 11978 34944 45277 Face 595 12496 31203 448 Face 596 17025 41861 27848 Face 597 20748 28019 17751 Face 598 40071 24621 28019 Face 599 12246 15294 13566 Face 600 47097 5668 17873 Face 601 35799 3965 20792 Face 602 22787 16102 18164 Face 603 1346 46204 8915 Face 604 10805 18344 28538 Face 605 9725 22697 28222 Face 606 47095 34187 20731 Face 607 21143 24006 14431 Face 608 36458 24294 10210 Face 609 17526 44501 8140 Face 610 49912 34645 10625 Face 611 38177 6381 13103 Face 612 29423 34329 4697 Face 613 29752 34239 32720 Face 614 8178 7317 17503 Face 615 34746 12237 19934 Face 616 24273 6832 32040 Face 617 16410 33551 47897 Face 618 29554 24684 23097 Face 619 32393 19897 38532 Face 620 42230 18594 34857 Face 621 10311 40051 3226 Face 622 6392 4514 24263 Face 623 33507 15581 36174 Face 624 46638 15797 4694 Face 625 40185 7909 10625 Face 626 36605 5575 13792 Face 627 23727 23443 13343 Face 628 40908 47315 28491 Face 629 27721 15283 33514 Face 630 9783 3766 39985 Face 631 26700 19125 11200 Face 632 19463 45698 33801 Face 633 37805 7087 24118 Face 634 31736 20333 17926 Face 635 47518 23509 7505 Face 636 30069 43694 10280 Face 637 23672 43872 18823 Face 638 42236 21093 25371 Face 639 45305 32343 4760 Face 640 28432 22685 33442 Face 641 35697 25215 8232 Face 642 44463 35045 13653 Face 643 32282 44214 49063 Face 644 18204 22509 31800 Face 645 627 9547 9531 Face 646 19699 5899 2132 Face 647 14050 7626 12021 Face 648 38655 29165 43804 Face 649 21552 30436 12853 Face 650 31992 16077 37692 Face 651 20803 41979 23593 Face 652 26570 39972 14416 Face 653 14538 5913 25528 Face 654 31438 8003 10639 Face 655 12950 31340 3022 Face 656 44249 9112 33173 Face 657 7169 21549 42820 Face 658 7646 16853 11467 Face 659 8539 32006 34541 Face 660 9248 32550 25769 Face 661 19620 5091 44120 Face 662 12652 34618 47924 Face 663 37750 16924 26033 Face 664 36481 19223 31024 Face 665 31003 46455 15149 Face 666 38133 20679 25995 Face 667 33384 8535 12723 Face 668 31227 9752 45480 Face 669 17988 9337 24749 Face 670 5628 49298 32475 Face 671 45227 8954 26767 Face 672 13239 39004 34234 Face 673 12175 22190 17750 Face 674 35920 12789 47771 Face 675 36003 21901 6225 Face 676 38949 33983 30479 Face 677 16106 8964 3724 Face 678 4978 36380 35555 Face 679 42745 6906 32364 Face 680 31419 43460 40692 Face 681 16706 38447 32071 Face 682 29091 5103 41277 Face 683 30458 12333 16062 Face 684 45539 3190 18183 Face 685 20060 8773 37976 Face 686 41200 25707 8665 Face 687 12570 15912 27357 Face 688 24204 32360 16357 Face 689 9962 12419 27111 Face 690 2697 25459 14806 Face 691 35805 1148 25535 Face 692 35339 17570 11796 Face 693 27854 15688 13985 Face 694 8755 24811 1594 Face 695 35198 7684 1279 Face 696 15851 9180 350 Face 697 35485 30262 10637 Face 698 34562 26561 5546 Face 699 24744 32519 19249 Face 700 13350 40603 11160 Face 701 22744 11154 8055 Face 702 19176 44075 11336 Face 703 15418 7623 34077 Face 704 5057 30358 32272 Face 705 11662 49623 43363 Face 706 27051 34115 11561 Face 707 40781 10832 2379 Face 708 48079 8447 8021 Face 709 10600 4434 8151 Face 710 23041 14927 22075 Face 711 25083 19158 16408 Face 712 12375 35655 23678 Face 713 10747 20804 1751 Face 714 32282 49063 5041 Face 715 45273 21125 19849 Face 716 48861 49626 15375 Face 717 23340 34912 42512 Face 718 48938 24875 14172 Face 719 12527 25877 4937 Face 720 44632 6595 25874 Face 721 17289 26480 15664 Face 722 22511 11798 34992 Face 723 10999 39748 22164 Face 724 2710 19841 39455 Face 725 35379 16650 44809 Face 726 20074 15704 18467 Face 727 5589 41714 17008 Face 728 47632 46476 17034 Face 729 42978 6568 30369 Face 730 12529 36722 23903 Face 731 8203 22515 37449 Face 732 15016 49259 9413 Face 733 15631 21593 2548 Face 734 29215 15541 27704 Face 735 6428 35286 11097 Face 736 27658 26269 8996 Face 737 46474 21724 12254 Face 738 40591 37843 11645 Face 739 23939 22759 45285 Face 740 42615 19307 7535 Face 741 41219 47402 3869 Face 742 3047 47440 5170 Face 743 18442 31527 11620 Face 744 34784 33742 16078 Face 745 26897 14225 21391 Face 746 36698 5488 23344 Face 747 21343 35135 9323 Face 748 14202 38426 10175 Face 749 35551 41124 30101 Face 750 35551 28396 41124 Face 751 14174 378 22125 Face 752 43885 8671 1707 Face 753 44620 4568 33976 Face 754 19190 44857 40295 Face 755 9072 35468 18281 Face 756 11404 15002 22664 Face 757 21178 25047 20785 Face 758 45528 22550 14750 Face 759 19927 15453 9310 Face 760 16626 26732 13595 Face 761 15544 4315 27071 Face 762 35371 11615 33800 Face 763 28913 35429 17271 Face 764 41800 24980 35429 Face 765 25359 6641 23102 Face 766 33520 10436 40556 Face 767 24644 18416 39180 Face 768 23383 4810 39968 Face 769 29828 13149 7671 Face 770 11167 35360 27205 Face 771 1817 30790 25438 Face 772 5269 27642 19518 Face 773 30357 3119 14415 Face 774 32089 13288 1817 Face 775 47213 34226 49937 Face 776 45243 27943 20115 Face 777 21254 34583 42294 Face 778 33393 25461 17472 Face 779 1491 8957 32014 Face 780 45709 6723 12227 Face 781 6778 16707 4931 Face 782 11461 13427 42249 Face 783 21670 29380 8495 Face 784 11245 15726 22978 Face 785 34405 6130 42261 Face 786 21801 31311 47139 Face 787 22593 17224 6339 Face 788 20328 40070 7887 Face 789 19485 17416 39676 Face 790 24761 16483 19444 Face 791 19096 13785 4693 Face 792 10097 13568 38128 Face 793 28065 44162 7704 Face 794 26041 8872 49906 Face 795 39862 11134 27665 Face 796 2849 17251 42713 Face 797 31073 2666 47686 Face 798 34795 25597 43238 Face 799 10566 19082 44147 Face 800 36121 15099 21258 Face 801 19078 39383 26024 Face 802 35100 36867 36509 Face 803 33306 13348 30112 Face 804 4058 37943 38217 Face 805 28351 11135 36347 Face 806 29210 13349 32124 Face 807 8713 29057 47087 Face 808 7255 19075 24061 Face 809 21793 16045 19301 Face 810 21793 26167 16046 Face 811 7966 31486 32698 Face 812 43494 19631 2512 Face 813 31128 46971 25217 Face 814 31931 5897 27031 Face 815 34971 23871 45490 Face 816 13153 23065 28374 Face 817 13687 12491 18562 Face 818 35083 20180 15369 Face 819 22194 33086 49968 Face 820 18277 48167 26953 Face 821 42836 41214 16511 Face 822 14233 6972 21816 Face 823 14465 18672 34560 Face 824 1138 17657 21464 Face 825 36940 20120 27253 Face 826 42654 30041 25735 Face 827 28237 18320 9696 Face 828 31012 36260 14173 Face 829 9374 417 42642 Face 830 19599 7519 48426 Face 831 7981 19181 39708 Face 832 27914 8935 14210 Face 833 10613 27638 5325 Face 834 17714 14670 30364 Face 835 43416 34230 47597 Face 836 45830 24302 35437 Face 837 28897 24695 41862 Face 838 11788 41692 20498 Face 839 23418 7370 46917 Face 840 47092 9546 11646 Face 841 8770 5210 15820 Face 842 34033 7576 17568 Face 843 33654 21095 10449 Face 844 29802 10791 3429 Face 845 41760 11054 45017 Face 846 21898 8059 38642 Face 847 27154 34580 5403 Face 848 26857 1786 41590 Face 849 28873 9834 45714 Face 850 4369 41375 6643 Face 851 42246 17040 11470 Face 852 20977 28960 44095 Face 853 21024 11503 40099 Face 854 14406 30632 35228 Face 855 8854 3448 17166 Face 856 23637 9606 40294 Face 857 39527 20301 10379 Face 858 11797 27058 22523 Face 859 31366 15273 8348 Face 860 43661 31339 432 Face 861 34022 28418 49554 Face 862 30870 45716 40341 Face 863 36604 32565 8376 Face 864 30441 34003 18106 Face 865 49775 34801 37955 Face 866 29934 45820 40381 Face 867 42829 39454 27797 Face 868 13740 32188 16327 Face 869 33737 12784 41594 Face 870 16928 8598 23995 Face 871 17490 45962 32713 Face 872 16970 26338 44652 Face 873 8919 16970 14436 Face 874 24979 23105 33279 Face 875 9357 30675 25274 Face 876 28964 31729 12047 Face 877 43974 35828 25702 Face 878 33182 9862 23460 Face 879 14660 16985 43977 Face 880 16533 25841 46766 Face 881 43286 33808 15701 Face 882 15196 15898 35513 Face 883 48737 26566 21064 Face 884 26375 36120 14940 Face 885 25845 1860 2863 Face 886 5038 29505 46819 Face 887 6385 14536 5432 Face 888 24781 33841 14158 Face 889 44590 15584 10448 Face 890 37484 41600 41625 Face 891 20566 32563 11560 Face 892 5451 43495 14218 Face 893 23242 39599 28426 Face 894 18667 13937 9794 Face 895 19865 12837 22896 Face 896 9160 42504 32705 Face 897 42223 7283 24696 Face 898 20013 10644 36991 Face 899 8755 5409 24811 Face 900 36384 2298 31912 Face 901 7900 14863 4547 Face 902 12573 42687 10325 Face 903 45521 10080 4713 Face 904 21163 38719 49734 Face 905 40525 26593 28812 Face 906 17690 29485 47887 Face 907 17450 35965 4540 Face 908 27025 37740 20288 Face 909 24384 12925 19619 Face 910 18894 47049 9058 Face 911 31083 6974 14753 Face 912 12871 3201 8205 Face 913 46726 2239 35508 Face 914 28951 35176 20198 Face 915 25564 29758 47448 Face 916 25564 36817 29758 Face 917 29051 42459 7192 Face 918 28619 36817 25564 Face 919 38582 32015 30651 Face 920 13259 22350 29848 Face 921 36329 16148 40604 Face 922 26922 48032 32561 Face 923 49795 7650 15060 Face 924 7604 20529 15684 Face 925 32843 3844 34942 Face 926 43811 3803 29450 Face 927 22528 24880 41790 Face 928 35621 5491 3697 Face 929 12094 49011 9000 Face 930 17422 12238 22547 Face 931 6552 26492 49568 Face 932 176 13060 48928 Face 933 25741 41121 4015 Face 934 43196 21691 44086 Face 935 25404 22853 21637 Face 936 7507 29685 22175 Face 937 23056 36215 7372 Face 938 31944 47127 12907 Face 939 13257 12796 28496 Face 940 36957 14273 23439 Face 941 14694 21903 8221 Face 942 27201 36465 17752 Face 943 22294 44962 4493 Face 944 29809 19938 27539 Face 945 20505 4447 18240 Face 946 21216 21876 27533 Face 947 14093 21513 33252 Face 948 33140 27165 24427 Face 949 3157 27131 47169 Face 950 19145 35242 35051 Face 951 22135 35173 21107 Face 952 19672 6305 25103 Face 953 24575 31717 27356 Face 954 45177 7350 24465 Face 955 30314 18651 22768 Face 956 37469 6847 11163 Face 957 8337 19930 43419 Face 958 8970 26779 10813 Face 959 15989 32461 10612 Face 960 32972 24341 18751 Face 961 22278 6600 6222 Face 962 46684 33999 6917 Face 963 17439 7930 43683 Face 964 48981 12511 19955 Face 965 47168 19679 35886 Face 966 3481 9758 17245 Face 967 28997 42994 46318 Face 968 19436 47098 40613 Face 969 20162 7291 34535 Face 970 37040 28180 3543 Face 971 7244 22716 22993 Face 972 38224 29955 20068 Face 973 7000 489 43034 Face 974 37539 16397 31947 Face 975 7000 46664 489 Face 976 22694 33205 43646 Face 977 33184 26107 9993 Face 978 48874 6300 33197 Face 979 17816 2171 24002 Face 980 12023 34927 10125 Face 981 35582 19119 6496 Face 982 7836 30333 3727 Face 983 40687 25062 10333 Face 984 15306 24620 34539 Face 985 40319 30514 18810 Face 986 7955 26936 39291 Face 987 28439 42503 6773 Face 988 18562 12491 36530 Face 989 46404 16692 18842 Face 990 5623 25491 46608 Face 991 42435 24369 11046 Face 992 43929 6688 28047 Face 993 6593 42094 39903 Face 994 45413 18595 35949 Face 995 31948 32751 25824 Face 996 23797 2249 35642 Face 997 44019 49513 20606 Face 998 13172 23427 26738 Face 999 47330 6372 41098 Face 1000 40854 26832 32187 Face 1001 10119 13809 49385 Face 1002 31336 7732 13809 Face 1003 100 17037 27913 Face 1004 4179 46519 30323 Face 1005 18547 23217 6751 Face 1006 39505 2240 20022 Face 1007 24290 24063 32963 Face 1008 39462 35874 23968 Face 1009 28423 11263 33656 Face 1010 18973 1694 48847 Face 1011 22648 11042 29379 Face 1012 15304 38781 34541 Face 1013 1635 6268 21716 Face 1014 13330 3354 28290 Face 1015 17615 48691 27925 Face 1016 29507 20845 17630 Face 1017 8009 29741 30337 Face 1018 14532 19610 24628 Face 1019 40149 8069 7137 Face 1020 48196 19858 12083 Face 1021 20539 24951 14997 Face 1022 18060 43786 4113 Face 1023 48322 9334 23758 Face 1024 22434 33493 36164 Face 1025 30968 12809 7098 Face 1026 10146 22256 31805 Face 1027 11372 7867 25742 Face 1028 1504 6143 30283 Face 1029 28209 8145 40731 Face 1030 20578 11785 35472 Face 1031 12018 24889 15908 Face 1032 6455 27212 22160 Face 1033 49936 4325 11079 Face 1034 24146 46567 19977 Face 1035 16908 23937 16116 Face 1036 13776 35157 3693 Face 1037 19512 46636 24191 Face 1038 54 8196 43255 Face 1039 20007 12585 38716 Face 1040 23 5990 40353 Face 1041 39033 4947 22187 Face 1042 17745 30866 10848 Face 1043 33621 26936 7955 Face 1044 21566 27614 12767 Face 1045 33621 12957 7114 Face 1046 18141 9640 29000 Face 1047 19149 43973 8929 Face 1048 6776 17629 11448 Face 1049 31952 13918 43088 Face 1050 14006 43475 21777 Face 1051 42187 6863 24915 Face 1052 16244 26183 33215 Face 1053 27289 31910 37777 Face 1054 19251 21110 24674 Face 1055 47248 11166 35915 Face 1056 32671 11796 18551 Face 1057 34422 21979 10709 Face 1058 5553 29436 17262 Face 1059 4468 45688 38671 Face 1060 24960 42547 25500 Face 1061 40069 35311 35112 Face 1062 11919 31924 47745 Face 1063 17402 15296 21855 Face 1064 26130 21928 3777 Face 1065 14964 8923 45211 Face 1066 12588 36477 48877 Face 1067 16308 31372 8817 Face 1068 20136 11337 44187 Face 1069 28990 22487 9648 Face 1070 8496 22594 3167 Face 1071 882 13601 42580 Face 1072 33076 27295 538 Face 1073 38897 26944 30307 Face 1074 10798 14376 33528 Face 1075 24859 29914 17940 Face 1076 14450 27571 44033 Face 1077 17716 24519 16857 Face 1078 30554 19156 27465 Face 1079 15954 31085 9198 Face 1080 30976 22717 2945 Face 1081 28020 30667 41108 Face 1082 34278 17592 41152 Face 1083 7885 11038 10102 Face 1084 23533 19388 46026 Face 1085 18280 35528 15153 Face 1086 13190 23600 29583 Face 1087 34757 45929 10657 Face 1088 48759 38886 30353 Face 1089 23388 35946 9361 Face 1090 13166 15018 41895 Face 1091 23699 25183 20480 Face 1092 10225 29251 11406 Face 1093 38419 16368 33619 Face 1094 15038 37048 47822 Face 1095 27605 43698 25555 Face 1096 26648 13647 30075 Face 1097 49371 10741 6285 Face 1098 13894 36480 4091 Face 1099 28224 10971 38552 Face 1100 43671 6285 15660 Face 1101 28814 25389 5167 Face 1102 4907 21261 33928 Face 1103 2742 23610 37418 Face 1104 42561 6374 23501 Face 1105 22843 16324 47643 Face 1106 29567 1052 12595 Face 1107 11652 38821 27349 Face 1108 46611 17704 29353 Face 1109 30597 33592 47869 Face 1110 46403 17574 36699 Face 1111 37608 26451 12879 Face 1112 175 35526 47571 Face 1113 29665 37778 13969 Face 1114 44355 25343 42517 Face 1115 8436 29094 48526 Face 1116 31053 26853 21364 Face 1117 12593 40913 4620 Face 1118 10719 30064 15350 Face 1119 6618 19386 26102 Face 1120 18819 13523 2871 Face 1121 24867 40279 19121 Face 1122 42463 28190 10503 Face 1123 18075 21617 5939 Face 1124 15647 39947 29683 Face 1125 18865 42799 11013 Face 1126 35007 2825 29036 Face 1127 21065 14277 7471 Face 1128 36278 12093 14277 Face 1129 35327 22254 48191 Face 1130 34172 19378 10037 Face 1131 24480 5064 27942 Face 1132 34381 45103 11468 Face 1133 39233 12188 4608 Face 1134 33313 7050 14114 Face 1135 47205 9855 15832 Face 1136 23184 36246 5155 Face 1137 4464 37266 8401 Face 1138 32116 6154 14903 Face 1139 44136 9218 40088 Face 1140 11521 14903 30638 Face 1141 20428 41222 27756 Face 1142 17060 47724 2951 Face 1143 17973 14482 5866 Face 1144 6222 25391 22351 Face 1145 22510 8223 33229 Face 1146 41681 30893 28694 Face 1147 47376 35614 34680 Face 1148 6693 45401 17917 Face 1149 47614 29566 17893 Face 1150 14373 15756 28654 Face 1151 1727 20944 26522 Face 1152 40705 12655 42823 Face 1153 19696 23223 14892 Face 1154 45517 14521 35476 Face 1155 11661 27243 28118 Face 1156 5370 17102 34339 Face 1157 41520 35188 17065 Face 1158 5516 28273 16330 Face 1159 33003 26594 11470 Face 1160 9395 38620 30383 Face 1161 27064 43107 16085 Face 1162 49500 47101 21458 Face 1163 23623 1974 17500 Face 1164 37089 12011 46128 Face 1165 9631 37997 11091 Face 1166 38063 35117 20904 Face 1167 14159 28797 45700 Face 1168 19815 17056 21713 Face 1169 42588 4730 47550 Face 1170 21686 37903 32132 Face 1171 47183 10341 10336 Face 1172 28033 43016 44699 Face 1173 13371 589 36965 Face 1174 4030 42542 24566 Face 1175 47847 12823 7125 Face 1176 8860 47734 27008 Face 1177 22207 22592 13645 Face 1178 18972 42866 25808 Face 1179 8579 24156 27024 Face 1180 36827 19076 5380 Face 1181 17413 13945 28729 Face 1182 39222 11305 43058 Face 1183 47905 28096 48264 Face 1184 16371 25172 6989 Face 1185 6011 39301 49767 Face 1186 10243 26143 14662 Face 1187 15023 11347 6805 Face 1188 32708 40290 16576 Face 1189 23764 47481 17117 Face 1190 24723 48323 6021 Face 1191 9493 7933 46086 Face 1192 32171 18078 40018 Face 1193 17882 43748 46397 Face 1194 4553 30685 599 Face 1195 13481 49080 14439 Face 1196 8079 28141 17397 Face 1197 15943 22134 46328 Face 1198 3891 38034 40276 Face 1199 12520 46768 32984 Face 1200 26604 44044 20175 Face 1201 19126 17662 9497 Face 1202 45082 35945 47024 Face 1203 18378 36659 3148 Face 1204 45691 27755 22856 Face 1205 15702 29125 43121 Face 1206 46234 17712 14255 Face 1207 41065 42784 15556 Face 1208 17252 13880 23721 Face 1209 35567 13766 25310 Face 1210 30480 6146 17256 Face 1211 49 45839 6146 Face 1212 48552 5980 15492 Face 1213 33889 22603 7215 Face 1214 39191 43014 13996 Face 1215 16429 23004 13996 Face 1216 30660 16938 39490 Face 1217 12900 35979 734 Face 1218 49732 17717 32050 Face 1219 46549 21938 29986 Face 1220 31981 25934 1820 Face 1221 14460 8731 23188 Face 1222 3036 19830 22987 Face 1223 12559 23737 43706 Face 1224 27815 3564 49829 Face 1225 40400 24341 5630 Face 1226 45333 2891 1272 Face 1227 17942 3682 6208 Face 1228 45333 17539 15006 Face 1229 35849 6784 18291 Face 1230 31103 22654 14181 Face 1231 16350 43080 15875 Face 1232 3181 36201 37001 Face 1233 14563 44508 16547 Face 1234 36877 24429 34215 Face 1235 3854 13441 40665 Face 1236 20581 29301 620 Face 1237 10284 22086 39842 Face 1238 43323 5050 14244 Face 1239 41110 17320 3488 Face 1240 47593 27223 29266 Face 1241 46938 13267 27501 Face 1242 17426 34310 31082 Face 1243 44259 23442 7814 Face 1244 47408 6508 37475 Face 1245 11909 10197 43828 Face 1246 41013 35980 9452 Face 1247 23142 24772 40824 Face 1248 30002 40533 9704 Face 1249 41840 10001 10252 Face 1250 19891 2131 6429 Face 1251 29244 45912 31532 Face 1252 33330 18384 37638 Face 1253 3251 8362 29261 Face 1254 5537 44522 28144 Face 1255 16689 29559 19164 Face 1256 34210 1235 24294 Face 1257 44654 30926 15850 Face 1258 8215 29073 5813 Face 1259 41233 40333 17165 Face 1260 19195 34343 5470 Face 1261 20513 27437 43696 Face 1262 20613 18116 25166 Face 1263 22425 4620 42484 Face 1264 19830 3036 9797 Face 1265 31927 25563 8561 Face 1266 18770 8455 37521 Face 1267 9101 8753 3999 Face 1268 31498 20605 22185 Face 1269 14465 15274 18672 Face 1270 32374 30551 8790 Face 1271 11944 29349 29707 Face 1272 26662 47666 638 Face 1273 2013 18373 9739 Face 1274 21355 14912 17823 Face 1275 25314 47800 35202 Face 1276 27779 11443 17115 Face 1277 25109 44663 13700 Face 1278 15982 23500 8319 Face 1279 13346 13314 20982 Face 1280 29677 45105 12697 Face 1281 22809 49350 3584 Face 1282 19366 12973 43996 Face 1283 26214 42795 30227 Face 1284 36589 24028 19457 Face 1285 2019 41551 34039 Face 1286 15845 45019 23073 Face 1287 38344 29502 35387 Face 1288 29072 8225 5365 Face 1289 25384 39042 13602 Face 1290 44621 32315 10059 Face 1291 40497 30135 42140 Face 1292 28030 34523 21188 Face 1293 3849 16735 18400 Face 1294 20778 34840 45460 Face 1295 12517 16686 25122 Face 1296 46957 7685 25157 Face 1297 9128 13915 18977 Face 1298 28663 31205 29286 Face 1299 24522 10412 24049 Face 1300 26836 6504 48337 Face 1301 48561 32225 24522 Face 1302 12630 10971 48713 Face 1303 15113 18413 32873 Face 1304 8597 39034 45042 Face 1305 17018 42983 5852 Face 1306 36130 13194 29728 Face 1307 40417 32776 25225 Face 1308 18699 47987 32685 Face 1309 24768 32517 4238 Face 1310 36556 22604 5484 Face 1311 2683 12544 28390 Face 1312 12777 22313 25738 Face 1313 7834 24775 40740 Face 1314 26234 15938 43931 Face 1315 22360 18031 11031 Face 1316 5246 32026 21536 Face 1317 47427 26782 41399 Face 1318 33644 25993 12504 Face 1319 21547 36352 20154 Face 1320 34385 28561 8968 Face 1321 3730 13854 43698 Face 1322 14018 38565 19972 Face 1323 21919 664 38071 Face 1324 46251 23676 17118 Face 1325 38812 36656 1820 Face 1326 31236 8279 36733 Face 1327 31711 45455 24481 Face 1328 31711 18988 45455 Face 1329 43424 11989 19737 Face 1330 668 13767 5400 Face 1331 37576 21960 5400 Face 1332 161 17921 29296 Face 1333 40629 25527 4767 Face 1334 40102 21804 12186 Face 1335 48516 35263 3562 Face 1336 767 31752 43367 Face 1337 9915 2244 48074 Face 1338 29979 12973 19366 Face 1339 20317 24629 17800 Face 1340 12571 15156 672 Face 1341 47919 29317 21843 Face 1342 3793 17855 28666 Face 1343 48394 34731 18279 Face 1344 22172 19526 42999 Face 1345 9446 37714 4973 Face 1346 44880 8644 2909 Face 1347 46649 41193 32212 Face 1348 36814 35158 3234 Face 1349 38294 20982 13314 Face 1350 30276 16717 6806 Face 1351 31133 24500 11457 Face 1352 28041 24179 17125 Face 1353 8033 34009 16851 Face 1354 39417 6998 31303 Face 1355 27146 12165 1084 Face 1356 14374 15524 27299 Face 1357 18228 34806 20447 Face 1358 11021 9647 46795 Face 1359 6597 13595 33953 Face 1360 6597 16626 13595 Face 1361 39679 21643 35998 Face 1362 31084 16360 44635 Face 1363 3575 36413 14211 Face 1364 21817 18263 12733 Face 1365 44978 5707 36546 Face 1366 18119 30822 20305 Face 1367 32112 3530 23178 Face 1368 11495 36871 18521 Face 1369 47291 19231 11574 Face 1370 3495 38126 39775 Face 1371 13346 29326 49447 Face 1372 3495 26340 41077 Face 1373 26132 38778 24870 Face 1374 4 26961 30928 Face 1375 23464 5727 48081 Face 1376 34242 46005 10407 Face 1377 47217 24712 37180 Face 1378 12742 31823 24863 Face 1379 26574 48715 10807 Face 1380 39877 31540 32200 Face 1381 23841 8990 35161 Face 1382 38390 17606 29298 Face 1383 37673 14965 45040 Face 1384 20723 39673 24480 Face 1385 14 8462 49056 Face 1386 15184 10236 47093 Face 1387 29131 44981 20974 Face 1388 3562 45680 5410 Face 1389 1668 22182 25977 Face 1390 9820 41928 4675 Face 1391 8558 43087 41365 Face 1392 21437 3022 31340 Face 1393 19489 15529 39047 Face 1394 33090 12286 7701 Face 1395 17240 20553 19633 Face 1396 5172 39923 22722 Face 1397 11122 23797 13655 Face 1398 8559 10896 33851 Face 1399 14970 2206 28953 Face 1400 30162 33744 15754 Face 1401 42196 47073 45584 Face 1402 25779 16521 12782 Face 1403 42110 28284 31363 Face 1404 49787 15393 2805 Face 1405 20232 20462 23218 Face 1406 16666 37601 10367 Face 1407 160 35412 19146 Face 1408 1651 37986 49938 Face 1409 247 8469 47410 Face 1410 12506 6604 23239 Face 1411 32467 37122 18346 Face 1412 32989 5670 12947 Face 1413 31176 13131 44039 Face 1414 18381 22713 30820 Face 1415 25314 15064 47800 Face 1416 33386 8382 15064 Face 1417 45520 18063 25758 Face 1418 34557 41109 7183 Face 1419 7909 31512 10625 Face 1420 3766 9783 44070 Face 1421 19983 37032 15888 Face 1422 32711 13956 29775 Face 1423 9261 43981 13844 Face 1424 32860 14989 20090 Face 1425 40751 14642 8976 Face 1426 49319 23387 26241 Face 1427 42858 30040 41185 Face 1428 37497 20303 25299 Face 1429 32983 30932 25642 Face 1430 34538 42677 25012 Face 1431 5888 22688 44708 Face 1432 2440 20386 49273 Face 1433 38064 12409 2036 Face 1434 41814 19434 23959 Face 1435 7604 24112 28261 Face 1436 11723 16558 13448 Face 1437 32971 2190 19005 Face 1438 9658 31913 11893 Face 1439 9497 39100 19126 Face 1440 20710 18235 19775 Face 1441 16643 37030 8646 Face 1442 43672 19546 38495 Face 1443 11602 13354 5869 Face 1444 47407 14679 25307 Face 1445 34245 29650 46189 Face 1446 49769 44729 35466 Face 1447 34630 22984 11508 Face 1448 18438 16510 8542 Face 1449 47425 11913 25511 Face 1450 30538 8031 49276 Face 1451 10137 16323 27634 Face 1452 12132 19296 47522 Face 1453 23949 5387 11258 Face 1454 32829 8630 15399 Face 1455 2406 40441 17020 Face 1456 30938 26760 39545 Face 1457 30893 9266 28694 Face 1458 43341 8403 14899 Face 1459 15627 7627 33067 Face 1460 15627 40918 7627 Face 1461 46577 29600 29919 Face 1462 23079 43700 16198 Face 1463 24805 734 35979 Face 1464 24805 37683 734 Face 1465 33855 735 44822 Face 1466 29676 7982 23245 Face 1467 348 16197 30582 Face 1468 348 21175 16197 Face 1469 39523 22039 31539 Face 1470 1994 2716 9582 Face 1471 26505 10084 42518 Face 1472 6450 10801 43507 Face 1473 49090 33585 23314 Face 1474 43428 11217 19426 Face 1475 32778 1913 31661 Face 1476 10995 34999 37290 Face 1477 6149 36013 2625 Face 1478 26464 27822 38910 Face 1479 7005 13971 38267 Face 1480 7699 3808 18074 Face 1481 28496 26142 13257 Face 1482 47025 4837 7573 Face 1483 26720 26925 27986 Face 1484 29286 31205 7822 Face 1485 5486 25397 29260 Face 1486 5486 38284 25397 Face 1487 37554 33325 28015 Face 1488 35237 5977 44266 Face 1489 12105 20510 39866 Face 1490 38658 21696 8503 Face 1491 1239 49456 33867 Face 1492 33036 16377 8071 Face 1493 14561 39766 27985 Face 1494 21024 40098 43570 Face 1495 3353 30018 41676 Face 1496 28882 19993 35370 Face 1497 25730 34542 31673 Face 1498 48438 14156 7695 Face 1499 21926 34554 15658 Face 1500 8629 47310 10186 Face 1501 11214 4075 37634 Face 1502 49138 12825 1746 Face 1503 18665 37646 12097 Face 1504 3316 40880 34475 Face 1505 45368 5224 22942 Face 1506 15906 33027 2736 Face 1507 26396 31683 29363 Face 1508 7361 39177 9908 Face 1509 12698 10666 32068 Face 1510 8638 31332 26979 Face 1511 39075 43937 8528 Face 1512 39972 26570 16828 Face 1513 44114 15667 37004 Face 1514 40569 46459 27324 Face 1515 22124 19064 44886 Face 1516 40636 38437 22815 Face 1517 48358 35399 21976 Face 1518 34162 40205 28804 Face 1519 20184 14418 36672 Face 1520 18180 28179 40083 Face 1521 23362 43241 9550 Face 1522 42859 3425 40383 Face 1523 11853 35028 45580 Face 1524 27439 28914 21461 Face 1525 46692 765 7875 Face 1526 21782 34850 12595 Face 1527 11000 38995 19150 Face 1528 36845 25534 3736 Face 1529 44196 29464 15331 Face 1530 5428 8903 41403 Face 1531 7218 17141 36553 Face 1532 10165 34200 32935 Face 1533 11990 26624 43537 Face 1534 4610 26376 7123 Face 1535 39336 28089 15091 Face 1536 40721 13007 28485 Face 1537 42296 31665 5861 Face 1538 7754 13717 19917 Face 1539 26005 33210 20621 Face 1540 13426 26125 47827 Face 1541 15176 34120 7669 Face 1542 25176 39273 4718 Face 1543 13776 35593 1558 Face 1544 2511 48883 17703 Face 1545 44568 775 22107 Face 1546 46379 5581 24382 Face 1547 7544 32939 11080 Face 1548 7544 22532 28948 Face 1549 18596 15117 34545 Face 1550 11139 34145 29340 Face 1551 12681 36547 18342 Face 1552 28065 7704 45411 Face 1553 22140 42507 6348 Face 1554 29291 48574 8489 Face 1555 40300 35153 22433 Face 1556 16519 48897 20422 Face 1557 41892 4695 46208 Face 1558 16892 20487 7093 Face 1559 29995 38801 13517 Face 1560 38584 6556 22810 Face 1561 47842 25909 35879 Face 1562 43262 38801 29995 Face 1563 14754 37532 36294 Face 1564 30280 17595 784 Face 1565 6931 14877 42672 Face 1566 22576 7657 29016 Face 1567 29437 7006 45800 Face 1568 9484 3886 15536 Face 1569 28623 40458 26630 Face 1570 32936 46905 12772 Face 1571 6625 40844 12772 Face 1572 18250 30062 39409 Face 1573 12412 5348 27430 Face 1574 46340 16465 12852 Face 1575 24861 3486 8459 Face 1576 48889 4218 12149 Face 1577 39725 3803 43811 Face 1578 23225 19521 45111 Face 1579 13610 4753 42849 Face 1580 20260 41237 6300 Face 1581 22184 13455 26162 Face 1582 22459 34962 21760 Face 1583 19820 1744 36055 Face 1584 20026 18357 41132 Face 1585 44714 29257 20259 Face 1586 42031 34612 30304 Face 1587 27903 26527 5040 Face 1588 8371 13531 2026 Face 1589 1304 797 24280 Face 1590 4398 18931 5647 Face 1591 37749 29954 43966 Face 1592 27487 32343 32757 Face 1593 6372 31624 18372 Face 1594 37693 11516 44372 Face 1595 35785 30544 11001 Face 1596 48109 5753 13329 Face 1597 31496 44125 4118 Face 1598 21014 23418 42506 Face 1599 41706 22182 1668 Face 1600 30856 40329 23719 Face 1601 45352 46670 7547 Face 1602 2272 21181 28792 Face 1603 5573 17330 19415 Face 1604 36857 46396 29793 Face 1605 7602 45075 47634 Face 1606 17330 5573 40706 Face 1607 24153 3670 14773 Face 1608 23306 6641 40026 Face 1609 35150 14399 4275 Face 1610 31330 32501 49756 Face 1611 2448 18718 15361 Face 1612 12621 25041 39911 Face 1613 19087 47197 7241 Face 1614 42516 19258 5628 Face 1615 15044 23096 32722 Face 1616 16525 17524 9020 Face 1617 5865 28336 45888 Face 1618 45507 33620 27684 Face 1619 37229 8534 25773 Face 1620 6 13950 25087 Face 1621 48393 45906 32982 Face 1622 21102 47021 813 Face 1623 2831 43321 6829 Face 1624 19985 16214 6163 Face 1625 43236 17857 2830 Face 1626 155 7191 9235 Face 1627 10069 38505 18421 Face 1628 48933 38995 11000 Face 1629 38647 31807 22009 Face 1630 36307 9311 22916 Face 1631 18679 10835 13409 Face 1632 38474 14300 13672 Face 1633 20551 47053 37552 Face 1634 10888 36701 24320 Face 1635 31797 4392 20551 Face 1636 24957 14475 7973 Face 1637 12445 46615 15872 Face 1638 30087 45988 7476 Face 1639 19369 26748 15066 Face 1640 19369 20952 35411 Face 1641 44467 29813 12852 Face 1642 27544 36941 49115 Face 1643 7162 37232 5678 Face 1644 48883 2511 19755 Face 1645 13914 33553 22839 Face 1646 16770 24922 8676 Face 1647 48954 4658 24182 Face 1648 30642 20010 49064 Face 1649 25011 10047 30299 Face 1650 17462 49105 3379 Face 1651 27271 16569 43450 Face 1652 49815 22566 33069 Face 1653 15056 43730 33730 Face 1654 10472 34827 43631 Face 1655 19446 8831 33216 Face 1656 13353 40549 13510 Face 1657 12936 26840 43635 Face 1658 12936 35829 26840 Face 1659 27016 12510 45905 Face 1660 21400 30784 10458 Face 1661 45384 31199 11111 Face 1662 24601 49539 33628 Face 1663 16731 19610 47563 Face 1664 28953 8753 33971 Face 1665 8523 41064 45682 Face 1666 11948 32138 24024 Face 1667 6213 42509 20839 Face 1668 40940 23803 18076 Face 1669 572 47951 10607 Face 1670 2838 28474 20101 Face 1671 10180 44736 25528 Face 1672 41770 21615 3839 Face 1673 27009 3413 18908 Face 1674 17850 5773 16708 Face 1675 34845 5013 13993 Face 1676 609 27661 46483 Face 1677 14005 19590 22152 Face 1678 45351 2176 15575 Face 1679 30047 38836 6206 Face 1680 15433 18792 44330 Face 1681 28782 2726 14691 Face 1682 8212 44822 30650 Face 1683 32310 3942 19262 Face 1684 25859 33071 3303 Face 1685 40951 44507 47852 Face 1686 35450 25402 27835 Face 1687 42626 12419 9962 Face 1688 24576 18190 46330 Face 1689 12458 5661 15896 Face 1690 4380 38510 22868 Face 1691 12405 7309 6924 Face 1692 13799 31650 8486 Face 1693 850 8651 12955 Face 1694 18856 27125 27510 Face 1695 8486 44218 21294 Face 1696 33536 14496 13286 Face 1697 21074 48809 33821 Face 1698 45853 37545 39935 Face 1699 5168 42173 30995 Face 1700 37870 5605 44522 Face 1701 44066 12928 45535 Face 1702 33204 11244 39789 Face 1703 14041 36982 22832 Face 1704 14041 11907 9642 Face 1705 9194 32534 22788 Face 1706 31253 43094 18150 Face 1707 31302 41491 15750 Face 1708 45679 16867 7746 Face 1709 29779 39406 25522 Face 1710 29779 37773 49890 Face 1711 15257 4140 34208 Face 1712 46781 27831 13061 Face 1713 6282 39373 47447 Face 1714 33407 8815 45440 Face 1715 6950 32326 16010 Face 1716 49877 22063 11895 Face 1717 27534 45373 16792 Face 1718 25341 41518 14317 Face 1719 24235 40579 17820 Face 1720 25280 2017 18343 Face 1721 5267 17221 29028 Face 1722 18820 21156 36652 Face 1723 30115 45159 1339 Face 1724 33709 630 20065 Face 1725 6135 41438 34098 Face 1726 14459 12060 25599 Face 1727 23136 12729 44115 Face 1728 6475 11832 29673 Face 1729 28106 41706 37285 Face 1730 43926 13933 24501 Face 1731 14624 2521 19306 Face 1732 25762 6183 2521 Face 1733 16333 32181 41717 Face 1734 27823 22796 35859 Face 1735 31537 47976 35771 Face 1736 17879 27932 47757 Face 1737 4674 4312 31063 Face 1738 40713 37488 12387 Face 1739 10681 21199 8855 Face 1740 10681 9504 46288 Face 1741 36516 6603 47495 Face 1742 26762 1717 30819 Face 1743 8610 16856 32525 Face 1744 2657 48369 30286 Face 1745 17779 8932 33890 Face 1746 4014 30274 46196 Face 1747 37551 3171 30356 Face 1748 16262 26278 34024 Face 1749 34042 25490 41492 Face 1750 8459 3486 37010 Face 1751 41345 39844 12442 Face 1752 41345 36763 20744 Face 1753 16024 30318 12934 Face 1754 37846 40069 35112 Face 1755 19183 45201 23897 Face 1756 22898 2334 17352 Face 1757 12459 46131 49622 Face 1758 33979 20726 41075 Face 1759 42211 4622 18574 Face 1760 33076 538 18488 Face 1761 34130 47975 15881 Face 1762 37141 7374 883 Face 1763 28893 13731 45113 Face 1764 11119 47631 4740 Face 1765 20896 9052 29395 Face 1766 23275 27183 9052 Face 1767 14211 17132 3575 Face 1768 11694 43438 37850 Face 1769 29535 10085 14338 Face 1770 6884 22874 6260 Face 1771 24939 888 19882 Face 1772 14842 21249 25125 Face 1773 18370 25597 33219 Face 1774 47941 28192 889 Face 1775 24162 28081 44409 Face 1776 1485 11353 49773 Face 1777 500 28636 16854 Face 1778 31006 49241 28636 Face 1779 6431 31341 45930 Face 1780 12796 47484 25814 Face 1781 16991 26318 33587 Face 1782 29041 8067 18445 Face 1783 24401 7302 28083 Face 1784 43760 49454 31158 Face 1785 9733 28066 36541 Face 1786 3217 37829 47974 Face 1787 6917 4260 16797 Face 1788 22098 8805 33070 Face 1789 28211 26843 21997 Face 1790 49628 17835 43928 Face 1791 3032 5249 42056 Face 1792 11310 27190 21858 Face 1793 47914 16751 34171 Face 1794 900 40626 36110 Face 1795 24096 21396 35905 Face 1796 8691 28664 11302 Face 1797 10418 19338 12083 Face 1798 30281 47579 42650 Face 1799 28241 30894 11270 Face 1800 24379 32064 42890 Face 1801 31802 29983 18017 Face 1802 42010 20621 35103 Face 1803 29020 37116 6627 Face 1804 5132 17684 14510 Face 1805 3841 36154 10903 Face 1806 20214 21902 14232 Face 1807 17877 29585 14391 Face 1808 20038 9317 29585 Face 1809 12804 3272 6270 Face 1810 30248 18622 25035 Face 1811 19716 11438 37623 Face 1812 26342 49900 22967 Face 1813 49791 40329 13100 Face 1814 32628 1667 8474 Face 1815 48293 38287 29148 Face 1816 48355 22385 45086 Face 1817 15437 29719 32635 Face 1818 32179 28414 37610 Face 1819 5637 24872 36495 Face 1820 43430 10439 23411 Face 1821 32948 16888 2986 Face 1822 32948 41790 16888 Face 1823 37648 13987 44872 Face 1824 1635 47567 4869 Face 1825 28070 2404 38804 Face 1826 9655 39138 42429 Face 1827 18944 13009 34438 Face 1828 22477 20115 27943 Face 1829 39653 16858 6063 Face 1830 30222 42172 6125 Face 1831 17090 918 24502 Face 1832 14054 19659 36785 Face 1833 47449 15594 11904 Face 1834 30364 17715 34626 Face 1835 9276 13435 38694 Face 1836 34129 46469 17841 Face 1837 23054 43352 17089 Face 1838 9921 33899 41690 Face 1839 8886 43545 35964 Face 1840 3759 41682 22903 Face 1841 9325 9771 34318 Face 1842 378 14174 26988 Face 1843 10326 13480 33673 Face 1844 33042 20191 924 Face 1845 40280 44784 3936 Face 1846 17728 44371 35450 Face 1847 7475 23286 34338 Face 1848 41099 14521 12778 Face 1849 7782 30454 44457 Face 1850 34084 8929 927 Face 1851 17482 28820 21604 Face 1852 20228 35880 20093 Face 1853 43899 34482 11888 Face 1854 16485 23296 19705 Face 1855 43185 16098 13561 Face 1856 20852 35198 1279 Face 1857 46556 29483 45176 Face 1858 17007 46106 4563 Face 1859 11500 42538 31370 Face 1860 9629 21290 12131 Face 1861 25625 5302 19671 Face 1862 12002 8511 19383 Face 1863 35736 8412 13036 Face 1864 20476 37218 17702 Face 1865 6432 16488 2224 Face 1866 21835 45881 5167 Face 1867 17722 29061 37116 Face 1868 9406 32513 36358 Face 1869 29167 40464 14828 Face 1870 30533 21186 42430 Face 1871 25547 27300 49960 Face 1872 26503 40464 29167 Face 1873 10127 35623 20800 Face 1874 35689 49772 13215 Face 1875 31856 10165 17142 Face 1876 34023 20121 38161 Face 1877 26469 17895 32638 Face 1878 48036 20258 22391 Face 1879 12919 18745 20307 Face 1880 13439 19818 22734 Face 1881 10328 27650 33490 Face 1882 8586 19079 25598 Face 1883 10443 22842 22214 Face 1884 39598 13051 20547 Face 1885 21881 11246 39580 Face 1886 18910 46557 29837 Face 1887 23728 9706 41849 Face 1888 18812 28797 45913 Face 1889 29803 41490 18461 Face 1890 17961 8777 11013 Face 1891 31697 20956 3220 Face 1892 12142 24824 36567 Face 1893 5511 40726 8164 Face 1894 5512 49096 21139 Face 1895 22024 36484 22772 Face 1896 7194 17895 24926 Face 1897 30172 23018 47441 Face 1898 44060 38391 10375 Face 1899 43229 952 11505 Face 1900 40922 16729 31331 Face 1901 21601 39001 23551 Face 1902 12012 24764 3792 Face 1903 33594 14622 6737 Face 1904 16177 5680 29457 Face 1905 16961 5664 22785 Face 1906 12703 36102 24558 Face 1907 18840 40290 32708 Face 1908 47213 13665 43053 Face 1909 27608 14360 6916 Face 1910 772 16493 19191 Face 1911 27378 49630 21650 Face 1912 18014 13704 958 Face 1913 8518 29643 13480 Face 1914 14026 30469 32003 Face 1915 5272 47629 40017 Face 1916 18584 22430 6858 Face 1917 15910 13893 30185 Face 1918 5300 34834 22958 Face 1919 28250 15873 17547 Face 1920 27625 35500 8573 Face 1921 14335 29857 40318 Face 1922 49089 18365 31602 Face 1923 45438 18677 15626 Face 1924 2423 16538 12651 Face 1925 29768 23146 38591 Face 1926 13423 47322 22935 Face 1927 37619 32799 13624 Face 1928 11766 40903 35048 Face 1929 10336 967 38429 Face 1930 9861 46061 35209 Face 1931 12445 24453 31044 Face 1932 42875 41748 16427 Face 1933 25985 22472 2309 Face 1934 5360 35720 22151 Face 1935 48447 10470 33876 Face 1936 14981 21301 43433 Face 1937 32579 16792 4194 Face 1938 7111 16785 47321 Face 1939 21470 16324 22843 Face 1940 46283 33518 23812 Face 1941 2879 23272 19497 Face 1942 48858 26980 19018 Face 1943 31675 40323 5817 Face 1944 12334 25063 37133 Face 1945 28865 44199 3822 Face 1946 6044 45282 20957 Face 1947 46581 44707 28281 Face 1948 17558 29378 10522 Face 1949 21409 35836 46797 Face 1950 31284 4881 43186 Face 1951 11112 23999 24228 Face 1952 12469 35474 19778 Face 1953 17731 29948 38905 Face 1954 13412 34628 24138 Face 1955 21895 980 5396 Face 1956 19003 34234 26268 Face 1957 32775 27058 11797 Face 1958 11653 5045 28774 Face 1959 23331 21151 49430 Face 1960 23331 9542 8885 Face 1961 41828 15568 48271 Face 1962 43146 1917 32097 Face 1963 16206 22915 37925 Face 1964 12011 43169 28562 Face 1965 10915 40813 16904 Face 1966 40704 32528 27317 Face 1967 12784 41247 25981 Face 1968 22712 5936 35349 Face 1969 17948 17800 12468 Face 1970 21299 1939 31932 Face 1971 21786 18047 27982 Face 1972 25554 9662 21865 Face 1973 27458 16511 11130 Face 1974 48769 24452 989 Face 1975 33950 46068 17434 Face 1976 7828 39767 15656 Face 1977 6467 9981 31480 Face 1978 20454 8476 38416 Face 1979 36775 11113 47819 Face 1980 10415 30321 39945 Face 1981 34845 25803 29764 Face 1982 34845 13993 25803 Face 1983 10694 29899 41655 Face 1984 106 26343 28601 Face 1985 20297 41195 2695 Face 1986 23529 1090 3778 Face 1987 7050 13563 14114 Face 1988 18187 28359 24121 Face 1989 2879 27554 23272 Face 1990 15142 8161 48560 Face 1991 27627 18422 16325 Face 1992 6911 14289 41794 Face 1993 6146 36597 17256 Face 1994 47620 18422 24850 Face 1995 18276 12368 48816 Face 1996 40008 43958 22850 Face 1997 8733 12645 42150 Face 1998 46088 7429 1001 Face 1999 46609 9576 38978 Face 2000 24385 32516 6752 Face 2001 19676 35050 18795 Face 2002 42266 21806 17797 Face 2003 22370 17733 9976 Face 2004 484 22936 39500 Face 2005 19404 47357 19445 Face 2006 29402 23907 40659 Face 2007 47357 38663 19445 Face 2008 6620 40434 31716 Face 2009 35289 6269 18564 Face 2010 15534 46317 38335 Face 2011 29 48948 25983 Face 2012 19353 38119 12360 Face 2013 14449 31758 30025 Face 2014 41410 3984 25178 Face 2015 16612 43665 4355 Face 2016 8063 9672 17429 Face 2017 2194 15951 40787 Face 2018 21915 30479 33983 Face 2019 49471 18675 5550 Face 2020 6431 13675 11648 Face 2021 29640 20626 36812 Face 2022 29640 10893 20626 Face 2023 33650 24529 45479 Face 2024 21405 13728 30659 Face 2025 120 18602 45578 Face 2026 8649 44898 5277 Face 2027 32032 13738 20568 Face 2028 41910 14954 13738 Face 2029 39908 24619 39178 Face 2030 21767 21142 31192 Face 2031 13402 31681 45090 Face 2032 19785 14390 37321 Face 2033 17261 41412 28479 Face 2034 43832 172 16431 Face 2035 40795 19731 46210 Face 2036 17861 23927 31572 Face 2037 44847 3961 5618 Face 2038 25413 9208 32941 Face 2039 44137 8042 29906 Face 2040 17108 20889 18412 Face 2041 42602 19343 42776 Face 2042 47879 49578 12743 Face 2043 12790 29077 8203 Face 2044 37691 16727 35041 Face 2045 37788 15328 24577 Face 2046 4774 7450 49748 Face 2047 28084 13958 44058 Face 2048 13158 22234 17374 Face 2049 35592 48122 3119 Face 2050 18785 42765 25760 Face 2051 5965 20962 36010 Face 2052 41028 27090 40956 Face 2053 10376 40420 43939 Face 2054 32557 41740 20945 Face 2055 26991 15267 17101 Face 2056 27770 17394 5466 Face 2057 25752 43463 7536 Face 2058 299 41472 24653 Face 2059 25805 10665 44198 Face 2060 16992 46173 38366 Face 2061 301 41725 13296 Face 2062 23234 23421 39876 Face 2063 31872 46230 11685 Face 2064 9677 32553 36169 Face 2065 21172 7951 25467 Face 2066 19007 1804 20598 Face 2067 23955 39208 28276 Face 2068 4971 35873 13043 Face 2069 16579 3246 48728 Face 2070 44110 17373 6717 Face 2071 31670 13552 9417 Face 2072 11547 4082 36267 Face 2073 40456 1039 16281 Face 2074 37450 6756 25107 Face 2075 13928 27000 22533 Face 2076 14388 10514 27350 Face 2077 21763 12678 40305 Face 2078 48007 21492 24760 Face 2079 45555 17292 11484 Face 2080 23261 32425 46486 Face 2081 41423 7750 24276 Face 2082 14831 17869 32230 Face 2083 14654 24221 18933 Face 2084 16748 34914 13167 Face 2085 3425 43402 40383 Face 2086 24157 3007 39623 Face 2087 22417 7086 15246 Face 2088 37766 8367 20439 Face 2089 5306 27696 37481 Face 2090 39657 18186 12469 Face 2091 13501 32542 12450 Face 2092 3804 31941 1354 Face 2093 23295 1049 18247 Face 2094 40925 31941 3804 Face 2095 11390 24830 25071 Face 2096 29010 33002 24830 Face 2097 14990 1051 40043 Face 2098 14608 7880 47085 Face 2099 24464 1052 39332 Face 2100 47952 9334 15809 Face 2101 31119 4901 5924 Face 2102 16628 45693 7414 Face 2103 11008 10149 25293 Face 2104 5553 17262 39359 Face 2105 29736 13868 21765 Face 2106 3335 9965 47551 Face 2107 32137 42433 27438 Face 2108 32137 19318 42433 Face 2109 8822 32137 27438 Face 2110 49962 41381 12235 Face 2111 26497 33342 18576 Face 2112 6852 9965 35372 Face 2113 21541 12364 46875 Face 2114 15132 6364 37591 Face 2115 41696 11046 24369 Face 2116 21644 47964 29710 Face 2117 24814 41023 27695 Face 2118 23446 15734 24588 Face 2119 28994 33551 16410 Face 2120 10907 49330 8431 Face 2121 48206 36389 27577 Face 2122 27820 45355 19529 Face 2123 16389 13995 1887 Face 2124 19019 23982 8338 Face 2125 36198 3148 30594 Face 2126 20463 5858 1065 Face 2127 43379 23806 37868 Face 2128 24843 9743 42258 Face 2129 33609 25667 3514 Face 2130 19712 14668 27963 Face 2131 17762 10544 41786 Face 2132 23365 24627 10545 Face 2133 25073 5416 25410 Face 2134 18919 6553 8632 Face 2135 9978 38386 31747 Face 2136 45042 20960 14851 Face 2137 3241 16910 43081 Face 2138 39344 36589 19457 Face 2139 35133 17654 46654 Face 2140 47161 11935 17941 Face 2141 17101 11306 26991 Face 2142 23794 2667 10100 Face 2143 23237 20620 33783 Face 2144 26307 13330 46517 Face 2145 7088 39484 22137 Face 2146 7088 29965 39484 Face 2147 11495 4987 38828 Face 2148 25742 7867 20270 Face 2149 37177 38769 26280 Face 2150 25087 13950 44019 Face 2151 10875 30254 20047 Face 2152 10874 9820 7044 Face 2153 15461 13417 30201 Face 2154 39189 40227 11379 Face 2155 12024 42132 26919 Face 2156 6541 12801 33539 Face 2157 31207 1081 6258 Face 2158 5762 47492 23646 Face 2159 13821 35089 28112 Face 2160 23103 12319 31829 Face 2161 41271 15531 3092 Face 2162 17444 25359 23102 Face 2163 33959 24191 46636 Face 2164 16962 31354 16321 Face 2165 28355 35693 13365 Face 2166 28355 47116 1085 Face 2167 32322 45145 11109 Face 2168 40301 36209 28340 Face 2169 113 27380 30059 Face 2170 47084 24951 20539 Face 2171 7636 19688 11939 Face 2172 42376 21272 32410 Face 2173 33511 28721 20493 Face 2174 23451 29929 14444 Face 2175 27472 1090 5739 Face 2176 33680 33373 16552 Face 2177 43378 44854 20508 Face 2178 44431 17612 27565 Face 2179 4687 24212 15488 Face 2180 33238 16310 38687 Face 2181 49530 4647 27380 Face 2182 7229 1365 27631 Face 2183 8454 29971 23650 Face 2184 40067 43082 8199 Face 2185 13277 38762 18955 Face 2186 29140 5217 8673 Face 2187 11453 32066 34420 Face 2188 47868 18466 24337 Face 2189 6658 49397 13431 Face 2190 6980 44817 28977 Face 2191 13921 47384 10448 Face 2192 13921 21847 49323 Face 2193 21714 21319 14884 Face 2194 8261 466 13926 Face 2195 13733 3516 20177 Face 2196 782 39060 45056 Face 2197 31640 32879 15063 Face 2198 23919 5646 9764 Face 2199 42146 12206 8840 Face 2200 15270 31677 13423 Face 2201 20226 22404 6720 Face 2202 18779 47727 28220 Face 2203 27439 17589 43047 Face 2204 5297 33009 26973 Face 2205 20375 10603 48255 Face 2206 20094 21752 7406 Face 2207 18066 26108 11636 Face 2208 20005 11739 15420 Face 2209 7867 6606 20270 Face 2210 20766 39892 43894 Face 2211 36152 1108 37522 Face 2212 26151 31593 49735 Face 2213 9447 25603 37880 Face 2214 14933 32901 13024 Face 2215 6363 12716 17510 Face 2216 41526 15386 8515 Face 2217 21186 12503 34976 Face 2218 12366 8073 21187 Face 2219 33923 14241 42439 Face 2220 11254 21292 47893 Face 2221 9880 30080 29310 Face 2222 9869 3327 29105 Face 2223 38875 31416 14615 Face 2224 170 16090 17937 Face 2225 17767 1115 25258 Face 2226 39274 24356 20675 Face 2227 18459 9692 39552 Face 2228 10432 41134 9692 Face 2229 22514 44305 31615 Face 2230 31699 23147 11162 Face 2231 44315 2060 16966 Face 2232 25549 47773 46342 Face 2233 45515 29139 14830 Face 2234 45515 18157 3153 Face 2235 45542 12207 6971 Face 2236 45167 31342 5712 Face 2237 12506 25838 6604 Face 2238 45542 6971 22505 Face 2239 22751 35213 28200 Face 2240 48634 29836 40528 Face 2241 45956 12781 12651 Face 2242 22520 9939 12781 Face 2243 2151 12052 40171 Face 2244 46734 35614 32741 Face 2245 47450 26908 18153 Face 2246 34059 5963 30296 Face 2247 15736 5825 19442 Face 2248 12806 31064 48794 Face 2249 17513 4803 30769 Face 2250 37110 12421 18406 Face 2251 42686 36840 23679 Face 2252 28272 48660 16551 Face 2253 49630 21243 21650 Face 2254 11597 15049 21243 Face 2255 43492 5401 26494 Face 2256 22051 31638 38558 Face 2257 21033 1131 13491 Face 2258 34544 16171 40210 Face 2259 34462 32422 3939 Face 2260 5886 37687 36860 Face 2261 49219 18846 28528 Face 2262 14754 43045 18872 Face 2263 14900 17673 46018 Face 2264 12842 35800 23556 Face 2265 12150 25628 15573 Face 2266 26098 15279 17440 Face 2267 20193 24123 32154 Face 2268 18528 21757 47345 Face 2269 42645 10986 36111 Face 2270 27186 21657 1137 Face 2271 4197 16222 29780 Face 2272 1605 44660 26940 Face 2273 2200 23169 15629 Face 2274 40415 15495 48656 Face 2275 20661 31585 12532 Face 2276 11557 16852 38074 Face 2277 31502 5548 15081 Face 2278 26602 22007 15225 Face 2279 1422 39456 36263 Face 2280 45457 22453 19853 Face 2281 17309 3084 43950 Face 2282 36828 44343 19736 Face 2283 40895 15145 26977 Face 2284 48918 45794 18995 Face 2285 19576 36504 27792 Face 2286 27164 15633 1145 Face 2287 48556 20456 15075 Face 2288 4302 39905 42009 Face 2289 2325 42491 8192 Face 2290 4822 27787 22011 Face 2291 34582 8022 18551 Face 2292 23940 48079 8021 Face 2293 45246 20822 27558 Face 2294 3478 28327 32927 Face 2295 49810 13555 30205 Face 2296 35674 5365 8225 Face 2297 21845 21363 44938 Face 2298 47343 13740 49684 Face 2299 28826 4717 3507 Face 2300 28715 8091 18994 Face 2301 30581 44412 48076 Face 2302 30581 20872 15613 Face 2303 47092 20235 9546 Face 2304 32444 40194 1154 Face 2305 11449 12140 27587 Face 2306 11449 34426 1155 Face 2307 34267 9100 1638 Face 2308 49061 31998 6728 Face 2309 14009 46392 16645 Face 2310 40103 37055 9698 Face 2311 25799 42318 30500 Face 2312 40103 46392 14009 Face 2313 19910 9691 31994 Face 2314 3979 48305 12785 Face 2315 34817 13014 8159 Face 2316 42122 15744 42334 Face 2317 13297 36731 35908 Face 2318 21325 12821 27671 Face 2319 27200 24718 20039 Face 2320 14705 324 8859 Face 2321 7193 49907 16874 Face 2322 7193 3248 14620 Face 2323 31198 22495 16874 Face 2324 33647 49599 31642 Face 2325 1814 30229 18217 Face 2326 24404 15585 1165 Face 2327 49133 18432 3695 Face 2328 10505 25158 33172 Face 2329 26597 16580 24392 Face 2330 24685 21599 11247 Face 2331 42352 32976 10502 Face 2332 9182 34700 28338 Face 2333 1198 33000 6709 Face 2334 340 6088 18316 Face 2335 41169 18316 35863 Face 2336 1169 32134 6572 Face 2337 36322 14019 14841 Face 2338 38708 14608 25828 Face 2339 29017 45233 24831 Face 2340 2900 32006 18539 Face 2341 34865 16327 32188 Face 2342 33687 19873 40073 Face 2343 8439 42964 39499 Face 2344 16608 22347 40988 Face 2345 19053 23720 40136 Face 2346 35719 34195 4836 Face 2347 2961 32715 15477 Face 2348 21288 14974 36428 Face 2349 34907 22851 15171 Face 2350 31252 19045 6029 Face 2351 13217 10541 13727 Face 2352 28530 46121 5247 Face 2353 13991 45630 44162 Face 2354 13274 10060 19680 Face 2355 24570 8916 3241 Face 2356 229 32162 18094 Face 2357 24955 25963 29229 Face 2358 15640 21734 11355 Face 2359 35438 39680 44052 Face 2360 10480 17125 24179 Face 2361 494 18939 44875 Face 2362 44602 49650 27743 Face 2363 24396 17028 39786 Face 2364 24396 46503 17028 Face 2365 20075 15803 30670 Face 2366 6294 37558 37819 Face 2367 14437 1471 7529 Face 2368 19481 18308 4080 Face 2369 29268 28806 512 Face 2370 12943 23078 5032 Face 2371 12279 48917 29258 Face 2372 21051 9576 46609 Face 2373 22484 27116 17633 Face 2374 47600 8665 39686 Face 2375 13078 1190 44750 Face 2376 36821 45975 28844 Face 2377 26313 17135 20682 Face 2378 9679 37154 20833 Face 2379 47618 14902 42519 Face 2380 20069 26670 47699 Face 2381 17360 18735 30022 Face 2382 19436 39849 41998 Face 2383 14106 30036 19857 Face 2384 29272 31952 43088 Face 2385 1196 36391 48020 Face 2386 46438 22019 1195 Face 2387 41388 8738 30043 Face 2388 26967 27442 33775 Face 2389 13746 20887 27589 Face 2390 28182 30395 23644 Face 2391 10405 10671 15687 Face 2392 32796 39924 19280 Face 2393 19325 20746 6844 Face 2394 36513 49403 15533 Face 2395 22811 36327 2444 Face 2396 15175 5138 21066 Face 2397 38880 17214 42367 Face 2398 30729 41061 2853 Face 2399 12171 22440 930 Face 2400 3903 14992 11812 Face 2401 29887 1203 45101 Face 2402 21971 11225 40298 Face 2403 32932 42786 14595 Face 2404 25765 8131 47778 Face 2405 27246 11432 26040 Face 2406 39085 23003 7730 Face 2407 6547 15221 29938 Face 2408 36675 39081 25622 Face 2409 24973 22917 7531 Face 2410 33006 31175 20890 Face 2411 20857 44423 36204 Face 2412 23498 10469 40932 Face 2413 14158 9699 24781 Face 2414 14043 13897 19275 Face 2415 22592 23702 13645 Face 2416 43687 20186 45829 Face 2417 35878 1211 11988 Face 2418 26431 5176 38772 Face 2419 32278 4038 24801 Face 2420 23500 15982 47419 Face 2421 24066 5451 14218 Face 2422 32996 27359 21807 Face 2423 2618 43329 9916 Face 2424 9292 23899 45416 Face 2425 17776 21404 9821 Face 2426 47702 15197 42131 Face 2427 45681 26835 39703 Face 2428 36300 20954 44092 Face 2429 17495 1217 34025 Face 2430 17495 32942 24475 Face 2431 36304 10517 29227 Face 2432 33376 48865 20719 Face 2433 37318 27416 47639 Face 2434 36318 6565 16227 Face 2435 6704 9165 17355 Face 2436 49601 22579 17470 Face 2437 14239 15699 31369 Face 2438 7223 16435 23516 Face 2439 29371 20144 43869 Face 2440 7277 23695 25229 Face 2441 880 24304 44347 Face 2442 5289 25958 7095 Face 2443 28548 37742 10255 Face 2444 36204 44423 31441 Face 2445 39179 4955 24084 Face 2446 32131 9181 24524 Face 2447 23390 46358 8475 Face 2448 20707 32719 20802 Face 2449 19062 48195 28595 Face 2450 21559 39026 5461 Face 2451 8563 9265 30683 Face 2452 13359 6343 21819 Face 2453 33111 25379 13930 Face 2454 32330 17682 16165 Face 2455 468 32332 19370 Face 2456 43455 37831 13603 Face 2457 21378 14328 26384 Face 2458 40308 10804 1231 Face 2459 41101 4773 39502 Face 2460 48897 16519 49386 Face 2461 43296 49256 32252 Face 2462 356 44013 37208 Face 2463 46520 9076 47677 Face 2464 32039 7182 1234 Face 2465 12505 48762 39313 Face 2466 44170 18861 45581 Face 2467 27541 43757 10646 Face 2468 6931 18469 7367 Face 2469 8810 9924 26055 Face 2470 13320 33664 3652 Face 2471 242 19623 27211 Face 2472 48107 19590 5070 Face 2473 39831 47185 23492 Face 2474 44612 49456 1239 Face 2475 21574 1240 48202 Face 2476 13201 8074 19576 Face 2477 18890 33344 14320 Face 2478 18890 23885 46180 Face 2479 22940 23894 44467 Face 2480 28166 47608 33139 Face 2481 23322 28781 29724 Face 2482 37444 10852 24192 Face 2483 18607 36874 10599 Face 2484 27068 31669 15945 Face 2485 5078 44325 11031 Face 2486 5078 18377 38752 Face 2487 27435 38024 45987 Face 2488 10771 9592 14584 Face 2489 20750 48132 1679 Face 2490 39646 10854 35983 Face 2491 35343 15122 21890 Face 2492 160 24109 42279 Face 2493 21582 49229 10236 Face 2494 30119 16841 38013 Face 2495 10936 15592 45067 Face 2496 8844 45625 7696 Face 2497 43693 11043 20958 Face 2498 12154 34231 46739 Face 2499 29522 11847 3131 Face 2500 8666 12555 32429 Face 2501 16523 3933 36106 Face 2502 29500 17216 11083 Face 2503 14645 34621 43911 Face 2504 31680 21103 47875 Face 2505 39486 8339 14027 Face 2506 40313 21768 30244 Face 2507 46750 4472 36728 Face 2508 13587 39322 18053 Face 2509 23602 25430 37462 Face 2510 25951 14546 39203 Face 2511 24972 20210 12200 Face 2512 35616 11835 25971 Face 2513 5272 48729 28452 Face 2514 38817 8069 5576 Face 2515 25688 13906 20125 Face 2516 19050 13214 8150 Face 2517 30395 12556 23644 Face 2518 27752 43321 34690 Face 2519 36472 18139 13798 Face 2520 32945 3097 16150 Face 2521 45779 38082 3099 Face 2522 33163 48684 40826 Face 2523 801 43593 16799 Face 2524 10913 17424 1264 Face 2525 43196 11678 21691 Face 2526 11138 8284 20298 Face 2527 14782 19698 28101 Face 2528 30649 1384 25794 Face 2529 44702 39877 32200 Face 2530 27748 27432 40792 Face 2531 19470 25574 33871 Face 2532 24296 31216 12174 Face 2533 28863 26654 49759 Face 2534 16916 33469 24593 Face 2535 41655 16530 28127 Face 2536 43186 4881 15430 Face 2537 42528 43264 18532 Face 2538 29761 6607 41256 Face 2539 5681 16308 8817 Face 2540 5681 37530 16308 Face 2541 11227 37775 29683 Face 2542 6936 24866 35539 Face 2543 20041 10021 23348 Face 2544 29595 7517 24791 Face 2545 18618 15388 29303 Face 2546 32831 28269 14177 Face 2547 1275 15395 5372 Face 2548 29863 40603 13707 Face 2549 33434 17281 49821 Face 2550 38461 26458 36865 Face 2551 9836 48828 38174 Face 2552 38144 13190 29583 Face 2553 5556 19406 34204 Face 2554 5556 22212 49009 Face 2555 4880 16375 26569 Face 2556 7070 31354 16962 Face 2557 37042 17993 47410 Face 2558 37042 9660 17993 Face 2559 3431 32735 10319 Face 2560 12080 41534 10382 Face 2561 4453 44112 28380 Face 2562 6416 22002 1283 Face 2563 22381 13320 3652 Face 2564 6670 44384 13708 Face 2565 31990 42624 8754 Face 2566 31990 24750 1285 Face 2567 28783 17578 3768 Face 2568 7896 964 45156 Face 2569 10038 30124 4459 Face 2570 10038 49552 4044 Face 2571 19431 5778 40737 Face 2572 27010 11098 48002 Face 2573 33061 14805 5922 Face 2574 41445 18420 11926 Face 2575 3890 9626 33246 Face 2576 20656 39884 24362 Face 2577 7163 42201 29279 Face 2578 25162 11049 40222 Face 2579 9203 12803 3804 Face 2580 32814 36570 46393 Face 2581 43350 45319 4394 Face 2582 40003 15610 28735 Face 2583 42201 47474 15834 Face 2584 13663 31791 44757 Face 2585 848 16811 34641 Face 2586 19024 29039 42443 Face 2587 9088 30940 34332 Face 2588 20333 31736 22234 Face 2589 44116 22806 44935 Face 2590 47470 24238 1297 Face 2591 33405 37151 23773 Face 2592 15063 38274 46509 Face 2593 21929 42731 26599 Face 2594 3329 31381 42731 Face 2595 27466 38097 21109 Face 2596 30408 11963 20070 Face 2597 5904 38308 7206 Face 2598 30716 42543 27994 Face 2599 27633 9426 40776 Face 2600 47290 26690 15368 Face 2601 22210 32054 40851 Face 2602 47400 21440 42092 Face 2603 1795 37474 12316 Face 2604 25238 42264 39602 Face 2605 19261 5844 8880 Face 2606 10935 37384 21949 Face 2607 11683 35826 14810 Face 2608 27203 11105 21158 Face 2609 11331 6353 17718 Face 2610 9956 21027 6353 Face 2611 18929 43286 6281 Face 2612 8550 24171 49308 Face 2613 8011 48697 30575 Face 2614 19743 14480 4184 Face 2615 23339 34473 33826 Face 2616 3508 16618 41915 Face 2617 17843 14026 32003 Face 2618 6702 17240 19633 Face 2619 25216 18221 7399 Face 2620 36942 36254 16887 Face 2621 38481 8237 11673 Face 2622 46030 36382 13211 Face 2623 12068 1314 38080 Face 2624 11439 6513 19906 Face 2625 7540 17936 34504 Face 2626 48781 48884 10951 Face 2627 24250 11886 15483 Face 2628 22457 34722 39704 Face 2629 19246 36998 1487 Face 2630 22530 36529 21839 Face 2631 29305 1318 18808 Face 2632 27837 37383 19880 Face 2633 37383 41466 24269 Face 2634 13960 1320 23779 Face 2635 42469 7641 22814 Face 2636 14354 41734 20855 Face 2637 20640 13255 27911 Face 2638 20640 29356 49651 Face 2639 19631 36551 38183 Face 2640 29042 24820 4511 Face 2641 33891 27491 49515 Face 2642 35044 28367 31049 Face 2643 19660 33612 28257 Face 2644 34901 31050 25961 Face 2645 20261 1798 41779 Face 2646 21719 36595 11519 Face 2647 22923 17128 37301 Face 2648 49251 13403 35493 Face 2649 42736 34963 653 Face 2650 23505 44603 10158 Face 2651 25636 14706 36085 Face 2652 31811 9106 3212 Face 2653 21028 25635 11117 Face 2654 39636 15894 8262 Face 2655 14511 23289 18922 Face 2656 14512 23636 33437 Face 2657 10635 31693 33637 Face 2658 35309 27941 24556 Face 2659 3909 28755 26637 Face 2660 24962 41493 17260 Face 2661 9711 39510 11152 Face 2662 49587 40469 1333 Face 2663 5050 29658 14244 Face 2664 8429 13834 1334 Face 2665 21730 19083 13852 Face 2666 14412 25710 32420 Face 2667 22553 23828 25203 Face 2668 11176 28077 18957 Face 2669 44940 24324 5016 Face 2670 10834 26972 22699 Face 2671 44024 1586 33755 Face 2672 28424 48963 19656 Face 2673 19569 37015 9560 Face 2674 14751 20619 23346 Face 2675 49509 30049 5679 Face 2676 11862 20849 30641 Face 2677 42609 8758 13998 Face 2678 17392 6906 42745 Face 2679 686 29616 45125 Face 2680 39041 7618 45471 Face 2681 30014 24849 21073 Face 2682 4413 17515 6492 Face 2683 33886 1344 43922 Face 2684 29987 42957 13820 Face 2685 17334 27494 37511 Face 2686 42238 46555 18054 Face 2687 37164 1346 8915 Face 2688 18054 46555 1346 Face 2689 40051 16448 3226 Face 2690 6215 49255 12635 Face 2691 44017 41387 13744 Face 2692 27362 37707 41340 Face 2693 40526 8613 23384 Face 2694 11383 39170 4254 Face 2695 19825 4662 29389 Face 2696 17949 31168 21195 Face 2697 23767 6766 1429 Face 2698 7833 4670 35749 Face 2699 19386 4808 19514 Face 2700 22776 32631 44132 Face 2701 15462 8495 38798 Face 2702 28161 46331 22625 Face 2703 4892 22355 32882 Face 2704 21705 27552 3014 Face 2705 22904 19589 42351 Face 2706 21705 3014 33944 Face 2707 45659 8629 4005 Face 2708 14691 17169 32146 Face 2709 27474 37074 45607 Face 2710 7687 17855 48143 Face 2711 39603 30101 377 Face 2712 31150 13317 21823 Face 2713 1740 24748 18774 Face 2714 30661 27171 39622 Face 2715 49474 1360 24080 Face 2716 19895 1177 24806 Face 2717 12554 10857 26084 Face 2718 31047 27017 39275 Face 2719 48865 27568 20719 Face 2720 25660 46339 9938 Face 2721 6241 17965 30954 Face 2722 41969 32592 49178 Face 2723 6232 47472 30954 Face 2724 27070 16204 12345 Face 2725 40440 17525 45452 Face 2726 33484 17472 17525 Face 2727 29886 8961 42660 Face 2728 37231 32941 9208 Face 2729 34104 20674 5510 Face 2730 45999 11237 6403 Face 2731 2937 32122 14135 Face 2732 38379 16883 44845 Face 2733 25659 9220 6606 Face 2734 43533 25986 28392 Face 2735 20632 24644 39180 Face 2736 29988 46728 33067 Face 2737 20935 29524 17746 Face 2738 33305 7381 22986 Face 2739 43997 32668 10242 Face 2740 3528 18948 49030 Face 2741 16495 27778 34747 Face 2742 13972 5430 24630 Face 2743 4448 19574 3485 Face 2744 23493 36956 26635 Face 2745 25988 1375 39647 Face 2746 8443 25446 18622 Face 2747 14777 45943 18674 Face 2748 14777 27890 45943 Face 2749 49852 41349 9220 Face 2750 5567 39166 45193 Face 2751 32088 26038 5116 Face 2752 34296 36578 26598 Face 2753 17278 25929 6384 Face 2754 34182 45724 23559 Face 2755 2989 49383 40077 Face 2756 31949 22186 16394 Face 2757 13470 20896 29395 Face 2758 34393 12909 23833 Face 2759 22431 20062 32748 Face 2760 31938 6657 40907 Face 2761 29137 7997 13215 Face 2762 13251 20063 14517 Face 2763 35583 18529 26439 Face 2764 46456 17827 49871 Face 2765 287 15072 7903 Face 2766 33603 7993 42284 Face 2767 1419 28726 23210 Face 2768 18005 15208 44791 Face 2769 24802 41761 27289 Face 2770 6388 10903 15004 Face 2771 13048 1388 6224 Face 2772 21351 4956 20335 Face 2773 11915 12640 22161 Face 2774 36927 10010 7236 Face 2775 45247 36927 7236 Face 2776 6445 17000 20655 Face 2777 34802 37692 16077 Face 2778 18271 25264 14644 Face 2779 34825 37548 7670 Face 2780 35656 16730 37847 Face 2781 8960 24200 49666 Face 2782 48 30074 17293 Face 2783 38749 12389 35233 Face 2784 9807 15380 40560 Face 2785 7941 14917 24594 Face 2786 17713 20443 18587 Face 2787 5593 1396 17710 Face 2788 19629 23970 7643 Face 2789 39441 46536 27173 Face 2790 25882 40424 17601 Face 2791 31456 24728 6811 Face 2792 25507 27618 1398 Face 2793 44726 12583 27928 Face 2794 27410 6889 48404 Face 2795 28879 14253 33702 Face 2796 26996 9960 34353 Face 2797 320 21311 14640 Face 2798 320 33572 21311 Face 2799 13985 44879 27854 Face 2800 32062 13767 36081 Face 2801 24819 49577 12558 Face 2802 14210 8935 30421 Face 2803 22171 12698 4999 Face 2804 38636 33275 1404 Face 2805 13359 19792 25412 Face 2806 23186 26948 24107 Face 2807 44333 26080 2384 Face 2808 13643 49288 7671 Face 2809 19999 34388 39049 Face 2810 38898 8647 39905 Face 2811 1407 12694 26022 Face 2812 4373 38712 21718 Face 2813 11065 29744 42812 Face 2814 26505 42518 27536 Face 2815 22008 29406 45148 Face 2816 40595 15265 1410 Face 2817 25908 4739 22361 Face 2818 48716 38292 36580 Face 2819 14779 16360 31084 Face 2820 9012 38976 25908 Face 2821 23314 39936 3897 Face 2822 49514 7543 42209 Face 2823 16051 10846 45291 Face 2824 42844 9543 33249 Face 2825 25429 14315 47242 Face 2826 39017 8308 26713 Face 2827 20130 34905 17133 Face 2828 22466 17006 10309 Face 2829 14580 44628 36339 Face 2830 9968 14754 36294 Face 2831 42399 43545 14553 Face 2832 42399 7635 23029 Face 2833 15520 34429 7635 Face 2834 17951 3331 29487 Face 2835 12342 1420 45174 Face 2836 28376 10876 33862 Face 2837 13076 18508 15243 Face 2838 239 41642 15686 Face 2839 25621 9734 39738 Face 2840 19799 39456 30065 Face 2841 20560 14694 24065 Face 2842 16251 44495 48866 Face 2843 41651 29263 13899 Face 2844 28347 21116 2438 Face 2845 565 21463 42673 Face 2846 48914 27543 21463 Face 2847 23248 10602 40949 Face 2848 44358 32256 33353 Face 2849 26420 40572 25778 Face 2850 41001 30247 27706 Face 2851 42394 1428 4878 Face 2852 22227 37894 34519 Face 2853 27701 37804 20722 Face 2854 16096 20878 6090 Face 2855 30206 38585 10819 Face 2856 29632 20675 24356 Face 2857 25518 20352 41831 Face 2858 35565 29715 5589 Face 2859 43701 32729 3556 Face 2860 23010 18055 1432 Face 2861 45161 36678 35060 Face 2862 10727 37492 13280 Face 2863 14293 24329 43908 Face 2864 8755 42981 27525 Face 2865 39901 21771 39004 Face 2866 18969 7241 47197 Face 2867 8230 36503 17864 Face 2868 20346 12209 1436 Face 2869 23156 27053 9997 Face 2870 6449 33457 25739 Face 2871 48926 16178 8382 Face 2872 20053 39219 18809 Face 2873 34748 36514 8100 Face 2874 13993 39777 30005 Face 2875 372 28531 47054 Face 2876 24766 35283 31167 Face 2877 16780 9460 2456 Face 2878 16780 46331 40250 Face 2879 14986 4795 27992 Face 2880 14986 47673 4795 Face 2881 36166 2614 18000 Face 2882 49644 15716 36188 Face 2883 12563 7765 26622 Face 2884 29049 46683 43256 Face 2885 49265 6202 35569 Face 2886 35240 37099 26652 Face 2887 19271 24353 43871 Face 2888 7365 24855 4979 Face 2889 32389 6202 49265 Face 2890 32564 39479 24525 Face 2891 44427 4756 23298 Face 2892 14067 34054 15263 Face 2893 35956 7611 24607 Face 2894 24003 16810 44781 Face 2895 5226 12735 16668 Face 2896 5225 6789 40608 Face 2897 19346 11753 10244 Face 2898 28626 30393 17665 Face 2899 26169 10884 15721 Face 2900 13197 20758 10884 Face 2901 1157 22784 34384 Face 2902 25140 15508 45937 Face 2903 24170 48279 22784 Face 2904 27962 28873 42759 Face 2905 33650 34919 24529 Face 2906 4504 27515 19061 Face 2907 20419 26298 12810 Face 2908 19385 39248 12881 Face 2909 33447 21794 2845 Face 2910 32538 19385 33789 Face 2911 20827 39536 1391 Face 2912 18989 6351 16548 Face 2913 18990 1459 45586 Face 2914 11559 9617 25543 Face 2915 29030 24943 17830 Face 2916 19256 40327 13371 Face 2917 33662 7217 45754 Face 2918 21907 10826 1461 Face 2919 31971 16855 24344 Face 2920 41391 1461 27632 Face 2921 6518 45906 22910 Face 2922 17888 32731 15005 Face 2923 6733 11469 8656 Face 2924 241 13882 41607 Face 2925 10571 11080 32939 Face 2926 4551 21223 33193 Face 2927 26938 16952 42084 Face 2928 39695 24767 16221 Face 2929 14199 15357 31014 Face 2930 5573 19415 45554 Face 2931 43222 36119 10342 Face 2932 43803 17617 22201 Face 2933 17505 24774 6725 Face 2934 30181 35052 21282 Face 2935 27886 2598 22570 Face 2936 18000 17563 29443 Face 2937 2821 22552 15222 Face 2938 35925 26532 6898 Face 2939 26798 32570 5208 Face 2940 24712 21779 21332 Face 2941 1472 27918 38234 Face 2942 1472 26796 27918 Face 2943 12760 29971 8454 Face 2944 17597 30133 1638 Face 2945 34921 43211 7043 Face 2946 47158 46888 26739 Face 2947 26580 19478 10928 Face 2948 18787 48993 25304 Face 2949 35627 1477 45448 Face 2950 35627 19484 42403 Face 2951 43386 24171 33166 Face 2952 14527 23430 40615 Face 2953 39879 1479 41400 Face 2954 7401 11708 19376 Face 2955 13696 21400 10458 Face 2956 34675 18815 43104 Face 2957 41454 13112 23691 Face 2958 22438 37458 13726 Face 2959 8238 20607 34763 Face 2960 34659 16073 19742 Face 2961 4663 17066 25055 Face 2962 45141 6399 22880 Face 2963 6507 43446 7692 Face 2964 45668 46491 24401 Face 2965 40631 1485 31632 Face 2966 20358 9710 30459 Face 2967 12745 19681 35955 Face 2968 21951 9158 31228 Face 2969 24197 34198 47260 Face 2970 39095 29415 44943 Face 2971 25992 40074 23494 Face 2972 30447 10263 9532 Face 2973 12330 15842 26096 Face 2974 12330 19267 15842 Face 2975 29424 4022 1038 Face 2976 16269 6582 33428 Face 2977 31043 1491 20691 Face 2978 26945 392 20615 Face 2979 40093 21973 21171 Face 2980 23359 35629 10891 Face 2981 47918 34361 31262 Face 2982 39061 25142 12418 Face 2983 28604 5270 39691 Face 2984 174 11762 43912 Face 2985 29525 3647 19384 Face 2986 28002 6692 37371 Face 2987 29011 44961 9510 Face 2988 23952 40655 17709 Face 2989 44850 26481 17709 Face 2990 2 34021 29525 Face 2991 2363 31361 16813 Face 2992 29019 18125 12825 Face 2993 28759 23880 29672 Face 2994 22535 45259 34584 Face 2995 34941 23228 33472 Face 2996 25590 2349 35765 Face 2997 144 25928 27087 Face 2998 45588 15503 41871 Face 2999 34286 15487 26615 Face 3000 40775 47031 2596 Face 3001 36519 47412 41109 Face 3002 14549 24818 10732 Face 3003 15501 15620 31307 Face 3004 40049 6143 1504 Face 3005 27351 30221 14849 Face 3006 45228 9906 28075 Face 3007 43417 7992 39059 Face 3008 30197 31581 41150 Face 3009 27351 15466 32863 Face 3010 48175 6879 20397 Face 3011 32479 35418 37137 Face 3012 41879 14665 20577 Face 3013 17729 39094 27298 Face 3014 29743 43926 24501 Face 3015 14405 23719 7090 Face 3016 22504 35418 32285 Face 3017 21472 28482 39813 Face 3018 1510 15598 38412 Face 3019 8752 16649 49321 Face 3020 12553 23190 20854 Face 3021 24258 21213 28767 Face 3022 6290 39226 46894 Face 3023 28034 43016 28033 Face 3024 19336 4603 37541 Face 3025 10082 28434 41802 Face 3026 20642 38228 23655 Face 3027 22390 1516 41547 Face 3028 41454 8626 29663 Face 3029 22887 40416 17450 Face 3030 20173 11359 7467 Face 3031 21770 45426 44297 Face 3032 12607 35764 4975 Face 3033 42533 18734 19565 Face 3034 36015 6713 24253 Face 3035 12824 27580 40958 Face 3036 16582 42189 22443 Face 3037 26712 31555 19419 Face 3038 425 36670 48302 Face 3039 39958 8506 4168 Face 3040 16239 39898 16182 Face 3041 20667 46315 39512 Face 3042 22050 33157 15514 Face 3043 21530 5610 38107 Face 3044 36968 11339 27231 Face 3045 28592 36524 33659 Face 3046 27134 26125 13426 Face 3047 26370 29402 14479 Face 3048 32454 38097 14583 Face 3049 8504 28701 11096 Face 3050 18798 40986 13464 Face 3051 42846 1528 39920 Face 3052 10227 19356 42845 Face 3053 12080 34259 31185 Face 3054 200 10808 29991 Face 3055 44921 32026 5246 Face 3056 11357 19565 36309 Face 3057 7898 30370 31652 Face 3058 20638 4743 30370 Face 3059 27660 21173 15561 Face 3060 46753 9219 27574 Face 3061 782 25142 39061 Face 3062 44293 26260 28428 Face 3063 44675 20721 9021 Face 3064 619 33092 22872 Face 3065 28412 37077 14115 Face 3066 28412 38654 31090 Face 3067 7856 1536 48267 Face 3068 18573 24323 3993 Face 3069 19956 23238 33120 Face 3070 8279 31236 20113 Face 3071 18636 41364 13560 Face 3072 15696 34948 22026 Face 3073 34126 1539 18234 Face 3074 45663 48253 25275 Face 3075 16736 3499 20898 Face 3076 10871 41411 28830 Face 3077 13598 46169 8601 Face 3078 43822 24725 23771 Face 3079 161 29413 17921 Face 3080 43424 19737 49819 Face 3081 11418 8295 15967 Face 3082 20288 37740 48270 Face 3083 41919 36521 12665 Face 3084 25386 35601 46629 Face 3085 49930 18453 25827 Face 3086 44689 23120 18453 Face 3087 32820 7605 27366 Face 3088 8804 2995 22513 Face 3089 21733 44367 39977 Face 3090 46219 42691 43705 Face 3091 25994 24591 3085 Face 3092 49712 29313 39215 Face 3093 18087 43759 45669 Face 3094 27286 46363 37490 Face 3095 19231 29133 11574 Face 3096 21168 13459 48732 Face 3097 26668 15816 41940 Face 3098 8754 34937 18843 Face 3099 8784 11988 35033 Face 3100 18594 24425 31254 Face 3101 12105 30619 20510 Face 3102 17692 6903 37199 Face 3103 13680 16549 35699 Face 3104 15882 22646 28861 Face 3105 47906 38527 10955 Face 3106 24462 23183 8596 Face 3107 43785 31861 32159 Face 3108 24098 24507 27936 Face 3109 32632 12334 37133 Face 3110 6217 30444 13646 Face 3111 24892 1558 35593 Face 3112 8776 33916 46792 Face 3113 36826 10004 5100 Face 3114 28541 30263 45544 Face 3115 7420 31317 32207 Face 3116 14194 26880 16075 Face 3117 8584 24224 48475 Face 3118 31507 22071 25539 Face 3119 31471 39405 2213 Face 3120 38928 24748 1562 Face 3121 12607 45644 35763 Face 3122 17730 42460 18683 Face 3123 32637 23695 7277 Face 3124 17528 12697 31753 Face 3125 29827 11344 25477 Face 3126 44432 37308 13032 Face 3127 23279 26555 32386 Face 3128 26696 34871 21815 Face 3129 21314 12552 43278 Face 3130 28409 7872 26867 Face 3131 13392 46384 16014 Face 3132 34784 20148 1568 Face 3133 1079 5457 19876 Face 3134 1079 9800 32916 Face 3135 8901 42704 30141 Face 3136 29539 30526 4000 Face 3137 8837 37708 49990 Face 3138 3304 36664 13173 Face 3139 13547 31677 15270 Face 3140 22253 26527 27903 Face 3141 22994 34197 48525 Face 3142 33921 16318 41843 Face 3143 39074 25793 23530 Face 3144 39045 29792 40730 Face 3145 17349 31277 33151 Face 3146 7300 17991 30530 Face 3147 2728 12219 27127 Face 3148 22172 32993 49892 Face 3149 49128 24075 15476 Face 3150 48816 12368 28981 Face 3151 19095 8459 37010 Face 3152 41805 45111 19521 Face 3153 46233 12609 26525 Face 3154 33584 47219 14846 Face 3155 30403 25218 10788 Face 3156 27495 16105 1580 Face 3157 16297 27495 1580 Face 3158 48767 11643 27078 Face 3159 36134 8373 43376 Face 3160 3395 44572 19624 Face 3161 13097 41203 20412 Face 3162 13097 38489 7946 Face 3163 29966 41456 36366 Face 3164 17415 43154 17264 Face 3165 21688 46110 33864 Face 3166 26187 13462 46111 Face 3167 8246 24937 30512 Face 3168 40531 21358 40987 Face 3169 28731 42594 35941 Face 3170 44492 81 22391 Face 3171 36892 11179 25214 Face 3172 4004 26401 39280 Face 3173 4095 46930 26488 Face 3174 37764 4756 44427 Face 3175 18901 12013 25046 Face 3176 8189 27830 24017 Face 3177 8316 48026 49487 Face 3178 35258 26966 4829 Face 3179 7441 26879 24936 Face 3180 32128 24345 19822 Face 3181 16534 41768 35023 Face 3182 41590 26893 20108 Face 3183 37143 27433 10796 Face 3184 20523 47270 29586 Face 3185 30867 23058 9921 Face 3186 49859 2690 36295 Face 3187 31871 28688 1335 Face 3188 13293 11559 14121 Face 3189 30970 44355 9839 Face 3190 19442 25343 44355 Face 3191 9533 18810 4698 Face 3192 48011 33880 39195 Face 3193 20776 38946 14203 Face 3194 22855 33116 7791 Face 3195 21550 40496 37354 Face 3196 21550 19326 40496 Face 3197 39782 31728 7414 Face 3198 27093 28013 15723 Face 3199 17131 14411 40693 Face 3200 10614 49239 5653 Face 3201 17043 9574 42072 Face 3202 22061 28616 6439 Face 3203 7018 14786 4180 Face 3204 44215 9574 34155 Face 3205 40608 12735 18664 Face 3206 6011 15479 40503 Face 3207 1607 17950 27856 Face 3208 18067 23394 44674 Face 3209 18066 40107 26108 Face 3210 36248 17950 20006 Face 3211 5415 18996 29714 Face 3212 10015 25414 27026 Face 3213 27654 1609 13730 Face 3214 47535 41397 12031 Face 3215 6513 44010 22968 Face 3216 13493 38354 17018 Face 3217 43364 34005 6244 Face 3218 35214 18236 41088 Face 3219 12540 1612 34767 Face 3220 35214 41088 34936 Face 3221 13831 19186 35433 Face 3222 13831 14084 3947 Face 3223 22072 16648 37236 Face 3224 30176 27015 41562 Face 3225 7721 14440 31866 Face 3226 37004 6976 38155 Face 3227 37630 19768 10737 Face 3228 35193 25448 16135 Face 3229 2849 28229 7817 Face 3230 10 14798 38824 Face 3231 48540 22758 43616 Face 3232 8402 16401 38521 Face 3233 20935 46072 29524 Face 3234 15015 41768 16534 Face 3235 14222 9560 30409 Face 3236 42559 1647 23510 Face 3237 17883 42447 18920 Face 3238 33774 41705 42448 Face 3239 43633 12561 31772 Face 3240 42597 15427 27585 Face 3241 25280 15962 27884 Face 3242 14439 49080 22653 Face 3243 5284 31668 10156 Face 3244 36610 24118 7087 Face 3245 26873 37852 11620 Face 3246 374 11736 31395 Face 3247 45887 13432 21217 Face 3248 8600 7309 41981 Face 3249 18318 16452 43445 Face 3250 5478 45648 47598 Face 3251 17195 24898 31676 Face 3252 12416 2194 40787 Face 3253 13334 42133 13335 Face 3254 13334 3552 32966 Face 3255 23711 25307 14679 Face 3256 44469 10113 1630 Face 3257 21700 41728 2419 Face 3258 21700 29812 41728 Face 3259 31486 40656 32698 Face 3260 36198 19894 11057 Face 3261 6963 12489 30433 Face 3262 26277 35114 39276 Face 3263 15137 4435 12905 Face 3264 19174 3569 34632 Face 3265 22501 1635 4869 Face 3266 25501 6268 1635 Face 3267 33122 20706 11093 Face 3268 19501 45197 42582 Face 3269 49598 40475 30266 Face 3270 4578 32213 19806 Face 3271 32559 28696 39320 Face 3272 12393 5422 28696 Face 3273 9359 24447 1640 Face 3274 21785 29867 42925 Face 3275 32588 1640 13701 Face 3276 17983 34810 22507 Face 3277 22276 5672 6821 Face 3278 36323 19559 1641 Face 3279 8838 34574 27825 Face 3280 32123 10179 18723 Face 3281 41783 21503 3963 Face 3282 41727 11583 31523 Face 3283 19484 42012 42403 Face 3284 25236 37291 20871 Face 3285 6980 36743 31201 Face 3286 32689 6318 9190 Face 3287 18926 17186 20737 Face 3288 18793 8445 24015 Face 3289 43858 25855 31816 Face 3290 47524 4274 19645 Face 3291 13590 39895 22042 Face 3292 48927 29006 16965 Face 3293 13895 12647 46232 Face 3294 34295 16529 5846 Face 3295 18928 9699 47790 Face 3296 10636 8183 49502 Face 3297 160 21693 32779 Face 3298 31953 14564 21693 Face 3299 18414 12987 8793 Face 3300 18414 4304 12987 Face 3301 73 12212 42397 Face 3302 16961 34615 15980 Face 3303 32870 15407 19460 Face 3304 21667 18480 24391 Face 3305 20315 26182 23694 Face 3306 37023 8791 21560 Face 3307 22933 32353 13366 Face 3308 9040 45783 31516 Face 3309 7666 20126 41181 Face 3310 15509 26073 43192 Face 3311 32233 5106 20757 Face 3312 7322 41402 38534 Face 3313 44826 30079 21764 Face 3314 5048 41693 35515 Face 3315 43752 21561 6167 Face 3316 24654 17519 21438 Face 3317 43752 10337 21561 Face 3318 20104 38069 25657 Face 3319 14304 25744 10141 Face 3320 34043 48824 16697 Face 3321 21717 43041 34444 Face 3322 6460 46924 33023 Face 3323 42302 18491 26487 Face 3324 40631 8823 24162 Face 3325 47324 1665 27883 Face 3326 16842 3370 35710 Face 3327 12285 48607 23996 Face 3328 36351 28669 8435 Face 3329 16784 19702 35205 Face 3330 26644 38854 1667 Face 3331 14733 19063 30924 Face 3332 8116 24897 37285 Face 3333 4916 10908 26676 Face 3334 5530 3631 35021 Face 3335 23032 29353 17704 Face 3336 47328 29804 1670 Face 3337 15075 19140 48556 Face 3338 31069 19905 39702 Face 3339 1266 1672 9071 Face 3340 23649 25455 12461 Face 3341 11794 29729 26592 Face 3342 23777 44780 1673 Face 3343 14889 36579 3401 Face 3344 11283 29372 38285 Face 3345 10278 47164 29963 Face 3346 30078 42309 9468 Face 3347 47051 8017 18915 Face 3348 33462 6078 27002 Face 3349 23697 10192 13670 Face 3350 47468 1194 45890 Face 3351 36695 35390 47368 Face 3352 21331 19945 13522 Face 3353 4026 12775 9769 Face 3354 46351 20750 1679 Face 3355 5320 46136 3380 Face 3356 34718 4026 9769 Face 3357 30728 5320 44037 Face 3358 41128 24537 25926 Face 3359 20130 25168 34904 Face 3360 43080 16350 25168 Face 3361 4048 1683 14760 Face 3362 13125 4695 41893 Face 3363 25237 20582 4962 Face 3364 45968 5919 12328 Face 3365 10122 4222 24999 Face 3366 30586 37885 4222 Face 3367 10104 13867 7444 Face 3368 3301 14855 41135 Face 3369 481 39910 32874 Face 3370 48700 20119 47257 Face 3371 32394 8414 18614 Face 3372 29631 22243 45143 Face 3373 45022 20496 16242 Face 3374 9445 39798 13712 Face 3375 148 21916 7316 Face 3376 40763 34464 15174 Face 3377 1029 40403 12059 Face 3378 5966 24623 44897 Face 3379 35582 2144 19119 Face 3380 28742 12963 5309 Face 3381 27889 22970 41248 Face 3382 16240 2919 11826 Face 3383 15983 1694 28135 Face 3384 26427 42197 15318 Face 3385 2281 29553 44562 Face 3386 35005 20396 14224 Face 3387 26615 41021 7478 Face 3388 34060 14996 16945 Face 3389 22058 28437 9991 Face 3390 35396 28448 27064 Face 3391 8082 10358 10133 Face 3392 3343 10170 18708 Face 3393 9603 33869 27299 Face 3394 9603 38837 1699 Face 3395 22725 17023 24265 Face 3396 30863 19837 15915 Face 3397 507 35022 15557 Face 3398 11965 4248 42539 Face 3399 37751 11965 42539 Face 3400 28560 2696 48853 Face 3401 35542 17931 5783 Face 3402 26942 13231 15974 Face 3403 14294 16084 25409 Face 3404 647 16615 32567 Face 3405 40421 19926 33010 Face 3406 40421 31286 19926 Face 3407 41316 37743 15582 Face 3408 27979 24571 37743 Face 3409 10485 1707 30963 Face 3410 923 15553 32313 Face 3411 30223 41447 38335 Face 3412 12075 48487 22899 Face 3413 27360 1709 7002 Face 3414 14614 41321 33531 Face 3415 10017 27360 7002 Face 3416 41886 19700 1710 Face 3417 28207 37796 10423 Face 3418 6534 15845 43188 Face 3419 30573 38036 39668 Face 3420 15853 36303 1712 Face 3421 47295 16966 2060 Face 3422 35247 15380 9807 Face 3423 23739 41780 18605 Face 3424 25941 41279 14513 Face 3425 42997 17990 25128 Face 3426 6909 14750 38116 Face 3427 21723 20839 4086 Face 3428 28159 22905 7994 Face 3429 32681 38415 8676 Face 3430 41084 32675 1717 Face 3431 41084 14267 32675 Face 3432 20471 9438 49346 Face 3433 46384 19166 16014 Face 3434 18442 35171 27579 Face 3435 46858 22352 11867 Face 3436 2909 8644 48851 Face 3437 14690 38803 29564 Face 3438 27927 7213 11363 Face 3439 16288 37604 10277 Face 3440 48621 37854 41312 Face 3441 2440 18961 29893 Face 3442 33309 18754 20379 Face 3443 32135 48376 32205 Face 3444 17610 25267 48376 Face 3445 47211 40041 18450 Face 3446 49920 26102 32673 Face 3447 39170 23294 4254 Face 3448 25812 40338 20322 Face 3449 31310 41251 34354 Face 3450 10450 37603 10254 Face 3451 34061 18945 11930 Face 3452 20997 36463 43914 Face 3453 28761 15929 24872 Face 3454 49757 769 24307 Face 3455 35885 3651 1084 Face 3456 37235 38346 16967 Face 3457 42168 9350 31405 Face 3458 43144 10657 9350 Face 3459 48891 14173 36260 Face 3460 7251 18351 34734 Face 3461 3051 48229 26158 Face 3462 30365 23563 6048 Face 3463 31843 46559 36066 Face 3464 19632 26528 13830 Face 3465 40633 12112 14216 Face 3466 33967 7846 43695 Face 3467 45420 16300 14199 Face 3468 21387 6012 44678 Face 3469 7550 49302 28737 Face 3470 7550 13987 5915 Face 3471 8138 16984 26052 Face 3472 23722 14371 44729 Face 3473 5291 48015 5660 Face 3474 16719 907 21769 Face 3475 35609 1740 18774 Face 3476 8619 7564 42169 Face 3477 38230 40590 13992 Face 3478 20092 47747 15878 Face 3479 7896 41644 964 Face 3480 21923 30726 48446 Face 3481 21745 46320 30674 Face 3482 22189 43830 35580 Face 3483 21018 4929 42641 Face 3484 21018 11792 35115 Face 3485 44347 36921 880 Face 3486 35379 44809 7069 Face 3487 28569 4444 16788 Face 3488 21591 33108 34838 Face 3489 19820 48380 1744 Face 3490 23357 14363 48913 Face 3491 31937 28139 37292 Face 3492 15479 6011 17078 Face 3493 47539 1749 28252 Face 3494 31218 9738 41189 Face 3495 545 7632 28253 Face 3496 49485 23491 10050 Face 3497 12207 37580 6971 Face 3498 2012 36934 16931 Face 3499 24816 20807 13910 Face 3500 47965 21644 13105 Face 3501 334 40444 11186 Face 3502 29305 18808 41928 Face 3503 17405 36838 40523 Face 3504 42655 21972 7890 Face 3505 18252 47222 9970 Face 3506 41287 21510 28724 Face 3507 18922 41744 13865 Face 3508 11413 43015 21713 Face 3509 12321 35080 885 Face 3510 6170 41111 25250 Face 3511 9027 42954 31886 Face 3512 35554 42078 13689 Face 3513 398 26994 38288 Face 3514 42045 13568 18254 Face 3515 10998 10150 37682 Face 3516 8585 30278 35344 Face 3517 9640 32104 25086 Face 3518 40942 49916 29692 Face 3519 25900 15796 1995 Face 3520 25683 30497 4938 Face 3521 13473 6838 32709 Face 3522 43187 15200 8973 Face 3523 3820 5266 21746 Face 3524 35112 4720 12088 Face 3525 9749 26694 14860 Face 3526 9750 26828 6295 Face 3527 28053 32072 40111 Face 3528 8210 34599 23632 Face 3529 34988 17885 27987 Face 3530 20984 25160 15963 Face 3531 11076 26744 9254 Face 3532 46109 27702 43601 Face 3533 6976 31251 38155 Face 3534 35053 31896 26003 Face 3535 24428 34553 45810 Face 3536 13886 30051 33988 Face 3537 14340 42665 38992 Face 3538 24256 33502 7490 Face 3539 41947 18499 25899 Face 3540 29195 4360 26143 Face 3541 29622 27742 15761 Face 3542 31688 17412 49681 Face 3543 9202 23465 26734 Face 3544 17512 26103 38775 Face 3545 41100 13768 6165 Face 3546 48520 23216 1775 Face 3547 9909 48250 26610 Face 3548 31120 45855 35192 Face 3549 38012 7919 21741 Face 3550 16024 46327 25864 Face 3551 37395 42384 30039 Face 3552 4503 10982 15713 Face 3553 49200 29290 47066 Face 3554 33379 10069 39349 Face 3555 47394 22938 33367 Face 3556 28 10679 41606 Face 3557 6931 47312 14877 Face 3558 33519 28987 14428 Face 3559 25301 19314 43312 Face 3560 11892 34444 43041 Face 3561 24820 13254 44183 Face 3562 40137 9834 23036 Face 3563 4204 23460 21649 Face 3564 4204 33181 23460 Face 3565 38888 22641 11578 Face 3566 10232 24858 10804 Face 3567 48029 1786 12296 Face 3568 6648 26833 20042 Face 3569 15214 1787 28104 Face 3570 38755 49123 20194 Face 3571 431 13644 25368 Face 3572 47641 1787 15214 Face 3573 6206 3443 49177 Face 3574 35131 26491 1789 Face 3575 23873 40922 30215 Face 3576 9486 45949 19348 Face 3577 36948 25465 13364 Face 3578 44248 24184 32846 Face 3579 27468 36772 16532 Face 3580 27441 38370 8440 Face 3581 34172 27469 3094 Face 3582 8123 13364 18893 Face 3583 45656 39040 22292 Face 3584 7404 20416 45991 Face 3585 12533 1795 47681 Face 3586 25238 37474 1795 Face 3587 19381 24174 40454 Face 3588 17446 48545 10669 Face 3589 6228 36550 43982 Face 3590 26498 24210 35459 Face 3591 23555 11519 40789 Face 3592 23555 42973 11519 Face 3593 11455 32852 19591 Face 3594 33307 10778 14488 Face 3595 11393 16358 38852 Face 3596 32748 20062 41926 Face 3597 19958 7348 26559 Face 3598 20867 14488 22133 Face 3599 15424 31874 30044 Face 3600 39673 20724 1802 Face 3601 26618 32165 4354 Face 3602 1804 19006 37351 Face 3603 44312 1804 37351 Face 3604 28036 8705 1804 Face 3605 672 40172 33476 Face 3606 31607 48063 1805 Face 3607 41565 7264 32435 Face 3608 47529 20027 6525 Face 3609 28983 8033 16851 Face 3610 41086 24101 27928 Face 3611 14983 39352 33489 Face 3612 3795 6998 25966 Face 3613 32173 12160 17432 Face 3614 890 26325 27422 Face 3615 10779 15934 44436 Face 3616 10780 18205 48244 Face 3617 20429 30674 46320 Face 3618 13489 45015 1811 Face 3619 748 10211 3852 Face 3620 11085 4806 21281 Face 3621 49766 9457 43853 Face 3622 23357 27419 9457 Face 3623 33452 13978 17369 Face 3624 6239 30229 1814 Face 3625 41478 4496 30228 Face 3626 15617 25098 13652 Face 3627 9798 21365 6589 Face 3628 16758 25427 27011 Face 3629 34073 16694 24238 Face 3630 389 3058 26106 Face 3631 14685 36333 27089 Face 3632 23778 41383 35560 Face 3633 5961 43756 48640 Face 3634 19509 26729 34281 Face 3635 29022 19193 13241 Face 3636 46290 20611 19193 Face 3637 25514 24288 40044 Face 3638 10769 42487 29012 Face 3639 29343 44802 38745 Face 3640 9603 27299 45545 Face 3641 3092 3102 41271 Face 3642 38563 22281 6946 Face 3643 46763 22691 16697 Face 3644 49212 26281 38369 Face 3645 15350 45311 39698 Face 3646 8067 29041 1825 Face 3647 26959 20727 10372 Face 3648 35914 20612 9476 Face 3649 33366 10089 27352 Face 3650 14674 13180 26001 Face 3651 21995 26001 13180 Face 3652 37181 14307 10089 Face 3653 47351 8377 8393 Face 3654 30103 8150 13214 Face 3655 1831 17114 22754 Face 3656 16017 39471 12788 Face 3657 35420 16017 13976 Face 3658 35420 39472 16017 Face 3659 41411 20037 28830 Face 3660 14704 48808 7462 Face 3661 23275 46471 5463 Face 3662 7060 25637 46618 Face 3663 20149 28677 22115 Face 3664 48462 2438 21116 Face 3665 348 8472 21175 Face 3666 9018 15098 17551 Face 3667 11267 38717 22929 Face 3668 41673 29951 15851 Face 3669 35147 18076 43055 Face 3670 32963 23403 46939 Face 3671 31248 14223 30398 Face 3672 321 17782 41176 Face 3673 26331 15324 45503 Face 3674 22475 25260 28683 Face 3675 19745 1840 29433 Face 3676 19745 35973 1840 Face 3677 34999 44641 2746 Face 3678 46623 13863 8198 Face 3679 22681 6689 21807 Face 3680 23469 21208 24550 Face 3681 15681 32304 37567 Face 3682 15681 12677 38889 Face 3683 15839 17564 3986 Face 3684 7046 20264 9536 Face 3685 6528 1845 8114 Face 3686 37913 4996 16941 Face 3687 9556 36311 27010 Face 3688 31729 13634 6744 Face 3689 21069 27922 31256 Face 3690 19009 39621 35963 Face 3691 33998 12762 8548 Face 3692 41185 716 46482 Face 3693 13807 40855 8267 Face 3694 1436 12209 34531 Face 3695 41984 11574 34834 Face 3696 29541 46836 19199 Face 3697 17338 44533 33753 Face 3698 20549 46499 43717 Face 3699 15546 35057 27165 Face 3700 11810 35604 35322 Face 3701 116 14527 25851 Face 3702 10515 24519 17716 Face 3703 17113 6988 4393 Face 3704 12954 8651 18703 Face 3705 6321 44220 27003 Face 3706 48660 11897 44220 Face 3707 27075 39942 12718 Face 3708 38904 6058 34048 Face 3709 23107 14643 37466 Face 3710 8886 2334 22898 Face 3711 37961 21053 3150 Face 3712 26650 13979 31352 Face 3713 29277 7375 3653 Face 3714 29174 28526 23120 Face 3715 15752 39757 5686 Face 3716 28405 34439 10892 Face 3717 8259 7789 42949 Face 3718 8259 14774 7789 Face 3719 8832 15921 12470 Face 3720 22023 11538 35735 Face 3721 98 33945 24216 Face 3722 6577 43953 30934 Face 3723 19042 13060 31337 Face 3724 35296 2648 31838 Face 3725 30394 9317 20038 Face 3726 30394 12402 30925 Face 3727 49678 22536 17008 Face 3728 35461 38659 22824 Face 3729 434 17762 41786 Face 3730 9102 8034 41851 Face 3731 26585 31510 21978 Face 3732 10542 3985 3071 Face 3733 8484 41501 26034 Face 3734 14659 11706 25787 Face 3735 21680 37228 21413 Face 3736 21680 8595 47294 Face 3737 46453 49658 27821 Face 3738 27067 13593 15936 Face 3739 28268 44434 7916 Face 3740 45140 26017 36107 Face 3741 18873 43522 25476 Face 3742 23909 44299 14748 Face 3743 16018 26347 8499 Face 3744 4016 49969 9889 Face 3745 12708 47838 29410 Face 3746 17091 30417 42651 Face 3747 22453 12585 19853 Face 3748 32413 8573 1876 Face 3749 11050 34408 43285 Face 3750 10565 32125 25285 Face 3751 39806 6418 46910 Face 3752 3936 19902 1878 Face 3753 45567 37645 12947 Face 3754 14281 2761 44230 Face 3755 19658 4128 21333 Face 3756 7497 16035 16974 Face 3757 24270 11189 13565 Face 3758 24927 13802 28140 Face 3759 49690 7253 16896 Face 3760 534 46223 41285 Face 3761 35685 1883 25101 Face 3762 16942 12514 30200 Face 3763 24577 29915 13977 Face 3764 34875 6418 42110 Face 3765 26927 4249 15160 Face 3766 11536 14653 30171 Face 3767 24512 5567 45193 Face 3768 48297 39892 43910 Face 3769 26244 3140 36030 Face 3770 23296 16485 45310 Face 3771 27968 15525 40624 Face 3772 35793 15269 20348 Face 3773 8827 5731 22949 Face 3774 16544 24285 18788 Face 3775 42496 43042 12707 Face 3776 3989 26629 10820 Face 3777 43 13236 42857 Face 3778 43 46604 13236 Face 3779 35117 7481 20904 Face 3780 24061 19075 30366 Face 3781 36041 29467 38253 Face 3782 36041 5247 46121 Face 3783 36262 10448 47384 Face 3784 13325 28476 15312 Face 3785 13994 26501 48566 Face 3786 12779 31426 34364 Face 3787 38479 30178 32355 Face 3788 15037 20870 26409 Face 3789 22230 42029 9047 Face 3790 27225 224 5757 Face 3791 35883 19771 34813 Face 3792 31148 22789 9724 Face 3793 15209 19195 5470 Face 3794 33863 13503 17974 Face 3795 25655 21128 19962 Face 3796 19402 7308 27482 Face 3797 30634 15476 24075 Face 3798 9979 26740 18817 Face 3799 22005 29814 16623 Face 3800 6228 43982 27714 Face 3801 27588 42560 17916 Face 3802 7295 33094 41170 Face 3803 5988 28007 44616 Face 3804 40058 40546 26472 Face 3805 1385 45369 17407 Face 3806 45952 33164 20500 Face 3807 13607 34917 31243 Face 3808 35274 28584 17226 Face 3809 14926 35635 2803 Face 3810 48222 6780 44034 Face 3811 19560 19813 24374 Face 3812 19560 24144 19813 Face 3813 36397 13157 3149 Face 3814 20334 48122 35592 Face 3815 21635 47759 48145 Face 3816 6666 35452 25546 Face 3817 18963 13425 42253 Face 3818 10622 43563 49095 Face 3819 3833 10627 10391 Face 3820 16074 34684 46173 Face 3821 7134 1913 32778 Face 3822 14749 17086 11790 Face 3823 27013 33465 48553 Face 3824 15348 25500 11181 Face 3825 22192 7056 15957 Face 3826 30782 22450 7056 Face 3827 42430 17992 30533 Face 3828 34977 14808 17992 Face 3829 49037 48127 28097 Face 3830 42371 12820 29897 Face 3831 17677 46207 33124 Face 3832 32901 37875 34895 Face 3833 39632 24463 14109 Face 3834 48460 37410 31761 Face 3835 32301 8073 12366 Face 3836 16691 27882 6299 Face 3837 44406 8688 25760 Face 3838 28084 44058 16512 Face 3839 5635 38272 40744 Face 3840 9484 15536 41568 Face 3841 36406 12054 40850 Face 3842 20428 27756 37940 Face 3843 31201 45720 6980 Face 3844 9923 22972 47330 Face 3845 10980 13666 43095 Face 3846 28675 21404 17776 Face 3847 29777 29956 5936 Face 3848 12784 33737 29956 Face 3849 11531 38887 29550 Face 3850 30820 22713 30617 Face 3851 18614 25437 32394 Face 3852 25355 7802 38186 Face 3853 41269 14128 42014 Face 3854 11426 5337 22354 Face 3855 47478 11426 33690 Face 3856 27242 43020 11946 Face 3857 36709 20188 17680 Face 3858 8521 15021 11786 Face 3859 587 1932 32004 Face 3860 49519 25606 9861 Face 3861 38724 20326 36866 Face 3862 19952 10461 20899 Face 3863 3366 14444 48057 Face 3864 26458 38461 37086 Face 3865 5303 38753 23893 Face 3866 9724 16847 31700 Face 3867 45893 38855 28304 Face 3868 31514 48400 1936 Face 3869 45152 6889 27410 Face 3870 48196 512 28806 Face 3871 7162 33212 31021 Face 3872 224 27225 25350 Face 3873 33054 1939 21299 Face 3874 11947 25625 3608 Face 3875 22026 34772 15696 Face 3876 1538 8434 18868 Face 3877 17314 35264 19734 Face 3878 41240 29873 1941 Face 3879 15854 25085 4943 Face 3880 43090 19842 33957 Face 3881 19544 32818 3884 Face 3882 37009 25197 40293 Face 3883 6468 28959 2883 Face 3884 34444 11892 30721 Face 3885 5235 20279 15592 Face 3886 20815 26226 42354 Face 3887 11613 42692 13202 Face 3888 27876 40532 16185 Face 3889 42878 46495 30663 Face 3890 3925 16990 30086 Face 3891 44611 10226 8071 Face 3892 32759 27481 7835 Face 3893 9800 1949 24165 Face 3894 15460 1948 16268 Face 3895 17798 38972 3915 Face 3896 44921 18509 7914 Face 3897 49601 5733 22579 Face 3898 8882 16472 10392 Face 3899 28005 10442 33088 Face 3900 182 41066 35364 Face 3901 13017 8575 38722 Face 3902 12945 8299 36048 Face 3903 41362 5352 15233 Face 3904 48213 27858 42808 Face 3905 18490 5831 28996 Face 3906 25153 16679 14723 Face 3907 11042 27997 36355 Face 3908 14030 47062 25791 Face 3909 33658 1957 49028 Face 3910 32919 27794 40140 Face 3911 19772 1958 26849 Face 3912 20132 1794 36739 Face 3913 12618 10732 24818 Face 3914 1503 27327 36771 Face 3915 45402 14757 45899 Face 3916 19762 44404 8538 Face 3917 13348 45123 30112 Face 3918 43936 26257 16828 Face 3919 5743 17953 36362 Face 3920 14872 37759 6828 Face 3921 10146 21676 37771 Face 3922 30968 7098 47572 Face 3923 9111 25363 13177 Face 3924 43036 26396 29363 Face 3925 8881 19092 1852 Face 3926 32870 19460 38143 Face 3927 8881 42827 23481 Face 3928 45506 12633 35056 Face 3929 1968 38393 33668 Face 3930 27077 17544 13984 Face 3931 49218 1968 36593 Face 3932 9630 33601 23024 Face 3933 37752 48870 1885 Face 3934 19697 31682 18332 Face 3935 37807 33571 11314 Face 3936 22147 30616 15104 Face 3937 46726 29848 22350 Face 3938 4723 9677 1971 Face 3939 49209 24982 4129 Face 3940 16873 37199 6903 Face 3941 42211 30747 4622 Face 3942 175 11232 33796 Face 3943 4956 14308 20335 Face 3944 32221 44613 17340 Face 3945 9572 12548 17541 Face 3946 18375 27326 11987 Face 3947 21687 6116 11677 Face 3948 21217 27277 31748 Face 3949 47341 9864 18435 Face 3950 40547 40058 31671 Face 3951 27644 19841 2710 Face 3952 24891 11216 30007 Face 3953 47709 27586 42262 Face 3954 47709 30432 36305 Face 3955 31679 44567 38102 Face 3956 30989 40698 13220 Face 3957 7523 23627 36799 Face 3958 21428 46478 19283 Face 3959 19266 1982 4209 Face 3960 31662 9377 7523 Face 3961 44104 1983 14691 Face 3962 43359 26248 15512 Face 3963 39583 32498 2391 Face 3964 8437 7353 23809 Face 3965 336 39869 21987 Face 3966 8437 23809 34829 Face 3967 9090 34725 46973 Face 3968 33870 49822 39123 Face 3969 9029 1987 43000 Face 3970 30761 10667 19635 Face 3971 6621 20216 9408 Face 3972 19888 35588 49940 Face 3973 14432 22024 20020 Face 3974 9973 18358 24137 Face 3975 34805 7185 9176 Face 3976 29361 17589 45547 Face 3977 14948 23652 2668 Face 3978 23020 37746 38937 Face 3979 40421 17719 31286 Face 3980 19027 31495 14379 Face 3981 27006 47207 14379 Face 3982 35884 43789 18597 Face 3983 22742 39199 34250 Face 3984 13943 41017 31879 Face 3985 1994 15008 2716 Face 3986 6324 22813 1995 Face 3987 8059 33942 38642 Face 3988 40314 19490 30519 Face 3989 32232 23019 3851 Face 3990 3278 35704 49723 Face 3991 11251 33920 31864 Face 3992 48444 10851 28366 Face 3993 166 36945 32151 Face 3994 11022 20704 1999 Face 3995 28948 5614 7544 Face 3996 28948 21990 5614 Face 3997 2000 29197 38038 Face 3998 33007 21308 48378 Face 3999 31005 28472 25342 Face 4000 11391 27768 45371 Face 4001 30970 19442 44355 Face 4002 19655 12455 34321 Face 4003 29090 44256 7633 Face 4004 34682 19875 9001 Face 4005 19692 30623 16304 Face 4006 25578 11520 16919 Face 4007 40460 28087 19808 Face 4008 199 14129 22244 Face 4009 26582 19459 45942 Face 4010 9986 35378 32036 Face 4011 34260 32505 12872 Face 4012 19540 24242 42606 Face 4013 36727 27474 45607 Face 4014 28666 17855 7687 Face 4015 5043 37774 17148 Face 4016 32234 29051 41929 Face 4017 32061 42507 22140 Face 4018 43432 30889 26225 Face 4019 5712 21184 45167 Face 4020 48030 36934 19944 Face 4021 7577 14250 8399 Face 4022 7577 37342 41448 Face 4023 16373 4785 6600 Face 4024 16334 24989 8399 Face 4025 13598 49294 46169 Face 4026 35972 27359 2015 Face 4027 35704 16757 49723 Face 4028 30194 12177 23967 Face 4029 33099 44336 26186 Face 4030 19960 40451 28538 Face 4031 13471 2018 29242 Face 4032 25225 32776 44849 Face 4033 36363 47503 23201 Face 4034 21248 26021 2019 Face 4035 42181 48546 10979 Face 4036 16612 14985 26193 Face 4037 12696 26870 7045 Face 4038 37657 17798 3915 Face 4039 20300 38200 625 Face 4040 20299 9121 38200 Face 4041 24078 16299 17067 Face 4042 24077 5651 25872 Face 4043 1163 36351 8435 Face 4044 25463 7193 11803 Face 4045 10783 18014 958 Face 4046 11598 465 8139 Face 4047 38592 13490 37151 Face 4048 10910 31780 43160 Face 4049 42625 25675 8754 Face 4050 47125 46649 16826 Face 4051 16117 41194 26541 Face 4052 543 47922 7497 Face 4053 19042 31899 1864 Face 4054 10291 44979 2029 Face 4055 23948 7078 18455 Face 4056 23478 9877 46445 Face 4057 10295 19042 45271 Face 4058 10295 31899 19042 Face 4059 37846 9909 26610 Face 4060 19074 35140 38011 Face 4061 45835 27543 44631 Face 4062 15565 35369 2033 Face 4063 16049 19492 31378 Face 4064 16049 14768 19492 Face 4065 25774 48481 35594 Face 4066 38350 4792 13059 Face 4067 20366 26372 49005 Face 4068 18154 49232 13130 Face 4069 17987 2037 29143 Face 4070 26302 44040 8307 Face 4071 45175 2038 22119 Face 4072 8866 17501 34391 Face 4073 15205 21739 29827 Face 4074 9990 20180 2040 Face 4075 9249 13605 4653 Face 4076 15188 9990 2040 Face 4077 14587 45461 23910 Face 4078 25351 5621 27588 Face 4079 3815 41353 45461 Face 4080 22069 27729 37472 Face 4081 24368 28734 44307 Face 4082 47812 39535 15959 Face 4083 15026 26451 37608 Face 4084 558 30670 19481 Face 4085 16033 44760 22551 Face 4086 8537 3531 15925 Face 4087 13163 2046 28911 Face 4088 29649 8537 15925 Face 4089 1471 28853 38302 Face 4090 1471 32450 28853 Face 4091 20581 11782 2673 Face 4092 11937 40392 39752 Face 4093 6244 35675 46411 Face 4094 6243 29511 47623 Face 4095 16886 2050 21343 Face 4096 21114 29405 12938 Face 4097 300 20894 40911 Face 4098 5716 49459 13066 Face 4099 18579 2052 34685 Face 4100 34047 33834 22137 Face 4101 25520 34718 9769 Face 4102 15566 25447 25485 Face 4103 7846 20073 43695 Face 4104 28809 24093 11901 Face 4105 39939 29264 33333 Face 4106 28802 15024 38372 Face 4107 5086 20832 10646 Face 4108 5087 40398 42908 Face 4109 14883 38683 3162 Face 4110 34854 25788 21447 Face 4111 7153 28254 35166 Face 4112 396 20673 11220 Face 4113 31292 2059 41524 Face 4114 20250 1745 33436 Face 4115 15070 25271 18796 Face 4116 39509 24257 11097 Face 4117 23213 2061 6613 Face 4118 29227 10517 47592 Face 4119 34163 5679 30049 Face 4120 38641 27211 34315 Face 4121 35035 18266 25135 Face 4122 35035 19488 37193 Face 4123 15624 12895 1633 Face 4124 25470 41648 14817 Face 4125 45249 29360 13419 Face 4126 42851 41736 22320 Face 4127 49350 37344 3584 Face 4128 22462 4730 17265 Face 4129 32857 5488 36698 Face 4130 25054 49947 29724 Face 4131 5898 11695 28210 Face 4132 28725 11638 41092 Face 4133 17737 12513 13702 Face 4134 41905 10495 12513 Face 4135 20351 33991 14134 Face 4136 23660 17257 42886 Face 4137 25406 24340 47473 Face 4138 16881 35073 22963 Face 4139 16707 2072 40761 Face 4140 31738 37414 36499 Face 4141 19467 21947 37549 Face 4142 28583 11415 10447 Face 4143 31969 10582 41772 Face 4144 635 6443 18595 Face 4145 23882 2075 46273 Face 4146 15232 44927 42410 Face 4147 44808 2076 7069 Face 4148 8218 20000 41267 Face 4149 37823 41824 7069 Face 4150 37466 30930 48190 Face 4151 5840 34046 40394 Face 4152 14467 2050 16886 Face 4153 31692 45850 13390 Face 4154 145 34807 49846 Face 4155 10255 15503 45588 Face 4156 47596 25548 19832 Face 4157 44544 35757 12752 Face 4158 48315 3325 28333 Face 4159 179 23251 33464 Face 4160 39838 48072 23251 Face 4161 673 26714 7474 Face 4162 673 13546 26714 Face 4163 34242 37523 46005 Face 4164 14641 4604 49202 Face 4165 36926 14641 49202 Face 4166 9181 32131 2085 Face 4167 27733 5577 44941 Face 4168 41265 27529 5577 Face 4169 43405 2087 31161 Face 4170 18966 21883 43793 Face 4171 40594 19103 29479 Face 4172 3684 22540 43291 Face 4173 22046 13801 49349 Face 4174 49216 23962 17270 Face 4175 1972 34368 18498 Face 4176 42715 4129 24982 Face 4177 44874 7457 49283 Face 4178 36103 6817 12142 Face 4179 16742 43275 23532 Face 4180 27080 24986 43193 Face 4181 11494 19726 41244 Face 4182 34133 12264 45394 Face 4183 33980 16955 17630 Face 4184 27475 12084 2094 Face 4185 10561 28200 38770 Face 4186 2929 4807 44582 Face 4187 3008 14490 41661 Face 4188 15501 40768 40992 Face 4189 41241 2097 18636 Face 4190 41241 1941 32610 Face 4191 4653 2098 31123 Face 4192 34050 12367 7191 Face 4193 12719 46259 2788 Face 4194 2130 8765 26015 Face 4195 16455 12682 33926 Face 4196 9999 25591 23406 Face 4197 32130 13305 6826 Face 4198 48842 4570 40283 Face 4199 30932 12572 25642 Face 4200 12891 24693 39423 Face 4201 9808 28489 28413 Face 4202 15661 26054 48362 Face 4203 10045 2104 32469 Face 4204 42312 28904 4189 Face 4205 35320 46745 28591 Face 4206 22020 12711 45989 Face 4207 31817 15618 37596 Face 4208 7695 14156 29667 Face 4209 16741 33083 14345 Face 4210 32480 16175 11646 Face 4211 41319 13838 7766 Face 4212 19542 34757 2882 Face 4213 32625 12871 8205 Face 4214 41953 12662 23067 Face 4215 48837 19483 10968 Face 4216 10045 32470 36131 Face 4217 44072 29874 37422 Face 4218 14387 1721 38981 Face 4219 25059 2112 34196 Face 4220 25059 8424 2112 Face 4221 49955 15082 6985 Face 4222 3070 6139 33884 Face 4223 23792 6357 30639 Face 4224 25032 5142 10311 Face 4225 21004 48535 7915 Face 4226 16459 35108 36831 Face 4227 35920 37949 12789 Face 4228 9005 7673 32334 Face 4229 32794 44122 17082 Face 4230 49298 5628 19258 Face 4231 27149 17455 6337 Face 4232 24351 6299 27882 Face 4233 11243 21994 39130 Face 4234 14069 22421 20023 Face 4235 2121 19543 28849 Face 4236 45410 37157 22781 Face 4237 15494 39685 36155 Face 4238 15494 37157 39685 Face 4239 39095 26074 29415 Face 4240 35604 11810 27691 Face 4241 9868 13323 34199 Face 4242 1056 48514 41275 Face 4243 17632 28330 13710 Face 4244 31940 9401 38469 Face 4245 16963 23783 49211 Face 4246 23670 2719 7362 Face 4247 39836 47733 23565 Face 4248 43171 31017 8907 Face 4249 19202 32222 15631 Face 4250 12821 21325 29446 Face 4251 20002 36175 10642 Face 4252 42114 13718 3938 Face 4253 13982 37128 29147 Face 4254 28269 32831 40113 Face 4255 43652 33842 15825 Face 4256 9512 27048 38068 Face 4257 25693 3871 4843 Face 4258 9844 953 27285 Face 4259 28883 27125 38917 Face 4260 325 9974 21715 Face 4261 28617 11575 21044 Face 4262 41479 34502 20449 Face 4263 9680 37338 47147 Face 4264 17831 46599 24643 Face 4265 21644 49179 13105 Face 4266 2414 38053 3408 Face 4267 6096 43666 30089 Face 4268 6094 36460 48001 Face 4269 21431 14012 43336 Face 4270 25426 46434 41861 Face 4271 36656 27766 1820 Face 4272 3177 15785 10991 Face 4273 19690 31879 41017 Face 4274 7689 21373 21372 Face 4275 41775 25867 19068 Face 4276 8228 41085 18932 Face 4277 7644 8227 36238 Face 4278 30935 5299 20211 Face 4279 13475 28823 18122 Face 4280 13475 8383 28823 Face 4281 28054 33438 13575 Face 4282 15467 33427 48761 Face 4283 18577 28880 8948 Face 4284 27195 22359 33432 Face 4285 7159 20671 49781 Face 4286 9019 48401 43684 Face 4287 45212 43138 46840 Face 4288 39749 34788 10234 Face 4289 24466 5177 29628 Face 4290 24466 43841 10810 Face 4291 10301 32330 16165 Face 4292 24719 1992 5092 Face 4293 9688 15550 49180 Face 4294 47722 39638 15550 Face 4295 22865 27953 39664 Face 4296 40229 23914 2150 Face 4297 26760 28694 39545 Face 4298 25949 6788 48551 Face 4299 6046 44893 28654 Face 4300 32797 14725 44893 Face 4301 18341 33922 3415 Face 4302 42963 26450 2153 Face 4303 38865 13313 29677 Face 4304 14984 13826 30132 Face 4305 22264 12413 21375 Face 4306 34212 24129 49207 Face 4307 14813 38522 30561 Face 4308 17462 3379 30546 Face 4309 28602 2157 42444 Face 4310 10964 4618 31186 Face 4311 31129 2158 3466 Face 4312 45286 19795 2158 Face 4313 9028 30211 17274 Face 4314 25241 36901 5727 Face 4315 19499 9028 17274 Face 4316 19499 47212 19308 Face 4317 12968 39186 2159 Face 4318 40350 32782 2161 Face 4319 7387 15571 8035 Face 4320 20963 39720 49876 Face 4321 17688 27391 46038 Face 4322 49822 33870 13837 Face 4323 10439 35889 37969 Face 4324 36186 3306 45933 Face 4325 6138 10439 20199 Face 4326 41842 16830 2165 Face 4327 6755 18949 33859 Face 4328 22670 5392 2166 Face 4329 15263 49114 29977 Face 4330 1448 7732 31336 Face 4331 492 44319 7643 Face 4332 21349 14605 10318 Face 4333 38969 32269 7643 Face 4334 2170 32075 10031 Face 4335 13973 26201 40105 Face 4336 2171 17816 25329 Face 4337 33715 21099 18011 Face 4338 33715 13056 42468 Face 4339 927 29694 34084 Face 4340 43973 6776 46656 Face 4341 664 26272 38071 Face 4342 15280 7845 3747 Face 4343 33239 25371 21093 Face 4344 321 9776 21831 Face 4345 33020 11550 17782 Face 4346 36043 8486 21294 Face 4347 9065 25135 31239 Face 4348 17702 37217 17615 Face 4349 9073 25869 14307 Face 4350 13363 30386 38950 Face 4351 34742 22675 27811 Face 4352 49490 5615 15177 Face 4353 44668 6747 19851 Face 4354 26465 30791 40184 Face 4355 6172 24553 30450 Face 4356 35288 23375 7345 Face 4357 35029 37534 23575 Face 4358 37229 25773 16624 Face 4359 18935 41470 3137 Face 4360 18935 46960 41470 Face 4361 842 21984 41700 Face 4362 842 24585 6770 Face 4363 17839 10028 33327 Face 4364 31731 43418 35893 Face 4365 14395 37457 9783 Face 4366 30136 15723 28013 Face 4367 33777 16653 43901 Face 4368 47012 28314 16654 Face 4369 10053 2187 16637 Face 4370 9891 18350 46319 Face 4371 24039 20520 31844 Face 4372 42600 19332 28532 Face 4373 31823 8439 24863 Face 4374 23945 27555 8438 Face 4375 721 47890 37027 Face 4376 721 6162 27819 Face 4377 33903 12732 4786 Face 4378 48353 16544 29200 Face 4379 16131 18068 44370 Face 4380 24913 42070 36510 Face 4381 37792 20310 26727 Face 4382 25082 18078 32171 Face 4383 715 10781 17636 Face 4384 24919 15951 2194 Face 4385 31222 14850 7363 Face 4386 48469 32101 35406 Face 4387 44945 21796 23391 Face 4388 12648 1195 22019 Face 4389 2232 21393 24442 Face 4390 31687 22967 2197 Face 4391 34624 2198 14823 Face 4392 25327 35390 7181 Face 4393 25194 13033 32504 Face 4394 16866 1115 17767 Face 4395 47764 48097 20718 Face 4396 196 38112 20756 Face 4397 1019 18975 30322 Face 4398 1019 2963 25072 Face 4399 17098 28894 47693 Face 4400 4955 39179 15021 Face 4401 38478 32218 19214 Face 4402 3919 30004 43603 Face 4403 954 44942 19213 Face 4404 7653 27536 12373 Face 4405 20622 33488 8780 Face 4406 21477 11363 7213 Face 4407 13729 48435 14968 Face 4408 13729 27933 48435 Face 4409 18980 41339 24549 Face 4410 15754 33744 20158 Face 4411 43905 14028 5708 Face 4412 21597 20368 44474 Face 4413 39665 36883 25955 Face 4414 39665 20158 36883 Face 4415 23735 2210 31374 Face 4416 23735 30879 2210 Face 4417 947 35966 29803 Face 4418 8302 18670 23735 Face 4419 13504 2212 30566 Face 4420 13504 27687 2212 Face 4421 120 33894 18602 Face 4422 13983 10468 8314 Face 4423 11515 18039 28046 Face 4424 29790 18575 38497 Face 4425 32359 29577 1575 Face 4426 29790 38497 35013 Face 4427 16577 39491 23270 Face 4428 45678 15351 29510 Face 4429 41741 14878 27027 Face 4430 8027 15119 37655 Face 4431 19528 35687 39046 Face 4432 36045 37274 12394 Face 4433 26421 29119 48730 Face 4434 49969 4016 32791 Face 4435 14344 47267 5925 Face 4436 7589 30577 11912 Face 4437 18655 2221 16941 Face 4438 9309 22323 6883 Face 4439 7157 15798 19877 Face 4440 42071 22457 39704 Face 4441 11224 16183 45026 Face 4442 46026 19388 47783 Face 4443 17602 35597 11145 Face 4444 13046 28108 26213 Face 4445 21766 5445 7467 Face 4446 34075 20593 2225 Face 4447 28000 36858 18644 Face 4448 32981 17156 24697 Face 4449 36856 21484 13425 Face 4450 18565 12454 42159 Face 4451 14366 43755 20854 Face 4452 4954 22516 11933 Face 4453 9191 26735 21910 Face 4454 43113 20783 12176 Face 4455 20392 46899 23606 Face 4456 25366 15692 38539 Face 4457 10197 9635 17246 Face 4458 33747 16961 4098 Face 4459 16915 46803 28851 Face 4460 27280 24116 19588 Face 4461 4815 48815 13851 Face 4462 1644 49055 39867 Face 4463 13569 22846 12139 Face 4464 9457 27419 16572 Face 4465 43371 32277 29737 Face 4466 34181 29273 32278 Face 4467 16884 4690 23057 Face 4468 29999 7201 33286 Face 4469 49950 2237 6855 Face 4470 49950 15704 28483 Face 4471 38911 22464 16146 Face 4472 38911 3898 22464 Face 4473 24887 22099 46868 Face 4474 43347 35508 2239 Face 4475 26481 23952 17709 Face 4476 33398 7304 48200 Face 4477 19933 25624 46661 Face 4478 42806 26934 31965 Face 4479 28937 16376 32837 Face 4480 36783 40267 20850 Face 4481 671 30984 46718 Face 4482 32191 29978 22808 Face 4483 671 13695 30984 Face 4484 20266 8836 40762 Face 4485 740 38743 25573 Face 4486 14749 11791 24703 Face 4487 12995 35717 21788 Face 4488 17971 24088 22470 Face 4489 5017 18239 37791 Face 4490 5017 18016 41465 Face 4491 11366 20485 4888 Face 4492 10630 34237 4063 Face 4493 8050 34960 25261 Face 4494 35393 26831 34961 Face 4495 3649 2250 31869 Face 4496 48188 12471 28148 Face 4497 23230 12322 40604 Face 4498 9693 24326 18897 Face 4499 7590 15758 6632 Face 4500 3833 27418 21485 Face 4501 8238 10098 34510 Face 4502 41316 15582 19136 Face 4503 7871 44295 38626 Face 4504 40 19136 28998 Face 4505 40977 43415 3793 Face 4506 22705 30428 19216 Face 4507 47695 18359 5906 Face 4508 28276 42396 37255 Face 4509 16539 41281 36942 Face 4510 599 16451 21872 Face 4511 36947 5984 15307 Face 4512 24296 12174 26086 Face 4513 16899 31438 21815 Face 4514 7273 29519 42584 Face 4515 38512 18830 46401 Face 4516 22660 35419 12669 Face 4517 20704 11863 1999 Face 4518 3204 7907 38931 Face 4519 18077 43327 23529 Face 4520 46314 12154 41195 Face 4521 15728 12211 4903 Face 4522 28534 29221 6436 Face 4523 45849 28681 34447 Face 4524 8076 42639 39392 Face 4525 35805 46129 1148 Face 4526 47413 14122 26701 Face 4527 12605 10044 29832 Face 4528 33298 41079 28704 Face 4529 23550 7947 2266 Face 4530 19605 46634 33648 Face 4531 27917 12840 22855 Face 4532 47128 46178 12840 Face 4533 14624 25762 2521 Face 4534 15189 6203 17386 Face 4535 354 11666 27735 Face 4536 2271 1790 35308 Face 4537 32385 19758 11666 Face 4538 35566 48728 32407 Face 4539 49236 2272 20577 Face 4540 49236 21181 2272 Face 4541 25767 16821 9488 Face 4542 10737 19768 5044 Face 4543 44744 49406 11409 Face 4544 31059 44485 25767 Face 4545 22437 2275 38163 Face 4546 41874 7170 33857 Face 4547 21130 41930 47801 Face 4548 12577 20799 29750 Face 4549 15647 7964 20933 Face 4550 1273 10138 29471 Face 4551 710 12415 43396 Face 4552 33302 4577 25884 Face 4553 10137 34972 16323 Face 4554 39600 23242 35684 Face 4555 33418 12542 43200 Face 4556 16810 39173 40662 Face 4557 42794 22531 39067 Face 4558 22006 43360 16836 Face 4559 3881 10539 35451 Face 4560 35350 8629 11087 Face 4561 18347 35324 10539 Face 4562 17208 34970 15926 Face 4563 8280 47682 26290 Face 4564 16558 11723 28221 Face 4565 25346 49107 39423 Face 4566 18925 10664 17378 Face 4567 33763 2608 4199 Face 4568 32158 35330 37334 Face 4569 23093 33190 10782 Face 4570 31070 25895 48361 Face 4571 893 37059 22755 Face 4572 30848 39215 21204 Face 4573 8447 38269 45099 Face 4574 21467 30849 18059 Face 4575 40909 27984 49575 Face 4576 45782 18952 2290 Face 4577 4716 30159 4893 Face 4578 27612 49654 15201 Face 4579 157 26084 10857 Face 4580 39268 869 31045 Face 4581 15276 24026 36437 Face 4582 23223 19696 14447 Face 4583 41897 2294 30627 Face 4584 41897 24026 33575 Face 4585 16071 31505 34049 Face 4586 27613 25516 12479 Face 4587 3622 28787 20746 Face 4588 49742 41686 8291 Face 4589 36097 23875 12500 Face 4590 46675 32718 17898 Face 4591 20783 27245 29104 Face 4592 2969 10801 45280 Face 4593 7437 47923 29103 Face 4594 30285 2178 16635 Face 4595 40734 10102 544 Face 4596 45301 35786 2300 Face 4597 44548 37388 16844 Face 4598 9049 20219 2301 Face 4599 6459 13582 25130 Face 4600 27526 16894 8388 Face 4601 16061 15123 34305 Face 4602 4872 29077 12790 Face 4603 31344 46050 24693 Face 4604 22841 11332 47136 Face 4605 21456 34932 34877 Face 4606 2407 43555 27388 Face 4607 16005 10272 16765 Face 4608 36337 12371 23203 Face 4609 36662 17582 27261 Face 4610 28866 16703 8778 Face 4611 19508 47146 13495 Face 4612 25144 29619 38435 Face 4613 19859 41890 16437 Face 4614 19859 37587 2309 Face 4615 2116 48689 4561 Face 4616 13495 47146 44620 Face 4617 14560 8290 33670 Face 4618 48602 38488 30142 Face 4619 6539 9674 10386 Face 4620 30073 19636 26739 Face 4621 9303 36156 22637 Face 4622 14946 33937 4912 Face 4623 29218 10329 12099 Face 4624 11970 152 11412 Face 4625 12860 11692 5453 Face 4626 23328 21068 5550 Face 4627 43207 33073 3522 Face 4628 44516 11183 24113 Face 4629 7546 24739 23386 Face 4630 7546 4036 24739 Face 4631 20668 2318 25483 Face 4632 28565 27610 36139 Face 4633 22866 15727 40981 Face 4634 31072 13113 23352 Face 4635 19118 45001 38033 Face 4636 29369 7445 41276 Face 4637 312 25249 35595 Face 4638 39015 33062 5922 Face 4639 41123 16237 20847 Face 4640 26861 43491 16237 Face 4641 31179 19876 5457 Face 4642 40426 33908 31002 Face 4643 1385 12310 39982 Face 4644 5452 25113 41962 Face 4645 29850 2325 8192 Face 4646 15158 20202 14995 Face 4647 29850 13437 2325 Face 4648 20223 7457 2326 Face 4649 22309 11916 10413 Face 4650 18738 5015 2327 Face 4651 31915 12824 40958 Face 4652 4708 42905 19781 Face 4653 14626 29004 10597 Face 4654 38083 33163 40826 Face 4655 20281 23445 27126 Face 4656 42779 4670 7833 Face 4657 13749 45107 34263 Face 4658 20863 733 31136 Face 4659 32279 36080 14844 Face 4660 647 32567 34735 Face 4661 12880 28547 16860 Face 4662 8098 35079 39131 Face 4663 35964 2334 8886 Face 4664 5864 17352 2334 Face 4665 11397 15293 35557 Face 4666 11397 39909 15293 Face 4667 22298 35911 23705 Face 4668 22298 45508 35911 Face 4669 23589 46889 19929 Face 4670 10446 29205 18258 Face 4671 37374 2338 12818 Face 4672 23381 31958 40438 Face 4673 17730 12294 42460 Face 4674 21770 23585 12294 Face 4675 14563 34672 44508 Face 4676 43246 34760 8121 Face 4677 662 8968 16430 Face 4678 662 22859 8968 Face 4679 5348 6671 26558 Face 4680 7546 23386 30744 Face 4681 22773 18316 36661 Face 4682 22607 38052 10304 Face 4683 1294 28587 15946 Face 4684 8620 18869 47475 Face 4685 39227 10613 5325 Face 4686 16855 31971 3511 Face 4687 20109 5608 10735 Face 4688 2347 21120 4986 Face 4689 11255 11277 5608 Face 4690 48340 18400 9987 Face 4691 18552 6224 14425 Face 4692 22295 9563 32510 Face 4693 15578 31773 40588 Face 4694 15578 22324 31773 Face 4695 39464 24990 20430 Face 4696 9514 30548 47891 Face 4697 38470 20278 31180 Face 4698 23594 34434 49881 Face 4699 37563 44048 4691 Face 4700 12736 11384 45965 Face 4701 16108 30965 44768 Face 4702 34094 36090 48148 Face 4703 1337 2354 37396 Face 4704 7254 42205 26465 Face 4705 35183 30495 6851 Face 4706 21162 20540 14196 Face 4707 37289 17490 10862 Face 4708 29086 20884 18631 Face 4709 1702 17796 8545 Face 4710 17331 26119 31580 Face 4711 6402 43199 36020 Face 4712 1226 8475 46358 Face 4713 6852 13868 48999 Face 4714 6028 21765 2359 Face 4715 8046 35968 18437 Face 4716 3356 13779 27657 Face 4717 40943 21060 24103 Face 4718 10600 8151 15530 Face 4719 21950 32183 4347 Face 4720 3090 17291 19048 Face 4721 14889 11283 38285 Face 4722 36125 18125 29019 Face 4723 30875 20588 16967 Face 4724 9516 6667 20589 Face 4725 15996 21619 13741 Face 4726 46112 6825 31242 Face 4727 23734 46824 31848 Face 4728 42081 28711 10490 Face 4729 28274 40004 46720 Face 4730 28275 21480 40004 Face 4731 22377 8796 44974 Face 4732 35912 17111 2368 Face 4733 20826 10034 39820 Face 4734 24129 34212 43631 Face 4735 48895 12901 49996 Face 4736 148 36404 9445 Face 4737 5594 48268 13722 Face 4738 33481 18811 2371 Face 4739 2909 44815 16821 Face 4740 675 11867 28395 Face 4741 22042 42895 13590 Face 4742 7932 47119 16099 Face 4743 38320 17858 37686 Face 4744 30452 26604 20175 Face 4745 12679 21791 28002 Face 4746 10413 39586 31766 Face 4747 17120 26645 39102 Face 4748 40609 44778 12290 Face 4749 9900 5115 27682 Face 4750 18181 47579 30281 Face 4751 3936 42245 40280 Face 4752 23123 49787 2805 Face 4753 33683 2379 12663 Face 4754 20646 12486 46195 Face 4755 1318 8490 18808 Face 4756 18238 13418 31025 Face 4757 41394 41306 11167 Face 4758 27206 13839 31541 Face 4759 345 2382 17498 Face 4760 34265 18275 2382 Face 4761 141 2383 46840 Face 4762 20551 37552 2383 Face 4763 27119 2384 26080 Face 4764 49878 31472 22365 Face 4765 46322 32606 18137 Face 4766 32382 9301 43128 Face 4767 879 9575 48263 Face 4768 879 5987 27616 Face 4769 413 11821 16635 Face 4770 40317 27441 2387 Face 4771 46105 24905 15140 Face 4772 9324 18553 26641 Face 4773 13640 40017 47629 Face 4774 22168 4997 8440 Face 4775 42412 23683 28700 Face 4776 38884 30300 37327 Face 4777 43690 5698 6840 Face 4778 18536 10653 26951 Face 4779 26814 23208 25944 Face 4780 38980 24675 19507 Face 4781 8928 35313 19338 Face 4782 42521 37167 2393 Face 4783 27055 45291 10846 Face 4784 15724 19043 46994 Face 4785 15194 24545 36830 Face 4786 5599 27174 40934 Face 4787 2397 36082 5600 Face 4788 28368 12138 2396 Face 4789 14157 2397 31309 Face 4790 19730 36082 2397 Face 4791 26748 21607 15066 Face 4792 31943 42686 23679 Face 4793 31943 2399 17092 Face 4794 822 27033 7219 Face 4795 19621 39108 16082 Face 4796 28199 34856 18516 Face 4797 24954 19041 38586 Face 4798 9381 46855 12536 Face 4799 33150 2402 45706 Face 4800 18767 693 13642 Face 4801 17678 10630 41883 Face 4802 23939 20449 2403 Face 4803 29112 2404 28070 Face 4804 12707 4940 38193 Face 4805 30937 4089 8390 Face 4806 36598 11144 30983 Face 4807 12255 11996 38948 Face 4808 39554 18579 34685 Face 4809 717 37367 14350 Face 4810 22077 38233 21457 Face 4811 42361 32381 5757 Face 4812 224 28807 10055 Face 4813 11832 32245 25821 Face 4814 13127 12355 46883 Face 4815 958 41012 10783 Face 4816 958 49146 32513 Face 4817 25502 22745 11943 Face 4818 10806 2290 34811 Face 4819 12818 12586 46762 Face 4820 10697 26241 15238 Face 4821 29884 10697 15238 Face 4822 16619 41507 18907 Face 4823 32697 14666 17084 Face 4824 32697 28494 36738 Face 4825 38154 7463 25253 Face 4826 3722 32954 38398 Face 4827 20880 25404 21637 Face 4828 9602 27757 25862 Face 4829 28952 2417 15645 Face 4830 38361 26990 12493 Face 4831 37539 21800 16397 Face 4832 490 29225 8277 Face 4833 33155 30550 41728 Face 4834 27807 10094 30550 Face 4835 488 32107 22867 Face 4836 12037 3881 35451 Face 4837 38135 13548 44375 Face 4838 34566 11826 2919 Face 4839 25182 6949 46098 Face 4840 42414 1743 43830 Face 4841 46746 17151 8932 Face 4842 3721 16538 2423 Face 4843 12970 40301 28340 Face 4844 28541 1559 12058 Face 4845 5842 36185 44444 Face 4846 41286 29255 8623 Face 4847 5842 18947 8621 Face 4848 23345 28939 31710 Face 4849 39056 7548 15480 Face 4850 33694 47221 15971 Face 4851 40049 12897 26432 Face 4852 9964 39389 20754 Face 4853 22817 2429 35305 Face 4854 17369 29278 40104 Face 4855 679 17509 38617 Face 4856 37325 28016 20978 Face 4857 17909 29722 45549 Face 4858 35825 25692 24434 Face 4859 23350 44493 17623 Face 4860 651 27775 43480 Face 4861 28970 14172 5207 Face 4862 16294 27489 24195 Face 4863 45284 27094 8438 Face 4864 16247 37590 24211 Face 4865 1874 48375 10344 Face 4866 9889 7178 39256 Face 4867 29341 7756 36676 Face 4868 28714 26899 47144 Face 4869 31801 15473 32736 Face 4870 33898 30295 41300 Face 4871 34653 5357 47188 Face 4872 14519 35533 2438 Face 4873 46657 43336 14012 Face 4874 33300 48944 29231 Face 4875 29445 25132 14470 Face 4876 32135 1725 25132 Face 4877 11852 24090 33256 Face 4878 40558 16485 13069 Face 4879 22729 24118 36610 Face 4880 38822 39971 24119 Face 4881 19532 4412 16307 Face 4882 10213 2785 23614 Face 4883 26607 48003 11245 Face 4884 26607 47683 2444 Face 4885 42871 46055 1090 Face 4886 21609 7513 38754 Face 4887 13397 2446 26081 Face 4888 32056 13055 38073 Face 4889 8684 38307 32540 Face 4890 34390 23839 17075 Face 4891 44494 13395 28358 Face 4892 14235 18718 48949 Face 4893 15434 5893 41755 Face 4894 27694 37702 14304 Face 4895 30076 41032 18123 Face 4896 9713 38328 19804 Face 4897 32828 47149 22934 Face 4898 25545 11386 14528 Face 4899 10388 48423 32281 Face 4900 39350 2184 41289 Face 4901 10388 20515 48423 Face 4902 42120 32522 20515 Face 4903 36302 28247 22131 Face 4904 42598 28573 45435 Face 4905 11627 30598 4834 Face 4906 38237 5985 17681 Face 4907 28054 23518 33438 Face 4908 30416 48094 11733 Face 4909 30707 27707 29442 Face 4910 36319 38082 45779 Face 4911 9137 45878 29866 Face 4912 49110 26575 7203 Face 4913 21687 18436 1976 Face 4914 3697 5491 17706 Face 4915 35634 15874 32289 Face 4916 45008 27842 18346 Face 4917 43247 2461 14494 Face 4918 6254 25885 42899 Face 4919 36129 20152 5168 Face 4920 12940 16550 36271 Face 4921 44290 19962 21128 Face 4922 6648 6003 37930 Face 4923 47171 31509 8290 Face 4924 37402 18047 12397 Face 4925 25554 31373 46014 Face 4926 45321 43110 26900 Face 4927 10432 2466 43837 Face 4928 10432 9692 18459 Face 4929 21382 12225 35384 Face 4930 877 41492 25490 Face 4931 22663 19816 1174 Face 4932 32019 10920 34110 Face 4933 3014 22355 26303 Face 4934 26125 10008 2469 Face 4935 17275 4944 12231 Face 4936 9390 43306 18782 Face 4937 20472 48116 16348 Face 4938 15725 825 33617 Face 4939 14580 32626 44628 Face 4940 9983 45694 9966 Face 4941 32614 18107 20805 Face 4942 32951 22054 44363 Face 4943 18925 16558 28221 Face 4944 34773 22768 18651 Face 4945 43332 4124 31913 Face 4946 24788 10676 2475 Face 4947 13819 35429 24980 Face 4948 32211 28422 8498 Face 4949 40055 18511 37109 Face 4950 8629 35350 46109 Face 4951 31954 25454 13129 Face 4952 38538 10996 26564 Face 4953 25736 25323 29673 Face 4954 36027 17064 25323 Face 4955 29112 2480 2404 Face 4956 19291 42496 49567 Face 4957 49315 27496 6378 Face 4958 15138 45230 6970 Face 4959 15139 40799 2480 Face 4960 15138 6970 37123 Face 4961 34157 2483 22156 Face 4962 34157 32937 2483 Face 4963 20350 6624 15020 Face 4964 39076 12741 6624 Face 4965 27399 3705 36448 Face 4966 30700 6624 20350 Face 4967 44211 26052 16984 Face 4968 22761 9260 36734 Face 4969 37680 5991 12190 Face 4970 22419 9387 13382 Face 4971 36563 31676 24898 Face 4972 31552 33081 35556 Face 4973 35019 40748 40429 Face 4974 24209 16920 10508 Face 4975 25963 2490 29229 Face 4976 48053 47646 13403 Face 4977 28915 2491 13924 Face 4978 28915 37737 2491 Face 4979 24237 28441 48879 Face 4980 32356 41045 4915 Face 4981 20527 19513 4668 Face 4982 10838 25674 48688 Face 4983 8588 40285 5659 Face 4984 30422 4668 38408 Face 4985 39564 37838 25978 Face 4986 13992 19141 7646 Face 4987 15121 15666 25979 Face 4988 39568 14689 37101 Face 4989 39770 38938 32706 Face 4990 14836 29474 12474 Face 4991 2497 42916 16677 Face 4992 12473 44186 11337 Face 4993 46807 26580 10928 Face 4994 42592 8796 32992 Face 4995 46558 23509 47518 Face 4996 12582 39607 23078 Face 4997 11702 24857 43502 Face 4998 11702 10482 2501 Face 4999 17090 25081 11026 Face 5000 48753 24592 14053 Face 5001 41964 12038 13272 Face 5002 28837 36992 2503 Face 5003 20332 39723 7403 Face 5004 33125 12038 28653 Face 5005 14966 20201 43234 Face 5006 27581 7983 23776 Face 5007 38677 13339 24526 Face 5008 27654 47707 37073 Face 5009 18429 11359 13288 Face 5010 34075 40204 43525 Face 5011 13073 25724 48272 Face 5012 13073 22303 25724 Face 5013 3904 42321 35292 Face 5014 328 39611 37170 Face 5015 29264 2510 24172 Face 5016 45550 49794 34754 Face 5017 9017 2511 17703 Face 5018 9016 44366 48286 Face 5019 39597 14166 48887 Face 5020 408 20190 38182 Face 5021 29215 20131 15541 Face 5022 618 25168 20130 Face 5023 23289 10850 2465 Face 5024 15452 22167 2514 Face 5025 12118 33948 22635 Face 5026 17298 46237 14396 Face 5027 24720 42550 38304 Face 5028 7795 42557 17213 Face 5029 42863 32491 17725 Face 5030 18756 33984 2974 Face 5031 40397 30669 42415 Face 5032 21839 35506 2518 Face 5033 21775 40583 25856 Face 5034 12541 34766 47282 Face 5035 13583 20215 39396 Face 5036 17326 47691 19226 Face 5037 11773 40203 29240 Face 5038 11773 5993 40203 Face 5039 26104 36649 3993 Face 5040 31355 17163 5693 Face 5041 5749 34191 10428 Face 5042 350 9180 37485 Face 5043 47835 26553 14162 Face 5044 39712 47900 2524 Face 5045 33453 24579 2073 Face 5046 6149 39769 45914 Face 5047 47490 13714 30453 Face 5048 37292 9599 48391 Face 5049 28523 8605 29426 Face 5050 22945 9040 2527 Face 5051 27233 2528 3857 Face 5052 13413 5832 17988 Face 5053 44851 40929 22023 Face 5054 24210 26498 12730 Face 5055 2529 47658 45697 Face 5056 10074 19004 38343 Face 5057 6753 10249 18806 Face 5058 26414 31138 16438 Face 5059 28909 34783 4692 Face 5060 38953 17577 35346 Face 5061 3102 30492 39528 Face 5062 28365 40126 25243 Face 5063 563 18041 16947 Face 5064 48343 33840 30739 Face 5065 29610 36357 18050 Face 5066 47841 18990 45586 Face 5067 15244 42373 26915 Face 5068 15244 31448 42373 Face 5069 33129 2537 36346 Face 5070 19949 9752 31227 Face 5071 32084 6725 18592 Face 5072 3813 27325 20159 Face 5073 38110 35229 18991 Face 5074 38110 21207 5810 Face 5075 47908 42445 6360 Face 5076 30258 3209 33580 Face 5077 12733 32447 20520 Face 5078 5570 27533 13247 Face 5079 20165 29557 11033 Face 5080 17197 8563 33548 Face 5081 684 23640 33496 Face 5082 36190 29757 47649 Face 5083 30715 2544 45443 Face 5084 30715 17493 2544 Face 5085 11251 17769 33920 Face 5086 5006 10413 17153 Face 5087 32960 30687 42623 Face 5088 38091 33903 24239 Face 5089 17887 7566 12354 Face 5090 17887 41611 7566 Face 5091 31905 14355 19311 Face 5092 47610 24431 19202 Face 5093 16728 33108 21591 Face 5094 12079 14355 31905 Face 5095 30912 11506 49828 Face 5096 20274 38298 2550 Face 5097 48289 27650 33186 Face 5098 15573 25628 9167 Face 5099 14861 12750 38315 Face 5100 14861 16560 12750 Face 5101 22139 2553 16574 Face 5102 22139 41309 26947 Face 5103 23915 2554 36470 Face 5104 9655 42429 20448 Face 5105 32227 12394 37274 Face 5106 2218 36348 2555 Face 5107 36142 46601 25706 Face 5108 5491 7819 18958 Face 5109 30208 13971 7005 Face 5110 17013 22344 7949 Face 5111 41163 11488 45813 Face 5112 12059 48395 33562 Face 5113 43086 42774 41891 Face 5114 37238 24486 46530 Face 5115 36628 37261 11170 Face 5116 1287 39847 8689 Face 5117 1080 11441 10911 Face 5118 42082 24298 2561 Face 5119 4208 17959 15737 Face 5120 37715 12081 17958 Face 5121 7292 19274 12888 Face 5122 7292 23943 2563 Face 5123 13292 2564 43647 Face 5124 881 17958 27860 Face 5125 4241 41996 4548 Face 5126 5334 24468 30517 Face 5127 49559 41617 47806 Face 5128 20325 26246 2566 Face 5129 32659 29397 9643 Face 5130 39385 20217 45037 Face 5131 45732 9591 22125 Face 5132 13230 7696 45625 Face 5133 37904 38086 7110 Face 5134 30653 12440 41731 Face 5135 20227 22292 6655 Face 5136 1223 32231 17533 Face 5137 19988 48256 21626 Face 5138 24516 22012 18561 Face 5139 16459 20247 35108 Face 5140 5411 30037 43498 Face 5141 22494 28213 34311 Face 5142 30881 40798 47052 Face 5143 26190 27154 5403 Face 5144 26190 35364 28447 Face 5145 24190 29193 6384 Face 5146 14043 30328 8979 Face 5147 6541 19332 27961 Face 5148 241 38867 44460 Face 5149 10600 26725 4434 Face 5150 47045 16059 21740 Face 5151 4282 40001 17455 Face 5152 27970 36812 20626 Face 5153 35338 2579 11668 Face 5154 45591 19457 41733 Face 5155 23166 31328 39100 Face 5156 45454 25515 35938 Face 5157 13976 29013 34908 Face 5158 13975 1821 35938 Face 5159 1684 17707 48727 Face 5160 19021 34142 40630 Face 5161 26320 2583 43629 Face 5162 4405 8917 28803 Face 5163 24875 5207 14172 Face 5164 226 38383 2584 Face 5165 16398 42881 8421 Face 5166 25289 9384 19131 Face 5167 3280 25759 19077 Face 5168 40501 14268 30230 Face 5169 11806 5447 36993 Face 5170 38805 48336 8257 Face 5171 28836 38805 49008 Face 5172 22700 14279 2588 Face 5173 807 20291 26556 Face 5174 22314 41806 34026 Face 5175 7229 11844 32730 Face 5176 2594 44379 16739 Face 5177 1616 8816 1615 Face 5178 14798 20165 11033 Face 5179 24584 7983 27581 Face 5180 17039 20088 4758 Face 5181 977 21129 8652 Face 5182 977 15430 21129 Face 5183 33328 2594 16739 Face 5184 4697 39588 8178 Face 5185 261 23923 32100 Face 5186 44612 1239 39831 Face 5187 36353 9085 18080 Face 5188 7058 10909 32548 Face 5189 15487 8386 3721 Face 5190 7058 32548 7057 Face 5191 9818 13139 4384 Face 5192 40325 6625 48192 Face 5193 4822 32702 27787 Face 5194 2326 7457 20338 Face 5195 2599 13275 17674 Face 5196 20085 9722 17194 Face 5197 49405 22120 40485 Face 5198 27934 7672 18156 Face 5199 28934 38559 48721 Face 5200 39706 26768 39511 Face 5201 15793 38148 33966 Face 5202 5695 24889 38148 Face 5203 24327 33119 28991 Face 5204 25459 22599 2604 Face 5205 1603 9574 19581 Face 5206 31492 10640 25841 Face 5207 29199 11394 44907 Face 5208 18541 42446 12129 Face 5209 14420 20915 25709 Face 5210 34934 18180 40083 Face 5211 4178 39787 11741 Face 5212 22732 23680 21647 Face 5213 15998 23495 39623 Face 5214 10478 30534 46185 Face 5215 715 30415 29374 Face 5216 715 46548 30415 Face 5217 28197 29520 19899 Face 5218 43888 11934 14327 Face 5219 20562 19425 42996 Face 5220 739 49090 19425 Face 5221 3020 13771 48563 Face 5222 25114 35001 43851 Face 5223 42018 27338 37176 Face 5224 23848 11136 17804 Face 5225 22221 23899 9292 Face 5226 16093 41625 23003 Face 5227 18360 24066 14218 Face 5228 12276 1842 33411 Face 5229 49959 14492 1842 Face 5230 41206 32277 14492 Face 5231 12275 7892 2235 Face 5232 31919 43329 2618 Face 5233 22177 28069 45723 Face 5234 36630 23425 20409 Face 5235 2621 28069 38915 Face 5236 41588 28775 40120 Face 5237 40248 43940 21146 Face 5238 31946 13170 41293 Face 5239 12645 38090 45359 Face 5240 4565 25971 11835 Face 5241 47003 2623 2622 Face 5242 20780 4419 46879 Face 5243 12645 20475 38090 Face 5244 23929 35907 2624 Face 5245 5788 14868 22357 Face 5246 40244 35304 47323 Face 5247 1463 20512 29602 Face 5248 33266 45435 2626 Face 5249 8597 28462 39034 Face 5250 15143 14881 24250 Face 5251 20755 27021 46637 Face 5252 15836 30409 33282 Face 5253 36985 2629 19242 Face 5254 697 39467 23048 Face 5255 15407 7201 29999 Face 5256 48646 34427 43762 Face 5257 13427 33245 44331 Face 5258 46526 11288 2631 Face 5259 5166 18684 9886 Face 5260 28810 49781 5165 Face 5261 21848 28162 14594 Face 5262 19156 30554 2633 Face 5263 21849 18385 9632 Face 5264 21848 37106 18256 Face 5265 9314 2635 9652 Face 5266 26643 30563 43457 Face 5267 38626 47306 7871 Face 5268 30990 11674 2636 Face 5269 49038 38112 6540 Face 5270 30725 12505 39313 Face 5271 10641 6234 19990 Face 5272 40567 16535 27121 Face 5273 38691 2639 12946 Face 5274 33836 35228 27073 Face 5275 41506 32189 17815 Face 5276 2170 27041 10394 Face 5277 40450 14965 46806 Face 5278 15278 37809 7381 Face 5279 8529 8779 47302 Face 5280 23755 13168 2642 Face 5281 1517 18505 27519 Face 5282 26344 11041 18506 Face 5283 2645 29352 22038 Face 5284 38496 18085 44413 Face 5285 24599 43722 11692 Face 5286 24599 31194 21042 Face 5287 39788 45825 8476 Face 5288 6772 39174 45825 Face 5289 111 30225 18085 Face 5290 12860 5453 44035 Face 5291 28230 35140 450 Face 5292 8056 41732 27387 Face 5293 19612 26376 38597 Face 5294 30531 16222 21464 Face 5295 5339 14885 26869 Face 5296 34193 10327 38026 Face 5297 44450 42418 22503 Face 5298 11781 31696 13828 Face 5299 29601 33017 15336 Face 5300 2650 20576 16515 Face 5301 12940 25117 16550 Face 5302 30995 35467 26323 Face 5303 4426 8999 22407 Face 5304 37873 24205 2654 Face 5305 20081 32710 27919 Face 5306 20081 25246 32710 Face 5307 34244 2656 17598 Face 5308 38181 12875 44337 Face 5309 15045 26076 7323 Face 5310 46617 3477 19998 Face 5311 17680 46817 36709 Face 5312 4792 38350 5147 Face 5313 10016 25503 5368 Face 5314 9856 26288 2659 Face 5315 28752 2660 17898 Face 5316 39524 48630 8350 Face 5317 29190 15413 26971 Face 5318 6842 48000 26114 Face 5319 1008 47404 25983 Face 5320 3924 24985 10475 Face 5321 5800 21244 7581 Face 5322 32331 16871 21244 Face 5323 7377 12378 17184 Face 5324 14904 26331 45503 Face 5325 9685 25067 29489 Face 5326 9685 24784 25067 Face 5327 37144 38333 41983 Face 5328 49194 29422 15609 Face 5329 42349 17941 11935 Face 5330 13787 46835 16460 Face 5331 32844 29856 14507 Face 5332 4938 30497 49585 Face 5333 22574 29687 21449 Face 5334 3188 36786 28916 Face 5335 42317 25298 1402 Face 5336 38240 27150 49224 Face 5337 687 29065 26576 Face 5338 687 25254 29065 Face 5339 7908 21729 35017 Face 5340 24223 48788 2672 Face 5341 20840 29382 11782 Face 5342 11717 5152 2673 Face 5343 14515 39220 20067 Face 5344 26912 26968 38509 Face 5345 20487 44261 7093 Face 5346 20487 37272 44261 Face 5347 9004 32063 19167 Face 5348 10707 22122 16954 Face 5349 19167 23784 9004 Face 5350 35608 25863 11675 Face 5351 14010 9003 38459 Face 5352 20138 5275 21618 Face 5353 4119 14010 2677 Face 5354 126 15405 28363 Face 5355 2679 30834 17783 Face 5356 28363 15405 15995 Face 5357 12690 32974 2678 Face 5358 9148 23793 30718 Face 5359 15003 2682 38277 Face 5360 24124 3908 46498 Face 5361 46008 24124 6882 Face 5362 16153 38352 41511 Face 5363 15297 42003 4609 Face 5364 15297 15245 42003 Face 5365 18311 36355 27997 Face 5366 18311 15331 2685 Face 5367 45091 26357 21388 Face 5368 39389 9964 31813 Face 5369 14096 19688 7636 Face 5370 14096 5769 47126 Face 5371 17188 41081 24492 Face 5372 26071 30699 34702 Face 5373 14584 2689 10771 Face 5374 13372 6605 35630 Face 5375 49354 27203 21158 Face 5376 42749 28165 2690 Face 5377 21445 41917 34625 Face 5378 13662 44757 15946 Face 5379 49494 30413 23824 Face 5380 19621 46445 9877 Face 5381 47182 22236 37733 Face 5382 6535 25751 15603 Face 5383 12521 20161 5951 Face 5384 6535 15603 23397 Face 5385 3933 28039 7278 Face 5386 29851 20297 2695 Face 5387 34751 31224 23187 Face 5388 42291 29543 15485 Face 5389 19995 10854 3918 Face 5390 9499 17417 46954 Face 5391 36795 13408 30698 Face 5392 36324 8998 23770 Face 5393 47264 24770 11917 Face 5394 8493 40048 27878 Face 5395 20909 9784 10005 Face 5396 8493 27878 33641 Face 5397 26786 34597 30356 Face 5398 21452 6524 16133 Face 5399 39573 11312 30975 Face 5400 24923 37362 40281 Face 5401 11254 22503 42418 Face 5402 40829 5339 26869 Face 5403 71 32441 19462 Face 5404 36800 16895 2704 Face 5405 41370 18045 6437 Face 5406 47676 36398 31524 Face 5407 32553 18019 36169 Face 5408 43370 9844 49796 Face 5409 37569 13949 21995 Face 5410 27758 41628 2707 Face 5411 7717 26756 22561 Face 5412 11924 6345 42649 Face 5413 10486 41093 12713 Face 5414 8018 32197 41554 Face 5415 29785 18294 32947 Face 5416 3640 33429 34219 Face 5417 29080 16568 20749 Face 5418 21887 49104 16567 Face 5419 17225 10099 40760 Face 5420 33014 10451 28325 Face 5421 45684 7249 28158 Face 5422 5856 31834 10065 Face 5423 17659 29448 16145 Face 5424 15760 38029 39377 Face 5425 1379 34749 37688 Face 5426 1379 32351 34749 Face 5427 19272 2716 31452 Face 5428 1762 49910 10273 Face 5429 19232 14954 30743 Face 5430 27851 8442 42225 Face 5431 10978 12851 42398 Face 5432 24315 14070 23117 Face 5433 33044 26118 4859 Face 5434 33044 17430 13636 Face 5435 7968 40782 17103 Face 5436 9123 18544 37619 Face 5437 41502 21359 16083 Face 5438 13847 45298 30949 Face 5439 37300 2722 22215 Face 5440 11325 40050 31459 Face 5441 18135 22905 11458 Face 5442 11247 7995 9779 Face 5443 1763 9786 19690 Face 5444 11703 5266 9785 Face 5445 25900 23645 34642 Face 5446 9785 5266 36819 Face 5447 29921 19597 39682 Face 5448 46249 32543 37784 Face 5449 34717 14115 25879 Face 5450 7553 48504 42307 Face 5451 26561 46802 5546 Face 5452 23081 12219 48679 Face 5453 21856 2729 27189 Face 5454 43755 14366 18167 Face 5455 16486 45705 32120 Face 5456 10955 38527 8976 Face 5457 21840 24573 5171 Face 5458 21840 42727 24573 Face 5459 38312 24100 26293 Face 5460 14650 9888 2732 Face 5461 41907 8929 5569 Face 5462 28949 45149 31784 Face 5463 49378 34394 20483 Face 5464 504 21970 33604 Face 5465 40816 8882 10392 Face 5466 5715 27784 2735 Face 5467 8940 23171 34745 Face 5468 29664 13177 6485 Face 5469 21579 49257 13795 Face 5470 15039 46878 33368 Face 5471 24939 31404 14726 Face 5472 29245 31944 12907 Face 5473 25932 19648 28141 Face 5474 34153 38791 2739 Face 5475 9071 32018 48872 Face 5476 34485 15755 31904 Face 5477 21837 6204 24389 Face 5478 31987 9167 20179 Face 5479 10686 39403 17552 Face 5480 43829 23610 20844 Face 5481 40764 31630 34699 Face 5482 8014 27492 2743 Face 5483 13811 15316 12979 Face 5484 9103 13910 38257 Face 5485 42202 10764 16380 Face 5486 19435 15316 8014 Face 5487 40853 43590 21343 Face 5488 12938 29405 46244 Face 5489 19966 37866 13724 Face 5490 48827 22039 29598 Face 5491 20243 40998 38682 Face 5492 30161 10540 11289 Face 5493 24726 46743 38594 Face 5494 4126 8780 49491 Face 5495 15131 35720 5360 Face 5496 23621 13276 16749 Face 5497 26600 20013 14161 Face 5498 38546 27462 14506 Face 5499 37627 19840 42530 Face 5500 37627 13004 19840 Face 5501 29005 40125 24860 Face 5502 996 48805 36004 Face 5503 2755 15567 39939 Face 5504 9530 19904 2754 Face 5505 24172 33333 29264 Face 5506 9530 47305 2755 Face 5507 41900 20700 13147 Face 5508 20809 19597 30658 Face 5509 6369 14562 46528 Face 5510 10772 36860 18306 Face 5511 38365 34910 16744 Face 5512 6141 19395 19394 Face 5513 44352 27163 1782 Face 5514 34207 44410 20336 Face 5515 21367 38989 25292 Face 5516 4134 41873 38273 Face 5517 925 28763 17728 Face 5518 27096 44230 19971 Face 5519 32883 20502 10996 Face 5520 24256 7490 14340 Face 5521 14647 12238 17422 Face 5522 34501 3205 33025 Face 5523 7315 26640 20376 Face 5524 33 22812 10104 Face 5525 24985 23698 10475 Face 5526 1690 44326 36748 Face 5527 37800 27709 9206 Face 5528 33096 12366 21187 Face 5529 23370 31495 19027 Face 5530 7185 29132 17443 Face 5531 38736 29036 34966 Face 5532 37541 4603 24258 Face 5533 8835 2769 7173 Face 5534 30778 22196 19941 Face 5535 38624 16673 20511 Face 5536 28400 42111 39173 Face 5537 24217 26899 3830 Face 5538 14404 6182 39200 Face 5539 43749 2772 5296 Face 5540 19970 17778 48034 Face 5541 26759 25884 15392 Face 5542 2278 34676 30385 Face 5543 22836 5205 15500 Face 5544 22836 41461 33816 Face 5545 6545 42280 18966 Face 5546 6545 15486 26200 Face 5547 46138 10217 2750 Face 5548 23427 37971 2776 Face 5549 7625 2777 31645 Face 5550 40241 48421 21658 Face 5551 8975 29049 43641 Face 5552 251 21339 11077 Face 5553 469 32433 8861 Face 5554 9886 18684 7541 Face 5555 30696 17489 43182 Face 5556 19579 1651 23725 Face 5557 9355 19579 23725 Face 5558 15743 39011 2781 Face 5559 28887 45397 35137 Face 5560 48194 34658 31598 Face 5561 14403 8792 33743 Face 5562 40189 15414 2783 Face 5563 10122 30586 4222 Face 5564 26189 30588 34013 Face 5565 7022 2785 32086 Face 5566 47589 23614 2785 Face 5567 35402 2786 23838 Face 5568 18040 951 44565 Face 5569 11346 49354 21158 Face 5570 22409 28165 2787 Face 5571 17962 10453 23757 Face 5572 27307 12719 43572 Face 5573 27244 2789 37899 Face 5574 6210 19210 28047 Face 5575 47594 3278 13223 Face 5576 25007 21572 27244 Face 5577 21781 24050 45727 Face 5578 41071 17761 25124 Face 5579 37287 40493 17057 Face 5580 21792 5807 48067 Face 5581 12599 48502 34159 Face 5582 2792 43375 48502 Face 5583 6791 17775 46052 Face 5584 37650 23259 17775 Face 5585 9979 36268 26234 Face 5586 45488 5536 15827 Face 5587 29725 43772 12350 Face 5588 35363 43869 20144 Face 5589 32544 8739 13244 Face 5590 32544 26663 8739 Face 5591 13244 10611 25390 Face 5592 44932 25613 10612 Face 5593 40379 44930 2798 Face 5594 1100 7225 24259 Face 5595 17031 42619 5603 Face 5596 13900 8655 29527 Face 5597 11041 40377 18506 Face 5598 32396 20593 15759 Face 5599 14853 28271 2810 Face 5600 17471 30379 14273 Face 5601 42251 21664 17316 Face 5602 29565 15190 47703 Face 5603 35148 30272 11102 Face 5604 7749 30006 2804 Face 5605 42196 31466 47073 Face 5606 42748 5781 24458 Face 5607 2378 42748 38970 Face 5608 44368 44527 2806 Face 5609 20491 45616 35814 Face 5610 20491 24667 26542 Face 5611 23745 31231 38438 Face 5612 42411 20178 30518 Face 5613 49847 36029 12483 Face 5614 23607 19304 15187 Face 5615 36512 13727 10541 Face 5616 49381 14149 33589 Face 5617 36511 22682 19979 Face 5618 1438 8013 20406 Face 5619 23517 2812 30484 Face 5620 32406 4056 13375 Face 5621 38568 21648 21242 Face 5622 38666 4204 23315 Face 5623 26 18298 14004 Face 5624 3338 48326 43479 Face 5625 11317 10127 20800 Face 5626 11317 18588 10127 Face 5627 25294 11399 35975 Face 5628 9582 2716 14507 Face 5629 2816 34899 1991 Face 5630 17584 13544 24009 Face 5631 32669 45027 13520 Face 5632 39718 41355 30068 Face 5633 21081 3515 13788 Face 5634 47694 31569 25716 Face 5635 39718 8354 41355 Face 5636 10420 13788 3515 Face 5637 32786 23229 29638 Face 5638 32786 2047 23229 Face 5639 25267 22272 21474 Face 5640 27089 36333 20846 Face 5641 20668 35707 19843 Face 5642 14976 14893 42712 Face 5643 30818 35892 38065 Face 5644 32920 43919 14649 Face 5645 588 12956 3179 Face 5646 28728 14783 34966 Face 5647 1394 48055 35116 Face 5648 22483 10125 34927 Face 5649 38808 2827 8146 Face 5650 3396 8373 17561 Face 5651 29989 48720 36390 Face 5652 179 14271 34526 Face 5653 8116 33772 24897 Face 5654 20325 2566 49559 Face 5655 28021 9811 31546 Face 5656 28021 19985 9811 Face 5657 10072 45084 15738 Face 5658 43236 2830 26703 Face 5659 9315 37103 30562 Face 5660 24988 12921 39075 Face 5661 41192 21859 18612 Face 5662 20726 33979 11184 Face 5663 38303 32686 18817 Face 5664 41071 25124 37685 Face 5665 29496 15938 28950 Face 5666 22014 49522 2835 Face 5667 14788 2836 25076 Face 5668 36028 18825 22014 Face 5669 38696 8948 28880 Face 5670 7834 40739 49504 Face 5671 19915 43009 47950 Face 5672 19915 36750 43009 Face 5673 19660 15740 49100 Face 5674 41457 10812 47405 Face 5675 45010 43459 38799 Face 5676 13519 17204 22217 Face 5677 35009 39435 30460 Face 5678 43793 21883 2841 Face 5679 9083 22460 18404 Face 5680 2377 38518 36832 Face 5681 21150 46473 1153 Face 5682 45682 835 6943 Face 5683 11158 46276 14334 Face 5684 8091 47507 15302 Face 5685 36087 2845 16490 Face 5686 39833 15302 16820 Face 5687 28838 35601 25386 Face 5688 48205 9311 36307 Face 5689 42077 14348 22859 Face 5690 24966 9402 32654 Face 5691 37543 17481 26250 Face 5692 26596 3297 18690 Face 5693 20164 6899 29557 Face 5694 37424 28229 35746 Face 5695 27972 25897 37425 Face 5696 10617 11229 44011 Face 5697 1140 38643 9428 Face 5698 6345 11924 5851 Face 5699 32578 11819 13612 Face 5700 26016 20004 33248 Face 5701 44348 2853 41061 Face 5702 27628 19237 2853 Face 5703 24305 9436 12510 Face 5704 8307 28902 31257 Face 5705 4109 21829 40864 Face 5706 45189 15217 21829 Face 5707 12660 26780 40430 Face 5708 40096 30878 47487 Face 5709 36182 2857 48867 Face 5710 167 11663 46563 Face 5711 17263 44270 42622 Face 5712 37220 25994 27332 Face 5713 3130 47667 21214 Face 5714 12627 38354 13493 Face 5715 40472 18460 28372 Face 5716 14720 9333 42955 Face 5717 951 34241 44565 Face 5718 35713 12654 19396 Face 5719 10942 24071 26191 Face 5720 41188 28550 2862 Face 5721 2862 32868 13869 Face 5722 2862 28550 46203 Face 5723 1770 29224 38403 Face 5724 23351 41103 17451 Face 5725 27161 18552 42789 Face 5726 5142 25032 22295 Face 5727 46500 44400 1851 Face 5728 911 13008 37174 Face 5729 20115 34227 45243 Face 5730 17449 43614 35042 Face 5731 17499 2868 7338 Face 5732 38284 5486 23414 Face 5733 11118 5900 17265 Face 5734 643 21866 41656 Face 5735 23082 15416 21076 Face 5736 4455 14234 17871 Face 5737 49868 14156 48438 Face 5738 36101 28469 2871 Face 5739 32685 2872 18699 Face 5740 49970 27565 12453 Face 5741 9622 25510 8409 Face 5742 718 214 49448 Face 5743 45596 8858 40042 Face 5744 3984 41410 19401 Face 5745 15248 41814 5108 Face 5746 34331 39699 24714 Face 5747 16802 3984 38609 Face 5748 23816 20341 41437 Face 5749 11143 18328 25440 Face 5750 15893 49238 17518 Face 5751 39018 5660 12344 Face 5752 9267 16172 18834 Face 5753 28413 48854 9808 Face 5754 324 14705 48854 Face 5755 11340 24069 47815 Face 5756 9477 36773 42947 Face 5757 37137 14417 18569 Face 5758 42634 16586 35351 Face 5759 40724 13594 3432 Face 5760 33322 19542 2882 Face 5761 10637 34669 35485 Face 5762 658 15371 4735 Face 5763 22973 33776 16519 Face 5764 19625 16808 17774 Face 5765 1155 2885 11449 Face 5766 25664 42375 12141 Face 5767 1155 12584 16921 Face 5768 32204 11479 41173 Face 5769 17208 6697 17910 Face 5770 3881 12037 39616 Face 5771 36560 26892 38141 Face 5772 17172 38689 12757 Face 5773 49404 24134 34412 Face 5774 9390 18782 17172 Face 5775 11612 40476 13263 Face 5776 6862 26121 22197 Face 5777 22249 2891 12472 Face 5778 22249 30158 2891 Face 5779 47380 2892 41346 Face 5780 9633 15949 30955 Face 5781 27199 11943 22745 Face 5782 41933 9205 9327 Face 5783 352 25450 21818 Face 5784 37131 20600 44671 Face 5785 12395 2895 32127 Face 5786 18493 13047 2895 Face 5787 780 29084 12755 Face 5788 22973 16519 20422 Face 5789 48500 17688 46038 Face 5790 12723 8535 31264 Face 5791 1455 2898 23318 Face 5792 39627 45491 19061 Face 5793 24927 37945 13802 Face 5794 40658 24686 26609 Face 5795 14030 2900 18539 Face 5796 48559 44112 34541 Face 5797 25991 10689 47252 Face 5798 4577 33302 17190 Face 5799 30523 2902 28749 Face 5800 5498 38799 28044 Face 5801 21146 14735 11531 Face 5802 33932 34603 22589 Face 5803 11301 30524 46365 Face 5804 14760 45147 6730 Face 5805 49565 35918 17981 Face 5806 4355 31882 37065 Face 5807 28672 45213 36894 Face 5808 36434 26533 11291 Face 5809 44962 15445 4493 Face 5810 34310 17427 8653 Face 5811 44032 2908 20604 Face 5812 18118 8660 15088 Face 5813 12441 2909 48851 Face 5814 47329 41378 34446 Face 5815 15165 13306 16464 Face 5816 700 40617 29491 Face 5817 700 7849 35890 Face 5818 700 40610 7849 Face 5819 10754 29853 42471 Face 5820 34926 3917 26852 Face 5821 20234 26997 42902 Face 5822 24680 29155 33034 Face 5823 30631 10844 43655 Face 5824 29506 18174 31226 Face 5825 2298 37083 31912 Face 5826 2298 31226 37083 Face 5827 666 27140 25380 Face 5828 666 9151 27140 Face 5829 10784 2917 47483 Face 5830 42304 27125 18856 Face 5831 381 14159 29046 Face 5832 21136 6333 37898 Face 5833 11667 40938 36689 Face 5834 46653 4967 33130 Face 5835 23580 13022 17356 Face 5836 21653 12745 35955 Face 5837 15661 22184 26162 Face 5838 20567 44346 36969 Face 5839 1035 16832 42341 Face 5840 18954 6163 35544 Face 5841 13141 8308 39017 Face 5842 32764 29998 8511 Face 5843 42959 2924 31882 Face 5844 22478 25169 29029 Face 5845 47289 36066 26716 Face 5846 407 14144 43353 Face 5847 19679 17260 3551 Face 5848 21776 35497 29456 Face 5849 5656 43127 25030 Face 5850 31338 9507 43127 Face 5851 23742 18308 42423 Face 5852 23742 4080 18308 Face 5853 24255 2929 9240 Face 5854 35245 13201 42417 Face 5855 1530 20097 21537 Face 5856 32033 19564 30779 Face 5857 29409 23977 17254 Face 5858 45866 21259 2931 Face 5859 45817 11945 28876 Face 5860 21921 28720 7327 Face 5861 21137 9069 2934 Face 5862 2931 21259 9068 Face 5863 2935 2934 9069 Face 5864 4537 14063 2934 Face 5865 49162 2935 2933 Face 5866 4537 2934 2935 Face 5867 30746 26210 25669 Face 5868 46851 9697 39438 Face 5869 30570 11372 36723 Face 5870 25835 6820 15532 Face 5871 21990 21308 33007 Face 5872 22224 7775 37806 Face 5873 20280 9181 2085 Face 5874 47693 28286 45643 Face 5875 19317 11553 16401 Face 5876 11207 24083 32569 Face 5877 16488 48871 2224 Face 5878 30164 41347 16756 Face 5879 28952 39398 2417 Face 5880 24952 10245 43697 Face 5881 48489 29759 10246 Face 5882 38361 2417 42679 Face 5883 20943 5330 31282 Face 5884 27610 28565 15746 Face 5885 44607 13171 41333 Face 5886 22323 9309 13171 Face 5887 15780 10946 11748 Face 5888 31863 4401 42366 Face 5889 45495 16672 48902 Face 5890 16482 41630 27655 Face 5891 380 48880 25445 Face 5892 49086 14856 23152 Face 5893 11643 42147 30515 Face 5894 49062 18826 33264 Face 5895 13410 31242 37201 Face 5896 42078 35554 21619 Face 5897 5483 20119 48700 Face 5898 5483 17060 2951 Face 5899 27024 12835 8579 Face 5900 15954 4189 31281 Face 5901 49187 49005 26372 Face 5902 25002 27884 45003 Face 5903 10864 36863 47029 Face 5904 45365 21511 37793 Face 5905 9881 40095 552 Face 5906 18610 29309 49653 Face 5907 49535 2956 14632 Face 5908 15276 36437 36292 Face 5909 17121 8488 22719 Face 5910 3325 38221 16128 Face 5911 40869 18674 41458 Face 5912 43157 23861 18676 Face 5913 6627 31029 29020 Face 5914 8501 2958 25952 Face 5915 16450 6063 16858 Face 5916 18468 25793 2960 Face 5917 34085 23423 49443 Face 5918 21288 1176 39952 Face 5919 32799 42909 13624 Face 5920 18335 11050 43285 Face 5921 25277 20843 41073 Face 5922 33676 9754 2963 Face 5923 37958 42262 27586 Face 5924 35442 12486 20646 Face 5925 1409 40649 28533 Face 5926 42259 41620 40649 Face 5927 14422 36871 11495 Face 5928 44462 6197 15162 Face 5929 23866 17269 42106 Face 5930 23866 28733 17269 Face 5931 30512 45703 8246 Face 5932 48221 44055 2968 Face 5933 14688 43506 2914 Face 5934 35425 20445 2969 Face 5935 6165 32090 11585 Face 5936 6165 23829 27622 Face 5937 10530 14841 41796 Face 5938 10530 24014 33758 Face 5939 26692 6753 11713 Face 5940 26414 16438 2972 Face 5941 20777 4933 12454 Face 5942 18566 2972 25910 Face 5943 46999 2974 18714 Face 5944 40771 38830 27891 Face 5945 42291 13541 29543 Face 5946 1506 48899 13541 Face 5947 20575 17108 18412 Face 5948 21412 9854 26540 Face 5949 45609 41778 13756 Face 5950 38819 10820 22112 Face 5951 29150 38580 4137 Face 5952 12673 46147 17070 Face 5953 37680 36336 32296 Face 5954 15067 3926 19448 Face 5955 12654 37147 19396 Face 5956 18625 7219 27033 Face 5957 15901 40287 23244 Face 5958 35448 37811 31957 Face 5959 31999 2982 7805 Face 5960 12308 15951 48078 Face 5961 27507 31018 9412 Face 5962 42790 14813 30561 Face 5963 34805 29132 7185 Face 5964 14230 40023 19505 Face 5965 5959 31096 13687 Face 5966 22106 17124 31096 Face 5967 13833 23301 2987 Face 5968 13833 13092 4818 Face 5969 14837 46516 12488 Face 5970 24417 13833 2987 Face 5971 49125 2988 36397 Face 5972 43075 9675 34189 Face 5973 5046 38087 8378 Face 5974 5046 49383 19012 Face 5975 22138 24352 15807 Face 5976 40582 20249 46270 Face 5977 13336 23413 32677 Face 5978 246 5286 5957 Face 5979 37158 35978 20215 Face 5980 8743 20294 42198 Face 5981 9007 38863 18452 Face 5982 49189 34675 2993 Face 5983 24642 28440 31311 Face 5984 34573 1957 42729 Face 5985 5394 32139 9748 Face 5986 23674 9790 14811 Face 5987 19759 36071 6048 Face 5988 27598 38018 2996 Face 5989 20528 31354 7070 Face 5990 18179 12930 7601 Face 5991 12298 28554 36105 Face 5992 43555 2407 24175 Face 5993 46453 9489 49658 Face 5994 9641 15174 34464 Face 5995 25711 14262 18127 Face 5996 40928 35807 9489 Face 5997 13230 28842 25228 Face 5998 378 26988 37658 Face 5999 32687 3002 37568 Face 6000 4052 25228 28842 Face 6001 26389 27257 12558 Face 6002 37198 16738 49399 Face 6003 13213 30195 41535 Face 6004 19699 21715 9974 Face 6005 22494 18568 15118 Face 6006 33517 7963 25495 Face 6007 1160 39632 14109 Face 6008 1160 1920 39632 Face 6009 19778 3007 24157 Face 6010 23999 11112 29420 Face 6011 39785 3008 18352 Face 6012 39785 14490 3008 Face 6013 35954 48092 6398 Face 6014 13946 34243 22204 Face 6015 46863 33408 28794 Face 6016 25511 44873 24976 Face 6017 47403 32412 29917 Face 6018 37153 12363 6610 Face 6019 36162 3012 12008 Face 6020 36163 24397 22867 Face 6021 27194 3013 14942 Face 6022 27194 48850 40523 Face 6023 1354 23219 3804 Face 6024 1354 16819 23219 Face 6025 30880 20349 30418 Face 6026 11143 23305 15690 Face 6027 13556 47399 38621 Face 6028 13555 49810 40750 Face 6029 39582 23535 45712 Face 6030 410 42589 45561 Face 6031 37536 39894 22565 Face 6032 39452 5663 17747 Face 6033 48211 11922 27404 Face 6034 25661 12444 12815 Face 6035 36052 8700 23127 Face 6036 33318 11822 28488 Face 6037 8897 14982 8165 Face 6038 22791 11823 18025 Face 6039 18208 41223 39395 Face 6040 18208 40963 41223 Face 6041 43777 24347 45750 Face 6042 7584 33686 35962 Face 6043 36693 5797 42985 Face 6044 45074 24295 26591 Face 6045 16927 3025 31820 Face 6046 21570 12967 44671 Face 6047 30638 17079 11521 Face 6048 572 29882 26174 Face 6049 23988 10035 49965 Face 6050 12767 27614 20885 Face 6051 30054 24310 21277 Face 6052 30111 34846 29034 Face 6053 30266 46729 6727 Face 6054 15560 24759 9100 Face 6055 9628 9892 23817 Face 6056 49642 9919 31787 Face 6057 11582 27576 5881 Face 6058 22388 38887 21851 Face 6059 30698 30107 36795 Face 6060 7115 27964 18647 Face 6061 33326 24648 26958 Face 6062 35340 14953 18654 Face 6063 12033 23128 41785 Face 6064 12033 35495 23128 Face 6065 3036 18849 34883 Face 6066 14460 47347 26666 Face 6067 12741 3036 22987 Face 6068 32423 18849 3036 Face 6069 4851 22654 31103 Face 6070 12665 36521 24769 Face 6071 23421 20735 5789 Face 6072 42680 16806 22731 Face 6073 41002 5789 17751 Face 6074 1033 41687 32265 Face 6075 28117 3040 16478 Face 6076 32655 7855 35387 Face 6077 46401 15752 38512 Face 6078 37629 5693 17163 Face 6079 19200 38790 16893 Face 6080 4817 16150 23148 Face 6081 24035 49136 27180 Face 6082 28089 39336 17494 Face 6083 43778 42170 13736 Face 6084 24099 34467 30048 Face 6085 16815 3045 39285 Face 6086 16815 38231 3045 Face 6087 953 16507 49891 Face 6088 4723 32144 16507 Face 6089 22763 11481 41133 Face 6090 22763 30059 11481 Face 6091 26718 44579 9282 Face 6092 15643 39873 20865 Face 6093 18742 44863 45992 Face 6094 36932 40606 12727 Face 6095 8722 3050 20282 Face 6096 2260 10315 25848 Face 6097 753 42380 24421 Face 6098 8775 48229 3051 Face 6099 16386 13527 7503 Face 6100 12456 15018 18112 Face 6101 32242 28768 11151 Face 6102 9058 24130 28768 Face 6103 43449 32242 11151 Face 6104 40395 10938 3054 Face 6105 430 16542 41574 Face 6106 430 29044 16542 Face 6107 17874 29477 24608 Face 6108 39158 17769 3056 Face 6109 23591 19402 1900 Face 6110 24755 46104 30560 Face 6111 32083 40415 48655 Face 6112 32083 20102 3058 Face 6113 26901 34480 11972 Face 6114 5206 8324 30308 Face 6115 15397 19497 25024 Face 6116 46040 14039 35809 Face 6117 18205 29844 32664 Face 6118 26842 18833 49442 Face 6119 43655 17047 30631 Face 6120 885 35080 19817 Face 6121 43798 33653 22914 Face 6122 12251 43408 40612 Face 6123 27 31662 47578 Face 6124 46534 25056 32020 Face 6125 27 28943 31662 Face 6126 19691 32816 11296 Face 6127 16938 23972 39490 Face 6128 11296 32816 19764 Face 6129 33056 3067 9400 Face 6130 10526 49964 32516 Face 6131 43123 10134 14141 Face 6132 43966 29954 39024 Face 6133 33056 10526 3067 Face 6134 4060 39024 44477 Face 6135 185 28525 6985 Face 6136 36741 30400 48807 Face 6137 8847 28814 21835 Face 6138 31510 10542 3071 Face 6139 40785 34367 27697 Face 6140 19524 46117 29847 Face 6141 8229 37651 30320 Face 6142 8229 18142 37651 Face 6143 28497 39165 17206 Face 6144 28497 40376 39165 Face 6145 18663 21594 45220 Face 6146 1075 29965 49923 Face 6147 35355 9368 21128 Face 6148 11098 27011 25427 Face 6149 21306 6901 28453 Face 6150 20650 16100 3077 Face 6151 44867 3078 9698 Face 6152 44867 16052 23036 Face 6153 18781 43715 31663 Face 6154 18818 47162 11001 Face 6155 5947 17996 26531 Face 6156 4 43059 26131 Face 6157 36200 14639 29047 Face 6158 36200 5407 14639 Face 6159 18339 3082 36256 Face 6160 21322 27194 26280 Face 6161 30833 48277 19701 Face 6162 4495 41921 18410 Face 6163 19908 17670 47316 Face 6164 32511 2719 23670 Face 6165 21288 37283 14974 Face 6166 34084 29694 20877 Face 6167 9733 47406 4483 Face 6168 22121 31324 15247 Face 6169 22508 17012 3928 Face 6170 41519 36352 3087 Face 6171 22691 34043 16697 Face 6172 8165 38964 39461 Face 6173 25969 12695 32608 Face 6174 20676 23001 44825 Face 6175 7510 20197 19048 Face 6176 7510 27864 20197 Face 6177 12023 24328 2826 Face 6178 19685 47732 19090 Face 6179 47840 45756 24072 Face 6180 296 20466 40213 Face 6181 17677 16709 9168 Face 6182 19598 9864 47341 Face 6183 24473 16532 36772 Face 6184 15855 8310 19378 Face 6185 24531 36689 34313 Face 6186 32907 13054 22870 Face 6187 33818 7324 22870 Face 6188 16241 6065 31566 Face 6189 13535 48484 15928 Face 6190 36032 18284 34980 Face 6191 3097 46047 16150 Face 6192 3097 12917 21165 Face 6193 49345 35272 6083 Face 6194 49345 38361 12493 Face 6195 37244 38197 25045 Face 6196 35874 15040 30221 Face 6197 638 38952 26662 Face 6198 28274 46720 10750 Face 6199 49597 3102 3092 Face 6200 36213 2533 46380 Face 6201 9824 37329 31291 Face 6202 24147 12475 48347 Face 6203 6986 44953 23484 Face 6204 9208 25413 44954 Face 6205 12993 21825 38788 Face 6206 19299 48531 23087 Face 6207 17296 3106 46610 Face 6208 17296 12132 3106 Face 6209 21237 43915 8803 Face 6210 42299 24460 37583 Face 6211 3943 27414 16166 Face 6212 3943 24711 27414 Face 6213 10797 22607 10304 Face 6214 10797 20781 22607 Face 6215 30340 11724 2343 Face 6216 22909 31298 41334 Face 6217 9300 3111 7410 Face 6218 20390 21577 35018 Face 6219 4378 45947 2639 Face 6220 19082 10566 28551 Face 6221 32535 39283 3277 Face 6222 39143 7195 26417 Face 6223 46523 16253 26215 Face 6224 4918 48205 21959 Face 6225 9562 23112 12022 Face 6226 11191 13944 18597 Face 6227 1993 29868 41815 Face 6228 11191 18367 9562 Face 6229 13673 36390 48720 Face 6230 35244 12791 23622 Face 6231 41703 31605 16732 Face 6232 21469 46627 37445 Face 6233 4451 47089 49369 Face 6234 46979 5159 15778 Face 6235 26896 10796 11242 Face 6236 36854 23584 41808 Face 6237 9212 3121 22375 Face 6238 25988 5910 43109 Face 6239 24483 46134 18110 Face 6240 30216 45386 19364 Face 6241 41675 29641 635 Face 6242 29802 3429 16170 Face 6243 9012 29975 38976 Face 6244 9012 12835 29975 Face 6245 42005 12346 6309 Face 6246 32879 31640 43951 Face 6247 42936 30282 10434 Face 6248 23608 18614 8414 Face 6249 23573 34762 30282 Face 6250 41584 4768 27590 Face 6251 28766 16932 34108 Face 6252 41420 28360 35047 Face 6253 33313 46799 7050 Face 6254 49376 3252 11178 Face 6255 19716 18882 11439 Face 6256 35600 20124 23813 Face 6257 45456 22535 33622 Face 6258 45456 36275 22535 Face 6259 22703 27839 5139 Face 6260 33792 47980 34559 Face 6261 32385 3133 40915 Face 6262 32385 26185 3133 Face 6263 28869 36874 49168 Face 6264 47912 8093 27328 Face 6265 39247 36124 6943 Face 6266 39247 49661 36124 Face 6267 8358 37559 42364 Face 6268 19487 1434 40455 Face 6269 12874 34094 48148 Face 6270 14366 20907 37434 Face 6271 13089 21974 49681 Face 6272 12716 6363 23624 Face 6273 20612 9119 9476 Face 6274 5156 12181 17889 Face 6275 47086 3140 26244 Face 6276 37722 11697 20666 Face 6277 15398 3141 26245 Face 6278 39235 34459 45035 Face 6279 33925 28125 28298 Face 6280 7149 34488 20174 Face 6281 6491 25607 12653 Face 6282 9 16642 22458 Face 6283 41936 45771 10029 Face 6284 21646 25279 43301 Face 6285 13773 47420 30184 Face 6286 28492 664 21919 Face 6287 19260 3146 28029 Face 6288 22678 21646 43301 Face 6289 6578 45146 21453 Face 6290 40891 18832 3147 Face 6291 44138 22726 4684 Face 6292 1065 25799 17419 Face 6293 30616 24058 15104 Face 6294 26579 2988 49125 Face 6295 33123 12102 4357 Face 6296 19267 12332 23954 Face 6297 1367 17170 12069 Face 6298 3152 12953 8730 Face 6299 6403 29834 15937 Face 6300 6403 44828 29834 Face 6301 36235 48604 11239 Face 6302 22144 37572 30095 Face 6303 21899 26983 23534 Face 6304 49553 16749 13276 Face 6305 22144 7809 37572 Face 6306 46069 16069 22658 Face 6307 14313 3156 31434 Face 6308 6487 23647 8374 Face 6309 37494 29952 47169 Face 6310 30336 3903 11812 Face 6311 4304 24567 12987 Face 6312 33537 34192 45199 Face 6313 37133 46020 32632 Face 6314 4264 45907 49603 Face 6315 21277 3160 30054 Face 6316 38055 963 14335 Face 6317 24010 34605 18641 Face 6318 24011 12456 44795 Face 6319 41827 48824 32057 Face 6320 1132 24190 6384 Face 6321 30722 21302 36904 Face 6322 10941 21391 14225 Face 6323 21340 3164 37493 Face 6324 13063 41113 21223 Face 6325 32303 32884 48296 Face 6326 37709 1518 10755 Face 6327 27783 32379 45068 Face 6328 22333 8912 25120 Face 6329 16710 35638 7339 Face 6330 27762 16733 12958 Face 6331 16571 23625 46721 Face 6332 14572 21872 42709 Face 6333 30981 18966 31508 Face 6334 40176 31300 23885 Face 6335 37629 33810 5693 Face 6336 445 35538 18841 Face 6337 14226 43043 4173 Face 6338 10767 30962 44144 Face 6339 21239 28674 16015 Face 6340 14910 28699 27296 Face 6341 10840 27296 11238 Face 6342 12664 37197 32642 Face 6343 1434 19381 40455 Face 6344 4215 23535 17447 Face 6345 28072 12202 39870 Face 6346 15227 45480 9752 Face 6347 14663 13712 4628 Face 6348 45444 42381 30537 Face 6349 22489 27047 10991 Face 6350 37014 33317 46332 Face 6351 6764 18489 49777 Face 6352 4656 3677 25494 Face 6353 1932 28323 12956 Face 6354 9861 14124 33188 Face 6355 17953 10200 5331 Face 6356 13355 10112 3180 Face 6357 23793 12799 26418 Face 6358 2676 43490 13317 Face 6359 24326 28638 43998 Face 6360 14219 40015 28946 Face 6361 19056 35940 2498 Face 6362 36426 6319 47942 Face 6363 25861 34701 22228 Face 6364 25861 13578 3184 Face 6365 46947 24182 4658 Face 6366 44594 35181 3185 Face 6367 13216 20546 29110 Face 6368 16162 4554 20295 Face 6369 39286 3187 17479 Face 6370 32704 13822 3187 Face 6371 41048 3188 28916 Face 6372 3189 28092 35871 Face 6373 9995 46837 3188 Face 6374 740 25573 30918 Face 6375 1311 18716 49000 Face 6376 16464 13306 22956 Face 6377 26122 16204 27070 Face 6378 1361 12627 35481 Face 6379 19360 28718 7725 Face 6380 28902 8307 44040 Face 6381 7321 43035 15877 Face 6382 3201 12871 34864 Face 6383 15145 18995 28825 Face 6384 44873 48918 18995 Face 6385 18784 7897 41811 Face 6386 35709 26730 38201 Face 6387 39847 36571 8689 Face 6388 924 20191 23858 Face 6389 29418 3197 26999 Face 6390 43083 10153 12134 Face 6391 22563 3198 37256 Face 6392 22563 39538 3198 Face 6393 17945 47909 31274 Face 6394 14272 27799 15240 Face 6395 38779 46028 43274 Face 6396 33297 35124 15241 Face 6397 23581 35496 9416 Face 6398 32750 14603 25156 Face 6399 12000 3202 17668 Face 6400 17694 5103 29091 Face 6401 13277 17938 38762 Face 6402 36754 4527 3203 Face 6403 20272 3204 26058 Face 6404 20272 43672 3204 Face 6405 760 24893 34501 Face 6406 760 2261 24893 Face 6407 41823 3206 24082 Face 6408 30974 13385 3206 Face 6409 939 35743 42410 Face 6410 35242 37574 3207 Face 6411 23396 45527 31808 Face 6412 13979 9543 42844 Face 6413 14994 13924 30919 Face 6414 14187 24455 25568 Face 6415 626 3210 32201 Face 6416 32208 1197 10745 Face 6417 47457 22258 38793 Face 6418 10745 1197 30877 Face 6419 5557 27688 41589 Face 6420 19122 48915 25557 Face 6421 25945 32530 18427 Face 6422 3648 16361 35291 Face 6423 8881 49021 42827 Face 6424 24279 11612 13263 Face 6425 26332 9921 5836 Face 6426 13878 9661 29604 Face 6427 16565 23177 5653 Face 6428 30482 17842 26332 Face 6429 44079 3217 26368 Face 6430 48474 37828 3217 Face 6431 41131 43028 22055 Face 6432 15797 40738 7474 Face 6433 29788 34760 22057 Face 6434 3435 40666 13441 Face 6435 38069 30079 44826 Face 6436 30456 18784 45483 Face 6437 23399 30584 47349 Face 6438 7211 48783 46214 Face 6439 2013 31609 18373 Face 6440 6600 4785 29075 Face 6441 30649 35876 28353 Face 6442 47516 6044 16897 Face 6443 47956 32986 49786 Face 6444 3896 8295 11418 Face 6445 35669 47952 15809 Face 6446 22511 34992 40985 Face 6447 30090 46125 35861 Face 6448 21810 45973 6749 Face 6449 40532 44373 16185 Face 6450 33771 39487 3227 Face 6451 1944 43381 19583 Face 6452 19852 40334 3228 Face 6453 29160 22497 25770 Face 6454 19680 10060 26659 Face 6455 23334 42594 28731 Face 6456 48136 17409 38282 Face 6457 10274 14994 30919 Face 6458 4860 24455 14187 Face 6459 18224 28410 10426 Face 6460 6574 1358 46952 Face 6461 28383 40698 7188 Face 6462 16670 35881 24552 Face 6463 676 27368 14964 Face 6464 41209 36814 3234 Face 6465 24592 22758 14053 Face 6466 13107 26937 3235 Face 6467 25217 34649 31128 Face 6468 48957 9681 5894 Face 6469 41449 11135 13380 Face 6470 12128 2201 46357 Face 6471 32924 26156 14800 Face 6472 19368 42243 3238 Face 6473 32955 44552 1793 Face 6474 32300 7052 3239 Face 6475 15332 26624 18904 Face 6476 16814 14270 28414 Face 6477 27123 35382 3943 Face 6478 8134 16910 16068 Face 6479 43764 7884 26394 Face 6480 36348 47296 16664 Face 6481 16633 27123 3943 Face 6482 44775 47635 26801 Face 6483 42040 25475 17663 Face 6484 33533 39052 11686 Face 6485 13307 5596 39036 Face 6486 35927 49271 22805 Face 6487 1037 33533 11686 Face 6488 25541 14936 15750 Face 6489 46153 29083 31893 Face 6490 27872 25025 15833 Face 6491 13162 4605 30045 Face 6492 13162 33540 4605 Face 6493 27886 25539 2598 Face 6494 31445 47499 16793 Face 6495 15226 10026 3676 Face 6496 9816 16990 10027 Face 6497 43191 34365 20078 Face 6498 29003 11369 32217 Face 6499 2749 29337 38655 Face 6500 2749 20622 34736 Face 6501 42208 12910 6344 Face 6502 33417 16390 12910 Face 6503 31545 41089 27844 Face 6504 31386 23354 41089 Face 6505 27537 45655 32085 Face 6506 44353 36097 12500 Face 6507 13357 19928 3255 Face 6508 28321 36097 44353 Face 6509 47500 35041 16727 Face 6510 19455 49715 3257 Face 6511 33844 32615 19357 Face 6512 21093 19055 32048 Face 6513 5897 19223 44318 Face 6514 5897 31024 19223 Face 6515 14564 46991 21693 Face 6516 10853 40413 37734 Face 6517 563 20715 30739 Face 6518 5944 2536 29678 Face 6519 39507 17547 15873 Face 6520 960 21580 14551 Face 6521 39948 45884 38676 Face 6522 40220 7685 31100 Face 6523 43900 21911 3411 Face 6524 13277 18955 38318 Face 6525 22044 26886 37924 Face 6526 38117 47514 14903 Face 6527 14353 26265 16986 Face 6528 27309 42440 19851 Face 6529 25448 44113 29826 Face 6530 28595 37013 27259 Face 6531 38403 34141 1770 Face 6532 9231 28280 13122 Face 6533 1874 11297 46652 Face 6534 1874 14778 11297 Face 6535 49896 29160 17019 Face 6536 49896 22497 29160 Face 6537 16607 6692 23705 Face 6538 47834 44504 3271 Face 6539 11700 16597 1495 Face 6540 31272 6270 21009 Face 6541 43779 3273 24213 Face 6542 23950 39761 15360 Face 6543 19280 37273 32796 Face 6544 23950 3273 43779 Face 6545 41830 3275 47145 Face 6546 30188 44056 14914 Face 6547 11195 32628 8474 Face 6548 4495 18410 30833 Face 6549 439 3277 39283 Face 6550 10940 36431 37909 Face 6551 41477 3278 18219 Face 6552 41477 10163 3278 Face 6553 7032 37443 2754 Face 6554 38934 49961 40550 Face 6555 32651 12448 4164 Face 6556 21999 41308 7886 Face 6557 47347 18022 26666 Face 6558 31255 22581 27852 Face 6559 21362 34911 18023 Face 6560 22858 45928 3282 Face 6561 1082 10268 18215 Face 6562 31046 10803 10268 Face 6563 39567 3284 6744 Face 6564 49384 32577 3284 Face 6565 14789 25972 29038 Face 6566 25800 5700 41563 Face 6567 49434 3286 17964 Face 6568 49434 1717 32675 Face 6569 17903 3287 45531 Face 6570 8241 47546 19102 Face 6571 38245 9958 854 Face 6572 35396 22059 9455 Face 6573 8299 17062 39008 Face 6574 41061 30729 28924 Face 6575 11282 3290 23412 Face 6576 8933 3827 17022 Face 6577 4522 37365 28509 Face 6578 1086 10999 22164 Face 6579 6164 10376 43939 Face 6580 33578 6431 45930 Face 6581 29145 20811 43239 Face 6582 10964 31186 45932 Face 6583 19785 34837 853 Face 6584 30633 37309 16599 Face 6585 328 24074 39611 Face 6586 28649 31156 9250 Face 6587 48417 32660 23382 Face 6588 30766 19106 3296 Face 6589 18226 22463 26596 Face 6590 10415 39945 5033 Face 6591 11417 48203 7126 Face 6592 10915 16904 3298 Face 6593 35349 13499 22712 Face 6594 20830 3298 40378 Face 6595 1178 3300 49344 Face 6596 5247 42934 3300 Face 6597 40755 3301 41135 Face 6598 29466 7793 37670 Face 6599 33671 10621 11278 Face 6600 7627 40918 3302 Face 6601 35301 25700 17009 Face 6602 3942 25859 3303 Face 6603 32717 49803 20663 Face 6604 32717 25763 40499 Face 6605 21964 13825 45526 Face 6606 25482 47173 37517 Face 6607 651 44380 15947 Face 6608 13915 9128 18692 Face 6609 49732 35478 17717 Face 6610 38839 15609 23342 Face 6611 33378 11628 41169 Face 6612 28596 47355 40247 Face 6613 569 4152 43879 Face 6614 14901 1721 31181 Face 6615 5704 16881 24339 Face 6616 393 6778 20808 Face 6617 6078 5588 16299 Face 6618 381 17989 32481 Face 6619 36536 15632 26291 Face 6620 42772 20206 36543 Face 6621 32418 13110 40621 Face 6622 32418 48513 3313 Face 6623 35908 5937 13297 Face 6624 27372 37249 12896 Face 6625 10382 45637 12080 Face 6626 37727 16836 8275 Face 6627 47053 3316 34787 Face 6628 13147 20700 27796 Face 6629 48525 31606 22994 Face 6630 22114 11149 17401 Face 6631 24995 3318 48876 Face 6632 8728 15632 36536 Face 6633 9865 3319 32216 Face 6634 23686 6816 21444 Face 6635 1476 23804 26386 Face 6636 14421 42889 30959 Face 6637 18924 3321 20556 Face 6638 7447 26781 3321 Face 6639 7447 42767 26781 Face 6640 20712 8675 39521 Face 6641 12384 32058 48027 Face 6642 24475 44777 3323 Face 6643 12969 3324 19722 Face 6644 12969 27672 3324 Face 6645 32416 3325 16128 Face 6646 22894 5091 15719 Face 6647 13436 3326 21777 Face 6648 13436 21621 3326 Face 6649 37139 3327 9869 Face 6650 37904 7110 3327 Face 6651 15269 3328 20348 Face 6652 25064 26085 19556 Face 6653 3365 35527 15404 Face 6654 34071 26688 29869 Face 6655 36595 20395 11519 Face 6656 49807 26665 16388 Face 6657 7621 26742 13658 Face 6658 24568 32421 3331 Face 6659 1245 38752 18377 Face 6660 32160 36301 24120 Face 6661 17279 3333 17504 Face 6662 49378 20483 32401 Face 6663 49812 3334 22156 Face 6664 37123 6970 3334 Face 6665 9002 48745 13868 Face 6666 4059 40849 11304 Face 6667 31963 32343 11761 Face 6668 21727 11930 46783 Face 6669 24799 24851 13848 Face 6670 19676 18795 35139 Face 6671 26 26612 18298 Face 6672 32350 1379 12878 Face 6673 45278 31894 19504 Face 6674 18902 25725 38483 Face 6675 21545 9969 38775 Face 6676 47494 33773 19058 Face 6677 21545 19422 3340 Face 6678 29619 379 22883 Face 6679 8787 16460 42915 Face 6680 4273 17540 37739 Face 6681 24992 8083 28267 Face 6682 47461 32121 32757 Face 6683 18225 3344 30584 Face 6684 42628 43786 18060 Face 6685 20327 3345 5745 Face 6686 29271 28302 48209 Face 6687 33048 28300 41270 Face 6688 45239 48209 3346 Face 6689 22537 3347 40529 Face 6690 46102 45850 3347 Face 6691 33581 37186 46174 Face 6692 17689 18172 41718 Face 6693 18449 41766 38756 Face 6694 17689 24073 38249 Face 6695 16591 45904 24073 Face 6696 20284 39466 31821 Face 6697 432 29811 43661 Face 6698 23149 6620 18752 Face 6699 21910 3352 48437 Face 6700 48335 19576 8074 Face 6701 24346 3353 14896 Face 6702 24346 23332 3353 Face 6703 49706 49575 27985 Face 6704 17723 17905 12849 Face 6705 37431 30306 35845 Face 6706 184 2954 3355 Face 6707 3048 48299 30230 Face 6708 3357 9640 25086 Face 6709 34144 3357 47555 Face 6710 39142 33907 29000 Face 6711 15836 44339 30409 Face 6712 42102 10914 18484 Face 6713 20882 16252 44442 Face 6714 20882 10710 16252 Face 6715 7749 23260 30006 Face 6716 38238 46496 23260 Face 6717 17299 13400 19880 Face 6718 21988 13466 41074 Face 6719 28481 30416 23126 Face 6720 28481 28254 3362 Face 6721 946 30978 26894 Face 6722 19099 7480 29937 Face 6723 26702 43289 13387 Face 6724 357 13312 3364 Face 6725 14238 47209 35356 Face 6726 40700 35527 3365 Face 6727 40814 10136 22087 Face 6728 1089 49505 3366 Face 6729 8507 28331 36904 Face 6730 21834 33280 40552 Face 6731 31112 19234 11765 Face 6732 44226 7081 21640 Face 6733 1878 18998 35659 Face 6734 5670 32989 3369 Face 6735 14197 19808 2006 Face 6736 1600 32236 6515 Face 6737 46187 26059 3947 Face 6738 44862 5572 14478 Face 6739 5345 37068 34183 Face 6740 18052 46826 47933 Face 6741 11696 3373 18779 Face 6742 41970 42016 18773 Face 6743 23167 30091 23707 Face 6744 26022 45973 42076 Face 6745 31376 40243 10100 Face 6746 6859 15870 40243 Face 6747 31035 3376 34635 Face 6748 226 2584 14090 Face 6749 9364 3377 35602 Face 6750 799 23238 19956 Face 6751 12806 47214 6510 Face 6752 21097 7648 35262 Face 6753 827 10568 17772 Face 6754 10047 25011 17469 Face 6755 28991 3380 14120 Face 6756 28991 43349 3380 Face 6757 43553 33523 12856 Face 6758 49659 9686 30693 Face 6759 24456 30093 18914 Face 6760 18959 24267 9569 Face 6761 19017 27323 751 Face 6762 18921 9679 7853 Face 6763 31644 36136 35790 Face 6764 7161 30189 44383 Face 6765 30678 17437 34041 Face 6766 39170 11383 17437 Face 6767 34709 3386 4435 Face 6768 31212 18498 3386 Face 6769 13855 18223 33131 Face 6770 30099 1403 17700 Face 6771 26398 19285 24013 Face 6772 38820 41392 8293 Face 6773 45748 25235 10419 Face 6774 29187 29461 21418 Face 6775 9849 35751 46118 Face 6776 11609 19360 7725 Face 6777 38945 17087 21599 Face 6778 39496 28744 40482 Face 6779 8093 31841 25357 Face 6780 18532 43264 11740 Face 6781 45370 38747 45643 Face 6782 34242 38433 3393 Face 6783 35960 32798 11115 Face 6784 35961 24479 31836 Face 6785 17174 3396 41409 Face 6786 46051 11543 3396 Face 6787 23642 3396 11543 Face 6788 23642 32345 3396 Face 6789 33281 7889 14702 Face 6790 27063 34965 5104 Face 6791 22239 3399 9113 Face 6792 21194 5688 37062 Face 6793 37062 11795 21194 Face 6794 3398 16233 11795 Face 6795 9266 3400 24503 Face 6796 15939 20946 38001 Face 6797 14316 46914 40534 Face 6798 13320 22381 37621 Face 6799 18911 16877 34610 Face 6800 1284 6497 8408 Face 6801 36183 34429 6897 Face 6802 1419 23210 44198 Face 6803 23278 20263 5908 Face 6804 13034 6560 11053 Face 6805 18658 17929 27633 Face 6806 13161 20174 34488 Face 6807 42985 13952 49247 Face 6808 4469 25857 3406 Face 6809 26884 21533 15022 Face 6810 26883 38257 39308 Face 6811 40683 25857 4469 Face 6812 46735 39522 3408 Face 6813 9465 43153 8434 Face 6814 30908 42937 46942 Face 6815 11914 18418 20653 Face 6816 38693 16062 3410 Face 6817 32424 3411 21911 Face 6818 346 19863 3411 Face 6819 16048 3412 9798 Face 6820 1846 48368 37407 Face 6821 39152 16708 11581 Face 6822 21026 18908 13114 Face 6823 48458 39619 30054 Face 6824 41279 25941 49409 Face 6825 21598 33530 40374 Face 6826 42766 9806 13826 Face 6827 45961 15786 7253 Face 6828 2684 24800 13848 Face 6829 11346 26172 2787 Face 6830 45804 921 39940 Face 6831 43218 3418 26173 Face 6832 43218 11372 30570 Face 6833 39783 25207 10165 Face 6834 14261 41564 35934 Face 6835 12074 37159 11009 Face 6836 23693 8410 3420 Face 6837 10702 19674 20797 Face 6838 10702 24114 19674 Face 6839 29375 17664 15319 Face 6840 15114 4672 28676 Face 6841 32929 10144 38100 Face 6842 19921 29774 3423 Face 6843 48449 3424 43625 Face 6844 42257 10220 3424 Face 6845 44361 46376 19809 Face 6846 30347 43402 25921 Face 6847 680 28921 19553 Face 6848 30875 16967 13751 Face 6849 14431 47231 21143 Face 6850 14431 45725 47231 Face 6851 6505 39902 21620 Face 6852 26562 41155 12337 Face 6853 742 5395 13970 Face 6854 7752 10447 6419 Face 6855 3429 3430 16170 Face 6856 5395 742 6419 Face 6857 7718 9147 37222 Face 6858 40709 17957 9147 Face 6859 2322 3432 13594 Face 6860 2322 45447 3432 Face 6861 17975 20550 34644 Face 6862 21130 36624 8044 Face 6863 11747 32914 18036 Face 6864 46324 23007 39644 Face 6865 36050 8326 3219 Face 6866 30183 3145 3435 Face 6867 26159 7263 8326 Face 6868 10955 18196 23051 Face 6869 16446 37737 28915 Face 6870 19857 39967 10214 Face 6871 24646 43356 11421 Face 6872 31500 8189 3438 Face 6873 703 40960 40470 Face 6874 12782 21628 32179 Face 6875 21092 39799 39810 Face 6876 1678 19220 14633 Face 6877 3676 23049 15226 Face 6878 24251 21094 49909 Face 6879 23364 27745 19241 Face 6880 18061 12560 35645 Face 6881 13387 3443 26702 Face 6882 16526 39860 18914 Face 6883 11016 22984 34630 Face 6884 11017 3147 27737 Face 6885 46559 26716 36066 Face 6886 44516 24114 10702 Face 6887 8761 6282 47447 Face 6888 15257 38033 45001 Face 6889 8547 11998 46621 Face 6890 21425 2912 17669 Face 6891 36840 6292 8788 Face 6892 27907 17166 3448 Face 6893 1672 40291 9071 Face 6894 14863 7900 15892 Face 6895 37192 31842 31752 Face 6896 26981 31474 15163 Face 6897 15035 26981 15163 Face 6898 41403 8903 22089 Face 6899 36716 14687 34800 Face 6900 8281 48490 3452 Face 6901 2296 45395 19324 Face 6902 2296 11048 45395 Face 6903 36809 16487 42467 Face 6904 36809 5797 16487 Face 6905 122 24379 25809 Face 6906 19177 31600 43131 Face 6907 10733 22363 38977 Face 6908 16783 22193 30427 Face 6909 22331 16846 1411 Face 6910 42897 46591 13010 Face 6911 44729 28529 8138 Face 6912 31199 12516 20221 Face 6913 18519 3459 37263 Face 6914 24159 45183 40667 Face 6915 22356 45380 40047 Face 6916 9031 34768 31484 Face 6917 10345 37592 13367 Face 6918 23677 5150 39515 Face 6919 45283 3462 40084 Face 6920 45284 8438 27555 Face 6921 49730 29786 16900 Face 6922 39624 48572 3463 Face 6923 30375 5255 32636 Face 6924 30375 13296 39122 Face 6925 5470 26339 15209 Face 6926 49595 32466 3465 Face 6927 8916 27229 32512 Face 6928 8916 42493 27229 Face 6929 18138 43860 6198 Face 6930 16675 27532 39188 Face 6931 11933 38353 4954 Face 6932 34799 4606 25004 Face 6933 9599 38144 48391 Face 6934 49767 8606 36703 Face 6935 26379 9837 34949 Face 6936 14480 19743 35130 Face 6937 43742 3471 13685 Face 6938 12280 32663 40519 Face 6939 30306 5531 10995 Face 6940 10864 17395 17554 Face 6941 35572 23010 12701 Face 6942 1493 49824 15046 Face 6943 44617 49242 5809 Face 6944 10742 46225 3474 Face 6945 35807 29746 9489 Face 6946 24910 17412 3475 Face 6947 6934 32375 3648 Face 6948 39683 13469 19920 Face 6949 26724 3477 47985 Face 6950 32541 19479 3477 Face 6951 7978 48519 32927 Face 6952 7225 23145 32611 Face 6953 6310 21113 12882 Face 6954 24326 9693 31832 Face 6955 381 27386 40246 Face 6956 381 32481 27386 Face 6957 10663 3481 17245 Face 6958 47255 37773 3481 Face 6959 16631 18649 24245 Face 6960 29773 3839 21615 Face 6961 883 32820 27366 Face 6962 28261 24112 29878 Face 6963 4679 49108 29390 Face 6964 751 27323 3484 Face 6965 891 34279 10303 Face 6966 891 10985 34279 Face 6967 49020 3486 24861 Face 6968 29660 14006 31986 Face 6969 10839 21234 22736 Face 6970 26275 40003 28735 Face 6971 46918 3488 17320 Face 6972 10839 22736 20122 Face 6973 39192 16737 6974 Face 6974 19623 24557 16914 Face 6975 20724 25823 36658 Face 6976 29796 37898 27141 Face 6977 2536 21123 29678 Face 6978 24033 18337 3491 Face 6979 25332 46221 19761 Face 6980 18101 47893 40090 Face 6981 6252 14345 19069 Face 6982 45262 11561 9537 Face 6983 38541 45262 9537 Face 6984 36967 30307 27051 Face 6985 20242 26195 23733 Face 6986 20242 12924 26195 Face 6987 615 44068 22232 Face 6988 3609 41604 29540 Face 6989 49075 47725 1434 Face 6990 37306 5059 24888 Face 6991 31203 25053 6787 Face 6992 45050 10279 3498 Face 6993 14792 7585 21808 Face 6994 3807 16076 35102 Face 6995 4056 34351 13375 Face 6996 19026 33168 43302 Face 6997 294 38188 17987 Face 6998 19788 16111 7823 Face 6999 1926 45627 12010 Face 7000 8448 17802 46866 Face 7001 16823 46287 2559 Face 7002 17511 42030 23995 Face 7003 12000 8540 36761 Face 7004 9571 35373 23339 Face 7005 35906 33225 15167 Face 7006 32455 2528 27233 Face 7007 28885 3506 15086 Face 7008 24389 6204 17786 Face 7009 11154 32921 17457 Face 7010 11154 22744 32921 Face 7011 9571 36644 35373 Face 7012 18172 41612 36644 Face 7013 25837 16105 8931 Face 7014 6811 24728 20370 Face 7015 6351 25220 16548 Face 7016 33850 29291 8489 Face 7017 6800 27632 1461 Face 7018 29394 39227 33105 Face 7019 18472 3512 25783 Face 7020 36811 32004 3512 Face 7021 19350 45719 23504 Face 7022 34168 41061 30610 Face 7023 35129 42567 27045 Face 7024 12615 46825 22711 Face 7025 27498 37642 6843 Face 7026 18762 10420 42918 Face 7027 23145 17032 32611 Face 7028 1100 10970 17032 Face 7029 48771 28426 39599 Face 7030 30192 19030 24738 Face 7031 2484 3518 12741 Face 7032 2484 16584 19495 Face 7033 7045 39845 12696 Face 7034 8547 46621 34088 Face 7035 43398 21631 7299 Face 7036 43398 24521 48301 Face 7037 10918 35512 13001 Face 7038 10918 28307 35512 Face 7039 27723 3522 33073 Face 7040 40447 35361 23291 Face 7041 18284 20806 43116 Face 7042 26278 16262 44365 Face 7043 24589 44434 28268 Face 7044 8715 27937 3524 Face 7045 11499 6687 47906 Face 7046 22210 8862 30435 Face 7047 27823 17784 49206 Face 7048 10794 15129 17784 Face 7049 44393 25654 18522 Face 7050 33926 49197 13374 Face 7051 43823 37654 25715 Face 7052 5736 23162 37653 Face 7053 31478 3529 25170 Face 7054 22534 8002 3529 Face 7055 18520 3530 32112 Face 7056 34873 17131 3530 Face 7057 33999 11012 41038 Face 7058 9478 23040 3531 Face 7059 22802 35268 13029 Face 7060 22802 45983 35268 Face 7061 36470 14905 23915 Face 7062 35268 45983 23693 Face 7063 20732 12302 29843 Face 7064 44179 11911 12302 Face 7065 27422 20732 47934 Face 7066 43461 33353 32256 Face 7067 9558 37615 45367 Face 7068 18832 40890 27887 Face 7069 13014 41652 31973 Face 7070 1160 11722 44843 Face 7071 15859 29081 42233 Face 7072 26571 4315 15544 Face 7073 3538 41335 12278 Face 7074 41244 19726 41335 Face 7075 15859 44741 31057 Face 7076 18659 3538 12278 Face 7077 16468 18990 47841 Face 7078 16684 9304 38410 Face 7079 25468 17575 39128 Face 7080 46841 25065 3542 Face 7081 25644 3543 19541 Face 7082 30606 4824 7291 Face 7083 13763 42821 37397 Face 7084 44164 48180 8992 Face 7085 42333 47319 30144 Face 7086 11591 28086 18228 Face 7087 28366 29706 48444 Face 7088 49686 46740 22911 Face 7089 49475 5958 9102 Face 7090 46925 44124 23365 Face 7091 8224 22915 16206 Face 7092 39333 16902 10562 Face 7093 48323 43597 6021 Face 7094 35929 25466 19687 Face 7095 30133 34267 1638 Face 7096 34863 22913 3550 Face 7097 18349 3551 40016 Face 7098 35886 19679 3551 Face 7099 7357 11549 12626 Face 7100 18075 34906 3552 Face 7101 29613 7357 36780 Face 7102 61 15646 3553 Face 7103 49532 28954 10297 Face 7104 20556 42230 34857 Face 7105 7566 15648 12354 Face 7106 22122 10707 5941 Face 7107 10551 15228 39481 Face 7108 10551 34027 15228 Face 7109 21000 8555 15668 Face 7110 25785 48318 8555 Face 7111 39781 21000 15668 Face 7112 42368 8308 13141 Face 7113 66 18403 15580 Face 7114 10742 3474 18402 Face 7115 33407 16936 8815 Face 7116 2321 40718 27800 Face 7117 3560 3561 48040 Face 7118 26296 8815 16936 Face 7119 7038 38256 21934 Face 7120 7038 44659 38256 Face 7121 12455 3563 34321 Face 7122 12455 30557 3563 Face 7123 9352 49746 3566 Face 7124 38730 2819 49746 Face 7125 7734 31498 5076 Face 7126 44799 14801 28918 Face 7127 14887 3566 21107 Face 7128 20838 30173 16731 Face 7129 292 13847 30950 Face 7130 292 40164 46576 Face 7131 11625 39254 34814 Face 7132 15317 44571 24461 Face 7133 17586 38547 19002 Face 7134 10863 34632 41792 Face 7135 28868 13505 21789 Face 7136 17586 19002 3570 Face 7137 19286 27646 21814 Face 7138 32659 44948 49919 Face 7139 34340 5931 18763 Face 7140 35845 30306 10995 Face 7141 42889 41603 25304 Face 7142 43416 47597 3573 Face 7143 13116 37364 3004 Face 7144 19399 36997 29637 Face 7145 25173 20430 24990 Face 7146 86 25036 20430 Face 7147 10707 21215 5941 Face 7148 29372 11283 36618 Face 7149 42343 25288 23099 Face 7150 30531 2649 19612 Face 7151 17883 29188 42447 Face 7152 45857 36407 15382 Face 7153 8580 45347 35134 Face 7154 32398 2086 27530 Face 7155 30608 22782 10823 Face 7156 13078 44750 29655 Face 7157 44726 28860 1399 Face 7158 22529 21307 7775 Face 7159 24797 14253 28879 Face 7160 22529 3581 24102 Face 7161 19410 3583 279 Face 7162 5265 42632 41381 Face 7163 25750 38975 7875 Face 7164 29198 48357 18043 Face 7165 44386 39242 31870 Face 7166 34744 44806 29536 Face 7167 25430 33642 37462 Face 7168 29493 14546 32969 Face 7169 19810 45403 9289 Face 7170 25839 30384 16453 Face 7171 44638 3588 33974 Face 7172 33768 23802 3588 Face 7173 11478 16508 41586 Face 7174 12261 14699 44608 Face 7175 16003 3590 9561 Face 7176 26385 9611 14809 Face 7177 43163 3591 49098 Face 7178 3592 21785 6463 Face 7179 8336 40954 3591 Face 7180 8336 11266 26489 Face 7181 32034 8657 23688 Face 7182 30607 40018 3593 Face 7183 19923 37855 32284 Face 7184 19923 14686 37855 Face 7185 25673 44718 12041 Face 7186 47938 9318 22173 Face 7187 8859 36936 14705 Face 7188 43089 32999 24718 Face 7189 30821 11742 33648 Face 7190 43089 3596 31249 Face 7191 32392 29458 17838 Face 7192 1261 28517 29458 Face 7193 37617 24609 14140 Face 7194 23221 4974 25146 Face 7195 45011 22542 38481 Face 7196 24833 49496 17321 Face 7197 8902 5746 42612 Face 7198 49279 16549 45120 Face 7199 23548 41349 1107 Face 7200 22584 22748 3602 Face 7201 2279 22921 45069 Face 7202 43834 31215 3603 Face 7203 1671 47888 23599 Face 7204 1671 36478 47888 Face 7205 16181 45660 28695 Face 7206 30478 6799 3605 Face 7207 44895 30360 12104 Face 7208 8423 35532 17644 Face 7209 13595 44203 33953 Face 7210 682 5846 35929 Face 7211 1939 32395 7651 Face 7212 1939 33500 32395 Face 7213 615 28028 44068 Face 7214 20001 3323 44777 Face 7215 712 31978 35838 Face 7216 6962 31803 17933 Face 7217 7536 31757 25752 Face 7218 38963 7586 47160 Face 7219 15102 8776 46792 Face 7220 31675 17127 49461 Face 7221 40570 20032 25326 Face 7222 11280 5350 37480 Face 7223 33449 19930 8337 Face 7224 31666 32874 39726 Face 7225 624 16305 22826 Face 7226 18415 37465 14003 Face 7227 624 18415 14003 Face 7228 624 5947 3616 Face 7229 21633 40192 33066 Face 7230 43 42857 15409 Face 7231 43 46371 37622 Face 7232 43 40192 38816 Face 7233 38894 16839 25587 Face 7234 2004 34682 9001 Face 7235 39367 45890 12120 Face 7236 41713 13669 11447 Face 7237 43861 32812 41602 Face 7238 46833 18741 39368 Face 7239 8640 34201 27324 Face 7240 10183 28787 19161 Face 7241 8998 36568 23770 Face 7242 26271 21905 14699 Face 7243 9822 49511 22860 Face 7244 15309 42526 27130 Face 7245 19812 16037 42385 Face 7246 38007 16753 39168 Face 7247 22471 40713 12387 Face 7248 40674 5201 43549 Face 7249 32627 16539 29771 Face 7250 42709 25753 32291 Face 7251 25950 26931 30693 Face 7252 47378 43569 20918 Face 7253 31599 22573 24947 Face 7254 31599 30918 9995 Face 7255 2275 46263 38163 Face 7256 33857 7170 46263 Face 7257 29064 3631 5530 Face 7258 22138 15807 45066 Face 7259 892 23404 11488 Face 7260 11599 28516 35091 Face 7261 900 44811 40626 Face 7262 36466 8691 43999 Face 7263 11180 29910 17038 Face 7264 40753 28266 9114 Face 7265 1703 38345 30095 Face 7266 26934 9118 19617 Face 7267 8279 11354 33583 Face 7268 49612 43030 15899 Face 7269 35003 44503 40002 Face 7270 14217 15038 47822 Face 7271 29599 12752 35757 Face 7272 29599 43623 12752 Face 7273 17236 6117 10868 Face 7274 17236 15402 38571 Face 7275 35234 3640 34219 Face 7276 14891 35865 3640 Face 7277 25519 44981 29131 Face 7278 696 8583 48766 Face 7279 42763 32164 40200 Face 7280 9384 48706 33187 Face 7281 24885 3643 37916 Face 7282 44642 11773 29240 Face 7283 33615 32648 648 Face 7284 25631 14708 18024 Face 7285 34790 24117 21275 Face 7286 13100 40329 12766 Face 7287 20694 33913 39586 Face 7288 46183 28736 33913 Face 7289 46183 34021 17641 Face 7290 22161 12640 46911 Face 7291 2214 49437 3213 Face 7292 48919 4471 22668 Face 7293 23079 3649 31869 Face 7294 23079 41008 3649 Face 7295 37148 22566 49815 Face 7296 56 16198 40999 Face 7297 42898 3651 22084 Face 7298 27931 4652 3651 Face 7299 13883 3652 28815 Face 7300 18051 49106 14547 Face 7301 9523 35492 3288 Face 7302 9523 44285 35492 Face 7303 964 11185 23483 Face 7304 964 41644 11185 Face 7305 9710 3655 30459 Face 7306 24994 15376 25669 Face 7307 26474 3656 10460 Face 7308 48653 13939 33958 Face 7309 39009 8103 30597 Face 7310 44525 199 39418 Face 7311 2006 41416 14197 Face 7312 44042 10990 3658 Face 7313 1190 42856 44749 Face 7314 9070 34203 3659 Face 7315 2461 34478 40993 Face 7316 12336 25885 40856 Face 7317 14315 45530 30772 Face 7318 18615 26509 10654 Face 7319 24438 17046 16582 Face 7320 43791 12301 32742 Face 7321 24056 30145 39925 Face 7322 40728 6494 34818 Face 7323 10675 35900 9063 Face 7324 108 17430 25682 Face 7325 440 18307 44810 Face 7326 19967 4799 18307 Face 7327 39020 18200 48750 Face 7328 13874 32202 35310 Face 7329 2055 36452 22783 Face 7330 37461 14349 19046 Face 7331 23295 44239 1049 Face 7332 32216 36570 6808 Face 7333 33020 24636 11550 Face 7334 33239 15551 3669 Face 7335 16605 22478 29029 Face 7336 24536 33284 25537 Face 7337 8346 9302 9913 Face 7338 21092 39810 20249 Face 7339 44338 45169 17219 Face 7340 27983 34691 20432 Face 7341 42907 46174 4988 Face 7342 267 21240 3673 Face 7343 132 46078 35924 Face 7344 15338 4701 17826 Face 7345 9982 3675 34119 Face 7346 9982 25782 25871 Face 7347 27367 4235 23946 Face 7348 38525 23049 14559 Face 7349 31987 18500 9167 Face 7350 35742 25494 3677 Face 7351 19347 26502 14330 Face 7352 20484 2334 23181 Face 7353 37128 6714 26369 Face 7354 13630 5110 31108 Face 7355 375 21888 40062 Face 7356 27716 12117 48987 Face 7357 46049 16867 48133 Face 7358 46475 5981 23673 Face 7359 29769 7913 17539 Face 7360 25577 30623 19692 Face 7361 17113 3683 6988 Face 7362 11828 25223 3683 Face 7363 42 21923 48446 Face 7364 26999 22540 34020 Face 7365 15611 32523 10498 Face 7366 23208 26814 9496 Face 7367 12670 3686 48301 Face 7368 36911 5899 11750 Face 7369 25136 3687 15838 Face 7370 12565 28419 3687 Face 7371 16097 3688 43287 Face 7372 39899 12303 21545 Face 7373 37508 3689 31942 Face 7374 25340 11287 3689 Face 7375 7710 46595 33779 Face 7376 7710 16023 46595 Face 7377 7710 3691 16023 Face 7378 13603 15365 27746 Face 7379 10918 16303 28307 Face 7380 37150 27913 3692 Face 7381 19060 3693 34019 Face 7382 37275 13776 24193 Face 7383 23760 3694 14712 Face 7384 37755 42183 3694 Face 7385 10688 41674 25039 Face 7386 29270 43472 3695 Face 7387 20387 6828 37759 Face 7388 27341 34417 3696 Face 7389 17113 11828 3683 Face 7390 466 8261 28173 Face 7391 45266 33306 1019 Face 7392 24168 19822 36949 Face 7393 36234 6820 16057 Face 7394 35826 11683 49328 Face 7395 45450 7739 16057 Face 7396 1306 37817 40152 Face 7397 34332 48281 9088 Face 7398 18149 38112 49038 Face 7399 7199 9654 22992 Face 7400 8432 15496 20543 Face 7401 39372 3703 10403 Face 7402 23436 16010 46335 Face 7403 29400 16319 7714 Face 7404 417 19599 48426 Face 7405 14138 3705 43431 Face 7406 20350 15020 26330 Face 7407 29739 10237 20273 Face 7408 29074 8180 48445 Face 7409 30897 47165 17045 Face 7410 30897 11709 3707 Face 7411 8276 14224 16388 Face 7412 8275 16836 46594 Face 7413 21952 11303 14502 Face 7414 4614 12725 38964 Face 7415 28315 20526 22287 Face 7416 3192 20203 44316 Face 7417 4978 32684 17845 Face 7418 30439 23307 47810 Face 7419 25193 3712 7738 Face 7420 20282 27532 16675 Face 7421 34596 26597 29644 Face 7422 34596 16580 26597 Face 7423 44984 43581 7874 Face 7424 29820 15364 23422 Face 7425 34996 28237 9696 Face 7426 14033 5982 18351 Face 7427 9792 30862 25582 Face 7428 14033 13818 21059 Face 7429 14033 41863 5982 Face 7430 1185 34436 23966 Face 7431 1985 3718 34623 Face 7432 1985 15149 27981 Face 7433 33576 47847 7125 Face 7434 18312 20293 12971 Face 7435 4580 44626 9874 Face 7436 25704 25445 42073 Face 7437 1123 3721 2423 Face 7438 1123 37905 3721 Face 7439 20242 3722 12924 Face 7440 25126 20261 41779 Face 7441 16065 34374 14766 Face 7442 9503 29520 3723 Face 7443 3723 31113 12951 Face 7444 3723 48712 7333 Face 7445 10644 48718 36991 Face 7446 23575 4296 49019 Face 7447 18157 26434 3153 Face 7448 35284 20940 10644 Face 7449 34909 11174 4625 Face 7450 22359 27195 8554 Face 7451 18554 28045 41613 Face 7452 7836 3727 28045 Face 7453 35001 32378 43851 Face 7454 14911 13688 21955 Face 7455 174 22674 11762 Face 7456 174 19972 3730 Face 7457 10547 22311 21013 Face 7458 37542 25488 31584 Face 7459 24154 15934 17303 Face 7460 24154 44334 7923 Face 7461 46633 47326 10937 Face 7462 31454 10241 5677 Face 7463 62 49618 1641 Face 7464 41036 12322 23230 Face 7465 8765 15549 26015 Face 7466 15 10079 23122 Face 7467 14800 15818 32924 Face 7468 7728 18648 12976 Face 7469 29683 38208 11227 Face 7470 28962 18009 9075 Face 7471 48751 16379 28004 Face 7472 18872 43046 30601 Face 7473 31519 26282 14504 Face 7474 31519 16467 26282 Face 7475 649 3740 28485 Face 7476 43681 16467 31519 Face 7477 13478 43809 24000 Face 7478 246 8428 48528 Face 7479 21672 13015 32497 Face 7480 25106 13552 28319 Face 7481 4081 23909 48635 Face 7482 37854 25197 24247 Face 7483 37023 16316 23118 Face 7484 20315 23694 8113 Face 7485 17532 7757 42989 Face 7486 25400 11141 35522 Face 7487 34188 25911 39674 Face 7488 21408 11295 3746 Face 7489 45447 20847 3432 Face 7490 12351 5903 20848 Face 7491 39917 3748 25537 Face 7492 13099 41669 24536 Face 7493 875 21896 18056 Face 7494 29479 19103 21896 Face 7495 41622 3750 8672 Face 7496 36276 24122 39519 Face 7497 35653 22183 4351 Face 7498 35653 10136 22183 Face 7499 1171 41816 29328 Face 7500 33858 29319 41816 Face 7501 14201 49993 36518 Face 7502 36176 16894 27526 Face 7503 16742 41432 2092 Face 7504 461 37182 37937 Face 7505 13577 37267 27805 Face 7506 47497 6025 39710 Face 7507 16566 30931 34386 Face 7508 23401 38440 13878 Face 7509 47022 6257 22424 Face 7510 45125 29616 13998 Face 7511 9400 46839 23717 Face 7512 13624 42909 10491 Face 7513 205 26230 44791 Face 7514 205 46933 26230 Face 7515 4399 19429 46274 Face 7516 25238 1795 38075 Face 7517 37715 25513 12081 Face 7518 37715 46168 25513 Face 7519 36889 24063 13224 Face 7520 21723 8812 46801 Face 7521 46919 40786 46592 Face 7522 7932 16099 35341 Face 7523 2810 31590 14853 Face 7524 33589 14149 3765 Face 7525 48226 3765 9997 Face 7526 8785 33589 3765 Face 7527 43797 32811 44070 Face 7528 21154 20985 32811 Face 7529 25489 25549 40331 Face 7530 31316 26716 49536 Face 7531 30587 21517 16261 Face 7532 36205 3197 29418 Face 7533 6141 35530 19395 Face 7534 6140 36734 9260 Face 7535 14827 17514 35473 Face 7536 14827 22066 17514 Face 7537 15775 14051 23283 Face 7538 39051 24694 37448 Face 7539 36246 38734 10484 Face 7540 7180 31862 43785 Face 7541 25677 36556 23489 Face 7542 29562 18025 37082 Face 7543 17538 38254 34662 Face 7544 22603 43781 37350 Face 7545 15395 3775 28269 Face 7546 5519 18618 3775 Face 7547 25233 34795 43238 Face 7548 16443 31693 23647 Face 7549 763 27305 41407 Face 7550 12920 21019 42046 Face 7551 19243 3778 41765 Face 7552 38042 2262 18077 Face 7553 22795 28788 6090 Face 7554 7741 27813 23788 Face 7555 13035 45273 19987 Face 7556 13035 21125 45273 Face 7557 29269 3781 5342 Face 7558 2527 9040 3781 Face 7559 1154 36824 20711 Face 7560 48819 5904 7206 Face 7561 25234 27423 43039 Face 7562 1304 12438 42455 Face 7563 15384 32634 48939 Face 7564 34947 27423 3784 Face 7565 32286 40692 43460 Face 7566 39739 45471 13368 Face 7567 28349 35271 13550 Face 7568 21354 27843 3787 Face 7569 25828 27151 38708 Face 7570 3786 32912 46788 Face 7571 25154 33522 18813 Face 7572 271 35521 33521 Face 7573 28555 10071 30347 Face 7574 21019 12920 20324 Face 7575 13189 38170 33770 Face 7576 19171 29420 11112 Face 7577 27535 45346 11354 Face 7578 799 19956 29924 Face 7579 32144 46627 21469 Face 7580 27920 12012 3792 Face 7581 6591 3793 43415 Face 7582 3794 21324 46241 Face 7583 24650 3794 47949 Face 7584 24650 21324 3794 Face 7585 45856 29569 38392 Face 7586 42020 39417 3795 Face 7587 22174 5750 38600 Face 7588 34633 41758 19847 Face 7589 5751 38873 46569 Face 7590 49619 17631 25488 Face 7591 25352 32025 17631 Face 7592 26221 36250 3798 Face 7593 32841 22635 43273 Face 7594 39300 30224 26220 Face 7595 3038 3800 19999 Face 7596 17751 5789 20735 Face 7597 16969 39278 16480 Face 7598 16969 8919 39278 Face 7599 10952 19831 7431 Face 7600 30723 15688 3802 Face 7601 46421 3803 39725 Face 7602 16260 44262 3803 Face 7603 27552 34398 3014 Face 7604 38574 16053 7484 Face 7605 18844 3805 2748 Face 7606 18844 16250 39658 Face 7607 42063 9648 16250 Face 7608 7816 25179 13167 Face 7609 34505 3807 18021 Face 7610 26117 16076 3807 Face 7611 7713 3808 16189 Face 7612 7713 38450 3808 Face 7613 12038 47902 13272 Face 7614 47860 36684 36331 Face 7615 34812 45835 8078 Face 7616 24610 5475 19245 Face 7617 27294 48978 3810 Face 7618 14767 10341 19959 Face 7619 8724 36532 31126 Face 7620 46767 23060 43959 Face 7621 25503 32084 18592 Face 7622 2659 39989 3813 Face 7623 6620 11137 48994 Face 7624 12668 17943 34180 Face 7625 37640 33788 19129 Face 7626 24368 10299 9757 Face 7627 9 34419 44701 Face 7628 9 25607 33554 Face 7629 47293 14152 28466 Face 7630 47293 20305 14152 Face 7631 32999 20039 24718 Face 7632 25099 5041 49063 Face 7633 11498 39144 8684 Face 7634 13864 5027 3819 Face 7635 27615 34011 12934 Face 7636 24149 49092 3820 Face 7637 1508 39762 23626 Face 7638 1508 32478 39762 Face 7639 19316 3822 44199 Face 7640 37790 5413 25847 Face 7641 28318 26660 18064 Face 7642 15846 23566 20309 Face 7643 30945 40737 5778 Face 7644 30106 16534 3824 Face 7645 21079 40079 12339 Face 7646 21079 633 40079 Face 7647 22917 19144 37660 Face 7648 7480 36594 19144 Face 7649 9566 3827 23969 Face 7650 9566 17022 3827 Face 7651 1455 40477 30596 Face 7652 1455 40641 3828 Face 7653 5601 23512 27623 Face 7654 36687 29951 3829 Face 7655 13496 28714 26181 Face 7656 39942 27075 12894 Face 7657 35703 19020 8338 Face 7658 28278 36682 3831 Face 7659 24336 15516 13607 Face 7660 40000 1623 46337 Face 7661 7798 3833 10736 Face 7662 17198 10627 3833 Face 7663 1453 3834 30969 Face 7664 9633 30955 47380 Face 7665 13160 31770 27173 Face 7666 31077 22823 45392 Face 7667 18012 25439 8947 Face 7668 9888 24726 25498 Face 7669 13182 3837 13261 Face 7670 6121 23778 36110 Face 7671 20518 41359 15622 Face 7672 23791 49141 23020 Face 7673 42190 17850 29367 Face 7674 838 41770 3839 Face 7675 44716 3840 14432 Face 7676 19295 29207 10673 Face 7677 37776 6388 15004 Face 7678 42730 14325 3841 Face 7679 19714 3842 31910 Face 7680 32967 6388 37776 Face 7681 173 36489 46967 Face 7682 48675 3841 32456 Face 7683 12537 5948 47512 Face 7684 38713 39000 27168 Face 7685 25398 40162 13527 Face 7686 31979 11620 37852 Face 7687 13055 22647 38073 Face 7688 37430 21147 3846 Face 7689 24044 18768 47013 Face 7690 29176 45951 14860 Face 7691 17896 34178 9918 Face 7692 36667 11193 42873 Face 7693 11255 37088 13734 Face 7694 17420 43173 22435 Face 7695 43343 25154 9564 Face 7696 43343 33522 25154 Face 7697 9369 31400 24369 Face 7698 42345 1312 11906 Face 7699 30487 3852 24278 Face 7700 261 43434 3852 Face 7701 24795 38029 15760 Face 7702 36314 2903 23425 Face 7703 17696 21882 3848 Face 7704 19132 13441 3854 Face 7705 23523 12865 4755 Face 7706 41228 16746 12457 Face 7707 22223 33871 25574 Face 7708 12865 979 36116 Face 7709 25801 17710 1396 Face 7710 40372 27233 3857 Face 7711 9740 14918 7941 Face 7712 21012 3857 39962 Face 7713 37087 18587 20443 Face 7714 49059 32772 32554 Face 7715 17913 18036 32914 Face 7716 17914 26236 3860 Face 7717 3862 45784 18977 Face 7718 17913 31845 20813 Face 7719 13915 3862 18977 Face 7720 32887 26235 12604 Face 7721 34498 39183 30840 Face 7722 34497 42235 39183 Face 7723 7519 42717 48426 Face 7724 23554 41432 49365 Face 7725 16740 35921 1088 Face 7726 33244 43013 35557 Face 7727 35921 21516 1088 Face 7728 8609 47303 21515 Face 7729 11019 31453 14865 Face 7730 12529 35067 20579 Face 7731 2176 48309 7906 Face 7732 2176 39856 48309 Face 7733 20210 46637 12200 Face 7734 20208 24954 38586 Face 7735 47026 3870 23867 Face 7736 47026 39148 3870 Face 7737 13571 27284 3046 Face 7738 2131 22290 27284 Face 7739 21880 35980 41668 Face 7740 35407 19802 12212 Face 7741 23861 9406 18676 Face 7742 37111 20698 38326 Face 7743 32119 22678 43301 Face 7744 17594 45705 40756 Face 7745 10943 40127 18768 Face 7746 44458 13195 3875 Face 7747 12429 44725 17774 Face 7748 36851 14568 3876 Face 7749 24436 31916 29810 Face 7750 18789 12463 21415 Face 7751 12638 18971 11378 Face 7752 12638 41231 3878 Face 7753 15146 27910 23601 Face 7754 4759 16148 40040 Face 7755 33268 17223 1737 Face 7756 15742 17577 47228 Face 7757 231 29440 46477 Face 7758 47991 37797 18347 Face 7759 41507 30555 28262 Face 7760 28359 18187 3882 Face 7761 2429 38834 13600 Face 7762 2429 17123 28339 Face 7763 36107 3884 45140 Face 7764 42739 6410 24312 Face 7765 20776 35169 49225 Face 7766 17040 18976 30898 Face 7767 11888 18920 27698 Face 7768 6323 17583 46630 Face 7769 8497 39776 2056 Face 7770 25878 4657 30662 Face 7771 42813 32885 5722 Face 7772 13045 30634 24075 Face 7773 7433 43512 47159 Face 7774 12077 49287 3889 Face 7775 35002 8794 49287 Face 7776 41015 33532 49307 Face 7777 25336 13462 26187 Face 7778 17232 18874 44526 Face 7779 21779 3892 21332 Face 7780 41194 16117 3892 Face 7781 44501 12263 21977 Face 7782 30453 13714 3893 Face 7783 35562 19760 44824 Face 7784 27598 40384 3894 Face 7785 3437 10214 15715 Face 7786 46119 20769 3895 Face 7787 47956 31026 3224 Face 7788 47547 37537 19641 Face 7789 16929 47173 25482 Face 7790 16929 19426 42879 Face 7791 9887 29007 5816 Face 7792 9887 40268 29007 Face 7793 46191 32852 11455 Face 7794 36310 8665 13698 Face 7795 15591 37293 14625 Face 7796 1270 14737 19309 Face 7797 14073 14859 16520 Face 7798 26196 39640 21117 Face 7799 37574 32349 3207 Face 7800 39271 41146 29274 Face 7801 34192 11869 30336 Face 7802 39271 29274 11869 Face 7803 28648 17035 33593 Face 7804 19371 13074 17035 Face 7805 25645 17119 49869 Face 7806 22230 9047 16110 Face 7807 33065 22857 46715 Face 7808 8795 42761 18678 Face 7809 14675 47521 29344 Face 7810 39959 21721 24945 Face 7811 26723 3908 40981 Face 7812 38842 17901 28022 Face 7813 5119 31463 19996 Face 7814 28775 41588 48491 Face 7815 1516 11631 49771 Face 7816 7579 17340 10717 Face 7817 39934 14928 19393 Face 7818 3912 8802 14623 Face 7819 1516 42413 11631 Face 7820 1516 27210 42413 Face 7821 23293 12552 21314 Face 7822 20829 47584 3913 Face 7823 34752 3914 49457 Face 7824 12145 39626 34561 Face 7825 15317 21720 44571 Face 7826 15317 36925 21720 Face 7827 3917 15897 26852 Face 7828 2021 8048 11625 Face 7829 26871 3917 8425 Face 7830 26871 11625 45018 Face 7831 7606 46142 1247 Face 7832 24576 46330 35046 Face 7833 2204 3919 43603 Face 7834 38425 28052 16546 Face 7835 787 6629 19482 Face 7836 18109 7706 44583 Face 7837 2340 25856 10504 Face 7838 34128 19331 46647 Face 7839 5687 28503 19331 Face 7840 12672 18090 28502 Face 7841 15325 3923 40129 Face 7842 27191 412 25043 Face 7843 30343 3924 10475 Face 7844 36987 27921 18525 Face 7845 12071 35218 1947 Face 7846 45652 11514 37679 Face 7847 21861 26632 48699 Face 7848 30060 18944 34438 Face 7849 46454 16744 34910 Face 7850 14513 6804 36274 Face 7851 25078 3928 36822 Face 7852 5229 41857 10760 Face 7853 35608 22467 25863 Face 7854 13876 35559 21159 Face 7855 26956 10867 422 Face 7856 801 16799 26037 Face 7857 15541 10649 27704 Face 7858 40823 20705 23692 Face 7859 20306 40823 23692 Face 7860 33606 18434 3932 Face 7861 12072 11083 17216 Face 7862 1253 28039 3933 Face 7863 45679 31278 49359 Face 7864 45679 7746 3934 Face 7865 18612 48176 41192 Face 7866 46578 11058 35207 Face 7867 35659 18601 1878 Face 7868 704 42245 34620 Face 7869 42938 46913 5223 Face 7870 2264 45791 16651 Face 7871 37844 40369 4274 Face 7872 34362 26219 3938 Face 7873 32367 3939 28671 Face 7874 46436 34462 3939 Face 7875 13646 12334 32632 Face 7876 37973 47287 3940 Face 7877 20893 3941 24639 Face 7878 29153 47048 6494 Face 7879 19427 11555 33320 Face 7880 19427 7093 11555 Face 7881 1180 3943 35382 Face 7882 1180 24711 3943 Face 7883 12292 6375 5166 Face 7884 12292 46689 43006 Face 7885 27060 14528 14685 Face 7886 27224 22934 47149 Face 7887 38267 24533 7005 Face 7888 38267 29887 3946 Face 7889 37719 3947 28598 Face 7890 37719 30929 19186 Face 7891 20011 3948 23463 Face 7892 15268 3941 20893 Face 7893 49722 3949 21006 Face 7894 11219 29836 48634 Face 7895 31028 3950 11423 Face 7896 27630 37136 9532 Face 7897 18226 47327 22463 Face 7898 5325 27638 3951 Face 7899 43225 23485 34324 Face 7900 25297 27371 3952 Face 7901 15755 12057 30644 Face 7902 30903 8498 18081 Face 7903 38015 27815 5555 Face 7904 26535 37149 3954 Face 7905 15141 3955 27624 Face 7906 29927 11039 16982 Face 7907 15141 29927 3955 Face 7908 7742 24494 43070 Face 7909 10004 45582 5100 Face 7910 22724 30808 28215 Face 7911 15735 25764 21654 Face 7912 15735 34886 13389 Face 7913 37528 41638 37941 Face 7914 15714 28497 17206 Face 7915 18698 40092 23070 Face 7916 16340 20497 3960 Face 7917 29606 10547 21013 Face 7918 1141 20983 3961 Face 7919 2497 3962 42916 Face 7920 2497 5658 43029 Face 7921 20442 41363 3560 Face 7922 20468 29733 3963 Face 7923 6437 11389 41370 Face 7924 12801 6541 27961 Face 7925 44316 20526 3192 Face 7926 3710 20790 35455 Face 7927 31695 9579 22416 Face 7928 39375 5167 10658 Face 7929 46948 31867 3169 Face 7930 27164 1145 22399 Face 7931 20407 3968 17848 Face 7932 14986 27992 47421 Face 7933 37920 3969 10479 Face 7934 44173 37119 3969 Face 7935 21201 43594 35305 Face 7936 38199 4100 20941 Face 7937 9105 26930 12930 Face 7938 216 40210 40592 Face 7939 17083 11826 34566 Face 7940 46529 44564 21357 Face 7941 14957 15817 38675 Face 7942 48692 44600 44306 Face 7943 10802 3974 26205 Face 7944 29281 41592 28231 Face 7945 33377 42472 28882 Face 7946 40276 26099 35644 Face 7947 3062 11522 28818 Face 7948 44807 17317 32833 Face 7949 45472 13961 40304 Face 7950 9052 25883 13961 Face 7951 38342 22971 44394 Face 7952 15372 31624 6372 Face 7953 22149 14266 30502 Face 7954 40677 22693 34072 Face 7955 19200 23121 38790 Face 7956 37163 46056 49356 Face 7957 25236 10735 37291 Face 7958 343 34072 40562 Face 7959 38660 3982 32616 Face 7960 35049 6417 47840 Face 7961 10696 43795 29023 Face 7962 18733 20372 40167 Face 7963 15867 3984 16802 Face 7964 49804 25178 3984 Face 7965 30237 3985 10542 Face 7966 40574 31589 20444 Face 7967 31155 31293 47372 Face 7968 31586 15839 36735 Face 7969 6457 22852 2036 Face 7970 719 8466 16937 Face 7971 48797 23959 19434 Face 7972 719 16937 32658 Face 7973 46291 13576 25965 Face 7974 6605 26629 20821 Face 7975 29334 13260 25559 Face 7976 29453 30041 42654 Face 7977 15400 3991 22155 Face 7978 20684 9798 6589 Face 7979 22999 9899 16229 Face 7980 22999 45743 16048 Face 7981 19801 38621 47399 Face 7982 19801 26104 38621 Face 7983 19918 16492 26876 Face 7984 21183 28160 3994 Face 7985 247 3995 8469 Face 7986 12880 6926 3995 Face 7987 21490 33071 46382 Face 7988 8018 42083 21893 Face 7989 43741 23131 21973 Face 7990 11298 27669 3997 Face 7991 21194 35673 5688 Face 7992 22211 14367 7889 Face 7993 20451 32565 45820 Face 7994 1068 48183 39114 Face 7995 49498 4000 34704 Face 7996 1570 6433 20659 Face 7997 8865 4001 35725 Face 7998 27184 31678 21091 Face 7999 49053 20052 38647 Face 8000 20010 11056 49753 Face 8001 10578 28870 23434 Face 8002 10578 15992 28870 Face 8003 14410 33203 18334 Face 8004 14410 17822 33203 Face 8005 10186 4005 8629 Face 8006 31202 32070 14508 Face 8007 21681 39169 34891 Face 8008 32506 15366 7835 Face 8009 45920 39877 27747 Face 8010 39801 22248 8059 Face 8011 33739 34753 30156 Face 8012 15961 16480 4008 Face 8013 31553 4009 22869 Face 8014 24665 46850 40515 Face 8015 28972 16518 34769 Face 8016 463 28795 30556 Face 8017 19163 36338 33259 Face 8018 888 24939 14726 Face 8019 29097 19163 11068 Face 8020 29097 47944 19163 Face 8021 1860 35260 2863 Face 8022 21850 29680 6637 Face 8023 2088 4014 46196 Face 8024 10153 43083 31989 Face 8025 20386 4015 41121 Face 8026 49099 25746 4015 Face 8027 46652 34477 23957 Face 8028 665 46332 43268 Face 8029 36383 4017 26886 Face 8030 37266 4464 36751 Face 8031 20050 32529 4017 Face 8032 18198 43921 4018 Face 8033 37202 26530 32763 Face 8034 8361 46022 28102 Face 8035 17846 12563 26622 Face 8036 1445 28103 29152 Face 8037 33718 48842 23730 Face 8038 24848 7843 18051 Face 8039 31213 4022 9322 Face 8040 33427 15467 27108 Face 8041 2568 32889 8843 Face 8042 9591 8456 39754 Face 8043 31238 26835 45681 Face 8044 47113 23525 39634 Face 8045 23871 42608 45490 Face 8046 39119 4803 29814 Face 8047 69 21331 13522 Face 8048 13986 12775 4026 Face 8049 45994 31802 18017 Face 8050 28592 14956 31828 Face 8051 3254 4028 26986 Face 8052 3254 27844 4028 Face 8053 1381 28784 44081 Face 8054 23833 12909 36854 Face 8055 49661 11948 24024 Face 8056 20419 12810 11804 Face 8057 15266 4031 26510 Face 8058 29889 20963 18805 Face 8059 8938 4032 38714 Face 8060 8938 29445 14470 Face 8061 23265 46309 14478 Face 8062 44821 30475 23654 Face 8063 18875 27415 23955 Face 8064 9797 3036 34883 Face 8065 25533 13581 22426 Face 8066 25533 45196 13581 Face 8067 11328 4036 33766 Face 8068 34486 22940 44467 Face 8069 46651 4037 44466 Face 8070 23282 32764 8511 Face 8071 4542 4038 26506 Face 8072 27159 45051 48777 Face 8073 6945 12344 30852 Face 8074 6945 33480 4039 Face 8075 39099 4040 14574 Face 8076 25589 11995 4040 Face 8077 523 29503 15570 Face 8078 523 28397 39421 Face 8079 11035 18833 26842 Face 8080 42213 5594 13722 Face 8081 23541 4043 17165 Face 8082 36508 17974 4043 Face 8083 1287 38385 39847 Face 8084 16527 30681 41619 Face 8085 464 21399 46600 Face 8086 20775 8262 15894 Face 8087 14840 41593 20683 Face 8088 32115 1754 40445 Face 8089 15950 4047 6936 Face 8090 2374 38994 17858 Face 8091 25565 20809 30658 Face 8092 43725 1683 4048 Face 8093 18887 30267 43605 Face 8094 30807 19231 47291 Face 8095 23732 49403 36513 Face 8096 688 34978 26218 Face 8097 1864 20382 28062 Face 8098 1864 8154 16834 Face 8099 32687 21189 3002 Face 8100 9326 33043 37960 Face 8101 43363 39557 11662 Face 8102 30692 8510 39557 Face 8103 10161 22799 8870 Face 8104 41636 28188 17487 Face 8105 129 15447 21717 Face 8106 129 25305 41104 Face 8107 34247 40538 31407 Face 8108 12908 30682 19026 Face 8109 4058 10229 42848 Face 8110 49102 38217 46315 Face 8111 1523 4058 42848 Face 8112 38388 37943 4058 Face 8113 14787 46582 35690 Face 8114 37143 15261 20516 Face 8115 33056 23796 10526 Face 8116 13529 37749 21398 Face 8117 12117 19458 21889 Face 8118 2349 25590 27686 Face 8119 49010 24208 34936 Face 8120 37672 49894 7727 Face 8121 34006 12848 19339 Face 8122 25647 38290 4064 Face 8123 4063 22392 32145 Face 8124 38101 34237 12848 Face 8125 18427 4065 25945 Face 8126 18426 22364 4065 Face 8127 42864 4066 20367 Face 8128 21754 41064 8523 Face 8129 44454 40296 49985 Face 8130 48649 23461 17608 Face 8131 45858 31392 10010 Face 8132 1390 10729 31392 Face 8133 5650 42134 23320 Face 8134 43561 21342 26105 Face 8135 23157 22037 36225 Face 8136 17026 34771 37178 Face 8137 27863 17026 37178 Face 8138 6721 13257 26142 Face 8139 15233 47455 23973 Face 8140 26708 1204 32934 Face 8141 23983 28212 29253 Face 8142 34076 19534 41242 Face 8143 36092 4074 8638 Face 8144 41952 2553 13052 Face 8145 983 28569 16788 Face 8146 19321 7144 39822 Face 8147 48118 13537 33109 Face 8148 20658 30385 34676 Face 8149 114 4077 28658 Face 8150 38702 43132 33837 Face 8151 30991 14743 33837 Face 8152 27871 10636 44698 Face 8153 35010 4079 22947 Face 8154 40765 23498 23963 Face 8155 3531 4080 9478 Face 8156 3531 26012 4080 Face 8157 18873 22028 28896 Face 8158 539 29797 22027 Face 8159 25575 17082 44122 Face 8160 3003 37198 49399 Face 8161 34775 4083 11340 Face 8162 27268 33402 10250 Face 8163 42926 17064 36027 Face 8164 42926 23867 4085 Face 8165 46005 38823 10407 Face 8166 4084 46295 4085 Face 8167 1837 42509 6213 Face 8168 1837 14150 42176 Face 8169 1678 25447 19220 Face 8170 30951 9913 25447 Face 8171 1402 33312 17699 Face 8172 1402 25298 33312 Face 8173 30418 45261 30880 Face 8174 2405 8392 21833 Face 8175 28183 10741 49371 Face 8176 40308 1231 4090 Face 8177 38142 42796 40357 Face 8178 551 30569 42796 Face 8179 21607 15422 27145 Face 8180 26941 40294 9606 Face 8181 16285 36494 22280 Face 8182 32405 13267 46938 Face 8183 5996 4094 37531 Face 8184 43728 27500 17480 Face 8185 4775 48399 29409 Face 8186 10411 3438 46532 Face 8187 6222 4096 22278 Face 8188 10747 26419 19756 Face 8189 607 40371 2114 Face 8190 14215 28337 24490 Face 8191 6737 22785 5664 Face 8192 11484 17292 43630 Face 8193 1413 21964 45526 Face 8194 28909 4692 12253 Face 8195 29110 4100 13216 Face 8196 13652 25098 15058 Face 8197 45513 21028 11117 Face 8198 43342 39135 17593 Face 8199 22564 4102 12795 Face 8200 22564 39195 4102 Face 8201 35493 12550 31659 Face 8202 10051 12480 22612 Face 8203 6672 47646 11452 Face 8204 6672 44143 47646 Face 8205 25766 27424 31322 Face 8206 25766 39224 27863 Face 8207 48367 24309 30425 Face 8208 22065 27574 9219 Face 8209 47975 17911 15881 Face 8210 13331 43622 29669 Face 8211 8543 45115 29669 Face 8212 7605 32819 16284 Face 8213 42009 4109 12994 Face 8214 21043 15217 45189 Face 8215 340 4110 6088 Face 8216 19528 35490 20858 Face 8217 13615 6483 19994 Face 8218 13615 10971 28224 Face 8219 32988 28128 6123 Face 8220 6200 9846 28848 Face 8221 20975 31816 46114 Face 8222 20975 18060 4113 Face 8223 32501 20975 46114 Face 8224 43607 5602 4114 Face 8225 32376 4115 26013 Face 8226 1353 26255 48094 Face 8227 34775 29901 4083 Face 8228 12594 20467 12234 Face 8229 19991 45386 355 Face 8230 8124 18273 35755 Face 8231 1693 9200 12606 Face 8232 32117 10395 19991 Face 8233 11537 42309 30078 Face 8234 24511 43743 4119 Face 8235 31929 41515 24738 Face 8236 31929 13849 32841 Face 8237 13238 4121 13011 Face 8238 43436 29218 4121 Face 8239 18008 4122 47711 Face 8240 20571 5984 36947 Face 8241 234 4123 32022 Face 8242 28859 38067 9369 Face 8243 44241 14082 4921 Face 8244 44241 42913 14082 Face 8245 36378 27579 17933 Face 8246 38906 37457 19166 Face 8247 14650 24726 9888 Face 8248 44123 1301 38912 Face 8249 27907 47439 17166 Face 8250 26256 14406 35227 Face 8251 36928 11433 19658 Face 8252 1880 43248 11433 Face 8253 19436 28929 21697 Face 8254 24603 49209 19614 Face 8255 24498 34413 13752 Face 8256 25204 48724 11727 Face 8257 11288 36995 12513 Face 8258 14134 33991 22408 Face 8259 16006 34266 8106 Face 8260 16006 28259 44842 Face 8261 13124 9991 28437 Face 8262 23678 46158 30630 Face 8263 925 4134 19971 Face 8264 925 41873 4134 Face 8265 22090 16425 40376 Face 8266 7325 4753 29530 Face 8267 15955 23188 26299 Face 8268 39722 34911 21362 Face 8269 576 4137 38580 Face 8270 11212 9219 46753 Face 8271 16505 39316 15547 Face 8272 32403 49761 30289 Face 8273 1938 4139 21283 Face 8274 1938 33732 4139 Face 8275 39127 30402 45130 Face 8276 47351 34209 4140 Face 8277 4142 12169 28510 Face 8278 42039 24301 11939 Face 8279 5784 29684 494 Face 8280 31074 12169 40461 Face 8281 26636 19728 43392 Face 8282 34347 29189 39534 Face 8283 13959 17272 21985 Face 8284 40970 17593 4715 Face 8285 27734 48307 24669 Face 8286 18231 4555 24949 Face 8287 32587 13981 19646 Face 8288 32587 13701 13981 Face 8289 18171 11266 8335 Face 8290 26648 30075 25778 Face 8291 9685 14329 24784 Face 8292 1663 1782 25816 Face 8293 14592 23144 48581 Face 8294 19975 30485 4149 Face 8295 15090 4150 2111 Face 8296 10779 12543 44407 Face 8297 36283 19601 22919 Face 8298 28604 39691 4151 Face 8299 45583 23921 18481 Face 8300 23113 43879 4152 Face 8301 19842 17247 33957 Face 8302 3114 826 30169 Face 8303 39380 43470 10049 Face 8304 28279 4659 4154 Face 8305 4575 21787 49224 Face 8306 25585 31459 40050 Face 8307 41573 17379 22605 Face 8308 29549 41578 7171 Face 8309 5530 18132 29064 Face 8310 30653 3327 8005 Face 8311 14382 13686 2830 Face 8312 45831 22638 34808 Face 8313 17062 47172 39008 Face 8314 10326 33673 4159 Face 8315 518 35066 18662 Face 8316 17513 30769 23065 Face 8317 41672 24613 9343 Face 8318 11035 40504 27930 Face 8319 43862 47331 15563 Face 8320 49453 3746 14205 Face 8321 42000 13623 11633 Face 8322 19644 17537 33179 Face 8323 23488 4164 4166 Face 8324 10936 45067 4164 Face 8325 4324 4165 35575 Face 8326 23488 4166 9035 Face 8327 39970 4166 4164 Face 8328 26024 42646 4166 Face 8329 24045 46985 17027 Face 8330 33984 18756 37421 Face 8331 15305 4168 19033 Face 8332 2418 16599 37309 Face 8333 6471 27197 18710 Face 8334 30349 12530 30907 Face 8335 8131 29213 47778 Face 8336 41978 27867 15178 Face 8337 40719 31206 49860 Face 8338 8695 37453 25869 Face 8339 34596 26777 10926 Face 8340 11609 28744 39496 Face 8341 19519 31182 25151 Face 8342 36523 14226 4173 Face 8343 37104 27145 15422 Face 8344 48900 23718 19647 Face 8345 276 18337 24033 Face 8346 39820 25789 26300 Face 8347 10251 45430 37161 Face 8348 10251 10001 45430 Face 8349 13438 31754 31690 Face 8350 1854 6116 18703 Face 8351 37334 4178 11741 Face 8352 20955 35962 22732 Face 8353 44913 23217 18547 Face 8354 18717 46519 4179 Face 8355 25208 4180 14786 Face 8356 42188 16787 49014 Face 8357 22443 42286 30214 Face 8358 41118 16034 25593 Face 8359 41503 36478 1671 Face 8360 30962 10767 22225 Face 8361 40389 4183 27895 Face 8362 21205 4400 4183 Face 8363 1309 4184 38870 Face 8364 1309 30113 4184 Face 8365 44124 4185 37939 Face 8366 2840 14532 4185 Face 8367 40600 4186 9415 Face 8368 30502 14266 39270 Face 8369 2158 35408 3466 Face 8370 36807 8370 39211 Face 8371 13692 42894 46754 Face 8372 37826 44349 4188 Face 8373 10685 21532 10068 Face 8374 21983 15601 33724 Face 8375 24046 49050 11621 Face 8376 46633 10937 49049 Face 8377 24012 27166 7570 Face 8378 49629 38493 4191 Face 8379 27724 9399 47130 Face 8380 31796 19735 13750 Face 8381 20192 34202 29177 Face 8382 17038 3634 39751 Face 8383 21602 35062 16596 Face 8384 21602 39550 35062 Face 8385 15707 13474 19101 Face 8386 34017 23116 17827 Face 8387 22680 44262 16260 Face 8388 14846 17218 23224 Face 8389 29798 15274 5615 Face 8390 8912 16222 46378 Face 8391 30231 14607 47180 Face 8392 30854 16701 44435 Face 8393 31256 8789 45828 Face 8394 10202 11294 20987 Face 8395 36257 4857 47526 Face 8396 36257 44246 4857 Face 8397 16994 42136 28702 Face 8398 16391 30066 40827 Face 8399 5558 23059 20472 Face 8400 44257 10024 27097 Face 8401 46355 29489 42212 Face 8402 26978 39605 4203 Face 8403 49688 4204 38666 Face 8404 32408 2665 4204 Face 8405 766 36612 19150 Face 8406 35700 12976 48910 Face 8407 16025 45009 13407 Face 8408 4208 10849 23609 Face 8409 24908 33666 7952 Face 8410 2564 13292 29686 Face 8411 4207 33666 12889 Face 8412 4207 17959 33666 Face 8413 41082 14825 34803 Face 8414 549 44503 35003 Face 8415 42419 17473 39163 Face 8416 21698 16418 25695 Face 8417 28697 24758 21309 Face 8418 1638 9100 24758 Face 8419 47814 4212 17597 Face 8420 1638 24758 28697 Face 8421 27214 46791 42320 Face 8422 33177 848 13013 Face 8423 1034 21601 23551 Face 8424 46230 31872 4214 Face 8425 27212 24329 46130 Face 8426 27212 43908 24329 Face 8427 46573 4216 48990 Face 8428 11464 23371 18464 Face 8429 35161 4217 2402 Face 8430 49953 20910 12959 Face 8431 1066 14667 46207 Face 8432 16000 27963 14668 Face 8433 38428 30799 18494 Face 8434 37036 43947 30799 Face 8435 22990 4220 20688 Face 8436 32064 49362 4220 Face 8437 172 36867 39159 Face 8438 22384 1466 33126 Face 8439 15197 4222 48651 Face 8440 15197 24999 4222 Face 8441 33810 26619 24825 Face 8442 40522 15850 26619 Face 8443 1369 16840 11984 Face 8444 31307 15620 20766 Face 8445 1518 4225 10755 Face 8446 19630 47475 18869 Face 8447 2808 4226 36029 Face 8448 19374 34507 25968 Face 8449 14018 4227 17836 Face 8450 49826 4151 32931 Face 8451 26892 27999 22282 Face 8452 12757 35844 30098 Face 8453 7844 4229 2181 Face 8454 7844 49984 4229 Face 8455 45901 4230 18776 Face 8456 13075 16988 10079 Face 8457 40126 4231 31318 Face 8458 40126 28365 4231 Face 8459 27052 8136 31250 Face 8460 42254 1717 26762 Face 8461 44591 39198 26008 Face 8462 22888 8127 4233 Face 8463 44591 22888 39198 Face 8464 30622 1671 14452 Face 8465 3676 14559 23049 Face 8466 45721 23946 4235 Face 8467 21272 42181 10979 Face 8468 9212 47528 21121 Face 8469 3698 43994 13348 Face 8470 48236 26446 34301 Face 8471 46360 13225 16911 Face 8472 33295 2397 14157 Face 8473 19782 22482 6438 Face 8474 25728 3855 22481 Face 8475 28905 19059 25865 Face 8476 32060 24193 19059 Face 8477 17909 4241 29722 Face 8478 27255 41944 41900 Face 8479 47486 4242 26373 Face 8480 41177 11775 48589 Face 8481 12408 23279 32386 Face 8482 34748 8100 4243 Face 8483 30553 4244 17826 Face 8484 25957 13096 36539 Face 8485 37716 40362 28620 Face 8486 20628 15733 4245 Face 8487 26121 49886 35758 Face 8488 8910 25077 13793 Face 8489 24400 4247 36876 Face 8490 22425 40912 29041 Face 8491 18065 4248 11965 Face 8492 8546 23069 9084 Face 8493 1885 4249 37752 Face 8494 12380 17701 9157 Face 8495 9451 24872 15929 Face 8496 34507 37038 4250 Face 8497 12 22018 8 Face 8498 12 34913 22018 Face 8499 4251 4252 31909 Face 8500 4251 27912 45374 Face 8501 5798 14849 30221 Face 8502 2400 29818 18516 Face 8503 1349 44378 32105 Face 8504 1349 36440 44378 Face 8505 12032 47178 38919 Face 8506 35535 7642 12567 Face 8507 27475 44547 12084 Face 8508 9049 37388 15096 Face 8509 23194 35213 22751 Face 8510 48202 1240 4257 Face 8511 35591 23615 12715 Face 8512 33961 22832 4258 Face 8513 19428 21700 2419 Face 8514 19994 6483 8129 Face 8515 20223 49283 7457 Face 8516 45442 5712 31342 Face 8517 34774 39628 20623 Face 8518 8398 10209 24776 Face 8519 38236 15776 26011 Face 8520 7223 23516 39470 Face 8521 46146 42922 32866 Face 8522 20730 41719 44766 Face 8523 974 37393 18828 Face 8524 5574 37544 26249 Face 8525 29068 11219 18486 Face 8526 33952 47163 20800 Face 8527 14712 48530 23760 Face 8528 4267 23088 40439 Face 8529 21780 4267 40439 Face 8530 21780 36502 26721 Face 8531 10636 40680 44698 Face 8532 30328 14043 19275 Face 8533 28615 11320 16450 Face 8534 42603 19098 29789 Face 8535 34714 4270 6955 Face 8536 36125 29019 17596 Face 8537 8811 28776 4444 Face 8538 8810 26055 38019 Face 8539 40860 4272 34232 Face 8540 49106 18051 7843 Face 8541 29841 41955 13879 Face 8542 29841 5312 41955 Face 8543 139 22273 40368 Face 8544 15854 4943 14833 Face 8545 4274 39306 19645 Face 8546 4274 40369 45818 Face 8547 39919 14328 21378 Face 8548 48248 10233 22554 Face 8549 4276 14328 39919 Face 8550 4276 9605 4277 Face 8551 45556 25044 13829 Face 8552 493 31786 45232 Face 8553 4607 25042 6565 Face 8554 36237 45844 25042 Face 8555 38530 4280 6129 Face 8556 42742 33696 21041 Face 8557 34710 17724 47030 Face 8558 27384 4280 38530 Face 8559 13899 31973 41651 Face 8560 49374 40001 4282 Face 8561 7445 11069 23572 Face 8562 24052 31506 4283 Face 8563 8039 4284 5192 Face 8564 40685 10338 27724 Face 8565 26587 9161 13276 Face 8566 40312 37330 18940 Face 8567 8964 48974 34374 Face 8568 4287 7085 20347 Face 8569 34087 14634 20347 Face 8570 44575 3832 29451 Face 8571 47411 4288 41795 Face 8572 22911 37438 46137 Face 8573 42187 28385 41608 Face 8574 24201 33734 17293 Face 8575 27148 34452 30646 Face 8576 31489 19411 16081 Face 8577 45686 9474 18151 Face 8578 40887 49117 4291 Face 8579 11051 37248 29941 Face 8580 4293 36909 12911 Face 8581 517 4293 12911 Face 8582 28118 27243 42977 Face 8583 16682 19604 6657 Face 8584 18836 8263 31359 Face 8585 13764 4295 25183 Face 8586 16624 4708 36730 Face 8587 32721 37534 7844 Face 8588 13764 25183 23699 Face 8589 8109 43620 32808 Face 8590 38401 49489 30368 Face 8591 6689 32996 21807 Face 8592 34830 37744 29114 Face 8593 4298 15841 17555 Face 8594 24219 21208 16951 Face 8595 4298 34213 15841 Face 8596 14567 4732 34213 Face 8597 14567 26774 25050 Face 8598 14567 37464 26774 Face 8599 44546 4302 42009 Face 8600 34484 34569 8669 Face 8601 32276 14516 26621 Face 8602 41755 9367 30757 Face 8603 9301 20345 36778 Face 8604 42477 8040 4304 Face 8605 18448 20478 34585 Face 8606 47776 25551 20479 Face 8607 45079 11776 1243 Face 8608 33497 14686 19923 Face 8609 32515 45079 1243 Face 8610 26839 43320 27784 Face 8611 29120 10889 43946 Face 8612 28008 897 40793 Face 8613 24602 4309 30730 Face 8614 24602 4162 4309 Face 8615 13631 25806 5110 Face 8616 42105 25449 9179 Face 8617 2129 40158 7740 Face 8618 13630 6714 37336 Face 8619 36118 12386 37488 Face 8620 46976 31063 4312 Face 8621 48707 7828 31525 Face 8622 31326 7077 24260 Face 8623 19153 10356 29981 Face 8624 30548 35484 18319 Face 8625 383 24980 10536 Face 8626 21635 48145 25372 Face 8627 8001 42032 20964 Face 8628 33072 7718 37222 Face 8629 23811 17391 29070 Face 8630 26998 32680 17391 Face 8631 29328 16339 48739 Face 8632 26211 44518 13081 Face 8633 46865 15749 42627 Face 8634 46865 16737 39192 Face 8635 11066 45229 23021 Face 8636 31689 13262 13227 Face 8637 20989 27569 4320 Face 8638 703 40470 34007 Face 8639 36278 35358 12093 Face 8640 38841 29345 24292 Face 8641 3985 22428 37922 Face 8642 7977 32168 14296 Face 8643 38367 36509 4221 Face 8644 46931 9035 4324 Face 8645 14988 19205 44001 Face 8646 34636 30560 35741 Face 8647 19159 4326 35456 Face 8648 19159 34894 4326 Face 8649 33445 17375 14323 Face 8650 29514 16178 48926 Face 8651 44025 23986 18257 Face 8652 17982 7141 23986 Face 8653 47616 7507 17348 Face 8654 13739 22180 46561 Face 8655 24696 7814 23442 Face 8656 961 16712 4330 Face 8657 48717 42976 15305 Face 8658 29549 11981 29312 Face 8659 4331 4332 46784 Face 8660 4331 27877 34593 Face 8661 31068 11757 21117 Face 8662 2403 20449 34502 Face 8663 33716 42483 8404 Face 8664 18327 4765 35958 Face 8665 13676 30960 39888 Face 8666 92 39677 30814 Face 8667 14306 11777 48575 Face 8668 1324 19660 49100 Face 8669 39516 9664 5584 Face 8670 38766 20919 26693 Face 8671 15919 38766 26693 Face 8672 38054 27976 49493 Face 8673 17164 23747 13994 Face 8674 17164 48698 23747 Face 8675 7257 22595 11594 Face 8676 4342 21967 29587 Face 8677 11273 16909 20504 Face 8678 932 18084 22848 Face 8679 45882 27938 11273 Face 8680 45882 30574 27938 Face 8681 45465 37360 31966 Face 8682 17551 15098 4343 Face 8683 19873 4344 32977 Face 8684 8750 25633 27306 Face 8685 6979 34457 44731 Face 8686 43100 17054 24683 Face 8687 33016 47114 31034 Face 8688 13083 16046 49782 Face 8689 25008 30602 37101 Face 8690 6247 33786 11541 Face 8691 5057 16630 30359 Face 8692 43226 28858 4348 Face 8693 39941 18956 2452 Face 8694 24675 38980 40908 Face 8695 42766 26003 9806 Face 8696 37967 33987 47395 Face 8697 1933 4351 22183 Face 8698 20181 13031 10716 Face 8699 1933 20181 10716 Face 8700 20899 15369 19418 Face 8701 42757 12197 18365 Face 8702 42757 20446 12197 Face 8703 4353 29528 23842 Face 8704 4353 17383 29528 Face 8705 14985 49565 17981 Face 8706 14985 16612 4355 Face 8707 48075 40511 37665 Face 8708 33289 40836 34335 Face 8709 36843 4357 12102 Face 8710 28600 34335 48075 Face 8711 25992 47662 39541 Face 8712 43844 23764 17117 Face 8713 28125 42751 28298 Face 8714 28125 13161 42154 Face 8715 42337 4360 29195 Face 8716 39284 5225 4360 Face 8717 41469 29664 16332 Face 8718 41450 47611 20823 Face 8719 15152 4362 21850 Face 8720 49467 34156 12420 Face 8721 17112 29766 10758 Face 8722 41688 29377 4363 Face 8723 17535 28334 9222 Face 8724 31556 25176 4364 Face 8725 48644 17648 49368 Face 8726 16760 44478 4365 Face 8727 2428 4366 48956 Face 8728 29959 35139 18795 Face 8729 3932 4367 20306 Face 8730 22515 14316 40534 Face 8731 26819 32695 12004 Face 8732 28652 1473 26795 Face 8733 26920 35329 38305 Face 8734 90 38798 12481 Face 8735 36442 4370 10709 Face 8736 1377 27013 48553 Face 8737 39458 47383 10695 Face 8738 17341 43297 4371 Face 8739 34533 4372 26797 Face 8740 16304 49237 4372 Face 8741 38631 4373 21718 Face 8742 17561 8373 42432 Face 8743 18227 47585 20615 Face 8744 45402 45899 38567 Face 8745 8302 23033 18670 Face 8746 39535 47813 4375 Face 8747 25269 48956 4366 Face 8748 9221 31824 17945 Face 8749 1003 9221 36479 Face 8750 44964 26067 28193 Face 8751 402 38691 37648 Face 8752 31195 44147 19082 Face 8753 1994 8883 15008 Face 8754 7689 21372 19690 Face 8755 32586 4380 39354 Face 8756 17966 38567 12267 Face 8757 27326 17149 11987 Face 8758 22041 15264 47645 Face 8759 18660 21873 7674 Face 8760 26537 5153 23980 Face 8761 15952 18660 15256 Face 8762 18248 2432 26793 Face 8763 17870 49599 33647 Face 8764 788 9818 4384 Face 8765 1311 24399 18716 Face 8766 13565 1881 27281 Face 8767 31817 25268 48350 Face 8768 10592 21629 42565 Face 8769 18898 20298 36990 Face 8770 38210 11138 20298 Face 8771 22349 38387 15019 Face 8772 10721 37753 18368 Face 8773 34548 31162 13841 Face 8774 15208 23408 45088 Face 8775 1496 12385 38394 Face 8776 17708 8717 49951 Face 8777 117 42870 33758 Face 8778 42866 18972 34600 Face 8779 48113 4392 31797 Face 8780 20096 3316 4392 Face 8781 13092 22527 26371 Face 8782 32652 17113 4393 Face 8783 1291 43906 32024 Face 8784 23686 21444 9865 Face 8785 44291 31504 39246 Face 8786 44291 46278 31504 Face 8787 1302 41193 41566 Face 8788 32950 33032 4396 Face 8789 31967 4397 26087 Face 8790 15918 22927 4397 Face 8791 18143 4398 37230 Face 8792 4399 48882 26057 Face 8793 309 23522 42264 Face 8794 309 19429 4399 Face 8795 26054 36659 48362 Face 8796 41132 18357 4400 Face 8797 34870 18029 23233 Face 8798 18169 11732 17116 Face 8799 42967 4402 19044 Face 8800 31570 46581 28281 Face 8801 20283 9803 43232 Face 8802 20283 45419 37094 Face 8803 5456 35184 17403 Face 8804 13865 33556 4404 Face 8805 10559 16449 22083 Face 8806 49813 25145 16449 Face 8807 2007 32405 35864 Face 8808 2007 13267 32405 Face 8809 37396 47124 1337 Face 8810 9970 36345 28151 Face 8811 19925 49853 8163 Face 8812 19925 32599 7972 Face 8813 33808 35714 15701 Face 8814 49853 19925 7972 Face 8815 22242 4410 31066 Face 8816 41536 25417 4410 Face 8817 12828 38934 40550 Face 8818 12828 47418 38934 Face 8819 2443 25792 19532 Face 8820 2443 21221 25792 Face 8821 291 24596 40975 Face 8822 28699 14037 40650 Face 8823 30313 37887 43600 Face 8824 106 28601 4414 Face 8825 8382 12975 26753 Face 8826 41563 13514 4415 Face 8827 150 49675 32493 Face 8828 23378 15258 21835 Face 8829 47910 25600 47513 Face 8830 48510 8295 38349 Face 8831 35780 4418 47084 Face 8832 513 35611 38557 Face 8833 16576 31296 48046 Face 8834 29607 46879 4419 Face 8835 34215 28632 13358 Face 8836 34215 16798 28632 Face 8837 21112 4421 12044 Face 8838 30706 16798 34215 Face 8839 12811 34139 18892 Face 8840 38471 2570 46181 Face 8841 38990 16064 23273 Face 8842 20678 38140 23856 Face 8843 1436 24622 26301 Face 8844 35376 21852 4424 Face 8845 16940 4425 38036 Face 8846 13822 14290 49561 Face 8847 10403 27673 39372 Face 8848 38172 19634 8531 Face 8849 18802 45047 24205 Face 8850 1863 21002 4427 Face 8851 29211 36028 22014 Face 8852 32527 19038 4428 Face 8853 36395 48167 18277 Face 8854 988 42579 46514 Face 8855 34160 47133 41389 Face 8856 42489 29205 10446 Face 8857 33835 20540 21162 Face 8858 19969 30186 13888 Face 8859 4433 37652 30826 Face 8860 23651 35524 16972 Face 8861 722 4433 8104 Face 8862 46427 35524 23651 Face 8863 48582 17354 14153 Face 8864 48498 8151 4434 Face 8865 29308 4435 36388 Face 8866 21697 44632 25874 Face 8867 15768 29308 36388 Face 8868 25877 12527 34379 Face 8869 34298 24233 21487 Face 8870 35434 13687 28071 Face 8871 27601 15010 38728 Face 8872 22106 18158 13221 Face 8873 472 28516 21742 Face 8874 472 31308 12797 Face 8875 29467 43408 12251 Face 8876 1893 7079 49977 Face 8877 34203 10175 38426 Face 8878 43294 34046 32485 Face 8879 17856 4442 3568 Face 8880 19611 30339 48239 Face 8881 17856 26512 4442 Face 8882 7132 22097 36161 Face 8883 1746 26454 35200 Face 8884 1746 35950 26454 Face 8885 20268 18363 1391 Face 8886 37413 19954 18363 Face 8887 39500 26719 23037 Face 8888 1004 3256 26719 Face 8889 43390 22321 15378 Face 8890 4448 3485 32270 Face 8891 950 33389 37000 Face 8892 950 34089 12974 Face 8893 15673 4449 46871 Face 8894 4448 48379 4449 Face 8895 1367 23671 29763 Face 8896 1367 34262 23671 Face 8897 30940 29202 34332 Face 8898 13485 41939 11523 Face 8899 10885 49467 40156 Face 8900 49408 6944 4452 Face 8901 31116 38629 29609 Face 8902 15685 42662 24474 Face 8903 43685 34843 36721 Face 8904 24265 17023 10713 Face 8905 12816 4455 27641 Face 8906 43538 21467 18059 Face 8907 2001 29568 27208 Face 8908 2001 40337 29568 Face 8909 2820 27774 38409 Face 8910 25715 48605 9920 Face 8911 33528 26747 10798 Face 8912 20609 33938 16164 Face 8913 14732 30681 37066 Face 8914 27859 5717 36584 Face 8915 26075 31357 6883 Face 8916 35413 15712 33380 Face 8917 46022 20201 28102 Face 8918 18585 26800 44614 Face 8919 30272 15748 11102 Face 8920 4463 36290 12964 Face 8921 30272 4463 39063 Face 8922 30273 30006 37720 Face 8923 48497 4464 8401 Face 8924 31950 36751 4464 Face 8925 21519 9513 18696 Face 8926 24018 4297 37392 Face 8927 19890 11403 26123 Face 8928 19890 23019 31400 Face 8929 948 4467 24824 Face 8930 43049 21177 20909 Face 8931 48077 22517 18274 Face 8932 22148 45688 4468 Face 8933 21534 33214 17305 Face 8934 30697 15840 43067 Face 8935 40305 25794 1384 Face 8936 42155 9071 29100 Face 8937 667 17152 17580 Face 8938 667 48439 4471 Face 8939 37838 30263 25978 Face 8940 30872 37335 21756 Face 8941 30988 16338 5514 Face 8942 30988 16273 16338 Face 8943 5248 15837 6733 Face 8944 9523 3288 30705 Face 8945 28160 40878 33433 Face 8946 1115 16866 29854 Face 8947 23550 36113 7947 Face 8948 685 43468 36113 Face 8949 30611 46915 30647 Face 8950 30611 14456 46915 Face 8951 28950 7834 49504 Face 8952 28950 15938 4478 Face 8953 1153 48579 8092 Face 8954 4717 28826 35106 Face 8955 35101 15435 8769 Face 8956 39495 21360 45554 Face 8957 6887 29642 35513 Face 8958 38872 8550 11606 Face 8959 45926 4482 4408 Face 8960 18407 4481 37892 Face 8961 47974 32785 3217 Face 8962 1640 32588 47767 Face 8963 37588 4484 10552 Face 8964 39371 24448 4484 Face 8965 30687 4485 38700 Face 8966 2546 21109 4485 Face 8967 26319 46237 17298 Face 8968 36025 47604 33055 Face 8969 1028 4487 28956 Face 8970 20962 29916 14697 Face 8971 22914 4488 43798 Face 8972 30361 30362 13553 Face 8973 32573 4489 20979 Face 8974 31517 35429 13819 Face 8975 18144 4490 31574 Face 8976 24864 10135 25938 Face 8977 44118 4491 25757 Face 8978 44996 23144 28043 Face 8979 49010 37671 16149 Face 8980 39621 19008 37671 Face 8981 40364 4493 15445 Face 8982 40364 16069 4493 Face 8983 42019 35675 6244 Face 8984 45602 26772 4494 Face 8985 7676 49254 15311 Face 8986 30000 3643 24227 Face 8987 33237 4496 41478 Face 8988 41594 12784 32682 Face 8989 29609 48516 3562 Face 8990 2685 37871 26153 Face 8991 31878 20268 1391 Face 8992 42711 19954 37413 Face 8993 35033 15976 32069 Face 8994 37090 36825 36620 Face 8995 5536 23913 38721 Face 8996 34697 5231 37511 Face 8997 1759 22766 34513 Face 8998 1759 9975 22764 Face 8999 39494 23713 16477 Face 9000 49861 11079 4502 Face 9001 18245 4503 22095 Face 9002 44619 9579 31695 Face 9003 376 4504 19061 Face 9004 43294 10175 4504 Face 9005 16467 25284 38692 Face 9006 14817 30676 10852 Face 9007 31269 38501 26074 Face 9008 841 24655 26238 Face 9009 18123 4507 30076 Face 9010 18982 33801 4507 Face 9011 31945 11953 25196 Face 9012 34868 26591 45336 Face 9013 1759 24684 9975 Face 9014 49983 45335 31945 Face 9015 10035 4510 15057 Face 9016 34318 9771 28460 Face 9017 28809 18883 40952 Face 9018 7846 6328 18884 Face 9019 35156 18151 9474 Face 9020 35156 21350 18151 Face 9021 48693 42301 11315 Face 9022 10423 37795 14824 Face 9023 28771 4514 14827 Face 9024 17947 48307 28562 Face 9025 23762 35683 48150 Face 9026 27788 7109 22580 Face 9027 35378 17221 5267 Face 9028 7657 22576 16011 Face 9029 1163 22373 13962 Face 9030 10212 32495 4517 Face 9031 36192 24757 43571 Face 9032 36192 18057 4518 Face 9033 14975 4519 14929 Face 9034 31321 7992 4519 Face 9035 5312 15969 41955 Face 9036 17905 17723 12616 Face 9037 40312 36235 11239 Face 9038 44661 7809 22144 Face 9039 24286 22756 43539 Face 9040 24286 22165 43799 Face 9041 4522 4523 18535 Face 9042 12906 37527 32092 Face 9043 27405 37380 7387 Face 9044 22176 12883 32531 Face 9045 10641 41282 27436 Face 9046 26626 3203 4527 Face 9047 41282 15183 27436 Face 9048 20117 8869 22498 Face 9049 25303 20418 39742 Face 9050 16925 26626 4527 Face 9051 28238 22196 13695 Face 9052 28238 19941 22196 Face 9053 1344 4529 43922 Face 9054 1344 35620 4529 Face 9055 14548 34000 32906 Face 9056 14548 44073 4530 Face 9057 35777 23908 29807 Face 9058 44201 2920 23580 Face 9059 34905 25531 8797 Face 9060 25863 22467 10309 Face 9061 9418 4533 9162 Face 9062 9418 29958 4533 Face 9063 21586 4534 8972 Face 9064 1628 38323 4534 Face 9065 724 4535 35439 Face 9066 37699 23089 4535 Face 9067 2931 14063 46407 Face 9068 2931 2934 14063 Face 9069 2932 4537 2935 Face 9070 2932 23978 4537 Face 9071 12523 27705 14487 Face 9072 10573 5644 38575 Face 9073 31393 4539 40046 Face 9074 57 31587 10648 Face 9075 14324 35405 24472 Face 9076 20173 40416 22887 Face 9077 11316 17520 33873 Face 9078 21380 20477 5106 Face 9079 14763 9916 23500 Face 9080 21526 33294 25306 Face 9081 24700 4543 39117 Face 9082 16924 37750 12723 Face 9083 37050 4544 27549 Face 9084 10322 25115 34974 Face 9085 1702 6464 45734 Face 9086 11965 37751 9517 Face 9087 1928 26686 6221 Face 9088 42479 19491 41532 Face 9089 22421 4547 20023 Face 9090 26712 7900 4547 Face 9091 24434 39590 12628 Face 9092 27765 43703 35400 Face 9093 36350 18237 18900 Face 9094 32086 18182 34013 Face 9095 14349 12885 16851 Face 9096 33701 24101 4550 Face 9097 38038 10571 15828 Face 9098 26802 13155 10280 Face 9099 19517 16565 5653 Face 9100 33915 13878 16566 Face 9101 20400 34190 9620 Face 9102 15054 49108 4553 Face 9103 12566 39790 45627 Face 9104 14378 11313 34333 Face 9105 32836 14378 34333 Face 9106 18425 24949 14378 Face 9107 42840 32906 34000 Face 9108 4557 12141 17744 Face 9109 42840 14191 4556 Face 9110 9156 15918 13569 Face 9111 12096 20973 44703 Face 9112 41294 8504 46359 Face 9113 30892 20139 36344 Face 9114 19403 1319 14354 Face 9115 21587 37995 4559 Face 9116 22880 6399 27502 Face 9117 38035 10017 45838 Face 9118 35567 24661 22492 Face 9119 17169 36191 27820 Face 9120 31501 45747 4562 Face 9121 17200 27603 5413 Face 9122 24163 34348 48181 Face 9123 22157 33616 3729 Face 9124 19704 46980 26771 Face 9125 2623 36074 2622 Face 9126 2623 29607 4565 Face 9127 31036 44202 43766 Face 9128 19874 43449 11151 Face 9129 36636 19874 31737 Face 9130 16872 14064 42164 Face 9131 33091 38435 29619 Face 9132 2308 33975 36914 Face 9133 28011 37321 32087 Face 9134 1018 30626 4569 Face 9135 19420 4570 48842 Face 9136 19609 2996 38018 Face 9137 26412 40031 16895 Face 9138 26413 4570 47191 Face 9139 28458 43213 3247 Face 9140 41829 48043 4572 Face 9141 41817 4573 16654 Face 9142 8501 25952 31637 Face 9143 39437 47023 11202 Face 9144 43465 13102 4574 Face 9145 161 27150 11989 Face 9146 39747 4326 34894 Face 9147 1296 13485 11523 Face 9148 30941 21340 4576 Face 9149 41797 4577 17190 Face 9150 23687 2659 10016 Face 9151 6727 4578 30266 Face 9152 1156 35297 4578 Face 9153 19968 4579 9589 Face 9154 37748 14456 45847 Face 9155 26471 13118 18923 Face 9156 25704 17638 4580 Face 9157 27907 20245 47439 Face 9158 28973 16541 4581 Face 9159 29748 12015 40983 Face 9160 18321 20584 38278 Face 9161 27941 31433 24556 Face 9162 33242 20009 42287 Face 9163 48885 16818 23769 Face 9164 45628 5973 16818 Face 9165 35063 14945 11899 Face 9166 33815 29844 18205 Face 9167 10997 44418 25309 Face 9168 10997 26182 44418 Face 9169 25818 4587 45162 Face 9170 24032 18293 22884 Face 9171 29185 7425 44687 Face 9172 29185 17998 7425 Face 9173 523 45215 28397 Face 9174 16986 26265 9117 Face 9175 8775 40510 37639 Face 9176 41828 48271 4590 Face 9177 24578 19791 5912 Face 9178 37914 24478 13443 Face 9179 1806 30682 48062 Face 9180 42215 17948 12468 Face 9181 2069 25139 34414 Face 9182 2069 19839 25139 Face 9183 29940 4594 16166 Face 9184 13929 7743 24955 Face 9185 36350 33334 18237 Face 9186 36906 795 33335 Face 9187 18182 26189 34013 Face 9188 2785 24716 30304 Face 9189 3737 19424 23947 Face 9190 26960 5939 21617 Face 9191 35866 33308 26115 Face 9192 35866 2854 24305 Face 9193 40012 41933 9327 Face 9194 23237 33783 28088 Face 9195 40393 25286 30498 Face 9196 40393 14919 25286 Face 9197 16717 32680 6806 Face 9198 35552 21483 29275 Face 9199 19014 35552 29275 Face 9200 16716 44646 28601 Face 9201 1513 18325 24737 Face 9202 1513 43723 18325 Face 9203 21213 30325 44329 Face 9204 5310 34407 48620 Face 9205 17466 37761 42290 Face 9206 3248 24311 34592 Face 9207 23006 6942 49153 Face 9208 12870 46019 13753 Face 9209 47896 19002 38547 Face 9210 36237 25042 4607 Face 9211 35870 4608 48708 Face 9212 33989 48609 4608 Face 9213 24851 40965 13848 Face 9214 49153 6942 33080 Face 9215 5792 21571 47645 Face 9216 41502 33019 38595 Face 9217 32781 31317 7420 Face 9218 32781 27866 45382 Face 9219 29245 47272 9056 Face 9220 19084 40931 4612 Face 9221 2394 38548 8853 Face 9222 2394 32549 36920 Face 9223 16693 37471 38964 Face 9224 16693 3939 43705 Face 9225 40059 4615 15886 Face 9226 40059 14501 17821 Face 9227 2535 36357 29610 Face 9228 34813 46277 4616 Face 9229 47593 16503 27223 Face 9230 42942 40303 12869 Face 9231 15993 4618 38701 Face 9232 15993 29588 18094 Face 9233 10989 32892 12333 Face 9234 89 31297 4619 Face 9235 13461 4620 33209 Face 9236 46027 10900 42427 Face 9237 34083 4621 12441 Face 9238 26700 11200 35856 Face 9239 28906 4622 30747 Face 9240 12182 3761 49338 Face 9241 10729 4623 49954 Face 9242 33366 27352 11290 Face 9243 42002 36308 18070 Face 9244 23659 39205 39670 Face 9245 15981 49625 4624 Face 9246 4627 34909 16609 Face 9247 10878 39156 49625 Face 9248 22526 17376 29908 Face 9249 33749 4627 7337 Face 9250 15975 6977 4627 Face 9251 45143 44326 29631 Face 9252 42936 39735 13098 Face 9253 6328 29042 23022 Face 9254 15291 18550 33015 Face 9255 1038 41818 29424 Face 9256 39415 37450 28116 Face 9257 24248 9329 10397 Face 9258 2029 44979 4631 Face 9259 49267 27269 45030 Face 9260 8304 21049 39263 Face 9261 9174 36993 37089 Face 9262 32528 21334 46530 Face 9263 22334 46486 32425 Face 9264 31922 43630 17292 Face 9265 48538 17780 39551 Face 9266 9417 13552 17780 Face 9267 2677 45865 28293 Face 9268 35431 41649 18859 Face 9269 21196 48748 38687 Face 9270 4638 39202 16059 Face 9271 24183 26895 8087 Face 9272 46205 13650 9042 Face 9273 28108 27342 26213 Face 9274 44210 20222 12516 Face 9275 34740 4640 16134 Face 9276 30165 9363 4640 Face 9277 6032 12099 21558 Face 9278 8097 9830 35436 Face 9279 45134 4642 20843 Face 9280 1019 33306 4642 Face 9281 1360 28917 24080 Face 9282 1360 21230 28917 Face 9283 42263 23666 6975 Face 9284 35159 6424 12162 Face 9285 18616 26558 6671 Face 9286 1415 34860 13390 Face 9287 15753 45960 14460 Face 9288 20441 29396 18847 Face 9289 15555 22163 44359 Face 9290 1093 17105 34002 Face 9291 6395 4648 22174 Face 9292 34454 12606 48406 Face 9293 18878 49190 26406 Face 9294 18878 41383 34268 Face 9295 26747 47269 10798 Face 9296 26588 354 27735 Face 9297 21043 27349 15217 Face 9298 29476 34411 4651 Face 9299 13057 4652 27931 Face 9300 22247 11640 17837 Face 9301 17474 4653 13605 Face 9302 16403 2098 4653 Face 9303 16842 39083 26765 Face 9304 47413 11075 35167 Face 9305 13625 27298 39094 Face 9306 22169 26232 4655 Face 9307 6764 12108 15315 Face 9308 20864 22100 4656 Face 9309 33169 4657 25878 Face 9310 20629 31832 9693 Face 9311 23613 17686 32140 Face 9312 46523 26215 17686 Face 9313 1742 4659 31547 Face 9314 24587 4154 4659 Face 9315 12746 34070 45979 Face 9316 24085 31310 34354 Face 9317 44937 10586 35862 Face 9318 22539 48507 27286 Face 9319 37907 22539 4661 Face 9320 39111 29389 4662 Face 9321 16458 16457 32723 Face 9322 23808 30892 36344 Face 9323 12867 32342 48050 Face 9324 12867 29620 4664 Face 9325 11903 4665 14472 Face 9326 47170 19857 30036 Face 9327 13918 23870 43088 Face 9328 31094 39968 4666 Face 9329 44656 23184 5155 Face 9330 31514 38855 41221 Face 9331 40555 4668 10274 Face 9332 40555 26682 4668 Face 9333 6080 4669 29962 Face 9334 1675 21122 33586 Face 9335 2956 13429 14632 Face 9336 20873 1351 44767 Face 9337 15200 46262 2725 Face 9338 30604 34404 23252 Face 9339 2031 4672 43979 Face 9340 11957 26715 4672 Face 9341 35533 28347 2438 Face 9342 49364 23486 13806 Face 9343 11022 16226 39250 Face 9344 29158 24938 16226 Face 9345 27031 20374 34372 Face 9346 49726 697 7044 Face 9347 1318 20066 31792 Face 9348 9884 27392 11682 Face 9349 29186 32774 22959 Face 9350 13042 40136 39164 Face 9351 22268 28721 33511 Face 9352 49506 12111 4678 Face 9353 31817 22110 4386 Face 9354 36507 34542 43934 Face 9355 29070 20964 42032 Face 9356 12924 3722 20061 Face 9357 34839 4681 46073 Face 9358 34839 33661 4681 Face 9359 13266 4682 20100 Face 9360 13266 40117 4682 Face 9361 47568 31851 12282 Face 9362 3606 44895 17645 Face 9363 408 4684 22892 Face 9364 408 44138 4684 Face 9365 22205 24317 47192 Face 9366 30993 8096 4685 Face 9367 834 48403 16731 Face 9368 48183 20421 12436 Face 9369 38997 18598 9216 Face 9370 47099 28459 18598 Face 9371 48311 24183 8087 Face 9372 25029 44034 6780 Face 9373 45071 22801 26863 Face 9374 45071 3173 22801 Face 9375 49646 13931 42015 Face 9376 2236 12562 4690 Face 9377 22312 23810 13476 Face 9378 22312 17051 4691 Face 9379 1737 12050 40406 Face 9380 37659 17051 9770 Face 9381 31013 14112 3143 Face 9382 31013 19946 4693 Face 9383 314 4694 23282 Face 9384 314 16256 4694 Face 9385 22500 23859 13125 Face 9386 29676 23245 33175 Face 9387 4695 23859 20140 Face 9388 4695 13125 23859 Face 9389 33328 4697 2594 Face 9390 29751 49351 4697 Face 9391 29857 30514 40319 Face 9392 9520 32174 18289 Face 9393 30542 24284 4698 Face 9394 963 21278 31602 Face 9395 34573 32919 40140 Face 9396 15011 33290 16627 Face 9397 23477 4701 15338 Face 9398 48413 13096 25957 Face 9399 40152 28727 1306 Face 9400 19135 47271 27216 Face 9401 896 4703 13391 Face 9402 896 21962 4703 Face 9403 12239 43410 20738 Face 9404 26375 14940 39530 Face 9405 46452 42184 40637 Face 9406 26864 13017 38722 Face 9407 23785 43864 16800 Face 9408 31001 20376 4706 Face 9409 21417 31233 15747 Face 9410 283 32247 14645 Face 9411 10367 4708 19781 Face 9412 10367 37601 4708 Face 9413 42443 4709 19024 Face 9414 8486 31650 24509 Face 9415 40409 14301 20760 Face 9416 47257 38684 12090 Face 9417 14709 30529 10028 Face 9418 28491 47315 13792 Face 9419 24660 14440 7721 Face 9420 9735 30234 32597 Face 9421 24555 9735 32597 Face 9422 48623 6297 21790 Face 9423 24659 4714 20253 Face 9424 24659 8816 25210 Face 9425 45513 45182 21028 Face 9426 23845 21985 37212 Face 9427 20707 4716 32719 Face 9428 14943 7366 45986 Face 9429 1153 15614 35106 Face 9430 10633 22405 15614 Face 9431 24793 4718 39273 Face 9432 39997 7669 13728 Face 9433 7435 6558 34783 Face 9434 23396 8893 10381 Face 9435 4722 39916 25696 Face 9436 4722 12087 4720 Face 9437 1764 42979 25615 Face 9438 12087 4722 31719 Face 9439 37866 4722 13723 Face 9440 25248 4721 41954 Face 9441 953 4723 16507 Face 9442 953 18019 32553 Face 9443 8433 26939 44833 Face 9444 21419 31145 26939 Face 9445 46292 25901 22231 Face 9446 18414 8793 24690 Face 9447 29898 17095 14522 Face 9448 4727 13373 22779 Face 9449 41561 4727 17095 Face 9450 5929 13373 4727 Face 9451 2224 4728 6432 Face 9452 6543 27342 21413 Face 9453 22251 22774 2066 Face 9454 20145 30615 46944 Face 9455 967 16957 38429 Face 9456 967 18007 16957 Face 9457 36414 44280 45808 Face 9458 8224 49709 4731 Face 9459 44381 25050 26774 Face 9460 34830 29114 4732 Face 9461 12317 4733 48968 Face 9462 24991 5106 32233 Face 9463 43400 30679 11936 Face 9464 40311 20176 4734 Face 9465 30312 25738 22313 Face 9466 34669 21762 43618 Face 9467 31132 24413 46890 Face 9468 27057 11742 4736 Face 9469 33298 4737 41079 Face 9470 27057 24413 31132 Face 9471 37875 33257 34895 Face 9472 42398 12851 34825 Face 9473 23900 38976 3124 Face 9474 23900 19710 38977 Face 9475 884 4740 31963 Face 9476 884 28893 4740 Face 9477 48759 27042 38886 Face 9478 14423 15036 27043 Face 9479 1896 31301 27881 Face 9480 46527 22474 31301 Face 9481 20676 26518 23001 Face 9482 41627 46883 12355 Face 9483 42138 27182 12695 Face 9484 46303 26517 4744 Face 9485 4744 28710 46303 Face 9486 31432 41343 10075 Face 9487 45278 21305 31894 Face 9488 25829 44177 30789 Face 9489 16335 26289 39898 Face 9490 24476 49102 11430 Face 9491 15418 4748 45940 Face 9492 15418 39126 4748 Face 9493 39048 11464 4216 Face 9494 6453 16036 41722 Face 9495 31265 43064 10684 Face 9496 19746 17053 16999 Face 9497 16191 45969 42991 Face 9498 1040 37160 45969 Face 9499 1040 18303 49347 Face 9500 20111 23579 48106 Face 9501 11690 4753 7325 Face 9502 15722 4239 25060 Face 9503 20142 5565 21922 Face 9504 48186 21030 4754 Face 9505 26269 31290 37329 Face 9506 980 23523 4755 Face 9507 19162 27830 8189 Face 9508 10119 23298 4756 Face 9509 671 28238 13695 Face 9510 14565 36677 10282 Face 9511 6024 38751 32564 Face 9512 46674 17039 4758 Face 9513 16993 36980 9296 Face 9514 8253 39776 36981 Face 9515 32121 27487 32757 Face 9516 38777 43891 37311 Face 9517 12764 4761 19232 Face 9518 43877 34330 30719 Face 9519 556 49310 24747 Face 9520 44051 29804 19400 Face 9521 9127 41229 12210 Face 9522 31191 1699 38837 Face 9523 15715 4764 25370 Face 9524 15715 11324 4764 Face 9525 16105 26766 1580 Face 9526 22505 35958 4765 Face 9527 14194 4766 1433 Face 9528 43463 25752 24653 Face 9529 33885 24787 33559 Face 9530 33885 14128 24787 Face 9531 22243 4768 41584 Face 9532 38991 14639 31109 Face 9533 2402 10155 45706 Face 9534 2402 31522 10155 Face 9535 7066 29880 9554 Face 9536 22771 36484 15378 Face 9537 10971 20651 48713 Face 9538 2635 9314 23715 Face 9539 15773 4772 17912 Face 9540 36700 48466 34044 Face 9541 14752 4773 35869 Face 9542 14752 27487 4773 Face 9543 38211 48916 28016 Face 9544 37787 21341 48916 Face 9545 26761 28876 11945 Face 9546 1590 15025 4775 Face 9547 42770 30147 16273 Face 9548 44582 4807 30147 Face 9549 4776 40622 48554 Face 9550 16789 6096 30089 Face 9551 37593 34644 20550 Face 9552 22860 49511 7393 Face 9553 34285 4779 19365 Face 9554 34285 43751 12965 Face 9555 22941 4780 19365 Face 9556 4117 14462 33395 Face 9557 138 41943 17923 Face 9558 138 31460 41943 Face 9559 31208 4782 28301 Face 9560 31208 19226 4782 Face 9561 43303 49148 37619 Face 9562 41030 43951 4783 Face 9563 1776 4784 42007 Face 9564 1776 30980 14557 Face 9565 2014 10481 10939 Face 9566 2014 14250 4785 Face 9567 26678 4786 9197 Face 9568 26678 6015 24239 Face 9569 38036 12957 16940 Face 9570 49880 41572 11073 Face 9571 1605 4788 23009 Face 9572 48741 6011 4788 Face 9573 18084 32384 22848 Face 9574 22237 12632 20213 Face 9575 41870 4790 34652 Face 9576 41870 440 44810 Face 9577 24745 22495 31198 Face 9578 24311 3248 35910 Face 9579 35059 43552 28513 Face 9580 19547 13059 4792 Face 9581 34118 4793 12036 Face 9582 6697 231 35610 Face 9583 2599 21743 29427 Face 9584 2599 17674 43972 Face 9585 47640 4795 47673 Face 9586 23392 2203 27857 Face 9587 45724 4796 23559 Face 9588 34154 4797 49017 Face 9589 2449 4797 27023 Face 9590 39251 10141 4797 Face 9591 16167 4798 28067 Face 9592 22829 46807 10928 Face 9593 10275 4799 19967 Face 9594 39815 8455 17557 Face 9595 26075 37317 33380 Face 9596 683 36219 37317 Face 9597 22096 23025 34441 Face 9598 33723 20389 4801 Face 9599 13549 17201 35760 Face 9600 33579 20361 45497 Face 9601 10074 18406 12421 Face 9602 16623 29814 4803 Face 9603 11782 15116 20840 Face 9604 39752 2049 4804 Face 9605 25963 42928 30666 Face 9606 15141 27624 22541 Face 9607 27446 4806 13052 Face 9608 14908 21281 4806 Face 9609 40957 4807 2929 Face 9610 22259 36341 4807 Face 9611 46880 18419 40639 Face 9612 26727 20310 18621 Face 9613 25256 4809 18621 Face 9614 5496 39690 4809 Face 9615 22816 4810 23383 Face 9616 22816 46832 39368 Face 9617 25888 12012 27920 Face 9618 37919 7877 4811 Face 9619 35081 23451 46765 Face 9620 29635 17766 46574 Face 9621 4812 19462 48677 Face 9622 10487 17766 4813 Face 9623 37021 28717 9682 Face 9624 37021 21226 28717 Face 9625 5308 37928 44556 Face 9626 33171 5158 14915 Face 9627 6176 35596 13416 Face 9628 6176 32851 23842 Face 9629 23121 4817 47176 Face 9630 15928 3097 32945 Face 9631 26371 4818 13092 Face 9632 34298 21487 23301 Face 9633 7936 18522 13194 Face 9634 29737 32277 16433 Face 9635 36788 4820 5566 Face 9636 36788 44470 4820 Face 9637 8433 21419 26939 Face 9638 16656 13512 39190 Face 9639 4823 15158 14995 Face 9640 9722 20085 4822 Face 9641 2326 4823 20680 Face 9642 2326 15158 4823 Face 9643 29616 42609 13998 Face 9644 18177 7291 4824 Face 9645 15284 21998 18386 Face 9646 9243 6407 17799 Face 9647 39261 33280 21834 Face 9648 43065 30248 21391 Face 9649 46735 17084 14666 Face 9650 36905 21827 20798 Face 9651 23232 8999 4426 Face 9652 5059 37306 26483 Face 9653 9247 4829 17655 Face 9654 45020 35258 4829 Face 9655 43391 9284 5102 Face 9656 30341 22320 23761 Face 9657 32059 4831 14528 Face 9658 28829 7991 25798 Face 9659 8821 15566 25485 Face 9660 1681 45921 27528 Face 9661 34249 49132 25102 Face 9662 47344 19980 31165 Face 9663 7797 19185 39485 Face 9664 7797 7682 19185 Face 9665 43250 42208 35719 Face 9666 47569 22932 4835 Face 9667 9372 43378 20508 Face 9668 37353 33361 41601 Face 9669 36438 13071 33004 Face 9670 36438 45187 18901 Face 9671 25424 4838 39922 Face 9672 4839 24658 41709 Face 9673 25424 44488 4838 Face 9674 220 19162 21479 Face 9675 923 6644 9037 Face 9676 923 32313 30085 Face 9677 10720 37683 24806 Face 9678 10720 24277 4841 Face 9679 19265 18293 42605 Face 9680 37687 31441 11898 Face 9681 12817 22622 13213 Face 9682 12817 26144 22622 Face 9683 15988 4844 31548 Face 9684 15988 25316 4844 Face 9685 619 48504 7553 Face 9686 19152 38654 4845 Face 9687 43714 4846 41482 Face 9688 43714 7553 42033 Face 9689 37801 4847 11524 Face 9690 37801 25090 4847 Face 9691 34773 4848 22768 Face 9692 37183 15638 25346 Face 9693 33208 4849 36493 Face 9694 19684 33226 41821 Face 9695 24793 4850 49213 Face 9696 15092 33816 41461 Face 9697 12017 30854 4198 Face 9698 46087 3037 30853 Face 9699 24812 16701 30854 Face 9700 8928 42332 4852 Face 9701 35031 14101 20343 Face 9702 17851 22714 21661 Face 9703 49432 26818 17681 Face 9704 2456 39570 4854 Face 9705 47350 4855 26502 Face 9706 23997 19577 21030 Face 9707 39761 35745 15360 Face 9708 28077 11176 41216 Face 9709 4200 46240 29425 Face 9710 4200 42220 17185 Face 9711 37577 22748 10416 Face 9712 6291 17211 9055 Face 9713 19616 4859 26118 Face 9714 46740 35428 7417 Face 9715 16331 21805 39797 Face 9716 8588 5659 21805 Face 9717 13773 38748 47420 Face 9718 19260 7711 40209 Face 9719 40545 4862 27578 Face 9720 33090 7701 12264 Face 9721 27833 47728 6539 Face 9722 38784 3390 21316 Face 9723 10386 4864 21523 Face 9724 10386 19248 4864 Face 9725 14435 4865 41392 Face 9726 14435 47586 44744 Face 9727 39131 28547 12880 Face 9728 34968 39978 4866 Face 9729 2333 45238 28547 Face 9730 45167 27618 25507 Face 9731 3090 33429 17291 Face 9732 3090 47603 27198 Face 9733 19556 34671 17624 Face 9734 19556 44454 4869 Face 9735 1712 35952 15853 Face 9736 49880 11073 26827 Face 9737 42730 20604 2908 Face 9738 18454 27215 20214 Face 9739 28477 4872 12790 Face 9740 40407 36169 31872 Face 9741 7608 46636 19512 Face 9742 10053 43565 4873 Face 9743 14085 22962 38111 Face 9744 503 25259 22962 Face 9745 42702 4875 30576 Face 9746 12265 42201 7163 Face 9747 37138 4876 46035 Face 9748 39288 23719 14405 Face 9749 37138 36915 4876 Face 9750 22504 32285 4877 Face 9751 1427 4878 32099 Face 9752 10162 17983 33241 Face 9753 42398 32209 10978 Face 9754 30168 24450 4879 Face 9755 26959 28495 19673 Face 9756 37307 49109 20355 Face 9757 2248 31118 10317 Face 9758 34006 19339 24283 Face 9759 42892 4882 25658 Face 9760 42892 32051 25731 Face 9761 32224 41896 32046 Face 9762 17296 7520 17286 Face 9763 42906 35309 24556 Face 9764 21103 28206 37356 Face 9765 29895 4885 16713 Face 9766 29895 35309 4885 Face 9767 11575 32943 21044 Face 9768 12039 23939 45285 Face 9769 45737 49219 28528 Face 9770 43970 23556 25804 Face 9771 12842 4888 20485 Face 9772 24150 22627 21145 Face 9773 24150 4889 41761 Face 9774 78 4887 27339 Face 9775 11300 4890 34831 Face 9776 42454 11355 21734 Face 9777 32380 42047 6018 Face 9778 17618 4890 11300 Face 9779 14433 4892 32882 Face 9780 17217 30501 9926 Face 9781 8662 19651 19649 Face 9782 25161 17683 19651 Face 9783 32433 35170 31098 Face 9784 24185 42826 4894 Face 9785 27370 33014 2712 Face 9786 29079 13152 4895 Face 9787 29469 27069 46550 Face 9788 44800 36537 31047 Face 9789 38867 32275 26621 Face 9790 43704 25242 4897 Face 9791 14688 4898 43506 Face 9792 738 36908 44298 Face 9793 2655 4899 25246 Face 9794 27789 17687 38878 Face 9795 43913 4900 46950 Face 9796 23201 34730 4900 Face 9797 35004 4901 16628 Face 9798 35004 5924 4901 Face 9799 15601 42312 4189 Face 9800 33414 4849 17614 Face 9801 1720 4903 22154 Face 9802 1720 21164 29944 Face 9803 26583 8067 1825 Face 9804 561 24854 32514 Face 9805 36263 48536 1422 Face 9806 34707 8067 26583 Face 9807 25982 29760 46816 Face 9808 31040 15871 11722 Face 9809 26029 31447 23501 Face 9810 28186 21260 18804 Face 9811 48036 32727 20258 Face 9812 10322 4544 43596 Face 9813 21688 17418 46110 Face 9814 14672 20656 4909 Face 9815 18836 49772 8263 Face 9816 13251 19819 27764 Face 9817 5432 43526 6385 Face 9818 8563 28646 32076 Face 9819 46118 39592 18035 Face 9820 16102 25601 39592 Face 9821 2420 4913 30593 Face 9822 13965 10539 39656 Face 9823 29090 34682 23154 Face 9824 39037 8671 24485 Face 9825 28283 33560 12119 Face 9826 28282 47493 33560 Face 9827 16251 4916 44676 Face 9828 34815 45253 4916 Face 9829 10528 38852 1800 Face 9830 43900 3411 38513 Face 9831 49431 4918 30169 Face 9832 19982 23458 33949 Face 9833 25784 4919 22082 Face 9834 5458 12420 34156 Face 9835 45733 4920 9298 Face 9836 40420 10376 26789 Face 9837 222 4921 19204 Face 9838 24788 2475 4921 Face 9839 13977 37788 24577 Face 9840 42783 21341 37787 Face 9841 27898 16231 32484 Face 9842 26514 9091 20532 Face 9843 41854 4924 26860 Face 9844 46588 25854 4924 Face 9845 1564 46836 29541 Face 9846 14389 12697 31579 Face 9847 31586 4926 15711 Face 9848 21866 43996 48476 Face 9849 12811 40882 4422 Face 9850 12812 34853 26461 Face 9851 35312 42685 17337 Face 9852 23388 29922 44317 Face 9853 31997 35115 48160 Face 9854 31996 11872 34842 Face 9855 29721 4930 48694 Face 9856 29721 22920 4930 Face 9857 609 35302 27661 Face 9858 609 9007 18452 Face 9859 21157 9378 30472 Face 9860 26692 11713 17666 Face 9861 12431 4933 20777 Face 9862 2973 17666 49569 Face 9863 26692 25910 6753 Face 9864 13487 17288 12431 Face 9865 22485 4935 33712 Face 9866 27762 12958 4935 Face 9867 41106 4936 21082 Face 9868 31659 12550 20761 Face 9869 33085 10863 41792 Face 9870 5262 13443 24578 Face 9871 26133 4938 36801 Face 9872 33060 24068 40330 Face 9873 49436 35118 29101 Face 9874 23958 6029 31488 Face 9875 17907 43042 42496 Face 9876 26848 31414 4940 Face 9877 30016 14339 29978 Face 9878 30016 9915 13388 Face 9879 42824 4942 24440 Face 9880 686 38718 29659 Face 9881 2437 15473 9559 Face 9882 35150 4275 15473 Face 9883 2470 4944 30098 Face 9884 2470 22053 4944 Face 9885 11260 4945 33623 Face 9886 47076 1076 29727 Face 9887 5176 46071 30154 Face 9888 17059 4940 45823 Face 9889 17400 30050 26263 Face 9890 1340 9719 35681 Face 9891 35665 8900 11136 Face 9892 29822 40852 10856 Face 9893 11760 13027 24559 Face 9894 16157 49711 30434 Face 9895 36795 36324 23770 Face 9896 31627 11865 4950 Face 9897 1083 23306 26191 Face 9898 1083 39459 23306 Face 9899 29666 4952 44597 Face 9900 42620 41587 30686 Face 9901 22282 38141 26892 Face 9902 14828 9611 40029 Face 9903 48936 12620 47661 Face 9904 37347 19936 30704 Face 9905 11807 4955 28894 Face 9906 1225 24084 4955 Face 9907 584 14289 6911 Face 9908 584 28157 14289 Face 9909 5210 4957 15820 Face 9910 44834 14474 23830 Face 9911 36626 4958 43326 Face 9912 10194 8161 24437 Face 9913 28205 4959 782 Face 9914 28205 38584 4959 Face 9915 8108 17792 13390 Face 9916 27721 33514 11248 Face 9917 26206 21555 13018 Face 9918 29955 38224 16726 Face 9919 18739 27095 37079 Face 9920 6511 38254 17538 Face 9921 2515 31477 4120 Face 9922 14397 36951 27980 Face 9923 27534 34233 14317 Face 9924 15253 18502 27135 Face 9925 35762 24337 24981 Face 9926 49926 28073 39784 Face 9927 19838 4966 27637 Face 9928 32861 6499 4966 Face 9929 31777 43482 9854 Face 9930 42741 33130 4967 Face 9931 3488 30470 44271 Face 9932 41304 10839 4968 Face 9933 49933 35718 12988 Face 9934 11447 13669 35718 Face 9935 38402 21433 29461 Face 9936 35448 31957 4970 Face 9937 4388 22851 34907 Face 9938 4388 29101 22851 Face 9939 2455 25771 11322 Face 9940 30598 11627 25771 Face 9941 1033 4973 41687 Face 9942 43311 23221 4973 Face 9943 1033 18563 4973 Face 9944 34057 43217 23402 Face 9945 1518 34601 4225 Face 9946 20445 35425 12832 Face 9947 876 36335 14373 Face 9948 876 36523 19454 Face 9949 6511 20029 3774 Face 9950 47531 21026 40989 Face 9951 17491 39277 7703 Face 9952 30439 32684 4978 Face 9953 1446 37176 46764 Face 9954 12325 41639 26776 Face 9955 45445 15590 20269 Face 9956 15391 20669 4980 Face 9957 26363 4981 11559 Face 9958 15391 4980 39891 Face 9959 9328 4982 26584 Face 9960 16800 43864 4982 Face 9961 14036 18439 5874 Face 9962 14036 36492 4983 Face 9963 1118 15070 18796 Face 9964 29287 24709 4984 Face 9965 2346 9466 20871 Face 9966 35362 48159 26362 Face 9967 35362 4986 12466 Face 9968 47253 45696 4986 Face 9969 1076 4987 29727 Face 9970 13463 36442 10709 Face 9971 32613 37186 22003 Face 9972 32613 35249 21696 Face 9973 22813 25900 1995 Face 9974 26791 23645 4989 Face 9975 8065 21875 31833 Face 9976 6954 35325 43221 Face 9977 32595 28312 6137 Face 9978 32594 34794 38160 Face 9979 546 15540 49915 Face 9980 36793 39546 27675 Face 9981 15621 29596 10101 Face 9982 15790 40385 39835 Face 9983 37953 48998 47702 Face 9984 1215 19694 4994 Face 9985 10211 24278 3852 Face 9986 1812 9908 39177 Face 9987 25364 43606 21532 Face 9988 25364 29865 43606 Face 9989 27468 4997 22168 Face 9990 27458 11130 33332 Face 9991 35830 39654 7588 Face 9992 11026 23085 4998 Face 9993 32068 4999 12698 Face 9994 11026 4998 33736 Face 9995 39207 5000 4589 Face 9996 39207 12902 5000 Face 9997 25508 49142 24539 Face 9998 21105 41738 11941 Face 9999 21125 18766 19849 Face 10000 33941 10956 44200 Face 10001 31273 5003 12642 Face 10002 32749 18766 5003 Face 10003 20990 27944 32299 Face 10004 20990 49743 5004 Face 10005 24358 46912 30704 Face 10006 35692 30965 16108 Face 10007 505 39158 3056 Face 10008 505 24581 39158 Face 10009 19187 5007 31742 Face 10010 19187 23240 5007 Face 10011 44322 31571 18105 Face 10012 20004 26016 5008 Face 10013 5272 21892 48729 Face 10014 210 45608 36836 Face 10015 48522 40936 2138 Face 10016 37211 13126 15612 Face 10017 30233 16029 26538 Face 10018 30233 46510 16029 Face 10019 20002 26219 34362 Face 10020 46761 18059 30849 Face 10021 38254 21966 34662 Face 10022 37350 43781 21966 Face 10023 12640 30614 46911 Face 10024 18348 23215 9305 Face 10025 19538 43139 27132 Face 10026 34470 7305 12640 Face 10027 832 47044 24561 Face 10028 35887 34564 20393 Face 10029 832 35887 47044 Face 10030 10559 18016 5017 Face 10031 1521 42527 28969 Face 10032 1521 33942 18146 Face 10033 8537 32148 3531 Face 10034 16522 558 33012 Face 10035 22237 5020 12632 Face 10036 48548 9628 23817 Face 10037 43081 24570 3241 Face 10038 28978 18094 46904 Face 10039 28978 21909 18588 Face 10040 28978 46904 21909 Face 10041 7114 26936 33621 Face 10042 38310 14025 42116 Face 10043 19739 37499 17814 Face 10044 44721 22864 47263 Face 10045 25625 15431 5302 Face 10046 1938 21283 46538 Face 10047 34764 49335 44934 Face 10048 13902 41253 5026 Face 10049 17542 43454 13864 Face 10050 43000 1987 22721 Face 10051 5030 12944 6289 Face 10052 41641 734 5028 Face 10053 15753 5029 18847 Face 10054 16875 12982 5031 Face 10055 26322 15521 36717 Face 10056 17259 12982 20681 Face 10057 18104 17259 20681 Face 10058 5029 16875 5031 Face 10059 36098 39607 22706 Face 10060 45608 210 15932 Face 10061 26480 39096 15664 Face 10062 12191 7407 39096 Face 10063 43298 33348 8702 Face 10064 15130 28411 30245 Face 10065 572 39987 27572 Face 10066 572 26174 39987 Face 10067 28429 9349 19107 Face 10068 35760 4802 33251 Face 10069 39011 27453 35412 Face 10070 1321 44440 5037 Face 10071 38384 44550 21209 Face 10072 29542 2971 5038 Face 10073 32537 5039 16134 Face 10074 43393 5038 5039 Face 10075 3111 28356 7410 Face 10076 22935 13759 10724 Face 10077 28001 12252 25099 Face 10078 20804 10747 12252 Face 10079 37240 5042 21203 Face 10080 22282 42008 5042 Face 10081 17281 24638 49821 Face 10082 1277 25477 13246 Face 10083 2273 15078 18487 Face 10084 2273 49975 15078 Face 10085 11160 34918 38005 Face 10086 1275 33853 5045 Face 10087 41989 5046 8378 Face 10088 43836 16394 19278 Face 10089 10887 24741 19108 Face 10090 2 28979 23170 Face 10091 34058 18681 25657 Face 10092 639 4966 19838 Face 10093 47019 25281 34529 Face 10094 46338 46943 15515 Face 10095 33649 16895 10042 Face 10096 43224 29658 5050 Face 10097 30798 14270 769 Face 10098 911 37174 24164 Face 10099 237 22744 8055 Face 10100 19294 38056 5052 Face 10101 31072 35510 13113 Face 10102 23834 14320 35509 Face 10103 19292 26743 28656 Face 10104 26374 6965 19507 Face 10105 17564 39933 28820 Face 10106 17171 38202 48529 Face 10107 34880 5056 33051 Face 10108 46618 25637 5056 Face 10109 18953 42739 24312 Face 10110 18953 26355 42739 Face 10111 18275 16098 31000 Face 10112 5556 24188 28891 Face 10113 2654 44627 4426 Face 10114 31578 24888 42667 Face 10115 1584 5060 30155 Face 10116 1584 38203 5060 Face 10117 15325 12273 3923 Face 10118 23561 11834 29238 Face 10119 13380 33563 24167 Face 10120 40479 19323 22652 Face 10121 37142 22652 19323 Face 10122 5062 22277 39088 Face 10123 15424 15335 31874 Face 10124 10514 14388 16698 Face 10125 30170 21813 15100 Face 10126 13222 20913 47244 Face 10127 11883 11999 22833 Face 10128 33430 20913 13222 Face 10129 26745 5067 41272 Face 10130 44990 3877 12463 Face 10131 27548 5068 19284 Face 10132 27548 26206 13018 Face 10133 44990 43513 3877 Face 10134 39295 24869 5069 Face 10135 35779 14005 17366 Face 10136 16914 48107 32591 Face 10137 19501 31934 45197 Face 10138 2295 16071 12479 Face 10139 27689 24399 1311 Face 10140 36017 15164 24997 Face 10141 28635 5073 12263 Face 10142 967 33188 14124 Face 10143 39817 30045 33809 Face 10144 21339 33647 31642 Face 10145 19187 7476 23240 Face 10146 8252 30087 7476 Face 10147 22185 5076 31498 Face 10148 3706 45619 30123 Face 10149 49184 5077 4300 Face 10150 22796 27823 49206 Face 10151 39196 5078 11031 Face 10152 14476 9882 5078 Face 10153 5081 19689 31972 Face 10154 27375 5210 8770 Face 10155 26520 5080 8770 Face 10156 11233 18605 34033 Face 10157 18037 22679 5387 Face 10158 33026 19689 39440 Face 10159 26521 5082 5080 Face 10160 23949 11258 24097 Face 10161 38466 35945 40984 Face 10162 26765 39083 5083 Face 10163 317 32427 11590 Face 10164 7883 9647 11021 Face 10165 15504 36683 30543 Face 10166 17925 30233 5085 Face 10167 15073 10679 28512 Face 10168 5087 42908 46772 Face 10169 15073 31333 29438 Face 10170 7624 25366 24384 Face 10171 8443 5088 25446 Face 10172 27786 42181 21272 Face 10173 21544 32711 29775 Face 10174 9949 13956 32711 Face 10175 12543 37604 44407 Face 10176 6608 33989 32142 Face 10177 1115 5091 25258 Face 10178 22611 42820 5091 Face 10179 44772 5092 21461 Face 10180 44772 30804 5092 Face 10181 25914 41344 35550 Face 10182 4457 42918 27774 Face 10183 2172 29695 18178 Face 10184 45138 25619 13319 Face 10185 39827 5095 13319 Face 10186 39974 26862 5095 Face 10187 45312 16192 42311 Face 10188 35642 2249 16192 Face 10189 2745 44679 42202 Face 10190 15868 31006 36600 Face 10191 40414 29762 26002 Face 10192 8682 12711 16435 Face 10193 45653 35528 18280 Face 10194 3469 49767 36703 Face 10195 1283 15303 6416 Face 10196 42119 11725 15303 Face 10197 12237 34239 19934 Face 10198 310 26194 40300 Face 10199 310 37546 48383 Face 10200 15822 17803 37546 Face 10201 1051 5103 40043 Face 10202 1051 29566 5103 Face 10203 25807 5104 28641 Face 10204 22960 27063 5104 Face 10205 919 15595 30777 Face 10206 919 29547 15595 Face 10207 17519 5106 24991 Face 10208 4541 12274 5106 Face 10209 18272 22061 6439 Face 10210 30260 12561 48512 Face 10211 32658 33803 719 Face 10212 3988 14287 9224 Face 10213 23346 36680 14751 Face 10214 25735 33630 46151 Face 10215 47409 5110 35903 Face 10216 22317 31108 5110 Face 10217 47409 44223 5110 Face 10218 17972 5587 25907 Face 10219 48652 19414 40468 Face 10220 14721 24030 5112 Face 10221 5114 40032 30910 Face 10222 35761 24907 42382 Face 10223 15268 27648 3941 Face 10224 24789 5113 15193 Face 10225 30281 5115 18181 Face 10226 2377 27553 21080 Face 10227 37702 25744 14304 Face 10228 18405 21447 22983 Face 10229 22947 32166 35010 Face 10230 22946 1704 5117 Face 10231 46701 5118 18408 Face 10232 20490 25632 36585 Face 10233 27235 49117 40887 Face 10234 15706 31463 5119 Face 10235 4027 20693 904 Face 10236 31828 14956 27193 Face 10237 16042 34408 11050 Face 10238 32462 16489 29768 Face 10239 1840 45537 29433 Face 10240 7602 47634 9832 Face 10241 12284 38789 21034 Face 10242 17770 26057 48882 Face 10243 25923 26082 5123 Face 10244 25924 43448 34575 Face 10245 31241 16286 24839 Face 10246 31241 11456 28999 Face 10247 25129 18296 14910 Face 10248 3173 34179 18296 Face 10249 23041 28258 14927 Face 10250 6999 20071 28258 Face 10251 2577 6999 39429 Face 10252 37609 47605 21740 Face 10253 49177 30047 6206 Face 10254 15433 6770 30246 Face 10255 28130 12833 33908 Face 10256 263 34698 5130 Face 10257 12528 38499 28091 Face 10258 11231 37881 5131 Face 10259 45820 16028 40381 Face 10260 33940 17684 5132 Face 10261 2980 5133 36950 Face 10262 37147 25431 5133 Face 10263 1941 23472 32610 Face 10264 26690 47290 23473 Face 10265 40022 23473 47476 Face 10266 44657 17314 5135 Face 10267 46081 33028 14979 Face 10268 47196 4396 32192 Face 10269 20627 43840 33029 Face 10270 20627 16003 43840 Face 10271 924 28732 33042 Face 10272 924 18401 28732 Face 10273 43627 5139 36650 Face 10274 13410 37201 17019 Face 10275 2161 5140 36168 Face 10276 32473 39179 24084 Face 10277 16155 5141 37830 Face 10278 13174 37851 23393 Face 10279 23789 5142 22295 Face 10280 23789 5765 5142 Face 10281 38907 7031 19997 Face 10282 26445 37443 7032 Face 10283 269 5144 46892 Face 10284 44832 3612 15102 Face 10285 14344 38218 32923 Face 10286 14344 48550 38218 Face 10287 20833 16019 47775 Face 10288 1191 42737 35599 Face 10289 32753 20314 31044 Face 10290 32753 17318 20314 Face 10291 33210 19390 41235 Face 10292 24678 772 19191 Face 10293 26536 15459 19064 Face 10294 1239 33867 5149 Face 10295 47700 5150 29699 Face 10296 16583 39515 5150 Face 10297 39093 5151 39865 Face 10298 24246 18749 9398 Face 10299 620 5152 40080 Face 10300 620 29301 5152 Face 10301 5011 41218 27998 Face 10302 49334 23350 22696 Face 10303 17787 5154 41138 Face 10304 22190 12175 27726 Face 10305 5178 21211 29833 Face 10306 13767 44656 22117 Face 10307 20612 18589 9119 Face 10308 37064 15833 25025 Face 10309 41966 5157 35914 Face 10310 38184 18589 5157 Face 10311 2233 5158 33171 Face 10312 25057 3202 16381 Face 10313 26285 5159 46979 Face 10314 26285 42540 5159 Face 10315 34365 12136 20078 Face 10316 6913 31042 28308 Face 10317 9994 37196 5160 Face 10318 34785 46568 12502 Face 10319 43888 27798 11934 Face 10320 43888 10015 27798 Face 10321 30620 5163 3793 Face 10322 1805 48063 31831 Face 10323 23594 5164 34434 Face 10324 37932 9108 20986 Face 10325 38400 5165 39217 Face 10326 2632 28810 5165 Face 10327 13557 5166 6375 Face 10328 13557 18684 5166 Face 10329 32577 43816 3284 Face 10330 23933 42426 29098 Face 10331 17425 27331 6099 Face 10332 41698 23989 27331 Face 10333 36528 43660 3049 Face 10334 43031 33561 5169 Face 10335 26068 25041 39448 Face 10336 22794 3047 5170 Face 10337 18628 18801 45819 Face 10338 18628 13322 18801 Face 10339 19974 5172 40537 Face 10340 7172 21091 31678 Face 10341 31092 47574 43501 Face 10342 13285 17692 47574 Face 10343 21631 23551 7299 Face 10344 28883 38917 5174 Face 10345 22302 32249 49119 Face 10346 23601 27910 11526 Face 10347 45562 11566 26431 Face 10348 45562 44576 11566 Face 10349 38949 14413 33983 Face 10350 44881 33759 30645 Face 10351 38759 28375 34710 Face 10352 38759 21211 5178 Face 10353 38962 14670 37649 Face 10354 25479 3460 34768 Face 10355 32013 5180 29711 Face 10356 47752 5179 38962 Face 10357 26331 30578 15324 Face 10358 20304 12658 33878 Face 10359 5183 16785 7111 Face 10360 11853 45580 32223 Face 10361 25379 5183 13930 Face 10362 31970 16785 42323 Face 10363 44499 5184 9675 Face 10364 26129 15024 28802 Face 10365 25567 35554 44871 Face 10366 25174 25974 49309 Face 10367 40749 5187 22109 Face 10368 40749 12895 47687 Face 10369 39650 48451 26490 Face 10370 5186 46235 27509 Face 10371 12955 26918 7309 Face 10372 1976 18436 16652 Face 10373 6116 12954 18703 Face 10374 1976 17029 5189 Face 10375 48174 36423 13505 Face 10376 35099 40607 24730 Face 10377 21056 12886 27858 Face 10378 5352 19763 34224 Face 10379 43359 5192 26248 Face 10380 7456 44693 5192 Face 10381 15813 30108 21918 Face 10382 25290 2461 40993 Face 10383 19994 28369 41889 Face 10384 29573 47857 15813 Face 10385 16661 14494 2461 Face 10386 29574 21722 37401 Face 10387 34777 5196 34667 Face 10388 34777 40950 5196 Face 10389 46760 36475 42013 Face 10390 23682 8086 45436 Face 10391 30187 12222 38090 Face 10392 29964 44386 5198 Face 10393 3648 11546 40620 Face 10394 27810 8980 38072 Face 10395 47864 5200 38670 Face 10396 16929 47129 25832 Face 10397 17546 40302 39707 Face 10398 9568 43549 5201 Face 10399 42331 14167 5282 Face 10400 5203 28575 18217 Face 10401 209 5203 20741 Face 10402 47390 40290 46298 Face 10403 35329 12787 8955 Face 10404 4369 34392 5204 Face 10405 6802 33816 15092 Face 10406 2774 15500 5205 Face 10407 29267 5206 40494 Face 10408 38156 34583 14162 Face 10409 2584 11577 14090 Face 10410 5208 25810 22326 Face 10411 39988 27170 34902 Face 10412 14843 6208 40800 Face 10413 2584 5209 11577 Face 10414 17942 6208 14843 Face 10415 26035 17568 7576 Face 10416 31244 11726 5210 Face 10417 1243 14361 32515 Face 10418 20467 12594 30354 Face 10419 49745 49989 38741 Face 10420 43946 10889 5212 Face 10421 28136 5214 10731 Face 10422 48763 11978 45277 Face 10423 9014 5214 9753 Face 10424 30145 24056 5214 Face 10425 24510 5215 32834 Face 10426 43775 5099 19412 Face 10427 12450 26176 14359 Face 10428 771 11483 26176 Face 10429 15032 36354 29250 Face 10430 15032 8673 5217 Face 10431 4525 5218 26625 Face 10432 4525 5216 5218 Face 10433 32502 30472 9378 Face 10434 27643 16072 45122 Face 10435 34153 19075 7255 Face 10436 11349 1333 36042 Face 10437 7121 17211 40131 Face 10438 32756 22348 5221 Face 10439 20457 27580 12824 Face 10440 22307 20232 5222 Face 10441 18251 45742 3937 Face 10442 29755 8694 14353 Face 10443 25363 5224 41050 Face 10444 1964 30796 5224 Face 10445 5226 18664 12735 Face 10446 45205 31885 23011 Face 10447 14848 5226 25120 Face 10448 14848 41234 5226 Face 10449 20067 28637 15480 Face 10450 42042 11676 33695 Face 10451 2220 32141 37886 Face 10452 2220 29330 47624 Face 10453 1682 47755 10760 Face 10454 19167 32063 13858 Face 10455 38192 18581 13924 Face 10456 34093 21884 27346 Face 10457 14454 24430 4566 Face 10458 21321 11280 27621 Face 10459 29657 5232 1904 Face 10460 15911 25886 44743 Face 10461 17044 33512 40809 Face 10462 8051 13488 5234 Face 10463 15219 19204 4921 Face 10464 5233 34916 5234 Face 10465 38795 10936 4164 Face 10466 6348 42507 42108 Face 10467 15863 26276 20153 Face 10468 32024 43906 16943 Face 10469 26223 14682 29430 Face 10470 48804 21685 19439 Face 10471 5237 19439 21685 Face 10472 5237 25358 19990 Face 10473 1949 45614 24165 Face 10474 25481 8071 16377 Face 10475 46175 5240 33581 Face 10476 15644 40951 47852 Face 10477 9169 21174 14947 Face 10478 16567 49451 21421 Face 10479 10598 5242 43346 Face 10480 45301 35752 5242 Face 10481 761 29230 22123 Face 10482 8904 42422 5243 Face 10483 1491 5244 20691 Face 10484 1491 32014 29734 Face 10485 46513 29926 15597 Face 10486 15555 44359 16524 Face 10487 1245 32160 3332 Face 10488 1245 7132 34314 Face 10489 35875 24161 3300 Face 10490 35875 28530 41043 Face 10491 8656 45514 6733 Face 10492 3 48121 5248 Face 10493 12830 25754 40840 Face 10494 20257 30494 41366 Face 10495 26942 25383 41095 Face 10496 31401 25754 33211 Face 10497 29977 42640 15263 Face 10498 29977 39990 5251 Face 10499 220 44006 20991 Face 10500 220 4839 44006 Face 10501 1630 21651 11602 Face 10502 1630 10113 30734 Face 10503 15897 20959 26852 Face 10504 23569 16245 11884 Face 10505 45191 39122 4621 Face 10506 12195 38248 38130 Face 10507 7348 11393 38853 Face 10508 8793 27357 15912 Face 10509 47301 14080 36764 Face 10510 46494 25842 16533 Face 10511 48 25130 13582 Face 10512 22957 25842 46494 Face 10513 42298 5259 31819 Face 10514 2208 30123 32744 Face 10515 15119 34251 37655 Face 10516 40770 7777 21669 Face 10517 21669 39491 16577 Face 10518 21669 7777 5261 Face 10519 33085 5262 10863 Face 10520 26821 44666 28123 Face 10521 7904 14880 2686 Face 10522 7904 23138 14880 Face 10523 10454 40170 13374 Face 10524 44521 18268 5264 Face 10525 13515 35321 3583 Face 10526 36196 1965 49167 Face 10527 49092 5266 3820 Face 10528 21499 8973 5266 Face 10529 32036 37531 13267 Face 10530 32036 35378 5267 Face 10531 4857 5268 46004 Face 10532 4857 44246 5268 Face 10533 9841 43726 34078 Face 10534 47764 20718 29223 Face 10535 1494 5270 28604 Face 10536 26041 49906 24424 Face 10537 37016 25606 49519 Face 10538 1278 40625 41486 Face 10539 12943 30528 9011 Face 10540 210 21892 5272 Face 10541 29651 46660 25624 Face 10542 30864 11864 10346 Face 10543 16528 39556 46686 Face 10544 20661 19847 14254 Face 10545 24563 47542 40862 Face 10546 3181 13858 33681 Face 10547 11572 30640 21494 Face 10548 1923 40135 28840 Face 10549 22823 45716 45392 Face 10550 44447 22549 23074 Face 10551 13079 5278 40341 Face 10552 5277 44898 20371 Face 10553 25919 18461 41490 Face 10554 23388 44317 27692 Face 10555 85 5280 6415 Face 10556 85 34595 5280 Face 10557 160 47858 19475 Face 10558 25356 3692 5281 Face 10559 18073 27218 26631 Face 10560 42305 42331 5282 Face 10561 37317 35413 33380 Face 10562 46356 25020 20303 Face 10563 45646 25094 20978 Face 10564 30846 12110 25094 Face 10565 17628 28946 40015 Face 10566 17628 38961 28946 Face 10567 3182 27963 16000 Face 10568 3182 13351 17628 Face 10569 18451 31083 3489 Face 10570 41737 31388 5287 Face 10571 16315 23419 9332 Face 10572 22054 32951 47884 Face 10573 22202 5289 7095 Face 10574 22202 43562 5289 Face 10575 45091 21504 26357 Face 10576 32289 41839 19791 Face 10577 16720 40982 21207 Face 10578 16720 40580 5291 Face 10579 44315 18796 2060 Face 10580 13870 34587 25489 Face 10581 45810 10522 29378 Face 10582 18705 38403 13122 Face 10583 19668 9514 47891 Face 10584 1080 19872 30030 Face 10585 40353 32413 23 Face 10586 522 8573 32413 Face 10587 5573 22067 40706 Face 10588 14199 1736 28402 Face 10589 15135 7406 21752 Face 10590 22715 16796 5298 Face 10591 32709 5298 13473 Face 10592 10603 20375 7406 Face 10593 23891 44391 28751 Face 10594 38851 20211 33372 Face 10595 164 16712 34034 Face 10596 164 26746 14780 Face 10597 40743 5301 30911 Face 10598 26314 46052 23507 Face 10599 933 5302 12798 Face 10600 933 22819 25646 Face 10601 46277 26782 10342 Face 10602 36899 18877 5303 Face 10603 15075 41820 19140 Face 10604 18712 45626 31069 Face 10605 18712 44051 19400 Face 10606 18712 5304 5305 Face 10607 44174 29701 33894 Face 10608 44173 3969 37920 Face 10609 14377 44362 6530 Face 10610 17467 33733 5307 Face 10611 12426 20988 32071 Face 10612 12426 19100 20988 Face 10613 18553 21542 26641 Face 10614 1692 42722 20966 Face 10615 21213 5310 30325 Face 10616 4603 24737 18325 Face 10617 41666 11947 3608 Face 10618 28608 16975 24701 Face 10619 17904 23794 10100 Face 10620 30541 15969 5312 Face 10621 37903 46390 26036 Face 10622 37903 21686 5313 Face 10623 1058 39162 38639 Face 10624 1058 16600 14061 Face 10625 26741 5315 7847 Face 10626 34780 43931 37146 Face 10627 17080 5316 26844 Face 10628 19371 17035 23192 Face 10629 47432 10858 12082 Face 10630 18583 32342 13919 Face 10631 24736 20968 38843 Face 10632 28346 35342 19398 Face 10633 24644 9149 18416 Face 10634 40996 32170 43945 Face 10635 25926 5320 30728 Face 10636 21931 27162 39829 Face 10637 18130 5321 25185 Face 10638 42682 4105 23409 Face 10639 18809 5322 42869 Face 10640 18809 26351 5322 Face 10641 23363 21160 48638 Face 10642 1882 48019 15245 Face 10643 46492 38620 21458 Face 10644 3428 14481 43158 Face 10645 33860 5325 47327 Face 10646 33860 16999 5325 Face 10647 47679 43439 43438 Face 10648 47679 33985 43439 Face 10649 16605 49673 5835 Face 10650 14575 42917 33472 Face 10651 12621 16224 25041 Face 10652 34781 9935 43956 Face 10653 31417 23780 46844 Face 10654 31418 10966 44549 Face 10655 5331 36362 17953 Face 10656 45980 31282 5330 Face 10657 23879 5331 10200 Face 10658 23879 12362 5331 Face 10659 22740 5332 43544 Face 10660 22740 30011 46282 Face 10661 29605 41136 11794 Face 10662 21863 30541 12616 Face 10663 11775 33319 30516 Face 10664 11775 47 45398 Face 10665 40020 5335 38032 Face 10666 15253 34233 5335 Face 10667 18090 5336 28502 Face 10668 17696 35104 19225 Face 10669 19170 5337 45821 Face 10670 24031 20626 10893 Face 10671 38583 11896 15931 Face 10672 23905 40670 31974 Face 10673 24351 42122 6299 Face 10674 41801 26356 5339 Face 10675 13502 5340 10124 Face 10676 8635 26275 19751 Face 10677 36621 21156 18820 Face 10678 49198 17227 46133 Face 10679 40769 25824 18072 Face 10680 19575 29269 5342 Face 10681 22963 24339 16881 Face 10682 45968 12328 34570 Face 10683 16562 23299 37056 Face 10684 30259 43909 23299 Face 10685 40518 5345 34183 Face 10686 17413 28729 30259 Face 10687 10256 39407 45299 Face 10688 34539 18098 5346 Face 10689 7546 33766 4036 Face 10690 5348 49866 23847 Face 10691 39107 5348 23847 Face 10692 39107 6671 5348 Face 10693 43971 5349 8515 Face 10694 31358 35773 27821 Face 10695 3053 14454 4566 Face 10696 28584 35274 5350 Face 10697 9653 28597 49026 Face 10698 30 25763 32716 Face 10699 8363 22450 43729 Face 10700 8363 38057 22450 Face 10701 19775 5353 20710 Face 10702 49895 19409 41771 Face 10703 31319 5354 32665 Face 10704 21735 2265 45433 Face 10705 31319 5355 47928 Face 10706 121 45811 12663 Face 10707 349 32805 27433 Face 10708 14698 20631 30474 Face 10709 10096 28984 34653 Face 10710 2438 48462 5357 Face 10711 41597 13813 18969 Face 10712 20917 33228 27781 Face 10713 1168 38699 6593 Face 10714 9634 6649 5359 Face 10715 5361 30118 17781 Face 10716 5361 24376 30118 Face 10717 15489 47428 15910 Face 10718 30407 24376 5361 Face 10719 9140 5362 30774 Face 10720 35331 13138 32050 Face 10721 25718 34229 19277 Face 10722 33939 20848 15751 Face 10723 27413 10503 18368 Face 10724 18041 563 30739 Face 10725 17020 34307 48960 Face 10726 40299 29072 5365 Face 10727 41972 5366 38890 Face 10728 41972 19518 27642 Face 10729 29703 5367 25904 Face 10730 23980 5153 5367 Face 10731 27779 17794 11443 Face 10732 2278 30385 18729 Face 10733 13419 42270 45249 Face 10734 30552 17102 5370 Face 10735 23286 5370 11460 Face 10736 40976 41042 5370 Face 10737 19255 39360 29904 Face 10738 7805 16113 5371 Face 10739 34589 28269 40113 Face 10740 33853 1275 5372 Face 10741 11459 28416 26874 Face 10742 20391 34525 21330 Face 10743 21534 5374 33214 Face 10744 3407 32593 19302 Face 10745 19531 47298 43610 Face 10746 25932 11509 41018 Face 10747 47625 5376 4955 Face 10748 28286 47693 28894 Face 10749 9700 17587 8210 Face 10750 45429 36791 5377 Face 10751 39779 5378 17587 Face 10752 38068 27048 37225 Face 10753 44572 21544 19624 Face 10754 96 5089 21544 Face 10755 17127 5380 46893 Face 10756 39569 20156 38292 Face 10757 11491 5381 19729 Face 10758 30148 6353 11331 Face 10759 8337 45728 9778 Face 10760 15475 33492 5382 Face 10761 135 43734 23835 Face 10762 41480 36682 28278 Face 10763 9632 19942 30754 Face 10764 46042 24702 5385 Face 10765 43656 5385 28854 Face 10766 43656 46042 5385 Face 10767 44076 34590 11336 Face 10768 36301 7545 21488 Face 10769 29661 5387 22679 Face 10770 729 14164 5387 Face 10771 3877 5388 12463 Face 10772 38645 38680 5388 Face 10773 21415 33482 8158 Face 10774 16277 35514 40598 Face 10775 42923 35698 31917 Face 10776 18789 21415 8158 Face 10777 5392 17876 2166 Face 10778 19473 34320 5391 Face 10779 36909 5392 27952 Face 10780 44236 43865 19473 Face 10781 30779 20097 32033 Face 10782 11154 17457 5393 Face 10783 43484 13448 16557 Face 10784 23674 32139 28379 Face 10785 3429 22598 3430 Face 10786 3429 10791 22598 Face 10787 29452 27658 8997 Face 10788 18642 25218 30403 Face 10789 13394 29452 48480 Face 10790 35794 29905 18642 Face 10791 36640 11423 47861 Face 10792 14673 14616 27904 Face 10793 10663 47255 3481 Face 10794 30017 15052 37763 Face 10795 37607 45093 4088 Face 10796 2670 17922 16442 Face 10797 39594 47280 11824 Face 10798 7318 15543 10998 Face 10799 35784 39594 11824 Face 10800 8585 35344 45751 Face 10801 28026 27408 31494 Face 10802 1486 18910 27408 Face 10803 1959 5404 25870 Face 10804 26993 29969 5404 Face 10805 8781 32854 25505 Face 10806 7711 19260 28029 Face 10807 6438 10516 19782 Face 10808 11689 36616 26086 Face 10809 16013 46690 10994 Face 10810 16013 22243 34468 Face 10811 43810 5408 10772 Face 10812 38423 37470 14729 Face 10813 33051 39624 3463 Face 10814 33051 39996 14960 Face 10815 696 44973 8583 Face 10816 21934 3562 24177 Face 10817 40100 5411 43498 Face 10818 35563 21053 11542 Face 10819 16119 5412 9278 Face 10820 16119 31099 5412 Face 10821 24559 22953 45518 Face 10822 48907 14628 5413 Face 10823 686 29040 4825 Face 10824 686 29659 48129 Face 10825 650 37409 47160 Face 10826 38676 45884 5415 Face 10827 21798 5416 36864 Face 10828 8624 5127 18250 Face 10829 18686 30463 24321 Face 10830 10868 3639 5417 Face 10831 18686 14016 29518 Face 10832 38711 24380 5418 Face 10833 39571 5419 42608 Face 10834 16196 29824 36199 Face 10835 39571 38460 5419 Face 10836 14787 35690 40087 Face 10837 349 5421 49560 Face 10838 14787 40087 5421 Face 10839 29615 5422 30672 Face 10840 7555 21132 10916 Face 10841 847 5423 25695 Face 10842 21011 4380 22868 Face 10843 2523 41860 41146 Face 10844 34191 5749 11427 Face 10845 9021 16313 44675 Face 10846 41062 30997 10593 Face 10847 6392 14827 4514 Face 10848 608 35811 16665 Face 10849 39567 36564 3284 Face 10850 151 40542 9357 Face 10851 19130 36471 3452 Face 10852 39395 41223 46504 Face 10853 19997 35285 606 Face 10854 20663 49803 5429 Face 10855 48737 29485 26566 Face 10856 19102 24630 5430 Face 10857 21873 33890 7674 Face 10858 4382 5367 29703 Face 10859 26623 34280 49171 Face 10860 42495 29226 34280 Face 10861 6822 28250 17547 Face 10862 38420 15251 44991 Face 10863 29105 31663 43715 Face 10864 27185 29310 18243 Face 10865 40326 14695 33293 Face 10866 9476 9119 14695 Face 10867 4974 33416 33098 Face 10868 14058 34057 23402 Face 10869 42362 5437 6231 Face 10870 37934 9668 44053 Face 10871 40132 13262 17339 Face 10872 18603 9749 18917 Face 10873 30587 18424 21517 Face 10874 690 13573 22563 Face 10875 20069 31222 7363 Face 10876 27504 42519 43650 Face 10877 9858 19987 23891 Face 10878 16651 8076 39392 Face 10879 23924 26603 36187 Face 10880 23924 1627 5442 Face 10881 36112 26382 41968 Face 10882 3645 47740 42061 Face 10883 485 5444 40120 Face 10884 27236 3292 6164 Face 10885 2225 40204 34075 Face 10886 32396 40377 34350 Face 10887 17713 27247 20443 Face 10888 17713 10394 27247 Face 10889 25937 5447 11806 Face 10890 2587 10086 5447 Face 10891 3061 5448 20410 Face 10892 49442 38473 5448 Face 10893 33982 37906 12227 Face 10894 47835 14162 20672 Face 10895 39888 19259 13676 Face 10896 2117 37789 44254 Face 10897 30072 46232 24066 Face 10898 30072 13895 46232 Face 10899 1385 25497 17178 Face 10900 1385 17407 25497 Face 10901 41262 5453 25418 Face 10902 21529 2647 29563 Face 10903 46099 36534 7145 Face 10904 701 2660 28752 Face 10905 18746 22124 44886 Face 10906 28299 11261 21569 Face 10907 25595 8206 12762 Face 10908 22116 4404 28571 Face 10909 24165 32916 9800 Face 10910 1569 31179 5457 Face 10911 25784 19950 4919 Face 10912 25784 43938 19950 Face 10913 38889 5459 15681 Face 10914 29634 37173 5459 Face 10915 1846 32168 7977 Face 10916 1846 18775 32168 Face 10917 34870 13458 18029 Face 10918 49590 9277 18168 Face 10919 6343 5462 21820 Face 10920 22142 27259 37013 Face 10921 33052 16913 10361 Face 10922 33052 49423 16913 Face 10923 14534 33914 3814 Face 10924 6059 26370 12335 Face 10925 48567 37025 39939 Face 10926 36297 47138 18115 Face 10927 10730 5466 17394 Face 10928 8551 27770 5466 Face 10929 25195 5467 27731 Face 10930 25195 45847 14455 Face 10931 1479 36500 14038 Face 10932 31335 46727 5468 Face 10933 30362 7640 18610 Face 10934 28811 8889 49159 Face 10935 27890 48163 1376 Face 10936 44130 26339 5470 Face 10937 1734 5471 3445 Face 10938 1734 1735 5471 Face 10939 10960 5472 26300 Face 10940 34629 19717 5472 Face 10941 28473 39022 21606 Face 10942 23332 29050 35121 Face 10943 14672 28473 16002 Face 10944 21891 3353 13559 Face 10945 9475 47550 4730 Face 10946 13777 15565 5475 Face 10947 703 43401 18930 Face 10948 38362 2805 15393 Face 10949 44618 14106 30057 Face 10950 20891 31952 5477 Face 10951 18318 20934 7341 Face 10952 34450 14106 44618 Face 10953 22140 28875 32061 Face 10954 4221 36241 5479 Face 10955 32310 25858 3942 Face 10956 2431 15791 30355 Face 10957 45967 20173 22887 Face 10958 30790 1817 13288 Face 10959 35985 35446 41180 Face 10960 16405 46810 19303 Face 10961 14302 5483 10869 Face 10962 14302 36632 5483 Face 10963 657 17106 44395 Face 10964 23489 36556 5484 Face 10965 2242 16376 28937 Face 10966 33243 10264 41525 Face 10967 1503 5486 12714 Face 10968 46227 14255 17712 Face 10969 3615 23621 35126 Face 10970 18543 36848 14003 Face 10971 2067 16202 45632 Face 10972 2067 48442 5488 Face 10973 2116 17188 24492 Face 10974 19252 47983 37949 Face 10975 10504 21426 2340 Face 10976 38794 30914 22057 Face 10977 40741 5491 18958 Face 10978 17428 29206 5491 Face 10979 35925 5492 26532 Face 10980 1186 11012 37084 Face 10981 12260 38181 44337 Face 10982 5494 46439 39026 Face 10983 5683 12260 2656 Face 10984 38223 18169 5494 Face 10985 39581 48204 7925 Face 10986 6874 18211 19800 Face 10987 43587 5496 4809 Face 10988 1352 26638 39581 Face 10989 48152 32229 23111 Face 10990 2669 21887 45511 Face 10991 34134 30523 45303 Face 10992 13519 43459 45010 Face 10993 43379 5499 35392 Face 10994 43379 37868 5499 Face 10995 26405 34082 1831 Face 10996 44756 1821 13975 Face 10997 41630 18650 27655 Face 10998 46084 36133 5501 Face 10999 45256 5502 18943 Face 11000 35799 20792 30406 Face 11001 1814 25098 15617 Face 11002 48046 15326 39420 Face 11003 36627 18135 1505 Face 11004 17866 29565 47703 Face 11005 25216 48775 18221 Face 11006 1313 49221 5505 Face 11007 46742 30903 18081 Face 11008 1573 47653 33479 Face 11009 7931 11919 47745 Face 11010 38665 3573 38028 Face 11011 43925 23849 11906 Face 11012 43925 33033 5509 Face 11013 33455 40825 44424 Face 11014 5508 32327 23849 Face 11015 33330 31398 18384 Face 11016 20786 2994 21671 Face 11017 26444 5511 8164 Face 11018 5512 21139 19215 Face 11019 40973 43062 19215 Face 11020 3437 15715 25370 Face 11021 31189 48947 1862 Face 11022 35063 11899 49460 Face 11023 20810 49877 12092 Face 11024 30264 23194 22751 Face 11025 2297 49161 32031 Face 11026 2297 12500 49161 Face 11027 22199 5516 10847 Face 11028 2962 28273 5516 Face 11029 44967 5517 11222 Face 11030 34340 18763 5517 Face 11031 32161 5518 38147 Face 11032 25753 42709 21872 Face 11033 1276 30933 17380 Face 11034 1276 7004 30933 Face 11035 11108 23934 15539 Face 11036 11108 28461 41865 Face 11037 19946 5521 4693 Face 11038 8851 35454 20971 Face 11039 16230 20921 26321 Face 11040 20580 37463 5522 Face 11041 5520 30271 44350 Face 11042 5520 15539 23934 Face 11043 8322 12579 39047 Face 11044 699 49290 26404 Face 11045 31445 38158 8584 Face 11046 33299 14343 21297 Face 11047 19865 26610 48250 Face 11048 25696 35311 5526 Face 11049 35759 23410 28839 Face 11050 27479 3875 31622 Face 11051 17096 28618 38651 Face 11052 17096 9227 28618 Face 11053 25913 5529 30536 Face 11054 14979 33028 10316 Face 11055 46 5530 43740 Face 11056 46 18132 5530 Face 11057 3472 5531 32035 Face 11058 3472 38932 5531 Face 11059 8526 5532 18713 Face 11060 16034 21036 12673 Face 11061 24108 28194 35294 Face 11062 32401 813 12403 Face 11063 3333 45242 30952 Face 11064 32401 12403 5534 Face 11065 709 12437 13938 Face 11066 22177 45723 5535 Face 11067 16872 24975 14064 Face 11068 37864 4500 24975 Face 11069 38633 5537 28144 Face 11070 1999 39003 31812 Face 11071 37459 47811 21164 Face 11072 20831 35856 34083 Face 11073 45331 23818 29797 Face 11074 14165 20980 37326 Face 11075 11304 20643 15655 Face 11076 3335 47551 20643 Face 11077 30652 41688 4363 Face 11078 30652 16725 41688 Face 11079 16985 5542 43977 Face 11080 16985 19123 5542 Face 11081 16728 5543 33108 Face 11082 11221 24432 47610 Face 11083 49811 11221 5543 Face 11084 20274 2550 24740 Face 11085 15321 39524 2660 Face 11086 15321 30539 7500 Face 11087 43828 5546 46802 Face 11088 30262 35485 28078 Face 11089 291 16845 24596 Face 11090 46901 10840 11238 Face 11091 31584 20016 37542 Face 11092 38074 16852 5548 Face 11093 18547 5549 44913 Face 11094 100 16303 10918 Face 11095 35860 31933 15413 Face 11096 15588 32619 41372 Face 11097 38016 32380 6018 Face 11098 24494 11355 42454 Face 11099 1379 32111 12878 Face 11100 14883 3162 25929 Face 11101 87 5553 39359 Face 11102 87 44412 5553 Face 11103 35661 49665 27930 Face 11104 35662 14945 35063 Face 11105 44916 10622 10391 Face 11106 1912 38015 22469 Face 11107 930 5556 12171 Face 11108 930 24188 5556 Face 11109 17072 13006 23641 Face 11110 17072 43420 13006 Face 11111 28165 36295 2690 Face 11112 1595 27097 5558 Face 11113 21427 41158 48177 Face 11114 23417 18067 24412 Face 11115 40443 23417 24412 Face 11116 25141 2852 39755 Face 11117 5562 14437 18330 Face 11118 39675 28903 16033 Face 11119 39431 26451 15027 Face 11120 9525 32450 5562 Face 11121 40774 5563 19147 Face 11122 19599 417 40147 Face 11123 16072 38334 20142 Face 11124 7872 28409 16752 Face 11125 28935 11055 44588 Face 11126 28841 6038 29129 Face 11127 44161 9962 27111 Face 11128 19995 36788 5566 Face 11129 12542 43910 17390 Face 11130 44487 10728 30252 Face 11131 5567 30250 49697 Face 11132 5567 24512 30250 Face 11133 526 34085 20877 Face 11134 41852 23423 34085 Face 11135 16264 5570 13247 Face 11136 23640 684 42028 Face 11137 1379 48308 40418 Face 11138 1379 37688 48308 Face 11139 31292 47035 2059 Face 11140 46406 17342 23266 Face 11141 140 21360 15358 Face 11142 140 22067 21360 Face 11143 38149 44335 14796 Face 11144 38149 29925 17507 Face 11145 45427 18556 47919 Face 11146 15581 33507 24282 Face 11147 36005 27347 44991 Face 11148 1259 26279 27347 Face 11149 39319 5577 27529 Face 11150 15140 24905 41942 Face 11151 2783 5578 40189 Face 11152 15548 7653 30043 Face 11153 12280 5579 32663 Face 11154 12280 41736 42851 Face 11155 36868 5580 21750 Face 11156 20129 36673 5580 Face 11157 20129 5581 36673 Face 11158 20128 6330 45155 Face 11159 260 35250 2960 Face 11160 260 22124 18746 Face 11161 30092 40640 21304 Face 11162 30092 11282 40640 Face 11163 42143 22956 18183 Face 11164 42143 15323 45248 Face 11165 42592 35912 2368 Face 11166 34921 7043 5585 Face 11167 48121 15837 5248 Face 11168 22671 7008 5586 Face 11169 43649 5587 17972 Face 11170 11968 35031 47652 Face 11171 19855 5588 44884 Face 11172 38251 11257 17067 Face 11173 22536 5589 17008 Face 11174 1866 35565 5589 Face 11175 40174 21608 18811 Face 11176 18 36199 29824 Face 11177 43453 5591 44856 Face 11178 43452 34065 20822 Face 11179 14975 32490 4519 Face 11180 9444 27824 48045 Face 11181 26943 5593 17710 Face 11182 10007 24749 19629 Face 11183 13153 42216 38914 Face 11184 15484 48268 5594 Face 11185 13154 36418 40941 Face 11186 13154 29824 45337 Face 11187 27937 22805 3524 Face 11188 35928 39036 5596 Face 11189 3884 28177 19544 Face 11190 8715 3524 46466 Face 11191 13958 37901 44057 Face 11192 34189 9675 15556 Face 11193 11637 15583 40934 Face 11194 43504 9225 15583 Face 11195 20296 41406 21874 Face 11196 32190 2397 5600 Face 11197 38042 27086 2262 Face 11198 38042 23512 5601 Face 11199 46855 44268 12536 Face 11200 3344 18225 44268 Face 11201 23398 17765 33011 Face 11202 23398 46425 17765 Face 11203 14988 34636 19205 Face 11204 9013 19025 5604 Face 11205 40302 11565 39707 Face 11206 32151 49316 30913 Face 11207 2244 19109 48074 Face 11208 32191 22808 5606 Face 11209 38300 42379 17388 Face 11210 11148 48933 11000 Face 11211 35362 47253 4986 Face 11212 37291 10735 5608 Face 11213 4641 44185 6076 Face 11214 4641 20969 44534 Face 11215 46324 18374 27812 Face 11216 21706 32448 47697 Face 11217 808 43808 27909 Face 11218 34622 11623 6807 Face 11219 1674 36579 40278 Face 11220 1674 9468 5612 Face 11221 40690 22367 3453 Face 11222 44888 15533 5613 Face 11223 2000 33007 48378 Face 11224 32940 7544 5614 Face 11225 12347 5615 49490 Face 11226 30019 29798 5615 Face 11227 13392 34784 1568 Face 11228 46102 3347 22537 Face 11229 13373 33270 22779 Face 11230 46625 42838 23558 Face 11231 20983 5618 3961 Face 11232 21633 10414 5618 Face 11233 2857 5619 39113 Face 11234 37423 2856 12660 Face 11235 5622 21161 16343 Face 11236 21058 7295 41170 Face 11237 1903 13678 27782 Face 11238 5622 20803 23593 Face 11239 1903 37571 13678 Face 11240 44077 21161 5622 Face 11241 26965 42442 12960 Face 11242 31426 12779 10821 Face 11243 39844 25026 12442 Face 11244 31783 23912 19377 Face 11245 850 35279 29351 Face 11246 18394 8600 22951 Face 11247 1160 28926 33784 Face 11248 1160 44843 5626 Face 11249 30703 43350 4394 Face 11250 5340 41643 36242 Face 11251 18142 30612 37651 Face 11252 22575 26674 30613 Face 11253 15713 22095 4503 Face 11254 40948 5283 37497 Face 11255 10227 5630 24341 Face 11256 134 29831 5630 Face 11257 46095 22348 32756 Face 11258 47931 36724 5631 Face 11259 22488 14582 38225 Face 11260 47931 5631 14582 Face 11261 48722 5633 42642 Face 11262 29400 7714 23142 Face 11263 3578 33774 1621 Face 11264 31769 36405 37203 Face 11265 39106 28386 17918 Face 11266 35070 30640 16805 Face 11267 39171 20804 12252 Face 11268 30419 7889 33281 Face 11269 33661 29719 15437 Face 11270 37174 13008 28762 Face 11271 41791 26148 21535 Face 11272 30468 16064 5638 Face 11273 39013 5639 22871 Face 11274 23245 7982 32158 Face 11275 31220 5640 22985 Face 11276 40437 11060 18937 Face 11277 14979 18843 34937 Face 11278 20436 12172 15816 Face 11279 25913 14979 10316 Face 11280 8294 26400 43868 Face 11281 39005 44345 18732 Face 11282 13937 18667 22667 Face 11283 5645 39734 22667 Face 11284 30806 49214 5644 Face 11285 19735 18845 37779 Face 11286 274 39734 5645 Face 11287 797 44146 24280 Face 11288 7108 25247 27924 Face 11289 797 15105 27924 Face 11290 7020 18143 37230 Face 11291 27477 39808 30847 Face 11292 36121 21258 39807 Face 11293 16502 23867 3870 Face 11294 5727 23464 45775 Face 11295 276 10960 29544 Face 11296 13308 42134 5650 Face 11297 34238 24615 36671 Face 11298 15424 18134 36172 Face 11299 2912 5652 17669 Face 11300 2912 46551 38979 Face 11301 3530 23756 23177 Face 11302 3530 17131 23756 Face 11303 40582 5654 20249 Face 11304 13279 40339 22556 Face 11305 19620 25258 5091 Face 11306 1078 20374 27032 Face 11307 30175 13165 30720 Face 11308 25721 43127 5656 Face 11309 44852 33877 35932 Face 11310 42937 30908 15308 Face 11311 15695 5658 46092 Face 11312 15695 8833 5658 Face 11313 15696 44323 34948 Face 11314 39770 32706 5659 Face 11315 29182 5660 39018 Face 11316 11491 19729 5660 Face 11317 13242 41742 12458 Face 11318 20503 15896 31423 Face 11319 3132 49282 34716 Face 11320 37522 20725 39834 Face 11321 12176 15286 49862 Face 11322 12176 20783 29104 Face 11323 1269 24593 29216 Face 11324 1269 16916 49898 Face 11325 17553 5665 10686 Face 11326 31718 26358 5665 Face 11327 32042 23804 1476 Face 11328 23930 30732 5666 Face 11329 38192 34093 5230 Face 11330 33185 17739 32037 Face 11331 31889 5668 27607 Face 11332 21421 49451 42281 Face 11333 22419 39327 9387 Face 11334 2979 30967 47572 Face 11335 32726 5670 3369 Face 11336 32726 1879 45567 Face 11337 35236 5671 14993 Face 11338 939 2075 23882 Face 11339 16734 41946 20629 Face 11340 32499 15476 26499 Face 11341 18236 24940 38549 Face 11342 39482 16994 39998 Face 11343 10667 37837 19635 Face 11344 5675 34460 40490 Face 11345 12107 19973 15987 Face 11346 47373 32454 14583 Face 11347 19178 32235 45860 Face 11348 28605 31347 20861 Face 11349 36424 38961 17628 Face 11350 44175 10937 47326 Face 11351 36777 5678 28661 Face 11352 8984 29806 44769 Face 11353 15507 44279 2063 Face 11354 34447 28681 24079 Face 11355 38485 39432 18301 Face 11356 37327 30300 5680 Face 11357 615 20001 28028 Face 11358 20742 32136 5681 Face 11359 1704 5682 25384 Face 11360 12641 18627 39645 Face 11361 38638 5683 35449 Face 11362 38638 12260 5683 Face 11363 8583 35865 48766 Face 11364 37981 23130 19047 Face 11365 48481 32782 35594 Face 11366 48481 2161 32782 Face 11367 497 22105 25916 Face 11368 22660 48091 10315 Face 11369 18144 24864 31351 Face 11370 3921 28503 5687 Face 11371 3387 16296 38813 Face 11372 3387 43388 12464 Face 11373 20617 29932 42669 Face 11374 37780 24269 41466 Face 11375 36639 16232 19375 Face 11376 7482 15788 16232 Face 11377 24591 20048 37283 Face 11378 17263 42622 18291 Face 11379 10549 5692 5418 Face 11380 48325 33810 24825 Face 11381 42117 5960 14967 Face 11382 46148 7857 38301 Face 11383 26906 20226 21578 Face 11384 43702 11696 5694 Face 11385 2136 15793 33966 Face 11386 48001 36460 28463 Face 11387 33512 32273 38760 Face 11388 24930 9658 46779 Face 11389 40962 23246 30837 Face 11390 13095 15902 34756 Face 11391 26951 5698 43690 Face 11392 6892 40863 13960 Face 11393 30697 5699 15840 Face 11394 19302 20981 47979 Face 11395 11434 5700 25800 Face 11396 7110 38086 13514 Face 11397 2786 36171 23838 Face 11398 14489 23018 30172 Face 11399 24781 5702 33841 Face 11400 647 34735 12929 Face 11401 15776 5703 26011 Face 11402 8708 22398 5703 Face 11403 16655 48259 31713 Face 11404 393 45109 41484 Face 11405 9991 14041 22427 Face 11406 24753 29860 5705 Face 11407 4133 24753 39408 Face 11408 4133 28154 10345 Face 11409 685 25504 43467 Face 11410 48108 45170 25504 Face 11411 3706 5708 14028 Face 11412 3706 20605 5708 Face 11413 7818 5709 17431 Face 11414 10887 37956 34703 Face 11415 26839 9087 43320 Face 11416 15095 31545 47416 Face 11417 1319 41734 14354 Face 11418 1319 29932 41734 Face 11419 1120 5712 45442 Face 11420 1120 43502 5712 Face 11421 33788 5713 19129 Face 11422 3815 27329 15379 Face 11423 22017 39846 11246 Face 11424 21836 7306 5714 Face 11425 17928 5715 2735 Face 11426 36647 17355 36986 Face 11427 300 37783 32509 Face 11428 33050 25053 15657 Face 11429 26784 33555 1006 Face 11430 17050 33914 14534 Face 11431 17356 43478 4531 Face 11432 38773 1952 5718 Face 11433 4630 35598 24837 Face 11434 36267 4082 16738 Face 11435 27908 5720 37279 Face 11436 26927 15160 46235 Face 11437 46079 5721 5720 Face 11438 22849 24707 14231 Face 11439 23604 41198 28745 Face 11440 1000 29421 5722 Face 11441 27358 49410 26810 Face 11442 11975 20926 44536 Face 11443 33439 14870 24562 Face 11444 15943 20554 37600 Face 11445 33439 21247 14870 Face 11446 30003 22134 15943 Face 11447 15178 29626 30190 Face 11448 48754 15097 38204 Face 11449 2159 5727 20925 Face 11450 2159 25241 5727 Face 11451 8127 41516 34568 Face 11452 3340 19422 27049 Face 11453 6752 24007 24385 Face 11454 36159 49925 20425 Face 11455 5731 36104 22949 Face 11456 18788 24285 5730 Face 11457 42017 38519 48021 Face 11458 47208 32065 38520 Face 11459 28199 8545 2357 Face 11460 45560 35353 19105 Face 11461 1951 5733 40506 Face 11462 1951 20953 5733 Face 11463 47679 36884 1057 Face 11464 280 12561 43633 Face 11465 23163 5735 5738 Face 11466 23185 34527 48835 Face 11467 43823 5736 37654 Face 11468 9239 5735 23163 Face 11469 10919 14799 19580 Face 11470 10920 34881 20993 Face 11471 6936 18099 37584 Face 11472 19503 23164 5738 Face 11473 17571 19206 35221 Face 11474 17571 27472 5739 Face 11475 38578 5740 8436 Face 11476 34499 19498 28147 Face 11477 5740 5741 36859 Face 11478 42970 1085 35347 Face 11479 32777 5742 35903 Face 11480 27636 26271 46748 Face 11481 5744 30125 23612 Face 11482 2823 43531 27445 Face 11483 35706 28565 19843 Face 11484 35706 30125 5744 Face 11485 14105 5745 30780 Face 11486 26406 29322 5745 Face 11487 43949 22582 35724 Face 11488 28750 46161 31911 Face 11489 3601 5747 29340 Face 11490 28750 34648 43949 Face 11491 2131 30196 6429 Face 11492 13571 41703 16732 Face 11493 46321 5749 32606 Face 11494 46321 11427 5749 Face 11495 39863 26221 3798 Face 11496 43351 33395 14462 Face 11497 7760 5751 12965 Face 11498 20196 38873 5751 Face 11499 27899 46184 17408 Face 11500 44650 32634 15384 Face 11501 41129 5753 48109 Face 11502 169 43961 23129 Face 11503 2831 30731 43321 Face 11504 23407 9811 43645 Face 11505 22854 35787 31908 Face 11506 22854 31174 35787 Face 11507 3079 20329 25768 Face 11508 3079 37998 20329 Face 11509 1897 49649 12002 Face 11510 41131 9047 42029 Face 11511 49411 37726 8924 Face 11512 33279 21227 37726 Face 11513 29235 5759 8228 Face 11514 3801 21227 5759 Face 11515 8447 22255 38269 Face 11516 14734 23092 13718 Face 11517 14785 5761 38114 Face 11518 32007 35757 28172 Face 11519 40197 31207 11634 Face 11520 45323 25270 5762 Face 11521 48225 40498 12337 Face 11522 40196 3885 40498 Face 11523 45043 30398 39253 Face 11524 21361 2556 36142 Face 11525 31553 24665 17693 Face 11526 35861 3226 16448 Face 11527 36853 33858 41816 Face 11528 34579 10752 5766 Face 11529 40790 9531 9547 Face 11530 6527 9407 5767 Face 11531 23204 31742 5007 Face 11532 23204 44830 5768 Face 11533 9873 26813 29674 Face 11534 9873 13326 26813 Face 11535 5979 43978 22536 Face 11536 31292 15046 35462 Face 11537 19540 31243 34917 Face 11538 29451 3832 34529 Face 11539 26063 46806 14965 Face 11540 45064 30572 5772 Face 11541 28058 41451 46632 Face 11542 25614 16708 5773 Face 11543 44252 25614 5773 Face 11544 19937 8920 37289 Face 11545 42655 36326 21972 Face 11546 40171 12052 18376 Face 11547 28216 21295 38705 Face 11548 32010 20458 21295 Face 11549 47082 47127 26251 Face 11550 35768 25125 21249 Face 11551 3412 28454 9799 Face 11552 45743 1846 37407 Face 11553 16306 42080 30522 Face 11554 31005 25342 25656 Face 11555 5779 39652 11480 Face 11556 37841 23634 5780 Face 11557 35409 5781 42748 Face 11558 17176 11941 41738 Face 11559 12775 16483 1680 Face 11560 1679 48132 21327 Face 11561 10285 13957 31101 Face 11562 18700 11830 23195 Face 11563 9267 5784 16172 Face 11564 46512 7084 5784 Face 11565 31471 19809 39405 Face 11566 18004 42480 5785 Face 11567 48489 43962 34516 Face 11568 2942 28467 43962 Face 11569 14807 5787 38046 Face 11570 260 2960 20238 Face 11571 32 5788 15173 Face 11572 41386 14868 5788 Face 11573 21904 39876 38690 Face 11574 21904 9419 39876 Face 11575 14538 38498 5913 Face 11576 44720 41296 5790 Face 11577 41307 17300 26329 Face 11578 23697 13670 35624 Face 11579 15264 5792 47645 Face 11580 292 30950 43852 Face 11581 29896 5793 43584 Face 11582 173 41249 28012 Face 11583 37788 26292 15328 Face 11584 37787 48916 38211 Face 11585 39458 5795 4371 Face 11586 28171 30582 49816 Face 11587 1139 16346 48280 Face 11588 29027 43255 8196 Face 11589 49809 5797 36693 Face 11590 29021 42045 18254 Face 11591 8213 13224 24063 Face 11592 2400 18516 24067 Face 11593 10177 31275 30835 Face 11594 15099 36121 18637 Face 11595 18771 14904 45503 Face 11596 5801 16871 32331 Face 11597 18771 24534 14904 Face 11598 18772 21112 47286 Face 11599 43172 46907 31016 Face 11600 8317 17667 31375 Face 11601 35819 5803 294 Face 11602 42531 12902 33785 Face 11603 1820 17435 31982 Face 11604 1820 27766 34194 Face 11605 32715 49126 15477 Face 11606 16087 34995 26646 Face 11607 42488 22364 18426 Face 11608 41474 24040 5806 Face 11609 32175 41474 5806 Face 11610 32175 22769 41474 Face 11611 612 5808 19193 Face 11612 612 22153 21431 Face 11613 4941 5809 17297 Face 11614 48558 21778 15156 Face 11615 22315 35258 45020 Face 11616 22315 38110 5810 Face 11617 589 7465 36964 Face 11618 20424 16862 7465 Face 11619 16593 34792 10607 Face 11620 20100 4682 35430 Face 11621 25491 5813 46608 Face 11622 9211 15850 30926 Face 11623 32181 5814 9937 Face 11624 15282 25826 7936 Face 11625 19303 5815 16405 Face 11626 19307 42615 20999 Face 11627 29521 5816 3898 Face 11628 21025 38681 5816 Face 11629 43783 28626 17665 Face 11630 23243 39450 17127 Face 11631 27776 40672 17392 Face 11632 44577 9276 38694 Face 11633 15507 38081 44279 Face 11634 2062 25381 38081 Face 11635 30924 24357 14733 Face 11636 47274 32628 32693 Face 11637 41254 21020 28303 Face 11638 11911 32257 25555 Face 11639 41754 5822 43628 Face 11640 41754 11680 5822 Face 11641 38288 40974 398 Face 11642 16636 41865 10097 Face 11643 16892 5824 36756 Face 11644 7288 43768 49479 Face 11645 14594 27156 10157 Face 11646 14594 19196 27156 Face 11647 5827 31098 35170 Face 11648 31712 24481 10835 Face 11649 818 28198 23514 Face 11650 818 5826 28198 Face 11651 46218 30110 34044 Face 11652 15432 34180 28995 Face 11653 42350 17387 27265 Face 11654 21450 38556 33791 Face 11655 187 21450 17387 Face 11656 21733 39977 39347 Face 11657 25038 5831 18490 Face 11658 40347 43337 18173 Face 11659 18560 46805 32486 Face 11660 31955 16234 21462 Face 11661 37095 16713 4885 Face 11662 12352 43839 22683 Face 11663 22130 5834 37379 Face 11664 18409 9698 37055 Face 11665 3670 5835 14773 Face 11666 3670 16605 5835 Face 11667 921 41690 33900 Face 11668 921 7878 23577 Face 11669 1340 33385 9719 Face 11670 39943 2301 20219 Face 11671 997 27554 2879 Face 11672 997 20037 5838 Face 11673 4838 5839 39922 Face 11674 41640 48416 21933 Face 11675 45773 5840 23133 Face 11676 25854 46588 45478 Face 11677 6178 27404 42755 Face 11678 22310 3191 41969 Face 11679 24789 5842 17306 Face 11680 15419 18947 5842 Face 11681 3986 36735 15839 Face 11682 28819 39237 20093 Face 11683 1305 6452 40794 Face 11684 16086 36189 6451 Face 11685 3634 21181 10090 Face 11686 47663 28266 45222 Face 11687 1649 20373 39802 Face 11688 44639 35929 5846 Face 11689 34361 20928 31262 Face 11690 1493 34679 34222 Face 11691 36607 12418 25142 Face 11692 36607 34222 12418 Face 11693 5850 5849 15682 Face 11694 30055 32210 5849 Face 11695 217 35739 9946 Face 11696 30055 5849 5850 Face 11697 2851 5851 24320 Face 11698 26602 3960 11910 Face 11699 24116 43598 19588 Face 11700 24116 10770 43598 Face 11701 24478 26357 21504 Face 11702 24478 29293 5853 Face 11703 8592 20557 17854 Face 11704 25965 3989 48789 Face 11705 27425 32890 43903 Face 11706 825 15725 5855 Face 11707 14471 5856 10065 Face 11708 45631 28451 5856 Face 11709 44003 14463 11901 Face 11710 39872 13620 47955 Face 11711 24467 5858 12887 Face 11712 28435 38879 15255 Face 11713 11998 48356 8868 Face 11714 32872 25302 5859 Face 11715 40817 30164 16756 Face 11716 23933 29098 5860 Face 11717 5862 21584 13501 Face 11718 23975 14835 11020 Face 11719 9925 18247 1049 Face 11720 21605 5861 24606 Face 11721 475 5863 43985 Face 11722 11211 36190 5863 Face 11723 42166 20484 23181 Face 11724 42166 11356 45219 Face 11725 501 37063 35029 Face 11726 501 12539 37063 Face 11727 34505 26117 3807 Face 11728 23896 17973 5866 Face 11729 438 21206 33675 Face 11730 14436 16970 11206 Face 11731 304 28957 5108 Face 11732 45154 29973 5868 Face 11733 25164 16978 14337 Face 11734 6260 18155 11192 Face 11735 3667 5870 25962 Face 11736 16127 22783 36452 Face 11737 7548 10081 29066 Face 11738 42659 8961 25334 Face 11739 44046 5872 39151 Face 11740 18928 27916 5872 Face 11741 31559 18416 23132 Face 11742 10759 46108 43451 Face 11743 889 9781 21803 Face 11744 44651 28246 21406 Face 11745 49528 49194 15609 Face 11746 401 47845 49194 Face 11747 47192 46642 22205 Face 11748 12392 11988 46642 Face 11749 44580 34704 4000 Face 11750 31698 16926 5877 Face 11751 6925 19552 28921 Face 11752 14374 3427 45725 Face 11753 35808 12477 20160 Face 11754 39450 23243 38292 Face 11755 22127 17039 18881 Face 11756 36166 18000 22195 Face 11757 15071 11234 23369 Face 11758 7638 31916 24436 Face 11759 22245 15071 23369 Face 11760 7638 24435 49888 Face 11761 10500 40651 27893 Face 11762 35821 9756 16254 Face 11763 38217 16444 46315 Face 11764 37103 24988 39075 Face 11765 39161 16328 11433 Face 11766 43253 25843 16328 Face 11767 22792 5886 32422 Face 11768 1224 37281 5886 Face 11769 18450 25033 47211 Face 11770 23657 8891 46823 Face 11771 1724 21475 46645 Face 11772 35269 25267 21474 Face 11773 12814 5889 19293 Face 11774 9107 17930 11402 Face 11775 26110 5890 22681 Face 11776 19201 7892 43536 Face 11777 44312 28036 1804 Face 11778 44338 17219 27228 Face 11779 24978 12836 13379 Face 11780 42051 10579 12836 Face 11781 2449 5893 22644 Face 11782 2449 27023 5893 Face 11783 14176 36346 2537 Face 11784 34649 25217 16259 Face 11785 42077 5895 14348 Face 11786 6074 2535 35197 Face 11787 30864 40711 11864 Face 11788 8492 43757 27541 Face 11789 24729 5897 44318 Face 11790 24729 31468 5897 Face 11791 28725 12250 47675 Face 11792 28725 21546 12250 Face 11793 849 5899 32876 Face 11794 33727 11750 5899 Face 11795 20647 41656 36694 Face 11796 13777 5475 9475 Face 11797 21251 8819 24783 Face 11798 20480 548 28591 Face 11799 16685 48616 36128 Face 11800 37361 43299 5902 Face 11801 20942 37564 26272 Face 11802 5904 31596 5903 Face 11803 20942 23367 15281 Face 11804 664 28492 38947 Face 11805 23649 5905 25455 Face 11806 23649 25796 42369 Face 11807 2219 5906 18359 Face 11808 2219 33100 35835 Face 11809 24489 5907 33968 Face 11810 24489 8774 43053 Face 11811 31054 5908 20263 Face 11812 1404 33274 5908 Face 11813 8200 24275 48482 Face 11814 28270 43323 14244 Face 11815 37071 17429 9672 Face 11816 8032 3121 5910 Face 11817 23328 34770 21068 Face 11818 48028 9863 34771 Face 11819 35469 23685 16491 Face 11820 40613 47098 22241 Face 11821 21083 5913 38498 Face 11822 42564 6994 34142 Face 11823 41460 5914 25227 Face 11824 38320 8871 45381 Face 11825 19039 21318 47209 Face 11826 35858 21832 12430 Face 11827 1319 15861 8038 Face 11828 25995 20679 15860 Face 11829 37611 42351 19589 Face 11830 18653 21377 38806 Face 11831 38943 23075 12513 Face 11832 9216 11711 33362 Face 11833 23617 5919 17258 Face 11834 7796 7222 31383 Face 11835 6968 12754 27274 Face 11836 25234 13020 25483 Face 11837 38115 15856 7139 Face 11838 21313 8147 26296 Face 11839 25472 21313 15856 Face 11840 25472 41363 5922 Face 11841 11315 5923 38316 Face 11842 32311 7039 25925 Face 11843 40738 19216 30428 Face 11844 12277 31119 5924 Face 11845 14723 29534 25153 Face 11846 1955 40390 25496 Face 11847 28640 5926 47670 Face 11848 514 38373 45834 Face 11849 8824 41979 20803 Face 11850 8824 19723 11874 Face 11851 26588 17373 44110 Face 11852 40258 37326 20980 Face 11853 24264 5929 4727 Face 11854 21744 28441 24237 Face 11855 15522 5930 48124 Face 11856 40900 21196 38687 Face 11857 3572 5931 26875 Face 11858 3572 7134 32778 Face 11859 25104 34089 13693 Face 11860 43284 6101 5932 Face 11861 17591 5933 49684 Face 11862 237 8055 5933 Face 11863 24215 19113 33879 Face 11864 24215 19310 28417 Face 11865 2771 35633 47144 Face 11866 36094 14404 46900 Face 11867 18231 5936 4555 Face 11868 18231 19741 5936 Face 11869 12896 5937 42436 Face 11870 34508 11459 26874 Face 11871 22533 39494 4746 Face 11872 33088 10442 20090 Face 11873 36488 14170 5667 Face 11874 16142 18075 5939 Face 11875 44692 19388 23533 Face 11876 30305 21148 30421 Face 11877 24431 32222 19202 Face 11878 21627 22122 32222 Face 11879 45350 39856 2176 Face 11880 17244 19488 5942 Face 11881 23057 35728 40474 Face 11882 17244 5942 19452 Face 11883 17365 5944 36056 Face 11884 17365 28464 5944 Face 11885 17365 21342 28464 Face 11886 563 16947 5945 Face 11887 44971 5946 25187 Face 11888 32302 14396 46237 Face 11889 20486 35368 16782 Face 11890 4 3080 35368 Face 11891 27168 5948 38713 Face 11892 49699 19652 17683 Face 11893 42209 5949 49514 Face 11894 40876 3208 33249 Face 11895 270 39689 9882 Face 11896 270 5024 39689 Face 11897 34528 26021 21248 Face 11898 29945 8340 41550 Face 11899 22601 5952 47034 Face 11900 7362 25686 28184 Face 11901 21195 23767 1429 Face 11902 20670 23045 5953 Face 11903 14552 42779 31704 Face 11904 40338 25812 34631 Face 11905 1721 14049 38981 Face 11906 28289 14901 5955 Face 11907 49193 5956 32077 Face 11908 31511 4891 10460 Face 11909 41274 35394 6310 Face 11910 41274 16598 8428 Face 11911 3547 40214 41850 Face 11912 3547 10545 40214 Face 11913 22106 5959 18158 Face 11914 22106 31096 5959 Face 11915 43170 5960 35766 Face 11916 15396 14967 5960 Face 11917 16028 40619 17362 Face 11918 5132 14510 19509 Face 11919 49397 21086 13431 Face 11920 43669 46985 24045 Face 11921 38132 5963 16731 Face 11922 42035 30296 5963 Face 11923 32454 30408 20070 Face 11924 207 37933 19405 Face 11925 40606 25388 28373 Face 11926 1029 41317 29916 Face 11927 17865 25388 46062 Face 11928 17864 24623 5966 Face 11929 38347 13566 44967 Face 11930 44071 8335 23688 Face 11931 1648 16965 12520 Face 11932 25227 5914 16965 Face 11933 177 45560 19105 Face 11934 29818 12646 5969 Face 11935 18131 42630 42336 Face 11936 18131 13599 33228 Face 11937 32024 24948 1291 Face 11938 28980 17320 10672 Face 11939 42234 15863 8569 Face 11940 33567 5971 5972 Face 11941 4582 28467 8842 Face 11942 4582 27128 48429 Face 11943 15427 5974 27585 Face 11944 5975 23361 17132 Face 11945 11956 5975 5974 Face 11946 41320 30749 20967 Face 11947 3830 20000 24217 Face 11948 41374 13496 20000 Face 11949 32986 24472 35405 Face 11950 11418 30381 21540 Face 11951 49665 12743 27930 Face 11952 35063 5513 31190 Face 11953 46406 44820 17342 Face 11954 1431 41442 11564 Face 11955 14200 31254 48552 Face 11956 14200 18594 31254 Face 11957 17179 38497 18575 Face 11958 46798 25569 37373 Face 11959 5983 11501 28181 Face 11960 1732 18351 37049 Face 11961 41813 35526 31012 Face 11962 28645 11501 5983 Face 11963 11689 5984 20571 Face 11964 11690 7325 5984 Face 11965 22493 24849 45207 Face 11966 1343 17681 5985 Face 11967 30842 16963 15320 Face 11968 17670 19908 5986 Face 11969 40265 12087 31719 Face 11970 22596 34074 5987 Face 11971 10714 46490 38076 Face 11972 15911 28007 5988 Face 11973 7189 26088 10522 Face 11974 40269 20911 34982 Face 11975 6322 37194 44314 Face 11976 30911 5301 23259 Face 11977 47836 5991 37680 Face 11978 2487 25376 40731 Face 11979 37985 44683 43668 Face 11980 37985 40465 44683 Face 11981 16469 29177 34202 Face 11982 19306 40203 5993 Face 11983 25875 18569 14417 Face 11984 18246 38311 29633 Face 11985 23068 32694 42721 Face 11986 867 39221 5995 Face 11987 7354 5996 40226 Face 11988 32795 4094 5996 Face 11989 14421 29597 29350 Face 11990 1476 26386 35034 Face 11991 28265 41310 32039 Face 11992 28265 45739 5998 Face 11993 1702 5999 6464 Face 11994 1702 5732 5999 Face 11995 42109 28540 13558 Face 11996 42109 39908 28539 Face 11997 27519 46877 36230 Face 11998 189 17011 30377 Face 11999 19466 38896 27488 Face 12000 19466 27217 6002 Face 12001 26893 13019 20108 Face 12002 29537 18096 6003 Face 12003 6509 6004 14284 Face 12004 6509 26907 6004 Face 12005 41115 6005 22448 Face 12006 1070 27795 44354 Face 12007 17484 39778 33211 Face 12008 19933 36123 49422 Face 12009 26942 18399 25383 Face 12010 898 49586 6007 Face 12011 20867 33307 14488 Face 12012 346 3411 39579 Face 12013 31394 23039 17252 Face 12014 19904 9530 6009 Face 12015 1452 6010 24883 Face 12016 34383 47065 33829 Face 12017 1450 13554 48741 Face 12018 33047 5215 13554 Face 12019 44216 6012 21387 Face 12020 31235 21518 6012 Face 12021 30127 46190 17467 Face 12022 6387 49196 6013 Face 12023 49792 21570 3025 Face 12024 2894 22102 6014 Face 12025 30462 43800 26620 Face 12026 29876 26970 18058 Face 12027 677 32114 45822 Face 12028 677 26830 38891 Face 12029 11048 6017 45396 Face 12030 10808 36595 21719 Face 12031 41653 6018 42047 Face 12032 12470 29730 6018 Face 12033 35838 34646 712 Face 12034 38338 23161 6019 Face 12035 29751 6020 7211 Face 12036 7229 16524 36491 Face 12037 13028 43263 44727 Face 12038 41055 25278 6021 Face 12039 31135 25501 1635 Face 12040 34655 42126 6022 Face 12041 14140 6023 2274 Face 12042 454 46444 22437 Face 12043 2592 26800 18585 Face 12044 46674 38751 6024 Face 12045 40188 38900 31535 Face 12046 11938 23202 18799 Face 12047 31705 38279 3426 Face 12048 31705 28285 6026 Face 12049 5822 6027 19611 Face 12050 16245 23569 44100 Face 12051 38593 6028 2359 Face 12052 38593 29578 6028 Face 12053 26128 6029 19045 Face 12054 26128 14759 6029 Face 12055 6031 6030 41623 Face 12056 49632 16843 8529 Face 12057 16629 48021 38519 Face 12058 23755 2642 49632 Face 12059 743 41971 18391 Face 12060 8097 12099 41971 Face 12061 38360 33495 38245 Face 12062 27160 13804 33137 Face 12063 27288 6034 36939 Face 12064 37145 29217 6034 Face 12065 12808 36376 8969 Face 12066 27398 37940 36467 Face 12067 43543 39121 29537 Face 12068 2463 39728 6036 Face 12069 31332 29903 26979 Face 12070 13052 26947 34479 Face 12071 31873 26806 27383 Face 12072 21922 5565 6038 Face 12073 12029 6039 25772 Face 12074 24654 21438 10337 Face 12075 26947 6040 34479 Face 12076 26947 41309 6040 Face 12077 19647 37314 48900 Face 12078 4174 9506 29138 Face 12079 2266 36456 38085 Face 12080 16494 36334 11284 Face 12081 20842 28030 21188 Face 12082 43627 36650 43716 Face 12083 26733 6044 20957 Face 12084 22208 16897 6044 Face 12085 46369 38191 21914 Face 12086 1629 14170 36488 Face 12087 36485 45448 1477 Face 12088 103 14725 32797 Face 12089 11478 37767 16508 Face 12090 31750 10168 19805 Face 12091 21422 49304 36071 Face 12092 21422 30365 49304 Face 12093 32897 6049 11592 Face 12094 32897 24914 6049 Face 12095 2145 8226 31995 Face 12096 13557 33529 20473 Face 12097 16535 45013 11205 Face 12098 44283 30957 6051 Face 12099 32027 34387 12901 Face 12100 26567 32648 6052 Face 12101 36792 6053 26072 Face 12102 27048 9512 6053 Face 12103 5525 6054 26380 Face 12104 25410 18250 39409 Face 12105 36501 48734 32949 Face 12106 34539 5346 48734 Face 12107 37279 6056 14686 Face 12108 37279 5720 6056 Face 12109 19528 6057 35687 Face 12110 30293 11749 36803 Face 12111 16658 6058 48190 Face 12112 16658 46535 6058 Face 12113 28785 6059 47794 Face 12114 6091 19405 37933 Face 12115 408 33546 44138 Face 12116 408 14166 39597 Face 12117 5717 23662 31019 Face 12118 28801 41552 23662 Face 12119 20204 26048 7561 Face 12120 19664 3075 45329 Face 12121 2960 6063 20238 Face 12122 27551 39654 6063 Face 12123 6065 40457 8133 Face 12124 6065 16241 40457 Face 12125 28986 6065 37860 Face 12126 28986 18061 6065 Face 12127 19117 26364 6264 Face 12128 41763 16552 33373 Face 12129 32868 6067 42378 Face 12130 32868 2862 6067 Face 12131 3756 37527 12906 Face 12132 3756 33285 6068 Face 12133 23190 25123 30813 Face 12134 38222 43521 25123 Face 12135 34415 24152 41080 Face 12136 34415 37012 24152 Face 12137 29551 28934 48721 Face 12138 35012 29626 6071 Face 12139 44079 37234 3217 Face 12140 3655 990 23135 Face 12141 10923 42227 23100 Face 12142 2576 4303 6073 Face 12143 42077 6074 35197 Face 12144 662 21969 6074 Face 12145 77 40551 32028 Face 12146 37984 32891 45065 Face 12147 6077 6076 44185 Face 12148 6077 10662 6076 Face 12149 2644 44413 5609 Face 12150 2644 38496 44413 Face 12151 45553 6078 22000 Face 12152 44885 5588 6078 Face 12153 29401 40819 26383 Face 12154 18371 21416 10158 Face 12155 9468 13311 5612 Face 12156 1675 15875 6080 Face 12157 7267 6081 9469 Face 12158 6128 5612 13311 Face 12159 6080 7267 9469 Face 12160 6080 10278 6082 Face 12161 37215 6083 29885 Face 12162 44118 25757 15645 Face 12163 2042 33700 30609 Face 12164 35505 18737 17946 Face 12165 9057 31608 21912 Face 12166 9057 35731 31608 Face 12167 107 42540 13156 Face 12168 28084 16512 6086 Face 12169 7128 11063 45963 Face 12170 38106 48809 21074 Face 12171 23043 37156 36109 Face 12172 33378 41169 35863 Face 12173 28548 6089 37742 Face 12174 28549 20857 36204 Face 12175 17949 6090 28788 Face 12176 41428 20722 37804 Face 12177 28785 40663 6059 Face 12178 26783 34495 32630 Face 12179 6091 6092 19405 Face 12180 6091 11218 48980 Face 12181 14286 47920 25014 Face 12182 11509 25932 6093 Face 12183 37917 26477 2136 Face 12184 37917 16349 26477 Face 12185 38704 37536 42589 Face 12186 38704 20207 37536 Face 12187 22259 6096 36341 Face 12188 240 26550 46800 Face 12189 33599 23274 17532 Face 12190 33599 15017 6097 Face 12191 7311 35784 11824 Face 12192 1130 16367 35783 Face 12193 36272 20152 36129 Face 12194 38656 45410 22781 Face 12195 24959 33916 8776 Face 12196 17806 11799 6100 Face 12197 1989 6101 29992 Face 12198 1989 42585 6101 Face 12199 43847 25016 33385 Face 12200 6435 37586 11395 Face 12201 25814 35091 32348 Face 12202 46733 19719 45813 Face 12203 8027 32801 2216 Face 12204 8027 37322 32801 Face 12205 1072 6105 37073 Face 12206 30053 37739 17540 Face 12207 38421 29861 46199 Face 12208 14499 17075 46996 Face 12209 44957 41341 19107 Face 12210 43444 1731 20137 Face 12211 4638 48541 39202 Face 12212 29749 22396 11424 Face 12213 4638 29749 11424 Face 12214 26895 44054 6109 Face 12215 28052 6110 45877 Face 12216 3296 19106 28586 Face 12217 19769 24322 26171 Face 12218 37056 5344 30896 Face 12219 27455 45707 25432 Face 12220 22895 25149 9820 Face 12221 9875 44520 37424 Face 12222 18290 29853 15502 Face 12223 27712 41255 22010 Face 12224 663 21020 41254 Face 12225 10019 6115 40462 Face 12226 10019 25906 36988 Face 12227 1976 6116 21687 Face 12228 1976 5189 6116 Face 12229 28204 6117 44294 Face 12230 3639 10868 6117 Face 12231 14739 37530 5681 Face 12232 6119 20856 45862 Face 12233 18557 14739 5681 Face 12234 37276 39145 23511 Face 12235 1665 6120 27883 Face 12236 11166 47248 6120 Face 12237 13182 16751 3837 Face 12238 899 34170 16751 Face 12239 7906 6122 18750 Face 12240 7906 38371 6122 Face 12241 33040 6123 28128 Face 12242 33040 21996 6123 Face 12243 44630 26812 19236 Face 12244 438 27358 6124 Face 12245 41598 16292 21774 Face 12246 12551 42004 6125 Face 12247 26745 36759 5067 Face 12248 17910 6697 6126 Face 12249 44531 6127 27511 Face 12250 33743 17626 37328 Face 12251 13743 7268 10440 Face 12252 18048 10278 6128 Face 12253 17009 31542 7288 Face 12254 29654 8018 41554 Face 12255 11088 6130 34405 Face 12256 30511 11425 31107 Face 12257 40282 37665 12069 Face 12258 8730 12953 20759 Face 12259 35625 34484 8669 Face 12260 40864 21829 26009 Face 12261 39098 25589 4040 Face 12262 37071 9672 12877 Face 12263 26676 25602 4916 Face 12264 49525 35375 6134 Face 12265 13867 6135 34098 Face 12266 30218 41159 47901 Face 12267 12060 6136 2762 Face 12268 3198 17273 49717 Face 12269 27379 6137 21098 Face 12270 27379 45512 6137 Face 12271 45690 18430 30513 Face 12272 20302 2165 30105 Face 12273 26925 6139 17517 Face 12274 30939 18430 45690 Face 12275 29689 6140 38616 Face 12276 29689 16215 6140 Face 12277 18761 6141 34910 Face 12278 1598 35530 6141 Face 12279 21514 33297 15241 Face 12280 3199 31274 47909 Face 12281 44478 26432 12897 Face 12282 3199 30283 6143 Face 12283 7312 31105 24892 Face 12284 38679 3608 6144 Face 12285 474 17890 11669 Face 12286 46643 17285 14448 Face 12287 38630 41202 45839 Face 12288 19137 36597 41202 Face 12289 43485 38630 10378 Face 12290 2504 11805 20398 Face 12291 1749 6148 28252 Face 12292 18080 9085 29056 Face 12293 25108 6149 45914 Face 12294 19408 12319 33420 Face 12295 37735 6150 19895 Face 12296 37735 3281 18644 Face 12297 23513 20411 3899 Face 12298 1799 35872 10540 Face 12299 2256 33807 23860 Face 12300 28083 7302 42065 Face 12301 724 37699 4535 Face 12302 23711 7355 30499 Face 12303 26341 10223 20122 Face 12304 27121 16535 11205 Face 12305 18216 6155 27573 Face 12306 20121 20619 6155 Face 12307 46875 42944 21541 Face 12308 15968 39710 13577 Face 12309 38739 17590 6156 Face 12310 28507 11698 6157 Face 12311 16144 6158 32839 Face 12312 16144 7284 33013 Face 12313 22803 31681 13402 Face 12314 28406 8137 48668 Face 12315 898 6160 49422 Face 12316 898 30810 23669 Face 12317 34487 6161 16186 Face 12318 20049 1039 15552 Face 12319 1981 41911 24917 Face 12320 37689 27819 37482 Face 12321 5891 25167 8705 Face 12322 5891 20383 25167 Face 12323 5444 6164 31730 Face 12324 5444 485 6164 Face 12325 19070 6165 11585 Face 12326 19070 41100 6165 Face 12327 16536 8191 10482 Face 12328 27374 29850 8192 Face 12329 2367 6167 21561 Face 12330 2367 15815 6167 Face 12331 8862 14599 13108 Face 12332 23093 10782 46057 Face 12333 7000 39365 46664 Face 12334 2457 30707 16139 Face 12335 622 11820 19391 Face 12336 32303 48296 11820 Face 12337 15866 18734 42533 Face 12338 15866 34843 18734 Face 12339 1420 41901 45174 Face 12340 1420 12303 39899 Face 12341 32724 17583 30910 Face 12342 42382 24907 15535 Face 12343 24898 11969 36563 Face 12344 4534 38323 29468 Face 12345 49282 6175 34716 Face 12346 42912 29412 15408 Face 12347 1803 28443 12204 Face 12348 1803 18482 28443 Face 12349 18580 19617 9118 Face 12350 10109 28099 36760 Face 12351 2446 22382 26081 Face 12352 38073 29469 46550 Face 12353 889 6179 9781 Face 12354 889 19221 49943 Face 12355 2486 43846 29179 Face 12356 36734 44240 6180 Face 12357 6182 14259 32822 Face 12358 48929 13167 25179 Face 12359 365 49581 12019 Face 12360 365 38380 49581 Face 12361 3643 24836 37916 Face 12362 3643 30000 49563 Face 12363 19443 41347 30164 Face 12364 33956 16756 41347 Face 12365 5427 12201 6184 Face 12366 5427 10219 8877 Face 12367 1200 27978 30610 Face 12368 17810 32403 25079 Face 12369 40831 43740 5530 Face 12370 23159 2901 30860 Face 12371 15119 40770 21669 Face 12372 11586 34621 24617 Face 12373 29274 32349 11869 Face 12374 13113 45055 6189 Face 12375 1267 35307 8060 Face 12376 40792 27432 23249 Face 12377 13207 11658 16805 Face 12378 13206 23616 41232 Face 12379 6527 24127 2239 Face 12380 6527 5767 24127 Face 12381 13938 6193 29354 Face 12382 38649 20364 18380 Face 12383 15830 19135 27216 Face 12384 21388 26357 6194 Face 12385 43806 6195 29783 Face 12386 4404 33556 19981 Face 12387 23754 35184 5456 Face 12388 23754 19981 6196 Face 12389 46701 10906 36586 Face 12390 20630 15162 6197 Face 12391 23228 21992 43670 Face 12392 13798 18139 6198 Face 12393 2828 20937 37895 Face 12394 47786 21330 11763 Face 12395 44135 32988 17506 Face 12396 30446 5194 6200 Face 12397 23206 28472 11391 Face 12398 2002 32153 6201 Face 12399 20088 23965 43441 Face 12400 25009 35569 6202 Face 12401 31842 25685 48578 Face 12402 46431 17386 6203 Face 12403 26111 6204 21837 Face 12404 14305 22578 31785 Face 12405 48856 40092 18698 Face 12406 15225 22007 23205 Face 12407 14458 6206 38836 Face 12408 26702 3443 6206 Face 12409 16392 6207 9721 Face 12410 28910 43567 21280 Face 12411 16304 44415 19692 Face 12412 26819 12004 6208 Face 12413 18696 32232 21519 Face 12414 41009 2790 18219 Face 12415 38807 25007 7957 Face 12416 28746 19210 6210 Face 12417 788 6211 9818 Face 12418 788 19271 43871 Face 12419 564 30057 14106 Face 12420 564 9075 30058 Face 12421 34657 6213 49738 Face 12422 421 23803 40940 Face 12423 22938 48061 33367 Face 12424 47911 5273 22753 Face 12425 25920 6215 12635 Face 12426 25920 40193 6215 Face 12427 41425 33391 9781 Face 12428 41425 37820 6216 Face 12429 31674 6217 47444 Face 12430 269 46892 27251 Face 12431 43406 6218 12179 Face 12432 6219 29872 40703 Face 12433 18128 44951 5358 Face 12434 20260 6300 31549 Face 12435 25703 38838 5404 Face 12436 20898 3499 23444 Face 12437 298 6221 26686 Face 12438 15680 18157 11092 Face 12439 33008 6222 22351 Face 12440 33008 19756 6222 Face 12441 2285 42932 29823 Face 12442 18027 25119 36815 Face 12443 7683 37647 22296 Face 12444 2348 33505 48731 Face 12445 9424 6225 34931 Face 12446 26212 1326 44688 Face 12447 1084 16321 48648 Face 12448 31114 19116 46362 Face 12449 7278 11043 3933 Face 12450 18213 25318 20852 Face 12451 18960 6228 27714 Face 12452 1796 19264 6228 Face 12453 26498 6229 26551 Face 12454 46220 6228 18960 Face 12455 25933 6230 16370 Face 12456 36789 48876 10156 Face 12457 655 37430 3846 Face 12458 23538 5527 24411 Face 12459 44980 26163 31898 Face 12460 20649 36890 26163 Face 12461 4882 12841 20354 Face 12462 15794 1134 33582 Face 12463 26229 32246 40567 Face 12464 9612 14682 32246 Face 12465 2294 6235 30627 Face 12466 42590 34631 6235 Face 12467 36401 30943 5714 Face 12468 17521 25339 10922 Face 12469 5690 6237 47031 Face 12470 5690 15788 26823 Face 12471 24405 17344 22976 Face 12472 41382 33237 6238 Face 12473 38787 6239 1814 Face 12474 38787 17344 6239 Face 12475 31691 36317 26661 Face 12476 12599 34159 41389 Face 12477 32055 36890 20649 Face 12478 32055 11920 6241 Face 12479 19918 21183 3994 Face 12480 30635 18837 46243 Face 12481 14515 22545 39220 Face 12482 27936 24507 22545 Face 12483 30887 6244 12625 Face 12484 48832 42019 6244 Face 12485 43210 39986 35409 Face 12486 43210 44527 6245 Face 12487 48959 13871 45645 Face 12488 2847 24967 6246 Face 12489 35337 6247 11541 Face 12490 35337 39688 6247 Face 12491 4781 41943 31460 Face 12492 26854 42758 39688 Face 12493 1495 36138 17153 Face 12494 1495 16597 6249 Face 12495 8851 6250 35454 Face 12496 29601 15336 6250 Face 12497 3006 29449 24463 Face 12498 3006 8073 32301 Face 12499 38508 6252 19069 Face 12500 52 27488 43212 Face 12501 29203 6253 47299 Face 12502 29203 23815 6253 Face 12503 43247 46416 42899 Face 12504 1849 6193 46416 Face 12505 24130 17226 28585 Face 12506 1906 42570 17227 Face 12507 3710 34149 17847 Face 12508 3710 35455 6256 Face 12509 49922 6257 47022 Face 12510 3757 22015 38275 Face 12511 11634 22855 9262 Face 12512 11634 31207 6258 Face 12513 3885 35169 26442 Face 12514 3885 25960 35169 Face 12515 887 6260 11192 Face 12516 887 30874 6260 Face 12517 21475 21948 46645 Face 12518 5888 44708 12114 Face 12519 22165 18535 43799 Face 12520 40986 18798 6262 Face 12521 21193 6263 19117 Face 12522 21193 23261 6263 Face 12523 658 6264 26364 Face 12524 27596 45519 6264 Face 12525 47609 38794 13284 Face 12526 11937 2048 21035 Face 12527 35521 27570 33521 Face 12528 9744 12963 28742 Face 12529 19194 46350 9716 Face 12530 49978 15209 23992 Face 12531 30332 33542 47851 Face 12532 15978 48269 33115 Face 12533 45525 19664 45329 Face 12534 41435 45184 29444 Face 12535 14312 6270 31272 Face 12536 14312 12805 6270 Face 12537 20120 49708 27253 Face 12538 415 6155 18216 Face 12539 46113 37824 20860 Face 12540 1258 8461 43001 Face 12541 26242 40979 8860 Face 12542 15051 8846 6273 Face 12543 16718 38424 17960 Face 12544 11854 29118 6274 Face 12545 28089 18395 15091 Face 12546 17627 12602 24035 Face 12547 25264 31992 14644 Face 12548 11736 34565 6276 Face 12549 33676 6277 9754 Face 12550 11476 37282 43957 Face 12551 122 19177 43131 Face 12552 122 28682 21337 Face 12553 18336 6279 29184 Face 12554 4175 25789 20151 Face 12555 31541 6280 17300 Face 12556 31541 13839 6280 Face 12557 25069 15701 28878 Face 12558 45685 16347 18111 Face 12559 21638 6282 8761 Face 12560 49550 11069 6282 Face 12561 3620 27817 42629 Face 12562 3620 47469 26500 Face 12563 9605 6284 11323 Face 12564 36006 10741 7207 Face 12565 32196 13420 18619 Face 12566 46329 49713 13420 Face 12567 38727 46474 12254 Face 12568 38727 16270 6286 Face 12569 25942 31907 43667 Face 12570 4005 42591 22862 Face 12571 44535 17345 12151 Face 12572 24795 15760 6288 Face 12573 49874 45458 18875 Face 12574 4034 47152 19709 Face 12575 19336 24737 4603 Face 12576 565 42673 28706 Face 12577 1076 6291 43380 Face 12578 37585 17211 6291 Face 12579 3448 6292 36839 Face 12580 3448 23637 40294 Face 12581 34175 49911 14032 Face 12582 13486 39918 21430 Face 12583 20075 6294 15803 Face 12584 28143 175 47571 Face 12585 5438 18917 48839 Face 12586 22203 18603 18917 Face 12587 22242 41536 4410 Face 12588 2433 24211 6296 Face 12589 9714 35190 14980 Face 12590 18590 18433 6297 Face 12591 20060 41618 42568 Face 12592 19819 13251 14517 Face 12593 8073 20784 39727 Face 12594 33784 16691 11848 Face 12595 13056 6300 42468 Face 12596 24902 10188 6300 Face 12597 9458 38966 21141 Face 12598 18305 4842 32649 Face 12599 39604 25702 4203 Face 12600 25305 129 30721 Face 12601 3228 43381 1944 Face 12602 37877 6302 17077 Face 12603 40181 32339 27330 Face 12604 1853 46562 6304 Face 12605 6307 6853 24025 Face 12606 20273 29580 6853 Face 12607 10584 49963 28711 Face 12608 10584 15904 40271 Face 12609 33164 6307 20500 Face 12610 40271 15904 6307 Face 12611 34565 6308 44972 Face 12612 16155 49253 23297 Face 12613 44226 6309 7081 Face 12614 1102 36040 6309 Face 12615 1067 14219 28638 Face 12616 1067 21113 38276 Face 12617 35246 11976 10715 Face 12618 10404 17729 28446 Face 12619 37983 6312 8974 Face 12620 10943 18768 27106 Face 12621 524 29982 37332 Face 12622 12966 46814 6313 Face 12623 2714 29448 33409 Face 12624 29096 18380 32271 Face 12625 13749 25997 15343 Face 12626 13748 2220 30547 Face 12627 38010 46902 16845 Face 12628 12023 10125 36273 Face 12629 46170 6317 44908 Face 12630 1541 24299 38536 Face 12631 39539 17448 1894 Face 12632 2034 28955 39340 Face 12633 8 44989 19139 Face 12634 8 22018 44989 Face 12635 42759 6320 48829 Face 12636 26864 4705 31037 Face 12637 14561 27476 10147 Face 12638 93 39808 43724 Face 12639 2585 41497 45799 Face 12640 2585 37194 41497 Face 12641 49527 6323 31154 Face 12642 49527 17583 6323 Face 12643 8883 6324 22158 Face 12644 15731 22813 6324 Face 12645 49672 30644 27806 Face 12646 31839 45651 6325 Face 12647 3169 31868 26989 Face 12648 3169 31867 31868 Face 12649 33096 24977 12366 Face 12650 9333 14720 12503 Face 12651 40633 33967 12112 Face 12652 36924 4629 6328 Face 12653 27934 37097 7672 Face 12654 24134 25890 40961 Face 12655 22483 20443 5446 Face 12656 40560 15380 6330 Face 12657 39358 18550 15291 Face 12658 13084 13667 6331 Face 12659 23904 27576 37762 Face 12660 3031 40054 6332 Face 12661 40246 6333 21136 Face 12662 15086 42855 27141 Face 12663 1907 14249 43637 Face 12664 42573 13165 14249 Face 12665 16790 6335 18326 Face 12666 16790 31619 42949 Face 12667 630 21767 47731 Face 12668 36553 17141 30909 Face 12669 2578 6337 49374 Face 12670 2578 35948 6337 Face 12671 3624 27697 34367 Face 12672 3624 16037 24998 Face 12673 19211 6339 35563 Face 12674 1858 35174 6339 Face 12675 5183 44049 13930 Face 12676 5183 7111 27874 Face 12677 6342 43382 29248 Face 12678 10452 13603 37831 Face 12679 43133 6342 29248 Face 12680 43133 20464 6342 Face 12681 22143 6343 18168 Face 12682 22143 36476 6343 Face 12683 2018 37978 29243 Face 12684 45571 37859 26684 Face 12685 20163 6345 5851 Face 12686 31502 32287 40679 Face 12687 38000 15187 2164 Face 12688 33221 12483 6346 Face 12689 43474 6347 21115 Face 12690 36176 27526 6347 Face 12691 403 26513 16613 Face 12692 403 41645 26513 Face 12693 5673 28214 45750 Face 12694 5673 38549 24940 Face 12695 779 6350 32898 Face 12696 9304 21954 42104 Face 12697 30890 6351 24600 Face 12698 30890 10753 6351 Face 12699 4098 44031 33747 Face 12700 4098 2231 32240 Face 12701 18474 6353 3138 Face 12702 18474 17718 6353 Face 12703 47359 6354 8822 Face 12704 42632 19318 13038 Face 12705 32178 18082 48880 Face 12706 41485 14856 21231 Face 12707 380 26471 21231 Face 12708 25704 13118 26471 Face 12709 16413 6357 23792 Face 12710 16413 40995 6357 Face 12711 27155 28197 40006 Face 12712 27155 9982 25871 Face 12713 32442 6359 16312 Face 12714 31552 35556 21246 Face 12715 44684 42916 3962 Face 12716 24348 47908 6360 Face 12717 16734 18824 41946 Face 12718 27547 22265 6361 Face 12719 10014 6362 14587 Face 12720 36060 15379 27329 Face 12721 1307 6363 28325 Face 12722 34739 23624 6363 Face 12723 10836 6364 33822 Face 12724 17924 12898 31625 Face 12725 23392 27348 2203 Face 12726 23391 21796 45172 Face 12727 10430 39480 5725 Face 12728 10445 29888 15047 Face 12729 37918 14210 30421 Face 12730 17388 42379 6367 Face 12731 30742 43392 19728 Face 12732 44995 7764 33731 Face 12733 17705 34975 32325 Face 12734 17705 14562 34975 Face 12735 32260 32390 32324 Face 12736 1208 18863 6371 Face 12737 28244 6371 18863 Face 12738 6370 2757 26007 Face 12739 22972 6372 47330 Face 12740 22972 15372 6372 Face 12741 22971 39085 7730 Face 12742 22972 29173 6373 Face 12743 40842 33928 21261 Face 12744 30237 30302 24443 Face 12745 3944 43006 9934 Face 12746 46139 29625 47220 Face 12747 18044 24830 33002 Face 12748 7461 16130 48408 Face 12749 6680 34248 23222 Face 12750 25020 27829 6377 Face 12751 12788 39127 35651 Face 12752 12788 30402 39127 Face 12753 20529 49930 25827 Face 12754 49512 29321 28455 Face 12755 28261 6380 7604 Face 12756 12482 28455 6380 Face 12757 46513 34915 17105 Face 12758 46513 15597 34915 Face 12759 41302 30042 20513 Face 12760 45959 17058 6382 Face 12761 26963 18184 27990 Face 12762 26963 9589 18184 Face 12763 35333 6384 25929 Face 12764 35333 26152 6384 Face 12765 24095 6385 43526 Face 12766 17350 40765 23963 Face 12767 6387 6386 19138 Face 12768 9382 11568 29800 Face 12769 9382 6387 35769 Face 12770 9382 29800 6387 Face 12771 3841 6388 32967 Face 12772 3841 10903 6388 Face 12773 568 6389 36325 Face 12774 17567 15335 6389 Face 12775 568 17567 6389 Face 12776 12744 30787 27426 Face 12777 11803 33440 25463 Face 12778 2024 36349 41266 Face 12779 7403 34577 44779 Face 12780 35178 16665 20059 Face 12781 35336 42173 5168 Face 12782 22885 42268 42172 Face 12783 16667 19613 30998 Face 12784 2664 21010 42697 Face 12785 8124 38600 5750 Face 12786 34454 48406 6395 Face 12787 23063 31513 40346 Face 12788 13454 48134 31513 Face 12789 44865 38423 14729 Face 12790 26152 35333 6397 Face 12791 29835 42680 22731 Face 12792 44321 14589 15606 Face 12793 333 32533 21111 Face 12794 49122 3259 25194 Face 12795 32383 37218 20476 Face 12796 48332 33360 6400 Face 12797 18944 33375 13009 Face 12798 22762 20997 43914 Face 12799 20879 6402 33182 Face 12800 20879 43319 6402 Face 12801 1367 6403 15937 Face 12802 1367 29763 6403 Face 12803 21177 9784 20909 Face 12804 2700 11917 41402 Face 12805 10220 39070 23710 Face 12806 1879 11720 6405 Face 12807 47973 44544 12752 Face 12808 24929 35025 6406 Face 12809 4824 38725 18177 Face 12810 15876 46706 42610 Face 12811 49351 29423 4697 Face 12812 23854 49029 35767 Face 12813 17486 6409 24844 Face 12814 14039 46040 30672 Face 12815 32272 6410 42739 Face 12816 35928 5596 6410 Face 12817 40409 6411 33645 Face 12818 40409 20760 6411 Face 12819 2435 11516 37693 Face 12820 2435 43760 36732 Face 12821 38109 23434 28870 Face 12822 29256 44589 6413 Face 12823 5029 20441 18847 Face 12824 5029 7479 6414 Face 12825 11737 19914 47243 Face 12826 35946 23388 19914 Face 12827 28232 15685 24474 Face 12828 223 32952 6416 Face 12829 40213 6417 35049 Face 12830 3092 30758 6417 Face 12831 24115 6418 39806 Face 12832 28284 42110 6418 Face 12833 11415 6419 10447 Face 12834 3430 5395 6419 Face 12835 41565 21778 18965 Face 12836 672 15156 21778 Face 12837 29846 37490 46363 Face 12838 19198 26090 9907 Face 12839 1549 24523 14442 Face 12840 14790 43983 27126 Face 12841 23445 28311 6422 Face 12842 17160 9907 26921 Face 12843 2770 43676 23819 Face 12844 39173 16810 12675 Face 12845 1791 32251 23736 Face 12846 25465 63 19305 Face 12847 30871 6426 17011 Face 12848 33723 4801 47041 Face 12849 6426 6427 21959 Face 12850 6426 30871 6427 Face 12851 338 39824 9045 Face 12852 47782 5397 37245 Face 12853 14246 6429 24332 Face 12854 41464 19891 6429 Face 12855 14246 41464 6429 Face 12856 26273 21592 48409 Face 12857 23005 34547 18675 Face 12858 23005 37570 34547 Face 12859 9579 29716 36970 Face 12860 32493 39375 10658 Face 12861 16646 15559 28020 Face 12862 35857 3496 30141 Face 12863 21562 47786 11763 Face 12864 26050 41250 18257 Face 12865 43847 6435 11395 Face 12866 1340 30050 17400 Face 12867 19125 48531 19299 Face 12868 2263 28535 19000 Face 12869 86 20794 25036 Face 12870 12801 27961 33570 Face 12871 11690 15722 4753 Face 12872 2258 10516 6438 Face 12873 48381 41330 19337 Face 12874 1603 49165 36882 Face 12875 48608 35225 9574 Face 12876 48382 17308 35225 Face 12877 35253 28441 21744 Face 12878 2492 31734 6441 Face 12879 20467 6442 12234 Face 12880 20467 11776 6442 Face 12881 25184 6443 31968 Face 12882 24460 42299 35949 Face 12883 2216 6444 42324 Face 12884 15120 21938 26868 Face 12885 18738 27132 5015 Face 12886 17874 24608 30121 Face 12887 505 6446 24581 Face 12888 17874 30121 38614 Face 12889 3723 31397 48712 Face 12890 3723 44484 47109 Face 12891 10547 37542 20016 Face 12892 24721 44847 6448 Face 12893 20053 13697 39219 Face 12894 21236 4091 48584 Face 12895 1518 22912 22980 Face 12896 27223 16503 6450 Face 12897 5844 23901 23567 Face 12898 6452 16086 23901 Face 12899 5844 6452 23901 Face 12900 5844 40794 6452 Face 12901 47517 22048 4749 Face 12902 40682 17270 27967 Face 12903 38763 6454 46361 Face 12904 38763 28573 6454 Face 12905 5695 28463 22160 Face 12906 15793 2136 28463 Face 12907 40536 27419 23357 Face 12908 44814 34842 6456 Face 12909 12409 32080 2036 Face 12910 12410 33804 32657 Face 12911 45735 6458 19297 Face 12912 6459 25130 6458 Face 12913 22369 6459 6458 Face 12914 3753 19273 40081 Face 12915 39930 6460 47823 Face 12916 20336 37964 6460 Face 12917 46877 27522 36230 Face 12918 28838 35965 6461 Face 12919 27791 14908 4806 Face 12920 32766 18086 6462 Face 12921 25746 24363 6993 Face 12922 3591 3592 6463 Face 12923 4545 6464 5999 Face 12924 23576 45734 6464 Face 12925 16988 45414 10079 Face 12926 3735 41950 15549 Face 12927 2870 40044 24288 Face 12928 17871 14234 41441 Face 12929 2515 6467 31477 Face 12930 33948 21986 14396 Face 12931 26807 17215 38754 Face 12932 4055 25305 46681 Face 12933 9796 13614 2596 Face 12934 25120 5226 16668 Face 12935 20566 46367 32563 Face 12936 1214 9916 43328 Face 12937 21003 11360 15390 Face 12938 30349 30907 13039 Face 12939 3147 37092 27737 Face 12940 22499 45897 21982 Face 12941 24410 31898 23538 Face 12942 6231 5437 19638 Face 12943 41159 40848 47901 Face 12944 4014 10153 31989 Face 12945 46296 25323 17064 Face 12946 2479 11832 6475 Face 12947 11882 6476 29787 Face 12948 23379 32900 35381 Face 12949 32436 42593 27050 Face 12950 34334 18192 6477 Face 12951 1485 42178 24780 Face 12952 22121 15247 36569 Face 12953 20507 15150 41480 Face 12954 27483 15248 24714 Face 12955 2875 36023 32335 Face 12956 27483 6479 17735 Face 12957 12287 6481 31470 Face 12958 12287 26679 6481 Face 12959 11875 15654 1603 Face 12960 11876 5107 28345 Face 12961 4111 11230 31152 Face 12962 29812 42734 11230 Face 12963 31480 36951 14397 Face 12964 2279 45069 35684 Face 12965 12428 46540 35732 Face 12966 12814 19293 16332 Face 12967 1974 6486 17500 Face 12968 19393 5859 25302 Face 12969 15453 6487 36559 Face 12970 15453 19927 6487 Face 12971 27822 6488 38910 Face 12972 1331 36559 48039 Face 12973 16919 30623 25578 Face 12974 37180 4372 6489 Face 12975 35104 6490 19225 Face 12976 34178 25718 6490 Face 12977 43735 6491 25421 Face 12978 33554 25607 42001 Face 12979 48387 6492 17980 Face 12980 48387 4413 6492 Face 12981 1343 28256 39072 Face 12982 22493 19090 32182 Face 12983 3941 6494 24639 Face 12984 3941 31097 6494 Face 12985 195 6495 33617 Face 12986 195 30992 6495 Face 12987 39066 31473 43861 Face 12988 18813 13999 31473 Face 12989 37621 47808 1284 Face 12990 13708 23692 20705 Face 12991 2862 6498 41164 Face 12992 2862 13869 6498 Face 12993 7252 46666 11944 Face 12994 32835 25653 6499 Face 12995 37462 20689 23602 Face 12996 27291 360 6500 Face 12997 1197 6501 30877 Face 12998 17838 29458 6501 Face 12999 16869 32755 2640 Face 13000 32269 38969 6502 Face 13001 26286 6503 28175 Face 13002 14377 6530 13735 Face 13003 2146 6504 26836 Face 13004 10234 19013 6504 Face 13005 17126 6505 49017 Face 13006 17126 22837 6505 Face 13007 17125 14934 14089 Face 13008 678 23685 6506 Face 13009 16991 47015 26318 Face 13010 26243 46491 25576 Face 13011 623 13186 5996 Face 13012 12622 26677 19134 Face 13013 6510 32962 14284 Face 13014 828 10288 6509 Face 13015 27749 6510 47214 Face 13016 27749 32962 6510 Face 13017 42564 18739 37079 Face 13018 46457 20029 28042 Face 13019 47431 6512 40023 Face 13020 42504 9160 21953 Face 13021 15129 18882 45985 Face 13022 20900 44010 6513 Face 13023 489 48885 23769 Face 13024 26990 5786 18321 Face 13025 3370 38464 32236 Face 13026 26765 35945 38464 Face 13027 277 20519 48719 Face 13028 18997 13433 20519 Face 13029 6903 6517 16873 Face 13030 2090 21981 6517 Face 13031 6519 6518 22910 Face 13032 6519 35564 6518 Face 13033 46644 6519 30269 Face 13034 813 47021 28712 Face 13035 38927 17822 14410 Face 13036 10518 25956 6520 Face 13037 22436 6521 26539 Face 13038 40332 22586 44741 Face 13039 11685 42750 4872 Face 13040 34610 16877 6522 Face 13041 3257 35041 47500 Face 13042 35094 42548 11685 Face 13043 44893 6524 28654 Face 13044 34740 16133 6524 Face 13045 1806 24482 17948 Face 13046 17187 47529 6525 Face 13047 10911 19872 1080 Face 13048 21658 48421 26919 Face 13049 459 6527 2239 Face 13050 17862 26350 6527 Face 13051 459 6528 6527 Face 13052 9209 28951 20198 Face 13053 39533 37363 18750 Face 13054 42421 24037 17266 Face 13055 8965 6530 29327 Face 13056 45738 11665 33288 Face 13057 48416 21702 21933 Face 13058 22746 4775 6531 Face 13059 12249 6532 28264 Face 13060 49909 35217 16088 Face 13061 517 35587 4293 Face 13062 35472 11785 35586 Face 13063 28137 23071 1711 Face 13064 32783 20161 12521 Face 13065 46361 27592 8818 Face 13066 7851 35491 17234 Face 13067 35648 7851 17234 Face 13068 42408 21170 29776 Face 13069 43844 30485 19975 Face 13070 19111 8681 45535 Face 13071 1095 6538 43892 Face 13072 6855 2237 34090 Face 13073 39592 30884 18035 Face 13074 4912 9674 30884 Face 13075 196 6540 38112 Face 13076 35534 20102 6540 Face 13077 241 34308 42801 Face 13078 241 48470 34308 Face 13079 16315 32000 47884 Face 13080 18658 27633 40776 Face 13081 2224 16070 20820 Face 13082 35597 17602 16070 Face 13083 1869 41500 15675 Face 13084 1869 22329 14473 Face 13085 23753 8986 42473 Face 13086 28827 15486 8986 Face 13087 995 36687 3829 Face 13088 45795 3778 6546 Face 13089 7480 44340 29937 Face 13090 46096 33006 20890 Face 13091 46107 9348 31226 Face 13092 33868 22695 6548 Face 13093 21224 40066 31653 Face 13094 43500 22695 33868 Face 13095 26240 49095 43563 Face 13096 1911 21484 6550 Face 13097 36158 15523 23520 Face 13098 1911 6550 6551 Face 13099 15080 6552 24036 Face 13100 11836 5182 6552 Face 13101 16792 38032 27534 Face 13102 42157 31428 15080 Face 13103 35428 46448 7417 Face 13104 7019 15500 41167 Face 13105 24402 10659 9260 Face 13106 17742 37257 13415 Face 13107 1493 40388 49824 Face 13108 1493 22810 6556 Face 13109 1903 25374 37571 Face 13110 1903 27782 33845 Face 13111 33394 6558 7435 Face 13112 13023 17577 38953 Face 13113 46630 27977 6323 Face 13114 3886 9484 6559 Face 13115 2736 6560 19878 Face 13116 2736 33027 6560 Face 13117 36881 22679 18037 Face 13118 37549 21947 10261 Face 13119 32994 22634 1918 Face 13120 32994 43554 15956 Face 13121 7277 12256 32637 Face 13122 109 40320 28709 Face 13123 25831 33450 48184 Face 13124 25257 26534 6564 Face 13125 1512 6565 18229 Face 13126 11005 18790 33278 Face 13127 6565 39334 16227 Face 13128 33278 13638 27293 Face 13129 19298 33113 30493 Face 13130 19297 6458 27493 Face 13131 28297 6568 42978 Face 13132 37535 43423 18140 Face 13133 14845 46714 9354 Face 13134 25171 26582 6569 Face 13135 20405 25171 46714 Face 13136 45453 19423 26023 Face 13137 881 43206 36758 Face 13138 881 27860 43206 Face 13139 23765 6572 13352 Face 13140 30340 2343 22773 Face 13141 11385 17840 40828 Face 13142 22508 3928 41857 Face 13143 18224 6574 46952 Face 13144 171 17840 27777 Face 13145 12677 37557 1843 Face 13146 28856 35832 27777 Face 13147 33721 10726 40150 Face 13148 30484 2812 41379 Face 13149 98 22407 8999 Face 13150 8832 14321 44530 Face 13151 499 6578 21453 Face 13152 44208 13840 10638 Face 13153 27954 44208 6578 Face 13154 25184 47668 6579 Face 13155 47453 29617 14197 Face 13156 26422 3508 41915 Face 13157 23380 36299 19112 Face 13158 23380 46015 6581 Face 13159 15334 26657 47157 Face 13160 23468 33428 6582 Face 13161 3010 31686 15387 Face 13162 24976 1144 40895 Face 13163 35844 6584 21557 Face 13164 35844 12757 6584 Face 13165 18570 6585 10791 Face 13166 5395 3430 6585 Face 13167 27814 34325 7481 Face 13168 31758 9064 6586 Face 13169 44123 33081 31552 Face 13170 49389 34125 6587 Face 13171 26040 11297 27246 Face 13172 3269 19563 33317 Face 13173 3991 36311 9556 Face 13174 3991 9899 16414 Face 13175 19192 27208 4456 Face 13176 1401 23000 31534 Face 13177 3794 36910 18556 Face 13178 3794 46241 36910 Face 13179 38362 6592 24488 Face 13180 20989 4320 47389 Face 13181 18331 39612 24918 Face 13182 10502 32976 6593 Face 13183 25034 26072 6053 Face 13184 1588 27427 6594 Face 13185 48314 42715 24982 Face 13186 31212 3386 34709 Face 13187 40860 42093 29700 Face 13188 34714 6955 22380 Face 13189 21103 6597 14035 Face 13190 21103 16626 6597 Face 13191 849 33727 5899 Face 13192 6599 18856 27510 Face 13193 849 6599 33728 Face 13194 8651 850 29351 Face 13195 25391 6600 24810 Face 13196 25391 6222 6600 Face 13197 2434 6601 24856 Face 13198 36075 8351 42964 Face 13199 37015 30412 9560 Face 13200 15301 35303 6602 Face 13201 41294 28701 8504 Face 13202 32947 2710 39455 Face 13203 17036 8931 16105 Face 13204 1581 23239 6604 Face 13205 47576 9272 27138 Face 13206 7783 2321 31735 Face 13207 48864 6606 9220 Face 13208 16817 4858 6606 Face 13209 49257 26188 13795 Face 13210 11341 33196 37187 Face 13211 13570 27167 32143 Face 13212 6609 7213 27926 Face 13213 13570 6609 27167 Face 13214 26020 29337 43790 Face 13215 46921 6610 18981 Face 13216 24469 6079 32412 Face 13217 43746 6611 19824 Face 13218 45164 27257 26389 Face 13219 6613 36587 20479 Face 13220 6613 2061 36588 Face 13221 1588 17884 18449 Face 13222 25034 23213 17884 Face 13223 35375 25616 6134 Face 13224 10804 38142 40357 Face 13225 37825 43924 14237 Face 13226 44662 33437 23636 Face 13227 31984 6616 25673 Face 13228 31984 15009 6616 Face 13229 6618 6617 26647 Face 13230 6618 25033 6617 Face 13231 49920 6618 26102 Face 13232 1723 25033 6618 Face 13233 49040 31548 4844 Face 13234 28493 34295 39740 Face 13235 47175 6620 31716 Face 13236 47175 31019 6620 Face 13237 48499 49500 21458 Face 13238 19888 20216 43826 Face 13239 11199 6622 43819 Face 13240 41385 36844 48615 Face 13241 10199 6623 37433 Face 13242 29862 12425 9396 Face 13243 20408 6624 12741 Face 13244 20408 15020 6624 Face 13245 20265 25341 14317 Face 13246 49131 48192 25341 Face 13247 38835 21583 12408 Face 13248 43629 2583 42723 Face 13249 29061 6627 37116 Face 13250 29060 31029 6627 Face 13251 41518 21623 14317 Face 13252 19836 28622 38476 Face 13253 19836 6629 18109 Face 13254 19836 38476 29111 Face 13255 18573 18686 24321 Face 13256 22626 14016 6630 Face 13257 35086 19004 10074 Face 13258 1862 19343 42602 Face 13259 30472 29891 21157 Face 13260 45122 16072 20142 Face 13261 45204 32226 15748 Face 13262 33446 47710 44624 Face 13263 33315 6634 1457 Face 13264 39841 35541 48245 Face 13265 33316 6635 44966 Face 13266 33316 25313 6635 Face 13267 22183 35816 1933 Face 13268 16271 621 29447 Face 13269 4013 6637 29680 Face 13270 4013 20046 6637 Face 13271 45050 38079 10279 Face 13272 300 40911 6638 Face 13273 33720 37223 41661 Face 13274 6640 38379 44845 Face 13275 38262 6640 6639 Face 13276 46094 34723 6640 Face 13277 5769 25369 47126 Face 13278 26813 13326 25369 Face 13279 26459 6642 9914 Face 13280 31985 2480 41430 Face 13281 8201 6643 41375 Face 13282 16505 45714 9834 Face 13283 9771 10485 30963 Face 13284 37568 3002 6644 Face 13285 4069 6645 42340 Face 13286 4069 49269 26105 Face 13287 24155 6646 48924 Face 13288 40576 23015 6646 Face 13289 1112 39589 13828 Face 13290 1112 42439 14241 Face 13291 41418 33981 6803 Face 13292 14866 26833 6648 Face 13293 32129 45667 16758 Face 13294 38984 5359 6649 Face 13295 19970 35896 17778 Face 13296 25899 18499 29793 Face 13297 30603 49935 3388 Face 13298 17500 6486 27647 Face 13299 16468 6652 31402 Face 13300 37361 48616 16685 Face 13301 41106 34370 20761 Face 13302 16166 4594 46297 Face 13303 45638 26736 34370 Face 13304 16633 3943 48705 Face 13305 39040 39161 22292 Face 13306 43253 16328 39161 Face 13307 14221 7884 44127 Face 13308 14221 4682 40117 Face 13309 7884 6657 32545 Face 13310 6656 13266 6657 Face 13311 2517 18906 11165 Face 13312 46999 18714 18905 Face 13313 924 28471 18401 Face 13314 924 23858 28471 Face 13315 32101 11880 35406 Face 13316 29900 33063 45206 Face 13317 43032 29900 23740 Face 13318 14612 5429 6661 Face 13319 34453 25099 3818 Face 13320 255 20305 6662 Face 13321 20434 13302 47759 Face 13322 37769 25373 39501 Face 13323 20014 6664 36031 Face 13324 23008 27679 6664 Face 13325 20008 6665 14795 Face 13326 46873 21551 19016 Face 13327 21635 6666 47760 Face 13328 20008 14795 21376 Face 13329 24006 41227 9516 Face 13330 8742 29492 42532 Face 13331 19947 37341 31787 Face 13332 9630 23024 42160 Face 13333 7583 6669 12115 Face 13334 1749 38939 23088 Face 13335 5612 6670 26334 Face 13336 5612 6128 6670 Face 13337 2342 23323 12026 Face 13338 48389 18616 23323 Face 13339 10052 27624 3955 Face 13340 1326 19160 6672 Face 13341 1506 6673 48899 Face 13342 12104 10002 47386 Face 13343 3853 23425 8286 Face 13344 3853 36314 23425 Face 13345 27383 30486 15347 Face 13346 1032 26867 13588 Face 13347 7692 22928 6507 Face 13348 893 22755 26317 Face 13349 39118 44585 20910 Face 13350 8865 18661 31430 Face 13351 6964 22893 45523 Face 13352 44103 15768 25980 Face 13353 18620 46762 12586 Face 13354 23381 7744 6679 Face 13355 590 6680 23222 Face 13356 42961 20465 41899 Face 13357 42149 6681 23991 Face 13358 25110 37955 34801 Face 13359 32358 49088 6681 Face 13360 32357 17727 6682 Face 13361 7322 45872 32091 Face 13362 33873 17520 45776 Face 13363 294 6684 35820 Face 13364 44940 5016 34016 Face 13365 28023 36203 18730 Face 13366 33294 21526 18088 Face 13367 23343 28153 14922 Face 13368 6685 39371 25956 Face 13369 3525 6687 1555 Face 13370 40751 8976 38527 Face 13371 14606 48661 239 Face 13372 7853 9679 38336 Face 13373 1842 44382 33411 Face 13374 1842 25050 44382 Face 13375 41240 6690 18107 Face 13376 1940 15895 6690 Face 13377 6989 25096 16371 Face 13378 33856 28686 6691 Face 13379 9392 11700 20036 Face 13380 9392 16597 11700 Face 13381 26216 6693 17917 Face 13382 8392 2405 6693 Face 13383 28317 39104 36855 Face 13384 31988 25626 37302 Face 13385 30596 41558 1455 Face 13386 47097 17873 6695 Face 13387 27607 6696 44745 Face 13388 44859 34120 15176 Face 13389 13912 6697 35610 Face 13390 20736 6126 6697 Face 13391 13700 17027 22402 Face 13392 1184 49612 47560 Face 13393 996 46224 3308 Face 13394 21392 9142 43524 Face 13395 28336 27490 45888 Face 13396 11067 23608 30917 Face 13397 8248 6701 3675 Face 13398 16309 21167 28843 Face 13399 1881 6702 27629 Face 13400 31366 20895 6702 Face 13401 28774 39928 32775 Face 13402 34589 37128 13982 Face 13403 36647 6704 17355 Face 13404 40506 5733 49601 Face 13405 19040 31052 18509 Face 13406 38972 14258 6705 Face 13407 11376 6706 3915 Face 13408 11376 24672 6706 Face 13409 29918 13183 39441 Face 13410 17979 6646 24155 Face 13411 32685 49970 12453 Face 13412 32645 3109 29646 Face 13413 656 32645 29646 Face 13414 656 9218 44136 Face 13415 47930 41626 20334 Face 13416 17523 15777 14617 Face 13417 27179 47063 20614 Face 13418 27177 42670 23467 Face 13419 34116 6712 20920 Face 13420 1481 44730 9133 Face 13421 39959 24904 21721 Face 13422 1481 9133 34116 Face 13423 31108 6714 13630 Face 13424 3679 25946 17333 Face 13425 1457 28445 26754 Face 13426 46239 32538 33789 Face 13427 20824 21168 48732 Face 13428 7685 48833 32617 Face 13429 25476 6717 48946 Face 13430 34373 3133 26185 Face 13431 28668 19175 11336 Face 13432 39584 49361 19175 Face 13433 1152 6719 21434 Face 13434 43586 13909 39584 Face 13435 1298 33127 24611 Face 13436 46964 38274 33127 Face 13437 906 33358 45915 Face 13438 30361 4488 41141 Face 13439 5123 33625 25923 Face 13440 15619 4399 41787 Face 13441 32586 41884 4380 Face 13442 28328 20672 33982 Face 13443 2232 19588 21393 Face 13444 16718 21662 6724 Face 13445 20159 6725 3813 Face 13446 2538 17505 6725 Face 13447 23356 46433 40066 Face 13448 23356 36384 46433 Face 13449 6728 33122 11093 Face 13450 1156 4578 33122 Face 13451 48160 6728 31998 Face 13452 1156 33122 44509 Face 13453 17378 26390 42932 Face 13454 17378 10664 26390 Face 13455 30650 6730 8212 Face 13456 39765 2727 30524 Face 13457 7666 15784 20126 Face 13458 35014 915 6731 Face 13459 41021 30400 22032 Face 13460 49331 44493 6732 Face 13461 19453 6733 10895 Face 13462 44704 11469 6733 Face 13463 1079 22035 9800 Face 13464 1079 48101 41533 Face 13465 24566 32138 11948 Face 13466 39387 47573 6735 Face 13467 47842 36024 25909 Face 13468 29715 9788 27004 Face 13469 2231 47848 2516 Face 13470 2231 4098 17242 Face 13471 4002 33706 26646 Face 13472 6739 33754 21556 Face 13473 4002 23313 33706 Face 13474 4002 15465 23313 Face 13475 19848 6740 5589 Face 13476 10930 35879 42437 Face 13477 4024 31009 18671 Face 13478 39634 23525 43880 Face 13479 36844 29116 48614 Face 13480 45570 17954 20224 Face 13481 14594 37106 21848 Face 13482 1126 18173 43337 Face 13483 45367 6744 44145 Face 13484 45367 37615 34652 Face 13485 8705 20598 1804 Face 13486 1035 42341 27260 Face 13487 26649 16218 25051 Face 13488 26649 26668 16219 Face 13489 19184 44141 49594 Face 13490 17987 10834 44142 Face 13491 3584 6748 30984 Face 13492 3584 47556 6748 Face 13493 20030 13406 36648 Face 13494 36232 21810 6749 Face 13495 17553 31718 5665 Face 13496 25469 31268 6750 Face 13497 30643 48520 1775 Face 13498 17037 100 49893 Face 13499 45634 11661 14961 Face 13500 45634 24008 11661 Face 13501 2972 6753 25910 Face 13502 2972 10249 6753 Face 13503 2745 6754 44679 Face 13504 24160 14569 6754 Face 13505 8145 6755 44771 Face 13506 39630 38709 6755 Face 13507 36515 39415 28116 Face 13508 12311 25106 39414 Face 13509 23236 27867 41978 Face 13510 11428 35576 13273 Face 13511 23595 40144 27795 Face 13512 34098 41438 33646 Face 13513 15028 25855 43858 Face 13514 27940 40053 49756 Face 13515 21018 47720 18042 Face 13516 28877 12961 26054 Face 13517 41829 34938 16816 Face 13518 20897 49150 6761 Face 13519 1918 6762 14168 Face 13520 1918 22634 6762 Face 13521 29540 15192 3609 Face 13522 41867 17902 11520 Face 13523 19992 10542 31510 Face 13524 6765 12108 6764 Face 13525 554 6765 6764 Face 13526 19677 8548 20864 Face 13527 16918 14790 27126 Face 13528 8830 1429 6766 Face 13529 32030 41830 47145 Face 13530 23248 40949 17076 Face 13531 32030 23247 41830 Face 13532 25699 16824 6768 Face 13533 12094 37618 22547 Face 13534 11215 40093 21171 Face 13535 34032 11215 21171 Face 13536 21984 842 6770 Face 13537 33273 6771 4127 Face 13538 3112 10566 23914 Face 13539 41258 20454 24530 Face 13540 152 11970 6772 Face 13541 4698 32847 9533 Face 13542 4698 24284 6773 Face 13543 36572 6774 37299 Face 13544 30310 36919 6774 Face 13545 10712 6775 47484 Face 13546 39086 6103 48310 Face 13547 244 18777 2964 Face 13548 49286 17629 6776 Face 13549 8236 48503 34355 Face 13550 14206 26589 15960 Face 13551 14629 6778 4931 Face 13552 43104 48972 23748 Face 13553 48312 35038 4688 Face 13554 38997 9216 35038 Face 13555 44054 26850 6109 Face 13556 4688 39422 26850 Face 13557 2440 6781 18961 Face 13558 2440 49273 6781 Face 13559 34420 15214 28104 Face 13560 49121 32249 6782 Face 13561 1788 36966 30591 Face 13562 1788 6782 49360 Face 13563 38153 24231 20123 Face 13564 9780 18291 13384 Face 13565 15465 37741 27025 Face 13566 31591 24231 38153 Face 13567 34179 41543 18296 Face 13568 12972 8229 36873 Face 13569 22221 16093 2615 Face 13570 448 31203 6787 Face 13571 43791 6788 12301 Face 13572 8223 22510 12052 Face 13573 39284 6789 5225 Face 13574 1736 14199 31776 Face 13575 37605 33383 15230 Face 13576 27012 4093 16285 Face 13577 37650 6791 15593 Face 13578 37650 17775 6791 Face 13579 31060 18001 31257 Face 13580 14775 9768 28163 Face 13581 1614 39662 45557 Face 13582 19360 40261 19359 Face 13583 6793 6794 28163 Face 13584 6793 41720 6794 Face 13585 10855 25124 17761 Face 13586 37710 21781 6795 Face 13587 2949 24708 23290 Face 13588 2949 11643 24709 Face 13589 46980 21397 26771 Face 13590 4563 23874 6797 Face 13591 551 10588 13810 Face 13592 19451 35877 28183 Face 13593 3329 33751 31381 Face 13594 29869 26688 6799 Face 13595 14175 37436 15594 Face 13596 2345 41455 37435 Face 13597 32044 43331 3266 Face 13598 32043 38030 6801 Face 13599 7861 31556 4364 Face 13600 2774 5205 31556 Face 13601 37930 6803 6648 Face 13602 6036 25655 19962 Face 13603 48458 28908 39619 Face 13604 30568 38055 14335 Face 13605 41762 47003 38090 Face 13606 2624 35907 6805 Face 13607 23811 26998 17391 Face 13608 4316 26627 49764 Face 13609 35315 6807 39861 Face 13610 45108 27909 6807 Face 13611 27448 29246 42060 Face 13612 3668 21225 29246 Face 13613 35579 33932 36450 Face 13614 49517 39444 6809 Face 13615 23139 49503 33247 Face 13616 16776 49080 30815 Face 13617 25837 6811 20370 Face 13618 16860 4866 39978 Face 13619 47577 18865 11013 Face 13620 20403 18193 6812 Face 13621 32029 17599 9982 Face 13622 21017 49674 40448 Face 13623 32299 6814 43898 Face 13624 6815 41376 13175 Face 13625 10269 19155 13175 Face 13626 32362 16397 6815 Face 13627 49641 15946 28587 Face 13628 41917 21445 6816 Face 13629 23966 6817 36103 Face 13630 23966 17136 38295 Face 13631 45369 42283 17406 Face 13632 1905 6305 19672 Face 13633 3466 45181 27278 Face 13634 44958 29588 6819 Face 13635 17423 44593 36234 Face 13636 17423 48023 16883 Face 13637 3479 34292 23349 Face 13638 21113 1067 48863 Face 13639 1259 6822 21892 Face 13640 1259 28250 6822 Face 13641 4281 37500 15852 Face 13642 15081 5548 16852 Face 13643 36791 40926 5377 Face 13644 36792 26072 16864 Face 13645 42335 19680 26659 Face 13646 37201 31242 6825 Face 13647 26056 6826 17459 Face 13648 26055 32130 6826 Face 13649 2061 6827 36588 Face 13650 41679 10517 37770 Face 13651 36076 6828 20387 Face 13652 36076 27445 43531 Face 13653 2010 27753 30973 Face 13654 47458 38389 6829 Face 13655 15738 31597 10072 Face 13656 28517 1261 21352 Face 13657 36240 42115 26605 Face 13658 35539 24866 6831 Face 13659 36726 27610 15746 Face 13660 42823 32040 6832 Face 13661 16100 15620 15501 Face 13662 17390 43910 39892 Face 13663 2038 6834 7471 Face 13664 2038 45175 34391 Face 13665 20116 36939 38504 Face 13666 22017 11246 43194 Face 13667 33128 6836 15834 Face 13668 33128 24471 6836 Face 13669 2415 6837 35016 Face 13670 23503 35251 49231 Face 13671 33103 6838 13473 Face 13672 41017 13943 40473 Face 13673 1299 6839 28730 Face 13674 24285 16544 48353 Face 13675 27521 6840 36451 Face 13676 33485 24923 19596 Face 13677 22885 21774 42268 Face 13678 33544 38317 6841 Face 13679 35465 29190 11513 Face 13680 47040 28294 6842 Face 13681 49054 21081 13788 Face 13682 34403 29441 38661 Face 13683 35852 46160 23262 Face 13684 7320 19325 46160 Face 13685 12826 30526 29539 Face 13686 25335 39634 31698 Face 13687 1278 6846 2526 Face 13688 48828 31937 32118 Face 13689 33161 14736 31789 Face 13690 720 46245 14736 Face 13691 1507 6848 20657 Face 13692 1507 47880 6848 Face 13693 38061 13990 28075 Face 13694 9507 31338 13989 Face 13695 1507 39875 14931 Face 13696 9507 31565 36706 Face 13697 22332 6851 29484 Face 13698 22332 30630 28155 Face 13699 16600 6852 35372 Face 13700 1055 2359 22698 Face 13701 6305 6853 29580 Face 13702 6305 1905 6853 Face 13703 27959 39373 6282 Face 13704 4283 14658 49679 Face 13705 41777 6855 34090 Face 13706 41777 32555 6855 Face 13707 37934 6856 38287 Face 13708 33753 44533 6867 Face 13709 960 6857 45399 Face 13710 48405 22430 6857 Face 13711 960 48405 6857 Face 13712 960 47401 14613 Face 13713 22013 6859 19057 Face 13714 28290 15870 6859 Face 13715 29397 32127 2895 Face 13716 2567 47193 45037 Face 13717 10814 36666 29102 Face 13718 17786 31785 44605 Face 13719 11612 33782 48868 Face 13720 45469 9217 35558 Face 13721 33215 41610 16244 Face 13722 36961 24279 41610 Face 13723 24101 6864 27928 Face 13724 24102 13606 6864 Face 13725 9306 25047 21178 Face 13726 30142 38488 6865 Face 13727 48154 24745 27683 Face 13728 48153 21335 45894 Face 13729 29148 47669 48293 Face 13730 12939 33753 6867 Face 13731 45098 36552 1287 Face 13732 26065 19889 6868 Face 13733 12866 43432 26225 Face 13734 32899 36434 49262 Face 13735 49191 11655 16056 Face 13736 22682 1438 20406 Face 13737 39907 18369 28543 Face 13738 14036 23665 6871 Face 13739 17462 33564 49105 Face 13740 35323 23193 12792 Face 13741 24106 36014 45650 Face 13742 8740 6705 14258 Face 13743 1352 13237 5495 Face 13744 28450 18419 37130 Face 13745 18324 39435 35009 Face 13746 18324 25902 39435 Face 13747 31390 6876 19203 Face 13748 31390 23300 6876 Face 13749 2200 13711 23169 Face 13750 23726 15759 13711 Face 13751 49266 19936 16108 Face 13752 23015 40576 30143 Face 13753 24757 49980 43571 Face 13754 44790 6848 14930 Face 13755 42100 32012 25649 Face 13756 1066 14168 49537 Face 13757 16723 27098 48295 Face 13758 49045 3034 48373 Face 13759 37427 6882 46961 Face 13760 2682 15003 6882 Face 13761 6884 6883 31357 Face 13762 29865 542 6883 Face 13763 29535 6884 10085 Face 13764 29865 6883 6884 Face 13765 26891 11885 36974 Face 13766 17894 12014 28094 Face 13767 1263 48581 29509 Face 13768 1263 14592 48581 Face 13769 4482 6887 24746 Face 13770 37892 29642 6887 Face 13771 45814 6888 33585 Face 13772 31449 17357 6888 Face 13773 37118 6889 45152 Face 13774 37117 5032 36098 Face 13775 2484 41020 16584 Face 13776 2484 32521 41020 Face 13777 17524 44604 9020 Face 13778 35119 27213 25461 Face 13779 2391 35326 23047 Face 13780 2391 32498 24625 Face 13781 477 25499 3157 Face 13782 28680 40884 29912 Face 13783 20435 23447 31312 Face 13784 1987 9029 6894 Face 13785 6528 17862 6527 Face 13786 6528 8114 6895 Face 13787 30128 6896 41637 Face 13788 37537 47547 6896 Face 13789 23408 17255 39339 Face 13790 45358 36581 36037 Face 13791 21603 29126 20499 Face 13792 1471 38302 6898 Face 13793 44445 25897 27972 Face 13794 17197 29558 6899 Face 13795 20637 49398 2295 Face 13796 37190 28697 21309 Face 13797 3077 6901 21306 Face 13798 15501 27677 6901 Face 13799 30396 21758 20230 Face 13800 15945 31669 6902 Face 13801 34588 6903 17692 Face 13802 2090 6517 6903 Face 13803 30249 45802 16109 Face 13804 1082 32740 21971 Face 13805 32290 6905 15068 Face 13806 32290 19425 20562 Face 13807 487 6906 17392 Face 13808 487 42821 13763 Face 13809 19885 23502 37573 Face 13810 28610 10285 31101 Face 13811 18727 26894 30977 Face 13812 6909 38116 26295 Face 13813 23303 45529 6908 Face 13814 13050 945 45528 Face 13815 7750 43548 24276 Face 13816 17167 40654 16180 Face 13817 24487 28451 14816 Face 13818 24487 16504 28451 Face 13819 9354 13096 14845 Face 13820 26160 36539 6912 Face 13821 37196 6913 5160 Face 13822 12502 47189 21087 Face 13823 38924 23196 285 Face 13824 46702 13087 8906 Face 13825 20075 42144 6294 Face 13826 37696 16522 6915 Face 13827 36524 6916 47741 Face 13828 1525 27134 13426 Face 13829 41038 6917 33999 Face 13830 483 38201 26730 Face 13831 45302 6918 29644 Face 13832 303 26777 42239 Face 13833 1538 35283 41514 Face 13834 1538 43580 6919 Face 13835 28511 49264 42555 Face 13836 24539 35685 25101 Face 13837 46429 17446 24174 Face 13838 46130 4215 17447 Face 13839 38749 38445 34558 Face 13840 16966 35247 38445 Face 13841 1473 30540 26795 Face 13842 44792 4128 6923 Face 13843 35774 17029 1976 Face 13844 35774 41413 17029 Face 13845 20450 26930 9105 Face 13846 47414 19552 6925 Face 13847 1121 40431 23578 Face 13848 1121 12506 40431 Face 13849 8442 45931 42225 Face 13850 13024 32901 34254 Face 13851 12433 6928 30468 Face 13852 46892 21299 31932 Face 13853 39364 44835 15749 Face 13854 39364 15506 6929 Face 13855 46001 6930 25133 Face 13856 40093 44330 18792 Face 13857 49942 6931 38623 Face 13858 19856 47312 6931 Face 13859 25690 6932 14875 Face 13860 23395 11919 7931 Face 13861 43965 39683 19920 Face 13862 36490 32407 6933 Face 13863 30723 40620 15688 Face 13864 36490 6933 43965 Face 13865 17534 43011 11854 Face 13866 26122 40872 6935 Face 13867 13862 6936 9110 Face 13868 13862 18099 6936 Face 13869 28728 42024 14783 Face 13870 588 32524 43251 Face 13871 6941 6938 35833 Face 13872 9819 25826 15282 Face 13873 19642 35753 11029 Face 13874 21645 8271 40758 Face 13875 45072 6940 15282 Face 13876 21645 33569 11014 Face 13877 869 6941 31045 Face 13878 46895 31551 6941 Face 13879 4606 6942 23006 Face 13880 21855 33080 6942 Face 13881 37242 17830 37067 Face 13882 37242 45682 6943 Face 13883 37072 40441 21867 Face 13884 14899 8403 30213 Face 13885 40580 48015 5291 Face 13886 22118 33480 6945 Face 13887 1823 28365 48193 Face 13888 1823 28055 6946 Face 13889 31526 30005 40264 Face 13890 46141 26810 25192 Face 13891 40173 15770 11645 Face 13892 31526 40264 6948 Face 13893 27007 43830 22189 Face 13894 2422 25922 6949 Face 13895 27278 31129 3466 Face 13896 29145 32326 6950 Face 13897 118 42684 27343 Face 13898 118 23104 6951 Face 13899 78 35354 43736 Face 13900 78 27339 43955 Face 13901 16257 48724 25204 Face 13902 28645 5983 41813 Face 13903 13012 28239 29315 Face 13904 33668 38393 6954 Face 13905 36696 49462 4270 Face 13906 31469 47808 6955 Face 13907 44833 14858 8433 Face 13908 858 32767 15973 Face 13909 12174 21265 42513 Face 13910 1268 46805 18560 Face 13911 23138 48644 24984 Face 13912 2428 48956 42300 Face 13913 8175 21789 39629 Face 13914 8175 28868 21789 Face 13915 33591 6960 16835 Face 13916 33590 14275 6960 Face 13917 24378 6961 17063 Face 13918 24378 40009 6961 Face 13919 14075 6962 35460 Face 13920 14075 31293 35880 Face 13921 47639 32661 37318 Face 13922 11414 33750 26277 Face 13923 24941 11414 46820 Face 13924 24941 14537 11414 Face 13925 34798 22737 9496 Face 13926 24651 40908 38980 Face 13927 28770 13374 35085 Face 13928 13194 18522 25654 Face 13929 14093 20886 38543 Face 13930 14093 33252 20886 Face 13931 22659 32634 44650 Face 13932 22659 12754 6968 Face 13933 8353 13872 28938 Face 13934 25409 27450 48665 Face 13935 2481 6970 45230 Face 13936 2481 42388 6970 Face 13937 45290 6971 37580 Face 13938 35958 22505 6971 Face 13939 44091 21359 41502 Face 13940 22729 36610 25939 Face 13941 26079 6973 41553 Face 13942 26079 3039 6973 Face 13943 31771 47867 36609 Face 13944 31771 26473 6974 Face 13945 3925 18411 23666 Face 13946 3925 30086 18411 Face 13947 2864 15667 47167 Face 13948 14980 35190 17639 Face 13949 42629 15819 34131 Face 13950 15923 4278 40930 Face 13951 19727 32956 41840 Face 13952 19727 26273 6978 Face 13953 38882 6979 34923 Face 13954 28465 17054 43100 Face 13955 447 19777 47107 Face 13956 447 36743 19777 Face 13957 46280 46730 38179 Face 13958 36259 1828 34476 Face 13959 41885 20930 25008 Face 13960 13992 7646 47203 Face 13961 18898 38210 20298 Face 13962 49070 19206 6983 Face 13963 46620 6984 29037 Face 13964 18898 36990 6984 Face 13965 28032 22689 18375 Face 13966 14598 36742 6985 Face 13967 7569 6986 23484 Face 13968 9208 44954 6986 Face 13969 2406 11997 34272 Face 13970 2406 17020 38467 Face 13971 11677 31371 21687 Face 13972 1854 33354 16674 Face 13973 13252 6989 25172 Face 13974 36869 5345 10092 Face 13975 40287 6990 12223 Face 13976 2981 45736 6990 Face 13977 10106 15780 28012 Face 13978 2981 6990 40287 Face 13979 46769 6992 8226 Face 13980 35846 42925 6992 Face 13981 43727 44609 28629 Face 13982 43727 25746 6993 Face 13983 37079 6994 42564 Face 13984 14935 19021 40630 Face 13985 22470 35717 12995 Face 13986 2246 19070 25984 Face 13987 19338 28456 12083 Face 13988 19338 35313 6996 Face 13989 718 6997 17610 Face 13990 15126 46887 6997 Face 13991 2299 47923 24314 Face 13992 2299 25966 6998 Face 13993 5128 6999 2577 Face 13994 5128 27785 6999 Face 13995 28206 7000 43034 Face 13996 14035 39365 7000 Face 13997 6811 7001 19607 Face 13998 6811 1121 23578 Face 13999 3322 48755 37134 Face 14000 25296 10017 7002 Face 14001 15935 16375 45995 Face 14002 41187 26569 16375 Face 14003 18147 7004 26751 Face 14004 19708 15388 39150 Face 14005 25108 19408 33420 Face 14006 17566 30208 7005 Face 14007 39980 7006 10947 Face 14008 41145 35761 44444 Face 14009 4841 7007 10720 Face 14010 26128 19045 7007 Face 14011 33495 7008 38245 Face 14012 35953 47224 18263 Face 14013 13613 49413 14011 Face 14014 27995 36837 49413 Face 14015 2824 39128 17575 Face 14016 45300 13235 11962 Face 14017 34427 17366 43762 Face 14018 41737 5287 18451 Face 14019 904 47558 26669 Face 14020 904 20693 35933 Face 14021 33035 14874 21809 Face 14022 2316 46773 14874 Face 14023 26802 36638 13155 Face 14024 39348 6590 19192 Face 14025 1758 7015 31886 Face 14026 31593 26151 7472 Face 14027 3022 7016 19702 Face 14028 3022 40963 26246 Face 14029 3437 26680 10214 Face 14030 40973 5511 26681 Face 14031 11877 48996 30319 Face 14032 11875 1603 19581 Face 14033 15349 7019 14046 Face 14034 1998 28822 22836 Face 14035 17408 34511 15105 Face 14036 17408 46184 19222 Face 14037 4427 45047 18802 Face 14038 48554 4777 45047 Face 14039 795 7022 46253 Face 14040 29257 44714 47589 Face 14041 20157 24917 41911 Face 14042 45505 15186 22496 Face 14043 12622 10438 26677 Face 14044 22293 21899 23534 Face 14045 30253 33705 20047 Face 14046 1078 27032 7025 Face 14047 25543 14121 11559 Face 14048 31649 25523 7026 Face 14049 15157 19964 36573 Face 14050 36141 22574 7027 Face 14051 48840 14086 7882 Face 14052 19739 17814 46628 Face 14053 18121 23439 14273 Face 14054 10712 19749 44553 Face 14055 13892 40883 8372 Face 14056 31651 46776 7030 Face 14057 20888 43101 38907 Face 14058 31394 44255 14182 Face 14059 5143 19904 6009 Face 14060 5143 43101 20888 Face 14061 13667 7033 36459 Face 14062 21793 38749 35233 Face 14063 46990 7034 11714 Face 14064 27617 16168 42575 Face 14065 2396 13654 8677 Face 14066 36529 22530 13654 Face 14067 28226 44083 4574 Face 14068 26424 16387 20125 Face 14069 20592 26424 20125 Face 14070 23012 49544 37175 Face 14071 29130 7038 21934 Face 14072 223 6416 24433 Face 14073 44598 7039 32311 Face 14074 18682 2407 31276 Face 14075 36146 7040 33951 Face 14076 13032 37308 36865 Face 14077 36510 15562 24913 Face 14078 49789 27262 15562 Face 14079 1336 7042 13732 Face 14080 1336 30372 13660 Face 14081 36271 7043 46156 Face 14082 36271 5585 7043 Face 14083 4675 7044 9820 Face 14084 4675 34372 7044 Face 14085 8425 7045 44022 Face 14086 44289 39845 7045 Face 14087 21324 7046 46241 Face 14088 12571 672 42344 Face 14089 3649 19498 2250 Face 14090 33762 14700 19469 Face 14091 33934 46916 22118 Face 14092 31557 4039 33480 Face 14093 396 27719 7690 Face 14094 396 11220 35520 Face 14095 46251 41776 32800 Face 14096 41 31117 41776 Face 14097 27 28698 18871 Face 14098 27 47578 28698 Face 14099 18499 36857 29793 Face 14100 33756 34430 7052 Face 14101 3767 24477 17740 Face 14102 9131 10873 49536 Face 14103 28469 18819 2871 Face 14104 20379 18754 7054 Face 14105 31121 26244 13168 Face 14106 27969 19733 33024 Face 14107 38057 7056 22450 Face 14108 7662 22113 33849 Face 14109 12115 35377 7583 Face 14110 12115 45976 35377 Face 14111 45976 7058 35377 Face 14112 1502 31062 7058 Face 14113 12584 25663 16921 Face 14114 45691 44479 25665 Face 14115 4029 7060 46618 Face 14116 4029 13041 23453 Face 14117 959 7061 37448 Face 14118 22881 243 18071 Face 14119 12283 27353 9793 Face 14120 581 10680 41517 Face 14121 26642 30829 42416 Face 14122 41845 442 16322 Face 14123 20110 21006 3949 Face 14124 23194 30264 42444 Face 14125 36021 7065 38383 Face 14126 19056 2498 20136 Face 14127 19337 27666 48382 Face 14128 20020 22024 28074 Face 14129 38222 36623 43521 Face 14130 31582 17790 28542 Face 14131 36547 7068 18342 Face 14132 8292 26166 46794 Face 14133 28598 7069 41824 Face 14134 22101 4033 26116 Face 14135 26959 34127 20355 Face 14136 27425 43903 7070 Face 14137 23281 15406 36000 Face 14138 23281 102 49322 Face 14139 3935 7072 18612 Face 14140 42618 40056 31486 Face 14141 4554 7073 32836 Face 14142 20028 20882 44442 Face 14143 39900 28060 43604 Face 14144 43026 7542 23429 Face 14145 35133 7075 17654 Face 14146 1073 22013 19057 Face 14147 46995 10607 34792 Face 14148 15360 35745 7076 Face 14149 30021 7077 20357 Face 14150 30021 38413 7077 Face 14151 38396 16082 24817 Face 14152 2030 18455 7078 Face 14153 16326 13217 13727 Face 14154 37814 36957 7079 Face 14155 175 31012 35526 Face 14156 175 33796 16795 Face 14157 40163 21119 22308 Face 14158 23455 21639 21119 Face 14159 31170 7082 37666 Face 14160 31170 9761 7082 Face 14161 105 7083 28257 Face 14162 46770 10812 41457 Face 14163 4142 7084 46512 Face 14164 17550 24620 7084 Face 14165 18820 14192 24242 Face 14166 30858 40972 7085 Face 14167 25921 34304 39443 Face 14168 48638 21160 34304 Face 14169 42953 33902 10156 Face 14170 40030 14983 33489 Face 14171 20946 18338 38001 Face 14172 35282 44788 18338 Face 14173 21323 28568 22301 Face 14174 20947 45165 7089 Face 14175 28266 25820 45222 Face 14176 37221 42634 25820 Face 14177 49700 17872 19740 Face 14178 8474 1667 38854 Face 14179 33219 28543 18369 Face 14180 23647 6487 19927 Face 14181 32574 28919 2675 Face 14182 19262 3942 45611 Face 14183 48108 7094 30956 Face 14184 9848 48110 7094 Face 14185 24518 33677 48627 Face 14186 2570 29106 33677 Face 14187 30830 49026 28597 Face 14188 1193 21046 39560 Face 14189 15496 18617 20543 Face 14190 32832 14177 7097 Face 14191 42420 7098 26463 Face 14192 42420 5669 7098 Face 14193 25618 7099 23808 Face 14194 42469 22814 28707 Face 14195 34254 7100 13024 Face 14196 24180 35403 39160 Face 14197 21730 25429 47242 Face 14198 31692 13390 7101 Face 14199 23278 44047 3404 Face 14200 26633 24699 14776 Face 14201 27267 7103 42837 Face 14202 10171 29903 46222 Face 14203 13810 30569 551 Face 14204 1482 8238 34510 Face 14205 35312 7105 48010 Face 14206 16345 85 12070 Face 14207 5279 42797 7105 Face 14208 20803 5622 16345 Face 14209 4593 7107 41119 Face 14210 4593 11461 7107 Face 14211 37230 15105 34511 Face 14212 22253 13759 39357 Face 14213 32308 7109 27546 Face 14214 1423 22580 7109 Face 14215 1423 32308 24515 Face 14216 1423 7109 32308 Face 14217 27290 13095 19127 Face 14218 176 27874 7111 Face 14219 176 45014 13060 Face 14220 176 13095 27290 Face 14221 20103 7113 11957 Face 14222 7112 48467 40962 Face 14223 7664 42303 19247 Face 14224 524 44274 7114 Face 14225 16822 7115 36288 Face 14226 16822 20496 7115 Face 14227 15056 7116 22274 Face 14228 21656 7926 43304 Face 14229 22642 7117 38887 Face 14230 22642 32459 7117 Face 14231 1421 45898 18546 Face 14232 1421 36136 31644 Face 14233 37595 7119 4125 Face 14234 49253 16155 7119 Face 14235 16181 7120 45660 Face 14236 16181 42726 7120 Face 14237 19 7121 40131 Face 14238 29712 46095 32756 Face 14239 21355 24496 38952 Face 14240 25582 47665 7122 Face 14241 15788 7123 26823 Face 14242 23786 11654 7123 Face 14243 32599 7124 7972 Face 14244 1606 24412 32827 Face 14245 15421 7125 12823 Face 14246 15421 30287 22167 Face 14247 30844 22955 45563 Face 14248 7127 6623 10199 Face 14249 33153 30844 45563 Face 14250 39883 29794 18979 Face 14251 27627 24850 18422 Face 14252 44429 36596 38008 Face 14253 43192 18473 15509 Face 14254 13550 35271 7129 Face 14255 4303 49452 6073 Face 14256 36313 43165 7130 Face 14257 41645 48273 13951 Face 14258 18457 35750 7131 Face 14259 1950 19040 26512 Face 14260 1950 29429 19040 Face 14261 2576 36455 4303 Face 14262 48470 241 44460 Face 14263 14578 7134 3572 Face 14264 29950 40853 46244 Face 14265 15037 34054 14067 Face 14266 24762 11464 18464 Face 14267 3981 27561 39595 Face 14268 34840 20778 29652 Face 14269 20948 7137 22453 Face 14270 20948 40149 7137 Face 14271 36305 7138 47709 Face 14272 31685 10036 7138 Face 14273 21432 7139 43927 Face 14274 21432 38115 7139 Face 14275 49648 43092 20751 Face 14276 4629 36924 43092 Face 14277 36247 35824 17982 Face 14278 3211 40155 13747 Face 14279 1997 7142 41696 Face 14280 1997 31400 23019 Face 14281 5165 20671 39217 Face 14282 5165 49781 20671 Face 14283 1917 37635 32097 Face 14284 32201 42371 29897 Face 14285 24300 7145 36534 Face 14286 15387 31686 27950 Face 14287 24121 38551 2147 Face 14288 13564 41 29628 Face 14289 1725 7147 25131 Face 14290 42319 30532 7147 Face 14291 2571 7148 18475 Face 14292 12223 6990 18846 Face 14293 29121 7149 20174 Face 14294 44080 9 21704 Face 14295 18477 10543 44864 Face 14296 27747 39877 25473 Face 14297 11944 7151 29349 Face 14298 639 18681 7151 Face 14299 11054 28105 45017 Face 14300 43035 7321 7152 Face 14301 7682 34515 19185 Face 14302 35520 11220 14745 Face 14303 42702 31125 4875 Face 14304 42060 32813 11321 Face 14305 31125 44276 9187 Face 14306 46393 3319 41053 Face 14307 836 10291 27401 Face 14308 21612 11788 46202 Face 14309 37464 18514 26774 Face 14310 19922 23521 16372 Face 14311 17760 8909 7159 Face 14312 36692 31799 8909 Face 14313 47758 7159 7158 Face 14314 47758 14100 7159 Face 14315 137 7160 24677 Face 14316 22461 14100 7160 Face 14317 1421 7161 44383 Face 14318 1421 9694 7161 Face 14319 224 7162 28807 Face 14320 224 33212 7162 Face 14321 36704 42812 29744 Face 14322 31550 12265 7163 Face 14323 11697 7164 47504 Face 14324 11697 37722 7164 Face 14325 1172 7165 25791 Face 14326 48957 16259 25217 Face 14327 34184 41660 42811 Face 14328 16781 28109 24692 Face 14329 29731 20738 4704 Face 14330 24692 38427 16688 Face 14331 18744 41660 34184 Face 14332 7166 20738 7168 Face 14333 1115 22611 5091 Face 14334 1115 29854 22611 Face 14335 7620 11533 37415 Face 14336 42229 3630 11533 Face 14337 16182 7171 16239 Face 14338 44578 5401 43492 Face 14339 19974 7172 31678 Face 14340 19974 23447 7172 Face 14341 5574 33493 37544 Face 14342 31174 22854 15111 Face 14343 47492 40284 23646 Face 14344 1378 12048 7174 Face 14345 38017 28442 6931 Face 14346 39232 11829 7175 Face 14347 41252 7176 35087 Face 14348 41252 12865 7176 Face 14349 1831 49784 17114 Face 14350 1831 34082 16016 Face 14351 26421 39460 20618 Face 14352 44166 12299 31158 Face 14353 29723 7179 26865 Face 14354 37631 43093 7179 Face 14355 10076 7180 46508 Face 14356 20840 15116 24098 Face 14357 47162 31102 11001 Face 14358 2198 11106 31102 Face 14359 15108 7182 2637 Face 14360 15108 9853 7182 Face 14361 711 20726 11184 Face 14362 7965 34557 7183 Face 14363 37395 7184 49675 Face 14364 37395 30039 7184 Face 14365 29829 7185 44251 Face 14366 43528 31657 7185 Face 14367 23069 42694 9084 Face 14368 29375 15319 18973 Face 14369 1204 7187 32934 Face 14370 47779 29213 7187 Face 14371 18851 30989 44567 Face 14372 17371 10711 15649 Face 14373 33825 20017 31185 Face 14374 33825 12133 20017 Face 14375 4803 44713 16623 Face 14376 9343 24613 48004 Face 14377 2098 20697 29018 Face 14378 2098 16403 40520 Face 14379 2098 7192 31123 Face 14380 2098 31146 7192 Face 14381 41670 7193 16874 Face 14382 35910 3248 45891 Face 14383 3781 7194 5342 Face 14384 25115 10322 32638 Face 14385 1811 49758 43369 Face 14386 1811 46012 49758 Face 14387 31160 7196 2230 Face 14388 28233 21229 12925 Face 14389 39828 33980 17630 Face 14390 57 4539 31393 Face 14391 22300 7198 16880 Face 14392 21876 21216 7198 Face 14393 26809 7199 35771 Face 14394 26809 20544 7199 Face 14395 17223 21832 35858 Face 14396 40815 15147 7200 Face 14397 46987 30646 48646 Face 14398 46988 33286 7201 Face 14399 45474 7202 29209 Face 14400 45474 37204 7202 Face 14401 2458 47491 36036 Face 14402 45878 9137 35037 Face 14403 13877 39279 20032 Face 14404 13877 29994 39279 Face 14405 12305 48797 19434 Face 14406 18163 23959 7205 Face 14407 26293 38612 41097 Face 14408 9204 20711 36824 Face 14409 6284 26384 11323 Face 14410 18619 36006 7207 Face 14411 2481 33412 17114 Face 14412 35524 46427 18235 Face 14413 13100 13933 35204 Face 14414 10715 11976 18206 Face 14415 21512 31562 27751 Face 14416 41567 18206 7210 Face 14417 1087 40466 26898 Face 14418 23854 29423 49351 Face 14419 11421 34637 24646 Face 14420 1589 49172 28800 Face 14421 29337 7213 43790 Face 14422 3252 49376 7213 Face 14423 2384 7214 44018 Face 14424 2384 15429 22366 Face 14425 26237 9519 13114 Face 14426 11645 15770 46667 Face 14427 1521 46347 21898 Face 14428 1521 28969 46347 Face 14429 1461 27678 6800 Face 14430 35768 5777 27678 Face 14431 32263 28871 45159 Face 14432 33693 31436 7218 Face 14433 41963 7219 27467 Face 14434 41963 27620 7219 Face 14435 15642 37200 14364 Face 14436 21853 40773 17820 Face 14437 40901 23134 33045 Face 14438 17137 8395 40846 Face 14439 1684 38431 10180 Face 14440 1684 48727 38431 Face 14441 30316 16722 7224 Face 14442 30317 16436 48642 Face 14443 25165 7224 44356 Face 14444 23101 42922 7224 Face 14445 7978 16657 48519 Face 14446 782 24259 35959 Face 14447 8713 20932 10039 Face 14448 17438 14439 22653 Face 14449 35389 7227 27054 Face 14450 17438 7226 7227 Face 14451 30102 25273 17033 Face 14452 31732 20614 43119 Face 14453 42998 7229 36491 Face 14454 308 2590 7229 Face 14455 39854 21319 8261 Face 14456 1099 22527 13092 Face 14457 24510 43775 19412 Face 14458 31014 15357 20536 Face 14459 25025 14011 7009 Face 14460 5156 17889 7232 Face 14461 3212 25557 31811 Face 14462 34096 17072 34493 Face 14463 3212 34097 7233 Face 14464 27688 5557 7234 Face 14465 24641 15164 36017 Face 14466 7849 37127 34512 Face 14467 44914 7236 10010 Face 14468 1389 43139 28647 Face 14469 2511 48286 19754 Face 14470 2511 9016 48286 Face 14471 46799 7238 7050 Face 14472 29904 39360 7239 Face 14473 32800 23676 46251 Face 14474 7238 30786 7239 Face 14475 56 44543 41008 Face 14476 33198 22566 37148 Face 14477 25218 22070 10788 Face 14478 38430 19087 7241 Face 14479 1580 26485 16297 Face 14480 8954 35273 48238 Face 14481 3373 31112 23050 Face 14482 3373 11696 22060 Face 14483 41944 20700 41900 Face 14484 37412 44801 14461 Face 14485 17575 38454 7629 Face 14486 49155 20597 7246 Face 14487 42341 7246 34376 Face 14488 38065 35892 26691 Face 14489 18192 7247 30303 Face 14490 500 16854 7247 Face 14491 38561 30391 14681 Face 14492 4930 22920 47505 Face 14493 43086 10065 42774 Face 14494 47363 28158 7249 Face 14495 41837 35810 23377 Face 14496 8855 39386 21300 Face 14497 25204 7251 16257 Face 14498 15815 9696 18320 Face 14499 416 7252 18320 Face 14500 32835 46666 7252 Face 14501 1882 35682 48019 Face 14502 23362 9550 7253 Face 14503 1337 7254 39493 Face 14504 15220 44040 26302 Face 14505 7226 38544 10039 Face 14506 22653 49081 14781 Face 14507 932 7256 28942 Face 14508 34929 48181 15634 Face 14509 34929 7257 11594 Face 14510 41143 20504 7257 Face 14511 35071 20790 3710 Face 14512 16131 44370 20792 Face 14513 531 21979 9050 Face 14514 37369 2966 38786 Face 14515 1677 13829 25044 Face 14516 28738 43859 32126 Face 14517 7260 34540 6496 Face 14518 7260 32812 7261 Face 14519 45593 7262 34123 Face 14520 20971 35454 7262 Face 14521 43235 7263 26159 Face 14522 31961 16138 16486 Face 14523 1806 31607 24482 Face 14524 1806 48062 31607 Face 14525 40374 26366 21598 Face 14526 18982 4507 7265 Face 14527 16583 42785 27855 Face 14528 10896 46275 7266 Face 14529 6082 7267 6080 Face 14530 18048 7268 13743 Face 14531 6128 7268 18048 Face 14532 6128 13037 7268 Face 14533 43493 20092 1741 Face 14534 16217 29320 44778 Face 14535 12720 18504 5886 Face 14536 29508 20057 33740 Face 14537 292 7271 40164 Face 14538 292 43852 7271 Face 14539 12621 18095 45565 Face 14540 29501 23091 7272 Face 14541 34352 15829 48056 Face 14542 7274 21206 12435 Face 14543 2351 7274 21674 Face 14544 33675 21206 7274 Face 14545 11159 26833 14866 Face 14546 19430 37011 25579 Face 14547 25684 15707 18744 Face 14548 1041 49291 15707 Face 14549 109 7277 25229 Face 14550 109 28709 7277 Face 14551 43515 46739 34231 Face 14552 35922 45473 46739 Face 14553 27818 15331 29464 Face 14554 24371 43373 7279 Face 14555 670 24371 7279 Face 14556 17619 48768 7280 Face 14557 41233 7281 12250 Face 14558 4043 17974 7281 Face 14559 2471 32186 19545 Face 14560 2471 5435 32186 Face 14561 15218 22826 47056 Face 14562 15489 15910 30185 Face 14563 27676 7284 25441 Face 14564 27676 8701 7284 Face 14565 12898 37591 31625 Face 14566 45641 25442 39756 Face 14567 43190 38543 20024 Face 14568 5107 11876 21668 Face 14569 23068 7287 40134 Face 14570 23068 42721 7287 Face 14571 844 7288 49479 Face 14572 19427 25700 35301 Face 14573 48921 7289 5325 Face 14574 16855 33105 39227 Face 14575 1462 16855 7289 Face 14576 27022 28504 19029 Face 14577 3543 7291 20162 Face 14578 3543 25644 7291 Face 14579 574 7292 12888 Face 14580 574 35855 7292 Face 14581 22302 26019 11526 Face 14582 431 27541 10646 Face 14583 12551 43616 14648 Face 14584 11319 19098 7294 Face 14585 35239 22069 24756 Face 14586 15959 44804 7295 Face 14587 4619 45383 34994 Face 14588 39572 3410 16062 Face 14589 9419 41026 21173 Face 14590 35243 32636 49067 Face 14591 3773 26281 47201 Face 14592 10500 26709 7298 Face 14593 39001 7299 23551 Face 14594 27037 43370 49796 Face 14595 5590 21608 45337 Face 14596 42237 17991 41205 Face 14597 48641 42463 10503 Face 14598 35873 4971 7301 Face 14599 49425 26192 26243 Face 14600 32106 48730 7302 Face 14601 3658 24360 44042 Face 14602 3658 47140 24360 Face 14603 30614 19384 25881 Face 14604 42470 37504 7304 Face 14605 9305 7305 18348 Face 14606 46579 7304 30614 Face 14607 36144 7306 21836 Face 14608 36144 28447 7306 Face 14609 1430 7307 29632 Face 14610 19949 2537 33129 Face 14611 46333 7308 18993 Face 14612 24918 31053 21364 Face 14613 18394 7309 8600 Face 14614 850 12955 7309 Face 14615 23170 24741 10887 Face 14616 35701 44961 29011 Face 14617 48217 7311 26289 Face 14618 48217 6098 7311 Face 14619 774 33226 19684 Face 14620 20292 31105 7312 Face 14621 22589 14735 21146 Face 14622 22589 34603 14735 Face 14623 35280 42539 4248 Face 14624 1701 15557 35022 Face 14625 40755 44272 16800 Face 14626 33 10104 44272 Face 14627 27076 7316 21293 Face 14628 39798 9445 36403 Face 14629 46353 7317 8178 Face 14630 18964 34746 19934 Face 14631 45751 24484 35783 Face 14632 49916 40942 24484 Face 14633 29151 37202 16620 Face 14634 29152 4019 7319 Face 14635 2296 43967 11048 Face 14636 2296 19324 35851 Face 14637 14069 36670 22421 Face 14638 1271 35496 23581 Face 14639 12029 7322 32091 Face 14640 44826 6404 7322 Face 14641 32907 7323 13054 Face 14642 23364 19241 17477 Face 14643 18061 31566 6065 Face 14644 23364 17477 32907 Face 14645 337 20084 4135 Face 14646 35261 15714 47993 Face 14647 15307 29455 35543 Face 14648 38572 29530 20084 Face 14649 2932 7327 23978 Face 14650 49162 21921 7327 Face 14651 1416 24663 44088 Face 14652 34904 44099 24663 Face 14653 2767 31495 46124 Face 14654 27935 29361 45547 Face 14655 7331 7330 45231 Face 14656 37982 7323 23110 Face 14657 16768 7331 35740 Face 14658 2657 47818 37982 Face 14659 34409 23094 43560 Face 14660 957 19390 33210 Face 14661 15848 7333 14007 Face 14662 36469 16065 19423 Face 14663 36494 24871 22280 Face 14664 46938 27501 24871 Face 14665 1757 28818 11522 Face 14666 12592 16394 35679 Face 14667 33692 16174 5096 Face 14668 10764 21885 36599 Face 14669 16609 7337 4627 Face 14670 16609 47829 7337 Face 14671 21941 7555 39351 Face 14672 1094 28760 15397 Face 14673 15879 25707 40365 Face 14674 36340 16710 7339 Face 14675 20243 7340 31289 Face 14676 36340 7339 7340 Face 14677 12494 7341 20934 Face 14678 16452 18318 42572 Face 14679 27464 34696 7571 Face 14680 28233 7196 31160 Face 14681 4703 7343 27374 Face 14682 4703 21962 7343 Face 14683 25224 7344 21436 Face 14684 25224 15331 18311 Face 14685 18972 38923 9233 Face 14686 2180 35288 7345 Face 14687 29106 7346 38337 Face 14688 4927 20250 33436 Face 14689 26943 10007 5593 Face 14690 2528 34359 10007 Face 14691 29859 7348 19958 Face 14692 41342 24691 47496 Face 14693 4033 7349 26116 Face 14694 4033 30475 7349 Face 14695 15818 44267 32925 Face 14696 15818 25534 20796 Face 14697 15148 7351 23809 Face 14698 7352 4560 21587 Face 14699 15148 7352 21587 Face 14700 43990 11018 7352 Face 14701 1483 7353 34724 Face 14702 43990 7352 15148 Face 14703 8153 36962 17890 Face 14704 623 5996 7354 Face 14705 41263 7355 23711 Face 14706 1738 29338 41958 Face 14707 751 42828 19017 Face 14708 36507 43934 7356 Face 14709 38125 7357 29613 Face 14710 9170 28352 13526 Face 14711 17652 7358 12295 Face 14712 40725 46737 15954 Face 14713 17465 30460 6875 Face 14714 7360 7795 32881 Face 14715 4634 7360 32880 Face 14716 4634 45555 42558 Face 14717 24862 7361 9908 Face 14718 40730 29791 7361 Face 14719 11670 7362 28185 Face 14720 11670 27955 7362 Face 14721 43625 7363 14850 Face 14722 34952 11390 7363 Face 14723 38989 7364 25292 Face 14724 30180 7363 43625 Face 14725 40336 17846 14068 Face 14726 1445 44106 17846 Face 14727 33291 9501 14943 Face 14728 11377 20732 42206 Face 14729 7624 15692 25366 Face 14730 38623 6931 7367 Face 14731 12914 38622 15692 Face 14732 38264 49942 7368 Face 14733 11392 45587 18492 Face 14734 2535 6074 33643 Face 14735 422 35996 27379 Face 14736 422 10867 35996 Face 14737 34722 17936 39704 Face 14738 15112 27182 7371 Face 14739 45314 7372 31881 Face 14740 45314 23056 7372 Face 14741 43579 26452 5616 Face 14742 20827 25894 49499 Face 14743 7375 26976 27256 Face 14744 30712 44689 20404 Face 14745 1859 7375 35574 Face 14746 30712 26976 7375 Face 14747 5655 27771 7025 Face 14748 31468 47292 27771 Face 14749 39038 7377 45677 Face 14750 39314 28907 14331 Face 14751 18772 42220 21112 Face 14752 39314 14331 39038 Face 14753 26504 7379 47466 Face 14754 15414 48171 46790 Face 14755 20599 32180 31573 Face 14756 44685 346 7380 Face 14757 39341 28186 18804 Face 14758 39341 47463 28186 Face 14759 31362 12904 18927 Face 14760 27659 37419 18793 Face 14761 31362 7383 12904 Face 14762 14690 29564 7383 Face 14763 3023 38152 48909 Face 14764 3023 18623 38152 Face 14765 29842 7385 30626 Face 14766 29842 31681 22803 Face 14767 3365 47210 40700 Face 14768 37563 4691 34887 Face 14769 23714 7387 35715 Face 14770 23714 9610 7387 Face 14771 46088 43813 32458 Face 14772 49657 9610 23714 Face 14773 22901 25825 33337 Face 14774 15238 26241 23387 Face 14775 18915 13361 41650 Face 14776 7391 11611 42179 Face 14777 7392 28025 13361 Face 14778 1486 27408 28026 Face 14779 30331 11378 18971 Face 14780 1486 28026 7392 Face 14781 29847 7393 19524 Face 14782 19502 7821 35206 Face 14783 6439 7394 42457 Face 14784 6439 28616 7394 Face 14785 2476 7395 31606 Face 14786 2476 31517 7395 Face 14787 25160 42753 15963 Face 14788 2761 29772 42753 Face 14789 40886 31152 47506 Face 14790 40886 14941 31152 Face 14791 31271 7398 40818 Face 14792 25185 15417 32169 Face 14793 42345 21860 1312 Face 14794 234 45179 41264 Face 14795 12825 49421 2363 Face 14796 19311 14355 38960 Face 14797 2856 26780 12660 Face 14798 36284 23031 36148 Face 14799 35829 7402 9827 Face 14800 13104 21231 37035 Face 14801 20712 7403 8675 Face 14802 46163 34577 7403 Face 14803 361 37888 42887 Face 14804 16608 41434 37888 Face 14805 25014 41049 14286 Face 14806 25014 36651 41049 Face 14807 5298 7406 22715 Face 14808 5298 26785 7406 Face 14809 26254 43576 46725 Face 14810 3951 16559 28421 Face 14811 31002 44149 22567 Face 14812 2323 34431 44149 Face 14813 13612 7409 19883 Face 14814 29245 12907 22521 Face 14815 16042 24383 17824 Face 14816 1877 10565 25285 Face 14817 7412 19821 27691 Face 14818 43668 44683 19821 Face 14819 11810 7412 27691 Face 14820 42583 1966 7412 Face 14821 28018 35589 37515 Face 14822 3234 35158 19653 Face 14823 1053 7414 41977 Face 14824 1053 16628 7414 Face 14825 39520 7415 23055 Face 14826 39520 16630 7415 Face 14827 30506 48398 25701 Face 14828 21368 32291 48398 Face 14829 49276 7418 6554 Face 14830 31733 24574 7418 Face 14831 7417 7418 24574 Face 14832 7417 24364 7418 Face 14833 49604 26359 5521 Face 14834 2650 23583 29601 Face 14835 40148 22343 21878 Face 14836 17609 32781 7420 Face 14837 1651 35343 21890 Face 14838 1651 19579 7421 Face 14839 25289 48706 9384 Face 14840 74 42463 48641 Face 14841 20432 33356 5528 Face 14842 46007 7563 26134 Face 14843 18261 40605 5754 Face 14844 3672 34691 7424 Face 14845 13620 7425 17998 Face 14846 41078 4737 7425 Face 14847 1574 7426 18468 Face 14848 19793 6462 18086 Face 14849 21575 34885 15810 Face 14850 27993 22804 7427 Face 14851 21575 38281 7427 Face 14852 39965 11974 27993 Face 14853 3360 21576 11684 Face 14854 3360 38281 21576 Face 14855 30324 12215 16934 Face 14856 19348 10952 7431 Face 14857 27956 7431 19831 Face 14858 7430 8825 43340 Face 14859 9051 45579 16729 Face 14860 7430 43340 40807 Face 14861 3891 44526 15848 Face 14862 3891 17232 44526 Face 14863 4297 43620 37392 Face 14864 4297 32809 43620 Face 14865 18950 28909 4099 Face 14866 18950 33394 7435 Face 14867 10553 31308 21096 Face 14868 35957 17026 7436 Face 14869 21078 16008 45944 Face 14870 413 2299 24314 Face 14871 413 7438 11821 Face 14872 21078 13184 7438 Face 14873 17690 26566 29485 Face 14874 15957 33849 22113 Face 14875 7441 32128 37142 Face 14876 18720 17312 7440 Face 14877 18720 7441 24936 Face 14878 18720 32128 7441 Face 14879 4621 7442 46858 Face 14880 4621 39122 7442 Face 14881 5570 47649 29757 Face 14882 5570 16264 7443 Face 14883 23595 43720 19361 Face 14884 1070 6005 41115 Face 14885 40717 35595 25249 Face 14886 19209 11069 7445 Face 14887 37893 42416 30829 Face 14888 37893 27571 7446 Face 14889 13265 7447 34045 Face 14890 13265 42767 7447 Face 14891 32293 21897 35457 Face 14892 41447 30223 7448 Face 14893 35036 27716 48987 Face 14894 9477 2880 7449 Face 14895 49794 7450 49998 Face 14896 24920 45646 20978 Face 14897 17509 34009 8033 Face 14898 24920 7450 49794 Face 14899 47324 35841 1665 Face 14900 530 37489 35841 Face 14901 49516 42340 6645 Face 14902 24697 17156 33730 Face 14903 2178 22675 16635 Face 14904 15177 5615 23787 Face 14905 30285 42701 2178 Face 14906 17900 33332 11130 Face 14907 38903 43359 15512 Face 14908 38902 46365 47443 Face 14909 48663 7457 44874 Face 14910 48663 20338 7457 Face 14911 587 7458 9861 Face 14912 587 22908 7458 Face 14913 11699 7459 19520 Face 14914 35352 43063 7459 Face 14915 1050 7460 5173 Face 14916 39109 6376 36954 Face 14917 26453 39109 36954 Face 14918 49209 24603 41367 Face 14919 44214 27200 11236 Face 14920 22821 14704 7462 Face 14921 2415 45548 38154 Face 14922 2415 35016 45548 Face 14923 41550 7464 29945 Face 14924 41551 2019 26021 Face 14925 38745 7465 29343 Face 14926 5811 17445 39642 Face 14927 1844 7466 37869 Face 14928 1844 22737 34798 Face 14929 33461 7467 5445 Face 14930 39424 17450 40416 Face 14931 19723 20146 44153 Face 14932 41512 3294 12515 Face 14933 20146 30088 44153 Face 14934 24445 26360 12928 Face 14935 16006 41834 29333 Face 14936 24916 48974 8964 Face 14937 4012 48191 11068 Face 14938 4012 35327 48191 Face 14939 7015 38159 20054 Face 14940 7015 11351 38159 Face 14941 38658 7473 4988 Face 14942 31092 43501 7473 Face 14943 35797 40150 10726 Face 14944 37703 15797 23667 Face 14945 28578 34943 3758 Face 14946 28577 23287 44783 Face 14947 38322 7476 45988 Face 14948 38322 23241 7476 Face 14949 49097 7477 30400 Face 14950 36742 14598 40145 Face 14951 22032 7478 41021 Face 14952 31061 10699 34286 Face 14953 5031 7479 5029 Face 14954 5031 12982 17259 Face 14955 22918 7480 19144 Face 14956 22918 44340 7480 Face 14957 25245 16588 13130 Face 14958 23268 27814 7481 Face 14959 36639 7482 16232 Face 14960 44924 40145 14598 Face 14961 2896 27274 12754 Face 14962 20422 28430 7483 Face 14963 3804 7484 9203 Face 14964 3804 23219 34398 Face 14965 904 47591 4027 Face 14966 48230 19509 14510 Face 14967 391 32586 39354 Face 14968 48144 22235 41179 Face 14969 39626 17919 34561 Face 14970 7709 5641 40492 Face 14971 14985 33669 26193 Face 14972 806 4951 12288 Face 14973 1011 32157 21300 Face 14974 23566 15846 7489 Face 14975 34369 7490 34383 Face 14976 42665 14340 7490 Face 14977 34677 11164 22136 Face 14978 34677 18333 7491 Face 14979 16557 35738 43484 Face 14980 2474 18333 34677 Face 14981 117 33467 4391 Face 14982 39938 20448 25652 Face 14983 26210 37828 48474 Face 14984 33095 47974 37829 Face 14985 7838 35917 27590 Face 14986 23638 21407 38769 Face 14987 46834 7496 18829 Face 14988 18641 34605 7496 Face 14989 11172 23456 49093 Face 14990 3892 16117 23456 Face 14991 2157 7498 21007 Face 14992 33952 20800 7498 Face 14993 45255 40707 4018 Face 14994 36754 3203 42920 Face 14995 19229 7500 30539 Face 14996 5545 22188 39525 Face 14997 9971 7501 35105 Face 14998 36935 20999 34052 Face 14999 45861 7502 12844 Face 15000 43736 35354 7502 Face 15001 46524 40162 1625 Face 15002 37851 13174 49252 Face 15003 47989 7504 30525 Face 15004 47988 34550 7504 Face 15005 7504 26345 36994 Face 15006 46992 18633 26345 Face 15007 22255 27599 38269 Face 15008 13718 42114 7506 Face 15009 42431 22614 19288 Face 15010 42431 46859 22614 Face 15011 23351 7508 41103 Face 15012 23351 41999 7508 Face 15013 39312 20634 26507 Face 15014 4742 26699 7509 Face 15015 194 7510 19048 Face 15016 48965 6906 7510 Face 15017 23753 7511 8986 Face 15018 1122 5053 7511 Face 15019 955 28863 49759 Face 15020 23158 29457 7512 Face 15021 15447 7513 15656 Face 15022 4055 17215 26807 Face 15023 27115 7514 1058 Face 15024 1055 22698 7514 Face 15025 759 21886 30051 Face 15026 759 21737 21886 Face 15027 46798 7516 33410 Face 15028 3213 49437 35290 Face 15029 33422 7517 29595 Face 15030 33422 26247 42604 Face 15031 9077 16353 28134 Face 15032 41569 25728 22223 Face 15033 20492 7519 8848 Face 15034 23554 42717 7519 Face 15035 5425 41499 28536 Face 15036 10593 17286 7520 Face 15037 30576 7521 22218 Face 15038 27608 6916 34530 Face 15039 31799 18209 43409 Face 15040 9943 39736 24996 Face 15041 47077 7523 36799 Face 15042 47077 35077 7523 Face 15043 13274 15615 22798 Face 15044 22925 8683 15615 Face 15045 39730 28961 6877 Face 15046 41647 30725 7525 Face 15047 2251 46399 21063 Face 15048 24046 11621 28795 Face 15049 1471 7527 7529 Face 15050 1471 6898 7527 Face 15051 18330 12879 5562 Face 15052 27136 538 27295 Face 15053 17993 7529 7527 Face 15054 34176 12879 18330 Face 15055 10938 18894 25836 Face 15056 17237 9453 48252 Face 15057 37660 7531 22917 Face 15058 2634 37106 7531 Face 15059 12780 28783 3768 Face 15060 31547 44180 7532 Face 15061 6792 18001 31060 Face 15062 43115 30176 7534 Face 15063 41562 7534 30176 Face 15064 7533 22297 44182 Face 15065 12145 29679 39626 Face 15066 47238 24673 20356 Face 15067 21878 36330 28607 Face 15068 30191 12776 47850 Face 15069 2633 25634 46289 Face 15070 37778 29665 42517 Face 15071 40306 21443 3260 Face 15072 35294 28194 21442 Face 15073 3387 43282 17720 Face 15074 30956 48246 43280 Face 15075 15798 14616 19877 Face 15076 2222 17936 7540 Face 15077 2779 24185 4894 Face 15078 29392 9886 24185 Face 15079 5811 12485 24891 Face 15080 38745 22179 12485 Face 15081 27491 7543 49515 Face 15082 1323 2394 27055 Face 15083 17393 14324 11080 Face 15084 388 35405 14324 Face 15085 34314 32160 1245 Face 15086 48985 28377 7545 Face 15087 12026 7546 2342 Face 15088 21180 5347 7546 Face 15089 44906 7547 46670 Face 15090 36823 4655 13625 Face 15091 18283 7548 31008 Face 15092 18283 10081 7548 Face 15093 2153 40375 42963 Face 15094 18982 26366 40375 Face 15095 31195 7550 48593 Face 15096 44872 13987 7550 Face 15097 1922 36407 45857 Face 15098 20428 12054 7551 Face 15099 1765 42769 48537 Face 15100 41960 22203 7552 Face 15101 31011 7553 42307 Face 15102 27420 42033 7553 Face 15103 40063 7554 5078 Face 15104 13621 23431 7554 Face 15105 7338 7555 21941 Face 15106 7338 21132 7555 Face 15107 38382 48773 36596 Face 15108 23792 30639 13766 Face 15109 607 38382 40371 Face 15110 607 45972 38382 Face 15111 3695 45061 10688 Face 15112 3695 18432 32411 Face 15113 37378 26356 9404 Face 15114 46383 20576 35923 Face 15115 2201 27302 44360 Face 15116 25072 40795 46210 Face 15117 3082 7561 36256 Face 15118 10994 46690 24664 Face 15119 17637 45060 19846 Face 15120 48170 10287 49669 Face 15121 19986 7563 46007 Face 15122 19985 6163 7563 Face 15123 3007 36243 8619 Face 15124 7565 39622 27171 Face 15125 3007 45173 36243 Face 15126 39269 978 31855 Face 15127 2547 7566 41611 Face 15128 2547 21627 7566 Face 15129 15113 24883 18413 Face 15130 15113 25676 24883 Face 15131 32196 46329 13420 Face 15132 31091 35046 46330 Face 15133 1366 7569 21211 Face 15134 1366 6986 7569 Face 15135 23887 32684 30439 Face 15136 33144 24012 7570 Face 15137 1641 27547 6361 Face 15138 1641 19559 27547 Face 15139 28720 38698 11945 Face 15140 12143 42839 7573 Face 15141 25046 7573 18901 Face 15142 38698 12143 7573 Face 15143 47372 40315 31155 Face 15144 712 34646 40315 Face 15145 28437 35183 13124 Face 15146 44308 9727 7575 Face 15147 18605 7576 34033 Face 15148 2758 6141 19394 Face 15149 1147 24989 16334 Face 15150 34608 4822 22011 Face 15151 747 35180 3504 Face 15152 43827 41718 7578 Face 15153 3912 44606 22033 Face 15154 3912 40544 48083 Face 15155 314 7580 16256 Face 15156 26578 47115 39781 Face 15157 1731 20304 33878 Face 15158 1731 5800 7581 Face 15159 31744 7582 12877 Face 15160 8032 5910 39209 Face 15161 18080 7583 36353 Face 15162 40352 6669 7583 Face 15163 38363 7584 16391 Face 15164 1847 33686 7584 Face 15165 15737 10849 4208 Face 15166 3499 21808 7585 Face 15167 42803 23941 13339 Face 15168 650 47160 7586 Face 15169 16884 41336 4690 Face 15170 37579 19367 7587 Face 15171 2960 27551 6063 Face 15172 2960 25793 39074 Face 15173 13748 7589 11912 Face 15174 43413 31175 33006 Face 15175 14762 21922 6038 Face 15176 25626 31988 7590 Face 15177 14492 37744 1842 Face 15178 49184 4300 7591 Face 15179 38709 48983 6755 Face 15180 23175 41750 7592 Face 15181 35643 12388 45432 Face 15182 1000 5722 23604 Face 15183 29786 18582 16900 Face 15184 29431 48572 7594 Face 15185 1957 7595 49028 Face 15186 1957 27794 42367 Face 15187 23819 37620 39566 Face 15188 15191 10191 23881 Face 15189 34552 7597 23881 Face 15190 12071 1947 42878 Face 15191 48919 19737 11989 Face 15192 25945 4065 36408 Face 15193 23431 34240 7554 Face 15194 22455 41211 29015 Face 15195 10892 16478 28405 Face 15196 25916 22105 30153 Face 15197 27146 7601 39951 Face 15198 47714 21032 7601 Face 15199 12240 47436 9832 Face 15200 12240 22522 40091 Face 15201 16987 7603 47443 Face 15202 18496 28412 14115 Face 15203 39635 7604 15684 Face 15204 13959 24112 7604 Face 15205 47039 7605 16284 Face 15206 16194 9184 7605 Face 15207 14823 20750 46351 Face 15208 46447 39646 41757 Face 15209 33848 26362 29993 Face 15210 4985 26546 26362 Face 15211 40235 43255 7873 Face 15212 28786 38797 7608 Face 15213 14369 7609 20965 Face 15214 21347 42486 7609 Face 15215 1252 21347 7609 Face 15216 17498 2382 32429 Face 15217 1449 7611 35956 Face 15218 9550 43241 41407 Face 15219 16646 30904 46432 Face 15220 17902 41867 35857 Face 15221 24398 7613 2028 Face 15222 2005 29870 7613 Face 15223 28947 7614 21990 Face 15224 28947 25600 7614 Face 15225 30334 45571 26684 Face 15226 15630 37251 27232 Face 15227 10900 12593 42427 Face 15228 33304 47095 20731 Face 15229 1598 29713 16215 Face 15230 1598 6141 18761 Face 15231 40638 7618 14110 Face 15232 32738 342 13368 Face 15233 7620 19566 11533 Face 15234 12922 19768 7619 Face 15235 16610 7620 37415 Face 15236 28689 7619 7620 Face 15237 28559 17406 42283 Face 15238 1386 23372 41784 Face 15239 45059 7622 18600 Face 15240 45059 44424 7622 Face 15241 4779 19706 31188 Face 15242 12965 13616 17977 Face 15243 41022 7624 17436 Face 15244 41022 15692 7624 Face 15245 25215 15891 8232 Face 15246 40259 2777 7625 Face 15247 24860 7626 44101 Face 15248 24860 40125 7626 Face 15249 33671 7627 10621 Face 15250 33671 25970 7627 Face 15251 2824 35300 7010 Face 15252 14649 43919 7628 Face 15253 39346 7629 32920 Face 15254 39346 17575 7629 Face 15255 49679 14591 4283 Face 15256 6854 19291 7630 Face 15257 8383 7631 2142 Face 15258 27655 18650 32864 Face 15259 17777 7632 23760 Face 15260 17777 1749 47539 Face 15261 34385 15678 28561 Face 15262 39603 31672 15678 Face 15263 35488 7634 2341 Face 15264 39603 15678 34385 Face 15265 33524 7635 14554 Face 15266 33524 23029 7635 Face 15267 24301 7636 11939 Face 15268 4039 35921 16740 Face 15269 16559 7637 49702 Face 15270 919 30777 47232 Face 15271 29282 7638 49888 Face 15272 29282 35698 42923 Face 15273 8262 24932 43758 Face 15274 48915 19122 7639 Face 15275 5469 7640 30362 Face 15276 30563 26643 40095 Face 15277 1320 37294 19595 Face 15278 40863 6892 48051 Face 15279 36971 7642 479 Face 15280 30783 17606 38414 Face 15281 24594 7643 7941 Face 15282 1396 27310 7643 Face 15283 629 7644 19068 Face 15284 13475 18122 7644 Face 15285 30786 29904 7239 Face 15286 44946 34736 16641 Face 15287 30872 7646 11467 Face 15288 30872 47203 7646 Face 15289 38251 19477 11257 Face 15290 33697 38116 36712 Face 15291 24754 14092 48022 Face 15292 827 25815 14092 Face 15293 1255 30243 10973 Face 15294 1255 40313 30244 Face 15295 25960 45774 35169 Face 15296 2268 15060 7650 Face 15297 23273 17119 25645 Face 15298 23273 16064 17119 Face 15299 43586 7652 13909 Face 15300 1152 49227 30581 Face 15301 26967 41388 44942 Face 15302 26967 8738 41388 Face 15303 906 19603 33359 Face 15304 25766 31322 30792 Face 15305 31820 34471 16927 Face 15306 2718 1392 44934 Face 15307 25297 7656 27371 Face 15308 25297 15558 7656 Face 15309 16184 46311 28758 Face 15310 16184 35695 46312 Face 15311 7660 26672 21565 Face 15312 29368 9512 38068 Face 15313 39771 41210 37862 Face 15314 24845 26672 7660 Face 15315 7659 7660 36433 Face 15316 7659 24845 7660 Face 15317 16403 7661 40520 Face 15318 25015 13092 45308 Face 15319 1915 7662 7056 Face 15320 32340 27593 21064 Face 15321 29529 7663 46093 Face 15322 29529 38587 7663 Face 15323 23643 12767 38514 Face 15324 524 42303 7664 Face 15325 433 7665 30717 Face 15326 433 34517 7665 Face 15327 46981 37652 4433 Face 15328 35014 15784 7666 Face 15329 26689 38545 14978 Face 15330 11031 18031 38545 Face 15331 48251 22284 35613 Face 15332 38788 21825 23197 Face 15333 25403 7669 21009 Face 15334 25403 14947 32893 Face 15335 47348 7670 37548 Face 15336 30198 20600 27932 Face 15337 26329 7671 41307 Face 15338 26328 13643 7671 Face 15339 26519 17030 83 Face 15340 26519 46010 17030 Face 15341 28376 39721 36737 Face 15342 25144 47146 37840 Face 15343 8932 7674 33890 Face 15344 15256 18660 7674 Face 15345 1140 21013 30166 Face 15346 1140 29606 21013 Face 15347 698 40151 15311 Face 15348 42041 49563 30000 Face 15349 29851 7677 4387 Face 15350 29522 38449 23360 Face 15351 1253 7678 2695 Face 15352 12072 11847 29522 Face 15353 23553 29494 4764 Face 15354 387 15857 34303 Face 15355 3728 18577 41613 Face 15356 32804 12318 7680 Face 15357 3692 32639 37150 Face 15358 19146 35412 7681 Face 15359 12768 7682 2143 Face 15360 7049 14745 7682 Face 15361 17944 28337 14215 Face 15362 2348 48731 7683 Face 15363 43128 7684 32382 Face 15364 15074 1279 7684 Face 15365 47817 7685 32617 Face 15366 47817 17579 7685 Face 15367 10105 46775 28462 Face 15368 10105 27248 7686 Face 15369 40165 31407 40538 Face 15370 2009 36779 7687 Face 15371 40946 31793 22415 Face 15372 40946 22231 31793 Face 15373 1994 7689 37936 Face 15374 1994 9582 7689 Face 15375 26657 7690 47157 Face 15376 6582 16269 38703 Face 15377 34987 18591 37059 Face 15378 36876 4247 27084 Face 15379 34987 40034 18591 Face 15380 34987 22928 7692 Face 15381 14295 7693 4656 Face 15382 18489 6764 15315 Face 15383 18489 23501 6374 Face 15384 3178 26815 7694 Face 15385 25268 45306 48350 Face 15386 4386 22110 37233 Face 15387 18437 25228 49633 Face 15388 24614 8844 7696 Face 15389 1489 7697 19267 Face 15390 9322 4022 7697 Face 15391 2566 24831 45233 Face 15392 2566 26246 24831 Face 15393 32404 7699 35401 Face 15394 32417 21497 16188 Face 15395 3812 7700 36218 Face 15396 3812 34280 18176 Face 15397 39433 46152 44030 Face 15398 29960 699 25209 Face 15399 2093 39433 30207 Face 15400 40923 29082 7702 Face 15401 1892 46389 35470 Face 15402 40563 17491 7703 Face 15403 35631 45630 13991 Face 15404 31774 23302 30648 Face 15405 35219 30350 11360 Face 15406 32353 22933 23531 Face 15407 20608 7706 18109 Face 15408 21153 3920 7706 Face 15409 46064 45640 3756 Face 15410 12906 28509 15889 Face 15411 37973 7708 47287 Face 15412 37973 20678 7708 Face 15413 15207 16094 41976 Face 15414 49405 5641 7709 Face 15415 27902 7710 33779 Face 15416 27902 27746 7710 Face 15417 8783 29478 46415 Face 15418 38308 14400 35694 Face 15419 22635 39369 12118 Face 15420 28667 4121 22948 Face 15421 2073 7713 16189 Face 15422 25563 15399 8630 Face 15423 13208 7714 16319 Face 15424 24772 23142 7714 Face 15425 21991 7715 10888 Face 15426 7716 47016 15732 Face 15427 28719 7716 7715 Face 15428 24957 7973 20788 Face 15429 15791 7717 22561 Face 15430 819 20788 26717 Face 15431 31425 7718 33072 Face 15432 20396 35005 7718 Face 15433 36343 24944 23125 Face 15434 48976 5726 37533 Face 15435 1727 33421 29819 Face 15436 1727 26522 7720 Face 15437 14798 28630 38824 Face 15438 1616 24660 7721 Face 15439 29207 12974 10673 Face 15440 4449 21454 7722 Face 15441 37528 7723 41638 Face 15442 49372 29455 17130 Face 15443 45094 32211 37701 Face 15444 45094 28422 32211 Face 15445 3390 20203 47552 Face 15446 15161 11609 7725 Face 15447 49451 7726 42281 Face 15448 32585 21448 16662 Face 15449 31701 26968 26912 Face 15450 16149 37672 26968 Face 15451 766 44982 36612 Face 15452 48260 23979 44982 Face 15453 5813 7729 44654 Face 15454 5813 25152 7729 Face 15455 29488 24261 41600 Face 15456 11432 49173 16424 Face 15457 5081 39440 19689 Face 15458 16362 31086 38247 Face 15459 30579 26032 21262 Face 15460 38111 4874 7732 Face 15461 4110 36109 6088 Face 15462 20858 35490 34931 Face 15463 38132 36526 5963 Face 15464 14887 21107 35173 Face 15465 31079 32539 42221 Face 15466 22651 5745 44735 Face 15467 16773 43833 23046 Face 15468 16773 36312 23619 Face 15469 537 22487 42438 Face 15470 29670 4935 49607 Face 15471 27180 36762 24035 Face 15472 14133 25193 7738 Face 15473 28727 20594 38166 Face 15474 4702 3699 15385 Face 15475 352 46712 7097 Face 15476 352 21818 46712 Face 15477 9268 25493 38611 Face 15478 41701 27813 7741 Face 15479 1181 7742 43070 Face 15480 30210 15640 7742 Face 15481 30210 7743 13929 Face 15482 35435 22541 7743 Face 15483 19515 40438 32463 Face 15484 29486 6679 7744 Face 15485 2338 7745 24099 Face 15486 29486 40438 19515 Face 15487 35075 28046 18039 Face 15488 41491 31302 7746 Face 15489 41986 23279 20926 Face 15490 26695 30392 47037 Face 15491 48433 38532 19897 Face 15492 30942 43968 13756 Face 15493 11642 30863 15915 Face 15494 38239 23260 7749 Face 15495 38971 7750 48402 Face 15496 2196 40654 17167 Face 15497 25689 7751 45541 Face 15498 41261 22733 33887 Face 15499 742 7752 6419 Face 15500 742 13970 7752 Face 15501 28099 7753 36760 Face 15502 36031 6664 17071 Face 15503 22873 25105 14048 Face 15504 19183 13717 49083 Face 15505 2436 7755 49083 Face 15506 47143 35633 7755 Face 15507 2436 7756 29342 Face 15508 2436 23207 7756 Face 15509 18049 7757 1468 Face 15510 36119 43222 28661 Face 15511 46409 37518 42023 Face 15512 41877 16280 37518 Face 15513 27811 14233 34742 Face 15514 11124 38595 33019 Face 15515 3796 20196 22618 Face 15516 3796 30373 20196 Face 15517 2645 7761 29352 Face 15518 2645 15587 7761 Face 15519 32619 7762 48099 Face 15520 32619 22038 7762 Face 15521 123 11938 18799 Face 15522 41657 36937 7763 Face 15523 37297 20568 13738 Face 15524 44130 5470 23658 Face 15525 33107 7765 12563 Face 15526 26549 15716 7765 Face 15527 43893 7766 32248 Face 15528 33083 16741 7766 Face 15529 12715 7767 35591 Face 15530 21212 13804 43541 Face 15531 31284 25990 4881 Face 15532 45160 31858 25990 Face 15533 19522 37597 31781 Face 15534 36294 37532 32051 Face 15535 9293 38965 24148 Face 15536 25 23961 48955 Face 15537 2699 24770 47264 Face 15538 2699 24496 7771 Face 15539 30701 7772 21429 Face 15540 7773 4815 13851 Face 15541 44519 7773 41579 Face 15542 42403 42012 49635 Face 15543 3136 7774 15766 Face 15544 3136 27923 7774 Face 15545 27410 40064 22224 Face 15546 3581 22529 40064 Face 15547 30319 7776 33140 Face 15548 23562 15546 27165 Face 15549 12352 39193 43839 Face 15550 31073 5261 39193 Face 15551 24513 43591 6949 Face 15552 14981 25612 38765 Face 15553 45218 7779 2897 Face 15554 35663 9090 39772 Face 15555 1986 35663 39773 Face 15556 26946 333 37526 Face 15557 27335 7781 13164 Face 15558 37702 27694 7781 Face 15559 24790 7782 44457 Face 15560 40187 526 20877 Face 15561 47575 19209 14370 Face 15562 48709 11069 19209 Face 15563 8757 7784 14619 Face 15564 20743 22727 34841 Face 15565 45006 7785 24833 Face 15566 45006 47979 20981 Face 15567 15229 42007 4784 Face 15568 15229 38665 7786 Face 15569 25620 14597 36067 Face 15570 25620 5295 14597 Face 15571 30065 24041 19799 Face 15572 1422 10719 33483 Face 15573 36468 29386 38168 Face 15574 10892 13453 32468 Face 15575 21662 28851 6724 Face 15576 35397 21940 7790 Face 15577 1599 7791 26910 Face 15578 1599 25604 47128 Face 15579 11362 29696 31618 Face 15580 49181 3270 7792 Face 15581 21940 25745 27499 Face 15582 39643 23007 7793 Face 15583 39120 47508 17869 Face 15584 1043 46695 47508 Face 15585 24720 7795 42550 Face 15586 39120 17869 7795 Face 15587 23617 7796 5919 Face 15588 9394 34973 25344 Face 15589 30084 39551 4635 Face 15590 28322 7682 7797 Face 15591 2227 35414 37302 Face 15592 7799 32446 45054 Face 15593 2227 7799 35415 Face 15594 31873 27383 7799 Face 15595 12076 45717 41846 Face 15596 3270 40835 16407 Face 15597 10792 45057 33201 Face 15598 31127 41788 45057 Face 15599 16761 7802 25355 Face 15600 16761 44929 7802 Face 15601 46228 7803 42479 Face 15602 10434 26658 7803 Face 15603 39735 43061 4628 Face 15604 1689 42381 45444 Face 15605 29517 28277 17613 Face 15606 29517 45902 28277 Face 15607 14479 44421 26370 Face 15608 29388 3814 33914 Face 15609 25021 7807 14847 Face 15610 49836 9083 18404 Face 15611 31847 41635 9729 Face 15612 38556 5830 24029 Face 15613 28611 22658 16069 Face 15614 19885 37573 7809 Face 15615 17795 26307 46517 Face 15616 39620 26395 43644 Face 15617 7812 7811 46058 Face 15618 39868 24918 7811 Face 15619 3444 27737 43636 Face 15620 39868 7811 7812 Face 15621 30280 40611 17595 Face 15622 46631 7502 18028 Face 15623 36608 7814 22439 Face 15624 22958 41080 16782 Face 15625 3921 12672 28503 Face 15626 32728 21775 47654 Face 15627 1044 7816 13167 Face 15628 18844 29647 24221 Face 15629 47877 45267 28658 Face 15630 17251 2849 7817 Face 15631 17641 28736 46183 Face 15632 2 12085 7818 Face 15633 10359 7819 5491 Face 15634 31739 9963 18823 Face 15635 42348 23022 29042 Face 15636 37379 5834 18883 Face 15637 44282 7821 19502 Face 15638 44282 12948 7821 Face 15639 2808 22385 48355 Face 15640 2808 36029 49847 Face 15641 41162 23125 15440 Face 15642 47027 19788 7823 Face 15643 16430 21969 662 Face 15644 38894 25587 17074 Face 15645 2004 7825 7824 Face 15646 2004 36679 7825 Face 15647 2486 7826 44465 Face 15648 2486 29179 7826 Face 15649 2361 22001 24103 Face 15650 2361 22546 22001 Face 15651 24260 7828 48707 Face 15652 21717 39767 7828 Face 15653 10169 7829 40215 Face 15654 20633 21726 7829 Face 15655 20633 7830 46949 Face 15656 3336 23708 7830 Face 15657 46139 42125 25741 Face 15658 43295 43466 7831 Face 15659 30840 7832 34498 Face 15660 6091 37933 49243 Face 15661 45669 7833 18087 Face 15662 2330 20670 31704 Face 15663 4478 7834 28950 Face 15664 4478 24775 7834 Face 15665 10837 36447 32629 Face 15666 4006 14351 30906 Face 15667 18554 7836 28045 Face 15668 27461 30333 7836 Face 15669 29384 33907 20865 Face 15670 49561 42128 33907 Face 15671 4768 7838 27590 Face 15672 16013 36279 38214 Face 15673 1332 40557 22422 Face 15674 42165 8369 40557 Face 15675 48910 19533 35700 Face 15676 4205 44376 27914 Face 15677 836 40668 46200 Face 15678 836 32576 40668 Face 15679 3725 20940 35284 Face 15680 12180 5901 22943 Face 15681 8810 35222 9924 Face 15682 29700 42093 7843 Face 15683 9601 7844 37534 Face 15684 14942 3013 7844 Face 15685 546 36793 27675 Face 15686 26861 16237 41123 Face 15687 35146 7846 18884 Face 15688 35146 41436 7846 Face 15689 48696 7847 5315 Face 15690 48696 29211 7847 Face 15691 4171 7848 46937 Face 15692 38950 30386 7848 Face 15693 2911 34957 48210 Face 15694 2911 12985 34957 Face 15695 34958 7850 17985 Face 15696 34958 14905 45360 Face 15697 23831 48925 35649 Face 15698 23831 44441 35802 Face 15699 38103 21416 18371 Face 15700 10520 18665 37812 Face 15701 38925 14606 239 Face 15702 3383 18921 7853 Face 15703 1223 29946 32231 Face 15704 12125 30668 39481 Face 15705 295 35766 40322 Face 15706 46847 35387 7855 Face 15707 25377 38185 8225 Face 15708 48199 1536 7856 Face 15709 35281 7858 38185 Face 15710 29071 33678 7858 Face 15711 7857 7858 46039 Face 15712 48199 7856 38120 Face 15713 40728 41505 6494 Face 15714 10730 37690 7859 Face 15715 24163 7860 34348 Face 15716 33965 21955 13688 Face 15717 27088 45975 36821 Face 15718 2774 31556 7861 Face 15719 42670 26846 23467 Face 15720 16733 49615 10768 Face 15721 7862 44737 49170 Face 15722 28068 21022 7863 Face 15723 38228 42464 34865 Face 15724 1173 30733 10899 Face 15725 19401 38609 3984 Face 15726 9631 19019 35275 Face 15727 25423 7866 33977 Face 15728 22205 46642 28609 Face 15729 14135 7867 24543 Face 15730 25659 6606 7867 Face 15731 1009 7868 30024 Face 15732 27814 11843 43333 Face 15733 41184 25958 17352 Face 15734 41184 46159 7869 Face 15735 22451 38111 7732 Face 15736 18218 14085 7870 Face 15737 41316 27979 37743 Face 15738 40 44295 7871 Face 15739 19578 23738 5564 Face 15740 19577 42762 33475 Face 15741 36453 29027 16346 Face 15742 36453 29202 7873 Face 15743 38076 7874 43581 Face 15744 3741 2991 42123 Face 15745 35210 7875 38975 Face 15746 35210 22774 7875 Face 15747 10018 45243 34227 Face 15748 34611 14167 42331 Face 15749 2303 7877 20183 Face 15750 38860 30651 7877 Face 15751 28219 45804 10120 Face 15752 25940 37031 7878 Face 15753 18389 7879 7449 Face 15754 47110 4028 23354 Face 15755 13080 38707 27151 Face 15756 47614 17893 7880 Face 15757 2919 45029 26175 Face 15758 40938 11667 45029 Face 15759 43479 28202 14086 Face 15760 43479 48326 22097 Face 15761 317 7883 11021 Face 15762 11408 35893 7883 Face 15763 31261 7884 14221 Face 15764 6656 6657 7884 Face 15765 29414 34901 25961 Face 15766 2839 11038 7885 Face 15767 39746 7886 41308 Face 15768 45100 4166 22676 Face 15769 31888 7887 7153 Face 15770 2058 20328 7887 Face 15771 47071 7888 30987 Face 15772 47071 38605 33824 Face 15773 22960 31906 30419 Face 15774 3998 26349 31906 Face 15775 45210 7890 32733 Face 15776 45210 27273 7890 Face 15777 23923 40228 39189 Face 15778 25133 6930 13506 Face 15779 2618 34181 31919 Face 15780 26506 29273 34181 Face 15781 34241 23018 14489 Face 15782 49143 14278 7893 Face 15783 39231 34148 1302 Face 15784 15368 19010 18108 Face 15785 48232 44363 6542 Face 15786 2473 7894 7895 Face 15787 28305 7896 12156 Face 15788 7532 44180 7896 Face 15789 3195 7897 18784 Face 15790 12142 36567 36545 Face 15791 24367 17961 11013 Face 15792 37640 19129 20638 Face 15793 33943 49573 26722 Face 15794 22248 35306 49573 Face 15795 27158 19419 18146 Face 15796 27158 26722 7900 Face 15797 25111 48747 31928 Face 15798 15973 32767 15674 Face 15799 25111 7902 48747 Face 15800 30096 858 44866 Face 15801 39272 33919 20605 Face 15802 22840 3954 37149 Face 15803 1219 26821 28123 Face 15804 48174 13505 26821 Face 15805 25332 18101 40090 Face 15806 4847 25090 7905 Face 15807 21218 7906 18750 Face 15808 47179 28703 7906 Face 15809 42103 7907 3204 Face 15810 21569 10176 40636 Face 15811 29356 38610 49651 Face 15812 24223 2672 7908 Face 15813 16267 7909 30430 Face 15814 9944 31512 39609 Face 15815 27437 48431 35149 Face 15816 6382 30337 29741 Face 15817 49904 7911 38868 Face 15818 46811 6609 34551 Face 15819 26020 21291 29337 Face 15820 1722 36631 7912 Face 15821 20856 38173 46150 Face 15822 3682 2584 32571 Face 15823 29429 31052 19040 Face 15824 6705 8740 7914 Face 15825 45814 31449 6888 Face 15826 19211 41380 7915 Face 15827 1037 25630 33533 Face 15828 1037 43426 16278 Face 15829 5364 41004 19121 Face 15830 5364 36929 41004 Face 15831 37723 13062 20239 Face 15832 15721 11715 48781 Face 15833 27387 19052 8056 Face 15834 2648 35296 7919 Face 15835 11024 49151 31753 Face 15836 7922 18982 13832 Face 15837 7922 38719 19463 Face 15838 318 45119 28534 Face 15839 31387 7922 13832 Face 15840 31387 7921 7922 Face 15841 42891 7923 17220 Face 15842 38868 7911 33685 Face 15843 31320 7924 45811 Face 15844 31320 30432 7924 Face 15845 25999 7925 5495 Face 15846 11980 24051 36277 Face 15847 45993 7926 9412 Face 15848 45993 43304 7926 Face 15849 31528 7927 13203 Face 15850 44700 16547 35214 Face 15851 23573 25734 3127 Face 15852 1688 13098 45143 Face 15853 7930 33636 43683 Face 15854 22662 28712 32001 Face 15855 38941 7930 17439 Face 15856 484 28940 22662 Face 15857 47750 24267 18959 Face 15858 34140 23395 7931 Face 15859 9130 19963 40786 Face 15860 21382 47119 19963 Face 15861 598 7933 21346 Face 15862 39759 46086 7933 Face 15863 39759 7934 46086 Face 15864 49099 4015 7934 Face 15865 43269 20610 20237 Face 15866 10556 26455 17057 Face 15867 36130 7936 13194 Face 15868 35632 6938 7936 Face 15869 476 7937 9730 Face 15870 476 28361 16787 Face 15871 6496 42995 35582 Face 15872 6496 34540 48463 Face 15873 22808 16421 33159 Face 15874 43897 3584 47367 Face 15875 43253 7940 25843 Face 15876 1794 20132 7940 Face 15877 19417 7941 7643 Face 15878 13694 23820 7941 Face 15879 33287 25987 4963 Face 15880 48135 29682 33004 Face 15881 2360 7943 24956 Face 15882 40219 14268 40501 Face 15883 17486 14039 30672 Face 15884 7945 10958 14039 Face 15885 1474 7945 14039 Face 15886 17486 10740 25516 Face 15887 14734 7946 38489 Face 15888 36084 35936 7946 Face 15889 2267 7947 19605 Face 15890 46977 4737 22739 Face 15891 16220 23758 9334 Face 15892 25170 3529 7948 Face 15893 26464 24987 14579 Face 15894 2557 17013 7949 Face 15895 22511 43412 11798 Face 15896 19744 1052 24464 Face 15897 17189 7951 19007 Face 15898 17189 49155 25065 Face 15899 31435 7952 8007 Face 15900 31435 24908 7952 Face 15901 3199 7953 31274 Face 15902 3199 26432 7953 Face 15903 2360 7954 11671 Face 15904 2360 24956 7954 Face 15905 41937 7955 33861 Face 15906 37315 16114 34220 Face 15907 729 48126 22686 Face 15908 15399 25563 31927 Face 15909 2790 24409 43407 Face 15910 2790 35385 7957 Face 15911 14214 7958 42552 Face 15912 37705 5664 40024 Face 15913 33284 30843 25537 Face 15914 14183 29386 14774 Face 15915 23091 7960 7272 Face 15916 38489 26529 47391 Face 15917 22921 30411 23546 Face 15918 42322 20635 7961 Face 15919 23702 7962 38291 Face 15920 23702 22592 7962 Face 15921 491 7963 33517 Face 15922 21239 30637 44473 Face 15923 40021 29471 10919 Face 15924 36212 20933 7964 Face 15925 711 7965 7183 Face 15926 18063 45520 39305 Face 15927 711 36089 23942 Face 15928 41192 48176 36088 Face 15929 3477 36517 19998 Face 15930 3477 49531 7967 Face 15931 23920 37799 29008 Face 15932 41030 49148 22998 Face 15933 23919 7969 5646 Face 15934 23920 29008 7969 Face 15935 9109 32969 17161 Face 15936 9109 15029 32969 Face 15937 12560 19661 35645 Face 15938 1264 30985 17492 Face 15939 4409 7972 7124 Face 15940 35714 17233 7972 Face 15941 24468 7973 30517 Face 15942 36149 20788 7973 Face 15943 31090 37077 28412 Face 15944 25879 14115 37077 Face 15945 31215 33814 3603 Face 15946 1535 45629 7975 Face 15947 17218 41384 23224 Face 15948 3033 30740 23416 Face 15949 3985 7977 22428 Face 15950 20444 31589 48368 Face 15951 23226 7978 1533 Face 15952 23226 16657 7978 Face 15953 25542 19065 43815 Face 15954 15825 33842 7979 Face 15955 40587 25325 3847 Face 15956 15693 7979 43130 Face 15957 1779 34494 15172 Face 15958 27314 15133 33910 Face 15959 2675 49332 32574 Face 15960 12591 43362 35330 Face 15961 13479 7983 24584 Face 15962 2592 18585 26402 Face 15963 38238 29985 46496 Face 15964 11642 41207 17203 Face 15965 34414 47854 2069 Face 15966 24392 16580 7985 Face 15967 14576 28248 21396 Face 15968 38474 13672 24732 Face 15969 240 19711 26550 Face 15970 22260 9312 7987 Face 15971 2149 7988 39639 Face 15972 34414 25139 41119 Face 15973 38023 45541 33888 Face 15974 1332 22422 7989 Face 15975 17033 24272 30102 Face 15976 17034 46476 7990 Face 15977 18878 27563 41383 Face 15978 1818 25798 7991 Face 15979 2975 32241 17331 Face 15980 2975 15909 32241 Face 15981 28557 28726 8894 Face 15982 28558 42284 7993 Face 15983 25903 40115 22358 Face 15984 46542 15700 22907 Face 15985 1716 21523 4864 Face 15986 25903 9779 7995 Face 15987 2541 7996 32547 Face 15988 37745 11389 31844 Face 15989 19819 30052 29137 Face 15990 45038 6893 30052 Face 15991 21150 48673 40867 Face 15992 36087 16490 7998 Face 15993 30233 43277 5085 Face 15994 2432 18248 46067 Face 15995 3152 30012 38601 Face 15996 3152 35074 30012 Face 15997 16476 32954 43307 Face 15998 33072 12769 41560 Face 15999 9226 8002 13396 Face 16000 35317 12595 23284 Face 16001 15186 8003 22496 Face 16002 16938 41694 8003 Face 16003 8579 20160 24156 Face 16004 17806 33916 24959 Face 16005 37139 8005 3327 Face 16006 37833 26449 43873 Face 16007 41838 8006 17117 Face 16008 16514 6537 8006 Face 16009 10849 8007 23609 Face 16010 7585 14792 35102 Face 16011 5907 32365 33968 Face 16012 35611 513 38570 Face 16013 16723 8009 27098 Face 16014 16723 29741 8009 Face 16015 19852 36718 9615 Face 16016 1944 19583 36719 Face 16017 47739 31756 15736 Face 16018 10023 3563 19441 Face 16019 44928 48216 15974 Face 16020 898 6007 8012 Face 16021 33847 36835 47338 Face 16022 28888 20406 37765 Face 16023 24160 8014 14569 Face 16024 24160 19435 8014 Face 16025 24298 43025 2561 Face 16026 8016 25173 30401 Face 16027 12148 8016 30401 Face 16028 13882 241 21182 Face 16029 1676 24078 17067 Face 16030 1676 47479 8017 Face 16031 21490 33269 3996 Face 16032 26755 10975 47318 Face 16033 1773 31358 27821 Face 16034 18939 494 8019 Face 16035 2796 8020 34556 Face 16036 2796 46258 8020 Face 16037 1148 45099 20654 Face 16038 44013 23940 8021 Face 16039 1148 14148 45099 Face 16040 1148 2265 45343 Face 16041 3308 23545 38551 Face 16042 3308 33506 23545 Face 16043 38880 8024 17214 Face 16044 15175 21066 8024 Face 16045 788 32203 40411 Face 16046 788 9548 32203 Face 16047 10880 34195 35719 Face 16048 1091 29645 16632 Face 16049 613 41741 27027 Face 16050 613 24499 8027 Face 16051 32574 19262 28919 Face 16052 14681 30391 43703 Face 16053 42037 8029 22506 Face 16054 36820 28844 13078 Face 16055 16763 43257 47650 Face 16056 16763 14047 43257 Face 16057 16763 42409 14047 Face 16058 44029 11162 23147 Face 16059 22704 8032 7582 Face 16060 22704 38528 8032 Face 16061 1807 8033 28983 Face 16062 38617 17509 8033 Face 16063 8505 17165 29087 Face 16064 27738 41851 8034 Face 16065 22175 17348 7507 Face 16066 27405 7387 8035 Face 16067 49586 23165 6007 Face 16068 20257 5249 8036 Face 16069 43239 8037 29145 Face 16070 3703 25720 46335 Face 16071 5689 36946 15861 Face 16072 24924 25891 32674 Face 16073 4538 47519 14487 Face 16074 4538 41934 32368 Face 16075 3158 8040 42477 Face 16076 3158 29952 37494 Face 16077 33693 8041 31436 Face 16078 14356 41973 38890 Face 16079 34633 18412 20889 Face 16080 1022 29906 8042 Face 16081 33767 28994 16410 Face 16082 10907 8431 49747 Face 16083 32714 8044 18983 Face 16084 3433 40585 8044 Face 16085 47319 8045 30144 Face 16086 16014 19166 37457 Face 16087 15853 27905 36303 Face 16088 26718 9282 41361 Face 16089 18887 8047 39830 Face 16090 18887 43605 8047 Face 16091 10365 8048 30097 Face 16092 49931 11625 8048 Face 16093 20698 8049 15049 Face 16094 28027 48979 21242 Face 16095 23625 8050 46721 Face 16096 21368 26831 35393 Face 16097 35647 43106 23627 Face 16098 721 47304 8051 Face 16099 2599 8052 13275 Face 16100 2599 29427 32702 Face 16101 38514 8053 23643 Face 16102 10035 44260 8053 Face 16103 46116 26957 16856 Face 16104 36420 12215 49297 Face 16105 19564 38615 30779 Face 16106 9116 37452 38615 Face 16107 28230 8056 35140 Face 16108 1777 28832 37260 Face 16109 14683 49863 33719 Face 16110 8058 32904 49863 Face 16111 20863 14683 733 Face 16112 5145 25496 43223 Face 16113 19618 8059 32743 Face 16114 19618 39801 8059 Face 16115 31751 8060 17129 Face 16116 31751 45920 8060 Face 16117 6335 45889 18326 Face 16118 29502 38344 8061 Face 16119 2984 46646 27935 Face 16120 28175 6503 28914 Face 16121 1375 39260 39647 Face 16122 1375 27741 39260 Face 16123 8157 18383 25188 Face 16124 17986 26180 22749 Face 16125 188 43504 15583 Face 16126 29315 41406 20296 Face 16127 17122 8066 36999 Face 16128 33502 865 34607 Face 16129 39381 8067 34707 Face 16130 39381 18445 8067 Face 16131 10736 12534 7798 Face 16132 6694 36855 39104 Face 16133 512 8069 38817 Face 16134 512 28456 8069 Face 16135 29407 8070 8448 Face 16136 29407 46287 8070 Face 16137 748 8071 22861 Face 16138 748 33036 8071 Face 16139 43658 42327 11814 Face 16140 35016 14314 42327 Face 16141 1920 8073 3006 Face 16142 1920 20784 8073 Face 16143 3352 8074 13202 Face 16144 3352 48335 8074 Face 16145 2403 31068 25175 Face 16146 2403 11757 31068 Face 16147 24091 45791 2264 Face 16148 24091 20509 45791 Face 16149 18888 22078 33547 Face 16150 41096 31925 19413 Face 16151 44631 24506 45835 Face 16152 10591 10833 45297 Face 16153 35537 8079 17397 Face 16154 10430 5725 28665 Face 16155 21949 8080 11580 Face 16156 21949 37384 8080 Face 16157 8082 20538 10358 Face 16158 3343 18708 8081 Face 16159 3343 8082 28267 Face 16160 3343 20538 8082 Face 16161 23708 8083 7830 Face 16162 3343 28267 8083 Face 16163 796 10910 22991 Face 16164 796 27431 10910 Face 16165 12071 20950 6975 Face 16166 47364 25780 35159 Face 16167 44206 19575 5342 Face 16168 1374 48117 8086 Face 16169 16059 8087 4638 Face 16170 30621 48311 8087 Face 16171 3153 28099 10109 Face 16172 3153 26434 8088 Face 16173 4167 8089 43669 Face 16174 4167 13921 33374 Face 16175 36541 8090 9733 Face 16176 1427 32099 26094 Face 16177 11440 39833 16820 Face 16178 11440 18994 8091 Face 16179 1151 8092 18994 Face 16180 36087 7998 40710 Face 16181 39832 8093 47912 Face 16182 26982 45870 8093 Face 16183 21795 26982 8093 Face 16184 143 32154 28968 Face 16185 34898 8095 8942 Face 16186 9883 40659 23907 Face 16187 36914 8096 2308 Face 16188 36914 25144 8096 Face 16189 743 8097 41971 Face 16190 743 25592 8097 Face 16191 247 12880 3995 Face 16192 13997 45251 33059 Face 16193 6021 8099 41056 Face 16194 6021 9857 8099 Face 16195 15781 23327 15537 Face 16196 15781 21675 23327 Face 16197 17175 31399 3165 Face 16198 622 16364 25708 Face 16199 18364 28053 40111 Face 16200 23420 45414 16988 Face 16201 40038 22244 14129 Face 16202 32912 3786 37713 Face 16203 30826 25367 43037 Face 16204 32912 8103 25367 Face 16205 15183 36206 27436 Face 16206 22498 35754 8105 Face 16207 47019 17927 25281 Face 16208 3832 16006 8106 Face 16209 42276 17045 47165 Face 16210 23734 31848 8107 Face 16211 27720 8108 49683 Face 16212 27720 17792 8108 Face 16213 31673 16451 25730 Face 16214 38401 30368 8109 Face 16215 7237 38581 17343 Face 16216 7237 32015 38581 Face 16217 32803 8111 46521 Face 16218 25269 4366 34888 Face 16219 1865 8112 29957 Face 16220 13486 49911 34175 Face 16221 30961 45162 33346 Face 16222 16316 23888 8113 Face 16223 4535 8114 35439 Face 16224 18895 14245 9407 Face 16225 32031 39124 18189 Face 16226 23334 28731 8115 Face 16227 14733 8116 19063 Face 16228 25432 45707 8116 Face 16229 33200 8117 10896 Face 16230 20307 31476 8117 Face 16231 41453 21916 34445 Face 16232 41453 31976 8118 Face 16233 45431 22954 16428 Face 16234 22022 12739 8119 Face 16235 33106 13210 3000 Face 16236 1183 49004 29622 Face 16237 2340 9817 48172 Face 16238 2340 21426 9817 Face 16239 20927 8122 44190 Face 16240 10130 9656 8122 Face 16241 9718 26026 10037 Face 16242 36948 13364 8123 Face 16243 32117 8124 10395 Face 16244 16415 6395 8124 Face 16245 19312 24582 34699 Face 16246 36768 44387 8126 Face 16247 8125 8126 41268 Face 16248 43077 34699 24582 Face 16249 3340 30751 21545 Face 16250 3340 41516 30752 Face 16251 3773 26294 7298 Face 16252 3773 48164 26294 Face 16253 42734 35913 11230 Face 16254 21722 29574 8129 Face 16255 39692 8130 7439 Face 16256 39266 17202 42714 Face 16257 444 39265 8130 Face 16258 444 29623 20716 Face 16259 12293 37204 5061 Face 16260 46352 2945 22717 Face 16261 801 8133 43593 Face 16262 23889 17424 10913 Face 16263 11209 8134 42945 Face 16264 12313 7884 43764 Face 16265 2447 39115 17801 Face 16266 2447 35061 39115 Face 16267 4232 8136 27052 Face 16268 26763 873 11096 Face 16269 5279 20803 16345 Face 16270 5279 17337 8137 Face 16271 833 8138 26052 Face 16272 13235 34844 23722 Face 16273 41910 30743 14954 Face 16274 2025 6368 30742 Face 16275 49583 46283 23812 Face 16276 46693 17526 8140 Face 16277 11408 31731 35893 Face 16278 317 30625 8141 Face 16279 17157 48262 43499 Face 16280 41564 14261 39097 Face 16281 109 8143 23218 Face 16282 24679 49987 8143 Face 16283 372 47238 47638 Face 16284 48220 33761 22759 Face 16285 517 35472 35586 Face 16286 39630 6755 35570 Face 16287 30699 14081 34702 Face 16288 30699 21298 14081 Face 16289 27825 49779 1643 Face 16290 33230 38024 27435 Face 16291 44333 31030 26327 Face 16292 20003 43658 21482 Face 16293 18700 12710 11829 Face 16294 2907 42374 25755 Face 16295 31928 28196 35658 Face 16296 44404 19050 8150 Face 16297 38836 28475 14458 Face 16298 842 41700 28475 Face 16299 46114 8152 32501 Face 16300 6759 10914 8152 Face 16301 20286 8153 7024 Face 16302 623 7354 38418 Face 16303 27401 31899 10295 Face 16304 2029 4631 45843 Face 16305 2893 8155 42315 Face 16306 9487 43644 26395 Face 16307 43198 14624 19306 Face 16308 2629 36985 23048 Face 16309 10331 22777 25821 Face 16310 41213 35266 22777 Face 16311 5390 34216 5389 Face 16312 5390 18789 8158 Face 16313 19123 8159 40292 Face 16314 4282 39476 8159 Face 16315 49654 16055 15201 Face 16316 49654 31536 16055 Face 16317 24413 8161 46890 Face 16318 24413 23476 8161 Face 16319 25759 30277 19077 Face 16320 34257 3356 27657 Face 16321 6887 36763 24746 Face 16322 6887 8400 36763 Face 16323 4668 16293 20527 Face 16324 4668 45868 16293 Face 16325 31421 8165 17756 Face 16326 31076 47194 8165 Face 16327 20701 8166 7244 Face 16328 43204 9894 8166 Face 16329 40444 25150 3236 Face 16330 1753 9820 25149 Face 16331 27652 43096 30519 Face 16332 27653 9071 40291 Face 16333 3443 8169 39631 Face 16334 3443 13387 8169 Face 16335 342 25319 13368 Face 16336 342 10906 25319 Face 16337 901 8171 4852 Face 16338 38518 2377 8171 Face 16339 19698 8172 28101 Face 16340 19490 40314 27432 Face 16341 36227 8173 5162 Face 16342 13339 23941 16687 Face 16343 16686 19879 19066 Face 16344 43952 27654 12164 Face 16345 2428 8175 39629 Face 16346 2428 42300 8175 Face 16347 36148 24370 36284 Face 16348 7401 19376 24370 Face 16349 12600 8177 29968 Face 16350 12603 33679 32309 Face 16351 29752 8178 17503 Face 16352 2594 4697 8178 Face 16353 11733 23126 30416 Face 16354 2456 13087 46702 Face 16355 636 8180 29074 Face 16356 47873 20368 21597 Face 16357 33001 8181 11419 Face 16358 24963 48334 22884 Face 16359 1922 8182 7551 Face 16360 17060 5483 36632 Face 16361 32166 27871 13681 Face 16362 5117 49502 8183 Face 16363 20394 47125 16826 Face 16364 47882 42476 26634 Face 16365 20394 8185 47125 Face 16366 48826 14720 40182 Face 16367 5018 8186 9320 Face 16368 42529 19419 8186 Face 16369 911 8187 13008 Face 16370 911 24164 46852 Face 16371 561 45869 24853 Face 16372 45128 4905 37432 Face 16373 4839 21479 24658 Face 16374 4839 220 21479 Face 16375 24365 16334 8399 Face 16376 8192 42491 8190 Face 16377 6166 8191 16536 Face 16378 10939 10481 8191 Face 16379 6166 8192 8190 Face 16380 6166 27374 8192 Face 16381 37085 31078 24717 Face 16382 42781 120 45578 Face 16383 49993 43807 36518 Face 16384 3753 40081 28590 Face 16385 32258 44172 11781 Face 16386 13290 28692 8195 Face 16387 47103 8196 29156 Face 16388 16346 29027 8196 Face 16389 2087 14831 32230 Face 16390 12124 2841 8197 Face 16391 42339 35015 8914 Face 16392 40207 46623 8198 Face 16393 28760 49441 15397 Face 16394 44346 20567 27780 Face 16395 621 8200 29447 Face 16396 33674 44813 8200 Face 16397 14680 8201 30289 Face 16398 39840 6643 8201 Face 16399 6095 32908 28487 Face 16400 10632 20207 47553 Face 16401 16877 8203 6522 Face 16402 14316 22515 8203 Face 16403 22052 18794 14469 Face 16404 34041 17437 14447 Face 16405 26887 37728 21389 Face 16406 44732 5287 37728 Face 16407 5456 8206 23754 Face 16408 8548 12762 8206 Face 16409 21632 38280 34962 Face 16410 793 3550 21761 Face 16411 39956 15493 43664 Face 16412 39563 3748 8208 Face 16413 39956 8209 15493 Face 16414 46831 12547 13099 Face 16415 24808 34363 10974 Face 16416 24808 44405 34363 Face 16417 21131 27043 15036 Face 16418 26091 42695 8211 Face 16419 45147 8212 6730 Face 16420 8874 47830 22708 Face 16421 24817 24291 10950 Face 16422 2400 5798 8213 Face 16423 33610 8214 16082 Face 16424 2400 38780 40116 Face 16425 31647 8215 5813 Face 16426 49841 3041 24771 Face 16427 35939 8216 15442 Face 16428 20897 49069 8216 Face 16429 13999 8217 37420 Face 16430 13999 18813 8217 Face 16431 44808 8218 2076 Face 16432 12019 6182 14404 Face 16433 20729 8219 46640 Face 16434 20729 14817 41648 Face 16435 37813 46104 24755 Face 16436 29600 10287 48170 Face 16437 24065 8221 43863 Face 16438 24065 14694 8221 Face 16439 40354 8222 36614 Face 16440 1655 24813 24107 Face 16441 24439 45110 22557 Face 16442 24438 33229 45110 Face 16443 984 36414 45808 Face 16444 984 22915 36414 Face 16445 32294 8225 38185 Face 16446 2877 15893 17518 Face 16447 29625 20473 33529 Face 16448 28629 46769 8226 Face 16449 32965 18122 42255 Face 16450 26179 36238 8227 Face 16451 32965 26179 45225 Face 16452 36431 10940 8228 Face 16453 42630 8229 42336 Face 16454 45787 18142 8229 Face 16455 3764 8230 31611 Face 16456 8785 3765 8230 Face 16457 1740 23865 10271 Face 16458 1740 26429 18092 Face 16459 19720 8232 15891 Face 16460 19720 47435 37850 Face 16461 32065 40321 17963 Face 16462 31381 15269 35793 Face 16463 22538 8234 32475 Face 16464 40456 19738 8234 Face 16465 38830 8235 27891 Face 16466 29035 41869 40696 Face 16467 1345 8236 37510 Face 16468 37164 8915 14206 Face 16469 13211 34998 46030 Face 16470 25216 11673 8237 Face 16471 2254 8238 34763 Face 16472 43019 10098 8238 Face 16473 48886 16540 27463 Face 16474 3055 25331 16540 Face 16475 769 8240 24307 Face 16476 32666 41576 35498 Face 16477 17903 8241 19102 Face 16478 17903 49394 35583 Face 16479 1336 8242 30372 Face 16480 1336 26203 37717 Face 16481 26274 16888 31513 Face 16482 34951 39175 19567 Face 16483 913 34950 19567 Face 16484 913 7629 30818 Face 16485 5184 35561 9675 Face 16486 5184 2055 8245 Face 16487 28370 33771 44374 Face 16488 28371 24937 42087 Face 16489 35575 46410 4324 Face 16490 40479 5063 27129 Face 16491 38648 22891 10126 Face 16492 39182 6701 8248 Face 16493 6973 8249 43217 Face 16494 41002 17751 28019 Face 16495 29415 20380 41735 Face 16496 12632 5020 8250 Face 16497 234 28859 45188 Face 16498 234 41264 8251 Face 16499 821 8252 7476 Face 16500 821 12445 8252 Face 16501 8254 15146 48905 Face 16502 2056 39776 8253 Face 16503 42914 39617 46772 Face 16504 18814 8253 32650 Face 16505 33152 43798 4488 Face 16506 8256 19747 47844 Face 16507 27110 8256 8255 Face 16508 473 39212 23762 Face 16509 2587 8257 28398 Face 16510 2587 5447 25937 Face 16511 49652 8258 37582 Face 16512 48986 39087 45413 Face 16513 21850 36878 15152 Face 16514 1860 25845 8259 Face 16515 41101 35869 4773 Face 16516 37965 309 38075 Face 16517 30033 8261 21319 Face 16518 35621 28173 8261 Face 16519 1329 8262 20775 Face 16520 1329 24932 8262 Face 16521 2579 24027 11668 Face 16522 2579 19457 24028 Face 16523 33778 8264 19457 Face 16524 33778 2815 8264 Face 16525 29630 8265 22304 Face 16526 9746 37070 20354 Face 16527 22210 30204 32054 Face 16528 32045 45893 8266 Face 16529 19537 8267 40855 Face 16530 44705 35376 8267 Face 16531 1301 8268 38912 Face 16532 1301 45902 18255 Face 16533 33640 8269 15260 Face 16534 40845 4124 26560 Face 16535 42475 8270 15718 Face 16536 47271 19135 41663 Face 16537 45977 8271 5077 Face 16538 45977 38603 8271 Face 16539 22378 8272 9319 Face 16540 9194 16410 47897 Face 16541 25673 18232 16581 Face 16542 293 45981 18232 Face 16543 44848 36905 20798 Face 16544 29123 12101 8274 Face 16545 34940 8275 11664 Face 16546 34940 25028 8275 Face 16547 21228 45637 10382 Face 16548 21228 3708 45636 Face 16549 10493 43646 33205 Face 16550 10245 24952 16137 Face 16551 43509 8278 20410 Face 16552 43509 27531 8278 Face 16553 799 8279 40234 Face 16554 27535 11354 8279 Face 16555 18027 34283 25119 Face 16556 18027 29419 34283 Face 16557 15035 42681 3451 Face 16558 41530 27818 29464 Face 16559 6405 20728 1879 Face 16560 41311 21367 8282 Face 16561 2307 8778 16703 Face 16562 9728 13027 46100 Face 16563 43327 8284 11138 Face 16564 41632 27085 8284 Face 16565 2033 8285 38811 Face 16566 2033 19833 8285 Face 16567 38916 22473 45846 Face 16568 709 12055 30820 Face 16569 29355 22177 5535 Face 16570 29355 22473 8287 Face 16571 18730 8288 28024 Face 16572 14716 30220 30455 Face 16573 25232 22734 9642 Face 16574 29362 38096 8289 Face 16575 30142 8290 48602 Face 16576 11413 43443 8290 Face 16577 3453 28650 40690 Face 16578 45396 49742 8291 Face 16579 21338 25512 29976 Face 16580 23302 31774 8292 Face 16581 3388 27929 3571 Face 16582 3388 19094 8293 Face 16583 1551 8294 43868 Face 16584 8434 1538 47828 Face 16585 42288 8295 3896 Face 16586 12017 4198 30231 Face 16587 48756 17803 15822 Face 16588 26283 35869 22108 Face 16589 22856 44479 45691 Face 16590 4556 37519 8297 Face 16591 1849 42204 6193 Face 16592 1849 32909 42204 Face 16593 18626 8299 12945 Face 16594 18626 17062 8299 Face 16595 1200 49761 27978 Face 16596 1200 28924 18626 Face 16597 1347 36776 47738 Face 16598 23707 30091 45345 Face 16599 947 8302 35966 Face 16600 32944 4375 30883 Face 16601 42056 15802 11311 Face 16602 1096 11865 31627 Face 16603 14909 8304 27269 Face 16604 37718 19326 21550 Face 16605 16163 8305 45530 Face 16606 19083 21730 47242 Face 16607 2037 24324 29143 Face 16608 8307 2854 32830 Face 16609 20866 8307 32830 Face 16610 42205 18249 8307 Face 16611 2923 8308 45938 Face 16612 12412 27430 8308 Face 16613 31595 14169 41934 Face 16614 31595 10573 14169 Face 16615 567 38841 24292 Face 16616 22254 35327 8310 Face 16617 25565 43725 4048 Face 16618 47 11775 41177 Face 16619 6085 33703 15439 Face 16620 6085 46198 33703 Face 16621 9342 43542 13038 Face 16622 9342 45957 49234 Face 16623 31877 8314 10468 Face 16624 22549 44447 33893 Face 16625 17646 8315 39287 Face 16626 42200 15699 28010 Face 16627 2539 45508 7071 Face 16628 2539 45020 22291 Face 16629 2287 49039 16501 Face 16630 39836 41837 23377 Face 16631 34091 40004 14601 Face 16632 34092 1660 8318 Face 16633 24841 8319 23500 Face 16634 13362 32575 49156 Face 16635 22322 40854 32187 Face 16636 641 8319 24841 Face 16637 36078 26872 14445 Face 16638 36078 43111 8321 Face 16639 37108 8322 42450 Face 16640 37108 18396 8322 Face 16641 1261 29942 21352 Face 16642 42798 7736 48233 Face 16643 13430 30817 5202 Face 16644 1165 15585 27081 Face 16645 48449 29196 3424 Face 16646 35406 26168 48284 Face 16647 45133 43884 30182 Face 16648 3435 13441 43883 Face 16649 2669 32585 7726 Face 16650 2669 45510 8327 Face 16651 12029 47385 7322 Face 16652 1661 38069 17411 Face 16653 6449 35201 13894 Face 16654 13697 45 37785 Face 16655 998 8330 9644 Face 16656 12512 28765 33904 Face 16657 21214 32712 3130 Face 16658 31499 22968 44010 Face 16659 28644 21214 18822 Face 16660 26984 32712 33142 Face 16661 42436 27372 12896 Face 16662 27470 24240 17383 Face 16663 44021 34271 8657 Face 16664 21346 7933 30607 Face 16665 8336 43642 11266 Face 16666 1639 33689 32034 Face 16667 1639 8336 3591 Face 16668 1639 43642 8336 Face 16669 28989 8337 43419 Face 16670 135 23835 8337 Face 16671 31635 8338 23982 Face 16672 31635 26027 8338 Face 16673 39322 25611 18053 Face 16674 39322 10973 25611 Face 16675 26018 8340 29945 Face 16676 21170 32783 12521 Face 16677 37172 8341 25953 Face 16678 12381 43355 8341 Face 16679 45354 18317 29058 Face 16680 34413 24498 44489 Face 16681 920 8343 43682 Face 16682 920 22406 8343 Face 16683 3522 8344 43207 Face 16684 3522 33264 8344 Face 16685 41912 20892 9658 Face 16686 5696 18608 8345 Face 16687 30951 8346 9913 Face 16688 1678 16554 42091 Face 16689 8348 46268 20561 Face 16690 3814 21486 46547 Face 16691 27591 8348 34103 Face 16692 3814 46268 8348 Face 16693 41548 28428 35440 Face 16694 1533 7978 28428 Face 16695 2660 8350 17898 Face 16696 2660 39524 8350 Face 16697 32570 25810 5208 Face 16698 24863 8439 39499 Face 16699 33574 8352 32121 Face 16700 33574 10134 29954 Face 16701 11680 11884 16245 Face 16702 41433 13872 8353 Face 16703 18762 8354 19639 Face 16704 15356 31481 8354 Face 16705 31110 8355 38826 Face 16706 44411 33272 8355 Face 16707 49150 38167 6761 Face 16708 1306 28727 38166 Face 16709 19900 8357 4828 Face 16710 13229 2530 43397 Face 16711 19900 13229 43397 Face 16712 1127 3136 23936 Face 16713 47185 8359 23492 Face 16714 39508 15459 26536 Face 16715 20237 8360 14485 Face 16716 20237 31070 48361 Face 16717 40336 8361 36602 Face 16718 40336 14068 27581 Face 16719 37565 25867 41775 Face 16720 34689 17454 8362 Face 16721 1954 8363 16901 Face 16722 17829 21062 40917 Face 16723 43338 8364 42164 Face 16724 33990 29149 24418 Face 16725 1833 34532 4029 Face 16726 34879 5463 45423 Face 16727 1248 14564 31953 Face 16728 35293 29168 44225 Face 16729 1045 8367 45845 Face 16730 26429 1740 35609 Face 16731 35019 45863 2489 Face 16732 2488 19168 35556 Face 16733 29456 8369 42165 Face 16734 29456 24962 8369 Face 16735 13929 46261 30210 Face 16736 3108 39211 8370 Face 16737 40028 8371 42648 Face 16738 40914 13531 8371 Face 16739 25180 14853 20481 Face 16740 25180 13892 8372 Face 16741 19624 32345 3395 Face 16742 42818 43376 8373 Face 16743 3156 31693 10635 Face 16744 36559 6487 8374 Face 16745 13729 32566 41068 Face 16746 2209 48757 8375 Face 16747 8375 8376 2209 Face 16748 18980 36604 8376 Face 16749 47090 21419 8433 Face 16750 47091 29735 8377 Face 16751 15630 8378 37251 Face 16752 15630 41989 8378 Face 16753 23336 25051 16218 Face 16754 21044 32943 37839 Face 16755 22702 34542 36507 Face 16756 22702 31673 34542 Face 16757 43514 27820 19529 Face 16758 5069 24869 43556 Face 16759 3285 8382 16178 Face 16760 3285 4415 8382 Face 16761 16672 40752 8670 Face 16762 2947 7631 8383 Face 16763 41549 21841 36410 Face 16764 19733 27969 21841 Face 16765 13069 36412 21842 Face 16766 47754 33256 8385 Face 16767 20127 34695 15487 Face 16768 20127 3654 19786 Face 16769 28072 8387 32533 Face 16770 28072 39870 8387 Face 16771 2302 8388 20044 Face 16772 19273 34750 8388 Face 16773 19779 24791 7517 Face 16774 39663 20041 8389 Face 16775 35888 8390 4089 Face 16776 12301 6788 25949 Face 16777 12301 8391 32741 Face 16778 8392 6693 36099 Face 16779 41405 8392 36099 Face 16780 41405 21833 8392 Face 16781 29735 8393 8377 Face 16782 38033 15257 34208 Face 16783 801 24532 8133 Face 16784 801 10867 24532 Face 16785 35813 40008 22850 Face 16786 35813 15691 8396 Face 16787 8395 8396 40846 Face 16788 8395 35813 8396 Face 16789 18057 8397 44789 Face 16790 20071 43640 48680 Face 16791 12007 34774 20623 Face 16792 7187 29213 8398 Face 16793 2014 8399 14250 Face 16794 2014 24365 8399 Face 16795 31783 35513 15898 Face 16796 20744 36763 8400 Face 16797 1800 8401 26141 Face 16798 16357 48497 8401 Face 16799 45032 19317 21539 Face 16800 45032 32569 19317 Face 16801 24287 8403 43341 Face 16802 45192 30213 8403 Face 16803 16931 8404 35711 Face 16804 1751 42492 19695 Face 16805 16348 48633 1595 Face 16806 16348 25973 28505 Face 16807 45348 8406 16555 Face 16808 12391 39390 44551 Face 16809 20656 22064 4909 Face 16810 3890 24778 8407 Face 16811 3402 8408 8203 Face 16812 3402 1284 8408 Face 16813 49277 8409 21379 Face 16814 2451 49542 35220 Face 16815 49593 47184 591 Face 16816 12342 3420 8410 Face 16817 2805 8411 23123 Face 16818 24488 6592 8411 Face 16819 6529 8412 39533 Face 16820 34779 30508 8412 Face 16821 1238 32765 16737 Face 16822 1238 42627 8413 Face 16823 3126 8414 41243 Face 16824 3126 34762 8414 Face 16825 42813 8415 36636 Face 16826 42813 5722 29421 Face 16827 44785 8416 40122 Face 16828 3093 48524 39724 Face 16829 27426 17567 568 Face 16830 6390 16698 8417 Face 16831 27147 43254 16678 Face 16832 13923 15259 41494 Face 16833 36591 34928 12633 Face 16834 45431 16428 23664 Face 16835 13043 8420 4971 Face 16836 11918 25819 15171 Face 16837 15300 8421 27062 Face 16838 34833 8420 13043 Face 16839 37117 8422 28176 Face 16840 39694 5009 8422 Face 16841 7656 8423 17644 Face 16842 7656 15558 19261 Face 16843 40584 8424 15090 Face 16844 40584 7383 31362 Face 16845 14071 8425 3917 Face 16846 29745 7045 8425 Face 16847 21034 23796 19587 Face 16848 4060 44477 43423 Face 16849 17335 8427 12340 Face 16850 41326 10492 8427 Face 16851 5957 8428 246 Face 16852 5957 14220 35394 Face 16853 44523 39253 30398 Face 16854 1838 15847 39253 Face 16855 35069 37203 36405 Face 16856 11658 13207 21614 Face 16857 26902 21385 11045 Face 16858 2016 40177 8431 Face 16859 26809 32397 20544 Face 16860 47757 27932 11326 Face 16861 1829 29490 44014 Face 16862 1829 4821 29490 Face 16863 25913 8434 22588 Face 16864 25913 30536 8434 Face 16865 20072 48333 32788 Face 16866 33757 12327 12671 Face 16867 22997 36859 5741 Face 16868 22997 19221 36859 Face 16869 44773 36653 34930 Face 16870 9090 46973 36653 Face 16871 8439 8438 42965 Face 16872 2189 23945 8438 Face 16873 2189 8439 31823 Face 16874 2189 8438 8439 Face 16875 48428 8440 38370 Face 16876 32692 1792 8440 Face 16877 24025 20500 6307 Face 16878 1905 1385 8441 Face 16879 19912 8442 46699 Face 16880 13024 45931 8442 Face 16881 385 8443 46440 Face 16882 25989 41069 27786 Face 16883 49372 35543 29455 Face 16884 4122 18008 8444 Face 16885 3956 37419 27659 Face 16886 3956 48670 43070 Face 16887 36652 8446 38674 Face 16888 863 26069 42671 Face 16889 23214 8447 34571 Face 16890 1583 45730 8447 Face 16891 15670 8448 13065 Face 16892 23496 17802 8448 Face 16893 8764 33330 37637 Face 16894 395 17154 47268 Face 16895 12317 8450 17519 Face 16896 21561 10337 27220 Face 16897 8452 38321 16481 Face 16898 21460 38851 45504 Face 16899 47696 36431 8228 Face 16900 2141 38321 8452 Face 16901 45094 8453 28422 Face 16902 15859 42233 25205 Face 16903 35297 38487 4578 Face 16904 2921 12760 8454 Face 16905 3665 8455 18770 Face 16906 26326 17557 8455 Face 16907 45732 8456 9591 Face 16908 46217 33799 19530 Face 16909 17841 16891 43838 Face 16910 3215 37250 33738 Face 16911 29915 8458 13977 Face 16912 34706 2755 8458 Face 16913 34522 8459 19095 Face 16914 45428 37076 23631 Face 16915 34236 8460 22624 Face 16916 24821 49648 20751 Face 16917 28910 46989 43567 Face 16918 16392 11835 35616 Face 16919 29035 23592 32802 Face 16920 29035 29742 23592 Face 16921 1249 8463 25717 Face 16922 45030 48472 8463 Face 16923 29552 42684 118 Face 16924 29552 7826 8464 Face 16925 22239 39672 11795 Face 16926 28641 35673 8465 Face 16927 49778 8466 40571 Face 16928 41707 16937 8466 Face 16929 17123 20475 28339 Face 16930 2624 33234 8467 Face 16931 10821 8468 26965 Face 16932 26586 3098 8468 Face 16933 19582 23239 15062 Face 16934 37042 47410 8469 Face 16935 4501 26253 9975 Face 16936 26994 398 40644 Face 16937 44485 8471 25767 Face 16938 2273 18487 44880 Face 16939 17551 45078 31859 Face 16940 32140 4658 48953 Face 16941 17527 13605 9249 Face 16942 2040 20180 35083 Face 16943 16585 21250 17872 Face 16944 9443 40753 20150 Face 16945 14329 46719 24784 Face 16946 47823 6460 33023 Face 16947 3481 19892 9758 Face 16948 3481 15659 19892 Face 16949 30973 32707 11502 Face 16950 21894 6501 29458 Face 16951 6278 8478 35580 Face 16952 15000 39463 37226 Face 16953 19798 30761 6894 Face 16954 9883 8095 36931 Face 16955 34898 36931 8095 Face 16956 8479 19798 48345 Face 16957 34257 8481 40253 Face 16958 2586 40486 8481 Face 16959 13323 40694 34199 Face 16960 20229 38499 19770 Face 16961 28091 15373 12528 Face 16962 37663 33972 15373 Face 16963 6555 31760 26034 Face 16964 30388 17742 13415 Face 16965 25348 30889 13233 Face 16966 20279 20815 42354 Face 16967 40978 8486 24509 Face 16968 40978 44218 8486 Face 16969 19474 30442 38502 Face 16970 35025 24929 29172 Face 16971 26287 8488 17121 Face 16972 42874 8487 31825 Face 16973 20669 32503 4980 Face 16974 38325 33850 8489 Face 16975 31792 8490 1318 Face 16976 31931 27031 8490 Face 16977 33674 8491 45049 Face 16978 33674 16271 22086 Face 16979 1780 22939 40711 Face 16980 1780 48061 22939 Face 16981 43049 8493 33641 Face 16982 34436 40057 8493 Face 16983 43540 45840 1017 Face 16984 9721 6207 29738 Face 16985 25748 8495 15462 Face 16986 25748 31518 8495 Face 16987 29671 32002 26847 Face 16988 29671 49046 8496 Face 16989 21229 8497 12925 Face 16990 21229 28145 8497 Face 16991 10384 47050 21471 Face 16992 10384 30762 47050 Face 16993 38079 8499 10279 Face 16994 23285 16018 8499 Face 16995 21036 46147 12673 Face 16996 46778 21295 28216 Face 16997 28314 41817 16654 Face 16998 43157 18676 8501 Face 16999 80 45521 29063 Face 17000 19463 38719 21163 Face 17001 35249 8503 21696 Face 17002 12000 17668 29383 Face 17003 873 8504 11096 Face 17004 18798 13464 8504 Face 17005 26843 8505 21997 Face 17006 27738 8034 8505 Face 17007 1522 8506 39958 Face 17008 1522 29312 8506 Face 17009 15808 47110 23354 Face 17010 15808 28331 8507 Face 17011 47113 27402 10123 Face 17012 41604 12312 26495 Face 17013 11567 40453 16358 Face 17014 11567 23400 40453 Face 17015 6137 8510 21098 Face 17016 6137 47617 8510 Face 17017 4037 8511 12002 Face 17018 4037 46651 38138 Face 17019 5792 29024 21571 Face 17020 5792 30950 29024 Face 17021 32434 39852 44036 Face 17022 32434 22708 39852 Face 17023 735 41482 4846 Face 17024 41767 5639 39013 Face 17025 21974 8515 5349 Face 17026 21027 41526 8515 Face 17027 40593 34336 2838 Face 17028 20099 5812 41238 Face 17029 47966 41594 32682 Face 17030 47966 29576 8517 Face 17031 26365 43437 16001 Face 17032 2899 88 49997 Face 17033 28236 46398 10757 Face 17034 2465 10850 23470 Face 17035 43588 8520 22908 Face 17036 36811 3512 18472 Face 17037 36709 8521 20188 Face 17038 18472 25783 8521 Face 17039 26906 8522 20226 Face 17040 1101 19363 8522 Face 17041 9812 33748 17691 Face 17042 45129 28445 8523 Face 17043 17533 8524 1223 Face 17044 2570 33677 24518 Face 17045 11127 8525 43447 Face 17046 18239 5017 41465 Face 17047 3105 32584 19780 Face 17048 3105 12673 32584 Face 17049 28852 8527 1108 Face 17050 15157 36573 26151 Face 17051 31408 29210 49655 Face 17052 20667 39512 43721 Face 17053 6030 8529 15783 Face 17054 6030 15403 8529 Face 17055 8531 33074 47777 Face 17056 30934 43953 39745 Face 17057 4426 8531 19634 Face 17058 4426 33074 8531 Face 17059 28788 31168 17949 Face 17060 3779 10619 8532 Face 17061 45272 8533 22790 Face 17062 2966 37369 15162 Face 17063 49984 20998 4229 Face 17064 40523 36838 31245 Face 17065 1986 8535 33384 Face 17066 1986 39773 8535 Face 17067 2968 8536 42086 Face 17068 2968 44055 46083 Face 17069 39675 8537 28903 Face 17070 39675 32148 8537 Face 17071 41011 25688 20125 Face 17072 1960 43112 8538 Face 17073 38781 8539 34541 Face 17074 3957 22724 28215 Face 17075 3504 8540 12000 Face 17076 18731 557 26493 Face 17077 36138 38220 17153 Face 17078 40401 3272 8541 Face 17079 726 16289 8258 Face 17080 46986 889 28192 Face 17081 30677 8543 34375 Face 17082 30677 45115 8543 Face 17083 30928 43059 4 Face 17084 22280 7334 13093 Face 17085 19105 8545 177 Face 17086 5732 1702 8545 Face 17087 18065 8546 9084 Face 17088 5732 8545 19105 Face 17089 14071 29745 8425 Face 17090 49902 11998 8547 Face 17091 42706 8548 8206 Face 17092 12937 20864 8548 Face 17093 38715 19464 4464 Face 17094 2838 34336 19464 Face 17095 4184 8550 38871 Face 17096 4184 14480 33166 Face 17097 25121 8551 5466 Face 17098 1030 26991 37491 Face 17099 2992 36019 35599 Face 17100 42198 20294 25617 Face 17101 26476 21230 1360 Face 17102 37753 10721 8553 Face 17103 12318 8554 7680 Face 17104 28313 4625 27478 Face 17105 33514 8555 11248 Face 17106 31629 15668 8555 Face 17107 1224 37337 19351 Face 17108 22792 32422 8556 Face 17109 8558 42383 24884 Face 17110 34800 14687 8557 Face 17111 26981 8558 39411 Face 17112 3451 42383 8558 Face 17113 32727 8559 20258 Face 17114 12919 20307 26378 Face 17115 18133 8560 48036 Face 17116 44762 26378 8560 Face 17117 2525 8561 25563 Face 17118 10718 9044 21095 Face 17119 4059 28747 40849 Face 17120 20516 15261 27124 Face 17121 42495 8563 29226 Face 17122 42495 30429 8563 Face 17123 4757 8564 14565 Face 17124 16220 19941 8564 Face 17125 17882 26764 9620 Face 17126 108 35900 10675 Face 17127 33714 23775 28501 Face 17128 2301 39943 8566 Face 17129 14897 32784 27226 Face 17130 14897 45357 8567 Face 17131 2803 8568 14926 Face 17132 2803 27226 17866 Face 17133 20153 8569 15863 Face 17134 21234 42234 8569 Face 17135 1369 25586 18629 Face 17136 34723 46094 25586 Face 17137 19133 17512 43054 Face 17138 23375 3688 30964 Face 17139 3604 42069 46676 Face 17140 46041 7345 42069 Face 17141 19233 26845 15593 Face 17142 962 27625 8573 Face 17143 1284 38044 31857 Face 17144 1284 3402 8574 Face 17145 39008 36048 8299 Face 17146 1953 23716 8575 Face 17147 11718 8576 12304 Face 17148 11717 2673 46066 Face 17149 4596 47223 30588 Face 17150 30304 34612 47995 Face 17151 6771 29935 26466 Face 17152 6771 33273 29935 Face 17153 28563 8579 12835 Face 17154 253 20160 8579 Face 17155 42232 17883 18920 Face 17156 32979 29795 8580 Face 17157 16563 37926 34689 Face 17158 15488 14060 37927 Face 17159 2362 32183 41057 Face 17160 43493 1741 41743 Face 17161 2362 16217 20092 Face 17162 37981 19047 16217 Face 17163 47499 8584 21830 Face 17164 47499 31445 8584 Face 17165 1130 8585 16367 Face 17166 21268 48288 19078 Face 17167 33186 49833 25598 Face 17168 29102 36666 8586 Face 17169 3222 25709 20915 Face 17170 14250 7577 41448 Face 17171 2493 39442 36916 Face 17172 2493 2494 39442 Face 17173 23344 8589 33265 Face 17174 23344 5488 8589 Face 17175 4052 37644 35111 Face 17176 21189 40897 37644 Face 17177 17907 26848 4940 Face 17178 49532 10297 16803 Face 17179 37502 8592 17854 Face 17180 46626 20557 8592 Face 17181 35995 8593 8990 Face 17182 34015 30390 23083 Face 17183 23791 35011 49141 Face 17184 29829 44251 48785 Face 17185 11111 23582 45384 Face 17186 49303 22416 8595 Face 17187 1555 32045 8266 Face 17188 43602 21144 8596 Face 17189 908 45842 21531 Face 17190 21703 27506 45842 Face 17191 436 47009 31875 Face 17192 22390 27797 39454 Face 17193 11294 30850 16314 Face 17194 11294 10202 30850 Face 17195 2175 43511 1626 Face 17196 2175 22951 8600 Face 17197 9857 8601 44908 Face 17198 13895 42782 8601 Face 17199 27198 33429 3090 Face 17200 4868 15041 8602 Face 17201 43074 16534 30106 Face 17202 31067 42180 8603 Face 17203 1511 28482 21472 Face 17204 36823 7547 30902 Face 17205 26467 8605 39700 Face 17206 46871 4449 8605 Face 17207 5215 39301 13554 Face 17208 19412 5099 8606 Face 17209 37798 8607 43527 Face 17210 13370 37040 8607 Face 17211 40546 48889 26472 Face 17212 40861 16709 17677 Face 17213 3865 8609 21516 Face 17214 33934 33244 35557 Face 17215 30307 12952 39885 Face 17216 36420 49297 12952 Face 17217 36420 16934 12215 Face 17218 2270 27735 8611 Face 17219 14568 24273 12655 Face 17220 19843 28565 31087 Face 17221 35432 8613 40526 Face 17222 35432 31087 14568 Face 17223 19282 38540 10270 Face 17224 1198 20931 40089 Face 17225 41364 8615 47223 Face 17226 2097 23472 8615 Face 17227 733 31790 28223 Face 17228 733 14683 31790 Face 17229 8618 14758 32283 Face 17230 25092 23958 47647 Face 17231 28191 8618 48316 Face 17232 35118 49436 25091 Face 17233 1045 8619 42169 Face 17234 1045 15998 39623 Face 17235 1294 20064 28589 Face 17236 40222 11049 20064 Face 17237 41746 49388 8896 Face 17238 36185 5842 8621 Face 17239 49388 8622 8896 Face 17240 49387 36308 8622 Face 17241 49387 24969 36308 Face 17242 8621 18947 8623 Face 17243 21798 39825 5416 Face 17244 38094 22075 14927 Face 17245 15687 35430 41756 Face 17246 25452 20099 8625 Face 17247 29344 23690 14675 Face 17248 38500 32323 8626 Face 17249 5265 8627 42632 Face 17250 35322 43021 39410 Face 17251 1356 39384 17346 Face 17252 36752 18511 40055 Face 17253 36753 8629 46109 Face 17254 1356 47310 8629 Face 17255 7713 8630 21630 Face 17256 7713 12999 8630 Face 17257 41773 45974 26929 Face 17258 27424 25766 27863 Face 17259 13312 43135 31429 Face 17260 46813 39825 21798 Face 17261 22353 45674 39255 Face 17262 32184 45346 15899 Face 17263 34743 8634 31795 Face 17264 34743 46613 8634 Face 17265 208 31345 20768 Face 17266 14359 24792 31345 Face 17267 8637 37736 16755 Face 17268 46777 8575 23716 Face 17269 4705 14078 46452 Face 17270 4705 23716 28292 Face 17271 5908 37529 44673 Face 17272 41880 33276 8638 Face 17273 41032 25976 18123 Face 17274 17250 13826 20189 Face 17275 677 38625 26830 Face 17276 17832 42833 23262 Face 17277 10183 45924 21023 Face 17278 8640 17832 8641 Face 17279 12823 8642 15421 Face 17280 3923 12273 43993 Face 17281 24646 8643 3438 Face 17282 4095 35365 8643 Face 17283 49790 18487 5044 Face 17284 4712 8799 8644 Face 17285 39702 8645 34597 Face 17286 39702 19905 8645 Face 17287 24847 15433 5129 Face 17288 25338 16643 8646 Face 17289 37339 20112 6691 Face 17290 21043 4109 34177 Face 17291 22006 30770 43360 Face 17292 1282 40709 8648 Face 17293 39194 8649 5277 Face 17294 49680 27139 22417 Face 17295 31604 19514 4808 Face 17296 29893 18961 8650 Face 17297 849 8651 14496 Face 17298 849 18703 8651 Face 17299 40143 30276 6806 Face 17300 20687 977 8652 Face 17301 8149 27539 45879 Face 17302 17285 46643 8653 Face 17303 11985 35897 38697 Face 17304 48738 4849 27836 Face 17305 2799 8655 38021 Face 17306 2799 25613 44932 Face 17307 3 19888 43825 Face 17308 3 45514 8656 Face 17309 3593 8657 34271 Face 17310 19662 23688 8657 Face 17311 16954 15405 10707 Face 17312 40862 47542 8658 Face 17313 1166 8659 32411 Face 17314 33057 13414 19562 Face 17315 42008 36887 22900 Face 17316 13318 15088 8660 Face 17317 20953 49482 36095 Face 17318 15838 28862 8661 Face 17319 46586 8662 19649 Face 17320 46586 12537 8662 Face 17321 33241 8663 48488 Face 17322 33241 895 8663 Face 17323 42664 8664 43624 Face 17324 45926 4408 8664 Face 17325 27457 8665 12555 Face 17326 27457 13698 8665 Face 17327 2382 8666 32429 Face 17328 31000 16098 43185 Face 17329 8666 8667 34720 Face 17330 8666 2382 8667 Face 17331 39494 8668 23713 Face 17332 13248 14988 44001 Face 17333 4302 19189 31022 Face 17334 4302 44546 19189 Face 17335 13475 8670 40752 Face 17336 49293 12198 48902 Face 17337 25641 20875 37911 Face 17338 18986 1707 8671 Face 17339 16249 38862 20876 Face 17340 9237 41622 8672 Face 17341 48671 13717 19183 Face 17342 1095 29140 33499 Face 17343 1095 8674 23257 Face 17344 48671 19183 23897 Face 17345 39723 8675 7403 Face 17346 2504 38630 43485 Face 17347 32890 8676 19387 Face 17348 32890 32681 8676 Face 17349 323 8677 29175 Face 17350 28368 2396 8677 Face 17351 48434 8678 15112 Face 17352 48543 24883 25676 Face 17353 36077 8679 12748 Face 17354 36077 29331 8679 Face 17355 37287 8680 48068 Face 17356 1303 29923 8680 Face 17357 44128 45886 13678 Face 17358 44066 45535 8681 Face 17359 25211 15089 35989 Face 17360 45989 12711 8682 Face 17361 23862 8683 22925 Face 17362 2950 42310 8683 Face 17363 693 32850 13642 Face 17364 34390 2447 17801 Face 17365 18168 28556 1227 Face 17366 38560 17116 8685 Face 17367 727 8686 11290 Face 17368 17000 6445 24608 Face 17369 11475 43233 17870 Face 17370 32763 26530 43234 Face 17371 1921 46198 6085 Face 17372 40358 25080 27703 Face 17373 16124 8689 36571 Face 17374 45098 1287 8689 Face 17375 12846 34892 28382 Face 17376 46254 8689 16124 Face 17377 28248 8691 21396 Face 17378 34294 30799 43947 Face 17379 22672 32244 7452 Face 17380 43719 22710 8692 Face 17381 27634 18465 10137 Face 17382 9823 47375 33049 Face 17383 3266 8694 29755 Face 17384 19851 11731 45598 Face 17385 40719 46937 31206 Face 17386 44157 13636 31122 Face 17387 43647 41059 13292 Face 17388 9036 7080 49752 Face 17389 18242 8697 31451 Face 17390 28677 43474 21115 Face 17391 14502 14501 21952 Face 17392 8701 27676 13444 Face 17393 31962 14502 11303 Face 17394 37034 46747 34018 Face 17395 28488 47200 33318 Face 17396 13591 17382 37034 Face 17397 3020 34651 17382 Face 17398 3020 48563 8701 Face 17399 38848 8702 33348 Face 17400 15541 20131 13710 Face 17401 1040 20111 18303 Face 17402 16191 26010 21653 Face 17403 35671 25677 39068 Face 17404 5599 16255 39023 Face 17405 18954 8705 25167 Face 17406 1035 36091 8705 Face 17407 3740 8706 28485 Face 17408 31519 14504 8706 Face 17409 32569 11553 19317 Face 17410 32202 13874 8707 Face 17411 15776 8708 5703 Face 17412 23101 7224 25165 Face 17413 3719 8709 33576 Face 17414 3719 15325 40129 Face 17415 19248 28897 17191 Face 17416 42956 10927 35803 Face 17417 6721 8711 19748 Face 17418 33359 19603 8711 Face 17419 32768 8712 13091 Face 17420 32768 7101 8712 Face 17421 7227 8713 27054 Face 17422 7227 20932 8713 Face 17423 2429 27036 17123 Face 17424 41149 17369 8714 Face 17425 3884 24313 40183 Face 17426 3884 36107 24313 Face 17427 1316 14676 7918 Face 17428 15916 14567 40642 Face 17429 21302 23344 33265 Face 17430 14225 26897 8717 Face 17431 4014 46780 27505 Face 17432 4014 6474 34382 Face 17433 15790 37954 43923 Face 17434 1215 48998 37953 Face 17435 36894 29291 33850 Face 17436 5479 22384 33126 Face 17437 18830 8721 40702 Face 17438 25719 18842 16692 Face 17439 2260 12773 40565 Face 17440 2260 25848 39331 Face 17441 23186 8723 26948 Face 17442 8724 26542 24668 Face 17443 400 26062 21495 Face 17444 46767 43959 26062 Face 17445 25159 30257 15662 Face 17446 2848 26250 17481 Face 17447 7029 36465 27201 Face 17448 46776 31651 19335 Face 17449 36126 8727 42161 Face 17450 399 47980 8727 Face 17451 25933 8728 6230 Face 17452 25933 34920 8728 Face 17453 38879 42318 15255 Face 17454 10194 24437 20200 Face 17455 48844 8730 6131 Face 17456 29299 30012 35074 Face 17457 26299 30700 24499 Face 17458 26299 23188 8731 Face 17459 29366 29955 4961 Face 17460 13912 4793 34118 Face 17461 30290 19289 37506 Face 17462 15266 3883 46140 Face 17463 43377 8734 21771 Face 17464 43377 28394 8734 Face 17465 5519 39926 39555 Face 17466 5519 43389 39926 Face 17467 1116 47994 31403 Face 17468 48177 41158 8736 Face 17469 23212 38985 2061 Face 17470 45880 43411 8737 Face 17471 9207 33775 27442 Face 17472 49591 20056 8738 Face 17473 2797 8739 44250 Face 17474 23398 36063 8739 Face 17475 21654 24106 45650 Face 17476 353 7914 8740 Face 17477 18208 45764 40963 Face 17478 1956 39323 45764 Face 17479 306 8742 41227 Face 17480 44171 17157 43499 Face 17481 46616 8743 2992 Face 17482 25244 49606 8743 Face 17483 3258 33665 37900 Face 17484 8745 13883 28815 Face 17485 3258 8745 28815 Face 17486 3258 1024 32048 Face 17487 8745 36870 13883 Face 17488 8745 19055 28433 Face 17489 503 8747 25259 Face 17490 20423 25813 10414 Face 17491 8749 8748 10414 Face 17492 34077 39966 8748 Face 17493 503 8749 8747 Face 17494 14085 18218 8749 Face 17495 47657 8750 27306 Face 17496 36637 11642 15915 Face 17497 39325 33419 25354 Face 17498 39325 36153 33419 Face 17499 26516 30717 7665 Face 17500 3137 41471 37216 Face 17501 2206 8753 28953 Face 17502 36108 3999 8753 Face 17503 2601 8754 18843 Face 17504 20155 31990 8754 Face 17505 37664 8755 20644 Face 17506 26855 5409 8755 Face 17507 496 48011 39195 Face 17508 42465 11961 8756 Face 17509 33513 23151 15751 Face 17510 20743 7784 8757 Face 17511 40672 46706 15876 Face 17512 5818 40843 46706 Face 17513 13164 8759 18405 Face 17514 16981 34854 21447 Face 17515 21418 30329 29187 Face 17516 21015 25435 8760 Face 17517 2320 46781 13061 Face 17518 28922 21638 8761 Face 17519 14318 8762 39155 Face 17520 14318 9728 46100 Face 17521 2072 8763 40761 Face 17522 2072 4962 8763 Face 17523 20535 11446 32919 Face 17524 395 8449 11107 Face 17525 15 49610 44405 Face 17526 15 23122 19493 Face 17527 8767 8766 34520 Face 17528 23508 27130 42526 Face 17529 35589 40745 48242 Face 17530 46688 27130 23508 Face 17531 18024 8768 25631 Face 17532 25711 38861 17463 Face 17533 48991 35317 23284 Face 17534 555 23812 21470 Face 17535 34821 8770 15820 Face 17536 5079 37247 8770 Face 17537 36356 8771 32440 Face 17538 36356 27732 8771 Face 17539 34170 49477 39244 Face 17540 8771 43867 8772 Face 17541 42568 8773 20060 Face 17542 42568 24567 8773 Face 17543 40036 8774 956 Face 17544 10018 34226 8774 Face 17545 41127 8775 3051 Face 17546 41127 26056 17459 Face 17547 3612 8776 15102 Face 17548 21072 24959 8776 Face 17549 12676 8777 34326 Face 17550 29515 25454 31954 Face 17551 12518 42090 49605 Face 17552 12518 47060 42090 Face 17553 16843 8779 8529 Face 17554 35113 20435 16027 Face 17555 34100 8780 13574 Face 17556 34100 28037 8780 Face 17557 2489 40748 35019 Face 17558 8783 5405 14057 Face 17559 20793 8783 14057 Face 17560 38098 24209 10508 Face 17561 10509 46002 20793 Face 17562 11925 17899 18606 Face 17563 18593 45829 20186 Face 17564 1210 23702 38291 Face 17565 3764 8785 8230 Face 17566 36379 14853 31590 Face 17567 3514 15155 33609 Face 17568 3514 39697 36473 Face 17569 32975 8787 10100 Face 17570 43208 16460 8787 Face 17571 22414 8788 6292 Face 17572 22590 9775 39116 Face 17573 22872 20987 11294 Face 17574 4199 45828 8789 Face 17575 637 8790 30551 Face 17576 8912 46378 32387 Face 17577 5493 8791 26866 Face 17578 5493 21559 8791 Face 17579 5578 8792 14403 Face 17580 27699 37328 17626 Face 17581 34506 8793 15912 Face 17582 34506 21588 8793 Face 17583 17711 8794 35002 Face 17584 29333 41834 8794 Face 17585 1906 25849 42570 Face 17586 14365 24743 8795 Face 17587 2368 8796 42592 Face 17588 45830 35437 32629 Face 17589 2847 8797 38448 Face 17590 2847 32214 8797 Face 17591 46812 29797 23818 Face 17592 46812 34551 8798 Face 17593 5538 8799 37459 Face 17594 21451 8644 8799 Face 17595 22438 11573 36721 Face 17596 42393 10083 8800 Face 17597 26270 22438 13726 Face 17598 22657 8800 8801 Face 17599 27210 8802 3912 Face 17600 26270 13726 8802 Face 17601 889 24062 19221 Face 17602 889 46986 24062 Face 17603 49195 8804 22513 Face 17604 32820 883 29877 Face 17605 27583 8805 22098 Face 17606 28936 5048 35515 Face 17607 29931 8806 39282 Face 17608 1608 16203 39948 Face 17609 23454 47874 16044 Face 17610 1608 8806 29931 Face 17611 48263 26209 27395 Face 17612 45102 40094 26209 Face 17613 26008 8809 33550 Face 17614 34117 42835 8809 Face 17615 28965 8810 38019 Face 17616 29700 35222 8810 Face 17617 4272 35950 34232 Face 17618 4272 8810 28965 Face 17619 4086 8812 21723 Face 17620 4086 1837 42176 Face 17621 37842 44706 14323 Face 17622 24393 38313 26101 Face 17623 30465 39526 26101 Face 17624 20053 18809 42869 Face 17625 36026 8815 45987 Face 17626 36026 49736 35630 Face 17627 46705 16135 25448 Face 17628 37003 25210 8816 Face 17629 32058 21221 48027 Face 17630 3323 5681 8817 Face 17631 23397 8818 27592 Face 17632 2694 28572 38763 Face 17633 5901 8819 43271 Face 17634 28591 46745 15298 Face 17635 43930 25556 30648 Face 17636 12064 15710 8820 Face 17637 1681 21931 39829 Face 17638 1681 27528 21931 Face 17639 5326 27946 24232 Face 17640 43439 33985 8822 Face 17641 28082 8823 26325 Face 17642 28082 24162 8823 Face 17643 29842 28406 6159 Face 17644 1018 4569 28011 Face 17645 1790 30324 10708 Face 17646 19348 43340 8825 Face 17647 51 8826 33866 Face 17648 51 42867 31121 Face 17649 16629 8827 35458 Face 17650 16629 38519 8827 Face 17651 27619 44399 38951 Face 17652 27619 29719 44399 Face 17653 25667 8829 42567 Face 17654 3479 23349 8829 Face 17655 16918 8830 6766 Face 17656 31895 36755 47006 Face 17657 36345 13510 28151 Face 17658 34342 33216 8831 Face 17659 34732 8832 44530 Face 17660 34732 15921 8832 Face 17661 5657 15895 1940 Face 17662 5657 44738 8833 Face 17663 30104 8834 4875 Face 17664 18456 7521 30576 Face 17665 514 8835 48137 Face 17666 14336 4528 30778 Face 17667 514 33351 8835 Face 17668 514 5926 28640 Face 17669 5351 32716 15698 Face 17670 5351 47762 32716 Face 17671 1643 8838 27825 Face 17672 35499 18446 31523 Face 17673 29335 17440 15279 Face 17674 39839 30572 21837 Face 17675 32391 17671 3368 Face 17676 23455 42621 12990 Face 17677 1149 48962 27178 Face 17678 1149 11302 28664 Face 17679 29280 8842 28467 Face 17680 29280 21800 8842 Face 17681 8844 8843 32889 Face 17682 15481 49588 8843 Face 17683 14147 8844 49668 Face 17684 14147 8843 8844 Face 17685 3299 19571 35708 Face 17686 11417 7126 8845 Face 17687 46103 8846 15051 Face 17688 35366 42858 8846 Face 17689 46103 35366 8846 Face 17690 43079 3071 8847 Face 17691 40774 8848 5563 Face 17692 72 20493 8848 Face 17693 8359 8849 23492 Face 17694 21943 3204 15880 Face 17695 46733 28956 19719 Face 17696 10712 44553 8850 Face 17697 7419 26359 2650 Face 17698 35660 6250 8851 Face 17699 31707 48358 21976 Face 17700 44309 40205 34162 Face 17701 44309 22865 11348 Face 17702 40229 2150 22865 Face 17703 26466 31708 48961 Face 17704 26466 34162 31708 Face 17705 7489 32157 23565 Face 17706 7489 35646 44490 Face 17707 18652 37346 13376 Face 17708 45051 27159 31379 Face 17709 3682 8857 6208 Face 17710 3682 23511 8857 Face 17711 29973 8858 14213 Face 17712 7865 2874 8858 Face 17713 48560 22091 15142 Face 17714 44301 36936 8859 Face 17715 12971 8860 27008 Face 17716 12971 20293 8860 Face 17717 31098 8861 32433 Face 17718 10835 18679 13672 Face 17719 43270 10556 48339 Face 17720 2610 6168 35639 Face 17721 25714 8863 13138 Face 17722 611 23189 8863 Face 17723 4443 8864 48239 Face 17724 36161 35138 20773 Face 17725 37093 8865 31430 Face 17726 41938 32589 8865 Face 17727 566 26016 33248 Face 17728 23855 17501 8866 Face 17729 42521 30203 13428 Face 17730 11445 35788 8867 Face 17731 26792 20853 5859 Face 17732 29663 8626 25408 Face 17733 44283 26886 30957 Face 17734 3265 19110 35754 Face 17735 13340 46234 14255 Face 17736 2868 17499 8870 Face 17737 1554 8871 38661 Face 17738 1554 13680 8871 Face 17739 3275 8872 47145 Face 17740 33336 13483 8872 Face 17741 3275 33336 8872 Face 17742 47079 49401 38706 Face 17743 45147 40512 8212 Face 17744 26373 4242 8874 Face 17745 17695 48895 17463 Face 17746 24094 34164 8875 Face 17747 22226 10841 34598 Face 17748 4182 38384 21209 Face 17749 17384 12201 8878 Face 17750 33956 6184 12201 Face 17751 10218 8878 10262 Face 17752 11726 16659 8878 Face 17753 4957 47442 15820 Face 17754 4957 8878 10218 Face 17755 26549 33466 15716 Face 17756 26548 19261 8880 Face 17757 15546 8881 35057 Face 17758 45372 34165 8881 Face 17759 43320 8882 40816 Face 17760 43320 9087 8882 Face 17761 37936 8883 1994 Face 17762 4379 6324 8883 Face 17763 21096 40391 10553 Face 17764 472 37570 8884 Face 17765 29222 31660 25137 Face 17766 47660 13442 31661 Face 17767 4389 31162 45083 Face 17768 14553 43545 8886 Face 17769 28576 8887 3502 Face 17770 3503 13762 41891 Face 17771 24832 37525 48934 Face 17772 46925 3547 37525 Face 17773 21996 23715 35421 Face 17774 4771 49159 23715 Face 17775 1191 23890 42737 Face 17776 8891 41614 35791 Face 17777 39893 15639 44539 Face 17778 39893 28651 42034 Face 17779 25390 32544 13244 Face 17780 10022 15621 10101 Face 17781 1414 40876 33249 Face 17782 1414 10381 8893 Face 17783 36581 8894 28726 Face 17784 36581 45358 29487 Face 17785 44894 22831 854 Face 17786 22427 14041 22831 Face 17787 23659 8896 39205 Face 17788 4625 16207 8896 Face 17789 7298 46605 3773 Face 17790 21055 15671 8897 Face 17791 8899 8898 21822 Face 17792 11554 45056 39060 Face 17793 1528 8899 21822 Face 17794 15989 10612 8899 Face 17795 49270 8900 31846 Face 17796 20608 18109 8900 Face 17797 3496 8901 30141 Face 17798 3496 32250 29540 Face 17799 48587 27802 4308 Face 17800 511 48187 8902 Face 17801 3083 31340 12950 Face 17802 3083 22089 8903 Face 17803 761 8904 29230 Face 17804 761 24451 8904 Face 17805 3390 35751 21316 Face 17806 3390 47552 33213 Face 17807 6914 8906 24873 Face 17808 46789 46702 8906 Face 17809 30605 8907 31017 Face 17810 20309 23566 8907 Face 17811 24677 27472 137 Face 17812 13525 36022 42872 Face 17813 43409 8909 31799 Face 17814 7158 7159 8909 Face 17815 1136 8910 13793 Face 17816 24123 15733 20628 Face 17817 5720 8911 6056 Face 17818 5720 5721 8911 Face 17819 14848 8912 32387 Face 17820 14848 25120 8912 Face 17821 3615 18543 5487 Face 17822 15131 41945 33232 Face 17823 10175 8914 46011 Face 17824 32484 16231 35135 Face 17825 26589 8915 44629 Face 17826 26589 14206 8915 Face 17827 1180 8916 32512 Face 17828 1180 35382 48610 Face 17829 11949 8917 37479 Face 17830 127 1480 13696 Face 17831 9357 33022 25943 Face 17832 19443 39633 8918 Face 17833 19236 8919 14436 Face 17834 42222 39278 8919 Face 17835 42222 8920 34753 Face 17836 2356 37289 8920 Face 17837 43697 39399 31782 Face 17838 34516 43962 42679 Face 17839 3216 8922 29339 Face 17840 3216 16565 8922 Face 17841 35264 18900 36542 Face 17842 35881 16670 8923 Face 17843 10091 16631 20884 Face 17844 204 18649 16631 Face 17845 8926 47701 16563 Face 17846 49529 24979 8925 Face 17847 2140 34689 8362 Face 17848 14398 8925 29953 Face 17849 840 8927 28042 Face 17850 21083 38498 8927 Face 17851 32848 8928 4852 Face 17852 42521 2393 8928 Face 17853 2733 8929 41907 Face 17854 2733 19149 8929 Face 17855 1795 28430 47681 Face 17856 1795 29753 28430 Face 17857 6604 8931 17036 Face 17858 6604 25838 8931 Face 17859 21706 8932 32448 Face 17860 11747 7674 8932 Face 17861 21172 11282 23412 Face 17862 12411 3827 8933 Face 17863 42278 40179 25100 Face 17864 34875 14500 40179 Face 17865 44085 8935 27914 Face 17866 16183 24517 47784 Face 17867 27187 23289 14511 Face 17868 27188 3719 33576 Face 17869 2390 8937 28700 Face 17870 27542 27512 8937 Face 17871 2873 8938 38714 Face 17872 25510 718 49448 Face 17873 13940 47999 499 Face 17874 30695 34630 19142 Face 17875 43036 22446 26397 Face 17876 755 23172 22446 Face 17877 755 19293 5889 Face 17878 755 34835 41469 Face 17879 1526 35988 23907 Face 17880 10667 30760 8942 Face 17881 16103 30627 6235 Face 17882 23294 30678 42277 Face 17883 619 19152 48504 Face 17884 11294 46044 12478 Face 17885 2882 8945 33322 Face 17886 10657 32373 13594 Face 17887 19466 8946 25324 Face 17888 8947 25439 29146 Face 17889 52 42152 8946 Face 17890 52 6252 42152 Face 17891 6266 37420 8217 Face 17892 42722 1692 33355 Face 17893 23031 48758 36148 Face 17894 38895 8375 48757 Face 17895 1873 30859 25476 Face 17896 28895 5597 8950 Face 17897 42695 38886 27042 Face 17898 30998 19613 8951 Face 17899 40607 19342 24730 Face 17900 22728 33468 19342 Face 17901 1403 49574 17700 Face 17902 35230 46770 42700 Face 17903 1580 8954 48238 Face 17904 1580 26767 8954 Face 17905 45289 38796 16052 Face 17906 13254 26920 21383 Face 17907 29565 11247 15190 Face 17908 1167 38241 47240 Face 17909 29816 8957 20615 Face 17910 34463 31523 18446 Face 17911 4964 8958 15253 Face 17912 44765 25341 20265 Face 17913 48 8959 5258 Face 17914 8960 49666 27865 Face 17915 48 48690 8959 Face 17916 48 17293 33734 Face 17917 5178 28375 38759 Face 17918 30580 25334 8961 Face 17919 20508 8962 9372 Face 17920 48283 11040 30048 Face 17921 4073 8963 31055 Face 17922 28771 14827 21138 Face 17923 7470 8964 16106 Face 17924 7470 24916 8964 Face 17925 2148 8965 45466 Face 17926 2148 33288 8965 Face 17927 2349 8966 35765 Face 17928 15342 24069 8966 Face 17929 29001 8967 6032 Face 17930 10305 7573 42839 Face 17931 29639 8968 22859 Face 17932 29639 34385 8968 Face 17933 8971 47464 36377 Face 17934 37989 11588 39548 Face 17935 45728 8970 9778 Face 17936 37990 47464 30466 Face 17937 8970 35088 26779 Face 17938 30466 47464 8971 Face 17939 31346 40937 25279 Face 17940 872 21586 8972 Face 17941 2725 8973 15200 Face 17942 2725 9785 36819 Face 17943 35386 23618 29059 Face 17944 8995 16470 18264 Face 17945 251 8975 26138 Face 17946 251 11077 37589 Face 17947 47768 17636 10781 Face 17948 39146 10955 8976 Face 17949 37678 47700 13357 Face 17950 10896 8117 23844 Face 17951 34803 8978 41082 Face 17952 41912 9658 11893 Face 17953 27916 8979 30328 Face 17954 12978 28244 48912 Face 17955 2214 8980 27810 Face 17956 39031 7598 8980 Face 17957 38680 8981 5388 Face 17958 37779 39005 18732 Face 17959 38680 32206 8981 Face 17960 36668 4192 37562 Face 17961 36191 45355 27820 Face 17962 36264 26456 38680 Face 17963 36777 8984 44769 Face 17964 43151 13378 22940 Face 17965 7116 49207 22274 Face 17966 35072 22264 8985 Face 17967 6545 8986 15486 Face 17968 26989 42473 8986 Face 17969 31124 8987 42171 Face 17970 13021 30708 32888 Face 17971 28765 40463 14816 Face 17972 36331 37440 8988 Face 17973 3143 8989 1112 Face 17974 29121 3142 8989 Face 17975 3819 38307 8684 Face 17976 3819 10706 8990 Face 17977 351 20407 17848 Face 17978 43405 31161 8991 Face 17979 17445 36964 39642 Face 17980 3544 44164 8992 Face 17981 20762 18897 12487 Face 17982 2251 21063 41695 Face 17983 45998 31779 4300 Face 17984 45998 38628 31779 Face 17985 13253 8995 18264 Face 17986 13253 6856 8995 Face 17987 36861 48197 10917 Face 17988 8997 27658 8996 Face 17989 35287 47366 38027 Face 17990 35286 6428 48480 Face 17991 43649 45546 5587 Face 17992 3229 36977 16432 Face 17993 26483 8999 5059 Face 17994 33945 98 8999 Face 17995 2361 16396 44096 Face 17996 22228 34701 16396 Face 17997 16839 43763 5902 Face 17998 36679 2004 9001 Face 17999 35128 9002 24249 Face 18000 15655 5540 36059 Face 18001 2678 17783 12690 Face 18002 9004 38459 9003 Face 18003 21618 9004 9003 Face 18004 21618 32063 9004 Face 18005 8146 9005 21937 Face 18006 8146 2827 21718 Face 18007 43442 36477 12588 Face 18008 46369 21914 36360 Face 18009 41974 29765 9657 Face 18010 19943 38864 9007 Face 18011 16253 20412 41203 Face 18012 34322 17247 30865 Face 18013 4196 9009 33588 Face 18014 23224 24647 9009 Face 18015 4100 9010 20941 Face 18016 15058 13978 9010 Face 18017 26266 30525 7504 Face 18018 26266 30702 47132 Face 18019 228 9012 25908 Face 18020 49617 7358 17652 Face 18021 40366 9013 5604 Face 18022 19978 48320 40011 Face 18023 29778 48269 15978 Face 18024 30145 5214 9014 Face 18025 42068 9015 17180 Face 18026 42068 40757 9015 Face 18027 9017 9016 2511 Face 18028 16908 16060 34305 Face 18029 16975 22882 24701 Face 18030 131 9016 9017 Face 18031 31859 9018 17551 Face 18032 348 17732 15477 Face 18033 22461 9019 34455 Face 18034 32581 35221 43196 Face 18035 23012 9020 49544 Face 18036 23012 47023 39437 Face 18037 44455 9021 20721 Face 18038 41126 16313 9021 Face 18039 27217 26944 6002 Face 18040 4650 20331 9022 Face 18041 45475 13040 9711 Face 18042 27497 16588 38959 Face 18043 40564 46959 9025 Face 18044 27497 38959 18697 Face 18045 17324 9025 9024 Face 18046 17491 40563 9025 Face 18047 45391 15823 24681 Face 18048 26567 6052 44970 Face 18049 648 9027 33615 Face 18050 12650 23526 19328 Face 18051 19308 9028 19499 Face 18052 33053 24560 47630 Face 18053 5828 19798 46218 Face 18054 5828 8480 19798 Face 18055 17943 28995 34180 Face 18056 5828 46872 34270 Face 18057 22356 9031 31484 Face 18058 28486 17715 41393 Face 18059 1547 9032 15886 Face 18060 45946 11303 21952 Face 18061 3257 35094 6523 Face 18062 3257 18911 9033 Face 18063 47774 9034 40110 Face 18064 30640 11572 42951 Face 18065 39383 9035 4166 Face 18066 39228 4324 9035 Face 18067 41006 9036 49752 Face 18068 2563 23943 38439 Face 18069 3002 9037 6644 Face 18070 17738 19530 33799 Face 18071 2985 11548 13687 Face 18072 2985 17124 11548 Face 18073 25187 22667 34040 Face 18074 10363 46537 9039 Face 18075 4544 9040 31516 Face 18076 34974 3781 9040 Face 18077 23450 25525 32113 Face 18078 218 5338 39963 Face 18079 49631 9042 22396 Face 18080 6109 26850 9042 Face 18081 5556 37188 22212 Face 18082 5556 28891 37188 Face 18083 37053 41386 5788 Face 18084 16939 34220 16054 Face 18085 27078 9045 49002 Face 18086 17036 16105 9045 Face 18087 27636 21905 26271 Face 18088 16508 37767 25572 Face 18089 42043 9047 41131 Face 18090 16211 16110 9047 Face 18091 9690 12243 33423 Face 18092 3653 7375 27256 Face 18093 4539 9049 49464 Face 18094 35736 20219 9049 Face 18095 38686 34422 16213 Face 18096 1054 23866 9050 Face 18097 7430 9051 23872 Face 18098 7430 45579 9051 Face 18099 45472 9052 13961 Face 18100 3062 7335 9052 Face 18101 9054 42728 46080 Face 18102 2251 41695 34578 Face 18103 24046 46633 49049 Face 18104 2251 42728 9054 Face 18105 25740 9055 37348 Face 18106 4858 41585 36053 Face 18107 25935 9056 47272 Face 18108 13385 34406 26251 Face 18109 42540 20334 5159 Face 18110 6086 16512 9057 Face 18111 32242 9058 28768 Face 18112 25836 18894 9058 Face 18113 34080 43120 17368 Face 18114 4018 27354 9059 Face 18115 21854 43699 2250 Face 18116 560 7308 14959 Face 18117 28117 9061 3040 Face 18118 3041 445 33364 Face 18119 5140 39187 48518 Face 18120 5140 29624 39187 Face 18121 10592 9063 21629 Face 18122 42141 32624 27971 Face 18123 14449 9064 31758 Face 18124 15964 19401 40735 Face 18125 39532 9065 17266 Face 18126 39532 38371 9065 Face 18127 9067 9066 16695 Face 18128 9067 37439 9066 Face 18129 4454 9067 34851 Face 18130 10083 19586 9067 Face 18131 46845 9068 21259 Face 18132 9069 21137 9068 Face 18133 2933 9069 45185 Face 18134 2933 2935 9069 Face 18135 1190 27513 42856 Face 18136 1190 9222 27514 Face 18137 453 9071 27653 Face 18138 453 32018 9071 Face 18139 26937 9072 18281 Face 18140 25117 12940 32910 Face 18141 1827 37181 10089 Face 18142 13363 38950 9073 Face 18143 26575 40068 7203 Face 18144 32848 4852 9074 Face 18145 21884 9075 18009 Face 18146 3737 23947 39615 Face 18147 5998 41310 28265 Face 18148 5998 47677 9076 Face 18149 24139 29947 13412 Face 18150 12221 16353 9077 Face 18151 28415 12221 9077 Face 18152 15474 7518 9078 Face 18153 9082 28415 29947 Face 18154 9082 9080 9079 Face 18155 12221 12220 9081 Face 18156 12221 9079 9080 Face 18157 9082 9081 9080 Face 18158 9082 9078 9081 Face 18159 12865 24138 4755 Face 18160 3855 9078 9082 Face 18161 5115 33325 27682 Face 18162 37808 22460 9083 Face 18163 49390 37320 30414 Face 18164 4248 18065 37320 Face 18165 20312 9085 7057 Face 18166 2596 13614 9085 Face 18167 42079 9086 18827 Face 18168 47416 31545 9086 Face 18169 20641 47416 9086 Face 18170 38605 8882 9087 Face 18171 44911 9088 32095 Face 18172 14635 22806 44116 Face 18173 43111 14424 8321 Face 18174 11493 48298 37477 Face 18175 17994 9090 36653 Face 18176 33992 39772 9090 Face 18177 24703 47557 14749 Face 18178 24544 20532 9091 Face 18179 24222 36060 48360 Face 18180 33487 19665 20025 Face 18181 3485 17940 29914 Face 18182 34289 15805 9093 Face 18183 3485 34289 17940 Face 18184 3485 19574 9094 Face 18185 28394 37845 8734 Face 18186 3959 40097 14605 Face 18187 9097 9096 28478 Face 18188 35328 9095 21348 Face 18189 24902 29872 21197 Face 18190 23639 9096 9097 Face 18191 40589 30511 6130 Face 18192 36843 12102 30510 Face 18193 27162 21844 39829 Face 18194 15763 29726 9099 Face 18195 3029 9100 17042 Face 18196 3029 15560 9100 Face 18197 834 39544 12436 Face 18198 33971 8753 37957 Face 18199 23542 37024 17762 Face 18200 30759 8034 9102 Face 18201 3600 9103 16176 Face 18202 24816 13910 9103 Face 18203 7903 9104 287 Face 18204 33919 22840 37149 Face 18205 21032 18179 7601 Face 18206 46373 40592 9105 Face 18207 38731 20775 15894 Face 18208 38732 24752 20776 Face 18209 6560 12814 16332 Face 18210 6560 17930 9107 Face 18211 39768 9108 45910 Face 18212 39768 20986 9108 Face 18213 33642 9109 17161 Face 18214 33642 25430 9109 Face 18215 36240 35539 6831 Face 18216 36212 7964 40021 Face 18217 34835 29664 41469 Face 18218 4361 13668 9111 Face 18219 19141 16853 7646 Face 18220 49352 20092 15878 Face 18221 27257 11641 12558 Face 18222 10865 29323 9113 Face 18223 47663 9114 28266 Face 18224 3634 17038 29910 Face 18225 28434 9115 6171 Face 18226 9116 38615 19564 Face 18227 31221 45434 19564 Face 18228 47106 37452 9116 Face 18229 26972 9117 22699 Face 18230 45215 523 9117 Face 18231 48657 42806 43987 Face 18232 48657 18580 9118 Face 18233 42933 29159 7232 Face 18234 38340 5435 18740 Face 18235 3887 9120 40604 Face 18236 33765 29283 9120 Face 18237 37219 15182 27385 Face 18238 38043 41014 15182 Face 18239 45952 28711 6306 Face 18240 18653 38806 9122 Face 18241 4783 9123 41030 Face 18242 40778 32399 9123 Face 18243 13282 32865 47037 Face 18244 14596 23004 16429 Face 18245 33554 34419 9 Face 18246 10259 23097 38456 Face 18247 31440 9126 15205 Face 18248 1277 24638 17281 Face 18249 37385 9127 42948 Face 18250 37385 13558 9127 Face 18251 27017 29118 19784 Face 18252 183 18692 9128 Face 18253 25286 9129 41827 Face 18254 25286 16696 9129 Face 18255 46919 9130 40786 Face 18256 877 12225 21382 Face 18257 3767 39661 24477 Face 18258 3767 25489 34587 Face 18259 48629 26203 1336 Face 18260 39761 23950 9132 Face 18261 13112 9133 23691 Face 18262 6712 34116 38381 Face 18263 20842 42310 2950 Face 18264 20842 21188 9134 Face 18265 15694 38827 5706 Face 18266 32644 8289 9135 Face 18267 30680 9136 44270 Face 18268 9137 29866 35849 Face 18269 4734 47984 35848 Face 18270 4734 20176 47984 Face 18271 3996 33071 21490 Face 18272 21893 42083 10486 Face 18273 2826 20182 12023 Face 18274 34558 6922 20182 Face 18275 611 39722 23189 Face 18276 611 5362 9140 Face 18277 18827 9141 42079 Face 18278 21478 24377 29356 Face 18279 12480 9142 37253 Face 18280 42854 43524 9142 Face 18281 38693 9143 16062 Face 18282 25257 33450 25831 Face 18283 16809 41099 36150 Face 18284 16808 19625 40705 Face 18285 45324 9145 39744 Face 18286 3208 31808 9145 Face 18287 17348 22853 2416 Face 18288 10585 32701 9146 Face 18289 3431 9147 32735 Face 18290 26628 37222 41102 Face 18291 12690 26137 32974 Face 18292 15637 23793 9148 Face 18293 5319 9149 24644 Face 18294 5319 16930 9149 Face 18295 9151 9150 21527 Face 18296 9151 30380 9150 Face 18297 33622 9151 45456 Face 18298 33622 30380 9151 Face 18299 39363 36912 25641 Face 18300 41124 28396 36912 Face 18301 377 31672 39603 Face 18302 37911 20875 26974 Face 18303 5486 9154 23414 Face 18304 5486 24187 9154 Face 18305 23774 9155 31939 Face 18306 40969 12027 9155 Face 18307 1813 9156 27875 Face 18308 9457 16572 22927 Face 18309 15764 30433 29180 Face 18310 15764 44816 9157 Face 18311 43592 9158 39531 Face 18312 39764 31228 9158 Face 18313 5578 27700 40802 Face 18314 5578 49440 9159 Face 18315 2747 17997 4722 Face 18316 29598 15344 44759 Face 18317 49908 9161 26587 Face 18318 33174 16749 49553 Face 18319 4309 25222 2693 Face 18320 4309 4162 9162 Face 18321 2948 42095 18082 Face 18322 37870 44522 9163 Face 18323 22849 9164 1969 Face 18324 24735 16649 45424 Face 18325 17470 9165 6704 Face 18326 46926 5720 40902 Face 18327 24060 47018 32215 Face 18328 24059 38190 22601 Face 18329 5665 9167 18500 Face 18330 5665 26358 9167 Face 18331 40122 9168 16709 Face 18332 47628 14168 27066 Face 18333 16568 36913 20749 Face 18334 16568 39666 9169 Face 18335 38125 13269 7357 Face 18336 12903 4597 29881 Face 18337 17162 20986 3586 Face 18338 49850 5867 9171 Face 18339 37029 9172 11987 Face 18340 47645 21571 9172 Face 18341 2506 39282 24526 Face 18342 2506 8173 9173 Face 18343 32528 41373 47216 Face 18344 32528 4633 41373 Face 18345 36801 26316 26133 Face 18346 2668 23652 29855 Face 18347 31657 9176 7185 Face 18348 2668 37026 9176 Face 18349 5394 9177 32139 Face 18350 13449 29124 19520 Face 18351 28603 16715 15039 Face 18352 41082 8978 9178 Face 18353 22102 27645 25449 Face 18354 20695 5110 25806 Face 18355 2682 9180 15851 Face 18356 2682 6882 37427 Face 18357 2939 9181 38268 Face 18358 2939 49317 9181 Face 18359 43636 42352 10502 Face 18360 21982 34700 9182 Face 18361 13974 9183 44198 Face 18362 36178 14803 46238 Face 18363 19803 9184 16194 Face 18364 37141 883 27366 Face 18365 25017 9185 9184 Face 18366 16085 43107 37141 Face 18367 36996 43259 26448 Face 18368 16085 9185 25017 Face 18369 4875 9187 40277 Face 18370 4875 31125 9187 Face 18371 5342 24868 20171 Face 18372 5342 7194 24926 Face 18373 15033 24942 8298 Face 18374 15033 44540 24942 Face 18375 1645 23256 39340 Face 18376 15982 49156 32575 Face 18377 48437 9191 21910 Face 18378 3227 39487 43113 Face 18379 10110 37163 39741 Face 18380 26388 14266 9192 Face 18381 28086 9193 18228 Face 18382 45693 3557 15283 Face 18383 293 9194 25393 Face 18384 31253 32534 9194 Face 18385 2328 12824 705 Face 18386 21972 22510 44717 Face 18387 19749 38507 8726 Face 18388 3063 28080 30994 Face 18389 49638 9197 4786 Face 18390 26608 27466 36955 Face 18391 33724 9198 10685 Face 18392 33724 15954 9198 Face 18393 2481 9199 7208 Face 18394 2481 45230 9199 Face 18395 4118 9200 1693 Face 18396 22970 44564 46529 Face 18397 45183 24082 34489 Face 18398 45183 24159 9201 Face 18399 1671 9202 41503 Face 18400 1671 23465 9202 Face 18401 27448 9203 7484 Face 18402 27448 12803 9203 Face 18403 3782 37861 30378 Face 18404 20235 47092 34794 Face 18405 1030 15267 26991 Face 18406 24055 39925 9205 Face 18407 20420 9206 44156 Face 18408 22503 32426 25090 Face 18409 28100 9207 36391 Face 18410 30027 33775 9207 Face 18411 34712 9208 6986 Face 18412 47030 37231 9208 Face 18413 24887 9209 6528 Face 18414 24887 46868 32470 Face 18415 31465 33701 4550 Face 18416 37807 11314 9210 Face 18417 25151 9211 30926 Face 18418 25151 31182 13994 Face 18419 25989 9212 41069 Face 18420 25989 3121 9212 Face 18421 7975 9213 1535 Face 18422 19296 12132 20635 Face 18423 44568 9214 775 Face 18424 45848 5580 36673 Face 18425 12129 44159 44855 Face 18426 12129 42446 44159 Face 18427 2070 9216 5918 Face 18428 2070 25031 9216 Face 18429 13582 30074 48 Face 18430 2302 20044 30001 Face 18431 18323 47987 18699 Face 18432 9132 40088 9218 Face 18433 45401 9219 17917 Face 18434 40688 22065 9219 Face 18435 16840 29236 11984 Face 18436 4224 19416 44796 Face 18437 4377 9221 1003 Face 18438 35124 31824 9221 Face 18439 2898 34483 23319 Face 18440 2898 45092 34483 Face 18441 38268 45370 2939 Face 18442 20280 49202 18193 Face 18443 47276 37078 14287 Face 18444 47278 7204 37078 Face 18445 5883 37082 3021 Face 18446 16255 5599 9225 Face 18447 48991 35257 8140 Face 18448 48991 23284 35257 Face 18449 4354 9227 17096 Face 18450 24240 34852 9227 Face 18451 9229 9228 17069 Face 18452 41110 3488 44271 Face 18453 16394 28228 19278 Face 18454 37962 9228 9229 Face 18455 28655 9230 34758 Face 18456 47736 26743 37403 Face 18457 28723 9231 42703 Face 18458 23233 44917 9231 Face 18459 29322 20327 5745 Face 18460 26788 44221 37598 Face 18461 18526 29505 5038 Face 18462 34600 18972 9233 Face 18463 42870 36663 10013 Face 18464 34600 9233 39553 Face 18465 12367 9235 7191 Face 18466 14382 2830 17857 Face 18467 2082 29579 33501 Face 18468 16248 33464 9236 Face 18469 9236 29579 2082 Face 18470 23251 48071 9237 Face 18471 44197 36715 22406 Face 18472 13608 10614 9238 Face 18473 15882 25003 47694 Face 18474 34897 5735 9239 Face 18475 24779 42770 16273 Face 18476 24779 24255 9240 Face 18477 35269 48376 25267 Face 18478 28306 32205 9241 Face 18479 26978 16948 39606 Face 18480 674 22723 32993 Face 18481 14260 15284 18386 Face 18482 18177 38725 9243 Face 18483 4244 43566 41041 Face 18484 34836 8544 43566 Face 18485 3112 9245 10566 Face 18486 33273 4127 33836 Face 18487 43574 9246 35392 Face 18488 3182 16000 26430 Face 18489 20133 9247 17655 Face 18490 48026 22291 9247 Face 18491 4472 9248 36728 Face 18492 4472 37838 21756 Face 18493 2039 9249 4653 Face 18494 15188 17527 9249 Face 18495 30794 11630 34837 Face 18496 3295 17080 26844 Face 18497 3687 28862 15838 Face 18498 45867 21408 11332 Face 18499 1775 41876 30643 Face 18500 1775 17753 23829 Face 18501 5232 9253 22423 Face 18502 44743 25886 41463 Face 18503 33206 41272 5067 Face 18504 42247 23368 9254 Face 18505 29282 9255 35698 Face 18506 42247 9254 33206 Face 18507 28357 9256 23507 Face 18508 42763 16638 9256 Face 18509 13225 38482 16911 Face 18510 48234 11510 9257 Face 18511 3796 9258 30373 Face 18512 39863 3798 9258 Face 18513 6334 35255 21663 Face 18514 6334 27744 35255 Face 18515 38616 9260 10659 Face 18516 38616 6140 9260 Face 18517 18702 37931 32823 Face 18518 28005 43981 9261 Face 18519 12840 9262 22855 Face 18520 37613 45774 9262 Face 18521 3677 48287 1135 Face 18522 3677 4656 13477 Face 18523 461 9264 37182 Face 18524 461 37086 9264 Face 18525 36218 30429 3812 Face 18526 11134 39862 47795 Face 18527 731 9266 47898 Face 18528 29675 3400 9266 Face 18529 21935 9267 29181 Face 18530 46512 5784 9267 Face 18531 32105 29166 14872 Face 18532 1726 25493 9268 Face 18533 16103 33811 45366 Face 18534 1726 9268 33812 Face 18535 47414 17196 40491 Face 18536 3971 49609 48820 Face 18537 17833 9271 14257 Face 18538 17833 40996 10670 Face 18539 24877 9272 47576 Face 18540 6605 20821 9272 Face 18541 24847 25338 8646 Face 18542 40426 31002 22567 Face 18543 1393 9274 28362 Face 18544 1393 47958 9274 Face 18545 29135 32849 21403 Face 18546 29135 36104 32849 Face 18547 16621 9276 27238 Face 18548 16621 29943 9276 Face 18549 22491 9277 49590 Face 18550 15272 36614 21560 Face 18551 10477 9278 45397 Face 18552 48285 2782 9278 Face 18553 29329 47229 10828 Face 18554 26595 49208 24406 Face 18555 3463 20995 33052 Face 18556 29431 18582 29786 Face 18557 1349 9281 36440 Face 18558 13020 25234 9281 Face 18559 2360 40219 7943 Face 18560 2360 11671 35968 Face 18561 29259 32317 25790 Face 18562 9284 43391 23761 Face 18563 45876 9284 14972 Face 18564 26194 310 48383 Face 18565 29660 43475 14006 Face 18566 790 43581 44984 Face 18567 13202 22399 11613 Face 18568 47590 28431 9286 Face 18569 40176 33973 31300 Face 18570 3967 49547 44837 Face 18571 24415 40175 41678 Face 18572 49974 34449 40176 Face 18573 33018 27718 15703 Face 18574 33018 36714 27718 Face 18575 19050 13512 26913 Face 18576 112 36654 9290 Face 18577 26613 9291 16476 Face 18578 26613 34293 41779 Face 18579 142 9292 45416 Face 18580 142 5890 26110 Face 18581 47038 9293 42894 Face 18582 47038 38965 9293 Face 18583 4980 30436 19165 Face 18584 4980 12853 30436 Face 18585 3255 21395 18188 Face 18586 3255 32918 21395 Face 18587 3879 9296 38164 Face 18588 27910 15146 23895 Face 18589 27365 25839 16453 Face 18590 1960 8538 45236 Face 18591 3049 9298 36528 Face 18592 32371 13131 44863 Face 18593 3049 20585 9298 Face 18594 10507 8267 19537 Face 18595 965 32125 23869 Face 18596 965 21119 32125 Face 18597 33350 9301 32382 Face 18598 1202 20345 9301 Face 18599 3671 9302 8346 Face 18600 3671 47368 9302 Face 18601 12051 26820 22637 Face 18602 1475 4798 26820 Face 18603 779 9304 42104 Face 18604 779 10753 30890 Face 18605 12213 9305 23215 Face 18606 5014 7305 9305 Face 18607 47856 33490 27651 Face 18608 35098 25047 9306 Face 18609 45045 9307 10328 Face 18610 9306 21178 28798 Face 18611 4001 32589 38263 Face 18612 4001 8865 32589 Face 18613 542 45566 6883 Face 18614 19182 14779 31084 Face 18615 39907 36959 14579 Face 18616 39907 28543 36959 Face 18617 4918 9311 48205 Face 18618 33949 23458 9311 Face 18619 39132 26735 9191 Face 18620 2229 7987 9312 Face 18621 4998 9313 24689 Face 18622 36784 41908 39653 Face 18623 17506 9314 44134 Face 18624 35421 23715 9314 Face 18625 45090 9315 30562 Face 18626 26257 43936 24988 Face 18627 37632 41868 18244 Face 18628 2315 37207 41868 Face 18629 30925 9317 30394 Face 18630 17828 23157 33745 Face 18631 9319 9318 22378 Face 18632 33048 8772 43867 Face 18633 30194 9319 12177 Face 18634 46853 9318 9319 Face 18635 3193 9320 45522 Face 18636 40796 11740 43264 Face 18637 20696 41586 16508 Face 18638 37165 9422 37495 Face 18639 1489 9322 7697 Face 18640 11237 38703 16269 Face 18641 16231 9323 35135 Face 18642 4923 24544 16886 Face 18643 2425 44545 36885 Face 18644 16207 25571 44545 Face 18645 9326 45195 21566 Face 18646 3001 4840 9325 Face 18647 40896 9326 31209 Face 18648 40896 45195 9326 Face 18649 39925 9327 9205 Face 18650 26395 39620 9327 Face 18651 49320 27505 14855 Face 18652 16800 4982 9328 Face 18653 4631 9329 45843 Face 18654 21741 7919 35296 Face 18655 9332 31890 35702 Face 18656 47583 23449 31890 Face 18657 24520 47583 31890 Face 18658 37390 13908 46697 Face 18659 4359 9332 23419 Face 18660 4359 47346 24520 Face 18661 37950 9333 23153 Face 18662 1111 27793 9333 Face 18663 27611 9334 24878 Face 18664 27611 16220 9334 Face 18665 4665 9335 14472 Face 18666 4665 29272 9335 Face 18667 47855 26633 40747 Face 18668 27267 42837 46430 Face 18669 5832 21462 17988 Face 18670 46805 1268 21462 Face 18671 5047 35701 29011 Face 18672 5047 12932 39298 Face 18673 2811 9339 47131 Face 18674 2811 11655 9339 Face 18675 31298 9340 41334 Face 18676 3044 16632 9340 Face 18677 3044 48283 30845 Face 18678 31298 22909 9341 Face 18679 1057 9342 13038 Face 18680 1057 36884 9342 Face 18681 4803 9343 44712 Face 18682 4803 17513 9343 Face 18683 46827 46458 8636 Face 18684 39007 10775 21913 Face 18685 32867 9345 32149 Face 18686 32867 40091 9345 Face 18687 30595 37817 15478 Face 18688 29297 14934 9346 Face 18689 16872 9347 24975 Face 18690 31036 5231 34697 Face 18691 31653 9348 21224 Face 18692 27245 46083 44055 Face 18693 12658 29170 33878 Face 18694 9350 10657 45929 Face 18695 48125 9350 45929 Face 18696 5036 31405 9350 Face 18697 27384 42742 21041 Face 18698 27105 15971 47221 Face 18699 14531 9352 45163 Face 18700 2818 22263 38730 Face 18701 47016 9353 15732 Face 18702 13147 27796 41039 Face 18703 33383 9354 15230 Face 18704 6790 6912 9354 Face 18705 706 9355 23725 Face 18706 20413 39010 15743 Face 18707 44770 9356 36018 Face 18708 5431 21873 29703 Face 18709 5427 9357 10219 Face 18710 5427 33022 9357 Face 18711 5429 9358 6661 Face 18712 39498 3304 13173 Face 18713 12639 9359 49739 Face 18714 21785 24447 9359 Face 18715 30015 43258 5403 Face 18716 182 35364 9360 Face 18717 1961 28479 41412 Face 18718 9371 44317 29922 Face 18719 17542 9362 30110 Face 18720 4772 36700 9362 Face 18721 3752 14724 29328 Face 18722 3752 29319 14019 Face 18723 23337 39786 47560 Face 18724 41759 3377 9364 Face 18725 16001 25850 26365 Face 18726 40428 10038 31339 Face 18727 20216 21620 9408 Face 18728 9367 23560 41922 Face 18729 49940 9367 41922 Face 18730 49940 35588 9367 Face 18731 3076 38984 45667 Face 18732 41418 6803 44290 Face 18733 9370 9369 28614 Face 18734 9370 28859 9369 Face 18735 4123 45188 28614 Face 18736 4123 234 45188 Face 18737 1961 9371 29922 Face 18738 1961 39864 33947 Face 18739 23119 9372 8962 Face 18740 1175 33361 37353 Face 18741 2112 9373 30503 Face 18742 2112 8424 18927 Face 18743 11592 40146 32897 Face 18744 11592 8848 40146 Face 18745 42744 9375 3014 Face 18746 14038 48878 9375 Face 18747 39775 9376 3495 Face 18748 687 31187 19628 Face 18749 6162 9377 41182 Face 18750 6162 35647 23627 Face 18751 4932 22347 25802 Face 18752 4932 40988 22347 Face 18753 24835 9379 12859 Face 18754 9380 17877 14391 Face 18755 39729 24835 35943 Face 18756 2644 17878 9380 Face 18757 24954 44150 19041 Face 18758 33819 4418 35780 Face 18759 533 9382 35769 Face 18760 533 11568 9382 Face 18761 17326 31727 47691 Face 18762 30194 23967 31727 Face 18763 36193 9384 3642 Face 18764 21690 19131 9384 Face 18765 9386 20446 21279 Face 18766 32641 13964 39430 Face 18767 3028 9386 21277 Face 18768 3028 48377 32641 Face 18769 21192 9387 5669 Face 18770 26468 14865 9387 Face 18771 2464 9388 18701 Face 18772 21786 27982 16857 Face 18773 2600 33070 8805 Face 18774 12538 9722 20338 Face 18775 26773 9390 35795 Face 18776 15207 19303 46810 Face 18777 40266 30816 1752 Face 18778 40266 28614 30816 Face 18779 3271 9392 20036 Face 18780 3271 21009 9392 Face 18781 34000 27861 17248 Face 18782 4530 49079 9393 Face 18783 42097 9394 25344 Face 18784 42097 33927 9394 Face 18785 40468 17831 48652 Face 18786 583 38620 9395 Face 18787 24704 22976 13597 Face 18788 24704 39883 22976 Face 18789 19072 24704 6238 Face 18790 6623 7127 29794 Face 18791 45042 21531 8597 Face 18792 5151 24246 9398 Face 18793 10338 31323 27724 Face 18794 4192 36668 22750 Face 18795 21868 9400 44273 Face 18796 21868 46839 9400 Face 18797 1468 9401 29164 Face 18798 17532 38469 9401 Face 18799 1468 25400 18049 Face 18800 1468 10368 22132 Face 18801 1125 34377 18153 Face 18802 12404 14433 32882 Face 18803 24351 41801 5339 Face 18804 218 25525 41801 Face 18805 2912 36381 46551 Face 18806 2912 13873 20267 Face 18807 38588 9406 44592 Face 18808 38588 32513 9406 Face 18809 8114 34068 6895 Face 18810 8114 18895 17675 Face 18811 22837 39902 6505 Face 18812 30020 6621 9408 Face 18813 28944 20397 14932 Face 18814 11003 38197 9409 Face 18815 49830 9410 13000 Face 18816 15466 165 9411 Face 18817 45741 9411 12705 Face 18818 9410 15466 9411 Face 18819 34673 21101 25471 Face 18820 34673 26042 21101 Face 18821 33606 19961 18434 Face 18822 47816 8702 19961 Face 18823 220 42743 19162 Face 18824 220 20991 24333 Face 18825 43116 9415 18284 Face 18826 19951 40600 9415 Face 18827 28105 34864 16079 Face 18828 7152 23581 9416 Face 18829 2455 9417 17780 Face 18830 49472 31670 9417 Face 18831 4162 44193 9162 Face 18832 4162 48427 44192 Face 18833 301 9419 21904 Face 18834 301 41025 9419 Face 18835 34481 9420 18979 Face 18836 34481 9396 9420 Face 18837 41785 9421 45034 Face 18838 46708 31089 9421 Face 18839 2894 9422 37165 Face 18840 16927 34471 9422 Face 18841 43557 48694 38561 Face 18842 43558 13125 26061 Face 18843 41010 15428 13781 Face 18844 4103 46846 15428 Face 18845 26069 17221 42671 Face 18846 17426 31082 9425 Face 18847 32691 15368 18108 Face 18848 48232 40776 9426 Face 18849 37622 46809 43 Face 18850 16340 3960 9427 Face 18851 17351 30081 24104 Face 18852 1141 3961 9428 Face 18853 2907 37370 42374 Face 18854 10285 28610 9429 Face 18855 12046 28753 25811 Face 18856 24597 34251 9430 Face 18857 33223 14706 7639 Face 18858 26155 10521 25524 Face 18859 28004 26425 48751 Face 18860 29461 21433 36419 Face 18861 35185 9433 24359 Face 18862 44385 23083 48348 Face 18863 45 9434 48450 Face 18864 30465 44706 9434 Face 18865 1523 38388 4058 Face 18866 20236 3904 38388 Face 18867 2854 9436 24305 Face 18868 34981 44304 9436 Face 18869 1055 9437 2359 Face 18870 31178 20765 9437 Face 18871 17721 9438 33324 Face 18872 33899 9921 23058 Face 18873 1755 9439 28364 Face 18874 33660 35423 11404 Face 18875 4065 49600 36408 Face 18876 4065 22364 49600 Face 18877 2467 9441 28892 Face 18878 9442 17502 21864 Face 18879 26060 9442 21864 Face 18880 25490 34042 37010 Face 18881 16585 9443 20150 Face 18882 37221 25820 28266 Face 18883 46313 9444 11451 Face 18884 165 15466 9444 Face 18885 14209 9445 48568 Face 18886 34164 24094 9445 Face 18887 37617 9446 24609 Face 18888 37617 9488 9446 Face 18889 26728 9447 37880 Face 18890 20802 23095 9447 Face 18891 6615 9448 25834 Face 18892 6615 33998 9448 Face 18893 26100 43765 37478 Face 18894 46412 45444 30537 Face 18895 10560 24826 22982 Face 18896 32400 48969 43577 Face 18897 912 9451 15929 Face 18898 38438 25968 9451 Face 18899 625 34615 16961 Face 18900 33746 22640 9452 Face 18901 11721 45221 17237 Face 18902 11721 30363 21853 Face 18903 43030 18372 8633 Face 18904 13700 44663 9454 Face 18905 9958 14581 8895 Face 18906 33423 12243 14581 Face 18907 6013 33733 17467 Face 18908 6013 49196 33733 Face 18909 1813 9457 22927 Face 18910 1813 43853 9457 Face 18911 2757 36306 26007 Face 18912 18305 38966 36306 Face 18913 755 41450 20823 Face 18914 755 22446 46838 Face 18915 31034 40250 12722 Face 18916 9461 4854 39570 Face 18917 1441 9461 9460 Face 18918 1441 13667 9461 Face 18919 29083 26611 31893 Face 18920 15441 9539 42994 Face 18921 9462 9463 18003 Face 18922 39517 39716 9463 Face 18923 6690 37303 46749 Face 18924 10799 3409 9464 Face 18925 33079 9465 16849 Face 18926 33079 46941 9465 Face 18927 4985 9466 26546 Face 18928 21956 5308 33962 Face 18929 4985 21956 9466 Face 18930 33848 12063 9467 Face 18931 1675 9468 21122 Face 18932 9469 13311 9468 Face 18933 1675 9469 9468 Face 18934 1675 6080 9469 Face 18935 3220 24822 29974 Face 18936 30079 21328 48096 Face 18937 26453 49209 7461 Face 18938 37865 6517 9471 Face 18939 9473 9472 11983 Face 18940 17623 44493 49331 Face 18941 1696 9473 25147 Face 18942 1696 9472 9473 Face 18943 4291 41027 32557 Face 18944 4291 27090 41028 Face 18945 22462 9475 4730 Face 18946 5900 643 9475 Face 18947 29614 9476 14695 Face 18948 20727 26959 19673 Face 18949 38929 9477 7449 Face 18950 23354 31386 46423 Face 18951 45909 9478 11012 Face 18952 45909 29638 9478 Face 18953 18187 36565 3882 Face 18954 2147 21920 36565 Face 18955 27485 34197 10384 Face 18956 5506 46742 33479 Face 18957 15962 26186 44336 Face 18958 17438 7227 35389 Face 18959 46943 9482 15515 Face 18960 1623 9481 9482 Face 18961 30543 16830 41842 Face 18962 19304 42735 27846 Face 18963 32980 9484 41568 Face 18964 32979 17883 42232 Face 18965 33409 9485 39377 Face 18966 21008 6288 15760 Face 18967 2271 29561 1790 Face 18968 2271 27104 49433 Face 18969 2893 30332 8155 Face 18970 43792 33542 30332 Face 18971 27396 9488 16821 Face 18972 2372 4973 37714 Face 18973 3000 14708 33106 Face 18974 3000 42775 14708 Face 18975 14593 23925 46032 Face 18976 36729 1263 9490 Face 18977 49638 9491 35471 Face 18978 2191 35388 26367 Face 18979 5515 9492 32718 Face 18980 5515 5454 9492 Face 18981 2193 9493 19514 Face 18982 2193 40019 9493 Face 18983 18293 39297 22884 Face 18984 11898 31441 23840 Face 18985 7448 11492 41446 Face 18986 32616 3982 22899 Face 18987 26374 9496 22737 Face 18988 21975 2392 9496 Face 18989 1821 23166 21076 Face 18990 1821 2580 23166 Face 18991 7047 48188 28148 Face 18992 19469 30235 9498 Face 18993 19995 9499 46954 Face 18994 35997 20045 33109 Face 18995 34769 9500 11526 Face 18996 34769 16518 9500 Face 18997 7366 9501 37102 Face 18998 7366 14943 9501 Face 18999 9949 9502 32603 Face 19000 44572 34388 9502 Face 19001 20405 16291 25171 Face 19002 23477 15338 40006 Face 19003 39360 17118 23676 Face 19004 5371 46288 38261 Face 19005 23031 38895 48758 Face 19006 18017 29983 37179 Face 19007 5 19368 3238 Face 19008 36950 5133 19369 Face 19009 13651 38129 18020 Face 19010 13651 17651 38129 Face 19011 9509 31646 31609 Face 19012 40083 28179 9508 Face 19013 2607 9509 20914 Face 19014 2607 31646 9509 Face 19015 25446 25035 18622 Face 19016 36833 29011 9510 Face 19017 44685 9511 346 Face 19018 1801 24691 9511 Face 19019 43954 9512 30449 Face 19020 43411 45880 9512 Face 19021 15243 15884 7434 Face 19022 4465 18696 9513 Face 19023 30030 9514 19668 Face 19024 5294 40967 35484 Face 19025 740 32946 15352 Face 19026 31599 24947 9515 Face 19027 680 9516 39356 Face 19028 36427 45725 14431 Face 19029 48612 48853 22738 Face 19030 4545 5999 30451 Face 19031 6501 9518 13746 Face 19032 6501 21894 47846 Face 19033 39492 9519 30841 Face 19034 42943 13114 9519 Face 19035 4699 9520 30542 Face 19036 4699 11705 23969 Face 19037 24635 18523 10248 Face 19038 6196 19981 43806 Face 19039 5544 9522 47069 Face 19040 12353 29990 9522 Face 19041 39393 9523 46786 Face 19042 9524 44285 9523 Face 19043 39394 9524 9523 Face 19044 3 43825 48499 Face 19045 2044 16522 33012 Face 19046 45970 32450 9525 Face 19047 34983 31741 4079 Face 19048 32076 44011 11229 Face 19049 18145 9527 11679 Face 19050 18144 24429 36877 Face 19051 3921 9528 12672 Face 19052 3921 11679 9528 Face 19053 26752 35445 29754 Face 19054 49076 32012 42100 Face 19055 29915 9530 8458 Face 19056 1884 6009 9530 Face 19057 5767 9531 24128 Face 19058 5767 22609 9531 Face 19059 3950 45675 30399 Face 19060 3950 31028 9532 Face 19061 4102 9533 32847 Face 19062 4102 39195 9533 Face 19063 25186 42436 5937 Face 19064 34852 24240 49913 Face 19065 20599 41468 32180 Face 19066 1801 9511 9535 Face 19067 3793 38768 30620 Face 19068 3793 36910 38768 Face 19069 30985 9537 48598 Face 19070 30986 27252 14345 Face 19071 9539 9538 42994 Face 19072 7009 10054 35926 Face 19073 40543 37064 25025 Face 19074 40543 35926 37064 Face 19075 239 39329 41642 Face 19076 38401 8109 9540 Face 19077 8982 26457 13750 Face 19078 32206 38680 26456 Face 19079 3132 9542 23331 Face 19080 3132 33792 9542 Face 19081 26650 9543 13979 Face 19082 13117 5949 9543 Face 19083 5 19091 24465 Face 19084 5 22684 40237 Face 19085 9593 44922 34838 Face 19086 21370 1498 9545 Face 19087 35477 24100 13920 Face 19088 20079 11646 9546 Face 19089 22979 24332 6429 Face 19090 5748 40790 9547 Face 19091 4384 9548 788 Face 19092 24403 33540 37704 Face 19093 38506 9549 35400 Face 19094 38506 25858 9549 Face 19095 28076 9550 41407 Face 19096 44787 14610 24598 Face 19097 1449 28076 7611 Face 19098 42910 4377 44787 Face 19099 27799 33558 49999 Face 19100 1449 24004 9552 Face 19101 31492 14804 10640 Face 19102 27038 21232 15216 Face 19103 44148 45385 19536 Face 19104 30636 17308 9554 Face 19105 28829 9555 7991 Face 19106 35548 24733 9555 Face 19107 48002 9556 27010 Face 19108 9558 15400 22155 Face 19109 18832 45897 22499 Face 19110 1288 22155 14394 Face 19111 1288 9558 22155 Face 19112 1288 27887 9558 Face 19113 1620 27039 36402 Face 19114 33898 2437 9559 Face 19115 1620 40577 30295 Face 19116 1620 36402 27573 Face 19117 5137 9561 3590 Face 19118 5137 5136 9561 Face 19119 37746 9562 12022 Face 19120 29868 44733 9562 Face 19121 23143 25032 10311 Face 19122 24490 32510 9563 Face 19123 2836 9564 25076 Face 19124 2836 5315 9564 Face 19125 11704 9565 36296 Face 19126 27518 19268 9565 Face 19127 25093 11704 18482 Face 19128 25093 17022 9566 Face 19129 3042 23148 19911 Face 19130 20287 17353 15650 Face 19131 27412 34820 8670 Face 19132 629 33263 9568 Face 19133 3382 9569 24267 Face 19134 17867 6387 19138 Face 19135 4293 9570 14141 Face 19136 4293 38364 9570 Face 19137 7578 35180 747 Face 19138 7578 36644 9571 Face 19139 7477 9572 17541 Face 19140 7477 49097 9572 Face 19141 23106 18529 35583 Face 19142 44176 14940 25433 Face 19143 2605 9574 35226 Face 19144 25842 22957 9574 Face 19145 27616 9575 879 Face 19146 27615 12934 30318 Face 19147 30489 9576 21051 Face 19148 35067 12529 23903 Face 19149 29454 47511 24021 Face 19150 43481 11083 15843 Face 19151 25482 47129 16929 Face 19152 12253 4692 35216 Face 19153 3966 9579 44619 Face 19154 3966 29716 9579 Face 19155 25287 9580 16123 Face 19156 34643 11236 24202 Face 19157 33417 47002 16390 Face 19158 43559 18114 9581 Face 19159 23499 9582 14507 Face 19160 10698 21374 9582 Face 19161 40114 28171 5795 Face 19162 21126 34085 49443 Face 19163 34534 41631 16482 Face 19164 46084 18650 41630 Face 19165 23979 9585 7728 Face 19166 10989 27976 9585 Face 19167 5009 36836 8422 Face 19168 26279 1259 9586 Face 19169 22640 9587 15182 Face 19170 22640 33746 38200 Face 19171 29960 9588 10836 Face 19172 29960 25209 39433 Face 19173 37298 9589 4579 Face 19174 37298 29656 9589 Face 19175 2249 9590 16192 Face 19176 22188 5545 34959 Face 19177 2568 9591 39754 Face 19178 26533 6350 36127 Face 19179 18420 9592 35168 Face 19180 42877 17755 9592 Face 19181 23822 9593 5543 Face 19182 23822 44922 9593 Face 19183 25028 17304 8275 Face 19184 25028 40405 17304 Face 19185 10382 25028 34940 Face 19186 44740 40405 9595 Face 19187 36134 42432 8373 Face 19188 48041 17561 9596 Face 19189 43933 9597 33635 Face 19190 22867 32107 21466 Face 19191 167 9598 31827 Face 19192 36181 39543 9598 Face 19193 1748 28139 15479 Face 19194 1748 38144 9599 Face 19195 26035 16537 6555 Face 19196 26035 7576 16537 Face 19197 6 29808 27490 Face 19198 6 7844 40919 Face 19199 44806 9602 29536 Face 19200 215 28060 9602 Face 19201 43604 9603 45545 Face 19202 44806 20134 36872 Face 19203 11216 34360 30007 Face 19204 10043 16171 24266 Face 19205 21666 9605 10785 Face 19206 846 23374 9605 Face 19207 21976 45463 31707 Face 19208 4092 38782 9606 Face 19209 9609 9607 20244 Face 19210 37895 45509 35551 Face 19211 9609 16454 9607 Face 19212 2127 11506 29446 Face 19213 43653 37567 32304 Face 19214 2127 9608 23277 Face 19215 15266 31577 4031 Face 19216 15571 7387 30885 Face 19217 40464 9611 14828 Face 19218 1916 19172 24751 Face 19219 2638 9612 32246 Face 19220 2638 20122 22736 Face 19221 2638 9613 47957 Face 19222 26229 40567 9613 Face 19223 47001 9614 7347 Face 19224 45089 34628 9614 Face 19225 30312 9615 25738 Face 19226 44093 19852 9615 Face 19227 27923 19487 7774 Face 19228 19900 26483 9616 Face 19229 4981 9617 11559 Face 19230 45445 20269 31878 Face 19231 13268 46434 25426 Face 19232 28493 49580 9619 Face 19233 27848 49040 17025 Face 19234 27848 28493 9619 Face 19235 45552 9620 34190 Face 19236 14572 3168 16571 Face 19237 31258 47605 37609 Face 19238 40943 47074 16310 Face 19239 15126 23376 20846 Face 19240 718 25510 9622 Face 19241 48084 38219 34469 Face 19242 31142 44622 9623 Face 19243 27921 31142 9623 Face 19244 27921 14987 9624 Face 19245 14232 9625 46757 Face 19246 19683 8660 18118 Face 19247 21606 16002 28473 Face 19248 23139 33246 9626 Face 19249 17297 45558 4941 Face 19250 3474 12973 29979 Face 19251 21725 9628 48548 Face 19252 40230 3030 9628 Face 19253 11500 27192 42538 Face 19254 40230 9628 36540 Face 19255 238 9630 39537 Face 19256 238 27192 11500 Face 19257 2874 9631 35275 Face 19258 2874 37997 9631 Face 19259 29256 9632 18385 Face 19260 44439 19942 9632 Face 19261 46003 9633 12892 Face 19262 40871 10044 22784 Face 19263 1168 9634 5359 Face 19264 32976 42352 47230 Face 19265 32238 9635 10197 Face 19266 32239 11484 21179 Face 19267 46662 30796 16574 Face 19268 35310 45368 22942 Face 19269 27524 12915 27983 Face 19270 3598 32707 44682 Face 19271 12915 9638 27983 Face 19272 40554 27752 34690 Face 19273 49578 33195 12743 Face 19274 4161 41671 9639 Face 19275 1760 9640 18141 Face 19276 39293 32104 9640 Face 19277 41587 30139 34464 Face 19278 41587 42620 30139 Face 19279 18710 19818 6471 Face 19280 36982 14041 46966 Face 19281 24815 9643 39946 Face 19282 39803 14308 23623 Face 19283 2895 24815 39946 Face 19284 2895 13047 48539 Face 19285 9644 9645 41329 Face 19286 20335 14308 39803 Face 19287 1908 19813 24144 Face 19288 1908 31794 37189 Face 19289 44232 27083 17839 Face 19290 46023 46795 9647 Face 19291 22449 32049 12962 Face 19292 3806 41714 32049 Face 19293 692 20149 31422 Face 19294 36176 6347 9649 Face 19295 24021 47977 29454 Face 19296 22415 7688 47353 Face 19297 24021 41144 47977 Face 19298 9043 5058 29233 Face 19299 1706 41889 28369 Face 19300 44134 9314 9652 Face 19301 27842 32467 18346 Face 19302 47762 5351 9653 Face 19303 20544 19329 7199 Face 19304 38452 29304 19329 Face 19305 39938 9655 20448 Face 19306 26297 1657 26073 Face 19307 21583 38613 10130 Face 19308 32494 29765 40980 Face 19309 6626 32494 38613 Face 19310 42723 21799 9657 Face 19311 4921 9658 49703 Face 19312 43332 31913 9658 Face 19313 17673 43643 46018 Face 19314 17672 11030 9659 Face 19315 538 9660 23291 Face 19316 538 27136 9660 Face 19317 7707 15889 28509 Face 19318 26095 29604 9661 Face 19319 46014 9662 25554 Face 19320 30287 25275 24652 Face 19321 22909 13736 42170 Face 19322 23765 3045 48054 Face 19323 4337 26693 20919 Face 19324 18183 5584 9664 Face 19325 41058 9665 23321 Face 19326 18078 25082 9665 Face 19327 31205 45086 7822 Face 19328 9667 5637 36495 Face 19329 22325 25680 9666 Face 19330 22325 27114 25680 Face 19331 31205 22325 9666 Face 19332 910 44053 9668 Face 19333 106 9669 35360 Face 19334 106 37887 30313 Face 19335 2441 12808 39548 Face 19336 13069 28564 35726 Face 19337 32414 9671 36467 Face 19338 40135 1923 27398 Face 19339 44764 9672 38099 Face 19340 35298 12877 9672 Face 19341 409 9673 2829 Face 19342 46301 39625 16784 Face 19343 2312 33937 16167 Face 19344 42956 28897 19248 Face 19345 37025 9675 35561 Face 19346 5465 15556 9675 Face 19347 9677 25888 1971 Face 19348 20183 7877 37919 Face 19349 40407 9677 36169 Face 19350 462 25888 9677 Face 19351 24222 46704 9092 Face 19352 41838 4358 28805 Face 19353 2789 47775 37899 Face 19354 42167 38336 9679 Face 19355 583 40467 33933 Face 19356 583 9395 40467 Face 19357 28684 38585 30206 Face 19358 16047 36346 9681 Face 19359 41441 9682 17871 Face 19360 6466 37021 9682 Face 19361 3914 9683 25051 Face 19362 34561 17919 9683 Face 19363 1721 44398 31181 Face 19364 1721 14387 45540 Face 19365 43974 35776 35828 Face 19366 45245 25816 35776 Face 19367 49043 17280 12763 Face 19368 25339 17521 23426 Face 19369 49043 9687 23426 Face 19370 16030 19977 46567 Face 19371 127 9688 48628 Face 19372 47722 15550 9688 Face 19373 25829 9689 44177 Face 19374 25829 4751 9689 Face 19375 21683 9690 44284 Face 19376 3653 27256 9690 Face 19377 45000 9691 39223 Face 19378 45000 31994 9691 Face 19379 45685 9692 16347 Face 19380 1116 10576 9692 Face 19381 21063 28113 41695 Face 19382 4657 33169 28113 Face 19383 18546 40868 1421 Face 19384 15686 41642 9694 Face 19385 22377 32992 8796 Face 19386 42889 14421 29350 Face 19387 2367 9696 15815 Face 19388 34091 34996 9696 Face 19389 6992 31995 8226 Face 19390 6992 39438 9697 Face 19391 48829 27962 42759 Face 19392 1157 40103 9698 Face 19393 25905 32314 10636 Face 19394 16615 24781 9699 Face 19395 7659 41210 39771 Face 19396 14621 5378 39779 Face 19397 1347 23707 36776 Face 19398 31553 22869 9701 Face 19399 15334 17139 6582 Face 19400 28322 38227 9702 Face 19401 30720 27744 30175 Face 19402 13702 35254 9703 Face 19403 28182 9704 40533 Face 19404 45317 48127 20720 Face 19405 28182 9705 9704 Face 19406 626 38535 9705 Face 19407 29937 30978 19099 Face 19408 45997 44680 9706 Face 19409 43824 37845 21348 Face 19410 35901 32725 23316 Face 19411 31178 9708 20765 Face 19412 27115 1058 9708 Face 19413 17901 37487 28022 Face 19414 11427 350 37485 Face 19415 15656 31525 7828 Face 19416 990 3655 31525 Face 19417 46808 9711 30366 Face 19418 14977 39510 9711 Face 19419 2067 9712 48442 Face 19420 2067 25054 9712 Face 19421 1769 31560 41032 Face 19422 9714 14980 37822 Face 19423 1769 9714 25362 Face 19424 1769 41356 9714 Face 19425 29807 9715 35778 Face 19426 714 40452 9715 Face 19427 6681 9716 46350 Face 19428 6681 49088 9716 Face 19429 40344 9717 2871 Face 19430 48351 45306 9717 Face 19431 63 10006 19305 Face 19432 63 26026 40212 Face 19433 6529 34779 8412 Face 19434 17266 24037 34778 Face 19435 33114 37513 817 Face 19436 41523 30128 41637 Face 19437 20590 9721 29738 Face 19438 29462 12222 30187 Face 19439 2326 9722 15158 Face 19440 2326 20338 9722 Face 19441 44658 9723 9426 Face 19442 23598 29805 9723 Face 19443 32604 9724 31700 Face 19444 32604 31147 9724 Face 19445 734 9725 28222 Face 19446 734 7007 9725 Face 19447 27694 9726 22690 Face 19448 38455 14303 47201 Face 19449 50 48505 43259 Face 19450 50 7575 48505 Face 19451 25530 9728 29871 Face 19452 48907 5413 9728 Face 19453 13794 42400 27300 Face 19454 1501 25074 9729 Face 19455 30126 9730 7937 Face 19456 30126 39937 9730 Face 19457 30895 48056 15829 Face 19458 39343 34872 46386 Face 19459 39343 9732 34872 Face 19460 39234 8003 46307 Face 19461 26083 9733 8090 Face 19462 36569 15247 9733 Face 19463 36067 9734 25621 Face 19464 33483 10719 34187 Face 19465 21790 20253 4714 Face 19466 33627 30234 9735 Face 19467 18433 21790 6297 Face 19468 33627 9735 9736 Face 19469 48084 9737 38219 Face 19470 48084 40772 9737 Face 19471 11185 9738 23483 Face 19472 3654 20127 9738 Face 19473 574 9739 35855 Face 19474 14482 17973 22351 Face 19475 15087 23820 10032 Face 19476 32554 16040 9740 Face 19477 49551 18587 35502 Face 19478 43051 9740 15087 Face 19479 3338 9742 5702 Face 19480 12878 32111 9742 Face 19481 1904 28007 29657 Face 19482 12149 42258 9743 Face 19483 2837 49249 27570 Face 19484 2837 10462 42636 Face 19485 15340 9745 42297 Face 19486 1010 25594 9745 Face 19487 29630 9746 8265 Face 19488 9825 41883 32145 Face 19489 784 9747 9746 Face 19490 784 22759 9747 Face 19491 23845 9748 40832 Face 19492 4144 11117 9748 Face 19493 3735 45951 41950 Face 19494 39850 18917 9749 Face 19495 34067 9750 25070 Face 19496 23420 8102 9750 Face 19497 3387 30956 43280 Face 19498 3387 38813 9751 Face 19499 3175 9752 45766 Face 19500 43073 15227 9752 Face 19501 47048 34818 6494 Face 19502 31633 23150 9753 Face 19503 18271 23928 25264 Face 19504 4445 31572 32690 Face 19505 29379 30832 43399 Face 19506 29379 4497 30832 Face 19507 8704 9756 10289 Face 19508 39023 16255 9756 Face 19509 30609 9757 2042 Face 19510 3815 15379 9757 Face 19511 39853 46334 8476 Face 19512 11025 33887 39613 Face 19513 30090 9759 46125 Face 19514 41138 5154 9759 Face 19515 1004 9760 3256 Face 19516 15387 7145 24300 Face 19517 39874 28257 33612 Face 19518 16738 37198 9761 Face 19519 27109 9763 27763 Face 19520 33152 20685 9763 Face 19521 9762 9763 14477 Face 19522 9762 33823 9763 Face 19523 3125 19363 13547 Face 19524 20770 39969 19363 Face 19525 9767 44695 33443 Face 19526 28377 5246 21536 Face 19527 24252 32662 21094 Face 19528 39731 5386 9766 Face 19529 21489 9767 33443 Face 19530 41872 7545 28377 Face 19531 303 30805 14775 Face 19532 303 42239 30805 Face 19533 1680 9769 12775 Face 19534 1680 25520 9769 Face 19535 4692 9770 16578 Face 19536 12050 1737 9770 Face 19537 4840 9771 9325 Face 19538 4840 10485 9771 Face 19539 33693 36708 8041 Face 19540 26573 23346 9772 Face 19541 48931 41629 49112 Face 19542 4161 9639 9773 Face 19543 16379 19207 28004 Face 19544 16379 27209 19207 Face 19545 27620 9775 22590 Face 19546 27620 41963 9775 Face 19547 1838 41176 15847 Face 19548 44523 30398 14223 Face 19549 13199 11158 14334 Face 19550 2845 11440 18345 Face 19551 10813 9778 8970 Face 19552 31666 19930 35265 Face 19553 24019 22358 22906 Face 19554 15190 11247 9779 Face 19555 617 9780 13384 Face 19556 617 32688 30857 Face 19557 5874 45758 48069 Face 19558 5874 18439 45758 Face 19559 23665 25597 18370 Face 19560 21406 28246 33077 Face 19561 30117 38906 4125 Face 19562 1719 32280 9783 Face 19563 6404 21764 38331 Face 19564 6404 44826 21764 Face 19565 17458 26791 4989 Face 19566 9786 11703 9785 Face 19567 17458 9786 9785 Face 19568 22813 15731 9786 Face 19569 42493 9787 11074 Face 19570 5021 21909 46904 Face 19571 38659 9788 22824 Face 19572 38659 27004 9788 Face 19573 18098 39378 5346 Face 19574 25444 1823 9789 Face 19575 43063 9790 7459 Face 19576 16284 49195 22513 Face 19577 32099 41913 26094 Face 19578 1428 25697 33688 Face 19579 40057 40048 8493 Face 19580 20018 21059 31353 Face 19581 41787 33625 5123 Face 19582 38789 12284 33626 Face 19583 11743 9794 13937 Face 19584 2279 35684 18542 Face 19585 2279 9795 22921 Face 19586 49275 18542 11743 Face 19587 32379 9796 45068 Face 19588 32379 6469 9796 Face 19589 30709 9797 34883 Face 19590 30709 5906 9797 Face 19591 221 9798 3412 Face 19592 221 21365 9798 Face 19593 221 9799 22562 Face 19594 221 3412 9799 Face 19595 420 9800 22035 Face 19596 15460 1949 9800 Face 19597 9802 12937 8548 Face 19598 5456 17403 22100 Face 19599 5456 42706 8206 Face 19600 5456 9801 9802 Face 19601 47112 9803 41463 Face 19602 4403 20564 47258 Face 19603 15816 26400 20436 Face 19604 40485 22120 9804 Face 19605 26357 14810 6194 Face 19606 43354 33310 9805 Face 19607 31896 9806 26003 Face 19608 30132 13826 9806 Face 19609 6922 35116 44090 Face 19610 6922 35247 9807 Face 19611 45270 40067 27780 Face 19612 34328 28489 9808 Face 19613 33652 9809 49187 Face 19614 16762 8713 47087 Face 19615 15756 27768 40251 Face 19616 44038 31639 34024 Face 19617 2830 9811 23407 Face 19618 2830 31546 9811 Face 19619 25936 9812 17691 Face 19620 45129 33748 9812 Face 19621 4153 9813 6427 Face 19622 4153 34322 9813 Face 19623 257 9814 39549 Face 19624 10783 41012 27202 Face 19625 21944 45408 10266 Face 19626 21944 17485 9815 Face 19627 29204 9816 10027 Face 19628 1947 35218 9816 Face 19629 8121 9817 21426 Face 19630 19132 48848 17696 Face 19631 32936 29443 17563 Face 19632 40325 22345 31703 Face 19633 6940 9819 15282 Face 19634 19643 47387 30220 Face 19635 6112 9820 10874 Face 19636 6112 22895 9820 Face 19637 9822 9821 49511 Face 19638 9822 17776 9821 Face 19639 12948 28772 7821 Face 19640 33726 17776 9822 Face 19641 32046 47743 32224 Face 19642 4741 47375 9823 Face 19643 370 45089 9614 Face 19644 37835 48197 9824 Face 19645 17678 9825 9746 Face 19646 17678 41883 9825 Face 19647 49692 9826 31095 Face 19648 2313 42193 43635 Face 19649 48104 9827 12187 Face 19650 831 36155 9827 Face 19651 46946 21755 25917 Face 19652 43944 29247 9828 Face 19653 3505 45848 9214 Face 19654 3505 35906 9829 Face 19655 25592 9830 8097 Face 19656 21921 45185 9830 Face 19657 17971 30793 24088 Face 19658 34395 10228 33604 Face 19659 42099 23736 21908 Face 19660 45537 12240 36875 Face 19661 18214 40191 37661 Face 19662 5724 18253 9833 Face 19663 28470 9834 40137 Face 19664 28470 27606 9834 Face 19665 14702 28056 5636 Face 19666 14702 5450 9835 Face 19667 23760 37755 3694 Face 19668 15479 28139 37756 Face 19669 9840 33194 16850 Face 19670 46562 1853 9837 Face 19671 47362 9839 39913 Face 19672 19608 33194 9838 Face 19673 9838 27892 3470 Face 19674 21491 10818 28945 Face 19675 21491 35130 10818 Face 19676 9838 33194 9840 Face 19677 15759 9841 32396 Face 19678 2801 23648 9841 Face 19679 1756 9842 17056 Face 19680 1756 45321 9842 Face 19681 29454 43481 15844 Face 19682 345 40838 28716 Face 19683 25693 35127 3871 Face 19684 26145 36997 9844 Face 19685 13527 36896 10151 Face 19686 3052 39715 24011 Face 19687 47541 9846 6200 Face 19688 15813 41325 15582 Face 19689 6617 35993 26647 Face 19690 20379 7054 40920 Face 19691 685 23550 7094 Face 19692 685 36113 23550 Face 19693 4863 18035 6539 Face 19694 21316 35751 9849 Face 19695 46884 9850 18866 Face 19696 7628 26614 9850 Face 19697 31021 9851 7162 Face 19698 28411 15130 9851 Face 19699 10041 23484 17785 Face 19700 10041 32062 9852 Face 19701 28265 13057 45739 Face 19702 1234 7182 9853 Face 19703 17785 9855 47205 Face 19704 34442 11858 9854 Face 19705 36132 9855 17785 Face 19706 9854 43482 9855 Face 19707 1669 9856 2659 Face 19708 1669 6187 9856 Face 19709 3549 19687 25466 Face 19710 3549 8601 9857 Face 19711 28241 28751 30894 Face 19712 3937 28288 44364 Face 19713 33156 9859 38729 Face 19714 48800 22001 22546 Face 19715 31021 24612 9851 Face 19716 37524 15016 9860 Face 19717 37674 9861 28323 Face 19718 37674 587 9861 Face 19719 6402 9862 33182 Face 19720 6402 36020 32843 Face 19721 22038 9863 48028 Face 19722 26929 45974 37178 Face 19723 23225 9864 34953 Face 19724 23225 45111 9864 Face 19725 4394 9865 30703 Face 19726 4394 32526 9865 Face 19727 6722 38789 33626 Face 19728 31749 24408 13529 Face 19729 44294 42834 28204 Face 19730 2855 48555 42835 Face 19731 5171 9868 34199 Face 19732 18801 13322 9868 Face 19733 43715 9869 29105 Face 19734 5756 15383 9869 Face 19735 42250 9870 30734 Face 19736 1845 6528 18962 Face 19737 19807 9871 47284 Face 19738 14423 27042 36713 Face 19739 2020 9872 31726 Face 19740 28900 42720 9872 Face 19741 47528 9873 29674 Face 19742 44960 13326 9873 Face 19743 6099 46172 17425 Face 19744 6099 36272 31876 Face 19745 28689 46090 7619 Face 19746 1617 6113 46091 Face 19747 10033 20252 7531 Face 19748 6743 25153 9876 Face 19749 15114 22034 26675 Face 19750 35353 45560 9877 Face 19751 29138 9878 4174 Face 19752 46587 761 31959 Face 19753 49362 9879 4220 Face 19754 3455 122 9879 Face 19755 40508 18610 7640 Face 19756 46405 30080 9880 Face 19757 33741 30174 10688 Face 19758 46405 9880 23366 Face 19759 7882 9882 31768 Face 19760 22097 7132 18377 Face 19761 5828 25023 8480 Face 19762 5828 34270 25023 Face 19763 39117 9884 20066 Face 19764 39117 48500 9884 Face 19765 2485 9885 43431 Face 19766 24499 30700 20350 Face 19767 469 9886 29391 Face 19768 469 48330 9886 Face 19769 1799 9887 35872 Face 19770 1799 10778 9887 Face 19771 40307 9888 25498 Face 19772 43893 17024 9888 Face 19773 1874 23957 32110 Face 19774 1874 46652 23957 Face 19775 1316 9890 39366 Face 19776 19922 16372 30741 Face 19777 42613 40885 32488 Face 19778 45964 25443 31470 Face 19779 3030 9892 9628 Face 19780 41956 31840 9892 Face 19781 37784 9893 46249 Face 19782 9894 30658 19597 Face 19783 37784 31479 9893 Face 19784 2726 28782 9894 Face 19785 4825 17799 14529 Face 19786 4825 29040 9895 Face 19787 21199 39386 8855 Face 19788 2982 41298 9897 Face 19789 9898 28387 41298 Face 19790 42674 1628 28388 Face 19791 38324 16474 29468 Face 19792 9896 28387 9898 Face 19793 3992 9899 22999 Face 19794 16048 9798 20684 Face 19795 4417 38542 42377 Face 19796 4417 5115 9900 Face 19797 27354 9901 9059 Face 19798 15577 6008 42732 Face 19799 3378 9902 33564 Face 19800 3378 827 17772 Face 19801 3378 25815 827 Face 19802 9904 12806 22285 Face 19803 3378 9904 22285 Face 19804 3378 39057 9904 Face 19805 33305 21260 7381 Face 19806 31067 8603 9905 Face 19807 8568 9906 45228 Face 19808 17866 47703 9906 Face 19809 39065 9907 39687 Face 19810 39065 19198 9907 Face 19811 49140 9908 1812 Face 19812 6462 19793 42616 Face 19813 40094 9909 8808 Face 19814 46804 48250 9909 Face 19815 46162 9910 31911 Face 19816 15117 43928 17835 Face 19817 497 9911 43184 Face 19818 13232 41669 22660 Face 19819 3862 9912 17960 Face 19820 12604 26236 17914 Face 19821 25328 9913 35390 Face 19822 25328 4087 9913 Face 19823 28070 9914 6642 Face 19824 32953 25652 20448 Face 19825 30882 42520 20027 Face 19826 49379 13388 9915 Face 19827 4542 38226 19254 Face 19828 4542 26506 38226 Face 19829 13469 41283 19920 Face 19830 13469 25630 9917 Face 19831 21882 9918 34178 Face 19832 48849 34841 9918 Face 19833 28796 9919 23574 Face 19834 28796 24197 47260 Face 19835 24950 23520 35550 Face 19836 24950 21005 43745 Face 19837 17842 9921 26332 Face 19838 3215 30867 9921 Face 19839 3339 49903 12770 Face 19840 38483 25725 35107 Face 19841 641 9923 13271 Face 19842 641 24841 29173 Face 19843 24848 45482 35222 Face 19844 1237 13305 32130 Face 19845 14530 40201 9926 Face 19846 14530 25138 40201 Face 19847 33944 9926 9925 Face 19848 4892 27344 9926 Face 19849 4856 38688 48903 Face 19850 48674 28077 41216 Face 19851 23655 47106 9116 Face 19852 23655 38228 9928 Face 19853 1515 9929 10082 Face 19854 1515 45434 9929 Face 19855 6915 9930 37696 Face 19856 31884 175 28143 Face 19857 24199 48812 7767 Face 19858 18358 5863 9931 Face 19859 44065 48812 24199 Face 19860 25733 13887 9932 Face 19861 17420 30748 33341 Face 19862 11256 34667 47582 Face 19863 21379 46689 37060 Face 19864 21379 30212 9934 Face 19865 807 9935 31626 Face 19866 807 26556 9935 Face 19867 43317 9936 13196 Face 19868 42537 5814 29728 Face 19869 24633 38840 26639 Face 19870 9938 2292 41717 Face 19871 24633 25300 38840 Face 19872 1362 38205 10393 Face 19873 29480 30726 3684 Face 19874 875 18056 9939 Face 19875 28284 9940 31363 Face 19876 28284 22104 9940 Face 19877 24115 9941 6418 Face 19878 24115 13192 9941 Face 19879 2445 9942 18209 Face 19880 2445 21609 38754 Face 19881 9942 9943 18209 Face 19882 9942 40810 9943 Face 19883 28520 9944 39609 Face 19884 28519 5843 31155 Face 19885 42309 21122 9468 Face 19886 4119 2677 28293 Face 19887 29368 30449 9512 Face 19888 2130 19065 33842 Face 19889 15091 9947 39337 Face 19890 10427 8219 32452 Face 19891 31015 9948 32452 Face 19892 31015 10595 9948 Face 19893 42900 9949 5089 Face 19894 42900 9502 9949 Face 19895 4403 9951 45428 Face 19896 25886 3714 44416 Face 19897 9950 9951 22897 Face 19898 9950 23631 37076 Face 19899 34543 9952 12452 Face 19900 21032 23863 9952 Face 19901 24131 39523 31539 Face 19902 764 13735 9953 Face 19903 33828 18475 7148 Face 19904 1133 22587 15292 Face 19905 35162 9955 27304 Face 19906 48237 18349 40016 Face 19907 30148 9956 6353 Face 19908 22126 9267 18834 Face 19909 24125 9957 8910 Face 19910 12721 46348 9957 Face 19911 27801 9958 4474 Face 19912 27801 14581 9958 Face 19913 3203 9959 42920 Face 19914 3203 5217 9959 Face 19915 40337 28249 29568 Face 19916 41918 34353 9960 Face 19917 24597 37655 34251 Face 19918 13138 8863 27597 Face 19919 39949 9962 23255 Face 19920 39949 42626 9962 Face 19921 35816 31575 1933 Face 19922 6636 23672 9963 Face 19923 23536 13827 36979 Face 19924 47429 3077 21306 Face 19925 10511 9965 18695 Face 19926 40359 21759 9965 Face 19927 16960 9966 34319 Face 19928 16960 32855 9966 Face 19929 36781 37731 31285 Face 19930 22631 43988 9967 Face 19931 31858 9968 40351 Face 19932 43045 14754 9968 Face 19933 8127 31240 41516 Face 19934 8127 38589 31240 Face 19935 20401 9970 28151 Face 19936 38030 32043 9970 Face 19937 7813 40611 30280 Face 19938 33121 7501 9971 Face 19939 33121 9972 7501 Face 19940 45861 12844 35942 Face 19941 5863 42395 43985 Face 19942 5863 18358 9973 Face 19943 3004 9974 13116 Face 19944 3004 266 9974 Face 19945 29554 9975 24684 Face 19946 43735 4501 9975 Face 19947 4900 40894 48024 Face 19948 4900 34730 20787 Face 19949 9978 27795 40144 Face 19950 39093 39865 30029 Face 19951 39225 9978 49724 Face 19952 46085 9977 9978 Face 19953 25155 9979 39240 Face 19954 25155 36268 9979 Face 19955 32384 9980 22848 Face 19956 19860 27693 9980 Face 19957 44971 32302 5946 Face 19958 18667 31480 49034 Face 19959 132 9982 34119 Face 19960 25414 32029 9982 Face 19961 30219 9983 36796 Face 19962 1282 8648 22006 Face 19963 17956 31746 22410 Face 19964 17956 36796 31746 Face 19965 2008 9985 34260 Face 19966 47770 2007 35864 Face 19967 13500 9986 27421 Face 19968 38673 30457 45087 Face 19969 2347 17483 40898 Face 19970 13734 48340 9987 Face 19971 36382 9988 13211 Face 19972 48485 39931 9988 Face 19973 48485 9989 14949 Face 19974 16192 41303 9989 Face 19975 13030 9990 15188 Face 19976 36147 14263 9990 Face 19977 21961 9991 13124 Face 19978 21961 39408 9991 Face 19979 29321 20404 28455 Face 19980 28816 31714 9992 Face 19981 1039 34274 27181 Face 19982 11345 28319 34274 Face 19983 32217 34366 29003 Face 19984 25200 5161 9994 Face 19985 41048 45671 3188 Face 19986 22573 31599 45671 Face 19987 1060 29710 47964 Face 19988 1060 36770 18441 Face 19989 1436 9997 20346 Face 19990 1436 48226 9997 Face 19991 29668 9998 11306 Face 19992 13280 37492 9998 Face 19993 29249 9999 40419 Face 19994 29249 7980 9999 Face 19995 22153 42705 21431 Face 19996 29052 15120 15351 Face 19997 6978 32956 19727 Face 19998 6978 45430 10001 Face 19999 29049 10002 21568 Face 20000 2778 42595 31198 Face 20001 30683 33548 8563 Face 20002 2542 16135 10003 Face 20003 1559 42502 12058 Face 20004 22724 3957 42502 Face 20005 37951 10005 9784 Face 20006 3220 20956 10005 Face 20007 40212 10006 63 Face 20008 15576 24184 44248 Face 20009 42267 10007 34359 Face 20010 17988 24749 10007 Face 20011 5619 27134 39113 Face 20012 38555 1479 39879 Face 20013 1186 10009 15862 Face 20014 1186 37084 35925 Face 20015 27622 32090 6165 Face 20016 2970 44914 10010 Face 20017 34079 16290 24166 Face 20018 26141 8401 24316 Face 20019 4172 41120 303 Face 20020 24685 47240 10012 Face 20021 44839 10013 36663 Face 20022 39478 10530 10013 Face 20023 40575 23910 17916 Face 20024 202 48360 10014 Face 20025 9173 40072 8807 Face 20026 36227 27798 40072 Face 20027 15392 10016 45470 Face 20028 15392 23687 10016 Face 20029 37404 22492 24661 Face 20030 37404 27360 10017 Face 20031 40036 10018 8774 Face 20032 24505 7876 10018 Face 20033 32987 10019 45635 Face 20034 32987 4336 14306 Face 20035 16589 23543 45676 Face 20036 39874 33612 35482 Face 20037 19779 39663 24791 Face 20038 10138 23348 22030 Face 20039 482 10022 10101 Face 20040 19654 48784 33886 Face 20041 2003 10023 31755 Face 20042 2003 10817 10023 Face 20043 921 10024 39940 Face 20044 921 17721 10024 Face 20045 2028 47217 15426 Face 20046 41194 3892 21779 Face 20047 17485 10026 15226 Face 20048 41211 22455 10026 Face 20049 24230 10027 30284 Face 20050 24230 10026 10027 Face 20051 21016 10028 7883 Face 20052 2184 23727 13343 Face 20053 15454 10029 45771 Face 20054 15454 17636 10029 Face 20055 10031 31140 18260 Face 20056 32269 6502 10030 Face 20057 10032 27545 15087 Face 20058 48070 10030 10031 Face 20059 19417 13694 7941 Face 20060 19417 10030 14618 Face 20061 6743 10033 1126 Face 20062 6743 38378 10033 Face 20063 32926 10034 829 Face 20064 15602 45761 25789 Face 20065 20885 10035 8053 Face 20066 3027 4510 10035 Face 20067 5962 21086 42850 Face 20068 18736 17028 46503 Face 20069 8310 10037 19378 Face 20070 8310 9718 10037 Face 20071 23149 40434 6620 Face 20072 23149 31339 40434 Face 20073 24061 10039 38544 Face 20074 11465 41904 29057 Face 20075 2616 10040 18360 Face 20076 22681 21807 10040 Face 20077 42950 25747 15832 Face 20078 4088 16442 10041 Face 20079 40031 10042 16895 Face 20080 4571 28433 10042 Face 20081 1131 40211 24266 Face 20082 1131 48820 40211 Face 20083 36321 10044 12605 Face 20084 41396 22784 10044 Face 20085 48837 10045 36131 Face 20086 11985 2104 10045 Face 20087 3459 10046 46182 Face 20088 30771 42162 22356 Face 20089 32318 10047 3379 Face 20090 24754 30299 10047 Face 20091 41281 36254 36942 Face 20092 32161 38147 10048 Face 20093 8386 10049 43470 Face 20094 8386 15487 10049 Face 20095 1750 10050 36502 Face 20096 1750 49485 10050 Face 20097 1326 10051 22612 Face 20098 22720 7626 10051 Face 20099 1326 10052 10051 Face 20100 1326 6672 10052 Face 20101 28786 19389 38797 Face 20102 10054 7009 36837 Face 20103 36365 28786 7608 Face 20104 42613 9538 10054 Face 20105 36941 29806 8984 Face 20106 32381 42361 10055 Face 20107 18996 25253 7463 Face 20108 17579 47817 30137 Face 20109 3355 10057 11879 Face 20110 3355 3472 32035 Face 20111 43717 10058 20549 Face 20112 44939 17338 10058 Face 20113 41923 27450 25409 Face 20114 1704 22946 10059 Face 20115 4965 22798 31740 Face 20116 39784 26659 10060 Face 20117 42865 18455 14150 Face 20118 18076 35147 10061 Face 20119 42127 21538 25502 Face 20120 39993 17367 10062 Face 20121 31365 39993 10062 Face 20122 40909 3354 13330 Face 20123 2411 31365 39140 Face 20124 46668 27984 44064 Face 20125 7249 10065 43086 Face 20126 7249 45684 10065 Face 20127 5485 10066 44905 Face 20128 5485 10967 10066 Face 20129 22875 39291 26936 Face 20130 11258 5387 14164 Face 20131 38124 18655 16941 Face 20132 35176 10685 10068 Face 20133 4619 10069 45383 Face 20134 19826 39349 10069 Face 20135 1135 35742 3677 Face 20136 45064 5772 26063 Face 20137 33770 10071 28555 Face 20138 20324 12920 22786 Face 20139 28499 10072 31597 Face 20140 18685 26703 10072 Face 20141 2113 45148 29406 Face 20142 15082 49955 10073 Face 20143 2529 33995 47658 Face 20144 2529 7190 10074 Face 20145 28710 27182 1315 Face 20146 38458 45409 10075 Face 20147 21144 24462 8596 Face 20148 48208 7180 10076 Face 20149 23616 16976 21613 Face 20150 29188 8580 10077 Face 20151 489 41178 48885 Face 20152 489 22673 41178 Face 20153 41371 10079 15 Face 20154 41371 13075 10079 Face 20155 47811 10080 45521 Face 20156 8799 4712 47459 Face 20157 41992 10081 18283 Face 20158 25333 14864 32159 Face 20159 4454 10082 41802 Face 20160 4454 34851 10082 Face 20161 4454 10083 9067 Face 20162 21596 8800 10083 Face 20163 32660 28051 23382 Face 20164 42011 28586 10084 Face 20165 887 10085 30874 Face 20166 25164 14337 10085 Face 20167 4514 46659 24263 Face 20168 4514 17947 46659 Face 20169 20902 10087 6774 Face 20170 2128 23091 29501 Face 20171 39690 37792 4809 Face 20172 23795 45365 37793 Face 20173 26001 10089 14674 Face 20174 49720 1827 10089 Face 20175 14665 10090 20577 Face 20176 14665 868 39751 Face 20177 204 10091 5774 Face 20178 204 16631 10091 Face 20179 6989 47451 25096 Face 20180 6989 36869 47451 Face 20181 9150 37044 29704 Face 20182 29787 27172 37044 Face 20183 6287 10094 27807 Face 20184 6287 25942 22862 Face 20185 3734 49015 33765 Face 20186 49341 19559 36323 Face 20187 2438 10096 14519 Face 20188 2438 28984 10096 Face 20189 34121 10097 38128 Face 20190 34121 16636 10097 Face 20191 41325 19136 15582 Face 20192 34659 19742 10098 Face 20193 2712 10099 17225 Face 20194 2712 34681 10099 Face 20195 7075 10100 8787 Face 20196 19057 31376 10100 Face 20197 28675 34095 21404 Face 20198 8892 482 34095 Face 20199 35752 48782 5242 Face 20200 49704 31049 28367 Face 20201 25614 11581 16708 Face 20202 5774 19937 10103 Face 20203 22448 10104 7444 Face 20204 31687 2197 26640 Face 20205 2764 10105 35039 Face 20206 2764 27248 10105 Face 20207 31910 46968 19714 Face 20208 2981 15780 10106 Face 20209 33391 48069 9781 Face 20210 6216 28246 44651 Face 20211 29849 10108 33102 Face 20212 48658 7814 24696 Face 20213 33651 10109 6177 Face 20214 14830 29139 10109 Face 20215 3981 10110 29652 Face 20216 26388 37163 10110 Face 20217 4884 10111 29895 Face 20218 4884 27941 10111 Face 20219 20722 10112 27701 Face 20220 8830 31895 47006 Face 20221 1845 10113 8114 Face 20222 42250 30734 10113 Face 20223 11391 10114 27768 Face 20224 35696 42080 16306 Face 20225 21349 37942 14605 Face 20226 42523 9337 16235 Face 20227 14815 17564 24493 Face 20228 2392 28655 34758 Face 20229 3880 40815 21832 Face 20230 3880 35424 10117 Face 20231 3934 31278 45679 Face 20232 17757 33151 31277 Face 20233 2167 10119 4756 Face 20234 18191 13809 10119 Face 20235 28881 48733 10024 Face 20236 38225 14582 47482 Face 20237 46352 19468 2945 Face 20238 6377 27829 10121 Face 20239 23525 10122 43880 Face 20240 23525 30585 10122 Face 20241 34025 10123 17495 Face 20242 795 2784 42006 Face 20243 3668 10124 48624 Face 20244 16053 29708 44239 Face 20245 41506 10125 22483 Face 20246 41506 17815 10125 Face 20247 40154 10126 39649 Face 20248 40154 38648 10126 Face 20249 34378 10127 18588 Face 20250 44927 35623 10127 Face 20251 4726 10128 37429 Face 20252 23336 41354 18463 Face 20253 17774 43659 22973 Face 20254 2884 23761 10129 Face 20255 20927 10130 8122 Face 20256 12408 21583 10130 Face 20257 14387 16288 45540 Face 20258 4150 146 19373 Face 20259 6309 35721 20390 Face 20260 6309 12346 35721 Face 20261 35815 10133 10358 Face 20262 35815 24992 10133 Face 20263 18124 10134 33573 Face 20264 18124 14141 10134 Face 20265 19331 10135 24864 Face 20266 41935 25938 10135 Face 20267 39843 10136 35653 Face 20268 39843 22087 10136 Face 20269 449 10137 18465 Face 20270 23546 30411 10137 Face 20271 26258 10138 22030 Face 20272 10919 29471 10138 Face 20273 25185 10139 18130 Face 20274 26890 14941 40886 Face 20275 21245 23061 311 Face 20276 19502 35206 23061 Face 20277 37080 10141 25744 Face 20278 23471 4797 10141 Face 20279 1601 15723 5084 Face 20280 28195 33507 10142 Face 20281 41260 42877 9592 Face 20282 3423 21317 10143 Face 20283 3423 35822 19921 Face 20284 41260 9592 18420 Face 20285 40892 10145 11651 Face 20286 48523 26632 21861 Face 20287 10145 31806 11651 Face 20288 10145 30599 10146 Face 20289 27263 43570 40098 Face 20290 11027 27985 39766 Face 20291 10147 10148 48346 Face 20292 27003 1855 18934 Face 20293 28733 10149 41190 Face 20294 42566 25293 10149 Face 20295 1760 10150 10998 Face 20296 1760 18141 10150 Face 20297 44846 10151 36896 Face 20298 23161 25398 10151 Face 20299 49438 10152 5847 Face 20300 15046 31292 41524 Face 20301 2088 10153 4014 Face 20302 41427 37377 10153 Face 20303 33030 32053 10316 Face 20304 5136 5137 32194 Face 20305 4769 10155 31522 Face 20306 4769 38494 10155 Face 20307 6230 37805 25581 Face 20308 6230 36789 10156 Face 20309 10431 10157 27157 Face 20310 38045 22285 12806 Face 20311 12291 10158 44603 Face 20312 44797 18371 10158 Face 20313 23709 44798 10158 Face 20314 6079 24469 41404 Face 20315 10161 44377 22799 Face 20316 23272 27554 19018 Face 20317 25024 17499 18458 Face 20318 973 44377 10161 Face 20319 1427 10162 4878 Face 20320 17643 28066 34810 Face 20321 2520 43407 24409 Face 20322 46167 4782 10163 Face 20323 16223 32255 35463 Face 20324 31715 18886 11979 Face 20325 5366 10165 31856 Face 20326 5366 34200 10165 Face 20327 1510 10166 15598 Face 20328 1510 39813 10166 Face 20329 46511 42285 6314 Face 20330 9189 20342 10167 Face 20331 3270 35631 29705 Face 20332 3270 45718 12076 Face 20333 37169 45613 44287 Face 20334 20633 7829 10169 Face 20335 3336 10170 43056 Face 20336 20633 10169 37169 Face 20337 757 10171 34847 Face 20338 44673 37529 26979 Face 20339 2912 10172 13873 Face 20340 2912 21425 10172 Face 20341 931 33964 23799 Face 20342 931 26771 33964 Face 20343 4663 10174 20139 Face 20344 4663 7099 25618 Face 20345 4441 10175 43294 Face 20346 4441 8914 10175 Face 20347 38317 10176 6841 Face 20348 31812 39003 10176 Face 20349 2290 10177 34811 Face 20350 2290 35479 10177 Face 20351 10179 23911 44313 Face 20352 26655 9289 10178 Face 20353 33769 33795 32123 Face 20354 45209 48632 26655 Face 20355 46143 10180 38431 Face 20356 46143 34973 10180 Face 20357 8356 23227 44538 Face 20358 43812 46669 10181 Face 20359 2245 10182 9091 Face 20360 14467 16886 10182 Face 20361 8640 10183 19161 Face 20362 8640 45924 10183 Face 20363 28999 16286 31241 Face 20364 21390 32789 39130 Face 20365 26887 43433 21301 Face 20366 5125 16286 28999 Face 20367 33409 21008 9485 Face 20368 42591 4005 10186 Face 20369 1169 10187 30555 Face 20370 1169 6572 10187 Face 20371 6219 21197 29872 Face 20372 31515 20260 21198 Face 20373 5221 37349 32756 Face 20374 5221 36834 10189 Face 20375 45077 10190 22486 Face 20376 21022 28068 10190 Face 20377 11008 20835 19188 Face 20378 11008 25293 20834 Face 20379 15857 46479 26127 Face 20380 47078 31980 10192 Face 20381 2115 47895 32336 Face 20382 38968 11774 17357 Face 20383 1158 43992 20200 Face 20384 1158 36686 43992 Face 20385 11274 25901 43244 Face 20386 11274 8793 21588 Face 20387 40548 34954 16012 Face 20388 245 49103 10196 Face 20389 43358 10197 2728 Face 20390 31164 6352 10197 Face 20391 756 32766 6462 Face 20392 36092 8638 49048 Face 20393 7126 10199 8845 Face 20394 45763 17920 10199 Face 20395 3180 34417 13355 Face 20396 47862 38258 34417 Face 20397 1690 48016 44326 Face 20398 36258 3924 48017 Face 20399 1534 18755 10203 Face 20400 20721 44675 35605 Face 20401 20987 30923 10202 Face 20402 8789 31256 48855 Face 20403 26888 10204 41988 Face 20404 37661 37600 20554 Face 20405 11897 26888 41988 Face 20406 40955 18214 10205 Face 20407 236 10206 29244 Face 20408 31533 8024 38880 Face 20409 34528 10207 26021 Face 20410 28247 23917 10207 Face 20411 37298 10208 29656 Face 20412 37298 10207 10208 Face 20413 29627 10209 42088 Face 20414 29627 24776 10209 Face 20415 40249 10210 24294 Face 20416 1235 31720 17157 Face 20417 1812 19173 28976 Face 20418 1812 39176 19173 Face 20419 1163 10212 22373 Face 20420 32596 16704 47565 Face 20421 36008 19532 16307 Face 20422 24716 2785 10213 Face 20423 35676 10214 26680 Face 20424 35676 16446 49435 Face 20425 41580 42577 28031 Face 20426 22646 15882 10215 Face 20427 1056 25550 48514 Face 20428 18628 2731 25550 Face 20429 2776 10217 26799 Face 20430 27604 14566 22151 Face 20431 10219 10218 10262 Face 20432 8879 4957 10218 Face 20433 8879 10219 9357 Face 20434 8879 10218 10219 Face 20435 1879 48533 45567 Face 20436 1879 20728 10220 Face 20437 987 30468 5638 Face 20438 17800 7708 20678 Face 20439 99 10222 26172 Face 20440 38857 41368 10222 Face 20441 6154 10223 26341 Face 20442 6154 32116 36897 Face 20443 31965 10224 42806 Face 20444 2241 27919 10224 Face 20445 4295 31563 548 Face 20446 36730 4708 46685 Face 20447 1948 10226 44611 Face 20448 21846 13874 22861 Face 20449 47918 40509 39920 Face 20450 134 5630 10227 Face 20451 17037 48082 29113 Face 20452 504 33604 10228 Face 20453 24476 10229 49102 Face 20454 41578 29549 10229 Face 20455 2157 47595 7498 Face 20456 31186 4618 47595 Face 20457 2157 31186 47595 Face 20458 2157 28602 10231 Face 20459 28079 23487 2773 Face 20460 10233 48248 16383 Face 20461 32500 10233 16383 Face 20462 25387 13537 48118 Face 20463 2146 10234 6504 Face 20464 21468 45212 10234 Face 20465 17427 42101 8653 Face 20466 28758 7657 10235 Face 20467 4305 24508 35212 Face 20468 4305 35944 10236 Face 20469 5708 36886 43905 Face 20470 29580 20273 36886 Face 20471 5708 10238 36886 Face 20472 5708 15679 10238 Face 20473 44358 10239 27605 Face 20474 550 23247 10239 Face 20475 3071 10240 8847 Face 20476 37922 4323 10240 Face 20477 12487 38635 20762 Face 20478 45158 11982 38635 Face 20479 777 10242 32668 Face 20480 34135 3601 17549 Face 20481 30019 32374 29798 Face 20482 16804 33756 36446 Face 20483 23800 35314 19476 Face 20484 23900 48716 36580 Face 20485 10493 10245 16137 Face 20486 10246 29759 10245 Face 20487 2418 10246 10245 Face 20488 15305 42976 21800 Face 20489 20012 10247 16571 Face 20490 38190 24059 28185 Face 20491 17552 10248 32096 Face 20492 17552 39403 10248 Face 20493 2531 10249 31138 Face 20494 2531 18806 10249 Face 20495 24070 40588 28901 Face 20496 24070 48149 10250 Face 20497 4177 31754 1854 Face 20498 4177 10001 31754 Face 20499 4177 10252 10001 Face 20500 4177 849 32876 Face 20501 36022 10253 42872 Face 20502 22313 33373 33680 Face 20503 1727 39469 20944 Face 20504 1727 29819 39469 Face 20505 5829 19351 37337 Face 20506 33791 2080 21031 Face 20507 37815 44597 40780 Face 20508 40573 39407 10256 Face 20509 4902 42312 15601 Face 20510 4902 24193 32060 Face 20511 17608 27451 10806 Face 20512 22501 49985 10258 Face 20513 3816 10259 9125 Face 20514 43735 9975 29554 Face 20515 13806 30828 49018 Face 20516 30824 21116 10260 Face 20517 32829 21630 8630 Face 20518 6561 16362 10261 Face 20519 8877 10262 8878 Face 20520 8877 10219 10262 Face 20521 38516 10263 15953 Face 20522 38516 23475 10263 Face 20523 12239 30665 39530 Face 20524 28353 41525 10264 Face 20525 32625 34874 13797 Face 20526 29533 18607 10265 Face 20527 3441 13988 45407 Face 20528 3441 36374 13988 Face 20529 29649 28903 8537 Face 20530 45908 28911 15222 Face 20531 24852 10268 10803 Face 20532 10269 27944 43313 Face 20533 3283 10269 43313 Face 20534 3283 19155 10269 Face 20535 10671 40722 15687 Face 20536 3274 19282 10270 Face 20537 12843 39887 23865 Face 20538 39428 1562 24748 Face 20539 39921 10272 16005 Face 20540 23203 12371 25691 Face 20541 2716 32844 14507 Face 20542 2716 19272 32844 Face 20543 30422 10274 4668 Face 20544 30422 21589 10274 Face 20545 31968 10275 25184 Face 20546 39815 4799 10275 Face 20547 26422 10276 3508 Face 20548 34473 23339 10276 Face 20549 35870 10277 4608 Face 20550 45540 16288 10277 Face 20551 6670 10278 44384 Face 20552 6670 6128 10278 Face 20553 21296 28048 43709 Face 20554 1205 10879 28048 Face 20555 4551 18329 33183 Face 20556 23000 1401 18329 Face 20557 32973 10281 21671 Face 20558 48862 36749 10281 Face 20559 42842 25170 7948 Face 20560 4757 14565 10282 Face 20561 45541 10283 25689 Face 20562 7989 25521 10283 Face 20563 29929 48057 14444 Face 20564 17607 28270 10284 Face 20565 37561 10285 9429 Face 20566 37561 23195 10285 Face 20567 33714 10286 9049 Face 20568 33714 28501 10286 Face 20569 26907 46577 29919 Face 20570 41070 7562 10287 Face 20571 3650 10288 19774 Face 20572 23668 7562 41070 Face 20573 35821 10289 9756 Face 20574 3773 47201 38815 Face 20575 1807 10290 8033 Face 20576 47518 7505 48669 Face 20577 46200 10291 836 Face 20578 46202 11788 20498 Face 20579 13500 38673 45087 Face 20580 13500 14524 10292 Face 20581 28 40310 7175 Face 20582 28 41606 40309 Face 20583 34445 40763 42960 Face 20584 148 8875 38554 Face 20585 836 10295 32576 Face 20586 836 27401 10295 Face 20587 23463 36073 19862 Face 20588 2426 46463 36073 Face 20589 4499 15976 35032 Face 20590 4499 16803 10297 Face 20591 295 37832 17313 Face 20592 295 40299 37832 Face 20593 35505 10299 18737 Face 20594 2042 9757 10299 Face 20595 24719 31286 1992 Face 20596 12447 32964 10300 Face 20597 43455 33111 6341 Face 20598 45466 8965 10301 Face 20599 49695 10302 37456 Face 20600 49695 26139 10302 Face 20601 1374 10303 36613 Face 20602 1374 18072 10303 Face 20603 38956 11749 30293 Face 20604 2343 11724 19667 Face 20605 29001 27029 8967 Face 20606 2314 13849 27029 Face 20607 10307 11332 27389 Face 20608 9251 42972 44016 Face 20609 28862 44870 8661 Face 20610 9251 16602 44870 Face 20611 44016 16602 9251 Face 20612 32428 10307 10308 Face 20613 20154 10309 17006 Face 20614 4532 24663 10309 Face 20615 44088 25531 1416 Face 20616 30767 2341 22859 Face 20617 16413 20905 13406 Face 20618 2114 23143 20905 Face 20619 10705 32439 28081 Face 20620 37964 20336 44410 Face 20621 31540 16894 32200 Face 20622 12590 20044 45695 Face 20623 26113 10314 33888 Face 20624 26114 48000 35497 Face 20625 38512 10315 18830 Face 20626 38511 9911 10315 Face 20627 5529 10316 44537 Face 20628 5529 25913 10316 Face 20629 25990 33235 31118 Face 20630 7768 48275 10317 Face 20631 2168 10318 6502 Face 20632 48776 21349 10318 Face 20633 21310 10319 9984 Face 20634 49285 3431 10319 Face 20635 24196 10320 1417 Face 20636 977 20687 10320 Face 20637 16151 32270 3485 Face 20638 22321 47471 37000 Face 20639 18757 10322 4908 Face 20640 34492 29472 26469 Face 20641 12972 42336 8229 Face 20642 11644 18131 10323 Face 20643 32473 10324 11952 Face 20644 2161 45081 31065 Face 20645 14782 34485 24782 Face 20646 47398 12575 10325 Face 20647 37827 10326 4159 Face 20648 21066 5138 10326 Face 20649 45953 10327 34193 Face 20650 11946 34035 15336 Face 20651 30684 10328 9307 Face 20652 2918 39973 10328 Face 20653 13238 43436 4121 Face 20654 21558 12099 10329 Face 20655 46876 18195 15127 Face 20656 24206 39312 26507 Face 20657 41213 10331 23922 Face 20658 41213 22777 10331 Face 20659 11738 10332 16861 Face 20660 10333 25062 20054 Face 20661 11738 10333 10332 Face 20662 21448 40687 10333 Face 20663 2731 20548 30669 Face 20664 2731 18628 45819 Face 20665 21356 25445 42095 Face 20666 852 16905 23989 Face 20667 32524 10336 39651 Face 20668 33188 967 10336 Face 20669 6039 10337 43752 Face 20670 6039 24654 10337 Face 20671 13750 22780 31796 Face 20672 32176 31323 22780 Face 20673 49729 10339 24016 Face 20674 49729 12084 10339 Face 20675 11978 48119 20709 Face 20676 17624 34671 47567 Face 20677 39651 10341 26231 Face 20678 39651 10336 10341 Face 20679 4616 10342 35812 Face 20680 4616 46277 10342 Face 20681 4706 10343 23785 Face 20682 38935 25745 29466 Face 20683 41605 37693 3636 Face 20684 14778 1874 10344 Face 20685 48218 10345 13367 Face 20686 5706 4133 10345 Face 20687 46661 36123 19933 Face 20688 5273 1780 10347 Face 20689 10346 10347 30864 Face 20690 10346 39213 44959 Face 20691 40028 40914 8371 Face 20692 40027 18143 47943 Face 20693 2965 10349 25887 Face 20694 40648 23683 10349 Face 20695 18558 39938 25652 Face 20696 24014 10530 26297 Face 20697 39547 26233 22420 Face 20698 31004 16885 26233 Face 20699 5131 37550 11231 Face 20700 39547 19770 10352 Face 20701 20648 47504 7164 Face 20702 10354 8338 26027 Face 20703 20311 10354 10353 Face 20704 5383 135 10354 Face 20705 25242 21315 4897 Face 20706 45666 17106 22178 Face 20707 10355 10356 19153 Face 20708 10355 12259 10356 Face 20709 24948 10357 1291 Face 20710 12758 43613 30008 Face 20711 1698 44236 5392 Face 20712 1698 3068 10358 Face 20713 30033 10359 8261 Face 20714 84 7819 10359 Face 20715 1833 10360 34532 Face 20716 1833 5056 34880 Face 20717 10360 10361 43125 Face 20718 10360 452 10361 Face 20719 18126 44711 25522 Face 20720 5643 5946 44711 Face 20721 25187 10363 9039 Face 20722 5643 44711 18126 Face 20723 44433 10364 4367 Face 20724 30651 38860 10364 Face 20725 31485 24461 6706 Face 20726 13109 8048 45334 Face 20727 20725 49480 5662 Face 20728 1108 8527 10366 Face 20729 705 10367 19781 Face 20730 705 20234 42902 Face 20731 13871 29164 9401 Face 20732 45875 24966 32654 Face 20733 1128 41574 37237 Face 20734 1128 3448 36839 Face 20735 31166 10370 4382 Face 20736 31166 18248 26793 Face 20737 45765 10371 42458 Face 20738 39515 16583 27855 Face 20739 17301 33618 1826 Face 20740 17301 195 33618 Face 20741 10425 34211 31130 Face 20742 21547 20154 17006 Face 20743 951 25817 34241 Face 20744 30783 38414 10374 Face 20745 951 29298 40689 Face 20746 951 44060 10375 Face 20747 3292 36486 6164 Face 20748 32557 20945 36486 Face 20749 40310 10377 7175 Face 20750 17687 27789 10377 Face 20751 25296 45838 10017 Face 20752 39521 43485 10378 Face 20753 4853 30591 33936 Face 20754 4853 39527 30591 Face 20755 33957 25085 43090 Face 20756 1942 31801 10380 Face 20757 33909 10381 1414 Face 20758 4719 38953 36923 Face 20759 47153 10382 49305 Face 20760 47153 9595 10382 Face 20761 20929 33968 32365 Face 20762 596 47265 10383 Face 20763 22994 10384 34197 Face 20764 7395 30762 10384 Face 20765 27833 10385 47728 Face 20766 32253 48780 10385 Face 20767 17087 10386 30443 Face 20768 3391 6539 10386 Face 20769 37276 38967 33093 Face 20770 27759 6763 30010 Face 20771 39236 20228 20093 Face 20772 42120 20515 10388 Face 20773 15523 10389 23520 Face 20774 15523 10390 10389 Face 20775 6550 10390 31106 Face 20776 10391 26240 10390 Face 20777 6550 10391 10390 Face 20778 27418 3833 10391 Face 20779 31613 10392 35110 Face 20780 1951 40507 10392 Face 20781 9938 10393 40927 Face 20782 9938 41717 25300 Face 20783 2640 10394 16869 Face 20784 2640 27247 10394 Face 20785 33608 35755 18273 Face 20786 33607 19991 10395 Face 20787 7096 10396 9653 Face 20788 7096 21046 41998 Face 20789 43133 31838 20464 Face 20790 16834 24248 10397 Face 20791 31800 10398 18203 Face 20792 39957 14704 22821 Face 20793 28180 19541 3543 Face 20794 13371 36965 33117 Face 20795 24587 45956 12651 Face 20796 24586 43124 10400 Face 20797 27578 46229 40545 Face 20798 187 17387 42350 Face 20799 19971 28763 925 Face 20800 2761 42753 10402 Face 20801 1863 10403 28217 Face 20802 38172 8531 47777 Face 20803 1509 45615 36592 Face 20804 21274 13625 39094 Face 20805 2218 47296 36348 Face 20806 32227 43183 36145 Face 20807 18858 23267 579 Face 20808 18857 39468 29819 Face 20809 5649 10407 22639 Face 20810 45775 18388 38433 Face 20811 5164 10408 47311 Face 20812 10409 7970 10408 Face 20813 5164 10409 10408 Face 20814 32623 9171 17162 Face 20815 4975 10410 12607 Face 20816 4975 22912 10410 Face 20817 1590 10411 46532 Face 20818 22747 41640 31500 Face 20819 653 10412 42736 Face 20820 20969 24049 10412 Face 20821 24334 10413 31766 Face 20822 1495 17153 10413 Face 20823 8747 10414 21633 Face 20824 8747 8749 10414 Face 20825 7407 10415 5033 Face 20826 7407 18519 10415 Face 20827 23548 22584 3602 Face 20828 1377 13463 10416 Face 20829 1377 10417 39166 Face 20830 1377 10416 40708 Face 20831 19858 10418 12083 Face 20832 27553 2377 36832 Face 20833 38223 11732 27808 Face 20834 33831 45748 30657 Face 20835 19639 10420 18762 Face 20836 2819 38730 22263 Face 20837 4920 43031 16095 Face 20838 4920 45733 10421 Face 20839 18103 27444 23571 Face 20840 39674 25911 27443 Face 20841 10424 10423 42301 Face 20842 42000 28207 40133 Face 20843 180 48693 30490 Face 20844 180 40133 10424 Face 20845 45240 17012 22508 Face 20846 21547 10373 19669 Face 20847 3087 10426 41519 Face 20848 3087 11121 25694 Face 20849 9948 10427 32452 Face 20850 12234 20729 46640 Face 20851 1202 33537 42754 Face 20852 1202 9301 33350 Face 20853 10445 10429 29888 Face 20854 23140 39760 10429 Face 20855 23140 34650 28436 Face 20856 23140 10429 10445 Face 20857 70 10431 33631 Face 20858 70 22285 38045 Face 20859 21097 10432 43837 Face 20860 15736 41134 10432 Face 20861 3835 24717 18288 Face 20862 3835 37085 24717 Face 20863 46228 40597 7803 Face 20864 17295 43061 29062 Face 20865 15985 18709 45613 Face 20866 5391 34320 10435 Face 20867 2335 10436 33520 Face 20868 36833 9510 10436 Face 20869 795 29257 7022 Face 20870 34025 1217 10437 Face 20871 31270 10438 12622 Face 20872 11169 47262 10438 Face 20873 32815 10439 6138 Face 20874 32815 35889 10439 Face 20875 33104 10440 18759 Face 20876 34509 13743 10440 Face 20877 29161 10441 25907 Face 20878 11453 34420 28104 Face 20879 1952 40186 5718 Face 20880 1952 22842 10443 Face 20881 32860 45760 22214 Face 20882 10442 28005 40186 Face 20883 42982 10444 29784 Face 20884 42982 41875 10444 Face 20885 34650 10445 6366 Face 20886 34650 23140 10445 Face 20887 4430 10446 48276 Face 20888 47133 34161 24645 Face 20889 3808 30727 18074 Face 20890 3808 24828 30727 Face 20891 26932 10448 42719 Face 20892 26932 44590 10448 Face 20893 9044 10449 21095 Face 20894 16054 34220 16114 Face 20895 18857 10450 10254 Face 20896 2293 8204 43374 Face 20897 1307 46024 4829 Face 20898 1307 28325 10451 Face 20899 6342 10452 43382 Face 20900 18444 3691 15365 Face 20901 47371 10453 17962 Face 20902 47371 38475 10453 Face 20903 44393 10454 25654 Face 20904 10453 38475 10454 Face 20905 2758 10455 6141 Face 20906 2758 27340 10455 Face 20907 4132 10456 45777 Face 20908 24778 3890 33246 Face 20909 49091 34761 46337 Face 20910 4132 45777 34761 Face 20911 2583 10458 30784 Face 20912 22083 4405 39915 Face 20913 26487 10459 42302 Face 20914 1782 1663 37712 Face 20915 23436 10460 37628 Face 20916 23436 31511 10460 Face 20917 31739 10461 9963 Face 20918 21714 15370 10461 Face 20919 14301 10462 20760 Face 20920 4710 28169 10462 Face 20921 2078 10463 45478 Face 20922 41853 26860 10463 Face 20923 40042 10464 45596 Face 20924 18613 37856 39699 Face 20925 43845 10465 13245 Face 20926 43845 12372 10465 Face 20927 25474 30965 12874 Face 20928 34537 21457 38233 Face 20929 11496 34742 14233 Face 20930 2299 413 10467 Face 20931 1046 10468 13983 Face 20932 18004 5785 37310 Face 20933 40765 10469 23498 Face 20934 4078 40680 10469 Face 20935 970 10470 11456 Face 20936 25868 11893 10470 Face 20937 2525 10718 43068 Face 20938 21497 32417 21481 Face 20939 22264 34212 8985 Face 20940 38524 17462 10472 Face 20941 14418 25561 21743 Face 20942 14419 22011 42207 Face 20943 4220 39143 26417 Face 20944 4220 9879 10474 Face 20945 20583 31976 41453 Face 20946 2662 30343 10475 Face 20947 41436 20073 7846 Face 20948 43422 6060 48888 Face 20949 34174 10477 37765 Face 20950 1437 9278 10477 Face 20951 44956 10478 23495 Face 20952 10479 3969 30566 Face 20953 37052 10479 30566 Face 20954 15997 20439 27696 Face 20955 30 45916 25763 Face 20956 27842 26197 10480 Face 20957 4785 10481 2014 Face 20958 4785 16373 10481 Face 20959 10481 10482 8191 Face 20960 10481 2501 10482 Face 20961 1623 10483 9481 Face 20962 1623 45202 31880 Face 20963 42273 21211 7569 Face 20964 5155 36246 10484 Face 20965 30085 10485 4840 Face 20966 30085 32312 10485 Face 20967 28059 10486 12713 Face 20968 28059 31149 10486 Face 20969 4812 10487 19462 Face 20970 19147 29635 46574 Face 20971 4903 25361 15728 Face 20972 4903 1720 29944 Face 20973 48683 33732 1938 Face 20974 24701 22882 48227 Face 20975 31482 38297 16500 Face 20976 31483 1355 10490 Face 20977 17065 16812 49124 Face 20978 3758 34943 16812 Face 20979 31288 17020 6944 Face 20980 41508 8427 10492 Face 20981 2418 38587 16599 Face 20982 2418 10245 10493 Face 20983 4244 10494 25833 Face 20984 4244 30553 10494 Face 20985 49051 45109 393 Face 20986 3310 28350 10495 Face 20987 11150 23271 43221 Face 20988 1967 44753 32838 Face 20989 10494 39859 25833 Face 20990 36539 26160 10497 Face 20991 315 42120 10388 Face 20992 44969 15611 10498 Face 20993 16536 27374 6166 Face 20994 1120 11120 10499 Face 20995 26294 47559 7298 Face 20996 8128 40651 47559 Face 20997 27709 44156 9206 Face 20998 39727 20784 41191 Face 20999 18331 10502 39612 Face 21000 3444 43636 10502 Face 21001 5364 38802 27413 Face 21002 40279 24867 38802 Face 21003 15677 40583 12541 Face 21004 15677 5490 10504 Face 21005 1482 20607 8238 Face 21006 1482 24965 20607 Face 21007 20236 10506 3904 Face 21008 1523 29548 10506 Face 21009 45715 10507 19537 Face 21010 41803 5966 44897 Face 21011 8782 46144 38612 Face 21012 8782 46002 10509 Face 21013 10508 10509 38098 Face 21014 46144 8782 10509 Face 21015 4704 10510 29731 Face 21016 44176 27122 14818 Face 21017 47569 10511 22932 Face 21018 23119 19515 10511 Face 21019 12836 16465 46340 Face 21020 17604 30744 23386 Face 21021 5454 10513 9492 Face 21022 36097 39030 36534 Face 21023 6390 10514 16698 Face 21024 6390 21932 10514 Face 21025 3470 25255 42044 Face 21026 13969 2633 30554 Face 21027 5406 10516 11689 Face 21028 42513 19238 19470 Face 21029 27307 45315 36304 Face 21030 1218 17822 41961 Face 21031 22040 10518 44610 Face 21032 17962 23757 10518 Face 21033 18199 49061 41426 Face 21034 3550 31967 38809 Face 21035 15517 21259 32572 Face 21036 15517 46845 21259 Face 21037 1397 17601 31078 Face 21038 1397 25882 17601 Face 21039 5293 10522 3268 Face 21040 5293 7189 10522 Face 21041 43627 24823 5139 Face 21042 20842 2950 10523 Face 21043 27035 10524 48940 Face 21044 27035 36555 10524 Face 21045 619 10525 33092 Face 21046 619 7553 10525 Face 21047 28297 13264 18140 Face 21048 3069 48631 13264 Face 21049 21072 19076 36827 Face 21050 3612 37252 10527 Face 21051 34079 26141 16290 Face 21052 34080 17368 10528 Face 21053 38194 10529 5424 Face 21054 23352 3902 41146 Face 21055 13550 10530 41796 Face 21056 1657 26297 10530 Face 21057 21140 10531 5514 Face 21058 39439 10231 10531 Face 21059 14371 35466 44729 Face 21060 23062 46189 29650 Face 21061 18879 26614 7628 Face 21062 23062 29650 10533 Face 21063 31740 10534 24337 Face 21064 25974 25174 16439 Face 21065 39084 10535 10534 Face 21066 15996 5185 10535 Face 21067 41800 10536 24980 Face 21068 21551 46873 10536 Face 21069 21507 10538 32305 Face 21070 48955 19016 21551 Face 21071 10537 10538 39080 Face 21072 10537 32305 10538 Face 21073 2282 10539 35324 Face 21074 21926 39656 10539 Face 21075 40365 10540 15879 Face 21076 20411 1799 10540 Face 21077 1178 10541 13217 Face 21078 1178 49344 10541 Face 21079 6764 30302 37451 Face 21080 6764 24443 30302 Face 21081 22115 31422 20149 Face 21082 7150 30971 10543 Face 21083 20452 34591 5958 Face 21084 29934 12377 10544 Face 21085 20421 39149 24710 Face 21086 1068 40214 10545 Face 21087 2436 47143 7755 Face 21088 26181 28714 47144 Face 21089 48617 10547 29606 Face 21090 48617 37542 10547 Face 21091 45356 18298 26612 Face 21092 2814 14086 10548 Face 21093 2522 10549 14016 Face 21094 46148 38301 27297 Face 21095 33678 46039 7858 Face 21096 5960 42117 10550 Face 21097 30668 10551 39481 Face 21098 30667 13513 29831 Face 21099 4004 10552 14189 Face 21100 4004 18334 33203 Face 21101 5911 10553 40391 Face 21102 35957 7436 10553 Face 21103 46807 34921 36583 Face 21104 46807 22829 10554 Face 21105 34345 15363 21233 Face 21106 43691 30893 41681 Face 21107 8862 35639 14599 Face 21108 40851 26455 10556 Face 21109 2174 10557 14223 Face 21110 33649 42236 10557 Face 21111 32149 25899 29793 Face 21112 19970 24318 37758 Face 21113 832 10559 5017 Face 21114 832 16449 10559 Face 21115 331 15030 40893 Face 21116 331 24826 15030 Face 21117 1240 10561 38770 Face 21118 1240 42417 24255 Face 21119 29774 16968 3423 Face 21120 31010 49676 17920 Face 21121 10562 10563 31010 Face 21122 10562 49058 10563 Face 21123 6406 48969 24929 Face 21124 6406 30635 50001 Face 21125 46135 10565 39896 Face 21126 35048 40903 23869 Face 21127 35424 10566 10117 Face 21128 2150 23914 10566 Face 21129 827 10567 10568 Face 21130 827 14092 24754 Face 21131 14066 10568 13760 Face 21132 14066 49719 10568 Face 21133 19383 10569 37703 Face 21134 19383 8511 29998 Face 21135 47237 36047 1753 Face 21136 334 39483 24700 Face 21137 23000 47064 31534 Face 21138 4551 1465 33993 Face 21139 38043 20699 41822 Face 21140 28912 8049 10572 Face 21141 1535 22229 27705 Face 21142 1535 9213 22229 Face 21143 10576 39552 9692 Face 21144 34416 18337 10574 Face 21145 28296 10575 10944 Face 21146 37227 27947 21123 Face 21147 26606 31403 16302 Face 21148 34416 10574 10576 Face 21149 40465 36944 48420 Face 21150 31489 16081 27148 Face 21151 19099 36594 7480 Face 21152 38358 15992 37684 Face 21153 39016 16847 9724 Face 21154 45530 14315 38776 Face 21155 34034 10580 46264 Face 21156 22439 10108 29849 Face 21157 22359 10581 33432 Face 21158 493 25044 37606 Face 21159 29641 10582 31969 Face 21160 24828 3808 38450 Face 21161 47166 10583 27364 Face 21162 16757 21385 26902 Face 21163 1355 42081 10490 Face 21164 12490 15904 47525 Face 21165 8035 10585 45400 Face 21166 37506 32701 10585 Face 21167 4661 10586 44937 Face 21168 39687 43759 18087 Face 21169 31328 10587 48058 Face 21170 21930 34082 26405 Face 21171 36361 10588 551 Face 21172 25158 10505 37816 Face 21173 49660 10589 18138 Face 21174 14292 13099 37923 Face 21175 44170 10590 18861 Face 21176 306 41227 24006 Face 21177 565 48914 21463 Face 21178 565 10833 10591 Face 21179 4679 17085 29858 Face 21180 4679 29390 17085 Face 21181 5425 10593 41499 Face 21182 16313 41062 10593 Face 21183 5839 10594 28425 Face 21184 21933 21702 10594 Face 21185 2880 10595 31015 Face 21186 2880 9477 42947 Face 21187 42118 21647 23680 Face 21188 2608 33763 10596 Face 21189 24445 31219 26360 Face 21190 24089 33204 39789 Face 21191 761 31901 31959 Face 21192 761 22123 31900 Face 21193 41953 26917 12662 Face 21194 35867 18607 10599 Face 21195 3184 10600 43578 Face 21196 3184 2577 10600 Face 21197 49245 10601 22773 Face 21198 38757 11749 10601 Face 21199 27102 37046 6768 Face 21200 48488 8663 37046 Face 21201 26785 10603 7406 Face 21202 30330 41664 10603 Face 21203 31188 19365 4779 Face 21204 49349 13801 33901 Face 21205 41664 10605 10603 Face 21206 19370 32332 40559 Face 21207 24918 43394 7811 Face 21208 560 38602 10606 Face 21209 7076 10607 46995 Face 21210 29882 572 10607 Face 21211 7681 32639 3692 Face 21212 25054 28307 48822 Face 21213 2421 46653 18630 Face 21214 45231 19998 10609 Face 21215 191 44700 7927 Face 21216 191 32728 10610 Face 21217 2798 23497 32041 Face 21218 10612 32461 23497 Face 21219 2798 10612 23497 Face 21220 2798 44931 10612 Face 21221 29394 10613 39227 Face 21222 14175 15595 29547 Face 21223 686 10614 38718 Face 21224 686 45125 10614 Face 21225 13620 31193 7425 Face 21226 26803 28704 10615 Face 21227 2732 35477 13920 Face 21228 32248 40939 20079 Face 21229 30082 27972 37425 Face 21230 30082 42713 10617 Face 21231 1006 34496 26784 Face 21232 1006 40123 34497 Face 21233 6235 27813 41701 Face 21234 25812 20322 10619 Face 21235 23171 10620 34745 Face 21236 5889 12814 10620 Face 21237 3302 10621 7627 Face 21238 39066 43861 10621 Face 21239 22469 10622 1912 Face 21240 42121 8354 31481 Face 21241 2072 25237 4962 Face 21242 32098 16655 31713 Face 21243 10823 22506 30608 Face 21244 1117 31615 10624 Face 21245 2033 10625 19833 Face 21246 2033 40185 10625 Face 21247 46173 10626 16074 Face 21248 1912 10622 10626 Face 21249 25282 10627 32580 Face 21250 44916 10391 10627 Face 21251 22651 45294 5745 Face 21252 2822 38922 10628 Face 21253 18267 27828 46395 Face 21254 3394 35960 10629 Face 21255 37624 42643 23939 Face 21256 37624 25175 10630 Face 21257 1894 42617 23209 Face 21258 1894 31377 10631 Face 21259 6095 10632 47553 Face 21260 6095 39894 10632 Face 21261 1153 10633 15614 Face 21262 1153 46473 21845 Face 21263 20424 46859 42431 Face 21264 39387 6735 10634 Face 21265 4885 42906 41005 Face 21266 4885 35309 42906 Face 21267 1209 10636 32314 Face 21268 44046 40680 10636 Face 21269 27596 10637 14916 Face 21270 658 4735 21762 Face 21271 6578 40891 45146 Face 21272 6578 44208 10638 Face 21273 14595 19834 4072 Face 21274 1566 31438 29839 Face 21275 32172 10640 27754 Face 21276 1013 21707 10640 Face 21277 38662 25358 5237 Face 21278 29435 4525 22636 Face 21279 808 25651 20901 Face 21280 48859 20002 25651 Face 21281 808 10643 25651 Face 21282 808 27909 10643 Face 21283 49355 10644 2751 Face 21284 3726 35284 10644 Face 21285 36249 27500 19104 Face 21286 26132 24870 10645 Face 21287 7293 10646 20832 Face 21288 43585 431 10646 Face 21289 7308 10647 18993 Face 21290 38255 48341 10647 Face 21291 11744 18750 37363 Face 21292 4539 57 10648 Face 21293 47202 10649 20306 Face 21294 44384 10278 29963 Face 21295 17007 28234 46106 Face 21296 4340 21967 10650 Face 21297 4221 10651 38367 Face 21298 4221 5479 10651 Face 21299 39294 42591 23790 Face 21300 31202 22862 10652 Face 21301 26305 31003 15149 Face 21302 45871 12424 39583 Face 21303 10655 29767 32047 Face 21304 10579 3661 44502 Face 21305 10579 10655 5892 Face 21306 10579 44502 10655 Face 21307 27669 10656 3997 Face 21308 2595 261 40517 Face 21309 2882 10657 13594 Face 21310 2882 34757 10657 Face 21311 6432 24931 16488 Face 21312 6432 32493 42425 Face 21313 30388 23104 17742 Face 21314 30389 36611 10659 Face 21315 28133 17207 48636 Face 21316 2675 28919 10660 Face 21317 852 35336 16905 Face 21318 33544 21774 10661 Face 21319 4121 14446 22948 Face 21320 4121 29218 14446 Face 21321 857 10663 17245 Face 21322 45982 15052 30017 Face 21323 48161 28221 11723 Face 21324 48162 6729 10664 Face 21325 34684 38366 46173 Face 21326 29054 19124 10665 Face 21327 20263 10666 31054 Face 21328 3404 15906 10666 Face 21329 12107 10667 8942 Face 21330 12107 15987 10667 Face 21331 40256 10668 17311 Face 21332 36949 19822 24345 Face 21333 1797 36550 6228 Face 21334 26411 17446 10669 Face 21335 9271 43945 20968 Face 21336 9271 17833 10670 Face 21337 37274 43183 32227 Face 21338 3274 10270 10671 Face 21339 45759 10672 17336 Face 21340 5971 28980 10672 Face 21341 47947 10673 12974 Face 21342 5932 6101 42585 Face 21343 37183 10674 44891 Face 21344 37184 43907 22049 Face 21345 39955 10675 26208 Face 21346 20400 9620 26764 Face 21347 1811 36007 13489 Face 21348 1811 43369 36007 Face 21349 39518 17829 8363 Face 21350 21056 13250 40002 Face 21351 30068 10678 2819 Face 21352 21107 3566 10678 Face 21353 21271 29438 47540 Face 21354 5086 8492 29439 Face 21355 31767 10680 39299 Face 21356 3758 16812 17065 Face 21357 35646 29265 44490 Face 21358 10810 9504 10681 Face 21359 14413 10682 12245 Face 21360 29373 29265 49667 Face 21361 14614 10683 41321 Face 21362 1710 41352 10683 Face 21363 7950 43140 22029 Face 21364 24464 14998 10684 Face 21365 28951 10685 35176 Face 21366 2104 11985 38697 Face 21367 48287 18500 31987 Face 21368 43829 20844 10686 Face 21369 49971 10687 841 Face 21370 12632 8250 40289 Face 21371 21616 10688 30174 Face 21372 29270 3695 10688 Face 21373 2901 10689 25991 Face 21374 36852 4916 45253 Face 21375 37252 10690 49461 Face 21376 269 27251 10690 Face 21377 45161 10691 17609 Face 21378 45161 35060 32780 Face 21379 27076 10692 7316 Face 21380 27076 13712 10692 Face 21381 24794 48965 7510 Face 21382 10973 30243 43583 Face 21383 4414 28127 21660 Face 21384 44646 29899 10694 Face 21385 40260 31784 46195 Face 21386 2733 736 10695 Face 21387 20894 49007 40911 Face 21388 18733 43794 31409 Face 21389 2413 22316 43395 Face 21390 24186 26241 31983 Face 21391 15745 10698 9582 Face 21392 43789 35884 22930 Face 21393 1502 10699 31062 Face 21394 1502 2597 10699 Face 21395 29482 21794 33447 Face 21396 29482 9812 10700 Face 21397 5101 19011 16341 Face 21398 5101 12237 19011 Face 21399 18778 18390 31621 Face 21400 18778 24727 18390 Face 21401 3926 10703 19448 Face 21402 26631 12809 30968 Face 21403 3926 10704 29546 Face 21404 26632 30060 10704 Face 21405 46515 10705 47925 Face 21406 46515 32439 10705 Face 21407 39923 10706 22722 Face 21408 42569 8990 10706 Face 21409 126 10707 15405 Face 21410 126 21215 10707 Face 21411 16934 10708 30324 Face 21412 11666 19758 49469 Face 21413 21108 32195 38828 Face 21414 21108 39090 32195 Face 21415 41207 10710 17203 Face 21416 30288 43099 38882 Face 21417 6338 35868 16570 Face 21418 6338 46688 31259 Face 21419 26262 10712 8850 Face 21420 39086 6775 10712 Face 21421 47072 30733 1173 Face 21422 47072 37439 10713 Face 21423 22897 23422 9950 Face 21424 3714 46490 35503 Face 21425 29907 10715 18206 Face 21426 803 24117 34791 Face 21427 20326 33951 7040 Face 21428 4351 1933 10716 Face 21429 28157 44613 14288 Face 21430 48687 27308 22033 Face 21431 10471 10718 2525 Face 21432 10471 47323 35304 Face 21433 39698 10719 15350 Face 21434 20731 34187 10719 Face 21435 47281 10720 24806 Face 21436 47281 14758 10720 Face 21437 32283 48316 8618 Face 21438 1177 19895 36223 Face 21439 2371 30359 16630 Face 21440 2371 18811 17349 Face 21441 1439 10723 14269 Face 21442 15537 23327 45387 Face 21443 5040 37269 27903 Face 21444 16489 32462 28356 Face 21445 15343 10725 34456 Face 21446 15343 25997 10725 Face 21447 6576 10726 33721 Face 21448 23537 17264 43154 Face 21449 4766 10727 13280 Face 21450 4766 17394 10727 Face 21451 28400 10728 42111 Face 21452 225 5567 49697 Face 21453 31503 10729 1390 Face 21454 24194 4623 46341 Face 21455 25121 10730 7859 Face 21456 25121 5466 10730 Face 21457 35177 40729 26482 Face 21458 35177 7859 40728 Face 21459 36771 10732 12618 Face 21460 1959 25870 10732 Face 21461 16846 19710 32370 Face 21462 16783 22363 10733 Face 21463 28109 10734 24692 Face 21464 15039 33368 21579 Face 21465 11929 10735 25236 Face 21466 11929 20109 10735 Face 21467 21220 10736 3833 Face 21468 21220 12534 10736 Face 21469 3630 30301 21980 Face 21470 3630 42229 30301 Face 21471 25840 10738 6900 Face 21472 39243 32559 39320 Face 21473 25840 39243 10738 Face 21474 24844 32559 10739 Face 21475 43612 24844 10739 Face 21476 5071 25516 10740 Face 21477 35877 10741 28183 Face 21478 21378 7207 10741 Face 21479 66 10742 18402 Face 21480 15711 4926 44235 Face 21481 157 28038 48793 Face 21482 10794 17784 28038 Face 21483 10743 27667 48793 Face 21484 10743 35859 10744 Face 21485 32842 10745 13747 Face 21486 3210 48140 10745 Face 21487 21268 38558 48288 Face 21488 23482 49981 10746 Face 21489 33008 10747 19756 Face 21490 36615 5041 10747 Face 21491 1508 43595 32478 Face 21492 37047 4655 10748 Face 21493 37967 10749 33987 Face 21494 30034 25976 41032 Face 21495 20477 36917 5106 Face 21496 36646 638 10750 Face 21497 4217 15739 37020 Face 21498 4217 8593 30390 Face 21499 27152 10752 34579 Face 21500 46788 35241 10752 Face 21501 3510 10753 15438 Face 21502 20669 15391 25220 Face 21503 33430 10754 38492 Face 21504 17238 21425 17669 Face 21505 11049 48131 4225 Face 21506 3165 31399 48131 Face 21507 45708 10756 9470 Face 21508 1659 8805 27583 Face 21509 43110 10757 46398 Face 21510 1756 17056 33557 Face 21511 40767 30135 40497 Face 21512 9026 43820 10758 Face 21513 16452 31559 23132 Face 21514 1627 23924 31559 Face 21515 3928 10760 41857 Face 21516 3928 21159 35559 Face 21517 8170 39739 13368 Face 21518 46701 18408 10761 Face 21519 47863 10763 17497 Face 21520 32429 12555 10762 Face 21521 10762 10763 36629 Face 21522 21347 17497 10763 Face 21523 43638 10764 36599 Face 21524 43638 28690 10764 Face 21525 43638 10765 28690 Face 21526 33692 5096 46029 Face 21527 34508 48072 11459 Face 21528 19257 9237 48071 Face 21529 876 49556 3171 Face 21530 13511 23179 10767 Face 21531 28068 10768 10190 Face 21532 29995 23467 26846 Face 21533 4814 25514 40044 Face 21534 4814 31071 25514 Face 21535 26984 31499 8331 Face 21536 26985 5852 41054 Face 21537 33230 10771 38024 Face 21538 11926 18420 35168 Face 21539 6370 10772 18306 Face 21540 28244 12978 42644 Face 21541 34664 10773 27313 Face 21542 34664 24547 13016 Face 21543 46736 10774 9331 Face 21544 40090 34924 10774 Face 21545 47172 10775 39007 Face 21546 24694 39051 10775 Face 21547 45296 36662 27261 Face 21548 43215 8778 10776 Face 21549 24124 10777 3908 Face 21550 2683 28390 10777 Face 21551 22465 10778 15577 Face 21552 40268 9887 10778 Face 21553 10780 17303 19373 Face 21554 10780 48244 17303 Face 21555 146 10780 19373 Face 21556 146 34654 10780 Face 21557 10782 25321 46349 Face 21558 2194 47768 25321 Face 21559 49192 10782 24919 Face 21560 49192 25321 10782 Face 21561 257 10783 27202 Face 21562 26636 18014 10783 Face 21563 48037 10784 47483 Face 21564 48037 5174 38917 Face 21565 4276 10785 9605 Face 21566 22554 33109 20045 Face 21567 10785 10786 21666 Face 21568 20045 44161 27111 Face 21569 32686 46825 18817 Face 21570 2834 6795 10787 Face 21571 809 10788 22070 Face 21572 48278 43678 21895 Face 21573 3021 27893 5883 Face 21574 14982 8897 15671 Face 21575 41948 10790 33444 Face 21576 33318 8700 10790 Face 21577 46472 10791 29802 Face 21578 4983 18570 10791 Face 21579 32156 19117 6263 Face 21580 281 45057 10792 Face 21581 34804 29583 23600 Face 21582 2526 6846 48390 Face 21583 45237 10794 28038 Face 21584 45237 23813 10794 Face 21585 36858 10795 18644 Face 21586 49516 6645 10795 Face 21587 4677 10796 22959 Face 21588 15261 37143 10796 Face 21589 11724 10797 48138 Face 21590 3110 20781 10797 Face 21591 40367 10798 47269 Face 21592 40367 14376 10798 Face 21593 6690 10799 37303 Face 21594 6690 15895 10799 Face 21595 31715 10800 18886 Face 21596 31715 15534 38335 Face 21597 16503 10801 6450 Face 21598 16503 45279 10801 Face 21599 21 10802 26205 Face 21600 15094 10046 26685 Face 21601 23549 42424 40540 Face 21602 16456 24852 47954 Face 21603 1785 10804 6614 Face 21604 34491 10232 10804 Face 21605 40451 10805 28538 Face 21606 37480 5350 10805 Face 21607 18295 10806 27451 Face 21608 45782 2290 10806 Face 21609 22615 28913 18241 Face 21610 41800 35429 28913 Face 21611 6016 38891 23437 Face 21612 6016 677 38891 Face 21613 16472 35110 10392 Face 21614 15838 8661 31614 Face 21615 5177 29373 49667 Face 21616 5177 24466 10810 Face 21617 12282 10811 47568 Face 21618 42130 26652 10811 Face 21619 35230 10812 46770 Face 21620 30305 5940 44692 Face 21621 10869 10813 14302 Face 21622 31666 9778 10813 Face 21623 42855 29796 27141 Face 21624 42269 15109 29796 Face 21625 49339 23997 21030 Face 21626 23029 3913 47584 Face 21627 829 24129 32926 Face 21628 41538 4069 29556 Face 21629 10818 37757 28945 Face 21630 19655 34321 10817 Face 21631 19743 10818 35130 Face 21632 147 37757 10818 Face 21633 28468 10819 38585 Face 21634 47062 14030 38405 Face 21635 5854 10820 38819 Face 21636 5854 25965 48789 Face 21637 5623 10821 25491 Face 21638 26586 8468 10821 Face 21639 37948 10822 49311 Face 21640 10823 22782 10822 Face 21641 37948 10823 10822 Face 21642 49158 22506 10823 Face 21643 20413 36233 44491 Face 21644 12565 35093 26136 Face 21645 840 10825 17496 Face 21646 840 28042 10825 Face 21647 21772 10826 156 Face 21648 37782 44027 25125 Face 21649 15032 10827 8673 Face 21650 771 32542 42676 Face 21651 46097 22868 38510 Face 21652 5423 29329 10828 Face 21653 1850 29589 32871 Face 21654 1850 38235 10829 Face 21655 155 19871 7191 Face 21656 18685 10072 16922 Face 21657 11668 43136 35338 Face 21658 2075 939 43136 Face 21659 35181 46717 38833 Face 21660 1233 17570 10832 Face 21661 1514 10833 37518 Face 21662 30628 45297 10833 Face 21663 5803 38188 294 Face 21664 48778 4589 10834 Face 21665 5826 49616 27880 Face 21666 5826 31712 49616 Face 21667 2093 10836 9588 Face 21668 17924 31625 10836 Face 21669 16402 25866 14761 Face 21670 47094 36447 10837 Face 21671 4915 10838 47493 Face 21672 40480 25674 10838 Face 21673 25181 10839 41304 Face 21674 1293 21234 10839 Face 21675 24002 10840 38004 Face 21676 4689 25129 34796 Face 21677 8876 10841 22226 Face 21678 8876 30958 36478 Face 21679 7771 10842 15077 Face 21680 7771 24496 10842 Face 21681 2468 10843 26247 Face 21682 2468 6753 10843 Face 21683 31226 10844 30631 Face 21684 2914 48453 23405 Face 21685 4656 10845 45859 Face 21686 4656 37418 10845 Face 21687 1414 10846 33909 Face 21688 42209 7543 10846 Face 21689 32399 18544 9123 Face 21690 42050 22199 10847 Face 21691 29504 44672 15570 Face 21692 4041 17400 15170 Face 21693 7585 10849 15737 Face 21694 7585 8007 10849 Face 21695 17177 10850 23289 Face 21696 30160 24652 36093 Face 21697 4850 10851 49213 Face 21698 4850 28366 10851 Face 21699 4505 26490 48451 Face 21700 4505 14817 48573 Face 21701 21443 10853 37734 Face 21702 14357 40061 10853 Face 21703 2697 10854 19995 Face 21704 2697 35983 10854 Face 21705 16750 10855 43475 Face 21706 2791 25124 10855 Face 21707 8900 36189 31846 Face 21708 8900 29822 10856 Face 21709 3191 32592 41969 Face 21710 35481 37643 10857 Face 21711 5317 23333 18583 Face 21712 5317 20891 41812 Face 21713 24934 10967 5485 Face 21714 20850 40267 49934 Face 21715 2036 26372 18154 Face 21716 2036 22852 26372 Face 21717 3220 10861 24822 Face 21718 3220 10005 10861 Face 21719 34613 32713 45962 Face 21720 45785 10103 10862 Face 21721 4937 10863 48810 Face 21722 4937 34632 10863 Face 21723 24051 10864 17554 Face 21724 24051 2954 10864 Face 21725 27258 10865 9113 Face 21726 3003 17082 10865 Face 21727 22211 29323 10865 Face 21728 27668 39672 10866 Face 21729 26037 10867 801 Face 21730 39794 35996 10867 Face 21731 5418 46101 29518 Face 21732 5418 24380 46101 Face 21733 35705 48700 47257 Face 21734 35705 10813 10869 Face 21735 32537 43393 5039 Face 21736 4640 26410 10870 Face 21737 745 10871 37091 Face 21738 28188 41636 26980 Face 21739 28188 47437 17487 Face 21740 21808 3499 16736 Face 21741 13870 10873 34587 Face 21742 407 48173 31316 Face 21743 697 46231 7044 Face 21744 697 23048 36985 Face 21745 697 15189 39467 Face 21746 697 30254 10875 Face 21747 4373 36737 38712 Face 21748 4373 22319 49801 Face 21749 4494 25712 46411 Face 21750 4494 34617 25712 Face 21751 1348 10878 31472 Face 21752 1348 39156 10878 Face 21753 40169 10879 6787 Face 21754 40169 28048 10879 Face 21755 27566 37859 45571 Face 21756 27566 47967 10880 Face 21757 16004 48562 1399 Face 21758 47236 7504 36994 Face 21759 38457 23326 8394 Face 21760 21098 8510 30692 Face 21761 3359 10883 47299 Face 21762 3359 6979 44731 Face 21763 1452 10884 11808 Face 21764 31594 15721 10884 Face 21765 16790 15152 36878 Face 21766 41508 10492 31287 Face 21767 5318 45437 38843 Face 21768 28178 16287 43462 Face 21769 2 10887 34703 Face 21770 2 23170 10887 Face 21771 141 10888 11793 Face 21772 141 6205 48966 Face 21773 20613 10889 48587 Face 21774 20613 25166 31089 Face 21775 2659 46787 10016 Face 21776 2659 3813 10890 Face 21777 14647 34500 12977 Face 21778 1492 23359 10891 Face 21779 25915 10892 32468 Face 21780 25915 16478 10892 Face 21781 5337 38667 22354 Face 21782 5337 19170 38667 Face 21783 178 10894 39981 Face 21784 37236 16648 32288 Face 21785 15837 10895 6733 Face 21786 25083 16408 10895 Face 21787 37678 10896 23844 Face 21788 3255 18188 10896 Face 21789 33659 14956 28592 Face 21790 34409 43560 10897 Face 21791 14360 47741 6916 Face 21792 40436 10897 48087 Face 21793 40073 10899 30733 Face 21794 16327 34865 42464 Face 21795 39208 42396 28276 Face 21796 21753 12593 10900 Face 21797 32436 34334 6477 Face 21798 38282 39419 32718 Face 21799 19701 47789 3276 Face 21800 39625 46301 24357 Face 21801 4944 10903 48752 Face 21802 4944 15004 10903 Face 21803 25351 10904 5621 Face 21804 37472 45421 10904 Face 21805 6927 42271 48904 Face 21806 6927 48303 42271 Face 21807 37357 10906 342 Face 21808 44938 21363 20490 Face 21809 39229 48115 49747 Face 21810 39229 36624 48115 Face 21811 2901 36852 10689 Face 21812 2901 23159 17190 Face 21813 12548 10909 17541 Face 21814 36639 19375 10909 Face 21815 8084 10910 27431 Face 21816 8084 31780 10910 Face 21817 47537 10911 31645 Face 21818 21659 19872 10911 Face 21819 2781 10912 15743 Face 21820 35412 160 32779 Face 21821 8133 37860 6065 Face 21822 8133 24532 10913 Face 21823 15028 10914 25855 Face 21824 15028 42559 10914 Face 21825 986 10915 3298 Face 21826 49375 5936 19741 Face 21827 17597 22459 47927 Face 21828 39351 7555 10916 Face 21829 37835 10917 48197 Face 21830 46304 9829 35906 Face 21831 5549 10918 13001 Face 21832 5549 100 10918 Face 21833 26258 10919 10138 Face 21834 10921 14799 10919 Face 21835 1274 10920 22649 Face 21836 19779 34110 10920 Face 21837 1274 10921 10021 Face 21838 1274 14799 10921 Face 21839 24146 10922 25339 Face 21840 24146 41377 10922 Face 21841 2576 10923 6541 Face 21842 2576 42227 10923 Face 21843 17922 37576 5400 Face 21844 4155 39529 19965 Face 21845 42984 33416 4974 Face 21846 22869 4009 10925 Face 21847 46470 10926 26777 Face 21848 46470 21664 10926 Face 21849 4798 10927 28067 Face 21850 10928 45318 28778 Face 21851 47959 10928 28778 Face 21852 42314 22829 10928 Face 21853 2545 10929 47411 Face 21854 17153 38220 24649 Face 21855 366 36720 24901 Face 21856 366 6736 20533 Face 21857 3638 10931 49134 Face 21858 30808 46750 10931 Face 21859 25889 10932 7709 Face 21860 25889 24134 10932 Face 21861 31586 34826 33110 Face 21862 16267 30430 10933 Face 21863 36299 14048 19112 Face 21864 36445 36676 23207 Face 21865 1701 10935 15557 Face 21866 35280 37384 10935 Face 21867 33370 10936 403 Face 21868 5235 15592 10936 Face 21869 36497 34918 11160 Face 21870 48032 26922 34918 Face 21871 43958 45432 12388 Face 21872 785 7530 30886 Face 21873 6166 10939 8191 Face 21874 6166 8190 10939 Face 21875 33739 15961 4008 Face 21876 3801 5759 29235 Face 21877 30722 10941 39805 Face 21878 3367 27847 40552 Face 21879 4951 10942 23723 Face 21880 4951 24071 10942 Face 21881 37983 25453 6312 Face 21882 23410 27479 25453 Face 21883 46663 10944 10575 Face 21884 2536 5944 10944 Face 21885 20482 10945 18586 Face 21886 47522 19296 10945 Face 21887 37811 10946 15779 Face 21888 34244 11748 10946 Face 21889 29770 10947 7006 Face 21890 5577 29109 27390 Face 21891 5830 30768 15529 Face 21892 21450 187 10948 Face 21893 30768 10949 15529 Face 21894 14445 26872 10949 Face 21895 38396 10950 46940 Face 21896 38396 24817 10950 Face 21897 19352 10951 11716 Face 21898 7567 17935 27459 Face 21899 47688 45949 32407 Face 21900 47688 35383 10952 Face 21901 29902 27268 10250 Face 21902 4116 18210 10953 Face 21903 13647 40949 10602 Face 21904 5517 18763 27649 Face 21905 5152 10955 23051 Face 21906 5152 24538 10955 Face 21907 48370 10956 30509 Face 21908 48370 46316 10956 Face 21909 1818 38922 25798 Face 21910 1818 10628 38922 Face 21911 1637 10958 16147 Face 21912 18265 4578 19806 Face 21913 39771 24845 7659 Face 21914 2130 9946 29368 Face 21915 5650 10960 276 Face 21916 34629 5472 10960 Face 21917 34946 21238 7567 Face 21918 42138 12695 25969 Face 21919 42137 10962 8678 Face 21920 42137 10961 10962 Face 21921 15157 36141 19964 Face 21922 32437 9515 24947 Face 21923 27270 10964 45932 Face 21924 38701 4618 10964 Face 21925 455 10965 38921 Face 21926 37241 10650 26593 Face 21927 1463 33266 2626 Face 21928 1463 5329 26794 Face 21929 36120 10967 24934 Face 21930 36120 26375 33243 Face 21931 19797 10968 23937 Face 21932 19797 41157 33208 Face 21933 3439 10969 49621 Face 21934 18930 43401 24086 Face 21935 46045 10970 13900 Face 21936 46045 5603 42619 Face 21937 2635 37008 13615 Face 21938 2635 14042 37007 Face 21939 15348 38624 20511 Face 21940 225 49697 10972 Face 21941 24794 10973 43583 Face 21942 14027 8339 35664 Face 21943 14291 10974 34363 Face 21944 4230 13075 41371 Face 21945 6345 30167 26755 Face 21946 6345 20163 30167 Face 21947 1402 10976 42317 Face 21948 27540 34357 15107 Face 21949 24747 48698 556 Face 21950 13270 4339 10977 Face 21951 13902 37847 41253 Face 21952 1392 2718 46602 Face 21953 14096 10979 5769 Face 21954 32410 21272 10979 Face 21955 5603 10980 43095 Face 21956 5603 48486 10980 Face 21957 37215 10981 9490 Face 21958 37215 29885 42500 Face 21959 38 10982 23582 Face 21960 11110 15713 10982 Face 21961 4658 35936 46947 Face 21962 4658 7946 35936 Face 21963 43085 27486 17041 Face 21964 5624 4612 25026 Face 21965 17676 43077 24582 Face 21966 17676 42391 10985 Face 21967 1137 27406 42645 Face 21968 46166 16212 27406 Face 21969 3264 10987 9901 Face 21970 21711 22465 10987 Face 21971 8653 10988 8149 Face 21972 8653 42101 10988 Face 21973 48603 10989 9585 Face 21974 34994 32892 10989 Face 21975 25948 10990 48911 Face 21976 25948 33827 35453 Face 21977 13240 43942 36634 Face 21978 2138 22489 17805 Face 21979 41147 10992 34030 Face 21980 36432 949 23558 Face 21981 45827 10993 22779 Face 21982 45363 38189 10993 Face 21983 3082 32917 7561 Face 21984 3082 26393 44858 Face 21985 3572 10995 37290 Face 21986 3572 302 10995 Face 21987 6136 22519 20502 Face 21988 6136 17273 22519 Face 21989 42605 21141 19265 Face 21990 23694 26182 10997 Face 21991 5401 10998 37682 Face 21992 5401 29555 47280 Face 21993 18800 36210 11725 Face 21994 18800 39748 10999 Face 21995 41174 11000 19150 Face 21996 41174 29376 11000 Face 21997 3079 11001 22556 Face 21998 3079 25768 11001 Face 21999 25045 38061 37244 Face 22000 36706 31641 11002 Face 22001 13000 30496 49830 Face 22002 36705 11002 30496 Face 22003 23461 11004 17608 Face 22004 23461 39140 11004 Face 22005 32008 11005 10524 Face 22006 20854 23190 40505 Face 22007 32008 45353 40505 Face 22008 28867 35332 45353 Face 22009 1512 36555 27035 Face 22010 28867 45353 11007 Face 22011 87 11008 19188 Face 22012 87 39359 11008 Face 22013 7850 24553 6172 Face 22014 36787 29398 11009 Face 22015 5848 11010 20928 Face 22016 5848 1528 43529 Face 22017 49143 11011 14278 Face 22018 2861 10374 48432 Face 22019 4080 11012 9478 Face 22020 4080 23741 11012 Face 22021 4375 11013 42799 Face 22022 4375 47813 11013 Face 22023 19642 11014 33569 Face 22024 6940 45072 26149 Face 22025 4149 11015 14592 Face 22026 29004 14626 11015 Face 22027 3107 30695 8939 Face 22028 11017 7812 41951 Face 22029 3107 22283 17290 Face 22030 21453 45146 11017 Face 22031 19403 26617 20679 Face 22032 4560 7352 11018 Face 22033 275 11019 46908 Face 22034 12529 20579 38108 Face 22035 5861 30009 42296 Face 22036 5861 21605 11020 Face 22037 5084 32427 35096 Face 22038 5084 11590 32427 Face 22039 166 11022 36945 Face 22040 29158 16226 11022 Face 22041 1397 38774 34283 Face 22042 13160 27173 43776 Face 22043 318 11024 45119 Face 22044 318 49151 11024 Face 22045 2646 21529 39613 Face 22046 2646 2647 21529 Face 22047 15907 11026 33736 Face 22048 918 17090 11026 Face 22049 36281 48346 10148 Face 22050 42853 39979 27369 Face 22051 3905 30155 41456 Face 22052 3905 24047 11028 Face 22053 41646 16433 32277 Face 22054 30455 30220 47387 Face 22055 4882 37915 12841 Face 22056 25731 32051 11030 Face 22057 26689 11031 38545 Face 22058 978 39196 11031 Face 22059 16732 33413 13571 Face 22060 5748 9547 11032 Face 22061 8816 44320 24548 Face 22062 8816 1616 11033 Face 22063 34224 11034 5352 Face 22064 12886 21056 16901 Face 22065 518 41672 9343 Face 22066 518 18662 41672 Face 22067 36395 48249 24491 Face 22068 36395 18277 11036 Face 22069 21084 41607 2350 Face 22070 1464 32275 11037 Face 22071 11224 24517 16183 Face 22072 544 10102 11038 Face 22073 5955 38803 14690 Face 22074 5955 16982 11039 Face 22075 163 11040 42170 Face 22076 18097 2338 24099 Face 22077 5445 11041 33461 Face 22078 5445 2225 34350 Face 22079 34349 11042 22648 Face 22080 39323 1956 11042 Face 22081 45473 11043 7278 Face 22082 45473 20958 11043 Face 22083 33755 20076 26346 Face 22084 1145 15633 27471 Face 22085 49330 11045 21385 Face 22086 30972 20970 11045 Face 22087 11045 11046 26902 Face 22088 11045 20970 11046 Face 22089 915 40270 6731 Face 22090 31985 41430 26460 Face 22091 32114 47307 43967 Face 22092 6016 23437 47307 Face 22093 30825 17336 10672 Face 22094 3165 48131 11049 Face 22095 24178 11050 49176 Face 22096 28766 39897 11050 Face 22097 22376 11051 23174 Face 22098 14117 37248 11051 Face 22099 3716 21480 28275 Face 22100 21059 13818 11052 Face 22101 3404 33027 15906 Face 22102 3404 44047 11053 Face 22103 3193 11054 46299 Face 22104 43035 49849 11054 Face 22105 5565 29129 6038 Face 22106 5565 20142 38334 Face 22107 28090 11056 20010 Face 22108 28090 43632 11056 Face 22109 43231 11057 19894 Face 22110 20190 408 22892 Face 22111 22835 11058 11057 Face 22112 22835 35207 11058 Face 22113 11060 20723 5640 Face 22114 39 22687 11059 Face 22115 39 11060 24373 Face 22116 39 11059 11060 Face 22117 335 37383 27837 Face 22118 335 40281 48970 Face 22119 26383 41909 29401 Face 22120 3011 18981 41909 Face 22121 6087 36596 44429 Face 22122 6087 38382 36596 Face 22123 45950 32609 44402 Face 22124 45873 25969 32608 Face 22125 1563 28521 35763 Face 22126 1563 23347 37278 Face 22127 6592 11066 31466 Face 22128 6592 20399 11066 Face 22129 811 11067 46070 Face 22130 27684 40387 11067 Face 22131 6834 11068 7471 Face 22132 6834 17501 11068 Face 22133 4283 11069 24052 Face 22134 4283 14591 27958 Face 22135 42796 35202 40357 Face 22136 4091 21236 11070 Face 22137 2957 11071 29172 Face 22138 37323 17121 48768 Face 22139 12716 23111 32229 Face 22140 43708 1871 11072 Face 22141 19247 11073 7664 Face 22142 4787 26827 11073 Face 22143 44958 11074 29588 Face 22144 3466 35408 11074 Face 22145 26701 11075 47413 Face 22146 2265 1148 46129 Face 22147 23368 11076 9254 Face 22148 2477 36753 11076 Face 22149 2778 11077 42595 Face 22150 2778 37589 11077 Face 22151 43544 11078 22740 Face 22152 43543 1786 48029 Face 22153 11078 11079 4325 Face 22154 48029 26858 11079 Face 22155 1465 11080 46323 Face 22156 39705 16694 25438 Face 22157 31157 46848 17200 Face 22158 6797 16495 34747 Face 22159 11081 11082 15865 Face 22160 11081 17200 46848 Face 22161 3933 36441 1253 Face 22162 3933 15843 36441 Face 22163 38569 38666 23315 Face 22164 32341 28567 11084 Face 22165 18200 28976 19173 Face 22166 3666 9636 46662 Face 22167 2282 21926 10539 Face 22168 27082 25942 43667 Face 22169 47010 27082 11086 Face 22170 2282 16216 45658 Face 22171 34288 20191 33041 Face 22172 40589 6130 11088 Face 22173 11090 34346 11088 Face 22174 21673 31490 11089 Face 22175 11784 36222 31532 Face 22176 628 34346 11090 Face 22177 43214 11091 23814 Face 22178 43214 23982 11091 Face 22179 25355 11092 14830 Face 22180 6221 298 11092 Face 22181 26515 11093 20706 Face 22182 18199 41426 11093 Face 22183 45198 11094 21761 Face 22184 41753 11093 26515 Face 22185 2269 11095 15189 Face 22186 25762 8156 48532 Face 22187 36516 11096 49268 Face 22188 8136 26763 11096 Face 22189 12475 11097 35286 Face 22190 25271 39509 11097 Face 22191 37781 11098 25427 Face 22192 45493 48002 11098 Face 22193 42852 11099 12617 Face 22194 36281 18934 27263 Face 22195 45311 11100 25027 Face 22196 1825 29041 11100 Face 22197 44431 27232 17612 Face 22198 44431 30334 11101 Face 22199 32226 11102 15748 Face 22200 45642 37018 11102 Face 22201 21132 11103 10916 Face 22202 13340 21632 11103 Face 22203 31006 45313 36600 Face 22204 500 7247 18192 Face 22205 20534 34938 41829 Face 22206 20534 8356 44538 Face 22207 69 11106 21331 Face 22208 25327 31102 11106 Face 22209 8764 11107 8449 Face 22210 37540 10281 36749 Face 22211 25527 11108 4767 Face 22212 3454 28461 11108 Face 22213 43680 33986 22756 Face 22214 6068 40720 15729 Face 22215 38 11110 10982 Face 22216 38 5869 18155 Face 22217 11602 47407 25307 Face 22218 38 23582 11111 Face 22219 33101 11112 24228 Face 22220 33101 1359 11112 Face 22221 21255 11113 36775 Face 22222 42897 3457 22331 Face 22223 13305 35562 44824 Face 22224 40283 4570 11114 Face 22225 217 43652 32798 Face 22226 217 9946 43652 Face 22227 47682 24983 26290 Face 22228 11117 25635 45919 Face 22229 2284 11117 24983 Face 22230 22743 9748 11117 Face 22231 43996 34051 19366 Face 22232 643 5900 34051 Face 22233 17449 11119 43614 Face 22234 390 47631 11119 Face 22235 4703 11120 41751 Face 22236 4703 10499 11120 Face 22237 10425 19669 34211 Face 22238 36822 3928 17012 Face 22239 10901 28685 3230 Face 22240 10901 46675 28685 Face 22241 40859 11123 19896 Face 22242 40859 34223 11123 Face 22243 3577 49589 7759 Face 22244 31214 414 19612 Face 22245 44513 11125 36343 Face 22246 48493 23775 15440 Face 22247 44513 11126 11125 Face 22248 45053 10286 28501 Face 22249 2247 48976 44514 Face 22250 18239 41465 11127 Face 22251 178 37236 10894 Face 22252 42193 2313 22787 Face 22253 18074 35401 7699 Face 22254 7752 13970 30208 Face 22255 42242 11130 16511 Face 22256 42242 17900 11130 Face 22257 40082 11131 19730 Face 22258 7035 17759 27169 Face 22259 57 40599 31587 Face 22260 57 24687 39828 Face 22261 11144 11133 30983 Face 22262 40905 15690 11133 Face 22263 42868 11134 47795 Face 22264 1228 21755 11134 Face 22265 46357 11135 12128 Face 22266 35100 16766 43202 Face 22267 38399 11136 8900 Face 22268 30899 17804 11136 Face 22269 3814 31019 14534 Face 22270 3814 8348 27591 Face 22271 5739 32352 6983 Face 22272 5739 43327 32352 Face 22273 5747 11139 29340 Face 22274 5747 28546 45120 Face 22275 33173 35603 44249 Face 22276 8487 42874 11140 Face 22277 24966 26935 9402 Face 22278 35197 2535 11141 Face 22279 3223 45570 20224 Face 22280 16897 22208 16765 Face 22281 18233 40905 11133 Face 22282 1150 34729 40905 Face 22283 24388 18233 33895 Face 22284 1150 40905 18233 Face 22285 43279 33349 19219 Face 22286 2941 17384 36083 Face 22287 44846 23161 10151 Face 22288 18641 7496 45610 Face 22289 17544 44752 13984 Face 22290 17544 40035 11147 Face 22291 29289 15801 40488 Face 22292 29289 41941 15801 Face 22293 1834 11149 22114 Face 22294 18241 10807 48715 Face 22295 1967 35325 40664 Face 22296 1967 32838 45575 Face 22297 31737 11151 28769 Face 22298 31737 19874 11151 Face 22299 9024 44449 17324 Face 22300 18697 35666 45475 Face 22301 41500 47361 15675 Face 22302 41501 8484 47361 Face 22303 2930 11154 5393 Face 22304 2930 8055 11154 Face 22305 42038 11155 46413 Face 22306 4808 19386 27727 Face 22307 23021 45584 11066 Face 22308 46829 18776 11156 Face 22309 27604 13304 14566 Face 22310 35989 15089 11157 Face 22311 18345 24527 13200 Face 22312 29078 2844 11158 Face 22313 221 11159 21366 Face 22314 221 22562 11159 Face 22315 1275 29863 37140 Face 22316 1275 36497 11160 Face 22317 14526 34275 12483 Face 22318 36537 29219 11161 Face 22319 34933 11162 44029 Face 22320 39504 31615 44305 Face 22321 18559 11163 38866 Face 22322 18651 30314 31764 Face 22323 7491 11164 34677 Face 22324 18651 31764 41112 Face 22325 11166 11165 18906 Face 22326 36972 20861 19179 Face 22327 1665 11166 6120 Face 22328 28605 20861 36972 Face 22329 106 11167 26343 Face 22330 106 35360 11167 Face 22331 6105 19067 8174 Face 22332 42349 11935 11168 Face 22333 31270 11169 10438 Face 22334 23534 26983 42508 Face 22335 1006 11170 40123 Face 22336 14732 36628 11170 Face 22337 2337 11171 6679 Face 22338 28790 18576 38639 Face 22339 3892 11172 21332 Face 22340 3892 23456 11172 Face 22341 23576 48613 2975 Face 22342 4545 30451 48613 Face 22343 27478 31786 493 Face 22344 27478 4625 11174 Face 22345 29512 11175 9803 Face 22346 29513 6881 44786 Face 22347 16336 17069 9228 Face 22348 11521 17079 11176 Face 22349 45649 20789 12494 Face 22350 2277 9110 11177 Face 22351 49837 20591 7645 Face 22352 3129 18314 20591 Face 22353 26072 11179 16864 Face 22354 39466 20284 37319 Face 22355 42041 44642 24836 Face 22356 26808 29910 11180 Face 22357 1914 42547 20834 Face 22358 16213 48553 33465 Face 22359 6265 11182 38462 Face 22360 6265 30914 11182 Face 22361 43384 21859 41192 Face 22362 43384 24113 11183 Face 22363 31942 43237 7013 Face 22364 2833 711 14821 Face 22365 16683 11185 41644 Face 22366 3654 9738 11185 Face 22367 3236 11186 40444 Face 22368 14176 37750 26033 Face 22369 32105 33812 9268 Face 22370 23294 47664 11187 Face 22371 48507 11188 27286 Face 22372 3180 10112 11188 Face 22373 31366 28140 15273 Face 22374 1881 13565 11189 Face 22375 2215 29577 38593 Face 22376 20764 11515 46049 Face 22377 44733 11191 9562 Face 22378 47207 27006 11191 Face 22379 5869 11192 18155 Face 22380 5869 13354 16978 Face 22381 4802 31405 33251 Face 22382 4802 42873 11193 Face 22383 5397 11194 37245 Face 22384 5397 33399 11194 Face 22385 11196 11195 20150 Face 22386 698 15311 33456 Face 22387 26808 40753 9114 Face 22388 698 33456 11196 Face 22389 31299 47579 18540 Face 22390 44435 47721 11197 Face 22391 27226 11198 17866 Face 22392 46132 8956 11198 Face 22393 22476 11199 453 Face 22394 22476 6622 11199 Face 22395 39732 11200 19125 Face 22396 45191 35856 11200 Face 22397 5245 29926 37547 Face 22398 44002 47023 11201 Face 22399 5245 44002 29926 Face 22400 16525 39437 11202 Face 22401 43093 11203 7179 Face 22402 3460 25479 36544 Face 22403 45380 38283 13936 Face 22404 3460 11203 43093 Face 22405 6154 11205 14903 Face 22406 6154 26341 11205 Face 22407 43429 37932 9171 Face 22408 36725 14436 11206 Face 22409 42651 45032 21539 Face 22410 32558 24083 11207 Face 22411 43249 11208 22147 Face 22412 13155 21311 33572 Face 22413 32894 41273 41105 Face 22414 19715 8134 11209 Face 22415 29757 33135 5570 Face 22416 33833 14924 11210 Face 22417 475 11211 5863 Face 22418 475 33135 11211 Face 22419 39292 11212 46753 Face 22420 39292 47397 11212 Face 22421 4975 22980 22912 Face 22422 4975 6836 24471 Face 22423 49608 20274 24740 Face 22424 16728 21591 47043 Face 22425 6770 11215 34032 Face 22426 6770 15433 44330 Face 22427 28537 41878 7542 Face 22428 28537 24266 11216 Face 22429 38663 11217 19445 Face 22430 19889 2612 11217 Face 22431 3863 11218 30840 Face 22432 19889 11217 38663 Face 22433 4265 11219 29068 Face 22434 4265 35622 11219 Face 22435 31887 11220 20673 Face 22436 31887 14745 11220 Face 22437 9522 11221 35991 Face 22438 9522 16279 11221 Face 22439 26648 43895 13647 Face 22440 44071 5967 13648 Face 22441 5702 36049 3338 Face 22442 23801 17329 36049 Face 22443 35909 11224 13508 Face 22444 35909 24517 11224 Face 22445 18215 32740 1082 Face 22446 28112 47033 32740 Face 22447 39837 41732 8056 Face 22448 18443 20464 11226 Face 22449 34882 12903 13269 Face 22450 34882 20089 40733 Face 22451 32147 11228 28162 Face 22452 30754 19942 48424 Face 22453 9526 11229 10617 Face 22454 9526 38702 31741 Face 22455 6483 11230 35913 Face 22456 6483 37988 11230 Face 22457 12528 11231 37550 Face 22458 48952 28399 11231 Face 22459 6915 31883 9930 Face 22460 15026 24111 31883 Face 22461 5082 11233 34033 Face 22462 14311 36711 23739 Face 22463 24435 41236 15071 Face 22464 5881 27576 36389 Face 22465 31580 11235 17331 Face 22466 17796 1702 44555 Face 22467 3818 11236 34643 Face 22468 3818 44214 11236 Face 22469 44829 11237 16269 Face 22470 44828 6403 11237 Face 22471 5547 11238 27296 Face 22472 16845 46902 45263 Face 22473 6664 11239 17071 Face 22474 37330 40312 11239 Face 22475 17000 29306 1390 Face 22476 727 11290 24194 Face 22477 37962 11241 18724 Face 22478 37962 31543 41111 Face 22479 1594 11242 33345 Face 22480 1594 24811 11242 Face 22481 32789 11243 39130 Face 22482 32789 1271 11243 Face 22483 4491 22694 8277 Face 22484 14626 10597 45767 Face 22485 31518 21670 8495 Face 22486 3362 28254 11245 Face 22487 3878 11246 21881 Face 22488 3878 41231 11246 Face 22489 8956 11247 11198 Face 22490 8956 24685 11247 Face 22491 48318 11248 8555 Face 22492 17792 27721 11248 Face 22493 49259 17343 9413 Face 22494 824 5025 11249 Face 22495 824 39681 5025 Face 22496 824 24612 11250 Face 22497 39453 11251 31864 Face 22498 3056 17769 11251 Face 22499 34848 46069 22658 Face 22500 1119 38744 48937 Face 22501 43805 11253 26036 Face 22502 2085 32132 11253 Face 22503 18101 11254 47893 Face 22504 7905 25090 32426 Face 22505 230 11255 5608 Face 22506 17420 22435 11255 Face 22507 39823 17881 30748 Face 22508 20109 40950 17881 Face 22509 29434 11257 39531 Face 22510 45605 17067 11257 Face 22511 3414 11258 10067 Face 22512 3414 33454 11258 Face 22513 39705 11259 16694 Face 22514 33193 21223 41113 Face 22515 37031 32112 18889 Face 22516 31654 4945 11260 Face 22517 21774 11261 41598 Face 22518 6841 10176 11261 Face 22519 40384 11262 3894 Face 22520 24914 32897 36072 Face 22521 34856 11263 28423 Face 22522 2357 44554 31580 Face 22523 41055 11264 11265 Face 22524 30399 45675 38516 Face 22525 33163 11265 48684 Face 22526 30707 29442 24723 Face 22527 4147 11266 18171 Face 22528 4147 26489 11266 Face 22529 40865 11267 22929 Face 22530 3829 29951 41673 Face 22531 11269 20185 7011 Face 22532 45136 37729 11268 Face 22533 29533 11269 42707 Face 22534 29533 20185 11269 Face 22535 1755 33660 9439 Face 22536 47222 18252 34277 Face 22537 11270 34277 18252 Face 22538 11270 30894 11271 Face 22539 11318 49312 7949 Face 22540 11401 14579 20365 Face 22541 41143 11273 20504 Face 22542 932 22848 11273 Face 22543 25088 11274 43244 Face 22544 25088 8793 11274 Face 22545 8125 11275 36475 Face 22546 8125 41268 11275 Face 22547 12956 11276 1932 Face 22548 2825 35007 39912 Face 22549 31431 11277 11255 Face 22550 2347 4986 45696 Face 22551 32812 11278 41602 Face 22552 40009 4664 29620 Face 22553 3621 11279 7260 Face 22554 46898 6961 11279 Face 22555 33503 11280 37480 Face 22556 37706 27621 11280 Face 22557 18887 44205 30267 Face 22558 28335 15533 49403 Face 22559 8933 11282 272 Face 22560 8933 21326 11282 Face 22561 18091 11283 31247 Face 22562 36482 36618 11283 Face 22563 29909 11284 36334 Face 22564 48110 9848 11284 Face 22565 29909 48111 11284 Face 22566 6042 10044 36321 Face 22567 16126 11286 30193 Face 22568 16126 25340 38314 Face 22569 16126 11287 25340 Face 22570 17740 20797 19674 Face 22571 12443 11288 35727 Face 22572 35254 13702 11288 Face 22573 23877 11289 9887 Face 22574 23877 30161 11289 Face 22575 4623 11290 27352 Face 22576 4623 24194 11290 Face 22577 40697 49588 15481 Face 22578 42511 32899 49262 Face 22579 48775 33033 18221 Face 22580 48774 43551 11292 Face 22581 6271 29936 12834 Face 22582 25727 415 18216 Face 22583 619 11294 12478 Face 22584 619 22872 11294 Face 22585 3687 42972 9251 Face 22586 3687 28419 42972 Face 22587 36642 11296 3066 Face 22588 15185 27 18871 Face 22589 6588 41658 3269 Face 22590 6588 37014 41658 Face 22591 43741 11298 23131 Face 22592 723 18792 46001 Face 22593 41483 44227 28940 Face 22594 22370 9976 13850 Face 22595 26474 11300 3656 Face 22596 26474 17618 11300 Face 22597 38902 11301 46365 Face 22598 843 9893 11301 Face 22599 3633 31732 43119 Face 22600 3633 8691 31732 Face 22601 34401 11303 45946 Face 22602 34401 14982 11303 Face 22603 37975 11304 40849 Face 22604 3335 20643 11304 Face 22605 3800 11305 19999 Face 22606 22731 43058 11305 Face 22607 11632 11306 28088 Face 22608 25116 12800 11306 Face 22609 35068 24330 5584 Face 22610 29491 39115 35061 Face 22611 3521 11308 37732 Face 22612 3521 16202 24225 Face 22613 11311 25416 37711 Face 22614 11311 15802 25416 Face 22615 47118 11310 21858 Face 22616 11311 37711 11310 Face 22617 41439 11311 11310 Face 22618 3032 42056 11311 Face 22619 2702 11312 39573 Face 22620 2702 6840 27521 Face 22621 22490 26841 4555 Face 22622 20295 34333 11313 Face 22623 320 11314 33571 Face 22624 320 24797 28879 Face 22625 40328 11315 42301 Face 22626 14533 31344 47637 Face 22627 38534 11316 29523 Face 22628 15076 4541 16120 Face 22629 229 47163 32162 Face 22630 229 18588 11317 Face 22631 149 11318 45500 Face 22632 149 49312 11318 Face 22633 4269 41332 16292 Face 22634 11320 28615 29789 Face 22635 4269 11320 41332 Face 22636 4269 22092 11320 Face 22637 7154 11321 41053 Face 22638 7154 1292 48906 Face 22639 2573 11322 18862 Face 22640 2573 40797 11322 Face 22641 14328 11323 26384 Face 22642 4277 9605 11323 Face 22643 12989 47467 26500 Face 22644 387 34303 23553 Face 22645 1936 21440 28304 Face 22646 47785 19965 39529 Face 22647 20600 11326 27932 Face 22648 8432 3702 32397 Face 22649 6120 11327 47241 Face 22650 6120 47249 30432 Face 22651 12412 49866 5348 Face 22652 46651 44466 11328 Face 22653 5521 19096 4693 Face 22654 46480 23906 26928 Face 22655 5409 11330 26043 Face 22656 5409 26855 11330 Face 22657 13421 11331 17718 Face 22658 5381 36062 11331 Face 22659 32428 11332 10307 Face 22660 32428 45867 11332 Face 22661 999 38106 21074 Face 22662 36782 16325 11333 Face 22663 29732 38033 8393 Face 22664 29732 20468 11334 Face 22665 30835 34811 10177 Face 22666 23461 48649 11335 Face 22667 41997 40521 21537 Face 22668 41997 28668 40521 Face 22669 2498 17531 27681 Face 22670 2498 32102 17531 Face 22671 27572 36750 19915 Face 22672 12693 32529 11338 Face 22673 4982 11339 26584 Face 22674 37670 7793 23007 Face 22675 7449 11340 35036 Face 22676 7449 34775 11340 Face 22677 33368 11341 26188 Face 22678 33368 46878 11341 Face 22679 37241 11342 10650 Face 22680 23874 4563 46106 Face 22681 33616 11343 3729 Face 22682 37790 25847 37041 Face 22683 21739 11344 29827 Face 22684 2039 4653 11344 Face 22685 1039 11345 34274 Face 22686 1039 20049 25107 Face 22687 42663 11346 31656 Face 22688 99 26172 11346 Face 22689 4419 31296 10383 Face 22690 4419 20780 11347 Face 22691 38548 11348 8853 Face 22692 4613 28804 40205 Face 22693 28218 11349 36042 Face 22694 27356 35882 11349 Face 22695 35055 13745 47882 Face 22696 27793 1111 11524 Face 22697 1758 11351 7015 Face 22698 49637 36417 48407 Face 22699 31315 11352 49948 Face 22700 37968 2261 16890 Face 22701 24780 11353 1485 Face 22702 44094 21567 43747 Face 22703 3636 39345 45674 Face 22704 44372 33583 11354 Face 22705 7742 11355 24494 Face 22706 7742 15640 11355 Face 22707 1794 11356 36739 Face 22708 1794 39161 11356 Face 22709 11534 11357 36309 Face 22710 353 25764 11357 Face 22711 39558 27262 49789 Face 22712 18943 5502 18068 Face 22713 2507 30738 18429 Face 22714 32319 46344 21766 Face 22715 13039 24535 30349 Face 22716 6471 19818 13439 Face 22717 40835 23027 16407 Face 22718 5139 24823 39575 Face 22719 5139 11362 22703 Face 22720 36454 23027 40835 Face 22721 4608 11363 17660 Face 22722 4608 48609 11363 Face 22723 22082 11364 25784 Face 22724 45192 8403 24287 Face 22725 48977 24796 15772 Face 22726 12986 5828 11365 Face 22727 784 11366 30280 Face 22728 29630 22304 11366 Face 22729 784 11367 11366 Face 22730 784 9746 11367 Face 22731 25867 11368 40712 Face 22732 8362 3251 29239 Face 22733 26315 11369 14021 Face 22734 29239 32217 11369 Face 22735 24512 11370 30250 Face 22736 32152 41349 49852 Face 22737 3953 41843 13577 Face 22738 43205 30764 11371 Face 22739 44900 11372 30445 Face 22740 24543 7867 11372 Face 22741 7998 48673 21149 Face 22742 17691 33748 11373 Face 22743 6110 30512 24937 Face 22744 6110 28052 44133 Face 22745 39849 11375 37122 Face 22746 2460 26177 11375 Face 22747 17856 38972 29428 Face 22748 17856 3568 11376 Face 22749 890 33291 10705 Face 22750 890 27422 47934 Face 22751 7392 11378 30331 Face 22752 47479 21951 31228 Face 22753 23661 11379 40227 Face 22754 23661 23749 11379 Face 22755 14835 31636 11020 Face 22756 7754 19917 24881 Face 22757 22250 31456 6811 Face 22758 45238 2333 11381 Face 22759 19008 39671 4492 Face 22760 19009 12591 11382 Face 22761 3783 11383 4254 Face 22762 34619 27722 11383 Face 22763 1300 27996 12736 Face 22764 1300 26620 27996 Face 22765 6575 11385 40828 Face 22766 21202 28856 27777 Face 22767 38474 11386 30690 Face 22768 35548 9555 28828 Face 22769 1094 11387 35809 Face 22770 21941 14282 29615 Face 22771 42600 27961 19332 Face 22772 11389 20794 11388 Face 22773 3964 11389 11388 Face 22774 24039 31844 11389 Face 22775 267 11390 34952 Face 22776 29010 24830 11390 Face 22777 577 11391 28472 Face 22778 35696 10114 11391 Face 22779 2535 34813 36357 Face 22780 2535 33643 11392 Face 22781 46525 11393 7348 Face 22782 38858 16358 11393 Face 22783 4770 11394 48352 Face 22784 32862 22771 15378 Face 22785 6102 11395 2752 Face 22786 6102 40238 25016 Face 22787 49870 23452 18816 Face 22788 19108 24741 11396 Face 22789 11396 11397 35557 Face 22790 11396 43520 11397 Face 22791 34433 27922 21069 Face 22792 12497 16391 49023 Face 22793 24009 11399 17584 Face 22794 12022 23112 38332 Face 22795 44432 37182 9264 Face 22796 9126 31440 11400 Face 22797 149 27333 11272 Face 22798 149 6871 27333 Face 22799 10620 24699 26633 Face 22800 10620 36665 24699 Face 22801 4466 31400 9369 Face 22802 32327 26123 11403 Face 22803 9439 34342 28364 Face 22804 9439 33660 11404 Face 22805 27582 46861 5111 Face 22806 27582 12400 46860 Face 22807 35320 42819 33470 Face 22808 548 31563 42819 Face 22809 34236 11407 8460 Face 22810 34236 13254 24820 Face 22811 317 11408 7883 Face 22812 317 31731 11408 Face 22813 12636 11409 23235 Face 22814 12635 49255 20217 Face 22815 25950 47378 3628 Face 22816 43553 6034 25638 Face 22817 4300 30440 36195 Face 22818 46213 4299 30440 Face 22819 7712 11412 152 Face 22820 22948 10662 26220 Face 22821 2311 11413 8290 Face 22822 14123 6750 31268 Face 22823 6964 11414 14537 Face 22824 42292 16735 11414 Face 22825 3430 11415 38746 Face 22826 3430 6419 11415 Face 22827 39799 22757 13329 Face 22828 45921 1681 24537 Face 22829 3299 29662 19571 Face 22830 13499 20830 40378 Face 22831 3224 11418 21540 Face 22832 3224 31026 11418 Face 22833 19683 27087 34986 Face 22834 37246 33001 11419 Face 22835 205 11420 46933 Face 22836 205 4389 45083 Face 22837 44428 11421 43356 Face 22838 46843 18220 11421 Face 22839 12255 34273 11996 Face 22840 249 3400 22289 Face 22841 5398 11423 36640 Face 22842 5398 44402 11423 Face 22843 46671 40216 22396 Face 22844 27785 5128 40217 Face 22845 1858 30535 35174 Face 22846 15068 6905 20363 Face 22847 1930 11426 47478 Face 22848 45821 5337 11426 Face 22849 41860 11427 37485 Face 22850 41860 2523 11427 Face 22851 40524 32337 15930 Face 22852 40524 28812 46571 Face 22853 32505 35864 4406 Face 22854 27421 9986 11429 Face 22855 12194 11430 94 Face 22856 12194 24476 11430 Face 22857 22398 11431 5703 Face 22858 1222 2796 34556 Face 22859 29488 11432 24261 Face 22860 29488 26040 11432 Face 22861 30755 11433 5885 Face 22862 4128 19658 11433 Face 22863 16043 42935 5247 Face 22864 1423 24515 42935 Face 22865 20186 40118 18593 Face 22866 49068 20556 34858 Face 22867 36257 11436 17327 Face 22868 44896 10203 11436 Face 22869 25590 30100 27686 Face 22870 25589 39098 25594 Face 22871 35581 15789 19716 Face 22872 2627 15144 15789 Face 22873 24886 11439 19906 Face 22874 2627 15789 35581 Face 22875 1151 11440 2845 Face 22876 1151 18994 11440 Face 22877 21957 11441 1080 Face 22878 14719 24497 13344 Face 22879 21957 14719 11441 Face 22880 2561 8015 11442 Face 22881 30481 11443 17794 Face 22882 19485 39676 11443 Face 22883 1469 43961 43349 Face 22884 19485 11443 30481 Face 22885 42521 11445 30203 Face 22886 1142 40068 26575 Face 22887 8764 37540 11107 Face 22888 49032 4700 11446 Face 22889 3620 34131 47469 Face 22890 3620 42629 34131 Face 22891 26891 46822 28094 Face 22892 2172 18178 46656 Face 22893 34863 11449 27587 Face 22894 45340 34426 11449 Face 22895 27998 11450 5011 Face 22896 20302 30105 46724 Face 22897 30197 33655 31581 Face 22898 5592 46313 33655 Face 22899 42929 11452 30666 Face 22900 4805 19081 11452 Face 22901 29161 11453 10441 Face 22902 29161 11968 47652 Face 22903 19291 45338 7630 Face 22904 21284 3334 49812 Face 22905 15295 11455 19591 Face 22906 22133 46191 11455 Face 22907 48448 11456 10470 Face 22908 38764 25612 11456 Face 22909 32361 40652 35634 Face 22910 32361 21388 11457 Face 22911 26975 11458 28159 Face 22912 1505 18135 11458 Face 22913 39838 11459 48072 Face 22914 179 34526 20391 Face 22915 22877 34339 17102 Face 22916 2720 13624 11460 Face 22917 6778 11461 20808 Face 22918 44758 2993 23748 Face 22919 2854 34981 9436 Face 22920 2854 8307 39618 Face 22921 4375 39513 30883 Face 22922 4375 37296 39513 Face 22923 4749 11464 47517 Face 22924 45940 23371 11464 Face 22925 42182 11465 10039 Face 22926 406 10860 11465 Face 22927 6736 35440 8349 Face 22928 27004 6556 38584 Face 22929 44249 11467 9112 Face 22930 15204 17556 11467 Face 22931 1802 11468 30044 Face 22932 1802 34381 11468 Face 22933 7130 11469 44704 Face 22934 7130 43165 35588 Face 22935 46600 25726 464 Face 22936 46599 17831 25726 Face 22937 31568 11471 27339 Face 22938 14900 46018 21626 Face 22939 28410 41519 10426 Face 22940 14131 7634 35488 Face 22941 1538 12172 12383 Face 22942 39506 32038 28756 Face 22943 46601 11474 25706 Face 22944 26053 45048 11474 Face 22945 33647 11475 17870 Face 22946 251 26138 11475 Face 22947 25277 33676 20843 Face 22948 11736 37282 44889 Face 22949 17107 38330 1552 Face 22950 1709 14468 33596 Face 22951 29976 11478 41586 Face 22952 29976 25512 11478 Face 22953 12618 31592 18609 Face 22954 12618 24818 31592 Face 22955 30522 11480 103 Face 22956 30522 42080 11480 Face 22957 17105 49260 34002 Face 22958 3047 22794 43648 Face 22959 1705 19926 10300 Face 22960 19370 10605 11482 Face 22961 5218 11483 26625 Face 22962 5218 5216 11483 Face 22963 2231 11484 32239 Face 22964 2231 17212 11484 Face 22965 1455 39627 2898 Face 22966 1455 41558 34919 Face 22967 6703 11486 22523 Face 22968 22403 20194 49123 Face 22969 21004 11487 42777 Face 22970 11 11542 11487 Face 22971 39858 11488 20170 Face 22972 49533 27090 11488 Face 22973 4325 37043 11078 Face 22974 4325 42633 11489 Face 22975 44559 11490 36856 Face 22976 29416 3833 21485 Face 22977 29182 11491 5660 Face 22978 36062 5381 11491 Face 22979 28484 11492 7448 Face 22980 11855 16995 21897 Face 22981 5524 49543 37477 Face 22982 27071 38695 20574 Face 22983 5524 16531 49543 Face 22984 5524 34055 16531 Face 22985 4945 11495 33623 Face 22986 29727 4987 11495 Face 22987 35276 11496 43518 Face 22988 35276 34742 11496 Face 22989 12774 27991 29178 Face 22990 38479 32355 11497 Face 22991 8135 44417 17801 Face 22992 17912 4772 11498 Face 22993 1555 11499 32045 Face 22994 1555 6687 11499 Face 22995 27077 11500 7860 Face 22996 24133 238 11500 Face 22997 37049 11501 1732 Face 22998 5982 24565 21508 Face 22999 36757 28517 21352 Face 23000 2010 30973 11502 Face 23001 10204 11503 21024 Face 23002 20555 38761 23552 Face 23003 24154 44059 24895 Face 23004 48244 18205 32664 Face 23005 27745 11505 46000 Face 23006 16856 26957 11505 Face 23007 2550 11506 30912 Face 23008 12821 29446 11506 Face 23009 2116 38733 5489 Face 23010 25310 13766 30639 Face 23011 49897 11508 22984 Face 23012 47746 48526 29094 Face 23013 31975 11509 6093 Face 23014 30146 27467 24575 Face 23015 14059 38849 26423 Face 23016 657 44395 38849 Face 23017 3264 21711 10987 Face 23018 35507 18955 48544 Face 23019 3604 39019 42069 Face 23020 30958 8876 39019 Face 23021 31933 26971 15413 Face 23022 5550 18675 11513 Face 23023 3777 11514 16575 Face 23024 3777 21928 11514 Face 23025 23673 11515 20764 Face 23026 41338 18039 11515 Face 23027 36732 11516 2435 Face 23028 36733 8279 11516 Face 23029 34698 34056 46874 Face 23030 24585 842 34056 Face 23031 37039 21021 30737 Face 23032 5118 46701 36586 Face 23033 41684 11519 42973 Face 23034 41685 6017 11519 Face 23035 32250 11520 30010 Face 23036 32250 41867 11520 Face 23037 60 11521 11176 Face 23038 32116 14903 11521 Face 23039 40304 11522 3062 Face 23040 49455 885 19817 Face 23041 4451 11523 41939 Face 23042 4451 49369 11523 Face 23043 19761 11524 25332 Face 23044 13745 27793 11524 Face 23045 11526 32249 22302 Face 23046 34893 6782 32249 Face 23047 5175 11526 9500 Face 23048 5175 38738 11526 Face 23049 3158 11527 11812 Face 23050 42754 33537 45199 Face 23051 38913 21014 42506 Face 23052 29178 27991 34602 Face 23053 31496 11529 44125 Face 23054 37209 21014 11529 Face 23055 30122 21394 44430 Face 23056 28360 41420 11530 Face 23057 35886 11531 29550 Face 23058 2619 43940 40248 Face 23059 696 11532 38453 Face 23060 696 35234 25519 Face 23061 7170 11533 3630 Face 23062 7170 5065 11533 Face 23063 353 11534 7914 Face 23064 353 11357 11534 Face 23065 8100 11535 26696 Face 23066 23327 46386 11535 Face 23067 24706 31818 1885 Face 23068 1969 45844 31818 Face 23069 126 11537 21215 Face 23070 126 28363 24511 Face 23071 2530 40929 44851 Face 23072 38343 19004 11538 Face 23073 44092 11539 36300 Face 23074 5877 16926 11539 Face 23075 21 15094 26685 Face 23076 46591 992 42941 Face 23077 4347 11541 33786 Face 23078 39568 37101 30602 Face 23079 33459 37961 23954 Face 23080 44403 11487 11542 Face 23081 26022 11543 46051 Face 23082 5154 22190 27726 Face 23083 4374 15703 38892 Face 23084 47585 18227 36654 Face 23085 45979 11545 12746 Face 23086 42313 10200 28679 Face 23087 22668 38072 8980 Face 23088 15688 40620 11546 Face 23089 20049 11547 25107 Face 23090 32794 4082 11547 Face 23091 27020 11548 17124 Face 23092 12491 13687 11548 Face 23093 28352 11549 13526 Face 23094 28352 13334 11549 Face 23095 2175 11550 24636 Face 23096 2175 1626 11550 Face 23097 45769 11551 26861 Face 23098 24423 48908 11551 Face 23099 34281 43756 5961 Face 23100 14920 30382 11552 Face 23101 8707 11553 32202 Face 23102 8707 21846 34891 Face 23103 8899 40866 8898 Face 23104 8899 10612 25613 Face 23105 3942 11555 7093 Face 23106 3942 33320 11555 Face 23107 44453 17323 2093 Face 23108 17382 34651 11556 Face 23109 37006 11557 31583 Face 23110 1021 12771 11557 Face 23111 43629 42474 26320 Face 23112 48386 26555 11558 Face 23113 28524 11559 1459 Face 23114 28524 26363 11559 Face 23115 8320 11560 32563 Face 23116 8320 49306 11560 Face 23117 7971 11561 34115 Face 23118 7971 9537 11561 Face 23119 30363 40773 21853 Face 23120 1781 29016 11562 Face 23121 14428 44023 33519 Face 23122 1781 40773 30363 Face 23123 5979 44821 41442 Face 23124 49678 30476 44821 Face 23125 28144 46120 38633 Face 23126 5605 43686 11565 Face 23127 5176 11566 44576 Face 23128 5176 26431 11566 Face 23129 46525 38858 11393 Face 23130 5256 23400 11567 Face 23131 2747 11568 17997 Face 23132 49671 29800 11568 Face 23133 7004 32012 43057 Face 23134 7004 1276 11569 Face 23135 15540 32595 6137 Face 23136 27675 39546 20711 Face 23137 1013 36332 4282 Face 23138 32172 9553 36011 Face 23139 1923 11572 40850 Face 23140 1923 42951 11572 Face 23141 8800 11573 8801 Face 23142 8800 21596 43685 Face 23143 1850 11574 41984 Face 23144 1850 47291 11574 Face 23145 23876 37358 29318 Face 23146 16933 32943 37358 Face 23147 28583 38746 11415 Face 23148 3123 48801 29641 Face 23149 22326 34902 5208 Face 23150 5207 42969 11577 Face 23151 33331 46984 18729 Face 23152 33331 23487 41148 Face 23153 44797 40818 7398 Face 23154 16690 26383 11579 Face 23155 3920 11580 42452 Face 23156 3920 21153 11580 Face 23157 33498 11581 25614 Face 23158 33498 45785 11581 Face 23159 29810 11582 5881 Face 23160 5399 30017 11582 Face 23161 11584 18722 20517 Face 23162 1642 8838 22271 Face 23163 12227 11584 45709 Face 23164 1642 22271 11584 Face 23165 37760 11585 32090 Face 23166 4068 10729 49954 Face 23167 43425 31143 38758 Face 23168 43425 44244 31143 Face 23169 43425 34102 44244 Face 23170 6444 31385 11587 Face 23171 47754 11588 28326 Face 23172 2441 39548 11588 Face 23173 17168 47130 9399 Face 23174 1983 44104 38059 Face 23175 2185 11590 30136 Face 23176 42333 30144 11590 Face 23177 2185 11591 48846 Face 23178 2185 30136 28013 Face 23179 29635 11592 6049 Face 23180 5563 8848 11592 Face 23181 6445 36958 38614 Face 23182 6445 20655 45247 Face 23183 4563 21185 17007 Face 23184 4563 19704 21185 Face 23185 7734 45477 3565 Face 23186 7734 478 29076 Face 23187 25048 11596 35573 Face 23188 21963 42586 34291 Face 23189 2410 11597 18278 Face 23190 23311 15049 11597 Face 23191 19728 11598 30742 Face 23192 4143 29189 34942 Face 23193 892 11599 35091 Face 23194 892 34547 11599 Face 23195 2640 26202 27247 Face 23196 2640 32755 26201 Face 23197 2074 39087 29288 Face 23198 2074 11576 41675 Face 23199 38 11602 5869 Face 23200 38 47407 11602 Face 23201 14030 49541 2900 Face 23202 34349 22964 11603 Face 23203 21175 43297 17341 Face 23204 38833 46717 11604 Face 23205 3185 24182 22386 Face 23206 3185 11604 11605 Face 23207 15196 29711 5180 Face 23208 4481 20290 29711 Face 23209 24408 11607 13529 Face 23210 24408 38395 11607 Face 23211 29241 11608 24791 Face 23212 42512 44623 26207 Face 23213 26834 11609 18909 Face 23214 40261 19360 11609 Face 23215 39496 18909 11609 Face 23216 4172 303 11610 Face 23217 46903 31494 5403 Face 23218 35955 19681 26757 Face 23219 36961 11612 24279 Face 23220 528 33782 11612 Face 23221 1145 11613 22399 Face 23222 21358 40531 27876 Face 23223 32402 16301 23457 Face 23224 7245 7246 11614 Face 23225 4359 11615 35371 Face 23226 4359 23419 11615 Face 23227 46155 11616 31088 Face 23228 46155 33065 46715 Face 23229 37820 11617 28582 Face 23230 35347 1085 47116 Face 23231 23574 11618 1317 Face 23232 49218 36593 11618 Face 23233 26559 11619 19958 Face 23234 17368 43120 11619 Face 23235 3610 31978 712 Face 23236 35171 18442 11620 Face 23237 20812 11621 34576 Face 23238 30556 28795 11621 Face 23239 14475 30517 7973 Face 23240 47619 4548 41996 Face 23241 39693 37299 6774 Face 23242 45922 13103 24331 Face 23243 29176 11624 45951 Face 23244 7980 37612 25542 Face 23245 3916 11625 34814 Face 23246 3916 45018 11625 Face 23247 938 11626 13794 Face 23248 938 25546 35452 Face 23249 47227 11627 4834 Face 23250 6914 4972 20713 Face 23251 3308 46364 996 Face 23252 24121 28359 41168 Face 23253 25946 11629 17333 Face 23254 15468 10441 42107 Face 23255 9250 11630 30794 Face 23256 9250 31156 11630 Face 23257 3910 48687 10717 Face 23258 28158 2713 11631 Face 23259 1073 11632 22013 Face 23260 25116 11306 11632 Face 23261 6536 46467 44634 Face 23262 29776 23071 28137 Face 23263 3885 41094 25960 Face 23264 3885 40196 41094 Face 23265 32013 47752 5180 Face 23266 18309 36544 25479 Face 23267 48343 11636 33840 Face 23268 31448 15244 44690 Face 23269 15194 11637 24546 Face 23270 29316 15583 11637 Face 23271 13738 28408 49636 Face 23272 48156 41092 11638 Face 23273 44472 11639 28010 Face 23274 1221 22020 11639 Face 23275 5796 11640 28093 Face 23276 16346 8196 11640 Face 23277 9113 11641 27258 Face 23278 9113 20859 11641 Face 23279 79 11642 17203 Face 23280 79 30863 11642 Face 23281 39509 11643 48767 Face 23282 4984 24709 11643 Face 23283 21811 11644 10323 Face 23284 21811 26863 33197 Face 23285 839 11645 46667 Face 23286 34613 40591 11645 Face 23287 40939 11646 20079 Face 23288 40939 32480 11646 Face 23289 4500 39961 24975 Face 23290 37510 8236 11647 Face 23291 19996 11648 13675 Face 23292 35465 11513 11648 Face 23293 36279 21407 38214 Face 23294 10994 7561 32917 Face 23295 17096 26618 4354 Face 23296 814 27228 43882 Face 23297 7829 31805 22257 Face 23298 27318 21727 11651 Face 23299 5417 11652 18686 Face 23300 5417 38821 11652 Face 23301 23155 32560 11797 Face 23302 20812 34576 25006 Face 23303 38596 39043 14227 Face 23304 38596 7123 11654 Face 23305 6870 11655 46293 Face 23306 6870 28888 11655 Face 23307 45958 15242 8313 Face 23308 45958 6967 15242 Face 23309 17268 11657 37929 Face 23310 21845 6197 11657 Face 23311 6191 11658 8430 Face 23312 35070 16805 11658 Face 23313 28015 11659 37554 Face 23314 41710 2938 21989 Face 23315 47300 34536 38233 Face 23316 22579 42677 11660 Face 23317 6752 11661 24008 Face 23318 14251 27243 11661 Face 23319 31643 44233 16320 Face 23320 30985 1264 47805 Face 23321 2207 11663 9505 Face 23322 2207 46563 11663 Face 23323 3708 43360 30770 Face 23324 3708 38608 11664 Face 23325 6503 11665 28914 Face 23326 13735 33288 11665 Face 23327 8611 11666 39950 Face 23328 8611 27735 11666 Face 23329 35740 25918 16768 Face 23330 2421 45896 25918 Face 23331 2075 11668 24027 Face 23332 2075 43136 11668 Face 23333 7354 36962 38418 Face 23334 7354 40226 31082 Face 23335 24059 11670 28185 Face 23336 24060 20595 31334 Face 23337 24614 11671 45494 Face 23338 24614 7696 11671 Face 23339 695 41869 1249 Face 23340 31377 1894 42719 Face 23341 27103 11673 25216 Face 23342 27103 43069 11673 Face 23343 4771 11674 27275 Face 23344 27567 2636 11674 Face 23345 2677 35431 45865 Face 23346 38459 9004 23784 Face 23347 4280 28988 6129 Face 23348 21041 33695 11676 Face 23349 1854 11677 6116 Face 23350 1854 16674 11677 Face 23351 49070 11678 19206 Face 23352 1265 21691 11678 Face 23353 14563 11679 9527 Face 23354 40257 9528 11679 Face 23355 11681 11680 35747 Face 23356 31810 25312 11680 Face 23357 5254 11681 35747 Face 23358 31810 11680 11681 Face 23359 4676 11682 37107 Face 23360 18238 2380 45639 Face 23361 42347 11683 14810 Face 23362 49057 41662 11683 Face 23363 16101 11684 32458 Face 23364 16101 37720 11684 Face 23365 6523 42320 46791 Face 23366 6523 35094 42320 Face 23367 34373 11686 3133 Face 23368 25475 42040 11686 Face 23369 2289 19001 24420 Face 23370 12816 27641 11688 Face 23371 23082 49958 15416 Face 23372 11687 28243 11688 Face 23373 2258 11689 10516 Face 23374 11690 5984 11689 Face 23375 22797 11690 11689 Face 23376 22797 15722 11690 Face 23377 21500 39315 12088 Face 23378 21499 5266 11691 Face 23379 25419 11692 18244 Face 23380 25418 5453 11692 Face 23381 41220 40280 6245 Face 23382 33897 44784 46983 Face 23383 42597 11694 15427 Face 23384 280 20417 47680 Face 23385 37867 11695 12250 Face 23386 13896 25166 18116 Face 23387 41920 11696 17097 Face 23388 41920 22060 11696 Face 23389 31635 11697 23630 Face 23390 1064 20187 11697 Face 23391 41657 32839 36937 Face 23392 19523 12185 11698 Face 23393 720 43484 35738 Face 23394 35352 7459 11699 Face 23395 42404 11700 37371 Face 23396 42404 2336 11700 Face 23397 28003 11701 16988 Face 23398 23021 45229 32072 Face 23399 1120 11702 43502 Face 23400 16536 10482 11702 Face 23401 1763 11703 9786 Face 23402 1763 6838 33103 Face 23403 9566 11704 25093 Face 23404 11705 19268 27518 Face 23405 9566 11705 11704 Face 23406 9566 23969 11705 Face 23407 18711 11706 3966 Face 23408 18711 25787 11706 Face 23409 1020 11707 46210 Face 23410 39695 16221 11707 Face 23411 30162 11708 7401 Face 23412 45948 41529 11708 Face 23413 636 45948 11708 Face 23414 636 3707 40906 Face 23415 2739 11710 34137 Face 23416 2739 14781 11710 Face 23417 18598 11711 9216 Face 23418 20763 44761 17258 Face 23419 19816 27489 41246 Face 23420 33422 29595 25417 Face 23421 2468 11713 6753 Face 23422 2468 27489 11713 Face 23423 898 35026 30810 Face 23424 898 8012 35026 Face 23425 1452 11716 10884 Face 23426 1452 19352 11716 Face 23427 48884 11716 10951 Face 23428 11715 10884 11716 Face 23429 38041 11717 46066 Face 23430 11719 10955 24538 Face 23431 25487 11718 12304 Face 23432 11719 11717 38041 Face 23433 47233 11719 11718 Face 23434 21144 43602 11719 Face 23435 1878 11720 18998 Face 23436 14281 6405 11720 Face 23437 7221 11721 44719 Face 23438 14877 11563 11721 Face 23439 4906 11722 29307 Face 23440 4906 31040 11722 Face 23441 9748 11723 5394 Face 23442 9748 48161 11723 Face 23443 45633 11724 33713 Face 23444 3110 10797 11724 Face 23445 2424 11725 36209 Face 23446 49744 10004 36826 Face 23447 4957 11726 8878 Face 23448 4957 5210 11726 Face 23449 11728 25272 14173 Face 23450 25653 32835 11727 Face 23451 24631 18317 45354 Face 23452 31391 25272 11728 Face 23453 35188 34575 17065 Face 23454 32465 40914 41555 Face 23455 41122 40692 32286 Face 23456 24440 4942 11730 Face 23457 6747 11731 19851 Face 23458 22699 9117 11731 Face 23459 10419 30657 45748 Face 23460 42366 12699 48090 Face 23461 2456 26255 16780 Face 23462 46723 23126 11733 Face 23463 16843 35113 43471 Face 23464 2642 47971 11734 Face 23465 904 11735 29984 Face 23466 904 26669 11735 Face 23467 547 11736 44889 Face 23468 36328 7503 11736 Face 23469 547 11737 47243 Face 23470 17261 28479 11737 Face 23471 19964 37938 44818 Face 23472 7027 10333 37938 Face 23473 18105 11739 44322 Face 23474 45665 1106 11739 Face 23475 24226 11740 40796 Face 23476 3392 26982 11740 Face 23477 33764 11741 39787 Face 23478 5639 32434 11741 Face 23479 20143 11742 1162 Face 23480 23476 4736 11742 Face 23481 43835 11743 5644 Face 23482 43835 49275 11743 Face 23483 4539 11744 9049 Face 23484 4539 10648 11744 Face 23485 23574 42160 11618 Face 23486 6668 9630 42160 Face 23487 3508 35212 24508 Face 23488 3508 10276 11746 Face 23489 21706 33189 8932 Face 23490 1524 42066 33189 Face 23491 17598 11748 34244 Face 23492 5793 29896 11748 Face 23493 48138 19667 11724 Face 23494 10304 19280 39924 Face 23495 3686 11750 45288 Face 23496 3686 12670 11750 Face 23497 28508 11751 15151 Face 23498 11753 43783 17665 Face 23499 38022 11752 25159 Face 23500 1451 11751 28508 Face 23501 1451 11753 17665 Face 23502 19476 35314 11753 Face 23503 42416 29581 26642 Face 23504 25022 20505 38104 Face 23505 29914 45389 3485 Face 23506 27373 7446 38104 Face 23507 46034 11756 11755 Face 23508 11754 26642 29581 Face 23509 34502 11757 2403 Face 23510 18634 34423 24958 Face 23511 37595 49253 7119 Face 23512 1568 20148 11758 Face 23513 2419 30232 19428 Face 23514 30550 10094 32070 Face 23515 13589 45518 22953 Face 23516 16157 30434 43242 Face 23517 884 46353 8178 Face 23518 884 31963 11761 Face 23519 8872 45031 22610 Face 23520 8872 26041 45031 Face 23521 34525 11763 21330 Face 23522 6199 37895 20937 Face 23523 16760 11764 7953 Face 23524 6958 4376 11764 Face 23525 39006 42146 8840 Face 23526 23050 31112 11765 Face 23527 30122 11766 21394 Face 23528 30122 30238 11766 Face 23529 21375 11767 43122 Face 23530 2983 43293 11767 Face 23531 39514 49832 15469 Face 23532 39514 29377 49832 Face 23533 33547 37858 18888 Face 23534 16681 19545 37857 Face 23535 44257 17421 10024 Face 23536 49727 37857 33547 Face 23537 5313 46390 37903 Face 23538 35006 37891 28767 Face 23539 7921 43489 7922 Face 23540 15728 25361 11772 Face 23541 868 11773 26486 Face 23542 20192 5993 11773 Face 23543 6888 11774 21712 Face 23544 6888 17357 11774 Face 23545 37946 11775 30516 Face 23546 37946 48589 11775 Face 23547 4306 28593 12674 Face 23548 37444 24192 11776 Face 23549 4336 11777 14306 Face 23550 25961 31050 33891 Face 23551 26788 23681 28886 Face 23552 36359 28098 11778 Face 23553 288 11780 38723 Face 23554 288 11778 11780 Face 23555 11779 11780 11778 Face 23556 11779 9232 11780 Face 23557 2650 11781 20576 Face 23558 49604 5521 19946 Face 23559 2048 38462 21035 Face 23560 39401 15116 17385 Face 23561 28100 30027 9207 Face 23562 29457 5680 30300 Face 23563 33290 45912 16627 Face 23564 628 36222 11784 Face 23565 1002 31442 46596 Face 23566 1002 35586 31442 Face 23567 11952 11786 15021 Face 23568 42876 15653 11786 Face 23569 27899 11787 40459 Face 23570 34947 3784 44649 Face 23571 23930 11788 30732 Face 23572 3320 41692 11788 Face 23573 5287 11789 18451 Face 23574 5287 44732 21301 Face 23575 11791 11790 21151 Face 23576 11791 14749 11790 Face 23577 39851 11791 21151 Face 23578 29405 21114 11791 Face 23579 13455 18042 6760 Face 23580 13455 27595 18042 Face 23581 7715 11793 10888 Face 23582 15732 9353 11793 Face 23583 21684 11794 41136 Face 23584 23777 29729 11794 Face 23585 3399 11795 16233 Face 23586 3399 22239 11795 Face 23587 1233 35668 17570 Face 23588 34582 18551 35668 Face 23589 9500 11797 22523 Face 23590 9500 16518 11797 Face 23591 22029 11798 43412 Face 23592 16999 33860 11798 Face 23593 28114 16129 2952 Face 23594 4240 6100 11799 Face 23595 6158 26228 32839 Face 23596 6158 20779 26228 Face 23597 25021 11801 18404 Face 23598 49449 39092 11801 Face 23599 6826 40510 17459 Face 23600 6826 13305 11802 Face 23601 14620 11803 7193 Face 23602 36797 33440 11803 Face 23603 4030 36387 7507 Face 23604 4030 20419 11804 Face 23605 28836 22700 2588 Face 23606 28837 2503 33125 Face 23607 28837 11806 36992 Face 23608 28837 25937 11806 Face 23609 36211 48081 5727 Face 23610 1225 4955 11807 Face 23611 49724 20758 13197 Face 23612 42665 7490 34369 Face 23613 45505 27670 49226 Face 23614 20157 6162 41182 Face 23615 1965 11810 49167 Face 23616 1965 7412 11810 Face 23617 24164 11811 46852 Face 23618 49621 10969 35640 Face 23619 3157 11812 14992 Face 23620 29952 3158 11812 Face 23621 3713 11813 27015 Face 23622 26597 37368 11813 Face 23623 4601 22076 37205 Face 23624 4601 21482 33283 Face 23625 22076 11815 16717 Face 23626 11814 8072 40586 Face 23627 2665 33181 4204 Face 23628 47388 20879 11816 Face 23629 2852 11817 47370 Face 23630 22341 14171 11818 Face 23631 11819 35132 14857 Face 23632 11817 22341 11818 Face 23633 33248 11819 32578 Face 23634 11817 35132 11819 Face 23635 6170 11820 39264 Face 23636 6170 25250 11820 Face 23637 2387 11821 40317 Face 23638 2387 42701 11821 Face 23639 11823 31815 44615 Face 23640 42773 23080 11822 Face 23641 43851 11823 13866 Face 23642 48795 17081 11823 Face 23643 29555 11824 47280 Face 23644 16182 7311 11824 Face 23645 3746 28420 14205 Face 23646 3746 11295 28420 Face 23647 3972 11826 17083 Face 23648 11827 16240 11826 Face 23649 40924 11827 11826 Face 23650 12606 9200 35196 Face 23651 3697 11828 466 Face 23652 3697 17706 11828 Face 23653 46420 11829 39232 Face 23654 46420 18700 11829 Face 23655 27789 46420 39232 Face 23656 2655 23195 11830 Face 23657 2881 22560 25875 Face 23658 19740 25977 22182 Face 23659 23837 11832 2479 Face 23660 23837 32245 11832 Face 23661 21273 46172 6099 Face 23662 9874 16112 11833 Face 23663 36900 11834 23561 Face 23664 36900 27713 11834 Face 23665 2622 11835 30187 Face 23666 2622 36074 11835 Face 23667 31763 11836 6552 Face 23668 15902 13095 27019 Face 23669 49507 43334 34756 Face 23670 971 15080 11837 Face 23671 11839 11838 24645 Face 23672 11839 36316 11838 Face 23673 4430 11839 24645 Face 23674 33337 25825 11839 Face 23675 19705 40110 9034 Face 23676 49805 28386 40744 Face 23677 17624 44512 3328 Face 23678 30157 17249 16209 Face 23679 14637 17625 21716 Face 23680 30157 33704 11842 Face 23681 7703 46389 1892 Face 23682 35555 36380 24081 Face 23683 2590 36722 7229 Face 23684 2590 23903 36722 Face 23685 9899 11845 16414 Face 23686 9899 3992 11845 Face 23687 47204 40153 28063 Face 23688 20285 14731 28490 Face 23689 7609 22213 44541 Face 23690 7609 34584 40858 Face 23691 6299 11848 16691 Face 23692 6299 42122 42334 Face 23693 2455 11849 9417 Face 23694 2455 11322 11849 Face 23695 1687 11850 12090 Face 23696 1687 33645 39910 Face 23697 1887 41924 16389 Face 23698 15398 33024 11851 Face 23699 11851 41924 1887 Face 23700 11851 36411 41924 Face 23701 1229 11853 5182 Face 23702 43881 35058 11853 Face 23703 15858 11854 6274 Face 23704 15858 24442 11854 Face 23705 9495 11855 11492 Face 23706 9495 4013 46607 Face 23707 38455 11856 28391 Face 23708 22644 5893 15434 Face 23709 39355 11857 18340 Face 23710 28570 19495 11857 Face 23711 2976 25413 16528 Face 23712 26540 9854 11858 Face 23713 3148 43326 33160 Face 23714 3148 36198 11859 Face 23715 7945 16147 10958 Face 23716 7945 1474 11860 Face 23717 34817 11861 5626 Face 23718 2118 31960 27882 Face 23719 4041 32449 17400 Face 23720 29503 523 39421 Face 23721 2261 48241 16890 Face 23722 22815 38437 34053 Face 23723 4853 21661 39527 Face 23724 11865 17851 21661 Face 23725 4853 11865 21661 Face 23726 4853 33936 11865 Face 23727 20799 11866 40581 Face 23728 20798 21827 11866 Face 23729 4973 11867 22352 Face 23730 4973 28395 11867 Face 23731 40985 24879 197 Face 23732 22434 36164 11868 Face 23733 3903 11869 32349 Face 23734 3903 30336 11869 Face 23735 12845 42638 42027 Face 23736 38657 18704 43376 Face 23737 2344 28588 8620 Face 23738 38293 49641 11871 Face 23739 27419 45770 16572 Face 23740 6456 34842 11872 Face 23741 34797 47455 15233 Face 23742 4072 30660 39490 Face 23743 18354 11874 30088 Face 23744 35619 8824 11874 Face 23745 11877 11875 48996 Face 23746 11876 6482 43017 Face 23747 279 11876 43017 Face 23748 279 21668 11876 Face 23749 46886 33140 37286 Face 23750 46886 27040 37991 Face 23751 22118 11878 33934 Face 23752 18816 43013 11878 Face 23753 184 12247 21511 Face 23754 184 3355 11879 Face 23755 23329 45206 33063 Face 23756 26168 35406 11880 Face 23757 2512 11881 38375 Face 23758 27118 3935 32228 Face 23759 39593 11882 1499 Face 23760 7609 42486 11882 Face 23761 3447 11883 22833 Face 23762 3447 46687 11883 Face 23763 25312 11884 11680 Face 23764 43148 23569 11884 Face 23765 39974 11885 26891 Face 23766 39974 5095 11885 Face 23767 14881 11886 24250 Face 23768 15958 4299 11886 Face 23769 39338 11887 3740 Face 23770 39338 41648 11887 Face 23771 6323 48763 45277 Face 23772 6323 27977 48763 Face 23773 6774 11889 39693 Face 23774 6774 10087 11889 Face 23775 46579 42470 7304 Face 23776 44913 5549 20022 Face 23777 33825 11891 23836 Face 23778 29991 38891 26830 Face 23779 1663 30788 26924 Face 23780 1663 25702 30788 Face 23781 8978 11893 25868 Face 23782 8978 41912 11893 Face 23783 5514 11894 33611 Face 23784 5514 16338 11894 Face 23785 3703 46145 10403 Face 23786 3703 49877 11895 Face 23787 37636 11896 38583 Face 23788 27149 6337 35948 Face 23789 3055 28272 25331 Face 23790 40955 26888 11897 Face 23791 47047 11898 23840 Face 23792 4842 18305 31475 Face 23793 42554 11899 14945 Face 23794 42554 30503 11899 Face 23795 47408 36249 6508 Face 23796 26132 10645 11900 Face 23797 27056 11901 14463 Face 23798 41436 28809 11901 Face 23799 131 11902 41157 Face 23800 131 9017 16975 Face 23801 12120 11903 14472 Face 23802 39967 19857 47170 Face 23803 37436 11904 15594 Face 23804 25596 27678 33662 Face 23805 33750 35114 26277 Face 23806 43173 17420 33341 Face 23807 32327 11906 23849 Face 23808 38067 42345 11906 Face 23809 29860 11907 5705 Face 23810 25232 9642 42353 Face 23811 38827 11908 5706 Face 23812 19143 42353 29860 Face 23813 48679 11909 441 Face 23814 2728 10197 11909 Face 23815 5851 41498 20163 Face 23816 5851 2851 41498 Face 23817 28847 11911 25555 Face 23818 27712 12302 11911 Face 23819 2220 11912 46641 Face 23820 2220 13748 11912 Face 23821 4623 11913 49954 Face 23822 48103 3194 45794 Face 23823 243 11914 49793 Face 23824 243 3410 11914 Face 23825 11916 40225 20694 Face 23826 2327 5015 48821 Face 23827 38020 11916 22309 Face 23828 38020 48821 11916 Face 23829 15077 38533 7771 Face 23830 15076 11316 38534 Face 23831 27560 11918 15171 Face 23832 21753 10900 11918 Face 23833 21665 11919 23395 Face 23834 48101 48570 11919 Face 23835 11921 21554 13397 Face 23836 38205 19678 49973 Face 23837 11922 38908 46830 Face 23838 46796 11920 11921 Face 23839 24882 11922 48211 Face 23840 24882 38908 11922 Face 23841 45971 37128 34589 Face 23842 23544 13630 11923 Face 23843 7717 11924 42649 Face 23844 21991 10888 24320 Face 23845 8782 11925 18606 Face 23846 8782 38612 11925 Face 23847 1289 11926 10771 Face 23848 1289 41444 11926 Face 23849 29089 31310 24085 Face 23850 45749 15275 11927 Face 23851 2956 20873 44767 Face 23852 45749 11927 29089 Face 23853 29652 27561 3981 Face 23854 7136 20109 11929 Face 23855 41348 11930 33392 Face 23856 41348 46783 11930 Face 23857 25675 34937 8754 Face 23858 20627 33028 46081 Face 23859 2729 11932 27189 Face 23860 11933 22516 28174 Face 23861 2729 11933 28174 Face 23862 48371 25004 11933 Face 23863 48786 35211 12517 Face 23864 1673 15106 35211 Face 23865 29729 11935 26592 Face 23866 48786 25122 11935 Face 23867 27332 44269 17263 Face 23868 2858 34029 11936 Face 23869 2519 26772 21035 Face 23870 34617 4494 26772 Face 23871 7763 11938 46391 Face 23872 43216 10776 45296 Face 23873 4141 17444 15531 Face 23874 12169 14486 11939 Face 23875 48964 30795 15966 Face 23876 25643 4103 13782 Face 23877 35685 16942 36590 Face 23878 5001 24539 49142 Face 23879 11941 11942 21105 Face 23880 11941 5001 49142 Face 23881 9487 11943 27199 Face 23882 9487 47851 11943 Face 23883 32861 11944 6499 Face 23884 639 7151 11944 Face 23885 7327 11945 45817 Face 23886 7327 28720 11945 Face 23887 1930 11946 10327 Face 23888 1930 27242 11946 Face 23889 5311 11947 41666 Face 23890 5311 35084 11947 Face 23891 4030 11948 190 Face 23892 4030 24566 11948 Face 23893 127 40808 39638 Face 23894 127 13696 40808 Face 23895 3431 11950 9147 Face 23896 3431 30276 40143 Face 23897 26326 11951 17557 Face 23898 12047 40643 29584 Face 23899 1931 11952 10324 Face 23900 1931 11786 11952 Face 23901 21045 45250 29031 Face 23902 21045 34678 11953 Face 23903 17426 17427 34310 Face 23904 4516 10235 11954 Face 23905 47962 21769 907 Face 23906 1739 30297 40580 Face 23907 15427 45476 5974 Face 23908 886 30749 41320 Face 23909 2031 11957 4672 Face 23910 2031 20103 11957 Face 23911 1716 11958 15700 Face 23912 1716 41862 11958 Face 23913 847 49016 5423 Face 23914 847 26463 11959 Face 23915 17086 11960 49430 Face 23916 36152 45832 11960 Face 23917 7010 19290 44755 Face 23918 7010 46884 18866 Face 23919 11961 11962 41847 Face 23920 11961 45300 11962 Face 23921 2352 11963 24590 Face 23922 33158 20070 11963 Face 23923 26501 11964 48566 Face 23924 15994 26787 37551 Face 23925 26952 11965 9517 Face 23926 26952 18065 11965 Face 23927 18942 29174 23120 Face 23928 48652 17831 24643 Face 23929 18780 11967 36516 Face 23930 30426 9604 11967 Face 23931 45546 11968 29161 Face 23932 8998 23960 11968 Face 23933 35410 11969 16474 Face 23934 35410 16356 11969 Face 23935 41826 11970 11412 Face 23936 2647 2646 39174 Face 23937 4631 21741 9329 Face 23938 30980 1776 45855 Face 23939 19584 45563 49676 Face 23940 3548 26901 11972 Face 23941 20817 20172 49244 Face 23942 46496 29985 20172 Face 23943 46496 11974 23260 Face 23944 20546 13216 22804 Face 23945 10723 11975 14269 Face 23946 45387 8100 36514 Face 23947 36592 11976 1509 Face 23948 12166 16496 26479 Face 23949 2444 11977 8495 Face 23950 2444 36327 11977 Face 23951 34482 11978 11888 Face 23952 929 17625 14637 Face 23953 32476 11979 18886 Face 23954 19664 35463 32255 Face 23955 3472 26000 38932 Face 23956 3472 24051 11980 Face 23957 7171 11981 29549 Face 23958 7171 4156 30292 Face 23959 28122 11982 14372 Face 23960 5677 10241 11982 Face 23961 3721 26615 15487 Face 23962 3721 37905 11983 Face 23963 25659 11984 29236 Face 23964 16243 30177 11984 Face 23965 520 11985 10045 Face 23966 520 35897 11985 Face 23967 3373 41798 18779 Face 23968 3373 23050 41798 Face 23969 7482 11987 15788 Face 23970 28032 18375 11987 Face 23971 45326 30900 8784 Face 23972 45326 22592 30900 Face 23973 38240 34276 27150 Face 23974 4471 48919 34276 Face 23975 16369 20206 42772 Face 23976 18904 26624 11990 Face 23977 46786 11991 39393 Face 23978 34993 5586 11991 Face 23979 29782 26462 19250 Face 23980 25609 13784 17559 Face 23981 26097 11993 49483 Face 23982 26905 44740 25609 Face 23983 26425 29782 12135 Face 23984 30209 11993 26097 Face 23985 32011 11995 6133 Face 23986 32011 23341 11995 Face 23987 20782 11997 2406 Face 23988 47566 17518 49238 Face 23989 49238 11997 47566 Face 23990 11996 34272 11997 Face 23991 11999 11998 259 Face 23992 5066 48356 11998 Face 23993 41932 11999 11883 Face 23994 5066 11998 11999 Face 23995 35249 12000 8503 Face 23996 747 3504 12000 Face 23997 2950 12001 10523 Face 23998 38653 75 12001 Face 23999 32381 12002 5757 Face 24000 2408 4037 12002 Face 24001 26694 12003 14860 Face 24002 13253 23618 35386 Face 24003 5208 12004 26798 Face 24004 27170 39988 40800 Face 24005 15712 12005 33260 Face 24006 1778 11110 35990 Face 24007 46286 31122 36745 Face 24008 8695 4171 46937 Face 24009 7187 42786 32932 Face 24010 7187 34774 12007 Face 24011 6504 12008 48337 Face 24012 6504 19013 12008 Face 24013 4145 12009 35489 Face 24014 12011 28562 12009 Face 24015 12011 12010 46128 Face 24016 19496 18425 43582 Face 24017 19496 12011 12009 Face 24018 19496 12010 12011 Face 24019 35930 12012 25888 Face 24020 27227 24764 12012 Face 24021 6531 43639 22746 Face 24022 26761 25046 12013 Face 24023 17629 12014 17894 Face 24024 3377 41759 19956 Face 24025 4582 21710 27128 Face 24026 4582 8842 17205 Face 24027 22647 29469 38073 Face 24028 29220 19516 47342 Face 24029 1543 12017 30231 Face 24030 12665 3037 46087 Face 24031 2603 12018 7021 Face 24032 2603 24889 12018 Face 24033 1613 40671 22159 Face 24034 1613 16650 40671 Face 24035 10338 12020 30405 Face 24036 10338 40685 12020 Face 24037 3955 49301 10052 Face 24038 3955 29927 16982 Face 24039 2817 12022 38332 Face 24040 2817 41599 12022 Face 24041 48328 12023 36273 Face 24042 48328 24328 12023 Face 24043 44395 12024 11510 Face 24044 28872 42132 12024 Face 24045 1689 12025 42381 Face 24046 27190 18647 43842 Face 24047 39107 12026 23323 Face 24048 21180 7546 12026 Face 24049 2838 12027 40483 Face 24050 2838 19464 38715 Face 24051 19491 31237 4546 Face 24052 7803 26658 31237 Face 24053 25657 35151 34058 Face 24054 1661 8328 35151 Face 24055 12031 12030 37409 Face 24056 12031 38963 12030 Face 24057 3611 12031 41397 Face 24058 3611 30191 12031 Face 24059 479 12032 20951 Face 24060 479 7642 35535 Face 24061 3033 45033 30740 Face 24062 3033 14846 47219 Face 24063 9851 37232 7162 Face 24064 9851 15130 12034 Face 24065 20068 22716 38224 Face 24066 24397 34475 39995 Face 24067 12037 37224 26987 Face 24068 36804 12035 33143 Face 24069 488 12037 17143 Face 24070 488 37224 12037 Face 24071 2503 12038 33125 Face 24072 47860 36331 12038 Face 24073 16933 12039 4886 Face 24074 15676 41479 20449 Face 24075 3999 39114 9101 Face 24076 41068 32566 47690 Face 24077 32440 12041 44718 Face 24078 27219 15009 43038 Face 24079 5590 42237 41205 Face 24080 5590 16196 42237 Face 24081 48448 38764 11456 Face 24082 7778 24513 48992 Face 24083 5801 12044 16871 Face 24084 47286 21112 12044 Face 24085 6962 32281 31803 Face 24086 26616 10388 32281 Face 24087 13138 49732 32050 Face 24088 25226 28753 12046 Face 24089 37970 12047 29584 Face 24090 37970 28964 12047 Face 24091 37080 12048 10141 Face 24092 4796 7174 12048 Face 24093 12701 43084 35160 Face 24094 18892 34139 25518 Face 24095 4692 12050 9770 Face 24096 4692 35345 12050 Face 24097 22829 18835 10554 Face 24098 1475 26820 12051 Face 24099 30028 12052 2151 Face 24100 43866 24439 22557 Face 24101 29154 16562 37068 Face 24102 29154 17414 12053 Face 24103 1923 44919 27398 Face 24104 1923 40850 12054 Face 24105 29698 12055 709 Face 24106 41322 29096 18381 Face 24107 26030 12056 10990 Face 24108 3786 3787 25828 Face 24109 3953 43205 11371 Face 24110 27806 30644 12057 Face 24111 2424 46310 41819 Face 24112 19722 28541 46310 Face 24113 20170 21350 35156 Face 24114 41317 1029 12059 Face 24115 38874 12060 19228 Face 24116 3198 49717 12060 Face 24117 29336 12061 47350 Face 24118 48477 2334 12061 Face 24119 46192 12062 38198 Face 24120 40827 30066 12062 Face 24121 44 22170 34588 Face 24122 16706 9467 12063 Face 24123 23302 43930 30648 Face 24124 778 15710 12064 Face 24125 4963 22969 33287 Face 24126 27980 36953 22969 Face 24127 3517 46267 12065 Face 24128 3517 29682 48135 Face 24129 1545 49395 24643 Face 24130 1545 21399 21439 Face 24131 27506 28462 8597 Face 24132 24886 19906 12068 Face 24133 40511 12069 37665 Face 24134 37638 18384 34262 Face 24135 7105 12070 48010 Face 24136 7105 42797 12070 Face 24137 532 34552 25112 Face 24138 47365 20950 12071 Face 24139 48799 12072 29522 Face 24140 48799 11083 12072 Face 24141 29527 46046 13900 Face 24142 33011 17765 48486 Face 24143 29398 12074 11009 Face 24144 3533 3532 12074 Face 24145 3982 12075 22899 Face 24146 3982 24072 12075 Face 24147 10168 12076 24637 Face 24148 10168 3270 12076 Face 24149 17232 12077 18874 Face 24150 76 17711 35002 Face 24151 529 12078 41825 Face 24152 14319 30329 49087 Face 24153 5543 12079 23822 Face 24154 5543 19202 34290 Face 24155 22441 12080 26665 Face 24156 22441 34259 12080 Face 24157 5404 28874 14550 Face 24158 5404 38838 12081 Face 24159 31280 34450 5478 Face 24160 31279 47432 12082 Face 24161 512 12083 28456 Face 24162 512 48196 12083 Face 24163 35012 48754 38204 Face 24164 29551 48721 12084 Face 24165 36000 34703 23281 Face 24166 5709 7818 12085 Face 24167 5709 12086 21791 Face 24168 36000 22298 12086 Face 24169 12088 46428 21500 Face 24170 12088 4720 46428 Face 24171 5987 12088 22596 Face 24172 5987 16295 12088 Face 24173 3501 42531 33785 Face 24174 41162 15440 44876 Face 24175 4710 34012 28168 Face 24176 4710 1687 12090 Face 24177 4579 34130 15881 Face 24178 4579 19968 34130 Face 24179 3703 12092 49877 Face 24180 3703 8037 12092 Face 24181 6791 12093 15593 Face 24182 6791 14276 12093 Face 24183 34261 12094 9000 Face 24184 2183 6769 47715 Face 24185 47273 12095 24801 Face 24186 47273 25306 12095 Face 24187 1527 12096 39455 Face 24188 41294 20973 12096 Face 24189 23505 33635 13742 Face 24190 43739 18665 12097 Face 24191 21938 12098 17025 Face 24192 2137 12661 12098 Face 24193 24049 35436 24522 Face 24194 4641 29218 12099 Face 24195 3563 37017 19441 Face 24196 46963 42664 43624 Face 24197 45073 12101 29123 Face 24198 3408 14243 12101 Face 24199 3150 12102 20759 Face 24200 17224 49510 12102 Face 24201 5308 45106 33962 Face 24202 5308 44556 12103 Face 24203 1506 12104 47386 Face 24204 1506 15485 12104 Face 24205 44 16706 22170 Face 24206 44 30619 12105 Face 24207 23204 12106 6846 Face 24208 23204 5007 12106 Face 24209 29404 12107 8942 Face 24210 29403 19973 12107 Face 24211 4656 12108 6765 Face 24212 4656 7693 12108 Face 24213 25076 47549 14788 Face 24214 40052 3302 40918 Face 24215 3795 12110 30846 Face 24216 3795 49299 29570 Face 24217 1089 12111 49505 Face 24218 35654 20326 38724 Face 24219 1735 32298 16205 Face 24220 1735 48454 32298 Face 24221 7 12113 21621 Face 24222 7 38503 20632 Face 24223 21948 41614 46645 Face 24224 6261 5888 12114 Face 24225 34555 12115 26552 Face 24226 34555 45976 12115 Face 24227 33321 12116 15540 Face 24228 33323 48908 24423 Face 24229 47815 12117 27716 Face 24230 2349 27686 12117 Face 24231 21942 12118 33180 Face 24232 21986 33948 12118 Face 24233 49205 48688 5659 Face 24234 40286 28283 12119 Face 24235 1194 12120 45890 Face 24236 39967 11903 12120 Face 24237 14078 42184 46452 Face 24238 8637 32199 25140 Face 24239 2055 38372 19440 Face 24240 2055 28802 38372 Face 24241 2055 12123 8245 Face 24242 2055 22783 12123 Face 24243 2087 12124 8197 Face 24244 2087 30981 31508 Face 24245 1223 12125 29946 Face 24246 16035 7497 47921 Face 24247 8897 35501 24846 Face 24248 8897 8165 47194 Face 24249 44373 12127 16185 Face 24250 3227 9191 48436 Face 24251 405 41449 13380 Face 24252 45266 1019 30322 Face 24253 2606 12129 44855 Face 24254 42457 7394 12129 Face 24255 9224 12130 3988 Face 24256 29994 13877 12130 Face 24257 7256 38988 28942 Face 24258 7256 38987 38988 Face 24259 34972 12132 16323 Face 24260 7961 20635 12132 Face 24261 23836 12133 33825 Face 24262 17558 10522 26088 Face 24263 3197 12134 10153 Face 24264 3197 36205 12134 Face 24265 18476 24516 18561 Face 24266 18476 3738 24516 Face 24267 5160 12136 34365 Face 24268 28309 43932 12136 Face 24269 42727 31724 10334 Face 24270 35697 8232 24232 Face 24271 36691 22518 12137 Face 24272 36691 35506 12138 Face 24273 12140 42631 34609 Face 24274 12141 4557 12139 Face 24275 2885 12140 11449 Face 24276 12141 42631 12140 Face 24277 2885 12141 12140 Face 24278 33192 25664 12141 Face 24279 3195 12142 36545 Face 24280 28633 36103 12142 Face 24281 46722 28720 25592 Face 24282 46722 18391 12143 Face 24283 15045 12144 26076 Face 24284 42049 23873 30215 Face 24285 372 34752 49457 Face 24286 372 47638 34752 Face 24287 43818 42121 31481 Face 24288 49829 3564 12146 Face 24289 35499 39473 18446 Face 24290 1643 49779 12147 Face 24291 37213 24298 42082 Face 24292 24048 21182 12148 Face 24293 1904 12149 9743 Face 24294 22423 16865 12149 Face 24295 36666 19079 8586 Face 24296 6861 14305 19080 Face 24297 3031 34604 40054 Face 24298 21851 7313 34604 Face 24299 6666 12152 19379 Face 24300 21376 14795 26503 Face 24301 26157 49284 17858 Face 24302 26157 41031 47917 Face 24303 2695 28039 1253 Face 24304 2695 41195 12154 Face 24305 34619 42455 12438 Face 24306 3783 26508 12155 Face 24307 13516 39889 36421 Face 24308 25774 3768 17578 Face 24309 44250 12158 2797 Face 24310 1925 33725 12158 Face 24311 12157 40699 30241 Face 24312 46425 2797 40699 Face 24313 1043 47673 46695 Face 24314 24720 38304 22583 Face 24315 27382 12160 32173 Face 24316 28150 49986 12160 Face 24317 7436 12161 12797 Face 24318 7436 37037 12161 Face 24319 45652 24607 11514 Face 24320 36370 8085 12162 Face 24321 3753 12163 19273 Face 24322 3753 14201 12163 Face 24323 8174 37073 6105 Face 24324 8174 16687 37073 Face 24325 39951 12165 27146 Face 24326 35885 1084 12165 Face 24327 28446 12166 48201 Face 24328 6311 16496 12166 Face 24329 1577 31036 9347 Face 24330 48967 35404 28245 Face 24331 49839 12168 26698 Face 24332 49839 8725 12168 Face 24333 4141 12169 11939 Face 24334 44461 28510 12169 Face 24335 27835 36891 30120 Face 24336 16864 11179 36892 Face 24337 34204 12171 5556 Face 24338 36778 22440 12171 Face 24339 11473 12172 39506 Face 24340 41940 15816 12172 Face 24341 45184 18564 29444 Face 24342 26436 17003 12173 Face 24343 31955 12174 31216 Face 24344 1268 18560 12174 Face 24345 3395 24968 44572 Face 24346 3395 27726 12175 Face 24347 2229 12176 49862 Face 24348 40370 26735 39132 Face 24349 8043 12177 41965 Face 24350 26822 8431 40177 Face 24351 34892 12178 28382 Face 24352 8690 29095 12178 Face 24353 22413 12179 39901 Face 24354 17880 43406 12179 Face 24355 3725 12180 22943 Face 24356 49019 4296 38014 Face 24357 4572 12181 5156 Face 24358 4572 48043 12181 Face 24359 18488 28906 30747 Face 24360 882 46206 33979 Face 24361 15361 12183 2448 Face 24362 1260 49420 12183 Face 24363 1777 25864 19115 Face 24364 1777 37260 28230 Face 24365 31535 12185 40188 Face 24366 6157 11698 12185 Face 24367 5699 12186 21804 Face 24368 5699 30697 12186 Face 24369 7402 12187 9827 Face 24370 44292 48104 12187 Face 24371 14114 12188 39233 Face 24372 45583 18481 12188 Face 24373 8575 12189 1953 Face 24374 8575 38831 12189 Face 24375 7592 30876 33859 Face 24376 7592 40272 30876 Face 24377 23990 30797 8725 Face 24378 3297 26254 46725 Face 24379 4332 12192 43534 Face 24380 34593 8506 29312 Face 24381 883 41985 36474 Face 24382 12482 6380 12193 Face 24383 24936 12194 94 Face 24384 30063 24476 12194 Face 24385 38131 12195 38130 Face 24386 38131 23087 12195 Face 24387 43979 45271 2031 Face 24388 10061 35147 12196 Face 24389 4353 19313 35641 Face 24390 18483 41832 12197 Face 24391 39707 12198 17546 Face 24392 2948 18082 12198 Face 24393 20506 12199 41422 Face 24394 35303 15301 45412 Face 24395 33282 46552 15836 Face 24396 42265 24972 46256 Face 24397 8877 12201 5427 Face 24398 8877 8878 12201 Face 24399 3175 43073 9752 Face 24400 16866 40732 33978 Face 24401 2585 19131 21690 Face 24402 2585 45799 12203 Face 24403 13416 12204 28443 Face 24404 5583 11282 21326 Face 24405 30011 12205 23591 Face 24406 23918 10647 48341 Face 24407 17010 12206 14283 Face 24408 3368 17671 12206 Face 24409 43761 12207 1398 Face 24410 21184 16931 35711 Face 24411 5193 12208 29573 Face 24412 12209 20346 12208 Face 24413 5193 12209 12208 Face 24414 5193 34531 12209 Face 24415 38244 12210 20880 Face 24416 39241 9127 12210 Face 24417 2263 12211 28535 Face 24418 2263 26700 22154 Face 24419 42552 12212 14214 Face 24420 3872 38529 12212 Face 24421 29531 12213 11890 Face 24422 29531 9305 12213 Face 24423 698 47545 40151 Face 24424 26808 11180 47544 Face 24425 7430 12215 30324 Face 24426 7430 23872 12215 Face 24427 38932 12216 5531 Face 24428 42339 19600 34925 Face 24429 2054 31314 20073 Face 24430 27056 14463 18946 Face 24431 14981 12218 11789 Face 24432 25182 26473 12218 Face 24433 32341 22723 28567 Face 24434 1576 27127 12219 Face 24435 9080 12220 12221 Face 24436 9080 9081 12220 Face 24437 9078 12221 9081 Face 24438 9078 7518 12221 Face 24439 5198 12222 29964 Face 24440 38037 12645 45359 Face 24441 2571 49429 7148 Face 24442 19251 15901 23244 Face 24443 18561 32052 12223 Face 24444 18561 22012 19250 Face 24445 2467 12225 41076 Face 24446 2467 35384 12225 Face 24447 34465 12226 24525 Face 24448 34466 2505 12226 Face 24449 21254 16445 37906 Face 24450 1642 11584 16445 Face 24451 15432 40715 16272 Face 24452 12985 45524 21088 Face 24453 2119 49139 37187 Face 24454 14603 32750 44111 Face 24455 1901 29149 3514 Face 24456 1901 24418 29149 Face 24457 36154 48752 10903 Face 24458 15088 13318 12231 Face 24459 36393 12232 15110 Face 24460 36392 4185 44124 Face 24461 6843 41580 28031 Face 24462 21081 34403 12233 Face 24463 9948 12234 46640 Face 24464 9948 12594 12234 Face 24465 43542 42632 13038 Face 24466 8313 49962 12235 Face 24467 1821 45454 35938 Face 24468 1821 21076 45454 Face 24469 29099 12237 38777 Face 24470 29099 19011 12237 Face 24471 2763 12238 14647 Face 24472 45224 9859 12238 Face 24473 21763 12239 7167 Face 24474 28353 30665 12239 Face 24475 1840 12240 45537 Face 24476 17778 33699 12240 Face 24477 2354 24912 37396 Face 24478 42724 40184 24911 Face 24479 24604 12242 9992 Face 24480 12243 9690 27256 Face 24481 24604 12243 12242 Face 24482 24604 47424 12243 Face 24483 2820 47599 27774 Face 24484 28031 42577 21005 Face 24485 7489 12245 35646 Face 24486 7489 15846 12245 Face 24487 25529 12246 13566 Face 24488 37431 302 12246 Face 24489 11879 12247 184 Face 24490 37431 12246 12247 Face 24491 2776 12248 10217 Face 24492 2776 25211 35989 Face 24493 30663 38671 7597 Face 24494 13988 39238 12249 Face 24495 40333 12250 11695 Face 24496 40333 41233 12250 Face 24497 39212 35683 23762 Face 24498 34440 29467 12251 Face 24499 5041 12252 10747 Face 24500 5041 25099 12252 Face 24501 4099 12253 35216 Face 24502 4099 28909 12253 Face 24503 20763 12254 21724 Face 24504 20763 15488 12254 Face 24505 19886 12255 24388 Face 24506 19886 22289 12255 Face 24507 28709 12256 7277 Face 24508 19780 8526 29221 Face 24509 27834 21377 18653 Face 24510 13496 26181 29342 Face 24511 11856 12258 28391 Face 24512 46572 5484 22604 Face 24513 20353 12259 28580 Face 24514 29981 10356 12259 Face 24515 5494 12260 38638 Face 24516 5494 5493 12260 Face 24517 6047 49419 21906 Face 24518 41846 42089 42113 Face 24519 6047 32023 49419 Face 24520 24637 12076 41156 Face 24521 3893 12263 30453 Face 24522 3893 21977 12263 Face 24523 4862 12264 21733 Face 24524 4862 17821 12264 Face 24525 44276 12265 31550 Face 24526 7155 21445 34625 Face 24527 399 16190 40153 Face 24528 399 8727 36126 Face 24529 4380 12267 38510 Face 24530 4380 17966 12267 Face 24531 42696 12268 36105 Face 24532 15838 10809 16471 Face 24533 29720 47823 8475 Face 24534 25301 20225 12269 Face 24535 498 12270 6209 Face 24536 38807 7957 12270 Face 24537 29497 46948 3169 Face 24538 351 17848 28431 Face 24539 15484 23055 7415 Face 24540 5595 21608 40174 Face 24541 5061 23222 12293 Face 24542 5061 43993 12273 Face 24543 15076 12274 4541 Face 24544 20961 34424 21380 Face 24545 28791 12275 2235 Face 24546 43536 7892 12275 Face 24547 43536 28791 13150 Face 24548 43536 12275 28791 Face 24549 27838 12277 5924 Face 24550 46638 4694 16256 Face 24551 22436 40332 6521 Face 24552 3540 18659 12278 Face 24553 19657 12279 29258 Face 24554 24385 24007 44481 Face 24555 43742 12280 40519 Face 24556 25790 32317 12280 Face 24557 32163 12281 14434 Face 24558 32877 4807 12281 Face 24559 35532 12282 17644 Face 24560 42130 10811 33352 Face 24561 35971 12283 9793 Face 24562 581 27353 12283 Face 24563 19587 12284 21034 Face 24564 19587 12283 35971 Face 24565 44790 12285 6848 Face 24566 44789 48607 12285 Face 24567 47288 12286 33090 Face 24568 19572 17323 44453 Face 24569 17523 25443 18148 Face 24570 1027 26679 12287 Face 24571 23723 12288 4951 Face 24572 7488 9872 43634 Face 24573 4613 12289 28804 Face 24574 35786 31900 22123 Face 24575 45680 12290 5410 Face 24576 2376 19474 38502 Face 24577 6079 29917 32412 Face 24578 23709 10158 12291 Face 24579 27224 12292 22934 Face 24580 37060 46689 12292 Face 24581 47190 34248 6680 Face 24582 47190 22717 12293 Face 24583 36908 12294 23585 Face 24584 36069 34728 12294 Face 24585 33541 25865 19059 Face 24586 2952 17652 12295 Face 24587 25725 26857 35107 Face 24588 4502 11079 26858 Face 24589 7448 32616 28484 Face 24590 22281 38563 12297 Face 24591 21329 12298 44491 Face 24592 25136 28554 12298 Face 24593 26243 12299 44166 Face 24594 26243 6412 12299 Face 24595 35573 12300 25048 Face 24596 45797 7887 22620 Face 24597 575 34935 25949 Face 24598 575 8391 34935 Face 24599 44667 12302 27712 Face 24600 37102 29843 12302 Face 24601 40806 22883 28376 Face 24602 19422 21545 12303 Face 24603 7180 12304 31862 Face 24604 7180 25487 12304 Face 24605 22412 12305 27845 Face 24606 22412 7205 12305 Face 24607 25326 22411 40570 Face 24608 7204 47277 12306 Face 24609 42497 40074 25992 Face 24610 27630 9532 31028 Face 24611 45623 12308 48078 Face 24612 45623 12416 12308 Face 24613 39511 12309 42453 Face 24614 39511 26768 12309 Face 24615 17178 12310 1385 Face 24616 18653 9122 12310 Face 24617 1038 46539 39414 Face 24618 1038 16384 41224 Face 24619 3609 12312 41604 Face 24620 28028 20001 12312 Face 24621 32895 19715 11209 Face 24622 26801 47635 12313 Face 24623 42579 12314 21865 Face 24624 586 26900 46606 Face 24625 18510 26647 35993 Face 24626 562 27727 19386 Face 24627 29753 48939 6968 Face 24628 29753 1795 12316 Face 24629 1660 12317 48968 Face 24630 1660 8450 12317 Face 24631 25571 12318 32804 Face 24632 25571 16207 28313 Face 24633 24533 22383 31623 Face 24634 3946 31829 12319 Face 24635 6074 36794 33643 Face 24636 6074 44188 36794 Face 24637 8101 12321 27234 Face 24638 8101 35080 12321 Face 24639 7526 12322 41036 Face 24640 7526 463 12322 Face 24641 463 49592 12322 Face 24642 463 30556 49592 Face 24643 5887 33309 1724 Face 24644 5887 18754 33309 Face 24645 1446 12325 26776 Face 24646 1446 49721 12325 Face 24647 5116 12326 32088 Face 24648 22983 21447 40484 Face 24649 1163 32596 47565 Face 24650 1163 8435 12327 Face 24651 7222 12328 31383 Face 24652 7222 18721 12328 Face 24653 4729 12329 47028 Face 24654 46944 30615 12329 Face 24655 12331 12330 30038 Face 24656 12332 19267 12330 Face 24657 5411 12331 30037 Face 24658 33458 12330 12331 Face 24659 5411 33458 12331 Face 24660 18725 11542 33459 Face 24661 4338 38766 38421 Face 24662 4338 10989 12333 Face 24663 38062 12334 13646 Face 24664 38062 25063 12334 Face 24665 7806 34300 5464 Face 24666 7806 17050 47794 Face 24667 2461 12336 34478 Face 24668 2461 43247 42899 Face 24669 13451 37284 5763 Face 24670 43158 48830 12337 Face 24671 3469 12338 1748 Face 24672 45653 18280 12338 Face 24673 5746 34648 28750 Face 24674 5746 8902 48187 Face 24675 46345 12340 8427 Face 24676 46345 10298 12340 Face 24677 21620 12341 34154 Face 24678 9366 23560 27023 Face 24679 4685 12342 47184 Face 24680 4685 8096 33091 Face 24681 5304 12343 5305 Face 24682 5304 39702 26734 Face 24683 4039 12344 6945 Face 24684 24301 37114 12344 Face 24685 6178 22310 5841 Face 24686 30839 27070 12345 Face 24687 20770 12346 39969 Face 24688 22630 10132 12346 Face 24689 16804 37468 3239 Face 24690 119 5615 37468 Face 24691 4016 36655 32791 Face 24692 37211 15612 36655 Face 24693 42879 12349 23314 Face 24694 42879 19426 12349 Face 24695 31753 23695 11024 Face 24696 1564 29725 41723 Face 24697 23151 33939 15751 Face 24698 26272 37564 12351 Face 24699 42228 12352 5833 Face 24700 25233 43238 12352 Face 24701 5544 25536 9522 Face 24702 12354 15648 25536 Face 24703 5544 12354 25536 Face 24704 5544 17887 12354 Face 24705 4743 12355 13127 Face 24706 4743 47613 27885 Face 24707 33720 38262 37223 Face 24708 33720 6901 27677 Face 24709 19283 12357 39795 Face 24710 29519 49881 34434 Face 24711 35461 12358 38659 Face 24712 35462 15046 12358 Face 24713 28759 29704 47195 Face 24714 18494 30799 35607 Face 24715 14987 44229 17004 Face 24716 1008 19353 12360 Face 24717 29475 46949 7830 Face 24718 33568 18945 34061 Face 24719 5330 12362 23879 Face 24720 41887 5743 12362 Face 24721 1631 12363 33155 Face 24722 18981 6610 12363 Face 24723 42233 40208 47250 Face 24724 7285 49013 39756 Face 24725 40875 19411 24390 Face 24726 1244 35172 24909 Face 24727 42893 18100 24977 Face 24728 4188 44349 18100 Face 24729 45831 15709 22638 Face 24730 815 9235 12367 Face 24731 5722 12368 18276 Face 24732 5722 32885 12368 Face 24733 7074 12369 25862 Face 24734 23429 7542 22179 Face 24735 21446 45721 4235 Face 24736 21446 7599 27680 Face 24737 20850 39154 36783 Face 24738 33170 25691 12371 Face 24739 44978 43467 25504 Face 24740 35982 10465 12372 Face 24741 2204 38425 16546 Face 24742 2204 7653 12373 Face 24743 19089 49380 291 Face 24744 30013 49865 12374 Face 24745 30495 29484 6851 Face 24746 23201 4900 43913 Face 24747 4364 31450 7861 Face 24748 4364 25176 23318 Face 24749 32357 17362 17727 Face 24750 32520 10544 12377 Face 24751 2664 34064 21010 Face 24752 2664 9021 44455 Face 24753 29516 12379 32639 Face 24754 29516 23322 12379 Face 24755 1885 44816 4249 Face 24756 1885 31818 30171 Face 24757 37172 12381 8341 Face 24758 25671 40990 12381 Face 24759 7649 26046 32363 Face 24760 7649 21768 12382 Face 24761 8294 12383 12172 Face 24762 8294 48014 12383 Face 24763 1217 20259 10437 Face 24764 18728 26077 37668 Face 24765 4390 12385 1496 Face 24766 15596 9510 44961 Face 24767 4312 12386 871 Face 24768 4312 4674 24938 Face 24769 12386 12387 37488 Face 24770 24938 29158 36253 Face 24771 7593 12388 35643 Face 24772 23606 46899 22850 Face 24773 2826 34558 20182 Face 24774 2826 19931 12389 Face 24775 48140 12390 10745 Face 24776 626 9705 12390 Face 24777 42052 12391 44551 Face 24778 42052 42053 12391 Face 24779 591 47192 24317 Face 24780 35878 11988 12392 Face 24781 6409 32559 24844 Face 24782 6409 5422 12393 Face 24783 2555 12394 2218 Face 24784 2555 30795 48964 Face 24785 42788 45853 27161 Face 24786 18493 2895 12395 Face 24787 34047 38001 33834 Face 24788 3400 29675 12396 Face 24789 2464 21773 9388 Face 24790 48602 8290 31509 Face 24791 25628 20179 9167 Face 24792 26111 21837 12398 Face 24793 14305 41288 19080 Face 24794 2741 20179 25628 Face 24795 38002 12400 32856 Face 24796 38002 25572 12400 Face 24797 128 12401 22411 Face 24798 128 11280 33503 Face 24799 34963 12402 30394 Face 24800 34963 31271 12402 Face 24801 30269 12403 46644 Face 24802 34765 24108 12403 Face 24803 1125 12404 32882 Face 24804 1125 43071 31849 Face 24805 27277 41413 35774 Face 24806 1626 43511 41981 Face 24807 24350 42458 10371 Face 24808 13367 17100 42458 Face 24809 21784 23772 44005 Face 24810 21784 12406 49664 Face 24811 329 12408 10130 Face 24812 329 23279 12408 Face 24813 20341 12409 41437 Face 24814 12410 32080 12409 Face 24815 49006 12410 12409 Face 24816 3988 33804 12410 Face 24817 272 12411 8933 Face 24818 12795 42503 28439 Face 24819 2923 12412 8308 Face 24820 29967 11328 12412 Face 24821 35072 12413 22264 Face 24822 7116 21656 43304 Face 24823 12916 12414 5537 Face 24824 21356 9163 44522 Face 24825 46984 25884 26759 Face 24826 11578 43396 12415 Face 24827 872 23656 21586 Face 24828 12417 45771 44599 Face 24829 872 12417 23656 Face 24830 31346 25279 21646 Face 24831 38909 12418 35571 Face 24832 38909 39061 12418 Face 24833 32196 31091 46329 Face 24834 21666 10786 24953 Face 24835 43943 12420 38093 Face 24836 40156 49467 12420 Face 24837 12422 35086 27320 Face 24838 12422 22150 35086 Face 24839 1862 47879 31189 Face 24840 1862 22150 12422 Face 24841 5865 12423 28336 Face 24842 37063 12539 12423 Face 24843 7099 12424 45871 Face 24844 7099 32453 12424 Face 24845 6239 12425 31223 Face 24846 6239 17344 24405 Face 24847 1644 38447 49055 Face 24848 1644 19100 12426 Face 24849 3811 46709 5475 Face 24850 47183 10336 38429 Face 24851 2736 24502 15906 Face 24852 2736 19878 12428 Face 24853 780 12429 29084 Face 24854 780 44725 12429 Face 24855 43713 12430 7200 Face 24856 35356 47209 21318 Face 24857 4934 12431 34594 Face 24858 4934 13487 12431 Face 24859 6240 12432 11838 Face 24860 6240 17995 12432 Face 24861 4423 23856 38140 Face 24862 21289 31932 12433 Face 24863 47516 45282 6044 Face 24864 24782 34485 31904 Face 24865 7273 12435 24634 Face 24866 7273 42584 15829 Face 24867 4686 12436 24628 Face 24868 4686 834 12436 Face 24869 5535 12437 29355 Face 24870 13131 41667 30152 Face 24871 23223 49889 14892 Face 24872 27722 34619 12438 Face 24873 4923 20532 24544 Face 24874 40252 27898 12439 Face 24875 43740 12440 46 Face 24876 30860 2901 25991 Face 24877 675 30855 11867 Face 24878 47329 2909 12441 Face 24879 4612 12442 25026 Face 24880 4612 40931 36215 Face 24881 17906 12443 45499 Face 24882 45223 43290 12443 Face 24883 9938 12444 42804 Face 24884 9938 40927 12444 Face 24885 44952 12445 15872 Face 24886 44952 24453 12445 Face 24887 33705 48578 25685 Face 24888 7025 7376 12446 Face 24889 48128 24719 5092 Face 24890 31457 32964 12447 Face 24891 7886 36251 7943 Face 24892 7886 45100 22676 Face 24893 27074 12449 14589 Face 24894 23421 37280 12449 Face 24895 771 12450 32542 Face 24896 771 26176 12450 Face 24897 44327 12451 34543 Face 24898 364 31250 38039 Face 24899 24922 19387 8676 Face 24900 364 38039 44327 Face 24901 48973 17612 27232 Face 24902 2872 32685 12453 Face 24903 29891 12454 21157 Face 24904 29891 15758 12454 Face 24905 1309 12455 41091 Face 24906 1309 30557 12455 Face 24907 6415 12456 24011 Face 24908 6415 5280 48686 Face 24909 4239 12457 16746 Face 24910 22481 3855 36116 Face 24911 26553 46013 23358 Face 24912 2524 47900 12458 Face 24913 4622 22800 18574 Face 24914 4622 28906 22800 Face 24915 12459 12460 46131 Face 24916 22800 28906 42816 Face 24917 30713 47554 16879 Face 24918 1672 1266 12461 Face 24919 41301 45959 6382 Face 24920 24874 49989 49745 Face 24921 5067 19284 33207 Face 24922 5067 36759 19284 Face 24923 5688 24819 37062 Face 24924 36546 38813 16296 Face 24925 5688 44563 12464 Face 24926 5688 35673 12465 Face 24927 15250 12466 18498 Face 24928 15250 7607 12466 Face 24929 33168 12467 43626 Face 24930 12468 17800 24629 Face 24931 4592 12468 24629 Face 24932 4592 42215 12468 Face 24933 2609 12469 19778 Face 24934 46185 30534 12469 Face 24935 41653 12470 6018 Face 24936 32492 8832 12470 Face 24937 35693 36111 10986 Face 24938 1085 42970 12471 Face 24939 17093 12472 2891 Face 24940 12474 29474 46248 Face 24941 33969 12473 11337 Face 24942 26911 36660 17093 Face 24943 35970 26911 12473 Face 24944 3962 2497 43029 Face 24945 2060 22107 47295 Face 24946 2060 11097 12475 Face 24947 39668 39873 30573 Face 24948 4425 37054 15173 Face 24949 5879 12477 35808 Face 24950 5879 18038 24156 Face 24951 8944 18586 46044 Face 24952 8944 20482 18586 Face 24953 5071 12479 25516 Face 24954 5071 2295 12479 Face 24955 46343 12480 44328 Face 24956 46343 9142 12480 Face 24957 4369 12481 30838 Face 24958 39812 12787 35329 Face 24959 883 12482 41985 Face 24960 883 7374 12482 Face 24961 35519 12483 18292 Face 24962 35519 27018 12483 Face 24963 34437 12484 36903 Face 24964 65 36583 41314 Face 24965 7542 12485 22179 Face 24966 7542 41878 12485 Face 24967 2733 40260 26028 Face 24968 2733 31784 40260 Face 24969 28946 28638 14219 Face 24970 45158 38635 12487 Face 24971 45606 24234 29603 Face 24972 22638 14837 12488 Face 24973 1633 45025 15624 Face 24974 40749 22109 29180 Face 24975 1355 12490 47525 Face 24976 1355 8107 12490 Face 24977 12492 12491 11548 Face 24978 12492 36530 12491 Face 24979 9038 12492 11548 Face 24980 9038 27989 12492 Face 24981 38368 12493 26990 Face 24982 29885 6083 35272 Face 24983 1627 14104 20789 Face 24984 16452 42572 14104 Face 24985 24586 48446 30726 Face 24986 1742 18387 12495 Face 24987 12647 43495 5451 Face 24988 41844 18807 12496 Face 24989 23680 34433 42118 Face 24990 1847 7584 38363 Face 24991 25994 21204 39215 Face 24992 25619 22755 37059 Face 24993 5995 12499 867 Face 24994 18246 29633 24142 Face 24995 28857 12500 2297 Face 24996 28857 43733 12500 Face 24997 18886 35891 32476 Face 24998 41446 11492 32293 Face 24999 27730 12502 6913 Face 25000 27730 27101 12502 Face 25001 6327 12503 21186 Face 25002 23153 9333 12503 Face 25003 25710 12504 32420 Face 25004 29697 33644 12504 Face 25005 8742 12505 29492 Face 25006 43499 48262 12505 Face 25007 3995 12506 12759 Face 25008 3995 6926 12506 Face 25009 355 12507 20086 Face 25010 47320 34602 12507 Face 25011 23857 15127 47032 Face 25012 355 45386 30216 Face 25013 42890 12509 24379 Face 25014 25570 45790 20509 Face 25015 4405 15999 8917 Face 25016 4405 44140 15999 Face 25017 15320 24842 48981 Face 25018 701 10513 24842 Face 25019 998 37999 47137 Face 25020 13048 16325 19023 Face 25021 38735 12513 10495 Face 25022 2631 11288 12513 Face 25023 17176 12514 11941 Face 25024 704 18601 12514 Face 25025 7468 24089 39789 Face 25026 7468 41513 24089 Face 25027 21680 16647 8595 Face 25028 4639 44210 12516 Face 25029 5162 12517 11934 Face 25030 5162 16686 12517 Face 25031 29871 12518 25530 Face 25032 29871 47060 12518 Face 25033 6433 12519 20659 Face 25034 46432 7612 23832 Face 25035 877 12520 32984 Face 25036 877 9130 46919 Face 25037 8340 12521 41550 Face 25038 8340 37908 12521 Face 25039 3165 12522 17175 Face 25040 3165 11049 12522 Face 25041 1535 12523 45629 Face 25042 1535 27705 12523 Face 25043 7667 12524 19948 Face 25044 7667 7599 12524 Face 25045 16780 22625 46331 Face 25046 32376 26013 12525 Face 25047 6812 12526 2084 Face 25048 49202 4604 34407 Face 25049 5912 12527 24578 Face 25050 44168 2460 12527 Face 25051 45116 12528 15373 Face 25052 45116 11231 12528 Face 25053 275 12529 11019 Face 25054 40440 11844 12529 Face 25055 6101 37411 29992 Face 25056 44716 9973 24137 Face 25057 6101 46533 37411 Face 25058 6101 18018 12531 Face 25059 32025 12532 17631 Face 25060 3798 34634 12532 Face 25061 8260 12533 22108 Face 25062 8260 49003 12533 Face 25063 8068 12534 21220 Face 25064 41140 31988 37302 Face 25065 47331 12535 15563 Face 25066 4533 32959 12535 Face 25067 2401 43607 4114 Face 25068 2401 28343 43608 Face 25069 27851 12537 8442 Face 25070 38713 5948 12537 Face 25071 2600 27460 33070 Face 25072 13275 8052 17194 Face 25073 3726 12539 501 Face 25074 3726 20014 12539 Face 25075 46554 12540 34766 Face 25076 191 7927 12540 Face 25077 21775 12541 40583 Face 25078 191 12540 46554 Face 25079 36153 12542 33419 Face 25080 36153 10728 44487 Face 25081 7911 44436 33685 Face 25082 13570 5090 12543 Face 25083 38352 12544 41511 Face 25084 38352 42461 12544 Face 25085 32161 12545 5518 Face 25086 49751 32291 12545 Face 25087 31968 12546 10275 Face 25088 635 5081 31972 Face 25089 10589 43860 18138 Face 25090 37923 13099 12547 Face 25091 1975 44924 14598 Face 25092 36639 10909 12548 Face 25093 19160 44143 6672 Face 25094 12550 4104 12549 Face 25095 17128 12550 12549 Face 25096 17128 22923 12550 Face 25097 11319 12551 6125 Face 25098 11319 7294 12551 Face 25099 3913 12552 20829 Face 25100 33524 14554 41575 Face 25101 2228 12553 20854 Face 25102 12870 13753 43935 Face 25103 25660 12554 26084 Face 25104 1363 27403 33112 Face 25105 24140 32900 8665 Face 25106 24140 35381 32900 Face 25107 42798 12556 7736 Face 25108 1261 29458 32392 Face 25109 7868 38493 47489 Face 25110 7868 4191 38493 Face 25111 3398 12558 15641 Face 25112 3398 24819 12558 Face 25113 1032 12559 16752 Face 25114 1032 30486 12559 Face 25115 1264 28986 10913 Face 25116 1264 19661 12560 Face 25117 27585 12561 280 Face 25118 1622 24688 12561 Face 25119 24557 12562 19590 Face 25120 40997 35728 31396 Face 25121 44106 12563 17846 Face 25122 4020 33107 12563 Face 25123 4353 12564 19313 Face 25124 4353 23842 12564 Face 25125 20414 30696 26136 Face 25126 706 23725 30696 Face 25127 1926 12566 45627 Face 25128 40834 14378 32836 Face 25129 22444 40469 49587 Face 25130 28642 35535 44422 Face 25131 37994 12568 7219 Face 25132 31717 24575 27467 Face 25133 5910 39648 39209 Face 25134 5910 25988 39647 Face 25135 43770 41618 20060 Face 25136 23663 40453 23400 Face 25137 3559 12571 42344 Face 25138 44617 5809 12571 Face 25139 2102 12572 35024 Face 25140 2102 24540 12572 Face 25141 47530 12573 10325 Face 25142 42756 33479 39397 Face 25143 47530 12574 39397 Face 25144 97 13533 12574 Face 25145 47530 12575 42406 Face 25146 47530 10325 12575 Face 25147 17975 40585 3433 Face 25148 12577 41930 12576 Face 25149 20021 12577 12576 Face 25150 20021 44584 12577 Face 25151 707 12578 40447 Face 25152 19582 41284 12578 Face 25153 18396 12579 8322 Face 25154 30773 6663 20434 Face 25155 32082 12580 1516 Face 25156 22657 8801 12580 Face 25157 27571 12581 25022 Face 25158 19536 45385 15216 Face 25159 1399 12582 16004 Face 25160 1399 37447 12582 Face 25161 1399 12583 44726 Face 25162 1399 48562 46558 Face 25163 41173 12584 32204 Face 25164 41173 27888 12584 Face 25165 7137 12585 22453 Face 25166 7137 28457 12585 Face 25167 49325 12586 12818 Face 25168 19929 18620 12586 Face 25169 49326 12587 12586 Face 25170 15238 42148 12587 Face 25171 13335 35940 19056 Face 25172 13335 42133 35940 Face 25173 1276 12589 48618 Face 25174 1276 17380 38432 Face 25175 1136 12590 10313 Face 25176 1136 13793 26120 Face 25177 8355 44089 26361 Face 25178 8355 33272 12591 Face 25179 29618 12592 35679 Face 25180 19391 11820 36061 Face 25181 25027 12593 43166 Face 25182 25027 40913 12593 Face 25183 10595 12594 9948 Face 25184 42947 36773 12594 Face 25185 3529 12595 1052 Face 25186 3529 8002 12595 Face 25187 3782 26293 45955 Face 25188 3782 30378 26293 Face 25189 7349 35380 26116 Face 25190 34914 16748 12597 Face 25191 5870 19440 38372 Face 25192 5870 3667 19440 Face 25193 17995 12599 41389 Face 25194 33463 48502 12599 Face 25195 30151 12600 29968 Face 25196 12601 8177 12600 Face 25197 30151 12601 12600 Face 25198 12603 32309 12601 Face 25199 12603 12602 33679 Face 25200 17353 20287 12602 Face 25201 3043 12603 12601 Face 25202 16893 9567 17353 Face 25203 3862 12604 17914 Face 25204 3862 32887 12604 Face 25205 7094 17616 30956 Face 25206 7094 36321 12605 Face 25207 3972 12606 35196 Face 25208 3972 48406 12606 Face 25209 186 12607 10410 Face 25210 17730 45644 12607 Face 25211 48038 40970 4715 Face 25212 428 8262 12608 Face 25213 1579 12609 46233 Face 25214 22680 48396 42987 Face 25215 4946 48464 30154 Face 25216 4946 17059 45823 Face 25217 12610 45216 16803 Face 25218 35145 4940 12611 Face 25219 3440 45921 39073 Face 25220 14633 30571 12612 Face 25221 32555 12614 6855 Face 25222 40014 2771 46900 Face 25223 40602 12614 49887 Face 25224 12613 23428 28115 Face 25225 12230 12615 22711 Face 25226 12230 9979 49918 Face 25227 12617 12616 46370 Face 25228 12617 37602 12616 Face 25229 14896 12617 11099 Face 25230 5333 15792 41596 Face 25231 24187 12618 18609 Face 25232 1503 36771 12618 Face 25233 23131 43141 21973 Face 25234 3997 8849 12619 Face 25235 41545 30704 31850 Face 25236 41544 14008 12620 Face 25237 10087 12621 39911 Face 25238 29501 7272 32346 Face 25239 20286 12622 13186 Face 25240 20286 31270 12622 Face 25241 35365 12623 8643 Face 25242 46407 4536 40746 Face 25243 1891 21736 29026 Face 25244 1891 23070 21736 Face 25245 4062 34005 43364 Face 25246 31701 26912 12625 Face 25247 4252 12626 38150 Face 25248 4252 4251 45374 Face 25249 157 37643 35712 Face 25250 157 10857 37643 Face 25251 47619 12628 4548 Face 25252 35825 24434 12628 Face 25253 37988 12629 11230 Face 25254 29957 47506 38973 Face 25255 29957 12630 48713 Face 25256 7397 6483 35723 Face 25257 16054 48304 32 Face 25258 9044 10718 40245 Face 25259 4506 12632 40289 Face 25260 33360 48332 12632 Face 25261 24391 12633 21667 Face 25262 43150 19450 30671 Face 25263 26247 35054 42604 Face 25264 34881 10920 21459 Face 25265 12636 42085 20217 Face 25266 40471 35426 42085 Face 25267 31329 12636 23235 Face 25268 40471 42085 12636 Face 25269 13842 12637 22202 Face 25270 22898 17352 37625 Face 25271 25013 12638 11378 Face 25272 945 49318 39598 Face 25273 2936 12639 36619 Face 25274 47075 29867 12639 Face 25275 45481 12640 11915 Face 25276 45481 34470 12640 Face 25277 1704 12641 39645 Face 25278 1704 27450 12641 Face 25279 902 12642 5003 Face 25280 902 36603 12642 Face 25281 12644 27912 23340 Face 25282 61 38125 29613 Face 25283 20340 25532 11608 Face 25284 20340 12643 12644 Face 25285 3883 12645 46140 Face 25286 28339 20475 12645 Face 25287 2400 12646 29818 Face 25288 2400 40116 12646 Face 25289 44639 25466 35929 Face 25290 41844 43495 12647 Face 25291 40654 12648 16180 Face 25292 25553 6737 12648 Face 25293 16807 40654 2196 Face 25294 25553 12648 40654 Face 25295 648 12650 9027 Face 25296 26567 44970 15824 Face 25297 4154 12651 16538 Face 25298 4154 24587 12651 Face 25299 5761 43991 38114 Face 25300 26876 16492 43991 Face 25301 14112 12653 19557 Face 25302 33075 23200 12653 Face 25303 479 12654 36971 Face 25304 479 20951 25431 Face 25305 19625 12655 40705 Face 25306 3876 14568 12655 Face 25307 4515 48142 12251 Face 25308 33823 32415 48142 Face 25309 6905 12657 20363 Face 25310 6905 12178 12657 Face 25311 33251 12658 7581 Face 25312 33250 29170 12658 Face 25313 2116 12659 38733 Face 25314 2116 4561 12659 Face 25315 38555 12660 40430 Face 25316 48664 37423 12660 Face 25317 10000 12661 2137 Face 25318 14012 21431 42705 Face 25319 3392 31841 8093 Face 25320 46299 11054 41760 Face 25321 35339 12663 17570 Face 25322 5355 121 12663 Face 25323 34713 38136 32642 Face 25324 36873 8229 30320 Face 25325 1543 12665 46087 Face 25326 42288 15310 12665 Face 25327 34889 30674 20429 Face 25328 36007 43369 41257 Face 25329 4749 12667 11464 Face 25330 41722 34448 12667 Face 25331 47187 12668 8347 Face 25332 14479 29402 12668 Face 25333 27532 12669 35419 Face 25334 3050 8722 42062 Face 25335 21715 24521 24803 Face 25336 36911 11750 12670 Face 25337 8435 12671 12327 Face 25338 21155 30062 12671 Face 25339 40847 12672 9528 Face 25340 7815 18090 12672 Face 25341 21825 12673 17070 Face 25342 29385 32584 12673 Face 25343 41033 12674 34037 Face 25344 24785 4306 12674 Face 25345 24003 12675 16810 Face 25346 25780 47364 43676 Face 25347 31652 12676 34326 Face 25348 2479 6475 12676 Face 25349 6574 12677 15681 Face 25350 28856 21202 12677 Face 25351 7167 12678 21763 Face 25352 7167 49166 12678 Face 25353 37371 12679 28002 Face 25354 1495 10413 24334 Face 25355 4151 12680 32931 Face 25356 19249 32519 19601 Face 25357 4151 45772 12680 Face 25358 4151 8820 15710 Face 25359 24479 12682 31836 Face 25360 35085 13374 49197 Face 25361 45807 28514 12682 Face 25362 36601 13195 12683 Face 25363 3875 40127 10943 Face 25364 45807 12682 24479 Face 25365 2647 12685 29563 Face 25366 41826 11412 30224 Face 25367 42627 12686 8413 Face 25368 6929 34315 12686 Face 25369 13359 43098 19792 Face 25370 400 21495 12687 Face 25371 25917 27665 46946 Face 25372 976 23435 47648 Face 25373 28595 12689 19062 Face 25374 976 47648 12689 Face 25375 39596 12690 17783 Face 25376 39596 22633 12690 Face 25377 12751 26769 9287 Face 25378 46180 23885 31300 Face 25379 1241 12692 26770 Face 25380 20110 14320 33344 Face 25381 30957 30346 6051 Face 25382 4017 32529 12693 Face 25383 1408 12694 21298 Face 25384 39370 6749 12694 Face 25385 19665 44825 23001 Face 25386 3089 49382 12695 Face 25387 3907 12696 39845 Face 25388 24945 21721 36925 Face 25389 642 21826 41299 Face 25390 38865 29677 21826 Face 25391 23530 12698 22171 Face 25392 31054 10666 12698 Face 25393 33817 12699 42366 Face 25394 12700 48090 12699 Face 25395 33817 12700 12699 Face 25396 42967 49914 12700 Face 25397 1432 12701 23010 Face 25398 1432 43084 12701 Face 25399 23547 20621 7332 Face 25400 26089 4573 35516 Face 25401 16653 34217 43901 Face 25402 2186 14586 34217 Face 25403 133 24012 33144 Face 25404 133 30374 12704 Face 25405 165 12705 9411 Face 25406 165 32490 14975 Face 25407 2480 12706 18545 Face 25408 2480 40799 12706 Face 25409 12706 31576 18545 Face 25410 12706 29117 31576 Face 25411 29232 48185 14053 Face 25412 21539 8402 18791 Face 25413 17285 25755 14448 Face 25414 12710 18700 12709 Face 25415 8149 12710 12709 Face 25416 8149 45879 12710 Face 25417 1221 12711 22020 Face 25418 23516 16435 12711 Face 25419 13707 25650 11569 Face 25420 13707 27484 12712 Face 25421 33320 12713 19427 Face 25422 3303 28059 12713 Face 25423 20898 29260 16736 Face 25424 27327 1503 12714 Face 25425 4169 19901 13039 Face 25426 24199 7767 19901 Face 25427 24375 12716 23624 Face 25428 1110 23111 12716 Face 25429 6000 12717 23035 Face 25430 6000 21767 12717 Face 25431 5452 12718 25113 Face 25432 41682 27075 33515 Face 25433 5849 40106 15682 Face 25434 5849 46260 40106 Face 25435 5408 32432 10772 Face 25436 5408 33740 32432 Face 25437 33134 12721 9957 Face 25438 21476 19618 12721 Face 25439 7140 12722 28161 Face 25440 33369 31034 12722 Face 25441 4543 12723 31264 Face 25442 39483 47704 12723 Face 25443 26983 12724 42508 Face 25444 26983 23466 12724 Face 25445 32057 12725 45377 Face 25446 17756 8165 39461 Face 25447 6226 42252 15935 Face 25448 6226 29157 42252 Face 25449 3049 36224 9299 Face 25450 3049 43660 26547 Face 25451 37553 32409 44341 Face 25452 3057 11489 32409 Face 25453 866 12729 23136 Face 25454 25188 18383 12729 Face 25455 16623 42365 22005 Face 25456 2529 45697 42364 Face 25457 1260 12731 28196 Face 25458 38832 44224 12731 Face 25459 2191 47302 8779 Face 25460 18611 4786 12732 Face 25461 12734 19850 33496 Face 25462 2543 44933 27337 Face 25463 16264 23640 42028 Face 25464 2543 14514 12734 Face 25465 21518 48726 6012 Face 25466 1605 16668 48726 Face 25467 45816 28743 27142 Face 25468 45816 1300 28743 Face 25469 18853 12737 12738 Face 25470 38503 29988 12737 Face 25471 732 12738 25970 Face 25472 33141 43462 16287 Face 25473 48868 17576 11612 Face 25474 22197 35606 17576 Face 25475 20595 12740 31334 Face 25476 20595 19908 12740 Face 25477 95 12741 39076 Face 25478 32423 3036 12741 Face 25479 4128 30755 6923 Face 25480 4128 11433 30755 Face 25481 5978 12743 49665 Face 25482 44926 47879 12743 Face 25483 568 12744 27426 Face 25484 26010 16191 42991 Face 25485 568 38157 12744 Face 25486 568 36325 12745 Face 25487 39111 12746 29389 Face 25488 1351 20873 12746 Face 25489 6586 49994 27814 Face 25490 25178 2876 12747 Face 25491 15812 43983 14790 Face 25492 5953 23045 12748 Face 25493 5134 12749 8923 Face 25494 40022 47476 29805 Face 25495 2552 12750 18026 Face 25496 43015 11413 12750 Face 25497 17773 40879 4257 Face 25498 1241 26769 12751 Face 25499 3638 12752 43623 Face 25500 3638 47973 12752 Face 25501 1014 44859 15176 Face 25502 41166 6695 12753 Face 25503 5920 12754 22659 Face 25504 41975 29084 12754 Face 25505 5920 41975 12754 Face 25506 25483 2318 12755 Face 25507 31306 12756 7090 Face 25508 5845 30915 12756 Face 25509 46016 12757 27999 Face 25510 46016 17172 12757 Face 25511 5971 14746 44557 Face 25512 5971 10672 42653 Face 25513 8469 12759 19582 Face 25514 8469 3995 12759 Face 25515 42485 44346 8199 Face 25516 3060 29971 12760 Face 25517 35510 45055 13113 Face 25518 35509 3949 40528 Face 25519 6615 12762 33998 Face 25520 23636 14512 12762 Face 25521 49659 12763 17280 Face 25522 16498 24838 34263 Face 25523 2717 12764 33806 Face 25524 43877 30719 12764 Face 25525 26664 12765 634 Face 25526 26664 19709 49874 Face 25527 39813 30856 10166 Face 25528 27751 31562 12766 Face 25529 7664 12767 23643 Face 25530 41571 16423 12767 Face 25531 27719 47157 7690 Face 25532 27719 7682 12768 Face 25533 42032 12769 26628 Face 25534 42032 8001 12769 Face 25535 20545 12770 9905 Face 25536 1619 3339 12770 Face 25537 38982 37500 4281 Face 25538 29821 11557 12771 Face 25539 38399 30899 11136 Face 25540 787 19482 35194 Face 25541 25719 39331 42062 Face 25542 25719 16692 12773 Face 25543 10330 12774 15127 Face 25544 10330 49546 12774 Face 25545 1679 12775 13986 Face 25546 1679 21327 12775 Face 25547 3611 12776 30191 Face 25548 27336 15981 25648 Face 25549 33202 12777 31443 Face 25550 33202 41763 12777 Face 25551 14469 37603 10450 Face 25552 926 16809 29815 Face 25553 631 12779 34364 Face 25554 25152 5813 41721 Face 25555 42 12780 21923 Face 25556 42 28783 12780 Face 25557 32448 38107 5610 Face 25558 2423 12651 12781 Face 25559 5476 12782 32179 Face 25560 15393 25509 12782 Face 25561 29498 43942 13240 Face 25562 29498 15785 43942 Face 25563 437 12784 29956 Face 25564 437 41247 12784 Face 25565 40645 12785 48305 Face 25566 36033 30502 39270 Face 25567 25127 12786 17095 Face 25568 6746 28756 13101 Face 25569 5204 12787 39812 Face 25570 40137 23036 16052 Face 25571 1830 40553 39471 Face 25572 1830 4140 40553 Face 25573 33382 47983 19252 Face 25574 33382 40995 47983 Face 25575 37449 12790 8203 Face 25576 15538 28477 12790 Face 25577 43097 12791 36817 Face 25578 43305 23622 12791 Face 25579 27271 49815 33068 Face 25580 6872 35323 12792 Face 25581 40293 12793 37009 Face 25582 1943 26017 45140 Face 25583 49251 29228 13403 Face 25584 34370 26736 29228 Face 25585 272 12795 12411 Face 25586 40495 31775 12795 Face 25587 32348 12796 25814 Face 25588 4439 28496 12796 Face 25589 4439 12797 12161 Face 25590 32348 35091 28516 Face 25591 15431 12798 5302 Face 25592 5025 39681 12798 Face 25593 5275 33681 13858 Face 25594 5275 20138 12799 Face 25595 26880 36678 45161 Face 25596 29668 11306 12800 Face 25597 86 12801 33570 Face 25598 25173 33539 12801 Face 25599 1323 31051 19043 Face 25600 21708 33891 31048 Face 25601 1292 12803 48906 Face 25602 30735 3804 12803 Face 25603 38220 28927 24649 Face 25604 8541 3272 12804 Face 25605 28927 12805 10851 Face 25606 12804 6270 12805 Face 25607 10157 12806 48794 Face 25608 10157 38045 12806 Face 25609 2017 12807 18343 Face 25610 32366 19960 28538 Face 25611 9670 35726 28840 Face 25612 32414 36376 12808 Face 25613 27218 12809 26631 Face 25614 15896 20503 12809 Face 25615 19984 12810 48245 Face 25616 12883 11804 12810 Face 25617 18055 36202 18892 Face 25618 12812 40882 36086 Face 25619 2059 12812 36086 Face 25620 2059 47035 12812 Face 25621 27560 21753 11918 Face 25622 33304 20731 33451 Face 25623 36665 12814 6560 Face 25624 36665 10620 12814 Face 25625 38205 40927 10393 Face 25626 3019 17863 12815 Face 25627 28243 12816 11688 Face 25628 38269 27599 43538 Face 25629 3004 12817 18899 Face 25630 3004 37364 12817 Face 25631 18097 12818 2338 Face 25632 40684 49325 12818 Face 25633 43982 39571 27714 Face 25634 5421 36244 12819 Face 25635 44511 12820 49113 Face 25636 44511 22512 12820 Face 25637 2550 12821 11506 Face 25638 2550 49113 12821 Face 25639 4107 12822 36302 Face 25640 4107 13300 35568 Face 25641 3923 12823 40129 Face 25642 3923 29209 12823 Face 25643 9195 12824 2328 Face 25644 30214 20457 12824 Face 25645 1498 12825 49138 Face 25646 1498 49421 12825 Face 25647 1216 41581 43517 Face 25648 1216 6845 42688 Face 25649 12828 25080 40358 Face 25650 606 35285 45114 Face 25651 23603 12828 40550 Face 25652 23603 12827 38266 Face 25653 606 26445 20888 Face 25654 606 45114 12829 Face 25655 21858 12830 47118 Face 25656 5250 25566 12830 Face 25657 4218 42258 12149 Face 25658 39991 24843 42258 Face 25659 10410 45426 186 Face 25660 10410 49274 12832 Face 25661 5130 12833 28130 Face 25662 5130 34698 12833 Face 25663 20531 12834 29936 Face 25664 43103 15806 12834 Face 25665 2952 12835 17652 Face 25666 2952 16129 12835 Face 25667 5892 12836 10579 Face 25668 5892 16465 12836 Face 25669 1776 35192 45855 Face 25670 1776 22896 35192 Face 25671 18798 12838 6262 Face 25672 873 26763 12838 Face 25673 39942 25113 12718 Face 25674 1856 17475 12839 Face 25675 37972 12840 46178 Face 25676 37613 9262 12840 Face 25677 6233 33582 23556 Face 25678 6233 8265 12841 Face 25679 41183 43970 25804 Face 25680 78 4888 43970 Face 25681 1359 12843 11112 Face 25682 13188 39887 12843 Face 25683 35447 12844 41180 Face 25684 35447 35942 12844 Face 25685 5728 12845 19190 Face 25686 38657 11870 12845 Face 25687 2560 36562 44050 Face 25688 46254 34892 12846 Face 25689 37996 42996 36265 Face 25690 12846 28382 12847 Face 25691 4064 12848 25647 Face 25692 32770 38101 12848 Face 25693 19554 12849 28779 Face 25694 19554 42853 12849 Face 25695 28014 15869 44679 Face 25696 28014 33657 12850 Face 25697 2718 37548 46602 Face 25698 2718 47348 37548 Face 25699 2317 12852 16465 Face 25700 24739 4036 47651 Face 25701 8489 32503 38325 Face 25702 8489 48574 12853 Face 25703 1707 12854 43885 Face 25704 1707 10485 32312 Face 25705 6695 12855 12753 Face 25706 23133 45479 12855 Face 25707 6034 12856 36939 Face 25708 6034 43553 12856 Face 25709 5175 12857 38738 Face 25710 38755 32913 47641 Face 25711 1771 12858 38993 Face 25712 1771 33682 12858 Face 25713 12860 42787 11692 Face 25714 35943 24835 12859 Face 25715 111 12860 44035 Face 25716 111 12859 12860 Face 25717 37277 27759 10387 Face 25718 32136 20742 12861 Face 25719 616 12862 47684 Face 25720 37276 6119 47313 Face 25721 27831 12863 13061 Face 25722 2483 27496 49315 Face 25723 29396 12864 4646 Face 25724 26664 634 34883 Face 25725 3855 12865 36116 Face 25726 3855 36576 12865 Face 25727 32845 45213 28672 Face 25728 32845 42511 12866 Face 25729 732 12867 16287 Face 25730 732 11278 12867 Face 25731 47865 22575 30613 Face 25732 41597 18969 12868 Face 25733 4617 43655 10844 Face 25734 4617 25761 12869 Face 25735 2228 12870 43935 Face 25736 43754 14008 12870 Face 25737 13797 39027 32625 Face 25738 16079 34864 39027 Face 25739 4406 12872 32505 Face 25740 4406 33383 12872 Face 25741 7937 37910 3214 Face 25742 16787 42188 12873 Face 25743 35692 12874 30965 Face 25744 35692 30717 12874 Face 25745 26866 12875 5493 Face 25746 13765 44337 12875 Face 25747 3198 38874 37256 Face 25748 3198 12060 38874 Face 25749 30100 12877 35298 Face 25750 42780 31744 12877 Face 25751 3338 12878 9742 Face 25752 26612 32350 12878 Face 25753 47769 12879 34176 Face 25754 7528 37608 12879 Face 25755 8098 12880 247 Face 25756 8098 39131 12880 Face 25757 21754 12881 835 Face 25758 6715 1457 33789 Face 25759 35295 12882 15155 Face 25760 41274 6310 12882 Face 25761 39062 12883 12810 Face 25762 12964 32531 12883 Face 25763 32287 12884 40678 Face 25764 4281 15362 12884 Face 25765 4550 12885 31465 Face 25766 41086 15128 28983 Face 25767 34224 42808 34683 Face 25768 5191 34107 42808 Face 25769 20384 12887 20463 Face 25770 23304 32150 12887 Face 25771 43040 12888 19274 Face 25772 43040 13407 12888 Face 25773 16025 41291 4206 Face 25774 16025 29686 12889 Face 25775 5597 12890 45041 Face 25776 40183 24313 12890 Face 25777 34932 29781 34877 Face 25778 31344 24693 29781 Face 25779 3834 12892 14771 Face 25780 3834 1453 12892 Face 25781 46535 34048 6058 Face 25782 33781 19718 34048 Face 25783 33781 12894 19718 Face 25784 5976 41267 20000 Face 25785 4505 12895 21176 Face 25786 4505 47687 12895 Face 25787 3314 12896 37249 Face 25788 34508 26874 12896 Face 25789 4365 36979 9964 Face 25790 4365 44478 12897 Face 25791 34614 12898 26731 Face 25792 49013 7285 12898 Face 25793 13132 12899 18742 Face 25794 5535 31835 12899 Face 25795 16875 12900 12982 Face 25796 26666 35979 12900 Face 25797 2370 12901 30999 Face 25798 43820 32027 12901 Face 25799 27832 12902 42530 Face 25800 27832 5000 12902 Face 25801 40733 12903 34882 Face 25802 11227 38208 12903 Face 25803 18793 12904 27659 Face 25804 7382 18927 12904 Face 25805 3386 12905 4435 Face 25806 21120 2347 40898 Face 25807 4522 12906 32092 Face 25808 4522 28509 12906 Face 25809 25019 12907 47127 Face 25810 2738 22521 12907 Face 25811 1357 12908 34225 Face 25812 1357 31831 12908 Face 25813 29242 12909 34393 Face 25814 37977 19054 43240 Face 25815 37977 38537 19054 Face 25816 3253 37979 43159 Face 25817 22670 27952 5392 Face 25818 4292 14117 12911 Face 25819 2411 12912 24414 Face 25820 2411 46325 12912 Face 25821 22434 12913 33493 Face 25822 3225 18690 12913 Face 25823 1236 41022 17436 Face 25824 1236 38622 12914 Face 25825 44682 12915 3598 Face 25826 40554 9638 12915 Face 25827 21356 12916 10661 Face 25828 21356 12414 12916 Face 25829 8468 42442 26965 Face 25830 8468 3098 39223 Face 25831 49366 15464 23772 Face 25832 37050 27549 32607 Face 25833 44762 12919 26378 Face 25834 14710 12407 38377 Face 25835 18657 12920 27305 Face 25836 18657 22786 12920 Face 25837 39864 12921 33947 Face 25838 13349 8528 43937 Face 25839 46090 12922 7619 Face 25840 9875 10 38824 Face 25841 8240 30513 18430 Face 25842 22008 45148 12923 Face 25843 23503 12924 20061 Face 25844 2415 38154 12924 Face 25845 45917 12925 24384 Face 25846 45917 28233 12925 Face 25847 38950 25869 9073 Face 25848 4171 8695 25869 Face 25849 4706 12927 29466 Face 25850 4706 30056 12927 Face 25851 7469 12928 44066 Face 25852 7469 29840 12928 Face 25853 5702 23801 36049 Face 25854 5702 647 12929 Face 25855 3426 12930 33037 Face 25856 15065 7601 12930 Face 25857 4125 49707 30117 Face 25858 4125 7119 49707 Face 25859 1497 28979 2 Face 25860 26481 44850 12932 Face 25861 1497 12933 12932 Face 25862 25580 19384 33398 Face 25863 1105 12934 34011 Face 25864 46327 16024 12934 Face 25865 27014 32406 49928 Face 25866 2009 7687 12935 Face 25867 42193 33082 43635 Face 25868 15887 9584 45005 Face 25869 9801 12937 9802 Face 25870 9801 20864 12937 Face 25871 40853 12938 46244 Face 25872 2050 14467 12938 Face 25873 6856 29148 38287 Face 25874 48537 42769 12939 Face 25875 36129 12940 2462 Face 25876 2120 32910 12940 Face 25877 3710 12941 35071 Face 25878 3710 17847 12941 Face 25879 3267 12942 35974 Face 25880 47167 15667 44114 Face 25881 210 12943 15932 Face 25882 210 30528 12943 Face 25883 5028 12944 5030 Face 25884 28222 22697 12944 Face 25885 38831 42657 12189 Face 25886 4138 14680 15231 Face 25887 3605 33165 30478 Face 25888 17656 38691 12946 Face 25889 29196 42257 3424 Face 25890 48284 19573 42257 Face 25891 31860 32534 31253 Face 25892 855 28772 12948 Face 25893 33725 12949 12158 Face 25894 33725 12948 12949 Face 25895 19702 12950 3022 Face 25896 19701 3083 12950 Face 25897 9503 44154 14845 Face 25898 9503 3723 12951 Face 25899 46116 12952 26957 Face 25900 8610 39885 12952 Face 25901 3150 12953 37961 Face 25902 3150 20759 12953 Face 25903 5189 12954 6116 Face 25904 12955 8651 12954 Face 25905 5189 12955 12954 Face 25906 5189 26918 12955 Face 25907 34967 12956 588 Face 25908 34967 11276 12956 Face 25909 4787 12957 39792 Face 25910 4787 49788 12957 Face 25911 3167 35637 8496 Face 25912 47600 39686 35638 Face 25913 21152 12959 46731 Face 25914 44500 34015 12959 Face 25915 3097 36289 12917 Face 25916 19951 9415 36289 Face 25917 4400 12961 794 Face 25918 30594 3148 36659 Face 25919 18844 12962 16250 Face 25920 41357 22449 12962 Face 25921 38684 12963 12090 Face 25922 2951 47724 12963 Face 25923 39062 12964 12883 Face 25924 39063 4463 12964 Face 25925 4779 12965 19706 Face 25926 4779 34285 12965 Face 25927 524 30111 29982 Face 25928 23643 8053 30111 Face 25929 15496 12967 39591 Face 25930 15496 8432 37131 Face 25931 9028 12968 30211 Face 25932 9028 19308 47630 Face 25933 32322 12969 24731 Face 25934 32322 17923 12969 Face 25935 12969 12970 24731 Face 25936 12969 19722 12970 Face 25937 3719 12971 15325 Face 25938 3719 18312 12971 Face 25939 3172 12972 20488 Face 25940 21811 10323 12972 Face 25941 4926 46225 44235 Face 25942 48476 43996 12973 Face 25943 7722 45757 29426 Face 25944 33389 950 12974 Face 25945 4415 12975 8382 Face 25946 44495 16251 44676 Face 25947 3736 12976 36845 Face 25948 49901 48910 12976 Face 25949 38729 22454 16225 Face 25950 49204 14647 12977 Face 25951 2575 12978 32354 Face 25952 14158 33841 29193 Face 25953 25880 19435 2745 Face 25954 16176 13811 12979 Face 25955 42203 25880 2745 Face 25956 39197 22542 16176 Face 25957 22769 48067 41474 Face 25958 25895 31070 12981 Face 25959 5028 12982 41641 Face 25960 5028 5030 12982 Face 25961 22833 12983 3447 Face 25962 49902 44289 12983 Face 25963 3716 30862 31353 Face 25964 3716 638 12984 Face 25965 206 12985 12228 Face 25966 48977 700 35890 Face 25967 206 12986 12985 Face 25968 26838 5828 12986 Face 25969 1652 12987 24567 Face 25970 1652 8793 12987 Face 25971 387 12988 15857 Face 25972 47469 31804 12988 Face 25973 387 47469 12988 Face 25974 387 23553 12989 Face 25975 8840 12991 39006 Face 25976 17671 32391 22623 Face 25977 22623 12991 8840 Face 25978 12990 11766 30238 Face 25979 21641 38248 12993 Face 25980 21641 49576 38248 Face 25981 12195 12993 38248 Face 25982 12195 29385 12993 Face 25983 713 40864 26009 Face 25984 713 42009 12994 Face 25985 38025 21102 24361 Face 25986 17971 22470 12995 Face 25987 6232 23538 31898 Face 25988 6232 30954 12996 Face 25989 29699 12997 38151 Face 25990 29699 5150 12997 Face 25991 28504 12998 35585 Face 25992 28504 36875 12998 Face 25993 2073 12999 7713 Face 25994 2073 24579 12999 Face 25995 6850 13000 9410 Face 25996 6850 30496 13000 Face 25997 23952 37732 11308 Face 25998 2240 39505 13001 Face 25999 28219 25940 45804 Face 26000 5632 5631 13002 Face 26001 506 28159 7994 Face 26002 506 39462 23968 Face 26003 6102 13004 40238 Face 26004 6102 2752 13004 Face 26005 22545 13005 39220 Face 26006 48832 6244 30887 Face 26007 37120 13006 43420 Face 26008 37120 19494 13006 Face 26009 38060 13007 40721 Face 26010 38060 16767 13007 Face 26011 44836 13008 8187 Face 26012 44836 28762 13008 Face 26013 42306 27943 7876 Face 26014 29546 34438 13009 Face 26015 38930 26205 3974 Face 26016 3457 42897 13010 Face 26017 3799 28667 39369 Face 26018 13849 36566 33684 Face 26019 40121 13012 29315 Face 26020 17759 26333 35045 Face 26021 4213 34641 16811 Face 26022 4213 20105 46791 Face 26023 5626 13014 34817 Face 26024 5626 15871 13014 Face 26025 3742 13015 21672 Face 26026 3742 49472 13015 Face 26027 39068 27174 35671 Face 26028 10773 34664 13016 Face 26029 4138 22238 427 Face 26030 38831 8575 13017 Face 26031 45599 39295 5069 Face 26032 45599 27548 13018 Face 26033 6003 13019 26893 Face 26034 6003 6648 20042 Face 26035 1349 13020 9281 Face 26036 14976 42712 30239 Face 26037 4815 13021 32888 Face 26038 4815 49635 13021 Face 26039 2920 13022 23580 Face 26040 2920 11611 13022 Face 26041 4719 13023 38953 Face 26042 4719 30046 13023 Face 26043 19912 13024 8442 Face 26044 1109 2291 13024 Face 26045 35487 27967 43167 Face 26046 22048 34782 29055 Face 26047 41087 13026 36783 Face 26048 31529 14636 13026 Face 26049 30434 13027 11760 Face 26050 4949 14636 31529 Face 26051 597 13028 11264 Face 26052 597 43263 13028 Face 26053 35032 37090 36620 Face 26054 1211 49415 13029 Face 26055 32243 45851 28251 Face 26056 32243 9990 13030 Face 26057 36146 13031 14263 Face 26058 36146 33951 13031 Face 26059 44129 13032 36865 Face 26060 44129 28251 13032 Face 26061 3259 13033 25194 Face 26062 44303 13418 31141 Face 26063 7102 13034 11053 Face 26064 7102 11402 17930 Face 26065 42639 13035 5441 Face 26066 902 21125 13035 Face 26067 30508 13036 8412 Face 26068 40238 13004 30891 Face 26069 6081 13037 6128 Face 26070 34509 10440 45002 Face 26071 32137 13038 19318 Face 26072 6354 47359 13038 Face 26073 6471 13039 27197 Face 26074 6471 24535 13039 Face 26075 9023 35666 18697 Face 26076 9023 28899 35666 Face 26077 19054 22103 43240 Face 26078 3120 32774 29186 Face 26079 3120 13042 32774 Face 26080 19053 40136 13042 Face 26081 8421 13043 35873 Face 26082 8421 15300 13043 Face 26083 4748 23371 45940 Face 26084 47627 7870 13044 Face 26085 35404 13045 24075 Face 26086 35404 48967 13045 Face 26087 11153 13046 15675 Face 26088 11153 8484 37257 Face 26089 16152 13047 1388 Face 26090 45121 48539 13047 Face 26091 998 16152 27901 Face 26092 45121 13047 16152 Face 26093 17180 13049 42068 Face 26094 43137 9327 13049 Face 26095 23303 13050 45529 Face 26096 13051 39598 49318 Face 26097 136 13051 45468 Face 26098 136 6034 13051 Face 26099 4074 46054 19071 Face 26100 4074 27446 46054 Face 26101 27881 39048 4216 Face 26102 42832 13025 13053 Face 26103 2657 13054 47818 Face 26104 2657 30286 13054 Face 26105 46226 13055 1364 Face 26106 655 22647 13055 Face 26107 3959 13056 40097 Face 26108 3959 32445 24902 Face 26109 9853 13057 1234 Face 26110 28093 11640 22247 Face 26111 29370 33034 29155 Face 26112 17646 42902 26997 Face 26113 2035 13059 19547 Face 26114 2035 48594 13059 Face 26115 1864 13060 19042 Face 26116 1864 28062 13060 Face 26117 4140 13061 39125 Face 26118 4140 33722 13061 Face 26119 42175 39184 16772 Face 26120 7918 20239 39184 Face 26121 21340 13063 16898 Face 26122 1297 24238 13063 Face 26123 1360 13064 26476 Face 26124 1360 21267 13064 Face 26125 8070 13065 8448 Face 26126 40704 27317 13065 Face 26127 2051 39474 31409 Face 26128 20894 300 32509 Face 26129 48900 13067 23718 Face 26130 5242 48782 40734 Face 26131 507 13068 35022 Face 26132 507 49843 43225 Face 26133 2441 13069 35726 Face 26134 2441 8385 13069 Face 26135 27989 13070 12492 Face 26136 11614 16832 32482 Face 26137 18901 13071 36438 Face 26138 30192 24738 13071 Face 26139 2509 13072 22303 Face 26140 2509 39330 13072 Face 26141 37171 13074 19371 Face 26142 2509 22303 13073 Face 26143 13073 13074 37171 Face 26144 13073 48272 13074 Face 26145 1766 28003 4230 Face 26146 1766 11701 28003 Face 26147 7434 13076 15243 Face 26148 43620 8109 30368 Face 26149 23428 13077 28115 Face 26150 18467 44026 13077 Face 26151 19480 13078 29655 Face 26152 8029 36820 13078 Face 26153 23074 13079 44447 Face 26154 49929 5278 13079 Face 26155 49957 16339 40101 Face 26156 28741 38707 13080 Face 26157 21429 41579 30701 Face 26158 28741 13080 38434 Face 26159 5324 30549 18202 Face 26160 45085 37284 30549 Face 26161 31892 13083 39358 Face 26162 45704 14216 31843 Face 26163 36399 13084 6331 Face 26164 4346 13083 49782 Face 26165 21021 13086 30737 Face 26166 42289 25632 13085 Face 26167 13085 13086 42289 Face 26168 37067 17830 13086 Face 26169 4854 47234 2456 Face 26170 26818 8906 13087 Face 26171 32512 24711 1180 Face 26172 35408 2158 47088 Face 26173 17412 13089 49681 Face 26174 1110 12716 24375 Face 26175 31649 13091 8712 Face 26176 19626 46929 43579 Face 26177 13090 13091 44992 Face 26178 43579 22537 40529 Face 26179 7230 13092 25015 Face 26180 7230 1099 13092 Face 26181 39649 13093 9244 Face 26182 39649 22280 13093 Face 26183 4467 36567 24824 Face 26184 20909 10005 20956 Face 26185 7111 13095 176 Face 26186 7111 27019 13095 Face 26187 6912 13096 9354 Face 26188 6912 36539 13096 Face 26189 139 19437 9008 Face 26190 139 40368 19437 Face 26191 4628 13098 39735 Face 26192 4628 36748 44326 Face 26193 39563 13099 3748 Face 26194 8209 46831 13099 Face 26195 31562 13100 12766 Face 26196 7210 13933 13100 Face 26197 32038 13101 28756 Face 26198 32038 25127 13101 Face 26199 45108 13102 13906 Face 26200 23028 15044 32722 Face 26201 23028 42802 15044 Face 26202 5611 6807 35315 Face 26203 6356 13104 37035 Face 26204 16482 27655 13104 Face 26205 1752 16283 47979 Face 26206 1752 30816 47358 Face 26207 2759 27163 44352 Face 26208 20336 6460 39930 Face 26209 1618 24303 22758 Face 26210 1618 25866 44517 Face 26211 3525 46603 47239 Face 26212 3525 1555 30435 Face 26213 31485 36975 45334 Face 26214 3568 30339 36975 Face 26215 3313 13110 32418 Face 26216 36413 3575 25036 Face 26217 9000 13111 34261 Face 26218 9000 49872 25517 Face 26219 13726 13112 8802 Face 26220 6712 38381 13112 Face 26221 3902 13113 6189 Face 26222 3902 23352 13113 Face 26223 3413 13114 18908 Face 26224 3413 39152 13114 Face 26225 22957 13115 9574 Face 26226 8959 48690 22240 Face 26227 325 13116 9974 Face 26228 24803 7299 19399 Face 26229 47895 13117 32336 Face 26230 10193 21004 42777 Face 26231 4580 13118 25704 Face 26232 29608 18923 39984 Face 26233 29608 13119 26217 Face 26234 4580 9874 13119 Face 26235 4580 13120 13118 Face 26236 4580 13119 29608 Face 26237 2954 36863 10864 Face 26238 23795 10088 36863 Face 26239 5293 13122 7189 Face 26240 5293 18705 13122 Face 26241 8463 49333 13325 Face 26242 8463 48472 49333 Face 26243 6851 13124 35183 Face 26244 28154 21961 13124 Face 26245 4242 13125 41893 Face 26246 4242 26061 13125 Face 26247 19551 13126 34477 Face 26248 665 43268 13126 Face 26249 23837 23922 49292 Face 26250 1531 4743 13127 Face 26251 22158 15008 8883 Face 26252 1995 15796 13128 Face 26253 46377 20403 6812 Face 26254 46377 31954 20403 Face 26255 2036 13130 38064 Face 26256 2036 18154 13130 Face 26257 45992 13131 30152 Face 26258 45992 44863 13131 Face 26259 5535 13132 30152 Face 26260 5535 12899 13132 Face 26261 15695 13133 40386 Face 26262 15695 43024 13133 Face 26263 32997 29472 81 Face 26264 46082 16594 31032 Face 26265 941 13135 16594 Face 26266 25199 8115 13135 Face 26267 28686 13136 28096 Face 26268 28686 33856 13136 Face 26269 28687 47905 21043 Face 26270 4651 28096 47905 Face 26271 41577 13138 27597 Face 26272 41577 12046 13138 Face 26273 13140 22345 40325 Face 26274 2598 25539 22071 Face 26275 2598 13140 49131 Face 26276 2598 22345 13140 Face 26277 23034 13144 15314 Face 26278 3558 42368 13141 Face 26279 25785 13142 17791 Face 26280 25785 13141 13142 Face 26281 13142 23034 17791 Face 26282 45502 13144 38089 Face 26283 13141 13144 45502 Face 26284 13141 15314 13144 Face 26285 13142 45501 13143 Face 26286 13142 13141 13145 Face 26287 14527 13146 7179 Face 26288 28344 48249 13146 Face 26289 820 13147 9353 Face 26290 820 5334 13147 Face 26291 47500 13148 3257 Face 26292 1024 32615 33843 Face 26293 41306 26343 11167 Face 26294 2381 7671 13149 Face 26295 22681 13150 6689 Face 26296 22681 5890 13150 Face 26297 36383 20050 4017 Face 26298 571 37698 45255 Face 26299 34616 13152 47454 Face 26300 39750 8316 49487 Face 26301 34971 33477 28374 Face 26302 38216 40941 13153 Face 26303 35518 38216 33477 Face 26304 18 29824 13154 Face 26305 43249 26667 11208 Face 26306 30069 10280 26667 Face 26307 1909 26285 35199 Face 26308 48258 42360 13156 Face 26309 1909 48258 13156 Face 26310 49118 36449 13157 Face 26311 1909 49118 29191 Face 26312 41939 13485 13158 Face 26313 27740 13159 18706 Face 26314 40639 18419 13159 Face 26315 34867 13160 43776 Face 26316 34867 3835 13160 Face 26317 23724 13161 34488 Face 26318 27072 42154 36444 Face 26319 9548 13162 5074 Face 26320 9548 4384 37704 Face 26321 2045 45908 10267 Face 26322 18855 2046 31134 Face 26323 18207 13164 7781 Face 26324 2057 8759 13164 Face 26325 5656 13165 42573 Face 26326 5656 34474 14134 Face 26327 5280 13166 41895 Face 26328 5280 16125 25919 Face 26329 22449 13167 7349 Face 26330 22449 1044 13167 Face 26331 4001 36030 35725 Face 26332 47971 2642 13168 Face 26333 31423 13337 20503 Face 26334 5661 13521 13337 Face 26335 48085 13170 40016 Face 26336 48085 41292 13170 Face 26337 2945 39576 30976 Face 26338 2945 19468 39576 Face 26339 33470 13172 15298 Face 26340 25211 2776 37971 Face 26341 35285 13173 45114 Face 26342 35285 39498 13173 Face 26343 33339 13174 23393 Face 26344 33339 31395 13174 Face 26345 43534 13175 41376 Face 26346 6814 32299 44677 Face 26347 20247 13176 35108 Face 26348 48575 11777 31822 Face 26349 1875 32558 11207 Face 26350 35732 25998 13177 Face 26351 33136 13178 22860 Face 26352 33136 10140 13178 Face 26353 32855 13179 9966 Face 26354 9984 10319 13179 Face 26355 39453 29477 17874 Face 26356 39453 31864 13180 Face 26357 899 13181 28624 Face 26358 899 48365 13181 Face 26359 30724 37105 7990 Face 26360 899 16751 13182 Face 26361 6707 35024 17979 Face 26362 6707 49107 29823 Face 26363 2389 47989 9011 Face 26364 40017 13640 32692 Face 26365 49669 45060 17637 Face 26366 45786 32067 18993 Face 26367 19134 13186 12622 Face 26368 19134 21241 32795 Face 26369 38951 13187 2866 Face 26370 49621 35640 13187 Face 26371 1359 13188 12843 Face 26372 28555 30348 13188 Face 26373 1359 13189 13188 Face 26374 1359 38170 13189 Face 26375 972 13190 38145 Face 26376 16324 21470 23812 Face 26377 49334 44493 23350 Face 26378 5011 11450 13191 Face 26379 32991 13192 24115 Face 26380 22104 9941 13192 Face 26381 11508 13193 33146 Face 26382 11508 49897 29094 Face 26383 28770 30437 6966 Face 26384 44860 26639 37876 Face 26385 44860 13195 44458 Face 26386 3527 12683 13195 Face 26387 3527 44860 37876 Face 26388 3527 13195 44860 Face 26389 654 26169 18749 Face 26390 33629 9978 39225 Face 26391 61 13198 15646 Face 26392 29241 8389 38844 Face 26393 47710 13199 44624 Face 26394 28966 24527 13199 Face 26395 2845 13200 33447 Face 26396 2845 18345 13200 Face 26397 3967 13201 21573 Face 26398 24416 9286 49728 Face 26399 13201 13202 8074 Face 26400 49728 9286 13202 Face 26401 18447 13203 24208 Face 26402 18447 31528 13203 Face 26403 21963 30610 6186 Face 26404 3513 42501 13204 Face 26405 7801 13205 19243 Face 26406 7801 6066 13205 Face 26407 35531 13206 41232 Face 26408 35531 41704 13206 Face 26409 5634 13207 5635 Face 26410 35531 21614 13207 Face 26411 14738 41090 45317 Face 26412 24772 7714 41090 Face 26413 32274 28992 1989 Face 26414 23531 34822 13209 Face 26415 8120 13210 30686 Face 26416 8120 3000 13210 Face 26417 1313 13211 49221 Face 26418 1313 41702 13211 Face 26419 266 13212 32875 Face 26420 13213 19727 42551 Face 26421 18899 13213 42551 Face 26422 18899 12817 13213 Face 26423 1829 16656 39190 Face 26424 1829 30103 13214 Face 26425 45309 13215 16484 Face 26426 2075 35689 13215 Face 26427 34885 26031 38199 Face 26428 7427 22804 26031 Face 26429 7079 13217 2802 Face 26430 28530 35875 13217 Face 26431 3261 13218 17364 Face 26432 3261 11636 13218 Face 26433 30771 13219 42162 Face 26434 23704 39335 13219 Face 26435 38397 17929 44311 Face 26436 3405 30989 13220 Face 26437 4438 29603 24233 Face 26438 4438 27601 13221 Face 26439 32872 13222 21813 Face 26440 5066 11999 41932 Face 26441 27364 13223 47166 Face 26442 27364 47594 13223 Face 26443 5798 13224 8213 Face 26444 39462 506 13224 Face 26445 29175 48667 323 Face 26446 15346 38482 48666 Face 26447 40111 26828 18364 Face 26448 13227 13262 23519 Face 26449 13228 13227 13226 Face 26450 4320 31689 13227 Face 26451 45229 13228 32072 Face 26452 20399 13227 13228 Face 26453 8358 23936 37559 Face 26454 45697 47659 13229 Face 26455 8456 46897 22886 Face 26456 19530 17738 46897 Face 26457 49169 41095 17294 Face 26458 38187 15974 13231 Face 26459 497 13232 9911 Face 26460 33284 24536 13232 Face 26461 42510 13233 12866 Face 26462 42510 25347 47005 Face 26463 6202 23964 32792 Face 26464 6202 49071 13234 Face 26465 833 13235 8138 Face 26466 833 17967 33628 Face 26467 1891 13236 46604 Face 26468 47656 42857 13236 Face 26469 6874 46880 27739 Face 26470 6874 19800 13237 Face 26471 36566 13238 13011 Face 26472 21558 10329 13238 Face 26473 19003 13239 34234 Face 26474 18969 22413 39901 Face 26475 36805 13240 29022 Face 26476 36805 29498 13240 Face 26477 43260 13241 5804 Face 26478 2138 17805 13241 Face 26479 39353 47900 39712 Face 26480 13521 41742 30352 Face 26481 6736 13243 20533 Face 26482 6736 34514 43262 Face 26483 2800 13244 8739 Face 26484 32041 10611 13244 Face 26485 1162 30822 18119 Face 26486 1162 11742 30821 Face 26487 42459 13246 25477 Face 26488 5043 17148 38590 Face 26489 21876 13247 27533 Face 26490 2541 32547 13247 Face 26491 5938 13248 44001 Face 26492 5938 714 13248 Face 26493 30314 13249 11163 Face 26494 41689 37795 13249 Face 26495 27858 13250 21056 Face 26496 14825 549 35003 Face 26497 124 13251 27764 Face 26498 31939 9155 13251 Face 26499 594 34243 38134 Face 26500 36869 6989 13252 Face 26501 1765 13253 35386 Face 26502 1765 48537 13253 Face 26503 36231 13254 21383 Face 26504 36231 44183 13254 Face 26505 1321 13255 44440 Face 26506 15223 27911 13255 Face 26507 1239 13256 39831 Face 26508 1239 15459 45612 Face 26509 43209 13257 6721 Face 26510 3063 12796 13257 Face 26511 14185 42498 16096 Face 26512 30520 23788 13258 Face 26513 2110 13259 29848 Face 26514 2110 48837 36131 Face 26515 3990 13260 29334 Face 26516 3990 28871 48374 Face 26517 39204 24271 27175 Face 26518 39204 37105 24271 Face 26519 22203 13262 40132 Face 26520 5438 48838 13262 Face 26521 47606 13263 40476 Face 26522 41697 37910 29144 Face 26523 10526 13264 48631 Face 26524 37535 18140 13264 Face 26525 608 13265 34045 Face 26526 37134 22606 13265 Face 26527 1382 13266 40065 Face 26528 1382 31938 40907 Face 26529 4094 13267 37531 Face 26530 4094 32795 21241 Face 26531 3983 43794 18733 Face 26532 45449 9618 13268 Face 26533 9170 29881 24569 Face 26534 9170 13526 41809 Face 26535 4223 13270 10977 Face 26536 4223 24825 13270 Face 26537 1924 47330 41098 Face 26538 44817 6980 45720 Face 26539 38009 13272 47620 Face 26540 38009 20398 13272 Face 26541 24016 13273 46575 Face 26542 24016 11428 13273 Face 26543 75 13274 19680 Face 26544 75 46553 13274 Face 26545 2600 13275 17194 Face 26546 2600 8805 13275 Face 26547 3154 13276 23466 Face 26548 3154 26587 13276 Face 26549 44949 13277 38318 Face 26550 42921 9959 49220 Face 26551 7499 37698 571 Face 26552 7499 26377 13278 Face 26553 40582 13279 22556 Face 26554 800 3631 29064 Face 26555 43737 29668 12800 Face 26556 1433 4766 13280 Face 26557 2187 13281 16637 Face 26558 38184 5157 13281 Face 26559 21815 30392 26696 Face 26560 1566 9124 13282 Face 26561 2402 23841 35161 Face 26562 2402 33150 13283 Face 26563 21426 43246 8121 Face 26564 5490 47609 13284 Face 26565 1553 13285 47574 Face 26566 1553 20510 13285 Face 26567 5625 35279 18394 Face 26568 5625 1295 29039 Face 26569 15005 13287 17888 Face 26570 15005 32982 13287 Face 26571 5481 13288 11359 Face 26572 5481 30790 13288 Face 26573 4079 13289 34983 Face 26574 4079 35010 13289 Face 26575 32258 13290 8195 Face 26576 2651 11254 42418 Face 26577 19180 32556 23897 Face 26578 49887 12614 13291 Face 26579 6571 13292 41059 Face 26580 43206 4207 13292 Face 26581 25993 49611 36674 Face 26582 1459 11559 49611 Face 26583 13295 13294 46700 Face 26584 13295 25077 13294 Face 26585 4246 13295 35758 Face 26586 4246 25077 13295 Face 26587 22352 47007 32265 Face 26588 7442 39122 47007 Face 26589 28416 13297 5937 Face 26590 5373 36731 13297 Face 26591 20035 13298 36054 Face 26592 199 30351 13298 Face 26593 32582 22136 35299 Face 26594 15795 35568 13300 Face 26595 43621 13300 4107 Face 26596 13299 32582 49031 Face 26597 43161 13301 1844 Face 26598 43161 46673 13301 Face 26599 39501 13302 20434 Face 26600 39501 25373 13302 Face 26601 13304 35316 14566 Face 26602 28393 5098 45661 Face 26603 11157 13304 27604 Face 26604 11157 38573 13304 Face 26605 29237 13305 1237 Face 26606 2101 35562 13305 Face 26607 2910 13306 34512 Face 26608 2910 24330 35068 Face 26609 16278 45150 9917 Face 26610 35927 22805 13307 Face 26611 276 13308 5650 Face 26612 28464 21342 43561 Face 26613 276 13309 43561 Face 26614 276 10944 13309 Face 26615 6081 13310 13037 Face 26616 6081 13743 13310 Face 26617 6081 13311 9469 Face 26618 6081 6128 13311 Face 26619 14153 13312 48582 Face 26620 46813 43135 13312 Face 26621 30132 13313 38865 Face 26622 2154 13346 49447 Face 26623 2154 13314 13346 Face 26624 2154 9806 13314 Face 26625 39731 13315 5386 Face 26626 660 29939 27367 Face 26627 3267 28723 2864 Face 26628 3267 35974 23233 Face 26629 40828 13317 31150 Face 26630 24563 40862 13317 Face 26631 4228 13318 36887 Face 26632 17275 12231 13318 Face 26633 29694 30454 7782 Face 26634 5094 39827 13319 Face 26635 1284 44278 37621 Face 26636 1284 31857 44278 Face 26637 37878 13321 24186 Face 26638 47382 49319 13321 Face 26639 43010 13322 1056 Face 26640 13323 9868 13322 Face 26641 20229 38040 13322 Face 26642 20229 19770 38040 Face 26643 6677 13324 24961 Face 26644 24087 36046 13324 Face 26645 25717 13325 15312 Face 26646 25717 8463 13325 Face 26647 31726 13326 44960 Face 26648 32443 25369 44887 Face 26649 28106 40134 7287 Face 26650 2629 8156 28107 Face 26651 5405 32854 14057 Face 26652 28029 3146 30236 Face 26653 46584 13329 20082 Face 26654 46270 20249 39810 Face 26655 10063 13330 26307 Face 26656 39994 40909 13330 Face 26657 45115 13331 29669 Face 26658 45115 44838 13331 Face 26659 47765 13332 1546 Face 26660 43063 35352 13332 Face 26661 5125 45564 16286 Face 26662 5125 40727 13333 Face 26663 6319 13334 22650 Face 26664 6319 11549 13334 Face 26665 3183 13335 19056 Face 26666 3183 13334 13335 Face 26667 37890 13336 16750 Face 26668 7874 3741 42123 Face 26669 49208 13337 24406 Face 26670 13169 20503 13337 Face 26671 20446 35680 12197 Face 26672 24122 30294 13338 Face 26673 2506 13339 34461 Face 26674 2506 24526 13339 Face 26675 2868 13340 11103 Face 26676 2868 23415 13340 Face 26677 17714 13341 14670 Face 26678 40180 27486 13341 Face 26679 10028 13342 14709 Face 26680 10028 15762 13342 Face 26681 13342 13343 316 Face 26682 13342 2184 13343 Face 26683 11441 13344 10911 Face 26684 11441 14719 13344 Face 26685 6973 13345 8249 Face 26686 6973 3039 38690 Face 26687 20746 31745 3622 Face 26688 1199 28335 31745 Face 26689 2531 13347 18806 Face 26690 2531 12634 13347 Face 26691 13349 13348 32124 Face 26692 758 45123 13348 Face 26693 758 13349 43937 Face 26694 758 13348 13349 Face 26695 38005 13350 11160 Face 26696 25458 15799 35391 Face 26697 3733 25458 35391 Face 26698 3733 39400 25458 Face 26699 43395 36270 47876 Face 26700 3045 23765 36270 Face 26701 5501 45316 33381 Face 26702 5501 36133 45316 Face 26703 21651 13354 11602 Face 26704 14337 16978 13354 Face 26705 38123 27341 3696 Face 26706 27701 10112 13355 Face 26707 24574 13356 7417 Face 26708 2177 49860 13356 Face 26709 4446 13357 47700 Face 26710 26719 19928 13357 Face 26711 46842 13358 4420 Face 26712 46842 18144 13358 Face 26713 29247 13359 21819 Face 26714 400 12687 13359 Face 26715 28181 13360 5983 Face 26716 28181 42144 13360 Face 26717 7390 13361 28025 Face 26718 7390 49047 13361 Face 26719 641 13362 49156 Face 26720 641 45720 13362 Face 26721 1827 13363 9073 Face 26722 36259 34476 46281 Face 26723 37168 13364 25465 Face 26724 32300 3239 13364 Face 26725 25811 35478 12046 Face 26726 3307 28355 13365 Face 26727 32644 29362 8289 Face 26728 942 44005 13366 Face 26729 15694 13367 22559 Face 26730 15694 48218 13367 Face 26731 7618 13368 45471 Face 26732 7618 32738 13368 Face 26733 8752 37216 2182 Face 26734 8752 12874 13369 Face 26735 1460 13370 8607 Face 26736 1460 31865 13370 Face 26737 1460 46272 10399 Face 26738 37798 19256 13371 Face 26739 49736 13372 35630 Face 26740 48433 19897 13372 Face 26741 22890 13373 5929 Face 26742 949 36432 13373 Face 26743 6966 13374 28770 Face 26744 6966 45692 13374 Face 26745 27474 13375 37074 Face 26746 2812 27014 49928 Face 26747 4004 28660 26401 Face 26748 4004 14189 28660 Face 26749 17755 23984 18062 Face 26750 984 45808 31055 Face 26751 23893 20437 5303 Face 26752 23894 22940 13378 Face 26753 29813 46340 12852 Face 26754 40889 24978 13379 Face 26755 28351 13380 11135 Face 26756 27129 5063 13380 Face 26757 36075 28971 8351 Face 26758 2434 16247 24211 Face 26759 14865 37129 9387 Face 26760 44803 5991 36575 Face 26761 16630 19940 7415 Face 26762 41781 45809 13383 Face 26763 6784 13384 18291 Face 26764 19341 20123 24231 Face 26765 25935 13385 26252 Face 26766 25935 28831 13385 Face 26767 5755 37594 31908 Face 26768 5755 31173 13386 Face 26769 1789 13387 35131 Face 26770 1789 39290 13387 Face 26771 14339 48558 15156 Face 26772 14339 30016 13388 Face 26773 37458 13389 34886 Face 26774 3958 42533 13389 Face 26775 4645 13390 17792 Face 26776 39878 1415 13390 Face 26777 26923 41751 11120 Face 26778 4260 6917 29122 Face 26779 20447 27237 37152 Face 26780 13393 5616 27237 Face 26781 145 13393 34807 Face 26782 145 5616 13393 Face 26783 6428 13394 48480 Face 26784 49002 9045 39824 Face 26785 2448 48949 18718 Face 26786 28187 28358 13395 Face 26787 19407 33046 10282 Face 26788 765 46692 13396 Face 26789 1364 13397 21554 Face 26790 32056 2446 13397 Face 26791 7260 32126 3621 Face 26792 7260 19120 13398 Face 26793 3278 13399 35704 Face 26794 3278 10163 13399 Face 26795 3361 13400 17299 Face 26796 15149 335 27837 Face 26797 30527 43372 19102 Face 26798 14886 10965 36617 Face 26799 37943 30562 2832 Face 26800 45852 22803 13402 Face 26801 32737 13403 29228 Face 26802 32737 48053 13403 Face 26803 19139 13404 12 Face 26804 14090 11577 29262 Face 26805 1928 13405 41532 Face 26806 38187 13231 49169 Face 26807 6749 13406 36232 Face 26808 6749 35920 47771 Face 26809 26117 13407 45009 Face 26810 5866 14482 13407 Face 26811 49926 23770 28073 Face 26812 44396 30698 13408 Face 26813 25380 44763 666 Face 26814 44506 18679 13409 Face 26815 41691 13410 27028 Face 26816 10523 31242 13410 Face 26817 1646 13411 42454 Face 26818 28480 29875 45080 Face 26819 17731 13412 29947 Face 26820 9614 34628 41591 Face 26821 9614 13413 7347 Face 26822 9614 41591 13413 Face 26823 44968 13414 33057 Face 26824 44968 28329 13414 Face 26825 8484 13415 37257 Face 26826 31760 6555 13415 Face 26827 5583 13416 38650 Face 26828 5583 21326 13416 Face 26829 46460 13417 15461 Face 26830 37243 38028 34230 Face 26831 38271 13418 18238 Face 26832 15860 31141 13418 Face 26833 33431 13419 29360 Face 26834 30552 5370 41042 Face 26835 6285 13420 15660 Face 26836 36006 18619 13420 Face 26837 13422 26966 5810 Face 26838 5381 11331 13421 Face 26839 5381 26204 36710 Face 26840 5381 13421 26204 Face 26841 35721 21577 20390 Face 26842 23198 22629 34503 Face 26843 20153 13424 8569 Face 26844 3487 29430 13424 Face 26845 1911 13425 21484 Face 26846 1911 42253 13425 Face 26847 6916 13426 34530 Face 26848 6916 36525 13426 Face 26849 4593 13427 11461 Face 26850 25139 19839 13427 Face 26851 27656 13428 39457 Face 26852 27656 13853 13428 Face 26853 49538 13429 23696 Face 26854 49538 27429 13429 Face 26855 31223 13430 6239 Face 26856 31223 30817 13430 Face 26857 31685 13431 21086 Face 26858 47248 6658 13431 Face 26859 1626 13432 45887 Face 26860 1626 12405 13432 Face 26861 26224 13433 1022 Face 26862 17083 35818 13433 Face 26863 835 39247 6943 Face 26864 835 12881 13434 Face 26865 29943 43261 9276 Face 26866 6257 49922 43261 Face 26867 19038 23586 4428 Face 26868 7 21621 13436 Face 26869 4823 13437 20680 Face 26870 4823 14995 13437 Face 26871 1854 40346 33354 Face 26872 1854 31754 13438 Face 26873 11360 13439 15390 Face 26874 11360 6471 13439 Face 26875 42465 13440 19290 Face 26876 31775 40495 13440 Face 26877 34760 13441 19132 Face 26878 36012 43883 13441 Face 26879 5931 13442 18763 Face 26880 5931 3572 13442 Face 26881 5290 13443 24478 Face 26882 19791 24578 13443 Face 26883 17323 13444 26731 Face 26884 11556 34651 13444 Face 26885 7385 41327 49295 Face 26886 7385 2508 13445 Face 26887 14541 45332 29506 Face 26888 738 4898 13446 Face 26889 2694 40060 28572 Face 26890 23397 22236 47182 Face 26891 13449 45722 29124 Face 26892 38260 11723 45722 Face 26893 5394 13449 9177 Face 26894 38260 45722 13449 Face 26895 1341 13450 26046 Face 26896 1341 17392 42745 Face 26897 13082 13451 30383 Face 26898 13082 18202 30549 Face 26899 26717 13452 11924 Face 26900 26717 20788 28719 Face 26901 6335 13453 8061 Face 26902 6335 32468 13453 Face 26903 23063 13454 31513 Face 26904 725 40673 18879 Face 26905 1156 13455 35297 Face 26906 1156 27595 13455 Face 26907 38427 13456 16688 Face 26908 42369 25796 13456 Face 26909 17711 13457 8794 Face 26910 8407 24778 33820 Face 26911 28556 13458 34870 Face 26912 8685 26750 13458 Face 26913 9244 13459 39181 Face 26914 9244 43059 30928 Face 26915 29532 13460 4620 Face 26916 22426 13581 13460 Face 26917 2256 13461 33807 Face 26918 36369 4620 13461 Face 26919 25478 13462 25336 Face 26920 25478 14741 13462 Face 26921 6291 39090 21108 Face 26922 6291 9055 29025 Face 26923 22002 25262 1283 Face 26924 46359 8504 13464 Face 26925 3718 13465 34623 Face 26926 34930 8437 34829 Face 26927 34930 13466 44773 Face 26928 3718 1985 27981 Face 26929 15769 28594 18047 Face 26930 586 12314 28594 Face 26931 5108 47276 304 Face 26932 23959 18163 47275 Face 26933 3246 13469 39683 Face 26934 3246 25630 13469 Face 26935 31949 13470 34627 Face 26936 13471 23833 13470 Face 26937 59 13471 13470 Face 26938 59 5046 13471 Face 26939 20302 41842 2165 Face 26940 42931 36683 15504 Face 26941 18197 16796 31267 Face 26942 3820 33103 13473 Face 26943 4195 49291 34017 Face 26944 4195 17829 13474 Face 26945 27412 13475 7644 Face 26946 27412 8670 13475 Face 26947 40340 16066 25832 Face 26948 16578 22312 13476 Face 26949 43829 45859 23610 Face 26950 9263 3677 13477 Face 26951 19712 44616 28007 Face 26952 246 48528 13478 Face 26953 30083 41639 12325 Face 26954 2592 31798 13479 Face 26955 5138 13480 10326 Face 26956 5138 18401 13480 Face 26957 49503 13481 33247 Face 26958 30815 49080 13481 Face 26959 45142 13482 1230 Face 26960 31458 10301 13482 Face 26961 47204 32185 15905 Face 26962 47204 28063 32185 Face 26963 47926 13484 25061 Face 26964 48904 42272 47832 Face 26965 46710 13485 1296 Face 26966 46710 13158 13485 Face 26967 1865 13486 34175 Face 26968 1865 20651 13486 Face 26969 2973 13487 22555 Face 26970 2973 25802 13487 Face 26971 36635 38206 18992 Face 26972 222 19204 38207 Face 26973 24788 13489 48313 Face 26974 222 21037 13489 Face 26975 22991 13490 18356 Face 26976 2026 38644 13490 Face 26977 45812 43026 23429 Face 26978 45812 21033 13491 Face 26979 46372 13492 18680 Face 26980 46372 28381 13492 Face 26981 18822 19957 28644 Face 26982 2859 12627 13493 Face 26983 154 13494 34341 Face 26984 154 48048 47017 Face 26985 41081 13495 24492 Face 26986 41081 19508 13495 Face 26987 1856 13496 17475 Face 26988 1856 20000 13496 Face 26989 13498 30703 9865 Face 26990 5340 36242 13497 Face 26991 21225 13498 29246 Face 26992 21225 13497 13498 Face 26993 3299 13499 29662 Face 26994 3299 25981 41247 Face 26995 2008 43404 27421 Face 26996 2008 14524 43404 Face 26997 14359 13501 12450 Face 26998 32264 18247 13501 Face 26999 208 41643 13501 Face 27000 208 20768 41643 Face 27001 32520 13503 10544 Face 27002 32358 6681 42149 Face 27003 3969 13504 30566 Face 27004 3969 37119 48831 Face 27005 42358 13505 36423 Face 27006 42358 21789 13505 Face 27007 7891 13506 30710 Face 27008 7891 25133 13506 Face 27009 22684 13507 40237 Face 27010 45026 29108 25422 Face 27011 22684 13508 13507 Face 27012 22684 22056 13508 Face 27013 8996 38027 47366 Face 27014 8996 26269 37329 Face 27015 28364 13510 36345 Face 27016 33381 13353 49967 Face 27017 39307 15425 27674 Face 27018 39307 14373 15425 Face 27019 9290 13512 19050 Face 27020 31043 39190 13512 Face 27021 5630 13513 40400 Face 27022 5630 29831 13513 Face 27023 5700 13514 41563 Face 27024 24515 32308 35994 Face 27025 19410 13515 3583 Face 27026 45112 40530 36196 Face 27027 1286 13516 13059 Face 27028 1286 17578 13516 Face 27029 34065 27558 20822 Face 27030 13518 39436 13517 Face 27031 44243 13518 43452 Face 27032 23467 39436 13518 Face 27033 34134 27840 30523 Face 27034 13520 45027 16513 Face 27035 34134 13520 16513 Face 27036 777 32669 13520 Face 27037 9279 13521 48650 Face 27038 24406 13337 13521 Face 27039 4087 13522 2053 Face 27040 4087 25328 13522 Face 27041 30189 40142 3384 Face 27042 2106 9717 40344 Face 27043 2557 13524 20570 Face 27044 2557 7949 13524 Face 27045 7158 24677 7160 Face 27046 43409 36022 13525 Face 27047 7357 13526 11549 Face 27048 7357 41809 13526 Face 27049 3052 13527 16386 Face 27050 3052 24011 13527 Face 27051 33859 13528 6755 Face 27052 5991 44803 13528 Face 27053 9866 13529 15339 Face 27054 9866 31749 13529 Face 27055 19100 37928 20988 Face 27056 32888 30708 13530 Face 27057 5124 32465 17771 Face 27058 28553 17603 13531 Face 27059 541 13532 22094 Face 27060 29256 6413 16412 Face 27061 33424 30971 7150 Face 27062 3317 48525 13533 Face 27063 34597 34686 14466 Face 27064 34598 10841 13534 Face 27065 1159 13535 22149 Face 27066 40600 48484 13535 Face 27067 14590 33587 26318 Face 27068 40234 8279 13536 Face 27069 4076 13537 25387 Face 27070 4076 17416 13537 Face 27071 15770 30841 46667 Face 27072 43781 22603 33889 Face 27073 44623 13539 31066 Face 27074 44623 42512 34912 Face 27075 48975 25435 31521 Face 27076 7189 13122 13540 Face 27077 2975 40568 15909 Face 27078 2975 11173 40568 Face 27079 23971 30922 10115 Face 27080 23970 19629 13542 Face 27081 30382 13543 39376 Face 27082 43995 32254 13543 Face 27083 48501 13545 15622 Face 27084 41599 2817 13545 Face 27085 13544 13545 24009 Face 27086 13544 15622 13545 Face 27087 2009 13546 36779 Face 27088 27014 2812 23517 Face 27089 5646 13547 9764 Face 27090 5646 25247 13547 Face 27091 10609 19114 31544 Face 27092 10609 36517 37126 Face 27093 2663 41935 10135 Face 27094 2663 17201 13549 Face 27095 43192 13550 18473 Face 27096 1657 10530 13550 Face 27097 27053 20346 9997 Face 27098 31598 34658 22827 Face 27099 12311 13552 25106 Face 27100 12311 18002 13552 Face 27101 40945 29309 27185 Face 27102 4488 30361 13553 Face 27103 6011 13554 39301 Face 27104 6011 48741 13554 Face 27105 42535 13555 40750 Face 27106 42535 18052 13555 Face 27107 42535 33535 18052 Face 27108 3015 3016 13556 Face 27109 2145 13557 20473 Face 27110 2145 2632 13557 Face 27111 4763 13558 28540 Face 27112 34744 12210 41229 Face 27113 5474 13559 35121 Face 27114 5474 21891 13559 Face 27115 29473 13560 4596 Face 27116 29474 44852 35932 Face 27117 32852 13561 19591 Face 27118 13699 43185 13561 Face 27119 22275 20198 18962 Face 27120 22275 9209 20198 Face 27121 36214 13564 49223 Face 27122 40247 23114 13563 Face 27123 13563 13564 36214 Face 27124 31117 41 13564 Face 27125 30467 13565 27281 Face 27126 14026 17843 48509 Face 27127 5967 13566 38347 Face 27128 5967 25529 13566 Face 27129 22790 18521 45272 Face 27130 34873 3530 18520 Face 27131 3454 38877 10097 Face 27132 16487 38049 38877 Face 27133 4557 13569 12139 Face 27134 35951 9156 13569 Face 27135 7911 13570 44436 Face 27136 34551 6609 13570 Face 27137 2131 13571 33413 Face 27138 2131 27284 13571 Face 27139 39124 13572 37075 Face 27140 8115 25199 13572 Face 27141 17274 13573 690 Face 27142 17273 3198 39538 Face 27143 4126 13574 8780 Face 27144 4126 49798 13574 Face 27145 27079 34515 7682 Face 27146 7153 28054 13575 Face 27147 16956 13576 24052 Face 27148 3989 25965 13576 Face 27149 16318 13577 41843 Face 27150 42944 15968 13577 Face 27151 2577 13578 5128 Face 27152 2577 3184 13578 Face 27153 42939 30866 24091 Face 27154 42939 10848 30866 Face 27155 38617 13580 679 Face 27156 48669 26345 13580 Face 27157 4035 13581 45196 Face 27158 4035 13460 13581 Face 27159 19273 13582 40081 Face 27160 19273 30001 13582 Face 27161 4782 13583 36239 Face 27162 4782 20215 13583 Face 27163 48749 13584 20389 Face 27164 27519 18505 13584 Face 27165 17918 41704 39106 Face 27166 34955 14637 13585 Face 27167 23338 13586 44562 Face 27168 23338 36177 13586 Face 27169 26854 13587 18053 Face 27170 15287 47022 22424 Face 27171 29054 21314 3403 Face 27172 30486 1032 13588 Face 27173 15865 13589 27603 Face 27174 42214 20819 13589 Face 27175 602 34546 41031 Face 27176 38320 45381 41460 Face 27177 23080 28488 11822 Face 27178 3020 17382 13591 Face 27179 2006 13592 41415 Face 27180 16118 39418 13592 Face 27181 7015 47963 31886 Face 27182 7015 23653 40141 Face 27183 8945 13594 40724 Face 27184 8945 2882 13594 Face 27185 34295 13595 39740 Face 27186 682 23459 13595 Face 27187 3864 42145 27080 Face 27188 3864 42885 29292 Face 27189 6238 13597 41382 Face 27190 6238 24704 13597 Face 27191 1213 42782 13895 Face 27192 35972 49294 13598 Face 27193 5358 33577 18128 Face 27194 13813 20917 27781 Face 27195 4031 13600 38834 Face 27196 49876 39720 19794 Face 27197 538 13601 882 Face 27198 538 23291 27723 Face 27199 36002 13602 39042 Face 27200 43072 32314 25905 Face 27201 27902 13603 27746 Face 27202 1230 43455 13603 Face 27203 8230 45900 36503 Face 27204 8230 3765 42888 Face 27205 8473 13605 17527 Face 27206 8473 17474 13605 Face 27207 3581 13606 24102 Face 27208 3581 48404 46969 Face 27209 11616 13607 31088 Face 27210 46715 22857 32633 Face 27211 920 44197 22406 Face 27212 33624 4552 19517 Face 27213 594 37694 29154 Face 27214 594 38134 13609 Face 27215 34896 35087 13805 Face 27216 4135 20084 13610 Face 27217 13610 44151 4135 Face 27218 13610 979 13611 Face 27219 19085 13612 11819 Face 27220 19085 7409 13612 Face 27221 38184 13613 31648 Face 27222 2187 10053 27995 Face 27223 6469 38883 9796 Face 27224 26940 44660 38883 Face 27225 41889 13615 19994 Face 27226 9652 2635 13615 Face 27227 5751 13616 12965 Face 27228 5751 46569 13616 Face 27229 2233 13617 5158 Face 27230 2233 46758 13617 Face 27231 33400 13618 18445 Face 27232 33400 11936 34029 Face 27233 4879 13619 30168 Face 27234 4879 37848 13619 Face 27235 4588 13620 39871 Face 27236 4588 31193 13620 Face 27237 43335 13621 7554 Face 27238 47374 36301 37921 Face 27239 35491 37626 17234 Face 27240 33179 17536 36429 Face 27241 33179 13623 42000 Face 27242 4163 35802 44441 Face 27243 35553 13624 10491 Face 27244 35553 34338 13624 Face 27245 7547 13625 21274 Face 27246 7547 36823 13625 Face 27247 39732 45191 11200 Face 27248 27221 5255 13627 Face 27249 13626 13627 18102 Face 27250 13626 27221 13627 Face 27251 14364 31936 15642 Face 27252 16038 37772 31936 Face 27253 5492 19148 26532 Face 27254 37084 11012 33999 Face 27255 47104 13631 23544 Face 27256 42105 25806 13631 Face 27257 13630 13631 5110 Face 27258 13630 23544 13631 Face 27259 19563 13632 33317 Face 27260 3177 10991 27047 Face 27261 26544 21880 48114 Face 27262 35407 12212 13633 Face 27263 28963 13634 31729 Face 27264 25943 33022 13634 Face 27265 36171 13635 21958 Face 27266 5701 43060 13635 Face 27267 2719 13636 17430 Face 27268 36745 31122 13636 Face 27269 2428 13637 4366 Face 27270 2428 39629 13637 Face 27271 13637 35578 49875 Face 27272 13637 39629 35578 Face 27273 23496 13639 6253 Face 27274 15669 34922 13639 Face 27275 1792 13640 24473 Face 27276 1792 32692 13640 Face 27277 34475 34787 3316 Face 27278 19013 10234 45464 Face 27279 23841 32540 8990 Face 27280 13283 18767 13642 Face 27281 8148 31030 53 Face 27282 20323 17807 47000 Face 27283 1788 49120 6782 Face 27284 1788 25368 13644 Face 27285 38330 13645 1552 Face 27286 38329 7866 13645 Face 27287 38140 43344 30444 Face 27288 1557 38062 43344 Face 27289 5517 15179 11222 Face 27290 5517 27649 15179 Face 27291 38347 13648 5967 Face 27292 11222 13647 43895 Face 27293 7645 13649 49837 Face 27294 44344 19255 13649 Face 27295 13651 13650 17651 Face 27296 1507 20657 13650 Face 27297 1507 13651 18020 Face 27298 1507 13650 13651 Face 27299 1815 13652 29576 Face 27300 1815 39488 13652 Face 27301 26333 13653 35045 Face 27302 46982 44087 13653 Face 27303 26354 13654 22530 Face 27304 26353 8677 13654 Face 27305 45312 35642 16192 Face 27306 11104 11122 13655 Face 27307 6689 13656 32996 Face 27308 6689 33411 44382 Face 27309 4932 40084 40988 Face 27310 22663 1174 13657 Face 27311 5452 13658 33515 Face 27312 25497 7621 13658 Face 27313 1880 13659 20227 Face 27314 36928 11172 44923 Face 27315 23828 40078 25203 Face 27316 23828 1336 13660 Face 27317 2555 13661 11940 Face 27318 2555 48659 13661 Face 27319 1291 32526 43906 Face 27320 1291 10357 13663 Face 27321 13662 13663 44757 Face 27322 23686 9865 32526 Face 27323 6103 13664 48310 Face 27324 23404 892 13664 Face 27325 24951 23931 45604 Face 27326 4418 33819 23931 Face 27327 12157 13666 10980 Face 27328 12157 30241 44904 Face 27329 213 13667 45200 Face 27330 213 7033 13667 Face 27331 1964 22139 16574 Face 27332 1964 5224 25363 Face 27333 4626 13669 6977 Face 27334 13670 10192 31980 Face 27335 29908 13670 31980 Face 27336 29908 17376 13670 Face 27337 23584 13671 41808 Face 27338 12909 48006 13671 Face 27339 27880 13672 14300 Face 27340 27880 49616 13672 Face 27341 23986 13673 18257 Face 27342 13674 23622 47102 Face 27343 4328 13674 47102 Face 27344 27589 20887 35244 Face 27345 49117 33578 4291 Face 27346 5119 19996 33578 Face 27347 92 37239 22575 Face 27348 92 30814 37239 Face 27349 36887 13677 22900 Face 27350 8660 19683 13677 Face 27351 42560 39585 45886 Face 27352 5621 27782 13678 Face 27353 32416 22894 3325 Face 27354 27818 767 13679 Face 27355 48927 13680 35699 Face 27356 45381 8871 13680 Face 27357 4078 13681 27871 Face 27358 4078 17350 13681 Face 27359 19760 23564 44824 Face 27360 19759 6048 37398 Face 27361 7402 44292 12187 Face 27362 37035 21231 26471 Face 27363 2426 13684 46463 Face 27364 31710 28939 13684 Face 27365 3067 44273 9400 Face 27366 3067 10526 32516 Face 27367 4158 13686 14383 Face 27368 4158 48165 13686 Face 27369 34809 13687 48165 Face 27370 34809 28071 13687 Face 27371 25737 13688 10496 Face 27372 11147 931 28050 Face 27373 13691 13689 31903 Face 27374 1758 25567 44871 Face 27375 14427 42129 36417 Face 27376 1758 44871 13691 Face 27377 13690 13691 31903 Face 27378 42129 14427 13691 Face 27379 25 13692 23961 Face 27380 18379 42894 13692 Face 27381 950 43390 34089 Face 27382 47471 22321 43390 Face 27383 10032 13694 19417 Face 27384 10032 23820 13694 Face 27385 40762 24618 20266 Face 27386 33159 7939 13695 Face 27387 8917 49521 28803 Face 27388 8917 40808 13696 Face 27389 47338 13697 35201 Face 27390 47338 36835 13697 Face 27391 34720 13698 27457 Face 27392 3899 21052 30461 Face 27393 3899 13699 13561 Face 27394 3899 30461 13699 Face 27395 1184 13700 39230 Face 27396 1184 6698 13700 Face 27397 24447 13701 1640 Face 27398 40954 8336 26489 Face 27399 4131 13702 9703 Face 27400 4131 17737 13702 Face 27401 23766 13703 37328 Face 27402 23684 40649 41620 Face 27403 7764 34472 38376 Face 27404 23658 40991 34472 Face 27405 2081 13705 18803 Face 27406 2081 46123 13705 Face 27407 5973 13706 16818 Face 27408 28467 4582 48429 Face 27409 1276 13707 11569 Face 27410 1276 48618 13707 Face 27411 3401 44950 6497 Face 27412 26334 6670 13708 Face 27413 34787 13709 47053 Face 27414 34788 39749 37552 Face 27415 8702 13710 43298 Face 27416 8702 47816 13710 Face 27417 20593 13711 15759 Face 27418 6877 23169 13711 Face 27419 46412 13712 7804 Face 27420 3176 9445 47936 Face 27421 28532 13713 42600 Face 27422 21817 12733 13713 Face 27423 48031 40625 1278 Face 27424 2526 29583 34804 Face 27425 48776 44319 21349 Face 27426 38969 7643 13715 Face 27427 2876 38063 12747 Face 27428 2876 23816 41437 Face 27429 15313 13717 33340 Face 27430 43066 19917 13717 Face 27431 5760 13718 7506 Face 27432 40254 14734 13718 Face 27433 5310 46655 34407 Face 27434 18325 43723 46655 Face 27435 4021 13720 36688 Face 27436 28009 19420 13720 Face 27437 33172 13721 10505 Face 27438 18432 2254 34763 Face 27439 24214 13722 48268 Face 27440 33396 24325 13722 Face 27441 31765 25696 5526 Face 27442 13724 37866 13723 Face 27443 19865 31765 5526 Face 27444 25690 14875 19036 Face 27445 20381 49992 25776 Face 27446 4297 24018 13725 Face 27447 34886 13726 37458 Face 27448 6712 13112 13726 Face 27449 19979 13727 36511 Face 27450 6960 16326 13727 Face 27451 20107 13728 21405 Face 27452 20107 39997 13728 Face 27453 22340 13729 14968 Face 27454 2209 8376 13729 Face 27455 32207 13730 22343 Face 27456 47707 27654 13730 Face 27457 884 13731 28893 Face 27458 884 8178 13731 Face 27459 3026 13732 33504 Face 27460 48629 1336 13732 Face 27461 45492 13733 28327 Face 27462 45492 3516 13733 Face 27463 2347 31431 17483 Face 27464 2347 45696 31431 Face 27465 6503 13735 11665 Face 27466 6503 26286 13735 Face 27467 9663 13736 22909 Face 27468 38231 16815 13736 Face 27469 37168 32300 13364 Face 27470 989 24452 13737 Face 27471 23325 48951 4761 Face 27472 48156 11638 48950 Face 27473 25405 13739 46561 Face 27474 25404 20880 40766 Face 27475 4344 13740 16327 Face 27476 17055 2844 13740 Face 27477 5185 23526 12650 Face 27478 5185 15996 13741 Face 27479 9597 13742 33635 Face 27480 9597 29917 13742 Face 27481 7267 13743 6081 Face 27482 7267 18048 13743 Face 27483 37409 47535 12031 Face 27484 5415 44017 13744 Face 27485 11350 13745 11524 Face 27486 33800 26634 42476 Face 27487 20908 30877 21924 Face 27488 13747 10745 30877 Face 27489 35824 20908 21924 Face 27490 35824 3211 20908 Face 27491 130 13748 6315 Face 27492 130 7589 13748 Face 27493 24838 13749 34263 Face 27494 130 6315 13749 Face 27495 32176 13750 41712 Face 27496 32176 22780 13750 Face 27497 3426 13751 1730 Face 27498 3426 33037 13751 Face 27499 20184 19244 14418 Face 27500 4966 24498 19244 Face 27501 4606 34726 25004 Face 27502 4606 23006 34726 Face 27503 7198 13754 16880 Face 27504 7198 36633 13754 Face 27505 12 13755 34913 Face 27506 12 13404 13755 Face 27507 7748 13756 43968 Face 27508 7748 45609 13756 Face 27509 34205 20275 11529 Face 27510 43593 8133 13757 Face 27511 32304 13758 43653 Face 27512 5459 37173 13758 Face 27513 47322 13759 22935 Face 27514 35163 39357 13759 Face 27515 10567 13760 10568 Face 27516 24754 10047 38047 Face 27517 673 36779 13546 Face 27518 40977 3793 28666 Face 27519 27797 13762 42829 Face 27520 47363 7249 43086 Face 27521 6906 27864 7510 Face 27522 6906 487 13763 Face 27523 41747 36574 23700 Face 27524 16624 36730 13764 Face 27525 41995 13765 12875 Face 27526 27215 18454 13765 Face 27527 45972 13766 40527 Face 27528 45972 23792 13766 Face 27529 7569 13767 22117 Face 27530 7569 36081 13767 Face 27531 9252 24088 30793 Face 27532 23829 6165 47730 Face 27533 6813 13769 6358 Face 27534 35417 47109 44484 Face 27535 40821 44918 33013 Face 27536 19465 32378 13770 Face 27537 48795 42773 11822 Face 27538 19465 13770 13772 Face 27539 40821 13772 43568 Face 27540 13771 23080 42773 Face 27541 43179 47742 19670 Face 27542 3144 40209 47742 Face 27543 25116 35060 12800 Face 27544 1073 7075 35133 Face 27545 37750 13775 12723 Face 27546 37750 41160 13775 Face 27547 4849 27862 17614 Face 27548 41821 33226 27862 Face 27549 20647 13777 9475 Face 27550 30431 7909 19989 Face 27551 12066 13778 7942 Face 27552 46267 3517 48135 Face 27553 1761 32104 39293 Face 27554 43710 8162 13779 Face 27555 31589 37407 48368 Face 27556 28454 3412 13780 Face 27557 25095 35687 6057 Face 27558 13782 41010 13781 Face 27559 11940 13782 13781 Face 27560 11940 25643 13782 Face 27561 3011 46921 18981 Face 27562 26383 10159 46920 Face 27563 44740 13784 25609 Face 27564 1695 31493 13784 Face 27565 44999 13785 11329 Face 27566 25421 12653 23200 Face 27567 4501 26994 26253 Face 27568 4501 23200 13786 Face 27569 1072 13787 6105 Face 27570 16699 46835 13787 Face 27571 2818 13788 22263 Face 27572 2818 32669 13788 Face 27573 6659 21900 47581 Face 27574 6659 36571 13789 Face 27575 46023 13790 28195 Face 27576 31210 24281 13790 Face 27577 30529 33327 10028 Face 27578 21200 27083 44232 Face 27579 21200 31210 13790 Face 27580 4711 33912 13792 Face 27581 4246 13793 25077 Face 27582 49886 26120 13793 Face 27583 25927 13794 21838 Face 27584 42402 42400 32344 Face 27585 5905 13795 13796 Face 27586 48033 10734 13795 Face 27587 26188 13796 13795 Face 27588 34152 12461 25455 Face 27589 2109 13797 34874 Face 27590 16079 39027 13797 Face 27591 1500 13798 23341 Face 27592 32600 36472 13798 Face 27593 24636 36043 2175 Face 27594 16727 37691 13799 Face 27595 32770 22392 38101 Face 27596 27411 14385 37070 Face 27597 17270 43168 27967 Face 27598 25538 33901 44664 Face 27599 13803 29811 432 Face 27600 3351 28140 13802 Face 27601 41633 48994 27591 Face 27602 3351 29811 13803 Face 27603 15482 49240 21212 Face 27604 41835 33137 13804 Face 27605 7176 13805 35087 Face 27606 7176 26268 13805 Face 27607 24148 47749 9293 Face 27608 30824 10260 14079 Face 27609 1436 13807 24622 Face 27610 1436 3660 13807 Face 27611 26096 30038 12330 Face 27612 36988 25906 13808 Face 27613 4874 13809 7732 Face 27614 28657 3617 13809 Face 27615 1482 13810 24965 Face 27616 1482 40233 13810 Face 27617 9103 32653 16176 Face 27618 9103 38257 32653 Face 27619 19174 33468 22728 Face 27620 362 46820 13812 Face 27621 5358 13813 33577 Face 27622 17880 12179 22413 Face 27623 13815 13814 10139 Face 27624 29401 39002 41715 Face 27625 22961 13815 32169 Face 27626 1327 13814 13815 Face 27627 1159 13816 13535 Face 27628 1159 36033 13816 Face 27629 2508 32747 13445 Face 27630 15202 9435 13817 Face 27631 45137 13818 14033 Face 27632 3715 11052 13818 Face 27633 30116 26571 41245 Face 27634 4489 32573 13819 Face 27635 1344 32461 35620 Face 27636 48784 29987 13820 Face 27637 46443 21655 15173 Face 27638 46443 35089 21655 Face 27639 30947 13822 31520 Face 27640 49743 20990 13822 Face 27641 716 13823 46482 Face 27642 25299 20303 13823 Face 27643 716 13824 37497 Face 27644 716 41185 30040 Face 27645 39936 30265 3897 Face 27646 3305 32093 39744 Face 27647 3415 13826 18341 Face 27648 3415 20189 13826 Face 27649 9964 13827 40675 Face 27650 9964 36979 13827 Face 27651 21292 13828 49564 Face 27652 32258 11781 13828 Face 27653 13398 13829 28738 Face 27654 13398 45556 13829 Face 27655 24727 13830 18390 Face 27656 24727 19632 13830 Face 27657 22202 32703 13842 Face 27658 880 36921 13831 Face 27659 26450 13832 2153 Face 27660 26450 35223 13832 Face 27661 34050 13833 24417 Face 27662 45308 13092 13833 Face 27663 2459 21217 31748 Face 27664 29206 17428 43674 Face 27665 26889 13835 17187 Face 27666 47287 7708 13835 Face 27667 2964 42262 37958 Face 27668 20645 12663 13836 Face 27669 21987 13837 33870 Face 27670 45007 11682 49770 Face 27671 8510 13838 34694 Face 27672 8510 47617 13838 Face 27673 39696 13839 26127 Face 27674 39696 23697 13839 Face 27675 19967 35976 47668 Face 27676 440 18534 13840 Face 27677 13842 13841 12637 Face 27678 1857 34548 40788 Face 27679 35433 13842 32703 Face 27680 16745 40788 13842 Face 27681 44610 36506 22040 Face 27682 39371 4484 37588 Face 27683 23579 23908 48106 Face 27684 32823 37931 13844 Face 27685 600 13845 19648 Face 27686 600 5375 19531 Face 27687 32871 13846 1850 Face 27688 32871 26218 34978 Face 27689 46576 13847 292 Face 27690 38918 45298 13847 Face 27691 3416 13848 40964 Face 27692 3416 2684 13848 Face 27693 3799 13849 33684 Face 27694 3799 32841 13849 Face 27695 11299 13850 32731 Face 27696 11299 22370 13850 Face 27697 29566 46403 5103 Face 27698 7772 30701 13851 Face 27699 28688 13852 19083 Face 27700 7026 25523 13852 Face 27701 20007 13853 12585 Face 27702 20007 37167 13853 Face 27703 42952 13854 3730 Face 27704 35636 28847 13854 Face 27705 19181 13855 33131 Face 27706 418 48989 13855 Face 27707 26704 13856 23892 Face 27708 38321 21460 45504 Face 27709 23751 13857 13856 Face 27710 23750 16481 13857 Face 27711 37001 13858 3181 Face 27712 47755 1682 13858 Face 27713 8347 46547 21486 Face 27714 17726 15432 16272 Face 27715 16216 35350 45658 Face 27716 27702 46109 13860 Face 27717 2955 13861 7654 Face 27718 2955 5469 13861 Face 27719 14799 24662 19580 Face 27720 5737 18099 32338 Face 27721 5495 13863 25999 Face 27722 5495 13237 19800 Face 27723 11498 13864 39144 Face 27724 11498 4772 13864 Face 27725 22116 13865 4404 Face 27726 36531 18922 13865 Face 27727 49755 22791 18025 Face 27728 43221 23271 25114 Face 27729 1686 22812 33 Face 27730 30218 6135 13867 Face 27731 2359 13868 22698 Face 27732 2359 21765 13868 Face 27733 6637 31033 48814 Face 27734 6637 20046 19392 Face 27735 407 13870 39881 Face 27736 407 10873 13870 Face 27737 32214 13871 48959 Face 27738 32214 29164 13871 Face 27739 6969 13872 41433 Face 27740 49497 10172 20959 Face 27741 6969 33005 13872 Face 27742 6969 20267 13873 Face 27743 39021 13874 48760 Face 27744 748 22861 13874 Face 27745 47309 32115 40445 Face 27746 248 18376 13875 Face 27747 1682 13876 11675 Face 27748 1682 35559 13876 Face 27749 719 13877 8466 Face 27750 719 33803 13877 Face 27751 3756 13878 33285 Face 27752 3756 45640 13878 Face 27753 3342 13879 30053 Face 27754 3342 38196 13879 Face 27755 22104 13880 9940 Face 27756 23329 33063 13880 Face 27757 12846 36562 2560 Face 27758 37996 2612 26065 Face 27759 24048 13882 21182 Face 27760 2350 41607 13882 Face 27761 28009 13883 36870 Face 27762 18051 49203 13883 Face 27763 23504 13884 47174 Face 27764 2994 46998 13884 Face 27765 6685 13885 39371 Face 27766 18088 21526 24449 Face 27767 24428 13886 34553 Face 27768 759 30051 13886 Face 27769 15482 36190 47649 Face 27770 15482 21212 13887 Face 27771 4431 29949 14196 Face 27772 4431 19969 13888 Face 27773 38319 13889 30590 Face 27774 25971 31031 13889 Face 27775 6952 43955 16374 Face 27776 28850 7502 35354 Face 27777 3345 13891 25617 Face 27778 3345 29271 49424 Face 27779 8850 28956 46733 Face 27780 22222 7030 13892 Face 27781 27584 37587 19859 Face 27782 29849 33102 13893 Face 27783 40233 30569 13810 Face 27784 33457 6449 13894 Face 27785 3549 13895 8601 Face 27786 3549 12647 13895 Face 27787 37867 26958 11695 Face 27788 37867 43875 26958 Face 27789 32324 13897 32260 Face 27790 33872 23963 13897 Face 27791 43520 13898 11397 Face 27792 7310 5047 13898 Face 27793 5542 30493 43977 Face 27794 40292 8159 30493 Face 27795 1100 13900 10970 Face 27796 1100 2799 38021 Face 27797 14871 13901 13640 Face 27798 14551 29538 13901 Face 27799 34764 13902 49335 Face 27800 34764 23539 13902 Face 27801 13904 18301 39432 Face 27802 44920 7332 13903 Face 27803 16177 13904 5680 Face 27804 21424 18301 13904 Face 27805 20860 13905 20208 Face 27806 513 44150 13905 Face 27807 1260 38832 12731 Face 27808 27909 45108 13906 Face 27809 1260 13907 38832 Face 27810 15361 49917 13907 Face 27811 46221 32773 19761 Face 27812 3492 46697 13908 Face 27813 16088 49361 25097 Face 27814 16088 35217 49361 Face 27815 3407 13910 20807 Face 27816 21533 26883 39308 Face 27817 10112 47509 11188 Face 27818 10112 8830 13911 Face 27819 48338 13912 34118 Face 27820 20736 6697 45936 Face 27821 4871 43584 5793 Face 27822 4871 9625 28156 Face 27823 7282 13914 47803 Face 27824 7282 2690 49859 Face 27825 651 13915 3306 Face 27826 32887 3862 13915 Face 27827 2878 13916 11491 Face 27828 2878 9956 30148 Face 27829 3156 13917 31693 Face 27830 3156 14313 13917 Face 27831 29053 13918 13919 Face 27832 32551 23870 13918 Face 27833 5317 13919 13918 Face 27834 5317 18583 13919 Face 27835 6587 13920 27303 Face 27836 6587 34125 13920 Face 27837 15584 13921 10448 Face 27838 447 33374 13921 Face 27839 42945 13922 27123 Face 27840 3241 48610 13922 Face 27841 27147 13923 43254 Face 27842 21927 33838 13923 Face 27843 13925 13924 14994 Face 27844 13925 46442 13924 Face 27845 21927 13925 14994 Face 27846 3209 30258 13925 Face 27847 1099 13926 22527 Face 27848 39854 8261 13926 Face 27849 39014 46318 42994 Face 27850 39014 9891 46319 Face 27851 4746 13928 22533 Face 27852 41019 14056 21305 Face 27853 3108 13929 24955 Face 27854 3108 8370 13929 Face 27855 43383 13930 22876 Face 27856 43383 33111 13930 Face 27857 4690 13931 49646 Face 27858 4690 41336 13931 Face 27859 5905 13932 13795 Face 27860 42369 13456 13932 Face 27861 18206 13933 7210 Face 27862 16496 24501 13933 Face 27863 5689 30438 36946 Face 27864 5689 11061 30438 Face 27865 33632 13935 46146 Face 27866 33632 16437 30317 Face 27867 29612 13936 38283 Face 27868 26685 10046 40047 Face 27869 5644 13937 30806 Face 27870 5644 11743 13937 Face 27871 31176 13938 13131 Face 27872 31830 6193 13938 Face 27873 2158 13939 47088 Face 27874 2158 33958 13939 Face 27875 3107 13940 22283 Face 27876 3107 47999 13940 Face 27877 30920 13941 11852 Face 27878 42248 10353 13941 Face 27879 15475 42635 33492 Face 27880 42248 13941 13942 Face 27881 22742 37324 39199 Face 27882 40421 33010 37324 Face 27883 27006 13944 11191 Face 27884 40421 37324 22742 Face 27885 19790 13945 37695 Face 27886 19790 33708 48367 Face 27887 593 39413 23220 Face 27888 19790 37695 39413 Face 27889 9979 13947 26740 Face 27890 9979 26234 13947 Face 27891 7642 13948 12567 Face 27892 7642 44228 13948 Face 27893 2707 37438 27758 Face 27894 38179 46730 13949 Face 27895 46070 27490 811 Face 27896 6700 44019 13950 Face 27897 6348 38367 10651 Face 27898 26513 41645 13951 Face 27899 17305 13952 21534 Face 27900 31427 49247 13952 Face 27901 3406 13953 4469 Face 27902 34678 21045 31427 Face 27903 13955 34772 22026 Face 27904 46942 42937 13954 Face 27905 46941 13955 9465 Face 27906 46942 34772 13955 Face 27907 25096 47501 33911 Face 27908 6691 20112 47501 Face 27909 25246 13957 2655 Face 27910 45157 31101 13957 Face 27911 2988 13958 107 Face 27912 19721 37901 13958 Face 27913 39635 13959 7604 Face 27914 48038 4715 13959 Face 27915 23047 13960 23779 Face 27916 23047 35326 13960 Face 27917 3977 13961 25883 Face 27918 3977 32833 13961 Face 27919 33440 13962 22373 Face 27920 6391 36349 13962 Face 27921 41759 29924 19956 Face 27922 3791 38792 13963 Face 27923 15057 49965 10035 Face 27924 3750 36276 39519 Face 27925 2420 13965 4913 Face 27926 47780 12037 35451 Face 27927 38355 27393 47717 Face 27928 24374 19813 35536 Face 27929 39680 46909 23825 Face 27930 13966 28040 20869 Face 27931 16549 13968 11139 Face 27932 1554 38661 29441 Face 27933 3470 41496 25255 Face 27934 21423 39913 41496 Face 27935 2557 13970 17013 Face 27936 13971 30208 13970 Face 27937 2557 13971 13970 Face 27938 2557 20570 13971 Face 27939 27059 13972 24630 Face 27940 27059 39706 13972 Face 27941 2171 13973 33197 Face 27942 2171 25329 13973 Face 27943 287 33603 15072 Face 27944 287 9183 13974 Face 27945 13976 13975 29014 Face 27946 34082 27407 13975 Face 27947 5500 13976 35650 Face 27948 5500 13975 13976 Face 27949 2510 42462 24172 Face 27950 2510 4922 42462 Face 27951 25098 13978 15058 Face 27952 29278 17369 13978 Face 27953 3305 13979 32093 Face 27954 21712 31352 13979 Face 27955 4152 13980 23113 Face 27956 4152 569 41171 Face 27957 4147 13981 26489 Face 27958 4147 40572 13981 Face 27959 22403 13982 29147 Face 27960 6703 32775 39928 Face 27961 5306 29701 44174 Face 27962 5306 37481 29701 Face 27963 1967 13984 44752 Face 27964 15948 23024 33601 Face 27965 667 34432 48439 Face 27966 42317 10976 34432 Face 27967 11106 13986 4026 Face 27968 34624 14823 46351 Face 27969 34071 29252 26688 Face 27970 14238 35356 29252 Face 27971 10266 13988 38671 Face 27972 10266 45408 13988 Face 27973 13990 13989 36261 Face 27974 31565 9507 13989 Face 27975 31641 13990 11002 Face 27976 6849 13989 13990 Face 27977 14731 13991 28490 Face 27978 29705 35631 34721 Face 27979 2496 13992 25008 Face 27980 2496 38230 13992 Face 27981 8122 13993 30005 Face 27982 8122 25803 13993 Face 27983 9211 13994 41927 Face 27984 9211 25151 13994 Face 27985 7164 13995 20648 Face 27986 7164 16399 34459 Face 27987 18016 13996 43014 Face 27988 11558 16429 13996 Face 27989 20499 13997 33059 Face 27990 26532 19148 13997 Face 27991 3757 13998 22015 Face 27992 3757 36715 13998 Face 27993 3788 13999 37420 Face 27994 3788 42995 13999 Face 27995 43718 44939 10058 Face 27996 34839 46073 14000 Face 27997 5322 16179 24394 Face 27998 5322 43744 16179 Face 27999 7841 46127 12196 Face 28000 21612 46201 14002 Face 28001 23466 27452 12724 Face 28002 5487 18543 14003 Face 28003 26598 14004 18298 Face 28004 7174 4796 45724 Face 28005 5070 14005 35779 Face 28006 5070 19590 14005 Face 28007 3326 14006 21777 Face 28008 30371 31986 14006 Face 28009 3891 14007 38034 Face 28010 3891 15848 14007 Face 28011 3468 14008 41544 Face 28012 47008 12870 14008 Face 28013 26804 36334 16494 Face 28014 26804 40103 14009 Face 28015 2679 43743 24511 Face 28016 2679 9003 14010 Face 28017 7232 14011 5156 Face 28018 31648 13613 14011 Face 28019 10000 14012 12661 Face 28020 25143 27399 36448 Face 28021 6053 14013 25034 Face 28022 6053 9512 14013 Face 28023 28777 14014 15568 Face 28024 28776 28965 38019 Face 28025 27804 14392 6512 Face 28026 34805 36802 14015 Face 28027 5418 14016 10549 Face 28028 5418 29518 14016 Face 28029 14018 49826 4227 Face 28030 174 43912 14017 Face 28031 174 14018 19972 Face 28032 174 14017 14018 Face 28033 26410 14019 36322 Face 28034 34380 3752 39289 Face 28035 1530 32033 20097 Face 28036 32026 11534 14020 Face 28037 871 36001 34366 Face 28038 871 12386 36118 Face 28039 42124 14022 25941 Face 28040 44936 41279 49409 Face 28041 42124 14023 14022 Face 28042 14025 38310 14023 Face 28043 3414 32388 33454 Face 28044 14025 14023 42124 Face 28045 3414 14025 14024 Face 28046 3414 10067 22875 Face 28047 30467 14026 13565 Face 28048 30467 38306 14026 Face 28049 194 14027 35664 Face 28050 21950 39486 14027 Face 28051 5259 44474 31819 Face 28052 45619 3706 14028 Face 28053 43994 32124 13348 Face 28054 17312 31408 49655 Face 28055 43989 14030 25791 Face 28056 508 49541 14030 Face 28057 445 42025 33364 Face 28058 445 18841 42025 Face 28059 23409 14032 49911 Face 28060 5321 36170 14032 Face 28061 1185 14033 21059 Face 28062 1185 41863 14033 Face 28063 15654 49164 1603 Face 28064 6482 11876 28345 Face 28065 33954 14035 6597 Face 28066 33954 39365 14035 Face 28067 149 14036 6871 Face 28068 149 45500 14036 Face 28069 14910 14037 28699 Face 28070 17515 4413 14037 Face 28071 42744 14038 9375 Face 28072 41400 1479 14038 Face 28073 7944 14039 16702 Face 28074 7944 35809 14039 Face 28075 21358 14040 40987 Face 28076 1145 27471 39318 Face 28077 5705 14041 9991 Face 28078 5705 11907 14041 Face 28079 8889 14042 2635 Face 28080 8889 39918 14042 Face 28081 1208 14043 18863 Face 28082 32260 13897 14043 Face 28083 13756 14044 30942 Face 28084 13756 2977 14044 Face 28085 2965 40648 10349 Face 28086 23347 28533 14045 Face 28087 14047 41167 28613 Face 28088 46448 15349 14046 Face 28089 30538 14047 31530 Face 28090 30538 41167 14047 Face 28091 43177 14048 36299 Face 28092 43177 22873 14048 Face 28093 5955 14049 28289 Face 28094 5955 14690 14049 Face 28095 5955 21276 16982 Face 28096 5955 14901 41726 Face 28097 3771 14051 42241 Face 28098 36496 8518 24686 Face 28099 38678 14052 26711 Face 28100 48540 7294 14052 Face 28101 38678 14053 14052 Face 28102 2502 29232 14053 Face 28103 2502 25081 29232 Face 28104 2502 43960 14054 Face 28105 32600 22324 7738 Face 28106 32011 25590 35765 Face 28107 3339 38483 9922 Face 28108 31894 21305 14056 Face 28109 8781 14057 32854 Face 28110 40748 2489 14057 Face 28111 4974 44414 42984 Face 28112 4974 23221 40805 Face 28113 657 14059 46755 Face 28114 657 38849 14059 Face 28115 28459 24212 4687 Face 28116 47737 35040 14060 Face 28117 17253 14061 16600 Face 28118 31958 23381 39162 Face 28119 19504 36371 31217 Face 28120 20545 21260 33305 Face 28121 4536 14063 4537 Face 28122 4536 46407 14063 Face 28123 14065 14064 5536 Face 28124 14065 8364 43338 Face 28125 45488 14065 5536 Face 28126 659 24418 14065 Face 28127 3379 14066 32318 Face 28128 3379 17772 14066 Face 28129 42640 14067 15263 Face 28130 20870 15037 14067 Face 28131 4979 14068 7365 Face 28132 43145 41639 24584 Face 28133 1271 32750 25156 Face 28134 1271 23581 14069 Face 28135 38999 14070 24315 Face 28136 32931 12680 36283 Face 28137 34926 14071 3917 Face 28138 12983 44289 14071 Face 28139 41044 14072 32267 Face 28140 34237 10630 14072 Face 28141 34237 19339 12848 Face 28142 21252 14859 14073 Face 28143 21252 14074 39640 Face 28144 34237 14072 41044 Face 28145 712 14075 35460 Face 28146 47372 31293 14075 Face 28147 26414 36856 31138 Face 28148 35722 47713 14076 Face 28149 19382 14077 1071 Face 28150 21909 5021 33960 Face 28151 8637 28292 8636 Face 28152 8637 42185 14078 Face 28153 13806 14079 30828 Face 28154 13806 23486 47749 Face 28155 35895 14080 5258 Face 28156 14660 27493 14080 Face 28157 8146 14081 38808 Face 28158 8146 34702 14081 Face 28159 4124 14082 26560 Face 28160 4124 43332 14082 Face 28161 28553 14083 17603 Face 28162 28553 20734 14083 Face 28163 38404 36921 7346 Face 28164 44862 14478 46187 Face 28165 503 14085 8749 Face 28166 503 22962 14085 Face 28167 7028 14086 19739 Face 28168 45046 10548 14086 Face 28169 26548 35532 8423 Face 28170 1444 33352 14087 Face 28171 34354 34070 24085 Face 28172 26522 20944 14088 Face 28173 26611 14089 31893 Face 28174 26611 27394 14089 Face 28175 43387 14090 29262 Face 28176 3376 31035 14091 Face 28177 14090 14091 226 Face 28178 14090 3376 14091 Face 28179 7648 14092 25815 Face 28180 7648 29184 14092 Face 28181 279 14093 21668 Face 28182 279 21513 14093 Face 28183 5577 20992 44941 Face 28184 5577 27390 20992 Face 28185 43138 14095 6205 Face 28186 21468 12624 14095 Face 28187 1088 14096 30491 Face 28188 1088 10979 14096 Face 28189 2483 29709 48569 Face 28190 2483 20034 29709 Face 28191 1086 14098 12970 Face 28192 1086 43539 14098 Face 28193 4657 14099 30662 Face 28194 21063 46399 14099 Face 28195 42826 43684 48401 Face 28196 20671 7159 14100 Face 28197 30591 14101 33936 Face 28198 30591 36966 32066 Face 28199 10105 14102 35039 Face 28200 10105 28462 14102 Face 28201 29117 14103 31576 Face 28202 21284 45338 14103 Face 28203 12494 14104 42572 Face 28204 12494 20789 14104 Face 28205 49606 14105 8743 Face 28206 7735 22651 44735 Face 28207 5477 14106 34450 Face 28208 5477 30036 14106 Face 28209 16382 22830 34105 Face 28210 6762 30471 14107 Face 28211 32367 46435 3939 Face 28212 46229 27578 14108 Face 28213 11722 14109 29307 Face 28214 11722 1160 14109 Face 28215 18386 39041 45471 Face 28216 22926 4942 14110 Face 28217 31187 38250 19628 Face 28218 1550 22958 14111 Face 28219 4693 14112 31013 Face 28220 4693 13785 33075 Face 28221 46616 37725 8743 Face 28222 35791 12114 14113 Face 28223 23114 44253 13563 Face 28224 23115 12188 14114 Face 28225 44693 14115 34717 Face 28226 44694 18496 14115 Face 28227 14917 25801 1396 Face 28228 21750 5580 40857 Face 28229 37081 14117 11051 Face 28230 517 12911 14117 Face 28231 14119 14118 23743 Face 28232 16889 9099 29726 Face 28233 397 14119 2604 Face 28234 397 14118 14119 Face 28235 35052 48025 21282 Face 28236 397 2604 24327 Face 28237 7026 32009 22879 Face 28238 7026 13852 32009 Face 28239 5354 14122 32665 Face 28240 45433 26701 14122 Face 28241 45551 14123 31268 Face 28242 30142 6865 36798 Face 28243 18578 35209 46060 Face 28244 18578 48576 35209 Face 28245 7447 25560 34045 Face 28246 41711 5854 38819 Face 28247 7447 14126 25560 Face 28248 7447 3321 18924 Face 28249 35801 49814 33549 Face 28250 26642 11754 24859 Face 28251 14127 14128 33885 Face 28252 14127 42014 14128 Face 28253 28341 14129 40240 Face 28254 16159 38619 14129 Face 28255 38176 14130 7634 Face 28256 23002 30101 14130 Face 28257 3232 14131 35488 Face 28258 23002 14130 38176 Face 28259 3232 14132 14131 Face 28260 28410 18224 46952 Face 28261 20287 27180 49136 Face 28262 37821 25193 14133 Face 28263 13165 14134 30720 Face 28264 13165 5656 14134 Face 28265 45966 14135 32122 Face 28266 516 7867 14135 Face 28267 3962 14136 44684 Face 28268 35970 12473 33969 Face 28269 5790 14137 44720 Face 28270 42190 29367 27009 Face 28271 9885 14138 43431 Face 28272 9885 26330 14138 Face 28273 45261 42883 30880 Face 28274 4089 30937 14139 Face 28275 454 14140 24609 Face 28276 454 22437 14140 Face 28277 1698 38986 3068 Face 28278 48710 4293 45740 Face 28279 14141 14142 43123 Face 28280 14141 9570 30369 Face 28281 30936 35916 1713 Face 28282 407 39881 14146 Face 28283 19301 14144 30936 Face 28284 19301 16045 14144 Face 28285 407 14145 14144 Face 28286 407 14146 14145 Face 28287 35831 14146 5292 Face 28288 35916 14145 14146 Face 28289 1945 14147 30888 Face 28290 15481 8843 14147 Face 28291 8022 45343 18551 Face 28292 44013 8021 14148 Face 28293 16056 14149 38531 Face 28294 5412 31099 14149 Face 28295 2030 14150 18455 Face 28296 2030 46940 14150 Face 28297 20252 14151 7531 Face 28298 20252 5228 29330 Face 28299 3817 35982 12372 Face 28300 47111 28466 14152 Face 28301 47498 14153 39826 Face 28302 1069 13312 14153 Face 28303 44948 14154 14155 Face 28304 22838 9645 14154 Face 28305 41789 14155 14154 Face 28306 3571 27929 49919 Face 28307 2871 44715 36101 Face 28308 2871 29667 44715 Face 28309 4238 14157 24768 Face 28310 4238 33295 14157 Face 28311 2575 14158 27276 Face 28312 47790 9699 43675 Face 28313 16553 14159 21136 Face 28314 30684 9307 14159 Face 28315 42147 14160 30515 Face 28316 2949 12578 41284 Face 28317 37578 14161 21251 Face 28318 46138 2750 14161 Face 28319 5206 14162 23358 Face 28320 5206 38156 14162 Face 28321 18066 14163 40107 Face 28322 18067 23417 14163 Face 28323 33861 14164 729 Face 28324 10067 11258 14164 Face 28325 539 45331 29797 Face 28326 20609 16164 14165 Face 28327 46578 38182 20190 Face 28328 2512 19631 38183 Face 28329 5202 14167 34611 Face 28330 5202 30817 28432 Face 28331 31327 14168 6762 Face 28332 7199 49537 14168 Face 28333 38575 14169 10573 Face 28334 30405 12020 14169 Face 28335 5939 14170 45322 Face 28336 5939 17739 33185 Face 28337 19084 14171 25141 Face 28338 14857 11818 14171 Face 28339 2433 14172 24211 Face 28340 2433 48938 14172 Face 28341 6953 14173 25272 Face 28342 6953 28645 41813 Face 28343 9001 43763 3619 Face 28344 9001 19875 14174 Face 28345 2345 14175 10613 Face 28346 2345 37435 14175 Face 28347 3236 14176 11186 Face 28348 34649 16259 14176 Face 28349 3775 14177 28269 Face 28350 3775 18618 45533 Face 28351 3775 43389 5519 Face 28352 3775 15395 43389 Face 28353 14178 14179 39927 Face 28354 14178 38432 14179 Face 28355 6784 19341 13384 Face 28356 29866 45878 14180 Face 28357 19341 14181 22654 Face 28358 14180 40660 14181 Face 28359 7031 14182 44255 Face 28360 7031 38907 14182 Face 28361 17277 14183 46678 Face 28362 497 25916 38168 Face 28363 30520 39058 20147 Face 28364 14185 37476 14184 Face 28365 30520 14185 14184 Face 28366 30520 42498 14185 Face 28367 8288 14186 28024 Face 28368 8288 11029 49768 Face 28369 33838 15259 13923 Face 28370 39797 4860 14187 Face 28371 4317 14188 42327 Face 28372 4317 47134 14188 Face 28373 4484 14189 10552 Face 28374 45052 8856 18652 Face 28375 26391 47318 10975 Face 28376 8018 21893 14190 Face 28377 35951 27875 9156 Face 28378 4557 17744 37519 Face 28379 7085 35179 30858 Face 28380 7085 4287 26408 Face 28381 9591 36128 22125 Face 28382 9591 2568 14193 Face 28383 1031 14194 16075 Face 28384 1031 19787 14194 Face 28385 1031 14195 19787 Face 28386 28607 7536 14195 Face 28387 33698 14196 29949 Face 28388 33698 43913 14196 Face 28389 1600 18821 37354 Face 28390 1600 19808 18821 Face 28391 5742 14198 22317 Face 28392 5742 3589 32856 Face 28393 45418 14199 28403 Face 28394 140 15358 14199 Face 28395 1552 14200 17107 Face 28396 23702 1210 14200 Face 28397 6347 14201 21115 Face 28398 6347 12163 14201 Face 28399 8198 35015 40207 Face 28400 38180 18211 14202 Face 28401 40779 27688 7234 Face 28402 3212 9106 27688 Face 28403 14205 44192 49453 Face 28404 9418 9162 44193 Face 28405 34022 14205 11825 Face 28406 34022 48836 14205 Face 28407 8236 39141 48503 Face 28408 8236 1345 39141 Face 28409 21802 14207 49427 Face 28410 14208 9449 14207 Face 28411 21802 14208 14207 Face 28412 48093 9449 14208 Face 28413 2370 14209 14208 Face 28414 34164 9445 14209 Face 28415 6367 14210 37918 Face 28416 6367 32508 14210 Face 28417 1622 14211 24688 Face 28418 1622 5974 14211 Face 28419 17103 14212 37799 Face 28420 14447 19696 29009 Face 28421 34331 45597 39699 Face 28422 5868 29973 14213 Face 28423 73 14214 12212 Face 28424 19686 24558 48274 Face 28425 30851 14215 24490 Face 28426 33821 48809 14215 Face 28427 1734 48454 1735 Face 28428 46559 31843 14216 Face 28429 10444 14217 3637 Face 28430 10444 41875 28603 Face 28431 448 14218 43495 Face 28432 22221 35748 14218 Face 28433 38276 14219 1067 Face 28434 14220 40015 14219 Face 28435 38276 14220 14219 Face 28436 6310 35394 14220 Face 28437 16663 14221 44127 Face 28438 44812 4682 14221 Face 28439 44339 14222 30409 Face 28440 49689 41300 30295 Face 28441 9776 14223 21831 Face 28442 9776 1838 14223 Face 28443 3708 14224 8276 Face 28444 3708 30770 14224 Face 28445 3163 14225 8717 Face 28446 39805 10941 14225 Face 28447 876 14226 36523 Face 28448 876 43043 14226 Face 28449 8512 14227 45538 Face 28450 42668 4610 14227 Face 28451 3368 14228 26577 Face 28452 3368 12206 14228 Face 28453 3368 14229 32391 Face 28454 3368 18773 14229 Face 28455 737 29470 42151 Face 28456 737 14392 29470 Face 28457 26927 14231 4249 Face 28458 5721 1220 26545 Face 28459 905 14232 49765 Face 28460 905 41323 14232 Face 28461 7759 14233 3577 Face 28462 16083 48414 30624 Face 28463 34819 46761 30849 Face 28464 34819 28358 46761 Face 28465 44494 14235 48949 Face 28466 30827 32074 14235 Face 28467 31 30827 14235 Face 28468 31 5012 14236 Face 28469 1868 14237 40236 Face 28470 43078 35366 14237 Face 28471 914 14238 29252 Face 28472 40700 47210 14238 Face 28473 25165 14239 31369 Face 28474 25165 44356 14239 Face 28475 40842 14240 24443 Face 28476 30945 5778 14240 Face 28477 34924 14241 33923 Face 28478 49564 13828 39589 Face 28479 14243 14242 12101 Face 28480 14243 40335 14242 Face 28481 43787 38053 2414 Face 28482 4509 20624 45701 Face 28483 45048 14244 29658 Face 28484 45049 8491 14244 Face 28485 26273 47824 21592 Face 28486 22609 9407 14245 Face 28487 627 14246 9547 Face 28488 627 46481 14246 Face 28489 570 27105 9351 Face 28490 39811 8961 29886 Face 28491 20320 32518 11045 Face 28492 1060 9391 14248 Face 28493 30175 14249 13165 Face 28494 45357 14897 14249 Face 28495 3222 14250 8587 Face 28496 29075 4785 14250 Face 28497 6752 14251 11661 Face 28498 6752 32516 14251 Face 28499 5668 36786 17873 Face 28500 5668 31889 14252 Face 28501 3582 14253 1400 Face 28502 3582 33702 14253 Face 28503 5274 14254 19847 Face 28504 5274 46686 39556 Face 28505 1155 14255 46227 Face 28506 1155 34426 14255 Face 28507 31104 27413 8553 Face 28508 36929 5364 14256 Face 28509 386 14257 9271 Face 28510 16930 17833 14257 Face 28511 36016 45304 37657 Face 28512 6873 8740 45304 Face 28513 38380 46978 49581 Face 28514 44710 13077 23428 Face 28515 1342 14260 39739 Face 28516 1342 15284 14260 Face 28517 15168 14261 35934 Face 28518 37947 39097 14261 Face 28519 18646 14262 42174 Face 28520 3000 8120 14262 Face 28521 4352 14263 13031 Face 28522 20180 9990 14263 Face 28523 15359 47729 32850 Face 28524 15359 2786 35402 Face 28525 31171 14265 7083 Face 28526 43746 42700 14265 Face 28527 27241 14266 26388 Face 28528 3979 39270 14266 Face 28529 1718 30992 195 Face 28530 46469 34129 30992 Face 28531 3048 44579 26718 Face 28532 3048 30230 44579 Face 28533 44536 14269 11975 Face 28534 6947 30077 14269 Face 28535 11811 14270 30798 Face 28536 37610 28414 14270 Face 28537 49524 14271 25641 Face 28538 9152 34526 14271 Face 28539 4377 14272 9221 Face 28540 4377 42910 14272 Face 28541 37814 14273 36957 Face 28542 35143 17471 14273 Face 28543 2802 40348 14273 Face 28544 14275 33590 28271 Face 28545 2802 14275 40348 Face 28546 16326 6960 14275 Face 28547 43310 46052 26314 Face 28548 14277 12093 14276 Face 28549 2038 43310 26314 Face 28550 2038 7471 14277 Face 28551 2980 14278 19396 Face 28552 24465 7350 14278 Face 28553 2504 14279 11805 Face 28554 2504 43485 14279 Face 28555 21920 40874 33710 Face 28556 7146 8023 27868 Face 28557 44443 14281 11720 Face 28558 44443 19902 31384 Face 28559 5422 14282 22459 Face 28560 5422 29615 14282 Face 28561 7243 14283 40232 Face 28562 7243 17010 14283 Face 28563 5831 38850 28996 Face 28564 18173 31064 14284 Face 28565 757 14285 44191 Face 28566 23278 5908 44673 Face 28567 2399 34396 45012 Face 28568 31975 6093 40661 Face 28569 24834 48168 32583 Face 28570 304 47276 48168 Face 28571 32221 14288 44613 Face 28572 4956 41793 14288 Face 28573 14288 14289 28157 Face 28574 14288 41793 14289 Face 28575 32704 14290 13822 Face 28576 10150 18141 44655 Face 28577 38048 23632 25160 Face 28578 24974 10974 14291 Face 28579 3467 14292 37923 Face 28580 3467 42740 14292 Face 28581 32734 14293 31294 Face 28582 39582 24329 14293 Face 28583 41754 14294 11680 Face 28584 18627 16084 48843 Face 28585 3178 14295 26815 Face 28586 3178 7693 14295 Face 28587 43731 44145 6744 Face 28588 22428 7977 14296 Face 28589 24816 14298 20807 Face 28590 22542 39342 27809 Face 28591 43069 27809 39342 Face 28592 17321 49496 14298 Face 28593 49323 47384 13921 Face 28594 20362 17725 47142 Face 28595 30690 14300 38474 Face 28596 469 27880 14300 Face 28597 4710 48266 1687 Face 28598 4710 10462 48266 Face 28599 28634 26779 35088 Face 28600 573 36632 14302 Face 28601 36556 42054 22604 Face 28602 38815 47201 14303 Face 28603 39251 14304 10141 Face 28604 39252 27694 14304 Face 28605 26111 14305 31785 Face 28606 2741 12399 14305 Face 28607 43677 14306 48575 Face 28608 10019 32987 14306 Face 28609 3194 14307 12926 Face 28610 39139 46505 14307 Face 28611 1974 14308 32221 Face 28612 1974 23623 14308 Face 28613 403 14309 41645 Face 28614 403 10936 38795 Face 28615 7037 30384 25839 Face 28616 7037 20592 14310 Face 28617 5082 14311 11233 Face 28618 5082 32388 14311 Face 28619 773 14312 4718 Face 28620 773 12805 14312 Face 28621 40540 14313 23549 Face 28622 6488 27822 48039 Face 28623 6837 14314 35016 Face 28624 6837 35251 14314 Face 28625 1415 14315 34860 Face 28626 18615 38776 14315 Face 28627 8408 14316 8203 Face 28628 8408 46914 14316 Face 28629 45373 14317 16596 Face 28630 45373 27534 14317 Face 28631 33224 14318 39155 Face 28632 29871 9728 14318 Face 28633 529 37966 12078 Face 28634 35448 48802 37966 Face 28635 3949 14320 20110 Face 28636 3949 35509 14320 Face 28637 25846 14321 8832 Face 28638 49193 32077 43953 Face 28639 1167 14322 38241 Face 28640 27226 32784 14322 Face 28641 35202 14323 25314 Face 28642 11070 37842 14323 Face 28643 7544 14324 22532 Face 28644 7544 11080 14324 Face 28645 2908 14325 42730 Face 28646 2908 12231 14325 Face 28647 3091 30013 12374 Face 28648 45207 24849 30014 Face 28649 15106 14327 35211 Face 28650 45144 17600 33854 Face 28651 4277 14328 4276 Face 28652 4277 11323 14328 Face 28653 4148 14329 35776 Face 28654 29720 46719 14329 Face 28655 4855 14330 26502 Face 28656 21029 37888 26849 Face 28657 7377 14331 28907 Face 28658 7377 39038 14331 Face 28659 21902 49765 14232 Face 28660 4587 48334 24963 Face 28661 33001 14333 8181 Face 28662 14332 33347 14333 Face 28663 8750 14334 46276 Face 28664 32853 49084 14334 Face 28665 6804 30149 36274 Face 28666 6804 30568 30149 Face 28667 40803 33351 514 Face 28668 8836 20266 14336 Face 28669 21651 14337 13354 Face 28670 14338 10085 14337 Face 28671 5253 14338 14337 Face 28672 30734 9870 14338 Face 28673 4941 14339 15156 Face 28674 4941 9627 14339 Face 28675 41438 14340 33646 Face 28676 46560 24256 14340 Face 28677 47092 14341 34794 Face 28678 16175 6137 28312 Face 28679 6131 33460 48844 Face 28680 44281 4357 14342 Face 28681 25623 14343 33299 Face 28682 18919 27312 14343 Face 28683 25997 29629 32923 Face 28684 6315 13748 30547 Face 28685 9537 14345 6252 Face 28686 9537 30986 14345 Face 28687 5349 14346 31688 Face 28688 5349 43971 14346 Face 28689 45573 14347 24588 Face 28690 14666 32697 36738 Face 28691 2847 14348 24967 Face 28692 2847 38448 14348 Face 28693 31464 14349 37461 Face 28694 31465 12885 14349 Face 28695 6646 14350 12891 Face 28696 6646 23015 14350 Face 28697 21682 14351 4006 Face 28698 1948 15460 32506 Face 28699 1640 14352 33095 Face 28700 1640 47767 14352 Face 28701 31343 14353 16986 Face 28702 45742 18251 14353 Face 28703 26222 14354 20855 Face 28704 26222 34663 14354 Face 28705 2548 14355 34290 Face 28706 2548 38960 14355 Face 28707 9772 36708 26573 Face 28708 34023 41973 14356 Face 28709 21443 14357 10853 Face 28710 7538 15005 29602 Face 28711 21442 14358 31853 Face 28712 21443 40306 30689 Face 28713 208 14359 31345 Face 28714 208 13501 14359 Face 28715 24678 14360 772 Face 28716 34409 10897 40436 Face 28717 30354 14361 1243 Face 28718 5211 41089 14361 Face 28719 7004 14362 30933 Face 28720 7004 18147 39150 Face 28721 4183 14363 43345 Face 28722 18357 48913 20271 Face 28723 16038 14364 25849 Face 28724 16038 31936 14364 Face 28725 14364 14365 25849 Face 28726 46891 7220 14365 Face 28727 7665 14366 37434 Face 28728 7665 34517 14366 Face 28729 2117 14367 25575 Face 28730 14702 7889 14367 Face 28731 29116 44905 49377 Face 28732 20224 17954 32532 Face 28733 30996 46326 9843 Face 28734 30996 7609 14369 Face 28735 34256 45440 8815 Face 28736 6605 9272 24877 Face 28737 10533 14371 34844 Face 28738 10533 35466 14371 Face 28739 36424 14372 11982 Face 28740 13351 39400 14372 Face 28741 6524 14373 28654 Face 28742 6524 21452 14373 Face 28743 9270 34823 40491 Face 28744 9270 38783 34823 Face 28745 14791 14375 15944 Face 28746 21812 8028 45135 Face 28747 27685 14376 3836 Face 28748 27685 33528 14376 Face 28749 764 14377 13735 Face 28750 17467 27609 14377 Face 28751 4555 14378 24949 Face 28752 4555 26841 14378 Face 28753 17589 33526 45547 Face 28754 1992 44853 33526 Face 28755 27269 14380 45030 Face 28756 15184 49333 30750 Face 28757 3909 24962 28755 Face 28758 31463 485 48491 Face 28759 815 14382 17857 Face 28760 39780 15709 45831 Face 28761 14382 14383 13686 Face 28762 14384 4158 45713 Face 28763 14382 14384 45713 Face 28764 14382 39780 45831 Face 28765 25658 14385 42892 Face 28766 25658 37070 14385 Face 28767 42153 28916 26304 Face 28768 29687 3629 14386 Face 28769 46958 14387 38981 Face 28770 46958 16288 14387 Face 28771 1371 14388 27350 Face 28772 22985 24480 27942 Face 28773 1564 14389 46836 Face 28774 1564 41723 14389 Face 28775 853 14390 19785 Face 28776 853 34458 14390 Face 28777 29352 39391 22037 Face 28778 9379 24835 14391 Face 28779 14015 14392 737 Face 28780 14015 21953 14392 Face 28781 3655 14393 30459 Face 28782 3655 37234 14393 Face 28783 34700 14394 28338 Face 28784 9557 1288 14394 Face 28785 31731 39985 26705 Face 28786 8141 30625 14395 Face 28787 6467 14396 32302 Face 28788 6467 2515 14396 Face 28789 6467 14397 40108 Face 28790 6467 31480 14397 Face 28791 2140 27454 8926 Face 28792 23105 24979 49529 Face 28793 1647 14399 23510 Face 28794 15028 807 31626 Face 28795 5904 14400 38308 Face 28796 14401 42543 30716 Face 28797 23367 14401 30716 Face 28798 23367 20942 14401 Face 28799 45719 21801 23504 Face 28800 3513 13204 21963 Face 28801 42259 14403 19279 Face 28802 34728 46790 48171 Face 28803 36436 14404 36094 Face 28804 22159 40671 14404 Face 28805 42634 49072 25820 Face 28806 4876 36915 14405 Face 28807 39807 31588 36173 Face 28808 39807 21258 31588 Face 28809 37022 14407 17929 Face 28810 44658 9426 14407 Face 28811 6622 35475 14409 Face 28812 49377 14368 49731 Face 28813 25795 14409 35792 Face 28814 43819 6622 14409 Face 28815 6827 14410 18334 Face 28816 37770 38927 14410 Face 28817 34873 14411 17131 Face 28818 1602 18521 42675 Face 28819 3661 14412 38776 Face 28820 22789 25710 14412 Face 28821 30645 14413 38949 Face 28822 5177 10682 14413 Face 28823 521 14414 25425 Face 28824 521 10054 36365 Face 28825 14414 14415 3119 Face 28826 36365 48932 14415 Face 28827 31681 14416 404 Face 28828 17337 42685 14416 Face 28829 35351 14417 21038 Face 28830 2881 25875 14417 Face 28831 762 22129 31991 Face 28832 762 25561 22129 Face 28833 762 37343 42207 Face 28834 14420 25709 37342 Face 28835 762 14420 37343 Face 28836 40408 20915 14420 Face 28837 1476 14421 30959 Face 28838 1476 29597 14421 Face 28839 38829 14422 11495 Face 28840 48059 26601 38786 Face 28841 19807 14423 9871 Face 28842 19807 46573 48990 Face 28843 9089 37477 48298 Face 28844 43611 8321 14424 Face 28845 1388 14425 6224 Face 28846 18493 12395 42788 Face 28847 34358 14426 23229 Face 28848 15925 3531 23040 Face 28849 1758 49637 11351 Face 28850 1758 13691 14427 Face 28851 19938 14428 27539 Face 28852 19938 11563 14428 Face 28853 22526 14429 17376 Face 28854 15429 2384 27119 Face 28855 8732 37473 2887 Face 28856 8732 24387 37473 Face 28857 9516 14431 24006 Face 28858 9516 36427 14431 Face 28859 9973 42395 5863 Face 28860 9973 44716 14432 Face 28861 46824 14433 31848 Face 28862 27344 4892 14433 Face 28863 31382 14434 27792 Face 28864 42792 9312 14434 Face 28865 19094 38820 8293 Face 28866 454 24609 26909 Face 28867 438 14436 36725 Face 28868 44630 19236 14436 Face 28869 32450 14437 5562 Face 28870 32450 1471 14437 Face 28871 4684 14438 22892 Face 28872 4684 22726 14438 Face 28873 38814 14439 31880 Face 28874 38814 21344 14439 Face 28875 14441 14440 28581 Face 28876 49790 5044 14440 Face 28877 45892 14441 28581 Face 28878 4712 8644 47982 Face 28879 14443 14442 24523 Face 28880 26921 9907 26090 Face 28881 29331 28311 8679 Face 28882 6423 14442 14443 Face 28883 1934 14444 3366 Face 28884 46765 23451 14444 Face 28885 39347 14445 10949 Face 28886 39347 34132 14445 Face 28887 10662 14446 6076 Face 28888 10662 22948 14446 Face 28889 8204 14447 14212 Face 28890 8204 2293 14447 Face 28891 42374 14448 25755 Face 28892 17890 474 14448 Face 28893 585 21320 30023 Face 28894 15964 40735 21320 Face 28895 36332 27970 2578 Face 28896 36011 27571 14450 Face 28897 18282 14451 9969 Face 28898 23599 47888 20862 Face 28899 4234 18282 9969 Face 28900 22889 30622 14452 Face 28901 34327 45128 37432 Face 28902 561 4904 43657 Face 28903 21321 14454 35577 Face 28904 21321 27621 14454 Face 28905 5467 43692 36996 Face 28906 5467 25195 43692 Face 28907 14455 14456 30611 Face 28908 14455 45847 14456 Face 28909 7446 14457 37893 Face 28910 7446 27373 14457 Face 28911 357 43414 17354 Face 28912 357 6206 14458 Face 28913 6135 14459 25599 Face 28914 6135 30218 47901 Face 28915 95 14460 45960 Face 28916 95 8731 14460 Face 28917 7244 14461 22716 Face 28918 7244 37412 14461 Face 28919 18273 14462 33608 Face 28920 22618 43351 14462 Face 28921 5857 14463 44003 Face 28922 32150 18946 14463 Face 28923 2292 14464 27667 Face 28924 46339 25660 26084 Face 28925 5615 14465 23787 Face 28926 5615 15274 14465 Face 28927 9202 14466 34686 Face 28928 9202 26734 39702 Face 28929 42946 14467 10182 Face 28930 21114 12938 14467 Face 28931 1710 35203 37405 Face 28932 38171 33531 47151 Face 28933 25134 14469 18794 Face 28934 926 29815 14469 Face 28935 43466 49273 20386 Face 28936 4032 8938 14470 Face 28937 45684 14471 10065 Face 28938 584 6911 45631 Face 28939 4666 14472 9335 Face 28940 25049 12120 14472 Face 28941 14474 14473 23830 Face 28942 14474 1869 14473 Face 28943 6544 14474 44834 Face 28944 6544 1869 14474 Face 28945 35825 14475 25692 Face 28946 2565 11622 14475 Face 28947 270 39737 18185 Face 28948 270 9882 14476 Face 28949 20685 14477 9763 Face 28950 20685 13553 14477 Face 28951 22101 14478 4033 Face 28952 3371 46187 14478 Face 28953 5464 14479 12668 Face 28954 5464 44421 14479 Face 28955 16850 14480 9840 Face 28956 43386 33166 14480 Face 28957 17126 14481 22837 Face 28958 25270 41155 26562 Face 28959 574 14482 9739 Face 28960 574 12888 47561 Face 28961 14482 14483 13407 Face 28962 14482 574 47561 Face 28963 2881 42652 22560 Face 28964 2881 14417 14484 Face 28965 2792 14485 8360 Face 28966 17995 36317 31691 Face 28967 31074 14486 12169 Face 28968 31169 2878 19881 Face 28969 5192 43050 8039 Face 28970 5192 44693 34717 Face 28971 1799 14488 10778 Face 28972 37509 22133 14488 Face 28973 2786 14489 30172 Face 28974 2786 15359 49041 Face 28975 33720 14490 6901 Face 28976 33720 41661 14490 Face 28977 4172 38945 21599 Face 28978 4172 40482 14491 Face 28979 16466 23864 24342 Face 28980 16466 20664 23864 Face 28981 225 14493 5567 Face 28982 15348 11181 46212 Face 28983 5195 14494 16661 Face 28984 32909 43247 14494 Face 28985 3353 14495 30018 Face 28986 3353 21891 14495 Face 28987 6599 14496 33536 Face 28988 6599 849 14496 Face 28989 6607 37187 49139 Face 28990 26188 11341 14497 Face 28991 871 14498 4312 Face 28992 43191 20078 14498 Face 28993 344 14499 29861 Face 28994 344 19034 14499 Face 28995 1884 30714 6009 Face 28996 1884 8934 30714 Face 28997 24542 17812 8699 Face 28998 24542 27966 17812 Face 28999 8699 34018 46747 Face 29000 22456 14501 14502 Face 29001 14502 14503 22456 Face 29002 14502 15415 14503 Face 29003 9933 14504 33341 Face 29004 47582 8706 14504 Face 29005 4474 30705 27801 Face 29006 4474 11991 14505 Face 29007 2751 23008 6664 Face 29008 2751 49614 14506 Face 29009 23652 38407 29855 Face 29010 2816 23499 38407 Face 29011 10094 14508 32070 Face 29012 10094 6287 22862 Face 29013 2684 14509 24800 Face 29014 17635 28193 14509 Face 29015 7485 14510 37179 Face 29016 7485 33387 14510 Face 29017 22116 36531 13865 Face 29018 14512 27187 14511 Face 29019 282 14512 14511 Face 29020 25595 12762 14512 Face 29021 1714 14513 16743 Face 29022 36711 25941 14513 Face 29023 27337 14514 2543 Face 29024 12733 18263 14514 Face 29025 15480 14515 20067 Face 29026 1556 22545 14515 Face 29027 4303 36313 7130 Face 29028 4303 36455 14516 Face 29029 23663 20080 32748 Face 29030 6298 19819 14517 Face 29031 20059 14518 35178 Face 29032 22669 44779 14518 Face 29033 29760 14519 46816 Face 29034 44840 29307 14519 Face 29035 5757 20753 27225 Face 29036 5757 12002 20753 Face 29037 578 14521 6832 Face 29038 578 35476 14521 Face 29039 12786 14522 17095 Face 29040 12786 46285 41514 Face 29041 9897 39386 2982 Face 29042 49545 7250 14523 Face 29043 26408 35179 7085 Face 29044 28855 10292 14524 Face 29045 40363 14525 22367 Face 29046 40363 23733 14525 Face 29047 27018 14526 12483 Face 29048 27017 31047 36537 Face 29049 1853 34949 9837 Face 29050 1853 39929 14527 Face 29051 49542 24809 35220 Face 29052 3945 18726 24809 Face 29053 6407 14529 17799 Face 29054 6407 15876 42610 Face 29055 22608 14530 9926 Face 29056 21605 25138 14530 Face 29057 2818 14531 16513 Face 29058 2818 38730 14531 Face 29059 17204 38940 2840 Face 29060 14531 45163 38940 Face 29061 40328 40159 11315 Face 29062 22768 4848 40160 Face 29063 23662 14534 31019 Face 29064 6061 41552 14534 Face 29065 32324 26312 13897 Face 29066 26542 8724 31126 Face 29067 26312 33872 13897 Face 29068 49171 5432 14536 Face 29069 6678 14537 24941 Face 29070 6678 42822 14537 Face 29071 34973 44736 10180 Face 29072 44720 14137 14538 Face 29073 29702 48417 23382 Face 29074 738 13446 14540 Face 29075 14539 14540 13446 Face 29076 14539 29702 14540 Face 29077 31567 48221 19106 Face 29078 31567 45332 14541 Face 29079 1022 36250 26221 Face 29080 1022 8042 14542 Face 29081 42735 23373 27846 Face 29082 4226 19374 36810 Face 29083 2019 47503 17647 Face 29084 31417 46844 49078 Face 29085 3331 14545 24568 Face 29086 3331 18005 14545 Face 29087 44823 14546 37027 Face 29088 44823 40039 14546 Face 29089 3652 14547 22381 Face 29090 3652 13883 49203 Face 29091 14549 27755 14638 Face 29092 219 44073 14548 Face 29093 25870 14549 10732 Face 29094 219 27755 14549 Face 29095 36519 14550 28874 Face 29096 219 14549 25870 Face 29097 38232 14551 13901 Face 29098 47401 960 14551 Face 29099 35141 20670 5953 Face 29100 15381 5954 14552 Face 29101 4389 14553 31162 Face 29102 39339 17255 14553 Face 29103 29162 34429 36183 Face 29104 3403 41575 14554 Face 29105 12771 14555 29821 Face 29106 17724 18968 14555 Face 29107 4784 48993 15229 Face 29108 14557 20498 38957 Face 29109 4784 14557 38957 Face 29110 4784 1776 14557 Face 29111 15846 21915 12245 Face 29112 2126 37019 39259 Face 29113 4235 14559 3676 Face 29114 4235 27367 29939 Face 29115 25486 14560 9842 Face 29116 37402 31509 47171 Face 29117 93 14561 38564 Face 29118 93 43724 14561 Face 29119 9458 14562 26007 Face 29120 9458 46528 14562 Face 29121 10610 14563 16547 Face 29122 40257 11679 14563 Face 29123 8366 44225 29168 Face 29124 8366 3260 44225 Face 29125 671 14565 8564 Face 29126 671 18043 48357 Face 29127 5360 14566 35316 Face 29128 5360 22151 14566 Face 29129 4298 14567 34213 Face 29130 4298 40642 14567 Face 29131 8613 14568 36851 Face 29132 8613 35432 14568 Face 29133 2743 14569 8014 Face 29134 19312 34699 31630 Face 29135 14571 36768 8126 Face 29136 2743 27492 14570 Face 29137 2743 14571 14569 Face 29138 2743 36768 14571 Face 29139 599 14572 9620 Face 29140 599 21872 14572 Face 29141 40423 49407 44744 Face 29142 25146 4974 33098 Face 29143 25052 42958 21386 Face 29144 30901 2924 42959 Face 29145 16605 43664 21256 Face 29146 30901 42958 25052 Face 29147 9555 39311 7991 Face 29148 9555 24733 39311 Face 29149 5033 40873 15664 Face 29150 5033 39945 40873 Face 29151 2746 37290 34999 Face 29152 43590 40853 29950 Face 29153 1331 14579 36959 Face 29154 27822 26464 14579 Face 29155 9984 14580 36339 Face 29156 9984 32626 14580 Face 29157 47424 14581 12243 Face 29158 9455 8895 14581 Face 29159 5632 14582 5631 Face 29160 5632 47482 14582 Face 29161 27466 14583 38097 Face 29162 19973 47373 14583 Face 29163 1246 45498 18062 Face 29164 23137 2689 45498 Face 29165 19372 14585 28027 Face 29166 19372 37902 14585 Face 29167 46589 31058 2186 Face 29168 7332 44920 31058 Face 29169 3815 14587 27329 Face 29170 3815 45461 14587 Face 29171 45307 14588 29890 Face 29172 45307 4386 14588 Face 29173 4137 14589 29150 Face 29174 46753 27574 14589 Face 29175 1537 26862 18891 Face 29176 48701 33587 14590 Face 29177 7630 14591 6854 Face 29178 7630 11454 27949 Face 29179 14593 29933 23925 Face 29180 2329 4149 29933 Face 29181 19975 23764 43844 Face 29182 2329 29933 14593 Face 29183 48794 14594 10157 Face 29184 1126 10033 14594 Face 29185 20623 26590 12007 Face 29186 48571 29839 26590 Face 29187 1566 14596 9124 Face 29188 1566 29839 48571 Face 29189 45457 14597 5295 Face 29190 7787 44587 14597 Face 29191 28032 14598 6985 Face 29192 28032 1975 14598 Face 29193 6168 14599 35639 Face 29194 46057 29374 30415 Face 29195 18106 48639 27254 Face 29196 46305 31706 14600 Face 29197 21480 14601 40004 Face 29198 11052 3715 34996 Face 29199 43267 14602 29207 Face 29200 43267 28993 14602 Face 29201 24840 14603 44111 Face 29202 21994 25156 14603 Face 29203 43824 14604 9707 Face 29204 14605 37942 14604 Face 29205 9095 14605 14604 Face 29206 9095 35328 14605 Face 29207 49248 14606 3383 Face 29208 49248 38336 14606 Face 29209 4198 14607 30231 Face 29210 44435 11197 31299 Face 29211 557 14990 26493 Face 29212 557 48911 14608 Face 29213 24524 14609 32131 Face 29214 24524 8521 14609 Face 29215 4377 14610 44787 Face 29216 4377 44964 14610 Face 29217 3659 29575 27513 Face 29218 25230 35232 14611 Face 29219 1571 43032 23740 Face 29220 37708 8837 20663 Face 29221 6858 39507 18584 Face 29222 48405 960 14613 Face 29223 48231 38171 35203 Face 29224 48231 10683 14614 Face 29225 40202 14615 31416 Face 29226 7558 13420 49713 Face 29227 7540 14616 15798 Face 29228 7540 19438 14616 Face 29229 41626 48122 20334 Face 29230 6710 17523 14617 Face 29231 10032 14618 27545 Face 29232 10032 19417 14618 Face 29233 3435 14619 40666 Face 29234 3435 3145 14619 Face 29235 48475 21830 8584 Face 29236 36797 11803 14620 Face 29237 7659 14621 28132 Face 29238 7659 36433 14621 Face 29239 33469 14622 33594 Face 29240 1195 12648 14622 Face 29241 29663 14623 8802 Face 29242 3911 16140 40544 Face 29243 8156 14624 43198 Face 29244 8156 25762 14624 Face 29245 4414 37887 106 Face 29246 4414 21660 14625 Face 29247 28043 14626 45767 Face 29248 28043 23144 14626 Face 29249 8147 42217 25212 Face 29250 14805 33061 49779 Face 29251 40881 14628 2307 Face 29252 40881 37041 14628 Face 29253 2993 17585 49188 Face 29254 2993 6778 17585 Face 29255 25513 14630 47412 Face 29256 3761 33979 14630 Face 29257 2636 14631 30990 Face 29258 21728 33600 24571 Face 29259 25118 27429 4670 Face 29260 34631 42590 14632 Face 29261 3440 14633 12612 Face 29262 16554 1678 14633 Face 29263 41290 14634 5771 Face 29264 4287 20347 14634 Face 29265 44911 37366 44116 Face 29266 389 26106 34073 Face 29267 35076 14636 4949 Face 29268 20702 13026 14636 Face 29269 11978 14637 48119 Face 29270 11978 34482 14637 Face 29271 41172 14638 7059 Face 29272 41172 14549 14638 Face 29273 26437 14639 38991 Face 29274 26437 26392 14639 Face 29275 4456 14640 19192 Face 29276 4456 28249 14640 Face 29277 2085 14641 36926 Face 29278 2085 11253 43805 Face 29279 41431 47239 46603 Face 29280 715 17636 14642 Face 29281 1857 35367 34548 Face 29282 35433 19186 30929 Face 29283 1391 25894 20827 Face 29284 1391 18363 25894 Face 29285 4707 20248 43180 Face 29286 31233 37391 20248 Face 29287 46203 14646 37268 Face 29288 46203 28550 14646 Face 29289 40754 14647 34264 Face 29290 40754 34500 14647 Face 29291 34786 14648 24303 Face 29292 34786 12551 14648 Face 29293 2824 14649 7628 Face 29294 39346 32920 14649 Face 29295 49389 14650 34125 Face 29296 2205 4126 33145 Face 29297 15805 42391 17676 Face 29298 45436 8086 48117 Face 29299 15560 42582 24759 Face 29300 1636 31505 14652 Face 29301 8952 14653 17586 Face 29302 17701 30171 14653 Face 29303 46782 18467 13077 Face 29304 14655 7816 14654 Face 29305 42861 14655 14654 Face 29306 39302 365 14655 Face 29307 6181 44710 23428 Face 29308 39302 14655 42861 Face 29309 44204 14657 27707 Face 29310 47689 43597 48323 Face 29311 40647 14658 4283 Face 29312 17853 8591 14658 Face 29313 47294 37228 21680 Face 29314 22416 9579 36970 Face 29315 5257 49979 14080 Face 29316 16533 46766 21707 Face 29317 18731 23339 33826 Face 29318 3504 35180 14661 Face 29319 4360 14662 26143 Face 29320 31885 45205 30551 Face 29321 48042 43061 17295 Face 29322 7804 13712 14663 Face 29323 1610 14664 47226 Face 29324 1610 33142 14664 Face 29325 4193 14665 31461 Face 29326 4193 868 14665 Face 29327 2414 31304 14347 Face 29328 39522 46735 31304 Face 29329 39991 29754 16000 Face 29330 4218 49800 29754 Face 29331 4218 39991 12831 Face 29332 4218 29754 39991 Face 29333 5322 14669 43744 Face 29334 5322 26351 14669 Face 29335 5179 14670 38962 Face 29336 17715 30364 14670 Face 29337 21891 14671 14495 Face 29338 14672 4909 14671 Face 29339 601 14672 14671 Face 29340 601 28473 14672 Face 29341 2015 43822 47837 Face 29342 32220 14616 14673 Face 29343 8686 33366 11290 Face 29344 8686 29477 14674 Face 29345 1481 14675 44730 Face 29346 1481 6713 39959 Face 29347 17555 49818 30741 Face 29348 14881 15143 36846 Face 29349 46622 14677 8716 Face 29350 39366 9890 14677 Face 29351 12927 38935 29466 Face 29352 16915 28851 14678 Face 29353 31199 14679 11111 Face 29354 41263 23711 14679 Face 29355 427 14680 4138 Face 29356 427 6643 39840 Face 29357 21812 14681 8028 Face 29358 22500 13125 43558 Face 29359 5238 14682 26223 Face 29360 5238 6234 14682 Face 29361 8058 14683 20863 Face 29362 8058 49863 14683 Face 29363 35672 14684 8693 Face 29364 5252 3517 48771 Face 29365 4831 14685 14528 Face 29366 4831 36333 14685 Face 29367 5715 14686 33497 Face 29368 36986 3594 14686 Face 29369 3452 14687 36716 Face 29370 3452 36471 24928 Face 29371 18174 14688 2914 Face 29372 13446 4898 14688 Face 29373 8582 14689 39568 Face 29374 27355 40590 38230 Face 29375 40584 14690 7383 Face 29376 44028 14049 14690 Face 29377 19845 14691 32146 Face 29378 36394 28782 14691 Face 29379 25772 34058 12029 Face 29380 7151 18681 14692 Face 29381 7151 14693 29349 Face 29382 7151 14692 14693 Face 29383 7109 14694 27546 Face 29384 7109 27788 14694 Face 29385 40653 14695 9119 Face 29386 40653 33293 14695 Face 29387 12530 14696 30907 Face 29388 37411 46533 24136 Face 29389 4487 41317 12059 Face 29390 4487 1028 14697 Face 29391 5421 14698 5356 Face 29392 5421 12819 14698 Face 29393 36976 42256 25770 Face 29394 36976 3229 42256 Face 29395 9412 14700 27507 Face 29396 9412 19469 14700 Face 29397 39002 35122 13814 Face 29398 11062 25687 14701 Face 29399 2117 14702 14367 Face 29400 2117 44254 14702 Face 29401 36680 14703 14751 Face 29402 5109 45412 15301 Face 29403 41994 14704 20037 Face 29404 41994 20470 14704 Face 29405 41994 14705 20470 Face 29406 997 2879 14705 Face 29407 25524 14706 33223 Face 29408 14707 11116 40316 Face 29409 9431 14707 40316 Face 29410 9431 8280 14707 Face 29411 9489 14708 25631 Face 29412 9489 46453 14708 Face 29413 316 14709 13342 Face 29414 316 13792 33912 Face 29415 34435 14710 38377 Face 29416 34435 32607 34010 Face 29417 36551 48887 14166 Face 29418 10476 20385 44296 Face 29419 1750 14712 49485 Face 29420 21780 4266 14712 Face 29421 9644 31075 998 Face 29422 9644 41329 14713 Face 29423 7061 39051 37448 Face 29424 42862 40578 47986 Face 29425 4884 14715 27941 Face 29426 37356 28206 43034 Face 29427 14922 29688 23343 Face 29428 25826 9819 32746 Face 29429 254 14717 39503 Face 29430 254 16058 14717 Face 29431 4349 14718 28491 Face 29432 4349 24675 14718 Face 29433 11442 14719 2561 Face 29434 23361 24497 14719 Face 29435 937 14720 32590 Face 29436 34976 12503 14720 Face 29437 2134 14721 5112 Face 29438 2134 11966 14721 Face 29439 1955 32904 40390 Face 29440 40347 18173 25038 Face 29441 1955 14723 32905 Face 29442 1955 29534 14723 Face 29443 26410 34380 39289 Face 29444 9363 30165 31183 Face 29445 33435 31183 15069 Face 29446 33435 9363 31183 Face 29447 37782 14726 44027 Face 29448 36338 19163 47944 Face 29449 38179 14727 46280 Face 29450 2707 41628 22068 Face 29451 24756 17946 35238 Face 29452 25351 2041 41353 Face 29453 29508 14729 48478 Face 29454 29508 46422 14729 Face 29455 345 14730 2382 Face 29456 345 28716 14730 Face 29457 7792 41476 31616 Face 29458 7792 34721 41476 Face 29459 1006 14732 11170 Face 29460 27859 30681 14732 Face 29461 46301 14733 24357 Face 29462 46300 8116 14733 Face 29463 1583 14734 40254 Face 29464 36084 7946 14734 Face 29465 7313 14735 34603 Face 29466 38887 11531 14735 Face 29467 22136 14736 7492 Face 29468 23597 31789 14736 Face 29469 4881 39678 15430 Face 29470 31118 2248 24283 Face 29471 1917 14738 29897 Face 29472 1917 41090 14738 Face 29473 23993 14739 18557 Face 29474 23993 45862 14739 Face 29475 34113 31781 42370 Face 29476 2248 19522 31781 Face 29477 39089 14741 35644 Face 29478 39089 13462 14741 Face 29479 33377 14742 42472 Face 29480 1585 13462 39089 Face 29481 4079 32507 22947 Face 29482 4079 31741 38118 Face 29483 3256 43733 9295 Face 29484 3256 9760 14744 Face 29485 7153 14745 31888 Face 29486 7153 13575 27079 Face 29487 45759 42653 10672 Face 29488 12758 30008 14746 Face 29489 48496 30938 39545 Face 29490 36598 49643 14747 Face 29491 28895 14748 44299 Face 29492 28896 22028 48635 Face 29493 9515 14749 47557 Face 29494 9515 32437 14749 Face 29495 7647 14750 22550 Face 29496 19477 24105 36712 Face 29497 19569 14751 37015 Face 29498 6155 20619 14751 Face 29499 48756 26283 17803 Face 29500 1232 37311 14752 Face 29501 16914 49924 32765 Face 29502 45096 31083 14753 Face 29503 9659 14754 18872 Face 29504 9659 37532 14754 Face 29505 2639 14755 12946 Face 29506 14756 10177 35479 Face 29507 2639 14756 18951 Face 29508 27073 35228 30632 Face 29509 22246 40616 33031 Face 29510 3587 26025 40616 Face 29511 47647 14758 38406 Face 29512 24277 10720 14758 Face 29513 8617 24277 14758 Face 29514 31488 6029 14759 Face 29515 11301 14760 6730 Face 29516 11301 9893 29921 Face 29517 1618 14761 25866 Face 29518 24592 12708 29410 Face 29519 2227 31873 7799 Face 29520 25626 7590 14762 Face 29521 1212 47419 21054 Face 29522 19254 38226 14763 Face 29523 19254 14764 4542 Face 29524 1212 24449 14764 Face 29525 28523 22945 8605 Face 29526 49741 28993 14765 Face 29527 4286 14766 24916 Face 29528 47935 46269 14766 Face 29529 45826 14767 3811 Face 29530 32769 49263 14767 Face 29531 21054 49945 1212 Face 29532 1645 39340 28955 Face 29533 4248 14769 35280 Face 29534 4248 37320 49390 Face 29535 16517 36266 47763 Face 29536 13386 31173 29925 Face 29537 17358 41346 2892 Face 29538 7981 39708 14771 Face 29539 7981 33910 5607 Face 29540 7981 29115 33910 Face 29541 30843 14773 25537 Face 29542 25845 2863 42378 Face 29543 7959 25845 14773 Face 29544 7959 14183 14774 Face 29545 6794 14775 28163 Face 29546 19359 303 14775 Face 29547 22198 14776 24699 Face 29548 7102 11053 36386 Face 29549 958 14777 49146 Face 29550 958 27890 14777 Face 29551 18748 14778 10344 Face 29552 49174 11432 27246 Face 29553 228 40725 7358 Face 29554 46265 16360 14779 Face 29555 5300 44483 34389 Face 29556 16712 164 44483 Face 29557 7255 38791 34153 Face 29558 38544 22653 14781 Face 29559 48601 14782 24782 Face 29560 48600 3449 14782 Face 29561 7758 14783 42023 Face 29562 44697 16280 38736 Face 29563 49005 41903 20366 Face 29564 9809 2953 41903 Face 29565 332 14785 10819 Face 29566 32007 28172 14785 Face 29567 17043 34155 9574 Face 29568 47058 25208 14786 Face 29569 349 14787 5421 Face 29570 349 20516 14787 Face 29571 527 14788 47549 Face 29572 32527 36028 29211 Face 29573 28124 14789 46624 Face 29574 3300 11434 25800 Face 29575 6766 14790 16918 Face 29576 6766 15812 14790 Face 29577 781 14791 48415 Face 29578 781 45135 14791 Face 29579 3807 14792 18021 Face 29580 3807 35102 14792 Face 29581 14795 14793 26503 Face 29582 14794 9611 40464 Face 29583 14795 14794 14793 Face 29584 1916 24751 14794 Face 29585 1916 14795 6665 Face 29586 1916 14794 14795 Face 29587 4264 14796 44335 Face 29588 4264 49603 14796 Face 29589 15464 14797 23772 Face 29590 22933 13366 14797 Face 29591 1616 14798 11033 Face 29592 1616 28630 14798 Face 29593 22649 14799 1274 Face 29594 22649 32338 14799 Face 29595 4205 14800 44376 Face 29596 4205 15818 14800 Face 29597 3954 14801 26535 Face 29598 3954 28918 14801 Face 29599 14803 14802 44963 Face 29600 14801 19919 38265 Face 29601 14801 14803 26535 Face 29602 14801 38265 14803 Face 29603 19536 14804 31492 Face 29604 9553 32172 27754 Face 29605 8147 14805 42217 Face 29606 8147 21313 14805 Face 29607 23743 14806 14119 Face 29608 1247 46142 14806 Face 29609 260 41882 21569 Face 29610 260 5787 14807 Face 29611 32590 19724 34977 Face 29612 8634 42022 19724 Face 29613 31914 14809 17992 Face 29614 31914 26385 14809 Face 29615 9805 14810 43354 Face 29616 31814 42347 14810 Face 29617 2995 14811 9790 Face 29618 21985 23845 48157 Face 29619 8088 14812 3153 Face 29620 36031 17071 14812 Face 29621 203 14813 47655 Face 29622 203 38522 14813 Face 29623 3024 26591 35618 Face 29624 3024 45336 26591 Face 29625 2392 23208 9496 Face 29626 2392 34759 14815 Face 29627 41794 14816 6911 Face 29628 8330 998 47137 Face 29629 2064 14817 25284 Face 29630 2064 25470 14817 Face 29631 28401 14818 27122 Face 29632 10510 4704 14818 Face 29633 23116 23269 35008 Face 29634 10510 14818 28401 Face 29635 16475 49871 35008 Face 29636 23106 35583 49394 Face 29637 34186 14821 711 Face 29638 20427 33035 21809 Face 29639 20427 14822 33357 Face 29640 11184 33979 46206 Face 29641 44470 24576 4820 Face 29642 46447 41757 14823 Face 29643 30314 41689 13249 Face 29644 4513 40328 14824 Face 29645 4209 14825 13250 Face 29646 18608 34803 14825 Face 29647 4209 14826 14825 Face 29648 4209 1982 45543 Face 29649 5426 14827 6392 Face 29650 5426 22066 14827 Face 29651 40449 14828 4953 Face 29652 40449 21203 14828 Face 29653 83 14829 26519 Face 29654 83 21203 14829 Face 29655 33651 14830 10109 Face 29656 3635 25355 14830 Face 29657 8197 14831 2087 Face 29658 37288 44007 14831 Face 29659 38117 27572 39987 Face 29660 12693 11338 14832 Face 29661 44152 14833 4943 Face 29662 4275 19645 39306 Face 29663 35624 14834 6280 Face 29664 37707 1406 14834 Face 29665 7754 14835 14048 Face 29666 7754 24881 14835 Face 29667 5658 14836 12474 Face 29668 44738 5657 14836 Face 29669 15709 14837 22638 Face 29670 24417 46516 14837 Face 29671 19414 37338 40468 Face 29672 5112 24030 44286 Face 29673 1603 14839 9574 Face 29674 1603 14973 14839 Face 29675 248 40171 18376 Face 29676 27557 41593 14840 Face 29677 39478 14841 10530 Face 29678 39478 36322 14841 Face 29679 31404 44027 14726 Face 29680 25019 21249 14842 Face 29681 39988 14843 40800 Face 29682 5209 17942 14843 Face 29683 20774 14844 36080 Face 29684 20773 35138 41440 Face 29685 689 14845 13096 Face 29686 689 9503 14845 Face 29687 1579 14846 23224 Face 29688 1579 46233 14846 Face 29689 39694 14847 5009 Face 29690 44794 25021 14847 Face 29691 637 14848 32387 Face 29692 637 23011 14848 Face 29693 4253 14849 24067 Face 29694 28423 48045 27824 Face 29695 2195 33303 48469 Face 29696 2195 29196 48449 Face 29697 27248 14851 7686 Face 29698 39865 5151 14851 Face 29699 27248 14852 14851 Face 29700 6005 1070 44354 Face 29701 8372 14853 25180 Face 29702 17471 14274 14853 Face 29703 5352 42747 15233 Face 29704 5352 11034 14854 Face 29705 34382 46780 4014 Face 29706 8718 38526 14855 Face 29707 27655 14856 41485 Face 29708 16672 45495 14856 Face 29709 471 14857 14171 Face 29710 19085 11819 14857 Face 29711 25111 14858 44866 Face 29712 30103 1829 44014 Face 29713 3901 14859 21252 Face 29714 3901 14625 37293 Face 29715 9999 14860 25591 Face 29716 9999 7980 14860 Face 29717 18136 14861 38315 Face 29718 2551 32096 14861 Face 29719 38310 14862 14023 Face 29720 6313 46814 14862 Face 29721 30583 29911 8168 Face 29722 30713 16879 48212 Face 29723 38734 29833 10484 Face 29724 43785 32159 14864 Face 29725 41201 14865 31453 Face 29726 41201 37129 14865 Face 29727 3076 14866 33981 Face 29728 3076 45667 32129 Face 29729 5346 14867 25830 Face 29730 5346 39378 14867 Face 29731 2625 14868 41386 Face 29732 2625 36013 14868 Face 29733 17361 14869 8111 Face 29734 17361 48471 14869 Face 29735 37600 14870 21247 Face 29736 9833 18253 14870 Face 29737 28452 47629 5272 Face 29738 38232 13901 14871 Face 29739 1349 14872 13020 Face 29740 1349 32105 14872 Face 29741 45267 14873 27400 Face 29742 34518 38979 46551 Face 29743 7013 14874 38314 Face 29744 7013 21809 14874 Face 29745 18959 46815 47750 Face 29746 6386 2747 19966 Face 29747 7221 14876 18470 Face 29748 7221 44719 14876 Face 29749 7221 14877 11721 Face 29750 7221 42672 14877 Face 29751 9961 14878 41741 Face 29752 9961 32869 14878 Face 29753 33310 14879 9805 Face 29754 49368 17648 39388 Face 29755 5263 14880 23138 Face 29756 29293 2686 14880 Face 29757 14882 14881 38846 Face 29758 14882 11886 14881 Face 29759 8716 14882 20240 Face 29760 15958 11886 14882 Face 29761 34855 14883 40418 Face 29762 34855 16981 14883 Face 29763 16403 25015 7661 Face 29764 15370 21714 14884 Face 29765 7559 14885 5339 Face 29766 35923 8195 31455 Face 29767 24572 14886 13401 Face 29768 38921 10965 14886 Face 29769 478 14887 35173 Face 29770 40601 3566 14887 Face 29771 4965 14888 35762 Face 29772 4965 31740 14888 Face 29773 4270 14889 36696 Face 29774 31247 11283 14889 Face 29775 41293 14890 31946 Face 29776 45846 22473 20409 Face 29777 35234 14891 3640 Face 29778 35234 696 14891 Face 29779 17002 44146 797 Face 29780 5646 19696 14892 Face 29781 6828 14893 41546 Face 29782 6828 36076 43531 Face 29783 43510 34258 19380 Face 29784 18160 46679 34523 Face 29785 18161 21692 20725 Face 29786 18161 34258 43510 Face 29787 39587 41676 21684 Face 29788 39587 12617 41676 Face 29789 2803 14897 27226 Face 29790 2803 35635 43637 Face 29791 39871 14898 4588 Face 29792 193 33371 14898 Face 29793 37072 47799 30213 Face 29794 22137 39484 14899 Face 29795 31568 14900 21626 Face 29796 31568 41183 14900 Face 29797 43105 14901 16775 Face 29798 43105 41726 14901 Face 29799 42541 14902 47618 Face 29800 1193 39560 30830 Face 29801 6051 14903 11205 Face 29802 6051 30346 14903 Face 29803 32331 14904 24534 Face 29804 5800 26331 14904 Face 29805 42053 14905 12391 Face 29806 29398 45360 14905 Face 29807 41305 26974 4914 Face 29808 41305 37911 26974 Face 29809 27847 21834 40552 Face 29810 21889 44764 38099 Face 29811 6462 14908 27791 Face 29812 6462 42616 14908 Face 29813 32802 14909 29035 Face 29814 26484 8304 14909 Face 29815 491 47833 28674 Face 29816 17515 14037 47833 Face 29817 10496 14911 25114 Face 29818 10496 13688 14911 Face 29819 36646 14912 638 Face 29820 36646 14913 14912 Face 29821 20961 14913 34424 Face 29822 17823 14912 14913 Face 29823 41398 14914 8873 Face 29824 41398 30188 14914 Face 29825 4815 31124 48815 Face 29826 4815 8987 31124 Face 29827 43828 33415 5546 Face 29828 49466 27596 14916 Face 29829 16040 14918 9740 Face 29830 3858 14116 14917 Face 29831 14917 14918 16040 Face 29832 14917 7941 14918 Face 29833 16981 38683 14883 Face 29834 30448 4600 14919 Face 29835 1819 14920 27254 Face 29836 1819 49495 14920 Face 29837 4323 41665 47968 Face 29838 4323 14296 14921 Face 29839 14923 45780 42647 Face 29840 42882 32746 14922 Face 29841 18522 24935 44393 Face 29842 32430 45780 14923 Face 29843 18541 14924 33833 Face 29844 7394 18769 36633 Face 29845 16666 14925 27826 Face 29846 28010 11639 14925 Face 29847 13989 14926 36261 Face 29848 13989 49823 14926 Face 29849 8624 14927 28258 Face 29850 39826 38094 14927 Face 29851 3911 14928 16140 Face 29852 35020 21133 26792 Face 29853 21493 28057 24757 Face 29854 6879 48175 14929 Face 29855 47880 14930 6848 Face 29856 6879 28057 21493 Face 29857 14932 14931 28944 Face 29858 14932 14930 47880 Face 29859 6879 14932 20397 Face 29860 6879 21493 14932 Face 29861 39147 14933 13024 Face 29862 39147 48064 14933 Face 29863 33176 14934 17125 Face 29864 26309 37818 14934 Face 29865 2582 14935 40630 Face 29866 37414 25406 47473 Face 29867 3934 14936 10118 Face 29868 31302 15750 14936 Face 29869 3431 14937 30276 Face 29870 3431 49285 14937 Face 29871 36290 14938 12964 Face 29872 35715 7387 37380 Face 29873 5303 14939 36899 Face 29874 5303 20437 14939 Face 29875 22480 14940 36120 Face 29876 42563 25433 14940 Face 29877 27600 14941 35122 Face 29878 4111 31152 14941 Face 29879 6 14942 7844 Face 29880 40933 812 14942 Face 29881 10705 14943 47925 Face 29882 10705 33291 14943 Face 29883 46424 41226 23118 Face 29884 41995 25295 14944 Face 29885 4585 14945 33815 Face 29886 34196 42554 14945 Face 29887 31095 25601 49692 Face 29888 16167 33937 14946 Face 29889 6696 14947 21174 Face 29890 15176 32893 14947 Face 29891 13544 14948 44910 Face 29892 13544 17584 14948 Face 29893 35267 20837 25701 Face 29894 35267 29771 20837 Face 29895 27400 28658 45267 Face 29896 36806 6969 20660 Face 29897 27400 14951 28658 Face 29898 17653 6969 36806 Face 29899 4724 14952 31144 Face 29900 4724 28170 14952 Face 29901 30719 14953 23325 Face 29902 30719 34330 14953 Face 29903 4761 14954 19232 Face 29904 4761 48951 14954 Face 29905 27477 14955 39808 Face 29906 27476 14561 43724 Face 29907 10897 14956 10898 Face 29908 10897 36973 14956 Face 29909 14958 26758 33087 Face 29910 14958 15817 26758 Face 29911 22194 14958 33087 Face 29912 3974 10802 28231 Face 29913 43920 32067 48088 Face 29914 43920 21854 38602 Face 29915 5409 14960 39996 Face 29916 5409 26043 14960 Face 29917 38364 28118 9570 Face 29918 16422 45634 14961 Face 29919 3590 44532 16827 Face 29920 25251 44665 14962 Face 29921 30504 14963 36548 Face 29922 17690 47887 39706 Face 29923 30586 14964 37885 Face 29924 30586 18900 14964 Face 29925 26029 14965 40450 Face 29926 26029 45039 14965 Face 29927 4019 26530 7319 Face 29928 28102 20201 14966 Face 29929 22922 38726 17704 Face 29930 22922 27297 14967 Face 29931 14970 14968 39214 Face 29932 2208 5259 42298 Face 29933 2208 14969 30123 Face 29934 2208 33388 14969 Face 29935 14969 14970 30296 Face 29936 14969 33388 14970 Face 29937 2717 14971 12764 Face 29938 22974 47832 14971 Face 29939 23761 14972 9284 Face 29940 41736 12280 32317 Face 29941 36882 14973 1603 Face 29942 6439 29141 46691 Face 29943 36978 20048 24591 Face 29944 5691 36428 14974 Face 29945 48175 14975 14929 Face 29946 12705 165 14975 Face 29947 14872 14976 30239 Face 29948 41546 14893 14976 Face 29949 46808 14977 9711 Face 29950 5220 19531 43610 Face 29951 19948 14978 7667 Face 29952 45173 3007 31855 Face 29953 5642 44998 1551 Face 29954 5642 18843 14979 Face 29955 17451 14980 17639 Face 29956 17451 36039 14980 Face 29957 458 14981 38765 Face 29958 458 12218 14981 Face 29959 36052 14982 15671 Face 29960 36052 23127 14982 Face 29961 29569 14983 40030 Face 29962 29570 39352 14983 Face 29963 642 14984 21826 Face 29964 18341 13826 14984 Face 29965 806 14985 17981 Face 29966 806 33669 14985 Face 29967 20407 46696 47421 Face 29968 8991 31161 46696 Face 29969 30343 36987 3924 Face 29970 30343 44229 14987 Face 29971 519 14989 47871 Face 29972 519 5604 14989 Face 29973 37641 14989 5604 Face 29974 14988 20090 14989 Face 29975 14608 14990 557 Face 29976 14608 1051 14990 Face 29977 8647 14991 39905 Face 29978 34177 4109 14991 Face 29979 35051 42549 19145 Face 29980 477 3157 14992 Face 29981 28680 14993 5671 Face 29982 45710 42549 14993 Face 29983 21589 14994 10274 Face 29984 33838 21927 14994 Face 29985 2325 14995 23441 Face 29986 2325 13437 14995 Face 29987 5431 14996 34060 Face 29988 5431 29703 14996 Face 29989 45604 14997 24951 Face 29990 22146 35767 49029 Face 29991 4480 14998 24464 Face 29992 4480 39495 45554 Face 29993 27304 43403 35162 Face 29994 46869 12899 31835 Face 29995 6278 15000 8478 Face 29996 21336 28681 45849 Face 29997 3512 15001 34639 Face 29998 3512 49548 32132 Face 29999 5299 35423 15616 Face 30000 5299 30935 37681 Face 30001 31127 15003 41788 Face 30002 28670 6882 15003 Face 30003 22053 48703 4944 Face 30004 21505 33566 39701 Face 30005 1463 15005 5329 Face 30006 1463 29602 15005 Face 30007 44238 15006 17539 Face 30008 21563 2584 15007 Face 30009 15006 15007 7065 Face 30010 15006 21563 15007 Face 30011 13128 15008 22158 Face 30012 13128 2716 15008 Face 30013 5603 15009 17031 Face 30014 5603 6616 15009 Face 30015 4438 15010 27601 Face 30016 34298 23301 15010 Face 30017 8764 49032 37540 Face 30018 40836 33289 15011 Face 30019 2061 41679 6827 Face 30020 2061 38985 15012 Face 30021 16935 15013 5494 Face 30022 33831 30657 15013 Face 30023 3337 15014 36623 Face 30024 23190 23006 49153 Face 30025 42180 15015 8603 Face 30026 35107 26857 24786 Face 30027 5034 15016 9413 Face 30028 5034 2124 30245 Face 30029 5034 15017 2124 Face 30030 20098 6097 15017 Face 30031 2210 15018 31374 Face 30032 39226 26992 15018 Face 30033 23955 25819 39208 Face 30034 305 22349 15019 Face 30035 39355 28570 11857 Face 30036 19432 26330 15020 Face 30037 2202 15021 43464 Face 30038 28286 5376 47625 Face 30039 13952 15022 21534 Face 30040 13952 42986 15022 Face 30041 29278 42901 40104 Face 30042 26161 11347 15023 Face 30043 22147 27711 30616 Face 30044 31464 19049 27711 Face 30045 8643 15025 1590 Face 30046 8643 12623 48399 Face 30047 6915 15026 31883 Face 30048 6915 39431 15027 Face 30049 15026 15027 26451 Face 30050 15026 6915 15027 Face 30051 1647 15028 31626 Face 30052 1647 42559 15028 Face 30053 46012 15029 16771 Face 30054 29493 32969 15029 Face 30055 10560 15030 24826 Face 30056 10560 27853 15030 Face 30057 6373 15031 22971 Face 30058 32187 26832 15031 Face 30059 49488 15032 29250 Face 30060 49488 10827 15032 Face 30061 5195 32909 14494 Face 30062 37401 44540 15033 Face 30063 4300 46213 30440 Face 30064 4300 31779 24550 Face 30065 37191 15035 47793 Face 30066 37191 42681 15035 Face 30067 4216 15036 14423 Face 30068 24762 7135 15036 Face 30069 15036 15037 21131 Face 30070 15036 7135 15037 Face 30071 15039 15038 28603 Face 30072 28109 7276 30600 Face 30073 158 15039 21579 Face 30074 158 15038 15039 Face 30075 5798 34991 13224 Face 30076 5798 30221 34991 Face 30077 24657 15041 27644 Face 30078 24657 8602 15041 Face 30079 42909 30802 10491 Face 30080 15043 16330 30802 Face 30081 5516 15043 10847 Face 30082 5516 16330 15043 Face 30083 6381 15044 42802 Face 30084 34915 15597 15044 Face 30085 19241 46157 17477 Face 30086 42049 12144 15045 Face 30087 3473 15046 48881 Face 30088 34679 1493 15046 Face 30089 39480 30003 5725 Face 30090 6366 10445 15047 Face 30091 25109 28977 44817 Face 30092 8089 4167 15048 Face 30093 3873 15049 23311 Face 30094 3873 37503 47004 Face 30095 5470 15050 23658 Face 30096 5470 34343 15050 Face 30097 26242 15051 40979 Face 30098 37825 46103 15051 Face 30099 21851 35348 22387 Face 30100 23904 37763 15052 Face 30101 4581 15053 28973 Face 30102 16551 27477 30847 Face 30103 8565 15054 34190 Face 30104 32624 42141 15054 Face 30105 21676 15055 12190 Face 30106 1963 36336 15055 Face 30107 2155 15056 33730 Face 30108 43505 7116 15056 Face 30109 3750 15057 8672 Face 30110 3750 33147 15057 Face 30111 29576 15058 9010 Face 30112 29576 13652 15058 Face 30113 2212 39657 12469 Face 30114 15060 37972 46178 Face 30115 2212 15060 15059 Face 30116 2212 27687 15060 Face 30117 2899 37945 24927 Face 30118 2899 25850 15061 Face 30119 1581 15062 23239 Face 30120 30291 11643 30515 Face 30121 48013 15063 46509 Face 30122 48013 40778 15063 Face 30123 26753 15064 8382 Face 30124 26753 44437 15064 Face 30125 22085 15065 12930 Face 30126 22085 12165 15065 Face 30127 6041 27145 37104 Face 30128 6041 9506 46464 Face 30129 1963 15067 19448 Face 30130 30599 21861 48699 Face 30131 1858 15068 30535 Face 30132 1858 31449 15068 Face 30133 103 19263 14725 Face 30134 26211 13081 19263 Face 30135 4984 15070 29287 Face 30136 39509 25271 15070 Face 30137 5882 15071 22245 Face 30138 5882 24435 15071 Face 30139 6818 15072 33603 Face 30140 19672 25103 15072 Face 30141 38264 15073 17679 Face 30142 22088 31333 15073 Face 30143 2385 15074 7684 Face 30144 36778 12171 28643 Face 30145 44051 15075 20456 Face 30146 5305 41820 15075 Face 30147 39035 15076 38534 Face 30148 20961 12274 15076 Face 30149 34101 15077 10842 Face 30150 1658 15076 39035 Face 30151 5044 15078 10737 Face 30152 5044 18487 15078 Face 30153 13184 15079 2389 Face 30154 45944 16008 15079 Face 30155 6553 15080 8632 Face 30156 6553 11837 15080 Face 30157 4281 15081 38982 Face 30158 4281 12884 15081 Face 30159 2113 15082 10073 Face 30160 2113 34228 15082 Face 30161 457 15083 21229 Face 30162 31229 34696 15083 Face 30163 38113 15084 3480 Face 30164 33790 49044 15084 Face 30165 22687 25823 20724 Face 30166 22000 45103 34381 Face 30167 3490 15086 27141 Face 30168 3490 25823 15086 Face 30169 9741 15087 27545 Face 30170 9741 43051 15087 Face 30171 2908 15088 12231 Face 30172 2908 44032 15088 Face 30173 8682 15089 2105 Face 30174 40414 26002 15089 Face 30175 146 25059 34654 Face 30176 146 4150 15090 Face 30177 43325 15091 18395 Face 30178 43324 9947 15091 Face 30179 24793 15092 4850 Face 30180 24793 39273 15092 Face 30181 17558 34982 29378 Face 30182 5989 40269 34982 Face 30183 37264 42941 21255 Face 30184 46182 10046 15094 Face 30185 181 15095 17984 Face 30186 34037 12674 15095 Face 30187 4256 15096 37388 Face 30188 4256 46502 40046 Face 30189 29481 15097 48754 Face 30190 29481 7719 15097 Face 30191 28090 15098 9018 Face 30192 28090 20010 15098 Face 30193 10177 35187 31275 Face 30194 10177 14756 35187 Face 30195 27646 15100 33021 Face 30196 27647 25302 15100 Face 30197 46076 40099 11503 Face 30198 5473 29050 15101 Face 30199 21070 34344 1558 Face 30200 21070 44831 34344 Face 30201 26872 37108 42450 Face 30202 8321 43611 15103 Face 30203 39667 15104 24058 Face 30204 43249 22147 15104 Face 30205 36409 15105 5647 Face 30206 36409 27924 15105 Face 30207 15341 44780 23777 Face 30208 2611 33854 44560 Face 30209 10976 15107 49363 Face 30210 10976 27540 15107 Face 30211 18149 15108 2637 Face 30212 46545 28093 15108 Face 30213 6861 15109 42269 Face 30214 6861 19079 15109 Face 30215 1867 15110 12232 Face 30216 34545 15117 39310 Face 30217 7173 48137 8835 Face 30218 7173 43712 15111 Face 30219 1315 15112 40791 Face 30220 1315 27182 15112 Face 30221 26180 15113 22749 Face 30222 1315 18093 15113 Face 30223 29375 15114 17664 Face 30224 44392 22034 15114 Face 30225 44392 15115 22034 Face 30226 2692 42694 23069 Face 30227 4804 15116 39401 Face 30228 24507 24098 15116 Face 30229 46162 36702 9910 Face 30230 28044 39310 15117 Face 30231 2573 47052 40797 Face 30232 28213 22494 15118 Face 30233 2216 15119 8027 Face 30234 2216 40770 15119 Face 30235 31385 15120 11587 Face 30236 29510 15351 15120 Face 30237 17923 27672 12969 Face 30238 25008 20930 15121 Face 30239 3260 15122 44225 Face 30240 3260 21890 15122 Face 30241 7877 15123 4811 Face 30242 32015 7237 44366 Face 30243 35836 15124 46797 Face 30244 33879 19113 15124 Face 30245 21381 49731 14368 Face 30246 35475 6622 15125 Face 30247 718 15126 6997 Face 30248 718 9622 15126 Face 30249 12508 15127 23857 Face 30250 24483 46876 15127 Face 30251 40010 27928 12583 Face 30252 1807 28983 15128 Face 30253 23813 15129 10794 Face 30254 44155 18882 15129 Face 30255 2124 15130 30245 Face 30256 17617 12034 15130 Face 30257 3615 15131 33232 Face 30258 3615 35126 15131 Face 30259 29081 15132 37591 Face 30260 29082 40923 33822 Face 30261 5607 15133 6367 Face 30262 5607 33910 15133 Face 30263 30129 15134 41919 Face 30264 33754 6739 46186 Face 30265 19115 15135 21752 Face 30266 23250 18197 31267 Face 30267 1625 15136 3845 Face 30268 38338 6019 46487 Face 30269 6678 15137 42822 Face 30270 25980 15768 36388 Face 30271 15139 15138 40799 Face 30272 915 37295 15138 Face 30273 915 31985 40270 Face 30274 915 15138 31985 Face 30275 29109 15140 41942 Face 30276 2086 32398 26511 Face 30277 35435 15141 22541 Face 30278 35435 29927 15141 Face 30279 2544 15142 22091 Face 30280 15702 24437 43143 Face 30281 908 25075 45842 Face 30282 37723 20239 43917 Face 30283 25075 21703 45842 Face 30284 15143 25396 15144 Face 30285 1144 15145 40895 Face 30286 1144 18995 15145 Face 30287 8253 43662 32650 Face 30288 16993 23895 43662 Face 30289 5915 49302 7550 Face 30290 43713 7200 15147 Face 30291 7353 15148 23809 Face 30292 7353 43990 15148 Face 30293 3361 30226 27837 Face 30294 41074 38737 30226 Face 30295 6479 15150 33132 Face 30296 24714 39699 37856 Face 30297 46021 15151 11751 Face 30298 18828 37393 39562 Face 30299 10885 15152 29387 Face 30300 10885 40156 15152 Face 30301 7231 15153 35529 Face 30302 20536 1467 36769 Face 30303 1990 29830 40075 Face 30304 1990 41359 15154 Face 30305 45726 36473 12230 Face 30306 8786 37697 15155 Face 30307 5809 15156 12571 Face 30308 5809 4941 15156 Face 30309 273 15157 46707 Face 30310 273 10963 15157 Face 30311 4822 15158 9722 Face 30312 4822 20202 15158 Face 30313 24147 44568 22107 Face 30314 3505 9214 15159 Face 30315 5187 15160 22109 Face 30316 5187 5186 27509 Face 30317 3390 43421 20203 Face 30318 3390 38784 15161 Face 30319 43460 15162 28740 Face 30320 8533 2966 15162 Face 30321 31842 22778 25685 Face 30322 3450 37191 47793 Face 30323 15165 15164 24641 Face 30324 15165 30629 15164 Face 30325 7235 15165 24641 Face 30326 40994 13306 15165 Face 30327 35259 34128 3922 Face 30328 19225 6490 48841 Face 30329 35286 48347 12475 Face 30330 36862 10917 15167 Face 30331 36933 20718 48097 Face 30332 768 14261 15168 Face 30333 261 15169 40517 Face 30334 30487 4995 15169 Face 30335 10848 15170 17400 Face 30336 10848 42939 15170 Face 30337 8420 15171 22851 Face 30338 8420 34833 15171 Face 30339 40637 15172 17358 Face 30340 40637 42184 15172 Face 30341 12476 15173 49183 Face 30342 12476 4425 15173 Face 30343 2765 42960 9641 Face 30344 2765 34445 42960 Face 30345 31533 15175 8024 Face 30346 236 34288 15175 Face 30347 6696 15176 14947 Face 30348 6696 1014 15176 Face 30349 2178 15177 23787 Face 30350 2178 42701 15177 Face 30351 44446 15178 38559 Face 30352 6071 29626 15178 Face 30353 13647 15179 10954 Face 30354 13647 11222 15179 Face 30355 15181 15180 13971 Face 30356 15181 26381 15180 Face 30357 741 15181 13971 Face 30358 741 6904 15181 Face 30359 9121 15182 9587 Face 30360 9121 27385 15182 Face 30361 4526 15183 41282 Face 30362 4526 36207 15183 Face 30363 4632 36690 14380 Face 30364 16617 42993 15184 Face 30365 36642 15185 18871 Face 30366 15186 45505 28943 Face 30367 3065 15186 28943 Face 30368 3065 8003 15186 Face 30369 6346 15187 33221 Face 30370 36029 4226 15187 Face 30371 2039 15188 9249 Face 30372 21739 13030 15188 Face 30373 10875 15189 697 Face 30374 10875 40701 15189 Face 30375 2723 15190 9779 Face 30376 2723 5504 15190 Face 30377 7597 15191 23881 Face 30378 7597 38671 45688 Face 30379 32250 15192 29540 Face 30380 6763 22232 44068 Face 30381 5114 15193 40032 Face 30382 5114 6494 31097 Face 30383 29315 44471 40121 Face 30384 29316 11637 15194 Face 30385 775 15195 22107 Face 30386 24382 15380 35247 Face 30387 4481 29642 37892 Face 30388 4481 29711 15196 Face 30389 1685 15197 48651 Face 30390 1685 42131 15197 Face 30391 4790 44810 33793 Face 30392 4790 41870 44810 Face 30393 3874 15199 15454 Face 30394 22678 17594 40756 Face 30395 4938 25615 25683 Face 30396 40330 24068 15200 Face 30397 39147 28167 8160 Face 30398 19650 27612 15201 Face 30399 2508 15202 13817 Face 30400 45852 13402 15202 Face 30401 6209 15203 27364 Face 30402 18219 3278 47594 Face 30403 10560 15204 27853 Face 30404 10560 17556 15204 Face 30405 45851 15205 28251 Face 30406 45851 21739 15205 Face 30407 8803 46400 21237 Face 30408 8803 11508 46400 Face 30409 284 26773 35795 Face 30410 284 16094 15207 Face 30411 205 15208 4389 Face 30412 205 44791 15208 Face 30413 47675 38195 3465 Face 30414 7281 23992 38195 Face 30415 9483 41509 46375 Face 30416 38936 37969 35889 Face 30417 42411 30543 36683 Face 30418 49152 37555 15211 Face 30419 30543 15212 16830 Face 30420 15211 37555 46375 Face 30421 10738 37190 21309 Face 30422 10738 39243 15213 Face 30423 6782 15214 6783 Face 30424 6782 34893 15214 Face 30425 37045 15215 27485 Face 30426 9480 42756 15215 Face 30427 16601 15216 4770 Face 30428 16601 47698 15216 Face 30429 28204 15217 27349 Face 30430 28204 42834 15217 Face 30431 451 41945 24376 Face 30432 451 22825 46694 Face 30433 45264 15219 46779 Face 30434 17145 19204 15219 Face 30435 1337 45559 26302 Face 30436 1337 7258 45559 Face 30437 25639 26044 25950 Face 30438 41849 9706 44680 Face 30439 10267 15222 22552 Face 30440 10267 45908 15222 Face 30441 1321 15223 13255 Face 30442 39010 20413 44491 Face 30443 38494 15224 10155 Face 30444 38493 18673 28757 Face 30445 3960 48856 9427 Face 30446 3960 26602 15225 Face 30447 45407 15226 23049 Face 30448 9815 17485 15226 Face 30449 28072 35142 12202 Face 30450 333 26946 35142 Face 30451 31262 15228 34027 Face 30452 18719 46197 27957 Face 30453 3573 15229 48993 Face 30454 3573 38665 15229 Face 30455 6569 15230 9354 Face 30456 45942 19459 15230 Face 30457 30289 15231 14680 Face 30458 12945 36048 42657 Face 30459 35743 15232 42410 Face 30460 3207 11219 35622 Face 30461 15234 25672 42747 Face 30462 45190 34797 15233 Face 30463 17202 22192 42714 Face 30464 610 49662 15234 Face 30465 610 30067 16276 Face 30466 25765 45076 15235 Face 30467 7702 15236 27321 Face 30468 7702 33329 15236 Face 30469 15236 15237 27321 Face 30470 19726 11494 38259 Face 30471 2412 15238 12587 Face 30472 2412 29884 15238 Face 30473 32739 15239 44648 Face 30474 49999 33558 15239 Face 30475 48052 49999 15239 Face 30476 15241 35124 15240 Face 30477 16964 15241 15240 Face 30478 40425 21514 15241 Face 30479 11656 15242 20886 Face 30480 11656 8313 15242 Face 30481 43929 27527 6688 Face 30482 4465 27091 15243 Face 30483 258 15244 23394 Face 30484 258 44690 15244 Face 30485 41285 15245 15297 Face 30486 5323 1882 15245 Face 30487 5323 15246 7086 Face 30488 5323 15245 41285 Face 30489 3086 15247 31324 Face 30490 30327 9733 15247 Face 30491 28957 15248 5108 Face 30492 28957 14213 15248 Face 30493 43435 15249 18938 Face 30494 2090 6903 15249 Face 30495 2090 34368 21981 Face 30496 2090 15249 43435 Face 30497 20948 15251 38420 Face 30498 1876 8573 35500 Face 30499 1641 15252 41297 Face 30500 1641 6361 15252 Face 30501 250 15253 5335 Face 30502 25623 18502 15253 Face 30503 41 15254 43841 Face 30504 41 41776 15254 Face 30505 5858 25799 1065 Face 30506 5858 24467 15255 Face 30507 11747 15256 7674 Face 30508 11747 18036 15256 Face 30509 41328 15257 3446 Face 30510 2320 13061 33722 Face 30511 8847 15258 43078 Face 30512 8847 21835 15258 Face 30513 14187 15259 23231 Face 30514 14187 44686 15259 Face 30515 6949 15260 2422 Face 30516 6949 43591 15260 Face 30517 4677 15261 10796 Face 30518 4677 49336 39164 Face 30519 42414 43564 48565 Face 30520 26560 14082 42913 Face 30521 1448 15263 34054 Face 30522 1448 18860 15263 Face 30523 15265 48860 22041 Face 30524 7271 43852 15264 Face 30525 41576 15265 35498 Face 30526 7271 48860 15265 Face 30527 2162 15266 47692 Face 30528 2162 31577 15266 Face 30529 9205 15267 24055 Face 30530 9205 4599 15267 Face 30531 20011 15268 20893 Face 30532 786 27648 15268 Face 30533 33751 15269 31381 Face 30534 33752 3328 15269 Face 30535 22629 15270 13423 Face 30536 3125 13547 15270 Face 30537 34106 15271 2247 Face 30538 34106 29627 15271 Face 30539 19792 22491 25412 Face 30540 40355 36614 15272 Face 30541 3351 15273 28140 Face 30542 41633 27591 34103 Face 30543 4197 15274 38566 Face 30544 4197 29780 15274 Face 30545 40239 15275 45749 Face 30546 2294 41897 33575 Face 30547 15275 15276 11927 Face 30548 33575 24026 15276 Face 30549 1261 15277 29942 Face 30550 1261 32392 15277 Face 30551 47463 15278 28186 Face 30552 40437 18937 15278 Face 30553 694 15279 26098 Face 30554 694 2641 40450 Face 30555 5903 49329 20848 Face 30556 5903 31596 40194 Face 30557 5903 15281 5904 Face 30558 5903 12351 15281 Face 30559 40899 15282 7936 Face 30560 40899 46385 15282 Face 30561 47820 15283 2079 Face 30562 47820 39577 15283 Face 30563 9243 15284 18177 Face 30564 15285 21998 15284 Face 30565 9243 15285 15284 Face 30566 9243 17799 15285 Face 30567 5663 15286 27245 Face 30568 5663 20692 15286 Face 30569 20135 15287 48893 Face 30570 33285 13878 38440 Face 30571 3816 15288 10259 Face 30572 3816 42001 15288 Face 30573 9190 15289 32689 Face 30574 9190 31201 15289 Face 30575 1718 15290 30071 Face 30576 1718 20471 49346 Face 30577 36924 15291 33015 Face 30578 27266 14216 45704 Face 30579 9954 15292 22587 Face 30580 9954 33828 15292 Face 30581 37333 15293 39909 Face 30582 2335 33520 39434 Face 30583 17818 15294 12246 Face 30584 17818 5517 15294 Face 30585 7380 34647 32598 Face 30586 7380 11455 15295 Face 30587 44898 37614 20371 Face 30588 15297 4609 37614 Face 30589 44899 15297 37614 Face 30590 534 41285 15297 Face 30591 8819 26738 24783 Face 30592 8819 5901 15298 Face 30593 31102 35785 11001 Face 30594 7181 35390 15299 Face 30595 1036 15300 12813 Face 30596 1036 13043 15300 Face 30597 14703 15301 30412 Face 30598 14703 5109 15301 Face 30599 2844 15302 13740 Face 30600 2844 29078 15302 Face 30601 5100 15303 11725 Face 30602 42662 15685 15303 Face 30603 42662 15304 24474 Face 30604 5100 45582 15304 Face 30605 2418 15305 10246 Face 30606 2418 4168 15305 Face 30607 7084 29684 5784 Face 30608 7084 24620 15306 Face 30609 7325 15307 5984 Face 30610 38572 7326 15307 Face 30611 15895 15308 10799 Face 30612 8833 15695 40386 Face 30613 3625 15309 24998 Face 30614 40385 43923 15309 Face 30615 3896 15310 42288 Face 30616 19641 30129 15310 Face 30617 30833 15311 4495 Face 30618 47940 33456 15311 Face 30619 10631 15312 28659 Face 30620 10631 31377 15312 Face 30621 39954 15313 33340 Face 30622 8673 19917 15313 Face 30623 4960 39017 26713 Face 30624 4960 23034 15314 Face 30625 7693 15315 12108 Face 30626 7693 3178 15315 Face 30627 21134 15316 13811 Face 30628 2744 21401 15316 Face 30629 30097 15317 10365 Face 30630 26870 12696 15317 Face 30631 16625 15318 26630 Face 30632 16625 15983 15318 Face 30633 1694 15319 28135 Face 30634 1694 18973 15319 Face 30635 15321 41991 23783 Face 30636 701 24842 41990 Face 30637 701 15321 2660 Face 30638 701 41990 15321 Face 30639 44240 45755 33880 Face 30640 6140 16215 45755 Face 30641 24399 15323 18716 Face 30642 16464 45248 15323 Face 30643 1839 15324 30578 Face 30644 15991 38885 15324 Face 30645 27008 15325 12971 Face 30646 590 23222 15325 Face 30647 11347 15326 4419 Face 30648 11347 30691 15326 Face 30649 19465 15327 32378 Face 30650 19465 11823 15327 Face 30651 49264 15328 26292 Face 30652 25100 8934 15328 Face 30653 34508 15329 10766 Face 30654 3314 37249 30294 Face 30655 33158 38700 4485 Face 30656 19525 41130 15330 Face 30657 7279 15331 27818 Face 30658 37871 2685 15331 Face 30659 32666 23568 41576 Face 30660 36057 26624 15332 Face 30661 1754 15333 40446 Face 30662 1754 34166 44647 Face 30663 22569 15334 31348 Face 30664 22569 46672 15334 Face 30665 5064 15335 8417 Face 30666 18743 31874 15335 Face 30667 10327 15336 33017 Face 30668 10327 11946 15336 Face 30669 1761 15337 41204 Face 30670 1761 39293 48329 Face 30671 3675 15338 49555 Face 30672 3675 40006 15338 Face 30673 4060 15339 13529 Face 30674 4060 8426 15339 Face 30675 22704 44986 38528 Face 30676 1010 9745 44986 Face 30677 2611 15341 26903 Face 30678 2611 44560 15341 Face 30679 2349 15342 8966 Face 30680 2349 12117 15342 Face 30681 47377 15343 34456 Face 30682 45107 13749 15343 Face 30683 6512 15344 29598 Face 30684 6512 14392 15344 Face 30685 244 28621 6776 Face 30686 37959 21085 15345 Face 30687 4238 15346 48666 Face 30688 4238 32517 15346 Face 30689 7799 15347 32446 Face 30690 7799 27383 15347 Face 30691 49343 15348 46212 Face 30692 49343 38624 15348 Face 30693 1998 49686 3546 Face 30694 1998 22836 15349 Face 30695 4905 15350 30064 Face 30696 26583 1825 15350 Face 30697 25143 15351 45678 Face 30698 10000 29052 48672 Face 30699 46867 15352 32946 Face 30700 46867 26514 15352 Face 30701 48749 15353 13584 Face 30702 189 30377 15353 Face 30703 30871 33723 47041 Face 30704 189 15353 48749 Face 30705 2149 34414 7988 Face 30706 24392 7985 15355 Face 30707 18762 15356 8354 Face 30708 25914 26240 43563 Face 30709 15358 15357 14199 Face 30710 48291 20536 15357 Face 30711 1467 39495 4480 Face 30712 48291 15357 15358 Face 30713 693 15359 32850 Face 30714 35744 49041 15359 Face 30715 46995 15360 7076 Face 30716 46995 23950 15360 Face 30717 1260 15361 13907 Face 30718 1260 12183 15361 Face 30719 6129 15362 38530 Face 30720 6129 45585 41554 Face 30721 10555 15363 43691 Face 30722 41593 27557 15363 Face 30723 9950 15364 23631 Face 30724 9950 23422 15364 Face 30725 10452 15365 13603 Face 30726 10452 18444 15365 Face 30727 15460 15366 32506 Face 30728 15367 27481 32759 Face 30729 15461 15367 32759 Face 30730 15461 30201 15367 Face 30731 9426 15368 2473 Face 30732 9426 47290 15368 Face 30733 15370 15369 10461 Face 30734 17474 36079 28240 Face 30735 411 15370 14884 Face 30736 411 28240 15370 Face 30737 33201 26364 10792 Face 30738 33202 31443 15371 Face 30739 24218 15372 3978 Face 30740 24218 22353 39255 Face 30741 43021 15373 39410 Face 30742 8483 45116 15373 Face 30743 18309 15374 35850 Face 30744 1478 31163 15374 Face 30745 10474 15375 45241 Face 30746 10474 48861 15375 Face 30747 21609 40045 7513 Face 30748 37100 25669 15376 Face 30749 33408 15377 28975 Face 30750 33408 46863 15377 Face 30751 20505 15378 22321 Face 30752 11394 32862 15378 Face 30753 5713 15379 34038 Face 30754 5713 9757 15379 Face 30755 45155 34824 24382 Face 30756 45155 6330 34824 Face 30757 1350 15381 14552 Face 30758 1350 48282 15381 Face 30759 31769 15382 36407 Face 30760 35134 45347 15382 Face 30761 4157 44426 13279 Face 30762 37834 9869 15383 Face 30763 48547 15384 35395 Face 30764 46184 27899 40459 Face 30765 7739 36234 16057 Face 30766 20594 28727 15385 Face 30767 16172 15386 41526 Face 30768 43971 8515 15386 Face 30769 31667 15387 24300 Face 30770 31667 22936 15387 Face 30771 5519 15388 18618 Face 30772 5519 42601 15388 Face 30773 256 15389 34583 Face 30774 256 35822 15389 Face 30775 22734 15390 13439 Face 30776 8289 38096 15390 Face 30777 1458 15391 39891 Face 30778 16548 25220 15391 Face 30779 4577 15392 25884 Face 30780 4577 41797 15392 Face 30781 5476 15393 12782 Face 30782 5476 38362 15393 Face 30783 32621 15394 10537 Face 30784 32621 25 15394 Face 30785 37140 15395 1275 Face 30786 38432 43389 15395 Face 30787 5693 43170 17313 Face 30788 5693 33810 48325 Face 30789 7338 18458 17499 Face 30790 7338 1094 15397 Face 30791 39235 15398 11851 Face 30792 39235 3141 15398 Face 30793 729 22374 7956 Face 30794 29661 6561 22374 Face 30795 39717 15400 9558 Face 30796 5460 32329 15400 Face 30797 40660 31103 14181 Face 30798 2458 36036 15401 Face 30799 20456 29804 44051 Face 30800 20455 38571 15402 Face 30801 33866 15403 6030 Face 30802 33866 23755 15403 Face 30803 30462 46993 43800 Face 30804 30462 3365 15404 Face 30805 8658 15405 2676 Face 30806 8658 15637 15405 Face 30807 7071 18991 35229 Face 30808 7071 36000 15406 Face 30809 36943 15407 48420 Face 30810 36943 7201 15407 Face 30811 6175 45903 31617 Face 30812 6175 24034 45903 Face 30813 3617 45139 28800 Face 30814 18322 33066 45139 Face 30815 42607 15410 6229 Face 30816 4025 1902 15410 Face 30817 897 15411 8505 Face 30818 18596 24832 48934 Face 30819 865 15412 34607 Face 30820 38538 26564 36027 Face 30821 2661 15413 49468 Face 30822 46126 33887 22733 Face 30823 31184 45489 36069 Face 30824 2339 2783 45489 Face 30825 8700 31962 23127 Face 30826 47200 28488 37034 Face 30827 26995 15416 49958 Face 30828 26995 24288 15416 Face 30829 17828 15417 25185 Face 30830 17828 33745 15417 Face 30831 34448 15418 12667 Face 30832 31188 7623 15418 Face 30833 786 24789 15193 Face 30834 19861 10296 15419 Face 30835 1106 15420 11739 Face 30836 19121 7917 33839 Face 30837 1539 15421 8642 Face 30838 1539 34126 25275 Face 30839 47998 15422 31921 Face 30840 42422 8904 15422 Face 30841 58 15423 11268 Face 30842 58 10265 15423 Face 30843 34238 15424 36172 Face 30844 6389 15335 15424 Face 30845 21452 15425 14373 Face 30846 13511 10767 15425 Face 30847 16919 37180 6489 Face 30848 24398 2028 15426 Face 30849 19720 15427 47435 Face 30850 886 45476 15427 Face 30851 9424 15428 6225 Face 30852 39046 13781 15428 Face 30853 43679 15429 27119 Face 30854 1348 31472 49878 Face 30855 1270 15430 39678 Face 30856 1270 42658 15430 Face 30857 5025 46538 21283 Face 30858 5025 12798 46538 Face 30859 25010 15432 28995 Face 30860 25010 40715 15432 Face 30861 8646 15433 24847 Face 30862 8646 18792 15433 Face 30863 47334 29981 12259 Face 30864 11856 22644 15434 Face 30865 40128 15435 1467 Face 30866 29567 12595 34850 Face 30867 36889 15436 3762 Face 30868 47548 11958 31709 Face 30869 22305 41208 32635 Face 30870 4681 33661 15437 Face 30871 779 15438 10753 Face 30872 28672 36894 33850 Face 30873 1027 15439 26679 Face 30874 1027 6710 47930 Face 30875 11125 24944 36343 Face 30876 11125 48493 24944 Face 30877 20289 15441 33729 Face 30878 20289 43213 15441 Face 30879 15443 15442 8216 Face 30880 15443 15441 43213 Face 30881 4572 15443 41829 Face 30882 27872 15441 15443 Face 30883 1104 15444 17719 Face 30884 27006 14379 44853 Face 30885 37370 15445 42374 Face 30886 9429 28610 25668 Face 30887 1440 15446 35253 Face 30888 31167 41045 32356 Face 30889 41104 15447 129 Face 30890 4055 26807 15447 Face 30891 2226 15448 22858 Face 30892 44754 31255 45928 Face 30893 2226 15449 15448 Face 30894 2226 10795 15449 Face 30895 26070 31999 7805 Face 30896 26070 16474 15450 Face 30897 28998 44295 40 Face 30898 49133 3695 43472 Face 30899 8936 15452 17177 Face 30900 8936 1330 25464 Face 30901 1331 15453 36559 Face 30902 1331 9310 15453 Face 30903 35191 15454 15199 Face 30904 2730 17636 15454 Face 30905 674 28567 22723 Face 30906 49137 35828 31111 Face 30907 10010 49235 27594 Face 30908 10010 31392 49235 Face 30909 27172 37331 10093 Face 30910 15458 23379 15457 Face 30911 6476 27172 29787 Face 30912 6476 49693 15458 Face 30913 5149 15459 1239 Face 30914 29792 39045 15459 Face 30915 420 15460 9800 Face 30916 15461 15366 15460 Face 30917 420 15461 15460 Face 30918 420 35853 15461 Face 30919 90 15462 38798 Face 30920 90 43142 15462 Face 30921 9967 15463 9968 Face 30922 9967 43988 15463 Face 30923 12918 15464 34010 Face 30924 45364 14797 15464 Face 30925 31591 15465 21166 Face 30926 31591 6785 15465 Face 30927 49830 15466 9410 Face 30928 9409 32863 15466 Face 30929 4635 15467 30084 Face 30930 18002 27108 15467 Face 30931 5111 15468 11629 Face 30932 5111 11405 15468 Face 30933 20415 15469 49832 Face 30934 20415 15802 15469 Face 30935 26148 15470 21535 Face 30936 20220 29966 36366 Face 30937 370 15471 10917 Face 30938 34359 2528 32455 Face 30939 17279 41595 3333 Face 30940 10228 34395 41595 Face 30941 4943 15473 44152 Face 30942 4943 32736 15473 Face 30943 3855 41570 9078 Face 30944 3855 25728 41570 Face 30945 43734 15475 23835 Face 30946 5383 13942 15475 Face 30947 1901 15476 30634 Face 30948 35129 26499 15476 Face 30949 9018 15477 49126 Face 30950 9018 348 15477 Face 30951 1306 15478 37817 Face 30952 1306 38167 49476 Face 30953 545 15479 37756 Face 30954 545 40503 15479 Face 30955 42142 15480 7548 Face 30956 1556 14515 15480 Face 30957 1945 34014 14147 Face 30958 25347 40697 15481 Face 30959 46570 15482 42028 Face 30960 46570 49240 15482 Face 30961 4299 35894 11886 Face 30962 4299 46213 35894 Face 30963 36418 15484 5594 Face 30964 5595 40174 15484 Face 30965 22738 15485 48612 Face 30966 16516 46149 39983 Face 30967 20625 15486 28827 Face 30968 2319 26200 15486 Face 30969 10699 15487 34286 Face 30970 10699 20127 15487 Face 30971 3482 39477 28754 Face 30972 38727 12254 39477 Face 30973 451 15489 22825 Face 30974 30407 45781 15489 Face 30975 32133 15490 45698 Face 30976 21946 42690 38212 Face 30977 19110 15491 48430 Face 30978 19110 16535 15491 Face 30979 7002 48755 49640 Face 30980 7002 1709 15492 Face 30981 8208 15493 39563 Face 30982 21256 43664 15493 Face 30983 831 15494 36155 Face 30984 18923 29608 26217 Face 30985 389 15495 3058 Face 30986 389 37366 15495 Face 30987 352 15496 39591 Face 30988 352 34776 15496 Face 30989 32640 15497 936 Face 30990 37503 3873 24583 Face 30991 35407 15498 39427 Face 30992 35407 13633 15498 Face 30993 49582 31039 19802 Face 30994 1653 38326 15499 Face 30995 8030 15500 27088 Face 30996 28613 41167 15500 Face 30997 3077 15501 6901 Face 30998 3077 16100 15501 Face 30999 44520 28229 37424 Face 31000 6113 18290 15502 Face 31001 2080 15503 21031 Face 31002 31847 41871 15503 Face 31003 13472 15504 30543 Face 31004 13472 42931 15504 Face 31005 2062 15505 38641 Face 31006 2062 2063 15505 Face 31007 2062 15506 25381 Face 31008 2062 38641 34315 Face 31009 2062 15507 2063 Face 31010 2062 38081 15507 Face 31011 33379 38505 10069 Face 31012 816 45937 15508 Face 31013 15784 15509 18473 Face 31014 6731 40270 39138 Face 31015 8796 15510 44974 Face 31016 8796 45830 15510 Face 31017 3797 30373 9258 Face 31018 17322 5618 15511 Face 31019 17328 15512 33798 Face 31020 32543 38903 15512 Face 31021 26907 15513 46577 Face 31022 10288 3650 41070 Face 31023 4747 30063 12194 Face 31024 4747 26879 15514 Face 31025 33780 15515 9482 Face 31026 25281 17927 15515 Face 31027 5049 15516 24335 Face 31028 25280 18343 44486 Face 31029 652 15517 21416 Face 31030 652 32225 48561 Face 31031 25200 15518 5161 Face 31032 34785 12502 27101 Face 31033 46284 15519 17077 Face 31034 30721 11892 15519 Face 31035 17255 15520 14553 Face 31036 6897 34429 15520 Face 31037 5030 15521 18104 Face 31038 5030 36816 15521 Face 31039 22828 31042 21087 Face 31040 25353 38687 15522 Face 31041 6551 15523 36158 Face 31042 31106 10390 15523 Face 31043 38783 15524 34823 Face 31044 39900 43604 15524 Face 31045 29135 22949 36104 Face 31046 1888 40624 15525 Face 31047 30217 31301 44957 Face 31048 23962 49216 15526 Face 31049 38341 26091 8211 Face 31050 4741 9823 15527 Face 31051 1689 15528 12025 Face 31052 17294 41350 26563 Face 31053 8322 15529 42450 Face 31054 8322 39047 15529 Face 31055 13111 43784 34261 Face 31056 43578 10600 15530 Face 31057 23102 15531 17444 Face 31058 1083 6417 30758 Face 31059 2937 15532 25986 Face 31060 2937 10222 41368 Face 31061 1199 48455 28335 Face 31062 1199 19325 48455 Face 31063 35289 15534 31715 Face 31064 4231 28365 15534 Face 31065 6173 44000 24905 Face 31066 6173 32724 15535 Face 31067 6173 15536 3886 Face 31068 6173 24905 15536 Face 31069 31180 15537 45387 Face 31070 31180 20278 15537 Face 31071 38860 15538 10364 Face 31072 2303 20183 42968 Face 31073 41269 24787 14128 Face 31074 4767 11108 15539 Face 31075 4992 15540 546 Face 31076 4992 11570 15540 Face 31077 368 15541 13710 Face 31078 368 10649 15541 Face 31079 10062 15542 31365 Face 31080 22745 25502 21538 Face 31081 1760 15543 48329 Face 31082 1760 10998 15543 Face 31083 3538 41244 41335 Face 31084 3538 30116 41245 Face 31085 26467 36956 15673 Face 31086 2527 3781 15545 Face 31087 476 15546 23562 Face 31088 45372 8881 15546 Face 31089 42759 15547 6320 Face 31090 1454 16505 15547 Face 31091 28095 15548 40382 Face 31092 28095 26505 27536 Face 31093 6465 15549 19493 Face 31094 6465 3735 15549 Face 31095 7988 15550 39639 Face 31096 37441 49180 15550 Face 31097 21093 15551 33239 Face 31098 1024 33843 15551 Face 31099 6161 15552 8234 Face 31100 6161 34487 15552 Face 31101 4914 15553 19875 Face 31102 4914 26974 15553 Face 31103 10209 15554 42088 Face 31104 10209 8398 15554 Face 31105 46513 37547 29926 Face 31106 1093 22163 15555 Face 31107 5598 15556 42784 Face 31108 5598 34189 15556 Face 31109 5844 15557 10935 Face 31110 15558 507 15557 Face 31111 5844 15558 15557 Face 31112 5844 19261 15558 Face 31113 6433 46432 23832 Face 31114 6433 28020 15559 Face 31115 35992 15560 20706 Face 31116 1636 14652 15560 Face 31117 41026 15561 21173 Face 31118 29358 21641 49486 Face 31119 37396 15562 27262 Face 31120 7041 12241 15562 Face 31121 15564 15563 37987 Face 31122 37733 44097 15563 Face 31123 3260 15564 37987 Face 31124 3260 21443 15564 Face 31125 3810 38811 43496 Face 31126 3810 48978 15565 Face 31127 4832 15566 21931 Face 31128 19220 25447 15566 Face 31129 2754 47305 9530 Face 31130 36297 18115 15567 Face 31131 24421 15568 41828 Face 31132 36938 28777 15568 Face 31133 4642 41073 20843 Face 31134 30112 45123 15569 Face 31135 5223 31343 44672 Face 31136 5223 14353 31343 Face 31137 44139 15571 30885 Face 31138 30290 37506 15571 Face 31139 25598 48289 33186 Face 31140 26358 31718 15572 Face 31141 44342 15573 15572 Face 31142 943 19079 15573 Face 31143 33881 15574 23236 Face 31144 33882 8130 39692 Face 31145 33360 27925 48691 Face 31146 26238 24655 15575 Face 31147 9718 15576 44247 Face 31148 9718 8310 15576 Face 31149 10987 15577 42732 Face 31150 10987 22465 15577 Face 31151 33402 15578 40588 Face 31152 43963 22324 15578 Face 31153 6969 15579 42574 Face 31154 6969 41433 15579 Face 31155 7466 15580 37869 Face 31156 34798 9496 26814 Face 31157 21843 15581 24282 Face 31158 1053 41977 15581 Face 31159 9846 15582 32676 Face 31160 9846 15813 15582 Face 31161 5599 15583 9225 Face 31162 5599 40934 15583 Face 31163 447 49160 36743 Face 31164 447 13921 15584 Face 31165 21679 15585 24404 Face 31166 40494 5206 30308 Face 31167 22346 15586 28300 Face 31168 17326 19226 31208 Face 31169 15589 15587 47913 Face 31170 46009 41868 37632 Face 31171 35860 15588 41372 Face 31172 15589 47913 15588 Face 31173 35860 15589 15588 Face 31174 46009 15587 15589 Face 31175 9294 30436 21552 Face 31176 9294 20269 15590 Face 31177 19113 16530 15124 Face 31178 5934 36298 16530 Face 31179 49668 15592 20279 Face 31180 1250 21600 15592 Face 31181 35358 15593 12093 Face 31182 35359 19233 15593 Face 31183 24159 15594 47449 Face 31184 15595 14175 15594 Face 31185 5105 15595 15594 Face 31186 5105 30777 15595 Face 31187 4390 15596 12385 Face 31188 26897 21391 15596 Face 31189 4574 15597 11201 Face 31190 4574 13102 23096 Face 31191 39288 15598 23719 Face 31192 26232 38411 15598 Face 31193 4877 15599 22504 Face 31194 4877 15598 39288 Face 31195 4357 15600 14342 Face 31196 4357 36843 15600 Face 31197 35898 15601 21983 Face 31198 35898 4902 15601 Face 31199 32926 15602 10034 Face 31200 2369 34828 15602 Face 31201 30730 15603 43831 Face 31202 47333 15563 44097 Face 31203 48396 33613 42987 Face 31204 18435 9864 33613 Face 31205 4233 15605 6132 Face 31206 4233 8127 34568 Face 31207 6398 15606 35954 Face 31208 6398 44321 15606 Face 31209 15676 15607 33597 Face 31210 23876 29318 38189 Face 31211 6006 49422 36123 Face 31212 6006 32306 15608 Face 31213 23270 29864 16577 Face 31214 42830 49528 15609 Face 31215 24792 35441 8635 Face 31216 29435 22636 15610 Face 31217 9230 15611 44969 Face 31218 9230 5055 15611 Face 31219 43268 15612 13126 Face 31220 40936 40935 15612 Face 31221 4717 15613 20872 Face 31222 29436 5553 34715 Face 31223 4717 29436 15613 Face 31224 4717 35106 15614 Face 31225 7524 15615 21619 Face 31226 31740 22798 15615 Face 31227 11271 15616 45004 Face 31228 11271 5299 15616 Face 31229 39488 15617 13652 Face 31230 39488 1814 15617 Face 31231 2106 15618 9717 Face 31232 2106 37596 15618 Face 31233 5123 15619 41787 Face 31234 5123 26082 15619 Face 31235 6833 15620 38933 Face 31236 6833 20766 15620 Face 31237 4994 39703 26835 Face 31238 4994 19694 39703 Face 31239 44910 15622 13544 Face 31240 31658 20518 15622 Face 31241 48153 42316 33809 Face 31242 1164 27683 42316 Face 31243 35114 15624 39276 Face 31244 21176 12895 15624 Face 31245 8169 39290 33538 Face 31246 8169 13387 39290 Face 31247 5075 15626 23241 Face 31248 36421 45438 15626 Face 31249 32527 38825 19038 Face 31250 527 12109 15627 Face 31251 40516 42428 2200 Face 31252 8142 37947 15628 Face 31253 8142 31720 1235 Face 31254 8142 15628 40516 Face 31255 49052 15630 11101 Face 31256 2018 41989 15630 Face 31257 3576 15631 5941 Face 31258 16813 31361 15631 Face 31259 34920 28511 8728 Face 31260 17530 49264 28511 Face 31261 31891 15633 27857 Face 31262 31891 11044 15633 Face 31263 18513 15634 41072 Face 31264 23712 26885 15634 Face 31265 5373 29989 36731 Face 31266 21330 47787 15635 Face 31267 26812 40535 17490 Face 31268 40591 34613 15636 Face 31269 2680 15637 9148 Face 31270 30834 2679 15995 Face 31271 2285 44891 10674 Face 31272 48549 29823 49107 Face 31273 8891 42034 28651 Face 31274 8891 35791 42034 Face 31275 46261 15640 30210 Face 31276 8370 44722 38451 Face 31277 11641 15641 12558 Face 31278 11641 36918 15641 Face 31279 18894 15642 19976 Face 31280 46336 37200 15642 Face 31281 525 15643 3048 Face 31282 525 49130 31007 Face 31283 20118 45925 21057 Face 31284 3673 21240 45925 Face 31285 6083 15645 49345 Face 31286 29509 6886 15645 Face 31287 23348 15646 13198 Face 31288 19558 40733 20089 Face 31289 1273 19558 15646 Face 31290 1273 29471 15647 Face 31291 21627 15648 7566 Face 31292 23141 25536 15648 Face 31293 7188 36814 28383 Face 31294 7188 153 15649 Face 31295 9567 15650 17353 Face 31296 9567 23121 47176 Face 31297 3105 15651 47705 Face 31298 3105 19780 44558 Face 31299 6062 45330 49923 Face 31300 6062 30979 17764 Face 31301 35059 15653 42876 Face 31302 35059 28513 15653 Face 31303 6482 15654 27040 Face 31304 6482 14034 15654 Face 31305 35128 23524 9002 Face 31306 20313 49845 15655 Face 31307 990 15656 23064 Face 31308 990 31525 15656 Face 31309 18807 47894 12496 Face 31310 37783 46882 15657 Face 31311 4913 15658 34554 Face 31312 4913 13965 39656 Face 31313 36025 37773 10362 Face 31314 28985 19892 15659 Face 31315 7558 15660 13420 Face 31316 41674 10688 45061 Face 31317 34328 15661 28489 Face 31318 605 22184 15661 Face 31319 15663 15662 30257 Face 31320 1411 35314 23800 Face 31321 47819 15663 36775 Face 31322 47819 23800 15663 Face 31323 15663 22981 25058 Face 31324 15663 30257 15664 Face 31325 15664 22981 15663 Face 31326 15664 40873 15665 Face 31327 20930 15666 15121 Face 31328 6982 2495 39565 Face 31329 6976 15667 44098 Face 31330 6976 37004 15667 Face 31331 4901 15668 31629 Face 31332 4901 31119 15668 Face 31333 7073 15669 13639 Face 31334 7073 20028 44442 Face 31335 27345 39790 12566 Face 31336 23496 8448 42177 Face 31337 33444 15671 21055 Face 31338 33444 10790 15671 Face 31339 48572 24243 7594 Face 31340 37912 29747 21169 Face 31341 23493 15673 36956 Face 31342 23493 4449 15673 Face 31343 35796 31071 4814 Face 31344 35796 25860 31071 Face 31345 26213 15675 13046 Face 31346 16070 1869 15675 Face 31347 16933 15676 24308 Face 31348 23876 15607 15676 Face 31349 34617 47282 34766 Face 31350 47609 5490 47282 Face 31351 7633 15678 31672 Face 31352 7633 28561 15678 Face 31353 6305 49508 25103 Face 31354 6305 10238 15679 Face 31355 298 15680 11092 Face 31356 40387 27684 33620 Face 31357 1358 15681 33918 Face 31358 1358 6574 15681 Face 31359 38985 29227 47592 Face 31360 8737 5850 15682 Face 31361 21399 49927 12067 Face 31362 15684 20529 25827 Face 31363 4045 15684 49927 Face 31364 15894 39636 15684 Face 31365 6416 15685 44020 Face 31366 6416 15303 15685 Face 31367 18546 38925 40868 Face 31368 3383 14606 38925 Face 31369 24213 15687 40722 Face 31370 25452 35430 32295 Face 31371 5199 15688 11546 Face 31372 5199 13985 15688 Face 31373 6534 15689 15845 Face 31374 26018 29945 23917 Face 31375 32268 15690 23305 Face 31376 3016 16050 15690 Face 31377 15692 15691 38539 Face 31378 7367 40223 15691 Face 31379 7367 15692 38622 Face 31380 7367 15691 15692 Face 31381 2099 40587 3847 Face 31382 35960 11115 44209 Face 31383 21783 15694 47533 Face 31384 21783 9135 15694 Face 31385 535 15695 38938 Face 31386 535 43024 15695 Face 31387 535 15696 34772 Face 31388 39770 44323 15696 Face 31389 5440 15697 33303 Face 31390 35231 32101 39601 Face 31391 5440 43650 15697 Face 31392 5440 27504 43650 Face 31393 23516 15699 14239 Face 31394 1221 11639 44472 Face 31395 22191 47548 31709 Face 31396 506 22907 15700 Face 31397 6281 15701 25069 Face 31398 6281 43286 15701 Face 31399 43033 15702 43143 Face 31400 43033 29125 15702 Face 31401 11544 15703 4374 Face 31402 11544 33018 15703 Face 31403 3898 49145 29521 Face 31404 3898 28483 49145 Face 31405 15704 15705 28483 Face 31406 15704 29648 15705 Face 31407 485 27236 6164 Face 31408 485 31463 15706 Face 31409 7276 37048 30600 Face 31410 48102 18744 15707 Face 31411 5993 15708 33717 Face 31412 5993 20192 29177 Face 31413 12367 15709 815 Face 31414 24417 14837 15709 Face 31415 12681 15710 778 Face 31416 12681 12680 45772 Face 31417 66 15711 44235 Face 31418 25944 14815 24493 Face 31419 40948 15712 5283 Face 31420 1778 12005 15712 Face 31421 1778 15713 11110 Face 31422 40947 22095 15713 Face 31423 32725 15714 23316 Face 31424 32725 47993 15714 Face 31425 39967 15715 10214 Face 31426 1194 11324 15715 Face 31427 6451 15716 23567 Face 31428 6451 36188 15716 Face 31429 4446 32536 13357 Face 31430 17733 24268 15717 Face 31431 6639 37223 38262 Face 31432 48023 42475 15718 Face 31433 3325 15719 28333 Face 31434 3325 22894 15719 Face 31435 908 15720 25075 Face 31436 27951 13062 24514 Face 31437 49750 27951 24514 Face 31438 49750 26169 15721 Face 31439 6438 15722 22797 Face 31440 6438 22482 15722 Face 31441 10142 15723 1601 Face 31442 10142 27093 15723 Face 31443 1323 32549 2394 Face 31444 1323 19043 32549 Face 31445 6495 15725 33617 Face 31446 6495 38415 32681 Face 31447 7887 15726 7153 Face 31448 7887 22978 15726 Face 31449 2319 15727 26200 Face 31450 26723 40981 15727 Face 31451 7921 15728 11772 Face 31452 28535 12211 15728 Face 31453 11109 31460 32322 Face 31454 11109 6068 15729 Face 31455 27403 15730 33112 Face 31456 5841 22310 15730 Face 31457 4379 15731 6324 Face 31458 4379 7689 15731 Face 31459 7715 15732 11793 Face 31460 7715 7716 15732 Face 31461 143 42678 32154 Face 31462 18528 4245 15733 Face 31463 23097 15734 38456 Face 31464 45573 24588 15734 Face 31465 45650 15735 21654 Face 31466 20920 34886 15735 Face 31467 21097 15736 10432 Face 31468 70 33631 15736 Face 31469 3499 15737 23444 Face 31470 3499 7585 15737 Face 31471 2010 47458 27753 Face 31472 2010 31597 15738 Face 31473 44500 30390 34015 Face 31474 10751 585 15739 Face 31475 41858 15740 19660 Face 31476 2839 7885 29414 Face 31477 39137 35346 17577 Face 31478 2532 12050 35345 Face 31479 2532 15742 12050 Face 31480 39137 17577 15742 Face 31481 9355 15743 10912 Face 31482 9355 20413 15743 Face 31483 47990 15744 20420 Face 31484 41191 20784 15744 Face 31485 1991 23499 2816 Face 31486 1991 44746 15745 Face 31487 41887 23612 5743 Face 31488 5330 36726 15746 Face 31489 49580 15747 9619 Face 31490 6619 21417 15747 Face 31491 19984 15748 30272 Face 31492 35541 45204 15748 Face 31493 4319 15749 46865 Face 31494 44126 6949 25922 Face 31495 41283 15750 19920 Face 31496 41283 25541 15750 Face 31497 37206 15751 3747 Face 31498 34229 33513 15751 Face 31499 28117 15752 46401 Face 31500 28117 16478 15752 Face 31501 3035 15753 14460 Face 31502 16875 5029 15753 Face 31503 702 15754 20158 Face 31504 31819 44474 20368 Face 31505 1573 42687 47653 Face 31506 1573 12057 15755 Face 31507 4976 15756 14373 Face 31508 4976 9810 15756 Face 31509 35721 23198 21577 Face 31510 10132 43276 15757 Face 31511 31988 15758 7590 Face 31512 16634 18565 42159 Face 31513 47764 15759 23726 Face 31514 2801 9841 15759 Face 31515 9485 15760 39377 Face 31516 9485 21008 15760 Face 31517 40780 49650 37815 Face 31518 30686 13210 36849 Face 31519 40427 21016 26706 Face 31520 20985 13342 15762 Face 31521 1680 15763 25520 Face 31522 24761 19444 15763 Face 31523 22109 15764 29180 Face 31524 4249 44816 15764 Face 31525 21592 15765 48409 Face 31526 21592 10532 15765 Face 31527 24174 34282 40454 Face 31528 19264 1796 35459 Face 31529 15768 40218 29308 Face 31530 43856 29276 40218 Face 31531 1634 15768 44103 Face 31532 43856 40218 15768 Face 31533 586 37402 47171 Face 31534 586 28594 15769 Face 31535 6948 15770 40173 Face 31536 6948 25775 15770 Face 31537 6948 15771 25775 Face 31538 6948 31380 15771 Face 31539 700 15772 40617 Face 31540 700 48977 15772 Face 31541 15772 15773 17912 Face 31542 15772 24796 15773 Face 31543 12846 15774 36562 Face 31544 12846 12847 15774 Face 31545 26534 40342 30469 Face 31546 42241 14051 15775 Face 31547 43469 15776 38236 Face 31548 23101 8708 15776 Face 31549 3119 15777 14414 Face 31550 3119 14617 15777 Face 31551 3119 15778 35592 Face 31552 3119 30357 35165 Face 31553 15780 15779 10946 Face 31554 6991 15901 31957 Face 31555 40287 15780 2981 Face 31556 6991 15779 15780 Face 31557 20278 15781 15537 Face 31558 2351 21674 15781 Face 31559 33102 15782 13893 Face 31560 22825 15489 30185 Face 31561 12732 47302 2191 Face 31562 29200 16544 15783 Face 31563 6731 15784 35014 Face 31564 6731 15509 15784 Face 31565 23285 44915 16018 Face 31566 34397 12783 15785 Face 31567 3416 15786 45961 Face 31568 42003 15245 15786 Face 31569 4297 20381 32809 Face 31570 4297 49992 20381 Face 31571 9172 47644 11987 Face 31572 23786 7123 15788 Face 31573 25396 15789 15144 Face 31574 11438 19716 15789 Face 31575 1215 15790 39835 Face 31576 1215 37953 15790 Face 31577 24957 25692 14475 Face 31578 819 7717 15791 Face 31579 29605 15792 5333 Face 31580 21863 12616 37602 Face 31581 5695 15793 28463 Face 31582 5695 38148 15793 Face 31583 11030 37915 25731 Face 31584 11030 17672 15794 Face 31585 6847 38866 11163 Face 31586 46418 35568 15795 Face 31587 41154 34642 23645 Face 31588 4671 31452 15796 Face 31589 10569 15797 37703 Face 31590 10569 4694 15797 Face 31591 23521 15798 16372 Face 31592 23521 7540 15798 Face 31593 3182 43574 25458 Face 31594 3182 9246 43574 Face 31595 28097 39025 49037 Face 31596 42885 3864 23046 Face 31597 11148 15801 33277 Face 31598 11148 40488 15801 Face 31599 8303 48410 47067 Face 31600 8303 30107 48410 Face 31601 24565 37819 21508 Face 31602 47020 30670 15803 Face 31603 17086 15804 11960 Face 31604 273 8527 28852 Face 31605 5197 48247 34289 Face 31606 5197 42391 48247 Face 31607 30873 15806 43103 Face 31608 4153 22096 15806 Face 31609 2538 15807 46584 Face 31610 43023 45066 15807 Face 31611 375 15808 7879 Face 31612 375 40062 28332 Face 31613 1052 38606 23759 Face 31614 1052 19744 15809 Face 31615 37033 15810 3970 Face 31616 37033 21575 15810 Face 31617 21310 15811 10319 Face 31618 37355 14937 15811 Face 31619 5953 23767 35141 Face 31620 5953 12748 15812 Face 31621 47541 15813 9846 Face 31622 47541 29573 15813 Face 31623 13037 26707 7268 Face 31624 13037 13310 15814 Face 31625 7252 29707 18320 Face 31626 7252 11944 29707 Face 31627 5641 15816 7487 Face 31628 5641 9804 15816 Face 31629 41592 15817 14958 Face 31630 38599 38675 15817 Face 31631 49901 15818 4205 Face 31632 3736 25534 15818 Face 31633 6977 15819 48306 Face 31634 6977 13669 41713 Face 31635 3665 15820 47442 Face 31636 3665 18770 15820 Face 31637 8997 48480 29452 Face 31638 47366 35287 15821 Face 31639 310 15822 37546 Face 31640 310 10701 29099 Face 31641 44970 40767 15824 Face 31642 9026 10758 40767 Face 31643 45391 15824 15823 Face 31644 45391 648 15824 Face 31645 44209 15825 7979 Face 31646 44209 11115 15825 Face 31647 4519 43571 14929 Face 31648 16704 32596 15826 Face 31649 38721 15827 5536 Face 31650 36268 25155 15827 Face 31651 2000 15828 48845 Face 31652 2000 38038 15828 Face 31653 12435 15829 34352 Face 31654 12435 7273 15829 Face 31655 49101 15830 31133 Face 31656 49101 37882 15830 Face 31657 8935 48625 30421 Face 31658 8935 44085 23729 Face 31659 47155 15832 9855 Face 31660 31544 19114 21732 Face 31661 15441 15833 9539 Face 31662 15441 27872 15833 Face 31663 37278 28521 1563 Face 31664 29279 42201 15834 Face 31665 41133 45864 22763 Face 31666 34026 41806 45864 Face 31667 20755 15836 46552 Face 31668 373 3358 15836 Face 31669 5586 35590 11991 Face 31670 25083 10895 35590 Face 31671 2998 15838 16471 Face 31672 42696 25136 15838 Face 31673 15711 15839 31586 Face 31674 24493 17564 15839 Face 31675 24236 26428 48492 Face 31676 8274 12101 40683 Face 31677 35398 15841 11411 Face 31678 35398 15958 15841 Face 31679 7697 15842 19267 Face 31680 29424 33486 15842 Face 31681 16523 35667 3933 Face 31682 15844 43481 35667 Face 31683 9577 15844 35667 Face 31684 9577 24021 47511 Face 31685 12822 15845 15689 Face 31686 42048 45019 15845 Face 31687 28318 37304 26660 Face 31688 2126 21915 37305 Face 31689 17782 15847 41176 Face 31690 1626 45887 41680 Face 31691 3724 15848 7433 Face 31692 36469 7333 15848 Face 31693 2321 43927 31735 Face 31694 2321 21432 43927 Face 31695 41927 15850 9211 Face 31696 4339 26619 15850 Face 31697 18137 39882 46322 Face 31698 1836 41673 38876 Face 31699 18968 15852 14555 Face 31700 570 9351 15852 Face 31701 43771 15853 35952 Face 31702 43771 41361 44468 Face 31703 139 15854 22273 Face 31704 43090 25085 15854 Face 31705 6857 15855 45399 Face 31706 6857 22430 29345 Face 31707 26296 15856 21313 Face 31708 26296 16936 15856 Face 31709 37417 15857 12988 Face 31710 4969 46479 15857 Face 31711 16718 15858 38424 Face 31712 2232 24442 15858 Face 31713 45095 15859 25205 Face 31714 26539 44741 15859 Face 31715 5916 15860 13418 Face 31716 15861 25995 15860 Face 31717 5916 15861 15860 Face 31718 5916 33058 37780 Face 31719 2047 15862 38175 Face 31720 2047 1186 15862 Face 31721 5972 15863 42234 Face 31722 32024 16943 15863 Face 31723 20164 37425 25897 Face 31724 10 9875 15864 Face 31725 31788 49885 14886 Face 31726 31788 13589 15865 Face 31727 3958 15866 42533 Face 31728 3958 22438 36721 Face 31729 2876 15867 23816 Face 31730 2876 25178 49804 Face 31731 21885 15868 36600 Face 31732 12850 30488 49241 Face 31733 12850 15869 28014 Face 31734 12850 15868 15869 Face 31735 3354 15870 28290 Face 31736 3354 28779 15870 Face 31737 3537 15871 19334 Face 31738 41652 13014 15871 Face 31739 5768 15872 46614 Face 31740 5768 5271 37016 Face 31741 962 44061 27625 Face 31742 18584 39507 15873 Face 31743 44168 26178 2460 Face 31744 41839 32289 15874 Face 31745 4669 15875 43080 Face 31746 4669 6080 15875 Face 31747 4824 15876 6407 Face 31748 17392 40672 15876 Face 31749 45522 15877 3193 Face 31750 31555 425 48302 Face 31751 9112 15878 31356 Face 31752 16853 49353 15878 Face 31753 30161 15879 10540 Face 31754 7340 44570 15879 Face 31755 8849 43672 38495 Face 31756 8849 21943 15880 Face 31757 42940 15881 22131 Face 31758 42940 4579 15881 Face 31759 2374 15882 38994 Face 31760 15883 25003 15882 Face 31761 2374 15883 15882 Face 31762 23185 5735 34897 Face 31763 9513 27091 4465 Face 31764 9513 21519 27091 Face 31765 17621 31863 10419 Face 31766 44878 38859 15885 Face 31767 46229 15886 40545 Face 31768 32367 28671 15886 Face 31769 178 15887 45005 Face 31770 178 39981 15887 Face 31771 11870 42638 12845 Face 31772 24022 19983 15888 Face 31773 9661 15889 26095 Face 31774 9661 12906 15889 Face 31775 33133 43419 19930 Face 31776 43843 28989 15890 Face 31777 7625 15891 18310 Face 31778 7625 49976 15891 Face 31779 45572 15892 27652 Face 31780 8168 29911 15892 Face 31781 1150 15893 34729 Face 31782 38948 49238 15893 Face 31783 4045 15894 15684 Face 31784 4045 38731 15894 Face 31785 38742 15895 5657 Face 31786 38742 15308 15895 Face 31787 27218 15896 12809 Face 31788 33442 12458 15896 Face 31789 3916 15897 45018 Face 31790 23569 20959 15897 Face 31791 5180 15898 15196 Face 31792 38962 37649 23912 Face 31793 8633 15899 43030 Face 31794 8633 39345 15899 Face 31795 31023 15900 3761 Face 31796 12460 12459 15900 Face 31797 24674 15901 19251 Face 31798 24674 31957 15901 Face 31799 31763 38463 11836 Face 31800 49507 34756 15902 Face 31801 35788 44681 8867 Face 31802 8188 34327 37432 Face 31803 6853 15904 20273 Face 31804 6853 6307 15904 Face 31805 38706 15905 32185 Face 31806 38706 49401 15905 Face 31807 918 15906 24502 Face 31808 918 42156 15906 Face 31809 918 15907 42156 Face 31810 918 11026 15907 Face 31811 2654 31578 42667 Face 31812 2654 12018 15908 Face 31813 10212 15909 32495 Face 31814 47565 43417 39059 Face 31815 2309 15910 25985 Face 31816 2309 37587 15910 Face 31817 35549 15911 5988 Face 31818 35549 25886 15911 Face 31819 5256 15912 23400 Face 31820 5256 34506 15912 Face 31821 32853 15913 46682 Face 31822 32853 36637 15913 Face 31823 15913 15914 46682 Face 31824 15915 19837 15914 Face 31825 15913 15915 15914 Face 31826 15913 36637 15915 Face 31827 30741 15916 17555 Face 31828 30741 16372 15916 Face 31829 22913 15918 4397 Face 31830 27587 12140 34609 Face 31831 15917 37058 2234 Face 31832 43769 13569 15918 Face 31833 39516 15919 9664 Face 31834 344 29861 38421 Face 31835 3063 15920 12796 Face 31836 19749 10712 47485 Face 31837 15922 35735 11538 Face 31838 15922 22709 35733 Face 31839 19004 15922 11538 Face 31840 6631 22709 15922 Face 31841 15924 48306 15819 Face 31842 1677 25044 15923 Face 31843 23432 44105 20686 Face 31844 1677 15923 15924 Face 31845 34358 15925 14426 Face 31846 34358 18855 15925 Face 31847 42407 27702 13860 Face 31848 2283 17208 15926 Face 31849 42385 15927 19812 Face 31850 42385 18645 15927 Face 31851 23121 15928 4817 Face 31852 49356 23438 15928 Face 31853 38213 20359 8187 Face 31854 43430 912 15929 Face 31855 16337 15930 27283 Face 31856 42453 12309 15930 Face 31857 45516 15931 24031 Face 31858 45516 22354 15931 Face 31859 5032 15932 12943 Face 31860 5032 37117 28176 Face 31861 10067 39291 22875 Face 31862 10067 14164 15933 Face 31863 7923 15934 24154 Face 31864 7923 48622 33685 Face 31865 33516 15935 12726 Face 31866 41187 16375 15935 Face 31867 30916 15936 48169 Face 31868 30916 3475 15936 Face 31869 3151 15937 29892 Face 31870 17170 1367 15937 Face 31871 5315 15938 29496 Face 31872 5315 26741 37146 Face 31873 29675 15939 12396 Face 31874 731 7089 45165 Face 31875 38870 30557 1309 Face 31876 46302 8664 42664 Face 31877 26829 38872 11606 Face 31878 1308 42664 15941 Face 31879 47940 15942 11195 Face 31880 3276 32693 15942 Face 31881 21247 15943 37600 Face 31882 21247 30003 15943 Face 31883 7982 15944 33448 Face 31884 7982 14791 15944 Face 31885 43547 15945 21758 Face 31886 43547 27068 15945 Face 31887 6816 15946 41916 Face 31888 6816 23686 15946 Face 31889 20178 36186 17094 Face 31890 27775 651 15947 Face 31891 1967 15948 33601 Face 31892 1967 40664 15948 Face 31893 6320 31037 9633 Face 31894 6320 26864 31037 Face 31895 5735 15950 22216 Face 31896 5735 23185 48835 Face 31897 28627 35810 41837 Face 31898 28627 48078 15951 Face 31899 3860 15952 17914 Face 31900 3860 18660 15952 Face 31901 23925 15953 10263 Face 31902 47772 38083 15953 Face 31903 7358 15954 31281 Face 31904 7358 40725 15954 Face 31905 8863 37372 27597 Face 31906 8863 23189 37372 Face 31907 48303 15956 38084 Face 31908 6562 44181 30471 Face 31909 8130 15957 7439 Face 31910 42714 22192 15957 Face 31911 35182 15958 14882 Face 31912 25037 15841 15958 Face 31913 2043 15959 7295 Face 31914 35318 44307 28734 Face 31915 16499 32874 39910 Face 31916 6777 14206 15960 Face 31917 29235 15961 3801 Face 31918 10940 37909 15961 Face 31919 33896 15962 25280 Face 31920 33896 26186 15962 Face 31921 1767 15963 46983 Face 31922 18776 20984 15963 Face 31923 585 15964 21320 Face 31924 19980 11091 37997 Face 31925 12998 37700 7290 Face 31926 12998 36875 15965 Face 31927 6057 15966 25095 Face 31928 36803 11749 32796 Face 31929 746 48510 34956 Face 31930 746 11418 15967 Face 31931 6157 17590 38739 Face 31932 31535 36320 17590 Face 31933 21863 42556 30541 Face 31934 26592 11935 47161 Face 31935 15969 47161 17941 Face 31936 42556 4520 15970 Face 31937 36818 15971 14247 Face 31938 36818 31008 15971 Face 31939 21645 15972 8271 Face 31940 869 39268 15972 Face 31941 7902 15973 7901 Face 31942 44866 858 15973 Face 31943 7802 44217 38186 Face 31944 7802 44929 31131 Face 31945 4626 15975 22526 Face 31946 4626 6977 15975 Face 31947 10297 15976 4499 Face 31948 10297 20186 43687 Face 31949 40389 21205 4183 Face 31950 1632 11057 43231 Face 31951 43792 15978 19093 Face 31952 2893 42315 15978 Face 31953 37244 43361 38197 Face 31954 26975 13003 15979 Face 31955 3872 35980 38529 Face 31956 3872 7958 35981 Face 31957 10878 40723 27336 Face 31958 10878 49625 15981 Face 31959 1645 15982 23256 Face 31960 1645 47419 15982 Face 31961 16107 15983 28135 Face 31962 26427 15318 15983 Face 31963 41750 15984 7592 Face 31964 22256 10146 37771 Face 31965 41750 15985 15984 Face 31966 5391 10435 15985 Face 31967 46601 15986 11474 Face 31968 18958 7819 22966 Face 31969 40490 27065 19973 Face 31970 5674 6894 27065 Face 31971 4707 15988 20248 Face 31972 4707 25316 15988 Face 31973 1528 15989 8899 Face 31974 42845 19356 35620 Face 31975 3445 15990 21636 Face 31976 18778 47612 15990 Face 31977 1839 15991 15324 Face 31978 1839 29408 47284 Face 31979 47433 15992 38358 Face 31980 18812 45913 15992 Face 31981 6819 15993 38701 Face 31982 6819 29588 15993 Face 31983 26501 15994 11964 Face 31984 4173 43043 15994 Face 31985 15637 15995 15405 Face 31986 15637 30834 15995 Face 31987 39084 15996 10535 Face 31988 7524 21619 15996 Face 31989 44956 37052 10478 Face 31990 37766 20439 15997 Face 31991 1047 45845 8367 Face 31992 44956 23495 15998 Face 31993 12510 15999 44140 Face 31994 12510 27016 40324 Face 31995 9529 35445 26752 Face 31996 16604 26430 16000 Face 31997 28471 29088 18401 Face 31998 6659 47581 36064 Face 31999 9626 16002 10429 Face 32000 9626 39884 16002 Face 32001 1285 27965 49348 Face 32002 42022 8634 19345 Face 32003 38634 23078 30702 Face 32004 2500 48562 16004 Face 32005 6025 16005 39710 Face 32006 6025 2306 16005 Face 32007 44575 16006 3832 Face 32008 341 7470 16006 Face 32009 45654 16007 15506 Face 32010 8478 15000 16007 Face 32011 24314 16008 413 Face 32012 34550 47988 16008 Face 32013 18514 16009 34640 Face 32014 18514 45617 16009 Face 32015 37628 16010 23436 Face 32016 19795 6950 16010 Face 32017 42101 16011 10988 Face 32018 10235 7657 16011 Face 32019 8608 16012 34954 Face 32020 8608 33124 16012 Face 32021 4768 16013 7838 Face 32022 4768 22243 16013 Face 32023 37152 16014 8045 Face 32024 37152 13392 16014 Face 32025 3073 37197 12664 Face 32026 3073 42992 37197 Face 32027 35652 16016 5500 Face 32028 7177 17073 38901 Face 32029 35651 16017 12788 Face 32030 35650 13976 16017 Face 32031 3177 16018 15785 Face 32032 19563 26347 16018 Face 32033 5146 16019 48676 Face 32034 17135 29234 44542 Face 32035 10672 16020 30825 Face 32036 10672 17320 16020 Face 32037 8134 39344 1071 Face 32038 36483 26394 41295 Face 32039 8134 36483 16021 Face 32040 8134 19715 36483 Face 32041 8056 16023 39837 Face 32042 37258 46595 16023 Face 32043 450 16024 12184 Face 32044 19073 30318 16024 Face 32045 2564 16025 13407 Face 32046 2564 29686 16025 Face 32047 7797 38227 28322 Face 32048 7797 39485 16026 Face 32049 8779 35388 2191 Face 32050 43471 35113 16027 Face 32051 5132 16028 33940 Face 32052 5132 40619 16028 Face 32053 22696 41218 5011 Face 32054 5153 26537 16029 Face 32055 2331 47377 9687 Face 32056 2331 15343 47377 Face 32057 5616 46818 27237 Face 32058 5616 41331 30654 Face 32059 16031 48207 33742 Face 32060 16031 13392 16032 Face 32061 38175 16033 2047 Face 32062 38175 39675 16033 Face 32063 3105 16034 12673 Face 32064 3105 38215 16034 Face 32065 1223 16035 47921 Face 32066 1223 8524 16035 Face 32067 40514 16036 6453 Face 32068 31188 15418 34448 Face 32069 3625 48765 23199 Face 32070 3625 24998 16037 Face 32071 1906 16038 25849 Face 32072 1906 35691 16038 Face 32073 21505 16039 24802 Face 32074 22627 24150 49857 Face 32075 32772 16040 32554 Face 32076 3858 14917 16040 Face 32077 7178 31158 39256 Face 32078 7178 20618 39460 Face 32079 39897 16042 11050 Face 32080 1877 24383 16042 Face 32081 1423 16043 38253 Face 32082 1423 42935 16043 Face 32083 34119 46078 132 Face 32084 18398 25157 16044 Face 32085 16046 16045 21793 Face 32086 43353 14144 16045 Face 32087 2925 16046 31843 Face 32088 39069 16045 16046 Face 32089 7307 16047 9681 Face 32090 7307 1430 33129 Face 32091 3992 16048 20684 Face 32092 3992 22999 16048 Face 32093 1212 16049 24449 Face 32094 1212 49945 16049 Face 32095 11133 16050 30983 Face 32096 11133 15690 16050 Face 32097 4719 16051 30046 Face 32098 33909 10846 16051 Face 32099 12787 16052 38796 Face 32100 12787 5204 16052 Face 32101 3668 16053 10124 Face 32102 27448 7484 16053 Face 32103 9044 16054 10449 Face 32104 9044 48304 16054 Face 32105 8160 33148 33257 Face 32106 8160 28167 33148 Face 32107 5412 16056 35137 Face 32108 5412 14149 16056 Face 32109 25835 16057 6820 Face 32110 42663 39321 16057 Face 32111 19935 30621 8087 Face 32112 48748 21196 16058 Face 32113 4637 47415 47046 Face 32114 4637 30621 47415 Face 32115 35930 27227 12012 Face 32116 16061 34305 16060 Face 32117 35930 46716 27227 Face 32118 4811 15123 16061 Face 32119 32892 16062 12333 Face 32120 45383 39572 16062 Face 32121 3372 16063 16562 Face 32122 19769 48264 28096 Face 32123 6928 16064 30468 Face 32124 6928 7651 16064 Face 32125 46269 16065 14766 Face 32126 26023 19423 16065 Face 32127 13476 16066 40340 Face 32128 13476 23810 16066 Face 32129 23060 36218 7700 Face 32130 1228 11134 16067 Face 32131 3241 16068 16910 Face 32132 3241 13922 42945 Face 32133 3154 16069 11252 Face 32134 26983 21899 16069 Face 32135 6543 16070 15675 Face 32136 6543 20820 16070 Face 32137 40475 16071 34049 Face 32138 27613 12479 16071 Face 32139 4754 16072 27643 Face 32140 4754 40837 16072 Face 32141 1437 16073 9278 Face 32142 1437 19742 16073 Face 32143 15347 16074 10626 Face 32144 15347 30486 16074 Face 32145 1560 16075 26880 Face 32146 1560 17609 16075 Face 32147 4206 16076 16025 Face 32148 31435 35102 16076 Face 32149 6308 24896 44972 Face 32150 23527 7373 16077 Face 32151 6308 23527 24896 Face 32152 20148 34784 16078 Face 32153 2109 16079 13797 Face 32154 45017 28105 16079 Face 32155 26776 37176 1446 Face 32156 4979 24855 16080 Face 32157 18607 49168 36874 Face 32158 34452 27148 16081 Face 32159 7078 16082 38396 Face 32160 46445 19621 16082 Face 32161 33019 16083 30624 Face 32162 33019 41502 16083 Face 32163 12641 41923 18627 Face 32164 12641 27450 41923 Face 32165 9727 28612 25017 Face 32166 9727 44308 28612 Face 32167 1305 16086 6452 Face 32168 1305 4948 31846 Face 32169 36428 16087 49127 Face 32170 36428 5691 16087 Face 32171 6532 16088 25097 Face 32172 36374 49909 16088 Face 32173 29432 16089 1113 Face 32174 16090 18781 31663 Face 32175 5434 29432 30140 Face 32176 5434 17937 29432 Face 32177 10374 16091 11011 Face 32178 10374 38414 16091 Face 32179 45467 16092 17983 Face 32180 32785 14352 16092 Face 32181 6787 37484 448 Face 32182 6787 10879 37484 Face 32183 7709 16094 284 Face 32184 7709 40492 16094 Face 32185 5169 16095 43031 Face 32186 36932 12727 43660 Face 32187 38123 16096 27341 Face 32188 37476 14185 16096 Face 32189 6172 16097 43287 Face 32190 6172 30450 41901 Face 32191 34306 16098 18275 Face 32192 34306 19218 16098 Face 32193 46108 16099 43451 Face 32194 41031 34546 42895 Face 32195 38933 16100 20650 Face 32196 38933 15620 16100 Face 32197 7388 43813 35798 Face 32198 7388 38442 43814 Face 32199 2313 16102 22787 Face 32200 49692 25601 16102 Face 32201 20147 41701 7741 Face 32202 1726 33811 39497 Face 32203 1612 16104 25712 Face 32204 18447 4062 43364 Face 32205 3509 16105 25837 Face 32206 3509 26766 16105 Face 32207 18874 43512 44526 Face 32208 3889 7470 16106 Face 32209 861 16107 20530 Face 32210 861 15983 16107 Face 32211 5005 16108 19936 Face 32212 5005 433 16108 Face 32213 6488 35612 38910 Face 32214 40541 30249 35612 Face 32215 11028 16110 16211 Face 32216 11028 24047 16110 Face 32217 5017 40442 832 Face 32218 5017 34572 40442 Face 32219 17638 44626 4580 Face 32220 17425 11833 16112 Face 32221 2982 16113 7805 Face 32222 2982 10681 16113 Face 32223 10449 16114 33654 Face 32224 10449 16054 16114 Face 32225 21584 16115 13501 Face 32226 21584 31665 16115 Face 32227 16060 27227 46716 Face 32228 16060 16908 16116 Face 32229 543 16117 36744 Face 32230 543 23456 16117 Face 32231 2006 16118 13592 Face 32232 28087 40460 30351 Face 32233 2782 16119 9278 Face 32234 2782 13551 27053 Face 32235 11316 16120 17520 Face 32236 11316 15076 16121 Face 32237 16122 16121 15076 Face 32238 21520 11316 16121 Face 32239 16120 16122 15076 Face 32240 16120 11316 21520 Face 32241 1162 16123 31249 Face 32242 1162 33217 16123 Face 32243 29194 16124 18643 Face 32244 8690 12178 34892 Face 32245 34595 16125 5280 Face 32246 16343 21161 16125 Face 32247 3421 16126 30193 Face 32248 3421 11287 16126 Face 32249 20573 45378 12598 Face 32250 45550 34754 42356 Face 32251 11071 16128 38221 Face 32252 11071 37323 16128 Face 32253 11799 16129 28114 Face 32254 11799 17806 16129 Face 32255 1193 16130 42904 Face 32256 1193 30830 42541 Face 32257 1337 33508 17934 Face 32258 1337 47124 33508 Face 32259 48370 45910 9108 Face 32260 49982 20689 37462 Face 32261 16134 16133 34740 Face 32262 16134 41856 16133 Face 32263 4182 16134 38384 Face 32264 23179 41856 16134 Face 32265 8816 16135 46705 Face 32266 8816 24548 16135 Face 32267 24874 16136 49989 Face 32268 24874 21079 16136 Face 32269 8277 43646 490 Face 32270 8277 22694 43646 Face 32271 2730 16138 31961 Face 32272 35191 15199 16138 Face 32273 6169 16139 30707 Face 32274 6169 3099 40812 Face 32275 7579 16140 17340 Face 32276 7579 40544 16140 Face 32277 2499 45798 41603 Face 32278 2499 33262 45798 Face 32279 45322 16142 5939 Face 32280 32966 3552 34906 Face 32281 45322 23981 16142 Face 32282 46369 36360 43442 Face 32283 28507 16144 11698 Face 32284 25441 7284 16144 Face 32285 11759 16145 2419 Face 32286 11759 17659 16145 Face 32287 11511 16146 44827 Face 32288 11511 35507 16146 Face 32289 11860 16147 7945 Face 32290 11860 1637 16147 Face 32291 12323 16148 36329 Face 32292 28972 3879 38164 Face 32293 31701 16149 26968 Face 32294 4062 49010 16149 Face 32295 19910 36285 9691 Face 32296 19911 23148 36285 Face 32297 4447 16151 18240 Face 32298 4447 10321 16151 Face 32299 13048 16152 1388 Face 32300 13048 27901 16152 Face 32301 28670 46008 6882 Face 32302 281 10792 32156 Face 32303 374 34565 11736 Face 32304 48995 23297 16154 Face 32305 48995 16155 23297 Face 32306 33338 5141 16155 Face 32307 8367 16156 18004 Face 32308 8367 26429 16156 Face 32309 42214 24422 20819 Face 32310 26439 45662 16157 Face 32311 1373 16158 16157 Face 32312 30527 19102 47546 Face 32313 28341 16159 14129 Face 32314 5353 19775 41771 Face 32315 28564 28840 35726 Face 32316 9034 30640 42951 Face 32317 3631 16161 35021 Face 32318 45066 43023 16161 Face 32319 7984 16162 41752 Face 32320 7984 20028 16162 Face 32321 1335 16163 31871 Face 32322 1335 8305 16163 Face 32323 17373 16164 33938 Face 32324 20980 14165 16164 Face 32325 43881 47430 35058 Face 32326 25378 10301 16165 Face 32327 6654 16166 46297 Face 32328 48705 3943 49324 Face 32329 9303 16167 14946 Face 32330 26820 4798 16167 Face 32331 6177 48327 27617 Face 32332 38345 1703 16168 Face 32333 26043 16169 14960 Face 32334 37912 24243 16169 Face 32335 38746 16170 3430 Face 32336 11576 2074 16170 Face 32337 12451 16171 34544 Face 32338 31295 9604 16171 Face 32339 18939 16172 44875 Face 32340 34581 15386 16172 Face 32341 40596 16173 30274 Face 32342 3749 2088 16173 Face 32343 7336 16174 33692 Face 32344 36600 45313 16174 Face 32345 4991 16175 28312 Face 32346 4991 11646 16175 Face 32347 12980 16176 12979 Face 32348 12980 24 16176 Face 32349 23158 16177 29457 Face 32350 23158 13904 16177 Face 32351 14001 46176 22572 Face 32352 14001 14789 29038 Face 32353 46624 16179 28124 Face 32354 14001 22572 16179 Face 32355 6910 22019 46438 Face 32356 43548 17167 16180 Face 32357 18295 16181 28695 Face 32358 18295 42726 16181 Face 32359 29555 16182 11824 Face 32360 4156 7171 16182 Face 32361 44085 16183 47784 Face 32362 29108 45026 16183 Face 32363 863 16184 4516 Face 32364 863 35695 16184 Face 32365 36533 16185 44734 Face 32366 36533 11613 16185 Face 32367 5450 16186 45203 Face 32368 5450 14702 44254 Face 32369 9215 16187 475 Face 32370 9215 45132 16187 Face 32371 16189 33453 2073 Face 32372 16189 38598 16188 Face 32373 7699 16189 3808 Face 32374 7699 38598 16189 Face 32375 46585 36126 42161 Face 32376 20285 40153 16190 Face 32377 35144 16191 8703 Face 32378 1040 45969 16191 Face 32379 27279 43228 9989 Face 32380 5096 42311 43228 Face 32381 38758 42324 6444 Face 32382 24616 7777 16193 Face 32383 47039 16194 7605 Face 32384 32732 19803 16194 Face 32385 3401 16195 14889 Face 32386 31469 49462 16195 Face 32387 49281 16196 36199 Face 32388 27562 23524 35128 Face 32389 17341 16197 21175 Face 32390 5795 28171 49816 Face 32391 48088 16198 43700 Face 32392 37566 23668 16198 Face 32393 37566 45786 13185 Face 32394 37566 16198 45786 Face 32395 44049 16200 13930 Face 32396 6340 13060 28062 Face 32397 3792 16201 27920 Face 32398 3792 30109 16201 Face 32399 5488 16202 2067 Face 32400 5488 32857 16202 Face 32401 31100 16203 40220 Face 32402 18996 5415 45884 Face 32403 40373 16204 26122 Face 32404 40373 22310 16204 Face 32405 10476 16205 32298 Face 32406 10476 44296 16205 Face 32407 3298 16206 40378 Face 32408 3298 8224 16206 Face 32409 2425 16207 44545 Face 32410 41746 8896 16207 Face 32411 33704 16208 11842 Face 32412 44438 20348 44512 Face 32413 31444 16209 17249 Face 32414 28263 16208 33704 Face 32415 219 16210 44073 Face 32416 219 14550 36519 Face 32417 17264 22055 17415 Face 32418 1584 11028 16211 Face 32419 32981 16212 21657 Face 32420 5362 35331 32050 Face 32421 43126 16213 33465 Face 32422 25293 38686 16213 Face 32423 18562 28021 31546 Face 32424 35544 6163 16214 Face 32425 9533 16215 29713 Face 32426 9533 15322 16215 Face 32427 37797 35324 18347 Face 32428 42407 35350 16216 Face 32429 8583 16217 19047 Face 32430 8583 44973 16217 Face 32431 16219 16218 26649 Face 32432 6746 18463 41354 Face 32433 6746 16219 28756 Face 32434 6746 41354 16219 Face 32435 4757 16220 8564 Face 32436 4757 37271 16220 Face 32437 46115 16221 24767 Face 32438 16952 26938 16221 Face 32439 41683 16222 8912 Face 32440 1138 21464 16222 Face 32441 6269 29444 18564 Face 32442 6269 32255 16223 Face 32443 45565 16224 12621 Face 32444 26556 20291 39447 Face 32445 29069 16225 22454 Face 32446 4674 49470 16225 Face 32447 4674 16226 24938 Face 32448 4674 39250 16226 Face 32449 42358 38944 28845 Face 32450 3570 43575 16227 Face 32451 3441 16228 36374 Face 32452 3441 38525 16228 Face 32453 3991 16229 9899 Face 32454 3991 15400 32329 Face 32455 33559 43020 27242 Face 32456 5520 44350 16230 Face 32457 4923 16231 27898 Face 32458 4923 9323 16231 Face 32459 5690 16232 15788 Face 32460 5690 40356 16232 Face 32461 15641 16233 3398 Face 32462 15641 36918 43007 Face 32463 45885 31216 792 Face 32464 16235 9337 16234 Face 32465 47711 45885 18008 Face 32466 10115 42523 16235 Face 32467 19654 29987 48784 Face 32468 482 8892 48292 Face 32469 3432 16237 43491 Face 32470 3432 20847 16237 Face 32471 2744 40629 21401 Face 32472 21134 36808 16238 Face 32473 4057 41578 10229 Face 32474 4057 46923 16335 Face 32475 38309 16240 11827 Face 32476 24531 34313 16240 Face 32477 38309 24531 16240 Face 32478 874 40457 16241 Face 32479 16822 16242 20496 Face 32480 49677 29766 16242 Face 32481 516 45966 11984 Face 32482 516 14135 45966 Face 32483 21689 16244 41609 Face 32484 4289 26183 16244 Face 32485 31389 16245 30338 Face 32486 5822 11680 16245 Face 32487 1174 16246 13657 Face 32488 24856 27094 42390 Face 32489 1174 16247 42390 Face 32490 16294 37590 16247 Face 32491 2082 16248 9236 Face 32492 16249 20875 16248 Face 32493 2082 16249 16248 Face 32494 2082 33501 16249 Face 32495 22487 16250 9648 Face 32496 7737 30809 16250 Face 32497 38086 16251 48866 Face 32498 34815 4916 16251 Face 32499 34923 41925 38882 Face 32500 34922 15669 16252 Face 32501 3114 16253 46523 Face 32502 3114 30865 16253 Face 32503 49233 16254 9756 Face 32504 34402 8128 39258 Face 32505 5883 16255 9225 Face 32506 34402 16254 49233 Face 32507 12277 16256 31119 Face 32508 12277 2255 16256 Face 32509 34734 16257 7251 Face 32510 28645 6953 16257 Face 32511 3461 45462 10371 Face 32512 3461 23677 16258 Face 32513 5894 16259 48957 Face 32514 5894 14176 16259 Face 32515 791 16260 39724 Face 32516 791 22680 16260 Face 32517 5685 16261 21517 Face 32518 47212 19499 16261 Face 32519 31639 16262 34024 Face 32520 34364 44365 16262 Face 32521 2219 16263 33100 Face 32522 32790 36656 38812 Face 32523 32547 16264 13247 Face 32524 2543 12734 16264 Face 32525 27832 20849 5000 Face 32526 2752 11395 37586 Face 32527 26326 16266 29584 Face 32528 3665 25274 30675 Face 32529 928 16267 34826 Face 32530 928 5843 28519 Face 32531 1949 25481 45614 Face 32532 1949 15460 16268 Face 32533 9322 16269 33428 Face 32534 9322 44829 16269 Face 32535 41451 16270 46632 Face 32536 5773 41296 29773 Face 32537 3751 16271 29447 Face 32538 40814 22086 16271 Face 32539 13859 38847 20561 Face 32540 13859 8347 46179 Face 32541 16274 48018 4776 Face 32542 4427 21002 48018 Face 32543 4427 16274 45047 Face 32544 4427 48018 16274 Face 32545 5528 16275 20432 Face 32546 28619 25564 16275 Face 32547 15233 16276 30067 Face 32548 15233 42747 25672 Face 32549 21415 16277 33482 Face 32550 5388 18732 16277 Face 32551 7916 16278 43426 Face 32552 7916 13307 16278 Face 32553 23141 29990 12353 Face 32554 24432 11221 16279 Face 32555 24258 16280 37541 Face 32556 29036 38736 16280 Face 32557 26107 41521 9993 Face 32558 19738 40456 16281 Face 32559 24086 16282 23994 Face 32560 24086 43401 16282 Face 32561 13105 47358 39412 Face 32562 40102 12186 16283 Face 32563 42515 16284 48735 Face 32564 42515 47039 16284 Face 32565 37375 16285 10497 Face 32566 37375 4406 16285 Face 32567 10184 44561 45564 Face 32568 10184 24839 44561 Face 32569 35342 16287 19398 Face 32570 35342 732 16287 Face 32571 10131 16288 46958 Face 32572 44407 37604 16288 Face 32573 35027 16289 726 Face 32574 8542 16510 29288 Face 32575 24316 16290 26141 Face 32576 10011 24166 16290 Face 32577 44154 16291 20405 Face 32578 12951 31113 45453 Face 32579 6125 16292 41332 Face 32580 6125 42172 16292 Face 32581 8164 16293 26444 Face 32582 34890 20527 16293 Face 32583 1174 41246 16247 Face 32584 1174 19816 41246 Face 32585 879 16295 5987 Face 32586 27395 26209 16295 Face 32587 12464 16296 3387 Face 32588 12464 44563 16296 Face 32589 30803 35794 5397 Face 32590 338 27495 16297 Face 32591 699 16298 25209 Face 32592 36078 14445 34132 Face 32593 2023 16299 24078 Face 32594 18134 33462 27002 Face 32595 44678 16300 595 Face 32596 6789 1736 31776 Face 32597 11614 16301 32402 Face 32598 11614 32482 16301 Face 32599 47994 16302 31403 Face 32600 26915 42373 27947 Face 32601 32639 16303 37150 Face 32602 48822 28307 16303 Face 32603 34533 16304 4372 Face 32604 691 44415 16304 Face 32605 18543 47057 36848 Face 32606 33233 15218 47056 Face 32607 40251 28654 15756 Face 32608 10114 35696 16306 Face 32609 16308 16307 31372 Face 32610 30158 42466 16307 Face 32611 43048 16308 24580 Face 32612 41708 16307 16308 Face 32613 3674 16309 28843 Face 32614 39181 13459 40681 Face 32615 9621 16310 33238 Face 32616 9621 40943 16310 Face 32617 1303 22215 29923 Face 32618 32054 30204 42092 Face 32619 21652 16312 6359 Face 32620 27503 28277 16312 Face 32621 5425 16313 10593 Face 32622 5425 8599 16313 Face 32623 5425 16314 8599 Face 32624 5425 28536 16314 Face 32625 1980 27072 36444 Face 32626 1980 32000 27072 Face 32627 3744 30961 23258 Face 32628 46424 23118 16316 Face 32629 4681 37498 6867 Face 32630 27114 45624 33892 Face 32631 42944 16318 21541 Face 32632 42944 13577 16318 Face 32633 3704 16319 29400 Face 32634 28097 13208 16319 Face 32635 4053 34694 13838 Face 32636 4053 31643 16320 Face 32637 46362 45995 31114 Face 32638 6226 15935 45995 Face 32639 7063 41142 10893 Face 32640 7063 1929 41142 Face 32641 728 16323 12132 Face 32642 728 27635 16323 Face 32643 972 16324 23812 Face 32644 972 47643 16324 Face 32645 6224 16325 13048 Face 32646 6224 11333 16325 Face 32647 2802 16326 14275 Face 32648 2802 13217 16326 Face 32649 32978 16327 20254 Face 32650 32977 4344 16327 Face 32651 5885 16328 25843 Face 32652 5885 11433 16328 Face 32653 10371 16329 18978 Face 32654 27855 42785 31476 Face 32655 14083 16330 23773 Face 32656 14083 20734 16330 Face 32657 39442 16331 36916 Face 32658 8588 21805 16331 Face 32659 6485 16332 29664 Face 32660 19878 6560 16332 Face 32661 2292 16333 41717 Face 32662 2292 27667 16333 Face 32663 8190 16334 10939 Face 32664 8190 23441 16334 Face 32665 16239 16335 39898 Face 32666 16239 4057 16335 Face 32667 60 30565 49337 Face 32668 60 11176 16336 Face 32669 27867 38559 15178 Face 32670 6757 15930 16337 Face 32671 21002 16338 16273 Face 32672 4473 11894 43896 Face 32673 13080 16339 38434 Face 32674 29756 48739 16339 Face 32675 9428 37872 1141 Face 32676 9428 20497 37872 Face 32677 28691 22433 35153 Face 32678 1188 38978 22432 Face 32679 46609 16342 21051 Face 32680 1188 48711 16342 Face 32681 16344 16343 16125 Face 32682 16345 5622 16343 Face 32683 7106 16344 16125 Face 32684 16345 16343 16344 Face 32685 7106 16345 16344 Face 32686 34595 85 16345 Face 32687 5796 26348 11640 Face 32688 5796 37387 26348 Face 32689 31756 41134 15736 Face 32690 31756 30575 16347 Face 32691 5558 16348 1595 Face 32692 5558 20472 16348 Face 32693 8202 26550 19711 Face 32694 8202 49946 26550 Face 32695 9945 16350 33586 Face 32696 28293 45865 34862 Face 32697 135 16351 35703 Face 32698 28989 43843 16351 Face 32699 32486 49825 18560 Face 32700 7518 41569 49825 Face 32701 7518 16353 12221 Face 32702 7518 28134 16353 Face 32703 7115 16354 36288 Face 32704 7115 18647 16354 Face 32705 7115 16355 27964 Face 32706 7115 20495 16355 Face 32707 6359 16356 35410 Face 32708 21246 35556 19168 Face 32709 1800 41926 8401 Face 32710 1800 8509 41926 Face 32711 1800 16358 8509 Face 32712 1800 38852 16358 Face 32713 22300 37745 31844 Face 32714 22300 16880 16359 Face 32715 1412 16360 46265 Face 32716 36900 23561 16360 Face 32717 32375 16361 3648 Face 32718 41864 28046 35075 Face 32719 5081 16362 38247 Face 32720 5081 635 41772 Face 32721 2358 16363 47017 Face 32722 43319 1226 16363 Face 32723 19391 16364 622 Face 32724 1757 19817 16364 Face 32725 13077 16365 6855 Face 32726 13077 44026 16365 Face 32727 24891 38270 5811 Face 32728 82 15041 16366 Face 32729 5402 45751 35344 Face 32730 5402 24484 45751 Face 32731 46878 16368 38419 Face 32732 9178 25868 16368 Face 32733 38918 16369 45298 Face 32734 38918 20206 16369 Face 32735 16369 38822 48875 Face 32736 16369 1025 16370 Face 32737 39814 33911 13956 Face 32738 9949 32603 16371 Face 32739 7157 16372 15798 Face 32740 7157 15916 16372 Face 32741 48030 39809 4096 Face 32742 2501 10481 16373 Face 32743 45737 16374 49219 Face 32744 4889 6952 16374 Face 32745 7003 16375 4880 Face 32746 47335 16321 16375 Face 32747 5485 16376 2242 Face 32748 5485 32532 17954 Face 32749 5239 16377 23923 Face 32750 5239 25481 16377 Face 32751 7753 16378 36760 Face 32752 7753 4521 16378 Face 32753 3738 16379 48459 Face 32754 29718 27209 16379 Face 32755 34998 28690 10765 Face 32756 8237 38480 16380 Face 32757 17574 16381 36699 Face 32758 5158 25057 16381 Face 32759 6762 16382 31327 Face 32760 6762 14107 16382 Face 32761 10232 16383 24858 Face 32762 23487 28079 16383 Face 32763 4022 16384 1038 Face 32764 16385 33426 16384 Face 32765 4022 16385 16384 Face 32766 4022 19169 44067 Face 32767 36328 16386 7503 Face 32768 547 47243 16386 Face 32769 9297 16387 26424 Face 32770 45236 8538 16387 Face 32771 20396 16388 14224 Face 32772 20396 49807 16388 Face 32773 13941 16389 11852 Face 32774 20648 13995 16389 Face 32775 19053 16390 19868 Face 32776 29980 38537 16390 Face 32777 5268 16391 40827 Face 32778 5268 49023 16391 Face 32779 278 16392 24971 Face 32780 278 6207 16392 Face 32781 37065 35918 4355 Face 32782 2924 30901 16393 Face 32783 46255 16394 12592 Face 32784 37963 25202 16394 Face 32785 16570 16395 23446 Face 32786 16570 35868 16395 Face 32787 9000 16396 49872 Face 32788 9000 27044 16396 Face 32789 42976 16397 21800 Face 32790 4331 6815 16397 Face 32791 74 16398 7301 Face 32792 74 42881 16398 Face 32793 45036 37722 20666 Face 32794 45035 34459 16399 Face 32795 7533 44304 22297 Face 32796 47369 27015 16400 Face 32797 4006 16401 21682 Face 32798 4006 38521 16401 Face 32799 4006 16402 14761 Face 32800 4006 30906 47094 Face 32801 411 16403 4653 Face 32802 411 25015 16403 Face 32803 11312 23779 30975 Face 32804 27521 36451 16404 Face 32805 22628 43306 35446 Face 32806 1387 18782 43306 Face 32807 28344 24491 48249 Face 32808 16639 32339 40181 Face 32809 7800 16407 11361 Face 32810 33162 3270 16407 Face 32811 40432 16408 45576 Face 32812 42522 42226 16408 Face 32813 3072 16409 4778 Face 32814 22788 12948 16409 Face 32815 49848 16410 9194 Face 32816 37593 24198 16410 Face 32817 6633 16411 37018 Face 32818 33707 14334 49084 Face 32819 20785 25190 46063 Face 32820 36221 29256 16412 Face 32821 2114 16413 23792 Face 32822 2114 20905 16413 Face 32823 6589 16414 20684 Face 32824 6589 3991 16414 Face 32825 1693 16415 22418 Face 32826 34454 6395 16415 Face 32827 5998 16416 47677 Face 32828 5998 6026 16416 Face 32829 38328 16417 19804 Face 32830 7508 41999 16417 Face 32831 3587 16418 21698 Face 32832 49808 6891 33393 Face 32833 17931 16419 45157 Face 32834 1703 30095 16419 Face 32835 6425 16420 37096 Face 32836 32846 24184 16420 Face 32837 7939 47367 3584 Face 32838 7939 33159 16421 Face 32839 35587 38364 4293 Face 32840 6533 40166 16422 Face 32841 20344 16423 41572 Face 32842 30255 21522 33043 Face 32843 7730 44394 22971 Face 32844 24261 11432 16424 Face 32845 34896 16425 22090 Face 32846 34896 13805 16425 Face 32847 35059 34081 43552 Face 32848 16427 41749 19548 Face 32849 968 16427 16426 Face 32850 968 42875 16427 Face 32851 43547 16428 27068 Face 32852 1244 12365 16428 Face 32853 32865 26555 47037 Face 32854 9124 14596 16429 Face 32855 44256 28561 7633 Face 32856 2004 7824 16430 Face 32857 7560 27302 2201 Face 32858 7560 11707 27302 Face 32859 47314 16432 3623 Face 32860 8998 11968 16432 Face 32861 11029 16433 49768 Face 32862 11029 24343 16433 Face 32863 2666 16434 41982 Face 32864 2666 31073 16434 Face 32865 16436 16435 7223 Face 32866 46518 8682 16435 Face 32867 5098 31852 45661 Face 32868 5098 16435 16436 Face 32869 31852 16437 41890 Face 32870 16436 30317 16437 Face 32871 10249 16438 31138 Face 32872 10249 2972 16438 Face 32873 47868 16439 18466 Face 32874 47868 25974 16439 Face 32875 11315 16440 5923 Face 32876 11315 40159 16440 Face 32877 16442 16441 10041 Face 32878 5400 13767 32062 Face 32879 5400 16442 17922 Face 32880 5400 16441 16442 Face 32881 25233 16443 23647 Face 32882 37095 4885 41005 Face 32883 5884 16444 2832 Face 32884 5884 43721 16444 Face 32885 12227 16445 11584 Face 32886 12227 37906 16445 Face 32887 28962 16446 18581 Face 32888 28962 49435 16446 Face 32889 9548 16447 32203 Face 32890 9548 5074 16447 Face 32891 5765 16448 5142 Face 32892 5765 35861 16448 Face 32893 4405 16449 44140 Face 32894 4405 22083 16449 Face 32895 5787 16450 38046 Face 32896 49733 6063 16450 Face 32897 41358 16451 31673 Face 32898 41358 5518 16451 Face 32899 1627 16452 14104 Face 32900 1627 31559 16452 Face 32901 3587 22246 16418 Face 32902 3587 40616 22246 Face 32903 9608 16454 23277 Face 32904 9608 2828 37895 Face 32905 10629 16455 33926 Face 32906 10629 35961 16455 Face 32907 23549 16456 42424 Face 32908 23168 21710 29748 Face 32909 7099 16457 16458 Face 32910 41007 1985 16457 Face 32911 1984 16458 32723 Face 32912 23808 7099 16458 Face 32913 11487 16459 36831 Face 32914 30342 20247 16459 Face 32915 47141 16460 43208 Face 32916 47141 30053 16460 Face 32917 396 16461 20673 Face 32918 27708 11237 45999 Face 32919 9164 16462 1969 Face 32920 19697 18332 16462 Face 32921 33600 16463 24571 Face 32922 32676 15582 16463 Face 32923 5072 16464 15323 Face 32924 30629 15165 16464 Face 32925 10512 16465 5892 Face 32926 10512 2317 16465 Face 32927 2617 16466 6939 Face 32928 2617 7591 16466 Face 32929 2064 16467 43681 Face 32930 2064 25284 16467 Face 32931 25588 16468 47841 Face 32932 327 6652 16468 Face 32933 41879 31461 14665 Face 32934 5995 39221 31462 Face 32935 5437 16470 910 Face 32936 5437 18264 16470 Face 32937 16472 16471 35110 Face 32938 12268 2998 16471 Face 32939 30987 16472 8882 Face 32940 30987 16471 16472 Face 32941 14283 16473 40232 Face 32942 19235 19234 16473 Face 32943 9898 16474 38324 Face 32944 9898 15450 16474 Face 32945 28401 23269 10510 Face 32946 14819 14820 16475 Face 32947 23555 16476 9291 Face 32948 1325 41560 16476 Face 32949 4746 41019 21305 Face 32950 4746 39494 16477 Face 32951 7600 16478 25915 Face 32952 39757 15752 16478 Face 32953 3810 16479 34812 Face 32954 3810 43496 16479 Face 32955 37909 16480 15961 Face 32956 3277 439 16480 Face 32957 3277 16481 23750 Face 32958 3277 16480 16481 Face 32959 6356 16482 13104 Face 32960 6356 34534 16482 Face 32961 21327 16483 12775 Face 32962 5782 19444 16483 Face 32963 7997 16484 13215 Face 32964 40884 5671 16484 Face 32965 9034 16485 19705 Face 32966 28564 13069 16485 Face 32967 19670 16486 32120 Face 32968 7263 43235 16486 Face 32969 3454 16487 38877 Face 32970 3454 42467 16487 Face 32971 935 16488 24931 Face 32972 19219 48871 16488 Face 32973 5040 16489 37269 Face 32974 23146 29768 16489 Face 32975 21794 35427 2845 Face 32976 25936 49278 16490 Face 32977 678 16491 23685 Face 32978 26197 27842 45008 Face 32979 3994 16492 19918 Face 32980 3994 28160 33433 Face 32981 8937 16493 28700 Face 32982 26710 19191 16493 Face 32983 2266 28704 11284 Face 32984 2266 33298 28704 Face 32985 455 16495 11342 Face 32986 455 27778 16495 Face 32987 7209 16496 13933 Face 32988 7209 26479 16496 Face 32989 16498 34099 24838 Face 32990 20918 43569 16497 Face 32991 33191 16498 12763 Face 32992 18013 16497 16498 Face 32993 6777 16499 34355 Face 32994 6777 15960 16499 Face 32995 6581 16500 10934 Face 32996 6581 46015 16500 Face 32997 5802 31375 43269 Face 32998 46907 25191 16501 Face 32999 2159 16502 12968 Face 33000 2159 5649 16502 Face 33001 4617 16503 25761 Face 33002 4617 45279 16503 Face 33003 21334 37238 46530 Face 33004 5856 28451 16504 Face 33005 27606 16505 9834 Face 33006 27606 39316 16505 Face 33007 41541 25777 20558 Face 33008 2322 13594 32373 Face 33009 3046 16507 32144 Face 33010 45344 49891 16507 Face 33011 38002 16508 25572 Face 33012 32777 20696 16508 Face 33013 24323 47933 25552 Face 33014 24322 3372 30896 Face 33015 29802 16510 46472 Face 33016 2074 29288 16510 Face 33017 44552 16511 27458 Face 33018 3239 42836 16511 Face 33019 35731 16512 44058 Face 33020 35731 9057 16512 Face 33021 13519 16513 17204 Face 33022 27840 34134 16513 Face 33023 202 16514 8006 Face 33024 202 41993 16514 Face 33025 37378 46383 35923 Face 33026 38026 10327 33017 Face 33027 2696 16516 39983 Face 33028 2696 28560 34324 Face 33029 37594 16517 6525 Face 33030 13386 36266 16517 Face 33031 4010 17793 31956 Face 33032 20812 32560 23155 Face 33033 5102 16519 33776 Face 33034 37546 49386 16519 Face 33035 5934 16520 14859 Face 33036 5934 19310 16520 Face 33037 42392 26624 36057 Face 33038 21628 12782 16521 Face 33039 9525 16522 45970 Face 33040 39431 6915 16522 Face 33041 22212 16523 36106 Face 33042 9577 35667 16523 Face 33043 20836 16524 7229 Face 33044 5245 37547 16524 Face 33045 5245 16525 11202 Face 33046 20836 7229 27631 Face 33047 1789 16526 15625 Face 33048 1789 32223 16526 Face 33049 1287 42546 30124 Face 33050 1287 36552 16527 Face 33051 1021 16528 12771 Face 33052 1021 39556 16528 Face 33053 3983 16529 34295 Face 33054 3983 18733 40167 Face 33055 15591 16530 36298 Face 33056 15591 28127 16530 Face 33057 11494 16531 38259 Face 33058 11494 36229 16531 Face 33059 35136 16532 46387 Face 33060 35136 27469 16532 Face 33061 31918 16533 21707 Face 33062 31918 46494 16533 Face 33063 8603 47068 9905 Face 33064 8603 15015 16534 Face 33065 3265 16535 19110 Face 33066 3265 45013 16535 Face 33067 1120 16536 11702 Face 33068 1120 10499 16536 Face 33069 9600 16537 7576 Face 33070 37460 36611 45244 Face 33071 8386 16538 3721 Face 33072 8386 43470 16538 Face 33073 3627 16539 32627 Face 33074 3627 41281 16539 Face 33075 8239 28438 31743 Face 33076 48139 39953 36651 Face 33077 16542 37237 41574 Face 33078 48637 4581 16541 Face 33079 8239 33314 16543 Face 33080 48637 16541 33314 Face 33081 29044 35686 16542 Face 33082 39953 28126 35686 Face 33083 6030 16544 18788 Face 33084 6030 15783 16544 Face 33085 3919 16545 30004 Face 33086 28424 19656 16545 Face 33087 28424 45877 48963 Face 33088 3919 2204 16546 Face 33089 3023 16547 44508 Face 33090 18236 35214 16547 Face 33091 1458 16548 15391 Face 33092 44748 3541 16548 Face 33093 1554 16549 13680 Face 33094 1554 13968 16549 Face 33095 5585 16550 41314 Face 33096 5585 36271 16550 Face 33097 4581 16551 30847 Face 33098 31743 28438 25331 Face 33099 1090 16552 41764 Face 33100 1090 46055 16552 Face 33101 2918 16553 10814 Face 33102 30684 14159 16553 Face 33103 3440 16554 14633 Face 33104 3440 39073 16554 Face 33105 13029 16555 36825 Face 33106 13029 35268 16555 Face 33107 36053 16556 29025 Face 33108 36053 41585 16556 Face 33109 16558 16557 13448 Face 33110 49340 34677 16557 Face 33111 43907 16558 18925 Face 33112 49340 16557 16558 Face 33113 919 16559 29547 Face 33114 919 7637 16559 Face 33115 9521 16560 14861 Face 33116 18026 12750 32752 Face 33117 3111 22935 10724 Face 33118 22308 31702 16561 Face 33119 12053 16562 29154 Face 33120 30259 23299 16562 Face 33121 3482 16563 24245 Face 33122 3482 39669 16563 Face 33123 679 31603 2430 Face 33124 42020 3795 31603 Face 33125 4552 30482 19517 Face 33126 37250 17842 30482 Face 33127 4552 16566 8457 Face 33128 4552 33624 43682 Face 33129 2711 16567 21421 Face 33130 40760 10099 16567 Face 33131 40760 16568 29080 Face 33132 2711 39666 16568 Face 33133 33068 16569 27271 Face 33134 27749 47214 16569 Face 33135 36293 16570 23446 Face 33136 36293 27697 16570 Face 33137 9620 43748 17882 Face 33138 9620 14572 16571 Face 33139 19820 16572 45770 Face 33140 4397 22927 16572 Face 33141 25056 46478 32020 Face 33142 30895 15829 42584 Face 33143 41952 16574 2553 Face 33144 4806 46662 16574 Face 33145 7611 41408 24607 Face 33146 7611 28076 49222 Face 33147 33968 16576 956 Face 33148 10383 31296 16576 Face 33149 38839 16577 29864 Face 33150 9430 5260 16577 Face 33151 40340 16578 13476 Face 33152 9578 4099 35216 Face 33153 27104 35566 33118 Face 33154 3133 11686 39052 Face 33155 10926 16580 34596 Face 33156 42251 17316 16580 Face 33157 3595 22173 39328 Face 33158 36356 32440 44718 Face 33159 30214 16582 22443 Face 33160 33229 24438 16582 Face 33161 8977 16583 5150 Face 33162 23844 42785 16583 Face 33163 11857 16584 41020 Face 33164 11857 19495 16584 Face 33165 49700 16585 17872 Face 33166 26523 9443 16585 Face 33167 909 37221 9443 Face 33168 909 14484 16586 Face 33169 25462 44604 35119 Face 33170 25462 37175 16587 Face 33171 20814 16588 1892 Face 33172 20814 13130 16588 Face 33173 35598 26496 24837 Face 33174 5719 47426 26496 Face 33175 4788 40502 23009 Face 33176 4788 6011 40503 Face 33177 33581 22003 37186 Face 33178 41556 45904 16591 Face 33179 8516 16592 44742 Face 33180 8516 43009 16592 Face 33181 8516 47950 43009 Face 33182 8516 34792 16593 Face 33183 21699 35941 42594 Face 33184 32751 48577 16594 Face 33185 27049 16595 3340 Face 33186 5728 19190 40295 Face 33187 38476 16596 29111 Face 33188 42197 26427 16596 Face 33189 3272 25583 9392 Face 33190 3272 40401 25583 Face 33191 3741 16598 2991 Face 33192 43809 13478 48528 Face 33193 29529 16599 38587 Face 33194 3294 30633 16599 Face 33195 7514 16600 1058 Face 33196 7514 6852 16600 Face 33197 48352 16601 4770 Face 33198 12581 9553 16601 Face 33199 10308 16602 32928 Face 33200 10308 10307 16602 Face 33201 29666 42620 4952 Face 33202 31902 9641 16603 Face 33203 9529 16604 35445 Face 33204 9529 25649 23806 Face 33205 2905 16605 35919 Face 33206 2905 43664 16605 Face 33207 44902 39750 13152 Face 33208 16607 23705 16606 Face 33209 34616 44902 13152 Face 33210 2336 42404 44902 Face 33211 361 16608 37888 Face 33212 32502 22347 16608 Face 33213 4625 16609 34909 Face 33214 4625 8896 16609 Face 33215 42471 38492 10754 Face 33216 28689 7620 38491 Face 33217 3121 16611 28900 Face 33218 3121 43665 16611 Face 33219 42720 16612 9872 Face 33220 16611 43665 16612 Face 33221 20815 42108 26226 Face 33222 33370 403 16613 Face 33223 28743 47672 27142 Face 33224 12736 22568 16614 Face 33225 43072 16615 9699 Face 33226 1650 13602 36002 Face 33227 17754 45377 12725 Face 33228 30498 25286 16616 Face 33229 39262 16617 15184 Face 33230 39263 30753 16617 Face 33231 46927 16618 42993 Face 33232 46927 41915 16618 Face 33233 36270 16619 47876 Face 33234 13352 6572 32134 Face 33235 8975 16620 26138 Face 33236 8975 43641 35240 Face 33237 12382 16621 48818 Face 33238 44475 29943 16621 Face 33239 20838 36767 30173 Face 33240 5963 34059 36767 Face 33241 2529 16623 44713 Face 33242 2529 42365 16623 Face 33243 31027 16624 13764 Face 33244 2181 4229 42449 Face 33245 1694 16625 48847 Face 33246 1694 15983 16625 Face 33247 31680 16626 21103 Face 33248 21417 26732 16626 Face 33249 4700 16627 27794 Face 33250 4700 49032 16627 Face 33251 33514 31629 8555 Face 33252 3557 45693 16628 Face 33253 45268 16629 35458 Face 33254 45268 33866 16629 Face 33255 26355 22393 5057 Face 33256 41781 19940 22393 Face 33257 24979 16631 8925 Face 33258 36685 20884 16631 Face 33259 44854 16632 3044 Face 33260 44854 1091 16632 Face 33261 45638 16633 26736 Face 33262 41105 11209 16633 Face 33263 2252 16634 42159 Face 33264 2252 41140 28317 Face 33265 10467 16635 22675 Face 33266 10467 413 16635 Face 33267 7262 34122 34123 Face 33268 37463 20580 34122 Face 33269 1280 37389 13281 Face 33270 33516 12726 29636 Face 33271 31571 40200 18105 Face 33272 5008 26016 16638 Face 33273 1853 16639 39929 Face 33274 1853 32339 16639 Face 33275 26368 16640 44079 Face 33276 3086 35120 16640 Face 33277 28037 16641 8780 Face 33278 49481 20591 16641 Face 33279 17371 44701 34419 Face 33280 153 22458 16642 Face 33281 13506 16643 30710 Face 33282 13506 37030 16643 Face 33283 17489 16644 43182 Face 33284 32959 4533 29958 Face 33285 6042 41396 10044 Face 33286 29909 36334 33614 Face 33287 7613 16646 28020 Face 33288 7613 30904 16646 Face 33289 12516 16647 21680 Face 33290 12516 31199 16647 Face 33291 27550 16648 22072 Face 33292 28315 32288 16648 Face 33293 2182 16649 8752 Face 33294 40412 45424 16649 Face 33295 16748 16650 12597 Face 33296 365 12019 39053 Face 33297 22279 16651 36422 Face 33298 22279 45742 46913 Face 33299 5188 31748 27277 Face 33300 35774 1976 16652 Face 33301 16654 16653 33777 Face 33302 2186 34217 16653 Face 33303 26089 16654 4573 Face 33304 2186 16653 16654 Face 33305 16707 16655 32098 Face 33306 393 41484 16655 Face 33307 13214 16656 1829 Face 33308 26913 13512 16656 Face 33309 7225 35959 24259 Face 33310 7225 48519 16657 Face 33311 2076 37823 7069 Face 33312 41267 46535 16658 Face 33313 22330 16659 14473 Face 33314 6185 8878 16659 Face 33315 16661 29574 5195 Face 33316 25291 28369 16660 Face 33317 20883 25290 40993 Face 33318 232 16660 16661 Face 33319 42153 29687 14386 Face 33320 7726 32585 16662 Face 33321 16664 16663 22692 Face 33322 3242 14221 16663 Face 33323 42795 16664 47296 Face 33324 3242 16663 16664 Face 33325 5426 16665 35811 Face 33326 29459 20059 16665 Face 33327 8315 16666 39287 Face 33328 8315 14925 16666 Face 33329 2664 16667 9021 Face 33330 2664 19613 16667 Face 33331 26940 16668 1605 Face 33332 6469 41980 16668 Face 33333 10683 33977 41321 Face 33334 10683 20402 16669 Face 33335 676 16670 19240 Face 33336 45211 8923 16670 Face 33337 42380 16671 44234 Face 33338 3051 26158 40824 Face 33339 47607 16672 14856 Face 33340 47607 40752 16672 Face 33341 2770 16673 28400 Face 33342 2770 23819 39566 Face 33343 24880 16674 41790 Face 33344 6988 3683 31371 Face 33345 3712 16675 39188 Face 33346 3712 1262 49799 Face 33347 39390 16676 44222 Face 33348 2554 7493 32953 Face 33349 42445 16677 6360 Face 33350 16678 43254 16677 Face 33351 42445 16678 16677 Face 33352 41067 30258 33580 Face 33353 6743 16679 25153 Face 33354 6743 1126 43337 Face 33355 7069 43802 35379 Face 33356 7069 26059 43802 Face 33357 1595 16681 17421 Face 33358 1595 48633 16681 Face 33359 124 31939 13251 Face 33360 124 19604 16682 Face 33361 3654 16683 31196 Face 33362 3654 11185 16683 Face 33363 6652 16684 31402 Face 33364 16685 14193 21954 Face 33365 6652 16685 35278 Face 33366 6652 37361 16685 Face 33367 8173 16686 5162 Face 33368 41161 19879 16686 Face 33369 41161 16687 8174 Face 33370 34461 13339 16687 Face 33371 12678 16688 13456 Face 33372 12678 49166 16688 Face 33373 23689 16689 19164 Face 33374 31870 39242 16689 Face 33375 41404 16690 23709 Face 33376 10159 26383 16690 Face 33377 28926 16691 33784 Face 33378 5626 11861 16691 Face 33379 34451 16692 46404 Face 33380 40565 12773 16692 Face 33381 1547 16693 3709 Face 33382 1547 15886 28671 Face 33383 18507 16694 34073 Face 33384 1817 25438 16694 Face 33385 1173 16695 47072 Face 33386 1173 45194 16695 Face 33387 7781 47932 18207 Face 33388 16697 9129 16696 Face 33389 22690 16697 16696 Face 33390 22690 46763 16697 Face 33391 5064 16698 27942 Face 33392 5064 8417 16698 Face 33393 1072 16699 13787 Face 33394 47707 13730 32207 Face 33395 48932 16700 25005 Face 33396 7608 19512 34138 Face 33397 4852 16701 49932 Face 33398 4852 8171 47721 Face 33399 10958 16702 14039 Face 33400 19806 32213 23650 Face 33401 40881 16703 28865 Face 33402 40881 2307 16703 Face 33403 4519 16704 15826 Face 33404 43417 47565 16704 Face 33405 851 16705 40515 Face 33406 851 40193 16705 Face 33407 12105 16706 44 Face 33408 49055 38447 16706 Face 33409 393 16707 6778 Face 33410 393 16655 16707 Face 33411 3413 16708 39152 Face 33412 29367 17850 16708 Face 33413 47341 16709 40861 Face 33414 44785 40122 16709 Face 33415 4935 16710 33712 Face 33416 4935 12958 16710 Face 33417 3666 42738 9636 Face 33418 3666 13874 16711 Face 33419 5300 16712 44483 Face 33420 5300 4330 16712 Face 33421 5833 16713 37095 Face 33422 32247 283 47875 Face 33423 20606 16714 31197 Face 33424 3127 41584 16714 Face 33425 41875 16715 28603 Face 33426 9178 16368 16715 Face 33427 19014 21747 39055 Face 33428 29899 44646 16716 Face 33429 46797 16717 21409 Face 33430 994 22076 16717 Face 33431 2232 16718 6724 Face 33432 2232 15858 16718 Face 33433 16720 29314 11955 Face 33434 102 23281 16719 Face 33435 102 16720 21207 Face 33436 102 16719 16721 Face 33437 16720 16721 29314 Face 33438 16720 102 16721 Face 33439 7223 48642 16436 Face 33440 7223 39470 16722 Face 33441 19095 16723 1578 Face 33442 110 29741 16723 Face 33443 38484 44453 2093 Face 33444 12286 24542 31177 Face 33445 11309 36288 16354 Face 33446 11309 11768 16725 Face 33447 19845 36394 14691 Face 33448 4961 29955 16726 Face 33449 3669 16727 13799 Face 33450 3669 15551 16727 Face 33451 20 16728 11214 Face 33452 35991 11221 49811 Face 33453 3477 16729 45579 Face 33454 3477 46617 16729 Face 33455 41255 49986 28150 Face 33456 6114 37847 16730 Face 33457 3566 16731 47563 Face 33458 3566 38132 16731 Face 33459 35508 16732 31605 Face 33460 5748 11032 16732 Face 33461 32002 16733 26847 Face 33462 32002 12958 16733 Face 33463 15252 16734 41297 Face 33464 15252 18824 16734 Face 33465 3739 32471 3849 Face 33466 3739 11905 32471 Face 33467 25397 16736 29260 Face 33468 10872 21808 16736 Face 33469 49924 16737 32765 Face 33470 14753 6974 16737 Face 33471 5719 16738 9761 Face 33472 5719 26496 35598 Face 33473 2590 16739 22432 Face 33474 2590 308 16739 Face 33475 7636 30491 14096 Face 33476 7636 24301 30491 Face 33477 27252 16741 14345 Face 33478 41319 7766 16741 Face 33479 461 16742 23532 Face 33480 461 37937 16742 Face 33481 40318 36274 14335 Face 33482 3927 46454 16743 Face 33483 3927 16744 46454 Face 33484 3927 18810 49966 Face 33485 1857 16745 30929 Face 33486 1857 40788 16745 Face 33487 4753 16746 41228 Face 33488 4753 15722 25060 Face 33489 26925 16747 6139 Face 33490 11450 20302 16747 Face 33491 365 48929 14655 Face 33492 365 39053 48929 Face 33493 25873 16749 33174 Face 33494 35126 23621 16749 Face 33495 32677 16750 13336 Face 33496 2791 10855 16750 Face 33497 6121 16751 47914 Face 33498 6121 36110 16751 Face 33499 5564 43706 23737 Face 33500 5564 35504 16752 Face 33501 19694 29596 39703 Face 33502 23199 48765 16753 Face 33503 35042 16754 390 Face 33504 28898 23932 16754 Face 33505 3410 18418 11914 Face 33506 18421 38505 35252 Face 33507 2941 16756 33956 Face 33508 43279 19219 16756 Face 33509 2016 16757 9383 Face 33510 2016 8431 16757 Face 33511 11159 16758 21366 Face 33512 11159 32129 16758 Face 33513 28449 16759 20021 Face 33514 10140 33136 16759 Face 33515 32546 37115 17648 Face 33516 6958 11764 37115 Face 33517 3635 16761 25355 Face 33518 27617 7034 46990 Face 33519 2953 16762 47087 Face 33520 2953 44336 33099 Face 33521 42037 36820 8029 Face 33522 192 42409 16763 Face 33523 8405 16764 11769 Face 33524 8405 13914 41528 Face 33525 32837 16765 10272 Face 33526 11142 16897 16765 Face 33527 48273 36509 13951 Face 33528 7131 43202 16766 Face 33529 16893 45833 19200 Face 33530 30151 29968 45833 Face 33531 2657 16768 25918 Face 33532 2657 37982 16768 Face 33533 48363 28489 15661 Face 33534 17493 30715 16769 Face 33535 1717 16770 41084 Face 33536 1717 42254 16770 Face 33537 7195 43476 15029 Face 33538 7195 15375 43476 Face 33539 10951 37195 48781 Face 33540 27459 17935 16772 Face 33541 3864 16773 23046 Face 33542 43193 24986 16773 Face 33543 3648 16774 46408 Face 33544 3648 35290 16774 Face 33545 23921 48708 18481 Face 33546 41171 43105 16775 Face 33547 16778 16776 30815 Face 33548 35537 17397 34137 Face 33549 1290 16778 30815 Face 33550 1290 28436 16778 Face 33551 16777 16778 28436 Face 33552 16777 34137 16779 Face 33553 16778 16779 16776 Face 33554 16778 16777 16779 Face 33555 1353 16780 26255 Face 33556 1353 22625 16780 Face 33557 7276 48102 15707 Face 33558 7276 28109 16781 Face 33559 7814 16782 23424 Face 33560 7814 36608 16782 Face 33561 37057 38930 10733 Face 33562 37057 13010 38930 Face 33563 9673 16784 35205 Face 33564 9673 409 16784 Face 33565 5182 16785 1229 Face 33566 5182 11836 16785 Face 33567 11313 49244 11973 Face 33568 11313 14378 26841 Face 33569 7937 16787 12873 Face 33570 7937 476 16787 Face 33571 28776 16788 4444 Face 33572 4271 34317 16788 Face 33573 4776 16789 40622 Face 33574 30147 4807 16789 Face 33575 29387 16790 18326 Face 33576 29387 15152 16790 Face 33577 19830 38105 22988 Face 33578 5906 2219 35835 Face 33579 43334 16792 32579 Face 33580 11837 6553 16792 Face 33581 25540 42290 37761 Face 33582 25540 1561 16793 Face 33583 3382 30093 24456 Face 33584 3382 7931 47744 Face 33585 7080 42211 18574 Face 33586 7080 175 16795 Face 33587 13473 16796 3820 Face 33588 13473 5298 16796 Face 33589 13997 16797 45251 Face 33590 13997 19148 16797 Face 33591 39482 16798 30706 Face 33592 7384 28632 16798 Face 33593 11529 16799 6064 Face 33594 11529 21014 38913 Face 33595 3301 49320 14855 Face 33596 3301 40755 16800 Face 33597 11123 16801 26284 Face 33598 11123 34223 16801 Face 33599 24834 45154 5868 Face 33600 24834 32583 16802 Face 33601 8591 16803 45216 Face 33602 8591 17853 16803 Face 33603 119 16804 36446 Face 33604 119 37468 16804 Face 33605 5635 16805 38272 Face 33606 5635 13207 16805 Face 33607 23220 48092 35954 Face 33608 36983 39222 43058 Face 33609 17213 42550 7795 Face 33610 36122 12649 16807 Face 33611 48198 16808 40705 Face 33612 2065 30341 38685 Face 33613 30927 16809 22269 Face 33614 48198 9144 16809 Face 33615 1886 16810 40662 Face 33616 44648 15239 16810 Face 33617 4709 47483 19024 Face 33618 4709 31650 16811 Face 33619 10491 16812 35553 Face 33620 10491 49124 16812 Face 33621 3576 16813 15631 Face 33622 19898 36482 16813 Face 33623 32666 36057 15332 Face 33624 769 14270 16814 Face 33625 163 16815 39285 Face 33626 43778 13736 16815 Face 33627 7282 46856 38066 Face 33628 7282 12181 46856 Face 33629 48864 16817 6606 Face 33630 3602 22748 16817 Face 33631 4584 16818 20009 Face 33632 4584 23769 16818 Face 33633 2469 16819 1354 Face 33634 41400 14038 42744 Face 33635 29078 16820 15302 Face 33636 18345 11440 16820 Face 33637 8471 16821 25767 Face 33638 8471 2909 16821 Face 33639 233 16822 36288 Face 33640 49677 16242 16822 Face 33641 8070 40704 13065 Face 33642 8070 46287 16823 Face 33643 22227 16824 25699 Face 33644 1426 16825 16824 Face 33645 6768 16825 27102 Face 33646 6768 16824 16825 Face 33647 36888 47196 32194 Face 33648 16827 44532 16826 Face 33649 5137 36888 32194 Face 33650 5137 3590 16827 Face 33651 9371 16828 26570 Face 33652 33947 12921 44944 Face 33653 4890 16829 41729 Face 33654 4890 38451 44722 Face 33655 15210 16830 15212 Face 33656 15210 2165 16830 Face 33657 2145 16831 2632 Face 33658 2145 19270 16831 Face 33659 35544 16832 18954 Face 33660 2922 32483 16832 Face 33661 12995 16833 2734 Face 33662 12995 21788 44912 Face 33663 4051 16834 10397 Face 33664 20382 1864 16834 Face 33665 38531 16835 6960 Face 33666 38531 14149 49381 Face 33667 49082 16836 37727 Face 33668 16837 9983 16836 Face 33669 2281 49082 29553 Face 33670 34319 9966 45694 Face 33671 25689 16838 7751 Face 33672 9758 19892 46334 Face 33673 3619 16839 38894 Face 33674 3619 43763 16839 Face 33675 18629 35804 1369 Face 33676 4224 44796 35804 Face 33677 14299 16841 36262 Face 33678 14299 20362 47142 Face 33679 35842 31347 28605 Face 33680 35843 39083 16842 Face 33681 2642 16843 49632 Face 33682 2642 35113 16843 Face 33683 7719 45053 11126 Face 33684 7719 29481 45053 Face 33685 5547 16845 45263 Face 33686 5547 24596 16845 Face 33687 37057 16846 22331 Face 33688 37057 19710 16846 Face 33689 10579 16847 39016 Face 33690 10579 42051 16847 Face 33691 467 41914 26914 Face 33692 43091 16225 49470 Face 33693 4395 39129 41217 Face 33694 46749 37303 39129 Face 33695 116 26379 14527 Face 33696 47948 14480 16850 Face 33697 5870 16851 25962 Face 33698 19046 14349 16851 Face 33699 6823 16852 11557 Face 33700 38982 15081 16852 Face 33701 9112 16853 15878 Face 33702 9112 11467 16853 Face 33703 10303 16854 28636 Face 33704 10303 18072 16854 Face 33705 35584 16855 1462 Face 33706 7290 37700 16855 Face 33707 27745 16856 11505 Face 33708 3442 32525 16856 Face 33709 9388 28928 24519 Face 33710 9388 21773 28928 Face 33711 16859 33253 36785 Face 33712 28615 16450 33254 Face 33713 42603 26711 19098 Face 33714 917 33254 23288 Face 33715 40431 16860 23578 Face 33716 6926 12880 16860 Face 33717 32761 16861 11351 Face 33718 7472 11738 16861 Face 33719 42431 16862 20424 Face 33720 4329 22180 16862 Face 33721 1118 16863 15070 Face 33722 46342 18826 49062 Face 33723 6824 16864 36892 Face 33724 27835 25402 16864 Face 33725 9253 16865 22423 Face 33726 45419 20283 34668 Face 33727 3175 16866 33978 Face 33728 3175 45766 16866 Face 33729 11515 16867 46049 Face 33730 11515 28046 16867 Face 33731 10030 31139 10031 Face 33732 16869 10394 27041 Face 33733 10030 16869 31139 Face 33734 10030 6502 16869 Face 33735 6740 16870 5589 Face 33736 28990 9648 43181 Face 33737 4490 16871 24429 Face 33738 31350 21244 16871 Face 33739 1577 16872 13045 Face 33740 1577 9347 16872 Face 33741 37865 16873 6517 Face 33742 1050 5173 16873 Face 33743 6673 16874 49907 Face 33744 6673 10002 16874 Face 33745 3035 16875 15753 Face 33746 3035 12900 16875 Face 33747 20716 16876 43615 Face 33748 20716 29623 45805 Face 33749 3402 16877 8574 Face 33750 3402 8203 16877 Face 33751 40277 16878 30104 Face 33752 10349 23683 16878 Face 33753 4547 29761 41256 Face 33754 4547 48212 16879 Face 33755 2705 16880 47676 Face 33756 2705 16359 16880 Face 33757 10495 45109 3310 Face 33758 10495 41905 16881 Face 33759 5052 16882 19294 Face 33760 5052 21435 16882 Face 33761 6820 44593 38379 Face 33762 6820 36234 44593 Face 33763 841 40474 24655 Face 33764 16885 19461 16884 Face 33765 38139 16885 16884 Face 33766 31269 26233 16885 Face 33767 9323 16886 21343 Face 33768 9323 4923 16886 Face 33769 40825 16887 36255 Face 33770 48971 36942 16887 Face 33771 8243 16888 26274 Face 33772 8243 2986 16888 Face 33773 397 16889 14118 Face 33774 397 48025 35052 Face 33775 11352 45699 11022 Face 33776 11352 34036 45699 Face 33777 45320 16891 17841 Face 33778 8457 16566 34386 Face 33779 19427 16892 7093 Face 33780 844 5824 16892 Face 33781 3043 16893 17353 Face 33782 3043 45833 16893 Face 33783 10313 16894 31540 Face 33784 45695 8388 16894 Face 33785 5050 16895 43224 Face 33786 5050 43323 16895 Face 33787 9550 16896 7253 Face 33788 24598 14610 16896 Face 33789 28606 16897 11142 Face 33790 28606 26399 16897 Face 33791 43694 33183 10280 Face 33792 3164 21340 16898 Face 33793 34871 16899 21815 Face 33794 34872 9732 16899 Face 33795 44807 40888 46756 Face 33796 3977 49730 16900 Face 33797 11034 43729 14854 Face 33798 34683 12886 16901 Face 33799 10143 16902 17755 Face 33800 10143 18478 16902 Face 33801 4731 44280 8224 Face 33802 16904 19534 34076 Face 33803 4731 16904 34076 Face 33804 4731 49709 16904 Face 33805 5168 25893 35336 Face 33806 5168 20152 25893 Face 33807 7370 16906 3930 Face 33808 7370 2108 16906 Face 33809 579 16907 42277 Face 33810 579 23267 38443 Face 33811 131 16908 9016 Face 33812 131 23937 16908 Face 33813 35576 16909 23324 Face 33814 4342 29587 16909 Face 33815 1071 16910 8134 Face 33816 1071 43081 16910 Face 33817 47536 21659 10911 Face 33818 2777 40259 16911 Face 33819 25883 29365 3977 Face 33820 16913 9280 48240 Face 33821 5463 16913 16912 Face 33822 5463 10361 16913 Face 33823 3489 16914 32591 Face 33824 45096 49924 16914 Face 33825 12927 16915 14678 Face 33826 12927 30056 27280 Face 33827 27873 16916 1269 Face 33828 48020 33469 16916 Face 33829 7512 35186 18639 Face 33830 7512 24042 16917 Face 33831 1549 16918 6422 Face 33832 1549 8830 16918 Face 33833 19340 16919 11520 Face 33834 24398 15426 16919 Face 33835 12596 16920 38312 Face 33836 12596 41097 16920 Face 33837 33192 16921 25663 Face 33838 2885 1155 16921 Face 33839 19870 28498 41929 Face 33840 19870 155 28500 Face 33841 12816 16923 4455 Face 33842 12816 28243 16923 Face 33843 334 47704 39483 Face 33844 334 11186 16924 Face 33845 21877 25303 39742 Face 33846 4525 26626 16925 Face 33847 4024 16926 31698 Face 33848 4024 18671 16926 Face 33849 2894 16927 9422 Face 33850 2894 6014 49792 Face 33851 17802 42030 17511 Face 33852 22725 18440 16928 Face 33853 47864 16929 25832 Face 33854 43428 19426 16929 Face 33855 386 16930 14257 Face 33856 386 43445 16930 Face 33857 26419 16931 19757 Face 33858 1751 8404 16931 Face 33859 35047 24611 41421 Face 33860 46135 34108 16932 Face 33861 2133 16933 37358 Face 33862 2133 15676 16933 Face 33863 8611 16934 2270 Face 33864 8611 39950 16934 Face 33865 2946 16935 35449 Face 33866 2946 15013 16935 Face 33867 7139 16936 33406 Face 33868 7139 15856 16936 Face 33869 19960 16937 41707 Face 33870 39218 32658 26926 Face 33871 3065 16938 8003 Face 33872 3065 23972 16938 Face 33873 32 16939 16054 Face 33874 16940 12957 47266 Face 33875 37054 16940 47266 Face 33876 37054 4425 16940 Face 33877 9870 16941 14338 Face 33878 9870 37913 16941 Face 33879 11941 16942 5001 Face 33880 11941 12514 16942 Face 33881 5236 45319 30483 Face 33882 26276 15863 16943 Face 33883 25463 16944 7193 Face 33884 4517 32495 16944 Face 33885 9473 16945 25147 Face 33886 9473 11983 37905 Face 33887 11005 30813 18790 Face 33888 11005 44332 16946 Face 33889 13064 16947 26476 Face 33890 13064 21267 16947 Face 33891 19583 16948 26978 Face 33892 19583 39606 16948 Face 33893 13592 47869 41415 Face 33894 39009 30597 47869 Face 33895 10367 16950 16666 Face 33896 10367 705 16950 Face 33897 15483 16951 11438 Face 33898 15483 24219 16951 Face 33899 21552 46115 24767 Face 33900 1466 22384 16952 Face 33901 2174 16953 16895 Face 33902 31248 36142 25706 Face 33903 2676 16954 43490 Face 33904 2676 15405 16954 Face 33905 2094 16955 41537 Face 33906 2094 40777 29507 Face 33907 20821 27138 9272 Face 33908 48147 13576 16956 Face 33909 22251 16957 18007 Face 33910 4730 42588 16957 Face 33911 26578 42368 47115 Face 33912 314 23282 45938 Face 33913 8559 46275 10896 Face 33914 8559 32727 48452 Face 33915 42794 16960 22531 Face 33916 2472 9984 16960 Face 33917 7958 46546 35981 Face 33918 40024 5664 16961 Face 33919 47335 16962 16321 Face 33920 49109 7070 16962 Face 33921 5986 16963 30842 Face 33922 32215 47018 16963 Face 33923 48052 16964 15240 Face 33924 40425 15241 16964 Face 33925 5968 16965 29006 Face 33926 5968 26184 46768 Face 33927 1713 16966 38445 Face 33928 1713 14143 16966 Face 33929 1730 16967 38346 Face 33930 1730 13751 16967 Face 33931 18479 16968 3548 Face 33932 18478 10143 21317 Face 33933 439 16969 16480 Face 33934 16970 8919 16969 Face 33935 439 16970 16969 Face 33936 439 26338 16970 Face 33937 23634 16971 49313 Face 33938 32431 13530 30708 Face 33939 37295 16972 15138 Face 33940 46981 23651 16972 Face 33941 33523 16973 38504 Face 33942 3381 36675 45620 Face 33943 39064 16974 16035 Face 33944 44923 11172 49093 Face 33945 19684 16975 28608 Face 33946 11902 131 16975 Face 33947 10077 16976 23616 Face 33948 35134 15382 31769 Face 33949 9730 34165 476 Face 33950 36591 35056 49021 Face 33951 11192 16978 25164 Face 33952 11192 5869 16978 Face 33953 854 38360 38245 Face 33954 32472 23479 16979 Face 33955 25311 32472 16979 Face 33956 39206 7767 16980 Face 33957 2057 16981 8759 Face 33958 30448 38683 16981 Face 33959 12021 16982 14050 Face 33960 12021 3955 16982 Face 33961 20221 29338 1738 Face 33962 16984 8138 28529 Face 33963 3458 16984 28529 Face 33964 20222 44211 16984 Face 33965 1013 16985 21707 Face 33966 1013 19123 16985 Face 33967 523 16986 9117 Face 33968 523 15570 16986 Face 33969 2727 16987 30524 Face 33970 2727 44694 16987 Face 33971 28053 16988 11701 Face 33972 8102 23420 16988 Face 33973 26130 33905 21928 Face 33974 37359 3250 33905 Face 33975 16989 16990 3925 Face 33976 30284 10027 16990 Face 33977 104 16991 20113 Face 33978 104 43519 16991 Face 33979 25805 20586 38366 Face 33980 46238 14803 20586 Face 33981 8253 16993 43662 Face 33982 8253 36980 16993 Face 33983 30706 16994 39482 Face 33984 4200 29425 46441 Face 33985 5458 16995 12420 Face 33986 35457 21897 16995 Face 33987 4362 29680 21850 Face 33988 43943 11855 16996 Face 33989 23821 16997 41967 Face 33990 16998 30432 47249 Face 33991 1979 23821 41967 Face 33992 31685 7138 36305 Face 33993 4750 16999 11798 Face 33994 45484 19746 16999 Face 33995 727 17000 24608 Face 33996 727 29306 17000 Face 33997 31448 48515 42373 Face 33998 3261 17364 17001 Face 33999 5646 17002 25247 Face 34000 5646 14892 17002 Face 34001 9624 49417 26436 Face 34002 27520 22577 35615 Face 34003 9624 17004 49417 Face 34004 9624 14987 17004 Face 34005 17013 17005 22344 Face 34006 18570 4983 36492 Face 34007 10373 17006 22466 Face 34008 10373 21547 17006 Face 34009 22595 17007 11594 Face 34010 22595 28234 17007 Face 34011 3806 17008 41714 Face 34012 30476 49678 17008 Face 34013 42083 41093 10486 Face 34014 45585 31542 17009 Face 34015 14228 17010 26577 Face 34016 14228 12206 17010 Face 34017 38647 17011 49053 Face 34018 2846 30377 17011 Face 34019 11121 17012 25694 Face 34020 19669 36822 17012 Face 34021 5395 17013 13970 Face 34022 5395 36492 17013 Face 34023 32879 38274 15063 Face 34024 26906 21578 17014 Face 34025 4223 17015 23032 Face 34026 4223 10977 17015 Face 34027 12326 17016 32088 Face 34028 25788 34854 17016 Face 34029 22509 17017 38767 Face 34030 34505 18021 17017 Face 34031 1610 35030 5852 Face 34032 1610 47226 35030 Face 34033 11361 17019 29160 Face 34034 27028 13410 17019 Face 34035 10492 17020 31288 Face 34036 10492 41326 17020 Face 34037 38341 26409 20870 Face 34038 38341 8211 17021 Face 34039 12204 17022 1803 Face 34040 21326 8933 17022 Face 34041 23815 17023 22725 Face 34042 4345 33687 17023 Face 34043 2732 17024 10616 Face 34044 2732 9888 17024 Face 34045 4844 17025 49040 Face 34046 29986 21938 17025 Face 34047 4071 39224 25766 Face 34048 37037 7436 17026 Face 34049 6698 17027 13700 Face 34050 6698 37113 17027 Face 34051 6698 17028 37113 Face 34052 6698 39786 17028 Face 34053 6924 17029 41413 Face 34054 6924 5189 17029 Face 34055 7672 17030 46010 Face 34056 7672 36560 17030 Face 34057 17034 17031 47632 Face 34058 17032 10970 17031 Face 34059 17034 17032 17031 Face 34060 3516 45492 17032 Face 34061 3516 27175 20177 Face 34062 3516 7990 27175 Face 34063 3516 17034 7990 Face 34064 3516 17032 17034 Face 34065 3904 17035 42321 Face 34066 3904 10506 17035 Face 34067 1581 17036 9045 Face 34068 1581 6604 17036 Face 34069 504 17037 6751 Face 34070 504 48082 17037 Face 34071 868 17038 39751 Face 34072 868 11180 17038 Face 34073 5880 17039 22127 Face 34074 49022 20088 17039 Face 34075 464 17040 24752 Face 34076 464 46451 17040 Face 34077 17714 40180 13341 Face 34078 28831 43085 17041 Face 34079 34267 17042 9100 Face 34080 11094 41753 17042 Face 34081 1604 17043 42072 Face 34082 1604 14786 17043 Face 34083 43106 36799 23627 Face 34084 8051 5234 34916 Face 34085 8107 17045 42276 Face 34086 8107 31849 17045 Face 34087 32742 17046 43791 Face 34088 47376 22284 32601 Face 34089 17048 17047 46242 Face 34090 32833 17317 17047 Face 34091 3976 17048 46242 Face 34092 40304 13961 32833 Face 34093 620 17049 20581 Face 34094 36050 3219 29788 Face 34095 41552 17050 14534 Face 34096 28785 47794 17050 Face 34097 34887 17051 19039 Face 34098 34887 4691 17051 Face 34099 7386 17052 19039 Face 34100 27142 47672 17052 Face 34101 27022 29433 5122 Face 34102 48921 16999 17053 Face 34103 27306 17054 28465 Face 34104 4344 19873 17054 Face 34105 4344 17055 13740 Face 34106 4344 17054 17055 Face 34107 6195 17056 29783 Face 34108 6195 33557 17056 Face 34109 7935 17057 40493 Face 34110 7935 10556 17057 Face 34111 3034 17058 12462 Face 34112 3034 49045 30337 Face 34113 39684 17059 4946 Face 34114 18545 12707 38193 Face 34115 1922 17060 8182 Face 34116 36746 44941 17060 Face 34117 1922 17061 17060 Face 34118 1922 21089 41265 Face 34119 3289 17062 18626 Face 34120 21066 10326 37827 Face 34121 4666 39303 31094 Face 34122 4666 9335 23870 Face 34123 4085 17064 42926 Face 34124 4085 46296 17064 Face 34125 43448 17065 34575 Face 34126 43448 31767 17065 Face 34127 4559 17066 21587 Face 34128 26222 25055 17066 Face 34129 5588 17067 16299 Face 34130 5588 19855 17067 Face 34131 43314 27775 15947 Face 34132 5085 7999 17068 Face 34133 11176 17069 16336 Face 34134 11176 18957 17069 Face 34135 34001 17070 8500 Face 34136 7668 29591 22525 Face 34137 48604 17071 11239 Face 34138 48604 14812 17071 Face 34139 1328 17072 23641 Face 34140 19122 34493 17072 Face 34141 6378 39127 45130 Face 34142 6378 38901 17073 Face 34143 21969 44188 6074 Face 34144 7824 7825 17074 Face 34145 2447 17075 19035 Face 34146 2447 34390 17075 Face 34147 41830 31411 3275 Face 34148 37400 23248 17076 Face 34149 6303 17077 15519 Face 34150 39606 19583 43381 Face 34151 1748 17078 3469 Face 34152 1748 15479 17078 Face 34153 26174 17079 39987 Face 34154 41216 11176 17079 Face 34155 328 17080 24074 Face 34156 19371 23192 17080 Face 34157 11822 17081 48795 Face 34158 11822 41948 31815 Face 34159 49399 17082 3003 Face 34160 4082 32794 17082 Face 34161 26224 17083 13433 Face 34162 4648 3972 17083 Face 34163 4827 17084 44848 Face 34164 44584 32697 17084 Face 34165 21104 17085 29390 Face 34166 10592 42565 17085 Face 34167 32437 17086 14749 Face 34168 273 28852 17086 Face 34169 32253 17087 38945 Face 34170 3391 10386 17087 Face 34171 24467 28435 15255 Face 34172 5857 44003 17088 Face 34173 18889 17089 23577 Face 34174 18889 32112 17089 Face 34175 17091 17090 21581 Face 34176 47642 25081 17090 Face 34177 262 17091 18791 Face 34178 262 17090 17091 Face 34179 7405 45012 34396 Face 34180 39953 35686 29043 Face 34181 12473 17093 44186 Face 34182 12473 26911 17093 Face 34183 45933 17094 36186 Face 34184 38000 2164 30518 Face 34185 26851 17095 4727 Face 34186 18463 25127 17095 Face 34187 44338 17096 38651 Face 34188 814 26618 17096 Face 34189 8522 43702 20226 Face 34190 39969 12346 42005 Face 34191 48081 33663 23464 Face 34192 11807 28894 17098 Face 34193 3461 17099 23677 Face 34194 17100 13367 37592 Face 34195 3461 17100 37592 Face 34196 45765 42458 17100 Face 34197 4599 17101 15267 Face 34198 4599 11306 17101 Face 34199 18794 17102 42611 Face 34200 17103 40782 17102 Face 34201 48179 17103 17102 Face 34202 8204 14212 17103 Face 34203 196 17104 32320 Face 34204 196 20756 49042 Face 34205 38177 17105 6381 Face 34206 3047 11481 17105 Face 34207 5484 27313 47885 Face 34208 49620 10355 17106 Face 34209 24207 48552 15492 Face 34210 24207 11477 17107 Face 34211 2976 26540 11858 Face 34212 46686 5274 17108 Face 34213 620 17109 17049 Face 34214 620 40080 17109 Face 34215 31977 17110 34661 Face 34216 2653 26324 26937 Face 34217 2653 17111 16550 Face 34218 2653 17110 17111 Face 34219 16242 17112 45022 Face 34220 16242 29766 17112 Face 34221 466 17113 32652 Face 34222 466 11828 17113 Face 34223 6378 17114 38901 Face 34224 6378 27496 17114 Face 34225 39676 17115 11443 Face 34226 39796 20658 34676 Face 34227 12700 17116 11732 Face 34228 12700 26749 17116 Face 34229 4358 17117 47481 Face 34230 4358 41838 17117 Face 34231 9504 17118 46288 Face 34232 43841 15254 17118 Face 34233 7651 17119 16064 Face 34234 7651 32395 17119 Face 34235 24371 38359 26153 Face 34236 17121 22719 47792 Face 34237 7280 17121 47792 Face 34238 7280 48768 17121 Face 34239 866 25188 12729 Face 34240 866 18680 17122 Face 34241 2624 17123 27036 Face 34242 2624 8467 17123 Face 34243 8243 17124 22106 Face 34244 19567 27020 35969 Face 34245 26197 17125 10480 Face 34246 678 33176 17125 Face 34247 1378 17126 12048 Face 34248 1378 14481 17126 Face 34249 5817 17127 31675 Face 34250 5817 23243 17127 Face 34251 4103 17128 12549 Face 34252 4103 25643 17128 Face 34253 21476 17129 8060 Face 34254 46677 10313 17129 Face 34255 32725 17130 47993 Face 34256 7723 24528 17130 Face 34257 4942 17131 40693 Face 34258 29659 20489 17131 Face 34259 5974 17132 37376 Face 34260 5974 5975 17132 Face 34261 8797 17133 34905 Face 34262 8797 32214 48959 Face 34263 5146 17134 35978 Face 34264 5146 48676 17134 Face 34265 5146 34255 16019 Face 34266 5146 35978 17135 Face 34267 43049 17136 8493 Face 34268 948 38295 17136 Face 34269 785 17137 29142 Face 34270 785 30886 17137 Face 34271 35665 29822 8900 Face 34272 24855 7365 31694 Face 34273 9702 46672 22569 Face 34274 30084 15467 17139 Face 34275 26344 33461 11041 Face 34276 36230 27522 39424 Face 34277 25207 17142 10165 Face 34278 48997 41522 17141 Face 34279 17141 17142 25207 Face 34280 31436 31856 17142 Face 34281 47780 17143 12037 Face 34282 2420 30593 32107 Face 34283 8558 17144 43087 Face 34284 8558 24884 17144 Face 34285 5233 17145 44263 Face 34286 5233 5234 17145 Face 34287 4509 17146 1759 Face 34288 4509 2414 42831 Face 34289 24986 36312 16773 Face 34290 17148 15277 48233 Face 34291 8323 17148 17147 Face 34292 8323 38590 17148 Face 34293 4381 17149 22041 Face 34294 37029 11987 17149 Face 34295 3920 17150 28622 Face 34296 3920 42452 17150 Face 34297 2423 17151 46746 Face 34298 2423 38107 32448 Face 34299 4471 17152 667 Face 34300 4471 34276 38240 Face 34301 45393 17153 24649 Face 34302 25322 5006 17153 Face 34303 5510 17154 32973 Face 34304 5510 20674 17154 Face 34305 26601 17155 15162 Face 34306 37929 11657 17155 Face 34307 21657 17156 32981 Face 34308 2155 33730 17156 Face 34309 17158 17157 44171 Face 34310 17158 40249 17157 Face 34311 10210 45581 30618 Face 34312 10210 40249 17158 Face 34313 20739 33737 25896 Face 34314 22490 4555 30801 Face 34315 23045 36077 12748 Face 34316 2330 9907 17160 Face 34317 10409 45235 32968 Face 34318 10409 32623 45235 Face 34319 17161 17162 33642 Face 34320 17161 32968 45235 Face 34321 9061 32655 3040 Face 34322 33364 14031 17163 Face 34323 556 48566 11964 Face 34324 556 48698 17164 Face 34325 8034 17165 8505 Face 34326 8034 23541 17165 Face 34327 6771 17166 4127 Face 34328 6771 26466 48961 Face 34329 7750 17167 43548 Face 34330 7750 38971 17167 Face 34331 17169 31501 36191 Face 34332 1983 11589 41959 Face 34333 1983 17169 14691 Face 34334 1983 41959 17169 Face 34335 3151 17170 15937 Face 34336 29300 33460 40282 Face 34337 2392 17171 28655 Face 34338 2392 21975 17171 Face 34339 6329 17172 46017 Face 34340 6329 9390 17172 Face 34341 6329 17173 27934 Face 34342 6329 2888 17173 Face 34343 21298 17174 14081 Face 34344 46051 3396 17174 Face 34345 32303 17175 32884 Face 34346 32303 25708 17175 Face 34347 704 35409 39986 Face 34348 704 12514 17176 Face 34349 2514 17177 15452 Face 34350 30287 24652 30160 Face 34351 39110 41962 25113 Face 34352 39110 12310 17178 Face 34353 3213 32530 25945 Face 34354 3213 37373 32530 Face 34355 43252 17180 9015 Face 34356 26395 9327 43137 Face 34357 829 17181 10816 Face 34358 19717 5650 23320 Face 34359 47935 17182 46269 Face 34360 47935 30387 17182 Face 34361 47935 17183 30387 Face 34362 40972 2008 17183 Face 34363 4857 17184 47526 Face 34364 17185 7378 45677 Face 34365 4857 17185 45677 Face 34366 4857 22655 17185 Face 34367 28480 17186 29875 Face 34368 38016 6018 27143 Face 34369 7264 35444 24482 Face 34370 18965 42661 35444 Face 34371 5489 17188 2116 Face 34372 5489 18707 43801 Face 34373 37662 17189 19007 Face 34374 37662 49155 17189 Face 34375 10908 17190 33302 Face 34376 10908 2901 17190 Face 34377 4864 41862 1716 Face 34378 4864 19248 17191 Face 34379 24296 17192 40380 Face 34380 24296 26086 17192 Face 34381 29869 17193 48599 Face 34382 26970 15404 35527 Face 34383 12538 17194 9722 Face 34384 27460 2600 17194 Face 34385 8972 17195 8781 Face 34386 8972 24898 17195 Face 34387 9270 21033 38783 Face 34388 9270 40491 17196 Face 34389 28646 17197 6899 Face 34390 28646 8563 17197 Face 34391 7798 17198 3833 Face 34392 35415 7799 45054 Face 34393 31497 49280 28327 Face 34394 5591 45246 41197 Face 34395 37790 17200 5413 Face 34396 37790 31157 17200 Face 34397 4802 45497 20361 Face 34398 4802 35760 17201 Face 34399 25765 17202 8131 Face 34400 610 22192 17202 Face 34401 7984 17203 10710 Face 34402 7984 41752 29985 Face 34403 14531 17204 16513 Face 34404 14531 38940 17204 Face 34405 31947 17205 37539 Face 34406 12015 29748 21710 Face 34407 9707 17206 39165 Face 34408 9707 35901 23316 Face 34409 10660 17207 28133 Face 34410 44261 7727 49894 Face 34411 47991 17208 37797 Face 34412 231 6697 17208 Face 34413 5832 17209 21462 Face 34414 28134 39992 17209 Face 34415 3228 37877 17077 Face 34416 28959 6468 17210 Face 34417 37348 17211 7121 Face 34418 37348 9055 17211 Face 34419 17213 17212 2231 Face 34420 17213 42558 45555 Face 34421 2516 17213 2231 Face 34422 2516 16807 17213 Face 34423 2853 17214 30729 Face 34424 2853 19237 17214 Face 34425 6468 46681 17210 Face 34426 40810 9942 17215 Face 34427 46326 17216 9843 Face 34428 14369 20965 17216 Face 34429 20752 17217 9926 Face 34430 43904 16500 46015 Face 34431 3033 17218 14846 Face 34432 3033 23416 17218 Face 34433 7563 17219 45169 Face 34434 20383 5891 17219 Face 34435 44334 17220 7923 Face 34436 1943 12793 17220 Face 34437 39848 17221 26069 Face 34438 39848 29028 17221 Face 34439 5880 49022 17039 Face 34440 32073 47564 22195 Face 34441 47228 17223 33268 Face 34442 3880 21832 17223 Face 34443 3150 17224 12102 Face 34444 3150 21053 17224 Face 34445 1591 17225 40760 Face 34446 29079 4895 48261 Face 34447 37772 17226 24130 Face 34448 6255 41083 17226 Face 34449 33065 17227 49198 Face 34450 35691 1906 17227 Face 34451 47671 46556 43568 Face 34452 32377 29483 46556 Face 34453 44199 45176 19316 Face 34454 26228 20779 17229 Face 34455 367 49314 13685 Face 34456 25790 12280 17230 Face 34457 39118 37093 44585 Face 34458 35185 24359 17231 Face 34459 76 17232 3891 Face 34460 76 12077 17232 Face 34461 33808 17233 35714 Face 34462 31137 8163 49853 Face 34463 6535 17234 37626 Face 34464 40669 35648 17234 Face 34465 342 20630 37357 Face 34466 342 32738 21050 Face 34467 1670 17236 10868 Face 34468 1670 29804 17236 Face 34469 785 17237 48252 Face 34470 785 14876 44719 Face 34471 33430 45422 10754 Face 34472 3447 12983 17238 Face 34473 40715 17239 38847 Face 34474 17240 20895 29127 Face 34475 49217 21088 17239 Face 34476 12228 12985 21088 Face 34477 2831 23407 43645 Face 34478 2831 6829 38389 Face 34479 6737 17242 4098 Face 34480 6737 25553 17242 Face 34481 10508 17243 10509 Face 34482 10508 16920 17243 Face 34483 242 40997 31396 Face 34484 49718 19488 17244 Face 34485 10283 17245 25689 Face 34486 32460 857 17245 Face 34487 31923 17246 9635 Face 34488 42760 33415 17246 Face 34489 4153 17247 34322 Face 34490 30873 33957 17247 Face 34491 1813 17248 27861 Face 34492 1813 27875 17248 Face 34493 11840 40744 38272 Face 34494 11840 11841 17249 Face 34495 30034 17250 20189 Face 34496 2450 26003 42766 Face 34497 4077 17251 28658 Face 34498 33837 43132 17251 Face 34499 9940 17252 31363 Face 34500 9940 13880 17252 Face 34501 21759 17253 9965 Face 34502 36774 14061 17253 Face 34503 4775 17254 6531 Face 34504 4775 29409 17254 Face 34505 6897 17255 23408 Face 34506 6897 15520 17255 Face 34507 48773 39774 36596 Face 34508 7556 40527 39774 Face 34509 5919 17257 17258 Face 34510 5919 45968 17257 Face 34511 23660 17258 17257 Face 34512 23660 20763 17258 Face 34513 7479 17259 6414 Face 34514 7479 5031 17259 Face 34515 8369 17260 7839 Face 34516 8369 24962 17260 Face 34517 547 17261 11737 Face 34518 547 44889 25277 Face 34519 22405 17262 15614 Face 34520 41190 10149 17262 Face 34521 1548 17263 5691 Face 34522 37220 27332 17263 Face 34523 1584 17264 38203 Face 34524 1584 16211 17264 Face 34525 2066 17265 22251 Face 34526 35210 3584 37344 Face 34527 6529 17266 34778 Face 34528 6529 39532 17266 Face 34529 21886 35053 4350 Face 34530 7515 33240 38294 Face 34531 38006 17268 2967 Face 34532 38006 11657 17268 Face 34533 22405 41190 17262 Face 34534 2967 42106 17269 Face 34535 24206 17270 39312 Face 34536 24206 43168 17270 Face 34537 36197 31606 48525 Face 34538 36197 44633 17271 Face 34539 4715 17272 13959 Face 34540 4715 17593 49261 Face 34541 3870 17273 13573 Face 34542 3870 39148 17273 Face 34543 3870 17274 30211 Face 34544 3870 13573 17274 Face 34545 4228 17275 13318 Face 34546 27999 12757 30098 Face 34547 19505 42151 14230 Face 34548 2984 27935 17276 Face 34549 497 17277 13232 Face 34550 497 14183 17277 Face 34551 9742 17278 29193 Face 34552 9742 32111 17278 Face 34553 10228 17279 504 Face 34554 10228 41595 17279 Face 34555 23426 17280 49043 Face 34556 9686 49659 17280 Face 34557 11400 17281 3754 Face 34558 11400 31440 17281 Face 34559 22284 17282 32601 Face 34560 34001 8500 17282 Face 34561 7668 17283 46266 Face 34562 7668 22525 17283 Face 34563 11719 17284 10955 Face 34564 11719 43602 17284 Face 34565 8149 17285 8653 Face 34566 8149 12709 17285 Face 34567 30997 17286 10593 Face 34568 41896 32224 17286 Face 34569 4883 41896 47279 Face 34570 4883 8951 17287 Face 34571 21157 17288 9378 Face 34572 4933 12431 17288 Face 34573 8725 17289 12168 Face 34574 8725 26480 17289 Face 34575 11016 46058 22984 Face 34576 11016 3107 17290 Face 34577 3640 17291 33429 Face 34578 3640 19048 17291 Face 34579 4634 17292 45555 Face 34580 4634 22334 17292 Face 34581 4289 17293 26183 Face 34582 4289 24201 17293 Face 34583 36184 17294 15528 Face 34584 36184 40597 46228 Face 34585 36184 17295 40597 Face 34586 1689 48042 17295 Face 34587 32224 17296 17286 Face 34588 728 12132 17296 Face 34589 3474 17297 18402 Face 34590 3474 45558 17297 Face 34591 21942 17298 14396 Face 34592 41258 24530 17298 Face 34593 45007 37107 11682 Face 34594 21988 3361 17299 Face 34595 14834 17300 6280 Face 34596 14834 26329 17300 Face 34597 33293 25973 40326 Face 34598 2471 28506 25973 Face 34599 19154 41755 30757 Face 34600 19153 15434 17302 Face 34601 10779 17303 15934 Face 34602 10779 19373 17303 Face 34603 9594 45485 26426 Face 34604 37727 8275 17304 Face 34605 13953 17305 33214 Face 34606 31427 13952 17305 Face 34607 5113 42382 15535 Face 34608 5113 24789 17306 Face 34609 7066 17307 29880 Face 34610 45132 39914 17307 Face 34611 27666 17308 48382 Face 34612 7066 9554 17308 Face 34613 17310 17309 43950 Face 34614 6583 26977 47316 Face 34615 6583 17310 36464 Face 34616 6583 17309 17310 Face 34617 4237 17311 10668 Face 34618 4237 14029 17311 Face 34619 4237 17312 14029 Face 34620 34301 26446 17312 Face 34621 7855 17313 46847 Face 34622 7855 5693 17313 Face 34623 30589 17314 19734 Face 34624 30589 23472 17314 Face 34625 2589 34026 45864 Face 34626 41504 5170 26068 Face 34627 35727 45499 12443 Face 34628 7985 16580 17316 Face 34629 29693 17317 31912 Face 34630 2915 17047 17317 Face 34631 4792 17318 34081 Face 34632 4792 5147 17318 Face 34633 1424 17319 47477 Face 34634 25982 46816 17319 Face 34635 6170 45945 41110 Face 34636 6170 39264 45945 Face 34637 45178 17321 14298 Face 34638 45180 234 32022 Face 34639 3797 17322 15511 Face 34640 3797 6448 17322 Face 34641 11556 17323 19572 Face 34642 11556 13444 17323 Face 34643 1333 17324 14977 Face 34644 17491 9025 17324 Face 34645 31521 17325 48975 Face 34646 49305 10382 41534 Face 34647 30194 17326 47622 Face 34648 30194 31727 17326 Face 34649 27922 17327 11436 Face 34650 49944 5268 17327 Face 34651 11589 17328 17168 Face 34652 38059 15512 17328 Face 34653 14844 17329 23801 Face 34654 14844 20774 41440 Face 34655 19745 38515 35973 Face 34656 31265 19415 38515 Face 34657 41318 17331 11235 Face 34658 41318 2975 17331 Face 34659 1505 17332 36627 Face 34660 26975 43361 37244 Face 34661 6714 17333 20195 Face 34662 6714 31108 17333 Face 34663 128 37706 11280 Face 34664 22995 27494 17334 Face 34665 5365 17335 40299 Face 34666 34307 17020 41326 Face 34667 11049 17336 12522 Face 34668 11049 25162 17336 Face 34669 36396 17337 14416 Face 34670 48668 8137 17337 Face 34671 24274 17338 33753 Face 34672 4321 40470 42260 Face 34673 31689 17339 13262 Face 34674 4321 17338 24274 Face 34675 1974 17340 39934 Face 34676 1974 32221 17340 Face 34677 5795 17341 4371 Face 34678 5795 49816 17341 Face 34679 23654 17342 44820 Face 34680 4033 14478 46309 Face 34681 11249 43767 824 Face 34682 19754 7237 17343 Face 34683 13597 17344 41382 Face 34684 13597 22976 17344 Face 34685 39444 17345 44535 Face 34686 17346 26443 17345 Face 34687 6288 17346 49851 Face 34688 47310 1356 17346 Face 34689 27936 31862 24098 Face 34690 1556 15480 42142 Face 34691 10585 17348 22175 Face 34692 10585 22853 17348 Face 34693 10722 17349 33151 Face 34694 10722 2371 17349 Face 34695 24095 17350 6385 Face 34696 13289 13681 17350 Face 34697 1141 17351 20983 Face 34698 1141 30081 17351 Face 34699 5289 17352 25958 Face 34700 5289 37625 17352 Face 34701 12603 17353 12602 Face 34702 12603 3043 17353 Face 34703 4434 17354 43414 Face 34704 22075 38094 17354 Face 34705 3594 17355 27908 Face 34706 3594 36986 17355 Face 34707 48517 27154 26190 Face 34708 2574 43478 17356 Face 34709 48535 17357 31449 Face 34710 10193 2115 17357 Face 34711 49579 17358 15172 Face 34712 14772 29115 17358 Face 34713 4374 17359 11544 Face 34714 33343 20615 17359 Face 34715 19436 17360 28929 Face 34716 21046 18735 17360 Face 34717 32803 17361 8111 Face 34718 32803 48471 17361 Face 34719 12377 17362 32357 Face 34720 12377 16028 17362 Face 34721 563 17363 20715 Face 34722 563 5945 17363 Face 34723 17363 35464 20715 Face 34724 17365 17001 17364 Face 34725 17363 17365 17364 Face 34726 17363 21342 17365 Face 34727 7011 17366 11269 Face 34728 7011 35779 17366 Face 34729 7810 17367 10063 Face 34730 26306 9487 27199 Face 34731 4917 17368 11619 Face 34732 4917 10528 17368 Face 34733 22817 17369 41149 Face 34734 20941 41475 17369 Face 34735 4036 44466 47651 Face 34736 4036 11328 44466 Face 34737 153 17371 15649 Face 34738 153 44701 17371 Face 34739 20689 17372 23602 Face 34740 20688 4220 17372 Face 34741 5928 17373 20331 Face 34742 5928 16164 17373 Face 34743 24058 17374 39667 Face 34744 3149 13157 36449 Face 34745 4327 17375 33445 Face 34746 48926 8382 33386 Face 34747 37707 17376 41340 Face 34748 5791 13670 17376 Face 34749 1919 35533 14519 Face 34750 31761 13806 49018 Face 34751 2285 17378 42932 Face 34752 2285 18925 17378 Face 34753 30292 17379 41573 Face 34754 30292 44578 43492 Face 34755 14179 17380 39927 Face 34756 14179 38432 17380 Face 34757 6020 44359 22163 Face 34758 6020 42998 17381 Face 34759 8698 17382 11556 Face 34760 46747 37034 17382 Face 34761 8333 17383 35641 Face 34762 49670 27470 17383 Face 34763 6185 17384 8878 Face 34764 22329 36083 17384 Face 34765 11782 17385 15116 Face 34766 11782 6265 17385 Face 34767 31474 17386 46431 Face 34768 43266 15189 17386 Face 34769 33791 17387 21450 Face 34770 5829 27265 17387 Face 34771 21148 37918 30421 Face 34772 418 38300 17388 Face 34773 4306 17389 45803 Face 34774 22597 10852 37444 Face 34775 38933 47621 6833 Face 34776 43200 12542 17390 Face 34777 8072 17391 40586 Face 34778 42328 14314 17391 Face 34779 4824 17392 15876 Face 34780 4824 30606 17392 Face 34781 388 17393 5481 Face 34782 388 14324 17393 Face 34783 41472 17394 24653 Face 34784 13684 28939 17394 Face 34785 5496 17395 45441 Face 34786 5496 44653 17395 Face 34787 11295 17396 28420 Face 34788 11295 10306 17396 Face 34789 19648 17397 28141 Face 34790 2739 34137 17397 Face 34791 39000 17398 27168 Face 34792 39000 4143 17398 Face 34793 20432 17399 33356 Face 34794 18261 19986 46007 Face 34795 30641 17400 32449 Face 34796 6435 43847 17400 Face 34797 36197 26574 44633 Face 34798 3317 13533 33424 Face 34799 38517 17402 11932 Face 34800 38517 28780 17402 Face 34801 46650 17403 25797 Face 34802 2742 37418 17403 Face 34803 40716 20466 296 Face 34804 1823 2533 36213 Face 34805 4046 17405 21323 Face 34806 4046 36838 17405 Face 34807 7621 34143 28558 Face 34808 17407 45369 17406 Face 34809 7621 17407 34143 Face 34810 7621 25497 17407 Face 34811 797 17408 15105 Face 34812 797 27899 17408 Face 34813 23875 49161 12500 Face 34814 5515 32718 39419 Face 34815 37675 17410 31185 Face 34816 3389 13784 31493 Face 34817 47385 17411 7322 Face 34818 8328 1661 17411 Face 34819 43708 17412 24910 Face 34820 43707 13089 17412 Face 34821 37694 17414 29154 Face 34822 37695 13945 40360 Face 34823 17413 40360 13945 Face 34824 40402 12053 17414 Face 34825 3218 43028 1897 Face 34826 35797 10726 17415 Face 34827 2604 17416 24327 Face 34828 17417 13537 17416 Face 34829 2604 17417 17416 Face 34830 2604 22599 17417 Face 34831 4909 17418 14671 Face 34832 33532 41015 26187 Face 34833 43326 30500 36626 Face 34834 22726 1065 17419 Face 34835 230 17420 11255 Face 34836 39823 30748 17420 Face 34837 11770 17421 49727 Face 34838 11770 41278 17421 Face 34839 6769 34264 40297 Face 34840 6769 40754 34264 Face 34841 3699 42475 15385 Face 34842 3699 8270 42475 Face 34843 11662 17424 49623 Face 34844 11662 30985 47805 Face 34845 3720 17425 16112 Face 34846 41698 27331 17425 Face 34847 36009 17426 9425 Face 34848 36009 11954 17426 Face 34849 11954 17427 17426 Face 34850 11954 42101 17427 Face 34851 21361 40741 18958 Face 34852 1334 13834 17428 Face 34853 39648 17429 39209 Face 34854 12569 8063 17429 Face 34855 7362 17430 43673 Face 34856 7362 2719 17430 Face 34857 21791 17431 5709 Face 34858 31766 39586 33913 Face 34859 4879 17432 12160 Face 34860 4879 31367 17432 Face 34861 29426 17433 28523 Face 34862 29426 45757 17433 Face 34863 4483 32785 16092 Face 34864 4483 47406 17434 Face 34865 34194 17435 1820 Face 34866 48944 33300 17435 Face 34867 5087 17436 40398 Face 34868 5087 44351 17436 Face 34869 27722 17437 11383 Face 34870 3385 14447 17437 Face 34871 10483 17438 35389 Face 34872 31880 14439 17438 Face 34873 3010 45711 28793 Face 34874 3010 15387 45711 Face 34875 8839 17440 29335 Face 34876 8839 39 24373 Face 34877 45097 49672 27805 Face 34878 20957 45282 31839 Face 34879 45815 37267 13577 Face 34880 20957 17441 45097 Face 34881 27935 17443 17276 Face 34882 2767 46124 17443 Face 34883 11939 17444 4141 Face 34884 11939 19688 17444 Face 34885 3544 17445 26775 Face 34886 3544 8992 17445 Face 34887 6921 17446 46429 Face 34888 27525 29586 47270 Face 34889 20644 17447 23535 Face 34890 6921 46429 17447 Face 34891 6318 17448 2034 Face 34892 6318 32689 44590 Face 34893 390 17449 35042 Face 34894 390 11119 17449 Face 34895 27522 17450 39424 Face 34896 6461 35965 17450 Face 34897 44098 28705 6976 Face 34898 17452 23351 17451 Face 34899 2864 17452 28705 Face 34900 2864 28723 48534 Face 34901 46568 17453 12502 Face 34902 37927 14060 35040 Face 34903 37926 17454 34689 Face 34904 8581 17453 46568 Face 34905 17456 17455 27149 Face 34906 25252 8159 39476 Face 34907 40670 17456 31974 Face 34908 25252 17455 17456 Face 34909 6719 17457 21434 Face 34910 28668 5393 17457 Face 34911 2724 17458 4989 Face 34912 2724 9786 17458 Face 34913 8775 17459 40510 Face 34914 8775 41127 17459 Face 34915 35121 17460 5474 Face 34916 17461 21606 39022 Face 34917 22166 17461 17460 Face 34918 22134 15047 29888 Face 34919 203 17462 38524 Face 34920 203 21925 17462 Face 34921 8768 17463 34387 Face 34922 8768 3644 17463 Face 34923 8768 17464 47011 Face 34924 8768 6052 17464 Face 34925 4634 28348 22334 Face 34926 4634 30460 17465 Face 34927 3248 17466 21830 Face 34928 3248 37761 17466 Face 34929 764 17467 14377 Face 34930 24131 30127 17467 Face 34931 3379 34827 30546 Face 34932 17469 25011 34828 Face 34933 43599 17469 34828 Face 34934 3379 10047 17469 Face 34935 49321 36090 34094 Face 34936 1220 40902 17470 Face 34937 8372 17471 14853 Face 34938 8372 30379 17471 Face 34939 30423 17472 33484 Face 34940 25695 16418 17472 Face 34941 4210 17473 42419 Face 34942 21192 39163 17473 Face 34943 411 17474 28240 Face 34944 411 4653 17474 Face 34945 12257 17475 13496 Face 34946 21377 27834 17475 Face 34947 43190 17476 31524 Face 34948 43190 20024 48512 Face 34949 7323 17477 46157 Face 34950 7323 32907 17477 Face 34951 1808 17478 21816 Face 34952 1808 29570 17478 Face 34953 6814 17479 3187 Face 34954 26494 5401 37682 Face 34955 13267 17480 27501 Face 34956 13267 4094 17480 Face 34957 8725 17481 23990 Face 34958 8725 2848 17481 Face 34959 27381 17482 21604 Face 34960 315 20228 39236 Face 34961 9987 17483 13734 Face 34962 18315 24470 17483 Face 34963 6007 17484 43788 Face 34964 6007 39778 17484 Face 34965 10027 17485 21944 Face 34966 10027 10026 17485 Face 34967 1474 17486 25516 Face 34968 1474 14039 17486 Face 34969 4054 17487 47437 Face 34970 4054 41636 17487 Face 34971 10081 17488 29066 Face 34972 10081 41992 17488 Face 34973 2780 17489 30696 Face 34974 49938 37986 43164 Face 34975 2356 17490 37289 Face 34976 19236 26812 17490 Face 34977 1333 17491 17324 Face 34978 30439 39277 17491 Face 34979 7971 48598 9537 Face 34980 19661 1264 17492 Face 34981 2103 17493 16769 Face 34982 18378 43121 29125 Face 34983 8177 20874 29968 Face 34984 32309 33679 17494 Face 34985 27402 17495 10123 Face 34986 26495 32942 17495 Face 34987 5913 34142 19021 Face 34988 5913 21083 17496 Face 34989 1252 17497 21347 Face 34990 17498 47863 17497 Face 34991 1252 17498 17497 Face 34992 40838 345 17498 Face 34993 10161 17499 25024 Face 34994 10161 8870 17499 Face 34995 30603 26416 49935 Face 34996 41789 14154 47809 Face 34997 888 17501 19882 Face 34998 29097 11068 17501 Face 34999 3486 17502 9442 Face 35000 31986 30371 17502 Face 35001 34239 17503 19934 Face 35002 34239 29752 17503 Face 35003 5281 47858 25356 Face 35004 29113 48082 17504 Face 35005 29499 17505 2538 Face 35006 20083 24774 17505 Face 35007 6123 17506 32988 Face 35008 35421 9314 17506 Face 35009 43711 17507 29925 Face 35010 43711 26249 17507 Face 35011 30345 17508 25603 Face 35012 3844 32843 17508 Face 35013 2430 17509 679 Face 35014 2430 35737 17509 Face 35015 32229 17510 12716 Face 35016 32229 28225 17510 Face 35017 3502 40007 28576 Face 35018 46866 17802 17511 Face 35019 8571 17512 49740 Face 35020 8571 26103 17512 Face 35021 518 17513 35066 Face 35022 518 9343 17513 Face 35023 3770 17514 7748 Face 35024 3770 28212 17514 Face 35025 491 17515 47833 Face 35026 491 33517 17515 Face 35027 1915 17516 7662 Face 35028 21492 36375 17516 Face 35029 3070 17517 6139 Face 35030 3070 36741 48807 Face 35031 33038 17518 47566 Face 35032 33038 2877 17518 Face 35033 4541 17519 45776 Face 35034 4541 5106 17519 Face 35035 4541 17520 16120 Face 35036 4541 45776 17520 Face 35037 17522 25084 10922 Face 35038 36557 25622 25084 Face 35039 44015 36401 39846 Face 35040 944 25084 17522 Face 35041 1027 17523 6710 Face 35042 1027 25443 17523 Face 35043 1365 17524 27631 Face 35044 17525 27213 17524 Face 35045 1365 17525 17524 Face 35046 1365 45452 17525 Face 35047 7875 17526 46693 Face 35048 7875 22774 17526 Face 35049 2040 17527 15188 Face 35050 2040 8473 17527 Face 35051 7920 49151 318 Face 35052 41299 21826 17528 Face 35053 9391 39412 47358 Face 35054 9391 1060 39412 Face 35055 36543 17530 42772 Face 35056 3312 6920 17530 Face 35057 11337 17531 33969 Face 35058 11337 27681 17531 Face 35059 1468 17532 9401 Face 35060 1468 7757 17532 Face 35061 2570 49549 46181 Face 35062 2570 24518 17533 Face 35063 38354 17534 17018 Face 35064 1361 43011 17534 Face 35065 7861 45975 20639 Face 35066 7861 31450 17535 Face 35067 4162 23570 48427 Face 35068 4162 47992 17536 Face 35069 23570 17537 44163 Face 35070 17536 33179 17537 Face 35071 4962 17538 34662 Face 35072 4962 20582 27095 Face 35073 1272 17539 45333 Face 35074 1272 16308 43048 Face 35075 42349 17540 17941 Face 35076 6105 13787 17540 Face 35077 7058 17541 10909 Face 35078 7058 31062 17541 Face 35079 4772 17542 13864 Face 35080 4772 9362 17542 Face 35081 772 17543 16493 Face 35082 772 16878 17543 Face 35083 7860 17544 27077 Face 35084 7860 40035 17544 Face 35085 981 47135 5372 Face 35086 981 13982 47135 Face 35087 9568 34820 629 Face 35088 9568 25558 17546 Face 35089 3262 17547 14613 Face 35090 28452 6822 17547 Face 35091 33933 17548 21458 Face 35092 9524 39394 17548 Face 35093 10242 17549 34145 Face 35094 10242 34135 17549 Face 35095 4142 17550 7084 Face 35096 4142 28510 17550 Face 35097 1835 17551 4343 Face 35098 1835 45078 17551 Face 35099 2551 17552 32096 Face 35100 17553 10686 42699 Face 35101 2551 17553 42699 Face 35102 25469 31718 17553 Face 35103 44653 17554 17395 Face 35104 44653 25999 36277 Face 35105 25037 17555 15841 Face 35106 8716 14677 17555 Face 35107 9248 22982 32550 Face 35108 21756 37335 17556 Face 35109 4799 17557 18307 Face 35110 4799 39815 17557 Face 35111 23836 17558 12133 Face 35112 5989 34982 17558 Face 35113 36419 28049 29461 Face 35114 49483 11993 28049 Face 35115 12091 17560 4477 Face 35116 12091 8543 17560 Face 35117 38631 17561 48041 Face 35118 41409 3396 17561 Face 35119 36686 39281 43992 Face 35120 4737 37312 31132 Face 35121 2614 17563 18000 Face 35122 17804 30899 46905 Face 35123 10116 17564 14815 Face 35124 10116 39933 17564 Face 35125 5896 17565 20301 Face 35126 5896 11864 17565 Face 35127 39167 17566 19408 Face 35128 424 7699 32404 Face 35129 8417 17567 6390 Face 35130 8417 15335 17567 Face 35131 5210 17568 423 Face 35132 5210 17569 17568 Face 35133 5080 27375 8770 Face 35134 26051 17568 17569 Face 35135 2379 17570 12663 Face 35136 2379 10832 17570 Face 35137 22461 32581 9019 Face 35138 137 27472 17571 Face 35139 4376 49392 14869 Face 35140 4376 6958 17572 Face 35141 26768 17573 40525 Face 35142 10965 37241 17573 Face 35143 5158 17574 14915 Face 35144 5158 16381 17574 Face 35145 3542 17575 25468 Face 35146 3542 7246 17575 Face 35147 12739 17576 18941 Face 35148 40476 11612 17576 Face 35149 27953 17577 39664 Face 35150 35424 3880 17577 Face 35151 12156 17578 28305 Face 35152 12156 13516 17578 Face 35153 3263 17579 30138 Face 35154 31100 7685 17579 Face 35155 2670 37607 17152 Face 35156 2670 45093 37607 Face 35157 8185 17581 35055 Face 35158 44665 25251 17581 Face 35159 8283 17582 36662 Face 35160 33224 12371 17582 Face 35161 6173 27449 32724 Face 35162 6173 3886 27449 Face 35163 41137 17584 11399 Face 35164 23652 14948 17584 Face 35165 14629 17585 6778 Face 35166 38864 19943 17585 Face 35167 39975 17586 3570 Face 35168 26150 19342 17586 Face 35169 5377 17587 45429 Face 35170 5377 42499 17587 Face 35171 9094 17588 3485 Face 35172 23682 5197 17588 Face 35173 1992 17589 5092 Face 35174 1992 33526 17589 Face 35175 47497 17590 36320 Face 35176 15968 6156 17590 Face 35177 48596 48359 16882 Face 35178 237 5933 17591 Face 35179 7854 17592 34278 Face 35180 29946 12125 17592 Face 35181 4101 17593 39135 Face 35182 4101 49261 17593 Face 35183 19260 47802 3146 Face 35184 43179 19670 32120 Face 35185 35105 22760 9971 Face 35186 22759 784 17595 Face 35187 48112 17596 18091 Face 35188 4270 49492 17596 Face 35189 5422 17597 4212 Face 35190 5422 22459 17597 Face 35191 18454 44448 13765 Face 35192 5793 11748 17598 Face 35193 35416 25781 45144 Face 35194 6813 6358 25782 Face 35195 25781 17600 45144 Face 35196 17599 32029 17600 Face 35197 19893 17601 40424 Face 35198 42781 26933 17601 Face 35199 1869 17602 22329 Face 35200 1869 16070 17602 Face 35201 2026 17603 38644 Face 35202 2026 13531 17603 Face 35203 5892 17604 23386 Face 35204 5892 10655 17604 Face 35205 10272 17605 32837 Face 35206 10272 39921 17605 Face 35207 32474 33144 7570 Face 35208 3711 38414 17606 Face 35209 29929 17607 10284 Face 35210 2704 16895 17607 Face 35211 4067 17608 11004 Face 35212 4067 27451 17608 Face 35213 1031 17609 7420 Face 35214 1031 16075 17609 Face 35215 45361 17610 25132 Face 35216 214 718 17610 Face 35217 46053 17611 23336 Face 35218 28531 3914 17611 Face 35219 12453 17612 48973 Face 35220 12453 27565 17612 Face 35221 47462 17613 28277 Face 35222 5371 38261 39360 Face 35223 37275 17614 13776 Face 35224 4902 35898 17614 Face 35225 2176 28703 15575 Face 35226 2176 7906 28703 Face 35227 12605 17616 7094 Face 35228 12605 18223 17616 Face 35229 2124 17617 15130 Face 35230 42989 7757 17617 Face 35231 5551 17618 26474 Face 35232 5551 1646 42454 Face 35233 670 17619 24371 Face 35234 670 22894 32416 Face 35235 44878 23703 36096 Face 35236 25235 49087 30329 Face 35237 44878 17622 23703 Face 35238 44878 15885 17622 Face 35239 17621 17622 34246 Face 35240 17621 17620 17622 Face 35241 1696 17623 49331 Face 35242 36018 9356 25904 Face 35243 11842 29894 28662 Face 35244 11842 16208 29894 Face 35245 11842 17625 30157 Face 35246 11842 28662 17625 Face 35247 40802 17626 33743 Face 35248 40802 27699 17626 Face 35249 770 17627 18395 Face 35250 770 17494 33679 Face 35251 5286 17628 40015 Face 35252 27963 3182 17628 Face 35253 3377 17629 35602 Face 35254 3377 12014 17629 Face 35255 44691 17630 20845 Face 35256 9980 27693 17630 Face 35257 31585 17631 12532 Face 35258 31584 25488 17631 Face 35259 20131 17632 13710 Face 35260 45645 13871 31940 Face 35261 38682 17633 20243 Face 35262 39658 16250 30809 Face 35263 3805 17634 2748 Face 35264 3805 30809 17634 Face 35265 2684 17635 14509 Face 35266 2684 7253 49690 Face 35267 8976 17636 2730 Face 35268 8976 14642 17636 Face 35269 8220 31115 19846 Face 35270 8220 31790 31115 Face 35271 3720 42073 10335 Face 35272 3720 44626 17638 Face 35273 6976 17639 31251 Face 35274 6976 28705 17639 Face 35275 40670 25252 17456 Face 35276 2118 27882 17640 Face 35277 2 17641 34021 Face 35278 2 7818 17641 Face 35279 5361 45781 30407 Face 35280 5361 17781 17642 Face 35281 1427 17643 34810 Face 35282 1427 46450 17643 Face 35283 31851 17644 12282 Face 35284 4683 7656 17644 Face 35285 27371 17645 23187 Face 35286 4683 17644 31851 Face 35287 29370 17646 13058 Face 35288 42163 8315 17646 Face 35289 20565 36363 23201 Face 35290 21248 2019 17647 Face 35291 4365 17648 37115 Face 35292 20754 39388 17648 Face 35293 21308 40337 26856 Face 35294 37806 9960 17649 Face 35295 33751 33752 15269 Face 35296 25064 19556 17650 Face 35297 2927 44034 25029 Face 35298 2927 38129 17651 Face 35299 9012 17652 12835 Face 35300 9012 49617 17652 Face 35301 9405 17653 36806 Face 35302 20267 6969 17653 Face 35303 8787 17654 7075 Face 35304 8787 42915 27866 Face 35305 10451 46024 1307 Face 35306 10451 33014 17655 Face 35307 3605 17656 33165 Face 35308 26688 13987 17656 Face 35309 45068 40109 27783 Face 35310 6237 5690 26823 Face 35311 1909 17658 48811 Face 35312 1909 35199 17658 Face 35313 752 31202 10652 Face 35314 33409 29448 17659 Face 35315 326 17660 11363 Face 35316 18314 14114 17660 Face 35317 3264 17661 21711 Face 35318 3264 44949 17661 Face 35319 38095 42074 22710 Face 35320 603 9497 42074 Face 35321 49035 17663 25475 Face 35322 28268 7916 17663 Face 35323 28676 17664 15114 Face 35324 3422 15319 17664 Face 35325 11751 17665 30393 Face 35326 11751 1451 17665 Face 35327 4932 17666 20378 Face 35328 4932 49569 17666 Face 35329 2610 17667 6168 Face 35330 43269 31375 17667 Face 35331 25057 17668 3202 Face 35332 13617 46758 17668 Face 35333 10754 17669 29853 Face 35334 10754 45422 17669 Face 35335 30842 49952 5986 Face 35336 3084 17309 17670 Face 35337 8840 17671 22623 Face 35338 8840 12206 17671 Face 35339 17673 17672 43643 Face 35340 1134 15794 17672 Face 35341 23556 17673 25804 Face 35342 1134 17672 17673 Face 35343 8805 17674 13275 Face 35344 8805 28936 17674 Face 35345 9407 17675 18895 Face 35346 26350 6895 34068 Face 35347 8125 17676 24807 Face 35348 8125 36475 17676 Face 35349 8608 17677 33124 Face 35350 8608 45292 17677 Face 35351 9747 17678 9746 Face 35352 9747 42643 17678 Face 35353 28512 17679 15073 Face 35354 38017 6931 17679 Face 35355 40910 17680 20188 Face 35356 40910 46250 17680 Face 35357 4972 34311 28213 Face 35358 24873 49432 17681 Face 35359 27609 44362 14377 Face 35360 35058 47430 17682 Face 35361 5948 17683 25161 Face 35362 5948 49699 17683 Face 35363 41339 17684 24549 Face 35364 37179 14510 17684 Face 35365 18550 47114 41902 Face 35366 6331 13667 17685 Face 35367 4658 17686 26215 Face 35368 4658 32140 17686 Face 35369 10293 17687 10377 Face 35370 47394 33367 17687 Face 35371 31264 17688 48500 Face 35372 31263 27391 17688 Face 35373 268 48590 18758 Face 35374 268 18172 48590 Face 35375 15574 17690 39706 Face 35376 15574 7439 17690 Face 35377 7998 17691 11373 Face 35378 49278 25936 17691 Face 35379 44 17692 30619 Face 35380 44 34588 17692 Face 35381 40471 40515 16705 Face 35382 4009 31553 17693 Face 35383 8540 17694 29091 Face 35384 26493 14990 40043 Face 35385 38861 17695 17463 Face 35386 38554 8875 17695 Face 35387 9817 17696 48172 Face 35388 9817 19132 17696 Face 35389 43995 17697 32254 Face 35390 35933 27193 46543 Face 35391 35933 47558 904 Face 35392 21694 14920 49495 Face 35393 15832 17699 42950 Face 35394 38135 1402 17699 Face 35395 24819 17700 8953 Face 35396 12464 43388 17700 Face 35397 8952 17701 14653 Face 35398 27416 37318 17701 Face 35399 47179 17702 17615 Face 35400 934 20476 17702 Face 35401 10489 17703 4139 Face 35402 48227 22882 17703 Face 35403 4223 17704 38726 Face 35404 4223 23032 17704 Face 35405 6371 32390 1208 Face 35406 26007 14562 17705 Face 35407 29206 17706 5491 Face 35408 25223 11828 17706 Face 35409 14935 17707 19021 Face 35410 47473 24340 17707 Face 35411 1496 17708 4390 Face 35412 34692 32857 36698 Face 35413 34692 17709 40655 Face 35414 34693 44850 17709 Face 35415 3857 17710 39962 Face 35416 3857 26943 17710 Face 35417 49307 17711 41015 Face 35418 8407 33820 17711 Face 35419 9154 32760 23414 Face 35420 18609 31592 17712 Face 35421 2170 17713 32075 Face 35422 2170 10394 17713 Face 35423 3206 34489 24082 Face 35424 3206 42562 34489 Face 35425 5179 17715 14670 Face 35426 38955 41393 17715 Face 35427 19555 17716 27330 Face 35428 42044 10515 17716 Face 35429 27406 17717 35478 Face 35430 27406 16212 17717 Face 35431 4829 17718 1307 Face 35432 4829 13421 17718 Face 35433 1992 17719 15444 Face 35434 1992 31286 17719 Face 35435 418 17720 48989 Face 35436 30099 17700 17720 Face 35437 4202 17721 921 Face 35438 4202 9438 17721 Face 35439 12702 35516 35103 Face 35440 12702 26089 35516 Face 35441 749 17723 12849 Face 35442 42852 12617 46370 Face 35443 12771 17724 14555 Face 35444 12771 32941 37231 Face 35445 8235 17725 27891 Face 35446 38013 47142 17725 Face 35447 8347 17726 16272 Face 35448 8347 12668 17726 Face 35449 40619 17727 17362 Face 35450 5961 48640 31706 Face 35451 8210 17728 34599 Face 35452 8210 17587 42499 Face 35453 37047 17729 27298 Face 35454 1508 23626 46306 Face 35455 186 17730 12607 Face 35456 21770 12294 17730 Face 35457 13413 17731 38905 Face 35458 13413 41591 17731 Face 35459 2961 17732 38627 Face 35460 2961 15477 17732 Face 35461 31232 17733 15717 Face 35462 31232 38151 17733 Face 35463 891 17734 43077 Face 35464 38652 42771 17734 Face 35465 33132 17735 6479 Face 35466 18797 32335 36023 Face 35467 4859 17736 31699 Face 35468 31733 7418 49276 Face 35469 22379 17737 22408 Face 35470 42930 18222 38943 Face 35471 3002 17738 33799 Face 35472 3002 21189 17738 Face 35473 26960 17739 5939 Face 35474 21884 32037 17739 Face 35475 3421 44819 19674 Face 35476 3421 30193 36439 Face 35477 43251 42024 588 Face 35478 6937 26231 44699 Face 35479 118 17742 23104 Face 35480 118 13046 17742 Face 35481 4682 17743 35430 Face 35482 4682 44812 17743 Face 35483 44479 42375 25665 Face 35484 8297 37519 17744 Face 35485 5679 17745 27945 Face 35486 29324 34447 24079 Face 35487 44074 17746 10514 Face 35488 4751 25829 17746 Face 35489 3018 17747 16169 Face 35490 3018 28889 17747 Face 35491 21128 39903 35355 Face 35492 27482 49414 26853 Face 35493 370 17749 32455 Face 35494 370 9614 47001 Face 35495 3038 39050 20748 Face 35496 3038 19999 39049 Face 35497 36245 17751 20735 Face 35498 36245 20748 17751 Face 35499 38507 37884 8726 Face 35500 48150 35683 17752 Face 35501 27594 33491 30323 Face 35502 27594 49235 33491 Face 35503 6397 17754 40714 Face 35504 6397 16616 17754 Face 35505 39333 17755 16902 Face 35506 984 13377 17755 Face 35507 32057 17756 12725 Face 35508 3088 31421 17756 Face 35509 14936 46394 10118 Face 35510 17758 3245 17757 Face 35511 14936 45379 46394 Face 35512 14936 25541 49465 Face 35513 5600 43535 13012 Face 35514 5600 27169 43535 Face 35515 36902 49781 28810 Face 35516 36179 8909 17760 Face 35517 13436 23587 7 Face 35518 13436 21777 36549 Face 35519 5958 17762 37024 Face 35520 5958 34591 17762 Face 35521 992 21255 42941 Face 35522 992 11113 21255 Face 35523 15652 17764 30979 Face 35524 45330 6062 17764 Face 35525 10980 17765 12157 Face 35526 10980 48486 17765 Face 35527 6049 17766 29635 Face 35528 6049 24914 17766 Face 35529 24729 47292 31468 Face 35530 40732 16866 17767 Face 35531 31600 17768 21745 Face 35532 1743 42414 48565 Face 35533 2545 17769 5006 Face 35534 41795 33920 17769 Face 35535 26082 17770 15619 Face 35536 17771 32465 41555 Face 35537 35806 17771 41555 Face 35538 11729 5124 17771 Face 35539 9902 17772 3379 Face 35540 9902 3378 17772 Face 35541 1241 17773 47538 Face 35542 1241 12751 17773 Face 35543 30341 17774 38685 Face 35544 2884 10129 17774 Face 35545 5301 17775 23259 Face 35546 23507 46052 17775 Face 35547 1925 17776 33726 Face 35548 1925 28675 17776 Face 35549 4266 48530 14712 Face 35550 38939 1749 17777 Face 35551 1840 17778 12240 Face 35552 1840 33906 17778 Face 35553 1123 34060 16945 Face 35554 1123 2423 46746 Face 35555 4635 17780 13552 Face 35556 4635 39551 17780 Face 35557 38573 49246 13304 Face 35558 22472 17642 17781 Face 35559 1626 17782 35189 Face 35560 1626 15847 17782 Face 35561 9003 17783 21618 Face 35562 9003 2679 17783 Face 35563 45985 17784 15129 Face 35564 45984 49206 17784 Face 35565 44953 17785 23484 Face 35566 3104 36132 17785 Face 35567 3506 17786 44605 Face 35568 3506 28885 17786 Face 35569 48521 23167 24621 Face 35570 22190 5154 17787 Face 35571 49450 17788 44043 Face 35572 49450 32192 17788 Face 35573 4609 17789 15296 Face 35574 17790 31582 33080 Face 35575 4609 17790 17789 Face 35576 4609 24851 17790 Face 35577 4960 17791 23034 Face 35578 4960 11248 17791 Face 35579 4960 17792 11248 Face 35580 4960 26713 17792 Face 35581 23155 17793 4010 Face 35582 16518 31956 17793 Face 35583 22818 17794 27779 Face 35584 18592 6725 17794 Face 35585 39620 35827 9327 Face 35586 509 42326 17795 Face 35587 2357 17796 44554 Face 35588 2357 8545 17796 Face 35589 8111 17797 21806 Face 35590 8111 14869 17797 Face 35591 45304 17798 37657 Face 35592 14258 38972 17798 Face 35593 9895 17799 4825 Face 35594 21998 15285 17799 Face 35595 987 17800 10221 Face 35596 41791 20317 17800 Face 35597 8684 17801 44417 Face 35598 8684 34390 17801 Face 35599 6253 17802 23496 Face 35600 6253 16928 17802 Face 35601 8296 17803 26283 Face 35602 8296 48897 17803 Face 35603 27338 17804 46905 Face 35604 27338 23848 17804 Face 35605 10991 17805 22489 Face 35606 29498 36805 17805 Face 35607 253 17806 24959 Face 35608 28563 16129 17806 Face 35609 42434 39055 21747 Face 35610 4602 47000 39055 Face 35611 17807 39055 47000 Face 35612 35552 19014 17808 Face 35613 20183 28477 42968 Face 35614 40407 31872 17809 Face 35615 8300 49761 1200 Face 35616 8300 30289 49761 Face 35617 4296 17811 38014 Face 35618 4296 32721 23700 Face 35619 21465 17812 27966 Face 35620 14501 8699 17812 Face 35621 46233 17813 14846 Face 35622 27100 38740 35495 Face 35623 1599 17814 41225 Face 35624 1599 26910 17814 Face 35625 17816 17815 32189 Face 35626 36273 10125 17815 Face 35627 38004 17816 24002 Face 35628 38004 17815 17816 Face 35629 5740 17817 5741 Face 35630 5740 38578 28147 Face 35631 302 17818 12246 Face 35632 26875 5931 34340 Face 35633 13466 17819 44773 Face 35634 13466 21988 17819 Face 35635 7220 17820 40579 Face 35636 33045 21853 17820 Face 35637 4615 17821 4862 Face 35638 4615 40059 17821 Face 35639 30946 17822 1218 Face 35640 13843 10552 17822 Face 35641 1658 34101 14913 Face 35642 1658 15077 34101 Face 35643 5121 17824 38592 Face 35644 5121 16042 17824 Face 35645 5258 17825 35895 Face 35646 5258 8959 17825 Face 35647 41041 17826 4244 Face 35648 8248 3675 49555 Face 35649 4195 17827 46456 Face 35650 4195 34017 17827 Face 35651 5321 17828 25185 Face 35652 5321 23157 17828 Face 35653 10677 17829 39518 Face 35654 19101 13474 17829 Face 35655 6943 17830 37242 Face 35656 6943 3135 17830 Face 35657 9395 17831 40467 Face 35658 33003 25726 17831 Face 35659 677 17832 38625 Face 35660 677 42833 17832 Face 35661 5319 17833 16930 Face 35662 5319 40996 17833 Face 35663 26699 17834 7509 Face 35664 26699 48125 17834 Face 35665 9910 42612 31911 Face 35666 9910 36702 42612 Face 35667 24315 17836 38999 Face 35668 5026 41253 28303 Face 35669 4652 17837 19116 Face 35670 4652 22247 17837 Face 35671 1197 17838 6501 Face 35672 23644 12556 17838 Face 35673 7883 17839 27083 Face 35674 7883 10028 17839 Face 35675 36201 17840 22508 Face 35676 36201 24564 17840 Face 35677 3215 30071 30867 Face 35678 3215 33738 30070 Face 35679 3215 17842 37250 Face 35680 3215 9921 17842 Face 35681 23283 17843 32003 Face 35682 32643 48509 17843 Face 35683 20470 48808 14704 Face 35684 3596 43089 24718 Face 35685 4191 27166 49629 Face 35686 4191 11843 36380 Face 35687 7365 17846 26622 Face 35688 7365 14068 17846 Face 35689 6793 17847 34149 Face 35690 31060 31257 28902 Face 35691 22399 17848 27164 Face 35692 9286 28431 17848 Face 35693 18398 17849 25157 Face 35694 28843 21167 17849 Face 35695 41296 17850 5790 Face 35696 41296 5773 17850 Face 35697 1096 17851 11865 Face 35698 1096 41366 30494 Face 35699 1096 17852 41366 Face 35700 1096 8303 47067 Face 35701 37502 17853 46484 Face 35702 37502 17854 17853 Face 35703 49068 17854 20556 Face 35704 28954 49532 17854 Face 35705 5163 17855 3793 Face 35706 5163 48143 17855 Face 35707 1950 17856 29428 Face 35708 1950 26512 17856 Face 35709 9235 17857 155 Face 35710 9235 815 17857 Face 35711 17859 17858 49284 Face 35712 34527 2374 17858 Face 35713 20175 17859 12153 Face 35714 4047 48835 34527 Face 35715 13693 17860 25104 Face 35716 43390 15378 36484 Face 35717 2963 17861 25072 Face 35718 2963 38246 17861 Face 35719 6895 17862 6528 Face 35720 6895 26350 17862 Face 35721 1363 41799 27403 Face 35722 25661 12815 17863 Face 35723 17865 28941 25388 Face 35724 31611 8230 17864 Face 35725 5965 17865 20962 Face 35726 5965 28941 17865 Face 35727 8568 17866 9906 Face 35728 8568 2803 17866 Face 35729 3382 17867 19138 Face 35730 3382 24456 17867 Face 35731 46999 17868 2974 Face 35732 2517 48412 17868 Face 35733 44007 17869 14831 Face 35734 32881 7795 17869 Face 35735 8025 17870 48834 Face 35736 8025 16447 17870 Face 35737 2870 17871 40044 Face 35738 27641 4455 17871 Face 35739 7091 47339 21250 Face 35740 25977 19740 17872 Face 35741 3188 17873 36786 Face 35742 35871 6695 17873 Face 35743 505 17874 38614 Face 35744 505 3056 17874 Face 35745 863 17875 35695 Face 35746 863 47510 17875 Face 35747 5391 17876 19472 Face 35748 5391 15985 41750 Face 35749 17878 17877 9380 Face 35750 45657 29585 17877 Face 35751 5609 17878 2644 Face 35752 45657 17877 17878 Face 35753 31537 17879 47757 Face 35754 4738 42398 34825 Face 35755 5358 17880 22413 Face 35756 5358 44951 17880 Face 35757 34777 17881 40950 Face 35758 11256 30748 17881 Face 35759 44709 43673 17430 Face 35760 108 26764 17882 Face 35761 8580 17883 32979 Face 35762 8580 29188 17883 Face 35763 25551 17884 23213 Face 35764 25551 39540 45601 Face 35765 1767 17885 34988 Face 35766 1767 11693 17885 Face 35767 1697 17886 28612 Face 35768 22059 35396 17886 Face 35769 39079 17887 5544 Face 35770 43653 13758 17887 Face 35771 30785 17888 13287 Face 35772 28940 44227 17888 Face 35773 38340 42805 22839 Face 35774 3139 7232 17889 Face 35775 6145 36367 14448 Face 35776 6145 22293 36367 Face 35777 39352 17891 33489 Face 35778 1808 34063 17891 Face 35779 2245 42946 10182 Face 35780 24703 11791 17892 Face 35781 1051 17893 29566 Face 35782 1051 14608 47085 Face 35783 11448 46822 2172 Face 35784 11448 17629 46822 Face 35785 29472 17895 26469 Face 35786 29472 49802 17895 Face 35787 2173 17896 22727 Face 35788 33513 34229 45486 Face 35789 46671 17897 40216 Face 35790 40691 29032 27785 Face 35791 9492 17898 32718 Face 35792 9492 28752 17898 Face 35793 7711 35694 41459 Face 35794 29478 8783 17899 Face 35795 2387 17900 34443 Face 35796 2387 29460 17900 Face 35797 5424 17901 38194 Face 35798 5424 37487 17901 Face 35799 2005 19340 29870 Face 35800 2005 16919 19340 Face 35801 23355 17903 45531 Face 35802 64 49394 17903 Face 35803 19725 40243 15870 Face 35804 48787 5312 17904 Face 35805 3375 19725 12616 Face 35806 3375 17904 19725 Face 35807 35255 17906 21663 Face 35808 45223 12443 17906 Face 35809 14658 17907 36461 Face 35810 14658 26848 17907 Face 35811 19216 46211 22705 Face 35812 5924 35004 17908 Face 35813 4242 17909 26061 Face 35814 48588 4241 17909 Face 35815 1768 17910 24355 Face 35816 34970 17208 17910 Face 35817 22131 17911 43621 Face 35818 22131 15881 17911 Face 35819 8135 17912 44417 Face 35820 40617 15772 17912 Face 35821 39743 17913 20813 Face 35822 39743 15952 17913 Face 35823 39743 17914 15952 Face 35824 9912 3862 17914 Face 35825 3944 34185 43006 Face 35826 43295 42125 17915 Face 35827 45886 17916 42560 Face 35828 45886 19111 17916 Face 35829 11212 17917 9219 Face 35830 11212 47397 17917 Face 35831 49805 17918 28386 Face 35832 929 14637 34955 Face 35833 7487 40492 5641 Face 35834 7487 9683 17919 Face 35835 22915 17920 45763 Face 35836 31172 31010 17920 Face 35837 41833 17921 29413 Face 35838 5806 29296 17921 Face 35839 21787 17922 2670 Face 35840 4155 19965 17922 Face 35841 1256 17923 6248 Face 35842 1256 15121 17923 Face 35843 2093 17924 10836 Face 35844 2093 17323 26731 Face 35845 20302 42931 13472 Face 35846 27998 41218 46510 Face 35847 1970 17926 26667 Face 35848 39667 31736 17926 Face 35849 8106 17927 3832 Face 35850 8106 15515 17927 Face 35851 40507 17928 10392 Face 35852 36 5715 17928 Face 35853 13220 17929 38397 Face 35854 13220 37022 17929 Face 35855 13034 17930 6560 Face 35856 13034 7102 17930 Face 35857 26934 17931 31965 Face 35858 26934 16419 17931 Face 35859 14023 44936 49409 Face 35860 14023 14862 44936 Face 35861 35171 17933 27579 Face 35862 35460 6962 17933 Face 35863 20792 17934 33508 Face 35864 7258 1337 17934 Face 35865 21238 17935 7567 Face 35866 38077 34722 17935 Face 35867 10961 38077 17935 Face 35868 25969 45873 38077 Face 35869 1114 17937 5434 Face 35870 25039 40202 17937 Face 35871 9959 17938 49220 Face 35872 29140 1095 17938 Face 35873 33509 17939 19215 Face 35874 22890 5929 27204 Face 35875 9093 17940 34289 Face 35876 46760 14127 17940 Face 35877 4273 17941 17540 Face 35878 4273 15969 17941 Face 35879 2584 17942 5209 Face 35880 2584 3682 17942 Face 35881 9883 17943 40659 Face 35882 9883 34270 17943 Face 35883 2348 17944 33505 Face 35884 2348 28337 17944 Face 35885 30921 17945 43976 Face 35886 36479 9221 17945 Face 35887 14728 17946 24756 Face 35888 14728 2042 17946 Face 35889 28771 17947 4514 Face 35890 24669 48307 17947 Face 35891 7708 17948 13835 Face 35892 7708 17800 17948 Face 35893 1429 41807 21195 Face 35894 1429 20722 41428 Face 35895 5560 17950 36248 Face 35896 5560 27856 17950 Face 35897 922 45358 36037 Face 35898 18005 3331 17951 Face 35899 21383 17952 1783 Face 35900 8955 12787 38796 Face 35901 36076 17953 5743 Face 35902 3696 10200 17953 Face 35903 16376 42282 32837 Face 35904 16376 5485 17954 Face 35905 6199 45509 37895 Face 35906 6199 9152 17955 Face 35907 32735 17956 22410 Face 35908 30219 36796 17956 Face 35909 1282 17957 40709 Face 35910 1282 17956 17957 Face 35911 6220 17958 12081 Face 35912 17959 27860 17958 Face 35913 23444 17959 17958 Face 35914 23444 15737 17959 Face 35915 3861 17960 9912 Face 35916 21662 16718 17960 Face 35917 7898 17961 289 Face 35918 42451 31652 34326 Face 35919 1218 17962 10518 Face 35920 27307 43572 17962 Face 35921 5731 17963 8233 Face 35922 38520 32065 17963 Face 35923 44062 37365 4522 Face 35924 6262 12838 17964 Face 35925 11920 17965 6241 Face 35926 11920 46796 17965 Face 35927 6723 17966 28328 Face 35928 48086 38567 17966 Face 35929 6180 43846 2486 Face 35930 24601 33628 17967 Face 35931 7477 17968 7478 Face 35932 7477 17541 17968 Face 35933 26454 34838 35200 Face 35934 4444 35235 17969 Face 35935 17971 17970 9831 Face 35936 38025 24361 34394 Face 35937 2734 17971 12995 Face 35938 2734 17970 17971 Face 35939 34979 17972 25907 Face 35940 46748 26271 17972 Face 35941 18204 17973 23896 Face 35942 33008 22351 17973 Face 35943 23991 31561 19953 Face 35944 23992 7281 17974 Face 35945 34549 17975 21245 Face 35946 34549 40585 17975 Face 35947 1001 17976 47716 Face 35948 37033 3970 29381 Face 35949 39966 36044 20423 Face 35950 19706 12965 17977 Face 35951 9006 17978 48877 Face 35952 9006 21914 17978 Face 35953 12572 17979 35024 Face 35954 40576 6646 17979 Face 35955 33184 25495 26107 Face 35956 39072 28256 17980 Face 35957 33441 17981 35918 Face 35958 14646 806 17981 Face 35959 44025 17982 23986 Face 35960 42244 34524 17982 Face 35961 32588 17983 47767 Face 35962 895 33241 17983 Face 35963 9087 17984 5710 Face 35964 9087 26839 17984 Face 35965 6172 17985 7850 Face 35966 6172 43287 17985 Face 35967 2409 17986 22749 Face 35968 2409 23922 17986 Face 35969 2179 17987 44142 Face 35970 2179 30791 17987 Face 35971 30823 17988 10007 Face 35972 7347 13413 17988 Face 35973 45700 29046 14159 Face 35974 17990 33697 29045 Face 35975 1715 17990 29045 Face 35976 1715 25128 17990 Face 35977 6028 17991 33397 Face 35978 6028 29578 32359 Face 35979 1916 17992 19172 Face 35980 1916 30533 17992 Face 35981 1281 17993 9660 Face 35982 1281 7529 17993 Face 35983 336 17994 39869 Face 35984 33992 9090 17994 Face 35985 33463 17995 31691 Face 35986 33463 12599 17995 Face 35987 3080 21642 23424 Face 35988 3080 11900 21642 Face 35989 44759 17997 29598 Face 35990 9160 32705 25248 Face 35991 28435 17998 1158 Face 35992 47955 13620 17998 Face 35993 39439 17999 10231 Face 35994 33930 34 45932 Face 35995 6211 18000 29443 Face 35996 43870 17222 18000 Face 35997 7534 18001 43115 Face 35998 44182 11462 18001 Face 35999 44189 18002 15467 Face 36000 44189 13552 18002 Face 36001 40161 28997 13927 Face 36002 38355 47717 18003 Face 36003 1046 18004 10468 Face 36004 20439 8367 18004 Face 36005 922 18005 17951 Face 36006 42768 15208 18005 Face 36007 9805 31814 14810 Face 36008 9805 14879 31813 Face 36009 46944 18007 20145 Face 36010 4729 22251 18007 Face 36011 792 18008 45885 Face 36012 792 40380 18008 Face 36013 18581 18009 28962 Face 36014 27346 21884 18009 Face 36015 28359 18010 41168 Face 36016 10187 22773 36661 Face 36017 6502 18011 16869 Face 36018 6502 34985 18011 Face 36019 2107 18012 38508 Face 36020 2107 9888 40307 Face 36021 33191 18013 16498 Face 36022 3628 47378 20918 Face 36023 43392 18014 26636 Face 36024 33731 7764 38376 Face 36025 32361 18015 21388 Face 36026 4591 21504 18015 Face 36027 11558 33220 43629 Face 36028 11558 13996 33220 Face 36029 11663 18017 37179 Face 36030 11663 45994 18017 Face 36031 40005 18018 17860 Face 36032 3840 12531 18018 Face 36033 27037 18019 43370 Face 36034 27037 21601 18019 Face 36035 6850 36705 30496 Face 36036 39875 1507 36705 Face 36037 10871 18021 37091 Face 36038 10871 28830 18021 Face 36039 18023 18022 47347 Face 36040 3281 24805 18022 Face 36041 27852 18023 34911 Face 36042 3281 18022 18023 Face 36043 42174 18024 18646 Face 36044 3644 8768 18024 Face 36045 44615 18025 11823 Face 36046 44615 37082 18025 Face 36047 32878 18026 32752 Face 36048 32496 2552 18026 Face 36049 47960 18027 36815 Face 36050 6729 2284 39029 Face 36051 7813 45325 42975 Face 36052 7813 30280 45325 Face 36053 28280 18029 19044 Face 36054 28280 9231 44917 Face 36055 38319 18030 13889 Face 36056 6272 1258 43001 Face 36057 7599 18031 27680 Face 36058 7599 7667 18031 Face 36059 18031 18032 27680 Face 36060 18031 22360 18032 Face 36061 7379 18033 47466 Face 36062 36069 12294 18033 Face 36063 29348 18034 14547 Face 36064 26284 16801 22380 Face 36065 9849 18035 4863 Face 36066 9849 46118 18035 Face 36067 15952 18036 17913 Face 36068 15952 15256 18036 Face 36069 26521 23949 24097 Face 36070 33026 36881 18037 Face 36071 3124 18038 5879 Face 36072 3124 38976 29975 Face 36073 7516 18039 41338 Face 36074 7516 35075 18039 Face 36075 693 35744 15359 Face 36076 693 18767 44060 Face 36077 31104 18041 41034 Face 36078 2534 16947 18041 Face 36079 11792 18042 27595 Face 36080 11792 21018 18042 Face 36081 6748 18043 30984 Face 36082 6748 42666 18043 Face 36083 43501 18044 7473 Face 36084 7460 1050 36954 Face 36085 31524 18045 37745 Face 36086 31524 17476 18045 Face 36087 2698 44396 13408 Face 36088 2698 4965 35762 Face 36089 988 18047 28594 Face 36090 988 16406 18047 Face 36091 6082 18048 7267 Face 36092 6082 10278 18048 Face 36093 35522 18049 25400 Face 36094 3745 22201 18049 Face 36095 35812 18050 4616 Face 36096 3745 18049 18050 Face 36097 4021 18051 13883 Face 36098 4021 24848 18051 Face 36099 5344 18052 30896 Face 36100 30205 13555 18052 Face 36101 6247 18053 33787 Face 36102 42758 26854 18053 Face 36103 1345 18054 39141 Face 36104 1345 42238 18054 Face 36105 2059 18055 41524 Face 36106 2059 36086 18055 Face 36107 18374 27231 11339 Face 36108 44008 9939 18056 Face 36109 33757 18057 36192 Face 36110 1666 48680 18057 Face 36111 28730 18058 1299 Face 36112 6015 46993 30812 Face 36113 4455 18059 46761 Face 36114 4455 16923 18059 Face 36115 5602 18060 4114 Face 36116 44268 18225 18060 Face 36117 47154 18061 21090 Face 36118 47154 31566 18061 Face 36119 29253 18062 23984 Face 36120 43968 1246 18062 Face 36121 36089 18063 39305 Face 36122 7966 32698 18063 Face 36123 36317 18064 26661 Face 36124 36317 7389 18064 Face 36125 5732 18065 5999 Face 36126 5732 8546 18065 Face 36127 258 18066 44690 Face 36128 258 14163 18066 Face 36129 258 18067 14163 Face 36130 258 23394 18067 Face 36131 11358 18068 16131 Face 36132 11358 39558 18068 Face 36133 38747 18069 45643 Face 36134 38747 33663 18069 Face 36135 29254 18070 24969 Face 36136 30781 12776 18070 Face 36137 42862 36065 11914 Face 36138 7061 959 18071 Face 36139 7247 18072 25824 Face 36140 7247 16854 18072 Face 36141 42306 29546 13009 Face 36142 916 27218 18073 Face 36143 7752 18074 30727 Face 36144 7752 35401 18074 Face 36145 9170 18075 28352 Face 36146 9170 24569 18075 Face 36147 1837 42865 14150 Face 36148 1837 40940 18076 Face 36149 3778 18077 23529 Face 36150 3778 45795 18077 Face 36151 41058 18078 9665 Face 36152 3593 40018 18078 Face 36153 25318 35198 20852 Face 36154 18137 7684 35198 Face 36155 1749 18080 6148 Face 36156 1749 23088 40352 Face 36157 12057 18081 30764 Face 36158 12057 1573 18081 Face 36159 6355 18082 32178 Face 36160 49086 23152 18082 Face 36161 19525 18083 41130 Face 36162 46033 29838 22568 Face 36163 46271 18084 38988 Face 36164 510 32384 18084 Face 36165 39300 18085 30225 Face 36166 10662 6077 18085 Face 36167 38636 18086 32766 Face 36168 7426 19793 18086 Face 36169 10586 35749 4670 Face 36170 10586 21749 18087 Face 36171 6685 18088 13885 Face 36172 23343 29688 36203 Face 36173 28737 48593 7550 Face 36174 10117 10566 44147 Face 36175 2340 37944 25856 Face 36176 2340 48172 37944 Face 36177 29019 18091 17596 Face 36178 2363 16813 36482 Face 36179 8231 42169 7564 Face 36180 8231 1740 18092 Face 36181 8678 40791 15112 Face 36182 8678 10962 18093 Face 36183 4618 18094 32162 Face 36184 4618 15993 18094 Face 36185 7272 18095 32346 Face 36186 37844 4274 34781 Face 36187 39121 18096 29537 Face 36188 6036 6803 18096 Face 36189 163 18097 11040 Face 36190 40684 12818 18097 Face 36191 24620 18098 34539 Face 36192 25444 39378 18098 Face 36193 5738 18099 19503 Face 36194 5738 37584 18099 Face 36195 12366 18100 29417 Face 36196 12366 24977 18100 Face 36197 7905 18101 25332 Face 36198 7905 11254 18101 Face 36199 5255 18102 13627 Face 36200 5255 30375 18102 Face 36201 180 18103 23571 Face 36202 180 30490 18103 Face 36203 20441 26322 36717 Face 36204 6414 17259 18104 Face 36205 32164 18105 40200 Face 36206 45665 11739 18105 Face 36207 43355 18106 8341 Face 36208 6682 14600 42587 Face 36209 34148 18107 1302 Face 36210 29873 41240 18107 Face 36211 34148 29873 18107 Face 36212 7894 32691 18108 Face 36213 787 18109 6629 Face 36214 787 8900 18109 Face 36215 25538 18110 33901 Face 36216 2089 24483 18110 Face 36217 6281 18111 18929 Face 36218 6281 45685 18111 Face 36219 34605 18112 43189 Face 36220 3161 12456 18112 Face 36221 32041 40379 2798 Face 36222 33011 12073 18113 Face 36223 47972 18695 9965 Face 36224 3335 11304 37975 Face 36225 5465 41065 15556 Face 36226 37025 48567 41065 Face 36227 11695 18116 33602 Face 36228 11695 26958 18116 Face 36229 9625 18117 28156 Face 36230 18118 15088 44032 Face 36231 48852 18118 18117 Face 36232 48852 19683 18118 Face 36233 47206 18119 20305 Face 36234 25287 16123 33217 Face 36235 32776 37251 44849 Face 36236 2872 12453 48973 Face 36237 40883 30379 8372 Face 36238 7030 7029 18121 Face 36239 8227 45225 26179 Face 36240 8227 7644 18122 Face 36241 7265 18123 36879 Face 36242 7265 4507 18123 Face 36243 3068 18124 40822 Face 36244 3068 38986 18124 Face 36245 1746 34232 35950 Face 36246 1746 12825 18125 Face 36247 10363 35514 16277 Face 36248 10363 25187 46793 Face 36249 40763 18127 14262 Face 36250 10294 17695 18127 Face 36251 3074 18128 33577 Face 36252 3074 31515 18128 Face 36253 3332 18129 1245 Face 36254 40063 5078 18129 Face 36255 8112 18130 29957 Face 36256 8112 14032 36170 Face 36257 48643 18131 45021 Face 36258 3074 13599 18131 Face 36259 43874 18132 46 Face 36260 43873 26449 18132 Face 36261 4908 18133 18757 Face 36262 4908 12919 18133 Face 36263 2023 18134 27002 Face 36264 25872 36172 18134 Face 36265 5504 37952 9906 Face 36266 5504 2723 37952 Face 36267 2551 25469 17553 Face 36268 2551 14861 18136 Face 36269 45376 18137 18079 Face 36270 45376 39882 18137 Face 36271 3712 18138 6198 Face 36272 3712 39188 18138 Face 36273 3712 18139 7738 Face 36274 3712 6198 18139 Face 36275 6568 44477 39024 Face 36276 6568 28297 44477 Face 36277 7837 18141 29000 Face 36278 7837 42128 18141 Face 36279 20917 18142 45787 Face 36280 48189 30612 18142 Face 36281 23522 18143 7020 Face 36282 23522 47943 18143 Face 36283 18145 18144 46842 Face 36284 18145 24864 18144 Face 36285 3921 18145 11679 Face 36286 3921 5687 18145 Face 36287 42529 42355 19419 Face 36288 42527 1521 42355 Face 36289 6880 18147 26751 Face 36290 6880 39150 18147 Face 36291 45964 18148 25443 Face 36292 20360 17523 18148 Face 36293 5796 18149 37387 Face 36294 46545 15108 18149 Face 36295 31860 18150 44904 Face 36296 31860 31253 18150 Face 36297 41740 18151 21350 Face 36298 41740 45686 18151 Face 36299 29974 31697 3220 Face 36300 7897 3195 36545 Face 36301 5468 18153 9403 Face 36302 36766 11708 18153 Face 36303 406 30505 10860 Face 36304 28899 49232 18154 Face 36305 11110 18155 35990 Face 36306 11110 38 18155 Face 36307 20155 18156 7672 Face 36308 22120 49404 18156 Face 36309 45507 18157 15680 Face 36310 12423 12539 18157 Face 36311 4437 45606 5959 Face 36312 4437 24234 45606 Face 36313 2333 18159 11381 Face 36314 39131 35079 18159 Face 36315 10366 18160 14894 Face 36316 10366 31593 18160 Face 36317 10366 18161 1108 Face 36318 10366 14894 18161 Face 36319 37423 40096 2856 Face 36320 2857 36182 18162 Face 36321 22412 18163 7205 Face 36322 12306 47277 18163 Face 36323 35751 18164 16102 Face 36324 33213 27550 40199 Face 36325 6488 40541 35612 Face 36326 6488 48039 18165 Face 36327 24424 18166 45411 Face 36328 24424 49906 18166 Face 36329 14008 47661 12620 Face 36330 14008 43753 18167 Face 36331 5461 18168 21559 Face 36332 49656 28556 18168 Face 36333 38560 18169 17116 Face 36334 5461 39026 18169 Face 36335 36267 18170 11547 Face 36336 33486 29424 41818 Face 36337 4146 18171 13648 Face 36338 4146 4147 18171 Face 36339 7578 18172 36644 Face 36340 7578 41718 18172 Face 36341 5831 18173 38850 Face 36342 5831 25038 18173 Face 36343 40953 18174 29506 Face 36344 13446 14688 18174 Face 36345 34088 18175 8547 Face 36346 3519 47521 18175 Face 36347 43959 18176 8724 Face 36348 7700 3812 18176 Face 36349 1342 18177 15284 Face 36350 34535 7291 18177 Face 36351 927 18178 29695 Face 36352 927 8929 18178 Face 36353 9105 18179 46373 Face 36354 9105 12930 18179 Face 36355 31991 18180 34934 Face 36356 13752 34413 18180 Face 36357 4417 18181 5115 Face 36358 18540 47579 18181 Face 36359 2785 18182 32086 Face 36360 2785 26189 18182 Face 36361 4337 18183 26693 Face 36362 4337 45539 18183 Face 36363 45683 29656 10208 Face 36364 20565 27990 18184 Face 36365 27133 18185 39737 Face 36366 5024 270 18185 Face 36367 42966 18186 39657 Face 36368 5024 18185 18186 Face 36369 47156 18187 24121 Face 36370 47156 36565 18187 Face 36371 33851 18188 28857 Face 36372 33851 10896 18188 Face 36373 33851 20258 8559 Face 36374 2297 32031 18189 Face 36375 2198 18190 24576 Face 36376 2198 31102 18190 Face 36377 44793 18191 10119 Face 36378 18860 1448 18191 Face 36379 11104 18192 34334 Face 36380 11104 500 18192 Face 36381 9223 18193 37523 Face 36382 45327 211 18193 Face 36383 45327 18194 211 Face 36384 9223 38747 18194 Face 36385 10330 18195 20634 Face 36386 10330 15127 18195 Face 36387 39146 18196 10955 Face 36388 2730 31961 18196 Face 36389 3820 18197 24149 Face 36390 3820 16796 18197 Face 36391 13278 37698 7499 Face 36392 44949 3264 18198 Face 36393 41753 18199 11093 Face 36394 3550 38809 18199 Face 36395 3666 48760 13874 Face 36396 3666 11085 18200 Face 36397 33638 21939 11281 Face 36398 33638 40632 21939 Face 36399 30020 31467 6621 Face 36400 3428 43158 18202 Face 36401 36615 18203 5041 Face 36402 18204 31800 18203 Face 36403 91 18204 18203 Face 36404 91 17973 18204 Face 36405 34654 18205 10780 Face 36406 4585 33815 18205 Face 36407 7209 18206 11976 Face 36408 7209 13933 18206 Face 36409 30448 47417 4600 Face 36410 2057 13164 18207 Face 36411 1956 18208 7344 Face 36412 1956 45764 18208 Face 36413 24996 18209 9943 Face 36414 36022 43409 18209 Face 36415 9947 18210 45672 Face 36416 9947 43324 18210 Face 36417 3659 25230 29575 Face 36418 3659 14202 25230 Face 36419 18213 22929 38717 Face 36420 1251 5601 27623 Face 36421 35922 18213 20852 Face 36422 35922 22929 18213 Face 36423 27463 18214 48886 Face 36424 27463 40191 18214 Face 36425 27944 18215 43313 Face 36426 5004 32740 18215 Face 36427 11293 18216 27573 Face 36428 11293 6271 18216 Face 36429 5202 18217 30229 Face 36430 20741 5203 18217 Face 36431 47627 18218 7870 Face 36432 47626 39126 18218 Face 36433 25996 18219 15203 Face 36434 25996 41009 18219 Face 36435 7212 18220 46843 Face 36436 7212 47656 34638 Face 36437 1312 18221 33033 Face 36438 1312 21860 18221 Face 36439 5918 18222 42930 Face 36440 34490 2071 35073 Face 36441 27915 18223 13855 Face 36442 7539 48246 18223 Face 36443 171 18224 45240 Face 36444 35832 6574 18224 Face 36445 113 18225 30584 Face 36446 113 18060 18225 Face 36447 363 34992 11798 Face 36448 363 47327 18226 Face 36449 31043 18227 1491 Face 36450 9290 36654 18227 Face 36451 3545 18228 20447 Face 36452 47319 42333 48846 Face 36453 4279 18229 6565 Face 36454 4279 48723 46960 Face 36455 34832 18230 45595 Face 36456 34832 4879 18230 Face 36457 35489 18231 24949 Face 36458 40813 19741 18231 Face 36459 8273 18232 45981 Face 36460 38286 16581 18232 Face 36461 11144 18233 11133 Face 36462 11144 33895 18233 Face 36463 412 18234 25043 Face 36464 26953 34126 18234 Face 36465 7208 18235 20710 Face 36466 7208 35524 18235 Face 36467 45234 18236 16547 Face 36468 45234 24940 18236 Face 36469 4549 18237 33334 Face 36470 36542 18900 18237 Face 36471 4676 18238 11682 Face 36472 4676 38271 18238 Face 36473 2247 18239 11127 Face 36474 2247 23125 18239 Face 36475 11755 18240 16151 Face 36476 11755 42924 18240 Face 36477 35000 18241 48715 Face 36478 18242 31451 18241 Face 36479 35000 18242 18241 Face 36480 25670 8697 18242 Face 36481 5434 18243 1114 Face 36482 43863 8221 18243 Face 36483 21042 43722 24599 Face 36484 7761 37632 18244 Face 36485 37395 18245 42384 Face 36486 150 3966 44619 Face 36487 5995 18246 24142 Face 36488 5995 47633 18246 Face 36489 5862 18247 40201 Face 36490 5862 13501 18247 Face 36491 3860 33473 4383 Face 36492 3860 26236 33473 Face 36493 7254 18249 42205 Face 36494 7254 1337 18249 Face 36495 5416 18250 25410 Face 36496 5416 8624 18250 Face 36497 830 41287 28724 Face 36498 29755 14353 44078 Face 36499 32043 18252 9970 Face 36500 830 28724 18252 Face 36501 6093 42330 14286 Face 36502 28141 33439 24562 Face 36503 38049 18254 13568 Face 36504 5797 49809 18254 Face 36505 19255 32237 38374 Face 36506 8268 1301 32237 Face 36507 2634 18256 37106 Face 36508 2634 23433 18256 Face 36509 48720 18257 13673 Face 36510 6434 26050 18257 Face 36511 2337 18259 38640 Face 36512 2337 48744 18259 Face 36513 48276 18259 48744 Face 36514 28790 38640 18259 Face 36515 2170 18260 38750 Face 36516 2170 10031 18260 Face 36517 3672 18261 46007 Face 36518 3672 7424 18261 Face 36519 3008 39763 18006 Face 36520 49057 11683 39763 Face 36521 19158 45576 16408 Face 36522 19158 35953 18263 Face 36523 8974 18264 37983 Face 36524 23618 13253 18264 Face 36525 1637 18265 10958 Face 36526 1637 16071 18265 Face 36527 2063 37193 15505 Face 36528 39033 22187 18266 Face 36529 3394 32210 30055 Face 36530 3394 44892 32210 Face 36531 18267 46260 5849 Face 36532 18267 46395 18268 Face 36533 18270 18269 30251 Face 36534 18270 4224 18269 Face 36535 11370 18270 30251 Face 36536 19416 4224 18270 Face 36537 4445 18271 14644 Face 36538 4445 32690 18271 Face 36539 14034 49164 15654 Face 36540 28345 22062 31926 Face 36541 5750 18273 8124 Face 36542 22618 14462 18273 Face 36543 6532 18274 28264 Face 36544 6532 25097 18274 Face 36545 9650 18275 34265 Face 36546 47353 34306 18275 Face 36547 34696 43134 7571 Face 36548 7342 41198 43134 Face 36549 14957 49774 26955 Face 36550 14957 38675 49774 Face 36551 18279 27378 48394 Face 36552 27202 2410 43887 Face 36553 9814 34347 39534 Face 36554 35422 43887 34347 Face 36555 972 18280 15153 Face 36556 972 12338 18280 Face 36557 42004 30222 6125 Face 36558 3235 26937 18281 Face 36559 14452 48290 22889 Face 36560 23599 14451 18282 Face 36561 2427 18283 31008 Face 36562 42659 5871 18283 Face 36563 6201 18284 25342 Face 36564 6201 20806 18284 Face 36565 1420 18285 12303 Face 36566 1420 33091 18285 Face 36567 35724 28546 5747 Face 36568 20514 48927 35699 Face 36569 550 25699 23247 Face 36570 23781 33688 25697 Face 36571 11932 18288 10433 Face 36572 11932 2729 18288 Face 36573 6773 18289 28439 Face 36574 6773 24284 18289 Face 36575 1617 18290 6113 Face 36576 1617 38491 18290 Face 36577 34173 18291 30857 Face 36578 5691 17263 18291 Face 36579 33221 18292 12483 Face 36580 2809 17094 45933 Face 36581 37454 18293 19265 Face 36582 37455 9494 18293 Face 36583 24657 34219 8602 Face 36584 2710 32947 18294 Face 36585 201 18295 28695 Face 36586 201 10806 18295 Face 36587 32642 18296 34713 Face 36588 28673 14910 18296 Face 36589 18298 34296 26598 Face 36590 10548 18503 18297 Face 36591 10548 18298 45356 Face 36592 10548 34296 18298 Face 36593 33478 18299 3918 Face 36594 33478 24576 18299 Face 36595 45410 39685 37157 Face 36596 22637 36156 18300 Face 36597 13903 18301 21424 Face 36598 13903 38485 18301 Face 36599 12167 18302 4566 Face 36600 12167 1577 28245 Face 36601 4752 18303 20111 Face 36602 27000 30789 44177 Face 36603 7615 18304 47283 Face 36604 7615 30334 18304 Face 36605 2757 18305 36306 Face 36606 43523 31475 18305 Face 36607 43523 37687 31475 Face 36608 2757 6370 18306 Face 36609 11951 18307 17557 Face 36610 11951 40643 18307 Face 36611 2928 18308 19481 Face 36612 2928 42423 18308 Face 36613 32013 18309 11635 Face 36614 1478 15374 18309 Face 36615 25215 18310 15891 Face 36616 323 48667 18310 Face 36617 7344 18311 27997 Face 36618 7344 25224 18311 Face 36619 27188 18312 3719 Face 36620 18313 39890 18312 Face 36621 1330 18313 18312 Face 36622 27187 14512 33437 Face 36623 326 18314 17660 Face 36624 326 32826 18314 Face 36625 45523 18315 17483 Face 36626 45523 22893 18315 Face 36627 10601 18316 22773 Face 36628 38956 30293 18316 Face 36629 11728 48890 31391 Face 36630 11728 14173 18393 Face 36631 386 18318 43445 Face 36632 31280 20934 18318 Face 36633 28872 40967 5294 Face 36634 25242 43704 37538 Face 36635 7251 18320 28237 Face 36636 7251 416 18320 Face 36637 45628 18321 38278 Face 36638 6514 10078 18321 Face 36639 3617 18322 45139 Face 36640 3617 28657 18322 Face 36641 9132 18323 39761 Face 36642 9132 9218 18323 Face 36643 2841 46194 8197 Face 36644 2841 35443 46193 Face 36645 5310 18325 46655 Face 36646 5310 21213 18325 Face 36647 8427 40804 46345 Face 36648 46065 646 18326 Face 36649 92 18327 39677 Face 36650 41906 38430 45227 Face 36651 2877 34729 15893 Face 36652 32294 7856 48267 Face 36653 10280 18329 26802 Face 36654 10280 33183 18329 Face 36655 7529 18330 14437 Face 36656 7529 1281 18330 Face 36657 3444 39868 27737 Face 36658 3444 10502 18331 Face 36659 4279 18332 48723 Face 36660 25042 45844 18332 Face 36661 37184 18333 2474 Face 36662 480 25346 18333 Face 36663 35944 18334 21582 Face 36664 6612 6827 18334 Face 36665 32399 42050 10847 Face 36666 966 24178 49176 Face 36667 18337 18336 10574 Face 36668 4175 20151 18336 Face 36669 29544 18337 276 Face 36670 4175 18336 18337 Face 36671 18339 18338 44788 Face 36672 33834 38001 18338 Face 36673 7088 49296 29965 Face 36674 7088 18338 18339 Face 36675 41020 18340 11857 Face 36676 31982 17435 33300 Face 36677 642 18341 14984 Face 36678 642 33922 18341 Face 36679 47798 18342 7068 Face 36680 36115 19249 18342 Face 36681 18344 18343 12807 Face 36682 862 44486 18343 Face 36683 23998 35274 17226 Face 36684 862 18343 18344 Face 36685 29078 18345 16820 Face 36686 9777 24527 18345 Face 36687 11375 18346 37122 Face 36688 35469 16491 18346 Face 36689 3881 18347 10539 Face 36690 29440 47991 18347 Face 36691 1389 34470 45481 Face 36692 18717 23215 18348 Face 36693 2619 18349 48237 Face 36694 2619 40248 18349 Face 36695 38356 40161 45388 Face 36696 38356 28997 40161 Face 36697 3715 18351 7251 Face 36698 45137 14033 18351 Face 36699 18006 18352 3008 Face 36700 40675 13827 18352 Face 36701 1418 18353 12061 Face 36702 1418 23997 49339 Face 36703 44128 44066 8681 Face 36704 35619 11874 18354 Face 36705 1079 48570 48101 Face 36706 1079 19876 45806 Face 36707 796 38591 23146 Face 36708 796 22991 18356 Face 36709 4183 18357 20271 Face 36710 4183 4400 18357 Face 36711 24199 22677 9931 Face 36712 30907 14696 22677 Face 36713 33735 18359 47695 Face 36714 48730 29119 18359 Face 36715 9292 35748 22221 Face 36716 26110 2616 18360 Face 36717 7857 48199 38120 Face 36718 7857 46148 18361 Face 36719 7650 45774 37613 Face 36720 38946 20776 49225 Face 36721 4445 18363 19954 Face 36722 4445 14644 18363 Face 36723 9750 47393 26828 Face 36724 9750 8102 47393 Face 36725 41832 18365 12197 Face 36726 9565 19268 18365 Face 36727 520 18366 33208 Face 36728 520 10045 18366 Face 36729 37992 18367 11191 Face 36730 3115 25294 35975 Face 36731 41052 18368 10503 Face 36732 28191 10721 18368 Face 36733 6871 18369 27333 Face 36734 18370 33219 18369 Face 36735 6871 18370 18369 Face 36736 6871 23665 18370 Face 36737 7398 18371 44797 Face 36738 7398 38103 18371 Face 36739 9454 39230 13700 Face 36740 41098 6372 18372 Face 36741 9508 31646 2607 Face 36742 35855 9739 18373 Face 36743 47697 18374 1524 Face 36744 5610 27231 18374 Face 36745 2113 18375 34228 Face 36746 2113 27326 18375 Face 36747 5775 18376 12052 Face 36748 5775 37262 18376 Face 36749 9882 18377 5078 Face 36750 9882 28202 18377 Face 36751 2103 18378 29125 Face 36752 48364 36659 18378 Face 36753 25 18379 13692 Face 36754 25 38965 18379 Face 36755 29698 40539 12055 Face 36756 29698 45406 40539 Face 36757 12055 18381 30820 Face 36758 12055 41322 18381 Face 36759 47787 18382 15635 Face 36760 6434 18257 18382 Face 36761 35266 18383 8157 Face 36762 8064 33830 18383 Face 36763 4450 18384 31398 Face 36764 23671 34262 18384 Face 36765 18256 18385 21849 Face 36766 44589 29256 18385 Face 36767 5414 18386 21998 Face 36768 5414 39041 18386 Face 36769 42 18387 7532 Face 36770 42 12495 18387 Face 36771 3393 18388 33663 Face 36772 3393 38433 18388 Face 36773 375 18389 21888 Face 36774 375 7879 18389 Face 36775 10702 18390 13830 Face 36776 10702 20797 18390 Face 36777 8967 18391 41971 Face 36778 8967 10305 42839 Face 36779 21422 18392 30365 Face 36780 32896 5633 18392 Face 36781 23943 48891 38439 Face 36782 18317 31391 48890 Face 36783 850 18394 35279 Face 36784 850 7309 18394 Face 36785 24035 18395 17627 Face 36786 21869 27268 18395 Face 36787 43611 18396 15103 Face 36788 30773 12579 18396 Face 36789 6701 18397 3675 Face 36790 18398 16044 18397 Face 36791 6701 18398 18397 Face 36792 28843 17849 18398 Face 36793 17484 18399 43788 Face 36794 17484 21553 18399 Face 36795 42292 18400 16735 Face 36796 6964 45523 18400 Face 36797 43437 18401 29088 Face 36798 43437 13480 18401 Face 36799 44617 18402 49242 Face 36800 18403 66 18402 Face 36801 43161 18403 18402 Face 36802 43161 1844 37869 Face 36803 7807 18404 22460 Face 36804 7807 25021 18404 Face 36805 27335 18405 22983 Face 36806 27335 13164 18405 Face 36807 45836 18406 10074 Face 36808 28324 37110 18406 Face 36809 37993 18407 4482 Face 36810 1308 15941 26829 Face 36811 3543 18408 37040 Face 36812 3543 20162 18408 Face 36813 22130 18409 37055 Face 36814 45289 16052 28566 Face 36815 3083 18410 22089 Face 36816 48277 30833 18410 Face 36817 35218 18411 9816 Face 36818 6975 23666 18411 Face 36819 8042 18412 34633 Face 36820 8042 27117 18412 Face 36821 6010 18413 24883 Face 36822 6010 32873 18413 Face 36823 930 18414 24188 Face 36824 930 22440 18414 Face 36825 3616 18415 624 Face 36826 3616 33667 18415 Face 36827 43451 18416 10759 Face 36828 5873 21382 35384 Face 36829 24463 18417 14109 Face 36830 1919 14519 18417 Face 36831 32199 35252 15508 Face 36832 16755 37736 18418 Face 36833 11155 18419 28450 Face 36834 44132 32631 18419 Face 36835 10144 18420 41445 Face 36836 10144 41260 18420 Face 36837 3410 18421 35252 Face 36838 3410 39572 18421 Face 36839 12512 18422 47904 Face 36840 19023 16325 18422 Face 36841 40273 18423 16263 Face 36842 20618 35208 18423 Face 36843 5439 18424 37210 Face 36844 5439 47953 32316 Face 36845 1926 40833 12566 Face 36846 1926 43582 18425 Face 36847 18427 18426 4065 Face 36848 29205 42489 18426 Face 36849 1542 18427 39426 Face 36850 1542 18426 18427 Face 36851 19041 41219 38586 Face 36852 2401 4114 18428 Face 36853 3058 32089 26106 Face 36854 3058 20102 18429 Face 36855 6138 18430 30939 Face 36856 6138 1729 18430 Face 36857 1166 33057 8659 Face 36858 49840 25158 18431 Face 36859 33172 18432 13721 Face 36860 1166 32411 18432 Face 36861 29063 18433 42690 Face 36862 33627 9736 18433 Face 36863 38581 18434 17343 Face 36864 8110 3932 18434 Face 36865 791 18435 33613 Face 36866 791 39724 48524 Face 36867 25223 18436 3683 Face 36868 2459 16652 18436 Face 36869 11671 18437 35968 Face 36870 11671 25228 18437 Face 36871 18439 48468 9781 Face 36872 46472 16510 18438 Face 36873 4983 18439 14036 Face 36874 4983 32292 18439 Face 36875 37439 24265 10713 Face 36876 8598 16928 18440 Face 36877 30953 18441 48115 Face 36878 9996 2276 29710 Face 36879 37830 18442 12931 Face 36880 37830 5141 18442 Face 36881 6342 18443 42067 Face 36882 6342 20464 18443 Face 36883 6342 18444 10452 Face 36884 6342 3691 18444 Face 36885 49864 18445 20212 Face 36886 49864 29041 18445 Face 36887 41783 18446 21503 Face 36888 41783 29816 18446 Face 36889 1612 18447 16104 Face 36890 1612 31528 18447 Face 36891 268 41612 18172 Face 36892 47776 33365 18448 Face 36893 39540 18449 45601 Face 36894 268 41766 18449 Face 36895 28306 18450 40041 Face 36896 1724 12324 18450 Face 36897 7011 18451 3489 Face 36898 7011 41737 18451 Face 36899 4931 18452 38863 Face 36900 40761 8763 18452 Face 36901 28527 18453 23120 Face 36902 28527 25827 18453 Face 36903 5793 18454 4871 Face 36904 5793 44448 18454 Face 36905 10061 18455 18076 Face 36906 25456 23948 18455 Face 36907 27608 18456 16878 Face 36908 27608 7521 18456 Face 36909 4324 18457 14309 Face 36910 4324 35750 18457 Face 36911 15397 18458 7338 Face 36912 15397 25024 18458 Face 36913 29184 18459 18336 Face 36914 2466 10432 18459 Face 36915 27793 42955 9333 Face 36916 35055 28372 18460 Face 36917 16125 18461 25919 Face 36918 16125 18462 18461 Face 36919 5620 18462 25375 Face 36920 29803 18461 18462 Face 36921 10128 18463 17095 Face 36922 10128 4726 18463 Face 36923 7135 18464 33292 Face 36924 7135 24762 18464 Face 36925 46257 33049 5251 Face 36926 8693 14684 18465 Face 36927 25382 18466 16439 Face 36928 25382 20851 18466 Face 36929 14654 18467 46782 Face 36930 14654 18933 18467 Face 36931 18747 35250 260 Face 36932 46785 1574 18468 Face 36933 18470 22468 7221 Face 36934 18471 7367 18469 Face 36935 8396 18470 40846 Face 36936 40223 7367 18471 Face 36937 18470 18471 22468 Face 36938 18470 40223 18471 Face 36939 36709 18472 8521 Face 36940 8520 43588 18472 Face 36941 7129 18473 13550 Face 36942 7129 15784 18473 Face 36943 1307 34739 6363 Face 36944 1307 17718 18474 Face 36945 9954 18475 33828 Face 36946 18476 2571 18475 Face 36947 27906 18476 18475 Face 36948 27906 30601 18476 Face 36949 97 18477 44864 Face 36950 97 42406 18477 Face 36951 10563 18479 3548 Face 36952 10563 49058 18478 Face 36953 18478 18479 10563 Face 36954 18478 21317 18479 Face 36955 16428 18480 23664 Face 36956 16428 12365 18480 Face 36957 4608 18481 48708 Face 36958 4608 12188 18481 Face 36959 36296 18482 11704 Face 36960 32851 6176 18482 Face 36961 12564 18483 19313 Face 36962 32851 18482 36296 Face 36963 49689 42559 2437 Face 36964 3358 373 18484 Face 36965 409 18485 16784 Face 36966 25432 8116 46300 Face 36967 3949 48634 40528 Face 36968 3949 49722 18486 Face 36969 8644 18487 47982 Face 36970 8644 44880 18487 Face 36971 882 18488 538 Face 36972 882 12182 18488 Face 36973 3178 18489 15315 Face 36974 3178 23501 18489 Face 36975 8057 18490 33719 Face 36976 8057 44985 18490 Face 36977 7077 18491 24260 Face 36978 7077 38413 44352 Face 36979 25710 29697 12504 Face 36980 661 32605 18492 Face 36981 1388 18493 14425 Face 36982 1388 13047 18493 Face 36983 32646 18494 12359 Face 36984 27178 8841 18494 Face 36985 42536 47194 31076 Face 36986 46605 7298 35501 Face 36987 2727 18496 44694 Face 36988 2727 39765 42307 Face 36989 28718 18497 7725 Face 36990 6256 34069 18497 Face 36991 4986 18498 12466 Face 36992 4986 21120 18498 Face 36993 44994 18499 41947 Face 36994 44994 36857 18499 Face 36995 10686 18500 48287 Face 36996 10686 5665 18500 Face 36997 48223 18501 27135 Face 36998 48223 3249 18501 Face 36999 1561 33299 38158 Face 37000 1561 27135 18502 Face 37001 45046 18503 10548 Face 37002 28960 18297 18503 Face 37003 7270 18504 12720 Face 37004 7270 47396 18504 Face 37005 18506 18505 26344 Face 37006 2643 13584 18505 Face 37007 23976 34078 30694 Face 37008 2643 18505 18506 Face 37009 48619 26106 32089 Face 37010 1817 16694 18507 Face 37011 24076 48661 14606 Face 37012 6688 27527 45226 Face 37013 5246 18509 44921 Face 37014 5246 7545 18509 Face 37015 22775 36101 44715 Face 37016 562 12315 18510 Face 37017 38422 18511 36752 Face 37018 38422 18512 18511 Face 37019 11234 18512 23369 Face 37020 36389 48206 18512 Face 37021 7256 18513 38987 Face 37022 7256 932 23712 Face 37023 7157 18514 37464 Face 37024 7157 19877 18514 Face 37025 30377 18515 15353 Face 37026 38327 27522 46877 Face 37027 4253 18516 34856 Face 37028 4253 24067 18516 Face 37029 3304 18517 37189 Face 37030 3304 25360 18517 Face 37031 15561 18518 27660 Face 37032 15561 20169 18518 Face 37033 7637 18519 7407 Face 37034 47232 23704 18519 Face 37035 33623 18520 11260 Face 37036 13567 1602 46635 Face 37037 13567 18521 1602 Face 37038 33623 11495 18521 Face 37039 48647 18522 7936 Face 37040 48647 24935 18522 Face 37041 18524 18523 6196 Face 37042 9521 14861 32096 Face 37043 9521 32496 18026 Face 37044 9521 18523 32496 Face 37045 3924 47685 48017 Face 37046 3924 36987 18525 Face 37047 36663 18526 44839 Face 37048 9234 29505 18526 Face 37049 39832 21795 8093 Face 37050 143 28968 18527 Face 37051 143 18528 15733 Face 37052 143 18527 18528 Face 37053 20703 18529 23106 Face 37054 35076 4949 45662 Face 37055 42218 18531 29465 Face 37056 28969 42528 18530 Face 37057 18530 18531 8094 Face 37058 18532 29465 18531 Face 37059 18530 18532 18531 Face 37060 18530 42528 18532 Face 37061 2585 18533 37194 Face 37062 2585 21690 18533 Face 37063 3536 41870 34652 Face 37064 42195 10638 18534 Face 37065 44062 18535 40986 Face 37066 44062 4522 18535 Face 37067 335 18536 40281 Face 37068 46455 10653 18536 Face 37069 45986 47925 14943 Face 37070 4716 20707 31368 Face 37071 31367 18538 17432 Face 37072 31367 31368 18538 Face 37073 10819 18539 332 Face 37074 10819 47061 18539 Face 37075 4417 18540 18181 Face 37076 4417 42377 34956 Face 37077 7394 18541 12129 Face 37078 7394 14924 18541 Face 37079 46935 18542 36952 Face 37080 46935 11743 18542 Face 37081 8913 18543 3615 Face 37082 8913 47057 18543 Face 37083 10847 18544 32399 Face 37084 10847 15043 32799 Face 37085 39684 18545 38193 Face 37086 2404 2480 18545 Face 37087 3383 18546 18921 Face 37088 3383 38925 18546 Face 37089 100 18547 49893 Face 37090 100 5549 18547 Face 37091 18549 45246 27558 Face 37092 28427 26259 18548 Face 37093 8349 34514 6736 Face 37094 28427 18548 46059 Face 37095 6331 18550 36399 Face 37096 6331 17685 18550 Face 37097 2265 18551 45343 Face 37098 2265 32671 18551 Face 37099 48331 18552 6215 Face 37100 22296 37647 18552 Face 37101 18554 27461 7836 Face 37102 1692 20966 27461 Face 37103 1692 18554 33355 Face 37104 1692 27461 18554 Face 37105 23533 18555 10812 Face 37106 2839 29414 41858 Face 37107 24281 18556 45427 Face 37108 47949 3794 18556 Face 37109 12862 18557 47684 Face 37110 47313 23993 18557 Face 37111 117 18558 33467 Face 37112 117 10350 18558 Face 37113 11164 35299 22136 Face 37114 11164 7491 41112 Face 37115 6957 18560 34665 Face 37116 18850 12174 18560 Face 37117 2571 18561 12223 Face 37118 2571 18476 18561 Face 37119 43197 18562 32483 Face 37120 43197 28021 18562 Face 37121 41553 18563 1033 Face 37122 40805 23221 43311 Face 37123 12173 43986 26436 Face 37124 31318 4231 43986 Face 37125 48008 18565 16634 Face 37126 20777 12454 18565 Face 37127 45126 18566 4934 Face 37128 26414 2972 18566 Face 37129 34594 45126 4934 Face 37130 614 18565 48008 Face 37131 39072 18568 1343 Face 37132 39071 15118 18568 Face 37133 5994 18569 24142 Face 37134 32479 37137 18569 Face 37135 5395 18570 36492 Face 37136 5395 6585 18570 Face 37137 10578 36342 21797 Face 37138 10578 23434 36342 Face 37139 10578 37684 15992 Face 37140 10578 21797 18572 Face 37141 36649 18573 3993 Face 37142 36649 6630 18573 Face 37143 41060 18574 12459 Face 37144 8696 41006 49752 Face 37145 18576 18575 26497 Face 37146 1542 39426 18575 Face 37147 29205 18576 28790 Face 37148 1542 18575 18576 Face 37149 7680 18577 3728 Face 37150 7680 45062 18577 Face 37151 30453 18578 28119 Face 37152 5073 48576 18578 Face 37153 3400 39374 22289 Face 37154 3400 12396 39374 Face 37155 7034 29183 11714 Face 37156 7034 19617 29183 Face 37157 5230 18581 38192 Face 37158 5230 18009 18581 Face 37159 7594 18582 29431 Face 37160 29192 40888 18582 Face 37161 10886 18583 23333 Face 37162 48050 32342 18583 Face 37163 962 18584 44061 Face 37164 19233 4322 18584 Face 37165 2505 49760 44614 Face 37166 23776 26402 49760 Face 37167 46279 18586 39960 Face 37168 12478 46044 18586 Face 37169 9741 18587 49551 Face 37170 32075 17713 18587 Face 37171 41733 18588 5022 Face 37172 8264 34378 18588 Face 37173 7232 31648 14011 Face 37174 7232 29159 31648 Face 37175 9714 18590 35190 Face 37176 9714 41356 18590 Face 37177 27084 18591 40034 Face 37178 7691 12498 18591 Face 37179 22818 18592 17794 Face 37180 5368 25503 18592 Face 37181 37747 18593 40118 Face 37182 1210 38291 18593 Face 37183 1210 18594 14200 Face 37184 1210 18593 37747 Face 37185 11601 18595 45413 Face 37186 26554 635 18595 Face 37187 897 18596 15411 Face 37188 43928 15117 18596 Face 37189 40870 18597 43789 Face 37190 37992 11191 18597 Face 37191 4687 18598 28459 Face 37192 4687 11711 18598 Face 37193 18600 18599 26124 Face 37194 3851 23019 18599 Face 37195 24018 18600 13725 Face 37196 3851 18599 46419 Face 37197 34620 18601 704 Face 37198 3936 1878 18601 Face 37199 1015 46461 33893 Face 37200 1015 31077 46461 Face 37201 1765 41960 42769 Face 37202 18604 9749 18603 Face 37203 1765 18604 41960 Face 37204 1765 12003 45293 Face 37205 47235 18605 41780 Face 37206 47235 19394 18605 Face 37207 8783 18606 17899 Face 37208 8783 20793 18606 Face 37209 48646 42708 34427 Face 37210 4290 49168 18607 Face 37211 32261 18608 14825 Face 37212 32262 8345 18608 Face 37213 9154 18609 32760 Face 37214 9154 24187 18609 Face 37215 9880 18610 40508 Face 37216 9880 29309 18610 Face 37217 2191 18611 12732 Face 37218 2191 9491 18611 Face 37219 11881 18612 21859 Face 37220 32228 3935 18612 Face 37221 42224 18613 10464 Face 37222 3831 36681 49634 Face 37223 40387 18614 11067 Face 37224 298 25437 18614 Face 37225 1415 18615 14315 Face 37226 18616 48389 18615 Face 37227 47781 18616 18615 Face 37228 47781 26558 18616 Face 37229 7097 34776 352 Face 37230 7097 29303 34776 Face 37231 7097 18618 29303 Face 37232 7097 45533 18618 Face 37233 6284 18619 26384 Face 37234 23374 32196 18619 Face 37235 2337 46889 48744 Face 37236 2337 6679 18620 Face 37237 4808 18621 31604 Face 37238 42038 25256 18621 Face 37239 1375 18622 4826 Face 37240 46440 8443 18622 Face 37241 4420 18623 34672 Face 37242 28632 7384 41230 Face 37243 5419 36199 18 Face 37244 5419 38460 18624 Face 37245 28642 47178 12032 Face 37246 37994 7219 18625 Face 37247 8300 18626 30289 Face 37248 8300 1200 18626 Face 37249 2332 34735 48843 Face 37250 2332 12929 34735 Face 37251 1056 18628 25550 Face 37252 1056 13322 18628 Face 37253 20766 48685 25586 Face 37254 23878 35804 48685 Face 37255 33946 18630 42741 Face 37256 45896 2421 18630 Face 37257 8920 18631 34753 Face 37258 8920 19937 18631 Face 37259 5777 18632 41677 Face 37260 5777 25019 18632 Face 37261 7437 18633 16008 Face 37262 7437 29103 18633 Face 37263 4333 40399 11757 Face 37264 4333 23052 40399 Face 37265 18634 18635 34423 Face 37266 42838 46625 18635 Face 37267 5657 33877 44852 Face 37268 5657 1940 18636 Face 37269 38564 18637 93 Face 37270 25276 15099 18637 Face 37271 38564 18638 18637 Face 37272 27984 30836 36157 Face 37273 1269 18639 27873 Face 37274 1269 29216 18639 Face 37275 4751 18640 37160 Face 37276 30787 12744 18640 Face 37277 1425 18641 45610 Face 37278 1425 24010 18641 Face 37279 5397 18642 33399 Face 37280 5397 35794 18642 Face 37281 39475 18643 6659 Face 37282 19032 29194 18643 Face 37283 28917 18644 24080 Face 37284 6150 37735 18644 Face 37285 7393 49342 19524 Face 37286 7393 49511 49342 Face 37287 3000 18646 42775 Face 37288 3000 14262 18646 Face 37289 11310 18647 27190 Face 37290 11310 37711 18647 Face 37291 9585 18648 7728 Face 37292 9585 13635 18648 Face 37293 38727 46632 16270 Face 37294 3482 24245 18649 Face 37295 5501 18650 46084 Face 37296 19446 32864 18650 Face 37297 7491 18651 41112 Face 37298 7491 34773 18651 Face 37299 14189 18652 28660 Face 37300 14189 45052 18652 Face 37301 2324 18653 12310 Face 37302 2324 27834 18653 Face 37303 44983 29571 29913 Face 37304 24648 33326 18654 Face 37305 10068 18655 38124 Face 37306 10068 21532 43606 Face 37307 10301 18656 13482 Face 37308 10301 25378 18656 Face 37309 763 18657 27305 Face 37310 43241 23362 18657 Face 37311 1980 18658 32000 Face 37312 23724 38397 44311 Face 37313 4489 18659 20979 Face 37314 30116 3538 18659 Face 37315 4383 18660 3860 Face 37316 4383 21873 18660 Face 37317 3140 35725 36030 Face 37318 36046 24087 18661 Face 37319 4042 18662 35066 Face 37320 4042 47969 18662 Face 37321 1075 43341 14899 Face 37322 1075 33672 18663 Face 37323 41234 18664 5226 Face 37324 5225 40608 18664 Face 37325 12008 18665 48337 Face 37326 12008 37646 18665 Face 37327 31309 18666 14157 Face 37328 46755 14059 18666 Face 37329 34040 18667 49034 Face 37330 34040 22667 18667 Face 37331 7735 18668 31079 Face 37332 22688 40566 18668 Face 37333 18668 18669 31079 Face 37334 22272 15126 32539 Face 37335 1513 18670 43723 Face 37336 1513 24737 18670 Face 37337 4994 48998 1215 Face 37338 4994 26835 18671 Face 37339 35357 18672 15274 Face 37340 42343 23099 18672 Face 37341 24012 49629 27166 Face 37342 12704 28757 18673 Face 37343 38576 18674 25952 Face 37344 38576 14777 18674 Face 37345 11648 18675 34547 Face 37346 11648 11513 18675 Face 37347 2958 18676 38926 Face 37348 2958 8501 18676 Face 37349 964 18677 45438 Face 37350 964 46437 18677 Face 37351 21156 18678 42761 Face 37352 26568 17227 42570 Face 37353 44117 25265 4219 Face 37354 24732 13672 18679 Face 37355 29673 34607 25736 Face 37356 8066 17122 18680 Face 37357 19838 18681 639 Face 37358 20104 25657 18681 Face 37359 44723 18682 31276 Face 37360 44723 29781 34932 Face 37361 1563 18683 23347 Face 37362 45644 17730 18683 Face 37363 2632 18684 13557 Face 37364 38400 7541 18684 Face 37365 155 18685 16922 Face 37366 155 17857 18685 Face 37367 6630 18686 18573 Face 37368 6630 14016 18686 Face 37369 9227 18687 28618 Face 37370 9227 34852 18687 Face 37371 9939 18688 875 Face 37372 9939 22520 43124 Face 37373 10470 18689 33876 Face 37374 10470 11893 18689 Face 37375 17481 18690 23990 Face 37376 17481 37543 18690 Face 37377 24934 18691 49934 Face 37378 33170 12371 18691 Face 37379 3306 35519 45933 Face 37380 3306 13915 18692 Face 37381 8598 18693 48009 Face 37382 47009 34816 18693 Face 37383 36179 36692 8909 Face 37384 37100 15376 18694 Face 37385 37975 18695 47972 Face 37386 18114 43559 22932 Face 37387 38807 28746 6210 Face 37388 498 6209 18696 Face 37389 9024 18697 45475 Face 37390 46959 27497 18697 Face 37391 46604 18698 1891 Face 37392 9427 48856 18698 Face 37393 40417 18699 2872 Face 37394 37717 18323 18699 Face 37395 37561 18700 23195 Face 37396 2907 12709 18700 Face 37397 5385 18701 9388 Face 37398 5385 6865 18701 Face 37399 5718 18702 38773 Face 37400 5718 9261 18702 Face 37401 4177 18703 849 Face 37402 4177 1854 18703 Face 37403 4373 18704 38657 Face 37404 48041 9596 18704 Face 37405 3268 18705 5293 Face 37406 3268 34553 34141 Face 37407 34719 29890 32622 Face 37408 34719 27740 18706 Face 37409 39370 35920 6749 Face 37410 1408 26071 18707 Face 37411 18709 44287 45613 Face 37412 10435 34320 18708 Face 37413 10435 18709 15985 Face 37414 10435 18708 44288 Face 37415 23615 26726 12715 Face 37416 29208 46966 18710 Face 37417 6432 18711 3966 Face 37418 6432 4728 18711 Face 37419 556 18712 49310 Face 37420 556 45626 18712 Face 37421 20521 18713 5532 Face 37422 6436 29221 18713 Face 37423 33984 18714 2974 Face 37424 46564 18905 18714 Face 37425 1097 18715 25315 Face 37426 1097 18714 18715 Face 37427 42143 18716 15323 Face 37428 3190 38996 18716 Face 37429 1389 18717 18348 Face 37430 1389 28647 44914 Face 37431 32074 18718 14235 Face 37432 49917 15361 18718 Face 37433 3556 18719 15228 Face 37434 3556 32729 35160 Face 37435 94 18720 24936 Face 37436 94 17312 18720 Face 37437 24340 48727 17707 Face 37438 34570 12328 18721 Face 37439 22271 18722 11584 Face 37440 22271 23911 18722 Face 37441 44313 18723 10179 Face 37442 11583 41727 18723 Face 37443 9228 18724 16336 Face 37444 9228 37962 18724 Face 37445 5411 44403 33458 Face 37446 5411 40100 44403 Face 37447 32828 18726 3945 Face 37448 469 14300 49163 Face 37449 37145 23728 29217 Face 37450 23303 26894 18727 Face 37451 1217 18728 20259 Face 37452 1217 17495 24475 Face 37453 5368 45470 10016 Face 37454 22818 2278 18729 Face 37455 29688 18730 36203 Face 37456 14716 8288 18730 Face 37457 3504 18731 26493 Face 37458 3504 14661 18731 Face 37459 8981 18732 5388 Face 37460 8981 32206 18732 Face 37461 13066 39474 2051 Face 37462 13066 48585 18733 Face 37463 6171 18734 34843 Face 37464 6171 9115 18734 Face 37465 1193 18735 21046 Face 37466 1193 30022 18735 Face 37467 5962 18736 46503 Face 37468 24045 17027 37113 Face 37469 35318 18737 44307 Face 37470 35319 17946 18737 Face 37471 6446 18738 2327 Face 37472 38614 36958 18738 Face 37473 48065 18739 10825 Face 37474 48065 17538 18739 Face 37475 9119 18740 5435 Face 37476 9119 18589 29159 Face 37477 20686 18741 23432 Face 37478 21353 39367 18741 Face 37479 40420 18742 12899 Face 37480 44165 9298 18742 Face 37481 5064 18743 15335 Face 37482 5064 24480 18743 Face 37483 49501 18744 48102 Face 37484 7166 41660 18744 Face 37485 12407 18745 38377 Face 37486 18978 16329 18745 Face 37487 39045 18746 15459 Face 37488 5582 35250 18747 Face 37489 18746 18747 260 Face 37490 18746 39045 18747 Face 37491 38342 24218 3978 Face 37492 502 14778 18748 Face 37493 908 40487 15720 Face 37494 908 21531 40487 Face 37495 10648 18750 11744 Face 37496 10648 31587 18750 Face 37497 4529 36300 24705 Face 37498 4529 32972 18751 Face 37499 13803 18752 41633 Face 37500 13803 432 18752 Face 37501 25205 18753 20740 Face 37502 25205 42233 47250 Face 37503 33963 18754 43773 Face 37504 33963 40142 18754 Face 37505 10202 18755 30850 Face 37506 10202 10203 18755 Face 37507 1098 20362 14299 Face 37508 1098 21847 18756 Face 37509 81 18757 18133 Face 37510 81 29472 34492 Face 37511 38249 18758 48590 Face 37512 41766 268 18758 Face 37513 7268 18759 10440 Face 37514 7268 26707 18759 Face 37515 442 18760 33690 Face 37516 442 33559 27242 Face 37517 38365 18761 34910 Face 37518 7617 9533 29713 Face 37519 4457 18762 42918 Face 37520 4457 15356 18762 Face 37521 29222 18763 13442 Face 37522 982 27649 18763 Face 37523 18765 18764 28235 Face 37524 44200 10956 47939 Face 37525 18766 18765 46188 Face 37526 5002 47939 18765 Face 37527 5002 18766 32749 Face 37528 5002 18765 18766 Face 37529 33150 18767 13283 Face 37530 38391 44060 18767 Face 37531 3847 18768 24044 Face 37532 3847 27106 18768 Face 37533 13754 18769 36398 Face 37534 13754 36633 18769 Face 37535 5079 18770 37521 Face 37536 5079 8770 34821 Face 37537 39314 18771 28907 Face 37538 252 24534 18771 Face 37539 252 18772 37616 Face 37540 252 7378 18772 Face 37541 26577 18773 3368 Face 37542 22060 41970 18773 Face 37543 5785 18774 44361 Face 37544 5785 42480 18774 Face 37545 16229 18775 22999 Face 37546 32329 5460 18775 Face 37547 34086 18776 15963 Face 37548 34086 34989 18776 Face 37549 6776 18777 244 Face 37550 19149 2733 26028 Face 37551 3445 18778 15990 Face 37552 3445 24727 18778 Face 37553 5694 18779 28220 Face 37554 5694 11696 18779 Face 37555 19841 47495 6603 Face 37556 30007 34360 30426 Face 37557 170 18781 16090 Face 37558 25768 20329 43162 Face 37559 6584 18782 21557 Face 37560 38689 17172 18782 Face 37561 18784 35709 3195 Face 37562 2091 47438 18783 Face 37563 2091 18784 30456 Face 37564 2091 35709 18784 Face 37565 8688 18785 25760 Face 37566 8688 25080 18785 Face 37567 3573 18786 43416 Face 37568 3573 48993 18787 Face 37569 18786 18787 25304 Face 37570 18786 3573 18787 Face 37571 47208 18788 32065 Face 37572 41624 6030 18788 Face 37573 45275 18789 5390 Face 37574 33207 19284 18789 Face 37575 25123 18790 30813 Face 37576 35139 29959 49875 Face 37577 47839 18791 8402 Face 37578 48753 14053 48185 Face 37579 37030 18792 8646 Face 37580 6930 46001 18792 Face 37581 7382 18793 45080 Face 37582 7382 12904 18793 Face 37583 8204 48179 22052 Face 37584 8204 17103 48179 Face 37585 4366 18795 34888 Face 37586 4366 29959 18795 Face 37587 5292 18796 35831 Face 37588 5292 40331 18796 Face 37589 6480 18797 17735 Face 37590 44629 8915 46204 Face 37591 873 18798 8504 Face 37592 873 12838 18798 Face 37593 6025 18799 23202 Face 37594 6025 47497 36320 Face 37595 1283 42119 15303 Face 37596 1283 39748 18800 Face 37597 5171 18801 9868 Face 37598 5171 45819 18801 Face 37599 37873 18802 24205 Face 37600 37874 4427 18802 Face 37601 10564 18803 43577 Face 37602 50001 2081 18803 Face 37603 4907 18804 21260 Face 37604 4907 39341 18804 Face 37605 4031 18805 13600 Face 37606 4031 31577 18805 Face 37607 10843 18806 31020 Face 37608 10843 6753 18806 Face 37609 5716 39802 49459 Face 37610 37783 47894 18807 Face 37611 4675 18808 34372 Face 37612 4675 41928 18808 Face 37613 1438 18809 39219 Face 37614 36512 26351 18809 Face 37615 7617 18810 9533 Face 37616 7617 49966 18810 Face 37617 31278 18811 49359 Face 37618 31277 17349 18811 Face 37619 47433 18812 15992 Face 37620 1715 29045 45700 Face 37621 3302 18813 31473 Face 37622 3302 40052 18813 Face 37623 2056 42908 19619 Face 37624 2056 8253 18814 Face 37625 46346 18815 37441 Face 37626 7107 23748 48972 Face 37627 22118 18816 11878 Face 37628 1739 49854 47962 Face 37629 12615 18817 46825 Face 37630 49918 9979 18817 Face 37631 25768 18818 11001 Face 37632 38875 14615 18818 Face 37633 7054 18819 40920 Face 37634 7054 26697 18819 Face 37635 38674 18820 36652 Face 37636 38674 28855 18820 Face 37637 14197 18821 19808 Face 37638 14197 6580 18821 Face 37639 47667 18822 21214 Face 37640 2859 13493 18822 Face 37641 7819 18823 43872 Face 37642 7819 84 18823 Face 37643 6361 18824 15252 Face 37644 6361 3888 18824 Face 37645 2834 37685 6795 Face 37646 2834 38303 49522 Face 37647 30193 18826 36439 Face 37648 8344 33264 18826 Face 37649 3254 18827 27844 Face 37650 21478 38618 18827 Face 37651 30393 46021 11751 Face 37652 3159 32632 46020 Face 37653 8285 43496 38811 Face 37654 8285 46834 18829 Face 37655 2260 18830 10315 Face 37656 2260 8721 18830 Face 37657 6059 18831 26370 Face 37658 6059 40663 18831 Face 37659 1288 18832 27887 Face 37660 1288 45897 18832 Face 37661 21862 18833 47969 Face 37662 21862 13383 18833 Face 37663 9956 18834 21027 Face 37664 9956 22126 18834 Face 37665 12051 18835 27473 Face 37666 28849 19543 43211 Face 37667 124 18836 49763 Face 37668 124 27764 18836 Face 37669 27292 32922 30635 Face 37670 38221 3325 44452 Face 37671 18839 18838 32922 Face 37672 6406 11071 18838 Face 37673 27292 18839 32922 Face 37674 6406 18838 18839 Face 37675 5203 18840 32708 Face 37676 5203 24504 18840 Face 37677 40522 44654 15850 Face 37678 3170 14031 18841 Face 37679 3098 18842 25719 Face 37680 3098 26586 18842 Face 37681 26400 18843 5642 Face 37682 9804 2601 18843 Face 37683 1044 41357 24221 Face 37684 1044 22449 41357 Face 37685 5645 18845 274 Face 37686 46537 44345 39005 Face 37687 48256 18846 49219 Face 37688 7148 49429 18846 Face 37689 4646 18847 29396 Face 37690 18848 15753 18847 Face 37691 18849 18848 18847 Face 37692 18849 32423 18848 Face 37693 4646 18849 18847 Face 37694 4646 12864 34884 Face 37695 6957 18850 18560 Face 37696 21265 12174 18850 Face 37697 153 18851 22458 Face 37698 153 30989 18851 Face 37699 628 21673 11089 Face 37700 28600 15600 36843 Face 37701 18854 18853 32170 Face 37702 1370 12737 18853 Face 37703 1370 18854 5319 Face 37704 1370 18853 18854 Face 37705 2045 18855 31134 Face 37706 39245 15925 18855 Face 37707 48146 18856 6599 Face 37708 2917 10784 18856 Face 37709 18858 44844 33634 Face 37710 2293 43374 44844 Face 37711 2293 34041 14447 Face 37712 2293 44844 18858 Face 37713 30905 18859 41649 Face 37714 4636 34862 45865 Face 37715 44793 18860 18191 Face 37716 19162 9414 49114 Face 37717 21143 18861 10590 Face 37718 36458 10210 30618 Face 37719 39976 18862 28131 Face 37720 39976 2573 18862 Face 37721 8979 18863 14043 Face 37722 32354 12978 48912 Face 37723 37937 41432 16742 Face 37724 3754 17281 18864 Face 37725 12526 18865 2084 Face 37726 34407 13719 18865 Face 37727 11961 18866 45300 Face 37728 19290 7010 18866 Face 37729 16063 18867 16562 Face 37730 16063 13136 18867 Face 37731 43153 18868 8434 Face 37732 43152 6919 43580 Face 37733 4225 18869 11049 Face 37734 4225 34601 18869 Face 37735 21513 41381 49962 Face 37736 3583 35321 18870 Face 37737 11296 18871 19691 Face 37738 11296 36642 18871 Face 37739 9954 27906 18475 Face 37740 9954 22587 18872 Face 37741 20609 18873 33938 Face 37742 49065 22028 18873 Face 37743 3889 18874 12077 Face 37744 3889 43512 18874 Face 37745 28276 18875 23955 Face 37746 4035 45196 18875 Face 37747 24733 28248 39311 Face 37748 7986 25265 44117 Face 37749 42051 18877 16847 Face 37750 38753 5303 18877 Face 37751 1818 35545 45295 Face 37752 1818 27563 35546 Face 37753 13454 43919 913 Face 37754 13454 725 18879 Face 37755 7625 18880 49976 Face 37756 7625 31645 18880 Face 37757 2592 36117 26800 Face 37758 2592 13479 30083 Face 37759 6513 18882 44155 Face 37760 6513 11439 18882 Face 37761 36038 29920 1322 Face 37762 48456 37379 18883 Face 37763 23022 18884 6328 Face 37764 48456 29920 36038 Face 37765 1443 18885 31694 Face 37766 29128 27338 42018 Face 37767 1708 18886 10800 Face 37768 1708 35891 18886 Face 37769 4050 18887 39830 Face 37770 4050 44205 18887 Face 37771 3417 22409 45168 Face 37772 41096 19413 25852 Face 37773 7878 18889 23577 Face 37774 7878 37031 18889 Face 37775 23834 18890 14320 Face 37776 1122 41414 18890 Face 37777 39974 18891 26862 Face 37778 28094 12014 33120 Face 37779 1432 18892 43084 Face 37780 1432 18055 18892 Face 37781 1793 18893 32955 Face 37782 1793 33332 27468 Face 37783 7530 18894 30886 Face 37784 46336 15642 18894 Face 37785 4535 18895 8114 Face 37786 4535 23089 18895 Face 37787 1285 18896 31990 Face 37788 1285 49348 18896 Face 37789 8993 18897 20762 Face 37790 8993 9693 18897 Face 37791 46620 18898 6984 Face 37792 33474 38210 18898 Face 37793 266 18899 13212 Face 37794 266 3004 18899 Face 37795 8923 18900 5134 Face 37796 8923 14964 18900 Face 37797 4837 18901 7573 Face 37798 4837 13071 18901 Face 37799 16477 41019 4746 Face 37800 48597 4502 18902 Face 37801 18904 18903 15332 Face 37802 3567 13847 46576 Face 37803 3567 18904 41351 Face 37804 3567 46576 18904 Face 37805 6658 18905 46564 Face 37806 18906 2517 18905 Face 37807 35915 18906 18905 Face 37808 35915 11166 18906 Face 37809 24186 18907 37878 Face 37810 47876 16619 18907 Face 37811 47531 18908 21026 Face 37812 8927 38498 18908 Face 37813 11610 18909 4172 Face 37814 11610 26834 18909 Face 37815 21881 18910 29837 Face 37816 182 49094 18910 Face 37817 49715 18911 3257 Face 37818 8574 16877 18911 Face 37819 23009 44660 1605 Face 37820 29056 34687 18912 Face 37821 8773 18913 27131 Face 37822 8773 33970 18913 Face 37823 15625 18914 16794 Face 37824 15625 16526 18914 Face 37825 7392 47480 31228 Face 37826 7392 13361 18915 Face 37827 5951 18916 34039 Face 37828 5951 20161 18916 Face 37829 6295 25070 9750 Face 37830 6295 48839 18917 Face 37831 4880 18918 21270 Face 37832 4880 26569 18918 Face 37833 25623 18919 14343 Face 37834 250 5335 40020 Face 37835 6559 18920 11888 Face 37836 6559 42232 18920 Face 37837 7118 18921 18546 Face 37838 36443 27559 37154 Face 37839 2465 18922 23289 Face 37840 28236 41744 18922 Face 37841 831 18923 26217 Face 37842 831 47807 18923 Face 37843 41711 18924 5854 Face 37844 14126 7447 18924 Face 37845 10674 18925 2285 Face 37846 22049 43907 18925 Face 37847 44072 18926 44805 Face 37848 44072 37422 18926 Face 37849 9373 18927 29874 Face 37850 9373 2112 18927 Face 37851 1209 18928 5872 Face 37852 1209 32314 18928 Face 37853 12100 18929 30575 Face 37854 12100 29879 18929 Face 37855 3439 18930 10969 Face 37856 40960 703 18930 Face 37857 8084 42648 31780 Face 37858 26527 5647 18931 Face 37859 2140 18932 27454 Face 37860 36238 26179 18932 Face 37861 29647 18933 24221 Face 37862 20074 18467 37446 Face 37863 10148 18934 36281 Face 37864 10148 10147 18934 Face 37865 28867 18935 35332 Face 37866 1512 18229 18935 Face 37867 33706 49753 26646 Face 37868 41523 9720 46870 Face 37869 5640 18937 11060 Face 37870 5640 31220 18937 Face 37871 22170 18938 15249 Face 37872 29993 7607 18938 Face 37873 34581 18939 31358 Face 37874 34581 16172 18939 Face 37875 46698 18940 37330 Face 37876 4285 9161 49908 Face 37877 8119 46700 31669 Face 37878 8119 12739 18941 Face 37879 14721 18942 24030 Face 37880 14721 29174 18942 Face 37881 4407 18943 18068 Face 37882 28152 13510 40549 Face 37883 33392 18944 30060 Face 37884 22762 33375 18944 Face 37885 1728 18945 33568 Face 37886 1728 18944 33392 Face 37887 23304 18946 32150 Face 37888 12217 27056 18946 Face 37889 10296 18947 15419 Face 37890 36073 29255 41286 Face 37891 1911 18948 42253 Face 37892 1911 6551 36158 Face 37893 7592 48983 23175 Face 37894 7592 33859 18949 Face 37895 1413 18950 29582 Face 37896 49682 33394 18950 Face 37897 18952 35479 2290 Face 37898 14755 2639 18951 Face 37899 14755 18952 44213 Face 37900 14755 18951 18952 Face 37901 1872 48235 24313 Face 37902 1872 28858 43226 Face 37903 1035 18954 16832 Face 37904 1035 8705 18954 Face 37905 2237 18955 34090 Face 37906 2237 48544 18955 Face 37907 4349 18956 24675 Face 37908 23727 2184 39350 Face 37909 7042 18957 13732 Face 37910 7042 22553 18957 Face 37911 2556 18958 15986 Face 37912 2556 21361 18958 Face 37913 6386 18959 19138 Face 37914 6386 46815 18959 Face 37915 32957 18960 42607 Face 37916 32957 46220 18960 Face 37917 32673 18961 25131 Face 37918 32673 26102 18961 Face 37919 9870 18962 13562 Face 37920 9870 42250 18962 Face 37921 2531 18963 21459 Face 37922 2531 31138 18963 Face 37923 11761 18964 7317 Face 37924 11761 32343 18964 Face 37925 7264 18965 35444 Face 37926 7264 41565 18965 Face 37927 3169 18966 22233 Face 37928 3169 26989 18966 Face 37929 32032 41910 13738 Face 37930 2025 8139 18967 Face 37931 39811 34710 8961 Face 37932 570 15852 18968 Face 37933 809 18969 13239 Face 37934 809 22070 18969 Face 37935 49921 40351 9968 Face 37936 7768 33235 18970 Face 37937 3878 18971 12638 Face 37938 29837 46557 18971 Face 37939 2180 18972 25808 Face 37940 2180 7345 18972 Face 37941 30413 18973 48847 Face 37942 42694 29375 18973 Face 37943 7186 18974 18973 Face 37944 30414 37320 18974 Face 37945 2201 18975 7560 Face 37946 2201 30322 18975 Face 37947 5763 18976 11470 Face 37948 45569 30898 18976 Face 37949 38424 18977 45784 Face 37950 6274 9128 18977 Face 37951 12407 18978 18745 Face 37952 24350 10371 18978 Face 37953 7127 18979 29794 Face 37954 30844 33153 18979 Face 37955 8375 18980 8376 Face 37956 8375 20747 18980 Face 37957 1631 18981 12363 Face 37958 25687 41909 18981 Face 37959 2153 18982 40375 Face 37960 2153 13832 18982 Face 37961 26822 49747 8431 Face 37962 28994 32714 18983 Face 37963 18983 36100 8043 Face 37964 18983 49012 36100 Face 37965 8044 49012 18983 Face 37966 39229 18984 18985 Face 37967 38862 18986 20876 Face 37968 18987 15057 18986 Face 37969 33501 18987 16249 Face 37970 8672 15057 18987 Face 37971 23514 18988 818 Face 37972 47121 23360 18988 Face 37973 3541 18989 16548 Face 37974 18990 16468 18989 Face 37975 3541 18990 18989 Face 37976 3541 1459 18990 Face 37977 15406 18991 7071 Face 37978 15406 23281 18991 Face 37979 29493 39203 14546 Face 37980 1257 1811 45015 Face 37981 45060 18993 10647 Face 37982 13185 45786 18993 Face 37983 4479 18994 8092 Face 37984 4479 28715 18994 Face 37985 3194 18995 45794 Face 37986 3194 28825 18995 Face 37987 3263 18996 45884 Face 37988 3263 30138 18996 Face 37989 27117 18997 20519 Face 37990 27117 8042 44137 Face 37991 3369 18998 32726 Face 37992 3369 45746 18998 Face 37993 19000 18999 19125 Face 37994 20521 5532 18999 Face 37995 6436 19000 28535 Face 37996 6436 18713 19000 Face 37997 11687 19001 28243 Face 37998 11687 39451 28189 Face 37999 26916 19002 47896 Face 38000 43575 3570 19002 Face 38001 809 48278 10788 Face 38002 809 13239 19003 Face 38003 22150 19004 35086 Face 38004 6631 15922 19004 Face 38005 39795 19005 37689 Face 38006 10408 32971 19005 Face 38007 19007 19006 1804 Face 38008 3290 43147 19006 Face 38009 3290 19007 7951 Face 38010 3290 19006 19007 Face 38011 19009 19008 39621 Face 38012 19009 39671 19008 Face 38013 20955 19009 35962 Face 38014 2286 12591 19009 Face 38015 1941 19010 38357 Face 38016 1941 18108 19010 Face 38017 10701 19011 29099 Face 38018 10701 22433 19011 Face 38019 2989 19012 49383 Face 38020 25225 44849 38087 Face 38021 754 19013 13641 Face 38022 36162 12008 19013 Face 38023 37205 19014 29275 Face 38024 29899 16716 19014 Face 38025 43598 19015 19588 Face 38026 5852 42983 19015 Face 38027 30533 23961 21186 Face 38028 6665 46873 19016 Face 38029 7161 19017 2106 Face 38030 7161 27323 19017 Face 38031 10160 19018 26980 Face 38032 10160 973 19018 Face 38033 19020 19019 8338 Face 38034 19020 28639 19019 Face 38035 3831 19020 28278 Face 38036 3831 28639 19020 Face 38037 1684 19021 17707 Face 38038 25528 5913 19021 Face 38039 308 33328 16739 Face 38040 42998 6020 29751 Face 38041 37999 19023 18422 Face 38042 37999 998 27901 Face 38043 2917 19024 47483 Face 38044 48146 6599 33536 Face 38045 733 19025 31136 Face 38046 733 46104 37813 Face 38047 4056 19026 43302 Face 38048 34225 12908 19026 Face 38049 1993 47207 11191 Face 38050 1993 23370 19027 Face 38051 20465 19028 41899 Face 38052 6273 8846 19028 Face 38053 7290 35585 12998 Face 38054 7290 16855 35584 Face 38055 47025 19030 4837 Face 38056 27029 13849 31929 Face 38057 2376 35263 47186 Face 38058 2376 38502 19031 Face 38059 39475 19032 18643 Face 38060 29095 29194 48901 Face 38061 8506 19033 4168 Face 38062 8506 34593 27877 Face 38063 24330 34711 5584 Face 38064 36829 14499 19034 Face 38065 11307 36829 34711 Face 38066 11307 29491 35061 Face 38067 13724 19036 14875 Face 38068 13724 264 19036 Face 38069 23717 19037 9400 Face 38070 19587 23796 19037 Face 38071 29988 19038 46728 Face 38072 7 23587 19038 Face 38073 37659 19039 17051 Face 38074 19269 38243 19039 Face 38075 7132 19040 34314 Face 38076 7132 26512 19040 Face 38077 2401 19041 28343 Face 38078 2401 41219 19041 Face 38079 2031 19042 20103 Face 38080 2031 45271 19042 Face 38081 2300 49704 28367 Face 38082 2300 46994 19043 Face 38083 13458 19044 18029 Face 38084 26749 12700 49914 Face 38085 9725 19045 22697 Face 38086 9725 7007 19045 Face 38087 5870 19046 16851 Face 38088 5870 44456 19046 Face 38089 19048 19047 23130 Face 38090 35865 8583 19047 Face 38091 43508 19048 3640 Face 38092 43508 19047 19048 Face 38093 44456 37461 19046 Face 38094 12122 15024 19049 Face 38095 112 19050 44404 Face 38096 112 9290 19050 Face 38097 12120 19051 4810 Face 38098 12120 25049 19051 Face 38099 7919 19052 27387 Face 38100 7919 38011 19052 Face 38101 29980 19053 13042 Face 38102 29980 16390 19053 Face 38103 29980 19054 38537 Face 38104 46531 22103 19054 Face 38105 42236 19055 21093 Face 38106 10042 28433 19055 Face 38107 36021 19056 20136 Face 38108 37155 3183 19056 Face 38109 7075 19057 10100 Face 38110 7075 1073 19057 Face 38111 22319 19058 33773 Face 38112 5728 40295 19058 Face 38113 19060 19059 3693 Face 38114 21501 47199 30745 Face 38115 4240 19060 6100 Face 38116 21501 30745 19060 Face 38117 2898 19061 27515 Face 38118 2898 39627 19061 Face 38119 21755 19062 25917 Face 38120 21820 48195 19062 Face 38121 37285 19063 8116 Face 38122 26644 30924 19063 Face 38123 3204 19064 42103 Face 38124 3204 21943 19064 Face 38125 37612 19065 25542 Face 38126 7979 33842 19065 Face 38127 19067 19066 41810 Face 38128 25122 16686 19066 Face 38129 11168 19067 42349 Face 38130 11168 19066 19067 Face 38131 3626 19068 25867 Face 38132 33263 629 19068 Face 38133 33083 19069 14345 Face 38134 2107 38508 19069 Face 38135 37416 19070 11585 Face 38136 46864 25984 19070 Face 38137 31683 34479 6040 Face 38138 6037 31332 19071 Face 38139 6623 19072 37433 Face 38140 6623 9397 19072 Face 38141 19074 19073 16024 Face 38142 45102 26209 19073 Face 38143 450 19074 16024 Face 38144 450 35140 19074 Face 38145 5220 46828 19531 Face 38146 46808 30366 21595 Face 38147 10527 19076 3612 Face 38148 10527 17127 46893 Face 38149 8585 19077 30278 Face 38150 19078 26024 19077 Face 38151 8585 19078 19077 Face 38152 8585 1130 19078 Face 38153 12150 19079 6861 Face 38154 12150 15573 19079 Face 38155 27850 19080 41288 Face 38156 27850 6861 19080 Face 38157 6672 19081 10052 Face 38158 6672 11452 19081 Face 38159 4378 19082 28551 Face 38160 4378 31195 19082 Face 38161 1335 19083 8305 Face 38162 1335 28688 19083 Face 38163 29245 19084 4612 Face 38164 471 14171 19084 Face 38165 471 19085 14857 Face 38166 471 22521 19085 Face 38167 34849 30915 5845 Face 38168 3634 29910 47663 Face 38169 92 41906 18327 Face 38170 92 47197 19087 Face 38171 644 19088 32894 Face 38172 644 21082 19088 Face 38173 19090 40975 19685 Face 38174 3091 12374 19089 Face 38175 45207 19090 22493 Face 38176 3091 19089 19090 Face 38177 43857 40237 13507 Face 38178 45177 24465 19091 Face 38179 23481 19092 8881 Face 38180 1965 36196 40530 Face 38181 34945 33115 31424 Face 38182 33542 43792 19093 Face 38183 454 35967 46444 Face 38184 454 38820 19094 Face 38185 34042 19095 37010 Face 38186 110 16723 19095 Face 38187 19097 26928 23906 Face 38188 11329 13785 19096 Face 38189 11329 19097 23906 Face 38190 11329 19096 19097 Face 38191 14052 19098 26711 Face 38192 14052 7294 19098 Face 38193 946 19099 30978 Face 38194 946 18572 19099 Face 38195 8987 19100 1644 Face 38196 32888 39317 19100 Face 38197 10677 19101 17829 Face 38198 27456 47096 19101 Face 38199 3287 47602 5430 Face 38200 3287 17903 19102 Face 38201 2088 41427 10153 Face 38202 2088 21896 19103 Face 38203 19134 43728 21241 Face 38204 6508 36249 19104 Face 38205 8546 19105 23069 Face 38206 8546 5732 19105 Face 38207 2968 34997 48221 Face 38208 2968 42086 25000 Face 38209 4742 19107 26699 Face 38210 4742 15526 30217 Face 38211 37956 19108 47962 Face 38212 37956 10887 19108 Face 38213 5606 19109 2244 Face 38214 5606 13695 19109 Face 38215 42490 19110 6234 Face 38216 8105 35754 19110 Face 38217 36643 19111 45535 Face 38218 40575 17916 19111 Face 38219 14835 19112 14048 Face 38220 14835 34221 19112 Face 38221 28417 19113 24215 Face 38222 5934 16530 19113 Face 38223 37126 19114 10609 Face 38224 13548 21731 26154 Face 38225 1105 19115 25864 Face 38226 23250 15135 19115 Face 38227 3651 49663 1084 Face 38228 3651 4652 29526 Face 38229 10792 19117 32156 Face 38230 10792 26364 19117 Face 38231 20468 19118 11334 Face 38232 312 7445 29369 Face 38233 10581 19119 33432 Face 38234 19120 6496 36368 Face 38235 10581 19120 36368 Face 38236 37606 13398 19120 Face 38237 1106 19121 33839 Face 38238 33883 24867 19121 Face 38239 1328 19122 17072 Face 38240 33223 7639 19122 Face 38241 4282 19123 1013 Face 38242 4282 8159 19123 Face 38243 3403 19124 29054 Face 38244 29162 1419 19124 Face 38245 2263 19125 26700 Face 38246 2263 19000 19125 Face 38247 199 40240 14129 Face 38248 20035 36054 40240 Face 38249 32579 30150 43334 Face 38250 30558 27290 19127 Face 38251 20530 39550 861 Face 38252 20530 30150 32579 Face 38253 4743 19129 5713 Face 38254 4743 20638 19129 Face 38255 25224 44196 15331 Face 38256 330 36471 19130 Face 38257 12203 19131 2585 Face 38258 12203 74 19131 Face 38259 8121 19132 9817 Face 38260 8121 34760 19132 Face 38261 3604 30958 39019 Face 38262 3604 8571 49740 Face 38263 6508 19134 26677 Face 38264 6508 19104 19134 Face 38265 6194 37883 21388 Face 38266 35826 49328 19135 Face 38267 10098 19136 34660 Face 38268 10098 28998 19136 Face 38269 6147 19137 46965 Face 38270 6147 36597 19137 Face 38271 9569 19138 18959 Face 38272 9569 3382 19138 Face 38273 3376 36426 47942 Face 38274 3376 14090 43387 Face 38275 23465 19140 41820 Face 38276 44591 26008 33550 Face 38277 1741 19141 27355 Face 38278 49353 16853 19141 Face 38279 34299 43915 21237 Face 38280 8939 30695 19142 Face 38281 9135 19143 11908 Face 38282 9135 8289 19143 Face 38283 3826 19144 36594 Face 38284 3826 28982 19144 Face 38285 3903 19145 42549 Face 38286 3903 32349 37574 Face 38287 3692 19146 7681 Face 38288 3692 25356 19146 Face 38289 4812 19147 46574 Face 38290 23451 35081 19147 Face 38291 13629 19148 5492 Face 38292 21287 16797 19148 Face 38293 6776 19149 26028 Face 38294 6776 43973 19149 Face 38295 6367 19150 32508 Face 38296 6367 41174 19150 Face 38297 35340 19151 21546 Face 38298 35340 18654 19151 Face 38299 12478 46279 619 Face 38300 12478 18586 46279 Face 38301 4897 22261 17302 Face 38302 4897 21315 22261 Face 38303 4897 19154 43704 Face 38304 4897 41755 19154 Face 38305 6815 19155 37879 Face 38306 6815 13175 19155 Face 38307 46289 19156 2633 Face 38308 11228 32147 48424 Face 38309 21883 35443 2841 Face 38310 45574 15727 22866 Face 38311 7008 19158 5586 Face 38312 7008 35953 19158 Face 38313 2722 19159 35456 Face 38314 2722 25585 19159 Face 38315 32489 26212 46846 Face 38316 32489 44143 19160 Face 38317 3622 19161 28787 Face 38318 21737 27324 34201 Face 38319 44793 19162 18860 Face 38320 2167 27830 19162 Face 38321 24184 19163 33259 Face 38322 4012 11068 19163 Face 38323 40138 19164 29559 Face 38324 8733 42150 19164 Face 38325 45445 19165 15590 Face 38326 4981 26363 19165 Face 38327 4125 19166 22252 Face 38328 4125 38906 19166 Face 38329 1682 19167 13858 Face 38330 1682 23784 19167 Face 38331 16356 19168 49806 Face 38332 16356 6359 19168 Face 38333 33425 31213 9322 Face 38334 33425 44067 19169 Face 38335 46849 19170 32113 Face 38336 46849 37636 19170 Face 38337 12843 19171 11112 Face 38338 12843 23865 19171 Face 38339 14809 19172 17992 Face 38340 14809 42841 19172 Face 38341 48750 19173 39176 Face 38342 48750 18200 19173 Face 38343 362 19174 25980 Face 38344 362 33468 19174 Face 38345 6718 19175 49361 Face 38346 6718 44075 19176 Face 38347 19175 19176 11336 Face 38348 19175 6718 19176 Face 38349 6278 49534 34284 Face 38350 6278 31601 49534 Face 38351 48412 19178 17868 Face 38352 43654 29825 19178 Face 38353 28748 43654 19178 Face 38354 11165 36972 19179 Face 38355 35633 45201 7755 Face 38356 36707 13291 19180 Face 38357 418 19181 38300 Face 38358 418 13855 19181 Face 38359 542 40481 45566 Face 38360 48465 9198 31085 Face 38361 7755 19183 49083 Face 38362 7755 45201 19183 Face 38363 2179 40184 30791 Face 38364 2179 44142 19184 Face 38365 28923 19185 34515 Face 38366 4834 39485 19185 Face 38367 3947 19186 13831 Face 38368 3947 37719 19186 Face 38369 46614 19187 31742 Face 38370 821 7476 19187 Face 38371 4468 39542 22148 Face 38372 22517 87 19188 Face 38373 8669 19189 44546 Face 38374 19190 12845 42026 Face 38375 8669 19190 42026 Face 38376 8669 44857 19190 Face 38377 5148 19191 26710 Face 38378 5148 24678 19191 Face 38379 21311 19192 14640 Face 38380 7014 30464 19192 Face 38381 48944 19193 29231 Face 38382 5804 13241 19193 Face 38383 19195 28813 34343 Face 38384 1899 37352 19194 Face 38385 1899 19195 15209 Face 38386 1899 28813 19195 Face 38387 28162 19196 14594 Face 38388 25634 37778 42517 Face 38389 11114 19197 19760 Face 38390 11114 4570 19197 Face 38391 31895 29846 36755 Face 38392 1549 26090 19198 Face 38393 37428 19199 18201 Face 38394 26011 5703 48479 Face 38395 34840 19200 41117 Face 38396 10110 39741 19200 Face 38397 142 19201 5890 Face 38398 142 45417 19201 Face 38399 2548 19202 15631 Face 38400 2548 34290 19202 Face 38401 24309 19203 6876 Face 38402 24309 6693 19203 Face 38403 5234 19204 17145 Face 38404 5234 13488 19204 Face 38405 4325 35741 42633 Face 38406 4325 49936 19205 Face 38407 5739 19206 17571 Face 38408 5739 6983 19206 Face 38409 44562 39067 2281 Face 38410 9774 28004 19207 Face 38411 2721 22729 25939 Face 38412 45538 14227 19208 Face 38413 40717 19209 35595 Face 38414 7783 14370 19209 Face 38415 4465 19210 28746 Face 38416 43929 28047 19210 Face 38417 1858 19211 31449 Face 38418 1858 6339 19211 Face 38419 42191 48402 7750 Face 38420 43117 23391 45172 Face 38421 19214 19213 44942 Face 38422 6365 48402 42191 Face 38423 27348 19214 32218 Face 38424 6365 19213 19214 Face 38425 5511 19215 17939 Face 38426 5511 40973 19215 Face 38427 5924 19216 27838 Face 38428 5924 46211 19216 Face 38429 13561 44184 19591 Face 38430 13561 16098 19218 Face 38431 19217 19218 48073 Face 38432 19217 19591 44184 Face 38433 935 19219 16488 Face 38434 40817 16756 19219 Face 38435 4832 19220 15566 Face 38436 4832 14633 19220 Face 38437 13193 19221 24062 Face 38438 13193 36859 19221 Face 38439 7020 42264 23522 Face 38440 34511 17408 19222 Face 38441 44303 19223 36481 Face 38442 3259 49122 19223 Face 38443 12693 30346 47766 Face 38444 12693 14832 19224 Face 38445 5336 35259 28502 Face 38446 5336 17696 19225 Face 38447 10163 19226 47691 Face 38448 10163 4782 19226 Face 38449 22357 35089 5788 Face 38450 40298 11225 47033 Face 38451 6474 19228 34382 Face 38452 6474 12876 19228 Face 38453 5545 19229 34959 Face 38454 5545 7500 19229 Face 38455 7570 19230 23887 Face 38456 7570 27166 46956 Face 38457 26340 19231 30807 Face 38458 19628 29133 19231 Face 38459 465 19232 30743 Face 38460 27851 12764 19232 Face 38461 962 19233 18584 Face 38462 962 26845 19233 Face 38463 12206 19234 19235 Face 38464 12206 11765 19234 Face 38465 14283 19235 16473 Face 38466 14283 12206 19235 Face 38467 2356 19236 17490 Face 38468 42222 8919 19236 Face 38469 7595 19237 27628 Face 38470 7595 17214 19237 Face 38471 21265 19238 42513 Face 38472 19239 34666 19238 Face 38473 6957 19239 19238 Face 38474 6957 34665 19239 Face 38475 24552 19240 16670 Face 38476 37022 13220 40698 Face 38477 46000 19241 27745 Face 38478 952 15045 19241 Face 38479 33772 19242 24897 Face 38480 6112 40944 19242 Face 38481 6546 19243 15003 Face 38482 6546 3778 19243 Face 38483 13752 19244 24498 Face 38484 13752 18180 31991 Face 38485 15565 19245 5475 Face 38486 15565 48978 19245 Face 38487 35823 19246 9892 Face 38488 35823 36998 19246 Face 38489 4787 19247 49788 Face 38490 4787 11073 19247 Face 38491 9674 19248 10386 Face 38492 9674 2312 19248 Face 38493 12681 19249 12680 Face 38494 12681 18342 19249 Face 38495 12224 19250 25584 Face 38496 32052 18561 19250 Face 38497 12224 19251 23244 Face 38498 12224 25584 19251 Face 38499 11507 38733 12659 Face 38500 11507 33382 19252 Face 38501 3412 19253 13780 Face 38502 3412 16048 45743 Face 38503 1212 19254 47419 Face 38504 1212 14764 19254 Face 38505 34100 19255 44344 Face 38506 8268 32237 19255 Face 38507 29030 43527 24943 Face 38508 37516 40327 19256 Face 38509 15329 19257 10766 Face 38510 36276 3750 41622 Face 38511 19259 19258 13676 Face 38512 19259 45203 19258 Face 38513 5450 19259 39888 Face 38514 5450 45203 19259 Face 38515 3144 33691 40209 Face 38516 3144 47802 33691 Face 38517 8423 19261 26548 Face 38518 8423 7656 19261 Face 38519 8028 46522 45135 Face 38520 8028 27765 46522 Face 38521 15069 19263 13081 Face 38522 15069 14725 19263 Face 38523 1797 19264 34282 Face 38524 1797 6228 19264 Face 38525 31246 19265 21141 Face 38526 31246 37454 19265 Face 38527 34107 48213 42808 Face 38528 35078 1982 19266 Face 38529 3152 19267 12953 Face 38530 3152 38601 19267 Face 38531 4699 19268 11705 Face 38532 31602 18365 19268 Face 38533 37659 19269 19039 Face 38534 1737 17223 35858 Face 38535 9697 31995 6992 Face 38536 9697 36902 49882 Face 38537 25009 40411 8025 Face 38538 1447 24354 33154 Face 38539 4671 19272 31452 Face 38540 23252 34404 19272 Face 38541 2302 19273 8388 Face 38542 2302 30001 19273 Face 38543 2563 19274 7292 Face 38544 43647 43040 19274 Face 38545 4268 40932 10469 Face 38546 39151 30328 19275 Face 38547 28823 42255 18122 Face 38548 2142 37681 30935 Face 38549 6490 19277 49289 Face 38550 6490 25718 19277 Face 38551 5046 19278 49383 Face 38552 5046 59 19278 Face 38553 33743 19279 14403 Face 38554 41620 42259 19279 Face 38555 38052 19280 10304 Face 38556 19282 37273 41419 Face 38557 1198 19281 33000 Face 38558 1198 41419 19281 Face 38559 1198 19282 41419 Face 38560 1198 38540 19282 Face 38561 1981 19283 39795 Face 38562 1981 24917 19283 Face 38563 12463 19284 25231 Face 38564 12463 18789 19284 Face 38565 3388 19285 26398 Face 38566 19286 7170 41874 Face 38567 3388 19286 41874 Face 38568 3388 27646 19286 Face 38569 1431 19287 42359 Face 38570 46406 5572 19287 Face 38571 2416 47616 17348 Face 38572 2416 4329 19288 Face 38573 8733 19289 30290 Face 38574 8733 19164 19289 Face 38575 11961 19290 18866 Face 38576 11961 42465 19290 Face 38577 14103 19291 49567 Face 38578 14103 45338 19291 Face 38579 21975 38202 17171 Face 38580 3685 5054 19292 Face 38581 8941 19293 755 Face 38582 8941 16332 19293 Face 38583 17591 48359 48596 Face 38584 28715 4479 19294 Face 38585 1989 19295 42585 Face 38586 1989 28992 19295 Face 38587 7975 19296 20636 Face 38588 7975 10945 19296 Face 38589 19298 19297 27493 Face 38590 1424 45735 19297 Face 38591 29263 19298 13899 Face 38592 29263 19297 19298 Face 38593 38131 19299 23087 Face 38594 41417 45191 39732 Face 38595 5748 19300 40790 Face 38596 5748 16732 19300 Face 38597 1713 19301 30936 Face 38598 1713 38445 19301 Face 38599 5374 19302 47979 Face 38600 5374 21534 19302 Face 38601 5482 19303 15207 Face 38602 19307 20999 19303 Face 38603 2164 19304 37555 Face 38604 2164 15187 19304 Face 38605 32251 19305 40224 Face 38606 32251 1791 19305 Face 38607 33717 19306 5993 Face 38608 37507 43198 19306 Face 38609 5482 19307 19303 Face 38610 39267 7535 19307 Face 38611 2160 19308 47212 Face 38612 33053 47630 19308 Face 38613 28835 19309 24283 Face 38614 19310 24215 19309 Face 38615 14073 19310 19309 Face 38616 14073 16520 19310 Face 38617 1498 19311 31360 Face 38618 1498 21370 19311 Face 38619 14571 19312 31631 Face 38620 14571 8126 43975 Face 38621 12197 19313 18483 Face 38622 12197 35641 19313 Face 38623 1782 48155 25816 Face 38624 1782 27163 19314 Face 38625 7521 19315 22218 Face 38626 47827 26125 19315 Face 38627 29483 30966 45176 Face 38628 37406 4564 30966 Face 38629 8402 19317 16401 Face 38630 8402 21539 19317 Face 38631 8627 19318 42632 Face 38632 8627 10216 19318 Face 38633 32097 44234 43146 Face 38634 19320 15568 19319 Face 38635 983 19320 19319 Face 38636 34317 4271 36938 Face 38637 983 19321 28569 Face 38638 983 19319 19321 Face 38639 6075 45065 11990 Face 38640 6075 37984 45065 Face 38641 7441 19323 26879 Face 38642 7441 37142 19323 Face 38643 22367 19324 45395 Face 38644 42389 35851 19324 Face 38645 5613 42389 19324 Face 38646 5613 15533 42389 Face 38647 32235 19326 45860 Face 38648 32236 1600 19326 Face 38649 2582 19327 14935 Face 38650 33929 36499 19327 Face 38651 9027 19328 42954 Face 38652 9027 12650 19328 Face 38653 9654 19329 29304 Face 38654 9654 7199 19329 Face 38655 2663 33579 45497 Face 38656 2663 10135 33579 Face 38657 19330 19331 34128 Face 38658 19330 10135 19331 Face 38659 10923 19332 6541 Face 38660 10923 28532 19332 Face 38661 35146 19333 41436 Face 38662 1322 29920 19333 Face 38663 31040 19334 15871 Face 38664 1424 19297 19334 Face 38665 8726 19335 31651 Face 38666 8726 37884 19335 Face 38667 565 19336 10833 Face 38668 565 28706 19336 Face 38669 2606 19337 41330 Face 38670 2606 27626 19337 Face 38671 901 19338 10418 Face 38672 42332 8928 19338 Face 38673 14073 19339 3900 Face 38674 48321 19309 19339 Face 38675 17902 19340 11520 Face 38676 17902 29870 19340 Face 38677 14180 19341 6784 Face 38678 14180 14181 19341 Face 38679 27416 19342 33468 Face 38680 8952 17586 19342 Face 38681 48947 19344 1862 Face 38682 44805 27319 19344 Face 38683 19343 19344 27319 Face 38684 19343 1862 19344 Face 38685 46613 19345 8634 Face 38686 16003 20627 19345 Face 38687 23243 39569 38292 Face 38688 43783 11753 19346 Face 38689 1958 19347 26849 Face 38690 36739 11356 42166 Face 38691 1790 19348 8825 Face 38692 1790 29561 19348 Face 38693 27628 49028 7595 Face 38694 47174 13884 19349 Face 38695 1201 47174 19349 Face 38696 42501 45719 19350 Face 38697 21031 19351 5829 Face 38698 10255 37742 19351 Face 38699 24883 19352 1452 Face 38700 7567 10951 19352 Face 38701 29 19353 48948 Face 38702 29 22577 19353 Face 38703 22716 19354 22993 Face 38704 12035 24397 39995 Face 38705 4470 19355 14409 Face 38706 29100 9071 48872 Face 38707 4529 19356 32972 Face 38708 4529 35620 19356 Face 38709 19358 19357 28342 Face 38710 19358 19455 19357 Face 38711 38044 19358 28342 Face 38712 38044 18911 19358 Face 38713 6794 19359 14775 Face 38714 39662 1614 19359 Face 38715 1614 19360 19359 Face 38716 1614 45557 19360 Face 38717 38386 38993 12858 Face 38718 6758 23595 19361 Face 38719 9764 19362 35095 Face 38720 48182 32879 43951 Face 38721 9764 19363 19362 Face 38722 9764 13547 19363 Face 38723 19365 43969 22941 Face 38724 46134 24483 19364 Face 38725 10604 19365 3122 Face 38726 10604 43969 19365 Face 38727 43897 19366 34051 Face 38728 2243 48736 19366 Face 38729 28399 19367 11231 Face 38730 28399 19460 19367 Face 38731 9506 19368 44955 Face 38732 9506 4174 19368 Face 38733 9506 19369 46464 Face 38734 9506 44955 19369 Face 38735 1705 19370 11482 Face 38736 32964 31457 44890 Face 38737 328 19371 17080 Face 38738 328 37171 19371 Face 38739 39304 19372 28027 Face 38740 43114 11084 19372 Face 38741 44407 19373 10779 Face 38742 10131 4150 19373 Face 38743 2808 19374 4226 Face 38744 2808 48355 19374 Face 38745 2596 40356 40775 Face 38746 20312 10909 19375 Face 38747 5468 36766 18153 Face 38748 5468 46727 36766 Face 38749 10984 27486 5624 Face 38750 10984 40130 19377 Face 38751 3094 19378 34172 Face 38752 35931 15855 19378 Face 38753 33768 19379 12152 Face 38754 11626 938 35452 Face 38755 6043 19380 20842 Face 38756 6043 43510 19380 Face 38757 21585 19381 1434 Face 38758 3174 24174 19381 Face 38759 5022 45591 41733 Face 38760 5022 33960 45591 Face 38761 1897 19383 37703 Face 38762 1897 12002 19383 Face 38763 7304 19384 30614 Face 38764 7304 33398 19384 Face 38765 20419 19385 26298 Face 38766 190 39248 19385 Face 38767 12315 19386 6618 Face 38768 12315 562 19386 Face 38769 12452 19387 24922 Face 38770 12452 9952 47859 Face 38771 5940 19388 44692 Face 38772 5940 48625 19388 Face 38773 10053 19389 27995 Face 38774 10053 4873 19389 Face 38775 5148 19390 957 Face 38776 5148 26710 19390 Face 38777 29618 19391 12592 Face 38778 29618 16364 19391 Face 38779 13869 19392 20046 Face 38780 13869 32868 19392 Face 38781 1974 19393 25302 Face 38782 1974 39934 19393 Face 38783 7576 19394 9600 Face 38784 7576 18605 19394 Face 38785 37460 19395 36611 Face 38786 37460 19394 19395 Face 38787 11011 19396 14278 Face 38788 11011 35713 19396 Face 38789 4950 19397 31627 Face 38790 23798 11968 23960 Face 38791 28178 19398 16287 Face 38792 32170 18853 28599 Face 38793 13116 19399 29637 Face 38794 13116 325 19399 Face 38795 23032 47328 1670 Face 38796 49310 18712 19400 Face 38797 2874 19401 15964 Face 38798 2874 38609 19401 Face 38799 12205 19402 23591 Face 38800 48341 38255 19402 Face 38801 37995 34663 4559 Face 38802 4560 26617 19403 Face 38803 5964 38670 11963 Face 38804 5964 6092 19404 Face 38805 5964 19405 6092 Face 38806 5964 207 19405 Face 38807 20958 49009 43693 Face 38808 33997 34204 19406 Face 38809 42666 29198 18043 Face 38810 765 13396 19407 Face 38811 7005 19408 17566 Face 38812 31623 22383 19408 Face 38813 8104 19409 722 Face 38814 8104 22244 40038 Face 38815 24427 37286 33140 Face 38816 45112 13515 19410 Face 38817 12365 19411 18480 Face 38818 12365 16081 19411 Face 38819 5215 19412 8606 Face 38820 5215 24510 19412 Face 38821 8077 19413 31925 Face 38822 22078 18888 19413 Face 38823 36435 19414 2134 Face 38824 36435 37338 19414 Face 38825 10684 19415 31265 Face 38826 10684 14998 19415 Face 38827 11370 19416 18270 Face 38828 11370 41390 49852 Face 38829 2169 19417 7643 Face 38830 2169 10030 19417 Face 38831 20180 19418 15369 Face 38832 4352 1933 19418 Face 38833 7900 19419 27158 Face 38834 7900 26712 19419 Face 38835 27137 19420 8746 Face 38836 27137 35986 19420 Face 38837 43876 19421 19058 Face 38838 33862 10876 47494 Face 38839 3341 19422 12303 Face 38840 43876 27049 49873 Face 38841 7333 31113 3723 Face 38842 7333 36469 31113 Face 38843 4597 19424 3737 Face 38844 4597 12903 38208 Face 38845 2612 19425 38178 Face 38846 2612 37996 36265 Face 38847 2612 19426 11217 Face 38848 2612 38178 19426 Face 38849 844 19427 35301 Face 38850 844 16892 19427 Face 38851 42285 19428 25975 Face 38852 10167 21700 19428 Face 38853 49003 37965 38075 Face 38854 46465 38070 19429 Face 38855 9799 19430 7275 Face 38856 19431 40737 39402 Face 38857 9799 19431 39402 Face 38858 9799 28454 19431 Face 38859 2439 19432 15020 Face 38860 30711 21431 43336 Face 38861 8888 19433 27738 Face 38862 8888 3547 19433 Face 38863 32335 19434 2875 Face 38864 1346 26109 19434 Face 38865 12979 19435 25880 Face 38866 12979 15316 19435 Face 38867 1192 19436 41998 Face 38868 1192 17360 19436 Face 38869 26529 19437 40368 Face 38870 13097 20412 19437 Face 38871 45950 19438 32609 Face 38872 42927 14616 19438 Face 38873 19990 19439 5237 Face 38874 5238 26223 42919 Face 38875 12598 19440 20573 Face 38876 12598 2055 19440 Face 38877 8011 19441 48697 Face 38878 31755 10023 19441 Face 38879 47739 19442 10817 Face 38880 47739 15736 19442 Face 38881 5427 19443 33022 Face 38882 5427 6184 19443 Face 38883 14118 19444 32017 Face 38884 14118 16889 29726 Face 38885 43428 19445 11217 Face 38886 235 19404 19445 Face 38887 5501 19446 18650 Face 38888 5501 33381 19446 Face 38889 2879 19447 14705 Face 38890 2879 8199 43082 Face 38891 2979 19448 30967 Face 38892 22419 32296 36336 Face 38893 19450 19449 30671 Face 38894 42827 49021 35056 Face 38895 22128 40262 40465 Face 38896 1966 19449 40262 Face 38897 28329 19451 28967 Face 38898 38142 10804 40308 Face 38899 35729 45351 47261 Face 38900 5943 40997 19452 Face 38901 20881 19453 10895 Face 38902 6073 49452 44704 Face 38903 36335 19454 9810 Face 38904 36335 876 19454 Face 38905 13148 19455 3257 Face 38906 33844 19357 19455 Face 38907 26946 19456 15227 Face 38908 1986 33384 19456 Face 38909 1071 19457 19382 Face 38910 1071 39344 19457 Face 38911 4061 19458 12117 Face 38912 4061 30100 35298 Face 38913 30387 19459 26582 Face 38914 37605 15230 19459 Face 38915 29999 19460 15407 Face 38916 29999 19367 19460 Face 38917 7587 19461 37579 Face 38918 7587 13931 41336 Face 38919 4813 19462 10487 Face 38920 4813 42494 19462 Face 38921 80 19463 21163 Face 38922 37889 45698 19463 Face 38923 43009 19464 16592 Face 38924 31950 4464 19464 Face 38925 2613 19465 13772 Face 38926 2613 11823 19465 Face 38927 52 19466 27488 Face 38928 52 8946 19466 Face 38929 10582 19467 37549 Face 38930 28631 24828 19467 Face 38931 10121 19468 46352 Face 38932 10121 683 19468 Face 38933 7047 19469 9498 Face 38934 19498 33762 19469 Face 38935 10516 32758 19782 Face 38936 10516 5406 32758 Face 38937 5406 19471 19470 Face 38938 5406 11689 19471 Face 38939 5392 19472 17876 Face 38940 19473 5391 19472 Face 38941 5392 19473 19472 Face 38942 5392 44236 19473 Face 38943 35999 19474 2376 Face 38944 35999 2957 31825 Face 38945 45242 19475 30952 Face 38946 24109 160 19475 Face 38947 1451 19476 11753 Face 38948 38022 15662 19476 Face 38949 7647 19477 36712 Face 38950 7647 11257 19477 Face 38951 29717 19478 26580 Face 38952 19636 30073 45318 Face 38953 15107 19479 49363 Face 38954 15107 34357 19479 Face 38955 33301 30608 22506 Face 38956 8029 13078 19480 Face 38957 26012 19481 4080 Face 38958 33012 558 19481 Face 38959 6625 19482 20033 Face 38960 6625 12772 19482 Face 38961 2110 19483 48837 Face 38962 49367 16116 19483 Face 38963 16971 19484 49313 Face 38964 16971 42012 19484 Face 38965 1469 19485 30481 Face 38966 1469 33119 19485 Face 38967 19487 49075 1434 Face 38968 46598 3497 19486 Face 38969 31628 19487 27923 Face 38970 31628 19486 19487 Face 38971 15505 19488 38641 Face 38972 15505 37193 19488 Face 38973 5830 19489 24029 Face 38974 5830 15529 19489 Face 38975 19698 19490 8172 Face 38976 27652 30519 19490 Face 38977 7803 19491 42479 Face 38978 7803 31237 19491 Face 38979 2034 19492 28955 Face 38980 47423 31378 19492 Face 38981 8765 19493 15549 Face 38982 37863 9700 45023 Face 38983 42781 19494 120 Face 38984 23641 13006 19494 Face 38985 20408 19495 15020 Face 38986 3518 2484 19495 Face 38987 4145 19496 12009 Face 38988 4145 18425 19496 Face 38989 49441 19497 15397 Face 38990 8199 2879 19497 Face 38991 7047 19498 19469 Face 38992 7047 28147 19498 Face 38993 690 19499 17274 Face 38994 30587 16261 19499 Face 38995 20564 29512 47258 Face 38996 1578 16723 48295 Face 38997 2295 31505 16071 Face 38998 2295 31934 19501 Face 38999 4778 19502 23061 Face 39000 4778 16409 19502 Face 39001 5737 19503 18099 Face 39002 23162 23164 19503 Face 39003 1619 19504 3339 Face 39004 1619 36371 19504 Face 39005 2984 19505 8062 Face 39006 2984 17276 19505 Face 39007 26743 32523 37403 Face 39008 19507 2453 32522 Face 39009 5054 19507 19506 Face 39010 5054 26374 19507 Face 39011 7673 37840 32334 Face 39012 7673 379 37840 Face 39013 5961 19509 34281 Face 39014 40619 5132 19509 Face 39015 19983 19510 37032 Face 39016 48772 5379 19510 Face 39017 1173 19511 20642 Face 39018 1173 42464 19511 Face 39019 54 19512 24191 Face 39020 54 34138 19512 Face 39021 31734 19513 20527 Face 39022 2494 2493 38408 Face 39023 8650 19514 9493 Face 39024 8650 19386 19514 Face 39025 7745 19515 47843 Face 39026 7745 29486 19515 Face 39027 40872 31047 39275 Face 39028 4896 47342 19516 Face 39029 42478 19517 5653 Face 39030 13608 33624 19517 Face 39031 2643 19518 13584 Face 39032 23976 5269 19518 Face 39033 1895 19519 631 Face 39034 31639 44038 19519 Face 39035 28379 19520 23674 Face 39036 28379 13449 19520 Face 39037 43232 19521 33852 Face 39038 11175 6881 26525 Face 39039 10317 19522 2248 Face 39040 10317 48275 19522 Face 39041 123 46391 11938 Face 39042 123 12185 19523 Face 39043 1061 19524 18645 Face 39044 1061 14347 19524 Face 39045 2352 33158 11963 Face 39046 46033 18083 19525 Face 39047 19527 34563 28078 Face 39048 36719 42999 19526 Face 39049 8010 19527 34670 Face 39050 8010 34562 19527 Face 39051 340 19528 20858 Face 39052 340 6057 19528 Face 39053 3877 38645 5388 Face 39054 3877 43513 19529 Face 39055 8456 19530 46897 Face 39056 8456 46217 19530 Face 39057 13845 19531 46828 Face 39058 13845 600 19531 Face 39059 10213 19532 36008 Face 39060 10213 2443 19532 Face 39061 7840 19533 4205 Face 39062 32508 19150 36612 Face 39063 40813 19534 16904 Face 39064 27734 24669 19534 Face 39065 34149 19535 6793 Face 39066 28718 19360 45557 Face 39067 9553 47698 16601 Face 39068 9553 14804 47698 Face 39069 49572 19537 40855 Face 39070 9299 45715 19537 Face 39071 7236 19538 22661 Face 39072 28647 43139 19538 Face 39073 7940 19539 25844 Face 39074 7940 20132 19539 Face 39075 4287 19540 42606 Face 39076 41290 45252 19540 Face 39077 31865 19541 28180 Face 39078 37849 32347 19541 Face 39079 7370 19542 33322 Face 39080 32355 30178 49725 Face 39081 7043 19543 31876 Face 39082 7043 43211 19543 Face 39083 23909 19544 28177 Face 39084 37009 12793 19544 Face 39085 8405 19545 32186 Face 39086 8405 11769 19545 Face 39087 20272 19546 43672 Face 39088 760 10891 35629 Face 39089 16426 19547 4792 Face 39090 25876 45081 19547 Face 39091 16426 19549 19547 Face 39092 16426 16427 19548 Face 39093 19548 19549 16426 Face 39094 19550 19547 19549 Face 39095 19548 19550 19549 Face 39096 19548 31065 25876 Face 39097 37014 19551 22447 Face 39098 665 13126 19551 Face 39099 40491 19552 47414 Face 39100 19553 28921 19552 Face 39101 5878 19553 19552 Face 39102 5878 14374 19553 Face 39103 3354 19554 28779 Face 39104 3354 45789 39979 Face 39105 32339 19555 27330 Face 39106 6304 46562 19555 Face 39107 3328 19556 17624 Face 39108 3328 33752 19556 Face 39109 44080 25607 9 Face 39110 3143 14112 19557 Face 39111 15647 37775 1273 Face 39112 15647 29683 37775 Face 39113 27464 19559 49341 Face 39114 27464 7571 19559 Face 39115 6481 19560 44357 Face 39116 6481 39578 19560 Face 39117 406 28899 30505 Face 39118 42182 31283 19561 Face 39119 43671 49371 6285 Face 39120 8659 33057 19562 Face 39121 3177 19563 16018 Face 39122 3177 13632 19563 Face 39123 19565 19564 32033 Face 39124 9115 31221 19564 Face 39125 9115 19565 18734 Face 39126 9115 19564 19565 Face 39127 7619 19566 7620 Face 39128 37630 44419 19566 Face 39129 8243 19567 35969 Face 39130 8243 26274 19567 Face 39131 29021 19568 45250 Face 39132 29021 18254 49809 Face 39133 6155 19569 27573 Face 39134 6155 14751 19569 Face 39135 24899 19570 3803 Face 39136 4196 29450 19570 Face 39137 8845 19571 29662 Face 39138 37433 30228 19571 Face 39139 34733 45603 31177 Face 39140 8698 11556 19572 Face 39141 42746 19573 48284 Face 39142 42746 32333 19573 Face 39143 19575 19574 4448 Face 39144 8086 23682 19574 Face 39145 8086 19575 44206 Face 39146 8086 19574 19575 Face 39147 2929 19576 40957 Face 39148 2929 24255 19576 Face 39149 19578 19577 23738 Face 39150 19578 21030 19577 Face 39151 4754 44588 40837 Face 39152 4754 21030 19578 Face 39153 10912 19579 9355 Face 39154 32779 7421 19579 Face 39155 9110 19580 24662 Face 39156 9110 36212 40021 Face 39157 7018 44215 14786 Face 39158 7018 11875 19581 Face 39159 707 19582 12578 Face 39160 707 8469 19582 Face 39161 9242 19583 674 Face 39162 42999 36719 19583 Face 39163 3548 19584 10563 Face 39164 3548 11972 19584 Face 39165 19586 19585 9067 Face 39166 19586 42342 19585 Face 39167 8598 19586 31875 Face 39168 8598 42342 19586 Face 39169 581 19587 19037 Face 39170 581 12283 19587 Face 39171 6724 19588 2232 Face 39172 6724 27280 19588 Face 39173 10490 19589 31482 Face 39174 10490 37611 19589 Face 39175 2236 19590 12562 Face 39176 49646 22152 19590 Face 39177 10195 19591 19217 Face 39178 31573 32180 19591 Face 39179 27869 38996 3190 Face 39180 30469 14026 19592 Face 39181 38996 19593 18716 Face 39182 19592 14026 44988 Face 39183 49000 19594 1311 Face 39184 44988 14026 38306 Face 39185 5711 19595 39134 Face 39186 20617 2702 39573 Face 39187 6840 19596 43690 Face 39188 6840 33485 19596 Face 39189 9893 19597 29921 Face 39190 9893 31479 19597 Face 39191 45292 40861 17677 Face 39192 34953 9864 19598 Face 39193 8848 19599 40147 Face 39194 8848 7519 19599 Face 39195 8914 19600 42339 Face 39196 8914 32484 19600 Face 39197 12680 19601 36283 Face 39198 12680 19249 19601 Face 39199 7975 19602 10945 Face 39200 7975 7974 19602 Face 39201 30792 19603 906 Face 39202 7654 36194 19603 Face 39203 49763 19604 124 Face 39204 26394 7884 32545 Face 39205 36113 19605 7947 Face 39206 4476 46634 19605 Face 39207 6405 41311 20728 Face 39208 6405 14281 19606 Face 39209 4867 38579 34969 Face 39210 22250 6811 19607 Face 39211 3470 19608 9838 Face 39212 3470 42044 19608 Face 39213 26413 19609 4570 Face 39214 71 19462 42494 Face 39215 48403 19610 16731 Face 39216 4686 24628 19610 Face 39217 8864 19611 48239 Face 39218 8864 27112 19611 Face 39219 11124 19612 38597 Face 39220 49589 31214 19612 Face 39221 42697 19613 2664 Face 39222 6394 38885 19613 Face 39223 4129 19614 49209 Face 39224 44632 21697 28929 Face 39225 128 19615 37706 Face 39226 128 22412 27845 Face 39227 40719 44157 12006 Face 39228 2177 4859 19616 Face 39229 16168 19617 42575 Face 39230 16168 26934 19617 Face 39231 8060 19618 21476 Face 39232 8060 39801 19618 Face 39233 8497 19619 12925 Face 39234 8497 2056 19619 Face 39235 12446 19620 44120 Face 39236 12446 7376 19620 Face 39237 45560 19621 9877 Face 39238 5969 39108 19621 Face 39239 3796 39863 9258 Face 39240 3796 22618 19622 Face 39241 8413 19623 16914 Face 39242 8413 27211 19623 Face 39243 36847 19624 21544 Face 39244 1582 32345 45044 Face 39245 3876 19625 36851 Face 39246 3876 12655 19625 Face 39247 19627 44992 13091 Face 39248 20827 49499 19626 Face 39249 22879 40396 7026 Face 39250 1596 44992 19627 Face 39251 9376 19628 19231 Face 39252 9376 687 19628 Face 39253 27310 19629 7643 Face 39254 5593 10007 19629 Face 39255 11213 19630 18869 Face 39256 11213 4975 19630 Face 39257 19632 19631 26528 Face 39258 1735 16205 19631 Face 39259 1735 19632 5471 Face 39260 1735 19631 19632 Face 39261 4385 36017 24997 Face 39262 27629 6702 19633 Face 39263 2654 19634 37873 Face 39264 2654 4426 19634 Face 39265 6894 19635 21312 Face 39266 6894 30761 19635 Face 39267 29717 19636 19478 Face 39268 47158 26739 19636 Face 39269 6473 19637 45577 Face 39270 37430 655 19637 Face 39271 37430 35090 21147 Face 39272 6473 45577 19638 Face 39273 39718 19639 8354 Face 39274 2819 22263 19639 Face 39275 19641 19640 47547 Face 39276 3896 11418 31026 Face 39277 3896 19641 15310 Face 39278 3896 19640 19641 Face 39279 19643 19642 47387 Face 39280 19643 11014 19642 Face 39281 6940 19643 30220 Face 39282 6940 11014 19643 Face 39283 180 19644 40133 Face 39284 44163 17537 19644 Face 39285 14399 19645 4275 Face 39286 31626 9935 19645 Face 39287 8663 19646 23310 Face 39288 8663 895 19646 Face 39289 4174 19647 19368 Face 39290 4174 37314 19647 Face 39291 2739 35082 13845 Face 39292 2739 17397 35082 Face 39293 19650 19649 19651 Face 39294 2291 1109 19649 Face 39295 2291 19650 15201 Face 39296 2291 19649 19650 Face 39297 19652 19651 17683 Face 39298 4893 30159 46031 Face 39299 21611 19652 30345 Face 39300 49627 46031 19652 Face 39301 7413 46688 23508 Face 39302 7413 28018 19653 Face 39303 482 19654 10022 Face 39304 482 48292 19654 Face 39305 147 19655 37757 Face 39306 40410 12455 19655 Face 39307 24937 19656 48963 Face 39308 1586 44024 19656 Face 39309 25790 19657 29259 Face 39310 24385 44481 19657 Face 39311 11172 19658 21333 Face 39312 11172 36928 19658 Face 39313 26711 43960 38678 Face 39314 16859 36785 19659 Face 39315 7083 19660 28257 Face 39316 7083 47405 19660 Face 39317 7971 19661 48598 Face 39318 32525 35645 19661 Face 39319 9665 34136 23321 Face 39320 9665 12247 34136 Face 39321 9140 19663 611 Face 39322 22858 3282 19663 Face 39323 32477 19664 32255 Face 39324 32477 3075 19664 Face 39325 43292 19665 33487 Face 39326 43292 44825 19665 Face 39327 3089 42752 49382 Face 39328 23494 40074 19666 Face 39329 39924 19667 10304 Face 39330 11749 38757 19667 Face 39331 1080 42082 21957 Face 39332 1080 30030 19668 Face 39333 11121 19669 17012 Face 39334 11121 3087 19669 Face 39335 30184 19670 13773 Face 39336 30184 16486 19670 Face 39337 32395 49869 17119 Face 39338 3608 25625 19671 Face 39339 6818 19672 15072 Face 39340 42283 1905 19672 Face 39341 21270 19673 28495 Face 39342 21270 36160 19673 Face 39343 11287 49426 34167 Face 39344 11287 3421 49426 Face 39345 227 19675 7067 Face 39346 19676 41716 19675 Face 39347 227 19676 19675 Face 39348 227 35050 19676 Face 39349 554 19677 20864 Face 39350 26585 21978 19677 Face 39351 1362 19678 38205 Face 39352 27568 48865 19678 Face 39353 7839 19679 22422 Face 39354 7839 17260 19679 Face 39355 6825 19680 31204 Face 39356 6825 46112 19680 Face 39357 19682 19681 12745 Face 39358 7390 7391 42179 Face 39359 7390 36671 49047 Face 39360 7390 19681 19682 Face 39361 37246 19683 48852 Face 39362 37246 27087 19683 Face 39363 11902 19684 41821 Face 39364 11902 16975 19684 Face 39365 24595 19685 40975 Face 39366 4413 28255 19685 Face 39367 73 19686 48274 Face 39368 73 42397 19686 Face 39369 9857 19687 3549 Face 39370 9857 6021 43597 Face 39371 2687 19688 14096 Face 39372 2687 17444 19688 Face 39373 5079 19689 37247 Face 39374 5079 31972 19689 Face 39375 15731 19690 9786 Face 39376 15731 7689 19690 Face 39377 28698 19691 18871 Face 39378 35078 19266 19691 Face 39379 8857 19692 6208 Face 39380 33093 38967 19692 Face 39381 4704 19693 14818 Face 39382 43410 12239 39530 Face 39383 39835 19694 1215 Face 39384 23199 29596 19694 Face 39385 8404 19695 33716 Face 39386 8404 1751 19695 Face 39387 7969 19696 5646 Face 39388 7969 29008 19696 Face 39389 9164 19697 16462 Face 39390 45424 40412 19697 Face 39391 3449 19698 14782 Face 39392 27652 19490 19698 Face 39393 266 19699 9974 Face 39394 266 32875 19699 Face 39395 48689 19700 41886 Face 39396 41352 1710 19700 Face 39397 44009 19701 12950 Face 39398 5820 47789 19701 Face 39399 39625 19702 16784 Face 39400 5820 19701 44009 Face 39401 47354 19703 22415 Face 39402 9650 34265 19703 Face 39403 931 19704 26771 Face 39404 24163 21185 19704 Face 39405 28263 21403 32849 Face 39406 11841 40110 19705 Face 39407 7623 19706 17977 Face 39408 7623 31188 19706 Face 39409 25199 47996 22391 Face 39410 941 16594 46082 Face 39411 6880 19708 39150 Face 39412 6880 30134 19708 Face 39413 36816 19709 47152 Face 39414 45458 49874 19709 Face 39415 10733 19710 37057 Face 39416 10733 38977 19710 Face 39417 7987 19711 240 Face 39418 7987 2229 28487 Face 39419 246 19712 27963 Face 39420 246 13478 19712 Face 39421 6104 19713 37322 Face 39422 27399 25143 45678 Face 39423 3843 19714 46968 Face 39424 32456 3841 32967 Face 39425 12313 19715 26801 Face 39426 12313 36483 19715 Face 39427 21208 41114 16951 Face 39428 3526 18882 41114 Face 39429 20826 19717 41539 Face 39430 20826 5472 19717 Face 39431 27075 19718 12894 Face 39432 3759 48595 19718 Face 39433 4487 19719 28956 Face 39434 20170 11488 41163 Face 39435 29817 19720 15891 Face 39436 886 15427 19720 Face 39437 2988 19721 13958 Face 39438 2988 43075 19721 Face 39439 2424 19722 46310 Face 39440 40301 12970 19722 Face 39441 32087 19723 28011 Face 39442 14390 34458 19723 Face 39443 31914 19724 26385 Face 39444 14808 34977 19724 Face 39445 28779 19725 15870 Face 39446 28779 12616 19725 Face 39447 15236 19726 15237 Face 39448 15236 41335 19726 Face 39449 41535 19727 13213 Face 39450 6430 31935 19727 Face 39451 39549 44045 257 Face 39452 4143 39000 19728 Face 39453 36710 19729 5381 Face 39454 40982 5660 19729 Face 39455 8677 33295 29175 Face 39456 8677 26353 19730 Face 39457 19954 19731 4445 Face 39458 1020 46210 19731 Face 39459 6622 48614 44645 Face 39460 6622 2740 48615 Face 39461 11851 41549 36410 Face 39462 11851 33024 19733 Face 39463 4549 36542 18237 Face 39464 4549 30588 19734 Face 39465 28242 46246 31796 Face 39466 274 18845 46246 Face 39467 25392 19736 46286 Face 39468 1143 36828 19736 Face 39469 7598 19737 8980 Face 39470 7598 49819 19737 Face 39471 7963 19738 16281 Face 39472 7963 21239 44473 Face 39473 48840 19739 14086 Face 39474 47756 37499 19739 Face 39475 14484 42652 2881 Face 39476 14484 34903 42652 Face 39477 10915 19741 40813 Face 39478 10915 49375 19741 Face 39479 7104 19742 25739 Face 39480 49250 10098 19742 Face 39481 147 19743 4184 Face 39482 147 10818 19743 Face 39483 197 19744 7950 Face 39484 197 47952 35669 Face 39485 19746 19745 17053 Face 39486 804 38515 19745 Face 39487 804 19746 45484 Face 39488 804 19745 19746 Face 39489 3063 19747 28080 Face 39490 19748 22914 33653 Face 39491 3063 43209 48219 Face 39492 3063 13257 43209 Face 39493 38562 19749 47485 Face 39494 38562 30994 19749 Face 39495 2729 48371 11933 Face 39496 2729 21856 34799 Face 39497 19752 19751 26275 Face 39498 20768 31345 19751 Face 39499 43350 19752 45319 Face 39500 27249 19751 19752 Face 39501 5627 19753 13497 Face 39502 20768 19751 27249 Face 39503 19755 19754 17343 Face 39504 19755 2511 19754 Face 39505 11249 19755 43767 Face 39506 11249 48883 19755 Face 39507 19757 19756 26419 Face 39508 4096 6222 19756 Face 39509 4096 36934 48030 Face 39510 4096 19756 19757 Face 39511 2271 40915 27104 Face 39512 2271 35308 19758 Face 39513 19760 19759 13682 Face 39514 3894 11262 19759 Face 39515 3894 19760 19197 Face 39516 3894 19759 19760 Face 39517 11350 19761 32773 Face 39518 11350 11524 19761 Face 39519 33018 19762 36714 Face 39520 112 44404 19762 Face 39521 41362 19763 5352 Face 39522 19764 48796 19763 Face 39523 24293 19764 19763 Face 39524 35937 11296 19764 Face 39525 6830 19765 28499 Face 39526 19766 32234 19765 Face 39527 6830 19766 19765 Face 39528 21352 29942 19766 Face 39529 5958 19767 20452 Face 39530 5958 49475 19767 Face 39531 28630 47325 38824 Face 39532 7721 31866 19768 Face 39533 3372 19769 16063 Face 39534 3372 24322 19769 Face 39535 22420 19770 39547 Face 39536 46951 19835 40694 Face 39537 32605 19771 35883 Face 39538 1898 14939 19771 Face 39539 37888 19772 26849 Face 39540 7404 48742 19772 Face 39541 28425 19773 5839 Face 39542 3517 5252 19773 Face 39543 828 19774 10288 Face 39544 828 16569 19774 Face 39545 46427 19775 18235 Face 39546 722 19409 49895 Face 39547 3770 19776 18062 Face 39548 3770 7748 19776 Face 39549 6980 19777 36743 Face 39550 6980 28977 19777 Face 39551 978 22864 24145 Face 39552 978 39269 22864 Face 39553 1274 19779 10920 Face 39554 1274 39663 19779 Face 39555 6563 19780 29221 Face 39556 6563 44558 19780 Face 39557 2328 19781 34789 Face 39558 2328 705 19781 Face 39559 3856 19782 32758 Face 39560 3856 22482 19782 Face 39561 6736 42553 47761 Face 39562 6736 366 42553 Face 39563 46171 19784 11854 Face 39564 6935 40872 39275 Face 39565 24074 19785 37321 Face 39566 30794 34837 19785 Face 39567 10049 31196 39380 Face 39568 10049 15487 34695 Face 39569 24653 19787 14195 Face 39570 4766 14194 19787 Face 39571 6684 19788 47027 Face 39572 34016 5016 34564 Face 39573 5382 37990 8970 Face 39574 5382 33492 19789 Face 39575 593 19790 39413 Face 39576 22065 33708 19790 Face 39577 5290 19791 13443 Face 39578 5290 32289 19791 Face 39579 32696 19792 24813 Face 39580 32696 22491 19792 Face 39581 43497 19793 7426 Face 39582 24862 42616 19793 Face 39583 13600 35305 2429 Face 39584 13600 49876 19794 Face 39585 37628 19795 16010 Face 39586 41729 48653 33958 Face 39587 42310 19796 8683 Face 39588 31903 13689 42078 Face 39589 131 19797 23937 Face 39590 131 41157 19797 Face 39591 9029 19798 6894 Face 39592 30110 46218 19798 Face 39593 7787 19799 44587 Face 39594 27656 39457 19799 Face 39595 34738 19800 18211 Face 39596 34738 5495 19800 Face 39597 25440 23305 11143 Face 39598 1536 26104 19801 Face 39599 936 42397 32640 Face 39600 43156 19686 42397 Face 39601 9186 19803 26448 Face 39602 9186 9184 19803 Face 39603 10749 19804 33987 Face 39604 10749 31560 19804 Face 39605 6047 19805 32023 Face 39606 26166 31750 19805 Face 39607 10958 19806 16702 Face 39608 10958 18265 19806 Face 39609 25260 19807 48798 Face 39610 1896 27881 19807 Face 39611 6515 19808 1600 Face 39612 38466 40460 19808 Face 39613 5785 19809 37310 Face 39614 5785 44361 19809 Face 39615 28574 36714 19762 Face 39616 33031 45403 19810 Face 39617 1960 28574 19762 Face 39618 48923 33598 19811 Face 39619 9821 19812 15927 Face 39620 9821 21404 38007 Face 39621 9646 19813 1908 Face 39622 9646 35536 19813 Face 39623 5254 41433 8353 Face 39624 5254 35747 19814 Face 39625 2552 43015 12750 Face 39626 29783 17056 19815 Face 39627 11713 19816 22663 Face 39628 11713 27489 19816 Face 39629 11522 19817 1757 Face 39630 11522 49455 19817 Face 39631 9642 19818 18710 Face 39632 9642 22734 19818 Face 39633 1383 19819 43770 Face 39634 45038 30052 19819 Face 39635 4397 19820 26087 Face 39636 4397 16572 19820 Face 39637 38143 19821 32870 Face 39638 7411 27691 19821 Face 39639 5062 19822 41487 Face 39640 37142 32128 19822 Face 39641 4250 19823 49210 Face 39642 4250 37038 19823 Face 39643 8953 19824 36960 Face 39644 49574 35230 19824 Face 39645 47862 19825 43532 Face 39646 3180 11188 48507 Face 39647 4619 19826 10069 Face 39648 4619 31297 19826 Face 39649 19828 19827 23113 Face 39650 6699 42854 29005 Face 39651 33506 28596 23545 Face 39652 33506 19827 28596 Face 39653 1953 19829 9344 Face 39654 1953 12189 19829 Face 39655 5906 19830 9797 Face 39656 5906 38105 19830 Face 39657 35383 19831 10952 Face 39658 26724 47985 19831 Face 39659 29930 49960 27300 Face 39660 7808 47596 19832 Face 39661 34645 19833 10625 Face 39662 33296 8285 19833 Face 39663 10639 19834 14595 Face 39664 10639 8003 41694 Face 39665 1487 19835 8482 Face 39666 1487 36998 19835 Face 39667 44583 19836 18109 Face 39668 3920 28622 19836 Face 39669 11102 19837 35148 Face 39670 11102 37018 19837 Face 39671 5048 19838 41693 Face 39672 5048 18681 19838 Face 39673 2631 33245 46526 Face 39674 28350 44331 33245 Face 39675 2752 19840 13004 Face 39676 2752 42530 19840 Face 39677 1978 19841 82 Face 39678 1978 47495 19841 Face 39679 9008 19842 43090 Face 39680 9008 17247 19842 Face 39681 2318 19843 31087 Face 39682 2318 20668 19843 Face 39683 38122 37653 34881 Face 39684 3528 49030 19844 Face 39685 24869 19845 32146 Face 39686 4961 36394 19845 Face 39687 39637 19846 45060 Face 39688 39637 23918 19846 Face 39689 12532 19847 20661 Face 39690 12532 34633 19847 Face 39691 366 35626 19783 Face 39692 366 24901 35626 Face 39693 46188 19849 18766 Face 39694 23751 13856 26704 Face 39695 14514 19850 12734 Face 39696 14514 18263 47224 Face 39697 3266 19851 45598 Face 39698 3266 27309 19851 Face 39699 1944 19852 3228 Face 39700 49540 36718 19852 Face 39701 13853 19853 12585 Face 39702 13853 28833 19853 Face 39703 1409 19854 14403 Face 39704 1409 28533 42460 Face 39705 32481 19855 27386 Face 39706 24105 19477 38251 Face 39707 28442 19856 6931 Face 39708 7175 28987 19856 Face 39709 564 19857 49435 Face 39710 564 14106 19857 Face 39711 2842 19858 7807 Face 39712 2842 10418 19858 Face 39713 33632 19859 16437 Face 39714 4263 41719 19859 Face 39715 4789 19860 9980 Face 39716 32383 20476 19860 Face 39717 786 19861 24789 Face 39718 19862 10296 19861 Face 39719 786 19862 19861 Face 39720 20011 23463 19862 Face 39721 9511 19863 346 Face 39722 9511 24691 41342 Face 39723 25690 19864 34140 Face 39724 19866 5507 19864 Face 39725 19866 40361 7786 Face 39726 264 31765 40361 Face 39727 264 19866 19864 Face 39728 264 40361 19866 Face 39729 5887 43773 18754 Face 39730 5887 23657 43773 Face 39731 9581 19868 16390 Face 39732 40274 19053 19868 Face 39733 12866 19869 32845 Face 39734 12866 45927 19869 Face 39735 29051 19870 41929 Face 39736 10830 155 19870 Face 39737 10830 19871 155 Face 39738 31146 2098 29018 Face 39739 6526 19872 21658 Face 39740 6526 45269 19872 Face 39741 24683 19873 33687 Face 39742 24683 17054 19873 Face 39743 8415 19874 36636 Face 39744 8415 1000 19874 Face 39745 923 19875 15553 Face 39746 26988 14174 19875 Face 39747 7408 19876 22567 Face 39748 7408 45806 19876 Face 39749 32220 45617 14616 Face 39750 32219 16009 45617 Face 39751 6485 19878 16332 Face 39752 46540 12428 19878 Face 39753 41810 19879 41161 Face 39754 41810 19066 19879 Face 39755 33058 24269 37780 Face 39756 4676 17299 19880 Face 39757 37114 19881 12344 Face 39758 37114 31169 19881 Face 39759 23855 19882 17501 Face 39760 19883 7409 19882 Face 39761 44841 19883 19882 Face 39762 566 13612 19883 Face 39763 3155 19884 25668 Face 39764 28611 16069 40364 Face 39765 3155 19885 22658 Face 39766 3155 6907 19885 Face 39767 249 25436 14747 Face 39768 249 22289 19886 Face 39769 28405 19887 34439 Face 39770 3040 32655 19887 Face 39771 8656 19888 3 Face 39772 8656 11469 19888 Face 39773 3863 19889 11218 Face 39774 39183 42235 19889 Face 39775 18599 19890 26123 Face 39776 18599 23019 19890 Face 39777 4843 30195 13213 Face 39778 22290 2131 19891 Face 39779 8476 19892 38416 Face 39780 8476 46334 19892 Face 39781 10521 19893 25524 Face 39782 10521 17601 19893 Face 39783 28354 30594 12961 Face 39784 28354 43230 30594 Face 39785 21230 21266 28917 Face 39786 8553 10721 19895 Face 39787 26284 19896 11123 Face 39788 6596 40859 19896 Face 39789 6605 19897 32393 Face 39790 6605 13372 19897 Face 39791 3576 19898 16813 Face 39792 21215 11537 19898 Face 39793 9503 19899 29520 Face 39794 9503 23477 19899 Face 39795 1127 19900 9616 Face 39796 1127 23936 19900 Face 39797 12715 19901 7767 Face 39798 12715 26726 19901 Face 39799 19903 44784 33897 Face 39800 19903 31384 19902 Face 39801 7396 19903 33897 Face 39802 7396 31384 19903 Face 39803 20888 19904 5143 Face 39804 7032 2754 19904 Face 39805 11964 45626 556 Face 39806 11964 15994 37551 Face 39807 22968 19906 6513 Face 39808 1314 12068 19906 Face 39809 37820 19907 11617 Face 39810 5741 17817 19907 Face 39811 26977 19908 47316 Face 39812 38856 12740 19908 Face 39813 14108 19909 10401 Face 39814 42350 27265 46436 Face 39815 20282 19910 31994 Face 39816 19911 36285 19910 Face 39817 40489 19911 19910 Face 39818 1262 37821 19911 Face 39819 1109 46586 19649 Face 39820 1109 13024 19912 Face 39821 24810 31609 2013 Face 39822 3222 20915 19913 Face 39823 6415 19914 85 Face 39824 6415 24011 39715 Face 39825 572 19915 47951 Face 39826 572 27572 19915 Face 39827 19917 19916 42296 Face 39828 10827 49488 19916 Face 39829 10827 19917 8673 Face 39830 10827 19916 19917 Face 39831 2081 19918 46123 Face 39832 26790 21183 19918 Face 39833 45477 44799 28918 Face 39834 11595 22135 19919 Face 39835 41491 19920 15750 Face 39836 32375 6934 19920 Face 39837 256 19921 35822 Face 39838 22944 29774 19921 Face 39839 1316 42071 9890 Face 39840 1316 22457 42071 Face 39841 19924 19923 32284 Face 39842 4306 24785 19923 Face 39843 4306 19924 17389 Face 39844 4306 19923 19924 Face 39845 443 19925 8163 Face 39846 23056 1606 44528 Face 39847 49685 19926 1705 Face 39848 26973 33009 19926 Face 39849 7092 19927 9310 Face 39850 7092 3776 19927 Face 39851 3256 19928 26719 Face 39852 3256 21395 32918 Face 39853 12587 19929 12586 Face 39854 12587 23589 19929 Face 39855 39726 19930 31666 Face 39856 3614 25732 43176 Face 39857 49865 19931 12374 Face 39858 35233 12389 19931 Face 39859 4278 47726 40930 Face 39860 45232 31786 19932 Face 39861 6160 19933 49422 Face 39862 6160 43987 19933 Face 39863 7317 19934 17503 Face 39864 7317 18964 19934 Face 39865 16059 19935 8087 Face 39866 16059 30621 19935 Face 39867 30143 19936 49266 Face 39868 31850 30704 19936 Face 39869 10091 29086 5774 Face 39870 10091 20884 29086 Face 39871 1781 19938 29809 Face 39872 1781 11563 19938 Face 39873 6075 19939 37984 Face 39874 6075 11990 19939 Face 39875 38472 19940 41781 Face 39876 38472 24214 19940 Face 39877 27611 19941 16220 Face 39878 2769 40433 19941 Face 39879 22094 19942 44439 Face 39880 27465 19156 19942 Face 39881 21400 41974 30784 Face 39882 49188 17585 19943 Face 39883 2012 19944 36934 Face 39884 2012 5712 19944 Face 39885 25485 19945 8821 Face 39886 2053 13522 19945 Face 39887 11781 19946 31696 Face 39888 11781 49604 19946 Face 39889 238 40231 36540 Face 39890 238 6668 40231 Face 39891 7565 29420 19171 Face 39892 45173 14978 19948 Face 39893 1430 19949 33129 Face 39894 1430 9752 19949 Face 39895 35457 19950 43938 Face 39896 5458 34156 19950 Face 39897 3097 19951 36289 Face 39898 3097 15928 48484 Face 39899 9963 19952 6636 Face 39900 9963 10461 19952 Face 39901 13503 42021 17974 Face 39902 13503 32520 42021 Face 39903 1020 19954 42711 Face 39904 1020 19731 19954 Face 39905 27950 31439 46099 Face 39906 27950 28974 31439 Face 39907 12014 19956 33120 Face 39908 12014 3377 19956 Face 39909 13493 19957 18822 Face 39910 13493 17018 19957 Face 39911 3411 19958 38513 Face 39912 3411 29859 19958 Face 39913 3811 19959 46709 Face 39914 3811 14767 19959 Face 39915 3987 19960 32366 Face 39916 3987 26926 19960 Face 39917 9413 38848 5034 Face 39918 9413 18434 38848 Face 39919 6803 19962 44290 Face 39920 6803 6036 19962 Face 39921 7932 19963 47119 Face 39922 7932 3763 19963 Face 39923 7027 19964 36141 Face 39924 7027 37938 19964 Face 39925 10924 19965 47785 Face 39926 37576 17922 19965 Face 39927 14875 19966 13724 Face 39928 46815 6386 19966 Face 39929 440 19967 18307 Face 39930 440 35976 19967 Face 39931 19969 19968 30186 Face 39932 27790 34130 19968 Face 39933 27790 19969 42210 Face 39934 27790 19968 19969 Face 39935 805 19970 37758 Face 39936 32149 9345 19970 Face 39937 2761 19971 44230 Face 39938 2761 28763 19971 Face 39939 21020 19972 38565 Face 39940 42952 3730 19972 Face 39941 27466 19973 14583 Face 39942 5675 40490 19973 Face 39943 1987 19974 40537 Face 39944 1987 23447 19974 Face 39945 2329 19975 4149 Face 39946 2329 23764 19975 Face 39947 31936 19976 15642 Face 39948 24130 9058 47049 Face 39949 48384 19977 48320 Face 39950 22214 22842 19977 Face 39951 40366 19978 9013 Face 39952 22214 19977 48384 Face 39953 47131 19979 2811 Face 39954 6960 13727 19979 Face 39955 585 19980 15964 Face 39956 585 10751 19980 Face 39957 6195 19981 33556 Face 39958 6195 43806 19981 Face 39959 49431 19982 4918 Face 39960 31966 37360 19982 Face 39961 42818 19983 24022 Face 39962 48772 19510 19983 Face 39963 4462 19984 30272 Face 39964 4462 12810 19984 Face 39965 19986 19985 7563 Face 39966 5754 9811 19985 Face 39967 5754 19986 18261 Face 39968 5754 19985 19986 Face 39969 5441 19987 9858 Face 39970 5441 13035 19987 Face 39971 46018 19988 21626 Face 39972 1133 15292 19988 Face 39973 35369 40185 2033 Face 39974 13777 2869 19989 Face 39975 5238 19990 6234 Face 39976 5238 42919 19990 Face 39977 20086 19991 355 Face 39978 22418 32117 19991 Face 39979 26585 19992 31510 Face 39980 37451 30302 19992 Face 39981 35644 19993 14742 Face 39982 26903 15341 26093 Face 39983 16660 19994 8129 Face 39984 16660 28369 19994 Face 39985 168 19995 5566 Face 39986 168 9499 19995 Face 39987 26637 19996 3909 Face 39988 1012 11648 19996 Face 39989 6661 19997 7031 Face 39990 6661 9358 19997 Face 39991 7330 19998 45231 Face 39992 7330 12144 19998 Face 39993 39222 19999 11305 Face 39994 9502 34388 19999 Face 39995 12894 20000 1856 Face 39996 12894 5976 20000 Face 39997 5681 20001 615 Face 39998 5681 3323 20001 Face 39999 14236 20002 48859 Face 40000 14236 26219 20002 Face 40001 23317 20003 21482 Face 40002 23317 7463 20003 Face 40003 44322 20004 31571 Face 40004 1607 2852 47370 Face 40005 40107 20005 26108 Face 40006 1607 20004 20005 Face 40007 1607 20006 17950 Face 40008 1607 20005 20006 Face 40009 35313 20007 38716 Face 40010 2393 37167 20007 Face 40011 383 20008 21376 Face 40012 383 10536 46873 Face 40013 13706 20009 16818 Face 40014 13706 33494 20009 Face 40015 817 20010 33114 Face 40016 817 23191 20010 Face 40017 31759 20011 19862 Face 40018 31759 15268 20011 Face 40019 5952 20012 25261 Face 40020 5952 10247 20012 Face 40021 2751 20013 49614 Face 40022 2751 10644 20013 Face 40023 2751 20014 49355 Face 40024 2751 6664 20014 Face 40025 25501 20015 33542 Face 40026 25502 11943 47851 Face 40027 22311 20016 45939 Face 40028 22311 10547 20016 Face 40029 48975 20017 45070 Face 40030 48975 17325 20017 Face 40031 1185 20018 34436 Face 40032 1185 21059 20018 Face 40033 9215 20019 25506 Face 40034 9215 475 20019 Face 40035 39914 20020 28074 Face 40036 9215 25506 20020 Face 40037 34549 20021 12576 Face 40038 311 28449 20021 Face 40039 11890 20022 2240 Face 40040 11890 12213 20022 Face 40041 41256 20023 4547 Face 40042 12229 2119 20023 Face 40043 6967 20024 7286 Face 40044 31772 12561 30260 Face 40045 36060 34038 15379 Face 40046 9092 46704 20025 Face 40047 44814 42641 22371 Face 40048 32021 18357 20026 Face 40049 13386 37594 5755 Face 40050 13386 16517 37594 Face 40051 4554 20028 7073 Face 40052 4554 16162 20028 Face 40053 4977 20029 34939 Face 40054 4977 3774 20029 Face 40055 3226 20030 36648 Face 40056 46125 9759 20030 Face 40057 6633 20031 16411 Face 40058 32226 33316 44966 Face 40059 8466 20032 40571 Face 40060 8466 13877 20032 Face 40061 29111 20033 19482 Face 40062 29111 21623 20033 Face 40063 45131 20034 6378 Face 40064 45131 14097 20034 Face 40065 199 20035 40240 Face 40066 199 13298 20035 Face 40067 2336 20036 11700 Face 40068 20749 36913 47834 Face 40069 1832 39957 22821 Face 40070 1832 17017 39957 Face 40071 5609 45657 17878 Face 40072 44534 20969 20038 Face 40073 11236 20039 24202 Face 40074 11236 27200 20039 Face 40075 32975 20040 8787 Face 40076 38196 47141 43208 Face 40077 38845 20041 23348 Face 40078 38844 8389 20041 Face 40079 13019 20042 25579 Face 40080 13019 6003 20042 Face 40081 47999 37581 499 Face 40082 8939 19142 20043 Face 40083 6862 20044 26121 Face 40084 35558 30001 20044 Face 40085 10785 20045 10786 Face 40086 10785 22554 20045 Face 40087 12075 20046 48487 Face 40088 12075 25931 20046 Face 40089 6203 20047 33705 Face 40090 6203 15189 40701 Face 40091 14974 20048 36978 Face 40092 14974 37283 20048 Face 40093 34487 20049 15552 Face 40094 290 11547 20049 Face 40095 13151 20050 36383 Face 40096 24166 10011 20050 Face 40097 14243 45702 37556 Face 40098 14243 3408 38053 Face 40099 37513 20052 49053 Face 40100 41637 6896 20052 Face 40101 45 43732 39526 Face 40102 45 13697 43732 Face 40103 10332 20054 38159 Face 40104 10332 10333 20054 Face 40105 2316 20055 46773 Face 40106 42581 27723 20055 Face 40107 5578 20056 49440 Face 40108 5578 2783 40382 Face 40109 37470 48478 14729 Face 40110 21414 33740 20057 Face 40111 9755 20058 21039 Face 40112 9755 38031 20058 Face 40113 6392 20059 29459 Face 40114 22669 14518 20059 Face 40115 1383 20060 6893 Face 40116 1383 43770 20060 Face 40117 20964 38398 8001 Face 40118 4680 23503 20061 Face 40119 20063 20062 22431 Face 40120 9155 12027 24204 Face 40121 9155 20063 13251 Face 40122 9155 20062 20063 Face 40123 8620 20064 11049 Face 40124 8620 28589 20064 Face 40125 13260 39178 25559 Face 40126 48374 33709 20065 Face 40127 11682 20066 9884 Face 40128 11682 18238 45639 Face 40129 5824 20067 36756 Face 40130 5824 28637 20067 Face 40131 33143 20068 37473 Face 40132 33143 12035 20068 Face 40133 708 20069 47699 Face 40134 708 31222 20069 Face 40135 4485 20070 33158 Face 40136 38097 32454 20070 Face 40137 1666 38893 48680 Face 40138 20072 31487 38893 Face 40139 1666 20072 38893 Face 40140 33757 48333 20072 Face 40141 10476 20073 31314 Face 40142 10476 43695 20073 Face 40143 29648 20074 37446 Face 40144 29648 15704 20074 Face 40145 558 20075 30670 Face 40146 558 28142 20075 Face 40147 44324 20076 33755 Face 40148 44324 31891 20076 Face 40149 1154 20077 22701 Face 40150 1154 40194 20077 Face 40151 7827 20078 47074 Face 40152 7827 46975 20078 Face 40153 10616 20079 9546 Face 40154 10616 17024 20079 Face 40155 14517 20080 6298 Face 40156 22431 32748 20080 Face 40157 2241 20081 27919 Face 40158 35542 5783 20081 Face 40159 5753 20082 13329 Face 40160 23129 43005 20083 Face 40161 20082 20083 17505 Face 40162 20082 5753 20083 Face 40163 47993 20084 337 Face 40164 7326 38572 20084 Face 40165 8052 20085 17194 Face 40166 32702 4822 20085 Face 40167 4118 20086 31496 Face 40168 22418 19991 20086 Face 40169 10223 20087 45124 Face 40170 10223 6154 36897 Face 40171 1447 20088 24354 Face 40172 32792 23965 20088 Face 40173 15646 20089 34882 Face 40174 15646 19558 20089 Face 40175 13248 20090 14988 Face 40176 13248 33088 20090 Face 40177 31395 49252 13174 Face 40178 7503 13527 20091 Face 40179 44778 20092 16217 Face 40180 7269 47747 20092 Face 40181 31293 20093 35880 Face 40182 31293 28819 20093 Face 40183 3690 20375 48255 Face 40184 3690 37258 20094 Face 40185 122 20095 28682 Face 40186 122 25809 20095 Face 40187 9353 48113 31797 Face 40188 41039 27796 20096 Face 40189 41997 20097 2930 Face 40190 41997 21537 20097 Face 40191 5034 20098 15017 Face 40192 5034 38848 20098 Face 40193 837 44742 16592 Face 40194 20100 8625 36930 Face 40195 29201 20100 36930 Face 40196 29201 13266 20100 Face 40197 837 20101 36930 Face 40198 837 34336 40593 Face 40199 32321 20102 35534 Face 40200 32321 18429 20102 Face 40201 45014 20103 13060 Face 40202 7112 7113 20103 Face 40203 5048 20104 18681 Face 40204 5048 28936 20104 Face 40205 6523 20105 3257 Face 40206 6523 46791 20105 Face 40207 1398 20106 20370 Face 40208 1398 12207 20106 Face 40209 4718 20107 25177 Face 40210 4718 14312 20107 Face 40211 1593 20108 42578 Face 40212 1593 46541 20108 Face 40213 39823 20109 17881 Face 40214 230 5608 20109 Face 40215 1241 20110 12692 Face 40216 1241 21006 20110 Face 40217 8703 20111 35144 Face 40218 8703 32824 20111 Face 40219 8647 20112 37339 Face 40220 8647 38898 20112 Face 40221 33587 20113 16991 Face 40222 13536 8279 20113 Face 40223 45148 20114 12923 Face 40224 10073 28525 20114 Face 40225 390 20115 22477 Face 40226 390 34227 20115 Face 40227 944 20116 16973 Face 40228 944 6835 20116 Face 40229 20418 39753 22498 Face 40230 20418 27767 39753 Face 40231 3673 20118 42907 Face 40232 3673 45925 20118 Face 40233 2951 20119 5483 Face 40234 2951 12963 38684 Face 40235 42576 24541 26135 Face 40236 415 25727 20120 Face 40237 415 20121 6155 Face 40238 415 24541 42576 Face 40239 45124 20122 10223 Face 40240 4968 10839 20122 Face 40241 38339 20123 19341 Face 40242 24769 6785 20123 Face 40243 35712 20124 35600 Face 40244 2859 18822 47667 Face 40245 7036 20125 13906 Face 40246 44083 20592 20125 Face 40247 7129 42075 15784 Face 40248 35241 44178 42075 Face 40249 2597 20127 10699 Face 40250 2597 26552 20127 Face 40251 20129 20128 5581 Face 40252 35502 18587 37087 Face 40253 36868 20129 5580 Face 40254 1395 20128 20129 Face 40255 43550 20130 17133 Face 40256 20131 618 20130 Face 40257 43550 20131 20130 Face 40258 2513 17632 20131 Face 40259 19772 26047 1958 Face 40260 19772 23944 26047 Face 40261 4895 20133 48261 Face 40262 4895 9247 20133 Face 40263 4763 20134 41229 Face 40264 4763 36872 20134 Face 40265 4781 20135 48893 Face 40266 40720 6068 20135 Face 40267 7065 20136 44187 Face 40268 7065 36021 20136 Face 40269 28429 20137 49694 Face 40270 6107 45990 20137 Face 40271 32974 20138 2678 Face 40272 26418 12799 20138 Face 40273 17066 30270 7351 Face 40274 17066 4663 20139 Face 40275 23245 20140 33175 Face 40276 46208 4695 20140 Face 40277 6792 43115 18001 Face 40278 28164 45302 20141 Face 40279 6632 20142 7590 Face 40280 6632 45122 20142 Face 40281 44301 31249 36936 Face 40282 23476 11742 20143 Face 40283 2796 29155 46258 Face 40284 2796 35363 20144 Face 40285 967 20145 18007 Face 40286 967 14124 28635 Face 40287 34458 20146 19723 Face 40288 29840 7469 20146 Face 40289 1726 20147 25493 Face 40290 1726 39497 20147 Face 40291 6308 20148 16078 Face 40292 6308 11758 20148 Face 40293 9649 20149 36176 Face 40294 9649 28677 20149 Face 40295 8474 20150 11195 Face 40296 21250 16585 20150 Face 40297 30299 45761 25011 Face 40298 6279 18336 20151 Face 40299 6099 20152 36272 Face 40300 6099 45166 20152 Face 40301 28227 20153 26276 Face 40302 3487 13424 20153 Face 40303 30767 20154 36352 Face 40304 4532 10309 20154 Face 40305 2601 20155 8754 Face 40306 45405 18156 20155 Face 40307 10244 20156 19346 Face 40308 10244 1411 20156 Face 40309 3064 20157 48662 Face 40310 3064 7023 20157 Face 40311 48388 20158 33744 Face 40312 8949 2209 20158 Face 40313 2538 43023 15807 Face 40314 2538 6725 20159 Face 40315 24959 20160 253 Face 40316 8004 35808 20160 Face 40317 6454 42599 21071 Face 40318 6454 28573 42598 Face 40319 10761 20162 34535 Face 40320 10761 18408 20162 Face 40321 1140 20163 38643 Face 40322 1140 30166 20163 Face 40323 20165 20164 29557 Face 40324 20165 15864 20164 Face 40325 10 20165 14798 Face 40326 10 15864 20165 Face 40327 5023 20166 49185 Face 40328 44274 524 37332 Face 40329 40928 48324 35807 Face 40330 33615 9027 20167 Face 40331 27067 20168 13593 Face 40332 20167 9027 20168 Face 40333 2978 20169 49486 Face 40334 29591 7668 48251 Face 40335 4487 20170 19719 Face 40336 4487 21350 20170 Face 40337 40769 20171 9188 Face 40338 44206 5342 20171 Face 40339 41752 20172 29985 Face 40340 11973 49244 20172 Face 40341 5481 20173 45967 Face 40342 5481 11359 20173 Face 40343 3142 20174 13161 Face 40344 3142 29121 20174 Face 40345 24866 20175 44044 Face 40346 4047 17859 20175 Face 40347 7203 20176 40311 Face 40348 35037 47984 20176 Face 40349 7228 20177 27175 Face 40350 7228 49827 20177 Face 40351 5085 20178 42411 Face 40352 5085 17068 43314 Face 40353 12398 20179 26111 Face 40354 12398 45063 20179 Face 40355 4352 20180 14263 Face 40356 4352 19418 20180 Face 40357 4352 20181 1933 Face 40358 4352 13031 20181 Face 40359 44090 20182 6922 Face 40360 9139 12023 20182 Face 40361 462 47534 9676 Face 40362 462 40198 47534 Face 40363 4966 20184 27637 Face 40364 4966 19244 20184 Face 40365 11268 20185 58 Face 40366 41737 7011 20185 Face 40367 28954 20186 10297 Face 40368 3554 11435 20186 Face 40369 36046 20187 13324 Face 40370 20666 11697 20187 Face 40371 11786 20188 8521 Face 40372 11786 15653 20188 Face 40373 21598 20189 33530 Face 40374 25976 30034 20189 Face 40375 11058 20190 22892 Face 40376 11058 46578 20190 Face 40377 11088 20191 34288 Face 40378 11088 34405 20191 Face 40379 868 20192 11773 Face 40380 868 34202 20192 Face 40381 15733 42678 143 Face 40382 15733 24123 42678 Face 40383 20195 20194 6714 Face 40384 32913 38755 20194 Face 40385 1787 34878 45745 Face 40386 32913 20194 20195 Face 40387 7760 20196 5751 Face 40388 7760 22618 20196 Face 40389 3090 20197 27864 Face 40390 3090 19048 20197 Face 40391 37913 20198 35176 Face 40392 13562 18962 20198 Face 40393 1729 20199 15929 Face 40394 1729 6138 20199 Face 40395 8729 36626 30500 Face 40396 8729 1158 20200 Face 40397 34466 20201 46022 Face 40398 41035 43234 20201 Face 40399 1147 34608 24989 Face 40400 1147 14995 20202 Face 40401 7725 20203 43421 Face 40402 7725 18497 20203 Face 40403 37002 29047 14639 Face 40404 1007 6062 20204 Face 40405 35463 20205 16223 Face 40406 1007 20204 37002 Face 40407 11990 41351 18904 Face 40408 11990 19322 20206 Face 40409 6094 31294 14293 Face 40410 48920 16349 49946 Face 40411 1258 20208 30592 Face 40412 46113 20860 20208 Face 40413 1258 20209 8461 Face 40414 1258 30592 20209 Face 40415 20209 20210 8461 Face 40416 20209 30592 20210 Face 40417 21460 20211 38851 Face 40418 21460 30935 20211 Face 40419 13618 20212 18445 Face 40420 13618 39216 29313 Face 40421 32383 48332 6400 Face 40422 4789 22237 20213 Face 40423 46757 20214 14232 Face 40424 4871 18454 20214 Face 40425 46167 32457 4782 Face 40426 20682 37158 32457 Face 40427 1988 20216 19888 Face 40428 1988 9366 20216 Face 40429 11409 20217 39385 Face 40430 11409 12636 20217 Face 40431 4339 20218 10977 Face 40432 41927 13994 20218 Face 40433 13036 20219 35736 Face 40434 30891 39943 20219 Face 40435 26148 20220 15470 Face 40436 5638 16064 20220 Face 40437 20222 20221 12516 Face 40438 3458 16983 20221 Face 40439 3458 20222 16984 Face 40440 3458 20221 20222 Face 40441 20680 20223 2326 Face 40442 896 13391 20223 Face 40443 6742 20224 32532 Face 40444 6742 3223 20224 Face 40445 43312 20225 25301 Face 40446 27690 12269 20225 Face 40447 5694 20226 43702 Face 40448 5694 22404 20226 Face 40449 16035 20227 39064 Face 40450 16035 22292 20227 Face 40451 10388 20228 315 Face 40452 10388 26616 20228 Face 40453 2123 20229 13322 Face 40454 2123 38499 20229 Face 40455 25357 20230 8093 Face 40456 35904 30396 20230 Face 40457 39614 35904 20230 Face 40458 3134 28869 20231 Face 40459 8143 20232 23218 Face 40460 8143 5222 20232 Face 40461 8143 20233 5222 Face 40462 20234 31915 20233 Face 40463 8143 20234 20233 Face 40464 8143 26997 20234 Face 40465 3782 20235 34794 Face 40466 3782 45955 20235 Face 40467 1523 20236 38388 Face 40468 1523 10506 20236 Face 40469 46907 20237 31016 Face 40470 5802 43269 20237 Face 40471 49733 20238 6063 Face 40472 49733 260 20238 Face 40473 14676 20239 7918 Face 40474 38846 14881 27222 Face 40475 14676 38846 27222 Face 40476 39366 14677 46622 Face 40477 3935 42618 7072 Face 40478 35207 22835 27894 Face 40479 40363 20242 23733 Face 40480 25126 41779 34293 Face 40481 1189 20243 17633 Face 40482 36340 7340 20243 Face 40483 1358 30101 23002 Face 40484 1358 33918 20244 Face 40485 20246 48151 25337 Face 40486 26256 35227 20245 Face 40487 15053 20246 28973 Face 40488 26256 48151 20246 Face 40489 2572 20247 30342 Face 40490 48575 31822 20247 Face 40491 14645 20248 37391 Face 40492 14645 43911 20248 Face 40493 3671 20249 5654 Face 40494 3671 21092 20249 Face 40495 34853 20250 4927 Face 40496 5572 1745 20250 Face 40497 27575 20251 48901 Face 40498 3196 42261 20251 Face 40499 38378 20252 10033 Face 40500 9876 5228 20252 Face 40501 9735 20253 9736 Face 40502 9735 1615 20253 Face 40503 10899 42464 1173 Face 40504 10899 32978 20254 Face 40505 14088 20255 4660 Face 40506 14088 45980 20255 Face 40507 22258 20256 38793 Face 40508 36247 17982 34524 Face 40509 39213 20257 8036 Face 40510 39213 10346 20257 Face 40511 37075 20258 33851 Face 40512 37075 49157 20258 Face 40513 37668 20259 18728 Face 40514 12384 44714 20259 Face 40515 3074 20260 31515 Face 40516 48643 41237 20260 Face 40517 26435 20261 25126 Face 40518 26435 41686 20261 Face 40519 21980 20262 31059 Face 40520 2273 8471 20262 Face 40521 3404 20263 23278 Face 40522 3404 10666 20263 Face 40523 32435 40172 41565 Face 40524 1805 5163 20264 Face 40525 34233 20265 14317 Face 40526 8958 48419 20265 Face 40527 4528 20266 24618 Face 40528 4528 14336 20266 Face 40529 9405 20267 17653 Face 40530 36381 2912 20267 Face 40531 20269 20268 31878 Face 40532 37413 18363 20268 Face 40533 4498 20269 9294 Face 40534 4498 20268 20269 Face 40535 4858 20270 6606 Face 40536 36834 5221 20270 Face 40537 14363 20271 48913 Face 40538 14363 4183 20271 Face 40539 760 20272 26058 Face 40540 760 19546 20272 Face 40541 12490 20273 15904 Face 40542 42276 29739 20273 Face 40543 11214 20274 49608 Face 40544 11214 37634 20274 Face 40545 41248 20275 34205 Face 40546 41248 22970 20275 Face 40547 1807 20276 10290 Face 40548 1807 15128 20276 Face 40549 3534 20277 7366 Face 40550 28150 12160 27382 Face 40551 2351 20278 38470 Face 40552 2351 15781 20278 Face 40553 14147 20279 30888 Face 40554 14147 49668 20279 Face 40555 211 20280 18193 Face 40556 38268 9181 20280 Face 40557 12748 43983 15812 Face 40558 12748 8679 20281 Face 40559 40489 20282 49799 Face 40560 40489 19910 20282 Face 40561 1977 33852 19521 Face 40562 1977 40547 31671 Face 40563 41556 20284 31821 Face 40564 3349 25214 20284 Face 40565 29594 20285 16190 Face 40566 31616 41476 20285 Face 40567 623 20286 13186 Face 40568 623 8153 20286 Face 40569 3042 20287 23148 Face 40570 3042 14133 20287 Face 40571 36522 20288 48270 Face 40572 36520 37721 20288 Face 40573 3247 20289 9463 Face 40574 3247 43213 20289 Face 40575 18407 20290 4481 Face 40576 18407 1308 20290 Face 40577 34859 20291 807 Face 40578 17315 39448 20291 Face 40579 774 20292 40618 Face 40580 28933 31105 20292 Face 40581 39890 20293 18312 Face 40582 26242 8860 20293 Face 40583 3345 20294 30780 Face 40584 3345 25617 20294 Face 40585 11973 20295 11313 Face 40586 41752 16162 20295 Face 40587 8065 20296 21875 Face 40588 8065 188 20296 Face 40589 4387 20297 29851 Face 40590 20298 8284 20297 Face 40591 4387 20298 20297 Face 40592 4387 36990 20298 Face 40593 20300 20299 38200 Face 40594 2728 27127 20299 Face 40595 2728 33267 43358 Face 40596 2728 20299 33267 Face 40597 431 20301 27541 Face 40598 431 10379 20301 Face 40599 744 20302 11450 Face 40600 744 42931 20302 Face 40601 5283 20303 37497 Face 40602 35413 4800 20303 Face 40603 7581 20304 1731 Face 40604 7581 12658 20304 Face 40605 10465 20305 30822 Face 40606 10465 35982 20305 Face 40607 368 20306 10649 Face 40608 33606 3932 20306 Face 40609 33200 20307 8117 Face 40610 48425 26378 20307 Face 40611 10399 20308 19541 Face 40612 10399 46272 33117 Face 40613 30605 20309 8907 Face 40614 26660 37304 42825 Face 40615 32171 20310 25082 Face 40616 31604 18621 47083 Face 40617 5383 20311 13942 Face 40618 5383 10354 20311 Face 40619 2596 22847 40356 Face 40620 2596 9085 22847 Face 40621 5420 20313 15655 Face 40622 36244 5421 40087 Face 40623 5147 20314 17318 Face 40624 30087 8252 20314 Face 40625 23888 20315 8113 Face 40626 36614 8222 48100 Face 40627 20317 43626 12467 Face 40628 34351 4056 43302 Face 40629 21535 20317 41791 Face 40630 3500 20316 20317 Face 40631 2284 24495 39029 Face 40632 2284 24983 20318 Face 40633 24495 29419 18027 Face 40634 47682 8280 20319 Face 40635 1060 45824 36770 Face 40636 1060 14248 45824 Face 40637 5779 20321 5780 Face 40638 5779 35696 20321 Face 40639 8532 20322 40338 Face 40640 8532 10619 20322 Face 40641 8148 20323 31030 Face 40642 8148 17807 20323 Face 40643 3789 20324 44782 Face 40644 3789 21019 20324 Face 40645 9673 20325 24262 Face 40646 9673 35205 20325 Face 40647 4351 20326 35654 Face 40648 4351 10716 20326 Face 40649 38723 20327 44425 Face 40650 37598 28302 29271 Face 40651 27409 20328 34104 Face 40652 27409 38810 20328 Face 40653 5756 20329 15383 Face 40654 5756 43162 20329 Face 40655 48288 20330 19078 Face 40656 4165 9035 39383 Face 40657 4458 20331 4650 Face 40658 4458 49710 20331 Face 40659 38805 20332 48336 Face 40660 2588 39723 20332 Face 40661 3164 20333 37493 Face 40662 43694 30069 20333 Face 40663 9057 20334 6086 Face 40664 9057 47930 20334 Face 40665 42372 20335 9645 Face 40666 42372 21351 20335 Face 40667 2759 48443 13106 Face 40668 2759 34207 20336 Face 40669 7324 32907 22870 Face 40670 25163 3096 20337 Face 40671 9389 47438 23852 Face 40672 9389 12538 20338 Face 40673 20338 20339 9389 Face 40674 20338 18783 20339 Face 40675 61 20340 38844 Face 40676 61 12643 20340 Face 40677 3988 20341 14287 Face 40678 3988 12410 49006 Face 40679 4259 20342 35913 Face 40680 4259 10167 20342 Face 40681 11453 20343 32066 Face 40682 11453 29161 20343 Face 40683 30256 49880 26827 Face 40684 30255 16423 20344 Face 40685 4304 20345 42477 Face 40686 22440 36778 20345 Face 40687 42800 20346 27053 Face 40688 42800 12208 20346 Face 40689 40971 20347 7085 Face 40690 4286 24916 20347 Face 40691 9275 20348 44438 Face 40692 9275 35793 20348 Face 40693 3016 37520 16050 Face 40694 3016 3015 37520 Face 40695 9885 20350 26330 Face 40696 9885 24499 20350 Face 40697 25030 34474 5656 Face 40698 25031 33991 20351 Face 40699 34139 20352 25518 Face 40700 46181 49549 32231 Face 40701 11856 20353 12258 Face 40702 47334 12259 20353 Face 40703 8265 20354 12841 Face 40704 8265 9746 20354 Face 40705 4880 20355 49109 Face 40706 4880 21270 28495 Face 40707 7535 20356 24673 Face 40708 7535 12145 20356 Face 40709 31326 20357 7077 Face 40710 43052 1485 40631 Face 40711 47042 35120 3086 Face 40712 48707 9710 20358 Face 40713 15929 20359 1729 Face 40714 15929 28761 44836 Face 40715 521 20360 18148 Face 40716 521 25425 20360 Face 40717 15166 20361 19330 Face 40718 15166 36895 20361 Face 40719 18756 20362 1098 Face 40720 42863 17725 20362 Face 40721 11425 20363 12657 Face 40722 11425 41495 20363 Face 40723 6314 32271 46511 Face 40724 6314 29096 32271 Face 40725 11272 20365 24987 Face 40726 11272 27333 20365 Face 40727 11465 20366 41904 Face 40728 11465 10860 20366 Face 40729 6635 33446 44966 Face 40730 6635 42864 20367 Face 40731 15754 20368 30163 Face 40732 15754 702 20368 Face 40733 4964 20369 18501 Face 40734 4964 15253 20369 Face 40735 22505 20370 45542 Face 40736 3509 25837 20370 Face 40737 5278 20371 28780 Face 40738 5278 49929 20371 Face 40739 49459 48585 13066 Face 40740 5846 16529 20372 Face 40741 5846 20373 44639 Face 40742 5846 48585 20373 Face 40743 7044 20374 49726 Face 40744 7044 34372 20374 Face 40745 20094 20375 3690 Face 40746 20094 7406 20375 Face 40747 2197 20376 26640 Face 40748 20377 27280 30056 Face 40749 2197 20377 30056 Face 40750 49900 26342 36577 Face 40751 13657 20378 17666 Face 40752 13657 16246 20378 Face 40753 6617 20379 35993 Face 40754 6617 12324 20379 Face 40755 8250 20380 29415 Face 40756 8250 5020 20380 Face 40757 38146 20381 25776 Face 40758 15787 32807 20381 Face 40759 4051 20382 16834 Face 40760 4051 22876 20382 Face 40761 7563 20383 17219 Face 40762 7563 6163 20383 Face 40763 20385 20384 44102 Face 40764 20385 12887 20384 Face 40765 31314 20385 10476 Face 40766 23304 12887 20385 Face 40767 7934 20386 46086 Face 40768 7934 4015 20386 Face 40769 37476 38611 14184 Face 40770 38123 3696 20387 Face 40771 43663 20388 13584 Face 40772 36940 27253 20389 Face 40773 20388 20389 13584 Face 40774 20388 36940 20389 Face 40775 31702 20390 35018 Face 40776 7081 6309 20390 Face 40777 11459 20391 28416 Face 40778 11459 39838 20391 Face 40779 28745 20392 23605 Face 40780 7342 31229 20392 Face 40781 5016 20393 34564 Face 40782 26115 33308 20393 Face 40783 44532 20394 16826 Face 40784 14962 44665 20394 Face 40785 3330 20395 200 Face 40786 31425 1325 40789 Face 40787 31425 20396 7718 Face 40788 3330 200 20396 Face 40789 9410 20397 28944 Face 40790 9410 24441 20397 Face 40791 45963 20398 7128 Face 40792 45963 46965 20398 Face 40793 4320 20399 47389 Face 40794 4320 13227 20399 Face 40795 43486 20400 26764 Face 40796 43486 34190 20400 Face 40797 49789 20401 4407 Face 40798 36510 42070 38030 Face 40799 30035 20402 10683 Face 40800 30035 13495 44620 Face 40801 13129 20403 31954 Face 40802 37523 18193 20403 Face 40803 26976 20404 29321 Face 40804 26976 30712 20404 Face 40805 14845 20405 46714 Face 40806 14845 44154 20405 Face 40807 6870 20406 28888 Face 40808 6870 22682 20406 Face 40809 8991 20407 351 Face 40810 8991 46696 20407 Face 40811 3518 20408 12741 Face 40812 3518 19495 20408 Face 40813 43941 20409 23425 Face 40814 14890 41293 20409 Face 40815 44059 20410 8278 Face 40816 11504 3061 20410 Face 40817 40365 20411 10540 Face 40818 21052 3899 20411 Face 40819 30865 20412 16253 Face 40820 9008 19437 20412 Face 40821 49698 20413 9355 Face 40822 20414 36233 20413 Face 40823 49698 20414 20413 Face 40824 706 30696 20414 Face 40825 11309 20415 11768 Face 40826 25416 15802 20415 Face 40827 41434 20416 7404 Face 40828 3462 45283 31634 Face 40829 43633 20417 280 Face 40830 45957 9342 36884 Face 40831 4527 20418 16925 Face 40832 4527 27767 20418 Face 40833 190 20419 4030 Face 40834 190 19385 20419 Face 40835 46209 20420 15744 Face 40836 2703 9206 20420 Face 40837 1068 20421 48183 Face 40838 1068 10545 20421 Face 40839 38078 20422 34309 Face 40840 38078 22973 20422 Face 40841 8748 20423 10414 Face 40842 8748 39966 20423 Face 40843 589 20424 7465 Face 40844 39387 46859 20424 Face 40845 30489 20425 20426 Face 40846 5729 1002 46596 Face 40847 9576 20426 20425 Face 40848 9576 30489 20426 Face 40849 34186 20427 14821 Face 40850 11184 14822 20427 Face 40851 8182 20428 7551 Face 40852 8182 41222 20428 Face 40853 44241 49418 22793 Face 40854 2475 34889 20429 Face 40855 3575 20430 25036 Face 40856 3575 23038 20430 Face 40857 1440 20431 15446 Face 40858 29898 41527 20431 Face 40859 3672 20432 34691 Face 40860 3672 17399 20432 Face 40861 115 20433 31536 Face 40862 30168 13619 20433 Face 40863 12579 20434 25548 Face 40864 12579 30773 20434 Face 40865 7172 20435 42884 Face 40866 7172 23447 20435 Face 40867 8294 20436 26400 Face 40868 8294 12172 20436 Face 40869 13378 20437 23894 Face 40870 33139 14939 20437 Face 40871 41337 27729 22069 Face 40872 25374 1903 20438 Face 40873 1046 20439 18004 Face 40874 37481 27696 20439 Face 40875 32529 20440 11338 Face 40876 10011 16290 24316 Face 40877 6414 20441 5029 Face 40878 6414 18104 20441 Face 40879 312 48040 25249 Face 40880 20468 3963 20442 Face 40881 6330 20443 40560 Face 40882 6330 37087 20443 Face 40883 3985 20444 7977 Face 40884 3985 30237 20444 Face 40885 32858 49274 10410 Face 40886 6450 43507 20445 Face 40887 9385 20446 9386 Face 40888 9385 35680 20446 Face 40889 13393 20447 34806 Face 40890 13393 27237 20447 Face 40891 9914 20448 26459 Face 40892 9914 32953 20448 Face 40893 12039 20449 23939 Face 40894 12039 15676 20449 Face 40895 40592 20450 9105 Face 40896 3971 17196 20450 Face 40897 20452 48495 34591 Face 40898 20452 47690 48495 Face 40899 1068 20452 19767 Face 40900 1068 39114 20452 Face 40901 5120 20453 46543 Face 40902 32259 10897 43560 Face 40903 6772 20454 152 Face 40904 39788 8476 20454 Face 40905 2855 20455 15402 Face 40906 2855 9867 20455 Face 40907 2855 20456 48555 Face 40908 2855 15402 20456 Face 40909 20458 42286 5776 Face 40910 44883 20232 22307 Face 40911 4181 20458 32010 Face 40912 4181 42286 20458 Face 40913 39733 44883 32369 Face 40914 25593 16034 49705 Face 40915 34656 47705 15651 Face 40916 34755 16034 38215 Face 40917 34656 20461 20460 Face 40918 20459 16034 34755 Face 40919 44883 20462 20232 Face 40920 20459 20461 20462 Face 40921 39597 33546 408 Face 40922 6060 43422 20463 Face 40923 2648 20464 31838 Face 40924 27387 11226 20464 Face 40925 40979 47734 8860 Face 40926 6273 19028 20465 Face 40927 17404 20466 40716 Face 40928 17404 3102 49597 Face 40929 1243 20467 30354 Face 40930 1243 11776 20467 Face 40931 312 20468 20442 Face 40932 312 19118 20468 Face 40933 36145 20469 2218 Face 40934 24141 26214 30227 Face 40935 36936 20470 14705 Face 40936 3596 17844 20470 Face 40937 195 20471 1718 Face 40938 20472 23059 20471 Face 40939 195 20472 20471 Face 40940 195 48116 20472 Face 40941 8226 20473 29625 Face 40942 8226 2145 20473 Face 40943 8835 20474 2769 Face 40944 8835 33351 20474 Face 40945 8467 20475 17123 Face 40946 41762 38090 20475 Face 40947 40599 20476 934 Face 40948 27693 19860 20476 Face 40949 34424 20477 21380 Face 40950 3101 10750 20477 Face 40951 4305 40904 35944 Face 40952 4305 25947 49066 Face 40953 20478 33365 23807 Face 40954 20478 18448 33365 Face 40955 12180 20480 5901 Face 40956 12180 17811 20480 Face 40957 36379 20481 14853 Face 40958 3764 31611 20481 Face 40959 3106 20482 46610 Face 40960 3106 12132 20482 Face 40961 24361 20483 34394 Face 40962 24361 32401 20483 Face 40963 5864 20484 46159 Face 40964 5864 2334 20484 Face 40965 35800 20485 11366 Face 40966 35800 12842 20485 Face 40967 4 20486 6070 Face 40968 4 35368 20486 Face 40969 2674 20487 16892 Face 40970 2674 37272 20487 Face 40971 6786 36873 49571 Face 40972 41543 3172 20488 Face 40973 5653 38718 10614 Face 40974 5653 23177 23756 Face 40975 10906 20490 36586 Face 40976 10906 37357 20490 Face 40977 44418 20491 25309 Face 40978 43315 24667 20491 Face 40979 2092 43275 16742 Face 40980 2092 7519 20492 Face 40981 43275 41016 4678 Face 40982 20492 8848 20493 Face 40983 48047 30537 16355 Face 40984 9449 48093 43765 Face 40985 9449 20495 14207 Face 40986 39445 16355 20495 Face 40987 20495 20496 45022 Face 40988 20495 7115 20496 Face 40989 11910 20497 20163 Face 40990 11910 3960 20497 Face 40991 10291 20498 29002 Face 40992 10291 7156 20498 Face 40993 247 20499 33059 Face 40994 247 21603 20499 Face 40995 8441 20500 24025 Face 40996 39982 12310 20500 Face 40997 47623 42019 6243 Face 40998 40392 26772 45602 Face 40999 46560 20502 32883 Face 41000 2762 6136 20502 Face 41001 7098 20503 26463 Face 41002 7098 12809 20503 Face 41003 29587 48945 16909 Face 41004 22595 7257 48945 Face 41005 11394 20505 44907 Face 41006 11394 15378 20505 Face 41007 2628 20506 46256 Face 41008 2628 49956 20506 Face 41009 33133 20507 15890 Face 41010 33132 15150 20507 Face 41011 3044 20508 44854 Face 41012 3044 30845 20508 Face 41013 25809 41699 20095 Face 41014 12509 12642 36603 Face 41015 8503 20510 33805 Face 41016 46758 39866 20510 Face 41017 43265 20511 16673 Face 41018 25500 15348 20511 Face 41019 2626 20512 1463 Face 41020 28572 40061 20512 Face 41021 33832 20513 43696 Face 41022 28111 41302 20513 Face 41023 3825 20514 18286 Face 41024 33832 35149 29006 Face 41025 2453 20515 32522 Face 41026 39941 48423 20515 Face 41027 4059 20516 27124 Face 41028 46582 14787 20516 Face 41029 10178 20517 18722 Face 41030 10178 48086 20517 Face 41031 43528 20518 31657 Face 41032 15154 41359 20518 Face 41033 6516 20519 13433 Face 41034 45622 33946 20519 Face 41035 13713 20520 3964 Face 41036 13713 12733 20520 Face 41037 19000 20521 18999 Face 41038 19000 18713 20521 Face 41039 20523 20522 47270 Face 41040 30474 20631 48545 Face 41041 5356 20523 27434 Face 41042 30474 20522 20523 Face 41043 20525 20524 1183 Face 41044 44569 36501 32949 Face 41045 8019 20525 35773 Face 41046 8019 494 44569 Face 41047 34069 20526 44316 Face 41048 3965 35799 20526 Face 41049 6441 20527 34890 Face 41050 6441 31734 20527 Face 41051 43903 20528 7070 Face 41052 41360 23863 20528 Face 41053 22632 20529 7604 Face 41054 22632 49776 20529 Face 41055 5697 20530 16107 Face 41056 5697 30150 20530 Face 41057 1942 20531 31801 Face 41058 43103 12834 20531 Face 41059 12439 20532 40252 Face 41060 12439 26514 20532 Face 41061 47842 20533 36024 Face 41062 36720 366 20533 Face 41063 6761 20534 8216 Face 41064 6761 8356 20534 Face 41065 20786 42809 20801 Face 41066 10281 11446 20535 Face 41067 7231 20536 36769 Face 41068 7231 31014 20536 Face 41069 13356 20537 7417 Face 41070 41628 27758 20537 Face 41071 8081 20538 3343 Face 41072 8081 10358 20538 Face 41073 35335 20539 14997 Face 41074 23399 47349 20539 Face 41075 30647 20540 33835 Face 41076 4431 14196 20540 Face 41077 42210 20541 4477 Face 41078 4431 20540 20541 Face 41079 7965 20542 16210 Face 41080 40783 45520 49079 Face 41081 3702 38452 19329 Face 41082 3702 8432 20543 Face 41083 3702 20544 32397 Face 41084 3702 19329 20544 Face 41085 1619 20545 33305 Face 41086 1619 12770 20545 Face 41087 44640 20546 22804 Face 41088 44640 25896 20546 Face 41089 43194 20547 27288 Face 41090 43194 11246 41231 Face 41091 26969 20548 2731 Face 41092 10334 48583 20548 Face 41093 3439 40960 18930 Face 41094 3439 48714 20549 Face 41095 3433 20550 17975 Face 41096 32714 28994 33767 Face 41097 141 20551 2383 Face 41098 141 31797 20551 Face 41099 26661 20552 31691 Face 41100 3823 20309 20552 Face 41101 45524 20553 21088 Face 41102 24641 36017 44041 Face 41103 20555 20554 38761 Face 41104 10204 10205 20554 Face 41105 10204 20555 11503 Face 41106 10204 20554 20555 Face 41107 20557 20556 17854 Face 41108 41542 18924 20556 Face 41109 41542 20557 25965 Face 41110 41542 20556 20557 Face 41111 5363 20558 23182 Face 41112 5363 15751 37206 Face 41113 34229 36667 19277 Face 41114 5363 43012 20559 Face 41115 3327 20560 43008 Face 41116 3327 7110 20560 Face 41117 17239 29127 38847 Face 41118 17239 17240 29127 Face 41119 6905 28382 12178 Face 41120 6905 32290 20562 Face 41121 3018 20563 28889 Face 41122 26043 11330 42689 Face 41123 34522 20564 23631 Face 41124 1578 48295 20564 Face 41125 28295 20565 18184 Face 41126 28295 36363 20565 Face 41127 43782 20566 11560 Face 41128 1214 30279 20566 Face 41129 605 20567 22184 Face 41130 34328 40067 45270 Face 41131 23658 20568 37297 Face 41132 34727 32699 20568 Face 41133 741 37897 16109 Face 41134 20570 13524 37897 Face 41135 741 20570 37897 Face 41136 741 13971 20570 Face 41137 17192 20571 36947 Face 41138 36616 11689 20571 Face 41139 20573 45550 42356 Face 41140 3667 23280 20572 Face 41141 3667 20573 19440 Face 41142 3667 20572 20573 Face 41143 11493 37769 48298 Face 41144 11493 16531 36229 Face 41145 27117 20575 18412 Face 41146 21412 26540 20575 Face 41147 44172 20576 11781 Face 41148 8195 35923 20576 Face 41149 29743 20577 2272 Face 41150 38311 41879 20577 Face 41151 28209 20578 22718 Face 41152 36151 11785 20578 Face 41153 36151 49925 36159 Face 41154 36151 38108 20579 Face 41155 30271 20580 5522 Face 41156 5523 16636 20580 Face 41157 6265 20581 30914 Face 41158 6265 11782 20581 Face 41159 33929 20582 36498 Face 41160 33929 27095 20582 Face 41161 2662 20583 46252 Face 41162 2662 10475 20583 Face 41163 5786 20584 18321 Face 41164 5786 42679 43962 Face 41165 9299 20585 3049 Face 41166 44039 13131 32371 Face 41167 44963 20586 14803 Face 41168 16992 38366 20586 Face 41169 29637 37364 13116 Face 41170 3574 12817 20587 Face 41171 39356 20588 680 Face 41172 37235 16967 20588 Face 41173 2364 20589 46520 Face 41174 2364 20588 20589 Face 41175 864 20590 8494 Face 41176 29964 12222 29462 Face 41177 32826 20591 18314 Face 41178 44946 16641 20591 Face 41179 28226 20592 44083 Face 41180 23012 37175 20592 Face 41181 6877 20593 49042 Face 41182 6877 13711 20593 Face 41183 7739 20594 15385 Face 41184 7739 45450 46669 Face 41185 32215 20595 24060 Face 41186 5986 19908 20595 Face 41187 30154 20596 5176 Face 41188 4499 35032 20596 Face 41189 20598 37662 19007 Face 41190 34376 7246 20597 Face 41191 36091 20598 8705 Face 41192 6745 20597 20598 Face 41193 34506 20599 21588 Face 41194 1801 41468 20599 Face 41195 8432 20600 37131 Face 41196 8432 32397 20600 Face 41197 1562 20601 38928 Face 41198 20602 32078 20601 Face 41199 1562 20602 20601 Face 41200 1562 25921 39443 Face 41201 33050 45050 25053 Face 41202 33050 6638 20603 Face 41203 13913 20604 42730 Face 41204 13913 44032 20604 Face 41205 49508 20605 25103 Face 41206 15679 5708 20605 Face 41207 34762 20606 8414 Face 41208 3127 16714 20606 Face 41209 10505 20607 24965 Face 41210 10505 13721 20607 Face 41211 49270 20608 8900 Face 41212 21153 7706 20608 Face 41213 539 20609 14165 Face 41214 539 22028 49065 Face 41215 7935 48339 10556 Face 41216 31070 20237 20610 Face 41217 30711 20611 46290 Face 41218 39355 29997 20611 Face 41219 5157 20612 35914 Face 41220 5157 18589 20612 Face 41221 4308 20613 48587 Face 41222 33602 18116 20613 Face 41223 1149 20614 11302 Face 41224 1149 27179 20614 Face 41225 1491 20615 8957 Face 41226 1491 18227 41583 Face 41227 6726 34356 41462 Face 41228 29747 5663 34356 Face 41229 5711 20617 19595 Face 41230 41734 29932 20617 Face 41231 40273 20618 18423 Face 41232 29119 26421 20618 Face 41233 34023 20619 20121 Face 41234 9772 23346 20619 Face 41235 28291 20620 17795 Face 41236 22013 11632 20620 Face 41237 12702 20621 23547 Face 41238 12702 35103 20621 Face 41239 16641 20622 8780 Face 41240 16641 34736 20622 Face 41241 14596 20623 23004 Face 41242 48571 26590 20623 Face 41243 1759 20624 4509 Face 41244 1759 34513 20624 Face 41245 38194 46493 10529 Face 41246 2319 15486 20625 Face 41247 2578 20626 24031 Face 41248 2578 27970 20626 Face 41249 2027 20627 11931 Face 41250 32372 27965 20627 Face 41251 8910 20628 40362 Face 41252 8910 9957 20628 Face 41253 43283 20629 28113 Face 41254 43283 16734 20629 Face 41255 21050 20630 342 Face 41256 28740 15162 20630 Face 41257 36550 20631 14698 Face 41258 36550 48545 20631 Face 41259 28892 20632 39180 Face 41260 12113 7 20632 Face 41261 3336 20633 37169 Face 41262 3336 7830 20633 Face 41263 30179 20634 4742 Face 41264 30179 10330 20634 Face 41265 33814 20635 3603 Face 41266 20636 19296 20635 Face 41267 9213 33814 31215 Face 41268 9213 7975 20636 Face 41269 5071 20637 2295 Face 41270 5071 10740 20637 Face 41271 7898 20638 30370 Face 41272 7898 289 20638 Face 41273 2774 20639 15500 Face 41274 2774 7861 20639 Face 41275 40634 20640 33824 Face 41276 40634 9141 20640 Face 41277 40634 42079 9141 Face 41278 5710 17984 20641 Face 41279 10082 20642 1515 Face 41280 45194 1173 20642 Face 41281 5540 20643 47551 Face 41282 5540 15655 20643 Face 41283 27525 20644 8755 Face 41284 6921 17447 20644 Face 41285 2964 20645 13836 Face 41286 20646 26170 33683 Face 41287 2964 20646 20645 Face 41288 2964 35442 20646 Face 41289 30430 20647 36694 Face 41290 2869 13777 20647 Face 41291 13941 20648 16389 Face 41292 13941 10353 20648 Face 41293 44980 20649 26163 Face 41294 46226 32055 20649 Face 41295 47429 20650 3077 Face 41296 23536 12897 40049 Face 41297 14042 46449 37007 Face 41298 14042 39918 46449 Face 41299 2952 20652 28114 Face 41300 2952 12295 20652 Face 41301 8636 37736 8637 Face 41302 8636 46458 20653 Face 41303 38269 20654 45099 Face 41304 2289 24420 20654 Face 41305 1390 20655 17000 Face 41306 1390 31392 45858 Face 41307 3890 20656 24362 Face 41308 3890 22064 20656 Face 41309 36220 20657 6848 Face 41310 36220 13650 20657 Face 41311 25387 20658 39796 Face 41312 32500 16383 28079 Face 41313 42704 20659 12519 Face 41314 4000 49498 20659 Face 41315 32315 42574 15579 Face 41316 22741 14951 20660 Face 41317 37006 20661 14254 Face 41318 37006 31583 20661 Face 41319 21268 20662 38558 Face 41320 1130 26289 20662 Face 41321 14612 20663 5429 Face 41322 14612 37708 20663 Face 41323 7591 20664 16466 Face 41324 36195 30440 43243 Face 41325 8938 20665 29445 Face 41326 8938 41259 20665 Face 41327 36046 20666 20187 Face 41328 3140 45036 20666 Face 41329 31408 20667 43721 Face 41330 94 11430 20667 Face 41331 13020 20668 25483 Face 41332 30239 35707 20668 Face 41333 3510 20669 10753 Face 41334 3510 32503 20669 Face 41335 14552 20670 1350 Face 41336 14552 31704 20670 Face 41337 7143 20671 34455 Face 41338 7143 29621 20671 Face 41339 34583 20672 14162 Face 41340 5449 33982 20672 Face 41341 4450 20673 29763 Face 41342 20674 31887 20673 Face 41343 4450 20674 20673 Face 41344 4450 41782 20674 Face 41345 47924 20675 12652 Face 41346 4475 39274 20675 Face 41347 31432 20676 44825 Face 41348 4744 26518 20676 Face 41349 4744 45409 4745 Face 41350 4744 20676 20677 Face 41351 10221 20678 23856 Face 41352 10221 17800 20678 Face 41353 13033 20679 26617 Face 41354 31141 15860 20679 Face 41355 896 20680 21962 Face 41356 896 20223 20680 Face 41357 5030 20681 12982 Face 41358 5030 18104 20681 Face 41359 46167 20682 32457 Face 41360 2520 26313 20682 Face 41361 2151 20683 26760 Face 41362 2151 40171 20683 Face 41363 11845 20684 16414 Face 41364 11845 3992 20684 Face 41365 4488 20685 33152 Face 41366 4488 13553 20685 Face 41367 27817 20686 44105 Face 41368 6283 18741 20686 Face 41369 14937 20687 8652 Face 41370 14937 37355 20687 Face 41371 20689 20688 17372 Face 41372 6500 360 20688 Face 41373 6500 20689 49982 Face 41374 6500 20688 20689 Face 41375 10905 20690 42764 Face 41376 38084 15956 43554 Face 41377 47091 20691 29735 Face 41378 39190 31043 20691 Face 41379 46932 39452 29852 Face 41380 46932 28487 20692 Face 41381 27193 20693 31828 Face 41382 27193 35933 20693 Face 41383 22161 20694 40225 Face 41384 2375 33913 20694 Face 41385 49357 20695 27645 Face 41386 20696 32777 35902 Face 41387 4310 49357 36898 Face 41388 4310 25330 20696 Face 41389 7191 20697 34050 Face 41390 7191 29018 20697 Face 41391 10572 39427 44109 Face 41392 10572 8049 20698 Face 41393 48158 20699 1129 Face 41394 10572 44108 20699 Face 41395 7244 20700 20701 Face 41396 7244 28121 20700 Face 41397 2756 20701 20700 Face 41398 43204 8166 20701 Face 41399 20703 35076 18529 Face 41400 42059 13026 20702 Face 41401 9573 20703 14819 Face 41402 42363 20702 20703 Face 41403 16890 45699 34036 Face 41404 16890 11863 20704 Face 41405 6497 46914 8408 Face 41406 6497 44950 20705 Face 41407 3029 20706 15560 Face 41408 3029 17042 20706 Face 41409 43440 20707 20802 Face 41410 43440 18537 20707 Face 41411 6268 20709 48119 Face 41412 33543 19093 20709 Face 41413 20708 20709 19093 Face 41414 20708 11978 20709 Face 41415 10587 20710 48058 Face 41416 10587 33875 20710 Face 41417 32594 20711 9204 Face 41418 11570 4992 20711 Face 41419 37134 20712 39521 Face 41420 608 34577 46163 Face 41421 11627 20713 25771 Face 41422 11627 35670 20713 Face 41423 6020 48783 7211 Face 41424 6020 22163 48783 Face 41425 13218 20715 35464 Face 41426 13218 30739 20715 Face 41427 32198 20716 43615 Face 41428 39265 444 20716 Face 41429 28875 20717 32061 Face 41430 28875 48089 20717 Face 41431 32935 20718 28146 Face 41432 32935 29223 20718 Face 41433 13196 20719 27568 Face 41434 13196 2100 20719 Face 41435 9704 20720 30002 Face 41436 9704 45317 20720 Face 41437 1534 20721 35605 Face 41438 36257 38646 20721 Face 41439 8830 20722 1429 Face 41440 8830 10112 20722 Face 41441 11059 20723 11060 Face 41442 20724 39673 20723 Face 41443 11059 20724 20723 Face 41444 11059 22687 20724 Face 41445 1108 20725 37522 Face 41446 1108 18161 20725 Face 41447 7183 20726 711 Face 41448 7183 41075 20726 Face 41449 49737 20727 19673 Face 41450 49737 33618 20727 Face 41451 8282 20728 41311 Face 41452 39070 10220 20728 Face 41453 6442 20729 12234 Face 41454 30676 14817 20729 Face 41455 46264 20730 26746 Face 41456 46264 10580 20730 Face 41457 39698 20731 10719 Face 41458 7616 33451 20731 Face 41459 3535 20732 1809 Face 41460 44179 12302 20732 Face 41461 1991 20733 44746 Face 41462 25294 40870 20733 Face 41463 15042 20734 35188 Face 41464 15042 16330 20734 Face 41465 3800 20735 23421 Face 41466 3800 36245 20735 Face 41467 2887 20736 45936 Face 41468 29366 21555 20736 Face 41469 6018 20737 27143 Face 41470 6018 29730 20737 Face 41471 7167 20738 7166 Face 41472 7167 12239 20738 Face 41473 3186 44640 22804 Face 41474 3186 17159 20739 Face 41475 11371 20740 3953 Face 41476 11371 8453 20740 Face 41477 5202 20741 18217 Face 41478 5202 34611 20741 Face 41479 615 20742 5681 Face 41480 615 22232 20742 Face 41481 2173 20743 23151 Face 41482 2173 22727 20743 Face 41483 878 20744 8400 Face 41484 39844 41345 20744 Face 41485 25066 46355 42212 Face 41486 31111 35828 20745 Face 41487 1199 20746 19325 Face 41488 1199 31745 20746 Face 41489 41339 20747 2207 Face 41490 41339 18980 20747 Face 41491 339 20748 17750 Face 41492 40071 28019 20748 Face 41493 2336 38444 20036 Face 41494 34616 29080 20749 Face 41495 41757 20750 14823 Face 41496 7606 24241 20750 Face 41497 28161 20751 7140 Face 41498 45762 24821 20751 Face 41499 27344 20752 9926 Face 41500 31482 16500 43904 Face 41501 42029 49649 1897 Face 41502 14520 27225 20753 Face 41503 4365 20754 17648 Face 41504 4365 9964 20754 Face 41505 40053 23086 49756 Face 41506 373 15836 23086 Face 41507 6877 20756 39730 Face 41508 6877 49042 20756 Face 41509 10750 36917 20477 Face 41510 10750 46720 20757 Face 41511 33682 20758 12858 Face 41512 11808 10884 20758 Face 41513 6131 44281 14342 Face 41514 6131 8730 20759 Face 41515 24775 20760 40740 Face 41516 36765 6411 20760 Face 41517 22923 20761 12550 Face 41518 4936 41106 20761 Face 41519 9053 20762 46080 Face 41520 9053 8993 20762 Face 41521 4687 20763 11711 Face 41522 4687 15488 20763 Face 41523 2215 20764 11190 Face 41524 35013 5981 46475 Face 41525 2215 20765 46475 Face 41526 2215 9437 20765 Face 41527 23878 20766 43894 Face 41528 23878 48685 20766 Face 41529 11991 20767 39393 Face 41530 11991 35590 20767 Face 41531 5627 20768 19753 Face 41532 36242 41643 20768 Face 41533 30919 40555 10274 Face 41534 2491 3895 20769 Face 41535 3125 20770 19363 Face 41536 22630 12346 20770 Face 41537 3125 20771 20770 Face 41538 3125 15270 22629 Face 41539 25112 37620 532 Face 41540 7596 20511 20772 Face 41541 20774 20773 41440 Face 41542 8864 36161 20773 Face 41543 8864 20774 36080 Face 41544 8864 20773 20774 Face 41545 9106 20775 48319 Face 41546 9106 31811 20775 Face 41547 9106 20776 14203 Face 41548 9106 38732 20776 Face 41549 614 20777 18565 Face 41550 34594 12431 20777 Face 41551 5196 20778 45460 Face 41552 5196 40950 20778 Face 41553 17228 20779 44918 Face 41554 17228 17229 20779 Face 41555 28739 20780 2623 Face 41556 6805 11347 20780 Face 41557 9340 20781 3110 Face 41558 9340 6708 20781 Face 41559 6987 20782 2406 Face 41560 35674 33038 47566 Face 41561 39487 20783 43113 Face 41562 8536 27245 20783 Face 41563 42334 20784 1920 Face 41564 42334 15744 20784 Face 41565 13532 20785 24702 Face 41566 36221 25190 20785 Face 41567 10281 20786 21671 Face 41568 10281 42809 20786 Face 41569 26737 20787 14544 Face 41570 9976 12997 40894 Face 41571 7716 20788 36149 Face 41572 7716 28719 20788 Face 41573 36240 20789 45649 Face 41574 36240 26605 20789 Face 41575 20791 20790 35071 Face 41576 20791 3965 20790 Face 41577 7258 20791 15220 Face 41578 7258 3965 20791 Face 41579 7258 20792 3965 Face 41580 7258 17934 20792 Face 41581 2489 20793 14057 Face 41582 2489 10509 20793 Face 41583 6437 20794 11389 Face 41584 6437 25036 20794 Face 41585 30753 20795 16617 Face 41586 29617 47453 20795 Face 41587 23462 20796 23018 Face 41588 44267 15818 20796 Face 41589 24477 20797 17740 Face 41590 31621 18390 20797 Face 41591 20799 20798 11866 Face 41592 4827 44848 20798 Face 41593 47788 20799 12577 Face 41594 47788 20798 20799 Face 41595 4265 20800 35623 Face 41596 4265 29068 20800 Face 41597 33658 42729 1957 Face 41598 13884 46998 20801 Face 41599 26728 39296 9447 Face 41600 48048 154 39296 Face 41601 8137 20803 5279 Face 41602 8137 28406 20803 Face 41603 5636 20804 39171 Face 41604 42492 1751 20804 Face 41605 6690 20805 18107 Face 41606 34741 31504 46278 Face 41607 32153 20806 6201 Face 41608 3523 34147 20806 Face 41609 49496 20807 14298 Face 41610 20981 19302 32593 Face 41611 44331 42249 13427 Face 41612 49051 393 20808 Face 41613 39682 20809 25565 Face 41614 39682 19597 20809 Face 41615 20811 20810 43239 Face 41616 33611 11894 40657 Face 41617 33930 20811 34 Face 41618 33930 40657 20811 Face 41619 4010 20812 23155 Face 41620 4010 11621 20812 Face 41621 21662 35397 7790 Face 41622 3861 39743 20813 Face 41623 35470 20814 1892 Face 41624 35470 35117 20814 Face 41625 5235 20815 20279 Face 41626 33370 42108 20815 Face 41627 20817 35782 20172 Face 41628 3186 22804 20816 Face 41629 20818 20817 49244 Face 41630 3186 24676 20817 Face 41631 3186 20818 17159 Face 41632 3186 20817 20818 Face 41633 11760 43242 30434 Face 41634 45518 13589 20819 Face 41635 21413 20820 6543 Face 41636 4728 2224 20820 Face 41637 3989 20821 26629 Face 41638 48147 27138 20821 Face 41639 5591 20822 45246 Face 41640 5591 43453 20822 Face 41641 22977 20823 47611 Face 41642 4361 9111 20823 Face 41643 29065 37012 26576 Face 41644 2671 6716 20824 Face 41645 2671 20825 6716 Face 41646 2671 30137 47817 Face 41647 829 20826 41539 Face 41648 829 10034 20826 Face 41649 1596 20827 19626 Face 41650 1596 39536 20827 Face 41651 20829 20828 47584 Face 41652 1567 33475 20828 Face 41653 26867 23293 13588 Face 41654 1567 20828 20829 Face 41655 35349 20830 13499 Face 41656 986 3298 20830 Face 41657 37459 47580 5538 Face 41658 1720 22154 47580 Face 41659 8254 39617 42914 Face 41660 8254 48905 39617 Face 41661 27559 21634 37154 Face 41662 27559 17134 21634 Face 41663 10191 20834 42547 Face 41664 20835 11008 20834 Face 41665 10191 20835 20834 Face 41666 22148 19188 20835 Face 41667 5245 20836 27631 Face 41668 5245 16524 20836 Face 41669 39931 20837 29771 Face 41670 14949 25701 20837 Face 41671 5963 20838 16731 Face 41672 5963 36767 20838 Face 41673 11958 20839 31709 Face 41674 11958 24695 20839 Face 41675 8576 20840 12304 Face 41676 46066 29382 20840 Face 41677 11146 45610 33296 Face 41678 11146 1425 45610 Face 41679 2365 20842 10523 Face 41680 43627 6043 20842 Face 41681 2963 20843 33676 Face 41682 2963 45134 20843 Face 41683 2742 20844 23610 Face 41684 46650 10248 39403 Face 41685 45882 20845 30574 Face 41686 4341 9980 20845 Face 41687 2822 36282 38922 Face 41688 31079 42221 36282 Face 41689 3747 20847 37206 Face 41690 3747 41123 20847 Face 41691 3747 20848 15280 Face 41692 3747 15751 20848 Face 41693 16265 20849 47352 Face 41694 16265 30641 20849 Face 41695 18691 20850 49934 Face 41696 18691 39154 20850 Face 41697 24698 29377 39514 Face 41698 24698 18466 20851 Face 41699 6227 20852 33996 Face 41700 6227 35922 20852 Face 41701 21133 20853 26792 Face 41702 8868 34964 20853 Face 41703 11006 20854 40505 Face 41704 11006 33271 20907 Face 41705 37294 39133 19595 Face 41706 49060 32453 25055 Face 41707 3682 20856 23511 Face 41708 3682 38173 20856 Face 41709 8181 20857 144 Face 41710 8181 39297 20857 Face 41711 4110 20858 36109 Face 41712 4110 340 20858 Face 41713 3399 20859 9113 Face 41714 3399 43007 36918 Face 41715 513 20860 38570 Face 41716 513 13905 20860 Face 41717 35710 20861 16842 Face 41718 29825 43654 20861 Face 41719 43054 20862 19133 Face 41720 14451 23599 20862 Face 41721 5145 20863 31136 Face 41722 5145 43223 20863 Face 41723 6765 20864 4656 Face 41724 6765 554 20864 Face 41725 3048 20865 36850 Face 41726 3048 15643 20865 Face 41727 2037 46771 8306 Face 41728 30791 26465 20866 Face 41729 44275 20867 22133 Face 41730 44275 39579 20867 Face 41731 12986 20868 12985 Face 41732 12986 24796 20868 Face 41733 35536 36165 24374 Face 41734 13967 13966 20869 Face 41735 42640 20870 14067 Face 41736 47375 4741 20870 Face 41737 12103 20871 9466 Face 41738 12103 25236 20871 Face 41739 3507 49227 49228 Face 41740 3507 4717 20872 Face 41741 11928 20873 2956 Face 41742 11928 24085 20873 Face 41743 17494 20874 8177 Face 41744 17494 39336 20874 Face 41745 20876 20875 16249 Face 41746 8671 14906 20875 Face 41747 8671 20876 18986 Face 41748 8671 20875 20876 Face 41749 7782 20877 29694 Face 41750 7782 40187 20877 Face 41751 13258 42498 30520 Face 41752 22795 6090 20878 Face 41753 1226 20879 47388 Face 41754 1226 43319 20879 Face 41755 9602 20880 29536 Face 41756 9602 25862 20880 Face 41757 6073 42227 2576 Face 41758 6073 19453 20881 Face 41759 7984 20882 20028 Face 41760 7984 10710 20882 Face 41761 25291 29572 5194 Face 41762 25291 25290 20883 Face 41763 37726 20884 8924 Face 41764 5758 18631 20884 Face 41765 3027 20885 27614 Face 41766 3027 10035 20885 Face 41767 6967 20886 15242 Face 41768 6967 7286 20886 Face 41769 38441 20887 13746 Face 41770 38441 29545 20887 Face 41771 7032 20888 26445 Face 41772 7032 19904 20888 Face 41773 5274 20889 17108 Face 41774 5274 19847 41758 Face 41775 6547 20890 16497 Face 41776 44340 22918 45208 Face 41777 34450 20891 5477 Face 41778 29048 41812 20891 Face 41779 8345 20892 5696 Face 41780 44264 45264 20892 Face 41781 27900 20893 24639 Face 41782 3948 20011 20893 Face 41783 2051 20894 32509 Face 41784 2051 49007 20894 Face 41785 8348 20895 31366 Face 41786 8348 20561 20895 Face 41787 23833 20896 13470 Face 41788 23275 9052 20896 Face 41789 35939 20897 8216 Face 41790 44976 15478 20897 Face 41791 25703 20898 38838 Face 41792 2562 29260 20898 Face 41793 1933 20899 19418 Face 41794 1933 19952 20899 Face 41795 3130 44155 15129 Face 41796 3130 32712 20900 Face 41797 20902 20901 44369 Face 41798 36919 30310 20901 Face 41799 2128 20902 44369 Face 41800 2128 10087 20902 Face 41801 14122 47241 32665 Face 41802 14122 530 20903 Face 41803 34325 20904 7481 Face 41804 12747 38063 20904 Face 41805 10311 20905 23143 Face 41806 36648 13406 20905 Face 41807 27130 20906 15309 Face 41808 6338 16570 20906 Face 41809 20854 20907 14366 Face 41810 20854 11006 20907 Face 41811 13747 20908 3211 Face 41812 13747 30877 20908 Face 41813 4467 20909 13094 Face 41814 4467 948 20909 Face 41815 46731 20910 6677 Face 41816 46731 12959 20910 Face 41817 8640 38625 17832 Face 41818 8640 34146 38625 Face 41819 7517 34110 19779 Face 41820 42604 35054 20912 Face 41821 38492 20913 33430 Face 41822 38492 37415 20913 Face 41823 762 34934 14420 Face 41824 762 31991 34934 Face 41825 9509 20915 20916 Face 41826 9509 19913 20915 Face 41827 40408 20916 20915 Face 41828 20914 9509 20916 Face 41829 41597 20917 13813 Face 41830 1435 18142 20917 Face 41831 18013 20918 16497 Face 41832 18013 3628 20918 Face 41833 9143 30458 16062 Face 41834 25831 48184 20919 Face 41835 24253 20920 15735 Face 41836 24253 6713 20920 Face 41837 5522 20921 30271 Face 41838 5522 26321 20921 Face 41839 46292 20922 25901 Face 41840 42911 4725 43245 Face 41841 46292 20923 20922 Face 41842 23312 47308 42911 Face 41843 10973 20924 25611 Face 41844 10973 24794 20924 Face 41845 5649 20925 10407 Face 41846 5649 2159 20925 Face 41847 329 20926 23279 Face 41848 20927 44536 20926 Face 41849 329 36269 20926 Face 41850 329 10130 48392 Face 41851 35571 20928 11010 Face 41852 35572 12701 26267 Face 41853 596 44167 31031 Face 41854 596 10383 20929 Face 41855 6982 20930 41885 Face 41856 6982 15666 20930 Face 41857 6709 20931 1198 Face 41858 32645 656 44136 Face 41859 7226 20932 7227 Face 41860 7226 10039 20932 Face 41861 39947 20933 45648 Face 41862 39947 15647 20933 Face 41863 5478 20934 31280 Face 41864 5478 47598 20934 Face 41865 25829 20935 17746 Face 41866 45278 19504 31217 Face 41867 16849 20936 9464 Face 41868 16849 22397 44043 Face 41869 11763 20937 21562 Face 41870 11763 6199 20937 Face 41871 20939 20938 12289 Face 41872 20939 15724 20938 Face 41873 4613 20939 12289 Face 41874 38548 2394 36920 Face 41875 22943 20940 3725 Face 41876 7842 36991 20940 Face 41877 3970 20941 17369 Face 41878 3970 15810 20941 Face 41879 664 20942 26272 Face 41880 664 38947 20942 Face 41881 20944 20943 14088 Face 41882 36726 5330 20943 Face 41883 578 20944 43108 Face 41884 578 20943 20944 Face 41885 10421 20945 33561 Face 41886 26789 10376 20945 Face 41887 20947 37132 45165 Face 41888 35282 18338 20946 Face 41889 730 20947 28568 Face 41890 730 37132 20947 Face 41891 1876 20948 22453 Face 41892 1876 15251 20948 Face 41893 5051 48714 3439 Face 41894 5051 13187 38951 Face 41895 8085 20950 47365 Face 41896 8085 36370 42263 Face 41897 38919 20951 12032 Face 41898 5133 25431 20951 Face 41899 5133 20952 19369 Face 41900 5133 20951 20952 Face 41901 31614 20953 31612 Face 41902 31614 36697 20953 Face 41903 1570 20954 18751 Face 41904 1570 20659 49498 Face 41905 43362 37334 35330 Face 41906 2286 19009 20955 Face 41907 13094 20956 18152 Face 41908 13094 20909 20956 Face 41909 39709 20957 45097 Face 41910 39709 26733 20957 Face 41911 33996 20958 6227 Face 41912 33997 19406 20958 Face 41913 13872 20959 28938 Face 41914 13872 33005 20959 Face 41915 46775 20960 28462 Face 41916 7686 14851 20960 Face 41917 1658 20961 15076 Face 41918 1658 14913 20961 Face 41919 1028 20962 14697 Face 41920 1028 36010 20962 Face 41921 49657 20963 9610 Face 41922 35798 1001 47716 Face 41923 35251 20964 29070 Face 41924 4680 20061 20964 Face 41925 12072 37836 22213 Face 41926 12072 17216 37836 Face 41927 5309 20966 28742 Face 41928 21542 18553 20966 Face 41929 35277 44586 31645 Face 41930 35277 11956 20967 Face 41931 5318 20968 28599 Face 41932 5318 38843 20968 Face 41933 653 20969 10412 Face 41934 30394 20038 20969 Face 41935 38417 20970 30972 Face 41936 42435 11046 20970 Face 41937 46480 20971 7262 Face 41938 5521 26359 20971 Face 41939 1605 20972 4788 Face 41940 21518 31235 48740 Face 41941 4558 20973 41294 Face 41942 20974 44981 44302 Face 41943 4558 34866 44302 Face 41944 32952 29131 20974 Face 41945 4114 20975 18428 Face 41946 4114 18060 20975 Face 41947 35662 20976 14945 Face 41948 26842 29845 20976 Face 41949 33116 20977 44095 Face 41950 1081 34297 20977 Face 41951 7450 20978 49748 Face 41952 7450 24920 20978 Face 41953 3540 20979 18659 Face 41954 22436 26539 32108 Face 41955 5928 20980 16164 Face 41956 49710 4458 20980 Face 41957 7785 20981 32593 Face 41958 7785 45006 20981 Face 41959 21737 33240 7515 Face 41960 3622 13346 20982 Face 41961 3618 20983 43300 Face 41962 3618 5618 20983 Face 41963 4230 20984 18776 Face 41964 24974 14291 38048 Face 41965 2184 20985 21154 Face 41966 2184 13342 20985 Face 41967 9171 20986 17162 Face 41968 9171 37932 20986 Face 41969 8789 20987 4199 Face 41970 8789 30923 20987 Face 41971 5308 20988 37928 Face 41972 5308 21956 20988 Face 41973 703 38362 5476 Face 41974 703 27569 20989 Face 41975 43898 20990 32299 Face 41976 3187 13822 20990 Face 41977 8693 20991 35672 Face 41978 46257 5251 39990 Face 41979 14094 20992 27390 Face 41980 14094 46744 20992 Face 41981 23162 20993 37653 Face 41982 22649 10920 20993 Face 41983 34443 42701 2387 Face 41984 7455 15177 20994 Face 41985 9280 20995 3463 Face 41986 9280 16913 49423 Face 41987 20997 20996 36462 Face 41988 515 12361 20996 Face 41989 33568 20997 1728 Face 41990 515 20996 20997 Face 41991 34166 20998 44647 Face 41992 34166 37229 20998 Face 41993 5815 20999 47804 Face 41994 5815 19303 20999 Face 41995 47115 21000 39781 Face 41996 25785 8555 21000 Face 41997 11894 21001 20810 Face 41998 11894 4473 21001 Face 41999 4473 21002 21001 Face 42000 4473 43896 21002 Face 42001 35219 21003 29362 Face 42002 35219 11360 21003 Face 42003 41380 21004 7915 Face 42004 11 11487 21004 Face 42005 12244 21005 42577 Face 42006 36907 43745 21005 Face 42007 47538 21006 1241 Face 42008 21007 49722 21006 Face 42009 7064 21007 21006 Face 42010 42444 2157 21007 Face 42011 23790 21008 39294 Face 42012 10186 33403 21008 Face 42013 3272 21009 6270 Face 42014 3272 9392 21009 Face 42015 7377 21010 34064 Face 42016 7377 28907 21010 Face 42017 47229 21011 22868 Face 42018 9279 48650 21011 Face 42019 5580 21012 40857 Face 42020 5580 45848 40372 Face 42021 7675 21013 22311 Face 42022 7675 30166 21013 Face 42023 11528 21014 37209 Face 42024 11528 23418 21014 Face 42025 44390 36096 23703 Face 42026 37675 17325 31521 Face 42027 15762 21016 40427 Face 42028 15762 10028 21016 Face 42029 2611 21017 35416 Face 42030 2611 3975 21017 Face 42031 794 21018 20026 Face 42032 794 47720 21018 Face 42033 38170 21019 3789 Face 42034 3790 38137 21019 Face 42035 5821 35636 13854 Face 42036 42952 19972 35636 Face 42037 11518 21021 37039 Face 42038 36585 25632 42289 Face 42039 45077 21022 10190 Face 42040 537 42437 35879 Face 42041 6844 21023 23262 Face 42042 6844 20746 28787 Face 42043 1855 21024 43570 Face 42044 41988 10204 21024 Face 42045 29648 29521 15705 Face 42046 2748 38681 21025 Face 42047 34939 42943 9519 Face 42048 34939 20029 42943 Face 42049 3138 21027 8515 Face 42050 3138 6353 21027 Face 42051 4101 21028 49261 Face 42052 4101 25635 21028 Face 42053 4855 21029 14330 Face 42054 21030 48186 21029 Face 42055 4855 21030 21029 Face 42056 4855 47350 21030 Face 42057 10255 21031 15503 Face 42058 10255 19351 21031 Face 42059 46374 21032 9952 Face 42060 46374 18179 21032 Face 42061 17196 21033 9270 Face 42062 48820 1131 21033 Face 42063 15339 21034 38789 Face 42064 15339 44119 21034 Face 42065 11182 21035 38462 Face 42066 11182 2519 21035 Face 42067 32010 41118 4181 Face 42068 1520 8500 21036 Face 42069 13488 21037 19204 Face 42070 25951 39203 38206 Face 42071 4876 21038 46035 Face 42072 4876 49072 21038 Face 42073 21040 21039 20058 Face 42074 39102 26645 47186 Face 42075 4497 21040 30832 Face 42076 4497 38359 21040 Face 42077 4280 21041 11676 Face 42078 4280 27384 21041 Face 42079 7761 21042 31194 Face 42080 7761 43722 21042 Face 42081 1146 21043 42725 Face 42082 1146 28687 21043 Face 42083 4726 21044 46053 Face 42084 4726 37429 21044 Face 42085 4508 21045 29031 Face 42086 4508 31427 21045 Face 42087 1192 21046 17360 Face 42088 1192 41998 21046 Face 42089 1968 21047 36593 Face 42090 1968 33668 21047 Face 42091 1968 21048 38393 Face 42092 1968 49218 21048 Face 42093 6580 37354 18821 Face 42094 30753 39263 21049 Face 42095 17235 21050 3785 Face 42096 17235 20630 21050 Face 42097 12279 21051 48917 Face 42098 44480 30489 21051 Face 42099 6151 21052 20411 Face 42100 6151 25707 41200 Face 42101 6339 21053 35563 Face 42102 6339 17224 21053 Face 42103 1645 21054 47419 Face 42104 1645 28955 21054 Face 42105 7298 24846 35501 Face 42106 7298 26709 24846 Face 42107 39518 21056 40002 Face 42108 1954 16901 21056 Face 42109 25213 21057 15644 Face 42110 5240 46175 21057 Face 42111 6557 21058 38720 Face 42112 6557 20438 41337 Face 42113 3716 21059 11052 Face 42114 3716 31353 21059 Face 42115 22228 21060 43288 Face 42116 2361 24103 21060 Face 42117 3963 21061 20442 Face 42118 3963 33062 39015 Face 42119 4195 21062 17829 Face 42120 4195 46456 21062 Face 42121 4657 21063 14099 Face 42122 4657 28113 21063 Face 42123 7662 21064 22113 Face 42124 7662 17516 21064 Face 42125 22254 21065 48191 Face 42126 567 35358 36278 Face 42127 3289 21066 37827 Face 42128 28924 30729 21066 Face 42129 28993 21067 14765 Face 42130 13209 34822 21067 Face 42131 8884 21068 34770 Face 42132 23005 18675 49471 Face 42133 2608 21069 31256 Face 42134 2608 10596 21069 Face 42135 5144 48511 33054 Face 42136 5144 44831 48511 Face 42137 645 21071 42599 Face 42138 35648 40669 46361 Face 42139 3612 21072 8776 Face 42140 3612 19076 21072 Face 42141 4854 21073 47234 Face 42142 4854 41931 21073 Face 42143 6087 21074 7557 Face 42144 6087 999 21074 Face 42145 37321 39611 24074 Face 42146 4569 13072 39330 Face 42147 603 21076 23166 Face 42148 39451 23082 21076 Face 42149 48354 21077 28189 Face 42150 38095 22710 46414 Face 42151 413 21078 7438 Face 42152 413 16008 21078 Face 42153 29120 21079 48187 Face 42154 29120 16136 21079 Face 42155 5115 21080 33325 Face 42156 5115 30281 21080 Face 42157 6843 21081 12233 Face 42158 6843 37642 21081 Face 42159 16664 21082 36348 Face 42160 16664 19088 21082 Face 42161 840 21083 8927 Face 42162 840 17496 21083 Face 42163 1464 21084 37538 Face 42164 1464 11037 21084 Face 42165 10036 21085 7138 Face 42166 37810 15345 21085 Face 42167 10036 21086 5962 Face 42168 10036 31685 21086 Face 42169 6913 21087 31042 Face 42170 6913 12502 21087 Face 42171 17240 21088 20553 Face 42172 17240 17239 21088 Face 42173 3579 36538 15382 Face 42174 27529 41265 21089 Face 42175 3442 35645 32525 Face 42176 27745 3096 21090 Face 42177 9308 21091 38263 Face 42178 24359 27184 21091 Face 42179 8346 21092 3671 Face 42180 8346 1678 42091 Face 42181 1024 21093 32048 Face 42182 1024 15551 21093 Face 42183 6718 21094 40695 Face 42184 35217 49909 21094 Face 42185 8561 21095 33654 Face 42186 43068 10718 21095 Face 42187 472 21096 31308 Face 42188 472 40391 21096 Face 42189 70 21097 35262 Face 42190 70 15736 21097 Face 42191 38457 21098 23326 Face 42192 422 27379 21098 Face 42193 29294 42468 6300 Face 42194 13973 40105 21099 Face 42195 521 21100 10054 Face 42196 521 18148 21100 Face 42197 9412 30235 19469 Face 42198 9412 25471 21101 Face 42199 16833 21102 38025 Face 42200 44912 47021 21102 Face 42201 382 21103 37356 Face 42202 382 47875 21103 Face 42203 10592 42141 9063 Face 42204 10592 17085 21104 Face 42205 77 21105 11942 Face 42206 25509 15393 49787 Face 42207 10886 21106 18583 Face 42208 45437 28178 43462 Face 42209 30068 21107 10678 Face 42210 3564 22135 21107 Face 42211 4987 21108 38828 Face 42212 43380 6291 21108 Face 42213 9197 21109 26678 Face 42214 35471 9491 36955 Face 42215 25584 21110 19251 Face 42216 11992 21433 21110 Face 42217 22730 45141 22880 Face 42218 37526 333 21111 Face 42219 4200 21112 42220 Face 42220 4200 4421 21112 Face 42221 3479 21113 34292 Face 42222 25667 44869 21113 Face 42223 17892 21114 14467 Face 42224 17892 11791 21114 Face 42225 8697 31305 43365 Face 42226 8697 25670 31305 Face 42227 8697 21116 30824 Face 42228 8697 43365 21116 Face 42229 43600 21117 24958 Face 42230 3901 26196 21117 Face 42231 2625 39769 6149 Face 42232 45446 38869 21118 Face 42233 7081 21119 21639 Face 42234 7081 20390 31702 Face 42235 3386 21120 24470 Face 42236 3386 18498 21120 Face 42237 4236 21121 32177 Face 42238 4236 9212 21121 Face 42239 9945 21122 4119 Face 42240 9945 33586 21122 Face 42241 10575 21123 46663 Face 42242 10575 26606 21123 Face 42243 40170 21124 13374 Face 42244 5264 18268 46395 Face 42245 5003 21125 902 Face 42246 5003 18766 21125 Face 42247 40114 21126 9583 Face 42248 736 2733 41907 Face 42249 43233 48834 17870 Face 42250 8687 41035 21127 Face 42251 1900 21128 25655 Face 42252 1900 17748 21128 Face 42253 2593 42658 1270 Face 42254 33879 15124 35836 Face 42255 27517 21130 8044 Face 42256 12576 41930 21130 Face 42257 17021 21131 15037 Face 42258 17021 8211 21131 Face 42259 2868 21132 7338 Face 42260 2868 11103 21132 Face 42261 43796 25407 34088 Face 42262 43796 20853 25407 Face 42263 2744 21134 16238 Face 42264 2744 15316 21134 Face 42265 9299 48681 20585 Face 42266 25885 31176 21135 Face 42267 381 21136 14159 Face 42268 381 40246 21136 Face 42269 2931 21137 2934 Face 42270 2931 9068 21137 Face 42271 35473 21138 14827 Face 42272 8963 4073 46945 Face 42273 949 46625 23558 Face 42274 22890 17939 21139 Face 42275 3293 33611 40657 Face 42276 39439 10531 21140 Face 42277 10997 21141 42605 Face 42278 10997 6369 21141 Face 42279 1699 21142 18861 Face 42280 1699 31191 21142 Face 42281 33869 21143 3427 Face 42282 1699 18861 21143 Face 42283 47233 21144 11719 Face 42284 47233 24462 21144 Face 42285 7502 41180 12844 Face 42286 7502 24150 21145 Face 42287 6674 21146 43940 Face 42288 45118 2903 21146 Face 42289 11161 21147 35090 Face 42290 11161 29219 21147 Face 42291 418 21148 17720 Face 42292 418 37918 21148 Face 42293 21150 21149 48673 Face 42294 8092 1151 40710 Face 42295 29295 21150 1153 Face 42296 29295 21149 21150 Face 42297 8885 21151 23331 Face 42298 31661 1913 21151 Face 42299 10751 21152 19980 Face 42300 44500 12959 21152 Face 42301 4948 21153 20608 Face 42302 4948 37316 21153 Face 42303 2452 43797 12045 Face 42304 41289 2184 21154 Face 42305 8435 21155 12671 Face 42306 8435 28669 21155 Face 42307 5341 21156 36621 Face 42308 5341 18678 21156 Face 42309 4933 21157 12454 Face 42310 4933 17288 21157 Face 42311 23227 21158 48611 Face 42312 31656 11346 21158 Face 42313 25078 21159 3928 Face 42314 3929 13876 21159 Face 42315 5323 21160 23363 Face 42316 5323 7086 21160 Face 42317 18462 21161 25375 Face 42318 18462 16125 21161 Face 42319 35183 21162 30495 Face 42320 7575 33835 21162 Face 42321 21164 21163 40513 Face 42322 8502 80 21163 Face 42323 8502 21164 47811 Face 42324 8502 21163 21164 Face 42325 9691 21165 39223 Face 42326 9691 36285 46047 Face 42327 4002 21166 15465 Face 42328 4002 26646 34995 Face 42329 21168 47532 40681 Face 42330 32617 48833 47532 Face 42331 6716 21168 20824 Face 42332 6716 47532 21168 Face 42333 15672 21169 6726 Face 42334 24243 37912 21169 Face 42335 37908 21170 12521 Face 42336 23071 29776 21170 Face 42337 6769 21171 40754 Face 42338 6769 34032 21171 Face 42339 272 40495 12795 Face 42340 272 11282 21172 Face 42341 12449 21173 27660 Face 42342 12449 37280 21173 Face 42343 39666 21174 9169 Face 42344 31889 27607 44745 Face 42345 11605 21175 48954 Face 42346 11605 11604 21175 Face 42347 35114 21176 15624 Face 42348 38692 25284 21176 Face 42349 32787 33641 27878 Face 42350 2700 9784 21177 Face 42351 4003 21178 36425 Face 42352 45913 28798 21178 Face 42353 9635 21179 11484 Face 42354 9635 32238 21179 Face 42355 789 21180 12026 Face 42356 789 5347 21180 Face 42357 5845 21181 34849 Face 42358 5845 28792 21181 Face 42359 8016 21182 241 Face 42360 8016 12148 21182 Face 42361 46177 21183 26790 Face 42362 21549 28160 21183 Face 42363 2012 21184 5712 Face 42364 2012 16931 21184 Face 42365 48181 21185 24163 Face 42366 49484 17007 21185 Face 42367 13692 21186 23961 Face 42368 13692 6327 21186 Face 42369 25460 21187 8073 Face 42370 2766 37803 21187 Face 42371 46679 21188 34523 Face 42372 13690 31903 21188 Face 42373 4052 21189 37644 Face 42374 4052 28842 21189 Face 42375 544 21190 40734 Face 42376 544 24517 21190 Face 42377 41324 26468 9387 Face 42378 30423 27376 21191 Face 42379 4210 21192 17473 Face 42380 4210 21191 21192 Face 42381 6264 21193 19117 Face 42382 6264 45519 21193 Face 42383 8465 21194 11795 Face 42384 8465 35673 21194 Face 42385 1350 21195 48282 Face 42386 35141 23767 21195 Face 42387 14717 21196 40900 Face 42388 14717 16058 21196 Face 42389 21198 21197 6219 Face 42390 10188 24902 21197 Face 42391 31549 21198 20260 Face 42392 10188 21197 21198 Face 42393 2982 21199 10681 Face 42394 2982 39386 21199 Face 42395 4711 21200 44232 Face 42396 4711 31210 21200 Face 42397 39720 21201 35305 Face 42398 29381 43594 21201 Face 42399 31151 21202 11385 Face 42400 31151 12677 21202 Face 42401 3588 21203 5042 Face 42402 29167 14828 21203 Face 42403 12498 21204 2288 Face 42404 12498 7691 21204 Face 42405 15977 21205 1632 Face 42406 15977 28354 21205 Face 42407 5867 21206 438 Face 42408 45257 12435 21206 Face 42409 13422 21207 40982 Face 42410 13422 5810 21207 Face 42411 45984 21208 23469 Face 42412 3526 41114 21208 Face 42413 30202 21209 44550 Face 42414 8876 4182 21209 Face 42415 2740 41385 48615 Face 42416 2740 12434 41385 Face 42417 10484 21211 42273 Face 42418 10484 29833 21211 Face 42419 48812 21212 43541 Face 42420 9932 13887 21212 Face 42421 4603 21213 24258 Face 42422 4603 18325 21213 Face 42423 8332 21214 28644 Face 42424 8332 32712 21214 Face 42425 3576 21215 19898 Face 42426 3576 5941 21215 Face 42427 36633 21216 27533 Face 42428 36633 7198 21216 Face 42429 13834 21217 2459 Face 42430 13834 8429 21217 Face 42431 31587 21218 18750 Face 42432 934 17702 21218 Face 42433 2590 21219 23903 Face 42434 2590 22432 21219 Face 42435 29416 21220 3833 Face 42436 29416 8068 21220 Face 42437 8817 21221 26078 Face 42438 8817 31372 21222 Face 42439 21221 21222 25792 Face 42440 21221 8817 21222 Face 42441 33183 21223 4551 Face 42442 16898 13063 21223 Face 42443 2298 46107 31226 Face 42444 23356 40066 21224 Face 42445 48624 21225 3668 Face 42446 5340 13497 21225 Face 42447 12183 21226 2448 Face 42448 12183 36228 21226 Face 42449 30156 21227 3801 Face 42450 30156 5758 21227 Face 42451 3315 21228 10382 Face 42452 38608 3708 21228 Face 42453 22219 21229 15083 Face 42454 3734 24656 21229 Face 42455 8553 21230 31104 Face 42456 8553 21266 21230 Face 42457 6355 21231 14856 Face 42458 6355 32178 21231 Face 42459 32862 21232 22771 Face 42460 32862 15216 21232 Face 42461 27557 47309 15363 Face 42462 248 32115 47309 Face 42463 13424 21234 8569 Face 42464 13424 9612 40242 Face 42465 6344 21235 42208 Face 42466 26684 37859 21235 Face 42467 35486 21236 48450 Face 42468 35486 11070 21236 Face 42469 23109 21237 15206 Face 42470 49652 34299 21237 Face 42471 10961 21238 10962 Face 42472 10961 17935 21238 Face 42473 491 21239 7963 Face 42474 491 28674 21239 Face 42475 30180 34952 7363 Face 42476 38273 45925 21240 Face 42477 17480 21241 43728 Face 42478 17480 4094 21241 Face 42479 8049 44194 21650 Face 42480 8049 28912 21242 Face 42481 8049 21243 15049 Face 42482 8049 21650 21243 Face 42483 13549 21244 31350 Face 42484 13549 35760 21244 Face 42485 34644 21245 17975 Face 42486 4778 23061 21245 Face 42487 6359 21246 19168 Face 42488 6359 32442 21246 Face 42489 5725 21247 28665 Face 42490 5725 30003 21247 Face 42491 28295 21248 17647 Face 42492 45683 34528 21248 Face 42493 5777 21249 25019 Face 42494 5777 35768 21249 Face 42495 8474 21250 20150 Face 42496 8474 38854 21250 Face 42497 7842 21251 36991 Face 42498 22943 5901 43271 Face 42499 3900 21252 14073 Face 42500 3900 41044 21252 Face 42501 34574 31081 27825 Face 42502 21254 42294 31080 Face 42503 1642 21254 31080 Face 42504 1642 16445 21254 Face 42505 17763 21255 25058 Face 42506 17763 37264 21255 Face 42507 8208 21256 15493 Face 42508 49673 16605 21256 Face 42509 48501 21257 13545 Face 42510 23020 38937 21257 Face 42511 14756 21258 35187 Face 42512 30632 31588 21258 Face 42513 10520 21259 45866 Face 42514 10520 32572 21259 Face 42515 9905 21260 20545 Face 42516 21261 4907 21260 Face 42517 43074 21261 21260 Face 42518 43074 30106 21261 Face 42519 7135 34054 15037 Face 42520 7135 30579 21262 Face 42521 6566 21264 28846 Face 42522 27293 13638 21264 Face 42523 21263 21264 13638 Face 42524 21263 6959 21264 Face 42525 6957 21265 18850 Face 42526 6957 19238 21265 Face 42527 19895 21266 8553 Face 42528 19895 6150 21266 Face 42529 5945 49474 10795 Face 42530 5945 16947 21267 Face 42531 1130 21268 19078 Face 42532 1130 20662 21268 Face 42533 12484 21269 36903 Face 42534 12484 35912 42592 Face 42535 9476 21270 35914 Face 42536 9476 29614 21270 Face 42537 5086 21271 20832 Face 42538 5086 29438 21271 Face 42539 40556 21272 42376 Face 42540 5088 27786 21272 Face 42541 9874 21273 38656 Face 42542 9874 46172 21273 Face 42543 1509 21274 45615 Face 42544 45352 7547 21274 Face 42545 1509 45352 21274 Face 42546 35246 34790 21275 Face 42547 14050 41726 43105 Face 42548 14050 16982 21276 Face 42549 27639 21277 9386 Face 42550 38055 30568 21277 Face 42551 27639 38055 21277 Face 42552 49089 31602 21278 Face 42553 42757 21279 20446 Face 42554 495 21278 27640 Face 42555 30041 21280 25735 Face 42556 6207 28910 21280 Face 42557 1812 21281 49140 Face 42558 1812 28976 21281 Face 42559 3380 21282 14120 Face 42560 3380 46136 21282 Face 42561 11249 21283 4139 Face 42562 11249 5025 21283 Face 42563 29117 21284 14103 Face 42564 21285 3334 21284 Face 42565 29117 21285 21284 Face 42566 40799 15138 21285 Face 42567 25378 21286 42323 Face 42568 1229 16785 31970 Face 42569 34062 21287 19148 Face 42570 33471 16797 21287 Face 42571 41852 21288 23423 Face 42572 526 37283 21288 Face 42573 4423 21289 12433 Face 42574 30444 27251 21289 Face 42575 46271 48548 23817 Face 42576 46271 38988 21290 Face 42577 7912 21291 1722 Face 42578 27685 29165 38655 Face 42579 2651 21292 11254 Face 42580 2651 13828 21292 Face 42581 8118 21293 7316 Face 42582 23698 1690 21293 Face 42583 2175 21294 22951 Face 42584 2175 36043 21294 Face 42585 5776 21295 20458 Face 42586 5776 17282 21295 Face 42587 1205 21296 26040 Face 42588 1205 28048 21296 Face 42589 5525 21297 25073 Face 42590 24224 8584 38158 Face 42591 1407 21298 12694 Face 42592 1407 17174 21298 Face 42593 5144 21299 46892 Face 42594 5144 33054 21299 Face 42595 7250 21300 14523 Face 42596 7250 41837 21300 Face 42597 11789 21301 14981 Face 42598 11789 5287 21301 Face 42599 3163 21302 30722 Face 42600 3163 8717 21302 Face 42601 9612 21303 14682 Face 42602 9612 13424 21303 Face 42603 35596 38650 13416 Face 42604 23843 19006 43147 Face 42605 13928 21305 45278 Face 42606 13928 4746 21305 Face 42607 13827 21306 28453 Face 42608 13827 23536 21306 Face 42609 37806 41918 9960 Face 42610 37806 7775 21307 Face 42611 47059 41199 21989 Face 42612 47059 17649 41199 Face 42613 6900 21309 45197 Face 42614 6900 10738 21309 Face 42615 40076 36339 1417 Face 42616 37355 15811 21310 Face 42617 36638 21311 13155 Face 42618 7014 19192 21311 Face 42619 37837 21312 19635 Face 42620 27065 6894 21312 Face 42621 5922 21313 25472 Face 42622 5922 14805 21313 Face 42623 13588 21314 29054 Face 42624 13588 23293 21314 Face 42625 22178 21315 45666 Face 42626 22178 22261 21315 Face 42627 4863 21316 9849 Face 42628 4863 38784 21316 Face 42629 16968 21317 3423 Face 42630 16968 18479 21317 Face 42631 12430 38243 19269 Face 42632 12430 5915 38243 Face 42633 7230 21319 39854 Face 42634 7230 14884 21319 Face 42635 14449 21320 40735 Face 42636 14449 45375 21320 Face 42637 5350 21321 28584 Face 42638 5350 11280 21321 Face 42639 26393 21322 44858 Face 42640 21323 17405 33255 Face 42641 39964 21323 21322 Face 42642 730 28568 21323 Face 42643 13301 21324 36606 Face 42644 13301 46673 21324 Face 42645 33258 21325 27671 Face 42646 33258 9608 21325 Face 42647 12204 21326 17022 Face 42648 12204 13416 21326 Face 42649 5782 21327 48132 Face 42650 5782 16483 21327 Face 42651 28936 42534 20104 Face 42652 1659 46402 21328 Face 42653 10824 36233 20414 Face 42654 10824 12298 21329 Face 42655 5373 21330 15635 Face 42656 5373 20391 21330 Face 42657 4026 21331 11106 Face 42658 4026 34718 21331 Face 42659 21333 21332 11172 Face 42660 29996 24713 21332 Face 42661 1473 44792 30540 Face 42662 29996 21332 21333 Face 42663 5856 21334 2559 Face 42664 5856 16504 21334 Face 42665 4605 21335 30045 Face 42666 37761 3248 34592 Face 42667 6278 21336 15000 Face 42668 6278 34284 21336 Face 42669 21336 21337 28681 Face 42670 21336 34284 21337 Face 42671 778 36547 12681 Face 42672 23302 25512 21338 Face 42673 39816 21339 31642 Face 42674 15623 47562 21339 Face 42675 22806 21340 30941 Face 42676 1297 13063 21340 Face 42677 16127 21341 42783 Face 42678 16127 34754 21341 Face 42679 5945 21342 17363 Face 42680 5945 26105 21342 Face 42681 23023 21343 43590 Face 42682 21524 35135 21343 Face 42683 13481 21344 33247 Face 42684 13481 14439 21344 Face 42685 1639 43163 33689 Face 42686 1639 3591 43163 Face 42687 21345 21346 30607 Face 42688 21345 598 21346 Face 42689 10762 21347 10763 Face 42690 10762 32900 23379 Face 42691 9096 28394 28478 Face 42692 9096 23639 21348 Face 42693 492 21349 44319 Face 42694 23971 37941 21349 Face 42695 12059 21350 4487 Face 42696 12059 33562 21350 Face 42697 8330 21351 42372 Face 42698 8330 33904 21351 Face 42699 6830 21352 19766 Face 42700 6830 36757 21352 Face 42701 6283 21353 18741 Face 42702 40085 47468 21353 Face 42703 36853 34579 5766 Face 42704 44529 27843 21354 Face 42705 10842 21355 34101 Face 42706 10842 24496 21355 Face 42707 852 21356 10661 Face 42708 852 45752 21356 Face 42709 11827 21357 44564 Face 42710 11827 40924 21357 Face 42711 1145 21358 11613 Face 42712 1145 39318 21358 Face 42713 34063 48414 17891 Face 42714 6972 30624 48414 Face 42715 5573 21360 22067 Face 42716 5573 45554 21360 Face 42717 26147 21361 30398 Face 42718 1334 40741 21361 Face 42719 4136 21362 18023 Face 42720 23189 39722 21362 Face 42721 40867 46473 21150 Face 42722 25632 20490 21363 Face 42723 7308 49414 27482 Face 42724 7308 560 21364 Face 42725 21366 21365 221 Face 42726 1816 36311 21365 Face 42727 1816 21366 16758 Face 42728 1816 21365 21366 Face 42729 4134 27096 19971 Face 42730 4134 38273 21367 Face 42731 23625 21368 35393 Face 42732 3168 32291 21368 Face 42733 39574 43903 32890 Face 42734 41360 20528 49520 Face 42735 23822 21370 9545 Face 42736 31905 19311 21370 Face 42737 2795 21371 20760 Face 42738 36268 15827 38721 Face 42739 2139 21372 21373 Face 42740 31879 19690 21372 Face 42741 10698 21373 21374 Face 42742 34250 39199 21373 Face 42743 7689 21374 21373 Face 42744 7689 9582 21374 Face 42745 45487 21375 12413 Face 42746 2983 11767 21375 Face 42747 6666 21376 12152 Face 42748 6666 21635 21376 Face 42749 12257 21377 17475 Face 42750 29341 38806 41859 Face 42751 4090 21378 10741 Face 42752 4090 1231 21378 Face 42753 25510 21379 8409 Face 42754 2873 38714 21379 Face 42755 12274 21380 5106 Face 42756 12274 20961 21380 Face 42757 14408 21381 14368 Face 42758 35792 14409 35475 Face 42759 9130 21382 19963 Face 42760 9130 877 21382 Face 42761 38305 21383 26920 Face 42762 8955 17952 21383 Face 42763 14296 21384 14921 Face 42764 14296 32168 21384 Face 42765 8431 21385 16757 Face 42766 8431 49330 21385 Face 42767 4040 21386 42958 Face 42768 4040 23228 34941 Face 42769 595 21387 44678 Face 42770 595 32834 21387 Face 42771 3700 21388 37883 Face 42772 3700 11457 21388 Face 42773 3201 21389 8205 Face 42774 32789 21390 40727 Face 42775 13333 21390 10184 Face 42776 13333 40727 21390 Face 42777 4826 21391 40552 Face 42778 4826 43065 21391 Face 42779 996 21392 46224 Face 42780 996 36004 21392 Face 42781 19015 21393 19588 Face 42782 19015 42983 21393 Face 42783 11530 41212 11766 Face 42784 28220 47727 21394 Face 42785 9295 21395 3256 Face 42786 9295 18188 21395 Face 42787 36466 21396 8691 Face 42788 36466 35905 21396 Face 42789 6797 21397 46980 Face 42790 6797 39655 31157 Face 42791 4060 21398 39024 Face 42792 4060 13529 21398 Face 42793 4045 21399 38731 Face 42794 4045 49927 21399 Face 42795 1480 21400 13696 Face 42796 1480 41974 21400 Face 42797 14570 21401 25627 Face 42798 14570 27492 21401 Face 42799 19705 41745 11841 Face 42800 19705 23296 41745 Face 42801 21402 21403 31444 Face 42802 48873 29135 21403 Face 42803 35839 21404 34095 Face 42804 16753 38007 21404 Face 42805 40477 21405 30596 Face 42806 25177 20107 21405 Face 42807 39425 21406 9782 Face 42808 39425 10107 21406 Face 42809 11649 21407 28708 Face 42810 26280 38769 21407 Face 42811 5923 34188 39674 Face 42812 24921 11332 21408 Face 42813 30276 21409 16717 Face 42814 8652 35836 21410 Face 42815 21409 21410 35836 Face 42816 21409 22666 21411 Face 42817 21410 21411 8652 Face 42818 21410 21409 21411 Face 42819 277 21412 20575 Face 42820 31777 9854 21412 Face 42821 25787 21413 14659 Face 42822 25787 20820 21413 Face 42823 4614 40742 48478 Face 42824 23557 18504 47396 Face 42825 5388 21415 12463 Face 42826 5388 16277 21415 Face 42827 32572 21416 15517 Face 42828 23505 10158 21416 Face 42829 31680 21417 16626 Face 42830 283 31233 21417 Face 42831 26139 21418 10302 Face 42832 26139 23703 21418 Face 42833 8377 21419 47090 Face 42834 8377 31145 21419 Face 42835 19438 21420 32609 Face 42836 19438 7540 21420 Face 42837 31889 21421 14252 Face 42838 5241 2711 21421 Face 42839 1733 21422 36071 Face 42840 1733 18392 21422 Face 42841 3470 21423 41496 Face 42842 3470 27892 47362 Face 42843 955 36364 13904 Face 42844 955 49834 36364 Face 42845 12983 21425 17238 Face 42846 12983 10172 21425 Face 42847 5490 21426 10504 Face 42848 5490 43246 21426 Face 42849 7124 21427 45153 Face 42850 32827 5559 21427 Face 42851 24917 21428 19283 Face 42852 22496 46534 41165 Face 42853 4318 21429 37633 Face 42854 4318 13081 21429 Face 42855 42683 31322 27424 Face 42856 6293 13486 21430 Face 42857 5808 21431 30711 Face 42858 5808 612 21431 Face 42859 3561 21432 2321 Face 42860 3561 3560 21432 Face 42861 48802 21433 14319 Face 42862 24674 21110 21433 Face 42863 21435 32921 16882 Face 42864 21435 49228 47791 Face 42865 3507 21435 5052 Face 42866 3507 49228 21435 Face 42867 46504 21436 39395 Face 42868 36471 330 21436 Face 42869 5428 21437 8903 Face 42870 5428 21436 46504 Face 42871 8450 21438 17519 Face 42872 27220 10337 21438 Face 42873 12067 21439 21399 Face 42874 28526 36068 49358 Face 42875 39529 21440 47785 Face 42876 37300 22215 21440 Face 42877 33101 21441 1359 Face 42878 3790 21019 21441 Face 42879 7538 21442 48393 Face 42880 7538 14358 21442 Face 42881 7538 21443 30689 Face 42882 7538 14357 21443 Face 42883 21445 21444 6816 Face 42884 3319 9865 21444 Face 42885 3319 21445 7155 Face 42886 3319 21444 21445 Face 42887 3676 21446 4235 Face 42888 22455 7599 21446 Face 42889 8759 21447 18405 Face 42890 8759 16981 21447 Face 42891 21449 21448 10333 Face 42892 21449 16662 21448 Face 42893 7027 21449 10333 Face 42894 7027 22574 21449 Face 42895 5830 21450 30768 Face 42896 5830 38556 21450 Face 42897 5538 49144 8799 Face 42898 5538 12441 49144 Face 42899 37394 21452 16133 Face 42900 37394 15425 21452 Face 42901 13940 21453 22283 Face 42902 13940 499 21453 Face 42903 32270 48379 4448 Face 42904 10321 4447 21454 Face 42905 2407 21455 24175 Face 42906 29214 34538 25012 Face 42907 21457 21456 22077 Face 42908 2407 18682 21456 Face 42909 2407 29214 21455 Face 42910 2407 21456 21457 Face 42911 583 21458 38620 Face 42912 583 33933 21458 Face 42913 35054 32019 20912 Face 42914 12634 2531 21459 Face 42915 2141 21460 38321 Face 42916 2141 30935 21460 Face 42917 11665 21461 28914 Face 42918 11665 45738 21461 Face 42919 9337 21462 16234 Face 42920 9337 17988 21462 Face 42921 45911 21463 18829 Face 42922 45911 42673 21463 Face 42923 2649 21464 17657 Face 42924 2649 30531 21464 Face 42925 14501 21465 17821 Face 42926 14501 17812 21465 Face 42927 9597 21466 29917 Face 42928 9597 22867 21466 Face 42929 7506 21467 43538 Face 42930 7506 42114 21467 Face 42931 2146 21468 10234 Face 42932 2146 12624 21468 Face 42933 3046 41703 13571 Face 42934 3046 32144 21469 Face 42935 8769 21470 22843 Face 42936 8769 555 21470 Face 42937 30903 21471 8498 Face 42938 29801 37045 27485 Face 42939 1510 21472 39813 Face 42940 1510 38412 21472 Face 42941 2563 21473 19274 Face 42942 41006 8696 21473 Face 42943 5888 40566 22688 Face 42944 5888 1724 21474 Face 42945 5888 21475 1724 Face 42946 5888 6261 21475 Face 42947 33134 21476 12721 Face 42948 46677 17129 21476 Face 42949 326 21477 32826 Face 42950 326 11363 21477 Face 42951 3254 21478 18827 Face 42952 24223 24377 21478 Face 42953 8189 21479 19162 Face 42954 8189 24658 21479 Face 42955 11052 21480 3716 Face 42956 11052 14601 21480 Face 42957 10471 21481 47323 Face 42958 10471 21497 21481 Face 42959 8148 21483 17807 Face 42960 8148 25018 21482 Face 42961 21482 21483 8148 Face 42962 21482 29275 21483 Face 42963 11490 21484 36856 Face 42964 11490 27417 21484 Face 42965 11490 21485 27418 Face 42966 11490 44559 21485 Face 42967 29388 21486 3814 Face 42968 47187 8347 21486 Face 42969 46516 21487 12488 Face 42970 2987 23301 21487 Face 42971 21489 21488 9767 Face 42972 35987 36301 21488 Face 42973 5386 21489 33443 Face 42974 5386 13315 35987 Face 42975 2708 21490 46382 Face 42976 2708 33269 21490 Face 42977 9838 21491 27892 Face 42978 9838 9840 21491 Face 42979 1915 21492 17516 Face 42980 22558 21062 21492 Face 42981 14930 21493 25263 Face 42982 14930 14932 21493 Face 42983 35070 21494 30640 Face 42984 35069 36406 40850 Face 42985 42456 21495 26062 Face 42986 8723 23186 21495 Face 42987 4659 44180 31547 Face 42988 4659 28279 21496 Face 42989 2525 47080 10471 Face 42990 24579 33453 47080 Face 42991 24837 21498 33486 Face 42992 6115 30038 21498 Face 42993 21500 21499 39315 Face 42994 43187 8973 21499 Face 42995 1764 40265 42979 Face 42996 1764 21499 21500 Face 42997 4240 21501 19060 Face 42998 28114 20652 21501 Face 42999 5699 21502 15840 Face 43000 5699 21804 21502 Face 43001 12147 39473 35499 Face 43002 33062 3963 21503 Face 43003 5290 21504 4591 Face 43004 5290 24478 21504 Face 43005 21557 21505 48702 Face 43006 21557 31406 21505 Face 43007 7337 21506 33749 Face 43008 7337 47829 21506 Face 43009 7770 49327 28913 Face 43010 32621 10537 39080 Face 43011 11501 37558 28181 Face 43012 11501 37049 21508 Face 43013 4861 38748 13773 Face 43014 42543 14401 21509 Face 43015 3937 21510 32700 Face 43016 3937 28751 21510 Face 43017 9665 21511 12247 Face 43018 9665 25082 21511 Face 43019 803 21512 36112 Face 43020 803 10715 29907 Face 43021 3583 21513 279 Face 43022 3583 18870 21513 Face 43023 3199 38779 30283 Face 43024 3199 33297 21514 Face 43025 3866 33520 40556 Face 43026 21516 8609 21515 Face 43027 3866 21516 21515 Face 43028 42376 32410 21516 Face 43029 3768 21517 18424 Face 43030 3768 25774 35594 Face 43031 1605 21518 48740 Face 43032 1605 48726 21518 Face 43033 3851 21519 32232 Face 43034 24018 15884 21519 Face 43035 16122 21520 16121 Face 43036 16122 16120 21520 Face 43037 13540 21521 7189 Face 43038 46581 31570 44573 Face 43039 36303 21522 30255 Face 43040 31209 9326 37960 Face 43041 7995 21523 1716 Face 43042 21599 17087 30443 Face 43043 49762 21524 21343 Face 43044 34925 19600 21524 Face 43045 48947 44805 19344 Face 43046 49460 11899 30503 Face 43047 14764 21526 42880 Face 43048 14764 24449 21526 Face 43049 29704 43503 9150 Face 43050 21528 30800 43076 Face 43051 37125 21528 43076 Face 43052 12359 18494 35607 Face 43053 11025 21529 29563 Face 43054 11025 39613 21529 Face 43055 9939 21530 12781 Face 43056 9939 44008 21530 Face 43057 9398 21531 45042 Face 43058 9398 18749 21531 Face 43059 9198 21532 10685 Face 43060 9198 48465 21532 Face 43061 3407 21533 39308 Face 43062 21534 15022 21533 Face 43063 3407 21534 21533 Face 43064 3407 19302 32552 Face 43065 3500 21535 45918 Face 43066 3500 20317 21535 Face 43067 21537 21536 1530 Face 43068 30673 28378 21536 Face 43069 9765 21537 11336 Face 43070 30673 21536 21537 Face 43071 39140 21538 11004 Face 43072 15542 22745 21538 Face 43073 17091 21539 18791 Face 43074 17091 42651 21539 Face 43075 5977 21540 44266 Face 43076 24472 3224 21540 Face 43077 33921 21541 16318 Face 43078 33921 12364 21541 Face 43079 5309 21542 20966 Face 43080 5309 20992 21542 Face 43081 49527 21543 17583 Face 43082 3663 29153 21543 Face 43083 38899 21544 29775 Face 43084 5379 48772 21544 Face 43085 26103 34252 38775 Face 43086 3688 16097 21545 Face 43087 2068 21546 19151 Face 43088 2068 43889 21546 Face 43089 3087 21547 19669 Face 43090 3087 36352 21547 Face 43091 28333 21548 48315 Face 43092 46177 26790 46243 Face 43093 6242 21549 21183 Face 43094 28333 15719 21549 Face 43095 8304 21550 37354 Face 43096 8304 26484 21550 Face 43097 10537 21551 32305 Face 43098 10537 15394 21551 Face 43099 48574 21552 12853 Face 43100 1466 46115 21552 Face 43101 12830 21553 25754 Face 43102 12830 25566 21553 Face 43103 11920 21554 11921 Face 43104 11920 1364 21554 Face 43105 4961 21555 29366 Face 43106 24869 39295 21555 Face 43107 6738 21556 46870 Face 43108 6738 23313 21556 Face 43109 1387 21557 18782 Face 43110 22627 31406 21557 Face 43111 2314 21558 13238 Face 43112 29001 6032 21558 Face 43113 9277 21559 18168 Face 43114 21560 8791 21559 Face 43115 9277 21560 21559 Face 43116 9277 15272 21560 Face 43117 1660 21561 27220 Face 43118 1660 34092 21561 Face 43119 2828 21562 20937 Face 43120 2828 9608 33258 Face 43121 44238 21563 15006 Face 43122 32571 2584 21563 Face 43123 5378 45429 17587 Face 43124 40037 26672 21564 Face 43125 5378 40037 21564 Face 43126 5378 14621 21565 Face 43127 16423 21566 12767 Face 43128 45978 9326 21566 Face 43129 33688 41913 1428 Face 43130 9791 43747 21567 Face 43131 30360 21568 12104 Face 43132 47568 10811 46683 Face 43133 5455 21569 40636 Face 43134 5455 260 21569 Face 43135 6014 21570 49792 Face 43136 25450 12967 21570 Face 43137 39043 21571 29024 Face 43138 11654 23786 21571 Face 43139 2789 42167 9679 Face 43140 2789 27244 21572 Face 43141 35245 21573 13201 Face 43142 35245 21574 21573 Face 43143 9287 44997 12751 Face 43144 9287 23898 44997 Face 43145 7429 21575 1001 Face 43146 21576 38281 21575 Face 43147 7429 21576 21575 Face 43148 32458 11684 21576 Face 43149 34503 21577 23198 Face 43150 13423 35018 21577 Face 43151 6720 21578 20226 Face 43152 41421 24611 21578 Face 43153 10734 21579 13795 Face 43154 10734 158 21579 Face 43155 35931 45399 15855 Face 43156 35136 46387 29538 Face 43157 24502 21581 17090 Face 43158 12428 42651 30417 Face 43159 26401 21582 39280 Face 43160 26401 49229 21582 Face 43161 48626 21583 38835 Face 43162 6626 38613 21583 Face 43163 5861 21584 5862 Face 43164 5861 31665 21584 Face 43165 3174 21585 17447 Face 43166 3174 19381 21585 Face 43167 1628 21586 23656 Face 43168 1628 4534 21586 Face 43169 7351 21587 17066 Face 43170 7351 15148 21587 Face 43171 31573 21588 20599 Face 43172 31573 11274 21588 Face 43173 39797 36916 16331 Face 43174 3231 14994 21589 Face 43175 39923 21590 10706 Face 43176 9433 44385 21590 Face 43177 35235 21591 17969 Face 43178 4075 47043 21591 Face 43179 37699 21592 23089 Face 43180 6153 39714 21592 Face 43181 7400 21593 15631 Face 43182 31360 19311 38960 Face 43183 3075 21594 45328 Face 43184 3075 47259 21594 Face 43185 19075 21595 30366 Face 43186 46828 5220 21595 Face 43187 4454 21596 10083 Face 43188 4454 41802 21596 Face 43189 8180 43905 48445 Face 43190 8180 47873 21597 Face 43191 36879 21598 26366 Face 43192 8639 20189 21598 Face 43193 7995 21599 21523 Face 43194 7995 11247 21599 Face 43195 45494 21600 24614 Face 43196 7954 24956 32651 Face 43197 4214 21601 1034 Face 43198 4214 18019 21601 Face 43199 26427 21602 16596 Face 43200 26427 39550 21602 Face 43201 7527 21603 17993 Face 43202 7527 29126 21603 Face 43203 9230 21604 34758 Face 43204 9230 27381 21604 Face 43205 1048 21605 14530 Face 43206 23975 11020 21605 Face 43207 10429 21606 29888 Face 43208 10429 16002 21606 Face 43209 42405 21607 26748 Face 43210 22591 4092 31921 Face 43211 7300 41205 17991 Face 43212 49359 18811 21608 Face 43213 36692 21609 2445 Face 43214 18694 40045 21609 Face 43215 7873 49369 40235 Face 43216 7873 11523 49369 Face 43217 23095 21611 9447 Face 43218 41047 19652 21611 Face 43219 30732 21612 46127 Face 43220 30732 11788 21612 Face 43221 37203 21613 16976 Face 43222 21614 35531 41232 Face 43223 8430 21614 21613 Face 43224 8430 11658 21614 Face 43225 46474 33927 21724 Face 43226 6286 29773 21615 Face 43227 552 21616 30174 Face 43228 552 47306 38626 Face 43229 4597 24569 29881 Face 43230 4597 26960 21617 Face 43231 2678 21618 17783 Face 43232 2678 20138 21618 Face 43233 8683 21619 15615 Face 43234 8683 42078 21619 Face 43235 9366 21620 20216 Face 43236 9366 12341 21620 Face 43237 9441 21621 12113 Face 43238 21864 17502 21621 Face 43239 26312 40206 14536 Face 43240 31126 36532 40206 Face 43241 16596 21623 29111 Face 43242 16596 14317 21623 Face 43243 3956 21624 48670 Face 43244 29564 38803 21624 Face 43245 31891 21625 20076 Face 43246 32218 38478 21625 Face 43247 11471 21626 48256 Face 43248 11471 31568 21626 Face 43249 24431 21627 32222 Face 43250 3555 15648 21627 Face 43251 42392 21628 16521 Face 43252 28414 32179 21628 Face 43253 1117 46216 31615 Face 43254 37948 49311 21629 Face 43255 10261 21630 32829 Face 43256 10261 7713 21630 Face 43257 28884 21631 43398 Face 43258 28884 5174 21631 Face 43259 793 45340 11449 Face 43260 793 21761 45340 Face 43261 3618 21633 5618 Face 43262 46371 43 38816 Face 43263 48676 21634 17134 Face 43264 20833 37154 21634 Face 43265 383 21635 25372 Face 43266 383 21376 21635 Face 43267 1734 46559 14216 Face 43268 1734 3445 21636 Face 43269 29560 21637 9146 Face 43270 38244 20880 21637 Face 43271 3446 21638 28922 Face 43272 49550 6282 21638 Face 43273 14229 21639 32391 Face 43274 14229 36287 21639 Face 43275 14229 21640 7081 Face 43276 14229 18773 42016 Face 43277 2978 21641 12993 Face 43278 2978 49486 21641 Face 43279 47408 21642 11900 Face 43280 17996 5947 21642 Face 43281 22874 21643 39679 Face 43282 45837 15712 33260 Face 43283 2276 21644 29710 Face 43284 2276 49179 21644 Face 43285 46895 21645 31551 Face 43286 46895 15972 21645 Face 43287 12417 21646 3874 Face 43288 12417 872 21646 Face 43289 10596 21647 42118 Face 43290 39787 22732 21647 Face 43291 35334 23315 4204 Face 43292 21650 44194 21648 Face 43293 2813 21649 34731 Face 43294 21650 21648 35334 Face 43295 2813 21650 35334 Face 43296 48394 27378 21650 Face 43297 5253 21651 1630 Face 43298 5253 14337 21651 Face 43299 6174 35410 16474 Face 43300 27503 16312 21652 Face 43301 44201 21653 2920 Face 43302 44201 16191 21653 Face 43303 353 21654 25764 Face 43304 353 24106 21654 Face 43305 13821 21655 35089 Face 43306 49183 15173 21655 Face 43307 43505 21656 7116 Face 43308 21657 27186 40178 Face 43309 2155 21657 40178 Face 43310 2155 17156 21657 Face 43311 21659 21658 19872 Face 43312 16911 40241 21658 Face 43313 16911 21659 2777 Face 43314 16911 21658 21659 Face 43315 15591 21660 28127 Face 43316 15591 14625 21660 Face 43317 11864 21661 22714 Face 43318 11864 39527 21661 Face 43319 3861 21662 17960 Face 43320 3861 35397 21662 Face 43321 21664 21663 48894 Face 43322 8567 45357 21663 Face 43323 32784 21664 46470 Face 43324 8567 21663 21664 Face 43325 5507 21665 19864 Face 43326 5507 37243 21665 Face 43327 846 21666 24953 Face 43328 846 9605 21666 Face 43329 34928 21667 12633 Face 43330 23664 18480 21667 Face 43331 38543 21668 14093 Face 43332 38543 43190 21668 Face 43333 5260 21669 16577 Face 43334 5260 15119 21669 Face 43335 11245 21670 3362 Face 43336 11245 48003 21670 Face 43337 27409 24642 38810 Face 43338 5510 32973 21671 Face 43339 9993 21672 32497 Face 43340 9993 27181 21672 Face 43341 18852 21673 628 Face 43342 18852 30510 31491 Face 43343 48056 21674 34352 Face 43344 21675 15781 21674 Face 43345 9731 21675 21674 Face 43346 9731 39343 21675 Face 43347 30599 21676 10146 Face 43348 1963 15055 21676 Face 43349 1087 21677 40466 Face 43350 23399 20539 35335 Face 43351 3059 21678 15585 Face 43352 34480 36736 40494 Face 43353 34481 29862 9396 Face 43354 3059 15585 21679 Face 43355 4639 21680 21413 Face 43356 4639 12516 21680 Face 43357 21846 21681 34891 Face 43358 41063 39169 21681 Face 43359 1948 41063 21681 Face 43360 1948 14351 21682 Face 43361 3653 21683 29277 Face 43362 3653 9690 21683 Face 43363 750 21684 31610 Face 43364 32793 11794 21684 Face 43365 26276 21685 48804 Face 43366 40195 5237 21685 Face 43367 32005 49548 3512 Face 43368 11276 2825 39912 Face 43369 3683 21687 31371 Face 43370 3683 18436 21687 Face 43371 14671 21688 33864 Face 43372 14671 17418 21688 Face 43373 4289 48457 24201 Face 43374 4289 16244 48457 Face 43375 28357 21690 9384 Face 43376 40743 30911 21690 Face 43377 5827 21691 1265 Face 43378 5827 44086 21691 Face 43379 14895 21692 18161 Face 43380 14895 29412 21692 Face 43381 7421 21693 46991 Face 43382 7421 32779 21693 Face 43383 21695 21694 49495 Face 43384 43995 13543 30382 Face 43385 43995 21695 46543 Face 43386 7012 21694 21695 Face 43387 4988 21696 38658 Face 43388 37186 32613 21696 Face 43389 29308 21697 4435 Face 43390 47098 19436 21697 Face 43391 5423 21698 25695 Face 43392 5423 10828 21698 Face 43393 7247 21699 30303 Face 43394 32751 16594 21699 Face 43395 42734 21700 10167 Face 43396 42734 29812 21700 Face 43397 21702 21701 10594 Face 43398 12013 18901 45187 Face 43399 12013 21702 39608 Face 43400 12013 45187 21702 Face 43401 15144 21703 25075 Face 43402 36582 27506 21703 Face 43403 38102 21704 31679 Face 43404 38102 26581 21704 Face 43405 9925 21705 33944 Face 43406 9925 1049 21705 Face 43407 1524 21706 47697 Face 43408 1524 33189 21706 Face 43409 14660 21707 16985 Face 43410 49979 5257 21707 Face 43411 43027 21708 31051 Face 43412 27491 33891 21708 Face 43413 43027 21709 21708 Face 43414 43027 27055 21709 Face 43415 17205 21710 4582 Face 43416 17205 12015 21710 Face 43417 11511 21711 35507 Face 43418 11511 22465 21711 Face 43419 3305 21712 13979 Face 43420 3305 13825 21712 Face 43421 9842 21713 17056 Face 43422 33670 8290 43443 Face 43423 84 21714 10461 Face 43424 84 21319 21714 Face 43425 2132 21715 19699 Face 43426 2132 24521 21715 Face 43427 28662 21716 17625 Face 43428 10340 1635 21716 Face 43429 4313 21717 7828 Face 43430 42302 10459 21717 Face 43431 9005 21718 38712 Face 43432 9005 8146 21718 Face 43433 31809 21719 11519 Face 43434 23437 10808 21719 Face 43435 21721 21720 36925 Face 43436 3915 6706 21720 Face 43437 3915 21721 24904 Face 43438 3915 21720 21721 Face 43439 20342 21722 35913 Face 43440 44540 37401 21722 Face 43441 15436 21723 46801 Face 43442 31709 20839 21723 Face 43443 42097 21724 33927 Face 43444 23617 17258 44761 Face 43445 9629 21725 21290 Face 43446 36540 9628 21725 Face 43447 12361 21726 20996 Face 43448 12361 27318 21726 Face 43449 12361 21727 27318 Face 43450 34061 11930 21727 Face 43451 2636 21728 14631 Face 43452 28129 33600 21728 Face 43453 2672 21729 7908 Face 43454 36904 21302 33265 Face 43455 25523 21730 13852 Face 43456 8712 25429 21730 Face 43457 15832 21731 17699 Face 43458 21732 26154 21731 Face 43459 15832 21732 21731 Face 43460 15832 47155 21732 Face 43461 47883 21733 10948 Face 43462 47883 4862 21733 Face 43463 4890 21734 15640 Face 43464 4890 17618 21734 Face 43465 5355 21735 47928 Face 43466 35339 11796 32671 Face 43467 12624 21736 14095 Face 43468 33797 40746 21736 Face 43469 3622 21738 19161 Face 43470 3622 33240 21738 Face 43471 21737 21738 33240 Face 43472 21737 34201 21738 Face 43473 2039 21739 15188 Face 43474 2039 11344 21739 Face 43475 5128 21740 44497 Face 43476 5128 13578 21740 Face 43477 11971 21741 4631 Face 43478 11971 31120 21741 Face 43479 11599 21742 28516 Face 43480 11599 34547 37570 Face 43481 43972 21743 2599 Face 43482 36672 14418 21743 Face 43483 24264 21744 5929 Face 43484 1440 35253 21744 Face 43485 27061 21745 12666 Face 43486 9879 122 43131 Face 43487 11703 21746 5266 Face 43488 11703 1763 21746 Face 43489 48725 21747 19014 Face 43490 48725 42434 21747 Face 43491 10343 21748 23785 Face 43492 10343 37670 21748 Face 43493 4661 21749 10586 Face 43494 4661 37490 21749 Face 43495 3858 21750 40857 Face 43496 32772 49059 21750 Face 43497 39244 47914 34171 Face 43498 34268 41383 21751 Face 43499 1777 21752 28832 Face 43500 1777 19115 21752 Face 43501 12813 21753 27560 Face 43502 33451 7616 43166 Face 43503 6715 21754 8523 Face 43504 6715 12881 21754 Face 43505 9828 21755 43944 Face 43506 21821 19062 21755 Face 43507 9248 21756 17556 Face 43508 9248 4472 21756 Face 43509 47215 47912 27328 Face 43510 6902 47345 21757 Face 43511 6902 47215 15945 Face 43512 6902 21757 47215 Face 43513 5314 21759 40359 Face 43514 36774 17253 21759 Face 43515 38280 21760 34962 Face 43516 45362 22459 21760 Face 43517 44082 21761 11094 Face 43518 45362 21760 38280 Face 43519 10637 21762 34669 Face 43520 10637 658 21762 Face 43521 1384 21763 40305 Face 43522 1384 12239 21763 Face 43523 9784 21764 37951 Face 43524 9784 38331 21764 Face 43525 33397 21765 6028 Face 43526 33397 29736 21765 Face 43527 11359 21766 7467 Face 43528 30738 32319 21766 Face 43529 6336 21767 24135 Face 43530 6336 36458 21767 Face 43531 6257 21768 22424 Face 43532 6257 44475 21768 Face 43533 11955 49854 1739 Face 43534 11955 16719 21769 Face 43535 186 21770 17730 Face 43536 186 45426 21770 Face 43537 12179 21771 39901 Face 43538 12179 6218 21771 Face 43539 4011 21772 16420 Face 43540 4011 10826 21772 Face 43541 12397 21773 2464 Face 43542 21786 28928 21773 Face 43543 6841 21774 33544 Face 43544 6841 11261 21774 Face 43545 191 21775 32728 Face 43546 191 46554 21775 Face 43547 1332 42165 40557 Face 43548 38023 35497 21776 Face 43549 10855 21777 43475 Face 43550 10855 17761 21777 Face 43551 6420 21778 13388 Face 43552 42661 18965 21778 Face 43553 10025 21779 24712 Face 43554 10025 2028 21779 Face 43555 1750 21780 14712 Face 43556 1750 36502 21780 Face 43557 46825 21781 22711 Face 43558 10787 6795 21781 Face 43559 8769 21782 555 Face 43560 8769 15435 21782 Face 43561 49463 21783 47533 Face 43562 49463 29362 21783 Face 43563 942 21784 44005 Face 43564 942 47533 21784 Face 43565 12639 21785 9359 Face 43566 12639 29867 21785 Face 43567 12397 21786 21773 Face 43568 12397 18047 21786 Face 43569 4155 21787 4575 Face 43570 4155 17922 21787 Face 43571 7929 21788 43683 Face 43572 7929 44912 21788 Face 43573 6959 21789 42358 Face 43574 6959 39629 21789 Face 43575 9736 21790 18433 Face 43576 9736 20253 21790 Face 43577 3646 21791 24334 Face 43578 3646 17431 21791 Face 43579 8680 21792 48068 Face 43580 8680 29923 35456 Face 43581 213 21793 35233 Face 43582 213 45200 21793 Face 43583 10700 21794 29482 Face 43584 10700 35427 21794 Face 43585 18527 21795 18528 Face 43586 18527 26982 21795 Face 43587 2196 21796 22583 Face 43588 2196 17167 38971 Face 43589 3826 21797 18571 Face 43590 3826 36594 21797 Face 43591 8632 21798 36864 Face 43592 43135 46813 21798 Face 43593 2583 21799 42723 Face 43594 2583 30784 21799 Face 43595 10246 21800 29280 Face 43596 10246 15305 21800 Face 43597 14402 21801 3513 Face 43598 25048 31311 21801 Face 43599 43820 21802 35154 Face 43600 2370 14208 21802 Face 43601 48468 21803 9781 Face 43602 18438 8542 47941 Face 43603 49179 21804 13105 Face 43604 11866 21502 21804 Face 43605 32706 21805 5659 Face 43606 4860 39797 21805 Face 43607 14509 21806 24800 Face 43608 26067 8111 21806 Face 43609 35972 21807 27359 Face 43610 35972 10040 21807 Face 43611 745 21808 10872 Face 43612 745 37091 21808 Face 43613 14821 43237 2833 Face 43614 14821 20427 21809 Face 43615 9759 21810 20030 Face 43616 9759 5154 42076 Face 43617 3172 21811 12972 Face 43618 45071 26863 21811 Face 43619 781 21812 45135 Face 43620 781 14681 21812 Face 43621 5065 47244 20913 Face 43622 21814 27646 33021 Face 43623 5065 21814 47244 Face 43624 42778 19286 21814 Face 43625 1566 21815 31438 Face 43626 1566 13282 21815 Face 43627 11496 21816 43518 Face 43628 11496 14233 21816 Face 43629 2188 21817 13713 Face 43630 40432 18263 21817 Face 43631 42105 38607 25449 Face 43632 2129 7740 38607 Face 43633 21820 41280 6343 Face 43634 9828 29247 21819 Face 43635 21821 21820 19062 Face 43636 21821 41280 21820 Face 43637 9828 21821 21755 Face 43638 9828 41280 21821 Face 43639 11010 43529 8898 Face 43640 11010 5848 43529 Face 43641 29634 43490 16954 Face 43642 1843 31150 21823 Face 43643 5460 39717 21384 Face 43644 5460 15400 39717 Face 43645 29385 21825 12993 Face 43646 29385 12673 21825 Face 43647 12697 21826 29677 Face 43648 12697 17528 21826 Face 43649 48492 21827 24236 Face 43650 21502 11866 21827 Face 43651 1249 21828 8463 Face 43652 1249 14909 21828 Face 43653 42834 21829 15217 Face 43654 42835 26009 21829 Face 43655 14620 21830 36797 Face 43656 14620 3248 21830 Face 43657 47218 21831 14223 Face 43658 47218 33239 21831 Face 43659 7200 21832 40815 Face 43660 7200 12430 21832 Face 43661 4089 21833 41405 Face 43662 4089 42883 21833 Face 43663 14907 21834 27847 Face 43664 14907 39261 21834 Face 43665 39375 21835 5167 Face 43666 35847 23378 21835 Face 43667 30943 21836 5714 Face 43668 22842 1952 21836 Face 43669 8839 21837 24389 Face 43670 8839 39839 21837 Face 43671 33974 21838 44638 Face 43672 22900 42693 21838 Face 43673 21840 21839 31721 Face 43674 48422 22878 21839 Face 43675 28796 21840 24197 Face 43676 48422 21839 21840 Face 43677 8384 21841 27968 Face 43678 21842 36412 21841 Face 43679 8384 21842 21841 Face 43680 45310 16485 40558 Face 43681 35004 21843 17908 Face 43682 1053 15581 21843 Face 43683 30181 21844 27162 Face 43684 30181 21282 46136 Face 43685 10633 21845 11657 Face 43686 10633 1153 21845 Face 43687 1948 21846 10226 Face 43688 1948 21681 21846 Face 43689 4167 21847 13921 Face 43690 4167 43669 37421 Face 43691 21849 21848 18256 Face 43692 559 28162 21848 Face 43693 48215 21849 9632 Face 43694 559 21848 21849 Face 43695 48814 21850 6637 Face 43696 1860 8259 21850 Face 43697 3031 21851 34604 Face 43698 22004 35348 21851 Face 43699 44705 21852 35376 Face 43700 44705 41803 21852 Face 43701 23134 21853 33045 Face 43702 45221 11721 21853 Face 43703 49897 47746 29094 Face 43704 10606 38602 21854 Face 43705 21856 21855 6942 Face 43706 21856 27189 21855 Face 43707 4606 21856 6942 Face 43708 4606 34799 21856 Face 43709 4891 42047 5551 Face 43710 4891 31511 21857 Face 43711 5250 21858 32995 Face 43712 5250 12830 21858 Face 43713 11183 21859 43384 Face 43714 38375 11881 21859 Face 43715 24297 21860 8251 Face 43716 7399 18221 21860 Face 43717 10145 21861 30599 Face 43718 10145 30061 21861 Face 43719 4042 21862 47969 Face 43720 4042 38472 21862 Face 43721 4520 21863 15792 Face 43722 4520 42556 21863 Face 43723 9441 21864 21621 Face 43724 9441 2467 21864 Face 43725 45663 21865 9662 Face 43726 4429 42579 21865 Face 43727 34826 21866 33110 Face 43728 36694 41656 21866 Face 43729 2406 21867 40441 Face 43730 2406 34272 21867 Face 43731 3471 21868 13685 Face 43732 28578 46839 21868 Face 43733 6275 21869 18395 Face 43734 43963 15578 21869 Face 43735 18749 40487 21531 Face 43736 18749 26169 21870 Face 43737 1310 21871 38209 Face 43738 26422 20795 21871 Face 43739 5518 21872 16451 Face 43740 5518 12545 21872 Face 43741 4382 21873 4383 Face 43742 4382 29703 21873 Face 43743 46381 21874 28239 Face 43744 4990 13866 49755 Face 43745 21874 29562 20296 Face 43746 49755 18025 29562 Face 43747 22300 21876 7198 Face 43748 2541 13247 21876 Face 43749 4525 21877 22636 Face 43750 4525 16925 36880 Face 43751 1609 21878 13730 Face 43752 1609 47850 21878 Face 43753 9074 21879 32848 Face 43754 24812 15401 36036 Face 43755 43890 21880 26544 Face 43756 38529 35980 21880 Face 43757 35494 21881 39580 Face 43758 35494 18910 21881 Face 43759 48848 21882 17696 Face 43760 48849 9918 21882 Face 43761 26200 42280 6545 Face 43762 2775 19157 21883 Face 43763 26960 21884 17739 Face 43764 3737 39615 21884 Face 43765 15869 21885 44679 Face 43766 15869 15868 21885 Face 43767 7515 21886 21737 Face 43768 7515 35053 21886 Face 43769 10099 21887 16567 Face 43770 10099 34681 21887 Face 43771 21889 48987 12117 Face 43772 27847 40062 21888 Face 43773 3680 21889 38099 Face 43774 3680 21888 21889 Face 43775 37987 21890 3260 Face 43776 37986 1651 21890 Face 43777 601 21891 28473 Face 43778 601 14671 21891 Face 43779 36836 21892 210 Face 43780 9586 1259 21892 Face 43781 31149 21893 10486 Face 43782 31149 14190 21893 Face 43783 3598 21894 32707 Face 43784 36989 24722 21894 Face 43785 10788 21895 30403 Face 43786 10788 48278 21895 Face 43787 3749 21896 2088 Face 43788 36968 18056 21896 Face 43789 11492 21897 32293 Face 43790 11492 11855 21897 Face 43791 32743 21898 7216 Face 43792 32743 8059 21898 Face 43793 4493 21899 22294 Face 43794 4493 16069 21899 Face 43795 13789 21900 6659 Face 43796 13789 38385 21900 Face 43797 48805 21901 36003 Face 43798 7733 20858 21901 Face 43799 33346 21902 38299 Face 43800 33347 49765 21902 Face 43801 27788 21903 14694 Face 43802 9762 33510 21903 Face 43803 3039 21904 38690 Face 43804 41725 301 21904 Face 43805 21906 21905 27636 Face 43806 21906 12261 44608 Face 43807 9046 21906 12400 Face 43808 9046 6047 21906 Face 43809 31971 41391 3511 Face 43810 156 10826 21907 Face 43811 156 21908 21772 Face 43812 31971 42099 21908 Face 43813 5022 21909 33960 Face 43814 5022 18588 21909 Face 43815 42792 21910 26735 Face 43816 1946 3352 21910 Face 43817 9901 21911 9059 Face 43818 42732 32424 21911 Face 43819 15439 21912 31608 Face 43820 15439 1027 47930 Face 43821 46458 21913 42240 Face 43822 9344 39007 21913 Face 43823 2540 41067 33580 Face 43824 2540 17978 21914 Face 43825 14558 39259 37019 Face 43826 14558 30479 21915 Face 43827 8118 21916 41453 Face 43828 8118 7316 21916 Face 43829 32541 49363 19479 Face 43830 3802 15688 21917 Face 43831 34658 21918 30108 Face 43832 34660 19136 41325 Face 43833 3145 21919 38071 Face 43834 28203 38748 21919 Face 43835 38551 21920 2147 Face 43836 7146 14280 21920 Face 43837 2933 21921 49162 Face 43838 2933 45185 21921 Face 43839 7590 21922 14762 Face 43840 7590 20142 21922 Face 43841 34020 21923 12780 Face 43842 3684 30726 21923 Face 43843 27589 21924 13746 Face 43844 4328 7141 21924 Face 43845 47655 21925 203 Face 43846 39057 3378 33564 Face 43847 11086 21926 47010 Face 43848 11086 34554 21926 Face 43849 3209 21927 13923 Face 43850 3209 13925 21927 Face 43851 3925 21928 16989 Face 43852 37679 11514 21928 Face 43853 3329 26970 17193 Face 43854 3329 42731 21929 Face 43855 2580 21930 10587 Face 43856 2580 1821 44756 Face 43857 8821 21931 15566 Face 43858 8821 27162 21931 Face 43859 4751 30787 18640 Face 43860 4751 17746 44074 Face 43861 5839 21933 10594 Face 43862 5839 4838 21933 Face 43863 11532 21934 24177 Face 43864 39800 29130 21934 Face 43865 101 21935 29181 Face 43866 101 40461 21935 Face 43867 12216 21936 21524 Face 43868 12216 1841 21936 Face 43869 32334 21937 9005 Face 43870 2688 26071 34702 Face 43871 29052 21938 15120 Face 43872 2137 12098 21938 Face 43873 18201 21939 40632 Face 43874 18201 44205 21939 Face 43875 22286 31845 17913 Face 43876 3434 25745 21940 Face 43877 1094 21941 11387 Face 43878 1094 7338 21941 Face 43879 48372 21942 33180 Face 43880 41258 17298 21942 Face 43881 8359 21943 8849 Face 43882 26536 19064 21943 Face 43883 46495 21944 30663 Face 43884 29204 10027 21944 Face 43885 32817 32519 24744 Face 43886 9422 34471 21945 Face 43887 80 37889 19463 Face 43888 80 29063 21946 Face 43889 7713 21947 19467 Face 43890 7713 10261 21947 Face 43891 6261 21948 21475 Face 43892 6261 41614 21948 Face 43893 1305 21949 37316 Face 43894 1305 40794 21949 Face 43895 194 21950 14027 Face 43896 41057 32183 21950 Face 43897 1676 21951 47479 Face 43898 34984 11257 29434 Face 43899 9032 21952 39559 Face 43900 9032 45946 21952 Face 43901 15344 21953 9160 Face 43902 15344 14392 21953 Face 43903 16684 21954 9304 Face 43904 16684 16685 21954 Face 43905 3729 21955 22157 Face 43906 3729 14911 21955 Face 43907 48823 21956 4985 Face 43908 32071 20988 21956 Face 43909 2561 21957 42082 Face 43910 2561 14719 21957 Face 43911 29861 36070 46199 Face 43912 6106 36171 21958 Face 43913 9813 21959 6427 Face 43914 9813 4918 21959 Face 43915 668 21960 41221 Face 43916 668 5400 21960 Face 43917 4133 21961 28154 Face 43918 4133 39408 21961 Face 43919 13437 21962 20680 Face 43920 13437 29850 21962 Face 43921 14402 21963 34291 Face 43922 14402 3513 21963 Face 43923 4099 29582 18950 Face 43924 25482 30265 29582 Face 43925 10276 21965 11746 Face 43926 10276 23339 21965 Face 43927 5013 29067 15771 Face 43928 46483 27661 29067 Face 43929 11428 21967 35576 Face 43930 21968 10650 21967 Face 43931 11428 21968 21967 Face 43932 27283 15930 32337 Face 43933 7824 21969 16430 Face 43934 7824 44188 21969 Face 43935 41876 21970 30643 Face 43936 41876 30793 21970 Face 43937 29887 38242 1203 Face 43938 45802 30249 21971 Face 43939 2328 21972 9195 Face 43940 2328 34789 21972 Face 43941 1492 21973 23359 Face 43942 40754 21171 21973 Face 43943 23624 40877 24375 Face 43944 3138 8515 40877 Face 43945 3685 21975 9496 Face 43946 3685 38202 21975 Face 43947 42422 21976 5243 Face 43948 4092 45463 21976 Face 43949 8140 21977 49583 Face 43950 8140 44501 21977 Face 43951 43924 40236 14237 Face 43952 9448 33998 21978 Face 43953 7259 21979 531 Face 43954 38828 32195 21979 Face 43955 2273 21980 30301 Face 43956 2273 20262 21980 Face 43957 1972 21981 34368 Face 43958 1972 34708 48314 Face 43959 6472 21982 9182 Face 43960 6472 22499 21982 Face 43961 10685 21983 33724 Face 43962 10685 2104 38697 Face 43963 34032 21984 6770 Face 43964 2183 43784 21984 Face 43965 2995 21985 48157 Face 43966 24112 13959 21985 Face 43967 21942 21986 12118 Face 43968 21942 14396 21986 Face 43969 2163 21987 39869 Face 43970 2163 41481 21987 Face 43971 45007 21988 17299 Face 43972 2163 39869 21988 Face 43973 11659 21989 41199 Face 43974 11659 41710 21989 Face 43975 11659 33363 37554 Face 43976 11659 21308 33363 Face 43977 13452 21991 24320 Face 43978 28719 7715 21991 Face 43979 23341 21992 11995 Face 43980 6198 43860 21992 Face 43981 8153 38418 36962 Face 43982 8153 623 21993 Face 43983 24840 21994 14603 Face 43984 24839 10184 47587 Face 43985 6981 21995 13949 Face 43986 6981 26001 21995 Face 43987 27567 21996 47515 Face 43988 4771 23715 21996 Face 43989 40333 29087 17165 Face 43990 5898 28210 29087 Face 43991 9895 21998 17799 Face 43992 9895 5414 21998 Face 43993 40501 21999 7886 Face 43994 40501 30230 40486 Face 43995 3490 38113 15085 Face 43996 33790 15084 38113 Face 43997 26914 22001 48800 Face 43998 7827 24103 22001 Face 43999 4558 22002 34866 Face 44000 46359 25262 22002 Face 44001 16591 22003 3349 Face 44002 16591 24073 49085 Face 44003 3031 22004 21851 Face 44004 3031 6332 22004 Face 44005 6229 44408 26551 Face 44006 6229 29814 44408 Face 44007 9983 22006 16836 Face 44008 9983 30219 22006 Face 44009 10888 22007 36701 Face 44010 10888 141 48966 Face 44011 8240 22008 30513 Face 44012 40595 29406 22008 Face 44013 6896 35678 31807 Face 44014 6896 25385 35678 Face 44015 3534 22010 20277 Face 44016 37102 12302 44667 Face 44017 40614 22011 14419 Face 44018 7577 34608 22011 Face 44019 29782 22012 24516 Face 44020 29782 19250 22012 Face 44021 1074 22013 20620 Face 44022 1074 6859 22013 Face 44023 7847 22014 26741 Face 44024 7847 29211 22014 Face 44025 5818 22015 40843 Face 44026 5818 27939 22015 Face 44027 859 22016 16956 Face 44028 24053 19209 49842 Face 44029 944 22017 6835 Face 44030 944 36401 44015 Face 44031 23340 32985 34912 Face 44032 4251 31909 22018 Face 44033 16180 22019 43548 Face 44034 16180 12648 22019 Face 44035 11406 22020 45989 Face 44036 11406 11639 22020 Face 44037 3214 22021 39937 Face 44038 41697 22954 22021 Face 44039 41697 22022 22954 Face 44040 41697 13263 47606 Face 44041 98 34732 22407 Face 44042 98 44851 22023 Face 44043 3840 22024 14432 Face 44044 40005 36484 22024 Face 44045 15840 22025 43067 Face 44046 15840 48492 26428 Face 44047 41045 22026 4915 Face 44048 6919 43152 22026 Face 44049 4081 37854 24247 Face 44050 4081 539 22027 Face 44051 4081 22028 539 Face 44052 4081 48635 22028 Face 44053 45484 43064 804 Face 44054 4750 11798 22029 Face 44055 10021 22030 23348 Face 44056 10021 26258 22030 Face 44057 4332 22031 12192 Face 44058 4332 4331 22031 Face 44059 7477 22032 30400 Face 44060 7477 7478 22032 Face 44061 10717 22033 44606 Face 44062 10717 48687 22033 Face 44063 9877 22034 35353 Face 44064 9877 23478 22034 Face 44065 37243 41533 48101 Face 44066 35853 420 22035 Face 44067 4574 22036 28226 Face 44068 4574 11201 22036 Face 44069 4070 22037 41773 Face 44070 4070 29352 22037 Face 44071 4070 22038 29352 Face 44072 4070 9863 22038 Face 44073 6512 32961 40023 Face 44074 6512 29598 22039 Face 44075 1218 22040 30946 Face 44076 1218 10518 22040 Face 44077 1410 49027 17149 Face 44078 1410 15265 22041 Face 44079 48678 22042 39895 Face 44080 3763 7932 35341 Face 44081 35100 22043 36867 Face 44082 3237 2201 44360 Face 44083 571 22044 37924 Face 44084 571 45254 22045 Face 44085 22044 22045 45254 Face 44086 22044 571 22045 Face 44087 6453 22046 40514 Face 44088 22047 13025 35487 Face 44089 6453 22047 22046 Face 44090 6453 29055 22047 Face 44091 6453 22048 29055 Face 44092 6453 41722 22048 Face 44093 10674 22049 18925 Face 44094 10674 37184 22049 Face 44095 1592 22050 19323 Face 44096 27196 23482 22050 Face 44097 1592 22051 10746 Face 44098 1592 46410 35575 Face 44099 10450 22052 14469 Face 44100 10450 18857 43374 Face 44101 21557 22053 35844 Face 44102 21557 48702 22053 Face 44103 32000 22054 47884 Face 44104 6542 44363 22054 Face 44105 16211 22055 17264 Face 44106 16211 9047 42043 Face 44107 21190 22056 13067 Face 44108 35909 13508 22056 Face 44109 43246 22057 34760 Face 44110 13284 38794 22057 Face 44111 9455 48012 8895 Face 44112 9455 22059 22058 Face 44113 1697 22059 17886 Face 44114 28437 22058 22059 Face 44115 7243 22060 18773 Face 44116 7243 40232 22060 Face 44117 22062 22061 31926 Face 44118 36398 18769 22061 Face 44119 5107 22062 28345 Face 44120 43190 31524 36398 Face 44121 21002 22063 21001 Face 44122 21002 1863 22063 Face 44123 8407 22064 3890 Face 44124 8407 17711 49307 Face 44125 24454 22065 19790 Face 44126 24454 27574 22065 Face 44127 7748 35811 37677 Face 44128 7748 17514 22066 Face 44129 45935 22067 45418 Face 44130 45935 28764 22067 Face 44131 30386 46489 7848 Face 44132 14727 2707 22068 Face 44133 7295 22069 35239 Face 44134 7295 41337 22069 Face 44135 35273 22070 7242 Face 44136 7241 18969 22070 Face 44137 13139 22071 24403 Face 44138 13139 2598 22071 Face 44139 18164 22072 22787 Face 44140 40199 27550 22072 Face 44141 33941 30509 10956 Face 44142 360 27291 22073 Face 44143 31273 22074 5003 Face 44144 31273 49272 22074 Face 44145 4434 22075 17354 Face 44146 4434 26725 22075 Face 44147 33283 22076 4601 Face 44148 11814 11815 22076 Face 44149 717 22077 21456 Face 44150 28579 10466 22077 Face 44151 8077 22078 19413 Face 44152 8077 47482 28881 Face 44153 32076 29226 8563 Face 44154 34983 24095 22079 Face 44155 4452 22080 11364 Face 44156 4452 6944 22080 Face 44157 4452 22081 49408 Face 44158 22082 4919 22081 Face 44159 4452 22082 22081 Face 44160 4452 11364 22082 Face 44161 2583 22083 10458 Face 44162 2583 10559 22083 Face 44163 22085 22084 12165 Face 44164 22085 38279 22084 Face 44165 3426 22085 12930 Face 44166 3426 38279 22085 Face 44167 8491 22086 10284 Face 44168 8491 33674 22086 Face 44169 22086 22087 39842 Face 44170 22086 40814 22087 Face 44171 1236 22088 7368 Face 44172 44351 31333 22088 Face 44173 41921 22089 18410 Face 44174 8557 14687 22089 Face 44175 28497 22090 40376 Face 44176 337 4135 22090 Face 44177 8859 22091 44300 Face 44178 8859 324 45443 Face 44179 41882 28299 21569 Face 44180 14807 38046 22092 Face 44181 14303 42054 10289 Face 44182 14303 38455 22093 Face 44183 45687 43656 28854 Face 44184 5384 19942 22094 Face 44185 5629 22095 40947 Face 44186 42384 18245 22095 Face 44187 6427 22096 4153 Face 44188 22619 23025 22096 Face 44189 28202 22097 18377 Face 44190 28202 43479 22097 Face 44191 23852 22098 33070 Face 44192 23853 27583 22098 Face 44193 2239 22099 459 Face 44194 22350 13259 22099 Face 44195 9801 22100 20864 Face 44196 9801 5456 22100 Face 44197 3371 22101 16680 Face 44198 3371 14478 22101 Face 44199 37165 22102 2894 Face 44200 4310 27645 22102 Face 44201 13041 22103 46531 Face 44202 47674 43240 22103 Face 44203 45589 22104 32333 Face 44204 45589 13880 22104 Face 44205 38511 43184 9911 Face 44206 5686 39757 22105 Face 44207 2986 22106 13221 Face 44208 2986 8243 22106 Face 44209 12475 22107 2060 Face 44210 12475 24147 22107 Face 44211 8296 22108 8930 Face 44212 8296 26283 22108 Face 44213 4249 22109 15160 Face 44214 4249 15764 22109 Face 44215 22111 22110 7356 Face 44216 4679 29858 22110 Face 44217 4679 22111 8380 Face 44218 4679 22110 22111 Face 44219 2977 22112 38532 Face 44220 41778 42896 22112 Face 44221 26566 22113 21064 Face 44222 7439 15957 22113 Face 44223 7150 22114 33424 Face 44224 22115 28677 22114 Face 44225 7150 22115 22114 Face 44226 7150 25473 22115 Face 44227 25595 22116 28571 Face 44228 282 36531 22116 Face 44229 5155 22117 44656 Face 44230 5155 10484 42273 Face 44231 1739 22118 30297 Face 44232 1739 18816 22118 Face 44233 16638 22119 9256 Face 44234 16638 26016 22119 Face 44235 45405 22120 18156 Face 44236 2601 9804 22120 Face 44237 1485 34674 42178 Face 44238 1485 43052 34674 Face 44239 2547 22122 21627 Face 44240 2547 16954 22122 Face 44241 12289 22123 29230 Face 44242 12289 44158 22123 Face 44243 5455 22124 260 Face 44244 5455 19064 22124 Face 44245 48616 22125 36128 Face 44246 5902 14174 22125 Face 44247 2878 22126 9956 Face 44248 39610 9267 22126 Face 44249 12325 22127 30083 Face 44250 12325 32073 22127 Face 44251 1966 22128 7412 Face 44252 1966 40262 22128 Face 44253 14418 22129 25561 Face 44254 14418 19244 22129 Face 44255 1783 36231 21383 Face 44256 1783 18409 22130 Face 44257 4107 22131 43621 Face 44258 4107 36302 22131 Face 44259 9402 22132 32654 Face 44260 25400 1468 22132 Face 44261 7380 22133 11455 Face 44262 7380 44275 22133 Face 44263 22166 22134 17461 Face 44264 37028 46328 22134 Face 44265 27815 22135 3564 Face 44266 38265 19919 22135 Face 44267 13299 22136 32582 Face 44268 23597 14736 22136 Face 44269 2052 22137 47799 Face 44270 27538 34047 22137 Face 44271 800 22138 3631 Face 44272 800 24352 22138 Face 44273 13668 22139 1964 Face 44274 13668 4361 22139 Face 44275 10651 22140 6348 Face 44276 10651 5479 22140 Face 44277 26641 36885 9324 Face 44278 7006 39980 36885 Face 44279 48066 22142 36476 Face 44280 35974 12942 22142 Face 44281 1227 48066 18168 Face 44282 1227 22142 48066 Face 44283 4521 22144 30095 Face 44284 4521 44661 22144 Face 44285 33735 22145 18359 Face 44286 42065 7302 22145 Face 44287 2867 22146 14997 Face 44288 35042 43614 22146 Face 44289 319 22147 11208 Face 44290 31464 27711 22147 Face 44291 10191 22148 20835 Face 44292 10191 15191 22148 Face 44293 9192 22149 46056 Face 44294 9192 14266 22149 Face 44295 42602 22150 1862 Face 44296 6631 19004 22150 Face 44297 10217 22151 35720 Face 44298 10217 12248 22151 Face 44299 42015 22152 49646 Face 44300 43762 17366 22152 Face 44301 41861 22153 25426 Face 44302 12098 42705 22153 Face 44303 12211 22154 4903 Face 44304 12211 2263 22154 Face 44305 9556 22155 3991 Face 44306 9556 14394 22155 Face 44307 41510 48569 29709 Face 44308 43855 24946 22156 Face 44309 33965 22157 21955 Face 44310 10173 33616 22157 Face 44311 1995 22158 6324 Face 44312 1995 13128 22158 Face 44313 24217 36436 26899 Face 44314 8218 44808 22159 Face 44315 3497 47725 19486 Face 44316 3497 5695 47725 Face 44317 43849 22161 46911 Face 44318 2375 20694 22161 Face 44319 1736 22162 4360 Face 44320 1736 6789 22162 Face 44321 34002 22163 1093 Face 44322 4647 49530 22163 Face 44323 3291 22164 13464 Face 44324 22165 24286 22164 Face 44325 3291 22165 22164 Face 44326 40986 18535 22165 Face 44327 5473 22166 17460 Face 44328 37028 22134 22166 Face 44329 7125 22167 15452 Face 44330 7125 15421 22167 Face 44331 1792 22168 8440 Face 44332 36772 27468 22168 Face 44333 1511 22169 28482 Face 44334 38411 26232 22169 Face 44335 12063 22170 16706 Face 44336 12063 18938 22170 Face 44337 7588 22171 35830 Face 44338 39074 23530 22171 Face 44339 23081 22172 49892 Face 44340 441 19526 22172 Face 44341 16581 22173 3595 Face 44342 16581 38286 22173 Face 44343 1022 22174 26224 Face 44344 1022 5750 22174 Face 44345 22176 22175 29685 Face 44346 45400 10585 22175 Face 44347 470 22176 37380 Face 44348 470 22175 22176 Face 44349 8287 22177 29355 Face 44350 38915 28069 22177 Face 44351 10355 22178 17106 Face 44352 10355 19153 22178 Face 44353 44802 22179 38745 Face 44354 12369 23429 22179 Face 44355 12369 44802 13739 Face 44356 12369 22179 44802 Face 44357 8627 22181 10216 Face 44358 39410 15373 33972 Face 44359 42721 22182 41706 Face 44360 45590 19740 22182 Face 44361 40814 22183 10136 Face 44362 3751 35816 22183 Face 44363 36969 22184 20567 Face 44364 35297 13455 22184 Face 44365 3706 22185 20605 Face 44366 3706 30123 22185 Face 44367 46711 34627 13470 Face 44368 35679 16394 22186 Face 44369 9065 42421 17266 Face 44370 9065 31239 42421 Face 44371 2249 22188 9590 Face 44372 2249 23797 22188 Face 44373 8478 22189 35580 Face 44374 8478 16007 22189 Face 44375 339 22190 17787 Face 44376 339 17750 22190 Face 44377 506 22191 13224 Face 44378 506 47548 22191 Face 44379 15234 22192 610 Face 44380 30782 7056 22192 Face 44381 3974 22193 16783 Face 44382 3974 28231 22193 Face 44383 22193 22194 3456 Face 44384 22193 47456 22194 Face 44385 17222 22195 18000 Face 44386 17222 5880 22195 Face 44387 4528 22196 30778 Face 44388 4528 24618 22196 Face 44389 2890 22197 26121 Face 44390 2890 35606 22197 Face 44391 7102 22198 11402 Face 44392 7102 36386 22198 Face 44393 33404 22199 42050 Face 44394 2962 5516 22199 Face 44395 4870 48123 30256 Face 44396 4870 31007 48123 Face 44397 7757 22201 17617 Face 44398 7757 18049 22201 Face 44399 880 22202 7095 Face 44400 880 32703 22202 Face 44401 5438 22203 18917 Face 44402 5438 13262 22203 Face 44403 36983 32603 39222 Face 44404 3009 13946 22204 Face 44405 2308 22205 22206 Face 44406 30993 24317 22205 Face 44407 28609 22206 22205 Face 44408 7866 25423 22206 Face 44409 7866 22207 13645 Face 44410 7866 22206 28609 Face 44411 26733 22208 6044 Face 44412 16005 16765 22208 Face 44413 12514 22209 30200 Face 44414 12514 18998 22209 Face 44415 1555 22210 30435 Face 44416 1555 30204 22210 Face 44417 26349 22211 31906 Face 44418 27668 10866 22211 Face 44419 9577 22212 37188 Face 44420 9577 16523 22212 Face 44421 45259 22213 34584 Face 44422 11847 12072 22213 Face 44423 40366 22214 48384 Face 44424 519 47871 22214 Face 44425 16311 22215 1303 Face 44426 42092 21440 22215 Face 44427 5738 22216 37584 Face 44428 5738 5735 22216 Face 44429 2840 22217 17204 Face 44430 36393 38799 43459 Face 44431 40925 22218 19315 Face 44432 1292 7154 22218 Face 44433 3734 22219 49015 Face 44434 3734 21229 22219 Face 44435 13499 22220 22712 Face 44436 13499 3299 22220 Face 44437 448 22221 14218 Face 44438 448 16093 22221 Face 44439 8850 22222 13892 Face 44440 31651 7030 22222 Face 44441 34666 22223 25574 Face 44442 16352 41569 22223 Face 44443 49449 22224 39092 Face 44444 45152 27410 22224 Face 44445 23179 22225 10767 Face 44446 22226 34598 44669 Face 44447 4182 22226 44669 Face 44448 4182 8876 22226 Face 44449 48488 42394 33241 Face 44450 48488 16824 22227 Face 44451 49558 22228 16396 Face 44452 49558 21060 22228 Face 44453 10573 22229 9213 Face 44454 10573 27705 22229 Face 44455 933 22230 22819 Face 44456 933 14520 22230 Face 44457 19217 22231 10195 Face 44458 19217 31793 22231 Face 44459 27759 22232 6763 Face 44460 12861 20742 22232 Face 44461 43405 30981 2087 Face 44462 29497 3169 22233 Face 44463 46710 22234 13158 Face 44464 4576 20333 22234 Face 44465 20672 22235 39713 Face 44466 20672 41179 22235 Face 44467 15603 22236 23397 Face 44468 15603 2693 22236 Face 44469 510 22237 4789 Face 44470 46271 5020 22237 Face 44471 13017 22238 4138 Face 44472 13017 26864 39316 Face 44473 29323 22239 9113 Face 44474 10866 39672 22239 Face 44475 42072 27865 1604 Face 44476 13115 22957 22240 Face 44477 12527 22241 34379 Face 44478 12527 2460 22241 Face 44479 2433 22242 31066 Face 44480 2433 6296 22242 Face 44481 1077 22243 29631 Face 44482 1077 34468 22243 Face 44483 8103 22244 25367 Face 44484 24970 199 22244 Face 44485 42247 22245 23368 Face 44486 1063 5882 22245 Face 44487 16453 22246 27365 Face 44488 49808 33393 22246 Face 44489 13057 22247 4652 Face 44490 13057 28093 22247 Face 44491 33943 31920 49573 Face 44492 33942 8059 31920 Face 44493 42031 22249 34612 Face 44494 24716 10213 36008 Face 44495 4867 22250 38579 Face 44496 45238 11381 22250 Face 44497 4730 22251 17265 Face 44498 4730 16957 22251 Face 44499 1568 46384 13392 Face 44500 1568 11758 37595 Face 44501 5647 22253 36409 Face 44502 5647 26527 22253 Face 44503 567 22254 38841 Face 44504 567 21065 22254 Face 44505 40254 45730 1583 Face 44506 5760 27599 22255 Face 44507 15985 22256 15984 Face 44508 22257 31805 22256 Face 44509 15985 22257 22256 Face 44510 15985 45613 40215 Face 44511 3211 22258 40155 Face 44512 3211 34524 22258 Face 44513 32163 32877 12281 Face 44514 22260 46800 22259 Face 44515 240 22260 7987 Face 44516 240 46800 22260 Face 44517 19153 22261 22178 Face 44518 19153 17302 22261 Face 44519 2497 46092 5658 Face 44520 24455 4860 22262 Face 44521 10420 22263 13788 Face 44522 10420 19639 22263 Face 44523 43122 22264 21375 Face 44524 44975 34212 22264 Face 44525 32885 28981 12368 Face 44526 3888 6361 22265 Face 44527 3888 22266 4567 Face 44528 3888 28981 22266 Face 44529 2342 48389 23323 Face 44530 30744 17604 23628 Face 44531 1934 22268 14444 Face 44532 1934 28721 22268 Face 44533 926 47105 16809 Face 44534 22270 13419 33431 Face 44535 926 22270 22269 Face 44536 42611 17102 30552 Face 44537 11583 22271 8838 Face 44538 44313 23911 22271 Face 44539 18668 22272 32539 Face 44540 18668 40566 22272 Face 44541 14833 22273 15854 Face 44542 39306 4274 45818 Face 44543 24129 22274 49207 Face 44544 43730 15056 22274 Face 44545 6528 22275 18962 Face 44546 6528 9209 22275 Face 44547 20629 22276 31832 Face 44548 20629 41946 22276 Face 44549 24168 41487 19822 Face 44550 24167 23044 22277 Face 44551 16373 39809 2501 Face 44552 16373 6600 39809 Face 44553 3937 22279 28288 Face 44554 3937 45742 22279 Face 44555 39859 22280 25833 Face 44556 10497 16285 22280 Face 44557 7448 22281 12297 Face 44558 7448 6946 22281 Face 44559 37240 22282 5042 Face 44560 83 38141 22282 Face 44561 11017 22283 21453 Face 44562 11017 41951 22283 Face 44563 7668 22284 48251 Face 44564 7668 46266 22284 Face 44565 35262 22285 70 Face 44566 9903 3378 22285 Face 44567 39644 42066 1524 Face 44568 3434 21940 22286 Face 44569 10894 22287 30406 Face 44570 32288 28315 22287 Face 44571 11585 47425 37416 Face 44572 11585 41000 47425 Face 44573 45186 22289 39374 Face 44574 34273 12255 47465 Face 44575 4843 22290 30195 Face 44576 4843 3871 22290 Face 44577 8316 22291 48026 Face 44578 25853 2539 22291 Face 44579 8524 22292 16035 Face 44580 8524 45656 22292 Face 44581 8153 22293 23534 Face 44582 8153 17890 22293 Face 44583 22293 22294 21899 Face 44584 22293 6145 22294 Face 44585 44277 22295 32510 Face 44586 40193 851 22295 Face 44587 44277 22296 18552 Face 44588 44277 32510 22296 Face 44589 39618 34981 2854 Face 44590 11462 44182 22297 Face 44591 7071 22298 36000 Face 44592 7071 45508 22298 Face 44593 11672 41869 695 Face 44594 36262 16841 30119 Face 44595 2541 22300 7996 Face 44596 2541 21876 22300 Face 44597 4046 22301 15363 Face 44598 4046 21323 22301 Face 44599 431 22302 13644 Face 44600 431 26019 22302 Face 44601 41327 22303 13072 Face 44602 13445 32747 22303 Face 44603 6233 22304 8265 Face 44604 35800 11366 22304 Face 44605 22306 27114 33892 Face 44606 22306 41208 22305 Face 44607 4681 22306 33892 Face 44608 4681 41208 22306 Face 44609 47601 22307 5222 Face 44610 32369 44883 22307 Face 44611 3111 22308 16561 Face 44612 3111 40163 22308 Face 44613 5006 22309 10413 Face 44614 5006 24581 22309 Face 44615 12345 22310 6178 Face 44616 12345 16204 22310 Face 44617 43318 22311 45939 Face 44618 5548 31502 22311 Face 44619 9770 22312 16578 Face 44620 9770 17051 22312 Face 44621 24996 22313 33680 Face 44622 24996 30312 22313 Face 44623 807 22314 34859 Face 44624 807 15028 43858 Face 44625 2539 22315 45020 Face 44626 35229 38110 22315 Face 44627 31983 22316 2413 Face 44628 10697 29884 39285 Face 44629 42112 22317 14198 Face 44630 25946 3679 22317 Face 44631 35851 43967 2296 Face 44632 42833 677 45822 Face 44633 5728 22319 12845 Face 44634 5728 19058 22319 Face 44635 2065 22320 30341 Face 44636 2065 33431 29360 Face 44637 4447 22321 37000 Face 44638 4447 20505 22321 Face 44639 29173 22322 32187 Face 44640 29173 24841 49306 Face 44641 44607 22323 13171 Face 44642 26075 6883 22323 Face 44643 14055 22324 32600 Face 44644 14055 31773 22324 Face 44645 9668 22325 910 Face 44646 45624 27114 22325 Face 44647 5207 22326 45934 Face 44648 5207 34902 22326 Face 44649 3875 22327 40127 Face 44650 36601 28514 22327 Face 44651 12682 49197 33926 Face 44652 12682 28514 28515 Face 44653 22330 22329 17384 Face 44654 22330 14473 22329 Face 44655 6185 22330 17384 Face 44656 6185 16659 22330 Face 44657 11113 22331 29311 Face 44658 11113 992 22331 Face 44659 358 22332 29484 Face 44660 358 30630 22332 Face 44661 1138 22333 3166 Face 44662 1138 16222 41683 Face 44663 40255 22334 32425 Face 44664 31922 17292 22334 Face 44665 49466 22335 27596 Face 44666 45496 22334 40255 Face 44667 6562 22337 44181 Face 44668 6562 26673 22337 Face 44669 41559 22337 26673 Face 44670 22336 22830 22337 Face 44671 3356 22338 13779 Face 44672 3356 3048 47555 Face 44673 4712 22339 47459 Face 44674 4712 14441 45892 Face 44675 2209 36883 20158 Face 44676 2209 13729 22340 Face 44677 2852 22341 11817 Face 44678 2852 25141 22341 Face 44679 24961 46731 6677 Face 44680 31165 21152 22342 Face 44681 7420 22343 1031 Face 44682 7420 32207 22343 Face 44683 11318 22344 45500 Face 44684 11318 7949 22344 Face 44685 13139 22345 2598 Face 44686 13139 9818 22345 Face 44687 46853 42614 30094 Face 44688 1062 47622 42614 Face 44689 9378 22347 32502 Face 44690 9378 17288 22347 Face 44691 5631 22348 13002 Face 44692 5631 36724 22348 Face 44693 6029 22349 31252 Face 44694 6029 23958 22349 Face 44695 2239 22350 22099 Face 44696 2239 46726 22350 Face 44697 9739 22351 2013 Face 44698 9739 14482 22351 Face 44699 7442 22352 46858 Face 44700 7442 47007 22352 Face 44701 3636 22353 41605 Face 44702 3636 45674 22353 Face 44703 16322 22354 45516 Face 44704 33690 11426 22354 Face 44705 9375 22355 3014 Face 44706 9375 34377 22355 Face 44707 10046 22356 40047 Face 44708 10046 30771 22356 Face 44709 1203 22357 35688 Face 44710 1203 19227 22357 Face 44711 9779 22358 2723 Face 44712 9779 25903 22358 Face 44713 493 22359 27478 Face 44714 493 37606 22359 Face 44715 7554 44325 5078 Face 44716 7554 34240 22360 Face 44717 35977 22361 4739 Face 44718 22362 25908 39660 Face 44719 49968 22362 39659 Face 44720 49968 33086 22362 Face 44721 30427 22363 16783 Face 44722 3456 22361 35977 Face 44723 41833 22364 17 Face 44724 41833 9440 22364 Face 44725 46752 22365 13744 Face 44726 22366 15429 22365 Face 44727 41387 46752 13744 Face 44728 7214 2384 22366 Face 44729 5613 22367 44888 Face 44730 5613 19324 22367 Face 44731 26707 33104 18759 Face 44732 15814 13310 45002 Face 44733 47477 45735 1424 Face 44734 28544 6459 22369 Face 44735 41483 22370 11299 Face 44736 24268 17733 22370 Face 44737 4929 22371 42641 Face 44738 4929 31997 22371 Face 44739 22377 22372 29350 Face 44740 2499 41603 22372 Face 44741 4517 22373 10212 Face 44742 4517 33440 22373 Face 44743 15399 22374 6561 Face 44744 15399 24244 22374 Face 44745 28900 22375 3121 Face 44746 44960 9873 47528 Face 44747 36415 39630 22718 Face 44748 37081 11051 22376 Face 44749 2499 22377 44974 Face 44750 2499 22372 22377 Face 44751 47938 22378 9318 Face 44752 47938 8272 22378 Face 44753 42930 22379 25031 Face 44754 42930 17737 22379 Face 44755 22381 22380 6955 Face 44756 18034 26284 22380 Face 44757 18034 22381 14547 Face 44758 18034 22380 22381 Face 44759 40422 22382 2446 Face 44760 6178 42755 22382 Face 44761 12319 22383 3946 Face 44762 12319 19408 22383 Face 44763 36241 22384 5479 Face 44764 42084 16952 22384 Face 44765 7822 49847 12483 Face 44766 7822 45086 22385 Face 44767 40500 22386 10983 Face 44768 44594 3185 22386 Face 44769 857 42545 15052 Face 44770 22388 21851 42544 Face 44771 857 22388 42544 Face 44772 857 32460 22388 Face 44773 30756 22389 8184 Face 44774 47884 32951 41566 Face 44775 34816 22390 39454 Face 44776 32082 1516 22390 Face 44777 49157 22391 20258 Face 44778 13572 25199 22391 Face 44779 13800 22392 27411 Face 44780 13800 32145 22392 Face 44781 16630 22393 19940 Face 44782 16630 5057 22393 Face 44783 47935 22394 17183 Face 44784 4286 20347 22394 Face 44785 8706 40721 28485 Face 44786 8706 47582 22395 Face 44787 12285 22396 6848 Face 44788 12285 46671 22396 Face 44789 5529 22397 16849 Face 44790 5529 32193 22397 Face 44791 31369 22398 8708 Face 44792 1222 11431 22398 Face 44793 9286 22399 13202 Face 44794 9286 17848 22399 Face 44795 10956 22400 18764 Face 44796 10956 26337 22400 Face 44797 5824 42042 28637 Face 44798 5824 844 49479 Face 44799 46985 22402 17027 Face 44800 8089 15048 22402 Face 44801 6703 22403 11486 Face 44802 6703 13982 22403 Face 44803 11530 22404 41212 Face 44804 11530 41420 22404 Face 44805 2967 22405 10633 Face 44806 2967 41190 22405 Face 44807 3757 22406 36715 Face 44808 3757 38275 22406 Face 44809 44530 22407 34732 Face 44810 6577 30934 22407 Face 44811 4131 22408 17737 Face 44812 30720 14134 22408 Face 44813 25852 22409 3417 Face 44814 18888 11769 22409 Face 44815 10319 22410 31746 Face 44816 10319 32735 22410 Face 44817 12306 22411 7204 Face 44818 22412 128 22411 Face 44819 12306 22412 22411 Face 44820 12306 18163 22412 Face 44821 13813 22413 18969 Face 44822 13813 5358 22413 Face 44823 38782 26941 9606 Face 44824 22590 8788 22414 Face 44825 41144 22415 19703 Face 44826 29233 40946 22415 Face 44827 1870 22416 36970 Face 44828 1870 8595 22416 Face 44829 46223 22417 15246 Face 44830 8649 49680 22417 Face 44831 4118 22418 20086 Face 44832 4118 1693 22418 Face 44833 31041 22419 36336 Face 44834 31041 39327 22419 Face 44835 8482 22420 10351 Face 44836 46951 19770 22420 Face 44837 425 22421 36670 Face 44838 425 4547 22421 Face 44839 47168 22422 19679 Face 44840 25521 7989 22422 Face 44841 1904 22423 12149 Face 44842 1904 5232 22423 Face 44843 40313 22424 21768 Face 44844 40313 15287 22424 Face 44845 24400 22425 4247 Face 44846 1484 13461 33209 Face 44847 2256 22426 13461 Face 44848 2256 25533 22426 Face 44849 48012 35716 8895 Face 44850 22058 9991 22427 Face 44851 4323 22428 14296 Face 44852 4323 37922 22428 Face 44853 7765 22429 26622 Face 44854 7765 15716 49644 Face 44855 4322 22430 18584 Face 44856 4322 29345 22430 Face 44857 14517 22431 20080 Face 44858 14517 20063 22431 Face 44859 32720 44379 29752 Face 44860 32720 1188 22432 Face 44861 48711 22433 16342 Face 44862 16341 19011 22433 Face 44863 3225 22434 11868 Face 44864 3225 12913 22434 Face 44865 3849 22435 3739 Face 44866 3849 18400 48340 Face 44867 3540 22436 20979 Face 44868 3540 40332 22436 Face 44869 31059 22437 38163 Face 44870 6023 14140 22437 Face 44871 8801 22438 12580 Face 44872 8801 11573 22438 Face 44873 961 22439 10580 Face 44874 961 36608 22439 Face 44875 4304 22440 20345 Face 44876 4304 18414 22440 Face 44877 200 49807 20396 Face 44878 200 29991 22441 Face 44879 14214 37705 40025 Face 44880 14214 73 22442 Face 44881 32602 22443 42189 Face 44882 5776 42286 22443 Face 44883 4255 22444 22445 Face 44884 4255 40469 22444 Face 44885 12568 22445 40811 Face 44886 12568 37994 22445 Face 44887 8940 22446 23172 Face 44888 42837 7103 22446 Face 44889 11297 22447 46652 Face 44890 11297 26040 22447 Face 44891 2764 22448 6005 Face 44892 2764 39819 22448 Face 44893 3806 22449 7349 Face 44894 3806 32049 22449 Face 44895 42747 22450 30782 Face 44896 14854 43729 22450 Face 44897 33292 48060 7135 Face 44898 13044 7870 30664 Face 44899 31266 22452 18464 Face 44900 13044 30664 22452 Face 44901 5295 22453 45457 Face 44902 5295 1876 22453 Face 44903 12977 22454 49204 Face 44904 33025 31315 22454 Face 44905 3676 22455 21446 Face 44906 3676 10026 22455 Face 44907 8699 22456 14503 Face 44908 8699 14501 22456 Face 44909 7918 26859 1316 Face 44910 42175 16772 26859 Face 44911 21704 22458 31679 Face 44912 21704 9 22458 Face 44913 10916 22459 14282 Face 44914 10916 11103 22459 Face 44915 27553 22460 37808 Face 44916 2842 7807 22460 Face 44917 137 22461 7160 Face 44918 137 32581 22461 Face 44919 5900 22462 17265 Face 44920 5900 9475 22462 Face 44921 3297 22463 26254 Face 44922 3297 26596 22463 Face 44923 40268 22464 3898 Face 44924 22465 11511 44827 Face 44925 2238 22465 44827 Face 44926 40268 10778 22465 Face 44927 22467 22466 10309 Face 44928 31130 34211 22466 Face 44929 3929 22467 35608 Face 44930 3929 22466 22467 Face 44931 18469 22468 18471 Face 44932 42672 7221 22468 Face 44933 5555 22469 38015 Face 44934 5555 12146 22469 Face 44935 2246 22470 24088 Face 44936 2246 25984 22470 Face 44937 29158 22471 36253 Face 44938 166 32151 40674 Face 44939 38573 22472 22645 Face 44940 45661 31852 22472 Face 44941 8286 22473 29355 Face 44942 8286 23425 36630 Face 44943 22475 22474 46527 Face 44944 5181 20137 45990 Face 44945 30578 22475 1839 Face 44946 5181 22474 22475 Face 44947 24782 22476 48601 Face 44948 2740 6622 22476 Face 44949 44574 22477 27943 Face 44950 6401 4740 22477 Face 44951 3670 22478 16605 Face 44952 3670 24153 22478 Face 44953 13026 22479 36783 Face 44954 13026 42059 47256 Face 44955 22479 40267 36783 Face 44956 42563 14940 22480 Face 44957 4239 22481 12457 Face 44958 22482 25729 22481 Face 44959 4239 22482 22481 Face 44960 4239 15722 22482 Face 44961 1394 22483 34927 Face 44962 40560 20443 22483 Face 44963 7737 22484 30809 Face 44964 22485 27116 22484 Face 44965 7737 22485 22484 Face 44966 22486 4935 22485 Face 44967 7737 22486 22485 Face 44968 7737 45077 22486 Face 44969 7737 22487 537 Face 44970 7737 16250 22487 Face 44971 3418 22488 38225 Face 44972 30570 36724 22488 Face 44973 40936 22489 2138 Face 44974 5010 27047 22489 Face 44975 20818 22490 30801 Face 44976 20818 16786 22490 Face 44977 15272 22491 32696 Face 44978 15272 9277 22491 Face 44979 10017 22492 37404 Face 44980 10017 38035 22492 Face 44981 1343 33711 6493 Face 44982 1343 24849 33711 Face 44983 1343 22494 17681 Face 44984 1343 18568 22494 Face 44985 4791 22495 24745 Face 44986 4791 16874 22495 Face 44987 35480 22496 41165 Face 44988 7023 3064 22496 Face 44989 26659 22497 42335 Face 44990 36976 25770 22497 Face 44991 4526 22498 36207 Face 44992 39742 20418 22498 Face 44993 3147 22499 37092 Face 44994 3147 18832 22499 Face 44995 781 22500 14681 Face 44996 781 48415 22500 Face 44997 22502 22501 10258 Face 44998 31135 1635 22501 Face 44999 4067 22502 10258 Face 45000 31135 22501 22502 Face 45001 2703 22503 25090 Face 45002 26869 44450 22503 Face 45003 40435 22504 15599 Face 45004 802 35418 22504 Face 45005 3509 22505 26766 Face 45006 3509 20370 22505 Face 45007 10624 22506 1117 Face 45008 10624 42037 22506 Face 45009 28066 22507 34810 Face 45010 4483 16092 22507 Face 45011 171 22508 17840 Face 45012 171 45240 22508 Face 45013 23896 22509 18204 Face 45014 1540 17017 22509 Face 45015 36326 22510 21972 Face 45016 5775 12052 22510 Face 45017 197 22511 40985 Face 45018 197 43412 22511 Face 45019 37634 38298 20274 Face 45020 29897 12820 22512 Face 45021 9790 22513 2995 Face 45022 48735 16284 22513 Face 45023 25682 35900 108 Face 45024 3664 44305 22514 Face 45025 10364 22515 40534 Face 45026 10364 15538 22515 Face 45027 25642 22516 32983 Face 45028 3835 28174 22516 Face 45029 4468 28264 39542 Face 45030 4468 12249 28264 Face 45031 12138 22518 36691 Face 45032 12138 25215 22518 Face 45033 10996 22519 17273 Face 45034 10996 20502 22519 Face 45035 45956 22520 12781 Face 45036 10400 43124 22520 Face 45037 24939 22521 31404 Face 45038 7409 19085 22521 Face 45039 9345 22522 19970 Face 45040 9345 40091 22522 Face 45041 22524 46936 11486 Face 45042 5175 9500 46936 Face 45043 5175 22524 12857 Face 45044 5175 46936 22524 Face 45045 23197 22525 38788 Face 45046 17070 34001 22525 Face 45047 1348 22526 15975 Face 45048 43679 27119 22526 Face 45049 4393 22527 32652 Face 45050 38728 15010 22527 Face 45051 38728 32948 27601 Face 45052 4393 6988 22528 Face 45053 1400 22529 32328 Face 45054 24798 21307 22529 Face 45055 22878 44087 21839 Face 45056 22878 13653 44087 Face 45057 2281 34319 49082 Face 45058 2281 39067 22531 Face 45059 24472 22532 14324 Face 45060 5977 776 22532 Face 45061 9715 22533 27000 Face 45062 9715 40452 22533 Face 45063 33046 31478 10282 Face 45064 13396 8002 22534 Face 45065 3131 22535 36275 Face 45066 3131 45259 22535 Face 45067 1866 22536 43978 Face 45068 1866 5589 22536 Face 45069 5616 22537 43579 Face 45070 5616 145 22537 Face 45071 45203 22538 19258 Face 45072 6161 8234 22538 Face 45073 4662 22539 37907 Face 45074 4662 19825 22539 Face 45075 37377 22540 26999 Face 45076 37377 41427 22540 Face 45077 42928 22541 27624 Face 45078 42928 7743 22541 Face 45079 3600 22542 27809 Face 45080 3600 16176 22542 Face 45081 4391 22543 117 Face 45082 4391 39553 22543 Face 45083 33765 24656 3734 Face 45084 3887 49797 22544 Face 45085 6243 22545 24507 Face 45086 48832 30887 22545 Face 45087 22547 49011 12094 Face 45088 9859 33156 22546 Face 45089 43780 22547 12238 Face 45090 43780 27044 22547 Face 45091 2928 22548 42423 Face 45092 30670 47020 22548 Face 45093 31877 22549 8314 Face 45094 39194 5277 22549 Face 45095 945 22550 45528 Face 45096 39764 9158 43592 Face 45097 2047 22551 23229 Face 45098 2047 16033 22551 Face 45099 22551 22552 23229 Face 45100 22551 44760 22552 Face 45101 17069 22553 9229 Face 45102 17069 18957 22553 Face 45103 4276 22554 10785 Face 45104 4276 48248 22554 Face 45105 4934 22555 13487 Face 45106 4934 18566 22555 Face 45107 30544 22556 11001 Face 45108 5654 40582 22556 Face 45109 12052 22557 45110 Face 45110 12052 43866 22557 Face 45111 1915 22558 21492 Face 45112 1915 7056 38057 Face 45113 42458 22559 13367 Face 45114 12406 21784 35248 Face 45115 45590 22560 19740 Face 45116 11831 32694 22560 Face 45117 46665 22561 26756 Face 45118 30355 15791 22561 Face 45119 7275 22562 9799 Face 45120 26833 11159 22562 Face 45121 5439 22563 26198 Face 45122 5439 37210 22563 Face 45123 42465 31775 13440 Face 45124 496 39195 22564 Face 45125 11330 22565 39446 Face 45126 11330 45561 22565 Face 45127 40999 22566 33198 Face 45128 3650 33069 22566 Face 45129 31179 22567 19876 Face 45130 9273 40426 22567 Face 45131 45965 22568 12736 Face 45132 18083 46033 22568 Face 45133 2143 22569 12768 Face 45134 28322 9702 22569 Face 45135 48419 22571 20265 Face 45136 48419 27886 22571 Face 45137 22570 22571 27886 Face 45138 44765 20265 22571 Face 45139 29514 22572 16178 Face 45140 24394 16179 22572 Face 45141 3629 22573 45671 Face 45142 22574 36141 22573 Face 45143 3629 22574 22573 Face 45144 3629 29687 22574 Face 45145 12868 22575 24765 Face 45146 12868 92 22575 Face 45147 1781 22576 29016 Face 45148 1781 29809 22576 Face 45149 31318 22577 29 Face 45150 12173 35615 22577 Face 45151 6861 22578 14305 Face 45152 6861 42269 22578 Face 45153 36416 22579 11660 Face 45154 36416 36090 22579 Face 45155 34440 38253 29467 Face 45156 34440 32415 22580 Face 45157 44754 36858 31255 Face 45158 15449 10795 36858 Face 45159 12339 34648 5746 Face 45160 12339 40079 22582 Face 45161 12159 44945 47640 Face 45162 12159 1043 22583 Face 45163 10416 22584 40708 Face 45164 10416 22748 22584 Face 45165 42903 33329 7702 Face 45166 22586 40332 22585 Face 45167 3539 22586 22585 Face 45168 29081 15859 31057 Face 45169 9659 43643 17672 Face 45170 9659 18872 22587 Face 45171 12383 47828 1538 Face 45172 12383 48014 22588 Face 45173 2903 22589 21146 Face 45174 2903 33932 22589 Face 45175 2398 22590 22414 Face 45176 2398 49025 22590 Face 45177 42405 22591 21607 Face 45178 2398 26941 22591 Face 45179 5876 22592 22207 Face 45180 5876 11988 22592 Face 45181 30511 41495 11425 Face 45182 49510 17224 22593 Face 45183 15457 22594 40404 Face 45184 35381 24140 22594 Face 45185 4340 22595 48945 Face 45186 4340 10650 22595 Face 45187 39315 22596 12088 Face 45188 49092 24149 22596 Face 45189 19924 22597 17389 Face 45190 19924 39650 22597 Face 45191 6585 22598 10791 Face 45192 6585 3430 22598 Face 45193 2697 22599 25459 Face 45194 2697 19995 46954 Face 45195 14394 22600 28338 Face 45196 14394 9556 22600 Face 45197 49883 22601 19229 Face 45198 9166 2125 22601 Face 45199 26380 22602 24224 Face 45200 2024 41266 22602 Face 45201 4977 22603 3774 Face 45202 4977 34939 22603 Face 45203 12258 22604 42054 Face 45204 12258 46572 22604 Face 45205 26494 22605 43492 Face 45206 6814 13175 22605 Face 45207 48755 22606 37134 Face 45208 48755 5980 42767 Face 45209 3109 22607 20781 Face 45210 3109 27447 22607 Face 45211 39793 30501 24605 Face 45212 1048 14530 22608 Face 45213 627 22609 46481 Face 45214 627 9531 22609 Face 45215 22674 22610 11762 Face 45216 3730 32030 48695 Face 45217 7169 22611 29854 Face 45218 7169 42820 22611 Face 45219 37253 22612 12480 Face 45220 44688 1326 22612 Face 45221 2144 22613 19119 Face 45222 28880 18577 45062 Face 45223 42542 22614 24566 Face 45224 42542 19288 22614 Face 45225 22616 22615 43309 Face 45226 7770 28913 22615 Face 45227 7770 22616 25 Face 45228 7770 22615 22616 Face 45229 11351 22617 32761 Face 45230 11351 49637 48407 Face 45231 5750 22618 18273 Face 45232 5750 19622 22618 Face 45233 6427 22619 22096 Face 45234 6427 30871 47041 Face 45235 12300 22620 7887 Face 45236 12300 35573 22620 Face 45237 7768 22621 48275 Face 45238 49921 9968 22621 Face 45239 4843 22622 25693 Face 45240 4843 13213 22622 Face 45241 12990 22623 23455 Face 45242 12990 30238 22623 Face 45243 12525 22624 28161 Face 45244 43142 90 22624 Face 45245 12525 22625 1353 Face 45246 12525 28161 22625 Face 45247 2522 22626 26104 Face 45248 2522 14016 22626 Face 45249 1387 22627 21557 Face 45250 35984 21145 22627 Face 45251 1387 22628 22627 Face 45252 1387 43306 22628 Face 45253 20771 22629 15757 Face 45254 20771 3125 22629 Face 45255 20771 22630 20770 Face 45256 20771 15757 43276 Face 45257 32626 36781 31285 Face 45258 27209 43988 22631 Face 45259 6380 22632 7604 Face 45260 6380 28455 22632 Face 45261 9148 22633 2680 Face 45262 9148 26656 22633 Face 45263 15956 22634 32994 Face 45264 15956 6562 30471 Face 45265 3799 22635 32841 Face 45266 3799 39369 22635 Face 45267 10641 22636 41282 Face 45268 10641 15610 22636 Face 45269 2121 22637 18300 Face 45270 2121 28849 22637 Face 45271 4437 22638 24234 Face 45272 4437 34808 22638 Face 45273 4085 38823 4084 Face 45274 4085 5649 22639 Face 45275 41014 22640 15182 Face 45276 41013 9452 22640 Face 45277 34491 22641 38888 Face 45278 35375 49525 43396 Face 45279 22388 22642 38887 Face 45280 22388 32459 22642 Face 45281 12685 44035 29563 Face 45282 30225 111 22643 Face 45283 67 22644 11856 Face 45284 27694 39252 22644 Face 45285 17781 22645 22472 Face 45286 35316 13304 49246 Face 45287 12233 22646 6843 Face 45288 12233 28861 22646 Face 45289 3846 22647 655 Face 45290 3846 29469 22647 Face 45291 38031 43399 20058 Face 45292 22964 34349 22648 Face 45293 5737 22649 20993 Face 45294 5737 32338 22649 Face 45295 3183 22650 13334 Face 45296 34635 3376 47942 Face 45297 31079 22651 7735 Face 45298 2822 45294 22651 Face 45299 39088 22652 5062 Face 45300 5063 40479 22652 Face 45301 7226 22653 38544 Face 45302 7226 17438 22653 Face 45303 38339 22654 30853 Face 45304 38339 19341 22654 Face 45305 22656 46004 5268 Face 45306 29425 46240 22655 Face 45307 46192 40827 12062 Face 45308 42135 46004 22656 Face 45309 42393 22657 12580 Face 45310 42393 8800 22657 Face 45311 7809 22658 19885 Face 45312 7809 34848 22658 Face 45313 34214 22659 44650 Face 45314 34214 5920 22659 Face 45315 9911 22660 10315 Face 45316 9911 13232 22660 Face 45317 27132 22661 19538 Face 45318 11593 6445 45247 Face 45319 7930 22662 32001 Face 45320 7930 38941 22662 Face 45321 17666 22663 13657 Face 45322 17666 11713 22663 Face 45323 7631 22664 2142 Face 45324 33216 11404 22664 Face 45325 6019 22665 35837 Face 45326 6019 39044 22665 Face 45327 8652 30276 14937 Face 45328 8652 21411 22666 Face 45329 9039 22667 25187 Face 45330 9039 5645 22667 Face 45331 5199 48439 13985 Face 45332 5199 38072 22668 Face 45333 6392 22669 20059 Face 45334 6392 24263 22669 Face 45335 37248 22670 29941 Face 45336 37248 27952 22670 Face 45337 4474 22671 11991 Face 45338 38245 7008 22671 Face 45339 35167 37489 47413 Face 45340 4654 32244 22672 Face 45341 3099 22673 40812 Face 45342 38368 41178 22673 Face 45343 3730 22674 174 Face 45344 3730 48695 22674 Face 45345 7454 22675 2178 Face 45346 43195 27811 22675 Face 45347 39970 22676 4166 Face 45348 36251 7886 22676 Face 45349 18358 22677 24137 Face 45350 18358 9931 22677 Face 45351 3874 22678 40756 Face 45352 3874 21646 22678 Face 45353 31086 22679 36881 Face 45354 6561 29661 22679 Face 45355 1579 22680 42987 Face 45356 1579 40190 22680 Face 45357 2616 22681 10040 Face 45358 2616 26110 22681 Face 45359 2811 46293 11655 Face 45360 2811 19979 22682 Face 45361 32247 22683 14645 Face 45362 5833 12352 22683 Face 45363 3238 22684 5 Face 45364 3238 22056 22684 Face 45365 12458 46013 2524 Face 45366 12458 33442 22685 Face 45367 7955 34220 16939 Face 45368 7955 41937 22686 Face 45369 15086 22687 28885 Face 45370 15086 25823 22687 Face 45371 7735 22688 18668 Face 45372 49606 25244 22688 Face 45373 6985 22689 28032 Face 45374 6985 15082 22689 Face 45375 7781 22690 47932 Face 45376 7781 27694 22690 Face 45377 38369 22691 49212 Face 45378 38369 34043 22691 Face 45379 19088 44776 3243 Face 45380 19088 16664 22692 Face 45381 39317 37928 19100 Face 45382 13530 27240 22693 Face 45383 49831 22694 4491 Face 45384 11244 33205 22694 Face 45385 5663 22695 34356 Face 45386 5663 27245 22695 Face 45387 5153 22696 5367 Face 45388 5153 16029 22696 Face 45389 31252 22697 19045 Face 45390 305 12944 22697 Face 45391 6852 22698 13868 Face 45392 6852 7514 22698 Face 45393 6747 22699 11731 Face 45394 6747 10834 22699 Face 45395 33125 48580 313 Face 45396 11805 14279 22700 Face 45397 41125 46006 20077 Face 45398 30378 37861 46006 Face 45399 3484 22702 751 Face 45400 3484 9540 22702 Face 45401 29593 31618 29696 Face 45402 31617 45903 22703 Face 45403 31744 22704 7582 Face 45404 1010 44986 22704 Face 45405 673 22705 13761 Face 45406 673 30428 22705 Face 45407 12582 22706 39607 Face 45408 12582 46969 48404 Face 45409 8212 33855 44822 Face 45410 8212 40512 22707 Face 45411 22707 22708 32434 Face 45412 22707 40512 22708 Face 45413 12470 22709 29730 Face 45414 45217 35733 22709 Face 45415 35945 22710 47024 Face 45416 5083 8692 22710 Face 45417 45726 22711 21781 Face 45418 45726 12230 22711 Face 45419 437 22712 22220 Face 45420 29777 5936 22712 Face 45421 29096 22713 18381 Face 45422 2714 33409 39377 Face 45423 10346 48049 20257 Face 45424 10346 11864 22714 Face 45425 15135 22715 7406 Face 45426 31267 16796 22715 Face 45427 12035 22716 20068 Face 45428 12035 39995 22716 Face 45429 8132 22717 16360 Face 45430 8132 12293 22717 Face 45431 35570 22718 39630 Face 45432 8145 28209 22718 Face 45433 2376 22719 35999 Face 45434 26645 17120 22719 Face 45435 10052 22720 10051 Face 45436 10052 49301 22720 Face 45437 22722 40537 5172 Face 45438 43454 17542 22721 Face 45439 5027 22722 41473 Face 45440 5027 40537 22722 Face 45441 12219 22723 32341 Face 45442 12219 32993 22723 Face 45443 1559 22724 42502 Face 45444 45544 4472 46750 Face 45445 6253 22725 16928 Face 45446 6253 23815 22725 Face 45447 11859 22726 17419 Face 45448 11859 36198 22726 Face 45449 9918 22727 17896 Face 45450 9918 34841 22727 Face 45451 3569 40607 35099 Face 45452 3569 19174 22728 Face 45453 19208 22729 2721 Face 45454 19208 2442 22729 Face 45455 35663 22730 9090 Face 45456 7780 45141 22730 Face 45457 3800 22731 11305 Face 45458 3800 1532 22731 Face 45459 4178 22732 39787 Face 45460 4178 37334 22732 Face 45461 37207 22733 25420 Face 45462 37207 46126 22733 Face 45463 8289 22734 25232 Face 45464 8289 15390 22734 Face 45465 401 22735 33077 Face 45466 401 49194 49528 Face 45467 9612 22736 40242 Face 45468 9612 2638 22736 Face 45469 6965 22737 24651 Face 45470 6965 26374 22737 Face 45471 2696 22738 48853 Face 45472 2696 39983 22738 Face 45473 7947 22739 2266 Face 45474 7947 46977 22739 Face 45475 37043 22740 11078 Face 45476 11489 30011 22740 Face 45477 14950 22741 114 Face 45478 14950 14951 22741 Face 45479 13944 22742 22931 Face 45480 13944 1104 22742 Face 45481 2284 22743 11117 Face 45482 2284 6729 48162 Face 45483 16882 22744 48596 Face 45484 16882 32921 22744 Face 45485 10062 22745 15542 Face 45486 10062 17367 22745 Face 45487 48416 22746 21702 Face 45488 1590 4775 22746 Face 45489 47889 22747 31500 Face 45490 47889 22746 22747 Face 45491 16556 22748 29025 Face 45492 16556 16817 22748 Face 45493 8064 32873 33830 Face 45494 8064 2409 22749 Face 45495 9399 22750 17168 Face 45496 9399 27724 31323 Face 45497 5514 22751 36487 Face 45498 5514 30264 22751 Face 45499 22753 22752 47911 Face 45500 44389 33367 22752 Face 45501 6214 22753 5273 Face 45502 6214 32710 44389 Face 45503 33412 22754 17114 Face 45504 33875 26405 22754 Face 45505 45138 22755 25619 Face 45506 5095 26317 22755 Face 45507 43799 22756 24286 Face 45508 4523 4522 32092 Face 45509 39073 22757 39799 Face 45510 11416 41129 48109 Face 45511 14648 22758 24303 Face 45512 14648 43616 22758 Face 45513 8144 39157 22760 Face 45514 8144 48220 39157 Face 45515 17595 22760 39157 Face 45516 17595 9971 22760 Face 45517 44465 22761 25308 Face 45518 24402 9260 22761 Face 45519 1728 22762 18944 Face 45520 1728 20997 22762 Face 45521 42628 22763 15835 Face 45522 113 30059 22763 Face 45523 8470 26253 26994 Face 45524 22766 1759 22764 Face 45525 8470 22767 22764 Face 45526 45074 14814 22765 Face 45527 22767 22766 22764 Face 45528 22765 34513 22766 Face 45529 22765 22767 8470 Face 45530 22765 22766 22767 Face 45531 2304 22768 40160 Face 45532 2304 4513 22768 Face 45533 2793 22769 32175 Face 45534 2793 43375 22769 Face 45535 27291 22770 30509 Face 45536 3113 45910 22770 Face 45537 17307 28444 29880 Face 45538 22772 36484 22771 Face 45539 17307 22772 28444 Face 45540 17307 22024 22772 Face 45541 6572 22773 10187 Face 45542 6572 23765 22773 Face 45543 4729 22774 22251 Face 45544 4729 47028 22774 Face 45545 22776 49868 39382 Face 45546 562 36101 22775 Face 45547 562 22776 27728 Face 45548 562 22775 22776 Face 45549 8157 22777 35266 Face 45550 36999 25821 22777 Face 45551 47793 22778 3450 Face 45552 46431 6203 22778 Face 45553 26851 22779 28617 Face 45554 26851 4727 22779 Face 45555 10338 22780 31323 Face 45556 10338 30404 22780 Face 45557 9874 22781 13119 Face 45558 9874 38656 22781 Face 45559 29655 22782 19480 Face 45560 27740 49230 22782 Face 45561 42783 34323 16127 Face 45562 2510 29264 34323 Face 45563 9633 22784 48279 Face 45564 9633 46003 22784 Face 45565 4098 22785 6737 Face 45566 4098 16961 22785 Face 45567 10071 43402 30347 Face 45568 44782 20324 22786 Face 45569 11128 22787 22072 Face 45570 11128 42193 22787 Face 45571 3072 22788 16409 Face 45572 37593 16410 22788 Face 45573 3661 22789 14412 Face 45574 39016 9724 22789 Face 45575 31419 22790 8533 Face 45576 42675 18521 22790 Face 45577 13866 22791 49755 Face 45578 13866 11823 22791 Face 45579 1224 22792 37337 Face 45580 1224 5886 22792 Face 45581 15262 22793 20429 Face 45582 15262 44207 22793 Face 45583 41504 31038 5170 Face 45584 41133 43648 31038 Face 45585 13258 22795 20878 Face 45586 13258 23788 22795 Face 45587 8271 38628 45998 Face 45588 8271 15972 22796 Face 45589 2258 22797 11689 Face 45590 2258 6438 22797 Face 45591 10060 22798 39784 Face 45592 10060 13274 22798 Face 45593 4054 22799 44377 Face 45594 38284 8870 22799 Face 45595 12459 22800 42817 Face 45596 12459 18574 22800 Face 45597 4689 22801 3173 Face 45598 4689 2171 22801 Face 45599 49415 22802 13029 Face 45600 591 47184 22802 Face 45601 7385 22803 2508 Face 45602 7385 29842 22803 Face 45603 11974 22804 27993 Face 45604 11974 20816 22804 Face 45605 5596 22805 6410 Face 45606 5596 13307 22805 Face 45607 1297 22806 47470 Face 45608 1297 21340 22806 Face 45609 77 22807 40551 Face 45610 25508 32891 37984 Face 45611 2243 22808 9627 Face 45612 2243 16421 22808 Face 45613 43897 22809 3584 Face 45614 43897 34051 22809 Face 45615 25142 22810 1493 Face 45616 4959 38584 22810 Face 45617 11596 47683 26607 Face 45618 34291 42586 22811 Face 45619 13867 22812 1686 Face 45620 13867 10104 22812 Face 45621 2724 32103 9786 Face 45622 2724 4989 32103 Face 45623 6892 22814 48051 Face 45624 24625 28707 22814 Face 45625 2261 22815 34053 Face 45626 38931 7907 22815 Face 45627 3621 46898 11279 Face 45628 43859 28738 22816 Face 45629 43594 22817 35305 Face 45630 43594 17369 22817 Face 45631 5368 22818 18729 Face 45632 5368 18592 22818 Face 45633 16110 22819 22230 Face 45634 16110 24047 22819 Face 45635 47096 22820 37048 Face 45636 3637 14217 22820 Face 45637 22822 43322 27200 Face 45638 10398 1832 22821 Face 45639 10398 22822 32282 Face 45640 10398 43322 22822 Face 45641 1015 22823 31077 Face 45642 1015 13079 22823 Face 45643 1866 22824 9788 Face 45644 1866 35461 22824 Face 45645 7283 22825 15782 Face 45646 7283 46694 22825 Face 45647 7283 22826 46694 Face 45648 7283 42223 22826 Face 45649 13551 22827 30108 Face 45650 13551 2782 22827 Face 45651 47737 22828 35040 Face 45652 1092 31042 22828 Face 45653 1475 22829 42314 Face 45654 27473 18835 22829 Face 45655 14107 22830 16382 Face 45656 14107 22337 22830 Face 45657 8895 22831 44894 Face 45658 8895 35716 22831 Face 45659 22831 36315 854 Face 45660 22831 14041 22832 Face 45661 259 22833 11999 Face 45662 259 12983 22833 Face 45663 42440 44668 19851 Face 45664 24911 19184 49594 Face 45665 1632 22835 11057 Face 45666 1632 21205 22835 Face 45667 7019 22836 15500 Face 45668 7019 15349 22836 Face 45669 3428 22837 14481 Face 45670 3428 39902 22837 Face 45671 44948 22838 14154 Face 45672 9643 24815 22838 Face 45673 12181 47803 42805 Face 45674 12181 7282 47803 Face 45675 31498 39272 20605 Face 45676 38296 3954 22840 Face 45677 7039 27388 25925 Face 45678 31276 2407 27388 Face 45679 30943 22842 21836 Face 45680 6236 19977 22842 Face 45681 1467 22843 47643 Face 45682 35101 8769 22843 Face 45683 4570 22844 19197 Face 45684 4570 19609 22844 Face 45685 10977 22845 24747 Face 45686 10977 23747 22845 Face 45687 15917 22846 13569 Face 45688 15917 2234 34609 Face 45689 20312 22847 9085 Face 45690 20312 19375 22847 Face 45691 4341 22848 9980 Face 45692 4341 11273 22848 Face 45693 1220 22849 26545 Face 45694 1220 9164 22849 Face 45695 12388 22850 43958 Face 45696 12388 23606 22850 Face 45697 4971 22851 29101 Face 45698 4971 8420 22851 Face 45699 3987 39218 26926 Face 45700 49187 26372 39218 Face 45701 9146 22853 10585 Face 45702 9146 21637 22853 Face 45703 45834 22854 31908 Face 45704 45834 38373 22854 Face 45705 6258 22855 11634 Face 45706 6258 33116 22855 Face 45707 32906 22856 14548 Face 45708 4556 8297 22856 Face 45709 3906 22857 46133 Face 45710 3906 32633 22857 Face 45711 9140 22858 19663 Face 45712 9140 30775 22858 Face 45713 38448 22859 14348 Face 45714 10310 30767 22859 Face 45715 7821 22860 13178 Face 45716 7821 28772 22860 Face 45717 10226 22861 8071 Face 45718 10226 21846 22861 Face 45719 14508 22862 31202 Face 45720 14508 10094 22862 Face 45721 173 48675 32456 Face 45722 29896 13913 22863 Face 45723 19778 22864 39269 Face 45724 19778 47263 22864 Face 45725 30046 22865 39664 Face 45726 8853 11348 22865 Face 45727 28390 22866 40981 Face 45728 19157 2775 22866 Face 45729 43933 22867 9597 Face 45730 3012 36163 22867 Face 45731 10828 22868 46097 Face 45732 10828 47229 22868 Face 45733 5436 22869 10925 Face 45734 33064 9701 22869 Face 45735 30286 22870 13054 Face 45736 3095 33818 22870 Face 45737 4199 22871 33763 Face 45738 22872 39012 43366 Face 45739 4199 22872 43366 Face 45740 4199 20987 22872 Face 45741 48397 22873 10934 Face 45742 2436 25105 22873 Face 45743 4460 22874 6884 Face 45744 4460 21643 22874 Face 45745 14025 49185 42116 Face 45746 14025 3414 49185 Face 45747 16200 22876 13930 Face 45748 16200 20382 22876 Face 45749 2720 22877 43303 Face 45750 2720 11460 22877 Face 45751 11618 22878 1317 Face 45752 11618 13653 22878 Face 45753 1596 22879 39536 Face 45754 1596 40396 22879 Face 45755 1483 22880 27502 Face 45756 1483 34724 22880 Face 45757 959 22881 18071 Face 45758 959 15775 22881 Face 45759 9017 22882 16975 Face 45760 9017 17703 22882 Face 45761 12303 22883 40806 Face 45762 12303 18285 22883 Face 45763 8181 22884 39297 Face 45764 8181 14333 22884 Face 45765 10661 35336 852 Face 45766 10661 21774 22885 Face 45767 45625 22886 13230 Face 45768 32889 2568 39754 Face 45769 4540 22887 17450 Face 45770 4540 45967 22887 Face 45771 22889 22888 30622 Face 45772 38589 8127 22888 Face 45773 4234 22889 48290 Face 45774 4234 22888 22889 Face 45775 949 22890 21139 Face 45776 949 13373 22890 Face 45777 8248 22891 38648 Face 45778 8248 49555 41041 Face 45779 11057 22892 14438 Face 45780 11057 11058 22892 Face 45781 14537 22893 6964 Face 45782 14537 18315 22893 Face 45783 13679 22894 670 Face 45784 43367 5091 22894 Face 45785 2829 22895 409 Face 45786 2829 25149 22895 Face 45787 42007 22896 1776 Face 45788 7786 19865 22896 Face 45789 3714 22897 9951 Face 45790 3714 35503 22897 Face 45791 13841 22898 37625 Face 45792 13841 8886 22898 Face 45793 9495 22899 33138 Face 45794 28484 32616 22899 Face 45795 5042 22900 21838 Face 45796 5042 42008 22900 Face 45797 12587 22901 23589 Face 45798 12587 42148 22901 Face 45799 13583 45239 36239 Face 45800 13583 39396 22902 Face 45801 14545 23372 24568 Face 45802 14545 26230 22903 Face 45803 16500 36445 10934 Face 45804 46922 19589 22904 Face 45805 24019 22905 18135 Face 45806 24019 22906 22905 Face 45807 40115 22906 22358 Face 45808 40115 22905 22906 Face 45809 7994 22907 506 Face 45810 7994 22905 40115 Face 45811 46817 22908 8520 Face 45812 24453 49518 22908 Face 45813 33713 22909 45633 Face 45814 1170 48054 22909 Face 45815 5533 22910 45906 Face 45816 30269 6519 22910 Face 45817 3546 22911 46137 Face 45818 3546 49686 22911 Face 45819 32858 22912 1518 Face 45820 32858 10410 22912 Face 45821 2234 22913 34863 Face 45822 2234 37058 22913 Face 45823 8711 22914 19748 Face 45824 41141 4488 22914 Face 45825 31172 22915 984 Face 45826 31172 17920 22915 Face 45827 817 22916 9311 Face 45828 817 37513 22916 Face 45829 30577 22917 24973 Face 45830 22918 19144 22917 Face 45831 1207 22918 22917 Face 45832 1207 45208 22918 Face 45833 32519 22919 19601 Face 45834 21945 7655 22919 Face 45835 12628 22920 29721 Face 45836 12628 39590 22920 Face 45837 3603 22921 9795 Face 45838 42322 30411 22921 Face 45839 38710 22922 17704 Face 45840 5692 27297 22922 Face 45841 22924 22923 37301 Face 45842 4936 20761 22923 Face 45843 36348 48659 2555 Face 45844 4936 22923 22924 Face 45845 75 22925 46553 Face 45846 75 38653 22925 Face 45847 5414 22926 39041 Face 45848 29040 686 48129 Face 45849 9156 22927 15918 Face 45850 9156 1813 22927 Face 45851 6676 22928 893 Face 45852 6676 47015 22928 Face 45853 18212 22929 1251 Face 45854 18212 40865 22929 Face 45855 22931 22930 35884 Face 45856 10698 15745 22930 Face 45857 34250 22931 22742 Face 45858 10698 22930 22931 Face 45859 18695 22932 10511 Face 45860 18695 18114 22932 Face 45861 45364 22933 14797 Face 45862 34822 23531 22933 Face 45863 5166 22934 12292 Face 45864 5166 9886 22934 Face 45865 16561 22935 3111 Face 45866 35018 13423 22935 Face 45867 17439 22936 38941 Face 45868 45711 15387 22936 Face 45869 8492 22937 29439 Face 45870 22938 40309 22937 Face 45871 8492 22938 22937 Face 45872 22939 48061 45796 Face 45873 8492 22939 45796 Face 45874 8492 27541 44909 Face 45875 33261 22940 34486 Face 45876 33261 43151 22940 Face 45877 33607 22941 19364 Face 45878 4117 4780 22941 Face 45879 9636 30831 5224 Face 45880 9636 42738 30831 Face 45881 7842 22943 21251 Face 45882 7842 20940 22943 Face 45883 256 22944 19921 Face 45884 29267 40494 36736 Face 45885 45783 22945 28523 Face 45886 45783 9040 22945 Face 45887 44621 22946 32167 Face 45888 44621 10059 22946 Face 45889 114 22947 4077 Face 45890 114 32166 22947 Face 45891 7712 22948 26220 Face 45892 7712 28667 22948 Face 45893 15525 32840 29135 Face 45894 15525 27968 32840 Face 45895 5625 22950 1295 Face 45896 5625 21294 44218 Face 45897 5625 22951 21294 Face 45898 5625 18394 22951 Face 45899 15936 22952 27067 Face 45900 15936 3475 22952 Face 45901 5413 36963 24559 Face 45902 5413 27603 36963 Face 45903 8119 22954 22022 Face 45904 27068 16428 22954 Face 45905 10199 22955 30844 Face 45906 10199 17920 22955 Face 45907 5584 22956 35068 Face 45908 5584 18183 22956 Face 45909 8959 22957 17825 Face 45910 8959 22240 22957 Face 45911 4330 22958 16782 Face 45912 4330 5300 22958 Face 45913 26896 22959 10796 Face 45914 23453 29186 22959 Face 45915 25807 22960 5104 Face 45916 3998 31906 22960 Face 45917 1327 22961 40819 Face 45918 1327 13815 22961 Face 45919 28657 22962 25259 Face 45920 4874 38111 22962 Face 45921 2071 22963 35073 Face 45922 2071 34570 22963 Face 45923 38629 38031 9755 Face 45924 4453 28380 22964 Face 45925 28468 22965 7165 Face 45926 28468 9681 22965 Face 45927 48482 22966 8200 Face 45928 15986 18958 22966 Face 45929 1314 22967 38080 Face 45930 22968 26342 22967 Face 45931 1314 22968 22967 Face 45932 1314 19906 22968 Face 45933 38672 22969 36953 Face 45934 38672 12066 22969 Face 45935 4118 22970 46529 Face 45936 4118 20275 22970 Face 45937 3978 22971 38342 Face 45938 22972 6373 22971 Face 45939 3978 22972 22971 Face 45940 3978 15372 22972 Face 45941 12429 22973 38078 Face 45942 12429 17774 22973 Face 45943 35403 22974 14971 Face 45944 35403 24181 22974 Face 45945 22974 22975 47832 Face 45946 22974 38664 22975 Face 45947 9396 22976 9420 Face 45948 9396 24405 22976 Face 45949 4361 22977 22139 Face 45950 4361 20823 22977 Face 45951 35573 45797 22620 Face 45952 394 11245 22978 Face 45953 23974 30196 2131 Face 45954 11032 9547 22979 Face 45955 11213 22980 4975 Face 45956 34601 1518 22980 Face 45957 15665 22981 15664 Face 45958 15665 14577 22981 Face 45959 17556 22982 9248 Face 45960 17556 10560 22982 Face 45961 5116 22983 40484 Face 45962 25744 1662 22983 Face 45963 7811 22984 46058 Face 45964 7811 43394 22984 Face 45965 44310 22985 27942 Face 45966 37809 31220 22985 Face 45967 44310 37809 22985 Face 45968 1371 14062 22986 Face 45969 22988 22987 19830 Face 45970 2484 12741 22987 Face 45971 2484 22988 16791 Face 45972 2484 22987 22988 Face 45973 43886 22989 12642 Face 45974 360 22073 22989 Face 45975 360 43886 20688 Face 45976 360 22989 43886 Face 45977 2026 43160 8371 Face 45978 2026 13490 22991 Face 45979 6880 22992 30134 Face 45980 49537 7199 22992 Face 45981 3316 22993 40880 Face 45982 3316 20700 28121 Face 45983 7395 22994 31606 Face 45984 7395 10384 22994 Face 45985 19615 22995 17334 Face 45986 22996 27494 22995 Face 45987 19615 22996 22995 Face 45988 27845 12305 22996 Face 45989 41425 22997 5741 Face 45990 49943 19221 22997 Face 45991 7968 22998 40782 Face 45992 7968 23920 22998 Face 45993 1846 22999 18775 Face 45994 1846 45743 22999 Face 45995 4551 23000 18329 Face 45996 4551 33993 23000 Face 45997 5713 47613 4743 Face 45998 5713 34038 23001 Face 45999 14132 23002 38176 Face 46000 14132 1358 23002 Face 46001 26832 23003 48035 Face 46002 2615 16093 23003 Face 46003 39628 23004 20623 Face 46004 4261 13996 23004 Face 46005 8884 23005 21068 Face 46006 8884 37570 23005 Face 46007 12553 23006 23190 Face 46008 43935 13753 23006 Face 46009 11339 27812 18374 Face 46010 11339 4982 27812 Face 46011 14506 23008 2751 Face 46012 14506 27462 23008 Face 46013 6148 23009 40502 Face 46014 6148 44660 23009 Face 46015 10152 23010 35572 Face 46016 10152 18055 23010 Face 46017 5225 23011 31885 Face 46018 5225 18664 23011 Face 46019 810 23012 20592 Face 46020 810 22036 23012 Face 46021 47612 23013 15990 Face 46022 7053 39661 23013 Face 46023 717 28579 22077 Face 46024 23015 30143 23014 Face 46025 717 23015 28579 Face 46026 717 14350 23015 Face 46027 9988 23016 13211 Face 46028 44670 48774 23016 Face 46029 40424 23017 19893 Face 46030 9431 40316 23017 Face 46031 7893 23018 34241 Face 46032 7893 23462 23018 Face 46033 7142 23019 43487 Face 46034 7142 1997 23019 Face 46035 3838 23020 21257 Face 46036 3838 23791 23020 Face 46037 1766 23021 32072 Face 46038 45901 18776 46829 Face 46039 7820 23022 42348 Face 46040 7820 36038 23022 Face 46041 12216 44641 5531 Face 46042 49762 21343 23023 Face 46043 21048 23024 38393 Face 46044 21048 11745 23024 Face 46045 33227 23025 22619 Face 46046 33227 6271 23025 Face 46047 9287 31684 23898 Face 46048 9287 26769 31684 Face 46049 27028 39575 24823 Face 46050 11361 16407 23027 Face 46051 45108 23028 32722 Face 46052 5611 42802 23028 Face 46053 1418 23029 23997 Face 46054 1418 42399 23029 Face 46055 11546 23030 5199 Face 46056 11546 3648 46408 Face 46057 30878 23031 47487 Face 46058 30878 38895 23031 Face 46059 4762 23032 17015 Face 46060 4762 19400 23032 Face 46061 11463 23033 8302 Face 46062 11463 13719 23033 Face 46063 13143 23034 13142 Face 46064 38088 13144 23034 Face 46065 32081 38837 9603 Face 46066 4763 28540 23035 Face 46067 28873 23036 9834 Face 46068 3078 44867 23036 Face 46069 24268 23037 15717 Face 46070 484 39500 23037 Face 46071 11442 23361 14719 Face 46072 11442 8015 39464 Face 46073 6009 23039 47678 Face 46074 6009 14500 23039 Face 46075 29638 23040 9478 Face 46076 14426 15925 23040 Face 46077 26725 23041 22075 Face 46078 2577 39429 23041 Face 46079 2956 23042 11928 Face 46080 2956 27153 23042 Face 46081 996 23043 25526 Face 46082 996 46364 23043 Face 46083 33563 23044 24167 Face 46084 5063 22652 39088 Face 46085 2330 23045 20670 Face 46086 2330 17160 23045 Face 46087 15800 23046 43833 Face 46088 15800 3704 23046 Face 46089 5698 23047 16404 Face 46090 5698 2391 23047 Face 46091 8156 23048 48532 Face 46092 8156 2629 23048 Face 46093 3441 23049 38525 Face 46094 3441 45407 23049 Face 46095 1103 23050 11765 Face 46096 1103 11986 23050 Face 46097 3436 23051 18196 Face 46098 43235 17109 40080 Face 46099 33597 41479 15676 Face 46100 10992 40399 23052 Face 46101 10992 23053 34030 Face 46102 10992 23052 23053 Face 46103 40916 23054 17089 Face 46104 3216 43352 23054 Face 46105 12272 23055 15484 Face 46106 12272 2371 23055 Face 46107 443 23056 44528 Face 46108 443 36215 23056 Face 46109 31396 23057 4690 Face 46110 31396 35728 23057 Face 46111 9438 23058 49346 Face 46112 9438 33899 23058 Face 46113 9438 23059 33324 Face 46114 9438 20471 23059 Face 46115 23768 23060 46767 Face 46116 23768 16067 23060 Face 46117 10140 23061 35206 Face 46118 28449 311 23061 Face 46119 725 23062 40673 Face 46120 31690 10251 37161 Face 46121 31690 23063 13438 Face 46122 725 13454 43878 Face 46123 40045 23064 7513 Face 46124 15376 24994 23064 Face 46125 38914 23065 13153 Face 46126 4160 17513 23065 Face 46127 4599 23066 23237 Face 46128 4599 9205 23066 Face 46129 2109 23067 16079 Face 46130 2109 34521 23067 Face 46131 37507 23068 40134 Face 46132 867 12499 23068 Face 46133 35353 23069 19105 Face 46134 15115 2692 23069 Face 46135 14095 23070 6205 Face 46136 14095 21736 23070 Face 46137 37908 24925 21170 Face 46138 6534 43188 24925 Face 46139 23073 43188 15845 Face 46140 1711 23071 23072 Face 46141 49899 23073 32825 Face 46142 49899 23072 23073 Face 46143 5277 23074 22549 Face 46144 5277 20371 49929 Face 46145 18222 23075 38943 Face 46146 35073 16881 41905 Face 46147 12356 23076 6640 Face 46148 40992 40768 23076 Face 46149 7908 24377 24223 Face 46150 7908 35017 28781 Face 46151 16004 23078 38634 Face 46152 16004 12582 23078 Face 46153 56 23079 16198 Face 46154 56 41008 23079 Face 46155 3020 42275 13771 Face 46156 3020 13591 42275 Face 46157 441 23081 48679 Face 46158 441 22172 23081 Face 46159 11687 23082 39451 Face 46160 11687 49958 23082 Face 46161 8593 23083 30390 Face 46162 8593 35995 23083 Face 46163 10885 23084 22081 Face 46164 10885 41508 23084 Face 46165 25081 23085 11026 Face 46166 14054 36785 23085 Face 46167 20755 23086 15836 Face 46168 31330 49756 23086 Face 46169 5532 23087 18999 Face 46170 29385 12195 23087 Face 46171 6669 23088 31218 Face 46172 6669 40352 23088 Face 46173 47824 23089 21592 Face 46174 14245 18895 23089 Face 46175 3938 23090 25898 Face 46176 23092 14734 23090 Face 46177 3938 41557 34362 Face 46178 3938 25898 41557 Face 46179 3938 23092 23090 Face 46180 3938 13718 23092 Face 46181 17667 23093 6168 Face 46182 17667 8317 23093 Face 46183 44925 23094 957 Face 46184 44925 26005 23094 Face 46185 4893 23095 4716 Face 46186 41047 21611 23095 Face 46187 15597 23096 15044 Face 46188 15597 4574 23096 Face 46189 31446 23097 42831 Face 46190 31446 15734 23097 Face 46191 2414 23098 31304 Face 46192 2414 3408 23098 Face 46193 7454 43195 22675 Face 46194 23787 14465 49074 Face 46195 40432 42522 16408 Face 46196 2188 10923 23100 Face 46197 4262 23101 15776 Face 46198 4262 42922 23101 Face 46199 1083 23102 39459 Face 46200 1083 30758 23102 Face 46201 14868 35688 22357 Face 46202 14868 36013 23103 Face 46203 10659 23104 30389 Face 46204 10659 24402 23104 Face 46205 49393 23105 49529 Face 46206 49393 41085 23105 Face 46207 14819 23106 14820 Face 46208 14819 20703 23106 Face 46209 11420 23107 46933 Face 46210 34548 35367 23107 Face 46211 23124 23108 28893 Face 46212 35767 22146 43614 Face 46213 726 23109 35027 Face 46214 726 21237 23109 Face 46215 26076 23110 7323 Face 46216 7330 7331 23110 Face 46217 11072 23111 1110 Face 46218 11072 48152 23111 Face 46219 18367 23112 9562 Face 46220 18367 37992 35975 Face 46221 3309 23113 13980 Face 46222 23114 40247 47356 Face 46223 3309 23114 23113 Face 46224 23115 44253 23114 Face 46225 3309 23115 23114 Face 46226 45583 12188 23115 Face 46227 42811 23116 1041 Face 46228 42811 23269 23116 Face 46229 7655 23117 22919 Face 46230 7655 2718 44934 Face 46231 8791 23118 26866 Face 46232 8791 37023 23118 Face 46233 1175 23119 10511 Face 46234 1175 37353 23119 Face 46235 1859 23120 44689 Face 46236 1859 35574 23120 Face 46237 3980 23121 19200 Face 46238 3980 15928 23121 Face 46239 45414 23122 10079 Face 46240 6465 19493 23122 Face 46241 5781 23123 24458 Face 46242 41738 21105 23123 Face 46243 6408 45113 34329 Face 46244 35767 23108 23124 Face 46245 7823 23125 41162 Face 46246 34572 5017 37791 Face 46247 8179 23126 46723 Face 46248 38924 28481 23126 Face 46249 11303 23127 31962 Face 46250 11303 14982 23127 Face 46251 38740 23128 35495 Face 46252 38741 5212 23128 Face 46253 5753 23129 20083 Face 46254 5753 41129 23129 Face 46255 194 23130 21950 Face 46256 194 19048 23130 Face 46257 3997 23131 11298 Face 46258 3997 12619 23131 Face 46259 9149 23132 18416 Face 46260 9149 16930 23132 Face 46261 28092 23133 12855 Face 46262 28092 3189 23133 Face 46263 9453 23134 40901 Face 46264 45221 21853 23134 Face 46265 6072 23135 24994 Face 46266 48474 3217 37234 Face 46267 28381 23136 33829 Face 46268 28381 46372 23136 Face 46269 1246 23137 45498 Face 46270 48433 13372 23137 Face 46271 8175 23138 28868 Face 46272 8175 48644 23138 Face 46273 1290 23139 39760 Face 46274 1290 30815 23139 Face 46275 1290 23140 28436 Face 46276 1290 39760 23140 Face 46277 27664 23141 15648 Face 46278 27664 29990 23141 Face 46279 26158 23142 40824 Face 46280 5633 48722 23142 Face 46281 24426 23143 2114 Face 46282 4097 25032 23143 Face 46283 11015 23144 14592 Face 46284 11015 14626 23144 Face 46285 1100 23145 7225 Face 46286 1100 17032 23145 Face 46287 5040 23146 16489 Face 46288 27431 796 23146 Face 46289 8031 23147 17736 Face 46290 8031 44029 23147 Face 46291 15650 23148 20287 Face 46292 47176 4817 23148 Face 46293 432 23149 18752 Face 46294 432 31339 23149 Face 46295 9014 28931 28932 Face 46296 9014 9753 23150 Face 46297 47886 23151 20743 Face 46298 47886 12351 23151 Face 46299 12198 23152 48902 Face 46300 12198 18082 23152 Face 46301 6327 23153 12503 Face 46302 24977 47055 25743 Face 46303 2004 23154 34682 Face 46304 2004 16430 23154 Face 46305 16518 23155 11797 Face 46306 16518 17793 23155 Face 46307 3765 23156 9997 Face 46308 3765 14149 31099 Face 46309 41774 23157 23409 Face 46310 41774 22037 23157 Face 46311 955 23158 28863 Face 46312 955 13904 23158 Face 46313 1669 23159 6187 Face 46314 23687 15392 41797 Face 46315 2206 36108 8753 Face 46316 39214 14968 23160 Face 46317 11146 23161 44846 Face 46318 11146 33296 23161 Face 46319 5737 23162 19503 Face 46320 5737 20993 23162 Face 46321 23164 23163 5738 Face 46322 5736 43823 23163 Face 46323 5736 23164 23162 Face 46324 5736 23163 23164 Face 46325 8036 32306 6006 Face 46326 31401 33211 39778 Face 46327 9497 23166 39100 Face 46328 9497 603 23166 Face 46329 17787 23167 48521 Face 46330 17787 30091 23167 Face 46331 4583 23168 16456 Face 46332 42287 20009 33494 Face 46333 28961 23169 6877 Face 46334 7525 48762 23169 Face 46335 5047 23170 28979 Face 46336 5047 7310 23170 Face 46337 23172 23171 8940 Face 46338 5889 10620 23171 Face 46339 5889 23172 755 Face 46340 5889 23171 23172 Face 46341 8254 23173 15146 Face 46342 8254 18814 23173 Face 46343 29941 23174 11051 Face 46344 23175 48983 38709 Face 46345 23176 23175 38709 Face 46346 23176 17876 23175 Face 46347 29941 23176 23174 Face 46348 2166 17876 23176 Face 46349 3216 23177 16565 Face 46350 23178 3530 23177 Face 46351 3216 23178 23177 Face 46352 3216 23054 23178 Face 46353 4182 23179 16134 Face 46354 4182 22225 23179 Face 46355 6296 41536 22242 Face 46356 24195 11712 23180 Face 46357 48477 23181 2334 Face 46358 3678 19347 23181 Face 46359 25777 23182 20558 Face 46360 43144 9350 23182 Face 46361 4667 23183 46506 Face 46362 4667 38855 23183 Face 46363 41221 23184 44656 Face 46364 4667 46506 23184 Face 46365 2374 23185 34897 Face 46366 2374 34527 23185 Face 46367 24813 23186 24107 Face 46368 12687 21495 23186 Face 46369 3952 23187 31224 Face 46370 3952 27371 23187 Face 46371 23189 23188 37372 Face 46372 47347 14460 23188 Face 46373 4136 23189 21362 Face 46374 4136 23188 23189 Face 46375 3337 23190 15014 Face 46376 38222 25123 23190 Face 46377 9311 23191 817 Face 46378 9311 23458 23191 Face 46379 28648 23192 17035 Face 46380 5316 17080 23192 Face 46381 42791 23193 35323 Face 46382 7240 33198 23193 Face 46383 17773 23194 7064 Face 46384 17773 35213 23194 Face 46385 13957 23195 2655 Face 46386 13957 10285 23195 Face 46387 6914 46789 8906 Face 46388 23518 285 23196 Face 46389 17070 23197 21825 Face 46390 17070 22525 23197 Face 46391 15757 23198 10132 Face 46392 15757 22629 23198 Face 46393 4993 23199 19694 Face 46394 4993 24043 23199 Face 46395 13785 23200 33075 Face 46396 13785 44999 23200 Face 46397 45415 23201 43913 Face 46398 45415 20565 23201 Face 46399 23203 27261 36337 Face 46400 2306 6025 23202 Face 46401 2306 23203 17605 Face 46402 2306 27261 23203 Face 46403 1278 23204 6846 Face 46404 1278 41486 23204 Face 46405 6205 23205 22007 Face 46406 6205 23070 40092 Face 46407 26278 45371 9810 Face 46408 2002 6201 23206 Face 46409 10934 23207 48397 Face 46410 10934 36445 23207 Face 46411 14815 23208 2392 Face 46412 14815 25944 23208 Face 46413 47423 23209 31378 Face 46414 39539 1894 23209 Face 46415 33603 23210 7993 Face 46416 13974 44198 23210 Face 46417 49444 23211 8737 Face 46418 14013 9512 45880 Face 46419 23213 23212 2061 Face 46420 14013 23211 49444 Face 46421 14013 23213 25034 Face 46422 14013 49444 23213 Face 46423 1583 36084 14734 Face 46424 1583 8447 23214 Face 46425 4179 23215 18717 Face 46426 23217 44913 23215 Face 46427 23217 23216 6751 Face 46428 4179 30323 23216 Face 46429 4179 23217 23215 Face 46430 4179 23216 23217 Face 46431 15651 23218 34656 Face 46432 15651 109 23218 Face 46433 3014 23219 42744 Face 46434 3014 34398 23219 Face 46435 3009 23220 13946 Face 46436 3009 48092 23220 Face 46437 9446 23221 25146 Face 46438 9446 4973 23221 Face 46439 12273 23222 5061 Face 46440 12273 15325 23222 Face 46441 3385 23223 14447 Face 46442 30410 49889 23223 Face 46443 4196 23224 9009 Face 46444 40190 1579 23224 Face 46445 1977 23225 10196 Face 46446 1977 19521 23225 Face 46447 782 23226 28205 Face 46448 782 35959 23226 Face 46449 10181 23227 43812 Face 46450 10181 21158 23227 Face 46451 11995 23228 4040 Face 46452 11995 21992 23228 Face 46453 2821 23229 22552 Face 46454 2821 34358 23229 Face 46455 9120 23230 40604 Face 46456 9120 29283 23230 Face 46457 3231 23231 15259 Face 46458 3231 21589 23231 Face 46459 5059 44627 2654 Face 46460 5059 8999 23232 Face 46461 13316 23233 9231 Face 46462 13316 3267 23233 Face 46463 9419 23234 39876 Face 46464 9419 21173 23234 Face 46465 49406 23235 11409 Face 46466 33098 33416 23235 Face 46467 36548 23236 30504 Face 46468 36548 27867 23236 Face 46469 38162 23237 23066 Face 46470 17795 20620 23237 Face 46471 48701 40234 13536 Face 46472 1537 33120 23238 Face 46473 12759 23239 19582 Face 46474 12759 12506 23239 Face 46475 23241 23240 7476 Face 46476 10050 5007 23240 Face 46477 10050 23241 36502 Face 46478 10050 23240 23241 Face 46479 12065 23242 28426 Face 46480 12065 6484 23242 Face 46481 592 23243 5817 Face 46482 592 39569 23243 Face 46483 12223 23244 40287 Face 46484 12223 32052 23244 Face 46485 8513 23245 44036 Face 46486 46208 20140 23245 Face 46487 30558 23246 27290 Face 46488 41186 30837 23246 Face 46489 6768 23247 25699 Face 46490 6768 6767 23247 Face 46491 6768 23248 37399 Face 46492 6768 37046 23248 Face 46493 35306 42733 7899 Face 46494 6190 43964 23249 Face 46495 1105 23250 19115 Face 46496 1105 33813 23250 Face 46497 46751 23251 9237 Face 46498 46751 33464 23251 Face 46499 4671 23252 19272 Face 46500 23253 30604 23252 Face 46501 4671 23254 23252 Face 46502 41154 2725 23254 Face 46503 46262 23254 2725 Face 46504 23253 23252 23254 Face 46505 35997 44161 20045 Face 46506 168 39949 23255 Face 46507 9190 32575 31201 Face 46508 9190 6318 23256 Face 46509 6538 23257 18955 Face 46510 6538 1095 23257 Face 46511 20214 38299 21902 Face 46512 20214 27215 23258 Face 46513 5990 23259 40353 Face 46514 26651 18533 23259 Face 46515 39965 23260 11974 Face 46516 3360 30006 23260 Face 46517 6875 42461 17465 Face 46518 39435 25902 49445 Face 46519 45924 23262 21023 Face 46520 8641 17832 23262 Face 46521 1927 35579 36450 Face 46522 24795 6288 23263 Face 46523 5572 23264 19287 Face 46524 5572 20250 23264 Face 46525 5572 23265 14478 Face 46526 5572 46406 23265 Face 46527 23265 23266 46309 Face 46528 23265 46406 23266 Face 46529 33634 23267 18858 Face 46530 33633 38443 23267 Face 46531 11843 23268 36380 Face 46532 11843 27814 23268 Face 46533 16475 23269 28401 Face 46534 16475 35008 23269 Face 46535 2666 23270 5261 Face 46536 38333 37144 42830 Face 46537 10496 23271 45575 Face 46538 10496 25114 23271 Face 46539 973 23272 19018 Face 46540 25024 19497 23272 Face 46541 3905 23273 25645 Face 46542 29966 38990 23273 Face 46543 6097 23274 33599 Face 46544 28330 17632 23274 Face 46545 1381 23275 20896 Face 46546 1381 41659 23275 Face 46547 3918 23276 19995 Face 46548 3918 18299 23276 Face 46549 9609 23277 16454 Face 46550 33918 15681 37567 Face 46551 757 45647 14285 Face 46552 757 40747 45647 Face 46553 7747 23279 26695 Face 46554 7747 26555 23279 Face 46555 7451 23280 3667 Face 46556 35737 24920 23280 Face 46557 37956 23281 34703 Face 46558 907 16719 23281 Face 46559 2923 23282 38138 Face 46560 2923 45938 23282 Face 46561 40658 23283 24686 Face 46562 40658 17843 23283 Face 46563 8002 23284 12595 Face 46564 8002 35257 23284 Face 46565 6638 34397 20603 Face 46566 6638 12783 34397 Face 46567 48440 23286 7475 Face 46568 40976 5370 23286 Face 46569 42270 23287 5579 Face 46570 40976 23286 48440 Face 46571 16859 23288 33253 Face 46572 26711 42603 23288 Face 46573 8936 23289 1330 Face 46574 8936 17177 23289 Face 46575 3522 23290 33264 Face 46576 23291 35361 23290 Face 46577 3522 23291 23290 Face 46578 3522 27723 23291 Face 46579 7299 36997 19399 Face 46580 7299 2706 23292 Face 46581 20829 23293 1567 Face 46582 20829 12552 23293 Face 46583 9269 23294 11187 Face 46584 9269 4254 23294 Face 46585 32264 23295 18247 Face 46586 13502 10124 23295 Face 46587 1888 23296 47878 Face 46588 1888 41745 23296 Face 46589 6308 23297 11758 Face 46590 6308 16154 23297 Face 46591 49385 23298 10119 Face 46592 3617 28800 49172 Face 46593 5344 23299 30424 Face 46594 5344 37056 23299 Face 46595 5344 23300 18052 Face 46596 5344 30424 23300 Face 46597 4818 23301 13833 Face 46598 4818 26371 23301 Face 46599 778 23302 21338 Face 46600 778 43930 23302 Face 46601 37145 23303 18727 Face 46602 136 45468 23303 Face 46603 12217 23304 20385 Face 46604 12217 18946 23304 Face 46605 19801 23305 25440 Face 46606 19801 47399 23305 Face 46607 10942 23306 40026 Face 46608 10942 26191 23306 Face 46609 44422 23308 28642 Face 46610 44422 47810 23308 Face 46611 23307 23308 47810 Face 46612 23309 28642 23308 Face 46613 23307 23309 23308 Face 46614 40469 4255 23309 Face 46615 26420 23310 19646 Face 46616 10602 23248 23310 Face 46617 2410 23311 11597 Face 46618 41012 958 32513 Face 46619 5058 23312 20923 Face 46620 5058 9043 23312 Face 46621 37721 23313 15465 Face 46622 6739 21556 23313 Face 46623 6888 23314 33585 Face 46624 6888 39936 23314 Face 46625 21648 23315 35334 Face 46626 21648 38568 23315 Face 46627 17206 23316 15714 Face 46628 17206 9707 23316 Face 46629 25018 23317 21482 Face 46630 44017 5415 23317 Face 46631 23319 23318 2898 Face 46632 12376 4364 23318 Face 46633 28334 23319 34483 Face 46634 12376 23318 23319 Face 46635 41538 23320 42134 Face 46636 41539 19717 23320 Face 46637 8657 23321 19662 Face 46638 8657 3593 23321 Face 46639 5037 23322 29516 Face 46640 5037 38610 23322 Face 46641 6671 23323 18616 Face 46642 6671 39107 23323 Face 46643 13273 23324 46575 Face 46644 13273 35576 23324 Face 46645 35340 23325 14953 Face 46646 1016 48951 23325 Face 46647 30692 23326 21098 Face 46648 10882 49623 23326 Face 46649 8100 23327 11535 Face 46650 8100 45387 23327 Face 46651 7762 23328 48099 Face 46652 7762 22038 23328 Face 46653 23330 23329 13880 Face 46654 44524 11880 23329 Face 46655 45589 23330 13880 Face 46656 26168 11880 44524 Face 46657 11960 33167 49430 Face 46658 11960 45832 33167 Face 46659 13559 23332 35121 Face 46660 13559 3353 23332 Face 46661 10858 41812 29048 Face 46662 38843 45437 23333 Face 46663 1587 23334 8115 Face 46664 1587 42593 23334 Face 46665 7001 23335 19607 Face 46666 23578 16860 29134 Face 46667 4726 23336 18463 Face 46668 4726 46053 23336 Face 46669 3791 23337 38792 Face 46670 3791 39786 23337 Face 46671 29553 23338 44562 Face 46672 35789 9432 40623 Face 46673 14661 23339 18731 Face 46674 14661 9571 23339 Face 46675 4251 23340 27912 Face 46676 4251 32985 23340 Face 46677 6198 23341 13798 Face 46678 6198 21992 23341 Face 46679 3307 29422 28355 Face 46680 25811 28753 23342 Face 46681 6685 23343 36203 Face 46682 6685 6686 23343 Face 46683 8717 23344 21302 Face 46684 8717 17708 23344 Face 46685 3948 23345 31710 Face 46686 3948 20893 27900 Face 46687 45793 23346 26573 Face 46688 45792 36680 23346 Face 46689 2965 23347 14045 Face 46690 2965 36704 29744 Face 46691 1273 23348 10138 Face 46692 1273 15646 23348 Face 46693 26499 23349 42807 Face 46694 26499 27045 23349 Face 46695 5367 23350 25904 Face 46696 5367 22696 23350 Face 46697 1770 23351 29224 Face 46698 34553 41999 23351 Face 46699 46493 23352 10529 Face 46700 20625 31072 23352 Face 46701 20625 23353 38194 Face 46702 20625 23352 23353 Face 46703 38929 23354 9477 Face 46704 38929 15808 23354 Face 46705 48007 36375 21492 Face 46706 64 17903 23355 Face 46707 2298 23356 46107 Face 46708 2298 36384 23356 Face 46709 604 46648 9457 Face 46710 32698 40656 46648 Face 46711 48743 23358 22685 Face 46712 8324 5206 23358 Face 46713 43141 23359 21973 Face 46714 38495 35629 23359 Face 46715 7677 23360 47121 Face 46716 7677 49645 23360 Face 46717 23038 23361 11442 Face 46718 23038 17132 23361 Face 46719 42859 23362 35682 Face 46720 42859 40383 23362 Face 46721 1882 23363 35682 Face 46722 1882 5323 23363 Face 46723 3096 23364 20337 Face 46724 3096 27745 23364 Face 46725 3547 23365 10545 Face 46726 3547 46925 23365 Face 46727 9881 23366 9880 Face 46728 30174 33741 23366 Face 46729 5904 23367 14400 Face 46730 5904 15281 23367 Face 46731 23369 23368 22245 Face 46732 2477 11076 23368 Face 46733 38422 23369 18512 Face 46734 2477 23368 23369 Face 46735 35011 41815 29868 Face 46736 46124 31495 23370 Face 46737 31266 23371 4748 Face 46738 31266 18464 23371 Face 46739 22903 23372 14545 Face 46740 22903 13658 23372 Face 46741 14543 23373 40830 Face 46742 25968 38438 31231 Face 46743 6284 23374 18619 Face 46744 6284 9605 23374 Face 46745 42069 23375 46676 Face 46746 8572 7345 23375 Face 46747 9622 23376 15126 Face 46748 9622 35224 23376 Face 46749 24919 23377 35810 Face 46750 49039 2287 23377 Face 46751 7184 23378 35847 Face 46752 7184 30039 23378 Face 46753 49693 23379 15458 Face 46754 49693 10762 23379 Face 46755 34221 23380 19112 Face 46756 39793 24605 23380 Face 46757 11171 23381 6679 Face 46758 11171 39162 23381 Face 46759 18033 23382 47466 Face 46760 36908 738 23382 Face 46761 31094 23383 39968 Face 46762 6961 46898 23383 Face 46763 780 23384 44725 Face 46764 780 40526 23384 Face 46765 5480 46382 33071 Face 46766 30355 22561 46665 Face 46767 10512 23386 2317 Face 46768 10512 5892 23386 Face 46769 7389 23387 49319 Face 46770 25825 22901 42148 Face 46771 85 23388 27692 Face 46772 85 19914 23388 Face 46773 2672 23389 21729 Face 46774 2672 48788 23389 Face 46775 37964 46924 6460 Face 46776 13494 154 23390 Face 46777 23392 23391 43117 Face 46778 1442 44945 23391 Face 46779 47640 23392 27857 Face 46780 1442 23391 23392 Face 46781 26873 23393 37851 Face 46782 5141 33338 23393 Face 46783 26915 23394 15244 Face 46784 8736 41158 23394 Face 46785 19864 23395 34140 Face 46786 19864 21665 23395 Face 46787 49682 23396 10381 Face 46788 1413 45526 23396 Face 46789 2694 23397 40060 Face 46790 2694 8818 23397 Face 46791 2797 23398 8739 Face 46792 2797 46425 23398 Face 46793 1087 23399 35335 Face 46794 1087 26898 23399 Face 46795 12570 23400 15912 Face 46796 12570 6298 23400 Face 46797 8343 33915 16566 Face 46798 8343 49922 47022 Face 46799 5436 33064 22869 Face 46800 42984 14058 23402 Face 46801 3762 23403 32963 Face 46802 3762 15436 23403 Face 46803 6103 23404 13664 Face 46804 24993 11488 23404 Face 46805 10844 45801 4617 Face 46806 10844 2914 23405 Face 46807 29059 23406 35386 Face 46808 27106 3847 40419 Face 46809 17241 23407 2831 Face 46810 17241 2830 23407 Face 46811 42768 23408 15208 Face 46812 922 6897 23408 Face 46813 5321 23409 23157 Face 46814 5321 14032 23409 Face 46815 5527 23410 25453 Face 46816 5527 28839 23410 Face 46817 38438 37969 38936 Face 46818 912 43430 23411 Face 46819 7951 23412 3290 Face 46820 7951 21172 23412 Face 46821 2991 23413 13336 Face 46822 2991 12882 35295 Face 46823 23415 23414 32760 Face 46824 8870 38284 23414 Face 46825 8870 23415 2868 Face 46826 8870 23414 23415 Face 46827 24648 23416 13896 Face 46828 41384 17218 23416 Face 46829 5560 23417 40443 Face 46830 5560 36248 23417 Face 46831 11497 23418 11528 Face 46832 11497 32355 23418 Face 46833 5288 23419 16315 Face 46834 30756 11615 23419 Face 46835 34067 23420 9750 Face 46836 34066 6465 23420 Face 46837 1532 23421 12449 Face 46838 1532 3800 23421 Face 46839 35503 23422 22897 Face 46840 10714 29820 23422 Face 46841 39952 23423 21288 Face 46842 2961 38627 23423 Face 46843 5947 23424 21642 Face 46844 5947 7814 23424 Face 46845 45118 23425 2903 Face 46846 6674 43941 23425 Face 46847 9686 23426 48869 Face 46848 9686 17280 23426 Face 46849 26799 23427 2776 Face 46850 969 26738 23427 Face 46851 14259 23428 32822 Face 46852 14259 6181 23428 Face 46853 7074 23429 12369 Face 46854 34567 45812 23429 Face 46855 11203 23430 14527 Face 46856 36544 18309 23430 Face 46857 12370 23431 48792 Face 46858 27680 18032 32647 Face 46859 28738 46832 22816 Face 46860 1677 44105 23432 Face 46861 6413 23433 18571 Face 46862 6413 44589 23433 Face 46863 6413 23434 16412 Face 46864 6413 36342 23434 Face 46865 27259 23435 976 Face 46866 12942 47167 44114 Face 46867 25720 23436 46335 Face 46868 5956 31511 23436 Face 46869 31809 23437 21719 Face 46870 31809 47307 23437 Face 46871 13535 46056 22149 Face 46872 13535 15928 23438 Face 46873 7029 23439 18121 Face 46874 7029 4440 23439 Face 46875 3658 23440 47140 Face 46876 3658 35453 23440 Face 46877 1147 23441 14995 Face 46878 1147 16334 23441 Face 46879 624 23442 44259 Face 46880 42223 24696 23442 Face 46881 28491 23443 4349 Face 46882 316 13343 23443 Face 46883 6220 23444 17958 Face 46884 6220 20898 23444 Face 46885 8679 23445 20281 Face 46886 8679 28311 23445 Face 46887 38456 23446 16395 Face 46888 38456 15734 23446 Face 46889 6894 23448 1987 Face 46890 6894 5674 23448 Face 46891 23447 23448 31312 Face 46892 23447 1987 23448 Face 46893 10774 23449 9331 Face 46894 38550 33924 28298 Face 46895 9404 23450 2652 Face 46896 41801 25525 23450 Face 46897 4812 23451 19147 Face 46898 4812 48677 23451 Face 46899 11396 23452 49870 Face 46900 11396 35557 43013 Face 46901 7060 23453 46619 Face 46902 7060 4029 23453 Face 46903 1608 40220 16203 Face 46904 1608 47874 23454 Face 46905 965 23455 21119 Face 46906 965 42621 23455 Face 46907 7497 23456 543 Face 46908 7497 16974 23456 Face 46909 9038 23457 27989 Face 46910 27020 19567 39175 Face 46911 37360 23458 19982 Face 46912 30642 49064 23458 Face 46913 47689 23459 43597 Face 46914 44203 13595 23459 Face 46915 1784 23460 9862 Face 46916 48930 21649 23460 Face 46917 2411 23461 46325 Face 46918 2411 39140 23461 Face 46919 7350 23462 7893 Face 46920 7350 45177 44267 Face 46921 31710 23463 3948 Face 46922 2426 36073 23463 Face 46923 18388 23464 33663 Face 46924 18388 45775 23464 Face 46925 30622 23465 1671 Face 46926 1774 19140 23465 Face 46927 23621 23466 13276 Face 46928 5487 27452 23466 Face 46929 44243 23467 13518 Face 46930 6711 27177 23467 Face 46931 17139 23468 6582 Face 46932 17139 15467 48761 Face 46933 8994 23469 38628 Face 46934 8994 45984 23469 Face 46935 26900 31373 46606 Face 46936 46398 28236 23470 Face 46937 12048 23471 10141 Face 46938 12048 17126 23471 Face 46939 38669 23472 1941 Face 46940 38669 17314 23472 Face 46941 5135 23473 40022 Face 46942 38357 26690 23473 Face 46943 2404 23474 38804 Face 46944 2404 18545 39684 Face 46945 9532 45675 3950 Face 46946 9532 10263 23475 Face 46947 3597 23476 20143 Face 46948 34421 8161 23476 Face 46949 689 23477 9503 Face 46950 48413 4701 23477 Face 46951 23948 23478 7078 Face 46952 26675 22034 23478 Face 46953 33137 23479 27160 Face 46954 49396 16979 23479 Face 46955 33495 35953 7008 Face 46956 33496 19850 23480 Face 46957 1965 42583 7412 Face 46958 1965 40530 42583 Face 46959 20662 23482 10746 Face 46960 33157 22050 23482 Face 46961 31218 40968 9738 Face 46962 46437 964 23483 Face 46963 9852 23484 10041 Face 46964 36081 7569 23484 Face 46965 3952 49843 507 Face 46966 3952 31224 23485 Face 46967 9293 23486 42894 Face 46968 9293 47749 23486 Face 46969 10232 23487 16383 Face 46970 10232 41148 23487 Face 46971 14309 46931 4324 Face 46972 14309 4164 23488 Face 46973 47885 23489 5484 Face 46974 39068 25677 23489 Face 46975 5007 38174 12106 Face 46976 5007 10050 23490 Face 46977 38174 42183 9836 Face 46978 23490 10050 23491 Face 46979 3997 23492 8849 Face 46980 3997 10656 23492 Face 46981 4448 23493 26635 Face 46982 4448 4449 23493 Face 46983 3089 23494 19666 Face 46984 43292 33487 23494 Face 46985 2609 23495 10478 Face 46986 2609 39623 23495 Face 46987 27345 23496 42177 Face 46988 7073 13639 23496 Face 46989 42957 23497 32461 Face 46990 10611 32041 23497 Face 46991 13897 23498 19275 Face 46992 13897 23963 23498 Face 46993 15745 23499 1991 Face 46994 15745 9582 23499 Face 46995 1214 23500 9916 Face 46996 1214 20566 43782 Face 46997 7694 23501 3178 Face 46998 45039 26029 23501 Face 46999 6907 23502 19885 Face 47000 31101 45157 23502 Face 47001 2415 23503 49231 Face 47002 2415 12924 23503 Face 47003 47139 23504 21801 Face 47004 2994 13884 23504 Face 47005 43738 23505 21416 Face 47006 43738 12097 23505 Face 47007 3515 42918 10420 Face 47008 37642 27498 38409 Face 47009 5301 23507 17775 Face 47010 5301 40743 23507 Face 47011 8767 23508 42526 Face 47012 40745 7413 23508 Face 47013 10881 23509 46558 Face 47014 10881 47236 36994 Face 47015 2437 35150 15473 Face 47016 2437 42559 23510 Face 47017 6119 23511 20856 Face 47018 6119 37276 23511 Face 47019 3829 23512 995 Face 47020 40865 18212 23512 Face 47021 1799 23513 14488 Face 47022 1799 20411 23513 Face 47023 23515 23514 23611 Face 47024 47120 18988 23514 Face 47025 6984 23515 29037 Face 47026 6984 23514 23515 Face 47027 1221 23516 12711 Face 47028 1221 15699 23516 Face 47029 13546 23517 2083 Face 47030 13546 2009 23517 Face 47031 6914 23518 23196 Face 47032 6914 20713 23518 Face 47033 47753 48838 6295 Face 47034 47753 13227 23519 Face 47035 9920 23520 24950 Face 47036 23951 36158 23520 Face 47037 2222 23521 19922 Face 47038 49783 7540 23521 Face 47039 4399 23522 309 Face 47040 4399 47943 23522 Face 47041 7176 23523 46388 Face 47042 7176 12865 23523 Face 47043 15655 23524 5420 Face 47044 15655 36059 23524 Face 47045 10123 23525 47113 Face 47046 42006 30585 23525 Face 47047 13741 23526 5185 Face 47048 13741 25567 23526 Face 47049 16078 23527 6308 Face 47050 16078 33742 23527 Face 47051 13081 49957 40101 Face 47052 13081 4318 23528 Face 47053 5739 23529 43327 Face 47054 5739 1090 23529 Face 47055 1404 23530 38636 Face 47056 1404 12698 23530 Face 47057 7705 23531 13209 Face 47058 30350 1656 23531 Face 47059 4678 23532 43275 Face 47060 4678 12111 23532 Face 47061 2839 23533 11038 Face 47062 2839 18555 23533 Face 47063 31270 23534 11169 Face 47064 7024 8153 23534 Face 47065 3017 23535 36922 Face 47066 3017 20644 23535 Face 47067 1368 23536 20650 Face 47068 47429 21306 23536 Face 47069 6576 23537 43154 Face 47070 36727 5060 38203 Face 47071 12996 23538 6232 Face 47072 28839 5527 23538 Face 47073 28552 23539 27827 Face 47074 28552 32209 23539 Face 47075 10978 23540 12851 Face 47076 28552 27827 49073 Face 47077 30759 23541 8034 Face 47078 36508 4043 23541 Face 47079 434 23542 17762 Face 47080 434 23541 23542 Face 47081 10020 23543 16589 Face 47082 35483 1324 45635 Face 47083 4311 23544 11923 Face 47084 40157 47104 23544 Face 47085 8023 23545 28596 Face 47086 8023 7146 23545 Face 47087 449 23546 10137 Face 47088 39600 35684 45069 Face 47089 2186 23547 46589 Face 47090 26089 12702 23547 Face 47091 45193 23548 1107 Face 47092 40708 22584 23548 Face 47093 31434 23549 14313 Face 47094 4583 16456 23549 Face 47095 38085 23550 2266 Face 47096 9848 7094 23550 Face 47097 5174 23551 21631 Face 47098 38252 1034 23551 Face 47099 11503 23552 46076 Face 47100 11503 20555 23552 Face 47101 11324 23553 4764 Face 47102 47467 12989 23553 Face 47103 2092 23554 7519 Face 47104 2092 41432 23554 Face 47105 1325 23555 40789 Face 47106 1325 16476 23555 Face 47107 1134 23556 33582 Face 47108 1134 17673 23556 Face 47109 37471 23557 21414 Face 47110 37471 16693 23557 Face 47111 10992 23558 42838 Face 47112 10992 41147 23558 Face 47113 2715 23559 26038 Face 47114 2715 34182 23559 Face 47115 5893 23560 41755 Face 47116 5893 27023 23560 Face 47117 28821 23561 29238 Face 47118 8132 16360 23561 Face 47119 32016 23562 27165 Face 47120 28361 476 23562 Face 47121 37639 23563 30365 Face 47122 37398 6048 23563 Face 47123 13682 23564 19760 Face 47124 13682 23563 23564 Face 47125 1011 23565 32157 Face 47126 1011 39836 23565 Face 47127 23565 23566 7489 Face 47128 23565 47733 23566 Face 47129 33466 23567 15716 Face 47130 8880 5844 23567 Face 47131 15332 23568 32666 Face 47132 15332 18903 23568 Face 47133 3916 23569 15897 Face 47134 3916 44100 23569 Face 47135 17536 23570 4162 Face 47136 17536 17537 23570 Face 47137 23570 23571 45883 Face 47138 23570 44163 23571 Face 47139 41276 49550 21638 Face 47140 41276 7445 23572 Face 47141 1688 23573 30282 Face 47142 1688 7928 23573 Face 47143 49642 23574 9919 Face 47144 6668 42160 23574 Face 47145 501 23575 49019 Face 47146 501 35029 23575 Face 47147 4545 23576 6464 Face 47148 4545 48613 23576 Face 47149 43352 23577 17089 Face 47150 41690 921 23577 Face 47151 7001 23578 29134 Face 47152 7001 6811 23578 Face 47153 32824 23579 20111 Face 47154 4531 13844 23579 Face 47155 4531 23580 17356 Face 47156 32824 8703 23580 Face 47157 7321 23581 7152 Face 47158 36670 14069 23581 Face 47159 8595 23582 49303 Face 47160 8595 45384 23582 Face 47161 16515 23583 2650 Face 47162 16515 2652 23583 Face 47163 12909 23584 36854 Face 47164 12909 13671 23584 Face 47165 35425 44297 12832 Face 47166 4898 738 44298 Face 47167 23587 23586 19038 Face 47168 17761 41071 23586 Face 47169 36549 23587 13436 Face 47170 17761 23586 23587 Face 47171 39631 49177 3443 Face 47172 46874 11517 23588 Face 47173 33337 23589 22901 Face 47174 4430 48276 23589 Face 47175 6944 23590 22080 Face 47176 6944 17020 40441 Face 47177 25655 23591 1900 Face 47178 46282 30011 23591 Face 47179 38830 23592 8235 Face 47180 8462 26484 23592 Face 47181 13678 23593 5927 Face 47182 13678 37571 23593 Face 47183 45257 24634 12435 Face 47184 45258 32623 23594 Face 47185 1070 23595 27795 Face 47186 1070 43720 23595 Face 47187 13299 23596 31789 Face 47188 13299 49031 23596 Face 47189 13299 23597 22136 Face 47190 13299 31789 23597 Face 47191 3233 44658 14407 Face 47192 24552 29805 23598 Face 47193 14452 23599 18282 Face 47194 14452 1671 23599 Face 47195 33518 23600 23812 Face 47196 3893 34804 23600 Face 47197 43585 26019 431 Face 47198 48905 15146 23601 Face 47199 7195 23602 26417 Face 47200 7195 25430 23602 Face 47201 12829 23603 3279 Face 47202 12829 45114 23603 Face 47203 23605 23604 28745 Face 47204 7593 1000 23604 Face 47205 49391 23605 20392 Face 47206 7593 23604 23605 Face 47207 7593 23606 12388 Face 47208 7593 23605 49391 Face 47209 4226 23607 15187 Face 47210 40830 23373 42735 Face 47211 20606 41429 8414 Face 47212 20606 49513 41429 Face 47213 7952 23609 8007 Face 47214 7952 4208 23609 Face 47215 10845 23610 45859 Face 47216 10845 37418 23610 Face 47217 5827 23611 31098 Face 47218 29037 23515 23611 Face 47219 15746 23612 41887 Face 47220 15746 5744 23612 Face 47221 826 23613 19982 Face 47222 46523 17686 23613 Face 47223 48027 23614 12384 Face 47224 2443 10213 23614 Face 47225 4258 23615 33961 Face 47226 29208 18710 23615 Face 47227 3578 23616 13206 Face 47228 29188 10077 23616 Face 47229 371 23617 44761 Face 47230 371 7796 23617 Face 47231 8974 23618 18264 Face 47232 8974 6312 23618 Face 47233 7736 23619 36312 Face 47234 40533 30002 23619 Face 47235 36255 23620 40825 Face 47236 10048 38146 23620 Face 47237 5487 23621 3615 Face 47238 5487 23466 23621 Face 47239 3117 23622 35908 Face 47240 3117 47102 23622 Face 47241 14154 23623 47809 Face 47242 14154 39803 23623 Face 47243 3138 23624 34739 Face 47244 3138 40877 23624 Face 47245 3168 23625 16571 Face 47246 3168 21368 23625 Face 47247 45390 23626 3821 Face 47248 28446 46306 23626 Face 47249 9377 23627 7523 Face 47250 9377 6162 23627 Face 47251 26509 32047 10654 Face 47252 23629 30744 23628 Face 47253 26509 23629 23628 Face 47254 22267 2342 23629 Face 47255 10353 47504 20648 Face 47256 26027 31635 23630 Face 47257 8459 23631 24861 Face 47258 8459 34522 23631 Face 47259 14291 23632 38048 Face 47260 14291 34363 23632 Face 47261 6941 23633 6938 Face 47262 6941 31551 23633 Face 47263 3979 23634 37841 Face 47264 32431 16971 23634 Face 47265 1321 23635 15223 Face 47266 1321 27453 23635 Face 47267 6615 23636 12762 Face 47268 6615 25834 23636 Face 47269 8854 23637 3448 Face 47270 31707 9606 23637 Face 47271 7838 23638 35917 Face 47272 7838 16013 38214 Face 47273 3959 23639 9097 Face 47274 3959 14605 35328 Face 47275 12734 23640 16264 Face 47276 12734 33496 23640 Face 47277 42781 23641 19494 Face 47278 10521 26155 23641 Face 47279 3395 23642 27726 Face 47280 3395 32345 23642 Face 47281 524 23643 30111 Face 47282 524 7664 23643 Face 47283 1197 23644 17838 Face 47284 1197 48418 23644 Face 47285 2725 23645 26791 Face 47286 2725 41154 23645 Face 47287 1081 23646 40284 Face 47288 1081 5762 23646 Face 47289 3776 23647 19927 Face 47290 34795 25233 23647 Face 47291 29223 23648 47764 Face 47292 30694 34078 43726 Face 47293 1266 23649 12461 Face 47294 1266 9071 42155 Face 47295 16702 23650 7944 Face 47296 16702 19806 23650 Face 47297 4433 23651 46981 Face 47298 4433 722 23651 Face 47299 41137 23652 17584 Face 47300 2816 38407 23652 Face 47301 20054 23653 7015 Face 47302 20054 25062 23653 Face 47303 4033 23654 30475 Face 47304 4033 17342 23654 Face 47305 1515 23655 9116 Face 47306 1515 20642 23655 Face 47307 44599 23656 12417 Face 47308 12416 45623 23656 Face 47309 41614 23657 46645 Face 47310 41614 8891 23657 Face 47311 7764 23658 34472 Face 47312 34727 20568 23658 Face 47313 16609 23659 47829 Face 47314 16609 8896 23659 Face 47315 11711 23660 33362 Face 47316 11711 20763 23660 Face 47317 30710 23661 7891 Face 47318 1569 5457 23661 Face 47319 6061 23662 41552 Face 47320 6061 14534 23662 Face 47321 6298 23663 23400 Face 47322 6298 20080 23663 Face 47323 8419 23664 21667 Face 47324 8419 45431 23664 Face 47325 5874 23665 14036 Face 47326 39425 9782 23665 Face 47327 36370 23666 42263 Face 47328 45652 37679 23666 Face 47329 7474 23667 15797 Face 47330 7474 26714 23667 Face 47331 3650 23668 41070 Face 47332 3650 22566 40999 Face 47333 6160 23669 43987 Face 47334 6160 898 23669 Face 47335 27955 23670 7362 Face 47336 43488 25392 23670 Face 47337 4450 23671 18384 Face 47338 4450 29763 23671 Face 47339 8200 23672 6636 Face 47340 8200 43872 23672 Face 47341 25569 23673 5981 Face 47342 3681 11515 23673 Face 47343 7459 23674 19520 Face 47344 7459 9790 23674 Face 47345 48483 42213 13722 Face 47346 4160 23065 38914 Face 47347 7239 23676 7238 Face 47348 7239 39360 23676 Face 47349 45058 23677 17099 Face 47350 32085 45655 23677 Face 47351 358 23678 30630 Face 47352 358 12375 23678 Face 47353 8788 23679 36840 Face 47354 8788 22590 39116 Face 47355 1847 23680 22732 Face 47356 1847 38363 23680 Face 47357 11778 23681 27120 Face 47358 11778 28098 23681 Face 47359 9094 23682 17588 Face 47360 9094 19574 23682 Face 47361 37069 23684 13703 Face 47362 2390 28700 23683 Face 47363 23683 23684 37069 Face 47364 23683 40648 23684 Face 47365 26177 23685 35469 Face 47366 26177 6506 23685 Face 47367 13662 23686 13663 Face 47368 13662 15946 23686 Face 47369 1669 23687 41797 Face 47370 1669 2659 23687 Face 47371 5967 23688 19662 Face 47372 5967 44071 23688 Face 47373 31870 38037 12222 Face 47374 31870 16689 38037 Face 47375 8626 23690 38500 Face 47376 8626 9133 44730 Face 47377 8626 23691 9133 Face 47378 8626 41454 23691 Face 47379 3931 23692 13708 Face 47380 47202 20306 23692 Face 47381 12074 23693 37159 Face 47382 12074 3532 23693 Face 47383 446 23694 10997 Face 47384 25818 45162 23694 Face 47385 12350 23695 14389 Face 47386 12350 25229 23695 Face 47387 1351 23696 44767 Face 47388 37907 4661 44937 Face 47389 6280 23697 35624 Face 47390 6280 13839 23697 Face 47391 8118 23698 21293 Face 47392 8118 10475 23698 Face 47393 17811 23699 20480 Face 47394 23700 36574 23699 Face 47395 17811 23700 23699 Face 47396 17811 4296 23700 Face 47397 26955 23701 14957 Face 47398 27717 46446 23701 Face 47399 1552 23702 14200 Face 47400 1552 13645 23702 Face 47401 17620 23703 17622 Face 47402 17620 21418 23703 Face 47403 30771 23704 13219 Face 47404 3459 18519 23704 Face 47405 28002 23705 6692 Face 47406 12086 22298 23705 Face 47407 25751 43831 15603 Face 47408 24602 30730 23706 Face 47409 9701 23707 1347 Face 47410 9701 23167 23707 Face 47411 43056 23708 3336 Face 47412 27030 8083 23708 Face 47413 6079 23709 12291 Face 47414 6079 41404 23709 Face 47415 3424 23710 7364 Face 47416 3424 10220 23710 Face 47417 724 23711 30499 Face 47418 44469 25307 23711 Face 47419 18513 23712 15634 Face 47420 18513 7256 23712 Face 47421 4502 23713 49861 Face 47422 4502 48597 23713 Face 47423 7388 23714 38442 Face 47424 7388 265 23714 Face 47425 8889 23715 49159 Face 47426 8889 2635 23715 Face 47427 8636 23716 46827 Face 47428 8636 28292 23716 Face 47429 581 39299 10680 Face 47430 581 19037 23717 Face 47431 3238 23718 13067 Face 47432 3238 42243 23718 Face 47433 10166 23719 15598 Face 47434 10166 30856 23719 Face 47435 40274 23720 19053 Face 47436 9581 37975 23720 Face 47437 7031 23721 47915 Face 47438 7031 44255 23721 Face 47439 8138 23722 44729 Face 47440 8138 13235 23722 Face 47441 32443 40026 6641 Face 47442 7488 12288 23723 Face 47443 1980 23724 44311 Face 47444 1980 36444 23724 Face 47445 49938 23725 1651 Face 47446 2780 30696 23725 Face 47447 2200 23726 13711 Face 47448 2200 42428 48097 Face 47449 4349 23727 39350 Face 47450 4349 23443 23727 Face 47451 18727 23728 37145 Face 47452 18727 9706 23728 Face 47453 47784 23729 44085 Face 47454 47783 19388 48625 Face 47455 43609 40283 11114 Face 47456 29237 33718 23730 Face 47457 688 23731 34978 Face 47458 23733 26195 41077 Face 47459 23733 23732 36513 Face 47460 688 32762 23732 Face 47461 688 23733 23731 Face 47462 688 23732 23733 Face 47463 1355 23734 8107 Face 47464 1355 46164 23734 Face 47465 2211 23735 31374 Face 47466 35966 8302 23735 Face 47467 9832 23736 45341 Face 47468 9832 1791 23736 Face 47469 6038 26806 14762 Face 47470 6038 28841 23737 Face 47471 33475 23738 19577 Face 47472 35504 5564 23738 Face 47473 11233 23739 18605 Face 47474 11233 14311 23739 Face 47475 11880 23740 23329 Face 47476 11880 32101 23740 Face 47477 483 23741 4080 Face 47478 483 26730 23741 Face 47479 483 23742 38201 Face 47480 483 4080 23742 Face 47481 36625 23743 32017 Face 47482 36625 14806 23743 Face 47483 7453 42340 2226 Face 47484 7453 29556 23744 Face 47485 9483 23745 41509 Face 47486 27846 23373 23745 Face 47487 15210 23746 38936 Face 47488 15210 15212 23746 Face 47489 20218 23747 10977 Face 47490 20218 13994 23747 Face 47491 11461 23748 7107 Face 47492 11461 44758 23748 Face 47493 5457 23749 23661 Face 47494 5457 1079 23749 Face 47495 23751 37724 13857 Face 47496 28235 49570 37724 Face 47497 8451 43174 23752 Face 47498 28235 37724 43174 Face 47499 26704 23752 23751 Face 47500 19849 8451 23752 Face 47501 1122 23753 23884 Face 47502 1122 7511 23753 Face 47503 4404 23754 28571 Face 47504 4404 19981 23754 Face 47505 8826 23755 33866 Face 47506 8826 13168 23755 Face 47507 20489 23756 17131 Face 47508 20489 5653 23756 Face 47509 14923 23757 10453 Face 47510 14923 42647 23757 Face 47511 37271 23758 16220 Face 47512 23759 48322 23758 Face 47513 7948 23759 23758 Face 47514 7948 3529 23759 Face 47515 545 23760 7632 Face 47516 545 37755 23760 Face 47517 9283 23761 22320 Face 47518 9283 14972 23761 Face 47519 23763 23762 48150 Face 47520 23763 473 23762 Face 47521 8256 23763 19747 Face 47522 8256 473 23763 Face 47523 14593 23764 2329 Face 47524 14593 27736 23764 Face 47525 1170 23765 48054 Face 47526 30340 22773 23765 Face 47527 44531 23766 6127 Face 47528 2390 23683 37069 Face 47529 15812 23767 5953 Face 47530 15812 6766 23767 Face 47531 43944 23768 29247 Face 47532 1228 16067 23768 Face 47533 14715 23769 27941 Face 47534 14715 489 23769 Face 47535 13408 23770 2698 Face 47536 13408 36795 23770 Face 47537 44728 23771 24725 Face 47538 6317 1541 38536 Face 47539 12407 23772 21784 Face 47540 12407 14710 23772 Face 47541 13490 23773 37151 Face 47542 13490 38644 23773 Face 47543 1382 23774 31939 Face 47544 40483 12027 40969 Face 47545 8566 23775 2301 Face 47546 8566 15440 23775 Face 47547 2505 23776 49760 Face 47548 46022 8361 23776 Face 47549 750 32793 21684 Face 47550 750 15341 23777 Face 47551 24096 23778 35560 Face 47552 24096 35905 23778 Face 47553 16404 23779 11312 Face 47554 16404 23047 23779 Face 47555 44549 23780 31417 Face 47556 43916 13850 23780 Face 47557 550 23781 18287 Face 47558 23782 9791 23781 Face 47559 550 23782 23781 Face 47560 550 10239 23782 Face 47561 47018 23783 16963 Face 47562 9166 22601 49883 Face 47563 11675 23784 1682 Face 47564 11675 2677 23784 Face 47565 44272 23785 16800 Face 47566 31001 4706 23785 Face 47567 9172 23786 15788 Face 47568 9172 21571 23786 Face 47569 7454 23787 49074 Face 47570 7454 2178 23787 Face 47571 3779 23788 27813 Face 47572 3779 22795 23788 Face 47573 851 23789 22295 Face 47574 46850 24665 23789 Face 47575 10186 23790 42591 Face 47576 10186 21008 23790 Face 47577 1990 23791 3838 Face 47578 1990 40075 23791 Face 47579 607 23792 45972 Face 47580 607 2114 23792 Face 47581 8658 23793 15637 Face 47582 8658 47542 23793 Face 47583 5312 23794 17904 Face 47584 5312 29841 23794 Face 47585 2954 23795 36863 Face 47586 2954 45365 23795 Face 47587 8426 44119 15339 Face 47588 43423 37535 23796 Face 47589 46675 23797 28685 Face 47590 8350 48630 23797 Face 47591 4950 23798 23960 Face 47592 33936 14101 23798 Face 47593 13688 23799 33965 Face 47594 28050 931 23799 Face 47595 15662 23800 19476 Face 47596 15662 15663 23800 Face 47597 12929 23801 5702 Face 47598 43628 27112 47520 Face 47599 12152 23802 33768 Face 47600 12152 21376 23802 Face 47601 23804 23803 421 Face 47602 48344 18076 23803 Face 47603 5666 23804 23930 Face 47604 48344 23803 23804 Face 47605 43120 23805 38513 Face 47606 9059 21911 23805 Face 47607 16604 23806 26430 Face 47608 16604 9529 23806 Face 47609 6612 23807 6827 Face 47610 6612 40904 23807 Face 47611 1984 23808 16458 Face 47612 1984 30892 23808 Face 47613 1984 23809 30892 Face 47614 1984 34829 23809 Face 47615 4691 24169 22312 Face 47616 4691 44048 24169 Face 47617 4316 23811 29070 Face 47618 4316 49764 23811 Face 47619 13190 23812 23600 Face 47620 13190 972 23812 Face 47621 3130 23813 20124 Face 47622 3130 15129 23813 Face 47623 31165 23814 47344 Face 47624 49132 34249 23814 Face 47625 24682 23815 29203 Face 47626 4345 17023 23815 Face 47627 48168 23816 32583 Face 47628 14287 20341 23816 Face 47629 5020 23817 9892 Face 47630 5020 46271 23817 Face 47631 5539 23818 45331 Face 47632 33527 7912 36631 Face 47633 47364 23819 43676 Face 47634 532 37620 23819 Face 47635 9740 23820 15087 Face 47636 9740 7941 23820 Face 47637 16998 23821 1979 Face 47638 16998 16997 23821 Face 47639 2549 23822 12079 Face 47640 2549 21370 23822 Face 47641 1142 23823 8928 Face 47642 1142 26575 23823 Face 47643 26630 48847 16625 Face 47644 8080 37384 23824 Face 47645 23826 23825 46909 Face 47646 23826 40499 32612 Face 47647 9646 23826 46909 Face 47648 37189 40499 23826 Face 47649 46134 23827 18110 Face 47650 10604 49349 23827 Face 47651 7042 23828 22553 Face 47652 7042 1336 23828 Face 47653 9252 23829 47730 Face 47654 41876 1775 23829 Face 47655 11726 23830 34235 Face 47656 11726 31244 23830 Face 47657 6536 23831 35649 Face 47658 6536 44634 23831 Face 47659 12519 23832 7612 Face 47660 12519 6433 23832 Face 47661 1381 23833 36854 Face 47662 1381 20896 23833 Face 47663 1122 23834 5053 Face 47664 1122 18890 23834 Face 47665 5382 23835 15475 Face 47666 5382 8970 45728 Face 47667 5989 23836 40269 Face 47668 5989 17558 23836 Face 47669 30370 23837 2479 Face 47670 1531 13127 23837 Face 47671 6106 23838 36171 Face 47672 23839 35402 23838 Face 47673 6106 23839 23838 Face 47674 29861 14499 46996 Face 47675 39297 44423 20857 Face 47676 9494 47047 23840 Face 47677 13283 23841 2402 Face 47678 13283 32540 23841 Face 47679 23843 32165 11650 Face 47680 35596 6176 23842 Face 47681 4816 23843 43147 Face 47682 4816 32165 23843 Face 47683 8977 23844 16583 Face 47684 8977 37678 23844 Face 47685 4144 23845 37212 Face 47686 4144 9748 23845 Face 47687 24621 23846 8249 Face 47688 9701 33064 23846 Face 47689 5347 23847 11328 Face 47690 5347 39107 23847 Face 47691 1443 23848 18885 Face 47692 35665 11136 23848 Face 47693 5509 23849 43925 Face 47694 24381 5508 23849 Face 47695 3313 36413 13110 Face 47696 24688 14211 23850 Face 47697 37442 47138 36297 Face 47698 41615 23603 40550 Face 47699 2091 23852 47438 Face 47700 2091 30456 26687 Face 47701 23852 23853 22098 Face 47702 23852 35781 23853 Face 47703 21677 23854 40466 Face 47704 21677 49029 23854 Face 47705 566 44841 26016 Face 47706 566 19883 44841 Face 47707 12433 23856 4423 Face 47708 12433 43272 23856 Face 47709 355 23857 12507 Face 47710 355 12508 23857 Face 47711 34405 23858 20191 Face 47712 27575 19032 23858 Face 47713 4696 23859 22500 Face 47714 4696 20140 23859 Face 47715 30709 47695 5906 Face 47716 45592 2256 23860 Face 47717 15497 23861 42860 Face 47718 44592 9406 23861 Face 47719 2950 38653 12001 Face 47720 2950 8683 23862 Face 47721 27146 47714 7601 Face 47722 2997 20528 23863 Face 47723 44195 23864 37744 Face 47724 40635 24342 23864 Face 47725 8231 23865 1740 Face 47726 30661 39622 23865 Face 47727 531 23866 42106 Face 47728 531 9050 23866 Face 47729 5649 23867 16502 Face 47730 5649 4085 23867 Face 47731 2230 46899 31160 Face 47732 2230 15691 23868 Face 47733 10565 23869 32125 Face 47734 10565 35048 23869 Face 47735 17063 23870 32551 Face 47736 39303 4666 23870 Face 47737 28374 23871 34971 Face 47738 1902 4025 23871 Face 47739 23873 23872 40922 Face 47740 49297 12215 23872 Face 47741 8054 43229 11505 Face 47742 8054 23872 43229 Face 47743 16495 23874 11342 Face 47744 16495 6797 23874 Face 47745 5515 23875 36097 Face 47746 5515 17409 23875 Face 47747 2133 23876 15676 Face 47748 2133 37358 23876 Face 47749 5816 23877 9887 Face 47750 31289 7340 23877 Face 47751 4224 23878 18269 Face 47752 4224 35804 23878 Face 47753 2944 42313 11545 Face 47754 2944 5330 23879 Face 47755 10093 47195 29704 Face 47756 40404 22594 23880 Face 47757 7596 23881 24960 Face 47758 7596 34552 23881 Face 47759 5671 23882 46273 Face 47760 5671 35236 23882 Face 47761 3918 23883 347 Face 47762 3918 10854 23883 Face 47763 42473 23884 23753 Face 47764 23885 18890 41414 Face 47765 23886 23885 23884 Face 47766 23886 40176 23885 Face 47767 6326 23886 23884 Face 47768 6326 9288 23886 Face 47769 3711 47810 12567 Face 47770 32474 7570 23887 Face 47771 1405 37023 21560 Face 47772 1405 48100 23888 Face 47773 8394 23889 10913 Face 47774 8394 23326 23889 Face 47775 8890 23890 27897 Face 47776 8890 37725 23890 Face 47777 23892 23891 19987 Face 47778 3780 44391 23891 Face 47779 3780 23892 13856 Face 47780 3780 23891 23892 Face 47781 1242 23893 26877 Face 47782 1242 20437 23893 Face 47783 1242 23894 20437 Face 47784 29813 44467 23894 Face 47785 9296 23895 16993 Face 47786 9296 3879 23895 Face 47787 1540 23896 26117 Face 47788 1540 22509 23896 Face 47789 41777 23897 32556 Face 47790 8674 24338 23897 Face 47791 21573 49547 3967 Face 47792 21573 44997 23898 Face 47793 2615 23899 22221 Face 47794 32563 46367 23899 Face 47795 32370 23900 20156 Face 47796 32370 19710 23900 Face 47797 6451 23901 16086 Face 47798 6451 23567 23901 Face 47799 8761 46781 28922 Face 47800 43855 48569 41510 Face 47801 9576 23903 21219 Face 47802 9576 20425 23903 Face 47803 22004 23904 35348 Face 47804 22004 27577 23904 Face 47805 218 23905 5338 Face 47806 31960 40670 23905 Face 47807 7262 23906 46480 Face 47808 7262 45593 23906 Face 47809 8095 23907 35988 Face 47810 8095 9883 23907 Face 47811 13844 23908 23579 Face 47812 13844 43981 23908 Face 47813 3743 23909 4081 Face 47814 3743 19544 23909 Face 47815 41993 23910 36643 Face 47816 10014 14587 23910 Face 47817 10178 33565 26655 Face 47818 10178 18722 33565 Face 47819 15898 23912 31783 Face 47820 15898 38962 23912 Face 47821 11647 23913 26311 Face 47822 11647 32915 23913 Face 47823 8578 23914 40229 Face 47824 8578 3112 23914 Face 47825 42866 23915 25808 Face 47826 7493 2554 23915 Face 47827 25652 33467 18558 Face 47828 7493 23915 42866 Face 47829 41616 23917 28247 Face 47830 15689 26018 23917 Face 47831 3057 23918 12205 Face 47832 37553 19846 23918 Face 47833 35095 23919 9764 Face 47834 23920 7969 23919 Face 47835 580 23920 23919 Face 47836 580 22998 23920 Face 47837 13980 23921 45583 Face 47838 13980 31181 23921 Face 47839 13127 23922 23837 Face 47840 13127 46883 23922 Face 47841 2595 23923 261 Face 47842 2595 40228 23923 Face 47843 2373 23924 36187 Face 47844 2373 10759 23924 Face 47845 9490 23925 29933 Face 47846 47772 15953 23925 Face 47847 5351 23926 9653 Face 47848 5351 15698 23926 Face 47849 38246 23927 17861 Face 47850 23928 18271 23927 Face 47851 38246 23928 23927 Face 47852 9754 38637 23928 Face 47853 27036 23929 2624 Face 47854 40104 35907 23929 Face 47855 32042 23930 23804 Face 47856 3320 11788 23930 Face 47857 38557 23931 33819 Face 47858 23932 45604 23931 Face 47859 13665 23932 23931 Face 47860 13665 47213 49937 Face 47861 935 40817 19219 Face 47862 935 42426 23933 Face 47863 41865 23934 11108 Face 47864 30271 5520 23934 Face 47865 14084 23935 1745 Face 47866 14084 13831 23935 Face 47867 13229 23936 8358 Face 47868 13229 19900 23936 Face 47869 19483 23937 10968 Face 47870 19483 16116 23937 Face 47871 31531 23938 9077 Face 47872 5832 13413 38905 Face 47873 9747 23939 42643 Face 47874 9747 22759 23939 Face 47875 356 23940 44013 Face 47876 40500 31200 23940 Face 47877 7586 23941 42803 Face 47878 7586 43952 23941 Face 47879 7965 40783 20542 Face 47880 7965 711 23942 Face 47881 18317 23943 29058 Face 47882 18317 48892 23943 Face 47883 19539 48742 7404 Face 47884 19539 20132 48742 Face 47885 19539 34218 25844 Face 47886 19539 7404 34218 Face 47887 13621 48792 23431 Face 47888 37921 27367 23946 Face 47889 6212 23947 19424 Face 47890 30058 39615 23947 Face 47891 4672 23948 43979 Face 47892 26675 23478 23948 Face 47893 18037 23949 33026 Face 47894 18037 5387 23949 Face 47895 38540 23950 43779 Face 47896 8614 9132 23950 Face 47897 9920 23951 23520 Face 47898 9920 48605 49030 Face 47899 37505 23952 26481 Face 47900 37505 37732 23952 Face 47901 9479 23953 30479 Face 47902 33710 33759 44881 Face 47903 12953 23954 37961 Face 47904 12953 19267 23954 Face 47905 305 23955 27415 Face 47906 305 15019 23955 Face 47907 10179 26655 33565 Face 47908 10179 32123 33795 Face 47909 9889 23957 4016 Face 47910 9889 32110 23957 Face 47911 49436 23958 25092 Face 47912 38387 22349 23958 Face 47913 5108 23959 47275 Face 47914 5108 41814 23959 Face 47915 36324 23960 8998 Face 47916 19397 4950 23960 Face 47917 19016 23961 30533 Face 47918 19016 48955 23961 Face 47919 4742 23962 15526 Face 47920 4742 20634 23962 Face 47921 6385 23963 14536 Face 47922 6385 17350 23963 Face 47923 13234 23964 6202 Face 47924 23965 32792 23964 Face 47925 13234 23965 23964 Face 47926 24525 39479 23965 Face 47927 47020 23966 22548 Face 47928 3717 1185 23966 Face 47929 2016 23967 40177 Face 47930 2016 9383 23967 Face 47931 13003 23968 15979 Face 47932 13003 506 23968 Face 47933 9520 23969 32174 Face 47934 9520 4699 23969 Face 47935 23971 23970 13542 Face 47936 492 7643 23970 Face 47937 492 23971 21349 Face 47938 492 23970 23971 Face 47939 3066 23972 36642 Face 47940 23973 39490 23972 Face 47941 3066 23973 23972 Face 47942 38121 15233 23973 Face 47943 11032 23974 16732 Face 47944 11032 22979 23974 Face 47945 1048 23975 21605 Face 47946 39793 23380 34221 Face 47947 2643 23976 19518 Face 47948 2643 18506 23976 Face 47949 4536 23977 40746 Face 47950 4536 7327 45817 Face 47951 4536 23978 7327 Face 47952 4536 4537 23978 Face 47953 89 23979 48260 Face 47954 89 10989 48603 Face 47955 4382 23980 5367 Face 47956 4382 10370 23980 Face 47957 16143 23981 49557 Face 47958 16143 16142 23981 Face 47959 9631 23982 19019 Face 47960 9631 11091 23982 Face 47961 23984 23983 29253 Face 47962 31055 8963 23983 Face 47963 13377 23984 17755 Face 47964 31056 23983 23984 Face 47965 34585 23985 18448 Face 47966 34586 35373 23985 Face 47967 4328 23986 7141 Face 47968 4328 13673 23986 Face 47969 18256 23987 18385 Face 47970 18256 23433 23987 Face 47971 3028 23988 48377 Face 47972 29034 34846 44260 Face 47973 45752 23989 41698 Face 47974 45752 852 23989 Face 47975 3297 23990 18690 Face 47976 3297 46725 23990 Face 47977 37352 46350 19194 Face 47978 6267 31561 23991 Face 47979 37112 23992 17974 Face 47980 37112 49978 23992 Face 47981 6119 23993 47313 Face 47982 6119 45862 23993 Face 47983 11811 37610 14270 Face 47984 11811 24086 23994 Face 47985 48009 23995 8598 Face 47986 28576 40007 23995 Face 47987 6108 23996 17897 Face 47988 6108 12285 23996 Face 47989 10815 23997 23029 Face 47990 10815 42762 23997 Face 47991 46155 23998 33065 Face 47992 862 18344 40349 Face 47993 12524 23999 19948 Face 47994 12524 24229 23999 Face 47995 5988 24000 3714 Face 47996 5988 44616 24000 Face 47997 14102 24001 22967 Face 47998 14102 28462 24001 Face 47999 4689 24002 2171 Face 48000 4689 34796 24002 Face 48001 24004 24003 9552 Face 48002 6424 12675 24003 Face 48003 6424 24005 12162 Face 48004 6424 24003 24005 Face 48005 24004 24005 24003 Face 48006 35956 12162 24005 Face 48007 10590 24006 21143 Face 48008 10590 306 24006 Face 48009 24008 24007 6752 Face 48010 24008 44480 24007 Face 48011 5729 24008 1002 Face 48012 5729 44480 24008 Face 48013 2817 24009 13545 Face 48014 2817 38332 24009 Face 48015 9845 46247 37669 Face 48016 24011 44795 46247 Face 48017 9845 24011 46247 Face 48018 9845 13527 24011 Face 48019 12704 24012 133 Face 48020 12704 49629 24012 Face 48021 2275 24013 46263 Face 48022 46444 35967 24013 Face 48023 117 24014 10350 Face 48024 117 33758 24014 Face 48025 24494 24015 8445 Face 48026 13411 28480 45080 Face 48027 16337 24016 48721 Face 48028 16337 27283 24016 Face 48029 43356 37764 44428 Face 48030 3438 8189 24017 Face 48031 3851 24018 21519 Face 48032 3851 46419 24018 Face 48033 2723 24019 18135 Face 48034 2723 22358 24019 Face 48035 25471 24020 48857 Face 48036 35043 21656 24020 Face 48037 9043 24021 9577 Face 48038 9043 29233 24021 Face 48039 11870 24022 15888 Face 48040 43376 42818 24022 Face 48041 29030 37516 43527 Face 48042 24024 49867 40736 Face 48043 36124 24024 40736 Face 48044 36124 49661 24024 Face 48045 1905 24025 6853 Face 48046 1905 8441 24025 Face 48047 10406 30688 38443 Face 48048 10406 33421 30688 Face 48049 24028 24027 2579 Face 48050 8263 49772 35689 Face 48051 8263 24028 36589 Face 48052 8263 24027 24028 Face 48053 41634 24029 19489 Face 48054 41635 31847 24029 Face 48055 21683 24030 29277 Face 48056 21683 44284 24030 Face 48057 11896 24031 15931 Face 48058 35948 2578 24031 Face 48059 25818 44882 4587 Face 48060 42605 18293 24032 Face 48061 10944 24033 28296 Face 48062 10944 276 24033 Face 48063 39834 49282 3132 Face 48064 5662 27839 24034 Face 48065 6275 24035 36762 Face 48066 6275 18395 24035 Face 48067 8632 43135 21798 Face 48068 8632 15080 24036 Face 48069 4947 24037 42421 Face 48070 30050 1340 35681 Face 48071 25137 24038 47079 Face 48072 9542 33792 24038 Face 48073 3964 24039 11389 Face 48074 3964 20520 24039 Face 48075 4326 24040 21792 Face 48076 4326 39747 24040 Face 48077 7788 24041 9734 Face 48078 7788 19799 24041 Face 48079 1196 24042 30027 Face 48080 1196 16917 24042 Face 48081 3625 24043 15309 Face 48082 3625 23199 24043 Face 48083 35961 24044 24479 Face 48084 2099 3847 24044 Face 48085 25315 24045 18736 Face 48086 25315 43669 24045 Face 48087 2251 24046 46399 Face 48088 2251 9054 24046 Face 48089 25645 24047 3905 Face 48090 25646 22819 24047 Face 48091 47892 37213 42082 Face 48092 2350 13882 24048 Face 48093 4641 24049 20969 Face 48094 4641 12099 24049 Face 48095 37710 24050 21781 Face 48096 32677 23413 24050 Face 48097 3355 24051 3472 Face 48098 3355 2954 24051 Face 48099 48709 24052 11069 Face 48100 859 16956 24052 Face 48101 859 24053 49842 Face 48102 859 24052 24054 Face 48103 48709 24054 24052 Face 48104 24053 859 24054 Face 48105 40729 24055 26482 Face 48106 24056 39925 24055 Face 48107 24057 24056 24055 Face 48108 10731 5214 24056 Face 48109 40729 24057 24055 Face 48110 10731 24056 24057 Face 48111 49125 24058 26579 Face 48112 3149 36449 24058 Face 48113 2125 24059 22601 Face 48114 2125 11670 24059 Face 48115 2125 24060 11670 Face 48116 2125 47018 24060 Face 48117 44901 24061 30367 Face 48118 44901 31283 24061 Face 48119 15206 24062 23109 Face 48120 33146 13193 24062 Face 48121 3762 24063 36889 Face 48122 3762 32963 24063 Face 48123 33361 42208 43250 Face 48124 4835 47002 24064 Face 48125 30140 24065 28085 Face 48126 43008 20560 24065 Face 48127 10040 24066 18360 Face 48128 10040 30072 24066 Face 48129 5798 24067 14849 Face 48130 5798 2400 24067 Face 48131 23253 24068 33060 Face 48132 23253 23254 46262 Face 48133 4083 24069 11340 Face 48134 24070 8966 24069 Face 48135 4083 24070 24069 Face 48136 4083 29901 24070 Face 48137 6498 24071 41164 Face 48138 24072 26191 24071 Face 48139 6498 24072 24071 Face 48140 6498 12075 24072 Face 48141 3348 41718 43827 Face 48142 3348 49085 24073 Face 48143 3295 24074 17080 Face 48144 3295 19785 24074 Face 48145 3888 24075 49128 Face 48146 3888 4567 24075 Face 48147 6688 24076 28047 Face 48148 6688 45226 24076 Face 48149 24078 24077 2023 Face 48150 8017 47051 24077 Face 48151 8017 24078 1676 Face 48152 8017 24077 24078 Face 48153 17745 24079 13579 Face 48154 17745 29324 24079 Face 48155 10795 24080 18644 Face 48156 10795 49474 24080 Face 48157 23268 24081 36380 Face 48158 46389 7703 24081 Face 48159 9201 24082 45183 Face 48160 45754 41823 24082 Face 48161 5224 24083 32558 Face 48162 5224 45368 24083 Face 48163 5140 24084 29624 Face 48164 5140 32473 24084 Face 48165 12746 24085 34070 Face 48166 12746 20873 24085 Face 48167 10969 24086 11811 Face 48168 10969 18930 24086 Face 48169 6677 24087 13324 Face 48170 6677 37093 31430 Face 48171 47730 24088 9252 Face 48172 13768 2246 24088 Face 48173 12515 24089 41513 Face 48174 46093 33204 24089 Face 48175 8385 36412 13069 Face 48176 8385 33256 24090 Face 48177 20095 24091 43817 Face 48178 20095 41699 24091 Face 48179 3129 24092 33313 Face 48180 49837 13649 24092 Face 48181 40952 24093 28809 Face 48182 193 17088 44003 Face 48183 148 24094 8875 Face 48184 148 9445 24094 Face 48185 13289 24095 34983 Face 48186 13289 17350 24095 Face 48187 14576 24096 35560 Face 48188 14576 21396 24096 Face 48189 5082 24097 32388 Face 48190 5082 26521 24097 Face 48191 12304 24098 31862 Face 48192 12304 20840 24098 Face 48193 11040 24099 30048 Face 48194 11040 18097 24099 Face 48195 9546 45954 10616 Face 48196 9546 20235 45955 Face 48197 3582 24101 33702 Face 48198 39465 6864 24101 Face 48199 39465 24102 6864 Face 48200 32328 22529 24102 Face 48201 47074 24103 7827 Face 48202 47074 40943 24103 Face 48203 9427 24104 30081 Face 48204 46604 43 46809 Face 48205 3311 24105 38251 Face 48206 3311 17989 24105 Face 48207 8740 24106 353 Face 48208 8740 6873 24106 Face 48209 8222 24107 26949 Face 48210 8222 40354 24107 Face 48211 24109 37514 26199 Face 48212 5534 12403 37514 Face 48213 5534 24109 19475 Face 48214 5534 37514 24109 Face 48215 24610 24110 307 Face 48216 24610 19245 24110 Face 48217 1973 24111 7528 Face 48218 1973 11232 24111 Face 48219 2995 24112 21985 Face 48220 2995 29878 24112 Face 48221 3689 45342 31942 Face 48222 24114 44516 24113 Face 48223 3689 34167 24113 Face 48224 3689 11287 34167 Face 48225 3369 24115 45746 Face 48226 3369 32991 24115 Face 48227 20377 24116 27280 Face 48228 36577 10770 24116 Face 48229 5443 24117 41968 Face 48230 5443 21275 24117 Face 48231 32297 24118 22729 Face 48232 48813 37805 24118 Face 48233 2442 24119 24118 Face 48234 2442 38822 24119 Face 48235 27361 47374 13621 Face 48236 3332 32160 24120 Face 48237 3308 24121 46364 Face 48238 3308 38551 24121 Face 48239 39430 24122 13338 Face 48240 39430 13964 24122 Face 48241 9957 24123 20628 Face 48242 9957 32154 24123 Face 48243 2683 24124 46008 Face 48244 2683 10777 24124 Face 48245 1136 24125 8910 Face 48246 46677 21476 33134 Face 48247 27428 24126 18758 Face 48248 27427 1588 44231 Face 48249 24128 24127 5767 Face 48250 40790 19300 43347 Face 48251 6192 24128 9531 Face 48252 6192 43347 24128 Face 48253 10816 24129 829 Face 48254 43730 22274 24129 Face 48255 13628 24130 47049 Face 48256 13628 37772 24130 Face 48257 764 24131 17467 Face 48258 764 9953 24131 Face 48259 30944 24132 42893 Face 48260 6327 13692 46754 Face 48261 9630 24133 33601 Face 48262 9630 238 24133 Face 48263 2889 24134 40961 Face 48264 2889 34412 24134 Face 48265 32745 24135 21767 Face 48266 32745 33709 36553 Face 48267 24137 24136 44716 Face 48268 14696 40345 24136 Face 48269 14696 24137 22677 Face 48270 14696 24136 24137 Face 48271 36576 24138 12865 Face 48272 24139 13412 24138 Face 48273 36576 24139 24138 Face 48274 9082 29947 24139 Face 48275 3167 24140 8665 Face 48276 3167 22594 24140 Face 48277 10405 24141 10671 Face 48278 10405 26214 24141 Face 48279 32694 25875 22560 Face 48280 12499 5995 24142 Face 48281 8083 24143 7830 Face 48282 8083 24992 24143 Face 48283 39578 24144 19560 Face 48284 8312 25760 24144 Face 48285 44721 24145 22864 Face 48286 39196 978 24145 Face 48287 6236 24146 19977 Face 48288 6236 41377 24146 Face 48289 33225 24147 15167 Face 48290 33225 15159 24147 Face 48291 43309 24148 22616 Face 48292 4673 47749 47251 Face 48293 27615 24149 33813 Face 48294 34074 22596 24149 Face 48295 28850 24150 7502 Face 48296 6952 4889 24150 Face 48297 8737 24151 23212 Face 48298 8737 29227 24151 Face 48299 26962 24152 20824 Face 48300 26962 20486 24152 Face 48301 6067 24153 42378 Face 48302 6067 37268 24153 Face 48303 1810 24154 17303 Face 48304 1810 44059 24154 Face 48305 6707 24155 48924 Face 48306 6707 17979 24155 Face 48307 12477 24156 20160 Face 48308 12477 5879 24156 Face 48309 2609 24157 39623 Face 48310 2609 19778 24157 Face 48311 35717 24158 21788 Face 48312 28793 17439 43683 Face 48313 39335 24159 40667 Face 48314 37599 15594 24159 Face 48315 2745 24160 6754 Face 48316 2745 19435 24160 Face 48317 5247 41043 28530 Face 48318 5247 3300 24161 Face 48319 47297 24162 44409 Face 48320 47297 40631 24162 Face 48321 931 24163 19704 Face 48322 40035 7860 24163 Face 48323 13187 24164 2866 Face 48324 13187 35640 24164 Face 48325 11379 24165 45614 Face 48326 11379 32916 24165 Face 48327 13151 24166 20050 Face 48328 13151 4018 24166 Face 48329 405 24167 22277 Face 48330 405 13380 24167 Face 48331 405 24168 12128 Face 48332 405 41487 24168 Face 48333 29838 24169 44048 Face 48334 23810 22312 24169 Face 48335 1157 24170 22784 Face 48336 1157 27962 24170 Face 48337 25851 24171 43386 Face 48338 15374 49308 24171 Face 48339 24173 24172 42462 Face 48340 24173 33333 24172 Face 48341 8458 24173 42462 Face 48342 8458 2755 24173 Face 48343 26411 24174 17446 Face 48344 26411 34282 24174 Face 48345 29302 24175 21455 Face 48346 8661 10307 24175 Face 48347 38453 44973 696 Face 48348 5410 12290 24176 Face 48349 5410 24177 3562 Face 48350 5410 24176 39857 Face 48351 46964 46509 38274 Face 48352 1298 11050 24178 Face 48353 13966 24179 28041 Face 48354 39680 35438 24179 Face 48355 38664 24180 41559 Face 48356 38664 22974 24181 Face 48357 24180 24181 35403 Face 48358 24180 38664 24181 Face 48359 11605 24182 3185 Face 48360 11605 48954 24182 Face 48361 4688 24183 48311 Face 48362 44054 26895 24183 Face 48363 4012 24184 15576 Face 48364 4012 19163 24184 Face 48365 7541 24185 9886 Face 48366 7541 42826 24185 Face 48367 2413 24186 31983 Face 48368 2413 18907 24186 Face 48369 1503 24187 5486 Face 48370 1503 12618 24187 Face 48371 25088 43483 8793 Face 48372 47308 28891 24188 Face 48373 4725 24189 43483 Face 48374 4725 42911 47308 Face 48375 10772 24190 43810 Face 48376 10772 27276 24190 Face 48377 12726 24191 29636 Face 48378 12726 54 24191 Face 48379 30676 24192 10852 Face 48380 6442 11776 24192 Face 48381 3693 24193 13776 Face 48382 3693 19059 24193 Face 48383 31503 24194 46341 Face 48384 29306 727 24194 Face 48385 37590 24195 23180 Face 48386 37590 16294 24195 Face 48387 977 24196 15430 Face 48388 977 10320 24196 Face 48389 5171 24197 21840 Face 48390 5171 34198 24197 Face 48391 20550 24198 37593 Face 48392 33767 16410 24198 Face 48393 4169 24199 19901 Face 48394 4169 22677 24199 Face 48395 24201 24200 33734 Face 48396 25208 34028 24200 Face 48397 30031 24201 28385 Face 48398 30031 24200 24201 Face 48399 32999 24202 20039 Face 48400 9580 25287 24202 Face 48401 30870 24203 45716 Face 48402 24717 31078 42194 Face 48403 20062 24204 16357 Face 48404 20062 9155 24204 Face 48405 12018 24205 7021 Face 48406 12018 2654 24205 Face 48407 2089 24206 26507 Face 48408 2089 44664 24206 Face 48409 1709 24207 15492 Face 48410 1709 11477 24207 Face 48411 4062 24208 49010 Face 48412 4062 18447 24208 Face 48413 8368 24209 38098 Face 48414 27303 16920 24209 Face 48415 37559 24210 12730 Face 48416 3136 15766 24210 Face 48417 28970 24211 14172 Face 48418 13381 2434 24211 Face 48419 14060 24212 47737 Face 48420 14060 15488 24212 Face 48421 48591 24213 3273 Face 48422 34793 32295 24213 Face 48423 4042 24214 38472 Face 48424 33396 13722 24214 Face 48425 1270 24215 2593 Face 48426 1270 19309 24215 Face 48427 8357 24216 33945 Face 48428 43397 2530 44851 Face 48429 8218 24217 20000 Face 48430 8218 36436 24217 Face 48431 18748 24218 502 Face 48432 18748 22353 24218 Face 48433 15034 24219 35894 Face 48434 24550 21208 24219 Face 48435 3137 24220 18935 Face 48436 37434 20907 33271 Face 48437 7816 24221 14654 Face 48438 7816 1044 24221 Face 48439 202 24222 48360 Face 48440 202 28805 24222 Face 48441 3254 24223 21478 Face 48442 3254 48788 24223 Face 48443 5525 24224 21297 Face 48444 5525 26380 24224 Face 48445 40655 24225 34692 Face 48446 11308 3521 24225 Face 48447 3392 24226 31841 Face 48448 3392 11740 24226 Face 48449 24885 24227 3643 Face 48450 4495 15311 49254 Face 48451 24229 49785 23999 Face 48452 3250 37359 24228 Face 48453 41211 24229 29015 Face 48454 41211 49785 24229 Face 48455 3250 24230 30284 Face 48456 41211 10026 24230 Face 48457 13384 24231 617 Face 48458 13384 19341 24231 Face 48459 12137 24232 27946 Face 48460 12137 35697 24232 Face 48461 24234 24233 29603 Face 48462 12488 21487 24233 Face 48463 12488 24234 22638 Face 48464 12488 24233 24234 Face 48465 7657 24235 17820 Face 48466 24743 14365 24235 Face 48467 36905 24236 21827 Face 48468 8274 40683 24236 Face 48469 5929 24237 27204 Face 48470 5929 21744 24237 Face 48471 11259 24238 16694 Face 48472 41113 13063 24238 Face 48473 4786 24239 33903 Face 48474 4786 26678 24239 Face 48475 4354 24240 9227 Face 48476 29528 17383 24240 Face 48477 1247 24241 7606 Face 48478 36625 5782 48132 Face 48479 34917 24242 19540 Face 48480 3906 48120 24242 Face 48481 15672 24243 21169 Face 48482 15672 29192 24243 Face 48483 31927 24244 15399 Face 48484 7956 22374 24244 Face 48485 8925 47701 29953 Face 48486 8925 16631 24245 Face 48487 46085 39093 30029 Face 48488 654 18749 24246 Face 48489 37009 24247 25197 Face 48490 3743 4081 24247 Face 48491 8154 24248 16834 Face 48492 8154 34337 24248 Face 48493 33397 24249 29736 Face 48494 12042 16196 24249 Face 48495 11438 24250 15483 Face 48496 25396 15143 24250 Face 48497 38525 24251 16228 Face 48498 660 32662 24251 Face 48499 24251 24252 21094 Face 48500 24251 32662 24252 Face 48501 1519 38942 15735 Face 48502 1519 36014 38942 Face 48503 5850 35739 46741 Face 48504 5850 9512 43954 Face 48505 10561 24255 2095 Face 48506 10561 1240 24255 Face 48507 865 24256 46560 Face 48508 865 33502 24256 Face 48509 6428 48767 27078 Face 48510 6428 11097 24257 Face 48511 37891 24258 28767 Face 48512 2768 16280 24258 Face 48513 2799 45056 11554 Face 48514 2799 1100 24259 Face 48515 42302 24260 18491 Face 48516 4313 7828 24260 Face 48517 7730 24261 44394 Face 48518 7730 23003 41625 Face 48519 2829 24262 47806 Face 48520 2829 9673 24262 Face 48521 2587 24263 46659 Face 48522 2587 28398 24263 Face 48523 29898 41561 17095 Face 48524 1440 21744 41561 Face 48525 42342 24265 19585 Face 48526 18440 22725 24265 Face 48527 9604 24266 16171 Face 48528 34360 11216 24266 Face 48529 7931 24267 47750 Face 48530 7931 3382 24267 Face 48531 484 41483 28940 Face 48532 484 23037 24268 Face 48533 19880 24269 33058 Face 48534 19880 37383 24269 Face 48535 32643 24270 48508 Face 48536 24927 11189 24270 Face 48537 13261 24271 13182 Face 48538 24272 17033 24271 Face 48539 13261 24272 24271 Face 48540 13261 30102 24272 Face 48541 8612 24273 14568 Face 48542 36139 6832 24273 Face 48543 17339 24274 40132 Face 48544 17339 4321 24274 Face 48545 5909 44813 33674 Face 48546 45048 26053 24275 Face 48547 954 24276 27442 Face 48548 954 41423 24276 Face 48549 14759 24277 31488 Face 48550 14759 4841 24277 Face 48551 39176 24278 48750 Face 48552 4995 30487 24278 Face 48553 24915 24279 29144 Face 48554 24915 6863 24279 Face 48555 12438 49889 30410 Face 48556 12438 1304 24280 Face 48557 5575 24281 31210 Face 48558 5575 18556 24281 Face 48559 24281 24282 13790 Face 48560 24281 45427 24282 Face 48561 14737 24283 19309 Face 48562 14737 31118 24283 Face 48563 9520 24284 30542 Face 48564 9520 18289 24284 Face 48565 1299 24285 48353 Face 48566 47392 5730 24285 Face 48567 1086 24286 43539 Face 48568 1086 22164 24286 Face 48569 11364 45220 25784 Face 48570 11364 45192 24287 Face 48571 12236 24288 25515 Face 48572 12236 15416 24288 Face 48573 5264 24289 44521 Face 48574 40170 10454 24289 Face 48575 24291 24290 32963 Face 48576 8213 24063 24290 Face 48577 38780 24291 8214 Face 48578 8213 24290 24291 Face 48579 4322 24292 29345 Face 48580 35358 567 24292 Face 48581 38121 24293 15233 Face 48582 38121 19764 24293 Face 48583 6336 24294 36458 Face 48584 41522 48997 24294 Face 48585 398 24295 40644 Face 48586 39105 3024 35618 Face 48587 792 24296 40380 Face 48588 792 31216 24296 Face 48589 27103 24297 43069 Face 48590 7399 21860 24297 Face 48591 12148 24298 37213 Face 48592 12148 43025 24298 Face 48593 2015 49294 35972 Face 48594 2015 47837 24299 Face 48595 28321 39030 36097 Face 48596 9760 31667 24300 Face 48597 4039 24301 12344 Face 48598 4039 16740 24301 Face 48599 34661 24302 31977 Face 48600 43178 35437 24302 Face 48601 44517 24303 1618 Face 48602 13107 3235 24303 Face 48603 7095 24304 880 Face 48604 33677 29106 38337 Face 48605 4598 24305 12510 Face 48606 33308 35866 24305 Face 48607 6852 24306 9965 Face 48608 6852 48999 24306 Face 48609 38213 24307 18430 Face 48610 38213 49757 24307 Face 48611 12039 24308 15676 Face 48612 12039 16933 24308 Face 48613 33708 24309 48367 Face 48614 45401 6693 24309 Face 48615 29034 24310 12966 Face 48616 3028 21277 24310 Face 48617 6866 24311 4791 Face 48618 6866 48154 45894 Face 48619 8715 24312 27937 Face 48620 8715 18953 24312 Face 48621 8715 24313 48235 Face 48622 8715 46466 24313 Face 48623 7437 24314 47923 Face 48624 7437 16008 24314 Face 48625 49335 24315 23117 Face 48626 5026 17836 24315 Face 48627 37266 24316 8401 Face 48628 20440 10011 24316 Face 48629 4685 24317 30993 Face 48630 4685 47184 49593 Face 48631 33906 48034 17778 Face 48632 24319 43749 24318 Face 48633 2772 24319 17330 Face 48634 2772 43749 24319 Face 48635 11924 24320 5851 Face 48636 11924 13452 24320 Face 48637 6111 24321 11652 Face 48638 24323 18573 24321 Face 48639 6111 24322 16509 Face 48640 6111 11652 24322 Face 48641 6111 24323 24321 Face 48642 6111 47933 24323 Face 48643 8306 24324 2037 Face 48644 37656 26115 24324 Face 48645 4160 49856 17513 Face 48646 4160 23675 48483 Face 48647 1067 24326 31832 Face 48648 1067 28638 24326 Face 48649 14120 24327 28991 Face 48650 48025 397 24327 Face 48651 35947 24328 291 Face 48652 12374 19931 47036 Face 48653 4215 45712 23535 Face 48654 4215 46130 24329 Face 48655 11307 24330 2910 Face 48656 11307 34711 24330 Face 48657 11623 39861 6807 Face 48658 37299 45922 24331 Face 48659 9547 24332 22979 Face 48660 9547 14246 24332 Face 48661 9414 24333 39990 Face 48662 9414 19162 42743 Face 48663 12679 24334 21791 Face 48664 12679 1495 24334 Face 48665 24336 24335 15516 Face 48666 34529 25281 24335 Face 48667 35617 24336 13607 Face 48668 34529 24335 24336 Face 48669 14888 24337 35762 Face 48670 14888 31740 24337 Face 48671 36740 24338 8674 Face 48672 36740 33499 24338 Face 48673 5343 24339 22963 Face 48674 24340 25406 24339 Face 48675 5343 24340 24339 Face 48676 5343 18721 24340 Face 48677 33222 24341 40400 Face 48678 1570 18751 24341 Face 48679 24343 24342 16433 Face 48680 24343 16466 24342 Face 48681 6939 24343 11029 Face 48682 6939 16466 24343 Face 48683 37700 24344 16855 Face 48684 45341 23736 24344 Face 48685 10668 24345 7440 Face 48686 10668 40256 24345 Face 48687 11099 24346 14896 Face 48688 29050 23332 24346 Face 48689 5673 24347 38549 Face 48690 5673 45750 24347 Face 48691 2498 24348 32102 Face 48692 29495 47908 24348 Face 48693 1738 24349 14679 Face 48694 1738 41958 24349 Face 48695 12407 24350 18978 Face 48696 12407 21784 49664 Face 48697 31960 24351 27882 Face 48698 218 41801 24351 Face 48699 2990 46270 39810 Face 48700 2990 15807 24352 Face 48701 17222 24353 33154 Face 48702 17222 43870 24353 Face 48703 17222 49022 5880 Face 48704 17222 33154 24354 Face 48705 6126 24355 17910 Face 48706 27548 19284 36759 Face 48707 1430 24356 9752 Face 48708 1430 29632 24356 Face 48709 10902 24357 47274 Face 48710 10902 5820 24357 Face 48711 433 48936 34517 Face 48712 433 5005 48935 Face 48713 9308 24359 21091 Face 48714 32589 41938 24359 Face 48715 38209 24360 1310 Face 48716 41415 44042 24360 Face 48717 813 24361 21102 Face 48718 813 32401 24361 Face 48719 9626 24362 39884 Face 48720 9626 3890 24362 Face 48721 6463 24363 3591 Face 48722 6463 21785 42925 Face 48723 6554 24364 14046 Face 48724 6554 7418 24364 Face 48725 10939 24365 2014 Face 48726 10939 16334 24365 Face 48727 6205 24366 43138 Face 48728 6205 141 24366 Face 48729 24368 24367 28734 Face 48730 289 17961 24367 Face 48731 289 24368 33788 Face 48732 289 24367 24368 Face 48733 1997 24369 31400 Face 48734 1997 41696 24369 Face 48735 46727 24370 19376 Face 48736 26780 2856 37381 Face 48737 7280 24371 17619 Face 48738 7280 47792 24371 Face 48739 27144 48790 6658 Face 48740 1097 5962 42850 Face 48741 17440 24373 26098 Face 48742 17440 8839 24373 Face 48743 1182 24374 36165 Face 48744 1182 19560 24374 Face 48745 13089 24375 40877 Face 48746 13089 43707 24375 Face 48747 15131 24376 41945 Face 48748 15131 30118 24376 Face 48749 28781 24377 7908 Face 48750 23077 29356 24377 Face 48751 32551 24378 17063 Face 48752 4664 40009 24378 Face 48753 3455 24379 122 Face 48754 3455 32064 24379 Face 48755 29353 24380 46611 Face 48756 29353 37061 24380 Face 48757 5509 24381 23849 Face 48758 5509 16887 24381 Face 48759 775 24382 35247 Face 48760 775 46379 24382 Face 48761 25285 24383 1877 Face 48762 32462 17824 24383 Face 48763 17436 24384 40398 Face 48764 17436 7624 24384 Face 48765 367 24386 19657 Face 48766 45729 32516 24385 Face 48767 24385 24386 45729 Face 48768 24385 19657 24386 Face 48769 12036 24387 34118 Face 48770 12036 36804 24387 Face 48771 1150 38948 15893 Face 48772 1150 18233 24388 Face 48773 28885 24389 17786 Face 48774 39 8839 24389 Face 48775 1654 24391 36944 Face 48776 43150 30671 24391 Face 48777 24390 24391 40875 Face 48778 24390 10577 24391 Face 48779 2149 24392 15355 Face 48780 37368 26597 45618 Face 48781 39526 24393 26101 Face 48782 24395 22572 24393 Face 48783 8814 24395 24393 Face 48784 42869 5322 24394 Face 48785 24394 24395 8814 Face 48786 24394 22572 24395 Face 48787 49286 35602 17629 Face 48788 15345 37810 24396 Face 48789 36804 24397 12035 Face 48790 488 22867 24397 Face 48791 2005 24398 16919 Face 48792 2005 7613 24398 Face 48793 24997 24399 27282 Face 48794 5072 15323 24399 Face 48795 1484 43446 45668 Face 48796 1484 22425 43446 Face 48797 1484 24401 13461 Face 48798 1484 45668 24401 Face 48799 6951 24402 22761 Face 48800 6951 23104 24402 Face 48801 4384 24403 37704 Face 48802 4384 13139 24403 Face 48803 12425 24404 31223 Face 48804 12425 29862 24404 Face 48805 12425 24405 9396 Face 48806 12425 6239 24405 Face 48807 9279 24406 13521 Face 48808 9279 11959 24406 Face 48809 3760 24407 38395 Face 48810 46465 37965 24407 Face 48811 3760 24408 31749 Face 48812 3760 38395 24408 Face 48813 7957 24409 2790 Face 48814 27244 37899 29234 Face 48815 24411 24410 23538 Face 48816 45577 19637 24410 Face 48817 6231 24411 42362 Face 48818 6231 24410 24411 Face 48819 44674 24412 18067 Face 48820 5559 32827 24412 Face 48821 4736 24413 27057 Face 48822 4736 23476 24413 Face 48823 44064 24414 12912 Face 48824 10064 39993 24414 Face 48825 47590 24415 41678 Face 48826 3967 34449 49974 Face 48827 3967 24416 49728 Face 48828 3967 24415 24416 Face 48829 12367 24417 15709 Face 48830 12367 34050 24417 Face 48831 8364 24418 1901 Face 48832 8364 14065 24418 Face 48833 5669 24419 7098 Face 48834 39327 2979 24419 Face 48835 1148 24420 25562 Face 48836 1148 20654 24420 Face 48837 19319 44234 32097 Face 48838 19319 15568 24421 Face 48839 16157 24422 1373 Face 48840 16157 43242 24422 Face 48841 12116 24423 11551 Face 48842 12116 33323 24423 Face 48843 5270 24424 39691 Face 48844 5270 1494 24424 Face 48845 3321 24425 20556 Face 48846 3321 5980 24425 Face 48847 48958 40371 30851 Face 48848 4097 23143 24426 Face 48849 35057 24427 27165 Face 48850 1852 37286 24427 Face 48851 29378 24428 45810 Face 48852 759 13886 24428 Face 48853 45594 24429 16871 Face 48854 45594 4421 24429 Face 48855 5231 24430 17334 Face 48856 43766 4566 24430 Face 48857 24432 24431 47610 Face 48858 3555 21627 24431 Face 48859 3555 24432 16279 Face 48860 3555 24431 24432 Face 48861 28232 44020 15685 Face 48862 7038 29130 44020 Face 48863 2431 24434 15791 Face 48864 2431 28864 24434 Face 48865 24436 24435 7638 Face 48866 5881 41236 24435 Face 48867 5881 24436 29810 Face 48868 5881 24435 24436 Face 48869 4958 24437 15702 Face 48870 4958 36626 24437 Face 48871 24439 24438 45110 Face 48872 1124 17046 24438 Face 48873 43791 24439 6788 Face 48874 1124 24438 24439 Face 48875 41122 24440 11730 Face 48876 32738 7618 40638 Face 48877 12705 24441 9410 Face 48878 12705 14975 24441 Face 48879 17534 24442 21393 Face 48880 17534 11854 24442 Face 48881 49777 24443 6764 Face 48882 49777 40842 24443 Face 48883 9091 24444 2245 Face 48884 46867 32946 24444 Face 48885 29840 24445 12928 Face 48886 7468 31219 24445 Face 48887 18724 24446 41957 Face 48888 18724 11241 24446 Face 48889 3592 24447 21785 Face 48890 3592 13701 24447 Face 48891 13885 24448 39371 Face 48892 41888 27159 48777 Face 48893 13885 41888 48777 Face 48894 13885 18088 41888 Face 48895 39101 24450 115 Face 48896 18230 4879 24450 Face 48897 29138 46587 9878 Face 48898 6041 37104 24451 Face 48899 32867 24452 40091 Face 48900 6650 46396 24452 Face 48901 2658 24453 22908 Face 48902 39416 31044 24453 Face 48903 593 24454 19790 Face 48904 35954 15606 24454 Face 48905 2497 24455 46092 Face 48906 34606 41881 24455 Face 48907 9456 24456 18914 Face 48908 33733 17867 24456 Face 48909 24458 38970 42748 Face 48910 8411 6592 31466 Face 48911 8411 24458 23123 Face 48912 8411 38970 24458 Face 48913 42501 24459 13204 Face 48914 27628 2853 44348 Face 48915 25184 24460 6443 Face 48916 499 37581 24460 Face 48917 45334 24461 31485 Face 48918 10365 15317 24461 Face 48919 31349 24462 162 Face 48920 36669 23184 46506 Face 48921 43984 24463 29449 Face 48922 43984 18417 24463 Face 48923 7950 24464 10684 Face 48924 7950 19744 24464 Face 48925 2980 24465 14278 Face 48926 2980 49258 24465 Face 48927 41 24466 29628 Face 48928 41 43841 24466 Face 48929 32150 24467 12887 Face 48930 5857 28435 24467 Face 48931 820 24468 5334 Face 48932 47016 7716 24468 Face 48933 13783 24469 6610 Face 48934 46920 41404 24469 Face 48935 12905 24470 14537 Face 48936 12905 3386 24470 Face 48937 19630 24471 33128 Face 48938 19630 4975 24471 Face 48939 5977 24472 21540 Face 48940 5977 22532 24472 Face 48941 13901 24473 13640 Face 48942 13901 29538 24473 Face 48943 4453 24474 44112 Face 48944 38629 31116 24474 Face 48945 18728 24475 26077 Face 48946 18728 1217 24475 Face 48947 4057 24476 30063 Face 48948 4057 10229 24476 Face 48949 7053 24477 39661 Face 48950 31621 20797 24477 Face 48951 44666 24478 37914 Face 48952 2686 29293 24478 Face 48953 47013 24479 24044 Face 48954 12684 45807 24479 Face 48955 5640 24480 22985 Face 48956 5640 20723 24480 Face 48957 44763 24481 666 Face 48958 13409 10835 24481 Face 48959 13835 24482 35444 Face 48960 13835 17948 24482 Face 48961 12508 24483 15127 Face 48962 30216 19364 24483 Face 48963 7318 24484 40942 Face 48964 39594 35784 24484 Face 48965 15553 43885 12854 Face 48966 15553 39037 24485 Face 48967 24487 24486 37238 Face 48968 8988 37440 24486 Face 48969 8988 40463 28765 Face 48970 8988 24486 44388 Face 48971 48682 24488 8411 Face 48972 2805 38362 24488 Face 48973 956 24489 33968 Face 48974 956 8774 24489 Face 48975 4097 24490 9563 Face 48976 48958 30851 24490 Face 48977 16406 24491 28344 Face 48978 16406 988 24491 Face 48979 2310 24492 13495 Face 48980 2310 2116 24492 Face 48981 15711 24493 15839 Face 48982 15711 66 24493 Face 48983 13411 24494 42454 Face 48984 13411 24015 24494 Face 48985 20318 24495 2284 Face 48986 20318 20319 24495 Face 48987 7122 24496 2699 Face 48988 26662 38952 24496 Face 48989 35277 24497 23361 Face 48990 35277 13344 24497 Face 48991 6499 24498 4966 Face 48992 6499 25653 24498 Face 48993 2485 24499 9885 Face 48994 37322 8027 24499 Face 48995 26309 24500 31133 Face 48996 35634 40652 24500 Face 48997 6311 24501 16496 Face 48998 45390 29743 24501 Face 48999 12428 24502 2736 Face 49000 12428 30417 24502 Face 49001 249 24503 3400 Face 49002 249 14747 48496 Face 49003 209 24504 5203 Face 49004 24505 10018 40036 Face 49005 209 24505 24504 Face 49006 34611 42331 24505 Face 49007 8078 24506 30628 Face 49008 8078 45835 24506 Face 49009 29511 24507 15116 Face 49010 29511 6243 24507 Face 49011 10236 24508 4305 Face 49012 42993 16618 24508 Face 49013 4709 24509 31650 Face 49014 4709 42443 24509 Face 49015 595 24510 32834 Face 49016 595 43774 24510 Face 49017 11537 24511 4119 Face 49018 11537 126 24511 Face 49019 1107 24512 45193 Face 49020 41390 11370 24512 Face 49021 25182 24513 6949 Face 49022 458 38765 24513 Face 49023 37723 24514 13062 Face 49024 15720 40487 24514 Face 49025 5700 24515 35994 Face 49026 5700 11434 24515 Face 49027 48459 24516 3738 Face 49028 12135 29782 24516 Face 49029 33401 24517 544 Face 49030 33401 15831 24517 Face 49031 8524 24518 45656 Face 49032 8524 17533 24518 Face 49033 49596 24519 10515 Face 49034 45687 28854 24519 Face 49035 9332 24520 31890 Face 49036 9332 4359 24520 Face 49037 12670 24521 2132 Face 49038 12670 48301 24521 Face 49039 9830 24522 35436 Face 49040 9830 48561 24522 Face 49041 6422 24523 1549 Face 49042 6422 14443 24523 Face 49043 49317 24524 9181 Face 49044 2202 43464 24524 Face 49045 13234 24525 23965 Face 49046 13234 34465 24525 Face 49047 8806 24526 39282 Face 49048 8806 38677 24526 Face 49049 11158 24527 9777 Face 49050 11158 13199 24527 Face 49051 4122 24528 47711 Face 49052 4122 17130 24528 Face 49053 41558 24529 34919 Face 49054 12855 45479 24529 Face 49055 46468 24530 20454 Face 49056 26319 17298 24530 Face 49057 16241 24531 38309 Face 49058 33818 3095 24531 Face 49059 26956 24532 10867 Face 49060 8394 10913 24532 Face 49061 3946 24533 38267 Face 49062 3946 22383 24533 Face 49063 37616 24534 252 Face 49064 5801 32331 24534 Face 49065 11360 24535 6471 Face 49066 11360 36373 24535 Face 49067 3748 24536 25537 Face 49068 3748 13099 24536 Face 49069 11416 24537 41128 Face 49070 39073 45921 24537 Face 49071 11717 24538 5152 Face 49072 11717 11719 24538 Face 49073 46658 24539 25101 Face 49074 32891 25508 24539 Face 49075 31770 24540 27173 Face 49076 31770 22516 24540 Face 49077 20120 24541 415 Face 49078 20120 36940 24541 Face 49079 46747 24542 8699 Face 49080 34733 31177 24542 Face 49081 2937 44900 10222 Face 49082 2937 14135 24543 Face 49083 10182 24544 9091 Face 49084 10182 16886 24544 Face 49085 24546 24545 15194 Face 49086 2395 18666 31309 Face 49087 24547 46036 13016 Face 49088 2395 24545 24546 Face 49089 2395 46755 18666 Face 49090 2395 46036 24547 Face 49091 29558 24548 44320 Face 49092 10003 16135 24548 Face 49093 903 33940 16028 Face 49094 903 32565 36604 Face 49095 15034 24550 24219 Face 49096 15034 4300 24550 Face 49097 4475 24551 39274 Face 49098 4475 16866 24551 Face 49099 3233 24552 23598 Face 49100 37022 19240 24552 Face 49101 47708 24553 7850 Face 49102 11009 30450 24553 Face 49103 24601 24554 49539 Face 49104 6180 44240 33880 Face 49105 24660 47340 14440 Face 49106 1615 9735 24555 Face 49107 3156 24556 31434 Face 49108 3156 42906 24556 Face 49109 242 24557 19623 Face 49110 242 31396 24557 Face 49111 18639 24558 36102 Face 49112 18639 29216 24558 Face 49113 9728 24559 13027 Face 49114 9728 5413 24559 Face 49115 39187 24560 48518 Face 49116 39186 47630 24560 Face 49117 4598 24561 47044 Face 49118 25145 49813 24561 Face 49119 18253 24562 14870 Face 49120 18253 5724 47920 Face 49121 24564 24563 13317 Face 49122 3181 33681 24563 Face 49123 3181 24564 36201 Face 49124 3181 24563 24564 Face 49125 3717 41863 1185 Face 49126 3717 37819 24565 Face 49127 10634 24566 22614 Face 49128 10634 32138 24566 Face 49129 8040 33970 4304 Face 49130 37494 47169 33970 Face 49131 1386 24568 23372 Face 49132 28557 32421 24568 Face 49133 21617 24569 4597 Face 49134 21617 18075 24569 Face 49135 5021 24570 33960 Face 49136 5021 8916 24570 Face 49137 29085 24571 27979 Face 49138 14631 21728 24571 Face 49139 1373 24572 16158 Face 49140 31788 14886 24572 Face 49141 10334 24573 42727 Face 49142 26969 5171 24573 Face 49143 2177 24574 4859 Face 49144 2177 13356 24574 Face 49145 11509 46025 41018 Face 49146 11509 2399 24575 Face 49147 14823 24576 347 Face 49148 14823 2198 24576 Face 49149 8934 24577 15328 Face 49150 8934 1884 24577 Face 49151 4937 24578 12527 Face 49152 4937 48810 24578 Face 49153 2525 24579 47080 Face 49154 2525 25563 24579 Face 49155 45862 37530 14739 Face 49156 46150 38173 29769 Face 49157 2327 24581 6446 Face 49158 2327 22309 24581 Face 49159 8126 24807 43975 Face 49160 8126 8125 24807 Face 49161 15497 24583 23861 Face 49162 15497 37503 24583 Face 49163 14068 24584 27581 Face 49164 14068 43145 24584 Face 49165 5129 24585 34056 Face 49166 30246 6770 24585 Face 49167 24587 24586 10400 Face 49168 1742 12495 24586 Face 49169 1742 24587 4659 Face 49170 1742 24586 24587 Face 49171 1061 24588 14347 Face 49172 36293 23446 24588 Face 49173 12890 24589 45041 Face 49174 12890 24313 46466 Face 49175 5200 24590 38670 Face 49176 5200 23810 24590 Face 49177 37220 24591 25994 Face 49178 1548 36978 24591 Face 49179 1618 24592 14761 Face 49180 1618 22758 24592 Face 49181 5664 24593 33469 Face 49182 5664 37705 24593 Face 49183 1396 24594 14917 Face 49184 1396 7643 24594 Face 49185 4413 40650 14037 Face 49186 4413 19685 24595 Face 49187 45016 24596 5547 Face 49188 24595 40975 24596 Face 49189 40646 24597 9430 Face 49190 32869 9961 24597 Face 49191 9550 24598 16896 Face 49192 9550 9551 24598 Face 49193 42787 24599 11692 Face 49194 12859 31194 24599 Face 49195 18989 24600 6351 Face 49196 18989 16468 31402 Face 49197 6180 24601 17967 Face 49198 6180 24554 24601 Face 49199 13622 24602 23706 Face 49200 13622 4162 24602 Face 49201 17360 24603 19614 Face 49202 17360 25189 24603 Face 49203 31714 24604 9992 Face 49204 9048 47424 24604 Face 49205 17217 24605 30501 Face 49206 17217 20752 24605 Face 49207 5862 24606 5861 Face 49208 25138 21605 24606 Face 49209 12162 24607 4644 Face 49210 12162 35956 24607 Face 49211 8686 24608 29477 Face 49212 8686 727 24608 Face 49213 47445 24609 9446 Face 49214 40423 26909 24609 Face 49215 3811 24610 45826 Face 49216 3811 5475 24610 Face 49217 16932 24611 3128 Face 49218 16932 28766 24611 Face 49219 9860 24612 824 Face 49220 28411 9851 24612 Face 49221 4161 24613 41671 Face 49222 4161 9773 48931 Face 49223 1250 24614 21600 Face 49224 1250 8844 24614 Face 49225 36172 24615 34238 Face 49226 5651 24077 36554 Face 49227 6188 24616 16193 Face 49228 24617 34621 24616 Face 49229 6188 24617 24616 Face 49230 38758 31143 24617 Face 49231 13695 24618 19109 Face 49232 13695 22196 24618 Face 49233 1017 24619 13558 Face 49234 25559 39178 24619 Face 49235 30492 43651 39528 Face 49236 2533 42274 43651 Face 49237 9701 24621 23167 Face 49238 9701 23846 24621 Face 49239 4424 24622 13807 Face 49240 39153 13604 24622 Face 49241 4424 39153 24622 Face 49242 4424 44897 24623 Face 49243 4477 37748 12091 Face 49244 4477 20541 24624 Face 49245 6892 24625 22814 Face 49246 6892 13960 35326 Face 49247 21015 24626 37676 Face 49248 21015 8760 36096 Face 49249 4185 24627 37939 Face 49250 24628 24710 24627 Face 49251 4185 24628 24627 Face 49252 4185 14532 24628 Face 49253 12467 24629 20317 Face 49254 12467 4592 24629 Face 49255 43372 24630 19102 Face 49256 36617 27059 24630 Face 49257 44489 24631 4130 Face 49258 31391 18317 24631 Face 49259 5069 24632 45600 Face 49260 5069 8381 43514 Face 49261 1362 24633 9936 Face 49262 1362 10393 24633 Face 49263 23594 24634 45258 Face 49264 23594 7273 24634 Face 49265 6196 35184 23754 Face 49266 6196 18523 24635 Face 49267 3669 24636 33020 Face 49268 3669 13799 24636 Face 49269 19805 24637 41156 Face 49270 19805 10168 24637 Face 49271 13246 24638 1277 Face 49272 13246 5043 38590 Face 49273 41505 24639 6494 Face 49274 7859 37690 24639 Face 49275 9922 24640 3339 Face 49276 9922 15015 42180 Face 49277 2911 24641 44041 Face 49278 2911 48210 24641 Face 49279 21671 24642 5510 Face 49280 21671 2994 24642 Face 49281 36068 24643 49395 Face 49282 11966 2134 24643 Face 49283 38503 24644 20632 Face 49284 1370 5319 24644 Face 49285 10446 24645 34161 Face 49286 10446 4430 24645 Face 49287 4095 24646 34637 Face 49288 4095 8643 24646 Face 49289 41384 24647 23224 Face 49290 7976 18654 44983 Face 49291 7976 24648 18654 Face 49292 41384 23416 24648 Face 49293 48444 24649 10851 Face 49294 10929 45393 24649 Face 49295 36605 24650 47949 Face 49296 36606 21324 24650 Face 49297 1844 24651 22737 Face 49298 1844 13301 36606 Face 49299 9662 48253 45663 Face 49300 9662 46014 48253 Face 49301 4766 24653 17394 Face 49302 4766 19787 24653 Face 49303 6683 24654 32091 Face 49304 45776 17519 24654 Face 49305 35730 24655 40474 Face 49306 35729 47261 24655 Face 49307 28145 24656 3887 Face 49308 28145 21229 24656 Face 49309 2710 24657 27644 Face 49310 2710 18294 24657 Face 49311 31500 24658 8189 Face 49312 31500 41640 24658 Face 49313 1615 24659 20253 Face 49314 1615 8816 24659 Face 49315 1615 24660 1616 Face 49316 1615 47340 24660 Face 49317 25310 24661 35567 Face 49318 12659 4561 24661 Face 49319 32338 24662 14799 Face 49320 13862 9110 24662 Face 49321 7328 24663 44099 Face 49322 7328 10309 24663 Face 49323 7561 24664 20204 Face 49324 7561 10994 24664 Face 49325 5765 47738 36776 Face 49326 5765 23789 24665 Face 49327 5609 44534 20038 Face 49328 5609 44413 24666 Face 49329 24668 24667 43315 Face 49330 24668 26542 24667 Face 49331 8723 24668 43315 Face 49332 42456 8724 24668 Face 49333 4073 24669 17947 Face 49334 24671 16903 41242 Face 49335 24671 24670 16903 Face 49336 24671 31055 24670 Face 49337 4073 24671 24669 Face 49338 4073 31055 24671 Face 49339 3568 24672 11376 Face 49340 31485 6706 24672 Face 49341 7501 24673 47238 Face 49342 34052 20999 42615 Face 49343 4970 24674 21433 Face 49344 4970 31957 24674 Face 49345 39941 24675 18956 Face 49346 2453 19507 24675 Face 49347 20816 24676 3186 Face 49348 35782 20817 24676 Face 49349 13525 24677 7158 Face 49350 13525 8908 24677 Face 49351 957 24678 5148 Face 49352 42139 14360 24678 Face 49353 109 24679 8143 Face 49354 24680 33034 24679 Face 49355 109 24680 24679 Face 49356 109 25229 24680 Face 49357 5185 49309 25974 Face 49358 5185 12650 24681 Face 49359 24683 34457 6979 Face 49360 4345 23815 24682 Face 49361 4345 24683 33687 Face 49362 4345 24682 24683 Face 49363 17146 24684 1759 Face 49364 42831 23097 24684 Face 49365 4172 24685 10012 Face 49366 4172 21599 24685 Face 49367 14051 24686 23283 Face 49368 14051 36496 24686 Face 49369 7197 24687 40046 Face 49370 33980 39828 24687 Face 49371 3313 46583 23850 Face 49372 3313 48512 46583 Face 49373 35830 24689 9313 Face 49374 4999 15907 33736 Face 49375 24188 24690 24189 Face 49376 24188 18414 24690 Face 49377 5256 24691 1801 Face 49378 46525 47496 24691 Face 49379 24773 24692 16688 Face 49380 24773 16781 24692 Face 49381 4848 24693 46050 Face 49382 4848 39423 24693 Face 49383 4159 24694 10775 Face 49384 4159 33673 24694 Face 49385 6213 24695 8710 Face 49386 6213 20839 24695 Face 49387 10108 24696 7283 Face 49388 10108 48658 24696 Face 49389 2226 24697 7453 Face 49390 30774 32981 24697 Face 49391 49696 43357 5541 Face 49392 18046 24981 43357 Face 49393 11402 24699 36665 Face 49394 11402 22198 24699 Face 49395 10570 24700 39117 Face 49396 10570 334 24700 Face 49397 48683 24701 10489 Face 49398 5311 28608 24701 Face 49399 25047 24702 20785 Face 49400 6865 5385 24702 Face 49401 48803 24703 17892 Face 49402 48803 47557 24703 Face 49403 9397 24704 19072 Face 49404 29794 39883 24704 Face 49405 11539 24705 36300 Face 49406 31238 38771 24705 Face 49407 48870 24706 1885 Face 49408 1969 31818 24706 Face 49409 1969 24707 22849 Face 49410 1969 24706 48870 Face 49411 6796 24708 2949 Face 49412 6796 29287 24708 Face 49413 6796 24709 29287 Face 49414 6796 2949 24709 Face 49415 12436 24710 24628 Face 49416 12436 20421 24710 Face 49417 39210 24711 32512 Face 49418 39210 27414 24711 Face 49419 24713 24712 21332 Face 49420 4372 37180 24712 Face 49421 28652 24713 29996 Face 49422 4372 24712 24713 Face 49423 6479 24714 37856 Face 49424 6479 27483 24714 Face 49425 25570 24715 45790 Face 49426 902 13035 42639 Face 49427 536 24716 36008 Face 49428 536 30304 24716 Face 49429 10433 24717 42194 Face 49430 10433 18288 24717 Face 49431 17844 24718 7462 Face 49432 17844 3596 24718 Face 49433 45621 24719 48128 Face 49434 12447 10300 24719 Face 49435 1043 24720 22583 Face 49436 39120 7795 24720 Face 49437 3961 24721 9428 Face 49438 3961 44847 24721 Face 49439 38441 47448 29545 Face 49440 47846 21894 24722 Face 49441 25278 24723 6021 Face 49442 11265 55 24723 Face 49443 24725 24724 44728 Face 49444 3950 30399 24724 Face 49445 3950 42346 11423 Face 49446 3950 24724 42346 Face 49447 4126 24726 33145 Face 49448 4126 46743 24726 Face 49449 5471 24727 3445 Face 49450 5471 19632 24727 Face 49451 1398 24728 25507 Face 49452 1398 20370 24728 Face 49453 2199 24729 44318 Face 49454 2199 47292 24729 Face 49455 39975 26150 17586 Face 49456 5190 27516 24730 Face 49457 14098 24731 12970 Face 49458 45145 32322 24731 Face 49459 7986 24732 25265 Face 49460 7986 35548 24732 Face 49461 7986 24733 35548 Face 49462 7986 18876 24733 Face 49463 7284 24734 40820 Face 49464 7284 8701 24734 Face 49465 1220 24735 45424 Face 49466 1220 17470 24735 Face 49467 9271 47432 31279 Face 49468 9271 20968 24736 Face 49469 6290 24737 19336 Face 49470 6290 46894 24737 Face 49471 34206 24738 41515 Face 49472 33004 13071 24738 Face 49473 2317 24739 47651 Face 49474 2317 23386 24739 Face 49475 30912 24740 2550 Face 49476 5544 47069 24740 Face 49477 43520 24741 23170 Face 49478 43520 11396 24741 Face 49479 35186 24742 16916 Face 49480 16917 1196 24742 Face 49481 7657 24743 24235 Face 49482 7657 28758 46311 Face 49483 47798 36114 18342 Face 49484 9321 32817 24744 Face 49485 6866 24745 48154 Face 49486 6866 4791 24745 Face 49487 31137 24746 8163 Face 49488 4408 4482 24746 Face 49489 17015 24747 4762 Face 49490 17015 10977 24747 Face 49491 10271 24748 1740 Face 49492 10271 39428 24748 Face 49493 42523 24749 9337 Face 49494 13542 19629 24749 Face 49495 9611 24750 40029 Face 49496 9611 26385 24750 Face 49497 42841 24751 19172 Face 49498 9611 14794 24751 Face 49499 30898 43530 17040 Face 49500 35169 20776 44169 Face 49501 5706 24753 4133 Face 49502 5706 42698 24753 Face 49503 10567 24754 38047 Face 49504 10567 827 24754 Face 49505 5604 25492 37641 Face 49506 5604 37813 25492 Face 49507 37472 24756 22069 Face 49508 6084 14728 24756 Face 49509 4518 24757 36192 Face 49510 4518 21493 24757 Face 49511 24759 24758 9100 Face 49512 4211 21309 24758 Face 49513 4211 24759 42582 Face 49514 4211 24758 24759 Face 49515 21062 24760 21492 Face 49516 21062 46456 24760 Face 49517 1680 24761 15763 Face 49518 1680 16483 24761 Face 49519 4216 24762 15036 Face 49520 4216 11464 24762 Face 49521 14933 24763 32901 Face 49522 14933 48064 24763 Face 49523 2110 49367 19483 Face 49524 2110 3792 24764 Face 49525 1435 24765 18142 Face 49526 41597 12868 24765 Face 49527 41527 24766 31167 Face 49528 41527 12786 24766 Face 49529 9294 24767 4498 Face 49530 9294 21552 24767 Face 49531 18666 24768 14157 Face 49532 18666 32517 24768 Face 49533 3037 24769 20123 Face 49534 3037 12665 24769 Face 49535 7771 24770 2699 Face 49536 7771 38533 24770 Face 49537 40702 24771 18830 Face 49538 40702 49841 24771 Face 49539 1917 24772 41090 Face 49540 1917 43146 24772 Face 49541 7166 49166 7167 Face 49542 7166 18744 49501 Face 49543 28384 24774 20083 Face 49544 30481 17794 24774 Face 49545 2795 24775 49780 Face 49546 2795 20760 24775 Face 49547 4261 24776 13996 Face 49548 4261 8398 24776 Face 49549 2805 24777 8411 Face 49550 2805 24488 48682 Face 49551 4132 24778 10456 Face 49552 4132 33820 24778 Face 49553 2095 24779 16273 Face 49554 2095 24255 24779 Face 49555 8090 24780 26083 Face 49556 44094 11353 24780 Face 49557 647 24781 16615 Face 49558 647 5702 24781 Face 49559 2740 24782 31904 Face 49560 2740 22476 24782 Face 49561 969 24783 26738 Face 49562 37578 21251 24783 Face 49563 1226 24784 46719 Face 49564 1226 47388 24784 Face 49565 41033 24785 12674 Face 49566 27784 5715 33497 Face 49567 46541 41590 20108 Face 49568 15015 9922 24786 Face 49569 15539 24787 41269 Face 49570 15539 5520 24787 Face 49571 222 24788 4921 Face 49572 222 13489 24788 Face 49573 15419 24789 19861 Face 49574 15419 5842 24789 Face 49575 3085 24790 44457 Face 49576 3085 526 40187 Face 49577 8389 24791 39663 Face 49578 8389 29241 24791 Face 49579 5216 24792 14359 Face 49580 29435 35441 24792 Face 49581 773 24793 12805 Face 49582 773 4718 24793 Face 49583 194 24794 7510 Face 49584 194 20924 24794 Face 49585 1927 24795 23263 Face 49586 36314 3853 24795 Face 49587 11365 24796 12986 Face 49588 48466 15773 24796 Face 49589 34353 24797 26996 Face 49590 1400 14253 24797 Face 49591 1400 24798 22529 Face 49592 1400 24797 34353 Face 49593 42266 24799 21806 Face 49594 227 7067 24799 Face 49595 24799 24800 21806 Face 49596 24799 13848 24800 Face 49597 34418 24801 12095 Face 49598 14186 16433 41646 Face 49599 48044 24802 27289 Face 49600 33566 21505 24802 Face 49601 325 24803 19399 Face 49602 325 21715 24803 Face 49603 8237 24804 1313 Face 49604 8237 16380 24804 Face 49605 37735 24805 3281 Face 49606 24806 37683 24805 Face 49607 4643 24806 24805 Face 49608 4643 19895 24806 Face 49609 24582 24807 17676 Face 49610 24582 43975 24807 Face 49611 15 24808 10974 Face 49612 15 44405 24808 Face 49613 14528 33390 25545 Face 49614 14528 27060 33390 Face 49615 29075 24810 6600 Face 49616 3222 19913 24810 Face 49617 39996 24811 5409 Face 49618 5056 25637 24811 Face 49619 9074 24812 36036 Face 49620 49932 16701 24812 Face 49621 12687 43098 13359 Face 49622 12687 23186 24813 Face 49623 9125 24814 3816 Face 49624 9125 41023 24814 Face 49625 48539 24815 2895 Face 49626 14713 41329 24815 Face 49627 3600 24816 9103 Face 49628 3600 14298 24816 Face 49629 8214 24817 16082 Face 49630 8214 24291 24817 Face 49631 2886 24818 14549 Face 49632 2886 11479 24818 Face 49633 12464 24819 5688 Face 49634 12464 17700 24819 Face 49635 24821 24820 29042 Face 49636 11407 34236 24820 Face 49637 11407 24821 45762 Face 49638 11407 24820 24821 Face 49639 9470 48096 45708 Face 49640 41811 29974 24822 Face 49641 10523 24823 2365 Face 49642 41691 27028 24823 Face 49643 6817 24824 12142 Face 49644 38295 948 24824 Face 49645 14967 24825 26336 Face 49646 14967 15396 24825 Face 49647 9450 24826 32400 Face 49648 32550 22982 24826 Face 49649 32550 24827 25769 Face 49650 9450 18803 24827 Face 49651 3123 24828 28631 Face 49652 28583 10447 24828 Face 49653 9796 24829 45068 Face 49654 9796 2596 24829 Face 49655 6376 24830 36954 Face 49656 6376 25071 24830 Face 49657 7698 24831 26246 Face 49658 7698 29017 24831 Face 49659 1867 34545 15110 Face 49660 1867 37525 24832 Face 49661 4123 24833 17321 Face 49662 40266 1752 24833 Face 49663 304 24834 5868 Face 49664 304 48168 24834 Face 49665 9380 24835 2644 Face 49666 9380 14391 24835 Face 49667 29240 24836 44642 Face 49668 43087 17144 24836 Face 49669 6115 24837 40462 Face 49670 6115 21498 24837 Face 49671 130 43413 7589 Face 49672 130 13749 24838 Face 49673 33196 24839 47587 Face 49674 33196 11341 24839 Face 49675 2119 24840 20023 Face 49676 2119 21994 24840 Face 49677 11560 24841 43782 Face 49678 11560 49306 24841 Face 49679 12511 24842 10513 Face 49680 12511 48981 24842 Face 49681 19712 24843 14668 Face 49682 19712 9743 24843 Face 49683 10740 24844 43612 Face 49684 10740 17486 24844 Face 49685 10959 24845 39771 Face 49686 10959 7658 24845 Face 49687 21055 24846 26709 Face 49688 21055 8897 24846 Face 49689 263 24847 5129 Face 49690 263 9273 24847 Face 49691 36688 24848 4021 Face 49692 1237 45482 24848 Face 49693 5985 24849 1343 Face 49694 5985 38237 24849 Face 49695 38008 24850 44429 Face 49696 38009 47620 24850 Face 49697 7067 24851 24799 Face 49698 7067 17790 24851 Face 49699 40983 24852 29748 Face 49700 3283 10268 24852 Face 49701 4734 24853 45869 Face 49702 24854 561 24853 Face 49703 4734 24854 24853 Face 49704 4734 35848 30680 Face 49705 18885 24855 31694 Face 49706 42018 16080 24855 Face 49707 16247 24856 42390 Face 49708 16247 2434 24856 Face 49709 2501 24857 11702 Face 49710 2501 39809 24857 Face 49711 39919 48248 4276 Face 49712 1231 10804 24858 Face 49713 14127 49814 17940 Face 49714 14127 33549 49814 Face 49715 569 24860 44101 Face 49716 569 43879 24860 Face 49717 15364 24861 23631 Face 49718 15364 29820 24861 Face 49719 1574 43497 7426 Face 49720 40730 7361 24862 Face 49721 1472 24863 39499 Face 49722 1472 12742 24863 Face 49723 5687 24864 18145 Face 49724 5687 19331 24864 Face 49725 32251 24865 23736 Face 49726 6425 37096 24865 Face 49727 4047 24866 6936 Face 49728 4047 20175 24866 Face 49729 7422 24867 33187 Face 49730 7422 38802 24867 Face 49731 24926 24868 5342 Face 49732 9188 20171 24868 Face 49733 4961 24869 21555 Face 49734 4961 19845 24869 Face 49735 7334 24870 38778 Face 49736 7334 10645 24870 Face 49737 7334 24871 10645 Face 49738 7334 22280 24871 Face 49739 4250 24872 34507 Face 49740 4250 49210 24872 Face 49741 4972 39404 34311 Face 49742 4972 6914 39404 Face 49743 41301 24874 45959 Face 49744 633 21079 24874 Face 49745 13404 24875 13755 Face 49746 42969 5207 24875 Face 49747 24877 24876 34256 Face 49748 31735 15849 45439 Face 49749 14370 24877 47575 Face 49750 14370 24876 24877 Face 49751 24879 47952 197 Face 49752 11868 36164 24878 Face 49753 11868 24879 3225 Face 49754 11868 24878 24879 Face 49755 6988 24880 22528 Face 49756 6988 31371 24880 Face 49757 11380 24881 19917 Face 49758 11380 30009 31636 Face 49759 3019 24882 17863 Face 49760 3019 17965 24882 Face 49761 7567 24883 48543 Face 49762 7567 19352 24883 Face 49763 4495 49716 41921 Face 49764 24885 17144 49716 Face 49765 4495 24885 49716 Face 49766 4495 24227 24885 Face 49767 2627 24886 12068 Face 49768 2627 35581 24886 Face 49769 459 24887 6528 Face 49770 459 22099 24887 Face 49771 24889 24888 15908 Face 49772 3497 46598 24888 Face 49773 3497 24889 5695 Face 49774 3497 24888 24889 Face 49775 16016 49784 1831 Face 49776 16016 7177 24890 Face 49777 82 24891 30007 Face 49778 82 16366 24891 Face 49779 21070 24892 33054 Face 49780 21070 1558 24892 Face 49781 37968 24893 2261 Face 49782 3205 34501 24893 Face 49783 28930 48269 29778 Face 49784 31424 33115 24894 Face 49785 1943 24895 26017 Face 49786 1943 24154 24895 Face 49787 16077 24896 23527 Face 49788 16077 31992 24896 Face 49789 2629 24897 19242 Face 49790 28106 37285 24897 Face 49791 4534 24898 8972 Face 49792 4534 11969 24898 Face 49793 40190 44262 22680 Face 49794 4196 19570 24899 Face 49795 28990 42438 22487 Face 49796 43022 10930 42437 Face 49797 44739 43022 24900 Face 49798 6740 19848 24901 Face 49799 13056 24902 6300 Face 49800 13056 3959 24902 Face 49801 28947 47513 25600 Face 49802 776 5977 35237 Face 49803 6713 24904 39959 Face 49804 6713 36015 24904 Face 49805 24906 24905 27377 Face 49806 24906 41942 24905 Face 49807 24907 24906 27377 Face 49808 39980 10947 24906 Face 49809 41145 24907 35761 Face 49810 2388 24906 24907 Face 49811 41291 24908 4206 Face 49812 12889 33666 24908 Face 49813 12365 24909 16081 Face 49814 12365 1244 24909 Face 49815 30916 24910 3475 Face 49816 1871 43708 24910 Face 49817 12241 24911 49594 Face 49818 24912 42724 24911 Face 49819 12241 24912 24911 Face 49820 12241 7041 24912 Face 49821 12241 42441 15562 Face 49822 12241 22834 42441 Face 49823 2996 24914 11262 Face 49824 2996 4813 24914 Face 49825 12873 24915 29144 Face 49826 12873 42187 24915 Face 49827 341 24916 7470 Face 49828 44575 14634 34087 Face 49829 7023 24917 20157 Face 49830 35480 21428 24917 Face 49831 560 24918 21364 Face 49832 560 10606 24918 Face 49833 33190 24919 10782 Face 49834 33190 23377 24919 Face 49835 2430 24920 35737 Face 49836 2430 16564 24920 Face 49837 5923 24921 34188 Face 49838 25925 22841 47136 Face 49839 27052 42254 26762 Face 49840 364 12452 24922 Face 49841 24924 24923 33485 Face 49842 13934 37362 24923 Face 49843 13934 24924 32674 Face 49844 13934 24923 24924 Face 49845 23071 24925 23072 Face 49846 23071 21170 24925 Face 49847 49802 24926 17895 Face 49848 9188 24868 24926 Face 49849 32643 24927 24270 Face 49850 88 2899 24927 Face 49851 14687 24928 22089 Face 49852 14687 3452 24928 Face 49853 32400 24929 48969 Face 49854 331 40893 24929 Face 49855 15219 24930 46779 Face 49856 15219 4921 49703 Face 49857 42425 24931 6432 Face 49858 42426 935 24931 Face 49859 7639 24932 1329 Face 49860 24933 43342 24932 Face 49861 7639 24933 24932 Face 49862 25635 4101 39135 Face 49863 2242 24934 5485 Face 49864 33170 18691 24934 Face 49865 14923 24935 32430 Face 49866 14923 10453 24935 Face 49867 4747 24936 26879 Face 49868 4747 12194 24936 Face 49869 1586 24937 28371 Face 49870 1586 19656 24937 Face 49871 12386 24938 36252 Face 49872 12386 4312 24938 Face 49873 7409 24939 19882 Face 49874 7409 22521 24939 Face 49875 6349 24940 46122 Face 49876 28214 5673 24940 Face 49877 362 24941 46820 Face 49878 362 6678 24941 Face 49879 9189 24942 20342 Face 49880 9189 20364 24942 Face 49881 8607 24943 43527 Face 49882 8607 13086 24943 Face 49883 15440 24944 48493 Face 49884 15440 23125 24944 Face 49885 3907 24945 36925 Face 49886 3907 14675 24945 Face 49887 11454 24946 27949 Face 49888 11454 21284 49812 Face 49889 10963 24947 22573 Face 49890 10963 32437 24947 Face 49891 5971 24948 5972 Face 49892 5971 44557 24948 Face 49893 4145 24949 18425 Face 49894 4145 35489 24949 Face 49895 5093 24950 35550 Face 49896 5093 47599 24950 Face 49897 4418 24951 47084 Face 49898 4418 23931 24951 Face 49899 28952 31782 39398 Face 49900 490 16137 24952 Face 49901 12419 24953 27111 Face 49902 31091 846 24953 Face 49903 13905 24954 20208 Face 49904 13905 44150 24954 Face 49905 4594 24955 29229 Face 49906 4594 29940 24955 Face 49907 12448 36251 22676 Face 49908 12448 32651 24956 Face 49909 819 24957 20788 Face 49910 819 25692 24957 Face 49911 11757 24958 21117 Face 49912 11757 40399 24958 Face 49913 36827 24959 21072 Face 49914 8004 20160 24959 Face 49915 10191 24960 23881 Face 49916 10191 42547 24960 Face 49917 49132 24961 25102 Face 49918 4833 22342 24961 Face 49919 14381 24962 3909 Face 49920 14381 41493 24962 Face 49921 14333 24963 22884 Face 49922 14333 33347 24963 Face 49923 43316 24964 12916 Face 49924 31812 10176 38317 Face 49925 10588 24965 13810 Face 49926 10588 25158 37816 Face 49927 24967 24966 45875 Face 49928 5895 26935 24966 Face 49929 5895 24967 14348 Face 49930 5895 24966 24967 Face 49931 12175 24968 3395 Face 49932 12175 39049 24968 Face 49933 8623 24969 32902 Face 49934 8623 29254 24969 Face 49935 8103 24970 22244 Face 49936 8103 39009 24970 Face 49937 8461 24971 43001 Face 49938 32998 28910 49566 Face 49939 46989 24972 42265 Face 49940 8461 20210 24972 Face 49941 11912 24973 46641 Face 49942 11912 30577 24973 Face 49943 4230 24974 38048 Face 49944 4230 41371 24974 Face 49945 5536 26311 23913 Face 49946 5536 14064 26311 Face 49947 36464 24976 6583 Face 49948 15377 35 24976 Face 49949 30944 24977 25743 Face 49950 30944 42893 24977 Face 49951 38753 26877 23893 Face 49952 42051 12836 24978 Face 49953 8924 24979 49411 Face 49954 36685 16631 24979 Face 49955 25372 24980 383 Face 49956 4315 26571 24980 Face 49957 18466 24981 24337 Face 49958 18466 24698 24981 Face 49959 6517 24982 9471 Face 49960 6517 48314 24982 Face 49961 11116 45919 25635 Face 49962 11116 26290 24983 Face 49963 33311 24984 14879 Face 49964 5263 23138 24984 Face 49965 36258 24985 3924 Face 49966 1690 23698 24985 Face 49967 49821 24986 33434 Face 49968 8323 17147 24986 Face 49969 7949 24987 13524 Face 49970 7949 11272 24987 Face 49971 9315 24988 37103 Face 49972 9315 26257 24988 Face 49973 7577 24989 34608 Face 49974 7577 8399 24989 Face 49975 8015 24990 39464 Face 49976 30401 25173 24990 Face 49977 12317 24991 4733 Face 49978 12317 17519 24991 Face 49979 40822 48342 35815 Face 49980 47460 24143 24992 Face 49981 6103 24993 23404 Face 49982 6103 26262 24993 Face 49983 990 24994 23135 Face 49984 990 23064 24994 Face 49985 8728 24995 6230 Face 49986 8728 3318 24995 Face 49987 7522 24996 33680 Face 49988 7522 18209 24996 Face 49989 30629 24997 15164 Face 49990 5072 24399 24997 Face 49991 37467 24998 15309 Face 49992 27697 3624 24998 Face 49993 31009 47702 18671 Face 49994 6741 10122 24999 Face 49995 34997 25000 30512 Face 49996 34997 2968 25000 Face 49997 3987 25001 39218 Face 49998 25002 33652 25001 Face 49999 3987 25002 25001 Face 50000 3987 32366 25002 Face 50001 9239 25003 15883 Face 50002 31569 47694 25003 Face 50003 46019 25004 34726 Face 50004 38353 11933 25004 Face 50005 14415 36286 30357 Face 50006 14415 48932 36286 Face 50007 32561 25006 26922 Face 50008 32560 20812 25006 Face 50009 6210 25007 38807 Face 50010 6210 21572 25007 Face 50011 1256 25008 15121 Face 50012 1256 30602 25008 Face 50013 32792 25009 6202 Face 50014 1447 33154 25009 Face 50015 206 25010 9030 Face 50016 206 40715 25010 Face 50017 15602 25011 45761 Face 50018 15602 34828 25011 Face 50019 21455 25012 36095 Face 50020 21455 29214 25012 Face 50021 945 25013 22550 Face 50022 945 39598 25013 Face 50023 5724 25014 47920 Face 50024 5724 16540 25014 Face 50025 14884 25015 411 Face 50026 14884 7230 25015 Face 50027 11395 25016 43847 Face 50028 11395 6102 25016 Face 50029 9186 33545 9184 Face 50030 9186 9727 33545 Face 50031 53 25018 8148 Face 50032 53 23317 25018 Face 50033 2738 25019 14842 Face 50034 2738 12907 25019 Face 50035 41898 25020 6377 Face 50036 41898 13823 25020 Face 50037 34158 25021 44794 Face 50038 1187 11801 25021 Face 50039 7446 25022 38104 Face 50040 7446 27571 25022 Face 50041 9883 25023 34270 Face 50042 9883 36931 25023 Face 50043 973 25024 23272 Face 50044 973 10161 25024 Face 50045 5156 25025 4572 Face 50046 5156 14011 25025 Face 50047 10984 25026 40130 Face 50048 10984 5624 25026 Face 50049 7616 25027 43166 Face 50050 7616 45311 25027 Face 50051 9595 25028 10382 Face 50052 9595 40405 25028 Face 50053 39422 25029 6780 Face 50054 25030 2927 25029 Face 50055 6779 25030 25029 Face 50056 6779 34474 25030 Face 50057 6779 25031 20351 Face 50058 35038 9216 25031 Face 50059 9563 25032 4097 Face 50060 9563 22295 25032 Face 50061 12324 25033 18450 Face 50062 12324 6617 25033 Face 50063 1588 25034 17884 Face 50064 1588 6594 25034 Face 50065 9510 25035 10436 Face 50066 9510 30248 25035 Face 50067 13110 25036 40621 Face 50068 13110 36413 25036 Face 50069 8716 35182 14882 Face 50070 8716 17555 35182 Face 50071 44985 25038 18490 Face 50072 32905 40347 25038 Face 50073 1114 25039 17937 Face 50074 33741 10688 25039 Face 50075 2164 42411 30518 Face 50076 2164 37555 49152 Face 50077 5170 25041 26068 Face 50078 5170 28693 25041 Face 50079 4279 25042 18332 Face 50080 4279 6565 25042 Face 50081 8642 25043 1539 Face 50082 8642 7202 25043 Face 50083 45232 25044 493 Face 50084 4278 15923 25044 Face 50085 11003 25045 38197 Face 50086 11003 11002 25045 Face 50087 7572 25046 26761 Face 50088 38698 7573 25046 Face 50089 6865 25047 35098 Face 50090 6865 24702 25047 Face 50091 14402 25048 21801 Face 50092 14402 34291 25048 Face 50093 4666 25049 14472 Face 50094 4666 39968 25049 Face 50095 4732 25050 34830 Face 50096 4732 14567 25050 Face 50097 17611 25051 23336 Face 50098 17611 3914 25051 Face 50099 14575 25052 42917 Face 50100 14575 2905 25052 Face 50101 3498 25053 45050 Face 50102 40168 6787 25053 Face 50103 12379 25054 48822 Face 50104 12379 49947 25054 Face 50105 20855 25055 26222 Face 50106 39133 49060 25055 Face 50107 39234 25056 8003 Face 50108 2259 9731 25056 Face 50109 13617 25057 5158 Face 50110 13617 17668 25057 Face 50111 14577 25058 22981 Face 50112 14577 17763 25058 Face 50113 15090 25059 146 Face 50114 15090 8424 25059 Face 50115 16746 25060 4239 Face 50116 16746 4753 25060 Face 50117 9009 25061 33588 Face 50118 29913 29571 25061 Face 50119 1871 43589 11072 Face 50120 1871 23653 43589 Face 50121 14770 36266 13386 Face 50122 14770 974 25063 Face 50123 6799 25064 29869 Face 50124 6799 30478 25064 Face 50125 7951 25065 25467 Face 50126 7951 17189 25065 Face 50127 49111 25066 37382 Face 50128 49111 46355 25066 Face 50129 47388 25067 24784 Face 50130 42212 29489 25067 Face 50131 2665 25068 25067 Face 50132 2665 32408 25068 Face 50133 48177 25069 21427 Face 50134 48178 6281 25069 Face 50135 18917 25070 6295 Face 50136 18917 39850 25070 Face 50137 16130 25071 48408 Face 50138 16130 26670 25071 Face 50139 18975 25072 7560 Face 50140 18975 1019 25072 Face 50141 14343 25073 21297 Face 50142 36864 5416 25073 Face 50143 144 25074 25928 Face 50144 144 10255 45588 Face 50145 15143 43917 27222 Face 50146 15143 15144 25075 Face 50147 3850 25076 9564 Face 50148 3850 12109 25076 Face 50149 40362 25077 8910 Face 50150 40362 37716 25077 Face 50151 3929 25078 22466 Face 50152 3929 21159 25078 Face 50153 6186 42586 21963 Face 50154 27978 17810 25079 Face 50155 37265 25080 38266 Face 50156 37265 18785 25080 Face 50157 14054 25081 2502 Face 50158 14054 23085 25081 Face 50159 10088 25082 20310 Face 50160 37793 21511 25082 Face 50161 5586 25083 35590 Face 50162 5586 19158 25083 Face 50163 39082 25084 25622 Face 50164 39082 10922 25084 Face 50165 10380 25085 1942 Face 50166 10380 4943 25085 Face 50167 22338 25086 32104 Face 50168 47555 3357 25086 Face 50169 812 25087 35109 Face 50170 812 40933 25087 Face 50171 4725 25088 43245 Face 50172 4725 43483 25088 Face 50173 5935 40014 40602 Face 50174 5935 13291 36707 Face 50175 9206 25090 37800 Face 50176 9206 2703 25090 Face 50177 38406 25092 47647 Face 50178 8618 4939 25091 Face 50179 25091 25092 38406 Face 50180 25091 49436 25092 Face 50181 1803 25093 18482 Face 50182 1803 17022 25093 Face 50183 5284 43948 26964 Face 50184 37325 20978 43948 Face 50185 30795 25095 15966 Face 50186 11940 35687 25095 Face 50187 6691 31234 47452 Face 50188 6691 47501 31234 Face 50189 7652 25097 13909 Face 50190 7652 48076 25097 Face 50191 39420 25098 1814 Face 50192 5503 13978 25098 Face 50193 6662 25099 34453 Face 50194 6662 28001 25099 Face 50195 6920 25100 15328 Face 50196 25101 1883 25100 Face 50197 42055 25101 25100 Face 50198 42055 46658 25101 Face 50199 13324 25102 24961 Face 50200 13324 34249 25102 Face 50201 7903 25103 20605 Face 50202 7903 15072 25103 Face 50203 18018 25104 17860 Face 50204 43284 5932 25104 Face 50205 7754 25105 13717 Face 50206 7754 14048 25105 Face 50207 11345 25106 28319 Face 50208 25107 6756 25106 Face 50209 11345 25107 25106 Face 50210 11345 1039 25107 Face 50211 32417 25108 21481 Face 50212 424 19408 25108 Face 50213 45923 25109 13700 Face 50214 45923 15048 25109 Face 50215 6682 49088 32358 Face 50216 6682 42587 25219 Face 50217 35658 25111 31928 Face 50218 6956 14858 25111 Face 50219 7596 25112 34552 Face 50220 7596 20772 25112 Face 50221 12839 25113 1856 Face 50222 12839 39110 25113 Face 50223 13866 25114 43851 Face 50224 13866 4990 25114 Face 50225 3781 25115 7194 Face 50226 3781 34974 25115 Face 50227 1073 25116 11632 Face 50228 1073 13774 25116 Face 50229 2653 25117 26324 Face 50230 2653 16550 25117 Face 50231 5954 42779 14552 Face 50232 38785 27429 25118 Face 50233 38774 25119 34283 Face 50234 11023 36815 25119 Face 50235 41980 25120 16668 Face 50236 3166 22333 25120 Face 50237 35177 25121 7859 Face 50238 1030 37491 25121 Face 50239 11168 25122 19066 Face 50240 11168 11935 25122 Face 50241 41716 25123 43521 Face 50242 6069 26403 25123 Face 50243 6795 25124 2791 Face 50244 6795 37685 25124 Face 50245 10826 25125 1461 Face 50246 10826 37782 25125 Face 50247 125 25126 20242 Face 50248 25629 26435 25126 Face 50249 6746 25127 18463 Face 50250 6746 13101 25127 Face 50251 38358 25128 47433 Face 50252 946 26894 25128 Face 50253 3173 25129 4689 Face 50254 3173 18296 25129 Face 50255 47301 25130 48 Face 50256 47301 36764 25130 Face 50257 6781 25131 18961 Face 50258 25132 1725 25131 Face 50259 6781 25132 25131 Face 50260 6781 14470 25132 Face 50261 2595 25133 40228 Face 50262 27669 46001 25133 Face 50263 926 25134 22270 Face 50264 926 14469 25134 Face 50265 3868 25135 9065 Face 50266 3868 39855 25135 Face 50267 10824 25136 12298 Face 50268 10824 35092 25136 Face 50269 9542 25137 31660 Face 50270 9542 24038 25137 Face 50271 5862 25138 24606 Face 50272 5862 40201 25138 Face 50273 4593 25139 13427 Face 50274 4593 41119 25139 Face 50275 12121 25140 45937 Face 50276 12121 8637 25140 Face 50277 7372 25141 31881 Face 50278 40931 19084 25141 Face 50279 4959 25142 782 Face 50280 4959 22810 25142 Face 50281 10000 25143 36448 Face 50282 10000 48672 25143 Face 50283 379 25144 37840 Face 50284 379 29619 25144 Face 50285 4598 25145 24561 Face 50286 4598 12510 25145 Face 50287 47445 25146 14573 Face 50288 47445 9446 25146 Face 50289 14996 25147 16945 Face 50290 14996 36018 25147 Face 50291 10441 25148 42107 Face 50292 40841 1787 25148 Face 50293 47806 25149 2829 Face 50294 44637 1753 25149 Face 50295 8167 25150 25149 Face 50296 31128 3236 25150 Face 50297 25152 25151 7729 Face 50298 631 19519 25151 Face 50299 631 25152 41721 Face 50300 631 25151 25152 Face 50301 32141 25153 29534 Face 50302 5228 9876 25153 Face 50303 40052 25154 18813 Face 50304 3850 9564 25154 Face 50305 659 33990 24418 Face 50306 45488 15827 25155 Face 50307 11243 25156 21994 Face 50308 11243 1271 25156 Face 50309 40220 25157 7685 Face 50310 23454 16044 25157 Face 50311 36361 25158 10588 Face 50312 6798 18431 25158 Face 50313 49373 25159 39361 Face 50314 49373 30257 25159 Face 50315 34599 25160 23632 Face 50316 10402 42753 25160 Face 50317 8662 25161 19651 Face 50318 8662 12537 25161 Face 50319 12758 25162 43613 Face 50320 45759 17336 25162 Face 50321 7324 25163 20337 Face 50322 31566 47154 25163 Face 50323 887 25164 10085 Face 50324 887 11192 25164 Face 50325 8708 25165 31369 Face 50326 8708 23101 25165 Face 50327 30740 25166 23416 Face 50328 9421 31089 25166 Face 50329 6163 25167 20383 Face 50330 6163 18954 25167 Face 50331 4636 25168 34862 Face 50332 48791 34904 25168 Face 50333 14646 25169 37268 Face 50334 14646 17981 33441 Face 50335 10282 25170 42842 Face 50336 10282 31478 25170 Face 50337 6570 25171 16291 Face 50338 6570 17182 25171 Face 50339 32603 25172 16371 Face 50340 22204 34243 25172 Face 50341 86 25173 12801 Face 50342 86 20430 25173 Face 50343 15823 25174 24681 Face 50344 15823 16439 25174 Face 50345 14072 25175 32267 Face 50346 14072 10630 25175 Face 50347 25177 25176 4718 Face 50348 25177 40641 25176 Face 50349 3828 25177 21405 Face 50350 3828 40641 25177 Face 50351 6586 25178 12747 Face 50352 6586 9064 25178 Face 50353 14655 25179 7816 Face 50354 14655 48929 25179 Face 50355 1028 25180 36010 Face 50356 1028 13892 25180 Face 50357 28980 46918 17320 Face 50358 1293 10839 25181 Face 50359 458 25182 12218 Face 50360 458 24513 25182 Face 50361 548 25183 4295 Face 50362 548 20480 25183 Face 50363 49458 25184 6579 Face 50364 49458 24460 25184 Face 50365 13815 25185 32169 Face 50366 13815 10139 25185 Face 50367 47961 43305 12791 Face 50368 47961 9534 25186 Face 50369 5643 25187 5946 Face 50370 5643 46793 25187 Face 50371 17122 25188 866 Face 50372 17122 8157 25188 Face 50373 7461 42904 16130 Face 50374 7461 49209 41367 Face 50375 16412 25190 36221 Face 50376 36425 21178 25190 Face 50377 2287 43171 47733 Face 50378 2287 16501 25191 Face 50379 14269 49410 1439 Face 50380 14269 46141 25192 Face 50381 1262 25193 37821 Face 50382 1262 3712 25193 Face 50383 6399 25194 32504 Face 50384 32533 8387 25194 Face 50385 39449 25195 27731 Face 50386 39449 34375 25195 Face 50387 34678 25196 11953 Face 50388 3406 25857 25196 Face 50389 48621 25197 37854 Face 50390 48622 7923 42891 Face 50391 44576 25198 5176 Face 50392 4946 30154 25198 Face 50393 941 25199 13135 Face 50394 941 19707 25199 Face 50395 3251 25200 34366 Face 50396 3251 25399 25200 Face 50397 3251 25201 25399 Face 50398 3251 17454 34785 Face 50399 25203 25202 37963 Face 50400 25203 40078 25202 Face 50401 9229 25203 37963 Face 50402 9229 22553 25203 Face 50403 416 25204 11727 Face 50404 416 7251 25204 Face 50405 8453 25205 20740 Face 50406 8453 45095 25205 Face 50407 8892 25206 48292 Face 50408 28675 26663 25206 Face 50409 43821 25207 39783 Face 50410 3419 17141 25207 Face 50411 1393 25208 24200 Face 50412 1393 28362 25208 Face 50413 45394 46152 34133 Face 50414 45394 44030 46152 Face 50415 4714 25210 37003 Face 50416 4714 24659 25210 Face 50417 2105 25211 13172 Face 50418 2105 15089 25211 Face 50419 27663 25212 42217 Face 50420 1289 10771 33230 Face 50421 5240 25213 12170 Face 50422 5240 21057 25213 Face 50423 5240 25214 33581 Face 50424 5240 12170 25214 Face 50425 28368 25215 12138 Face 50426 323 18310 25215 Face 50427 1313 25216 8237 Face 50428 1313 48775 25216 Face 50429 45233 25217 46971 Face 50430 7165 22965 25217 Face 50431 29905 25218 18642 Face 50432 7242 22070 25218 Face 50433 25110 25219 42587 Face 50434 25110 34801 25219 Face 50435 10753 25220 6351 Face 50436 10753 20669 25220 Face 50437 30023 37020 585 Face 50438 4769 31522 25221 Face 50439 9162 25222 4309 Face 50440 9162 47331 43862 Face 50441 2459 25223 17706 Face 50442 2459 18436 25223 Face 50443 330 25224 21436 Face 50444 330 19130 25224 Face 50445 2989 25225 19012 Face 50446 2989 40417 25225 Face 50447 2217 25226 12046 Face 50448 2217 24597 40646 Face 50449 1648 25227 16965 Face 50450 39895 41460 25227 Face 50451 7696 25228 11671 Face 50452 7696 13230 25228 Face 50453 8020 25229 12350 Face 50454 8020 46258 25229 Face 50455 18211 25230 14202 Face 50456 18211 35232 25230 Face 50457 5068 25231 19284 Face 50458 45600 24632 25231 Face 50459 19143 25232 42353 Face 50460 19143 8289 25232 Face 50461 42228 25233 12352 Face 50462 1254 16443 25233 Face 50463 3784 25234 25483 Face 50464 3784 27423 25234 Face 50465 17621 25235 17620 Face 50466 17621 10419 25235 Face 50467 39595 25236 12103 Face 50468 39595 11929 25236 Face 50469 10623 49817 32098 Face 50470 36498 20582 49817 Face 50471 309 25238 38075 Face 50472 309 42264 25238 Face 50473 42045 38128 13568 Face 50474 398 47245 25239 Face 50475 39105 25240 32419 Face 50476 398 25239 25240 Face 50477 39186 25241 2159 Face 50478 9062 36901 25241 Face 50479 28872 25242 40967 Face 50480 4314 21315 25242 Face 50481 9789 25243 39407 Face 50482 9789 28365 25243 Face 50483 37725 25244 8743 Face 50484 14113 12114 25244 Face 50485 9023 49232 28899 Face 50486 9023 16588 25245 Face 50487 5783 25246 20081 Face 50488 5783 13957 25246 Face 50489 1572 25247 7108 Face 50490 31677 13547 25247 Face 50491 17997 25248 41954 Face 50492 17997 44759 25248 Face 50493 3561 25249 48040 Face 50494 27800 40717 25249 Face 50495 31543 25250 41111 Face 50496 12592 19391 36061 Face 50497 3590 25251 14962 Face 50498 3590 16003 34743 Face 50499 17640 25252 2118 Face 50500 17640 8159 25252 Face 50501 30138 25253 18996 Face 50502 38126 3495 25253 Face 50503 10056 38126 25253 Face 50504 30137 2671 25254 Face 50505 10515 25255 41496 Face 50506 10515 42044 25255 Face 50507 46413 25256 42038 Face 50508 1352 5496 43587 Face 50509 38693 25257 9143 Face 50510 243 26534 25257 Face 50511 7376 45171 19620 Face 50512 7376 17767 45171 Face 50513 18322 25259 33066 Face 50514 18322 28657 25259 Face 50515 46527 25260 22475 Face 50516 1896 19807 25260 Face 50517 47034 25261 34960 Face 50518 47034 5952 25261 Face 50519 13464 25262 46359 Face 50520 13464 22164 25262 Face 50521 4518 25263 21493 Face 50522 4518 18057 44789 Face 50523 6277 38637 9754 Face 50524 43957 6276 31993 Face 50525 18679 25265 24732 Face 50526 18679 44506 25265 Face 50527 43920 43699 21854 Face 50528 9060 48088 25266 Face 50529 6997 25267 17610 Face 50530 6997 46887 25267 Face 50531 4386 25268 31817 Face 50532 4386 7695 25268 Face 50533 14869 25269 44868 Face 50534 14869 49392 25269 Face 50535 1378 25270 14481 Face 50536 47492 5762 25270 Face 50537 2060 25271 11097 Face 50538 2060 18796 25271 Face 50539 11727 25272 8342 Face 50540 11727 48724 25272 Face 50541 7228 25273 49827 Face 50542 7228 17033 25273 Face 50543 8879 25274 4957 Face 50544 8879 9357 25274 Face 50545 15421 25275 30287 Face 50546 15421 1539 25275 Face 50547 18638 25276 18637 Face 50548 36157 30836 47907 Face 50549 17261 25277 41073 Face 50550 17261 547 25277 Face 50551 11265 25278 41055 Face 50552 11265 24723 25278 Face 50553 13328 25279 40937 Face 50554 30236 49147 25279 Face 50555 5049 25280 15516 Face 50556 5049 33896 25280 Face 50557 33780 43339 15515 Face 50558 5049 24335 43339 Face 50559 32446 25282 32580 Face 50560 10626 10622 25282 Face 50561 12869 25283 4617 Face 50562 46242 17047 25283 Face 50563 4505 25284 14817 Face 50564 4505 21176 25284 Face 50565 7410 25285 9300 Face 50566 7410 24383 25285 Face 50567 4600 25286 14919 Face 50568 4600 16696 25286 Face 50569 255 25287 33217 Face 50570 34643 24202 25287 Face 50571 3577 31214 49589 Face 50572 3577 23099 25288 Face 50573 74 25289 19131 Face 50574 74 48641 25289 Face 50575 16661 25290 232 Face 50576 16661 2461 25290 Face 50577 232 25291 16660 Face 50578 232 25290 25291 Face 50579 39070 25292 23710 Face 50580 8282 21367 25292 Face 50581 43126 25293 16213 Face 50582 1914 20834 25293 Face 50583 1991 25294 20733 Face 50584 1991 34899 25294 Face 50585 12875 25295 41995 Face 50586 12875 49001 25295 Face 50587 49640 25296 7002 Face 50588 49640 10378 25296 Face 50589 507 25297 3952 Face 50590 507 15558 25297 Face 50591 17580 25298 42317 Face 50592 17580 33312 25298 Face 50593 716 25299 13823 Face 50594 716 37497 25299 Face 50595 10393 25300 24633 Face 50596 10393 9938 25300 Face 50597 27879 25301 12269 Face 50598 4148 19314 25301 Face 50599 6486 25302 27647 Face 50600 6486 1974 25302 Face 50601 16925 25303 36880 Face 50602 16925 20418 25303 Face 50603 3320 25304 41692 Face 50604 30959 42889 25304 Face 50605 17210 25305 6302 Face 50606 17210 46681 25305 Face 50607 4542 42880 4038 Face 50608 4542 14764 42880 Face 50609 1630 25307 44469 Face 50610 1630 11602 25307 Face 50611 2486 25308 6180 Face 50612 2486 44465 25308 Face 50613 34975 35814 32325 Face 50614 6369 10997 25309 Face 50615 12659 25310 11507 Face 50616 12659 24661 25310 Face 50617 854 25311 16979 Face 50618 854 36315 25311 Face 50619 8353 25312 31810 Face 50620 8353 11884 25312 Face 50621 1457 25313 33315 Face 50622 1457 26754 42864 Face 50623 17375 25314 14323 Face 50624 33386 15064 25314 Face 50625 5962 25315 18736 Face 50626 5962 1097 25315 Face 50627 11587 25316 44244 Face 50628 46549 4844 25316 Face 50629 7364 25317 3424 Face 50630 7364 30180 25317 Face 50631 38717 25318 18213 Face 50632 1836 18079 25318 Face 50633 46701 25319 10906 Face 50634 8170 13368 25319 Face 50635 47392 25320 31381 Face 50636 1299 18058 25320 Face 50637 10781 25321 47768 Face 50638 10781 46349 25321 Face 50639 2545 45393 10929 Face 50640 2545 5006 25322 Face 50641 6475 25323 46296 Face 50642 6475 29673 25323 Face 50643 4650 47269 4458 Face 50644 27217 19466 25324 Face 50645 7980 25325 37612 Face 50646 7980 29249 25325 Face 50647 7204 25326 37078 Face 50648 7204 22411 25326 Face 50649 69 25327 11106 Face 50650 25328 35390 25327 Face 50651 69 25328 25327 Face 50652 69 13522 25328 Face 50653 32189 25329 17816 Face 50654 11600 13973 25329 Face 50655 37496 25330 4310 Face 50656 37496 7068 25330 Face 50657 16551 25331 28272 Face 50658 16551 31743 25331 Face 50659 4847 25332 11524 Face 50660 4847 7905 25332 Face 50661 41992 25333 17488 Face 50662 25334 30580 36561 Face 50663 5871 25334 25333 Face 50664 5871 42659 25334 Face 50665 1216 25335 6845 Face 50666 1216 27402 47113 Face 50667 76 25336 17711 Face 50668 76 3891 33084 Face 50669 40139 25337 48151 Face 50670 1128 37237 25337 Face 50671 9273 25338 24847 Face 50672 9273 1569 36842 Face 50673 9687 25339 23426 Face 50674 9687 24146 25339 Face 50675 37508 25340 3689 Face 50676 7013 38314 25340 Face 50677 6625 25341 48192 Face 50678 6625 20033 25341 Face 50679 36032 25342 18284 Face 50680 36033 12785 40645 Face 50681 5825 25343 19442 Face 50682 27156 19196 25343 Face 50683 46143 25344 34973 Face 50684 7796 371 25344 Face 50685 7796 25345 7222 Face 50686 7796 25344 46143 Face 50687 4848 25346 39423 Face 50688 4848 18333 25346 Face 50689 1945 25347 34014 Face 50690 25349 47005 25347 Face 50691 25349 25348 47005 Face 50692 1945 30888 25348 Face 50693 1945 25349 25347 Face 50694 1945 25348 25349 Face 50695 12798 25350 933 Face 50696 12798 39681 25350 Face 50697 6084 25351 33700 Face 50698 6084 10904 25351 Face 50699 9258 49619 25488 Face 50700 9258 32025 25352 Face 50701 1092 25353 31042 Face 50702 1092 47099 40900 Face 50703 46028 25354 8751 Face 50704 32739 44648 25354 Face 50705 6221 25355 38186 Face 50706 6221 11092 25355 Face 50707 160 25356 47858 Face 50708 160 19146 25356 Face 50709 3134 25357 12662 Face 50710 39614 20230 25357 Face 50711 10641 25358 38662 Face 50712 10641 19990 25358 Face 50713 2687 25359 17444 Face 50714 2687 6641 25359 Face 50715 5429 25360 9358 Face 50716 5429 18517 25360 Face 50717 10488 25361 4903 Face 50718 40513 21163 49734 Face 50719 36039 37822 14980 Face 50720 35175 1769 25362 Face 50721 13668 25363 9111 Face 50722 13668 1964 25363 Face 50723 48465 25364 21532 Face 50724 542 29865 25364 Face 50725 542 25365 31085 Face 50726 542 25364 25365 Face 50727 7196 25366 38539 Face 50728 45917 24384 25366 Face 50729 8104 25367 22244 Face 50730 8104 43037 25367 Face 50731 10379 25368 1788 Face 50732 10379 431 25368 Face 50733 6641 25369 32443 Face 50734 6641 2687 25369 Face 50735 5512 25370 34423 Face 50736 43062 3437 25370 Face 50737 47218 25371 33239 Face 50738 10557 42236 25371 Face 50739 43689 25372 48145 Face 50740 4315 24980 25372 Face 50741 38695 25373 37769 Face 50742 4315 25372 43689 Face 50743 6557 25374 20438 Face 50744 25375 21161 44077 Face 50745 6557 25375 25374 Face 50746 6557 38720 25375 Face 50747 31453 25376 2487 Face 50748 28209 40731 25376 Face 50749 29072 25377 8225 Face 50750 35281 38185 25377 Face 50751 42219 25378 16165 Face 50752 42219 21286 25378 Face 50753 25378 25379 18656 Face 50754 25378 5183 25379 Face 50755 33089 25380 42192 Face 50756 33089 44763 25380 Face 50757 16007 25381 15506 Face 50758 37226 38081 25381 Face 50759 4363 25382 16439 Face 50760 4363 20851 25382 Face 50761 5250 25383 25566 Face 50762 5250 41095 25383 Face 50763 5117 25384 49502 Face 50764 5117 1704 25384 Face 50765 456 47547 19640 Face 50766 25386 46629 25385 Face 50767 456 25386 47547 Face 50768 47956 49786 35965 Face 50769 640 25387 48118 Face 50770 640 20658 25387 Face 50771 5966 25388 28941 Face 50772 5966 34400 25388 Face 50773 14921 41665 4323 Face 50774 43731 43816 25389 Face 50775 29987 25390 10611 Face 50776 16236 25206 25390 Face 50777 2013 25391 24810 Face 50778 2013 22351 25391 Face 50779 38856 25392 43488 Face 50780 1143 19736 25392 Face 50781 8272 25393 9194 Face 50782 8272 8273 45981 Face 50783 642 25394 33922 Face 50784 642 41299 25394 Face 50785 1546 25395 47765 Face 50786 32678 16194 25395 Face 50787 11438 25396 24250 Face 50788 11438 15789 25396 Face 50789 47437 25397 4054 Face 50790 10872 16736 25397 Face 50791 38338 25398 23161 Face 50792 1625 40162 25398 Face 50793 27101 25399 25201 Face 50794 15518 25200 25399 Face 50795 9402 25400 22132 Face 50796 9402 26935 25400 Face 50797 42885 25401 29292 Face 50798 3704 29400 25401 Face 50799 5377 44371 42499 Face 50800 5377 40926 25402 Face 50801 3271 25403 21009 Face 50802 3271 44505 25403 Face 50803 25405 25404 40766 Face 50804 2416 22853 25404 Face 50805 2416 25405 4329 Face 50806 2416 25404 25405 Face 50807 31738 25406 37414 Face 50808 5704 24339 25406 Face 50809 21133 25407 20853 Face 50810 25408 34088 25407 Face 50811 21133 25408 25407 Face 50812 21133 35020 25408 Face 50813 19814 25409 46308 Face 50814 19814 35747 25409 Face 50815 5525 25410 6054 Face 50816 5525 25073 25410 Face 50817 47075 39438 6992 Face 50818 2936 30746 25411 Face 50819 49590 25412 22491 Face 50820 49590 13359 25412 Face 50821 11858 25413 2976 Face 50822 11858 3104 25413 Face 50823 132 25414 9982 Face 50824 132 35924 25414 Face 50825 37088 25415 13734 Face 50826 22435 3849 25415 Face 50827 11309 25416 20415 Face 50828 11309 37711 25416 Face 50829 11712 40263 23180 Face 50830 11712 33422 40263 Face 50831 25419 25418 11692 Face 50832 25420 22733 25418 Face 50833 9316 25419 18244 Face 50834 25420 25418 25419 Face 50835 9316 25420 25419 Face 50836 9316 37207 25420 Face 50837 4501 25421 23200 Face 50838 4501 43735 25421 Face 50839 13507 25422 43857 Face 50840 13507 45026 25422 Face 50841 49201 25423 33975 Face 50842 49201 22206 25423 Face 50843 5252 25424 19773 Face 50844 44006 44488 25424 Face 50845 15777 25425 14414 Face 50846 15777 20360 25425 Face 50847 612 25426 22153 Face 50848 29023 43795 41804 Face 50849 45667 25427 16758 Face 50850 6649 37781 25427 Face 50851 5818 25428 27939 Face 50852 40672 27776 25428 Face 50853 7101 25429 8712 Face 50854 34860 14315 25429 Face 50855 15029 25430 7195 Face 50856 15029 9109 25430 Face 50857 12654 25431 37147 Face 50858 12654 479 25431 Face 50859 409 25432 46300 Face 50860 409 27455 25432 Face 50861 42363 42059 20702 Face 50862 27122 44176 25434 Face 50863 25433 25434 44176 Face 50864 25433 40086 25434 Face 50865 21521 25435 7189 Face 50866 38859 8760 25435 Face 50867 19886 25436 249 Face 50868 19886 24388 33895 Face 50869 26686 25437 298 Face 50870 4546 32394 25437 Face 50871 11080 25438 17393 Face 50872 11080 1465 25438 Face 50873 25498 25439 18012 Face 50874 3836 14376 25439 Face 50875 1536 25440 48267 Face 50876 1536 19801 25440 Face 50877 975 25441 16144 Face 50878 975 45641 25441 Face 50879 975 25442 45641 Face 50880 975 6156 25442 Face 50881 12287 25443 1027 Face 50882 12287 31470 25443 Face 50883 2533 25444 42274 Face 50884 2533 1823 25444 Face 50885 10335 25445 21356 Face 50886 10335 42073 25445 Face 50887 10436 25446 5088 Face 50888 10436 25035 25446 Face 50889 4087 25447 9913 Face 50890 4087 25485 25447 Face 50891 12688 25448 35193 Face 50892 47285 44113 25448 Face 50893 25450 25449 21818 Face 50894 6014 22102 25449 Face 50895 6014 25450 21570 Face 50896 6014 25449 25450 Face 50897 6031 48021 16629 Face 50898 6031 41623 25451 Face 50899 34793 25452 32295 Face 50900 5812 20099 25452 Face 50901 10943 31622 3875 Face 50902 10943 27106 25453 Face 50903 4084 25454 46295 Face 50904 4084 38823 46005 Face 50905 13796 25455 5905 Face 50906 13796 34152 25455 Face 50907 10061 25456 18455 Face 50908 10061 12196 25456 Face 50909 2554 25457 36470 Face 50910 2554 26126 25457 Face 50911 13351 25458 39400 Face 50912 13351 3182 25458 Face 50913 14119 25459 2604 Face 50914 14119 14806 25459 Face 50915 2766 25460 10501 Face 50916 2766 21187 25460 Face 50917 6891 25461 33393 Face 50918 6891 35119 25461 Face 50919 6891 25462 35119 Face 50920 6891 30384 25462 Face 50921 4517 25463 33440 Face 50922 4517 16944 25463 Face 50923 15452 25464 7125 Face 50924 15452 8936 25464 Face 50925 27973 25465 19305 Face 50926 27973 989 25465 Face 50927 12647 25466 41844 Face 50928 12647 3549 25466 Face 50929 46841 25467 25065 Face 50930 13440 40495 25467 Face 50931 13440 44755 19290 Face 50932 13440 25467 25468 Face 50933 18136 25469 2551 Face 50934 18136 31268 25469 Face 50935 11887 43681 3740 Face 50936 11887 41648 25470 Face 50937 7926 25471 9412 Face 50938 7926 21656 35043 Face 50939 38115 25472 15856 Face 50940 38115 41363 25472 Face 50941 10543 25473 7150 Face 50942 10543 18477 25473 Face 50943 2353 25474 12874 Face 50944 36416 34536 25474 Face 50945 3244 25475 11686 Face 50946 3244 30859 25475 Face 50947 3244 25476 30859 Face 50948 34373 26185 25476 Face 50949 7192 25477 31123 Face 50950 7192 42459 25477 Face 50951 3891 25478 33084 Face 50952 3891 40276 25478 Face 50953 11635 25479 49941 Face 50954 11635 18309 25479 Face 50955 7807 25480 14847 Face 50956 7807 19858 25480 Face 50957 16268 25481 1949 Face 50958 44611 8071 25481 Face 50959 4099 25482 29582 Face 50960 4099 9578 25482 Face 50961 5920 25483 12755 Face 50962 5920 3784 25483 Face 50963 38480 25484 16380 Face 50964 24 25880 25484 Face 50965 2053 25485 4087 Face 50966 2053 19945 25485 Face 50967 586 25486 26900 Face 50968 586 14560 25486 Face 50969 162 48208 31349 Face 50970 162 11718 25487 Face 50971 3797 25488 6448 Face 50972 3797 9258 25488 Face 50973 5292 25489 40331 Face 50974 39881 13870 25489 Face 50975 12225 25490 41076 Face 50976 12225 877 25490 Face 50977 12779 25491 10821 Face 50978 12779 631 41721 Face 50979 24755 25492 37813 Face 50980 34636 37641 25492 Face 50981 39058 25493 20147 Face 50982 14184 38611 25493 Face 50983 14295 25494 26815 Face 50984 14295 4656 25494 Face 50985 17980 25495 3005 Face 50986 17980 6492 25495 Face 50987 5925 48550 14344 Face 50988 29534 1955 25496 Face 50989 5452 25497 13658 Face 50990 5452 17178 25497 Face 50991 29165 38594 34112 Face 50992 3836 25439 25498 Face 50993 29912 25499 477 Face 50994 27131 3157 25499 Face 50995 7596 25500 20511 Face 50996 7596 24960 25500 Face 50997 6022 25501 31135 Face 50998 6022 20015 25501 Face 50999 6022 25502 47851 Face 51000 6022 42126 25502 Face 51001 46787 25503 10016 Face 51002 10890 32084 25503 Face 51003 5707 25504 45170 Face 51004 5707 44978 25504 Face 51005 8972 40937 31346 Face 51006 8972 8781 25505 Face 51007 14432 25506 20019 Face 51008 14432 20020 25506 Face 51009 31456 25507 24728 Face 51010 11381 18159 25507 Face 51011 77 25508 22807 Face 51012 77 11942 25508 Face 51013 77 25509 49787 Face 51014 77 32028 25509 Face 51015 41259 25510 49448 Face 51016 2873 21379 25510 Face 51017 35 25511 24976 Face 51018 37416 47425 25511 Face 51019 8292 25512 23302 Face 51020 8292 46794 25512 Face 51021 3761 25513 46168 Face 51022 3761 14630 25513 Face 51023 10769 25514 42487 Face 51024 10769 24288 25514 Face 51025 10769 49400 24288 Face 51026 10769 29012 49400 Face 51027 11860 25516 27613 Face 51028 11860 1474 25516 Face 51029 13111 25517 43784 Face 51030 13111 9000 25517 Face 51031 12049 25518 41831 Face 51032 43084 18892 25518 Face 51033 39800 25519 29131 Face 51034 39800 696 25519 Face 51035 8821 25520 27162 Face 51036 8821 19945 25520 Face 51037 47168 25521 22422 Face 51038 7117 32459 25521 Face 51039 31916 25522 39406 Face 51040 40598 18126 25522 Face 51041 8712 25523 31649 Face 51042 8712 21730 25523 Face 51043 23017 25524 19893 Face 51044 23017 14706 25524 Face 51045 9041 39963 5338 Face 51046 46849 32113 25525 Face 51047 7733 25526 23043 Face 51048 7733 21901 25526 Face 51049 3454 25527 42467 Face 51050 3454 11108 25527 Face 51051 1684 25528 19021 Face 51052 1684 10180 25528 Face 51053 12247 25529 19662 Face 51054 12247 12246 25529 Face 51055 2307 49605 8778 Face 51056 48907 9728 25530 Face 51057 10310 25531 30767 Face 51058 10310 8797 25531 Face 51059 12644 25532 20340 Face 51060 42512 11608 25532 Face 51061 45592 25533 2256 Face 51062 634 12765 25533 Face 51063 5701 25534 43060 Face 51064 30172 47441 25534 Face 51065 21077 25535 28189 Face 51066 21077 4654 25535 Face 51067 12353 25536 23141 Face 51068 12353 9522 25536 Face 51069 5835 25537 14773 Face 51070 5835 39917 25537 Face 51071 2089 25538 44664 Face 51072 2089 18110 25538 Face 51073 48806 25539 27886 Face 51074 48806 31507 25539 Face 51075 48806 33540 31507 Face 51076 3249 1561 25540 Face 51077 13307 45150 16278 Face 51078 13307 39036 45150 Face 51079 41950 25542 15549 Face 51080 11624 7980 25542 Face 51081 22879 25543 9617 Face 51082 22879 14121 25543 Face 51083 35715 36291 23714 Face 51084 4524 14938 36290 Face 51085 18726 25545 24809 Face 51086 30690 11386 25545 Face 51087 25547 25546 42814 Face 51088 47760 6666 25546 Face 51089 25548 25547 49960 Face 51090 1910 25546 25547 Face 51091 47759 25548 20434 Face 51092 1910 25547 25548 Face 51093 3767 25549 25489 Face 51094 26308 47773 25549 Face 51095 48825 25550 2731 Face 51096 10216 48514 25550 Face 51097 6613 25551 23213 Face 51098 6613 20479 25551 Face 51099 13556 33534 3015 Face 51100 13556 38621 33534 Face 51101 36122 25553 12649 Face 51102 36122 17242 25553 Face 51103 12314 25554 21865 Face 51104 46606 31373 25554 Face 51105 13854 25555 43698 Face 51106 13854 28847 25555 Face 51107 25930 25556 43930 Face 51108 25930 24424 45411 Face 51109 7233 25557 3212 Face 51110 7233 19122 25557 Face 51111 5201 25558 9568 Face 51112 5201 11565 25558 Face 51113 1017 25559 24619 Face 51114 1017 29334 25559 Face 51115 14125 25560 14126 Face 51116 14125 22112 42896 Face 51117 10473 25561 762 Face 51118 29427 21743 25561 Face 51119 19001 25562 24420 Face 51120 28189 25535 25562 Face 51121 12999 25563 8630 Face 51122 12999 24579 25563 Face 51123 36989 27524 47448 Face 51124 3598 12915 27524 Face 51125 27255 25565 41944 Face 51126 47 47870 25565 Face 51127 18399 25566 25383 Face 51128 18399 21553 25566 Face 51129 19328 25567 42954 Face 51130 19328 23526 25567 Face 51131 41881 25568 24455 Face 51132 41494 15259 44686 Face 51133 33410 25569 46798 Face 51134 3681 23673 25569 Face 51135 902 25570 36603 Face 51136 902 24715 25570 Face 51137 3727 25571 32804 Face 51138 3727 30333 25571 Face 51139 9046 25572 37767 Face 51140 9046 12400 25572 Face 51141 4924 25573 38743 Face 51142 4924 25854 25573 Face 51143 19238 25574 19470 Face 51144 19238 34666 25574 Face 51145 10865 25575 22211 Face 51146 10865 17082 25575 Face 51147 6507 45668 43446 Face 51148 43519 26243 25576 Face 51149 10387 38967 37277 Face 51150 25578 30623 25577 Face 51151 10387 25578 25577 Face 51152 30010 11520 25578 Face 51153 7275 25579 20042 Face 51154 7275 19430 25579 Face 51155 1497 25580 12933 Face 51156 1497 2 25580 Face 51157 24119 25581 24118 Face 51158 24119 39971 25581 Face 51159 2699 25582 7122 Face 51160 27878 40048 25582 Face 51161 16597 25583 40401 Face 51162 16597 9392 25583 Face 51163 26462 25584 19250 Face 51164 26462 21110 25584 Face 51165 4575 25585 4155 Face 51166 34894 19159 25585 Face 51167 8570 25586 46094 Face 51168 8570 20766 25586 Face 51169 327 25587 43299 Face 51170 25588 17074 25587 Face 51171 327 25588 25587 Face 51172 327 16468 25588 Face 51173 6133 25589 49939 Face 51174 6133 11995 25589 Face 51175 6133 25590 32011 Face 51176 6133 30100 25590 Face 51177 12003 25591 14860 Face 51178 12003 23406 25591 Face 51179 21921 25592 28720 Face 51180 21921 9830 25592 Face 51181 4181 39733 32369 Face 51182 4181 41118 25593 Face 51183 42780 25594 1010 Face 51184 49939 25589 25594 Face 51185 282 25595 14512 Face 51186 282 22116 25595 Face 51187 37436 25596 11904 Face 51188 6800 27678 25596 Face 51189 9782 25597 23665 Face 51190 41982 16434 25597 Face 51191 943 25598 19079 Face 51192 44342 48289 25598 Face 51193 2762 25599 12060 Face 51194 41438 6135 25599 Face 51195 38542 25600 47910 Face 51196 38542 27682 25600 Face 51197 14946 25601 31095 Face 51198 14946 4912 25601 Face 51199 6134 25602 49526 Face 51200 26753 12975 25602 Face 51201 21611 25603 9447 Face 51202 21611 30345 25603 Face 51203 41225 25604 1599 Face 51204 15059 15060 46178 Face 51205 25606 46061 9861 Face 51206 28920 40625 47490 Face 51207 5271 25606 37016 Face 51208 5271 46060 25606 Face 51209 19557 25607 44080 Face 51210 19557 12653 25607 Face 51211 11993 25608 28049 Face 51212 11993 26426 25608 Face 51213 25608 25609 17559 Face 51214 25608 26426 25609 Face 51215 5353 25610 20710 Face 51216 5353 19126 25610 Face 51217 8339 25611 35664 Face 51218 8339 18053 25611 Face 51219 43433 42596 14981 Face 51220 10185 11456 42596 Face 51221 11554 25613 2799 Face 51222 11554 8899 25613 Face 51223 5774 25614 44252 Face 51224 5774 33498 25614 Face 51225 15200 25615 40330 Face 51226 15200 1764 25615 Face 51227 6614 25616 1785 Face 51228 47800 15064 44437 Face 51229 8552 39396 20215 Face 51230 36019 42198 25617 Face 51231 10174 25618 23808 Face 51232 10174 4663 25618 Face 51233 2288 25619 12498 Face 51234 2288 30454 25619 Face 51235 25621 25620 36067 Face 51236 23 5295 25620 Face 51237 23 44314 5990 Face 51238 23 25620 25621 Face 51239 16973 25622 36557 Face 51240 16973 3381 45620 Face 51241 250 25623 15253 Face 51242 250 18919 25623 Face 51243 43987 25624 19933 Face 51244 10224 27919 25624 Face 51245 35084 25625 11947 Face 51246 35084 15431 25625 Face 51247 2227 25626 14762 Face 51248 2227 37302 25626 Face 51249 4767 25627 40629 Face 51250 41268 8126 44387 Face 51251 12399 25628 12150 Face 51252 12399 2741 25628 Face 51253 125 25629 25126 Face 51254 40363 22367 25629 Face 51255 16278 25630 1037 Face 51256 16278 9917 25630 Face 51257 2999 47011 17464 Face 51258 40928 9489 25631 Face 51259 2843 25632 21363 Face 51260 2843 13085 25632 Face 51261 2844 46276 11158 Face 51262 2844 17055 25633 Face 51263 7537 25634 19196 Face 51264 7537 46289 25634 Face 51265 7639 25635 24933 Face 51266 25636 36085 25635 Face 51267 7639 25636 25635 Face 51268 7639 14706 25636 Face 51269 11242 25637 26896 Face 51270 11242 24811 25637 Face 51271 41849 29217 23728 Face 51272 25639 1206 48294 Face 51273 25640 25639 48294 Face 51274 11410 26044 25639 Face 51275 11410 25640 25638 Face 51276 11410 25639 25640 Face 51277 16248 25641 14271 Face 51278 16248 20875 25641 Face 51279 24540 25642 12572 Face 51280 24540 22516 25642 Face 51281 13661 25643 11940 Face 51282 37301 17128 25643 Face 51283 32347 25644 19541 Face 51284 30606 7291 25644 Face 51285 25646 25645 19671 Face 51286 25646 24047 25645 Face 51287 5302 25646 19671 Face 51288 5302 933 25646 Face 51289 34006 25647 12848 Face 51290 34113 38290 25647 Face 51291 12776 25648 18070 Face 51292 12776 3611 25648 Face 51293 25650 25649 11569 Face 51294 37868 23806 25649 Face 51295 12712 25650 13707 Face 51296 37868 25649 25650 Face 51297 10642 25651 20002 Face 51298 44369 20901 25651 Face 51299 7493 25652 32953 Face 51300 7493 23916 25652 Face 51301 8342 25653 11727 Face 51302 44489 24498 25653 Face 51303 6966 25654 45692 Face 51304 6966 13194 25654 Face 51305 39728 25655 6036 Face 51306 5332 23591 25655 Face 51307 37841 48305 3979 Face 51308 42793 31005 25656 Face 51309 1661 25657 38069 Face 51310 1661 35151 25657 Face 51311 20354 25658 4882 Face 51312 20354 37070 25658 Face 51313 516 25659 7867 Face 51314 516 11984 25659 Face 51315 25661 42804 12444 Face 51316 1363 12554 25660 Face 51317 1363 25661 41799 Face 51318 1363 42804 25661 Face 51319 30958 25662 36478 Face 51320 19133 20862 25662 Face 51321 7059 27888 41172 Face 51322 25664 33192 25663 Face 51323 7059 25664 25663 Face 51324 25665 42375 25664 Face 51325 7059 25665 25664 Face 51326 7059 14638 25665 Face 51327 12751 40879 17773 Face 51328 12751 44997 25666 Face 51329 3479 25667 21113 Face 51330 3479 8829 25667 Face 51331 15445 25668 19884 Face 51332 15445 37370 25668 Face 51333 6072 25669 26210 Face 51334 6072 24994 25669 Face 51335 1834 25670 18242 Face 51336 28678 21115 25670 Face 51337 37172 25671 12381 Face 51338 43175 40990 25671 Face 51339 16276 49662 610 Face 51340 16276 15233 25672 Face 51341 293 25673 43094 Face 51342 293 18232 25673 Face 51343 5659 25674 39770 Face 51344 5659 48688 25674 Face 51345 2027 25675 42625 Face 51346 2027 11931 25675 Face 51347 35195 25676 15113 Face 51348 35195 34946 25676 Face 51349 8704 25677 35671 Face 51350 8704 36556 25677 Face 51351 1905 25678 1385 Face 51352 1905 42283 25678 Face 51353 45086 25679 48355 Face 51354 9666 25680 25679 Face 51355 32635 25680 27114 Face 51356 9667 25681 25680 Face 51357 36495 25681 9667 Face 51358 25679 25680 25681 Face 51359 33044 25682 17430 Face 51360 3664 22514 25682 Face 51361 42979 25683 25615 Face 51362 4721 30497 25683 Face 51363 1041 34184 42811 Face 51364 1041 15707 25684 Face 51365 6203 25685 22778 Face 51366 6203 33705 25685 Face 51367 43673 25686 7362 Face 51368 17882 46397 25686 Face 51369 1631 25687 18981 Face 51370 41728 29812 25687 Face 51371 8538 25688 41011 Face 51372 44224 38832 25688 Face 51373 9758 25689 17245 Face 51374 9758 16838 25689 Face 51375 264 25690 19036 Face 51376 264 19864 25690 Face 51377 28937 25691 2242 Face 51378 17605 23203 25691 Face 51379 15791 25692 819 Face 51380 15791 24434 25692 Face 51381 26144 25693 22622 Face 51382 26145 35127 25693 Face 51383 10426 45240 18224 Face 51384 10426 3087 25694 Face 51385 30423 25695 17472 Face 51386 4210 42419 25695 Face 51387 13723 25696 13724 Face 51388 13723 4722 25696 Face 51389 41443 25697 1428 Face 51390 18287 23781 25697 Face 51391 18287 25698 34519 Face 51392 18287 25697 41443 Face 51393 18287 25699 550 Face 51394 37894 22227 25699 Face 51395 12713 25700 19427 Face 51396 12713 41093 25700 Face 51397 9989 25701 14949 Face 51398 9989 30506 25701 Face 51399 15519 25702 39604 Face 51400 15519 11892 25702 Face 51401 29969 25703 5404 Face 51402 2562 20898 25703 Face 51403 380 25704 26471 Face 51404 380 25445 25704 Face 51405 34605 25705 7496 Face 51406 34605 43189 25705 Face 51407 43224 25706 29658 Face 51408 16953 31248 25706 Face 51409 7339 44570 7340 Face 51410 39686 8665 25707 Face 51411 8101 25708 35080 Face 51412 31399 17175 25708 Face 51413 8587 25709 3222 Face 51414 8587 37342 25709 Face 51415 31148 25710 22789 Face 51416 661 29697 25710 Face 51417 3644 25711 17463 Face 51418 42174 14262 25711 Face 51419 10877 25712 34617 Face 51420 10877 1612 25712 Face 51421 25929 25713 14883 Face 51422 5552 47434 40418 Face 51423 611 35331 5362 Face 51424 611 8863 25714 Face 51425 36907 25715 9920 Face 51426 25716 43823 25715 Face 51427 12244 25716 25715 Face 51428 12244 42577 25716 Face 51429 695 25717 15312 Face 51430 695 1249 25717 Face 51431 17896 25718 34178 Face 51432 45486 34229 25718 Face 51433 8722 25719 42062 Face 51434 31994 3098 25719 Face 51435 5956 25720 27673 Face 51436 5956 23436 25720 Face 51437 42573 25721 5656 Face 51438 35635 14926 49823 Face 51439 1907 25723 14249 Face 51440 1907 25721 25723 Face 51441 25722 25723 25721 Face 51442 25722 14249 25723 Face 51443 32747 25724 22303 Face 51444 13817 35292 25724 Face 51445 4502 25725 18902 Face 51446 4502 26858 25725 Face 51447 11470 25726 33003 Face 51448 11470 17040 46451 Face 51449 6271 25727 18216 Face 51450 6271 33227 49708 Face 51451 25729 25728 22481 Face 51452 25729 22223 25728 Face 51453 3856 25729 22482 Face 51454 33871 22223 25729 Face 51455 4553 25730 16451 Face 51456 4553 8380 25730 Face 51457 4882 25731 37915 Face 51458 4882 42892 25731 Face 51459 6480 25732 18797 Face 51460 33133 43176 25732 Face 51461 9931 25733 9932 Face 51462 9931 5863 25733 Face 51463 7928 25734 23573 Face 51464 7928 22243 25734 Face 51465 45792 25735 46151 Face 51466 1339 42654 25735 Face 51467 15412 25736 34607 Face 51468 15412 25323 25736 Face 51469 11147 44752 17544 Face 51470 11147 28050 25737 Face 51471 4735 43618 21762 Face 51472 31443 12777 43618 Face 51473 1437 25739 19742 Face 51474 33847 6449 25739 Face 51475 4858 45664 20270 Face 51476 4858 9055 25740 Face 51477 28629 47748 43727 Face 51478 6050 46139 47748 Face 51479 5221 25742 20270 Face 51480 36723 11372 25742 Face 51481 23153 33097 37950 Face 51482 23153 6327 25743 Face 51483 5116 25744 22983 Face 51484 5116 37080 25744 Face 51485 7793 25745 39643 Face 51486 7793 29466 25745 Face 51487 3591 25746 49098 Face 51488 3591 24363 25746 Face 51489 10041 25747 4088 Face 51490 10041 17785 47205 Face 51491 4115 25748 26013 Face 51492 4115 31518 25748 Face 51493 10680 25749 41517 Face 51494 10680 31767 25749 Face 51495 765 25750 7875 Face 51496 765 19407 25750 Face 51497 36429 48941 35491 Face 51498 36430 23706 25751 Face 51499 30781 25752 31757 Face 51500 299 24653 25752 Face 51501 12545 25753 21872 Face 51502 12545 32291 25753 Face 51503 5249 25754 31401 Face 51504 5249 3032 25754 Face 51505 12709 25755 17285 Face 51506 12709 2907 25755 Face 51507 1395 35502 20128 Face 51508 36868 21750 25756 Face 51509 8277 25757 4491 Face 51510 8277 29225 25757 Face 51511 604 49766 18063 Face 51512 604 9457 49766 Face 51513 41308 25759 39746 Face 51514 2586 30277 25759 Face 51515 1908 25760 31794 Face 51516 1908 24144 25760 Face 51517 47593 25761 16503 Face 51518 42942 12869 25761 Face 51519 2269 25762 11095 Face 51520 41365 6183 25762 Face 51521 44052 25763 35438 Face 51522 32612 40499 25763 Face 51523 13389 25764 15735 Face 51524 13389 42533 25764 Face 51525 610 25765 15235 Face 51526 610 17202 25765 Face 51527 906 25766 30792 Face 51528 906 4071 25766 Face 51529 37617 25767 9488 Face 51530 2274 31059 25767 Face 51531 170 25768 18781 Face 51532 170 18818 25768 Face 51533 10931 25769 24827 Face 51534 36728 9248 25769 Face 51535 12261 25770 42256 Face 51536 12261 28628 35899 Face 51537 18862 25771 28131 Face 51538 18862 11322 25771 Face 51539 43752 25772 6039 Face 51540 14693 14692 25772 Face 51541 4708 25773 42905 Face 51542 4708 16624 25773 Face 51543 1286 25774 17578 Face 51544 48594 2035 25774 Face 51545 13538 25775 15771 Face 51546 30841 15770 25775 Face 51547 7622 25776 18600 Face 51548 7622 38146 25776 Face 51549 32373 25777 2322 Face 51550 43144 23182 25777 Face 51551 4147 25778 40572 Face 51552 4147 4146 25778 Face 51553 40551 25779 32028 Face 51554 43537 16521 25779 Face 51555 6424 25780 12675 Face 51556 6424 35159 25780 Face 51557 25782 25781 6813 Face 51558 17599 17600 25781 Face 51559 17599 25782 9982 Face 51560 17599 25781 25782 Face 51561 34639 25783 3512 Face 51562 14609 8521 25783 Face 51563 3075 25784 47259 Face 51564 3075 43938 25784 Face 51565 3558 25785 21000 Face 51566 3558 13141 25785 Face 51567 35303 25786 6602 Face 51568 2628 46256 25786 Face 51569 4728 25787 18711 Face 51570 4728 20820 25787 Face 51571 12326 25788 17016 Face 51572 12326 21447 25788 Face 51573 10034 25789 39820 Face 51574 10034 15602 25789 Face 51575 367 25790 17230 Face 51576 367 19657 25790 Face 51577 29017 25791 7165 Face 51578 29017 43989 25791 Face 51579 31372 25792 21222 Face 51580 4412 19532 25792 Face 51581 7426 25793 18468 Face 51582 38636 23530 25793 Face 51583 25796 25794 13456 Face 51584 25795 35792 25794 Face 51585 25796 41894 25794 Face 51586 4470 14409 25795 Face 51587 4470 25796 42155 Face 51588 4470 41894 25796 Face 51589 24635 25797 17403 Face 51590 24635 10248 25797 Face 51591 4831 25798 10957 Face 51592 4831 32059 25798 Face 51593 15255 25799 5858 Face 51594 15255 42318 25799 Face 51595 14789 25800 25972 Face 51596 14789 3300 25800 Face 51597 14116 25801 14917 Face 51598 39962 17710 25801 Face 51599 17288 25802 22347 Face 51600 17288 13487 25802 Face 51601 9656 25803 8122 Face 51602 9656 43456 25803 Face 51603 14900 25804 17673 Face 51604 14900 41183 25804 Face 51605 9183 25805 44198 Face 51606 9183 20586 25805 Face 51607 9179 25806 42105 Face 51608 9179 20695 25806 Face 51609 40033 25807 28641 Face 51610 3998 22960 25807 Face 51611 14905 25808 23915 Face 51612 14905 2180 25808 Face 51613 12509 25809 24379 Face 51614 12509 41699 25809 Face 51615 8351 25810 32570 Face 51616 8351 28971 25810 Face 51617 3307 25811 29422 Face 51618 3307 13365 25811 Face 51619 6235 25812 10619 Face 51620 6235 34631 25812 Face 51621 5618 25813 15511 Face 51622 5618 10414 25813 Face 51623 6775 25814 47484 Face 51624 6775 39086 48310 Face 51625 9903 25815 3378 Face 51626 9903 7648 25815 Face 51627 4148 25816 48155 Face 51628 4148 35776 25816 Face 51629 40689 25817 951 Face 51630 10374 2861 25817 Face 51631 446 25818 23694 Face 51632 446 24032 25818 Face 51633 15019 25819 23955 Face 51634 34907 15171 25819 Face 51635 7090 25820 14405 Face 51636 7090 12756 25820 Face 51637 8066 25821 36999 Face 51638 29673 11832 25821 Face 51639 26057 25822 4399 Face 51640 10348 40027 25822 Face 51641 15085 25823 3490 Face 51642 15085 36658 25823 Face 51643 9188 25824 40769 Face 51644 9188 31948 25824 Face 51645 7389 25825 23387 Face 51646 7389 11839 25825 Face 51647 4819 25826 32746 Face 51648 48647 7936 25826 Face 51649 15683 25827 28527 Face 51650 15683 15684 25827 Face 51651 12056 25828 14608 Face 51652 12056 26030 25828 Face 51653 426 25829 30789 Face 51654 48817 20935 25829 Face 51655 37815 40573 10256 Face 51656 44602 32949 48734 Face 51657 9143 25831 20919 Face 51658 9143 25257 25831 Face 51659 5200 25832 16066 Face 51660 5200 47864 25832 Face 51661 8544 25833 22280 Face 51662 8544 34836 25833 Face 51663 1848 37825 15051 Face 51664 39890 33437 44662 Face 51665 99 25835 10222 Face 51666 99 16057 25835 Face 51667 3054 25836 9058 Face 51668 3054 10938 25836 Face 51669 25838 25837 8931 Face 51670 1121 6811 25837 Face 51671 1121 25838 12506 Face 51672 1121 25837 25838 Face 51673 33598 25839 27365 Face 51674 33598 26424 25839 Face 51675 20637 25840 49398 Face 51676 43612 10739 25840 Face 51677 25842 25841 16533 Face 51678 2605 29093 25841 Face 51679 2605 25842 9574 Face 51680 2605 25841 25842 Face 51681 25844 25843 7940 Face 51682 2189 31823 25843 Face 51683 2189 25844 23945 Face 51684 2189 25843 25844 Face 51685 14774 25845 7959 Face 51686 14774 8259 25845 Face 51687 41653 32492 12470 Face 51688 41654 14321 25846 Face 51689 14628 25847 5413 Face 51690 14628 37041 25847 Face 51691 12669 48091 22660 Face 51692 12669 39331 25848 Face 51693 41836 25849 14365 Face 51694 41836 18678 25849 Face 51695 9365 25850 16001 Face 51696 31339 15061 25850 Face 51697 15374 25851 35850 Face 51698 15374 24171 25851 Face 51699 18888 25852 19413 Face 51700 18888 22409 25852 Face 51701 8316 25853 22291 Face 51702 8316 16606 25853 Face 51703 3189 45773 23133 Face 51704 30918 25573 25854 Face 51705 6759 25855 10914 Face 51706 46114 31816 25855 Face 51707 7815 25856 18090 Face 51708 47654 21775 25856 Face 51709 12101 25857 40683 Face 51710 12101 25196 25857 Face 51711 30355 25858 38506 Face 51712 25859 3942 25858 Face 51713 5480 25859 25858 Face 51714 5480 33071 25859 Face 51715 15973 25860 7901 Face 51716 15973 15674 25860 Face 51717 43288 25861 22228 Face 51718 31258 13578 25861 Face 51719 13739 25862 12369 Face 51720 40766 20880 25862 Face 51721 7328 25863 10309 Face 51722 41649 11675 25863 Face 51723 12184 25864 1777 Face 51724 12184 16024 25864 Face 51725 12295 25865 33541 Face 51726 31281 4189 25865 Face 51727 10837 25866 16402 Face 51728 10837 43178 25866 Face 51729 8362 25867 37565 Face 51730 8362 29239 25867 Face 51731 970 25868 10470 Face 51732 33619 16368 25868 Face 51733 12926 25869 37453 Face 51734 12926 14307 25869 Face 51735 14550 25870 5404 Face 51736 14550 219 25870 Face 51737 28197 25871 25782 Face 51738 28197 27155 25871 Face 51739 2023 25872 18134 Face 51740 2023 24077 25872 Face 51741 49614 38546 14506 Face 51742 35126 16749 25873 Face 51743 4435 25874 34709 Face 51744 4435 21697 25874 Face 51745 24142 25875 12499 Face 51746 24142 18569 25875 Face 51747 19550 25876 19547 Face 51748 19550 19548 25876 Face 51749 15767 25877 34379 Face 51750 15767 29276 25877 Face 51751 29283 25878 23230 Face 51752 49618 62 25878 Face 51753 12523 25879 7974 Face 51754 12523 14487 25879 Face 51755 12980 25880 24 Face 51756 12980 12979 25880 Face 51757 3647 25881 19384 Face 51758 3647 43849 25881 Face 51759 34283 25882 1397 Face 51760 8280 9431 25882 Face 51761 27183 25883 9052 Face 51762 49584 16912 25883 Face 51763 12415 25884 11578 Face 51764 12415 710 25884 Face 51765 9299 25885 21135 Face 51766 49572 40856 25885 Face 51767 4403 25886 44416 Face 51768 47112 41463 25886 Face 51769 9187 25887 26881 Face 51770 9187 7163 25887 Face 51771 9676 25888 462 Face 51772 9676 35930 25888 Face 51773 284 25889 7709 Face 51774 284 35795 25889 Face 51775 25889 25890 24134 Face 51776 25889 35795 25890 Face 51777 25892 25891 24924 Face 51778 25892 20617 25891 Face 51779 33485 25892 24924 Face 51780 2702 20617 25892 Face 51781 45166 25893 20152 Face 51782 16905 35336 25893 Face 51783 14644 25894 18363 Face 51784 37692 49499 25894 Face 51785 22769 25895 48067 Face 51786 22769 43375 25895 Face 51787 8517 41594 47966 Face 51788 8517 20546 25896 Face 51789 6899 25897 2850 Face 51790 6899 20164 25897 Face 51791 40368 47391 26529 Face 51792 7960 23091 25898 Face 51793 37758 25899 805 Face 51794 37758 41947 25899 Face 51795 4989 25900 32103 Face 51796 4989 23645 25900 Face 51797 31573 25901 11274 Face 51798 31573 22231 25901 Face 51799 12544 25902 28390 Face 51800 12544 49445 25902 Face 51801 1716 25903 7995 Face 51802 1716 15700 46542 Face 51803 17623 25904 23350 Face 51804 17623 36018 25904 Face 51805 49884 25905 10636 Face 51806 13602 1650 25905 Face 51807 2572 25906 10019 Face 51808 2572 30342 25906 Face 51809 15468 25907 10441 Face 51810 15468 34979 25907 Face 51811 36900 25908 22362 Face 51812 1412 46265 25908 Face 51813 7863 25909 36024 Face 51814 7863 35879 25909 Face 51815 22555 25910 2973 Face 51816 22555 18566 25910 Face 51817 3746 25911 21408 Face 51818 3746 10422 25911 Face 51819 43663 25912 20388 Face 51820 38161 42576 26135 Face 51821 1551 25913 22588 Face 51822 1551 44998 25913 Face 51823 4457 25914 43563 Face 51824 4457 41344 25914 Face 51825 1861 25915 42308 Face 51826 1861 30153 25915 Face 51827 1861 25916 30153 Face 51828 1861 38168 25916 Face 51829 12689 25917 19062 Face 51830 12689 12688 25917 Face 51831 48369 25918 45896 Face 51832 48369 2657 25918 Face 51833 13166 25919 41490 Face 51834 13166 5280 25919 Face 51835 16705 25920 12635 Face 51836 16705 40193 25920 Face 51837 3425 25921 43402 Face 51838 3425 34304 25921 Face 51839 15749 25922 39364 Face 51840 15749 44126 25922 Face 51841 27353 25923 9793 Face 51842 25924 34575 39324 Face 51843 7062 25924 25923 Face 51844 41517 25749 25924 Face 51845 5923 25925 47136 Face 51846 5923 16440 25925 Face 51847 1681 25926 24537 Face 51848 1681 39829 25926 Face 51849 25928 25927 13677 Face 51850 42402 32344 25927 Face 51851 1501 25928 25074 Face 51852 42402 25927 25928 Face 51853 39904 25929 17278 Face 51854 39904 25713 25929 Face 51855 8820 25930 12064 Face 51856 39691 24424 25930 Face 51857 13869 25931 6498 Face 51858 13869 20046 25931 Face 51859 600 25932 5375 Face 51860 600 19648 25932 Face 51861 1025 25933 16370 Face 51862 1025 34920 25933 Face 51863 16263 25934 33100 Face 51864 16263 32790 38812 Face 51865 5624 25935 47272 Face 51866 43085 28831 25935 Face 51867 10700 25936 35427 Face 51868 10700 9812 25936 Face 51869 8257 49008 38805 Face 51870 8257 2587 25937 Face 51871 31350 48494 37408 Face 51872 31351 24864 25938 Face 51873 21359 25939 17891 Face 51874 21359 44091 25939 Face 51875 48557 25940 29799 Face 51876 48557 37031 25940 Face 51877 14311 25941 36711 Face 51878 14311 32388 25941 Face 51879 4005 25942 45659 Face 51880 4005 22862 25942 Face 51881 28963 25943 13634 Face 51882 151 9357 25943 Face 51883 66 25944 24493 Face 51884 66 15580 25944 Face 51885 39031 25945 7598 Face 51886 2214 3213 25945 Face 51887 42112 25946 22317 Face 51888 5111 11629 25946 Face 51889 11746 35212 3508 Face 51890 34585 49066 25947 Face 51891 557 25948 48911 Face 51892 557 18731 25948 Face 51893 8390 25949 48551 Face 51894 8390 35888 25949 Face 51895 1206 25950 30693 Face 51896 1206 25639 25950 Face 51897 13488 25951 21037 Face 51898 37027 14546 25951 Face 51899 31029 25952 18674 Face 51900 31029 29060 25952 Face 51901 34003 25953 8341 Face 51902 2959 18674 40869 Face 51903 41834 25954 8794 Face 51904 7470 3889 25954 Face 51905 14968 25955 22340 Face 51906 33388 2208 42298 Face 51907 28153 25956 10518 Face 51908 6686 6685 25956 Face 51909 30553 25957 10494 Face 51910 4701 48413 25957 Face 51911 7869 25958 41184 Face 51912 25959 7095 25958 Face 51913 7869 25959 25958 Face 51914 7869 39040 45656 Face 51915 9262 25960 41094 Face 51916 9262 45774 25960 Face 51917 4336 25961 33891 Face 51918 4336 15740 25961 Face 51919 7451 25962 16851 Face 51920 7451 3667 25962 Face 51921 7743 25963 24955 Face 51922 7743 42928 25963 Face 51923 37501 40647 27322 Face 51924 37501 46484 25964 Face 51925 46626 25965 20557 Face 51926 37501 46291 25965 Face 51927 43518 25966 35276 Face 51928 49300 3795 25966 Face 51929 10954 25967 13647 Face 51930 10954 30188 25967 Face 51931 14543 25968 31231 Face 51932 14543 19374 25968 Face 51933 10961 25969 38077 Face 51934 10961 42137 25969 Face 51935 12737 25970 12738 Face 51936 33067 7627 25970 Face 51937 18030 25971 13889 Face 51938 18030 35616 25971 Face 51939 41563 25972 25800 Face 51940 3285 16178 47866 Face 51941 48116 25973 16348 Face 51942 17301 40326 25973 Face 51943 10535 25974 10534 Face 51944 10535 5185 25974 Face 51945 16145 30232 2419 Face 51946 16145 29448 25975 Face 51947 8639 25976 20189 Face 51948 36879 18123 25976 Face 51949 7091 25977 47339 Face 51950 7091 26644 25977 Face 51951 28541 25978 30263 Face 51952 25979 39564 25978 Face 51953 3324 25979 25978 Face 51954 3324 27672 25979 Face 51955 6678 25980 15137 Face 51956 6678 362 25980 Face 51957 35708 25981 3299 Face 51958 32682 12784 25981 Face 51959 1424 25982 17319 Face 51960 1424 19334 25982 Face 51961 44596 25983 29666 Face 51962 44595 29 25983 Face 51963 28794 25984 46863 Face 51964 28794 22470 25984 Face 51965 47428 25985 15910 Face 51966 17642 22472 25985 Face 51967 6640 38446 38379 Face 51968 6640 34723 38446 Face 51969 34206 25987 33287 Face 51970 34206 41515 25987 Face 51971 385 25988 43109 Face 51972 385 46440 25988 Face 51973 385 25989 8443 Face 51974 385 3121 25989 Face 51975 18970 25990 31858 Face 51976 18970 33235 25990 Face 51977 12440 25991 47252 Face 51978 12440 30860 25991 Face 51979 33487 25992 23494 Face 51980 49949 47662 25992 Face 51981 1459 25993 33644 Face 51982 1459 49611 25993 Face 51983 44457 25994 3085 Face 51984 2288 21204 25994 Face 51985 1319 25995 15861 Face 51986 1319 38133 25995 Face 51987 6209 25996 15203 Face 51988 6209 12270 25996 Face 51989 6315 25997 13749 Face 51990 6315 30547 25997 Face 51991 6485 25998 19878 Face 51992 6485 13177 25998 Face 51993 46623 25999 13863 Face 51994 11980 36277 25999 Face 51995 11980 26000 3472 Face 51996 11980 25999 26000 Face 51997 1828 26001 34476 Face 51998 1828 10089 26001 Face 51999 28393 26002 29762 Face 52000 11157 15089 26002 Face 52001 4350 26003 37967 Face 52002 4350 35053 26003 Face 52003 8298 42204 15033 Face 52004 8298 29698 26004 Face 52005 42010 26005 20621 Face 52006 43560 23094 26005 Face 52007 20453 42010 29611 Face 52008 20453 26005 26006 Face 52009 6371 26007 32390 Face 52010 6371 28244 26007 Face 52011 6132 26008 39198 Face 52012 34117 8809 26008 Face 52013 34117 26009 42835 Face 52014 34484 713 26009 Face 52015 38157 26010 42991 Face 52016 12745 21653 26010 Face 52017 37428 26011 48479 Face 52018 29590 38235 26011 Face 52019 32148 26012 3531 Face 52020 5019 19481 26012 Face 52021 15462 26013 25748 Face 52022 15462 43142 26013 Face 52023 36244 26014 12819 Face 52024 49281 18624 26014 Face 52025 19065 26015 43815 Face 52026 19065 2130 26015 Face 52027 8866 26016 44841 Face 52028 8866 22119 26016 Face 52029 8278 26017 24895 Face 52030 8278 27531 26017 Face 52031 6534 26018 15689 Face 52032 6534 24925 37908 Face 52033 23601 26019 7293 Face 52034 23601 11526 26019 Face 52035 1722 26020 43790 Face 52036 1722 21291 26020 Face 52037 7464 26021 29945 Face 52038 7464 41551 26021 Face 52039 5154 26022 42076 Face 52040 5154 11543 26022 Face 52041 49624 26023 16065 Face 52042 6570 16291 26023 Face 52043 3280 26024 4166 Face 52044 3280 19077 26024 Face 52045 12267 26025 3587 Face 52046 12267 38567 26025 Face 52047 8123 26026 36948 Face 52048 34172 10037 26026 Face 52049 39818 26027 47504 Face 52050 39818 10354 26027 Face 52051 18777 26028 12486 Face 52052 18777 6776 26028 Face 52053 2641 26029 40450 Face 52054 39341 4907 26029 Face 52055 3786 26030 37713 Face 52056 3786 25828 26030 Face 52057 13216 26031 22804 Face 52058 13216 38199 26031 Face 52059 43573 26032 22451 Face 52060 43573 1448 26032 Face 52061 11186 26033 16924 Face 52062 11186 14176 26033 Face 52063 44834 26034 41501 Face 52064 26035 6555 26034 Face 52065 423 26035 26034 Face 52066 423 17568 26035 Face 52067 30326 26036 46390 Face 52068 4604 43805 26036 Face 52069 42505 26037 38913 Face 52070 39794 10867 26037 Face 52071 4796 26038 23559 Face 52072 37080 5116 26038 Face 52073 46631 26039 7502 Face 52074 4888 78 43736 Face 52075 3269 26040 21296 Face 52076 3269 41658 26040 Face 52077 1494 26041 24424 Face 52078 1494 45031 26041 Face 52079 48188 26042 12471 Face 52080 9498 21101 26042 Face 52081 3018 26043 42689 Face 52082 3018 16169 26043 Face 52083 15221 26044 29938 Face 52084 15221 25950 26044 Face 52085 12382 26045 16621 Face 52086 12382 21768 26045 Face 52087 12382 26046 7649 Face 52088 12382 48818 26046 Face 52089 20132 26047 23944 Face 52090 20132 1958 26047 Face 52091 6062 26048 20204 Face 52092 29965 49296 26048 Face 52093 42752 44401 11064 Face 52094 19666 40074 26049 Face 52095 21562 26050 47786 Face 52096 21562 1161 26050 Face 52097 5080 26051 17569 Face 52098 5080 5082 26051 Face 52099 7826 26052 8464 Face 52100 7826 29179 26052 Face 52101 15986 26053 11474 Face 52102 48482 24275 26053 Face 52103 6760 26054 15661 Face 52104 6760 28877 26054 Face 52105 26056 26055 6826 Face 52106 4590 38019 26055 Face 52107 4590 26056 753 Face 52108 4590 26055 26056 Face 52109 10348 26057 17770 Face 52110 10348 25822 26057 Face 52111 2261 38931 22815 Face 52112 2261 760 26058 Face 52113 3371 26059 46187 Face 52114 3371 43802 26059 Face 52115 2467 26060 21864 Face 52116 2467 41076 26060 Face 52117 9423 45549 29722 Face 52118 9423 43558 26061 Face 52119 8724 26062 43959 Face 52120 8724 42456 26062 Face 52121 26815 37673 45040 Face 52122 10070 45064 26063 Face 52123 5296 26064 43750 Face 52124 5296 1772 26064 Face 52125 13881 26065 40124 Face 52126 13881 15774 26065 Face 52127 4870 26066 30573 Face 52128 26827 4787 26066 Face 52129 14509 26067 21806 Face 52130 14509 28193 26067 Face 52131 17315 26068 39448 Face 52132 17315 41504 26068 Face 52133 4516 26069 863 Face 52134 36009 39848 26069 Face 52135 6174 26070 7805 Face 52136 6174 16474 26070 Face 52137 17188 43801 2688 Face 52138 17188 5489 43801 Face 52139 6594 26072 25034 Face 52140 6594 37319 26072 Face 52141 9655 26073 39138 Face 52142 9655 38092 26073 Face 52143 10351 26074 39095 Face 52144 10351 31269 26074 Face 52145 44607 26075 22323 Face 52146 683 37317 26075 Face 52147 7330 26076 12144 Face 52148 7330 23110 26076 Face 52149 3323 26077 24475 Face 52150 26078 21221 32058 Face 52151 3323 26078 32058 Face 52152 3323 8817 26078 Face 52153 1033 26079 41553 Face 52154 1033 3039 26079 Face 52155 26327 26080 44333 Face 52156 27362 41340 26080 Face 52157 38908 26081 46830 Face 52158 11921 13397 26081 Face 52159 35806 26082 25923 Face 52160 35806 41555 26082 Face 52161 42178 26083 24780 Face 52162 36569 9733 26083 Face 52163 14464 26084 157 Face 52164 14464 46339 26084 Face 52165 30478 26085 25064 Face 52166 7120 42726 44454 Face 52167 19471 26086 12174 Face 52168 19471 11689 26086 Face 52169 10519 36055 1744 Face 52170 38809 31967 26087 Face 52171 12133 45070 20017 Face 52172 12133 17558 26088 Face 52173 2186 26089 23547 Face 52174 2186 16654 26089 Face 52175 14442 26090 1549 Face 52176 14442 26921 26090 Face 52177 15527 26091 4741 Face 52178 46462 17287 26092 Face 52179 26091 26092 42695 Face 52180 26091 15527 26092 Face 52181 19993 26093 35370 Face 52182 19993 26903 26093 Face 52183 8090 44094 24780 Face 52184 46450 1427 26094 Face 52185 7707 26095 15889 Face 52186 34129 17841 43838 Face 52187 21498 26096 15842 Face 52188 21498 30038 26096 Face 52189 11994 26097 11992 Face 52190 11994 30209 26097 Face 52191 11060 26098 24373 Face 52192 11060 40437 26098 Face 52193 31397 38034 48712 Face 52194 49674 35644 26099 Face 52195 3176 26100 9445 Face 52196 3176 43765 26100 Face 52197 8813 26101 38313 Face 52198 8813 30465 26101 Face 52199 8650 26102 19386 Face 52200 8650 18961 26102 Face 52201 3688 26103 30964 Face 52202 3688 34253 26103 Face 52203 18361 26104 1536 Face 52204 18361 2522 26104 Face 52205 6645 26105 5945 Face 52206 6645 4069 26105 Face 52207 18507 26106 48619 Face 52208 18507 34073 26106 Face 52209 7963 26107 25495 Face 52210 7963 41521 26107 Face 52211 15420 26108 20005 Face 52212 15420 11636 26108 Face 52213 12305 26109 22996 Face 52214 12305 19434 26109 Face 52215 9292 26110 18360 Face 52216 9292 142 26110 Face 52217 2741 26111 20179 Face 52218 2741 14305 26111 Face 52219 13719 37296 18865 Face 52220 13719 11463 37296 Face 52221 2661 46126 37207 Face 52222 2661 10314 46126 Face 52223 2661 26114 10314 Face 52224 2661 49468 26114 Face 52225 5016 26115 20393 Face 52226 5016 24324 26115 Face 52227 16680 26116 35380 Face 52228 16680 22101 26116 Face 52229 5866 26117 23896 Face 52230 5866 13407 26117 Face 52231 13636 26118 33044 Face 52232 13636 19616 26118 Face 52233 7992 26119 39059 Face 52234 41150 31581 26119 Face 52235 26121 26120 49886 Face 52236 12590 1136 26120 Face 52237 12590 26121 20044 Face 52238 12590 26120 26121 Face 52239 1361 26122 43011 Face 52240 1361 40373 26122 Face 52241 5508 26123 32327 Face 52242 26124 18599 26123 Face 52243 5508 26124 26123 Face 52244 33455 44424 45059 Face 52245 1354 26125 2469 Face 52246 1354 31941 26125 Face 52247 16676 26126 9914 Face 52248 16676 39390 26126 Face 52249 7679 26127 13839 Face 52250 34303 15857 26127 Face 52251 4841 26128 7007 Face 52252 4841 14759 26128 Face 52253 26579 43075 2988 Face 52254 1026 15024 26129 Face 52255 3790 26130 38137 Face 52256 37359 33905 26130 Face 52257 26132 26131 38778 Face 52258 3080 4 26131 Face 52259 3080 26132 11900 Face 52260 3080 26131 26132 Face 52261 1762 26133 26316 Face 52262 1762 23253 33060 Face 52263 38651 45169 44338 Face 52264 7423 17399 26134 Face 52265 25912 26135 24541 Face 52266 25912 940 26135 Face 52267 10824 49995 35092 Face 52268 10824 20414 26136 Face 52269 22633 26137 12690 Face 52270 22633 26656 26137 Face 52271 37202 26138 16620 Face 52272 37202 32763 26138 Face 52273 26140 49838 13784 Face 52274 26140 23703 26139 Face 52275 3389 26140 13784 Face 52276 44390 23703 26140 Face 52277 10528 26141 34079 Face 52278 10528 1800 26141 Face 52279 45915 26142 12161 Face 52280 45915 33358 26142 Face 52281 1772 26143 10243 Face 52282 1772 29195 26143 Face 52283 3574 26144 12817 Face 52284 26145 25693 26144 Face 52285 3574 26145 26144 Face 52286 3574 36997 26145 Face 52287 5176 26146 38772 Face 52288 5176 36620 36825 Face 52289 1334 45043 8429 Face 52290 1334 21361 26147 Face 52291 5638 26148 987 Face 52292 5638 20220 26148 Face 52293 11014 26149 21645 Face 52294 11014 6940 26149 Face 52295 24730 26150 5190 Face 52296 24730 19342 26150 Face 52297 8527 46707 10366 Face 52298 8527 273 46707 Face 52299 44865 40714 38423 Face 52300 1132 6384 26152 Face 52301 4497 26153 38359 Face 52302 4497 29379 26153 Face 52303 19114 26154 21732 Face 52304 19114 13548 26154 Face 52305 1328 26155 25524 Face 52306 1328 23641 26155 Face 52307 25422 26156 32924 Face 52308 25422 29108 26156 Face 52309 602 26157 17858 Face 52310 602 41031 26157 Face 52311 5633 26158 18392 Face 52312 5633 23142 26158 Face 52313 17109 36050 29788 Face 52314 17109 43235 26159 Face 52315 6790 26160 6912 Face 52316 6790 10497 26160 Face 52317 5503 26161 42901 Face 52318 30691 11347 26161 Face 52319 6760 26162 13455 Face 52320 6760 15661 26162 Face 52321 6232 26163 36890 Face 52322 6232 31898 26163 Face 52323 14216 26164 1734 Face 52324 14216 12112 26164 Face 52325 35157 26165 3693 Face 52326 1558 34344 26165 Face 52327 6047 26166 19805 Face 52328 6047 9046 37767 Face 52329 45200 26167 21793 Face 52330 13084 4346 26167 Face 52331 6660 26168 44524 Face 52332 42746 48284 26168 Face 52333 39225 26169 654 Face 52334 13197 10884 26169 Face 52335 2379 26170 31784 Face 52336 2379 33683 26170 Face 52337 11652 26171 24322 Face 52338 11652 27349 26171 Face 52339 3417 26172 43220 Face 52340 3417 45168 26172 Face 52341 3417 26173 25852 Face 52342 3417 43220 26173 Face 52343 9927 38688 4856 Face 52344 9927 17079 26174 Face 52345 6516 45622 20519 Face 52346 34566 2919 26175 Face 52347 5216 26176 11483 Face 52348 5216 14359 26176 Face 52349 26178 26177 2460 Face 52350 15874 6506 26177 Face 52351 15874 26178 41839 Face 52352 15874 26177 26178 Face 52353 8228 26179 47696 Face 52354 8228 18932 26179 Face 52355 46303 41627 26517 Face 52356 46303 15113 26180 Face 52357 2436 26181 47143 Face 52358 2436 29342 26181 Face 52359 8222 26182 48100 Face 52360 8222 44418 26182 Face 52361 30074 26183 17293 Face 52362 9217 45469 44581 Face 52363 7910 26184 35149 Face 52364 7910 34042 41492 Face 52365 6717 26185 44110 Face 52366 6717 25476 26185 Face 52367 9481 26186 9482 Face 52368 35389 35628 26186 Face 52369 17418 26187 46110 Face 52370 17418 33532 26187 Face 52371 6607 26188 37187 Face 52372 6607 13796 26188 Face 52373 4596 26189 2785 Face 52374 4596 30588 26189 Face 52375 43258 26190 5403 Face 52376 9360 35364 26190 Face 52377 45756 26191 24072 Face 52378 6417 1083 26191 Face 52379 7302 26192 32106 Face 52380 7302 24401 46491 Face 52381 9872 26193 43634 Face 52382 9872 16612 26193 Face 52383 45876 26194 9284 Face 52384 35153 40300 26194 Face 52385 3495 26195 12924 Face 52386 3495 41077 26195 Face 52387 21252 26196 3901 Face 52388 21252 39640 26196 Face 52389 678 26197 16491 Face 52390 678 17125 26197 Face 52391 12134 26198 12876 Face 52392 47953 5439 26198 Face 52393 1248 26199 24108 Face 52394 1248 31953 26199 Face 52395 45574 26200 15727 Face 52396 2775 42280 26200 Face 52397 26202 26201 13973 Face 52398 26202 2640 26201 Face 52399 11600 26202 13973 Face 52400 32189 5446 26202 Face 52401 18323 26203 3026 Face 52402 18323 37717 26203 Face 52403 13422 49613 26966 Face 52404 13422 36710 26204 Face 52405 13010 26205 38930 Face 52406 13010 21 26205 Face 52407 20736 26206 6126 Face 52408 20736 21555 26206 Face 52409 11608 26207 25417 Face 52410 11608 42512 26207 Face 52411 9063 26208 10675 Face 52412 9063 42141 26208 Face 52413 8808 26209 40094 Face 52414 37846 16295 26209 Face 52415 2936 26210 30746 Face 52416 2936 36619 26210 Face 52417 103 26211 19263 Face 52418 103 11480 36485 Face 52419 19160 26212 32489 Face 52420 19160 1326 26212 Face 52421 6543 26213 27342 Face 52422 6543 15675 26213 Face 52423 17743 26214 36645 Face 52424 17743 44812 26214 Face 52425 41203 26215 16253 Face 52426 7946 4658 26215 Face 52427 47397 26216 17917 Face 52428 8391 575 26216 Face 52429 15494 26217 37157 Face 52430 15494 831 26217 Face 52431 11281 26218 4049 Face 52432 32762 688 26218 Face 52433 5012 26219 14236 Face 52434 42114 3938 26219 Face 52435 11412 26220 30224 Face 52436 11412 7712 26220 Face 52437 5750 26221 39863 Face 52438 5750 1022 26221 Face 52439 4559 26222 17066 Face 52440 4559 34663 26222 Face 52441 3487 26223 29430 Face 52442 28227 42919 26223 Face 52443 4648 26224 22174 Face 52444 4648 17083 26224 Face 52445 26226 26225 8485 Face 52446 2011 19869 45927 Face 52447 2011 26226 42108 Face 52448 2011 45927 26226 Face 52449 2617 26227 7591 Face 52450 45977 5077 26227 Face 52451 11800 26228 17229 Face 52452 11800 32839 26228 Face 52453 2638 26229 9613 Face 52454 2638 32246 26229 Face 52455 3759 26230 48595 Face 52456 3759 22903 26230 Face 52457 14767 26231 10341 Face 52458 28033 44699 26231 Face 52459 4877 26232 15598 Face 52460 4877 32285 26232 Face 52461 10351 26233 31269 Face 52462 10351 22420 26233 Face 52463 49780 26234 2795 Face 52464 4478 15938 26234 Face 52465 7999 43480 17068 Face 52466 26236 12604 26235 Face 52467 7999 26236 26235 Face 52468 46067 18248 26236 Face 52469 45785 39152 11581 Face 52470 839 46667 26237 Face 52471 4506 26238 12632 Face 52472 49971 841 26238 Face 52473 11588 26239 42635 Face 52474 11588 37989 26239 Face 52475 35550 26240 25914 Face 52476 10389 10390 26240 Face 52477 13321 26241 24186 Face 52478 13321 49319 26241 Face 52479 1848 26242 20293 Face 52480 1848 15051 26242 Face 52481 104 26243 43519 Face 52482 104 6412 26243 Face 52483 42867 26244 31121 Face 52484 26245 3141 49701 Face 52485 42867 26245 26244 Face 52486 7055 15398 26245 Face 52487 7016 26246 20325 Face 52488 7016 3022 26246 Face 52489 31020 26247 10843 Face 52490 31020 12634 26247 Face 52491 4284 26248 5192 Face 52492 33798 15512 26248 Face 52493 26250 26249 37544 Face 52494 4264 44335 26249 Face 52495 4264 26250 2848 Face 52496 4264 26249 26250 Face 52497 31944 26251 47127 Face 52498 26252 13385 26251 Face 52499 9056 26252 26251 Face 52500 9056 25935 26252 Face 52501 22764 26253 8470 Face 52502 22764 9975 26253 Face 52503 3951 26254 22463 Face 52504 3951 28421 26254 Face 52505 11733 26255 46723 Face 52506 11733 48094 26255 Face 52507 15053 26256 20246 Face 52508 36173 14406 26256 Face 52509 404 26257 9315 Face 52510 404 16828 26257 Face 52511 10921 26258 10021 Face 52512 10921 10919 26258 Face 52513 32927 26260 44293 Face 52514 17199 18548 26259 Face 52515 26259 26261 17199 Face 52516 26259 28428 26260 Face 52517 26260 26261 26259 Face 52518 26260 17199 26261 Face 52519 3632 26262 8850 Face 52520 3632 24993 26262 Face 52521 29399 26263 30050 Face 52522 10848 17400 46639 Face 52523 38490 45182 4144 Face 52524 17272 4715 26264 Face 52525 8694 26265 14353 Face 52526 45598 11731 26265 Face 52527 2500 47236 48562 Face 52528 38634 30702 26266 Face 52529 20928 43701 31262 Face 52530 20928 42057 26267 Face 52531 46388 26268 7176 Face 52532 43678 19003 26268 Face 52533 980 26269 27658 Face 52534 980 31290 26269 Face 52535 27210 26270 8802 Face 52536 12580 22438 26270 Face 52537 3229 26271 14699 Face 52538 43649 17972 26271 Face 52539 47886 26272 12351 Face 52540 8757 38071 26272 Face 52541 31935 26273 19727 Face 52542 31935 46481 26273 Face 52543 913 48134 13454 Face 52544 913 19567 26274 Face 52545 5236 40195 21685 Face 52546 5236 30483 40195 Face 52547 5236 26276 16943 Face 52548 5236 21685 26276 Face 52549 6963 26277 12489 Face 52550 32661 11414 26277 Face 52551 2002 26278 44365 Face 52552 2002 45371 26278 Face 52553 5009 26279 9586 Face 52554 29268 5576 26279 Face 52555 11649 26280 21407 Face 52556 11649 21322 26280 Face 52557 12126 26281 3773 Face 52558 12126 27113 26281 Face 52559 38692 26282 16467 Face 52560 33341 14504 26282 Face 52561 14752 26283 1232 Face 52562 14752 35869 26283 Face 52563 6596 26284 18034 Face 52564 6596 19896 26284 Face 52565 13156 26285 1909 Face 52566 13156 42540 26285 Face 52567 39523 26286 32961 Face 52568 9953 13735 26286 Face 52569 2957 26287 11071 Face 52570 2957 35999 26287 Face 52571 16161 26288 35021 Face 52572 39989 2659 26288 Face 52573 46923 26289 16335 Face 52574 15514 33157 26289 Face 52575 14707 26290 11116 Face 52576 14707 8280 26290 Face 52577 5794 26291 15632 Face 52578 5794 4922 26291 Face 52579 5794 26292 37788 Face 52580 5794 15632 42555 Face 52581 12596 26293 41097 Face 52582 12596 38312 26293 Face 52583 8128 26294 39258 Face 52584 8128 47559 26294 Face 52585 26894 42997 25128 Face 52586 6908 6909 26295 Face 52587 5921 26296 8147 Face 52588 5921 8815 26296 Face 52589 38092 26297 26073 Face 52590 10350 24014 26297 Face 52591 32538 26298 19385 Face 52592 6634 39841 48245 Face 52593 613 26299 24499 Face 52594 613 27027 26299 Face 52595 4175 26300 25789 Face 52596 29544 10960 26300 Face 52597 13604 26301 24622 Face 52598 42888 3765 48226 Face 52599 18249 26302 8307 Face 52600 18249 1337 26302 Face 52601 4892 26303 22355 Face 52602 4892 9926 26303 Face 52603 14252 26304 28916 Face 52604 14252 21421 26304 Face 52605 1985 26305 15149 Face 52606 1985 41007 45871 Face 52607 7810 26306 17367 Face 52608 42326 509 26306 Face 52609 42326 26307 17795 Face 52610 7810 10063 26307 Face 52611 3767 26308 25549 Face 52612 3767 17740 26308 Face 52613 33176 26309 14934 Face 52614 6506 24500 36790 Face 52615 6506 26310 678 Face 52616 6506 36790 26310 Face 52617 24975 26311 14064 Face 52618 24975 39961 26311 Face 52619 14535 26312 32324 Face 52620 14535 40206 26312 Face 52621 24409 26313 2520 Face 52622 29234 17135 26313 Face 52623 9256 26314 23507 Face 52624 9256 22119 26314 Face 52625 11368 26315 40712 Face 52626 11368 11369 26315 Face 52627 29855 26316 39077 Face 52628 49910 1762 26316 Face 52629 26318 26317 14590 Face 52630 6676 893 26317 Face 52631 6676 26318 47015 Face 52632 6676 26317 26318 Face 52633 991 26319 24530 Face 52634 991 33055 26319 Face 52635 10559 26320 42474 Face 52636 10559 2583 26320 Face 52637 34035 26321 5522 Face 52638 34035 11946 26321 Face 52639 18104 26322 20441 Face 52640 18104 15521 26322 Face 52641 9072 26323 35467 Face 52642 26324 25117 32910 Face 52643 9072 26324 26323 Face 52644 9072 26937 26324 Face 52645 11353 26325 49773 Face 52646 27706 30247 26325 Face 52647 3665 26326 8455 Face 52648 3665 16266 26326 Face 52649 26328 39886 13643 Face 52650 27362 26080 39886 Face 52651 26329 26328 7671 Face 52652 1406 39886 26328 Face 52653 1406 26329 14834 Face 52654 1406 26328 26329 Face 52655 46657 26330 19432 Face 52656 3705 14138 26330 Face 52657 1731 26331 5800 Face 52658 1731 30578 26331 Face 52659 8922 26332 5836 Face 52660 8922 30482 26332 Face 52661 7035 26333 17759 Face 52662 46982 13653 26333 Face 52663 3401 26334 44950 Face 52664 3401 36579 26334 Face 52665 13503 26335 10544 Face 52666 13503 33863 26335 Face 52667 4223 26336 24825 Face 52668 4223 38726 26336 Face 52669 9108 46316 48370 Face 52670 9108 37932 41315 Face 52671 26337 26338 39283 Face 52672 26337 44652 26338 Face 52673 3465 26339 49595 Face 52674 3465 15209 26339 Face 52675 9376 26340 3495 Face 52676 9376 19231 26340 Face 52677 2638 26341 20122 Face 52678 2638 47957 26341 Face 52679 31499 26342 22968 Face 52680 10770 36577 26342 Face 52681 13149 26343 41306 Face 52682 13149 29828 26343 Face 52683 1517 26344 18505 Face 52684 1517 33461 26344 Face 52685 7505 26345 48669 Face 52686 7505 36994 26345 Face 52687 44024 26346 30004 Face 52688 44024 33755 26346 Face 52689 49858 26347 19563 Face 52690 3269 21296 26347 Face 52691 16346 26348 48280 Face 52692 16346 11640 26348 Face 52693 3397 26349 3998 Face 52694 27668 22211 26349 Face 52695 9407 26350 34068 Face 52696 9407 6527 26350 Face 52697 10541 26351 36512 Face 52698 10541 49344 26351 Face 52699 8384 45310 40558 Face 52700 40624 1888 47878 Face 52701 7035 26353 13654 Face 52702 7035 27169 40082 Face 52703 7035 26354 26333 Face 52704 7035 13654 26354 Face 52705 4348 26355 43226 Face 52706 4348 22393 26355 Face 52707 35923 26356 37378 Face 52708 7559 5339 26356 Face 52709 5853 26357 24478 Face 52710 5853 14810 26357 Face 52711 15573 26358 15572 Face 52712 15573 9167 26358 Face 52713 39136 26359 7419 Face 52714 39136 20971 26359 Face 52715 30485 26360 4149 Face 52716 6537 12928 26360 Face 52717 15944 26361 33448 Face 52718 15944 14375 49332 Face 52719 7607 26362 48159 Face 52720 7607 29993 26362 Face 52721 1458 26363 28524 Face 52722 1458 39891 26363 Face 52723 15371 26364 33201 Face 52724 15371 658 26364 Face 52725 2899 26365 25850 Face 52726 2899 26609 26365 Face 52727 7265 26366 18982 Face 52728 7265 36879 26366 Face 52729 26608 34460 5675 Face 52730 9491 2191 26367 Face 52731 47406 33950 17434 Face 52732 30327 16640 33950 Face 52733 20194 26369 6714 Face 52734 20194 22403 26369 Face 52735 207 26370 18831 Face 52736 207 1526 26370 Face 52737 15010 26371 22527 Face 52738 15010 23301 26371 Face 52739 10860 26372 20366 Face 52740 10860 18154 26372 Face 52741 47929 26373 8874 Face 52742 1683 43725 26373 Face 52743 3685 26374 5054 Face 52744 3685 9496 26374 Face 52745 10264 26375 39530 Face 52746 10264 33243 26375 Face 52747 2649 26376 19612 Face 52748 2649 7123 26376 Face 52749 13277 26377 17938 Face 52750 13277 13278 26377 Face 52751 16959 26378 48425 Face 52752 48452 8560 26378 Face 52753 16850 26379 47948 Face 52754 16850 33194 26379 Face 52755 2024 26380 36349 Face 52756 2024 22602 26380 Face 52757 6904 39103 15181 Face 52758 6904 38242 26381 Face 52759 46670 26382 44906 Face 52760 5443 41968 26382 Face 52761 3011 26383 46920 Face 52762 3011 41909 26383 Face 52763 7207 26384 18619 Face 52764 7207 21378 26384 Face 52765 1285 26385 19724 Face 52766 1285 24750 26385 Face 52767 421 26386 23804 Face 52768 26387 35034 26386 Face 52769 421 26387 26386 Face 52770 421 26739 46888 Face 52771 40562 26388 10110 Face 52772 40562 27241 26388 Face 52773 36960 26389 12558 Face 52774 37666 45164 26389 Face 52775 47960 26390 10664 Face 52776 47960 36815 26390 Face 52777 8018 26391 32197 Face 52778 8018 47318 26391 Face 52779 20205 41435 16223 Face 52780 37002 14639 26392 Face 52781 730 35282 37132 Face 52782 39964 21322 26393 Face 52783 4294 26394 19604 Face 52784 4294 41295 26394 Face 52785 8155 26395 43137 Face 52786 8155 9487 26395 Face 52787 26397 26396 43036 Face 52788 46222 29903 26396 Face 52789 7103 26397 22446 Face 52790 7103 26396 26397 Face 52791 35967 26398 24013 Face 52792 19094 3388 26398 Face 52793 21210 26399 44004 Face 52794 21210 45282 26399 Face 52795 9804 26400 15816 Face 52796 9804 18843 26400 Face 52797 38800 26401 28660 Face 52798 13325 49229 26401 Face 52799 7983 26402 23776 Face 52800 7983 13479 31798 Face 52801 18790 26403 35578 Face 52802 18790 25123 26403 Face 52803 27321 26404 49290 Face 52804 5524 44245 26404 Face 52805 10587 26405 33875 Face 52806 10587 21930 26405 Face 52807 45294 26406 5745 Face 52808 45295 35545 26406 Face 52809 26406 26407 29322 Face 52810 26406 49190 26407 Face 52811 42606 26408 4287 Face 52812 14192 35179 26408 Face 52813 17021 26409 38341 Face 52814 17021 15037 26409 Face 52815 9363 26410 4640 Face 52816 9363 34380 26410 Face 52817 1797 26411 10669 Face 52818 1797 34282 26411 Face 52819 36800 26412 16895 Face 52820 26413 4571 26412 Face 52821 36800 26413 26412 Face 52822 71 19609 26413 Face 52823 45126 26414 18566 Face 52824 18567 14076 26414 Face 52825 15975 26415 1348 Face 52826 33749 21506 43854 Face 52827 17500 26416 23623 Face 52828 17500 6651 26416 Face 52829 17372 26417 23602 Face 52830 17372 4220 26417 Face 52831 2681 26418 20138 Face 52832 30718 23793 26418 Face 52833 1751 26419 10747 Face 52834 1751 16931 26419 Face 52835 30075 26420 25778 Face 52836 10602 23310 26420 Face 52837 32106 26421 48730 Face 52838 894 16041 26421 Face 52839 1310 26422 21871 Face 52840 1310 10276 26422 Face 52841 15346 26423 38482 Face 52842 15346 14059 26423 Face 52843 7037 26424 20592 Face 52844 7037 25839 26424 Face 52845 9432 36177 40623 Face 52846 30209 11994 36177 Face 52847 9432 26426 11993 Face 52848 9432 35789 26426 Face 52849 861 26427 15983 Face 52850 861 39550 26427 Face 52851 22025 26428 24236 Face 52852 22025 15840 26428 Face 52853 1045 26429 8367 Face 52854 1045 18092 26429 Face 52855 9246 26430 23806 Face 52856 9246 3182 26430 Face 52857 8406 26431 38772 Face 52858 38804 45562 26431 Face 52859 6143 26432 3199 Face 52860 6143 40049 26432 Face 52861 10963 26433 15157 Face 52862 10963 22573 26433 Face 52863 12539 26434 18157 Face 52864 12539 20014 26434 Face 52865 28650 26435 25629 Face 52866 8291 41686 26435 Face 52867 45184 26436 18564 Face 52868 3081 31142 26436 Face 52869 44622 26437 9623 Face 52870 45184 26392 26437 Face 52871 2310 48689 2116 Face 52872 2310 10683 41352 Face 52873 16158 26439 16157 Face 52874 26440 8241 26439 Face 52875 16158 26440 26439 Face 52876 47546 8241 26440 Face 52877 26442 26441 3885 Face 52878 5763 12337 40498 Face 52879 45569 26442 30898 Face 52880 45569 26441 26442 Face 52881 40055 26443 36752 Face 52882 8628 17345 26443 Face 52883 26682 45868 4668 Face 52884 26681 5511 41489 Face 52885 12829 26445 606 Face 52886 12829 3279 26445 Face 52887 7440 26446 10668 Face 52888 7440 17312 26446 Face 52889 4347 26447 11541 Face 52890 4347 32183 26447 Face 52891 5467 26448 27731 Face 52892 5467 36996 26448 Face 52893 13279 26449 4157 Face 52894 29064 18132 26449 Face 52895 7920 26450 42963 Face 52896 7920 35223 26450 Face 52897 5562 26451 9525 Face 52898 5562 12879 26451 Face 52899 49499 46929 19626 Face 52900 7373 30654 41331 Face 52901 1050 26453 36954 Face 52902 1050 16873 37865 Face 52903 4444 26454 35950 Face 52904 4444 17969 26454 Face 52905 32054 26455 40851 Face 52906 1303 8680 37287 Face 52907 37562 26456 36264 Face 52908 26457 8982 26456 Face 52909 9541 26457 26456 Face 52910 9541 4192 41712 Face 52911 12111 26458 37086 Face 52912 38724 36866 26458 Face 52913 42429 26459 20448 Face 52914 26460 41430 26459 Face 52915 11047 26460 26459 Face 52916 40270 31985 26460 Face 52917 4927 26461 34853 Face 52918 29106 2570 38471 Face 52919 11992 26462 11994 Face 52920 11992 21110 26462 Face 52921 13169 26463 20503 Face 52922 49208 26595 26463 Face 52923 13524 26464 38910 Face 52924 13524 24987 26464 Face 52925 2354 26465 40184 Face 52926 39493 7254 26465 Face 52927 40229 26466 8578 Face 52928 429 34162 26466 Face 52929 2527 26467 39700 Face 52930 2527 36956 26467 Face 52931 21191 26468 41324 Face 52932 21191 27376 26468 Face 52933 26470 26469 32638 Face 52934 26470 34492 26469 Face 52935 10322 26470 32638 Face 52936 10322 34492 26470 Face 52937 13683 26471 18923 Face 52938 13683 37035 26471 Face 52939 12149 26472 48889 Face 52940 12149 16865 26472 Face 52941 46098 26473 25182 Face 52942 39192 6974 26473 Face 52943 4891 26474 10460 Face 52944 4891 5551 26474 Face 52945 6094 48920 31294 Face 52946 26477 16349 26475 Face 52947 2534 26476 16947 Face 52948 2534 21230 26476 Face 52949 6094 26477 26475 Face 52950 6094 48001 26477 Face 52951 49986 26478 12160 Face 52952 16730 35657 26478 Face 52953 11976 26479 7209 Face 52954 11976 12166 26479 Face 52955 30797 26480 8725 Face 52956 12191 39096 26480 Face 52957 12933 26481 12932 Face 52958 12933 37505 26481 Face 52959 15267 26482 24055 Face 52960 15267 35177 26482 Face 52961 4828 26483 19900 Face 52962 33945 8999 26483 Face 52963 14 26484 8462 Face 52964 37718 21550 26484 Face 52965 48238 26485 1580 Face 52966 7242 25218 29905 Face 52967 11180 26486 47544 Face 52968 11180 868 26486 Face 52969 1782 26487 44352 Face 52970 1782 37712 26487 Face 52971 1891 26488 46930 Face 52972 1891 29026 26488 Face 52973 13701 26489 13981 Face 52974 13701 3592 26489 Face 52975 48573 26490 4505 Face 52976 10852 22597 26490 Face 52977 26492 26491 49568 Face 52978 32223 1789 26491 Face 52979 5182 26492 6552 Face 52980 32223 26491 26492 Face 52981 8540 26493 40043 Face 52982 8540 3504 26493 Face 52983 6814 26494 17479 Face 52984 6814 22605 26494 Face 52985 8508 26495 17495 Face 52986 8508 41582 26495 Face 52987 16589 26496 47426 Face 52988 40462 24837 26496 Face 52989 29790 26497 18575 Face 52990 29790 33342 26497 Face 52991 1796 26498 35459 Face 52992 1796 6229 26498 Face 52993 5672 26499 42807 Face 52994 41946 32499 26499 Face 52995 40085 26500 47467 Face 52996 27817 3620 26500 Face 52997 31182 26501 13994 Face 52998 4173 15994 26501 Face 52999 3678 26502 19347 Face 53000 29336 47350 26502 Face 53001 23802 26503 3588 Face 53002 23802 21376 26503 Face 53003 26505 26504 45841 Face 53004 31184 7379 26504 Face 53005 2339 33595 2783 Face 53006 31184 26504 26505 Face 53007 2618 26506 34181 Face 53008 2618 9916 26506 Face 53009 18195 26507 20634 Face 53010 18195 46876 26507 Face 53011 9281 26508 36440 Face 53012 9281 25234 43039 Face 53013 22267 26509 18615 Face 53014 22267 23629 26509 Face 53015 28339 38834 2429 Face 53016 3883 15266 26510 Face 53017 15140 41568 46105 Face 53018 15140 2086 26511 Face 53019 36161 26512 7132 Face 53020 4443 48239 26512 Face 53021 6348 26513 38367 Face 53022 6348 42108 26513 Face 53023 4924 26514 26860 Face 53024 4924 38743 26514 Face 53025 17042 26515 20706 Face 53026 17042 41753 26515 Face 53027 3137 26516 24220 Face 53028 3137 30717 26516 Face 53029 12355 26517 41627 Face 53030 26518 4744 26517 Face 53031 12355 26518 26517 Face 53032 27885 47613 26518 Face 53033 4953 26519 44498 Face 53034 4953 46010 26519 Face 53035 33026 37247 19689 Face 53036 26521 5080 26520 Face 53037 286 26521 26520 Face 53038 286 23949 26521 Face 53039 4660 26522 14088 Face 53040 4660 7720 26522 Face 53041 26524 26523 16585 Face 53042 909 9443 26523 Face 53043 909 27974 14484 Face 53044 909 26523 27975 Face 53045 19521 26525 12609 Face 53046 19521 43232 26525 Face 53047 169 43349 43961 Face 53048 30728 44037 26526 Face 53049 8084 26527 18931 Face 53050 8084 27431 26527 Face 53051 38375 43494 2512 Face 53052 11183 32079 26528 Face 53053 13097 26529 38489 Face 53054 13097 19437 26529 Face 53055 14966 26530 4019 Face 53056 14966 43234 26530 Face 53057 26677 37475 6508 Face 53058 3616 5947 26531 Face 53059 20499 26532 13997 Face 53060 20499 29126 26532 Face 53061 2568 26533 36127 Face 53062 42295 11291 26533 Face 53063 22881 26534 243 Face 53064 22881 40342 26534 Face 53065 36178 26535 14803 Face 53066 287 9104 26535 Face 53067 8359 26536 21943 Face 53068 8359 39508 26536 Face 53069 10370 26537 23980 Face 53070 26538 16029 26537 Face 53071 10370 26538 26537 Face 53072 26793 2432 26538 Face 53073 45095 26539 15859 Face 53074 384 32108 26539 Face 53075 17108 26540 2976 Face 53076 17108 20575 26540 Face 53077 7613 26541 41194 Face 53078 7613 28020 26541 Face 53079 2807 26543 14535 Face 53080 45616 20491 26542 Face 53081 26542 26543 2807 Face 53082 26542 14535 26543 Face 53083 44108 26544 20699 Face 53084 44108 43890 26544 Face 53085 14231 26545 22849 Face 53086 14231 26927 26545 Face 53087 2346 26546 9466 Face 53088 35362 26362 26546 Face 53089 12727 26547 43660 Face 53090 27841 10507 26547 Face 53091 26549 26548 33466 Face 53092 1444 14087 26548 Face 53093 33107 26549 7765 Face 53094 1444 26548 26549 Face 53095 16349 26550 49946 Face 53096 16349 46800 26550 Face 53097 42365 26551 22005 Face 53098 12730 26498 26551 Face 53099 9738 26552 46544 Face 53100 9738 20127 26552 Face 53101 2524 26553 39712 Face 53102 2524 46013 26553 Face 53103 11601 26554 18595 Face 53104 39087 2074 41675 Face 53105 16429 26555 32865 Face 53106 16429 11558 26555 Face 53107 5328 26556 39447 Face 53108 5328 34781 43956 Face 53109 15340 26557 38528 Face 53110 15340 42297 26557 Face 53111 39878 26558 47781 Face 53112 27430 5348 26558 Face 53113 38853 26559 7348 Face 53114 4917 11619 26559 Face 53115 8269 44207 15262 Face 53116 8269 33640 44207 Face 53117 441 26561 19526 Face 53118 441 11909 26561 Face 53119 14481 48830 43158 Face 53120 14481 25270 26562 Face 53121 32995 26563 5250 Face 53122 15528 17294 26563 Face 53123 2478 47026 23867 Face 53124 2478 36027 26564 Face 53125 424 38598 7699 Face 53126 424 25108 26565 Face 53127 7439 26566 17690 Face 53128 7439 22113 26566 Face 53129 648 26567 15824 Face 53130 648 32648 26567 Face 53131 5341 26568 18678 Face 53132 48120 3906 46133 Face 53133 13281 26569 1280 Face 53134 41966 49149 26569 Face 53135 4928 26570 35312 Face 53136 4928 9371 26570 Face 53137 13819 26571 4489 Face 53138 13819 24980 26571 Face 53139 27986 26572 6732 Face 53140 17517 3070 26572 Face 53141 33693 26573 36708 Face 53142 30115 45793 26573 Face 53143 17401 26574 36197 Face 53144 17401 11149 26574 Face 53145 11445 26575 35788 Face 53146 11445 23823 26575 Face 53147 34415 26576 37012 Face 53148 31187 687 26576 Face 53149 7243 26577 17010 Face 53150 7243 18773 26577 Face 53151 314 26578 7580 Face 53152 314 16958 26578 Face 53153 30616 26579 24058 Face 53154 1026 26129 26579 Face 53155 29350 26580 34437 Face 53156 29350 33802 26580 Face 53157 29121 26581 7149 Face 53158 3143 19557 26581 Face 53159 17182 26582 25171 Face 53160 17182 30387 26582 Face 53161 4905 26583 15350 Face 53162 4905 45128 26583 Face 53163 36968 26584 11339 Face 53164 3749 16173 40596 Face 53165 554 26585 19677 Face 53166 37451 19992 26585 Face 53167 5623 26586 10821 Face 53168 5623 34451 26586 Face 53169 11252 26587 3154 Face 53170 11252 38744 26587 Face 53171 20331 26588 9022 Face 53172 20331 17373 26588 Face 53173 3614 26589 44629 Face 53174 39726 15960 26589 Face 53175 14595 26590 29839 Face 53176 14595 42786 26590 Face 53177 14814 26591 20624 Face 53178 14814 45074 26591 Face 53179 4520 26592 15970 Face 53180 29605 11794 26592 Face 53181 17573 26593 40525 Face 53182 17573 37241 26593 Face 53183 5763 26594 13451 Face 53184 5763 11470 26594 Face 53185 11959 26595 24406 Face 53186 11959 26463 26595 Face 53187 3225 26596 18690 Face 53188 40985 18226 26596 Face 53189 3713 26597 11813 Face 53190 3713 29644 26597 Face 53191 40284 26598 36578 Face 53192 7174 14004 26598 Face 53193 18058 26599 25320 Face 53194 18058 21929 26599 Face 53195 2750 26600 14161 Face 53196 2750 25873 26600 Face 53197 531 26601 48059 Face 53198 37929 17155 26601 Face 53199 2851 26602 41498 Face 53200 36701 22007 26602 Face 53201 5442 26603 23924 Face 53202 26604 30452 26603 Face 53203 5442 26604 26603 Face 53204 26605 44044 26604 Face 53205 5442 26605 26604 Face 53206 5442 1627 26605 Face 53207 3491 26606 24033 Face 53208 34416 31403 26606 Face 53209 394 26607 11245 Face 53210 394 11596 26607 Face 53211 9491 26608 36955 Face 53212 9491 34460 26608 Face 53213 8518 26609 24686 Face 53214 8518 26365 26609 Face 53215 5526 26610 19865 Face 53216 40069 37846 26610 Face 53217 9462 26611 29083 Face 53218 47717 27393 26611 Face 53219 3338 26612 12878 Face 53220 3338 45356 26612 Face 53221 43307 26613 16476 Face 53222 3722 34293 26613 Face 53223 10533 40673 23062 Face 53224 10533 34844 26614 Face 53225 11983 26615 3721 Face 53226 11983 41021 26615 Face 53227 6962 26616 32281 Face 53228 6962 14075 26616 Face 53229 11018 26617 4560 Face 53230 27502 6399 32504 Face 53231 43882 26618 814 Face 53232 11650 32165 26618 Face 53233 13270 26619 4339 Face 53234 13270 24825 26619 Face 53235 26678 34900 6015 Face 53236 2546 32960 26620 Face 53237 36455 48265 14516 Face 53238 44459 38867 49988 Face 53239 17138 26622 40852 Face 53240 17138 7365 26622 Face 53241 18176 26623 8724 Face 53242 18176 34280 26623 Face 53243 16521 26624 42392 Face 53244 16521 43537 26624 Face 53245 36354 26625 29250 Face 53246 26626 4525 26625 Face 53247 36354 26626 26625 Face 53248 5217 3203 26626 Face 53249 11950 26627 41102 Face 53250 11950 49764 26627 Face 53251 26627 26628 41102 Face 53252 26627 4316 26628 Face 53253 32393 26629 6605 Face 53254 22112 10820 26629 Face 53255 8080 26630 40458 Face 53256 8080 23824 26630 Face 53257 3926 26631 10703 Face 53258 3926 18073 26631 Face 53259 3926 26632 10704 Face 53260 3926 15067 26632 Face 53261 9336 26633 47855 Face 53262 9336 10620 26633 Face 53263 8184 26634 30756 Face 53264 47125 8185 26634 Face 53265 19575 26635 29269 Face 53266 19575 4448 26635 Face 53267 257 26636 10783 Face 53268 257 44045 26636 Face 53269 47040 26637 28294 Face 53270 1012 19996 26637 Face 53271 5495 26638 1352 Face 53272 5495 7925 48204 Face 53273 9936 26639 44860 Face 53274 9936 24633 26639 Face 53275 10104 26640 7315 Face 53276 10104 22448 26640 Face 53277 7006 26641 45800 Face 53278 7006 36885 26641 Face 53279 1929 26642 24859 Face 53280 1929 7063 26642 Face 53281 30990 26643 43457 Face 53282 552 40095 26643 Face 53283 1668 26644 19063 Face 53284 1668 25977 26644 Face 53285 2376 26645 22719 Face 53286 2376 47186 26645 Face 53287 11056 26646 49753 Face 53288 11056 43632 26646 Face 53289 12315 26647 18510 Face 53290 12315 6618 26647 Face 53291 4146 26648 25778 Face 53292 4146 13648 26648 Face 53293 9683 26649 25051 Face 53294 9683 7487 26649 Face 53295 38968 26650 31352 Face 53296 2115 32336 26650 Face 53297 5990 26651 23259 Face 53298 5990 44314 26651 Face 53299 4020 26652 33107 Face 53300 4020 26653 26652 Face 53301 16620 26653 29151 Face 53302 35240 26652 26653 Face 53303 18639 26654 7512 Face 53304 18639 36102 26654 Face 53305 23956 26655 10179 Face 53306 23956 45209 26655 Face 53307 30718 26656 9148 Face 53308 2681 26137 26656 Face 53309 6582 26657 15334 Face 53310 6582 7690 26657 Face 53311 30282 26658 10434 Face 53312 3126 31237 26658 Face 53313 28006 26659 39784 Face 53314 36976 22497 26659 Face 53315 3823 26660 42825 Face 53316 26661 18064 26660 Face 53317 3823 26661 26660 Face 53318 3823 20552 26661 Face 53319 7122 26662 24496 Face 53320 7122 47666 26662 Face 53321 1925 26663 28675 Face 53322 1925 12158 26663 Face 53323 4034 26664 12864 Face 53324 4034 19709 26664 Face 53325 8276 26665 12080 Face 53326 8276 16388 26665 Face 53327 3035 26666 12900 Face 53328 3035 14460 26666 Face 53329 13155 26667 10280 Face 53330 13155 11208 26667 Face 53331 7487 26668 26649 Face 53332 7487 15816 26668 Face 53333 1819 26669 47558 Face 53334 48764 11735 26669 Face 53335 11390 26670 7363 Face 53336 11390 25071 26670 Face 53337 14820 26671 29136 Face 53338 14820 23106 26671 Face 53339 7658 26672 24845 Face 53340 7658 21564 26672 Face 53341 6927 26673 6562 Face 53342 6927 41559 26673 Face 53343 42516 26674 30960 Face 53344 42516 30613 26674 Face 53345 4672 26675 23948 Face 53346 4672 15114 26675 Face 53347 33302 26676 10908 Face 53348 710 25602 26676 Face 53349 36236 26677 33667 Face 53350 36236 37475 26677 Face 53351 2546 26678 21109 Face 53352 2546 34900 26678 Face 53353 8312 26679 15439 Face 53354 39578 6481 26679 Face 53355 26681 26680 40973 Face 53356 46119 35677 26680 Face 53357 26683 26681 41489 Face 53358 26683 26680 26681 Face 53359 46119 26682 20769 Face 53360 7017 26444 26682 Face 53361 7017 26683 41489 Face 53362 7017 26680 26683 Face 53363 6344 26684 21235 Face 53364 37978 2018 26684 Face 53365 10802 26685 40047 Face 53366 10802 21 26685 Face 53367 41532 26686 1928 Face 53368 4546 25437 26686 Face 53369 23852 26687 35781 Face 53370 23852 2091 26687 Face 53371 3605 26688 17656 Face 53372 3605 6799 26688 Face 53373 978 26689 31855 Face 53374 978 11031 26689 Face 53375 19010 26690 38357 Face 53376 19010 15368 26690 Face 53377 7246 38454 17575 Face 53378 7246 7245 26691 Face 53379 2973 26692 17666 Face 53380 2973 25910 26692 Face 53381 9664 26693 18183 Face 53382 9664 15919 26693 Face 53383 18604 26694 9749 Face 53384 18604 1765 45293 Face 53385 41986 26695 23279 Face 53386 26696 30392 26695 Face 53387 4243 26696 26695 Face 53388 4243 8100 26696 Face 53389 13523 26697 2106 Face 53390 13523 18819 26697 Face 53391 11752 39361 25159 Face 53392 11752 39562 39362 Face 53393 9349 26699 19107 Face 53394 9349 48125 26699 Face 53395 20831 26700 35856 Face 53396 20831 22154 26700 Face 53397 2265 26701 45433 Face 53398 2265 11075 26701 Face 53399 357 26702 6206 Face 53400 357 43289 26702 Face 53401 17241 26703 2830 Face 53402 38389 47458 45084 Face 53403 19849 26704 45273 Face 53404 19849 23752 26704 Face 53405 3766 26705 39985 Face 53406 32811 40427 26706 Face 53407 26705 43418 31731 Face 53408 26705 3766 26706 Face 53409 15814 26707 13037 Face 53410 15814 45002 26707 Face 53411 15235 26708 34797 Face 53412 15235 45076 26708 Face 53413 27893 26709 10500 Face 53414 10789 21055 26709 Face 53415 8937 26710 16493 Face 53416 38485 13903 26710 Face 53417 16859 26711 23288 Face 53418 16859 43960 26711 Face 53419 425 26712 4547 Face 53420 425 31555 26712 Face 53421 27430 26713 8308 Face 53422 4645 17792 26713 Face 53423 2083 26714 13546 Face 53424 33721 40150 26714 Face 53425 30837 26715 40962 Face 53426 28676 4672 26715 Face 53427 15990 26716 21636 Face 53428 15990 23013 26716 Face 53429 7717 26717 11924 Face 53430 7717 819 26717 Face 53431 525 26718 41361 Face 53432 525 3048 26718 Face 53433 32536 26719 13357 Face 53434 15717 23037 26719 Face 53435 13191 26720 31826 Face 53436 13191 11450 26720 Face 53437 4267 26721 40968 Face 53438 4267 21780 26721 Face 53439 15892 26722 7899 Face 53440 15892 7900 26722 Face 53441 2319 38842 15727 Face 53442 38194 17901 38842 Face 53443 35383 32541 19831 Face 53444 30298 49363 32541 Face 53445 2577 26725 10600 Face 53446 2577 23041 26725 Face 53447 18710 26726 23615 Face 53448 18710 27197 26726 Face 53449 4809 26727 18621 Face 53450 4809 37792 26727 Face 53451 2358 43199 6402 Face 53452 2358 39296 26728 Face 53453 11735 26729 29984 Face 53454 11735 34281 26729 Face 53455 6917 26730 29122 Face 53456 6917 41038 26730 Face 53457 17924 26731 12898 Face 53458 17924 2093 26731 Face 53459 6619 26732 21417 Face 53460 39740 13595 26732 Face 53461 16005 26733 39709 Face 53462 16005 22208 26733 Face 53463 12343 26734 23465 Face 53464 12343 5304 26734 Face 53465 9312 26735 40370 Face 53466 9312 42792 26735 Face 53467 48705 26736 16633 Face 53468 6654 29228 26736 Face 53469 9976 26737 13850 Face 53470 9976 20787 26737 Face 53471 15298 26738 8819 Face 53472 15298 13172 26738 Face 53473 49738 26739 421 Face 53474 35803 30073 26739 Face 53475 26741 34780 37146 Face 53476 38303 18817 26740 Face 53477 2835 26741 22014 Face 53478 2835 34780 26741 Face 53479 23372 26742 41784 Face 53480 23372 13658 26742 Face 53481 5054 26743 19292 Face 53482 5054 32523 26743 Face 53483 43601 26744 11076 Face 53484 26745 41272 26744 Face 53485 1768 26745 26744 Face 53486 1768 24355 26745 Face 53487 32866 26746 46146 Face 53488 4262 15776 43469 Face 53489 4458 40258 20980 Face 53490 4458 47269 26747 Face 53491 35411 26748 19369 Face 53492 49025 42405 26748 Face 53493 13458 26749 49914 Face 53494 13458 26750 26749 Face 53495 17116 26750 8685 Face 53496 17116 26749 26750 Face 53497 49076 43057 32012 Face 53498 1066 6880 26751 Face 53499 1066 26752 14667 Face 53500 1066 43057 49077 Face 53501 6134 26753 25602 Face 53502 6134 44437 26753 Face 53503 45129 26754 28445 Face 53504 4066 42864 26754 Face 53505 2708 26755 33269 Face 53506 26756 7717 42649 Face 53507 2708 26756 26755 Face 53508 2708 23385 26756 Face 53509 11611 26757 42179 Face 53510 11611 2920 26757 Face 53511 14957 26758 15817 Face 53512 14957 23701 26758 Face 53513 18729 45470 5368 Face 53514 18729 46984 45470 Face 53515 8390 26760 30938 Face 53516 8390 2151 26760 Face 53517 6531 39608 43639 Face 53518 6531 28876 39608 Face 53519 26763 26762 12838 Face 53520 4232 27052 26762 Face 53521 4232 26763 8136 Face 53522 4232 26762 26763 Face 53523 10675 26764 108 Face 53524 10675 43486 26764 Face 53525 3370 26765 38464 Face 53526 3370 16842 26765 Face 53527 4765 26766 22505 Face 53528 26767 1580 26766 Face 53529 4765 26767 26766 Face 53530 4765 18327 26767 Face 53531 27059 26768 39706 Face 53532 10965 17573 26768 Face 53533 26770 26769 1241 Face 53534 12691 31684 26769 Face 53535 12691 26770 12692 Face 53536 12691 26769 26770 Face 53537 4564 26771 21397 Face 53538 4564 10173 26771 Face 53539 11937 26772 40392 Face 53540 11937 21035 26772 Face 53541 15207 26773 284 Face 53542 15207 46810 26773 Face 53543 34640 26774 18514 Face 53544 41488 44381 26774 Face 53545 38270 26775 17445 Face 53546 46593 4868 26775 Face 53547 43145 26776 41639 Face 53548 43145 16080 26776 Face 53549 10012 41120 4172 Face 53550 38241 14322 26777 Face 53551 26777 26778 10012 Face 53552 26777 303 26778 Face 53553 14302 26779 573 Face 53554 14302 10813 26779 Face 53555 8176 26780 37381 Face 53556 8176 31335 26780 Face 53557 5980 26781 42767 Face 53558 5980 3321 26781 Face 53559 14939 26782 19771 Face 53560 14939 33139 47608 Face 53561 28785 26783 32630 Face 53562 26784 34495 26783 Face 53563 1005 26784 26783 Face 53564 1005 28801 26784 Face 53565 5297 26785 5298 Face 53566 30330 10603 26785 Face 53567 3171 26786 30356 Face 53568 3171 27674 26786 Face 53569 3171 43043 876 Face 53570 3171 37551 26787 Face 53571 11779 26788 37598 Face 53572 27120 23681 26788 Face 53573 10421 26789 20945 Face 53574 10421 45733 26789 Face 53575 2081 26790 19918 Face 53576 30635 46243 26790 Face 53577 9785 26791 17458 Face 53578 9785 2725 26791 Face 53579 14928 26792 5859 Face 53580 14928 35020 26792 Face 53581 10370 26793 26538 Face 53582 10370 31166 26793 Face 53583 10966 26794 44549 Face 53584 33266 1463 26794 Face 53585 26796 26795 30540 Face 53586 42962 28652 26795 Face 53587 26798 26796 32570 Face 53588 4368 26795 26796 Face 53589 4368 26797 26795 Face 53590 26798 12004 32695 Face 53591 4368 26798 26797 Face 53592 4368 26796 26798 Face 53593 37578 46138 14161 Face 53594 969 23427 26799 Face 53595 6024 26800 36117 Face 53596 6024 44614 26800 Face 53597 3243 26801 19715 Face 53598 3243 44775 26801 Face 53599 1401 26802 18329 Face 53600 30464 36638 26802 Face 53601 4588 26803 10615 Face 53602 26804 16494 26803 Face 53603 26805 26804 26803 Face 53604 26805 39257 26804 Face 53605 4588 26805 26803 Face 53606 4588 39257 26805 Face 53607 23737 26806 6038 Face 53608 23737 12559 26806 Face 53609 7513 26807 38754 Face 53610 7513 15447 26807 Face 53611 698 26808 47544 Face 53612 698 11196 26808 Face 53613 870 47976 31537 Face 53614 870 11326 26809 Face 53615 36400 26810 46141 Face 53616 6124 27358 26810 Face 53617 38058 40591 15636 Face 53618 6124 26810 36400 Face 53619 6124 26812 44630 Face 53620 38058 40535 26812 Face 53621 5769 26813 25369 Face 53622 32177 29674 26813 Face 53623 15580 26814 25944 Face 53624 15580 7466 26814 Face 53625 35742 26815 25494 Face 53626 10070 37673 26815 Face 53627 1119 26816 38744 Face 53628 26817 4521 26816 Face 53629 1119 26817 26816 Face 53630 34848 7809 44661 Face 53631 21073 26818 47234 Face 53632 38237 17681 26818 Face 53633 691 26819 6208 Face 53634 691 32695 26819 Face 53635 9303 26820 16167 Face 53636 9303 22637 26820 Face 53637 7904 26821 13505 Face 53638 7904 44666 26821 Face 53639 8043 26822 40177 Face 53640 8043 18984 26822 Face 53641 17657 40759 7123 Face 53642 40109 6237 40759 Face 53643 13738 26824 28408 Face 53644 13738 14954 48951 Face 53645 11078 48029 11079 Face 53646 11078 43544 26825 Face 53647 9581 26826 19868 Face 53648 9581 23720 26826 Face 53649 4870 26827 26066 Face 53650 4870 30256 26827 Face 53651 13226 26828 13228 Face 53652 47753 6295 26828 Face 53653 20290 26829 11606 Face 53654 20290 1308 26829 Face 53655 11891 26830 20911 Face 53656 11891 1529 26830 Face 53657 9989 26831 30506 Face 53658 9989 41303 26831 Face 53659 2615 26832 40854 Face 53660 2615 23003 26832 Face 53661 7275 26833 22562 Face 53662 7275 20042 26833 Face 53663 303 26834 11610 Face 53664 303 19359 40261 Face 53665 16926 26835 31238 Face 53666 16926 18671 26835 Face 53667 26837 45866 2931 Face 53668 12624 2146 26836 Face 53669 33797 46407 40746 Face 53670 27769 45866 26837 Face 53671 206 26838 12986 Face 53672 206 9030 46872 Face 53673 34037 26839 4307 Face 53674 181 17984 26839 Face 53675 9827 26840 35829 Face 53676 9827 9826 26840 Face 53677 16786 26841 22490 Face 53678 16786 11313 26841 Face 53679 1023 26842 20976 Face 53680 35661 27930 40504 Face 53681 897 26843 4308 Face 53682 897 8505 26843 Face 53683 9250 26844 5316 Face 53684 9250 3295 26844 Face 53685 8573 26845 962 Face 53686 8573 522 26845 Face 53687 26847 26846 783 Face 53688 10768 29995 26846 Face 53689 10768 26847 16733 Face 53690 10768 26846 26847 Face 53691 8591 26848 14658 Face 53692 8591 45216 26848 Face 53693 14330 26849 19347 Face 53694 14330 21029 26849 Face 53695 6780 26850 39422 Face 53696 46205 9042 26850 Face 53697 10128 26851 37429 Face 53698 10128 17095 26851 Face 53699 10172 26852 20959 Face 53700 10172 34926 26852 Face 53701 17748 26853 6593 Face 53702 17748 1900 26853 Face 53703 4781 26854 41943 Face 53704 4781 13587 26854 Face 53705 3017 37664 20644 Face 53706 3017 11330 26855 Face 53707 2001 26856 40337 Face 53708 29197 2000 48378 Face 53709 12296 26857 25725 Face 53710 12296 1786 26857 Face 53711 12296 26858 48029 Face 53712 12296 25725 26858 Face 53713 22457 26859 34722 Face 53714 22457 1316 26859 Face 53715 12439 26860 26514 Face 53716 12439 27898 26860 Face 53717 546 26861 36793 Face 53718 546 45769 26861 Face 53719 14590 26862 1537 Face 53720 14590 26317 26862 Face 53721 2171 26863 22801 Face 53722 2171 33197 26863 Face 53723 15547 26864 6320 Face 53724 15547 39316 26864 Face 53725 13146 26865 7179 Face 53726 13146 11036 26865 Face 53727 14944 26866 23118 Face 53728 14944 25295 49001 Face 53729 1567 26867 7872 Face 53730 1567 23293 26867 Face 53731 11587 46549 25316 Face 53732 11587 15120 26868 Face 53733 2703 26869 22503 Face 53734 46209 40829 26869 Face 53735 2021 26870 15317 Face 53736 26871 8425 44022 Face 53737 2021 26871 44022 Face 53738 2021 11625 26871 Face 53739 8321 26872 36078 Face 53740 8321 15103 26872 Face 53741 31527 26873 11620 Face 53742 31527 23393 26873 Face 53743 5937 26874 28416 Face 53744 5937 12896 26874 Face 53745 302 26875 17818 Face 53746 302 3572 26875 Face 53747 5761 26876 43991 Face 53748 5761 19918 26876 Face 53749 24978 26877 1935 Face 53750 24978 40889 26877 Face 53751 31197 44019 20606 Face 53752 35109 25087 26878 Face 53753 22050 26879 19323 Face 53754 22050 15514 26879 Face 53755 1433 26880 14194 Face 53756 43737 36678 26880 Face 53757 10349 26881 25887 Face 53758 10349 16878 26881 Face 53759 83 26882 21203 Face 53760 83 42293 26882 Face 53761 26884 26883 21533 Face 53762 36808 21134 26883 Face 53763 42986 26884 15022 Face 53764 36808 26883 26884 Face 53765 932 26885 23712 Face 53766 932 11273 26885 Face 53767 47379 26886 3265 Face 53768 8869 37924 26886 Face 53769 5125 26887 21389 Face 53770 5125 43433 26887 Face 53771 10205 26888 40955 Face 53772 10205 10204 26888 Face 53773 6525 26889 17187 Face 53774 6525 16517 47287 Face 53775 13814 26890 10139 Face 53776 13814 35122 26890 Face 53777 2172 26891 36974 Face 53778 2172 46822 26891 Face 53779 2888 26892 36560 Face 53780 46016 27999 26892 Face 53781 1786 26893 41590 Face 53782 29537 6003 26893 Face 53783 6908 26894 23303 Face 53784 6908 42997 26894 Face 53785 4638 26895 29749 Face 53786 4638 8087 26895 Face 53787 7060 26896 25637 Face 53788 7060 46619 26896 Face 53789 4390 26897 15596 Face 53790 4390 17708 49951 Face 53791 27380 46215 49530 Face 53792 3221 23399 26898 Face 53793 36094 26899 36436 Face 53794 2771 47144 26899 Face 53795 8519 26900 43110 Face 53796 8519 31373 26900 Face 53797 22944 44063 29774 Face 53798 36736 34480 26901 Face 53799 10583 26902 11046 Face 53800 10583 47166 26902 Face 53801 3975 26903 19993 Face 53802 3975 2611 26903 Face 53803 46418 26904 42048 Face 53804 6847 37469 26904 Face 53805 26426 26905 25609 Face 53806 26426 45485 26905 Face 53807 1101 26906 17014 Face 53808 1101 8522 26906 Face 53809 10288 26907 6509 Face 53810 10288 15513 26907 Face 53811 1125 26908 43071 Face 53812 1125 18153 26908 Face 53813 14435 26909 47586 Face 53814 14435 454 26909 Face 53815 28960 26910 44095 Face 53816 7028 19739 46628 Face 53817 12474 26911 35970 Face 53818 12474 46248 26911 Face 53819 13005 26912 39220 Face 53820 13005 12625 26912 Face 53821 13214 26913 16656 Face 53822 13214 19050 26913 Face 53823 7827 26914 46975 Face 53824 7827 22001 26914 Face 53825 8736 26915 16302 Face 53826 8736 23394 26915 Face 53827 4607 26916 47896 Face 53828 4607 6565 36318 Face 53829 10599 26917 34521 Face 53830 10599 3134 26917 Face 53831 6924 26918 5189 Face 53832 6924 7309 26918 Face 53833 6526 26919 42132 Face 53834 6526 21658 26919 Face 53835 90 26920 13254 Face 53836 90 12481 26920 Face 53837 6423 26921 14442 Face 53838 29331 17160 26921 Face 53839 4190 26922 25006 Face 53840 49049 10937 26922 Face 53841 45251 26923 33059 Face 53842 4260 41751 26923 Face 53843 10459 43041 21717 Face 53844 10459 26487 37712 Face 53845 11450 26925 26720 Face 53846 11450 16747 26925 Face 53847 16937 26926 32658 Face 53848 16937 19960 26926 Face 53849 5721 26927 8911 Face 53850 5721 26545 26927 Face 53851 19096 26928 19097 Face 53852 19096 5521 26928 Face 53853 4070 26929 9863 Face 53854 4070 41773 26929 Face 53855 6925 26930 20450 Face 53856 33037 12930 26930 Face 53857 3628 26931 25950 Face 53858 33191 12763 26931 Face 53859 1894 26932 42719 Face 53860 1894 44590 26932 Face 53861 31077 45578 18602 Face 53862 8193 17601 26933 Face 53863 1703 26934 16168 Face 53864 1703 16419 26934 Face 53865 11141 26935 35197 Face 53866 11141 25400 26935 Face 53867 44274 26936 7114 Face 53868 5023 22875 26936 Face 53869 17110 26937 34661 Face 53870 17110 2653 26937 Face 53871 11707 43832 16431 Face 53872 11707 16221 26938 Face 53873 14952 26939 31145 Face 53874 14952 28170 26939 Face 53875 6469 26940 38883 Face 53876 6469 16668 26940 Face 53877 22414 26941 2398 Face 53878 22414 6292 26941 Face 53879 48216 26942 15974 Face 53880 43788 18399 26942 Face 53881 2528 26943 3857 Face 53882 2528 10007 26943 Face 53883 27735 26944 27217 Face 53884 27735 2270 26944 Face 53885 33343 26945 20615 Face 53886 4374 38892 26945 Face 53887 1986 26946 37526 Face 53888 1986 19456 26946 Face 53889 2553 26947 13052 Face 53890 2553 22139 26947 Face 53891 43315 26948 8723 Face 53892 26950 24107 26948 Face 53893 26950 26949 24107 Face 53894 4586 20491 44418 Face 53895 4586 26950 26948 Face 53896 4586 26949 26950 Face 53897 2391 26951 39583 Face 53898 2391 5698 26951 Face 53899 5999 26952 30451 Face 53900 5999 18065 26952 Face 53901 47723 26953 18234 Face 53902 26955 18277 26953 Face 53903 27717 26954 46446 Face 53904 412 27191 26954 Face 53905 47723 26955 26953 Face 53906 27717 23701 26955 Face 53907 8394 26956 38457 Face 53908 8394 24532 26956 Face 53909 49297 26957 12952 Face 53910 8054 11505 26957 Face 53911 13896 26958 24648 Face 53912 13896 18116 26958 Face 53913 46075 26959 33617 Face 53914 46075 34127 26959 Face 53915 3737 26960 4597 Face 53916 3737 21884 26960 Face 53917 6070 26961 4 Face 53918 6070 20824 48732 Face 53919 6070 26962 20824 Face 53920 6070 20486 26962 Face 53921 29949 26963 27990 Face 53922 13888 30186 26963 Face 53923 40030 38392 29569 Face 53924 1624 5284 26964 Face 53925 20806 26965 12960 Face 53926 20806 10821 26965 Face 53927 13421 26966 49613 Face 53928 13421 4829 26966 Face 53929 954 26967 44942 Face 53930 954 27442 26967 Face 53931 7727 26968 37672 Face 53932 7727 38509 26968 Face 53933 10334 26969 24573 Face 53934 10334 20548 26969 Face 53935 21929 26970 3329 Face 53936 21929 18058 26970 Face 53937 11513 26971 31933 Face 53938 11513 29190 26971 Face 53939 4589 26972 10834 Face 53940 4589 5000 26972 Face 53941 49685 26973 19926 Face 53942 41664 30330 26973 Face 53943 14906 26974 20875 Face 53944 39037 15553 26974 Face 53945 1505 26975 37244 Face 53946 1505 11458 26975 Face 53947 9992 26976 29321 Face 53948 9992 12242 26976 Face 53949 1143 26977 36828 Face 53950 1143 19908 26977 Face 53951 49137 26978 4203 Face 53952 674 19583 26978 Face 53953 44191 26979 29903 Face 53954 44191 44673 26979 Face 53955 10871 26980 31153 Face 53956 10871 745 26980 Face 53957 3451 26981 15035 Face 53958 3451 8558 26981 Face 53959 18532 26982 18527 Face 53960 18532 11740 26982 Face 53961 3154 26983 16069 Face 53962 3154 23466 26983 Face 53963 1610 26984 33142 Face 53964 44993 31499 26984 Face 53965 1610 44993 26984 Face 53966 1610 5852 26985 Face 53967 47110 26986 4028 Face 53968 8507 23389 48788 Face 53969 4793 26987 37224 Face 53970 46477 29440 39616 Face 53971 923 26988 19875 Face 53972 923 9037 26988 Face 53973 6545 26989 8986 Face 53974 6545 18966 26989 Face 53975 10078 26990 18321 Face 53976 10078 38368 26990 Face 53977 9998 26991 11306 Face 53978 9998 37491 26991 Face 53979 18112 26992 43189 Face 53980 18112 15018 26992 Face 53981 1959 26993 5404 Face 53982 1959 27327 26993 Face 53983 13786 26994 4501 Face 53984 13786 38288 26994 Face 53985 27641 26995 11688 Face 53986 2870 24288 26995 Face 53987 320 26996 24797 Face 53988 320 49036 26996 Face 53989 13058 26997 8143 Face 53990 13058 17646 26997 Face 53991 49764 26998 23811 Face 53992 6806 32680 26998 Face 53993 12780 26999 34020 Face 53994 12780 29418 26999 Face 53995 4752 27000 18303 Face 53996 4752 9715 27000 Face 53997 33978 27001 3175 Face 53998 12202 35142 27001 Face 53999 16299 27002 6078 Face 54000 16299 2023 27002 Face 54001 10147 27003 18934 Face 54002 10147 27476 27003 Face 54003 28958 27004 11466 Face 54004 28958 29715 27004 Face 54005 21105 27005 23123 Face 54006 21105 77 27005 Face 54007 1104 27006 15444 Face 54008 1104 13944 27006 Face 54009 39364 37896 15506 Face 54010 2422 15260 27007 Face 54011 42961 27008 20465 Face 54012 42961 15325 27008 Face 54013 14137 27009 18908 Face 54014 14137 42190 27009 Face 54015 1816 27010 36311 Face 54016 27011 11098 27010 Face 54017 1816 27011 27010 Face 54018 1816 16758 27011 Face 54019 4406 27012 16285 Face 54020 4406 35864 27012 Face 54021 39166 27013 1377 Face 54022 46212 11181 27013 Face 54023 2009 27014 23517 Face 54024 2009 12935 27014 Face 54025 11949 27015 39638 Face 54026 27016 45905 27015 Face 54027 11949 27016 27015 Face 54028 11949 40324 27016 Face 54029 183 27017 14526 Face 54030 183 9128 27017 Face 54031 183 27018 35519 Face 54032 183 14526 27018 Face 54033 11836 47321 16785 Face 54034 11836 38463 27019 Face 54035 9038 27020 39175 Face 54036 9038 11548 27020 Face 54037 46256 27021 25786 Face 54038 12200 46637 27021 Face 54039 1462 27022 19029 Face 54040 1462 29433 27022 Face 54041 12341 27023 4797 Face 54042 12341 9366 27023 Face 54043 18038 27024 24156 Face 54044 29975 12835 27024 Face 54045 37721 27025 20288 Face 54046 37721 15465 27025 Face 54047 8807 27026 1608 Face 54048 8807 10015 27026 Face 54049 15955 27027 14878 Face 54050 15955 26299 27027 Face 54051 11361 27028 17019 Face 54052 11361 39575 27028 Face 54053 10305 27029 19030 Face 54054 10305 8967 27029 Face 54055 3343 43056 10170 Face 54056 3343 8083 27030 Face 54057 31468 27031 5897 Face 54058 27032 20374 27031 Face 54059 5655 27032 27031 Face 54060 5655 7025 27032 Face 54061 20952 27033 35411 Face 54062 38920 18625 27033 Face 54063 20952 27034 27033 Face 54064 20952 20951 38919 Face 54065 6565 27035 39334 Face 54066 6565 1512 27035 Face 54067 8714 27036 41149 Face 54068 8714 23929 27036 Face 54069 2706 27037 49796 Face 54070 2706 21601 27037 Face 54071 9554 27038 30636 Face 54072 9554 29880 27038 Face 54073 9559 27039 1620 Face 54074 31801 20531 27039 Face 54075 11875 27040 15654 Face 54076 11875 11877 27040 Face 54077 31140 38750 18260 Face 54078 31139 16869 27041 Face 54079 27043 27042 14423 Face 54080 8211 42695 27042 Face 54081 8211 27043 21131 Face 54082 8211 27042 27043 Face 54083 22546 44096 9859 Face 54084 22546 2361 44096 Face 54085 8829 27045 42567 Face 54086 8829 23349 27045 Face 54087 28228 27046 19278 Face 54088 28228 39641 27046 Face 54089 46332 27047 43268 Face 54090 13632 3177 27047 Face 54091 845 27048 6053 Face 54092 845 37225 27048 Face 54093 19058 27049 43876 Face 54094 19058 16595 27049 Face 54095 1587 27050 42593 Face 54096 32031 39249 27050 Face 54097 3494 27051 11561 Face 54098 3494 36967 27051 Face 54099 364 27052 31250 Face 54100 364 42254 27052 Face 54101 16119 27053 23156 Face 54102 16119 2782 27053 Face 54103 16762 27054 8713 Face 54104 33099 26186 35628 Face 54105 7543 27055 10846 Face 54106 7543 21709 27055 Face 54107 2054 27056 31314 Face 54108 2054 11901 27056 Face 54109 37312 27057 31132 Face 54110 33648 11742 27057 Face 54111 6703 27058 32775 Face 54112 6703 22523 27058 Face 54113 10965 27059 36617 Face 54114 10965 26768 27059 Face 54115 8409 27060 9622 Face 54116 35220 33390 27060 Face 54117 9879 48861 10474 Face 54118 9879 43131 27061 Face 54119 41497 27062 8421 Face 54120 39738 34187 47095 Face 54121 30419 27063 22960 Face 54122 28466 47111 27063 Face 54123 17886 27064 16085 Face 54124 17886 35396 27064 Face 54125 15987 27065 21312 Face 54126 15987 19973 27065 Face 54127 9168 46207 17677 Face 54128 9168 47628 27066 Face 54129 20167 27067 22952 Face 54130 20167 20168 27067 Face 54131 8119 27068 22954 Face 54132 8119 31669 27068 Face 54133 4896 27069 47342 Face 54134 27070 30839 27069 Face 54135 4896 27070 27069 Face 54136 40872 26122 27070 Face 54137 11494 27071 36229 Face 54138 11494 41244 27071 Face 54139 16315 27072 32000 Face 54140 35702 42154 27072 Face 54141 2639 27073 14756 Face 54142 2639 45947 27073 Face 54143 29835 44321 6398 Face 54144 1532 12449 27074 Face 54145 3759 27075 41682 Face 54146 3759 19718 27075 Face 54147 4628 27076 36748 Face 54148 4628 13712 27076 Face 54149 24133 27077 13984 Face 54150 24133 11500 27077 Face 54151 30291 27078 11643 Face 54152 30291 9045 27078 Face 54153 14745 27079 7682 Face 54154 14745 7153 27079 Face 54155 18864 27080 42145 Face 54156 33434 24986 27080 Face 54157 8324 27081 30308 Face 54158 8324 23358 48743 Face 54159 11087 27082 47010 Face 54160 45659 25942 27082 Face 54161 9647 27083 46023 Face 54162 9647 7883 27083 Face 54163 30848 27084 29313 Face 54164 7691 18591 27084 Face 54165 27086 27085 41632 Face 54166 34231 12154 46314 Face 54167 5601 27086 38042 Face 54168 5601 27085 27086 Face 54169 11419 27087 37246 Face 54170 11419 144 27087 Face 54171 20639 27088 15500 Face 54172 20639 45975 27088 Face 54173 23376 27089 20846 Face 54174 23376 35224 27089 Face 54175 31341 41866 45930 Face 54176 892 11488 27090 Face 54177 15884 27091 21519 Face 54178 15884 15243 27091 Face 54179 39577 27092 15283 Face 54180 39782 7414 27092 Face 54181 681 39782 27092 Face 54182 681 28013 27093 Face 54183 6601 27094 24856 Face 54184 42965 8438 27094 Face 54185 17538 27095 18739 Face 54186 17538 4962 27095 Face 54187 21367 27096 4134 Face 54188 21367 19606 27096 Face 54189 17721 27097 10024 Face 54190 17721 33324 27097 Face 54191 48373 27098 8009 Face 54192 6881 29513 27098 Face 54193 6881 27099 26525 Face 54194 27100 35495 27099 Face 54195 6881 27100 27099 Face 54196 6881 27098 27100 Face 54197 15518 27101 27730 Face 54198 15518 25399 27101 Face 54199 1426 27102 16825 Face 54200 1426 37046 27102 Face 54201 7399 27103 25216 Face 54202 7399 24297 27103 Face 54203 3133 27104 40915 Face 54204 3133 16579 27104 Face 54205 14247 27105 41724 Face 54206 14247 15971 27105 Face 54207 29059 27106 40419 Face 54208 6312 25453 27106 Face 54209 49798 27107 38912 Face 54210 49389 6587 27107 Face 54211 16384 27108 18002 Face 54212 16384 33427 27108 Face 54213 473 27109 39212 Face 54214 27110 43798 27109 Face 54215 473 27110 27109 Face 54216 473 8256 27110 Face 54217 10786 27111 24953 Face 54218 10786 20045 27111 Face 54219 5822 27112 43628 Face 54220 5822 19611 27112 Face 54221 31076 27113 42536 Face 54222 38369 26281 27113 Face 54223 22305 27114 22306 Face 54224 22305 32635 27114 Face 54225 31178 27115 9708 Face 54226 1055 7514 27115 Face 54227 1189 33712 16710 Face 54228 1189 17633 27116 Face 54229 277 27117 20519 Face 54230 277 20575 27117 Face 54231 2512 27118 32228 Face 54232 2512 38183 27118 Face 54233 41340 27119 26080 Face 54234 14429 22526 27119 Face 54235 11779 27120 26788 Face 54236 11779 11778 27120 Face 54237 9613 27121 47957 Face 54238 9613 40567 27121 Face 54239 40086 27122 25434 Face 54240 40086 28401 27122 Face 54241 11209 27123 16633 Face 54242 11209 42945 27123 Face 54243 40136 27124 39164 Face 54244 28747 4059 27124 Face 54245 3686 27125 28883 Face 54246 3686 45288 27125 Face 54247 6422 27126 23445 Face 54248 6422 16918 27126 Face 54249 9121 27127 1576 Face 54250 9121 20299 27127 Face 54251 23168 27128 21710 Face 54252 33494 13706 27128 Face 54253 8247 27129 13380 Face 54254 8247 1592 27129 Face 54255 6338 27130 46688 Face 54256 6338 20906 27130 Face 54257 37976 27131 25499 Face 54258 37976 8773 27131 Face 54259 36958 27132 18738 Face 54260 11593 22661 27132 Face 54261 18186 35474 12469 Face 54262 18186 18185 35474 Face 54263 10008 27134 28287 Face 54264 10008 26125 27134 Face 54265 20369 27135 18501 Face 54266 20369 15253 27135 Face 54267 34176 27136 47769 Face 54268 1281 9660 27136 Face 54269 4571 27137 28433 Face 54270 47191 35986 27137 Face 54271 16956 27138 48147 Face 54272 16956 22016 27138 Face 54273 46376 39405 19809 Face 54274 7086 22417 27139 Face 54275 42192 27140 9151 Face 54276 42192 25380 27140 Face 54277 6333 27141 37898 Face 54278 49044 33790 27141 Face 54279 7386 27142 17052 Face 54280 7386 3365 27142 Face 54281 17186 27143 20737 Face 54282 17186 45532 27143 Face 54283 1097 46564 18714 Face 54284 1097 42850 27144 Face 54285 46464 27145 6041 Face 54286 15066 21607 27145 Face 54287 2997 27146 1084 Face 54288 2997 47714 27146 Face 54289 3209 27147 33580 Face 54290 3209 13923 27147 Face 54291 10577 27148 30646 Face 54292 10577 24390 27148 Face 54293 31974 27149 35948 Face 54294 31974 17456 27149 Face 54295 4575 27150 161 Face 54296 4575 49224 27150 Face 54297 42514 27151 25828 Face 54298 42514 27843 27151 Face 54299 3787 27152 21354 Face 54300 3787 3786 27152 Face 54301 42590 27153 14632 Face 54302 2294 15275 40239 Face 54303 17356 27154 48517 Face 54304 17356 13022 27154 Face 54305 3675 27155 40006 Face 54306 3675 9982 27155 Face 54307 5825 27156 25343 Face 54308 27157 10157 27156 Face 54309 5825 27157 27156 Face 54310 33631 10431 27157 Face 54311 33942 27158 18146 Face 54312 1996 26722 27158 Face 54313 35540 27159 41888 Face 54314 35540 31379 27159 Face 54315 32472 27160 23479 Face 54316 16980 13804 27160 Face 54317 39935 27161 45853 Face 54318 6215 18552 27161 Face 54319 15763 27162 25520 Face 54320 15763 9099 27162 Face 54321 13106 27163 2759 Face 54322 43312 19314 27163 Face 54323 3968 27164 17848 Face 54324 37754 15633 27164 Face 54325 7776 27165 33140 Face 54326 7776 32016 27165 Face 54327 36380 27166 4191 Face 54328 17845 46956 27166 Face 54329 27926 27167 6609 Face 54330 6608 32143 30473 Face 54331 3844 27168 17398 Face 54332 49699 5948 27168 Face 54333 36082 27169 5600 Face 54334 11131 40082 27169 Face 54335 5208 27170 40801 Face 54336 5208 34902 27170 Face 54337 7564 27171 8231 Face 54338 36243 7565 27171 Face 54339 15458 27172 6476 Face 54340 15458 37331 27172 Face 54341 2102 27173 24540 Face 54342 29918 39441 27173 Face 54343 13016 27174 10773 Face 54344 13016 46036 27174 Face 54345 17033 27175 24271 Face 54346 17033 7228 27175 Face 54347 27275 49159 4771 Face 54348 5469 2955 27176 Face 54349 27179 27177 47063 Face 54350 32646 42670 27177 Face 54351 41037 27178 18494 Face 54352 27179 1149 27178 Face 54353 41037 27179 27178 Face 54354 2916 27177 27179 Face 54355 14133 27180 20287 Face 54356 14133 7738 27180 Face 54357 16281 41521 7963 Face 54358 16281 1039 27181 Face 54359 10075 27182 38458 Face 54360 10075 12695 27182 Face 54361 5463 27183 23275 Face 54362 5463 16912 49584 Face 54363 9433 39201 24359 Face 54364 29690 5172 27184 Face 54365 8221 27185 18243 Face 54366 8221 21903 27185 Face 54367 24020 27186 1137 Face 54368 24020 40178 27186 Face 54369 1330 27187 18313 Face 54370 1330 23289 27187 Face 54371 1330 27188 25464 Face 54372 1330 18312 27188 Face 54373 17402 27189 11932 Face 54374 17402 21855 27189 Face 54375 15528 27190 43842 Face 54376 32995 21858 27190 Face 54377 7202 27191 25043 Face 54378 47718 26954 27191 Face 54379 9629 27192 238 Face 54380 38987 18513 27192 Face 54381 36973 27193 14956 Face 54382 5120 46543 27193 Face 54383 812 27194 14942 Face 54384 37177 26280 27194 Face 54385 7680 27195 45062 Face 54386 7680 8554 27195 Face 54387 1592 27196 22050 Face 54388 1592 10746 49981 Face 54389 19901 27197 13039 Face 54390 19901 26726 27197 Face 54391 37397 27198 34688 Face 54392 4868 8602 27198 Face 54393 17367 27199 22745 Face 54394 17367 26306 27199 Face 54395 7462 27200 43322 Face 54396 7462 24718 27200 Face 54397 49977 27201 1893 Face 54398 4440 7029 27201 Face 54399 49370 27202 43887 Face 54400 9814 257 27202 Face 54401 2690 27203 42749 Face 54402 29163 38066 27203 Face 54403 40726 27204 24237 Face 54404 17939 22890 27204 Face 54405 34303 29494 23553 Face 54406 27207 11167 27205 Face 54407 7679 27207 27205 Face 54408 7679 13839 27207 Face 54409 27206 27207 13839 Face 54410 41394 11167 27207 Face 54411 6590 27208 19192 Face 54412 38038 29197 27208 Face 54413 2472 27209 22631 Face 54414 2472 16960 42794 Face 54415 12580 27210 38169 Face 54416 12580 26270 27210 Face 54417 12686 27211 8413 Face 54418 12686 34315 27211 Face 54419 1434 27212 46130 Face 54420 1434 22160 27212 Face 54421 17472 27213 17525 Face 54422 17472 25461 27213 Face 54423 1034 46230 4214 Face 54424 33177 13013 27214 Face 54425 3744 27215 13765 Face 54426 3744 23258 27215 Face 54427 4702 27216 46580 Face 54428 4702 40152 27216 Face 54429 4650 27217 25324 Face 54430 4650 9022 27217 Face 54431 5282 27218 916 Face 54432 5282 15896 27218 Face 54433 899 27219 48365 Face 54434 46476 47632 27219 Face 54435 8450 27220 21438 Face 54436 8450 1660 27220 Face 54437 3464 27221 13626 Face 54438 3464 44265 27221 Face 54439 20239 27222 43917 Face 54440 20239 14676 27222 Face 54441 1518 27223 32858 Face 54442 1518 37709 27223 Face 54443 2451 27224 49542 Face 54444 37060 12292 27224 Face 54445 933 27225 14520 Face 54446 933 25350 27225 Face 54447 1167 27226 14322 Face 54448 46132 11198 27226 Face 54449 16116 27227 16060 Face 54450 16116 49367 27227 Face 54451 5891 27228 17219 Face 54452 28036 43882 27228 Face 54453 11074 27229 42493 Face 54454 11074 4187 27229 Face 54455 49776 27230 20529 Face 54456 44689 18453 27230 Face 54457 18056 27231 44008 Face 54458 18056 36968 27231 Face 54459 11101 27232 44431 Face 54460 11101 15630 27232 Face 54461 9829 27233 40372 Face 54462 9829 46304 27233 Face 54463 885 27234 12321 Face 54464 42942 25761 27234 Face 54465 27236 27235 3292 Face 54466 15706 5119 27235 Face 54467 15706 27236 485 Face 54468 15706 27235 27236 Face 54469 13392 27237 16032 Face 54470 13392 37152 27237 Face 54471 27239 44577 25428 Face 54472 1341 26046 48818 Face 54473 27776 27239 25428 Face 54474 1341 44577 27239 Face 54475 32431 27240 13530 Face 54476 27241 40562 34072 Face 54477 3979 27241 27240 Face 54478 3979 14266 27241 Face 54479 47478 27242 1930 Face 54480 18760 442 27242 Face 54481 3069 27243 14251 Face 54482 3069 42977 27243 Face 54483 7957 27244 24409 Face 54484 7957 25007 27244 Face 54485 6548 27245 44055 Face 54486 6548 22695 27245 Face 54487 14778 27246 11297 Face 54488 14778 49174 27246 Face 54489 5446 27247 26202 Face 54490 5446 20443 27247 Face 54491 6005 27248 2764 Face 54492 6005 14852 27248 Face 54493 27250 27249 19752 Face 54494 19753 20768 27249 Face 54495 19753 27250 30703 Face 54496 19753 27249 27250 Face 54497 6217 27251 30444 Face 54498 6217 31674 27251 Face 54499 4053 27252 31643 Face 54500 41319 16741 27252 Face 54501 33227 27253 49708 Face 54502 4801 20389 27253 Face 54503 30441 27254 14920 Face 54504 30441 18106 27254 Face 54505 47 27255 41900 Face 54506 47 25565 27255 Face 54507 12242 27256 26976 Face 54508 12242 12243 27256 Face 54509 3003 27257 7082 Face 54510 27258 11641 27257 Face 54511 3003 27258 27257 Face 54512 3003 10865 27258 Face 54513 12942 27259 22142 Face 54514 12942 23435 27259 Face 54515 6745 27260 20597 Face 54516 36091 1035 27260 Face 54517 23202 27261 2306 Face 54518 23202 45296 27261 Face 54519 11358 27262 39558 Face 54520 47124 37396 27262 Face 54521 40686 27263 27264 Face 54522 40686 36281 27263 Face 54523 40098 27264 27263 Face 54524 15101 29050 27264 Face 54525 8556 27265 5829 Face 54526 34462 46436 27265 Face 54527 212 27266 31892 Face 54528 212 33967 40633 Face 54529 47855 27267 9336 Face 54530 757 34847 27267 Face 54531 10953 27268 4116 Face 54532 43325 18395 27268 Face 54533 39263 27269 8304 Face 54534 4632 14380 27269 Face 54535 34 27270 45932 Face 54536 27278 45181 27270 Face 54537 27272 27271 43450 Face 54538 27272 12792 27271 Face 54539 6872 27272 21925 Face 54540 6872 12792 27272 Face 54541 13875 27273 45210 Face 54542 37262 5775 27273 Face 54543 7483 27274 2896 Face 54544 7483 6968 27274 Face 54545 30564 27275 11674 Face 54546 5469 27176 27275 Face 54547 12978 27276 42644 Face 54548 12978 2575 27276 Face 54549 13432 27277 21217 Face 54550 13432 12405 27277 Face 54551 34 27278 27270 Face 54552 34302 31129 27278 Face 54553 36382 48485 9988 Face 54554 5096 43228 27279 Face 54555 16915 27280 46803 Face 54556 16915 12927 27280 Face 54557 27629 27281 1881 Face 54558 27282 24399 27689 Face 54559 4385 27282 27281 Face 54560 4385 24997 27282 Face 54561 11428 27283 32337 Face 54562 11428 24016 27283 Face 54563 3871 27284 22290 Face 54564 27285 45344 27284 Face 54565 3871 27285 27284 Face 54566 3871 35127 27285 Face 54567 4661 27286 37490 Face 54568 4661 22539 27286 Face 54569 1961 27287 39864 Face 54570 1961 15569 27287 Face 54571 13051 27288 20547 Face 54572 13051 6034 27288 Face 54573 4889 27289 41761 Face 54574 4889 16374 45737 Face 54575 45014 27290 48467 Face 54576 45014 176 27290 Face 54577 3113 27291 6500 Face 54578 3113 22770 27291 Face 54579 6406 27292 30635 Face 54580 6406 18839 27292 Face 54581 6566 27293 21264 Face 54582 39334 27035 48940 Face 54583 32769 27294 41540 Face 54584 307 24110 27294 Face 54585 7528 27295 33076 Face 54586 47769 27136 27295 Face 54587 25129 27296 10840 Face 54588 25129 14910 27296 Face 54589 10549 27297 5692 Face 54590 10549 2522 27297 Face 54591 4655 27298 13625 Face 54592 4655 37047 27298 Face 54593 3427 27299 33869 Face 54594 3427 14374 27299 Face 54595 938 42814 25546 Face 54596 938 13794 42815 Face 54597 27300 42815 13794 Face 54598 27300 25547 27301 Face 54599 16431 27302 11707 Face 54600 16431 44360 27302 Face 54601 8368 27303 24209 Face 54602 8368 33081 27303 Face 54603 5444 27304 40120 Face 54604 5444 14999 27304 Face 54605 38137 42046 21019 Face 54606 3777 16575 27305 Face 54607 17055 27306 25633 Face 54608 17055 17054 27306 Face 54609 1218 27307 17962 Face 54610 1218 45315 27307 Face 54611 3912 27308 27210 Face 54612 3912 22033 27308 Face 54613 6801 27309 3266 Face 54614 42070 24913 27309 Face 54615 5593 27310 1396 Face 54616 5593 19629 27310 Face 54617 36684 37440 36331 Face 54618 4633 32528 46530 Face 54619 8632 27312 18919 Face 54620 8632 36864 27312 Face 54621 17106 27313 49620 Face 54622 17106 34664 27313 Face 54623 1779 27314 34494 Face 54624 29289 40488 29376 Face 54625 27316 27340 2758 Face 54626 1714 16743 27315 Face 54627 36711 41780 23739 Face 54628 1714 27340 27316 Face 54629 47216 27317 32528 Face 54630 12010 27803 27317 Face 54631 7829 27318 11651 Face 54632 7829 21726 27318 Face 54633 18926 27319 44805 Face 54634 18926 20737 27319 Face 54635 41629 27320 12421 Face 54636 9773 33195 49578 Face 54637 5524 27321 34055 Face 54638 5524 26404 27321 Face 54639 4283 27322 40647 Face 54640 4283 31506 27322 Face 54641 9694 46165 7161 Face 54642 9694 41642 46165 Face 54643 759 27324 21737 Face 54644 759 40569 27324 Face 54645 16161 39989 26288 Face 54646 16161 20159 27325 Face 54647 29406 43473 2113 Face 54648 1410 17149 43473 Face 54649 2562 27327 12714 Face 54650 29969 26993 27327 Face 54651 20230 27328 8093 Face 54652 20230 21758 27328 Face 54653 6362 27329 14587 Face 54654 6362 36060 27329 Face 54655 16857 27330 17716 Face 54656 16857 27982 27330 Face 54657 16905 27331 23989 Face 54658 16905 25893 45166 Face 54659 39215 27332 25994 Face 54660 2858 44269 27332 Face 54661 11401 27333 18369 Face 54662 11401 20365 27333 Face 54663 13643 27334 49288 Face 54664 31030 20323 27334 Face 54665 1662 27335 22983 Face 54666 1662 7781 27335 Face 54667 3611 27336 25648 Face 54668 3611 41397 27336 Face 54669 12733 27337 32447 Face 54670 12733 14514 27337 Face 54671 2614 27338 46905 Face 54672 46764 37176 27338 Face 54673 16374 27339 11471 Face 54674 16374 43955 27339 Face 54675 27315 27340 1714 Face 54676 27315 10455 27340 Face 54677 13355 27341 16096 Face 54678 13355 34417 27341 Face 54679 27343 27342 28108 Face 54680 4639 21413 27342 Face 54681 4639 27343 44210 Face 54682 4639 27342 27343 Face 54683 2366 27344 14433 Face 54684 2366 20752 27344 Face 54685 7073 27345 44747 Face 54686 7073 23496 27345 Face 54687 5230 27346 18009 Face 54688 5230 34093 27346 Face 54689 5576 27347 26279 Face 54690 40149 20948 38420 Face 54691 6365 27348 19212 Face 54692 6365 19214 27348 Face 54693 43155 27349 21043 Face 54694 13137 26171 27349 Face 54695 17746 27350 10514 Face 54696 17746 29524 27350 Face 54697 9444 27351 27824 Face 54698 9444 15466 27351 Face 54699 39139 27352 46505 Face 54700 3194 48103 27352 Face 54701 7062 27353 581 Face 54702 7062 25923 27353 Face 54703 3264 27354 18198 Face 54704 3264 9901 27354 Face 54705 8582 41743 14689 Face 54706 8582 2362 41743 Face 54707 28218 27356 11349 Face 54708 41018 46025 27356 Face 54709 1652 27357 8793 Face 54710 1652 12570 27357 Face 54711 31180 27358 38470 Face 54712 1439 49410 27358 Face 54713 16009 27359 4301 Face 54714 16009 2015 27359 Face 54715 14468 27360 37405 Face 54716 14468 1709 27360 Face 54717 40063 27361 13621 Face 54718 3332 24120 27361 Face 54719 1406 27362 39886 Face 54720 1406 37707 27362 Face 54721 12719 27363 46259 Face 54722 12719 29227 27363 Face 54723 7142 27364 41696 Face 54724 7142 6209 27364 Face 54725 33031 27365 22246 Face 54726 19811 33598 27365 Face 54727 9184 27366 7605 Face 54728 9184 9185 27366 Face 54729 13315 27367 37921 Face 54730 13315 660 27367 Face 54731 3234 27368 41209 Face 54732 37885 14964 27368 Face 54733 11027 27369 39979 Face 54734 11027 10147 27369 Face 54735 17225 27370 2712 Face 54736 48261 20133 27370 Face 54737 4683 27371 7656 Face 54738 4683 17645 27371 Face 54739 49670 27372 27470 Face 54740 8333 13338 27372 Face 54741 11756 42924 11755 Face 54742 29581 42416 27373 Face 54743 10499 27374 16536 Face 54744 10499 4703 27374 Face 54745 17569 27375 5080 Face 54746 17569 5210 27375 Face 54747 33484 27376 30423 Face 54748 275 46908 27376 Face 54749 44000 27377 24905 Face 54750 15535 24907 27377 Face 54751 18278 27378 18279 Face 54752 18278 49630 27378 Face 54753 2108 27379 16906 Face 54754 33321 45512 27379 Face 54755 30584 27380 113 Face 54756 3221 46215 27380 Face 54757 315 44969 10498 Face 54758 315 17482 27381 Face 54759 20277 27382 32173 Face 54760 20277 28149 27382 Face 54761 12559 27383 26806 Face 54762 12559 30486 27383 Face 54763 15852 27384 4281 Face 54764 15852 9351 27384 Face 54765 1576 27385 9121 Face 54766 39304 37219 27385 Face 54767 44884 27386 19855 Face 54768 3480 15084 27386 Face 54769 2648 27387 20464 Face 54770 2648 7919 27387 Face 54771 47225 27388 43555 Face 54772 22841 25925 27388 Face 54773 22841 27389 11332 Face 54774 22841 27388 27389 Face 54775 10947 27390 29109 Face 54776 10947 29770 27390 Face 54777 13837 27391 49822 Face 54778 49770 11682 27392 Face 54779 27391 27392 46038 Face 54780 27391 41481 27392 Face 54781 36165 27393 1182 Face 54782 45287 14089 27394 Face 54783 27393 27394 26611 Face 54784 27393 36165 27394 Face 54785 879 27395 16295 Face 54786 879 48263 27395 Face 54787 27397 44815 34446 Face 54788 2372 9488 27396 Face 54789 28395 41378 675 Face 54790 2372 27396 27397 Face 54791 9671 27398 36467 Face 54792 9671 40135 27398 Face 54793 6104 27399 45678 Face 54794 43431 3705 27399 Face 54795 36381 27400 14873 Face 54796 9405 14951 27400 Face 54797 2029 27401 10291 Face 54798 34337 8154 27401 Face 54799 43517 27402 1216 Face 54800 8508 17495 27402 Face 54801 27404 27403 48211 Face 54802 5841 15730 27403 Face 54803 5841 27404 6178 Face 54804 5841 27403 27404 Face 54805 470 45400 22175 Face 54806 470 37380 27405 Face 54807 10986 27406 35478 Face 54808 10986 42645 27406 Face 54809 21930 27407 34082 Face 54810 21930 2580 27407 Face 54811 5403 27408 30015 Face 54812 5403 31494 27408 Face 54813 5510 27409 34104 Face 54814 5510 24642 27409 Face 54815 3581 27410 48404 Face 54816 3581 40064 27410 Face 54817 4064 27411 22392 Face 54818 4064 38290 27411 Face 54819 629 27412 7644 Face 54820 629 34820 27412 Face 54821 14256 27413 31104 Face 54822 14256 5364 27413 Face 54823 29940 27414 39210 Face 54824 29940 16166 27414 Face 54825 45459 27415 18875 Face 54826 6289 12944 27415 Face 54827 8952 27416 17701 Face 54828 8952 19342 27416 Face 54829 27418 27417 11490 Face 54830 6550 21484 27417 Face 54831 6550 27418 10391 Face 54832 6550 27417 27418 Face 54833 6456 27419 40536 Face 54834 6456 11872 27419 Face 54835 31011 27420 7553 Face 54836 2904 33935 27420 Face 54837 32505 27421 11429 Face 54838 9985 2008 27421 Face 54839 1809 27422 26325 Face 54840 1809 20732 27422 Face 54841 12155 27423 34947 Face 54842 12155 26508 27423 Face 54843 41773 27424 45974 Face 54844 41773 42683 27424 Face 54845 47181 27425 7070 Face 54846 825 5855 27425 Face 54847 6390 27426 21932 Face 54848 6390 17567 27426 Face 54849 27428 27427 24126 Face 54850 31821 39466 27427 Face 54851 3350 27428 18758 Face 54852 31821 27427 27428 Face 54853 14632 27429 34631 Face 54854 14632 13429 27429 Face 54855 4645 27430 26558 Face 54856 4645 26713 27430 Face 54857 5040 27431 23146 Face 54858 5040 26527 27431 Face 54859 8172 27432 27748 Face 54860 8172 19490 27432 Face 54861 27434 44219 5356 Face 54862 41215 33345 27433 Face 54863 29586 27434 20523 Face 54864 1594 33345 41215 Face 54865 8147 27435 5921 Face 54866 8147 25212 27435 Face 54867 6234 27436 42490 Face 54868 6234 10641 27436 Face 54869 30042 27437 20513 Face 54870 6382 48431 27437 Face 54871 2731 27438 48825 Face 54872 40397 42415 27438 Face 54873 5092 27439 21461 Face 54874 5092 17589 27439 Face 54875 25056 27440 16573 Face 54876 25056 48056 27440 Face 54877 4997 27441 8440 Face 54878 29460 2387 41401 Face 54879 6910 27442 24276 Face 54880 6910 9207 27442 Face 54881 10422 27443 25911 Face 54882 48427 23570 45883 Face 54883 27443 27444 39674 Face 54884 45883 23571 27444 Face 54885 5743 27445 36076 Face 54886 5743 23612 30125 Face 54887 756 27446 49416 Face 54888 756 4806 27446 Face 54889 19281 27447 33000 Face 54890 38052 22607 27447 Face 54891 3668 27448 16053 Face 54892 3668 29246 27448 Face 54893 17583 27449 46630 Face 54894 17583 32724 27449 Face 54895 10059 27450 1704 Face 54896 10059 48665 27450 Face 54897 10258 27451 4067 Face 54898 10258 18295 27451 Face 54899 14003 27452 5487 Face 54900 14003 37465 27452 Face 54901 5037 27453 1321 Face 54902 5037 7681 27453 Face 54903 14398 27454 18932 Face 54904 14398 29953 27454 Face 54905 22895 27455 409 Face 54906 22895 6112 27455 Face 54907 10677 27456 19101 Face 54908 10677 39518 27456 Face 54909 8666 27457 12555 Face 54910 8666 34720 27457 Face 54911 1793 27458 33332 Face 54912 1793 44552 27458 Face 54913 10951 27459 37195 Face 54914 10951 7567 27459 Face 54915 12538 27460 17194 Face 54916 12538 9389 27460 Face 54917 18553 27461 20966 Face 54918 18553 30333 27461 Face 54919 33174 27462 25873 Face 54920 48130 23008 27462 Face 54921 5724 27463 16540 Face 54922 5724 9833 27463 Face 54923 15083 27464 49341 Face 54924 15083 34696 27464 Face 54925 5384 27465 19942 Face 54926 45687 24519 49596 Face 54927 5675 27466 26608 Face 54928 5675 19973 27466 Face 54929 12568 27467 7219 Face 54930 12568 40811 47446 Face 54931 27469 27468 16532 Face 54932 18893 1793 27468 Face 54933 18893 27469 49972 Face 54934 18893 27468 27469 Face 54935 9534 27470 27372 Face 54936 9534 460 49913 Face 54937 11044 27471 15633 Face 54938 11044 39318 27471 Face 54939 8908 27472 24677 Face 54940 42871 1090 27472 Face 54941 1475 27473 22829 Face 54942 1475 12051 27473 Face 54943 2812 27474 41379 Face 54944 2812 49928 27474 Face 54945 33980 41537 16955 Face 54946 46502 44547 27475 Face 54947 6321 27476 14955 Face 54948 6321 27003 27476 Face 54949 6321 27477 16551 Face 54950 6321 14955 27477 Face 54951 8554 27478 22359 Face 54952 8554 12318 27478 Face 54953 33376 35759 28839 Face 54954 2100 3875 27479 Face 54955 6377 27480 6680 Face 54956 6377 10121 46352 Face 54957 15510 27481 33262 Face 54958 32629 7835 27481 Face 54959 1900 27482 26853 Face 54960 1900 19402 27482 Face 54961 2875 27483 17735 Face 54962 41814 15248 27483 Face 54963 5499 40603 13350 Face 54964 5499 12712 27484 Face 54965 21471 27485 10384 Face 54966 21471 29801 27485 Face 54967 34287 27486 10984 Face 54968 34287 13341 27486 Face 54969 4760 27487 14752 Face 54970 4760 32343 27487 Face 54971 46507 27488 36967 Face 54972 46507 43212 27488 Face 54973 11712 27489 2468 Face 54974 11712 24195 27489 Face 54975 13950 27490 6700 Face 54976 13950 6 27490 Face 54977 21709 27491 21708 Face 54978 21709 7543 27491 Face 54979 15316 27492 8014 Face 54980 15316 21401 27492 Face 54981 6567 27493 14660 Face 54982 33113 19298 27493 Face 54983 1345 31854 42238 Face 54984 1345 37510 31854 Face 54985 9045 27495 338 Face 54986 9045 16105 27495 Face 54987 2481 27496 2483 Face 54988 2481 17114 27496 Face 54989 40564 27497 46959 Face 54990 1892 16588 27497 Face 54991 28031 27498 6843 Face 54992 2820 38409 27498 Face 54993 7790 27499 14678 Face 54994 7790 21940 27499 Face 54995 10645 27500 11900 Face 54996 27501 17480 27500 Face 54997 10645 27501 27500 Face 54998 10645 24871 27501 Face 54999 11018 27502 26617 Face 55000 11018 1483 27502 Face 55001 6174 27503 21652 Face 55002 6174 7805 27503 Face 55003 708 27504 5440 Face 55004 708 42519 27504 Face 55005 30275 27505 49320 Face 55006 30274 4014 27505 Face 55007 2627 27506 36582 Face 55008 2627 12068 27506 Face 55009 44543 27507 33199 Face 55010 43293 2983 27507 Face 55011 44543 27508 27507 Face 55012 42790 11767 27508 Face 55013 15160 27509 46235 Face 55014 15160 5187 27509 Face 55015 33727 45288 11750 Face 55016 33728 6599 27510 Face 55017 5680 27511 6127 Face 55018 5680 13904 39432 Face 55019 27511 27512 44531 Face 55020 39432 38485 27512 Face 55021 27514 27513 1190 Face 55022 9070 3659 27513 Face 55023 45092 27514 9222 Face 55024 9070 27513 27514 Face 55025 9070 27515 34203 Face 55026 9070 27514 27515 Face 55027 48174 27516 36423 Face 55028 33085 41792 35099 Face 55029 12576 40585 34549 Face 55030 12576 21130 27517 Face 55031 11704 27518 9565 Face 55032 11704 11705 27518 Face 55033 15353 27519 13584 Face 55034 15353 18515 27519 Face 55035 17004 27520 35615 Face 55036 17004 44229 27520 Face 55037 11312 27521 16404 Face 55038 11312 2702 27521 Face 55039 6461 27522 38327 Face 55040 6461 17450 27522 Face 55041 9729 27523 1501 Face 55042 9729 41634 27523 Face 55043 25564 27524 16275 Face 55044 25564 47448 27524 Face 55045 6921 27525 47270 Face 55046 6921 20644 27525 Face 55047 34750 27526 8388 Face 55048 12163 6347 27526 Face 55049 15243 27527 4465 Face 55050 15243 45226 27527 Face 55051 4832 27528 12612 Face 55052 4832 21931 27528 Face 55053 27530 27529 36538 Face 55054 27530 39319 27529 Face 55055 3579 27530 36538 Face 55056 29795 32398 27530 Face 55057 1872 27531 28858 Face 55058 36107 26017 27531 Face 55059 3050 27532 20282 Face 55060 3050 12669 27532 Face 55061 11210 27533 5570 Face 55062 11210 14924 27533 Face 55063 5335 27534 38032 Face 55064 5335 34233 27534 Face 55065 799 27535 8279 Face 55066 799 29924 27535 Face 55067 15548 27536 7653 Face 55068 15548 28095 27536 Face 55069 48024 27537 4900 Face 55070 48024 5150 27537 Face 55071 2052 27538 22137 Face 55072 2052 18579 27538 Face 55073 10988 27539 8149 Face 55074 10988 16011 27539 Face 55075 1402 27540 10976 Face 55076 44375 13548 27540 Face 55077 17565 27541 20301 Face 55078 40711 44909 27541 Face 55079 2390 27542 8937 Face 55080 2390 37069 27542 Face 55081 43496 27543 16479 Face 55082 18829 21463 27543 Face 55083 4037 27544 17370 Face 55084 4037 36941 27544 Face 55085 10031 27545 48070 Face 55086 10031 32075 27545 Face 55087 20560 27546 14694 Face 55088 20560 7110 27546 Face 55089 7571 27547 19559 Face 55090 48816 28981 27547 Face 55091 6126 27548 24355 Face 55092 6126 26206 27548 Face 55093 31516 27549 4544 Face 55094 21067 34822 27549 Face 55095 3192 27550 33213 Face 55096 28315 16648 27550 Face 55097 7588 27551 2960 Face 55098 7588 39654 27551 Face 55099 45274 27552 21705 Face 55100 38574 7484 27552 Face 55101 2842 27553 36832 Face 55102 2842 22460 27553 Face 55103 5838 27554 997 Face 55104 5838 26980 48858 Face 55105 20416 27555 27556 Face 55106 31634 45283 27555 Face 55107 23945 27556 27555 Face 55108 45991 20416 27556 Face 55109 248 27557 14840 Face 55110 248 47309 27557 Face 55111 13517 27558 34065 Face 55112 13517 18549 27558 Face 55113 27896 27559 36443 Face 55114 1191 17134 27559 Face 55115 34833 27560 15171 Face 55116 1036 12813 27560 Face 55117 11929 27561 7136 Face 55118 11929 39595 27561 Face 55119 5420 27562 26014 Face 55120 5420 23524 27562 Face 55121 41848 27563 1818 Face 55122 35560 41383 27563 Face 55123 41848 27564 27563 Face 55124 41848 39311 27564 Face 55125 1091 27565 29645 Face 55126 47283 18304 27565 Face 55127 47283 27566 7615 Face 55128 1091 47967 27566 Face 55129 4771 27567 11674 Face 55130 4771 21996 27567 Face 55131 1362 27568 19678 Face 55132 1362 9936 43317 Face 55133 4321 34007 40470 Face 55134 31689 4320 27569 Face 55135 28742 27570 49249 Face 55136 6266 8217 27570 Face 55137 9553 27571 36011 Face 55138 9553 12581 27571 Face 55139 14832 27572 38117 Face 55140 14832 11338 27572 Face 55141 9560 27573 19569 Face 55142 40577 1620 27573 Face 55143 15606 27574 24454 Face 55144 15606 14589 27574 Face 55145 3196 27575 23858 Face 55146 3196 20251 27575 Face 55147 27577 27576 23904 Face 55148 27577 36389 27576 Face 55149 6332 27577 22004 Face 55150 37109 18511 27577 Face 55151 47883 27578 4862 Face 55152 47883 14108 27578 Face 55153 12931 47081 30117 Face 55154 12931 18442 47081 Face 55155 5222 27580 35817 Face 55156 5222 40958 27580 Face 55157 8361 27581 23776 Face 55158 8361 40336 27581 Face 55159 14198 27582 42112 Face 55160 32856 12400 27582 Face 55161 35781 27583 23853 Face 55162 46402 1659 27583 Face 55163 10580 41719 20730 Face 55164 29849 37587 27584 Face 55165 1622 27585 5974 Face 55166 1622 12561 27585 Face 55167 7138 27586 47709 Face 55168 7138 21085 27586 Face 55169 2234 27587 34609 Face 55170 2234 34863 27587 Face 55171 2041 27588 23910 Face 55172 2041 25351 27588 Face 55173 4328 27589 13674 Face 55174 4328 21924 27589 Face 55175 16714 27590 31197 Face 55176 16714 41584 27590 Face 55177 11137 27591 48994 Face 55178 11137 3814 27591 Face 55179 40669 27592 46361 Face 55180 6535 23397 27592 Face 55181 3287 27593 32340 Face 55182 3287 5430 27593 Face 55183 2970 27594 30323 Face 55184 2970 10010 27594 Face 55185 44509 27595 1156 Face 55186 44510 11792 27595 Face 55187 658 27596 6264 Face 55188 658 10637 27596 Face 55189 14878 27597 15955 Face 55190 14878 35834 27597 Face 55191 19197 27598 3894 Face 55192 19197 22844 27598 Face 55193 7506 27599 5760 Face 55194 7506 43538 27599 Face 55195 29812 27600 25687 Face 55196 4111 14941 27600 Face 55197 2986 27601 32948 Face 55198 2986 13221 27601 Face 55199 7632 27602 28253 Face 55200 7632 17777 27602 Face 55201 11081 27603 17200 Face 55202 11081 15865 27603 Face 55203 12248 27604 22151 Face 55204 12248 11157 27604 Face 55205 32257 27605 25555 Face 55206 32256 44358 27605 Face 55207 427 27606 28470 Face 55208 427 22238 27606 Face 55209 41166 27607 5668 Face 55210 1014 6696 27607 Face 55211 772 27608 16878 Face 55212 772 14360 27608 Face 55213 5307 27609 17467 Face 55214 5307 17682 27609 Face 55215 6832 27610 36726 Face 55216 6832 36139 27610 Face 55217 2769 27611 24878 Face 55218 2769 19941 27611 Face 55219 18230 39101 45595 Face 55220 18230 24450 39101 Face 55221 1637 27613 16071 Face 55222 1637 11860 27613 Face 55223 45195 27614 21566 Face 55224 9325 34318 27614 Face 55225 2386 27615 9575 Face 55226 2386 24149 27615 Face 55227 34074 27616 5987 Face 55228 2386 9575 27616 Face 55229 3635 27617 16761 Face 55230 3635 6177 27617 Face 55231 21184 27618 45167 Face 55232 43761 1398 27618 Face 55233 2866 27619 38951 Face 55234 2866 28762 27619 Face 55235 49025 27620 22590 Face 55236 822 7219 27620 Face 55237 24430 27621 37706 Face 55238 24430 14454 27621 Face 55239 17753 27622 23829 Face 55240 17753 32090 27622 Face 55241 18212 27623 23512 Face 55242 18212 1251 27623 Face 55243 19081 27624 10052 Face 55244 19081 42928 27624 Face 55245 5433 27625 15873 Face 55246 44991 15251 27625 Face 55247 45132 27626 44160 Face 55248 27666 19337 27626 Face 55249 36782 27627 16325 Face 55250 999 24850 27627 Face 55251 1201 27628 24459 Face 55252 1201 35854 27628 Face 55253 4385 27629 19633 Face 55254 4385 27281 27629 Face 55255 1488 27630 12307 Face 55256 1488 37136 27630 Face 55257 16525 27631 17524 Face 55258 16525 5245 27631 Face 55259 3511 41455 2345 Face 55260 3511 41391 27632 Face 55261 14407 27633 17929 Face 55262 14407 9426 27633 Face 55263 27635 27634 16323 Face 55264 9823 33049 27634 Face 55265 9823 47743 15527 Face 55266 9823 27634 47743 Face 55267 12400 27636 46860 Face 55268 12400 21906 27636 Face 55269 36672 27637 20184 Face 55270 41693 19838 27637 Face 55271 16559 27638 10613 Face 55272 16559 3951 27638 Face 55273 21279 27639 9386 Face 55274 27640 21278 27639 Face 55275 21279 27640 27639 Face 55276 21279 495 27640 Face 55277 2870 27641 17871 Face 55278 2870 26995 27641 Face 55279 5366 27642 34200 Face 55280 5366 41972 27642 Face 55281 361 27643 30472 Face 55282 361 42887 27643 Face 55283 82 27644 15041 Face 55284 82 19841 27644 Face 55285 9179 27645 20695 Face 55286 9179 25449 27645 Face 55287 49935 27646 3388 Face 55288 27647 15100 27646 Face 55289 6651 27647 27646 Face 55290 6651 17500 27647 Face 55291 15193 27648 786 Face 55292 31097 3941 27648 Face 55293 10954 27649 982 Face 55294 10954 15179 27649 Face 55295 31718 27650 15572 Face 55296 27651 33490 27650 Face 55297 31718 27651 27650 Face 55298 6750 14123 27651 Face 55299 27653 27652 19698 Face 55300 27653 45572 27652 Face 55301 3449 27653 19698 Face 55302 3449 453 27653 Face 55303 7586 27654 43952 Face 55304 7586 1609 27654 Face 55305 2947 27655 32864 Face 55306 2947 14856 27655 Face 55307 7787 27656 19799 Face 55308 28833 13853 27656 Face 55309 8162 27657 13779 Face 55310 30277 34257 27657 Face 55311 33399 27658 11194 Face 55312 5396 980 27658 Face 55313 7383 27659 12904 Face 55314 7383 29564 27659 Face 55315 14589 27660 29150 Face 55316 14589 12449 27660 Face 55317 8763 27661 35302 Face 55318 34662 21966 27661 Face 55319 1289 27662 31081 Face 55320 1289 25212 27662 Face 55321 27662 27663 14627 Face 55322 27662 25212 27663 Face 55323 3555 27664 15648 Face 55324 3555 16279 27664 Face 55325 12688 27665 25917 Face 55326 12688 35193 27665 Face 55327 7066 27666 27626 Face 55328 7066 17308 27666 Face 55329 10744 27667 10743 Face 55330 10744 16333 27667 Face 55331 3397 27668 26349 Face 55332 3397 8465 27668 Face 55333 2595 27669 25133 Face 55334 2595 40517 27669 Face 55335 41182 48662 20157 Face 55336 11809 49226 27670 Face 55337 42244 27671 20256 Face 55338 1161 33258 27671 Face 55339 15121 27672 17923 Face 55340 15121 25979 27672 Face 55341 33074 27673 10403 Face 55342 32077 5956 27673 Face 55343 10767 27674 15425 Face 55344 10767 26786 27674 Face 55345 4992 27675 20711 Face 55346 4992 546 27675 Face 55347 39239 27676 25441 Face 55348 39239 13444 27676 Face 55349 12356 40992 23076 Face 55350 12356 2096 40992 Face 55351 7217 27678 5777 Face 55352 7217 33662 27678 Face 55353 48130 27679 23008 Face 55354 46698 6664 27679 Face 55355 12370 27680 32647 Face 55356 12370 21446 27680 Face 55357 20136 27681 11337 Face 55358 20136 2498 27681 Face 55359 37554 27682 33325 Face 55360 7614 25600 27682 Face 55361 11077 47562 42595 Face 55362 11077 21339 47562 Face 55363 811 27684 11067 Face 55364 28336 12423 27684 Face 55365 7912 27685 38655 Face 55366 7912 33527 27685 Face 55367 4061 27686 30100 Face 55368 4061 12117 27686 Face 55369 14203 27687 13504 Face 55370 14203 38946 49795 Face 55371 14203 27688 9106 Face 55372 14203 41589 27688 Face 55373 27281 27689 30467 Face 55374 27281 27282 27689 Face 55375 13106 27690 20225 Face 55376 13106 48443 27690 Face 55377 48952 27691 7411 Face 55378 2122 8483 27691 Face 55379 12070 27692 4928 Face 55380 12070 85 27692 Face 55381 11132 27693 20476 Face 55382 11132 57 39828 Face 55383 67 27694 22644 Face 55384 67 9726 27694 Face 55385 17371 27695 10711 Face 55386 17371 34419 27695 Face 55387 10479 27696 5306 Face 55388 10479 15997 27696 Face 55389 37467 27697 24998 Face 55390 20906 16570 27697 Face 55391 42447 27698 18920 Face 55392 42448 41705 43899 Face 55393 27700 27699 40802 Face 55394 9159 49439 38884 Face 55395 9159 27700 5578 Face 55396 9159 38884 27700 Face 55397 16096 27701 13355 Face 55398 16096 37804 27701 Face 55399 15926 27702 42407 Face 55400 15926 34970 27702 Face 55401 8688 27703 25080 Face 55402 8688 44406 27703 Face 55403 4669 27704 29962 Face 55404 4669 48224 27704 Face 55405 31595 27705 10573 Face 55406 4538 14487 27705 Face 55407 11353 27706 26325 Face 55408 11353 44094 43747 Face 55409 2457 27707 30707 Face 55410 33955 44204 27707 Face 55411 396 27708 16461 Face 55412 396 7690 27708 Face 55413 2766 27709 37803 Face 55414 2766 10501 27709 Face 55415 19953 42149 23991 Face 55416 19953 435 27710 Face 55417 15024 27711 19049 Face 55418 15024 1026 27711 Face 55419 663 27712 11911 Face 55420 663 41255 27712 Face 55421 22362 27713 36900 Face 55422 22362 33086 27713 Face 55423 42608 27714 39571 Face 55424 42607 18960 27714 Face 55425 41276 27715 29369 Face 55426 3446 15257 27715 Face 55427 11340 27716 35036 Face 55428 11340 47815 27716 Face 55429 412 27717 26955 Face 55430 412 26954 27717 Face 55431 9289 27718 19810 Face 55432 48632 45209 27718 Face 55433 35520 27719 396 Face 55434 7049 7682 27719 Face 55435 2079 27720 49683 Face 55436 27721 17792 27720 Face 55437 2079 27721 27720 Face 55438 2079 15283 27721 Face 55439 30410 27722 12438 Face 55440 3385 17437 27722 Face 55441 13601 27723 42580 Face 55442 13601 538 27723 Face 55443 33798 27724 47130 Face 55444 4284 8039 27724 Face 55445 4737 27725 7425 Face 55446 4737 17562 27725 Face 55447 11543 27726 23642 Face 55448 11543 5154 27726 Face 55449 44132 27728 22776 Face 55450 11155 42038 27727 Face 55451 27727 27728 44132 Face 55452 27727 562 27728 Face 55453 20438 27729 41337 Face 55454 45421 37472 27729 Face 55455 37196 27730 6913 Face 55456 5161 15518 27730 Face 55457 19803 27731 26448 Face 55458 19803 32732 27731 Face 55459 34111 27732 36356 Face 55460 30094 42614 27732 Face 55461 17061 36746 17060 Face 55462 17061 5577 27733 Face 55463 985 27734 19534 Face 55464 35489 12009 27734 Face 55465 9022 27735 27217 Face 55466 9022 26588 27735 Face 55467 46032 27736 14593 Face 55468 46032 30447 27736 Face 55469 7812 27737 39868 Face 55470 7812 11017 27737 Face 55471 15411 27738 8505 Face 55472 48934 37525 27738 Face 55473 27740 40639 13159 Face 55474 27740 6874 27739 Face 55475 3580 27740 22782 Face 55476 3580 6874 27740 Face 55477 4826 27741 1375 Face 55478 33280 39260 27741 Face 55479 20524 49004 1183 Face 55480 27743 15761 27742 Face 55481 20524 27743 49004 Face 55482 32949 44602 27743 Face 55483 9703 27744 30720 Face 55484 9703 35255 27744 Face 55485 3442 27745 21090 Face 55486 3442 16856 27745 Face 55487 3691 27746 15365 Face 55488 3691 7710 27746 Face 55489 18477 27747 25473 Face 55490 27748 30521 27747 Face 55491 18477 27748 27747 Face 55492 18477 42406 27748 Face 55493 828 27749 16569 Face 55494 828 6509 27749 Face 55495 3645 27750 47740 Face 55496 27751 30856 27750 Face 55497 3645 27751 27750 Face 55498 36112 21512 27751 Face 55499 27753 46368 9637 Face 55500 6829 43321 27752 Face 55501 6829 27753 47458 Face 55502 6829 46368 27753 Face 55503 14804 27754 10640 Face 55504 14804 9553 27754 Face 55505 14548 27755 219 Face 55506 14548 22856 27755 Face 55507 31159 27756 28634 Face 55508 6035 37940 27756 Face 55509 28060 27757 9602 Face 55510 7074 25862 27757 Face 55511 22911 27758 37438 Face 55512 22911 46740 27758 Face 55513 12861 27759 616 Face 55514 12861 22232 27759 Face 55515 9451 27760 24872 Face 55516 9451 25968 27761 Face 55517 27760 27761 25968 Face 55518 27760 9451 27761 Face 55519 29670 27762 4935 Face 55520 10190 10768 49615 Face 55521 33823 27763 9763 Face 55522 39212 27109 27763 Face 55523 4910 27764 19819 Face 55524 4910 18836 27764 Face 55525 9549 27765 35400 Face 55526 32310 19262 27765 Face 55527 2138 27766 48522 Face 55528 43260 34194 27766 Face 55529 36754 27767 4527 Face 55530 571 37924 27767 Face 55531 9810 27768 15756 Face 55532 9810 45371 27768 Face 55533 33797 27769 26837 Face 55534 12624 26836 27769 Face 55535 10727 27770 8551 Face 55536 10727 17394 27770 Face 55537 7376 27771 17767 Face 55538 7376 7025 27771 Face 55539 22068 27772 14727 Face 55540 49860 31206 46488 Face 55541 22068 27773 27772 Face 55542 22068 47636 27773 Face 55543 5093 27774 47599 Face 55544 41344 4457 27774 Face 55545 17068 27775 43314 Face 55546 17068 43480 27775 Face 55547 1341 27776 17392 Face 55548 1341 27239 27776 Face 55549 11385 27777 17840 Face 55550 11385 21202 27777 Face 55551 49885 27778 14886 Face 55552 15865 34747 27778 Face 55553 38486 27779 17115 Face 55554 2278 22818 27779 Face 55555 8199 27780 40067 Face 55556 8199 44346 27780 Face 55557 13599 27781 33228 Face 55558 33577 13813 27781 Face 55559 10904 27782 5621 Face 55560 10904 45421 27782 Face 55561 1138 27783 40109 Face 55562 1138 3166 27783 Face 55563 4307 27784 33497 Face 55564 4307 26839 27784 Face 55565 17897 27785 40217 Face 55566 17897 40691 27785 Face 55567 8443 27786 5088 Face 55568 8443 25989 27786 Face 55569 10473 27787 32702 Face 55570 42207 22011 27787 Face 55571 32415 27788 22580 Face 55572 9762 21903 27788 Face 55573 2655 27789 38878 Face 55574 2655 46420 27789 Face 55575 4477 27790 42210 Face 55576 4477 17560 27790 Face 55577 756 27791 4806 Face 55578 756 6462 27791 Face 55579 12281 27792 14434 Face 55580 40957 19576 27792 Face 55581 2860 27793 13745 Face 55582 2860 18460 27793 Face 55583 10206 27794 16627 Face 55584 10206 42367 27794 Face 55585 9977 27795 9978 Face 55586 9977 28260 27795 Face 55587 3316 27796 20700 Face 55588 3316 20096 27796 Face 55589 41547 27797 22390 Face 55590 47363 13762 27797 Face 55591 5162 27798 36227 Face 55592 5162 11934 27798 Face 55593 1449 27799 9551 Face 55594 1449 9552 27799 Face 55595 3561 27800 25249 Face 55596 3561 2321 27800 Face 55597 3288 27801 30705 Face 55598 3288 14581 27801 Face 55599 8902 27802 511 Face 55600 8902 17835 49628 Face 55601 13065 27803 15670 Face 55602 13065 27317 27803 Face 55603 14230 47431 40023 Face 55604 29470 14392 27804 Face 55605 27806 27805 49672 Face 55606 3953 13577 27805 Face 55607 3953 27806 12057 Face 55608 3953 27805 27806 Face 55609 33155 27807 30550 Face 55610 4913 34554 27807 Face 55611 18169 27808 11732 Face 55612 18169 38223 27808 Face 55613 14298 27809 14297 Face 55614 14298 3600 27809 Face 55615 16774 27810 46408 Face 55616 49437 2214 27810 Face 55617 3577 27811 43195 Face 55618 3577 14233 27811 Face 55619 23007 27812 37670 Face 55620 23007 46324 27812 Face 55621 10619 27813 6235 Face 55622 10619 3779 27813 Face 55623 1009 27814 7868 Face 55624 1009 6586 27814 Face 55625 14802 27815 44963 Face 55626 14802 22135 27815 Face 55627 11807 48081 36211 Face 55628 11807 17098 27816 Face 55629 40085 27817 26500 Face 55630 6283 20686 27817 Face 55631 670 27818 13679 Face 55632 670 7279 27818 Face 55633 2190 27819 19005 Face 55634 44823 37027 47890 Face 55635 8381 27820 43514 Face 55636 8381 17169 27820 Face 55637 14346 27821 29746 Face 55638 14346 1773 27821 Face 55639 1331 27822 14579 Face 55640 1331 48039 27822 Face 55641 10743 27823 35859 Face 55642 10743 17784 27823 Face 55643 14849 27824 27351 Face 55644 14849 4253 27824 Face 55645 27662 27825 31081 Face 55646 27662 14627 27825 Face 55647 10225 27826 29251 Face 55648 37601 16666 27826 Face 55649 1392 27827 23539 Face 55650 1392 49073 27827 Face 55651 44892 27828 18267 Face 55652 10629 33926 27828 Face 55653 4800 46356 20303 Face 55654 4800 36219 27829 Face 55655 4756 27830 2167 Face 55656 4756 37764 27830 Face 55657 14097 27831 46781 Face 55658 14097 12863 27831 Face 55659 2752 27832 42530 Face 55660 2752 37586 47352 Face 55661 3391 27833 6539 Face 55662 32253 10385 27833 Face 55663 12839 27834 2324 Face 55664 12839 17475 27834 Face 55665 6824 27835 16864 Face 55666 6824 36891 27835 Face 55667 35898 33414 17614 Face 55668 8654 48738 27836 Face 55669 13400 27837 19880 Face 55670 13400 3361 27837 Face 55671 40738 27838 19216 Face 55672 2255 12277 27838 Face 55673 15408 27839 42912 Face 55674 15408 5139 27839 Face 55675 13519 27840 16513 Face 55676 13519 45010 27840 Face 55677 12727 32859 26547 Face 55678 28373 25388 34400 Face 55679 30 27842 45916 Face 55680 30 9653 27842 Face 55681 42186 27843 48739 Face 55682 42186 27151 27843 Face 55683 9086 27844 18827 Face 55684 9086 31545 27844 Face 55685 19615 27845 22996 Face 55686 19615 128 27845 Face 55687 9483 27846 23745 Face 55688 9483 19304 27846 Face 55689 3680 27847 21888 Face 55690 3680 14907 27847 Face 55691 27849 27848 41861 Face 55692 9618 45449 27848 Face 55693 46434 27849 41861 Face 55694 9618 27848 27849 Face 55695 12150 27850 12399 Face 55696 12150 6861 27850 Face 55697 465 27851 19232 Face 55698 465 12537 27851 Face 55699 28000 27852 22581 Face 55700 28000 18023 27852 Face 55701 35603 27853 15204 Face 55702 29171 15030 27853 Face 55703 21917 27854 44879 Face 55704 21917 15688 27854 Face 55705 10371 27855 31476 Face 55706 10371 45462 27855 Face 55707 2852 27856 39755 Face 55708 2852 1607 27856 Face 55709 4795 27857 27992 Face 55710 4795 47640 27857 Face 55711 4209 27858 48213 Face 55712 4209 13250 27858 Face 55713 1006 27859 14732 Face 55714 1006 33555 27859 Face 55715 4207 27860 17959 Face 55716 4207 43206 27860 Face 55717 9393 27861 34000 Face 55718 9393 25758 43853 Face 55719 13776 27862 35593 Face 55720 13776 17614 27862 Face 55721 8631 27863 37178 Face 55722 8631 27424 27863 Face 55723 13763 27864 6906 Face 55724 47603 3090 43002 Face 55725 22240 27865 13115 Face 55726 22240 8960 27865 Face 55727 17654 27866 46654 Face 55728 17654 8787 27866 Face 55729 6757 27867 2602 Face 55730 6757 16337 27867 Face 55731 29628 27868 13564 Face 55732 14280 7146 27868 Face 55733 33450 45539 48184 Face 55734 33450 19592 27869 Face 55735 10983 34571 40500 Face 55736 10983 23214 34571 Face 55737 8183 27871 5117 Face 55738 8183 10636 27871 Face 55739 4572 27872 15443 Face 55740 4572 25025 27872 Face 55741 35186 27873 18639 Face 55742 35186 16916 27873 Face 55743 6340 48928 13060 Face 55744 44049 5183 27874 Face 55745 14191 27875 4557 Face 55746 14191 42840 27875 Face 55747 11613 27876 16185 Face 55748 11613 21358 27876 Face 55749 19033 48717 15305 Face 55750 19033 8506 27877 Face 55751 2699 27878 25582 Face 55752 2699 47264 27878 Face 55753 4148 27879 14329 Face 55754 4148 25301 27879 Face 55755 8861 27880 469 Face 55756 8861 5826 27880 Face 55757 16 27881 31301 Face 55758 16 13053 27881 Face 55759 11861 27882 16691 Face 55760 11861 17640 27882 Face 55761 20903 27883 6120 Face 55762 20903 530 27883 Face 55763 2017 27884 25002 Face 55764 2017 25280 27884 Face 55765 12355 27885 26518 Face 55766 12355 4743 27885 Face 55767 18501 27886 4964 Face 55768 18501 3249 27886 Face 55769 3536 27887 40890 Face 55770 37615 9558 27887 Face 55771 25663 27888 7059 Face 55772 25663 12584 27888 Face 55773 874 27889 13757 Face 55774 38309 11827 27889 Face 55775 13704 27890 958 Face 55776 34472 40991 27890 Face 55777 32491 27891 17725 Face 55778 2974 49199 27891 Face 55779 9839 27892 21491 Face 55780 9839 47362 27892 Face 55781 10789 27893 3021 Face 55782 10789 26709 27893 Face 55783 20241 27894 40056 Face 55784 20241 35207 27894 Face 55785 27894 27895 40056 Face 55786 27894 40389 27895 Face 55787 27897 27896 44539 Face 55788 27897 27559 27896 Face 55789 1191 27897 23890 Face 55790 1191 27559 27897 Face 55791 10463 27898 32485 Face 55792 10463 26860 27898 Face 55793 1304 27899 797 Face 55794 1304 11787 27899 Face 55795 37690 27900 24639 Face 55796 23345 3948 27900 Face 55797 19023 27901 13048 Face 55798 19023 37999 27901 Face 55799 32332 27902 40559 Face 55800 1230 13603 27902 Face 55801 13759 27903 37269 Face 55802 13759 22253 27903 Face 55803 45950 42927 19438 Face 55804 5398 36641 27904 Face 55805 35111 27905 44468 Face 55806 35111 8590 27905 Face 55807 18872 27906 9954 Face 55808 18872 30601 27906 Face 55809 40139 27907 3448 Face 55810 40139 20245 27907 Face 55811 9165 27908 17355 Face 55812 9165 5720 27908 Face 55813 13907 27909 13906 Face 55814 13907 10643 27909 Face 55815 3879 27910 23895 Face 55816 34769 11526 27910 Face 55817 7888 27911 46774 Face 55818 33824 20640 27911 Face 55819 12643 27912 12644 Face 55820 12643 36780 27912 Face 55821 29113 27913 17037 Face 55822 5281 3692 27913 Face 55823 32508 27914 14210 Face 55824 7840 4205 27914 Face 55825 43282 27915 17720 Face 55826 43282 18223 27915 Face 55827 47790 27916 18928 Face 55828 2575 32354 27916 Face 55829 7791 27917 22855 Face 55830 7791 1599 27917 Face 55831 30540 27918 26796 Face 55832 6923 38234 27918 Face 55833 6214 29651 32710 Face 55834 6214 46660 29651 Face 55835 42231 27920 16201 Face 55836 1971 25888 27920 Face 55837 9737 27921 38219 Face 55838 9737 40772 27921 Face 55839 11398 27922 12497 Face 55840 11398 17327 27922 Face 55841 1127 27923 3136 Face 55842 1127 31628 27923 Face 55843 17002 27924 25247 Face 55844 17002 797 27924 Face 55845 15575 27925 26238 Face 55846 15575 28703 27925 Face 55847 27927 27926 7213 Face 55848 27927 30473 27926 Face 55849 48609 27927 11363 Face 55850 6608 30473 27927 Face 55851 15128 27928 40010 Face 55852 15128 41086 27928 Face 55853 8293 27929 3388 Face 55854 32659 49919 27929 Face 55855 33195 27930 12743 Face 55856 9639 11035 27930 Face 55857 32958 42898 22084 Face 55858 45739 13057 27931 Face 55859 7670 27932 17879 Face 55860 7670 30198 27932 Face 55861 3999 27933 12040 Face 55862 3999 23160 27933 Face 55863 2889 27934 34412 Face 55864 2889 40961 27934 Face 55865 2767 27935 45547 Face 55866 2767 17443 27935 Face 55867 1556 27936 22545 Face 55868 1556 17347 27936 Face 55869 6410 27937 24312 Face 55870 6410 22805 27937 Face 55871 16909 27938 30574 Face 55872 16909 11273 27938 Face 55873 13435 27939 38694 Face 55874 38275 22015 27939 Face 55875 10914 27940 8152 Face 55876 10914 42102 27940 Face 55877 4584 27941 23769 Face 55878 33242 31433 27941 Face 55879 14388 27942 16698 Face 55880 14388 44310 27942 Face 55881 13009 27943 42306 Face 55882 13009 44574 27943 Face 55883 5004 27944 20990 Face 55884 5004 18215 27944 Face 55885 10848 27945 17745 Face 55886 10848 46639 27945 Face 55887 8822 42415 43439 Face 55888 8822 27438 42415 Face 55889 16302 27947 37227 Face 55890 16302 26915 27947 Face 55891 14591 27948 27958 Face 55892 14591 7630 27948 Face 55893 39373 27949 24946 Face 55894 27948 7630 27949 Face 55895 7145 27950 46099 Face 55896 7145 15387 27950 Face 55897 15721 27951 49750 Face 55898 15721 48781 27951 Face 55899 12911 27952 4292 Face 55900 12911 36909 27952 Face 55901 2150 27953 22865 Face 55902 35424 17577 27953 Face 55903 499 27954 6578 Face 55904 499 24460 27954 Face 55905 12740 27955 31334 Face 55906 43488 23670 27955 Face 55907 47985 27956 19831 Face 55908 45579 7430 40807 Face 55909 15228 41152 39481 Face 55910 15228 18719 27957 Face 55911 27959 27958 27948 Face 55912 11069 4283 27958 Face 55913 11069 27959 6282 Face 55914 11069 27958 27959 Face 55915 6495 27960 38415 Face 55916 6495 14267 27960 Face 55917 11388 27961 3964 Face 55918 11388 20794 27961 Face 55919 9698 27962 1157 Face 55920 9698 3078 27962 Face 55921 5286 27963 17628 Face 55922 5286 246 27963 Face 55923 12025 27964 16355 Face 55924 43842 18647 27964 Face 55925 19345 27965 42022 Face 55926 19345 20627 27965 Face 55927 12286 27966 24542 Face 55928 12286 47288 27966 Face 55929 13025 27967 35487 Face 55930 13025 42832 27967 Face 55931 27969 27968 21841 Face 55932 27969 49562 27968 Face 55933 8827 27969 33024 Face 55934 8827 22949 27969 Face 55935 14450 27970 11571 Face 55936 14450 44033 27970 Face 55937 26208 27971 39955 Face 55938 26208 42141 27971 Face 55939 10617 27972 30082 Face 55940 10617 44445 27972 Face 55941 1791 27973 19305 Face 55942 1791 9832 47634 Face 55943 27975 27974 909 Face 55944 34903 14484 27974 Face 55945 26524 27975 26523 Face 55946 34903 27974 27975 Face 55947 13635 27976 21958 Face 55948 13635 9585 27976 Face 55949 6559 27977 46630 Face 55950 6559 11888 27977 Face 55951 6186 27978 25079 Face 55952 6186 30610 27978 Face 55953 7871 27979 40 Face 55954 7871 29085 27979 Face 55955 4963 27980 22969 Face 55956 40108 14397 27980 Face 55957 38737 27981 30226 Face 55958 38737 49402 27981 Face 55959 16406 27982 18047 Face 55960 40181 27330 27982 Face 55961 16275 27983 20432 Face 55962 16275 27524 27983 Face 55963 5799 27984 18638 Face 55964 27985 49575 27984 Face 55965 5799 27985 27984 Face 55966 38564 14561 27985 Face 55967 17517 27986 26925 Face 55968 17517 26572 27986 Face 55969 44368 27987 35064 Face 55970 42196 45584 42971 Face 55971 39758 27988 27987 Face 55972 30376 24457 27988 Face 55973 16301 27989 23457 Face 55974 32672 13070 27989 Face 55975 45415 27990 20565 Face 55976 2355 29949 27990 Face 55977 49546 27991 12774 Face 55978 11497 11528 27991 Face 55979 15633 27992 27857 Face 55980 15633 37754 27992 Face 55981 7428 27993 7427 Face 55982 7428 39965 27993 Face 55983 7711 27994 40209 Face 55984 7711 41459 27994 Face 55985 13613 27995 49413 Face 55986 13613 2187 27995 Face 55987 32960 27996 26620 Face 55988 11384 12736 27996 Face 55989 1956 27997 11042 Face 55990 1956 7344 27997 Face 55991 744 27998 42931 Face 55992 744 11450 27998 Face 55993 4228 27999 17275 Face 55994 4228 22282 27999 Face 55995 3281 28000 18644 Face 55996 3281 18023 28000 Face 55997 28466 28001 47293 Face 55998 39171 12252 28001 Face 55999 12086 28002 21791 Face 56000 12086 23705 28002 Face 56001 13075 28003 16988 Face 56002 13075 4230 28003 Face 56003 13586 28004 9774 Face 56004 13586 26425 28004 Face 56005 5718 28005 9261 Face 56006 5718 40186 28005 Face 56007 31930 28006 47314 Face 56008 3623 26659 28006 Face 56009 9743 28007 1904 Face 56010 9743 19712 28007 Face 56011 27802 28008 4308 Face 56012 27802 8902 49628 Face 56013 4021 28009 13720 Face 56014 4021 13883 28009 Face 56015 8315 28010 14925 Face 56016 8315 42200 28010 Face 56017 8824 28011 19723 Face 56018 28406 1018 28011 Face 56019 11748 28012 15780 Face 56020 11748 29896 28012 Face 56021 11591 28013 681 Face 56022 11591 2185 28013 Face 56023 6754 28014 44679 Face 56024 6754 33657 28014 Face 56025 11801 49836 18404 Face 56026 41710 11659 28015 Face 56027 3318 28016 37325 Face 56028 3318 38211 28016 Face 56029 3234 37885 27368 Face 56030 28018 37515 28017 Face 56031 3234 28018 28017 Face 56032 3234 19653 28018 Face 56033 8249 28019 24621 Face 56034 8249 41002 28019 Face 56035 13513 28020 40400 Face 56036 13513 30667 28020 Face 56037 16214 28021 2922 Face 56038 16214 19985 28021 Face 56039 46961 28022 9709 Face 56040 3908 26723 28022 Face 56041 28024 28023 18730 Face 56042 33294 18088 28023 Face 56043 12095 28024 34418 Face 56044 12095 28023 28024 Face 56045 28026 28025 7392 Face 56046 7391 7390 28025 Face 56047 7391 28026 31494 Face 56048 7391 28025 28026 Face 56049 28912 28027 21242 Face 56050 1129 39304 28027 Face 56051 3609 28028 12312 Face 56052 3609 15192 28028 Face 56053 5405 28029 30236 Face 56054 46415 7711 28029 Face 56055 19380 28030 20842 Face 56056 19380 34258 28030 Face 56057 2820 28031 47599 Face 56058 2820 27498 28031 Face 56059 7482 28032 11987 Face 56060 7482 1975 28032 Face 56061 14767 30861 26231 Face 56062 14767 49263 30861 Face 56063 41540 28034 32769 Face 56064 8078 43016 28034 Face 56065 28034 49263 32769 Face 56066 28034 36984 28035 Face 56067 5891 28036 27228 Face 56068 5891 8705 28036 Face 56069 44344 28037 34100 Face 56070 49481 16641 28037 Face 56071 10743 28038 17784 Face 56072 10743 48793 28038 Face 56073 12154 28039 2695 Face 56074 12154 7278 28039 Face 56075 14089 28040 17125 Face 56076 14089 45287 28040 Face 56077 28040 28041 17125 Face 56078 28040 13966 28041 Face 56079 6511 28042 20029 Face 56080 48065 10825 28042 Face 56081 4491 28043 45767 Face 56082 4491 44996 28043 Face 56083 46162 28044 36702 Face 56084 2902 30523 28044 Face 56085 3728 28045 3727 Face 56086 3728 41613 28045 Face 56087 7746 28046 41864 Face 56088 7746 16867 28046 Face 56089 44131 28047 38336 Face 56090 44131 6210 28047 Face 56091 10279 28048 3498 Face 56092 10279 8499 28048 Face 56093 17559 28049 25608 Face 56094 17559 49695 37456 Face 56095 13688 28050 23799 Face 56096 13688 25737 28050 Face 56097 45841 28051 42011 Face 56098 45841 26504 28051 Face 56099 10084 28052 38425 Face 56100 10084 28586 28052 Face 56101 8102 28053 18364 Face 56102 8102 16988 28053 Face 56103 35166 28054 7153 Face 56104 285 23518 28054 Face 56105 296 28055 1823 Face 56106 38660 32616 38563 Face 56107 9835 28056 14702 Face 56108 39888 30960 28056 Face 56109 14929 28057 6879 Face 56110 14929 43571 49980 Face 56111 204 28058 18649 Face 56112 204 5774 28058 Face 56113 9138 28059 3303 Face 56114 9138 31149 28059 Face 56115 34567 28060 39900 Face 56116 34567 27757 28060 Face 56117 38509 28061 26912 Face 56118 36756 20067 39220 Face 56119 16200 28062 20382 Face 56120 16200 6340 28062 Face 56121 28064 28063 11846 Face 56122 43902 13483 28063 Face 56123 28065 28064 11846 Face 56124 43902 28063 28064 Face 56125 18166 28065 45411 Face 56126 18166 28064 28065 Face 56127 4483 28066 9733 Face 56128 4483 22507 28066 Face 56129 42956 28067 10927 Face 56130 2312 16167 28067 Face 56131 7862 28068 44737 Face 56132 7862 10768 28068 Face 56133 2620 28069 41292 Face 56134 2620 43403 28069 Face 56135 16676 28070 44222 Face 56136 16676 9914 28070 Face 56137 4437 28071 34808 Face 56138 4437 5959 28071 Face 56139 333 28072 32533 Face 56140 333 35142 28072 Face 56141 36568 28073 23770 Face 56142 28006 39784 28073 Face 56143 17307 28074 22024 Face 56144 17307 39914 28074 Face 56145 17332 28075 36627 Face 56146 17332 38061 28075 Face 56147 9551 28076 1449 Face 56148 9551 9550 28076 Face 56149 13732 28077 33504 Face 56150 13732 18957 28077 Face 56151 5546 28078 34562 Face 56152 5546 30262 28078 Face 56153 20658 28079 30385 Face 56154 20658 640 28079 Face 56155 23763 28080 19747 Face 56156 23763 30994 28080 Face 56157 28082 28081 24162 Face 56158 890 10705 28081 Face 56159 890 28082 26325 Face 56160 890 28081 28082 Face 56161 13461 28083 33807 Face 56162 13461 24401 28083 Face 56163 107 28084 6086 Face 56164 107 13958 28084 Face 56165 5434 28085 18243 Face 56166 5434 30140 28085 Face 56167 681 28086 11591 Face 56168 681 27092 39577 Face 56169 2006 28087 16118 Face 56170 2006 19808 28087 Face 56171 4599 28088 11306 Face 56172 4599 23237 28088 Face 56173 770 28089 17494 Face 56174 770 18395 28089 Face 56175 49126 28090 9018 Face 56176 5805 43632 28090 Face 56177 2123 28091 38499 Face 56178 37663 15373 28091 Face 56179 6695 28092 12855 Face 56180 6695 35871 28092 Face 56181 9853 28093 13057 Face 56182 9853 15108 28093 Face 56183 6885 28094 18891 Face 56184 6885 26891 28094 Face 56185 2783 28095 40382 Face 56186 2783 33595 28095 Face 56187 16063 28096 13136 Face 56188 16063 19769 28096 Face 56189 3704 28097 16319 Face 56190 3704 15800 28097 Face 56191 34268 49190 18878 Face 56192 4649 49477 28098 Face 56193 14812 28099 3153 Face 56194 14812 48604 28099 Face 56195 1196 28100 36391 Face 56196 1196 30027 28100 Face 56197 12575 28101 42406 Face 56198 12575 47398 28101 Face 56199 4019 28102 14966 Face 56200 28120 8361 28102 Face 56201 4019 28103 28102 Face 56202 4019 29152 28103 Face 56203 40841 28104 1787 Face 56204 40841 11453 28104 Face 56205 49849 28105 11054 Face 56206 7152 9416 28105 Face 56207 2629 28106 24897 Face 56208 2629 28107 28106 Face 56209 13327 28107 8156 Face 56210 13327 28106 28107 Face 56211 118 28108 13046 Face 56212 118 27343 28108 Face 56213 158 28109 15038 Face 56214 158 10734 28109 Face 56215 44295 28110 38626 Face 56216 15451 2254 43472 Face 56217 3825 28111 20513 Face 56218 35724 22582 28111 Face 56219 5004 28112 32740 Face 56220 5004 49743 28112 Face 56221 9693 28113 20629 Face 56222 9693 8993 28113 Face 56223 4240 28114 21501 Face 56224 4240 11799 28114 Face 56225 12614 28115 6855 Face 56226 12614 12613 28115 Face 56227 18170 28116 37450 Face 56228 41818 1038 28116 Face 56229 3041 28117 46401 Face 56230 3041 9061 28117 Face 56231 14961 28118 38364 Face 56232 14961 11661 28118 Face 56233 25605 28119 18578 Face 56234 25605 48228 28119 Face 56235 28103 28120 28102 Face 56236 28103 1445 36602 Face 56237 22993 28121 7244 Face 56238 22993 3316 28121 Face 56239 5677 28122 3733 Face 56240 5677 11982 28122 Face 56241 37914 28123 44666 Face 56242 5262 33085 28123 Face 56243 3300 43744 49344 Face 56244 3300 14789 28124 Face 56245 3142 28125 33925 Face 56246 3142 13161 28125 Face 56247 34114 28126 38983 Face 56248 34114 16543 28126 Face 56249 10694 28127 4414 Face 56250 10694 41655 28127 Face 56251 28848 28128 6200 Face 56252 28848 28129 28128 Face 56253 2636 28129 21728 Face 56254 33039 28128 28129 Face 56255 40426 28130 33908 Face 56256 263 5130 28130 Face 56257 20713 28131 25771 Face 56258 20713 4972 28131 Face 56259 39779 28132 14621 Face 56260 9700 37863 28132 Face 56261 31110 44411 8355 Face 56262 31110 10660 28133 Face 56263 5832 28134 17209 Face 56264 31531 9077 28134 Face 56265 3422 28135 15319 Face 56266 30837 41186 28135 Face 56267 9753 34818 47048 Face 56268 9753 5214 28136 Face 56269 28207 28137 37796 Face 56270 46467 29776 28137 Face 56271 24338 28138 23897 Face 56272 33340 13717 28138 Face 56273 9599 28139 1748 Face 56274 9599 37292 28139 Face 56275 11189 28140 31366 Face 56276 11189 24927 28140 Face 56277 6093 28141 24562 Face 56278 6093 25932 28141 Face 56279 9930 46885 37696 Face 56280 28143 47570 46885 Face 56281 9930 28143 46885 Face 56282 9930 31884 28143 Face 56283 5605 28144 44522 Face 56284 5605 46120 28144 Face 56285 22544 28145 3887 Face 56286 39776 8497 28145 Face 56287 37947 36933 15628 Face 56288 768 15168 28146 Face 56289 28148 28147 7047 Face 56290 28148 5740 28147 Face 56291 42970 28148 12471 Face 56292 17817 5740 28148 Face 56293 22010 28149 20277 Face 56294 28150 27382 28149 Face 56295 22010 28150 28149 Face 56296 22010 41255 28150 Face 56297 4407 28152 18943 Face 56298 4407 20401 28152 Face 56299 28151 28152 20401 Face 56300 28151 13510 28152 Face 56301 6686 28153 23343 Face 56302 6686 25956 28153 Face 56303 28155 28154 13124 Face 56304 28155 10345 28154 Face 56305 6851 28155 13124 Face 56306 6851 22332 28155 Face 56307 13913 28156 18117 Face 56308 13913 29896 43584 Face 56309 3910 28157 584 Face 56310 3910 10717 28157 Face 56311 3910 28158 11631 Face 56312 3910 45684 28158 Face 56313 13003 28159 506 Face 56314 13003 26975 28159 Face 56315 7169 28160 21549 Face 56316 7169 40878 28160 Face 56317 8460 28161 22624 Face 56318 45762 20751 28161 Face 56319 7537 28162 11228 Face 56320 7537 19196 28162 Face 56321 28164 28163 9768 Face 56322 6792 31060 28163 Face 56323 6792 28164 20141 Face 56324 6792 28163 28164 Face 56325 11769 28165 22409 Face 56326 11769 16764 28165 Face 56327 823 28166 8984 Face 56328 41399 47608 28166 Face 56329 15201 28167 39147 Face 56330 15201 16055 28167 Face 56331 9744 28168 12963 Face 56332 28169 4710 28168 Face 56333 9744 28169 28168 Face 56334 49249 2837 42636 Face 56335 858 28170 4724 Face 56336 44833 26939 28170 Face 56337 9583 28171 40114 Face 56338 9583 23423 38627 Face 56339 5761 46123 19918 Face 56340 5761 14785 28172 Face 56341 3697 28173 35621 Face 56342 3697 466 28173 Face 56343 18288 28174 3835 Face 56344 18288 2729 28174 Face 56345 19505 28175 8062 Face 56346 19505 26286 28175 Face 56347 15932 28176 45608 Face 56348 15932 5032 28176 Face 56349 5597 40183 12890 Face 56350 44299 23909 28177 Face 56351 5318 28178 45437 Face 56352 5318 19398 28178 Face 56353 4130 28179 18180 Face 56354 4130 29058 28179 Face 56355 13370 28180 37040 Face 56356 13370 31865 28180 Face 56357 6294 28181 37558 Face 56358 6294 42144 28181 Face 56359 48418 28182 23644 Face 56360 12390 9705 28182 Face 56361 13414 28183 19562 Face 56362 28967 19451 28183 Face 56363 10247 28184 25686 Face 56364 10247 5952 28184 Face 56365 28184 28185 7362 Face 56366 28184 5952 28185 Face 56367 7381 28186 15278 Face 56368 7381 21260 28186 Face 56369 2448 28187 13395 Face 56370 2448 21226 28187 Face 56371 745 28188 26980 Face 56372 745 10872 28188 Face 56373 19001 36035 25562 Face 56374 19001 11687 36035 Face 56375 4939 41051 29101 Face 56376 28191 18368 41052 Face 56377 4939 28191 41052 Face 56378 4939 8618 28191 Face 56379 8542 28192 47941 Face 56380 35027 45778 28192 Face 56381 14610 28193 16896 Face 56382 14610 44964 28193 Face 56383 30269 34765 12403 Face 56384 5533 21442 28194 Face 56385 1601 28195 10142 Face 56386 35096 46023 28195 Face 56387 8150 28196 31554 Face 56388 8150 35658 28196 Face 56389 6358 28197 25782 Face 56390 6358 13769 28197 Face 56391 23611 28198 31098 Face 56392 23611 23514 28198 Face 56393 29818 28199 18516 Face 56394 177 8545 28199 Face 56395 2095 28200 10561 Face 56396 28201 22751 28200 Face 56397 2095 28201 28200 Face 56398 2095 5514 28201 Face 56399 7882 28202 9882 Face 56400 7882 14086 28202 Face 56401 3145 28203 21919 Face 56402 3145 30183 28203 Face 56403 38821 28204 27349 Face 56404 3639 6117 28204 Face 56405 1533 28205 23226 Face 56406 1533 38584 28205 Face 56407 14035 28206 21103 Face 56408 14035 7000 28206 Face 56409 11633 28207 42000 Face 56410 46467 28137 28207 Face 56411 46302 28208 8664 Face 56412 37993 4482 28208 Face 56413 3867 28209 25376 Face 56414 36151 20578 28209 Face 56415 4308 33602 20613 Face 56416 28211 21997 28210 Face 56417 4308 28211 33602 Face 56418 4308 26843 28211 Face 56419 8963 28212 23983 Face 56420 8963 46945 28212 Face 56421 2573 28213 15118 Face 56422 2573 39976 28213 Face 56423 6349 28214 24940 Face 56424 6349 46192 38198 Face 56425 8539 28215 3638 Face 56426 8539 38781 28215 Face 56427 8500 28216 38705 Face 56428 8500 1520 28216 Face 56429 11895 28217 3703 Face 56430 11895 22063 28217 Face 56431 47298 28218 43610 Face 56432 41018 27356 28218 Face 56433 5632 28219 10120 Face 56434 5632 48557 29799 Face 56435 22404 28220 41212 Face 56436 22404 5694 28220 Face 56437 10664 28221 48161 Face 56438 10664 18925 28221 Face 56439 5028 28222 12944 Face 56440 5028 734 28222 Face 56441 8220 28223 31790 Face 56442 8220 12728 28223 Face 56443 6483 28224 38552 Face 56444 6483 13615 28224 Face 56445 2712 42058 34681 Face 56446 28325 6363 28225 Face 56447 810 28226 22036 Face 56448 810 20592 28226 Face 56449 3487 28227 26223 Face 56450 3487 20153 28227 Face 56451 25202 28228 16394 Face 56452 25202 40078 28228 Face 56453 15502 28229 44520 Face 56454 15502 34518 28229 Face 56455 12184 28230 450 Face 56456 12184 1777 28230 Face 56457 14958 47456 41592 Face 56458 14958 22194 47456 Face 56459 7038 28232 44659 Face 56460 7038 44020 28232 Face 56461 31230 28233 31160 Face 56462 49523 21229 28233 Face 56463 10650 28234 22595 Face 56464 10650 11342 28234 Face 56465 8451 28235 43174 Face 56466 46188 18765 28235 Face 56467 2465 28236 18922 Face 56468 2465 23470 28236 Face 56469 3715 28237 34996 Face 56470 3715 7251 28237 Face 56471 8564 28238 671 Face 56472 8564 19941 28238 Face 56473 6954 28239 33668 Face 56474 6954 46381 28239 Face 56475 15369 28240 36079 Face 56476 15369 15370 28240 Face 56477 21510 49691 28724 Face 56478 21510 28751 49691 Face 56479 274 28242 39734 Face 56480 274 46246 28242 Face 56481 2289 28243 19001 Face 56482 2289 16923 28243 Face 56483 6370 28244 42644 Face 56484 6370 26007 28244 Face 56485 18302 28245 35404 Face 56486 18302 12167 28245 Face 56487 401 28246 28582 Face 56488 401 33077 28246 Face 56489 2454 28247 10207 Face 56490 42940 22131 28247 Face 56491 18876 28248 24733 Face 56492 18876 8691 28248 Face 56493 9960 28249 17649 Face 56494 9960 26996 49036 Face 56495 5433 28250 36005 Face 56496 5433 15873 28250 Face 56497 9126 28251 15205 Face 56498 9126 13032 28251 Face 56499 16590 28252 6148 Face 56500 28253 27602 28252 Face 56501 16590 28253 28252 Face 56502 40503 545 28253 Face 56503 15726 28254 7153 Face 56504 15726 11245 28254 Face 56505 28256 48387 17980 Face 56506 6493 19685 28255 Face 56507 6493 28256 1343 Face 56508 6493 28255 28256 Face 56509 9761 28257 39874 Face 56510 9761 105 28257 Face 56511 32788 31487 20072 Face 56512 5127 8624 28258 Face 56513 29333 28259 16006 Face 56514 33820 4132 28259 Face 56515 14852 28260 30029 Face 56516 14852 6005 28260 Face 56517 12193 28261 36474 Face 56518 12193 6380 28261 Face 56519 14558 28262 30479 Face 56520 37878 18907 28262 Face 56521 31444 28263 16209 Face 56522 31444 21403 28263 Face 56523 22517 28264 18274 Face 56524 22517 39542 28264 Face 56525 1234 28265 32039 Face 56526 1234 13057 28265 Face 56527 9443 28266 40753 Face 56528 9443 37221 28266 Face 56529 10133 28267 8082 Face 56530 10133 24992 28267 Face 56531 49035 28268 17663 Face 56532 45041 24589 28268 Face 56533 5372 28269 34589 Face 56534 5372 15395 28269 Face 56535 8491 28270 14244 Face 56536 8491 10284 28270 Face 56537 14274 28271 14853 Face 56538 14274 14275 28271 Face 56539 11897 28272 40955 Face 56540 11897 48660 28272 Face 56541 23773 28273 33405 Face 56542 23773 16330 28273 Face 56543 638 28274 10750 Face 56544 28275 40004 28274 Face 56545 638 28275 28274 Face 56546 638 3716 28275 Face 56547 4035 28276 37255 Face 56548 4035 18875 28276 Face 56549 7805 28277 27503 Face 56550 7805 47462 28277 Face 56551 35703 28278 19020 Face 56552 35703 16351 28278 Face 56553 16683 39380 31196 Face 56554 16683 21496 28279 Face 56555 4402 28280 19044 Face 56556 28281 13122 28280 Face 56557 4402 28281 28280 Face 56558 4402 31570 28281 Face 56559 28283 28282 33560 Face 56560 35253 47493 28282 Face 56561 2492 28283 31734 Face 56562 2492 28282 28283 Face 56563 9941 28284 6418 Face 56564 9941 22104 28284 Face 56565 38346 28285 1730 Face 56566 16416 6026 28285 Face 56567 2202 28286 47625 Face 56568 49317 2939 28286 Face 56569 5619 28287 27134 Face 56570 48664 12660 28287 Face 56571 39392 36422 16651 Face 56572 5441 9858 28288 Face 56573 1721 28289 14049 Face 56574 1721 14901 28289 Face 56575 1074 28290 6859 Face 56576 46517 13330 28290 Face 56577 1074 28291 28290 Face 56578 1074 20620 28291 Face 56579 14078 28292 8637 Face 56580 14078 4705 28292 Face 56581 9945 28293 16350 Face 56582 9945 4119 28293 Face 56583 29456 28294 24962 Face 56584 48000 6842 28294 Face 56585 6383 28295 18184 Face 56586 6383 21248 28295 Face 56587 26606 28296 24033 Face 56588 26606 10575 28296 Face 56589 3069 28297 42977 Face 56590 3069 13264 28297 Face 56591 23449 28298 42751 Face 56592 23449 38550 28298 Face 56593 22092 28299 41882 Face 56594 22092 11261 28299 Face 56595 28301 28300 15586 Face 56596 28302 37598 44221 Face 56597 3346 28301 45239 Face 56598 3346 44221 28301 Face 56599 3346 28302 44221 Face 56600 3346 48209 28302 Face 56601 17836 38565 14018 Face 56602 17836 5026 28303 Face 56603 47400 28304 21440 Face 56604 8266 45893 28304 Face 56605 28783 28305 17578 Face 56606 7532 7896 28305 Face 56607 1724 35269 21474 Face 56608 1724 18450 28306 Face 56609 2067 28307 25054 Face 56610 2067 35512 28307 Face 56611 28309 48124 5930 Face 56612 5160 6913 28308 Face 56613 5160 28309 12136 Face 56614 5160 48124 28309 Face 56615 31181 28310 23921 Face 56616 31181 44398 28310 Face 56617 14443 28311 6423 Face 56618 14443 6422 28311 Face 56619 14341 28312 32595 Face 56620 14341 4991 28312 Face 56621 12318 28313 27478 Face 56622 12318 25571 28313 Face 56623 43156 28314 47012 Face 56624 43157 41817 28314 Face 56625 3192 28315 27550 Face 56626 3192 20526 28315 Face 56627 4460 45837 21643 Face 56628 31357 26075 28316 Face 56629 16634 47713 48008 Face 56630 16634 2252 28317 Face 56631 2126 47382 37019 Face 56632 2126 37305 28318 Face 56633 31670 28319 13552 Face 56634 3742 21672 28319 Face 56635 13109 28320 8048 Face 56636 36975 30339 28320 Face 56637 9760 28321 14744 Face 56638 9760 24300 28321 Face 56639 2143 28322 22569 Face 56640 2143 7682 28322 Face 56641 33188 28323 9861 Face 56642 3179 12956 28323 Face 56643 45836 28324 18406 Face 56644 44712 9343 48004 Face 56645 30567 28325 28225 Face 56646 30567 33014 28325 Face 56647 42635 28326 11588 Face 56648 30920 11852 33256 Face 56649 20177 28327 13733 Face 56650 20177 31497 28327 Face 56651 7486 28328 41884 Face 56652 41179 20672 28328 Face 56653 551 28329 44968 Face 56654 551 42796 28329 Face 56655 6097 28330 23274 Face 56656 6097 33348 43298 Face 56657 30722 28331 28332 Face 56658 30722 36904 28331 Face 56659 15808 28332 28331 Face 56660 15808 375 28332 Face 56661 6242 28333 21549 Face 56662 46177 21548 28333 Face 56663 31450 28334 17535 Face 56664 31450 23319 28334 Face 56665 4050 28335 49403 Face 56666 4050 39830 29326 Face 56667 811 28336 27684 Face 56668 811 27490 28336 Face 56669 7683 28337 2348 Face 56670 32510 24490 28337 Face 56671 9634 45493 11098 Face 56672 9634 1168 47230 Face 56673 3883 28339 12645 Face 56674 3883 26510 28339 Face 56675 1086 28340 10999 Face 56676 1086 12970 28340 Face 56677 5353 28341 19126 Face 56678 5353 16159 28341 Face 56679 33665 28342 37900 Face 56680 31857 38044 28342 Face 56681 9381 44150 513 Face 56682 9381 43608 28343 Face 56683 35123 28344 39929 Face 56684 35123 16406 28344 Face 56685 14034 28345 31926 Face 56686 14034 6482 28345 Face 56687 18853 28346 28599 Face 56688 18853 12738 28346 Face 56689 10260 30828 14079 Face 56690 10260 21116 28347 Face 56691 17465 28348 4634 Face 56692 46486 22334 28348 Face 56693 33858 28349 29319 Face 56694 5766 35271 28349 Face 56695 2631 28350 33245 Face 56696 38735 10495 28350 Face 56697 35750 28351 36347 Face 56698 8247 13380 28351 Face 56699 3552 28352 18075 Face 56700 3552 13334 28352 Face 56701 1384 28353 12239 Face 56702 1384 30649 28353 Face 56703 4400 28354 12961 Face 56704 4400 21205 28354 Face 56705 5875 28355 29422 Face 56706 5875 47116 28355 Face 56707 10724 28356 3111 Face 56708 37269 16489 28356 Face 56709 36193 28357 9384 Face 56710 2794 9256 28357 Face 56711 6466 28358 28187 Face 56712 41441 14234 28358 Face 56713 10187 28359 30555 Face 56714 10187 18010 28359 Face 56715 11766 28360 11530 Face 56716 11766 35048 28360 Face 56717 32016 28361 23562 Face 56718 49014 16787 28361 Face 56719 4180 49014 28361 Face 56720 4180 25208 28362 Face 56721 2679 28363 15995 Face 56722 2679 24511 28363 Face 56723 8831 28364 34342 Face 56724 8831 49967 28364 Face 56725 6946 28365 1823 Face 56726 46317 15534 28365 Face 56727 1998 28366 28822 Face 56728 1998 29706 28366 Face 56729 10102 28367 35044 Face 56730 10102 40734 48782 Face 56731 323 28368 8677 Face 56732 323 25215 28368 Face 56733 5194 28369 25291 Face 56734 5194 30446 28369 Face 56735 28371 28370 44374 Face 56736 28371 42087 28370 Face 56737 1338 28371 44374 Face 56738 40531 1586 28371 Face 56739 17581 28372 35055 Face 56740 40182 40472 28372 Face 56741 12727 28373 32859 Face 56742 12727 40606 28373 Face 56743 1902 28374 23065 Face 56744 1902 23871 28374 Face 56745 8961 28375 30580 Face 56746 8961 34710 28375 Face 56747 379 28376 22883 Face 56748 379 39721 28376 Face 56749 9767 28378 44695 Face 56750 9767 21488 45673 Face 56751 28377 45673 41872 Face 56752 28377 21536 28378 Face 56753 9177 28379 32139 Face 56754 9177 13449 28379 Face 56755 48559 28380 44112 Face 56756 11603 22964 28380 Face 56757 7490 47065 34383 Face 56758 7490 33502 28381 Face 56759 20562 28382 6905 Face 56760 20562 12847 28382 Face 56761 676 41209 27368 Face 56762 676 19240 28383 Face 56763 43961 43005 23129 Face 56764 11444 24774 28384 Face 56765 21689 28385 24201 Face 56766 21689 41609 28385 Face 56767 5635 28386 5634 Face 56768 5635 40744 28386 Face 56769 28388 28387 42674 Face 56770 9897 41298 28387 Face 56771 49545 28388 28627 Face 56772 9897 28387 28388 Face 56773 44266 28389 24903 Face 56774 42377 38542 47910 Face 56775 19157 28390 25902 Face 56776 19157 22866 28390 Face 56777 42054 28391 12258 Face 56778 22093 38455 28391 Face 56779 1369 28392 25586 Face 56780 1369 11984 30177 Face 56781 11157 28393 38573 Face 56782 11157 26002 28393 Face 56783 21348 28394 9096 Face 56784 21348 37845 28394 Face 56785 2372 28395 4973 Face 56786 2372 41378 28395 Face 56787 17955 28396 35551 Face 56788 17955 9152 40275 Face 56789 5000 28397 26972 Face 56790 5000 20849 28397 Face 56791 22669 48336 44779 Face 56792 22669 24263 28398 Face 56793 7411 28399 48952 Face 56794 38143 19460 28399 Face 56795 10972 28400 16673 Face 56796 10972 10728 28400 Face 56797 14819 28401 40086 Face 56798 14819 16475 28401 Face 56799 42338 28402 42337 Face 56800 28403 14199 28402 Face 56801 5296 28403 28402 Face 56802 45935 45418 28403 Face 56803 6667 28404 20589 Face 56804 42532 29492 28404 Face 56805 3040 28405 16478 Face 56806 3040 19887 28405 Face 56807 8824 28406 28011 Face 56808 8824 20803 28406 Face 56809 15607 28407 33597 Face 56810 38189 45363 28407 Face 56811 32466 28408 48950 Face 56812 32466 49595 28408 Face 56813 1032 28409 26867 Face 56814 1032 16752 28409 Face 56815 3232 28410 14132 Face 56816 3232 41519 28410 Face 56817 9860 28411 24612 Face 56818 9860 30245 28411 Face 56819 4845 28412 42307 Face 56820 4845 38654 28412 Face 56821 30715 28413 16769 Face 56822 324 48854 28413 Face 56823 3240 28414 21628 Face 56824 3240 16814 28414 Face 56825 9079 28415 9082 Face 56826 9079 12221 28415 Face 56827 5373 28416 20391 Face 56828 5373 13297 28416 Face 56829 5934 28417 19310 Face 56830 5934 19113 28417 Face 56831 11825 28418 34022 Face 56832 28419 12565 43182 Face 56833 11825 28419 28418 Face 56834 11825 42972 28419 Face 56835 11825 28420 17396 Face 56836 11825 14205 28420 Face 56837 7407 49702 7637 Face 56838 43576 26254 28421 Face 56839 11371 28422 8453 Face 56840 11371 30764 28422 Face 56841 4253 28423 27824 Face 56842 4253 34856 28423 Face 56843 3919 28424 16545 Face 56844 3919 45877 28424 Face 56845 3517 28425 29682 Face 56846 3517 19773 28425 Face 56847 3517 28426 48771 Face 56848 3517 12065 28426 Face 56849 8349 28427 34514 Face 56850 28428 26259 28427 Face 56851 8349 28428 28427 Face 56852 8349 35440 28428 Face 56853 41341 28429 19107 Face 56854 6107 20137 28429 Face 56855 8930 28430 20422 Face 56856 8930 22108 28430 Face 56857 41678 28431 47590 Face 56858 12271 29497 28431 Face 56859 14167 28432 33442 Face 56860 14167 5202 28432 Face 56861 8746 28433 27137 Face 56862 36870 8745 28433 Face 56863 9929 28434 10082 Face 56864 31221 9115 28434 Face 56865 17088 28435 5857 Face 56866 47955 17998 28435 Face 56867 28665 28436 10430 Face 56868 28665 35537 28436 Face 56869 1697 28437 22059 Face 56870 1697 35183 28437 Face 56871 38983 28438 34114 Face 56872 16540 25331 28438 Face 56873 12411 28439 18289 Face 56874 12411 12795 28439 Face 56875 2994 28440 24642 Face 56876 2994 23504 28440 Face 56877 6441 28441 2492 Face 56878 6441 48879 28441 Face 56879 7175 28442 38017 Face 56880 7175 19856 28442 Face 56881 6176 28443 18482 Face 56882 6176 13416 28443 Face 56883 22771 28444 22772 Face 56884 22771 21232 28444 Face 56885 6715 28445 1457 Face 56886 6715 8523 28445 Face 56887 6311 28446 23626 Face 56888 6311 12166 28446 Face 56889 38773 28447 1952 Face 56890 48517 26190 28447 Face 56891 28816 28448 31714 Face 56892 43107 27064 28448 Face 56893 10140 28449 23061 Face 56894 10140 16759 28449 Face 56895 1352 28450 37130 Face 56896 1352 43587 46413 Face 56897 6911 28451 45631 Face 56898 6911 14816 28451 Face 56899 3262 28452 17547 Face 56900 38232 14871 28452 Face 56901 18352 28453 39785 Face 56902 18352 13827 28453 Face 56903 5778 28454 13780 Face 56904 5778 19431 28454 Face 56905 6379 28455 20404 Face 56906 6379 22632 28455 Face 56907 6996 28456 19338 Face 56908 46236 8069 28456 Face 56909 6996 46236 28456 Face 56910 38716 12585 28457 Face 56911 37768 28458 39716 Face 56912 35939 15442 28458 Face 56913 1092 28459 47099 Face 56914 47737 24212 28459 Face 56915 30963 28460 9771 Face 56916 4510 3027 28460 Face 56917 10097 28461 3454 Face 56918 10097 41865 28461 Face 56919 12068 28462 27506 Face 56920 12068 38080 28462 Face 56921 6455 28463 36460 Face 56922 6455 22160 28463 Face 56923 13309 28464 43561 Face 56924 13309 5944 28464 Face 56925 30288 28465 43100 Face 56926 47657 27306 28465 Face 56927 359 28466 27063 Face 56928 39172 28001 28466 Face 56929 5973 28467 48429 Face 56930 38278 20584 28467 Face 56931 1172 28468 7165 Face 56932 47061 10819 28468 Face 56933 9847 28469 36101 Face 56934 9847 18819 28469 Face 56935 34392 28470 5204 Face 56936 6643 427 28470 Face 56937 6659 28471 39475 Face 56938 6659 36064 28471 Face 56939 6201 28472 23206 Face 56940 6201 25342 28472 Face 56941 5474 28473 21891 Face 56942 5474 17460 28473 Face 56943 1382 40483 23774 Face 56944 1382 40065 28474 Face 56945 8151 28475 41700 Face 56946 8151 14458 28475 Face 56947 13376 28476 38800 Face 56948 28659 15312 28476 Face 56949 40198 28477 20183 Face 56950 40198 4872 28477 Face 56951 43377 28478 28394 Face 56952 40703 29872 28478 Face 56953 9361 28479 1961 Face 56954 9361 35946 28479 Face 56955 1646 28480 13411 Face 56956 38016 27143 45532 Face 56957 285 28481 38924 Face 56958 35166 28254 28481 Face 56959 8604 28482 22169 Face 56960 47740 27750 28482 Face 56961 37270 28483 3898 Face 56962 2237 49950 28483 Face 56963 9495 28484 22899 Face 56964 9495 11492 28484 Face 56965 20874 28485 13007 Face 56966 20874 39336 28485 Face 56967 13219 28486 42162 Face 56968 34626 17715 28486 Face 56969 19711 28487 32908 Face 56970 19711 7987 28487 Face 56971 13591 28488 42275 Face 56972 13591 37034 28488 Face 56973 16769 28489 48363 Face 56974 16769 28413 28489 Face 56975 11846 44162 28065 Face 56976 11846 20285 28490 Face 56977 316 28491 13792 Face 56978 316 23443 28491 Face 56979 21509 28492 21919 Face 56980 21509 38947 28492 Face 56981 3983 28493 27848 Face 56982 3983 34295 28493 Face 56983 16759 28494 20021 Face 56984 29847 46117 28494 Face 56985 20355 28495 26959 Face 56986 20355 4880 28495 Face 56987 12161 28496 4439 Face 56988 12161 26142 28496 Face 56989 35261 28497 15714 Face 56990 337 22090 28497 Face 56991 16922 28498 19870 Face 56992 28499 19765 28498 Face 56993 16922 28499 28498 Face 56994 16922 10072 28499 Face 56995 16922 28500 155 Face 56996 16922 19870 28500 Face 56997 11126 28501 23775 Face 56998 11126 45053 28501 Face 56999 3922 28502 35259 Face 57000 28503 12672 28502 Face 57001 3922 28503 28502 Face 57002 46647 19331 28503 Face 57003 5122 28504 27022 Face 57004 45537 36875 28504 Face 57005 19545 28506 2471 Face 57006 19545 16681 28506 Face 57007 48633 28506 16681 Face 57008 28505 25973 28506 Face 57009 38739 28507 6157 Face 57010 975 16144 28507 Face 57011 11752 28508 42637 Face 57012 11752 38022 28508 Face 57013 3286 28509 17964 Face 57014 37098 7707 28509 Face 57015 3102 28510 44461 Face 57016 3102 17550 28510 Face 57017 15632 28511 42555 Face 57018 15632 8728 28511 Face 57019 28 28512 10679 Face 57020 38017 17679 28512 Face 57021 32753 28513 43552 Face 57022 32754 17680 46250 Face 57023 12683 28514 36601 Face 57024 12683 28515 28514 Face 57025 22328 28515 12683 Face 57026 22328 12682 28515 Face 57027 12797 28516 472 Face 57028 12797 32348 28516 Face 57029 11502 28517 36757 Face 57030 11502 8477 28517 Face 57031 33088 43981 28005 Face 57032 29807 23908 28518 Face 57033 28520 28519 9944 Face 57034 16267 928 28519 Face 57035 16267 28520 7909 Face 57036 16267 28519 28520 Face 57037 15834 28522 29279 Face 57038 15834 6836 28521 Face 57039 28521 28522 15834 Face 57040 28521 11065 28522 Face 57041 49741 28523 17433 Face 57042 49741 14765 28523 Face 57043 3541 28524 1459 Face 57044 3541 44748 28524 Face 57045 3070 44397 36741 Face 57046 3070 20114 28525 Face 57047 12067 28526 49358 Face 57048 28527 23120 28526 Face 57049 12067 28527 28526 Face 57050 12067 15683 28527 Face 57051 6990 28528 18846 Face 57052 6990 45736 28528 Face 57053 16983 28529 7355 Face 57054 16983 3458 28529 Face 57055 7079 28530 13217 Face 57056 7079 46121 28530 Face 57057 8379 28531 17611 Face 57058 8379 47054 28531 Face 57059 2188 28532 10923 Face 57060 2188 13713 28532 Face 57061 18683 28533 23347 Face 57062 18683 42460 28533 Face 57063 28535 28534 6436 Face 57064 7921 318 28534 Face 57065 7921 28535 15728 Face 57066 7921 28534 28535 Face 57067 8944 28536 41499 Face 57068 8944 46044 28536 Face 57069 1131 28537 13491 Face 57070 1131 24266 28537 Face 57071 12807 28538 18344 Face 57072 12807 32366 28538 Face 57073 47731 28539 630 Face 57074 28540 42109 28539 Face 57075 6000 28540 28539 Face 57076 6000 23035 28540 Face 57077 3324 28541 19722 Face 57078 3324 25978 28541 Face 57079 7067 28542 17790 Face 57080 7067 19675 28542 Face 57081 7092 28543 33219 Face 57082 7092 36959 28543 Face 57083 8194 28544 45735 Face 57084 47188 36518 28544 Face 57085 8194 28545 28544 Face 57086 47477 34653 28545 Face 57087 18286 28546 3825 Face 57088 18286 45120 28546 Face 57089 4866 28547 34968 Face 57090 4866 16860 28547 Face 57091 144 28548 10255 Face 57092 28549 6089 28548 Face 57093 144 28549 28548 Face 57094 144 20857 28549 Face 57095 806 28550 4951 Face 57096 806 14646 28550 Face 57097 9245 28551 10566 Face 57098 33836 27073 45947 Face 57099 10978 28552 49073 Face 57100 10978 32209 28552 Face 57101 5124 28553 32465 Face 57102 5124 20734 28553 Face 57103 42696 28554 25136 Face 57104 42696 36105 28554 Face 57105 13189 28555 13188 Face 57106 13189 33770 28555 Face 57107 8685 28556 49656 Face 57108 8685 13458 28556 Face 57109 1386 28557 24568 Face 57110 1386 7993 28557 Face 57111 1386 28558 7993 Face 57112 1386 41784 28558 Face 57113 28558 28559 42284 Face 57114 28558 34143 28559 Face 57115 37751 28560 48853 Face 57116 43225 34324 28560 Face 57117 16430 28561 44256 Face 57118 16430 8968 28561 Face 57119 10086 28562 5447 Face 57120 10086 17947 28562 Face 57121 253 28563 17806 Face 57122 253 8579 28563 Face 57123 9034 28564 16485 Face 57124 9034 16160 28564 Face 57125 5744 28565 35706 Face 57126 5744 15746 28565 Face 57127 18409 44867 9698 Face 57128 18409 45289 28566 Face 57129 31111 28567 49137 Face 57130 15455 11084 28567 Face 57131 7089 28568 20947 Face 57132 30893 43691 28568 Face 57133 39822 28569 19321 Face 57134 35235 4444 28569 Face 57135 15020 28570 2439 Face 57136 15020 19495 28570 Face 57137 8206 28571 23754 Face 57138 8206 25595 28571 Face 57139 2626 28572 20512 Face 57140 28573 38763 28572 Face 57141 2626 28573 28572 Face 57142 2626 45435 28573 Face 57143 19811 28574 48923 Face 57144 33031 19810 28574 Face 57145 48046 32708 16576 Face 57146 1814 18217 28575 Face 57147 48009 28576 23995 Face 57148 3503 8887 28576 Face 57149 28578 28577 44783 Face 57150 40519 32663 28577 Face 57151 3471 28578 21868 Face 57152 3471 28577 28578 Face 57153 23014 28579 23015 Face 57154 44768 10466 28579 Face 57155 5484 49620 27313 Face 57156 5484 46572 28580 Face 57157 47340 28581 14440 Face 57158 24555 32597 28581 Face 57159 6216 28582 28246 Face 57160 6216 37820 28582 Face 57161 3123 28583 24828 Face 57162 3123 11576 28583 Face 57163 28585 28584 21321 Face 57164 28585 17226 28584 Face 57165 3053 35577 14454 Face 57166 28768 24130 28585 Face 57167 11374 28586 19106 Face 57168 44133 28052 28586 Face 57169 28589 28587 1294 Face 57170 11871 49641 28587 Face 57171 11871 28588 38293 Face 57172 11871 8620 28588 Face 57173 11871 28589 8620 Face 57174 11871 28587 28589 Face 57175 28544 28590 6459 Face 57176 28544 36518 43807 Face 57177 5901 28591 15298 Face 57178 5901 20480 28591 Face 57179 9598 28592 31827 Face 57180 9598 39543 28592 Face 57181 11776 45803 37444 Face 57182 11776 45079 28593 Face 57183 13467 28594 12314 Face 57184 13467 988 28594 Face 57185 976 28595 27259 Face 57186 976 12689 28595 Face 57187 19828 28596 19827 Face 57188 19828 47355 28596 Face 57189 23926 28597 9653 Face 57190 42519 14902 28597 Face 57191 26059 28598 3947 Face 57192 26059 7069 28598 Face 57193 19398 28599 28346 Face 57194 19398 5318 28599 Face 57195 628 28600 18852 Face 57196 628 11784 28600 Face 57197 29828 28601 26343 Face 57198 42434 48725 28601 Face 57199 30264 28602 42444 Face 57200 10531 10231 28602 Face 57201 14217 28603 15038 Face 57202 14217 10444 28603 Face 57203 14017 28604 4151 Face 57204 14017 1494 28604 Face 57205 1665 43102 36972 Face 57206 1665 35841 43102 Face 57207 3223 28606 45570 Face 57208 39932 26399 28606 Face 57209 1031 28607 14195 Face 57210 1031 22343 28607 Face 57211 774 28608 5311 Face 57212 774 19684 28608 Face 57213 22207 28609 5876 Face 57214 22207 7866 28609 Face 57215 3155 28610 6907 Face 57216 3155 25668 28610 Face 57217 3155 28611 40364 Face 57218 3155 22658 28611 Face 57219 16085 28612 17886 Face 57220 16085 25017 28612 Face 57221 8030 28613 15500 Face 57222 43257 14047 28613 Face 57223 30972 28614 38417 Face 57224 14248 9391 28614 Face 57225 917 28615 33254 Face 57226 42603 29789 28615 Face 57227 18769 28616 22061 Face 57228 18769 7394 28616 Face 57229 29318 28617 22779 Face 57230 29318 11575 28617 Face 57231 28619 28618 18687 Face 57232 5528 33356 41841 Face 57233 5528 28619 16275 Face 57234 5528 41841 28619 Face 57235 6902 28620 4245 Face 57236 6902 31669 28620 Face 57237 15345 28621 37959 Face 57238 15345 35602 28621 Face 57239 28623 28622 40458 Face 57240 15318 42197 28622 Face 57241 15318 28623 26630 Face 57242 15318 28622 28623 Face 57243 8771 28625 48896 Face 57244 8771 8772 28625 Face 57245 28624 28625 8772 Face 57246 28624 48896 28625 Face 57247 5817 28626 592 Face 57248 5817 40323 28626 Face 57249 7250 28627 41837 Face 57250 7250 49545 28627 Face 57251 45717 42089 41846 Face 57252 7800 35899 28628 Face 57253 6050 28629 8226 Face 57254 6050 47748 28629 Face 57255 7721 28630 1616 Face 57256 7721 47325 28630 Face 57257 10582 28631 19467 Face 57258 48801 3123 28631 Face 57259 4420 28632 41230 Face 57260 4420 13358 28632 Face 57261 3195 28633 12142 Face 57262 38201 23742 28633 Face 57263 41222 28634 27756 Face 57264 573 26779 28634 Face 57265 20145 28635 30615 Face 57266 20145 967 28635 Face 57267 30488 28636 49241 Face 57268 891 10303 28636 Face 57269 33695 28637 42042 Face 57270 39056 15480 28637 Face 57271 12487 28638 45158 Face 57272 12487 43998 28638 Face 57273 8858 28639 40042 Face 57274 35275 19019 28639 Face 57275 8836 28640 47670 Face 57276 8836 14336 40803 Face 57277 3397 28641 8465 Face 57278 3397 40033 28641 Face 57279 4255 28642 23309 Face 57280 4255 47177 28642 Face 57281 15074 28643 1279 Face 57282 15074 36778 28643 Face 57283 14664 28644 19957 Face 57284 14664 8332 28644 Face 57285 1732 28645 16257 Face 57286 1732 11501 28645 Face 57287 2850 28646 6899 Face 57288 2850 32076 28646 Face 57289 7236 28647 19538 Face 57290 7236 44914 28647 Face 57291 28649 28648 48098 Face 57292 5316 23192 28648 Face 57293 5316 28649 9250 Face 57294 5316 28648 28649 Face 57295 8291 28650 3453 Face 57296 8291 26435 28650 Face 57297 3384 28651 35790 Face 57298 33963 19867 28651 Face 57299 4372 28652 42962 Face 57300 4372 24713 28652 Face 57301 20398 41964 13272 Face 57302 20398 11805 28653 Face 57303 16306 28654 10114 Face 57304 16306 6046 28654 Face 57305 48529 28655 17171 Face 57306 5055 9230 28655 Face 57307 47736 28656 26743 Face 57308 5055 28655 28656 Face 57309 4874 28657 13809 Face 57310 4874 22962 28657 Face 57311 14950 28658 14951 Face 57312 14950 114 28658 Face 57313 13376 28659 28476 Face 57314 13376 37346 28659 Face 57315 13376 28660 18652 Face 57316 13376 38800 28660 Face 57317 22201 28661 43803 Face 57318 22201 3745 28661 Face 57319 47567 28662 17624 Face 57320 10340 21716 28662 Face 57321 11161 28663 29285 Face 57322 11161 49182 28663 Face 57323 37036 28664 8691 Face 57324 8841 27178 28664 Face 57325 33439 28665 21247 Face 57326 8079 35537 28665 Face 57327 13761 28666 7687 Face 57328 13761 40977 28666 Face 57329 33684 28667 3799 Face 57330 13011 4121 28667 Face 57331 35840 28668 17457 Face 57332 35840 19175 28668 Face 57333 6054 28669 36351 Face 57334 39409 21155 28669 Face 57335 31127 28670 15003 Face 57336 281 16153 28670 Face 57337 16693 28671 3939 Face 57338 16693 1547 28671 Face 57339 779 28672 15438 Face 57340 779 2906 28672 Face 57341 32642 28673 18296 Face 57342 28674 14910 28673 Face 57343 5126 28674 28673 Face 57344 5126 16015 28674 Face 57345 8892 28675 25206 Face 57346 8892 34095 28675 Face 57347 3422 28676 26715 Face 57348 3422 17664 28676 Face 57349 28678 28677 21115 Face 57350 28678 22114 28677 Face 57351 1834 28678 25670 Face 57352 1834 22114 28678 Face 57353 29389 43532 19825 Face 57354 11545 42313 28679 Face 57355 477 28680 29912 Face 57356 45710 14993 28680 Face 57357 28682 28681 21337 Face 57358 31620 24079 28681 Face 57359 43817 28682 20095 Face 57360 31620 28681 28682 Face 57361 1839 48798 29408 Face 57362 1839 22475 28683 Face 57363 7307 28684 12652 Face 57364 7307 38585 28684 Face 57365 11122 28685 23797 Face 57366 11122 3230 28685 Face 57367 4651 28686 28096 Face 57368 4651 34410 28686 Face 57369 4651 28687 29476 Face 57370 4651 47905 28687 Face 57371 14121 44947 13293 Face 57372 32009 13852 28688 Face 57373 1617 28689 38491 Face 57374 1617 46090 28689 Face 57375 16380 28690 24804 Face 57376 16380 10764 28690 Face 57377 16342 28691 21051 Face 57378 16342 22433 28691 Face 57379 14885 28692 26869 Face 57380 31455 8195 28692 Face 57381 11889 28693 39693 Face 57382 11889 10087 28693 Face 57383 20683 28694 26760 Face 57384 20683 41681 28694 Face 57385 14755 47246 12946 Face 57386 14755 44213 47246 Face 57387 4212 28696 5422 Face 57388 4212 37190 28696 Face 57389 4212 28697 37190 Face 57390 4212 47814 28697 Face 57391 35077 28698 7523 Face 57392 7051 19691 28698 Face 57393 5547 28699 45016 Face 57394 5547 27296 28699 Face 57395 17543 28700 16493 Face 57396 17543 42412 28700 Face 57397 6603 28701 1527 Face 57398 49268 11096 28701 Face 57399 6349 28702 42136 Face 57400 6349 46122 28702 Face 57401 17615 28703 47179 Face 57402 17615 27925 28703 Face 57403 16494 28704 26803 Face 57404 16494 11284 28704 Face 57405 17451 28705 17452 Face 57406 17451 17639 28705 Face 57407 6290 28706 26992 Face 57408 6290 19336 28706 Face 57409 32498 28707 24625 Face 57410 12424 32453 28707 Face 57411 36279 28708 21407 Face 57412 10994 32917 28708 Face 57413 6563 28709 40320 Face 57414 6563 12256 28709 Face 57415 4745 28710 4744 Face 57416 4745 27182 28710 Face 57417 9122 28711 12310 Face 57418 37611 10490 28711 Face 57419 6519 28712 22662 Face 57420 6519 46644 28712 Face 57421 14656 44710 6181 Face 57422 42861 14654 28713 Face 57423 41374 28714 13496 Face 57424 41374 26899 28714 Face 57425 17591 28715 19294 Face 57426 47507 8091 28715 Face 57427 9843 28716 30996 Face 57428 9843 29454 28716 Face 57429 4814 28717 7901 Face 57430 4814 9682 28717 Face 57431 6256 28718 45557 Face 57432 6256 18497 28718 Face 57433 13452 28719 21991 Face 57434 13452 26717 28719 Face 57435 12143 28720 46722 Face 57436 12143 38698 28720 Face 57437 4678 28721 49506 Face 57438 4678 41016 28721 Face 57439 2069 28722 19839 Face 57440 2069 47854 28722 Face 57441 13316 28723 3267 Face 57442 13316 9231 28723 Face 57443 11270 28724 28241 Face 57444 11270 18252 28724 Face 57445 3465 28725 47675 Face 57446 3465 32466 28725 Face 57447 7993 28726 28557 Face 57448 7993 23210 28726 Face 57449 4702 28727 40152 Face 57450 4702 15385 28727 Face 57451 588 28728 34966 Face 57452 588 42024 28728 Face 57453 30425 28729 48367 Face 57454 30424 23299 43909 Face 57455 6015 38091 24239 Face 57456 37738 18058 28730 Face 57457 13135 28731 35941 Face 57458 13135 8115 28731 Face 57459 5138 28732 18401 Face 57460 5138 33041 28732 Face 57461 1054 28733 23866 Face 57462 42566 10149 28733 Face 57463 15959 28734 47812 Face 57464 15959 35318 28734 Face 57465 5237 28735 38662 Face 57466 5237 40195 28735 Face 57467 7818 28736 17641 Face 57468 7818 17431 28736 Face 57469 40815 28737 15147 Face 57470 10117 18089 28737 Face 57471 1677 28738 13829 Face 57472 1677 46832 28738 Face 57473 33234 28739 8467 Face 57474 33234 20780 28739 Face 57475 17235 28740 20630 Face 57476 17235 41122 28740 Face 57477 4318 47614 23528 Face 57478 4318 37633 47614 Face 57479 42722 28742 20966 Face 57480 6266 27570 28742 Face 57481 12736 28743 1300 Face 57482 12736 47672 28743 Face 57483 15161 28744 11609 Face 57484 15161 38784 28744 Face 57485 7342 28745 41198 Face 57486 7342 20392 28745 Face 57487 18696 28746 498 Face 57488 18696 4465 28746 Face 57489 8562 28747 27124 Face 57490 8562 23720 28747 Face 57491 11165 48412 2517 Face 57492 11165 19179 28748 Face 57493 28750 49412 46161 Face 57494 3601 34135 28749 Face 57495 3601 28750 5747 Face 57496 3601 49412 28750 Face 57497 9858 28751 3937 Face 57498 9858 23891 28751 Face 57499 10513 28752 9492 Face 57500 10513 701 28752 Face 57501 9430 28753 40646 Face 57502 38839 23342 28753 Face 57503 37927 28754 15488 Face 57504 37926 16563 39669 Face 57505 28294 28755 24962 Face 57506 28294 26637 28755 Face 57507 11473 28756 16219 Face 57508 11473 39506 28756 Face 57509 30374 28757 12704 Face 57510 15224 38494 28757 Face 57511 4516 28758 10235 Face 57512 4516 16184 28758 Face 57513 32646 28759 29672 Face 57514 32646 12359 28759 Face 57515 35809 28760 1094 Face 57516 42485 49441 28760 Face 57517 5637 28761 24872 Face 57518 5637 27619 28761 Face 57519 28761 28762 44836 Face 57520 28761 27619 28762 Face 57521 10402 28763 2761 Face 57522 34599 17728 28763 Face 57523 2772 28764 45935 Face 57524 2772 17330 28764 Face 57525 47904 28765 12512 Face 57526 36331 8988 28765 Face 57527 1298 28766 11050 Face 57528 1298 24611 28766 Face 57529 44329 28767 21213 Face 57530 11771 35006 28767 Face 57531 3053 28768 28585 Face 57532 28769 11151 28768 Face 57533 3053 28769 28768 Face 57534 3053 4566 28769 Face 57535 3527 28770 12683 Face 57536 3527 30437 28770 Face 57537 4073 28771 46945 Face 57538 4073 17947 28771 Face 57539 9822 28772 855 Face 57540 9822 22860 28772 Face 57541 36212 38553 20933 Face 57542 2277 11177 28773 Face 57543 17545 28774 5045 Face 57544 47135 39928 28774 Face 57545 485 28775 48491 Face 57546 485 40120 28775 Face 57547 4271 28776 14014 Face 57548 4271 16788 28776 Face 57549 4271 28777 36938 Face 57550 4271 14014 28777 Face 57551 35215 28778 45318 Face 57552 10927 47959 28778 Face 57553 17905 28779 12849 Face 57554 17905 12616 28779 Face 57555 37614 28780 20371 Face 57556 15296 17402 28780 Face 57557 23077 28781 23322 Face 57558 23077 24377 28781 Face 57559 8166 28782 44801 Face 57560 8166 9894 28782 Face 57561 7532 28783 42 Face 57562 7532 28305 28783 Face 57563 4029 28784 41808 Face 57564 4029 8365 28784 Face 57565 1005 28785 17050 Face 57566 1005 26783 28785 Face 57567 10054 28786 36365 Face 57568 10054 36837 28786 Face 57569 21023 28787 10183 Face 57570 21023 6844 28787 Face 57571 3779 28788 22795 Face 57572 3779 8532 28788 Face 57573 40394 33650 45479 Face 57574 376 19061 45491 Face 57575 18258 28790 18259 Face 57576 18258 29205 28790 Face 57577 12276 28791 2235 Face 57578 12276 33411 28791 Face 57579 13933 28792 35204 Face 57580 13933 43926 28792 Face 57581 28794 28793 24158 Face 57582 28794 33408 28793 Face 57583 6995 28794 24158 Face 57584 6995 22470 28794 Face 57585 7526 28795 463 Face 57586 7526 24046 28795 Face 57587 1317 28796 23574 Face 57588 48422 21840 28796 Face 57589 9307 28797 14159 Face 57590 28798 45913 28797 Face 57591 9307 28798 28797 Face 57592 9307 45045 28798 Face 57593 20332 28799 48336 Face 57594 20332 7403 28799 Face 57595 7212 28800 15409 Face 57596 7212 46843 28800 Face 57597 5717 28801 23662 Face 57598 5717 27859 28801 Face 57599 5184 28802 2055 Face 57600 5184 44499 28802 Face 57601 10458 39915 49521 Face 57602 10458 22083 39915 Face 57603 29230 28804 12289 Face 57604 35399 48358 28804 Face 57605 9678 28805 47662 Face 57606 46704 24222 28805 Face 57607 14847 28806 5009 Face 57608 14847 25480 28806 Face 57609 44769 28807 7162 Face 57610 44769 29806 28807 Face 57611 791 28808 22680 Face 57612 791 33613 28808 Face 57613 19333 28809 41436 Face 57614 19333 18883 28809 Face 57615 16831 28810 2632 Face 57616 16831 19270 28810 Face 57617 2955 28811 27176 Face 57618 2955 7654 28811 Face 57619 10650 28812 26593 Face 57620 10650 21968 28812 Face 57621 19194 28813 1899 Face 57622 19194 34801 28813 Face 57623 47968 28814 8847 Face 57624 47968 41665 28814 Face 57625 33664 28815 3652 Face 57626 33665 3258 28815 Face 57627 28817 28816 9992 Face 57628 7374 28448 28816 Face 57629 7374 28817 12482 Face 57630 7374 28816 28817 Face 57631 7335 28818 1757 Face 57632 7335 3062 28818 Face 57633 3986 28819 36735 Face 57634 28820 17482 28819 Face 57635 3986 28820 28819 Face 57636 3986 17564 28820 Face 57637 8132 28821 12293 Face 57638 8132 23561 28821 Face 57639 4850 28822 28366 Face 57640 41461 22836 28822 Face 57641 2142 28823 8383 Face 57642 2142 19276 28823 Face 57643 12926 28824 3194 Face 57644 12926 19736 28824 Face 57645 28824 28825 3194 Face 57646 44343 15145 28825 Face 57647 5052 28826 3507 Face 57648 5052 38056 28826 Face 57649 7511 28827 8986 Face 57650 31072 20625 28827 Face 57651 32059 28828 25798 Face 57652 11386 22 28828 Face 57653 28828 28829 25798 Face 57654 28828 9555 28829 Face 57655 17017 28830 39957 Face 57656 17017 18021 28830 Face 57657 3206 28831 42562 Face 57658 3206 13385 28831 Face 57659 20094 28832 21752 Face 57660 20094 37258 28832 Face 57661 7787 28833 27656 Face 57662 7787 14597 45457 Face 57663 18228 28834 11591 Face 57664 18228 3545 28834 Face 57665 19339 28835 24283 Face 57666 19339 19309 28835 Face 57667 313 28836 49008 Face 57668 313 48580 28836 Face 57669 313 28837 33125 Face 57670 313 25937 28837 Face 57671 38327 28838 6461 Face 57672 38327 46565 28838 Face 57673 12996 28839 23538 Face 57674 12996 33376 28839 Face 57675 16160 28840 28564 Face 57676 16160 1923 28840 Face 57677 28935 28841 29129 Face 57678 5564 23737 28841 Face 57679 17738 28842 13230 Face 57680 17738 21189 28842 Face 57681 6701 28843 18398 Face 57682 6701 39182 28843 Face 57683 1190 28844 45975 Face 57684 1190 13078 28844 Face 57685 6959 28846 21264 Face 57686 6959 42358 28845 Face 57687 28845 28846 6959 Face 57688 28845 6566 28846 Face 57689 663 28847 21020 Face 57690 663 11911 28847 Face 57691 32676 28848 9846 Face 57692 4112 28129 28848 Face 57693 12051 28849 18835 Face 57694 12051 22637 28849 Face 57695 6952 28850 43955 Face 57696 6952 24150 28850 Face 57697 7790 28851 21662 Face 57698 7790 14678 28851 Face 57699 15804 28852 1108 Face 57700 15804 17086 28852 Face 57701 15862 28853 32451 Face 57702 15862 10009 28853 Face 57703 9388 28854 5385 Face 57704 9388 24519 28854 Face 57705 14192 28855 35179 Face 57706 14192 18820 28855 Face 57707 6574 28856 12677 Face 57708 6574 35832 28856 Face 57709 9295 28857 18188 Face 57710 9295 43733 28857 Face 57711 5448 28858 27531 Face 57712 5448 38473 45809 Face 57713 8251 28859 234 Face 57714 8251 38067 28859 Face 57715 13606 28860 6864 Face 57716 37447 1399 28860 Face 57717 8871 28861 38661 Face 57718 37686 17858 38994 Face 57719 9251 28862 3687 Face 57720 9251 44870 28862 Face 57721 7512 28863 23158 Face 57722 7512 26654 28863 Face 57723 35400 28864 38506 Face 57724 47505 22920 39590 Face 57725 43215 28866 8778 Face 57726 7763 36937 28865 Face 57727 28865 28866 43215 Face 57728 28865 16703 28866 Face 57729 1512 28867 36555 Face 57730 1512 18935 28867 Face 57731 7904 28868 23138 Face 57732 7904 13505 28868 Face 57733 24909 28869 16081 Face 57734 24909 35172 28869 Face 57735 45913 28870 15992 Face 57736 4003 38109 28870 Face 57737 7218 28871 47422 Face 57738 33709 48374 28871 Face 57739 4314 28872 12024 Face 57740 4314 25242 28872 Face 57741 3078 28873 27962 Face 57742 3078 23036 28873 Face 57743 12081 28874 5404 Face 57744 12081 25513 47412 Face 57745 5479 28875 22140 Face 57746 5479 48089 28875 Face 57747 17254 28876 6531 Face 57748 17254 23977 28876 Face 57749 794 28877 47720 Face 57750 794 12961 28877 Face 57751 4409 28878 15701 Face 57752 45153 21427 28878 Face 57753 11314 28879 9210 Face 57754 11314 320 28879 Face 57755 2144 28880 45062 Face 57756 2144 38696 28880 Face 57757 41278 28881 10024 Face 57758 41278 8077 28881 Face 57759 14495 31610 30018 Face 57760 14495 33377 28882 Face 57761 28884 28883 5174 Face 57762 48300 3686 28883 Face 57763 3520 28884 43398 Face 57764 48300 28883 28884 Face 57765 39 28885 22687 Face 57766 39 24389 28885 Face 57767 8772 28886 28624 Face 57768 8772 41270 28886 Face 57769 10477 28887 37765 Face 57770 10477 45397 28887 Face 57771 28887 28888 37765 Face 57772 28887 11655 28888 Face 57773 6095 28889 28890 Face 57774 46932 29852 28889 Face 57775 20563 28890 28889 Face 57776 39894 6095 28890 Face 57777 23312 28891 47308 Face 57778 23312 37188 28891 Face 57779 12113 28892 9441 Face 57780 12113 20632 28892 Face 57781 11119 28893 23108 Face 57782 11119 4740 28893 Face 57783 5376 28894 4955 Face 57784 5376 28286 28894 Face 57785 1873 28895 30859 Face 57786 28896 14748 28895 Face 57787 43522 28896 28895 Face 57788 43522 18873 28896 Face 57789 35803 28897 42956 Face 57790 8710 24695 28897 Face 57791 2867 28898 16754 Face 57792 2867 14997 45604 Face 57793 19561 28899 42182 Face 57794 19561 35666 28899 Face 57795 2020 28900 9872 Face 57796 44960 22375 28900 Face 57797 8966 28901 14055 Face 57798 8966 24070 28901 Face 57799 17847 28902 12941 Face 57800 17847 31060 28902 Face 57801 10267 28903 2045 Face 57802 44760 16033 28903 Face 57803 25865 28904 28905 Face 57804 25865 4189 28904 Face 57805 10257 28905 28904 Face 57806 10257 19059 28905 Face 57807 12182 28906 18488 Face 57808 12182 42816 28906 Face 57809 6394 28907 18771 Face 57810 42697 21010 28907 Face 57811 6804 28908 48458 Face 57812 6804 14513 28908 Face 57813 7435 28909 18950 Face 57814 7435 34783 28909 Face 57815 278 28910 6207 Face 57816 278 49566 28910 Face 57817 2821 28911 34358 Face 57818 2821 15222 28911 Face 57819 1129 28912 48158 Face 57820 1129 28027 28912 Face 57821 10807 28913 17271 Face 57822 10807 18241 28913 Face 57823 43047 28914 27439 Face 57824 8062 28175 28914 Face 57825 18581 28915 13924 Face 57826 18581 16446 28915 Face 57827 14386 28916 42153 Face 57828 14386 41048 28916 Face 57829 6150 28917 21266 Face 57830 6150 18644 28917 Face 57831 38296 28918 3954 Face 57832 3565 45477 28918 Face 57833 7093 45611 3942 Face 57834 7093 44261 28919 Face 57835 5271 48228 25605 Face 57836 5271 5768 44830 Face 57837 13751 28921 30875 Face 57838 13751 6925 28921 Face 57839 2320 28922 46781 Face 57840 41328 3446 28922 Face 57841 33438 28923 13575 Face 57842 4834 19185 28923 Face 57843 3289 28924 21066 Face 57844 3289 18626 28924 Face 57845 48169 28925 30916 Face 57846 47963 7015 28925 Face 57847 5626 28926 1160 Face 57848 5626 16691 28926 Face 57849 12804 28927 8541 Face 57850 12804 12805 28927 Face 57851 16857 28928 21786 Face 57852 16857 24519 28928 Face 57853 19614 28929 17360 Face 57854 19614 44632 28929 Face 57855 40757 28930 9015 Face 57856 31424 24894 28930 Face 57857 23150 28931 9014 Face 57858 23150 28930 28931 Face 57859 5213 28932 28931 Face 57860 30145 9014 28932 Face 57861 774 28933 20292 Face 57862 774 5311 41666 Face 57863 6071 28934 4170 Face 57864 44446 38559 28934 Face 57865 5564 28935 44588 Face 57866 5564 28841 28935 Face 57867 1659 28936 8805 Face 57868 1659 42534 28936 Face 57869 17605 28937 32837 Face 57870 17605 25691 28937 Face 57871 23569 28938 20959 Face 57872 23569 43148 28938 Face 57873 10730 28939 23345 Face 57874 10730 17394 28939 Face 57875 30785 28940 17888 Face 57876 30785 35564 28940 Face 57877 17864 28941 5965 Face 57878 17864 5966 28941 Face 57879 18084 28942 38988 Face 57880 18084 932 28942 Face 57881 15185 28943 27 Face 57882 15185 3065 28943 Face 57883 39875 28944 14931 Face 57884 39875 9410 28944 Face 57885 9839 28945 30970 Face 57886 9839 21491 28945 Face 57887 5285 28946 38961 Face 57888 5285 28638 28946 Face 57889 28948 28947 21990 Face 57890 776 24903 28947 Face 57891 776 28948 22532 Face 57892 776 28947 28948 Face 57893 47383 28949 10695 Face 57894 32252 10832 40781 Face 57895 271 28950 35521 Face 57896 271 29496 28950 Face 57897 2104 28951 32469 Face 57898 2104 10685 28951 Face 57899 490 28952 29225 Face 57900 490 31782 28952 Face 57901 16622 28953 33971 Face 57902 48942 14970 28953 Face 57903 3554 28954 17854 Face 57904 3554 20186 28954 Face 57905 14768 28955 19492 Face 57906 14768 21054 28955 Face 57907 13892 28956 8850 Face 57908 13892 1028 28956 Face 57909 5868 28957 304 Face 57910 5868 14213 28957 Face 57911 19783 28958 47761 Face 57912 19783 35626 28958 Face 57913 3228 28959 37877 Face 57914 3228 40334 28959 Face 57915 7028 28960 18503 Face 57916 7028 46628 28960 Face 57917 7525 28961 39730 Face 57918 7525 23169 28961 Face 57919 564 28962 9075 Face 57920 564 49435 28962 Face 57921 28964 28963 31729 Face 57922 28964 25943 28963 Face 57923 151 28964 40542 Face 57924 151 25943 28964 Face 57925 8811 28965 28776 Face 57926 8811 4272 28965 Face 57927 13200 28966 33447 Face 57928 13200 24527 28966 Face 57929 13414 28967 28183 Face 57930 13414 28329 28967 Face 57931 48095 28968 7216 Face 57932 42218 29465 28968 Face 57933 8094 28969 18530 Face 57934 8094 28968 48095 Face 57935 45934 28970 5207 Face 57936 13381 24211 28970 Face 57937 13381 28971 36075 Face 57938 13381 28970 45934 Face 57939 12323 28972 38164 Face 57940 31956 16518 28972 Face 57941 25337 28973 20246 Face 57942 25337 16541 28973 Face 57943 17310 28975 36464 Face 57944 17310 19955 28974 Face 57945 28974 28975 17310 Face 57946 28974 33408 28975 Face 57947 11085 28976 18200 Face 57948 11085 21281 28976 Face 57949 15048 28977 25109 Face 57950 47107 19777 28977 Face 57951 229 28978 18588 Face 57952 229 18094 28978 Face 57953 12932 28979 1497 Face 57954 12932 5047 28979 Face 57955 44636 28980 5971 Face 57956 44636 25181 28980 Face 57957 22265 28981 3888 Face 57958 22265 27547 28981 Face 57959 2634 28982 30507 Face 57960 2634 7531 37660 Face 57961 12885 28983 16851 Face 57962 12885 41086 28983 Face 57963 5357 28984 2438 Face 57964 5357 34653 28984 Face 57965 991 28985 15659 Face 57966 991 24530 46468 Face 57967 12560 28986 1264 Face 57968 12560 18061 28986 Face 57969 11829 28987 7175 Face 57970 11829 12710 28987 Face 57971 11676 28988 4280 Face 57972 11676 22401 43768 Face 57973 135 28989 16351 Face 57974 135 8337 28989 Face 57975 6740 28990 16870 Face 57976 6740 24901 28990 Face 57977 1469 28991 33119 Face 57978 1469 43349 28991 Face 57979 28993 28992 7705 Face 57980 28993 43267 28992 Face 57981 13209 28993 7705 Face 57982 13209 21067 28993 Face 57983 8043 28994 18983 Face 57984 8043 41965 28994 Face 57985 9030 28995 17943 Face 57986 9030 25010 28995 Face 57987 6004 28996 38850 Face 57988 48982 18490 28996 Face 57989 18003 28997 38356 Face 57990 18003 9463 28997 Face 57991 2254 43019 8238 Face 57992 2254 15451 43019 Face 57993 10185 28999 11456 Face 57994 10185 5125 28999 Face 57995 3357 29000 9640 Face 57996 3357 39142 29000 Face 57997 2314 29001 21558 Face 57998 2314 27029 29001 Face 57999 14557 29002 20498 Face 58000 14557 30980 29002 Face 58001 36001 29003 34366 Face 58002 36001 11369 29003 Face 58003 4149 29004 11015 Face 58004 4149 31219 29004 Face 58005 19827 43879 23113 Face 58006 19827 6699 29005 Face 58007 20514 29006 48927 Face 58008 20514 33832 29006 Face 58009 3898 29007 40268 Face 58010 3898 5816 29007 Face 58011 14212 29008 37799 Face 58012 29009 19696 29008 Face 58013 14212 29009 29008 Face 58014 14212 14447 29009 Face 58015 267 29010 11390 Face 58016 267 37185 29010 Face 58017 13898 29011 37333 Face 58018 13898 5047 29011 Face 58019 29013 29012 42487 Face 58020 2581 25515 29012 Face 58021 29014 29013 13976 Face 58022 29014 29012 29013 Face 58023 2581 29014 13975 Face 58024 2581 29012 29014 Face 58025 7599 29015 12524 Face 58026 7599 22455 29015 Face 58027 17820 29016 7657 Face 58028 17820 11562 29016 Face 58029 8741 29017 7698 Face 58030 8741 43989 29017 Face 58031 19871 29018 7191 Face 58032 19871 10830 29018 Face 58033 2363 29019 12825 Face 58034 2363 18091 29019 Face 58035 39376 29020 45214 Face 58036 39376 37116 29020 Face 58037 45670 29021 11953 Face 58038 32419 42045 29021 Face 58039 612 29022 13240 Face 58040 612 19193 29022 Face 58041 46857 29023 41804 Face 58042 612 13240 29023 Face 58043 14227 29024 19208 Face 58044 14227 39043 29024 Face 58045 13463 37577 10416 Face 58046 13463 45260 37577 Face 58047 29409 29026 23977 Face 58048 12623 35365 29026 Face 58049 7873 29027 36453 Face 58050 7873 43255 29027 Face 58051 5996 29028 40226 Face 58052 5996 37531 29028 Face 58053 35919 29029 33441 Face 58054 35919 16605 29029 Face 58055 3135 29030 17830 Face 58056 3135 37516 29030 Face 58057 19568 29031 45250 Face 58058 49809 36693 29031 Face 58059 6999 29032 20071 Face 58060 6999 27785 29032 Face 58061 3283 37879 19155 Face 58062 3283 24852 29033 Face 58063 3028 29034 23988 Face 58064 3028 24310 29034 Face 58065 1249 29035 14909 Face 58066 1249 41869 29035 Face 58067 2768 29036 16280 Face 58068 37891 35006 29036 Face 58069 5827 29037 23611 Face 58070 5827 1265 29037 Face 58071 16178 46176 47866 Face 58072 16178 22572 46176 Face 58073 13286 29039 33536 Face 58074 35279 5625 29039 Face 58075 5414 29040 48129 Face 58076 5414 9895 29040 Face 58077 4247 29041 49864 Face 58078 4247 22425 29041 Face 58079 4629 29042 6328 Face 58080 49648 24821 29042 Face 58081 29044 29043 35686 Face 58082 45012 7405 29043 Face 58083 17092 29044 36457 Face 58084 17092 29043 29044 Face 58085 17989 29045 24105 Face 58086 29046 45700 29045 Face 58087 17989 29046 29045 Face 58088 17989 381 29046 Face 58089 20204 29047 37002 Face 58090 20204 24664 29047 Face 58091 34450 29048 20891 Face 58092 12082 10858 29048 Face 58093 2778 29049 37589 Face 58094 2778 10002 29049 Face 58095 11099 29050 24346 Face 58096 11099 27264 29050 Face 58097 31146 29051 7192 Face 58098 10830 19870 29051 Face 58099 2137 29052 10000 Face 58100 2137 21938 29052 Face 58101 32342 29053 13919 Face 58102 4664 24378 29053 Face 58103 6675 29054 10665 Face 58104 6675 13588 29054 Face 58105 13025 29055 34782 Face 58106 13025 22047 29055 Face 58107 6148 29056 18912 Face 58108 6148 18080 29056 Face 58109 10039 29057 8713 Face 58110 10039 11465 29057 Face 58111 7292 29058 23943 Face 58112 7292 35855 38348 Face 58113 6312 29059 23618 Face 58114 6312 27106 29059 Face 58115 29061 29060 6627 Face 58116 31637 25952 29060 Face 58117 4573 29061 17722 Face 58118 4573 29060 29061 Face 58119 10434 39735 42936 Face 58120 40597 17295 29062 Face 58121 4713 29063 45521 Face 58122 4713 18433 29063 Face 58123 13279 29064 26449 Face 58124 13279 800 29064 Face 58125 2671 29065 25254 Face 58126 2671 37012 29065 Face 58127 31861 29066 17488 Face 58128 42142 7548 29066 Face 58129 21966 29067 27661 Face 58130 21966 15771 29067 Face 58131 7498 29068 18486 Face 58132 7498 20800 29068 Face 58133 4674 29069 39250 Face 58134 4674 16225 29069 Face 58135 14314 29070 17391 Face 58136 14314 35251 29070 Face 58137 29072 29071 25377 Face 58138 295 40322 29071 Face 58139 295 29072 40299 Face 58140 295 29071 29072 Face 58141 8721 29073 40702 Face 58142 34451 5623 46608 Face 58143 29739 29074 48445 Face 58144 3707 636 29074 Face 58145 3222 29075 14250 Face 58146 3222 24810 29075 Face 58147 35173 29076 478 Face 58148 11595 19919 29076 Face 58149 42750 29077 4872 Face 58150 6522 8203 29077 Face 58151 9777 29078 11158 Face 58152 9777 18345 29078 Face 58153 1591 29079 48261 Face 58154 29080 34616 47454 Face 58155 1591 29080 47454 Face 58156 1591 40760 29080 Face 58157 32679 29081 22586 Face 58158 32679 15132 29081 Face 58159 34399 29082 33822 Face 58160 42903 7702 29082 Face 58161 39716 29083 486 Face 58162 39716 39517 29083 Face 58163 38078 29084 12429 Face 58164 2896 12754 29084 Face 58165 47306 29085 7871 Face 58166 14631 24571 29085 Face 58167 19937 29086 18631 Face 58168 19937 5774 29086 Face 58169 21997 29087 28210 Face 58170 21997 8505 29087 Face 58171 36064 29088 28471 Face 58172 16001 43437 29088 Face 58173 11928 29089 24085 Face 58174 11928 23042 29089 Face 58175 9153 29090 7633 Face 58176 9153 4914 29090 Face 58177 3202 29091 16381 Face 58178 36761 8540 29091 Face 58179 30636 29092 17308 Face 58180 29093 2605 35226 Face 58181 6440 29093 29092 Face 58182 6440 25841 29093 Face 58183 13193 29094 36859 Face 58184 13193 11508 29094 Face 58185 20251 29095 48901 Face 58186 20251 42261 29095 Face 58187 2714 29096 29448 Face 58188 2714 22713 29096 Face 58189 888 29097 17501 Face 58190 888 47944 29097 Face 58191 5167 29098 10658 Face 58192 5167 25389 43816 Face 58193 15822 29099 38777 Face 58194 15822 310 29099 Face 58195 4470 29100 19355 Face 58196 4470 42155 29100 Face 58197 7301 29101 41051 Face 58198 7301 4971 29101 Face 58199 2918 29102 39973 Face 58200 2918 10814 29102 Face 58201 39417 29103 6998 Face 58202 13580 26345 29103 Face 58203 15286 29104 27245 Face 58204 15286 12176 29104 Face 58205 43008 29105 3327 Face 58206 1113 16089 29105 Face 58207 4927 29106 26461 Face 58208 4927 33436 29106 Face 58209 9746 29107 13800 Face 58210 9746 9825 29107 Face 58211 2223 29108 16183 Face 58212 44376 26156 29108 Face 58213 39319 29109 5577 Face 58214 2086 15140 29109 Face 58215 8517 29110 20546 Face 58216 8517 29576 29110 Face 58217 6629 29111 19482 Face 58218 6629 19836 29111 Face 58219 6642 29112 28070 Face 58220 6642 2480 29112 Face 58221 5281 29113 17504 Face 58222 5281 27913 29113 Face 58223 31964 29114 43243 Face 58224 11411 4732 29114 Face 58225 14771 29115 7981 Face 58226 14771 47380 29115 Face 58227 6742 29116 3223 Face 58228 6742 44905 29116 Face 58229 2482 29117 12706 Face 58230 40799 21285 29117 Face 58231 9128 29118 27017 Face 58232 9128 6274 29118 Face 58233 40273 29119 20618 Face 58234 40273 18359 29119 Face 58235 511 29120 48187 Face 58236 29332 10889 29120 Face 58237 3143 29121 8989 Face 58238 3143 26581 29121 Face 58239 13391 49283 20223 Face 58240 41751 4260 29122 Face 58241 2135 44848 17084 Face 58242 2135 45073 29123 Face 58243 11699 29124 13448 Face 58244 11699 19520 29124 Face 58245 17493 29125 43033 Face 58246 17493 2103 29125 Face 58247 6898 29126 7527 Face 58248 6898 26532 29126 Face 58249 20561 29127 20895 Face 58250 20561 38847 29127 Face 58251 23848 29128 18885 Face 58252 23848 27338 29128 Face 58253 11055 29129 5565 Face 58254 11055 28935 29129 Face 58255 29131 29130 39800 Face 58256 29131 24433 29130 Face 58257 223 29131 32952 Face 58258 223 24433 29131 Face 58259 17276 29132 737 Face 58260 17276 17443 29132 Face 58261 38250 29133 19628 Face 58262 14111 11574 29133 Face 58263 39978 29134 16860 Face 58264 23335 7001 29134 Face 58265 1888 29135 48873 Face 58266 1888 15525 29135 Face 58267 64 29136 26671 Face 58268 48007 24760 29136 Face 58269 49772 29137 13215 Face 58270 4910 19819 29137 Face 58271 6041 29138 9506 Face 58272 6041 46587 29138 Face 58273 3153 29139 45515 Face 58274 3153 10109 29139 Face 58275 9959 29140 17938 Face 58276 9959 5217 29140 Face 58277 2606 42457 12129 Face 58278 2606 41330 29141 Face 58279 14876 29142 18470 Face 58280 14876 785 29142 Face 58281 44940 29143 24324 Face 58282 294 17987 29143 Face 58283 13263 29144 24279 Face 58284 13263 41697 29144 Face 58285 34302 29145 6950 Face 58286 34 20811 29145 Face 58287 40367 29146 14376 Face 58288 8946 8947 29146 Face 58289 26369 29147 37128 Face 58290 26369 22403 29147 Face 58291 12939 29148 48537 Face 58292 12939 47669 29148 Face 58293 39240 29149 33990 Face 58294 39697 3514 29149 Face 58295 18518 29150 27660 Face 58296 18518 38580 29150 Face 58297 44107 29151 26653 Face 58298 29152 7319 29151 Face 58299 44107 29152 29151 Face 58300 44106 1445 29152 Face 58301 5114 29153 6494 Face 58302 5114 21543 29153 Face 58303 5345 29154 37068 Face 58304 5345 594 29154 Face 58305 20144 29155 2796 Face 58306 20144 29370 29155 Face 58307 54 29156 8196 Face 58308 48592 17837 29156 Face 58309 54 29157 29156 Face 58310 54 12726 29157 Face 58311 166 29158 11022 Face 58312 166 22471 29158 Face 58313 18740 29159 42933 Face 58314 18740 9119 29159 Face 58315 7800 29160 35899 Face 58316 7800 11361 29160 Face 58317 5587 29161 25907 Face 58318 5587 45546 29161 Face 58319 3403 29162 19124 Face 58320 3403 34429 29162 Face 58321 2690 29163 27203 Face 58322 2690 7282 29163 Face 58323 10368 29164 6246 Face 58324 10368 1468 29164 Face 58325 3836 29165 27685 Face 58326 3836 25498 29165 Face 58327 9268 29166 32105 Face 58328 9268 38611 29166 Face 58329 3588 29167 21203 Face 58330 3588 26503 29167 Face 58331 14358 29168 31853 Face 58332 30689 40306 29169 Face 58333 29168 29169 8366 Face 58334 29168 14358 29169 Face 58335 9349 29170 33250 Face 58336 49694 33878 29170 Face 58337 11140 29171 27853 Face 58338 29172 24929 40893 Face 58339 11140 29172 29171 Face 58340 11140 2957 29172 Face 58341 9923 29173 22972 Face 58342 9923 641 29173 Face 58343 11966 29174 14721 Face 58344 36068 28526 29174 Face 58345 4238 29175 33295 Face 58346 4238 48666 29175 Face 58347 7980 29176 14860 Face 58348 7980 11624 29176 Face 58349 15708 29177 31462 Face 58350 15708 5993 29177 Face 58351 47320 29178 34602 Face 58352 23857 12774 29178 Face 58353 833 29179 17967 Face 58354 833 26052 29179 Face 58355 12489 29180 30433 Face 58356 45025 1633 29180 Face 58357 2878 39610 22126 Face 58358 2878 31169 39610 Face 58359 2878 29182 39018 Face 58360 2878 11491 29182 Face 58361 18580 29183 19617 Face 58362 30810 11714 29183 Face 58363 2466 29184 7648 Face 58364 2466 18459 29184 Face 58365 1158 29185 44687 Face 58366 1158 17998 29185 Face 58367 13041 29186 23453 Face 58368 13041 46531 29186 Face 58369 14319 38402 30329 Face 58370 14319 21433 38402 Face 58371 3578 29188 23616 Face 58372 3578 1621 29188 Face 58373 1784 29189 34347 Face 58374 1784 9862 29189 Face 58375 6842 29190 47040 Face 58376 49468 15413 29190 Face 58377 13157 29191 49118 Face 58378 13157 42360 29191 Face 58379 7594 29192 18582 Face 58380 7594 24243 29192 Face 58381 27276 29193 24190 Face 58382 27276 14158 29193 Face 58383 8690 29194 29095 Face 58384 8690 45451 29194 Face 58385 5296 29195 1772 Face 58386 5296 28402 42338 Face 58387 8325 29196 2195 Face 58388 8325 42257 29196 Face 58389 2001 29197 26856 Face 58390 2001 27208 29197 Face 58391 19407 29198 25750 Face 58392 36677 14565 46294 Face 58393 12581 29199 44907 Face 58394 48352 11394 29199 Face 58395 12732 29200 47302 Face 58396 12732 39821 29200 Face 58397 20101 29201 36930 Face 58398 20101 28474 29201 Face 58399 11523 29202 1296 Face 58400 11523 7873 29202 Face 58401 10883 29203 47299 Face 58402 10883 24682 29203 Face 58403 46495 29204 21944 Face 58404 1947 9816 29204 Face 58405 1542 29205 18426 Face 58406 1542 18576 29205 Face 58407 2459 29206 43674 Face 58408 2459 17706 29206 Face 58409 17433 29207 14602 Face 58410 17433 12974 29207 Face 58411 4258 29208 23615 Face 58412 36982 46966 29208 Face 58413 8642 29209 7202 Face 58414 8642 12823 29209 Face 58415 8528 29210 31408 Face 58416 8528 13349 29210 Face 58417 14788 29211 48696 Face 58418 14788 527 29211 Face 58419 6699 29212 42854 Face 58420 33506 3308 29212 Face 58421 15554 29213 32198 Face 58422 15554 8398 29213 Face 58423 21457 29214 2407 Face 58424 21457 34537 29214 Face 58425 48224 29215 27704 Face 58426 618 20131 29215 Face 58427 37705 29216 24593 Face 58428 48274 24558 29216 Face 58429 25638 29217 36558 Face 58430 25638 6034 29217 Face 58431 6076 29218 4641 Face 58432 6076 14446 29218 Face 58433 29220 44800 19516 Face 58434 3846 21147 29219 Face 58435 3846 29220 29469 Face 58436 3846 29219 29220 Face 58437 45119 29221 28534 Face 58438 12256 6563 29221 Face 58439 982 29222 25137 Face 58440 982 18763 29222 Face 58441 5269 29223 32935 Face 58442 30694 23648 29223 Face 58443 17452 29224 23351 Face 58444 48534 28723 42703 Face 58445 15645 29225 28952 Face 58446 15645 25757 29225 Face 58447 22079 29226 47123 Face 58448 22079 34280 29226 Face 58449 15682 29227 8737 Face 58450 15682 40106 29227 Face 58451 46297 29228 6654 Face 58452 12794 32737 29228 Face 58453 12794 29229 2490 Face 58454 12794 4594 29229 Face 58455 5243 29230 8904 Face 58456 5243 28804 29230 Face 58457 20611 29231 19193 Face 58458 20611 29997 29231 Face 58459 47642 29232 25081 Face 58460 262 18791 29232 Face 58461 41144 29233 22415 Face 58462 9651 24021 29233 Face 58463 24409 29234 26313 Face 58464 24409 27244 29234 Face 58465 10940 29235 8228 Face 58466 10940 15961 29235 Face 58467 44796 29236 16840 Face 58468 9220 25659 29236 Face 58469 2101 29237 23730 Face 58470 2101 13305 29237 Face 58471 7202 41003 27191 Face 58472 7202 37204 41003 Face 58473 11368 29239 11369 Face 58474 11368 25867 29239 Face 58475 6183 29240 2521 Face 58476 6183 24836 29240 Face 58477 20340 29241 38844 Face 58478 20340 11608 29241 Face 58479 29243 29242 2018 Face 58480 48006 12909 29242 Face 58481 37980 29243 37978 Face 58482 3253 13671 48006 Face 58483 16627 29244 10206 Face 58484 16627 45912 29244 Face 58485 471 29245 22521 Face 58486 471 19084 29245 Face 58487 6808 29246 32216 Face 58488 6808 42060 29246 Face 58489 46767 29247 23768 Face 58490 400 13359 29247 Face 58491 22876 29248 43383 Face 58492 22876 4051 29248 Face 58493 3847 29249 40419 Face 58494 3847 25325 29249 Face 58495 11483 29250 26625 Face 58496 11483 771 29250 Face 58497 14925 29251 27826 Face 58498 14925 11639 29251 Face 58499 13987 29252 5915 Face 58500 13987 26688 29252 Face 58501 3770 29253 28212 Face 58502 3770 18062 29253 Face 58503 29255 29254 8623 Face 58504 30781 18070 29254 Face 58505 46463 29255 36073 Face 58506 30781 29254 29255 Face 58507 541 29256 36221 Face 58508 44439 9632 29256 Face 58509 10437 29257 795 Face 58510 10437 20259 29257 Face 58511 35153 29258 28691 Face 58512 29259 19657 29258 Face 58513 35153 29259 29258 Face 58514 4830 32317 29259 Face 58515 12714 29260 2562 Face 58516 12714 5486 29260 Face 58517 17454 29261 8362 Face 58518 17454 3251 29261 Face 58519 13404 29262 24875 Face 58520 13404 43387 29262 Face 58521 19334 29263 3537 Face 58522 19334 19297 29263 Face 58523 12123 29264 39939 Face 58524 12123 22783 29264 Face 58525 10681 29265 29373 Face 58526 10681 44490 29265 Face 58527 31399 29266 10755 Face 58528 31399 47593 29266 Face 58529 256 29267 36736 Face 58530 38156 5206 29267 Face 58531 5009 29268 26279 Face 58532 5009 28806 29268 Face 58533 15545 29269 26635 Face 58534 15545 3781 29269 Face 58535 21616 29270 10688 Face 58536 21616 28110 29270 Face 58537 20327 29271 3345 Face 58538 20327 38723 29271 Face 58539 5477 29272 30036 Face 58540 5477 31952 29272 Face 58541 4038 29273 26506 Face 58542 4038 32278 29273 Face 58543 3902 29274 41146 Face 58544 3902 32349 29274 Face 58545 4601 29275 21482 Face 58546 4601 37205 29275 Face 58547 4937 29276 34632 Face 58548 4937 25877 29276 Face 58549 18942 29277 24030 Face 58550 35574 7375 29277 Face 58551 5503 29278 13978 Face 58552 5503 42901 29278 Face 58553 11065 29279 28522 Face 58554 11065 42812 29279 Face 58555 2942 29280 28467 Face 58556 2942 10246 29280 Face 58557 10802 29281 28231 Face 58558 10802 13936 29281 Face 58559 1063 29282 5882 Face 58560 1063 9255 29282 Face 58561 49015 29283 33765 Face 58562 29284 25878 29283 Face 58563 10095 29284 29283 Face 58564 36323 1641 29284 Face 58565 29286 29285 28663 Face 58566 12483 34275 29285 Face 58567 12483 29286 7822 Face 58568 12483 29285 29286 Face 58569 16863 29287 15070 Face 58570 49062 24708 29287 Face 58571 48986 29288 39087 Face 58572 48986 8542 29288 Face 58573 1779 29290 27314 Face 58574 1779 47066 29290 Face 58575 29289 29290 49200 Face 58576 29289 27314 29290 Face 58577 8720 29291 20717 Face 58578 8720 1466 29291 Face 58579 42717 29292 25401 Face 58580 13596 3864 29292 Face 58581 5263 29293 14880 Face 58582 33311 5853 29293 Face 58583 13973 48874 33197 Face 58584 13973 21099 29294 Face 58585 8092 29295 1153 Face 58586 8092 40710 29295 Face 58587 24040 29296 5806 Face 58588 24040 39747 29296 Face 58589 40921 29297 9346 Face 58590 48166 29083 46153 Face 58591 10375 29298 951 Face 58592 44696 38390 29298 Face 58593 48844 29299 8730 Face 58594 3151 29892 29299 Face 58595 3151 29300 17170 Face 58596 3151 29299 48844 Face 58597 2673 29301 20581 Face 58598 2673 5152 29301 Face 58599 36697 49482 20953 Face 58600 8661 24175 29302 Face 58601 30134 29303 15388 Face 58602 9654 29304 29303 Face 58603 18617 29304 38452 Face 58604 18617 29303 29304 Face 58605 36047 29305 41928 Face 58606 10570 39117 29305 Face 58607 11240 29306 24194 Face 58608 11240 1390 29306 Face 58609 18417 29307 14109 Face 58610 18417 14519 29307 Face 58611 4436 29308 15767 Face 58612 4436 21697 29308 Face 58613 13553 29309 14477 Face 58614 13553 49653 29309 Face 58615 29309 29310 27185 Face 58616 29309 9880 29310 Face 58617 1411 29311 22331 Face 58618 1411 23800 29311 Face 58619 41573 29312 11981 Face 58620 12192 22031 29312 Face 58621 20212 29313 27084 Face 58622 20212 13618 29313 Face 58623 16719 29314 16721 Face 58624 16719 11955 29314 Face 58625 188 29315 20296 Face 58626 29316 44471 29315 Face 58627 188 29316 29315 Face 58628 188 15583 29316 Face 58629 46211 43415 40977 Face 58630 17908 21843 29317 Face 58631 10993 29318 22779 Face 58632 10993 38189 29318 Face 58633 14841 29319 41796 Face 58634 14841 14019 29319 Face 58635 24176 29320 38453 Face 58636 24176 44778 29320 Face 58637 28817 29321 49512 Face 58638 28817 9992 29321 Face 58639 36359 29322 26407 Face 58640 288 38723 44425 Face 58641 10866 29323 22211 Face 58642 10866 22239 29323 Face 58643 5679 29324 17745 Face 58644 5679 46037 49473 Face 58645 5679 29325 46037 Face 58646 5679 34163 29325 Face 58647 28335 29326 13346 Face 58648 28335 4050 29326 Face 58649 17682 44362 27609 Face 58650 17682 32330 29327 Face 58651 40101 29328 14724 Face 58652 40101 16339 29328 Face 58653 49016 29329 5423 Face 58654 11959 47229 29329 Face 58655 46641 29330 2220 Face 58656 14151 20252 29330 Face 58657 6423 29331 26921 Face 58658 6423 28311 29331 Face 58659 511 29332 29120 Face 58660 511 27802 29332 Face 58661 13457 29333 8794 Face 58662 13457 28259 29333 Face 58663 45840 29334 1017 Face 58664 29453 3990 29334 Face 58665 46806 29335 40450 Face 58666 39839 8839 29335 Face 58667 3678 29336 26502 Face 58668 3678 23181 29336 Face 58669 3252 29337 2749 Face 58670 3252 7213 29337 Face 58671 16983 29338 20221 Face 58672 16983 41958 29338 Face 58673 5836 29339 8922 Face 58674 5836 23577 43352 Face 58675 17549 29340 34145 Face 58676 17549 3601 29340 Face 58677 29342 29341 41859 Face 58678 29342 7756 29341 Face 58679 12257 29342 21377 Face 58680 12257 13496 29342 Face 58681 16862 29343 7465 Face 58682 16862 22180 29343 Face 58683 3519 48317 47521 Face 58684 38500 23690 29344 Face 58685 15855 29345 8310 Face 58686 15855 6857 29345 Face 58687 4242 29346 17909 Face 58688 4242 8311 29346 Face 58689 15672 36384 31912 Face 58690 15672 6726 29347 Face 58691 42093 49106 7843 Face 58692 6596 18034 29348 Face 58693 6167 29349 14693 Face 58694 6167 15815 29349 Face 58695 9695 29350 34437 Face 58696 9695 22377 29350 Face 58697 14496 29351 13286 Face 58698 14496 8651 29351 Face 58699 30309 29352 7761 Face 58700 30309 39391 29352 Face 58701 1670 29353 23032 Face 58702 1670 37061 29353 Face 58703 709 29354 29698 Face 58704 709 13938 29354 Face 58705 709 29355 12437 Face 58706 709 8286 29355 Face 58707 38618 29356 20640 Face 58708 38618 21478 29356 Face 58709 7297 29357 35243 Face 58710 29358 15561 29357 Face 58711 7297 29358 29357 Face 58712 7297 29359 29358 Face 58713 12992 29359 49067 Face 58714 38248 49576 29359 Face 58715 22320 29360 45249 Face 58716 22320 2065 29360 Face 58717 46646 29361 27935 Face 58718 8062 17589 29361 Face 58719 13366 29362 49463 Face 58720 13366 32353 29362 Face 58721 6040 29363 31683 Face 58722 6040 41309 47611 Face 58723 8944 29364 20482 Face 58724 8944 41499 29364 Face 58725 16912 29365 25883 Face 58726 48240 29786 29365 Face 58727 2887 29366 20736 Face 58728 2887 29955 29366 Face 58729 3413 29367 16708 Face 58730 3413 27009 29367 Face 58731 10959 29368 7658 Face 58732 10959 2130 29368 Face 58733 19118 29369 45001 Face 58734 19118 312 29369 Face 58735 29371 29370 20144 Face 58736 2913 17646 29370 Face 58737 42200 29371 15699 Face 58738 42200 29370 29371 Face 58739 11537 29372 19898 Face 58740 11537 30078 29372 Face 58741 10810 29373 5177 Face 58742 10810 10681 29373 Face 58743 10782 29374 46057 Face 58744 10782 46349 29374 Face 58745 2692 29375 42694 Face 58746 2692 15115 44392 Face 58747 27314 29376 41174 Face 58748 27314 29289 29376 Face 58749 20851 29377 24698 Face 58750 20851 4363 29377 Face 58751 759 29378 40569 Face 58752 759 24428 29378 Face 58753 2685 29379 11042 Face 58754 2685 26153 29379 Face 58755 2444 29380 26607 Face 58756 2444 8495 29380 Face 58757 17976 29381 21201 Face 58758 17976 1001 29381 Face 58759 2673 29382 46066 Face 58760 2673 11782 29382 Face 58761 8503 29383 20510 Face 58762 8503 12000 29383 Face 58763 12476 29384 4425 Face 58764 12476 33907 29384 Face 58765 5532 29385 23087 Face 58766 5532 32584 29385 Face 58767 7789 29386 36468 Face 58768 7789 14774 29386 Face 58769 646 29387 18326 Face 58770 41508 10885 29387 Face 58771 5464 47187 7806 Face 58772 5464 12668 47187 Face 58773 11545 29389 12746 Face 58774 11545 28679 29389 Face 58775 15054 29390 49108 Face 58776 15054 21104 29390 Face 58777 29393 29391 9886 Face 58778 32433 469 29391 Face 58779 2779 29392 24185 Face 58780 2779 29391 29392 Face 58781 29392 29393 9886 Face 58782 29392 29391 29393 Face 58783 2345 29394 3511 Face 58784 2345 10613 29394 Face 58785 7335 29395 9052 Face 58786 35679 34627 46711 Face 58787 36717 29396 20441 Face 58788 4034 12864 29396 Face 58789 2567 29397 8293 Face 58790 2567 32127 29397 Face 58791 42053 29398 14905 Face 58792 34109 12074 29398 Face 58793 27945 29399 5679 Face 58794 27945 46639 29399 Face 58795 48722 29400 23142 Face 58796 417 25401 29400 Face 58797 1327 29401 41715 Face 58798 1327 40819 29401 Face 58799 1526 29402 26370 Face 58800 1526 23907 29402 Face 58801 29404 29403 12107 Face 58802 1526 207 29403 Face 58803 1526 29404 35988 Face 58804 1526 29403 29404 Face 58805 39851 29405 11791 Face 58806 1913 46244 29405 Face 58807 1410 29406 40595 Face 58808 1410 43473 29406 Face 58809 3502 29407 8448 Face 58810 3502 8887 29407 Face 58811 19807 29408 48798 Face 58812 19807 47284 29408 Face 58813 12623 29409 48399 Face 58814 12623 29026 29409 Face 58815 14761 29410 4006 Face 58816 14761 24592 29410 Face 58817 858 29411 32767 Face 58818 858 4724 29411 Face 58819 6043 43716 43510 Face 58820 6043 43627 43716 Face 58821 9440 29413 36408 Face 58822 9440 41833 29413 Face 58823 15740 29414 25961 Face 58824 15740 41858 29414 Face 58825 38501 36137 26074 Face 58826 10687 8250 29415 Face 58827 6694 29416 21485 Face 58828 6694 39104 29416 Face 58829 47247 29417 37410 Face 58830 32301 12366 29417 Face 58831 3768 29418 12780 Face 58832 3768 18424 29418 Face 58833 20319 29419 24495 Face 58834 20319 8280 29419 Face 58835 19948 29420 7565 Face 58836 19948 23999 29420 Face 58837 8415 29421 1000 Face 58838 8415 42813 29421 Face 58839 23342 29422 25811 Face 58840 23342 15609 29422 Face 58841 6408 29423 23854 Face 58842 6408 34329 29423 Face 58843 7697 29424 15842 Face 58844 7697 4022 29424 Face 58845 42135 29425 22655 Face 58846 33931 16994 29425 Face 58847 4449 29426 8605 Face 58848 4449 7722 29426 Face 58849 10473 29427 25561 Face 58850 10473 32702 29427 Face 58851 6705 29428 38972 Face 58852 29429 1950 29428 Face 58853 6705 29429 29428 Face 58854 6705 7914 29429 Face 58855 21303 29430 14682 Face 58856 21303 13424 29430 Face 58857 3463 29431 9280 Face 58858 3463 48572 29431 Face 58859 16090 29432 17937 Face 58860 16090 16089 29432 Face 58861 17053 29433 31364 Face 58862 17053 19745 29433 Face 58863 21951 29434 9158 Face 58864 21951 34984 29434 Face 58865 5216 29435 24792 Face 58866 5216 4525 29435 Face 58867 15614 29436 4717 Face 58868 15614 17262 29436 Face 58869 29770 29437 46744 Face 58870 29770 7006 29437 Face 58871 29439 29438 5086 Face 58872 10679 15073 29438 Face 58873 10679 29439 42036 Face 58874 10679 29438 29439 Face 58875 3881 29440 18347 Face 58876 3881 39616 29440 Face 58877 43997 29441 32668 Face 58878 13968 1554 29441 Face 58879 14657 29442 27707 Face 58880 48323 24723 29442 Face 58881 31703 29443 1470 Face 58882 9818 6211 29443 Face 58883 16223 29444 6269 Face 58884 16223 41435 29444 Face 58885 45361 29445 20665 Face 58886 45361 25132 29445 Face 58887 9608 29446 21325 Face 58888 9608 2127 29446 Face 58889 6636 29447 8200 Face 58890 35816 3751 29447 Face 58891 6314 29448 29096 Face 58892 6314 25975 29448 Face 58893 32301 29449 3006 Face 58894 48460 31762 29449 Face 58895 33588 29450 4196 Face 58896 42764 20690 29450 Face 58897 14634 29451 34529 Face 58898 14634 44575 29451 Face 58899 11194 29452 37245 Face 58900 11194 27658 29452 Face 58901 8494 29453 29334 Face 58902 29738 6207 29453 Face 58903 14730 29454 19703 Face 58904 14730 28716 29454 Face 58905 7326 29455 15307 Face 58906 7326 17130 29455 Face 58907 2926 29456 35497 Face 58908 2926 28294 29456 Face 58909 24042 29457 11783 Face 58910 24042 7512 29457 Face 58911 8477 29458 28517 Face 58912 8477 21894 29458 Face 58913 5426 29459 16665 Face 58914 5426 6392 29459 Face 58915 4997 29460 41401 Face 58916 4997 17900 29460 Face 58917 10302 29461 28049 Face 58918 10302 21418 29461 Face 58919 20590 29462 9721 Face 58920 20590 29964 29462 Face 58921 6493 29463 19685 Face 58922 6493 33711 29463 Face 58923 8281 29464 48490 Face 58924 8281 41530 29464 Face 58925 18527 29465 18532 Face 58926 18527 28968 29465 Face 58927 10343 29466 37670 Face 58928 10343 4706 29466 Face 58929 1893 29467 36041 Face 58930 1893 43408 29467 Face 58931 11969 29468 16474 Face 58932 11969 4534 29468 Face 58933 12016 29469 29220 Face 58934 12016 27069 29469 Face 58935 14230 29470 27804 Face 58936 14230 42151 29470 Face 58937 7964 29471 40021 Face 58938 7964 15647 29471 Face 58939 13134 29472 32997 Face 58940 13134 49802 29472 Face 58941 8577 47995 12472 Face 58942 8577 35932 29473 Face 58943 8577 29474 35932 Face 58944 8577 12472 29474 Face 58945 20996 29475 36462 Face 58946 20996 46949 29475 Face 58947 1146 29476 28687 Face 58948 1146 42725 29476 Face 58949 13180 29477 39453 Face 58950 13180 14674 29477 Face 58951 7711 29478 17899 Face 58952 7711 46415 29478 Face 58953 875 29479 21896 Face 58954 29480 40594 29479 Face 58955 875 29480 29479 Face 58956 875 30726 29480 Face 58957 44547 29481 12084 Face 58958 44548 16844 29481 Face 58959 4066 29482 20367 Face 58960 45129 9812 29482 Face 58961 11343 29483 32377 Face 58962 11343 30966 29483 Face 58963 43913 29484 14196 Face 58964 12375 358 29484 Face 58965 5430 29485 48737 Face 58966 5430 13972 29485 Face 58967 2338 29486 7745 Face 58968 2338 6679 29486 Face 58969 32421 29487 3331 Face 58970 8894 36581 29487 Face 58971 1205 29488 41600 Face 58972 1205 26040 29488 Face 58973 35828 29489 20745 Face 58974 35828 35776 29489 Face 58975 8433 29490 47090 Face 58976 8433 44014 29490 Face 58977 2910 29491 11307 Face 58978 37127 7849 40610 Face 58979 9076 29492 12505 Face 58980 9076 28404 29492 Face 58981 1257 29493 15029 Face 58982 1257 18992 29493 Face 58983 27205 29494 34303 Face 58984 27205 35360 29494 Face 58985 2498 29495 24348 Face 58986 2498 12588 29495 Face 58987 9564 29496 43343 Face 58988 9564 5315 29496 Face 58989 351 29497 22233 Face 58990 351 28431 29497 Face 58991 10991 29498 17805 Face 58992 10991 15785 29498 Face 58993 20082 29499 46584 Face 58994 20082 17505 29499 Face 58995 9843 29500 29454 Face 58996 9843 17216 29500 Face 58997 10087 29501 32346 Face 58998 10087 2128 29501 Face 58999 13453 29502 8061 Face 59000 34439 19887 29502 Face 59001 4041 29503 32449 Face 59002 4041 15170 29504 Face 59003 29503 29504 15570 Face 59004 29503 4041 29504 Face 59005 9233 29505 9234 Face 59006 9233 46819 29505 Face 59007 9348 29506 31226 Face 59008 9348 14541 29506 Face 59009 16955 29507 17630 Face 59010 16955 2094 29507 Face 59011 5408 29508 33740 Face 59012 5408 46422 29508 Face 59013 6083 29509 15645 Face 59014 6083 1263 29509 Face 59015 31385 29510 15120 Face 59016 2216 32801 29510 Face 59017 4804 29511 15116 Face 59018 4804 47623 29511 Face 59019 19500 29512 20564 Face 59020 29513 44786 29512 Face 59021 19500 29513 29512 Face 59022 19500 27098 29513 Face 59023 24393 29514 38313 Face 59024 24393 22572 29514 Face 59025 12676 29515 8777 Face 59026 46295 25454 29515 Face 59027 7681 29516 32639 Face 59028 7681 5037 29516 Face 59029 18255 29517 38374 Face 59030 18255 45902 29517 Face 59031 5417 29518 37061 Face 59032 5417 18686 29518 Face 59033 19283 29519 34434 Face 59034 19283 46478 29519 Face 59035 13769 29520 28197 Face 59036 13769 3723 29520 Face 59037 21025 29521 2748 Face 59038 21025 5816 29521 Face 59039 49645 29522 23360 Face 59040 7678 1253 29522 Face 59041 7322 29523 45872 Face 59042 7322 38534 29523 Face 59043 1371 29524 46072 Face 59044 1371 27350 29524 Face 59045 25580 29525 19384 Face 59046 25580 2 29525 Face 59047 19116 29526 4652 Face 59048 19116 31114 49663 Face 59049 18113 29527 8655 Face 59050 18113 12073 29527 Face 59051 4354 29528 24240 Face 59052 4354 32165 29528 Face 59053 3294 29529 12515 Face 59054 3294 16599 29529 Face 59055 13610 29530 4753 Face 59056 13610 20084 29530 Face 59057 5014 29531 11890 Face 59058 5014 9305 29531 Face 59059 36369 29532 4620 Face 59060 22426 13460 29532 Face 59061 58 29533 10265 Face 59062 58 20185 29533 Face 59063 5925 29534 25496 Face 59064 37886 32141 29534 Face 59065 2221 29535 14338 Face 59066 2221 6884 29535 Face 59067 12210 29536 20880 Face 59068 12210 34744 29536 Face 59069 1786 29537 26893 Face 59070 1786 43543 29537 Face 59071 21580 29538 14551 Face 59072 21580 35136 29538 Face 59073 8901 29539 42704 Face 59074 8901 33231 29539 Face 59075 8901 29540 41604 Face 59076 8901 3496 29540 Face 59077 5703 29541 19199 Face 59078 5703 11431 29541 Face 59079 10870 29542 5038 Face 59080 36322 2971 29542 Face 59081 11173 29543 40568 Face 59082 48612 15485 29543 Face 59083 4175 29544 26300 Face 59084 4175 18337 29544 Face 59085 29758 29545 47448 Face 59086 12791 35244 29545 Face 59087 18073 29546 916 Face 59088 18073 3926 29546 Face 59089 10613 29547 16559 Face 59090 10613 14175 29547 Face 59091 29549 29548 10229 Face 59092 1522 39958 29548 Face 59093 1522 29549 29312 Face 59094 1522 29548 29549 Face 59095 7117 29550 38887 Face 59096 47168 35886 29550 Face 59097 35012 29551 48754 Face 59098 4170 28934 29551 Face 59099 6951 29552 118 Face 59100 6951 7826 29552 Face 59101 37727 29553 49082 Face 59102 35789 23338 29553 Face 59103 10259 29554 23097 Face 59104 10259 15288 29554 Face 59105 44578 29555 5401 Face 59106 4156 16182 29555 Face 59107 10816 29556 7453 Face 59108 10816 41538 29556 Face 59109 29558 29557 6899 Face 59110 29558 44320 29557 Face 59111 33548 29558 17197 Face 59112 10003 24548 29558 Face 59113 3585 29559 16689 Face 59114 29560 9146 29559 Face 59115 3585 29560 29559 Face 59116 38244 21637 29560 Face 59117 49433 29561 2271 Face 59118 9486 19348 29561 Face 59119 21875 29562 31833 Face 59120 21875 20296 29562 Face 59121 5453 29563 44035 Face 59122 5453 11025 29563 Face 59123 3956 29564 21624 Face 59124 3956 27659 29564 Face 59125 11198 29565 17866 Face 59126 11198 11247 29565 Face 59127 37633 29566 47614 Face 59128 7772 13851 29566 Face 59129 40128 29567 34850 Face 59130 39332 1052 29567 Face 59131 4456 29568 28249 Face 59132 4456 27208 29568 Face 59133 12110 29569 45856 Face 59134 29570 14983 29569 Face 59135 12110 29570 29569 Face 59136 12110 3795 29570 Face 59137 18654 29571 44983 Face 59138 18654 14953 29571 Face 59139 20883 29572 25291 Face 59140 20883 40993 29572 Face 59141 29572 29573 5194 Face 59142 29572 5193 29573 Face 59143 16660 29574 16661 Face 59144 16660 8129 29574 Face 59145 14611 29575 25230 Face 59146 42856 27513 29575 Face 59147 4100 29576 9010 Face 59148 4100 29110 29576 Face 59149 11190 29577 2215 Face 59150 11190 1575 29577 Face 59151 29577 29578 38593 Face 59152 29577 32359 29578 Face 59153 9237 29579 46751 Face 59154 9237 33501 29579 Face 59155 10238 29580 36886 Face 59156 10238 6305 29580 Face 59157 11756 29581 27373 Face 59158 11756 46034 29581 Face 59159 21964 29582 30265 Face 59160 21964 1413 29582 Face 59161 10793 29583 2526 Face 59162 10793 38144 29583 Face 59163 11951 29584 40643 Face 59164 11951 26326 29584 Face 59165 23157 29585 33745 Face 59166 32109 14391 29585 Face 59167 42981 29586 27525 Face 59168 42981 27434 29586 Face 59169 4340 29587 21967 Face 59170 4340 48945 29587 Face 59171 9787 29588 11074 Face 59172 9787 18094 29588 Face 59173 10829 29589 1850 Face 59174 10829 33638 29589 Face 59175 40632 29590 18201 Face 59176 40632 38235 29590 Face 59177 2978 29591 20169 Face 59178 38788 22525 29591 Face 59179 31081 41444 1289 Face 59180 21253 32929 38100 Face 59181 12266 29593 41029 Face 59182 31617 31618 29593 Face 59183 46585 44420 36126 Face 59184 31616 20285 29594 Face 59185 11608 29595 24791 Face 59186 11608 25417 29595 Face 59187 16753 29596 23199 Face 59188 35839 10101 29596 Face 59189 35034 29597 1476 Face 59190 33802 29350 29597 Face 59191 11568 29598 17997 Face 59192 11568 48827 29598 Face 59193 32007 29599 35757 Face 59194 32006 43623 29599 Face 59195 8616 29600 31115 Face 59196 8616 47751 29600 Face 59197 35660 29601 6250 Face 59198 35660 2650 29601 Face 59199 14357 29602 20512 Face 59200 14357 7538 29602 Face 59201 13221 29603 4438 Face 59202 13221 45606 29603 Face 59203 16891 29604 26095 Face 59204 16891 13878 29604 Face 59205 4520 29605 26592 Face 59206 4520 15792 29605 Face 59207 9428 29606 1140 Face 59208 9428 48617 29606 Face 59209 596 29607 4419 Face 59210 596 31031 29607 Face 59211 13120 29608 39984 Face 59212 13120 4580 29608 Face 59213 9755 29609 38629 Face 59214 9755 48516 29609 Face 59215 11141 29610 35522 Face 59216 11141 2535 29610 Face 59217 17697 29611 17722 Face 59218 17697 20453 29611 Face 59219 48692 29612 44600 Face 59220 29281 13936 29612 Face 59221 12643 29613 36780 Face 59222 12643 61 29613 Face 59223 40326 29614 14695 Face 59224 36160 21270 29614 Face 59225 46040 29615 30672 Face 59226 11387 21941 29615 Face 59227 4825 29616 686 Face 59228 4825 14529 29616 Face 59229 30753 29617 20795 Face 59230 6580 14197 29617 Face 59231 1757 29618 35679 Face 59232 1757 16364 29618 Face 59233 18285 29619 22883 Face 59234 18285 33091 29619 Face 59235 11278 29620 12867 Face 59236 11278 32812 29620 Face 59237 7541 29621 42826 Face 59238 7541 38400 39217 Face 59239 13210 29622 36849 Face 59240 13210 33106 29622 Face 59241 15178 29623 41978 Face 59242 15178 30190 29623 Face 59243 1225 29624 24084 Face 59244 36901 9062 29624 Face 59245 6050 29625 46139 Face 59246 6050 8226 29625 Face 59247 5726 29626 35012 Face 59248 5726 16876 44069 Face 59249 5726 29627 42088 Face 59250 5726 15271 29627 Face 59251 33759 40343 30645 Face 59252 14280 27868 29628 Face 59253 14344 29629 47267 Face 59254 14344 32923 29629 Face 59255 11367 29630 11366 Face 59256 11367 9746 29630 Face 59257 48016 29631 44326 Face 59258 10201 36135 29631 Face 59259 12652 29632 7307 Face 59260 12652 20675 29632 Face 59261 45127 29633 32683 Face 59262 5994 24142 29633 Face 59263 38889 29634 5459 Face 59264 1843 21823 29634 Face 59265 5563 29635 19147 Face 59266 5563 11592 29635 Face 59267 33959 29636 24191 Face 59268 37389 1280 29636 Face 59269 3574 29637 36997 Face 59270 3574 20587 29637 Face 59271 14426 29638 23229 Face 59272 14426 23040 29638 Face 59273 2341 29639 22859 Face 59274 2341 7634 29639 Face 59275 30829 29640 36812 Face 59276 7063 10893 29640 Face 59277 11576 29641 41675 Face 59278 11576 3123 29641 Face 59279 15196 29642 4481 Face 59280 15196 35513 29642 Face 59281 3771 36496 14051 Face 59282 33673 13480 29643 Face 59283 20141 29644 30176 Face 59284 20141 45302 29644 Face 59285 29646 49970 656 Face 59286 6708 16632 29645 Face 59287 6708 29646 3109 Face 59288 6708 49970 29646 Face 59289 2748 29647 18844 Face 59290 2748 37446 29647 Face 59291 2748 29648 37446 Face 59292 2748 29521 29648 Face 59293 39245 29649 15925 Face 59294 2045 28903 29649 Face 59295 10532 29650 15765 Face 59296 10532 10533 29650 Face 59297 27919 29651 25624 Face 59298 27919 32710 29651 Face 59299 7136 29652 20778 Face 59300 7136 27561 29652 Face 59301 6287 31907 25942 Face 59302 6287 27807 34554 Face 59303 2709 29654 17009 Face 59304 42083 8018 29654 Face 59305 3580 29655 6874 Face 59306 3580 22782 29655 Face 59307 18184 29656 6383 Face 59308 18184 9589 29656 Face 59309 15911 29657 28007 Face 59310 15911 44743 29657 Face 59311 11474 29658 25706 Face 59312 11474 45048 29658 Face 59313 4942 29659 17131 Face 59314 4942 48129 29659 Face 59315 790 29660 3486 Face 59316 790 44984 29660 Face 59317 729 29661 22374 Face 59318 729 5387 29661 Face 59319 40378 29662 13499 Face 59320 11417 8845 29662 Face 59321 35020 29663 25408 Face 59322 3911 48586 29663 Face 59323 9111 29664 34835 Face 59324 9111 13177 29664 Face 59325 29970 29665 13969 Face 59326 1597 42517 29665 Face 59327 47404 29666 25983 Face 59328 2662 46252 29666 Face 59329 9717 29667 2871 Face 59330 9717 45306 29667 Face 59331 13280 29668 1433 Face 59332 13280 9998 29668 Face 59333 17911 29669 43621 Face 59334 17911 47975 29669 Face 59335 10190 29670 49607 Face 59336 10190 27762 29670 Face 59337 783 29671 26847 Face 59338 783 32646 29672 Face 59339 29671 29672 49046 Face 59340 29671 783 29672 Face 59341 8066 29673 25821 Face 59342 8066 34607 29673 Face 59343 21121 29674 32177 Face 59344 21121 47528 29674 Face 59345 731 29675 9266 Face 59346 731 15939 29675 Face 59347 14791 29676 48415 Face 59348 14791 7982 29676 Face 59349 8047 29677 39830 Face 59350 8047 48254 29677 Face 59351 48515 29678 21123 Face 59352 17001 17365 36056 Face 59353 7535 29679 12145 Face 59354 7535 39267 29679 Face 59355 16996 29680 4362 Face 59356 16996 4013 29680 Face 59357 3731 29681 43318 Face 59358 31583 11557 29681 Face 59359 36438 29682 28425 Face 59360 36438 33004 29682 Face 59361 30057 29683 44618 Face 59362 6212 19424 29683 Face 59363 15306 29684 7084 Face 59364 15306 34539 29684 Face 59365 11804 36387 4030 Face 59366 11804 12883 36387 Face 59367 4207 29686 13292 Face 59368 4207 12889 29686 Face 59369 16662 29687 7726 Face 59370 16662 21449 29687 Face 59371 14716 29688 14922 Face 59372 14716 18730 29688 Face 59373 1598 29689 3769 Face 59374 1598 16215 29689 Face 59375 9433 29690 29691 Face 59376 9433 21590 29690 Face 59377 27184 29691 29690 Face 59378 39201 9433 29691 Face 59379 15337 29692 49916 Face 59380 15337 1761 29692 Face 59381 30631 37083 31226 Face 59382 2915 17317 29693 Face 59383 29695 29694 927 Face 59384 5094 13319 29694 Face 59385 36974 29695 2172 Face 59386 5094 29694 29695 Face 59387 7792 29696 49181 Face 59388 41029 29593 29696 Face 59389 18492 29697 661 Face 59390 18492 33644 29697 Face 59391 6193 29698 29354 Face 59392 6193 26004 29698 Face 59393 4446 29699 38151 Face 59394 4446 47700 29699 Face 59395 4272 29700 8810 Face 59396 4272 40860 29700 Face 59397 13983 29701 37481 Face 59398 13983 33894 29701 Face 59399 738 29702 23382 Face 59400 738 14540 29702 Face 59401 9356 29703 25904 Face 59402 9356 14996 29703 Face 59403 12359 29704 28759 Face 59404 37125 43503 29704 Face 59405 7792 29705 34721 Face 59406 7792 3270 29705 Face 59407 3546 29706 1998 Face 59408 3546 46137 47411 Face 59409 15815 29707 29349 Face 59410 15815 18320 29707 Face 59411 45274 29708 27552 Face 59412 1049 44239 29708 Face 59413 14097 29709 20034 Face 59414 14097 23902 29709 Face 59415 18441 29710 1060 Face 59416 18441 9996 29710 Face 59417 11606 29711 20290 Face 59418 11606 1478 29711 Face 59419 19 29712 7121 Face 59420 31654 11260 37031 Face 59421 18761 29713 1598 Face 59422 18761 38365 29713 Face 59423 7463 29714 18996 Face 59424 7463 23317 29714 Face 59425 35626 29715 28958 Face 59426 19848 5589 29715 Face 59427 11706 29716 3966 Face 59428 11706 36970 29716 Face 59429 33802 29717 26580 Face 59430 47158 19636 29717 Face 59431 3738 29718 16379 Face 59432 30601 15463 43988 Face 59433 5637 29719 27619 Face 59434 5637 9667 29719 Face 59435 27879 29720 14329 Face 59436 27879 12269 29720 Face 59437 29722 29721 9423 Face 59438 4548 12628 29721 Face 59439 4548 29722 4241 Face 59440 4548 29721 29722 Face 59441 38599 29723 26865 Face 59442 44306 11204 37631 Face 59443 35017 29724 28781 Face 59444 9712 25054 29724 Face 59445 11431 29725 29541 Face 59446 11431 43772 29725 Face 59447 19444 29726 15763 Face 59448 19444 14118 29726 Face 59449 4945 29727 11495 Face 59450 4945 31654 29727 Face 59451 26639 29728 30437 Face 59452 26639 42537 29728 Face 59453 1673 29729 23777 Face 59454 48786 11935 29729 Face 59455 19343 29730 42776 Face 59456 19343 27319 29730 Face 59457 7168 29731 10510 Face 59458 7168 20738 29731 Face 59459 29735 29732 8393 Face 59460 29733 20468 29732 Face 59461 29734 29733 36051 Face 59462 29734 32014 29733 Face 59463 5244 29734 36051 Face 59464 5244 1491 29734 Face 59465 5244 29735 20691 Face 59466 5244 36051 29735 Face 59467 9002 29736 24249 Face 59468 9002 13868 29736 Face 59469 24342 29737 16433 Face 59470 24342 40635 29737 Face 59471 8494 29738 29453 Face 59472 8494 20590 29738 Face 59473 29740 29739 42276 Face 59474 3707 29074 29739 Face 59475 3707 47165 30897 Face 59476 3707 29739 29740 Face 59477 7910 29741 110 Face 59478 48431 6382 29741 Face 59479 8235 38013 17725 Face 59480 8235 23592 29742 Face 59481 3821 29743 45390 Face 59482 3821 20577 29743 Face 59483 23347 29744 37278 Face 59484 23347 2965 29744 Face 59485 44289 29745 14071 Face 59486 44289 7045 29745 Face 59487 3475 29746 22952 Face 59488 31688 14346 29746 Face 59489 6726 29747 34356 Face 59490 6726 21169 29747 Face 59491 16456 29748 24852 Face 59492 16456 23168 29748 Face 59493 6109 29749 26895 Face 59494 6109 9042 49631 Face 59495 40581 29750 20799 Face 59496 2276 9996 41930 Face 59497 19022 29751 4697 Face 59498 19022 42998 29751 Face 59499 2594 29752 44379 Face 59500 2594 8178 29752 Face 59501 7483 29753 6968 Face 59502 7483 28430 29753 Face 59503 14667 29754 16012 Face 59504 14667 26752 29754 Face 59505 830 29755 44078 Face 59506 32044 3266 29755 Face 59507 13080 29756 16339 Face 59508 13080 27151 29756 Face 59509 11211 29757 36190 Face 59510 11211 33135 29757 Face 59511 12791 29758 36817 Face 59512 12791 29545 29758 Face 59513 2943 29759 48489 Face 59514 2943 10245 29759 Face 59515 4906 29760 25982 Face 59516 4906 29307 44840 Face 59517 16879 29761 4547 Face 59518 16879 47554 29761 Face 59519 46518 29762 40414 Face 59520 5098 28393 29762 Face 59521 16461 29763 20673 Face 59522 45999 6403 29763 Face 59523 43456 29764 25803 Face 59524 9007 609 29764 Face 59525 9007 29765 41974 Face 59526 43456 40980 29765 Face 59527 4363 42140 30652 Face 59528 4363 40497 42140 Face 59529 10654 29767 3661 Face 59530 10654 32047 29767 Face 59531 17824 29768 38591 Face 59532 17824 32462 29768 Face 59533 24580 29769 43048 Face 59534 24580 46150 29769 Face 59535 14094 29770 46744 Face 59536 14094 27390 29770 Face 59537 44670 29771 16539 Face 59538 9988 39931 29771 Face 59539 14281 29772 2761 Face 59540 31384 7396 29772 Face 59541 16270 29773 6286 Face 59542 16270 5773 29773 Face 59543 3548 29774 44063 Face 59544 3548 16968 29774 Face 59545 20112 29775 47501 Face 59546 20112 38899 29775 Face 59547 6536 29776 46467 Face 59548 6536 42408 29776 Face 59549 437 29777 22712 Face 59550 437 29956 29777 Face 59551 9015 42315 43252 Face 59552 9015 28930 29778 Face 59553 10362 29779 25522 Face 59554 10362 37773 29779 Face 59555 48473 35357 16222 Face 59556 414 18672 35357 Face 59557 12891 29781 24693 Face 59558 12891 34877 29781 Face 59559 11994 29782 26425 Face 59560 11994 26462 29782 Face 59561 43688 29783 43015 Face 59562 43688 18524 29783 Face 59563 3637 29784 10444 Face 59564 3637 27456 29784 Face 59565 44981 44703 20973 Face 59566 3641 18294 29785 Face 59567 9280 29786 48240 Face 59568 9280 29431 29786 Face 59569 9150 29787 37044 Face 59570 9150 11882 29787 Face 59571 30914 29788 22057 Face 59572 17049 17109 29788 Face 59573 11319 29789 19098 Face 59574 11319 11320 29789 Face 59575 9708 29790 20765 Face 59576 9708 33342 29790 Face 59577 29792 29791 40730 Face 59578 5149 33867 29791 Face 59579 5149 29792 15459 Face 59580 5149 29791 29792 Face 59581 6650 29793 46396 Face 59582 32867 32149 29793 Face 59583 9397 29794 24704 Face 59584 9397 6623 29794 Face 59585 3579 29795 27530 Face 59586 45347 8580 29795 Face 59587 10814 29796 15109 Face 59588 10814 16553 29796 Face 59589 8798 29797 46812 Face 59590 41312 22027 29797 Face 59591 8790 29798 32374 Face 59592 38566 15274 29798 Face 59593 28219 29799 25940 Face 59594 28219 5632 29799 Face 59595 6386 29800 49671 Face 59596 6386 6387 29800 Face 59597 30903 29801 21471 Face 59598 5506 37045 29801 Face 59599 2074 29802 16170 Face 59600 2074 16510 29802 Face 59601 5620 29803 18462 Face 59602 41170 33094 29803 Face 59603 15402 29804 20456 Face 59604 15402 17236 29804 Face 59605 35881 29805 24552 Face 59606 12749 40022 29805 Face 59607 10055 29806 36941 Face 59608 10055 28807 29806 Face 59609 714 29807 28518 Face 59610 714 9715 29807 Face 59611 40919 29808 6 Face 59612 9601 5865 45888 Face 59613 16011 29809 27539 Face 59614 16011 22576 29809 Face 59615 39406 29810 31916 Face 59616 5399 11582 29810 Face 59617 13802 29811 3351 Face 59618 13802 37945 29811 Face 59619 4111 29812 11230 Face 59620 4111 27600 29812 Face 59621 1242 29813 23894 Face 59622 40889 13379 29813 Face 59623 15410 29814 6229 Face 59624 15410 39119 29814 Face 59625 36150 29815 16809 Face 59626 12778 14469 29815 Face 59627 392 29816 20615 Face 59628 392 18446 29816 Face 59629 886 29817 18880 Face 59630 886 19720 29817 Face 59631 177 29818 5969 Face 59632 177 28199 29818 Face 59633 10406 29819 33421 Face 59634 33634 44844 29819 Face 59635 790 29820 10714 Face 59636 790 3486 49020 Face 59637 6823 29821 14555 Face 59638 6823 11557 29821 Face 59639 17138 29822 1443 Face 59640 17138 40852 29822 Face 59641 13183 29823 39441 Face 59642 13183 6707 29823 Face 59643 5590 29824 16196 Face 59644 5590 45337 29824 Face 59645 35710 29825 20861 Face 59646 32235 19178 29825 Face 59647 37005 29826 44113 Face 59648 37003 8816 46705 Face 59649 1277 29827 25477 Face 59650 31440 15205 29827 Face 59651 4602 29828 7671 Face 59652 42434 28601 29828 Face 59653 29830 29829 48785 Face 59654 43528 7185 29829 Face 59655 15154 29830 1990 Face 59656 15154 29829 29830 Face 59657 10551 29831 34027 Face 59658 10551 30667 29831 Face 59659 46003 40871 22784 Face 59660 1453 30969 29832 Face 59661 14864 29833 38734 Face 59662 14864 36561 29833 Face 59663 8000 29834 38601 Face 59664 29892 15937 29834 Face 59665 1532 29835 22731 Face 59666 1532 27074 29835 Face 59667 3207 29836 11219 Face 59668 3207 38998 29836 Face 59669 3878 29837 18971 Face 59670 3878 21881 29837 Face 59671 23810 29838 24590 Face 59672 23810 24169 29838 Face 59673 10639 29839 31438 Face 59674 10639 14595 29839 Face 59675 7468 29840 20146 Face 59676 7468 24445 29840 Face 59677 38196 29841 13879 Face 59678 2667 23794 29841 Face 59679 1018 29842 30626 Face 59680 1018 28406 29842 Face 59681 9501 29843 37102 Face 59682 9501 33291 42206 Face 59683 3061 29844 20976 Face 59684 3061 11504 29844 Face 59685 3061 49442 5448 Face 59686 3061 20976 29845 Face 59687 19198 29846 31895 Face 59688 19198 6421 29846 Face 59689 16759 29847 28494 Face 59690 16759 33136 29847 Face 59691 3792 29848 46726 Face 59692 3792 2110 29848 Face 59693 10580 29849 27584 Face 59694 10580 22439 29849 Face 59695 7343 29850 27374 Face 59696 7343 21962 29850 Face 59697 7678 29851 2695 Face 59698 49645 7677 29851 Face 59699 17747 29852 39452 Face 59700 17747 28889 29852 Face 59701 5652 29853 17669 Face 59702 5652 15502 29853 Face 59703 4475 29854 16866 Face 59704 47924 33433 40878 Face 59705 29856 29855 38407 Face 59706 9175 26316 29855 Face 59707 9175 29856 10273 Face 59708 9175 29855 29856 Face 59709 963 29857 14335 Face 59710 963 4698 29857 Face 59711 42565 29858 17085 Face 59712 14588 4386 37233 Face 59713 19863 29859 3411 Face 59714 19863 9511 41342 Face 59715 42698 29860 24753 Face 59716 11908 19143 29860 Face 59717 6106 29861 46996 Face 59718 6106 21958 29861 Face 59719 21679 29862 34481 Face 59720 21679 24404 29862 Face 59721 11160 29863 1275 Face 59722 11160 40603 29863 Face 59723 15609 29864 42830 Face 59724 15609 38839 29864 Face 59725 2221 29865 6884 Face 59726 2221 43606 29865 Face 59727 6784 29866 14180 Face 59728 6784 35849 29866 Face 59729 6992 29867 47075 Face 59730 6992 42925 29867 Face 59731 3116 29868 9562 Face 59732 49141 35011 29868 Face 59733 3329 29869 33751 Face 59734 3329 17193 29869 Face 59735 35857 29870 17902 Face 59736 30904 7613 29870 Face 59737 8283 29871 14318 Face 59738 8283 47060 29871 Face 59739 32445 29872 24902 Face 59740 9097 28478 29872 Face 59741 18108 29873 7894 Face 59742 18108 1941 29873 Face 59743 7382 29874 18927 Face 59744 29875 37422 29874 Face 59745 7382 29875 29874 Face 59746 7382 45080 29875 Face 59747 15404 29876 30812 Face 59748 15404 26970 29876 Face 59749 29878 36474 28261 Face 59750 8804 49639 29877 Face 59751 8804 29878 2995 Face 59752 8804 36474 29878 Face 59753 8664 29879 43624 Face 59754 8664 4408 29879 Face 59755 21232 37974 28444 Face 59756 21232 27038 37974 Face 59757 41809 29881 9170 Face 59758 13269 12903 29881 Face 59759 7076 48903 10607 Face 59760 29883 4856 48903 Face 59761 7076 29883 48903 Face 59762 7076 35745 29883 Face 59763 40684 29884 2412 Face 59764 163 39285 29884 Face 59765 38368 29885 35272 Face 59766 3099 42500 29885 Face 59767 14247 29886 36818 Face 59768 14247 41724 29886 Face 59769 26381 29887 15180 Face 59770 26381 38242 29887 Face 59771 17461 29888 21606 Face 59772 17461 22134 29888 Face 59773 30885 29889 44139 Face 59774 9610 20963 29889 Face 59775 18706 29890 34719 Face 59776 18706 49868 48438 Face 59777 6632 29891 5219 Face 59778 6632 15758 29891 Face 59779 8000 29892 29834 Face 59780 8000 29299 29892 Face 59781 9493 29893 8650 Face 59782 9493 2440 29893 Face 59783 17624 29894 44512 Face 59784 17624 28662 29894 Face 59785 382 29895 47875 Face 59786 382 37356 29895 Face 59787 173 29896 22863 Face 59788 173 28012 29896 Face 59789 7144 29897 22512 Face 59790 37635 1917 29897 Face 59791 1440 29898 20431 Face 59792 1440 41561 29898 Face 59793 994 29899 19014 Face 59794 46797 41655 29899 Face 59795 6661 29900 14612 Face 59796 6661 7031 47916 Face 59797 4116 29901 31538 Face 59798 48149 24070 29901 Face 59799 4116 29902 29901 Face 59800 4116 27268 29902 Face 59801 6037 29903 31332 Face 59802 6037 26396 29903 Face 59803 13649 29904 24092 Face 59804 13649 19255 29904 Face 59805 26485 29905 35794 Face 59806 26485 7242 29905 Face 59807 13433 29906 1022 Face 59808 13433 44137 29906 Face 59809 21512 41567 7210 Face 59810 21512 803 29907 Face 59811 4626 29908 31980 Face 59812 4626 22526 29908 Face 59813 6042 29909 33614 Face 59814 6042 36321 29909 Face 59815 9114 29910 26808 Face 59816 9114 47663 29910 Face 59817 14863 29911 47615 Face 59818 14863 15892 29911 Face 59819 6893 29912 30052 Face 59820 6893 25499 29912 Face 59821 9009 29913 25061 Face 59822 9009 44983 29913 Face 59823 11754 29914 24859 Face 59824 46034 11755 29914 Face 59825 1884 29915 24577 Face 59826 1884 9530 29915 Face 59827 17865 29916 20962 Face 59828 17865 46062 29916 Face 59829 12291 29917 6079 Face 59830 12291 13742 29917 Face 59831 2102 29918 27173 Face 59832 2102 13183 29918 Face 59833 6004 29919 28996 Face 59834 6004 26907 29919 Face 59835 18883 29920 48456 Face 59836 18883 19333 29920 Face 59837 14760 29921 39682 Face 59838 14760 11301 29921 Face 59839 9361 29922 23388 Face 59840 9361 1961 29922 Face 59841 2722 29923 22215 Face 59842 2722 35456 29923 Face 59843 13963 29924 3791 Face 59844 13963 27535 29924 Face 59845 14770 29925 43619 Face 59846 14770 13386 29925 Face 59847 11201 29926 44002 Face 59848 11201 15597 29926 Face 59849 21624 29927 35435 Face 59850 21624 11039 29927 Face 59851 4714 29928 21790 Face 59852 4714 2591 29928 Face 59853 48677 29929 23451 Face 59854 2704 17607 29929 Face 59855 7808 29930 27523 Face 59856 7808 19832 29930 Face 59857 8807 29931 9173 Face 59858 8807 1608 29931 Face 59859 8038 29932 1319 Face 59860 8038 42669 29932 Face 59861 14592 29933 4149 Face 59862 36729 9490 29933 Face 59863 48495 29934 10544 Face 59864 20451 45820 29934 Face 59865 8578 29935 3112 Face 59866 8578 26466 29935 Face 59867 11293 29936 6271 Face 59868 36402 27039 47198 Face 59869 42386 29937 44340 Face 59870 42387 30977 29937 Face 59871 45997 29938 44680 Face 59872 42386 6547 29938 Face 59873 41175 29939 660 Face 59874 41175 4235 29939 Face 59875 3108 29940 39210 Face 59876 3108 24955 29940 Face 59877 2166 29941 22670 Face 59878 2166 23176 29941 Face 59879 17148 29942 15277 Face 59880 17148 37774 29942 Face 59881 6257 29943 44475 Face 59882 6257 43261 29943 Face 59883 40513 29944 21164 Face 59884 10488 4903 29944 Face 59885 10207 29945 26021 Face 59886 10207 23917 29945 Face 59887 7854 29946 17592 Face 59888 7854 32231 29946 Face 59889 9077 29947 28415 Face 59890 29948 17731 29947 Face 59891 9077 29948 29947 Face 59892 9077 23938 29948 Face 59893 13888 29949 4431 Face 59894 13888 26963 29949 Face 59895 14578 29950 7134 Face 59896 14578 2746 29950 Face 59897 2682 29951 36687 Face 59898 2682 15851 29951 Face 59899 3157 29952 11812 Face 59900 3157 47169 29952 Face 59901 8926 29953 47701 Face 59902 8926 27454 29953 Face 59903 8352 29954 37749 Face 59904 8352 33574 29954 Face 59905 14430 29955 2887 Face 59906 14430 20068 29955 Face 59907 4555 29956 30801 Face 59908 4555 5936 29956 Face 59909 7397 29957 38973 Face 59910 7397 35723 29957 Face 59911 16644 29958 28418 Face 59912 16644 32959 29958 Face 59913 13637 29959 4366 Face 59914 13637 49875 29959 Face 59915 7702 29960 10836 Face 59916 29961 699 29960 Face 59917 7702 29961 29960 Face 59918 7702 27321 29961 Face 59919 10649 29962 27704 Face 59920 29963 47164 29962 Face 59921 10649 29963 29962 Face 59922 10649 3931 29963 Face 59923 864 29964 20590 Face 59924 43540 37385 42948 Face 59925 6062 29965 26048 Face 59926 6062 49923 29965 Face 59927 3905 29966 23273 Face 59928 3905 41456 29966 Face 59929 2923 29967 12412 Face 59930 2923 38138 46651 Face 59931 13007 29968 20874 Face 59932 13007 45833 29968 Face 59933 2562 29969 27327 Face 59934 2562 25703 29969 Face 59935 44355 39913 9839 Face 59936 1597 29665 29970 Face 59937 7944 29971 35809 Face 59938 7944 23650 29971 Face 59939 10982 29972 23582 Face 59940 10982 4503 29972 Face 59941 38609 29973 16802 Face 59942 7865 8858 29973 Face 59943 7897 29974 41811 Face 59944 7897 18152 29974 Face 59945 18038 29975 27024 Face 59946 18038 3124 29975 Face 59947 7068 29976 25330 Face 59948 7068 21338 29976 Face 59949 9414 29977 49114 Face 59950 9414 39990 29977 Face 59951 9627 29978 14339 Face 59952 9627 22808 29978 Face 59953 48736 29979 19366 Face 59954 45558 3474 29979 Face 59955 3120 29980 13042 Face 59956 46531 19054 29980 Face 59957 15434 29981 11856 Face 59958 15434 19153 29981 Face 59959 6313 29982 12966 Face 59960 6313 37332 29982 Face 59961 29984 47591 904 Face 59962 7485 37179 29983 Face 59963 7485 29984 33387 Face 59964 7485 29983 29984 Face 59965 17203 29985 79 Face 59966 17203 7984 29985 Face 59967 4844 29986 17025 Face 59968 4844 46549 29986 Face 59969 16236 29987 19654 Face 59970 16236 25390 29987 Face 59971 7 29988 38503 Face 59972 7 19038 29988 Face 59973 15635 29989 5373 Face 59974 15635 18382 29989 Face 59975 16279 29990 27664 Face 59976 16279 9522 29990 Face 59977 1529 29991 26830 Face 59978 34259 22441 29991 Face 59979 32274 29992 12530 Face 59980 32274 1989 29992 Face 59981 12063 29993 18938 Face 59982 12063 33848 29993 Face 59983 9224 29994 12130 Face 59984 37078 39279 29994 Face 59985 7862 29995 10768 Face 59986 7862 49170 29995 Face 59987 1473 29996 21333 Face 59988 1473 28652 29996 Face 59989 18340 29997 39355 Face 59990 33300 29231 29997 Face 59991 10569 29998 32764 Face 59992 10569 19383 29998 Face 59993 7587 29999 33286 Face 59994 7587 19367 29999 Face 59995 7676 30000 49254 Face 59996 7676 42041 30000 Face 59997 9217 30001 35558 Face 59998 30074 13582 30001 Face 59999 39025 30002 49037 Face 60000 15800 43833 30002 Face 60001 15047 30003 6366 Face 60002 15047 22134 30003 Face 60003 20076 30004 26346 Face 60004 20076 21625 30004 Face 60005 6947 30005 31526 Face 60006 6947 20927 30005 Face 60007 11684 30006 3360 Face 60008 11684 37720 30006 Face 60009 1978 30007 30426 Face 60010 1978 82 30007 Face 60011 31791 30008 43613 Face 60012 44557 14746 30008 Face 60013 11020 30009 5861 Face 60014 11020 31636 30009 Face 60015 10387 30010 25578 Face 60016 10387 27759 30010 Face 60017 3057 30011 11489 Face 60018 3057 12205 30011 Face 60019 8000 30012 29299 Face 60020 8000 38601 30012 Face 60021 30014 30013 3091 Face 60022 38632 34269 30013 Face 60023 14326 30014 21073 Face 60024 38632 30013 30014 Face 60025 18910 30015 27408 Face 60026 18910 49094 30015 Face 60027 32191 30016 29978 Face 60028 2244 9915 30016 Face 60029 10663 30017 47255 Face 60030 10663 45982 30017 Face 60031 21684 30018 31610 Face 60032 21684 41676 30018 Face 60033 119 30019 5615 Face 60034 119 36446 30019 Face 60035 3428 30020 9408 Face 60036 3428 18202 30020 Face 60037 1664 30021 20357 Face 60038 34207 38413 30021 Face 60039 42904 30022 1193 Face 60040 25189 17360 30022 Face 60041 30025 45375 14449 Face 60042 4769 25221 30023 Face 60043 46713 30024 12557 Face 60044 30025 31758 30024 Face 60045 46713 30025 30024 Face 60046 46713 45375 30025 Face 60047 30027 42525 8738 Face 60048 11783 38884 49439 Face 60049 48984 30027 24042 Face 60050 42064 42525 30027 Face 60051 6788 30028 48551 Face 60052 43866 12052 30028 Face 60053 9977 30029 28260 Face 60054 9977 46085 30029 Face 60055 45269 30030 19872 Face 60056 5294 35484 30030 Face 60057 1393 30031 47958 Face 60058 1393 24200 30031 Face 60059 3976 49455 11522 Face 60060 40303 885 30032 Face 60061 84 30033 21319 Face 60062 84 10359 30033 Face 60063 2450 30034 10749 Face 60064 2450 17250 30034 Face 60065 2310 30035 10683 Face 60066 2310 13495 30035 Face 60067 4665 30036 29272 Face 60068 4665 47170 30036 Face 60069 30038 30037 12331 Face 60070 13808 25906 30037 Face 60071 13808 30038 6115 Face 60072 13808 30037 30038 Face 60073 13824 30039 42384 Face 60074 30040 42858 30039 Face 60075 13824 30040 30039 Face 60076 13824 716 30040 Face 60077 6207 30041 29453 Face 60078 6207 21280 30041 Face 60079 6382 30042 41301 Face 60080 6382 27437 30042 Face 60081 20056 30043 8738 Face 60082 20056 15548 30043 Face 60083 18134 30044 11468 Face 60084 18134 15424 30044 Face 60085 5074 30045 39816 Face 60086 5074 13162 30045 Face 60087 8853 30046 2394 Face 60088 8853 22865 30046 Face 60089 11517 30047 23588 Face 60090 11517 38836 30047 Face 60091 8962 30048 34467 Face 60092 30845 48283 30048 Face 60093 4947 30049 49509 Face 60094 4947 39033 30049 Face 60095 4947 30050 24037 Face 60096 4947 49509 30050 Face 60097 4350 30051 21886 Face 60098 47395 33988 30051 Face 60099 7997 30052 29912 Face 60100 7997 29137 30052 Face 60101 13787 30053 17540 Face 60102 13787 16460 30053 Face 60103 14862 30054 39619 Face 60104 14862 24310 30054 Face 60105 46741 30055 5850 Face 60106 217 32798 30055 Face 60107 20376 30056 4706 Face 60108 20376 2197 30056 Face 60109 30058 30057 564 Face 60110 6212 29683 30057 Face 60111 6212 30058 23947 Face 60112 6212 30057 30058 Face 60113 4647 30059 27380 Face 60114 34002 49260 30059 Face 60115 48523 30060 26632 Face 60116 322 33392 30060 Face 60117 40892 30061 10145 Face 60118 322 30060 30061 Face 60119 5127 30062 18250 Face 60120 32788 48333 30062 Face 60121 46923 30063 4747 Face 60122 46923 4057 30063 Face 60123 1422 30064 10719 Face 60124 1422 48536 30064 Face 60125 1422 30065 39456 Face 60126 1422 24041 30065 Face 60127 7584 30066 16391 Face 60128 7584 35962 43777 Face 60129 15235 30067 610 Face 60130 15235 34797 45190 Face 60131 3564 30068 41355 Face 60132 3564 21107 30068 Face 60133 17926 30069 26667 Face 60134 17926 20333 30069 Face 60135 17841 30070 45320 Face 60136 17841 46469 30070 Face 60137 30070 30071 3215 Face 60138 30070 1718 30071 Face 60139 1213 30072 10040 Face 60140 1213 13895 30072 Face 60141 10927 30073 35803 Face 60142 35215 45318 30073 Face 60143 9217 30074 30001 Face 60144 9217 26183 30074 Face 60145 10602 30075 13647 Face 60146 10602 26420 30075 Face 60147 1769 30076 41356 Face 60148 1769 41032 30076 Face 60149 31526 30077 6947 Face 60150 37843 26811 30077 Face 60151 1674 30078 9468 Face 60152 38285 29372 30078 Face 60153 10861 30079 48096 Face 60154 10861 21764 30079 Face 60155 18243 30080 1114 Face 60156 18243 29310 30080 Face 60157 16340 30081 1141 Face 60158 16340 9427 30081 Face 60159 35746 30082 37425 Face 60160 2849 42713 30082 Face 60161 18881 30083 22127 Face 60162 18881 2592 30083 Face 60163 9702 30084 17139 Face 60164 9702 38227 30084 Face 60165 6644 30085 4840 Face 60166 6644 923 30085 Face 60167 9816 30086 16990 Face 60168 9816 18411 30086 Face 60169 5147 30087 20314 Face 60170 5147 45988 30087 Face 60171 7469 30088 20146 Face 60172 7469 18354 30088 Face 60173 4777 30089 7021 Face 60174 40622 16789 30089 Face 60175 30091 30090 44643 Face 60176 3374 9759 30090 Face 60177 3374 30091 17787 Face 60178 3374 30090 30091 Face 60179 3290 30092 21304 Face 60180 3290 11282 30092 Face 60181 47744 30093 3382 Face 60182 16794 18914 30093 Face 60183 39328 34111 3595 Face 60184 9318 46853 34111 Face 60185 16378 30095 38345 Face 60186 16378 4521 30095 Face 60187 14858 30096 44866 Face 60188 14858 44833 30096 Face 60189 2021 30097 8048 Face 60190 2021 15317 30097 Face 60191 17275 30098 4944 Face 60192 17275 27999 30098 Face 60193 21148 30099 17720 Face 60194 21148 30305 30099 Face 60195 49939 30100 6133 Face 60196 11437 12877 30100 Face 60197 20244 30101 1358 Face 60198 20244 35551 30101 Face 60199 44811 30102 40627 Face 60200 3633 25273 30102 Face 60201 6956 30103 14858 Face 60202 6956 8150 30103 Face 60203 18456 30104 16878 Face 60204 18456 8834 30104 Face 60205 6138 30105 32815 Face 60206 6138 46724 30105 Face 60207 30945 30106 45874 Face 60208 45568 21261 30106 Face 60209 15469 30107 30698 Face 60210 15469 15802 30107 Face 60211 12208 47857 29573 Face 60212 12208 42800 47857 Face 60213 3118 30109 3792 Face 60214 31605 41703 37445 Face 60215 9029 30110 19798 Face 60216 9029 17542 30110 Face 60217 12966 30111 29034 Face 60218 12966 29982 30111 Face 60219 4642 30112 15569 Face 60220 4642 33306 30112 Face 60221 40410 41091 12455 Face 60222 147 4184 30113 Face 60223 3176 47937 20494 Face 60224 3176 47936 47937 Face 60225 13 30115 26573 Face 60226 32263 45159 30115 Face 60227 4489 30116 18659 Face 60228 4489 26571 30116 Face 60229 1719 30117 47081 Face 60230 1719 9783 30117 Face 60231 5360 30118 15131 Face 60232 5360 35316 30118 Face 60233 22299 30119 40696 Face 60234 22299 11672 30119 Face 60235 925 30120 41873 Face 60236 35450 27835 30120 Face 60237 6445 30121 24608 Face 60238 6445 38614 30121 Face 60239 1103 30122 44430 Face 60240 39006 30238 30122 Face 60241 5076 30123 14969 Face 60242 5076 22185 30123 Face 60243 4044 30124 10038 Face 60244 4044 1287 30124 Face 60245 27445 30125 2823 Face 60246 27445 5743 30125 Face 60247 3214 30126 7937 Face 60248 3214 39937 30126 Face 60249 31539 30127 24131 Face 60250 35770 46190 30127 Face 60251 33754 30128 41523 Face 60252 30131 6896 30128 Face 60253 30130 30129 19641 Face 60254 44877 15134 30129 Face 60255 30131 30130 6896 Face 60256 30131 30129 30130 Face 60257 1544 30131 30128 Face 60258 1544 30129 30131 Face 60259 2154 30132 9806 Face 60260 2154 13313 30132 Face 60261 8207 30133 17597 Face 60262 8207 21761 44082 Face 60263 9654 30134 22992 Face 60264 9654 29303 30134 Face 60265 10758 30135 40767 Face 60266 10758 29766 30135 Face 60267 5084 30136 11590 Face 60268 5084 15723 30136 Face 60269 10056 30137 38127 Face 60270 10056 17579 30137 Face 60271 10056 30138 17579 Face 60272 10056 25253 30138 Face 60273 9641 30139 42620 Face 60274 9641 34464 30139 Face 60275 1113 30140 29432 Face 60276 1113 24065 30140 Face 60277 12519 30141 42704 Face 60278 12519 7612 30141 Face 60279 45551 30142 14123 Face 60280 2311 8290 30142 Face 60281 6878 30143 40576 Face 60282 6878 45117 30143 Face 60283 317 30144 30625 Face 60284 317 11590 30144 Face 60285 5213 30145 28932 Face 60286 42068 13049 30145 Face 60287 2399 30146 24575 Face 60288 2399 31943 30146 Face 60289 4776 30147 16789 Face 60290 4776 48018 30147 Face 60291 36062 30148 11331 Face 60292 13916 2878 30148 Face 60293 14335 30149 30568 Face 60294 14335 36274 30149 Face 60295 19127 30150 30559 Face 60296 34756 43334 30150 Face 60297 3043 30151 45833 Face 60298 3043 12601 30151 Face 60299 12437 30152 41667 Face 60300 12437 5535 30152 Face 60301 39757 30153 22105 Face 60302 7600 25915 30153 Face 60303 4499 30154 48464 Face 60304 4499 20596 30154 Face 60305 11028 30155 3905 Face 60306 11028 1584 30155 Face 60307 18631 30156 34753 Face 60308 18631 5758 30156 Face 60309 929 30157 17625 Face 60310 49805 17249 30157 Face 60311 1272 41708 16308 Face 60312 1272 2891 30158 Face 60313 45595 30159 4716 Face 60314 19650 19651 30159 Face 60315 17177 30160 10850 Face 60316 17177 2514 30160 Face 60317 7340 30161 23877 Face 60318 7340 15879 30161 Face 60319 30163 30162 15754 Face 60320 636 11708 30162 Face 60321 636 30163 8180 Face 60322 636 30162 30163 Face 60323 5860 30164 40817 Face 60324 39633 19443 30164 Face 60325 34740 30165 4640 Face 60326 2152 31183 30165 Face 60327 40679 30166 7675 Face 60328 30167 20163 30166 Face 60329 10975 30167 30166 Face 60330 10975 26755 30167 Face 60331 115 30168 20433 Face 60332 115 24450 30168 Face 60333 9813 30169 4918 Face 60334 9813 34322 30169 Face 60335 32872 30170 25302 Face 60336 32872 21813 30170 Face 60337 12380 30171 17701 Face 60338 12380 1885 30171 Face 60339 5701 30172 25534 Face 60340 5701 2786 30172 Face 60341 33971 30173 16622 Face 60342 834 16731 30173 Face 60343 9881 30174 23366 Face 60344 9881 552 30174 Face 60345 6334 30175 27744 Face 60346 6334 14249 30175 Face 60347 3713 30176 29644 Face 60348 3713 27015 30176 Face 60349 28392 30177 43533 Face 60350 28392 1369 30177 Face 60351 30179 30178 38479 Face 60352 34757 49725 30178 Face 60353 7509 30179 4742 Face 60354 47881 30178 30179 Face 60355 2760 30180 7364 Face 60356 2760 34952 30180 Face 60357 9099 30181 27162 Face 60358 9099 16889 30181 Face 60359 7263 30182 8326 Face 60360 30183 45133 30182 Face 60361 7263 30183 30182 Face 60362 30184 47420 30183 Face 60363 7263 30184 30183 Face 60364 7263 16486 30184 Face 60365 15782 30185 13893 Face 60366 15782 22825 30185 Face 60367 9589 30186 19968 Face 60368 9589 26963 30186 Face 60369 9721 30187 16392 Face 60370 9721 29462 30187 Face 60371 17076 30188 47712 Face 60372 44861 25967 30188 Face 60373 2106 30189 7161 Face 60374 2106 40142 30189 Face 60375 16876 30190 29626 Face 60376 45805 29623 30190 Face 60377 1609 30191 47850 Face 60378 38963 12031 30191 Face 60379 4837 30192 13071 Face 60380 4837 19030 30192 Face 60381 8344 30193 11286 Face 60382 8344 18826 30193 Face 60383 1062 30194 47622 Face 60384 1062 9319 30194 Face 60385 19891 30195 22290 Face 60386 19891 6430 30195 Face 60387 22979 30196 23974 Face 60388 22979 6429 30196 Face 60389 31321 48005 7992 Face 60390 5592 33655 30197 Face 60391 47348 30198 7670 Face 60392 3025 21570 30198 Face 60393 36590 46910 6418 Face 60394 36590 16942 30199 Face 60395 30199 30200 22209 Face 60396 30199 16942 30200 Face 60397 43416 30201 13417 Face 60398 16141 15367 30201 Face 60399 8876 46819 39019 Face 60400 8876 21209 30202 Face 60401 8867 30203 11445 Face 60402 39457 13428 30203 Face 60403 8266 30204 1555 Face 60404 8266 28304 30204 Face 60405 23300 30205 18052 Face 60406 23300 2405 30205 Face 60407 14785 30206 10819 Face 60408 14785 38114 30206 Face 60409 44030 30207 39433 Face 60410 38484 2093 30207 Face 60411 11129 30208 17566 Face 60412 11129 7752 30208 Face 60413 9432 30209 36177 Face 60414 9432 11993 30209 Face 60415 1181 30210 7742 Face 60416 1181 7743 30210 Face 60417 16502 30211 12968 Face 60418 16502 3870 30211 Face 60419 3944 30212 4032 Face 60420 3944 9934 30212 Face 60421 23590 30213 45192 Face 60422 40441 37072 30213 Face 60423 9195 30214 12824 Face 60424 9195 16582 30214 Face 60425 12144 30215 40922 Face 60426 12144 42049 30215 Face 60427 12508 30216 24483 Face 60428 12508 355 30216 Face 60429 19107 30217 44957 Face 60430 19107 4742 30217 Face 60431 1686 30218 13867 Face 60432 1686 41159 30218 Face 60433 1282 30219 17956 Face 60434 1282 22006 30219 Face 60435 9819 30220 32746 Face 60436 9819 6940 30220 Face 60437 32863 30221 27351 Face 60438 32863 35874 30221 Face 60439 18281 30222 42004 Face 60440 18281 35468 30222 Face 60441 46317 30223 38335 Face 60442 6946 7448 30223 Face 60443 30225 30224 39300 Face 60444 12685 41826 30224 Face 60445 12685 30225 22643 Face 60446 12685 30224 30225 Face 60447 15149 30226 27981 Face 60448 15149 27837 30226 Face 60449 20469 30227 42795 Face 60450 20469 24141 30227 Face 60451 19072 30228 37433 Face 60452 19072 41478 30228 Face 60453 13430 30229 6239 Face 60454 13430 5202 30229 Face 60455 8481 30230 48299 Face 60456 8481 40486 30230 Face 60457 8295 30231 47180 Face 60458 8295 1543 30231 Face 60459 25975 30232 16145 Face 60460 25975 19428 30232 Face 60461 2432 30233 26538 Face 60462 2432 43277 30233 Face 60463 10080 30234 4713 Face 60464 10080 32597 30234 Face 60465 21101 30235 9412 Face 60466 21101 9498 30235 Face 60467 13328 30236 25279 Face 60468 13328 5405 30236 Face 60469 14240 30237 24443 Face 60470 40574 20444 30237 Face 60471 12991 30238 39006 Face 60472 12991 22623 30238 Face 60473 13020 30239 20668 Face 60474 13020 14872 30239 Face 60475 12158 40699 2797 Face 60476 12158 12949 30240 Face 60477 12949 30241 30242 Face 60478 31860 44904 30241 Face 60479 40699 30242 30241 Face 60480 30240 12949 30242 Face 60481 7649 30243 38051 Face 60482 7649 32363 30243 Face 60483 7649 30244 21768 Face 60484 7649 38051 30244 Face 60485 15016 30245 9860 Face 60486 15016 5034 30245 Face 60487 5129 30246 24585 Face 60488 5129 15433 30246 Face 60489 43461 30247 33353 Face 60490 1809 26325 30247 Face 60491 15596 30248 9510 Face 60492 15596 21391 30248 Face 60493 31046 30249 40541 Face 60494 1082 21971 30249 Face 60495 30251 30250 11370 Face 60496 30252 10728 30250 Face 60497 5568 30251 18269 Face 60498 30252 30250 30251 Face 60499 5568 30252 30251 Face 60500 47821 44487 30252 Face 60501 30254 30253 20047 Face 60502 1078 7025 30253 Face 60503 1078 49726 20374 Face 60504 1078 30253 30254 Face 60505 1712 30255 20344 Face 60506 1712 36303 30255 Face 60507 1712 30256 22200 Face 60508 1712 20344 30256 Face 60509 17289 30257 49373 Face 60510 17289 15664 30257 Face 60511 38191 30258 41067 Face 60512 46442 13925 30258 Face 60513 12053 30259 16562 Face 60514 12053 40402 30259 Face 60515 20024 30260 48512 Face 60516 20024 6967 30260 Face 60517 3844 30261 27168 Face 60518 3844 19652 30261 Face 60519 33415 30262 5546 Face 60520 14916 10637 30262 Face 60521 4472 30263 37838 Face 60522 4472 45544 30263 Face 60523 10531 30264 5514 Face 60524 10531 28602 30264 Face 60525 13825 30265 21712 Face 60526 13825 21964 30265 Face 60527 34049 30266 40475 Face 60528 35992 46729 30266 Face 60529 18201 30267 44205 Face 60530 18201 19199 30267 Face 60531 30267 30268 43605 Face 60532 30267 19199 30268 Face 60533 5533 30269 22910 Face 60534 5533 28194 30269 Face 60535 20139 30270 17066 Face 60536 20139 30892 30270 Face 60537 5523 30271 23934 Face 60538 5523 20580 30271 Face 60539 2804 30272 35148 Face 60540 30273 4463 30272 Face 60541 2804 30273 30272 Face 60542 2804 30006 30273 Face 60543 9328 30275 49320 Face 60544 9328 40596 30274 Face 60545 30274 30275 9328 Face 60546 30274 27505 30275 Face 60547 22666 30276 8652 Face 60548 22666 21409 30276 Face 60549 8162 30277 27657 Face 60550 8162 19077 30277 Face 60551 8162 30278 19077 Face 60552 41204 15337 30278 Face 60553 45417 30279 19201 Face 60554 6470 20566 30279 Face 60555 4888 30280 11366 Face 60556 4888 45325 30280 Face 60557 2377 30281 42650 Face 60558 2377 21080 30281 Face 60559 3126 30282 34762 Face 60560 3126 26658 30282 Face 60561 43274 30283 38779 Face 60562 47108 1504 30283 Face 60563 16989 30284 16990 Face 60564 33905 3250 30284 Face 60565 11821 30285 16635 Face 60566 11821 42701 30285 Face 60567 36689 30286 11667 Face 60568 3095 22870 30286 Face 60569 2514 30287 30160 Face 60570 2514 22167 30287 Face 60571 1700 30288 38882 Face 60572 1700 8750 30288 Face 60573 12945 30289 18626 Face 60574 12945 15231 30289 Face 60575 44139 30290 15571 Face 60576 2162 47692 30290 Face 60577 1581 30291 15062 Face 60578 1581 9045 30291 Face 60579 11981 30292 41573 Face 60580 11981 7171 30292 Face 60581 340 30293 6057 Face 60582 340 18316 30293 Face 60583 36276 30294 24122 Face 60584 36276 3314 30294 Face 60585 14222 30295 40577 Face 60586 14222 3358 30295 Face 60587 5076 30296 36527 Face 60588 5076 14969 30296 Face 60589 6945 30297 22118 Face 60590 6945 30852 48015 Face 60591 3802 30298 30723 Face 60592 3802 21917 30298 Face 60593 48022 30299 24754 Face 60594 6279 45761 30299 Face 60595 11783 30300 38884 Face 60596 11783 29457 30300 Face 60597 10737 44419 37630 Face 60598 49975 2273 30301 Face 60599 10542 30302 30237 Face 60600 10542 19992 30302 Face 60601 42594 30303 21699 Face 60602 6477 18192 30303 Face 60603 4596 30304 29473 Face 60604 4596 2785 30304 Face 60605 1403 30305 10812 Face 60606 1403 30099 30305 Face 60607 10057 30306 11879 Face 60608 32035 5531 30306 Face 60609 2270 30307 26944 Face 60610 36420 12952 30307 Face 60611 15585 30308 27081 Face 60612 15585 21678 30308 Face 60613 31194 30309 7761 Face 60614 9379 39391 30309 Face 60615 36572 30310 6774 Face 60616 808 20901 30310 Face 60617 808 30311 6807 Face 60618 808 30310 30311 Face 60619 39736 30312 24996 Face 60620 44093 9615 30312 Face 60621 9669 30313 24958 Face 60622 9669 106 30313 Face 60623 4513 30314 22768 Face 60624 4513 41689 30314 Face 60625 3354 30315 45788 Face 60626 3354 40909 30315 Face 60627 42922 30316 7224 Face 60628 30317 48642 30316 Face 60629 13935 30317 30316 Face 60630 13935 33632 30317 Face 60631 9575 30318 48263 Face 60632 9575 27615 30318 Face 60633 4180 30319 7018 Face 60634 32016 7776 30319 Face 60635 12664 30320 37651 Face 60636 38136 6786 49571 Face 60637 37263 30321 18519 Face 60638 37264 17763 30321 Face 60639 12128 30322 2201 Face 60640 12128 31415 30322 Face 60641 1775 30323 33491 Face 60642 1775 23216 30323 Face 60643 8825 30324 1790 Face 60644 8825 7430 30324 Face 60645 4604 48620 34407 Face 60646 4604 26036 30326 Face 60647 30325 30326 44329 Face 60648 30325 4604 30326 Face 60649 3086 30327 15247 Face 60650 3086 16640 30327 Face 60651 5872 30328 39151 Face 60652 5872 27916 30328 Face 60653 17620 30329 21418 Face 60654 17620 25235 30329 Face 60655 5297 30330 26785 Face 60656 5297 26973 30330 Face 60657 1486 46557 18910 Face 60658 1486 7392 30331 Face 60659 9487 30332 47851 Face 60660 9487 8155 30332 Face 60661 9324 30333 18553 Face 60662 44545 25571 30333 Face 60663 2018 30334 26684 Face 60664 49052 11101 30334 Face 60665 11510 30335 9257 Face 60666 11510 26919 30335 Face 60667 11527 30336 11812 Face 60668 11527 34192 30336 Face 60669 17058 30337 6382 Face 60670 17058 3034 30337 Face 60671 6027 30338 39254 Face 60672 6027 31389 30338 Face 60673 6027 30339 19611 Face 60674 6027 39254 30339 Face 60675 1170 30340 23765 Face 60676 33713 11724 30340 Face 60677 2884 30341 23761 Face 60678 2884 17774 30341 Face 60679 40100 30342 16459 Face 60680 40100 43498 30342 Face 60681 1008 30343 47404 Face 60682 1008 12360 30343 Face 60683 1008 30344 19353 Face 60684 1008 25983 30344 Face 60685 3844 30345 19652 Face 60686 3844 17508 30345 Face 60687 19224 30346 12693 Face 60688 19224 14903 30346 Face 60689 1562 30347 25921 Face 60690 1562 41987 30347 Face 60691 1562 30348 41987 Face 60692 1562 13188 30348 Face 60693 36373 30349 24535 Face 60694 36373 12530 30349 Face 60695 7705 30350 23531 Face 60696 36373 11360 30350 Face 60697 44525 30351 199 Face 60698 44525 28087 30351 Face 60699 13242 30352 41742 Face 60700 13242 39353 30352 Face 60701 15991 30353 8951 Face 60702 15991 1839 30353 Face 60703 5211 30354 12594 Face 60704 5211 14361 30354 Face 60705 5480 30355 46665 Face 60706 5480 25858 30355 Face 60707 8645 30356 34597 Face 60708 8645 19905 30356 Face 60709 21610 30357 40235 Face 60710 21610 47089 30357 Face 60711 30359 30358 5057 Face 60712 10722 33151 30358 Face 60713 10722 30359 2371 Face 60714 10722 30358 30359 Face 60715 3606 30360 44895 Face 60716 3606 21568 30360 Face 60717 7654 30361 41141 Face 60718 7654 13861 30361 Face 60719 13861 30362 30361 Face 60720 13861 5469 30362 Face 60721 11563 30363 11721 Face 60722 11563 1781 30363 Face 60723 419 30364 40667 Face 60724 419 37575 30364 Face 60725 8775 30365 48229 Face 60726 8775 37639 30365 Face 60727 13040 30367 9711 Face 60728 13040 19561 30367 Face 60729 30366 30367 24061 Face 60730 30366 9711 30367 Face 60731 13076 30368 49489 Face 60732 13076 7434 30368 Face 60733 14142 30369 43123 Face 60734 14142 14141 30369 Face 60735 1531 30370 4743 Face 60736 1531 23837 30370 Face 60737 3326 30371 14006 Face 60738 3326 21621 30371 Face 60739 2989 30372 40417 Face 60740 2989 40077 30372 Face 60741 15511 30373 3797 Face 60742 38873 20196 30373 Face 60743 15224 30374 33150 Face 60744 15224 28757 30374 Face 60745 35243 30375 32636 Face 60746 301 13296 30375 Face 60747 39758 30376 27988 Face 60748 2378 24457 30376 Face 60749 6001 30377 2846 Face 60750 6001 18515 30377 Face 60751 41125 30378 46006 Face 60752 7206 26293 30378 Face 60753 18121 30379 7030 Face 60754 18121 14273 30379 Face 60755 11882 30380 33622 Face 60756 11882 9150 30380 Face 60757 746 30381 11418 Face 60758 746 28389 30381 Face 60759 21694 30382 14920 Face 60760 21694 7012 30382 Face 60761 26594 30383 13451 Face 60762 26594 9395 30383 Face 60763 14310 30384 7037 Face 60764 14310 25462 30384 Face 60765 2773 30385 28079 Face 60766 2773 18729 30385 Face 60767 14727 30386 46280 Face 60768 14727 27772 30386 Face 60769 12872 30387 34260 Face 60770 37605 19459 30387 Face 60771 6555 30388 13415 Face 60772 30389 23104 30388 Face 60773 6555 30389 30388 Face 60774 6555 45244 30389 Face 60775 15739 30390 44500 Face 60776 15739 4217 30390 Face 60777 47505 30391 4930 Face 60778 35400 43703 30391 Face 60779 13282 30392 21815 Face 60780 13282 47037 30392 Face 60781 3159 30393 28626 Face 60782 3159 46021 30393 Face 60783 653 30394 20969 Face 60784 653 34963 30394 Face 60785 40533 30395 28182 Face 60786 7736 12556 30395 Face 60787 30397 30396 35904 Face 60788 43547 21758 30396 Face 60789 1244 30397 35172 Face 60790 1244 30396 30397 Face 60791 5764 30398 21361 Face 60792 5764 31248 30398 Face 60793 13028 30399 38516 Face 60794 13028 44727 30399 Face 60795 6732 30400 41021 Face 60796 6732 26572 30400 Face 60797 8015 30401 24990 Face 60798 43025 12148 30401 Face 60799 4140 30402 12788 Face 60800 4140 39125 30402 Face 60801 5396 30403 21895 Face 60802 33399 18642 30403 Face 60803 30405 30404 10338 Face 60804 31796 22780 30404 Face 60805 8309 30405 14169 Face 60806 49215 30404 30405 Face 60807 44370 30406 20792 Face 60808 39981 10894 30406 Face 60809 451 30407 15489 Face 60810 451 24376 30407 Face 60811 5964 30408 207 Face 60812 5964 11963 30408 Face 60813 30412 30409 9560 Face 60814 6602 25786 30409 Face 60815 3385 30410 23223 Face 60816 3385 27722 30410 Face 60817 7961 30411 42322 Face 60818 34972 10137 30411 Face 60819 6602 30412 15301 Face 60820 6602 30409 30412 Face 60821 30414 30413 49494 Face 60822 7186 18973 30413 Face 60823 7186 30414 18974 Face 60824 7186 30413 30414 Face 60825 14599 30415 13108 Face 60826 14599 6168 30415 Face 60827 3362 30416 28481 Face 60828 31518 48094 30416 Face 60829 21581 30417 17091 Face 60830 21581 24502 30417 Face 60831 2405 49810 30205 Face 60832 2405 45261 30418 Face 60833 359 30419 33281 Face 60834 359 27063 30419 Face 60835 34468 46690 16013 Face 60836 5407 24664 30420 Face 60837 5940 30421 48625 Face 60838 5940 30305 30421 Face 60839 2493 30422 38408 Face 60840 2493 21589 30422 Face 60841 4210 30423 21191 Face 60842 4210 25695 30423 Face 60843 30425 30424 28729 Face 60844 6876 23300 30424 Face 60845 6876 30425 24309 Face 60846 6876 30424 30425 Face 60847 18780 30426 11967 Face 60848 18780 1978 30426 Face 60849 3456 30427 22193 Face 60850 3456 35977 30427 Face 60851 7474 30428 673 Face 60852 7474 40738 30428 Face 60853 47795 30429 42868 Face 60854 9265 8563 30429 Face 60855 30431 30430 7909 Face 60856 2869 20647 30430 Face 60857 2869 30431 19989 Face 60858 2869 30430 30431 Face 60859 11327 30432 31320 Face 60860 11327 6120 30432 Face 60861 9157 30433 15764 Face 60862 9157 6963 30433 Face 60863 4949 30434 49711 Face 60864 4949 31529 30434 Face 60865 13108 30435 8862 Face 60866 46603 3525 30435 Face 60867 15590 30436 9294 Face 60868 15590 19165 30436 Face 60869 13194 30437 29728 Face 60870 13194 6966 30437 Face 60871 13934 30438 37362 Face 60872 13934 36946 30438 Face 60873 1333 30439 17491 Face 60874 1333 23307 30439 Face 60875 11411 30440 35398 Face 60876 31964 43243 30440 Face 60877 11552 30441 14920 Face 60878 39376 45214 30441 Face 60879 8487 30442 19474 Face 60880 47747 7269 40609 Face 60881 21523 30443 10386 Face 60882 21523 21599 30443 Face 60883 4423 30444 21289 Face 60884 4423 38140 30444 Face 60885 10222 43219 26172 Face 60886 47735 44900 30445 Face 60887 44135 30446 6200 Face 60888 1706 28369 30446 Face 60889 47662 30447 39541 Face 60890 4358 47481 30447 Face 60891 2057 30448 16981 Face 60892 2057 47417 30448 Face 60893 9946 49879 29368 Face 60894 9946 35739 30449 Face 60895 37159 30450 11009 Face 60896 3420 41901 30450 Face 60897 9517 30451 26952 Face 60898 9517 48612 30451 Face 60899 12153 30452 20175 Face 60900 36187 26603 30452 Face 60901 5073 30453 12263 Face 60902 5073 18578 30453 Face 60903 13319 30454 29694 Face 60904 13319 25619 30454 Face 60905 8288 30455 11029 Face 60906 8288 14716 30455 Face 60907 10756 30456 45483 Face 60908 35781 26687 30456 Face 60909 8446 30457 38674 Face 60910 35378 45087 30457 Face 60911 20919 30458 9143 Face 60912 20919 38766 30458 Face 60913 16640 30459 14393 Face 60914 16640 35120 30459 Face 60915 32880 30460 4634 Face 60916 7359 35009 30460 Face 60917 13698 30461 36310 Face 60918 13698 34720 30461 Face 60919 1300 30462 26620 Face 60920 1300 45816 30462 Face 60921 11652 30463 18686 Face 60922 11652 24321 30463 Face 60923 1401 30464 26802 Face 60924 1401 31534 39348 Face 60925 45 30465 9434 Face 60926 45 39526 30465 Face 60927 8970 30466 35088 Face 60928 8970 37990 30466 Face 60929 1311 30467 27689 Face 60930 1311 19594 30467 Face 60931 43272 30468 987 Face 60932 43272 12433 30468 Face 60933 6564 30469 19592 Face 60934 6564 26534 30469 Face 60935 45124 30470 38954 Face 60936 45124 20087 30470 Face 60937 22634 30471 6762 Face 60938 22634 15956 30471 Face 60939 5219 30472 27643 Face 60940 5219 29891 30472 Face 60941 27167 30473 32143 Face 60942 27167 27926 30473 Face 60943 5356 30474 20523 Face 60944 5356 14698 30474 Face 60945 30476 30475 44821 Face 60946 3806 7349 30475 Face 60947 3806 30476 17008 Face 60948 3806 30475 30476 Face 60949 40970 43342 17593 Face 60950 43758 24932 30477 Face 60951 7120 30478 45660 Face 60952 7120 26085 30478 Face 60953 3882 30479 28262 Face 60954 3882 9479 30479 Face 60955 35567 40527 13766 Face 60956 49 6146 30480 Face 60957 11444 30481 24774 Face 60958 11444 1469 30481 Face 60959 16565 30482 8922 Face 60960 16565 19517 30482 Face 60961 19752 30483 45319 Face 60962 19752 26275 30483 Face 60963 33721 30484 6576 Face 60964 2083 23517 30484 Face 60965 6537 30485 8006 Face 60966 6537 26360 30485 Face 60967 6675 30486 13588 Face 60968 34684 16074 30486 Face 60969 261 30487 15169 Face 60970 261 3852 30487 Face 60971 891 38652 17734 Face 60972 891 28636 30488 Face 60973 5729 30489 44480 Face 60974 5729 20425 30489 Face 60975 11315 30490 48693 Face 60976 11315 38316 30490 Face 60977 16740 30491 24301 Face 60978 16740 1088 30491 Face 60979 2533 30492 46380 Face 60980 2533 43651 30492 Face 60981 13899 30493 31973 Face 60982 13899 19298 30493 Face 60983 17851 30494 22714 Face 60984 17851 1096 30494 Face 60985 14196 30495 21162 Face 60986 14196 29484 30495 Face 60987 11003 30496 11002 Face 60988 11003 9409 30496 Face 60989 42504 30497 4721 Face 60990 14015 36802 30497 Face 60991 6397 30498 16616 Face 60992 6397 3162 30498 Face 60993 6153 49769 39714 Face 60994 6153 724 30499 Face 60995 17419 30500 11859 Face 60996 17419 25799 30500 Face 60997 22608 30501 1048 Face 60998 22608 9926 30501 Face 60999 1159 30502 36033 Face 61000 1159 22149 30502 Face 61001 21525 30503 9373 Face 61002 21525 49460 30503 Face 61003 15574 30504 23236 Face 61004 15574 14963 30504 Face 61005 18154 30505 28899 Face 61006 18154 10860 30505 Face 61007 21368 30506 26831 Face 61008 21368 48398 30506 Face 61009 23433 30507 18571 Face 61010 23433 2634 30507 Face 61011 33385 30508 34779 Face 61012 5837 30891 30508 Face 61013 49272 30509 33941 Face 61014 22073 27291 30509 Face 61015 9098 30510 12102 Face 61016 30511 40589 31490 Face 61017 9098 30511 31490 Face 61018 9098 41495 30511 Face 61019 44133 30512 6110 Face 61020 11374 34997 30512 Face 61021 12923 30513 22008 Face 61022 12923 45690 30513 Face 61023 4698 30514 29857 Face 61024 4698 18810 30514 Face 61025 15062 30515 14160 Face 61026 15062 30291 30515 Face 61027 30517 30516 5334 Face 61028 41996 4241 30516 Face 61029 11622 30517 14475 Face 61030 11622 30516 30517 Face 61031 17094 30518 20178 Face 61032 17094 38000 30518 Face 61033 7899 30519 43096 Face 61034 7899 42733 30519 Face 61035 7741 30520 20147 Face 61036 7741 23788 30520 Face 61037 40792 30521 27748 Face 61038 1267 27747 30521 Face 61039 32797 30522 103 Face 61040 6046 16306 30522 Face 61041 5498 30523 27840 Face 61042 5498 28044 30523 Face 61043 6730 30524 11301 Face 61044 6730 2904 30524 Face 61045 47132 30525 26266 Face 61046 9011 47989 30525 Face 61047 6845 30526 42688 Face 61048 49033 34705 44580 Face 61049 24572 30527 16158 Face 61050 24572 13401 30527 Face 61051 5272 30528 210 Face 61052 5272 42524 30528 Face 61053 4711 30529 33912 Face 61054 4711 33327 30529 Face 61055 1575 30530 32359 Face 61056 45679 7300 30530 Face 61057 48473 30531 19612 Face 61058 48473 16222 30531 Face 61059 1723 30532 25033 Face 61060 1723 32673 30532 Face 61061 6665 30533 1916 Face 61062 6665 19016 30533 Face 61063 2212 30534 30566 Face 61064 2212 12469 30534 Face 61065 20363 30535 15068 Face 61066 20363 41495 30535 Face 61067 16849 30536 5529 Face 61068 16849 9465 30536 Face 61069 20494 30537 48047 Face 61070 20494 46412 30537 Face 61071 6554 30538 49276 Face 61072 6554 14046 30538 Face 61073 23783 30539 15321 Face 61074 23783 9166 49883 Face 61075 6923 30540 44792 Face 61076 6923 27918 30540 Face 61077 48787 30541 5312 Face 61078 3375 12616 30541 Face 61079 963 30542 4698 Face 61080 963 31602 30542 Face 61081 15211 30543 49152 Face 61082 15211 46375 30543 Face 61083 30545 30544 36695 Face 61084 5654 22556 30544 Face 61085 5654 30545 3671 Face 61086 5654 30544 30545 Face 61087 10472 30546 34827 Face 61088 10472 17462 30546 Face 61089 29629 30547 2220 Face 61090 29629 25997 30547 Face 61091 21084 30548 18319 Face 61092 21084 2350 30548 Face 61093 13451 30549 37284 Face 61094 13451 13082 30549 Face 61095 2419 30550 11759 Face 61096 2419 41728 30550 Face 61097 14662 30551 10243 Face 61098 14662 31885 30551 Face 61099 22270 30552 41042 Face 61100 22270 42611 30552 Face 61101 4701 30553 17826 Face 61102 4701 25957 30553 Face 61103 10515 30554 49596 Face 61104 10515 13969 30554 Face 61105 3882 30555 28359 Face 61106 3882 28262 30555 Face 61107 4010 30556 11621 Face 61108 4010 31956 30556 Face 61109 15940 30557 38870 Face 61110 15940 46963 30557 Face 61111 5697 30559 30150 Face 61112 5697 23246 30558 Face 61113 30558 30559 5697 Face 61114 30558 19127 30559 Face 61115 12728 30560 28223 Face 61116 42633 35741 30560 Face 61117 11767 30561 38523 Face 61118 11767 42790 30561 Face 61119 13402 30562 37943 Face 61120 13402 45090 30562 Face 61121 5469 49024 7640 Face 61122 5469 27275 49024 Face 61123 30563 30564 43457 Face 61124 30563 7640 49024 Face 61125 16336 30565 60 Face 61126 16336 18724 30565 Face 61127 10478 30566 30534 Face 61128 10478 37052 30566 Face 61129 2712 30567 42058 Face 61130 2712 33014 30567 Face 61131 3160 30568 6804 Face 61132 3160 21277 30568 Face 61133 13894 30569 40233 Face 61134 13894 42796 30569 Face 61135 3418 30570 22488 Face 61136 3418 43218 30570 Face 61137 4832 30571 14633 Face 61138 4832 12612 30571 Face 61139 12398 30572 45063 Face 61140 12398 21837 30572 Face 61141 15643 30573 39873 Face 61142 31007 4870 30573 Face 61143 23324 30574 40777 Face 61144 23324 16909 30574 Face 61145 18111 30575 18929 Face 61146 18111 16347 30575 Face 61147 8834 30576 4875 Face 61148 8834 18456 30576 Face 61149 46096 30577 7589 Face 61150 1207 22917 30577 Face 61151 5181 30578 20137 Face 61152 5181 22475 30578 Face 61153 30664 48060 22452 Face 61154 22451 26032 30579 Face 61155 5178 30580 28375 Face 61156 5178 29833 30580 Face 61157 7652 30581 48076 Face 61158 7652 43586 30581 Face 61159 17732 30582 38627 Face 61160 17732 348 30582 Face 61161 1672 30583 40291 Face 61162 47615 29911 30583 Face 61163 3221 30584 23399 Face 61164 3221 27380 30584 Face 61165 2784 30585 42006 Face 61166 30586 10122 30585 Face 61167 2784 30586 30585 Face 61168 2784 18900 30586 Face 61169 690 30587 19499 Face 61170 37210 18424 30587 Face 61171 8615 30588 47223 Face 61172 30589 19734 30588 Face 61173 8615 30589 30588 Face 61174 8615 23472 30589 Face 61175 8008 30590 5907 Face 61176 8008 6272 30590 Face 61177 10379 30591 39527 Face 61178 10379 1788 30591 Face 61179 3869 30592 20208 Face 61180 3869 20210 30592 Face 61181 12363 30593 33155 Face 61182 12363 32107 30593 Face 61183 19894 30594 43230 Face 61184 19894 36198 30594 Face 61185 44976 30595 15478 Face 61186 48166 29297 30595 Face 61187 30659 30596 21405 Face 61188 12753 12855 30596 Face 61189 26030 30597 37713 Face 61190 26030 33592 30597 Face 61191 2455 30598 25771 Face 61192 48538 16026 30598 Face 61193 1963 30599 48699 Face 61194 1963 21676 30599 Face 61195 15038 30600 37048 Face 61196 15038 28109 30600 Face 61197 3738 30601 29718 Face 61198 3738 18476 30601 Face 61199 11541 30602 35337 Face 61200 11541 26447 30602 Face 61201 3571 30603 3388 Face 61202 41789 26416 30603 Face 61203 1762 30604 23253 Face 61204 1762 10273 30604 Face 61205 20552 30605 14485 Face 61206 20552 20309 30605 Face 61207 487 30606 25644 Face 61208 487 17392 30606 Face 61209 34271 30607 3593 Face 61210 33689 21345 30607 Face 61211 19480 30608 33301 Face 61212 19480 22782 30608 Face 61213 3815 30609 41353 Face 61214 3815 9757 30609 Face 61215 13204 30610 21963 Face 61216 13204 24459 30610 Face 61217 33835 30611 30647 Face 61218 36996 43692 30611 Face 61219 30613 30612 47865 Face 61220 5628 3073 30612 Face 61221 5628 30613 42516 Face 61222 5628 30612 30613 Face 61223 7305 30614 12640 Face 61224 7305 46579 30614 Face 61225 12263 30615 28635 Face 61226 12263 12329 30615 Face 61227 1026 30616 27711 Face 61228 1026 26579 30616 Face 61229 3853 30617 24795 Face 61230 3853 8286 30617 Face 61231 18861 30618 45581 Face 61232 18861 21142 30618 Face 61233 13285 30619 17692 Face 61234 13285 20510 30619 Face 61235 20264 30620 9536 Face 61236 20264 5163 30620 Face 61237 16058 30621 4637 Face 61238 16058 48311 30621 Face 61239 1774 30622 22888 Face 61240 1774 23465 30622 Face 61241 6489 30623 16919 Face 61242 49237 16304 30623 Face 61243 14233 30624 6972 Face 61244 14233 7759 30624 Face 61245 8045 30625 30144 Face 61246 37457 14395 30625 Face 61247 49295 30626 7385 Face 61248 13072 4569 30626 Face 61249 45366 30627 16103 Face 61250 8943 41897 30627 Face 61251 1514 30628 10833 Face 61252 46409 44699 43016 Face 61253 5072 30629 16464 Face 61254 5072 24997 30629 Face 61255 10345 30630 46158 Face 61256 10345 28155 30630 Face 61257 2915 30631 17047 Face 61258 2915 29693 30631 Face 61259 14756 30632 21258 Face 61260 14756 27073 30632 Face 61261 11630 30633 34837 Face 61262 11630 31156 30633 Face 61263 8364 30634 42164 Face 61264 8364 1901 30634 Face 61265 2081 30635 26790 Face 61266 2081 50001 30635 Face 61267 44148 30636 27038 Face 61268 6440 29092 30636 Face 61269 8234 30637 32475 Face 61270 8234 44473 30637 Face 61271 47514 30638 14903 Face 61272 5035 17079 30638 Face 61273 11507 30639 6357 Face 61274 11507 25310 30639 Face 61275 5276 30640 9034 Face 61276 5276 16805 30640 Face 61277 6435 30641 16265 Face 61278 6435 17400 30641 Face 61279 37360 30642 23458 Face 61280 4343 15098 30642 Face 61281 504 30643 21970 Face 61282 504 6751 30643 Face 61283 6325 30644 31839 Face 61284 6325 15755 30644 Face 61285 5177 30645 40343 Face 61286 5177 14413 30645 Face 61287 7201 30646 46988 Face 61288 7201 36943 30646 Face 61289 20541 30647 24624 Face 61290 20541 20540 30647 Face 61291 7704 30648 25556 Face 61292 45630 35631 30648 Face 61293 35792 39791 25794 Face 61294 14408 35876 35155 Face 61295 2904 30650 33935 Face 61296 2904 6730 30650 Face 61297 44433 30651 10364 Face 61298 3932 8110 30651 Face 61299 49677 30652 29766 Face 61300 233 16725 30652 Face 61301 46 30653 8005 Face 61302 46 12440 30653 Face 61303 16032 48207 16031 Face 61304 46818 5616 30654 Face 61305 3467 30655 27532 Face 61306 3467 10589 30656 Face 61307 39188 49660 18138 Face 61308 30655 3467 30656 Face 61309 11732 30657 10419 Face 61310 11732 38223 30657 Face 61311 43204 30658 9894 Face 61312 41944 25565 30658 Face 61313 44859 30659 13728 Face 61314 12753 30596 30659 Face 61315 19834 30660 4072 Face 61316 19834 16938 30660 Face 61317 8231 30661 23865 Face 61318 8231 27171 30661 Face 61319 23230 30662 41036 Face 61320 23230 25878 30662 Face 61321 10266 30663 21944 Face 61322 10266 38671 30663 Face 61323 22451 30664 38111 Face 61324 22451 30579 30664 Face 61325 10264 30665 28353 Face 61326 10264 39530 30665 Face 61327 36058 30666 11452 Face 61328 2490 25963 30666 Face 61329 30668 30667 10551 Face 61330 543 41108 30667 Face 61331 543 30668 47922 Face 61332 543 30667 30668 Face 61333 31722 30669 20548 Face 61334 12137 27946 30669 Face 61335 2928 30670 22548 Face 61336 2928 19481 30670 Face 61337 12633 30671 35056 Face 61338 12633 24391 30671 Face 61339 6409 30672 5422 Face 61340 6409 17486 30672 Face 61341 9765 30673 21537 Face 61342 9765 28378 30673 Face 61343 41257 30674 34889 Face 61344 12666 21745 30674 Face 61345 40542 30675 9357 Face 61346 16266 3665 30675 Face 61347 6442 30676 20729 Face 61348 6442 24192 30676 Face 61349 39449 30677 34375 Face 61350 1546 13332 30677 Face 61351 579 30678 18858 Face 61352 579 42277 30678 Face 61353 24854 30679 32514 Face 61354 30680 44270 30679 Face 61355 24854 30680 30679 Face 61356 24854 4734 30680 Face 61357 36584 30681 27859 Face 61358 4459 41619 30681 Face 61359 33168 30682 42215 Face 61360 33168 19026 30682 Face 61361 39862 30683 47795 Face 61362 2542 10003 30683 Face 61363 2918 30684 16553 Face 61364 2918 10328 30684 Face 61365 16451 30685 4553 Face 61366 16451 599 30685 Face 61367 4952 30686 36849 Face 61368 4952 42620 30686 Face 61369 2546 30687 32960 Face 61370 2546 4485 30687 Face 61371 24026 30688 33421 Face 61372 24026 41897 30688 Face 61373 14358 30689 29169 Face 61374 14358 7538 30689 Face 61375 18726 30690 25545 Face 61376 18726 14300 30690 Face 61377 5503 30691 26161 Face 61378 5503 25098 30691 Face 61379 43363 30692 39557 Face 61380 10882 23326 30692 Face 61381 3381 30693 36675 Face 61382 33523 1206 30693 Face 61383 5269 30694 29223 Face 61384 5269 23976 30694 Face 61385 11016 30695 3107 Face 61386 11016 34630 30695 Face 61387 12565 30696 43182 Face 61388 12565 26136 30696 Face 61389 5374 30697 43067 Face 61390 5374 12186 30697 Face 61391 5541 30698 49696 Face 61392 5541 15469 30698 Face 61393 1408 30699 26071 Face 61394 1408 21298 30699 Face 61395 8731 30700 26299 Face 61396 39076 6624 30700 Face 61397 7773 30701 41579 Face 61398 7773 13851 30701 Face 61399 12943 30702 23078 Face 61400 12943 47132 30702 Face 61401 13497 30703 13498 Face 61402 13497 19753 30703 Face 61403 12620 30704 41545 Face 61404 12620 24358 30704 Face 61405 14505 30705 4474 Face 61406 14505 9523 30705 Face 61407 4200 30706 4421 Face 61408 4200 16994 30706 Face 61409 55 30707 24723 Face 61410 55 6169 30707 Face 61411 16971 30708 13021 Face 61412 16971 32431 30708 Face 61413 634 30709 34883 Face 61414 45592 23860 30709 Face 61415 1569 30710 36842 Face 61416 1569 23661 30710 Face 61417 2439 30711 19432 Face 61418 2439 20611 30711 Face 61419 1859 30712 7375 Face 61420 1859 44689 30712 Face 61421 1672 47615 30583 Face 61422 1672 12461 30713 Face 61423 14500 30714 8934 Face 61424 14500 6009 30714 Face 61425 324 30715 45443 Face 61426 324 28413 30715 Face 61427 41459 30716 27994 Face 61428 14400 23367 30716 Face 61429 13369 30717 3137 Face 61430 13369 12874 30717 Face 61431 2681 30718 26418 Face 61432 2681 26656 30718 Face 61433 4761 30719 23325 Face 61434 4761 12764 30719 Face 61435 4131 30720 22408 Face 61436 4131 9703 30720 Face 61437 46284 30721 15519 Face 61438 6302 25305 30721 Face 61439 40062 30722 28332 Face 61440 3367 10941 30722 Face 61441 856 30723 30298 Face 61442 856 43965 30723 Face 61443 899 30724 27219 Face 61444 899 37105 30724 Face 61445 7182 30725 41647 Face 61446 7182 32039 30725 Face 61447 18688 30726 875 Face 61448 18688 24586 30726 Face 61449 10447 30727 24828 Face 61450 10447 7752 30727 Face 61451 169 30728 26526 Face 61452 41128 25926 30728 Face 61453 8024 30729 17214 Face 61454 8024 21066 30729 Face 61455 2693 30730 4309 Face 61456 2693 15603 30730 Face 61457 43645 30731 2831 Face 61458 5754 40605 30731 Face 61459 7841 30732 46127 Face 61460 7841 43055 30732 Face 61461 10713 30733 47072 Face 61462 33687 40073 30733 Face 61463 5253 30734 14338 Face 61464 5253 1630 30734 Face 61465 1292 40925 30736 Face 61466 1292 22218 40925 Face 61467 12803 30736 30735 Face 61468 12803 1292 30736 Face 61469 8607 30737 13086 Face 61470 8607 37039 30737 Face 61471 11359 30738 21766 Face 61472 11359 18429 30738 Face 61473 7917 30739 33839 Face 61474 7917 18041 30739 Face 61475 9421 30740 45033 Face 61476 9421 25166 30740 Face 61477 9890 30741 49818 Face 61478 9890 42071 30741 Face 61479 8139 30742 11598 Face 61480 8139 2025 30742 Face 61481 8139 30743 18967 Face 61482 8139 465 30743 Face 61483 2342 30744 23629 Face 61484 2342 7546 30744 Face 61485 19059 30745 33541 Face 61486 19059 19060 30745 Face 61487 37100 30746 25669 Face 61488 46851 25411 30746 Face 61489 33796 30747 16795 Face 61490 33076 18488 30747 Face 61491 9933 30748 11256 Face 61492 9933 33341 30748 Face 61493 18880 30749 886 Face 61494 18880 44586 30749 Face 61495 14380 48472 45030 Face 61496 14380 36690 30750 Face 61497 30752 30751 3340 Face 61498 9969 21545 30751 Face 61499 31240 30752 41516 Face 61500 9969 30751 30752 Face 61501 6580 30753 21049 Face 61502 6580 29617 30753 Face 61503 32147 30754 48424 Face 61504 48215 9632 30754 Face 61505 12742 30755 5885 Face 61506 38234 6923 46821 Face 61507 5288 30756 23419 Face 61508 5288 22389 30756 Face 61509 36313 30757 9367 Face 61510 14516 32276 30757 Face 61511 15531 30758 3092 Face 61512 15531 23102 30758 Face 61513 23542 30759 37024 Face 61514 23542 23541 30759 Face 61515 30761 30760 10667 Face 61516 34898 8942 30760 Face 61517 8479 30761 19798 Face 61518 8479 30760 30761 Face 61519 31517 30762 7395 Face 61520 7724 30763 30762 Face 61521 8498 30763 32211 Face 61522 47050 30762 30763 Face 61523 8498 30764 18081 Face 61524 8498 28422 30764 Face 61525 10832 30765 1233 Face 61526 10832 32252 49256 Face 61527 48417 30766 32660 Face 61528 31567 19106 30766 Face 61529 4532 30767 25531 Face 61530 4532 20154 30767 Face 61531 10948 30768 21450 Face 61532 39347 10949 30768 Face 61533 39119 30769 4803 Face 61534 1902 23065 30769 Face 61535 8648 30770 22006 Face 61536 8648 14224 30770 Face 61537 3459 30771 10046 Face 61538 3459 23704 30771 Face 61539 8305 30772 45530 Face 61540 8305 19083 30772 Face 61541 43611 30773 18396 Face 61542 9089 6663 30773 Face 61543 2226 30774 24697 Face 61544 30775 9140 30774 Face 61545 2226 30775 30774 Face 61546 2226 22858 30775 Face 61547 192 32307 42409 Face 61548 42037 10624 32307 Face 61549 23704 30777 37599 Face 61550 23704 47232 30777 Face 61551 40433 30778 19941 Face 61552 20474 33351 30778 Face 61553 2930 30779 38615 Face 61554 2930 20097 30779 Face 61555 8743 30780 20294 Face 61556 8743 14105 30780 Face 61557 46463 30781 29255 Face 61558 299 25752 30781 Face 61559 15234 30782 22192 Face 61560 15234 42747 30782 Face 61561 29298 30783 40689 Face 61562 29298 17606 30783 Face 61563 9657 30784 41974 Face 61564 9657 21799 30784 Face 61565 6518 30785 13287 Face 61566 6518 35564 30785 Face 61567 46799 30786 7238 Face 61568 24092 29904 30786 Face 61569 21932 30787 4751 Face 61570 21932 27426 30787 Face 61571 11892 30788 25702 Face 61572 11892 26924 30788 Face 61573 13928 30789 27000 Face 61574 13928 426 30789 Face 61575 17393 30790 5481 Face 61576 17393 25438 30790 Face 61577 2037 30791 20866 Face 61578 2037 17987 30791 Face 61579 7654 30792 21430 Face 61580 7654 19603 30792 Face 61581 9831 30793 17971 Face 61582 47527 21970 30793 Face 61583 3295 30794 19785 Face 61584 3295 9250 30794 Face 61585 11940 30795 2555 Face 61586 11940 25095 30795 Face 61587 9636 30796 46662 Face 61588 9636 5224 30796 Face 61589 46725 30797 23990 Face 61590 12191 26480 30797 Face 61591 49757 30798 769 Face 61592 8187 911 46852 Face 61593 4219 30799 34294 Face 61594 30800 21528 30799 Face 61595 4219 30800 30799 Face 61596 33089 42192 30800 Face 61597 33737 30801 29956 Face 61598 17159 20818 30801 Face 61599 15042 30802 16330 Face 61600 15042 10491 30802 Face 61601 338 47782 39824 Face 61602 338 16297 30803 Face 61603 45466 30804 2148 Face 61604 468 45621 30804 Face 61605 9768 30805 42239 Face 61606 9768 14775 30805 Face 61607 28242 30806 13937 Face 61608 28242 49214 30806 Face 61609 23731 30807 13846 Face 61610 41077 26340 30807 Face 61611 3638 30808 10931 Face 61612 3638 28215 30808 Face 61613 17633 30809 22484 Face 61614 17633 38682 30809 Face 61615 18580 30810 29183 Face 61616 18580 48657 30810 Face 61617 49311 30811 21629 Face 61618 32622 37233 30811 Face 61619 18058 30812 29876 Face 61620 18058 37738 30812 Face 61621 16946 30813 11005 Face 61622 16946 23190 30813 Face 61623 33716 30814 39677 Face 61624 4335 26674 30814 Face 61625 6810 30815 13481 Face 61626 6810 23139 30815 Face 61627 9391 30816 28614 Face 61628 9391 47358 30816 Face 61629 27081 30817 1165 Face 61630 48743 28432 30817 Face 61631 8244 30818 38065 Face 61632 34950 913 30818 Face 61633 12838 30819 17964 Face 61634 12838 26762 30819 Face 61635 8286 30820 30617 Face 61636 8286 709 30820 Face 61637 46634 30821 33648 Face 61638 30822 1162 30821 Face 61639 13245 30822 30821 Face 61640 13245 10465 30822 Face 61641 7347 42267 47001 Face 61642 7347 17988 30823 Face 61643 4673 30824 14079 Face 61644 31451 8697 30824 Face 61645 12522 30825 16020 Face 61646 12522 17336 30825 Face 61647 41181 30826 7666 Face 61648 3657 25367 30826 Face 61649 14236 30827 31 Face 61650 14236 48859 30827 Face 61651 28347 30828 10260 Face 61652 28347 49018 30828 Face 61653 7063 30829 26642 Face 61654 7063 29640 30829 Face 61655 14902 30830 28597 Face 61656 14902 42541 30830 Face 61657 22942 30831 35310 Face 61658 22942 5224 30831 Face 61659 20058 30832 21040 Face 61660 20058 43399 30832 Face 61661 3276 30833 19701 Face 61662 47940 15311 30833 Face 61663 2680 30834 15637 Face 61664 2680 17783 30834 Face 61665 30836 30835 31275 Face 61666 12912 46325 30835 Face 61667 46668 30836 27984 Face 61668 12912 30835 30836 Face 61669 3422 30837 28135 Face 61670 3422 26715 30837 Face 61671 11977 30838 8495 Face 61672 11977 4369 30838 Face 61673 6178 30839 12345 Face 61674 6178 22382 40422 Face 61675 6091 30840 11218 Face 61676 6091 49243 30840 Face 61677 13538 30841 25775 Face 61678 13538 39492 30841 Face 61679 48981 30842 15320 Face 61680 3084 49952 30842 Face 61681 7959 30843 33284 Face 61682 7959 14773 30843 Face 61683 7127 30844 18979 Face 61684 7127 10199 30844 Face 61685 8962 30845 30048 Face 61686 8962 20508 30845 Face 61687 45646 30846 25094 Face 61688 16564 3795 30846 Face 61689 36173 30847 5648 Face 61690 15053 4581 30847 Face 61691 7691 30848 21204 Face 61692 7691 27084 30848 Face 61693 5012 30849 21467 Face 61694 5012 31 30849 Face 61695 8599 30850 35605 Face 61696 8599 16314 30850 Face 61697 7557 30851 40371 Face 61698 7557 14215 30851 Face 61699 5660 30852 12344 Face 61700 5660 48015 30852 Face 61701 4851 30853 22654 Face 61702 30854 12017 30853 Face 61703 4851 30854 30853 Face 61704 4851 24812 30854 Face 61705 12441 30855 675 Face 61706 12441 4621 30855 Face 61707 12766 30856 27751 Face 61708 12766 40329 30856 Face 61709 9780 30857 18291 Face 61710 9780 617 30857 Face 61711 2008 30858 14524 Face 61712 2008 40972 30858 Face 61713 8950 30859 28895 Face 61714 49035 25475 30859 Face 61715 43740 30860 12440 Face 61716 6187 23159 30860 Face 61717 28033 36984 28034 Face 61718 28033 26231 30861 Face 61719 12984 30862 3716 Face 61720 12984 43458 30862 Face 61721 7749 30863 79 Face 61722 35148 19837 30863 Face 61723 1780 30864 10347 Face 61724 1780 40711 30864 Face 61725 9008 30865 17247 Face 61726 9008 20412 30865 Face 61727 13579 30866 17745 Face 61728 13579 24091 30866 Face 61729 15290 30867 30071 Face 61730 15290 23058 30867 Face 61731 2569 30868 30653 Face 61732 2569 16251 30869 Face 61733 30868 30869 16251 Face 61734 30868 2569 30869 Face 61735 10433 30870 11932 Face 61736 10433 24203 30870 Face 61737 189 30871 17011 Face 61738 189 33723 30871 Face 61739 2495 30872 21756 Face 61740 2495 47203 30872 Face 61741 4153 30873 17247 Face 61742 4153 15806 30873 Face 61743 6884 30874 10085 Face 61744 6884 6260 30874 Face 61745 680 30875 28921 Face 61746 680 20588 30875 Face 61747 12190 30876 21676 Face 61748 12190 5991 30876 Face 61749 13746 30877 6501 Face 61750 13746 21924 30877 Face 61751 2207 30878 40096 Face 61752 2207 20747 30878 Face 61753 18670 30879 23735 Face 61754 18670 24737 30879 Face 61755 16050 30880 42883 Face 61756 16050 20349 30880 Face 61757 39071 30881 15118 Face 61758 32497 40798 30881 Face 61759 6420 42661 21778 Face 61760 49379 42520 30882 Face 61761 8302 30883 39513 Face 61762 8302 947 30883 Face 61763 6539 30884 9674 Face 61764 6539 18035 30884 Face 61765 9610 30885 7387 Face 61766 9610 29889 30885 Face 61767 10938 30886 18894 Face 61768 10938 43958 30886 Face 61769 13005 30887 12625 Face 61770 13005 22545 30887 Face 61771 42354 30888 20279 Face 61772 30889 25348 30888 Face 61773 42354 30889 30888 Face 61774 8485 26225 30889 Face 61775 9304 30890 24600 Face 61776 9304 779 30890 Face 61777 13036 30891 20219 Face 61778 13036 30508 30891 Face 61779 7351 30892 23809 Face 61780 7351 30270 30892 Face 61781 47898 30893 28568 Face 61782 47898 9266 30893 Face 61783 44391 30894 28751 Face 61784 5299 11271 30894 Face 61785 27440 30895 42584 Face 61786 27440 48056 30895 Face 61787 47933 30896 18052 Face 61788 16509 24322 30896 Face 61789 26908 30897 17045 Face 61790 26908 47450 30897 Face 61791 6259 30898 26442 Face 61792 6259 43530 30898 Face 61793 35194 30899 787 Face 61794 12772 46905 30899 Face 61795 11988 30900 22592 Face 61796 11988 8784 30900 Face 61797 2905 30901 25052 Face 61798 2905 35919 30901 Face 61799 8604 44906 42061 Face 61800 8604 36823 30902 Face 61801 5506 30903 46742 Face 61802 5506 29801 30903 Face 61803 7612 30904 29870 Face 61804 7612 46432 30904 Face 61805 48791 44099 34904 Face 61806 4636 18859 30905 Face 61807 7835 30906 32506 Face 61808 36447 47094 30906 Face 61809 49478 30907 22677 Face 61810 49478 13039 30907 Face 61811 10799 30908 3409 Face 61812 10799 15308 30908 Face 61813 6336 30909 24294 Face 61814 6336 24135 30909 Face 61815 21543 30910 17583 Face 61816 21543 5114 30910 Face 61817 18533 30911 23259 Face 61818 18533 21690 30911 Face 61819 5544 30912 39079 Face 61820 5544 24740 30912 Face 61821 11565 30913 5605 Face 61822 11565 32151 30913 Face 61823 17049 30914 20581 Face 61824 17049 29788 30914 Face 61825 19086 30915 34849 Face 61826 19086 45222 30915 Face 61827 1871 30916 28925 Face 61828 1871 24910 30916 Face 61829 49513 30917 41429 Face 61830 6700 27490 30917 Face 61831 3189 30918 25854 Face 61832 46837 9995 30918 Face 61833 2491 30919 13924 Face 61834 2491 40555 30919 Face 61835 13942 30920 33256 Face 61836 13942 13941 30920 Face 61837 4376 30921 11764 Face 61838 48471 32803 40119 Face 61839 13542 30922 23971 Face 61840 13542 24749 30922 Face 61841 10203 48855 11436 Face 61842 10203 10202 30923 Face 61843 1667 30924 26644 Face 61844 47274 24357 30924 Face 61845 15417 30925 32169 Face 61846 15417 33745 30925 Face 61847 7729 30926 44654 Face 61848 7729 25151 30926 Face 61849 2065 30927 22269 Face 61850 2065 38685 30927 Face 61851 13459 30928 26961 Face 61852 13459 9244 30928 Face 61853 30930 30929 2077 Face 61854 35367 1857 30929 Face 61855 14643 30930 37466 Face 61856 14643 30929 30930 Face 61857 13878 30931 16566 Face 61858 13878 16891 30931 Face 61859 31850 30932 32983 Face 61860 6878 12572 30932 Face 61861 8735 30933 39555 Face 61862 39927 17380 30933 Face 61863 4426 30934 39745 Face 61864 4426 22407 30934 Face 61865 42482 30935 2141 Face 61866 42481 2142 30935 Face 61867 14145 30936 14144 Face 61868 14145 35916 30936 Face 61869 14747 30937 8390 Face 61870 14747 49643 30937 Face 61871 14747 30938 48496 Face 61872 14747 8390 30938 Face 61873 16747 30939 6139 Face 61874 46724 6138 30939 Face 61875 30941 44935 22806 Face 61876 1296 29202 30940 Face 61877 1296 30941 46710 Face 61878 1296 44935 30941 Face 61879 48433 30942 38532 Face 61880 1246 43968 30942 Face 61881 6236 30943 41377 Face 61882 6236 22842 30943 Face 61883 6327 30944 25743 Face 61884 6327 24132 30944 Face 61885 553 30945 14240 Face 61886 553 30106 30945 Face 61887 36506 30946 22040 Face 61888 13843 17822 30946 Face 61889 13821 30947 21655 Face 61890 13821 13822 30947 Face 61891 19208 30948 2442 Face 61892 19208 29024 30948 Face 61893 30948 30949 2442 Face 61894 30950 13847 30949 Face 61895 30948 30950 30949 Face 61896 30948 29024 30950 Face 61897 1678 30951 25447 Face 61898 1678 8346 30951 Face 61899 47858 30952 19475 Face 61900 17504 3333 30952 Face 61901 47801 30953 21130 Face 61902 47801 18441 30953 Face 61903 19678 30954 49973 Face 61904 19678 48865 30954 Face 61905 2892 30955 15949 Face 61906 2892 47380 30955 Face 61907 9751 30956 3387 Face 61908 45170 48108 30956 Face 61909 4017 30957 26886 Face 61910 47766 30346 30957 Face 61911 49740 30958 3604 Face 61912 19133 25662 30958 Face 61913 3320 30959 25304 Face 61914 32042 1476 30959 Face 61915 4335 30960 26674 Face 61916 4335 28056 30960 Face 61917 16316 30961 3744 Face 61918 16316 8113 30961 Face 61919 2701 30962 44669 Face 61920 2701 44144 30962 Face 61921 4510 39032 15057 Face 61922 4510 28460 30963 Face 61923 8571 30964 26103 Face 61924 8571 3604 46676 Face 61925 10466 30965 47300 Face 61926 10466 44768 30965 Face 61927 37041 30966 4564 Face 61928 19316 45176 30966 Face 61929 10703 30967 19448 Face 61930 30968 47572 30967 Face 61931 10703 30968 30967 Face 61932 10703 26631 30968 Face 61933 18223 30969 3834 Face 61934 18223 12605 30969 Face 61935 10817 30970 28945 Face 61936 10817 19442 30970 Face 61937 13533 30971 33424 Face 61938 13533 97 30971 Face 61939 32518 30972 11045 Face 61940 14248 28614 30972 Face 61941 44682 30973 27753 Face 61942 44682 32707 30973 Face 61943 7217 30974 3206 Face 61944 7217 5777 41677 Face 61945 1320 30975 23779 Face 61946 1320 19595 30975 Face 61947 16360 30976 44635 Face 61948 16360 22717 30976 Face 61949 9706 30977 45997 Face 61950 9706 18727 30977 Face 61951 30977 30978 29937 Face 61952 30977 26894 30978 Face 61953 1007 30979 6062 Face 61954 35463 19664 45525 Face 61955 4631 30980 11971 Face 61956 4631 29002 30980 Face 61957 30982 30981 43405 Face 61958 22233 18966 30981 Face 61959 22233 30982 351 Face 61960 22233 30981 30982 Face 61961 42883 30983 16050 Face 61962 14139 30937 49643 Face 61963 7939 30984 13695 Face 61964 7939 3584 30984 Face 61965 3493 30985 11662 Face 61966 30986 9537 30985 Face 61967 3493 30986 30985 Face 61968 3493 27252 30986 Face 61969 12268 30987 7888 Face 61970 12268 16471 30987 Face 61971 2095 30988 5514 Face 61972 2095 16273 30988 Face 61973 7188 30989 153 Face 61974 7188 40698 30989 Face 61975 552 30990 47306 Face 61976 552 26643 30990 Face 61977 22947 30991 4077 Face 61978 22947 32507 30991 Face 61979 14267 30992 34129 Face 61980 14267 6495 30992 Face 61981 2308 30993 22205 Face 61982 2308 8096 30993 Face 61983 9196 30994 23763 Face 61984 9196 37884 38507 Face 61985 2120 30995 26323 Face 61986 36129 5168 30995 Face 61987 1252 40838 17498 Face 61988 1252 7609 40839 Face 61989 30998 30997 16667 Face 61990 30998 47279 30997 Face 61991 4883 30998 8951 Face 61992 4883 47279 30998 Face 61993 8875 30999 17695 Face 61994 8875 34164 30999 Face 61995 2382 31000 8667 Face 61996 2382 18275 31000 Face 61997 7315 31001 23785 Face 61998 7315 20376 31001 Face 61999 33538 31002 33908 Face 62000 2323 44149 31002 Face 62001 39583 31003 45871 Face 62002 10653 46455 31003 Face 62003 39547 31004 26233 Face 62004 5131 37881 31004 Face 62005 577 31005 42793 Face 62006 577 28472 31005 Face 62007 500 31006 28636 Face 62008 500 45313 31006 Face 62009 15643 31007 30573 Face 62010 15643 525 31007 Face 62011 39056 31008 7548 Face 62012 33694 15971 31008 Face 62013 6741 31009 4024 Face 62014 6741 47702 31009 Face 62015 19584 31010 10563 Face 62016 19584 49676 31010 Face 62017 2904 31011 30524 Face 62018 2904 27420 31011 Face 62019 7080 31012 175 Face 62020 7080 36260 31012 Face 62021 1112 31013 3143 Face 62022 31696 19946 31013 Face 62023 45420 31014 43774 Face 62024 45420 14199 31014 Face 62025 4116 31015 18210 Face 62026 4116 31538 31015 Face 62027 14485 31016 20237 Face 62028 14485 30605 31016 Face 62029 31016 31017 43172 Face 62030 31016 30605 31017 Face 62031 45487 31018 27507 Face 62032 45487 12413 31018 Face 62033 11137 31019 3814 Face 62034 11137 6620 31019 Face 62035 13347 31020 18806 Face 62036 13347 12634 31020 Face 62037 11250 31021 33212 Face 62038 11250 24612 31021 Face 62039 15888 31022 42027 Face 62040 15888 37032 31022 Face 62041 12460 36758 6571 Face 62042 12460 15900 31023 Face 62043 31931 31024 5897 Face 62044 31025 36481 31024 Face 62045 2380 31025 31024 Face 62046 2380 18238 31025 Face 62047 19640 31026 47956 Face 62048 19640 3896 31026 Face 62049 32721 41747 23700 Face 62050 2181 42449 31027 Face 62051 12307 31028 11423 Face 62052 12307 27630 31028 Face 62053 2959 31029 18674 Face 62054 2959 29020 31029 Face 62055 13643 31030 27334 Face 62056 13643 26327 31030 Face 62057 4565 31031 25971 Face 62058 4565 29607 31031 Face 62059 31948 48577 32751 Face 62060 13134 46426 31032 Face 62061 37214 31033 6637 Face 62062 35260 1860 31033 Face 62063 1441 31034 47114 Face 62064 1441 40250 31034 Face 62065 37155 31035 3183 Face 62066 226 14091 31035 Face 62067 12167 31036 1577 Face 62068 12167 44202 31036 Face 62069 15949 31037 4705 Face 62070 15949 9633 31037 Face 62071 22794 31038 43648 Face 62072 22794 5170 31038 Face 62073 15499 31039 49582 Face 62074 37503 15497 31039 Face 62075 25982 31040 4906 Face 62076 25982 19334 31040 Face 62077 2979 31041 19448 Face 62078 2979 39327 31041 Face 62079 15522 31042 25353 Face 62080 15522 48124 31042 Face 62081 9290 31043 13512 Face 62082 9290 18227 31043 Face 62083 8252 31044 20314 Face 62084 8252 12445 31044 Face 62085 16333 31045 32181 Face 62086 16333 39268 31045 Face 62087 1082 31046 10268 Face 62088 1082 30249 31046 Face 62089 19516 31047 40872 Face 62090 19516 44800 31047 Face 62091 31050 31048 33891 Face 62092 31051 21708 31048 Face 62093 12802 31049 49704 Face 62094 31050 35044 31049 Face 62095 12802 31050 31049 Face 62096 12802 31048 31050 Face 62097 12802 31051 31048 Face 62098 12802 49129 31051 Face 62099 7914 31052 29429 Face 62100 7914 18509 31052 Face 62101 39612 31053 24918 Face 62102 6593 26853 31053 Face 62103 1404 31054 12698 Face 62104 1404 5908 31054 Face 62105 13377 31056 23984 Face 62106 13377 984 31055 Face 62107 31055 31056 13377 Face 62108 31055 23983 31056 Face 62109 22586 31057 44741 Face 62110 22586 29081 31057 Face 62111 49834 31058 36364 Face 62112 14586 2186 31058 Face 62113 6023 31059 2274 Face 62114 6023 22437 31059 Face 62115 6793 31060 17847 Face 62116 6793 28163 31060 Face 62117 17968 31061 7478 Face 62118 49647 10699 31061 Face 62119 17968 49647 31061 Face 62120 17968 17541 31062 Face 62121 41914 31063 46976 Face 62122 49470 4674 31063 Face 62123 6510 31064 12806 Face 62124 6510 14284 31064 Face 62125 41749 31065 19548 Face 62126 10324 2161 31065 Face 62127 48938 31066 34913 Face 62128 48938 2433 31066 Face 62129 12770 31067 9905 Face 62130 12770 49903 31067 Face 62131 8075 31068 21117 Face 62132 32267 25175 31068 Face 62133 5304 31069 39702 Face 62134 5304 18712 31069 Face 62135 7935 31070 20610 Face 62136 7935 40493 31070 Face 62137 15674 31071 25860 Face 62138 15674 25514 31071 Face 62139 7511 31072 28827 Face 62140 7511 5053 31072 Face 62141 12352 31073 39193 Face 62142 12352 43238 31073 Face 62143 101 31074 40461 Face 62144 31169 14486 31074 Face 62145 14713 31075 9644 Face 62146 14713 24815 31075 Face 62147 31421 31076 8165 Face 62148 38369 27113 31076 Face 62149 8193 31077 45392 Face 62150 8193 26933 31077 Face 62151 8193 31078 17601 Face 62152 8193 42194 31078 Face 62153 2822 31079 36282 Face 62154 2822 22651 31079 Face 62155 21253 31080 32930 Face 62156 31081 34574 31080 Face 62157 21253 31081 31080 Face 62158 21253 29592 31081 Face 62159 11669 31082 34310 Face 62160 11669 7354 31082 Face 62161 11789 31083 18451 Face 62162 36609 47867 31083 Face 62163 9309 31084 44635 Face 62164 9309 19182 31084 Face 62165 19182 46738 14779 Face 62166 40481 542 31085 Face 62167 6561 31086 16362 Face 62168 6561 22679 31086 Face 62169 8612 31087 28565 Face 62170 8612 14568 31087 Face 62171 15516 31088 13607 Face 62172 15516 25280 44486 Face 62173 10889 31089 46708 Face 62174 10889 20613 31089 Face 62175 19602 31090 10945 Face 62176 19602 7974 31090 Face 62177 12419 31091 24953 Face 62178 12419 35046 31091 Face 62179 31093 31092 7473 Face 62180 1553 47574 31092 Face 62181 33805 38658 8503 Face 62182 1553 31092 31093 Face 62183 6961 31094 17063 Face 62184 6961 23383 31094 Face 62185 9303 31095 36156 Face 62186 9303 14946 31095 Face 62187 2985 31096 17124 Face 62188 2985 13687 31096 Face 62189 15193 31097 27648 Face 62190 15193 5114 31097 Face 62191 5826 31098 28198 Face 62192 5826 8861 31098 Face 62193 23156 31099 16119 Face 62194 23156 3765 31099 Face 62195 3263 31100 17579 Face 62196 3263 16203 31100 Face 62197 6907 31101 23502 Face 62198 6907 28610 31101 Face 62199 7181 31102 25327 Face 62200 7181 35785 31102 Face 62201 15401 31103 40660 Face 62202 15401 45536 31103 Face 62203 2534 31104 21230 Face 62204 2534 18041 31104 Face 62205 6144 31105 38679 Face 62206 40959 24892 31105 Face 62207 6551 31106 15523 Face 62208 6551 6550 31106 Face 62209 6130 31107 42261 Face 62210 6130 30511 31107 Face 62211 3679 31108 22317 Face 62212 3679 17333 31108 Face 62213 5407 31109 14639 Face 62214 5407 30420 34468 Face 62215 2675 31110 38826 Face 62216 2675 10660 31110 Face 62217 15455 31111 20745 Face 62218 15455 28567 31111 Face 62219 16473 31112 3373 Face 62220 16473 19234 31112 Face 62221 19423 31113 36469 Face 62222 19423 45453 31113 Face 62223 1084 31114 16321 Face 62224 1084 49663 31114 Face 62225 48170 31115 29600 Face 62226 17637 19846 31115 Face 62227 28232 31116 44659 Face 62228 28232 24474 31116 Face 62229 13563 31117 13564 Face 62230 13563 7050 31117 Face 62231 4881 31118 39678 Face 62232 4881 25990 31118 Face 62233 7580 31119 16256 Face 62234 7580 15668 31119 Face 62235 2032 46804 9909 Face 62236 38012 21741 31120 Face 62237 8826 31121 13168 Face 62238 8826 51 31121 Face 62239 12006 31122 8695 Face 62240 12006 44157 31122 Face 62241 11344 31123 25477 Face 62242 11344 4653 31123 Face 62243 14915 31124 42171 Face 62244 14915 17574 31124 Face 62245 7154 31125 22218 Face 62246 7154 7155 31125 Face 62247 14535 31126 40206 Face 62248 14535 26542 31126 Face 62249 281 31127 45057 Face 62250 281 28670 31127 Face 62251 8167 31128 25150 Face 62252 8167 41617 31128 Face 62253 6950 31129 34302 Face 62254 45286 2158 31129 Face 62255 25078 31130 22466 Face 62256 25078 36822 31130 Face 62257 15974 31131 44929 Face 62258 15974 38187 41949 Face 62259 39281 31132 10194 Face 62260 17562 4737 31132 Face 62261 37818 31133 15830 Face 62262 37818 26309 31133 Face 62263 13163 31134 2046 Face 62264 13163 2045 31134 Face 62265 34655 31135 22502 Face 62266 34655 6022 31135 Face 62267 10725 31136 9013 Face 62268 10725 38218 31136 Face 62269 33808 31137 17233 Face 62270 4408 24746 31137 Face 62271 13425 31138 36856 Face 62272 13425 18963 31138 Face 62273 16868 31139 27041 Face 62274 31140 10031 31139 Face 62275 16868 31140 31139 Face 62276 16868 38750 31140 Face 62277 13033 31141 20679 Face 62278 13033 44303 31141 Face 62279 9624 31142 27921 Face 62280 9624 26436 31142 Face 62281 43180 31143 44244 Face 62282 43180 24617 31143 Face 62283 1830 47351 4140 Face 62284 1830 4724 31144 Face 62285 47351 31145 8377 Face 62286 31144 14952 31145 Face 62287 10830 31146 29018 Face 62288 10830 29051 31146 Face 62289 661 31147 32605 Face 62290 31148 9724 31147 Face 62291 661 31148 31147 Face 62292 661 25710 31148 Face 62293 3996 31149 9138 Face 62294 3996 14190 31149 Face 62295 31151 37557 12677 Face 62296 6575 40828 31150 Face 62297 6575 31151 11385 Face 62298 6575 37557 31151 Face 62299 12629 31152 11230 Face 62300 38973 47506 31152 Face 62301 5838 31153 26980 Face 62302 5838 20037 41411 Face 62303 31424 45277 34944 Face 62304 23150 46881 31154 Face 62305 49835 31155 7574 Face 62306 9944 28519 31155 Face 62307 48098 31156 28649 Face 62308 37309 30633 31156 Face 62309 21397 31157 37790 Face 62310 21397 6797 31157 Face 62311 16041 31158 7178 Face 62312 16041 894 31158 Face 62313 36377 31159 8971 Face 62314 6035 27756 31159 Face 62315 20392 31160 46899 Face 62316 20392 47014 31160 Face 62317 32230 31161 2087 Face 62318 7794 46696 31161 Face 62319 8886 31162 14553 Face 62320 8886 13841 31162 Face 62321 11606 31163 1478 Face 62322 11606 8550 49308 Face 62323 625 31164 20300 Face 62324 625 44031 31164 Face 62325 4833 31165 22342 Face 62326 4833 23814 31165 Face 62327 4383 31166 4382 Face 62328 44903 18248 31166 Face 62329 20431 31167 32356 Face 62330 20431 41527 31167 Face 62331 8532 31168 28788 Face 62332 48282 21195 31168 Face 62333 101 31169 31074 Face 62334 101 39610 31169 Face 62335 31171 31170 37666 Face 62336 105 9761 31170 Face 62337 105 31171 7083 Face 62338 105 31170 31171 Face 62339 10562 31172 39333 Face 62340 10562 31010 31172 Face 62341 31174 31173 35787 Face 62342 31174 29925 31173 Face 62343 43712 31174 15111 Face 62344 43711 29925 31174 Face 62345 16497 34099 16498 Face 62346 16497 20890 31175 Face 62347 6254 31176 25885 Face 62348 6254 13938 31176 Face 62349 16724 31177 45603 Face 62350 16724 12286 31177 Face 62351 1055 31178 9437 Face 62352 1055 27115 31178 Face 62353 9273 31179 1569 Face 62354 9273 22567 31179 Face 62355 1439 31180 10723 Face 62356 1439 27358 31180 Face 62357 16775 31181 13980 Face 62358 16775 14901 31181 Face 62359 4173 31182 19519 Face 62360 4173 26501 31182 Face 62361 14725 31183 2152 Face 62362 14725 15069 31183 Face 62363 2339 31184 33595 Face 62364 2339 45489 31184 Face 62365 17325 31185 20017 Face 62366 17325 37675 31185 Face 62367 10231 31186 2157 Face 62368 10231 17999 31186 Face 62369 1550 31187 26576 Face 62370 1550 38250 31187 Face 62371 40514 31188 16036 Face 62372 3122 19365 31188 Face 62373 5978 44926 12743 Face 62374 31190 48947 31189 Face 62375 5978 31190 44926 Face 62376 5978 35063 31190 Face 62377 12717 31191 23035 Face 62378 43617 21142 31191 Face 62379 12717 43617 31191 Face 62380 12717 21767 31192 Face 62381 10615 31193 4588 Face 62382 41078 7425 31193 Face 62383 9379 31194 12859 Face 62384 9379 30309 31194 Face 62385 402 31195 38691 Face 62386 402 7550 31195 Face 62387 19786 31196 10049 Face 62388 19786 3654 31196 Face 62389 35917 31197 27590 Face 62390 7495 26878 31197 Face 62391 10002 31198 16874 Face 62392 10002 2778 31198 Face 62393 1738 31199 20221 Face 62394 1738 14679 31199 Face 62395 27870 31200 40500 Face 62396 27870 8447 31200 Face 62397 13362 31201 32575 Face 62398 13362 45720 31201 Face 62399 17659 31202 752 Face 62400 17659 32070 31202 Face 62401 46962 31203 12496 Face 62402 46962 25053 31203 Face 62403 49896 31204 22497 Face 62404 37201 6825 31204 Face 62405 910 31205 28663 Face 62406 910 22325 31205 Face 62407 7848 31206 46937 Face 62408 7848 46488 31206 Face 62409 5762 31207 45323 Face 62410 5762 1081 31207 Face 62411 15586 31208 28301 Face 62412 47622 17326 31208 Face 62413 8590 31209 37960 Face 62414 37644 40897 31209 Face 62415 13792 31210 4711 Face 62416 13792 5575 31210 Face 62417 19316 31211 3822 Face 62418 19316 30966 31211 Face 62419 1972 31212 34708 Face 62420 1972 18498 31212 Face 62421 19169 31213 33425 Face 62422 19169 4022 31213 Face 62423 25288 31214 3577 Face 62424 25288 414 31214 Face 62425 10573 31215 5644 Face 62426 10573 9213 31215 Face 62427 16234 31216 45885 Face 62428 16234 31955 31216 Face 62429 20935 31217 46072 Face 62430 20935 48817 31217 Face 62431 4267 31218 23088 Face 62432 4267 40968 31218 Face 62433 10597 31219 7468 Face 62434 10597 29004 31219 Face 62435 15278 31220 37809 Face 62436 15278 18937 31220 Face 62437 9929 31221 28434 Face 62438 9929 45434 31221 Face 62439 5440 31222 708 Face 62440 5440 33303 31222 Face 62441 1165 31223 24404 Face 62442 1165 30817 31223 Face 62443 16516 31224 46149 Face 62444 34324 23485 31224 Face 62445 25282 31225 10627 Face 62446 25282 10622 31225 Face 62447 2914 31226 18174 Face 62448 2914 10844 31226 Face 62449 13775 31227 19456 Face 62450 13775 41160 31227 Face 62451 11378 31228 39764 Face 62452 11378 7392 31228 Face 62453 457 31229 15083 Face 62454 47014 20392 31229 Face 62455 457 31230 31229 Face 62456 49523 28233 31230 Face 62457 23373 31231 23745 Face 62458 23373 14543 31231 Face 62459 4446 31232 32536 Face 62460 4446 38151 31232 Face 62461 15988 31233 20248 Face 62462 15988 31548 31233 Face 62463 25096 31234 47501 Face 62464 25096 47451 31234 Face 62465 32834 44216 21387 Face 62466 1450 48740 31235 Face 62467 104 31236 6412 Face 62468 104 20113 31236 Face 62469 41243 31237 3126 Face 62470 12028 4546 31237 Face 62471 11539 31238 24705 Face 62472 11539 16926 31238 Face 62473 18266 31239 25135 Face 62474 18266 22187 31239 Face 62475 9969 31240 38589 Face 62476 9969 30752 31240 Face 62477 33619 31241 24839 Face 62478 970 11456 31241 Face 62479 12001 31242 10523 Face 62480 12001 46112 31242 Face 62481 45252 31243 19540 Face 62482 35617 13607 31243 Face 62483 423 31244 5210 Face 62484 423 26034 44834 Face 62485 20998 31245 44647 Face 62486 20998 49984 31245 Face 62487 6301 31246 21141 Face 62488 32649 37454 31246 Face 62489 4270 31247 14889 Face 62490 48112 18091 31247 Face 62491 2174 31248 16953 Face 62492 2174 14223 31248 Face 62493 20143 31249 3597 Face 62494 20143 1162 31249 Face 62495 11967 31250 8136 Face 62496 11967 38039 31250 Face 62497 35190 31251 17639 Face 62498 6297 38155 31251 Face 62499 305 31252 22349 Face 62500 305 22697 31252 Face 62501 293 31253 9194 Face 62502 293 43094 31253 Face 62503 5980 31254 24425 Face 62504 5980 48552 31254 Face 62505 34911 31255 27852 Face 62506 3282 45928 31255 Face 62507 11436 31256 27922 Face 62508 11436 48855 31256 Face 62509 11462 31257 18001 Face 62510 39618 8307 31257 Face 62511 68 31258 25861 Face 62512 68 47605 31258 Face 62513 35158 31259 19653 Face 62514 31260 6338 31259 Face 62515 10711 31260 31259 Face 62516 10711 27695 31260 Face 62517 40117 31261 14221 Face 62518 6656 7884 31261 Face 62519 3556 31262 43701 Face 62520 3556 15228 31262 Face 62521 2897 47502 17688 Face 62522 2897 7779 47502 Face 62523 2897 31264 45218 Face 62524 2897 17688 31264 Face 62525 804 31265 38515 Face 62526 804 43064 31265 Face 62527 13044 31266 47627 Face 62528 13044 22452 31266 Face 62529 15135 31267 22715 Face 62530 15135 23250 31267 Face 62531 38315 31268 18136 Face 62532 11413 2311 31268 Face 62533 38139 31269 16885 Face 62534 38139 10687 31269 Face 62535 7024 31270 20286 Face 62536 7024 23534 31270 Face 62537 22961 31271 40818 Face 62538 22961 12402 31271 Face 62539 7669 31272 21009 Face 62540 7669 39997 31272 Face 62541 22989 31273 12642 Face 62542 22989 49272 31273 Face 62543 11764 31274 7953 Face 62544 11764 30921 43976 Face 62545 25276 31275 15099 Face 62546 47907 30836 31275 Face 62547 7039 31276 27388 Face 62548 7039 44723 31276 Face 62549 10118 31277 18811 Face 62550 10118 46394 31277 Face 62551 10118 31278 3934 Face 62552 10118 18811 31278 Face 62553 31280 31279 12082 Face 62554 386 9271 31279 Face 62555 386 31280 18318 Face 62556 386 31279 31280 Face 62557 12295 31281 25865 Face 62558 12295 7358 31281 Face 62559 14088 31282 45980 Face 62560 14088 20943 31282 Face 62561 10039 31283 42182 Face 62562 10039 24061 31283 Face 62563 1417 31284 43186 Face 62564 45160 25990 31284 Face 62565 1417 31285 31284 Face 62566 44628 32626 31285 Face 62567 10300 31286 24719 Face 62568 10300 19926 31286 Face 62569 49408 31287 6944 Face 62570 23084 41508 31287 Face 62571 31287 31288 6944 Face 62572 31287 10492 31288 Face 62573 5816 31289 23877 Face 62574 40998 20243 31289 Face 62575 4755 31290 980 Face 62576 31291 37329 31290 Face 62577 4755 31291 31290 Face 62578 4755 9824 31291 Face 62579 47122 31292 35462 Face 62580 19287 47035 31292 Face 62581 5843 31293 31155 Face 62582 5843 28819 31293 Face 62583 20207 31294 48920 Face 62584 20207 38704 31294 Face 62585 12451 31295 16171 Face 62586 12451 11967 31295 Face 62587 15326 31296 4419 Face 62588 15326 48046 31296 Face 62589 766 48260 44982 Face 62590 45339 19826 31297 Face 62591 3044 31298 9341 Face 62592 3044 9340 31298 Face 62593 14607 31299 18540 Face 62594 14607 4198 31299 Face 62595 12691 31300 33973 Face 62596 12691 46180 31300 Face 62597 15526 31301 30217 Face 62598 15526 16 31301 Face 62599 3934 31302 14936 Face 62600 3934 7746 31302 Face 62601 3795 31303 6998 Face 62602 3795 39417 31303 Face 62603 14666 31304 46735 Face 62604 14666 36738 31304 Face 62605 21115 31305 25670 Face 62606 21115 36143 31305 Face 62607 35204 49791 13100 Face 62608 5845 12756 31306 Face 62609 8570 31307 20766 Face 62610 40768 15501 31307 Face 62611 7436 31308 10553 Face 62612 7436 12797 31308 Face 62613 24545 31309 36830 Face 62614 24545 2395 31309 Face 62615 11927 31310 29089 Face 62616 36292 41251 31310 Face 62617 12300 31311 25048 Face 62618 38810 24642 31311 Face 62619 5674 31312 23448 Face 62620 5674 48654 31312 Face 62621 2257 31313 3627 Face 62622 2257 10048 31313 Face 62623 12217 31314 27056 Face 62624 12217 20385 31314 Face 62625 34036 31315 33025 Face 62626 34036 11352 31315 Face 62627 10873 31316 49536 Face 62628 10873 407 31316 Face 62629 45382 31317 32781 Face 62630 46835 16699 31317 Face 62631 12173 31318 43986 Face 62632 12173 22577 31318 Face 62633 31320 31319 11327 Face 62634 121 5355 31319 Face 62635 121 31320 45811 Face 62636 121 31319 31320 Face 62637 32490 31321 4519 Face 62638 5592 30197 31321 Face 62639 21430 31322 6293 Face 62640 21430 30792 31322 Face 62641 22750 31323 32176 Face 62642 22750 9399 31323 Face 62643 43052 31324 34674 Face 62644 47042 3086 31324 Face 62645 37 31325 20358 Face 62646 37 24260 31325 Face 62647 37 31326 24260 Face 62648 37 31324 31326 Face 62649 7199 31327 16382 Face 62650 7199 14168 31327 Face 62651 2580 31328 23166 Face 62652 2580 10587 31328 Face 62653 4009 31329 10925 Face 62654 4009 12636 31329 Face 62655 20755 31330 23086 Face 62656 20755 46637 31330 Face 62657 12144 46617 19998 Face 62658 12144 40922 31331 Face 62659 4074 31332 8638 Face 62660 4074 19071 31332 Face 62661 47540 31333 44351 Face 62662 47540 29438 31333 Face 62663 11670 31334 27955 Face 62664 11670 24060 31334 Face 62665 1479 31335 5468 Face 62666 40430 26780 31335 Face 62667 18191 31336 13809 Face 62668 18191 1448 31336 Face 62669 20103 31337 13060 Face 62670 20103 19042 31337 Face 62671 25721 31338 43127 Face 62672 25721 1907 49823 Face 62673 38229 31339 25850 Face 62674 38229 40428 31339 Face 62675 8903 31340 3083 Face 62676 8903 21437 31340 Face 62677 892 31341 34547 Face 62678 892 41866 31341 Face 62679 35079 31342 18159 Face 62680 26923 11120 41531 Face 62681 15570 31343 16986 Face 62682 15570 44672 31343 Face 62683 2305 31344 29781 Face 62684 44598 47637 31344 Face 62685 8635 31345 24792 Face 62686 8635 19751 31345 Face 62687 872 31346 21646 Face 62688 872 8972 31346 Face 62689 16842 31347 35843 Face 62690 16842 20861 31347 Face 62691 12768 31348 27719 Face 62692 12768 22569 31348 Face 62693 10076 31349 48208 Face 62694 36246 23184 36669 Face 62695 4490 31350 16871 Face 62696 4490 48494 31350 Face 62697 4490 31351 48494 Face 62698 4490 18144 31351 Face 62699 11774 31352 21712 Face 62700 11774 38968 31352 Face 62701 9792 31353 30862 Face 62702 9792 40057 31353 Face 62703 2997 31354 20528 Face 62704 48648 16321 31354 Face 62705 7855 31355 5693 Face 62706 7855 32655 31355 Face 62707 33173 31356 30442 Face 62708 33173 9112 31356 Face 62709 4460 31357 28316 Face 62710 4460 6884 31357 Face 62711 8019 31358 18939 Face 62712 8019 35773 31358 Face 62713 4294 31359 8263 Face 62714 4294 19604 31359 Face 62715 7400 31360 21593 Face 62716 49421 1498 31360 Face 62717 7400 49421 31360 Face 62718 7400 15631 31361 Face 62719 8424 31362 18927 Face 62720 8424 40584 31362 Face 62721 23039 31363 17252 Face 62722 23039 14500 31363 Face 62723 1462 31364 29433 Face 62724 1462 7289 31364 Face 62725 24414 31365 2411 Face 62726 24414 39993 31365 Face 62727 1881 31366 6702 Face 62728 1881 11189 31366 Face 62729 34832 31367 4879 Face 62730 4716 31368 31367 Face 62731 18537 31368 20707 Face 62732 18537 18538 31368 Face 62733 35363 31369 15699 Face 62734 1222 22398 31369 Face 62735 7860 41072 15634 Face 62736 7860 11500 31370 Face 62737 16674 31371 11677 Face 62738 16674 24880 31371 Face 62739 4412 31372 16307 Face 62740 4412 25792 31372 Face 62741 23470 31373 8519 Face 62742 23470 36093 31373 Face 62743 13166 31374 15018 Face 62744 13166 2211 31374 Face 62745 16501 31375 5802 Face 62746 16501 8317 31375 Face 62747 6859 31376 19057 Face 62748 6859 40243 31376 Face 62749 695 31377 42719 Face 62750 695 15312 31377 Face 62751 37345 31378 23209 Face 62752 31379 35540 31378 Face 62753 8856 31379 31378 Face 62754 8856 45051 31379 Face 62755 5013 31380 13993 Face 62756 5013 15771 31380 Face 62757 32065 31381 35793 Face 62758 5730 47392 31381 Face 62759 36504 31382 27792 Face 62760 1946 21910 42792 Face 62761 5919 31383 12328 Face 62762 5919 7796 31383 Face 62763 14281 31384 29772 Face 62764 14281 44443 31384 Face 62765 2216 31385 6444 Face 62766 2216 29510 31385 Face 62767 5211 31386 41089 Face 62768 36773 46423 31386 Face 62769 35223 31387 13832 Face 62770 318 7921 31387 Face 62771 37729 31388 11268 Face 62772 37728 5287 31388 Face 62773 5822 31389 6027 Face 62774 5822 16245 31389 Face 62775 2405 31390 6693 Face 62776 2405 23300 31390 Face 62777 44489 31391 24631 Face 62778 8342 25272 31391 Face 62779 4068 31392 10729 Face 62780 37760 49235 31392 Face 62781 24687 31393 40046 Face 62782 24687 57 31393 Face 62783 47678 31394 14182 Face 62784 47678 23039 31394 Face 62785 7503 31395 11736 Face 62786 7503 49252 31395 Face 62787 12562 31396 4690 Face 62788 12562 24557 31396 Face 62789 49674 47109 40448 Face 62790 6447 36140 31397 Face 62791 17154 41782 47268 Face 62792 17154 20674 41782 Face 62793 8101 31399 25708 Face 62794 8101 47593 31399 Face 62795 11403 31400 4466 Face 62796 11403 19890 31400 Face 62797 8036 31401 32306 Face 62798 8036 5249 31401 Face 62799 38410 31402 16684 Face 62800 24600 18989 31402 Face 62801 10576 31403 34416 Face 62802 10576 1116 31403 Face 62803 2738 31404 22521 Face 62804 2738 14842 31404 Face 62805 11193 31405 4802 Face 62806 11193 42168 31405 Face 62807 16039 49857 24150 Face 62808 16039 21505 31406 Face 62809 7687 31407 12935 Face 62810 7687 34247 31407 Face 62811 94 31408 17312 Face 62812 94 20667 31408 Face 62813 10696 31409 43795 Face 62814 33525 2051 31409 Face 62815 3275 31410 33336 Face 62816 3275 31411 31410 Face 62817 17076 31411 6767 Face 62818 17076 31412 31411 Face 62819 31410 31412 17076 Face 62820 31410 31411 31412 Face 62821 12611 31414 12610 Face 62822 12611 4940 31414 Face 62823 31413 31414 26848 Face 62824 31413 12610 31414 Face 62825 24168 31415 12128 Face 62826 24168 3698 31415 Face 62827 17937 31416 38875 Face 62828 17937 40202 31416 Face 62829 2019 31417 49078 Face 62830 31418 44549 31417 Face 62831 2019 31418 31417 Face 62832 2019 34039 31418 Face 62833 14411 31419 40693 Face 62834 14411 22790 31419 Face 62835 3944 31420 17915 Face 62836 3944 4032 31420 Face 62837 1824 31421 3088 Face 62838 38369 31076 31421 Face 62839 25473 44702 22115 Face 62840 25473 39877 44702 Face 62841 5661 31423 15896 Face 62842 5661 13337 31423 Face 62843 23150 31424 28930 Face 62844 23150 31154 31424 Face 62845 3330 31425 40789 Face 62846 3330 20396 31425 Face 62847 3523 31426 34147 Face 62848 3523 34364 31426 Face 62849 13953 31427 17305 Face 62850 13953 34678 31427 Face 62851 6552 31428 31763 Face 62852 6552 15080 31428 Face 62853 6552 31429 24036 Face 62854 6552 49568 31429 Face 62855 24087 31430 18661 Face 62856 24087 6677 31430 Face 62857 13734 31431 11255 Face 62858 13734 17483 31431 Face 62859 45409 31432 10075 Face 62860 20677 20676 31432 Face 62861 42287 31433 33242 Face 62862 31434 24556 31433 Face 62863 42287 31434 31433 Face 62864 4583 23549 31434 Face 62865 4206 31435 16076 Face 62866 4206 24908 31435 Face 62867 17141 31436 17142 Face 62868 17141 7218 31436 Face 62869 16012 31437 40548 Face 62870 16012 29754 49800 Face 62871 9732 31438 16899 Face 62872 46307 8003 31438 Face 62873 19955 31439 28974 Face 62874 19955 46099 31439 Face 62875 1277 31440 29827 Face 62876 1277 17281 31440 Face 62877 5886 31441 37687 Face 62878 5886 37281 31441 Face 62879 11785 31442 35586 Face 62880 11785 46596 31442 Face 62881 4735 31443 43618 Face 62882 4735 15371 31443 Face 62883 11841 31444 17249 Face 62884 11841 21402 31444 Face 62885 1561 31445 16793 Face 62886 1561 38158 31445 Face 62887 2414 31446 42831 Face 62888 2414 15734 31446 Face 62889 4907 31447 26029 Face 62890 4907 33928 31447 Face 62891 45425 31448 44690 Face 62892 45425 17001 31448 Face 62893 7915 31449 19211 Face 62894 7915 48535 31449 Face 62895 12376 31450 4364 Face 62896 12376 23319 31450 Face 62897 4673 31451 30824 Face 62898 43309 18241 31451 Face 62899 13128 31452 2716 Face 62900 13128 15796 31452 Face 62901 3867 31453 11019 Face 62902 3867 25376 31453 Face 62903 9054 31454 24046 Face 62904 9054 46080 31454 Face 62905 14885 31455 28692 Face 62906 14885 7559 31455 Face 62907 11381 31456 22250 Face 62908 11381 25507 31456 Face 62909 468 31457 45621 Face 62910 468 44890 31457 Face 62911 45142 31458 13482 Face 62912 468 30804 31458 Face 62913 2722 31459 25585 Face 62914 2722 37300 31459 Face 62915 15729 31460 11109 Face 62916 15729 4781 31460 Face 62917 31462 47633 5995 Face 62918 16469 34202 31461 Face 62919 16469 31462 29177 Face 62920 16469 31461 31462 Face 62921 3909 31463 14381 Face 62922 3909 19996 31463 Face 62923 319 31464 22147 Face 62924 31465 14349 31464 Face 62925 319 31465 31464 Face 62926 319 9210 31465 Face 62927 24457 31466 27988 Face 62928 24457 8411 31466 Face 62929 18202 31467 30020 Face 62930 18202 13082 31467 Face 62931 5655 31468 27771 Face 62932 5655 27031 31468 Face 62933 3401 31469 16195 Face 62934 3401 6497 31469 Face 62935 44357 31470 6481 Face 62936 9891 21100 31470 Face 62937 10468 31471 31877 Face 62938 37310 19809 31471 Face 62939 27336 31472 10878 Face 62940 27336 22365 31472 Face 62941 42995 31473 13999 Face 62942 7938 43861 31473 Face 62943 39411 31474 26981 Face 62944 43266 17386 31474 Face 62945 11898 31475 37687 Face 62946 11898 4842 31475 Face 62947 16329 31476 18745 Face 62948 16329 10371 31476 Face 62949 40108 31477 6467 Face 62950 4963 25987 31477 Face 62951 22534 31478 33046 Face 62952 22534 3529 31478 Face 62953 9894 31479 2726 Face 62954 9894 19597 31479 Face 62955 9794 31480 18667 Face 62956 46935 36951 31480 Face 62957 10622 31481 15356 Face 62958 10622 22469 31481 Face 62959 2366 31482 43904 Face 62960 31483 10490 31482 Face 62961 2366 31483 31482 Face 62962 2366 14433 46164 Face 62963 3460 31484 34768 Face 62964 3460 38283 31484 Face 62965 3568 31485 24672 Face 62966 3568 36975 31485 Face 62967 48176 31486 36088 Face 62968 7072 42618 31486 Face 62969 28258 31487 5127 Face 62970 28258 20071 31487 Face 62971 8617 31488 24277 Face 62972 47647 23958 31488 Face 62973 24390 31489 27148 Face 62974 24390 19411 31489 Face 62975 30510 31490 31491 Face 62976 30510 9098 31490 Face 62977 21673 31491 31490 Face 62978 21673 18852 31491 Face 62979 6440 31492 25841 Face 62980 6440 19536 31492 Face 62981 17410 31493 47153 Face 62982 17410 37675 31493 Face 62983 11611 31494 46903 Face 62984 11611 7391 31494 Face 62985 7329 31495 2767 Face 62986 7329 33526 31495 Face 62987 12507 31496 20086 Face 62988 37209 11529 31496 Face 62989 5591 49827 25273 Face 62990 5591 41197 49827 Face 62991 3565 31498 7734 Face 62992 3565 39272 31498 Face 62993 41054 31499 44993 Face 62994 10770 26342 31499 Face 62995 10411 31500 3438 Face 62996 10411 47889 31500 Face 62997 17168 41959 11589 Face 62998 17168 45747 31501 Face 62999 7675 31502 40679 Face 63000 7675 22311 31502 Face 63001 11240 31503 1390 Face 63002 11240 24194 31503 Face 63003 4395 31504 34741 Face 63004 4395 41217 31504 Face 63005 19501 31505 2295 Face 63006 19501 14652 31505 Face 63007 13576 31506 24052 Face 63008 13576 46291 31506 Face 63009 24403 31507 33540 Face 63010 40478 22071 31507 Face 63011 43793 31508 18966 Face 63012 12124 2087 31508 Face 63013 12397 31509 37402 Face 63014 12397 48602 31509 Face 63015 43079 31510 3071 Face 63016 1868 40236 31510 Face 63017 49193 31511 5956 Face 63018 41654 21857 31511 Face 63019 7574 31512 49835 Face 63020 49912 10625 31512 Face 63021 6396 31513 16888 Face 63022 6396 40346 31513 Face 63023 21960 31514 41221 Face 63024 21960 48400 31514 Face 63025 6219 31515 21198 Face 63026 44951 18128 31515 Face 63027 21067 31516 45783 Face 63028 21067 27549 31516 Face 63029 32573 31517 13819 Face 63030 7724 30762 31517 Face 63031 3362 31518 30416 Face 63032 3362 21670 31518 Face 63033 3740 31519 8706 Face 63034 3740 43681 31519 Face 63035 12476 31520 33907 Face 63036 12476 49183 31520 Face 63037 21015 31521 25435 Face 63038 21015 37675 31521 Face 63039 4217 31522 2402 Face 63040 4217 25221 31522 Face 63041 8838 31523 11583 Face 63042 8838 1643 31523 Face 63043 2705 31524 16359 Face 63044 2705 47676 31524 Face 63045 9710 31525 3655 Face 63046 9710 48707 31525 Face 63047 40173 31526 6948 Face 63048 5723 30077 31526 Face 63049 5141 31527 18442 Face 63050 5141 23393 31527 Face 63051 12540 31528 1612 Face 63052 12540 7927 31528 Face 63053 41087 31529 13026 Face 63054 13027 30434 31529 Face 63055 8031 31530 44029 Face 63056 8031 30538 31530 Face 63057 5832 31531 28134 Face 63058 5832 23938 31531 Face 63059 236 31532 34288 Face 63060 236 29244 31532 Face 63061 236 31533 10206 Face 63062 236 15175 31533 Face 63063 6590 31534 47064 Face 63064 6590 39348 31534 Face 63065 6157 31535 17590 Face 63066 6157 12185 31535 Face 63067 4738 31536 20433 Face 63068 4738 33148 31536 Face 63069 34105 31537 35771 Face 63070 4738 17879 31537 Face 63071 2880 31538 29901 Face 63072 2880 31015 31538 Face 63073 533 48827 11568 Face 63074 533 30127 31539 Face 63075 17129 31540 31751 Face 63076 17129 10313 31540 Face 63077 41307 31541 17300 Face 63078 2381 27206 31541 Face 63079 6129 31542 45585 Face 63080 6129 28988 31542 Face 63081 12592 31543 46255 Face 63082 12592 36061 31543 Face 63083 4967 31544 21732 Face 63084 4967 46653 31544 Face 63085 14361 31545 32515 Face 63086 14361 41089 31545 Face 63087 13686 31546 2830 Face 63088 13686 18562 31546 Face 63089 18387 31547 7532 Face 63090 18387 1742 31547 Face 63091 15747 31548 9619 Face 63092 15747 31233 31548 Face 63093 10188 31549 6300 Face 63094 10188 21198 31549 Face 63095 9187 31550 7163 Face 63096 9187 44276 31550 Face 63097 26149 31551 21645 Face 63098 26149 45072 31551 Face 63099 32442 31552 21246 Face 63100 1301 44123 31552 Face 63101 1347 31553 9701 Face 63102 1347 47738 31553 Face 63103 12731 31554 28196 Face 63104 12731 44224 31554 Face 63105 8186 31555 48302 Face 63106 8186 19419 31555 Face 63107 6802 31556 33816 Face 63108 6802 25176 31556 Face 63109 31558 31557 7048 Face 63110 35921 4039 31557 Face 63111 33934 31558 7048 Face 63112 3865 31557 31558 Face 63113 10759 31559 23924 Face 63114 10759 18416 31559 Face 63115 35175 31560 1769 Face 63116 35175 19804 31560 Face 63117 17974 31561 6267 Face 63118 17974 19953 31561 Face 63119 7210 31562 21512 Face 63120 7210 13100 31562 Face 63121 46685 31563 36730 Face 63122 10225 11406 31563 Face 63123 897 31564 18596 Face 63124 897 28008 31564 Face 63125 6849 31565 13989 Face 63126 6849 36706 31565 Face 63127 7324 31566 25163 Face 63128 7324 16241 31566 Face 63129 14539 31567 30766 Face 63130 14539 40953 31567 Face 63131 4887 31568 27339 Face 63132 4887 41183 31568 Face 63133 9239 31569 25003 Face 63134 9239 23163 43823 Face 63135 4401 31570 4402 Face 63136 4401 34246 31570 Face 63137 5008 31571 20004 Face 63138 5008 16638 31571 Face 63139 19731 31572 4445 Face 63140 19731 40795 31572 Face 63141 10195 31573 19591 Face 63142 10195 22231 31573 Face 63143 24429 31574 4490 Face 63144 24429 18144 31574 Face 63145 19952 31575 6636 Face 63146 19952 1933 31575 Face 63147 49567 31576 14103 Face 63148 12707 18545 31576 Face 63149 29889 31577 44139 Face 63150 29889 18805 31577 Face 63151 15908 31578 2654 Face 63152 15908 24888 31578 Face 63153 4925 48254 8047 Face 63154 46836 14389 31579 Face 63155 31581 31580 26119 Face 63156 11263 2357 31580 Face 63157 11263 31581 33655 Face 63158 11263 31580 31581 Face 63159 15014 31582 36623 Face 63160 49154 33080 31582 Face 63161 3731 31583 29681 Face 63162 31585 20661 31583 Face 63163 45939 31584 17631 Face 63164 45939 20016 31584 Face 63165 3731 31585 31583 Face 63166 3731 17631 31585 Face 63167 928 31586 5843 Face 63168 928 34826 31586 Face 63169 934 31587 40599 Face 63170 934 21218 31587 Face 63171 14406 31588 30632 Face 63172 14406 36173 31588 Face 63173 5778 31589 40574 Face 63174 5778 13780 31589 Face 63175 8785 31590 33589 Face 63176 8785 36379 31590 Face 63177 617 31591 34995 Face 63178 617 24231 31591 Face 63179 11479 31592 24818 Face 63180 46227 17712 31592 Face 63181 22617 31593 32761 Face 63182 48407 36417 31593 Face 63183 11715 31594 10884 Face 63184 11715 15721 31594 Face 63185 4538 31595 41934 Face 63186 4538 27705 31595 Face 63187 20077 48819 41125 Face 63188 20077 40194 31596 Face 63189 6830 31597 36757 Face 63190 6830 28499 31597 Face 63191 2782 31598 22827 Face 63192 2782 48285 31598 Face 63193 740 31599 32946 Face 63194 740 30918 31599 Face 63195 31601 31600 49534 Face 63196 1743 17768 31600 Face 63197 35580 31601 6278 Face 63198 1743 31600 31601 Face 63199 4699 31602 19268 Face 63200 4699 30542 31602 Face 63201 16564 31603 3795 Face 63202 16564 2430 31603 Face 63203 2193 31604 47083 Face 63204 2193 19514 31604 Face 63205 3118 31605 30109 Face 63206 3118 35508 31605 Face 63207 17271 31606 36197 Face 63208 17271 2476 31606 Face 63209 7264 31607 1805 Face 63210 7264 24482 31607 Face 63211 6085 31608 1921 Face 63212 6085 15439 31608 Face 63213 19913 31609 24810 Face 63214 19913 9509 31609 Face 63215 28882 31610 14495 Face 63216 28882 35370 31610 Face 63217 5965 31611 17864 Face 63218 5965 36010 31611 Face 63219 1951 31612 20953 Face 63220 31613 31614 31612 Face 63221 1951 31613 31612 Face 63222 1951 10392 31613 Face 63223 10809 31614 31613 Face 63224 10809 15838 31614 Face 63225 9063 31615 46216 Face 63226 9063 22514 31615 Face 63227 12266 31616 44420 Face 63228 12266 41029 31616 Face 63229 12266 31617 29593 Face 63230 12266 42161 31617 Face 63231 22703 31618 31617 Face 63232 22703 11362 31618 Face 63233 8259 31619 21850 Face 63234 8259 42949 31619 Face 63235 13579 43817 24091 Face 63236 13579 24079 31620 Face 63237 7053 31621 24477 Face 63238 47612 18778 31621 Face 63239 25453 31622 10943 Face 63240 25453 27479 31622 Face 63241 7005 31623 19408 Face 63242 7005 24533 31623 Face 63243 45674 31624 39255 Face 63244 8633 18372 31624 Face 63245 6364 31625 37591 Face 63246 6364 10836 31625 Face 63247 14399 31626 19645 Face 63248 14399 1647 31626 Face 63249 8303 31627 36324 Face 63250 8303 1096 31627 Face 63251 9616 31628 1127 Face 63252 46597 19486 31628 Face 63253 16628 31629 3557 Face 63254 16628 4901 31629 Face 63255 33657 31630 40764 Face 63256 31631 19312 31630 Face 63257 14569 31631 31630 Face 63258 14569 14571 31631 Face 63259 8823 49773 26325 Face 63260 8823 40631 31632 Face 63261 3663 47048 29153 Face 63262 46881 23150 31633 Face 63263 20416 31634 27555 Face 63264 20416 41434 31634 Face 63265 43214 31635 23982 Face 63266 1064 11697 31635 Face 63267 24881 31636 14835 Face 63268 24881 11380 31636 Face 63269 4573 31637 29060 Face 63270 4573 41817 31637 Face 63271 4165 31638 22051 Face 63272 4165 20330 31638 Face 63273 1895 31639 19519 Face 63274 1895 16262 31639 Face 63275 4783 31640 15063 Face 63276 4783 43951 31640 Face 63277 6849 31641 36706 Face 63278 6849 13990 31641 Face 63279 5074 41313 16447 Face 63280 5074 39816 41313 Face 63281 3493 31643 27252 Face 63282 3493 44233 31643 Face 63283 7118 31644 35790 Face 63284 45898 1421 31644 Face 63285 13344 31645 10911 Face 63286 13344 35277 31645 Face 63287 18373 31646 9508 Face 63288 18373 31609 31646 Face 63289 445 31647 35538 Face 63290 445 3041 49841 Face 63291 18589 31648 29159 Face 63292 18589 38184 31648 Face 63293 40396 31649 7026 Face 63294 19627 13091 31649 Face 63295 37691 31650 13799 Face 63296 4213 16811 31650 Face 63297 8850 31651 22222 Face 63298 8850 44553 31651 Face 63299 2479 31652 30370 Face 63300 2479 12676 31652 Face 63301 6548 31653 33868 Face 63302 6548 44055 31653 Face 63303 19 31654 29712 Face 63304 47076 29727 31654 Face 63305 45450 31655 21158 Face 63306 45450 16057 31655 Face 63307 31655 31656 21158 Face 63308 39321 42663 31656 Face 63309 31658 31657 20518 Face 63310 2668 9176 31657 Face 63311 2668 44910 14948 Face 63312 2668 31657 31658 Face 63313 34371 31659 20761 Face 63314 49251 35493 31659 Face 63315 31661 31660 47660 Face 63316 8885 9542 31660 Face 63317 8885 31661 21151 Face 63318 8885 31660 31661 Face 63319 11809 31662 49226 Face 63320 41182 9377 31662 Face 63321 16089 31663 29105 Face 63322 16089 16090 31663 Face 63323 31665 31664 16115 Face 63324 19916 771 42676 Face 63325 19916 31665 42296 Face 63326 19916 31664 31665 Face 63327 35705 31666 10813 Face 63328 481 32874 31666 Face 63329 1004 31667 9760 Face 63330 39500 22936 31667 Face 63331 1624 31668 5284 Face 63332 42953 10156 31668 Face 63333 13294 31669 46700 Face 63334 37716 28620 31669 Face 63335 3742 31670 49472 Face 63336 3742 28319 31670 Face 63337 20283 31671 34668 Face 63338 33852 1977 31671 Face 63339 48506 31672 377 Face 63340 48506 7633 31672 Face 63341 9540 31673 22702 Face 63342 9540 8109 31673 Face 63343 31675 31674 40323 Face 63344 10690 27251 31674 Face 63345 10690 31675 49461 Face 63346 10690 31674 31675 Face 63347 49806 31676 16356 Face 63348 2488 40429 31676 Face 63349 1572 31677 25247 Face 63350 1572 13423 31677 Face 63351 5172 31678 27184 Face 63352 5172 19974 31678 Face 63353 18851 31679 22458 Face 63354 18851 44567 31679 Face 63355 283 31680 47875 Face 63356 283 21417 31680 Face 63357 6159 31681 29842 Face 63358 36396 14416 31681 Face 63359 2182 31682 16649 Face 63360 2182 46960 48723 Face 63361 6037 31683 26396 Face 63362 6037 34479 31683 Face 63363 33973 31684 12691 Face 63364 23026 49547 31684 Face 63365 1979 31685 36305 Face 63366 1979 41967 31685 Face 63367 28974 31686 33408 Face 63368 28974 27950 31686 Face 63369 14102 31687 35039 Face 63370 14102 22967 31687 Face 63371 3475 31688 29746 Face 63372 3475 17412 31688 Face 63373 4321 31689 27569 Face 63374 4321 17339 31689 Face 63375 725 31690 37161 Face 63376 725 43878 31690 Face 63377 14485 31691 20552 Face 63378 14485 2792 31691 Face 63379 32768 31692 7101 Face 63380 3347 45850 31692 Face 63381 8374 31693 13917 Face 63382 8374 23647 31693 Face 63383 17138 31694 7365 Face 63384 17138 1443 31694 Face 63385 4503 31695 29972 Face 63386 4503 18245 31695 Face 63387 1112 31696 31013 Face 63388 1112 13828 31696 Face 63389 18152 31697 29974 Face 63390 18152 20956 31697 Face 63391 49033 31698 5877 Face 63392 6845 25335 31698 Face 63393 3664 31699 11162 Face 63394 3664 4859 31699 Face 63395 18877 31700 16847 Face 63396 18877 36899 31700 Face 63397 4062 31701 34005 Face 63398 4062 16149 31701 Face 63399 21119 31702 22308 Face 63400 21119 7081 31702 Face 63401 9818 31703 22345 Face 63402 9818 29443 31703 Face 63403 7833 31704 42779 Face 63404 7833 45669 31704 Face 63405 1730 31705 3426 Face 63406 1730 28285 31705 Face 63407 17727 31706 46305 Face 63408 17727 5961 31706 Face 63409 8854 31707 23637 Face 63410 31708 8852 31707 Face 63411 8854 31708 31707 Face 63412 8854 48961 31708 Face 63413 15436 31709 21723 Face 63414 15436 22191 31709 Face 63415 2426 31710 13684 Face 63416 2426 23463 31710 Face 63417 31712 31711 24481 Face 63418 818 18988 31711 Face 63419 818 31712 5826 Face 63420 818 31711 31712 Face 63421 36499 31713 31738 Face 63422 10623 32098 31713 Face 63423 9048 31714 28448 Face 63424 9048 24604 31714 Face 63425 6269 31715 11979 Face 63426 6269 35289 31715 Face 63427 4459 31716 10038 Face 63428 36584 47175 31716 Face 63429 22444 31717 47446 Face 63430 35882 27356 31717 Face 63431 6750 31718 25469 Face 63432 6750 27651 31718 Face 63433 42980 31719 41954 Face 63434 42979 40265 31719 Face 63435 40516 31720 8142 Face 63436 15629 12505 48262 Face 63437 2518 31721 21839 Face 63438 36691 36622 31725 Face 63439 12137 36622 36691 Face 63440 12137 30669 31722 Face 63441 31724 48583 10334 Face 63442 31722 20548 48583 Face 63443 36622 31724 31725 Face 63444 36622 31723 31724 Face 63445 31721 31725 31724 Face 63446 31721 2518 31725 Face 63447 7488 31726 9872 Face 63448 7488 44887 31726 Face 63449 9383 31727 23967 Face 63450 9383 47691 31727 Face 63451 10142 31728 39782 Face 63452 36174 15581 41977 Face 63453 4790 31729 6744 Face 63454 4790 33793 31729 Face 63455 12899 43939 40420 Face 63456 12899 46869 31730 Face 63457 8141 31731 317 Face 63458 8141 39985 31731 Face 63459 11302 31732 8691 Face 63460 11302 20614 31732 Face 63461 4859 31733 17736 Face 63462 4859 24574 31733 Face 63463 40286 31734 28283 Face 63464 2494 19513 31734 Face 63465 14370 31735 24876 Face 63466 14370 7783 31735 Face 63467 17374 31736 39667 Face 63468 17374 22234 31736 Face 63469 4566 31737 28769 Face 63470 4566 36636 31737 Face 63471 48259 31738 31713 Face 63472 5704 25406 31738 Face 63473 84 31739 18823 Face 63474 84 10461 31739 Face 63475 7524 31740 15615 Face 63476 39084 10534 31740 Face 63477 11229 31741 34983 Face 63478 11229 9526 31741 Face 63479 5768 31742 23204 Face 63480 5768 46614 31742 Face 63481 4581 31743 16551 Face 63482 4581 48637 31743 Face 63483 1010 31744 42780 Face 63484 1010 22704 31744 Face 63485 13346 31745 28335 Face 63486 13346 3622 31745 Face 63487 13179 31746 9966 Face 63488 13179 10319 31746 Face 63489 12858 31747 38386 Face 63490 12858 20758 31747 Face 63491 16652 31748 5188 Face 63492 16652 2459 31748 Face 63493 38070 31749 9866 Face 63494 38070 3760 31749 Face 63495 8292 31750 26166 Face 63496 8292 31774 31750 Face 63497 4007 31751 31540 Face 63498 4007 45920 31751 Face 63499 5091 31752 31842 Face 63500 5091 43367 31752 Face 63501 14389 31753 12697 Face 63502 14389 23695 31753 Face 63503 10251 31754 10001 Face 63504 10251 31690 31754 Face 63505 41024 31755 19441 Face 63506 31756 47739 31755 Face 63507 8011 31756 31755 Face 63508 8011 30575 31756 Face 63509 12776 31757 47849 Face 63510 12776 30781 31757 Face 63511 1009 31758 6586 Face 63512 1009 30024 31758 Face 63513 786 31759 19862 Face 63514 786 15268 31759 Face 63515 8484 31760 13415 Face 63516 8484 26034 31760 Face 63517 31762 31761 49018 Face 63518 31762 48460 31761 Face 63519 1919 31762 17377 Face 63520 1919 29449 31762 Face 63521 42157 31763 31428 Face 63522 42158 38463 31763 Face 63523 11163 31764 30314 Face 63524 11163 41112 31764 Face 63525 13724 31765 264 Face 63526 13724 25696 31765 Face 63527 3646 31766 33913 Face 63528 3646 24334 31766 Face 63529 3758 31767 39299 Face 63530 3758 17065 31767 Face 63531 39689 31768 9882 Face 63532 5950 19739 48840 Face 63533 16976 31769 37203 Face 63534 16976 10077 31769 Face 63535 3835 31770 13160 Face 63536 3835 22516 31770 Face 63537 12218 31771 36609 Face 63538 12218 26473 31771 Face 63539 6967 31772 30260 Face 63540 6967 45958 31772 Face 63541 28901 31773 14055 Face 63542 28901 40588 31773 Face 63543 35631 31774 30648 Face 63544 10168 31750 31774 Face 63545 22564 31775 496 Face 63546 22564 12795 31775 Face 63547 16300 31776 14199 Face 63548 16300 44678 31776 Face 63549 31778 31777 21412 Face 63550 42741 4967 31777 Face 63551 277 31778 21412 Face 63552 277 48719 31778 Face 63553 23469 31779 38628 Face 63554 23469 24550 31779 Face 63555 8371 31780 42648 Face 63556 8371 43160 31780 Face 63557 14740 31781 7769 Face 63558 14740 42370 31781 Face 63559 24952 31782 490 Face 63560 24952 43697 31782 Face 63561 40130 31783 19377 Face 63562 878 8400 31783 Face 63563 10695 31784 2733 Face 63564 10695 28949 31784 Face 63565 6204 31785 17786 Face 63566 6204 26111 31785 Face 63567 11174 31786 27478 Face 63568 11174 19932 31786 Face 63569 46955 31787 9919 Face 63570 46955 19947 31787 Face 63571 1373 31788 24572 Face 63572 42214 13589 31788 Face 63573 13331 31789 43622 Face 63574 13331 33161 31789 Face 63575 8616 31790 14683 Face 63576 8616 31115 31790 Face 63577 46953 31791 13663 Face 63578 44557 30008 31791 Face 63579 2380 31792 45639 Face 63580 31931 8490 31792 Face 63581 48073 31793 19217 Face 63582 7688 22415 31793 Face 63583 3304 31794 36664 Face 63584 3304 37189 31794 Face 63585 17581 31795 28372 Face 63586 17581 25251 31795 Face 63587 49215 31796 30404 Face 63588 49214 28242 31796 Face 63589 11793 31797 141 Face 63590 11793 9353 31797 Face 63591 26402 31798 2592 Face 63592 26402 7983 31798 Face 63593 2445 31799 36692 Face 63594 2445 18209 31799 Face 63595 1832 38767 17017 Face 63596 1832 10398 31800 Face 63597 9559 31801 27039 Face 63598 9559 15473 31801 Face 63599 31827 31802 45994 Face 63600 4027 47591 31802 Face 63601 1719 31803 32280 Face 63602 1719 47081 36378 Face 63603 34131 31804 47469 Face 63604 11447 35718 49933 Face 63605 11651 31805 7829 Face 63606 11651 31806 31805 Face 63607 10146 31806 10145 Face 63608 10146 31805 31806 Face 63609 20052 31807 38647 Face 63610 20052 6896 31807 Face 63611 40876 31808 3208 Face 63612 8893 23396 31808 Face 63613 6017 31809 11519 Face 63614 6017 47307 31809 Face 63615 5254 31810 11681 Face 63616 5254 8353 31810 Face 63617 48915 31811 25557 Face 63618 1329 20775 31811 Face 63619 43316 31812 38317 Face 63620 5537 38633 31812 Face 63621 40675 31813 9964 Face 63622 31814 9805 31813 Face 63623 40675 31814 31813 Face 63624 18006 39763 31814 Face 63625 17081 31815 11823 Face 63626 17081 11822 31815 Face 63627 4113 31816 20975 Face 63628 4113 22314 31816 Face 63629 42828 31817 37596 Face 63630 7356 22110 31817 Face 63631 36237 31818 45844 Face 63632 11536 30171 31818 Face 63633 702 31819 20368 Face 63634 702 46928 31819 Face 63635 2718 31820 47348 Face 63636 2718 7655 31820 Face 63637 3350 31821 27428 Face 63638 3350 41556 31821 Face 63639 49515 31822 33891 Face 63640 13176 20247 31822 Face 63641 5885 31823 12742 Face 63642 5885 25843 31823 Face 63643 6142 31824 35124 Face 63644 47909 17945 31824 Face 63645 19474 31825 8487 Face 63646 19474 35999 31825 Face 63647 6732 31826 27986 Face 63648 6732 44493 31826 Face 63649 4027 31827 28592 Face 63650 4027 31802 31827 Face 63651 4027 31828 20693 Face 63652 4027 28592 31828 Face 63653 1203 31829 45101 Face 63654 1203 35688 31829 Face 63655 6254 31830 13938 Face 63656 6254 42899 46416 Face 63657 5163 31831 48143 Face 63658 5163 1805 31831 Face 63659 6821 31832 22276 Face 63660 48863 1067 31832 Face 63661 9225 31833 5883 Face 63662 9225 43504 31833 Face 63663 2559 31834 5856 Face 63664 42774 10065 31834 Face 63665 45723 31835 5535 Face 63666 14999 46869 31835 Face 63667 16455 31836 12682 Face 63668 16455 35961 31836 Face 63669 39069 31837 16045 Face 63670 39069 47289 31837 Face 63671 10397 31838 4051 Face 63672 10397 9329 31838 Face 63673 17441 31839 30644 Face 63674 17441 20957 31839 Face 63675 44943 31840 41956 Face 63676 41735 20380 31840 Face 63677 41760 31841 24226 Face 63678 12662 25357 31841 Face 63679 3450 31842 37192 Face 63680 3450 22778 31842 Face 63681 13083 31843 16046 Face 63682 13083 31892 31843 Face 63683 32447 31844 20520 Face 63684 7996 22300 31844 Face 63685 21940 31845 22286 Face 63686 21940 48441 31845 Face 63687 16086 31846 36189 Face 63688 16086 1305 31846 Face 63689 2080 31847 15503 Face 63690 2080 24029 31847 Face 63691 12404 31848 14433 Face 63692 31849 8107 31848 Face 63693 12404 31849 31848 Face 63694 12404 1125 31849 Face 63695 6878 31850 45117 Face 63696 6878 30932 31850 Face 63697 17645 31851 3606 Face 63698 17645 4683 31851 Face 63699 16436 31852 5098 Face 63700 16436 16437 31852 Face 63701 35293 31853 29168 Face 63702 35294 21442 31853 Face 63703 27494 31854 37512 Face 63704 27494 42238 31854 Face 63705 14978 31855 26689 Face 63706 14978 45173 31855 Face 63707 8041 31856 31436 Face 63708 38890 5366 31856 Face 63709 8744 31857 28342 Face 63710 8744 13320 31857 Face 63711 37731 31858 45160 Face 63712 9967 9968 31858 Face 63713 348 31859 45078 Face 63714 348 9018 31859 Face 63715 12949 31860 30241 Face 63716 12949 12948 31860 Face 63717 31862 31861 43785 Face 63718 42810 29066 31861 Face 63719 17347 31862 27936 Face 63720 42810 31861 31862 Face 63721 34246 31863 17621 Face 63722 34246 4401 31863 Face 63723 21995 31864 37569 Face 63724 21995 13180 31864 Face 63725 10399 31865 1460 Face 63726 10399 19541 31865 Face 63727 5044 31866 14440 Face 63728 5044 19768 31866 Face 63729 40175 31867 12271 Face 63730 9288 6326 31867 Face 63731 6326 31868 31867 Face 63732 6326 23884 31868 Face 63733 43699 31869 2250 Face 63734 25266 23079 31869 Face 63735 5198 31870 12222 Face 63736 5198 44386 31870 Face 63737 49611 31871 36674 Face 63738 13293 44947 31871 Face 63739 4872 31872 11685 Face 63740 4872 17809 31872 Face 63741 14762 31873 2227 Face 63742 14762 26806 31873 Face 63743 1802 31874 18743 Face 63744 1802 30044 31874 Face 63745 10083 31875 19586 Face 63746 10083 42393 31875 Face 63747 21273 31876 38656 Face 63748 21273 6099 31876 Face 63749 2213 31877 31471 Face 63750 2213 22549 31877 Face 63751 9617 31878 1391 Face 63752 9617 45445 31878 Face 63753 2139 31879 21372 Face 63754 2139 37324 31879 Face 63755 10483 31880 17438 Face 63756 10483 1623 31880 Face 63757 5560 39755 27856 Face 63758 5560 40443 31881 Face 63759 26557 31882 4355 Face 63760 26557 42297 31882 Face 63761 11232 31883 24111 Face 63762 31884 9930 31883 Face 63763 11232 31884 31883 Face 63764 11232 175 31884 Face 63765 4360 31885 14662 Face 63766 4360 5225 31885 Face 63767 20168 31886 13593 Face 63768 20168 9027 31886 Face 63769 34104 31887 20674 Face 63770 31888 14745 31887 Face 63771 2058 31888 31887 Face 63772 2058 7887 31888 Face 63773 5241 31889 21174 Face 63774 5241 21421 31889 Face 63775 9330 31890 23449 Face 63776 9330 35702 31890 Face 63777 2203 39719 27857 Face 63778 32218 21625 31891 Face 63779 15291 31892 39358 Face 63780 15291 212 31892 Face 63781 14934 31893 14089 Face 63782 14934 46153 31893 Face 63783 3339 31894 14056 Face 63784 3339 19504 31894 Face 63785 1549 31895 8830 Face 63786 1549 19198 31895 Face 63787 31897 31896 17267 Face 63788 31897 9806 31896 Face 63789 13314 31897 17267 Face 63790 13314 9806 31897 Face 63791 19637 31898 24410 Face 63792 19637 44980 31898 Face 63793 8154 31899 27401 Face 63794 8154 1864 31899 Face 63795 45301 31900 35786 Face 63796 10598 31959 31901 Face 63797 31900 31901 761 Face 63798 31900 10598 31901 Face 63799 20583 31902 46252 Face 63800 20583 41453 31902 Face 63801 9134 31903 19796 Face 63802 9134 21188 31903 Face 63803 45651 31904 6325 Face 63804 12434 2740 31904 Face 63805 2549 31905 21370 Face 63806 2549 12079 31905 Face 63807 7889 31906 22211 Face 63808 7889 30419 31906 Face 63809 29653 31907 6287 Face 63810 29653 43667 31907 Face 63811 42520 31908 20027 Face 63812 9915 48074 31908 Face 63813 6319 31909 4252 Face 63814 44989 22018 31909 Face 63815 2981 31910 45736 Face 63816 2981 10106 31910 Face 63817 5746 31911 42612 Face 63818 5746 28750 31911 Face 63819 29192 31912 40888 Face 63820 29192 15672 31912 Face 63821 18689 31913 33876 Face 63822 18689 11893 31913 Face 63823 14808 31914 17992 Face 63824 14808 19724 31914 Face 63825 705 31915 20234 Face 63826 705 12824 31915 Face 63827 47332 31916 7638 Face 63828 5389 25522 31916 Face 63829 5389 47332 5390 Face 63830 5389 31916 47332 Face 63831 5257 31918 21707 Face 63832 35895 17825 31918 Face 63833 19201 31919 7892 Face 63834 19201 43330 31919 Face 63835 22248 31920 8059 Face 63836 22248 49573 31920 Face 63837 21607 31921 15422 Face 63838 21607 22591 31921 Face 63839 45496 31922 22334 Face 63840 31923 43630 31922 Face 63841 45496 31923 31922 Face 63842 1042 14916 42760 Face 63843 2323 31924 34431 Face 63844 2323 47745 31924 Face 63845 3418 31925 41096 Face 63846 3418 8077 31925 Face 63847 18272 31926 22061 Face 63848 18272 14034 31926 Face 63849 33654 31927 8561 Face 63850 7956 24244 31927 Face 63851 12183 31928 36228 Face 63852 12183 49420 31928 Face 63853 19030 31929 24738 Face 63854 19030 27029 31929 Face 63855 3623 31930 47314 Face 63856 3623 28006 31930 Face 63857 2380 31931 31792 Face 63858 2380 31024 31931 Face 63859 47796 31932 1939 Face 63860 6928 12433 31932 Face 63861 41372 31933 35860 Face 63862 5550 11513 31933 Face 63863 6900 49398 25840 Face 63864 6900 45197 31934 Face 63865 14246 31935 41464 Face 63866 14246 46481 31935 Face 63867 13628 31936 37772 Face 63868 13628 19976 31936 Face 63869 9836 31937 48828 Face 63870 37756 28139 31937 Face 63871 31939 31938 1382 Face 63872 16682 6657 31938 Face 63873 16682 31939 124 Face 63874 16682 31938 31939 Face 63875 17632 31940 38469 Face 63876 17632 2513 31940 Face 63877 19315 31941 40925 Face 63878 19315 26125 31941 Face 63879 43384 31942 45342 Face 63880 2833 43237 31942 Face 63881 9775 31943 39116 Face 63882 9775 30146 31943 Face 63883 9056 31944 29245 Face 63884 9056 26251 31944 Face 63885 14242 31945 12101 Face 63886 14242 49983 31945 Face 63887 2619 31946 43940 Face 63888 2619 48237 31946 Face 63889 12015 31947 40983 Face 63890 12015 17205 31947 Face 63891 13134 31948 49802 Face 63892 13134 31032 31948 Face 63893 43836 31949 16394 Face 63894 59 13470 31949 Face 63895 8549 31950 19464 Face 63896 8549 36750 31950 Face 63897 4798 31951 10927 Face 63898 42314 10928 47959 Face 63899 5317 31952 20891 Face 63900 5317 13918 31952 Face 63901 160 31953 21693 Face 63902 160 42279 31953 Face 63903 8777 31954 47577 Face 63904 8777 29515 31954 Face 63905 1268 31955 21462 Face 63906 1268 12174 31955 Face 63907 12323 31956 28972 Face 63908 39944 30556 31956 Face 63909 15779 31957 37811 Face 63910 15779 6991 31957 Face 63911 36774 31958 14061 Face 63912 5314 40438 31958 Face 63913 9878 31959 10598 Face 63914 9878 46587 31959 Face 63915 218 31960 23905 Face 63916 218 24351 31960 Face 63917 43235 31961 16486 Face 63918 3436 18196 31961 Face 63919 15415 31962 47200 Face 63920 15415 14502 31962 Face 63921 29475 31963 4740 Face 63922 29475 7830 31963 Face 63923 11411 31964 30440 Face 63924 11411 29114 31964 Face 63925 35542 31965 17931 Face 63926 2241 10224 31965 Face 63927 23613 31966 19982 Face 63928 23613 45465 31966 Face 63929 22913 31967 3550 Face 63930 22913 4397 31967 Face 63931 635 31968 6443 Face 63932 635 31972 31968 Face 63933 635 31969 41772 Face 63934 635 29641 31969 Face 63935 21286 31970 42323 Face 63936 21286 1229 31970 Face 63937 156 31971 21908 Face 63938 156 41391 31971 Face 63939 37521 31972 5079 Face 63940 12546 31968 31972 Face 63941 8159 31973 30493 Face 63942 8159 13014 31973 Face 63943 37636 31974 11896 Face 63944 5338 23905 31974 Face 63945 2399 31975 34396 Face 63946 2399 11509 31975 Face 63947 10475 31976 20583 Face 63948 10475 8118 31976 Face 63949 17111 31977 24302 Face 63950 17111 17110 31977 Face 63951 11620 31978 3610 Face 63952 11620 31979 31978 Face 63953 15136 31979 3845 Face 63954 35838 31978 31979 Face 63955 13669 31980 35718 Face 63956 13669 4626 31980 Face 63957 31982 31981 1820 Face 63958 6890 35835 31981 Face 63959 42199 31982 33300 Face 63960 6890 31981 31982 Face 63961 10697 31983 26241 Face 63962 10697 22316 31983 Face 63963 12041 31984 25673 Face 63964 48365 27219 43038 Face 63965 15139 31985 15138 Face 63966 15139 2480 31985 Face 63967 3486 31986 17502 Face 63968 3486 29660 31986 Face 63969 45063 31987 20179 Face 63970 1135 48287 31987 Face 63971 2252 31988 41140 Face 63972 2252 15758 31988 Face 63973 6474 31989 12876 Face 63974 6474 4014 31989 Face 63975 4953 31990 20155 Face 63976 40029 24750 31990 Face 63977 19244 31991 22129 Face 63978 19244 13752 31991 Face 63979 6276 42974 31993 Face 63980 44972 24896 42974 Face 63981 38637 31993 31992 Face 63982 38637 43957 31993 Face 63983 8722 31994 25719 Face 63984 8722 20282 31994 Face 63985 19270 31995 9697 Face 63986 19270 2145 31995 Face 63987 31997 31996 34842 Face 63988 1744 48380 31996 Face 63989 31998 31997 48160 Face 63990 31998 31996 31997 Face 63991 1744 31998 10519 Face 63992 1744 31996 31998 Face 63993 15450 31999 26070 Face 63994 41298 2982 31999 Face 63995 40776 32000 18658 Face 63996 6542 22054 32000 Face 63997 7929 47021 44912 Face 63998 33636 7930 32001 Face 63999 8496 32002 29671 Face 64000 8496 35637 32002 Face 64001 40342 32003 30469 Face 64002 15775 23283 32003 Face 64003 11276 32004 1932 Face 64004 32005 3512 32004 Face 64005 11276 32005 32004 Face 64006 11276 39912 32005 Face 64007 332 32006 29599 Face 64008 332 18539 32006 Face 64009 332 32007 14785 Face 64010 332 29599 32007 Face 64011 36555 32008 10524 Face 64012 11007 45353 32008 Face 64013 14121 32009 28688 Face 64014 14121 22879 32009 Face 64015 46778 32010 21295 Face 64016 1520 41118 32010 Face 64017 1500 32011 35765 Face 64018 1500 23341 32011 Face 64019 11569 32012 7004 Face 64020 11569 25649 32012 Face 64021 1478 32013 29711 Face 64022 1478 18309 32013 Face 64023 3963 32014 8957 Face 64024 3963 29733 32014 Face 64025 7877 32015 15123 Face 64026 7877 30651 32015 Face 64027 4180 32016 30319 Face 64028 4180 28361 32016 Face 64029 5782 32017 19444 Face 64030 5782 36625 32017 Face 64031 11199 32018 453 Face 64032 11199 48872 32018 Face 64033 21459 32019 12634 Face 64034 21459 10920 32019 Face 64035 21428 32020 46478 Face 64036 41165 46534 32020 Face 64037 1747 32021 20026 Face 64038 40536 23357 32021 Face 64039 17321 32022 4123 Face 64040 17321 45178 32022 Face 64041 12262 41156 12076 Face 64042 12262 49419 32023 Face 64043 5972 32024 15863 Face 64044 5972 24948 32024 Face 64045 3798 32025 9258 Face 64046 3798 12532 32025 Face 64047 1530 32026 14020 Face 64048 1530 21536 32026 Face 64049 9026 32027 43820 Face 64050 9026 6052 32027 Face 64051 12782 32028 25779 Face 64052 12782 25509 32028 Face 64053 14327 32029 43888 Face 64054 14327 17600 32029 Face 64055 10239 32030 3730 Face 64056 10239 23247 32030 Face 64057 1587 32031 27050 Face 64058 1587 39124 32031 Face 64059 32699 32032 20568 Face 64060 2025 18967 32032 Face 64061 14020 32033 1530 Face 64062 14020 19565 32033 Face 64063 8335 32034 23688 Face 64064 43642 1639 32034 Face 64065 10057 32035 30306 Face 64066 10057 3355 32035 Face 64067 2007 32036 13267 Face 64068 2007 47770 32036 Face 64069 34093 32037 21884 Face 64070 5667 14170 32037 Face 64071 12786 32038 46285 Face 64072 12786 25127 32038 Face 64073 12505 32039 9076 Face 64074 12505 30725 32039 Face 64075 12655 32040 42823 Face 64076 12655 24273 32040 Face 64077 2800 32041 13244 Face 64078 2800 18113 32041 Face 64079 3320 32042 30959 Face 64080 3320 23930 32042 Face 64081 32044 32043 43331 Face 64082 830 18252 32043 Face 64083 830 32044 29755 Face 64084 830 32043 32044 Face 64085 8596 32045 43602 Face 64086 8596 45893 32045 Face 64087 15527 46462 26092 Face 64088 15527 47743 32046 Face 64089 23628 32047 26509 Face 64090 23628 10655 32047 Face 64091 8745 32048 19055 Face 64092 8745 3258 32048 Face 64093 9648 32049 43181 Face 64094 9648 42063 32049 Face 64095 16212 32050 17717 Face 64096 16212 5362 32050 Face 64097 7769 32051 14740 Face 64098 7769 36294 32051 Face 64099 12224 32052 19250 Face 64100 12224 23244 32052 Face 64101 10154 32053 33030 Face 64102 32193 5529 44537 Face 64103 1303 32054 16311 Face 64104 1303 26455 32054 Face 64105 1364 32055 46226 Face 64106 1364 11920 32055 Face 64107 1364 32056 13397 Face 64108 1364 13055 32056 Face 64109 3088 32057 48824 Face 64110 3088 17756 32057 Face 64111 26077 32058 12384 Face 64112 26077 3323 32058 Face 64113 11386 32059 14528 Face 64114 11386 28828 32059 Face 64115 10257 32060 19059 Face 64116 10257 4902 32060 Face 64117 45213 32061 36894 Face 64118 19869 2011 32061 Face 64119 16441 32062 10041 Face 64120 16441 5400 32062 Face 64121 5275 32063 21618 Face 64122 5275 13858 32063 Face 64123 22990 32064 4220 Face 64124 22990 42890 32064 Face 64125 5730 32065 18788 Face 64126 5730 31381 32065 Face 64127 14101 32066 20343 Face 64128 14101 30591 32066 Face 64129 14959 32067 43920 Face 64130 46333 18993 32067 Face 64131 15907 32068 42156 Face 64132 15907 4999 32068 Face 64133 8784 45829 18593 Face 64134 8784 35033 32069 Face 64135 11759 32070 17659 Face 64136 11759 30550 32070 Face 64137 9467 32071 21956 Face 64138 9467 16706 32071 Face 64139 11701 32072 28053 Face 64140 11701 1766 32072 Face 64141 5880 32073 22195 Face 64142 5880 22127 32073 Face 64143 49917 32074 25651 Face 64144 49917 18718 32074 Face 64145 9741 32075 18587 Face 64146 9741 27545 32075 Face 64147 4911 32076 11229 Face 64148 47123 29226 32076 Face 64149 8530 32077 27673 Face 64150 39745 43953 32077 Face 64151 7086 32078 39443 Face 64152 7086 27139 32078 Face 64153 13830 32079 10702 Face 64154 13830 26528 32079 Face 64155 32657 32080 12410 Face 64156 6457 2036 32080 Face 64157 4763 32081 36872 Face 64158 4763 23035 32081 Face 64159 436 34816 47009 Face 64160 436 12580 32082 Face 64161 6540 32083 48655 Face 64162 6540 20102 32083 Face 64163 3813 32084 10890 Face 64164 3813 6725 32084 Face 64165 23678 32085 23677 Face 64166 23678 35655 32085 Face 64167 4595 32086 34013 Face 64168 46253 7022 32086 Face 64169 14390 32087 37321 Face 64170 14390 19723 32087 Face 64171 2715 32088 37688 Face 64172 2715 26038 32088 Face 64173 18429 32089 3058 Face 64174 18429 13288 32089 Face 64175 15456 32090 17753 Face 64176 15456 37760 32090 Face 64177 6039 32091 24654 Face 64178 6039 12029 32091 Face 64179 22756 32092 43680 Face 64180 22756 4523 32092 Face 64181 42844 32093 13979 Face 64182 45324 39744 32093 Face 64183 45534 48280 26348 Face 64184 32095 9088 32094 Face 64185 3701 32095 32094 Face 64186 48656 44911 32095 Face 64187 18523 32096 10248 Face 64188 18523 9521 32096 Face 64189 19321 32097 7144 Face 64190 19321 19319 32097 Face 64191 2072 32098 25237 Face 64192 2072 16707 32098 Face 64193 1428 32099 4878 Face 64194 1428 41913 32099 Face 64195 16377 32100 23923 Face 64196 16377 33036 43434 Face 64197 1571 32101 43368 Face 64198 1571 23740 32101 Face 64199 14136 32102 44684 Face 64200 33969 17531 32102 Face 64201 22813 32103 25900 Face 64202 22813 9786 32103 Face 64203 13779 32104 43710 Face 64204 13779 22338 32104 Face 64205 9269 32105 4254 Face 64206 9269 33812 32105 Face 64207 894 49425 26243 Face 64208 894 26421 32106 Face 64209 17143 32107 488 Face 64210 17143 2420 32107 Face 64211 37701 32108 384 Face 64212 20979 22436 32108 Face 64213 23157 32109 29585 Face 64214 23157 36226 32109 Face 64215 2435 49454 43760 Face 64216 48375 1874 32110 Face 64217 5552 32111 1379 Face 64218 39904 17278 32111 Face 64219 11260 32112 37031 Face 64220 11260 18520 32112 Face 64221 1930 32113 19170 Face 64222 45953 23450 32113 Face 64223 6016 32114 677 Face 64224 6016 47307 32114 Face 64225 13875 32115 248 Face 64226 13875 1754 32115 Face 64227 60 32116 11521 Face 64228 60 49337 32116 Face 64229 16415 32117 22418 Face 64230 16415 8124 32117 Face 64231 6846 32118 31937 Face 64232 6846 12106 32118 Face 64233 17594 47802 3144 Face 64234 17594 22678 32119 Face 64235 17594 32120 45705 Face 64236 17594 43179 32120 Face 64237 4773 32121 39502 Face 64238 4773 27487 32121 Face 64239 25986 32122 2937 Face 64240 25986 16243 32122 Face 64241 41727 32123 18723 Face 64242 392 33769 32123 Face 64243 14029 32124 43994 Face 64244 49655 29210 32124 Face 64245 40163 32125 21119 Face 64246 9300 25285 32125 Face 64247 13398 32126 7260 Face 64248 13398 28738 32126 Face 64249 6860 32127 2567 Face 64250 6860 45854 32127 Face 64251 7440 32128 18720 Face 64252 7440 24345 32128 Face 64253 14866 32129 11159 Face 64254 14866 3076 32129 Face 64255 9924 32130 26055 Face 64256 45482 1237 32130 Face 64257 15001 32131 34639 Face 64258 32132 2085 32131 Face 64259 15001 32132 32131 Face 64260 15001 3512 32132 Face 64261 21946 37889 80 Face 64262 21946 38212 32133 Face 64263 16619 32134 41507 Face 64264 16619 13352 32134 Face 64265 17610 32135 25132 Face 64266 17610 48376 32135 Face 64267 18557 32136 47684 Face 64268 18557 5681 32136 Face 64269 6354 32137 8822 Face 64270 6354 13038 32137 Face 64271 6735 32138 10634 Face 64272 6735 24023 49867 Face 64273 14811 32139 23674 Face 64274 40832 9748 32139 Face 64275 1835 32140 48953 Face 64276 45465 23613 32140 Face 64277 47624 32141 2220 Face 64278 5228 25153 32141 Face 64279 37604 32142 10277 Face 64280 32143 6608 32142 Face 64281 5090 32143 32142 Face 64282 5090 13570 32143 Face 64283 42231 32144 4723 Face 64284 42231 46627 32144 Face 64285 29107 32145 13800 Face 64286 29107 9825 32145 Face 64287 43556 32146 17169 Face 64288 43556 24869 32146 Face 64289 559 32147 28162 Face 64290 559 30754 32147 Face 64291 5019 32148 2044 Face 64292 5019 26012 32148 Face 64293 805 32149 19970 Face 64294 805 25899 32149 Face 64295 5857 32150 14463 Face 64296 5857 24467 32150 Face 64297 5201 32151 11565 Face 64298 5201 40674 32151 Face 64299 1107 32152 24512 Face 64300 1107 41349 32152 Face 64301 44365 32153 2002 Face 64302 3523 20806 32153 Face 64303 46348 32154 9957 Face 64304 7216 28968 32154 Face 64305 16153 32155 28670 Face 64306 16153 41511 32155 Face 64307 16153 32156 38352 Face 64308 16153 281 32156 Face 64309 44490 32157 7489 Face 64310 8855 21300 32157 Face 64311 11741 32158 37334 Face 64312 44036 23245 32158 Face 64313 17488 32159 31861 Face 64314 17488 25333 32159 Face 64315 7545 32160 34314 Face 64316 7545 36301 32160 Face 64317 2257 32161 10048 Face 64318 49751 12545 32161 Face 64319 47978 32162 47163 Face 64320 10230 4618 32162 Face 64321 22260 32163 14434 Face 64322 22260 22259 32163 Face 64323 3642 32164 36193 Face 64324 48105 18105 32164 Face 64325 23842 32165 4816 Face 64326 23842 29528 32165 Face 64327 32167 32166 44621 Face 64328 32167 27871 32166 Face 64329 5117 32167 22946 Face 64330 5117 27871 32167 Face 64331 5460 32168 18775 Face 64332 5460 21384 32168 Face 64333 12402 32169 30925 Face 64334 12402 22961 32169 Face 64335 20968 32170 28599 Face 64336 20968 43945 32170 Face 64337 2193 32171 40019 Face 64338 2193 47083 32171 Face 64339 1013 32172 36011 Face 64340 1013 10640 32172 Face 64341 7366 32173 45986 Face 64342 7366 20277 32173 Face 64343 3827 32174 23969 Face 64344 3827 12411 32174 Face 64345 17 32175 5806 Face 64346 34159 2793 32175 Face 64347 4192 32176 41712 Face 64348 4192 22750 32176 Face 64349 5769 32177 26813 Face 64350 5769 10979 48546 Face 64351 380 32178 48880 Face 64352 380 21231 32178 Face 64353 16282 32179 23994 Face 64354 16282 5476 32179 Face 64355 15295 32180 41468 Face 64356 15295 19591 32180 Face 64357 6941 32181 31045 Face 64358 6941 35833 32181 Face 64359 29463 47732 19685 Face 64360 29463 33711 32182 Face 64361 8582 32183 2362 Face 64362 8582 39568 32183 Face 64363 11354 32184 3636 Face 64364 11354 45346 32184 Face 64365 13483 32185 28063 Face 64366 13483 8873 32185 Face 64367 13914 32186 5435 Face 64368 13914 8405 32186 Face 64369 6373 32187 15031 Face 64370 6373 29173 32187 Face 64371 47343 32188 13740 Face 64372 5933 34865 32188 Face 64373 11600 32189 26202 Face 64374 11600 25329 32189 Face 64375 15194 44471 29316 Face 64376 15194 36830 32190 Face 64377 2244 32191 5606 Face 64378 2244 30016 32191 Face 64379 32193 32192 49450 Face 64380 32194 47196 32192 Face 64381 10154 32193 32053 Face 64382 10154 32192 32193 Face 64383 10154 32194 32192 Face 64384 10154 5136 32194 Face 64385 10709 32195 39090 Face 64386 10709 21979 32195 Face 64387 846 32196 23374 Face 64388 846 31091 32196 Face 64389 12884 32197 40678 Face 64390 12884 41554 32197 Face 64391 8131 32198 29213 Face 64392 42098 20716 32198 Face 64393 16755 32199 8637 Face 64394 16755 35252 32199 Face 64395 692 32200 16894 Face 64396 692 33917 32200 Face 64397 14738 32201 29897 Face 64398 38535 626 32201 Face 64399 2940 32202 11553 Face 64400 2940 35310 32202 Face 64401 8025 32203 16447 Face 64402 8025 40411 32203 Face 64403 1155 32204 12584 Face 64404 1155 11479 32204 Face 64405 1725 42319 7147 Face 64406 1725 32135 32205 Face 64407 8982 32206 26456 Face 64408 37779 18732 32206 Face 64409 16699 32207 31317 Face 64410 16699 47707 32207 Face 64411 12390 32208 10745 Face 64412 48418 1197 32208 Face 64413 13619 32209 20433 Face 64414 13619 37848 32209 Face 64415 18267 32210 44892 Face 64416 18267 5849 32210 Face 64417 7724 32211 30763 Face 64418 7724 37701 32211 Face 64419 16826 32212 16827 Face 64420 16826 46649 32212 Face 64421 38487 32213 4578 Face 64422 8454 23650 32213 Face 64423 6246 32214 2847 Face 64424 6246 29164 32214 Face 64425 5986 32215 16963 Face 64426 5986 20595 32215 Face 64427 13498 32216 29246 Face 64428 13498 9865 32216 Face 64429 3251 32217 29239 Face 64430 3251 34366 32217 Face 64431 2203 32218 39719 Face 64432 2203 27348 32218 Face 64433 2015 32219 14673 Face 64434 2015 16009 32219 Face 64435 32219 32220 14673 Face 64436 32219 45617 32220 Face 64437 4956 32221 14308 Face 64438 4956 14288 32221 Face 64439 5941 32222 22122 Face 64440 5941 15631 32222 Face 64441 5182 32223 26492 Face 64442 5182 11853 32223 Face 64443 728 32224 27635 Face 64444 728 17296 32224 Face 64445 10412 32225 42736 Face 64446 10412 24522 32225 Face 64447 6633 32226 44966 Face 64448 45642 11102 32226 Face 64449 2218 32227 36145 Face 64450 2218 12394 32227 Face 64451 11881 32228 18612 Face 64452 11881 2512 32228 Face 64453 45510 32229 35065 Face 64454 5497 42058 32229 Face 64455 7794 32230 17869 Face 64456 7794 31161 32230 Face 64457 20352 32231 41831 Face 64458 20352 46181 32231 Face 64459 6209 32232 18696 Face 64460 6209 7142 43487 Face 64461 46720 32233 20757 Face 64462 4733 24991 32233 Face 64463 5043 32234 37774 Face 64464 5043 29051 32234 Face 64465 5676 32235 29825 Face 64466 32236 19326 32235 Face 64467 5676 32236 32235 Face 64468 5676 3370 32236 Face 64469 18255 32237 1301 Face 64470 18255 38374 32237 Face 64471 6352 32238 10197 Face 64472 32239 21179 32238 Face 64473 6352 32240 38468 Face 64474 44031 4098 32240 Face 64475 32239 32240 2231 Face 64476 32239 38468 32240 Face 64477 26119 32241 39059 Face 64478 26119 17331 32241 Face 64479 3054 32242 40395 Face 64480 3054 9058 32242 Face 64481 44129 32243 28251 Face 64482 36147 9990 32243 Face 64483 8692 32244 43719 Face 64484 8692 7452 32244 Face 64485 10331 49292 23922 Face 64486 10331 25821 32245 Face 64487 6234 32246 14682 Face 64488 6234 19110 48430 Face 64489 5833 32247 16713 Face 64490 5833 22683 32247 Face 64491 17024 32248 20079 Face 64492 17024 43893 32248 Face 64493 11525 32249 11526 Face 64494 11525 34893 32249 Face 64495 6763 32250 30010 Face 64496 6763 15192 32250 Face 64497 6425 32251 40224 Face 64498 6425 24865 32251 Face 64499 47383 32252 28949 Face 64500 4371 43297 32252 Face 64501 3391 32253 27833 Face 64502 3391 17087 32253 Face 64503 17722 32254 17697 Face 64504 17722 37116 32254 Face 64505 11979 32255 6269 Face 64506 11979 10164 32255 Face 64507 32257 32256 27605 Face 64508 3535 43461 32256 Face 64509 44179 32257 11911 Face 64510 3535 32256 32257 Face 64511 2651 32258 13828 Face 64512 2651 13290 32258 Face 64513 5120 32259 43560 Face 64514 5120 27193 32259 Face 64515 1208 32260 14043 Face 64516 1208 32390 32260 Face 64517 14826 32261 14825 Face 64518 32262 18608 32261 Face 64519 38760 32262 32261 Face 64520 38760 32273 32262 Face 64521 13 32263 30115 Face 64522 13 7218 47422 Face 64523 13502 32264 13501 Face 64524 13502 23295 32264 Face 64525 41725 32265 13296 Face 64526 3039 1033 32265 Face 64527 4347 32266 21950 Face 64528 4347 33786 39486 Face 64529 8075 32267 31068 Face 64530 39640 14074 32267 Face 64531 3016 32268 13556 Face 64532 3016 15690 32268 Face 64533 2169 32269 10030 Face 64534 2169 7643 32269 Face 64535 10321 32270 16151 Face 64536 10321 48379 32270 Face 64537 20364 32271 18380 Face 64538 20364 46511 32271 Face 64539 33151 32272 30358 Face 64540 35928 6410 32272 Face 64541 8345 44264 20892 Face 64542 8345 32262 32273 Face 64543 36373 32274 12530 Face 64544 7705 28992 32274 Face 64545 19154 32275 43704 Face 64546 32276 26621 32275 Face 64547 19154 32276 32275 Face 64548 19154 30757 32276 Face 64549 2235 32277 12276 Face 64550 32278 24801 32277 Face 64551 2235 32278 32277 Face 64552 2235 7892 32278 Face 64553 23801 32279 14844 Face 64554 23801 43628 47520 Face 64555 12045 32280 31803 Face 64556 12045 43797 32280 Face 64557 12045 32281 48423 Face 64558 12045 31803 32281 Face 64559 18203 32282 5041 Face 64560 18203 10398 32282 Face 64561 47281 32283 14758 Face 64562 1177 36223 32283 Face 64563 5186 32284 37855 Face 64564 5186 19924 32284 Face 64565 4655 32285 10748 Face 64566 4655 26232 32285 Face 64567 28740 32286 43460 Face 64568 28740 41122 32286 Face 64569 15081 32287 31502 Face 64570 15081 12884 32287 Face 64571 10894 32288 22287 Face 64572 10894 37236 32288 Face 64573 4591 32289 5290 Face 64574 32361 35634 32289 Face 64575 33585 32290 45814 Face 64576 739 19425 32290 Face 64577 3627 32291 49751 Face 64578 3627 32627 32291 Face 64579 18438 32292 46472 Face 64580 18438 21803 32292 Face 64581 12501 32293 35457 Face 64582 35891 1708 32293 Face 64583 2877 32294 48267 Face 64584 2877 33038 32294 Face 64585 15687 32295 35430 Face 64586 15687 24213 32295 Face 64587 13382 32296 22419 Face 64588 47836 37680 32296 Face 64589 2442 32297 22729 Face 64590 2442 24118 32297 Face 64591 12112 32298 48454 Face 64592 43695 10476 32298 Face 64593 10269 32299 27944 Face 64594 10269 44677 32299 Face 64595 13737 32300 37168 Face 64596 13737 7052 32300 Face 64597 48461 32301 29417 Face 64598 6251 29449 32301 Face 64599 9981 32302 44971 Face 64600 9981 6467 32302 Face 64601 622 32303 11820 Face 64602 622 25708 32303 Face 64603 5459 32304 15681 Face 64604 5459 13758 32304 Face 64605 10536 32305 21551 Face 64606 10536 41800 32305 Face 64607 23165 32306 31401 Face 64608 23165 15608 32306 Face 64609 30776 32307 34933 Face 64610 30776 42409 32307 Face 64611 7110 32308 27546 Face 64612 7110 35994 32308 Face 64613 8177 32309 17494 Face 64614 8177 12601 32309 Face 64615 9549 32310 27765 Face 64616 9549 25858 32310 Face 64617 16440 32311 25925 Face 64618 47637 44598 32311 Face 64619 32313 32312 30085 Face 64620 12854 1707 32312 Face 64621 12854 32313 15553 Face 64622 12854 32312 32313 Face 64623 9699 32314 43072 Face 64624 9699 18928 32314 Face 64625 22741 32315 44621 Face 64626 22741 42574 32315 Face 64627 18424 32316 29418 Face 64628 18424 5439 32316 Face 64629 14972 32317 45876 Face 64630 14972 9283 32317 Face 64631 13760 32318 14066 Face 64632 38047 10047 32318 Face 64633 2507 32319 30738 Face 64634 32320 34075 43525 Face 64635 32321 32320 32319 Face 64636 32321 35534 32320 Face 64637 2507 32321 32319 Face 64638 2507 18429 32321 Face 64639 138 32322 31460 Face 64640 138 17923 32322 Face 64641 25408 32323 3519 Face 64642 25408 8626 32323 Face 64643 2807 32324 17705 Face 64644 2807 14535 32324 Face 64645 45616 32325 35814 Face 64646 2807 17705 32325 Face 64647 8037 32326 29145 Face 64648 8037 3703 32326 Face 64649 4466 32327 11403 Face 64650 38067 11906 32327 Face 64651 38974 32328 24102 Face 64652 3582 1400 32328 Face 64653 16229 32329 18775 Face 64654 16229 3991 32329 Face 64655 8965 32330 10301 Face 64656 8965 29327 32330 Face 64657 5800 32331 21244 Face 64658 5800 14904 32331 Face 64659 1230 32332 45142 Face 64660 1230 27902 32332 Face 64661 13192 32333 22104 Face 64662 13192 32990 32333 Face 64663 41081 32334 19508 Face 64664 2688 21937 32334 Face 64665 1346 32335 46204 Face 64666 1346 19434 32335 Face 64667 9543 32336 13117 Face 64668 9543 26650 32336 Face 64669 46571 32337 40524 Face 64670 46571 11428 32337 Face 64671 13862 32338 18099 Face 64672 13862 24662 32338 Face 64673 6304 32339 1853 Face 64674 6304 19555 32339 Face 64675 17516 32340 21064 Face 64676 17516 36375 32340 Face 64677 43114 32341 11084 Face 64678 1576 12219 32341 Face 64679 4664 32342 12867 Face 64680 4664 29053 32342 Face 64681 7830 32343 31963 Face 64682 7830 24143 32343 Face 64683 13794 32344 42400 Face 64684 13794 25927 32344 Face 64685 8373 32345 1582 Face 64686 8373 3396 32345 Face 64687 12621 32346 18095 Face 64688 12621 10087 32346 Face 64689 487 32347 42821 Face 64690 487 25644 32347 Face 64691 4439 32348 12797 Face 64692 4439 12796 32348 Face 64693 6189 32349 3902 Face 64694 6189 3207 32349 Face 64695 26 32350 26612 Face 64696 32351 1379 32350 Face 64697 26 32351 32350 Face 64698 34182 34749 32351 Face 64699 11138 32352 43327 Face 64700 11138 38210 32352 Face 64701 1656 32353 23531 Face 64702 35219 29362 32353 Face 64703 8979 32354 48912 Face 64704 8979 27916 32354 Face 64705 7370 48243 19542 Face 64706 7370 23418 48243 Face 64707 15446 32356 4915 Face 64708 15446 20431 32356 Face 64709 32358 32357 6682 Face 64710 435 12377 32357 Face 64711 435 32358 27710 Face 64712 435 32357 32358 Face 64713 17991 32359 30530 Face 64714 17991 6028 32359 Face 64715 12027 32360 24204 Face 64716 38715 4464 48497 Face 64717 4591 32361 32289 Face 64718 4591 18015 32361 Face 64719 37879 32362 6815 Face 64720 40983 31947 32362 Face 64721 32364 32363 13450 Face 64722 10693 30243 32363 Face 64723 48965 32364 6906 Face 64724 10693 32363 32364 Face 64725 30590 32365 5907 Face 64726 30590 13889 32365 Face 64727 2017 32366 12807 Face 64728 2017 25002 32366 Face 64729 46229 32367 15886 Face 64730 10401 46435 32367 Face 64731 40685 32368 12020 Face 64732 47519 4538 32368 Face 64733 47601 32369 22307 Face 64734 20457 4181 32369 Face 64735 1411 32370 20156 Face 64736 1411 16846 32370 Face 64737 20585 32371 9298 Face 64738 20585 48681 32371 Face 64739 2027 32372 20627 Face 64740 2027 42625 32372 Face 64741 47523 32373 10657 Face 64742 16506 25777 32373 Face 64743 10243 32374 30019 Face 64744 10243 30551 32374 Face 64745 3476 32375 19920 Face 64746 3476 16361 32375 Face 64747 1353 32376 12525 Face 64748 1353 4115 32376 Face 64749 32378 47671 13770 Face 64750 3729 11343 32377 Face 64751 3729 32378 35001 Face 64752 3729 32377 32378 Face 64753 3166 32379 27783 Face 64754 3166 25120 41980 Face 64755 5551 32380 38016 Face 64756 5551 42047 32380 Face 64757 36941 32381 10055 Face 64758 2408 12002 32381 Face 64759 5749 32382 32606 Face 64760 5749 33350 32382 Face 64761 4789 32383 19860 Face 64762 4789 48332 32383 Face 64763 4789 32384 510 Face 64764 4789 9980 32384 Face 64765 354 32385 11666 Face 64766 44110 26185 32385 Face 64767 48386 32386 26555 Face 64768 48385 12408 32386 Face 64769 38566 32387 4197 Face 64770 38566 637 32387 Face 64771 14024 32388 3414 Face 64772 42124 25941 32388 Face 64773 41035 32389 49265 Face 64774 34465 13234 49071 Face 64775 17705 32390 26007 Face 64776 17705 32324 32390 Face 64777 23455 32391 21639 Face 64778 23455 22623 32391 Face 64779 12556 32392 17838 Face 64780 12556 42798 32392 Face 64781 22112 32393 38532 Face 64782 22112 26629 32393 Face 64783 12028 32394 4546 Face 64784 41243 8414 32394 Face 64785 3608 32395 33500 Face 64786 3608 49869 32395 Face 64787 2225 32396 34350 Face 64788 2225 20593 32396 Face 64789 11326 32397 26809 Face 64790 11326 20600 32397 Face 64791 198 32398 29795 Face 64792 198 26511 32398 Face 64793 966 32399 40778 Face 64794 966 42050 32399 Face 64795 331 32400 24826 Face 64796 331 24929 32400 Face 64797 3333 32401 45242 Face 64798 3333 41595 32401 Face 64799 38065 32402 8244 Face 64800 7245 11614 32402 Face 64801 8201 32403 30289 Face 64802 8201 41375 48214 Face 64803 17566 32404 11129 Face 64804 17566 424 32404 Face 64805 27012 32405 4093 Face 64806 27012 35864 32405 Face 64807 12935 32406 27014 Face 64808 40165 4056 32406 Face 64809 9486 32407 45949 Face 64810 33118 35566 32407 Face 64811 49688 32408 4204 Face 64812 42325 25068 32408 Face 64813 12728 32409 11489 Face 64814 12728 44341 32409 Face 64815 1088 32410 10979 Face 64816 1088 21516 32410 Face 64817 15660 32411 8659 Face 64818 45061 3695 32411 Face 64819 6610 32412 37153 Face 64820 6610 24469 32412 Face 64821 5295 32413 1876 Face 64822 5295 23 32413 Face 64823 9670 32414 12808 Face 64824 9670 9671 32414 Face 64825 9762 32415 33823 Face 64826 9762 27788 32415 Face 64827 17619 32416 48768 Face 64828 17619 670 32416 Face 64829 26565 32417 16188 Face 64830 26565 25108 32417 Face 64831 18045 32418 40621 Face 64832 18045 48513 32418 Face 64833 45670 32419 29021 Face 64834 3024 39105 32419 Face 64835 36674 32420 12504 Face 64836 16163 45530 32420 Face 64837 8894 32421 28557 Face 64838 8894 29487 32421 Face 64839 18504 32422 5886 Face 64840 42691 3939 32422 Face 64841 95 32423 12741 Face 64842 95 18848 32423 Face 64843 6008 32424 42732 Face 64844 33307 20867 32424 Face 64845 21193 32425 23261 Face 64846 21193 45519 32425 Face 64847 11254 32426 22503 Face 64848 11254 7905 32426 Face 64849 11021 32427 317 Face 64850 11021 46795 32427 Face 64851 10306 32428 10308 Face 64852 10306 45867 32428 Face 64853 36629 32429 10762 Face 64854 7610 17498 32429 Face 64855 48647 32430 24935 Face 64856 42882 45780 32430 Face 64857 3979 32431 23634 Face 64858 3979 27240 32431 Face 64859 12720 32432 7270 Face 64860 36860 10772 32432 Face 64861 2779 32433 29391 Face 64862 2779 4894 32433 Face 64863 41767 32434 5639 Face 64864 735 33855 32434 Face 64865 1805 32435 7264 Face 64866 1805 40172 32435 Face 64867 38282 32436 27050 Face 64868 3230 34334 32436 Face 64869 273 32437 10963 Face 64870 273 17086 32437 Face 64871 14313 32438 13917 Face 64872 14313 40540 32438 Face 64873 34341 32439 154 Face 64874 34341 28081 32439 Face 64875 13181 32440 8771 Face 64876 13181 48365 32440 Face 64877 2704 32441 36800 Face 64878 2704 29929 32441 Face 64879 1301 32442 45902 Face 64880 1301 31552 32442 Face 64881 7488 32443 44887 Face 64882 7488 40026 32443 Face 64883 7845 32444 1154 Face 64884 7845 15280 32444 Face 64885 9097 32445 3959 Face 64886 9097 29872 32445 Face 64887 10626 32446 15347 Face 64888 10626 25282 32446 Face 64889 44933 32447 27337 Face 64890 7996 31844 32447 Face 64891 17151 32448 8932 Face 64892 17151 2423 32448 Face 64893 11862 32449 29503 Face 64894 11862 30641 32449 Face 64895 5561 32450 2044 Face 64896 32451 28853 32450 Face 64897 5561 32451 32450 Face 64898 5561 15862 32451 Face 64899 18210 32452 8219 Face 64900 18210 31015 32452 Face 64901 4663 32453 7099 Face 64902 4663 25055 32453 Face 64903 207 32454 29403 Face 64904 207 30408 32454 Face 64905 15471 32455 27233 Face 64906 15471 370 32455 Face 64907 3843 32456 32967 Face 64908 36489 173 32456 Face 64909 20215 32457 37158 Face 64910 20215 4782 32457 Face 64911 7429 32458 21576 Face 64912 7429 46088 32458 Face 64913 32460 32459 22388 Face 64914 10283 25521 32459 Face 64915 10283 32460 17245 Face 64916 10283 32459 32460 Face 64917 13820 32461 1344 Face 64918 13820 42957 32461 Face 64919 7410 32462 24383 Face 64920 7410 28356 32462 Face 64921 40359 32463 5314 Face 64922 10511 19515 32463 Face 64923 35878 32464 1211 Face 64924 35878 22802 32464 Face 64925 13531 32465 28553 Face 64926 13531 40914 32465 Face 64927 11638 32466 48950 Face 64928 11638 28725 32466 Face 64929 9653 32467 27842 Face 64930 9653 10396 32467 Face 64931 7789 32468 42949 Face 64932 42308 25915 32468 Face 64933 9209 32469 28951 Face 64934 32470 10045 32469 Face 64935 9209 32470 32469 Face 64936 9209 24887 32470 Face 64937 16735 32471 11905 Face 64938 16735 3849 32471 Face 64939 16980 32472 25311 Face 64940 16980 27160 32472 Face 64941 2161 32473 5140 Face 64942 2161 10324 32473 Face 64943 3711 32474 47810 Face 64944 3711 17606 32474 Face 64945 3073 32475 42992 Face 64946 3073 5628 32475 Face 64947 10164 32476 42718 Face 64948 10164 11979 32476 Face 64949 10164 32477 32255 Face 64950 10164 42718 32477 Face 64951 32479 32478 43595 Face 64952 45127 32683 32478 Face 64953 5994 32479 18569 Face 64954 5994 32478 32479 Face 64955 13838 32480 40939 Face 64956 13838 47617 32480 Face 64957 3311 32481 17989 Face 64958 3311 19855 32481 Face 64959 32483 32482 16832 Face 64960 13070 32672 32482 Face 64961 36530 32483 18562 Face 64962 36530 32482 32483 Face 64963 4441 32484 8914 Face 64964 32485 27898 32484 Face 64965 4441 32485 32484 Face 64966 4441 43294 32485 Face 64967 39992 32486 17209 Face 64968 7518 49825 32486 Face 64969 9538 32487 42994 Face 64970 9538 42613 32487 Face 64971 39014 32488 40885 Face 64972 32487 42613 32488 Face 64973 4103 32489 46846 Face 64974 4103 12549 32489 Face 64975 5592 32490 165 Face 64976 5592 31321 32490 Face 64977 2974 32491 18756 Face 64978 2974 27891 32491 Face 64979 25846 32492 41654 Face 64980 25846 8832 32492 Face 64981 3966 32493 6432 Face 64982 3966 150 32493 Face 64983 9657 32494 42723 Face 64984 9657 29765 32494 Face 64985 40568 32495 15909 Face 64986 13541 48899 32495 Face 64987 18524 32496 18523 Face 64988 18524 43688 32496 Face 64989 33184 32497 30881 Face 64990 33184 9993 32497 Face 64991 12424 32498 39583 Face 64992 12424 28707 32498 Face 64993 18824 32499 41946 Face 64994 18824 3888 49128 Face 64995 640 32500 28079 Face 64996 640 10233 32500 Face 64997 41219 32501 47402 Face 64998 18428 20975 32501 Face 64999 361 32502 16608 Face 65000 361 30472 32502 Face 65001 12853 32503 8489 Face 65002 12853 4980 32503 Face 65003 26617 32504 13033 Face 65004 26617 27502 32504 Face 65005 9985 32505 34260 Face 65006 9985 27421 32505 Face 65007 14351 32506 30906 Face 65008 14351 1948 32506 Face 65009 38118 32507 4079 Face 65010 14743 30991 32507 Face 65011 7840 32508 36612 Face 65012 7840 27914 32508 Face 65013 13066 32509 5716 Face 65014 13066 2051 32509 Face 65015 7683 32510 28337 Face 65016 7683 22296 32510 Face 65017 25392 32511 23670 Face 65018 25392 46286 32511 Face 65019 4187 32512 27229 Face 65020 4187 39210 32512 Face 65021 23311 32513 38588 Face 65022 23311 41012 32513 Face 65023 43400 32514 30679 Face 65024 4904 561 32514 Face 65025 15095 32515 31545 Face 65026 15095 12674 32515 Face 65027 13685 32516 45729 Face 65028 44273 3067 32516 Face 65029 14059 32517 18666 Face 65030 14059 15346 32517 Face 65031 14248 32518 45824 Face 65032 14248 30972 32518 Face 65033 21945 32519 32817 Face 65034 21945 22919 32519 Face 65035 435 32520 12377 Face 65036 435 42021 32520 Face 65037 16791 32521 2484 Face 65038 35835 6890 32521 Face 65039 19506 32522 10498 Face 65040 19506 19507 32522 Face 65041 19506 32523 5054 Face 65042 19506 10498 32523 Face 65043 3179 32524 588 Face 65044 3179 10336 32524 Face 65045 7971 32525 19661 Face 65046 7971 34115 32525 Face 65047 13663 32526 1291 Face 65048 13663 23686 32526 Face 65049 527 32527 29211 Face 65050 527 15627 32527 Face 65051 2559 32528 16823 Face 65052 2559 21334 32528 Face 65053 10011 32529 20050 Face 65054 10011 20440 32529 Face 65055 17179 32530 37373 Face 65056 39426 18427 32530 Face 65057 14938 32531 12964 Face 65058 37380 22176 32531 Face 65059 44905 32532 5485 Face 65060 44905 6742 32532 Face 65061 6399 32533 25194 Face 65062 6399 21111 32533 Face 65063 12948 32534 31860 Face 65064 12948 22788 32534 Face 65065 18764 49570 28235 Face 65066 18764 22400 32535 Face 65067 15717 32536 31232 Face 65068 15717 26719 32536 Face 65069 4640 32537 16134 Face 65070 4640 43393 32537 Face 65071 6634 32538 46239 Face 65072 6634 26298 32538 Face 65073 18669 32539 31079 Face 65074 18669 18668 32539 Face 65075 13642 32540 13283 Face 65076 13642 32850 32540 Face 65077 26724 32541 3477 Face 65078 26724 19831 32541 Face 65079 16115 37667 13501 Face 65080 16115 31664 37667 Face 65081 38059 32543 15512 Face 65082 38059 44104 32543 Face 65083 25206 32544 25390 Face 65084 25206 26663 32544 Face 65085 19604 32545 6657 Face 65086 19604 26394 32545 Face 65087 42300 48645 8175 Face 65088 42300 37115 32546 Face 65089 2543 32547 44933 Face 65090 2543 16264 32547 Face 65091 20312 32548 10909 Face 65092 20312 7057 32548 Face 65093 15724 32549 19043 Face 65094 15724 36920 32549 Face 65095 9450 32550 24826 Face 65096 9450 24827 32550 Face 65097 29053 32551 13918 Face 65098 29053 24378 32551 Face 65099 21534 32552 19302 Face 65100 21534 3407 32552 Face 65101 4723 32553 9677 Face 65102 4723 953 32553 Face 65103 43051 32554 9740 Face 65104 3859 49059 32554 Face 65105 32556 32555 41777 Face 65106 13291 12614 32555 Face 65107 13291 32556 19180 Face 65108 13291 32555 32556 Face 65109 3292 32557 36486 Face 65110 40887 4291 32557 Face 65111 13177 32558 1875 Face 65112 13177 25363 41050 Face 65113 12393 32559 6409 Face 65114 12393 28696 32559 Face 65115 32562 32560 25006 Face 65116 32775 11797 32560 Face 65117 11653 32561 48032 Face 65118 11653 32560 32562 Face 65119 32561 32562 25006 Face 65120 32561 11653 32562 Face 65121 2615 32563 23899 Face 65122 2615 40854 32563 Face 65123 12226 32564 24525 Face 65124 44614 6024 32564 Face 65125 47690 32565 20451 Face 65126 47690 32566 32565 Face 65127 8376 32566 13729 Face 65128 8376 32565 32566 Face 65129 5682 32567 16615 Face 65130 39645 18627 32567 Face 65131 4925 32568 30268 Face 65132 4925 8047 32568 Face 65133 2940 32569 24083 Face 65134 2940 11553 32569 Face 65135 1472 32570 26796 Face 65136 1472 39499 32570 Face 65137 7913 32571 21563 Face 65138 38173 3682 32571 Face 65139 37812 32572 10520 Face 65140 7852 21416 32572 Face 65141 7724 32573 20979 Face 65142 7724 31517 32573 Face 65143 14375 32574 49332 Face 65144 14375 46522 32574 Face 65145 23256 32575 9190 Face 65146 23256 15982 32575 Face 65147 45271 32576 10295 Face 65148 12196 46127 32576 Face 65149 39633 32577 49384 Face 65150 5860 29098 32577 Face 65151 566 32578 13612 Face 65152 566 33248 32578 Face 65153 19128 32579 35062 Face 65154 19128 20530 32579 Face 65155 17198 32580 10627 Face 65156 45054 32446 32580 Face 65157 17571 32581 137 Face 65158 17571 35221 32581 Face 65159 38866 32582 35299 Face 65160 15795 49031 32582 Face 65161 15867 32583 23816 Face 65162 15867 16802 32583 Face 65163 8526 32584 5532 Face 65164 8526 19780 32584 Face 65165 8327 32585 2669 Face 65166 8327 21448 32585 Face 65167 7486 32586 48144 Face 65168 7486 41884 32586 Face 65169 895 32587 19646 Face 65170 32588 13701 32587 Face 65171 895 32588 32587 Face 65172 895 17983 32588 Face 65173 9308 32589 24359 Face 65174 9308 38263 32589 Face 65175 8634 48826 40182 Face 65176 8634 19724 32590 Face 65177 5070 32591 48107 Face 65178 5070 35779 32591 Face 65179 10857 32592 35481 Face 65180 10857 49178 32592 Face 65181 20807 32593 3407 Face 65182 20807 7785 32593 Face 65183 32595 32594 38160 Face 65184 11570 20711 32594 Face 65185 11570 32595 15540 Face 65186 11570 32594 32595 Face 65187 12327 32596 1163 Face 65188 12327 15826 32596 Face 65189 22339 32597 47459 Face 65190 45892 28581 32597 Face 65191 41467 32598 34647 Face 65192 41467 9511 44685 Face 65193 1606 32599 44528 Face 65194 1606 7124 32599 Face 65195 1500 32600 13798 Face 65196 1500 14055 32600 Face 65197 42189 32601 32602 Face 65198 42189 32742 32601 Face 65199 5776 32602 32601 Face 65200 5776 22443 32602 Face 65201 22204 32603 36983 Face 65202 22204 25172 32603 Face 65203 36899 32604 31700 Face 65204 32605 31147 32604 Face 65205 1898 32605 32604 Face 65206 1898 19771 32605 Face 65207 7684 32606 32382 Face 65208 7684 18137 32606 Face 65209 12918 32607 27549 Face 65210 12918 34010 32607 Face 65211 49382 32608 12695 Face 65212 49382 21420 32608 Face 65213 11064 32609 21420 Face 65214 11064 44401 32609 Face 65215 2097 32610 23472 Face 65216 2097 41241 32610 Face 65217 45492 32611 17032 Face 65218 48519 7225 32611 Face 65219 44052 32612 25763 Face 65220 23825 23826 32612 Face 65221 3348 32613 49085 Face 65222 3348 43827 32613 Face 65223 32950 44291 39246 Face 65224 1302 18107 32614 Face 65225 3258 32615 1024 Face 65226 3258 37900 32615 Face 65227 12297 32616 7448 Face 65228 12297 38563 32616 Face 65229 32618 32617 47532 Face 65230 32618 20825 32617 Face 65231 6716 32618 47532 Face 65232 6716 20825 32618 Face 65233 32620 32619 15588 Face 65234 2645 22038 32619 Face 65235 47913 32620 15588 Face 65236 2645 32619 32620 Face 65237 7770 32621 21507 Face 65238 7770 25 32621 Face 65239 14588 32622 29890 Face 65240 14588 37233 32622 Face 65241 5164 32623 10409 Face 65242 5164 23594 32623 Face 65243 8565 32624 15054 Face 65244 39955 27971 32624 Face 65245 45136 32625 8205 Face 65246 45136 34874 32625 Face 65247 2472 32626 9984 Face 65248 2472 22631 32626 Face 65249 35267 32627 29771 Face 65250 7416 32291 32627 Face 65251 15942 32628 11195 Face 65252 15942 32693 32628 Face 65253 15510 32629 27481 Face 65254 15510 45830 32629 Face 65255 7832 32630 34498 Face 65256 40663 28785 32630 Face 65257 39382 32631 22776 Face 65258 13159 18419 32631 Face 65259 6217 32632 47444 Face 65260 6217 13646 32632 Face 65261 13607 32633 34917 Face 65262 13607 46715 32633 Face 65263 6968 32634 22659 Face 65264 6968 48939 32634 Face 65265 9667 32635 29719 Face 65266 9667 25680 32635 Face 65267 12992 32636 38130 Face 65268 12992 49067 32636 Face 65269 11024 32637 45119 Face 65270 11024 23695 32637 Face 65271 7194 32638 17895 Face 65272 7194 25115 32638 Face 65273 10608 32639 12379 Face 65274 10608 16303 32639 Face 65275 31039 32640 19802 Face 65276 31039 15497 32640 Face 65277 9386 32641 9385 Face 65278 9386 3028 32641 Face 65279 5126 32642 37197 Face 65280 5126 28673 32642 Face 65281 88 32643 17843 Face 65282 88 24927 32643 Face 65283 21783 32644 9135 Face 65284 21783 29362 32644 Face 65285 6709 32645 20931 Face 65286 6709 3109 32645 Face 65287 2916 32646 27177 Face 65288 41037 18494 32646 Face 65289 23431 32647 34240 Face 65290 23431 12370 32647 Face 65291 17464 32648 2999 Face 65292 17464 6052 32648 Face 65293 6301 32649 31246 Face 65294 6301 18305 32649 Face 65295 23173 32650 43662 Face 65296 23173 18814 32650 Face 65297 45067 32651 4164 Face 65298 21600 45494 32651 Face 65299 13926 32652 22527 Face 65300 13926 466 32652 Face 65301 13811 32653 21134 Face 65302 13811 16176 32653 Face 65303 10368 32654 22132 Face 65304 10368 6246 32654 Face 65305 17163 32655 33364 Face 65306 17163 31355 32655 Face 65307 5333 41136 29605 Face 65308 39587 21684 32656 Face 65309 32658 32657 33803 Face 65310 6457 32080 32657 Face 65311 6457 32658 22852 Face 65312 6457 32657 32658 Face 65313 8293 32659 27929 Face 65314 8293 29397 32659 Face 65315 3296 32660 30766 Face 65316 3296 28051 32660 Face 65317 6963 32661 26277 Face 65318 6963 37318 32661 Face 65319 9766 32662 39731 Face 65320 40695 21094 32662 Face 65321 23287 32663 5579 Face 65322 23287 28577 32663 Face 65323 11504 32664 29844 Face 65324 11504 1810 32664 Face 65325 11327 32665 47241 Face 65326 11327 31319 32665 Face 65327 769 32666 8240 Face 65328 769 36057 32666 Face 65329 7664 32667 12767 Face 65330 7664 11073 41572 Face 65331 1372 32668 29441 Face 65332 32669 777 32668 Face 65333 1372 32669 32668 Face 65334 49054 13788 32669 Face 65335 34976 32670 21186 Face 65336 34977 17992 32670 Face 65337 21735 32671 2265 Face 65338 21735 5355 32671 Face 65339 16301 32672 27989 Face 65340 16301 32482 32672 Face 65341 7147 32673 25131 Face 65342 7147 30532 32673 Face 65343 8038 32674 42669 Face 65344 36946 13934 32674 Face 65345 37098 32675 14267 Face 65346 3286 49434 32675 Face 65347 33600 32676 16463 Face 65348 4112 28848 32676 Face 65349 37710 32677 24050 Face 65350 2791 16750 32677 Face 65351 1546 32678 25395 Face 65352 1546 30677 32678 Face 65353 3539 32679 22586 Face 65354 34399 15132 32679 Face 65355 11815 32680 16717 Face 65356 40586 17391 32680 Face 65357 15725 32681 5855 Face 65358 15725 6495 32681 Face 65359 4496 32682 25981 Face 65360 4496 33237 32682 Face 65361 3821 32683 29633 Face 65362 39762 32478 32683 Face 65363 19230 32684 23887 Face 65364 46956 17845 32684 Face 65365 656 32685 47987 Face 65366 656 49970 32685 Face 65367 2834 32686 38303 Face 65368 2834 10787 32686 Face 65369 3001 32687 4840 Face 65370 40897 21189 32687 Face 65371 38351 32688 34995 Face 65372 38351 30857 32688 Face 65373 15584 49160 447 Face 65374 15584 44590 32689 Face 65375 23927 32690 31572 Face 65376 23927 18271 32690 Face 65377 2473 32691 7894 Face 65378 2473 15368 32691 Face 65379 48428 32692 8440 Face 65380 13184 2389 32692 Face 65381 10902 32693 3276 Face 65382 10902 47274 32693 Face 65383 12499 32694 23068 Face 65384 12499 25875 32694 Face 65385 26797 32695 34533 Face 65386 26797 26798 32695 Face 65387 1655 32696 24813 Face 65388 1655 15272 32696 Face 65389 20021 32697 44584 Face 65390 20021 28494 32697 Face 65391 604 32698 46648 Face 65392 604 18063 32698 Face 65393 44995 32699 7764 Face 65394 2025 32032 32699 Face 65395 44078 32700 830 Face 65396 18251 3937 32700 Face 65397 19289 32701 37506 Face 65398 40138 9146 32701 Face 65399 8052 32702 20085 Face 65400 8052 2599 32702 Face 65401 13831 32703 880 Face 65402 13831 35433 32703 Face 65403 10150 39286 17479 Face 65404 10150 44655 39286 Face 65405 4721 32705 42504 Face 65406 4721 25248 32705 Face 65407 4860 32706 22262 Face 65408 4860 21805 32706 Face 65409 8477 32707 21894 Face 65410 8477 11502 32707 Face 65411 28575 32708 1814 Face 65412 28575 5203 32708 Face 65413 5297 32709 33009 Face 65414 5297 5298 32709 Face 65415 4899 32710 25246 Face 65416 4899 44389 32710 Face 65417 5089 32711 21544 Face 65418 5089 9949 32711 Face 65419 8331 32712 26984 Face 65420 8331 20900 32712 Face 65421 10862 32713 45785 Face 65422 10862 17490 32713 Face 65423 3433 32714 43308 Face 65424 3433 8044 32714 Face 65425 1176 32715 39952 Face 65426 1176 49126 32715 Face 65427 8837 32716 25763 Face 65428 8837 49990 32716 Face 65429 8837 32717 20663 Face 65430 8837 25763 32717 Face 65431 10901 32718 46675 Face 65432 10901 38282 32718 Face 65433 23095 32719 4716 Face 65434 23095 20802 32719 Face 65435 16341 32720 34239 Face 65436 48711 1188 32720 Face 65437 2181 32721 7844 Face 65438 2181 41747 32721 Face 65439 13102 32722 23096 Face 65440 13102 45108 32722 Face 65441 13465 32723 16457 Face 65442 34829 1984 32723 Face 65443 40032 32724 30910 Face 65444 5113 15535 32724 Face 65445 7723 32725 35901 Face 65446 7723 17130 32725 Face 65447 11720 32726 18998 Face 65448 11720 1879 32726 Face 65449 8560 32727 48036 Face 65450 8560 48452 32727 Face 65451 9528 32728 40847 Face 65452 9528 40257 32728 Face 65453 12701 32729 26267 Face 65454 12701 35160 32729 Face 65455 1365 32730 45452 Face 65456 1365 7229 32730 Face 65457 43916 32731 13850 Face 65458 5329 15005 32731 Face 65459 32678 32732 16194 Face 65460 39449 27731 32732 Face 65461 8534 32733 7890 Face 65462 34166 1754 32733 Face 65463 38704 32734 31294 Face 65464 39582 14293 32734 Face 65465 17957 32735 9147 Face 65466 17957 17956 32735 Face 65467 10380 32736 4943 Face 65468 10380 31801 32736 Face 65469 2490 32737 12794 Face 65470 36058 48053 32737 Face 65471 3785 32738 24440 Face 65472 3785 21050 32738 Face 65473 3200 32739 25354 Face 65474 3200 16964 48052 Face 65475 11225 32740 47033 Face 65476 11225 21971 32740 Face 65477 47376 32741 35614 Face 65478 32742 12301 32741 Face 65479 3662 32742 32741 Face 65480 3662 32601 32742 Face 65481 12721 32743 46348 Face 65482 12721 19618 32743 Face 65483 5259 32744 14028 Face 65484 5259 2208 32744 Face 65485 630 32745 21767 Face 65486 630 33709 32745 Face 65487 14716 32746 30220 Face 65488 14716 14922 32746 Face 65489 13817 32747 2508 Face 65490 13817 25724 32747 Face 65491 8509 32748 41926 Face 65492 8509 23663 32748 Face 65493 22074 32749 5003 Face 65494 33941 5002 32749 Face 65495 14069 32750 1271 Face 65496 14069 20023 32750 Face 65497 7247 32751 21699 Face 65498 7247 25824 32751 Face 65499 16560 32752 12750 Face 65500 16560 32878 32752 Face 65501 39416 32753 31044 Face 65502 32754 46250 32753 Face 65503 39416 32754 32753 Face 65504 46817 17680 32754 Face 65505 18011 32755 16869 Face 65506 40105 26201 32755 Face 65507 7121 32756 37349 Face 65508 7121 29712 32756 Face 65509 24143 32757 32343 Face 65510 24143 47460 32757 Face 65511 19470 32758 5406 Face 65512 19470 33871 32758 Face 65513 15366 32759 7835 Face 65514 15366 15461 32759 Face 65515 17712 32760 18609 Face 65516 17712 46234 32760 Face 65517 7472 32761 31593 Face 65518 7472 16861 32761 Face 65519 11281 32762 26218 Face 65520 49403 23732 32762 Face 65521 11475 32763 8687 Face 65522 11475 26138 32763 Face 65523 4694 32764 23282 Face 65524 4694 10569 32764 Face 65525 8413 32765 1238 Face 65526 8413 16914 32765 Face 65527 49416 32766 756 Face 65528 10198 38636 32766 Face 65529 29013 32767 34908 Face 65530 29013 15674 32767 Face 65531 3347 32768 40529 Face 65532 3347 31692 32768 Face 65533 45826 32769 14767 Face 65534 307 27294 32769 Face 65535 4064 32770 12848 Face 65536 4064 22392 32770 Face 65537 31840 32771 9892 Face 65538 31840 20380 32771 Face 65539 3858 32772 21750 Face 65540 3858 16040 32772 Face 65541 13908 32773 46221 Face 65542 13908 37390 35371 Face 65543 4677 32774 49336 Face 65544 4677 22959 32774 Face 65545 11653 32775 32560 Face 65546 11653 28774 32775 Face 65547 2872 32776 40417 Face 65548 2872 18120 32776 Face 65549 3589 32777 16508 Face 65550 3589 5742 32777 Face 65551 13442 32778 31661 Face 65552 13442 3572 32778 Face 65553 10912 32779 19579 Face 65554 10912 2781 32779 Face 65555 10691 46654 27866 Face 65556 10691 45161 32780 Face 65557 10691 32781 17609 Face 65558 10691 27866 32781 Face 65559 5685 32782 40350 Face 65560 5685 35594 32782 Face 65561 42408 32783 21170 Face 65562 34990 20161 32783 Face 65563 8567 32784 14897 Face 65564 8567 21664 32784 Face 65565 17434 32785 4483 Face 65566 17434 46068 32785 Face 65567 1186 32786 29638 Face 65568 1186 2047 32786 Face 65569 2700 32787 11917 Face 65570 2700 33641 32787 Face 65571 5127 32788 30062 Face 65572 5127 31487 32788 Face 65573 3201 32789 21389 Face 65574 3201 1271 32789 Face 65575 18423 32790 16263 Face 65576 32791 36655 32790 Face 65577 18423 32791 32790 Face 65578 18423 35208 32791 Face 65579 1447 32792 20088 Face 65580 1447 25009 32792 Face 65581 23777 32793 750 Face 65582 23777 11794 32793 Face 65583 290 32794 11547 Face 65584 37789 44122 32794 Face 65585 13186 32795 5996 Face 65586 13186 19134 32795 Face 65587 36045 32796 37273 Face 65588 15966 6057 32796 Face 65589 6046 32797 44893 Face 65590 6046 30522 32797 Face 65591 3394 32798 35960 Face 65592 3394 30055 32798 Face 65593 18544 32799 37619 Face 65594 18544 10847 32799 Face 65595 7238 32800 7050 Face 65596 7238 23676 32800 Face 65597 19713 32801 37322 Face 65598 45678 29510 32801 Face 65599 26484 32802 23592 Face 65600 26484 14909 32802 Face 65601 44965 32803 46521 Face 65602 1003 40119 32803 Face 65603 3728 32804 7680 Face 65604 3728 3727 32804 Face 65605 32806 49560 5421 Face 65606 5356 44219 32805 Face 65607 5356 32806 5421 Face 65608 5356 32805 32806 Face 65609 5518 32807 38147 Face 65610 32808 43620 32809 Face 65611 5518 32808 32807 Face 65612 5518 8109 32808 Face 65613 32807 32809 20381 Face 65614 32807 32810 32809 Face 65615 32808 32810 32807 Face 65616 32808 32809 32810 Face 65617 3766 32811 26706 Face 65618 3766 44070 32811 Face 65619 11279 32812 7260 Face 65620 11279 29620 32812 Face 65621 6808 32813 42060 Face 65622 32814 11321 32813 Face 65623 6808 32814 32813 Face 65624 6808 36570 32814 Face 65625 2165 32815 30105 Face 65626 2165 35889 32815 Face 65627 5191 32816 19691 Face 65628 5191 19763 48796 Face 65629 9422 32817 37495 Face 65630 9422 21945 32817 Face 65631 12793 32818 19544 Face 65632 12793 1943 45140 Face 65633 32820 32819 7605 Face 65634 49195 16284 32819 Face 65635 3483 32820 29877 Face 65636 32821 32819 32820 Face 65637 3483 32821 32820 Face 65638 49639 8804 32821 Face 65639 12613 32822 23428 Face 65640 39200 6182 32822 Face 65641 4531 32823 13844 Face 65642 4531 18702 32823 Face 65643 4531 32824 23580 Face 65644 4531 23579 32824 Face 65645 26904 32825 23073 Face 65646 26904 37469 32825 Face 65647 11178 32826 21477 Face 65648 44946 20591 32826 Face 65649 7124 32827 21427 Face 65650 7124 1606 32827 Face 65651 469 32828 22934 Face 65652 469 18726 32828 Face 65653 6561 32829 15399 Face 65654 6561 10261 32829 Face 65655 35866 32830 2854 Face 65656 8306 46771 32830 Face 65657 46712 32832 7097 Face 65658 7740 44451 32832 Face 65659 32831 32832 44451 Face 65660 32831 14177 32832 Face 65661 17048 32833 17047 Face 65662 17048 40304 32833 Face 65663 1450 32834 5215 Face 65664 1450 44216 32834 Face 65665 416 32835 7252 Face 65666 416 11727 32835 Face 65667 12566 44747 27345 Face 65668 12566 40833 44747 Face 65669 45570 32837 42282 Face 65670 11142 16765 32837 Face 65671 10496 32838 44751 Face 65672 10496 45575 32838 Face 65673 11698 32839 19523 Face 65674 11698 16144 32839 Face 65675 22949 49562 27969 Face 65676 22949 29135 32840 Face 65677 4120 32841 2515 Face 65678 4120 31929 32841 Face 65679 42371 47457 12820 Face 65680 3210 10745 32842 Face 65681 9862 32843 34942 Face 65682 9862 6402 32843 Face 65683 34404 32844 19272 Face 65684 10273 29856 32844 Face 65685 2906 32845 28672 Face 65686 2906 42511 32845 Face 65687 6425 32846 16420 Face 65688 6425 44248 32846 Face 65689 6773 32847 4698 Face 65690 6773 42503 32847 Face 65691 1142 32848 40068 Face 65692 1142 8928 32848 Face 65693 9275 32849 36104 Face 65694 9275 44438 32849 Face 65695 8684 32850 47729 Face 65696 8684 32540 32850 Face 65697 12564 32851 36296 Face 65698 12564 23842 32851 Face 65699 3899 32852 23513 Face 65700 3899 13561 32852 Face 65701 8750 32853 14334 Face 65702 8750 36637 32853 Face 65703 13328 32854 5405 Face 65704 13328 40937 32854 Face 65705 9984 32855 16960 Face 65706 9984 13179 32855 Face 65707 14198 32856 27582 Face 65708 14198 5742 32856 Face 65709 24225 32857 34692 Face 65710 24225 16202 32857 Face 65711 6450 32858 27223 Face 65712 6450 20445 32858 Face 65713 34400 32859 28373 Face 65714 27841 26547 32859 Face 65715 10442 32860 20090 Face 65716 10442 45760 32860 Face 65717 639 32861 4966 Face 65718 639 11944 32861 Face 65719 4770 32862 11394 Face 65720 4770 15216 32862 Face 65721 3100 32863 9409 Face 65722 3100 35874 32863 Face 65723 7631 32864 19446 Face 65724 7631 2947 32864 Face 65725 9124 32865 13282 Face 65726 9124 16429 32865 Face 65727 4262 32866 42922 Face 65728 4262 43469 32866 Face 65729 6650 32867 29793 Face 65730 6650 24452 32867 Face 65731 2863 32868 42378 Face 65732 2863 19392 32868 Face 65733 2217 32869 24597 Face 65734 35834 14878 32869 Face 65735 5992 32870 19821 Face 65736 48420 15407 32870 Face 65737 4049 32871 29589 Face 65738 4049 26218 32871 Face 65739 5066 32872 34964 Face 65740 5066 13222 32872 Face 65741 22749 32873 8064 Face 65742 22749 15113 32873 Face 65743 15960 32874 16499 Face 65744 15960 39726 32874 Face 65745 10252 32875 41840 Face 65746 32876 5899 32875 Face 65747 10252 32876 32875 Face 65748 10252 4177 32876 Face 65749 22259 32877 32163 Face 65750 22259 4807 32877 Face 65751 9521 32878 16560 Face 65752 9521 18026 32878 Face 65753 1101 32879 48182 Face 65754 1101 17014 32879 Face 65755 32881 32880 7360 Face 65756 7359 30460 32880 Face 65757 44007 32881 17869 Face 65758 44007 32880 32881 Face 65759 34377 32882 22355 Face 65760 34377 1125 32882 Face 65761 38538 32883 10996 Face 65762 865 46560 32883 Face 65763 12522 32884 17175 Face 65764 12522 16020 32884 Face 65765 22266 32885 4567 Face 65766 22266 28981 32885 Face 65767 10363 32886 46537 Face 65768 10363 16277 32886 Face 65769 651 32887 13915 Face 65770 651 26235 32887 Face 65771 8987 32888 19100 Face 65772 8987 4815 32888 Face 65773 4023 32889 39754 Face 65774 4023 8844 32889 Face 65775 5855 32890 27425 Face 65776 5855 32681 32890 Face 65777 46658 32891 24539 Face 65778 3312 19322 32891 Face 65779 7296 32892 34994 Face 65780 7296 16062 32892 Face 65781 7669 32893 15176 Face 65782 7669 25403 32893 Face 65783 3243 32894 19088 Face 65784 32895 41273 32894 Face 65785 3243 32895 32894 Face 65786 3243 19715 32895 Face 65787 1733 32896 18392 Face 65788 32897 9374 32896 Face 65789 1733 32897 32896 Face 65790 1733 36072 32897 Face 65791 32899 32898 6350 Face 65792 32899 779 32898 Face 65793 2906 32899 42511 Face 65794 2906 779 32899 Face 65795 12555 32900 10762 Face 65796 12555 8665 32900 Face 65797 22336 32901 22830 Face 65798 41559 24180 32901 Face 65799 8621 32902 36185 Face 65800 8621 8623 32902 Face 65801 2358 32903 16363 Face 65802 2358 6402 32903 Face 65803 32905 32904 1955 Face 65804 14722 8057 32904 Face 65805 44985 32905 25038 Face 65806 14722 32904 32905 Face 65807 4556 32906 42840 Face 65808 4556 22856 32906 Face 65809 20337 32907 7324 Face 65810 20337 23364 32907 Face 65811 8202 32908 20207 Face 65812 8202 19711 32908 Face 65813 15033 32909 5195 Face 65814 15033 42204 32909 Face 65815 26323 32910 2120 Face 65816 26323 26324 32910 Face 65817 8173 32911 16686 Face 65818 8173 16687 32911 Face 65819 3657 32912 25367 Face 65820 44178 35241 32912 Face 65821 1787 32913 20195 Face 65822 1787 47641 32913 Face 65823 22286 32914 11747 Face 65824 22286 17913 32914 Face 65825 6411 32915 33645 Face 65826 6411 46862 32915 Face 65827 23749 32916 11379 Face 65828 23749 1079 32916 Face 65829 11649 44858 21322 Face 65830 11649 28708 32917 Face 65831 19928 32918 3255 Face 65832 19928 3256 32918 Face 65833 4700 32919 11446 Face 65834 4700 27794 32919 Face 65835 913 32920 7629 Face 65836 913 43919 32920 Face 65837 47791 32921 21435 Face 65838 21434 17457 32921 Face 65839 44452 32922 18838 Face 65840 18837 30635 32922 Face 65841 10725 32923 38218 Face 65842 10725 25997 32923 Face 65843 32925 32924 15818 Face 65844 43857 25422 32924 Face 65845 45177 32925 44267 Face 65846 43857 32924 32925 Face 65847 43631 32926 24129 Face 65848 2369 15602 32926 Face 65849 49280 32927 28327 Face 65850 49280 26260 32927 Face 65851 10306 32928 17396 Face 65852 10306 10308 32928 Face 65853 42294 32930 31080 Face 65854 15389 10144 32929 Face 65855 32929 32930 42294 Face 65856 32929 21253 32930 Face 65857 4227 32931 36283 Face 65858 4227 49826 32931 Face 65859 4072 32932 14595 Face 65860 34797 26708 32933 Face 65861 32934 32933 26708 Face 65862 32932 4072 32933 Face 65863 32932 32934 7187 Face 65864 32932 32933 32934 Face 65865 15168 32935 28146 Face 65866 39783 10165 32935 Face 65867 40844 32936 12772 Face 65868 1470 29443 32936 Face 65869 6970 32937 3334 Face 65870 6970 42388 32937 Face 65871 39937 32938 9730 Face 65872 8419 21667 32938 Face 65873 32940 32939 7544 Face 65874 15828 10571 32939 Face 65875 15828 32940 48845 Face 65876 15828 32939 32940 Face 65877 16528 32941 12771 Face 65878 16528 25413 32941 Face 65879 12312 32942 26495 Face 65880 44777 24475 32942 Face 65881 4886 32943 16933 Face 65882 4886 37839 32943 Face 65883 947 32944 30883 Face 65884 33094 7295 44804 Face 65885 4817 32945 16150 Face 65886 4817 15928 32945 Face 65887 9515 32946 31599 Face 65888 9515 24444 32946 Face 65889 12096 32947 39455 Face 65890 12096 29785 32947 Face 65891 22528 32948 38728 Face 65892 22528 41790 32948 Face 65893 20524 32949 27743 Face 65894 20524 44569 32949 Face 65895 1302 32950 4396 Face 65896 1302 44291 32950 Face 65897 1302 32951 39231 Face 65898 1302 41566 32951 Face 65899 22002 32952 20974 Face 65900 22002 6416 32952 Face 65901 26126 32953 9914 Face 65902 26126 2554 32953 Face 65903 41560 32954 16476 Face 65904 8001 38398 32954 Face 65905 13364 32955 18893 Face 65906 13364 44552 32955 Face 65907 10001 32956 6978 Face 65908 10001 41840 32956 Face 65909 6229 32957 42607 Face 65910 6229 1796 32957 Face 65911 38279 32958 22084 Face 65912 6026 5998 32958 Face 65913 17489 43164 16644 Face 65914 17489 2780 43164 Face 65915 11384 32960 42623 Face 65916 11384 27996 32960 Face 65917 22039 32961 6512 Face 65918 22039 39523 32961 Face 65919 6509 32962 27749 Face 65920 6509 14284 32962 Face 65921 10950 32963 46939 Face 65922 10950 24291 32963 Face 65923 1705 32964 19370 Face 65924 1705 10300 32964 Face 65925 47148 32965 42255 Face 65926 2141 8452 32965 Face 65927 16143 32966 16142 Face 65928 42133 13334 32966 Face 65929 19714 32967 3842 Face 65930 19714 3843 32967 Face 65931 32969 32968 17161 Face 65932 7970 10409 32968 Face 65933 40039 32969 14546 Face 65934 32970 32968 32969 Face 65935 32971 40039 44823 Face 65936 7970 32968 32970 Face 65937 7970 32971 10408 Face 65938 7970 32970 32971 Face 65939 10227 32972 19356 Face 65940 10227 24341 32972 Face 65941 395 32973 17154 Face 65942 48862 10281 32973 Face 65943 2681 32974 26137 Face 65944 2681 20138 32974 Face 65945 2667 32975 10100 Face 65946 2667 20040 32975 Face 65947 1168 32976 47230 Face 65948 1168 6593 32976 Face 65949 32978 32977 16327 Face 65950 40073 19873 32977 Face 65951 7864 32978 10899 Face 65952 7864 32977 32978 Face 65953 32980 32979 47899 Face 65954 198 29795 32979 Face 65955 198 32980 26511 Face 65956 198 32979 32980 Face 65957 5362 32981 30774 Face 65958 5362 16212 32981 Face 65959 7538 32982 15005 Face 65960 7538 48393 32982 Face 65961 4954 32983 22516 Face 65962 41545 31850 32983 Face 65963 26184 32984 46768 Face 65964 41492 877 32984 Face 65965 22018 32985 4251 Face 65966 22018 34913 32985 Face 65967 3224 32986 47956 Face 65968 3224 24472 32986 Face 65969 1324 32987 45635 Face 65970 1324 4336 32987 Face 65971 6200 32988 44135 Face 65972 6200 28128 32988 Face 65973 19573 32989 12947 Face 65974 32991 3369 32989 Face 65975 19573 32990 32989 Face 65976 19573 32333 32990 Face 65977 32990 32991 32989 Face 65978 32990 13192 32991 Face 65979 9695 32992 22377 Face 65980 36903 21269 32992 Face 65981 42999 32993 22172 Face 65982 9242 674 32993 Face 65983 8416 32994 1918 Face 65984 8416 43554 32994 Face 65985 15528 32995 27190 Face 65986 15528 26563 32995 Face 65987 4301 32996 13656 Face 65988 4301 27359 32996 Face 65989 19707 47996 25199 Face 65990 46426 13134 32997 Face 65991 8461 32998 49566 Face 65992 8461 24972 32998 Face 65993 9580 32999 43089 Face 65994 9580 24202 32999 Face 65995 3109 33000 27447 Face 65996 3109 6709 33000 Face 65997 14332 33001 905 Face 65998 14332 14333 33001 Face 65999 44476 46590 29010 Face 66000 7473 18044 46590 Face 66001 9395 33003 17831 Face 66002 9395 26594 33003 Face 66003 7942 33004 24738 Face 66004 7942 13778 33004 Face 66005 13873 33005 6969 Face 66006 13873 10172 49497 Face 66007 7589 33006 46096 Face 66008 7589 43413 33006 Face 66009 5614 33007 2000 Face 66010 5614 21990 33007 Face 66011 91 33008 17973 Face 66012 36615 10747 33008 Face 66013 6838 33009 32709 Face 66014 33010 19926 33009 Face 66015 6838 40473 33009 Face 66016 6838 1763 40473 Face 66017 36063 33011 18113 Face 66018 36063 23398 33011 Face 66019 5019 33012 19481 Face 66020 5019 2044 33012 Face 66021 6158 33013 20779 Face 66022 6158 16144 33013 Face 66023 20133 33014 27370 Face 66024 20133 17655 33014 Face 66025 41902 33015 18550 Face 66026 43092 36924 33015 Face 66027 33369 33016 31034 Face 66028 7140 33015 41902 Face 66029 23583 33017 29601 Face 66030 23583 2652 33017 Face 66031 112 33018 11544 Face 66032 112 19762 33018 Face 66033 7759 33019 30624 Face 66034 7759 49589 33019 Face 66035 321 33020 17782 Face 66036 321 3669 33020 Face 66037 21813 33021 15100 Face 66038 21813 21814 33021 Face 66039 8918 33022 19443 Face 66040 8918 13634 33022 Face 66041 8475 33023 23390 Face 66042 8475 47823 33023 Face 66043 7055 33024 15398 Face 66044 7055 8827 33024 Face 66045 12977 33025 22454 Face 66046 12977 34500 33025 Face 66047 286 33026 23949 Face 66048 286 37247 33026 Face 66049 11053 33027 3404 Face 66050 11053 6560 33027 Face 66051 33029 33028 20627 Face 66052 33030 10316 33028 Face 66053 5136 33029 43840 Face 66054 33030 33028 33029 Face 66055 5136 33030 33029 Face 66056 5136 10154 33030 Face 66057 19811 33031 28574 Face 66058 19811 27365 33031 Face 66059 39246 33032 32950 Face 66060 17788 32192 33032 Face 66061 11292 33033 48775 Face 66062 11292 48971 33033 Face 66063 13058 33034 29370 Face 66064 49987 24679 33034 Face 66065 33357 33035 20427 Face 66066 2316 14874 33035 Face 66067 3852 33036 748 Face 66068 3852 43434 33036 Face 66069 6925 33037 26930 Face 66070 6925 13751 33037 Face 66071 8225 33038 35674 Face 66072 8225 32294 33038 Face 66073 2636 33039 28129 Face 66074 47515 21996 33040 Face 66075 33039 33040 28128 Face 66076 33039 47515 33040 Face 66077 15175 33041 5138 Face 66078 15175 34288 33041 Face 66079 33041 33042 28732 Face 66080 33041 20191 33042 Face 66081 45978 33043 9326 Face 66082 16423 30255 33043 Face 66083 3664 33044 4859 Face 66084 3664 25682 33044 Face 66085 7220 33045 17820 Face 66086 7220 40901 33045 Face 66087 13396 33046 19407 Face 66088 13396 22534 33046 Face 66089 1450 33047 13554 Face 66090 1450 5215 33047 Face 66091 22346 33048 43867 Face 66092 22346 28300 33048 Face 66093 18465 33049 8693 Face 66094 18465 27634 33049 Face 66095 300 46882 37783 Face 66096 300 6638 33050 Face 66097 452 33051 3463 Face 66098 452 34880 33051 Face 66099 452 33052 10361 Face 66100 452 3463 33052 Face 66101 2160 33053 19308 Face 66102 48518 24560 33053 Face 66103 6144 40959 31105 Face 66104 33500 1939 33054 Face 66105 5946 33055 47604 Face 66106 5946 26319 33055 Face 66107 19037 33056 9400 Face 66108 19037 23796 33056 Face 66109 18431 33057 1166 Face 66110 18431 44968 33057 Face 66111 4676 33058 38271 Face 66112 4676 19880 33058 Face 66113 8098 33059 35079 Face 66114 8098 247 33059 Face 66115 26133 33060 40330 Face 66116 26133 1762 33060 Face 66117 33062 33061 5922 Face 66118 12147 49779 33061 Face 66119 12147 33062 39473 Face 66120 12147 33061 33062 Face 66121 23721 33063 47915 Face 66122 23721 13880 33063 Face 66123 23402 33064 5436 Face 66124 23402 23846 33064 Face 66125 35691 33065 41083 Face 66126 35691 17227 33065 Face 66127 8747 33066 25259 Face 66128 8747 21633 33066 Face 66129 12737 33067 25970 Face 66130 12737 29988 33067 Face 66131 33069 33068 49815 Face 66132 19774 16569 33068 Face 66133 19774 33069 3650 Face 66134 19774 33068 33069 Face 66135 9389 33070 27460 Face 66136 9389 23852 33070 Face 66137 9138 33071 3996 Face 66138 9138 3303 33071 Face 66139 1325 33072 41560 Face 66140 1325 31425 33072 Face 66141 20055 33073 11286 Face 66142 20055 27723 33073 Face 66143 8530 33074 4426 Face 66144 8530 27673 33074 Face 66145 14112 33075 12653 Face 66146 14112 4693 33075 Face 66147 1973 33076 30747 Face 66148 1973 7528 33076 Face 66149 33078 33077 37144 Face 66150 9782 21406 33077 Face 66151 9782 33078 25597 Face 66152 9782 33077 33078 Face 66153 9464 33079 16849 Face 66154 9464 3409 33079 Face 66155 17789 33080 21855 Face 66156 17789 17790 33080 Face 66157 6587 33081 27107 Face 66158 6587 27303 33081 Face 66159 34534 45005 41631 Face 66160 12936 43635 33082 Face 66161 45744 33083 7766 Face 66162 2107 19069 33083 Face 66163 25336 33084 25478 Face 66164 25336 76 33084 Face 66165 48174 33085 27516 Face 66166 1219 28123 33085 Face 66167 33087 33086 22194 Face 66168 23701 46446 33086 Face 66169 23701 33087 26758 Face 66170 23701 33086 33087 Face 66171 714 33088 13248 Face 66172 714 28518 33088 Face 66173 4219 33089 30800 Face 66174 4219 25265 44506 Face 66175 17821 33090 12264 Face 66176 17821 47288 33090 Face 66177 12342 33091 1420 Face 66178 12342 4685 33091 Face 66179 8514 33092 43714 Face 66180 39012 22872 33092 Face 66181 8857 33093 19692 Face 66182 8857 23511 39145 Face 66183 947 33094 32944 Face 66184 947 29803 33094 Face 66185 9359 33095 49739 Face 66186 9359 1640 33095 Face 66187 37803 33096 21187 Face 66188 1111 33097 33096 Face 66189 25743 33097 23153 Face 66190 25743 47055 33097 Face 66191 14573 33098 23235 Face 66192 14573 25146 33098 Face 66193 16762 33099 35628 Face 66194 16762 2953 33099 Face 66195 31981 33100 25934 Face 66196 31981 35835 33100 Face 66197 37359 33101 24228 Face 66198 3790 21441 33101 Face 66199 7283 33102 10108 Face 66200 7283 15782 33102 Face 66201 21746 33103 3820 Face 66202 21746 1763 33103 Face 66203 22368 33104 26707 Face 66204 22368 10440 33104 Face 66205 3511 33105 16855 Face 66206 3511 29394 33105 Face 66207 1183 33106 14708 Face 66208 1183 29622 33106 Face 66209 1444 33107 26652 Face 66210 1444 26549 33107 Face 66211 9593 33108 5543 Face 66212 9593 34838 33108 Face 66213 9499 33109 13537 Face 66214 9499 35997 33109 Face 66215 4926 33110 12973 Face 66216 4926 31586 33110 Face 66217 18656 33111 13482 Face 66218 18656 25379 33111 Face 66219 49178 33112 15730 Face 66220 12554 1363 33112 Face 66221 6567 33113 27493 Face 66222 43977 30493 33113 Face 66223 18936 33114 20010 Face 66224 46870 9720 33114 Face 66225 19093 33115 34945 Face 66226 19093 15978 33115 Face 66227 1081 33116 6258 Face 66228 1081 20977 33116 Face 66229 20308 33117 8992 Face 66230 20308 10399 33117 Face 66231 9486 33118 32407 Face 66232 49433 27104 33118 Face 66233 17416 33119 24327 Face 66234 17416 19485 33119 Face 66235 18891 33120 1537 Face 66236 18891 28094 33120 Face 66237 7813 33121 40611 Face 66238 7813 42975 33121 Face 66239 6727 33122 4578 Face 66240 6727 46729 33122 Face 66241 20759 44281 6131 Face 66242 20759 12102 33123 Face 66243 14667 33124 46207 Face 66244 14667 16012 33124 Face 66245 11805 33125 28653 Face 66246 11805 48580 33125 Face 66247 8720 33126 1466 Face 66248 48089 5479 33126 Face 66249 21578 33127 17014 Face 66250 21578 24611 33127 Face 66251 47474 33128 15834 Face 66252 47475 19630 33128 Face 66253 16047 33129 36346 Face 66254 16047 7307 33129 Face 66255 18630 33130 42741 Face 66256 18630 46653 33130 Face 66257 3834 33131 18223 Face 66258 3834 14771 39708 Face 66259 33133 33132 20507 Face 66260 6480 17735 33132 Face 66261 6480 33133 25732 Face 66262 6480 33132 33133 Face 66263 24125 33134 9957 Face 66264 24125 46677 33134 Face 66265 11210 33135 475 Face 66266 11210 5570 33135 Face 66267 7393 33136 22860 Face 66268 7393 29847 33136 Face 66269 6033 33137 41835 Face 66270 6033 23479 33137 Face 66271 4013 48487 20046 Face 66272 4013 9495 33138 Face 66273 13378 33139 20437 Face 66274 13378 43151 33139 Face 66275 11877 37991 27040 Face 66276 11877 30319 33140 Face 66277 12867 33141 16287 Face 66278 12867 21106 33141 Face 66279 8332 33142 32712 Face 66280 8332 14664 33142 Face 66281 24387 33143 37473 Face 66282 24387 36804 33143 Face 66283 17606 33144 32474 Face 66284 17606 38390 33144 Face 66285 14650 33145 24726 Face 66286 14650 49389 33145 Face 66287 15206 33146 24062 Face 66288 46400 11508 33146 Face 66289 13964 33147 3750 Face 66290 48377 23988 33147 Face 66291 33149 33148 28167 Face 66292 33149 31536 33148 Face 66293 16055 33149 28167 Face 66294 16055 31536 33149 Face 66295 133 33150 30374 Face 66296 38391 18767 33150 Face 66297 3245 33151 17757 Face 66298 35928 32272 33151 Face 66299 27109 33152 9763 Face 66300 27109 43798 33152 Face 66301 34480 33153 45563 Face 66302 34481 18979 33153 Face 66303 19271 33154 24353 Face 66304 19271 25009 33154 Face 66305 4913 33155 30593 Face 66306 4913 27807 33155 Face 66307 43091 33156 38729 Face 66308 467 26914 48800 Face 66309 20662 33157 23482 Face 66310 20662 26289 33157 Face 66311 19525 33158 2352 Face 66312 19525 15330 33158 Face 66313 5606 33159 13695 Face 66314 5606 22808 33159 Face 66315 4958 33160 43326 Face 66316 4958 15702 33160 Face 66317 35352 44838 13332 Face 66318 720 14736 33161 Face 66319 7800 33162 16407 Face 66320 7800 28628 33162 Face 66321 36319 33163 38082 Face 66322 36319 11265 33163 Face 66323 6306 33164 45952 Face 66324 40271 6307 33164 Face 66325 12946 33165 17656 Face 66326 12946 47246 45660 Face 66327 8550 33166 24171 Face 66328 8550 4184 33166 Face 66329 23331 33167 3132 Face 66330 23331 49430 33167 Face 66331 4592 33168 42215 Face 66332 4592 12467 33168 Face 66333 43283 33169 25878 Face 66334 43283 28113 33169 Face 66335 2242 33170 24934 Face 66336 2242 25691 33170 Face 66337 42171 33171 14915 Face 66338 1644 39867 33171 Face 66339 1166 49840 18431 Face 66340 1166 18432 33172 Face 66341 8487 33173 30442 Face 66342 8487 35603 33173 Face 66343 4285 33174 9161 Face 66344 48130 27462 33174 Face 66345 4696 33175 20140 Face 66346 4696 29676 33175 Face 66347 26310 33176 678 Face 66348 26310 36790 33176 Face 66349 1034 33177 27214 Face 66350 1034 38252 33177 Face 66351 12667 33178 11464 Face 66352 12667 15418 33178 Face 66353 4163 33179 36429 Face 66354 4163 44441 33179 Face 66355 39369 33180 12118 Face 66356 7712 48372 33180 Face 66357 11816 33181 2665 Face 66358 33182 23460 33181 Face 66359 11816 33182 33181 Face 66360 11816 20879 33182 Face 66361 16898 33183 3164 Face 66362 16898 21223 33183 Face 66363 3005 33184 30881 Face 66364 3005 25495 33184 Face 66365 14170 33185 32037 Face 66366 14170 5939 33185 Face 66367 10328 33186 27650 Face 66368 10328 39973 33186 Face 66369 40784 33187 24867 Face 66370 3642 9384 33187 Face 66371 3179 33188 10336 Face 66372 3179 28323 33188 Face 66373 11747 33189 42066 Face 66374 11747 8932 33189 Face 66375 8317 33190 23093 Face 66376 49039 23377 33190 Face 66377 3628 33191 26931 Face 66378 3628 18013 33191 Face 66379 2885 33192 12141 Face 66380 2885 16921 33192 Face 66381 39705 33193 11259 Face 66382 1465 4551 33193 Face 66383 9837 33194 19608 Face 66384 9837 26379 33194 Face 66385 9639 33195 9773 Face 66386 9639 27930 33195 Face 66387 2119 33196 47587 Face 66388 2119 37187 33196 Face 66389 41237 33197 6300 Face 66390 11644 21811 33197 Face 66391 56 33198 7240 Face 66392 56 40999 33198 Face 66393 14700 33199 27507 Face 66394 14700 33762 33199 Face 66395 7266 33200 10896 Face 66396 7266 16959 48425 Face 66397 6066 33201 13205 Face 66398 6066 15371 33201 Face 66399 6066 33202 15371 Face 66400 6066 41763 33202 Face 66401 10552 33203 17822 Face 66402 10552 4004 33203 Face 66403 7663 33204 46093 Face 66404 33205 11244 33204 Face 66405 7663 33205 33204 Face 66406 7663 10493 33205 Face 66407 33207 33206 5067 Face 66408 9255 1063 33206 Face 66409 45276 33207 18789 Face 66410 9255 33206 33207 Face 66411 10968 33208 18366 Face 66412 10968 19797 33208 Face 66413 22425 33209 4620 Face 66414 22425 1484 33209 Face 66415 7332 33210 41235 Face 66416 7332 20621 33210 Face 66417 21553 33211 25754 Face 66418 21553 17484 33211 Face 66419 25350 33212 224 Face 66420 25350 11250 33212 Face 66421 8905 33213 40199 Face 66422 8905 3390 33213 Face 66423 43067 33214 5374 Face 66424 4469 13953 33214 Face 66425 528 33215 44581 Face 66426 36961 41610 33215 Face 66427 7631 33216 22664 Face 66428 7631 19446 33216 Face 66429 18119 33217 1162 Face 66430 18119 47206 33217 Face 66431 42160 33218 11618 Face 66432 11745 21048 33218 Face 66433 3776 33219 25597 Face 66434 3776 7092 33219 Face 66435 18016 33220 13996 Face 66436 42474 43629 33220 Face 66437 2809 33221 15187 Face 66438 2809 18292 33221 Face 66439 1570 33222 6433 Face 66440 1570 24341 33222 Face 66441 1328 33223 19122 Face 66442 1328 25524 33223 Face 66443 8283 33224 17582 Face 66444 8283 14318 33224 Face 66445 3505 33225 35906 Face 66446 3505 15159 33225 Face 66447 40618 33226 774 Face 66448 7312 27862 33226 Face 66449 4801 33227 47041 Face 66450 4801 27253 33227 Face 66451 5970 33228 20917 Face 66452 5970 18131 33228 Face 66453 9195 33229 16582 Face 66454 44717 22510 33229 Face 66455 25212 33230 27435 Face 66456 25212 1289 33230 Face 66457 41582 33231 26495 Face 66458 12826 29539 33231 Face 66459 33233 33232 15218 Face 66460 8913 3615 33232 Face 66461 8913 33233 47057 Face 66462 8913 33232 33233 Face 66463 6805 33234 2624 Face 66464 6805 20780 33234 Face 66465 10317 33235 7768 Face 66466 10317 31118 33235 Face 66467 33237 42843 32682 Face 66468 1815 29576 33236 Face 66469 1815 33237 39489 Face 66470 1815 42843 33237 Face 66471 4637 48748 16058 Face 66472 4637 47046 33238 Face 66473 321 33239 3669 Face 66474 321 21831 33239 Face 66475 20982 33240 3622 Face 66476 20982 38294 33240 Face 66477 4878 33241 42394 Face 66478 4878 10162 33241 Face 66479 4584 33242 27941 Face 66480 4584 20009 33242 Face 66481 10967 33243 10066 Face 66482 10967 36120 33243 Face 66483 11878 33244 33934 Face 66484 11878 43013 33244 Face 66485 19839 33245 13427 Face 66486 19839 46526 33245 Face 66487 33247 33246 23139 Face 66488 10456 24778 33246 Face 66489 10456 33247 21344 Face 66490 10456 33246 33247 Face 66491 11817 33248 47370 Face 66492 11817 11819 33248 Face 66493 5949 33249 9543 Face 66494 5949 1414 33249 Face 66495 33251 33250 12658 Face 66496 5036 9350 48125 Face 66497 5036 33251 31405 Face 66498 5036 33250 33251 Face 66499 11656 33252 21513 Face 66500 11656 20886 33252 Face 66501 33254 33253 23288 Face 66502 41908 36784 33253 Face 66503 16858 33254 16450 Face 66504 16858 33253 33254 Face 66505 21322 33255 27194 Face 66506 21322 21323 33255 Face 66507 28326 33256 47754 Face 66508 28326 13942 33256 Face 66509 4738 33257 33148 Face 66510 4738 31537 33257 Face 66511 21562 33258 1161 Face 66512 21562 2828 33258 Face 66513 16420 33259 4011 Face 66514 16420 24184 33259 Face 66515 21643 33260 35998 Face 66516 21643 45837 33260 Face 66517 8984 49115 36941 Face 66518 8984 43151 33261 Face 66519 15367 33262 27481 Face 66520 15367 16141 33262 Face 66521 3626 33263 19068 Face 66522 3626 49602 33263 Face 66523 24708 33264 23290 Face 66524 24708 49062 33264 Face 66525 21729 33265 34316 Face 66526 21729 23389 33265 Face 66527 10966 33266 26794 Face 66528 10966 45435 33266 Face 66529 20300 33267 20299 Face 66530 20300 43358 33267 Face 66531 15742 40406 12050 Face 66532 15742 47228 33268 Face 66533 47318 33269 26755 Face 66534 14190 3996 33269 Face 66535 36432 33270 13373 Face 66536 45827 22779 33270 Face 66537 35332 33271 11006 Face 66538 24220 26516 33271 Face 66539 11382 33272 44411 Face 66540 11382 12591 33272 Face 66541 3112 33273 33836 Face 66542 3112 29935 33273 Face 66543 33275 33274 1404 Face 66544 33276 41880 33274 Face 66545 10198 33275 38636 Face 66546 33276 33274 33275 Face 66547 10198 33276 33275 Face 66548 49048 8638 33276 Face 66549 41941 45104 15801 Face 66550 816 15508 45104 Face 66551 10524 33278 48940 Face 66552 10524 11005 33278 Face 66553 41085 33279 23105 Face 66554 5759 21227 33279 Face 66555 4826 33280 27741 Face 66556 4826 40552 33280 Face 66557 5636 33281 14702 Face 66558 5636 39171 33281 Face 66559 25786 33282 30409 Face 66560 25786 27021 33282 Face 66561 11814 33283 43658 Face 66562 11814 22076 33283 Face 66563 17277 33284 13232 Face 66564 17277 46678 33284 Face 66565 20135 33285 15287 Face 66566 20135 6068 33285 Face 66567 13931 33286 42015 Face 66568 13931 7587 33286 Face 66569 12066 33287 22969 Face 66570 12066 7942 33287 Face 66571 6530 33288 13735 Face 66572 6530 8965 33288 Face 66573 28600 33289 34335 Face 66574 28600 11784 33289 Face 66575 33289 33290 15011 Face 66576 33289 11784 33290 Face 66577 11377 33291 890 Face 66578 11377 42206 33291 Face 66579 22452 33292 18464 Face 66580 22452 48060 33292 Face 66581 2471 33293 40653 Face 66582 2471 25973 33293 Face 66583 12095 33294 28023 Face 66584 12095 25306 33294 Face 66585 19730 33295 8677 Face 66586 19730 2397 33295 Face 66587 6019 33296 39044 Face 66588 6019 23161 33296 Face 66589 47909 33297 3199 Face 66590 6142 35124 33297 Face 66591 22739 33298 2266 Face 66592 22739 4737 33298 Face 66593 18502 33299 1561 Face 66594 18502 25623 33299 Face 66595 18340 33300 29997 Face 66596 18340 42199 33300 Face 66597 8029 33301 22506 Face 66598 8029 19480 33301 Face 66599 710 33302 25884 Face 66600 710 26676 33302 Face 66601 14850 33303 2195 Face 66602 14850 31222 33303 Face 66603 15300 33304 12813 Face 66604 15300 27062 33304 Face 66605 14062 33305 22986 Face 66606 36371 1619 33305 Face 66607 3698 33306 31415 Face 66608 3698 13348 33306 Face 66609 6008 33307 32424 Face 66610 6008 15577 33307 Face 66611 4598 33308 24305 Face 66612 4598 47044 33308 Face 66613 12324 33309 20379 Face 66614 12324 1724 33309 Face 66615 33311 33310 5853 Face 66616 33311 14879 33310 Face 66617 5263 33311 29293 Face 66618 5263 24984 33311 Face 66619 4088 33312 37607 Face 66620 42950 17699 33312 Face 66621 18314 33313 14114 Face 66622 18314 3129 33313 Face 66623 16542 33314 16541 Face 66624 16542 16543 33314 Face 66625 33316 33315 25313 Face 66626 39841 6634 33315 Face 66627 1456 33316 32226 Face 66628 1456 33315 33316 Face 66629 6588 33317 37014 Face 66630 6588 3269 33317 Face 66631 41948 33318 10790 Face 66632 41948 11822 33318 Face 66633 5334 33319 13147 Face 66634 5334 30516 33319 Face 66635 3303 33320 3942 Face 66636 3303 12713 33320 Face 66637 2108 33321 27379 Face 66638 33323 12116 33321 Face 66639 33323 33322 48908 Face 66640 48922 7370 33322 Face 66641 2108 33323 33321 Face 66642 48922 33322 33323 Face 66643 5558 33324 23059 Face 66644 5558 27097 33324 Face 66645 9083 33325 21080 Face 66646 9083 28015 33325 Face 66647 43875 33326 26958 Face 66648 19151 18654 33326 Face 66649 13791 33327 4711 Face 66650 13791 17839 33327 Face 66651 19022 33328 308 Face 66652 19022 4697 33328 Face 66653 41335 33329 3539 Face 66654 41335 15236 33329 Face 66655 8449 33330 8764 Face 66656 8449 31398 33330 Face 66657 2773 33331 18729 Face 66658 2773 23487 33331 Face 66659 4997 33332 17900 Face 66660 4997 27468 33332 Face 66661 2755 33333 24173 Face 66662 2755 39939 33333 Face 66663 33335 33334 36906 Face 66664 4595 4549 33334 Face 66665 4595 33335 32086 Face 66666 4595 33334 33335 Face 66667 8873 33336 31410 Face 66668 8873 13483 33336 Face 66669 4430 33337 11839 Face 66670 4430 23589 33337 Face 66671 374 33338 16155 Face 66672 33339 23393 33338 Face 66673 374 33339 33338 Face 66674 374 31395 33339 Face 66675 24338 33340 28138 Face 66676 24338 33499 33340 Face 66677 11905 33341 26282 Face 66678 11905 3739 33341 Face 66679 1058 33342 9708 Face 66680 1058 38639 33342 Face 66681 4374 33343 17359 Face 66682 4374 26945 33343 Face 66683 46180 33344 18890 Face 66684 12692 20110 33344 Face 66685 10796 33345 11242 Face 66686 10796 27433 33345 Face 66687 4587 33346 45162 Face 66688 33347 21902 33346 Face 66689 4587 33347 33346 Face 66690 4587 24963 33347 Face 66691 20098 33348 6097 Face 66692 20098 38848 33348 Face 66693 11145 33349 43279 Face 66694 11145 35597 33349 Face 66695 10428 33350 5749 Face 66696 10428 1202 33350 Face 66697 14336 33351 40803 Face 66698 14336 30778 33351 Face 66699 12282 33352 10811 Face 66700 12282 35532 33352 Face 66701 41001 33353 30247 Face 66702 9791 23782 33353 Face 66703 6396 33354 40346 Face 66704 41790 16674 33354 Face 66705 8948 41613 18577 Face 66706 37420 6266 33355 Face 66707 7423 33356 17399 Face 66708 7423 41841 33356 Face 66709 42580 33357 882 Face 66710 2316 33035 33357 Face 66711 33359 33358 906 Face 66712 6721 26142 33358 Face 66713 6721 33359 8711 Face 66714 6721 33358 33359 Face 66715 26238 33360 12632 Face 66716 26238 27925 33360 Face 66717 4835 33361 1175 Face 66718 4835 24064 33361 Face 66719 34490 42886 2071 Face 66720 5918 9216 33362 Face 66721 21990 33363 21308 Face 66722 21990 7614 33363 Face 66723 9061 33364 32655 Face 66724 9061 3041 33364 Face 66725 20479 33365 47776 Face 66726 20479 36587 33365 Face 66727 14674 33366 8686 Face 66728 14674 10089 33366 Face 66729 4899 33367 44389 Face 66730 38878 17687 33367 Face 66731 2737 33368 26188 Face 66732 2737 21579 33368 Face 66733 7140 33369 12722 Face 66734 7140 33016 33369 Face 66735 5235 33370 20815 Face 66736 5235 10936 33370 Face 66737 5834 33371 18883 Face 66738 37055 40103 33371 Face 66739 5299 33372 20211 Face 66740 5299 30894 33372 Face 66741 12777 33373 22313 Face 66742 12777 41763 33373 Face 66743 15048 33374 28977 Face 66744 15048 4167 33374 Face 66745 6401 41239 4740 Face 66746 44574 13009 33375 Face 66747 2100 33376 20719 Face 66748 2100 35759 33376 Face 66749 1585 33377 33864 Face 66750 1585 14742 33377 Face 66751 23043 33378 37156 Face 66752 23043 11628 33378 Face 66753 33277 33379 11148 Face 66754 33277 38505 33379 Face 66755 28316 33380 15712 Face 66756 28316 26075 33380 Face 66757 8831 33381 49967 Face 66758 8831 19446 33381 Face 66759 6357 33382 11507 Face 66760 6357 40995 33382 Face 66761 37375 33383 4406 Face 66762 6790 9354 33383 Face 66763 13775 33384 12723 Face 66764 13775 19456 33384 Face 66765 40238 33385 25016 Face 66766 5837 30508 33385 Face 66767 17375 33386 25314 Face 66768 17375 4327 33386 Face 66769 26729 33387 29984 Face 66770 48230 14510 33387 Face 66771 14968 33388 42298 Face 66772 14968 14970 33388 Face 66773 7722 33389 12974 Face 66774 7722 21454 33389 Face 66775 24809 33390 35220 Face 66776 24809 25545 33390 Face 66777 6216 33391 41425 Face 66778 6216 44651 33391 Face 66779 18945 33392 11930 Face 66780 18945 1728 33392 Face 66781 16418 33393 17472 Face 66782 16418 22246 33393 Face 66783 10381 33394 49682 Face 66784 36923 6558 33394 Face 66785 34285 33395 43751 Face 66786 4780 4117 33395 Face 66787 4042 33396 24214 Face 66788 4042 35066 33396 Face 66789 12042 33397 17991 Face 66790 12042 24249 33397 Face 66791 12933 33398 37505 Face 66792 12933 25580 33398 Face 66793 5396 33399 30403 Face 66794 5396 27658 33399 Face 66795 39381 33400 18445 Face 66796 43400 11936 33400 Face 66797 11038 33401 544 Face 66798 11038 23533 46026 Face 66799 21869 33402 27268 Face 66800 21869 15578 33402 Face 66801 6288 33403 17346 Face 66802 6288 21008 33403 Face 66803 2962 33404 34408 Face 66804 2962 22199 33404 Face 66805 2962 33405 28273 Face 66806 2962 34408 33405 Face 66807 15849 33406 45439 Face 66808 15849 7139 33406 Face 66809 33406 33407 45439 Face 66810 33406 16936 33407 Face 66811 3010 33408 31686 Face 66812 3010 28793 33408 Face 66813 752 33409 17659 Face 66814 39294 21008 33409 Face 66815 41338 33410 7516 Face 66816 41338 25569 33410 Face 66817 13150 33411 6689 Face 66818 13150 28791 33411 Face 66819 7208 33412 2481 Face 66820 33874 22754 33412 Face 66821 23974 33413 16732 Face 66822 23974 2131 33413 Face 66823 27836 33414 8654 Face 66824 27836 4849 33414 Face 66825 14916 33415 42760 Face 66826 14916 30262 33415 Face 66827 10925 33416 42984 Face 66828 10925 23235 33416 Face 66829 24064 33417 12910 Face 66830 24064 47002 33417 Face 66831 43274 47108 30283 Face 66832 33419 12542 33418 Face 66833 8751 33419 33418 Face 66834 8751 25354 33419 Face 66835 6149 33420 36013 Face 66836 6149 25108 33420 Face 66837 7720 33421 1727 Face 66838 36437 24026 33421 Face 66839 2468 33422 11712 Face 66840 2468 26247 33422 Face 66841 3288 33423 14581 Face 66842 3288 35492 33423 Face 66843 17401 33424 22114 Face 66844 17401 3317 33424 Face 66845 1490 33425 9322 Face 66846 47826 44067 33425 Face 66847 1490 33426 33425 Face 66848 33427 16384 33426 Face 66849 1490 33427 33426 Face 66850 33428 23468 33427 Face 66851 1490 33428 33427 Face 66852 1490 9322 33428 Face 66853 8602 33429 27198 Face 66854 8602 34219 33429 Face 66855 3447 33430 46687 Face 66856 3447 45422 33430 Face 66857 22269 33431 2065 Face 66858 22269 22270 33431 Face 66859 22613 33432 19119 Face 66860 45062 27195 33432 Face 66861 34618 33433 47924 Face 66862 16492 3994 33433 Face 66863 18864 33434 27080 Face 66864 18864 17281 33434 Face 66865 14724 33435 15069 Face 66866 34380 9363 33435 Face 66867 7346 33436 38404 Face 66868 7346 29106 33436 Face 66869 18313 33437 39890 Face 66870 18313 27187 33437 Face 66871 4834 33438 47227 Face 66872 4834 28923 33438 Face 66873 8079 33439 28141 Face 66874 8079 28665 33439 Face 66875 41266 33440 36797 Face 66876 6391 13962 33440 Face 66877 25169 33441 29029 Face 66878 25169 14646 33441 Face 66879 5282 33442 15896 Face 66880 5282 14167 33442 Face 66881 44076 33443 44695 Face 66882 9766 5386 33443 Face 66883 10789 33444 21055 Face 66884 10789 3021 33444 Face 66885 8813 33445 30465 Face 66886 8813 38313 33445 Face 66887 20367 33446 6635 Face 66888 20367 47710 33446 Face 66889 20367 33447 47710 Face 66890 20367 29482 33447 Face 66891 44089 33448 26361 Face 66892 12591 35330 33448 Face 66893 9778 33449 8337 Face 66894 35265 19930 33449 Face 66895 6564 33450 25257 Face 66896 6564 19592 33450 Face 66897 12813 33451 21753 Face 66898 12813 33304 33451 Face 66899 9010 41475 20941 Face 66900 9010 13978 41475 Face 66901 16188 33453 16189 Face 66902 16188 21497 33453 Face 66903 24097 33454 32388 Face 66904 24097 11258 33454 Face 66905 5508 33455 26124 Face 66906 5508 24381 33455 Face 66907 11195 33456 47940 Face 66908 11195 11196 33456 Face 66909 40233 33457 13894 Face 66910 7104 25739 33457 Face 66911 33459 33458 18725 Face 66912 12332 12330 33458 Face 66913 12332 33459 23954 Face 66914 12332 33458 33459 Face 66915 14342 33460 6131 Face 66916 37665 40282 33460 Face 66917 17140 33461 1517 Face 66918 17140 7467 33461 Face 66919 11468 33462 18134 Face 66920 11468 45103 33462 Face 66921 2792 33463 31691 Face 66922 2792 48502 33463 Face 66923 14271 33464 16248 Face 66924 14271 179 33464 Face 66925 11181 33465 27013 Face 66926 11181 1914 33465 Face 66927 8880 33466 26548 Face 66928 8880 23567 33466 Face 66929 23916 33467 25652 Face 66930 23916 4391 33467 Face 66931 13812 33468 362 Face 66932 13812 27416 33468 Face 66933 36391 33469 48020 Face 66934 1195 14622 33469 Face 66935 45989 33470 11406 Face 66936 2105 13172 33470 Face 66937 34062 33471 21287 Face 66938 13629 16797 33471 Face 66939 43670 33472 23228 Face 66940 5327 43664 33472 Face 66941 18248 33473 26236 Face 66942 18248 44903 33473 Face 66943 1265 33474 18898 Face 66944 1265 11678 33474 Face 66945 7872 33475 1567 Face 66946 35504 23738 33475 Face 66947 7046 33476 20264 Face 66948 46673 3559 33476 Face 66949 13153 33477 38216 Face 66950 13153 28374 33477 Face 66951 347 33478 3918 Face 66952 347 24576 33478 Face 66953 9480 33479 42756 Face 66954 9480 5506 33479 Face 66955 46916 33480 22118 Face 66956 7048 31557 33480 Face 66957 12272 33481 2371 Face 66958 40174 18811 33481 Face 66959 5389 33482 25522 Face 66960 5389 34216 33482 Face 66961 24041 33483 9734 Face 66962 24041 1422 33483 Face 66963 40440 33484 17525 Face 66964 275 27376 33484 Face 66965 2702 33485 6840 Face 66966 2702 25892 33485 Face 66967 4630 33486 18170 Face 66968 4630 24837 33486 Face 66969 9678 33487 20025 Face 66970 9678 25992 33487 Face 66971 2749 33488 20622 Face 66972 46743 4126 49491 Face 66973 7087 33489 41153 Face 66974 33902 42953 33489 Face 66975 9306 33490 35098 Face 66976 9306 10328 33490 Face 66977 17753 33491 15456 Face 66978 17753 1775 33491 Face 66979 26239 33492 42635 Face 66980 26239 37989 33492 Face 66981 7173 33493 5574 Face 66982 7173 2769 33493 Face 66983 23168 33494 27128 Face 66984 23168 42287 33494 Face 66985 49396 33495 16979 Face 66986 6033 23480 33495 Face 66987 6033 33496 23480 Face 66988 6033 41835 33496 Face 66989 24785 33497 19923 Face 66990 24785 4307 33497 Face 66991 10103 33498 5774 Face 66992 10103 45785 33498 Face 66993 8673 33499 29140 Face 66994 8673 15313 39954 Face 66995 6144 33500 40959 Face 66996 6144 3608 33500 Face 66997 8672 33501 9237 Face 66998 8672 18987 33501 Face 66999 13492 33502 34607 Face 67000 13492 28381 33502 Face 67001 40571 33503 49778 Face 67002 12401 128 33503 Face 67003 4856 48674 9927 Face 67004 35745 3026 33504 Face 67005 38106 33505 17944 Face 67006 11333 6224 33505 Face 67007 6699 33506 29212 Face 67008 6699 19827 33506 Face 67009 13790 33507 28195 Face 67010 13790 24282 33507 Face 67011 16131 33508 47124 Face 67012 16131 20792 33508 Face 67013 21139 33509 19215 Face 67014 21139 17939 33509 Face 67015 14477 33510 9762 Face 67016 14477 29309 33510 Face 67017 72 33511 20493 Face 67018 72 46765 33511 Face 67019 5233 33512 34916 Face 67020 5233 44263 33512 Face 67021 2173 33513 45486 Face 67022 2173 23151 33513 Face 67023 3557 33514 15283 Face 67024 3557 31629 33514 Face 67025 12718 33515 27075 Face 67026 12718 5452 33515 Face 67027 1280 33516 29636 Face 67028 41187 15935 33516 Face 67029 6492 33517 25495 Face 67030 6492 17515 33517 Face 67031 3893 33518 21977 Face 67032 3893 23600 33518 Face 67033 19856 33519 44023 Face 67034 19856 28987 33519 Face 67035 21515 33520 3866 Face 67036 21515 39434 33520 Face 67037 8217 33521 27570 Face 67038 33522 43343 33521 Face 67039 8217 33522 33521 Face 67040 8217 18813 33522 Face 67041 3381 33523 30693 Face 67042 3381 16973 33523 Face 67043 3913 33524 41575 Face 67044 3913 23029 33524 Face 67045 10696 33525 31409 Face 67046 10696 13240 33525 Face 67047 14379 33526 44853 Face 67048 14379 31495 33526 Face 67049 5539 33527 36631 Face 67050 37326 40258 33527 Face 67051 33527 33528 27685 Face 67052 33527 40258 33528 Face 67053 6375 33529 13557 Face 67054 47220 29625 33529 Face 67055 3415 33530 20189 Face 67056 3415 33922 33530 Face 67057 38329 33531 41321 Face 67058 33596 47151 33531 Face 67059 4909 33532 17418 Face 67060 4909 22064 33532 Face 67061 3246 33533 25630 Face 67062 3246 16579 33533 Face 67063 25552 33534 24323 Face 67064 25552 3015 33534 Face 67065 25552 33535 3015 Face 67066 46826 18052 33535 Face 67067 19024 33536 29039 Face 67068 19024 48146 33536 Face 67069 10428 33537 1202 Face 67070 10428 34192 33537 Face 67071 2323 33538 47745 Face 67072 2323 31002 33538 Face 67073 8016 42801 25173 Face 67074 8016 241 42801 Face 67075 25540 33540 48806 Face 67076 25540 4605 33540 Face 67077 47199 33541 30745 Face 67078 20652 12295 33541 Face 67079 6268 33543 20709 Face 67080 6268 25501 33543 Face 67081 33542 33543 25501 Face 67082 33542 19093 33543 Face 67083 12916 33544 10661 Face 67084 12916 24964 33544 Face 67085 25017 33545 9727 Face 67086 25017 9184 33545 Face 67087 20463 33546 6060 Face 67088 20463 1065 33546 Face 67089 11770 33547 41278 Face 67090 11770 49727 33547 Face 67091 10003 33548 30683 Face 67092 10003 29558 33548 Face 67093 33885 33549 14127 Face 67094 442 41845 33549 Face 67095 19140 33550 48556 Face 67096 19140 1774 33550 Face 67097 41965 33551 28994 Face 67098 33552 47897 33551 Face 67099 41965 33552 33551 Face 67100 9319 8272 33552 Face 67101 5435 33553 13914 Face 67102 5435 38340 33553 Face 67103 3816 33554 42001 Face 67104 3816 24814 33554 Face 67105 28801 33555 26784 Face 67106 28801 27859 33555 Face 67107 41744 33556 13865 Face 67108 33557 6195 33556 Face 67109 10757 33557 33556 Face 67110 10757 1756 33557 Face 67111 9552 33558 27799 Face 67112 44781 15239 33558 Face 67113 5520 33559 24787 Face 67114 5520 16230 33559 Face 67115 10838 33560 47493 Face 67116 10838 12119 33560 Face 67117 4512 33561 20945 Face 67118 33562 48395 33561 Face 67119 4512 33562 33561 Face 67120 4512 21350 33562 Face 67121 5063 33563 13380 Face 67122 5063 23044 33563 Face 67123 21925 33564 17462 Face 67124 21925 39057 33564 Face 67125 23911 33565 18722 Face 67126 23911 10179 33565 Face 67127 3842 33566 24802 Face 67128 37776 39701 33566 Face 67129 1293 33567 5972 Face 67130 1293 25181 33567 Face 67131 515 33568 12361 Face 67132 515 20997 33568 Face 67133 40758 33569 21645 Face 67134 35753 19642 33569 Face 67135 20794 48898 27961 Face 67136 20794 86 48898 Face 67137 11208 33571 319 Face 67138 33572 320 33571 Face 67139 11208 33572 33571 Face 67140 11208 13155 33572 Face 67141 33574 33573 10134 Face 67142 798 48342 33573 Face 67143 47461 33574 32121 Face 67144 798 33573 33574 Face 67145 15275 33575 15276 Face 67146 15275 2294 33575 Face 67147 25464 33576 7125 Face 67148 25464 27188 33576 Face 67149 13599 33577 27781 Face 67150 13599 3074 33577 Face 67151 13675 33578 19996 Face 67152 13675 6431 33578 Face 67153 19330 33579 10135 Face 67154 19330 20361 33579 Face 67155 16678 33580 27147 Face 67156 16678 2540 33580 Face 67157 3349 33581 25214 Face 67158 3349 22003 33581 Face 67159 12841 33582 6233 Face 67160 12841 15794 33582 Face 67161 11516 33583 44372 Face 67162 11516 8279 33583 Face 67163 17813 33584 14846 Face 67164 17813 35256 33584 Face 67165 739 33585 49090 Face 67166 739 32290 33585 Face 67167 15875 33586 16350 Face 67168 15875 1675 33586 Face 67169 13536 33587 48701 Face 67170 13536 20113 33587 Face 67171 45731 33588 25061 Face 67172 45731 29450 33588 Face 67173 2810 33589 31590 Face 67174 33591 16835 44464 Face 67175 2810 33590 44464 Face 67176 2810 28271 33590 Face 67177 33590 33591 44464 Face 67178 33590 6960 33591 Face 67179 10990 33592 26030 Face 67180 10990 16949 33592 Face 67181 4168 33593 39958 Face 67182 48098 28648 33593 Face 67183 5664 33594 6737 Face 67184 5664 33469 33594 Face 67185 26505 33595 31184 Face 67186 26505 28095 33595 Face 67187 11477 33596 33531 Face 67188 11477 1709 33596 Face 67189 23053 33597 28407 Face 67190 23053 23052 33597 Face 67191 45236 33598 48923 Face 67192 9297 26424 33598 Face 67193 42989 33599 17532 Face 67194 2124 15017 33599 Face 67195 4112 33600 28129 Face 67196 4112 32676 33600 Face 67197 13984 33601 24133 Face 67198 13984 1967 33601 Face 67199 28210 33602 28211 Face 67200 28210 11695 33602 Face 67201 13974 33603 287 Face 67202 13974 23210 33603 Face 67203 47527 33604 21970 Face 67204 47527 34395 33604 Face 67205 3364 33605 26491 Face 67206 3364 13312 33605 Face 67207 368 33606 20306 Face 67208 47816 19961 33606 Face 67209 33608 33607 10395 Face 67210 4117 22941 33607 Face 67211 4117 33608 14462 Face 67212 4117 33607 33608 Face 67213 12882 33609 15155 Face 67214 12882 21113 44869 Face 67215 39108 33610 16082 Face 67216 12646 40116 33610 Face 67217 21140 33611 3293 Face 67218 21140 5514 33611 Face 67219 1324 33612 19660 Face 67220 1324 35483 33612 Face 67221 15604 33613 9864 Face 67222 15604 42988 33613 Face 67223 16645 33614 36334 Face 67224 41396 6042 33614 Face 67225 2999 33615 48324 Face 67226 2999 32648 33615 Face 67227 4564 33616 10173 Face 67228 4564 37406 33616 Face 67229 10372 33617 49186 Face 67230 10372 195 33617 Face 67231 10372 33618 195 Face 67232 10372 20727 33618 Face 67233 970 33619 25868 Face 67234 970 31241 33619 Face 67235 15680 33620 45507 Face 67236 15680 40387 33620 Face 67237 16939 33621 7955 Face 67238 16939 12957 33621 Face 67239 34584 33622 22535 Face 67240 1499 11882 33622 Face 67241 13567 33623 18521 Face 67242 13567 46635 33623 Face 67243 920 33624 44197 Face 67244 920 43682 33624 Face 67245 33626 33625 6722 Face 67246 9793 25923 33625 Face 67247 9793 33626 35971 Face 67248 9793 33625 33626 Face 67249 4713 33627 18433 Face 67250 4713 30234 33627 Face 67251 13235 33628 49539 Face 67252 13235 833 33628 Face 67253 654 33629 39225 Face 67254 654 24246 33629 Face 67255 21280 33630 25735 Face 67256 21280 43567 33630 Face 67257 5825 33631 27157 Face 67258 5825 15736 33631 Face 67259 44766 33632 46146 Face 67260 4263 19859 33632 Face 67261 33634 33633 23267 Face 67262 10406 38443 33633 Face 67263 10406 33634 29819 Face 67264 10406 33633 33634 Face 67265 12097 33635 23505 Face 67266 12097 3012 33635 Face 67267 7929 33636 32001 Face 67268 7929 43683 33636 Face 67269 16443 33637 31693 Face 67270 16443 1254 33637 Face 67271 4049 33638 11281 Face 67272 4049 29589 33638 Face 67273 7778 48447 4124 Face 67274 7778 48992 33639 Face 67275 43591 33640 15260 Face 67276 7778 4124 40845 Face 67277 21177 33641 2700 Face 67278 21177 43049 33641 Face 67279 3586 33642 17162 Face 67280 3586 37462 33642 Face 67281 7369 33643 12320 Face 67282 7369 11392 33643 Face 67283 45587 33644 18492 Face 67284 45586 1459 33644 Face 67285 16499 33645 32915 Face 67286 16499 39910 33645 Face 67287 38992 33646 14340 Face 67288 19361 43720 33646 Face 67289 251 33647 21339 Face 67290 251 11475 33647 Face 67291 2267 33648 27057 Face 67292 2267 19605 33648 Face 67293 2174 33649 10557 Face 67294 2174 16895 33649 Face 67295 28789 33650 376 Face 67296 28789 11485 33650 Face 67297 3635 33651 6177 Face 67298 3635 14830 33651 Face 67299 2953 45003 27884 Face 67300 2953 9809 45003 Face 67301 19747 33653 47844 Face 67302 48219 19748 33653 Face 67303 37315 33654 16114 Face 67304 7956 31927 33654 Face 67305 11451 33655 46313 Face 67306 33656 11263 33655 Face 67307 11451 33656 33655 Face 67308 11451 28423 33656 Face 67309 14569 33657 6754 Face 67310 14569 31630 33657 Face 67311 13884 33658 19349 Face 67312 13884 42729 33658 Face 67313 47741 33659 36524 Face 67314 10898 14956 33659 Face 67315 15616 33660 45004 Face 67316 15616 35423 33660 Face 67317 8828 33661 1851 Face 67318 8828 29719 33661 Face 67319 11904 33662 47449 Face 67320 11904 25596 33662 Face 67321 17098 33663 27816 Face 67322 17098 47693 33663 Face 67323 8744 33664 13320 Face 67324 33665 28815 33664 Face 67325 8744 33665 33664 Face 67326 8744 28342 33665 Face 67327 4208 33666 17959 Face 67328 4208 7952 33666 Face 67329 10438 33667 26677 Face 67330 10438 47262 33667 Face 67331 13012 33668 28239 Face 67332 13012 44463 33668 Face 67333 12288 33669 806 Face 67334 43634 26193 33669 Face 67335 9842 33670 21713 Face 67336 9842 14560 33670 Face 67337 732 33671 11278 Face 67338 732 25970 33671 Face 67339 21594 33672 45330 Face 67340 21594 18663 33672 Face 67341 3771 33673 29643 Face 67342 3771 24694 33673 Face 67343 621 33674 8200 Face 67344 621 16271 33674 Face 67345 2351 33675 7274 Face 67346 2351 38470 33675 Face 67347 44889 33676 25277 Face 67348 11476 6277 33676 Face 67349 7095 33677 38337 Face 67350 7095 48627 33677 Face 67351 40322 33678 29071 Face 67352 40322 46039 33678 Face 67353 17627 33679 12602 Face 67354 17627 770 33679 Face 67355 46055 33680 16552 Face 67356 10253 7522 33680 Face 67357 12799 33681 5275 Face 67358 47542 24563 33681 Face 67359 34369 33682 1771 Face 67360 11808 20758 33682 Face 67361 20645 33683 12663 Face 67362 20645 20646 33683 Face 67363 13011 33684 36566 Face 67364 13011 28667 33684 Face 67365 15934 33685 44436 Face 67366 15934 7923 33685 Face 67367 22732 33686 1847 Face 67368 22732 35962 33686 Face 67369 10713 33687 30733 Face 67370 10713 17023 33687 Face 67371 9791 33688 23781 Face 67372 9791 21567 33688 Face 67373 8334 33689 30607 Face 67374 8334 44021 33689 Face 67375 16322 33690 22354 Face 67376 16322 442 33690 Face 67377 19260 33691 47802 Face 67378 19260 40209 33691 Face 67379 5097 33692 46029 Face 67380 5097 7336 33692 Face 67381 13 33693 7218 Face 67382 13 26573 33693 Face 67383 5227 33694 31008 Face 67384 33696 42742 33694 Face 67385 33696 33695 21041 Face 67386 33696 47070 33695 Face 67387 5227 33696 33694 Face 67388 5227 47070 33696 Face 67389 24105 33697 36712 Face 67390 24105 29045 33697 Face 67391 2355 33698 29949 Face 67392 2355 43913 33698 Face 67393 35896 33699 17778 Face 67394 22522 12240 33699 Face 67395 14728 33700 2042 Face 67396 14728 6084 33700 Face 67397 9210 33701 31465 Face 67398 33702 24101 33701 Face 67399 9210 33702 33701 Face 67400 9210 28879 33702 Face 67401 44406 33703 27703 Face 67402 8312 15439 33703 Face 67403 16209 33704 30157 Face 67404 16209 28263 33704 Face 67405 7025 33705 30253 Face 67406 7025 12446 33705 Face 67407 6738 33706 23313 Face 67408 6738 18936 33706 Face 67409 20031 33707 16411 Face 67410 44624 13199 33707 Face 67411 4106 47117 9219 Face 67412 4106 24309 33708 Face 67413 7218 33709 28871 Face 67414 7218 36553 33709 Face 67415 9479 33710 23953 Face 67416 36565 21920 33710 Face 67417 22493 33711 24849 Face 67418 22493 32182 33711 Face 67419 27116 33712 1189 Face 67420 27116 22485 33712 Face 67421 1170 33713 30340 Face 67422 1170 22909 33713 Face 67423 2301 33714 9049 Face 67424 2301 23775 33714 Face 67425 34985 33715 18011 Face 67426 40097 13056 33715 Face 67427 4335 33716 19695 Face 67428 4335 30814 33716 Face 67429 867 33717 39221 Face 67430 37507 19306 33717 Face 67431 1237 33718 29237 Face 67432 36688 13720 33718 Face 67433 8616 33719 47751 Face 67434 8616 14683 33719 Face 67435 2096 33720 27677 Face 67436 2096 38262 33720 Face 67437 2083 33721 26714 Face 67438 2083 30484 33721 Face 67439 15257 33722 4140 Face 67440 15257 41328 33722 Face 67441 15354 33723 189 Face 67442 15354 20389 33723 Face 67443 4189 33724 15601 Face 67444 4189 15954 33724 Face 67445 33726 33725 1925 Face 67446 855 12948 33725 Face 67447 855 33726 9822 Face 67448 855 33725 33726 Face 67449 6598 33727 849 Face 67450 6598 27510 33727 Face 67451 6598 33728 27510 Face 67452 6598 849 33728 Face 67453 9463 33729 28997 Face 67454 9463 20289 33729 Face 67455 7453 33730 43730 Face 67456 7453 24697 33730 Face 67457 6368 33731 18014 Face 67458 6368 2025 33731 Face 67459 10489 33732 48683 Face 67460 10489 4139 33732 Face 67461 9456 33733 24456 Face 67462 9456 5307 33733 Face 67463 8960 33734 24200 Face 67464 8960 22240 33734 Face 67465 6152 33735 23860 Face 67466 42065 22145 33735 Face 67467 24689 33736 4998 Face 67468 24689 4999 33736 Face 67469 17159 33737 20739 Face 67470 17159 30801 33737 Face 67471 8457 33738 37250 Face 67472 8457 34386 33738 Face 67473 3801 33739 30156 Face 67474 3801 15961 33739 Face 67475 7270 33740 47396 Face 67476 7270 32432 33740 Face 67477 1114 33741 25039 Face 67478 1114 23366 33741 Face 67479 7373 33742 48207 Face 67480 7373 23527 33742 Face 67481 13703 33743 37328 Face 67482 41621 19279 33743 Face 67483 36148 33744 30162 Face 67484 36148 48388 33744 Face 67485 9317 33745 29585 Face 67486 9317 30925 33745 Face 67487 625 33746 34615 Face 67488 625 38200 33746 Face 67489 625 33747 44031 Face 67490 625 16961 33747 Face 67491 8523 33748 45129 Face 67492 8523 45682 33748 Face 67493 15975 33749 43854 Face 67494 15975 4627 33749 Face 67495 16735 33750 11414 Face 67496 16735 11905 33750 Face 67497 25064 33751 29869 Face 67498 25064 17650 33751 Face 67499 17650 33752 33751 Face 67500 17650 19556 33752 Face 67501 7552 33753 12939 Face 67502 40132 24274 33753 Face 67503 44877 33754 46186 Face 67504 1544 30128 33754 Face 67505 14040 33755 40987 Face 67506 14040 44324 33755 Face 67507 44994 33756 36857 Face 67508 1772 36446 33756 Face 67509 1666 33757 20072 Face 67510 1666 18057 33757 Face 67511 10013 33758 42870 Face 67512 10013 10530 33758 Face 67513 40874 33759 33710 Face 67514 14280 29628 33759 Face 67515 10239 33760 27605 Face 67516 10239 3730 33760 Face 67517 4886 33761 37839 Face 67518 45285 22759 33761 Face 67519 3649 33762 19498 Face 67520 3649 33199 33762 Face 67521 5639 33763 22871 Face 67522 33764 10596 33763 Face 67523 5639 33764 33763 Face 67524 5639 11741 33764 Face 67525 3887 33765 9120 Face 67526 3887 24656 33765 Face 67527 5347 33766 7546 Face 67528 5347 11328 33766 Face 67529 20550 43308 24198 Face 67530 20550 3433 43308 Face 67531 44638 33768 3588 Face 67532 11626 19379 33768 Face 67533 26945 33769 392 Face 67534 26945 38892 33769 Face 67535 3789 33770 38170 Face 67536 3789 44782 33770 Face 67537 42087 33771 28370 Face 67538 42087 8536 33771 Face 67539 45707 33772 8116 Face 67540 6112 19242 33772 Face 67541 10876 33773 47494 Face 67542 49801 22319 33773 Face 67543 13206 33774 3578 Face 67544 13206 41704 33774 Face 67545 8738 33775 30027 Face 67546 8738 26967 33775 Face 67547 43659 33776 22973 Face 67548 43391 5102 33776 Face 67549 19686 33777 43901 Face 67550 19686 43156 33777 Face 67551 2579 33778 19457 Face 67552 2579 2815 33778 Face 67553 48255 33779 3690 Face 67554 40559 27902 33779 Face 67555 5049 33780 33896 Face 67556 5049 43339 33780 Face 67557 46535 33781 34048 Face 67558 5976 12894 33781 Face 67559 35558 33782 45469 Face 67560 6862 22197 33782 Face 67561 11632 33783 20620 Face 67562 11632 28088 33783 Face 67563 1920 33784 11848 Face 67564 1920 1160 33784 Face 67565 48778 39207 4589 Face 67566 5803 35819 33785 Face 67567 33787 33786 6247 Face 67568 8339 39486 33786 Face 67569 8339 33787 18053 Face 67570 8339 33786 33787 Face 67571 9757 33788 24368 Face 67572 9757 5713 33788 Face 67573 12881 33789 19385 Face 67574 12881 6715 33789 Face 67575 3490 33790 38113 Face 67576 3490 27141 33790 Face 67577 5829 33791 21031 Face 67578 5829 17387 33791 Face 67579 34716 33792 3132 Face 67580 8727 47980 33792 Face 67581 12047 33793 40643 Face 67582 33794 31729 33793 Face 67583 12047 33794 33793 Face 67584 12047 31729 33794 Face 67585 38892 33795 33769 Face 67586 23956 10179 33795 Face 67587 1973 33796 11232 Face 67588 1973 30747 33796 Face 67589 12624 33797 21736 Face 67590 12624 27769 33797 Face 67591 4284 33798 26248 Face 67592 4284 27724 33798 Face 67593 37658 33799 39880 Face 67594 9037 3002 33799 Face 67595 11350 33800 42476 Face 67596 11350 32773 33800 Face 67597 7922 33801 18982 Face 67598 7922 19463 33801 Face 67599 5997 33802 29597 Face 67600 5997 29717 33802 Face 67601 33804 33803 32657 Face 67602 12130 13877 33803 Face 67603 12130 33804 3988 Face 67604 12130 33803 33804 Face 67605 1553 33805 20510 Face 67606 1553 31093 33805 Face 67607 7100 33806 42225 Face 67608 7100 34254 33806 Face 67609 42065 33807 28083 Face 67610 6152 23860 33807 Face 67611 4408 33808 43286 Face 67612 4408 31137 33808 Face 67613 21335 33809 30045 Face 67614 21335 48153 33809 Face 67615 3170 33810 14031 Face 67616 3170 26619 33810 Face 67617 33812 33811 1726 Face 67618 11187 45366 33811 Face 67619 11187 33812 9269 Face 67620 11187 33811 33812 Face 67621 18197 33813 24149 Face 67622 18197 23250 33813 Face 67623 20636 33814 9213 Face 67624 20636 20635 33814 Face 67625 20976 33815 14945 Face 67626 20976 29844 33815 Face 67627 5205 33816 31556 Face 67628 5205 22836 33816 Face 67629 4401 33817 42366 Face 67630 42967 12700 33817 Face 67631 16241 33818 24531 Face 67632 16241 7324 33818 Face 67633 513 33819 9381 Face 67634 513 38557 33819 Face 67635 13457 33820 28259 Face 67636 13457 17711 33820 Face 67637 7557 33821 14215 Face 67638 7557 21074 33821 Face 67639 15132 33822 6364 Face 67640 15132 34399 33822 Face 67641 4515 33823 48142 Face 67642 4515 27763 33823 Face 67643 7888 33824 27911 Face 67644 7888 47071 33824 Face 67645 1529 33825 31185 Face 67646 1529 11891 33825 Face 67647 23440 33826 47140 Face 67648 33827 18731 33826 Face 67649 23440 33827 33826 Face 67650 23440 35453 33827 Face 67651 19988 33828 7148 Face 67652 19988 15292 33828 Face 67653 6010 33829 23136 Face 67654 6010 1452 33829 Face 67655 6010 33830 32873 Face 67656 44115 12729 33830 Face 67657 2946 33831 15013 Face 67658 41825 12078 33831 Face 67659 3825 33832 20514 Face 67660 3825 20513 33832 Face 67661 475 33833 11210 Face 67662 42446 18541 33833 Face 67663 7088 33834 18338 Face 67664 7088 22137 33834 Face 67665 50 33835 7575 Face 67666 50 30611 33835 Face 67667 9245 33836 28551 Face 67668 9245 3112 33836 Face 67669 4077 33837 17251 Face 67670 4077 30991 33837 Face 67671 3231 33838 14994 Face 67672 3231 15259 33838 Face 67673 33840 33839 30739 Face 67674 15420 1106 33839 Face 67675 15420 33840 11636 Face 67676 15420 33839 33840 Face 67677 9742 33841 5702 Face 67678 9742 29193 33841 Face 67679 9946 33842 43652 Face 67680 9946 2130 33842 Face 67681 33844 33843 32615 Face 67682 13148 47500 33843 Face 67683 13148 33844 19455 Face 67684 13148 33843 33844 Face 67685 20438 33845 27729 Face 67686 20438 1903 33845 Face 67687 18803 33846 47973 Face 67688 18803 13705 33846 Face 67689 1437 33847 25739 Face 67690 34174 8013 33847 Face 67691 4985 33848 48823 Face 67692 4985 26362 33848 Face 67693 7056 33849 15957 Face 67694 7056 7662 33849 Face 67695 15438 33850 38325 Face 67696 15438 28672 33850 Face 67697 2297 33851 28857 Face 67698 2297 18189 33851 Face 67699 20283 33852 31671 Face 67700 20283 43232 33852 Face 67701 17545 33853 5372 Face 67702 17545 5045 33853 Face 67703 14327 33854 17600 Face 67704 14327 44560 33854 Face 67705 22707 33855 8212 Face 67706 22707 32434 33855 Face 67707 47452 33856 6691 Face 67708 10092 5345 40518 Face 67709 24013 33857 46263 Face 67710 24013 41874 33857 Face 67711 5766 33858 36853 Face 67712 5766 28349 33858 Face 67713 5991 33859 30876 Face 67714 5991 13528 33859 Face 67715 363 33860 47327 Face 67716 363 11798 33860 Face 67717 15933 33861 7955 Face 67718 15933 14164 33861 Face 67719 43876 33862 19421 Face 67720 40806 28376 33862 Face 67721 36508 33863 17974 Face 67722 434 26335 33863 Face 67723 14495 33864 33377 Face 67724 14495 14671 33864 Face 67725 5685 33865 16261 Face 67726 5685 40350 33865 Face 67727 6031 33866 6030 Face 67728 6031 16629 33866 Face 67729 7361 33867 39177 Face 67730 7361 29791 33867 Face 67731 6549 33868 31653 Face 67732 40066 43500 33868 Face 67733 1699 33869 9603 Face 67734 1699 21143 33869 Face 67735 33992 33870 39123 Face 67736 336 21987 33870 Face 67737 3856 33871 25729 Face 67738 3856 32758 33871 Face 67739 14536 33872 26312 Face 67740 14536 23963 33872 Face 67741 29523 33873 45872 Face 67742 29523 11316 33873 Face 67743 7208 33874 33412 Face 67744 33875 22754 33874 Face 67745 7208 33875 33874 Face 67746 7208 20710 33875 Face 67747 4124 33876 31913 Face 67748 4124 48447 33876 Face 67749 18636 33877 5657 Face 67750 18636 13560 33877 Face 67751 20137 33878 49694 Face 67752 20137 1731 33878 Face 67753 2593 33879 21129 Face 67754 2593 24215 33879 Face 67755 24554 33880 41847 Face 67756 24554 6180 33880 Face 67757 444 41978 29623 Face 67758 33882 39692 33881 Face 67759 444 33882 33881 Face 67760 444 8130 33882 Face 67761 1106 33883 19121 Face 67762 1106 45665 33883 Face 67763 20114 33884 12923 Face 67764 20114 3070 33884 Face 67765 442 33885 33559 Face 67766 442 33549 33885 Face 67767 38771 33886 24705 Face 67768 10022 19654 33886 Face 67769 7751 33887 26113 Face 67770 7751 16838 33887 Face 67771 7751 33888 45541 Face 67772 7751 26113 33888 Face 67773 13538 33889 7215 Face 67774 13538 15771 33889 Face 67775 5431 33890 21873 Face 67776 5431 17779 33890 Face 67777 11777 33891 31822 Face 67778 11777 4336 33891 Face 67779 48293 33892 38287 Face 67780 37498 4681 33892 Face 67781 8314 33893 46461 Face 67782 8314 22549 33893 Face 67783 8314 33894 13983 Face 67784 8314 18602 33894 Face 67785 25436 33895 11144 Face 67786 25436 19886 33895 Face 67787 9482 33896 33780 Face 67788 9482 26186 33896 Face 67789 15963 33897 46983 Face 67790 15963 7396 33897 Face 67791 1620 33898 9559 Face 67792 1620 30295 33898 Face 67793 4202 33899 9438 Face 67794 33900 41690 33899 Face 67795 4202 33900 33899 Face 67796 4202 921 33900 Face 67797 23827 33901 18110 Face 67798 23827 49349 33901 Face 67799 7087 33902 33489 Face 67800 7087 37805 33902 Face 67801 39821 33903 38091 Face 67802 39821 12732 33903 Face 67803 14816 33904 28765 Face 67804 14816 41794 33904 Face 67805 16989 33905 30284 Face 67806 16989 21928 33905 Face 67807 35973 33906 1840 Face 67808 24319 24318 33906 Face 67809 7837 33907 42128 Face 67810 7837 29000 33907 Face 67811 8169 33908 39631 Face 67812 8169 33538 33908 Face 67813 4719 33909 16051 Face 67814 4719 36923 33909 Face 67815 14772 33910 29115 Face 67816 34494 27314 48411 Face 67817 16371 33911 39814 Face 67818 16371 25096 33911 Face 67819 14709 33912 30529 Face 67820 14709 316 33912 Face 67821 17431 33913 28736 Face 67822 17431 3646 33913 Face 67823 7806 33914 17050 Face 67824 7806 29388 33914 Face 67825 23401 33915 8343 Face 67826 23401 13878 33915 Face 67827 6100 33916 17806 Face 67828 34019 46792 33916 Face 67829 31422 33917 692 Face 67830 44702 32200 33917 Face 67831 9609 33918 23277 Face 67832 9609 20244 33918 Face 67833 7903 33919 9104 Face 67834 7903 20605 33919 Face 67835 4288 33920 41795 Face 67836 37569 31864 33920 Face 67837 18753 33921 41843 Face 67838 18753 40208 33921 Face 67839 7549 33922 25394 Face 67840 7549 33530 33922 Face 67841 38550 33923 33924 Face 67842 10774 34924 33923 Face 67843 42439 33924 33923 Face 67844 33925 28298 33924 Face 67845 42439 33925 33924 Face 67846 8989 3142 33925 Face 67847 21124 33926 13374 Face 67848 21124 27828 33926 Face 67849 21615 33927 6286 Face 67850 21615 41769 33927 Face 67851 6374 33928 40842 Face 67852 6374 42561 33928 Face 67853 2582 33929 19327 Face 67854 2582 27095 33929 Face 67855 3293 33930 17999 Face 67856 3293 40657 33930 Face 67857 42135 33931 29425 Face 67858 42136 16994 33931 Face 67859 6809 33932 49517 Face 67860 6809 34603 33932 Face 67861 47147 33933 9680 Face 67862 9524 17548 33933 Face 67863 3865 33934 35557 Face 67864 3865 31558 33934 Face 67865 44822 33935 30650 Face 67866 42033 27420 33935 Face 67867 4950 33936 23798 Face 67868 4950 11865 33936 Face 67869 9674 33937 2312 Face 67870 9674 4912 33937 Face 67871 6717 33938 48946 Face 67872 6717 17373 33938 Face 67873 12351 33939 23151 Face 67874 12351 20848 33939 Face 67875 24549 33940 903 Face 67876 24549 17684 33940 Face 67877 22074 33941 32749 Face 67878 22074 49272 33941 Face 67879 1996 33942 31920 Face 67880 1996 27158 33942 Face 67881 1996 33943 26722 Face 67882 1996 31920 33943 Face 67883 26303 33944 3014 Face 67884 26303 9926 33944 Face 67885 4828 33945 26483 Face 67886 4828 8357 33945 Face 67887 45028 33946 45622 Face 67888 7881 18630 33946 Face 67889 9371 33947 44944 Face 67890 9371 1961 33947 Face 67891 2515 33948 14396 Face 67892 2515 32841 33948 Face 67893 4918 33949 9311 Face 67894 4918 19982 33949 Face 67895 26368 33950 16640 Face 67896 26368 46068 33950 Face 67897 10716 33951 20326 Face 67898 10716 13031 33951 Face 67899 47595 33952 7498 Face 67900 10230 32162 47978 Face 67901 33955 33953 44203 Face 67902 33954 6597 33953 Face 67903 33955 33954 33953 Face 67904 2457 39365 33954 Face 67905 2457 33955 27707 Face 67906 2457 33954 33955 Face 67907 17384 33956 12201 Face 67908 17384 2941 33956 Face 67909 43103 33957 30873 Face 67910 1942 25085 33957 Face 67911 19795 33958 2158 Face 67912 19795 41729 33958 Face 67913 16637 43565 10053 Face 67914 16637 29636 43565 Face 67915 14077 33960 24570 Face 67916 14077 19382 33960 Face 67917 35591 33961 23615 Face 67918 25311 36315 33961 Face 67919 9466 33962 45106 Face 67920 9466 21956 33962 Face 67921 3384 33963 28651 Face 67922 3384 40142 33963 Face 67923 10173 33964 26771 Face 67924 33965 23799 33964 Face 67925 10173 33965 33964 Face 67926 10173 22157 33965 Face 67927 7021 33966 2603 Face 67928 7021 2136 33966 Face 67929 6328 33967 212 Face 67930 6328 7846 33967 Face 67931 10383 33968 20929 Face 67932 10383 16576 33968 Face 67933 14136 33969 32102 Face 67934 14136 35970 33969 Face 67935 24567 33970 8773 Face 67936 24567 4304 33970 Face 67937 834 33971 37957 Face 67938 834 30173 33971 Face 67939 22181 33972 41275 Face 67940 22181 39410 33972 Face 67941 34449 33973 40176 Face 67942 23026 31684 33973 Face 67943 5042 33974 3588 Face 67944 5042 21838 33974 Face 67945 33977 33975 25423 Face 67946 33976 4568 33975 Face 67947 33977 33976 33975 Face 67948 16669 20402 33976 Face 67949 16669 33977 10683 Face 67950 16669 33976 33977 Face 67951 12202 33978 40732 Face 67952 12202 27001 33978 Face 67953 12182 33979 3761 Face 67954 12182 882 33979 Face 67955 7197 33980 24687 Face 67956 7197 41537 33980 Face 67957 6648 33981 14866 Face 67958 6648 6803 33981 Face 67959 6723 33982 12227 Face 67960 6723 28328 33982 Face 67961 12245 33983 14413 Face 67962 12245 21915 33983 Face 67963 18715 33984 37421 Face 67964 18715 18714 33984 Face 67965 1057 33985 47679 Face 67966 47359 8822 33985 Face 67967 11109 33986 6068 Face 67968 11109 14098 33986 Face 67969 16417 33987 19804 Face 67970 33988 47395 33987 Face 67971 16417 33988 33987 Face 67972 16417 13886 33988 Face 67973 10277 33989 4608 Face 67974 10277 32142 33989 Face 67975 25155 33990 659 Face 67976 25155 39240 33990 Face 67977 22379 33991 25031 Face 67978 22379 22408 33991 Face 67979 336 33992 17994 Face 67980 336 33870 33992 Face 67981 46323 33993 1465 Face 67982 10571 6590 47064 Face 67983 5437 33994 19638 Face 67984 5437 910 33994 Face 67985 10074 33995 2529 Face 67986 10074 38343 33995 Face 67987 1279 33996 20852 Face 67988 1279 28643 33996 Face 67989 33996 33997 20958 Face 67990 33996 28643 33997 Face 67991 19677 33998 8548 Face 67992 19677 21978 33998 Face 67993 13629 33999 46684 Face 67994 13629 5492 33999 Face 67995 4530 34000 14548 Face 67996 4530 9393 34000 Face 67997 17283 34001 17282 Face 67998 17283 22525 34001 Face 67999 4647 34002 30059 Face 68000 4647 22163 34002 Face 68001 45214 34003 30441 Face 68002 2959 40869 34003 Face 68003 2959 34004 29020 Face 68004 2959 34003 34004 Face 68005 12625 34005 31701 Face 68006 12625 6244 34005 Face 68007 2248 34006 24283 Face 68008 2248 25647 34006 Face 68009 27569 34007 4321 Face 68010 34008 703 34007 Face 68011 27569 34008 34007 Face 68012 27569 703 34008 Face 68013 35737 34009 17509 Face 68014 7451 16851 34009 Face 68015 49366 34010 15464 Face 68016 14710 34435 34010 Face 68017 33813 34011 27615 Face 68018 33813 1105 34011 Face 68019 12090 34012 4710 Face 68020 12090 12963 34012 Face 68021 4549 34013 30588 Face 68022 4549 4595 34013 Face 68023 15481 34014 25347 Face 68024 15481 14147 34014 Face 68025 39118 34015 23083 Face 68026 49953 12959 34015 Face 68027 6684 34016 19788 Face 68028 6684 294 34016 Face 68029 1041 34017 49291 Face 68030 1041 23116 34017 Face 68031 14503 34018 8699 Face 68032 14503 37034 34018 Face 68033 6100 34019 33916 Face 68034 6100 19060 34019 Face 68035 3684 34020 22540 Face 68036 3684 21923 34020 Face 68037 3647 34021 43849 Face 68038 3647 29525 34021 Face 68039 9418 34022 49554 Face 68040 9418 48836 34022 Face 68041 9772 34023 36708 Face 68042 9772 20619 34023 Face 68043 9810 34024 26278 Face 68044 9810 44038 34024 Face 68045 795 34025 10437 Face 68046 795 42006 34025 Face 68047 34859 34026 2589 Face 68048 34859 22314 34026 Face 68049 134 34027 29831 Face 68050 47918 31262 34027 Face 68051 47058 34028 25208 Face 68052 1604 27865 34028 Face 68053 13618 34029 39216 Face 68054 13618 33400 34029 Face 68055 28407 34030 23053 Face 68056 28407 45363 34030 Face 68057 11269 34031 42707 Face 68058 11269 17366 34031 Face 68059 2183 34032 6769 Face 68060 2183 21984 34032 Face 68061 26051 34033 17568 Face 68062 26051 5082 34033 Face 68063 961 34034 16712 Face 68064 961 10580 34034 Face 68065 6250 34035 35454 Face 68066 6250 15336 34035 Face 68067 3205 34036 33025 Face 68068 37968 16890 34036 Face 68069 181 34037 15095 Face 68070 181 26839 34037 Face 68071 20025 34038 9092 Face 68072 20025 19665 34038 Face 68073 10966 34039 18916 Face 68074 10966 31418 34039 Face 68075 4486 34040 49034 Face 68076 4486 25187 34040 Face 68077 18858 34041 2293 Face 68078 18858 30678 34041 Face 68079 110 34042 7910 Face 68080 110 19095 34042 Face 68081 3088 34043 1824 Face 68082 3088 48824 34043 Face 68083 9362 34044 30110 Face 68084 9362 36700 34044 Face 68085 41778 34045 42896 Face 68086 41778 45609 34045 Face 68087 10463 34046 45478 Face 68088 10463 32485 34046 Face 68089 18579 34047 27538 Face 68090 18579 12396 34047 Face 68091 12893 34048 19718 Face 68092 12893 38904 34048 Face 68093 1636 34049 31505 Face 68094 35992 30266 34049 Face 68095 7661 34050 40520 Face 68096 7661 13833 34050 Face 68097 11118 34051 5900 Face 68098 11118 22809 34051 Face 68099 7501 34052 24673 Face 68100 7501 9972 34052 Face 68101 39003 34053 10176 Face 68102 48241 2261 34053 Face 68103 21262 34054 7135 Face 68104 21262 1448 34054 Face 68105 15237 34055 27321 Face 68106 38259 16531 34055 Face 68107 11517 34056 842 Face 68108 11517 46874 34056 Face 68109 6973 34057 41553 Face 68110 6973 43217 34057 Face 68111 14692 34058 25772 Face 68112 14692 18681 34058 Face 68113 14970 34059 30296 Face 68114 14970 48942 34059 Face 68115 17779 34060 1123 Face 68116 17779 5431 34060 Face 68117 12361 34061 21727 Face 68118 12361 33568 34061 Face 68119 13629 34062 19148 Face 68120 13629 33471 34062 Face 68121 6972 34063 21816 Face 68122 6972 48414 34063 Face 68123 38646 44455 20721 Face 68124 12378 7377 34064 Face 68125 13518 34065 43452 Face 68126 13518 13517 34065 Face 68127 39850 34066 25070 Face 68128 39850 6465 34066 Face 68129 34066 34067 25070 Face 68130 34066 23420 34067 Face 68131 17675 34068 8114 Face 68132 17675 9407 34068 Face 68133 35455 34069 6256 Face 68134 3965 20526 34069 Face 68135 20255 34070 34354 Face 68136 20255 45980 34070 Face 68137 48599 34071 29869 Face 68138 914 29252 34071 Face 68139 27240 34072 22693 Face 68140 27240 27241 34072 Face 68141 47470 34073 24238 Face 68142 14635 389 34073 Face 68143 2386 34074 24149 Face 68144 2386 27616 34074 Face 68145 17104 34075 32320 Face 68146 49042 20593 34075 Face 68147 16903 34076 41242 Face 68148 16903 4731 34076 Face 68149 8749 34077 8748 Face 68150 8749 18218 34077 Face 68151 18506 34078 23976 Face 68152 18506 40377 34078 Face 68153 4018 34079 24166 Face 68154 34080 10528 34079 Face 68155 4018 34080 34079 Face 68156 4018 9059 34080 Face 68157 16426 34081 968 Face 68158 16426 4792 34081 Face 68159 5500 34082 13975 Face 68160 5500 16016 34082 Face 68161 5538 34083 12441 Face 68162 5538 20831 34083 Face 68163 34085 34084 20877 Face 68164 5569 8929 34084 Face 68165 5569 34085 21126 Face 68166 5569 34084 34085 Face 68167 1767 34086 15963 Face 68168 1767 34988 34086 Face 68169 24916 34087 20347 Face 68170 24916 341 34087 Face 68171 3519 34088 25408 Face 68172 3519 18175 34088 Face 68173 5932 34089 25104 Face 68174 47947 12974 34089 Face 68175 23257 34090 18955 Face 68176 23257 8674 34090 Face 68177 2367 34091 9696 Face 68178 2367 8318 34091 Face 68179 2367 34092 8318 Face 68180 2367 21561 34092 Face 68181 5667 34093 36488 Face 68182 5667 32037 34093 Face 68183 8752 34094 12874 Face 68184 8752 49321 34094 Face 68185 10101 34095 482 Face 68186 10101 35839 34095 Face 68187 34097 34096 34493 Face 68188 43420 17072 34096 Face 68189 7234 34097 40779 Face 68190 7234 34096 34097 Face 68191 43720 34098 33646 Face 68192 7444 13867 34098 Face 68193 31175 34099 16497 Face 68194 31175 43413 34099 Face 68195 8268 34100 38912 Face 68196 8268 19255 34100 Face 68197 17823 34101 21355 Face 68198 17823 14913 34101 Face 68199 11587 34102 6444 Face 68200 11587 44244 34102 Face 68201 15273 34103 8348 Face 68202 15273 3351 34103 Face 68203 2058 34104 20328 Face 68204 2058 31887 34104 Face 68205 33257 34105 34895 Face 68206 33257 31537 34105 Face 68207 11127 34106 2247 Face 68208 11127 43447 34106 Face 68209 19691 34107 5191 Face 68210 19691 19266 34107 Face 68211 39896 34108 46135 Face 68212 39897 28766 34108 Face 68213 3533 34109 42052 Face 68214 3533 12074 34109 Face 68215 20912 34110 7517 Face 68216 20912 32019 34110 Face 68217 30094 34111 46853 Face 68218 30094 27732 34111 Face 68219 43804 34112 33488 Face 68220 43804 29165 34112 Face 68221 2248 34113 25647 Face 68222 2248 31781 34113 Face 68223 8239 34114 28438 Face 68224 8239 16543 34114 Face 68225 8610 34115 39885 Face 68226 8610 32525 34115 Face 68227 6713 34116 20920 Face 68228 6713 1481 34116 Face 68229 6132 34117 26008 Face 68230 6132 26009 34117 Face 68231 8732 34118 24387 Face 68232 8732 48338 34118 Face 68233 18397 34119 3675 Face 68234 18397 46078 34119 Face 68235 13728 34120 44859 Face 68236 13728 7669 34120 Face 68237 5823 34121 25239 Face 68238 5823 16636 34121 Face 68239 16636 34122 20580 Face 68240 16636 5823 34124 Face 68241 5823 34123 34124 Face 68242 40974 45593 34123 Face 68243 34122 34124 34123 Face 68244 34122 16636 34124 Face 68245 2732 34125 14650 Face 68246 2732 13920 34125 Face 68247 48167 34126 26953 Face 68248 45663 25275 34126 Face 68249 37307 34127 47181 Face 68250 37307 20355 34127 Face 68251 48841 34128 19225 Face 68252 15166 19330 34128 Face 68253 7707 34129 43838 Face 68254 7707 14267 34129 Face 68255 17560 34130 27790 Face 68256 17560 47975 34130 Face 68257 11447 34131 41713 Face 68258 11447 31804 34131 Face 68259 34133 39078 12264 Face 68260 16298 36078 34132 Face 68261 16298 34133 25209 Face 68262 16298 39078 34133 Face 68263 34135 34134 45303 Face 68264 777 13520 34134 Face 68265 777 34135 10242 Face 68266 777 34134 34135 Face 68267 19662 34136 12247 Face 68268 19662 23321 34136 Face 68269 16776 34137 49080 Face 68270 16776 16779 34137 Face 68271 43255 34138 54 Face 68272 16700 48932 34138 Face 68273 4422 34139 12811 Face 68274 46181 20352 34139 Face 68275 47750 34140 7931 Face 68276 6932 25690 34140 Face 68277 18705 34141 38403 Face 68278 18705 3268 34141 Face 68279 17496 34142 5913 Face 68280 17496 10825 34142 Face 68281 17406 34143 17407 Face 68282 17406 28559 34143 Face 68283 3048 34144 47555 Face 68284 3048 36850 34144 Face 68285 13968 34145 11139 Face 68286 13968 29441 34145 Face 68287 15093 34146 8640 Face 68288 15093 20911 34146 Face 68289 10821 34147 31426 Face 68290 10821 20806 34147 Face 68291 7894 34148 7895 Face 68292 7894 29873 34148 Face 68293 6256 34149 3710 Face 68294 6256 19535 34149 Face 68295 15172 47066 1779 Face 68296 15172 12121 34150 Face 68297 34152 34151 12461 Face 68298 6607 29761 34151 Face 68299 6607 34152 13796 Face 68300 6607 34151 34152 Face 68301 13845 34153 2739 Face 68302 13845 46828 34153 Face 68303 6505 34154 49017 Face 68304 6505 21620 34154 Face 68305 14786 34155 17043 Face 68306 14786 44215 34155 Face 68307 4919 34156 22081 Face 68308 4919 19950 34156 Face 68309 3334 34157 22156 Face 68310 3334 32937 34157 Face 68311 49449 34158 22224 Face 68312 1187 25021 34158 Face 68313 17 34159 32175 Face 68314 34160 41389 34159 Face 68315 17 34160 34159 Face 68316 34161 47133 34160 Face 68317 17 34161 34160 Face 68318 42489 10446 34161 Face 68319 48358 34162 28804 Face 68320 8852 31708 34162 Face 68321 39033 34163 30049 Face 68322 2063 29325 34163 Face 68323 2370 34164 14209 Face 68324 43018 30999 34164 Face 68325 16977 34165 9730 Face 68326 49021 8881 34165 Face 68327 8534 34166 32733 Face 68328 8534 37229 34166 Face 68329 24114 34167 49426 Face 68330 24114 24113 34167 Face 68331 24459 34168 30610 Face 68332 24459 27628 34168 Face 68333 30963 34169 4510 Face 68334 30963 18986 34169 Face 68335 28624 34170 899 Face 68336 28624 28886 34170 Face 68337 34170 34171 16751 Face 68338 34170 39244 34171 Face 68339 49972 34172 26026 Face 68340 49972 27469 34172 Face 68341 5691 34173 16087 Face 68342 5691 18291 34173 Face 68343 1437 34174 33847 Face 68344 1437 10477 34174 Face 68345 8112 34175 14032 Face 68346 8112 1865 34175 Face 68347 1281 34176 18330 Face 68348 1281 27136 34176 Face 68349 8647 34177 14991 Face 68350 42725 21043 34177 Face 68351 35104 34178 6490 Face 68352 3848 21882 34178 Face 68353 45071 34179 3173 Face 68354 45071 41543 34179 Face 68355 17726 34180 15432 Face 68356 17726 12668 34180 Face 68357 7892 34181 32278 Face 68358 7892 31919 34181 Face 68359 26 34182 32351 Face 68360 26 14004 34182 Face 68361 13136 34183 18867 Face 68362 13136 40518 34183 Face 68363 25684 34184 1041 Face 68364 25684 18744 34184 Face 68365 17915 34185 3944 Face 68366 17915 42125 46139 Face 68367 11184 34186 711 Face 68368 11184 20427 34186 Face 68369 9734 34187 39738 Face 68370 9734 33483 34187 Face 68371 21408 34188 24921 Face 68372 21408 25911 34188 Face 68373 19721 34189 37901 Face 68374 19721 43075 34189 Face 68375 4553 34190 15054 Face 68376 4553 599 34190 Face 68377 2523 34191 11427 Face 68378 34192 10428 34191 Face 68379 39271 34192 34191 Face 68380 39271 11869 34192 Face 68381 23450 34193 2652 Face 68382 23450 45953 34193 Face 68383 5804 34194 43260 Face 68384 5804 17435 34194 Face 68385 47967 34195 10880 Face 68386 8026 4836 34195 Face 68387 4585 34196 14945 Face 68388 4585 25059 34196 Face 68389 15215 34197 27485 Face 68390 15215 12574 34197 Face 68391 34199 34198 5171 Face 68392 19835 47260 34198 Face 68393 19835 34199 40694 Face 68394 19835 34198 34199 Face 68395 5269 34200 27642 Face 68396 5269 32935 34200 Face 68397 19161 34201 8640 Face 68398 19161 21738 34201 Face 68399 4193 34202 868 Face 68400 4193 31461 34202 Face 68401 4504 34203 27515 Face 68402 4504 10175 34203 Face 68403 28643 34204 33997 Face 68404 28643 12171 34204 Face 68405 6064 34205 11529 Face 68406 6064 41248 34205 Face 68407 7942 34206 33287 Face 68408 7942 24738 34206 Face 68409 1664 34207 30021 Face 68410 47297 44410 34207 Face 68411 34209 34208 4140 Face 68412 8393 38033 34208 Face 68413 8393 34209 47351 Face 68414 8393 34208 34209 Face 68415 48997 34210 24294 Face 68416 35934 41564 34210 Face 68417 10373 34211 19669 Face 68418 10373 22466 34211 Face 68419 10472 34212 44975 Face 68420 10472 43631 34212 Face 68421 11411 34213 4732 Face 68422 11411 15841 34213 Face 68423 3784 34214 44649 Face 68424 3784 5920 34214 Face 68425 4421 34215 24429 Face 68426 4421 30706 34215 Face 68427 8158 34216 5390 Face 68428 8158 33482 34216 Face 68429 12703 34217 14586 Face 68430 12703 43901 34217 Face 68431 45991 34218 7404 Face 68432 23945 25844 34218 Face 68433 18294 34219 24657 Face 68434 18294 35234 34219 Face 68435 22686 34220 7955 Face 68436 22686 48126 34220 Face 68437 23975 34221 14835 Face 68438 23975 1048 34221 Face 68439 5847 34222 34679 Face 68440 35571 12418 34222 Face 68441 17596 34223 36125 Face 68442 17596 49492 34223 Face 68443 5191 34224 19763 Face 68444 5191 42808 34224 Face 68445 4056 34225 19026 Face 68446 40538 1357 34225 Face 68447 34227 34226 10018 Face 68448 16754 49937 34226 Face 68449 16754 34227 390 Face 68450 16754 34226 34227 Face 68451 22689 34228 18375 Face 68452 22689 15082 34228 Face 68453 5363 34229 15751 Face 68454 5363 20559 34229 Face 68455 13417 34230 43416 Face 68456 13417 46460 34230 Face 68457 39054 34231 27085 Face 68458 39054 43515 34231 Face 68459 18125 34232 1746 Face 68460 18125 369 34232 Face 68461 8958 34233 15253 Face 68462 8958 20265 34233 Face 68463 13805 34234 16425 Face 68464 13805 26268 34234 Face 68465 16659 34235 14473 Face 68466 16659 11726 34235 Face 68467 90 34236 22624 Face 68468 90 13254 34236 Face 68469 3900 34237 41044 Face 68470 3900 19339 34237 Face 68471 6389 34238 36325 Face 68472 6389 15424 34238 Face 68473 5101 34239 12237 Face 68474 5101 16341 34239 Face 68475 18032 34240 32647 Face 68476 18032 22360 34240 Face 68477 2861 34241 25817 Face 68478 49143 7893 34241 Face 68479 9223 34242 3393 Face 68480 9223 37523 34242 Face 68481 13252 34243 594 Face 68482 13252 25172 34243 Face 68483 37811 34244 10946 Face 68484 5683 2656 34244 Face 68485 15765 34245 48409 Face 68486 15765 29650 34245 Face 68487 15885 34246 17622 Face 68488 15885 31570 34246 Face 68489 1357 48143 31831 Face 68490 1357 40538 34247 Face 68491 12293 34248 47190 Face 68492 12293 23222 34248 Face 68493 1064 34249 20187 Face 68494 1064 23814 34249 Face 68495 10698 34250 21373 Face 68496 10698 22931 34250 Face 68497 5260 34251 15119 Face 68498 5260 9430 34251 Face 68499 34253 34252 26103 Face 68500 21545 38775 34252 Face 68501 21545 34253 3688 Face 68502 21545 34252 34253 Face 68503 24180 34254 32901 Face 68504 24180 39160 34254 Face 68505 17135 34255 5146 Face 68506 17135 44542 34255 Face 68507 6605 34256 35630 Face 68508 6605 24877 34256 Face 68509 2586 34257 30277 Face 68510 2586 8481 34257 Face 68511 14894 34258 18161 Face 68512 34523 28030 34258 Face 68513 1529 34259 29991 Face 68514 1529 31185 34259 Face 68515 17183 34260 30387 Face 68516 17183 2008 34260 Face 68517 2183 34261 43784 Face 68518 2183 12094 34261 Face 68519 12069 34262 1367 Face 68520 12069 4356 34262 Face 68521 12763 34263 45107 Face 68522 12763 16498 34263 Face 68523 17422 34264 14647 Face 68524 37618 40297 34264 Face 68525 14730 34265 2382 Face 68526 14730 19703 34265 Face 68527 49091 34266 28259 Face 68528 49091 46337 34266 Face 68529 11094 34267 44082 Face 68530 11094 17042 34267 Face 68531 4649 34268 21751 Face 68532 4649 28098 34268 Face 68533 7033 34269 38632 Face 68534 35233 19931 34269 Face 68535 9030 34270 46872 Face 68536 9030 17943 34270 Face 68537 8334 34271 44021 Face 68538 8334 30607 34271 Face 68539 34273 34272 11996 Face 68540 11422 34685 34272 Face 68541 39554 34273 47465 Face 68542 11422 34272 34273 Face 68543 21672 34274 28319 Face 68544 21672 27181 34274 Face 68545 11161 34275 36537 Face 68546 11161 29285 34275 Face 68547 11989 34276 48919 Face 68548 11989 27150 34276 Face 68549 11271 34277 11270 Face 68550 11271 45004 34277 Face 68551 46197 34278 27957 Face 68552 12049 7854 34278 Face 68553 42391 34279 10985 Face 68554 14651 1374 36613 Face 68555 5432 34280 22079 Face 68556 5432 49171 34280 Face 68557 1819 48764 26669 Face 68558 1819 43756 48764 Face 68559 35459 34282 19264 Face 68560 15766 40454 34282 Face 68561 8280 34283 29419 Face 68562 8280 25882 34283 Face 68563 122 34284 19177 Face 68564 122 21337 34284 Face 68565 4780 34285 19365 Face 68566 4780 33395 34285 Face 68567 7478 34286 26615 Face 68568 7478 31061 34286 Face 68569 19377 34287 10984 Face 68570 19377 37649 34287 Face 68571 11090 34288 31532 Face 68572 11090 11088 34288 Face 68573 17588 34289 3485 Face 68574 17588 5197 34289 Face 68575 12079 34290 14355 Face 68576 12079 5543 34290 Face 68577 11596 34291 22811 Face 68578 11596 25048 34291 Face 68579 6821 48863 31832 Face 68580 42807 23349 34292 Face 68581 20242 34293 3722 Face 68582 20242 25126 34293 Face 68583 18876 34294 43947 Face 68584 18876 7986 44117 Face 68585 682 34295 5846 Face 68586 682 13595 34295 Face 68587 18297 34296 10548 Face 68588 34297 1081 34296 Face 68589 18297 34297 34296 Face 68590 18297 20977 34297 Face 68591 4438 34298 15010 Face 68592 4438 24233 34298 Face 68593 37582 34299 49652 Face 68594 20043 19142 34299 Face 68595 12335 34300 6059 Face 68596 44421 5464 34300 Face 68597 4237 34301 17312 Face 68598 4237 48236 34301 Face 68599 34 34302 27278 Face 68600 34 29145 34302 Face 68601 7679 34303 26127 Face 68602 7679 27205 34303 Face 68603 7086 34304 21160 Face 68604 7086 39443 34304 Face 68605 9016 34305 15123 Face 68606 9016 16908 34305 Face 68607 7688 34306 47353 Face 68608 48073 19218 34306 Face 68609 5365 34307 17335 Face 68610 5365 43227 34307 Face 68611 6541 34308 2576 Face 68612 6541 33539 34308 Face 68613 7483 34309 20422 Face 68614 7483 2896 34309 Face 68615 474 34310 8653 Face 68616 474 11669 34310 Face 68617 17681 34311 24873 Face 68618 17681 22494 34311 Face 68619 3791 34312 9364 Face 68620 3791 29924 34312 Face 68621 2919 34313 36689 Face 68622 2919 16240 34313 Face 68623 18509 34314 19040 Face 68624 18509 7545 34314 Face 68625 15506 34315 6929 Face 68626 15506 2062 34315 Face 68627 8589 34316 33265 Face 68628 8589 9712 34316 Face 68629 983 34317 19320 Face 68630 983 16788 34317 Face 68631 3027 34318 28460 Face 68632 3027 27614 34318 Face 68633 22531 34319 2281 Face 68634 22531 16960 34319 Face 68635 43865 34320 19473 Face 68636 8081 18708 34320 Face 68637 10023 34321 3563 Face 68638 10023 10817 34321 Face 68639 3114 34322 30865 Face 68640 3114 30169 34322 Face 68641 22783 34323 29264 Face 68642 22783 16127 34323 Face 68643 16516 34324 31224 Face 68644 16516 2696 34324 Face 68645 12747 49994 6586 Face 68646 12747 20904 34325 Face 68647 17961 34326 8777 Face 68648 17961 42451 34326 Face 68649 561 34327 45869 Face 68650 561 43657 34327 Face 68651 605 34328 45270 Face 68652 605 15661 34328 Face 68653 13731 34329 45113 Face 68654 39588 4697 34329 Face 68655 25061 34330 47926 Face 68656 25061 29571 34330 Face 68657 15248 34331 24714 Face 68658 15248 14213 34331 Face 68659 36453 34332 29202 Face 68660 1139 48281 34332 Face 68661 4554 34333 20295 Face 68662 4554 32836 34333 Face 68663 11122 34334 3230 Face 68664 11122 11104 34334 Face 68665 4356 34335 40836 Face 68666 40511 48075 34335 Face 68667 16592 34336 837 Face 68668 16592 19464 34336 Face 68669 2029 34337 27401 Face 68670 2029 45843 34337 Face 68671 11460 34338 23286 Face 68672 11460 13624 34338 Face 68673 11460 34339 22877 Face 68674 11460 5370 34339 Face 68675 17818 34340 5517 Face 68676 17818 26875 34340 Face 68677 10312 34341 13494 Face 68678 10312 28081 34341 Face 68679 11404 34342 9439 Face 68680 11404 33216 34342 Face 68681 37955 34343 28813 Face 68682 12381 40990 34343 Face 68683 15102 34344 44832 Face 68684 15102 46792 34344 Face 68685 4046 34345 36838 Face 68686 4046 15363 34345 Face 68687 11089 34346 628 Face 68688 40589 11088 34346 Face 68689 18279 34347 43887 Face 68690 18279 34731 34347 Face 68691 15634 34348 7860 Face 68692 15634 48181 34348 Face 68693 508 34349 49541 Face 68694 508 11042 34349 Face 68695 11041 34350 40377 Face 68696 11041 5445 34350 Face 68697 3500 34351 20316 Face 68698 37074 13375 34351 Face 68699 7274 34352 21674 Face 68700 7274 12435 34352 Face 68701 24798 34353 41918 Face 68702 24798 1400 34353 Face 68703 4660 34354 41251 Face 68704 4660 20255 34354 Face 68705 32915 34355 16499 Face 68706 32915 11647 34355 Face 68707 43500 34356 22695 Face 68708 20616 41462 34356 Face 68709 7967 34357 37126 Face 68710 7967 49531 34357 Face 68711 2046 34358 28911 Face 68712 2046 18855 34358 Face 68713 17749 34359 32455 Face 68714 17749 42267 34359 Face 68715 9604 34360 24266 Face 68716 9604 30426 34360 Face 68717 39920 34361 47918 Face 68718 5848 20928 34361 Face 68719 2128 34362 41557 Face 68720 36175 20002 34362 Face 68721 8210 34363 9700 Face 68722 8210 23632 34363 Face 68723 1895 34364 16262 Face 68724 1895 631 34364 Face 68725 34366 34365 43191 Face 68726 9994 5160 34365 Face 68727 9994 34366 25200 Face 68728 9994 34365 34366 Face 68729 18645 34367 40785 Face 68730 18645 42385 34367 Face 68731 15250 34368 2090 Face 68732 15250 18498 34368 Face 68733 11808 34369 34383 Face 68734 11808 33682 34369 Face 68735 6653 34370 29228 Face 68736 34371 20761 34370 Face 68737 6653 34371 34370 Face 68738 6653 31659 34371 Face 68739 8490 34372 18808 Face 68740 8490 27031 34372 Face 68741 3244 34373 25476 Face 68742 3244 11686 34373 Face 68743 36469 34374 16065 Face 68744 3724 8964 34374 Face 68745 12091 34375 8543 Face 68746 45847 25195 34375 Face 68747 27260 34376 20597 Face 68748 27260 42341 34376 Face 68749 48878 34377 9375 Face 68750 9403 18153 34377 Face 68751 2815 34378 8264 Face 68752 2815 42410 44927 Face 68753 47098 34379 22241 Face 68754 4436 15767 34379 Face 68755 14724 34380 33435 Face 68756 14724 3752 34380 Face 68757 15085 34381 36658 Face 68758 15085 22000 34381 Face 68759 8718 34382 19228 Face 68760 8718 46780 34382 Face 68761 1452 34383 33829 Face 68762 1452 11808 34383 Face 68763 16645 34384 33614 Face 68764 16645 46392 34384 Face 68765 7634 34385 29639 Face 68766 7634 14130 34385 Face 68767 16891 34386 30931 Face 68768 16891 45320 34386 Face 68769 6052 34387 32027 Face 68770 6052 8768 34387 Face 68771 24968 34388 44572 Face 68772 24968 39049 34388 Face 68773 1850 34389 14780 Face 68774 1850 41984 34389 Face 68775 14264 34390 8684 Face 68776 14264 23839 34390 Face 68777 6834 34391 17501 Face 68778 6834 2038 34391 Face 68779 6643 34392 4369 Face 68780 6643 28470 34392 Face 68781 13471 34393 23833 Face 68782 13471 29242 34393 Face 68783 34395 34394 15472 Face 68784 17970 2734 34394 Face 68785 17970 34395 9831 Face 68786 17970 34394 34395 Face 68787 40661 34396 31975 Face 68788 40661 41049 34396 Face 68789 23285 34397 44915 Face 68790 38079 20603 34397 Face 68791 7484 34398 27552 Face 68792 7484 3804 34398 Face 68793 3539 34399 32679 Face 68794 42903 29082 34399 Face 68795 41803 34400 5966 Face 68796 27841 32859 34400 Face 68797 3709 34401 45946 Face 68798 3709 8165 34401 Face 68799 5883 34402 49233 Face 68800 5883 8128 34402 Face 68801 49054 34403 21081 Face 68802 1372 29441 34403 Face 68803 10273 34404 30604 Face 68804 10273 32844 34404 Face 68805 3196 34405 42261 Face 68806 3196 23858 34405 Face 68807 30974 34406 13385 Face 68808 41677 18632 47082 Face 68809 12526 34407 18865 Face 68810 12526 6812 34407 Face 68811 5121 34408 16042 Face 68812 37151 33405 34408 Face 68813 42139 34409 40436 Face 68814 957 23094 34409 Face 68815 6691 34410 37340 Face 68816 6691 28686 34410 Face 68817 34410 34411 37340 Face 68818 34410 4651 34411 Face 68819 18156 34412 27934 Face 68820 18156 49404 34412 Face 68821 4130 34413 44489 Face 68822 4130 18180 34413 Face 68823 15355 34414 2149 Face 68824 15355 43149 34414 Face 68825 1550 34415 22958 Face 68826 1550 26576 34415 Face 68827 3491 34416 26606 Face 68828 3491 18337 34416 Face 68829 10200 34417 38258 Face 68830 10200 3696 34417 Face 68831 14186 34418 28024 Face 68832 14186 24801 34418 Face 68833 24814 34419 33554 Face 68834 24814 27695 34419 Face 68835 6783 34420 32066 Face 68836 6783 15214 34420 Face 68837 3597 34421 23476 Face 68838 44300 22091 48560 Face 68839 9050 34422 38686 Face 68840 9050 21979 34422 Face 68841 9669 34423 25370 Face 68842 9669 24958 34423 Face 68843 36646 34424 14913 Face 68844 3101 20477 34424 Face 68845 9461 34425 41931 Face 68846 36459 7033 34425 Face 68847 13340 34426 21632 Face 68848 13340 14255 34426 Face 68849 34031 34427 34428 Face 68850 34031 17366 34427 Face 68851 42708 34428 34427 Face 68852 42707 34031 34428 Face 68853 14554 34429 3403 Face 68854 14554 7635 34429 Face 68855 16804 34430 33756 Face 68856 16804 3239 34430 Face 68857 18355 34431 31924 Face 68858 45806 7408 34431 Face 68859 13985 34432 44879 Face 68860 13985 48439 34432 Face 68861 38363 34433 23680 Face 68862 12497 27922 34433 Face 68863 47311 34434 5164 Face 68864 12357 19283 34434 Face 68865 4908 34435 12919 Face 68866 37051 32607 34435 Face 68867 17136 34436 8493 Face 68868 17136 23966 34436 Face 68869 65 34437 26580 Face 68870 65 41314 34437 Face 68871 10704 34438 29546 Face 68872 10704 30060 34438 Face 68873 13453 34439 29502 Face 68874 13453 10892 34439 Face 68875 12656 34440 12251 Face 68876 12656 32415 34440 Face 68877 12834 34441 23025 Face 68878 12834 15806 34441 Face 68879 3104 34442 36132 Face 68880 3104 11858 34442 Face 68881 42242 34443 17900 Face 68882 7455 20994 34443 Face 68883 129 34444 30721 Face 68884 129 21717 34444 Face 68885 148 34445 21916 Face 68886 148 38554 34445 Face 68887 2909 34446 44815 Face 68888 2909 47329 34446 Face 68889 5819 34447 49473 Face 68890 39463 45849 34447 Face 68891 16036 34448 41722 Face 68892 16036 31188 34448 Face 68893 44837 34449 3967 Face 68894 44837 33973 34449 Face 68895 12082 34450 31280 Face 68896 12082 29048 34450 Face 68897 8721 34451 29073 Face 68898 8721 16692 34451 Face 68899 4290 34452 16081 Face 68900 48646 30646 34452 Face 68901 34643 34453 3818 Face 68902 255 6662 34453 Face 68903 1693 34454 16415 Face 68904 1693 12606 34454 Face 68905 14100 34455 20671 Face 68906 14100 22461 34455 Face 68907 9013 34456 10725 Face 68908 9013 19978 40011 Face 68909 24682 34457 24683 Face 68910 24682 44731 34457 Face 68911 7468 34458 41513 Face 68912 7468 20146 34458 Face 68913 13995 34459 1887 Face 68914 13995 7164 34459 Face 68915 26367 34460 9491 Face 68916 26367 34869 34460 Face 68917 8173 34461 16687 Face 68918 8173 2506 34461 Face 68919 8556 34462 27265 Face 68920 8556 32422 34462 Face 68921 392 34463 18446 Face 68922 392 32123 34463 Face 68923 14262 34464 40763 Face 68924 14262 41587 34464 Face 68925 4461 34465 49071 Face 68926 34466 12226 34465 Face 68927 4461 34466 34465 Face 68928 4461 20201 34466 Face 68929 7745 34467 24099 Face 68930 7745 47843 34467 Face 68931 34469 34468 48084 Face 68932 31109 5407 34468 Face 68933 31109 34469 38219 Face 68934 31109 34468 34469 Face 68935 18348 34470 1389 Face 68936 18348 7305 34470 Face 68937 7655 34471 31820 Face 68938 7655 21945 34471 Face 68939 13704 34472 27890 Face 68940 13704 38376 34472 Face 68941 1310 34473 10276 Face 68942 1310 33826 34473 Face 68943 20351 34474 6779 Face 68944 20351 14134 34474 Face 68945 36163 34475 24397 Face 68946 754 13641 34475 Face 68947 6981 34476 26001 Face 68948 6981 46281 34476 Face 68949 37211 34477 13126 Face 68950 4016 23957 34477 Face 68951 3660 34478 12336 Face 68952 34531 40993 34478 Face 68953 19071 34479 6037 Face 68954 19071 46054 34479 Face 68955 3059 34480 21678 Face 68956 3059 33153 34480 Face 68957 3059 34481 33153 Face 68958 3059 21679 34481 Face 68959 41705 34482 43899 Face 68960 13585 14637 34482 Face 68961 9222 34483 45092 Face 68962 9222 28334 34483 Face 68963 6132 34484 26009 Face 68964 6132 15605 34484 Face 68965 10325 34485 14782 Face 68966 10325 42687 34485 Face 68967 27544 34486 17370 Face 68968 27544 33261 34486 Face 68969 37789 34487 16186 Face 68970 290 20049 34487 Face 68971 44566 34488 7149 Face 68972 38397 23724 34488 Face 68973 17714 34489 42562 Face 68974 17714 30364 37575 Face 68975 5918 34490 18222 Face 68976 5918 33362 34490 Face 68977 1785 34491 10804 Face 68978 1785 22641 34491 Face 68979 18757 34492 10322 Face 68980 18757 81 34492 Face 68981 7233 34493 19122 Face 68982 7233 34097 34493 Face 68983 14772 34494 48411 Face 68984 49579 15172 34494 Face 68985 34496 34495 26784 Face 68986 34498 32630 34495 Face 68987 34497 34496 1006 Face 68988 10618 34495 34496 Face 68989 10618 34497 39183 Face 68990 10618 34496 34497 Face 68991 10618 34498 34495 Face 68992 10618 39183 34498 Face 68993 48526 38578 8436 Face 68994 2250 19498 38577 Face 68995 10891 34500 1492 Face 68996 34501 33025 34500 Face 68997 10891 34501 34500 Face 68998 10891 760 34501 Face 68999 4333 34502 41479 Face 69000 4333 11757 34502 Face 69001 13423 34503 22629 Face 69002 13423 21577 34503 Face 69003 21420 34504 32608 Face 69004 21420 7540 34504 Face 69005 1540 34505 17017 Face 69006 1540 26117 34505 Face 69007 1801 34506 5256 Face 69008 1801 20599 34506 Face 69009 27760 34507 24872 Face 69010 27760 25968 34507 Face 69011 3314 34508 12896 Face 69012 3314 15329 34508 Face 69013 13310 34509 45002 Face 69014 13310 13743 34509 Face 69015 7104 49250 19742 Face 69016 7104 1482 34510 Face 69017 7020 34511 19222 Face 69018 7020 37230 34511 Face 69019 7235 34512 15165 Face 69020 48210 34957 34512 Face 69021 14814 34513 22765 Face 69022 14814 20624 34513 Face 69023 46059 34514 28427 Face 69024 18549 43262 34514 Face 69025 13575 34515 27079 Face 69026 13575 28923 34515 Face 69027 43697 34516 39399 Face 69028 2943 48489 34516 Face 69029 18167 47661 14008 Face 69030 18167 14366 34517 Face 69031 7817 34518 46551 Face 69032 7817 28229 34518 Face 69033 1428 34519 25698 Face 69034 1428 42394 34519 Face 69035 37954 34520 8766 Face 69036 42131 48242 34520 Face 69037 39326 34521 2109 Face 69038 35867 10599 34521 Face 69039 1578 34522 19095 Face 69040 1578 20564 34522 Face 69041 14894 34523 34258 Face 69042 14894 18160 34523 Face 69043 20256 34524 42244 Face 69044 20256 22258 34524 Face 69045 34526 34525 20391 Face 69046 6199 11763 34525 Face 69047 6199 34526 9152 Face 69048 6199 34525 34526 Face 69049 17859 34527 17858 Face 69050 17859 4047 34527 Face 69051 10208 34528 45683 Face 69052 10208 10207 34528 Face 69053 5771 34529 24336 Face 69054 5771 14634 34529 Face 69055 7521 47827 19315 Face 69056 7521 27608 34530 Face 69057 3660 34531 34478 Face 69058 3660 1436 34531 Face 69059 8365 34532 34879 Face 69060 8365 4029 34532 Face 69061 691 34533 32695 Face 69062 691 16304 34533 Face 69063 12936 34534 35829 Face 69064 12936 45005 34534 Face 69065 1342 34535 18177 Face 69066 1342 10761 34535 Face 69067 48943 34536 36416 Face 69068 34537 38233 34536 Face 69069 34538 34537 34536 Face 69070 34538 29214 34537 Face 69071 11660 34538 34536 Face 69072 11660 42677 34538 Face 69073 36501 34539 48734 Face 69074 494 29684 34539 Face 69075 7261 34540 7260 Face 69076 7261 48463 34540 Face 69077 2900 39999 32006 Face 69078 2900 11603 39999 Face 69079 8380 34542 25730 Face 69080 8380 43934 34542 Face 69081 34544 34543 12451 Face 69082 216 9952 34543 Face 69083 216 34544 40210 Face 69084 216 34543 34544 Face 69085 24832 34545 1867 Face 69086 24832 18596 34545 Face 69087 13590 34546 38320 Face 69088 13590 42895 34546 Face 69089 6431 34547 31341 Face 69090 6431 11648 34547 Face 69091 11420 34548 23107 Face 69092 45083 31162 34548 Face 69093 311 34549 21245 Face 69094 311 20021 34549 Face 69095 18633 34550 16008 Face 69096 18633 46992 34550 Face 69097 7911 34551 13570 Face 69098 7911 49904 34551 Face 69099 12071 34552 47365 Face 69100 12071 42878 34552 Face 69101 1770 34553 23351 Face 69102 1770 34141 34553 Face 69103 29653 34554 11086 Face 69104 29653 6287 34554 Face 69105 2597 34555 26552 Face 69106 2597 1502 34555 Face 69107 11431 34556 43772 Face 69108 11431 1222 34556 Face 69109 16210 34557 7965 Face 69110 36519 41109 34557 Face 69111 12389 34558 2826 Face 69112 12389 38749 34558 Face 69113 24038 34559 47079 Face 69114 24038 33792 34559 Face 69115 23099 34560 18672 Face 69116 43195 7454 49074 Face 69117 3914 34561 9683 Face 69118 3914 12145 34561 Face 69119 19526 34562 36719 Face 69120 19526 26561 34562 Face 69121 34562 34563 19527 Face 69122 34562 28078 34563 Face 69123 19788 34564 16111 Face 69124 19788 34016 34564 Face 69125 16154 34565 374 Face 69126 16154 6308 34565 Face 69127 6516 34566 45622 Face 69128 35818 17083 34566 Face 69129 7074 34567 23429 Face 69130 7074 27757 34567 Face 69131 34569 44857 8669 Face 69132 15605 4233 34568 Face 69133 15605 34569 34484 Face 69134 15605 44857 34569 Face 69135 5343 34570 18721 Face 69136 5343 22963 34570 Face 69137 27870 34571 8447 Face 69138 27870 40500 34571 Face 69139 7823 34572 23125 Face 69140 7823 16111 34572 Face 69141 42809 34573 20801 Face 69142 20535 32919 34573 Face 69143 1642 34574 8838 Face 69144 1642 31080 34574 Face 69145 11729 34575 5124 Face 69146 11729 39324 34575 Face 69147 49050 34576 11621 Face 69148 4190 25006 34576 Face 69149 14518 34577 35178 Face 69150 14518 44779 34577 Face 69151 9053 34578 8993 Face 69152 42728 2251 34578 Face 69153 21354 34579 36853 Face 69154 21354 27152 34579 Face 69155 13022 34580 27154 Face 69156 13022 11611 46903 Face 69157 1773 34581 31358 Face 69158 1773 15386 34581 Face 69159 1233 37208 35668 Face 69160 35181 44594 37208 Face 69161 5449 34583 21254 Face 69162 5449 20672 34583 Face 69163 1499 34584 39593 Face 69164 1499 33622 34584 Face 69165 34586 34585 25947 Face 69166 34586 23985 34585 Face 69167 11746 34586 25947 Face 69168 11746 21965 34586 Face 69169 9131 34587 10873 Face 69170 9131 3767 34587 Face 69171 15249 34588 22170 Face 69172 15249 6903 34588 Face 69173 981 34589 13982 Face 69174 981 5372 34589 Face 69175 44695 34590 44076 Face 69176 9765 11336 34590 Face 69177 10544 34591 48495 Face 69178 10544 17762 34591 Face 69179 21335 34592 45894 Face 69180 21335 37761 34592 Face 69181 22031 34593 29312 Face 69182 22031 4331 34593 Face 69183 614 34594 20777 Face 69184 614 18567 34594 Face 69185 7106 34595 16345 Face 69186 7106 16125 34595 Face 69187 6918 34596 29644 Face 69188 6918 26777 34596 Face 69189 2701 34597 44144 Face 69190 2701 34686 34597 Face 69191 2701 34598 13534 Face 69192 2701 44669 34598 Face 69193 10402 34599 28763 Face 69194 10402 25160 34599 Face 69195 4391 34600 39553 Face 69196 4391 23916 34600 Face 69197 11213 34601 22980 Face 69198 11213 18869 34601 Face 69199 11528 34602 27991 Face 69200 11528 12507 34602 Face 69201 12151 34603 44535 Face 69202 12151 7313 34603 Face 69203 12151 34604 7313 Face 69204 12151 40054 34604 Face 69205 44795 34605 24010 Face 69206 3161 18112 34605 Face 69207 2497 34606 24455 Face 69208 2497 16677 34606 Face 69209 18680 34607 8066 Face 69210 18680 13492 34607 Face 69211 20202 34608 1147 Face 69212 20202 4822 34608 Face 69213 22846 34609 42631 Face 69214 22846 15917 34609 Face 69215 44724 34610 42548 Face 69216 9033 18911 34610 Face 69217 209 34611 24505 Face 69218 209 20741 34611 Face 69219 12472 34612 22249 Face 69220 12472 47995 34612 Face 69221 839 34613 11645 Face 69222 45785 32713 34613 Face 69223 39239 34614 13444 Face 69224 1059 12898 34614 Face 69225 9452 34615 33746 Face 69226 9452 15980 34615 Face 69227 2336 34616 38444 Face 69228 2336 44902 34616 Face 69229 2519 34617 26772 Face 69230 2519 47282 34617 Face 69231 16492 34618 43991 Face 69232 16492 33433 34618 Face 69233 3783 34619 11383 Face 69234 3783 12155 34619 Face 69235 3936 34620 42245 Face 69236 3936 18601 34620 Face 69237 22683 34621 14645 Face 69238 22683 43839 34621 Face 69239 30311 34622 6807 Face 69240 36572 11623 34622 Face 69241 16457 34623 13465 Face 69242 16457 1985 34623 Face 69243 11106 34624 46351 Face 69244 11106 2198 34624 Face 69245 12265 34625 41917 Face 69246 12265 44276 34625 Face 69247 13219 34626 28486 Face 69248 40667 30364 34626 Face 69249 22186 34627 35679 Face 69250 22186 31949 34627 Face 69251 4755 34628 9824 Face 69252 4755 24138 34628 Face 69253 5650 34629 10960 Face 69254 5650 19717 34629 Face 69255 8803 34630 11508 Face 69256 8803 43915 34630 Face 69257 5954 38785 25118 Face 69258 5954 15381 34631 Face 69259 43856 34632 29276 Face 69260 1634 19174 34632 Face 69261 34634 34633 12532 Face 69262 14542 8042 34633 Face 69263 14542 34634 3798 Face 69264 14542 34633 34634 Face 69265 3183 34635 22650 Face 69266 3183 31035 34635 Face 69267 24755 34636 25492 Face 69268 24755 30560 34636 Face 69269 18220 34637 11421 Face 69270 34638 4095 34637 Face 69271 18220 34638 34637 Face 69272 18220 7212 34638 Face 69273 14609 34639 32131 Face 69274 14609 25783 34639 Face 69275 4301 34640 16009 Face 69276 41488 26774 34640 Face 69277 13013 34641 4213 Face 69278 13013 848 34641 Face 69279 15796 34642 4671 Face 69280 15796 25900 34642 Face 69281 255 34643 25287 Face 69282 255 34453 34643 Face 69283 4778 34644 37593 Face 69284 4778 21245 34644 Face 69285 22665 34645 40288 Face 69286 22665 39044 34645 Face 69287 22665 34646 35837 Face 69288 22665 40288 34646 Face 69289 15295 34647 7380 Face 69290 15295 41468 34647 Face 69291 22582 34648 12339 Face 69292 22582 43949 34648 Face 69293 3236 34649 14176 Face 69294 3236 31128 34649 Face 69295 10430 34650 39480 Face 69296 10430 28436 34650 Face 69297 8701 34651 3020 Face 69298 8701 13444 34651 Face 69299 6744 34652 4790 Face 69300 6744 45367 34652 Face 69301 17319 34653 47477 Face 69302 17319 46816 34653 Face 69303 4585 34654 25059 Face 69304 4585 18205 34654 Face 69305 4067 34655 22502 Face 69306 4067 11004 34655 Face 69307 20462 34656 23218 Face 69308 20462 20461 34656 Face 69309 421 34657 49738 Face 69310 421 40940 34657 Face 69311 2253 34658 48194 Face 69312 34660 41325 34658 Face 69313 34660 34659 10098 Face 69314 2253 48194 34659 Face 69315 2253 34660 34658 Face 69316 2253 34659 34660 Face 69317 13107 34661 26937 Face 69318 43178 24302 34661 Face 69319 8763 34662 27661 Face 69320 8763 4962 34662 Face 69321 19403 34663 4560 Face 69322 19403 14354 34663 Face 69323 657 34664 17106 Face 69324 657 46755 34664 Face 69325 16352 34665 18560 Face 69326 34666 19239 34665 Face 69327 16352 34666 34665 Face 69328 16352 22223 34666 Face 69329 40721 34667 5196 Face 69330 22395 47582 34667 Face 69331 16865 34668 26472 Face 69332 16865 45419 34668 Face 69333 9615 34670 25738 Face 69334 9615 36718 34670 Face 69335 34669 34670 35485 Face 69336 34669 25738 34670 Face 69337 4869 34671 19556 Face 69338 4869 47567 34671 Face 69339 9527 34672 14563 Face 69340 46842 4420 34672 Face 69341 1137 48857 24020 Face 69342 1137 42645 48857 Face 69343 22121 34674 31324 Face 69344 22121 42178 34674 Face 69345 9688 34675 48628 Face 69346 9688 49180 34675 Face 69347 17115 34676 38486 Face 69348 17115 4076 34676 Face 69349 7492 34677 22136 Face 69350 35738 16557 34677 Face 69351 3406 34678 13953 Face 69352 3406 25196 34678 Face 69353 3473 34679 15046 Face 69354 3473 48881 49438 Face 69355 22284 34680 35613 Face 69356 22284 47376 34680 Face 69357 5497 34681 42058 Face 69358 45511 21887 34681 Face 69359 4914 34682 29090 Face 69360 4914 19875 34682 Face 69361 11034 34683 16901 Face 69362 11034 34224 34683 Face 69363 6675 34684 30486 Face 69364 6675 10665 34684 Face 69365 21867 34685 37072 Face 69366 21867 34272 34685 Face 69367 13534 34686 2701 Face 69368 13534 10841 34686 Face 69369 13614 34687 29056 Face 69370 13614 9796 34687 Face 69371 13763 34688 43004 Face 69372 13763 37397 34688 Face 69373 8926 34689 2140 Face 69374 8926 16563 34689 Face 69375 34691 34690 7424 Face 69376 9638 40554 34690 Face 69377 9638 34691 27983 Face 69378 9638 34690 34691 Face 69379 1496 34693 17708 Face 69380 1496 9338 34693 Face 69381 34692 34693 17709 Face 69382 34692 36698 34693 Face 69383 16320 34694 4053 Face 69384 39557 8510 34694 Face 69385 19786 34695 20127 Face 69386 19786 10049 34695 Face 69387 7342 34696 31229 Face 69388 7342 43134 34696 Face 69389 9347 37864 24975 Face 69390 9347 31036 34697 Face 69391 5129 34698 263 Face 69392 5129 34056 34698 Face 69393 17734 34699 43077 Face 69394 17734 42771 34699 Face 69395 9557 34700 21982 Face 69396 9557 14394 34700 Face 69397 3184 34701 25861 Face 69398 3184 43578 34701 Face 69399 21937 34702 8146 Face 69400 21937 2688 34702 Face 69401 12085 34703 36000 Face 69402 12085 2 34703 Face 69403 34705 34704 44580 Face 69404 44092 20954 34704 Face 69405 5877 34705 49033 Face 69406 44092 34704 34705 Face 69407 9530 34706 8458 Face 69408 9530 2755 34706 Face 69409 14453 34707 26583 Face 69410 14453 4904 34707 Face 69411 34709 34708 31212 Face 69412 42715 48314 34708 Face 69413 6595 34709 25874 Face 69414 6595 34708 34709 Face 69415 18968 34710 39811 Face 69416 18968 17724 34710 Face 69417 19034 34711 36829 Face 69418 19034 344 34711 Face 69419 1366 34712 6986 Face 69420 38759 34710 47030 Face 69421 41543 34713 18296 Face 69422 6786 38136 34713 Face 69423 16801 34714 22380 Face 69424 49492 4270 34714 Face 69425 15613 34715 30581 Face 69426 15613 29436 34715 Face 69427 8727 34716 42161 Face 69428 8727 33792 34716 Face 69429 14487 34717 25879 Face 69430 43050 5192 34717 Face 69431 19945 34718 25520 Face 69432 19945 21331 34718 Face 69433 10822 34719 49311 Face 69434 49230 27740 34719 Face 69435 13699 34720 8667 Face 69436 13699 30461 34720 Face 69437 13991 34721 35631 Face 69438 13991 14731 34721 Face 69439 48080 34722 26859 Face 69440 48080 17935 34722 Face 69441 28392 34723 25586 Face 69442 28392 25986 34723 Face 69443 43129 34724 9090 Face 69444 43129 22880 34724 Face 69445 34724 34725 9090 Face 69446 34724 7353 34725 Face 69447 13753 34726 23006 Face 69448 13753 46019 34726 Face 69449 7764 34727 23658 Face 69450 7764 32699 34727 Face 69451 19854 34728 48171 Face 69452 19854 12294 34728 Face 69453 18328 34729 2877 Face 69454 18328 11143 34729 Face 69455 47503 34730 23201 Face 69456 14544 20787 34730 Face 69457 1784 34731 23460 Face 69458 1784 34347 34731 Face 69459 22023 34732 98 Face 69460 22023 15921 34732 Face 69461 8698 34733 24542 Face 69462 8698 45603 34733 Face 69463 1732 34734 18351 Face 69464 1732 16257 34734 Face 69465 18627 34735 32567 Face 69466 18627 48843 34735 Face 69467 3252 34736 34737 Face 69468 3252 2749 34736 Face 69469 44946 34737 34736 Face 69470 11178 3252 34737 Face 69471 13863 34738 8198 Face 69472 13863 5495 34738 Face 69473 18474 34739 1307 Face 69474 18474 3138 34739 Face 69475 2152 34740 6524 Face 69476 2152 30165 34740 Face 69477 6690 34741 20805 Face 69478 6690 46749 34741 Face 69479 10467 34742 35276 Face 69480 10467 22675 34742 Face 69481 25251 34743 31795 Face 69482 25251 3590 34743 Face 69483 20134 34744 41229 Face 69484 20134 44806 34744 Face 69485 9336 34745 10620 Face 69486 46430 8940 34745 Face 69487 4760 34746 45305 Face 69488 4760 43891 34746 Face 69489 11082 34747 15865 Face 69490 46848 31157 39655 Face 69491 20926 34748 41986 Face 69492 20926 36514 34748 Face 69493 2715 34749 34182 Face 69494 2715 37688 34749 Face 69495 12163 34750 19273 Face 69496 12163 27526 34750 Face 69497 12104 34751 44895 Face 69498 12104 15485 46149 Face 69499 12145 34752 47638 Face 69500 12145 3914 34752 Face 69501 4008 34753 33739 Face 69502 4008 42222 34753 Face 69503 49998 34754 49794 Face 69504 4774 21341 34754 Face 69505 20461 34755 38215 Face 69506 20461 20459 34755 Face 69507 19127 34756 30150 Face 69508 19127 13095 34756 Face 69509 47881 34757 30178 Face 69510 47881 17834 34757 Face 69511 10116 34758 39933 Face 69512 34759 2392 34758 Face 69513 10116 34759 34758 Face 69514 10116 14815 34759 Face 69515 3219 34760 29788 Face 69516 3219 13441 34760 Face 69517 40000 34761 21344 Face 69518 40000 46337 34761 Face 69519 3127 34762 23573 Face 69520 3127 20606 34762 Face 69521 13721 34763 20607 Face 69522 13721 18432 34763 Face 69523 1392 34764 44934 Face 69524 1392 23539 34764 Face 69525 28194 34765 30269 Face 69526 28194 24108 34765 Face 69527 34767 34766 12540 Face 69528 10877 34617 34766 Face 69529 10877 34767 1612 Face 69530 10877 34766 34767 Face 69531 38955 34768 41393 Face 69532 49941 25479 34768 Face 69533 3879 34769 27910 Face 69534 3879 28972 34769 Face 69535 34771 34770 48028 Face 69536 5911 40391 34770 Face 69537 5911 34771 17026 Face 69538 5911 34770 34771 Face 69539 13954 34772 46942 Face 69540 43024 535 34772 Face 69541 18333 34773 7491 Face 69542 18333 4848 34773 Face 69543 8398 34774 7187 Face 69544 8398 39628 34774 Face 69545 2880 34775 7449 Face 69546 2880 29901 34775 Face 69547 18617 34776 29303 Face 69548 18617 15496 34776 Face 69549 11256 34777 34667 Face 69550 11256 17881 34777 Face 69551 9719 34778 24037 Face 69552 34779 6529 34778 Face 69553 9719 34779 34778 Face 69554 9719 33385 34779 Face 69555 26740 34780 38303 Face 69556 26740 13947 34780 Face 69557 18095 34781 5328 Face 69558 18095 37844 34781 Face 69559 39048 47517 11464 Face 69560 13053 13025 34782 Face 69561 15741 34783 6558 Face 69562 35345 4692 34783 Face 69563 16031 34784 13392 Face 69564 16031 33742 34784 Face 69565 25201 34785 27101 Face 69566 25201 3251 34785 Face 69567 3235 34786 24303 Face 69568 3235 18281 34786 Face 69569 13641 34787 34475 Face 69570 34788 13709 34787 Face 69571 13641 34788 34787 Face 69572 45464 10234 34788 Face 69573 7890 34789 42905 Face 69574 7890 21972 34789 Face 69575 10715 34790 35246 Face 69576 34791 24117 34790 Face 69577 10715 34791 34790 Face 69578 10715 803 34791 Face 69579 5812 34792 41238 Face 69580 48591 3273 34792 Face 69581 5812 48591 34792 Face 69582 5812 25452 34793 Face 69583 9204 34794 32594 Face 69584 9204 3782 34794 Face 69585 3776 34795 23647 Face 69586 3776 25597 34795 Face 69587 10840 34796 25129 Face 69588 10840 24002 34796 Face 69589 4072 34797 32933 Face 69590 4072 39490 34797 Face 69591 7466 34798 26814 Face 69592 7466 1844 34798 Face 69593 48371 34799 25004 Face 69594 19750 2729 34799 Face 69595 3451 34800 8557 Face 69596 3451 36716 34800 Face 69597 9716 34801 19194 Face 69598 9716 25219 34801 Face 69599 7373 34802 16077 Face 69600 7373 41331 34802 Face 69601 5696 34803 18608 Face 69602 5696 8978 34803 Face 69603 13714 34804 3893 Face 69604 13714 48031 34804 Face 69605 737 34805 14015 Face 69606 737 29132 34805 Face 69607 9193 34806 18228 Face 69608 34807 13393 34806 Face 69609 47820 34807 34806 Face 69610 47820 2079 34807 Face 69611 34809 34808 28071 Face 69612 4158 14384 34808 Face 69613 4158 34809 48165 Face 69614 4158 34808 34809 Face 69615 10162 34810 17983 Face 69616 10162 1427 34810 Face 69617 11335 34811 30835 Face 69618 11335 48649 34811 Face 69619 27294 34812 41540 Face 69620 27294 3810 34812 Face 69621 11392 34813 2535 Face 69622 11392 18492 34813 Face 69623 30338 34814 39254 Face 69624 30338 16245 44100 Face 69625 2569 34815 16251 Face 69626 47252 10689 34815 Face 69627 32082 34816 436 Face 69628 32082 22390 34816 Face 69629 17640 34817 8159 Face 69630 17640 11861 34817 Face 69631 28136 34818 9753 Face 69632 28136 40728 34818 Face 69633 31 34819 30849 Face 69634 31 14235 34819 Face 69635 17546 34820 9568 Face 69636 49293 8670 34820 Face 69637 18770 34821 15820 Face 69638 18770 5079 34821 Face 69639 45364 34822 22933 Face 69640 12918 27549 34822 Face 69641 14374 34823 15524 Face 69642 14374 5878 34823 Face 69643 15380 34824 6330 Face 69644 15380 24382 34824 Face 69645 17879 34825 7670 Face 69646 17879 4738 34825 Face 69647 10933 34826 16267 Face 69648 10933 21866 34826 Face 69649 17468 34827 3379 Face 69650 17468 2369 34827 Face 69651 17468 34828 2369 Face 69652 17468 43599 34828 Face 69653 13465 34829 32723 Face 69654 13465 34930 34829 Face 69655 1842 34830 25050 Face 69656 1842 37744 34830 Face 69657 3656 34831 4890 Face 69658 3656 11300 34831 Face 69659 4716 34832 45595 Face 69660 4716 31367 34832 Face 69661 1036 34833 13043 Face 69662 1036 27560 34833 Face 69663 14111 34834 11574 Face 69664 14111 22958 34834 Face 69665 20823 34835 755 Face 69666 20823 9111 34835 Face 69667 4244 34836 43566 Face 69668 4244 25833 34836 Face 69669 3294 34837 30633 Face 69670 3294 41512 34837 Face 69671 17969 34838 26454 Face 69672 17969 21591 34838 Face 69673 1851 34839 14000 Face 69674 1851 33661 34839 Face 69675 10110 34840 29652 Face 69676 10110 19200 34840 Face 69677 40665 34841 48849 Face 69678 7784 20743 34841 Face 69679 22371 34842 44814 Face 69680 22371 31997 34842 Face 69681 21596 34843 43685 Face 69682 21596 41802 34843 Face 69683 9850 34844 13235 Face 69684 9850 26614 34844 Face 69685 609 34845 29764 Face 69686 609 46483 34845 Face 69687 8053 34846 30111 Face 69688 8053 44260 34846 Face 69689 46222 34847 10171 Face 69690 7103 27267 34847 Face 69691 1119 34848 26817 Face 69692 1119 48937 34848 Face 69693 3634 34849 21181 Face 69694 3634 47663 34849 Face 69695 15435 34850 21782 Face 69696 15435 40128 34850 Face 69697 16695 34851 9067 Face 69698 16695 45194 34851 Face 69699 460 34852 49913 Face 69700 43097 18687 34852 Face 69701 47035 34853 12812 Face 69702 23264 20250 34853 Face 69703 34855 34854 16981 Face 69704 5571 17016 34854 Face 69705 48308 34855 40418 Face 69706 5571 34854 34855 Face 69707 2357 34856 28199 Face 69708 2357 11263 34856 Face 69709 40118 34857 37747 Face 69710 11435 49068 34858 Face 69711 34857 34858 20556 Face 69712 34857 11435 34858 Face 69713 17315 34859 2589 Face 69714 17315 20291 34859 Face 69715 7101 34860 25429 Face 69716 7101 13390 34860 Face 69717 49046 34861 8496 Face 69718 23880 22594 34861 Face 69719 16350 34862 25168 Face 69720 16350 28293 34862 Face 69721 793 34863 3550 Face 69722 793 11449 34863 Face 69723 9416 34864 28105 Face 69724 9416 35496 34864 Face 69725 9928 34865 5933 Face 69726 9928 38228 34865 Face 69727 20974 34866 22002 Face 69728 20974 44302 34866 Face 69729 1397 34867 38774 Face 69730 37085 3835 34867 Face 69731 40335 34868 14242 Face 69732 20624 26591 34868 Face 69733 5674 34869 48654 Face 69734 5674 34460 34869 Face 69735 35974 34870 23233 Face 69736 1227 28556 34870 Face 69737 11535 34871 26696 Face 69738 34872 16899 34871 Face 69739 11535 34872 34871 Face 69740 11535 46386 34872 Face 69741 1602 34873 18520 Face 69742 1602 14411 34873 Face 69743 10265 34874 15423 Face 69744 35867 34521 39326 Face 69745 42278 34875 40179 Face 69746 47831 6418 34875 Face 69747 42278 34876 34875 Face 69748 36590 6418 47831 Face 69749 14350 34877 12891 Face 69750 14350 37367 34877 Face 69751 20195 34878 1787 Face 69752 20195 17333 34878 Face 69753 10360 34879 34532 Face 69754 10360 43125 34879 Face 69755 10360 34880 452 Face 69756 10360 1833 34880 Face 69757 18963 34881 21459 Face 69758 18963 38122 34881 Face 69759 3553 34882 13269 Face 69760 3553 15646 34882 Face 69761 12864 34883 34884 Face 69762 12864 26664 34883 Face 69763 18849 34884 34883 Face 69764 18849 4646 34884 Face 69765 7427 34885 21575 Face 69766 7427 26031 34885 Face 69767 6712 34886 20920 Face 69768 6712 13726 34886 Face 69769 17052 34887 19039 Face 69770 17052 37563 34887 Face 69771 35050 34888 18795 Face 69772 44868 25269 34888 Face 69773 10676 34889 2475 Face 69774 10676 41257 34889 Face 69775 8164 34890 16293 Face 69776 8164 24237 48879 Face 69777 11553 34891 16401 Face 69778 11553 8707 34891 Face 69779 16124 34892 46254 Face 69780 45451 8690 34892 Face 69781 12857 34893 38738 Face 69782 47641 15214 34893 Face 69783 4575 34894 25585 Face 69784 4575 161 34894 Face 69785 22830 34895 34105 Face 69786 22830 32901 34895 Face 69787 4135 34896 22090 Face 69788 4135 44151 34896 Face 69789 15883 34897 9239 Face 69790 15883 2374 34897 Face 69791 8479 34898 30760 Face 69792 8479 48345 34898 Face 69793 11399 34899 41137 Face 69794 11399 25294 34899 Face 69795 26620 34900 2546 Face 69796 26620 43800 34900 Face 69797 7885 34901 29414 Face 69798 35044 31050 34901 Face 69799 11577 34902 5207 Face 69800 11577 5209 34902 Face 69801 26524 34903 27975 Face 69802 26524 42652 34903 Face 69803 1416 34904 24663 Face 69804 34905 20130 34904 Face 69805 1416 34905 34904 Face 69806 1416 25531 34905 Face 69807 16142 34906 18075 Face 69808 16142 32966 34906 Face 69809 15019 34907 25819 Face 69810 15019 38387 34907 Face 69811 29411 34908 32767 Face 69812 35420 13976 34908 Face 69813 19932 34909 4627 Face 69814 19932 11174 34909 Face 69815 10455 34910 6141 Face 69816 10455 27315 34910 Face 69817 3282 34911 19663 Face 69818 3282 31255 34911 Face 69819 13539 34912 43044 Face 69820 13539 44623 34912 Face 69821 13539 34913 31066 Face 69822 13539 43044 34913 Face 69823 7349 34914 12597 Face 69824 7349 13167 34914 Face 69825 6381 34915 15044 Face 69826 6381 17105 34915 Face 69827 17044 34916 33512 Face 69828 17044 43106 34916 Face 69829 3906 34917 32633 Face 69830 3906 24242 34917 Face 69831 10937 34918 26922 Face 69832 10937 38005 34918 Face 69833 11485 34919 33650 Face 69834 11485 1455 34919 Face 69835 17530 34920 1025 Face 69836 17530 28511 34920 Face 69837 10554 34921 46807 Face 69838 10554 18835 34921 Face 69839 34923 34922 41925 Face 69840 3359 13639 34922 Face 69841 3359 34923 6979 Face 69842 3359 34922 34923 Face 69843 47893 34924 40090 Face 69844 6647 14241 34924 Face 69845 21936 34925 21524 Face 69846 21936 42339 34925 Face 69847 12983 34926 10172 Face 69848 12983 14071 34926 Face 69849 9139 34927 12023 Face 69850 48055 1394 34927 Face 69851 32938 34928 9730 Face 69852 32938 21667 34928 Face 69853 26885 34929 15634 Face 69854 41143 7257 34929 Face 69855 3718 34930 13465 Face 69856 49402 13466 34930 Face 69857 21901 34931 6225 Face 69858 21901 20858 34931 Face 69859 18682 34932 21456 Face 69860 18682 44723 34932 Face 69861 10624 34933 32307 Face 69862 10624 31615 39504 Face 69863 20914 34934 40083 Face 69864 20914 14420 34934 Face 69865 12301 34935 8391 Face 69866 12301 25949 34935 Face 69867 13203 34936 24208 Face 69868 13203 7927 34936 Face 69869 11931 34937 25675 Face 69870 46081 14979 34937 Face 69871 48611 34938 23227 Face 69872 11105 16816 34938 Face 69873 7215 34939 9519 Face 69874 7215 22603 34939 Face 69875 38608 34940 11664 Face 69876 3315 10382 34940 Face 69877 21386 42917 25052 Face 69878 21386 4040 34941 Face 69879 17398 34942 3844 Face 69880 17398 4143 34942 Face 69881 44783 34943 28578 Face 69882 35553 16812 34943 Face 69883 20708 34944 11978 Face 69884 34945 31424 34944 Face 69885 20708 34945 34944 Face 69886 20708 19093 34945 Face 69887 10962 34946 18093 Face 69888 10962 21238 34946 Face 69889 1304 34947 11787 Face 69890 1304 42455 34947 Face 69891 40480 34948 25674 Face 69892 4915 22026 34948 Face 69893 14527 34949 1853 Face 69894 14527 26379 34949 Face 69895 8244 34950 30818 Face 69896 8244 23457 34951 Face 69897 34950 34951 19567 Face 69898 34950 8244 34951 Face 69899 21240 34952 2760 Face 69900 21240 267 34952 Face 69901 34954 34953 8608 Face 69902 10196 23225 34953 Face 69903 10196 34954 40548 Face 69904 10196 34953 34954 Face 69905 17918 34955 41704 Face 69906 17918 929 34955 Face 69907 38349 34956 48510 Face 69908 18540 4417 34956 Face 69909 7849 34957 35890 Face 69910 7849 34512 34957 Face 69911 2180 34958 35288 Face 69912 2180 14905 34958 Face 69913 34960 34959 19229 Face 69914 9590 22188 34959 Face 69915 34961 34960 8050 Face 69916 46501 34959 34960 Face 69917 41303 34961 26831 Face 69918 46501 34960 34961 Face 69919 11103 34962 22459 Face 69920 11103 21632 34962 Face 69921 7398 34963 38103 Face 69922 7398 31271 34963 Face 69923 5859 34964 32872 Face 69924 5859 20853 34964 Face 69925 12465 34965 44977 Face 69926 12465 35673 34965 Face 69927 2825 34966 29036 Face 69928 34967 588 34966 Face 69929 2825 34967 34966 Face 69930 2825 11276 34967 Face 69931 45238 34968 28547 Face 69932 4867 34969 34968 Face 69933 23335 34969 38579 Face 69934 23335 34968 34969 Face 69935 1768 34970 17910 Face 69936 1768 26744 34970 Face 69937 18 34971 45490 Face 69938 35518 33477 34971 Face 69939 7961 34972 30411 Face 69940 7961 12132 34972 Face 69941 838 34973 9394 Face 69942 838 44736 34973 Face 69943 4544 34974 9040 Face 69944 4544 10322 34974 Face 69945 6369 34975 14562 Face 69946 6369 25309 34975 Face 69947 937 34976 14720 Face 69948 34977 32670 34976 Face 69949 937 34977 34976 Face 69950 937 32590 34977 Face 69951 13846 34978 23731 Face 69952 13846 32871 34978 Face 69953 11405 34979 15468 Face 69954 46860 27636 34979 Face 69955 9415 34980 18284 Face 69956 9415 4186 34980 Face 69957 22297 34981 11462 Face 69958 22297 44304 34981 Face 69959 15093 34982 20911 Face 69960 40569 29378 34982 Face 69961 47123 34983 22079 Face 69962 4911 11229 34983 Face 69963 1676 34984 21951 Face 69964 45605 11257 34984 Face 69965 10318 34985 6502 Face 69966 10318 33715 34985 Face 69967 13677 34986 25928 Face 69968 13677 19683 34986 Face 69969 893 34987 37059 Face 69970 893 22928 34987 Face 69971 11156 34988 42971 Face 69972 11156 18776 34989 Face 69973 34988 34989 34086 Face 69974 34988 11156 34989 Face 69975 42408 34990 32783 Face 69976 645 42599 34990 Face 69977 15040 34991 30221 Face 69978 39462 13224 34991 Face 69979 18226 34992 363 Face 69980 18226 40985 34992 Face 69981 22671 34993 11991 Face 69982 22671 5586 34993 Face 69983 89 34994 10989 Face 69984 89 4619 34994 Face 69985 21166 34995 31591 Face 69986 21166 4002 34995 Face 69987 14601 34996 34091 Face 69988 14601 11052 34996 Face 69989 19106 34997 11374 Face 69990 19106 48221 34997 Face 69991 24804 41702 1313 Face 69992 24804 28690 34998 Face 69993 5531 34999 10995 Face 69994 5531 44641 34999 Face 69995 1834 35000 11149 Face 69996 1834 18242 35000 Face 69997 14911 35001 25114 Face 69998 14911 3729 35001 Face 69999 12077 35002 49287 Face 70000 12077 76 35002 Face 70001 13250 35003 40002 Face 70002 13250 14825 35003 Face 70003 1053 35004 16628 Face 70004 1053 21843 35004 Face 70005 8648 35005 14224 Face 70006 8648 7718 35005 Face 70007 5313 35006 11771 Face 70008 35007 29036 35006 Face 70009 5313 35007 35006 Face 70010 5313 21686 35007 Face 70011 17827 35008 49871 Face 70012 17827 23116 35008 Face 70013 37288 35009 7359 Face 70014 37288 18324 35009 Face 70015 13681 35010 32166 Face 70016 13681 13289 35010 Face 70017 40075 35011 23791 Face 70018 8594 41815 35011 Face 70019 4170 35012 6071 Face 70020 4170 29551 35012 Face 70021 20765 35013 46475 Face 70022 20765 29790 35013 Face 70023 4432 35014 7666 Face 70024 4432 915 35014 Face 70025 14202 35015 38180 Face 70026 46011 8914 35015 Face 70027 14188 35016 42327 Face 70028 14188 45548 35016 Face 70029 9712 35017 34316 Face 70030 9712 29724 35017 Face 70031 16561 35018 22935 Face 70032 16561 31702 35018 Face 70033 2488 35019 40429 Face 70034 2488 45863 35019 Face 70035 3911 35020 14928 Face 70036 3911 29663 35020 Face 70037 40831 35021 26288 Face 70038 40831 5530 35021 Face 70039 7314 35022 13068 Face 70040 7314 1701 35022 Face 70041 3824 35023 39402 Face 70042 3824 16534 35023 Face 70043 13183 35024 6707 Face 70044 13183 2102 35024 Face 70045 11071 35025 29172 Face 70046 11071 6406 35025 Face 70047 44928 35026 8012 Face 70048 11714 30810 35026 Face 70049 8542 35027 28192 Face 70050 8542 48986 35027 Face 70051 5307 35028 11853 Face 70052 5307 9456 35028 Face 70053 9601 35029 5865 Face 70054 9601 37534 35029 Face 70055 17018 35030 39112 Face 70056 17018 5852 35030 Face 70057 23798 35031 11968 Face 70058 23798 14101 35031 Face 70059 35033 35032 15976 Face 70060 1211 13029 35032 Face 70061 1211 35033 11988 Face 70062 1211 35032 35033 Face 70063 5997 35034 26387 Face 70064 5997 29597 35034 Face 70065 39855 35035 25135 Face 70066 5942 19488 35035 Face 70067 18389 35036 48987 Face 70068 18389 7449 35036 Face 70069 7203 35037 20176 Face 70070 47491 2458 35037 Face 70071 6779 35038 25031 Face 70072 39422 4688 35038 Face 70073 26640 35039 31687 Face 70074 39819 2764 35039 Face 70075 47189 35040 22828 Face 70076 17453 37927 35040 Face 70077 20105 35041 3257 Face 70078 20105 4213 35041 Face 70079 2867 35042 22146 Face 70080 2867 16754 35042 Face 70081 25471 35043 24020 Face 70082 25471 7926 35043 Face 70083 7885 35044 34901 Face 70084 7885 10102 35044 Face 70085 13012 35045 44463 Face 70086 13012 43535 35045 Face 70087 42626 35046 12419 Face 70088 4820 24576 35046 Face 70089 35048 35047 28360 Face 70090 3128 24611 35047 Face 70091 46135 35048 10565 Face 70092 3128 35047 35048 Face 70093 296 35049 47840 Face 70094 296 40213 35049 Face 70095 44868 35050 42266 Face 70096 44868 34888 35050 Face 70097 14993 35051 35236 Face 70098 14993 42549 35051 Face 70099 16889 35052 30181 Face 70100 16889 397 35052 Face 70101 38294 35053 7515 Face 70102 17267 31896 35053 Face 70103 12634 35054 26247 Face 70104 12634 32019 35054 Face 70105 2860 35055 18460 Face 70106 2860 13745 35055 Face 70107 19449 35056 30671 Face 70108 19449 1966 35056 Face 70109 1852 35057 8881 Face 70110 1852 24427 35057 Face 70111 5307 35058 17682 Face 70112 5307 11853 35058 Face 70113 968 35059 42876 Face 70114 968 34081 35059 Face 70115 13774 35060 25116 Face 70116 13774 32780 35060 Face 70117 19035 35061 2447 Face 70118 19035 11307 35061 Face 70119 4194 35062 32579 Face 70120 4194 16596 35062 Face 70121 5554 35063 5978 Face 70122 5554 35662 35063 Face 70123 17885 35064 27987 Face 70124 41220 6245 35064 Face 70125 8327 48152 11072 Face 70126 8327 45510 35065 Face 70127 24325 35066 17513 Face 70128 24325 33396 35066 Face 70129 20425 35067 23903 Face 70130 20425 49925 35067 Face 70131 13306 35068 22956 Face 70132 13306 2910 35068 Face 70133 6191 35069 21494 Face 70134 6191 8430 35069 Face 70135 6191 35070 11658 Face 70136 6191 21494 35070 Face 70137 15220 35071 44040 Face 70138 15220 20791 35071 Face 70139 7116 35072 49207 Face 70140 7116 36747 35072 Face 70141 18222 35073 23075 Face 70142 18222 34490 35073 Face 70143 8730 35074 3152 Face 70144 8730 29299 35074 Face 70145 16361 35075 35291 Face 70146 16361 41864 35075 Face 70147 20702 35076 20703 Face 70148 20702 14636 35076 Face 70149 35078 35077 1982 Face 70150 7051 28698 35077 Face 70151 7051 35078 19691 Face 70152 7051 35077 35078 Face 70153 26923 35079 33059 Face 70154 26923 41531 35079 Face 70155 16364 35080 25708 Face 70156 16364 19817 35080 Face 70157 72 35081 46765 Face 70158 40774 19147 35081 Face 70159 19648 35082 17397 Face 70160 19648 13845 35082 Face 70161 42710 35083 15369 Face 70162 8473 2040 35083 Face 70163 1938 35084 48683 Face 70164 1938 15431 35084 Face 70165 12683 35085 49197 Face 70166 12683 28770 35085 Face 70167 12421 35086 10074 Face 70168 12421 27320 35086 Face 70169 44151 35087 34896 Face 70170 44151 41252 35087 Face 70171 8971 35088 30466 Face 70172 8971 31159 35088 Face 70173 19227 35089 22357 Face 70174 19227 28112 35089 Face 70175 19638 35090 6473 Face 70176 19638 49182 35090 Face 70177 13664 35091 48310 Face 70178 13664 892 35091 Face 70179 35093 35092 49995 Face 70180 3687 25136 35092 Face 70181 3687 35093 12565 Face 70182 3687 35092 35093 Face 70183 9033 35094 3257 Face 70184 9033 34610 44724 Face 70185 41030 35095 19362 Face 70186 580 23919 35095 Face 70187 1601 35096 28195 Face 70188 1601 5084 35096 Face 70189 37441 35097 46346 Face 70190 7988 34414 35097 Face 70191 47856 35098 33490 Face 70192 36798 6865 35098 Face 70193 27516 35099 24730 Face 70194 27516 33085 35099 Face 70195 3237 35100 43202 Face 70196 3237 22043 35100 Face 70197 1467 35101 22843 Face 70198 1467 15435 35101 Face 70199 8007 35102 31435 Face 70200 8007 7585 35102 Face 70201 29611 35103 17722 Face 70202 29611 42010 35103 Face 70203 3848 35104 17696 Face 70204 3848 34178 35104 Face 70205 47238 35105 7501 Face 70206 8144 22760 35105 Face 70207 38056 35106 28826 Face 70208 48579 1153 35106 Face 70209 9922 35107 24786 Face 70210 9922 38483 35107 Face 70211 5949 35108 49514 Face 70212 5949 13117 35108 Face 70213 7495 35109 26878 Face 70214 7495 37177 35109 Face 70215 10809 35110 16471 Face 70216 10809 31613 35110 Face 70217 41361 35111 44468 Face 70218 49633 4052 35111 Face 70219 16295 35112 12088 Face 70220 16295 37846 35112 Face 70221 11734 35113 2642 Face 70222 42884 20435 35113 Face 70223 11905 35114 33750 Face 70224 38692 21176 35114 Face 70225 4929 35115 31997 Face 70226 4929 21018 35115 Face 70227 9807 35116 6922 Face 70228 9807 1394 35116 Face 70229 13130 35117 38064 Face 70230 13130 20814 35117 Face 70231 4939 35118 25091 Face 70232 4939 29101 35118 Face 70233 17524 35119 44604 Face 70234 17524 27213 35119 Face 70235 20358 35120 38958 Face 70236 20358 30459 35120 Face 70237 5473 35121 29050 Face 70238 5473 17460 35121 Face 70239 14701 35122 39002 Face 70240 14701 27600 35122 Face 70241 16639 35123 39929 Face 70242 16639 16406 35123 Face 70243 35125 35124 9221 Face 70244 14272 15240 35124 Face 70245 14272 35125 9221 Face 70246 14272 35124 35125 Face 70247 2750 35126 25873 Face 70248 35720 15131 35126 Face 70249 9844 35127 26145 Face 70250 9844 27285 35127 Face 70251 16196 35128 24249 Face 70252 16196 49281 35128 Face 70253 1901 35129 15476 Face 70254 1901 42567 35129 Face 70255 9840 35130 21491 Face 70256 9840 14480 35130 Face 70257 43289 35131 13387 Face 70258 3364 26491 35131 Face 70259 11818 35132 11817 Face 70260 11818 14857 35132 Face 70261 13774 35133 32780 Face 70262 13774 1073 35133 Face 70263 10077 35134 31769 Face 70264 10077 8580 35134 Face 70265 19600 35135 21524 Face 70266 19600 32484 35135 Face 70267 3094 35136 21580 Face 70268 3094 27469 35136 Face 70269 11655 35137 16056 Face 70270 11655 28887 35137 Face 70271 11223 35138 22097 Face 70272 11223 17329 35138 Face 70273 6069 35139 26403 Face 70274 41716 19676 35139 Face 70275 19052 35140 8056 Face 70276 19052 38011 35140 Face 70277 1350 35141 21195 Face 70278 1350 20670 35141 Face 70279 15227 35142 26946 Face 70280 15227 27001 35142 Face 70281 14274 40348 14275 Face 70282 14274 17471 35143 Face 70283 1040 35144 20111 Face 70284 1040 16191 35144 Face 70285 12610 35145 12611 Face 70286 12610 4946 35145 Face 70287 1322 35146 18884 Face 70288 1322 19333 35146 Face 70289 7841 35147 43055 Face 70290 7841 12196 35147 Face 70291 7749 35148 30863 Face 70292 7749 2804 35148 Face 70293 5968 35149 26184 Face 70294 5968 29006 35149 Face 70295 23510 35150 2437 Face 70296 23510 14399 35150 Face 70297 12029 35151 47385 Face 70298 12029 34058 35151 Face 70299 6301 35152 18305 Face 70300 6301 21141 35152 Face 70301 4830 35153 26194 Face 70302 4830 29259 35153 Face 70303 10758 35154 17112 Face 70304 10758 43820 35154 Face 70305 30649 35155 35876 Face 70306 30649 25794 39791 Face 70307 2558 35156 9474 Face 70308 39858 20170 35156 Face 70309 1558 35157 13776 Face 70310 1558 26165 35157 Face 70311 10711 35158 15649 Face 70312 10711 31259 35158 Face 70313 8085 35159 12162 Face 70314 8085 47364 35159 Face 70315 18719 35160 46197 Face 70316 18719 3556 35160 Face 70317 8593 35161 8990 Face 70318 8593 4217 35161 Face 70319 2620 35162 43403 Face 70320 48085 9955 35162 Face 70321 47322 35163 13759 Face 70322 1572 7108 35164 Face 70323 35163 35164 39357 Face 70324 35163 1572 35164 Face 70325 15778 35165 46979 Face 70326 15778 3119 35165 Face 70327 285 35166 28481 Face 70328 285 28054 35166 Face 70329 4654 47946 25535 Face 70330 4654 22672 47946 Face 70331 10771 35168 9592 Face 70332 10771 11926 35168 Face 70333 6259 35169 44169 Face 70334 6259 26442 35169 Face 70335 4894 35170 32433 Face 70336 44086 5827 35170 Face 70337 3610 35171 11620 Face 70338 3610 17933 35171 Face 70339 20231 35172 30397 Face 70340 20231 28869 35172 Face 70341 11595 35173 22135 Face 70342 11595 29076 35173 Face 70343 41495 35174 30535 Face 70344 22593 6339 35174 Face 70345 9713 35175 25362 Face 70346 9713 19804 35175 Face 70347 4996 35176 10068 Face 70348 4996 37913 35176 Face 70349 1030 35177 15267 Face 70350 1030 25121 35177 Face 70351 608 35178 34577 Face 70352 608 16665 35178 Face 70353 14524 35179 28855 Face 70354 14524 30858 35179 Face 70355 9571 35180 7578 Face 70356 9571 14661 35180 Face 70357 1233 35181 37208 Face 70358 1233 46717 35181 Face 70359 25037 35182 17555 Face 70360 25037 15958 35182 Face 70361 7575 35183 44308 Face 70362 7575 21162 35183 Face 70363 24635 35184 6196 Face 70364 24635 17403 35184 Face 70365 297 35185 17231 Face 70366 44385 9433 35185 Face 70367 16917 35186 7512 Face 70368 16917 24742 35186 Face 70369 15099 35187 21258 Face 70370 15099 31275 35187 Face 70371 5124 35188 20734 Face 70372 5124 34575 35188 Face 70373 11550 35189 17782 Face 70374 11550 1626 35189 Face 70375 6297 35190 18590 Face 70376 6297 31251 35190 Face 70377 2730 35191 16138 Face 70378 2730 15454 35191 Face 70379 12837 35192 22896 Face 70380 12837 46804 35192 Face 70381 2542 35193 16135 Face 70382 39862 27665 35193 Face 70383 12772 35194 19482 Face 70384 12772 30899 35194 Face 70385 18093 35195 15113 Face 70386 18093 34946 35195 Face 70387 21357 35196 9200 Face 70388 21357 40924 35196 Face 70389 5895 35197 26935 Face 70390 5895 42077 35197 Face 70391 18079 35198 25318 Face 70392 18079 18137 35198 Face 70393 4451 35199 47089 Face 70394 4451 17658 35199 Face 70395 9545 35200 23822 Face 70396 49138 1746 35200 Face 70397 37785 35201 13697 Face 70398 8329 13894 35201 Face 70399 11070 35202 42796 Face 70400 11070 14323 35202 Face 70401 14468 47151 33596 Face 70402 14468 37405 35203 Face 70403 5845 35204 28792 Face 70404 5845 31306 35204 Face 70405 7016 35205 19702 Face 70406 7016 20325 35205 Face 70407 13178 35206 7821 Face 70408 13178 10140 35206 Face 70409 3935 35207 42618 Face 70410 3935 46578 35207 Face 70411 7178 35208 20618 Face 70412 7178 9889 49969 Face 70413 14124 35209 28635 Face 70414 14124 9861 35209 Face 70415 2066 35210 17265 Face 70416 2066 22774 35210 Face 70417 11934 35211 14327 Face 70418 11934 12517 35211 Face 70419 25947 35212 11746 Face 70420 25947 4305 35212 Face 70421 4257 35213 17773 Face 70422 38770 28200 35213 Face 70423 7927 35214 34936 Face 70424 7927 44700 35214 Face 70425 10927 35215 30073 Face 70426 10927 28778 35215 Face 70427 16578 35216 4692 Face 70428 16578 9578 35216 Face 70429 6718 35217 21094 Face 70430 6718 49361 35217 Face 70431 6975 35218 12071 Face 70432 6975 18411 35218 Face 70433 1656 35219 32353 Face 70434 1656 46354 35219 Face 70435 8409 35220 27060 Face 70436 8409 49277 35220 Face 70437 11678 35221 19206 Face 70438 11678 43196 35221 Face 70439 7843 35222 29700 Face 70440 7843 24848 35222 Face 70441 318 35223 7920 Face 70442 318 31387 35223 Face 70443 14685 35224 27060 Face 70444 14685 27089 35224 Face 70445 29092 35225 17308 Face 70446 35226 9574 35225 Face 70447 29092 35226 35225 Face 70448 29092 29093 35226 Face 70449 35228 35227 14406 Face 70450 47439 20245 35227 Face 70451 4127 35228 33836 Face 70452 4127 35227 35228 Face 70453 2539 35229 22315 Face 70454 2539 7071 35229 Face 70455 1403 35230 49574 Face 70456 1403 10812 35230 Face 70457 15698 35231 23926 Face 70458 15698 32101 35231 Face 70459 6874 35232 18211 Face 70460 6874 29655 35232 Face 70461 7033 35233 34269 Face 70462 7033 213 35233 Face 70463 3641 35234 18294 Face 70464 3641 25519 35234 Face 70465 4075 35235 28569 Face 70466 4075 21591 35235 Face 70467 35242 35236 35051 Face 70468 939 23882 35236 Face 70469 24903 35237 44266 Face 70470 24903 776 35237 Face 70471 35319 35238 17946 Face 70472 35239 24756 35238 Face 70473 2043 35239 35238 Face 70474 2043 7295 35239 Face 70475 16620 35240 26653 Face 70476 16620 8975 35240 Face 70477 7129 35241 42075 Face 70478 7129 35271 35241 Face 70479 939 35242 35743 Face 70480 939 35236 35242 Face 70481 301 35243 41025 Face 70482 301 30375 35243 Face 70483 13674 35244 23622 Face 70484 13674 27589 35244 Face 70485 1240 35245 42417 Face 70486 1240 21574 35245 Face 70487 1509 35246 21275 Face 70488 1509 11976 35246 Face 70489 15195 35247 16966 Face 70490 15195 775 35247 Face 70491 47533 35248 21784 Face 70492 22559 12406 35248 Face 70493 43827 35249 32613 Face 70494 747 12000 35249 Face 70495 18468 35250 5582 Face 70496 18468 2960 35250 Face 70497 4680 35251 23503 Face 70498 4680 20964 35251 Face 70499 18418 35252 16755 Face 70500 18418 3410 35252 Face 70501 2492 35253 28282 Face 70502 2492 28441 35253 Face 70503 9259 35254 43290 Face 70504 9259 9703 35254 Face 70505 9259 35255 9703 Face 70506 45223 17906 35255 Face 70507 12033 35256 35495 Face 70508 45033 3033 47219 Face 70509 9226 35257 8002 Face 70510 9226 8140 35257 Face 70511 5810 35258 22315 Face 70512 5810 26966 35258 Face 70513 19225 35259 5336 Face 70514 19225 34128 35259 Face 70515 19392 37214 6637 Face 70516 19392 2863 35260 Face 70517 337 35261 47993 Face 70518 337 28497 35261 Face 70519 9903 35262 7648 Face 70520 9903 22285 35262 Face 70521 19031 35263 2376 Face 70522 45680 3562 35263 Face 70523 44657 35264 17314 Face 70524 5134 18900 35264 Face 70525 9778 35265 33449 Face 70526 9778 31666 35265 Face 70527 8064 35266 41213 Face 70528 8064 18383 35266 Face 70529 48398 35267 25701 Face 70530 7416 32627 35267 Face 70531 3532 35268 23693 Face 70532 45348 16555 35268 Face 70533 28306 35269 1724 Face 70534 35270 9241 35269 Face 70535 28306 35270 35269 Face 70536 28306 9241 35270 Face 70537 10752 35271 5766 Face 70538 10752 35241 35271 Face 70539 12493 35272 49345 Face 70540 12493 38368 35272 Face 70541 7241 35273 38430 Face 70542 7241 22070 35273 Face 70543 18344 44121 40349 Face 70544 18344 10805 44121 Face 70545 8858 35275 28639 Face 70546 8858 2874 35275 Face 70547 2299 35276 25966 Face 70548 2299 10467 35276 Face 70549 5975 35277 23361 Face 70550 5975 11956 35277 Face 70551 16684 35278 16685 Face 70552 16684 6652 35278 Face 70553 13286 35279 29039 Face 70554 13286 29351 35279 Face 70555 1701 35280 10935 Face 70556 1701 42539 35280 Face 70557 29071 35281 25377 Face 70558 29071 7858 35281 Face 70559 26393 35282 730 Face 70560 26393 44788 35282 Face 70561 6919 35283 1538 Face 70562 41045 31167 35283 Face 70563 501 35284 3726 Face 70564 501 49019 35284 Face 70565 9358 35285 19997 Face 70566 9358 39498 35285 Face 70567 35287 35286 15821 Face 70568 3103 48347 35286 Face 70569 3103 35287 38027 Face 70570 3103 35286 35287 Face 70571 17985 35288 34958 Face 70572 17985 23375 35288 Face 70573 4231 35289 43986 Face 70574 4231 15534 35289 Face 70575 35291 35290 3648 Face 70576 7516 46798 35290 Face 70577 7516 35291 35075 Face 70578 7516 35290 35291 Face 70579 9435 35292 13817 Face 70580 38388 3904 35292 Face 70581 1248 35293 14564 Face 70582 35294 31853 35293 Face 70583 1248 35294 35293 Face 70584 1248 24108 35294 Face 70585 23413 35295 37697 Face 70586 23413 2991 35295 Face 70587 9329 35296 31838 Face 70588 9329 21741 35296 Face 70589 36969 35297 22184 Face 70590 2921 38487 35297 Face 70591 44764 35298 9672 Face 70592 19458 4061 35298 Face 70593 18559 35299 11164 Face 70594 18559 38866 35299 Face 70595 7628 35300 2824 Face 70596 7628 9850 46884 Face 70597 7288 35301 17009 Face 70598 7288 844 35301 Face 70599 18452 35302 609 Face 70600 18452 8763 35302 Face 70601 2628 35303 49956 Face 70602 2628 25786 35303 Face 70603 10718 35304 40245 Face 70604 10718 10471 35304 Face 70605 19794 35305 13600 Face 70606 19794 39720 35305 Face 70607 35307 35306 22248 Face 70608 6190 23249 35306 Face 70609 6190 35307 1267 Face 70610 6190 35306 35307 Face 70611 10708 35308 1790 Face 70612 39950 11666 49469 Face 70613 10111 35309 29895 Face 70614 10111 27941 35309 Face 70615 42738 35310 30831 Face 70616 16711 13874 35310 Face 70617 4720 39916 4722 Face 70618 4720 35112 35311 Face 70619 5279 35312 17337 Face 70620 5279 7105 35312 Face 70621 2393 35313 8928 Face 70622 2393 20007 35313 Face 70623 10244 35314 1411 Face 70624 10244 11753 35314 Face 70625 13103 35315 39861 Face 70626 42802 5611 35315 Face 70627 17781 35316 49246 Face 70628 17781 30118 35316 Face 70629 21782 35317 555 Face 70630 21782 12595 35317 Face 70631 2043 35318 15959 Face 70632 2043 35238 35319 Face 70633 35318 35319 18737 Face 70634 35318 2043 35319 Face 70635 548 35320 28591 Face 70636 548 42819 35320 Face 70637 49167 35321 36196 Face 70638 5265 41381 35321 Face 70639 5265 35322 8627 Face 70640 49167 11810 35322 Face 70641 14813 35323 47655 Face 70642 14813 42791 35323 Face 70643 16216 35324 37797 Face 70644 16216 2282 35324 Face 70645 45575 35325 1967 Face 70646 11150 43221 35325 Face 70647 24625 35326 2391 Face 70648 24625 6892 35326 Face 70649 15576 35327 4012 Face 70650 15576 8310 35327 Face 70651 23639 35328 21348 Face 70652 23639 3959 35328 Face 70653 12481 35329 26920 Face 70654 12481 39812 35329 Face 70655 7982 35330 32158 Face 70656 7982 33448 35330 Face 70657 25714 35331 611 Face 70658 25714 13138 35331 Face 70659 24220 35332 18935 Face 70660 24220 33271 35332 Face 70661 3162 35333 25929 Face 70662 3162 6397 35333 Face 70663 21649 35334 4204 Face 70664 21649 2813 35334 Face 70665 21677 35335 14997 Face 70666 21677 1087 35335 Face 70667 22885 35336 10661 Face 70668 22885 6393 35336 Face 70669 1256 35337 30602 Face 70670 1256 39688 35337 Face 70671 2815 35338 43136 Face 70672 2815 2579 35338 Face 70673 5355 35339 32671 Face 70674 5355 12663 35339 Face 70675 1016 35340 21546 Face 70676 1016 23325 35340 Face 70677 22042 35341 42895 Face 70678 22042 48678 35341 Face 70679 12738 35342 28346 Face 70680 12738 732 35342 Face 70681 7421 35343 1651 Face 70682 7421 46991 35343 Face 70683 15337 35344 30278 Face 70684 15337 5402 35344 Face 70685 15741 35345 34783 Face 70686 35346 2532 35345 Face 70687 15741 35346 35345 Face 70688 15741 38953 35346 Face 70689 19907 35347 47116 Face 70690 19907 17817 35347 Face 70691 15052 35348 23904 Face 70692 15052 42545 35348 Face 70693 49375 35349 5936 Face 70694 986 20830 35349 Face 70695 13860 35350 42407 Face 70696 13860 46109 35350 Face 70697 14484 35351 16586 Face 70698 14484 14417 35351 Face 70699 720 35352 11699 Face 70700 720 44838 35352 Face 70701 15115 35353 22034 Face 70702 15115 23069 35353 Face 70703 13890 35354 78 Face 70704 13890 28850 35354 Face 70705 42094 35355 39903 Face 70706 5359 38984 35355 Face 70707 5915 35356 21318 Face 70708 5915 29252 35356 Face 70709 29780 35357 15274 Face 70710 29780 16222 35357 Face 70711 4322 35358 24292 Face 70712 35359 15593 35358 Face 70713 4322 35359 35358 Face 70714 4322 19233 35359 Face 70715 4764 35360 9669 Face 70716 4764 29494 35360 Face 70717 12578 35361 40447 Face 70718 12578 23290 35361 Face 70719 2346 35362 26546 Face 70720 2346 47253 35362 Face 70721 1222 35363 2796 Face 70722 1222 31369 35363 Face 70723 7306 35364 41066 Face 70724 7306 28447 35364 Face 70725 26488 35365 4095 Face 70726 26488 29026 35365 Face 70727 15258 35366 43078 Face 70728 15258 42858 35366 Face 70729 14643 35367 30929 Face 70730 14643 23107 35367 Face 70731 23424 35368 3080 Face 70732 23424 16782 35368 Face 70733 13777 35369 15565 Face 70734 13777 19989 35369 Face 70735 750 35370 15341 Face 70736 750 31610 35370 Face 70737 32773 35371 33800 Face 70738 32773 13908 35371 Face 70739 17253 35372 9965 Face 70740 17253 16600 35372 Face 70741 21965 35373 34586 Face 70742 21965 23339 35373 Face 70743 974 35374 37393 Face 70744 974 14770 43619 Face 70745 1785 35375 43396 Face 70746 1785 25616 35375 Face 70747 13807 35376 4424 Face 70748 13807 8267 35376 Face 70749 7057 35377 7058 Face 70750 36353 7583 35377 Face 70751 8446 35378 30457 Face 70752 42671 17221 35378 Face 70753 35380 35379 16680 Face 70754 35380 44601 35379 Face 70755 12597 35380 7349 Face 70756 12597 44601 35380 Face 70757 15457 35381 22594 Face 70758 15457 23379 35381 Face 70759 13922 35382 27123 Face 70760 13922 48610 35382 Face 70761 30298 35383 856 Face 70762 30298 32541 35383 Face 70763 18416 35384 39180 Face 70764 18416 5873 35384 Face 70765 41009 35385 2790 Face 70766 12270 7957 35385 Face 70767 12003 35386 23406 Face 70768 12003 1765 35386 Face 70769 19887 35387 29502 Face 70770 19887 32655 35387 Face 70771 16027 35388 43471 Face 70772 16027 34869 35388 Face 70773 9481 35389 26186 Face 70774 9481 10483 35389 Face 70775 9302 35390 9913 Face 70776 9302 47368 35390 Face 70777 35392 35391 15799 Face 70778 13350 38005 35391 Face 70779 13350 35392 5499 Face 70780 13350 35391 35392 Face 70781 8050 35393 34961 Face 70782 8050 23625 35393 Face 70783 8428 35394 41274 Face 70784 8428 5957 35394 Face 70785 48939 35395 15384 Face 70786 12316 37474 35395 Face 70787 9048 35396 9455 Face 70788 9048 28448 35396 Face 70789 20813 35397 3861 Face 70790 48441 21940 35397 Face 70791 4299 35398 30440 Face 70792 4299 15958 35398 Face 70793 5243 35399 28804 Face 70794 5243 21976 35399 Face 70795 7248 35400 30391 Face 70796 7248 28864 35400 Face 70797 11129 35401 7752 Face 70798 11129 32404 35401 Face 70799 14264 35402 23839 Face 70800 47729 15359 35402 Face 70801 2717 35403 14971 Face 70802 2717 39160 35403 Face 70803 4567 35404 24075 Face 70804 4567 36636 35404 Face 70805 4540 35405 45967 Face 70806 4540 32986 35405 Face 70807 2195 35406 8325 Face 70808 2195 48469 35406 Face 70809 1653 37111 38326 Face 70810 49582 19802 35407 Face 70811 4187 35408 47088 Face 70812 4187 11074 35408 Face 70813 17176 35409 704 Face 70814 17176 5781 35409 Face 70815 21652 35410 6174 Face 70816 21652 6359 35410 Face 70817 822 35411 27033 Face 70818 822 26748 35411 Face 70819 2781 35412 32779 Face 70820 2781 39011 35412 Face 70821 5283 35413 20303 Face 70822 5283 15712 35413 Face 70823 35415 35414 2227 Face 70824 7798 12534 35414 Face 70825 7798 35415 45054 Face 70826 7798 35414 35415 Face 70827 40448 35416 21017 Face 70828 6813 25781 35416 Face 70829 6813 35417 13769 Face 70830 6813 35416 48606 Face 70831 43595 35418 32479 Face 70832 10748 32285 35418 Face 70833 3467 35419 42740 Face 70834 3467 27532 35419 Face 70835 29411 35420 34908 Face 70836 29411 39472 35420 Face 70837 6123 35421 17506 Face 70838 6123 21996 35421 Face 70839 9814 35422 34347 Face 70840 9814 27202 49370 Face 70841 37681 35423 5299 Face 70842 15002 11404 35423 Face 70843 2150 35424 27953 Face 70844 2150 10566 35424 Face 70845 4898 35425 43506 Face 70846 4898 44297 35425 Face 70847 16705 35426 40471 Face 70848 16705 12635 35426 Face 70849 16490 35427 25936 Face 70850 16490 2845 35427 Face 70851 15349 49686 1998 Face 70852 15349 46448 35428 Face 70853 2476 35429 31517 Face 70854 2476 17271 35429 Face 70855 8625 35430 25452 Face 70856 8625 20100 35430 Face 70857 11675 35431 2677 Face 70858 11675 41649 35431 Face 70859 2318 35432 40526 Face 70860 2318 31087 35432 Face 70861 16745 35433 30929 Face 70862 16745 13842 35433 Face 70863 5959 35434 28071 Face 70864 5959 13687 35434 Face 70865 1181 35435 7743 Face 70866 48670 21624 35435 Face 70867 12099 35436 24049 Face 70868 12099 8097 35436 Face 70869 10837 35437 43178 Face 70870 10837 32629 35437 Face 70871 45916 35438 25763 Face 70872 10480 24179 35438 Face 70873 10113 35439 8114 Face 70874 10113 44469 35439 Face 70875 47761 35440 6736 Face 70876 47761 41548 35440 Face 70877 15610 35441 29435 Face 70878 15610 40003 35441 Face 70879 18777 35442 2964 Face 70880 18777 12486 35442 Face 70881 19157 35443 21883 Face 70882 19157 25902 35443 Face 70883 17187 35444 42661 Face 70884 17187 13835 35444 Face 70885 16000 35445 16604 Face 70886 16000 29754 35445 Face 70887 5815 35446 16405 Face 70888 35447 41180 35446 Face 70889 5815 35447 35446 Face 70890 5815 47804 35447 Face 70891 529 35448 37966 Face 70892 529 5683 35448 Face 70893 529 35449 5683 Face 70894 529 41825 35449 Face 70895 925 35450 30120 Face 70896 925 17728 35450 Face 70897 13965 35451 10539 Face 70898 13965 2420 35451 Face 70899 19379 35452 6666 Face 70900 19379 11626 35452 Face 70901 10990 35453 3658 Face 70902 10990 25948 35453 Face 70903 5522 35454 34035 Face 70904 5522 37463 35454 Face 70905 3965 35455 20790 Face 70906 3965 34069 35455 Face 70907 21792 35456 4326 Face 70908 21792 8680 35456 Face 70909 5458 35457 16995 Face 70910 5458 19950 35457 Face 70911 7055 35458 8827 Face 70912 7055 51 35458 Face 70913 15766 35459 24210 Face 70914 15766 34282 35459 Face 70915 3610 35460 17933 Face 70916 3610 712 35460 Face 70917 5770 35461 1866 Face 70918 35462 12358 35461 Face 70919 5770 35462 35461 Face 70920 42359 47122 35462 Face 70921 1007 35463 45525 Face 70922 1007 20205 35463 Face 70923 17364 35464 17363 Face 70924 17364 13218 35464 Face 70925 1012 35465 11648 Face 70926 47040 29190 35465 Face 70927 10532 35466 10533 Face 70928 39714 49769 35466 Face 70929 42173 35467 30995 Face 70930 35468 9072 35467 Face 70931 6393 35468 35467 Face 70932 42172 30222 35468 Face 70933 11375 35469 18346 Face 70934 11375 26177 35469 Face 70935 7481 35470 46389 Face 70936 7481 35117 35470 Face 70937 9197 35471 36955 Face 70938 9197 49638 35471 Face 70939 22718 35472 36415 Face 70940 22718 20578 35472 Face 70941 28212 35473 17514 Face 70942 28212 21138 35473 Face 70943 27133 35474 18185 Face 70944 47263 19778 35474 Face 70945 21381 35475 15125 Face 70946 21381 14408 35475 Face 70947 43108 35476 578 Face 70948 10254 45517 35476 Face 70949 10616 35477 2732 Face 70950 10616 45954 35477 Face 70951 13365 35478 25811 Face 70952 13365 10986 35478 Face 70953 18951 35479 18952 Face 70954 18951 14756 35479 Face 70955 7023 35480 24917 Face 70956 7023 22496 35480 Face 70957 3191 35481 32592 Face 70958 3191 1361 35481 Face 70959 35483 35482 33612 Face 70960 47426 5719 35482 Face 70961 10020 35483 23543 Face 70962 10020 35482 35483 Face 70963 9514 35484 30548 Face 70964 9514 30030 35484 Face 70965 19527 35485 34670 Face 70966 19527 28078 35485 Face 70967 9434 35486 48450 Face 70968 37842 11070 35486 Face 70969 22046 35487 43167 Face 70970 22046 22047 35487 Face 70971 11472 35488 2341 Face 70972 11472 3232 35488 Face 70973 985 35489 27734 Face 70974 985 18231 35489 Face 70975 39046 35490 19528 Face 70976 9424 34931 35490 Face 70977 4163 35491 35802 Face 70978 4163 36429 35491 Face 70979 9690 35492 44284 Face 70980 9690 33423 35492 Face 70981 47646 35493 13403 Face 70982 4104 12550 35493 Face 70983 182 35494 41066 Face 70984 182 18910 35494 Face 70985 17813 35495 35256 Face 70986 17813 27099 35495 Face 70987 3201 35496 1271 Face 70988 3201 34864 35496 Face 70989 10314 35497 38023 Face 70990 10314 26114 35497 Face 70991 40595 35498 15265 Face 70992 8240 32666 35498 Face 70993 1643 35499 31523 Face 70994 1643 12147 35499 Face 70995 15251 35500 27625 Face 70996 15251 1876 35500 Face 70997 18495 35501 8897 Face 70998 18495 42536 35501 Face 70999 25756 35502 1395 Face 71000 25756 3859 35502 Face 71001 10714 35503 46490 Face 71002 10714 23422 35503 Face 71003 7872 35504 33475 Face 71004 7872 16752 35504 Face 71005 2042 35505 17946 Face 71006 2042 10299 35505 Face 71007 36529 35506 21839 Face 71008 2396 12138 35506 Face 71009 17661 35507 21711 Face 71010 17661 18955 35507 Face 71011 19300 35508 43347 Face 71012 19300 16732 35508 Face 71013 35511 35509 12761 Face 71014 5053 23834 35509 Face 71015 5053 35510 31072 Face 71016 5053 35509 35511 Face 71017 35510 35511 12761 Face 71018 35510 5053 35511 Face 71019 45632 35512 2067 Face 71020 3521 13001 35512 Face 71021 8400 35513 31783 Face 71022 8400 6887 35513 Face 71023 18126 46793 5643 Face 71024 18126 40598 35514 Face 71025 17674 35515 43972 Face 71026 17674 28936 35515 Face 71027 17722 35516 4573 Face 71028 17722 35517 35516 Face 71029 35103 35517 17722 Face 71030 35103 35516 35517 Face 71031 18 35518 34971 Face 71032 18 13154 35518 Face 71033 18692 35519 3306 Face 71034 18692 183 35519 Face 71035 7049 35520 14745 Face 71036 7049 27719 35520 Face 71037 2837 49504 40739 Face 71038 2837 27570 35521 Face 71039 18050 35522 29610 Face 71040 35523 18049 35522 Face 71041 18050 35523 35522 Face 71042 18050 18049 35523 Face 71043 9199 35524 7208 Face 71044 9199 16972 35524 Face 71045 2576 35525 36455 Face 71046 2576 34308 48470 Face 71047 5983 35526 41813 Face 71048 5983 47571 35526 Face 71049 17193 35527 37794 Face 71050 17193 26970 35527 Face 71051 36703 35528 45653 Face 71052 35529 15153 35528 Face 71053 5099 35529 35528 Face 71054 5099 43775 35529 Face 71055 3769 35530 1598 Face 71056 36611 19395 35530 Face 71057 5634 35531 13207 Face 71058 5634 41704 35531 Face 71059 14087 35532 26548 Face 71060 14087 33352 35532 Face 71061 17377 35533 1919 Face 71062 49018 28347 35533 Face 71063 196 35534 6540 Face 71064 196 32320 35534 Face 71065 12032 35535 28642 Face 71066 12032 479 35535 Face 71067 46909 35536 9646 Face 71068 13967 20869 35536 Face 71069 16777 35537 34137 Face 71070 16777 28436 35537 Face 71071 5813 35538 31647 Face 71072 5813 44654 35538 Face 71073 9110 35539 11177 Face 71074 9110 6936 35539 Face 71075 16049 35540 24449 Face 71076 16049 31378 35540 Face 71077 19984 35541 15748 Face 71078 19984 48245 35541 Face 71079 2241 35542 20081 Face 71080 2241 31965 35542 Face 71081 8444 35543 49372 Face 71082 36947 15307 35543 Face 71083 2922 35544 16214 Face 71084 2922 16832 35544 Face 71085 35546 35545 1818 Face 71086 18878 26406 35545 Face 71087 18878 35546 27563 Face 71088 35547 35545 35546 Face 71089 18878 35547 35546 Face 71090 18878 35545 35547 Face 71091 22 35548 28828 Face 71092 22 24732 35548 Face 71093 3714 35549 5988 Face 71094 3714 25886 35549 Face 71095 10389 35550 23520 Face 71096 10389 26240 35550 Face 71097 9607 35551 20244 Face 71098 9607 37895 35551 Face 71099 17807 35552 17808 Face 71100 17807 21483 35552 Face 71101 7475 35553 34943 Face 71102 7475 34338 35553 Face 71103 13741 35554 25567 Face 71104 13741 21619 35554 Face 71105 7703 35555 24081 Face 71106 7703 4978 35555 Face 71107 8368 35556 33081 Face 71108 45863 2488 35556 Face 71109 8609 35557 15293 Face 71110 8609 3865 35557 Face 71111 6862 35558 20044 Face 71112 6862 33782 35558 Face 71113 10760 35559 1682 Face 71114 10760 3928 35559 Face 71115 27564 35560 27563 Face 71116 27564 14576 35560 Face 71117 8245 35561 5184 Face 71118 8245 37025 35561 Face 71119 11114 35562 43609 Face 71120 11114 19760 35562 Face 71121 11 35563 11542 Face 71122 41380 19211 35563 Face 71123 22662 35564 6519 Face 71124 22662 28940 35564 Face 71125 9788 35565 1866 Face 71126 9788 29715 35565 Face 71127 16579 35566 27104 Face 71128 16579 48728 35566 Face 71129 38035 35567 22492 Face 71130 38035 30480 35567 Face 71131 42048 35568 46418 Face 71132 12822 4107 35568 Face 71133 8025 35569 25009 Face 71134 8025 48834 35569 Face 71135 8145 35570 6755 Face 71136 8145 22718 35570 Face 71137 5847 35571 34222 Face 71138 42057 20928 35571 Face 71139 42057 35572 26267 Face 71140 5847 10152 35572 Face 71141 394 35573 11596 Face 71142 394 45797 35573 Face 71143 18942 35574 29277 Face 71144 18942 23120 35574 Face 71145 22051 35575 4165 Face 71146 22051 1592 35575 Face 71147 4342 35576 21967 Face 71148 4342 16909 35576 Face 71149 28585 35577 3053 Face 71150 28585 21321 35577 Face 71151 13638 35578 21263 Face 71152 13638 33278 35578 Face 71153 23263 35579 1927 Face 71154 49517 33932 35579 Face 71155 1743 35580 43830 Face 71156 1743 31601 35580 Face 71157 11439 35581 19716 Face 71158 11439 24886 35581 Face 71159 3788 35582 42995 Face 71160 38696 2144 35582 Face 71161 8241 35583 26439 Face 71162 8241 17903 35583 Face 71163 45941 35584 1462 Face 71164 35585 7290 35584 Face 71165 45941 35585 35584 Face 71166 45941 28504 35585 Face 71167 6533 35586 40166 Face 71168 6533 517 35586 Face 71169 6533 35587 517 Face 71170 6533 16422 35587 Face 71171 11469 35588 19888 Face 71172 11469 7130 35588 Face 71173 7413 35589 28018 Face 71174 7413 40745 35589 Face 71175 15837 35590 10895 Face 71176 15837 20767 35590 Face 71177 39206 35591 7767 Face 71178 25311 33961 35591 Face 71179 5159 35592 15778 Face 71180 5159 20334 35592 Face 71181 7312 35593 27862 Face 71182 7312 24892 35593 Face 71183 21517 35594 5685 Face 71184 21517 3768 35594 Face 71185 7445 35595 19209 Face 71186 7445 312 35595 Face 71187 4816 35596 23842 Face 71188 4816 21304 35596 Face 71189 2224 35597 16070 Face 71190 2224 33349 35597 Face 71191 16738 35598 36267 Face 71192 16738 5719 35598 Face 71193 17134 35599 35978 Face 71194 17134 1191 35599 Face 71195 45237 35600 23813 Face 71196 157 35712 35600 Face 71197 46565 35601 28838 Face 71198 38647 22009 35601 Face 71199 24396 35602 15345 Face 71200 24396 9364 35602 Face 71201 11140 35603 8487 Face 71202 11140 27853 35603 Face 71203 43021 35604 27691 Face 71204 43021 35322 35604 Face 71205 18755 35605 30850 Face 71206 18755 1534 35605 Face 71207 18941 35606 42329 Face 71208 18941 17576 35606 Face 71209 21528 35607 30799 Face 71210 21528 37124 35607 Face 71211 13876 35608 11675 Face 71212 13876 3929 35608 Face 71213 42480 35609 18774 Face 71214 16156 26429 35609 Face 71215 4793 46477 39616 Face 71216 4793 13912 35610 Face 71217 5907 35611 8008 Face 71218 43053 13665 35611 Face 71219 16109 35612 30249 Face 71220 16109 20569 35612 Face 71221 35614 35613 34680 Face 71222 576 38580 35613 Face 71223 39292 35614 46734 Face 71224 576 35613 35614 Face 71225 17003 35615 12173 Face 71226 17003 17004 35615 Face 71227 24971 35616 43001 Face 71228 24971 16392 35616 Face 71229 5771 45252 41290 Face 71230 5771 24336 35617 Face 71231 24295 35618 26591 Face 71232 24295 398 35618 Face 71233 5927 35619 18354 Face 71234 5927 23593 41979 Face 71235 15989 35620 32461 Face 71236 15989 1528 35620 Face 71237 10359 35621 8261 Face 71238 10359 5491 35621 Face 71239 15232 35622 4265 Face 71240 15232 35743 35622 Face 71241 15232 35623 44927 Face 71242 15232 4265 35623 Face 71243 5791 35624 13670 Face 71244 5791 14834 35624 Face 71245 44546 35625 8669 Face 71246 713 34484 35625 Face 71247 19848 35626 24901 Face 71248 19848 29715 35626 Face 71249 39652 35627 11480 Face 71250 39652 19484 35627 Face 71251 27054 35628 35389 Face 71252 27054 16762 35628 Face 71253 19546 35629 38495 Face 71254 19546 760 35629 Face 71255 8815 35630 34256 Face 71256 8815 36026 35630 Face 71257 10168 35631 3270 Face 71258 10168 31774 35631 Face 71259 36130 35632 7936 Face 71260 5814 32181 35632 Face 71261 40014 35633 2771 Face 71262 25089 19180 35633 Face 71263 6506 35634 24500 Face 71264 6506 15874 35634 Face 71265 1907 35635 49823 Face 71266 1907 43637 35635 Face 71267 21020 35636 19972 Face 71268 21020 28847 35636 Face 71269 35638 35637 3167 Face 71270 12958 32002 35637 Face 71271 12958 35638 16710 Face 71272 12958 35637 35638 Face 71273 10556 35639 8862 Face 71274 10556 43270 35639 Face 71275 11811 35640 10969 Face 71276 11811 24164 35640 Face 71277 35680 35641 12197 Face 71278 13338 8333 35641 Face 71279 13655 35642 45312 Face 71280 13655 23797 35642 Face 71281 40395 35643 45432 Face 71282 1000 7593 35643 Face 71283 3975 35644 49674 Face 71284 3975 19993 35644 Face 71285 21090 35645 3442 Face 71286 21090 18061 35645 Face 71287 10682 35646 12245 Face 71288 10682 29265 35646 Face 71289 721 35647 6162 Face 71290 721 8051 35647 Face 71291 645 35648 21071 Face 71292 35649 7851 35648 Face 71293 645 35649 35648 Face 71294 42408 6536 35649 Face 71295 35651 35650 16017 Face 71296 35652 5500 35650 Face 71297 7177 35651 17073 Face 71298 7177 35650 35651 Face 71299 7177 35652 35650 Face 71300 7177 16016 35652 Face 71301 35654 35653 4351 Face 71302 1089 39843 35653 Face 71303 1089 35654 38724 Face 71304 1089 35653 35654 Face 71305 27537 46950 4900 Face 71306 27537 32085 46950 Face 71307 4879 35656 37848 Face 71308 35657 16730 35656 Face 71309 4879 35657 35656 Face 71310 4879 12160 35657 Face 71311 6956 35658 8150 Face 71312 6956 25111 35658 Face 71313 12514 35659 18998 Face 71314 12514 18601 35659 Face 71315 7419 35660 39136 Face 71316 7419 2650 35660 Face 71317 1023 35661 26842 Face 71318 35662 5554 35661 Face 71319 1023 35662 35661 Face 71320 1023 20976 35662 Face 71321 37526 35663 1986 Face 71322 7780 22730 35663 Face 71323 20924 35664 25611 Face 71324 20924 194 35664 Face 71325 1443 35665 23848 Face 71326 1443 29822 35665 Face 71327 13040 35666 19561 Face 71328 13040 45475 35666 Face 71329 15843 35667 43481 Face 71330 15843 3933 35667 Face 71331 11796 35668 18551 Face 71332 11796 17570 35668 Face 71333 19744 35669 15809 Face 71334 19744 197 35669 Face 71335 23518 47227 33438 Face 71336 23518 20713 35670 Face 71337 5599 35671 27174 Face 71338 5599 39023 35671 Face 71339 44006 35672 20991 Face 71340 5252 14684 35672 Face 71341 5104 35673 28641 Face 71342 5104 34965 35673 Face 71343 6987 35674 47566 Face 71344 38467 34307 43227 Face 71345 4494 35675 45602 Face 71346 4494 46411 35675 Face 71347 35677 35676 26680 Face 71348 35677 16446 35676 Face 71349 3895 35677 46119 Face 71350 37737 16446 35677 Face 71351 46629 35678 25385 Face 71352 22009 31807 35678 Face 71353 7335 35679 29395 Face 71354 7335 1757 35679 Face 71355 13338 35680 9385 Face 71356 13338 35641 35680 Face 71357 24037 35681 9719 Face 71358 24037 30050 35681 Face 71359 7253 35682 23362 Face 71360 7253 15786 35682 Face 71361 12251 35683 4515 Face 71362 12251 40612 35683 Face 71363 6484 35684 23242 Face 71364 6484 18542 35684 Face 71365 5001 35685 24539 Face 71366 5001 16942 35685 Face 71367 16543 35686 28126 Face 71368 16543 16542 35686 Face 71369 13781 35687 11940 Face 71370 13781 39046 35687 Face 71371 23103 35688 14868 Face 71372 23103 31829 35688 Face 71373 24027 35689 2075 Face 71374 24027 8263 35689 Face 71375 11304 35690 4059 Face 71376 11304 15655 35690 Face 71377 6255 35691 41083 Face 71378 6255 16038 35691 Face 71379 433 35692 38668 Face 71380 433 30717 35692 Face 71381 1085 35693 28355 Face 71382 1085 12471 35693 Face 71383 17899 35694 7711 Face 71384 17899 11925 35694 Face 71385 8795 35695 42761 Face 71386 8795 24743 35695 Face 71387 577 35696 11391 Face 71388 577 42793 35696 Face 71389 22518 35697 12137 Face 71390 22518 25215 35697 Face 71391 5390 35698 45275 Face 71392 5390 31917 35698 Face 71393 49279 35699 16549 Face 71394 18286 20514 35699 Face 71395 44982 35700 19533 Face 71396 7728 12976 35700 Face 71397 39298 35701 5047 Face 71398 38394 12385 35701 Face 71399 16315 35702 27072 Face 71400 16315 9332 35702 Face 71401 10354 35703 8338 Face 71402 10354 135 35703 Face 71403 9383 35704 13399 Face 71404 9383 16757 35704 Face 71405 481 35705 11850 Face 71406 481 31666 35705 Face 71407 35707 35706 19843 Face 71408 2823 30125 35706 Face 71409 42712 35707 30239 Face 71410 2823 35706 35707 Face 71411 4496 35708 30228 Face 71412 4496 25981 35708 Face 71413 18783 35709 2091 Face 71414 18783 44874 35709 Face 71415 5676 35710 3370 Face 71416 5676 29825 35710 Face 71417 12207 35711 37580 Face 71418 12207 21184 35711 Face 71419 2859 35712 12627 Face 71420 2859 20124 35712 Face 71421 16091 35713 11011 Face 71422 36971 12654 35713 Face 71423 4409 35714 7972 Face 71424 4409 15701 35714 Face 71425 4524 35715 14938 Face 71426 4524 36291 35715 Face 71427 22427 35716 22058 Face 71428 22427 22831 35716 Face 71429 6995 35717 22470 Face 71430 6995 24158 35717 Face 71431 47078 35718 31980 Face 71432 37417 12988 35718 Face 71433 21235 35719 42208 Face 71434 21235 10880 35719 Face 71435 2750 35720 35126 Face 71436 2750 10217 35720 Face 71437 10132 35721 12346 Face 71438 10132 23198 35721 Face 71439 18567 35722 14076 Face 71440 18567 614 35722 Face 71441 38552 35723 6483 Face 71442 12630 29957 35723 Face 71443 3825 35724 28111 Face 71444 3825 28546 35724 Face 71445 18661 35725 3140 Face 71446 18661 8865 35725 Face 71447 12808 35726 9670 Face 71448 12808 2441 35726 Face 71449 43149 35727 11288 Face 71450 7985 45499 35727 Face 71451 5943 35728 40997 Face 71452 35730 40474 35728 Face 71453 35730 35729 24655 Face 71454 5943 45351 35729 Face 71455 5943 35730 35728 Face 71456 5943 35729 35730 Face 71457 1921 35731 44058 Face 71458 1921 31608 35731 Face 71459 1875 35732 13177 Face 71460 1875 12428 35732 Face 71461 35734 35733 45217 Face 71462 35735 15922 35733 Face 71463 15921 35734 12470 Face 71464 15921 35733 35734 Face 71465 15921 35735 35733 Face 71466 15921 22023 35735 Face 71467 11744 35736 9049 Face 71468 11744 8412 35736 Face 71469 7451 35737 23280 Face 71470 7451 34009 35737 Face 71471 7492 35738 34677 Face 71472 46245 720 35738 Face 71473 24254 35739 5850 Face 71474 43954 30449 35739 Face 71475 2421 45231 10609 Face 71476 2421 25918 35740 Face 71477 19205 35741 4325 Face 71478 19205 34636 35741 Face 71479 10070 35742 1135 Face 71480 10070 26815 35742 Face 71481 3207 35743 35242 Face 71482 3207 35622 35743 Face 71483 18040 35744 693 Face 71484 18040 44565 35744 Face 71485 4856 35745 33504 Face 71486 4856 29883 35745 Face 71487 2849 35746 28229 Face 71488 2849 30082 35746 Face 71489 14294 35747 11680 Face 71490 14294 25409 35747 Face 71491 18360 35748 9292 Face 71492 18360 14218 35748 Face 71493 18087 35749 10586 Face 71494 18087 7833 35749 Face 71495 46410 35750 4324 Face 71496 46410 28351 35750 Face 71497 8905 35751 3390 Face 71498 8905 18164 35751 Face 71499 2300 35752 45301 Face 71500 2300 28367 35752 Face 71501 6939 35753 33569 Face 71502 6939 11029 35753 Face 71503 8869 35754 22498 Face 71504 8869 36372 47379 Face 71505 10395 35755 33608 Face 71506 10395 8124 35755 Face 71507 39657 35756 42966 Face 71508 15059 25604 35756 Face 71509 13705 35757 33846 Face 71510 13705 28172 35757 Face 71511 2890 35758 42329 Face 71512 2890 26121 35758 Face 71513 27479 35759 2100 Face 71514 27479 23410 35759 Face 71515 7581 35760 33251 Face 71516 7581 21244 35760 Face 71517 5842 35761 17306 Face 71518 5842 44444 35761 Face 71519 18046 35762 24981 Face 71520 44396 2698 35762 Face 71521 6836 35763 28521 Face 71522 35764 12607 35763 Face 71523 6836 35764 35763 Face 71524 6836 4975 35764 Face 71525 14055 35765 8966 Face 71526 14055 1500 35765 Face 71527 17313 35766 295 Face 71528 17313 43170 35766 Face 71529 6408 35767 23124 Face 71530 6408 23854 35767 Face 71531 1461 35768 27678 Face 71532 1461 25125 35768 Face 71533 6013 35769 6387 Face 71534 46190 35770 35769 Face 71535 533 35770 30127 Face 71536 533 35769 35770 Face 71537 16382 35771 7199 Face 71538 16382 34105 35771 Face 71539 35773 35772 27821 Face 71540 1183 14708 46453 Face 71541 1183 35773 20525 Face 71542 1183 35772 35773 Face 71543 5188 35774 16652 Face 71544 5188 27277 35774 Face 71545 12724 35775 42508 Face 71546 12724 27452 35775 Face 71547 9685 35776 14329 Face 71548 9685 29489 35776 Face 71549 35778 35777 29807 Face 71550 48106 23908 35777 Face 71551 4752 35778 9715 Face 71552 4752 35777 35778 Face 71553 3489 35779 7011 Face 71554 3489 32591 35779 Face 71555 9381 35780 46855 Face 71556 9381 33819 35780 Face 71557 10756 35781 30456 Face 71558 10756 27583 35781 Face 71559 20816 35782 24676 Face 71560 46497 20172 35782 Face 71561 35784 35783 24484 Face 71562 6098 48217 35783 Face 71563 6098 35784 7311 Face 71564 6098 35783 35784 Face 71565 15299 35785 7181 Face 71566 36695 30544 35785 Face 71567 44158 35786 22123 Face 71568 46994 2300 35786 Face 71569 5755 35787 31173 Face 71570 5755 31908 35787 Face 71571 49110 35788 26575 Face 71572 8188 44681 35788 Face 71573 9594 35789 29553 Face 71574 9594 26426 35789 Face 71575 39893 35790 28651 Face 71576 39893 36443 35790 Face 71577 8890 35791 37725 Face 71578 44539 15639 35791 Face 71579 14408 35792 35475 Face 71580 14408 35155 35792 Face 71581 40321 35793 9275 Face 71582 40321 32065 35793 Face 71583 16297 35794 30803 Face 71584 16297 26485 35794 Face 71585 6329 35795 9390 Face 71586 40961 25890 35795 Face 71587 7901 35796 4814 Face 71588 7901 25860 35796 Face 71589 3218 35797 43028 Face 71590 3218 23667 35797 Face 71591 265 35798 47716 Face 71592 265 7388 35798 Face 71593 22287 35799 30406 Face 71594 22287 20526 35799 Face 71595 6233 35800 22304 Face 71596 6233 23556 35800 Face 71597 1929 35801 41142 Face 71598 1929 24859 35801 Face 71599 7851 35802 35491 Face 71600 7851 23831 35802 Face 71601 8710 35803 26739 Face 71602 8710 28897 35803 Face 71603 16840 35804 44796 Face 71604 16840 1369 35804 Face 71605 35167 47946 22672 Face 71606 35167 11075 35805 Face 71607 11729 35806 39324 Face 71608 11729 17771 35806 Face 71609 22952 35807 20167 Face 71610 22952 29746 35807 Face 71611 5380 35808 36827 Face 71612 5380 5879 35808 Face 71613 3060 35809 29971 Face 71614 3060 28760 35809 Face 71615 15951 35810 28627 Face 71616 15951 24919 35810 Face 71617 22066 35811 7748 Face 71618 22066 5426 35811 Face 71619 3745 35812 28661 Face 71620 3745 18050 35812 Face 71621 23868 35813 22850 Face 71622 23868 15691 35813 Face 71623 25309 35814 34975 Face 71624 25309 20491 35814 Face 71625 3068 35815 10358 Face 71626 3068 40822 35815 Face 71627 6636 35816 29447 Face 71628 6636 31575 35816 Face 71629 20457 35817 27580 Face 71630 20457 32369 35817 Face 71631 6516 35818 34566 Face 71632 6516 13433 35818 Face 71633 35820 35819 294 Face 71634 3501 33785 35819 Face 71635 47027 35820 6684 Face 71636 3501 35819 35820 Face 71637 3773 35821 16254 Face 71638 3773 38815 35821 Face 71639 10144 35822 3423 Face 71640 10144 15389 35822 Face 71641 3030 35823 9892 Face 71642 3030 9919 35823 Face 71643 7141 35824 21924 Face 71644 7141 17982 35824 Face 71645 47619 35825 12628 Face 71646 2565 14475 35825 Face 71647 6194 35826 37883 Face 71648 6194 14810 35826 Face 71649 17795 40013 509 Face 71650 17795 23237 38162 Face 71651 4203 35828 49137 Face 71652 4203 25702 35828 Face 71653 6356 35829 34534 Face 71654 6356 7402 35829 Face 71655 4999 35830 22171 Face 71656 4999 24689 35830 Face 71657 14143 35831 18796 Face 71658 14143 14146 35831 Face 71659 171 35832 18224 Face 71660 171 27777 35832 Face 71661 35632 35833 6938 Face 71662 35632 32181 35833 Face 71663 2217 35834 32869 Face 71664 2217 27597 35834 Face 71665 16791 35835 32521 Face 71666 38105 5906 35835 Face 71667 21129 35836 8652 Face 71668 21129 33879 35836 Face 71669 35838 35837 34646 Face 71670 15136 1625 46487 Face 71671 15136 35838 31979 Face 71672 15136 46487 35838 Face 71673 16753 35839 29596 Face 71674 16753 21404 35839 Face 71675 6719 35840 17457 Face 71676 39584 19175 35840 Face 71677 35842 35841 37489 Face 71678 35842 43102 35841 Face 71679 7452 35842 22672 Face 71680 35843 31347 35842 Face 71681 7452 35843 35842 Face 71682 7452 8692 35843 Face 71683 2470 35844 22053 Face 71684 2470 30098 35844 Face 71685 302 35845 10995 Face 71686 302 37431 35845 Face 71687 44609 46769 28629 Face 71688 6993 42925 35846 Face 71689 4416 35847 21835 Face 71690 49675 7184 35847 Face 71691 35849 35848 9137 Face 71692 9136 30680 35848 Face 71693 9136 35849 18291 Face 71694 9136 35848 35849 Face 71695 23430 35850 40615 Face 71696 23430 18309 35850 Face 71697 7320 35851 19325 Face 71698 7320 22318 35851 Face 71699 7320 35852 22318 Face 71700 7320 46160 35852 Face 71701 6734 35853 22035 Face 71702 6734 34230 35853 Face 71703 19349 35854 1201 Face 71704 19349 33658 49028 Face 71705 9508 35855 18373 Face 71706 9508 38348 35855 Face 71707 4621 35856 45191 Face 71708 4621 34083 35856 Face 71709 7612 35857 30141 Face 71710 7612 29870 35857 Face 71711 19269 35858 12430 Face 71712 19269 1737 35858 Face 71713 15972 35859 22796 Face 71714 15972 10744 35859 Face 71715 2315 35860 15413 Face 71716 2315 15589 35860 Face 71717 8301 35861 5765 Face 71718 44643 30090 35861 Face 71719 4670 35862 10586 Face 71720 49538 23696 35862 Face 71721 6088 35863 18316 Face 71722 37156 33378 35863 Face 71723 11429 35864 32505 Face 71724 11429 47770 35864 Face 71725 5684 35865 19047 Face 71726 5684 3640 35865 Face 71727 37656 35866 26115 Face 71728 8306 32830 35866 Face 71729 10265 35867 39326 Face 71730 10265 18607 35867 Face 71731 31260 35868 6338 Face 71732 31260 41023 35868 Face 71733 38395 35869 41101 Face 71734 8260 22108 35869 Face 71735 9684 35870 28310 Face 71736 9684 10277 35870 Face 71737 3188 35871 17873 Face 71738 3188 3189 35871 Face 71739 11289 35872 9887 Face 71740 11289 10540 35872 Face 71741 16398 35873 7301 Face 71742 16398 8421 35873 Face 71743 43361 35874 3100 Face 71744 15979 23968 35874 Face 71745 1178 35875 3300 Face 71746 1178 13217 35875 Face 71747 14368 35876 14408 Face 71748 14368 10066 35876 Face 71749 4090 35877 40308 Face 71750 4090 10741 35877 Face 71751 591 35878 12392 Face 71752 591 22802 35878 Face 71753 21022 35879 7863 Face 71754 21022 537 35879 Face 71755 26616 35880 20228 Face 71756 26616 14075 35880 Face 71757 12749 35881 8923 Face 71758 12749 29805 35881 Face 71759 22444 35882 31717 Face 71760 22444 11349 35882 Face 71761 18492 35883 34813 Face 71762 18492 32605 35883 Face 71763 13944 35884 18597 Face 71764 13944 22931 35884 Face 71765 22084 35885 12165 Face 71766 22084 3651 35885 Face 71767 18349 35886 3551 Face 71768 18349 11531 35886 Face 71769 40442 35887 832 Face 71770 16111 34564 35887 Face 71771 41405 35888 4089 Face 71772 575 25949 35888 Face 71773 15210 35889 2165 Face 71774 15210 38936 35889 Face 71775 12985 35890 34957 Face 71776 12985 48977 35890 Face 71777 12501 35891 32293 Face 71778 12501 32476 35891 Face 71779 7629 35892 30818 Face 71780 7629 38454 35892 Face 71781 21016 35893 43418 Face 71782 21016 7883 35893 Face 71783 15483 35894 24219 Face 71784 15483 11886 35894 Face 71785 5257 35895 31918 Face 71786 5257 14080 35895 Face 71787 22522 35896 19970 Face 71788 22522 33699 35896 Face 71789 8654 35897 48738 Face 71790 8654 21983 35897 Face 71791 8654 35898 21983 Face 71792 8654 33414 35898 Face 71793 25770 35899 29160 Face 71794 25770 12261 35899 Face 71795 22514 35900 25682 Face 71796 22514 9063 35900 Face 71797 14604 35901 9707 Face 71798 41638 7723 35901 Face 71799 35903 35902 32777 Face 71800 20695 49357 35902 Face 71801 20695 35903 5110 Face 71802 20695 35902 35903 Face 71803 20231 35904 39614 Face 71804 20231 30397 35904 Face 71805 36110 35905 900 Face 71806 36110 23778 35905 Face 71807 10917 35906 15167 Face 71808 10917 15471 35906 Face 71809 15023 35907 40104 Face 71810 15023 6805 35907 Face 71811 43305 35908 23622 Face 71812 25186 5937 35908 Face 71813 21190 35909 22056 Face 71814 21190 24517 35909 Face 71815 41670 35910 45891 Face 71816 4791 24311 35910 Face 71817 16606 35911 25853 Face 71818 16606 23705 35911 Face 71819 16550 35912 41314 Face 71820 16550 17111 35912 Face 71821 8129 35913 21722 Face 71822 8129 6483 35913 Face 71823 18918 35914 21270 Face 71824 49149 41966 35914 Face 71825 6658 35915 18905 Face 71826 6658 47248 35915 Face 71827 14143 35916 14146 Face 71828 14143 1713 35916 Face 71829 38769 35917 23638 Face 71830 7495 31197 35917 Face 71831 16393 35918 2924 Face 71832 16393 33441 35918 Face 71833 16393 35919 33441 Face 71834 16393 30901 35919 Face 71835 18707 35920 1408 Face 71836 18707 37949 35920 Face 71837 3865 35921 31557 Face 71838 3865 21516 35921 Face 71839 43515 35922 46739 Face 71840 1251 22929 35922 Face 71841 7559 35923 31455 Face 71842 7559 26356 35923 Face 71843 47874 35924 46078 Face 71844 27026 25414 35924 Face 71845 38302 35925 6898 Face 71846 10009 1186 35925 Face 71847 9538 35926 10054 Face 71848 9538 37064 35926 Face 71849 7916 35927 13307 Face 71850 7916 49271 35927 Face 71851 3245 35928 33151 Face 71852 3245 39036 35928 Face 71853 23459 35929 43597 Face 71854 23459 682 35929 Face 71855 4811 35930 9676 Face 71856 4811 46716 35930 Face 71857 3094 35931 19378 Face 71858 3094 21580 35931 Face 71859 13560 35932 33877 Face 71860 13560 29473 35932 Face 71861 21695 35933 46543 Face 71862 21695 47558 35933 Face 71863 43821 35935 34210 Face 71864 43821 39783 35935 Face 71865 35934 35935 15168 Face 71866 35934 34210 35935 Face 71867 10983 35936 36084 Face 71868 10983 22386 35936 Face 71869 3066 35937 23973 Face 71870 3066 11296 35937 Face 71871 2581 35938 25515 Face 71872 2581 13975 35938 Face 71873 37768 35939 28458 Face 71874 37768 20897 35939 Face 71875 49557 35940 42133 Face 71876 12588 2498 35940 Face 71877 16594 35941 21699 Face 71878 16594 13135 35941 Face 71879 36935 35942 35447 Face 71880 42975 18028 35942 Face 71881 111 35943 12859 Face 71882 38496 39729 35943 Face 71883 6612 35944 40904 Face 71884 6612 18334 35944 Face 71885 5083 35945 26765 Face 71886 5083 22710 35945 Face 71887 11737 35946 19914 Face 71888 11737 28479 35946 Face 71889 12374 49380 19089 Face 71890 12374 47036 49380 Face 71891 11896 35948 24031 Face 71892 11896 31974 35948 Face 71893 6443 35949 18595 Face 71894 6443 24460 35949 Face 71895 8811 35950 4272 Face 71896 8811 4444 35950 Face 71897 4557 35951 13569 Face 71898 4557 27875 35951 Face 71899 22200 35952 1712 Face 71900 49130 43771 35952 Face 71901 23480 35953 33495 Face 71902 23480 19850 35953 Face 71903 593 35954 24454 Face 71904 593 23220 35954 Face 71905 2920 35955 26757 Face 71906 2920 21653 35955 Face 71907 24004 35956 24005 Face 71908 24004 1449 35956 Face 71909 5911 35957 10553 Face 71910 5911 17026 35957 Face 71911 45290 35958 6971 Face 71912 4334 18327 35958 Face 71913 16657 35959 7225 Face 71914 16657 23226 35959 Face 71915 2099 35960 40587 Face 71916 35961 10629 35960 Face 71917 2099 35961 35960 Face 71918 2099 24044 35961 Face 71919 35963 35962 19009 Face 71920 24347 43777 35962 Face 71921 24347 35963 38549 Face 71922 24347 35962 35963 Face 71923 12061 35964 1418 Face 71924 12061 2334 35964 Face 71925 25386 35965 28838 Face 71926 25386 47956 35965 Face 71927 2211 35966 23735 Face 71928 2211 29803 35966 Face 71929 19094 35967 454 Face 71930 19094 26398 35967 Face 71931 9282 35968 8046 Face 71932 9282 2360 35968 Face 71933 17124 35969 27020 Face 71934 17124 8243 35969 Face 71935 3962 35970 14136 Face 71936 3962 12474 35970 Face 71937 12284 35971 33626 Face 71938 12284 19587 35971 Face 71939 1213 35972 42782 Face 71940 1213 10040 35972 Face 71941 24319 35973 17330 Face 71942 24319 33906 35973 Face 71943 1227 35974 22142 Face 71944 1227 34870 35974 Face 71945 23112 35975 38332 Face 71946 23112 18367 35975 Face 71947 13840 35976 440 Face 71948 13840 6579 35976 Face 71949 22363 35977 38977 Face 71950 22363 30427 35977 Face 71951 36019 35978 35599 Face 71952 8552 20215 35978 Face 71953 18022 35979 26666 Face 71954 18022 24805 35979 Face 71955 35981 35980 3872 Face 71956 15980 9452 35980 Face 71957 15980 35981 46546 Face 71958 15980 35980 35981 Face 71959 14152 35982 3817 Face 71960 14152 20305 35982 Face 71961 14806 35983 2697 Face 71962 14806 46142 35983 Face 71963 22628 35984 22627 Face 71964 35985 41180 35984 Face 71965 22628 35985 35984 Face 71966 22628 35446 35985 Face 71967 4570 35986 47191 Face 71968 4570 19420 35986 Face 71969 21489 35987 21488 Face 71970 21489 5386 35987 Face 71971 8942 35988 29404 Face 71972 8942 8095 35988 Face 71973 12248 35989 11157 Face 71974 12248 2776 35989 Face 71975 12005 35990 6260 Face 71976 12005 1778 35990 Face 71977 20 35991 16728 Face 71978 47069 9522 35991 Face 71979 1636 35992 34049 Face 71980 1636 15560 35992 Face 71981 40920 35993 20379 Face 71982 9847 18510 35993 Face 71983 13514 35994 7110 Face 71984 13514 5700 35994 Face 71985 42569 35995 8990 Face 71986 48348 23083 35995 Face 71987 16906 35996 39794 Face 71988 16906 27379 35996 Face 71989 168 35997 9499 Face 71990 168 23255 35997 Face 71991 12005 35998 33260 Face 71992 12005 6260 35998 Face 71993 8488 35999 22719 Face 71994 8488 26287 35999 Face 71995 5709 36000 12086 Face 71996 5709 12085 36000 Face 71997 36118 36001 871 Face 71998 14021 11369 36001 Face 71999 16615 36002 5682 Face 72000 16615 1650 36002 Face 72001 9142 36003 37253 Face 72002 36004 48805 36003 Face 72003 9142 36004 36003 Face 72004 9142 21392 36004 Face 72005 1259 36005 28250 Face 72006 1259 27347 36005 Face 72007 6285 36006 13420 Face 72008 6285 10741 36006 Face 72009 10676 36007 41257 Face 72010 48313 13489 36007 Face 72011 42466 36008 16307 Face 72012 22249 536 36008 Face 72013 4516 36009 26069 Face 72014 4516 11954 36009 Face 72015 20481 36010 25180 Face 72016 20481 31611 36010 Face 72017 11571 36011 14450 Face 72018 11571 1013 36011 Face 72019 3219 36012 13441 Face 72020 3219 8326 36012 Face 72021 12319 36013 33420 Face 72022 12319 23103 36013 Face 72023 6873 36014 24106 Face 72024 36016 24253 36014 Face 72025 36016 36015 24253 Face 72026 36016 37657 36015 Face 72027 6873 36016 36014 Face 72028 6873 45304 36016 Face 72029 19633 36017 4385 Face 72030 19633 44041 36017 Face 72031 1696 36018 17623 Face 72032 1696 25147 36018 Face 72033 8552 36019 39396 Face 72034 8552 35978 36019 Face 72035 17508 36020 25603 Face 72036 17508 32843 36020 Face 72037 226 36021 38383 Face 72038 37155 19056 36021 Face 72039 7522 36022 18209 Face 72040 7522 10253 36022 Face 72041 17735 36023 2875 Face 72042 17735 18797 36023 Face 72043 13243 36024 20533 Face 72044 49170 44737 36024 Face 72045 991 36025 33055 Face 72046 991 15659 36025 Face 72047 38024 36026 45987 Face 72048 2689 49736 36026 Face 72049 15412 36027 25323 Face 72050 15412 38538 36027 Face 72051 4428 36028 32527 Face 72052 41071 37685 36028 Face 72053 6346 36029 15187 Face 72054 6346 12483 36029 Face 72055 13168 36030 47971 Face 72056 13168 26244 36030 Face 72057 8088 36031 14812 Face 72058 8088 20014 36031 Face 72059 4186 36032 34980 Face 72060 36033 40645 36032 Face 72061 4186 36033 36032 Face 72062 4186 13816 36033 Face 72063 7455 36034 15177 Face 72064 41214 42836 49490 Face 72065 28189 36035 11687 Face 72066 28189 25562 36035 Face 72067 21879 36036 47491 Face 72068 21879 9074 36036 Face 72069 6897 36037 36183 Face 72070 6897 922 36037 Face 72071 18884 36038 1322 Face 72072 18884 23022 36038 Face 72073 41103 36039 17451 Face 72074 9713 37822 36039 Face 72075 17097 36040 41920 Face 72076 17097 39969 36040 Face 72077 16043 36041 38253 Face 72078 16043 5247 36041 Face 72079 14977 36042 1333 Face 72080 43610 28218 36042 Face 72081 13799 36043 24636 Face 72082 13799 8486 36043 Face 72083 17977 36044 39966 Face 72084 17977 13616 36044 Face 72085 15966 36045 48964 Face 72086 15966 32796 36045 Face 72087 3140 36046 18661 Face 72088 3140 20666 36046 Face 72089 10570 36047 47237 Face 72090 10570 29305 36047 Face 72091 12189 36048 19829 Face 72092 12189 42657 36048 Face 72093 11223 36049 17329 Face 72094 48326 3338 36049 Face 72095 26159 36050 17109 Face 72096 26159 8326 36050 Face 72097 29732 36051 29733 Face 72098 29732 29735 36051 Face 72099 10790 36052 15671 Face 72100 10790 8700 36052 Face 72101 9055 36053 29025 Face 72102 9055 4858 36053 Face 72103 47024 36054 45082 Face 72104 17662 19126 36054 Face 72105 26087 36055 10519 Face 72106 26087 19820 36055 Face 72107 29678 36056 5944 Face 72108 29678 17001 36056 Face 72109 16814 36057 769 Face 72110 16814 3240 36057 Face 72111 2490 36058 32737 Face 72112 2490 30666 36058 Face 72113 9002 36059 48745 Face 72114 9002 23524 36059 Face 72115 9092 36060 24222 Face 72116 9092 34038 36060 Face 72117 25250 36061 11820 Face 72118 25250 31543 36061 Face 72119 13916 36062 11491 Face 72120 13916 30148 36062 Face 72121 2800 36063 18113 Face 72122 2800 8739 36063 Face 72123 16001 36064 47581 Face 72124 16001 29088 36064 Face 72125 18071 36065 7061 Face 72126 18071 243 49793 Face 72127 39069 36066 47289 Face 72128 2925 31843 36066 Face 72129 7788 36067 14597 Face 72130 7788 9734 36067 Face 72131 11966 36068 29174 Face 72132 11966 24643 36068 Face 72133 7379 36069 18033 Face 72134 7379 31184 36069 Face 72135 21958 36070 29861 Face 72136 21958 27976 38054 Face 72137 11262 36071 19759 Face 72138 36072 1733 36071 Face 72139 11262 36072 36071 Face 72140 11262 24914 36072 Face 72141 10296 36073 41286 Face 72142 10296 19862 36073 Face 72143 4565 36074 2623 Face 72144 4565 11835 36074 Face 72145 2434 36075 6601 Face 72146 2434 13381 36075 Face 72147 3696 36076 20387 Face 72148 3696 17953 36076 Face 72149 17160 36077 23045 Face 72150 17160 29331 36077 Face 72151 699 36078 16298 Face 72152 699 26404 36078 Face 72153 8473 36079 17474 Face 72154 42710 15369 36079 Face 72155 27112 36080 32279 Face 72156 27112 8864 36080 Face 72157 9852 36081 23484 Face 72158 9852 32062 36081 Face 72159 11131 36082 19730 Face 72160 11131 27169 36082 Face 72161 11145 36083 17602 Face 72162 11145 2941 36083 Face 72163 23214 36084 1583 Face 72164 23214 10983 36084 Face 72165 11116 36085 40316 Face 72166 11116 25635 36085 Face 72167 12811 36086 40882 Face 72168 36202 18055 36086 Face 72169 1151 36087 40710 Face 72170 1151 2845 36087 Face 72171 7966 36088 31486 Face 72172 36089 711 36088 Face 72173 7966 36089 36088 Face 72174 7966 18063 36089 Face 72175 17470 36090 49321 Face 72176 17470 22579 36090 Face 72177 6745 36091 27260 Face 72178 6745 20598 36091 Face 72179 27446 36092 49416 Face 72180 27446 4074 36092 Face 72181 10850 36093 23470 Face 72182 10850 30160 36093 Face 72183 2771 36094 46900 Face 72184 2771 26899 36094 Face 72185 5733 36095 25012 Face 72186 5733 20953 36095 Face 72187 24626 36096 44390 Face 72188 24626 21015 36096 Face 72189 5454 36097 10513 Face 72190 5454 5515 36097 Face 72191 6889 36098 22706 Face 72192 6889 37118 36098 Face 72193 26216 36099 6693 Face 72194 26216 41405 36099 Face 72195 18984 36100 18985 Face 72196 18984 8043 36100 Face 72197 18510 36101 562 Face 72198 18510 9847 36101 Face 72199 14586 36102 12703 Face 72200 49759 26654 36102 Face 72201 22548 36103 42423 Face 72202 22548 23966 36103 Face 72203 8233 36104 5731 Face 72204 8233 9275 36104 Face 72205 7888 36105 12268 Face 72206 7888 46774 36105 Face 72207 11043 36106 3933 Face 72208 11043 22212 36106 Face 72209 1872 36107 27531 Face 72210 1872 24313 36107 Face 72211 23160 36108 39214 Face 72212 23160 3999 36108 Face 72213 7733 36109 20858 Face 72214 7733 23043 36109 Face 72215 3837 36110 40626 Face 72216 3837 16751 36110 Face 72217 12471 36111 35693 Face 72218 12471 26042 36111 Face 72219 3645 36112 27751 Face 72220 3645 42061 36112 Face 72221 4476 36113 43468 Face 72222 4476 19605 36113 Face 72223 24744 36114 9321 Face 72224 36115 18342 36114 Face 72225 24744 36115 36114 Face 72226 24744 19249 36115 Face 72227 12457 36116 41228 Face 72228 12457 22481 36116 Face 72229 18881 36117 2592 Face 72230 18881 6024 36117 Face 72231 14021 36118 48704 Face 72232 14021 36001 36118 Face 72233 35812 36119 28661 Face 72234 35812 10342 36119 Face 72235 10859 36120 24934 Face 72236 10859 22480 36120 Face 72237 93 36121 39807 Face 72238 93 18637 36121 Face 72239 2516 36122 16807 Face 72240 2516 47848 36122 Face 72241 10347 36123 46661 Face 72242 44959 39213 36123 Face 72243 3135 36124 40736 Face 72244 3135 6943 36124 Face 72245 40859 36125 34223 Face 72246 369 18125 36125 Face 72247 16190 36126 44420 Face 72248 16190 399 36126 Face 72249 14193 36127 21954 Face 72250 14193 2568 36127 Face 72251 14193 36128 9591 Face 72252 14193 16685 36128 Face 72253 2120 36129 30995 Face 72254 2120 12940 36129 Face 72255 5814 36130 29728 Face 72256 5814 35632 36130 Face 72257 46868 36131 32470 Face 72258 13259 2110 36131 Face 72259 9854 36132 34442 Face 72260 9854 9855 36132 Face 72261 18943 36133 46084 Face 72262 18943 13353 36133 Face 72263 18704 36134 43376 Face 72264 18704 9596 36134 Face 72265 48084 36135 40772 Face 72266 1077 29631 36135 Face 72267 3384 36136 30189 Face 72268 3384 35790 36136 Face 72269 29415 36137 10687 Face 72270 29415 26074 36137 Face 72271 6249 36138 1495 Face 72272 6249 38220 36138 Face 72273 8612 36139 24273 Face 72274 8612 28565 36139 Face 72275 26099 36140 6447 Face 72276 38034 31397 36140 Face 72277 26433 36141 15157 Face 72278 26433 22573 36141 Face 72279 5764 36142 31248 Face 72280 5764 21361 36142 Face 72281 14201 36143 21115 Face 72282 14201 36518 36143 Face 72283 1952 36144 21836 Face 72284 1952 28447 36144 Face 72285 24141 36145 10671 Face 72286 24141 20469 36145 Face 72287 36147 36146 14263 Face 72288 1565 36865 36146 Face 72289 1565 36147 32243 Face 72290 1565 36146 36147 Face 72291 7401 36148 30162 Face 72292 7401 24370 36148 Face 72293 24468 36149 7973 Face 72294 24468 7716 36149 Face 72295 12778 36150 41099 Face 72296 12778 29815 36150 Face 72297 3867 36151 28209 Face 72298 3867 38108 36151 Face 72299 15804 36152 11960 Face 72300 15804 1108 36152 Face 72301 40662 36153 1886 Face 72302 2280 10728 36153 Face 72303 14325 36154 3841 Face 72304 14325 48752 36154 Face 72305 36156 36155 18300 Face 72306 9826 9827 36155 Face 72307 9826 36156 31095 Face 72308 9826 36155 36156 Face 72309 18638 36157 47907 Face 72310 18638 27984 36157 Face 72311 18948 36158 49030 Face 72312 18948 1911 36158 Face 72313 11785 36159 46596 Face 72314 11785 36151 36159 Face 72315 49737 36160 29614 Face 72316 49737 19673 36160 Face 72317 4443 36161 8864 Face 72318 4443 26512 36161 Face 72319 754 36162 19013 Face 72320 36163 3012 36162 Face 72321 754 36163 36162 Face 72322 754 34475 36163 Face 72323 2769 36164 33493 Face 72324 2769 24878 36164 Face 72325 20869 36165 35536 Face 72326 20869 27394 36165 Face 72327 47564 36166 22195 Face 72328 1446 46764 36166 Face 72329 1446 36167 49721 Face 72330 1446 36166 36167 Face 72331 2160 48518 33053 Face 72332 40350 2161 36168 Face 72333 4214 36169 18019 Face 72334 4214 31872 36169 Face 72335 18130 36170 5321 Face 72336 18130 8112 36170 Face 72337 5701 36171 2786 Face 72338 5701 13635 36171 Face 72339 5651 36172 25872 Face 72340 5651 24615 36172 Face 72341 15053 36173 26256 Face 72342 15053 30847 36173 Face 72343 10142 36174 31728 Face 72344 10142 33507 36174 Face 72345 2128 36175 34362 Face 72346 2128 44369 36175 Face 72347 692 36176 20149 Face 72348 692 16894 36176 Face 72349 26425 36177 11994 Face 72350 26425 13586 36177 Face 72351 287 36178 9183 Face 72352 287 26535 36178 Face 72353 36902 36179 17760 Face 72354 37100 18694 36179 Face 72355 19762 43112 1960 Face 72356 19762 8538 36180 Face 72357 167 36181 9598 Face 72358 36182 48867 36181 Face 72359 167 36182 36181 Face 72360 167 18162 36182 Face 72361 1419 36183 36037 Face 72362 1419 29162 36183 Face 72363 1689 36184 15528 Face 72364 1689 17295 36184 Face 72365 41746 36185 32902 Face 72366 2425 22141 36185 Face 72367 15947 36186 20178 Face 72368 15947 44380 36186 Face 72369 12153 36187 30452 Face 72370 47917 2373 36187 Face 72371 36189 36188 6451 Face 72372 10856 40852 36188 Face 72373 10856 36189 8900 Face 72374 10856 36188 36189 Face 72375 13887 36190 15482 Face 72376 13887 25733 36190 Face 72377 4562 36191 31501 Face 72378 36264 8983 36191 Face 72379 12327 36192 43571 Face 72380 12327 33757 36192 Face 72381 2794 36193 32164 Face 72382 2794 28357 36193 Face 72383 8711 36194 22914 Face 72384 8711 19603 36194 Face 72385 7591 36195 43243 Face 72386 7591 4300 36195 Face 72387 13515 36196 35321 Face 72388 13515 45112 36196 Face 72389 3317 36197 48525 Face 72390 3317 17401 36197 Face 72391 14438 36198 11057 Face 72392 14438 22726 36198 Face 72393 18624 36199 5419 Face 72394 18624 49281 36199 Face 72395 24664 36200 29047 Face 72396 24664 5407 36200 Face 72397 6573 36201 22508 Face 72398 6573 37001 36201 Face 72399 12811 36202 36086 Face 72400 12811 18892 36202 Face 72401 18088 36203 28023 Face 72402 18088 6685 36203 Face 72403 37281 36204 31441 Face 72404 6089 28549 36204 Face 72405 32316 36205 29418 Face 72406 32316 47953 36205 Face 72407 36207 36206 15183 Face 72408 42490 27436 36206 Face 72409 8105 36207 22498 Face 72410 36208 36206 36207 Face 72411 8105 36208 36207 Face 72412 42490 36206 36208 Face 72413 36210 36209 11725 Face 72414 36210 28340 36209 Face 72415 10999 36210 18800 Face 72416 10999 28340 36210 Face 72417 36901 36211 5727 Face 72418 1225 11807 36211 Face 72419 2277 36212 9110 Face 72420 2277 28773 36212 Face 72421 17404 36213 46380 Face 72422 17404 40716 36213 Face 72423 8023 36214 49223 Face 72424 40247 13563 36214 Face 72425 12442 36215 443 Face 72426 12442 4612 36215 Face 72427 3838 36216 1990 Face 72428 3838 21257 48501 Face 72429 42868 36217 23060 Face 72430 42868 30429 36217 Face 72431 36217 36218 23060 Face 72432 36217 30429 36218 Face 72433 10121 36219 683 Face 72434 10121 27829 36219 Face 72435 9042 36220 22396 Face 72436 9042 13650 36220 Face 72437 13532 36221 20785 Face 72438 13532 541 36221 Face 72439 11090 36222 628 Face 72440 11090 31532 36222 Face 72441 10721 36223 19895 Face 72442 10721 28191 48316 Face 72443 26547 36224 3049 Face 72444 26547 10507 36224 Face 72445 14391 39391 9379 Face 72446 14391 32109 36226 Face 72447 36225 36226 23157 Face 72448 36225 14391 36226 Face 72449 9173 36227 40072 Face 72450 9173 8173 36227 Face 72451 48747 36228 31928 Face 72452 7901 28717 36228 Face 72453 20574 36229 27071 Face 72454 37769 11493 36229 Face 72455 1517 36230 17140 Face 72456 1517 27519 36230 Face 72457 22130 36231 1783 Face 72458 22130 37379 37313 Face 72459 20030 36232 13406 Face 72460 20030 21810 36232 Face 72461 21329 36233 10824 Face 72462 21329 44491 36233 Face 72463 15385 36234 7739 Face 72464 15385 17423 36234 Face 72465 4521 36235 26816 Face 72466 4521 48604 36235 Face 72467 3616 36236 33667 Face 72468 3616 26531 36236 Face 72469 47896 36237 4607 Face 72470 11536 31818 36237 Face 72471 2140 36238 18932 Face 72472 37565 7644 36238 Face 72473 28301 36239 45239 Face 72474 28301 4782 36239 Face 72475 11177 36240 28773 Face 72476 11177 35539 36240 Face 72477 172 36241 4221 Face 72478 42084 22384 36241 Face 72479 5627 36242 20768 Face 72480 5627 13497 36242 Face 72481 7564 36243 27171 Face 72482 7564 8619 36243 Face 72483 5420 36244 20313 Face 72484 5420 26014 36244 Face 72485 3038 36245 3800 Face 72486 3038 20748 36245 Face 72487 10076 36246 31349 Face 72488 10076 3772 36246 Face 72489 3211 36247 34524 Face 72490 3211 35824 36247 Face 72491 14163 36248 20006 Face 72492 14163 23417 36248 Face 72493 11900 36249 47408 Face 72494 11900 27500 36249 Face 72495 14542 36250 1022 Face 72496 14542 3798 36250 Face 72497 24956 36251 12448 Face 72498 24956 7943 36251 Face 72499 36253 36252 24938 Face 72500 12387 12386 36252 Face 72501 12387 36253 22471 Face 72502 12387 36252 36253 Face 72503 10048 36254 31313 Face 72504 36255 16887 36254 Face 72505 10048 36255 36254 Face 72506 10048 23620 36255 Face 72507 26048 36256 7561 Face 72508 26048 49296 36256 Face 72509 1534 36257 20721 Face 72510 44896 11436 36257 Face 72511 1690 36258 48017 Face 72512 1690 24985 36258 Face 72513 1827 36259 13363 Face 72514 1827 49720 36259 Face 72515 9036 36260 7080 Face 72516 38439 48891 36260 Face 72517 8568 36261 14926 Face 72518 8568 45228 36261 Face 72519 11672 36262 30119 Face 72520 42719 10448 36262 Face 72521 15903 36263 39456 Face 72522 15903 48536 36263 Face 72523 4562 36264 36191 Face 72524 36668 37562 36264 Face 72525 19425 36265 42996 Face 72526 19425 2612 36265 Face 72527 25063 36266 14770 Face 72528 25063 47763 36266 Face 72529 4630 36267 35598 Face 72530 4630 18170 36267 Face 72531 2795 36268 21371 Face 72532 2795 26234 36268 Face 72533 20927 48392 10130 Face 72534 20927 20926 36269 Face 72535 13352 36270 23765 Face 72536 13352 16619 36270 Face 72537 2462 36271 46156 Face 72538 2462 12940 36271 Face 72539 2462 36272 36129 Face 72540 2462 46156 36272 Face 72541 38003 36273 17815 Face 72542 6316 48328 36273 Face 72543 16743 36274 40318 Face 72544 16743 14513 36274 Face 72545 18988 36275 45455 Face 72546 18988 3131 36275 Face 72547 15329 36276 19257 Face 72548 15329 3314 36276 Face 72549 17554 36277 24051 Face 72550 17554 44653 36277 Face 72551 21065 36278 14277 Face 72552 21065 567 36278 Face 72553 10994 36279 16013 Face 72554 10994 28708 36279 Face 72555 10895 36280 20881 Face 72556 10895 16408 36280 Face 72557 42852 36281 40686 Face 72558 42853 27369 36281 Face 72559 20846 36282 42221 Face 72560 20846 10957 36282 Face 72561 14070 36283 22919 Face 72562 14070 38999 36283 Face 72563 2856 36284 37381 Face 72564 47487 23031 36284 Face 72565 16150 36285 23148 Face 72566 16150 46047 36285 Face 72567 25005 36286 48932 Face 72568 40235 30357 36286 Face 72569 7081 36287 14229 Face 72570 7081 21639 36287 Face 72571 16725 36288 11309 Face 72572 16725 233 36288 Face 72573 12960 36289 9415 Face 72574 12960 12917 36289 Face 72575 47150 36290 4463 Face 72576 36291 4524 36290 Face 72577 25544 36291 36290 Face 72578 38442 23714 36291 Face 72579 11927 36292 31310 Face 72580 11927 15276 36292 Face 72581 40785 36293 24588 Face 72582 40785 27697 36293 Face 72583 22621 36294 37597 Face 72584 22621 9968 36294 Face 72585 16764 36295 28165 Face 72586 41528 49859 36295 Face 72587 18483 36296 41832 Face 72588 18483 12564 36296 Face 72589 2754 36297 47305 Face 72590 2754 3279 36297 Face 72591 14859 36298 5934 Face 72592 37293 15591 36298 Face 72593 6581 36299 23380 Face 72594 6581 10934 36299 Face 72595 18751 36300 4529 Face 72596 18751 20954 36300 Face 72597 13315 36301 35987 Face 72598 13315 37921 36301 Face 72599 41616 36302 12822 Face 72600 41616 28247 36302 Face 72601 8590 36303 27905 Face 72602 8590 21522 36303 Face 72603 12719 36304 29227 Face 72604 12719 27307 36304 Face 72605 16998 36305 30432 Face 72606 16998 1979 36305 Face 72607 9458 36306 38966 Face 72608 9458 26007 36306 Face 72609 17011 36307 49053 Face 72610 17011 6426 36307 Face 72611 4624 36308 42002 Face 72612 39670 39205 36308 Face 72613 14020 36309 19565 Face 72614 14020 11534 36309 Face 72615 21052 36310 30461 Face 72616 21052 6151 36310 Face 72617 6589 36311 3991 Face 72618 6589 21365 36311 Face 72619 17147 36312 24986 Face 72620 48233 7736 36312 Face 72621 14516 36313 4303 Face 72622 14516 30757 36313 Face 72623 1927 36314 24795 Face 72624 1927 36450 36314 Face 72625 22832 36315 22831 Face 72626 22832 33961 36315 Face 72627 36317 36316 11839 Face 72628 6240 11838 36316 Face 72629 6240 36317 17995 Face 72630 6240 36316 36317 Face 72631 43575 36318 16227 Face 72632 26916 4607 36318 Face 72633 55 36319 6169 Face 72634 55 11265 36319 Face 72635 38900 36320 31535 Face 72636 18799 6025 36320 Face 72637 11285 36321 7094 Face 72638 48111 29909 36321 Face 72639 10870 36322 29542 Face 72640 10870 26410 36322 Face 72641 10095 36323 29284 Face 72642 10095 22219 36323 Face 72643 19397 36324 31627 Face 72644 19397 23960 36324 Face 72645 36671 36325 34238 Face 72646 19682 12745 36325 Face 72647 5775 36326 42655 Face 72648 5775 22510 36326 Face 72649 25079 36327 22811 Face 72650 25079 48214 36327 Face 72651 547 36328 11736 Face 72652 547 16386 36328 Face 72653 12322 36329 40604 Face 72654 12322 49592 36329 Face 72655 7536 36330 31757 Face 72656 7536 28607 36330 Face 72657 3809 36331 28765 Face 72658 47902 12038 36331 Face 72659 11571 36332 1013 Face 72660 11571 27970 36332 Face 72661 10957 36333 4831 Face 72662 10957 20846 36333 Face 72663 14009 36334 26804 Face 72664 14009 16645 36334 Face 72665 4976 36335 9810 Face 72666 4976 14373 36335 Face 72667 19448 36336 1963 Face 72668 19448 31041 36336 Face 72669 17582 36337 27261 Face 72670 17582 12371 36337 Face 72671 4011 36338 47945 Face 72672 4011 33259 36338 Face 72673 21310 36339 40076 Face 72674 21310 9984 36339 Face 72675 1189 36340 20243 Face 72676 1189 16710 36340 Face 72677 16789 36341 6096 Face 72678 16789 4807 36341 Face 72679 18571 36342 6413 Face 72680 18571 21797 36342 Face 72681 2247 36343 23125 Face 72682 2247 44513 36343 Face 72683 46048 36344 20139 Face 72684 46048 23808 36344 Face 72685 47222 36345 9970 Face 72686 47222 28364 36345 Face 72687 5894 36346 14176 Face 72688 5894 9681 36346 Face 72689 7131 36347 43202 Face 72690 7131 35750 36347 Face 72691 4936 36348 21082 Face 72692 4936 22924 36348 Face 72693 6054 36349 26380 Face 72694 6054 36351 36349 Face 72695 2784 36350 18900 Face 72696 36906 33334 36350 Face 72697 13962 36351 1163 Face 72698 13962 36349 36351 Face 72699 2341 36352 11472 Face 72700 2341 30767 36352 Face 72701 7057 36353 35377 Face 72702 7057 9085 36353 Face 72703 5217 36354 15032 Face 72704 5217 26626 36354 Face 72705 2685 36355 18311 Face 72706 2685 11042 36355 Face 72707 3595 36356 44718 Face 72708 3595 34111 36356 Face 72709 4616 36357 34813 Face 72710 4616 18050 36357 Face 72711 38576 49146 14777 Face 72712 2958 38926 36358 Face 72713 288 36359 11778 Face 72714 288 44425 36359 Face 72715 9006 36360 21914 Face 72716 36477 43442 36360 Face 72717 44968 36361 551 Face 72718 6798 25158 36361 Face 72719 12362 36362 5331 Face 72720 12362 5743 36362 Face 72721 17647 36363 28295 Face 72722 17647 47503 36363 Face 72723 44920 36364 31058 Face 72724 21424 13904 36364 Face 72725 14414 36365 14415 Face 72726 14414 521 36365 Face 72727 15470 36366 41456 Face 72728 15470 20220 36366 Face 72729 17890 36367 22293 Face 72730 17890 14448 36367 Face 72731 19119 36368 6496 Face 72732 19119 10581 36368 Face 72733 22426 36369 13461 Face 72734 22426 29532 36369 Face 72735 4644 36370 12162 Face 72736 4644 23666 36370 Face 72737 14062 36371 33305 Face 72738 46072 31217 36371 Face 72739 26886 36372 8869 Face 72740 26886 47379 36372 Face 72741 7705 36373 30350 Face 72742 7705 32274 36373 Face 72743 6532 36374 16088 Face 72744 39238 13988 36374 Face 72745 23355 36375 64 Face 72746 23355 45531 36375 Face 72747 36467 36376 32414 Face 72748 36377 8969 36376 Face 72749 6035 36377 36376 Face 72750 6035 31159 36377 Face 72751 31803 36378 17933 Face 72752 31803 1719 36378 Face 72753 3764 36379 8785 Face 72754 3764 20481 36379 Face 72755 17845 36380 4978 Face 72756 17845 27166 36380 Face 72757 9405 36381 20267 Face 72758 9405 27400 36381 Face 72759 5096 36382 46029 Face 72760 5096 27279 36382 Face 72761 22044 36383 26886 Face 72762 22044 45254 36383 Face 72763 29347 36384 15672 Face 72764 36385 46433 36384 Face 72765 29347 36385 36384 Face 72766 41462 20616 36385 Face 72767 40747 36386 45647 Face 72768 14776 22198 36386 Face 72769 29685 36387 12883 Face 72770 29685 7507 36387 Face 72771 15137 36388 4435 Face 72772 15137 25980 36388 Face 72773 11234 36389 18512 Face 72774 11234 5881 36389 Face 72775 3117 36390 47102 Face 72776 36731 29989 36390 Face 72777 1195 36391 9207 Face 72778 1195 33469 36391 Face 72779 36393 36392 12232 Face 72780 2840 4185 36392 Face 72781 2840 36393 22217 Face 72782 2840 36392 36393 Face 72783 16726 36394 4961 Face 72784 16726 28782 36394 Face 72785 988 36395 24491 Face 72786 988 46514 36395 Face 72787 6159 36396 31681 Face 72788 48668 17337 36396 Face 72789 107 36397 2988 Face 72790 107 13157 36397 Face 72791 22062 36398 22061 Face 72792 22062 43190 36398 Face 72793 39358 36399 18550 Face 72794 4346 13084 36399 Face 72795 26811 36400 30077 Face 72796 26811 6124 36400 Face 72797 17522 36401 944 Face 72798 41377 30943 36401 Face 72799 11293 36402 47198 Face 72800 11293 27573 36402 Face 72801 36404 36403 9445 Face 72802 7316 10692 36403 Face 72803 7316 36404 148 Face 72804 7316 36403 36404 Face 72805 36407 36405 31769 Face 72806 36406 35069 36405 Face 72807 7551 36406 36405 Face 72808 7551 12054 36406 Face 72809 7551 36407 1922 Face 72810 7551 36405 36407 Face 72811 7598 36408 49819 Face 72812 7598 25945 36408 Face 72813 7108 36409 22253 Face 72814 7108 27924 36409 Face 72815 36412 36410 21841 Face 72816 36411 11851 36410 Face 72817 36412 36411 36410 Face 72818 24090 11852 36411 Face 72819 24090 36412 8385 Face 72820 24090 36411 36412 Face 72821 23850 36413 3313 Face 72822 23850 14211 36413 Face 72823 8224 36414 22915 Face 72824 8224 44280 36414 Face 72825 517 36415 35472 Face 72826 37081 22376 36415 Face 72827 2353 36416 25474 Face 72828 48148 36090 36416 Face 72829 18160 36417 42129 Face 72830 18160 31593 36417 Face 72831 5595 36418 13154 Face 72832 5595 15484 36418 Face 72833 11992 36419 21433 Face 72834 11992 26097 36419 Face 72835 2270 36420 30307 Face 72836 2270 16934 36420 Face 72837 5075 36421 15626 Face 72838 5075 13516 36421 Face 72839 28288 36422 5441 Face 72840 28288 22279 36422 Face 72841 5190 36423 27516 Face 72842 5190 3570 36423 Face 72843 13351 36424 17628 Face 72844 13351 14372 36424 Face 72845 16412 36425 25190 Face 72846 38109 4003 36425 Face 72847 19139 36426 3376 Face 72848 19139 44989 36426 Face 72849 680 36427 9516 Face 72850 680 19553 36427 Face 72851 1176 36428 49127 Face 72852 1176 21288 36428 Face 72853 47992 36429 17536 Face 72854 36430 48941 36429 Face 72855 47992 36430 36429 Face 72856 13622 23706 36430 Face 72857 8452 36431 47696 Face 72858 8452 37909 36431 Face 72859 41147 36432 23558 Face 72860 5617 33270 36432 Face 72861 21565 36433 7660 Face 72862 21565 14621 36433 Face 72863 6350 36434 32899 Face 72864 6350 26533 36434 Face 72865 5112 36435 2134 Face 72866 5112 44286 36435 Face 72867 22159 36436 8218 Face 72868 22159 14404 36436 Face 72869 7720 36437 33421 Face 72870 41251 36292 36437 Face 72871 10594 36438 28425 Face 72872 10594 21701 36438 Face 72873 17740 36439 26308 Face 72874 44819 3421 36439 Face 72875 3783 36440 26508 Face 72876 3783 44378 36440 Face 72877 11083 36441 15843 Face 72878 11083 48799 36441 Face 72879 1377 36442 13463 Face 72880 1377 48553 36442 Face 72881 7118 36443 37154 Face 72882 7118 35790 36443 Face 72883 13161 36444 42154 Face 72884 13161 23724 36444 Face 72885 22904 36445 46922 Face 72886 22904 36676 36445 Face 72887 10243 36446 1772 Face 72888 10243 30019 36446 Face 72889 7835 36447 30906 Face 72890 7835 32629 36447 Face 72891 14012 36448 46657 Face 72892 14012 10000 36448 Face 72893 17374 36449 13158 Face 72894 17374 24058 36449 Face 72895 2903 36450 33932 Face 72896 2903 36314 36450 Face 72897 5698 36451 6840 Face 72898 5698 16404 36451 Face 72899 12598 36452 2055 Face 72900 12598 45378 36452 Face 72901 1139 36453 16346 Face 72902 1139 34332 36453 Face 72903 5139 36454 11362 Face 72904 5139 39575 36454 Face 72905 7133 36455 35525 Face 72906 7133 48265 36455 Face 72907 11284 36456 2266 Face 72908 11284 9848 36456 Face 72909 31943 36457 42686 Face 72910 31943 17092 36457 Face 72911 21142 36458 30618 Face 72912 21142 21767 36458 Face 72913 9461 36459 34425 Face 72914 9461 13667 36459 Face 72915 14293 36460 6094 Face 72916 14293 43908 36460 Face 72917 42496 36461 17907 Face 72918 6854 14591 36461 Face 72919 4740 36462 29475 Face 72920 4740 41239 36463 Face 72921 36462 36463 20997 Face 72922 36462 4740 36463 Face 72923 15377 36464 28975 Face 72924 15377 24976 36464 Face 72925 19335 36465 7029 Face 72926 19335 37884 36465 Face 72927 900 45753 44811 Face 72928 900 35905 45753 Face 72929 6035 36467 37940 Face 72930 6035 36376 36467 Face 72931 1861 36468 38168 Face 72932 1861 42308 36468 Face 72933 3724 36469 15848 Face 72934 3724 34374 36469 Face 72935 12391 36470 25457 Face 72936 12391 14905 36470 Face 72937 5428 36471 21436 Face 72938 5428 24928 36471 Face 72939 7738 36472 32600 Face 72940 7738 18139 36472 Face 72941 15155 36473 8786 Face 72942 15155 3514 36473 Face 72943 29877 36474 8804 Face 72944 29877 883 36474 Face 72945 15805 36475 46760 Face 72946 15805 17676 36475 Face 72947 5462 36476 22142 Face 72948 5462 6343 36476 Face 72949 9006 36477 36360 Face 72950 9006 48877 36477 Face 72951 10841 36478 34686 Face 72952 10841 8876 36478 Face 72953 40119 36479 17945 Face 72954 40119 1003 36479 Face 72955 8329 36480 13894 Face 72956 37786 21236 48584 Face 72957 13418 36481 31025 Face 72958 13418 44303 36481 Face 72959 18091 36482 11283 Face 72960 18091 2363 36482 Face 72961 16022 36483 12313 Face 72962 43764 26394 36483 Face 72963 17860 36484 40005 Face 72964 17860 13693 36484 Face 72965 26211 36485 1477 Face 72966 26211 103 36485 Face 72967 10376 36486 20945 Face 72968 10376 6164 36486 Face 72969 28201 36487 22751 Face 72970 28201 5514 36487 Face 72971 38192 36488 34093 Face 72972 38191 1629 36488 Face 72973 3843 36489 32456 Face 72974 3843 46967 36489 Face 72975 856 36490 43965 Face 72976 47688 32407 36490 Face 72977 17381 36491 16524 Face 72978 17381 42998 36491 Face 72979 17005 36492 14036 Face 72980 17005 17013 36492 Face 72981 520 36493 35897 Face 72982 520 33208 36493 Face 72983 4093 36494 16285 Face 72984 46938 24871 36494 Face 72985 49210 36495 24872 Face 72986 25679 25681 36495 Face 72987 29643 36496 3771 Face 72988 29643 8518 36496 Face 72989 5045 36497 1275 Face 72990 48032 34918 36497 Face 72991 10623 36498 49817 Face 72992 36499 33929 36498 Face 72993 10623 36499 36498 Face 72994 10623 31713 36499 Face 72995 5468 36500 1479 Face 72996 5468 9403 36500 Face 72997 494 36501 44569 Face 72998 494 34539 36501 Face 72999 15626 36502 23241 Face 73000 15626 18677 36502 Face 73001 24623 39153 4424 Face 73002 24623 17864 36503 Face 73003 48335 36504 19576 Face 73004 36505 31382 36504 Face 73005 1946 36505 3352 Face 73006 1946 31382 36505 Face 73007 13843 36506 6520 Face 73008 13843 30946 36506 Face 73009 751 36507 42828 Face 73010 751 22702 36507 Face 73011 434 36508 23541 Face 73012 434 33863 36508 Face 73013 16766 36509 48273 Face 73014 16766 35100 36509 Face 73015 2192 36510 20401 Face 73016 2192 15562 36510 Face 73017 36512 36511 13727 Face 73018 1438 22682 36511 Face 73019 1438 36512 18809 Face 73020 1438 36511 36512 Face 73021 44888 36513 15533 Face 73022 14525 23733 36513 Face 73023 11975 36514 20926 Face 73024 11975 45387 36514 Face 73025 1038 36515 28116 Face 73026 1038 39414 36515 Face 73027 8136 36516 11967 Face 73028 8136 11096 36516 Face 73029 7967 36517 3477 Face 73030 7967 37126 36517 Face 73031 5357 36518 47188 Face 73032 5357 36143 36518 Face 73033 16210 36519 34557 Face 73034 16210 219 36519 Face 73035 15134 36520 20288 Face 73036 15134 44877 36520 Face 73037 15134 36521 41919 Face 73038 36522 48270 36521 Face 73039 15134 36522 36521 Face 73040 15134 20288 36522 Face 73041 19519 36523 4173 Face 73042 19519 44038 36523 Face 73043 39543 36524 28592 Face 73044 36525 6916 36524 Face 73045 39543 36525 36524 Face 73046 1525 13426 36525 Face 73047 36527 36526 478 Face 73048 36527 30296 42035 Face 73049 7734 36527 478 Face 73050 7734 5076 36527 Face 73051 4920 36528 9298 Face 73052 4920 16095 36528 Face 73053 2396 36529 13654 Face 73054 2396 35506 36529 Face 73055 13070 36530 12492 Face 73056 13070 32482 36530 Face 73057 14511 36531 282 Face 73058 14511 18922 36531 Face 73059 26623 36532 8724 Face 73060 26623 21622 36532 Face 73061 3352 36533 44734 Face 73062 42692 11613 36533 Face 73063 38881 36534 46099 Face 73064 38881 36097 36534 Face 73065 28169 36535 10462 Face 73066 28169 9744 36535 Face 73067 3318 36536 26291 Face 73068 3318 8728 36536 Face 73069 14526 36537 34275 Face 73070 14526 27017 36537 Face 73071 21089 36538 27529 Face 73072 21089 15382 36538 Face 73073 10494 36539 39859 Face 73074 10494 25957 36539 Face 73075 9629 36540 21725 Face 73076 9629 238 36540 Face 73077 17643 36541 28066 Face 73078 17643 46450 36541 Face 73079 19734 36542 4549 Face 73080 19734 35264 36542 Face 73081 3312 36543 19322 Face 73082 3312 17530 36543 Face 73083 11203 36544 23430 Face 73084 11203 3460 36544 Face 73085 18152 36545 13094 Face 73086 18152 7897 36545 Face 73087 44563 36546 16296 Face 73088 12465 44978 36546 Face 73089 21338 36547 778 Face 73090 21338 7068 36547 Face 73091 39379 36548 14963 Face 73092 2602 27867 36548 Face 73093 17761 36549 21777 Face 73094 17761 23587 36549 Face 73095 10669 36550 1797 Face 73096 10669 48545 36550 Face 73097 16205 36551 19631 Face 73098 16205 48887 36551 Face 73099 44050 36552 2560 Face 73100 44050 36628 36552 Face 73101 24135 36553 30909 Face 73102 24135 32745 36553 Face 73103 41650 36554 18915 Face 73104 24615 5651 36554 Face 73105 11007 36555 28867 Face 73106 11007 32008 36555 Face 73107 10289 36556 8704 Face 73108 10289 42054 36556 Face 73109 944 36557 25084 Face 73110 944 16973 36557 Face 73111 41849 36558 29217 Face 73112 11410 25638 36558 Face 73113 13917 36559 8374 Face 73114 13917 32438 36559 Face 73115 37097 36560 7672 Face 73116 17173 2888 36560 Face 73117 25333 36561 14864 Face 73118 25333 25334 36561 Face 73119 13881 36562 15774 Face 73120 13881 40124 36562 Face 73121 16356 36563 11969 Face 73122 16356 31676 36563 Face 73123 8918 36564 13634 Face 73124 8918 39633 49384 Face 73125 9479 36565 33710 Face 73126 9479 3882 36565 Face 73127 2314 36566 13849 Face 73128 2314 13238 36566 Face 73129 13094 36567 4467 Face 73130 13094 36545 36567 Face 73131 28006 36568 47314 Face 73132 28006 28073 36568 Face 73133 6478 36569 26083 Face 73134 6478 22121 36569 Face 73135 3319 36570 32216 Face 73136 3319 46393 36570 Face 73137 18643 36571 6659 Face 73138 18643 16124 36571 Face 73139 30311 36572 34622 Face 73140 30311 30310 36572 Face 73141 44818 36573 19964 Face 73142 7472 26151 36573 Face 73143 13764 36574 41747 Face 73144 13764 23699 36574 Face 73145 13382 47836 32296 Face 73146 37129 41201 36575 Face 73147 9082 36576 3855 Face 73148 9082 24139 36576 Face 73149 20377 36577 24116 Face 73150 20377 49900 36577 Face 73151 1081 36578 34296 Face 73152 1081 40284 36578 Face 73153 5612 36579 1674 Face 73154 5612 26334 36579 Face 73155 20156 36580 38292 Face 73156 20156 23900 36580 Face 73157 1419 36581 28726 Face 73158 1419 36037 36581 Face 73159 15144 36582 21703 Face 73160 15144 2627 36582 Face 73161 5585 36583 34921 Face 73162 5585 41314 36583 Face 73163 4459 36584 31716 Face 73164 4459 30681 36584 Face 73165 11518 36585 21021 Face 73166 36586 20490 36585 Face 73167 11518 36586 36585 Face 73168 11518 37039 36586 Face 73169 36588 36587 6613 Face 73170 23807 33365 36587 Face 73171 23807 36588 6827 Face 73172 23807 36587 36588 Face 73173 4294 36589 41295 Face 73174 4294 8263 36589 Face 73175 1883 36590 34876 Face 73176 1883 35685 36590 Face 73177 9730 36591 16977 Face 73178 9730 34928 36591 Face 73179 12166 36592 48201 Face 73180 12166 11976 36592 Face 73181 13653 36593 21047 Face 73182 13653 11618 36593 Face 73183 18572 36594 19099 Face 73184 18572 21797 36594 Face 73185 200 36595 10808 Face 73186 200 20395 36595 Face 73187 36597 36596 17256 Face 73188 11063 38008 36596 Face 73189 11063 36597 6147 Face 73190 11063 36596 36597 Face 73191 25436 36598 14747 Face 73192 25436 11144 36598 Face 73193 7336 36599 21885 Face 73194 7336 5097 36599 Face 73195 7336 36600 16174 Face 73196 7336 21885 36600 Face 73197 3875 36601 22327 Face 73198 3875 13195 36601 Face 73199 28120 36602 8361 Face 73200 28120 28103 36602 Face 73201 20509 36603 25570 Face 73202 20509 12509 36603 Face 73203 24549 36604 18980 Face 73204 24549 903 36604 Face 73205 47315 36605 13792 Face 73206 36606 24650 36605 Face 73207 47315 36606 36605 Face 73208 24651 1844 36606 Face 73209 1493 36607 25142 Face 73210 1493 34222 36607 Face 73211 4330 36608 961 Face 73212 4330 16782 36608 Face 73213 11789 36609 31083 Face 73214 11789 12218 36609 Face 73215 41153 36610 7087 Face 73216 17891 25939 36610 Face 73217 3769 36611 35530 Face 73218 3769 10659 36611 Face 73219 19533 36612 44982 Face 73220 19533 7840 36612 Face 73221 34279 36613 10303 Face 73222 34279 42391 36613 Face 73223 1405 36614 48100 Face 73224 1405 21560 36614 Face 73225 91 36615 33008 Face 73226 91 18203 36615 Face 73227 17192 36616 20571 Face 73228 17192 26086 36616 Face 73229 13401 36617 24630 Face 73230 13401 14886 36617 Face 73231 19898 36618 36482 Face 73232 19898 29372 36618 Face 73233 49739 36619 12639 Face 73234 7494 26210 36619 Face 73235 20596 36620 5176 Face 73236 20596 35032 36620 Face 73237 24242 36621 18820 Face 73238 24242 48120 36621 Face 73239 31722 36622 12137 Face 73240 31722 31723 36622 Face 73241 28542 36623 31582 Face 73242 28542 19675 36623 Face 73243 30953 36624 21130 Face 73244 30953 48115 36624 Face 73245 1247 36625 24241 Face 73246 1247 14806 36625 Face 73247 20200 36626 8729 Face 73248 20200 24437 36626 Face 73249 9906 36627 28075 Face 73250 9906 18135 36627 Face 73251 37066 36628 14732 Face 73252 37066 36552 36628 Face 73253 7610 36629 10763 Face 73254 7610 32429 36629 Face 73255 22473 36630 20409 Face 73256 22473 8286 36630 Face 73257 23818 36631 1722 Face 73258 23818 5539 36631 Face 73259 8182 36632 41222 Face 73260 8182 17060 36632 Face 73261 14924 36633 27533 Face 73262 14924 7394 36633 Face 73263 49007 36634 40911 Face 73264 33525 13240 36634 Face 73265 13489 36635 45015 Face 73266 13489 21037 36635 Face 73267 18302 36636 4566 Face 73268 18302 35404 36636 Face 73269 1700 36637 8750 Face 73270 41207 11642 36637 Face 73271 7014 36638 30464 Face 73272 7014 21311 36638 Face 73273 1975 36639 12548 Face 73274 1975 7482 36639 Face 73275 14673 36640 47861 Face 73276 14673 27904 36640 Face 73277 36640 36641 5398 Face 73278 36640 27904 36641 Face 73279 3065 36642 23972 Face 73280 3065 15185 36642 Face 73281 16514 36643 6537 Face 73282 16514 41993 36643 Face 73283 23985 36644 41612 Face 73284 23985 35373 36644 Face 73285 35430 36645 41756 Face 73286 35430 17743 36645 Face 73287 3101 36646 10750 Face 73288 3101 34424 36646 Face 73289 36 36647 5715 Face 73290 36 6704 36647 Face 73291 10311 36648 20905 Face 73292 10311 3226 36648 Face 73293 22626 36649 26104 Face 73294 22626 6630 36649 Face 73295 15408 36650 5139 Face 73296 15408 29412 36650 Face 73297 16540 36651 25014 Face 73298 38983 48139 36651 Face 73299 42761 36652 21156 Face 73300 17875 47510 36652 Face 73301 8437 36653 7353 Face 73302 8437 34930 36653 Face 73303 11544 36654 112 Face 73304 11544 47585 36654 Face 73305 36657 36655 15612 Face 73306 36656 32790 36655 Face 73307 12348 36656 36655 Face 73308 48522 27766 36656 Face 73309 40935 36657 15612 Face 73310 12348 36655 36657 Face 73311 1802 36658 34381 Face 73312 1802 20724 36658 Face 73313 12961 36659 26054 Face 73314 12961 30594 36659 Face 73315 12472 46248 29474 Face 73316 12472 17093 36660 Face 73317 18010 36661 18316 Face 73318 18010 10187 36661 Face 73319 10776 36662 45296 Face 73320 47060 8283 36662 Face 73321 9234 36663 22543 Face 73322 9234 18526 36663 Face 73323 12827 36664 18785 Face 73324 12827 13173 36664 Face 73325 9107 36665 6560 Face 73326 9107 11402 36665 Face 73327 15109 36666 10814 Face 73328 15109 19079 36666 Face 73329 20559 36667 34229 Face 73330 20559 11193 36667 Face 73331 4562 36668 36264 Face 73332 4562 45747 36668 Face 73333 31349 36669 24462 Face 73334 31349 36246 36669 Face 73335 7321 36670 23581 Face 73336 7321 15877 36670 Face 73337 19682 36671 7390 Face 73338 19682 36325 36671 Face 73339 43972 36672 21743 Face 73340 4794 27637 36672 Face 73341 9214 46379 775 Face 73342 9214 45848 36673 Face 73343 16163 36674 31871 Face 73344 16163 32420 36674 Face 73345 9686 36675 30693 Face 73346 9686 39081 36675 Face 73347 42351 36676 22904 Face 73348 5917 29341 36676 Face 73349 19407 36677 46294 Face 73350 19407 10282 36677 Face 73351 12800 36678 43737 Face 73352 12800 35060 36678 Face 73353 3619 36679 9001 Face 73354 3619 7825 36679 Face 73355 5109 36680 45792 Face 73356 5109 14703 36680 Face 73357 36682 36681 3831 Face 73358 37856 18613 36681 Face 73359 15150 36682 41480 Face 73360 15150 36681 36682 Face 73361 5085 36683 17925 Face 73362 5085 42411 36683 Face 73363 36992 36684 2503 Face 73364 4633 27311 36684 Face 73365 8924 36685 24979 Face 73366 8924 20884 36685 Face 73367 44687 36686 1158 Face 73368 27725 17562 36686 Face 73369 6546 36687 45795 Face 73370 6546 15003 38277 Face 73371 1237 36688 33718 Face 73372 1237 24848 36688 Face 73373 3095 36689 24531 Face 73374 3095 30286 36689 Face 73375 15184 36690 39262 Face 73376 15184 30750 36690 Face 73377 2518 36691 31725 Face 73378 2518 35506 36691 Face 73379 18694 36692 36179 Face 73380 18694 21609 36692 Face 73381 49247 36693 42985 Face 73382 4508 29031 36693 Face 73383 10933 36694 21866 Face 73384 10933 30430 36694 Face 73385 15299 36695 35785 Face 73386 15299 35390 36695 Face 73387 16195 36696 14889 Face 73388 16195 49462 36696 Face 73389 8661 36697 31614 Face 73390 8661 29302 36697 Face 73391 17708 36698 23344 Face 73392 17708 34693 36698 Face 73393 5103 36699 41277 Face 73394 5103 46403 36699 Face 73395 15773 36700 4772 Face 73396 15773 48466 36700 Face 73397 2851 36701 26602 Face 73398 2851 24320 36701 Face 73399 15117 36702 28044 Face 73400 15117 17835 36702 Face 73401 5099 36703 8606 Face 73402 5099 35528 36703 Face 73403 25887 36704 2965 Face 73404 25887 7163 36704 Face 73405 18020 36705 1507 Face 73406 36706 11002 36705 Face 73407 18020 36706 36705 Face 73408 18020 38129 36706 Face 73409 25089 36707 19180 Face 73410 25089 5935 36707 Face 73411 14356 36708 34023 Face 73412 14356 38890 36708 Face 73413 8520 36709 46817 Face 73414 8520 18472 36709 Face 73415 40982 36710 13422 Face 73416 40982 19729 36710 Face 73417 1714 36711 14513 Face 73418 1714 27316 36711 Face 73419 14750 36712 38116 Face 73420 14750 7647 36712 Face 73421 48759 36713 27042 Face 73422 9871 14423 36713 Face 73423 19810 36714 28574 Face 73424 19810 27718 36714 Face 73425 9238 36715 44197 Face 73426 45125 13998 36715 Face 73427 8281 42681 37191 Face 73428 8281 3452 36716 Face 73429 4034 36717 47152 Face 73430 4034 29396 36717 Face 73431 36719 36718 49540 Face 73432 8010 34670 36718 Face 73433 8010 36719 34562 Face 73434 8010 36718 36719 Face 73435 47842 36720 20533 Face 73436 10930 43022 36720 Face 73437 15866 36721 34843 Face 73438 15866 3958 36721 Face 73439 11844 36722 12529 Face 73440 11844 7229 36722 Face 73441 5221 36723 25742 Face 73442 36724 30570 36723 Face 73443 5221 36724 36723 Face 73444 5221 22348 36724 Face 73445 43429 36725 37932 Face 73446 5867 438 36725 Face 73447 578 36726 20943 Face 73448 578 6832 36726 Face 73449 6576 36727 23537 Face 73450 41379 27474 36727 Face 73451 10931 36728 25769 Face 73452 10931 46750 36728 Face 73453 14592 36729 29933 Face 73454 14592 1263 36729 Face 73455 4295 36730 31563 Face 73456 4295 13764 36730 Face 73457 3117 36731 36390 Face 73458 3117 35908 36731 Face 73459 6412 36732 43760 Face 73460 36733 11516 36732 Face 73461 6412 36733 36732 Face 73462 6412 31236 36733 Face 73463 25308 36734 6180 Face 73464 25308 22761 36734 Face 73465 5843 36735 28819 Face 73466 5843 31586 36735 Face 73467 22944 36736 26901 Face 73468 22944 256 36736 Face 73469 10876 49801 33773 Face 73470 10876 28376 36737 Face 73471 14347 36738 19524 Face 73472 14347 31304 36738 Face 73473 1958 36739 42166 Face 73474 1958 20132 36739 Face 73475 1095 36740 8674 Face 73476 1095 33499 36740 Face 73477 185 36741 44397 Face 73478 49097 30400 36741 Face 73479 49097 36742 9572 Face 73480 185 6985 36742 Face 73481 15289 36743 49160 Face 73482 15289 31201 36743 Face 73483 26541 36744 16117 Face 73484 26541 28020 41107 Face 73485 2719 36745 13636 Face 73486 2719 32511 36745 Face 73487 27733 36746 17061 Face 73488 27733 44941 36746 Face 73489 12413 36747 31018 Face 73490 12413 35072 36747 Face 73491 21293 36748 27076 Face 73492 21293 1690 36748 Face 73493 11107 36749 395 Face 73494 11107 37540 36749 Face 73495 11338 36750 27572 Face 73496 36751 31950 36750 Face 73497 11338 36751 36750 Face 73498 11338 20440 36751 Face 73499 1356 36752 39384 Face 73500 36753 2477 36752 Face 73501 1356 36753 36752 Face 73502 1356 8629 36753 Face 73503 571 43427 7499 Face 73504 571 27767 43427 Face 73505 46363 36755 29846 Face 73506 11188 47509 36755 Face 73507 2674 36756 28061 Face 73508 2674 16892 36756 Face 73509 2010 36757 31597 Face 73510 2010 11502 36757 Face 73511 31023 36758 12460 Face 73512 46168 881 36758 Face 73513 24355 36759 26745 Face 73514 24355 27548 36759 Face 73515 6177 36760 16378 Face 73516 6177 10109 36760 Face 73517 3202 36761 29091 Face 73518 3202 12000 36761 Face 73519 7738 36762 27180 Face 73520 7738 22324 36762 Face 73521 8163 36763 443 Face 73522 8163 24746 36763 Face 73523 6458 36764 27493 Face 73524 6458 25130 36764 Face 73525 21371 36765 20760 Face 73526 46862 6411 36765 Face 73527 19376 36766 46727 Face 73528 19376 11708 36766 Face 73529 48942 36767 34059 Face 73530 16622 30173 36767 Face 73531 14570 36768 2743 Face 73532 14570 44387 36768 Face 73533 15153 47643 972 Face 73534 15153 7231 36769 Face 73535 10907 36770 20320 Face 73536 10907 18441 36770 Face 73537 1959 36771 27327 Face 73538 1959 10732 36771 Face 73539 1792 36772 22168 Face 73540 1792 24473 36772 Face 73541 5211 36773 31386 Face 73542 5211 12594 36773 Face 73543 5314 36774 21759 Face 73544 5314 31958 36774 Face 73545 25058 36775 15663 Face 73546 25058 21255 36775 Face 73547 45345 36776 23707 Face 73548 8301 5765 36776 Face 73549 43222 36777 28661 Face 73550 823 8984 36777 Face 73551 2385 36778 15074 Face 73552 2385 9301 36778 Face 73553 13761 36779 673 Face 73554 13761 7687 36779 Face 73555 12626 36780 7357 Face 73556 45374 27912 36780 Face 73557 22631 36781 32626 Face 73558 22631 9967 36781 Face 73559 999 36782 38106 Face 73560 999 27627 36782 Face 73561 8762 36783 39154 Face 73562 8762 41087 36783 Face 73563 4998 36784 9313 Face 73564 4998 33253 36784 Face 73565 4998 36785 33253 Face 73566 4998 23085 36785 Face 73567 14252 36786 5668 Face 73568 14252 28916 36786 Face 73569 7850 36787 47708 Face 73570 7850 34958 45360 Face 73571 23276 36788 19995 Face 73572 23276 44470 36788 Face 73573 24995 36789 6230 Face 73574 24995 48876 36789 Face 73575 26309 36790 24500 Face 73576 26309 33176 36790 Face 73577 845 36791 37225 Face 73578 36792 40926 36791 Face 73579 845 36792 36791 Face 73580 845 6053 36792 Face 73581 41123 36793 26861 Face 73582 7845 39546 36793 Face 73583 47841 36794 25588 Face 73584 12320 33643 36794 Face 73585 8303 36795 30107 Face 73586 8303 36324 36795 Face 73587 9966 36796 9983 Face 73588 9966 31746 36796 Face 73589 48475 36797 21830 Face 73590 22602 41266 36797 Face 73591 14123 36798 35098 Face 73592 14123 30142 36798 Face 73593 17044 36799 43106 Face 73594 17044 47077 36799 Face 73595 71 36800 32441 Face 73596 71 26413 36800 Face 73597 49585 36801 4938 Face 73598 9176 37026 36801 Face 73599 9176 36802 34805 Face 73600 9176 36801 36802 Face 73601 6057 36803 32796 Face 73602 6057 30293 36803 Face 73603 488 36804 12036 Face 73604 488 24397 36804 Face 73605 13241 36805 29022 Face 73606 13241 17805 36805 Face 73607 14951 36806 20660 Face 73608 14951 9405 36806 Face 73609 13939 36807 47088 Face 73610 13939 48653 36807 Face 73611 669 36808 26884 Face 73612 36809 16238 36808 Face 73613 669 36809 36808 Face 73614 42985 5797 36809 Face 73615 14543 36810 19374 Face 73616 14543 40830 36810 Face 73617 43588 36811 18472 Face 73618 587 32004 36811 Face 73619 44033 36812 27970 Face 73620 37893 30829 36812 Face 73621 11603 36813 34349 Face 73622 11603 2900 36813 Face 73623 15649 36814 7188 Face 73624 15649 35158 36814 Face 73625 39441 36815 11023 Face 73626 6223 26390 36815 Face 73627 6289 36816 5030 Face 73628 6289 19709 36816 Face 73629 18687 36817 28619 Face 73630 18687 43097 36817 Face 73631 2427 36818 29886 Face 73632 2427 31008 36818 Face 73633 8973 36819 5266 Face 73634 8973 2725 36819 Face 73635 36821 36820 192 Face 73636 36821 28844 36820 Face 73637 16763 36821 192 Face 73638 16763 47650 36821 Face 73639 10425 36822 19669 Face 73640 10425 31130 36822 Face 73641 22169 36823 8604 Face 73642 22169 4655 36823 Face 73643 22701 36824 1154 Face 73644 22701 9204 36824 Face 73645 26146 36825 16555 Face 73646 26146 5176 36825 Face 73647 11725 36826 5100 Face 73648 11725 2424 41819 Face 73649 8004 36827 35808 Face 73650 8004 24959 36827 Face 73651 15145 36828 26977 Face 73652 15145 44343 36828 Face 73653 19035 36829 11307 Face 73654 19035 14499 36829 Face 73655 2397 36830 31309 Face 73656 2397 32190 36830 Face 73657 13117 36831 35108 Face 73658 42777 11487 36831 Face 73659 10418 36832 901 Face 73660 10418 2842 36832 Face 73661 2335 36833 10436 Face 73662 37333 29011 36833 Face 73663 45664 36834 20270 Face 73664 45664 10189 36834 Face 73665 8013 36835 33847 Face 73666 39219 13697 36835 Face 73667 9586 36836 5009 Face 73668 9586 21892 36836 Face 73669 19389 36837 27995 Face 73670 19389 28786 36837 Face 73671 15333 36838 40446 Face 73672 15333 31245 36838 Face 73673 36840 36839 6292 Face 73674 10369 1128 36839 Face 73675 36841 36840 430 Face 73676 36841 36839 36840 Face 73677 41574 36841 430 Face 73678 10369 36839 36841 Face 73679 25338 36842 16643 Face 73680 25338 9273 36842 Face 73681 18852 36843 30510 Face 73682 18852 28600 36843 Face 73683 39932 36844 41385 Face 73684 3223 29116 36844 Face 73685 18648 36845 12976 Face 73686 18648 13635 36845 Face 73687 27222 36846 15143 Face 73688 27222 14881 36846 Face 73689 1582 48772 19983 Face 73690 1582 45044 36847 Face 73691 624 36848 16305 Face 73692 624 14003 36848 Face 73693 15761 36849 29622 Face 73694 15761 40780 36849 Face 73695 3357 36850 39142 Face 73696 3357 34144 36850 Face 73697 23384 36851 44725 Face 73698 23384 8613 36851 Face 73699 10908 36852 2901 Face 73700 10908 4916 36852 Face 73701 1171 36853 41816 Face 73702 44529 21354 36853 Face 73703 28784 36854 41808 Face 73704 28784 1381 36854 Face 73705 36856 36855 44559 Face 73706 14076 47713 36855 Face 73707 14076 36856 26414 Face 73708 14076 36855 36856 Face 73709 7052 36857 33756 Face 73710 7052 13737 36857 Face 73711 22581 36858 28000 Face 73712 22581 31255 36858 Face 73713 8436 36859 29094 Face 73714 8436 5740 36859 Face 73715 12720 36860 32432 Face 73716 12720 5886 36860 Face 73717 36862 36861 10917 Face 73718 3103 38027 36861 Face 73719 3103 36862 15167 Face 73720 3103 36861 36862 Face 73721 13121 36863 10088 Face 73722 13121 47029 36863 Face 73723 14343 36864 25073 Face 73724 14343 27312 36864 Face 73725 36866 36865 26458 Face 73726 7040 36146 36865 Face 73727 7040 36866 20326 Face 73728 7040 36865 36866 Face 73729 4221 36867 172 Face 73730 4221 36509 36867 Face 73731 1395 36868 25756 Face 73732 1395 20129 36868 Face 73733 594 36869 13252 Face 73734 594 5345 36869 Face 73735 8746 36870 28433 Face 73736 8746 28009 36870 Face 73737 2966 36871 38786 Face 73738 45272 18521 36871 Face 73739 9603 36872 32081 Face 73740 9603 43604 36872 Face 73741 20488 36873 6786 Face 73742 20488 12972 36873 Face 73743 49428 36874 28869 Face 73744 49428 10599 36874 Face 73745 9832 36875 12240 Face 73746 9832 45341 36875 Face 73747 40034 36876 27084 Face 73748 7692 24400 36876 Face 73749 13358 36877 34215 Face 73750 13358 18144 36877 Face 73751 31619 36878 21850 Face 73752 31619 16790 36878 Face 73753 8639 36879 25976 Face 73754 8639 21598 36879 Face 73755 21877 36880 25303 Face 73756 21877 4525 36880 Face 73757 39440 36881 33026 Face 73758 7731 31086 36881 Face 73759 6439 36882 49165 Face 73760 6439 46691 36882 Face 73761 22340 36883 2209 Face 73762 22340 25955 36883 Face 73763 20417 36884 47680 Face 73764 20417 45957 36884 Face 73765 22141 36885 41116 Face 73766 22141 2425 36885 Face 73767 10237 36886 20273 Face 73768 48445 43905 36886 Face 73769 8660 36887 13318 Face 73770 8660 13677 36887 Face 73771 16827 36888 5137 Face 73772 16827 47196 36888 Face 73773 22191 36889 13224 Face 73774 22191 15436 36889 Face 73775 6241 36890 32055 Face 73776 6241 30954 47472 Face 73777 36893 36891 6824 Face 73778 44507 30120 36891 Face 73779 12170 36892 25214 Face 73780 12170 36891 36893 Face 73781 36892 36893 6824 Face 73782 36892 12170 36893 Face 73783 20717 36894 32061 Face 73784 20717 29291 36894 Face 73785 19277 36895 49289 Face 73786 19277 36667 36895 Face 73787 9845 36896 13527 Face 73788 9845 37669 36896 Face 73789 49337 36897 32116 Face 73790 20087 10223 36897 Face 73791 27645 36898 49357 Face 73792 27645 4310 36898 Face 73793 1898 36899 14939 Face 73794 1898 32604 36899 Face 73795 1412 36900 16360 Face 73796 1412 25908 36900 Face 73797 1225 36901 29624 Face 73798 1225 36211 36901 Face 73799 1 36902 30746 Face 73800 1 36179 36902 Face 73801 9695 36903 32992 Face 73802 9695 34437 36903 Face 73803 23389 36904 33265 Face 73804 23389 8507 36904 Face 73805 8274 36905 29123 Face 73806 8274 24236 36905 Face 73807 2784 36906 36350 Face 73808 2784 795 36906 Face 73809 12244 36907 21005 Face 73810 12244 25715 36907 Face 73811 18033 36908 23382 Face 73812 18033 12294 36908 Face 73813 1698 36909 38986 Face 73814 1698 5392 36909 Face 73815 6591 36910 3793 Face 73816 6591 18556 36910 Face 73817 2132 36911 12670 Face 73818 2132 5899 36911 Face 73819 9152 36912 40275 Face 73820 9152 14271 49524 Face 73821 44504 36913 16568 Face 73822 44504 47834 36913 Face 73823 4568 36914 33975 Face 73824 4568 25144 36914 Face 73825 15599 36915 40435 Face 73826 39288 14405 36915 Face 73827 21589 36916 23231 Face 73828 21589 2493 36916 Face 73829 20757 36917 10750 Face 73830 20757 5106 36917 Face 73831 20859 36918 11641 Face 73832 20859 3399 36918 Face 73833 20902 36919 20901 Face 73834 20902 6774 36919 Face 73835 20939 36920 15724 Face 73836 20939 38548 36920 Face 73837 23935 36921 1745 Face 73838 23935 13831 36921 Face 73839 39582 36922 23535 Face 73840 410 45561 36922 Face 73841 10381 36923 33394 Face 73842 10381 33909 36923 Face 73843 212 36924 6328 Face 73844 212 15291 36924 Face 73845 12696 36925 15317 Face 73846 12696 3907 36925 Face 73847 20280 36926 49202 Face 73848 20280 2085 36926 Face 73849 20655 36927 45247 Face 73850 45858 10010 36927 Face 73851 1880 36928 44923 Face 73852 1880 11433 36928 Face 73853 18041 36929 41034 Face 73854 18041 41004 36929 Face 73855 20099 36930 8625 Face 73856 44742 837 36930 Face 73857 8480 36931 34898 Face 73858 8480 25023 36931 Face 73859 5169 36932 16095 Face 73860 40403 1029 36932 Face 73861 28146 36933 768 Face 73862 28146 20718 36933 Face 73863 19757 36934 4096 Face 73864 19757 16931 36934 Face 73865 9972 36935 34052 Face 73866 9972 35942 36935 Face 73867 3596 36936 31249 Face 73868 3596 20470 36936 Face 73869 11800 36937 32839 Face 73870 44199 28865 36937 Face 73871 19320 36938 15568 Face 73872 19320 34317 36938 Face 73873 6835 36939 20116 Face 73874 6835 27288 36939 Face 73875 25912 36940 20388 Face 73876 25912 24541 36940 Face 73877 2408 36941 4037 Face 73878 2408 32381 36941 Face 73879 11292 36942 48971 Face 73880 11292 16539 36942 Face 73881 36944 36943 48420 Face 73882 10577 30646 36943 Face 73883 10577 36944 24391 Face 73884 10577 36943 36944 Face 73885 1999 36945 11022 Face 73886 49316 32151 36945 Face 73887 8038 36946 32674 Face 73888 8038 15861 36946 Face 73889 8444 36947 35543 Face 73890 40380 17192 36947 Face 73891 63 36948 26026 Face 73892 63 25465 36948 Face 73893 40256 36949 24345 Face 73894 3698 24168 36949 Face 73895 44955 36950 19369 Face 73896 5 24465 49258 Face 73897 36952 36951 46935 Face 73898 36953 27980 36951 Face 73899 6484 36952 18542 Face 73900 36953 36951 36952 Face 73901 6484 36953 36952 Face 73902 6484 38672 36953 Face 73903 18044 36954 24830 Face 73904 18044 7460 36954 Face 73905 21109 36955 27466 Face 73906 21109 9197 36955 Face 73907 15545 36956 2527 Face 73908 15545 26635 36956 Face 73909 4440 36957 23439 Face 73910 49977 7079 36957 Face 73911 11593 36958 6445 Face 73912 11593 27132 36958 Face 73913 9310 36959 7092 Face 73914 9310 1331 36959 Face 73915 6611 36960 19824 Face 73916 6611 26389 36960 Face 73917 528 36961 33215 Face 73918 528 11612 36961 Face 73919 11669 36962 7354 Face 73920 11669 17890 36962 Face 73921 22953 36963 27603 Face 73922 22953 24559 36963 Face 73923 8992 36964 17445 Face 73924 36965 589 36964 Face 73925 8992 36965 36964 Face 73926 8992 33117 36965 Face 73927 49360 36966 1788 Face 73928 6783 32066 36966 Face 73929 38896 36967 27488 Face 73930 38897 30307 36967 Face 73931 3749 36968 21896 Face 73932 3749 40596 36968 Face 73933 2921 36969 44346 Face 73934 2921 35297 36969 Face 73935 14659 36970 11706 Face 73936 14659 47294 36970 Face 73937 16091 36971 35713 Face 73938 44228 7642 36971 Face 73939 11166 36972 11165 Face 73940 11166 1665 36972 Face 73941 32259 36973 10897 Face 73942 32259 27193 36973 Face 73943 5094 36974 39827 Face 73944 5094 29695 36974 Face 73945 13109 36975 28320 Face 73946 13109 45334 36975 Face 73947 36977 36976 26659 Face 73948 36977 3229 36976 Face 73949 3623 36977 26659 Face 73950 3623 16432 36977 Face 73951 5691 36978 1548 Face 73952 5691 14974 36978 Face 73953 12897 36979 4365 Face 73954 12897 23536 36979 Face 73955 36981 36980 8253 Face 73956 4759 40040 36980 Face 73957 49797 36981 22544 Face 73958 49797 36980 36981 Face 73959 4258 36982 29208 Face 73960 4258 22832 36982 Face 73961 3009 36983 16806 Face 73962 3009 22204 36983 Face 73963 30861 36984 28033 Face 73964 30861 28035 36984 Face 73965 10874 40944 6112 Face 73966 46231 697 36985 Face 73967 5715 36986 14686 Face 73968 5715 36647 36986 Face 73969 14987 36987 30343 Face 73970 14987 27921 36987 Face 73971 6115 36988 13808 Face 73972 6115 10019 36988 Face 73973 3598 36989 21894 Face 73974 3598 27524 36989 Face 73975 7677 36990 4387 Face 73976 7677 6984 36990 Face 73977 14161 36991 21251 Face 73978 14161 20013 36991 Face 73979 36993 36992 11806 Face 73980 4633 36684 36992 Face 73981 4633 36993 9174 Face 73982 4633 36992 36993 Face 73983 23509 36994 7505 Face 73984 23509 10881 36994 Face 73985 13702 36995 11288 Face 73986 13702 12513 36995 Face 73987 50 36996 30611 Face 73988 50 43259 36996 Face 73989 23292 36997 7299 Face 73990 23292 9844 36997 Face 73991 9919 36998 35823 Face 73992 47260 19835 36998 Face 73993 8157 36999 22777 Face 73994 8157 17122 36999 Face 73995 21454 37000 33389 Face 73996 21454 4447 37000 Face 73997 5229 37001 6573 Face 73998 5229 13858 37001 Face 73999 20205 37002 26392 Face 74000 20205 1007 37002 Face 74001 2591 37003 29826 Face 74002 2591 4714 37003 Face 74003 2591 37004 29928 Face 74004 37005 44114 37004 Face 74005 2591 37005 37004 Face 74006 2591 29826 37005 Face 74007 1021 37006 39556 Face 74008 1021 11557 37006 Face 74009 10971 37007 20651 Face 74010 37008 2635 37007 Face 74011 10971 37008 37007 Face 74012 10971 13615 37008 Face 74013 3743 37009 19544 Face 74014 3743 24247 37009 Face 74015 9442 37010 3486 Face 74016 41076 25490 37010 Face 74017 41768 37011 35023 Face 74018 1593 42578 37011 Face 74019 20824 37012 2671 Face 74020 20824 24152 37012 Face 74021 5462 48195 21820 Face 74022 5462 22142 37013 Face 74023 665 37014 46332 Face 74024 665 19551 37014 Face 74025 14703 37015 14751 Face 74026 14703 30412 37015 Face 74027 15872 37016 44952 Face 74028 15872 5768 37016 Face 74029 43624 37017 3563 Face 74030 12100 30575 48697 Face 74031 15914 37018 46682 Face 74032 15914 19837 37018 Face 74033 13321 37019 47382 Face 74034 13321 14558 37019 Face 74035 25221 37020 30023 Face 74036 25221 4217 37020 Face 74037 28187 37021 6466 Face 74038 28187 21226 37021 Face 74039 3233 37022 24552 Face 74040 3233 14407 37022 Face 74041 23888 37023 1405 Face 74042 23888 16316 37023 Face 74043 9102 37024 30759 Face 74044 9102 5958 37024 Face 74045 5465 37025 41065 Face 74046 5465 9675 37025 Face 74047 26316 37026 39077 Face 74048 26316 36801 37026 Face 74049 47304 37027 25951 Face 74050 47304 721 37027 Face 74051 5473 37028 22166 Face 74052 46076 46328 37028 Face 74053 4381 37029 17149 Face 74054 4381 9172 37029 Face 74055 6930 37030 13506 Face 74056 6930 18792 37030 Face 74057 29712 37031 46095 Face 74058 29712 31654 37031 Face 74059 4302 37032 39906 Face 74060 4302 31022 37032 Face 74061 1001 37033 29381 Face 74062 1001 21575 37033 Face 74063 15415 37034 14503 Face 74064 15415 47200 37034 Face 74065 7402 37035 13683 Face 74066 7402 6356 37035 Face 74067 38428 37036 30799 Face 74068 8841 28664 37036 Face 74069 4071 37037 39224 Face 74070 45915 12161 37037 Face 74071 19374 37038 43848 Face 74072 19374 19823 37038 Face 74073 37040 37039 8607 Face 74074 5118 36586 37039 Face 74075 5118 37040 18408 Face 74076 5118 37039 37040 Face 74077 31211 37041 40881 Face 74078 31211 30966 37041 Face 74079 707 37042 8469 Face 74080 707 40447 37042 Face 74081 11489 37043 4325 Face 74082 11489 22740 37043 Face 74083 10093 37044 27172 Face 74084 10093 29704 37044 Face 74085 9480 37045 5506 Face 74086 9480 15215 37045 Face 74087 23310 37046 8663 Face 74088 23310 23248 37046 Face 74089 1508 37047 43595 Face 74090 1508 46306 37047 Face 74091 15707 37048 7276 Face 74092 15707 19101 37048 Face 74093 5982 37049 18351 Face 74094 5982 21508 37049 Face 74095 37051 37050 32607 Face 74096 43596 4544 37050 Face 74097 4908 37051 34435 Face 74098 43596 37050 37051 Face 74099 15997 37052 1047 Face 74100 15997 10479 37052 Face 74101 32 37053 5788 Face 74102 32 12631 37053 Face 74103 32 49116 47266 Face 74104 32 15173 49116 Face 74105 5834 37055 33371 Face 74106 5834 22130 37055 Face 74107 3372 37056 30896 Face 74108 3372 16562 37056 Face 74109 3457 37057 22331 Face 74110 3457 13010 37057 Face 74111 15918 37058 43769 Face 74112 15918 22913 37058 Face 74113 12498 37059 18591 Face 74114 12498 25619 37059 Face 74115 2451 37060 27224 Face 74116 2451 21379 37060 Face 74117 10868 37061 1670 Face 74118 10868 5417 37061 Face 74119 3398 37062 24819 Face 74120 3398 11795 37062 Face 74121 5865 37063 12423 Face 74122 5865 35029 37063 Face 74123 9539 37064 9538 Face 74124 9539 15833 37064 Face 74125 2924 37065 31882 Face 74126 2924 35918 37065 Face 74127 16527 37066 30681 Face 74128 16527 36552 37066 Face 74129 13085 37067 13086 Face 74130 13085 2843 37067 Face 74131 18867 37068 16562 Face 74132 18867 34183 37068 Face 74133 23766 37069 13703 Face 74134 23766 27542 37069 Face 74135 13800 37070 9746 Face 74136 13800 27411 37070 Face 74137 7582 37071 12877 Face 74138 39209 17429 37071 Face 74139 2052 37072 34685 Face 74140 2052 47799 37072 Face 74141 12164 37073 16687 Face 74142 12164 27654 37073 Face 74143 3500 37074 34351 Face 74144 3500 45607 37074 Face 74145 18189 37075 33851 Face 74146 18189 39124 37075 Face 74147 9951 37076 45428 Face 74148 9951 9950 37076 Face 74149 45689 37077 31090 Face 74150 45689 25879 37077 Face 74151 9224 37078 29994 Face 74152 9224 14287 37078 Face 74153 2582 37079 27095 Face 74154 2582 6994 37079 Face 74155 4796 37080 26038 Face 74156 4796 12048 37080 Face 74157 517 37081 36415 Face 74158 517 14117 37081 Face 74159 31833 37082 5883 Face 74160 31833 29562 37082 Face 74161 29693 37083 30631 Face 74162 29693 31912 37083 Face 74163 5492 37084 33999 Face 74164 5492 35925 37084 Face 74165 1397 37085 34867 Face 74166 1397 31078 37085 Face 74167 23532 37086 461 Face 74168 23532 12111 37086 Face 74169 20128 37087 6330 Face 74170 20128 35502 37087 Face 74171 22435 37088 11255 Face 74172 22435 25415 37088 Face 74173 5447 43169 36993 Face 74174 5447 28562 43169 Face 74175 13029 37090 35032 Face 74176 13029 36825 37090 Face 74177 14792 37091 18021 Face 74178 14792 21808 37091 Face 74179 6472 37092 22499 Face 74180 43636 27737 37092 Face 74181 41938 37093 39118 Face 74182 41938 8865 37093 Face 74183 9803 37094 41463 Face 74184 9803 20283 37094 Face 74185 1254 37095 33637 Face 74186 42228 5833 37095 Face 74187 21772 37096 16420 Face 74188 21772 21908 37096 Face 74189 17173 37097 27934 Face 74190 17173 36560 37097 Face 74191 3286 37098 28509 Face 74192 3286 32675 37098 Face 74193 43256 43641 29049 Face 74194 10811 26652 37099 Face 74195 1 37100 36179 Face 74196 1 30746 37100 Face 74197 2496 37101 38230 Face 74198 2496 25008 37101 Face 74199 3534 37102 44667 Face 74200 3534 7366 37102 Face 74201 2832 37103 5884 Face 74202 2832 30562 37103 Face 74203 8904 37104 15422 Face 74204 8904 24451 37104 Face 74205 13182 37105 899 Face 74206 13182 24271 37105 Face 74207 10033 37106 14594 Face 74208 10033 7531 37106 Face 74209 17299 37107 45007 Face 74210 17299 4676 37107 Face 74211 15103 37108 26872 Face 74212 15103 18396 37108 Face 74213 6332 37109 27577 Face 74214 6332 40054 37109 Face 74215 41629 37110 49112 Face 74216 41629 12421 37110 Face 74217 35407 37111 1653 Face 74218 35407 39427 37111 Face 74219 6267 37112 17974 Face 74220 37352 49978 37112 Face 74221 18736 37113 17028 Face 74222 18736 24045 37113 Face 74223 42039 37114 24301 Face 74224 14486 31169 37114 Face 74225 16760 37115 11764 Face 74226 16760 4365 37115 Face 74227 13543 37116 39376 Face 74228 13543 32254 37116 Face 74229 37118 37117 36098 Face 74230 1937 8422 37117 Face 74231 1937 37118 34158 Face 74232 1937 37117 37118 Face 74233 37121 37119 44173 Face 74234 5557 48831 37119 Face 74235 5557 37120 7234 Face 74236 37121 19494 37120 Face 74237 5557 37121 37120 Face 74238 5557 37119 37121 Face 74239 10396 37122 32467 Face 74240 10396 39849 37122 Face 74241 21285 37123 3334 Face 74242 21285 15138 37123 Face 74243 37125 37124 21528 Face 74244 12359 35607 37124 Face 74245 12359 37125 29704 Face 74246 12359 37124 37125 Face 74247 13548 37126 34357 Face 74248 13548 19114 37126 Face 74249 2910 37127 40610 Face 74250 2910 34512 37127 Face 74251 11923 37128 4311 Face 74252 37336 6714 37128 Face 74253 13382 37129 36575 Face 74254 13382 9387 37129 Face 74255 46880 37130 18419 Face 74256 13237 1352 37130 Face 74257 12967 37131 44671 Face 74258 12967 15496 37131 Face 74259 20946 37132 35282 Face 74260 20946 15939 37132 Face 74261 974 37133 25063 Face 74262 974 46020 37133 Face 74263 608 37134 13265 Face 74264 608 20712 37134 Face 74265 31579 37135 46836 Face 74266 45105 29677 37135 Face 74267 30447 37136 39541 Face 74268 30447 9532 37136 Face 74269 802 37137 35418 Face 74270 37138 46035 37137 Face 74271 802 37138 37137 Face 74272 40435 36915 37138 Face 74273 37834 37139 9869 Face 74274 37833 43873 37139 Face 74275 12589 37140 48618 Face 74276 12589 15395 37140 Face 74277 9185 37141 27366 Face 74278 9185 16085 37141 Face 74279 5062 37142 19822 Face 74280 5062 22652 37142 Face 74281 349 37143 20516 Face 74282 349 27433 37143 Face 74283 22735 37144 33077 Face 74284 49528 42830 37144 Face 74285 136 37145 6034 Face 74286 136 23303 37145 Face 74287 15938 37146 43931 Face 74288 15938 5315 37146 Face 74289 2980 46896 5133 Face 74290 2980 19396 37147 Face 74291 23193 37148 12792 Face 74292 23193 33198 37148 Face 74293 9104 37149 26535 Face 74294 9104 33919 37149 Face 74295 100 37150 16303 Face 74296 100 27913 37150 Face 74297 5121 37151 34408 Face 74298 5121 38592 37151 Face 74299 3545 37152 8045 Face 74300 3545 20447 37152 Face 74301 21466 47403 29917 Face 74302 21466 32107 37153 Face 74303 18921 37154 9679 Face 74304 18921 7118 37154 Face 74305 226 37155 36021 Face 74306 226 31035 37155 Face 74307 6088 37156 35863 Face 74308 6088 36109 37156 Face 74309 13119 37157 26217 Face 74310 13119 22781 37157 Face 74311 17135 37158 20682 Face 74312 17135 35978 37158 Face 74313 3420 37159 23693 Face 74314 3420 30450 37159 Face 74315 49347 37160 1040 Face 74316 9689 4751 37160 Face 74317 23062 37161 4176 Face 74318 23062 725 37161 Face 74319 46189 37162 34245 Face 74320 4176 37161 37162 Face 74321 9192 37163 26388 Face 74322 9192 46056 37163 Face 74323 18054 37164 39141 Face 74324 18054 1346 37164 Face 74325 4310 37166 37496 Face 74326 4310 22102 37165 Face 74327 37165 37166 4310 Face 74328 37165 37495 37166 Face 74329 13428 37167 42521 Face 74330 13428 13853 37167 Face 74331 989 37168 25465 Face 74332 989 13737 37168 Face 74333 10170 37169 44287 Face 74334 10170 3336 37169 Face 74335 2509 37170 39330 Face 74336 37171 328 37170 Face 74337 2509 37171 37170 Face 74338 2509 13073 37171 Face 74339 1376 37172 25953 Face 74340 43175 25671 37172 Face 74341 2547 37173 16954 Face 74342 2547 41611 37173 Face 74343 2866 37174 28762 Face 74344 2866 24164 37174 Face 74345 14310 37175 25462 Face 74346 14310 20592 37175 Face 74347 16080 37176 26776 Face 74348 16080 42018 37176 Face 74349 812 37177 27194 Face 74350 812 35109 37177 Face 74351 9863 37178 34771 Face 74352 9863 26929 37178 Face 74353 9505 37179 17684 Face 74354 9505 11663 37179 Face 74355 15426 37180 16919 Face 74356 15426 47217 37180 Face 74357 9073 37181 1827 Face 74358 9073 14307 37181 Face 74359 11400 37182 9126 Face 74360 11400 3754 37182 Face 74361 480 37183 25346 Face 74362 37184 10674 37183 Face 74363 480 37184 37183 Face 74364 480 18333 37184 Face 74365 4988 37185 42907 Face 74366 4988 7473 37185 Face 74367 4988 37186 21696 Face 74368 4988 46174 37186 Face 74369 14497 37187 26188 Face 74370 14497 11341 37187 Face 74371 9043 37188 23312 Face 74372 9043 9577 37188 Face 74373 9646 37189 23826 Face 74374 9646 1908 37189 Face 74375 15213 37190 10738 Face 74376 15213 28696 37190 Face 74377 37192 37191 3450 Face 74378 41530 8281 37191 Face 74379 767 37192 31752 Face 74380 767 37191 37192 Face 74381 18266 37193 2063 Face 74382 18266 35035 37193 Face 74383 26651 37194 18533 Face 74384 26651 44314 37194 Face 74385 16772 37195 27459 Face 74386 16772 39184 37195 Face 74387 5161 37196 9994 Face 74388 5161 27730 37196 Face 74389 16015 37197 42992 Face 74390 16015 5126 37197 Face 74391 7082 37198 3003 Face 74392 7082 9761 37198 Face 74393 5173 37199 16873 Face 74394 5173 17692 37199 Face 74395 7220 37200 40901 Face 74396 7220 46891 37200 Face 74397 1179 37201 31204 Face 74398 1179 17019 37201 Face 74399 7319 37202 29151 Face 74400 7319 26530 37202 Face 74401 8430 37203 35069 Face 74402 8430 21613 37203 Face 74403 28821 37204 12293 Face 74404 28821 29238 37204 Face 74405 994 37205 22076 Face 74406 994 19014 37205 Face 74407 20558 37206 20847 Face 74408 20558 5363 37206 Face 74409 15413 37207 2315 Face 74410 15413 2661 37207 Face 74411 34582 37208 44013 Face 74412 34582 35668 37208 Face 74413 12507 37209 31496 Face 74414 12507 11528 37209 Face 74415 690 37210 30587 Face 74416 690 22563 37210 Face 74417 4016 37211 36655 Face 74418 4016 34477 37211 Face 74419 17272 37212 21985 Face 74420 38490 4144 37212 Face 74421 24048 37213 2350 Face 74422 24048 12148 37213 Face 74423 35260 37214 19392 Face 74424 35260 31033 37214 Face 74425 1263 37215 9490 Face 74426 1263 6083 37215 Face 74427 13369 37216 8752 Face 74428 13369 3137 37216 Face 74429 37218 37217 17702 Face 74430 48691 17615 37217 Face 74431 6400 37218 32383 Face 74432 6400 37217 37218 Face 74433 1129 37219 39304 Face 74434 38043 15182 37219 Face 74435 1548 37220 17263 Face 74436 1548 24591 37220 Face 74437 16586 37221 909 Face 74438 16586 42634 37221 Face 74439 12769 37222 26628 Face 74440 12769 33072 37222 Face 74441 15718 37223 6639 Face 74442 15718 41661 37223 Face 74443 12036 37224 488 Face 74444 12036 4793 37224 Face 74445 21564 37225 36791 Face 74446 21564 7658 37225 Face 74447 16007 37226 25381 Face 74448 16007 15000 37226 Face 74449 26606 37227 21123 Face 74450 26606 16302 37227 Face 74451 14659 37228 47294 Face 74452 14659 21413 37228 Face 74453 4229 37229 42449 Face 74454 4229 20998 37229 Face 74455 5647 37230 4398 Face 74456 5647 15105 37230 Face 74457 17724 37231 47030 Face 74458 17724 12771 37231 Face 74459 12034 37232 9851 Face 74460 12034 43803 37232 Face 74461 29858 37233 22110 Face 74462 29858 30811 37233 Face 74463 23135 37234 3655 Face 74464 23135 48474 37234 Face 74465 2364 37235 20588 Face 74466 2364 16416 37235 Face 74467 11128 37236 178 Face 74468 11128 22072 37236 Face 74469 16541 37237 16542 Face 74470 16541 25337 37237 Face 74471 16504 37238 21334 Face 74472 16504 24487 37238 Face 74473 26674 37239 30814 Face 74474 26674 22575 37239 Face 74475 26882 37240 21203 Face 74476 26882 42293 37240 Face 74477 455 37241 10965 Face 74478 455 11342 37241 Face 74479 2843 37242 37067 Face 74480 40867 11373 37242 Face 74481 6734 37243 34230 Face 74482 6734 41533 37243 Face 74483 17332 37244 38061 Face 74484 17332 1505 37244 Face 74485 13394 37245 29452 Face 74486 13394 47782 37245 Face 74487 905 37246 41323 Face 74488 905 33001 37246 Face 74489 26520 37247 286 Face 74490 26520 8770 37247 Face 74491 4292 37248 14117 Face 74492 4292 27952 37248 Face 74493 13338 37249 27372 Face 74494 13338 30294 37249 Face 74495 4552 37250 30482 Face 74496 4552 8457 37250 Face 74497 18120 37251 32776 Face 74498 18120 27232 37251 Face 74499 44832 37252 3612 Face 74500 269 10690 37252 Face 74501 37254 37253 36003 Face 74502 37254 22612 37253 Face 74503 6225 37254 36003 Face 74504 6225 26212 37254 Face 74505 46027 37255 10900 Face 74506 13460 4035 37255 Face 74507 26198 37256 12876 Face 74508 26198 22563 37256 Face 74509 13046 37257 17742 Face 74510 13046 11153 37257 Face 74511 37259 37258 16023 Face 74512 37260 28832 37258 Face 74513 8056 37259 16023 Face 74514 37260 37258 37259 Face 74515 8056 37260 37259 Face 74516 8056 28230 37260 Face 74517 40124 44050 36562 Face 74518 40123 11170 37261 Face 74519 13875 37262 27273 Face 74520 13875 18376 37262 Face 74521 46182 37263 3459 Face 74522 37264 30321 37263 Face 74523 11540 37264 37263 Face 74524 11540 42941 37264 Face 74525 12827 37265 38266 Face 74526 12827 18785 37265 Face 74527 20440 37266 36751 Face 74528 20440 24316 37266 Face 74529 17442 37267 3755 Face 74530 45097 27805 37267 Face 74531 22478 37268 25169 Face 74532 22478 24153 37268 Face 74533 10724 37269 28356 Face 74534 10724 13759 37269 Face 74535 2237 37270 48544 Face 74536 2237 28483 37270 Face 74537 7948 37271 42842 Face 74538 7948 23758 37271 Face 74539 7727 37272 38509 Face 74540 7727 44261 37272 Face 74541 3274 37273 19282 Face 74542 37274 36045 37273 Face 74543 3274 37274 37273 Face 74544 3274 43183 37274 Face 74545 4902 37275 24193 Face 74546 4902 17614 37275 Face 74547 616 37276 12862 Face 74548 616 38967 37276 Face 74549 616 37277 38967 Face 74550 616 27759 37277 Face 74551 44987 37278 29744 Face 74552 44987 28521 37278 Face 74553 3594 37279 14686 Face 74554 3594 27908 37279 Face 74555 23234 37280 23421 Face 74556 23234 21173 37280 Face 74557 6089 37281 1224 Face 74558 6089 36204 37281 Face 74559 6276 37282 11736 Face 74560 6276 43957 37282 Face 74561 3085 37283 526 Face 74562 3085 24591 37283 Face 74563 12337 37284 45085 Face 74564 12337 5763 37284 Face 74565 1668 37285 41706 Face 74566 1668 19063 37285 Face 74567 19410 37286 45112 Face 74568 19410 46886 37286 Face 74569 26455 37287 17057 Face 74570 26455 1303 37287 Face 74571 8197 37288 14831 Face 74572 8197 46194 37288 Face 74573 10103 37289 10862 Face 74574 10103 19937 37289 Face 74575 14578 37290 2746 Face 74576 14578 3572 37290 Face 74577 2346 37291 5608 Face 74578 2346 20871 37291 Face 74579 6846 37292 48390 Face 74580 6846 31937 37292 Face 74581 14859 37293 36298 Face 74582 14859 3901 37293 Face 74583 7641 37294 40863 Face 74584 7641 39133 37294 Face 74585 4432 37295 915 Face 74586 46981 16972 37295 Face 74587 26112 37296 4375 Face 74588 26112 18865 37296 Face 74589 632 49636 28408 Face 74590 44130 23658 37297 Face 74591 42940 37298 4579 Face 74592 2454 10207 37298 Face 74593 11623 37299 24331 Face 74594 11623 36572 37299 Face 74595 11325 37300 21440 Face 74596 11325 31459 37300 Face 74597 13661 37301 25643 Face 74598 13661 48659 37301 Face 74599 12534 37302 35414 Face 74600 12534 8068 37302 Face 74601 9464 37303 10799 Face 74602 9464 39129 37303 Face 74603 37305 37304 28318 Face 74604 15846 20309 37304 Face 74605 15846 37305 21915 Face 74606 15846 37304 37305 Face 74607 46597 37306 24888 Face 74608 9616 26483 37306 Face 74609 7070 37307 47181 Face 74610 7070 49109 37307 Face 74611 9264 37308 44432 Face 74612 38461 36865 37308 Face 74613 4168 37309 31156 Face 74614 4168 2418 37309 Face 74615 10468 37310 31471 Face 74616 10468 18004 37310 Face 74617 4760 37311 43891 Face 74618 4760 14752 37311 Face 74619 46977 37312 4737 Face 74620 2267 27057 37312 Face 74621 36231 37313 44183 Face 74622 36231 22130 37313 Face 74623 9878 37314 4174 Face 74624 43346 5242 37314 Face 74625 48126 37315 34220 Face 74626 7956 33654 37315 Face 74627 11580 37316 21949 Face 74628 11580 21153 37316 Face 74629 4800 37317 36219 Face 74630 4800 35413 37317 Face 74631 9157 37318 6963 Face 74632 9157 17701 37318 Face 74633 11179 37319 25214 Face 74634 11179 26072 37319 Face 74635 9084 37320 18065 Face 74636 9084 18974 37320 Face 74637 4569 37321 28011 Face 74638 4569 21075 37321 Face 74639 2485 37322 24499 Face 74640 2485 6104 37322 Face 74641 26287 37323 11071 Face 74642 26287 17121 37323 Face 74643 13943 37324 33010 Face 74644 13943 31879 37324 Face 74645 5284 37325 43948 Face 74646 48876 3318 37325 Face 74647 5539 37326 33527 Face 74648 5539 14165 37326 Face 74649 6127 37327 5680 Face 74650 37328 27699 37327 Face 74651 6127 37328 37327 Face 74652 6127 23766 37328 Face 74653 13509 37329 9824 Face 74654 13509 8996 37329 Face 74655 6664 37330 11239 Face 74656 6664 46698 37330 Face 74657 15457 37331 15458 Face 74658 15457 40404 37331 Face 74659 42116 37332 6313 Face 74660 20166 5023 37332 Face 74661 2335 37333 36833 Face 74662 2335 39434 37333 Face 74663 20955 37334 2286 Face 74664 20955 22732 37334 Face 74665 11467 37335 30872 Face 74666 11467 17556 37335 Face 74667 11923 37336 37128 Face 74668 11923 13630 37336 Face 74669 8556 37337 22792 Face 74670 8556 5829 37337 Face 74671 14838 37338 36435 Face 74672 44285 47147 37338 Face 74673 37340 37339 6691 Face 74674 29476 42725 37339 Face 74675 29476 37340 34411 Face 74676 29476 37339 37340 Face 74677 6668 37341 40231 Face 74678 6668 23574 37341 Face 74679 14419 37342 40614 Face 74680 37343 14420 37342 Face 74681 14419 37343 37342 Face 74682 14419 42207 37343 Face 74683 17265 37344 49350 Face 74684 17265 35210 37344 Face 74685 37346 37345 28659 Face 74686 37346 31378 37345 Face 74687 8856 37346 18652 Face 74688 8856 31378 37346 Face 74689 46912 37347 30704 Face 74690 46912 19936 37347 Face 74691 37349 37348 7121 Face 74692 10189 25740 37348 Face 74693 10189 37349 5221 Face 74694 10189 37348 37349 Face 74695 38254 37350 21966 Face 74696 3774 22603 37350 Face 74697 23843 37351 19006 Face 74698 23843 11650 37351 Face 74699 6267 37352 37112 Face 74700 6267 23991 37352 Face 74701 9372 37353 41601 Face 74702 9372 23119 37353 Face 74703 21049 37354 6580 Face 74704 21049 8304 37354 Face 74705 40076 37355 21310 Face 74706 10320 20687 37355 Face 74707 4884 37356 14715 Face 74708 4884 29895 37356 Face 74709 6197 37357 20630 Face 74710 44938 20490 37357 Face 74711 11575 37358 32943 Face 74712 11575 29318 37358 Face 74713 3790 37359 26130 Face 74714 3790 33101 37359 Face 74715 4343 37360 45465 Face 74716 4343 30642 37360 Face 74717 327 37361 6652 Face 74718 327 43299 37361 Face 74719 11061 37362 30438 Face 74720 48970 40281 37362 Face 74721 8412 37363 39533 Face 74722 8412 11744 37363 Face 74723 20587 37364 29637 Face 74724 20587 12817 37364 Face 74725 17964 37365 6262 Face 74726 17964 28509 37365 Face 74727 14635 37366 389 Face 74728 14635 44116 37366 Face 74729 21456 37367 717 Face 74730 21456 34877 37367 Face 74731 2149 37368 24392 Face 74732 2149 39639 37368 Face 74733 26601 37369 38786 Face 74734 26601 15162 37369 Face 74735 9429 37370 2907 Face 74736 9429 25668 37370 Face 74737 1495 37371 11700 Face 74738 1495 12679 37371 Face 74739 15955 37372 23188 Face 74740 15955 27597 37372 Face 74741 5981 37373 25569 Face 74742 5981 17179 37373 Face 74743 6679 46762 18620 Face 74744 6679 2338 37374 Face 74745 6790 37375 10497 Face 74746 6790 33383 37375 Face 74747 14211 37376 17132 Face 74748 14211 5974 37376 Face 74749 3197 37377 26999 Face 74750 3197 10153 37377 Face 74751 2652 37378 9404 Face 74752 2652 46383 37378 Face 74753 42348 37379 7820 Face 74754 44183 37313 37379 Face 74755 14938 37380 32531 Face 74756 14938 35715 37380 Face 74757 24370 37381 36284 Face 74758 24370 8176 37381 Face 74759 37902 47872 14585 Face 74760 11084 49111 47872 Face 74761 42571 37383 335 Face 74762 11061 41466 37383 Face 74763 14769 37384 35280 Face 74764 14769 23824 37384 Face 74765 1017 37385 43540 Face 74766 1017 13558 37385 Face 74767 48655 37386 6540 Face 74768 37387 18149 49038 Face 74769 45534 37387 37386 Face 74770 45534 26348 37387 Face 74771 10286 37388 9049 Face 74772 10286 16844 37388 Face 74773 16637 37389 29636 Face 74774 16637 13281 37389 Face 74775 4359 37390 47346 Face 74776 4359 35371 37390 Face 74777 283 37391 31233 Face 74778 283 14645 37391 Face 74779 15884 37392 7434 Face 74780 15884 24018 37392 Face 74781 14796 37393 35374 Face 74782 14796 39561 37393 Face 74783 41856 37394 16133 Face 74784 13511 15425 37394 Face 74785 150 37395 49675 Face 74786 150 18245 37395 Face 74787 7041 37396 24912 Face 74788 7041 15562 37396 Face 74789 4868 37397 26775 Face 74790 4868 27198 37397 Face 74791 13682 37398 23563 Face 74792 13682 19759 37398 Face 74793 37400 37399 23248 Face 74794 6767 6768 37399 Face 74795 6767 37400 17076 Face 74796 6767 37399 37400 Face 74797 5195 37401 15033 Face 74798 5195 29574 37401 Face 74799 15769 37402 586 Face 74800 15769 18047 37402 Face 74801 15611 37403 32523 Face 74802 15611 5055 37403 Face 74803 4561 37404 24661 Face 74804 37405 27360 37404 Face 74805 4561 37405 37404 Face 74806 41886 1710 37405 Face 74807 11343 37406 30966 Face 74808 11343 33616 37406 Face 74809 13780 37407 31589 Face 74810 13780 19253 37407 Face 74811 41935 37408 25938 Face 74812 13549 31350 37408 Face 74813 5415 37409 38676 Face 74814 5415 47535 37409 Face 74815 37826 37410 44349 Face 74816 23486 49364 37410 Face 74817 40345 37411 24136 Face 74818 40345 29992 37411 Face 74819 8166 37412 7244 Face 74820 8166 44801 37412 Face 74821 4498 37413 20268 Face 74822 4498 24767 37413 Face 74823 19327 37414 14935 Face 74824 19327 36499 37414 Face 74825 5065 37415 11533 Face 74826 5065 20913 37415 Face 74827 46864 37416 25511 Face 74828 46864 19070 37416 Face 74829 4969 37417 35718 Face 74830 4969 15857 37417 Face 74831 22100 37418 4656 Face 74832 22100 17403 37418 Face 74833 8445 37419 3956 Face 74834 8445 18793 37419 Face 74835 8948 37420 33355 Face 74836 8948 3788 37420 Face 74837 21847 37421 18756 Face 74838 21847 4167 37421 Face 74839 17186 37422 29875 Face 74840 17186 18926 37422 Face 74841 2857 37423 48664 Face 74842 2857 18162 37423 Face 74843 15864 37424 35746 Face 74844 15864 9875 37424 Face 74845 15864 37425 20164 Face 74846 15864 35746 37425 Face 74847 9180 37426 9709 Face 74848 37427 46961 37426 Face 74849 9180 37427 37426 Face 74850 9180 2682 37427 Face 74851 29590 37428 18201 Face 74852 29590 26011 37428 Face 74853 28617 37429 26851 Face 74854 28617 21044 37429 Face 74855 6473 37430 19637 Face 74856 6473 35090 37430 Face 74857 11879 37431 12247 Face 74858 11879 30306 37431 Face 74859 15903 37432 48536 Face 74860 44681 8188 37432 Face 74861 8845 37433 19571 Face 74862 8845 10199 37433 Face 74863 26516 37434 33271 Face 74864 26516 7665 37434 Face 74865 6800 37435 27632 Face 74866 37436 14175 37435 Face 74867 37437 37436 37435 Face 74868 37437 25596 37436 Face 74869 6800 37437 37435 Face 74870 6800 25596 37437 Face 74871 13949 37438 2707 Face 74872 13949 37569 37438 Face 74873 19585 37439 9067 Face 74874 19585 24265 37439 Face 74875 27311 37440 36684 Face 74876 27311 24486 37440 Face 74877 7988 37441 15550 Face 74878 7988 35097 37441 Face 74879 3279 37442 36297 Face 74880 3279 23603 41615 Face 74881 3279 37443 26445 Face 74882 3279 2754 37443 Face 74883 17389 37444 45803 Face 74884 17389 22597 37444 Face 74885 30109 37445 16201 Face 74886 30109 31605 37445 Face 74887 18933 37446 18467 Face 74888 18933 29647 37446 Face 74889 13606 37447 28860 Face 74890 46969 12582 37447 Face 74891 3771 37448 24694 Face 74892 3771 42241 37448 Face 74893 15538 37449 22515 Face 74894 15538 12790 37449 Face 74895 11547 37450 25107 Face 74896 11547 18170 37450 Face 74897 554 37451 26585 Face 74898 554 6764 37451 Face 74899 5933 37452 9928 Face 74900 5933 8055 37452 Face 74901 19736 37453 46286 Face 74902 19736 12926 37453 Face 74903 37455 37454 32649 Face 74904 37455 18293 37454 Face 74905 4842 37455 32649 Face 74906 47047 9494 37455 Face 74907 28049 37456 10302 Face 74908 28049 17559 37456 Face 74909 8045 37457 30625 Face 74910 8045 16014 37457 Face 74911 3958 37458 22438 Face 74912 3958 13389 37458 Face 74913 1720 37459 21164 Face 74914 1720 47580 37459 Face 74915 9600 37460 16537 Face 74916 9600 19394 37460 Face 74917 19049 37461 44456 Face 74918 19049 31464 37461 Face 74919 16132 37462 3586 Face 74920 16132 49982 37462 Face 74921 7262 37463 34122 Face 74922 7262 35454 37463 Face 74923 15916 37464 14567 Face 74924 15916 7157 37464 Face 74925 47262 37465 33667 Face 74926 35775 27452 37465 Face 74927 6058 37466 48190 Face 74928 6058 38904 37466 Face 74929 20906 37467 15309 Face 74930 20906 27697 37467 Face 74931 12347 37468 5615 Face 74932 12347 3239 37468 Face 74933 13249 37469 11163 Face 74934 13249 32825 37469 Face 74935 4614 37470 12725 Face 74936 4614 48478 37470 Face 74937 4614 37471 40742 Face 74938 4614 38964 37471 Face 74939 6084 37472 10904 Face 74940 6084 24756 37472 Face 74941 14430 37473 20068 Face 74942 14430 2887 37473 Face 74943 39602 37474 25238 Face 74944 48547 35395 37474 Face 74945 26531 37475 36236 Face 74946 26531 17996 37475 Face 74947 1962 37476 16096 Face 74948 1962 20387 37476 Face 74949 14424 37477 9089 Face 74950 44245 5524 37477 Face 74951 14209 48093 14208 Face 74952 14209 48568 37478 Face 74953 15999 37479 8917 Face 74954 40324 11949 37479 Face 74955 3613 37480 10805 Face 74956 3613 33503 37480 Face 74957 1046 37481 20439 Face 74958 1046 13983 37481 Face 74959 6162 37482 27819 Face 74960 41911 1981 37482 Face 74961 6162 37483 37482 Face 74962 6162 20157 37483 Face 74963 16093 37484 41625 Face 74964 16093 448 37484 Face 74965 9709 37485 9180 Face 74966 37486 41860 37485 Face 74967 9709 37486 37485 Face 74968 37487 5424 37486 Face 74969 9709 37487 37486 Face 74970 9709 28022 37487 Face 74971 48704 37488 40712 Face 74972 48704 36118 37488 Face 74973 22672 37489 35167 Face 74974 22672 35842 37489 Face 74975 6421 37490 29846 Face 74976 6421 21749 37490 Face 74977 37492 37491 9998 Face 74978 8551 25121 37491 Face 74979 8551 37492 10727 Face 74980 8551 37491 37492 Face 74981 4576 37493 20333 Face 74982 4576 21340 37493 Face 74983 8040 37494 33970 Face 74984 8040 3158 37494 Face 74985 9321 37495 32817 Face 74986 37496 37166 37495 Face 74987 9321 37496 37495 Face 74988 47798 7068 37496 Face 74989 5629 37497 13824 Face 74990 5629 40947 37497 Face 74991 16317 37498 33892 Face 74992 16317 38289 37498 Face 74993 5024 37499 47756 Face 74994 5024 17814 37499 Face 74995 14555 37500 6823 Face 74996 14555 15852 37500 Face 74997 46626 37501 25965 Face 74998 1890 46484 37501 Face 74999 1890 37502 46484 Face 75000 1890 8592 37502 Face 75001 15499 37503 31039 Face 75002 15499 47004 37503 Face 75003 2240 37504 11890 Face 75004 48200 7304 37504 Face 75005 2240 37505 37504 Face 75006 2240 37732 37505 Face 75007 8035 37506 10585 Face 75008 8035 15571 37506 Face 75009 867 37507 33717 Face 75010 867 23068 37507 Face 75011 7013 37508 31942 Face 75012 7013 25340 37508 Face 75013 23513 37509 14488 Face 75014 23513 32852 37509 Face 75015 4500 37510 39961 Face 75016 37512 31854 37510 Face 75017 37512 37511 27494 Face 75018 4500 34697 37511 Face 75019 4500 37512 37510 Face 75020 4500 37511 37512 Face 75021 9720 37513 33114 Face 75022 41637 20052 37513 Face 75023 24108 37514 12403 Face 75024 24108 26199 37514 Face 75025 48242 37515 35589 Face 75026 1685 48651 37515 Face 75027 40736 37516 3135 Face 75028 24023 40327 37516 Face 75029 30265 37517 3897 Face 75030 30265 25482 37517 Face 75031 44697 37518 16280 Face 75032 7758 42023 37518 Face 75033 14191 37519 4556 Face 75034 14191 4557 37519 Face 75035 40750 37520 3015 Face 75036 20349 16050 37520 Face 75037 39815 37521 8455 Face 75038 12546 31972 37521 Face 75039 3132 37522 39834 Face 75040 45832 36152 37522 Face 75041 13129 37523 20403 Face 75042 13129 46005 37523 Face 75043 824 37524 9860 Face 75044 824 43767 37524 Face 75045 8888 37525 3547 Face 75046 8888 27738 37525 Face 75047 7780 37526 21111 Face 75048 7780 35663 37526 Face 75049 6068 37527 3756 Face 75050 43680 32092 37527 Face 75051 24528 37528 10115 Face 75052 24528 7723 37528 Face 75053 8638 37529 41880 Face 75054 8638 26979 37529 Face 75055 24580 37530 6118 Face 75056 24580 16308 37530 Face 75057 5267 37531 32036 Face 75058 5267 29028 37531 Face 75059 11030 37532 9659 Face 75060 11030 32051 37532 Face 75061 44514 37533 15097 Face 75062 44514 48976 37533 Face 75063 4296 37534 32721 Face 75064 4296 23575 37534 Face 75065 10526 37535 13264 Face 75066 10526 23796 37535 Face 75067 10632 37536 20207 Face 75068 10632 39894 37536 Face 75069 30130 37537 6896 Face 75070 30130 19641 37537 Face 75071 18319 37538 21084 Face 75072 18319 25242 37538 Face 75073 8842 37539 17205 Face 75074 8842 21800 37539 Face 75075 11446 37540 49032 Face 75076 11446 10281 37540 Face 75077 41877 37541 16280 Face 75078 41877 19336 37541 Face 75079 6448 37542 24721 Face 75080 6448 25488 37542 Face 75081 37544 37543 26250 Face 75082 12913 18690 37543 Face 75083 12913 37544 33493 Face 75084 12913 37543 37544 Face 75085 6860 37545 45854 Face 75086 45037 20217 37545 Face 75087 5102 37546 16519 Face 75088 5102 48383 37546 Face 75089 15555 37547 1093 Face 75090 15555 16524 37547 Face 75091 12851 37548 34825 Face 75092 12851 46602 37548 Face 75093 16362 37549 10261 Face 75094 41772 10582 37549 Face 75095 10352 37550 39547 Face 75096 38499 12528 37550 Face 75097 19905 37551 30356 Face 75098 19905 11964 37551 Face 75099 13709 37552 47053 Face 75100 13709 34788 37552 Face 75101 3057 37553 23918 Face 75102 3057 32409 37553 Face 75103 7614 37554 33363 Face 75104 7614 27682 37554 Face 75105 9483 37555 19304 Face 75106 9483 46375 37555 Face 75107 20624 37556 45701 Face 75108 20624 34868 37556 Face 75109 31150 37557 6575 Face 75110 31150 1843 37557 Face 75111 21508 37558 11501 Face 75112 21508 37819 37558 Face 75113 3136 37559 23936 Face 75114 3136 24210 37559 Face 75115 7499 37560 26377 Face 75116 7499 43427 37560 Face 75117 2907 37561 9429 Face 75118 2907 18700 37561 Face 75119 9541 37562 4192 Face 75120 9541 26456 37562 Face 75121 47672 37563 17052 Face 75122 16614 44048 37563 Face 75123 15281 37564 20942 Face 75124 15281 12351 37564 Face 75125 2140 37565 36238 Face 75126 2140 8362 37565 Face 75127 7562 37566 50002 Face 75128 7562 23668 37566 Face 75129 23277 37567 2127 Face 75130 23277 33918 37567 Face 75131 4840 37568 6644 Face 75132 4840 32687 37568 Face 75133 4288 37569 33920 Face 75134 4288 37438 37569 Face 75135 21742 37570 472 Face 75136 21742 11599 37570 Face 75137 5622 37571 25374 Face 75138 5622 23593 37571 Face 75139 37573 37572 7809 Face 75140 16419 30095 37572 Face 75141 16419 37573 23502 Face 75142 16419 37572 37573 Face 75143 19145 37574 35242 Face 75144 19145 3903 37574 Face 75145 34489 37575 419 Face 75146 34489 17714 37575 Face 75147 10924 37576 19965 Face 75148 48400 21960 37576 Face 75149 29025 37577 45260 Face 75150 29025 22748 37577 Face 75151 969 37578 24783 Face 75152 969 46138 37578 Face 75153 16885 37579 19461 Face 75154 16885 31004 37579 Face 75155 8404 37580 35711 Face 75156 8404 42483 37580 Face 75157 20043 37581 8939 Face 75158 37583 24460 37581 Face 75159 37583 37582 42299 Face 75160 20043 34299 37582 Face 75161 20043 37583 37581 Face 75162 20043 37582 37583 Face 75163 15950 37584 22216 Face 75164 15950 6936 37584 Face 75165 1076 37585 6291 Face 75166 40131 17211 37585 Face 75167 16265 37586 6435 Face 75168 16265 47352 37586 Face 75169 13893 37587 29849 Face 75170 13893 15910 37587 Face 75171 13843 37588 10552 Face 75172 13843 6520 37588 Face 75173 8975 37589 29049 Face 75174 8975 251 37589 Face 75175 6296 37590 23180 Face 75176 6296 24211 37590 Face 75177 7285 37591 12898 Face 75178 42233 29081 37591 Face 75179 46158 37592 10345 Face 75180 17099 3461 37592 Face 75181 3072 37593 22788 Face 75182 3072 4778 37593 Face 75183 20027 37594 6525 Face 75184 20027 31908 37594 Face 75185 22252 37595 4125 Face 75186 22252 1568 37595 Face 75187 19017 37596 2106 Face 75188 19017 42828 37596 Face 75189 7769 37597 36294 Face 75190 7769 31781 37597 Face 75191 9232 37598 29271 Face 75192 9232 11779 37598 Face 75193 5105 37599 30777 Face 75194 5105 15594 37599 Face 75195 9833 37600 37661 Face 75196 9833 14870 37600 Face 75197 10225 37601 27826 Face 75198 46685 4708 37601 Face 75199 15792 37602 41596 Face 75200 15792 21863 37602 Face 75201 12778 37603 14469 Face 75202 45517 10254 37603 Face 75203 5090 37604 12543 Face 75204 5090 32142 37604 Face 75205 12872 37605 30387 Face 75206 12872 33383 37605 Face 75207 10581 37606 19120 Face 75208 10581 22359 37606 Face 75209 17580 37607 33312 Face 75210 17580 17152 37607 Face 75211 24111 37608 7528 Face 75212 24111 15026 37608 Face 75213 13578 37609 21740 Face 75214 13578 31258 37609 Face 75215 23994 37610 11811 Face 75216 23994 32179 37610 Face 75217 9122 37611 28711 Face 75218 9122 38806 37611 Face 75219 7979 37612 43130 Face 75220 7979 19065 37612 Face 75221 37972 37613 12840 Face 75222 2268 7650 37613 Face 75223 15296 37614 4609 Face 75224 15296 28780 37614 Face 75225 3536 37615 27887 Face 75226 3536 34652 37615 Face 75227 5801 37616 12044 Face 75228 5801 24534 37616 Face 75229 2274 37617 14140 Face 75230 2274 25767 37617 Face 75231 17422 37618 34264 Face 75232 17422 22547 37618 Face 75233 2720 37619 13624 Face 75234 2720 43303 37619 Face 75235 20772 37620 25112 Face 75236 43265 39566 37620 Face 75237 6955 37621 22381 Face 75238 6955 47808 37621 Face 75239 43300 37622 3618 Face 75240 43300 24104 37622 Face 75241 16951 37623 11438 Face 75242 16951 41114 37623 Face 75243 2403 37624 23939 Face 75244 2403 25175 37624 Face 75245 43562 37625 5289 Face 75246 12637 13841 37625 Face 75247 48941 37626 35491 Face 75248 25751 6535 37626 Face 75249 8566 37627 42530 Face 75250 8566 13004 37627 Face 75251 3656 37628 10460 Face 75252 41730 19795 37628 Face 75253 14031 37629 17163 Face 75254 14031 33810 37629 Face 75255 7619 37630 19566 Face 75256 7619 19768 37630 Face 75257 29723 37631 7179 Face 75258 29723 44306 37631 Face 75259 15587 37632 7761 Face 75260 15587 46009 37632 Face 75261 7772 37633 21429 Face 75262 7772 29566 37633 Face 75263 7144 37634 39822 Face 75264 7144 38298 37634 Face 75265 7144 37635 29897 Face 75266 7144 32097 37635 Face 75267 5338 37636 9041 Face 75268 5338 31974 37636 Face 75269 37638 37637 33330 Face 75270 4356 40836 37637 Face 75271 4356 37638 34262 Face 75272 4356 37637 37638 Face 75273 23564 37639 11802 Face 75274 23564 23563 37639 Face 75275 289 37640 20638 Face 75276 289 33788 37640 Face 75277 14988 37641 34636 Face 75278 14988 14989 37641 Face 75279 3515 37642 38409 Face 75280 3515 21081 37642 Face 75281 12627 37643 35481 Face 75282 12627 35712 37643 Face 75283 8590 37644 31209 Face 75284 8590 35111 37644 Face 75285 10220 48533 1879 Face 75286 10220 42257 37645 Face 75287 3012 37646 12008 Face 75288 3012 12097 37646 Face 75289 48731 37647 7683 Face 75290 6224 18552 37647 Face 75291 17656 37648 38691 Face 75292 17656 13987 37648 Face 75293 13341 37649 14670 Face 75294 13341 34287 37649 Face 75295 522 37650 26845 Face 75296 522 23259 37650 Face 75297 3073 37651 30612 Face 75298 3073 12664 37651 Face 75299 7666 37652 4432 Face 75300 7666 30826 37652 Face 75301 19844 37653 38122 Face 75302 19844 5736 37653 Face 75303 19844 37654 5736 Face 75304 48605 25715 37654 Face 75305 9961 37655 24597 Face 75306 9961 41741 37655 Face 75307 8306 37656 24324 Face 75308 8306 35866 37656 Face 75309 24904 37657 3915 Face 75310 24904 36015 37657 Face 75311 9037 37658 26988 Face 75312 9037 33799 37658 Face 75313 1737 37659 9770 Face 75314 1737 19269 37659 Face 75315 28982 37660 19144 Face 75316 28982 2634 37660 Face 75317 10205 37661 20554 Face 75318 10205 18214 37661 Face 75319 20597 37662 20598 Face 75320 20597 49155 37662 Face 75321 2123 37663 28091 Face 75322 41275 33972 37663 Face 75323 26855 37664 3017 Face 75324 26855 8755 37664 Face 75325 14342 37665 33460 Face 75326 14342 15600 37665 Face 75327 6611 37666 26389 Face 75328 6611 43746 37666 Face 75329 32542 37667 42676 Face 75330 32542 13501 37667 Face 75331 12384 37668 26077 Face 75332 12384 20259 37668 Face 75333 1425 37669 24010 Face 75334 44846 36896 37669 Face 75335 4982 37670 27812 Face 75336 4982 43864 37670 Face 75337 4492 37671 19008 Face 75338 42096 16149 37671 Face 75339 42096 37672 16149 Face 75340 42096 41196 37672 Face 75341 26063 37673 10070 Face 75342 26063 14965 37673 Face 75343 1932 37674 28323 Face 75344 1932 587 37674 Face 75345 37676 37675 21015 Face 75346 37676 31493 37675 Face 75347 44390 37676 24626 Face 75348 3389 31493 37676 Face 75349 608 37677 35811 Face 75350 608 34045 37677 Face 75351 3255 37678 13357 Face 75352 3255 10896 37678 Face 75353 3925 37679 21928 Face 75354 3925 23666 37679 Face 75355 15055 37680 12190 Face 75356 15055 36336 37680 Face 75357 15002 37681 47853 Face 75358 15002 35423 37681 Face 75359 17479 37682 10150 Face 75360 17479 26494 37682 Face 75361 7007 37683 10720 Face 75362 7007 734 37683 Face 75363 18572 37684 10578 Face 75364 18572 946 37684 Face 75365 18825 37685 2834 Face 75366 18825 36028 37685 Face 75367 8871 37686 28861 Face 75368 8871 38320 37686 Face 75369 18306 37687 43523 Face 75370 18306 36860 37687 Face 75371 17016 37688 32088 Face 75372 17016 48308 37688 Face 75373 1981 37689 37482 Face 75374 1981 39795 37689 Face 75375 23345 37690 10730 Face 75376 23345 27900 37690 Face 75377 4213 37691 35041 Face 75378 4213 31650 37691 Face 75379 14644 37692 25894 Face 75380 14644 31992 37692 Face 75381 10344 37693 41605 Face 75382 10344 48375 37693 Face 75383 13609 37694 594 Face 75384 13609 40360 37694 Face 75385 13609 37695 40360 Face 75386 13609 38134 37695 Face 75387 558 37696 28142 Face 75388 558 16522 37696 Face 75389 24050 37697 45727 Face 75390 24050 23413 37697 Face 75391 18198 37698 44949 Face 75392 40707 45255 37698 Face 75393 6153 37699 724 Face 75394 6153 21592 37699 Face 75395 15965 37700 12998 Face 75396 15965 24344 37700 Face 75397 20979 37701 7724 Face 75398 20979 32108 37701 Face 75399 1662 37702 7781 Face 75400 1662 25744 37702 Face 75401 3218 37703 23667 Face 75402 3218 1897 37703 Face 75403 13162 37704 33540 Face 75404 13162 9548 37704 Face 75405 22442 37705 14214 Face 75406 22442 29216 37705 Face 75407 17334 37706 19615 Face 75408 17334 24430 37706 Face 75409 5791 37707 14834 Face 75410 5791 17376 37707 Face 75411 1571 37708 14612 Face 75412 1571 43368 37708 Face 75413 29266 37709 10755 Face 75414 29266 27223 37709 Face 75415 2791 37710 6795 Face 75416 2791 32677 37710 Face 75417 16354 37711 11309 Face 75418 16354 18647 37711 Face 75419 26924 37712 1663 Face 75420 26924 10459 37712 Face 75421 8103 37713 30597 Face 75422 8103 32912 37713 Face 75423 9488 37714 9446 Face 75424 9488 2372 37714 Face 75425 881 37715 17958 Face 75426 881 46168 37715 Face 75427 13294 37716 31669 Face 75428 13294 25077 37716 Face 75429 8242 37717 18699 Face 75430 8242 1336 37717 Face 75431 14 37718 26484 Face 75432 45860 19326 37718 Face 75433 2077 37719 28598 Face 75434 2077 30929 37719 Face 75435 4463 37720 47150 Face 75436 4463 30273 37720 Face 75437 6739 37721 36520 Face 75438 6739 23313 37721 Face 75439 16399 37722 45036 Face 75440 16399 7164 37722 Face 75441 15720 37723 43917 Face 75442 15720 24514 37723 Face 75443 23750 37724 49570 Face 75444 23750 13857 37724 Face 75445 14113 37725 35791 Face 75446 14113 25244 37725 Face 75447 5758 37726 21227 Face 75448 5758 20884 37726 Face 75449 9594 37727 45485 Face 75450 9594 29553 43850 Face 75451 37729 37728 31388 Face 75452 8205 21389 37728 Face 75453 8205 37729 45136 Face 75454 37730 37728 37729 Face 75455 8205 37730 37729 Face 75456 8205 37728 37730 Face 75457 9967 37731 36781 Face 75458 9967 31858 37731 Face 75459 13001 37732 2240 Face 75460 13001 3521 37732 Face 75461 15564 37733 15563 Face 75462 37734 40413 37733 Face 75463 15564 37734 37733 Face 75464 15564 21443 37734 Face 75465 4643 37735 19895 Face 75466 4643 24805 37735 Face 75467 20653 37736 8636 Face 75468 20653 18418 37736 Face 75469 3895 37737 35677 Face 75470 3895 2491 37737 Face 75471 6015 37738 28730 Face 75472 6015 30812 37738 Face 75473 13879 37739 30053 Face 75474 13879 4273 37739 Face 75475 37741 37740 27025 Face 75476 6785 24769 37740 Face 75477 6785 37741 15465 Face 75478 6785 37740 37741 Face 75479 1224 37742 6089 Face 75480 1224 19351 37742 Face 75481 16463 37743 24571 Face 75482 16463 15582 37743 Face 75483 20664 37744 23864 Face 75484 20664 29114 37744 Face 75485 16359 37745 22300 Face 75486 16359 31524 37745 Face 75487 3116 37746 23020 Face 75488 3116 9562 37746 Face 75489 18594 37747 34857 Face 75490 18594 1210 37747 Face 75491 24624 37748 4477 Face 75492 46915 14456 37748 Face 75493 11607 37749 13529 Face 75494 11607 39502 37749 Face 75495 2537 37750 14176 Face 75496 2537 41160 37750 Face 75497 13068 37751 7314 Face 75498 13068 28560 37751 Face 75499 14231 37752 4249 Face 75500 14231 24707 37752 Face 75501 27413 37753 8553 Face 75502 27413 18368 37753 Face 75503 3968 37754 27164 Face 75504 47421 27992 37754 Face 75505 37756 37755 545 Face 75506 9836 42183 37755 Face 75507 9836 37756 31937 Face 75508 9836 37755 37756 Face 75509 10817 37757 19655 Face 75510 10817 28945 37757 Face 75511 10558 37758 24318 Face 75512 10558 41947 37758 Face 75513 29166 37759 14872 Face 75514 29166 38611 37759 Face 75515 4068 37760 31392 Face 75516 41000 11585 37760 Face 75517 4605 37761 21335 Face 75518 4605 25540 37761 Face 75519 11582 37762 27576 Face 75520 11582 30017 37762 Face 75521 37762 37763 23904 Face 75522 37762 30017 37763 Face 75523 24017 37764 43356 Face 75524 24017 27830 37764 Face 75525 8013 37765 20406 Face 75526 8013 34174 37765 Face 75527 1047 37766 15997 Face 75528 1047 8367 37766 Face 75529 26166 37767 11478 Face 75530 26166 6047 37767 Face 75531 486 37768 39716 Face 75532 486 20897 37768 Face 75533 20574 37769 36229 Face 75534 20574 38695 37769 Face 75535 6827 37770 14410 Face 75536 6827 41679 37770 Face 75537 40272 37771 30876 Face 75538 40272 22256 37771 Face 75539 6255 37772 16038 Face 75540 6255 17226 37772 Face 75541 15659 37773 36025 Face 75542 15659 3481 37773 Face 75543 19766 37774 32234 Face 75544 19766 29942 37774 Face 75545 19558 37775 11227 Face 75546 19558 1273 37775 Face 75547 3842 37776 33566 Face 75548 3842 32967 37776 Face 75549 3842 37777 31910 Face 75550 3842 24802 48044 Face 75551 2633 37778 25634 Face 75552 2633 13969 37778 Face 75553 8982 37779 32206 Face 75554 8982 19735 37779 Face 75555 15861 37780 41466 Face 75556 15861 5916 37780 Face 75557 9634 37781 6649 Face 75558 9634 11098 37781 Face 75559 4011 37782 10826 Face 75560 4011 47945 37782 Face 75561 5716 37783 18807 Face 75562 5716 32509 37783 Face 75563 44104 37784 32543 Face 75564 44104 31479 37784 Face 75565 37786 48450 21236 Face 75566 8329 35201 37785 Face 75567 8329 37786 36480 Face 75568 8329 37785 37786 Face 75569 4922 37787 38211 Face 75570 4922 2510 37787 Face 75571 45895 37788 13977 Face 75572 45895 5794 37788 Face 75573 290 37789 32794 Face 75574 290 34487 37789 Face 75575 4564 37790 37041 Face 75576 4564 21397 37790 Face 75577 23125 37791 18239 Face 75578 23125 34572 37791 Face 75579 10088 37792 13121 Face 75580 10088 20310 37792 Face 75581 10088 37793 25082 Face 75582 10088 23795 37793 Face 75583 914 37794 14238 Face 75584 48599 17193 37794 Face 75585 37796 37795 10423 Face 75586 49899 32825 37795 Face 75587 1711 37796 28137 Face 75588 1711 37795 37796 Face 75589 2283 37797 17208 Face 75590 2283 16216 37797 Face 75591 1460 37798 13371 Face 75592 1460 8607 37798 Face 75593 7968 37799 23920 Face 75594 7968 17103 37799 Face 75595 37801 37800 25090 Face 75596 37803 27709 37800 Face 75597 37802 37801 11524 Face 75598 37802 37800 37801 Face 75599 1111 37802 11524 Face 75600 37803 37800 37802 Face 75601 1111 37803 37802 Face 75602 1111 33096 37803 Face 75603 6090 37804 16096 Face 75604 6090 17949 37804 Face 75605 10156 37805 6230 Face 75606 10156 33902 37805 Face 75607 47059 37806 17649 Face 75608 39092 22224 37806 Face 75609 319 37807 9210 Face 75610 319 33571 37807 Face 75611 21080 37808 9083 Face 75612 21080 27553 37808 Face 75613 22986 37809 44310 Face 75614 22986 7381 37809 Face 75615 10036 37810 21085 Face 75616 10036 5962 37810 Face 75617 5683 37811 35448 Face 75618 5683 34244 37811 Face 75619 43739 37812 18665 Face 75620 7852 32572 37812 Face 75621 19025 37813 5604 Face 75622 19025 733 37813 Face 75623 2802 37814 7079 Face 75624 2802 14273 37814 Face 75625 6055 37815 49650 Face 75626 6055 40573 37815 Face 75627 24965 37816 10505 Face 75628 24965 10588 37816 Face 75629 9346 37817 40921 Face 75630 9346 15830 37817 Face 75631 9346 37818 15830 Face 75632 9346 14934 37818 Face 75633 15803 37819 47020 Face 75634 15803 6294 37819 Face 75635 5741 37820 41425 Face 75636 5741 19907 37820 Face 75637 3042 37821 14133 Face 75638 3042 19911 37821 Face 75639 25362 37822 9713 Face 75640 25362 9714 37822 Face 75641 16658 37823 2076 Face 75642 16658 48190 37823 Face 75643 6272 37824 46113 Face 75644 6272 8008 37824 Face 75645 25834 37825 1848 Face 75646 25834 9448 37825 Face 75647 23486 37826 42894 Face 75648 23486 37410 37826 Face 75649 17062 37827 4159 Face 75650 17062 3289 37827 Face 75651 7494 37828 26210 Face 75652 37829 3217 37828 Face 75653 7494 37829 37828 Face 75654 49739 33095 37829 Face 75655 7119 37830 12931 Face 75656 7119 16155 37830 Face 75657 6341 37831 43455 Face 75658 6341 10452 37831 Face 75659 10298 37832 41452 Face 75660 46847 17313 37832 Face 75661 37834 37833 37139 Face 75662 37834 26449 37833 Face 75663 4157 37834 44426 Face 75664 4157 26449 37834 Face 75665 370 37835 45089 Face 75666 370 10917 37835 Face 75667 20965 37836 17216 Face 75668 20965 22213 37836 Face 75669 15987 37837 10667 Face 75670 15987 21312 37837 Face 75671 2495 37838 39565 Face 75672 2495 21756 37838 Face 75673 8379 37839 33761 Face 75674 46053 21044 37839 Face 75675 19508 37840 47146 Face 75676 19508 32334 37840 Face 75677 20321 37841 5780 Face 75678 42793 48305 37841 Face 75679 9434 37842 35486 Face 75680 9434 44706 37842 Face 75681 5723 37843 30077 Face 75682 40173 11645 37843 Face 75683 7272 37844 18095 Face 75684 7272 7960 37844 Face 75685 9707 37845 43824 Face 75686 9707 39165 37845 Face 75687 8808 37846 26209 Face 75688 8808 9909 37846 Face 75689 23539 37847 13902 Face 75690 23539 35656 37847 Face 75691 23539 37848 35656 Face 75692 23539 32209 37848 Face 75693 20308 37849 19541 Face 75694 20308 8992 48180 Face 75695 8232 37850 43438 Face 75696 8232 19720 37850 Face 75697 46524 37851 20091 Face 75698 37853 26873 37851 Face 75699 37853 37852 26873 Face 75700 3845 31979 37852 Face 75701 46524 37853 37851 Face 75702 3845 37852 37853 Face 75703 22027 37854 4081 Face 75704 22027 41312 37854 Face 75705 6056 37855 14686 Face 75706 6056 8911 37855 Face 75707 15150 37856 36681 Face 75708 15150 6479 37856 Face 75709 11769 37857 19545 Face 75710 37858 33547 37857 Face 75711 11769 37858 37857 Face 75712 11769 18888 37858 Face 75713 10880 37859 27566 Face 75714 10880 21235 37859 Face 75715 10913 37860 8133 Face 75716 10913 28986 37860 Face 75717 9204 37861 3782 Face 75718 9204 22701 37861 Face 75719 37863 37862 41210 Face 75720 8765 2130 37862 Face 75721 8765 37863 45024 Face 75722 8765 37862 37863 Face 75723 34697 37864 9347 Face 75724 34697 4500 37864 Face 75725 26453 37865 9471 Face 75726 26453 1050 37865 Face 75727 2747 37866 19966 Face 75728 2747 4722 37866 Face 75729 2068 37867 43889 Face 75730 2068 43875 37867 Face 75731 12712 37868 25650 Face 75732 12712 5499 37868 Face 75733 18403 37869 15580 Face 75734 18403 43161 37869 Face 75735 2948 37870 42095 Face 75736 49714 11565 43686 Face 75737 7279 37871 15331 Face 75738 7279 43373 37871 Face 75739 16340 37872 20497 Face 75740 16340 1141 37872 Face 75741 37874 37873 19634 Face 75742 37874 18802 37873 Face 75743 38172 37874 19634 Face 75744 1863 4427 37874 Face 75745 48064 37875 24763 Face 75746 8160 33257 37875 Face 75747 30437 37876 26639 Face 75748 30437 3527 37876 Face 75749 17210 37877 28959 Face 75750 17210 6302 37877 Face 75751 14558 37878 28262 Face 75752 14558 13321 37878 Face 75753 29033 37879 3283 Face 75754 29033 32362 37879 Face 75755 36020 37880 25603 Face 75756 36020 26728 37880 Face 75757 19367 37881 11231 Face 75758 19367 37579 37881 Face 75759 37883 37882 3700 Face 75760 19135 15830 37882 Face 75761 19135 37883 35826 Face 75762 19135 37882 37883 Face 75763 17752 37884 9196 Face 75764 17752 36465 37884 Face 75765 28017 37885 3234 Face 75766 28017 4222 37885 Face 75767 5925 37886 29534 Face 75768 5925 47267 37886 Face 75769 14625 37887 4414 Face 75770 14625 3901 37887 Face 75771 7404 37888 41434 Face 75772 7404 19772 37888 Face 75773 32133 37889 21946 Face 75774 32133 45698 37889 Face 75775 7874 37890 46417 Face 75776 7874 42123 37890 Face 75777 2768 37891 29036 Face 75778 2768 24258 37891 Face 75779 4482 37892 6887 Face 75780 4482 18407 37892 Face 75781 540 37893 36812 Face 75782 540 27571 37893 Face 75783 18287 37894 25699 Face 75784 18287 34519 37894 Face 75785 16454 37895 9607 Face 75786 16454 9608 37895 Face 75787 27007 37896 39364 Face 75788 27007 45654 37896 Face 75789 20569 37897 13524 Face 75790 20569 16109 37897 Face 75791 16553 37898 29796 Face 75792 16553 21136 37898 Face 75793 16019 37899 47775 Face 75794 44542 29234 37899 Face 75795 19357 37900 28342 Face 75796 19357 32615 37900 Face 75797 5598 37901 34189 Face 75798 5598 4411 37901 Face 75799 11084 37902 19372 Face 75800 11084 47872 37902 Face 75801 11253 37903 26036 Face 75802 11253 32132 37903 Face 75803 30653 37904 3327 Face 75804 30653 30868 37904 Face 75805 16945 37905 1123 Face 75806 16945 9473 37905 Face 75807 5449 37906 33982 Face 75808 5449 21254 37906 Face 75809 1351 37907 23696 Face 75810 1351 4662 37907 Face 75811 26018 37908 8340 Face 75812 26018 6534 37908 Face 75813 16481 37909 8452 Face 75814 16481 16480 37909 Face 75815 12873 37910 7937 Face 75816 12873 29144 37910 Face 75817 41124 37911 9153 Face 75818 41124 36912 39363 Face 75819 17747 37912 16169 Face 75820 17747 5663 37912 Face 75821 13562 37913 9870 Face 75822 13562 20198 37913 Face 75823 5262 37914 13443 Face 75824 5262 28123 37914 Face 75825 15794 37915 11030 Face 75826 15794 12841 37915 Face 75827 17144 37916 24836 Face 75828 17144 24885 37916 Face 75829 6096 37917 2136 Face 75830 46800 16349 37917 Face 75831 17388 37918 418 Face 75832 17388 6367 37918 Face 75833 9676 37919 4811 Face 75834 9676 47534 37919 Face 75835 5306 37920 10479 Face 75836 5306 44174 37920 Face 75837 13621 37921 48792 Face 75838 13621 47374 37921 Face 75839 3071 37922 10240 Face 75840 3071 3985 37922 Face 75841 10589 37923 12547 Face 75842 10589 3467 37923 Face 75843 20117 37924 8869 Face 75844 39753 27767 37924 Face 75845 45763 37925 22915 Face 75846 7126 48203 37925 Face 75847 8581 37926 28754 Face 75848 8581 46568 37926 Face 75849 8581 37927 17453 Face 75850 8581 28754 37927 Face 75851 22693 37928 39317 Face 75852 22693 44556 37928 Face 75853 531 37929 26601 Face 75854 531 42106 37929 Face 75855 18096 37930 6003 Face 75856 18096 6803 37930 Face 75857 9261 37931 18702 Face 75858 9261 13844 37931 Face 75859 11206 37932 36725 Face 75860 11206 41315 37932 Face 75861 18831 37933 207 Face 75862 18831 40663 37933 Face 75863 8995 37934 44053 Face 75864 8995 6856 37934 Face 75865 4379 37935 7689 Face 75866 4379 8883 37935 Face 75867 37935 37936 7689 Face 75868 37935 8883 37936 Face 75869 3754 37937 37182 Face 75870 3754 41432 37937 Face 75871 11738 37938 10333 Face 75872 11738 44818 37938 Face 75873 23365 37939 24627 Face 75874 23365 44124 37939 Face 75875 12054 44919 1923 Face 75876 12054 20428 37940 Face 75877 10115 37941 23971 Face 75878 10115 37528 37941 Face 75879 37941 37942 21349 Face 75880 37941 14604 37942 Face 75881 15202 37943 9435 Face 75882 15202 13402 37943 Face 75883 18090 37944 48172 Face 75884 18090 25856 37944 Face 75885 15061 37945 2899 Face 75886 15061 29811 37945 Face 75887 4241 37946 30516 Face 75888 4241 48588 37946 Face 75889 768 37947 14261 Face 75890 768 36933 37947 Face 75891 1117 37948 46216 Face 75892 49158 10823 37948 Face 75893 5489 37949 18707 Face 75894 5489 19252 37949 Face 75895 1111 37950 33097 Face 75896 1111 9333 37950 Face 75897 10861 37951 21764 Face 75898 10861 10005 37951 Face 75899 18135 37952 2723 Face 75900 18135 9906 37952 Face 75901 8719 37953 47702 Face 75902 37954 15790 37953 Face 75903 8719 37954 37953 Face 75904 8719 34520 37954 Face 75905 12381 37955 43355 Face 75906 12381 34343 37955 Face 75907 907 37956 47962 Face 75908 907 23281 37956 Face 75909 9101 37957 8753 Face 75910 39544 834 37957 Face 75911 37959 37958 21085 Face 75912 244 2964 37958 Face 75913 244 37959 28621 Face 75914 244 37958 37959 Face 75915 21522 37960 33043 Face 75916 21522 8590 37960 Face 75917 11542 37961 33459 Face 75918 11542 21053 37961 Face 75919 1380 37962 9229 Face 75920 1380 31543 37962 Face 75921 46255 37963 16394 Face 75922 1380 9229 37963 Face 75923 13494 37964 10312 Face 75924 13494 46924 37964 Face 75925 19429 37965 46465 Face 75926 19429 309 37965 Face 75927 14319 37966 48802 Face 75928 14319 49087 37966 Face 75929 2450 37967 26003 Face 75930 2450 10749 37967 Face 75931 3205 37968 34036 Face 75932 3205 24893 37968 Face 75933 23411 37969 38438 Face 75934 23411 10439 37969 Face 75935 16266 37970 29584 Face 75936 40542 28964 37970 Face 75937 13172 37971 23427 Face 75938 13172 25211 37971 Face 75939 2268 37972 15060 Face 75940 2268 37613 37972 Face 75941 1557 37973 38062 Face 75942 1557 20678 37973 Face 75943 29880 37974 27038 Face 75944 29880 28444 37974 Face 75945 18114 37975 9581 Face 75946 18114 18695 37975 Face 75947 6893 37976 25499 Face 75948 6893 20060 37976 Face 75949 3253 37977 13671 Face 75950 3253 43159 37977 Face 75951 6344 37978 26684 Face 75952 6344 12910 37979 Face 75953 37978 37979 37980 Face 75954 37978 6344 37979 Face 75955 3253 37980 37979 Face 75956 3253 29243 37980 Face 75957 2362 37981 16217 Face 75958 2362 41057 37981 Face 75959 7331 37982 23110 Face 75960 7331 16768 37982 Face 75961 5527 37983 24411 Face 75962 5527 25453 37983 Face 75963 46366 37984 19939 Face 75964 46366 25508 37984 Face 75965 22128 37985 7412 Face 75966 22128 40465 37985 Face 75967 37987 37986 21890 Face 75968 12535 32959 37986 Face 75969 12535 37987 15563 Face 75970 12535 37986 37987 Face 75971 7397 37988 6483 Face 75972 7397 12629 37988 Face 75973 19789 37989 8969 Face 75974 19789 33492 37989 Face 75975 19789 37990 5382 Face 75976 19789 47464 37990 Face 75977 33140 37991 11877 Face 75978 33140 46886 37991 Face 75979 40870 37992 18597 Face 75980 3115 35975 37992 Face 75981 46302 37993 28208 Face 75982 1308 18407 37993 Face 75983 4255 37994 47177 Face 75984 4255 22445 37994 Face 75985 4560 37995 21587 Face 75986 4560 34663 37995 Face 75987 15774 37996 26065 Face 75988 15774 12847 37996 Face 75989 15964 37997 2874 Face 75990 15964 19980 37997 Face 75991 15383 44426 37834 Face 75992 15383 20329 44426 Face 75993 12512 37999 18422 Face 75994 12512 33904 37999 Face 75995 2809 38000 17094 Face 75996 2809 15187 38000 Face 75997 12396 38001 34047 Face 75998 12396 15939 38001 Face 75999 3589 38002 32856 Face 76000 3589 16508 38002 Face 76001 38004 38003 17815 Face 76002 6316 36273 38003 Face 76003 46901 38004 10840 Face 76004 6316 38003 38004 Face 76005 44175 38005 10937 Face 76006 3733 35391 38005 Face 76007 10633 38006 2967 Face 76008 10633 11657 38006 Face 76009 19812 38007 39168 Face 76010 19812 9821 38007 Face 76011 7128 38008 11063 Face 76012 38009 24850 38008 Face 76013 7128 38009 38008 Face 76014 7128 20398 38009 Face 76015 291 38010 16845 Face 76016 291 24328 38010 Face 76017 38012 38011 7919 Face 76018 40094 45102 38011 Face 76019 2032 38012 31120 Face 76020 2032 38011 38012 Face 76021 29742 38013 8235 Face 76022 29742 30119 38013 Face 76023 12180 38014 17811 Face 76024 12180 3725 38014 Face 76025 16992 38015 46173 Face 76026 44963 27815 38015 Face 76027 1646 38016 45532 Face 76028 1646 5551 38016 Face 76029 28 38017 28512 Face 76030 28 7175 38017 Face 76031 22844 38018 27598 Face 76032 22844 19609 38018 Face 76033 48271 38019 4590 Face 76034 14014 28776 38019 Face 76035 2327 38020 22309 Face 76036 2327 48821 38020 Face 76037 13900 38021 8655 Face 76038 13900 1100 38021 Face 76039 1451 38022 19476 Face 76040 1451 28508 38022 Face 76041 1332 38023 21776 Face 76042 1332 7989 38023 Face 76043 2689 38024 10771 Face 76044 2689 36026 38024 Face 76045 2734 38025 34394 Face 76046 2734 16833 38025 Face 76047 2652 38026 33017 Face 76048 2652 34193 38026 Face 76049 13509 38027 8996 Face 76050 13509 36861 38027 Face 76051 5507 38028 37243 Face 76052 5507 19866 38028 Face 76053 30617 38029 24795 Face 76054 30617 22713 38029 Face 76055 20401 38030 9970 Face 76056 20401 36510 38030 Face 76057 22964 38031 4453 Face 76058 22964 43399 38031 Face 76059 6553 38032 16792 Face 76060 6553 18919 38032 Face 76061 11334 38033 29732 Face 76062 11334 19118 38033 Face 76063 26099 38034 36140 Face 76064 26099 40276 38034 Face 76065 49 38035 45838 Face 76066 49 30480 38035 Face 76067 26066 38036 30573 Face 76068 26066 4787 39792 Face 76069 23689 38037 16689 Face 76070 23689 12645 38037 Face 76071 6590 38038 27208 Face 76072 6590 10571 38038 Face 76073 12451 38039 11967 Face 76074 12451 44327 38039 Face 76075 13323 38040 40694 Face 76076 13323 13322 38040 Face 76077 11718 38041 8576 Face 76078 11718 11719 38041 Face 76079 995 38042 18077 Face 76080 995 23512 38042 Face 76081 1129 38043 37219 Face 76082 1129 20699 38043 Face 76083 8574 38044 1284 Face 76084 8574 18911 38044 Face 76085 10431 38045 10157 Face 76086 10431 70 38045 Face 76087 11320 38046 16450 Face 76088 11320 22092 38046 Face 76089 13760 38047 32318 Face 76090 13760 10567 38047 Face 76091 20984 38048 25160 Face 76092 20984 4230 38048 Face 76093 5797 38049 16487 Face 76094 5797 18254 38049 Face 76095 20445 38050 32858 Face 76096 20445 12832 38050 Face 76097 1255 38051 30243 Face 76098 1255 30244 38051 Face 76099 19281 38052 27447 Face 76100 19281 41419 38052 Face 76101 20051 38053 43787 Face 76102 45702 14243 38053 Face 76103 36070 38054 46199 Face 76104 36070 21958 38054 Face 76105 21278 38055 27639 Face 76106 21278 963 38055 Face 76107 4479 38056 19294 Face 76108 4479 35106 38056 Face 76109 22558 38057 8363 Face 76110 22558 1915 38057 Face 76111 6124 38058 26812 Face 76112 6124 26811 38058 Face 76113 11589 38059 17328 Face 76114 11589 1983 38059 Face 76115 5196 38060 40721 Face 76116 5196 45460 38060 Face 76117 11002 38061 25045 Face 76118 11002 13990 38061 Face 76119 3940 38062 37973 Face 76120 47763 25063 38062 Face 76121 13716 38063 2876 Face 76122 38064 35117 38063 Face 76123 13716 38064 38063 Face 76124 13716 12409 38064 Face 76125 7245 38065 26691 Face 76126 7245 32402 38065 Face 76127 11105 38066 16816 Face 76128 11105 27203 38066 Face 76129 4466 38067 32327 Face 76130 4466 9369 38067 Face 76131 7658 38068 37225 Face 76132 7658 29368 38068 Face 76133 42534 38069 20104 Face 76134 21328 30079 38069 Face 76135 6722 38070 9866 Face 76136 46274 19429 38070 Face 76137 14619 38071 8757 Face 76138 14619 3145 38071 Face 76139 23030 38072 5199 Face 76140 23030 27810 38072 Face 76141 2446 38073 46550 Face 76142 2446 32056 38073 Face 76143 29681 38074 43318 Face 76144 29681 11557 38074 Face 76145 12533 38075 1795 Face 76146 12533 49003 38075 Face 76147 43809 38076 46490 Face 76148 3741 7874 38076 Face 76149 17936 38077 45873 Face 76150 17936 34722 38077 Face 76151 2896 38078 34309 Face 76152 2896 29084 38078 Face 76153 23285 38079 34397 Face 76154 23285 8499 38079 Face 76155 24001 38080 22967 Face 76156 24001 28462 38080 Face 76157 39463 38081 37226 Face 76158 46037 29325 38081 Face 76159 38083 38082 33163 Face 76160 10981 37215 42500 Face 76161 10981 38083 47772 Face 76162 10981 42500 38083 Face 76163 42271 38084 20690 Face 76164 42271 48303 38084 Face 76165 9848 38085 36456 Face 76166 9848 23550 38085 Face 76167 30868 38086 37904 Face 76168 30868 16251 38086 Face 76169 19012 38087 5046 Face 76170 19012 25225 38087 Face 76171 13143 38088 23034 Face 76172 13143 45501 38089 Face 76173 38088 38089 13144 Face 76174 38088 13143 38089 Face 76175 2622 38090 47003 Face 76176 2622 30187 38090 Face 76177 28730 38091 6015 Face 76178 28730 6839 38091 Face 76179 39938 38092 9655 Face 76180 10350 26297 38092 Face 76181 11855 38093 16995 Face 76182 11855 43943 38093 Face 76183 14153 38094 39826 Face 76184 14153 17354 38094 Face 76185 39451 48354 28189 Face 76186 603 42074 38095 Face 76187 21003 38096 29362 Face 76188 21003 15390 38096 Face 76189 4485 38097 20070 Face 76190 4485 21109 38097 Face 76191 2489 38098 10509 Face 76192 2489 8368 38098 Face 76193 14907 38099 8063 Face 76194 14907 3680 38099 Face 76195 41445 38100 10144 Face 76196 29592 21253 38100 Face 76197 4063 38101 22392 Face 76198 4063 34237 38101 Face 76199 7149 38102 44566 Face 76200 7149 26581 38102 Face 76201 652 38103 34963 Face 76202 652 21416 38103 Face 76203 18240 38104 20505 Face 76204 18240 42924 38104 Face 76205 16791 38105 35835 Face 76206 16791 22988 38105 Face 76207 11333 38106 36782 Face 76208 11333 33505 38106 Face 76209 12781 38107 2423 Face 76210 12781 21530 38107 Face 76211 11019 38108 3867 Face 76212 11019 12529 38108 Face 76213 16412 38109 36425 Face 76214 16412 23434 38109 Face 76215 102 38110 49322 Face 76216 102 21207 38110 Face 76217 7870 38111 30664 Face 76218 7870 14085 38111 Face 76219 2637 38112 18149 Face 76220 39730 20756 38112 Face 76221 22000 38113 45553 Face 76222 22000 15085 38113 Face 76223 28684 38114 12652 Face 76224 28684 30206 38114 Face 76225 3560 38115 21432 Face 76226 3560 41363 38115 Face 76227 17990 38116 33697 Face 76228 17990 26295 38116 Face 76229 19224 38117 14903 Face 76230 19224 14832 38117 Face 76231 38702 38118 31741 Face 76232 14743 32507 38118 Face 76233 27520 38119 22577 Face 76234 27520 12360 38119 Face 76235 7858 38120 38185 Face 76236 7858 7857 38120 Face 76237 35937 38121 23973 Face 76238 35937 19764 38121 Face 76239 42253 38122 18963 Face 76240 3528 19844 38122 Face 76241 1962 38123 20387 Face 76242 1962 16096 38123 Face 76243 4996 38124 16941 Face 76244 4996 10068 38124 Face 76245 3553 38125 61 Face 76246 3553 13269 38125 Face 76247 38127 38126 10056 Face 76248 25254 39775 38126 Face 76249 25254 38127 30137 Face 76250 25254 38126 38127 Face 76251 25239 38128 25240 Face 76252 25239 34121 38128 Face 76253 9507 38129 2927 Face 76254 9507 36706 38129 Face 76255 44265 38130 32636 Face 76256 44265 3464 38130 Face 76257 3464 38131 38130 Face 76258 3464 13626 41417 Face 76259 40601 38132 3566 Face 76260 478 36526 38132 Face 76261 19403 38133 1319 Face 76262 19403 20679 38133 Face 76263 13946 38134 34243 Face 76264 39413 37695 38134 Face 76265 21731 38135 17699 Face 76266 21731 13548 38135 Face 76267 12664 38136 49571 Face 76268 12664 32642 38136 Face 76269 3777 38137 26130 Face 76270 3777 42046 38137 Face 76271 8511 38138 23282 Face 76272 8511 4037 38138 Face 76273 841 38139 16884 Face 76274 841 10687 38139 Face 76275 1557 38140 20678 Face 76276 1557 43344 38140 Face 76277 17030 38141 83 Face 76278 17030 36560 38141 Face 76279 28329 38142 19451 Face 76280 28329 42796 38142 Face 76281 7411 38143 28399 Face 76282 7411 19821 38143 Face 76283 12338 38144 1748 Face 76284 38145 13190 38144 Face 76285 12338 38145 38144 Face 76286 12338 972 38145 Face 76287 38147 38146 10048 Face 76288 15787 20381 38146 Face 76289 15787 38147 32807 Face 76290 15787 38146 38147 Face 76291 2603 38148 24889 Face 76292 2603 33966 38148 Face 76293 35374 38149 14796 Face 76294 43619 29925 38149 Face 76295 11549 38150 12626 Face 76296 11549 6319 38150 Face 76297 9976 38151 12997 Face 76298 9976 17733 38151 Face 76299 7384 38152 41230 Face 76300 7384 48909 38152 Face 76301 6785 38153 20123 Face 76302 6785 31591 38153 Face 76303 3495 38154 25253 Face 76304 3495 12924 38154 Face 76305 48623 38155 6297 Face 76306 29928 37004 38155 Face 76307 256 38156 29267 Face 76308 256 34583 38156 Face 76309 12745 38157 568 Face 76310 12745 26010 38157 Face 76311 21297 38158 33299 Face 76312 21297 24224 38158 Face 76313 16861 38159 11351 Face 76314 16861 10332 38159 Face 76315 14341 38160 34794 Face 76316 14341 32595 38160 Face 76317 940 38161 26135 Face 76318 41973 34023 38161 Face 76319 40012 38162 23066 Face 76320 40013 17795 38162 Face 76321 21980 38163 3630 Face 76322 21980 31059 38163 Face 76323 38165 38164 40040 Face 76324 38165 12323 38164 Face 76325 16148 38165 40040 Face 76326 16148 12323 38165 Face 76327 38167 38166 20594 Face 76328 38167 1306 38166 Face 76329 8356 38167 20594 Face 76330 8356 6761 38167 Face 76331 14183 38168 29386 Face 76332 14183 497 38168 Face 76333 1516 38169 27210 Face 76334 1516 12580 38169 Face 76335 21441 38170 1359 Face 76336 21441 21019 38170 Face 76337 14614 38171 48231 Face 76338 14614 33531 38171 Face 76339 1863 38172 10403 Face 76340 1863 37874 38172 Face 76341 7913 38173 32571 Face 76342 7913 29769 38173 Face 76343 23490 38174 5007 Face 76344 23490 23491 38174 Face 76345 5561 38175 15862 Face 76346 5561 2044 38175 Face 76347 14131 38176 7634 Face 76348 14131 14132 38176 Face 76349 45922 38177 13103 Face 76350 3047 17105 38177 Face 76351 49090 38178 19425 Face 76352 12349 19426 38178 Face 76353 2707 38179 13949 Face 76354 2707 14727 38179 Face 76355 8198 38180 35015 Face 76356 8198 34738 38180 Face 76357 5493 38181 12260 Face 76358 5493 12875 38181 Face 76359 38183 38182 27118 Face 76360 14166 408 38182 Face 76361 14166 38183 36551 Face 76362 14166 38182 38183 Face 76363 2187 38184 13281 Face 76364 2187 13613 38184 Face 76365 7856 38185 38120 Face 76366 7856 32294 38185 Face 76367 38187 38186 41949 Face 76368 1928 6221 38186 Face 76369 1928 38187 13405 Face 76370 1928 38186 38187 Face 76371 10834 38188 5803 Face 76372 10834 17987 38188 Face 76373 15607 38189 28407 Face 76374 15607 23876 38189 Face 76375 5952 38190 28185 Face 76376 5952 22601 38190 Face 76377 6045 38191 36488 Face 76378 6045 30258 38191 Face 76379 46442 38192 13924 Face 76380 6045 36488 38192 Face 76381 17059 38193 4940 Face 76382 17059 39684 38193 Face 76383 2319 38194 38842 Face 76384 2319 20625 38194 Face 76385 15209 38195 23992 Face 76386 15209 3465 38195 Face 76387 2667 38196 20040 Face 76388 2667 29841 38196 Face 76389 3100 38197 43361 Face 76390 3100 9409 38197 Face 76391 28214 38198 45750 Face 76392 28214 6349 38198 Face 76393 15810 38199 20941 Face 76394 15810 34885 38199 Face 76395 9587 38200 9121 Face 76396 9587 22640 38200 Face 76397 3195 38201 28633 Face 76398 3195 35709 38201 Face 76399 19292 38202 3685 Face 76400 19292 28656 38202 Face 76401 23537 38203 17264 Face 76402 23537 36727 38203 Face 76403 5726 38204 37533 Face 76404 5726 35012 38204 Face 76405 3019 38205 49973 Face 76406 3019 12815 38205 Face 76407 21037 38206 36635 Face 76408 21037 25951 38206 Face 76409 21037 38207 19204 Face 76410 21037 222 38207 Face 76411 19424 38208 29683 Face 76412 19424 4597 38208 Face 76413 41416 38209 21871 Face 76414 7303 24360 38209 Face 76415 6983 38210 33474 Face 76416 6983 32352 38210 Face 76417 26291 38211 3318 Face 76418 26291 4922 38211 Face 76419 41356 38212 18590 Face 76420 15490 32133 38212 Face 76421 1729 38213 18430 Face 76422 1729 20359 38213 Face 76423 23638 38214 21407 Face 76424 23638 7838 38214 Face 76425 47705 38215 3105 Face 76426 20460 20461 38215 Face 76427 13154 38216 35518 Face 76428 13154 40941 38216 Face 76429 2832 38217 37943 Face 76430 2832 16444 38217 Face 76431 5145 38218 48550 Face 76432 5145 31136 38218 Face 76433 9623 38219 27921 Face 76434 38991 31109 38219 Face 76435 8541 38220 6249 Face 76436 8541 28927 38220 Face 76437 18838 38221 44452 Face 76438 18838 11071 38221 Face 76439 3337 38222 23190 Face 76440 3337 36623 38222 Face 76441 15013 38223 5494 Face 76442 15013 30657 38223 Face 76443 14461 38224 22716 Face 76444 14461 44801 38224 Face 76445 8077 38225 47482 Face 76446 8077 3418 38225 Face 76447 9916 38226 26506 Face 76448 9916 14763 38226 Face 76449 16026 38227 7797 Face 76450 16026 30084 38227 Face 76451 19511 38228 20642 Face 76452 19511 42464 38228 Face 76453 9365 38229 25850 Face 76454 47581 21900 38229 Face 76455 14689 38230 37101 Face 76456 14689 27355 38230 Face 76457 9663 38231 13736 Face 76458 9663 3045 38231 Face 76459 3262 38232 28452 Face 76460 3262 14551 38232 Face 76461 10466 38233 22077 Face 76462 10466 47300 38233 Face 76463 12742 38234 46821 Face 76464 12742 1472 38234 Face 76465 14780 38235 1850 Face 76466 38236 26011 38235 Face 76467 14780 38236 38235 Face 76468 14780 26746 38236 Face 76469 21073 38237 26818 Face 76470 21073 24849 38237 Face 76471 38239 38238 23260 Face 76472 38239 29985 38238 Face 76473 79 38239 7749 Face 76474 79 29985 38239 Face 76475 17152 38240 2670 Face 76476 17152 4471 38240 Face 76477 10012 38241 26777 Face 76478 10012 47240 38241 Face 76479 21971 38242 6904 Face 76480 21971 40298 38242 Face 76481 21318 38243 5915 Face 76482 21318 19039 38243 Face 76483 3585 38244 29560 Face 76484 39241 12210 38244 Face 76485 4474 38245 22671 Face 76486 4474 9958 38245 Face 76487 9754 38246 2963 Face 76488 9754 23928 38246 Face 76489 7731 38247 31086 Face 76490 39440 5081 38247 Face 76491 12992 38248 29359 Face 76492 12992 38130 38248 Face 76493 45904 38249 24073 Face 76494 3350 18758 38249 Face 76495 14111 38250 1550 Face 76496 14111 29133 38250 Face 76497 19855 38251 17067 Face 76498 19855 3311 38251 Face 76499 5174 38252 23551 Face 76500 5174 848 38252 Face 76501 22580 38253 34440 Face 76502 22580 1423 38253 Face 76503 3774 38254 6511 Face 76504 3774 37350 38254 Face 76505 7308 38255 10647 Face 76506 7308 19402 38255 Face 76507 3562 38256 29609 Face 76508 3562 21934 38256 Face 76509 21134 38257 26883 Face 76510 21134 32653 38257 Face 76511 43532 38258 47862 Face 76512 28679 10200 38258 Face 76513 15237 38259 34055 Face 76514 15237 19726 38259 Face 76515 5394 38260 13449 Face 76516 5394 11723 38260 Face 76517 17118 38261 46288 Face 76518 17118 39360 38261 Face 76519 12356 38262 2096 Face 76520 12356 6640 38262 Face 76521 7172 38263 21091 Face 76522 7172 42884 38263 Face 76523 22088 38264 7368 Face 76524 22088 15073 38264 Face 76525 14802 38265 22135 Face 76526 14802 14803 38265 Face 76527 12828 38266 25080 Face 76528 12828 23603 38266 Face 76529 15180 38267 13971 Face 76530 15180 29887 38267 Face 76531 211 38268 20280 Face 76532 211 18194 38268 Face 76533 2289 38269 43538 Face 76534 2289 20654 38269 Face 76535 16366 38270 24891 Face 76536 16366 26775 38270 Face 76537 5916 38271 33058 Face 76538 5916 13418 38271 Face 76539 5276 38272 16805 Face 76540 47774 40110 38272 Face 76541 2760 38273 21240 Face 76542 38989 21367 38273 Face 76543 17014 38274 32879 Face 76544 17014 33127 38274 Face 76545 13435 38275 27939 Face 76546 43261 49922 38275 Face 76547 6310 38276 21113 Face 76548 6310 14220 38276 Face 76549 36687 38277 2682 Face 76550 36687 6546 38277 Face 76551 5973 38278 28467 Face 76552 5973 45628 38278 Face 76553 6026 38279 31705 Face 76554 6026 32958 38279 Face 76555 21761 38280 21632 Face 76556 21761 8207 38280 Face 76557 7428 38281 3360 Face 76558 7428 7427 38281 Face 76559 3230 38282 10901 Face 76560 3230 32436 38282 Face 76561 11204 38283 3460 Face 76562 44600 29612 38283 Face 76563 4054 38284 22799 Face 76564 4054 25397 38284 Face 76565 1674 38285 30078 Face 76566 1674 40278 38285 Face 76567 8273 38286 18232 Face 76568 8273 22173 38286 Face 76569 45624 38287 33892 Face 76570 9668 37934 38287 Face 76571 11329 38288 44999 Face 76572 45593 40974 38288 Face 76573 6867 38289 12939 Face 76574 6867 37498 38289 Face 76575 42370 38290 34113 Face 76576 14385 27411 38290 Face 76577 8784 38291 45326 Face 76578 8784 18593 38291 Face 76579 5879 38292 48716 Face 76580 5879 39450 38292 Face 76581 2344 38293 28588 Face 76582 47474 2691 38293 Face 76583 17267 38294 13314 Face 76584 17267 35053 38294 Face 76585 6817 38295 24824 Face 76586 6817 23966 38295 Face 76587 3565 38296 39272 Face 76588 3565 28918 38296 Face 76589 19589 38297 31482 Face 76590 19589 46922 38297 Face 76591 22512 38298 7144 Face 76592 22512 44511 38298 Face 76593 23258 38299 20214 Face 76594 23258 30961 38299 Face 76595 7981 38300 19181 Face 76596 7981 5607 38300 Face 76597 46039 38301 7857 Face 76598 10550 27297 38301 Face 76599 10009 38302 28853 Face 76600 10009 35925 38302 Face 76601 2835 38303 34780 Face 76602 2835 49522 38303 Face 76603 2196 38304 16807 Face 76604 2196 22583 38304 Face 76605 8955 38305 35329 Face 76606 8955 21383 38305 Face 76607 19594 38306 30467 Face 76608 19594 44988 38306 Face 76609 8990 38307 3819 Face 76610 8990 32540 38307 Face 76611 11925 38308 35694 Face 76612 11925 38612 38308 Face 76613 874 38309 27889 Face 76614 874 16241 38309 Face 76615 6313 38310 42116 Face 76616 6313 14862 38310 Face 76617 3821 38311 20577 Face 76618 3821 29633 38311 Face 76619 13920 38312 27303 Face 76620 13920 24100 38312 Face 76621 4327 38313 29514 Face 76622 4327 33445 38313 Face 76623 46773 38314 14874 Face 76624 11286 16126 38314 Face 76625 11413 38315 12750 Face 76626 11413 31268 38315 Face 76627 39674 38316 5923 Face 76628 18103 30490 38316 Face 76629 24964 38317 33544 Face 76630 24964 43316 38317 Face 76631 17661 38318 18955 Face 76632 17661 44949 38318 Face 76633 6272 38319 30590 Face 76634 6272 18030 38319 Face 76635 602 38320 34546 Face 76636 602 17858 38320 Face 76637 13857 38321 45504 Face 76638 13857 16481 38321 Face 76639 5075 38322 45988 Face 76640 5075 23241 38322 Face 76641 42674 38323 1628 Face 76642 38324 29468 38323 Face 76643 9896 38324 38323 Face 76644 9896 9898 38324 Face 76645 3510 38325 32503 Face 76646 3510 15438 38325 Face 76647 15049 38326 20698 Face 76648 47004 15499 38326 Face 76649 6001 38327 18515 Face 76650 6001 46565 38327 Face 76651 7508 38328 41103 Face 76652 7508 16417 38328 Face 76653 38330 38329 13645 Face 76654 38330 33531 38329 Face 76655 11477 38330 17107 Face 76656 11477 33531 38330 Face 76657 2700 38331 9784 Face 76658 2700 6404 38331 Face 76659 11399 38332 35975 Face 76660 11399 24009 38332 Face 76661 2666 38333 23270 Face 76662 2666 41982 38333 Face 76663 40837 38334 16072 Face 76664 11055 5565 38334 Face 76665 10800 38335 1708 Face 76666 10800 31715 38335 Face 76667 24076 38336 28047 Face 76668 24076 14606 38336 Face 76669 24304 38337 44347 Face 76670 24304 7095 38337 Face 76671 1625 38338 46487 Face 76672 1625 25398 38338 Face 76673 3037 38339 30853 Face 76674 3037 20123 38339 Face 76675 42933 38340 18740 Face 76676 3139 42805 38340 Face 76677 4741 38341 20870 Face 76678 4741 26091 38341 Face 76679 49173 38342 44394 Face 76680 502 24218 38342 Face 76681 2530 38343 40929 Face 76682 47658 33995 38343 Face 76683 10298 38344 35387 Face 76684 10298 8061 38344 Face 76685 6177 38345 48327 Face 76686 6177 16378 38345 Face 76687 16416 38346 37235 Face 76688 16416 28285 38346 Face 76689 11222 38347 44967 Face 76690 11222 13648 38347 Face 76691 29058 38348 28179 Face 76692 29058 7292 38348 Face 76693 18540 38349 14607 Face 76694 18540 34956 38349 Face 76695 13516 38350 13059 Face 76696 45988 5147 38350 Face 76697 16087 38351 34995 Face 76698 16087 34173 38351 Face 76699 6263 38352 32156 Face 76700 6263 23261 38352 Face 76701 3468 38353 25004 Face 76702 3468 41544 38353 Face 76703 1361 38354 12627 Face 76704 1361 17534 38354 Face 76705 38356 38355 18003 Face 76706 1182 27393 38355 Face 76707 1182 38356 19560 Face 76708 1182 38355 38356 Face 76709 5135 38357 23473 Face 76710 38669 1941 38357 Face 76711 946 38358 37684 Face 76712 946 25128 38358 Face 76713 17120 38359 24371 Face 76714 17120 39102 38359 Face 76715 16979 38360 854 Face 76716 16979 33495 38360 Face 76717 5786 38361 42679 Face 76718 5786 26990 38361 Face 76719 20989 38362 703 Face 76720 20989 47389 38362 Face 76721 12497 38363 16391 Face 76722 12497 34433 38363 Face 76723 16422 38364 35587 Face 76724 16422 14961 38364 Face 76725 7617 38365 16744 Face 76726 7617 29713 38365 Face 76727 10665 38366 34684 Face 76728 10665 25805 38366 Face 76729 13951 38367 26513 Face 76730 13951 36509 38367 Face 76731 3099 38368 22673 Face 76732 3099 29885 38368 Face 76733 1824 38369 31421 Face 76734 1824 34043 38369 Face 76735 40317 38370 27441 Face 76736 7438 48428 38370 Face 76737 3868 38371 7906 Face 76738 3868 9065 38371 Face 76739 12122 38372 15024 Face 76740 44456 5870 38372 Face 76741 48137 38373 514 Face 76742 48137 22854 38373 Face 76743 17613 38374 29517 Face 76744 39360 19255 38374 Face 76745 11183 38375 21859 Face 76746 11183 43494 38375 Face 76747 18014 38376 13704 Face 76748 18014 33731 38376 Face 76749 12919 38377 18745 Face 76750 12919 34435 38377 Face 76751 9876 38378 6743 Face 76752 9876 20252 38378 Face 76753 15532 38379 38446 Face 76754 15532 6820 38379 Face 76755 39302 38380 365 Face 76756 6181 46978 38380 Face 76757 9133 38381 34116 Face 76758 9133 13112 38381 Face 76759 7557 38382 6087 Face 76760 7557 40371 38382 Face 76761 15007 38383 7065 Face 76762 15007 2584 38383 Face 76763 5039 38384 16134 Face 76764 5039 44550 38384 Face 76765 4044 38385 1287 Face 76766 4044 49552 38385 Face 76767 40144 38386 9978 Face 76768 6758 19361 38386 Face 76769 4388 38387 23958 Face 76770 4388 34907 38387 Face 76771 9435 38388 35292 Face 76772 9435 37943 38388 Face 76773 17241 38389 26703 Face 76774 17241 2831 38389 Face 76775 133 38390 44696 Face 76776 133 33144 38390 Face 76777 133 38391 33150 Face 76778 133 44696 38391 Face 76779 26964 38392 40030 Face 76780 26964 43948 38392 Face 76781 15948 38393 23024 Face 76782 15948 40664 38393 Face 76783 9338 38394 35701 Face 76784 9338 1496 38394 Face 76785 8260 38395 24407 Face 76786 8260 35869 38395 Face 76787 2030 38396 46940 Face 76788 2030 7078 38396 Face 76789 3405 38397 34488 Face 76790 3405 13220 38397 Face 76791 20061 38398 20964 Face 76792 20061 3722 38398 Face 76793 787 38399 8900 Face 76794 787 30899 38399 Face 76795 2632 38400 18684 Face 76796 2632 5165 38400 Face 76797 239 38401 39329 Face 76798 239 48661 38401 Face 76799 29187 38402 29461 Face 76800 29187 30329 38402 Face 76801 9231 38403 42703 Face 76802 9231 13122 38403 Face 76803 1745 38404 33436 Face 76804 1745 36921 38404 Face 76805 18539 38405 14030 Face 76806 18539 47061 38405 Face 76807 8618 38406 14758 Face 76808 8618 25091 38406 Face 76809 14507 38407 23499 Face 76810 14507 29856 38407 Face 76811 19513 38408 4668 Face 76812 19513 2494 38408 Face 76813 23506 38409 27774 Face 76814 23506 3515 38409 Face 76815 24600 38410 9304 Face 76816 24600 31402 38410 Face 76817 1511 38411 22169 Face 76818 1511 21472 38411 Face 76819 38411 38412 15598 Face 76820 38411 21472 38412 Face 76821 2759 38413 34207 Face 76822 2759 44352 38413 Face 76823 13948 38414 3711 Face 76824 13948 44228 38414 Face 76825 16770 38415 41084 Face 76826 16770 8676 38415 Face 76827 28985 38416 19892 Face 76828 46468 20454 38416 Face 76829 9369 38417 28614 Face 76830 42435 20970 38417 Face 76831 21993 38418 8153 Face 76832 21993 623 38418 Face 76833 11341 38419 33619 Face 76834 11341 46878 38419 Face 76835 27347 38420 44991 Face 76836 27347 5576 38420 Face 76837 15919 38421 38766 Face 76838 15919 39516 38421 Face 76839 2477 38422 36752 Face 76840 2477 23369 38422 Face 76841 17754 38423 40714 Face 76842 17754 37470 38423 Face 76843 6274 38424 15858 Face 76844 6274 18977 38424 Face 76845 12373 38425 2204 Face 76846 12373 10084 38425 Face 76847 3659 38426 14202 Face 76848 3659 34203 38426 Face 76849 13932 38427 24692 Face 76850 13932 13456 38427 Face 76851 8841 38428 18494 Face 76852 8841 37036 38428 Face 76853 12427 38429 16957 Face 76854 12427 19959 38429 Face 76855 8954 38430 35273 Face 76856 8954 45227 38430 Face 76857 7222 38431 48727 Face 76858 7222 25345 38431 Face 76859 12589 38432 15395 Face 76860 12589 1276 38432 Face 76861 10407 38433 34242 Face 76862 10407 45775 38433 Face 76863 49957 38434 16339 Face 76864 23528 28741 38434 Face 76865 8096 38435 33091 Face 76866 8096 25144 38435 Face 76867 10572 38436 28912 Face 76868 10572 20699 38436 Face 76869 10176 38437 40636 Face 76870 10176 34053 38437 Face 76871 912 38438 9451 Face 76872 912 23411 38438 Face 76873 9036 38439 36260 Face 76874 9036 41006 38439 Face 76875 15287 38440 47022 Face 76876 15287 33285 38440 Face 76877 9518 38441 13746 Face 76878 9518 24722 38441 Face 76879 25544 38442 36291 Face 76880 47150 43814 38442 Face 76881 16907 38443 30688 Face 76882 16907 579 38443 Face 76883 20749 38444 34616 Face 76884 20749 47834 38444 Face 76885 6922 38445 35247 Face 76886 6922 34558 38445 Face 76887 25986 38446 34723 Face 76888 25986 15532 38446 Face 76889 12426 38447 1644 Face 76890 12426 32071 38447 Face 76891 10310 38448 8797 Face 76892 10310 22859 38448 Face 76893 3131 38449 29522 Face 76894 3131 18988 38449 Face 76895 19467 38450 7713 Face 76896 19467 24828 38450 Face 76897 15640 38451 4890 Face 76898 15640 46261 38451 Face 76899 20543 38452 3702 Face 76900 20543 18617 38452 Face 76901 24177 38453 11532 Face 76902 39857 24176 38453 Face 76903 26691 38454 7246 Face 76904 26691 35892 38454 Face 76905 67 38455 47201 Face 76906 67 11856 38455 Face 76907 9125 38456 16395 Face 76908 9125 10259 38456 Face 76909 422 38457 26956 Face 76910 422 21098 38457 Face 76911 4745 38458 27182 Face 76912 4745 45409 38458 Face 76913 2677 38459 23784 Face 76914 2677 14010 38459 Face 76915 26014 38460 12819 Face 76916 26014 18624 38460 Face 76917 9264 38461 37308 Face 76918 9264 37086 38461 Face 76919 17385 38462 2048 Face 76920 17385 6265 38462 Face 76921 15902 38463 971 Face 76922 15902 27019 38463 Face 76923 38466 38464 35945 Face 76924 38465 32236 38464 Face 76925 38466 38465 38464 Face 76926 6515 32236 38465 Face 76927 6515 38466 19808 Face 76928 6515 38465 38466 Face 76929 6987 38467 43227 Face 76930 6987 2406 38467 Face 76931 32238 38468 32239 Face 76932 32238 6352 38468 Face 76933 23274 38469 17532 Face 76934 23274 17632 38469 Face 76935 438 38470 27358 Face 76936 438 33675 38470 Face 76937 40882 38471 4422 Face 76938 26461 29106 38471 Face 76939 13383 38472 41781 Face 76940 13383 21862 38472 Face 76941 13383 38473 18833 Face 76942 13383 45809 38473 Face 76943 22 38474 24732 Face 76944 22 11386 38474 Face 76945 24289 38475 44521 Face 76946 24289 10454 38475 Face 76947 6628 38476 28622 Face 76948 6628 16596 38476 Face 76949 2204 38477 7653 Face 76950 38478 19214 38477 Face 76951 2204 38478 38477 Face 76952 2204 43603 38478 Face 76953 10330 38479 49546 Face 76954 10330 30179 38479 Face 76955 38481 38480 8237 Face 76956 24 25484 38480 Face 76957 39197 38481 22542 Face 76958 24 38480 38481 Face 76959 9257 38482 48234 Face 76960 40241 16911 38482 Face 76961 14056 38483 3339 Face 76962 14056 18902 38483 Face 76963 44030 38484 30207 Face 76964 44030 16724 38484 Face 76965 8937 38485 26710 Face 76966 8937 27512 38485 Face 76967 2278 38486 34676 Face 76968 2278 27779 38486 Face 76969 8454 38487 2921 Face 76970 8454 32213 38487 Face 76971 18701 38488 2464 Face 76972 18701 6865 38488 Face 76973 23090 38489 47391 Face 76974 23090 14734 38489 Face 76975 17272 38490 37212 Face 76976 17272 45182 38490 Face 76977 16610 38491 7620 Face 76978 16610 42471 38491 Face 76979 16610 38492 42471 Face 76980 16610 37415 38492 Face 76981 12557 38493 28757 Face 76982 12557 47488 38493 Face 76983 12557 38494 4769 Face 76984 12557 28757 38494 Face 76985 43141 38495 23359 Face 76986 12619 8849 38495 Face 76987 111 38496 35943 Face 76988 111 18085 38496 Face 76989 5981 38497 17179 Face 76990 5981 35013 38497 Face 76991 14137 38498 14538 Face 76992 14137 18908 38498 Face 76993 10352 38499 37550 Face 76994 10352 19770 38499 Face 76995 3519 38500 48317 Face 76996 3519 32323 38500 Face 76997 10687 38501 31269 Face 76998 10687 36137 38501 Face 76999 12290 38502 30442 Face 77000 12290 19031 38502 Face 77001 1370 38503 12737 Face 77002 1370 24644 38503 Face 77003 12856 38504 36939 Face 77004 12856 33523 38504 Face 77005 15508 38505 45104 Face 77006 15508 35252 38505 Face 77007 2431 38506 28864 Face 77008 2431 30355 38506 Face 77009 30994 38507 19749 Face 77010 30994 9196 38507 Face 77011 8947 38508 18012 Face 77012 42152 6252 38508 Face 77013 2674 38509 37272 Face 77014 2674 28061 38509 Face 77015 3587 38510 12267 Face 77016 3587 46097 38510 Face 77017 38512 38511 10315 Face 77018 5686 43184 38511 Face 77019 5686 38512 15752 Face 77020 5686 38511 38512 Face 77021 11619 38513 19958 Face 77022 11619 43120 38513 Face 77023 20885 38514 12767 Face 77024 20885 8053 38514 Face 77025 17330 38515 19415 Face 77026 17330 35973 38515 Face 77027 48684 38516 40826 Face 77028 11264 13028 38516 Face 77029 5278 38517 40341 Face 77030 5278 28780 38517 Face 77031 901 38518 8171 Face 77032 901 36832 38518 Face 77033 38520 38519 47208 Face 77034 5731 8827 38519 Face 77035 5731 38520 17963 Face 77036 5731 38519 38520 Face 77037 29410 38521 4006 Face 77038 29410 47838 38521 Face 77039 38524 38522 203 Face 77040 38523 30561 38522 Face 77041 38524 38523 38522 Face 77042 43122 11767 38523 Face 77043 44975 38524 10472 Face 77044 2156 38523 38524 Face 77045 660 38525 41175 Face 77046 660 24251 38525 Face 77047 1686 38526 41159 Face 77048 1686 33 38526 Face 77049 6687 38527 47906 Face 77050 6687 40751 38527 Face 77051 4355 38528 26557 Face 77052 4355 8032 38528 Face 77053 43890 38529 21880 Face 77054 13633 12212 38529 Face 77055 4281 38530 15362 Face 77056 4281 27384 38530 Face 77057 9339 38531 47131 Face 77058 49191 16056 38531 Face 77059 14044 38532 30942 Face 77060 14044 2977 38532 Face 77061 11917 38533 39035 Face 77062 11917 24770 38533 Face 77063 11917 38534 41402 Face 77064 11917 39035 38534 Face 77065 14738 38535 32201 Face 77066 14738 45317 38535 Face 77067 23771 38536 24299 Face 77068 23771 44728 38536 Face 77069 12910 38537 37977 Face 77070 12910 16390 38537 Face 77071 865 38538 15412 Face 77072 865 32883 38538 Face 77073 2230 38539 15691 Face 77074 2230 7196 38539 Face 77075 40089 38540 1198 Face 77076 8614 23950 38540 Face 77077 6252 38541 9537 Face 77078 6252 52 43212 Face 77079 9900 38542 4417 Face 77080 9900 27682 38542 Face 77081 7286 38543 20886 Face 77082 7286 20024 38543 Face 77083 7255 38544 38791 Face 77084 7255 24061 38544 Face 77085 7667 38545 18031 Face 77086 7667 14978 38545 Face 77087 25873 38546 26600 Face 77088 25873 27462 38546 Face 77089 14653 38547 17586 Face 77090 14653 47896 38547 Face 77091 4613 38548 20939 Face 77092 4613 11348 38548 Face 77093 39621 38549 35963 Face 77094 41088 18236 38549 Face 77095 10774 38550 23449 Face 77096 10774 33923 38550 Face 77097 7146 38551 23545 Face 77098 7146 21920 38551 Face 77099 12630 38552 10971 Face 77100 12630 35723 38552 Face 77101 28773 38553 36212 Face 77102 45648 20933 38553 Face 77103 10294 38554 17695 Face 77104 10294 34445 38554 Face 77105 28287 38555 10008 Face 77106 28287 12660 38555 Face 77107 2080 38556 24029 Face 77108 2080 33791 38556 Face 77109 13665 38557 35611 Face 77110 13665 23931 38557 Face 77111 10746 38558 20662 Face 77112 10746 22051 38558 Face 77113 16337 38559 27867 Face 77114 16337 48721 38559 Face 77115 49656 38560 8685 Face 77116 5461 18169 38560 Face 77117 4930 38561 48694 Face 77118 4930 30391 38561 Face 77119 3063 38562 15920 Face 77120 3063 30994 38562 Face 77121 28055 38563 6946 Face 77122 28055 38660 38563 Face 77123 5799 38564 27985 Face 77124 5799 18638 38564 Face 77125 28303 38565 17836 Face 77126 28303 21020 38565 Face 77127 8790 38566 29798 Face 77128 8790 637 38566 Face 77129 10178 38567 48086 Face 77130 10178 45402 38567 Face 77131 14585 48979 28027 Face 77132 14585 37382 38569 Face 77133 38568 38569 23315 Face 77134 48979 14585 38569 Face 77135 8008 38570 37824 Face 77136 8008 35611 38570 Face 77137 6117 38571 44294 Face 77138 6117 17236 38571 Face 77139 7325 38572 15307 Face 77140 7325 29530 38572 Face 77141 13303 38573 28393 Face 77142 13303 22472 38573 Face 77143 29708 38574 27552 Face 77144 29708 16053 38574 Face 77145 8309 38575 5644 Face 77146 8309 14169 38575 Face 77147 2958 38576 25952 Face 77148 2958 49146 38576 Face 77149 34499 38577 19498 Face 77150 48527 48526 38577 Face 77151 34499 48527 38577 Face 77152 34499 28147 38578 Face 77153 19607 38579 22250 Face 77154 19607 23335 38579 Face 77155 20169 38580 18518 Face 77156 48251 35613 38580 Face 77157 38582 38581 32015 Face 77158 8110 18434 38581 Face 77159 8110 38582 30651 Face 77160 8110 38581 38582 Face 77161 19170 38583 38667 Face 77162 19170 37636 38583 Face 77163 11466 38584 1533 Face 77164 11466 27004 38584 Face 77165 9681 38585 7307 Face 77166 9681 28468 38585 Face 77167 3869 38586 41219 Face 77168 3869 20208 38586 Face 77169 10493 38587 2418 Face 77170 10493 7663 38587 Face 77171 3873 38588 24583 Face 77172 3873 23311 38588 Face 77173 4234 38589 22888 Face 77174 4234 9969 38589 Face 77175 24638 38590 8323 Face 77176 24638 13246 38590 Face 77177 18356 38591 796 Face 77178 38592 17824 38591 Face 77179 18356 38592 38591 Face 77180 18356 13490 38592 Face 77181 9437 38593 2359 Face 77182 9437 2215 38593 Face 77183 25498 38594 29165 Face 77184 25498 24726 38594 Face 77185 38597 38595 11124 Face 77186 4610 42668 38595 Face 77187 4610 38596 14227 Face 77188 4610 7123 38596 Face 77189 4610 38597 26376 Face 77190 4610 38595 38597 Face 77191 26565 38598 424 Face 77192 26565 16188 38598 Face 77193 3973 38599 15817 Face 77194 3973 29723 38599 Face 77195 6395 38600 8124 Face 77196 6395 22174 38600 Face 77197 44828 38601 29834 Face 77198 1489 19267 38601 Face 77199 14959 38602 560 Face 77200 14959 43920 38602 Face 77201 38604 38603 2617 Face 77202 38604 33569 38603 Face 77203 6939 38604 2617 Face 77204 6939 33569 38604 Face 77205 5710 38605 9087 Face 77206 45151 33824 38605 Face 77207 15809 38606 1052 Face 77208 15809 9334 48322 Face 77209 21818 38607 7740 Face 77210 21818 25449 38607 Face 77211 3315 38608 21228 Face 77212 3315 34940 38608 Face 77213 7865 38609 2874 Face 77214 7865 29973 38609 Face 77215 23077 38610 29356 Face 77216 23077 23322 38610 Face 77217 20387 38611 37476 Face 77218 20387 37759 38611 Face 77219 7206 38612 26293 Face 77220 7206 38308 38612 Face 77221 9656 38613 32494 Face 77222 9656 10130 38613 Face 77223 6446 38614 18738 Face 77224 6446 505 38614 Face 77225 8055 38615 37452 Face 77226 8055 2930 38615 Face 77227 3769 38616 10659 Face 77228 3769 29689 38616 Face 77229 10290 38617 8033 Face 77230 48669 13580 38617 Face 77231 9141 38618 20640 Face 77232 9141 18827 38618 Face 77233 19409 38619 41771 Face 77234 40038 14129 38619 Face 77235 13082 38620 46492 Face 77236 13082 30383 38620 Face 77237 3993 38621 26104 Face 77238 3993 33534 38621 Face 77239 7368 38622 1236 Face 77240 38623 7367 49749 Face 77241 7368 38623 49749 Face 77242 7368 49942 38623 Face 77243 10972 38624 225 Face 77244 10972 16673 38624 Face 77245 20911 38625 34146 Face 77246 20911 26830 38625 Face 77247 21616 38626 28110 Face 77248 21616 552 38626 Face 77249 28171 38627 30582 Face 77250 28171 9583 38627 Face 77251 22796 38628 8271 Face 77252 22796 49206 38628 Face 77253 4453 38629 24474 Face 77254 4453 38031 38629 Face 77255 19137 38630 46965 Face 77256 19137 41202 38630 Face 77257 2827 38631 21718 Face 77258 2827 17561 38631 Face 77259 14326 38632 30014 Face 77260 14326 34425 38632 Face 77261 1999 38633 46120 Face 77262 1999 31812 38633 Face 77263 2500 38634 26266 Face 77264 2500 16004 38634 Face 77265 10241 38635 11982 Face 77266 10241 20762 38635 Face 77267 7426 38636 25793 Face 77268 7426 18086 38636 Face 77269 25264 38637 31992 Face 77270 25264 23928 38637 Face 77271 16935 38638 35449 Face 77272 16935 5494 38638 Face 77273 11171 38639 39162 Face 77274 38640 28790 38639 Face 77275 11171 38640 38639 Face 77276 11171 2337 38640 Face 77277 49718 38641 19488 Face 77278 242 27211 38641 Face 77279 1521 38642 33942 Face 77280 1521 21898 38642 Face 77281 20497 38643 20163 Face 77282 20497 9428 38643 Face 77283 14083 38644 17603 Face 77284 14083 23773 38644 Face 77285 19529 38645 3877 Face 77286 19529 45355 38645 Face 77287 12378 38646 36257 Face 77288 12378 34064 38646 Face 77289 2846 38647 46566 Face 77290 2846 17011 38647 Face 77291 3674 38648 40154 Face 77292 39182 8248 38648 Face 77293 45406 38649 40539 Face 77294 8298 24942 38649 Face 77295 21304 38650 35596 Face 77296 21304 40640 38650 Face 77297 7423 38651 41841 Face 77298 7423 45169 38651 Face 77299 30488 38652 891 Face 77300 30488 12850 38652 Face 77301 23862 38653 2950 Face 77302 23862 22925 38653 Face 77303 10945 39960 18586 Face 77304 10945 31090 39960 Face 77305 21291 38655 29337 Face 77306 21291 7912 38655 Face 77307 19543 38656 31876 Face 77308 19543 2121 38656 Face 77309 22319 38657 12845 Face 77310 22319 4373 38657 Face 77311 31093 38658 33805 Face 77312 31093 7473 38658 Face 77313 6556 40388 1493 Face 77314 6556 27004 38659 Face 77315 296 38660 28055 Face 77316 296 47840 38660 Face 77317 12233 38661 28861 Face 77318 12233 34403 38661 Face 77319 15610 38662 28735 Face 77320 15610 10641 38662 Face 77321 11218 38663 48980 Face 77322 11218 19889 38663 Face 77323 6927 38664 41559 Face 77324 6927 22975 38664 Face 77325 19866 38665 38028 Face 77326 19866 7786 38665 Face 77327 37382 38666 38569 Face 77328 37382 49688 38666 Face 77329 15931 38667 38583 Face 77330 15931 22354 38667 Face 77331 16108 38668 35692 Face 77332 16108 433 38668 Face 77333 5135 38669 38357 Face 77334 5135 17314 38669 Face 77335 19404 38670 5964 Face 77336 19404 47864 38670 Face 77337 12249 38671 13988 Face 77338 12249 4468 38671 Face 77339 12065 38672 6484 Face 77340 12065 46267 38672 Face 77341 10292 38673 13500 Face 77342 38674 30457 38673 Face 77343 10292 38674 38673 Face 77344 10292 28855 38674 Face 77345 11036 38675 38599 Face 77346 11036 49774 38675 Face 77347 650 38676 37409 Face 77348 38677 39948 38676 Face 77349 650 38677 38676 Face 77350 42803 13339 38677 Face 77351 2502 38678 43960 Face 77352 2502 14053 38678 Face 77353 28933 38679 31105 Face 77354 41666 3608 38679 Face 77355 8983 38680 38645 Face 77356 8983 36264 38680 Face 77357 17634 38681 2748 Face 77358 38682 40998 38681 Face 77359 17634 38682 38681 Face 77360 17634 30809 38682 Face 77361 14919 38683 30448 Face 77362 14919 3162 38683 Face 77363 20119 38684 47257 Face 77364 20119 2951 38684 Face 77365 16808 38685 17774 Face 77366 16808 30927 38685 Face 77367 42566 38686 25293 Face 77368 1054 9050 38686 Face 77369 5930 38687 16310 Face 77370 5930 15522 38687 Face 77371 26174 38688 9927 Face 77372 26174 29882 38688 Face 77373 6584 38689 18782 Face 77374 6584 12757 38689 Face 77375 41002 38690 5789 Face 77376 13345 6973 38690 Face 77377 4378 38691 31195 Face 77378 4378 2639 38691 Face 77379 11905 38692 35114 Face 77380 11905 26282 38692 Face 77381 243 38693 3410 Face 77382 243 25257 38693 Face 77383 25428 38694 27939 Face 77384 25428 44577 38694 Face 77385 4315 38695 27071 Face 77386 4315 43689 38695 Face 77387 3788 38696 35582 Face 77388 3788 8948 38696 Face 77389 21983 38697 35897 Face 77390 21983 10685 38697 Face 77391 7572 38698 25046 Face 77392 7572 11945 38698 Face 77393 5359 38699 1168 Face 77394 42094 6593 38699 Face 77395 15330 38700 33158 Face 77396 42623 30687 38700 Face 77397 27270 38701 10964 Face 77398 27270 45181 38701 Face 77399 14743 38702 33837 Face 77400 14743 38118 38702 Face 77401 7690 38703 27708 Face 77402 7690 6582 38703 Face 77403 410 38704 42589 Face 77404 410 32734 38704 Face 77405 17282 38705 21295 Face 77406 17282 8500 38705 Face 77407 8873 38706 32185 Face 77408 8873 14914 38706 Face 77409 7880 38707 28741 Face 77410 38708 27151 38707 Face 77411 7880 38708 38707 Face 77412 7880 14608 38708 Face 77413 23174 38709 22376 Face 77414 23174 23176 38709 Face 77415 38711 46612 24380 Face 77416 38711 22922 38710 Face 77417 5692 38711 5418 Face 77418 5692 22922 38711 Face 77419 39721 38712 36737 Face 77420 39721 9005 38712 Face 77421 465 38713 12537 Face 77422 465 11598 38713 Face 77423 30212 38714 4032 Face 77424 30212 21379 38714 Face 77425 12027 38715 32360 Face 77426 12027 2838 38715 Face 77427 6996 38716 46236 Face 77428 6996 35313 38716 Face 77429 1836 38717 11267 Face 77430 1836 25318 38717 Face 77431 20489 38718 5653 Face 77432 20489 29659 38718 Face 77433 43489 38719 7922 Face 77434 11772 49734 38719 Face 77435 41170 38720 21058 Face 77436 5620 25375 38720 Face 77437 46862 38721 23913 Face 77438 21371 36268 38721 Face 77439 4705 46777 23716 Face 77440 4705 26864 38722 Face 77441 9232 38723 11780 Face 77442 9232 29271 38723 Face 77443 12111 38724 26458 Face 77444 12111 1089 38724 Face 77445 6407 38725 4824 Face 77446 6407 9243 38725 Face 77447 14967 38726 22922 Face 77448 14967 26336 38726 Face 77449 3482 38727 39477 Face 77450 3482 18649 38727 Face 77451 4393 38728 22527 Face 77452 4393 22528 38728 Face 77453 45224 38729 9859 Face 77454 2763 22454 38729 Face 77455 9352 38730 49746 Face 77456 9352 14531 38730 Face 77457 464 38731 21399 Face 77458 48319 20775 38731 Face 77459 464 48319 38731 Face 77460 464 24752 38732 Face 77461 19252 38733 11507 Face 77462 19252 5489 38733 Face 77463 3772 38734 36246 Face 77464 3772 14864 38734 Face 77465 2631 38735 28350 Face 77466 2631 12513 38735 Face 77467 14783 38736 34966 Face 77468 14783 44697 38736 Face 77469 13466 38737 41074 Face 77470 13466 49402 38737 Face 77471 11525 38738 34893 Face 77472 11525 11526 38738 Face 77473 975 38739 6156 Face 77474 975 28507 38739 Face 77475 3034 38740 27100 Face 77476 38741 23128 38740 Face 77477 3034 38741 38740 Face 77478 3034 49745 38741 Face 77479 8833 38742 5657 Face 77480 8833 15308 38742 Face 77481 15352 38743 740 Face 77482 15352 26514 38743 Face 77483 18940 38744 40312 Face 77484 49908 26587 38744 Face 77485 5811 38745 12485 Face 77486 5811 39642 38745 Face 77487 11576 38746 28583 Face 77488 11576 16170 38746 Face 77489 3393 38747 9223 Face 77490 3393 33663 38747 Face 77491 21509 38748 4861 Face 77492 21509 21919 38748 Face 77493 19301 38749 21793 Face 77494 19301 38445 38749 Face 77495 27041 38750 16868 Face 77496 27041 2170 38750 Face 77497 4758 38751 46674 Face 77498 39479 32564 38751 Face 77499 18129 38752 1245 Face 77500 18129 5078 38752 Face 77501 1935 38753 18877 Face 77502 1935 26877 38753 Face 77503 9942 38754 17215 Face 77504 9942 2445 38754 Face 77505 22524 38755 12857 Face 77506 22524 11486 38755 Face 77507 1588 38756 44231 Face 77508 1588 18449 38756 Face 77509 2343 49245 22773 Face 77510 2343 19667 38757 Face 77511 6188 38758 24617 Face 77512 6188 16193 38758 Face 77513 1366 38759 34712 Face 77514 1366 21211 38759 Face 77515 14826 38760 32261 Face 77516 14826 40809 38760 Face 77517 44774 38761 20554 Face 77518 15943 43201 38761 Face 77519 6538 38762 43892 Face 77520 6538 18955 38762 Face 77521 8818 38763 46361 Face 77522 8818 2694 38763 Face 77523 12043 38764 33639 Face 77524 38765 25612 38764 Face 77525 12043 38765 38764 Face 77526 12043 24513 38765 Face 77527 12333 38766 4338 Face 77528 12333 30458 38766 Face 77529 31800 38767 1832 Face 77530 31800 22509 38767 Face 77531 9536 38768 36910 Face 77532 9536 30620 38768 Face 77533 7495 38769 37177 Face 77534 7495 35917 38769 Face 77535 4257 38770 35213 Face 77536 4257 1240 38770 Face 77537 45681 38771 31238 Face 77538 10022 33886 38771 Face 77539 16555 47317 26146 Face 77540 16555 8406 38772 Face 77541 2574 38773 43478 Face 77542 48517 28447 38773 Face 77543 46536 43776 27173 Face 77544 11023 25119 38774 Face 77545 14451 38775 9969 Face 77546 14451 17512 38775 Face 77547 10654 38776 18615 Face 77548 10654 3661 38776 Face 77549 1232 38777 37311 Face 77550 48756 15822 38777 Face 77551 43059 38778 26131 Face 77552 13093 7334 38778 Face 77553 21514 38779 3199 Face 77554 21514 46028 38779 Face 77555 8213 38780 2400 Face 77556 8213 24291 38780 Face 77557 3957 38781 15304 Face 77558 3957 28215 38781 Face 77559 22591 38782 4092 Face 77560 22591 26941 38782 Face 77561 45812 38783 21033 Face 77562 39900 15524 38783 Face 77563 10385 38784 47728 Face 77564 40482 28744 38784 Face 77565 34631 38785 5954 Face 77566 34631 27429 38785 Face 77567 14422 38786 36871 Face 77568 14422 48059 38786 Face 77569 39488 38787 1814 Face 77570 159 17344 38787 Face 77571 2978 38788 29591 Face 77572 2978 12993 38788 Face 77573 9866 38789 6722 Face 77574 9866 15339 38789 Face 77575 9567 38790 23121 Face 77576 9567 16893 38790 Face 77577 14781 38791 38544 Face 77578 14781 2739 38791 Face 77579 15899 38792 49612 Face 77580 15899 45346 38792 Face 77581 12820 38793 20256 Face 77582 12820 47457 38793 Face 77583 11182 38794 2519 Face 77584 11182 30914 38794 Face 77585 14309 38795 4164 Face 77586 14309 403 38795 Face 77587 17952 38796 45289 Face 77588 17952 8955 38796 Face 77589 4873 38797 19389 Face 77590 4873 33959 46636 Face 77591 30838 38798 8495 Face 77592 30838 12481 38798 Face 77593 15110 38799 36393 Face 77594 39310 28044 38799 Face 77595 13325 38800 28476 Face 77596 13325 26401 38800 Face 77597 18549 38801 43262 Face 77598 18549 13517 38801 Face 77599 10503 38802 7422 Face 77600 10503 27413 38802 Face 77601 11039 38803 5955 Face 77602 11039 21624 38803 Face 77603 8406 38804 26431 Face 77604 44222 28070 38804 Face 77605 2588 38805 28836 Face 77606 2588 20332 38805 Face 77607 5917 38806 29341 Face 77608 42351 37611 38806 Face 77609 498 38807 12270 Face 77610 498 28746 38807 Face 77611 17174 38808 14081 Face 77612 17174 41409 38808 Face 77613 10519 38809 26087 Face 77614 10519 18199 38809 Face 77615 12300 38810 31311 Face 77616 40070 20328 38810 Face 77617 15565 38811 3810 Face 77618 15565 2033 38811 Face 77619 25934 38812 1820 Face 77620 25934 16263 38812 Face 77621 5707 38813 36546 Face 77622 5707 9751 38813 Face 77623 10457 38814 31880 Face 77624 10457 21344 38814 Face 77625 10289 38815 14303 Face 77626 10289 35821 38815 Face 77627 21633 38816 40192 Face 77628 21633 46371 38816 Face 77629 29268 38817 5576 Face 77630 29268 512 38817 Face 77631 12984 38818 43458 Face 77632 12984 638 38818 Face 77633 14125 38819 22112 Face 77634 14125 14126 38819 Face 77635 14435 38820 454 Face 77636 14435 41392 38820 Face 77637 3639 38821 5417 Face 77638 3639 28204 38821 Face 77639 16370 38822 16369 Face 77640 16370 39971 38822 Face 77641 22639 38823 4085 Face 77642 22639 10407 38823 Face 77643 12922 38824 47325 Face 77644 12922 9875 38824 Face 77645 15627 38825 32527 Face 77646 15627 33067 46728 Face 77647 26361 38826 8355 Face 77648 49332 2675 38826 Face 77649 9135 38827 15694 Face 77650 9135 11908 38827 Face 77651 7259 38828 21979 Face 77652 7259 14422 38829 Face 77653 38828 38829 11495 Face 77654 38828 7259 38829 Face 77655 8462 38830 49056 Face 77656 8462 23592 38830 Face 77657 4138 38831 13017 Face 77658 4138 15231 38831 Face 77659 13906 38832 13907 Face 77660 13906 25688 38832 Face 77661 3185 38833 11604 Face 77662 3185 35181 38833 Face 77663 26510 38834 28339 Face 77664 26510 4031 38834 Face 77665 48385 38835 12408 Face 77666 993 48626 38835 Face 77667 842 38836 11517 Face 77668 842 28475 38836 Face 77669 23035 38837 32081 Face 77670 23035 31191 38837 Face 77671 6220 38838 20898 Face 77672 6220 12081 38838 Face 77673 9430 38839 28753 Face 77674 9430 16577 38839 Face 77675 41717 38840 25300 Face 77676 42537 26639 38840 Face 77677 8310 38841 22254 Face 77678 8310 29345 38841 Face 77679 26723 38842 28022 Face 77680 26723 15727 38842 Face 77681 10858 38843 23333 Face 77682 10858 24736 38843 Face 77683 38845 38844 20041 Face 77684 13198 61 38844 Face 77685 13198 38845 23348 Face 77686 13198 38844 38845 Face 77687 20240 38846 14676 Face 77688 20240 14882 38846 Face 77689 46179 38847 13859 Face 77690 16272 40715 38847 Face 77691 19961 38848 18434 Face 77692 19961 8702 38848 Face 77693 11510 38849 44395 Face 77694 11510 48234 38849 Face 77695 14284 38850 18173 Face 77696 14284 6004 38850 Face 77697 3780 39028 33372 Face 77698 3780 13856 39028 Face 77699 4917 38852 10528 Face 77700 38853 11393 38852 Face 77701 4917 38853 38852 Face 77702 4917 26559 38853 Face 77703 7091 38854 26644 Face 77704 7091 21250 38854 Face 77705 1936 38855 31514 Face 77706 1936 28304 38855 Face 77707 1143 38856 19908 Face 77708 1143 25392 38856 Face 77709 25835 38857 10222 Face 77710 25835 41369 38857 Face 77711 11567 38858 5256 Face 77712 11567 16358 38858 Face 77713 21521 38859 25435 Face 77714 44573 15885 38859 Face 77715 2303 38860 7877 Face 77716 2303 15538 38860 Face 77717 18127 38861 25711 Face 77718 18127 17695 38861 Face 77719 18987 38862 16249 Face 77720 18987 18986 38862 Face 77721 14629 38863 17585 Face 77722 14629 4931 38863 Face 77723 38863 38864 17585 Face 77724 38863 9007 38864 Face 77725 14984 38865 21826 Face 77726 14984 30132 38865 Face 77727 15795 38866 6847 Face 77728 15795 32582 38866 Face 77729 41607 38867 241 Face 77730 11037 32275 38867 Face 77731 3732 38868 33685 Face 77732 48621 49904 38868 Face 77733 40244 38869 37053 Face 77734 40244 21118 38869 Face 77735 38871 38870 4184 Face 77736 15941 15940 38870 Face 77737 38872 38871 8550 Face 77738 15941 38870 38871 Face 77739 15941 38872 26829 Face 77740 15941 38871 38872 Face 77741 15511 38873 30373 Face 77742 15511 25813 38873 Face 77743 12876 38874 19228 Face 77744 12876 37256 38874 Face 77745 170 38875 18818 Face 77746 170 17937 38875 Face 77747 15851 38876 41673 Face 77748 39882 45376 38876 Face 77749 13568 38877 38049 Face 77750 13568 10097 38877 Face 77751 4899 38878 33367 Face 77752 4899 2655 38878 Face 77753 1158 38879 28435 Face 77754 1158 8729 38879 Face 77755 10206 38880 42367 Face 77756 10206 31533 38880 Face 77757 10513 38881 12511 Face 77758 10513 36097 38881 Face 77759 10710 38882 41925 Face 77760 10710 1700 38882 Face 77761 34687 38883 18912 Face 77762 34687 9796 38883 Face 77763 27699 38884 37327 Face 77764 27699 27700 38884 Face 77765 8951 38885 15991 Face 77766 8951 19613 38885 Face 77767 8951 38886 17287 Face 77768 8951 30353 38886 Face 77769 7313 38887 14735 Face 77770 7313 21851 38887 Face 77771 10232 38888 41148 Face 77772 10232 34491 38888 Face 77773 1843 38889 12677 Face 77774 1843 29634 38889 Face 77775 8041 38890 31856 Face 77776 8041 36708 38890 Face 77777 10808 38891 29991 Face 77778 10808 23437 38891 Face 77779 23956 38892 45209 Face 77780 23956 33795 38892 Face 77781 20071 38893 31487 Face 77782 20071 48680 38893 Face 77783 7825 38894 17074 Face 77784 7825 3619 38894 Face 77785 20747 38895 30878 Face 77786 20747 8375 38895 Face 77787 6002 38896 19466 Face 77788 38897 36967 38896 Face 77789 6002 38897 38896 Face 77790 6002 26944 38897 Face 77791 5379 38898 19510 Face 77792 38899 20112 38898 Face 77793 5379 38899 38898 Face 77794 5379 21544 38899 Face 77795 18799 38900 123 Face 77796 18799 36320 38900 Face 77797 24890 38901 17114 Face 77798 24890 7177 38901 Face 77799 38903 38902 7456 Face 77800 843 11301 38902 Face 77801 46249 38903 32543 Face 77802 843 38902 38903 Face 77803 23107 38904 46933 Face 77804 23107 37466 38904 Face 77805 23938 38905 29948 Face 77806 23938 5832 38905 Face 77807 9783 38906 30117 Face 77808 9783 37457 38906 Face 77809 606 38907 19997 Face 77810 606 20888 38907 Face 77811 11921 38908 46796 Face 77812 11921 26081 38908 Face 77813 11010 38909 35571 Face 77814 11010 8898 38909 Face 77815 20569 38910 35612 Face 77816 20569 13524 38910 Face 77817 37270 38911 48544 Face 77818 37270 3898 38911 Face 77819 13574 38912 34100 Face 77820 13574 49798 38912 Face 77821 16799 38913 26037 Face 77822 16799 11529 38913 Face 77823 23675 38914 42216 Face 77824 23675 4160 38914 Face 77825 8287 38915 22177 Face 77826 38916 2621 38915 Face 77827 8287 38916 38915 Face 77828 8287 22473 38916 Face 77829 42304 38917 27125 Face 77830 10784 48037 38917 Face 77831 3567 38918 13847 Face 77832 3567 41351 38918 Face 77833 38920 38919 18625 Face 77834 27034 20952 38919 Face 77835 27034 38920 27033 Face 77836 27034 38919 38920 Face 77837 27778 38921 14886 Face 77838 27778 455 38921 Face 77839 10957 38922 36282 Face 77840 10957 25798 38922 Face 77841 7345 38923 18972 Face 77842 7345 46041 38923 Face 77843 8179 38924 23126 Face 77844 8179 23196 38924 Face 77845 15686 38925 239 Face 77846 15686 40868 38925 Face 77847 9406 38926 18676 Face 77848 9406 36358 38926 Face 77849 10517 38927 37770 Face 77850 45315 1218 41961 Face 77851 18774 38928 44361 Face 77852 18774 24748 38928 Face 77853 7879 38929 7449 Face 77854 7879 15808 38929 Face 77855 16783 38930 3974 Face 77856 16783 10733 38930 Face 77857 26058 38931 2261 Face 77858 26058 3204 38931 Face 77859 1841 38932 26000 Face 77860 1841 12216 38932 Face 77861 1504 38933 20650 Face 77862 1504 47621 38933 Face 77863 4411 38934 47418 Face 77864 4411 5598 38934 Face 77865 14678 38935 12927 Face 77866 14678 27499 38935 Face 77867 23745 38936 41509 Face 77868 23745 38438 38936 Face 77869 12022 38937 37746 Face 77870 12022 41599 38937 Face 77871 22262 38938 15695 Face 77872 22262 32706 38938 Face 77873 4266 38939 48530 Face 77874 4266 23088 38939 Face 77875 14532 38940 45163 Face 77876 14532 2840 38940 Face 77877 484 38941 22936 Face 77878 484 22662 38941 Face 77879 24253 38942 36014 Face 77880 24253 15735 38942 Face 77881 17737 38943 12513 Face 77882 17737 42930 38943 Face 77883 16227 38944 42358 Face 77884 16227 39334 38944 Face 77885 14491 38945 4172 Face 77886 48780 32253 38945 Face 77887 7650 38946 49225 Face 77888 7650 49795 38946 Face 77889 14401 38947 21509 Face 77890 14401 20942 38947 Face 77891 24388 38948 1150 Face 77892 24388 12255 38948 Face 77893 23953 38949 30479 Face 77894 44881 30645 38949 Face 77895 4171 38950 7848 Face 77896 4171 25869 38950 Face 77897 20949 38951 44399 Face 77898 20949 5051 38951 Face 77899 14912 38952 638 Face 77900 14912 21355 38952 Face 77901 6558 38953 15741 Face 77902 6558 36923 38953 Face 77903 3488 38954 30470 Face 77904 41304 4968 38954 Face 77905 5179 38955 17715 Face 77906 5179 47752 38955 Face 77907 10601 38956 18316 Face 77908 10601 11749 38956 Face 77909 41692 38957 20498 Face 77910 14556 4784 38957 Face 77911 37 38958 31324 Face 77912 37 20358 38958 Face 77913 9023 38959 16588 Face 77914 9023 18697 38959 Face 77915 21593 38960 2548 Face 77916 21593 31360 38960 Face 77917 11982 38961 36424 Face 77918 11982 5285 38961 Face 77919 5180 38962 15898 Face 77920 5180 47752 38962 Face 77921 1609 38963 30191 Face 77922 1609 7586 38963 Face 77923 3709 38964 8165 Face 77924 3709 16693 38964 Face 77925 22616 38965 25 Face 77926 22616 24148 38965 Face 77927 35152 38966 18305 Face 77928 35152 21141 38966 Face 77929 25577 38967 10387 Face 77930 25577 19692 38967 Face 77931 2115 38968 17357 Face 77932 2115 26650 38968 Face 77933 48776 38969 13715 Face 77934 2168 6502 38969 Face 77935 24457 38970 8411 Face 77936 24457 2378 38970 Face 77937 21796 38971 45172 Face 77938 21796 2196 38971 Face 77939 11376 38972 17856 Face 77940 11376 3915 38972 Face 77941 12629 38973 31152 Face 77942 12629 7397 38973 Face 77943 39465 38974 24102 Face 77944 3582 32328 38974 Face 77945 6748 38975 42666 Face 77946 6748 47556 38975 Face 77947 38977 38976 23900 Face 77948 4739 25908 38976 Face 77949 4739 38977 35977 Face 77950 4739 38976 38977 Face 77951 21219 38978 9576 Face 77952 21219 22432 38978 Face 77953 5652 38979 34518 Face 77954 5652 2912 38979 Face 77955 6965 38980 19507 Face 77956 6965 24651 38980 Face 77957 44028 38981 14049 Face 77958 2111 4150 38981 Face 77959 6823 38982 16852 Face 77960 6823 37500 38982 Face 77961 16540 38983 36651 Face 77962 16540 28438 38983 Face 77963 9368 38984 3076 Face 77964 9368 35355 38984 Face 77965 24151 38985 23212 Face 77966 24151 29227 38985 Face 77967 45740 38986 36909 Face 77968 14141 18124 38986 Face 77969 9629 38987 27192 Face 77970 9629 12131 38987 Face 77971 12131 38988 38987 Face 77972 12131 21290 38988 Face 77973 2760 38989 38273 Face 77974 2760 7364 38989 Face 77975 20220 38990 29966 Face 77976 20220 16064 38990 Face 77977 9623 38991 38219 Face 77978 9623 26437 38991 Face 77979 38993 38992 1771 Face 77980 19361 33646 38992 Face 77981 19361 38993 38386 Face 77982 19361 38992 38993 Face 77983 28861 38994 15882 Face 77984 28861 37686 38994 Face 77985 45339 38995 48933 Face 77986 766 19150 38995 Face 77987 19592 38996 27869 Face 77988 19592 44988 38996 Face 77989 48312 38997 35038 Face 77990 254 39503 38997 Face 77991 45055 38998 6189 Face 77992 12761 29836 38998 Face 77993 4227 38999 17836 Face 77994 4227 36283 38999 Face 77995 11598 39000 38713 Face 77996 11598 19728 39000 Face 77997 2706 39001 21601 Face 77998 2706 7299 39001 Face 77999 11062 39002 29401 Face 78000 11062 14701 39002 Face 78001 11863 39003 1999 Face 78002 11863 34053 39003 Face 78003 16425 39004 40376 Face 78004 16425 34234 39004 Face 78005 18845 39005 37779 Face 78006 18845 5645 39005 Face 78007 1103 39006 30122 Face 78008 1103 42146 39006 Face 78009 19829 39007 9344 Face 78010 39008 47172 39007 Face 78011 19829 39008 39007 Face 78012 19829 36048 39008 Face 78013 13592 39009 47869 Face 78014 13592 39418 39009 Face 78015 23635 39010 15223 Face 78016 39011 15743 39010 Face 78017 23635 39011 39010 Face 78018 23635 27453 39011 Face 78019 8514 39012 33092 Face 78020 39013 22871 39012 Face 78021 8514 39013 39012 Face 78022 41482 41767 39013 Face 78023 32487 39014 42994 Face 78024 32487 32488 39014 Face 78025 41363 39015 5922 Face 78026 21061 3963 39015 Face 78027 3661 39016 22789 Face 78028 3661 10579 39016 Face 78029 15314 39017 4960 Face 78030 15314 13141 39017 Face 78031 19881 39018 12344 Face 78032 19881 2878 39018 Face 78033 11512 39019 46819 Face 78034 11512 42069 39019 Face 78035 748 39020 10211 Face 78036 39021 18200 39020 Face 78037 748 39021 39020 Face 78038 748 13874 39021 Face 78039 17460 39022 28473 Face 78040 17460 17461 39022 Face 78041 8704 39023 9756 Face 78042 8704 35671 39023 Face 78043 10134 39024 29954 Face 78044 10134 6568 39024 Face 78045 15800 39025 28097 Face 78046 15800 30002 39025 Face 78047 5493 39026 21559 Face 78048 5493 5494 39026 Face 78049 12871 39027 34864 Face 78050 12871 32625 39027 Face 78051 38851 39028 45504 Face 78052 38851 33372 39028 Face 78053 18027 39029 24495 Face 78054 18027 6729 39029 Face 78055 24300 39030 28321 Face 78056 24300 36534 39030 Face 78057 2214 39031 8980 Face 78058 2214 25945 39031 Face 78059 34169 39032 4510 Face 78060 34169 18986 39032 Face 78061 2063 39033 18266 Face 78062 2063 34163 39033 Face 78063 20960 39034 28462 Face 78064 20960 45042 39034 Face 78065 15077 39035 38533 Face 78066 15077 1658 39035 Face 78067 17758 39036 3245 Face 78068 49465 25541 39036 Face 78069 14906 39037 26974 Face 78070 14906 8671 39037 Face 78071 7378 39038 45677 Face 78072 7378 252 39038 Face 78073 11356 39039 45219 Face 78074 39040 7869 39039 Face 78075 11356 39040 39039 Face 78076 11356 39161 39040 Face 78077 14110 39041 22926 Face 78078 14110 7618 39041 Face 78079 5682 39042 25384 Face 78080 5682 36002 39042 Face 78081 11654 39043 38596 Face 78082 11654 21571 39043 Face 78083 19833 39044 33296 Face 78084 19833 34645 39044 Face 78085 46785 39045 1574 Face 78086 5582 18747 39045 Face 78087 9424 39046 15428 Face 78088 9424 35490 39046 Face 78089 25548 39047 12579 Face 78090 25548 47596 39047 Face 78091 13053 39048 27881 Face 78092 13053 47517 39048 Face 78093 39050 39049 12175 Face 78094 39050 3038 39049 Face 78095 17750 39050 12175 Face 78096 17750 20748 39050 Face 78097 14714 39051 7061 Face 78098 14714 21913 39051 Face 78099 16579 39052 33533 Face 78100 16579 3133 39052 Face 78101 16650 39053 40671 Face 78102 16650 16748 39053 Face 78103 5601 39054 27085 Face 78104 5601 1251 39054 Face 78105 17808 39055 17807 Face 78106 17808 19014 39055 Face 78107 5227 39056 28637 Face 78108 5227 31008 39056 Face 78109 27272 39057 21925 Face 78110 27272 43450 39057 Face 78111 14184 39058 30520 Face 78112 14184 25493 39058 Face 78113 15909 39059 32241 Face 78114 15909 10212 39059 Face 78115 39061 39060 782 Face 78116 39061 40866 39060 Face 78117 8898 39061 38909 Face 78118 8898 40866 39061 Face 78119 4462 39062 12810 Face 78120 39063 12964 39062 Face 78121 4462 39063 39062 Face 78122 4462 30272 39063 Face 78123 13659 39064 20227 Face 78124 13659 16974 39064 Face 78125 6421 39065 39687 Face 78126 6421 19198 39065 Face 78127 3302 39066 10621 Face 78128 3302 31473 39066 Face 78129 19207 39067 44562 Face 78130 19207 27209 39067 Face 78131 47885 39068 23489 Face 78132 10773 27174 39068 Face 78133 2925 39069 16046 Face 78134 2925 36066 39069 Face 78135 8282 39070 20728 Face 78136 8282 25292 39070 Face 78137 39072 39071 18568 Face 78138 3005 30881 39071 Face 78139 3005 39072 17980 Face 78140 3005 39071 39072 Face 78141 11416 39073 24537 Face 78142 11416 22757 39073 Face 78143 7588 39074 22171 Face 78144 7588 2960 39074 Face 78145 5884 39075 43721 Face 78146 5884 37103 39075 Face 78147 8731 39076 30700 Face 78148 8731 95 39076 Face 78149 2668 39077 37026 Face 78150 2668 29855 39077 Face 78151 34132 39078 16298 Face 78152 39977 44367 39078 Face 78153 2127 49828 11506 Face 78154 43653 17887 39079 Face 78155 21507 39080 10538 Face 78156 21507 32621 39080 Face 78157 48869 39081 9686 Face 78158 39082 25622 39081 Face 78159 17521 39082 39081 Face 78160 17521 10922 39082 Face 78161 8692 39083 35843 Face 78162 8692 5083 39083 Face 78163 7524 39084 31740 Face 78164 7524 15996 39084 Face 78165 15031 39085 22971 Face 78166 15031 26832 39085 Face 78167 26262 39086 10712 Face 78168 26262 6103 39086 Face 78169 11601 39087 26554 Face 78170 11601 45413 39087 Face 78171 23044 39088 22277 Face 78172 23044 5063 39088 Face 78173 14742 39089 35644 Face 78174 14742 1585 39089 Face 78175 13463 39090 45260 Face 78176 13463 10709 39091 Face 78177 39090 39091 10709 Face 78178 39090 13463 39091 Face 78179 2938 39092 37806 Face 78180 2938 41710 39092 Face 78181 24246 39093 33629 Face 78182 24246 5151 39093 Face 78183 10404 39094 17729 Face 78184 45615 21274 39094 Face 78185 8482 39095 44943 Face 78186 8482 10351 39095 Face 78187 5033 39096 7407 Face 78188 5033 15664 39096 Face 78189 8142 39097 37947 Face 78190 8142 1235 39097 Face 78191 9745 39099 14574 Face 78192 9745 25594 39098 Face 78193 39098 39099 9745 Face 78194 39098 4040 39099 Face 78195 48058 39100 31328 Face 78196 25610 19126 39100 Face 78197 27612 39101 115 Face 78198 27612 19650 39101 Face 78199 21040 39102 21039 Face 78200 21040 38359 39102 Face 78201 26381 39103 6904 Face 78202 26381 15181 39103 Face 78203 41140 39104 28317 Face 78204 8068 29416 39104 Face 78205 398 39105 35618 Face 78206 398 25240 39105 Face 78207 5634 39106 41704 Face 78208 5634 28386 39106 Face 78209 789 39107 5347 Face 78210 789 12026 39107 Face 78211 12646 39108 5969 Face 78212 12646 33610 39108 Face 78213 7461 39109 26453 Face 78214 7461 6376 39109 Face 78215 2324 39110 12839 Face 78216 2324 12310 39110 Face 78217 1351 39111 4662 Face 78218 1351 12746 39111 Face 78219 47226 39112 35030 Face 78220 19957 17018 39112 Face 78221 1525 39113 27134 Face 78222 48867 2857 39113 Face 78223 12040 39114 3999 Face 78224 12040 20452 39114 Face 78225 8135 39115 29491 Face 78226 8135 17801 39115 Face 78227 23679 39116 31943 Face 78228 23679 8788 39116 Face 78229 1318 39117 20066 Face 78230 1318 29305 39117 Face 78231 297 39118 23083 Face 78232 297 17231 39118 Face 78233 1902 39119 15410 Face 78234 1902 30769 39119 Face 78235 1043 39120 24720 Face 78236 1043 47508 39120 Face 78237 6036 39121 2463 Face 78238 6036 18096 39121 Face 78239 18102 39122 13626 Face 78240 18102 30375 39122 Face 78241 7779 39123 31263 Face 78242 39772 33992 39123 Face 78243 8115 39124 1587 Face 78244 8115 13572 39124 Face 78245 12863 39125 13061 Face 78246 45130 30402 39125 Face 78247 34077 39126 15418 Face 78248 34077 18218 39126 Face 78249 17073 39127 6378 Face 78250 17073 35651 39127 Face 78251 7010 39128 2824 Face 78252 7010 44755 39128 Face 78253 20936 39129 9464 Face 78254 20936 41217 39129 Face 78255 10184 39130 47588 Face 78256 10184 21390 39130 Face 78257 2333 39131 18159 Face 78258 2333 28547 39131 Face 78259 12176 39132 43113 Face 78260 12176 2229 39132 Face 78261 20855 39133 25055 Face 78262 20855 5711 39133 Face 78263 39133 39134 19595 Face 78264 39133 5711 39134 Face 78265 24933 39135 43342 Face 78266 24933 25635 39135 Face 78267 8851 39136 35660 Face 78268 8851 20971 39136 Face 78269 2532 39137 15742 Face 78270 2532 35346 39137 Face 78271 15509 39138 26073 Face 78272 15509 6731 39138 Face 78273 3194 39139 14307 Face 78274 3194 27352 39139 Face 78275 15542 39140 31365 Face 78276 15542 21538 39140 Face 78277 14206 39141 37164 Face 78278 14206 48503 39141 Face 78279 20865 39142 36850 Face 78280 20865 33907 39142 Face 78281 10474 39143 4220 Face 78282 10474 45241 39143 Face 78283 3819 39144 13864 Face 78284 3819 8684 39144 Face 78285 33093 39145 37276 Face 78286 33093 8857 39145 Face 78287 2730 39146 8976 Face 78288 2730 18196 39146 Face 78289 2291 39147 13024 Face 78290 2291 15201 39147 Face 78291 10996 39148 26564 Face 78292 10996 17273 39148 Face 78293 10545 39149 20421 Face 78294 10545 24627 39149 Face 78295 42601 39150 15388 Face 78296 14362 7004 39150 Face 78297 4268 39151 40932 Face 78298 4268 44046 39151 Face 78299 26237 39152 839 Face 78300 26237 13114 39152 Face 78301 36503 39153 24623 Face 78302 36503 13604 39153 Face 78303 12371 39154 18691 Face 78304 12371 33224 39154 Face 78305 39154 39155 8762 Face 78306 39154 33224 39155 Face 78307 26415 39156 1348 Face 78308 43854 21506 39156 Face 78309 22759 39157 48220 Face 78310 22759 17595 39157 Face 78311 5006 39158 24581 Face 78312 5006 17769 39158 Face 78313 22043 39159 36867 Face 78314 44360 16431 39159 Face 78315 33806 39160 2717 Face 78316 33806 34254 39160 Face 78317 43248 39161 11433 Face 78318 6655 22292 39161 Face 78319 14061 39162 1058 Face 78320 14061 31958 39162 Face 78321 5669 39163 21192 Face 78322 5669 42420 39163 Face 78323 15261 39164 27124 Face 78324 15261 4677 39164 Face 78325 8734 39165 40376 Face 78326 8734 37845 39165 Face 78327 14493 39166 5567 Face 78328 14493 27013 39166 Face 78329 424 39167 19408 Face 78330 424 17566 39167 Face 78331 16037 39168 3625 Face 78332 16037 19812 39168 Face 78333 16401 39169 21682 Face 78334 16401 34891 39169 Face 78335 30678 39170 17437 Face 78336 30678 23294 39170 Face 78337 39172 39171 28001 Face 78338 359 33281 39171 Face 78339 359 39172 28466 Face 78340 359 39171 39172 Face 78341 2770 39173 12675 Face 78342 2770 28400 39173 Face 78343 11970 39174 6772 Face 78344 11970 41826 39174 Face 78345 23457 39175 34951 Face 78346 23457 9038 39175 Face 78347 39177 39176 1812 Face 78348 4995 24278 39176 Face 78349 49456 39177 33867 Face 78350 4995 39176 39177 Face 78351 20065 39178 48374 Face 78352 20065 39908 39178 Face 78353 11952 39179 32473 Face 78354 11952 15021 39179 Face 78355 2467 39180 35384 Face 78356 2467 28892 39180 Face 78357 3674 39181 16309 Face 78358 3674 40154 39181 Face 78359 3674 39182 38648 Face 78360 3674 28843 39182 Face 78361 3863 39183 19889 Face 78362 3863 30840 39183 Face 78363 13062 39184 20239 Face 78364 13062 37195 39184 Face 78365 7078 39185 16082 Face 78366 7078 23478 39185 Face 78367 9062 39186 24560 Face 78368 9062 25241 39186 Face 78369 9062 39187 29624 Face 78370 9062 24560 39187 Face 78371 30655 39188 27532 Face 78372 30655 30656 39188 Face 78373 45614 39189 11379 Face 78374 5239 23923 39189 Face 78375 4821 39190 20691 Face 78376 4821 1829 39190 Face 78377 24776 39191 13996 Face 78378 24776 29627 39191 Face 78379 4319 39192 26473 Face 78380 4319 46865 39192 Face 78381 7777 39193 5261 Face 78382 7777 24616 39193 Face 78383 2213 39194 22549 Face 78384 49680 8649 39194 Face 78385 15322 39195 33880 Face 78386 15322 9533 39195 Face 78387 14476 48770 24145 Face 78388 14476 5078 48770 Face 78389 24 39197 16176 Face 78390 24 38481 39197 Face 78391 4233 39198 22888 Face 78392 4233 6132 39198 Face 78393 2139 39199 37324 Face 78394 2139 21373 39199 Face 78395 12613 39200 32822 Face 78396 12613 14404 39200 Face 78397 27184 39201 29691 Face 78398 27184 24359 39201 Face 78399 21740 39202 48541 Face 78400 21740 16059 39202 Face 78401 18992 39203 29493 Face 78402 18992 38206 39203 Face 78403 7990 39204 27175 Face 78404 7990 37105 39204 Face 78405 8622 39205 8896 Face 78406 8622 36308 39205 Face 78407 25311 39206 16980 Face 78408 25311 35591 39206 Face 78409 33785 39207 48779 Face 78410 33785 12902 39207 Face 78411 11918 39208 25819 Face 78412 11918 10900 39208 Face 78413 7582 39209 37071 Face 78414 7582 8032 39209 Face 78415 13088 39210 4187 Face 78416 39211 3108 39210 Face 78417 13088 39211 39210 Face 78418 13088 36807 39211 Face 78419 4515 39212 27763 Face 78420 4515 35683 39212 Face 78421 6006 39213 8036 Face 78422 6006 36123 39213 Face 78423 2206 39214 36108 Face 78424 2206 14970 39214 Face 78425 39216 39215 29313 Face 78426 2858 27332 39215 Face 78427 2858 39216 34029 Face 78428 2858 39215 39216 Face 78429 29621 39217 20671 Face 78430 29621 7541 39217 Face 78431 22852 39218 26372 Face 78432 22852 32658 39218 Face 78433 8013 39219 36835 Face 78434 8013 1438 39219 Face 78435 28061 39220 26912 Face 78436 28061 36756 39220 Face 78437 15708 39221 33717 Face 78438 15708 31462 39221 Face 78439 9502 39222 32603 Face 78440 9502 19999 39222 Face 78441 12917 39223 21165 Face 78442 42442 8468 39223 Face 78443 17026 39224 37037 Face 78444 17026 27863 39224 Face 78445 13197 39225 49724 Face 78446 13197 26169 39225 Face 78447 2210 39226 15018 Face 78448 2210 30879 39226 Face 78449 7289 39227 5325 Face 78450 7289 16855 39227 Face 78451 4165 39228 9035 Face 78452 4165 4324 39228 Face 78453 8044 39229 18985 Face 78454 8044 36624 39229 Face 78455 18372 39230 9454 Face 78456 18372 43030 39230 Face 78457 44363 39231 32951 Face 78458 7895 34148 39231 Face 78459 10377 39232 7175 Face 78460 10377 27789 39232 Face 78461 17660 39233 4608 Face 78462 17660 14114 39233 Face 78463 2259 39234 9732 Face 78464 2259 25056 39234 Face 78465 1887 39235 11851 Face 78466 1887 34459 39235 Face 78467 39237 39236 20093 Face 78468 17482 315 39236 Face 78469 17482 39237 28819 Face 78470 17482 39236 39237 Face 78471 6532 39238 36374 Face 78472 6532 12249 39238 Face 78473 1059 39239 25441 Face 78474 1059 34614 39239 Face 78475 40628 39240 9979 Face 78476 39697 29149 39240 Face 78477 3585 39241 38244 Face 78478 39242 44386 39241 Face 78479 3585 39242 39241 Face 78480 3585 16689 39242 Face 78481 10739 39243 25840 Face 78482 10739 32559 39243 Face 78483 4649 39244 49477 Face 78484 4649 21751 39244 Face 78485 2045 39245 18855 Face 78486 2045 29649 39245 Face 78487 41217 39246 31504 Face 78488 17788 33032 39246 Face 78489 13434 39247 835 Face 78490 39248 49661 39247 Face 78491 13434 39248 39247 Face 78492 13434 12881 39248 Face 78493 17409 39249 32031 Face 78494 17409 48136 39249 Face 78495 11352 39250 49948 Face 78496 11352 11022 39250 Face 78497 2449 39251 4797 Face 78498 39252 14304 39251 Face 78499 2449 39252 39251 Face 78500 2449 22644 39252 Face 78501 45887 39253 41680 Face 78502 8429 45043 39253 Face 78503 49931 39254 11625 Face 78504 28320 30339 39254 Face 78505 15372 39255 31624 Face 78506 15372 24218 39255 Face 78507 49454 39256 31158 Face 78508 32110 9889 39256 Face 78509 14898 39257 4588 Face 78510 40103 26804 39257 Face 78511 16254 48164 3773 Face 78512 16254 34402 39258 Face 78513 21915 39259 14558 Face 78514 21915 2126 39259 Face 78515 39261 39260 33280 Face 78516 8063 12569 39260 Face 78517 8063 39261 14907 Face 78518 8063 39260 39261 Face 78519 4632 39262 36690 Face 78520 39263 16617 39262 Face 78521 4632 39263 39262 Face 78522 4632 27269 39263 Face 78523 16020 48296 32884 Face 78524 16020 45945 39264 Face 78525 42098 39265 20716 Face 78526 39266 8130 39265 Face 78527 42098 39266 39265 Face 78528 42098 17202 39266 Face 78529 5482 39267 19307 Face 78530 41976 29679 39267 Face 78531 10744 39268 16333 Face 78532 10744 15972 39268 Face 78533 3007 39269 31855 Face 78534 3007 19778 39269 Face 78535 12785 39270 3979 Face 78536 12785 36033 39270 Face 78537 2523 39271 34191 Face 78538 2523 41146 39271 Face 78539 22840 39272 38296 Face 78540 22840 33919 39272 Face 78541 6802 39273 25176 Face 78542 6802 15092 39273 Face 78543 9752 39274 24551 Face 78544 9752 24356 39274 Face 78545 19784 39275 27017 Face 78546 19784 6935 39275 Face 78547 45025 39276 15624 Face 78548 12489 26277 39276 Face 78549 4978 39277 30439 Face 78550 4978 7703 39277 Face 78551 4008 39278 42222 Face 78552 4008 16480 39278 Face 78553 25326 39279 37078 Face 78554 25326 20032 39279 Face 78555 18334 39280 21582 Face 78556 18334 4004 39280 Face 78557 17562 39281 36686 Face 78558 17562 31132 39281 Face 78559 9173 39282 2506 Face 78560 9173 29931 39282 Face 78561 22400 39283 32535 Face 78562 22400 26337 39283 Face 78563 22162 39284 4360 Face 78564 22162 6789 39284 Face 78565 22316 39285 3045 Face 78566 22316 10697 39285 Face 78567 32704 39286 14290 Face 78568 32704 3187 39286 Face 78569 16950 39287 16666 Face 78570 42902 17646 39287 Face 78571 15599 39288 36915 Face 78572 15599 4877 39288 Face 78573 14019 39289 3752 Face 78574 14019 26410 39289 Face 78575 15625 39290 1789 Face 78576 15625 33538 39290 Face 78577 15933 39291 10067 Face 78578 15933 7955 39291 Face 78579 576 39292 4137 Face 78580 576 35614 39292 Face 78581 1760 39293 9640 Face 78582 1760 48329 39293 Face 78583 752 39294 33409 Face 78584 752 10652 39294 Face 78585 13018 39295 45599 Face 78586 13018 21555 39295 Face 78587 20802 39296 154 Face 78588 20802 9447 39296 Face 78589 9494 39297 18293 Face 78590 9494 44423 39297 Face 78591 9338 39298 12932 Face 78592 9338 35701 39298 Face 78593 23717 39299 581 Face 78594 23717 46839 39299 Face 78595 10662 39300 26220 Face 78596 10662 18085 39300 Face 78597 8606 39301 5215 Face 78598 8606 49767 39301 Face 78599 6181 39302 14656 Face 78600 6181 38380 39302 Face 78601 17063 39303 23870 Face 78602 17063 31094 39303 Face 78603 1576 48746 39804 Face 78604 43114 19372 48746 Face 78605 40783 39305 45520 Face 78606 23942 36089 39305 Face 78607 14833 39306 45818 Face 78608 14833 4275 39306 Face 78609 876 39307 49556 Face 78610 876 14373 39307 Face 78611 13910 39308 38257 Face 78612 13910 3407 39308 Face 78613 17960 39309 3862 Face 78614 17960 38424 39309 Face 78615 15110 39310 38799 Face 78616 15110 34545 39310 Face 78617 14576 39311 28248 Face 78618 14576 27564 39311 Face 78619 23962 39312 17270 Face 78620 23962 20634 39312 Face 78621 7525 39313 48762 Face 78622 7525 30725 39313 Face 78623 252 39314 39038 Face 78624 252 18771 39314 Face 78625 11691 39315 21499 Face 78626 11691 22596 39315 Face 78627 22238 39316 27606 Face 78628 22238 13017 39316 Face 78629 13530 39317 32888 Face 78630 13530 22693 39317 Face 78631 14040 39318 44324 Face 78632 14040 21358 39318 Face 78633 2086 39319 27530 Face 78634 2086 29109 39319 Face 78635 15213 39320 28696 Face 78636 15213 39243 39320 Face 78637 31655 39321 31656 Face 78638 31655 16057 39321 Face 78639 1255 39322 40313 Face 78640 1255 10973 39322 Face 78641 508 39323 11042 Face 78642 508 45764 39323 Face 78643 25923 39324 35806 Face 78644 25923 25924 39324 Face 78645 44648 39325 25354 Face 78646 1886 36153 39325 Face 78647 34874 39326 2109 Face 78648 34874 10265 39326 Face 78649 5669 39327 24419 Face 78650 5669 9387 39327 Face 78651 9318 39328 22173 Face 78652 9318 34111 39328 Face 78653 9540 39329 38401 Face 78654 9540 3484 39329 Face 78655 21075 39330 37170 Face 78656 21075 4569 39330 Face 78657 12773 39331 25719 Face 78658 12773 2260 39331 Face 78659 40128 39332 29567 Face 78660 4480 24464 39332 Face 78661 984 39333 31172 Face 78662 984 17755 39333 Face 78663 6566 39334 48940 Face 78664 6566 38944 39334 Face 78665 37599 39335 23704 Face 78666 37599 24159 39335 Face 78667 39337 39336 15091 Face 78668 649 28485 39336 Face 78669 39338 39337 45672 Face 78670 649 39336 39337 Face 78671 649 39338 3740 Face 78672 649 39337 39338 Face 78673 4389 39339 14553 Face 78674 4389 15208 45088 Face 78675 6318 39340 23256 Face 78676 6318 2034 39340 Face 78677 2641 39341 26029 Face 78678 2641 47463 39341 Face 78679 11673 39342 38481 Face 78680 11673 43069 39342 Face 78681 2259 39343 9731 Face 78682 2259 9732 39343 Face 78683 16021 39344 8134 Face 78684 16021 36589 39344 Face 78685 32184 39345 3636 Face 78686 32184 15899 39345 Face 78687 2824 39346 14649 Face 78688 2824 17575 39346 Face 78689 10948 39347 30768 Face 78690 10948 21733 39347 Face 78691 30464 39348 19192 Face 78692 30464 1401 39348 Face 78693 11148 39349 48933 Face 78694 11148 33379 39349 Face 78695 18956 39350 41289 Face 78696 18956 4349 39350 Face 78697 14282 39351 10916 Face 78698 14282 21941 39351 Face 78699 1808 39352 29570 Face 78700 1808 17891 39352 Face 78701 39354 39353 391 Face 78702 21011 30352 39353 Face 78703 21011 39354 4380 Face 78704 21011 39353 39354 Face 78705 2439 39355 20611 Face 78706 2439 28570 39355 Face 78707 20589 39356 9516 Face 78708 20589 20588 39356 Face 78709 7108 39357 35164 Face 78710 7108 22253 39357 Face 78711 4346 39358 13083 Face 78712 4346 36399 39358 Face 78713 10149 39359 17262 Face 78714 10149 11008 39359 Face 78715 17613 39360 38374 Face 78716 17613 5371 39360 Face 78717 39362 39361 11752 Face 78718 26698 12168 39361 Face 78719 45907 39362 39561 Face 78720 26698 39361 39362 Face 78721 37911 39363 25641 Face 78722 37911 41124 39363 Face 78723 2422 39364 25922 Face 78724 2422 27007 39364 Face 78725 16139 39365 2457 Face 78726 40812 46664 39365 Face 78727 14676 39366 46622 Face 78728 14676 1316 39366 Face 78729 4810 39367 12120 Face 78730 4810 18741 39367 Face 78731 4810 39368 18741 Face 78732 4810 22816 39368 Face 78733 7712 39369 28667 Face 78734 7712 33180 39369 Face 78735 1408 39370 12694 Face 78736 1408 35920 39370 Face 78737 6520 39371 37588 Face 78738 6520 25956 39371 Face 78739 25720 39372 27673 Face 78740 25720 3703 39372 Face 78741 27948 39373 27959 Face 78742 27948 27949 39373 Face 78743 18579 39374 12396 Face 78744 18579 45186 39374 Face 78745 4416 39375 32493 Face 78746 4416 21835 39375 Face 78747 11552 39376 30441 Face 78748 11552 30382 39376 Face 78749 22713 39377 38029 Face 78750 22713 2714 39377 Face 78751 9789 39378 25444 Face 78752 9789 39407 39378 Face 78753 2602 39379 42453 Face 78754 2602 36548 39379 Face 78755 28279 39380 16683 Face 78756 28279 4154 39380 Face 78757 4904 39381 34707 Face 78758 4904 33400 39381 Face 78759 13159 39382 18706 Face 78760 13159 32631 39382 Face 78761 20330 39383 19078 Face 78762 20330 4165 39383 Face 78763 26443 39384 36752 Face 78764 26443 17346 39384 Face 78765 4865 47193 2567 Face 78766 4865 11409 39385 Face 78767 14523 39386 9897 Face 78768 14523 21300 39386 Face 78769 589 39387 20424 Face 78770 589 47573 39387 Face 78771 14879 39388 20754 Face 78772 14879 24984 39388 Face 78773 14879 39389 31813 Face 78774 14879 20754 39389 Face 78775 25457 39390 12391 Face 78776 25457 26126 39390 Face 78777 36225 39391 14391 Face 78778 36225 22037 39391 Face 78779 5441 39392 42639 Face 78780 5441 36422 39392 Face 78781 39394 39393 44012 Face 78782 39394 9523 39393 Face 78783 3 39394 44012 Face 78784 3 17548 39394 Face 78785 7344 39395 21436 Face 78786 7344 18208 39395 Face 78787 25617 39396 36019 Face 78788 25617 22902 39396 Face 78789 47653 39397 33479 Face 78790 12573 47530 39397 Face 78791 39399 39398 31782 Face 78792 8921 2417 39398 Face 78793 8921 39399 34516 Face 78794 8921 39398 39399 Face 78795 28122 39400 3733 Face 78796 28122 14372 39400 Face 78797 2048 39401 17385 Face 78798 2048 4804 39401 Face 78799 19430 39402 35023 Face 78800 19430 9799 39402 Face 78801 20844 39403 10686 Face 78802 20844 2742 39403 Face 78803 24873 39404 6914 Face 78804 24873 34311 39404 Face 78805 27139 39405 46376 Face 78806 27139 2213 39405 Face 78807 5399 49890 37773 Face 78808 5399 29810 49890 Face 78809 14867 39407 40573 Face 78810 14867 39378 39407 Face 78811 5705 39408 24753 Face 78812 5705 9991 39408 Face 78813 6054 39409 28669 Face 78814 6054 25410 39409 Face 78815 8627 39410 22181 Face 78816 8627 35322 39410 Face 78817 41365 39411 8558 Face 78818 43266 31474 39411 Face 78819 17529 39412 1060 Face 78820 17529 13105 39412 Face 78821 13946 39413 38134 Face 78822 13946 23220 39413 Face 78823 6756 39414 25106 Face 78824 39415 36515 39414 Face 78825 6756 39415 39414 Face 78826 6756 37450 39415 Face 78827 2658 39416 24453 Face 78828 2658 32754 39416 Face 78829 13580 39417 679 Face 78830 13580 29103 39417 Face 78831 24970 39418 199 Face 78832 24970 39009 39418 Face 78833 17409 39419 38282 Face 78834 17409 5515 39419 Face 78835 30691 39420 15326 Face 78836 30691 25098 39420 Face 78837 11862 39421 28397 Face 78838 11862 29503 39421 Face 78839 6779 39422 35038 Face 78840 6779 25029 39422 Face 78841 6707 39423 49107 Face 78842 6707 48924 39423 Face 78843 17140 39424 40416 Face 78844 17140 36230 39424 Face 78845 5874 39425 23665 Face 78846 5874 48069 39425 Face 78847 17179 39426 32530 Face 78848 17179 18575 39426 Face 78849 20698 39427 10572 Face 78850 20698 37111 39427 Face 78851 13188 39428 39887 Face 78852 13188 1562 39428 Face 78853 28258 39429 6999 Face 78854 28258 23041 39429 Face 78855 9385 39430 13338 Face 78856 9385 32641 39430 Face 78857 9525 39431 16522 Face 78858 9525 26451 39431 Face 78859 27511 39432 27512 Face 78860 27511 5680 39432 Face 78861 9588 39433 2093 Face 78862 9588 29960 39433 Face 78863 15293 47303 8609 Face 78864 15293 37333 39434 Face 78865 6875 39435 49445 Face 78866 6875 30460 39435 Face 78867 29995 39436 23467 Face 78868 29995 13517 39436 Face 78869 9020 39437 16525 Face 78870 9020 23012 39437 Face 78871 25411 39438 47075 Face 78872 25411 46851 39438 Face 78873 3293 39439 21140 Face 78874 3293 17999 39439 Face 78875 7731 39440 38247 Face 78876 7731 36881 39440 Face 78877 6223 39441 29823 Face 78878 6223 36815 39441 Face 78879 8588 39442 40285 Face 78880 8588 16331 39442 Face 78881 20602 39443 32078 Face 78882 20602 1562 39443 Face 78883 17346 39444 49851 Face 78884 17346 17345 39444 Face 78885 9449 39445 20495 Face 78886 48047 16355 39445 Face 78887 20563 39446 22565 Face 78888 42689 11330 39446 Face 78889 16224 39448 25041 Face 78890 16224 5328 39448 Face 78891 39447 39448 5328 Face 78892 39447 20291 39448 Face 78893 32678 39449 32732 Face 78894 32678 30677 39449 Face 78895 5380 39450 5879 Face 78896 5380 17127 39450 Face 78897 603 39451 21076 Face 78898 603 48354 39451 Face 78899 20692 39452 46932 Face 78900 20692 5663 39452 Face 78901 3056 39453 17874 Face 78902 3056 11251 39453 Face 78903 18693 39454 42829 Face 78904 18693 34816 39454 Face 78905 6603 39455 19841 Face 78906 6603 1527 39455 Face 78907 39457 39456 19799 Face 78908 8867 44681 39456 Face 78909 8867 39457 30203 Face 78910 8867 39456 39457 Face 78911 736 39458 10695 Face 78912 40114 5795 39458 Face 78913 6641 39459 23102 Face 78914 6641 23306 39459 Face 78915 16041 39460 26421 Face 78916 16041 7178 39460 Face 78917 12725 39461 38964 Face 78918 12725 17756 39461 Face 78919 15040 39462 34991 Face 78920 15040 35874 39462 Face 78921 5819 39463 34447 Face 78922 5819 38081 39463 Face 78923 23038 39464 20430 Face 78924 23038 11442 39464 Face 78925 3582 39465 24101 Face 78926 3582 38974 39465 Face 78927 6594 39466 37319 Face 78928 6594 27427 39466 Face 78929 11095 39467 15189 Face 78930 11095 23048 39467 Face 78931 10254 39468 18857 Face 78932 39469 29819 39468 Face 78933 10254 39469 39468 Face 78934 43108 20944 39469 Face 78935 14239 39470 23516 Face 78936 14239 44356 39470 Face 78937 39472 39471 16017 Face 78938 4724 1830 39471 Face 78939 4724 39472 29411 Face 78940 4724 39471 39472 Face 78941 21503 39473 33062 Face 78942 21503 18446 39473 Face 78943 18733 39474 13066 Face 78944 18733 31409 39474 Face 78945 23858 39475 28471 Face 78946 23858 19032 39475 Face 78947 17455 39476 4282 Face 78948 17455 25252 39476 Face 78949 15488 39477 12254 Face 78950 15488 28754 39477 Face 78951 2971 39478 10013 Face 78952 2971 36322 39478 Face 78953 4758 39479 38751 Face 78954 4758 20088 43441 Face 78955 6366 39480 34650 Face 78956 6366 30003 39480 Face 78957 17592 39481 41152 Face 78958 17592 12125 39481 Face 78959 7384 39482 39998 Face 78960 7384 16798 39482 Face 78961 4543 39483 12723 Face 78962 4543 24700 39483 Face 78963 1075 39484 29965 Face 78964 1075 14899 39484 Face 78965 30598 39485 4834 Face 78966 30598 16026 39485 Face 78967 32266 39486 21950 Face 78968 32266 4347 39486 Face 78969 8536 39487 33771 Face 78970 8536 20783 39487 Face 78971 39489 39488 1815 Face 78972 39489 38787 39488 Face 78973 41382 39489 33237 Face 78974 159 38787 39489 Face 78975 11873 39490 23973 Face 78976 11873 34797 39490 Face 78977 5261 39491 21669 Face 78978 5261 23270 39491 Face 78979 7215 39492 13538 Face 78980 7215 9519 39492 Face 78981 2354 39493 26465 Face 78982 2354 1337 39493 Face 78983 40452 39494 22533 Face 78984 5938 8668 39494 Face 78985 15358 39495 48291 Face 78986 15358 21360 39495 Face 78987 4172 39496 40482 Face 78988 4172 18909 39496 Face 78989 16103 39497 33811 Face 78990 41701 20147 39497 Face 78991 25360 39498 9358 Face 78992 25360 3304 39498 Face 78993 8351 39499 42964 Face 78994 8351 32570 39499 Face 78995 1004 39500 31667 Face 78996 1004 26719 39500 Face 78997 6663 39501 20434 Face 78998 6663 37769 39501 Face 78999 8352 39502 32121 Face 79000 8352 37749 39502 Face 79001 18598 39503 47099 Face 79002 18598 38997 39503 Face 79003 34933 39504 11162 Face 79004 34933 10624 39504 Face 79005 5549 39505 20022 Face 79006 5549 13001 39505 Face 79007 1538 39506 12172 Face 79008 46285 32038 39506 Face 79009 14613 39507 6858 Face 79010 14613 17547 39507 Face 79011 13256 39508 8359 Face 79012 13256 1239 39508 Face 79013 4984 39509 15070 Face 79014 4984 11643 39509 Face 79015 17324 39510 14977 Face 79016 17324 44449 39510 Face 79017 39379 39511 42453 Face 79018 39379 39706 39511 Face 79019 16444 39512 46315 Face 79020 16444 43721 39512 Face 79021 11463 39513 37296 Face 79022 11463 8302 39513 Face 79023 5541 39514 15469 Face 79024 5541 43357 39514 Face 79025 45462 39515 27855 Face 79026 16258 23677 39515 Face 79027 344 39516 34711 Face 79028 344 38421 39516 Face 79029 9462 39517 9463 Face 79030 9462 29083 39517 Face 79031 1954 39518 8363 Face 79032 1954 21056 39518 Face 79033 13964 39519 24122 Face 79034 13964 3750 39519 Face 79035 2371 39520 23055 Face 79036 2371 16630 39520 Face 79037 3322 39521 10378 Face 79038 3322 37134 39521 Face 79039 23098 39522 31304 Face 79040 23098 3408 39522 Face 79041 9953 39523 24131 Face 79042 9953 26286 39523 Face 79043 7500 39524 15321 Face 79044 39525 48630 39524 Face 79045 7500 39525 39524 Face 79046 7500 5545 39525 Face 79047 42869 39526 20053 Face 79048 8814 24393 39526 Face 79049 5896 39527 11864 Face 79050 5896 20301 39527 Face 79051 17550 39528 24620 Face 79052 17550 3102 39528 Face 79053 11325 39529 40050 Face 79054 11325 21440 39529 Face 79055 19693 39530 14940 Face 79056 19693 4704 39530 Face 79057 7647 39531 11257 Face 79058 7647 43592 39531 Face 79059 39533 39532 6529 Face 79060 6122 38371 39532 Face 79061 6122 39533 18750 Face 79062 6122 39532 39533 Face 79063 4143 39534 29189 Face 79064 39549 9814 39534 Face 79065 32944 39535 4375 Face 79066 44804 15959 39535 Face 79067 9617 39536 22879 Face 79068 9617 1391 39536 Face 79069 6668 39537 9630 Face 79070 6668 238 39537 Face 79071 13573 39538 22563 Face 79072 13573 17273 39538 Face 79073 2034 39539 23209 Face 79074 2034 17448 39539 Face 79075 268 47776 18448 Face 79076 268 18449 39540 Face 79077 1488 39541 37136 Face 79078 42497 25992 39541 Face 79079 19188 39542 22517 Face 79080 19188 22148 39542 Face 79081 1525 39543 36181 Face 79082 1525 36525 39543 Face 79083 9101 39544 37957 Face 79084 48183 12436 39544 Face 79085 9266 39545 28694 Face 79086 9266 24503 39545 Face 79087 1154 39546 7845 Face 79088 1154 20711 39546 Face 79089 5131 39547 37550 Face 79090 5131 31004 39547 Face 79091 8969 39548 12808 Face 79092 8969 37989 39548 Face 79093 4143 39549 39534 Face 79094 4143 44045 39549 Face 79095 19128 39550 20530 Face 79096 19128 35062 39550 Face 79097 16026 39551 30084 Face 79098 16026 48538 39551 Face 79099 10574 39552 10576 Face 79100 10574 18336 39552 Face 79101 9234 39553 9233 Face 79102 9234 22543 39553 Face 79103 11422 39554 34685 Face 79104 11422 34273 39554 Face 79105 14362 39555 30933 Face 79106 14362 39150 39555 Face 79107 14254 39556 37006 Face 79108 14254 5274 39556 Face 79109 16320 39557 34694 Face 79110 16320 44233 39557 Face 79111 4407 39558 49789 Face 79112 4407 18068 39558 Face 79113 14501 39559 21952 Face 79114 14501 40059 39559 Face 79115 7096 39560 21046 Face 79116 7096 30830 39560 Face 79117 39562 39561 39362 Face 79118 39562 37393 39561 Face 79119 42637 39562 11752 Face 79120 42637 18828 39562 Face 79121 8209 39563 15493 Face 79122 8209 13099 39563 Face 79123 15666 39564 25979 Face 79124 39565 37838 39564 Face 79125 15666 39565 39564 Face 79126 15666 6982 39565 Face 79127 16673 39566 43265 Face 79128 16673 2770 39566 Face 79129 13634 39567 6744 Face 79130 13634 36564 39567 Face 79131 26447 39568 30602 Face 79132 26447 32183 39568 Face 79133 19346 39569 592 Face 79134 19346 20156 39569 Face 79135 9460 39570 2456 Face 79136 9460 9461 39570 Face 79137 12819 39571 43982 Face 79138 12819 38460 39571 Face 79139 10069 39572 45383 Face 79140 10069 18421 39572 Face 79141 19595 39573 30975 Face 79142 19595 20617 39573 Face 79143 9952 39574 47859 Face 79144 9952 49520 39574 Face 79145 23027 39575 11361 Face 79146 23027 36454 39575 Face 79147 13171 39576 41333 Face 79148 44635 30976 39576 Face 79149 28086 39577 9193 Face 79150 28086 681 39577 Face 79151 8312 39578 26679 Face 79152 8312 24144 39578 Face 79153 32424 39579 3411 Face 79154 32424 20867 39579 Face 79155 39846 39580 11246 Face 79156 41066 35494 39580 Face 79157 5496 39581 44653 Face 79158 5496 1352 39581 Face 79159 410 39582 32734 Face 79160 410 36922 39582 Face 79161 10653 39583 26951 Face 79162 10653 31003 39583 Face 79163 6719 39584 35840 Face 79164 6719 1152 39584 Face 79165 13678 39585 5621 Face 79166 13678 45886 39585 Face 79167 11916 39586 10413 Face 79168 11916 20694 39586 Face 79169 5333 39587 41136 Face 79170 5333 41596 39587 Face 79171 13731 39588 34329 Face 79172 13731 8178 39588 Face 79173 14241 39589 1112 Face 79174 14241 6647 39589 Face 79175 28864 39590 24434 Face 79176 28864 47505 39590 Face 79177 25450 39591 12967 Face 79178 25450 352 39591 Face 79179 4912 39592 25601 Face 79180 4912 30884 39592 Face 79181 7609 39593 34584 Face 79182 7609 11882 39593 Face 79183 7318 39594 24484 Face 79184 7318 10998 39594 Face 79185 40676 39595 12103 Face 79186 343 40562 39595 Face 79187 2680 39596 17783 Face 79188 2680 22633 39596 Face 79189 6060 39597 48887 Face 79190 6060 33546 39597 Face 79191 12638 39598 41231 Face 79192 12638 25013 39598 Face 79193 39600 39599 23242 Face 79194 449 14684 39599 Face 79195 449 39600 45069 Face 79196 449 39599 39600 Face 79197 48469 39601 32101 Face 79198 15697 43650 39601 Face 79199 46184 39602 19222 Face 79200 5752 37474 39602 Face 79201 14130 39603 34385 Face 79202 14130 30101 39603 Face 79203 39605 39604 4203 Face 79204 6303 15519 39604 Face 79205 39606 39605 26978 Face 79206 6303 39604 39605 Face 79207 6303 39606 43381 Face 79208 6303 39605 39606 Face 79209 5032 39607 36098 Face 79210 5032 23078 39607 Face 79211 26761 39608 28876 Face 79212 26761 12013 39608 Face 79213 7909 39609 31512 Face 79214 7909 28520 39609 Face 79215 29181 39610 101 Face 79216 29181 9267 39610 Face 79217 21075 39611 37321 Face 79218 21075 37170 39611 Face 79219 6593 39612 10502 Face 79220 6593 31053 49855 Face 79221 16838 39613 33887 Face 79222 16838 2646 39613 Face 79223 3134 39614 25357 Face 79224 3134 20231 39614 Face 79225 9075 39615 30058 Face 79226 9075 21884 39615 Face 79227 26987 39616 12037 Face 79228 26987 4793 39616 Face 79229 20832 39617 48905 Face 79230 20832 21271 39617 Face 79231 11462 39618 31257 Face 79232 11462 34981 39618 Face 79233 17932 39619 28908 Face 79234 17932 14862 39619 Face 79235 509 39620 43644 Face 79236 509 40013 39620 Face 79237 1611 39621 37671 Face 79238 1611 38549 39621 Face 79239 19171 39622 7565 Face 79240 19171 23865 39622 Face 79241 8619 39623 3007 Face 79242 8619 1045 39623 Face 79243 14960 39624 33051 Face 79244 14960 16169 39624 Face 79245 5820 39625 24357 Face 79246 5820 19702 39625 Face 79247 16094 39626 29679 Face 79248 16094 40492 39626 Face 79249 11485 39627 1455 Face 79250 11485 28789 39627 Face 79251 4261 39628 8398 Face 79252 4261 23004 39628 Face 79253 21263 39629 6959 Face 79254 21263 35578 39629 Face 79255 22376 39630 36415 Face 79256 22376 38709 39630 Face 79257 12833 39631 33908 Face 79258 12833 23588 39631 Face 79259 3006 39632 1920 Face 79260 3006 24463 39632 Face 79261 5860 39633 30164 Face 79262 5860 32577 39633 Face 79263 4024 39634 6741 Face 79264 4024 31698 39634 Face 79265 428 39635 15684 Face 79266 428 12608 39635 Face 79267 428 39636 8262 Face 79268 428 15684 39636 Face 79269 10647 39637 45060 Face 79270 10647 23918 39637 Face 79271 11813 39638 27015 Face 79272 39639 15550 39638 Face 79273 11813 39639 39638 Face 79274 11813 37368 39639 Face 79275 8075 39640 32267 Face 79276 8075 21117 39640 Face 79277 40078 39641 28228 Face 79278 40077 27046 39641 Face 79279 7465 39642 36964 Face 79280 7465 38745 39642 Face 79281 3434 39643 25745 Face 79282 39644 23007 39643 Face 79283 3434 39644 39643 Face 79284 3434 42066 39644 Face 79285 5682 39645 32567 Face 79286 5682 1704 39645 Face 79287 23883 39646 46447 Face 79288 23883 10854 39646 Face 79289 12569 39647 39260 Face 79290 39648 5910 39647 Face 79291 12569 39648 39647 Face 79292 12569 17429 39648 Face 79293 8544 39649 43566 Face 79294 8544 22280 39649 Face 79295 5186 39650 19924 Face 79296 5186 48451 39650 Face 79297 6937 39651 26231 Face 79298 6937 32524 39651 Face 79299 5780 39652 5779 Face 79300 49313 19484 39652 Face 79301 39654 39653 6063 Face 79302 9313 36784 39653 Face 79303 9313 39654 35830 Face 79304 9313 39653 39654 Face 79305 34747 39655 6797 Face 79306 34747 11082 39655 Face 79307 15658 39656 21926 Face 79308 15658 4913 39656 Face 79309 15059 39657 2212 Face 79310 15059 35756 39657 Face 79311 3805 39658 30809 Face 79312 3805 18844 39658 Face 79313 22361 39659 25908 Face 79314 22361 49968 39659 Face 79315 39659 39660 25908 Face 79316 39659 22362 39660 Face 79317 9131 39661 3767 Face 79318 9131 23013 39661 Face 79319 6794 39662 19359 Face 79320 6794 41720 39662 Face 79321 10021 39663 1274 Face 79322 10021 20041 39663 Face 79323 13023 39664 17577 Face 79324 13023 30046 39664 Face 79325 702 39665 46928 Face 79326 702 20158 39665 Face 79327 5241 39666 2711 Face 79328 5241 21174 39666 Face 79329 1970 39667 17926 Face 79330 1970 15104 39667 Face 79331 4425 39668 38036 Face 79332 4425 29384 39668 Face 79333 28754 39669 3482 Face 79334 28754 37926 39669 Face 79335 4624 39670 36308 Face 79336 4624 21506 39670 Face 79337 11382 39671 19009 Face 79338 48636 4492 39671 Face 79339 8465 39672 27668 Face 79340 8465 11795 39672 Face 79341 18743 39673 1802 Face 79342 18743 24480 39673 Face 79343 18103 39674 27444 Face 79344 18103 38316 39674 Face 79345 2044 39675 38175 Face 79346 2044 32148 39675 Face 79347 4076 39676 17416 Face 79348 4076 17115 39676 Face 79349 4334 39677 18327 Face 79350 42483 33716 39677 Face 79351 14737 39678 31118 Face 79352 14737 1270 39678 Face 79353 6260 39679 35998 Face 79354 6260 22874 39679 Face 79355 13966 39680 24179 Face 79356 13966 46909 39680 Face 79357 11250 39681 824 Face 79358 11250 25350 39681 Face 79359 4048 39682 25565 Face 79360 4048 14760 39682 Face 79361 6933 39683 43965 Face 79362 48728 3246 39683 Face 79363 23474 39684 4946 Face 79364 23474 2404 39684 Face 79365 18300 39685 2121 Face 79366 18300 36155 39685 Face 79367 7339 39686 44570 Face 79368 7339 35638 39686 Face 79369 21749 39687 18087 Face 79370 21749 6421 39687 Face 79371 6248 39688 1256 Face 79372 6248 26854 39688 Face 79373 47756 39689 5024 Face 79374 5950 48840 39689 Face 79375 45441 39690 5496 Face 79376 13121 37792 39690 Face 79377 8820 39691 25930 Face 79378 8820 4151 39691 Face 79379 15574 39692 7439 Face 79380 15574 33881 39692 Face 79381 3047 39693 47440 Face 79382 45922 37299 39693 Face 79383 1937 39694 8422 Face 79384 44794 14847 39694 Face 79385 1020 39695 11707 Face 79386 1020 42711 39695 Face 79387 46479 39696 26127 Face 79388 10192 23697 39696 Face 79389 40628 39697 39240 Face 79390 12230 36473 39697 Face 79391 7616 39698 45311 Face 79392 7616 20731 39698 Face 79393 10464 39699 45597 Face 79394 10464 18613 39699 Face 79395 22945 39700 8605 Face 79396 22945 2527 39700 Face 79397 15004 39701 37776 Face 79398 15004 21505 39701 Face 79399 14466 39702 34597 Face 79400 14466 9202 39702 Face 79401 15621 39703 29596 Face 79402 15621 45681 39703 Face 79403 2222 39704 17936 Face 79404 2222 19922 39704 Face 79405 1465 39705 25438 Face 79406 1465 33193 39705 Face 79407 14963 39706 39379 Face 79408 14963 15574 39706 Face 79409 49714 39707 11565 Face 79410 2948 12198 39707 Face 79411 33131 39708 19181 Face 79412 33131 3834 39708 Face 79413 3755 39709 17442 Face 79414 39711 16005 39709 Face 79415 39711 39710 16005 Face 79416 45815 13577 39710 Face 79417 3755 39711 39709 Face 79418 45815 39710 39711 Face 79419 39713 47835 20672 Face 79420 391 39353 39712 Face 79421 48144 39713 22235 Face 79422 391 39712 39713 Face 79423 10532 39714 35466 Face 79424 10532 21592 39714 Face 79425 19914 39715 47243 Face 79426 19914 6415 39715 Face 79427 3247 39716 28458 Face 79428 3247 9463 39716 Face 79429 21824 39717 9558 Face 79430 21824 21384 39717 Face 79431 2819 39718 30068 Face 79432 2819 19639 39718 Face 79433 31891 39719 32218 Face 79434 31891 27857 39719 Face 79435 17976 39720 47716 Face 79436 17976 21201 39720 Face 79437 7673 39721 379 Face 79438 7673 9005 39721 Face 79439 19663 39722 611 Face 79440 19663 34911 39722 Face 79441 14279 39723 2588 Face 79442 14279 43485 39723 Face 79443 39725 39724 46421 Face 79444 39725 44785 39724 Face 79445 8416 39725 43554 Face 79446 8416 44785 39725 Face 79447 3614 39726 26589 Face 79448 3614 43176 39726 Face 79449 25460 39727 10501 Face 79450 25460 8073 39727 Face 79451 5332 39728 43544 Face 79452 5332 25655 39728 Face 79453 2644 39729 38496 Face 79454 2644 24835 39729 Face 79455 2637 39730 38112 Face 79456 41647 7525 39730 Face 79457 660 39731 32662 Face 79458 660 13315 39731 Face 79459 19299 39732 19125 Face 79460 19299 38131 39732 Face 79461 25593 39733 4181 Face 79462 25593 49705 39733 Face 79463 13937 39734 28242 Face 79464 13937 22667 39734 Face 79465 29062 39735 10434 Face 79466 29062 43061 39735 Face 79467 2883 39736 40810 Face 79468 2883 30312 39736 Face 79469 14476 39737 270 Face 79470 14476 24145 39737 Face 79471 6322 39738 47095 Face 79472 6322 44314 39738 Face 79473 10761 39739 46701 Face 79474 10761 1342 39739 Face 79475 6619 39740 26732 Face 79476 6619 28493 39740 Face 79477 49356 39741 37163 Face 79478 3980 19200 39741 Face 79479 4526 39742 22498 Face 79480 4526 41282 39742 Face 79481 9912 39743 3861 Face 79482 9912 17914 39743 Face 79483 13825 39744 9145 Face 79484 13825 3305 39744 Face 79485 8530 39745 32077 Face 79486 8530 4426 39745 Face 79487 3280 39746 25759 Face 79488 45100 7886 39746 Face 79489 161 39747 34894 Face 79490 161 29296 39747 Face 79491 25262 39748 1283 Face 79492 25262 22164 39748 Face 79493 45212 39749 10234 Face 79494 2383 37552 39749 Face 79495 16606 39750 16607 Face 79496 16606 8316 39750 Face 79497 10090 39751 3634 Face 79498 10090 14665 39751 Face 79499 2048 39752 4804 Face 79500 2048 11937 39752 Face 79501 20117 39753 37924 Face 79502 20117 22498 39753 Face 79503 22886 39754 8456 Face 79504 22886 4023 39754 Face 79505 31881 39755 5560 Face 79506 31881 25141 39755 Face 79507 12364 39756 46875 Face 79508 12364 7285 39756 Face 79509 7600 39757 16478 Face 79510 7600 30153 39757 Face 79511 44368 39758 27987 Face 79512 2378 30376 39758 Face 79513 598 39759 7933 Face 79514 598 7934 39759 Face 79515 9626 39760 23139 Face 79516 9626 10429 39760 Face 79517 3026 39761 18323 Face 79518 3026 35745 39761 Face 79519 3821 39762 32683 Face 79520 3821 23626 39762 Face 79521 18262 39763 11683 Face 79522 18262 31814 39763 Face 79523 25013 39764 22550 Face 79524 25013 11378 39764 Face 79525 31011 39765 30524 Face 79526 31011 42307 39765 Face 79527 10147 39766 14561 Face 79528 10147 11027 39766 Face 79529 15447 39767 21717 Face 79530 15447 15656 39767 Face 79531 3586 39768 16132 Face 79532 3586 20986 39768 Face 79533 21118 39769 45446 Face 79534 21118 45914 39769 Face 79535 535 39770 15696 Face 79536 535 38938 39770 Face 79537 2130 39771 37862 Face 79538 2130 10959 39771 Face 79539 7779 39772 39123 Face 79540 39773 35663 39772 Face 79541 7779 39773 39772 Face 79542 7779 45218 39773 Face 79543 17256 39774 30480 Face 79544 17256 36596 39774 Face 79545 687 39775 25254 Face 79546 687 9376 39775 Face 79547 22544 39776 28145 Face 79548 22544 36981 39776 Face 79549 31380 39777 13993 Face 79550 40264 30005 39777 Face 79551 23165 39778 6007 Face 79552 23165 31401 39778 Face 79553 9700 39779 17587 Face 79554 9700 28132 39779 Face 79555 815 39780 14382 Face 79556 815 15709 39780 Face 79557 7580 39781 15668 Face 79558 7580 26578 39781 Face 79559 27093 39782 681 Face 79560 27093 10142 39782 Face 79561 15168 39783 32935 Face 79562 15168 35935 39783 Face 79563 4965 39784 22798 Face 79564 4965 49926 39784 Face 79565 6901 39785 28453 Face 79566 6901 14490 39785 Face 79567 9364 39786 3791 Face 79568 9364 24396 39786 Face 79569 10596 39787 21647 Face 79570 10596 33764 39787 Face 79571 6772 39788 20454 Face 79572 6772 45825 39788 Face 79573 10597 39789 45767 Face 79574 10597 7468 39789 Face 79575 42177 39790 27345 Face 79576 15670 27803 39790 Face 79577 35155 39791 35792 Face 79578 35155 30649 39791 Face 79579 38036 39792 12957 Face 79580 38036 26066 39792 Face 79581 1048 39793 34221 Face 79582 1048 30501 39793 Face 79583 42505 39794 26037 Face 79584 3930 16906 39794 Face 79585 10408 39795 12357 Face 79586 10408 19005 39795 Face 79587 4076 39796 34676 Face 79588 4076 25387 39796 Face 79589 23231 39797 14187 Face 79590 23231 36916 39797 Face 79591 10692 39798 36403 Face 79592 10692 13712 39798 Face 79593 16554 39799 42091 Face 79594 16554 39073 39799 Face 79595 11532 39800 21934 Face 79596 11532 696 39800 Face 79597 35307 39801 8060 Face 79598 35307 22248 39801 Face 79599 18807 39802 5716 Face 79600 18807 41844 39802 Face 79601 9645 39803 14154 Face 79602 9645 20335 39803 Face 79603 27385 39804 39304 Face 79604 27385 1576 39804 Face 79605 3163 39805 14225 Face 79606 3163 30722 39805 Face 79607 22209 39806 30199 Face 79608 45746 24115 39806 Face 79609 5648 39807 36173 Face 79610 39808 93 39807 Face 79611 5648 39808 39807 Face 79612 5648 30847 39808 Face 79613 22278 39809 6600 Face 79614 22278 4096 39809 Face 79615 13329 39810 39799 Face 79616 13329 2990 39810 Face 79617 41724 39811 29886 Face 79618 570 18968 39811 Face 79619 4369 39812 12481 Face 79620 4369 5204 39812 Face 79621 27750 39813 28482 Face 79622 27750 30856 39813 Face 79623 9949 39814 13956 Face 79624 9949 16371 39814 Face 79625 12546 39815 10275 Face 79626 12546 37521 39815 Face 79627 39817 39816 30045 Face 79628 15623 21339 39816 Face 79629 15623 39817 33809 Face 79630 15623 39816 39817 Face 79631 10353 39818 47504 Face 79632 10353 10354 39818 Face 79633 26640 39819 35039 Face 79634 26640 22448 39819 Face 79635 5472 39820 26300 Face 79636 5472 20826 39820 Face 79637 6839 39821 38091 Face 79638 6839 29200 39821 Face 79639 4075 39822 37634 Face 79640 4075 28569 39822 Face 79641 230 39823 17420 Face 79642 230 20109 39823 Face 79643 13394 39824 47782 Face 79644 13394 49002 39824 Face 79645 39826 39825 47498 Face 79646 8624 5416 39825 Face 79647 8624 39826 14927 Face 79648 8624 39825 39826 Face 79649 11885 39827 36974 Face 79650 11885 5095 39827 Face 79651 27693 39828 17630 Face 79652 27693 11132 39828 Face 79653 5320 39829 21844 Face 79654 5320 25926 39829 Face 79655 13313 39830 29677 Face 79656 49447 29326 39830 Face 79657 10656 39831 23492 Face 79658 10656 15169 39831 Face 79659 18528 39832 21757 Face 79660 18528 21795 39832 Face 79661 8091 39833 11440 Face 79662 8091 15302 39833 Face 79663 5662 39834 20725 Face 79664 5662 24034 39834 Face 79665 4993 39835 24043 Face 79666 4993 19694 39835 Face 79667 2287 39836 23377 Face 79668 2287 47733 39836 Face 79669 18443 39837 42067 Face 79670 18443 41732 39837 Face 79671 179 39838 23251 Face 79672 179 20391 39838 Face 79673 46806 39839 29335 Face 79674 5772 30572 39839 Face 79675 14680 39840 8201 Face 79676 14680 427 39840 Face 79677 1456 39841 33315 Face 79678 1456 35541 39841 Face 79679 39843 39842 22087 Face 79680 3366 48057 39842 Face 79681 3366 39843 1089 Face 79682 3366 39842 39843 Face 79683 878 39844 20744 Face 79684 40130 25026 39844 Face 79685 18175 39845 44289 Face 79686 18175 47521 39845 Face 79687 5714 39846 36401 Face 79688 41066 39580 39846 Face 79689 13789 39847 38385 Face 79690 13789 36571 39847 Face 79691 9425 39848 36009 Face 79692 40226 29028 39848 Face 79693 40613 39849 19436 Face 79694 2460 11375 39849 Face 79695 3735 39850 9749 Face 79696 3735 6465 39850 Face 79697 1913 39851 21151 Face 79698 1913 29405 39851 Face 79699 47830 39852 22708 Face 79700 8513 44036 39852 Face 79701 45825 39853 8476 Face 79702 2646 16838 39853 Face 79703 1099 39854 13926 Face 79704 1099 7230 39854 Face 79705 39856 39855 3868 Face 79706 5942 35035 39855 Face 79707 5942 39856 45350 Face 79708 5942 39855 39856 Face 79709 24177 39857 38453 Face 79710 24177 5410 39857 Face 79711 2558 39858 35156 Face 79712 40956 27090 49533 Face 79713 10497 39859 36539 Face 79714 10497 22280 39859 Face 79715 9456 39860 35028 Face 79716 9456 18914 39860 Face 79717 24331 39861 11623 Face 79718 24331 13103 39861 Face 79719 2542 39862 35193 Face 79720 2542 30683 39862 Face 79721 19622 39863 3796 Face 79722 19622 5750 39863 Face 79723 758 39864 27287 Face 79724 758 12921 39864 Face 79725 14852 39865 14851 Face 79726 14852 30029 39865 Face 79727 2233 39866 46758 Face 79728 39867 12105 39866 Face 79729 2233 39867 39866 Face 79730 2233 33171 39867 Face 79731 18331 39868 3444 Face 79732 18331 24918 39868 Face 79733 17819 39869 44773 Face 79734 17819 21988 39869 Face 79735 40732 39870 12202 Face 79736 2199 44318 39870 Face 79737 39872 39871 13620 Face 79738 193 14898 39871 Face 79739 193 39872 17088 Face 79740 193 39871 39872 Face 79741 29384 39873 39668 Face 79742 29384 20865 39873 Face 79743 5719 39874 35482 Face 79744 5719 9761 39874 Face 79745 6850 39875 36705 Face 79746 6850 9410 39875 Face 79747 5789 39876 23421 Face 79748 5789 38690 39876 Face 79749 4007 39877 45920 Face 79750 4007 31540 39877 Face 79751 4645 39878 13390 Face 79752 4645 26558 39878 Face 79753 10008 39879 2469 Face 79754 10008 38555 39879 Face 79755 45732 46217 8456 Face 79756 378 37658 39880 Face 79757 5292 39881 25489 Face 79758 5292 14146 39881 Face 79759 15851 39882 38876 Face 79760 15851 350 39882 Face 79761 9420 39883 18979 Face 79762 9420 22976 39883 Face 79763 14672 39884 20656 Face 79764 14672 16002 39884 Face 79765 27051 39885 34115 Face 79766 27051 30307 39885 Face 79767 26327 39886 26080 Face 79768 26327 13643 39886 Face 79769 10271 39887 39428 Face 79770 10271 23865 39887 Face 79771 9835 39888 28056 Face 79772 9835 5450 39888 Face 79773 12156 39889 13516 Face 79774 12156 7896 39889 Face 79775 1848 39890 44662 Face 79776 1848 20293 39890 Face 79777 19165 39891 4980 Face 79778 19165 26363 39891 Face 79779 6833 39892 20766 Face 79780 6833 47621 39892 Face 79781 27896 39893 44539 Face 79782 27896 36443 39893 Face 79783 20563 39894 28890 Face 79784 20563 22565 39894 Face 79785 1648 39895 25227 Face 79786 46592 48678 39895 Face 79787 1877 39896 10565 Face 79788 39897 34108 39896 Face 79789 1877 39897 39896 Face 79790 1877 16042 39897 Face 79791 7311 39898 26289 Face 79792 7311 16182 39898 Face 79793 16097 39899 21545 Face 79794 41901 1420 39899 Face 79795 1822 39900 38783 Face 79796 1822 34567 39900 Face 79797 13239 39901 39004 Face 79798 13239 18969 39901 Face 79799 9408 39902 3428 Face 79800 9408 21620 39902 Face 79801 17748 39903 21128 Face 79802 17748 6593 39903 Face 79803 5552 39904 32111 Face 79804 5552 25713 39904 Face 79805 19510 39906 37032 Face 79806 19510 38898 39906 Face 79807 39905 39906 38898 Face 79808 39905 4302 39906 Face 79809 11401 39907 14579 Face 79810 11401 18369 39907 Face 79811 46089 39908 20065 Face 79812 46089 28539 39908 Face 79813 13898 39909 11397 Face 79814 13898 37333 39909 Face 79815 11850 39910 481 Face 79816 11850 1687 39910 Face 79817 28693 39911 25041 Face 79818 28693 10087 39911 Face 79819 21686 39912 35007 Face 79820 49548 32005 39912 Face 79821 29970 39913 44355 Face 79822 29970 41496 39913 Face 79823 9215 39914 45132 Face 79824 9215 20020 39914 Face 79825 28803 39915 4405 Face 79826 28803 49521 39915 Face 79827 35311 39916 4720 Face 79828 35311 25696 39916 Face 79829 49673 39917 5835 Face 79830 8208 3748 39917 Face 79831 28811 39918 8889 Face 79832 28811 21430 39918 Face 79833 1231 39919 21378 Face 79834 1231 48248 39919 Face 79835 5848 39920 1528 Face 79836 5848 34361 39920 Face 79837 2306 39921 16005 Face 79838 2306 17605 39921 Face 79839 19773 39922 5839 Face 79840 19773 25424 39922 Face 79841 29690 39923 5172 Face 79842 29690 21590 39923 Face 79843 11749 39924 32796 Face 79844 11749 19667 39924 Face 79845 13049 39925 30145 Face 79846 13049 9327 39925 Face 79847 39927 39926 14178 Face 79848 8735 39555 39926 Face 79849 8735 39927 30933 Face 79850 8735 39926 39927 Face 79851 13982 39928 47135 Face 79852 13982 6703 39928 Face 79853 13146 39929 28344 Face 79854 13146 14527 39929 Face 79855 27690 39930 12269 Face 79856 27690 48443 39930 Face 79857 14949 39931 48485 Face 79858 14949 20837 39931 Face 79859 3223 39932 28606 Face 79860 3223 36844 39932 Face 79861 21604 39933 34758 Face 79862 21604 28820 39933 Face 79863 16140 39934 17340 Face 79864 16140 14928 39934 Face 79865 6215 39935 37545 Face 79866 6215 27161 39935 Face 79867 21712 39936 6888 Face 79868 21712 30265 39936 Face 79869 8419 39937 22021 Face 79870 8419 32938 39937 Face 79871 10350 39938 18558 Face 79872 10350 38092 39938 Face 79873 8245 39939 37025 Face 79874 8245 12123 39939 Face 79875 10120 48733 28881 Face 79876 10120 45804 39940 Face 79877 2453 39941 20515 Face 79878 2453 24675 39941 Face 79879 1856 39942 12894 Face 79880 1856 25113 39942 Face 79881 13004 39943 30891 Face 79882 13004 8566 39943 Face 79883 12323 39944 31956 Face 79884 12323 36329 39944 Face 79885 17763 39945 30321 Face 79886 17763 14577 39945 Face 79887 29397 39946 9643 Face 79888 29397 2895 39946 Face 79889 5478 39947 45648 Face 79890 44618 29683 39947 Face 79891 8806 39948 38677 Face 79892 8806 1608 39948 Face 79893 5566 39949 168 Face 79894 5566 42626 39949 Face 79895 10708 39950 49469 Face 79896 10708 16934 39950 Face 79897 15065 39951 7601 Face 79898 15065 12165 39951 Face 79899 2961 39952 32715 Face 79900 2961 23423 39952 Face 79901 7405 39953 29043 Face 79902 41049 36651 39953 Face 79903 33499 39954 33340 Face 79904 33499 8673 39954 Face 79905 8565 39955 32624 Face 79906 8565 10675 39955 Face 79907 5327 39956 43664 Face 79908 46831 8209 39956 Face 79909 20037 39957 28830 Face 79910 20037 14704 39957 Face 79911 10506 39958 33593 Face 79912 10506 29548 39958 Face 79913 14675 39959 24945 Face 79914 14675 1481 39959 Face 79915 38654 39960 31090 Face 79916 38654 46279 39960 Face 79917 11647 39961 37510 Face 79918 11647 26311 39961 Face 79919 14116 39962 25801 Face 79920 40857 21012 39962 Face 79921 25525 39963 9041 Face 79922 25525 218 39963 Face 79923 730 39964 26393 Face 79924 730 21323 39964 Face 79925 3360 39965 7428 Face 79926 3360 23260 39965 Face 79927 7623 39966 34077 Face 79928 7623 17977 39966 Face 79929 1194 39967 12120 Face 79930 1194 15715 39967 Face 79931 19051 39968 4810 Face 79932 19051 25049 39968 Face 79933 8522 39969 43702 Face 79934 8522 19363 39969 Face 79935 12448 39970 4164 Face 79936 12448 22676 39970 Face 79937 6230 39971 16370 Face 79938 6230 25581 39971 Face 79939 404 39972 16828 Face 79940 404 14416 39972 Face 79941 8586 39973 29102 Face 79942 49833 33186 39973 Face 79943 6885 39974 26891 Face 79944 6885 18891 39974 Face 79945 5190 39975 3570 Face 79946 5190 26150 39975 Face 79947 4972 39976 28131 Face 79948 4972 28213 39976 Face 79949 34132 39977 39078 Face 79950 34132 39347 39977 Face 79951 23335 39978 34968 Face 79952 23335 29134 39978 Face 79953 19554 39979 42853 Face 79954 19554 3354 39979 Face 79955 2388 39980 24906 Face 79956 41116 36885 47381 Face 79957 5502 39981 30406 Face 79958 5502 45256 39981 Face 79959 8441 39982 20500 Face 79960 8441 1385 39982 Face 79961 15485 39983 46149 Face 79962 15485 22738 39983 Face 79963 13118 39984 18923 Face 79964 13118 13120 39984 Face 79965 14395 39985 8141 Face 79966 14395 9783 39985 Face 79967 6245 39986 43210 Face 79968 42245 704 39986 Face 79969 5035 39987 17079 Face 79970 47514 38117 39987 Face 79971 5209 39988 34902 Face 79972 5209 14843 39988 Face 79973 27325 39989 16161 Face 79974 27325 3813 39989 Face 79975 20991 39990 24333 Face 79976 20991 46257 39990 Face 79977 14668 39991 16000 Face 79978 14668 24843 39991 Face 79979 7518 39992 28134 Face 79980 7518 32486 39992 Face 79981 39994 39993 10064 Face 79982 10063 17367 39993 Face 79983 10063 39994 13330 Face 79984 10063 39993 39994 Face 79985 40880 39995 34475 Face 79986 19354 22716 39995 Face 79987 5056 39996 33051 Face 79988 5056 24811 39996 Face 79989 14312 39997 20107 Face 79990 14312 31272 39997 Face 79991 28702 39998 16994 Face 79992 48909 7384 39998 Face 79993 34541 39999 48559 Face 79994 34541 32006 39999 Face 79995 10457 40000 21344 Face 79996 45202 1623 40000 Face 79997 6337 40001 49374 Face 79998 6337 17455 40001 Face 79999 27456 40002 44503 Face 80000 27456 39518 40002 Face 80001 8635 40003 26275 Face 80002 8635 35441 40003 Face 80003 8318 40004 34091 Face 80004 48968 4733 40004 Face 80005 3840 40005 22024 Face 80006 3840 18018 40005 Face 80007 19899 40006 28197 Face 80008 19899 23477 40006 Face 80009 17511 40007 3502 Face 80010 17511 23995 40007 Face 80011 8395 40008 35813 Face 80012 8395 43958 40008 Face 80013 11279 40009 29620 Face 80014 11279 6961 40009 Face 80015 47518 40010 12583 Face 80016 20276 15128 40010 Face 80017 34456 40011 16030 Face 80018 34456 9013 40011 Face 80019 35827 40012 9327 Face 80020 35827 38162 40012 Face 80021 35827 40013 38162 Face 80022 35827 39620 40013 Face 80023 25089 40014 5935 Face 80024 25089 35633 40014 Face 80025 5957 40015 14220 Face 80026 5957 5286 40015 Face 80027 9955 40016 3551 Face 80028 9955 48085 40016 Face 80029 2389 40017 32692 Face 80030 42524 5272 40017 Face 80031 7933 40018 30607 Face 80032 40019 32171 40018 Face 80033 7933 40019 40018 Face 80034 7933 9493 40019 Face 80035 18919 40020 38032 Face 80036 18919 250 40020 Face 80037 19580 40021 10919 Face 80038 19580 9110 40021 Face 80039 5134 40022 12749 Face 80040 44657 5135 40022 Face 80041 26286 40023 32961 Face 80042 26286 19505 40023 Face 80043 7958 40024 46546 Face 80044 7958 14214 40024 Face 80045 40024 40025 37705 Face 80046 40024 14214 40025 Face 80047 23723 40026 7488 Face 80048 23723 10942 40026 Face 80049 40028 40027 10348 Face 80050 4398 18143 40027 Face 80051 4398 40028 42648 Face 80052 4398 40027 40028 Face 80053 4953 40029 31990 Face 80054 4953 14828 40029 Face 80055 1624 40030 33489 Face 80056 1624 26964 40030 Face 80057 4571 40031 26412 Face 80058 4571 10042 40031 Face 80059 5113 40032 15193 Face 80060 5113 32724 40032 Face 80061 3998 40033 3397 Face 80062 3998 25807 40033 Face 80063 7692 40034 34987 Face 80064 7692 36876 40034 Face 80065 931 40035 24163 Face 80066 931 11147 40035 Face 80067 47390 40036 956 Face 80068 24504 24505 40036 Face 80069 21565 40037 5378 Face 80070 21565 26672 40037 Face 80071 19409 40038 38619 Face 80072 19409 8104 40038 Face 80073 32970 40039 32971 Face 80074 32970 32969 40039 Face 80075 9296 40040 38164 Face 80076 9296 36980 40040 Face 80077 42319 40041 47211 Face 80078 32205 28306 40041 Face 80079 3831 42224 28639 Face 80080 3831 18613 42224 Face 80081 17694 40043 5103 Face 80082 17694 8540 40043 Face 80083 9682 40044 17871 Face 80084 9682 4814 40044 Face 80085 15376 40045 18694 Face 80086 15376 23064 40045 Face 80087 49464 40046 4539 Face 80088 15096 4256 40046 Face 80089 13936 40047 45380 Face 80090 13936 10802 40047 Face 80091 9792 40048 40057 Face 80092 9792 25582 40048 Face 80093 20650 40049 1504 Face 80094 20650 23536 40049 Face 80095 4155 40050 39529 Face 80096 4155 25585 40050 Face 80097 5142 40051 10311 Face 80098 5142 16448 40051 Face 80099 3850 40052 12109 Face 80100 3850 25154 40052 Face 80101 373 42102 18484 Face 80102 373 23086 40053 Face 80103 8628 40054 12151 Face 80104 40055 37109 40054 Face 80105 8628 40055 40054 Face 80106 8628 26443 40055 Face 80107 40656 40056 43345 Face 80108 40656 31486 40056 Face 80109 20018 40057 34436 Face 80110 20018 31353 40057 Face 80111 34668 40058 26472 Face 80112 34668 31671 40058 Face 80113 9032 40059 15886 Face 80114 9032 39559 40059 Face 80115 40413 47182 37733 Face 80116 40061 28572 40060 Face 80117 13447 40061 40060 Face 80118 13447 10853 40061 Face 80119 3367 40062 27847 Face 80120 3367 30722 40062 Face 80121 3332 40063 18129 Face 80122 3332 27361 40063 Face 80123 7775 40064 22529 Face 80124 7775 22224 40064 Face 80125 29201 40065 13266 Face 80126 29201 28474 40065 Face 80127 6549 40066 33868 Face 80128 6549 31653 40066 Face 80129 9808 40067 34328 Face 80130 9808 43082 40067 Face 80131 21879 40068 32848 Face 80132 21879 47491 40068 Face 80133 5526 40069 26610 Face 80134 5526 35311 40069 Face 80135 12300 40070 38810 Face 80136 12300 7887 40070 Face 80137 339 40071 20748 Face 80138 48521 24621 40071 Face 80139 10015 40072 27798 Face 80140 10015 8807 40072 Face 80141 7864 40073 32977 Face 80142 7864 10899 40073 Face 80143 12307 40074 1488 Face 80144 12307 26049 40074 Face 80145 48785 40075 29830 Face 80146 8594 35011 40075 Face 80147 10320 40076 1417 Face 80148 10320 37355 40076 Face 80149 13660 40077 39641 Face 80150 13660 30372 40077 Face 80151 13660 40078 23828 Face 80152 13660 39641 40078 Face 80153 28111 40079 41302 Face 80154 28111 22582 40079 Face 80155 23051 40080 5152 Face 80156 23051 3436 40080 Face 80157 6459 40081 13582 Face 80158 6459 28590 40081 Face 80159 26353 40082 19730 Face 80160 26353 7035 40082 Face 80161 2607 40083 9508 Face 80162 2607 20914 40083 Face 80163 20378 40084 4932 Face 80164 20378 45283 40084 Face 80165 6283 40085 21353 Face 80166 6283 27817 40085 Face 80167 42363 40086 25433 Face 80168 9573 14819 40086 Face 80169 20313 40087 49845 Face 80170 20313 36244 40087 Face 80171 8614 40088 9132 Face 80172 40089 20931 40088 Face 80173 8614 40089 40088 Face 80174 8614 38540 40089 Face 80175 3492 40090 10774 Face 80176 3492 25332 40090 Face 80177 7602 40091 24452 Face 80178 47436 12240 40091 Face 80179 23205 40092 48856 Face 80180 23205 6205 40092 Face 80181 723 40093 18792 Face 80182 723 21973 40093 Face 80183 2032 40094 38011 Face 80184 2032 9909 40094 Face 80185 7640 40095 9881 Face 80186 7640 30563 40095 Face 80187 18162 40096 37423 Face 80188 46563 2207 40096 Face 80189 10318 40097 33715 Face 80190 10318 14605 40097 Face 80191 15101 40098 46077 Face 80192 15101 27264 40098 Face 80193 40098 40099 46077 Face 80194 40098 21024 40099 Face 80195 11487 40100 16459 Face 80196 11487 44403 40100 Face 80197 15069 40101 14724 Face 80198 15069 13081 40101 Face 80199 13105 40102 16283 Face 80200 13105 21804 40102 Face 80201 14898 40103 39257 Face 80202 14898 33371 40103 Face 80203 8714 40104 23929 Face 80204 8714 17369 40104 Face 80205 18011 40105 32755 Face 80206 18011 21099 40105 Face 80207 27363 40106 46260 Face 80208 27363 29227 40106 Face 80209 20006 40107 14163 Face 80210 20006 20005 40107 Face 80211 4963 40108 27980 Face 80212 4963 31477 40108 Face 80213 17657 40109 40759 Face 80214 17657 1138 40109 Face 80215 11840 40110 11841 Face 80216 11840 38272 40110 Face 80217 13228 40111 32072 Face 80218 13228 26828 40111 Face 80219 2940 40112 35310 Face 80220 2940 24083 40112 Face 80221 44451 40113 32831 Face 80222 45971 34589 40113 Face 80223 736 40114 39458 Face 80224 736 21126 40114 Face 80225 22907 40115 46542 Face 80226 22907 7994 40115 Face 80227 8214 40116 38780 Face 80228 8214 33610 40116 Face 80229 6656 40117 13266 Face 80230 6656 31261 40117 Face 80231 11435 40118 20186 Face 80232 11435 34857 40118 Face 80233 30921 40119 17945 Face 80234 30921 48471 40119 Face 80235 9955 40120 27304 Face 80236 9955 41588 40120 Face 80237 5600 40121 32190 Face 80238 5600 13012 40121 Face 80239 1918 40122 8416 Face 80240 47628 9168 40122 Face 80241 40124 40123 37261 Face 80242 6868 34497 40123 Face 80243 6868 40124 26065 Face 80244 6868 40123 40124 Face 80245 42854 40125 29005 Face 80246 2753 44328 40125 Face 80247 29 40126 31318 Face 80248 45299 25243 40126 Face 80249 12684 40127 22327 Face 80250 12684 18768 40127 Face 80251 4480 40128 1467 Face 80252 4480 39332 40128 Face 80253 47847 40129 12823 Face 80254 8709 3719 40129 Face 80255 878 40130 39844 Face 80256 878 31783 40130 Face 80257 1076 40131 37585 Face 80258 1076 47076 40131 Face 80259 7552 40132 33753 Face 80260 7552 22203 40132 Face 80261 10423 40133 28207 Face 80262 10423 10424 40133 Face 80263 13327 40134 28106 Face 80264 43198 37507 40134 Face 80265 9670 40135 9671 Face 80266 9670 28840 40135 Face 80267 8562 40136 23720 Face 80268 8562 27124 40136 Face 80269 5204 40137 16052 Face 80270 5204 28470 40137 Face 80271 19289 40138 32701 Face 80272 19289 19164 40138 Face 80273 1128 40139 3448 Face 80274 1128 25337 40139 Face 80275 1957 40140 27794 Face 80276 1957 34573 40140 Face 80277 28925 40141 1871 Face 80278 28925 7015 40141 Face 80279 26697 40142 2106 Face 80280 26697 18754 40142 Face 80281 11950 40143 49764 Face 80282 11950 3431 40143 Face 80283 6758 40144 23595 Face 80284 6758 38386 40144 Face 80285 9572 40145 12548 Face 80286 9572 36742 40145 Face 80287 40147 40146 8848 Face 80288 9374 32897 40146 Face 80289 9374 40147 417 Face 80290 9374 40146 40147 Face 80291 28607 40148 21878 Face 80292 28607 22343 40148 Face 80293 5576 40149 38420 Face 80294 5576 8069 40149 Face 80295 23667 40150 35797 Face 80296 23667 26714 40150 Face 80297 7676 40151 12214 Face 80298 7676 15311 40151 Face 80299 15830 40152 37817 Face 80300 15830 27216 40152 Face 80301 11846 40153 20285 Face 80302 11846 28063 40153 Face 80303 9244 40154 39649 Face 80304 9244 39181 40154 Face 80305 47457 40155 22258 Face 80306 32842 13747 40155 Face 80307 43943 40156 12420 Face 80308 4362 15152 40156 Face 80309 4311 40157 23544 Face 80310 44451 7740 40157 Face 80311 40157 40158 2129 Face 80312 40157 7740 40158 Face 80313 40160 40159 2304 Face 80314 40160 47637 40159 Face 80315 46050 40160 4848 Face 80316 14533 47637 40160 Face 80317 18350 40161 13927 Face 80318 18350 45388 40161 Face 80319 20091 40162 46524 Face 80320 20091 13527 40162 Face 80321 9300 40163 3111 Face 80322 9300 32125 40163 Face 80323 23568 40164 7271 Face 80324 23568 18903 40164 Face 80325 12935 40165 32406 Face 80326 12935 31407 40165 Face 80327 1002 40166 35586 Face 80328 45634 16422 40166 Face 80329 16529 40167 20372 Face 80330 16529 3983 40167 Face 80331 3498 40168 25053 Face 80332 40169 6787 40168 Face 80333 3498 40169 40168 Face 80334 3498 28048 40169 Face 80335 5264 40170 24289 Face 80336 5264 21124 40170 Face 80337 14840 40171 248 Face 80338 14840 20683 40171 Face 80339 20264 40172 1805 Face 80340 20264 33476 40172 Face 80341 5723 40173 37843 Face 80342 5723 31526 40173 Face 80343 12272 40174 33481 Face 80344 12272 15484 40174 Face 80345 9288 40175 24415 Face 80346 9288 31867 40175 Face 80347 9288 40176 23886 Face 80348 9288 49974 40176 Face 80349 12177 40177 23967 Face 80350 12177 8043 40177 Face 80351 21656 40178 24020 Face 80352 21656 43505 40178 Face 80353 8934 40179 14500 Face 80354 8934 25100 40179 Face 80355 42562 40180 17714 Face 80356 17041 27486 40180 Face 80357 16406 40181 27982 Face 80358 16406 16639 40181 Face 80359 31795 40182 28372 Face 80360 31795 8634 40182 Face 80361 28177 40183 5597 Face 80362 28177 3884 40183 Face 80363 19184 40184 2179 Face 80364 19184 24911 40184 Face 80365 19989 40185 35369 Face 80366 19989 7909 40185 Face 80367 10443 40186 1952 Face 80368 45760 10442 40186 Face 80369 24790 40187 7782 Face 80370 24790 3085 40187 Face 80371 123 40188 12185 Face 80372 123 38900 40188 Face 80373 14403 40189 5578 Face 80374 48171 15414 40189 Face 80375 4196 40190 23224 Face 80376 4196 24899 40190 Face 80377 9833 40191 27463 Face 80378 9833 37661 40191 Face 80379 15409 40192 43 Face 80380 45139 33066 40192 Face 80381 2865 40193 22295 Face 80382 48331 6215 40193 Face 80383 15280 40194 32444 Face 80384 49329 5903 40194 Face 80385 26275 40195 30483 Face 80386 26275 28735 40195 Face 80387 48225 40196 40498 Face 80388 40197 11634 40196 Face 80389 582 40197 40196 Face 80390 45323 31207 40197 Face 80391 17809 40198 40407 Face 80392 17809 4872 40198 Face 80393 18164 40199 22072 Face 80394 18164 8905 40199 Face 80395 16638 40200 31571 Face 80396 16638 42763 40200 Face 80397 9925 40201 18247 Face 80398 9925 9926 40201 Face 80399 7558 40202 25039 Face 80400 7558 49713 40202 Face 80401 2521 40203 19306 Face 80402 2521 29240 40203 Face 80403 5445 40204 2225 Face 80404 46344 43525 40204 Face 80405 11348 40205 44309 Face 80406 11348 4613 40205 Face 80407 21622 40206 36532 Face 80408 21622 14536 40206 Face 80409 42339 40207 35015 Face 80410 1841 26000 40207 Face 80411 12364 40208 7285 Face 80412 12364 33921 40208 Face 80413 42543 40209 27994 Face 80414 4861 47742 40209 Face 80415 10043 40210 16171 Face 80416 49609 40592 40210 Face 80417 49609 40211 48820 Face 80418 10043 24266 40211 Face 80419 9718 40212 26026 Face 80420 9718 44247 40212 Face 80421 3092 40213 20466 Face 80422 3092 6417 40213 Face 80423 19767 40214 1068 Face 80424 19767 49475 40214 Face 80425 22257 40215 7829 Face 80426 22257 15985 40215 Face 80427 44496 40216 5128 Face 80428 11424 22396 40216 Face 80429 40216 40217 5128 Face 80430 40216 17897 40217 Face 80431 15767 40218 29276 Face 80432 15767 29308 40218 Face 80433 9282 40219 2360 Face 80434 9282 44579 40219 Face 80435 23454 40220 1608 Face 80436 23454 25157 40220 Face 80437 43613 40221 31791 Face 80438 1294 15946 40221 Face 80439 1294 40222 20064 Face 80440 1294 40221 40222 Face 80441 8396 40223 18470 Face 80442 8396 15691 40223 Face 80443 10006 40224 19305 Face 80444 44248 6425 40224 Face 80445 48821 40225 11916 Face 80446 11915 22161 40225 Face 80447 9425 40226 39848 Face 80448 9425 31082 40226 Face 80449 40228 40227 39189 Face 80450 7891 23661 40227 Face 80451 7891 40228 25133 Face 80452 7891 40227 40228 Face 80453 429 40229 22865 Face 80454 429 26466 40229 Face 80455 40231 40230 36540 Face 80456 19947 46955 40230 Face 80457 19947 40231 37341 Face 80458 19947 40230 40231 Face 80459 3373 40232 16473 Face 80460 3373 22060 40232 Face 80461 7104 40233 1482 Face 80462 7104 33457 40233 Face 80463 23238 40234 48701 Face 80464 23238 799 40234 Face 80465 25005 40235 36286 Face 80466 25005 16700 40235 Face 80467 21978 40236 43924 Face 80468 21978 31510 40236 Face 80469 19091 40237 9544 Face 80470 19091 5 40237 Face 80471 5837 40238 30891 Face 80472 5837 33385 40238 Face 80473 27153 40239 23042 Face 80474 27153 42590 40239 Face 80475 19126 40240 36054 Face 80476 19126 28341 40240 Face 80477 9257 40241 38482 Face 80478 9257 30335 40241 Face 80479 21234 40242 22736 Face 80480 21234 13424 40242 Face 80481 17904 40243 19725 Face 80482 17904 10100 40243 Face 80483 12631 40244 37053 Face 80484 40245 35304 40244 Face 80485 12631 40245 40244 Face 80486 48304 9044 40245 Face 80487 15084 40246 27386 Face 80488 15084 49044 40246 Face 80489 8023 40247 36214 Face 80490 8023 28596 40247 Face 80491 11531 40248 21146 Face 80492 11531 18349 40248 Face 80493 1235 40249 24294 Face 80494 1235 17157 40249 Face 80495 9460 40250 1441 Face 80496 9460 16780 40250 Face 80497 10114 40251 27768 Face 80498 10114 28654 40251 Face 80499 4923 40252 20532 Face 80500 4923 27898 40252 Face 80501 3356 40253 3048 Face 80502 3356 34257 40253 Face 80503 5760 40254 13718 Face 80504 5760 45730 40254 Face 80505 45519 40255 32425 Face 80506 22335 45496 40255 Face 80507 3698 40256 43994 Face 80508 3698 36949 40256 Face 80509 10610 40257 14563 Face 80510 10610 32728 40257 Face 80511 26747 40258 4458 Face 80512 26747 33528 40258 Face 80513 18310 40259 7625 Face 80514 18310 13225 46360 Face 80515 12486 40260 46195 Face 80516 12486 26028 40260 Face 80517 26834 40261 11609 Face 80518 26834 303 40261 Face 80519 19450 40262 19449 Face 80520 19450 43150 40262 Face 80521 25417 40263 33422 Face 80522 25417 41536 40263 Face 80523 31380 40264 39777 Face 80524 31380 6948 40264 Face 80525 21500 40265 1764 Face 80526 21500 46428 40265 Face 80527 4123 40266 24833 Face 80528 4123 28614 40266 Face 80529 22480 40267 47256 Face 80530 22480 10859 40267 Face 80531 2238 40268 22465 Face 80532 2238 22464 40268 Face 80533 11891 40269 23836 Face 80534 11891 20911 40269 Face 80535 11047 40270 26460 Face 80536 11047 39138 40270 Face 80537 6306 40271 33164 Face 80538 49963 10584 40271 Face 80539 15984 40272 7592 Face 80540 15984 22256 40272 Face 80541 2219 40273 16263 Face 80542 2219 18359 40273 Face 80543 26826 40274 19868 Face 80544 26826 23720 40274 Face 80545 28396 40275 36912 Face 80546 28396 17955 40275 Face 80547 14741 40276 35644 Face 80548 14741 25478 40276 Face 80549 26881 40277 9187 Face 80550 26881 16878 40277 Face 80551 14889 40278 36579 Face 80552 14889 38285 40278 Face 80553 5364 40279 38802 Face 80554 5364 19121 40279 Face 80555 11693 40280 41220 Face 80556 11693 44784 40280 Face 80557 19596 40281 18536 Face 80558 19596 24923 40281 Face 80559 17170 40282 12069 Face 80560 17170 29300 40282 Face 80561 23730 40283 43609 Face 80562 23730 48842 40283 Face 80563 7174 40284 47492 Face 80564 7174 26598 40284 Face 80565 2494 40285 39442 Face 80566 49205 5659 40285 Face 80567 2494 40286 40285 Face 80568 2494 31734 40286 Face 80569 6991 40287 15901 Face 80570 6991 15780 40287 Face 80571 7574 40288 34645 Face 80572 40315 34646 40288 Face 80573 10687 40289 8250 Face 80574 10687 49971 40289 Face 80575 956 40290 47390 Face 80576 956 16576 40290 Face 80577 8168 40291 30583 Face 80578 45572 27653 40291 Face 80579 5542 40292 30493 Face 80580 5542 19123 40292 Face 80581 17220 40293 42891 Face 80582 17220 12793 40293 Face 80583 6292 40294 26941 Face 80584 6292 3448 40294 Face 80585 16595 40295 44857 Face 80586 16595 19058 40295 Face 80587 10258 40296 18295 Face 80588 10258 49985 40296 Face 80589 12094 40297 37618 Face 80590 47715 6769 40297 Face 80591 1203 40298 19227 Face 80592 1203 38242 40298 Face 80593 12340 40299 17335 Face 80594 41452 37832 40299 Face 80595 10701 40300 22433 Face 80596 10701 310 40300 Face 80597 2424 40301 19722 Face 80598 2424 36209 40301 Face 80599 25558 40302 17546 Face 80600 25558 11565 40302 Face 80601 3976 40303 30032 Face 80602 3976 12869 40303 Face 80603 3976 40304 17048 Face 80604 3976 11522 40304 Face 80605 13456 40305 12678 Face 80606 13456 25794 40305 Face 80607 8366 40306 3260 Face 80608 8366 29169 40306 Face 80609 18012 40307 25498 Face 80610 18012 2107 40307 Face 80611 19451 40308 35877 Face 80612 19451 38142 40308 Face 80613 47394 40309 22938 Face 80614 40310 28 40309 Face 80615 10293 40310 40309 Face 80616 10293 10377 40310 Face 80617 45869 40311 4734 Face 80618 8188 35788 40311 Face 80619 26816 40312 38744 Face 80620 26816 36235 40312 Face 80621 13587 40313 39322 Face 80622 48893 15287 40313 Face 80623 42733 40314 30519 Face 80624 23249 27432 40314 Face 80625 7574 40315 40288 Face 80626 7574 31155 40315 Face 80627 14706 40316 36085 Face 80628 14706 23017 40316 Face 80629 7438 40317 11821 Face 80630 7438 38370 40317 Face 80631 40319 40318 29857 Face 80632 3927 16743 40318 Face 80633 3927 40319 18810 Face 80634 3927 40318 40319 Face 80635 15651 40320 109 Face 80636 44558 6563 40320 Face 80637 8233 40321 9275 Face 80638 8233 17963 40321 Face 80639 5960 40322 35766 Face 80640 5960 46039 40322 Face 80641 47444 40323 31674 Face 80642 3159 28626 40323 Face 80643 15999 40324 37479 Face 80644 15999 12510 40324 Face 80645 1470 40325 31703 Face 80646 40844 6625 40325 Face 80647 1826 40326 17301 Face 80648 1826 29614 40326 Face 80649 6735 40327 24023 Face 80650 6735 47573 40327 Face 80651 2304 40328 4513 Face 80652 2304 40159 40328 Face 80653 7090 40329 49791 Face 80654 7090 23719 40329 Face 80655 4938 40330 25615 Face 80656 4938 26133 40330 Face 80657 1118 40331 25549 Face 80658 1118 18796 40331 Face 80659 12278 40332 3540 Face 80660 12278 22585 40332 Face 80661 5898 40333 11695 Face 80662 5898 29087 40333 Face 80663 44093 40334 19852 Face 80664 2883 28959 40334 Face 80665 37556 40335 14243 Face 80666 37556 34868 40335 Face 80667 1445 40336 36602 Face 80668 1445 17846 40336 Face 80669 17649 40337 41199 Face 80670 17649 28249 40337 Face 80671 15381 40338 34631 Face 80672 15381 48282 40338 Face 80673 44426 40339 13279 Face 80674 37998 22556 40339 Face 80675 9578 40340 25832 Face 80676 9578 16578 40340 Face 80677 11932 40341 38517 Face 80678 11932 30870 40341 Face 80679 15775 40342 22881 Face 80680 15775 32003 40342 Face 80681 29628 40343 33759 Face 80682 29628 5177 40343 Face 80683 13523 40344 2871 Face 80684 13523 2106 40344 Face 80685 12530 40345 14696 Face 80686 12530 29992 40345 Face 80687 13438 40346 1854 Face 80688 13438 23063 40346 Face 80689 14723 40347 32905 Face 80690 14723 16679 40347 Face 80691 35143 40348 14274 Face 80692 35143 14273 40348 Face 80693 23998 40349 35274 Face 80694 23998 46155 40349 Face 80695 2160 40350 36168 Face 80696 2160 33865 40350 Face 80697 18970 40351 7768 Face 80698 18970 31858 40351 Face 80699 18080 40352 7583 Face 80700 18080 1749 40352 Face 80701 522 40353 23259 Face 80702 522 32413 40353 Face 80703 40355 40354 36614 Face 80704 40355 24107 40354 Face 80705 1655 40355 15272 Face 80706 1655 24107 40355 Face 80707 19375 40356 22847 Face 80708 19375 16232 40356 Face 80709 47800 40357 35202 Face 80710 6614 10804 40357 Face 80711 1921 40358 46198 Face 80712 47418 12828 40358 Face 80713 10511 40359 9965 Face 80714 10511 32463 40359 Face 80715 17414 40360 17413 Face 80716 17414 37694 40360 Face 80717 19865 40361 31765 Face 80718 19865 7786 40361 Face 80719 4245 40362 20628 Face 80720 4245 28620 40362 Face 80721 125 40363 25629 Face 80722 125 20242 40363 Face 80723 19884 40364 15445 Face 80724 19884 3155 40364 Face 80725 6151 40365 25707 Face 80726 6151 20411 40365 Face 80727 519 40366 5604 Face 80728 519 22214 40366 Face 80729 8946 40367 25324 Face 80730 8946 29146 40367 Face 80731 40369 40368 22273 Face 80732 7960 47391 40368 Face 80733 7960 40369 37844 Face 80734 7960 40368 40369 Face 80735 2229 40370 39132 Face 80736 2229 9312 40370 Face 80737 24426 40371 48958 Face 80738 24426 2114 40371 Face 80739 21012 40372 3857 Face 80740 21012 5580 40372 Face 80741 3191 40373 1361 Face 80742 3191 22310 40373 Face 80743 7549 40374 33530 Face 80744 40375 26366 40374 Face 80745 7549 40375 40374 Face 80746 7549 25394 40375 Face 80747 21771 40376 39004 Face 80748 21771 8734 40376 Face 80749 9841 40377 32396 Face 80750 9841 34078 40377 Face 80751 11417 40378 48203 Face 80752 11417 29662 40378 Face 80753 18113 40379 32041 Face 80754 18113 8655 40379 Face 80755 8444 40380 36947 Face 80756 8444 18008 40380 Face 80757 12377 40381 16028 Face 80758 12377 29934 40381 Face 80759 20056 40382 15548 Face 80760 20056 5578 40382 Face 80761 18657 40383 22786 Face 80762 18657 23362 40383 Face 80763 2996 40384 27598 Face 80764 2996 11262 40384 Face 80765 24043 40385 15309 Face 80766 24043 39835 40385 Face 80767 15308 40386 42937 Face 80768 15308 8833 40386 Face 80769 298 40387 15680 Face 80770 298 18614 40387 Face 80771 38659 40388 6556 Face 80772 38659 12358 40388 Face 80773 22835 40389 27894 Face 80774 22835 21205 40389 Face 80775 8058 40390 32904 Face 80776 43223 25496 40390 Face 80777 8884 40391 472 Face 80778 8884 34770 40391 Face 80779 2049 40392 45602 Face 80780 2049 39752 40392 Face 80781 3162 40393 30498 Face 80782 3162 14919 40393 Face 80783 43294 40394 34046 Face 80784 376 33650 40394 Face 80785 1000 40395 32242 Face 80786 1000 35643 40395 Face 80787 19627 40396 1596 Face 80788 19627 31649 40396 Face 80789 2731 40397 27438 Face 80790 2731 30669 40397 Face 80791 19619 40398 24384 Face 80792 19619 42908 40398 Face 80793 18634 40399 10992 Face 80794 18634 24958 40399 Face 80795 6433 40400 28020 Face 80796 6433 33222 40400 Face 80797 6249 40401 8541 Face 80798 6249 16597 40401 Face 80799 17413 40402 17414 Face 80800 17413 30259 40402 Face 80801 5169 40403 36932 Face 80802 48395 12059 40403 Face 80803 10093 40404 47195 Face 80804 10093 37331 40404 Face 80805 26905 40405 44740 Face 80806 26905 45485 40405 Face 80807 33268 40406 15742 Face 80808 33268 1737 40406 Face 80809 462 40407 40198 Face 80810 462 9677 40407 Face 80811 20914 40408 14420 Face 80812 20914 20916 40408 Face 80813 1687 40409 33645 Face 80814 1687 14301 40409 Face 80815 147 40410 19655 Face 80816 147 41091 40410 Face 80817 19271 40411 25009 Face 80818 19271 788 40411 Face 80819 31682 40412 16649 Face 80820 31682 19697 40412 Face 80821 13447 40413 10853 Face 80822 13447 47182 40413 Face 80823 8682 40414 15089 Face 80824 8682 46518 40414 Face 80825 3058 40415 32083 Face 80826 3058 15495 40415 Face 80827 7467 40416 20173 Face 80828 7467 17140 40416 Face 80829 8242 40417 30372 Face 80830 8242 18699 40417 Face 80831 25713 40418 14883 Face 80832 25713 5552 40418 Face 80833 23406 40419 9999 Face 80834 23406 29059 40419 Face 80835 1691 40420 26789 Face 80836 1691 18742 40420 Face 80837 1104 40421 22742 Face 80838 1104 17719 40421 Face 80839 46550 40422 2446 Face 80840 30839 6178 40422 Face 80841 3599 40423 24609 Face 80842 3599 14573 40423 Face 80843 9431 40424 25882 Face 80844 9431 23017 40424 Face 80845 3200 40425 16964 Face 80846 46028 21514 40425 Face 80847 263 40426 9273 Face 80848 263 28130 40426 Face 80849 20985 40427 32811 Face 80850 20985 15762 40427 Face 80851 21900 40428 38229 Face 80852 21900 38385 49552 Face 80853 17195 40429 8781 Face 80854 17195 31676 40429 Face 80855 1479 40430 31335 Face 80856 1479 38555 40430 Face 80857 6926 40431 12506 Face 80858 6926 16860 40431 Face 80859 2188 40432 21817 Face 80860 2188 23100 40432 Face 80861 20474 40433 2769 Face 80862 20474 30778 40433 Face 80863 10038 40434 31339 Face 80864 10038 31716 40434 Face 80865 802 40435 37138 Face 80866 802 22504 40435 Face 80867 14360 40436 48087 Face 80868 14360 42139 40436 Face 80869 47463 40437 15278 Face 80870 694 26098 40437 Face 80871 7744 40438 29486 Face 80872 7744 23381 40438 Face 80873 4266 40439 23088 Face 80874 4266 21780 40439 Face 80875 275 40440 12529 Face 80876 275 33484 40440 Face 80877 23590 40441 30213 Face 80878 23590 6944 40441 Face 80879 16111 40442 34572 Face 80880 16111 35887 40442 Face 80881 1606 40443 24412 Face 80882 45314 31881 40443 Face 80883 1753 40444 47237 Face 80884 1753 44637 40444 Face 80885 40446 40445 1754 Face 80886 40446 21233 40445 Face 80887 34345 40446 36838 Face 80888 34345 21233 40446 Face 80889 9660 40447 23291 Face 80890 9660 37042 40447 Face 80891 35417 40448 47109 Face 80892 48606 35416 40448 Face 80893 44498 40449 4953 Face 80894 14829 21203 40449 Face 80895 15279 40450 29335 Face 80896 15279 694 40450 Face 80897 3613 40451 19960 Face 80898 3613 10805 40451 Face 80899 5938 40452 714 Face 80900 5938 39494 40452 Face 80901 8509 40453 23663 Face 80902 8509 16358 40453 Face 80903 40455 40454 15766 Face 80904 40455 19381 40454 Face 80905 7774 40455 15766 Face 80906 7774 19487 40455 Face 80907 15552 40456 8234 Face 80908 15552 1039 40456 Face 80909 13757 40457 874 Face 80910 13757 8133 40457 Face 80911 17150 40458 28622 Face 80912 17150 42452 40458 Face 80913 15384 40459 11787 Face 80914 15384 48547 40459 Face 80915 13298 40460 38466 Face 80916 13298 30351 40460 Face 80917 4142 40461 12169 Face 80918 4142 21935 40461 Face 80919 16589 40462 26496 Face 80920 16589 45676 40462 Face 80921 44388 40463 8988 Face 80922 24487 14816 40463 Face 80923 14793 40464 26503 Face 80924 14793 14794 40464 Face 80925 1654 40465 40262 Face 80926 1654 36944 40465 Face 80927 49351 40466 23854 Face 80928 7211 46214 40466 Face 80929 40468 40467 17831 Face 80930 9680 33933 40467 Face 80931 9680 40468 37338 Face 80932 9680 40467 40468 Face 80933 23307 40469 23309 Face 80934 23307 1333 40469 Face 80935 10058 40470 20549 Face 80936 10058 17338 40470 Face 80937 4009 40471 12636 Face 80938 4009 40515 40471 Face 80939 14720 40472 40182 Face 80940 14720 42955 40472 Face 80941 33010 40473 13943 Face 80942 33010 33009 40473 Face 80943 16884 40474 841 Face 80944 16884 23057 40474 Face 80945 18265 40475 49598 Face 80946 18265 16071 40475 Face 80947 12739 40476 17576 Face 80948 12739 22022 40476 Face 80949 3828 40477 1455 Face 80950 3828 21405 40477 Face 80951 24403 40478 31507 Face 80952 24403 22071 40478 Face 80953 1592 40479 27129 Face 80954 1592 19323 40479 Face 80955 4915 40480 10838 Face 80956 4915 34948 40480 Face 80957 19182 40481 31085 Face 80958 19182 45566 40481 Face 80959 10385 40482 38784 Face 80960 10385 48780 40482 Face 80961 28474 40483 1382 Face 80962 28474 2838 40483 Face 80963 12326 40484 21447 Face 80964 12326 5116 40484 Face 80965 5641 40485 9804 Face 80966 5641 49405 40485 Face 80967 21999 40486 41308 Face 80968 21999 40501 40486 Face 80969 21870 40487 18749 Face 80970 21870 24514 40487 Face 80971 11000 40488 11148 Face 80972 11000 29376 40488 Face 80973 1262 40489 49799 Face 80974 1262 19911 40489 Face 80975 5674 40490 34460 Face 80976 5674 27065 40490 Face 80977 5878 40491 34823 Face 80978 5878 19552 40491 Face 80979 17919 40492 7487 Face 80980 17919 39626 40492 Face 80981 48068 40493 37287 Face 80982 12981 31070 40493 Face 80983 21678 40494 30308 Face 80984 21678 34480 40494 Face 80985 21172 40495 272 Face 80986 21172 25467 40495 Face 80987 1600 40496 19326 Face 80988 1600 37354 40496 Face 80989 16439 40497 4363 Face 80990 16439 15823 40497 Face 80991 26441 40498 3885 Face 80992 26441 5763 40498 Face 80993 18517 40499 37189 Face 80994 18517 32717 40499 Face 80995 356 40500 23940 Face 80996 356 22386 40500 Face 80997 7943 40501 7886 Face 80998 7943 40219 40501 Face 80999 40503 40502 4788 Face 81000 16590 6148 40502 Face 81001 16590 40503 28253 Face 81002 16590 40502 40503 Face 81003 26842 40504 11035 Face 81004 26842 35661 40504 Face 81005 16946 40505 23190 Face 81006 16946 44332 40505 Face 81007 36 40506 6704 Face 81008 40507 1951 40506 Face 81009 36 40507 40506 Face 81010 36 17928 40507 Face 81011 9881 40508 7640 Face 81012 9881 9880 40508 Face 81013 10227 40509 134 Face 81014 10227 42845 40509 Face 81015 11802 40510 6826 Face 81016 11802 37639 40510 Face 81017 4356 40511 34335 Face 81018 4356 12069 40511 Face 81019 8874 40512 47929 Face 81020 8874 22708 40512 Face 81021 10488 40513 49734 Face 81022 10488 29944 40513 Face 81023 3122 40514 22046 Face 81024 3122 31188 40514 Face 81025 17693 40515 4009 Face 81026 17693 24665 40515 Face 81027 15629 40516 2200 Face 81028 15629 31720 40516 Face 81029 10656 40517 15169 Face 81030 10656 27669 40517 Face 81031 33856 40518 13136 Face 81032 33856 10092 40518 Face 81033 3471 40519 28577 Face 81034 3471 43742 40519 Face 81035 20697 40520 34050 Face 81036 20697 2098 40520 Face 81037 11336 40521 28668 Face 81038 11336 21537 40521 Face 81039 3170 40522 26619 Face 81040 3170 18841 40522 Face 81041 3013 40523 31245 Face 81042 3013 27194 40523 Face 81043 12309 40524 15930 Face 81044 40525 28812 40524 Face 81045 12309 40525 40524 Face 81046 12309 26768 40525 Face 81047 12755 40526 780 Face 81048 12755 2318 40526 Face 81049 30480 40527 35567 Face 81050 30480 39774 40527 Face 81051 12761 40528 29836 Face 81052 12761 35509 40528 Face 81053 13091 40529 32768 Face 81054 13091 13090 40529 Face 81055 19092 40530 45112 Face 81056 19092 23481 40530 Face 81057 1338 40531 28371 Face 81058 40532 27876 40531 Face 81059 1338 40532 40531 Face 81060 1338 44373 40532 Face 81061 7736 40533 23619 Face 81062 7736 30395 40533 Face 81063 40823 40534 20705 Face 81064 4367 10364 40534 Face 81065 15636 40535 38058 Face 81066 45962 17490 40535 Face 81067 1747 40536 32021 Face 81068 44814 6456 40536 Face 81069 22721 40537 43454 Face 81070 22721 1987 40537 Face 81071 4056 40538 34225 Face 81072 4056 40165 40538 Face 81073 18380 40539 38649 Face 81074 41322 12055 40539 Face 81075 18165 40540 10803 Face 81076 18165 32438 40540 Face 81077 18165 40541 6488 Face 81078 18165 10803 40541 Face 81079 16266 40542 37970 Face 81080 16266 30675 40542 Face 81081 7009 40543 25025 Face 81082 7009 35926 40543 Face 81083 14623 40544 3912 Face 81084 14623 3911 40544 Face 81085 4615 40545 15886 Face 81086 4615 4862 40545 Face 81087 40547 40546 40058 Face 81088 245 31437 40546 Face 81089 245 40547 49103 Face 81090 245 40546 40547 Face 81091 245 40548 31437 Face 81092 245 10196 40548 Face 81093 18943 40549 13353 Face 81094 18943 28152 40549 Face 81095 23851 40550 49961 Face 81096 23851 41615 40550 Face 81097 19939 40551 22807 Face 81098 19939 25779 40551 Face 81099 10941 40552 21391 Face 81100 10941 3367 40552 Face 81101 12788 40553 4140 Face 81102 12788 39471 40553 Face 81103 9637 40554 12915 Face 81104 9637 46368 40554 Face 81105 20769 40555 2491 Face 81106 20769 26682 40555 Face 81107 5088 40556 10436 Face 81108 5088 21272 40556 Face 81109 7839 40557 8369 Face 81110 7839 22422 40557 Face 81111 21842 40558 13069 Face 81112 21842 8384 40558 Face 81113 10605 40559 33779 Face 81114 10605 19370 40559 Face 81115 40561 40560 22483 Face 81116 40561 9807 40560 Face 81117 1394 40561 22483 Face 81118 1394 9807 40561 Face 81119 3981 40562 10110 Face 81120 3981 39595 40562 Face 81121 40564 40563 7703 Face 81122 40564 9025 40563 Face 81123 1892 40564 7703 Face 81124 1892 27497 40564 Face 81125 8721 40565 16692 Face 81126 8721 2260 40565 Face 81127 21474 40566 5888 Face 81128 21474 22272 40566 Face 81129 15491 40567 32246 Face 81130 15491 16535 40567 Face 81131 13541 40568 29543 Face 81132 13541 32495 40568 Face 81133 15093 40569 34982 Face 81134 15093 46459 40569 Face 81135 12401 40570 22411 Face 81136 40571 20032 40570 Face 81137 12401 40571 40570 Face 81138 12401 33503 40571 Face 81139 19646 40572 26420 Face 81140 19646 13981 40572 Face 81141 25830 40573 6055 Face 81142 25830 14867 40573 Face 81143 14240 40574 30237 Face 81144 14240 5778 40574 Face 81145 36643 40575 19111 Face 81146 36643 23910 40575 Face 81147 12572 40576 17979 Face 81148 12572 6878 40576 Face 81149 9560 40577 27573 Face 81150 9560 14222 40577 Face 81151 11914 40578 42862 Face 81152 11914 20653 42240 Face 81153 14365 40579 24235 Face 81154 14365 7220 40579 Face 81155 11955 40580 16720 Face 81156 11955 1739 40580 Face 81157 2276 40581 11866 Face 81158 2276 29750 40581 Face 81159 800 40582 46270 Face 81160 800 13279 40582 Face 81161 10504 40583 15677 Face 81162 10504 25856 40583 Face 81163 2111 40584 15090 Face 81164 44028 14690 40584 Face 81165 27517 40585 12576 Face 81166 27517 8044 40585 Face 81167 11815 40586 32680 Face 81168 11815 11814 40586 Face 81169 15693 40587 35960 Face 81170 15693 25325 40587 Face 81171 10250 40588 24070 Face 81172 10250 33402 40588 Face 81173 11089 40589 34346 Face 81174 11089 31490 40589 Face 81175 19141 40590 27355 Face 81176 19141 13992 40590 Face 81177 26811 40591 38058 Face 81178 26811 37843 40591 Face 81179 3971 40592 49609 Face 81180 3971 20450 40592 Face 81181 20101 40593 2838 Face 81182 20101 837 40593 Face 81183 3684 40594 29480 Face 81184 3684 43291 40594 Face 81185 8240 40595 22008 Face 81186 8240 35498 40595 Face 81187 26584 40596 9328 Face 81188 26584 36968 40596 Face 81189 10434 40597 29062 Face 81190 10434 7803 40597 Face 81191 33482 40598 25522 Face 81192 33482 16277 40598 Face 81193 11132 40599 57 Face 81194 11132 20476 40599 Face 81195 13816 40600 13535 Face 81196 13816 4186 40600 Face 81197 478 40601 14887 Face 81198 478 38132 40601 Face 81199 46900 40602 40014 Face 81200 12613 12614 40602 Face 81201 27484 40603 5499 Face 81202 27484 13707 40603 Face 81203 4759 40604 16148 Face 81204 4759 3887 40604 Face 81205 7424 40605 18261 Face 81206 43321 30731 40605 Face 81207 1029 40606 36932 Face 81208 46062 25388 40606 Face 81209 22728 40607 3569 Face 81210 22728 19342 40607 Face 81211 6012 40608 6789 Face 81212 6012 12735 40608 Face 81213 30442 40609 12290 Face 81214 30442 31356 40609 Face 81215 29491 40610 700 Face 81216 29491 2910 40610 Face 81217 9971 40611 33121 Face 81218 9971 17595 40611 Face 81219 17752 40612 27201 Face 81220 17752 35683 40612 Face 81221 2460 40613 22241 Face 81222 2460 39849 40613 Face 81223 7577 40614 37342 Face 81224 7577 22011 40614 Face 81225 25851 40615 35850 Face 81226 25851 14527 40615 Face 81227 14757 40616 26025 Face 81228 14757 33031 40616 Face 81229 8135 40617 17912 Face 81230 8135 29491 40617 Face 81231 7312 40618 20292 Face 81232 7312 33226 40618 Face 81233 5961 40619 19509 Face 81234 5961 17727 40619 Face 81235 6934 40620 30723 Face 81236 6934 3648 40620 Face 81237 6437 40621 25036 Face 81238 6437 18045 40621 Face 81239 4777 40622 30089 Face 81240 4777 48554 40622 Face 81241 23338 40623 36177 Face 81242 23338 35789 40623 Face 81243 8384 40624 26352 Face 81244 8384 27968 40624 Face 81245 13714 40625 48031 Face 81246 13714 47490 40625 Face 81247 40627 40626 44811 Face 81248 40627 3837 40626 Face 81249 13261 40627 30102 Face 81250 13261 3837 40627 Face 81251 12230 40628 9979 Face 81252 12230 39697 40628 Face 81253 16238 40629 2744 Face 81254 16238 25527 40629 Face 81255 6994 40630 34142 Face 81256 6994 2582 40630 Face 81257 20357 40631 1664 Face 81258 20357 43052 40631 Face 81259 10829 40632 33638 Face 81260 10829 38235 40632 Face 81261 27266 40633 14216 Face 81262 27266 212 40633 Face 81263 5710 45151 38605 Face 81264 5710 20641 45151 Face 81265 44195 40635 23864 Face 81266 43371 29737 40635 Face 81267 7907 40636 22815 Face 81268 7907 42103 40636 Face 81269 2892 40637 17358 Face 81270 2892 15949 40637 Face 81271 24440 40638 42824 Face 81272 24440 32738 40638 Face 81273 27739 40639 27740 Face 81274 27739 46880 40639 Face 81275 5583 40640 11282 Face 81276 5583 38650 40640 Face 81277 23318 40641 1455 Face 81278 23318 25176 40641 Face 81279 17555 40642 4298 Face 81280 17555 15916 40642 Face 81281 15198 40643 33793 Face 81282 15198 18307 40643 Face 81283 45074 40644 24295 Face 81284 8470 26994 40644 Face 81285 25342 40645 48305 Face 81286 25342 36032 40645 Face 81287 25226 40646 28753 Face 81288 25226 2217 40646 Face 81289 25964 40647 37501 Face 81290 25964 14658 40647 Face 81291 14045 40648 2965 Face 81292 40649 23684 40648 Face 81293 14045 40649 40648 Face 81294 14045 28533 40649 Face 81295 24595 40650 4413 Face 81296 45016 28699 40650 Face 81297 5883 40651 8128 Face 81298 5883 27893 40651 Face 81299 11457 40652 32361 Face 81300 11457 24500 40652 Face 81301 5435 40653 9119 Face 81302 5435 2471 40653 Face 81303 12649 40654 16807 Face 81304 12649 25553 40654 Face 81305 11308 40655 23952 Face 81306 11308 24225 40655 Face 81307 14363 40656 43345 Face 81308 14363 46648 40656 Face 81309 20810 40657 11894 Face 81310 20810 20811 40657 Face 81311 88 40658 49997 Face 81312 88 17843 40658 Face 81313 12668 40659 17943 Face 81314 12668 29402 40659 Face 81315 45878 40660 14180 Face 81316 2458 15401 40660 Face 81317 14286 40661 6093 Face 81318 14286 41049 40661 Face 81319 42111 40662 39173 Face 81320 2280 36153 40662 Face 81321 7832 40663 32630 Face 81322 49243 37933 40663 Face 81323 6954 40664 35325 Face 81324 6954 38393 40664 Face 81325 40666 40665 13441 Face 81326 7784 34841 40665 Face 81327 7784 40666 14619 Face 81328 7784 40665 40666 Face 81329 13219 40667 34626 Face 81330 13219 39335 40667 Face 81331 14002 40668 32576 Face 81332 14002 46201 40668 Face 81333 6535 40669 17234 Face 81334 6535 27592 40669 Face 81335 2118 40670 31960 Face 81336 2118 25252 40670 Face 81337 12019 40671 39053 Face 81338 12019 14404 40671 Face 81339 5818 40672 25428 Face 81340 5818 46706 40672 Face 81341 26614 40673 10533 Face 81342 26614 18879 40673 Face 81343 22471 49602 40713 Face 81344 22471 166 40674 Face 81345 18006 40675 18352 Face 81346 18006 31814 40675 Face 81347 343 40676 34072 Face 81348 343 39595 40676 Face 81349 40676 40677 34072 Face 81350 44556 22693 40677 Face 81351 10975 40678 26391 Face 81352 40679 32287 40678 Face 81353 10975 40679 40678 Face 81354 10975 30166 40679 Face 81355 4268 40680 44046 Face 81356 4268 10469 40680 Face 81357 16309 40681 21167 Face 81358 16309 39181 40681 Face 81359 42832 40682 27967 Face 81360 16 15526 40682 Face 81361 22025 40683 4469 Face 81362 22025 24236 40683 Face 81363 163 40684 18097 Face 81364 163 29884 40684 Face 81365 8039 40685 27724 Face 81366 8039 32368 40685 Face 81367 11099 40686 27264 Face 81368 11099 42852 40686 Face 81369 11072 40687 21448 Face 81370 11072 25062 40687 Face 81371 47117 40688 9219 Face 81372 33708 22065 40688 Face 81373 10374 40689 30783 Face 81374 10374 25817 40689 Face 81375 25629 40690 28650 Face 81376 25629 22367 40690 Face 81377 23996 40691 17897 Face 81378 23996 43640 40691 Face 81379 11730 40692 41122 Face 81380 40693 31419 40692 Face 81381 11730 40693 40692 Face 81382 11730 4942 40693 Face 81383 19770 40694 38040 Face 81384 19770 46951 40694 Face 81385 9766 40695 32662 Face 81386 44075 6718 40695 Face 81387 29742 40696 30119 Face 81388 29742 29035 40696 Face 81389 6869 40697 25347 Face 81390 42511 49262 40697 Face 81391 19240 40698 28383 Face 81392 19240 37022 40698 Face 81393 30240 40699 12158 Face 81394 30240 30242 40699 Face 81395 37794 40700 14238 Face 81396 37794 35527 40700 Face 81397 20047 40701 10875 Face 81398 20047 6203 40701 Face 81399 8215 40702 29073 Face 81400 8215 49841 40702 Face 81401 6218 40703 28478 Face 81402 6218 43406 40703 Face 81403 16823 40704 8070 Face 81404 16823 32528 40704 Face 81405 9144 40705 42823 Face 81406 9144 48198 40705 Face 81407 28764 40706 22067 Face 81408 28764 17330 40706 Face 81409 18198 40707 37698 Face 81410 18198 4018 40707 Face 81411 10417 40708 23548 Face 81412 10417 1377 40708 Face 81413 7718 40709 9147 Face 81414 7718 8648 40709 Face 81415 21149 40710 7998 Face 81416 21149 29295 40710 Face 81417 17565 40711 27541 Face 81418 17565 11864 40711 Face 81419 40713 40712 37488 Face 81420 3626 25867 40712 Face 81421 3626 40713 49602 Face 81422 3626 40712 40713 Face 81423 26152 40714 44865 Face 81424 26152 6397 40714 Face 81425 12228 40715 206 Face 81426 49217 17239 40715 Face 81427 1823 40716 296 Face 81428 1823 36213 40716 Face 81429 40718 40717 27800 Face 81430 7783 19209 40717 Face 81431 7783 40718 2321 Face 81432 7783 40717 40718 Face 81433 2177 40719 49860 Face 81434 2177 44157 40719 Face 81435 4781 40720 20135 Face 81436 4781 15729 40720 Face 81437 22395 40721 8706 Face 81438 22395 34667 40721 Face 81439 10270 40722 10671 Face 81440 43779 24213 40722 Face 81441 15981 40723 10878 Face 81442 15981 27336 40723 Face 81443 43491 40724 3432 Face 81444 11551 48908 40724 Face 81445 14779 40725 228 Face 81446 14779 46737 40725 Face 81447 17939 40726 5511 Face 81448 17939 27204 40726 Face 81449 21389 40727 5125 Face 81450 21389 32789 40727 Face 81451 10731 40728 28136 Face 81452 10731 35177 40728 Face 81453 10731 40729 35177 Face 81454 10731 24057 40729 Face 81455 1574 40730 24862 Face 81456 1574 39045 40730 Face 81457 44771 40731 8145 Face 81458 13528 44803 40731 Face 81459 2199 40732 17767 Face 81460 2199 39870 40732 Face 81461 11227 40733 19558 Face 81462 11227 12903 40733 Face 81463 13067 40734 21190 Face 81464 13067 5242 40734 Face 81465 41410 40735 19401 Face 81466 9064 14449 40735 Face 81467 24023 40736 49867 Face 81468 24023 37516 40736 Face 81469 45874 40737 30945 Face 81470 3824 39402 40737 Face 81471 2255 40738 15797 Face 81472 2255 27838 40738 Face 81473 40740 40739 7834 Face 81474 10462 2837 40739 Face 81475 10462 40740 20760 Face 81476 10462 40739 40740 Face 81477 17428 40741 1334 Face 81478 17428 5491 40741 Face 81479 21414 40742 37471 Face 81480 21414 20057 40742 Face 81481 28357 40743 21690 Face 81482 28357 23507 40743 Face 81483 17249 40744 11840 Face 81484 17249 49805 40744 Face 81485 8767 40745 23508 Face 81486 8767 34520 40745 Face 81487 29026 40746 23977 Face 81488 29026 21736 40746 Face 81489 14776 40747 26633 Face 81490 14776 36386 40747 Face 81491 8781 40748 14057 Face 81492 8781 40429 40748 Face 81493 1633 40749 29180 Face 81494 1633 12895 40749 Face 81495 20349 40750 49810 Face 81496 20349 37520 40750 Face 81497 3525 40751 6687 Face 81498 3525 47239 40751 Face 81499 8383 40752 47607 Face 81500 8383 13475 40752 Face 81501 11196 40753 26808 Face 81502 11196 20150 40753 Face 81503 1492 40754 21973 Face 81504 1492 34500 40754 Face 81505 33 40755 38526 Face 81506 33 44272 40755 Face 81507 15199 40756 45705 Face 81508 15199 3874 40756 Face 81509 28931 40757 42068 Face 81510 28931 28930 40757 Face 81511 38603 40758 8271 Face 81512 38603 33569 40758 Face 81513 26823 40759 6237 Face 81514 26823 7123 40759 Face 81515 2711 40760 16567 Face 81516 2711 16568 40760 Face 81517 4931 40761 18452 Face 81518 4931 16707 40761 Face 81519 47670 40762 8836 Face 81520 19109 24618 40762 Face 81521 10294 40763 34445 Face 81522 10294 18127 40763 Face 81523 42771 40764 34699 Face 81524 12850 33657 40764 Face 81525 4078 40765 17350 Face 81526 4078 10469 40765 Face 81527 13739 40766 25862 Face 81528 13739 25405 40766 Face 81529 15823 40767 40497 Face 81530 15823 15824 40767 Face 81531 8570 40768 31307 Face 81532 8570 46094 40768 Face 81533 1374 40769 18072 Face 81534 44206 20171 40769 Face 81535 42324 40770 2216 Face 81536 16193 7777 40770 Face 81537 17868 49199 2974 Face 81538 17868 14 40771 Face 81539 47685 40772 36135 Face 81540 18525 27921 40772 Face 81541 11562 40773 1781 Face 81542 11562 17820 40773 Face 81543 72 40774 35081 Face 81544 72 8848 40774 Face 81545 5690 40775 40356 Face 81546 5690 47031 40775 Face 81547 6542 40776 48232 Face 81548 6542 32000 40776 Face 81549 20845 40777 30574 Face 81550 20845 29507 40777 Face 81551 4783 40778 9123 Face 81552 4783 15063 40778 Face 81553 3212 40779 34097 Face 81554 3212 27688 40779 Face 81555 4952 40780 44597 Face 81556 4952 36849 40780 Face 81557 28949 40781 45149 Face 81558 28949 32252 40781 Face 81559 22877 40782 43303 Face 81560 22877 17102 40782 Face 81561 23942 40783 7965 Face 81562 23942 39305 40783 Face 81563 45665 40784 33883 Face 81564 3642 33187 40784 Face 81565 1061 40785 24588 Face 81566 1061 18645 40785 Face 81567 3763 40786 19963 Face 81568 3763 46592 40786 Face 81569 12308 40787 15951 Face 81570 12308 12416 40787 Face 81571 13841 40788 34548 Face 81572 13841 13842 40788 Face 81573 20395 40789 11519 Face 81574 20395 3330 40789 Face 81575 6192 40790 43347 Face 81576 6192 9531 40790 Face 81577 18093 40791 8678 Face 81578 18093 1315 40791 Face 81579 1267 43964 6190 Face 81580 1267 30521 40792 Face 81581 4308 40793 897 Face 81582 4308 28008 40793 Face 81583 10935 40794 5844 Face 81584 10935 21949 40794 Face 81585 17861 40795 25072 Face 81586 17861 31572 40795 Face 81587 3193 40796 43264 Face 81588 3193 46299 40796 Face 81589 40798 40797 47052 Face 81590 13015 11849 40797 Face 81591 13015 40798 32497 Face 81592 13015 40797 40798 Face 81593 2482 40799 29117 Face 81594 2482 12706 40799 Face 81595 12004 40801 6208 Face 81596 12004 5208 40801 Face 81597 40800 40801 27170 Face 81598 40800 6208 40801 Face 81599 8792 40802 33743 Face 81600 8792 5578 40802 Face 81601 28640 40803 514 Face 81602 28640 8836 40803 Face 81603 18326 40804 46065 Face 81604 18326 45889 40804 Face 81605 14058 40805 18563 Face 81606 44414 4974 40805 Face 81607 47100 40806 33862 Face 81608 3341 12303 40806 Face 81609 27956 40807 43340 Face 81610 27956 7432 40807 Face 81611 11949 40808 8917 Face 81612 11949 39638 40808 Face 81613 1982 40809 45543 Face 81614 47077 17044 40809 Face 81615 6468 40810 17215 Face 81616 6468 2883 40810 Face 81617 22444 40811 22445 Face 81618 22444 47446 40811 Face 81619 16139 40812 39365 Face 81620 16139 6169 40812 Face 81621 985 40813 18231 Face 81622 985 19534 40813 Face 81623 3751 40814 16271 Face 81624 3751 22183 40814 Face 81625 10117 40815 3880 Face 81626 10117 28737 40815 Face 81627 17928 40816 10392 Face 81628 17928 2735 40816 Face 81629 23933 40817 935 Face 81630 23933 5860 40817 Face 81631 11579 40818 16690 Face 81632 40819 22961 40818 Face 81633 11579 40819 40818 Face 81634 11579 26383 40819 Face 81635 13771 40820 48564 Face 81636 40821 33013 40820 Face 81637 13771 40821 40820 Face 81638 13771 13772 40821 Face 81639 33573 40822 18124 Face 81640 33573 48342 40822 Face 81641 4367 40823 20306 Face 81642 4367 40534 40823 Face 81643 43146 40824 24772 Face 81644 16671 3051 40824 Face 81645 24381 40825 33455 Face 81646 24381 16887 40825 Face 81647 15953 40826 38516 Face 81648 15953 38083 40826 Face 81649 22656 40827 4201 Face 81650 22656 5268 40827 Face 81651 24564 40828 17840 Face 81652 24564 13317 40828 Face 81653 15744 40829 46209 Face 81654 15744 5339 40829 Face 81655 4226 40830 23607 Face 81656 4226 36810 40830 Face 81657 9856 40831 26288 Face 81658 9856 43740 40831 Face 81659 14811 40832 32139 Face 81660 48157 23845 40832 Face 81661 40834 40833 1926 Face 81662 40834 44747 40833 Face 81663 18425 40834 1926 Face 81664 18425 14378 40834 Face 81665 11362 40835 29696 Face 81666 11362 36454 40835 Face 81667 8764 40836 15011 Face 81668 8764 37637 40836 Face 81669 11055 40837 44588 Face 81670 11055 38334 40837 Face 81671 40839 40838 1252 Face 81672 30996 28716 40838 Face 81673 30996 40839 7609 Face 81674 30996 40838 40839 Face 81675 41439 40840 25754 Face 81676 41439 11310 40840 Face 81677 10441 40841 25148 Face 81678 10441 11453 40841 Face 81679 45568 40842 21261 Face 81680 553 14240 40842 Face 81681 13998 40843 22015 Face 81682 13998 8758 40843 Face 81683 1470 40844 40325 Face 81684 1470 32936 40844 Face 81685 33640 40845 26560 Face 81686 33640 43591 40845 Face 81687 29142 40846 18470 Face 81688 29142 17137 40846 Face 81689 47654 40847 32728 Face 81690 7815 12672 40847 Face 81691 19228 40848 8718 Face 81692 19228 47997 40848 Face 81693 23720 40849 28747 Face 81694 23720 37975 40849 Face 81695 21494 40850 11572 Face 81696 21494 35069 40850 Face 81697 8862 40851 10556 Face 81698 8862 22210 40851 Face 81699 22429 40852 26622 Face 81700 22429 36188 40852 Face 81701 2050 40853 21343 Face 81702 2050 12938 40853 Face 81703 8320 40854 22322 Face 81704 8320 32563 40854 Face 81705 3660 40855 13807 Face 81706 40856 49572 40855 Face 81707 3660 40856 40855 Face 81708 3660 12336 40856 Face 81709 14116 40857 39962 Face 81710 14116 3858 40857 Face 81711 22213 40858 34584 Face 81712 22213 7609 40858 Face 81713 369 40859 42093 Face 81714 369 36125 40859 Face 81715 369 40860 34232 Face 81716 369 42093 40860 Face 81717 19598 40861 45292 Face 81718 19598 47341 40861 Face 81719 2676 40862 8658 Face 81720 2676 13317 40862 Face 81721 1320 40863 37294 Face 81722 1320 13960 40863 Face 81723 12994 40864 713 Face 81724 12994 4109 40864 Face 81725 3829 40865 23512 Face 81726 3829 41673 40865 Face 81727 11554 40866 8899 Face 81728 11554 39060 40866 Face 81729 48257 40867 37242 Face 81730 48257 46473 40867 Face 81731 9694 40868 15686 Face 81732 9694 1421 40868 Face 81733 25953 40869 1376 Face 81734 25953 34003 40869 Face 81735 3115 40870 25294 Face 81736 3115 37992 40870 Face 81737 29832 40871 1453 Face 81738 29832 10044 40871 Face 81739 4896 40872 27070 Face 81740 4896 19516 40872 Face 81741 14577 40873 39945 Face 81742 14577 15665 40873 Face 81743 14280 40874 21920 Face 81744 14280 33759 40874 Face 81745 18480 40875 24391 Face 81746 18480 19411 40875 Face 81747 8893 40876 1414 Face 81748 8893 31808 40876 Face 81749 21974 40877 8515 Face 81750 21974 13089 40877 Face 81751 29854 40878 7169 Face 81752 29854 4475 40878 Face 81753 25666 40879 12751 Face 81754 48202 4257 40879 Face 81755 19354 40880 22993 Face 81756 19354 39995 40880 Face 81757 3822 40881 28865 Face 81758 3822 31211 40881 Face 81759 26461 40882 12812 Face 81760 26461 38471 40882 Face 81761 7030 40883 13892 Face 81762 7030 30379 40883 Face 81763 7997 40884 16484 Face 81764 7997 29912 40884 Face 81765 9891 40885 21100 Face 81766 9891 39014 40885 Face 81767 10139 40886 47506 Face 81768 10139 26890 40886 Face 81769 3292 40887 32557 Face 81770 3292 27235 40887 Face 81771 16900 40888 44807 Face 81772 16900 18582 40888 Face 81773 1242 40889 29813 Face 81774 1242 26877 40889 Face 81775 40891 40890 18832 Face 81776 10638 42195 40890 Face 81777 10638 40891 6578 Face 81778 10638 40890 40891 Face 81779 41348 40892 46783 Face 81780 322 30061 40892 Face 81781 29171 40893 15030 Face 81782 29171 29172 40893 Face 81783 20787 40894 4900 Face 81784 20787 9976 40894 Face 81785 6583 40895 26977 Face 81786 6583 24976 40895 Face 81787 40897 40896 31209 Face 81788 3001 9325 40896 Face 81789 3001 40897 32687 Face 81790 3001 40896 40897 Face 81791 24470 40898 17483 Face 81792 24470 21120 40898 Face 81793 6938 40899 7936 Face 81794 6938 46385 40899 Face 81795 25353 40900 38687 Face 81796 25353 1092 40900 Face 81797 46336 40901 37200 Face 81798 7530 785 48252 Face 81799 9165 40902 5720 Face 81800 9165 17470 40902 Face 81801 12990 40903 11766 Face 81802 12990 42621 40903 Face 81803 49066 40904 4305 Face 81804 20478 23807 40904 Face 81805 11143 40905 34729 Face 81806 11143 15690 40905 Face 81807 11709 40906 3707 Face 81808 45948 636 40906 Face 81809 13266 40907 6657 Face 81810 13266 1382 40907 Face 81811 14718 40908 28491 Face 81812 14718 24675 40908 Face 81813 10064 40909 39994 Face 81814 10064 27984 40909 Face 81815 15653 40910 20188 Face 81816 15653 28513 40910 Face 81817 12783 40911 36634 Face 81818 12783 6638 40911 Face 81819 42484 40912 22425 Face 81820 11100 29041 40912 Face 81821 11100 40913 25027 Face 81822 11100 40912 40913 Face 81823 10348 40914 40028 Face 81824 10348 17770 40914 Face 81825 19758 40915 2271 Face 81826 19758 32385 40915 Face 81827 23178 40916 32112 Face 81828 23178 23054 40916 Face 81829 8363 40917 22558 Face 81830 8363 17829 40917 Face 81831 12109 40918 15627 Face 81832 12109 40052 40918 Face 81833 9601 40919 7844 Face 81834 9601 45888 40919 Face 81835 9847 40920 18819 Face 81836 9847 35993 40920 Face 81837 30595 40921 37817 Face 81838 30595 29297 40921 Face 81839 9051 40922 23872 Face 81840 9051 16729 40922 Face 81841 10836 40923 7702 Face 81842 10836 33822 40923 Face 81843 3972 40924 11826 Face 81844 3972 35196 40924 Face 81845 30735 40925 3804 Face 81846 30735 30736 40925 Face 81847 16864 40926 36792 Face 81848 16864 25402 40926 Face 81849 12815 40927 38205 Face 81850 12815 12444 40927 Face 81851 2999 40928 25631 Face 81852 2999 48324 40928 Face 81853 11538 40929 38343 Face 81854 11538 22023 40929 Face 81855 6977 40930 4627 Face 81856 6977 15923 40930 Face 81857 7372 40931 25141 Face 81858 7372 36215 40931 Face 81859 19275 40932 39151 Face 81860 19275 23498 40932 Face 81861 6 40933 14942 Face 81862 6 25087 40933 Face 81863 24546 40934 27174 Face 81864 24546 11637 40934 Face 81865 48522 40935 40936 Face 81866 12348 36657 40935 Face 81867 5010 40936 15612 Face 81868 5010 22489 40936 Face 81869 25505 40937 8972 Face 81870 25505 32854 40937 Face 81871 2919 40938 45029 Face 81872 2919 36689 40938 Face 81873 7766 40939 32248 Face 81874 7766 13838 40939 Face 81875 6213 40940 1837 Face 81876 6213 34657 40940 Face 81877 5594 40941 36418 Face 81878 42216 13153 40941 Face 81879 15543 40942 48329 Face 81880 15543 7318 40942 Face 81881 68 40943 9621 Face 81882 43288 21060 40943 Face 81883 36985 40944 10874 Face 81884 36985 19242 40944 Face 81885 33510 40945 21903 Face 81886 33510 29309 40945 Face 81887 5058 40946 29233 Face 81888 46292 22231 40946 Face 81889 1778 40947 15713 Face 81890 40948 37497 40947 Face 81891 1778 40948 40947 Face 81892 1778 15712 40948 Face 81893 25967 40949 13647 Face 81894 25967 44861 40949 Face 81895 7136 40950 20109 Face 81896 7136 20778 40950 Face 81897 30120 40951 15644 Face 81898 30120 44507 40951 Face 81899 193 40952 33371 Face 81900 193 24093 40952 Face 81901 13446 40953 14539 Face 81902 13446 18174 40953 Face 81903 3592 40954 26489 Face 81904 3592 3591 40954 Face 81905 3055 40955 28272 Face 81906 3055 18214 40955 Face 81907 2558 40956 39858 Face 81908 2558 9474 40956 Face 81909 12281 40957 27792 Face 81910 12281 4807 40957 Face 81911 20233 40958 5222 Face 81912 20233 31915 40958 Face 81913 33054 40959 33500 Face 81914 33054 24892 40959 Face 81915 20549 40960 3439 Face 81916 20549 40470 40960 Face 81917 6329 40961 35795 Face 81918 6329 27934 40961 Face 81919 7113 40962 11957 Face 81920 7113 7112 40962 Face 81921 7698 40963 45764 Face 81922 7698 26246 40963 Face 81923 4609 40965 24851 Face 81924 4609 3416 40964 Face 81925 40964 40965 4609 Face 81926 40964 40966 40965 Face 81927 13848 40966 40964 Face 81928 13848 40965 40966 Face 81929 18319 40967 25242 Face 81930 18319 35484 40967 Face 81931 23483 40968 26721 Face 81932 23483 9738 40968 Face 81933 23774 40969 9155 Face 81934 23774 40483 40969 Face 81935 12608 40970 39635 Face 81936 12608 43342 40970 Face 81937 40972 40971 7085 Face 81938 22394 20347 40971 Face 81939 22394 40972 17183 Face 81940 22394 40971 40972 Face 81941 3437 40973 26680 Face 81942 3437 43062 40973 Face 81943 5823 40974 34123 Face 81944 5823 25239 40974 Face 81945 19089 40975 19090 Face 81946 19089 291 40975 Face 81947 5369 40976 48440 Face 81948 5369 41042 40976 Face 81949 22705 40977 13761 Face 81950 22705 46211 40977 Face 81951 1295 40978 24509 Face 81952 1295 44218 40978 Face 81953 6273 40979 15051 Face 81954 6273 47734 40979 Face 81955 9656 40980 43456 Face 81956 9656 32494 40980 Face 81957 47797 40981 3908 Face 81958 10777 28390 40981 Face 81959 5291 40982 16720 Face 81960 5291 5660 40982 Face 81961 29033 40983 32362 Face 81962 29033 24852 40983 Face 81963 13298 40984 36054 Face 81964 13298 38466 40984 Face 81965 3225 40985 26596 Face 81966 3225 24879 40985 Face 81967 3291 40986 22165 Face 81968 3291 13464 40986 Face 81969 1586 40987 33755 Face 81970 1586 40531 40987 Face 81971 3462 40988 40084 Face 81972 41434 16608 40988 Face 81973 20029 40989 21026 Face 81974 20029 46457 40989 Face 81975 40991 40990 43175 Face 81976 15050 34343 40990 Face 81977 15050 40991 23658 Face 81978 15050 40990 40991 Face 81979 27677 40992 2096 Face 81980 27677 15501 40992 Face 81981 5193 40993 34531 Face 81982 5193 29572 40993 Face 81983 34512 40994 15165 Face 81984 34512 13306 40994 Face 81985 13406 40995 16413 Face 81986 13406 12789 40995 Face 81987 18854 40996 5319 Face 81988 18854 32170 40996 Face 81989 17244 40997 242 Face 81990 17244 19452 40997 Face 81991 5816 40998 31289 Face 81992 5816 38681 40998 Face 81993 23668 40999 16198 Face 81994 23668 3650 40999 Face 81995 4068 41000 37760 Face 81996 4068 22288 41000 Face 81997 9791 41001 43747 Face 81998 9791 33353 41001 Face 81999 13345 41002 8249 Face 82000 13345 38690 41002 Face 82001 29238 41003 37204 Face 82002 47718 27191 41003 Face 82003 7917 41004 18041 Face 82004 7917 19121 41004 Face 82005 33637 41005 10635 Face 82006 33637 37095 41005 Face 82007 2563 41006 21473 Face 82008 2563 38439 41006 Face 82009 7099 41007 16457 Face 82010 7099 45871 41007 Face 82011 33199 41008 44543 Face 82012 33199 3649 41008 Face 82013 12270 41009 25996 Face 82014 12270 35385 41009 Face 82015 4103 41010 13782 Face 82016 4103 15428 41010 Face 82017 16387 41011 20125 Face 82018 16387 8538 41011 Face 82019 2410 41012 23311 Face 82020 2410 27202 41012 Face 82021 41014 41013 22640 Face 82022 43546 35980 41013 Face 82023 41822 41014 38043 Face 82024 2022 41013 41014 Face 82025 25336 41015 17711 Face 82026 25336 26187 41015 Face 82027 20493 41016 20492 Face 82028 20493 28721 41016 Face 82029 1763 41017 40473 Face 82030 1763 19690 41017 Face 82031 5375 41018 28218 Face 82032 5375 25932 41018 Face 82033 18902 41019 48597 Face 82034 18902 14056 41019 Face 82035 6890 41020 32521 Face 82036 42199 18340 41020 Face 82037 9472 41021 11983 Face 82038 49331 6732 41021 Face 82039 12914 41022 1236 Face 82040 12914 15692 41022 Face 82041 16395 41023 9125 Face 82042 16395 35868 41023 Face 82043 8011 41024 19441 Face 82044 8011 31755 41024 Face 82045 29357 41025 35243 Face 82046 41026 9419 41025 Face 82047 29357 41026 41025 Face 82048 29357 15561 41026 Face 82049 41028 41027 4291 Face 82050 9474 45686 41027 Face 82051 9474 41028 40956 Face 82052 9474 41027 41028 Face 82053 7792 41029 29696 Face 82054 7792 31616 41029 Face 82055 580 41030 22998 Face 82056 580 35095 41030 Face 82057 46108 41031 16099 Face 82058 2373 47917 41031 Face 82059 10749 41032 31560 Face 82060 10749 30034 41032 Face 82061 4307 41033 34037 Face 82062 4307 24785 41033 Face 82063 14256 41034 36929 Face 82064 14256 31104 41034 Face 82065 4461 41035 20201 Face 82066 4461 32389 41035 Face 82067 14099 41036 30662 Face 82068 14099 7526 41036 Face 82069 2916 41037 32646 Face 82070 2916 27179 41037 Face 82071 23741 41038 11012 Face 82072 23741 26730 41038 Face 82073 9353 41039 48113 Face 82074 9353 13147 41040 Face 82075 41039 41040 13147 Face 82076 41039 9353 41040 Face 82077 22891 41041 43566 Face 82078 22891 8248 41041 Face 82079 13419 41042 42270 Face 82080 13419 22270 41042 Face 82081 24161 41043 5247 Face 82082 24161 35875 41043 Face 82083 14074 41044 32267 Face 82084 14074 21252 41044 Face 82085 6919 41045 35283 Face 82086 6919 22026 41045 Face 82087 9625 41046 18117 Face 82088 41323 37246 41046 Face 82089 49627 41047 23095 Face 82090 49627 19652 41047 Face 82091 3629 41048 14386 Face 82092 3629 45671 41048 Face 82093 7405 41049 39953 Face 82094 7405 34396 41049 Face 82095 32558 41050 5224 Face 82096 32558 13177 41050 Face 82097 28190 41051 4939 Face 82098 28190 43477 41051 Face 82099 28190 41052 10503 Face 82100 28190 4939 41052 Face 82101 7155 41053 3319 Face 82102 7155 7154 41053 Face 82103 10770 41054 43598 Face 82104 10770 31499 41054 Face 82105 41056 41055 6021 Face 82106 597 11264 41055 Face 82107 597 41056 43263 Face 82108 597 41055 41056 Face 82109 23130 41057 21950 Face 82110 23130 37981 41057 Face 82111 3593 41058 23321 Face 82112 3593 18078 41058 Face 82113 8696 41059 21473 Face 82114 49622 46131 41059 Face 82115 8696 41060 41059 Face 82116 8696 18574 41060 Face 82117 1200 41061 28924 Face 82118 1200 30610 41061 Face 82119 16667 41126 9021 Face 82120 16667 30997 41062 Face 82121 21682 41063 1948 Face 82122 21682 39169 41063 Face 82123 835 41064 21754 Face 82124 835 45682 41064 Face 82125 18115 41065 48567 Face 82126 18115 47138 41065 Face 82127 5714 41066 39846 Face 82128 5714 7306 41066 Face 82129 21914 41067 2540 Face 82130 21914 38191 41067 Face 82131 27933 41068 12040 Face 82132 27933 13729 41068 Face 82133 4236 41069 9212 Face 82134 42181 27786 41069 Face 82135 15513 41070 10287 Face 82136 15513 10288 41070 Face 82137 4428 41071 36028 Face 82138 4428 23586 41071 Face 82139 31370 41072 7860 Face 82140 31370 18513 41072 Face 82141 15569 41073 4642 Face 82142 41412 17261 41073 Face 82143 3361 41074 30226 Face 82144 3361 21988 41074 Face 82145 41109 41075 7183 Face 82146 14630 33979 41075 Face 82147 9442 41076 37010 Face 82148 9442 26060 41076 Face 82149 23731 41077 30807 Face 82150 23731 23733 41077 Face 82151 10615 41078 31193 Face 82152 41079 4737 41078 Face 82153 10615 41079 41078 Face 82154 10615 28704 41079 Face 82155 20486 41080 24152 Face 82156 20486 16782 41080 Face 82157 2688 41081 17188 Face 82158 2688 32334 41081 Face 82159 42982 41082 41875 Face 82160 549 14825 41082 Face 82161 23998 41083 33065 Face 82162 23998 17226 41083 Face 82163 27960 41084 38415 Face 82164 27960 14267 41084 Face 82165 5759 41085 8228 Face 82166 5759 33279 41085 Face 82167 4550 41086 12885 Face 82168 4550 24101 41086 Face 82169 13027 41087 46100 Face 82170 13027 31529 41087 Face 82171 1611 41088 38549 Face 82172 49010 34936 41088 Face 82173 4028 41089 23354 Face 82174 4028 27844 41089 Face 82175 13208 41090 7714 Face 82176 13208 45317 41090 Face 82177 30113 41091 147 Face 82178 30113 1309 41091 Face 82179 21546 41092 1016 Face 82180 21546 28725 41092 Face 82181 17009 41093 2709 Face 82182 17009 25700 41093 Face 82183 11634 41094 40196 Face 82184 11634 9262 41094 Face 82185 13231 41095 49169 Face 82186 13231 26942 41095 Face 82187 26173 41096 25852 Face 82188 26173 3418 41096 Face 82189 17243 41097 38612 Face 82190 17243 16920 41097 Face 82191 9454 41098 18372 Face 82192 9454 1924 41098 Face 82193 9144 41099 16809 Face 82194 9144 14521 41099 Face 82195 2246 41100 19070 Face 82196 2246 13768 41100 Face 82197 11607 41101 39502 Face 82198 11607 38395 41101 Face 82199 9147 41102 37222 Face 82200 9147 11950 41102 Face 82201 9713 41103 38328 Face 82202 9713 36039 41103 Face 82203 4055 41104 25305 Face 82204 4055 15447 41104 Face 82205 45638 41105 16633 Face 82206 644 32894 41105 Face 82207 644 41106 21082 Face 82208 644 34370 41106 Face 82209 41108 41107 28020 Face 82210 36744 26541 41107 Face 82211 36744 41108 543 Face 82212 36744 41107 41108 Face 82213 14630 41109 47412 Face 82214 14630 41075 41109 Face 82215 11241 41110 24446 Face 82216 11241 6170 41110 Face 82217 11241 41111 6170 Face 82218 11241 37962 41111 Face 82219 18559 41112 11163 Face 82220 18559 11164 41112 Face 82221 11259 41113 24238 Face 82222 11259 33193 41113 Face 82223 19716 41114 18882 Face 82224 19716 37623 41114 Face 82225 7444 41115 22448 Face 82226 43720 1070 41115 Face 82227 2388 41116 47381 Face 82228 41145 22141 41116 Face 82229 16767 41117 19200 Face 82230 16767 38060 41117 Face 82231 21036 41118 1520 Face 82232 21036 16034 41118 Face 82233 35097 41119 46346 Face 82234 35097 34414 41119 Face 82235 26778 41120 10012 Face 82236 26778 303 41120 Face 82237 7831 41121 25741 Face 82238 7831 20386 41121 Face 82239 3785 41122 17235 Face 82240 3785 24440 41122 Face 82241 7845 41123 3747 Face 82242 7845 36793 41123 Face 82243 377 41124 48506 Face 82244 377 30101 41124 Face 82245 7206 41125 48819 Face 82246 7206 30378 41125 Face 82247 41062 41126 16667 Face 82248 41062 16313 41126 Face 82249 753 41127 42380 Face 82250 753 26056 41127 Face 82251 169 41128 30728 Face 82252 41129 11416 41128 Face 82253 169 41129 41128 Face 82254 169 23129 41129 Face 82255 11384 41130 45965 Face 82256 11384 42623 41130 Face 82257 1897 41131 42029 Face 82258 1897 43028 41131 Face 82259 794 41132 4400 Face 82260 794 20026 41132 Face 82261 46759 41133 31038 Face 82262 2589 45864 41133 Face 82263 16347 41134 31756 Face 82264 16347 9692 41134 Face 82265 38526 41135 14855 Face 82266 38526 40755 41135 Face 82267 32656 41136 39587 Face 82268 32656 21684 41136 Face 82269 2816 41137 34899 Face 82270 2816 23652 41137 Face 82271 3374 41138 9759 Face 82272 3374 17787 41138 Face 82273 6984 41139 23514 Face 82274 6984 7677 41139 Face 82275 8068 41140 37302 Face 82276 8068 39104 41140 Face 82277 36194 41141 22914 Face 82278 36194 7654 41141 Face 82279 16322 41142 35801 Face 82280 16322 45516 41142 Face 82281 26885 41143 34929 Face 82282 26885 11273 41143 Face 82283 9651 41144 24021 Face 82284 9651 29233 41144 Face 82285 2388 41145 41116 Face 82286 2388 24907 41145 Face 82287 10529 41146 5424 Face 82288 10529 23352 41146 Face 82289 5617 41147 34030 Face 82290 5617 36432 41147 Face 82291 11578 41148 38888 Face 82292 46984 33331 41148 Face 82293 2429 41149 27036 Face 82294 2429 22817 41149 Face 82295 7992 41150 26119 Face 82296 7992 41151 41150 Face 82297 48005 41151 7992 Face 82298 30197 41150 41151 Face 82299 27957 41152 15228 Face 82300 27957 34278 41152 Face 82301 17891 41153 33489 Face 82302 17891 36610 41153 Face 82303 4671 41154 23254 Face 82304 4671 34642 41154 Face 82305 582 41155 40197 Face 82306 582 12337 41155 Face 82307 32023 41156 12262 Face 82308 32023 19805 41156 Face 82309 41821 41157 11902 Face 82310 4849 33208 41157 Face 82311 5559 41158 21427 Face 82312 44674 23394 41158 Face 82313 8718 41159 38526 Face 82314 8718 40848 41159 Face 82315 19949 41160 2537 Face 82316 19949 31227 41160 Face 82317 32911 41161 16686 Face 82318 32911 16687 41161 Face 82319 3501 41162 44876 Face 82320 47027 7823 41162 Face 82321 19719 41163 45813 Face 82322 19719 20170 41163 Face 82323 4951 41164 24071 Face 82324 41188 2862 41164 Face 82325 21428 41165 32020 Face 82326 21428 35480 41165 Face 82327 1014 41166 12753 Face 82328 1014 27607 41166 Face 82329 14046 41167 30538 Face 82330 14046 7019 41167 Face 82331 11628 41168 41169 Face 82332 11628 24121 41168 Face 82333 18010 41169 41168 Face 82334 18010 18316 41169 Face 82335 5620 41170 29803 Face 82336 5620 38720 41170 Face 82337 13980 41171 16775 Face 82338 13980 4152 41171 Face 82339 41173 41172 27888 Face 82340 2886 14549 41172 Face 82341 2886 41173 11479 Face 82342 2886 41172 41173 Face 82343 15133 41174 6367 Face 82344 15133 27314 41174 Face 82345 14559 41175 38525 Face 82346 14559 4235 41175 Face 82347 9776 41176 1838 Face 82348 9776 321 41176 Face 82349 8311 41177 29346 Face 82350 47870 47 41177 Face 82351 10078 41178 38368 Face 82352 10078 6514 41178 Face 82353 7486 41179 28328 Face 82354 7486 48144 41179 Face 82355 21145 41180 7502 Face 82356 21145 35984 41180 Face 82357 44178 41181 20126 Face 82358 3657 30826 41181 Face 82359 11809 41182 31662 Face 82360 11809 48662 41182 Face 82361 78 41183 4887 Face 82362 78 43970 41183 Face 82363 5864 41184 17352 Face 82364 5864 46159 41184 Face 82365 8846 41185 19028 Face 82366 8846 42858 41185 Face 82367 5697 41186 23246 Face 82368 5697 16107 41186 Face 82369 1280 41187 33516 Face 82370 1280 26569 41187 Face 82371 4951 41188 41164 Face 82372 4951 28550 41188 Face 82373 6669 46544 12115 Face 82374 6669 31218 41189 Face 82375 17269 41190 2967 Face 82376 17269 28733 41190 Face 82377 47990 41191 15744 Face 82378 10501 39727 41191 Face 82379 711 41192 36088 Face 82380 711 2833 41192 Face 82381 4396 41193 1302 Face 82382 4396 32212 41193 Face 82383 2028 41194 21779 Face 82384 2028 7613 41194 Face 82385 8284 41195 20297 Face 82386 8284 46314 41195 Face 82387 17207 41196 4492 Face 82388 17207 44261 41196 Face 82389 17199 41197 18548 Face 82390 49280 31497 41197 Face 82391 5722 41198 23604 Face 82392 5722 18276 41198 Face 82393 21308 41199 40337 Face 82394 21308 11659 41199 Face 82395 36310 41200 8665 Face 82396 36310 6151 41200 Face 82397 2487 41201 31453 Face 82398 2487 36575 41201 Face 82399 6146 41202 36597 Face 82400 6146 45839 41202 Face 82401 7946 41203 13097 Face 82402 7946 26215 41203 Face 82403 8162 41204 30278 Face 82404 8162 43710 41204 Face 82405 21608 41205 49359 Face 82406 21608 5590 41205 Face 82407 12276 41206 1842 Face 82408 12276 32277 41206 Face 82409 1700 41207 36637 Face 82410 1700 10710 41207 Face 82411 15437 41208 4681 Face 82412 15437 32635 41208 Face 82413 28383 41209 676 Face 82414 28383 36814 41209 Face 82415 28132 41210 7659 Face 82416 28132 37863 41210 Face 82417 3250 41211 24230 Face 82418 3250 49785 41211 Face 82419 21394 41212 28220 Face 82420 21394 11766 41212 Face 82421 2409 41213 23922 Face 82422 2409 8064 41213 Face 82423 7455 41214 36034 Face 82424 42242 16511 41214 Face 82425 27434 41215 44219 Face 82426 27434 1594 41215 Face 82427 9927 41216 17079 Face 82428 9927 48674 41216 Face 82429 17788 41217 44043 Face 82430 17788 39246 41217 Face 82431 16029 41218 22696 Face 82432 16029 46510 41218 Face 82433 18428 41219 2401 Face 82434 18428 32501 41219 Face 82435 17885 41220 35064 Face 82436 17885 11693 41220 Face 82437 4667 41221 38855 Face 82438 4667 23184 41221 Face 82439 573 41222 36632 Face 82440 573 28634 41222 Face 82441 3022 41223 40963 Face 82442 3022 21437 41223 Face 82443 12311 41224 18002 Face 82444 46539 1038 41224 Face 82445 35756 41225 42966 Face 82446 35756 25604 41225 Face 82447 14944 41226 41995 Face 82448 14944 23118 41226 Face 82449 42532 41227 8742 Face 82450 6667 9516 41227 Face 82451 979 41228 36116 Face 82452 979 13610 42849 Face 82453 13558 41229 9127 Face 82454 13558 4763 41229 Face 82455 18623 41230 38152 Face 82456 18623 4420 41230 Face 82457 20547 41231 39598 Face 82458 20547 43194 41231 Face 82459 21613 41232 23616 Face 82460 21613 21614 41232 Face 82461 4043 41233 17165 Face 82462 4043 7281 41233 Face 82463 23011 41234 14848 Face 82464 23011 18664 41234 Face 82465 13903 41235 26710 Face 82466 13903 7332 41235 Face 82467 11234 41236 5881 Face 82468 11234 15071 41236 Face 82469 45021 41237 48643 Face 82470 11644 33197 41237 Face 82471 8516 41238 34792 Face 82472 8516 20099 41238 Face 82473 33375 41239 6401 Face 82474 43914 36463 41239 Face 82475 41241 41240 1941 Face 82476 1940 6690 41240 Face 82477 1940 41241 18636 Face 82478 1940 41240 41241 Face 82479 24669 41242 19534 Face 82480 24669 24671 41242 Face 82481 12028 41243 32394 Face 82482 12028 31237 41243 Face 82483 41245 41244 3538 Face 82484 15544 27071 41244 Face 82485 15544 41245 26571 Face 82486 15544 41244 41245 Face 82487 16294 41246 27489 Face 82488 16294 16247 41246 Face 82489 22220 41247 437 Face 82490 22220 3299 41247 Face 82491 13757 41248 6064 Face 82492 13757 27889 41248 Face 82493 46967 41249 173 Face 82494 10106 28012 41249 Face 82495 1161 41250 26050 Face 82496 42244 17982 41250 Face 82497 7720 41251 36437 Face 82498 7720 4660 41251 Face 82499 979 41252 13611 Face 82500 979 12865 41252 Face 82501 6114 41253 37847 Face 82502 41254 28303 41253 Face 82503 6114 41254 41253 Face 82504 41255 663 41254 Face 82505 6114 41255 41254 Face 82506 6114 49986 41255 Face 82507 49139 41256 6607 Face 82508 12229 20023 41256 Face 82509 49626 41257 43369 Face 82510 12666 30674 41257 Face 82511 152 41258 21942 Face 82512 152 20454 41258 Face 82513 2873 41259 8938 Face 82514 2873 25510 41259 Face 82515 3423 41260 10144 Face 82516 3423 42877 41260 Face 82517 41262 41261 33887 Face 82518 41262 25418 41261 Face 82519 11025 41262 33887 Face 82520 11025 5453 41262 Face 82521 24349 41263 14679 Face 82522 24349 7355 41263 Face 82523 24297 41264 14297 Face 82524 24297 8251 41264 Face 82525 17061 41265 5577 Face 82526 17061 1922 41265 Face 82527 6391 41266 36349 Face 82528 6391 33440 41266 Face 82529 2076 41267 16658 Face 82530 2076 8218 41267 Face 82531 4767 41268 44387 Face 82532 41269 11275 41268 Face 82533 4767 41269 41268 Face 82534 4767 15539 41269 Face 82535 26788 41270 44221 Face 82536 26788 28886 41270 Face 82537 44461 41271 3102 Face 82538 4141 15531 41271 Face 82539 9254 41272 33206 Face 82540 9254 26744 41272 Face 82541 11209 41273 32895 Face 82542 11209 41105 41273 Face 82543 2991 41274 12882 Face 82544 2991 16598 41274 Face 82545 43010 41275 37663 Face 82546 43010 1056 41275 Face 82547 3446 41276 21638 Face 82548 3446 27715 41276 Face 82549 16381 41277 36699 Face 82550 16381 29091 41277 Face 82551 22078 41278 33547 Face 82552 22078 8077 41278 Face 82553 28908 41279 17932 Face 82554 28908 14513 41279 Face 82555 21819 41280 9828 Face 82556 21819 6343 41280 Face 82557 31313 41281 3627 Face 82558 31313 36254 41281 Face 82559 21877 41282 22636 Face 82560 21877 39742 41282 Face 82561 9917 41283 13469 Face 82562 9917 25541 41283 Face 82563 14160 41284 19582 Face 82564 14160 42147 41284 Face 82565 15246 41285 46223 Face 82566 15246 5323 41285 Face 82567 18947 41286 8623 Face 82568 18947 10296 41286 Face 82569 32700 41287 830 Face 82570 32700 21510 41287 Face 82571 12399 41288 14305 Face 82572 12399 27850 41288 Face 82573 2452 41289 43797 Face 82574 2452 18956 41289 Face 82575 4287 41290 19540 Face 82576 4287 14634 41290 Face 82577 12889 41291 16025 Face 82578 12889 24908 41291 Face 82579 2621 41292 28069 Face 82580 41293 13170 41292 Face 82581 2621 41293 41292 Face 82582 45846 20409 41293 Face 82583 1527 41294 12096 Face 82584 1527 28701 41294 Face 82585 16021 41295 36589 Face 82586 16021 36483 41295 Face 82587 3839 41296 44720 Face 82588 3839 29773 41296 Face 82589 43283 41297 16734 Face 82590 62 1641 41297 Face 82591 15450 41298 31999 Face 82592 15450 9898 41298 Face 82593 7920 41299 49151 Face 82594 7920 42963 41299 Face 82595 2437 41300 49689 Face 82596 2437 33898 41300 Face 82597 41302 41301 30042 Face 82598 633 24874 41301 Face 82599 633 41302 40079 Face 82600 633 41301 41302 Face 82601 9590 41303 16192 Face 82602 9590 34961 41303 Face 82603 3488 41304 38954 Face 82604 3488 46918 41304 Face 82605 9153 41305 4914 Face 82606 9153 37911 41305 Face 82607 2381 41306 41395 Face 82608 2381 13149 41306 Face 82609 2381 41307 7671 Face 82610 2381 31541 41307 Face 82611 2586 41308 40486 Face 82612 2586 25759 41308 Face 82613 22977 41309 22139 Face 82614 22977 47611 41309 Face 82615 9076 41310 5998 Face 82616 9076 32039 41310 Face 82617 19606 41311 6405 Face 82618 19606 21367 41311 Face 82619 8798 41312 29797 Face 82620 8798 48621 41312 Face 82621 31642 41313 39816 Face 82622 31642 49599 41313 Face 82623 12484 41314 35912 Face 82624 12484 34437 41314 Face 82625 26337 41315 44652 Face 82626 46316 9108 41315 Face 82627 40 41316 19136 Face 82628 40 27979 41316 Face 82629 14697 41317 4487 Face 82630 14697 29916 41317 Face 82631 23576 41318 45734 Face 82632 23576 2975 41318 Face 82633 4053 41319 27252 Face 82634 4053 13838 41319 Face 82635 11956 41320 20967 Face 82636 45476 886 41320 Face 82637 7866 41321 33977 Face 82638 7866 38329 41321 Face 82639 18380 41322 40539 Face 82640 18380 29096 41322 Face 82641 9625 41323 41046 Face 82642 9625 14232 41323 Face 82643 21192 41324 9387 Face 82644 21192 21191 41324 Face 82645 21918 41325 15813 Face 82646 21918 34658 41325 Face 82647 17335 41326 8427 Face 82648 17335 34307 41326 Face 82649 13445 41327 7385 Face 82650 13445 22303 41327 Face 82651 2320 41328 28922 Face 82652 2320 33722 41328 Face 82653 22838 41329 9645 Face 82654 22838 24815 41329 Face 82655 14973 41330 48381 Face 82656 14973 29141 41330 Face 82657 26452 41331 5616 Face 82658 46929 34802 41331 Face 82659 11319 41332 11320 Face 82660 11319 6125 41332 Face 82661 19468 41333 39576 Face 82662 19468 683 41333 Face 82663 3110 41334 9340 Face 82664 3110 22909 41334 Face 82665 22585 41335 3539 Face 82666 22585 12278 41335 Face 82667 19461 41336 16884 Face 82668 19461 7587 41336 Face 82669 21058 41337 7295 Face 82670 21058 6557 41337 Face 82671 3681 41338 11515 Face 82672 3681 25569 41338 Face 82673 9505 41339 2207 Face 82674 9505 17684 41339 Face 82675 14429 41340 17376 Face 82676 14429 27119 41340 Face 82677 6107 41341 45990 Face 82678 6107 28429 41341 Face 82679 29859 41342 47496 Face 82680 29859 19863 41342 Face 82681 12695 41343 3089 Face 82682 12695 10075 41343 Face 82683 5093 41344 27774 Face 82684 5093 35550 41344 Face 82685 443 41345 12442 Face 82686 443 36763 41345 Face 82687 29115 41346 17358 Face 82688 29115 47380 41346 Face 82689 6184 41347 19443 Face 82690 6184 33956 41347 Face 82691 322 41348 33392 Face 82692 322 40892 41348 Face 82693 3602 41349 23548 Face 82694 3602 9220 41349 Face 82695 41095 41350 17294 Face 82696 41095 5250 41350 Face 82697 20206 41351 11990 Face 82698 20206 38918 41351 Face 82699 26438 41352 19700 Face 82700 26438 2310 41352 Face 82701 33700 41353 30609 Face 82702 33700 25351 41353 Face 82703 16218 41354 23336 Face 82704 16218 16219 41354 Face 82705 12146 41355 8354 Face 82706 12146 3564 41355 Face 82707 15490 41356 30076 Face 82708 15490 38212 41356 Face 82709 18844 41357 12962 Face 82710 18844 24221 41357 Face 82711 8109 41358 31673 Face 82712 8109 5518 41358 Face 82713 36216 41359 1990 Face 82714 36216 15622 41359 Face 82715 9952 41360 49520 Face 82716 9952 23863 41360 Face 82717 8046 41361 9282 Face 82718 8046 35111 41361 Face 82719 24293 41362 15233 Face 82720 24293 19763 41362 Face 82721 21061 41363 20442 Face 82722 21061 39015 41363 Face 82723 2097 41364 18636 Face 82724 2097 8615 41364 Face 82725 2269 41365 25762 Face 82726 2269 39411 41365 Face 82727 5249 41366 17852 Face 82728 5249 20257 41366 Face 82729 25189 41367 24603 Face 82730 25189 7461 41367 Face 82731 41369 41368 38857 Face 82732 15532 2937 41368 Face 82733 15532 41369 25835 Face 82734 15532 41368 41369 Face 82735 37745 41370 11389 Face 82736 37745 18045 41370 Face 82737 10974 41371 15 Face 82738 10974 24974 41371 Face 82739 5550 41372 32619 Face 82740 5550 31933 41372 Face 82741 9174 41373 4633 Face 82742 9174 47216 41373 Face 82743 3830 41374 20000 Face 82744 3830 26899 41374 Face 82745 11977 41375 4369 Face 82746 11977 48214 41375 Face 82747 4332 41376 46784 Face 82748 4332 43534 41376 Face 82749 17522 41377 36401 Face 82750 17522 10922 41377 Face 82751 27397 41378 2372 Face 82752 27397 34446 41378 Face 82753 6576 41379 36727 Face 82754 6576 30484 41379 Face 82755 11 41380 35563 Face 82756 11 21004 41380 Face 82757 18870 41381 21513 Face 82758 18870 35321 41381 Face 82759 159 41382 17344 Face 82760 159 39489 41382 Face 82761 6121 41383 23778 Face 82762 6121 21751 41383 Face 82763 7976 41384 24648 Face 82764 7976 24647 41384 Face 82765 21210 41385 12434 Face 82766 21210 44004 41385 Face 82767 38869 41386 37053 Face 82768 38869 45446 41386 Face 82769 7214 41387 44018 Face 82770 7214 46752 41387 Face 82771 7653 41388 30043 Face 82772 7653 38477 41388 Face 82773 12432 41389 47133 Face 82774 12432 17995 41389 Face 82775 32152 41390 24512 Face 82776 32152 49852 41390 Face 82777 21907 41391 156 Face 82778 21907 1461 41391 Face 82779 2567 41392 4865 Face 82780 2567 8293 41392 Face 82781 9031 41393 34768 Face 82782 9031 28486 41393 Face 82783 27206 41394 27207 Face 82784 41395 41306 41394 Face 82785 27206 41395 41394 Face 82786 27206 2381 41395 Face 82787 34384 41396 33614 Face 82788 34384 22784 41396 Face 82789 22365 41397 13744 Face 82790 22365 27336 41397 Face 82791 31410 41398 8873 Face 82792 47712 30188 41398 Face 82793 823 41399 28166 Face 82794 823 47427 41399 Face 82795 2469 41400 16819 Face 82796 2469 39879 41400 Face 82797 27441 41401 2387 Face 82798 27441 4997 41401 Face 82799 6404 41402 7322 Face 82800 6404 2700 41402 Face 82801 24928 41403 22089 Face 82802 24928 5428 41403 Face 82803 10159 41404 46920 Face 82804 10159 16690 41404 Face 82805 575 41405 26216 Face 82806 575 35888 41405 Face 82807 28239 41406 29315 Face 82808 28239 21874 41406 Face 82809 16575 41407 27305 Face 82810 49222 28076 41407 Face 82811 49222 41408 7611 Face 82812 16575 11514 41408 Face 82813 2827 41409 17561 Face 82814 2827 38808 41409 Face 82815 9064 41410 25178 Face 82816 9064 40735 41410 Face 82817 31153 41411 10871 Face 82818 31153 5838 41411 Face 82819 15569 41412 41073 Face 82820 15569 1961 41412 Face 82821 12405 41413 27277 Face 82822 12405 6924 41413 Face 82823 23884 41414 1122 Face 82824 23884 23885 41414 Face 82825 7303 41415 24360 Face 82826 7303 2006 41415 Face 82827 7303 41416 2006 Face 82828 7303 38209 41416 Face 82829 38131 41417 39732 Face 82830 38131 3464 41417 Face 82831 3076 41418 9368 Face 82832 3076 33981 41418 Face 82833 19280 41419 37273 Face 82834 19280 38052 41419 Face 82835 41421 41420 35047 Face 82836 6720 22404 41420 Face 82837 6720 41421 21578 Face 82838 6720 41420 41421 Face 82839 33630 41422 46151 Face 82840 33630 43567 41422 Face 82841 19213 41423 954 Face 82842 42191 7750 41424 Face 82843 41423 41424 7750 Face 82844 41423 19213 41424 Face 82845 6179 41425 9781 Face 82846 49943 22997 41425 Face 82847 6728 41426 49061 Face 82848 6728 11093 41426 Face 82849 43291 41427 2088 Face 82850 43291 22540 41427 Face 82851 17949 41428 37804 Face 82852 41807 1429 41428 Face 82853 23608 41429 30917 Face 82854 23608 8414 41429 Face 82855 6642 41430 2480 Face 82856 6642 26459 41430 Face 82857 715 41431 46548 Face 82858 715 14642 41431 Face 82859 18864 41432 3754 Face 82860 18864 42145 41432 Face 82861 19814 41433 5254 Face 82862 19814 15579 41433 Face 82863 3462 41434 40988 Face 82864 3462 31634 41434 Face 82865 26392 41435 20205 Face 82866 26392 45184 41435 Face 82867 2054 41436 11901 Face 82868 2054 20073 41436 Face 82869 13716 41437 12409 Face 82870 13716 2876 41437 Face 82871 2762 41438 25599 Face 82872 49687 14340 41438 Face 82873 3032 41439 25754 Face 82874 3032 11311 41439 Face 82875 17329 41440 35138 Face 82876 17329 14844 41440 Face 82877 6466 41441 28358 Face 82878 6466 9682 41441 Face 82879 42359 41442 1431 Face 82880 43978 5979 41442 Face 82881 25698 41443 1428 Face 82882 25698 18287 41443 Face 82883 29592 41444 31081 Face 82884 41445 11926 41444 Face 82885 29592 41445 41444 Face 82886 29592 38100 41445 Face 82887 1708 41446 32293 Face 82888 41447 7448 41446 Face 82889 1708 41447 41446 Face 82890 1708 38335 41447 Face 82891 8587 41448 37342 Face 82892 8587 14250 41448 Face 82893 12128 41449 405 Face 82894 12128 11135 41449 Face 82895 46838 41450 755 Face 82896 9459 29363 41450 Face 82897 5773 41451 44252 Face 82898 5773 16270 41451 Face 82899 12340 41452 40299 Face 82900 12340 10298 41452 Face 82901 2765 41453 34445 Face 82902 2765 31902 41453 Face 82903 8802 41454 29663 Face 82904 8802 13112 41454 Face 82905 27632 41455 3511 Face 82906 27632 37435 41455 Face 82907 5060 41456 30155 Face 82908 5060 15470 41456 Face 82909 7083 41457 47405 Face 82910 7083 14265 41457 Face 82911 1376 41458 27890 Face 82912 1376 40869 41458 Face 82913 14400 41459 35694 Face 82914 14400 30716 41459 Face 82915 13590 41460 39895 Face 82916 13590 38320 41460 Face 82917 4850 41461 28822 Face 82918 4850 15092 41461 Face 82919 29347 41462 36385 Face 82920 29347 6726 41462 Face 82921 9253 41463 37094 Face 82922 9253 5232 41463 Face 82923 6430 41464 31935 Face 82924 6430 19891 41464 Face 82925 43014 41465 18016 Face 82926 8525 11127 41465 Face 82927 5689 41466 11061 Face 82928 5689 15861 41466 Face 82929 9535 41467 34647 Face 82930 9535 9511 41467 Face 82931 9535 41468 1801 Face 82932 9535 34647 41468 Face 82933 8941 41469 16332 Face 82934 8941 755 41469 Face 82935 2182 41470 46960 Face 82936 41471 3137 41470 Face 82937 2182 41471 41470 Face 82938 2182 37216 41471 Face 82939 13684 41472 46463 Face 82940 13684 17394 41472 Face 82941 10706 41473 22722 Face 82942 10706 3819 41473 Face 82943 5807 41474 48067 Face 82944 5807 24040 41474 Face 82945 33452 41475 13978 Face 82946 33452 17369 41475 Face 82947 14731 41476 34721 Face 82948 14731 20285 41476 Face 82949 2790 41477 18219 Face 82950 2790 43407 41477 Face 82951 6238 41478 19072 Face 82952 6238 33237 41478 Face 82953 23052 41479 33597 Face 82954 23052 4333 41479 Face 82955 16351 41480 28278 Face 82956 16351 43843 41480 Face 82957 13837 41481 27391 Face 82958 13837 21987 41481 Face 82959 8514 41482 39013 Face 82960 8514 43714 41482 Face 82961 24268 41483 484 Face 82962 24268 22370 41483 Face 82963 5704 41484 16881 Face 82964 48259 16655 41484 Face 82965 13104 41485 21231 Face 82966 13104 27655 41485 Face 82967 28920 41486 40625 Face 82968 28920 23204 41486 Face 82969 22277 41487 405 Face 82970 22277 5062 41487 Face 82971 4301 41488 34640 Face 82972 4301 13656 41488 Face 82973 26444 41489 5511 Face 82974 26444 7017 41489 Face 82975 2211 41490 29803 Face 82976 2211 13166 41490 Face 82977 41864 41491 7746 Face 82978 3476 19920 41491 Face 82979 26184 41492 32984 Face 82980 26184 7910 41492 Face 82981 41588 41493 48491 Face 82982 41588 17260 41493 Face 82983 8418 41494 44686 Face 82984 43254 13923 41494 Face 82985 22593 41495 9098 Face 82986 22593 35174 41495 Face 82987 13969 41496 29970 Face 82988 13969 10515 41496 Face 82989 6322 41497 37194 Face 82990 6322 27062 41497 Face 82991 11910 41498 26602 Face 82992 11910 20163 41498 Face 82993 7520 41499 10593 Face 82994 7520 29364 41499 Face 82995 6544 41500 1869 Face 82996 41501 47361 41500 Face 82997 6544 41501 41500 Face 82998 6544 44834 41501 Face 82999 8512 41502 38595 Face 83000 8512 44091 41502 Face 83001 34686 41503 9202 Face 83002 34686 36478 41503 Face 83003 2589 41504 17315 Face 83004 2589 41133 46759 Face 83005 7859 41505 40728 Face 83006 7859 24639 41505 Face 83007 5446 41506 22483 Face 83008 5446 32189 41506 Face 83009 1169 41507 32134 Face 83010 1169 30555 41507 Face 83011 646 41508 29387 Face 83012 646 46065 41508 Face 83013 23746 41509 38936 Face 83014 23746 15212 41509 Face 83015 23902 41510 29709 Face 83016 23902 43855 41510 Face 83017 2683 41511 12544 Face 83018 2683 32155 41511 Face 83019 41513 41512 12515 Face 83020 853 34837 41512 Face 83021 853 41513 34458 Face 83022 853 41512 41513 Face 83023 24766 41514 35283 Face 83024 24766 12786 41514 Face 83025 4120 41515 31929 Face 83026 4120 25987 41515 Face 83027 16595 41516 3340 Face 83028 16595 34568 41516 Face 83029 7062 41517 25924 Face 83030 7062 581 41517 Face 83031 20033 41518 25341 Face 83032 20033 21623 41518 Face 83033 11472 41519 3232 Face 83034 11472 36352 41519 Face 83035 15042 41520 10491 Face 83036 15042 35188 41520 Face 83037 27181 41521 16281 Face 83038 27181 9993 41521 Face 83039 30909 41522 24294 Face 83040 30909 17141 41522 Face 83041 21556 41523 46870 Face 83042 21556 33754 41523 Face 83043 10152 41524 18055 Face 83044 48881 15046 41524 Face 83045 10066 41525 28353 Face 83046 10066 33243 41525 Face 83047 18834 41526 21027 Face 83048 18834 16172 41526 Face 83049 14522 41527 29898 Face 83050 14522 12786 41527 Face 83051 16764 41528 36295 Face 83052 16764 8405 41528 Face 83053 18153 41529 47450 Face 83054 18153 11708 41529 Face 83055 767 41530 37191 Face 83056 767 27818 41530 Face 83057 31342 41531 45442 Face 83058 31342 35079 41531 Face 83059 4546 41532 19491 Face 83060 4546 26686 41532 Face 83061 22035 41533 6734 Face 83062 22035 1079 41533 Face 83063 31185 41534 12080 Face 83064 31185 49305 41534 Face 83065 6430 41535 30195 Face 83066 6430 19727 41535 Face 83067 23180 41536 6296 Face 83068 23180 40263 41536 Face 83069 27475 41537 46502 Face 83070 27475 2094 41537 Face 83071 17181 41538 10816 Face 83072 17181 23320 41538 Face 83073 17181 41539 23320 Face 83074 17181 829 41539 Face 83075 8078 41540 34812 Face 83076 8078 28034 41540 Face 83077 2322 41541 45447 Face 83078 2322 25777 41541 Face 83079 5854 41542 25965 Face 83080 5854 18924 41542 Face 83081 6786 41543 20488 Face 83082 6786 34713 41543 Face 83083 41545 41544 12620 Face 83084 4954 38353 41544 Face 83085 4954 41545 32983 Face 83086 4954 41544 41545 Face 83087 14872 41546 14976 Face 83088 14872 6828 41546 Face 83089 49771 41547 1516 Face 83090 2713 27797 41547 Face 83091 1533 41548 11466 Face 83092 1533 28428 41548 Face 83093 19733 41549 11851 Face 83094 19733 21841 41549 Face 83095 5951 41550 12521 Face 83096 41551 7464 41550 Face 83097 5951 41551 41550 Face 83098 5951 34039 41551 Face 83099 1005 41552 28801 Face 83100 1005 17050 41552 Face 83101 14058 41553 34057 Face 83102 14058 18563 41553 Face 83103 15362 41554 12884 Face 83104 15362 6129 41554 Face 83105 17770 41555 40914 Face 83106 17770 26082 41555 Face 83107 3349 41556 16591 Face 83108 3349 20284 41556 Face 83109 23091 41557 25898 Face 83110 23091 2128 41557 Face 83111 12855 41558 30596 Face 83112 12855 24529 41558 Face 83113 22336 41559 32901 Face 83114 22336 22337 41559 Face 83115 8001 41560 12769 Face 83116 8001 32954 41560 Face 83117 24264 41561 21744 Face 83118 24264 4727 41561 Face 83119 47369 41562 27015 Face 83120 7533 7534 41562 Face 83121 3285 41563 4415 Face 83122 3285 47866 41563 Face 83123 1235 41564 39097 Face 83124 1235 34210 41564 Face 83125 672 41565 40172 Face 83126 672 21778 41565 Face 83127 22389 41566 41193 Face 83128 22389 5288 41566 Face 83129 29907 41567 21512 Face 83130 29907 18206 41567 Face 83131 26511 41568 15140 Face 83132 26511 32980 41568 Face 83133 15474 41569 7518 Face 83134 15474 25728 41569 Face 83135 15474 41570 25728 Face 83136 15474 9078 41570 Face 83137 32667 41571 12767 Face 83138 41572 16423 41571 Face 83139 32667 41572 41571 Face 83140 32667 7664 41572 Face 83141 12192 41573 22605 Face 83142 12192 29312 41573 Face 83143 10369 41574 1128 Face 83144 10369 36841 41574 Face 83145 12552 41575 43278 Face 83146 12552 3913 41575 Face 83147 7271 41576 23568 Face 83148 7271 15265 41576 Face 83149 2217 41577 27597 Face 83150 2217 12046 41577 Face 83151 16239 41578 4057 Face 83152 16239 7171 41578 Face 83153 13081 41579 21429 Face 83154 13081 44518 41579 Face 83155 22646 41580 6843 Face 83156 22646 10215 41580 Face 83157 42688 41581 1216 Face 83158 12826 33231 41581 Face 83159 41581 41582 43517 Face 83160 41581 33231 41582 Face 83161 20615 41583 18227 Face 83162 20615 1491 41583 Face 83163 25734 41584 3127 Face 83164 25734 22243 41584 Face 83165 16817 41585 4858 Face 83166 16817 16556 41585 Face 83167 25330 41586 20696 Face 83168 25330 29976 41586 Face 83169 8120 41587 14262 Face 83170 8120 30686 41587 Face 83171 3551 41588 9955 Face 83172 3551 17260 41588 Face 83173 13504 41589 14203 Face 83174 13504 3969 48831 Face 83175 24786 41590 46541 Face 83176 24786 26857 41590 Face 83177 13412 41591 34628 Face 83178 13412 17731 41591 Face 83179 3973 41592 48692 Face 83180 3973 15817 41592 Face 83181 10555 41593 15363 Face 83182 41681 20683 41593 Face 83183 25896 41594 8517 Face 83184 25896 33737 41594 Face 83185 15472 41595 34395 Face 83186 49378 32401 41595 Face 83187 12617 41596 37602 Face 83188 12617 39587 41596 Face 83189 1435 41597 24765 Face 83190 1435 20917 41597 Face 83191 4269 41598 11261 Face 83192 4269 16292 41598 Face 83193 21257 41599 13545 Face 83194 21257 38937 41599 Face 83195 10879 41600 37484 Face 83196 10879 1205 41600 Face 83197 43250 41601 33361 Face 83198 43378 9372 41601 Face 83199 10621 41602 11278 Face 83200 10621 43861 41602 Face 83201 18786 41603 16141 Face 83202 18786 25304 41603 Face 83203 33231 41604 26495 Face 83204 33231 8901 41604 Face 83205 18748 41605 22353 Face 83206 18748 10344 41605 Face 83207 22937 42036 29439 Face 83208 22937 40309 41606 Face 83209 11037 41607 21084 Face 83210 11037 38867 41607 Face 83211 41609 41608 28385 Face 83212 6863 42187 41608 Face 83213 41610 41609 16244 Face 83214 6863 41608 41609 Face 83215 6863 41610 24279 Face 83216 6863 41609 41610 Face 83217 13758 41611 17887 Face 83218 13758 37173 41611 Face 83219 18448 41612 268 Face 83220 18448 23985 41612 Face 83221 33355 41613 8948 Face 83222 33355 18554 41613 Face 83223 12114 41614 6261 Face 83224 12114 35791 41614 Face 83225 37442 41615 23851 Face 83226 37442 3279 41615 Face 83227 15689 41616 12822 Face 83228 15689 23917 41616 Face 83229 2566 41617 49559 Face 83230 46972 31128 41617 Face 83231 12570 41618 6298 Face 83232 12570 1652 41618 Face 83233 30124 41619 4459 Face 83234 30124 42546 41619 Face 83235 13703 41621 33743 Face 83236 13703 23684 41620 Face 83237 41620 41621 13703 Face 83238 41620 19279 41621 Face 83239 19257 41622 9237 Face 83240 19257 36276 41622 Face 83241 41624 41623 6030 Face 83242 42017 25451 41623 Face 83243 47208 41624 18788 Face 83244 1889 41623 41624 Face 83245 24261 41625 41600 Face 83246 24261 7730 41625 Face 83247 6710 41626 47930 Face 83248 6710 48122 41626 Face 83249 26180 41627 46303 Face 83250 26180 17986 41627 Face 83251 47636 41628 20537 Face 83252 47636 22068 41628 Face 83253 9773 41629 48931 Face 83254 9773 27320 41629 Face 83255 9584 41630 16482 Face 83256 9584 15887 41630 Face 83257 9584 41631 45005 Face 83258 9584 16482 41631 Face 83259 2262 41632 8284 Face 83260 2262 27086 41632 Face 83261 3351 41633 34103 Face 83262 3351 13803 41633 Face 83263 7808 41634 19489 Face 83264 7808 27523 41634 Face 83265 41634 41635 24029 Face 83266 41634 9729 41635 Face 83267 10160 41636 4054 Face 83268 10160 26980 41636 Face 83269 9720 41637 37513 Face 83270 9720 41523 41637 Face 83271 14604 41638 35901 Face 83272 14604 37941 41638 Face 83273 13479 41639 30083 Face 83274 13479 24584 41639 Face 83275 4838 41640 21933 Face 83276 4838 44488 41709 Face 83277 12900 41641 12982 Face 83278 12900 734 41641 Face 83279 3484 41642 39329 Face 83280 3484 46165 41642 Face 83281 13502 41643 5340 Face 83282 13502 13501 41643 Face 83283 21496 41644 7896 Face 83284 21496 16683 41644 Face 83285 18457 41645 14309 Face 83286 18457 48273 41645 Face 83287 24801 41646 32277 Face 83288 24801 14186 41646 Face 83289 2637 41647 39730 Face 83290 2637 7182 41647 Face 83291 45672 41648 39338 Face 83292 8219 20729 41648 Face 83293 7328 41649 25863 Face 83294 7328 30905 41649 Face 83295 24615 49047 36671 Face 83296 24615 36554 41650 Face 83297 41652 41651 31973 Face 83298 3537 29263 41651 Face 83299 3537 41652 15871 Face 83300 3537 41651 41652 Face 83301 41654 41653 21857 Face 83302 41654 32492 41653 Face 83303 860 41654 31511 Face 83304 860 14321 41654 Face 83305 15124 41655 46797 Face 83306 15124 16530 41655 Face 83307 9475 41656 20647 Face 83308 9475 643 41656 Face 83309 46391 41657 7763 Face 83310 19523 32839 41657 Face 83311 22447 41658 37014 Face 83312 22447 26040 41658 Face 83313 44081 41659 1381 Face 83314 45423 23275 41659 Face 83315 7168 41660 7166 Face 83316 7168 10510 41660 Face 83317 8270 41661 15718 Face 83318 41662 3008 41661 Face 83319 8270 41662 41661 Face 83320 49328 11683 41662 Face 83321 8270 41663 41662 Face 83322 8270 46580 41663 Face 83323 49685 41664 26973 Face 83324 11482 10605 41664 Face 83325 46906 41665 14921 Face 83326 46906 28814 41665 Face 83327 28933 41666 38679 Face 83328 28933 774 41666 Face 83329 13938 41667 13131 Face 83330 13938 12437 41667 Face 83331 43546 41668 35980 Face 83332 41822 20699 41668 Face 83333 14292 41669 13099 Face 83334 14292 42740 41669 Face 83335 4791 41670 16874 Face 83336 4791 35910 41670 Face 83337 41672 41671 24613 Face 83338 11035 9639 41671 Face 83339 47969 41672 18662 Face 83340 11035 41671 41672 Face 83341 11267 41673 1836 Face 83342 11267 40865 41673 Face 83343 7558 41674 15660 Face 83344 7558 25039 41674 Face 83345 26554 41675 635 Face 83346 26554 39087 41675 Face 83347 14896 41676 12617 Face 83348 14896 3353 41676 Face 83349 30974 41677 34406 Face 83350 30974 7217 41677 Face 83351 12271 41678 40175 Face 83352 12271 28431 41678 Face 83353 15012 41679 2061 Face 83354 15012 10517 41679 Face 83355 15847 41680 39253 Face 83356 15847 1626 41680 Face 83357 10555 41681 41593 Face 83358 10555 43691 41681 Face 83359 13658 41682 33515 Face 83360 13658 22903 41682 Face 83361 22333 41683 8912 Face 83362 22333 1138 41683 Face 83363 1798 41684 41779 Face 83364 41685 11519 41684 Face 83365 41686 41685 41684 Face 83366 41686 6017 41685 Face 83367 1798 41686 41684 Face 83368 1798 20261 41686 Face 83369 22352 41687 4973 Face 83370 22352 32265 41687 Face 83371 11768 41688 16725 Face 83372 11768 29377 41688 Face 83373 14824 41689 4513 Face 83374 14824 37795 41689 Face 83375 5836 41690 23577 Face 83376 5836 9921 41690 Face 83377 10523 41691 24823 Face 83378 10523 13410 41691 Face 83379 14556 41692 25304 Face 83380 14556 38957 41692 Face 83381 4794 41693 27637 Face 83382 4794 35515 41693 Face 83383 19834 41694 16938 Face 83384 19834 10639 41694 Face 83385 8993 41695 28113 Face 83386 8993 34578 41695 Face 83387 10583 41696 27364 Face 83388 10583 11046 41696 Face 83389 3214 41697 22021 Face 83390 3214 37910 41697 Face 83391 3720 41698 17425 Face 83392 3720 10335 41698 Face 83393 20509 41699 12509 Face 83394 20509 24091 41699 Face 83395 15530 41700 21984 Face 83396 15530 8151 41700 Face 83397 16103 41701 39497 Face 83398 16103 6235 41701 Face 83399 34998 41702 24804 Face 83400 34998 13211 41702 Face 83401 21469 41703 3046 Face 83402 21469 37445 41703 Face 83403 13585 41704 34955 Face 83404 41705 33774 41704 Face 83405 13585 41705 41704 Face 83406 13585 34482 41705 Face 83407 7287 41706 28106 Face 83408 7287 42721 41706 Face 83409 49778 41707 8466 Face 83410 3613 19960 41707 Face 83411 30158 41708 1272 Face 83412 30158 16307 41708 Face 83413 41640 41709 24658 Face 83414 41640 4838 41709 Face 83415 11801 41710 28015 Face 83416 11801 39092 41710 Face 83417 14126 41711 38819 Face 83418 14126 18924 41711 Face 83419 26457 41712 13750 Face 83420 26457 9541 41712 Face 83421 15819 41713 34131 Face 83422 15819 6977 41713 Face 83423 16870 41714 5589 Face 83424 43181 32049 41714 Face 83425 13814 41715 39002 Face 83426 13814 1327 41715 Face 83427 6069 41716 35139 Face 83428 6069 25123 41716 Face 83429 9937 41717 32181 Face 83430 9937 38840 41717 Face 83431 24073 41718 3348 Face 83432 24073 17689 41718 Face 83433 27584 41719 10580 Face 83434 27584 19859 41719 Face 83435 19535 41720 6793 Face 83436 19535 39662 41720 Face 83437 25491 41721 5813 Face 83438 25491 12779 41721 Face 83439 4749 41722 12667 Face 83440 4749 22048 41722 Face 83441 12350 41723 29725 Face 83442 12350 14389 41723 Face 83443 570 41724 27105 Face 83444 570 39811 41724 Face 83445 3039 41725 21904 Face 83446 3039 32265 41725 Face 83447 21276 41726 14050 Face 83448 21276 5955 41726 Face 83449 34463 41727 31523 Face 83450 34463 32123 41727 Face 83451 1631 41728 25687 Face 83452 1631 33155 41728 Face 83453 41730 41729 19795 Face 83454 3656 4890 41729 Face 83455 3656 41730 37628 Face 83456 3656 41729 41730 Face 83457 2569 41731 34815 Face 83458 2569 30653 41731 Face 83459 11226 41732 18443 Face 83460 11226 27387 41732 Face 83461 8264 41733 19457 Face 83462 8264 18588 41733 Face 83463 5711 41734 20617 Face 83464 5711 20855 41734 Face 83465 44943 41735 31840 Face 83466 44943 29415 41735 Face 83467 9283 41736 32317 Face 83468 9283 22320 41736 Face 83469 11268 41737 20185 Face 83470 11268 31388 41737 Face 83471 5781 41738 23123 Face 83472 41739 17176 41738 Face 83473 5781 41739 41738 Face 83474 5781 17176 41739 Face 83475 4512 41740 21350 Face 83476 4512 20945 41740 Face 83477 8027 41741 613 Face 83478 8027 37655 41741 Face 83479 5661 41742 13521 Face 83480 5661 12458 41742 Face 83481 27355 41743 1741 Face 83482 27355 14689 41743 Face 83483 10757 41744 28236 Face 83484 10757 33556 41744 Face 83485 48873 41745 1888 Face 83486 21402 11841 41745 Face 83487 2425 41746 16207 Face 83488 2425 36185 41746 Face 83489 31027 41747 2181 Face 83490 31027 13764 41747 Face 83491 10324 41748 1931 Face 83492 41749 16427 41748 Face 83493 10324 41749 41748 Face 83494 10324 31065 41749 Face 83495 17876 41750 23175 Face 83496 17876 5391 41750 Face 83497 13391 41751 29122 Face 83498 13391 4703 41751 Face 83499 11973 41752 20295 Face 83500 11973 20172 41752 Face 83501 45198 41753 11094 Face 83502 3550 18199 41753 Face 83503 2332 41754 43628 Face 83504 2332 14294 41754 Face 83505 17302 41755 4897 Face 83506 17302 15434 41755 Face 83507 10405 41756 26214 Face 83508 10405 15687 41756 Face 83509 7606 41757 39646 Face 83510 7606 20750 41757 Face 83511 20889 41758 34633 Face 83512 20889 5274 41758 Face 83513 34312 41759 9364 Face 83514 34312 29924 41759 Face 83515 12662 41760 23067 Face 83516 12662 31841 41760 Face 83517 16039 41761 24802 Face 83518 16039 24150 41761 Face 83519 8467 41762 20475 Face 83520 8467 28739 41762 Face 83521 7801 41763 6066 Face 83522 41764 16552 41763 Face 83523 7801 41764 41763 Face 83524 41765 3778 41764 Face 83525 7801 41765 41764 Face 83526 7801 19243 41765 Face 83527 24126 41766 18758 Face 83528 44231 38756 41766 Face 83529 735 41767 41482 Face 83530 735 32434 41767 Face 83531 1593 41768 46541 Face 83532 1593 37011 41768 Face 83533 9394 41769 838 Face 83534 9394 33927 41769 Face 83535 41769 41770 838 Face 83536 41769 21615 41770 Face 83537 16159 41771 38619 Face 83538 16159 5353 41771 Face 83539 16362 41772 37549 Face 83540 16362 5081 41772 Face 83541 4105 41773 22037 Face 83542 4105 42682 41773 Face 83543 4105 41774 23409 Face 83544 4105 22037 41774 Face 83545 7644 41775 19068 Face 83546 7644 37565 41775 Face 83547 7050 41776 31117 Face 83548 7050 32800 41776 Face 83549 8674 41777 34090 Face 83550 8674 23897 41777 Face 83551 2977 41778 22112 Face 83552 2977 13756 41778 Face 83553 42973 41779 41684 Face 83554 9291 26613 41779 Face 83555 27316 41780 36711 Face 83556 27316 2758 41780 Face 83557 4348 41781 22393 Face 83558 4348 45809 41781 Face 83559 31398 41782 4450 Face 83560 31398 47268 41782 Face 83561 8957 41783 3963 Face 83562 8957 29816 41783 Face 83563 7621 41784 26742 Face 83564 7621 28558 41784 Face 83565 5212 41785 23128 Face 83566 46708 9421 41785 Face 83567 26335 41786 10544 Face 83568 26335 434 41786 Face 83569 46274 41787 4399 Face 83570 6722 33625 41787 Face 83571 19243 41788 15003 Face 83572 19243 13205 41788 Face 83573 3571 41789 30603 Face 83574 3571 14155 41789 Face 83575 6396 41790 33354 Face 83576 6396 16888 41790 Face 83577 987 41791 17800 Face 83578 987 26148 41791 Face 83579 3569 41792 34632 Face 83580 3569 35099 41792 Face 83581 21351 41793 4956 Face 83582 41794 14289 41793 Face 83583 21351 41794 41793 Face 83584 21351 33904 41794 Face 83585 2545 41795 17769 Face 83586 2545 47411 41795 Face 83587 28349 41796 29319 Face 83588 28349 13550 41796 Face 83589 23159 41797 17190 Face 83590 23159 1669 41797 Face 83591 11986 41798 23050 Face 83592 11986 18779 41798 Face 83593 17863 41799 25661 Face 83594 48211 27403 41799 Face 83595 49327 41800 28913 Face 83596 21507 32305 41800 Face 83597 9404 41801 23450 Face 83598 9404 26356 41801 Face 83599 6171 41802 28434 Face 83600 6171 34843 41802 Face 83601 27841 41803 10507 Face 83602 27841 34400 41803 Face 83603 25426 41804 13268 Face 83604 25426 46857 41804 Face 83605 12609 41805 19521 Face 83606 12609 15604 41805 Face 83607 4113 41806 22314 Face 83608 4113 43786 41806 Face 83609 17949 41807 41428 Face 83610 17949 21195 41807 Face 83611 47674 41808 43240 Face 83612 47674 4029 41808 Face 83613 13269 41809 7357 Face 83614 13269 29881 41809 Face 83615 8174 41810 41161 Face 83616 8174 19067 41810 Face 83617 9470 41811 24822 Face 83618 45483 18784 41811 Face 83619 23333 41812 10858 Face 83620 23333 5317 41812 Face 83621 14173 41813 31012 Face 83622 14173 6953 41813 Face 83623 2875 41814 27483 Face 83624 2875 19434 41814 Face 83625 23370 41815 8594 Face 83626 23370 1993 41815 Face 83627 3752 41816 29319 Face 83628 3752 29328 41816 Face 83629 8501 41817 43157 Face 83630 8501 31637 41817 Face 83631 18170 41818 28116 Face 83632 18170 33486 41818 Face 83633 36826 41819 49744 Face 83634 36826 11725 41819 Face 83635 12343 41820 5305 Face 83636 12343 23465 41820 Face 83637 4849 41821 27862 Face 83638 4849 41157 41821 Face 83639 43546 41822 41668 Face 83640 2022 41014 41822 Face 83641 7217 41823 45754 Face 83642 7217 3206 41823 Face 83643 2077 41824 37823 Face 83644 2077 28598 41824 Face 83645 2946 41825 33831 Face 83646 2946 35449 41825 Face 83647 2647 41826 12685 Face 83648 2647 39174 41826 Face 83649 45377 41827 32057 Face 83650 16616 25286 41827 Face 83651 753 41828 4590 Face 83652 753 24421 41828 Face 83653 8216 41829 15443 Face 83654 8216 20534 41829 Face 83655 6767 41830 23247 Face 83656 6767 31411 41830 Face 83657 7854 41831 32231 Face 83658 7854 12049 41831 Face 83659 9565 41832 36296 Face 83660 9565 18365 41832 Face 83661 5806 41833 17 Face 83662 5806 17921 41833 Face 83663 7470 41834 16006 Face 83664 7470 25954 41834 Face 83665 46570 41835 13804 Face 83666 684 33496 41835 Face 83667 8795 41836 14365 Face 83668 8795 18678 41836 Face 83669 1011 41837 39836 Face 83670 1011 21300 41837 Face 83671 202 41838 28805 Face 83672 202 8006 41838 Face 83673 5912 41839 26178 Face 83674 5912 19791 41839 Face 83675 13212 41840 32875 Face 83676 42551 19727 41840 Face 83677 28618 41841 38651 Face 83678 28618 28619 41841 Face 83679 13472 41842 20302 Face 83680 13472 30543 41842 Face 83681 20740 41843 3953 Face 83682 20740 18753 41843 Face 83683 1649 41844 25466 Face 83684 1649 39802 41844 Face 83685 35801 41845 16322 Face 83686 35801 33549 41845 Face 83687 12262 41846 42113 Face 83688 12262 12076 41846 Face 83689 48011 41847 33880 Face 83690 8756 11961 41847 Face 83691 7991 41848 1818 Face 83692 7991 39311 41848 Face 83693 11410 41849 26044 Face 83694 11410 36558 41849 Face 83695 41851 41850 9102 Face 83696 19433 3547 41850 Face 83697 19433 41851 27738 Face 83698 19433 41850 41851 Face 83699 526 41852 34085 Face 83700 526 21288 41852 Face 83701 2078 41853 10463 Face 83702 41854 26860 41853 Face 83703 2078 41855 41853 Face 83704 46588 4924 41854 Face 83705 41854 41855 2078 Face 83706 41854 41853 41855 Face 83707 13511 41856 23179 Face 83708 13511 37394 41856 Face 83709 6573 41857 5229 Face 83710 6573 22508 41857 Face 83711 47405 41858 19660 Face 83712 18555 2839 41858 Face 83713 21377 41859 38806 Face 83714 21377 29342 41859 Face 83715 5424 41860 37486 Face 83716 5424 41146 41860 Face 83717 12098 41861 17025 Face 83718 12098 22153 41861 Face 83719 17191 41862 4864 Face 83720 17191 28897 41862 Face 83721 24565 41863 3717 Face 83722 24565 5982 41863 Face 83723 3476 41864 16361 Face 83724 3476 41491 41864 Face 83725 5523 41865 16636 Face 83726 5523 23934 41865 Face 83727 27090 41866 892 Face 83728 27090 4291 41866 Face 83729 3496 41867 32250 Face 83730 3496 35857 41867 Face 83731 9316 41868 37207 Face 83732 9316 18244 41868 Face 83733 22299 41869 11672 Face 83734 22299 40696 41869 Face 83735 18534 41870 42195 Face 83736 18534 440 41870 Face 83737 9729 41871 31847 Face 83738 9729 25074 41871 Face 83739 21488 41872 45673 Face 83740 21488 7545 41872 Face 83741 15644 41873 30120 Face 83742 15644 38273 41873 Face 83743 19285 41874 24013 Face 83744 19285 3388 41874 Face 83745 9178 41875 41082 Face 83746 9178 16715 41875 Face 83747 9252 41876 23829 Face 83748 9252 30793 41876 Face 83749 10833 41877 37518 Face 83750 10833 19336 41877 Face 83751 11216 41878 28537 Face 83752 11216 24891 41878 Face 83753 18246 41879 38311 Face 83754 18246 47633 41879 Face 83755 5908 41880 37529 Face 83756 5908 33274 41880 Face 83757 8418 41881 16677 Face 83758 8418 44686 41881 Face 83759 14807 41882 260 Face 83760 14807 22092 41882 Face 83761 4063 41883 10630 Face 83762 4063 32145 41883 Face 83763 17966 41884 28328 Face 83764 17966 4380 41884 Face 83765 13992 41885 25008 Face 83766 13992 47203 41885 Face 83767 4561 41886 37405 Face 83768 4561 48689 41886 Face 83769 5330 41887 12362 Face 83770 5330 15746 41887 Face 83771 24449 41888 18088 Face 83772 24449 35540 41888 Face 83773 9652 41889 1706 Face 83774 9652 13615 41889 Face 83775 2309 41890 19859 Face 83776 2309 22472 41890 Face 83777 46287 41891 2559 Face 83778 8887 3503 41891 Face 83779 8874 41892 47830 Face 83780 41893 4695 41892 Face 83781 8874 41893 41892 Face 83782 8874 4242 41893 Face 83783 25795 41894 4470 Face 83784 25795 25794 41894 Face 83785 12456 41895 15018 Face 83786 12456 6415 48686 Face 83787 17287 41896 4883 Face 83788 17287 46462 41896 Face 83789 16907 41897 8943 Face 83790 16907 30688 41897 Face 83791 6680 41898 6377 Face 83792 41899 19028 41898 Face 83793 6680 41899 41898 Face 83794 6680 42961 41899 Face 83795 45398 41900 13147 Face 83796 45398 47 41900 Face 83797 16097 41901 39899 Face 83798 16097 6172 41901 Face 83799 33016 41902 47114 Face 83800 33016 7140 41902 Face 83801 47087 41903 2953 Face 83802 41904 20366 41903 Face 83803 14784 41904 41903 Face 83804 14784 29057 41904 Face 83805 23075 41905 12513 Face 83806 23075 35073 41905 Face 83807 19087 41906 92 Face 83808 19087 38430 41906 Face 83809 21126 41907 5569 Face 83810 21126 736 41907 Face 83811 16858 41908 33253 Face 83812 16858 39653 41908 Face 83813 11062 41909 25687 Face 83814 11062 29401 41909 Face 83815 18967 41910 32032 Face 83816 18967 30743 41910 Face 83817 37483 41911 37482 Face 83818 37483 20157 41911 Face 83819 5696 41912 8978 Face 83820 5696 20892 41912 Face 83821 21567 41913 33688 Face 83822 21567 26094 41913 Face 83823 16848 41914 467 Face 83824 16848 31063 41914 Face 83825 20795 41915 46927 Face 83826 20795 26422 41915 Face 83827 49641 41916 15946 Face 83828 41917 6816 41916 Face 83829 2691 41917 41916 Face 83830 42201 12265 41917 Face 83831 21307 41918 37806 Face 83832 21307 24798 41918 Face 83833 15310 41919 12665 Face 83834 15310 30129 41919 Face 83835 1102 41920 36040 Face 83836 41970 22060 41920 Face 83837 8557 41921 24884 Face 83838 8557 22089 41921 Face 83839 9366 41922 23560 Face 83840 9366 1988 41922 Face 83841 16084 41923 25409 Face 83842 16084 18627 41923 Face 83843 11852 41924 36411 Face 83844 11852 16389 41924 Face 83845 16252 41925 34922 Face 83846 16252 10710 41925 Face 83847 16357 41926 20062 Face 83848 16357 8401 41926 Face 83849 4339 41927 20218 Face 83850 4339 15850 41927 Face 83851 1753 41928 9820 Face 83852 1753 36047 41928 Face 83853 19765 41929 28498 Face 83854 19765 32234 41929 Face 83855 29750 41930 12577 Face 83856 29750 2276 41930 Face 83857 14326 41931 34425 Face 83858 14326 21073 41931 Face 83859 46687 41932 11883 Face 83860 13222 5066 41932 Face 83861 23066 41933 40012 Face 83862 23066 9205 41933 Face 83863 12020 41934 14169 Face 83864 12020 32368 41934 Face 83865 13549 41935 2663 Face 83866 13549 37408 41935 Face 83867 12416 41936 2194 Face 83868 44599 45771 41936 Face 83869 729 41937 33861 Face 83870 729 22686 41937 Face 83871 17231 41938 39118 Face 83872 17231 24359 41938 Face 83873 17658 41939 48811 Face 83874 17658 4451 41939 Face 83875 11473 41940 12172 Face 83876 11473 16219 41940 Face 83877 816 41941 29289 Face 83878 816 45104 41941 Face 83879 10947 41942 24906 Face 83880 10947 29109 41942 Face 83881 6248 41943 26854 Face 83882 6248 17923 41943 Face 83883 2756 41944 30658 Face 83884 2756 20700 41944 Face 83885 46694 41945 451 Face 83886 15218 33232 41945 Face 83887 5672 41946 26499 Face 83888 5672 22276 41946 Face 83889 26064 41947 10558 Face 83890 26064 1772 41947 Face 83891 3021 41948 33444 Face 83892 44615 31815 41948 Face 83893 31131 44217 7802 Face 83894 31131 15974 41949 Face 83895 11624 41950 45951 Face 83896 11624 25542 41950 Face 83897 46058 41951 7812 Face 83898 17290 22283 41951 Face 83899 4806 41952 13052 Face 83900 4806 16574 41952 Face 83901 34521 41953 23067 Face 83902 34521 26917 41953 Face 83903 4722 41954 31719 Face 83904 4722 17997 41954 Face 83905 4273 41955 15969 Face 83906 4273 13879 41955 Face 83907 19246 41956 9892 Face 83908 19246 1487 41956 Face 83909 30470 41957 44271 Face 83910 30470 20087 41957 Face 83911 7355 41958 16983 Face 83912 7355 24349 41958 Face 83913 31501 41959 17168 Face 83914 31501 17169 41959 Face 83915 18603 41960 18604 Face 83916 18603 22203 41960 Face 83917 38927 41961 17822 Face 83918 38927 45315 41961 Face 83919 17178 41962 39110 Face 83920 17178 5452 41962 Face 83921 30146 41963 27467 Face 83922 30146 9775 41963 Face 83923 28653 41964 20398 Face 83924 28653 12038 41964 Face 83925 9319 41965 12177 Face 83926 9319 33552 41965 Face 83927 13281 41966 26569 Face 83928 13281 5157 41966 Face 83929 13431 41967 47248 Face 83930 13431 31685 41967 Face 83931 803 41968 24117 Face 83932 803 36112 41968 Face 83933 15730 41969 49178 Face 83934 15730 22310 41969 Face 83935 1102 41970 41920 Face 83936 1102 21640 41970 Face 83937 6032 41971 12099 Face 83938 6032 8967 41971 Face 83939 41973 41972 38890 Face 83940 940 19518 41972 Face 83941 940 41973 38161 Face 83942 940 41972 41973 Face 83943 19943 41974 49188 Face 83944 19943 9007 41974 Face 83945 12755 41975 5920 Face 83946 12755 29084 41975 Face 83947 5482 41976 39267 Face 83948 5482 15207 41976 Face 83949 31728 41977 7414 Face 83950 31728 36174 41977 Face 83951 33881 41978 444 Face 83952 33881 23236 41978 Face 83953 35619 41979 8824 Face 83954 35619 5927 41979 Face 83955 32379 41980 6469 Face 83956 32379 3166 41980 Face 83957 12405 41981 7309 Face 83958 12405 1626 41981 Face 83959 41983 41982 25597 Face 83960 41983 38333 41982 Face 83961 33078 41983 25597 Face 83962 33078 37144 41983 Face 83963 5300 41984 34834 Face 83964 5300 34389 41984 Face 83965 12193 41985 12482 Face 83966 12193 36474 41985 Face 83967 4243 41986 34748 Face 83968 4243 26695 41986 Face 83969 28555 41987 30348 Face 83970 28555 30347 41987 Face 83971 1855 41988 21024 Face 83972 45768 11897 41988 Face 83973 13471 41989 2018 Face 83974 13471 5046 41989 Face 83975 15320 41990 24842 Face 83976 41991 15321 41990 Face 83977 15320 41991 41990 Face 83978 49211 23783 41991 Face 83979 5871 41992 18283 Face 83980 5871 25333 41992 Face 83981 10014 41993 202 Face 83982 10014 23910 41993 Face 83983 997 41994 20037 Face 83984 997 14705 41994 Face 83985 46424 41995 41226 Face 83986 3744 13765 41995 Face 83987 11622 41996 30516 Face 83988 11622 2565 41996 Face 83989 5393 41997 2930 Face 83990 5393 28668 41997 Face 83991 10396 41998 39849 Face 83992 10396 7096 41998 Face 83993 13886 41999 34553 Face 83994 13886 16417 41999 Face 83995 19644 42000 40133 Face 83996 19644 33179 42000 Face 83997 6491 42001 25607 Face 83998 6491 43735 42001 Face 83999 15981 42002 25648 Face 84000 15981 4624 42002 Face 84001 3416 42003 15786 Face 84002 3416 4609 42003 Face 84003 34786 42004 12551 Face 84004 34786 18281 42004 Face 84005 36040 42005 6309 Face 84006 36040 39969 42005 Face 84007 10123 42006 23525 Face 84008 10123 34025 42006 Face 84009 7786 42007 15229 Face 84010 7786 22896 42007 Face 84011 4228 42008 22282 Face 84012 4228 36887 42008 Face 84013 14991 42009 39905 Face 84014 14991 4109 42009 Face 84015 26006 42010 20453 Face 84016 26006 26005 42010 Face 84017 3296 42011 28051 Face 84018 3296 28586 42011 Face 84019 13021 42012 16971 Face 84020 13021 49635 42012 Face 84021 11275 42013 36475 Face 84022 42014 14127 42013 Face 84023 11275 42014 42013 Face 84024 11275 41269 42014 Face 84025 46988 42015 33286 Face 84026 2630 22152 42015 Face 84027 21640 42016 41970 Face 84028 21640 14229 42016 Face 84029 1889 42017 41623 Face 84030 47208 38519 42017 Face 84031 18885 42018 24855 Face 84032 18885 29128 42018 Face 84033 20501 42019 47623 Face 84034 20501 35675 42019 Face 84035 679 42020 31603 Face 84036 679 39417 42020 Face 84037 19953 42021 435 Face 84038 19953 17974 42021 Face 84039 1285 42022 27965 Face 84040 1285 19724 42022 Face 84041 42024 42023 14783 Face 84042 17741 46409 42023 Face 84043 17741 42024 6937 Face 84044 17741 42023 42024 Face 84045 14031 42025 18841 Face 84046 14031 33364 42025 Face 84047 42027 42026 12845 Face 84048 42027 8669 42026 Face 84049 19189 42027 31022 Face 84050 19189 8669 42027 Face 84051 47649 42028 15482 Face 84052 7443 16264 42028 Face 84053 14520 42029 22230 Face 84054 14520 49649 42029 Face 84055 16928 42030 17802 Face 84056 16928 23995 42030 Face 84057 536 42031 30304 Face 84058 536 22249 42031 Face 84059 4316 42032 26628 Face 84060 4316 29070 42032 Face 84061 4846 42033 33935 Face 84062 4846 43714 42033 Face 84063 15639 42034 35791 Face 84064 15639 39893 42034 Face 84065 36526 42035 5963 Face 84066 36526 36527 42035 Face 84067 41606 42036 22937 Face 84068 41606 10679 42036 Face 84069 192 42037 32307 Face 84070 192 36820 42037 Face 84071 4808 42038 18621 Face 84072 4808 27727 42038 Face 84073 14486 42039 11939 Face 84074 14486 37114 42039 Face 84075 1037 42040 43426 Face 84076 1037 11686 42040 Face 84077 12214 42041 7676 Face 84078 47543 26486 42041 Face 84079 22401 42042 5824 Face 84080 22401 11676 42042 Face 84081 22055 42043 41131 Face 84082 22055 16211 42043 Face 84083 19555 42044 17716 Face 84084 19555 46562 42044 Face 84085 25240 42045 32419 Face 84086 25240 38128 42045 Face 84087 27305 42046 3777 Face 84088 27305 12920 42046 Face 84089 21857 42047 4891 Face 84090 21857 41653 42047 Face 84091 12822 42048 15845 Face 84092 12822 35568 42048 Face 84093 952 42049 15045 Face 84094 952 23873 42049 Face 84095 18335 42050 966 Face 84096 18335 33404 42050 Face 84097 1935 42051 24978 Face 84098 1935 18877 42051 Face 84099 45348 42052 8406 Face 84100 45349 3533 42052 Face 84101 34109 42053 42052 Face 84102 34109 29398 42053 Face 84103 22093 42054 14303 Face 84104 22093 28391 42054 Face 84105 6920 42055 25100 Face 84106 6920 3312 42055 Face 84107 17852 42056 5249 Face 84108 17852 15802 44515 Face 84109 5847 42057 35571 Face 84110 5847 35572 42057 Face 84111 28225 42058 30567 Face 84112 28225 32229 42058 Face 84113 25433 42059 42363 Face 84114 25433 42563 42059 Face 84115 12803 42060 11321 Face 84116 12803 27448 42060 Face 84117 26382 42061 44906 Face 84118 26382 36112 42061 Face 84119 12669 42062 39331 Face 84120 12669 3050 42062 Face 84121 12962 42063 16250 Face 84122 12962 32049 42063 Face 84123 11783 48984 24042 Face 84124 11783 30026 42064 Face 84125 6152 42065 33735 Face 84126 6152 33807 42065 Face 84127 22286 42066 3434 Face 84128 22286 11747 42066 Face 84129 16023 42067 39837 Face 84130 16023 3691 42067 Face 84131 5213 42068 30145 Face 84132 5213 28931 42068 Face 84133 8572 42069 7345 Face 84134 8572 23375 42069 Face 84135 6801 42070 27309 Face 84136 6801 38030 42070 Face 84137 19922 42071 39704 Face 84138 19922 30741 42071 Face 84139 13115 42072 9574 Face 84140 13115 27865 42072 Face 84141 17638 42073 3720 Face 84142 17638 25704 42073 Face 84143 17662 42074 9497 Face 84144 17662 22710 42074 Face 84145 20126 42075 44178 Face 84146 20126 15784 42075 Face 84147 21810 42076 45973 Face 84148 21810 9759 42076 Face 84149 662 42077 22859 Face 84150 662 6074 42077 Face 84151 19796 42078 8683 Face 84152 19796 31903 42078 Face 84153 20641 42079 45151 Face 84154 20641 9086 42079 Face 84155 5779 42080 35696 Face 84156 5779 11480 42080 Face 84157 47525 42081 1355 Face 84158 10584 28711 42081 Face 84159 19668 42082 1080 Face 84160 19668 47891 42082 Face 84161 2709 42083 29654 Face 84162 2709 41093 42083 Face 84163 172 42084 36241 Face 84164 172 43832 42084 Face 84165 12635 42085 35426 Face 84166 12635 20217 42085 Face 84167 8246 42086 8536 Face 84168 8246 45703 42086 Face 84169 8246 42087 24937 Face 84170 8246 8536 42087 Face 84171 16876 42088 43615 Face 84172 16876 5726 42088 Face 84173 28628 42089 33162 Face 84174 28628 12261 42089 Face 84175 8778 42090 47060 Face 84176 8778 49605 42090 Face 84177 21092 42091 39799 Face 84178 21092 8346 42091 Face 84179 16311 42092 22215 Face 84180 16311 32054 42092 Face 84181 6596 42093 40859 Face 84182 6596 29348 42093 Face 84183 5359 42094 38699 Face 84184 5359 35355 42094 Face 84185 9163 42095 37870 Face 84186 9163 21356 42095 Face 84187 4492 42096 37671 Face 84188 4492 41196 42096 Face 84189 371 42097 25344 Face 84190 371 21724 42097 Face 84191 8131 42098 32198 Face 84192 8131 17202 42098 Face 84193 24344 42099 31971 Face 84194 24344 23736 42099 Face 84195 9529 42100 25649 Face 84196 9529 26752 42100 Face 84197 10235 42101 11954 Face 84198 10235 16011 42101 Face 84199 40053 42102 373 Face 84200 40053 27940 42102 Face 84201 5455 42103 19064 Face 84202 5455 40636 42103 Face 84203 6350 42104 36127 Face 84204 6350 779 42104 Face 84205 2129 42105 13631 Face 84206 2129 38607 42105 Face 84207 17268 42106 2967 Face 84208 17268 37929 42106 Face 84209 11629 42107 45745 Face 84210 11629 15468 42107 Face 84211 16613 42108 33370 Face 84212 16613 26513 42108 Face 84213 24619 42109 13558 Face 84214 24619 39908 42109 Face 84215 14500 42110 31363 Face 84216 14500 34875 42110 Face 84217 2280 42111 10728 Face 84218 2280 40662 42111 Face 84219 5111 42112 27582 Face 84220 5111 25946 42112 Face 84221 12261 42113 42089 Face 84222 12261 21906 42113 Face 84223 5012 42114 26219 Face 84224 5012 21467 42114 Face 84225 6831 42115 36240 Face 84226 44044 26605 42115 Face 84227 20166 42116 49185 Face 84228 20166 37332 42116 Face 84229 27297 42117 14967 Face 84230 27297 10550 42117 Face 84231 21069 42118 34433 Face 84232 21069 10596 42118 Face 84233 18800 42119 1283 Face 84234 18800 11725 42119 Face 84235 10498 42120 315 Face 84236 10498 32522 42120 Face 84237 12146 42121 43818 Face 84238 12146 8354 42121 Face 84239 5339 42122 24351 Face 84240 5339 15744 42122 Face 84241 13336 42123 2991 Face 84242 13336 37890 42123 Face 84243 14024 42124 32388 Face 84244 14024 14025 42124 Face 84245 7831 42125 43295 Face 84246 7831 25741 42125 Face 84247 11004 42126 34655 Face 84248 42127 25502 42126 Face 84249 11004 42127 42126 Face 84250 11004 21538 42127 Face 84251 14290 42128 49561 Face 84252 14290 18141 42128 Face 84253 13690 42129 13691 Face 84254 46680 18160 42129 Face 84255 1444 42130 33352 Face 84256 1444 26652 42130 Face 84257 8719 42131 34520 Face 84258 8719 47702 42131 Face 84259 5294 42132 28872 Face 84260 45269 6526 42132 Face 84261 16143 42133 32966 Face 84262 16143 49557 42133 Face 84263 4069 42134 49269 Face 84264 4069 41538 42134 Face 84265 4201 42135 22656 Face 84266 4201 33931 42135 Face 84267 4201 42136 33931 Face 84268 46192 6349 42136 Face 84269 48434 42137 8678 Face 84270 42138 25969 42137 Face 84271 7371 42138 42137 Face 84272 7371 27182 42138 Face 84273 957 42139 24678 Face 84274 957 34409 42139 Face 84275 29766 42140 30135 Face 84276 29766 30652 42140 Face 84277 21104 42141 10592 Face 84278 21104 15054 42141 Face 84279 17347 42142 29066 Face 84280 17347 1556 42142 Face 84281 3190 42143 18183 Face 84282 3190 18716 42143 Face 84283 28142 42144 20075 Face 84284 28142 47570 42144 Face 84285 13596 42145 3864 Face 84286 42716 23554 49365 Face 84287 11765 42146 1103 Face 84288 11765 12206 42146 Face 84289 2949 42147 11643 Face 84290 2949 41284 42147 Face 84291 23387 42148 15238 Face 84292 23387 25825 42148 Face 84293 27710 42149 19953 Face 84294 27710 32358 42149 Face 84295 23689 42150 12645 Face 84296 23689 19164 42150 Face 84297 17276 42151 19505 Face 84298 17276 737 42151 Face 84299 8947 42152 38508 Face 84300 8947 8946 42152 Face 84301 7726 42153 42281 Face 84302 7726 29687 42153 Face 84303 9330 42154 35702 Face 84304 42751 28125 42154 Face 84305 23649 42155 25796 Face 84306 23649 1266 42155 Face 84307 10666 42156 32068 Face 84308 10666 15906 42156 Face 84309 971 42157 15080 Face 84310 42158 31763 42157 Face 84311 971 42158 42157 Face 84312 971 38463 42158 Face 84313 15758 42159 12454 Face 84314 15758 2252 42159 Face 84315 11745 42160 23024 Face 84316 11745 33218 42160 Face 84317 6175 42161 34716 Face 84318 6175 31617 42161 Face 84319 9031 42162 28486 Face 84320 9031 22356 42162 Face 84321 2913 42163 17646 Face 84322 2913 8315 42163 Face 84323 13045 42164 30634 Face 84324 13045 16872 42164 Face 84325 21776 42165 1332 Face 84326 21776 29456 42165 Face 84327 19347 42166 23181 Face 84328 19347 1958 42166 Face 84329 21572 42167 2789 Face 84330 44131 38336 42167 Face 84331 43012 42168 11193 Face 84332 23182 9350 42168 Face 84333 18092 42169 8231 Face 84334 18092 1045 42169 Face 84335 48283 42170 11040 Face 84336 9341 22909 42170 Face 84337 1644 42171 8987 Face 84338 1644 33171 42171 Face 84339 6393 42172 35468 Face 84340 6393 22885 42172 Face 84341 6393 42173 35336 Face 84342 6393 35467 42173 Face 84343 3644 42174 25711 Face 84344 3644 18024 42174 Face 84345 7918 42175 26859 Face 84346 7918 39184 42175 Face 84347 46940 42176 14150 Face 84348 8812 4086 42176 Face 84349 15670 42177 8448 Face 84350 15670 39790 42177 Face 84351 6478 42178 22121 Face 84352 6478 26083 42178 Face 84353 19681 42179 26757 Face 84354 19681 7390 42179 Face 84355 24640 42180 31067 Face 84356 24640 9922 42180 Face 84357 4236 42181 41069 Face 84358 4236 48546 42181 Face 84359 406 42182 28899 Face 84360 406 11465 42182 Face 84361 23491 42183 38174 Face 84362 23491 3694 42183 Face 84363 42185 42184 14078 Face 84364 12121 15172 42184 Face 84365 12121 42185 8637 Face 84366 12121 42184 42185 Face 84367 29756 42186 48739 Face 84368 29756 27151 42186 Face 84369 9274 42187 12873 Face 84370 9274 47958 42187 Face 84371 9274 42188 28362 Face 84372 9274 12873 42188 Face 84373 17046 42189 16582 Face 84374 17046 32742 42189 Face 84375 5790 42190 14137 Face 84376 5790 17850 42190 Face 84377 19213 42191 41424 Face 84378 19213 6365 42191 Face 84379 21527 42192 9151 Face 84380 43076 30800 42192 Face 84381 178 42193 11128 Face 84382 178 33082 42193 Face 84383 24203 42194 8193 Face 84384 24203 10433 42194 Face 84385 3536 42195 41870 Face 84386 3536 40890 42195 Face 84387 27988 42196 42971 Face 84388 27988 31466 42196 Face 84389 6628 42197 16596 Face 84390 6628 28622 42197 Face 84391 2992 42198 36019 Face 84392 2992 8743 42198 Face 84393 6890 42199 41020 Face 84394 6890 31982 42199 Face 84395 2913 42200 8315 Face 84396 2913 29370 42200 Face 84397 2691 42201 41917 Face 84398 2691 47474 42201 Face 84399 42203 42202 16380 Face 84400 42203 2745 42202 Face 84401 25484 42203 16380 Face 84402 25484 25880 42203 Face 84403 26004 42204 8298 Face 84404 26004 6193 42204 Face 84405 20866 42205 8307 Face 84406 20866 26465 42205 Face 84407 29843 42206 20732 Face 84408 29843 9501 42206 Face 84409 10473 42207 27787 Face 84410 10473 762 42207 Face 84411 24064 42208 33361 Face 84412 24064 12910 42208 Face 84413 1414 42209 10846 Face 84414 1414 5949 42209 Face 84415 4431 42210 19969 Face 84416 4431 20541 42210 Face 84417 16795 42211 7080 Face 84418 16795 30747 42211 Face 84419 25068 42212 25067 Face 84420 25068 42325 42212 Face 84421 23675 42213 48483 Face 84422 23675 42216 42213 Face 84423 1373 42214 31788 Face 84424 1373 24422 42214 Face 84425 1806 42215 30682 Face 84426 1806 17948 42215 Face 84427 5594 42216 40941 Face 84428 5594 42213 42216 Face 84429 14627 42217 14805 Face 84430 14627 27663 42217 Face 84431 8094 42218 28968 Face 84432 8094 18531 42218 Face 84433 43881 42219 16165 Face 84434 1229 21286 42219 Face 84435 7378 42220 18772 Face 84436 7378 17185 42220 Face 84437 15126 42221 32539 Face 84438 15126 20846 42221 Face 84439 2356 42222 19236 Face 84440 2356 8920 42222 Face 84441 624 42223 23442 Face 84442 624 22826 42223 Face 84443 40042 42224 10464 Face 84444 40042 28639 42224 Face 84445 12764 42225 33806 Face 84446 12764 27851 42225 Face 84447 42227 42226 42522 Face 84448 20881 36280 42226 Face 84449 20881 42227 6073 Face 84450 20881 42226 42227 Face 84451 1254 42228 37095 Face 84452 1254 25233 42228 Face 84453 19566 42229 11533 Face 84454 19566 44419 42229 Face 84455 24425 42230 20556 Face 84456 24425 18594 42230 Face 84457 1971 42231 4723 Face 84458 1971 27920 42231 Face 84459 47899 42232 6559 Face 84460 47899 32979 42232 Face 84461 7285 42233 37591 Face 84462 7285 40208 42233 Face 84463 1293 42234 21234 Face 84464 1293 5972 42234 Face 84465 6868 42235 34497 Face 84466 6868 19889 42235 Face 84467 10042 42236 33649 Face 84468 10042 19055 42236 Face 84469 12042 42237 16196 Face 84470 12042 17991 42237 Face 84471 22996 42238 27494 Face 84472 22996 26109 42238 Face 84473 6918 42239 26777 Face 84474 6918 45302 42239 Face 84475 40578 42240 21913 Face 84476 40578 11914 42240 Face 84477 959 42241 15775 Face 84478 959 37448 42241 Face 84479 7455 42242 41214 Face 84480 7455 34443 42242 Face 84481 19647 42243 19368 Face 84482 19647 23718 42243 Face 84483 1161 42244 41250 Face 84484 1161 27671 42244 Face 84485 6245 42245 39986 Face 84486 6245 40280 42245 Face 84487 18976 42246 11470 Face 84488 18976 17040 42246 Face 84489 1063 42247 33206 Face 84490 1063 22245 42247 Face 84491 20311 42248 13942 Face 84492 20311 10353 42248 Face 84493 20808 42249 49051 Face 84494 20808 11461 42249 Face 84495 1845 42250 10113 Face 84496 1845 18962 42250 Face 84497 10926 42251 16580 Face 84498 10926 21664 42251 Face 84499 12726 42252 29157 Face 84500 12726 15935 42252 Face 84501 3528 42253 18948 Face 84502 3528 38122 42253 Face 84503 24922 42254 364 Face 84504 24922 16770 42254 Face 84505 19276 42255 28823 Face 84506 19276 47148 42255 Face 84507 14699 42256 3229 Face 84508 14699 12261 42256 Face 84509 12947 42257 19573 Face 84510 12947 37645 42257 Face 84511 12831 42258 4218 Face 84512 12831 39991 42258 Face 84513 1409 42259 40649 Face 84514 1409 14403 42259 Face 84515 17338 42260 40470 Face 84516 17338 4321 42260 Face 84517 12657 42261 31107 Face 84518 12657 29095 42261 Face 84519 13836 42262 2964 Face 84520 13836 47709 42262 Face 84521 20950 42263 6975 Face 84522 20950 8085 42263 Face 84523 19222 42264 7020 Face 84524 19222 39602 42264 Face 84525 20506 42265 46256 Face 84526 43567 46989 42265 Face 84527 227 42266 35050 Face 84528 227 24799 42266 Face 84529 30823 42267 7347 Face 84530 30823 10007 42267 Face 84531 16292 42268 21774 Face 84532 16292 42172 42268 Face 84533 42855 42269 29796 Face 84534 3506 22578 42269 Face 84535 5369 42270 41042 Face 84536 5369 48440 42270 Face 84537 10905 42271 20690 Face 84538 42272 48904 42271 Face 84539 10905 42272 42271 Face 84540 10905 42764 42272 Face 84541 22117 42273 7569 Face 84542 22117 5155 42273 Face 84543 18098 42274 25444 Face 84544 18098 24620 42274 Face 84545 23080 42275 28488 Face 84546 23080 13771 42275 Face 84547 12490 42276 20273 Face 84548 12490 8107 42276 Face 84549 8943 42277 16907 Face 84550 47664 23294 42277 Face 84551 1883 42278 25100 Face 84552 1883 34876 42278 Face 84553 26199 42279 24109 Face 84554 26199 31953 42279 Face 84555 21883 42280 2775 Face 84556 21883 18966 42280 Face 84557 26304 42281 42153 Face 84558 26304 21421 42281 Face 84559 17954 42282 16376 Face 84560 17954 45570 42282 Face 84561 6818 42283 19672 Face 84562 6818 28559 42283 Face 84563 6818 42284 28559 Face 84564 6818 33603 42284 Face 84565 10167 42285 46511 Face 84566 10167 19428 42285 Face 84567 20457 42286 4181 Face 84568 20457 30214 42286 Face 84569 4583 42287 23168 Face 84570 4583 31434 42287 Face 84571 1543 42288 12665 Face 84572 1543 8295 42288 Face 84573 21021 42289 13086 Face 84574 21021 36585 42289 Face 84575 16793 42290 25540 Face 84576 16793 47499 42290 Face 84577 1506 42291 15485 Face 84578 1506 13541 42291 Face 84579 6964 42292 11414 Face 84580 6964 18400 42292 Face 84581 22282 42293 83 Face 84582 22282 37240 42293 Face 84583 15389 42294 34583 Face 84584 15389 32929 42294 Face 84585 2568 42295 26533 Face 84586 2568 8843 42295 Face 84587 11380 42296 30009 Face 84588 11380 19917 42296 Face 84589 14574 42297 9745 Face 84590 14574 31882 42297 Face 84591 46928 42298 31819 Face 84592 46928 14968 42298 Face 84593 8258 42299 37582 Face 84594 8258 35949 42299 Face 84595 6958 42300 48956 Face 84596 6958 37115 42300 Face 84597 14824 42301 10423 Face 84598 14824 40328 42301 Face 84599 4313 42302 21717 Face 84600 4313 24260 42302 Face 84601 7114 42303 524 Face 84602 7114 19247 42303 Face 84603 10784 42304 18856 Face 84604 10784 38917 42304 Face 84605 916 42305 5282 Face 84606 42306 7876 42305 Face 84607 916 42306 42305 Face 84608 916 29546 42306 Face 84609 18496 42307 28412 Face 84610 18496 2727 42307 Face 84611 7789 42308 32468 Face 84612 7789 36468 42308 Face 84613 4119 42309 11537 Face 84614 4119 21122 42309 Face 84615 9134 42310 20842 Face 84616 9134 19796 42310 Face 84617 16174 42311 5096 Face 84618 16174 45312 42311 Face 84619 10257 42312 4902 Face 84620 10257 28904 42312 Face 84621 23879 42313 2944 Face 84622 23879 10200 42313 Face 84623 4798 42314 31951 Face 84624 4798 1475 42314 Face 84625 29778 42315 9015 Face 84626 29778 15978 42315 Face 84627 15623 42316 47562 Face 84628 15623 33809 42316 Face 84629 667 42317 34432 Face 84630 667 17580 42317 Face 84631 8729 42318 38879 Face 84632 8729 30500 42318 Face 84633 32205 42319 1725 Face 84634 32205 40041 42319 Face 84635 11685 42320 35094 Face 84636 11685 46230 42320 Face 84637 13074 42321 17035 Face 84638 13074 48272 42321 Face 84639 3603 42322 22921 Face 84640 3603 20635 42322 Face 84641 5183 42323 16785 Face 84642 5183 25378 42323 Face 84643 16193 42324 38758 Face 84644 16193 40770 42324 Face 84645 49688 42325 32408 Face 84646 25066 42212 42325 Face 84647 7810 42326 26306 Face 84648 7810 26307 42326 Face 84649 42328 42327 14314 Face 84650 8072 11814 42327 Face 84651 8072 42328 17391 Face 84652 8072 42327 42328 Face 84653 13295 42329 35758 Face 84654 13295 46700 42329 Face 84655 24562 42330 6093 Face 84656 24562 18253 42330 Face 84657 7876 42331 42305 Face 84658 7876 24505 42331 Face 84659 901 42332 19338 Face 84660 901 4852 42332 Face 84661 2185 42333 11590 Face 84662 2185 48846 42333 Face 84663 11848 42334 1920 Face 84664 11848 6299 42334 Face 84665 31204 42335 22497 Face 84666 31204 19680 42335 Face 84667 10323 42336 12972 Face 84668 10323 18131 42336 Face 84669 1736 42337 28402 Face 84670 1736 4360 42337 Face 84671 29195 42338 42337 Face 84672 29195 5296 42338 Face 84673 1841 42339 21936 Face 84674 1841 40207 42339 Face 84675 23744 42340 7453 Face 84676 23744 4069 42340 Face 84677 11614 42341 16832 Face 84678 11614 7246 42341 Face 84679 18440 42342 8598 Face 84680 18440 24265 42342 Face 84681 414 42343 18672 Face 84682 414 25288 42343 Face 84683 33476 42344 672 Face 84684 33476 3559 42344 Face 84685 8251 42345 38067 Face 84686 8251 21860 42345 Face 84687 24725 42346 24724 Face 84688 24725 11423 42346 Face 84689 18262 42347 31814 Face 84690 18262 11683 42347 Face 84691 4511 42348 29042 Face 84692 4511 37379 42348 Face 84693 6105 42349 19067 Face 84694 6105 17540 42349 Face 84695 14108 42350 19909 Face 84696 14108 187 42350 Face 84697 5917 42351 38806 Face 84698 5917 36676 42351 Face 84699 9182 42352 43636 Face 84700 9182 47230 42352 Face 84701 11907 42353 9642 Face 84702 11907 29860 42353 Face 84703 8485 42354 26226 Face 84704 8485 30889 42354 Face 84705 18146 42355 1521 Face 84706 18146 19419 42355 Face 84707 16127 42357 34754 Face 84708 16127 36452 42357 Face 84709 42356 42357 36452 Face 84710 42356 34754 42357 Face 84711 3570 42358 36423 Face 84712 3570 16227 42358 Face 84713 5770 42359 35462 Face 84714 5770 41442 42359 Face 84715 107 42360 13157 Face 84716 107 13156 42360 Face 84717 224 42361 5757 Face 84718 224 10055 42361 Face 84719 18264 42362 37983 Face 84720 18264 5437 42362 Face 84721 9573 42363 20703 Face 84722 9573 40086 42363 Face 84723 12730 42364 37559 Face 84724 42365 2529 42364 Face 84725 12730 42365 42364 Face 84726 12730 26551 42365 Face 84727 10419 42366 11732 Face 84728 10419 31863 42366 Face 84729 7595 42367 17214 Face 84730 7595 1957 42367 Face 84731 16958 42368 26578 Face 84732 16958 8308 42368 Face 84733 5905 42369 13932 Face 84734 5905 23649 42369 Face 84735 14385 42370 42892 Face 84736 14385 38290 42370 Face 84737 3210 42371 32201 Face 84738 3210 47457 42371 Face 84739 9644 42372 9645 Face 84740 9644 8330 42372 Face 84741 21123 42373 48515 Face 84742 21123 27947 42373 Face 84743 44962 42374 15445 Face 84744 6145 14448 42374 Face 84745 17744 42375 44479 Face 84746 17744 12141 42375 Face 84747 3866 42376 21516 Face 84748 3866 40556 42376 Face 84749 746 42377 28389 Face 84750 746 34956 42377 Face 84751 14773 42378 24153 Face 84752 14773 25845 42378 Face 84753 5607 42379 38300 Face 84754 5607 6367 42379 Face 84755 3051 42380 41127 Face 84756 3051 16671 42380 Face 84757 16355 42381 12025 Face 84758 16355 30537 42381 Face 84759 17306 42382 5113 Face 84760 17306 35761 42382 Face 84761 8557 42383 3451 Face 84762 8557 24884 42383 Face 84763 5629 42384 22095 Face 84764 5629 13824 42384 Face 84765 3624 42385 16037 Face 84766 3624 34367 42385 Face 84767 3363 42386 29938 Face 84768 42387 29937 42386 Face 84769 3363 42387 42386 Face 84770 45997 30977 42387 Face 84771 2483 42388 2481 Face 84772 2483 32937 42388 Face 84773 19325 42389 48455 Face 84774 19325 35851 42389 Face 84775 45284 42390 27094 Face 84776 16246 1174 42390 Face 84777 14651 42391 45436 Face 84778 14651 36613 42391 Face 84779 3240 42392 36057 Face 84780 3240 21628 42392 Face 84781 436 42393 12580 Face 84782 436 31875 42393 Face 84783 22227 42394 48488 Face 84784 22227 34519 42394 Face 84785 14432 42395 9973 Face 84786 14432 20019 42395 Face 84787 10900 42396 39208 Face 84788 10900 37255 42396 Face 84789 19802 42397 12212 Face 84790 19802 32640 42397 Face 84791 20433 42398 4738 Face 84792 20433 32209 42398 Face 84793 15520 42399 14553 Face 84794 15520 7635 42399 Face 84795 27523 42400 42401 Face 84796 27523 29930 42400 Face 84797 42402 42401 42400 Face 84798 1501 27523 42401 Face 84799 1501 42402 25928 Face 84800 1501 42401 42402 Face 84801 1477 42403 7773 Face 84802 1477 35627 42403 Face 84803 6692 42404 37371 Face 84804 6692 16607 42404 Face 84805 2398 42405 49025 Face 84806 2398 22591 42405 Face 84807 8172 42406 28101 Face 84808 8172 27748 42406 Face 84809 2283 42407 16216 Face 84810 2283 15926 42407 Face 84811 645 42408 35649 Face 84812 645 34990 42408 Face 84813 31530 42409 44029 Face 84814 31530 14047 42409 Face 84815 10831 42410 2815 Face 84816 10831 939 42410 Face 84817 25040 42411 2164 Face 84818 25040 30543 42411 Face 84819 16878 42412 17543 Face 84820 16878 23683 42412 Face 84821 27308 42413 27210 Face 84822 27308 48687 42413 Face 84823 8269 42414 15260 Face 84824 8269 15262 42414 Face 84825 27946 42415 30669 Face 84826 27946 5326 42415 Face 84827 14457 42416 37893 Face 84828 14457 27373 42416 Face 84829 19576 42417 13201 Face 84830 19576 24255 42417 Face 84831 13290 42418 44450 Face 84832 13290 2651 42418 Face 84833 42420 42419 39163 Face 84834 847 25695 42419 Face 84835 847 42420 26463 Face 84836 847 42419 42420 Face 84837 22187 42421 31239 Face 84838 22187 4947 42421 Face 84839 47998 42422 15422 Face 84840 47998 21976 42422 Face 84841 28633 42423 36103 Face 84842 28633 23742 42423 Face 84843 47954 42424 16456 Face 84844 10803 40540 42424 Face 84845 10658 42425 32493 Face 84846 42426 24931 42425 Face 84847 10658 42426 42425 Face 84848 10658 29098 42426 Face 84849 4620 42427 12593 Face 84850 4620 13460 42427 Face 84851 15628 42428 40516 Face 84852 15628 48097 42428 Face 84853 11047 42429 39138 Face 84854 11047 26459 42429 Face 84855 32670 42430 21186 Face 84856 32670 17992 42430 Face 84857 4329 42431 19288 Face 84858 4329 16862 42431 Face 84859 9596 42432 36134 Face 84860 9596 17561 42432 Face 84861 10216 42433 19318 Face 84862 48825 27438 42433 Face 84863 4602 42434 29828 Face 84864 4602 39055 42434 Face 84865 9369 42435 38417 Face 84866 9369 24369 42435 Face 84867 9534 42436 25186 Face 84868 9534 27372 42436 Face 84869 42438 42437 537 Face 84870 24900 43022 42437 Face 84871 24900 42438 28990 Face 84872 24900 42437 42438 Face 84873 8989 42439 1112 Face 84874 8989 33925 42439 Face 84875 24913 42440 27309 Face 84876 24913 22834 42440 Face 84877 24913 42441 22834 Face 84878 24913 15562 42441 Face 84879 12917 42442 39223 Face 84880 12917 12960 42442 Face 84881 1295 42443 29039 Face 84882 1295 24509 42443 Face 84883 7064 42444 21007 Face 84884 7064 23194 42444 Face 84885 2540 42445 17978 Face 84886 2540 16678 42445 Face 84887 475 42446 33833 Face 84888 475 16187 42446 Face 84889 1621 42447 29188 Face 84890 42448 27698 42447 Face 84891 1621 42448 42447 Face 84892 1621 33774 42448 Face 84893 16624 42449 37229 Face 84894 16624 31027 42449 Face 84895 10949 42450 15529 Face 84896 10949 26872 42450 Face 84897 7898 42451 17961 Face 84898 7898 31652 42451 Face 84899 8080 42452 11580 Face 84900 8080 40458 42452 Face 84901 6757 42453 15930 Face 84902 6757 2602 42453 Face 84903 17618 42454 21734 Face 84904 17618 5551 42454 Face 84905 12155 42455 34619 Face 84906 12155 34947 42455 Face 84907 8723 42456 24668 Face 84908 8723 21495 42456 Face 84909 29141 42457 2606 Face 84910 29141 6439 42457 Face 84911 12406 42458 24350 Face 84912 12406 22559 42458 Face 84913 5043 42459 29051 Face 84914 5043 13246 42459 Face 84915 19854 42460 12294 Face 84916 19854 1409 42460 Face 84917 23261 42461 38352 Face 84918 23261 17465 42461 Face 84919 13977 42462 4922 Face 84920 13977 8458 42462 Face 84921 7301 43477 74 Face 84922 7301 41051 43477 Face 84923 20254 42464 10899 Face 84924 20254 16327 42464 Face 84925 496 42465 8756 Face 84926 496 31775 42465 Face 84927 22249 42466 30158 Face 84928 22249 36008 42466 Face 84929 16238 42467 25527 Face 84930 16238 36809 42467 Face 84931 21099 42468 29294 Face 84932 21099 33715 42468 Face 84933 32453 42469 28707 Face 84934 32453 49060 42469 Face 84935 11890 42470 5014 Face 84936 11890 37504 42470 Face 84937 18290 42471 29853 Face 84938 18290 38491 42471 Face 84939 19993 42472 14742 Face 84940 19993 28882 42472 Face 84941 31868 42473 26989 Face 84942 31868 23884 42473 Face 84943 18016 42474 33220 Face 84944 18016 10559 42474 Face 84945 17423 42475 48023 Face 84946 17423 15385 42475 Face 84947 13745 42476 47882 Face 84948 13745 11350 42476 Face 84949 1202 42477 20345 Face 84950 1202 42754 42477 Face 84951 49239 42478 5653 Face 84952 13608 19517 42478 Face 84953 13405 42479 41532 Face 84954 13405 17294 42479 Face 84955 16156 42480 18004 Face 84956 16156 35609 42480 Face 84957 49820 42481 30935 Face 84958 19276 2142 42481 Face 84959 19276 42482 47148 Face 84960 19276 42481 49820 Face 84961 4334 42483 39677 Face 84962 45290 37580 42483 Face 84963 40913 42484 4620 Face 84964 40913 40912 42484 Face 84965 3060 42485 28760 Face 84966 3060 12760 42485 Face 84967 6476 42486 49693 Face 84968 6476 11882 42486 Face 84969 15674 42487 25514 Face 84970 15674 29013 42487 Face 84971 42489 42488 18426 Face 84972 17 22364 42488 Face 84973 17 42489 34161 Face 84974 17 42488 42489 Face 84975 8105 42490 36208 Face 84976 8105 19110 42490 Face 84977 23441 42491 2325 Face 84978 23441 8190 42491 Face 84979 5636 42492 20804 Face 84980 5636 4335 42492 Face 84981 5021 42493 8916 Face 84982 5021 46904 42493 Face 84983 19609 42494 2996 Face 84984 19609 71 42494 Face 84985 3812 42495 34280 Face 84986 3812 30429 42495 Face 84987 6854 42496 19291 Face 84988 6854 36461 42496 Face 84989 1488 42497 39541 Face 84990 1488 40074 42497 Face 84991 20878 42498 13258 Face 84992 20878 16096 42498 Face 84993 17728 42499 44371 Face 84994 17728 8210 42499 Face 84995 38082 42500 3099 Face 84996 38082 38083 42500 Face 84997 1201 42501 19350 Face 84998 1201 24459 42501 Face 84999 10004 42502 45582 Face 85000 10004 12058 42502 Face 85001 4102 42503 12795 Face 85002 4102 32847 42503 Face 85003 14015 42504 21953 Face 85004 14015 30497 42504 Face 85005 42506 42505 38913 Face 85006 3930 39794 42505 Face 85007 46917 42506 23418 Face 85008 3930 42505 42506 Face 85009 2011 42507 32061 Face 85010 2011 42108 42507 Face 85011 11169 42508 47262 Face 85012 11169 23534 42508 Face 85013 4086 42509 1837 Face 85014 4086 20839 42509 Face 85015 6869 42510 12866 Face 85016 6869 25347 42510 Face 85017 6869 42511 40697 Face 85018 6869 12866 42511 Face 85019 12644 42512 25532 Face 85020 12644 23340 42512 Face 85021 19471 42513 19470 Face 85022 19471 12174 42513 Face 85023 3787 42514 25828 Face 85024 3787 27843 42514 Face 85025 4108 42515 9790 Face 85026 47765 25395 42515 Face 85027 13676 42516 30960 Face 85028 13676 19258 42516 Face 85029 19196 42517 25343 Face 85030 19196 25634 42517 Face 85031 12373 42518 10084 Face 85032 12373 27536 42518 Face 85033 23926 42519 28597 Face 85034 23926 35231 42519 Face 85035 9915 42520 49379 Face 85036 9915 31908 42520 Face 85037 23823 42521 8928 Face 85038 23823 11445 42521 Face 85039 23100 42522 40432 Face 85040 23100 42227 42522 Face 85041 30922 42523 10115 Face 85042 30922 24749 42523 Face 85043 2389 42524 40017 Face 85044 2389 9011 42524 Face 85045 30026 42525 42064 Face 85046 49591 8738 42525 Face 85047 43923 42526 15309 Face 85048 8766 8767 42526 Face 85049 42529 42527 42355 Face 85050 5018 28969 42527 Face 85051 5018 42528 28969 Face 85052 5018 9320 42528 Face 85053 5018 42529 8186 Face 85054 5018 42527 42529 Face 85055 42531 42530 12902 Face 85056 12089 8566 42530 Face 85057 12089 42531 3501 Face 85058 12089 42530 42531 Face 85059 6667 42532 28404 Face 85060 6667 41227 42532 Face 85061 11357 42533 19565 Face 85062 11357 25764 42533 Face 85063 21328 42534 1659 Face 85064 21328 38069 42534 Face 85065 3015 42535 40750 Face 85066 3015 33535 42535 Face 85067 12126 42536 27113 Face 85068 46605 35501 42536 Face 85069 9937 42537 38840 Face 85070 9937 5814 42537 Face 85071 18513 42538 27192 Face 85072 18513 31370 42538 Face 85073 7314 42539 1701 Face 85074 7314 37751 42539 Face 85075 6086 42540 107 Face 85076 6086 20334 42540 Face 85077 47699 42541 708 Face 85078 16130 1193 42541 Face 85079 7507 42542 4030 Face 85080 7507 47616 42542 Face 85081 4861 42543 21509 Face 85082 4861 40209 42543 Face 85083 42545 42544 21851 Face 85084 42545 857 42544 Face 85085 22387 42545 21851 Face 85086 22387 35348 42545 Face 85087 16527 42546 1287 Face 85088 16527 41619 42546 Face 85089 11181 42547 1914 Face 85090 11181 25500 42547 Face 85091 6522 42548 34610 Face 85092 42750 11685 42548 Face 85093 14992 42549 45710 Face 85094 14992 3903 42549 Face 85095 16807 42550 17213 Face 85096 16807 38304 42550 Face 85097 13212 42551 41840 Face 85098 13212 18899 42551 Face 85099 3872 42552 7958 Face 85100 3872 12212 42552 Face 85101 19783 42553 366 Face 85102 19783 47761 42553 Face 85103 2112 42554 34196 Face 85104 2112 30503 42554 Face 85105 26292 42555 49264 Face 85106 26292 5794 42555 Face 85107 15969 42556 15970 Face 85108 15969 30541 42556 Face 85109 7360 42557 7795 Face 85110 42558 17213 42557 Face 85111 7360 42558 42557 Face 85112 7360 4634 42558 Face 85113 18484 42559 49689 Face 85114 18484 10914 42559 Face 85115 5621 42560 27588 Face 85116 5621 39585 42560 Face 85117 31447 42561 23501 Face 85118 31447 33928 42561 Face 85119 17041 42562 28831 Face 85120 17041 40180 42562 Face 85121 47256 42563 22480 Face 85122 47256 42059 42563 Face 85123 10825 42564 34142 Face 85124 10825 18739 42564 Face 85125 30811 42565 21629 Face 85126 30811 29858 42565 Face 85127 1054 42566 28733 Face 85128 1054 38686 42566 Face 85129 3514 42567 1901 Face 85130 3514 25667 42567 Face 85131 1652 42568 41618 Face 85132 1652 24567 42568 Face 85133 21590 42569 10706 Face 85134 48349 35995 42569 Face 85135 18678 42570 25849 Face 85136 18678 26568 42570 Face 85137 48970 42571 335 Face 85138 11061 37383 42571 Face 85139 7341 42572 18318 Face 85140 7341 12494 42572 Face 85141 25722 42573 14249 Face 85142 25722 25721 42573 Face 85143 20660 42574 22741 Face 85144 20660 6969 42574 Face 85145 7034 42575 19617 Face 85146 7034 27617 42575 Face 85147 20121 42576 38161 Face 85148 20121 415 42576 Face 85149 10215 42577 41580 Face 85150 10215 25716 42577 Face 85151 25579 42578 13019 Face 85152 25579 37011 42578 Face 85153 13467 42579 988 Face 85154 13467 12314 42579 Face 85155 2316 42581 20055 Face 85156 2316 33357 42581 Face 85157 42580 42581 33357 Face 85158 42580 27723 42581 Face 85159 14652 42582 15560 Face 85160 14652 19501 42582 Face 85161 23481 42583 40530 Face 85162 23481 1966 42583 Face 85163 46478 42584 29519 Face 85164 16573 27440 42584 Face 85165 10673 42585 19295 Face 85166 10673 5932 42585 Face 85167 25079 42586 6186 Face 85168 25079 22811 42586 Face 85169 18106 42587 48639 Face 85170 18106 25110 42587 Face 85171 46709 42588 5475 Face 85172 12427 16957 42588 Face 85173 22565 42589 37536 Face 85174 22565 45561 42589 Face 85175 2294 42590 6235 Face 85176 2294 40239 42590 Face 85177 10652 42591 39294 Face 85178 10652 22862 42591 Face 85179 21269 42592 32992 Face 85180 21269 12484 42592 Face 85181 6477 42593 32436 Face 85182 42594 23334 42593 Face 85183 6477 42594 42593 Face 85184 6477 30303 42594 Face 85185 24745 42595 27683 Face 85186 24745 31198 42595 Face 85187 25612 42596 11456 Face 85188 25612 14981 42596 Face 85189 280 42597 27585 Face 85190 280 47680 42597 Face 85191 20161 42598 18916 Face 85192 42599 6454 42598 Face 85193 20161 42599 42598 Face 85194 20161 34990 42599 Face 85195 3964 42600 13713 Face 85196 3964 27961 42600 Face 85197 39555 42601 5519 Face 85198 39555 39150 42601 Face 85199 6631 42602 42776 Face 85200 6631 22150 42602 Face 85201 917 42603 28615 Face 85202 917 23288 42603 Face 85203 7517 42604 20912 Face 85204 7517 33422 42604 Face 85205 446 42605 24032 Face 85206 446 10997 42605 Face 85207 14192 42606 24242 Face 85208 14192 26408 42606 Face 85209 42608 42607 27714 Face 85210 4025 15410 42607 Face 85211 4025 42608 23871 Face 85212 4025 42607 42608 Face 85213 14529 42609 29616 Face 85214 42610 8758 42609 Face 85215 14529 42610 42609 Face 85216 14529 6407 42610 Face 85217 25134 42611 22270 Face 85218 25134 18794 42611 Face 85219 17835 42612 36702 Face 85220 17835 8902 42612 Face 85221 21100 42613 10054 Face 85222 21100 40885 42613 Face 85223 22346 42614 15586 Face 85224 22346 47825 42614 Face 85225 24673 42615 7535 Face 85226 24673 34052 42615 Face 85227 9908 42616 24862 Face 85228 9908 49140 42616 Face 85229 10631 42617 1894 Face 85230 10631 28659 42617 Face 85231 20241 42618 35207 Face 85232 20241 40056 42618 Face 85233 10970 42619 17031 Face 85234 10970 46045 42619 Face 85235 16603 42620 29666 Face 85236 16603 9641 42620 Face 85237 23869 42621 965 Face 85238 23869 40903 42621 Face 85239 9136 42622 44270 Face 85240 9136 18291 42622 Face 85241 15330 42623 38700 Face 85242 15330 41130 42623 Face 85243 18896 42624 31990 Face 85244 42625 8754 42624 Face 85245 18896 42625 42624 Face 85246 18896 32372 42625 Face 85247 4820 42626 5566 Face 85248 4820 35046 42626 Face 85249 44835 42627 15749 Face 85250 6929 12686 42627 Face 85251 113 42628 18060 Face 85252 113 22763 42628 Face 85253 44105 42629 27817 Face 85254 15924 15819 42629 Face 85255 5970 42630 18131 Face 85256 45787 8229 42630 Face 85257 12139 42631 12141 Face 85258 12139 22846 42631 Face 85259 12235 42632 43542 Face 85260 12235 41381 42632 Face 85261 12728 42633 30560 Face 85262 12728 11489 42633 Face 85263 21038 42634 35351 Face 85264 21038 49072 42634 Face 85265 13942 42635 15475 Face 85266 13942 28326 42635 Face 85267 36535 42636 10462 Face 85268 36535 9744 42636 Face 85269 15151 42637 28508 Face 85270 15151 18828 42637 Face 85271 15888 42638 11870 Face 85272 15888 42027 42638 Face 85273 24715 42639 8076 Face 85274 24715 902 42639 Face 85275 5251 42640 29977 Face 85276 5251 20870 42640 Face 85277 20026 42641 44814 Face 85278 20026 21018 42641 Face 85279 32896 42642 5633 Face 85280 32896 9374 42642 Face 85281 10630 42643 37624 Face 85282 10630 17678 42643 Face 85283 10772 42644 27276 Face 85284 10772 6370 42644 Face 85285 26042 42645 36111 Face 85286 26042 34673 42645 Face 85287 39383 42646 26024 Face 85288 39383 4166 42646 Face 85289 10518 42647 28153 Face 85290 10518 23757 42647 Face 85291 18931 42648 8084 Face 85292 18931 4398 42648 Face 85293 26755 42649 6345 Face 85294 26755 26756 42649 Face 85295 8171 42650 47721 Face 85296 8171 2377 42650 Face 85297 1875 42651 12428 Face 85298 1875 11207 42651 Face 85299 19740 42652 26524 Face 85300 19740 22560 42652 Face 85301 14746 42653 12758 Face 85302 14746 5971 42653 Face 85303 45159 42654 1339 Face 85304 3990 29453 42654 Face 85305 27273 42655 7890 Face 85306 27273 5775 42655 Face 85307 15231 42656 38831 Face 85308 15231 12945 42656 Face 85309 42656 42657 38831 Face 85310 42656 12945 42657 Face 85311 21129 42658 2593 Face 85312 21129 15430 42658 Face 85313 2427 42659 18283 Face 85314 42660 8961 42659 Face 85315 2427 42660 42659 Face 85316 2427 29886 42660 Face 85317 47529 42661 6420 Face 85318 47529 17187 42661 Face 85319 5100 42662 15303 Face 85320 5100 15304 42662 Face 85321 99 42663 16057 Face 85322 99 11346 42663 Face 85323 15940 42664 46963 Face 85324 15940 15941 42664 Face 85325 1771 42665 34369 Face 85326 1771 38992 42665 Face 85327 25750 42666 38975 Face 85328 25750 29198 42666 Face 85329 5059 42667 24888 Face 85330 5059 2654 42667 Face 85331 8512 42668 14227 Face 85332 8512 38595 42668 Face 85333 25891 42669 32674 Face 85334 25891 20617 42669 Face 85335 783 42670 32646 Face 85336 783 26846 42670 Face 85337 8446 42671 35378 Face 85338 8446 863 42671 Face 85339 18469 42672 22468 Face 85340 18469 6931 42672 Face 85341 25705 42673 45911 Face 85342 25705 28706 42673 Face 85343 9896 42674 28387 Face 85344 9896 38323 42674 Face 85345 14411 42675 22790 Face 85346 14411 1602 42675 Face 85347 31664 42676 37667 Face 85348 31664 19916 42676 Face 85349 5733 42677 22579 Face 85350 5733 25012 42677 Face 85351 20193 42678 24123 Face 85352 20193 32154 42678 Face 85353 8921 42679 2417 Face 85354 8921 34516 42679 Face 85355 6398 42680 29835 Face 85356 6398 48092 42680 Face 85357 36716 42681 8281 Face 85358 36716 3451 42681 Face 85359 49911 42682 23409 Face 85360 42683 41773 42682 Face 85361 6293 42683 42682 Face 85362 6293 31322 42683 Face 85363 8464 42684 29552 Face 85364 8464 27343 42684 Face 85365 26570 42685 35312 Face 85366 26570 14416 42685 Face 85367 430 42686 36457 Face 85368 430 36840 42686 Face 85369 15755 42687 1573 Face 85370 15755 34485 42687 Face 85371 12826 42688 30526 Face 85372 12826 41581 42688 Face 85373 20563 42689 39446 Face 85374 20563 3018 42689 Face 85375 18590 42690 18433 Face 85376 18590 38212 42690 Face 85377 18504 42691 32422 Face 85378 18504 43705 42691 Face 85379 3352 42692 36533 Face 85380 3352 13202 42692 Face 85381 25927 42693 13677 Face 85382 25927 21838 42693 Face 85383 18974 42694 18973 Face 85384 18974 9084 42694 Face 85385 17287 42695 26092 Face 85386 17287 38886 42695 Face 85387 2998 42696 15838 Face 85388 2998 12268 42696 Face 85389 6394 42697 28907 Face 85390 6394 19613 42697 Face 85391 11908 42698 5706 Face 85392 11908 29860 42698 Face 85393 17552 42699 10686 Face 85394 17552 2551 42699 Face 85395 19824 42700 43746 Face 85396 19824 35230 42700 Face 85397 20994 42701 34443 Face 85398 20994 15177 42701 Face 85399 22218 42702 30576 Face 85400 22218 31125 42702 Face 85401 29224 42703 38403 Face 85402 29224 48534 42703 Face 85403 4000 42704 29539 Face 85404 4000 20659 42704 Face 85405 12661 42705 12098 Face 85406 12661 14012 42705 Face 85407 9802 42706 5456 Face 85408 9802 8548 42706 Face 85409 42708 42707 34428 Face 85410 18607 29533 42707 Face 85411 18607 42708 48646 Face 85412 18607 42707 42708 Face 85413 3168 42709 32291 Face 85414 3168 14572 42709 Face 85415 8473 42710 36079 Face 85416 8473 35083 42710 Face 85417 24767 42711 37413 Face 85418 24767 39695 42711 Face 85419 2823 42712 14893 Face 85420 2823 35707 42712 Face 85421 43132 42713 17251 Face 85422 9526 10617 42713 Face 85423 8130 42714 15957 Face 85424 8130 39266 42714 Face 85425 6595 42715 34708 Face 85426 6595 44632 42715 Face 85427 13596 42716 49365 Face 85428 13596 29292 42716 Face 85429 42716 42717 23554 Face 85430 42716 29292 42717 Face 85431 12501 42718 32476 Face 85432 43938 3075 42718 Face 85433 11672 42719 36262 Face 85434 11672 695 42719 Face 85435 16611 42720 28900 Face 85436 16611 16612 42720 Face 85437 11831 42721 32694 Face 85438 11831 22182 42721 Face 85439 6266 42722 33355 Face 85440 6266 28742 42722 Face 85441 6626 42723 32494 Face 85442 48626 43629 42723 Face 85443 2354 42724 24912 Face 85444 2354 40184 42724 Face 85445 8647 42725 34177 Face 85446 8647 37339 42725 Face 85447 40296 42726 18295 Face 85448 40296 44454 42726 Face 85449 31721 42727 21840 Face 85450 31721 31724 42727 Face 85451 9053 42728 34578 Face 85452 9053 46080 42728 Face 85453 20801 42729 13884 Face 85454 20801 34573 42729 Face 85455 22863 42730 3841 Face 85456 22863 13913 42730 Face 85457 25320 42731 31381 Face 85458 25320 26599 42731 Face 85459 9901 42732 21911 Face 85460 9901 10987 42732 Face 85461 23249 42733 35306 Face 85462 23249 40314 42733 Face 85463 4259 42734 10167 Face 85464 4259 35913 42734 Face 85465 23607 42735 19304 Face 85466 23607 40830 42735 Face 85467 652 42736 32225 Face 85468 652 34963 42736 Face 85469 2992 42737 46616 Face 85470 2992 35599 42737 Face 85471 16711 42738 3666 Face 85472 16711 35310 42738 Face 85473 5057 42739 26355 Face 85474 5057 32272 42739 Face 85475 22660 42740 35419 Face 85476 22660 41669 42740 Face 85477 31778 42741 31777 Face 85478 31778 48719 42741 Face 85479 9351 42742 27384 Face 85480 47221 33694 42742 Face 85481 24333 42743 220 Face 85482 24333 9414 42743 Face 85483 16819 42744 23219 Face 85484 16819 41400 42744 Face 85485 13450 42745 32364 Face 85486 13450 1341 42745 Face 85487 6660 42746 26168 Face 85488 45589 32333 42746 Face 85489 14854 42747 5352 Face 85490 14854 22450 42747 Face 85491 2806 42748 2378 Face 85492 2806 35409 42748 Face 85493 49354 42749 27203 Face 85494 2787 28165 42749 Face 85495 6522 42750 42548 Face 85496 6522 29077 42750 Face 85497 9330 42751 42154 Face 85498 9330 23449 42751 Face 85499 19666 42752 3089 Face 85500 19666 44401 42752 Face 85501 7396 42753 29772 Face 85502 7396 15963 42753 Face 85503 3158 42754 45199 Face 85504 3158 42477 42754 Face 85505 11922 42755 27404 Face 85506 11922 46830 42755 Face 85507 12574 42756 39397 Face 85508 12574 15215 42756 Face 85509 49089 42757 18365 Face 85510 495 21279 42757 Face 85511 6247 42758 18053 Face 85512 6247 39688 42758 Face 85513 1454 42759 28873 Face 85514 1454 15547 42759 Face 85515 31923 42760 17246 Face 85516 31923 1042 42760 Face 85517 17875 42761 35695 Face 85518 17875 36652 42761 Face 85519 20828 42762 10815 Face 85520 20828 33475 42762 Face 85521 2794 42763 9256 Face 85522 2794 32164 42763 Face 85523 45731 42764 29450 Face 85524 13484 42272 42764 Face 85525 31794 42765 36664 Face 85526 31794 25760 42765 Face 85527 17250 42766 13826 Face 85528 17250 2450 42766 Face 85529 22606 42767 13265 Face 85530 22606 48755 42767 Face 85531 922 42768 18005 Face 85532 922 23408 42768 Face 85533 7552 42769 41960 Face 85534 7552 12939 42769 Face 85535 9240 42770 24779 Face 85536 9240 30147 42770 Face 85537 12850 42771 38652 Face 85538 12850 40764 42771 Face 85539 1025 42772 17530 Face 85540 1025 16369 42772 Face 85541 13772 42773 48795 Face 85542 13772 13771 42773 Face 85543 2559 42774 31834 Face 85544 2559 41891 42774 Face 85545 18024 42775 18646 Face 85546 18024 14708 42775 Face 85547 22709 42776 29730 Face 85548 22709 6631 42776 Face 85549 13117 42777 36831 Face 85550 13117 47895 42777 Face 85551 5065 42778 21814 Face 85552 5065 7170 42778 Face 85553 25118 42779 5954 Face 85554 25118 4670 42779 Face 85555 11437 42780 12877 Face 85556 11437 25594 42780 Face 85557 10521 42781 17601 Face 85558 10521 23641 42781 Face 85559 13598 42782 35972 Face 85560 13598 8601 42782 Face 85561 2510 42783 37787 Face 85562 2510 34323 42783 Face 85563 47138 42784 41065 Face 85564 23851 49961 42784 Face 85565 8117 42785 23844 Face 85566 8117 31476 42785 Face 85567 12007 42786 7187 Face 85568 12007 26590 42786 Face 85569 12859 42787 12860 Face 85570 12859 24599 42787 Face 85571 42789 42788 27161 Face 85572 43348 18493 42788 Face 85573 14425 42789 18552 Face 85574 14425 18493 43348 Face 85575 44543 42790 27508 Face 85576 42791 14813 42790 Face 85577 7240 42791 42790 Face 85578 7240 23193 42791 Face 85579 31382 42792 14434 Face 85580 31382 1946 42792 Face 85581 20321 42793 37841 Face 85582 20321 35696 42793 Face 85583 27209 42794 39067 Face 85584 27209 2472 42794 Face 85585 3242 42795 26214 Face 85586 3242 16664 42795 Face 85587 4091 42796 13894 Face 85588 4091 11070 42796 Face 85589 16345 42797 5279 Face 85590 16345 12070 42797 Face 85591 15277 42798 48233 Face 85592 15277 32392 42798 Face 85593 26112 42799 18865 Face 85594 26112 4375 42799 Face 85595 13551 42800 27053 Face 85596 13551 30108 42800 Face 85597 33539 42801 34308 Face 85598 33539 25173 42801 Face 85599 13103 42802 35315 Face 85600 13103 6381 42802 Face 85601 650 42803 38677 Face 85602 650 7586 42803 Face 85603 25660 42804 1363 Face 85604 25660 9938 42804 Face 85605 17889 42805 3139 Face 85606 17889 12181 42805 Face 85607 9118 42806 48657 Face 85608 9118 26934 42806 Face 85609 6821 42807 48863 Face 85610 6821 5672 42807 Face 85611 12886 42808 27858 Face 85612 12886 34683 42808 Face 85613 20535 42809 10281 Face 85614 20535 34573 42809 Face 85615 17347 42810 31862 Face 85616 17347 29066 42810 Face 85617 10510 42811 41660 Face 85618 10510 23269 42811 Face 85619 7163 42812 36704 Face 85620 7163 29279 42812 Face 85621 4567 42813 36636 Face 85622 4567 32885 42813 Face 85623 42815 42814 938 Face 85624 27301 25547 42814 Face 85625 27301 42815 27300 Face 85626 27301 42814 42815 Face 85627 49338 42816 12182 Face 85628 42817 22800 42816 Face 85629 49338 42817 42816 Face 85630 15900 12459 42817 Face 85631 1582 42818 8373 Face 85632 1582 19983 42818 Face 85633 11406 42819 31563 Face 85634 11406 33470 42819 Face 85635 15719 42820 21549 Face 85636 15719 5091 42820 Face 85637 3544 42821 44164 Face 85638 3544 37397 42821 Face 85639 12905 42822 15137 Face 85640 12905 14537 42822 Face 85641 14521 42823 6832 Face 85642 14521 9144 42823 Face 85643 14110 42824 40638 Face 85644 14110 4942 42824 Face 85645 20309 42825 37304 Face 85646 20309 3823 42825 Face 85647 7143 42826 29621 Face 85648 7143 34455 42826 Face 85649 1966 42827 35056 Face 85650 1966 23481 42827 Face 85651 7356 42828 36507 Face 85652 7356 31817 42828 Face 85653 3503 42829 13762 Face 85654 3503 18693 42829 Face 85655 23270 42830 29864 Face 85656 23270 38333 42830 Face 85657 17146 42831 24684 Face 85658 17146 4509 42831 Face 85659 16 42832 13053 Face 85660 16 40682 42832 Face 85661 35852 42833 45822 Face 85662 35852 23262 42833 Face 85663 9867 42834 20455 Face 85664 9867 21829 42834 Face 85665 9867 42835 21829 Face 85666 9867 2855 42835 Face 85667 12347 42836 3239 Face 85668 12347 49490 42836 Face 85669 8940 42837 22446 Face 85670 8940 46430 42837 Face 85671 18634 42838 18635 Face 85672 18634 10992 42838 Face 85673 18391 42839 12143 Face 85674 18391 8967 42839 Face 85675 17248 42840 34000 Face 85676 17248 27875 42840 Face 85677 9611 42841 14809 Face 85678 9611 24751 42841 Face 85679 4757 42842 37271 Face 85680 4757 10282 42842 Face 85681 33236 42843 1815 Face 85682 33236 32682 42843 Face 85683 3208 42844 33249 Face 85684 3208 32093 42844 Face 85685 1528 42845 35620 Face 85686 1528 42846 42845 Face 85687 40509 42846 39920 Face 85688 40509 42847 42846 Face 85689 42845 42847 40509 Face 85690 42845 42846 42847 Face 85691 29548 42848 10229 Face 85692 29548 1523 42848 Face 85693 41228 42849 4753 Face 85694 41228 979 42849 Face 85695 24372 42850 21086 Face 85696 24372 27144 42850 Face 85697 5579 42851 22320 Face 85698 5579 12280 42851 Face 85699 749 42852 46370 Face 85700 749 36281 42852 Face 85701 749 42853 36281 Face 85702 749 12849 42853 Face 85703 46343 42854 9142 Face 85704 2753 40125 42854 Face 85705 3506 42855 15086 Face 85706 3506 42269 42855 Face 85707 14611 42856 29575 Face 85708 14611 44749 42856 Face 85709 7212 42857 47656 Face 85710 7212 15409 42857 Face 85711 23378 42858 15258 Face 85712 23378 30039 42858 Face 85713 23363 42859 35682 Face 85714 23363 3425 42859 Face 85715 43157 42860 23861 Face 85716 936 15497 42860 Face 85717 14656 42861 28713 Face 85718 14656 39302 42861 Face 85719 7061 42862 14714 Face 85720 7061 36065 42862 Face 85721 18756 42863 20362 Face 85722 18756 32491 42863 Face 85723 25313 42864 6635 Face 85724 25313 1457 42864 Face 85725 18076 42865 1837 Face 85726 18076 18455 42865 Face 85727 23916 42866 34600 Face 85728 23916 7493 42866 Face 85729 7055 42867 51 Face 85730 7055 26245 42867 Face 85731 16067 42868 23060 Face 85732 16067 11134 42868 Face 85733 8814 42869 24394 Face 85734 8814 39526 42869 Face 85735 22543 42870 117 Face 85736 22543 36663 42870 Face 85737 8908 42871 27472 Face 85738 42872 46055 42871 Face 85739 8908 42872 42871 Face 85740 8908 13525 42872 Face 85741 36895 42873 20361 Face 85742 36895 36667 42873 Face 85743 2957 42874 31825 Face 85744 2957 11140 42874 Face 85745 42876 42875 968 Face 85746 1931 41748 42875 Face 85747 1931 42876 11786 Face 85748 1931 42875 42876 Face 85749 10143 42877 3423 Face 85750 10143 17755 42877 Face 85751 7597 42878 30663 Face 85752 7597 34552 42878 Face 85753 3897 42879 23314 Face 85754 47173 16929 42879 Face 85755 25306 42880 21526 Face 85756 25306 4038 42880 Face 85757 12203 42881 74 Face 85758 12203 45799 42881 Face 85759 4819 42882 32430 Face 85760 4819 32746 42882 Face 85761 14139 42883 4089 Face 85762 14139 30983 42883 Face 85763 11734 42884 35113 Face 85764 11734 38263 42884 Face 85765 3704 42885 23046 Face 85766 3704 25401 42885 Face 85767 33362 42886 34490 Face 85768 33362 23660 42886 Face 85769 21029 42887 37888 Face 85770 21029 48186 42887 Face 85771 13604 42888 26301 Face 85772 45900 8230 42888 Face 85773 22372 42889 29350 Face 85774 22372 41603 42889 Face 85775 12642 42890 43886 Face 85776 12642 12509 42890 Face 85777 25197 42891 40293 Face 85778 25197 48622 42891 Face 85779 14740 42892 42370 Face 85780 14740 32051 42892 Face 85781 42894 42893 46754 Face 85782 4188 18100 42893 Face 85783 4188 42894 37826 Face 85784 4188 42893 42894 Face 85785 16099 42895 35341 Face 85786 16099 41031 42895 Face 85787 25560 42896 34045 Face 85788 25560 14125 42896 Face 85789 992 42897 22331 Face 85790 992 46591 42897 Face 85791 27931 42898 32958 Face 85792 27931 3651 42898 Face 85793 12336 42899 25885 Face 85794 12336 2461 42899 Face 85795 96 42900 5089 Face 85796 44572 9502 42900 Face 85797 15023 42901 26161 Face 85798 15023 40104 42901 Face 85799 16950 42902 39287 Face 85800 16950 705 42902 Face 85801 3539 42903 34399 Face 85802 3539 33329 42903 Face 85803 25189 42904 7461 Face 85804 25189 30022 42904 Face 85805 8534 42905 25773 Face 85806 8534 7890 42905 Face 85807 10635 42906 3156 Face 85808 10635 41005 42906 Face 85809 267 42907 37185 Face 85810 267 3673 42907 Face 85811 18814 42908 2056 Face 85812 42914 46772 42908 Face 85813 15043 42909 32799 Face 85814 15043 30802 42909 Face 85815 27799 42910 9551 Face 85816 27799 14272 42910 Face 85817 20923 42911 20922 Face 85818 20923 23312 42911 Face 85819 5662 42912 27839 Face 85820 5662 49480 42912 Face 85821 22793 42913 44241 Face 85822 22793 44207 42913 Face 85823 18814 42914 42908 Face 85824 18814 8254 42914 Face 85825 4611 42915 16460 Face 85826 45382 27866 42915 Face 85827 6360 42916 24348 Face 85828 6360 16677 42916 Face 85829 34941 42917 21386 Face 85830 34941 33472 42917 Face 85831 23506 42918 3515 Face 85832 23506 27774 42918 Face 85833 19439 42919 48804 Face 85834 19439 19990 42919 Face 85835 42921 42920 9959 Face 85836 37560 43427 42920 Face 85837 37560 42921 49220 Face 85838 37560 42920 42921 Face 85839 13935 42922 46146 Face 85840 13935 30316 42922 Face 85841 7638 42923 31917 Face 85842 7638 29282 42923 Face 85843 27373 42924 11756 Face 85844 27373 38104 42924 Face 85845 24363 42925 6993 Face 85846 24363 6463 42925 Face 85847 2478 42926 36027 Face 85848 2478 23867 42926 Face 85849 27904 42927 45950 Face 85850 27904 14616 42927 Face 85851 4805 42928 19081 Face 85852 42929 30666 42928 Face 85853 4805 42929 42928 Face 85854 4805 11452 42929 Face 85855 2070 42930 25031 Face 85856 2070 5918 42930 Face 85857 46510 42931 27998 Face 85858 17925 36683 42931 Face 85859 6223 42932 26390 Face 85860 6223 29823 42932 Face 85861 3139 42933 7232 Face 85862 3139 38340 42933 Face 85863 42935 42934 5247 Face 85864 11434 3300 42934 Face 85865 11434 42935 24515 Face 85866 11434 42934 42935 Face 85867 1688 42936 13098 Face 85868 1688 30282 42936 Face 85869 13133 42937 40386 Face 85870 13133 43024 42937 Face 85871 2264 42938 15170 Face 85872 2264 16651 42938 Face 85873 2264 42939 24091 Face 85874 2264 15170 42939 Face 85875 2454 42940 28247 Face 85876 2454 37298 42940 Face 85877 15094 42941 11540 Face 85878 15094 46591 42941 Face 85879 885 42942 27234 Face 85880 885 40303 42942 Face 85881 21026 42943 20029 Face 85882 21026 13114 42943 Face 85883 6156 42944 46875 Face 85884 6156 15968 42944 Face 85885 16068 42945 8134 Face 85886 16068 3241 42945 Face 85887 17892 42946 48803 Face 85888 17892 14467 42946 Face 85889 10595 42947 12594 Face 85890 10595 2880 42947 Face 85891 29964 42948 9127 Face 85892 29964 864 42948 Face 85893 6335 42949 32468 Face 85894 6335 16790 42949 Face 85895 4088 42950 33312 Face 85896 4088 25747 42950 Face 85897 16160 42951 1923 Face 85898 16160 9034 42951 Face 85899 5821 42952 35636 Face 85900 5821 13854 42952 Face 85901 1624 42953 31668 Face 85902 1624 33489 42953 Face 85903 1758 42954 25567 Face 85904 1758 31886 42954 Face 85905 18460 42955 27793 Face 85906 18460 40472 42955 Face 85907 2312 42956 19248 Face 85908 2312 28067 42956 Face 85909 10611 42957 29987 Face 85910 10611 23497 42957 Face 85911 42959 42958 30901 Face 85912 14574 4040 42958 Face 85913 14574 42959 31882 Face 85914 14574 42958 42959 Face 85915 15174 42960 40763 Face 85916 15174 9641 42960 Face 85917 590 42961 6680 Face 85918 590 15325 42961 Face 85919 26797 42962 26795 Face 85920 26797 4372 42962 Face 85921 25394 42963 40375 Face 85922 25394 41299 42963 Face 85923 42965 42964 8439 Face 85924 6601 36075 42964 Face 85925 6601 42965 27094 Face 85926 6601 42964 42965 Face 85927 5024 42966 17814 Face 85928 5024 18186 42966 Face 85929 4401 42967 33817 Face 85930 4401 4402 42967 Face 85931 15538 42968 28477 Face 85932 15538 2303 42968 Face 85933 29262 42969 24875 Face 85934 29262 11577 42969 Face 85935 17817 42970 35347 Face 85936 17817 28148 42970 Face 85937 27987 42971 34988 Face 85938 27987 27988 42971 Face 85939 17396 42972 11825 Face 85940 17396 32928 42972 Face 85941 9291 42973 23555 Face 85942 9291 41779 42973 Face 85943 31992 42974 24896 Face 85944 31992 31993 42974 Face 85945 9972 42975 35942 Face 85946 9972 33121 42975 Face 85947 4331 42976 27877 Face 85948 4331 16397 42976 Face 85949 42978 42977 28297 Face 85950 9570 28118 42977 Face 85951 9570 42978 30369 Face 85952 9570 42977 42978 Face 85953 42980 42979 31719 Face 85954 42980 25683 42979 Face 85955 4721 42980 41954 Face 85956 4721 25683 42980 Face 85957 1594 42981 8755 Face 85958 1594 27434 42981 Face 85959 549 42982 44503 Face 85960 549 41082 42982 Face 85961 17534 42983 17018 Face 85962 17534 21393 42983 Face 85963 5436 42984 23402 Face 85964 5436 10925 42984 Face 85965 669 42985 36809 Face 85966 42986 13952 42985 Face 85967 669 42986 42985 Face 85968 669 26884 42986 Face 85969 42988 42987 33613 Face 85970 12609 1579 42987 Face 85971 12609 42988 15604 Face 85972 12609 42987 42988 Face 85973 2124 42989 17617 Face 85974 2124 33599 42989 Face 85975 5540 42990 36059 Face 85976 5540 47551 42990 Face 85977 12744 42991 18640 Face 85978 12744 38157 42991 Face 85979 46934 42992 32475 Face 85980 46934 16015 42992 Face 85981 10236 42993 24508 Face 85982 10236 15184 42993 Face 85983 33729 42994 28997 Face 85984 33729 15441 42994 Face 85985 7938 42995 6496 Face 85986 7938 31473 42995 Face 85987 12847 42996 37996 Face 85988 12847 20562 42996 Face 85989 26295 42997 6908 Face 85990 26295 17990 42997 Face 85991 308 42998 19022 Face 85992 308 7229 42998 Face 85993 9242 42999 19583 Face 85994 9242 32993 42999 Face 85995 17542 43000 22721 Face 85996 17542 9029 43000 Face 85997 18030 43001 35616 Face 85998 18030 6272 43001 Face 85999 27864 43002 3090 Face 86000 27864 13763 43002 Face 86001 43002 43003 47603 Face 86002 43002 13763 43003 Face 86003 43003 43004 47603 Face 86004 43003 13763 43004 Face 86005 28384 43005 11444 Face 86006 28384 20083 43005 Face 86007 6375 43006 34185 Face 86008 6375 12292 43006 Face 86009 16233 43007 3399 Face 86010 16233 15641 43007 Face 86011 1113 43008 24065 Face 86012 1113 29105 43008 Face 86013 8549 43009 36750 Face 86014 8549 19464 43009 Face 86015 2123 43010 37663 Face 86016 2123 13322 43010 Face 86017 46171 43011 26122 Face 86018 46171 11854 43011 Face 86019 23182 43012 5363 Face 86020 23182 42168 43012 Face 86021 23452 43013 18816 Face 86022 23452 11396 43013 Face 86023 8525 43014 43447 Face 86024 8525 41465 43014 Face 86025 19815 43015 29783 Face 86026 19815 21713 43015 Face 86027 30628 43016 8078 Face 86028 30628 1514 43016 Face 86029 27040 43017 6482 Face 86030 27040 46886 43017 Face 86031 2370 43018 34164 Face 86032 2370 30999 43018 Face 86033 28998 43019 44295 Face 86034 28998 10098 43019 Face 86035 16230 43020 33559 Face 86036 16230 26321 43020 Face 86037 8483 43021 27691 Face 86038 8483 15373 43021 Face 86039 24901 43022 44739 Face 86040 24901 36720 43022 Face 86041 20159 43023 2538 Face 86042 20159 16161 43023 Face 86043 13954 43024 34772 Face 86044 13954 42937 43024 Face 86045 8015 43025 30401 Face 86046 8015 2561 43025 Face 86047 13491 43026 45812 Face 86048 13491 28537 43026 Face 86049 1323 43027 31051 Face 86050 1323 27055 43027 Face 86051 17415 43028 35797 Face 86052 17415 22055 43028 Face 86053 12474 43029 5658 Face 86054 12474 3962 43029 Face 86055 1184 43030 49612 Face 86056 1184 39230 43030 Face 86057 10421 43031 4920 Face 86058 10421 33561 43031 Face 86059 14612 43032 1571 Face 86060 14612 29900 43032 Face 86061 2544 43033 43143 Face 86062 2544 17493 43033 Face 86063 14715 43034 489 Face 86064 14715 37356 43034 Face 86065 3193 43035 11054 Face 86066 3193 15877 43035 Face 86067 9459 43036 29363 Face 86068 9459 22446 43036 Face 86069 4433 43037 8104 Face 86070 4433 30826 43037 Face 86071 31984 43038 15009 Face 86072 31984 48366 43038 Face 86073 26508 43039 27423 Face 86074 26508 9281 43039 Face 86075 2564 43040 43647 Face 86076 2564 13407 43040 Face 86077 26924 43041 10459 Face 86078 26924 11892 43041 Face 86079 4940 43042 17907 Face 86080 4940 12707 43042 Face 86081 26787 43043 3171 Face 86082 26787 15994 43043 Face 86083 32985 43044 34912 Face 86084 32985 34913 43044 Face 86085 15463 43045 9968 Face 86086 43046 18872 43045 Face 86087 15463 43046 43045 Face 86088 15463 30601 43046 Face 86089 8062 43047 17589 Face 86090 8062 28914 43047 Face 86091 17539 43048 29769 Face 86092 17539 1272 43048 Face 86093 948 43049 20909 Face 86094 948 17136 43049 Face 86095 14487 43050 34717 Face 86096 14487 47519 43050 Face 86097 49551 43051 9741 Face 86098 3859 32554 43051 Face 86099 31326 43052 20357 Face 86100 31326 31324 43052 Face 86101 5907 43053 35611 Face 86102 5907 24489 43053 Face 86103 14451 43054 17512 Face 86104 14451 20862 43054 Face 86105 48344 43055 18076 Face 86106 5666 30732 43055 Face 86107 27030 43056 3343 Face 86108 27030 23708 43056 Face 86109 26751 43057 1066 Face 86110 26751 7004 43057 Face 86111 16806 43058 22731 Face 86112 16806 36983 43058 Face 86113 13093 43059 9244 Face 86114 13093 38778 43059 Face 86115 36845 43060 25534 Face 86116 36845 13635 43060 Face 86117 14663 43061 48042 Face 86118 14663 4628 43061 Face 86119 5512 43062 25370 Face 86120 5512 19215 43062 Face 86121 4108 43063 13332 Face 86122 4108 9790 43063 Face 86123 22029 43064 45484 Face 86124 22029 43140 43064 Face 86125 18622 43065 4826 Face 86126 18622 30248 43065 Face 86127 15313 43066 13717 Face 86128 15313 19917 43066 Face 86129 4469 43067 22025 Face 86130 4469 33214 43067 Face 86131 8561 43068 21095 Face 86132 8561 2525 43068 Face 86133 14297 43069 24297 Face 86134 14297 27809 43069 Face 86135 8445 43070 24494 Face 86136 8445 3956 43070 Face 86137 17045 43071 26908 Face 86138 17045 31849 43071 Face 86139 1650 43072 25905 Face 86140 1650 16615 43072 Face 86141 27001 43073 3175 Face 86142 27001 15227 43073 Face 86143 9905 43074 21260 Face 86144 9905 47068 43074 Face 86145 26129 43075 26579 Face 86146 26129 9675 43075 Face 86147 21527 43076 42192 Face 86148 43503 37125 43076 Face 86149 10985 43077 17676 Face 86150 10985 891 43077 Face 86151 1868 43078 14237 Face 86152 43079 8847 43078 Face 86153 1868 43079 43078 Face 86154 1868 31510 43079 Face 86155 618 43080 25168 Face 86156 48224 4669 43080 Face 86157 14077 43081 1071 Face 86158 14077 24570 43081 Face 86159 19447 43082 9808 Face 86160 19447 2879 43082 Face 86161 12876 43083 12134 Face 86162 12876 31989 43083 Face 86163 12049 43084 25518 Face 86164 46197 35160 43084 Face 86165 5624 43085 25935 Face 86166 5624 27486 43085 Face 86167 13762 43086 41891 Face 86168 13762 47363 43086 Face 86169 6183 43087 24836 Face 86170 6183 41365 43087 Face 86171 9335 43088 23870 Face 86172 9335 29272 43088 Face 86173 16123 43089 31249 Face 86174 16123 9580 43089 Face 86175 139 43090 15854 Face 86176 139 9008 43090 Face 86177 467 43091 16848 Face 86178 467 33156 43091 Face 86179 7140 43092 33015 Face 86180 7140 20751 43092 Face 86181 11204 43093 37631 Face 86182 11204 3460 43093 Face 86183 6616 43094 25673 Face 86184 43095 18150 43094 Face 86185 6616 43095 43094 Face 86186 6616 5603 43095 Face 86187 15892 43096 27652 Face 86188 15892 7899 43096 Face 86189 460 43097 34852 Face 86190 47961 12791 43097 Face 86191 24813 43098 12687 Face 86192 24813 19792 43098 Face 86193 43100 43099 30288 Face 86194 6979 38882 43099 Face 86195 6979 43100 24683 Face 86196 6979 43099 43100 Face 86197 14182 43101 47678 Face 86198 14182 38907 43101 Face 86199 28605 43102 35842 Face 86200 28605 36972 43102 Face 86201 1942 43103 20531 Face 86202 1942 33957 43103 Face 86203 2993 43104 23748 Face 86204 2993 34675 43104 Face 86205 569 43105 41171 Face 86206 569 14050 43105 Face 86207 8051 43106 35647 Face 86208 8051 34916 43106 Face 86209 7374 43107 28448 Face 86210 7374 37141 43107 Face 86211 10254 43108 39469 Face 86212 10254 35476 43108 Face 86213 3121 43109 5910 Face 86214 3121 385 43109 Face 86215 1756 43110 45321 Face 86216 1756 10757 43110 Face 86217 26404 43111 36078 Face 86218 26404 44245 43111 Face 86219 36180 43112 19762 Face 86220 36180 8538 43112 Face 86221 9191 43113 39132 Face 86222 9191 3227 43113 Face 86223 1576 43114 48746 Face 86224 1576 32341 43114 Face 86225 20141 43115 6792 Face 86226 20141 30176 43115 Face 86227 12960 43116 20806 Face 86228 12960 9415 43116 Face 86229 27348 43117 19212 Face 86230 27348 23392 43117 Face 86231 14622 43118 6737 Face 86232 14622 12648 43118 Face 86233 25273 44856 5591 Face 86234 25273 3633 43119 Face 86235 9059 43120 34080 Face 86236 9059 23805 43120 Face 86237 33160 43121 18378 Face 86238 33160 15702 43121 Face 86239 2156 43122 38523 Face 86240 44975 22264 43122 Face 86241 6568 43123 30369 Face 86242 6568 10134 43123 Face 86243 18688 43124 24586 Face 86244 18688 9939 43124 Face 86245 5463 43125 10361 Face 86246 5463 34879 43125 Face 86247 1914 43126 33465 Face 86248 1914 25293 43126 Face 86249 2927 43127 9507 Face 86250 2927 25030 43127 Face 86251 2385 43128 9301 Face 86252 2385 7684 43128 Face 86253 22730 43129 9090 Face 86254 22730 22880 43129 Face 86255 25325 43130 37612 Face 86256 25325 15693 43130 Face 86257 21745 43131 31600 Face 86258 21745 27061 43131 Face 86259 9526 43132 38702 Face 86260 9526 42713 43132 Face 86261 4051 43133 29248 Face 86262 4051 31838 43133 Face 86263 18276 43134 41198 Face 86264 18276 48816 43134 Face 86265 24036 43135 8632 Face 86266 24036 31429 43135 Face 86267 10831 43136 939 Face 86268 10831 2815 43136 Face 86269 17180 43137 13049 Face 86270 17180 43252 43137 Face 86271 21468 43138 45212 Face 86272 21468 14095 43138 Face 86273 45481 43139 1389 Face 86274 5015 27132 43139 Face 86275 10684 43140 7950 Face 86276 10684 43064 43140 Face 86277 12619 43141 23131 Face 86278 12619 38495 43141 Face 86279 12525 43142 22624 Face 86280 12525 26013 43142 Face 86281 15142 43143 8161 Face 86282 15142 2544 43143 Face 86283 16506 43144 25777 Face 86284 47523 10657 43144 Face 86285 4979 43145 14068 Face 86286 4979 16080 43145 Face 86287 16671 43146 44234 Face 86288 16671 40824 43146 Face 86289 21304 43147 3290 Face 86290 21304 4816 43147 Face 86291 8353 43148 11884 Face 86292 8353 28938 43148 Face 86293 7985 43149 15355 Face 86294 7985 35727 43149 Face 86295 1654 43150 24391 Face 86296 1654 40262 43150 Face 86297 28166 43151 8984 Face 86298 28166 33139 43151 Face 86299 43153 43152 18868 Face 86300 13955 22026 43152 Face 86301 13955 43153 9465 Face 86302 13955 43152 43153 Face 86303 10726 43154 17415 Face 86304 10726 6576 43154 Face 86305 13137 43155 21043 Face 86306 13137 27349 43155 Face 86307 936 43156 42397 Face 86308 936 28314 43156 Face 86309 936 43157 28314 Face 86310 936 42860 43157 Face 86311 45085 43158 12337 Face 86312 5324 18202 43158 Face 86313 12910 43159 37979 Face 86314 12910 37977 43159 Face 86315 22991 43160 2026 Face 86316 22991 10910 43160 Face 86317 3559 43161 18402 Face 86318 3559 46673 43161 Face 86319 18781 43162 43715 Face 86320 18781 25768 43162 Face 86321 21345 43163 49098 Face 86322 21345 33689 43163 Face 86323 32959 43164 37986 Face 86324 32959 16644 43164 Face 86325 9367 43165 36313 Face 86326 9367 35588 43165 Face 86327 21753 43166 12593 Face 86328 21753 33451 43166 Face 86329 43168 43167 27967 Face 86330 13801 22046 43167 Face 86331 44664 43168 24206 Face 86332 13801 43167 43168 Face 86333 37089 43169 12011 Face 86334 37089 36993 43169 Face 86335 48325 43170 5693 Face 86336 15396 5960 43170 Face 86337 25191 43171 2287 Face 86338 43172 31017 43171 Face 86339 25191 43172 43171 Face 86340 25191 46907 43172 Face 86341 3739 43173 33341 Face 86342 3739 22435 43173 Face 86343 23751 43174 37724 Face 86344 23751 23752 43174 Face 86345 1376 43175 37172 Face 86346 1376 48163 43175 Face 86347 19930 43176 33133 Face 86348 19930 39726 43176 Face 86349 10934 43177 36299 Face 86350 10934 22873 43177 Face 86351 13107 43178 34661 Face 86352 44517 25866 43178 Face 86353 3144 43179 17594 Face 86354 3144 47742 43179 Face 86355 11586 43180 20248 Face 86356 11586 24617 43180 Face 86357 16870 43181 41714 Face 86358 16870 28990 43181 Face 86359 28418 43182 16644 Face 86360 28418 28419 43182 Face 86361 10671 43183 3274 Face 86362 10671 36145 43183 Face 86363 22105 43184 5686 Face 86364 22105 497 43184 Face 86365 8667 43185 13699 Face 86366 8667 31000 43185 Face 86367 24196 43186 15430 Face 86368 24196 1417 43186 Face 86369 1764 43187 21499 Face 86370 1764 15200 43187 Face 86371 23072 43188 23073 Face 86372 23072 24925 43188 Face 86373 28706 43189 26992 Face 86374 28706 25705 43189 Face 86375 5107 43190 22062 Face 86376 5107 21668 43190 Face 86377 871 43191 14498 Face 86378 871 34366 43191 Face 86379 1657 43192 26073 Face 86380 1657 13550 43192 Face 86381 3864 43193 16773 Face 86382 3864 27080 43193 Face 86383 6835 43194 27288 Face 86384 6835 22017 43194 Face 86385 23099 43195 34560 Face 86386 23099 3577 43195 Face 86387 9019 43196 44086 Face 86388 9019 32581 43196 Face 86389 2922 43197 32483 Face 86390 2922 28021 43197 Face 86391 13327 43198 40134 Face 86392 13327 8156 43198 Face 86393 26728 43199 2358 Face 86394 26728 36020 43199 Face 86395 1504 43200 47621 Face 86396 1504 47108 43200 Face 86397 46328 43201 15943 Face 86398 23552 38761 43201 Face 86399 11135 43202 36347 Face 86400 11135 3237 43202 Face 86401 47763 43203 16517 Face 86402 3940 47287 43203 Face 86403 2756 43204 20701 Face 86404 2756 30658 43204 Face 86405 12057 43205 3953 Face 86406 12057 30764 43205 Face 86407 6571 43206 13292 Face 86408 6571 36758 43206 Face 86409 11286 43207 8344 Face 86410 11286 33073 43207 Face 86411 20040 43208 8787 Face 86412 20040 38196 43208 Face 86413 19748 43209 6721 Face 86414 19748 48219 43209 Face 86415 2806 43210 35409 Face 86416 2806 44527 43210 Face 86417 18835 43211 34921 Face 86418 18835 28849 43211 Face 86419 38541 43212 46507 Face 86420 38541 6252 43212 Face 86421 15442 43213 28458 Face 86422 15442 15443 43213 Face 86423 1064 43214 23814 Face 86424 1064 31635 43214 Face 86425 43216 43215 10776 Face 86426 7763 28865 43215 Face 86427 7763 43216 11938 Face 86428 7763 43215 43216 Face 86429 23846 43217 8249 Face 86430 23846 23402 43217 Face 86431 43220 43218 26173 Face 86432 30445 11372 43218 Face 86433 30445 43219 47735 Face 86434 43220 26172 43219 Face 86435 30445 43220 43219 Face 86436 30445 43218 43220 Face 86437 4990 43221 25114 Face 86438 46381 6954 43221 Face 86439 823 43222 47427 Face 86440 823 36777 43222 Face 86441 8058 43223 40390 Face 86442 8058 20863 43223 Face 86443 16953 43224 16895 Face 86444 16953 25706 43224 Face 86445 13068 43225 28560 Face 86446 13068 507 43225 Face 86447 18953 43226 26355 Face 86448 18953 1872 43226 Face 86449 35674 43227 5365 Face 86450 35674 6987 43227 Face 86451 16192 43228 42311 Face 86452 16192 9989 43228 Face 86453 23873 43229 23872 Face 86454 23873 952 43229 Face 86455 15977 43230 28354 Face 86456 43231 19894 43230 Face 86457 15977 43231 43230 Face 86458 15977 1632 43231 Face 86459 11175 43232 9803 Face 86460 11175 26525 43232 Face 86461 8687 43233 11475 Face 86462 8687 21127 43233 Face 86463 8687 43234 41035 Face 86464 8687 32763 43234 Face 86465 3436 43235 40080 Face 86466 3436 31961 43235 Face 86467 18685 43236 26703 Face 86468 18685 17857 43236 Face 86469 21809 43237 14821 Face 86470 21809 7013 43237 Face 86471 16434 43238 25597 Face 86472 16434 31073 43238 Face 86473 12092 43239 20810 Face 86474 12092 8037 43239 Face 86475 13671 43240 41808 Face 86476 13671 37977 43240 Face 86477 763 43241 18657 Face 86478 763 41407 43241 Face 86479 20819 43242 11760 Face 86480 20819 24422 43242 Face 86481 20664 43243 29114 Face 86482 20664 7591 43243 Face 86483 20922 43244 25901 Face 86484 43245 25088 43244 Face 86485 20922 43245 43244 Face 86486 20922 42911 43245 Face 86487 13284 43246 5490 Face 86488 13284 22057 43246 Face 86489 1849 43247 32909 Face 86490 1849 46416 43247 Face 86491 6655 43248 1880 Face 86492 6655 39161 43248 Face 86493 1970 43249 15104 Face 86494 1970 26667 43249 Face 86495 4836 43250 35719 Face 86496 4836 41601 43250 Face 86497 6937 43251 32524 Face 86498 6937 42024 43251 Face 86499 8155 43252 42315 Face 86500 8155 43137 43252 Face 86501 1794 43253 39161 Face 86502 1794 7940 43253 Face 86503 8418 43254 41494 Face 86504 8418 16677 43254 Face 86505 16700 43255 40235 Face 86506 16700 34138 43255 Face 86507 10811 43256 46683 Face 86508 10811 37099 43256 Face 86509 8030 43257 28613 Face 86510 8030 47650 43257 Face 86511 49094 43258 30015 Face 86512 9360 26190 43258 Face 86513 9186 43259 48505 Face 86514 9186 26448 43259 Face 86515 2138 43260 27766 Face 86516 2138 13241 43260 Face 86517 13435 43261 38275 Face 86518 13435 9276 43261 Face 86519 49170 43262 29995 Face 86520 13243 6736 43262 Face 86521 8099 43263 41056 Face 86522 8099 6317 43263 Face 86523 9320 43264 42528 Face 86524 9320 3193 43264 Face 86525 20772 43265 37620 Face 86526 20772 20511 43265 Face 86527 2269 43266 39411 Face 86528 2269 15189 43266 Face 86529 19295 43267 29207 Face 86530 19295 28992 43267 Face 86531 5010 43268 27047 Face 86532 5010 15612 43268 Face 86533 2610 43269 17667 Face 86534 43270 20610 43269 Face 86535 2610 43270 43269 Face 86536 2610 35639 43270 Face 86537 21251 43271 8819 Face 86538 21251 22943 43271 Face 86539 10221 43272 987 Face 86540 10221 23856 43272 Face 86541 33948 43273 22635 Face 86542 33948 32841 43273 Face 86543 8751 43274 46028 Face 86544 8751 33418 43274 Face 86545 20492 43275 2092 Face 86546 20492 41016 43275 Face 86547 22630 43276 10132 Face 86548 22630 20771 43276 Face 86549 46067 43277 2432 Face 86550 7999 5085 43277 Face 86551 3403 43278 41575 Face 86552 3403 21314 43278 Face 86553 2941 43279 16756 Face 86554 2941 11145 43279 Face 86555 7539 43280 48246 Face 86556 43281 3387 43280 Face 86557 7539 43281 43280 Face 86558 43282 3387 43281 Face 86559 7539 43282 43281 Face 86560 7539 18223 43282 Face 86561 62 43283 25878 Face 86562 62 41297 43283 Face 86563 18018 43284 25104 Face 86564 18018 6101 43284 Face 86565 33404 43285 34408 Face 86566 33404 18335 43285 Face 86567 29879 43286 18929 Face 86568 29879 4408 43286 Face 86569 23375 43287 3688 Face 86570 23375 17985 43287 Face 86571 68 43288 40943 Face 86572 68 25861 43288 Face 86573 3364 43289 357 Face 86574 3364 35131 43289 Face 86575 11288 43290 35254 Face 86576 11288 12443 43290 Face 86577 19103 43291 2088 Face 86578 19103 40594 43291 Face 86579 3089 43292 23494 Face 86580 3089 41343 43292 Face 86581 27508 43293 27507 Face 86582 27508 11767 43293 Face 86583 376 43294 4504 Face 86584 376 40394 43294 Face 86585 31420 43295 17915 Face 86586 31420 4032 43295 Face 86587 11604 43296 21175 Face 86588 11604 49256 43296 Face 86589 43296 43297 21175 Face 86590 43296 32252 43297 Face 86591 28330 43298 13710 Face 86592 28330 6097 43298 Face 86593 16839 43299 25587 Face 86594 16839 5902 43299 Face 86595 17351 43300 20983 Face 86596 17351 24104 43300 Face 86597 3146 49147 30236 Face 86598 3146 32119 43301 Face 86599 43626 43302 33168 Face 86600 20316 34351 43302 Face 86601 22998 43303 40782 Face 86602 22998 49148 43303 Face 86603 36747 43304 45993 Face 86604 36747 7116 43304 Face 86605 25186 43305 47961 Face 86606 25186 35908 43305 Face 86607 16405 43306 9390 Face 86608 16405 35446 43306 Face 86609 3722 43307 32954 Face 86610 3722 26613 43307 Face 86611 33767 43308 32714 Face 86612 33767 24198 43308 Face 86613 4673 43309 31451 Face 86614 4673 47251 43309 Face 86615 14277 43310 2038 Face 86616 14277 14276 43310 Face 86617 18563 43311 4973 Face 86618 18563 40805 43311 Face 86619 13106 43312 27163 Face 86620 13106 20225 43312 Face 86621 10268 43313 18215 Face 86622 10268 3283 43313 Face 86623 20178 43314 15947 Face 86624 20178 5085 43314 Face 86625 4586 43315 20491 Face 86626 4586 26948 43315 Face 86627 5537 43316 12916 Face 86628 5537 31812 43316 Face 86629 27568 43317 13196 Face 86630 27568 1362 43317 Face 86631 5548 43318 38074 Face 86632 5548 22311 43318 Face 86633 32903 43319 16363 Face 86634 32903 6402 43319 Face 86635 2735 43320 40816 Face 86636 2735 27784 43320 Face 86637 7424 43321 40605 Face 86638 7424 34690 43321 Face 86639 22821 43322 10398 Face 86640 22821 7462 43322 Face 86641 17607 43323 28270 Face 86642 17607 16895 43323 Face 86643 43325 43324 15091 Face 86644 10953 18210 43324 Face 86645 10953 43325 27268 Face 86646 10953 43324 43325 Face 86647 11859 43326 3148 Face 86648 11859 30500 43326 Face 86649 2262 43327 18077 Face 86650 2262 8284 43327 Face 86651 30279 43330 19201 Face 86652 30279 1214 43328 Face 86653 43330 43329 31919 Face 86654 43328 9916 43329 Face 86655 43328 43330 30279 Face 86656 43328 43329 43330 Face 86657 6801 43331 32043 Face 86658 6801 3266 43331 Face 86659 4921 43332 9658 Face 86660 4921 14082 43332 Face 86661 7868 43333 4191 Face 86662 7868 27814 43333 Face 86663 11837 43334 49507 Face 86664 11837 16792 43334 Face 86665 40063 43335 7554 Face 86666 40063 13621 43335 Face 86667 19432 43336 46657 Face 86668 19432 30711 43336 Face 86669 16679 43337 40347 Face 86670 16679 6743 43337 Face 86671 14064 43338 42164 Face 86672 14064 14065 43338 Face 86673 25281 43339 24335 Face 86674 25281 15515 43339 Face 86675 7431 43340 19348 Face 86676 7431 27956 43340 Face 86677 18663 43341 1075 Face 86678 18663 24287 43341 Face 86679 30477 43342 12608 Face 86680 30477 24932 43342 Face 86681 271 43343 29496 Face 86682 271 33521 43343 Face 86683 13646 43344 38062 Face 86684 13646 30444 43344 Face 86685 27895 43345 40056 Face 86686 27895 4183 43345 Face 86687 9878 43346 37314 Face 86688 9878 10598 43346 Face 86689 24127 43347 2239 Face 86690 24127 24128 43347 Face 86691 42789 43348 42788 Face 86692 42789 14425 43348 Face 86693 26526 43349 169 Face 86694 26526 44037 43349 Face 86695 27250 43350 30703 Face 86696 27250 19752 43350 Face 86697 7760 43351 22618 Face 86698 43751 33395 43351 Face 86699 29339 43352 3216 Face 86700 29339 5836 43352 Face 86701 31837 43353 16045 Face 86702 48173 407 43353 Face 86703 5853 43354 14810 Face 86704 5853 33310 43354 Face 86705 25110 43355 37955 Face 86706 25110 18106 43355 Face 86707 3438 43356 24646 Face 86708 3438 24017 43356 Face 86709 24698 43357 24981 Face 86710 24698 39514 43357 Face 86711 31164 43358 20300 Face 86712 31164 10197 43358 Face 86713 7456 43359 38903 Face 86714 7456 5192 43359 Face 86715 11664 43360 3708 Face 86716 46594 16836 43360 Face 86717 15979 43361 26975 Face 86718 15979 35874 43361 Face 86719 2286 43362 12591 Face 86720 2286 37334 43362 Face 86721 10882 43363 49623 Face 86722 10882 30692 43363 Face 86723 46411 43364 6244 Face 86724 16104 18447 43364 Face 86725 36143 43365 31305 Face 86726 48462 21116 43365 Face 86727 22871 43366 39012 Face 86728 22871 4199 43366 Face 86729 13679 43367 22894 Face 86730 13679 767 43367 Face 86731 15698 43368 32101 Face 86732 15698 32716 43368 Face 86733 15375 43369 49758 Face 86734 15375 49626 43369 Face 86735 953 43370 18019 Face 86736 953 9844 43370 Face 86737 14492 43371 40635 Face 86738 14492 32277 43371 Face 86739 13401 43372 30527 Face 86740 13401 24630 43372 Face 86741 26153 43373 24371 Face 86742 26153 37871 43373 Face 86743 22052 43374 8204 Face 86744 22052 10450 43374 Face 86745 8360 43375 2792 Face 86746 8360 25895 43375 Face 86747 11870 43376 24022 Face 86748 11870 38657 43376 Face 86749 6218 43377 21771 Face 86750 6218 28478 43377 Face 86751 4836 43378 41601 Face 86752 4836 8026 43378 Face 86753 9246 43379 35392 Face 86754 9246 23806 43379 Face 86755 4987 43380 21108 Face 86756 4987 1076 43380 Face 86757 17077 43381 3228 Face 86758 17077 6303 43381 Face 86759 6341 43382 10452 Face 86760 43383 29248 43382 Face 86761 6341 43383 43382 Face 86762 6341 33111 43383 Face 86763 2833 43385 41192 Face 86764 2833 31942 43385 Face 86765 43384 43385 31942 Face 86766 43384 41192 43385 Face 86767 116 43386 14480 Face 86768 116 25851 43386 Face 86769 19139 43387 13404 Face 86770 19139 3376 43387 Face 86771 17720 43388 3387 Face 86772 17720 17700 43388 Face 86773 14178 43389 38432 Face 86774 14178 39926 43389 Face 86775 13693 43390 36484 Face 86776 13693 34089 43390 Face 86777 10129 43391 33776 Face 86778 10129 23761 43391 Face 86779 6368 43392 30742 Face 86780 6368 18014 43392 Face 86781 10870 43393 4640 Face 86782 10870 5038 43393 Face 86783 10606 43394 24918 Face 86784 49897 22984 43394 Face 86785 3045 43395 22316 Face 86786 3045 36270 43395 Face 86787 22641 43396 11578 Face 86788 22641 1785 43396 Face 86789 8357 43397 44851 Face 86790 8357 19900 43397 Face 86791 24803 43398 7299 Face 86792 24803 24521 43398 Face 86793 22648 43399 22964 Face 86794 22648 29379 43399 Face 86795 4904 43400 33400 Face 86796 4904 32514 43400 Face 86797 5476 43401 703 Face 86798 5476 16282 43401 Face 86799 22786 43402 10071 Face 86800 22786 40383 43402 Face 86801 14999 43403 27304 Face 86802 45723 28069 43403 Face 86803 13500 43404 14524 Face 86804 13500 27421 43404 Face 86805 351 43405 8991 Face 86806 351 30982 43405 Face 86807 6219 43406 17880 Face 86808 6219 40703 43406 Face 86809 10163 43407 2520 Face 86810 10163 41477 43407 Face 86811 27201 43408 1893 Face 86812 27201 40612 43408 Face 86813 7158 43409 13525 Face 86814 7158 8909 43409 Face 86815 4704 43410 39530 Face 86816 4704 20738 43410 Face 86817 5850 43411 9512 Face 86818 5850 8737 43411 Face 86819 7950 43412 197 Face 86820 7950 22029 43412 Face 86821 24838 43413 130 Face 86822 24838 34099 43413 Face 86823 14458 43414 357 Face 86824 48498 4434 43414 Face 86825 29317 43415 46211 Face 86826 29317 6591 43415 Face 86827 16141 43416 18786 Face 86828 16141 30201 43416 Face 86829 4519 43417 16704 Face 86830 4519 7992 43417 Face 86831 26706 43418 26705 Face 86832 26706 21016 43418 Face 86833 15890 43419 33133 Face 86834 15890 28989 43419 Face 86835 7234 43420 34096 Face 86836 7234 37120 43420 Face 86837 15161 43421 3390 Face 86838 15161 7725 43421 Face 86839 20384 43422 44102 Face 86840 20384 20463 43422 Face 86841 8426 43423 23796 Face 86842 8426 4060 43423 Face 86843 161 43424 49819 Face 86844 161 11989 43424 Face 86845 6444 43425 38758 Face 86846 6444 34102 43425 Face 86847 17663 43426 42040 Face 86848 17663 7916 43426 Face 86849 36754 43427 27767 Face 86850 36754 42920 43427 Face 86851 235 43428 16929 Face 86852 235 19445 43428 Face 86853 5867 43429 9171 Face 86854 5867 36725 43429 Face 86855 20199 43430 15929 Face 86856 20199 10439 43430 Face 86857 6104 43431 27399 Face 86858 6104 2485 43431 Face 86859 13233 43432 12866 Face 86860 13233 30889 43432 Face 86861 10185 43433 5125 Face 86862 10185 42596 43433 Face 86863 32100 43434 261 Face 86864 32100 16377 43434 Face 86865 15250 43435 18938 Face 86866 15250 2090 43435 Face 86867 10329 43436 13238 Face 86868 10329 29218 43436 Face 86869 8518 43437 26365 Face 86870 8518 13480 43437 Face 86871 24232 43438 5326 Face 86872 24232 8232 43438 Face 86873 5326 43439 42415 Face 86874 5326 43438 43439 Face 86875 154 43440 20802 Face 86876 46515 18537 43440 Face 86877 39479 43441 23965 Face 86878 39479 4758 43441 Face 86879 23981 43442 49557 Face 86880 23981 1629 43442 Face 86881 21713 43443 11413 Face 86882 21713 33670 43443 Face 86883 30578 43444 20137 Face 86884 30578 1731 43444 Face 86885 23132 43445 16452 Face 86886 23132 16930 43445 Face 86887 24400 43446 22425 Face 86888 24400 7692 43446 Face 86889 39191 43447 43014 Face 86890 39191 34106 43447 Face 86891 25749 43448 25924 Face 86892 25749 31767 43448 Face 86893 1000 43449 19874 Face 86894 1000 32242 43449 Face 86895 47214 43450 16569 Face 86896 9904 39057 43450 Face 86897 5873 43451 16099 Face 86898 5873 18416 43451 Face 86899 43453 43452 20822 Face 86900 20614 47063 43452 Face 86901 46703 43453 44856 Face 86902 46703 43452 43453 Face 86903 5027 43454 40537 Face 86904 5027 13864 43454 Face 86905 13482 43455 1230 Face 86906 13482 33111 43455 Face 86907 9007 43456 29765 Face 86908 9007 29764 43456 Face 86909 11674 43457 30564 Face 86910 11674 30990 43457 Face 86911 25582 43458 47665 Face 86912 25582 30862 43458 Face 86913 22217 43459 13519 Face 86914 22217 36393 43459 Face 86915 8533 43460 31419 Face 86916 8533 15162 43460 Face 86917 1809 43461 3535 Face 86918 1809 30247 43461 Face 86919 21106 43462 33141 Face 86920 21106 10886 43462 Face 86921 14195 43463 24653 Face 86922 14195 7536 43463 Face 86923 8521 43464 15021 Face 86924 8521 24524 43464 Face 86925 44083 43465 4574 Face 86926 7036 13102 43465 Face 86927 4032 43466 43295 Face 86928 4032 49273 43466 Face 86929 12372 43467 44978 Face 86930 43468 685 43467 Face 86931 12372 43468 43467 Face 86932 12372 43845 43468 Face 86933 26746 43469 38236 Face 86934 26746 32866 43469 Face 86935 4154 43470 39380 Face 86936 4154 16538 43470 Face 86937 8779 43471 35388 Face 86938 8779 16843 43471 Face 86939 28110 43472 29270 Face 86940 28110 15451 43472 Face 86941 27326 43473 17149 Face 86942 27326 2113 43473 Face 86943 9649 43474 28677 Face 86944 9649 6347 43474 Face 86945 9285 43475 29660 Face 86946 9285 16750 43475 Face 86947 16771 43476 15375 Face 86948 16771 15029 43476 Face 86949 42463 43477 28190 Face 86950 42463 74 43477 Face 86951 18702 43478 38773 Face 86952 18702 4531 43478 Face 86953 2814 43479 14086 Face 86954 45356 3338 43479 Face 86955 26235 43480 7999 Face 86956 26235 651 43480 Face 86957 29500 43481 29454 Face 86958 29500 11083 43481 Face 86959 4967 43482 31777 Face 86960 47155 9855 43482 Face 86961 24690 43483 24189 Face 86962 24690 8793 43483 Face 86963 11699 43484 720 Face 86964 11699 13448 43484 Face 86965 8675 43485 39521 Face 86966 8675 39723 43485 Face 86967 8565 43486 10675 Face 86968 8565 34190 43486 Face 86969 32232 43487 23019 Face 86970 32232 6209 43487 Face 86971 12740 43488 27955 Face 86972 12740 38856 43488 Face 86973 11772 43489 7921 Face 86974 11772 38719 43489 Face 86975 21823 43490 29634 Face 86976 21823 13317 43490 Face 86977 11551 43491 26861 Face 86978 11551 40724 43491 Face 86979 17379 43492 22605 Face 86980 17379 30292 43492 Face 86981 2362 43493 41743 Face 86982 2362 20092 43493 Face 86983 26528 43494 11183 Face 86984 26528 19631 43494 Face 86985 12496 43495 41844 Face 86986 12496 448 43495 Face 86987 18829 43496 8285 Face 86988 18829 27543 43496 Face 86989 24862 43497 1574 Face 86990 24862 19793 43497 Face 86991 25906 43498 30037 Face 86992 25906 30342 43498 Face 86993 8742 43499 12505 Face 86994 8742 306 43499 Face 86995 20616 43500 40066 Face 86996 20616 34356 43500 Face 86997 7460 43501 47574 Face 86998 7460 18044 43501 Face 86999 19944 43502 24857 Face 87000 19944 5712 43502 Face 87001 21527 43503 43076 Face 87002 21527 9150 43503 Face 87003 8065 43504 188 Face 87004 8065 31833 43504 Face 87005 2155 43505 15056 Face 87006 2155 40178 43505 Face 87007 2969 43506 35425 Face 87008 2969 45280 49844 Face 87009 2969 43507 10801 Face 87010 2969 20445 43507 Face 87011 5684 43508 3640 Face 87012 5684 19047 43508 Face 87013 5448 43509 20410 Face 87014 5448 27531 43509 Face 87015 14895 43510 43716 Face 87016 14895 18161 43510 Face 87017 8600 43511 2175 Face 87018 8600 41981 43511 Face 87019 16106 43512 3889 Face 87020 16106 47159 43512 Face 87021 24632 43513 44990 Face 87022 43514 19529 43513 Face 87023 24632 43514 43513 Face 87024 24632 5069 43514 Face 87025 43516 43515 39054 Face 87026 43516 35922 43515 Face 87027 1251 43516 39054 Face 87028 1251 35922 43516 Face 87029 8508 43517 41582 Face 87030 8508 27402 43517 Face 87031 17478 43518 21816 Face 87032 17478 25966 43518 Face 87033 6507 43519 25576 Face 87034 6507 16991 43519 Face 87035 7310 43520 23170 Face 87036 7310 13898 43520 Face 87037 19675 43521 36623 Face 87038 19675 41716 43521 Face 87039 1873 43522 28895 Face 87040 1873 25476 43522 Face 87041 2757 43523 18305 Face 87042 2757 18306 43523 Face 87043 29212 43524 42854 Face 87044 29212 21392 43524 Face 87045 32319 43525 46344 Face 87046 32319 32320 43525 Face 87047 22079 43526 5432 Face 87048 22079 24095 43526 Face 87049 19256 43527 37516 Face 87050 19256 37798 43527 Face 87051 15154 43528 29829 Face 87052 15154 20518 43528 Face 87053 21822 43529 1528 Face 87054 21822 8898 43529 Face 87055 24752 44169 20776 Face 87056 24752 17040 43530 Face 87057 14893 43531 2823 Face 87058 14893 6828 43531 Face 87059 28679 43532 29389 Face 87060 28679 38258 43532 Face 87061 16243 43533 30177 Face 87062 16243 25986 43533 Face 87063 22605 43534 12192 Face 87064 22605 13175 43534 Face 87065 17759 43535 27169 Face 87066 17759 35045 43535 Face 87067 5890 43536 13150 Face 87068 5890 19201 43536 Face 87069 19939 43537 25779 Face 87070 19939 11990 43537 Face 87071 16923 43538 18059 Face 87072 16923 2289 43538 Face 87073 33986 43539 22756 Face 87074 33986 14098 43539 Face 87075 864 43540 42948 Face 87076 864 45840 43540 Face 87077 7767 43541 16980 Face 87078 7767 48812 43541 Face 87079 49234 43542 9342 Face 87080 8313 12235 43542 Face 87081 2463 43543 26825 Face 87082 2463 39121 43543 Face 87083 2463 43544 39728 Face 87084 2463 26825 43544 Face 87085 1418 43545 42399 Face 87086 1418 35964 43545 Face 87087 2022 43546 41013 Face 87088 2022 41822 43546 Face 87089 1244 43547 30396 Face 87090 1244 16428 43547 Face 87091 6910 43548 22019 Face 87092 6910 24276 43548 Face 87093 33263 43549 9568 Face 87094 33263 49602 43549 Face 87095 45645 43550 17133 Face 87096 2513 20131 43550 Face 87097 16539 43551 44670 Face 87098 16539 11292 43551 Face 87099 17318 43552 34081 Face 87100 17318 32753 43552 Face 87101 1206 43553 48294 Face 87102 1206 33523 43553 Face 87103 20690 43554 39725 Face 87104 20690 38084 43554 Face 87105 10307 43555 24175 Face 87106 10307 47225 43555 Face 87107 8381 43556 17169 Face 87108 8381 5069 43556 Face 87109 14681 43557 38561 Face 87110 14681 22500 43557 Face 87111 43557 43558 9423 Face 87112 43557 22500 43558 Face 87113 4835 43559 47002 Face 87114 4835 22932 43559 Face 87115 20453 43560 26005 Face 87116 20453 5120 43560 Face 87117 49269 43561 26105 Face 87118 13308 276 43561 Face 87119 12637 43562 22202 Face 87120 12637 37625 43562 Face 87121 15356 43563 10622 Face 87122 15356 4457 43563 Face 87123 15262 43564 42414 Face 87124 15262 20429 43564 Face 87125 33959 43565 29636 Face 87126 33959 4873 43565 Face 87127 10126 43566 39649 Face 87128 10126 22891 43566 Face 87129 20506 43567 42265 Face 87130 20506 41422 43567 Face 87131 13770 43568 13772 Face 87132 13770 47671 43568 Face 87133 6547 43569 15221 Face 87134 6547 16497 43569 Face 87135 18934 43570 27263 Face 87136 18934 1855 43570 Face 87137 15826 43571 4519 Face 87138 15826 12327 43571 Face 87139 2788 43572 12719 Face 87140 2788 17962 43572 Face 87141 7732 43573 22451 Face 87142 7732 1448 43573 Face 87143 15799 43574 35392 Face 87144 15799 25458 43574 Face 87145 26916 43575 19002 Face 87146 26916 36318 43575 Face 87147 7407 43576 49702 Face 87148 7407 46725 43576 Face 87149 9450 43577 18803 Face 87150 9450 32400 43577 Face 87151 25517 43578 15530 Face 87152 25517 49872 43578 Face 87153 13090 43579 40529 Face 87154 13090 19626 43579 Face 87155 18868 43580 1538 Face 87156 18868 43152 43580 Face 87157 10714 43581 790 Face 87158 10714 38076 43581 Face 87159 12010 43582 1926 Face 87160 12010 19496 43582 Face 87161 10693 43583 30243 Face 87162 48965 24794 43583 Face 87163 28156 43584 4871 Face 87164 28156 13913 43584 Face 87165 7293 43585 10646 Face 87166 7293 26019 43585 Face 87167 1152 43586 39584 Face 87168 1152 30581 43586 Face 87169 25256 43587 4809 Face 87170 25256 46413 43587 Face 87171 587 43588 22908 Face 87172 587 36811 43588 Face 87173 25062 43589 23653 Face 87174 25062 11072 43589 Face 87175 2746 43590 29950 Face 87176 2746 23023 43590 Face 87177 7778 43591 24513 Face 87178 7778 40845 43591 Face 87179 22550 43592 7647 Face 87180 22550 39764 43592 Face 87181 6064 43593 13757 Face 87182 6064 16799 43593 Face 87183 3970 43594 29381 Face 87184 3970 17369 43594 Face 87185 10748 43595 37047 Face 87186 10748 35418 43595 Face 87187 4908 43596 37051 Face 87188 4908 10322 43596 Face 87189 19687 43597 35929 Face 87190 19687 9857 43597 Face 87191 5852 43598 41054 Face 87192 5852 19015 43598 Face 87193 3379 43599 17468 Face 87194 3379 17469 43599 Face 87195 3901 43600 37887 Face 87196 3901 21117 43600 Face 87197 34970 43601 27702 Face 87198 34970 26744 43601 Face 87199 11499 43602 32045 Face 87200 11499 17284 43602 Face 87201 21625 43603 30004 Face 87202 21625 38478 43603 Face 87203 215 43604 28060 Face 87204 44806 36872 43604 Face 87205 32568 43605 30268 Face 87206 32568 8047 43605 Face 87207 18655 43606 2221 Face 87208 18655 10068 43606 Face 87209 43608 43607 2401 Face 87210 12536 5602 43607 Face 87211 12536 43608 9381 Face 87212 12536 43607 43608 Face 87213 2101 43609 35562 Face 87214 2101 23730 43609 Face 87215 14977 43610 36042 Face 87216 14977 46808 43610 Face 87217 9089 43611 14424 Face 87218 9089 30773 43611 Face 87219 20637 43612 25840 Face 87220 20637 10740 43612 Face 87221 40222 43613 25162 Face 87222 40222 40221 43613 Face 87223 23108 43614 11119 Face 87224 23108 35767 43614 Face 87225 15554 43615 42088 Face 87226 15554 32198 43615 Face 87227 7294 43616 12551 Face 87228 7294 48540 43616 Face 87229 31192 43617 12717 Face 87230 31192 21142 43617 Face 87231 25738 43618 12777 Face 87232 25738 34669 43618 Face 87233 35374 43619 38149 Face 87234 35374 974 43619 Face 87235 7434 43620 30368 Face 87236 7434 37392 43620 Face 87237 43622 43621 29669 Face 87238 23596 49031 43621 Face 87239 23596 43622 31789 Face 87240 23596 43621 43622 Face 87241 8539 43623 32006 Face 87242 8539 3638 43623 Face 87243 12100 43624 29879 Face 87244 12100 37017 43624 Face 87245 25317 43625 3424 Face 87246 25317 30180 43625 Face 87247 20316 43626 20317 Face 87248 20316 43302 43626 Face 87249 2365 43627 20842 Face 87250 2365 24823 43627 Face 87251 12929 43628 23801 Face 87252 12929 2332 43628 Face 87253 993 43629 48626 Face 87254 48386 11558 43629 Face 87255 9635 43630 31923 Face 87256 9635 11484 43630 Face 87257 2369 43631 34827 Face 87258 2369 32926 43631 Face 87259 16087 43632 5805 Face 87260 16087 26646 43632 Face 87261 5734 43633 31772 Face 87262 5734 20417 43633 Face 87263 12288 43634 33669 Face 87264 12288 7488 43634 Face 87265 9826 43635 26840 Face 87266 9826 49692 43635 Face 87267 6472 43636 37092 Face 87268 6472 9182 43636 Face 87269 14897 43637 14249 Face 87270 14897 2803 43637 Face 87271 5097 43638 36599 Face 87272 5097 46029 43638 Face 87273 21702 43639 39608 Face 87274 21702 22746 43639 Face 87275 29032 43640 20071 Face 87276 29032 40691 43640 Face 87277 37099 43641 43256 Face 87278 37099 35240 43641 Face 87279 8335 43642 32034 Face 87280 8335 11266 43642 Face 87281 22587 43643 9659 Face 87282 22587 1133 43643 Face 87283 26306 43644 9487 Face 87284 26306 509 43644 Face 87285 5754 43645 9811 Face 87286 5754 30731 43645 Face 87287 16137 43646 10493 Face 87288 16137 490 43646 Face 87289 21473 43647 19274 Face 87290 21473 41059 43647 Face 87291 11481 43648 41133 Face 87292 11481 3047 43648 Face 87293 3229 43649 26271 Face 87294 3229 45546 43649 Face 87295 35231 43650 42519 Face 87296 35231 39601 43650 Face 87297 24620 43651 42274 Face 87298 24620 39528 43651 Face 87299 11115 43652 15825 Face 87300 11115 32798 43652 Face 87301 2127 43653 39079 Face 87302 2127 37567 43653 Face 87303 19179 43654 28748 Face 87304 19179 20861 43654 Face 87305 25283 43655 4617 Face 87306 25283 17047 43655 Face 87307 22094 43656 5384 Face 87308 22094 13532 43656 Face 87309 14453 43657 4904 Face 87310 45128 34327 43657 Face 87311 4317 43658 47134 Face 87312 4317 42327 43658 Face 87313 10129 43659 17774 Face 87314 10129 33776 43659 Face 87315 16095 43660 36528 Face 87316 16095 36932 43660 Face 87317 15061 43661 29811 Face 87318 15061 31339 43661 Face 87319 15146 43662 23895 Face 87320 15146 23173 43662 Face 87321 940 43663 19518 Face 87322 940 25912 43663 Face 87323 14575 43664 2905 Face 87324 14575 33472 43664 Face 87325 8032 43665 3121 Face 87326 8032 4355 43665 Face 87327 2136 43666 6096 Face 87328 2136 30089 43666 Face 87329 11086 43667 29653 Face 87330 11086 27082 43667 Face 87331 7412 43668 19821 Face 87332 7412 37985 43668 Face 87333 18715 43669 25315 Face 87334 18715 37421 43669 Face 87335 5327 43670 21992 Face 87336 5327 33472 43670 Face 87337 8659 43671 15660 Face 87338 8659 19562 43671 Face 87339 15880 43672 8849 Face 87340 15880 3204 43672 Face 87341 17882 43673 44709 Face 87342 17882 25686 43673 Face 87343 13834 43674 17428 Face 87344 13834 2459 43674 Face 87345 14158 43675 9699 Face 87346 14158 2575 43675 Face 87347 12675 43676 2770 Face 87348 12675 25780 43676 Face 87349 10019 43677 2572 Face 87350 10019 14306 43677 Face 87351 980 43678 26268 Face 87352 980 21895 43678 Face 87353 1348 43679 22526 Face 87354 1348 49878 43679 Face 87355 6068 43680 37527 Face 87356 6068 33986 43680 Face 87357 25470 43681 11887 Face 87358 25470 2064 43681 Face 87359 16566 43682 8343 Face 87360 16566 4552 43682 Face 87361 24158 43683 21788 Face 87362 24158 28793 43683 Face 87363 34455 43684 42826 Face 87364 34455 9019 43684 Face 87365 11573 43685 36721 Face 87366 11573 8800 43685 Face 87367 37870 43686 5605 Face 87368 37870 2948 43686 Face 87369 15976 43687 32069 Face 87370 15976 10297 43687 Face 87371 2552 43688 43015 Face 87372 2552 32496 43688 Face 87373 25373 43689 48145 Face 87374 25373 38695 43689 Face 87375 18536 43690 19596 Face 87376 18536 26951 43690 Face 87377 22301 43691 15363 Face 87378 22301 28568 43691 Face 87379 14455 43692 25195 Face 87380 14455 30611 43692 Face 87381 22212 43693 49009 Face 87382 22212 11043 43693 Face 87383 3164 43694 20333 Face 87384 3164 33183 43694 Face 87385 12112 43695 32298 Face 87386 12112 33967 43695 Face 87387 35149 43696 27437 Face 87388 35149 33832 43696 Face 87389 2943 43697 10245 Face 87390 2943 34516 43697 Face 87391 33760 43698 27605 Face 87392 33760 3730 43698 Face 87393 25266 43699 9060 Face 87394 25266 31869 43699 Face 87395 25266 43700 23079 Face 87396 25266 48088 43700 Face 87397 26267 43701 20928 Face 87398 26267 32729 43701 Face 87399 17097 43702 39969 Face 87400 17097 11696 43702 Face 87401 8028 43703 27765 Face 87402 8028 14681 43703 Face 87403 1464 43704 32275 Face 87404 1464 37538 43704 Face 87405 23557 43705 18504 Face 87406 23557 16693 43705 Face 87407 16752 43706 5564 Face 87408 16752 12559 43706 Face 87409 43708 43707 17412 Face 87410 1110 24375 43707 Face 87411 1110 43708 11072 Face 87412 1110 43707 43708 Face 87413 8499 43709 28048 Face 87414 8499 26347 43709 Face 87415 1761 43710 32104 Face 87416 1761 41204 43710 Face 87417 43712 43711 31174 Face 87418 5574 26249 43711 Face 87419 5574 43712 7173 Face 87420 5574 43711 43712 Face 87421 5915 43713 49302 Face 87422 5915 12430 43713 Face 87423 10525 43714 33092 Face 87424 10525 7553 43714 Face 87425 5756 43715 43162 Face 87426 5756 9869 43715 Face 87427 29412 43716 36650 Face 87428 29412 14895 43716 Face 87429 43718 43717 46500 Face 87430 43718 10058 43717 Face 87431 1851 43718 46500 Face 87432 1851 14000 43718 Face 87433 4654 43719 32244 Face 87434 4654 21077 43719 Face 87435 7444 43720 41115 Face 87436 7444 34098 43720 Face 87437 8528 43721 39075 Face 87438 8528 31408 43721 Face 87439 18244 43722 7761 Face 87440 18244 11692 43722 Face 87441 23033 43723 18670 Face 87442 23033 46655 43723 Face 87443 14955 43724 39808 Face 87444 14955 27476 43724 Face 87445 47870 43725 25565 Face 87446 47486 26373 43725 Face 87447 23648 43726 9841 Face 87448 23648 30694 43726 Face 87449 4015 43727 25741 Face 87450 4015 25746 43727 Face 87451 19104 43728 19134 Face 87452 19104 27500 43728 Face 87453 16901 43729 11034 Face 87454 16901 8363 43729 Face 87455 10816 43730 24129 Face 87456 10816 7453 43730 Face 87457 14921 43731 46906 Face 87458 14921 44145 43731 Face 87459 20053 43732 13697 Face 87460 20053 39526 43732 Face 87461 14744 43733 3256 Face 87462 44353 12500 43733 Face 87463 5383 43734 135 Face 87464 5383 15475 43734 Face 87465 15288 43735 29554 Face 87466 15288 42001 43735 Face 87467 26039 43736 7502 Face 87468 26039 4888 43736 Face 87469 1433 43737 26880 Face 87470 1433 29668 43737 Face 87471 7852 43738 21416 Face 87472 43739 12097 43738 Face 87473 7852 43739 43738 Face 87474 7852 37812 43739 Face 87475 6187 43740 9856 Face 87476 6187 30860 43740 Face 87477 723 43741 21973 Face 87478 723 46001 43741 Face 87479 49314 43742 13685 Face 87480 17230 12280 43742 Face 87481 14010 43743 2679 Face 87482 14010 4119 43743 Face 87483 28124 43744 3300 Face 87484 28124 16179 43744 Face 87485 9920 43745 36907 Face 87486 9920 24950 43745 Face 87487 31171 43746 14265 Face 87488 31171 37666 43746 Face 87489 27706 43747 41001 Face 87490 27706 11353 43747 Face 87491 16571 43748 9620 Face 87492 16571 10247 43748 Face 87493 43750 43749 5296 Face 87494 10558 24318 43749 Face 87495 10558 43750 26064 Face 87496 10558 43749 43750 Face 87497 7760 43751 43351 Face 87498 7760 12965 43751 Face 87499 14693 43752 6167 Face 87500 14693 25772 43752 Face 87501 43754 43753 14008 Face 87502 43755 18167 43753 Face 87503 2228 43754 12870 Face 87504 43755 43753 43754 Face 87505 2228 43755 43754 Face 87506 2228 20854 43755 Face 87507 27254 43756 1819 Face 87508 27254 48640 43756 Face 87509 5086 43757 8492 Face 87510 5086 10646 43757 Face 87511 12608 43758 30477 Face 87512 12608 8262 43758 Face 87513 9907 43759 39687 Face 87514 9907 2330 43759 Face 87515 12299 43760 31158 Face 87516 12299 6412 43760 Face 87517 21184 43761 27618 Face 87518 21184 12207 43761 Face 87519 2630 43762 22152 Face 87520 46987 48646 43762 Face 87521 14174 43763 9001 Face 87522 14174 5902 43763 Face 87523 16022 43764 36483 Face 87524 16022 12313 43764 Face 87525 20494 43765 3176 Face 87526 20494 48047 43765 Face 87527 5231 43766 24430 Face 87528 5231 31036 43766 Face 87529 17343 43767 19755 Face 87530 17343 49259 43767 Face 87531 28988 43768 31542 Face 87532 28988 11676 43768 Face 87533 15917 43769 37058 Face 87534 15917 13569 43769 Face 87535 6298 43770 19819 Face 87536 6298 41618 43770 Face 87537 525 43771 49130 Face 87538 525 41361 43771 Face 87539 8020 43772 34556 Face 87540 8020 12350 43772 Face 87541 19867 43773 23657 Face 87542 19867 33963 43773 Face 87543 7231 43774 31014 Face 87544 43775 24510 43774 Face 87545 7231 43775 43774 Face 87546 7231 35529 43775 Face 87547 38774 43776 11023 Face 87548 38774 34867 43776 Face 87549 30066 43777 12062 Face 87550 30066 7584 43777 Face 87551 163 43778 16815 Face 87552 163 42170 43778 Face 87553 10270 43779 40722 Face 87554 10270 38540 43779 Face 87555 9859 43780 12238 Face 87556 9859 44096 43780 Face 87557 15771 43781 33889 Face 87558 15771 21966 43781 Face 87559 23500 43782 24841 Face 87560 23500 1214 43782 Face 87561 592 43783 19346 Face 87562 592 28626 43783 Face 87563 15530 43784 25517 Face 87564 15530 21984 43784 Face 87565 3772 43785 14864 Face 87566 46508 7180 43785 Face 87567 15835 43786 42628 Face 87568 45864 41806 43786 Face 87569 4509 43787 2414 Face 87570 4509 45701 43787 Face 87571 8012 43788 26942 Face 87572 8012 6007 43788 Face 87573 20733 43789 44746 Face 87574 20733 40870 43789 Face 87575 6609 43790 7213 Face 87576 6609 46811 43790 Face 87577 1124 43791 17046 Face 87578 1124 24439 43791 Face 87579 2893 43792 30332 Face 87580 2893 15978 43792 Face 87581 12124 43793 2841 Face 87582 12124 31508 43793 Face 87583 13268 43794 45449 Face 87584 13268 31409 43794 Face 87585 13268 43795 31409 Face 87586 13268 41804 43795 Face 87587 46621 43796 34088 Face 87588 8868 20853 43796 Face 87589 21154 43797 41289 Face 87590 21154 32811 43797 Face 87591 8255 43798 27110 Face 87592 47844 33653 43798 Face 87593 4523 43799 18535 Face 87594 4523 22756 43799 Face 87595 6015 43800 46993 Face 87596 6015 34900 43800 Face 87597 26071 43801 18707 Face 87598 26071 2688 43801 Face 87599 16680 43802 3371 Face 87600 16680 35379 43802 Face 87601 5678 43803 28661 Face 87602 5678 37232 43803 Face 87603 2749 43804 33488 Face 87604 2749 38655 43804 Face 87605 14641 43805 4604 Face 87606 14641 2085 43805 Face 87607 18524 43806 29783 Face 87608 18524 6196 43806 Face 87609 28590 43807 3753 Face 87610 28590 28544 43807 Face 87611 6807 43808 808 Face 87612 6807 27909 43808 Face 87613 3741 43809 16598 Face 87614 3741 38076 43809 Face 87615 1132 43810 24190 Face 87616 46422 5408 43810 Face 87617 20690 43811 29450 Face 87618 20690 39725 43811 Face 87619 8356 43812 23227 Face 87620 8356 46669 43812 Face 87621 43814 43813 7388 Face 87622 16101 32458 43813 Face 87623 16101 43814 37720 Face 87624 16101 43813 43814 Face 87625 15549 43815 26015 Face 87626 15549 25542 43815 Face 87627 29098 43816 32577 Face 87628 29098 5167 43816 Face 87629 31620 43817 13579 Face 87630 31620 28682 43817 Face 87631 22469 43818 31481 Face 87632 22469 12146 43818 Face 87633 19355 43819 14409 Face 87634 19355 11199 43819 Face 87635 2370 43820 12901 Face 87636 2370 21802 43820 Face 87637 48997 43821 34210 Face 87638 3419 25207 43821 Face 87639 14673 43822 2015 Face 87640 14673 47861 43822 Face 87641 31569 43823 25716 Face 87642 31569 9239 43823 Face 87643 9095 43824 21348 Face 87644 9095 14604 43824 Face 87645 43826 43825 19888 Face 87646 49500 48499 43825 Face 87647 6621 43826 20216 Face 87648 6621 43825 43826 Face 87649 747 43827 7578 Face 87650 747 35249 43827 Face 87651 17246 43828 10197 Face 87652 17246 33415 43828 Face 87653 9263 43829 10686 Face 87654 9263 13477 43829 Face 87655 15260 43830 27007 Face 87656 15260 42414 43830 Face 87657 23706 43831 25751 Face 87658 23706 30730 43831 Face 87659 26938 43832 11707 Face 87660 26938 42084 43832 Face 87661 23619 43833 16773 Face 87662 23619 30002 43833 Face 87663 9795 43834 3603 Face 87664 43835 5644 43834 Face 87665 9795 43835 43834 Face 87666 9795 49275 43835 Face 87667 59 43836 19278 Face 87668 59 31949 43836 Face 87669 7648 43837 2466 Face 87670 7648 21097 43837 Face 87671 26095 43838 16891 Face 87672 26095 7707 43838 Face 87673 24616 43839 39193 Face 87674 24616 34621 43839 Face 87675 9561 43840 16003 Face 87676 9561 5136 43840 Face 87677 9504 43841 17118 Face 87678 9504 10810 43841 Face 87679 12025 43842 27964 Face 87680 12025 15528 43842 Face 87681 20507 43843 15890 Face 87682 20507 41480 43843 Face 87683 8006 43844 17117 Face 87684 8006 30485 43844 Face 87685 4476 43845 13245 Face 87686 4476 43468 43845 Face 87687 17967 43846 6180 Face 87688 17967 29179 43846 Face 87689 1340 43847 33385 Face 87690 1340 17400 43847 Face 87691 34507 43848 37038 Face 87692 34507 19374 43848 Face 87693 46183 43849 34021 Face 87694 2375 22161 43849 Face 87695 37727 43850 29553 Face 87696 37727 9594 43850 Face 87697 15327 43851 32378 Face 87698 15327 11823 43851 Face 87699 5792 43852 30950 Face 87700 5792 15264 43852 Face 87701 27861 43853 1813 Face 87702 27861 9393 43853 Face 87703 26415 43854 39156 Face 87704 26415 15975 43854 Face 87705 8761 43855 23902 Face 87706 8761 47447 43855 Face 87707 1634 43856 15768 Face 87708 1634 34632 43856 Face 87709 9544 43857 32925 Face 87710 9544 40237 43857 Face 87711 22314 43858 31816 Face 87712 22314 807 43858 Face 87713 3621 43859 46898 Face 87714 3621 32126 43859 Face 87715 12547 43860 10589 Face 87716 12547 21992 43860 Face 87717 7261 43861 48463 Face 87718 7261 32812 43861 Face 87719 25222 43862 47333 Face 87720 25222 9162 43862 Face 87721 28085 43863 18243 Face 87722 28085 24065 43863 Face 87723 21748 43864 23785 Face 87724 21748 37670 43864 Face 87725 8081 44237 10358 Face 87726 8081 34320 43865 Face 87727 6788 43866 30028 Face 87728 6788 24439 43866 Face 87729 27732 43867 8771 Face 87730 47825 22346 43867 Face 87731 5642 43868 26400 Face 87732 5642 1551 43868 Face 87733 15699 43869 35363 Face 87734 15699 29371 43869 Face 87735 6211 43870 18000 Face 87736 43871 24353 43870 Face 87737 6211 43871 43870 Face 87738 6211 788 43871 Face 87739 22966 43872 8200 Face 87740 22966 7819 43872 Face 87741 43874 43873 18132 Face 87742 8005 37139 43873 Face 87743 8005 43874 46 Face 87744 8005 43873 43874 Face 87745 19151 43875 2068 Face 87746 19151 33326 43875 Face 87747 3341 43876 49873 Face 87748 47100 33862 43876 Face 87749 14971 43877 12764 Face 87750 47926 34330 43877 Face 87751 23063 43878 13454 Face 87752 23063 31690 43878 Face 87753 29005 43879 19827 Face 87754 29005 24860 43879 Face 87755 6741 43880 10122 Face 87756 6741 39634 43880 Face 87757 1229 43881 11853 Face 87758 1229 42219 43881 Face 87759 44312 43882 28036 Face 87760 11650 26618 43882 Face 87761 8326 43883 36012 Face 87762 8326 30182 43883 Face 87763 43883 43884 3435 Face 87764 43883 30182 43884 Face 87765 24485 43885 15553 Face 87766 24485 8671 43885 Face 87767 22990 43886 42890 Face 87768 22990 20688 43886 Face 87769 18278 43887 2410 Face 87770 18278 18279 43887 Face 87771 25414 43888 32029 Face 87772 25414 10015 43888 Face 87773 12250 43889 37867 Face 87774 12250 21546 43889 Face 87775 13633 43890 15498 Face 87776 13633 38529 43890 Face 87777 12237 43891 38777 Face 87778 12237 34746 43891 Face 87779 17938 43892 38762 Face 87780 17938 1095 43892 Face 87781 2107 43893 9888 Face 87782 45744 7766 43893 Face 87783 48297 43894 39892 Face 87784 18269 23878 43894 Face 87785 13648 43895 26648 Face 87786 13648 11222 43895 Face 87787 16338 43896 11894 Face 87788 16338 21002 43896 Face 87789 2243 43897 47367 Face 87790 2243 19366 43897 Face 87791 3187 43898 6814 Face 87792 3187 20990 43898 Face 87793 27698 43899 11888 Face 87794 27698 42448 43899 Face 87795 23805 43900 38513 Face 87796 23805 21911 43900 Face 87797 24558 43901 12703 Face 87798 24558 19686 43901 Face 87799 18166 43902 28064 Face 87800 18166 49906 43902 Face 87801 21369 43903 39574 Face 87802 21369 20528 43903 Face 87803 20752 43904 24605 Face 87804 20752 2366 43904 Face 87805 21597 43905 8180 Face 87806 21597 14028 43905 Face 87807 4394 43906 32526 Face 87808 4394 16943 43906 Face 87809 2474 43907 37184 Face 87810 2474 16558 43907 Face 87811 6455 43908 27212 Face 87812 6455 36460 43908 Face 87813 28729 43909 30259 Face 87814 28729 30424 43909 Face 87815 47821 43910 12542 Face 87816 5568 48297 43910 Face 87817 11586 43911 34621 Face 87818 11586 20248 43911 Face 87819 1494 43912 11762 Face 87820 1494 14017 43912 Face 87821 12375 43913 35655 Face 87822 12375 29484 43913 Face 87823 33375 43914 41239 Face 87824 33375 22762 43914 Face 87825 19142 43915 34299 Face 87826 19142 34630 43915 Face 87827 5329 43916 23780 Face 87828 5329 32731 43916 Face 87829 43918 43917 15143 Face 87830 43918 15720 43917 Face 87831 25075 43918 15143 Face 87832 25075 15720 43918 Face 87833 18879 43919 13454 Face 87834 18879 7628 43919 Face 87835 9060 43920 48088 Face 87836 9060 43699 43920 Face 87837 27354 43921 18198 Face 87838 27354 4018 43921 Face 87839 24705 43922 4529 Face 87840 24705 33886 43922 Face 87841 8766 43923 37954 Face 87842 8766 42526 43923 Face 87843 9448 43924 37825 Face 87844 9448 21978 43924 Face 87845 1312 43925 11906 Face 87846 1312 33033 43925 Face 87847 2272 43926 29743 Face 87848 2272 28792 43926 Face 87849 15849 43927 7139 Face 87850 15849 31735 43927 Face 87851 31564 43928 18596 Face 87852 31564 28008 43928 Face 87853 4465 43929 19210 Face 87854 4465 27527 43929 Face 87855 12064 43930 778 Face 87856 12064 25930 43930 Face 87857 13947 43931 34780 Face 87858 13947 26234 43931 Face 87859 16310 43932 28309 Face 87860 16310 47074 43932 Face 87861 3012 43933 33635 Face 87862 3012 22867 43933 Face 87863 22111 43934 8380 Face 87864 22111 7356 43934 Face 87865 12553 43935 23006 Face 87866 12553 2228 43935 Face 87867 12921 43936 44944 Face 87868 12921 24988 43936 Face 87869 12921 43937 39075 Face 87870 12921 758 43937 Face 87871 12501 43938 42718 Face 87872 12501 35457 43938 Face 87873 31730 43939 12899 Face 87874 31730 6164 43939 Face 87875 14890 43940 31946 Face 87876 43941 6674 43940 Face 87877 14890 43941 43940 Face 87878 14890 20409 43941 Face 87879 12783 43942 15785 Face 87880 12783 36634 43942 Face 87881 4362 43943 16996 Face 87882 4362 40156 43943 Face 87883 1228 43944 21755 Face 87884 1228 23768 43944 Face 87885 10670 43945 9271 Face 87886 10670 40996 43945 Face 87887 16136 43946 49989 Face 87888 16136 29120 43946 Face 87889 8691 43947 37036 Face 87890 8691 18876 43947 Face 87891 25094 43948 20978 Face 87892 45856 38392 43948 Face 87893 5747 43949 35724 Face 87894 5747 28750 43949 Face 87895 19955 43950 3084 Face 87896 19955 17310 43950 Face 87897 19362 43951 41030 Face 87898 19362 48182 43951 Face 87899 16687 43952 12164 Face 87900 16687 23941 43952 Face 87901 14321 43953 6577 Face 87902 14321 860 43953 Face 87903 24254 43954 35739 Face 87904 24254 5850 43954 Face 87905 13890 43955 28850 Face 87906 13890 78 43955 Face 87907 26556 43956 9935 Face 87908 26556 5328 43956 Face 87909 6277 43957 38637 Face 87910 6277 11476 43957 Face 87911 17137 43958 8395 Face 87912 17137 30886 43958 Face 87913 7700 43959 23060 Face 87914 7700 18176 43959 Face 87915 19659 43960 16859 Face 87916 19659 14054 43960 Face 87917 11444 43961 1469 Face 87918 11444 43005 43961 Face 87919 20584 43962 28467 Face 87920 20584 5786 43962 Face 87921 6275 43963 21869 Face 87922 6275 22324 43963 Face 87923 40792 43964 1267 Face 87924 40792 23249 43964 Face 87925 6934 43965 19920 Face 87926 6934 30723 43965 Face 87927 21398 43966 39024 Face 87928 21398 37749 43966 Face 87929 22318 43967 35851 Face 87930 45822 32114 43967 Face 87931 19776 43968 18062 Face 87932 19776 7748 43968 Face 87933 19364 43969 46134 Face 87934 19364 22941 43969 Face 87935 12842 43970 4888 Face 87936 12842 23556 43970 Face 87937 1773 43971 15386 Face 87938 1773 14346 43971 Face 87939 4794 43972 35515 Face 87940 4794 36672 43972 Face 87941 18178 43973 46656 Face 87942 18178 8929 43973 Face 87943 1663 43974 25702 Face 87944 45245 35776 43974 Face 87945 19312 43975 24582 Face 87946 19312 14571 43975 Face 87947 31274 43976 17945 Face 87948 31274 11764 43976 Face 87949 6567 43977 33113 Face 87950 6567 14660 43977 Face 87951 5770 43978 41442 Face 87952 5770 1866 43978 Face 87953 25456 43979 23948 Face 87954 25456 43980 43979 Face 87955 12196 43980 25456 Face 87956 45271 43979 43980 Face 87957 28518 43981 33088 Face 87958 28518 23908 43981 Face 87959 14698 43982 36550 Face 87960 14698 12819 43982 Face 87961 20281 43983 12748 Face 87962 20281 27126 43983 Face 87963 1919 43984 29449 Face 87964 1919 18417 43984 Face 87965 20019 43985 42395 Face 87966 20019 475 43985 Face 87967 18564 43986 35289 Face 87968 18564 26436 43986 Face 87969 10224 43987 42806 Face 87970 10224 25624 43987 Face 87971 29718 43988 27209 Face 87972 29718 30601 43988 Face 87973 508 43989 8741 Face 87974 508 14030 43989 Face 87975 1483 43990 7353 Face 87976 1483 11018 43990 Face 87977 12652 43991 34618 Face 87978 12652 38114 43991 Face 87979 10194 43992 39281 Face 87980 10194 20200 43992 Face 87981 29209 43993 45474 Face 87982 29209 3923 43993 Face 87983 17311 43994 40256 Face 87984 17311 14029 43994 Face 87985 7012 43995 30382 Face 87986 7012 21695 43995 Face 87987 643 43996 21866 Face 87988 643 34051 43996 Face 87989 34145 43997 10242 Face 87990 34145 29441 43997 Face 87991 18897 43998 12487 Face 87992 18897 24326 43998 Face 87993 3633 43999 8691 Face 87994 44811 45753 43999 Face 87995 15535 44000 6173 Face 87996 15535 27377 44000 Face 87997 8668 44001 19205 Face 87998 8668 5938 44001 Face 87999 11202 44002 5245 Face 88000 11202 47023 44002 Face 88001 24093 44003 11901 Face 88002 24093 193 44003 Face 88003 39932 44004 26399 Face 88004 39932 41385 44004 Face 88005 14797 44005 23772 Face 88006 14797 13366 44005 Face 88007 5252 44006 25424 Face 88008 5252 35672 44006 Face 88009 7359 44007 37288 Face 88010 7359 32880 44007 Face 88011 5610 44008 27231 Face 88012 5610 21530 44008 Face 88013 19702 44009 12950 Face 88014 19702 5820 44009 Face 88015 8331 44010 20900 Face 88016 8331 31499 44010 Face 88017 2850 44011 32076 Face 88018 44445 10617 44011 Face 88019 20767 44012 39393 Face 88020 48121 3 44012 Face 88021 8022 44013 14148 Face 88022 8022 34582 44013 Face 88023 14858 44014 8433 Face 88024 14858 30103 44014 Face 88025 22017 44015 39846 Face 88026 22017 944 44015 Face 88027 32928 44016 42972 Face 88028 32928 16602 44016 Face 88029 53 44017 23317 Face 88030 44018 41387 44017 Face 88031 53 44018 44017 Face 88032 44333 2384 44018 Face 88033 26878 44019 31197 Face 88034 26878 25087 44019 Face 88035 24433 44020 29130 Face 88036 24433 6416 44020 Face 88037 32034 44021 8657 Face 88038 32034 33689 44021 Face 88039 26870 44022 7045 Face 88040 26870 2021 44022 Face 88041 11563 44023 14428 Face 88042 11563 14877 44023 Face 88043 16545 44024 30004 Face 88044 16545 19656 44024 Face 88045 41250 44025 18257 Face 88046 41250 17982 44025 Face 88047 15704 44026 18467 Face 88048 15704 49950 44026 Face 88049 14842 44027 31404 Face 88050 14842 25125 44027 Face 88051 2111 44028 40584 Face 88052 2111 38981 44028 Face 88053 30776 44029 42409 Face 88054 30776 34933 44029 Face 88055 12286 44030 7701 Face 88056 12286 16724 44030 Face 88057 6352 44031 32240 Face 88058 6352 31164 44031 Face 88059 18117 44032 13913 Face 88060 18117 18118 44032 Face 88061 540 44033 27571 Face 88062 540 36812 44033 Face 88063 17651 44034 2927 Face 88064 17651 13650 44034 Face 88065 22643 44035 12685 Face 88066 22643 111 44035 Face 88067 11741 44036 32158 Face 88068 11741 32434 44036 Face 88069 3380 44037 5320 Face 88070 3380 43349 44037 Face 88071 19454 44038 9810 Face 88072 19454 36523 44038 Face 88073 48681 44039 32371 Face 88074 21135 31176 44039 Face 88075 12941 44040 35071 Face 88076 12941 28902 44040 Face 88077 20553 44041 19633 Face 88078 20553 2911 44041 Face 88079 16949 44042 41415 Face 88080 16949 10990 44042 Face 88081 20936 44043 41217 Face 88082 20936 16849 44043 Face 88083 6831 44044 42115 Face 88084 6831 24866 44044 Face 88085 19728 44045 4143 Face 88086 19728 26636 44045 Face 88087 1209 44046 10636 Face 88088 1209 5872 44046 Face 88089 36386 44047 45647 Face 88090 36386 11053 44047 Face 88091 22568 44048 16614 Face 88092 22568 29838 44048 Face 88093 6340 44049 48928 Face 88094 6340 16200 44049 Face 88095 37261 44050 40124 Face 88096 37261 36628 44050 Face 88097 5305 44051 18712 Face 88098 5305 15075 44051 Face 88099 23825 44052 39680 Face 88100 23825 32612 44052 Face 88101 16470 44053 910 Face 88102 16470 8995 44053 Face 88103 4688 44054 24183 Face 88104 4688 26850 44054 Face 88105 9348 44055 14541 Face 88106 9348 31653 44055 Face 88107 982 44056 10954 Face 88108 982 47079 44056 Face 88109 4411 44057 37901 Face 88110 44058 13958 44057 Face 88111 4411 44058 44057 Face 88112 4411 1921 44058 Face 88113 11504 44059 1810 Face 88114 11504 20410 44059 Face 88115 18040 44060 951 Face 88116 18040 693 44060 Face 88117 15873 44061 18584 Face 88118 15873 27625 44061 Face 88119 6262 44062 40986 Face 88120 6262 37365 44062 Face 88121 26901 44063 22944 Face 88122 26901 3548 44063 Face 88123 10064 44064 27984 Face 88124 10064 24414 44064 Face 88125 9931 44065 24199 Face 88126 9931 9932 44065 Face 88127 18354 44066 44128 Face 88128 18354 7469 44066 Face 88129 16385 44067 47826 Face 88130 16385 4022 44067 Face 88131 15192 44068 28028 Face 88132 15192 6763 44068 Face 88133 29626 44069 16876 Face 88134 29626 5726 44069 Face 88135 32280 44070 9783 Face 88136 32280 43797 44070 Face 88137 18171 44071 13648 Face 88138 18171 8335 44071 Face 88139 9373 44072 21525 Face 88140 9373 29874 44072 Face 88141 20542 44073 16210 Face 88142 20542 4530 44073 Face 88143 21932 44074 10514 Face 88144 21932 4751 44074 Face 88145 9766 44075 40695 Face 88146 44076 11336 44075 Face 88147 9766 44076 44075 Face 88148 9766 33443 44076 Face 88149 25374 44077 5622 Face 88150 25374 25375 44077 Face 88151 18251 44078 14353 Face 88152 18251 32700 44078 Face 88153 14393 44079 16640 Face 88154 14393 37234 44079 Face 88155 26581 44080 21704 Face 88156 26581 19557 44080 Face 88157 8365 44081 28784 Face 88158 8365 41659 44081 Face 88159 30133 44082 34267 Face 88160 30133 8207 44082 Face 88161 7036 44083 20125 Face 88162 7036 43465 44084 Face 88163 44083 44084 43465 Face 88164 44083 7036 44084 Face 88165 2223 44085 27914 Face 88166 2223 16183 44085 Face 88167 4894 44086 35170 Face 88168 48401 9019 44086 Face 88169 22530 44087 46982 Face 88170 22530 21839 44087 Face 88171 4532 44088 24663 Face 88172 4532 25531 44088 Face 88173 12591 44089 8355 Face 88174 12591 33448 44089 Face 88175 48055 44090 35116 Face 88176 9139 20182 44090 Face 88177 2721 44091 8512 Face 88178 2721 25939 44091 Face 88179 5877 44092 34705 Face 88180 5877 11539 44092 Face 88181 2883 44093 30312 Face 88182 2883 40334 44093 Face 88183 26094 44094 8090 Face 88184 26094 21567 44094 Face 88185 7791 44095 26910 Face 88186 7791 33116 44095 Face 88187 27044 44096 16396 Face 88188 27044 43780 44096 Face 88189 22236 44097 37733 Face 88190 22236 2693 44097 Face 88191 2864 44098 15667 Face 88192 2864 28705 44098 Face 88193 30905 44099 48791 Face 88194 30905 7328 44099 Face 88195 34814 44100 3916 Face 88196 34814 30338 44100 Face 88197 14050 44101 7626 Face 88198 14050 569 44101 Face 88199 48888 44102 43422 Face 88200 14711 20385 44102 Face 88201 19174 44103 25980 Face 88202 19174 1634 44103 Face 88203 2726 44104 14691 Face 88204 2726 31479 44104 Face 88205 15924 44105 1677 Face 88206 15924 42629 44105 Face 88207 44107 44106 29152 Face 88208 4020 12563 44106 Face 88209 4020 44107 26653 Face 88210 4020 44106 44107 Face 88211 44109 44108 10572 Face 88212 15498 43890 44108 Face 88213 15498 44109 39427 Face 88214 15498 44108 44109 Face 88215 354 44110 32385 Face 88216 354 26588 44110 Face 88217 20023 44111 32750 Face 88218 20023 24840 44111 Face 88219 15304 44112 24474 Face 88220 15304 34541 44112 Face 88221 23435 44113 47648 Face 88222 44114 37005 44113 Face 88223 23435 44114 44113 Face 88224 23435 12942 44114 Face 88225 6010 44115 33830 Face 88226 6010 23136 44115 Face 88227 9088 44116 44935 Face 88228 9088 44911 44116 Face 88229 34294 44117 4219 Face 88230 34294 18876 44117 Face 88231 6886 44118 15645 Face 88232 44996 4491 44118 Face 88233 23796 44119 8426 Face 88234 23796 21034 44119 Face 88235 31842 44120 5091 Face 88236 31842 48578 44120 Face 88237 35274 44121 5350 Face 88238 35274 40349 44121 Face 88239 2117 44122 37789 Face 88240 2117 25575 44122 Face 88241 27107 44123 38912 Face 88242 27107 33081 44123 Face 88243 12232 44124 46925 Face 88244 12232 36392 44124 Face 88245 20275 44125 11529 Face 88246 20275 4118 44125 Face 88247 4319 44126 15749 Face 88248 46098 6949 44126 Face 88249 12313 44127 7884 Face 88250 12313 47635 44127 Face 88251 5927 44128 13678 Face 88252 5927 18354 44128 Face 88253 1565 44129 36865 Face 88254 1565 32243 44129 Face 88255 632 44130 37297 Face 88256 632 26339 44130 Face 88257 21572 44131 42167 Face 88258 21572 6210 44131 Face 88259 11155 44132 18419 Face 88260 11155 27727 44132 Face 88261 11374 44133 28586 Face 88262 11374 30512 44133 Face 88263 1706 44134 9652 Face 88264 44135 17506 44134 Face 88265 1706 44135 44134 Face 88266 1706 30446 44135 Face 88267 20931 44136 40088 Face 88268 20931 32645 44136 Face 88269 18997 44137 13433 Face 88270 18997 27117 44137 Face 88271 1065 44138 33546 Face 88272 1065 22726 44138 Face 88273 2162 44139 31577 Face 88274 2162 30290 44139 Face 88275 25145 44140 16449 Face 88276 25145 12510 44140 Face 88277 6747 44141 10834 Face 88278 6747 22834 44141 Face 88279 44141 44142 10834 Face 88280 44141 19184 44142 Face 88281 12549 44143 32489 Face 88282 12549 4104 44143 Face 88283 26786 44144 34597 Face 88284 26786 10767 44144 Face 88285 21384 44145 14921 Face 88286 21384 21824 44145 Face 88287 14892 44146 17002 Face 88288 14892 49889 44146 Face 88289 48593 44147 31195 Face 88290 18089 10117 44147 Face 88291 6440 44148 19536 Face 88292 6440 30636 44148 Face 88293 7408 44149 34431 Face 88294 7408 22567 44149 Face 88295 28343 44150 9381 Face 88296 28343 19041 44150 Face 88297 13611 44151 13610 Face 88298 13611 41252 44151 Face 88299 4275 44152 15473 Face 88300 4275 14833 44152 Face 88301 11874 44153 30088 Face 88302 11874 19723 44153 Face 88303 12951 44154 9503 Face 88304 12951 16291 44154 Face 88305 20900 44155 3130 Face 88306 20900 6513 44155 Face 88307 47990 44156 27709 Face 88308 47990 20420 44156 Face 88309 19616 44157 2177 Face 88310 19616 13636 44157 Face 88311 20938 44158 12289 Face 88312 46994 35786 44158 Face 88313 16187 44159 42446 Face 88314 16187 44855 44159 Face 88315 16187 44160 44855 Face 88316 16187 45132 44160 Face 88317 23255 44161 35997 Face 88318 23255 9962 44161 Face 88319 28490 44162 11846 Face 88320 28490 13991 44162 Face 88321 180 44163 19644 Face 88322 180 23571 44163 Face 88323 32347 44164 42821 Face 88324 32347 37849 44164 Face 88325 1691 44165 18742 Face 88326 1691 9298 44165 Face 88327 894 44166 31158 Face 88328 894 26243 44166 Face 88329 20929 44167 596 Face 88330 20929 32365 44167 Face 88331 5912 44168 12527 Face 88332 5912 26178 44168 Face 88333 43530 44169 24752 Face 88334 43530 6259 44169 Face 88335 44171 44170 45581 Face 88336 44171 10590 44170 Face 88337 306 44171 43499 Face 88338 306 10590 44171 Face 88339 8195 44172 32258 Face 88340 8195 20576 44172 Face 88341 44174 44173 37920 Face 88342 120 37121 44173 Face 88343 120 44174 33894 Face 88344 120 44173 44174 Face 88345 3733 44175 5677 Face 88346 3733 38005 44175 Face 88347 19693 44176 14818 Face 88348 19693 14940 44176 Face 88349 18303 44177 49347 Face 88350 18303 27000 44177 Face 88351 3657 44178 32912 Face 88352 3657 41181 44178 Face 88353 3535 44179 20732 Face 88354 3535 32257 44179 Face 88355 21496 44180 4659 Face 88356 21496 7896 44180 Face 88357 14107 44181 22337 Face 88358 14107 30471 44181 Face 88359 7534 44182 18001 Face 88360 7534 7533 44182 Face 88361 4511 44183 37379 Face 88362 4511 24820 44183 Face 88363 19218 44184 13561 Face 88364 19218 19217 44184 Face 88365 44534 44185 4641 Face 88366 24666 6077 44185 Face 88367 2891 44186 17093 Face 88368 44187 11337 44186 Face 88369 2891 44187 44186 Face 88370 2891 7065 44187 Face 88371 17074 44188 7824 Face 88372 17074 36794 44188 Face 88373 4635 44189 15467 Face 88374 4635 13552 44189 Face 88375 30005 44190 8122 Face 88376 30005 20927 44190 Face 88377 10171 44191 29903 Face 88378 10171 757 44191 Face 88379 14204 44192 14205 Face 88380 44193 4162 44192 Face 88381 14204 44193 44192 Face 88382 48836 9418 44193 Face 88383 21242 44194 8049 Face 88384 21242 21648 44194 Face 88385 14492 44195 37744 Face 88386 14492 40635 44195 Face 88387 19130 44196 25224 Face 88388 19130 3452 48490 Face 88389 13608 44197 33624 Face 88390 13608 9238 44197 Face 88391 19124 44198 10665 Face 88392 19124 1419 44198 Face 88393 11800 44199 36937 Face 88394 11800 45176 44199 Face 88395 5002 44200 47939 Face 88396 5002 33941 44200 Face 88397 8703 44201 23580 Face 88398 8703 16191 44201 Face 88399 4566 44202 12167 Face 88400 4566 43766 44202 Face 88401 3607 44203 23459 Face 88402 44204 33955 44203 Face 88403 3607 44204 44203 Face 88404 47689 14657 44204 Face 88405 11281 44205 4050 Face 88406 11281 21939 44205 Face 88407 1374 44206 40769 Face 88408 1374 8086 44206 Face 88409 26560 44207 33640 Face 88410 26560 42913 44207 Face 88411 6579 44208 27954 Face 88412 6579 13840 44208 Face 88413 15693 44209 7979 Face 88414 15693 35960 44209 Face 88415 8464 44210 27343 Face 88416 44211 20222 44210 Face 88417 8464 44211 44210 Face 88418 8464 26052 44211 Face 88419 45782 44212 18952 Face 88420 45782 28695 44212 Face 88421 44212 44213 18952 Face 88422 44212 28695 44213 Face 88423 22822 44214 32282 Face 88424 22822 27200 44214 Face 88425 19581 44215 7018 Face 88426 19581 9574 44215 Face 88427 31235 44216 1450 Face 88428 31235 6012 44216 Face 88429 41949 44217 31131 Face 88430 41949 38186 44217 Face 88431 22950 44218 1295 Face 88432 22950 5625 44218 Face 88433 27433 44219 41215 Face 88434 27433 32805 44219 Face 88435 1855 45768 41988 Face 88436 1855 27003 45768 Face 88437 28300 44221 41270 Face 88438 28300 28301 44221 Face 88439 8406 44222 38804 Face 88440 44551 39390 44222 Face 88441 22317 44223 5742 Face 88442 22317 5110 44223 Face 88443 8538 44224 25688 Face 88444 8538 31554 44224 Face 88445 14564 44225 46991 Face 88446 14564 35293 44225 Face 88447 1102 44226 21640 Face 88448 1102 6309 44226 Face 88449 11299 44227 41483 Face 88450 11299 17888 44227 Face 88451 16091 44228 36971 Face 88452 16091 38414 44228 Face 88453 12360 44229 30343 Face 88454 12360 27520 44229 Face 88455 19606 44230 27096 Face 88456 19606 14281 44230 Face 88457 24126 44231 41766 Face 88458 24126 27427 44231 Face 88459 13791 44232 17839 Face 88460 13791 4711 44232 Face 88461 11662 44233 3493 Face 88462 11662 39557 44233 Face 88463 24421 44234 19319 Face 88464 24421 42380 44234 Face 88465 10742 44235 46225 Face 88466 10742 66 44235 Face 88467 10358 44236 1698 Face 88468 10358 44237 44236 Face 88469 43865 44237 8081 Face 88470 43865 44236 44237 Face 88471 7913 44238 17539 Face 88472 7913 21563 44238 Face 88473 10124 44239 23295 Face 88474 10124 16053 44239 Face 88475 6140 44240 36734 Face 88476 6140 45755 44240 Face 88477 44242 44241 4921 Face 88478 2475 49418 44241 Face 88479 2475 44242 4921 Face 88480 2475 44241 44242 Face 88481 47063 44243 43452 Face 88482 6711 23467 44243 Face 88483 4707 44244 25316 Face 88484 4707 43180 44244 Face 88485 14424 44245 37477 Face 88486 14424 43111 44245 Face 88487 17327 44246 36257 Face 88488 17327 5268 44246 Face 88489 44248 44247 15576 Face 88490 10006 40212 44247 Face 88491 10006 44248 40224 Face 88492 10006 44247 44248 Face 88493 15204 44249 35603 Face 88494 15204 11467 44249 Face 88495 26663 44250 8739 Face 88496 26663 12158 44250 Face 88497 17443 44251 7185 Face 88498 17443 46124 44251 Face 88499 28058 44252 41451 Face 88500 28058 5774 44252 Face 88501 14114 44253 23115 Face 88502 14114 13563 44253 Face 88503 16186 44254 37789 Face 88504 16186 5450 44254 Face 88505 17252 44255 31394 Face 88506 17252 23721 44255 Face 88507 23154 44256 29090 Face 88508 23154 16430 44256 Face 88509 1595 44257 27097 Face 88510 1595 44258 44257 Face 88511 17421 44258 1595 Face 88512 17421 44257 44258 Face 88513 5947 44259 7814 Face 88514 5947 624 44259 Face 88515 23988 44260 10035 Face 88516 23988 29034 44260 Face 88517 10660 44261 17207 Face 88518 10660 28919 44261 Face 88519 24899 44262 40190 Face 88520 24899 3803 44262 Face 88521 44264 44263 45265 Face 88522 32273 33512 44263 Face 88523 32273 44264 8345 Face 88524 32273 44263 44264 Face 88525 5255 44265 32636 Face 88526 5255 27221 44265 Face 88527 30381 44266 21540 Face 88528 30381 28389 44266 Face 88529 23462 44267 20796 Face 88530 23462 7350 44267 Face 88531 5602 44268 18060 Face 88532 5602 12536 44268 Face 88533 11936 44269 2858 Face 88534 44270 17263 44269 Face 88535 11936 44270 44269 Face 88536 11936 30679 44270 Face 88537 24446 44271 41957 Face 88538 24446 41110 44271 Face 88539 7315 44272 10104 Face 88540 7315 23785 44272 Face 88541 13685 44273 32516 Face 88542 13685 21868 44273 Face 88543 5023 44274 37332 Face 88544 5023 26936 44274 Face 88545 346 44275 7380 Face 88546 346 39579 44275 Face 88547 7155 44276 31125 Face 88548 7155 34625 44276 Face 88549 48331 44277 18552 Face 88550 2865 22295 44277 Face 88551 13320 44278 31857 Face 88552 13320 37621 44278 Face 88553 29325 44279 38081 Face 88554 29325 2063 44279 Face 88555 16903 44280 4731 Face 88556 16903 45808 44280 Face 88557 33123 44281 20759 Face 88558 33123 4357 44281 Face 88559 16409 44282 19502 Face 88560 16409 12948 44282 Face 88561 3265 44283 45013 Face 88562 3265 26886 44283 Face 88563 44285 44284 35492 Face 88564 44286 24030 44284 Face 88565 14838 44285 37338 Face 88566 14838 44284 44285 Face 88567 14838 44286 44284 Face 88568 14838 36435 44286 Face 88569 18708 44287 44288 Face 88570 18708 10170 44287 Face 88571 18709 44288 44287 Face 88572 18709 10435 44288 Face 88573 8547 44289 49902 Face 88574 8547 18175 44289 Face 88575 9368 44290 21128 Face 88576 9368 41418 44290 Face 88577 32614 44291 1302 Face 88578 32614 46278 44291 Face 88579 13683 44292 7402 Face 88580 47807 48104 44292 Face 88581 7978 44293 28428 Face 88582 7978 32927 44293 Face 88583 20455 44294 38571 Face 88584 20455 42834 44294 Face 88585 15451 44295 43019 Face 88586 15451 28110 44295 Face 88587 14711 44296 20385 Face 88588 48887 16205 44296 Face 88589 44298 44297 4898 Face 88590 23585 21770 44297 Face 88591 23585 44298 36908 Face 88592 23585 44297 44298 Face 88593 5597 44299 28177 Face 88594 5597 28895 44299 Face 88595 44301 44300 34421 Face 88596 44301 8859 44300 Face 88597 3597 44301 34421 Face 88598 3597 31249 44301 Face 88599 20973 44302 44981 Face 88600 20973 4558 44302 Face 88601 3259 44303 13033 Face 88602 3259 19223 44303 Face 88603 16400 44304 47369 Face 88604 16400 9436 44304 Face 88605 11162 44305 3664 Face 88606 11162 39504 44305 Face 88607 3973 44306 29723 Face 88608 3973 48692 44306 Face 88609 10299 44307 18737 Face 88610 10299 24368 44307 Face 88611 1697 44308 35183 Face 88612 1697 28612 44308 Face 88613 429 44309 34162 Face 88614 429 22865 44309 Face 88615 1371 44310 14388 Face 88616 1371 22986 44310 Face 88617 18658 44311 17929 Face 88618 18658 1980 44311 Face 88619 11650 44312 37351 Face 88620 11650 43882 44312 Face 88621 11583 44313 22271 Face 88622 11583 18723 44313 Face 88623 25621 44314 23 Face 88624 25621 39738 44314 Face 88625 14143 44315 16966 Face 88626 14143 18796 44315 Face 88627 18497 44316 20203 Face 88628 18497 34069 44316 Face 88629 4928 44317 9371 Face 88630 4928 27692 44317 Face 88631 8387 44318 19223 Face 88632 8387 39870 44318 Face 88633 13715 44319 48776 Face 88634 13715 7643 44319 Face 88635 11033 44320 8816 Face 88636 11033 29557 44320 Face 88637 27074 44321 29835 Face 88638 27074 14589 44321 Face 88639 20005 44322 11739 Face 88640 20005 20004 44322 Face 88641 25674 44323 39770 Face 88642 25674 34948 44323 Face 88643 11044 44324 39318 Face 88644 11044 31891 44324 Face 88645 22360 44325 7554 Face 88646 22360 11031 44325 Face 88647 13098 44326 45143 Face 88648 13098 4628 44326 Face 88649 12452 44327 34543 Face 88650 12452 364 44327 Face 88651 7626 44328 10051 Face 88652 7626 40125 44328 Face 88653 46390 44329 30326 Face 88654 11771 28767 44329 Face 88655 11215 44330 40093 Face 88656 11215 6770 44330 Face 88657 3310 44331 28350 Face 88658 3310 42249 44331 Face 88659 32008 44332 11005 Face 88660 32008 40505 44332 Face 88661 53 44333 44018 Face 88662 53 31030 44333 Face 88663 1943 44334 24154 Face 88664 1943 17220 44334 Face 88665 17507 44335 38149 Face 88666 17507 26249 44335 Face 88667 27884 44336 2953 Face 88668 27884 15962 44336 Face 88669 2656 44337 13765 Face 88670 2656 12260 44337 Face 88671 814 44338 27228 Face 88672 814 17096 44338 Face 88673 3358 44339 15836 Face 88674 3358 14222 44339 Face 88675 6547 44340 45208 Face 88676 6547 42386 44340 Face 88677 8220 44341 12728 Face 88678 8220 19846 44341 Face 88679 943 44342 25598 Face 88680 943 15573 44342 Face 88681 28824 44343 28825 Face 88682 28824 19736 44343 Face 88683 7645 44344 13649 Face 88684 7645 28037 44344 Face 88685 32886 44345 46537 Face 88686 32886 16277 44345 Face 88687 12760 44346 42485 Face 88688 12760 2921 44346 Face 88689 7346 44347 38337 Face 88690 7346 36921 44347 Face 88691 34168 44348 41061 Face 88692 34168 27628 44348 Face 88693 29417 44349 37410 Face 88694 29417 18100 44349 Face 88695 20921 44350 30271 Face 88696 20921 16230 44350 Face 88697 1236 44351 22088 Face 88698 1236 17436 44351 Face 88699 18491 44352 26487 Face 88700 18491 7077 44352 Face 88701 14744 44353 43733 Face 88702 14744 28321 44353 Face 88703 28260 44354 27795 Face 88704 28260 6005 44354 Face 88705 1597 44355 42517 Face 88706 1597 29970 44355 Face 88707 16722 44356 7224 Face 88708 16722 39470 44356 Face 88709 9891 44357 18350 Face 88710 9891 31470 44357 Face 88711 23782 44358 33353 Face 88712 23782 10239 44358 Face 88713 17381 44359 6020 Face 88714 17381 16524 44359 Face 88715 22043 44360 39159 Face 88716 22043 3237 44360 Face 88717 20601 44361 38928 Face 88718 20601 32078 44361 Face 88719 29327 44362 17682 Face 88720 29327 6530 44362 Face 88721 7895 44363 48232 Face 88722 7895 39231 44363 Face 88723 9858 44364 28288 Face 88724 9858 3937 44364 Face 88725 3523 44365 34364 Face 88726 3523 32153 44365 Face 88727 15123 44366 9016 Face 88728 15123 32015 44366 Face 88729 12264 44367 21733 Face 88730 12264 39078 44367 Face 88731 2378 44368 2806 Face 88732 2378 39758 44368 Face 88733 10642 44369 25651 Face 88734 10642 36175 44369 Face 88735 5502 44370 18068 Face 88736 5502 30406 44370 Face 88737 25402 44371 5377 Face 88738 25402 35450 44371 Face 88739 3636 44372 11354 Face 88740 3636 37693 44372 Face 88741 44374 44373 1338 Face 88742 3227 48436 44373 Face 88743 3227 44374 33771 Face 88744 3227 44373 44374 Face 88745 1402 44375 27540 Face 88746 1402 38135 44375 Face 88747 2223 44376 29108 Face 88748 2223 27914 44376 Face 88749 10160 44377 973 Face 88750 10160 4054 44377 Face 88751 4254 44378 3783 Face 88752 4254 32105 44378 Face 88753 22432 44379 32720 Face 88754 22432 16739 44379 Face 88755 3306 44380 651 Face 88756 3306 36186 44380 Face 88757 44382 44381 41488 Face 88758 44382 25050 44381 Face 88759 13656 44382 41488 Face 88760 13656 6689 44382 Face 88761 36136 44383 30189 Face 88762 36136 1421 44383 Face 88763 3931 44384 29963 Face 88764 3931 13708 44384 Face 88765 297 44385 35185 Face 88766 297 23083 44385 Face 88767 9127 44386 29964 Face 88768 9127 39241 44386 Face 88769 25627 44387 14570 Face 88770 25627 4767 44387 Face 88771 24487 44388 24486 Face 88772 24487 40463 44388 Face 88773 22753 44389 22752 Face 88774 22753 6214 44389 Face 88775 3389 44390 26140 Face 88776 3389 37676 44390 Face 88777 33372 44391 3780 Face 88778 33372 30894 44391 Face 88779 29375 44392 15114 Face 88780 29375 2692 44392 Face 88781 10453 44393 24935 Face 88782 10453 10454 44393 Face 88783 16424 44394 24261 Face 88784 16424 49173 44394 Face 88785 45666 44395 17106 Face 88786 4314 12024 44395 Face 88787 18046 44396 35762 Face 88788 49696 30698 44396 Face 88789 28525 44397 3070 Face 88790 28525 185 44397 Face 88791 9684 44398 1721 Face 88792 9684 28310 44398 Face 88793 8828 44399 29719 Face 88794 44400 20949 44399 Face 88795 8828 44400 44399 Face 88796 8828 1851 44400 Face 88797 26049 44401 19666 Face 88798 44402 32609 44401 Face 88799 26049 44402 44401 Face 88800 26049 11423 44402 Face 88801 18725 44403 11542 Face 88802 18725 33458 44403 Face 88803 31554 44404 8150 Face 88804 31554 8538 44404 Face 88805 9700 44405 45023 Face 88806 9700 34363 44405 Face 88807 8312 44406 25760 Face 88808 8312 33703 44406 Face 88809 10131 44407 16288 Face 88810 10131 19373 44407 Face 88811 22005 44408 29814 Face 88812 22005 26551 44408 Face 88813 10312 44409 28081 Face 88814 10312 37964 44409 Face 88815 44409 44410 47297 Face 88816 44409 37964 44410 Face 88817 28133 44411 31110 Face 88818 28133 48636 44411 Face 88819 34715 44412 30581 Face 88820 34715 5553 44412 Face 88821 6077 44413 18085 Face 88822 6077 24666 44413 Face 88823 14058 44414 40805 Face 88824 14058 42984 44414 Face 88825 6208 44415 691 Face 88826 6208 19692 44415 Face 88827 9951 44416 3714 Face 88828 9951 4403 44416 Face 88829 11498 44417 17912 Face 88830 11498 8684 44417 Face 88831 26949 44418 8222 Face 88832 26949 4586 44418 Face 88833 30301 44419 10737 Face 88834 30301 42229 44419 Face 88835 29594 44420 31616 Face 88836 29594 16190 44420 Face 88837 12335 44421 34300 Face 88838 12335 26370 44421 Face 88839 12567 44422 35535 Face 88840 12567 47810 44422 Face 88841 23840 44423 9494 Face 88842 23840 31441 44423 Face 88843 23620 44424 40825 Face 88844 23620 7622 44424 Face 88845 29322 44425 20327 Face 88846 29322 36359 44425 Face 88847 37998 44426 20329 Face 88848 37998 40339 44426 Face 88849 1589 44427 23298 Face 88850 44428 37764 44427 Face 88851 1589 44428 44427 Face 88852 1589 11421 44428 Face 88853 999 44429 24850 Face 88854 999 6087 44429 Face 88855 47727 44430 21394 Face 88856 11986 1103 44430 Face 88857 18304 44431 27565 Face 88858 18304 30334 44431 Face 88859 9126 44432 13032 Face 88860 9126 37182 44432 Face 88861 3932 44433 4367 Face 88862 3932 30651 44433 Face 88863 3524 44434 46466 Face 88864 49271 7916 44434 Face 88865 4198 44435 31299 Face 88866 4198 30854 44435 Face 88867 12543 44436 13570 Face 88868 12543 10779 44436 Face 88869 25616 44437 6134 Face 88870 25616 6614 44437 Face 88871 28263 44438 16208 Face 88872 28263 32849 44438 Face 88873 541 44439 29256 Face 88874 541 22094 44439 Face 88875 38610 44440 49651 Face 88876 38610 5037 44440 Face 88877 44634 44441 23831 Face 88878 13623 33179 44441 Face 88879 15669 44442 16252 Face 88880 15669 7073 44442 Face 88881 1878 44443 11720 Face 88882 1878 19902 44443 Face 88883 22141 44444 36185 Face 88884 22141 41145 44444 Face 88885 2850 44445 44011 Face 88886 2850 25897 44445 Face 88887 6071 44446 28934 Face 88888 6071 15178 44446 Face 88889 1015 44447 13079 Face 88890 1015 33893 44447 Face 88891 17598 44448 5793 Face 88892 17598 2656 44448 Face 88893 11152 44449 9024 Face 88894 11152 39510 44449 Face 88895 28692 44450 26869 Face 88896 28692 13290 44450 Face 88897 4311 44451 40157 Face 88898 4311 40113 44451 Face 88899 48315 44452 3325 Face 88900 18837 32922 44452 Face 88901 16724 44453 38484 Face 88902 16724 45603 44453 Face 88903 26085 44454 19556 Face 88904 26085 7120 44454 Face 88905 34064 44455 38646 Face 88906 34064 2664 44455 Face 88907 12122 44456 38372 Face 88908 12122 19049 44456 Face 88909 2288 44457 30454 Face 88910 2288 25994 44457 Face 88911 2100 44458 3875 Face 88912 2100 13196 44458 Face 88913 7133 44459 48265 Face 88914 44460 38867 44459 Face 88915 7133 44460 44459 Face 88916 7133 35525 44460 Face 88917 4141 44461 12169 Face 88918 4141 41271 44461 Face 88919 17155 44462 15162 Face 88920 17155 11657 44462 Face 88921 21047 44463 13653 Face 88922 21047 33668 44463 Face 88923 33589 44464 49381 Face 88924 33589 2810 44464 Face 88925 6951 44465 7826 Face 88926 6951 22761 44465 Face 88927 17370 44466 4037 Face 88928 17370 47651 44466 Face 88929 17370 44467 12852 Face 88930 17370 34486 44467 Face 88931 15853 44468 27905 Face 88932 15853 43771 44468 Face 88933 724 44469 23711 Face 88934 724 35439 44469 Face 88935 18299 44470 23276 Face 88936 18299 24576 44470 Face 88937 32190 44471 15194 Face 88938 32190 40121 44471 Face 88939 15699 44472 28010 Face 88940 15699 1221 44472 Face 88941 19738 44473 8234 Face 88942 19738 7963 44473 Face 88943 14028 44474 5259 Face 88944 14028 21597 44474 Face 88945 26045 44475 16621 Face 88946 26045 21768 44475 Face 88947 7473 44476 37185 Face 88948 7473 46590 44476 Face 88949 18140 44477 28297 Face 88950 18140 43423 44477 Face 88951 7953 44478 16760 Face 88952 7953 26432 44478 Face 88953 8297 44479 22856 Face 88954 8297 17744 44479 Face 88955 12279 44480 21051 Face 88956 44482 24007 44480 Face 88957 12279 44482 44480 Face 88958 12279 19657 44481 Face 88959 44481 44482 12279 Face 88960 44481 24007 44482 Face 88961 14780 44483 164 Face 88962 14780 34389 44483 Face 88963 13769 44484 3723 Face 88964 13769 35417 44484 Face 88965 20262 44485 31059 Face 88966 20262 8471 44485 Face 88967 31088 44486 862 Face 88968 31088 15516 44486 Face 88969 12542 44487 47821 Face 88970 12542 36153 44487 Face 88971 4839 44488 44006 Face 88972 4839 41709 44488 Face 88973 8342 44489 25653 Face 88974 8342 31391 44489 Face 88975 8855 44490 10681 Face 88976 8855 32157 44490 Face 88977 15223 44491 46774 Face 88978 15223 39010 44491 Face 88979 47996 44492 22391 Face 88980 32997 81 44492 Face 88981 13191 44493 49334 Face 88982 13191 31826 44493 Face 88983 34819 44494 28358 Face 88984 34819 14235 44494 Face 88985 4415 44495 12975 Face 88986 4415 48866 44495 Face 88987 44497 44496 5128 Face 88988 11424 40216 44496 Face 88989 11424 48542 4638 Face 88990 11424 44496 44497 Face 88991 14829 44498 26519 Face 88992 14829 40449 44498 Face 88993 26129 44499 9675 Face 88994 26129 28802 44499 Face 88995 10751 44500 21152 Face 88996 10751 15739 44500 Face 88997 12329 44501 47028 Face 88998 12329 12263 44501 Face 88999 29767 44502 3661 Face 89000 29767 10655 44502 Face 89001 29784 44503 42982 Face 89002 29784 27456 44503 Face 89003 9169 44504 16568 Face 89004 44505 3271 44504 Face 89005 9169 44505 44504 Face 89006 9169 14947 44505 Face 89007 33089 44506 13409 Face 89008 33089 4219 44506 Face 89009 12170 44507 36891 Face 89010 12170 47852 44507 Face 89011 18623 44508 34672 Face 89012 18623 3023 44508 Face 89013 6728 44509 33122 Face 89014 44510 27595 44509 Face 89015 6728 44510 44509 Face 89016 6728 48160 44510 Face 89017 2550 44511 49113 Face 89018 2550 38298 44511 Face 89019 16208 44512 29894 Face 89020 16208 44438 44512 Face 89021 44514 44513 2247 Face 89022 7719 11126 44513 Face 89023 7719 44514 15097 Face 89024 7719 44513 44514 Face 89025 42056 44515 15802 Face 89026 42056 17852 44515 Face 89027 32079 44516 10702 Face 89028 32079 11183 44516 Face 89029 13107 44517 43178 Face 89030 13107 24303 44517 Face 89031 44519 44518 26211 Face 89032 44519 41579 44518 Face 89033 1477 44519 26211 Face 89034 1477 7773 44519 Face 89035 6113 44520 9875 Face 89036 6113 15502 44520 Face 89037 2788 44521 38475 Face 89038 2788 46259 44521 Face 89039 12414 44522 5537 Face 89040 12414 21356 44522 Face 89041 1838 44523 14223 Face 89042 1838 39253 44523 Face 89043 23330 44524 23329 Face 89044 23330 6660 44524 Face 89045 16118 44525 39418 Face 89046 16118 28087 44525 Face 89047 7433 44526 43512 Face 89048 7433 15848 44526 Face 89049 35064 44527 44368 Face 89050 35064 6245 44527 Face 89051 19925 44528 32599 Face 89052 19925 443 44528 Face 89053 1171 44529 36853 Face 89054 48739 27843 44529 Face 89055 6577 44530 14321 Face 89056 6577 22407 44530 Face 89057 27542 44531 27512 Face 89058 27542 23766 44531 Face 89059 14962 44532 3590 Face 89060 14962 20394 44532 Face 89061 44939 44533 17338 Face 89062 14000 46074 44533 Face 89063 24666 44534 5609 Face 89064 24666 44185 44534 Face 89065 6809 44535 34603 Face 89066 6809 39444 44535 Face 89067 6947 44536 20927 Face 89068 6947 14269 44536 Face 89069 32053 44537 10316 Face 89070 32053 32193 44537 Face 89071 34938 44538 23227 Face 89072 34938 20534 44538 Face 89073 8890 44539 35791 Face 89074 8890 27897 44539 Face 89075 20342 44540 21722 Face 89076 20342 24942 44540 Face 89077 20965 44541 22213 Face 89078 20965 7609 44541 Face 89079 16019 44542 37899 Face 89080 16019 34255 44542 Face 89081 7240 44543 56 Face 89082 7240 42790 44543 Face 89083 33846 44544 47973 Face 89084 33846 35757 44544 Face 89085 9324 44545 30333 Face 89086 9324 36885 44545 Face 89087 713 44546 42009 Face 89088 713 35625 44546 Face 89089 4256 44547 46502 Face 89090 4256 29481 44547 Face 89091 4256 44548 29481 Face 89092 4256 37388 44548 Face 89093 5329 44549 26794 Face 89094 5329 23780 44549 Face 89095 5038 44550 5039 Face 89096 5038 46819 44550 Face 89097 8406 44551 44222 Face 89098 8406 42052 44551 Face 89099 3239 44552 13364 Face 89100 3239 16511 44552 Face 89101 8726 44553 19749 Face 89102 8726 31651 44553 Face 89103 44555 44554 17796 Face 89104 11235 31580 44554 Face 89105 11235 44555 1702 Face 89106 11235 44554 44555 Face 89107 40676 44556 40677 Face 89108 40676 12103 44556 Face 89109 46953 44557 31791 Face 89110 10357 24948 44557 Face 89111 15651 44558 40320 Face 89112 15651 3105 44558 Face 89113 6694 44559 36855 Face 89114 6694 21485 44559 Face 89115 15106 44560 14327 Face 89116 44780 15341 44560 Face 89117 16286 44561 24839 Face 89118 16286 45564 44561 Face 89119 9774 44562 13586 Face 89120 9774 19207 44562 Face 89121 12465 44563 5688 Face 89122 12465 36546 44563 Face 89123 27889 44564 22970 Face 89124 27889 11827 44564 Face 89125 14489 44565 34241 Face 89126 49041 35744 44565 Face 89127 44567 44566 38102 Face 89128 3405 34488 44566 Face 89129 3405 44567 30989 Face 89130 3405 44566 44567 Face 89131 15159 44568 24147 Face 89132 15159 9214 44568 Face 89133 20525 44569 20524 Face 89134 20525 8019 44569 Face 89135 25707 44570 39686 Face 89136 25707 15879 44570 Face 89137 6706 44571 21720 Face 89138 6706 24461 44571 Face 89139 96 44572 42900 Face 89140 96 21544 44572 Face 89141 21521 44573 38859 Face 89142 21521 13540 44573 Face 89143 6401 44574 33375 Face 89144 6401 22477 44574 Face 89145 341 44575 34087 Face 89146 341 16006 44575 Face 89147 4946 44576 23474 Face 89148 4946 25198 44576 Face 89149 27238 44577 1341 Face 89150 27238 9276 44577 Face 89151 4156 44578 30292 Face 89152 4156 29555 44578 Face 89153 14268 44579 30230 Face 89154 14268 40219 44579 Face 89155 30526 44580 4000 Face 89156 30526 49033 44580 Face 89157 26183 44581 33215 Face 89158 26183 9217 44581 Face 89159 9240 44582 30147 Face 89160 9240 2929 44582 Face 89161 3920 44583 7706 Face 89162 3920 19836 44583 Face 89163 4827 44584 17084 Face 89164 47788 12577 44584 Face 89165 6677 44585 37093 Face 89166 6677 20910 44585 Face 89167 20967 44586 35277 Face 89168 20967 30749 44586 Face 89169 7788 44587 19799 Face 89170 7788 14597 44587 Face 89171 19578 44588 4754 Face 89172 19578 5564 44588 Face 89173 23987 44589 18385 Face 89174 23987 23433 44589 Face 89175 17448 44590 1894 Face 89176 17448 6318 44590 Face 89177 1774 44591 33550 Face 89178 1774 22888 44591 Face 89179 24583 44592 23861 Face 89180 24583 38588 44592 Face 89181 16883 44593 17423 Face 89182 16883 38379 44593 Face 89183 356 44594 22386 Face 89184 356 37208 44594 Face 89185 44596 44595 25983 Face 89186 10256 45299 44595 Face 89187 44597 44596 29666 Face 89188 10256 44595 44596 Face 89189 10256 44597 37815 Face 89190 10256 44596 44597 Face 89191 2305 44598 31344 Face 89192 44723 7039 44598 Face 89193 12416 44599 41936 Face 89194 12416 23656 44599 Face 89195 11204 44600 38283 Face 89196 11204 44306 44600 Face 89197 16650 44601 12597 Face 89198 16650 35379 44601 Face 89199 6055 44602 25830 Face 89200 6055 49650 44602 Face 89201 13742 44603 23505 Face 89202 13742 12291 44603 Face 89203 16587 44604 25462 Face 89204 49544 9020 44604 Face 89205 22578 44605 31785 Face 89206 22578 3506 44605 Face 89207 7579 44606 40544 Face 89208 7579 10717 44606 Face 89209 683 44607 41333 Face 89210 683 26075 44607 Face 89211 21905 44608 14699 Face 89212 21905 21906 44608 Face 89213 6993 44609 43727 Face 89214 6993 46769 44609 Face 89215 6520 44610 10518 Face 89216 6520 36506 44610 Face 89217 16268 44611 25481 Face 89218 16268 1948 44611 Face 89219 15169 44612 39831 Face 89220 15169 4995 44612 Face 89221 10717 44613 28157 Face 89222 10717 17340 44613 Face 89223 12226 44614 32564 Face 89224 12226 2505 44614 Face 89225 3021 44615 41948 Face 89226 3021 37082 44615 Face 89227 13478 44616 19712 Face 89228 13478 24000 44616 Face 89229 3559 44617 12571 Face 89230 3559 18402 44617 Face 89231 5478 44618 39947 Face 89232 5478 34450 44618 Face 89233 18245 44619 31695 Face 89234 18245 150 44619 Face 89235 20402 44620 33976 Face 89236 20402 30035 44620 Face 89237 114 44621 32166 Face 89238 114 22741 44621 Face 89239 3081 44622 31142 Face 89240 45184 26437 44622 Face 89241 4410 44623 31066 Face 89242 4410 26207 44623 Face 89243 20031 44624 33707 Face 89244 20031 44625 44624 Face 89245 33446 44625 44966 Face 89246 33446 44624 44625 Face 89247 16112 44626 3720 Face 89248 16112 9874 44626 Face 89249 23232 44627 5059 Face 89250 23232 4426 44627 Face 89251 1417 44628 31285 Face 89252 1417 36339 44628 Face 89253 25732 44629 18797 Face 89254 25732 3614 44629 Face 89255 438 44630 14436 Face 89256 438 6124 44630 Face 89257 48914 44631 27543 Face 89258 10591 45297 44631 Face 89259 4129 44632 19614 Face 89260 4129 42715 44632 Face 89261 10807 44633 26574 Face 89262 10807 17271 44633 Face 89263 13623 44634 11633 Face 89264 13623 44441 44634 Face 89265 13171 44635 39576 Face 89266 13171 9309 44635 Face 89267 33567 44636 5971 Face 89268 33567 25181 44636 Face 89269 25150 44637 25149 Face 89270 25150 40444 44637 Face 89271 11626 44638 21838 Face 89272 11626 33768 44638 Face 89273 1649 44639 20373 Face 89274 1649 25466 44639 Face 89275 20739 44640 3186 Face 89276 20739 25896 44640 Face 89277 23023 44641 49762 Face 89278 23023 2746 44641 Face 89279 26486 44642 42041 Face 89280 26486 11773 44642 Face 89281 8301 44643 35861 Face 89282 45345 30091 44643 Face 89283 6622 44644 15125 Face 89284 6622 44645 44644 Face 89285 29116 44645 48614 Face 89286 29116 49377 44645 Face 89287 4414 44646 10694 Face 89288 4414 28601 44646 Face 89289 15333 44647 31245 Face 89290 15333 1754 44647 Face 89291 1886 44648 16810 Face 89292 1886 39325 44648 Face 89293 44650 44649 34214 Face 89294 11787 34947 44649 Face 89295 11787 44650 15384 Face 89296 11787 44649 44650 Face 89297 10107 44651 21406 Face 89298 48069 33391 44651 Face 89299 11206 44652 41315 Face 89300 11206 16970 44652 Face 89301 7925 44653 39581 Face 89302 7925 25999 44653 Face 89303 18841 44654 40522 Face 89304 18841 35538 44654 Face 89305 14290 44655 18141 Face 89306 14290 39286 44655 Face 89307 668 44656 13767 Face 89308 668 41221 44656 Face 89309 5134 44657 40022 Face 89310 5134 35264 44657 Face 89311 23598 44658 3233 Face 89312 23598 9723 44658 Face 89313 29609 44659 31116 Face 89314 29609 38256 44659 Face 89315 18912 44660 6148 Face 89316 18912 38883 44660 Face 89317 26817 44661 4521 Face 89318 26817 34848 44661 Face 89319 25834 44662 23636 Face 89320 25834 1848 44662 Face 89321 44817 44663 25109 Face 89322 1924 9454 44663 Face 89323 13801 44664 33901 Face 89324 13801 43168 44664 Face 89325 8185 44665 17581 Face 89326 8185 20394 44665 Face 89327 2686 44666 7904 Face 89328 2686 24478 44666 Face 89329 22010 44667 27712 Face 89330 22010 3534 44667 Face 89331 22834 44668 42440 Face 89332 22834 6747 44668 Face 89333 22225 44669 30962 Face 89334 22225 4182 44669 Face 89335 9988 44670 23016 Face 89336 9988 29771 44670 Face 89337 30198 44671 20600 Face 89338 30198 21570 44671 Face 89339 15170 44672 29504 Face 89340 15170 42938 44672 Face 89341 14285 44673 44191 Face 89342 14285 23278 44673 Face 89343 5559 44674 41158 Face 89344 5559 24412 44674 Face 89345 8599 44675 16313 Face 89346 8599 35605 44675 Face 89347 12975 44676 25602 Face 89348 12975 44495 44676 Face 89349 13175 44677 10269 Face 89350 13175 6814 44677 Face 89351 6789 44678 6012 Face 89352 6789 31776 44678 Face 89353 10764 44679 21885 Face 89354 10764 42202 44679 Face 89355 26044 44680 29938 Face 89356 26044 41849 44680 Face 89357 15903 44681 37432 Face 89358 15903 39456 44681 Face 89359 9637 44682 27753 Face 89360 9637 12915 44682 Face 89361 5992 44683 40465 Face 89362 5992 19821 44683 Face 89363 24348 44684 32102 Face 89364 24348 42916 44684 Face 89365 32598 44685 7380 Face 89366 32598 41467 44685 Face 89367 25568 44686 14187 Face 89368 25568 41881 44686 Face 89369 27725 44687 7425 Face 89370 27725 36686 44687 Face 89371 37254 44688 22612 Face 89372 37254 26212 44688 Face 89373 6379 44689 27230 Face 89374 6379 20404 44689 Face 89375 11636 44690 18066 Face 89376 11636 45425 44690 Face 89377 9980 44691 20845 Face 89378 9980 17630 44691 Face 89379 10812 44692 23533 Face 89380 10812 30305 44692 Face 89381 7603 44693 47443 Face 89382 44694 14115 44693 Face 89383 7603 44694 44693 Face 89384 7603 16987 44694 Face 89385 9765 44695 28378 Face 89386 9765 34590 44695 Face 89387 10375 44696 29298 Face 89388 10375 38391 44696 Face 89389 7758 44697 14783 Face 89390 7758 37518 44697 Face 89391 4078 44698 40680 Face 89392 4078 27871 44698 Face 89393 17741 44699 46409 Face 89394 17741 6937 44699 Face 89395 10610 44700 191 Face 89396 10610 16547 44700 Face 89397 16642 44701 153 Face 89398 16642 9 44701 Face 89399 31422 44702 33917 Face 89400 31422 22115 44702 Face 89401 29785 44703 3641 Face 89402 29785 12096 44703 Face 89403 19453 44704 6733 Face 89404 19453 6073 44704 Face 89405 10507 44705 8267 Face 89406 10507 41803 44705 Face 89407 33445 44706 30465 Face 89408 33445 14323 44706 Face 89409 13122 44707 13540 Face 89410 13122 28281 44707 Face 89411 25244 44708 22688 Face 89412 25244 12114 44708 Face 89413 108 44709 17430 Face 89414 108 17882 44709 Face 89415 28713 44710 14656 Face 89416 28713 13077 44710 Face 89417 47604 44711 5946 Face 89418 10362 25522 44711 Face 89419 7190 44712 48004 Face 89420 44713 4803 44712 Face 89421 7190 44713 44712 Face 89422 7190 2529 44713 Face 89423 23614 44714 12384 Face 89424 23614 47589 44714 Face 89425 14156 44715 29667 Face 89426 14156 22775 44715 Face 89427 46533 44716 24136 Face 89428 12531 3840 44716 Face 89429 9195 44717 33229 Face 89430 9195 21972 44717 Face 89431 16581 44718 25673 Face 89432 16581 3595 44718 Face 89433 17237 44719 11721 Face 89434 17237 785 44719 Face 89435 838 44720 14538 Face 89436 838 3839 44720 Face 89437 39737 44721 27133 Face 89438 39737 24145 44721 Face 89439 16829 44722 8370 Face 89440 16829 4890 44722 Face 89441 2305 44723 44598 Face 89442 2305 29781 44723 Face 89443 35094 44724 42548 Face 89444 35094 9033 44724 Face 89445 19625 44725 36851 Face 89446 19625 17774 44725 Face 89447 6864 44726 27928 Face 89448 6864 28860 44726 Face 89449 6317 44727 43263 Face 89450 44728 24724 44727 Face 89451 6317 44728 44727 Face 89452 6317 38536 44728 Face 89453 7355 44729 49769 Face 89454 7355 28529 44729 Face 89455 23690 44730 14675 Face 89456 23690 8626 44730 Face 89457 10883 44731 24682 Face 89458 10883 3359 44731 Face 89459 26887 44732 37728 Face 89460 26887 21301 44732 Face 89461 1993 44733 29868 Face 89462 1993 11191 44733 Face 89463 12127 44734 16185 Face 89464 48437 3352 44734 Face 89465 14105 44735 5745 Face 89466 14105 7735 44735 Face 89467 14538 44736 838 Face 89468 14538 25528 44736 Face 89469 7863 44737 28068 Face 89470 7863 36024 44737 Face 89471 5658 44738 14836 Face 89472 5658 8833 44738 Face 89473 28990 44739 24900 Face 89474 28990 24901 44739 Face 89475 1695 44740 9595 Face 89476 1695 13784 44740 Face 89477 6521 44741 26539 Face 89478 6521 40332 44741 Face 89479 20099 44742 36930 Face 89480 20099 8516 44742 Face 89481 5232 44743 41463 Face 89482 5232 29657 44743 Face 89483 4865 44744 11409 Face 89484 4865 14435 44744 Face 89485 21174 44745 6696 Face 89486 21174 31889 44745 Face 89487 22930 44746 43789 Face 89488 22930 15745 44746 Face 89489 32836 44747 40834 Face 89490 32836 7073 44747 Face 89491 1458 44748 16548 Face 89492 1458 28524 44748 Face 89493 35232 44749 14611 Face 89494 35232 29655 44749 Face 89495 44749 44750 1190 Face 89496 44749 29655 44750 Face 89497 44752 44753 1967 Face 89498 25737 10496 44751 Face 89499 25737 44752 11147 Face 89500 25737 44751 44752 Face 89501 44751 44753 44752 Face 89502 44751 32838 44753 Face 89503 15449 44754 45928 Face 89504 15449 36858 44754 Face 89505 25468 44755 13440 Face 89506 25468 39128 44755 Face 89507 27407 44756 13975 Face 89508 27407 2580 44756 Face 89509 40221 44757 31791 Face 89510 40221 15946 44757 Face 89511 6778 44758 11461 Face 89512 6778 2993 44758 Face 89513 9160 44759 15344 Face 89514 9160 25248 44759 Face 89515 10267 44760 28903 Face 89516 10267 22552 44760 Face 89517 21724 44761 20763 Face 89518 21724 371 44761 Face 89519 18133 44762 8560 Face 89520 18133 12919 44762 Face 89521 13409 44763 33089 Face 89522 13409 24481 44763 Face 89523 19458 44764 21889 Face 89524 19458 35298 44764 Face 89525 22570 44765 22571 Face 89526 22570 25341 44765 Face 89527 4263 44766 41719 Face 89528 4263 33632 44766 Face 89529 13429 44767 23696 Face 89530 13429 2956 44767 Face 89531 23014 44768 28579 Face 89532 49266 16108 44768 Face 89533 5678 44769 7162 Face 89534 5678 36777 44769 Face 89535 14996 44770 36018 Face 89536 14996 9356 44770 Face 89537 13528 44771 6755 Face 89538 13528 40731 44771 Face 89539 2148 44772 21461 Face 89540 2148 30804 44772 Face 89541 17994 44773 39869 Face 89542 17994 36653 44773 Face 89543 15943 44774 20554 Face 89544 15943 38761 44774 Face 89545 22692 44775 19088 Face 89546 22692 47635 44775 Face 89547 44775 44776 19088 Face 89548 44775 3243 44776 Face 89549 12312 44777 32942 Face 89550 12312 20001 44777 Face 89551 7269 44778 40609 Face 89552 7269 20092 44778 Face 89553 28799 44779 48336 Face 89554 28799 7403 44779 Face 89555 15106 44780 44560 Face 89556 15106 1673 44780 Face 89557 9552 44781 33558 Face 89558 9552 24003 44781 Face 89559 10071 44782 22786 Face 89560 10071 33770 44782 Face 89561 7475 44783 23287 Face 89562 7475 34943 44783 Face 89563 19902 44784 19903 Face 89564 19902 3936 44784 Face 89565 3093 44785 16709 Face 89566 3093 39724 44785 Face 89567 11175 44786 6881 Face 89568 11175 29512 44786 Face 89569 9551 44787 24598 Face 89570 9551 42910 44787 Face 89571 3082 44788 26393 Face 89572 3082 18339 44788 Face 89573 25263 44789 12285 Face 89574 25263 4518 44789 Face 89575 25263 44790 14930 Face 89576 25263 12285 44790 Face 89577 14545 44791 26230 Face 89578 14545 18005 44791 Face 89579 21333 44792 1473 Face 89580 21333 4128 44792 Face 89581 2167 44793 10119 Face 89582 2167 19162 44793 Face 89583 1937 44794 39694 Face 89584 1937 34158 44794 Face 89585 3161 44795 12456 Face 89586 3161 34605 44795 Face 89587 9220 44796 19416 Face 89588 9220 29236 44796 Face 89589 44798 44797 10158 Face 89590 16690 40818 44797 Face 89591 16690 44798 23709 Face 89592 16690 44797 44798 Face 89593 19919 44799 29076 Face 89594 19919 14801 44799 Face 89595 29219 44800 29220 Face 89596 29219 36537 44800 Face 89597 16726 44801 28782 Face 89598 16726 38224 44801 Face 89599 22180 44802 29343 Face 89600 22180 13739 44802 Face 89601 2487 44803 36575 Face 89602 2487 40731 44803 Face 89603 32944 44804 39535 Face 89604 32944 33094 44804 Face 89605 21525 44805 5513 Face 89606 21525 44072 44805 Face 89607 215 44806 43604 Face 89608 215 9602 44806 Face 89609 3977 44807 32833 Face 89610 3977 16900 44807 Face 89611 44809 44808 7069 Face 89612 1613 22159 44808 Face 89613 1613 44809 16650 Face 89614 1613 44808 44809 Face 89615 15198 44810 18307 Face 89616 15198 33793 44810 Face 89617 3633 44811 43999 Face 89618 3633 30102 44811 Face 89619 3242 44812 14221 Face 89620 3242 26214 44812 Face 89621 24275 44813 5909 Face 89622 24275 8200 44813 Face 89623 1747 44814 40536 Face 89624 1747 20026 44814 Face 89625 27396 44815 27397 Face 89626 27396 16821 44815 Face 89627 12380 44816 1885 Face 89628 12380 9157 44816 Face 89629 1924 44817 45720 Face 89630 1924 44663 44817 Face 89631 7472 44818 11738 Face 89632 7472 36573 44818 Face 89633 17740 44819 36439 Face 89634 17740 19674 44819 Face 89635 11564 44820 1431 Face 89636 44821 23654 44820 Face 89637 11564 44821 44820 Face 89638 11564 41442 44821 Face 89639 4846 44822 735 Face 89640 4846 33935 44822 Face 89641 2190 44823 27819 Face 89642 2190 32971 44823 Face 89643 11802 44824 23564 Face 89644 11802 13305 44824 Face 89645 41343 44825 43292 Face 89646 41343 31432 44825 Face 89647 17411 44826 7322 Face 89648 17411 38069 44826 Face 89649 22464 44827 16146 Face 89650 22464 2238 44827 Face 89651 44829 44828 11237 Face 89652 1489 38601 44828 Face 89653 1489 44829 9322 Face 89654 1489 44828 44829 Face 89655 28920 44830 23204 Face 89656 48228 5271 44830 Face 89657 269 44831 5144 Face 89658 44832 34344 44831 Face 89659 269 44832 44831 Face 89660 269 37252 44832 Face 89661 858 44833 28170 Face 89662 858 30096 44833 Face 89663 31244 44834 23830 Face 89664 31244 423 44834 Face 89665 6929 44835 39364 Face 89666 6929 42627 44835 Face 89667 20359 44836 8187 Face 89668 20359 15929 44836 Face 89669 23026 44837 49547 Face 89670 23026 33973 44837 Face 89671 33161 44838 720 Face 89672 33161 13331 44838 Face 89673 2971 44839 18526 Face 89674 2971 10013 44839 Face 89675 29760 44840 14519 Face 89676 29760 4906 44840 Face 89677 23855 44841 19882 Face 89678 23855 8866 44841 Face 89679 34266 44842 28259 Face 89680 34266 16006 44842 Face 89681 15871 44843 11722 Face 89682 15871 5626 44843 Face 89683 18857 44844 43374 Face 89684 18857 29819 44844 Face 89685 6639 44845 16883 Face 89686 6639 6640 44845 Face 89687 1425 44846 37669 Face 89688 1425 11146 44846 Face 89689 17322 44847 5618 Face 89690 17322 6448 44847 Face 89691 29123 44848 2135 Face 89692 29123 36905 44848 Face 89693 8378 44849 37251 Face 89694 8378 38087 44849 Face 89695 9338 44850 34693 Face 89696 9338 12932 44850 Face 89697 24216 44851 98 Face 89698 24216 8357 44851 Face 89699 14836 44852 29474 Face 89700 14836 5657 44852 Face 89701 15444 44853 1992 Face 89702 15444 27006 44853 Face 89703 8026 44854 43378 Face 89704 8026 1091 44854 Face 89705 27626 44855 44160 Face 89706 27626 2606 44855 Face 89707 43119 44856 25273 Face 89708 43119 46703 44856 Face 89709 34568 44857 15605 Face 89710 34568 16595 44857 Face 89711 32917 44858 11649 Face 89712 32917 3082 44858 Face 89713 12753 44859 1014 Face 89714 12753 30659 44859 Face 89715 13196 44860 44458 Face 89716 13196 9936 44860 Face 89717 17076 44861 30188 Face 89718 17076 40949 44861 Face 89719 1745 44862 14084 Face 89720 1745 5572 44862 Face 89721 9298 44863 18742 Face 89722 9298 32371 44863 Face 89723 30971 44864 10543 Face 89724 30971 97 44864 Face 89725 46422 44865 14729 Face 89726 1132 26152 44865 Face 89727 7902 44866 15973 Face 89728 7902 25111 44866 Face 89729 28566 44867 18409 Face 89730 28566 16052 44867 Face 89731 17797 44868 42266 Face 89732 17797 14869 44868 Face 89733 33609 44869 25667 Face 89734 33609 12882 44869 Face 89735 10307 44870 16602 Face 89736 10307 8661 44870 Face 89737 13689 44871 35554 Face 89738 13689 13691 44871 Face 89739 402 44872 7550 Face 89740 402 37648 44872 Face 89741 1144 44873 18995 Face 89742 1144 24976 44873 Face 89743 26730 44874 29122 Face 89744 26730 35709 44874 Face 89745 5784 44875 16172 Face 89746 5784 494 44875 Face 89747 12089 44876 8566 Face 89748 12089 3501 44876 Face 89749 1544 44877 30129 Face 89750 1544 33754 44877 Face 89751 8760 44878 36096 Face 89752 8760 38859 44878 Face 89753 10976 44879 34432 Face 89754 10976 49363 44879 Face 89755 8471 44880 2909 Face 89756 8471 2273 44880 Face 89757 23953 44881 38949 Face 89758 23953 33710 44881 Face 89759 24032 44882 25818 Face 89760 48334 4587 44882 Face 89761 49705 44883 39733 Face 89762 20459 20462 44883 Face 89763 45553 44885 6078 Face 89764 3480 27386 44884 Face 89765 44884 44885 45553 Face 89766 44884 5588 44885 Face 89767 15459 44886 19064 Face 89768 15459 18746 44886 Face 89769 13326 44887 25369 Face 89770 13326 31726 44887 Face 89771 14525 44888 22367 Face 89772 14525 36513 44888 Face 89773 11476 44889 37282 Face 89774 11476 33676 44889 Face 89775 19370 44890 468 Face 89776 19370 32964 44890 Face 89777 15638 44891 2285 Face 89778 15638 37183 44891 Face 89779 10629 44892 3394 Face 89780 10629 27828 44892 Face 89781 2152 44893 14725 Face 89782 2152 6524 44893 Face 89783 9958 44894 854 Face 89784 9958 8895 44894 Face 89785 23187 44895 34751 Face 89786 23187 17645 44895 Face 89787 1534 44896 36257 Face 89788 1534 10203 44896 Face 89789 21852 44897 4424 Face 89790 21852 41803 44897 Face 89791 534 44898 8649 Face 89792 44899 37614 44898 Face 89793 534 44899 44898 Face 89794 534 15297 44899 Face 89795 24543 44900 2937 Face 89796 24543 11372 44900 Face 89797 19561 44901 30367 Face 89798 19561 31283 44901 Face 89799 16607 44902 42404 Face 89800 16607 39750 44902 Face 89801 4383 44903 31166 Face 89802 4383 33473 44903 Face 89803 13666 44904 43095 Face 89804 13666 12157 44904 Face 89805 14368 44905 10066 Face 89806 14368 49377 44905 Face 89807 30902 44906 8604 Face 89808 30902 7547 44906 Face 89809 25022 44907 20505 Face 89810 25022 12581 44907 Face 89811 8099 44908 6317 Face 89812 8099 9857 44908 Face 89813 22939 44909 40711 Face 89814 22939 8492 44909 Face 89815 31658 44910 2668 Face 89816 31658 15622 44910 Face 89817 15495 44911 48656 Face 89818 15495 37366 44911 Face 89819 16833 44912 21102 Face 89820 16833 12995 44912 Face 89821 12213 44913 20022 Face 89822 12213 23215 44913 Face 89823 18717 44914 46519 Face 89824 18717 1389 44914 Face 89825 15785 44915 34397 Face 89826 15785 16018 44915 Face 89827 31225 44916 10627 Face 89828 31225 10622 44916 Face 89829 18029 44917 23233 Face 89830 18029 28280 44917 Face 89831 43568 44918 40821 Face 89832 43568 46556 44918 Face 89833 37940 44919 12054 Face 89834 37940 27398 44919 Face 89835 21424 44920 13903 Face 89836 21424 36364 44920 Face 89837 11534 44921 7914 Face 89838 11534 32026 44921 Face 89839 35200 44922 23822 Face 89840 35200 34838 44922 Face 89841 13659 44923 49093 Face 89842 13659 1880 44923 Face 89843 12548 44924 1975 Face 89844 12548 40145 44924 Face 89845 33210 44925 957 Face 89846 33210 26005 44925 Face 89847 31189 44926 31190 Face 89848 31189 47879 44926 Face 89849 34378 44927 10127 Face 89850 34378 2815 44927 Face 89851 44929 44928 15974 Face 89852 11714 35026 44928 Face 89853 11714 44929 46990 Face 89854 11714 44928 44929 Face 89855 8655 44930 40379 Face 89856 8655 2799 44930 Face 89857 44930 44931 2798 Face 89858 44932 10612 44931 Face 89859 44930 44932 44931 Face 89860 44930 2799 44932 Face 89861 7996 44933 32547 Face 89862 7996 32447 44933 Face 89863 23117 44934 49335 Face 89864 23117 7655 44934 Face 89865 30940 44935 1296 Face 89866 30940 9088 44935 Face 89867 17932 44936 14862 Face 89868 17932 41279 44936 Face 89869 23696 44937 35862 Face 89870 23696 37907 44937 Face 89871 6197 44938 37357 Face 89872 6197 21845 44938 Face 89873 14000 44939 43718 Face 89874 14000 44533 44939 Face 89875 294 44940 34016 Face 89876 294 29143 44940 Face 89877 5309 44941 20992 Face 89878 47724 17060 44941 Face 89879 38477 44942 41388 Face 89880 38477 19214 44942 Face 89881 1487 44943 41956 Face 89882 1487 8482 44943 Face 89883 16828 44944 43936 Face 89884 16828 9371 44944 Face 89885 22583 44945 12159 Face 89886 22583 21796 44945 Face 89887 11178 44946 32826 Face 89888 11178 34737 44946 Face 89889 28688 44947 14121 Face 89890 28688 31871 44947 Face 89891 9643 44948 32659 Face 89892 9643 22838 44948 Face 89893 13278 44949 37698 Face 89894 13278 13277 44949 Face 89895 13708 44950 26334 Face 89896 13708 20705 44950 Face 89897 6219 44951 31515 Face 89898 6219 17880 44951 Face 89899 49519 44952 37016 Face 89900 49518 24453 44952 Face 89901 44954 44953 6986 Face 89902 3104 17785 44953 Face 89903 3104 44954 25413 Face 89904 3104 44953 44954 Face 89905 5 44955 19368 Face 89906 5 49258 44955 Face 89907 1047 44956 45845 Face 89908 1047 37052 44956 Face 89909 22474 44957 31301 Face 89910 45990 41341 44957 Face 89911 3466 44958 45181 Face 89912 3466 11074 44958 Face 89913 10347 44959 36123 Face 89914 10347 10346 44959 Face 89915 2020 44960 28900 Face 89916 2020 31726 44960 Face 89917 12385 44961 35701 Face 89918 12385 15596 44961 Face 89919 6145 44962 22294 Face 89920 6145 42374 44962 Face 89921 16992 44963 38015 Face 89922 16992 20586 44963 Face 89923 1003 44964 4377 Face 89924 44965 26067 44964 Face 89925 1003 44965 44964 Face 89926 1003 32803 44965 Face 89927 20031 44966 44625 Face 89928 20031 6633 44966 Face 89929 15294 44967 13566 Face 89930 15294 5517 44967 Face 89931 6798 44968 18431 Face 89932 6798 36361 44968 Face 89933 27381 44969 315 Face 89934 27381 9230 44969 Face 89935 9026 44970 6052 Face 89936 9026 40767 44970 Face 89937 4486 44971 25187 Face 89938 4486 9981 44971 Face 89939 6276 44972 42974 Face 89940 6276 34565 44972 Face 89941 29320 44973 38453 Face 89942 29320 16217 44973 Face 89943 33262 44974 15510 Face 89944 33262 2499 44974 Face 89945 2156 44975 43122 Face 89946 2156 38524 44975 Face 89947 486 44976 20897 Face 89948 48166 30595 44976 Face 89949 47111 44977 34965 Face 89950 44978 12465 44977 Face 89951 3817 44978 44977 Face 89952 3817 12372 44978 Face 89953 29002 44979 10291 Face 89954 29002 4631 44979 Face 89955 655 44980 19637 Face 89956 46226 20649 44980 Face 89957 3641 44981 25519 Face 89958 3641 44703 44981 Face 89959 7728 44982 23979 Face 89960 7728 35700 44982 Face 89961 24647 44983 9009 Face 89962 24647 7976 44983 Face 89963 46417 44984 7874 Face 89964 46417 29660 44984 Face 89965 14722 44985 8057 Face 89966 14722 32905 44985 Face 89967 15340 44986 9745 Face 89968 15340 38528 44986 Face 89969 11065 44987 29744 Face 89970 11065 28521 44987 Face 89971 19593 44988 19594 Face 89972 19593 38996 44988 Face 89973 6319 44989 31909 Face 89974 6319 36426 44989 Face 89975 25231 44990 12463 Face 89976 25231 24632 44990 Face 89977 5433 44991 27625 Face 89978 5433 36005 44991 Face 89979 19626 44992 1596 Face 89980 19626 13090 44992 Face 89981 26985 44993 1610 Face 89982 26985 41054 44993 Face 89983 1772 44994 41947 Face 89984 1772 33756 44994 Face 89985 2025 44995 33731 Face 89986 2025 32699 44995 Face 89987 6886 44996 44118 Face 89988 48581 23144 44996 Face 89989 21574 44997 21573 Face 89990 21574 25666 44997 Face 89991 14979 44998 5642 Face 89992 14979 25913 44998 Face 89993 13786 44999 38288 Face 89994 13786 23200 44999 Face 89995 3098 45000 39223 Face 89996 3098 31994 45000 Face 89997 27715 45001 29369 Face 89998 27715 15257 45001 Face 89999 22368 45002 10440 Face 90000 22368 26707 45002 Face 90001 33652 45003 9809 Face 90002 33652 25002 45003 Face 90003 1755 45004 33660 Face 90004 47222 34277 45004 Face 90005 33082 45005 12936 Face 90006 33082 178 45005 Face 90007 1752 45006 24833 Face 90008 1752 47979 45006 Face 90009 2163 45007 41481 Face 90010 2163 21988 45007 Face 90011 16491 45008 18346 Face 90012 16491 26197 45008 Face 90013 16076 45009 16025 Face 90014 16076 26117 45009 Face 90015 5498 45010 38799 Face 90016 5498 27840 45010 Face 90017 39342 45011 38481 Face 90018 39342 22542 45011 Face 90019 17092 45012 29043 Face 90020 17092 2399 45012 Face 90021 6051 45013 44283 Face 90022 6051 11205 45013 Face 90023 7112 45014 48467 Face 90024 7112 20103 45014 Face 90025 18992 45015 36635 Face 90026 18992 1257 45015 Face 90027 24595 45016 40650 Face 90028 24595 24596 45016 Face 90029 23067 45017 16079 Face 90030 23067 41760 45017 Face 90031 3917 45018 15897 Face 90032 3917 26871 45018 Face 90033 26904 45019 42048 Face 90034 26904 23073 45019 Face 90035 9247 45020 4829 Face 90036 9247 22291 45020 Face 90037 11644 45021 18131 Face 90038 11644 41237 45021 Face 90039 14207 45022 17112 Face 90040 14207 20495 45022 Face 90041 49610 45023 44405 Face 90042 45024 37863 45023 Face 90043 19493 45024 45023 Face 90044 19493 8765 45024 Face 90045 12489 45025 29180 Face 90046 12489 39276 45025 Face 90047 13508 45026 13507 Face 90048 13508 11224 45026 Face 90049 2818 45027 32669 Face 90050 2818 16513 45027 Face 90051 45029 45028 26175 Face 90052 7881 33946 45028 Face 90053 45896 45029 11667 Face 90054 7881 45028 45029 Face 90055 21828 45030 8463 Face 90056 21828 49267 45030 Face 90057 11762 45031 1494 Face 90058 11762 22610 45031 Face 90059 11207 45032 42651 Face 90060 11207 32569 45032 Face 90061 45034 45033 35256 Face 90062 45034 9421 45033 Face 90063 12033 45034 35256 Face 90064 12033 41785 45034 Face 90065 45036 45035 16399 Face 90066 3141 39235 45035 Face 90067 3141 47086 49701 Face 90068 3141 45035 45036 Face 90069 6860 45037 37545 Face 90070 6860 2567 45037 Face 90071 1383 45038 19819 Face 90072 1383 6893 45038 Face 90073 45040 45039 23501 Face 90074 45040 14965 45039 Face 90075 7694 45040 23501 Face 90076 7694 26815 45040 Face 90077 49035 45041 28268 Face 90078 8950 5597 45041 Face 90079 5151 45042 14851 Face 90080 5151 9398 45042 Face 90081 26147 45043 1334 Face 90082 26147 30398 45043 Face 90083 19624 45044 32345 Face 90084 19624 36847 45044 Face 90085 9306 45045 10328 Face 90086 9306 28798 45045 Face 90087 7028 45046 14086 Face 90088 7028 18503 45046 Face 90089 7021 45047 4777 Face 90090 7021 24205 45047 Face 90091 5909 45048 24275 Face 90092 45049 14244 45048 Face 90093 5909 45049 45048 Face 90094 5909 33674 45049 Face 90095 20603 45050 33050 Face 90096 20603 38079 45050 Face 90097 45052 45051 8856 Face 90098 4484 24448 45051 Face 90099 4484 45052 14189 Face 90100 4484 45051 45052 Face 90101 16844 45053 29481 Face 90102 16844 10286 45053 Face 90103 17198 45054 32580 Face 90104 17198 7798 45054 Face 90105 12761 45055 35510 Face 90106 12761 38998 45055 Face 90107 24259 45056 2799 Face 90108 24259 782 45056 Face 90109 13205 45057 41788 Face 90110 13205 33201 45057 Face 90111 23678 45058 46158 Face 90112 23678 23677 45058 Face 90113 26124 45059 18600 Face 90114 26124 33455 45059 Face 90115 50002 45060 7562 Face 90116 13185 18993 45060 Face 90117 15660 45061 32411 Face 90118 15660 41674 45061 Face 90119 22613 45062 33432 Face 90120 22613 2144 45062 Face 90121 45064 45063 30572 Face 90122 1135 31987 45063 Face 90123 1135 45064 10070 Face 90124 1135 45063 45064 Face 90125 19322 45065 32891 Face 90126 19322 11990 45065 Face 90127 3631 45066 16161 Face 90128 3631 22138 45066 Face 90129 21600 45067 15592 Face 90130 21600 32651 45067 Face 90131 6237 45068 24829 Face 90132 6237 40109 45068 Face 90133 23546 45069 22921 Face 90134 23546 449 45069 Face 90135 26088 45070 12133 Face 90136 26088 7189 45070 Face 90137 3172 45071 21811 Face 90138 3172 41543 45071 Face 90139 46385 45072 15282 Face 90140 23633 31551 45072 Face 90141 3408 45073 2135 Face 90142 3408 12101 45073 Face 90143 8470 45074 22765 Face 90144 8470 40644 45074 Face 90145 24452 45075 7602 Face 90146 24452 48769 45075 Face 90147 47778 45076 25765 Face 90148 1204 26708 45076 Face 90149 537 45077 7737 Face 90150 537 21022 45077 Face 90151 48953 45078 1835 Face 90152 8472 348 45078 Face 90153 12674 45079 32515 Face 90154 12674 28593 45079 Face 90155 24015 45080 18793 Face 90156 24015 13411 45080 Face 90157 48481 45081 2161 Face 90158 2035 19547 45081 Face 90159 40984 45082 36054 Face 90160 40984 35945 45082 Face 90161 11420 45083 34548 Face 90162 11420 205 45083 Face 90163 26703 45084 10072 Face 90164 26703 38389 45084 Face 90165 5324 45085 30549 Face 90166 5324 43158 45085 Face 90167 9666 45086 31205 Face 90168 9666 25679 45086 Face 90169 9986 45087 35378 Face 90170 9986 13500 45087 Face 90171 39339 45088 23408 Face 90172 39339 4389 45088 Face 90173 9824 45089 37835 Face 90174 9824 34628 45089 Face 90175 404 45090 31681 Face 90176 404 9315 45090 Face 90177 18015 45091 21388 Face 90178 18015 21504 45091 Face 90179 27515 45092 2898 Face 90180 27515 27514 45092 Face 90181 16442 45093 2670 Face 90182 16442 4088 45093 Face 90183 384 45094 37701 Face 90184 45095 8453 45094 Face 90185 384 45095 45094 Face 90186 384 26539 45095 Face 90187 3489 45096 16914 Face 90188 3489 31083 45096 Face 90189 17442 45097 37267 Face 90190 17442 39709 45097 Face 90191 2560 45098 8689 Face 90192 2560 36552 45098 Face 90193 8021 45099 14148 Face 90194 8021 8447 45099 Face 90195 3280 45100 39746 Face 90196 3280 4166 45100 Face 90197 3946 45101 31829 Face 90198 3946 29887 45101 Face 90199 19074 45102 19073 Face 90200 19074 38011 45102 Face 90201 6078 45103 22000 Face 90202 6078 33462 45103 Face 90203 33277 45104 38505 Face 90204 33277 15801 45104 Face 90205 31579 45105 37135 Face 90206 31579 12697 45105 Face 90207 12103 45106 5308 Face 90208 12103 9466 45106 Face 90209 2331 45107 15343 Face 90210 2331 12763 45107 Face 90211 5611 45108 6807 Face 90212 5611 23028 45108 Face 90213 16881 45109 10495 Face 90214 16881 41484 45109 Face 90215 8223 45110 33229 Face 90216 8223 12052 45110 Face 90217 15604 45111 41805 Face 90218 15604 9864 45111 Face 90219 1852 45112 37286 Face 90220 1852 19092 45112 Face 90221 23124 45113 6408 Face 90222 23124 28893 45113 Face 90223 12827 45114 13173 Face 90224 12827 23603 45114 Face 90225 13332 45115 30677 Face 90226 13332 44838 45115 Face 90227 2122 45116 8483 Face 90228 48952 11231 45116 Face 90229 19936 45117 31850 Face 90230 19936 30143 45117 Face 90231 6674 45118 21146 Face 90232 6674 23425 45118 Face 90233 12256 45119 32637 Face 90234 12256 29221 45119 Face 90235 11139 45120 16549 Face 90236 11139 5747 45120 Face 90237 998 45121 16152 Face 90238 998 31075 45121 Face 90239 5219 45122 6632 Face 90240 5219 27643 45122 Face 90241 27287 45123 758 Face 90242 27287 15569 45123 Face 90243 4968 45124 38954 Face 90244 4968 20122 45124 Face 90245 9238 45125 36715 Face 90246 9238 10614 45125 Face 90247 18567 45126 34594 Face 90248 18567 26414 45126 Face 90249 5994 45127 32478 Face 90250 5994 29633 45127 Face 90251 14453 45128 43657 Face 90252 14453 26583 45128 Face 90253 4066 45129 29482 Face 90254 4066 26754 45129 Face 90255 12863 45130 39125 Face 90256 45131 6378 45130 Face 90257 12863 45131 45130 Face 90258 12863 14097 45131 Face 90259 7066 45132 17307 Face 90260 7066 27626 45132 Face 90261 3435 45133 30183 Face 90262 3435 43884 45133 Face 90263 1019 45134 2963 Face 90264 1019 4642 45134 Face 90265 14375 45135 46522 Face 90266 14375 14791 45135 Face 90267 15423 45136 11268 Face 90268 15423 34874 45136 Face 90269 3715 45137 18351 Face 90270 3715 13818 45137 Face 90271 5095 45138 13319 Face 90272 5095 22755 45138 Face 90273 15409 45139 40192 Face 90274 15409 28800 45139 Face 90275 32818 45140 3884 Face 90276 32818 12793 45140 Face 90277 21111 45141 7780 Face 90278 21111 6399 45141 Face 90279 468 45142 32332 Face 90280 468 31458 45142 Face 90281 7928 45143 22243 Face 90282 7928 1688 45143 Face 90283 2611 45144 33854 Face 90284 2611 35416 45144 Face 90285 14098 45145 24731 Face 90286 14098 11109 45145 Face 90287 3147 45146 40891 Face 90288 3147 11017 45146 Face 90289 1683 45147 14760 Face 90290 47929 40512 45147 Face 90291 10073 45148 2113 Face 90292 10073 20114 45148 Face 90293 2379 45149 40781 Face 90294 2379 31784 45149 Face 90295 25541 45150 39036 Face 90296 25541 9917 45150 Face 90297 40634 45151 42079 Face 90298 40634 33824 45151 Face 90299 34158 45152 22224 Face 90300 34158 37118 45152 Face 90301 4409 45153 28878 Face 90302 4409 7124 45153 Face 90303 16802 45154 24834 Face 90304 16802 29973 45154 Face 90305 5581 45155 24382 Face 90306 5581 20128 45155 Face 90307 45438 45156 964 Face 90308 39889 7896 45156 Face 90309 5783 45157 13957 Face 90310 5783 17931 45157 Face 90311 5285 45158 28638 Face 90312 5285 11982 45158 Face 90313 3990 45159 28871 Face 90314 3990 42654 45159 Face 90315 31285 45160 31284 Face 90316 31285 37731 45160 Face 90317 1560 45161 17609 Face 90318 1560 26880 45161 Face 90319 8113 45162 30961 Face 90320 8113 23694 45162 Face 90321 19610 45163 47563 Face 90322 19610 14532 45163 Face 90323 7082 45164 37666 Face 90324 7082 27257 45164 Face 90325 15939 45165 37132 Face 90326 15939 731 45165 Face 90327 27331 45166 6099 Face 90328 27331 16905 45166 Face 90329 18159 45167 25507 Face 90330 18159 31342 45167 Face 90331 2787 45168 22409 Face 90332 2787 26172 45168 Face 90333 26134 45169 7423 Face 90334 26134 7563 45169 Face 90335 9751 45170 30956 Face 90336 9751 5707 45170 Face 90337 25258 45171 17767 Face 90338 25258 19620 45171 Face 90339 19212 45172 38971 Face 90340 19212 43117 45172 Face 90341 7565 45173 19948 Face 90342 7565 36243 45173 Face 90343 3420 45174 41901 Face 90344 3420 12342 45174 Face 90345 8866 45175 22119 Face 90346 8866 34391 45175 Face 90347 17229 45176 11800 Face 90348 17229 17228 45176 Face 90349 9544 45177 19091 Face 90350 9544 32925 45177 Face 90351 14297 45178 14298 Face 90352 14297 41264 45178 Face 90353 45180 45179 234 Face 90354 45178 41264 45179 Face 90355 45178 45180 32022 Face 90356 45178 45179 45180 Face 90357 6819 45181 44958 Face 90358 6819 38701 45181 Face 90359 26264 45182 17272 Face 90360 26264 21028 45182 Face 90361 419 45183 34489 Face 90362 419 40667 45183 Face 90363 3081 45184 44622 Face 90364 3081 26436 45184 Face 90365 9068 45185 9069 Face 90366 9068 9830 45185 Face 90367 39554 45186 18579 Face 90368 39554 22289 45186 Face 90369 21701 45187 36438 Face 90370 21701 21702 45187 Face 90371 9370 45188 28859 Face 90372 9370 28614 45188 Face 90373 4109 45189 21829 Face 90374 4109 21043 45189 Face 90375 30067 45190 15233 Face 90376 30067 15235 45190 Face 90377 13626 45191 41417 Face 90378 13626 39122 45191 Face 90379 22080 45192 11364 Face 90380 22080 23590 45192 Face 90381 10417 45193 39166 Face 90382 10417 23548 45193 Face 90383 10082 45194 20642 Face 90384 10082 34851 45194 Face 90385 9325 45195 40896 Face 90386 9325 27614 45195 Face 90387 12765 45196 25533 Face 90388 12765 18875 45196 Face 90389 4211 45197 21309 Face 90390 4211 42582 45197 Face 90391 3550 45198 21761 Face 90392 3550 41753 45198 Face 90393 11527 45199 34192 Face 90394 11527 3158 45199 Face 90395 13084 45200 13667 Face 90396 13084 26167 45200 Face 90397 19180 45201 35633 Face 90398 19180 23897 45201 Face 90399 10457 45202 40000 Face 90400 10457 31880 45202 Face 90401 6161 45203 16186 Face 90402 6161 22538 45203 Face 90403 1456 45204 35541 Face 90404 1456 32226 45204 Face 90405 637 45205 23011 Face 90406 637 30551 45205 Face 90407 23740 45206 23329 Face 90408 23740 29900 45206 Face 90409 3091 45207 30014 Face 90410 3091 19090 45207 Face 90411 20890 45208 46096 Face 90412 20890 6547 45208 Face 90413 15703 45209 38892 Face 90414 15703 27718 45209 Face 90415 1754 45210 32733 Face 90416 1754 13875 45210 Face 90417 676 45211 16670 Face 90418 676 14964 45211 Face 90419 2383 45212 46840 Face 90420 2383 39749 45212 Face 90421 19869 45213 32845 Face 90422 19869 32061 45213 Face 90423 34004 45214 29020 Face 90424 34004 34003 45214 Face 90425 26972 45215 9117 Face 90426 26972 28397 45215 Face 90427 31413 45216 12610 Face 90428 31413 26848 45216 Face 90429 12470 45217 22709 Face 90430 12470 35734 45217 Face 90431 8535 45218 31264 Face 90432 8535 39773 45218 Face 90433 20484 45219 46159 Face 90434 20484 42166 45219 Face 90435 24287 45220 11364 Face 90436 24287 18663 45220 Face 90437 9453 45221 23134 Face 90438 9453 17237 45221 Face 90439 12756 45222 25820 Face 90440 12756 30915 45222 Face 90441 9259 45223 35255 Face 90442 9259 43290 45223 Face 90443 2763 45224 12238 Face 90444 2763 38729 45224 Face 90445 18122 45225 8227 Face 90446 18122 32965 45225 Face 90447 18508 45226 15243 Face 90448 18508 24076 45226 Face 90449 18327 45227 26767 Face 90450 18327 41906 45227 Face 90451 13990 45228 28075 Face 90452 13990 36261 45228 Face 90453 20399 45229 11066 Face 90454 20399 13228 45229 Face 90455 16972 45230 15138 Face 90456 16972 9199 45230 Face 90457 35740 45231 2421 Face 90458 35740 7331 45231 Face 90459 4278 45232 47726 Face 90460 4278 25044 45232 Face 90461 7165 45233 29017 Face 90462 7165 25217 45233 Face 90463 3023 45234 16547 Face 90464 3023 24940 45234 Face 90465 17162 45235 32623 Face 90466 17162 17161 45235 Face 90467 9297 45236 16387 Face 90468 9297 33598 45236 Face 90469 157 45237 28038 Face 90470 157 35600 45237 Face 90471 4867 45238 22250 Face 90472 4867 34968 45238 Face 90473 22902 45239 13583 Face 90474 22902 48209 45239 Face 90475 25694 45240 10426 Face 90476 25694 17012 45240 Face 90477 7195 45241 15375 Face 90478 7195 39143 45241 Face 90479 5534 45242 32401 Face 90480 5534 19475 45242 Face 90481 7876 45243 10018 Face 90482 7876 27943 45243 Face 90483 16537 45244 6555 Face 90484 16537 37460 45244 Face 90485 1663 45245 43974 Face 90486 1663 25816 45245 Face 90487 18548 45246 46059 Face 90488 18548 41197 45246 Face 90489 22661 45247 7236 Face 90490 22661 11593 45247 Face 90491 22956 45248 16464 Face 90492 22956 42143 45248 Face 90493 5579 45249 42270 Face 90494 5579 22320 45249 Face 90495 11953 45250 21045 Face 90496 11953 29021 45250 Face 90497 4260 45251 16797 Face 90498 4260 26923 45251 Face 90499 35617 45252 5771 Face 90500 35617 31243 45252 Face 90501 10689 45253 34815 Face 90502 10689 36852 45253 Face 90503 45255 45254 571 Face 90504 13151 36383 45254 Face 90505 13151 45255 4018 Face 90506 13151 45254 45255 Face 90507 46084 45256 18943 Face 90508 15887 39981 45256 Face 90509 5867 45257 21206 Face 90510 45258 24634 45257 Face 90511 5867 45258 45257 Face 90512 5867 49850 45258 Face 90513 11847 45259 3131 Face 90514 11847 22213 45259 Face 90515 6291 45260 39090 Face 90516 6291 29025 45260 Face 90517 21833 45261 2405 Face 90518 21833 42883 45261 Face 90519 3494 45262 38541 Face 90520 3494 11561 45262 Face 90521 11238 45263 46902 Face 90522 11238 5547 45263 Face 90523 45265 45264 44264 Face 90524 17145 15219 45264 Face 90525 17145 45265 44263 Face 90526 17145 45264 45265 Face 90527 31415 45266 30322 Face 90528 31415 33306 45266 Face 90529 7817 45267 47877 Face 90530 7817 14873 45267 Face 90531 51 45268 35458 Face 90532 51 33866 45268 Face 90533 5294 45269 42132 Face 90534 5294 30030 45269 Face 90535 20567 45270 27780 Face 90536 20567 605 45270 Face 90537 12196 45271 43980 Face 90538 12196 32576 45271 Face 90539 2966 45272 36871 Face 90540 2966 8533 45272 Face 90541 23892 45273 26704 Face 90542 23892 19987 45273 Face 90543 1049 45274 21705 Face 90544 1049 29708 45274 Face 90545 9255 45275 35698 Face 90546 45276 18789 45275 Face 90547 9255 45276 45275 Face 90548 9255 33207 45276 Face 90549 31154 45277 31424 Face 90550 31154 6323 45277 Face 90551 426 45278 31217 Face 90552 426 13928 45278 Face 90553 45801 45279 4617 Face 90554 45280 10801 45279 Face 90555 45281 45280 45279 Face 90556 23405 49844 45280 Face 90557 45801 45281 45279 Face 90558 23405 45280 45281 Face 90559 12434 45282 21210 Face 90560 45651 31839 45282 Face 90561 16246 45283 20378 Face 90562 45284 27555 45283 Face 90563 16246 45284 45283 Face 90564 16246 42390 45284 Face 90565 4886 45285 33761 Face 90566 4886 12039 45285 Face 90567 6950 45286 31129 Face 90568 6950 19795 45286 Face 90569 20869 45287 27394 Face 90570 20869 28040 45287 Face 90571 27510 45288 33727 Face 90572 27510 27125 45288 Face 90573 1783 45289 18409 Face 90574 1783 17952 45289 Face 90575 4334 45290 42483 Face 90576 4334 35958 45290 Face 90577 2394 45291 27055 Face 90578 2394 16051 45291 Face 90579 34953 45292 8608 Face 90580 34953 19598 45292 Face 90581 26694 45293 12003 Face 90582 26694 18604 45293 Face 90583 10628 45294 2822 Face 90584 45295 26406 45294 Face 90585 10628 45295 45294 Face 90586 10628 1818 45295 Face 90587 11938 45296 23202 Face 90588 11938 43216 45296 Face 90589 24506 45297 30628 Face 90590 24506 44631 45297 Face 90591 2442 48875 38822 Face 90592 2442 30949 48875 Face 90593 29 45299 40126 Face 90594 29 44595 45299 Face 90595 9850 45300 18866 Face 90596 9850 13235 45300 Face 90597 10598 45301 5242 Face 90598 10598 31900 45301 Face 90599 9768 45302 28164 Face 90600 9768 42239 45302 Face 90601 28749 45303 30523 Face 90602 28749 34135 45303 Face 90603 14258 45304 8740 Face 90604 14258 17798 45304 Face 90605 18964 45305 34746 Face 90606 18964 32343 45305 Face 90607 7695 45306 25268 Face 90608 7695 29667 45306 Face 90609 7695 45307 48438 Face 90610 7695 4386 45307 Face 90611 7661 45308 13833 Face 90612 7661 25015 45308 Face 90613 2075 45309 46273 Face 90614 2075 13215 45309 Face 90615 26352 45310 8384 Face 90616 47878 23296 45310 Face 90617 1825 45311 15350 Face 90618 1825 11100 45311 Face 90619 45313 45312 16174 Face 90620 11104 13655 45312 Face 90621 11104 45313 500 Face 90622 11104 45312 45313 Face 90623 1606 45314 40443 Face 90624 1606 23056 45314 Face 90625 10517 45315 38927 Face 90626 10517 36304 45315 Face 90627 13353 45316 36133 Face 90628 13353 33381 45316 Face 90629 9705 45317 9704 Face 90630 9705 38535 45317 Face 90631 19478 45318 10928 Face 90632 19478 19636 45318 Face 90633 16943 45319 5236 Face 90634 16943 4394 45319 Face 90635 33738 45320 30070 Face 90636 33738 34386 45320 Face 90637 25486 45321 26900 Face 90638 25486 9842 45321 Face 90639 1629 45322 14170 Face 90640 1629 23981 45322 Face 90641 41155 45323 40197 Face 90642 41155 25270 45323 Face 90643 3208 45324 32093 Face 90644 3208 9145 45324 Face 90645 18028 45325 46631 Face 90646 18028 42975 45325 Face 90647 7962 45326 38291 Face 90648 7962 22592 45326 Face 90649 9223 45327 18193 Face 90650 9223 18194 45327 Face 90651 15652 45328 21594 Face 90652 45329 3075 45328 Face 90653 15652 45329 45328 Face 90654 15652 30979 45329 Face 90655 15652 45330 17764 Face 90656 15652 21594 45330 Face 90657 14165 45331 539 Face 90658 14165 5539 45331 Face 90659 40953 45332 31567 Face 90660 40953 29506 45332 Face 90661 7065 45333 15006 Face 90662 7065 2891 45333 Face 90663 10365 45334 8048 Face 90664 10365 24461 45334 Face 90665 45336 45335 49983 Face 90666 11953 31945 45335 Face 90667 11953 45336 45670 Face 90668 11953 45335 45336 Face 90669 5595 45337 21608 Face 90670 5595 13154 45337 Face 90671 11454 45338 21284 Face 90672 11454 7630 45338 Face 90673 766 45339 31297 Face 90674 766 38995 45339 Face 90675 21632 45340 21761 Face 90676 21632 34426 45340 Face 90677 15965 45341 24344 Face 90678 15965 36875 45341 Face 90679 24113 45342 3689 Face 90680 24113 43384 45342 Face 90681 14148 45343 8022 Face 90682 14148 1148 45343 Face 90683 3046 45344 16507 Face 90684 3046 27284 45344 Face 90685 8301 45345 44643 Face 90686 8301 36776 45345 Face 90687 13963 45346 27535 Face 90688 13963 38792 45346 Face 90689 3579 45347 29795 Face 90690 3579 15382 45347 Face 90691 3532 45348 35268 Face 90692 45349 42052 45348 Face 90693 3532 45349 45348 Face 90694 3532 3533 45349 Face 90695 45351 45350 2176 Face 90696 19452 5942 45350 Face 90697 19452 45351 5943 Face 90698 19452 45350 45351 Face 90699 21275 45352 48988 Face 90700 21275 5443 45352 Face 90701 11006 45353 35332 Face 90702 11006 40505 45353 Face 90703 4130 45354 29058 Face 90704 4130 24631 45354 Face 90705 8983 45355 36191 Face 90706 8983 38645 45355 Face 90707 2814 45356 43479 Face 90708 2814 10548 45356 Face 90709 6334 45357 14249 Face 90710 6334 21663 45357 Face 90711 17951 45358 922 Face 90712 17951 29487 45358 Face 90713 12222 45359 38090 Face 90714 12222 38037 45359 Face 90715 36787 45360 29398 Face 90716 36787 7850 45360 Face 90717 214 45361 20665 Face 90718 214 17610 45361 Face 90719 8207 45362 38280 Face 90720 47927 22459 45362 Face 90721 45827 45363 10993 Face 90722 5617 34030 45363 Face 90723 12918 45364 15464 Face 90724 12918 34822 45364 Face 90725 184 45365 2954 Face 90726 184 21511 45365 Face 90727 47664 45366 11187 Face 90728 8943 30627 45366 Face 90729 21824 45367 44145 Face 90730 21824 9558 45367 Face 90731 40112 45368 35310 Face 90732 40112 24083 45368 Face 90733 25678 45369 1385 Face 90734 25678 42283 45369 Face 90735 18194 45370 38268 Face 90736 18194 38747 45370 Face 90737 23206 45371 2002 Face 90738 23206 11391 45371 Face 90739 476 45372 15546 Face 90740 476 34165 45372 Face 90741 4194 45373 16596 Face 90742 4194 16792 45373 Face 90743 12626 45374 36780 Face 90744 12626 4252 45374 Face 90745 30023 45375 46713 Face 90746 30023 21320 45375 Face 90747 1836 45376 18079 Face 90748 1836 38876 45376 Face 90749 16616 45377 17754 Face 90750 16616 41827 45377 Face 90751 42356 45378 20573 Face 90752 42356 36452 45378 Face 90753 17758 49465 39036 Face 90754 17758 17757 45379 Face 90755 31484 45380 22356 Face 90756 31484 38283 45380 Face 90757 5914 45381 13680 Face 90758 5914 41460 45381 Face 90759 4611 45382 42915 Face 90760 4611 31317 45382 Face 90761 7296 45383 16062 Face 90762 7296 34994 45383 Face 90763 16647 45384 8595 Face 90764 16647 31199 45384 Face 90765 27038 45385 44148 Face 90766 27038 15216 45385 Face 90767 33607 45386 19991 Face 90768 33607 19364 45386 Face 90769 10723 45387 11975 Face 90770 10723 31180 45387 Face 90771 19560 45388 44357 Face 90772 19560 38356 45388 Face 90773 11755 45389 29914 Face 90774 11755 16151 45389 Face 90775 6311 45390 24501 Face 90776 6311 23626 45390 Face 90777 12650 45391 24681 Face 90778 12650 648 45391 Face 90779 24203 45392 45716 Face 90780 24203 8193 45392 Face 90781 25322 45393 2545 Face 90782 25322 17153 45393 Face 90783 7701 45394 12264 Face 90784 7701 44030 45394 Face 90785 45396 45395 11048 Face 90786 3453 22367 45395 Face 90787 3453 45396 8291 Face 90788 3453 45395 45396 Face 90789 5412 45397 9278 Face 90790 5412 35137 45397 Face 90791 33319 45398 13147 Face 90792 33319 11775 45398 Face 90793 21580 45399 35931 Face 90794 21580 960 45399 Face 90795 27405 45400 470 Face 90796 27405 8035 45400 Face 90797 4106 45401 24309 Face 90798 4106 9219 45401 Face 90799 9289 45402 10178 Face 90800 45404 14757 45402 Face 90801 14757 45403 33031 Face 90802 14757 45404 45403 Face 90803 9289 45404 45402 Face 90804 9289 45403 45404 Face 90805 2601 45405 20155 Face 90806 2601 22120 45405 Face 90807 8298 45406 29698 Face 90808 8298 38649 45406 Face 90809 45408 45407 13988 Face 90810 9815 15226 45407 Face 90811 9815 45408 21944 Face 90812 9815 45407 45408 Face 90813 20677 45409 4744 Face 90814 20677 31432 45409 Face 90815 2121 45410 38656 Face 90816 2121 39685 45410 Face 90817 25556 45411 7704 Face 90818 25556 25930 45411 Face 90819 12199 45412 5109 Face 90820 49956 35303 45412 Face 90821 8258 45413 35949 Face 90822 8258 16289 45413 Face 90823 6465 45414 23420 Face 90824 6465 23122 45414 Face 90825 2355 45415 43913 Face 90826 2355 27990 45415 Face 90827 46367 45416 23899 Face 90828 45417 142 45416 Face 90829 6470 45417 45416 Face 90830 6470 30279 45417 Face 90831 140 45418 22067 Face 90832 140 14199 45418 Face 90833 9253 45419 16865 Face 90834 9253 37094 45419 Face 90835 595 45420 43774 Face 90836 595 16300 45420 Face 90837 33845 45421 27729 Face 90838 33845 27782 45421 Face 90839 17238 45422 3447 Face 90840 17238 17669 45422 Face 90841 8365 45423 41659 Face 90842 8365 34879 45423 Face 90843 9164 45424 19697 Face 90844 9164 1220 45424 Face 90845 3261 45425 11636 Face 90846 3261 17001 45425 Face 90847 12832 45426 10410 Face 90848 12832 44297 45426 Face 90849 21843 45427 47919 Face 90850 21843 24282 45427 Face 90851 20564 45428 23631 Face 90852 20564 4403 45428 Face 90853 21564 45429 5378 Face 90854 21564 36791 45429 Face 90855 37162 45430 6978 Face 90856 37162 37161 45430 Face 90857 22021 45431 8419 Face 90858 22021 22954 45431 Face 90859 10938 45432 43958 Face 90860 10938 40395 45432 Face 90861 5354 45433 14122 Face 90862 47928 21735 45433 Face 90863 9116 45434 1515 Face 90864 9116 19564 45434 Face 90865 18916 45435 10966 Face 90866 18916 42598 45435 Face 90867 5197 45436 42391 Face 90868 5197 23682 45436 Face 90869 10886 45437 43462 Face 90870 10886 23333 45437 Face 90871 39889 45438 36421 Face 90872 39889 45156 45438 Face 90873 45440 45439 33407 Face 90874 24876 31735 45439 Face 90875 24876 45440 34256 Face 90876 24876 45439 45440 Face 90877 13121 45441 47029 Face 90878 13121 39690 45441 Face 90879 11120 45442 41531 Face 90880 11120 1120 45442 Face 90881 22091 45443 2544 Face 90882 22091 8859 45443 Face 90883 7804 45444 46412 Face 90884 7804 1689 45444 Face 90885 4981 45445 9617 Face 90886 4981 19165 45445 Face 90887 2625 45446 39769 Face 90888 2625 41386 45446 Face 90889 20558 45447 41541 Face 90890 20558 20847 45447 Face 90891 11480 45448 36485 Face 90892 11480 35627 45448 Face 90893 3983 45449 43794 Face 90894 3983 27848 45449 Face 90895 10181 45450 21158 Face 90896 10181 46669 45450 Face 90897 16124 45451 34892 Face 90898 16124 29194 45451 Face 90899 11844 45452 32730 Face 90900 11844 40440 45452 Face 90901 16291 45453 26023 Face 90902 16291 12951 45453 Face 90903 12236 45454 21076 Face 90904 12236 25515 45454 Face 90905 45456 45455 36275 Face 90906 666 24481 45455 Face 90907 666 45456 9151 Face 90908 666 45455 45456 Face 90909 28833 45457 19853 Face 90910 28833 7787 45457 Face 90911 6289 45459 19709 Face 90912 6289 27415 45459 Face 90913 45458 45459 18875 Face 90914 45458 19709 45459 Face 90915 41117 45460 34840 Face 90916 41117 38060 45460 Face 90917 2041 45461 41353 Face 90918 2041 23910 45461 Face 90919 16258 45462 3461 Face 90920 16258 39515 45462 Face 90921 9606 45463 4092 Face 90922 9606 31707 45463 Face 90923 13641 45464 34788 Face 90924 13641 19013 45464 Face 90925 1835 45465 32140 Face 90926 1835 4343 45465 Face 90927 31458 45466 10301 Face 90928 31458 30804 45466 Face 90929 22507 45467 17983 Face 90930 22507 16092 45467 Face 90931 49318 45468 13051 Face 90932 13050 23303 45468 Face 90933 528 45469 33782 Face 90934 528 44581 45469 Face 90935 26759 45470 46984 Face 90936 26759 15392 45470 Face 90937 14260 45471 39739 Face 90938 14260 18386 45471 Face 90939 3062 45472 40304 Face 90940 3062 9052 45472 Face 90941 6227 45473 35922 Face 90942 6227 20958 45473 Face 90943 5061 45474 43993 Face 90944 5061 37204 45474 Face 90945 11152 45475 9711 Face 90946 11152 9024 45475 Face 90947 11956 45476 41320 Face 90948 11956 5974 45476 Face 90949 29076 45477 7734 Face 90950 29076 44799 45477 Face 90951 5840 45478 34046 Face 90952 5840 45773 45478 Face 90953 5840 45479 23133 Face 90954 5840 40394 45479 Face 90955 19456 45480 15227 Face 90956 19456 31227 45480 Face 90957 5015 45481 11915 Face 90958 5015 43139 45481 Face 90959 9924 45482 32130 Face 90960 9924 35222 45482 Face 90961 9470 45483 41811 Face 90962 9470 10756 45483 Face 90963 4750 45484 16999 Face 90964 4750 22029 45484 Face 90965 17304 45485 37727 Face 90966 17304 40405 45485 Face 90967 17896 45486 25718 Face 90968 17896 2173 45486 Face 90969 2983 45487 27507 Face 90970 2983 21375 45487 Face 90971 659 45488 25155 Face 90972 659 14065 45488 Face 90973 15414 45489 2783 Face 90974 15414 36069 45489 Face 90975 5419 45490 42608 Face 90976 5419 18 45490 Face 90977 28789 45491 39627 Face 90978 28789 376 45491 Face 90979 3478 45492 28327 Face 90980 3478 32611 45492 Face 90981 47230 45493 9634 Face 90982 28338 22600 45493 Face 90983 7954 45494 11671 Face 90984 7954 32651 45494 Face 90985 23152 45495 48902 Face 90986 23152 14856 45495 Face 90987 1042 45496 22335 Face 90988 1042 31923 45496 Face 90989 17201 45497 4802 Face 90990 17201 2663 45497 Face 90991 14584 45498 2689 Face 90992 14584 18062 45498 Face 90993 17316 45499 7985 Face 90994 17316 48894 45499 Face 90995 17005 45500 22344 Face 90996 17005 14036 45500 Face 90997 13145 45501 13142 Face 90998 45502 38089 45501 Face 90999 13145 45502 45501 Face 91000 13145 13141 45502 Face 91001 6394 45503 38885 Face 91002 6394 18771 45503 Face 91003 13856 45504 39028 Face 91004 13856 13857 45504 Face 91005 3064 45505 22496 Face 91006 3064 27670 45505 Face 91007 36591 45506 35056 Face 91008 36591 12633 45506 Face 91009 12423 45507 27684 Face 91010 12423 18157 45507 Face 91011 25853 45508 2539 Face 91012 25853 35911 45508 Face 91013 17955 45509 6199 Face 91014 17955 35551 45509 Face 91015 45511 45510 2669 Face 91016 5497 32229 45510 Face 91017 5497 45511 34681 Face 91018 5497 45510 45511 Face 91019 15540 45512 33321 Face 91020 15540 6137 45512 Face 91021 4144 45513 11117 Face 91022 4144 45182 45513 Face 91023 5248 45514 3 Face 91024 5248 6733 45514 Face 91025 11092 45515 14830 Face 91026 11092 18157 45515 Face 91027 10893 45516 24031 Face 91028 10893 41142 45516 Face 91029 12778 45517 37603 Face 91030 12778 14521 45517 Face 91031 11760 45518 20819 Face 91032 11760 24559 45518 Face 91033 22335 45519 27596 Face 91034 22335 40255 45519 Face 91035 9393 45520 25758 Face 91036 9393 49079 45520 Face 91037 8502 45521 80 Face 91038 8502 47811 45521 Face 91039 8186 45522 9320 Face 91040 8186 48302 45522 Face 91041 9987 45523 17483 Face 91042 9987 18400 45523 Face 91043 2911 45524 12985 Face 91044 2911 20553 45524 Face 91045 30979 45525 45329 Face 91046 30979 1007 45525 Face 91047 9145 45526 13825 Face 91048 45527 23396 45526 Face 91049 9145 45527 45526 Face 91050 9145 31808 45527 Face 91051 45529 45528 14750 Face 91052 45529 13050 45528 Face 91053 6909 45529 14750 Face 91054 6909 6908 45529 Face 91055 14412 45530 38776 Face 91056 14412 32420 45530 Face 91057 32340 45531 3287 Face 91058 32340 36375 45531 Face 91059 28480 45532 17186 Face 91060 28480 1646 45532 Face 91061 14177 45533 7097 Face 91062 14177 3775 45533 Face 91063 48655 45534 37386 Face 91064 3701 32094 45534 Face 91065 6537 45535 12928 Face 91066 6537 36643 45535 Face 91067 4851 45536 24812 Face 91068 4851 31103 45536 Face 91069 5122 45537 28504 Face 91070 5122 29433 45537 Face 91071 2721 45538 19208 Face 91072 2721 8512 45538 Face 91073 27869 45539 33450 Face 91074 27869 3190 45539 Face 91075 9684 45540 10277 Face 91076 9684 1721 45540 Face 91077 7989 45541 38023 Face 91078 7989 10283 45541 Face 91079 20106 45542 20370 Face 91080 20106 12207 45542 Face 91081 14826 45543 40809 Face 91082 14826 4209 45543 Face 91083 1559 45544 22724 Face 91084 1559 28541 45544 Face 91085 15524 45545 27299 Face 91086 15524 43604 45545 Face 91087 16432 45546 3229 Face 91088 16432 11968 45546 Face 91089 7329 45547 33526 Face 91090 7329 2767 45547 Face 91091 7463 45548 47134 Face 91092 7463 38154 45548 Face 91093 26061 45549 9423 Face 91094 26061 17909 45549 Face 91095 20572 45550 20573 Face 91096 20572 23280 45550 Face 91097 2311 45551 31268 Face 91098 2311 30142 45551 Face 91099 599 45552 34190 Face 91100 599 9620 45552 Face 91101 3480 45553 38113 Face 91102 3480 44884 45553 Face 91103 14998 45554 19415 Face 91104 14998 4480 45554 Face 91105 17212 45555 11484 Face 91106 17212 17213 45555 Face 91107 37606 45556 13398 Face 91108 37606 25044 45556 Face 91109 19535 45557 39662 Face 91110 19535 6256 45557 Face 91111 48736 45558 29979 Face 91112 9627 4941 45558 Face 91113 15220 45559 7258 Face 91114 15220 26302 45559 Face 91115 5969 45560 177 Face 91116 5969 19621 45560 Face 91117 3017 45561 11330 Face 91118 3017 36922 45561 Face 91119 23474 45562 38804 Face 91120 23474 44576 45562 Face 91121 11972 45563 19584 Face 91122 11972 34480 45563 Face 91123 13333 45564 5125 Face 91124 13333 10184 45564 Face 91125 5328 45565 18095 Face 91126 5328 16224 45565 Face 91127 9309 45566 19182 Face 91128 9309 6883 45566 Face 91129 5670 45567 12947 Face 91130 5670 32726 45567 Face 91131 553 45568 30106 Face 91132 553 40842 45568 Face 91133 5763 45569 18976 Face 91134 5763 26441 45569 Face 91135 11142 45570 28606 Face 91136 11142 32837 45570 Face 91137 7615 45571 30334 Face 91138 7615 27566 45571 Face 91139 8168 45572 40291 Face 91140 8168 15892 45572 Face 91141 2414 45573 15734 Face 91142 2414 14347 45573 Face 91143 2775 45574 22866 Face 91144 2775 26200 45574 Face 91145 11150 45575 23271 Face 91146 11150 35325 45575 Face 91147 18263 45576 19158 Face 91148 18263 40432 45576 Face 91149 6231 45577 24410 Face 91150 6231 19638 45577 Face 91151 26933 45578 31077 Face 91152 26933 42781 45578 Face 91153 7432 45579 40807 Face 91154 7432 3477 45579 Face 91155 16526 45580 39860 Face 91156 16526 32223 45580 Face 91157 17158 45581 10210 Face 91158 17158 44171 45581 Face 91159 3957 45582 42502 Face 91160 3957 15304 45582 Face 91161 3309 45583 23115 Face 91162 3309 13980 45583 Face 91163 11156 45584 46829 Face 91164 11156 42971 45584 Face 91165 29654 45585 17009 Face 91166 29654 41554 45585 Face 91167 7369 45586 33644 Face 91168 7369 12320 45586 Face 91169 7369 45587 11392 Face 91170 7369 33644 45587 Face 91171 25074 45588 41871 Face 91172 25074 144 45588 Face 91173 6660 45589 42746 Face 91174 6660 23330 45589 Face 91175 11831 45590 22182 Face 91176 11831 22560 45590 Face 91177 19382 45591 33960 Face 91178 19382 19457 45591 Face 91179 634 45592 30709 Face 91180 634 25533 45592 Face 91181 11329 45593 38288 Face 91182 11329 23906 45593 Face 91183 12044 45594 16871 Face 91184 12044 4421 45594 Face 91185 19650 45595 39101 Face 91186 19650 30159 45595 Face 91187 45597 45596 10464 Face 91188 14213 8858 45596 Face 91189 14213 45597 34331 Face 91190 14213 45596 45597 Face 91191 8694 45598 26265 Face 91192 8694 3266 45598 Face 91193 45600 45599 5069 Face 91194 5068 27548 45599 Face 91195 5068 45600 25231 Face 91196 5068 45599 45600 Face 91197 17884 45601 18449 Face 91198 17884 25551 45601 Face 91199 20501 45602 35675 Face 91200 20501 2049 45602 Face 91201 19572 45603 8698 Face 91202 19572 44453 45603 Face 91203 28898 45604 23932 Face 91204 28898 2867 45604 Face 91205 1676 45605 34984 Face 91206 1676 17067 45605 Face 91207 18158 45606 13221 Face 91208 18158 5959 45606 Face 91209 45918 45607 3500 Face 91210 5060 36727 45607 Face 91211 8422 45608 28176 Face 91212 8422 36836 45608 Face 91213 37677 45609 7748 Face 91214 37677 34045 45609 Face 91215 46834 45610 7496 Face 91216 20841 33296 45610 Face 91217 28919 45611 7093 Face 91218 28919 19262 45611 Face 91219 39508 45612 15459 Face 91220 39508 1239 45612 Face 91221 10169 45613 37169 Face 91222 10169 40215 45613 Face 91223 5239 45614 25481 Face 91224 5239 39189 45614 Face 91225 10404 45615 39094 Face 91226 48201 36592 45615 Face 91227 2807 45616 26542 Face 91228 2807 32325 45616 Face 91229 19877 45617 18514 Face 91230 19877 14616 45617 Face 91231 24392 45618 26597 Face 91232 24392 37368 45618 Face 91233 32744 45619 14028 Face 91234 32744 30123 45619 Face 91235 25622 45620 36675 Face 91236 25622 16973 45620 Face 91237 12447 45621 31457 Face 91238 12447 24719 45621 Face 91239 26175 45622 34566 Face 91240 26175 45028 45622 Face 91241 1628 45623 48078 Face 91242 1628 23656 45623 Face 91243 9668 45624 22325 Face 91244 9668 38287 45624 Face 91245 4023 45625 8844 Face 91246 4023 22886 45625 Face 91247 19905 45626 11964 Face 91248 19905 31069 45626 Face 91249 27803 45627 39790 Face 91250 27803 12010 45627 Face 91251 6514 45628 16818 Face 91252 6514 18321 45628 Face 91253 7974 45629 12523 Face 91254 7974 7975 45629 Face 91255 7704 45630 30648 Face 91256 7704 44162 45630 Face 91257 14471 45631 5856 Face 91258 14471 584 45631 Face 91259 3521 45632 16202 Face 91260 3521 35512 45632 Face 91261 3110 45633 22909 Face 91262 3110 11724 45633 Face 91263 1002 45634 40166 Face 91264 1002 24008 45634 Face 91265 23543 45635 45676 Face 91266 23543 35483 45635 Face 91267 8276 45636 3708 Face 91268 45637 21228 45636 Face 91269 8276 45637 45636 Face 91270 8276 12080 45637 Face 91271 644 45638 34370 Face 91272 644 41105 45638 Face 91273 20066 45639 31792 Face 91274 20066 11682 45639 Face 91275 9661 45640 46064 Face 91276 9661 13878 45640 Face 91277 1059 45641 39756 Face 91278 1059 25441 45641 Face 91279 6633 45642 32226 Face 91280 6633 37018 45642 Face 91281 2939 45643 28286 Face 91282 2939 45370 45643 Face 91283 1563 45644 18683 Face 91284 1563 35763 45644 Face 91285 2513 45645 31940 Face 91286 2513 43550 45645 Face 91287 16564 45646 24920 Face 91288 16564 30846 45646 Face 91289 23278 45647 44047 Face 91290 23278 14285 45647 Face 91291 28773 45648 38553 Face 91292 45649 47598 45648 Face 91293 28773 45649 45648 Face 91294 28773 36240 45649 Face 91295 1519 45650 36014 Face 91296 1519 15735 45650 Face 91297 12434 45651 45282 Face 91298 12434 31904 45651 Face 91299 4644 45652 23666 Face 91300 4644 24607 45652 Face 91301 3469 45653 12338 Face 91302 3469 36703 45653 Face 91303 22189 45654 27007 Face 91304 22189 16007 45654 Face 91305 5150 45655 27537 Face 91306 5150 23677 45655 Face 91307 48627 45656 24518 Face 91308 25959 7869 45656 Face 91309 20038 45657 5609 Face 91310 20038 29585 45657 Face 91311 11087 45658 35350 Face 91312 11087 47010 45658 Face 91313 11087 45659 27082 Face 91314 11087 8629 45659 Face 91315 33165 45660 30478 Face 91316 33165 12946 45660 Face 91317 13303 45661 22472 Face 91318 13303 28393 45661 Face 91319 18529 45662 26439 Face 91320 18529 35076 45662 Face 91321 4429 45663 34126 Face 91322 4429 21865 45663 Face 91323 25740 45664 4858 Face 91324 25740 10189 45664 Face 91325 48105 45665 18105 Face 91326 3642 40784 45665 Face 91327 4314 45666 21315 Face 91328 4314 44395 45666 Face 91329 6649 45667 38984 Face 91330 6649 25427 45667 Face 91331 25576 45668 6507 Face 91332 25576 46491 45668 Face 91333 2330 45669 43759 Face 91334 2330 31704 45669 Face 91335 3024 45670 45336 Face 91336 3024 32419 45670 Face 91337 9995 45671 31599 Face 91338 9995 3188 45671 Face 91339 8219 45672 18210 Face 91340 8219 41648 45672 Face 91341 28378 45673 28377 Face 91342 28378 9767 45673 Face 91343 8633 45674 39345 Face 91344 8633 31624 45674 Face 91345 23475 45675 9532 Face 91346 23475 38516 45675 Face 91347 10019 45676 45635 Face 91348 10019 40462 45676 Face 91349 17184 45677 7377 Face 91350 17184 4857 45677 Face 91351 19713 45678 32801 Face 91352 19713 6104 45678 Face 91353 1575 45679 30530 Face 91354 48133 16867 45679 Face 91355 19031 45680 35263 Face 91356 19031 12290 45680 Face 91357 10022 45681 15621 Face 91358 10022 38771 45681 Face 91359 11373 45682 37242 Face 91360 11373 33748 45682 Face 91361 6383 45683 21248 Face 91362 6383 29656 45683 Face 91363 584 45684 3910 Face 91364 584 14471 45684 Face 91365 48178 45685 6281 Face 91366 1116 9692 45685 Face 91367 32557 45686 41740 Face 91368 32557 41027 45686 Face 91369 5384 45687 27465 Face 91370 5384 43656 45687 Face 91371 15191 45688 22148 Face 91372 15191 7597 45688 Face 91373 7974 45689 31090 Face 91374 7974 25879 45689 Face 91375 6139 45690 12923 Face 91376 6139 30939 45690 Face 91377 14638 45691 25665 Face 91378 14638 27755 45691 Face 91379 10454 45692 25654 Face 91380 10454 13374 45692 Face 91381 27092 45693 15283 Face 91382 27092 7414 45693 Face 91383 16837 45694 9983 Face 91384 16837 34319 45694 Face 91385 10313 45695 16894 Face 91386 10313 12590 45695 Face 91387 11277 45696 47254 Face 91388 11277 31431 45696 Face 91389 8358 45697 13229 Face 91390 8358 42364 45697 Face 91391 4507 45698 15490 Face 91392 4507 33801 45698 Face 91393 20704 45699 16890 Face 91394 20704 11022 45699 Face 91395 18812 45700 28797 Face 91396 18812 1715 45700 Face 91397 45702 45701 37556 Face 91398 20051 43787 45701 Face 91399 20051 45702 38053 Face 91400 20051 45701 45702 Face 91401 25000 45703 30512 Face 91402 25000 42086 45703 Face 91403 31892 45704 31843 Face 91404 31892 27266 45704 Face 91405 16138 45705 16486 Face 91406 16138 15199 45705 Face 91407 15224 45706 10155 Face 91408 15224 33150 45706 Face 91409 6112 45707 27455 Face 91410 6112 33772 45707 Face 91411 21328 45708 48096 Face 91412 21328 46402 45708 Face 91413 20517 45709 11584 Face 91414 20517 48086 45709 Face 91415 477 45710 28680 Face 91416 477 14992 45710 Face 91417 17439 45711 22936 Face 91418 17439 28793 45711 Face 91419 24329 45712 4215 Face 91420 24329 39582 45712 Face 91421 14383 45713 4158 Face 91422 14383 14382 45713 Face 91423 1454 45714 16505 Face 91424 1454 28873 45714 Face 91425 36224 45715 9299 Face 91426 36224 10507 45715 Face 91427 13079 45716 22823 Face 91428 13079 40341 45716 Face 91429 45718 45717 12076 Face 91430 33162 42089 45717 Face 91431 33162 45718 3270 Face 91432 33162 45717 45718 Face 91433 3513 45719 42501 Face 91434 3513 21801 45719 Face 91435 13271 45720 641 Face 91436 13271 1924 45720 Face 91437 12370 45721 21446 Face 91438 12370 48792 45721 Face 91439 13448 45722 11723 Face 91440 13448 29124 45722 Face 91441 14999 45723 43403 Face 91442 14999 31835 45723 Face 91443 14004 45724 34182 Face 91444 14004 7174 45724 Face 91445 19553 45725 36427 Face 91446 19553 14374 45725 Face 91447 45727 45726 21781 Face 91448 8786 36473 45726 Face 91449 8786 45727 37697 Face 91450 8786 45726 45727 Face 91451 23835 45728 8337 Face 91452 23835 5382 45728 Face 91453 367 45729 24386 Face 91454 367 13685 45729 Face 91455 22255 45730 5760 Face 91456 22255 8447 45730 Face 91457 13484 45731 25061 Face 91458 13484 42764 45731 Face 91459 378 45732 22125 Face 91460 378 39880 45732 Face 91461 1691 45733 9298 Face 91462 1691 26789 45733 Face 91463 11235 45734 41318 Face 91464 11235 1702 45734 Face 91465 22369 45735 28544 Face 91466 22369 6458 45735 Face 91467 27289 45736 31910 Face 91468 45737 28528 45736 Face 91469 27289 45737 45736 Face 91470 27289 4889 45737 Face 91471 2148 45738 33288 Face 91472 2148 21461 45738 Face 91473 32958 45739 27931 Face 91474 32958 5998 45739 Face 91475 14141 45740 4293 Face 91476 14141 38986 45740 Face 91477 9410 45741 12705 Face 91478 9410 9411 45741 Face 91479 5223 45742 14353 Face 91480 5223 46913 45742 Face 91481 19253 45743 37407 Face 91482 19253 3412 45743 Face 91483 2107 45744 43893 Face 91484 2107 33083 45744 Face 91485 25148 45745 42107 Face 91486 25148 1787 45745 Face 91487 22209 45746 39806 Face 91488 22209 18998 45746 Face 91489 22750 45747 17168 Face 91490 22750 36668 45747 Face 91491 12078 45748 33831 Face 91492 49087 25235 45748 Face 91493 23042 45749 29089 Face 91494 23042 40239 45749 Face 91495 12062 45750 38198 Face 91496 12062 43777 45750 Face 91497 16367 45751 35783 Face 91498 16367 8585 45751 Face 91499 10335 45752 41698 Face 91500 10335 21356 45752 Face 91501 36466 45753 35905 Face 91502 36466 43999 45753 Face 91503 9201 45754 24082 Face 91504 9201 33662 45754 Face 91505 15322 45755 16215 Face 91506 15322 33880 45755 Face 91507 6417 45756 47840 Face 91508 6417 26191 45756 Face 91509 12974 45757 7722 Face 91510 12974 17433 45757 Face 91511 9781 45758 18439 Face 91512 9781 48069 45758 Face 91513 12758 45759 25162 Face 91514 12758 42653 45759 Face 91515 10443 45760 40186 Face 91516 10443 22214 45760 Face 91517 20151 45761 6279 Face 91518 20151 25789 45761 Face 91519 8460 45762 28161 Face 91520 8460 11407 45762 Face 91521 7126 45763 10199 Face 91522 7126 37925 45763 Face 91523 8741 45764 508 Face 91524 8741 7698 45764 Face 91525 3461 45765 17100 Face 91526 3461 10371 45765 Face 91527 24551 45766 9752 Face 91528 24551 16866 45766 Face 91529 49831 45767 39789 Face 91530 49831 4491 45767 Face 91531 44220 45768 27003 Face 91532 44220 11897 45768 Face 91533 49915 45769 546 Face 91534 49915 11551 45769 Face 91535 11872 45770 27419 Face 91536 11872 19820 45770 Face 91537 3874 45771 12417 Face 91538 3874 15454 45771 Face 91539 15710 45772 4151 Face 91540 15710 12681 45772 Face 91541 25854 45773 3189 Face 91542 25854 45478 45773 Face 91543 18362 45774 7650 Face 91544 18362 35169 45774 Face 91545 20925 45775 10407 Face 91546 20925 5727 45775 Face 91547 6683 45776 24654 Face 91548 6683 33873 45776 Face 91549 21344 45777 10456 Face 91550 21344 34761 45777 Face 91551 23109 45778 35027 Face 91552 23109 24062 45778 Face 91553 6169 45779 3099 Face 91554 6169 36319 45779 Face 91555 14922 45780 42882 Face 91556 14922 28153 45780 Face 91557 17642 45781 5361 Face 91558 17642 15489 45781 Face 91559 201 45782 10806 Face 91560 201 28695 45782 Face 91561 14765 45783 28523 Face 91562 14765 21067 45783 Face 91563 39309 45784 3862 Face 91564 39309 38424 45784 Face 91565 839 45785 34613 Face 91566 839 39152 45785 Face 91567 16199 45786 16198 Face 91568 16199 32067 45786 Face 91569 5970 45787 42630 Face 91570 5970 20917 45787 Face 91571 11027 45788 27985 Face 91572 45789 3354 45788 Face 91573 11027 45789 45788 Face 91574 11027 39979 45789 Face 91575 8076 45790 24715 Face 91576 45791 20509 45790 Face 91577 8076 45791 45790 Face 91578 8076 16651 45791 Face 91579 45793 45792 23346 Face 91580 1339 25735 45792 Face 91581 1339 45793 30115 Face 91582 1339 45792 45793 Face 91583 11913 45794 48918 Face 91584 11913 4623 45794 Face 91585 995 45795 36687 Face 91586 995 18077 45795 Face 91587 22938 45796 48061 Face 91588 22938 8492 45796 Face 91589 22978 45797 394 Face 91590 22978 7887 45797 Face 91591 16141 45798 33262 Face 91592 16141 41603 45798 Face 91593 8421 45799 41497 Face 91594 8421 42881 45799 Face 91595 21542 45800 26641 Face 91596 46744 29437 45800 Face 91597 23405 45801 10844 Face 91598 23405 45281 45801 Face 91599 6904 45802 21971 Face 91600 6904 741 45802 Face 91601 28593 45803 11776 Face 91602 28593 4306 45803 Face 91603 7878 45804 25940 Face 91604 7878 921 45804 Face 91605 16876 45805 30190 Face 91606 16876 20716 45805 Face 91607 18355 45806 34431 Face 91608 48570 1079 45806 Face 91609 22327 45807 12684 Face 91610 22327 28514 45807 Face 91611 24670 45808 16903 Face 91612 24670 31055 45808 Face 91613 28858 45809 4348 Face 91614 28858 5448 45809 Face 91615 3268 45810 34553 Face 91616 3268 10522 45810 Face 91617 13836 45811 7924 Face 91618 13836 12663 45811 Face 91619 1822 45812 34567 Face 91620 1822 38783 45812 Face 91621 24993 45813 11488 Face 91622 24993 3632 45813 Face 91623 15068 45814 32290 Face 91624 15068 31449 45814 Face 91625 3755 45815 39711 Face 91626 3755 37267 45815 Face 91627 3365 45816 27142 Face 91628 3365 30462 45816 Face 91629 23977 45817 28876 Face 91630 23977 4536 45817 Face 91631 22273 45818 40369 Face 91632 22273 14833 45818 Face 91633 26969 45819 5171 Face 91634 26969 2731 45819 Face 91635 903 45820 32565 Face 91636 903 16028 45820 Face 91637 1930 45821 11426 Face 91638 1930 19170 45821 Face 91639 22318 45822 43967 Face 91640 22318 35852 45822 Face 91641 35145 45823 4940 Face 91642 35145 4946 45823 Face 91643 20320 45824 32518 Face 91644 20320 36770 45824 Face 91645 2646 45825 39174 Face 91646 2646 39853 45825 Face 91647 307 45826 24610 Face 91648 307 32769 45826 Face 91649 5617 45827 33270 Face 91650 5617 45363 45827 Face 91651 2608 45828 4199 Face 91652 2608 31256 45828 Face 91653 32069 45829 8784 Face 91654 32069 43687 45829 Face 91655 2368 45830 8796 Face 91656 2368 24302 45830 Face 91657 14384 45831 34808 Face 91658 14384 14382 45831 Face 91659 3132 45832 37522 Face 91660 3132 33167 45832 Face 91661 16767 45833 13007 Face 91662 16767 19200 45833 Face 91663 48074 45834 31908 Face 91664 5926 514 45834 Face 91665 16479 45835 34812 Face 91666 16479 27543 45835 Face 91667 7190 45836 10074 Face 91668 7190 28324 45836 Face 91669 28316 45837 4460 Face 91670 28316 15712 45837 Face 91671 10378 45838 25296 Face 91672 45839 49 45838 Face 91673 10378 45839 45838 Face 91674 10378 38630 45839 Face 91675 8494 45840 864 Face 91676 8494 29334 45840 Face 91677 10084 45841 42011 Face 91678 10084 26505 45841 Face 91679 8597 45842 27506 Face 91680 8597 21531 45842 Face 91681 24248 45843 9329 Face 91682 24248 34337 45843 Face 91683 16462 45844 1969 Face 91684 16462 18332 45844 Face 91685 15998 45845 44956 Face 91686 15998 1045 45845 Face 91687 2621 45846 41293 Face 91688 2621 38916 45846 Face 91689 12091 45847 34375 Face 91690 12091 37748 45847 Face 91691 9829 45848 3505 Face 91692 9829 40372 45848 Face 91693 15000 45849 39463 Face 91694 15000 21336 45849 Face 91695 8108 45850 49683 Face 91696 8108 13390 45850 Face 91697 13030 45851 32243 Face 91698 13030 21739 45851 Face 91699 2508 45852 15202 Face 91700 2508 22803 45852 Face 91701 12395 45853 42788 Face 91702 45854 37545 45853 Face 91703 12395 45854 45853 Face 91704 12395 32127 45854 Face 91705 11971 45855 31120 Face 91706 11971 30980 45855 Face 91707 25094 45856 43948 Face 91708 25094 12110 45856 Face 91709 21089 45857 15382 Face 91710 21089 1922 45857 Face 91711 20655 45858 36927 Face 91712 20655 1390 45858 Face 91713 13477 45859 43829 Face 91714 13477 4656 45859 Face 91715 14 45860 37718 Face 91716 14 19178 45860 Face 91717 18028 45861 35942 Face 91718 18028 7502 45861 Face 91719 46150 45862 20856 Face 91720 6118 37530 45862 Face 91721 8368 45863 35556 Face 91722 8368 2489 45863 Face 91723 15835 45864 43786 Face 91724 15835 22763 45864 Face 91725 18859 45865 35431 Face 91726 18859 4636 45865 Face 91727 26836 45866 27769 Face 91728 26836 10520 45866 Face 91729 11295 45867 10306 Face 91730 11295 21408 45867 Face 91731 26444 45868 26682 Face 91732 26444 16293 45868 Face 91733 8188 45869 34327 Face 91734 8188 40311 45869 Face 91735 3392 45870 26982 Face 91736 3392 8093 45870 Face 91737 26305 45871 31003 Face 91738 26305 1985 45871 Face 91739 6683 45872 33873 Face 91740 6683 32091 45872 Face 91741 34504 45873 32608 Face 91742 34504 17936 45873 Face 91743 3824 45874 30106 Face 91744 3824 40737 45874 Face 91745 6246 45875 32654 Face 91746 6246 24967 45875 Face 91747 4830 45876 32317 Face 91748 4830 26194 45876 Face 91749 16546 45877 3919 Face 91750 16546 28052 45877 Face 91751 2458 45878 35037 Face 91752 2458 40660 45878 Face 91753 14428 45879 27539 Face 91754 14428 12710 45879 Face 91755 23211 45880 8737 Face 91756 23211 14013 45880 Face 91757 28814 45881 21835 Face 91758 28814 5167 45881 Face 91759 4341 45882 11273 Face 91760 4341 20845 45882 Face 91761 27443 45883 27444 Face 91762 27443 48427 45883 Face 91763 16203 45884 39948 Face 91764 16203 3263 45884 Face 91765 16235 45885 47711 Face 91766 16235 16234 45885 Face 91767 8681 45886 44128 Face 91768 8681 19111 45886 Face 91769 8429 45887 21217 Face 91770 8429 39253 45887 Face 91771 29808 45888 27490 Face 91772 29808 40919 45888 Face 91773 8061 45889 6335 Face 91774 46345 40804 45889 Face 91775 21353 45890 39367 Face 91776 21353 47468 45890 Face 91777 7193 45891 3248 Face 91778 7193 41670 45891 Face 91779 22339 45892 32597 Face 91780 22339 4712 45892 Face 91781 23183 45893 8596 Face 91782 23183 38855 45893 Face 91783 24311 45894 34592 Face 91784 24311 6866 45894 Face 91785 4922 45895 13977 Face 91786 4922 5794 45895 Face 91787 7881 45896 18630 Face 91788 7881 45029 45896 Face 91789 9557 45897 1288 Face 91790 9557 21982 45897 Face 91791 7118 45898 31644 Face 91792 7118 18546 45898 Face 91793 26025 45899 14757 Face 91794 26025 38567 45899 Face 91795 13604 45900 42888 Face 91796 13604 36503 45900 Face 91797 1766 45901 23021 Face 91798 1766 4230 45901 Face 91799 16312 45902 32442 Face 91800 16312 28277 45902 Face 91801 27839 45903 24034 Face 91802 27839 22703 45903 Face 91803 3350 45904 41556 Face 91804 3350 38249 45904 Face 91805 16400 45905 12510 Face 91806 16400 27015 45905 Face 91807 13287 45906 6518 Face 91808 13287 32982 45906 Face 91809 26698 45907 49839 Face 91810 26698 39362 45907 Face 91811 13163 45908 2045 Face 91812 13163 28911 45908 Face 91813 1186 45909 11012 Face 91814 1186 29638 45909 Face 91815 16132 45910 3113 Face 91816 16132 39768 45910 Face 91817 7496 45911 18829 Face 91818 7496 25705 45911 Face 91819 11784 45912 33290 Face 91820 11784 31532 45912 Face 91821 4003 45913 21178 Face 91822 4003 28870 45913 Face 91823 21481 45914 21118 Face 91824 21481 25108 45914 Face 91825 4071 45915 37037 Face 91826 4071 906 45915 Face 91827 10480 45916 27842 Face 91828 10480 35438 45916 Face 91829 7196 45917 25366 Face 91830 7196 28233 45917 Face 91831 5060 45918 15470 Face 91832 5060 45607 45918 Face 91833 24983 45919 11116 Face 91834 24983 11117 45919 Face 91835 1267 45920 27747 Face 91836 1267 8060 45920 Face 91837 12612 45921 3440 Face 91838 12612 27528 45921 Face 91839 3047 45922 39693 Face 91840 3047 38177 45922 Face 91841 22402 45923 13700 Face 91842 22402 15048 45923 Face 91843 8641 45924 8640 Face 91844 8641 23262 45924 Face 91845 15644 45925 38273 Face 91846 15644 21057 45925 Face 91847 28208 45926 8664 Face 91848 28208 4482 45926 Face 91849 26225 45927 12866 Face 91850 26225 26226 45927 Face 91851 15448 45928 22858 Face 91852 15448 15449 45928 Face 91853 17834 45929 34757 Face 91854 17834 48125 45929 Face 91855 4291 45930 41866 Face 91856 4291 33578 45930 Face 91857 7100 45931 13024 Face 91858 7100 42225 45931 Face 91859 17999 45932 31186 Face 91860 17999 33930 45932 Face 91861 18292 45933 35519 Face 91862 18292 2809 45933 Face 91863 28971 45934 22326 Face 91864 28971 13381 45934 Face 91865 5296 45935 28403 Face 91866 5296 2772 45935 Face 91867 13912 45936 6697 Face 91868 13912 48338 45936 Face 91869 47066 45937 49200 Face 91870 34150 12121 45937 Face 91871 16958 45938 8308 Face 91872 16958 314 45938 Face 91873 3731 45939 17631 Face 91874 3731 43318 45939 Face 91875 33178 45940 11464 Face 91876 33178 15418 45940 Face 91877 19029 45941 1462 Face 91878 19029 28504 45941 Face 91879 6569 45942 15230 Face 91880 6569 26582 45942 Face 91881 41458 45943 27890 Face 91882 41458 18674 45943 Face 91883 13184 45944 15079 Face 91884 13184 21078 45944 Face 91885 17320 45945 16020 Face 91886 17320 41110 45945 Face 91887 1547 45946 9032 Face 91888 1547 3709 45946 Face 91889 28551 45947 4378 Face 91890 28551 33836 45947 Face 91891 11709 45948 40906 Face 91892 47450 41529 45948 Face 91893 10952 45949 47688 Face 91894 10952 19348 45949 Face 91895 5398 45950 44402 Face 91896 5398 27904 45950 Face 91897 9749 45951 3735 Face 91898 9749 14860 45951 Face 91899 12310 45952 20500 Face 91900 12310 28711 45952 Face 91901 1930 45953 32113 Face 91902 1930 10327 45953 Face 91903 45955 45954 9546 Face 91904 24100 35477 45954 Face 91905 24100 45955 26293 Face 91906 24100 45954 45955 Face 91907 10400 45956 24587 Face 91908 10400 22520 45956 Face 91909 5734 45957 20417 Face 91910 45958 8313 45957 Face 91911 5734 45958 45957 Face 91912 5734 31772 45958 Face 91913 12462 45959 24874 Face 91914 12462 17058 45959 Face 91915 18848 45960 15753 Face 91916 18848 95 45960 Face 91917 2684 45961 7253 Face 91918 2684 3416 45961 Face 91919 15636 45962 40535 Face 91920 15636 34613 45962 Face 91921 6147 45963 11063 Face 91922 6147 46965 45963 Face 91923 21100 45964 31470 Face 91924 21100 18148 45964 Face 91925 18083 45965 41130 Face 91926 18083 22568 45965 Face 91927 16243 45966 32122 Face 91928 16243 11984 45966 Face 91929 388 45967 35405 Face 91930 388 5481 45967 Face 91931 2071 45968 34570 Face 91932 2071 17257 45968 Face 91933 18640 45969 37160 Face 91934 18640 42991 45969 Face 91935 2044 45970 16522 Face 91936 2044 32450 45970 Face 91937 4311 45971 40113 Face 91938 4311 37128 45971 Face 91939 7556 45972 40527 Face 91940 48773 38382 45972 Face 91941 12694 45973 26022 Face 91942 12694 6749 45973 Face 91943 8631 45974 27424 Face 91944 8631 37178 45974 Face 91945 17535 45975 7861 Face 91946 17535 1190 45975 Face 91947 1502 45976 34555 Face 91948 1502 7058 45976 Face 91949 2617 45977 26227 Face 91950 2617 38603 45977 Face 91951 16423 45978 21566 Face 91952 16423 33043 45978 Face 91953 45980 45979 34070 Face 91954 2944 11545 45979 Face 91955 2944 45980 5330 Face 91956 2944 45979 45980 Face 91957 25393 45981 293 Face 91958 25393 8272 45981 Face 91959 857 45982 10663 Face 91960 857 15052 45982 Face 91961 47184 45983 22802 Face 91962 8410 23693 45983 Face 91963 3526 45984 17784 Face 91964 3526 21208 45984 Face 91965 3526 45985 18882 Face 91966 3526 17784 45985 Face 91967 18538 45986 32173 Face 91968 18538 18537 45986 Face 91969 5921 45987 8815 Face 91970 5921 27435 45987 Face 91971 13516 45988 38350 Face 91972 13516 5075 45988 Face 91973 2105 45989 8682 Face 91974 2105 33470 45989 Face 91975 22474 45990 44957 Face 91976 22474 5181 45990 Face 91977 23945 45991 27556 Face 91978 23945 34218 45991 Face 91979 13132 45992 30152 Face 91980 13132 18742 45992 Face 91981 31018 45993 9412 Face 91982 31018 36747 45993 Face 91983 167 45994 11663 Face 91984 167 31827 45994 Face 91985 16321 45996 16375 Face 91986 16321 31114 45995 Face 91987 45995 45996 16321 Face 91988 45995 16375 45996 Face 91989 3363 45997 42387 Face 91990 3363 29938 45997 Face 91991 5077 45998 4300 Face 91992 5077 8271 45998 Face 91993 16461 45999 29763 Face 91994 16461 27708 45999 Face 91995 952 46000 11505 Face 91996 952 19241 46000 Face 91997 11298 46001 27669 Face 91998 11298 43741 46001 Face 91999 18606 46002 8782 Face 92000 18606 20793 46002 Face 92001 1453 46003 12892 Face 92002 1453 40871 46003 Face 92003 22655 46004 42135 Face 92004 22655 4857 46004 Face 92005 25454 46005 13129 Face 92006 25454 4084 46005 Face 92007 22701 46006 37861 Face 92008 22701 20077 46006 Face 92009 17399 46007 26134 Face 92010 17399 3672 46007 Face 92011 32155 46008 28670 Face 92012 32155 2683 46008 Face 92013 2315 46009 15589 Face 92014 2315 41868 46009 Face 92015 20155 46010 4953 Face 92016 20155 7672 46010 Face 92017 14202 46011 35015 Face 92018 14202 10175 46011 Face 92019 1257 46012 1811 Face 92020 1257 15029 46012 Face 92021 22685 46013 12458 Face 92022 22685 23358 46013 Face 92023 36093 46014 31373 Face 92024 36093 24652 46014 Face 92025 24605 46015 23380 Face 92026 24605 43904 46015 Face 92027 2888 46016 26892 Face 92028 2888 6329 46016 Face 92029 46016 46017 17172 Face 92030 46016 6329 46017 Face 92031 1133 46018 43643 Face 92032 1133 19988 46018 Face 92033 47008 46019 12870 Face 92034 3468 25004 46019 Face 92035 18828 46020 974 Face 92036 46021 3159 46020 Face 92037 18828 46021 46020 Face 92038 18828 15151 46021 Face 92039 2505 46022 23776 Face 92040 2505 34466 46022 Face 92041 21200 46023 27083 Face 92042 21200 13790 46023 Face 92043 17655 46024 10451 Face 92044 17655 4829 46024 Face 92045 24575 46025 11509 Face 92046 24575 27356 46025 Face 92047 33401 46026 15831 Face 92048 33401 11038 46026 Face 92049 13460 46027 42427 Face 92050 13460 37255 46027 Face 92051 3200 46028 40425 Face 92052 3200 25354 46028 Face 92053 46030 46029 36382 Face 92054 10765 43638 46029 Face 92055 10765 46030 34998 Face 92056 10765 46029 46030 Face 92057 19651 46031 30159 Face 92058 19651 19652 46031 Face 92059 10263 46032 23925 Face 92060 10263 30447 46032 Face 92061 2352 46033 19525 Face 92062 2352 24590 46033 Face 92063 11754 46034 29914 Face 92064 11754 29581 46034 Face 92065 14417 46035 21038 Face 92066 14417 37137 46035 Face 92067 24546 46036 2395 Face 92068 24546 27174 46036 Face 92069 5819 46037 38081 Face 92070 5819 49473 46037 Face 92071 9884 46038 27392 Face 92072 9884 48500 46038 Face 92073 10550 46039 5960 Face 92074 10550 38301 46039 Face 92075 11387 46040 35809 Face 92076 11387 29615 46040 Face 92077 11512 46041 42069 Face 92078 11512 9233 46041 Face 92079 13532 46042 46043 Face 92080 13532 24702 46042 Face 92081 43656 46043 46042 Face 92082 43656 13532 46043 Face 92083 16314 46044 11294 Face 92084 16314 28536 46044 Face 92085 46046 46045 13900 Face 92086 48486 5603 46045 Face 92087 12073 46046 29527 Face 92088 48486 46045 46046 Face 92089 21165 46047 3097 Face 92090 21165 9691 46047 Face 92091 10174 46048 20139 Face 92092 10174 23808 46048 Face 92093 11190 46049 1575 Face 92094 11190 20764 46049 Face 92095 14533 46050 31344 Face 92096 14533 40160 46050 Face 92097 1407 46051 17174 Face 92098 1407 26022 46051 Face 92099 14276 46052 43310 Face 92100 14276 6791 46052 Face 92101 8379 46053 37839 Face 92102 8379 17611 46053 Face 92103 13052 46054 27446 Face 92104 13052 34479 46054 Face 92105 10253 46055 42872 Face 92106 10253 33680 46055 Face 92107 23438 46056 13535 Face 92108 23438 49356 46056 Face 92109 6168 46057 30415 Face 92110 6168 23093 46057 Face 92111 17290 46058 11016 Face 92112 17290 41951 46058 Face 92113 18549 46059 45246 Face 92114 18549 34514 46059 Face 92115 25605 46060 5271 Face 92116 25605 18578 46060 Face 92117 46060 46061 25606 Face 92118 46060 35209 46061 Face 92119 1029 46062 40606 Face 92120 1029 29916 46062 Face 92121 21178 46063 25190 Face 92122 21178 20785 46063 Face 92123 12906 46064 3756 Face 92124 12906 9661 46064 Face 92125 8427 46065 40804 Face 92126 8427 41508 46065 Face 92127 8576 46066 20840 Face 92128 8576 38041 46066 Face 92129 7999 46067 26236 Face 92130 7999 43277 46067 Face 92131 3217 46068 26368 Face 92132 3217 32785 46068 Face 92133 48937 46069 34848 Face 92134 11252 16069 46069 Face 92135 30917 46070 11067 Face 92136 30917 27490 46070 Face 92137 25198 46071 5176 Face 92138 25198 30154 46071 Face 92139 14062 46072 36371 Face 92140 14062 1371 46072 Face 92141 6867 46073 4681 Face 92142 46074 14000 46073 Face 92143 6867 46074 46073 Face 92144 6867 44533 46074 Face 92145 825 46075 33617 Face 92146 825 34127 46075 Face 92147 5473 46076 37028 Face 92148 5473 15101 46077 Face 92149 46076 46077 40099 Face 92150 46076 5473 46077 Face 92151 16044 46078 18397 Face 92152 16044 47874 46078 Face 92153 46926 46079 5720 Face 92154 1220 5721 46079 Face 92155 10241 46080 20762 Face 92156 10241 31454 46080 Face 92157 11931 46081 34937 Face 92158 11931 20627 46081 Face 92159 19707 46082 31032 Face 92160 19707 941 46082 Face 92161 8536 46083 27245 Face 92162 8536 2968 46083 Face 92163 15887 46084 41630 Face 92164 15887 45256 46084 Face 92165 33629 46085 9978 Face 92166 33629 39093 46085 Face 92167 2440 46086 20386 Face 92168 2440 9493 46086 Face 92169 12017 46087 30853 Face 92170 12017 1543 46087 Face 92171 35798 46088 1001 Face 92172 35798 43813 46088 Face 92173 630 46089 20065 Face 92174 630 28539 46089 Face 92175 46091 46090 1617 Face 92176 9875 12922 46090 Face 92177 9875 46091 6113 Face 92178 9875 46090 46091 Face 92179 22262 46092 24455 Face 92180 22262 15695 46092 Face 92181 12515 46093 24089 Face 92182 12515 29529 46093 Face 92183 23076 46094 6640 Face 92184 23076 40768 46094 Face 92185 48557 46095 37031 Face 92186 13002 22348 46095 Face 92187 1207 46096 45208 Face 92188 1207 30577 46096 Face 92189 21698 46097 3587 Face 92190 21698 10828 46097 Face 92191 4319 46098 44126 Face 92192 4319 26473 46098 Face 92193 12511 46099 19955 Face 92194 12511 38881 46099 Face 92195 8762 46100 41087 Face 92196 8762 14318 46100 Face 92197 37061 46101 24380 Face 92198 37061 29518 46101 Face 92199 145 46102 22537 Face 92200 49683 45850 46102 Face 92201 14237 46103 37825 Face 92202 14237 35366 46103 Face 92203 28223 46104 733 Face 92204 28223 30560 46104 Face 92205 15536 46105 41568 Face 92206 15536 24905 46105 Face 92207 11342 46106 28234 Face 92208 11342 23874 46106 Face 92209 21224 46107 23356 Face 92210 21224 9348 46107 Face 92211 2373 46108 10759 Face 92212 2373 41031 46108 Face 92213 11076 46109 43601 Face 92214 11076 36753 46109 Face 92215 1585 46110 13462 Face 92216 1585 33864 46110 Face 92217 46110 46111 13462 Face 92218 46110 26187 46111 Face 92219 75 46112 12001 Face 92220 75 19680 46112 Face 92221 1258 46113 20208 Face 92222 1258 6272 46113 Face 92223 6759 46114 25855 Face 92224 6759 8152 46114 Face 92225 16952 46115 1466 Face 92226 16952 16221 46115 Face 92227 8610 46116 16856 Face 92228 8610 12952 46116 Face 92229 36738 46117 19524 Face 92230 36738 28494 46117 Face 92231 16102 46118 35751 Face 92232 16102 39592 46118 Face 92233 7017 46119 26680 Face 92234 7017 26682 46119 Face 92235 30913 46120 5605 Face 92236 30913 1999 46120 Face 92237 1893 46121 7079 Face 92238 1893 36041 46121 Face 92239 3023 46122 24940 Face 92240 3023 48909 46122 Face 92241 28172 46123 5761 Face 92242 28172 13705 46123 Face 92243 48785 46124 23370 Face 92244 48785 44251 46124 Face 92245 3226 46125 20030 Face 92246 3226 35861 46125 Face 92247 26113 46126 10314 Face 92248 26113 33887 46126 Face 92249 14002 46127 21612 Face 92250 14002 32576 46127 Face 92251 9174 46128 12010 Face 92252 9174 37089 46128 Face 92253 11075 46129 35805 Face 92254 11075 2265 46129 Face 92255 21585 46130 17447 Face 92256 21585 1434 46130 Face 92257 6571 46131 12460 Face 92258 6571 41059 46131 Face 92259 1167 46132 27226 Face 92260 1167 47240 46132 Face 92261 26568 46133 17227 Face 92262 26568 48120 46133 Face 92263 10604 46134 43969 Face 92264 10604 23827 46134 Face 92265 3128 46135 16932 Face 92266 3128 35048 46135 Face 92267 21844 46136 5320 Face 92268 21844 30181 46136 Face 92269 4288 46137 37438 Face 92270 4288 47411 46137 Face 92271 26799 46138 969 Face 92272 26799 10217 46138 Face 92273 34185 46139 47220 Face 92274 34185 17915 46139 Face 92275 8733 46140 12645 Face 92276 47692 15266 46140 Face 92277 30077 46141 14269 Face 92278 30077 36400 46141 Face 92279 39646 46142 7606 Face 92280 39646 35983 46142 Face 92281 25345 46143 38431 Face 92282 25345 7796 46143 Face 92283 17243 46144 10509 Face 92284 17243 38612 46144 Face 92285 28217 46145 3703 Face 92286 28217 10403 46145 Face 92287 20730 46146 26746 Face 92288 20730 44766 46146 Face 92289 8500 46147 21036 Face 92290 8500 17070 46147 Face 92291 2522 46148 27297 Face 92292 2522 18361 46148 Face 92293 34751 46149 31224 Face 92294 34751 12104 46149 Face 92295 6118 46150 24580 Face 92296 6118 45862 46150 Face 92297 5109 46151 12199 Face 92298 5109 45792 46151 Face 92299 25209 46152 39433 Face 92300 25209 34133 46152 Face 92301 46154 46153 14934 Face 92302 29297 48166 46153 Face 92303 29297 46154 14934 Face 92304 29297 46153 46154 Face 92305 862 46155 31088 Face 92306 862 40349 46155 Face 92307 31876 46156 7043 Face 92308 31876 36272 46156 Face 92309 15045 46157 19241 Face 92310 15045 7323 46157 Face 92311 17099 46158 45058 Face 92312 17099 37592 46158 Face 92313 39039 46159 45219 Face 92314 39039 7869 46159 Face 92315 6844 46160 19325 Face 92316 6844 23262 46160 Face 92317 2902 46161 49412 Face 92318 46162 31911 46161 Face 92319 2902 46162 46161 Face 92320 2902 28044 46162 Face 92321 20712 46163 7403 Face 92322 20712 608 46163 Face 92323 31483 46164 1355 Face 92324 31483 2366 46164 Face 92325 27323 46165 3484 Face 92326 27323 7161 46165 Face 92327 1137 46166 27406 Face 92328 1137 21657 46166 Face 92329 2520 46167 10163 Face 92330 2520 20682 46167 Face 92331 31023 46168 36758 Face 92332 31023 3761 46168 Face 92333 1541 46169 49294 Face 92334 46170 8601 46169 Face 92335 1541 46170 46169 Face 92336 1541 6317 46170 Face 92337 6935 46171 26122 Face 92338 6935 19784 46171 Face 92339 11833 46172 9874 Face 92340 11833 17425 46172 Face 92341 1912 46173 38015 Face 92342 1912 10626 46173 Face 92343 20118 46174 42907 Face 92344 46175 33581 46174 Face 92345 20118 46175 46174 Face 92346 20118 21057 46175 Face 92347 29038 46176 14001 Face 92348 29038 47866 46176 Face 92349 6242 46177 28333 Face 92350 6242 21183 46177 Face 92351 25604 46178 47128 Face 92352 25604 15059 46178 Face 92353 16272 46179 8347 Face 92354 16272 38847 46179 Face 92355 12692 46180 12691 Face 92356 12692 33344 46180 Face 92357 4422 46181 34139 Face 92358 4422 38471 46181 Face 92359 11540 46182 15094 Face 92360 11540 37263 46182 Face 92361 2375 46183 33913 Face 92362 2375 43849 46183 Face 92363 5752 46184 40459 Face 92364 5752 39602 46184 Face 92365 2609 46185 12469 Face 92366 2609 10478 46185 Face 92367 36520 46186 6739 Face 92368 36520 44877 46186 Face 92369 14084 46187 3947 Face 92370 14084 44862 46187 Face 92371 8451 46188 28235 Face 92372 8451 19849 46188 Face 92373 4176 46189 23062 Face 92374 4176 37162 46189 Face 92375 6013 46190 35769 Face 92376 6013 17467 46190 Face 92377 37509 46191 22133 Face 92378 37509 32852 46191 Face 92379 4201 46192 42136 Face 92380 4201 40827 46192 Face 92381 18324 46193 25902 Face 92382 46194 2841 46193 Face 92383 18324 46194 46193 Face 92384 18324 37288 46194 Face 92385 26170 46195 31784 Face 92386 26170 20646 46195 Face 92387 16173 46196 30274 Face 92388 16173 2088 46196 Face 92389 12049 46197 43084 Face 92390 12049 34278 46197 Face 92391 27703 46198 40358 Face 92392 27703 33703 46198 Face 92393 49493 46199 38054 Face 92394 4338 38421 46199 Face 92395 46201 46200 40668 Face 92396 7156 10291 46200 Face 92397 46202 46201 21612 Face 92398 7156 46200 46201 Face 92399 7156 46202 20498 Face 92400 7156 46201 46202 Face 92401 6067 46203 37268 Face 92402 6067 2862 46203 Face 92403 18797 46204 32335 Face 92404 18797 44629 46204 Face 92405 6780 46205 26850 Face 92406 6780 48222 46205 Face 92407 14822 46206 33357 Face 92408 14822 11184 46206 Face 92409 27066 46207 9168 Face 92410 27066 1066 46207 Face 92411 8513 46208 23245 Face 92412 47830 41892 46208 Face 92413 2703 46209 26869 Face 92414 2703 20420 46209 Face 92415 7560 46210 11707 Face 92416 7560 25072 46210 Face 92417 17908 46211 5924 Face 92418 17908 29317 46211 Face 92419 14493 46212 27013 Face 92420 14493 49343 46212 Face 92421 15034 46213 4300 Face 92422 15034 35894 46213 Face 92423 46215 46214 20714 Face 92424 26898 40466 46214 Face 92425 26898 46215 3221 Face 92426 26898 46214 46215 Face 92427 21629 46216 37948 Face 92428 21629 9063 46216 Face 92429 39880 46217 45732 Face 92430 39880 33799 46217 Face 92431 11365 46218 34044 Face 92432 11365 5828 46218 Face 92433 3939 46219 43705 Face 92434 3939 42691 46219 Face 92435 1796 46220 32957 Face 92436 1796 6228 46220 Face 92437 3492 46221 25332 Face 92438 3492 13908 46221 Face 92439 7103 46222 26396 Face 92440 7103 34847 46222 Face 92441 8649 46223 534 Face 92442 8649 22417 46223 Face 92443 29212 46224 21392 Face 92444 29212 3308 46224 Face 92445 12973 46225 4926 Face 92446 12973 3474 46225 Face 92447 655 46226 44980 Face 92448 655 13055 46226 Face 92449 11479 46227 31592 Face 92450 11479 1155 46227 Face 92451 17294 46228 42479 Face 92452 17294 36184 46228 Face 92453 10401 46229 14108 Face 92454 10401 32367 46229 Face 92455 27214 46230 1034 Face 92456 27214 42320 46230 Face 92457 10874 46231 36985 Face 92458 10874 7044 46231 Face 92459 5451 46232 12647 Face 92460 5451 24066 46232 Face 92461 27099 46233 26525 Face 92462 27099 17813 46233 Face 92463 23415 46234 13340 Face 92464 23415 32760 46234 Face 92465 8911 46235 37855 Face 92466 8911 26927 46235 Face 92467 28457 46236 38716 Face 92468 28457 8069 46236 Face 92469 5946 46237 26319 Face 92470 5946 32302 46237 Face 92471 9183 46238 20586 Face 92472 9183 36178 46238 Face 92473 1457 46239 33789 Face 92474 1457 6634 46239 Face 92475 17185 46240 4200 Face 92476 17185 22655 46240 Face 92477 9536 46241 7046 Face 92478 9536 36910 46241 Face 92479 12869 46242 25283 Face 92480 12869 3976 46242 Face 92481 21548 46243 48315 Face 92482 21548 46177 46243 Face 92483 7134 46244 1913 Face 92484 7134 29950 46244 Face 92485 7492 46245 35738 Face 92486 7492 14736 46245 Face 92487 19735 46246 18845 Face 92488 19735 31796 46246 Face 92489 24010 46247 44795 Face 92490 24010 37669 46247 Face 92491 36660 46248 12472 Face 92492 36660 26911 46248 Face 92493 843 46249 9893 Face 92494 843 38903 46249 Face 92495 28513 46250 40910 Face 92496 28513 32753 46250 Face 92497 15254 46251 17118 Face 92498 15254 41776 46251 Face 92499 16603 46252 31902 Face 92500 16603 29666 46252 Face 92501 33335 46253 32086 Face 92502 33335 795 46253 Face 92503 2560 46254 12846 Face 92504 2560 8689 46254 Face 92505 1380 46255 31543 Face 92506 1380 37963 46255 Face 92507 12200 46256 24972 Face 92508 12200 27021 46256 Face 92509 8693 46257 20991 Face 92510 8693 33049 46257 Face 92511 24680 46258 29155 Face 92512 24680 25229 46258 Face 92513 46260 46259 27363 Face 92514 18268 44521 46259 Face 92515 18268 46260 18267 Face 92516 18268 46259 46260 Face 92517 8370 46261 13929 Face 92518 8370 38451 46261 Face 92519 24068 46262 15200 Face 92520 24068 23253 46262 Face 92521 3630 46263 7170 Face 92522 3630 38163 46263 Face 92523 164 46264 26746 Face 92524 164 34034 46264 Face 92525 228 46265 14779 Face 92526 228 25908 46265 Face 92527 17282 46266 17283 Face 92528 17282 22284 46266 Face 92529 12066 46267 13778 Face 92530 12066 38672 46267 Face 92531 46547 46268 3814 Face 92532 13859 20561 46268 Face 92533 6570 46269 17182 Face 92534 49624 16065 46269 Face 92535 24352 46270 2990 Face 92536 24352 800 46270 Face 92537 510 46271 22237 Face 92538 510 18084 46271 Face 92539 13371 46272 1460 Face 92540 13371 33117 46272 Face 92541 16484 46273 45309 Face 92542 16484 5671 46273 Face 92543 6722 46274 38070 Face 92544 6722 41787 46274 Face 92545 16959 46275 8559 Face 92546 16959 7266 46275 Face 92547 25633 46276 2844 Face 92548 25633 8750 46276 Face 92549 19771 46277 34813 Face 92550 19771 26782 46277 Face 92551 20805 46278 32614 Face 92552 20805 34741 46278 Face 92553 19152 46279 38654 Face 92554 19152 619 46279 Face 92555 13363 46280 30386 Face 92556 46281 46730 46280 Face 92557 13363 46281 46280 Face 92558 13363 36259 46281 Face 92559 5332 46282 23591 Face 92560 5332 22740 46282 Face 92561 21977 46283 49583 Face 92562 21977 33518 46283 Face 92563 6302 46284 17077 Face 92564 6302 30721 46284 Face 92565 1538 46285 39506 Face 92566 1538 41514 46285 Face 92567 8695 46286 37453 Face 92568 8695 31122 46286 Face 92569 8887 46287 29407 Face 92570 8887 41891 46287 Face 92571 16113 46288 5371 Face 92572 16113 10681 46288 Face 92573 11228 46289 7537 Face 92574 11228 19156 46289 Face 92575 5808 46290 19193 Face 92576 5808 30711 46290 Face 92577 27322 46291 37501 Face 92578 27322 31506 46291 Face 92579 5058 46292 40946 Face 92580 5058 20923 46292 Face 92581 22682 46293 2811 Face 92582 22682 6870 46293 Face 92583 29198 46294 48357 Face 92584 29198 19407 46294 Face 92585 12676 46295 29515 Face 92586 46296 4085 46295 Face 92587 12676 46296 46295 Face 92588 12676 6475 46296 Face 92589 12794 46297 4594 Face 92590 12794 29228 46297 Face 92591 18840 46298 40290 Face 92592 18840 24504 46298 Face 92593 24226 46299 41760 Face 92594 24226 40796 46299 Face 92595 46301 46300 14733 Face 92596 18485 409 46300 Face 92597 18485 46301 16784 Face 92598 18485 46300 46301 Face 92599 1308 46302 42664 Face 92600 1308 37993 46302 Face 92601 1315 46303 28710 Face 92602 1315 15113 46303 Face 92603 15471 46304 35906 Face 92604 15471 27233 46304 Face 92605 6682 46305 14600 Face 92606 6682 17727 46305 Face 92607 17729 46306 28446 Face 92608 17729 37047 46306 Face 92609 9732 46307 31438 Face 92610 9732 39234 46307 Face 92611 15579 46308 32315 Face 92612 15579 19814 46308 Face 92613 17342 46309 23266 Face 92614 17342 4033 46309 Face 92615 12058 46310 28541 Face 92616 12058 41819 46310 Face 92617 24743 46311 35695 Face 92618 24743 7657 46311 Face 92619 46311 46312 35695 Face 92620 46311 16184 46312 Face 92621 165 46313 5592 Face 92622 165 9444 46313 Face 92623 27085 46314 8284 Face 92624 27085 34231 46314 Face 92625 11430 46315 20667 Face 92626 11430 49102 46315 Face 92627 26337 46316 41315 Face 92628 26337 10956 46316 Face 92629 6946 46317 28365 Face 92630 6946 30223 46317 Face 92631 46319 46318 39014 Face 92632 13927 28997 46318 Face 92633 13927 46319 18350 Face 92634 13927 46318 46319 Face 92635 17768 46320 21745 Face 92636 48565 43564 46320 Face 92637 46322 46321 32606 Face 92638 350 11427 46321 Face 92639 350 46322 39882 Face 92640 350 46321 46322 Face 92641 10571 46323 11080 Face 92642 10571 33993 46323 Face 92643 1524 46324 39644 Face 92644 1524 18374 46324 Face 92645 11335 46325 23461 Face 92646 11335 30835 46325 Face 92647 14369 46326 30996 Face 92648 14369 17216 46326 Face 92649 1105 46327 12934 Face 92650 1105 25864 46327 Face 92651 23552 46328 46076 Face 92652 23552 43201 46328 Face 92653 7568 46329 31091 Face 92654 7568 14615 46329 Face 92655 7568 46330 18190 Face 92656 7568 31091 46330 Face 92657 12722 46331 28161 Face 92658 12722 40250 46331 Face 92659 13632 46332 33317 Face 92660 13632 27047 46332 Face 92661 14959 46333 32067 Face 92662 14959 7308 46333 Face 92663 16838 46334 39853 Face 92664 16838 9758 46334 Face 92665 32326 46335 16010 Face 92666 32326 3703 46335 Face 92667 7530 46336 18894 Face 92668 7530 40901 46336 Face 92669 8106 46337 15515 Face 92670 8106 34266 46337 Face 92671 46337 46338 15515 Face 92672 46337 1623 46338 Face 92673 2292 46339 14464 Face 92674 2292 9938 46339 Face 92675 13379 46340 29813 Face 92676 13379 12836 46340 Face 92677 10729 46341 4623 Face 92678 10729 31503 46341 Face 92679 1118 46342 16863 Face 92680 1118 25549 46342 Face 92681 2753 46343 44328 Face 92682 2753 42854 46343 Face 92683 5445 46344 40204 Face 92684 5445 21766 46344 Face 92685 8061 46345 45889 Face 92686 8061 10298 46345 Face 92687 7107 46346 41119 Face 92688 7107 48972 46346 Face 92689 7216 46347 48095 Face 92690 7216 21898 46347 Face 92691 7216 46348 32743 Face 92692 7216 32154 46348 Face 92693 715 46349 10781 Face 92694 715 29374 46349 Face 92695 23991 46350 37352 Face 92696 23991 6681 46350 Face 92697 13986 46351 1679 Face 92698 13986 11106 46351 Face 92699 27480 46352 22717 Face 92700 27480 6377 46352 Face 92701 11761 46353 884 Face 92702 11761 7317 46353 Face 92703 30350 46354 1656 Face 92704 30350 35219 46354 Face 92705 20745 46355 15455 Face 92706 20745 29489 46355 Face 92707 27829 46356 4800 Face 92708 27829 25020 46356 Face 92709 3237 46357 2201 Face 92710 3237 11135 46357 Face 92711 16363 46358 23390 Face 92712 16363 1226 46358 Face 92713 4558 46359 22002 Face 92714 4558 41294 46359 Face 92715 40259 46360 16911 Face 92716 40259 18310 46360 Face 92717 21071 46361 6454 Face 92718 21071 35648 46361 Face 92719 6226 46362 29157 Face 92720 6226 45995 46362 Face 92721 11188 46363 27286 Face 92722 11188 36755 46363 Face 92723 11628 46364 24121 Face 92724 11628 23043 46364 Face 92725 16987 46365 30524 Face 92726 16987 47443 46365 Face 92727 22807 46366 19939 Face 92728 22807 25508 46366 Face 92729 6470 46367 20566 Face 92730 6470 45416 46367 Face 92731 27752 46368 6829 Face 92732 27752 40554 46368 Face 92733 1629 46369 43442 Face 92734 1629 38191 46369 Face 92735 17723 46370 12616 Face 92736 17723 749 46370 Face 92737 3618 46371 21633 Face 92738 3618 37622 46371 Face 92739 866 46372 18680 Face 92740 866 23136 46372 Face 92741 46374 46373 18179 Face 92742 216 40592 46373 Face 92743 216 46374 9952 Face 92744 216 46373 46374 Face 92745 15212 46375 41509 Face 92746 15212 30543 46375 Face 92747 32078 46376 44361 Face 92748 32078 27139 46376 Face 92749 2084 46377 6812 Face 92750 47577 31954 46377 Face 92751 4197 46378 16222 Face 92752 4197 32387 46378 Face 92753 36673 46379 9214 Face 92754 36673 5581 46379 Face 92755 3102 46380 30492 Face 92756 3102 17404 46380 Face 92757 4990 46381 43221 Face 92758 4990 21874 46381 Face 92759 23385 46382 5480 Face 92760 23385 2708 46382 Face 92761 16515 46383 2652 Face 92762 16515 20576 46383 Face 92763 22252 46384 1568 Face 92764 22252 19166 46384 Face 92765 23633 46385 6938 Face 92766 23633 45072 46385 Face 92767 21675 46386 23327 Face 92768 21675 39343 46386 Face 92769 24473 46387 16532 Face 92770 24473 29538 46387 Face 92771 980 46388 23523 Face 92772 980 26268 46388 Face 92773 23268 46389 24081 Face 92774 23268 7481 46389 Face 92775 11771 46390 5313 Face 92776 11771 44329 46390 Face 92777 19523 46391 123 Face 92778 19523 41657 46391 Face 92779 1157 46392 40103 Face 92780 1157 34384 46392 Face 92781 11321 46393 41053 Face 92782 11321 32814 46393 Face 92783 17757 46394 45379 Face 92784 17757 31277 46394 Face 92785 21124 46395 27828 Face 92786 21124 5264 46395 Face 92787 13737 46396 36857 Face 92788 13737 24452 46396 Face 92789 10247 46397 43748 Face 92790 10247 25686 46397 Face 92791 8519 46398 23470 Face 92792 8519 43110 46398 Face 92793 7526 46399 24046 Face 92794 7526 14099 46399 Face 92795 15206 46400 33146 Face 92796 15206 21237 46400 Face 92797 24771 46401 18830 Face 92798 24771 3041 46401 Face 92799 10756 46402 27583 Face 92800 10756 45708 46402 Face 92801 13851 46403 29566 Face 92802 13851 17574 46403 Face 92803 26586 46404 18842 Face 92804 26586 34451 46404 Face 92805 1114 46405 23366 Face 92806 1114 30080 46405 Face 92807 1431 46406 19287 Face 92808 1431 44820 46406 Face 92809 26837 46407 33797 Face 92810 26837 2931 46407 Face 92811 23030 46408 27810 Face 92812 23030 11546 46408 Face 92813 1514 46409 43016 Face 92814 1514 37518 46409 Face 92815 8247 46410 1592 Face 92816 8247 28351 46410 Face 92817 16104 46411 25712 Face 92818 16104 43364 46411 Face 92819 30114 46412 20494 Face 92820 30114 13712 46412 Face 92821 28450 46413 11155 Face 92822 28450 1352 46413 Face 92823 21077 46414 43719 Face 92824 21077 38095 46414 Face 92825 5405 46415 28029 Face 92826 5405 8783 46415 Face 92827 31830 46416 6193 Face 92828 31830 6254 46416 Face 92829 9285 46417 16750 Face 92830 9285 29660 46417 Face 92831 6847 46418 15795 Face 92832 6847 26904 46418 Face 92833 18600 46419 18599 Face 92834 18600 24018 46419 Face 92835 11830 46420 2655 Face 92836 11830 18700 46420 Face 92837 16260 46421 39724 Face 92838 16260 3803 46421 Face 92839 1132 46422 43810 Face 92840 1132 44865 46422 Face 92841 9477 46423 36773 Face 92842 9477 23354 46423 Face 92843 3744 46424 16316 Face 92844 3744 41995 46424 Face 92845 12157 46425 40699 Face 92846 12157 17765 46425 Face 92847 19707 46426 32997 Face 92848 19707 31032 46426 Face 92849 722 46427 23651 Face 92850 722 49895 46427 Face 92851 12087 46428 4720 Face 92852 12087 40265 46428 Face 92853 3174 46429 24174 Face 92854 3174 17447 46429 Face 92855 9336 46430 34745 Face 92856 9336 27267 46430 Face 92857 15163 46431 22778 Face 92858 15163 31474 46431 Face 92859 15559 46432 6433 Face 92860 15559 16646 46432 Face 92861 20616 46433 36385 Face 92862 20616 40066 46433 Face 92863 9618 46434 13268 Face 92864 9618 27849 46434 Face 92865 19909 46435 10401 Face 92866 46436 3939 46435 Face 92867 19909 46436 46435 Face 92868 19909 42350 46436 Face 92869 26721 46437 23483 Face 92870 26721 36502 46437 Face 92871 9207 46438 1195 Face 92872 9207 6910 46438 Face 92873 18169 46439 5494 Face 92874 18169 39026 46439 Face 92875 1375 46440 18622 Face 92876 1375 25988 46440 Face 92877 16994 46441 29425 Face 92878 16994 4200 46441 Face 92879 6045 46442 30258 Face 92880 6045 38192 46442 Face 92881 5788 46443 15173 Face 92882 5788 35089 46443 Face 92883 2275 46444 24013 Face 92884 2275 22437 46444 Face 92885 39185 46445 16082 Face 92886 39185 23478 46445 Face 92887 27713 46446 26954 Face 92888 27713 33086 46446 Face 92889 347 46447 14823 Face 92890 347 23883 46447 Face 92891 24364 46448 14046 Face 92892 24364 7417 46448 Face 92893 20651 46449 13486 Face 92894 20651 37007 46449 Face 92895 8090 46450 26094 Face 92896 8090 36541 46450 Face 92897 25726 46451 464 Face 92898 25726 11470 46451 Face 92899 15949 46452 40637 Face 92900 15949 4705 46452 Face 92901 35772 46453 27821 Face 92902 35772 1183 46453 Face 92903 27315 46454 34910 Face 92904 27315 16743 46454 Face 92905 335 46455 18536 Face 92906 335 15149 46455 Face 92907 29136 46456 49871 Face 92908 29136 24760 46456 Face 92909 8927 46457 28042 Face 92910 47531 40989 46457 Face 92911 9344 46458 46827 Face 92912 9344 21913 46458 Face 92913 8640 46459 15093 Face 92914 8640 27324 46459 Face 92915 35853 46460 15461 Face 92916 35853 34230 46460 Face 92917 18602 46461 31077 Face 92918 18602 8314 46461 Face 92919 32046 46462 15527 Face 92920 32046 41896 46462 Face 92921 299 46463 41472 Face 92922 299 30781 46463 Face 92923 15066 46464 19369 Face 92924 15066 27145 46464 Face 92925 3760 46465 24407 Face 92926 3760 38070 46465 Face 92927 24589 46466 44434 Face 92928 24589 12890 46466 Face 92929 11633 46467 28207 Face 92930 11633 44634 46467 Face 92931 28985 46468 38416 Face 92932 28985 991 46468 Face 92933 1718 46469 30992 Face 92934 1718 30070 46469 Face 92935 14322 46470 26777 Face 92936 14322 32784 46470 Face 92937 45423 46471 23275 Face 92938 45423 5463 46471 Face 92939 4983 46472 32292 Face 92940 4983 10791 46472 Face 92941 21363 46473 2843 Face 92942 21363 21845 46473 Face 92943 6286 46474 38727 Face 92944 6286 33927 46474 Face 92945 20764 46475 23673 Face 92946 20764 2215 46475 Face 92947 30724 46476 27219 Face 92948 30724 7990 46476 Face 92949 35610 46477 4793 Face 92950 35610 231 46477 Face 92951 16573 46478 25056 Face 92952 16573 42584 46478 Face 92953 10192 46479 47078 Face 92954 10192 39696 46479 Face 92955 5521 46480 26928 Face 92956 5521 20971 46480 Face 92957 14245 46481 22609 Face 92958 47824 26273 46481 Face 92959 19028 46482 41898 Face 92960 19028 41185 46482 Face 92961 5013 46483 29067 Face 92962 5013 34845 46483 Face 92963 14658 46485 17853 Face 92964 14658 25964 46484 Face 92965 46484 46485 14658 Face 92966 46484 17853 46485 Face 92967 17465 46486 28348 Face 92968 17465 23261 46486 Face 92969 35837 46487 6019 Face 92970 35837 35838 46487 Face 92971 46489 46488 7848 Face 92972 46489 27773 46488 Face 92973 27772 46489 30386 Face 92974 27772 27773 46489 Face 92975 24000 46490 3714 Face 92976 24000 43809 46490 Face 92977 26192 46491 26243 Face 92978 26192 7302 46491 Face 92979 47101 46492 21458 Face 92980 31467 13082 46492 Face 92981 23353 46493 38194 Face 92982 23353 23352 46493 Face 92983 17825 46494 31918 Face 92984 17825 22957 46494 Face 92985 1947 46495 42878 Face 92986 1947 29204 46495 Face 92987 46497 46496 20172 Face 92988 46497 11974 46496 Face 92989 20816 46497 35782 Face 92990 20816 11974 46497 Face 92991 6882 46498 3908 Face 92992 6882 24124 46498 Face 92993 20949 46499 20549 Face 92994 46500 43717 46499 Face 92995 20949 46500 46499 Face 92996 20949 44400 46500 Face 92997 9590 46501 34961 Face 92998 9590 34959 46501 Face 92999 7197 46502 41537 Face 93000 7197 40046 46502 Face 93001 37810 46503 24396 Face 93002 37810 5962 46503 Face 93003 21437 46504 41223 Face 93004 21437 5428 46504 Face 93005 10089 46505 27352 Face 93006 10089 14307 46505 Face 93007 24462 46506 23183 Face 93008 24462 36669 46506 Face 93009 3494 46507 36967 Face 93010 3494 38541 46507 Face 93011 3772 46508 43785 Face 93012 3772 10076 46508 Face 93013 24178 46509 1298 Face 93014 24178 48013 46509 Face 93015 17925 46510 30233 Face 93016 17925 42931 46510 Face 93017 9189 46511 20364 Face 93018 9189 10167 46511 Face 93019 21935 46512 9267 Face 93020 21935 4142 46512 Face 93021 1093 46513 17105 Face 93022 1093 37547 46513 Face 93023 4429 46514 42579 Face 93024 48167 36395 46514 Face 93025 154 46515 43440 Face 93026 154 32439 46515 Face 93027 2987 46516 24417 Face 93028 2987 21487 46516 Face 93029 28291 46517 28290 Face 93030 28291 17795 46517 Face 93031 5098 46518 16435 Face 93032 5098 29762 46518 Face 93033 2970 46519 44914 Face 93034 2970 30323 46519 Face 93035 28404 46520 20589 Face 93036 28404 9076 46520 Face 93037 26067 46521 8111 Face 93038 26067 44965 46521 Face 93039 19262 46522 27765 Face 93040 19262 32574 46522 Face 93041 826 46523 23613 Face 93042 826 3114 46523 Face 93043 3845 46524 1625 Face 93044 3845 37853 46524 Face 93045 5256 46525 24691 Face 93046 5256 38858 46525 Face 93047 28722 46526 19839 Face 93048 28722 11288 46526 Face 93049 1896 46527 31301 Face 93050 1896 25260 46527 Face 93051 21141 46528 9458 Face 93052 21141 6369 46528 Face 93053 9200 46529 21357 Face 93054 9200 4118 46529 Face 93055 27311 46530 24486 Face 93056 27311 4633 46530 Face 93057 3120 46531 29980 Face 93058 3120 29186 46531 Face 93059 8643 46532 3438 Face 93060 8643 1590 46532 Face 93061 12531 46533 6101 Face 93062 12531 44716 46533 Face 93063 8003 46534 22496 Face 93064 8003 25056 46534 Face 93065 5976 46535 41267 Face 93066 5976 33781 46535 Face 93067 11023 46536 39441 Face 93068 11023 43776 46536 Face 93069 5645 46537 39005 Face 93070 5645 9039 46537 Face 93071 15431 46538 12798 Face 93072 15431 1938 46538 Face 93073 12311 46539 41224 Face 93074 12311 39414 46539 Face 93075 25998 46540 19878 Face 93076 25998 35732 46540 Face 93077 15015 46541 41768 Face 93078 15015 24786 46541 Face 93079 25903 46542 40115 Face 93080 25903 1716 46542 Face 93081 17697 46543 20453 Face 93082 17697 43995 46543 Face 93083 41189 46544 6669 Face 93084 41189 9738 46544 Face 93085 5796 46545 18149 Face 93086 5796 28093 46545 Face 93087 16961 46546 40024 Face 93088 16961 15980 46546 Face 93089 13859 46547 8347 Face 93090 13859 46268 46547 Face 93091 46603 46548 41431 Face 93092 13108 30415 46548 Face 93093 26868 46549 11587 Face 93094 26868 21938 46549 Face 93095 30839 46550 27069 Face 93096 30839 40422 46550 Face 93097 14873 46551 36381 Face 93098 14873 7817 46551 Face 93099 27021 46552 33282 Face 93100 27021 20755 46552 Face 93101 15615 46553 22925 Face 93102 15615 13274 46553 Face 93103 12541 46554 34766 Face 93104 12541 21775 46554 Face 93105 26109 46555 42238 Face 93106 26109 1346 46555 Face 93107 17228 46556 45176 Face 93108 17228 44918 46556 Face 93109 30331 46557 1486 Face 93110 30331 18971 46557 Face 93111 12583 46558 47518 Face 93112 12583 1399 46558 Face 93113 21636 46559 1734 Face 93114 21636 26716 46559 Face 93115 49687 46560 14340 Face 93116 2762 20502 46560 Face 93117 4329 46561 22180 Face 93118 4329 25405 46561 Face 93119 19608 46562 9837 Face 93120 19608 42044 46562 Face 93121 18162 46563 40096 Face 93122 18162 167 46563 Face 93123 27144 46564 1097 Face 93124 27144 6658 46564 Face 93125 2846 46565 6001 Face 93126 2846 46566 46565 Face 93127 35601 46566 38647 Face 93128 35601 46565 46566 Face 93129 9687 46567 24146 Face 93130 9687 16030 46567 Face 93131 17454 46568 34785 Face 93132 17454 37926 46568 Face 93133 25813 46569 38873 Face 93134 25813 20423 46569 Face 93135 684 46570 42028 Face 93136 684 41835 46570 Face 93137 21968 46571 28812 Face 93138 21968 11428 46571 Face 93139 20353 46572 12258 Face 93140 20353 28580 46572 Face 93141 27881 46573 19807 Face 93142 27881 4216 46573 Face 93143 10487 46574 17766 Face 93144 10487 4812 46574 Face 93145 2094 46575 40777 Face 93146 49729 24016 46575 Face 93147 18903 46576 40164 Face 93148 18903 18904 46576 Face 93149 10287 46577 15513 Face 93150 10287 29600 46577 Face 93151 27118 46578 3935 Face 93152 27118 38182 46578 Face 93153 5014 46579 7305 Face 93154 5014 42470 46579 Face 93155 3699 46580 8270 Face 93156 3699 4702 46580 Face 93157 13540 46581 44573 Face 93158 13540 44707 46581 Face 93159 4059 46582 20516 Face 93160 4059 35690 46582 Face 93161 24688 46583 12561 Face 93162 24688 23850 46583 Face 93163 2990 46584 15807 Face 93164 2990 13329 46584 Face 93165 12266 46585 42161 Face 93166 12266 44420 46585 Face 93167 19912 46586 1109 Face 93168 19912 46699 46586 Face 93169 24451 46587 6041 Face 93170 24451 761 46587 Face 93171 2078 46588 41854 Face 93172 2078 45478 46588 Face 93173 7332 46589 23547 Face 93174 7332 31058 46589 Face 93175 33002 46590 18044 Face 93176 33002 29010 46590 Face 93177 21 46591 15094 Face 93178 21 13010 46591 Face 93179 1648 46592 39895 Face 93180 1648 46919 46592 Face 93181 16366 46593 26775 Face 93182 16366 15041 46593 Face 93183 11664 46594 43360 Face 93184 11664 8275 46594 Face 93185 3690 46595 37258 Face 93186 3690 33779 46595 Face 93187 20425 46596 36159 Face 93188 20425 5729 46596 Face 93189 9616 46597 31628 Face 93190 9616 37306 46597 Face 93191 46597 46598 19486 Face 93192 46597 24888 46598 Face 93193 46600 46599 25726 Face 93194 1545 24643 46599 Face 93195 1545 46600 21399 Face 93196 1545 46599 46600 Face 93197 2556 46601 36142 Face 93198 2556 15986 46601 Face 93199 23540 46602 12851 Face 93200 23540 1392 46602 Face 93201 13108 46603 30435 Face 93202 13108 46548 46603 Face 93203 9427 46604 46809 Face 93204 9427 18698 46604 Face 93205 12126 46605 42536 Face 93206 12126 3773 46605 Face 93207 12314 46606 25554 Face 93208 12314 586 46606 Face 93209 11855 46607 16996 Face 93210 11855 9495 46607 Face 93211 29073 46608 5813 Face 93212 29073 34451 46608 Face 93213 1188 46609 38978 Face 93214 1188 16342 46609 Face 93215 29364 46610 20482 Face 93216 29364 7520 46610 Face 93217 46612 46611 24380 Face 93218 38710 17704 46611 Face 93219 38710 46612 38711 Face 93220 38710 46611 46612 Face 93221 16003 46613 34743 Face 93222 16003 19345 46613 Face 93223 821 46614 12445 Face 93224 821 19187 46614 Face 93225 46614 46615 12445 Face 93226 46614 15872 46615 Face 93227 23890 46616 42737 Face 93228 23890 37725 46616 Face 93229 31331 46617 12144 Face 93230 31331 16729 46617 Face 93231 1833 46618 5056 Face 93232 1833 4029 46618 Face 93233 22959 46619 23453 Face 93234 22959 26896 46619 Face 93235 1265 46620 29037 Face 93236 1265 18898 46620 Face 93237 8868 46621 11998 Face 93238 8868 43796 46621 Face 93239 20240 46622 8716 Face 93240 20240 14676 46622 Face 93241 26000 46623 40207 Face 93242 26000 25999 46623 Face 93243 14001 46624 14789 Face 93244 14001 16179 46624 Face 93245 21139 46625 949 Face 93246 21139 49096 46625 Face 93247 1890 46626 8592 Face 93248 1890 37501 46626 Face 93249 16201 46627 42231 Face 93250 16201 37445 46627 Face 93251 26910 46628 17814 Face 93252 26910 28960 46628 Face 93253 22009 46629 35601 Face 93254 22009 35678 46629 Face 93255 3886 46630 27449 Face 93256 3886 6559 46630 Face 93257 4888 46631 45325 Face 93258 4888 26039 46631 Face 93259 18649 46632 38727 Face 93260 18649 28058 46632 Face 93261 31454 46633 24046 Face 93262 31454 5677 46633 Face 93263 13245 46634 4476 Face 93264 13245 30821 46634 Face 93265 18520 46635 1602 Face 93266 18520 33623 46635 Face 93267 38797 46636 7608 Face 93268 38797 4873 46636 Face 93269 3869 46637 20210 Face 93270 3869 47402 46637 Face 93271 2255 46638 16256 Face 93272 2255 15797 46638 Face 93273 26263 46639 17400 Face 93274 26263 29399 46639 Face 93275 10427 46640 8219 Face 93276 10427 9948 46640 Face 93277 14151 46641 24973 Face 93278 14151 29330 46641 Face 93279 5876 46642 11988 Face 93280 5876 28609 46642 Face 93281 474 46643 14448 Face 93282 474 8653 46643 Face 93283 813 46644 12403 Face 93284 813 28712 46644 Face 93285 5887 46645 23657 Face 93286 5887 1724 46645 Face 93287 8062 46646 2984 Face 93288 8062 29361 46646 Face 93289 3922 46647 28503 Face 93290 3922 34128 46647 Face 93291 23357 46648 14363 Face 93292 23357 9457 46648 Face 93293 22389 46649 8184 Face 93294 22389 41193 46649 Face 93295 2742 46650 39403 Face 93296 2742 17403 46650 Face 93297 29967 46651 11328 Face 93298 29967 2923 46651 Face 93299 19551 46652 22447 Face 93300 19551 34477 46652 Face 93301 10609 46653 2421 Face 93302 10609 31544 46653 Face 93303 32780 46654 10691 Face 93304 32780 35133 46654 Face 93305 13719 46655 23033 Face 93306 13719 34407 46655 Face 93307 11448 46656 6776 Face 93308 11448 2172 46656 Face 93309 3705 46657 36448 Face 93310 3705 26330 46657 Face 93311 3312 46658 42055 Face 93312 3312 32891 46658 Face 93313 10086 46659 17947 Face 93314 10086 2587 46659 Face 93315 5273 46660 6214 Face 93316 46661 25624 46660 Face 93317 5273 46661 46660 Face 93318 5273 10347 46661 Face 93319 11085 46662 4806 Face 93320 11085 3666 46662 Face 93321 2536 46663 21123 Face 93322 2536 10944 46663 Face 93323 22673 46664 40812 Face 93324 22673 489 46664 Face 93325 23385 46665 26756 Face 93326 23385 5480 46665 Face 93327 6499 46666 32835 Face 93328 6499 11944 46666 Face 93329 9519 46667 30841 Face 93330 9519 26237 46667 Face 93331 12912 46668 44064 Face 93332 12912 30836 46668 Face 93333 20594 46669 8356 Face 93334 20594 7739 46669 Face 93335 5443 46670 45352 Face 93336 5443 26382 46670 Face 93337 6108 46671 12285 Face 93338 6108 17897 46671 Face 93339 17139 46672 9702 Face 93340 17139 15334 46672 Face 93341 7046 46673 33476 Face 93342 7046 21324 46673 Face 93343 18881 46674 6024 Face 93344 18881 17039 46674 Face 93345 8350 46675 17898 Face 93346 8350 23797 46675 Face 93347 30964 46676 23375 Face 93348 30964 8571 46676 Face 93349 1136 46677 24125 Face 93350 1136 10313 46677 Face 93351 7959 46678 14183 Face 93352 7959 33284 46678 Face 93353 46680 46679 18160 Face 93354 46680 21188 46679 Face 93355 13690 46680 42129 Face 93356 13690 21188 46680 Face 93357 17215 46681 6468 Face 93358 17215 4055 46681 Face 93359 16411 46682 37018 Face 93360 49084 32853 46682 Face 93361 21568 46683 29049 Face 93362 21568 3606 46683 Face 93363 16797 46684 6917 Face 93364 16797 13629 46684 Face 93365 10225 46685 37601 Face 93366 10225 31563 46685 Face 93367 2976 46686 17108 Face 93368 2976 16528 46686 Face 93369 13222 46687 33430 Face 93370 13222 41932 46687 Face 93371 19653 46688 7413 Face 93372 19653 31259 46688 Face 93373 9934 46689 21379 Face 93374 9934 43006 46689 Face 93375 30420 46690 34468 Face 93376 30420 24664 46690 Face 93377 14973 46691 29141 Face 93378 14973 36882 46691 Face 93379 46693 46692 7875 Face 93380 9226 13396 46692 Face 93381 9226 46693 8140 Face 93382 9226 46692 46693 Face 93383 15218 46694 22826 Face 93384 15218 41945 46694 Face 93385 14986 46695 47673 Face 93386 46696 7794 46695 Face 93387 14986 46696 46695 Face 93388 14986 47421 46696 Face 93389 9331 46697 46736 Face 93390 47346 37390 46697 Face 93391 48130 46698 27679 Face 93392 4285 18940 46698 Face 93393 12537 46699 8442 Face 93394 12537 46586 46699 Face 93395 18941 46700 8119 Face 93396 18941 42329 46700 Face 93397 8170 46701 39739 Face 93398 8170 25319 46701 Face 93399 8179 46702 46789 Face 93400 8179 46723 46702 Face 93401 20614 46703 43119 Face 93402 20614 43452 46703 Face 93403 9678 46704 28805 Face 93404 9678 20025 46704 Face 93405 29826 46705 25448 Face 93406 29826 37003 46705 Face 93407 8758 46706 40843 Face 93408 8758 42610 46706 Face 93409 26151 46707 15157 Face 93410 26151 49735 46707 Face 93411 5212 46708 41785 Face 93412 5212 10889 46708 Face 93413 12427 46709 19959 Face 93414 12427 42588 46709 Face 93415 4576 46710 30941 Face 93416 4576 22234 46710 Face 93417 29395 46711 13470 Face 93418 29395 35679 46711 Face 93419 7740 46712 21818 Face 93420 7740 32832 46712 Face 93421 4769 46713 12557 Face 93422 4769 30023 46713 Face 93423 6569 46714 25171 Face 93424 6569 9354 46714 Face 93425 11616 46715 13607 Face 93426 11616 46155 46715 Face 93427 16061 46716 4811 Face 93428 16061 16060 46716 Face 93429 30765 46717 1233 Face 93430 30765 11604 46717 Face 93431 18043 46718 30984 Face 93432 18043 671 46718 Face 93433 8475 46719 29720 Face 93434 8475 1226 46719 Face 93435 4733 46720 40004 Face 93436 4733 32233 46720 Face 93437 20012 46721 8050 Face 93438 20012 16571 46721 Face 93439 743 46722 25592 Face 93440 743 18391 46722 Face 93441 2456 46723 26255 Face 93442 2456 46702 46723 Face 93443 16747 46724 30939 Face 93444 16747 20302 46724 Face 93445 12191 46725 7407 Face 93446 12191 30797 46725 Face 93447 3118 46726 35508 Face 93448 3118 3792 46726 Face 93449 8176 46727 31335 Face 93450 8176 24370 46727 Face 93451 38825 46728 19038 Face 93452 38825 15627 46728 Face 93453 20706 46729 35992 Face 93454 20706 33122 46729 Face 93455 6981 46730 46281 Face 93456 6981 13949 46730 Face 93457 22342 46731 24961 Face 93458 22342 46732 46731 Face 93459 21152 46732 22342 Face 93460 21152 46731 46732 Face 93461 3632 46733 45813 Face 93462 3632 8850 46733 Face 93463 47397 46734 32741 Face 93464 47397 39292 46734 Face 93465 2135 46735 3408 Face 93466 2135 17084 46735 Face 93467 3492 46736 46697 Face 93468 3492 10774 46736 Face 93469 46738 46737 14779 Face 93470 31085 15954 46737 Face 93471 31085 46738 19182 Face 93472 31085 46737 46738 Face 93473 7278 46739 45473 Face 93474 7278 12154 46739 Face 93475 20537 46740 7417 Face 93476 20537 27758 46740 Face 93477 217 46741 35739 Face 93478 217 30055 46741 Face 93479 1573 46742 18081 Face 93480 1573 33479 46742 Face 93481 34112 46743 49491 Face 93482 34112 38594 46743 Face 93483 21542 46744 45800 Face 93484 21542 20992 46744 Face 93485 33470 46745 35320 Face 93486 33470 15298 46745 Face 93487 17779 46746 8932 Face 93488 17779 1123 46746 Face 93489 8698 46747 17382 Face 93490 8698 24542 46747 Face 93491 34979 46748 17972 Face 93492 34979 27636 46748 Face 93493 4395 46749 39129 Face 93494 4395 34741 46749 Face 93495 22724 46750 30808 Face 93496 22724 45544 46750 Face 93497 9236 46751 29579 Face 93498 9236 33464 46751 Face 93499 22366 46752 7214 Face 93500 22366 22365 46752 Face 93501 4137 46753 14589 Face 93502 4137 39292 46753 Face 93503 24132 46754 42893 Face 93504 24132 6327 46754 Face 93505 24547 46755 2395 Face 93506 24547 34664 46755 Face 93507 17317 46756 31912 Face 93508 17317 44807 46756 Face 93509 4871 46757 9625 Face 93510 4871 20214 46757 Face 93511 29383 46758 20510 Face 93512 29383 17668 46758 Face 93513 41504 46759 31038 Face 93514 41504 2589 46759 Face 93515 9093 46760 17940 Face 93516 9093 15805 46760 Face 93517 14234 46761 28358 Face 93518 14234 4455 46761 Face 93519 37374 46762 6679 Face 93520 37374 12818 46762 Face 93521 9726 46763 22690 Face 93522 47201 26281 46763 Face 93523 2614 46764 27338 Face 93524 2614 36166 46764 Face 93525 22268 46765 14444 Face 93526 22268 33511 46765 Face 93527 10640 46766 25841 Face 93528 10640 21707 46766 Face 93529 400 46767 26062 Face 93530 400 29247 46767 Face 93531 16965 46768 12520 Face 93532 16965 5968 46768 Face 93533 35846 46769 6993 Face 93534 35846 6992 46769 Face 93535 14265 46770 41457 Face 93536 14265 42700 46770 Face 93537 20866 46771 2037 Face 93538 20866 32830 46771 Face 93539 21271 46772 39617 Face 93540 21271 47540 46772 Face 93541 11286 46773 20055 Face 93542 11286 38314 46773 Face 93543 12298 46774 44491 Face 93544 12298 36105 46774 Face 93545 7686 46775 10105 Face 93546 7686 20960 46775 Face 93547 7029 46776 19335 Face 93548 7029 7030 46776 Face 93549 38722 46777 4705 Face 93550 38722 8575 46777 Face 93551 1520 46778 28216 Face 93552 1520 32010 46778 Face 93553 20892 46779 9658 Face 93554 20892 45264 46779 Face 93555 14855 46780 8718 Face 93556 14855 27505 46780 Face 93557 23902 46781 8761 Face 93558 23902 14097 46781 Face 93559 28713 46782 13077 Face 93560 28713 14654 46782 Face 93561 11651 46783 40892 Face 93562 11651 21727 46783 Face 93563 6815 46784 41376 Face 93564 6815 4331 46784 Face 93565 5582 46785 18468 Face 93566 5582 39045 46785 Face 93567 14505 46786 9523 Face 93568 14505 11991 46786 Face 93569 10890 46787 2659 Face 93570 10890 25503 46787 Face 93571 27152 46788 10752 Face 93572 27152 3786 46788 Face 93573 23196 46789 6914 Face 93574 23196 8179 46789 Face 93575 36069 46790 34728 Face 93576 36069 15414 46790 Face 93577 13013 46791 27214 Face 93578 13013 4213 46791 Face 93579 26165 46792 34019 Face 93580 26165 34344 46792 Face 93581 35514 46793 18126 Face 93582 35514 10363 46793 Face 93583 11478 46794 26166 Face 93584 11478 25512 46794 Face 93585 35096 46795 46023 Face 93586 35096 32427 46795 Face 93587 24882 46796 38908 Face 93588 24882 17965 46796 Face 93589 994 46797 29899 Face 93590 994 16717 46797 Face 93591 3213 46798 37373 Face 93592 3213 35290 46798 Face 93593 24092 46799 33313 Face 93594 24092 30786 46799 Face 93595 6096 46800 37917 Face 93596 6096 22259 46800 Face 93597 23403 46801 46939 Face 93598 23403 15436 46801 Face 93599 11909 46802 26561 Face 93600 11909 43828 46802 Face 93601 6724 46803 27280 Face 93602 6724 28851 46803 Face 93603 31120 46804 2032 Face 93604 31120 35192 46804 Face 93605 17209 46805 21462 Face 93606 17209 32486 46805 Face 93607 5772 46806 26063 Face 93608 5772 39839 46806 Face 93609 65 46807 36583 Face 93610 65 26580 46807 Face 93611 5220 46808 21595 Face 93612 5220 43610 46808 Face 93613 24104 46809 37622 Face 93614 24104 9427 46809 Face 93615 9390 46810 16405 Face 93616 9390 26773 46810 Face 93617 46812 46811 34551 Face 93618 1722 43790 46811 Face 93619 1722 46812 23818 Face 93620 1722 46811 46812 Face 93621 1069 46813 13312 Face 93622 1069 39825 46813 Face 93623 24310 46814 12966 Face 93624 24310 14862 46814 Face 93625 14875 46815 19966 Face 93626 14875 6932 46815 Face 93627 10096 46816 14519 Face 93628 10096 34653 46816 Face 93629 2658 46817 32754 Face 93630 2658 22908 46817 Face 93631 16032 46818 48207 Face 93632 16032 27237 46818 Face 93633 30202 46819 8876 Face 93634 30202 44550 46819 Face 93635 32661 46820 11414 Face 93636 32661 47639 46820 Face 93637 30755 46821 6923 Face 93638 30755 12742 46821 Face 93639 17894 46822 17629 Face 93640 17894 28094 46822 Face 93641 19867 46823 28651 Face 93642 19867 23657 46823 Face 93643 46164 46824 23734 Face 93644 46164 14433 46824 Face 93645 10787 46825 32686 Face 93646 10787 21781 46825 Face 93647 25552 46826 33535 Face 93648 25552 47933 46826 Face 93649 1953 46827 23716 Face 93650 1953 9344 46827 Face 93651 19075 46828 21595 Face 93652 19075 34153 46828 Face 93653 23021 46829 45584 Face 93654 23021 45901 46829 Face 93655 22382 46830 26081 Face 93656 22382 42755 46830 Face 93657 5327 46831 39956 Face 93658 5327 12547 46831 Face 93659 23432 46832 1677 Face 93660 23432 18741 46833 Face 93661 46832 46833 39368 Face 93662 46832 23432 46833 Face 93663 20841 46834 8285 Face 93664 20841 45610 46834 Face 93665 4611 46835 31317 Face 93666 4611 16460 46835 Face 93667 4925 46836 48254 Face 93668 4925 19199 46836 Face 93669 3189 46837 30918 Face 93670 3189 3188 46837 Face 93671 9459 46838 22446 Face 93672 9459 41450 46838 Face 93673 3758 46839 28578 Face 93674 3758 39299 46839 Face 93675 24366 46840 43138 Face 93676 24366 141 46840 Face 93677 25468 46841 3542 Face 93678 25468 25467 46841 Face 93679 9527 46842 34672 Face 93680 9527 18145 46842 Face 93681 1589 46843 11421 Face 93682 1589 28800 46843 Face 93683 26737 46844 23780 Face 93684 26737 49078 46844 Face 93685 9830 46845 48561 Face 93686 9830 9068 46845 Face 93687 6225 46846 26212 Face 93688 6225 15428 46846 Face 93689 10298 46847 37832 Face 93690 10298 35387 46847 Face 93691 11082 46848 39655 Face 93692 11082 11081 46848 Face 93693 9041 46849 25525 Face 93694 9041 37636 46849 Face 93695 851 46850 23789 Face 93696 851 40515 46850 Face 93697 36902 46851 30746 Face 93698 36902 9697 46851 Face 93699 30798 46852 11811 Face 93700 30798 8187 46852 Face 93701 1062 46853 9319 Face 93702 1062 42614 46853 Face 93703 18936 46854 33706 Face 93704 18936 20010 46854 Face 93705 47084 46855 35780 Face 93706 3344 44268 46855 Face 93707 48043 46856 12181 Face 93708 16816 38066 46856 Face 93709 612 46857 25426 Face 93710 612 29023 46857 Face 93711 30855 46858 11867 Face 93712 30855 4621 46858 Face 93713 10634 46859 39387 Face 93714 10634 22614 46859 Face 93715 11405 46860 34979 Face 93716 46861 27582 46860 Face 93717 11405 46861 46860 Face 93718 11405 5111 46861 Face 93719 21371 46862 36765 Face 93720 21371 38721 46862 Face 93721 46864 46863 25984 Face 93722 35 15377 46863 Face 93723 35 46864 25511 Face 93724 35 46863 46864 Face 93725 1238 46865 42627 Face 93726 1238 16737 46865 Face 93727 3502 46866 17511 Face 93728 3502 8448 46866 Face 93729 9091 46867 24444 Face 93730 9091 26514 46867 Face 93731 13259 46868 22099 Face 93732 13259 36131 46868 Face 93733 5444 46869 14999 Face 93734 5444 31730 46869 Face 93735 18936 46870 33114 Face 93736 18936 6738 46870 Face 93737 26467 46871 8605 Face 93738 26467 15673 46871 Face 93739 26838 46872 5828 Face 93740 26838 206 46872 Face 93741 20008 46873 6665 Face 93742 20008 383 46873 Face 93743 12833 46874 23588 Face 93744 12833 34698 46874 Face 93745 25442 46875 39756 Face 93746 25442 6156 46875 Face 93747 2089 46876 24483 Face 93748 2089 26507 46876 Face 93749 18515 46877 27519 Face 93750 18515 38327 46877 Face 93751 16715 46878 15039 Face 93752 16715 16368 46878 Face 93753 2623 46879 29607 Face 93754 2623 20780 46879 Face 93755 13237 46880 6874 Face 93756 13237 37130 46880 Face 93757 3663 46881 31633 Face 93758 49527 31154 46881 Face 93759 33050 46882 300 Face 93760 33050 15657 46882 Face 93761 17986 46883 41627 Face 93762 17986 23922 46883 Face 93763 35300 46884 7010 Face 93764 35300 7628 46884 Face 93765 28142 46885 47570 Face 93766 28142 37696 46885 Face 93767 279 46886 19410 Face 93768 279 43017 46886 Face 93769 22272 46887 15126 Face 93770 22272 25267 46887 Face 93771 26387 46888 5997 Face 93772 26387 421 46888 Face 93773 18620 46889 2337 Face 93774 18620 19929 46889 Face 93775 10194 46890 8161 Face 93776 10194 31132 46890 Face 93777 14364 46891 14365 Face 93778 14364 37200 46891 Face 93779 21289 46892 31932 Face 93780 21289 27251 46892 Face 93781 19076 46893 5380 Face 93782 19076 10527 46893 Face 93783 30879 46894 39226 Face 93784 30879 24737 46894 Face 93785 869 46895 6941 Face 93786 869 15972 46895 Face 93787 37147 46896 2980 Face 93788 37147 5133 46896 Face 93789 13230 46897 17738 Face 93790 13230 22886 46897 Face 93791 22816 46898 43859 Face 93792 22816 23383 46898 Face 93793 23868 46899 2230 Face 93794 23868 22850 46899 Face 93795 12613 46900 14404 Face 93796 12613 40602 46900 Face 93797 46902 46901 11238 Face 93798 6316 38004 46901 Face 93799 6316 46902 48328 Face 93800 6316 46901 46902 Face 93801 34580 46903 5403 Face 93802 34580 13022 46903 Face 93803 9787 46904 18094 Face 93804 9787 42493 46904 Face 93805 17563 46905 32936 Face 93806 17563 2614 46905 Face 93807 25389 46906 43731 Face 93808 25389 28814 46906 Face 93809 5802 46907 16501 Face 93810 5802 20237 46907 Face 93811 26468 46908 14865 Face 93812 26468 27376 46908 Face 93813 13967 46909 13966 Face 93814 13967 35536 46909 Face 93815 30199 46910 36590 Face 93816 30199 39806 46910 Face 93817 25881 46911 30614 Face 93818 25881 43849 46911 Face 93819 5005 46912 48935 Face 93820 5005 19936 46912 Face 93821 16651 46913 42938 Face 93822 16651 22279 46913 Face 93823 20705 46914 6497 Face 93824 20705 40534 46914 Face 93825 24624 46915 37748 Face 93826 24624 30647 46915 Face 93827 7048 46916 33934 Face 93828 7048 33480 46916 Face 93829 3930 46917 7370 Face 93830 3930 42506 46917 Face 93831 25181 46918 28980 Face 93832 25181 41304 46918 Face 93833 12520 46919 1648 Face 93834 12520 877 46919 Face 93835 13783 46920 24469 Face 93836 46921 3011 46920 Face 93837 13783 46921 46920 Face 93838 13783 6610 46921 Face 93839 16500 46922 36445 Face 93840 16500 38297 46922 Face 93841 15514 46923 4747 Face 93842 15514 26289 46923 Face 93843 23390 46924 13494 Face 93844 23390 33023 46924 Face 93845 1867 46925 37525 Face 93846 1867 12232 46925 Face 93847 1220 46926 40902 Face 93848 1220 46079 46926 Face 93849 16617 46927 42993 Face 93850 16617 20795 46927 Face 93851 25955 46928 39665 Face 93852 25955 14968 46928 Face 93853 26452 46929 41331 Face 93854 26452 43579 46929 Face 93855 34638 46930 4095 Face 93856 34638 1891 46930 Face 93857 23488 46931 14309 Face 93858 23488 9035 46931 Face 93859 6095 46932 28889 Face 93860 6095 28487 46932 Face 93861 12893 46933 38904 Face 93862 48595 26230 46933 Face 93863 30637 46934 32475 Face 93864 30637 16015 46934 Face 93865 9794 46935 31480 Face 93866 9794 11743 46935 Face 93867 22523 46936 9500 Face 93868 22523 11486 46936 Face 93869 12006 46937 40719 Face 93870 12006 8695 46937 Face 93871 4093 46938 36494 Face 93872 4093 32405 46938 Face 93873 8812 46939 46801 Face 93874 46940 10950 46939 Face 93875 8812 46940 46939 Face 93876 8812 42176 46940 Face 93877 3409 46941 33079 Face 93878 46942 13955 46941 Face 93879 3409 46942 46941 Face 93880 3409 30908 46942 Face 93881 1623 46943 46338 Face 93882 1623 9482 46943 Face 93883 4729 46944 12329 Face 93884 4729 18007 46944 Face 93885 21138 46945 28771 Face 93886 21138 28212 46945 Face 93887 11134 46946 27665 Face 93888 11134 21755 46946 Face 93889 22386 46947 35936 Face 93890 22386 24182 46947 Face 93891 12271 46948 29497 Face 93892 12271 31867 46948 Face 93893 21726 46949 20996 Face 93894 21726 20633 46949 Face 93895 35655 46950 32085 Face 93896 35655 43913 46950 Face 93897 8482 46951 22420 Face 93898 8482 19835 46951 Face 93899 14132 46952 1358 Face 93900 14132 28410 46952 Face 93901 10357 46953 13663 Face 93902 10357 44557 46953 Face 93903 22599 46954 17417 Face 93904 22599 2697 46954 Face 93905 3030 46955 9919 Face 93906 3030 40230 46955 Face 93907 19230 46956 32684 Face 93908 19230 7570 46956 Face 93909 17849 46957 25157 Face 93910 48833 7685 46957 Face 93911 4150 46958 38981 Face 93912 4150 10131 46958 Face 93913 9024 46959 18697 Face 93914 9024 9025 46959 Face 93915 18229 46960 18935 Face 93916 18229 4279 46960 Face 93917 3908 46961 6882 Face 93918 3908 28022 46961 Face 93919 15657 46962 12496 Face 93920 15657 25053 46962 Face 93921 3563 46963 43624 Face 93922 3563 30557 46963 Face 93923 1298 46964 33127 Face 93924 1298 46509 46964 Face 93925 2504 46965 38630 Face 93926 2504 20398 46965 Face 93927 9642 46966 14041 Face 93928 9642 18710 46966 Face 93929 46968 46967 3843 Face 93930 10106 41249 46967 Face 93931 10106 46968 31910 Face 93932 10106 46967 46968 Face 93933 13606 46969 37447 Face 93934 46970 3581 46969 Face 93935 13606 46970 46969 Face 93936 13606 3581 46970 Face 93937 46972 46971 31128 Face 93938 2566 45233 46971 Face 93939 2566 46972 41617 Face 93940 2566 46971 46972 Face 93941 46974 46973 34725 Face 93942 7353 36653 46973 Face 93943 7353 46974 34725 Face 93944 7353 46973 46974 Face 93945 46976 46975 41914 Face 93946 14498 20078 46975 Face 93947 14498 46976 4312 Face 93948 14498 46975 46976 Face 93949 2267 46977 7947 Face 93950 2267 37312 46977 Face 93951 14259 46978 6181 Face 93952 14259 6182 46978 Face 93953 35199 46979 35165 Face 93954 35199 26285 46979 Face 93955 4563 46980 19704 Face 93956 4563 6797 46980 Face 93957 4432 46981 37295 Face 93958 4432 37652 46981 Face 93959 26354 46982 26333 Face 93960 26354 22530 46982 Face 93961 11693 46983 44784 Face 93962 11693 1767 46983 Face 93963 11578 46984 41148 Face 93964 11578 25884 46984 Face 93965 8089 46985 43669 Face 93966 8089 22402 46985 Face 93967 45778 46986 28192 Face 93968 45778 24062 46986 Face 93969 2630 46987 43762 Face 93970 46988 30646 46987 Face 93971 2630 46988 46987 Face 93972 2630 42015 46988 Face 93973 32998 46989 28910 Face 93974 32998 24972 46989 Face 93975 16761 46990 44929 Face 93976 16761 27617 46990 Face 93977 15122 46991 44225 Face 93978 15122 35343 46991 Face 93979 7504 46992 26345 Face 93980 7504 34550 46992 Face 93981 15404 46993 30462 Face 93982 15404 30812 46993 Face 93983 20938 46994 44158 Face 93984 20938 15724 46994 Face 93985 3273 46995 34792 Face 93986 3273 23950 46995 Face 93987 23839 46997 17075 Face 93988 23839 6106 46997 Face 93989 46996 46997 6106 Face 93990 46996 17075 46997 Face 93991 20786 46998 2994 Face 93992 20786 20801 46998 Face 93993 2517 46999 18905 Face 93994 2517 17868 46999 Face 93995 27334 47000 4602 Face 93996 27334 20323 47000 Face 93997 17749 47001 42267 Face 93998 17749 370 47001 Face 93999 9581 47002 43559 Face 94000 9581 16390 47002 Face 94001 28739 47003 41762 Face 94002 28739 2623 47003 Face 94003 15049 47004 38326 Face 94004 15049 3873 47004 Face 94005 13233 47005 25348 Face 94006 13233 42510 47005 Face 94007 47509 47006 36755 Face 94008 13911 8830 47006 Face 94009 13296 47007 39122 Face 94010 13296 32265 47007 Face 94011 3468 47008 14008 Face 94012 3468 46019 47008 Face 94013 8598 47009 18693 Face 94014 8598 31875 47009 Face 94015 2282 47010 21926 Face 94016 2282 45658 47010 Face 94017 25631 47011 2999 Face 94018 25631 8768 47011 Face 94019 33777 47012 16654 Face 94020 33777 43156 47012 Face 94021 12684 47013 18768 Face 94022 12684 24479 47013 Face 94023 31230 47014 31229 Face 94024 31230 31160 47014 Face 94025 6507 47015 16991 Face 94026 6507 22928 47015 Face 94027 820 47016 24468 Face 94028 820 9353 47016 Face 94029 23390 47017 16363 Face 94030 23390 154 47017 Face 94031 9166 47018 2125 Face 94032 9166 23783 47018 Face 94033 3832 47019 34529 Face 94034 3832 17927 47019 Face 94035 3717 47020 37819 Face 94036 3717 23966 47020 Face 94037 32001 47021 7929 Face 94038 32001 28712 47021 Face 94039 23401 47022 38440 Face 94040 23401 8343 47022 Face 94041 22036 47023 23012 Face 94042 22036 11201 47023 Face 94043 17662 47024 22710 Face 94044 17662 36054 47024 Face 94045 10305 47025 7573 Face 94046 10305 19030 47025 Face 94047 26564 47026 2478 Face 94048 26564 39148 47026 Face 94049 3501 47027 41162 Face 94050 3501 35820 47027 Face 94051 17526 47028 44501 Face 94052 17526 22774 47028 Face 94053 17395 47029 45441 Face 94054 17395 10864 47029 Face 94055 34712 47030 9208 Face 94056 34712 38759 47030 Face 94057 24829 47031 6237 Face 94058 24829 2596 47031 Face 94059 12774 47032 15127 Face 94060 12774 23857 47032 Face 94061 19227 47033 28112 Face 94062 19227 40298 47033 Face 94063 19229 47034 34960 Face 94064 19229 22601 47034 Face 94065 23264 47035 19287 Face 94066 23264 34853 47035 Face 94067 24328 47036 19931 Face 94068 24328 35947 47036 Face 94069 7747 47037 26555 Face 94070 7747 26695 47037 Face 94071 18379 47038 42894 Face 94072 18379 38965 47038 Face 94073 25395 47039 42515 Face 94074 25395 16194 47039 Face 94075 1012 47040 35465 Face 94076 1012 26637 47040 Face 94077 22619 47041 33227 Face 94078 22619 6427 47041 Face 94079 38958 47042 31324 Face 94080 38958 35120 47042 Face 94081 11214 47043 4075 Face 94082 11214 16728 47043 Face 94083 20393 47044 35887 Face 94084 20393 33308 47044 Face 94085 47605 47045 21740 Face 94086 47046 47415 47045 Face 94087 9621 47046 47045 Face 94088 9621 33238 47046 Face 94089 4842 47047 37455 Face 94090 4842 11898 47047 Face 94091 31633 47048 3663 Face 94092 31633 9753 47048 Face 94093 19976 47049 18894 Face 94094 19976 13628 47049 Face 94095 8498 47050 30763 Face 94096 8498 21471 47050 Face 94097 36554 47051 18915 Face 94098 36554 24077 47051 Face 94099 15118 47052 2573 Face 94100 15118 30881 47052 Face 94101 4392 47053 20551 Face 94102 4392 3316 47053 Face 94103 33761 47054 8379 Face 94104 33761 48220 47054 Face 94105 33096 47055 24977 Face 94106 33096 33097 47055 Face 94107 16305 47056 22826 Face 94108 47057 33233 47056 Face 94109 16305 47057 47056 Face 94110 16305 36848 47057 Face 94111 1604 47058 14786 Face 94112 1604 34028 47058 Face 94113 2938 47059 21989 Face 94114 2938 37806 47059 Face 94115 10776 47060 36662 Face 94116 10776 8778 47060 Face 94117 1172 47061 28468 Face 94118 47062 38405 47061 Face 94119 1172 47062 47061 Face 94120 1172 25791 47062 Face 94121 6711 47063 27177 Face 94122 6711 44243 47063 Face 94123 33993 47064 23000 Face 94124 33993 10571 47064 Face 94125 28381 47065 7490 Face 94126 28381 33829 47065 Face 94127 34150 47066 15172 Face 94128 34150 45937 47066 Face 94129 17852 47067 15802 Face 94130 17852 1096 47067 Face 94131 16534 47068 8603 Face 94132 16534 43074 47068 Face 94133 20 47069 35991 Face 94134 20 24740 47069 Face 94135 28637 47070 5227 Face 94136 28637 33695 47070 Face 94137 8882 47071 30987 Face 94138 8882 38605 47071 Face 94139 9066 47072 16695 Face 94140 9066 37439 47072 Face 94141 11066 47073 31466 Face 94142 11066 45584 47073 Face 94143 12136 47074 20078 Face 94144 12136 43932 47074 Face 94145 2936 47075 12639 Face 94146 2936 25411 47075 Face 94147 19 47076 31654 Face 94148 19 40131 47076 Face 94149 1982 47077 40809 Face 94150 1982 35077 47077 Face 94151 4969 47078 46479 Face 94152 4969 35718 47078 Face 94153 14914 47079 38706 Face 94154 14914 44056 47079 Face 94155 21497 47080 33453 Face 94156 21497 10471 47080 Face 94157 27579 47081 18442 Face 94158 27579 36378 47081 Face 94159 34406 47082 26251 Face 94160 34406 41677 47082 Face 94161 20310 47083 18621 Face 94162 20310 32171 47083 Face 94163 47349 47084 20539 Face 94164 3344 46855 47084 Face 94165 17893 47085 7880 Face 94166 17893 1051 47085 Face 94167 45036 47086 3141 Face 94168 45036 3140 47086 Face 94169 14784 47087 29057 Face 94170 14784 41903 47087 Face 94171 13088 47088 36807 Face 94172 13088 4187 47088 Face 94173 35165 47089 35199 Face 94174 35165 30357 47089 Face 94175 4821 47090 29490 Face 94176 47091 8377 47090 Face 94177 4821 47091 47090 Face 94178 4821 20691 47091 Face 94179 4991 47092 11646 Face 94180 4991 14341 47092 Face 94181 49229 47093 10236 Face 94182 13123 15184 47093 Face 94183 16402 47094 10837 Face 94184 16402 4006 47094 Face 94185 27062 47095 33304 Face 94186 27062 6322 47095 Face 94187 3637 47096 27456 Face 94188 3637 22820 47096 Face 94189 41166 47097 6695 Face 94190 41166 5668 47097 Face 94191 4436 47098 21697 Face 94192 4436 34379 47098 Face 94193 14717 47099 39503 Face 94194 14717 40900 47099 Face 94195 3341 47100 43876 Face 94196 3341 40806 47100 Face 94197 31467 47101 6621 Face 94198 31467 46492 47101 Face 94199 13673 47102 36390 Face 94200 13673 4328 47102 Face 94201 11640 47103 17837 Face 94202 11640 8196 47103 Face 94203 2129 47104 40157 Face 94204 2129 13631 47104 Face 94205 22269 47105 926 Face 94206 22269 16809 47105 Face 94207 9928 47106 23655 Face 94208 9928 37452 47106 Face 94209 33374 47107 28977 Face 94210 33374 447 47107 Face 94211 33418 47108 43274 Face 94212 33418 43200 47108 Face 94213 31397 47109 6447 Face 94214 31397 3723 47109 Face 94215 8507 47110 15808 Face 94216 8507 26986 47110 Face 94217 3817 47111 14152 Face 94218 3817 44977 47111 Face 94219 4403 47112 25886 Face 94220 4403 47258 47112 Face 94221 25335 47113 39634 Face 94222 25335 1216 47113 Face 94223 17685 47114 18550 Face 94224 17685 13667 47114 Face 94225 3558 47115 42368 Face 94226 3558 21000 47115 Face 94227 11617 47116 5875 Face 94228 11617 19907 47116 Face 94229 33708 47117 4106 Face 94230 33708 40688 47117 Face 94231 40840 47118 12830 Face 94232 40840 11310 47118 Face 94233 5873 47119 21382 Face 94234 5873 16099 47119 Face 94235 41139 47120 23514 Face 94236 47121 18988 47120 Face 94237 41139 47121 47120 Face 94238 41139 7677 47121 Face 94239 19287 47122 42359 Face 94240 19287 31292 47122 Face 94241 4911 47123 32076 Face 94242 4911 34983 47123 Face 94243 11358 47124 27262 Face 94244 11358 16131 47124 Face 94245 8184 47125 26634 Face 94246 8184 46649 47125 Face 94247 2687 47126 25369 Face 94248 2687 14096 47126 Face 94249 18632 47127 47082 Face 94250 18632 25019 47127 Face 94251 27917 47128 12840 Face 94252 27917 1599 47128 Face 94253 9578 47129 25482 Face 94254 9578 25832 47129 Face 94255 17328 47130 17168 Face 94256 17328 33798 47130 Face 94257 6960 47131 38531 Face 94258 6960 19979 47131 Face 94259 9011 47132 12943 Face 94260 9011 30525 47132 Face 94261 11838 47133 24645 Face 94262 11838 12432 47133 Face 94263 20003 47134 43658 Face 94264 20003 7463 47134 Face 94265 17545 47135 28774 Face 94266 17545 5372 47135 Face 94267 24921 47136 11332 Face 94268 24921 5923 47136 Face 94269 33904 47137 37999 Face 94270 33904 8330 47137 Face 94271 23851 47138 37442 Face 94272 23851 42784 47138 Face 94273 28440 47139 31311 Face 94274 28440 23504 47139 Face 94275 1310 47140 33826 Face 94276 1310 24360 47140 Face 94277 3342 47141 38196 Face 94278 3342 30053 47141 Face 94279 16841 47142 38013 Face 94280 16841 14299 47142 Face 94281 10546 47143 26181 Face 94282 47144 35633 47143 Face 94283 10546 47144 47143 Face 94284 10546 26181 47144 Face 94285 22610 47145 8872 Face 94286 48695 32030 47145 Face 94287 4568 47146 25144 Face 94288 4568 44620 47146 Face 94289 9524 47147 44285 Face 94290 9524 33933 47147 Face 94291 2141 47148 42482 Face 94292 2141 32965 47148 Face 94293 3945 47149 32828 Face 94294 49542 27224 47149 Face 94295 25544 47150 38442 Face 94296 25544 36290 47150 Face 94297 35203 47151 14468 Face 94298 35203 38171 47151 Face 94299 15521 47152 36717 Face 94300 15521 36816 47152 Face 94301 1695 47153 31493 Face 94302 1695 9595 47153 Face 94303 3096 47154 21090 Face 94304 3096 25163 47154 Face 94305 4967 47155 43482 Face 94306 4967 21732 47155 Face 94307 2147 47156 24121 Face 94308 2147 36565 47156 Face 94309 31348 47157 27719 Face 94310 31348 15334 47157 Face 94311 5997 47158 29717 Face 94312 5997 46888 47158 Face 94313 3724 47159 16106 Face 94314 3724 7433 47159 Face 94315 12030 47160 37409 Face 94316 12030 38963 47160 Face 94317 15970 47161 15969 Face 94318 15970 26592 47161 Face 94319 18190 47162 7568 Face 94320 18190 31102 47162 Face 94321 11317 47163 229 Face 94322 11317 20800 47163 Face 94323 6080 47164 10278 Face 94324 6080 29962 47164 Face 94325 29740 47165 3707 Face 94326 29740 42276 47165 Face 94327 16757 47166 49723 Face 94328 16757 26902 47166 Face 94329 3267 47167 12942 Face 94330 3267 2864 47167 Face 94331 7117 47168 29550 Face 94332 7117 25521 47168 Face 94333 18913 47169 27131 Face 94334 18913 33970 47169 Face 94335 11903 47170 4665 Face 94336 11903 39967 47170 Face 94337 14560 47171 8290 Face 94338 14560 586 47171 Face 94339 4159 47172 17062 Face 94340 4159 10775 47172 Face 94341 3897 47173 42879 Face 94342 3897 37517 47173 Face 94343 19350 47174 1201 Face 94344 19350 23504 47174 Face 94345 5717 47175 36584 Face 94346 5717 31019 47175 Face 94347 15650 47176 23148 Face 94348 15650 9567 47176 Face 94349 18625 47177 37994 Face 94350 18625 38919 47177 Face 94351 47177 47178 28642 Face 94352 47177 38919 47178 Face 94353 21218 47179 7906 Face 94354 21218 17702 47179 Face 94355 38349 47180 14607 Face 94356 38349 8295 47180 Face 94357 825 47181 34127 Face 94358 825 27425 47181 Face 94359 40060 47182 13447 Face 94360 40060 23397 47182 Face 94361 19959 47183 38429 Face 94362 19959 10341 47183 Face 94363 8410 47184 12342 Face 94364 8410 45983 47184 Face 94365 13256 47185 39831 Face 94366 13256 8359 47185 Face 94367 48516 47186 35263 Face 94368 21039 39102 47186 Face 94369 29388 47187 21486 Face 94370 29388 7806 47187 Face 94371 28545 47188 28544 Face 94372 28545 34653 47188 Face 94373 17453 47189 12502 Face 94374 17453 35040 47189 Face 94375 27480 47190 6680 Face 94376 27480 22717 47190 Face 94377 4571 47191 27137 Face 94378 4571 26413 47191 Face 94379 12392 47192 591 Face 94380 12392 46642 47192 Face 94381 39385 47193 4865 Face 94382 39385 45037 47193 Face 94383 18495 47194 42536 Face 94384 18495 8897 47194 Face 94385 23880 47195 40404 Face 94386 23880 28759 47195 Face 94387 32212 47196 16827 Face 94388 32212 4396 47196 Face 94389 12868 47197 92 Face 94390 12868 18969 47197 Face 94391 29936 47198 27039 Face 94392 29936 11293 47198 Face 94393 20652 47199 21501 Face 94394 20652 33541 47199 Face 94395 8700 47200 31962 Face 94396 8700 33318 47200 Face 94397 9726 47201 46763 Face 94398 9726 67 47201 Face 94399 3931 47202 23692 Face 94400 3931 10649 47202 Face 94401 6982 47203 2495 Face 94402 6982 41885 47203 Face 94403 399 47204 47981 Face 94404 399 40153 47204 Face 94405 25747 47205 15832 Face 94406 25747 10041 47205 Face 94407 255 47206 20305 Face 94408 255 33217 47206 Face 94409 19027 47207 1993 Face 94410 19027 14379 47207 Face 94411 1889 47208 42017 Face 94412 1889 41624 47208 Face 94413 47210 47209 14238 Face 94414 7386 19039 47209 Face 94415 7386 47210 3365 Face 94416 7386 47209 47210 Face 94417 30532 47211 25033 Face 94418 30532 42319 47211 Face 94419 33865 47212 16261 Face 94420 33865 2160 47212 Face 94421 8774 47213 43053 Face 94422 8774 34226 47213 Face 94423 9904 47214 12806 Face 94424 9904 43450 47214 Face 94425 21758 47215 27328 Face 94426 21758 15945 47215 Face 94427 12010 47216 9174 Face 94428 12010 27317 47216 Face 94429 10025 47217 2028 Face 94430 10025 24712 47217 Face 94431 10557 47218 14223 Face 94432 10557 25371 47218 Face 94433 35256 47219 33584 Face 94434 35256 45033 47219 Face 94435 6375 47220 33529 Face 94436 6375 34185 47220 Face 94437 9351 47221 42742 Face 94438 9351 27105 47221 Face 94439 1755 47222 45004 Face 94440 1755 28364 47222 Face 94441 13560 47223 4596 Face 94442 13560 41364 47223 Face 94443 19850 47224 35953 Face 94444 19850 14514 47224 Face 94445 27389 47225 10307 Face 94446 27389 27388 47225 Face 94447 19957 47226 14664 Face 94448 19957 39112 47226 Face 94449 35670 47227 23518 Face 94450 35670 11627 47227 Face 94451 3880 47228 17577 Face 94452 3880 17223 47228 Face 94453 9279 47229 11959 Face 94454 9279 21011 47229 Face 94455 28338 47230 9182 Face 94456 28338 45493 47230 Face 94457 3427 47231 45725 Face 94458 3427 21143 47231 Face 94459 7637 47232 18519 Face 94460 7637 919 47232 Face 94461 162 47233 11718 Face 94462 162 24462 47233 Face 94463 13087 47234 26818 Face 94464 13087 2456 47234 Face 94465 2758 47235 41780 Face 94466 2758 19394 47235 Face 94467 26266 47236 2500 Face 94468 26266 7504 47236 Face 94469 334 47237 40444 Face 94470 334 10570 47237 Face 94471 8144 47238 372 Face 94472 8144 35105 47238 Face 94473 14642 47239 41431 Face 94474 14642 40751 47239 Face 94475 8956 47240 24685 Face 94476 8956 46132 47240 Face 94477 20903 47241 14122 Face 94478 20903 6120 47241 Face 94479 30772 47242 14315 Face 94480 30772 19083 47242 Face 94481 3052 47243 39715 Face 94482 3052 16386 47243 Face 94483 21813 47244 21814 Face 94484 21813 13222 47244 Face 94485 40974 47245 398 Face 94486 40974 25239 47245 Face 94487 28695 47246 44213 Face 94488 28695 45660 47246 Face 94489 48460 47247 37410 Face 94490 48461 29417 47247 Face 94491 16997 47248 41967 Face 94492 47249 6120 47248 Face 94493 16997 47249 47248 Face 94494 16997 16998 47249 Face 94495 18753 47250 40208 Face 94496 18753 25205 47250 Face 94497 24148 47251 47749 Face 94498 24148 43309 47251 Face 94499 41731 47252 34815 Face 94500 41731 12440 47252 Face 94501 47254 47253 2346 Face 94502 47254 45696 47253 Face 94503 5608 47254 2346 Face 94504 5608 11277 47254 Face 94505 5399 47255 30017 Face 94506 5399 37773 47255 Face 94507 22479 47256 40267 Face 94508 22479 13026 47256 Face 94509 11850 47257 12090 Face 94510 11850 35705 47257 Face 94511 9803 47258 29512 Face 94512 9803 47112 47258 Face 94513 45220 47259 25784 Face 94514 45220 21594 47259 Face 94515 9919 47260 36998 Face 94516 9919 28796 47260 Face 94517 15575 47261 45351 Face 94518 15575 24655 47261 Face 94519 35775 47262 42508 Face 94520 35775 37465 47262 Face 94521 27133 47263 35474 Face 94522 27133 44721 47263 Face 94523 32787 47264 11917 Face 94524 32787 27878 47264 Face 94525 4419 47265 596 Face 94526 4419 10383 47265 Face 94527 16939 47266 12957 Face 94528 16939 32 47266 Face 94529 2220 47267 29629 Face 94530 2220 37886 47267 Face 94531 8449 47268 31398 Face 94532 8449 395 47268 Face 94533 25324 47269 4650 Face 94534 25324 40367 47269 Face 94535 17446 47270 48545 Face 94536 17446 6921 47270 Face 94537 46580 47271 41663 Face 94538 46580 27216 47271 Face 94539 4612 47272 29245 Face 94540 4612 5624 47272 Face 94541 4038 47273 24801 Face 94542 4038 25306 47273 Face 94543 1667 47274 30924 Face 94544 1667 32628 47274 Face 94545 47277 47275 18163 Face 94546 47276 5108 47275 Face 94547 13468 47276 47275 Face 94548 13468 37078 47276 Face 94549 47278 47277 7204 Face 94550 13468 47275 47277 Face 94551 13468 47278 37078 Face 94552 13468 47277 47278 Face 94553 17286 47279 41896 Face 94554 17286 30997 47279 Face 94555 10998 47280 39594 Face 94556 10998 5401 47280 Face 94557 1177 47281 24806 Face 94558 1177 32283 47281 Face 94559 15677 47282 5490 Face 94560 15677 12541 47282 Face 94561 1091 47283 27565 Face 94562 1091 27566 47283 Face 94563 30353 47284 48759 Face 94564 30353 1839 47284 Face 94565 12688 47285 25448 Face 94566 12688 44113 47285 Face 94567 37616 47286 12044 Face 94568 37616 18772 47286 Face 94569 26889 47287 13835 Face 94570 26889 6525 47287 Face 94571 21465 47288 17821 Face 94572 21465 27966 47288 Face 94573 31316 47289 26716 Face 94574 31316 48173 47289 Face 94575 9723 47290 9426 Face 94576 9723 23473 47290 Face 94577 13846 47291 1850 Face 94578 13846 30807 47291 Face 94579 17767 47292 2199 Face 94580 17767 27771 47292 Face 94581 6662 47293 28001 Face 94582 6662 20305 47293 Face 94583 1870 47294 8595 Face 94584 1870 36970 47294 Face 94585 15195 47295 22107 Face 94586 15195 16966 47295 Face 94587 20469 47296 2218 Face 94588 20469 42795 47296 Face 94589 1664 47297 34207 Face 94590 1664 40631 47297 Face 94591 5375 47298 19531 Face 94592 5375 28218 47298 Face 94593 13639 47299 6253 Face 94594 13639 3359 47299 Face 94595 25474 47300 30965 Face 94596 25474 34536 47300 Face 94597 5258 47301 48 Face 94598 5258 14080 47301 Face 94599 15783 47302 29200 Face 94600 15783 8529 47302 Face 94601 39434 47303 15293 Face 94602 39434 21515 47303 Face 94603 13488 47304 25951 Face 94604 13488 8051 47304 Face 94605 15567 47305 36297 Face 94606 15567 2755 47305 Face 94607 14631 47306 30990 Face 94608 14631 29085 47306 Face 94609 11048 47307 6017 Face 94610 11048 43967 47307 Face 94611 24189 47308 24188 Face 94612 24189 4725 47308 Face 94613 21233 47309 40445 Face 94614 21233 15363 47309 Face 94615 33403 47310 17346 Face 94616 33403 10186 47310 Face 94617 12357 47311 10408 Face 94618 12357 34434 47311 Face 94619 44023 47312 19856 Face 94620 44023 14877 47312 Face 94621 12862 47313 18557 Face 94622 12862 37276 47313 Face 94623 8998 47314 36568 Face 94624 8998 16432 47314 Face 94625 24651 47315 40908 Face 94626 24651 36606 47315 Face 94627 17309 47316 17670 Face 94628 17309 6583 47316 Face 94629 38772 47317 16555 Face 94630 38772 26146 47317 Face 94631 14190 47318 8018 Face 94632 14190 33269 47318 Face 94633 3545 47319 28834 Face 94634 3545 8045 47319 Face 94635 23857 47320 12507 Face 94636 23857 29178 47320 Face 94637 27019 47321 11836 Face 94638 27019 7111 47321 Face 94639 1572 47322 13423 Face 94640 1572 35163 47322 Face 94641 21118 47323 21481 Face 94642 21118 40244 47323 Face 94643 530 47324 27883 Face 94644 530 35841 47324 Face 94645 19768 47325 7721 Face 94646 19768 12922 47325 Face 94647 5677 47326 46633 Face 94648 5677 44175 47326 Face 94649 3951 47327 5325 Face 94650 3951 22463 47327 Face 94651 19400 47328 23032 Face 94652 19400 29804 47328 Face 94653 675 47329 12441 Face 94654 675 41378 47329 Face 94655 13271 47330 1924 Face 94656 13271 9923 47330 Face 94657 4533 47331 9162 Face 94658 4533 12535 47331 Face 94659 31917 47332 7638 Face 94660 31917 5390 47332 Face 94661 2693 47333 44097 Face 94662 2693 25222 47333 Face 94663 11856 47334 20353 Face 94664 11856 29981 47334 Face 94665 47336 47335 16375 Face 94666 47337 16962 47335 Face 94667 7003 47336 16375 Face 94668 7003 16962 47337 Face 94669 47336 47337 47335 Face 94670 47336 7003 47337 Face 94671 6449 47338 35201 Face 94672 6449 33847 47338 Face 94673 17872 47339 25977 Face 94674 17872 21250 47339 Face 94675 24555 47340 1615 Face 94676 24555 28581 47340 Face 94677 3093 47341 48524 Face 94678 3093 16709 47341 Face 94679 12016 47342 27069 Face 94680 12016 29220 47342 Face 94681 5933 47343 49684 Face 94682 5933 32188 47343 Face 94683 11091 47344 23814 Face 94684 11091 19980 47344 Face 94685 4245 47345 6902 Face 94686 4245 18528 47345 Face 94687 9331 47346 46697 Face 94688 47583 24520 47346 Face 94689 4136 47347 23188 Face 94690 4136 18023 47347 Face 94691 3025 47348 31820 Face 94692 3025 30198 47348 Face 94693 3344 47349 30584 Face 94694 3344 47084 47349 Face 94695 18353 47350 12061 Face 94696 49339 21030 47350 Face 94697 31144 47351 1830 Face 94698 31144 31145 47351 Face 94699 27832 47352 20849 Face 94700 27832 2752 47352 Face 94701 9650 47353 18275 Face 94702 9650 19703 47354 Face 94703 47353 47354 22415 Face 94704 47353 9650 47354 Face 94705 23113 47355 19828 Face 94706 47356 40247 47355 Face 94707 23113 47356 47355 Face 94708 23113 23114 47356 Face 94709 6092 47357 19404 Face 94710 48980 38663 47357 Face 94711 16283 47358 13105 Face 94712 16283 1752 47358 Face 94713 1057 47359 33985 Face 94714 1057 13038 47359 Face 94715 49182 47360 28663 Face 94716 33994 910 47360 Face 94717 11153 47361 8484 Face 94718 11153 15675 47361 Face 94719 21423 47362 39913 Face 94720 21423 3470 47362 Face 94721 2713 47363 27797 Face 94722 2713 28158 47363 Face 94723 47365 47364 8085 Face 94724 532 23819 47364 Face 94725 532 47365 34552 Face 94726 532 47364 47365 Face 94727 8997 47366 15821 Face 94728 8997 8996 47366 Face 94729 16421 47367 7939 Face 94730 16421 2243 47367 Face 94731 30545 47368 3671 Face 94732 30545 36695 47368 Face 94733 7533 47369 44304 Face 94734 7533 41562 47369 Face 94735 20004 47370 33248 Face 94736 20004 1607 47370 Face 94737 2788 47371 17962 Face 94738 2788 38475 47371 Face 94739 712 47372 14075 Face 94740 712 40315 47372 Face 94741 29403 47373 19973 Face 94742 29403 32454 47373 Face 94743 24120 47374 27361 Face 94744 24120 36301 47374 Face 94745 5251 47375 20870 Face 94746 5251 33049 47375 Face 94747 3662 47376 32601 Face 94748 3662 32741 47376 Face 94749 16030 47377 34456 Face 94750 16030 9687 47377 Face 94751 15221 47378 25950 Face 94752 15221 43569 47378 Face 94753 35754 47379 3265 Face 94754 35754 8869 47379 Face 94755 12892 47380 14771 Face 94756 12892 9633 47380 Face 94757 39980 47381 36885 Face 94758 39980 2388 47381 Face 94759 28318 47382 2126 Face 94760 28318 18064 47382 Face 94761 4371 47383 39458 Face 94762 4371 32252 47383 Face 94763 14299 47384 49323 Face 94764 14299 36262 47384 Face 94765 8328 47385 35151 Face 94766 8328 17411 47385 Face 94767 6673 47386 10002 Face 94768 6673 1506 47386 Face 94769 11029 47387 19642 Face 94770 11029 30455 47387 Face 94771 2665 47388 11816 Face 94772 2665 25067 47388 Face 94773 6592 47389 20399 Face 94774 6592 38362 47389 Face 94775 24504 47390 46298 Face 94776 24504 40036 47390 Face 94777 25898 47391 7960 Face 94778 25898 23090 47391 Face 94779 1299 47392 24285 Face 94780 1299 25320 47392 Face 94781 18364 47393 8102 Face 94782 18364 26828 47393 Face 94783 10293 47394 17687 Face 94784 10293 40309 47394 Face 94785 4350 47395 30051 Face 94786 4350 37967 47395 Face 94787 21414 47396 33740 Face 94788 21414 23557 47396 Face 94789 8391 47397 32741 Face 94790 8391 26216 47397 Face 94791 14782 47398 10325 Face 94792 14782 28101 47398 Face 94793 32268 47399 13556 Face 94794 32268 23305 47399 Face 94795 30204 47400 42092 Face 94796 30204 28304 47400 Face 94797 3262 47401 14551 Face 94798 3262 14613 47401 Face 94799 31330 47402 32501 Face 94800 31330 46637 47402 Face 94801 37153 47403 21466 Face 94802 37153 32412 47403 Face 94803 2662 47404 30343 Face 94804 2662 29666 47404 Face 94805 18555 47405 10812 Face 94806 18555 41858 47405 Face 94807 30327 47406 9733 Face 94808 30327 33950 47406 Face 94809 11111 47407 38 Face 94810 11111 14679 47407 Face 94811 17996 47408 37475 Face 94812 17996 21642 47408 Face 94813 5742 47409 35903 Face 94814 5742 44223 47409 Face 94815 21603 47410 17993 Face 94816 21603 247 47410 Face 94817 29706 47411 10929 Face 94818 29706 3546 47411 Face 94819 28874 47412 36519 Face 94820 28874 12081 47412 Face 94821 530 47413 37489 Face 94822 530 14122 47413 Face 94823 20450 47414 6925 Face 94824 20450 17196 47414 Face 94825 16059 47415 30621 Face 94826 16059 47045 47415 Face 94827 17984 47416 20641 Face 94828 17984 15095 47416 Face 94829 18207 47417 2057 Face 94830 18207 47932 47417 Face 94831 1921 47418 40358 Face 94832 1921 4411 47418 Face 94833 14763 47419 19254 Face 94834 14763 23500 47419 Face 94835 28203 47420 38748 Face 94836 28203 30183 47420 Face 94837 3968 47421 37754 Face 94838 3968 20407 47421 Face 94839 32263 47422 28871 Face 94840 32263 13 47422 Face 94841 2034 47423 19492 Face 94842 2034 23209 47423 Face 94843 9455 47424 9048 Face 94844 9455 14581 47424 Face 94845 22288 47425 41000 Face 94846 22288 11913 47425 Face 94847 10020 47426 35482 Face 94848 10020 16589 47426 Face 94849 10342 47427 43222 Face 94850 10342 26782 47427 Face 94851 17642 47428 15489 Face 94852 17642 25985 47428 Face 94853 1368 47429 23536 Face 94854 1368 20650 47429 Face 94855 16165 47430 43881 Face 94856 16165 17682 47430 Face 94857 27804 47431 14230 Face 94858 27804 6512 47431 Face 94859 24736 47432 9271 Face 94860 24736 10858 47432 Face 94861 1715 47433 25128 Face 94862 1715 18812 47433 Face 94863 1379 47434 5552 Face 94864 1379 40418 47434 Face 94865 11694 47435 15427 Face 94866 11694 37850 47435 Face 94867 7602 47436 40091 Face 94868 7602 9832 47436 Face 94869 10872 47437 28188 Face 94870 10872 25397 47437 Face 94871 20339 47438 9389 Face 94872 20339 18783 47438 Face 94873 4127 47439 35227 Face 94874 4127 17166 47439 Face 94875 28693 47440 39693 Face 94876 28693 5170 47440 Face 94877 20796 47441 23018 Face 94878 20796 25534 47441 Face 94879 25274 47442 4957 Face 94880 25274 3665 47442 Face 94881 7456 47443 44693 Face 94882 7456 38902 47443 Face 94883 3159 47444 32632 Face 94884 3159 40323 47444 Face 94885 3599 47445 14573 Face 94886 3599 24609 47445 Face 94887 27467 47446 31717 Face 94888 27467 12568 47446 Face 94889 24946 47447 39373 Face 94890 24946 43855 47447 Face 94891 24722 47448 38441 Face 94892 24722 36989 47448 Face 94893 9201 47449 33662 Face 94894 9201 24159 47449 Face 94895 11709 47450 45948 Face 94896 11709 30897 47450 Face 94897 10092 47451 36869 Face 94898 47452 31234 47451 Face 94899 10092 47452 47451 Face 94900 10092 33856 47452 Face 94901 21871 47453 41416 Face 94902 21871 20795 47453 Face 94903 29079 47454 13152 Face 94904 29079 1591 47454 Face 94905 11873 47455 34797 Face 94906 11873 23973 47455 Face 94907 28231 47456 22193 Face 94908 28231 41592 47456 Face 94909 32842 47457 3210 Face 94910 32842 40155 47457 Face 94911 15738 47458 2010 Face 94912 15738 45084 47458 Face 94913 10080 47459 32597 Face 94914 10080 8799 47459 Face 94915 798 47460 24992 Face 94916 47461 32757 47460 Face 94917 798 47461 47460 Face 94918 798 33574 47461 Face 94919 5371 47462 7805 Face 94920 5371 17613 47462 Face 94921 694 47463 2641 Face 94922 694 40437 47463 Face 94923 8969 47464 19789 Face 94924 8969 36377 47464 Face 94925 22289 47465 12255 Face 94926 22289 39554 47465 Face 94927 28051 47466 23382 Face 94928 28051 26504 47466 Face 94929 11324 47467 23553 Face 94930 47468 40085 47467 Face 94931 11324 47468 47467 Face 94932 11324 1194 47468 Face 94933 12989 47469 387 Face 94934 12989 26500 47469 Face 94935 14635 47470 22806 Face 94936 14635 34073 47470 Face 94937 950 47471 43390 Face 94938 950 37000 47471 Face 94939 36890 47472 6232 Face 94940 36890 6241 47472 Face 94941 14935 47473 17707 Face 94942 14935 37414 47473 Face 94943 2344 47474 38293 Face 94944 47475 33128 47474 Face 94945 2344 47475 47474 Face 94946 2344 8620 47475 Face 94947 9723 47476 23473 Face 94948 9723 29805 47476 Face 94949 8194 47477 28545 Face 94950 8194 45735 47477 Face 94951 18760 47478 33690 Face 94952 18760 27242 47478 Face 94953 47480 47479 31228 Face 94954 18915 8017 47479 Face 94955 18915 47480 7392 Face 94956 18915 47479 47480 Face 94957 27736 47481 23764 Face 94958 27736 30447 47481 Face 94959 10120 47482 5632 Face 94960 10120 28881 47482 Face 94961 16811 47483 4709 Face 94962 16811 848 47483 Face 94963 15920 47484 12796 Face 94964 47485 10712 47484 Face 94965 15920 47485 47484 Face 94966 15920 38562 47485 Face 94967 8311 47486 43725 Face 94968 8311 4242 47486 Face 94969 2856 47487 36284 Face 94970 2856 40096 47487 Face 94971 30024 47488 12557 Face 94972 47489 38493 47488 Face 94973 30024 47489 47488 Face 94974 30024 7868 47489 Face 94975 28119 47490 30453 Face 94976 28119 48228 47490 Face 94977 7203 47491 35037 Face 94978 7203 40068 47491 Face 94979 1378 47492 25270 Face 94980 1378 7174 47492 Face 94981 15446 47493 35253 Face 94982 15446 4915 47493 Face 94983 19421 47494 19058 Face 94984 19421 33862 47494 Face 94985 18780 47495 1978 Face 94986 18780 36516 47495 Face 94987 7348 47496 46525 Face 94988 7348 29859 47496 Face 94989 15968 47497 39710 Face 94990 15968 17590 47497 Face 94991 1069 47498 39825 Face 94992 1069 14153 47498 Face 94993 17466 47499 21830 Face 94994 17466 42290 47499 Face 94995 15551 47500 16727 Face 94996 15551 33843 47500 Face 94997 13956 47501 29775 Face 94998 13956 33911 47501 Face 94999 31263 47502 7779 Face 95000 31263 17688 47502 Face 95001 14544 47503 2019 Face 95002 14544 34730 47503 Face 95003 23630 47504 26027 Face 95004 23630 11697 47504 Face 95005 7248 47505 28864 Face 95006 7248 30391 47505 Face 95007 18130 47506 29957 Face 95008 18130 10139 47506 Face 95009 17591 47507 28715 Face 95010 17591 49684 47507 Face 95011 7794 47508 46695 Face 95012 7794 17869 47508 Face 95013 13911 47509 10112 Face 95014 13911 47006 47509 Face 95015 8446 47510 863 Face 95016 8446 36652 47510 Face 95017 15844 47511 29454 Face 95018 15844 9577 47511 Face 95019 25161 47512 5948 Face 95020 25161 12537 47512 Face 95021 24903 47513 28947 Face 95022 24903 47910 47513 Face 95023 5035 47514 39987 Face 95024 5035 30638 47514 Face 95025 2636 47515 33039 Face 95026 2636 27567 47515 Face 95027 26399 47516 16897 Face 95028 26399 45282 47516 Face 95029 34782 47517 13053 Face 95030 34782 22048 47517 Face 95031 20276 47518 10290 Face 95032 20276 40010 47518 Face 95033 8039 47519 32368 Face 95034 8039 43050 47519 Face 95035 32279 47520 27112 Face 95036 32279 23801 47520 Face 95037 3907 47521 14675 Face 95038 3907 39845 47521 Face 95039 20482 47522 10945 Face 95040 20482 12132 47522 Face 95041 16506 47523 43144 Face 95042 16506 32373 47523 Face 95043 9935 47524 19645 Face 95044 9935 34781 47524 Face 95045 10584 47525 15904 Face 95046 10584 42081 47525 Face 95047 12378 47526 17184 Face 95048 12378 36257 47526 Face 95049 9831 47527 30793 Face 95050 9831 34395 47527 Face 95051 22375 47528 9212 Face 95052 22375 44960 47528 Face 95053 30882 47529 6420 Face 95054 30882 20027 47529 Face 95055 97 47530 42406 Face 95056 97 12574 47530 Face 95057 8927 47531 46457 Face 95058 8927 18908 47531 Face 95059 21167 47532 17849 Face 95060 21167 40681 47532 Face 95061 22559 47533 15694 Face 95062 22559 35248 47533 Face 95063 20183 47534 40198 Face 95064 20183 37919 47534 Face 95065 13744 47535 5415 Face 95066 13744 41397 47535 Face 95067 47537 47536 10911 Face 95068 2777 21659 47536 Face 95069 2777 47537 31645 Face 95070 2777 47536 47537 Face 95071 7064 47538 17773 Face 95072 7064 21006 47538 Face 95073 27602 47539 28252 Face 95074 27602 17777 47539 Face 95075 5087 47540 44351 Face 95076 5087 46772 47540 Face 95077 5194 47541 6200 Face 95078 5194 29573 47541 Face 95079 12799 47542 33681 Face 95080 12799 23793 47542 Face 95081 12214 47543 42041 Face 95082 47544 26486 47543 Face 95083 12214 47544 47543 Face 95084 47545 698 47544 Face 95085 12214 47545 47544 Face 95086 12214 40151 47545 Face 95087 16158 47546 26440 Face 95088 16158 30527 47546 Face 95089 25385 47547 25386 Face 95090 25385 6896 47547 Face 95091 15700 47548 506 Face 95092 15700 11958 47548 Face 95093 12109 47549 25076 Face 95094 12109 527 47549 Face 95095 5475 47550 9475 Face 95096 5475 42588 47550 Face 95097 24306 47551 9965 Face 95098 24306 42990 47551 Face 95099 3192 47552 20203 Face 95100 3192 33213 47552 Face 95101 32908 47553 20207 Face 95102 32908 6095 47553 Face 95103 12461 47554 30713 Face 95104 12461 34151 47554 Face 95105 22338 47555 25086 Face 95106 22338 3356 47555 Face 95107 35210 47556 3584 Face 95108 35210 38975 47556 Face 95109 24444 47557 48803 Face 95110 24444 9515 47557 Face 95111 17698 47558 21695 Face 95112 17698 1819 47558 Face 95113 10500 47559 40651 Face 95114 10500 7298 47559 Face 95115 6698 47560 39786 Face 95116 6698 1184 47560 Face 95117 14483 47561 12888 Face 95118 14483 14482 47561 Face 95119 27683 47562 42316 Face 95120 27683 42595 47562 Face 95121 9352 47563 45163 Face 95122 9352 3566 47563 Face 95123 36167 47564 49721 Face 95124 36167 36166 47564 Face 95125 10212 47565 39059 Face 95126 10212 1163 47565 Face 95127 20782 47566 11997 Face 95128 20782 6987 47566 Face 95129 10340 47567 1635 Face 95130 10340 28662 47567 Face 95131 3606 47568 46683 Face 95132 3606 31851 47568 Face 95133 1175 47569 4835 Face 95134 1175 10511 47569 Face 95135 47571 47570 28143 Face 95136 13360 42144 47570 Face 95137 13360 47571 5983 Face 95138 13360 47570 47571 Face 95139 24419 47572 7098 Face 95140 24419 2979 47572 Face 95141 13371 47573 589 Face 95142 13371 40327 47573 Face 95143 5173 47574 17692 Face 95144 5173 7460 47574 Face 95145 47576 47575 24877 Face 95146 49842 19209 47575 Face 95147 22016 47576 27138 Face 95148 22016 47575 47576 Face 95149 2084 47577 46377 Face 95150 2084 18865 47577 Face 95151 7523 47578 31662 Face 95152 7523 28698 47578 Face 95153 11197 47579 31299 Face 95154 11197 42650 47579 Face 95155 20831 47580 22154 Face 95156 20831 5538 47580 Face 95157 9365 47581 38229 Face 95158 9365 16001 47581 Face 95159 9933 47582 14504 Face 95160 9933 11256 47582 Face 95161 9331 47583 47346 Face 95162 9331 23449 47583 Face 95163 10815 47584 20828 Face 95164 10815 23029 47584 Face 95165 17359 47585 11544 Face 95166 17359 20615 47585 Face 95167 40423 47586 26909 Face 95168 40423 44744 47586 Face 95169 47588 47587 10184 Face 95170 47588 2119 47587 Face 95171 21994 47588 39130 Face 95172 21994 2119 47588 Face 95173 7022 47589 2785 Face 95174 7022 29257 47589 Face 95175 24416 47590 9286 Face 95176 24416 24415 47590 Face 95177 29983 47591 29984 Face 95178 29983 31802 47591 Face 95179 15012 47592 10517 Face 95180 15012 38985 47592 Face 95181 27234 47593 8101 Face 95182 27234 25761 47593 Face 95183 15203 47594 27364 Face 95184 15203 18219 47594 Face 95185 10230 47595 4618 Face 95186 10230 33952 47595 Face 95187 19489 47596 7808 Face 95188 19489 39047 47596 Face 95189 38028 47597 34230 Face 95190 38028 3573 47597 Face 95191 12494 47598 45649 Face 95192 12494 20934 47598 Face 95193 21005 47599 28031 Face 95194 21005 24950 47599 Face 95195 3167 47600 35638 Face 95196 3167 8665 47600 Face 95197 35817 47601 5222 Face 95198 35817 32369 47601 Face 95199 19102 47602 3287 Face 95200 19102 5430 47602 Face 95201 34688 47603 43004 Face 95202 34688 27198 47603 Face 95203 10362 47604 36025 Face 95204 10362 44711 47604 Face 95205 9621 47605 68 Face 95206 9621 47045 47605 Face 95207 22022 47606 40476 Face 95208 22022 41697 47606 Face 95209 2947 47607 14856 Face 95210 2947 8383 47607 Face 95211 26782 47608 41399 Face 95212 26782 14939 47608 Face 95213 2519 47609 47282 Face 95214 2519 38794 47609 Face 95215 5543 47610 19202 Face 95216 5543 11221 47610 Face 95217 29363 47611 41450 Face 95218 29363 6040 47611 Face 95219 7053 47612 31621 Face 95220 7053 23013 47612 Face 95221 23001 47613 5713 Face 95222 23001 26518 47613 Face 95223 28741 47614 7880 Face 95224 28741 23528 47614 Face 95225 30713 47615 1672 Face 95226 30713 48212 47615 Face 95227 19288 47616 2416 Face 95228 19288 42542 47616 Face 95229 16175 47617 6137 Face 95230 16175 32480 47617 Face 95231 708 47618 42519 Face 95232 708 42541 47618 Face 95233 2565 47619 41996 Face 95234 2565 35825 47619 Face 95235 47902 47620 13272 Face 95236 47904 18422 47620 Face 95237 17390 47621 43200 Face 95238 17390 39892 47621 Face 95239 15586 47622 31208 Face 95240 15586 42614 47622 Face 95241 2049 47623 4804 Face 95242 2049 20501 47623 Face 95243 5228 47624 29330 Face 95244 5228 32141 47624 Face 95245 15021 47625 4955 Face 95246 15021 2202 47625 Face 95247 47627 47626 18218 Face 95248 4748 39126 47626 Face 95249 4748 47627 31266 Face 95250 4748 47626 47627 Face 95251 1918 47628 40122 Face 95252 1918 14168 47628 Face 95253 14871 47629 28452 Face 95254 14871 13640 47629 Face 95255 12968 47630 39186 Face 95256 12968 9028 47630 Face 95257 22477 47631 390 Face 95258 22477 4740 47631 Face 95259 15009 47632 17031 Face 95260 15009 27219 47632 Face 95261 31461 47633 31462 Face 95262 31461 41879 47633 Face 95263 48769 47634 45075 Face 95264 27973 1791 47634 Face 95265 16663 47635 22692 Face 95266 16663 44127 47635 Face 95267 13356 47636 20537 Face 95268 13356 27773 47636 Face 95269 16440 47637 32311 Face 95270 16440 40159 47637 Face 95271 20356 47638 47238 Face 95272 20356 12145 47638 Face 95273 13812 47639 27416 Face 95274 13812 46820 47639 Face 95275 1442 47640 44945 Face 95276 1442 23392 47640 Face 95277 12857 47641 34893 Face 95278 12857 38755 47641 Face 95279 262 47642 17090 Face 95280 262 29232 47642 Face 95281 36769 47643 15153 Face 95282 36769 1467 47643 Face 95283 15788 47644 9172 Face 95284 15788 11987 47644 Face 95285 4381 47645 9172 Face 95286 4381 22041 47645 Face 95287 4104 47646 44143 Face 95288 4104 35493 47646 Face 95289 8617 47647 31488 Face 95290 8617 14758 47647 Face 95291 12688 47648 44113 Face 95292 12688 12689 47648 Face 95293 7443 47649 5570 Face 95294 7443 42028 47649 Face 95295 27088 47650 8030 Face 95296 27088 36821 47650 Face 95297 12852 47651 17370 Face 95298 12852 2317 47651 Face 95299 20343 47652 35031 Face 95300 20343 29161 47652 Face 95301 12573 47653 42687 Face 95302 12573 39397 47653 Face 95303 7815 47654 25856 Face 95304 7815 40847 47654 Face 95305 6872 47655 35323 Face 95306 6872 21925 47655 Face 95307 1891 47656 13236 Face 95308 1891 34638 47656 Face 95309 30288 47657 28465 Face 95310 30288 8750 47657 Face 95311 2530 47658 38343 Face 95312 47659 45697 47658 Face 95313 2530 47659 47658 Face 95314 2530 13229 47659 Face 95315 29222 47660 31660 Face 95316 29222 13442 47660 Face 95317 34517 47661 18167 Face 95318 34517 48936 47661 Face 95319 4358 47662 28805 Face 95320 4358 30447 47662 Face 95321 19086 47663 45222 Face 95322 19086 34849 47663 Face 95323 8943 47664 42277 Face 95324 8943 45366 47664 Face 95325 38818 47665 43458 Face 95326 47666 7122 47665 Face 95327 38818 47666 47665 Face 95328 38818 638 47666 Face 95329 20124 47667 3130 Face 95330 20124 2859 47667 Face 95331 10275 47668 25184 Face 95332 10275 19967 47668 Face 95333 38289 47669 12939 Face 95334 38289 16317 47669 Face 95335 19109 47670 48074 Face 95336 19109 40762 47670 Face 95337 32377 47671 32378 Face 95338 32377 46556 47671 Face 95339 16614 47672 12736 Face 95340 16614 37563 47672 Face 95341 12159 47673 1043 Face 95342 12159 47640 47673 Face 95343 13041 47674 22103 Face 95344 13041 4029 47674 Face 95345 7281 47675 12250 Face 95346 7281 38195 47675 Face 95347 13754 47676 16880 Face 95348 13754 36398 47676 Face 95349 2364 47677 16416 Face 95350 2364 46520 47677 Face 95351 5143 47678 43101 Face 95352 5143 6009 47678 Face 95353 11694 47679 43438 Face 95354 47680 36884 47679 Face 95355 11694 47680 47679 Face 95356 11694 42597 47680 Face 95357 22108 47681 28430 Face 95358 22108 12533 47681 Face 95359 20318 47682 20319 Face 95360 20318 24983 47682 Face 95361 22811 47683 11596 Face 95362 22811 2444 47683 Face 95363 12861 47684 32136 Face 95364 12861 616 47684 Face 95365 18525 47685 3924 Face 95366 18525 40772 47685 Face 95367 5261 47686 2666 Face 95368 5261 31073 47686 Face 95369 48451 47687 4505 Face 95370 5187 40749 47687 Face 95371 856 47688 36490 Face 95372 856 35383 47688 Face 95373 3607 47689 44204 Face 95374 3607 23459 47689 Face 95375 12040 47690 20452 Face 95376 12040 41068 47690 Face 95377 13399 47691 9383 Face 95378 13399 10163 47691 Face 95379 8733 47692 46140 Face 95380 8733 30290 47692 Face 95381 18069 47693 45643 Face 95382 18069 33663 47693 Face 95383 10215 47694 25716 Face 95384 10215 15882 47694 Face 95385 23860 47695 30709 Face 95386 23860 33735 47695 Face 95387 32965 47696 26179 Face 95388 32965 8452 47696 Face 95389 5610 47697 32448 Face 95390 5610 18374 47697 Face 95391 19536 47698 14804 Face 95392 19536 15216 47698 Face 95393 16130 47699 26670 Face 95394 16130 42541 47699 Face 95395 8977 47700 37678 Face 95396 8977 5150 47700 Face 95397 24245 47701 8925 Face 95398 24245 16563 47701 Face 95399 24999 47702 6741 Face 95400 24999 15197 47702 Face 95401 5504 47703 15190 Face 95402 5504 9906 47703 Face 95403 16924 47704 334 Face 95404 16924 12723 47704 Face 95405 20460 47705 34656 Face 95406 47706 38215 47705 Face 95407 20460 47706 47705 Face 95408 20460 38215 47706 Face 95409 1072 47707 16699 Face 95410 1072 37073 47707 Face 95411 11009 47708 36787 Face 95412 11009 24553 47708 Face 95413 7924 47709 13836 Face 95414 7924 30432 47709 Face 95415 28966 47710 33447 Face 95416 28966 13199 47710 Face 95417 10115 47711 24528 Face 95418 10115 16235 47711 Face 95419 31410 47712 41398 Face 95420 31410 17076 47712 Face 95421 28317 47713 16634 Face 95422 28317 36855 47713 Face 95423 23863 47714 2997 Face 95424 23863 21032 47714 Face 95425 12094 47715 40297 Face 95426 12094 2183 47715 Face 95427 20963 47716 39720 Face 95428 20963 265 47716 Face 95429 9462 47717 26611 Face 95430 9462 18003 47717 Face 95431 47719 47718 41003 Face 95432 47719 26954 47718 Face 95433 29238 47719 41003 Face 95434 29238 11834 47719 Face 95435 6760 47720 28877 Face 95436 6760 18042 47720 Face 95437 16701 47721 44435 Face 95438 16701 4852 47721 Face 95439 127 47722 9688 Face 95440 127 39638 47722 Face 95441 412 47723 18234 Face 95442 412 26955 47723 Face 95443 5309 47724 44941 Face 95444 5309 12963 47724 Face 95445 22160 47725 5695 Face 95446 22160 1434 47725 Face 95447 19932 47726 45232 Face 95448 19932 4627 47726 Face 95449 11986 47727 18779 Face 95450 11986 44430 47727 Face 95451 4863 47728 38784 Face 95452 4863 6539 47728 Face 95453 14264 47729 35402 Face 95454 14264 8684 47729 Face 95455 13768 47730 6165 Face 95456 13768 24088 47730 Face 95457 6000 47731 21767 Face 95458 6000 28539 47731 Face 95459 32182 47732 29463 Face 95460 32182 19090 47732 Face 95461 8907 47733 43171 Face 95462 8907 23566 47733 Face 95463 20465 47734 6273 Face 95464 20465 27008 47734 Face 95465 10222 47735 43219 Face 95466 10222 44900 47735 Face 95467 5055 47736 37403 Face 95468 5055 28656 47736 Face 95469 1092 47737 28459 Face 95470 1092 22828 47737 Face 95471 24665 47738 5765 Face 95472 24665 31553 47738 Face 95473 2003 47739 10817 Face 95474 2003 31755 47739 Face 95475 8604 47740 28482 Face 95476 8604 42061 47740 Face 95477 48087 47741 14360 Face 95478 10898 33659 47741 Face 95479 13773 47742 4861 Face 95480 13773 19670 47742 Face 95481 27635 47743 27634 Face 95482 27635 32224 47743 Face 95483 47745 47744 7931 Face 95484 16794 30093 47744 Face 95485 16794 47745 33538 Face 95486 16794 47744 47745 Face 95487 21854 47746 49897 Face 95488 21854 48526 47746 Face 95489 31356 47747 40609 Face 95490 31356 15878 47747 Face 95491 25741 47748 46139 Face 95492 25741 43727 47748 Face 95493 14079 47749 4673 Face 95494 14079 13806 47749 Face 95495 6932 47750 46815 Face 95496 6932 34140 47750 Face 95497 48982 47751 18490 Face 95498 29919 29600 47751 Face 95499 11635 47752 32013 Face 95500 11635 49941 47752 Face 95501 13226 47753 26828 Face 95502 13226 13227 47753 Face 95503 2441 47754 8385 Face 95504 2441 11588 47754 Face 95505 5229 47755 13858 Face 95506 5229 10760 47755 Face 95507 5950 47756 19739 Face 95508 5950 39689 47756 Face 95509 870 47757 11326 Face 95510 870 31537 47757 Face 95511 7160 47758 7158 Face 95512 7160 14100 47758 Face 95513 47760 47759 21635 Face 95514 1910 25548 47759 Face 95515 1910 47760 25546 Face 95516 1910 47759 47760 Face 95517 11466 47761 28958 Face 95518 11466 41548 47761 Face 95519 30 47762 9653 Face 95520 30 32716 47762 Face 95521 3940 47763 38062 Face 95522 3940 43203 47763 Face 95523 2801 47764 23648 Face 95524 2801 15759 47764 Face 95525 4108 47765 42515 Face 95526 4108 13332 47765 Face 95527 4017 47766 30957 Face 95528 4017 12693 47766 Face 95529 16092 47767 17983 Face 95530 16092 14352 47767 Face 95531 10029 47768 2194 Face 95532 10029 17636 47768 Face 95533 7528 47769 27295 Face 95534 7528 12879 47769 Face 95535 9986 47770 11429 Face 95536 9986 32036 47770 Face 95537 13406 47771 12789 Face 95538 13406 6749 47771 Face 95539 9490 47772 23925 Face 95540 9490 10981 47772 Face 95541 18826 47773 36439 Face 95542 18826 46342 47773 Face 95543 5276 47774 38272 Face 95544 5276 9034 47774 Face 95545 9679 47775 2789 Face 95546 9679 20833 47775 Face 95547 39540 47776 268 Face 95548 39540 25551 47776 Face 95549 10403 47777 33074 Face 95550 10403 38172 47777 Face 95551 47779 47778 29213 Face 95552 1204 45076 47778 Face 95553 1204 47779 7187 Face 95554 1204 47778 47779 Face 95555 2420 47780 35451 Face 95556 2420 17143 47780 Face 95557 1415 47781 18615 Face 95558 1415 39878 47781 Face 95559 30803 47782 338 Face 95560 30803 5397 47782 Face 95561 15831 47783 23729 Face 95562 15831 46026 47783 Face 95563 15831 47784 24517 Face 95564 15831 23729 47784 Face 95565 1936 47785 21440 Face 95566 1936 48400 47785 Face 95567 6434 47786 26050 Face 95568 47787 21330 47786 Face 95569 6434 47787 47786 Face 95570 6434 18382 47787 Face 95571 4827 47788 44584 Face 95572 4827 20798 47788 Face 95573 10902 47789 5820 Face 95574 10902 3276 47789 Face 95575 2575 47790 43675 Face 95576 2575 27916 47790 Face 95577 21434 47791 1152 Face 95578 21434 32921 47791 Face 95579 17120 47792 22719 Face 95580 17120 24371 47792 Face 95581 15163 47793 15035 Face 95582 15163 22778 47793 Face 95583 34300 47794 6059 Face 95584 34300 7806 47794 Face 95585 9265 47795 30683 Face 95586 9265 30429 47795 Face 95587 6928 47796 7651 Face 95588 6928 31932 47796 Face 95589 10777 47797 3908 Face 95590 10777 40981 47797 Face 95591 9321 47798 37496 Face 95592 9321 36114 47798 Face 95593 14899 47799 22137 Face 95594 14899 30213 47799 Face 95595 6614 47800 44437 Face 95596 6614 40357 47800 Face 95597 9996 47801 41930 Face 95598 9996 18441 47801 Face 95599 32119 47802 17594 Face 95600 32119 3146 47802 Face 95601 22839 47803 13914 Face 95602 22839 42805 47803 Face 95603 36935 47804 20999 Face 95604 36935 35447 47804 Face 95605 17424 47805 1264 Face 95606 17424 11662 47805 Face 95607 8167 47806 41617 Face 95608 8167 25149 47806 Face 95609 13683 47807 44292 Face 95610 13683 18923 47807 Face 95611 6497 47808 31469 Face 95612 6497 1284 47808 Face 95613 26416 47809 23623 Face 95614 26416 41789 47809 Face 95615 23887 47810 32474 Face 95616 23887 30439 47810 Face 95617 8799 47811 37459 Face 95618 8799 10080 47811 Face 95619 24367 47812 28734 Face 95620 47813 39535 47812 Face 95621 24367 47813 47812 Face 95622 24367 11013 47813 Face 95623 1638 47814 17597 Face 95624 1638 28697 47814 Face 95625 15342 47815 24069 Face 95626 15342 12117 47815 Face 95627 368 47816 33606 Face 95628 368 13710 47816 Face 95629 20825 47817 32617 Face 95630 20825 2671 47817 Face 95631 7323 47818 13054 Face 95632 7323 37982 47818 Face 95633 29311 47819 11113 Face 95634 29311 23800 47819 Face 95635 9193 47820 34806 Face 95636 9193 39577 47820 Face 95637 5568 47821 30252 Face 95638 5568 43910 47821 Face 95639 22820 47822 37048 Face 95640 22820 14217 47822 Face 95641 12269 47823 29720 Face 95642 12269 39930 47823 Face 95643 14245 47824 46481 Face 95644 14245 23089 47824 Face 95645 27732 47825 43867 Face 95646 27732 42614 47825 Face 95647 33426 47826 33425 Face 95648 33426 16385 47826 Face 95649 34530 47827 7521 Face 95650 34530 13426 47827 Face 95651 22588 47828 12383 Face 95652 22588 8434 47828 Face 95653 39670 47829 23659 Face 95654 39670 21506 47829 Face 95655 8513 47830 46208 Face 95656 8513 39852 47830 Face 95657 34876 47831 34875 Face 95658 34876 36590 47831 Face 95659 13484 47832 42272 Face 95660 13484 47926 47832 Face 95661 14910 47833 14037 Face 95662 14910 28674 47833 Face 95663 20036 47834 3271 Face 95664 20036 38444 47834 Face 95665 39712 47835 39713 Face 95666 39712 26553 47835 Face 95667 36575 47836 13382 Face 95668 36575 5991 47836 Face 95669 23771 47837 43822 Face 95670 23771 24299 47837 Face 95671 8402 47838 47839 Face 95672 8402 38521 47838 Face 95673 12708 47839 47838 Face 95674 12708 18791 47839 Face 95675 3982 47840 24072 Face 95676 3982 38660 47840 Face 95677 12320 47841 45586 Face 95678 12320 36794 47841 Face 95679 10930 47842 35879 Face 95680 10930 36720 47842 Face 95681 23119 47843 19515 Face 95682 23119 8962 47843 Face 95683 8255 47844 43798 Face 95684 8255 8256 47844 Face 95685 11617 47845 28582 Face 95686 11617 5875 47845 Face 95687 9518 47846 24722 Face 95688 9518 6501 47846 Face 95689 8709 47847 33576 Face 95690 8709 40129 47847 Face 95691 17242 47848 2231 Face 95692 17242 36122 47848 Face 95693 36330 47849 31757 Face 95694 47850 12776 47849 Face 95695 36330 47850 47849 Face 95696 36330 21878 47850 Face 95697 20015 47851 33542 Face 95698 20015 6022 47851 Face 95699 25213 47852 12170 Face 95700 25213 15644 47852 Face 95701 22664 47853 2142 Face 95702 22664 15002 47853 Face 95703 43149 47854 34414 Face 95704 43149 11288 47854 Face 95705 757 47855 40747 Face 95706 757 27267 47855 Face 95707 14123 47856 27651 Face 95708 14123 35098 47856 Face 95709 30108 47857 42800 Face 95710 30108 15813 47857 Face 95711 17504 47858 5281 Face 95712 17504 30952 47858 Face 95713 19387 47859 39574 Face 95714 19387 12452 47859 Face 95715 2503 47860 12038 Face 95716 2503 36684 47860 Face 95717 24725 47861 11423 Face 95718 24725 43822 47861 Face 95719 3180 47862 34417 Face 95720 3180 48507 47862 Face 95721 7610 47863 17498 Face 95722 7610 10763 47863 Face 95723 235 47864 19404 Face 95724 235 16929 47864 Face 95725 48189 47865 30612 Face 95726 24765 22575 47865 Face 95727 25972 47866 29038 Face 95728 25972 41563 47866 Face 95729 6974 47867 31771 Face 95730 6974 31083 47867 Face 95731 10534 47868 24337 Face 95732 10534 25974 47868 Face 95733 16949 47869 33592 Face 95734 16949 41415 47869 Face 95735 8311 47870 41177 Face 95736 8311 43725 47870 Face 95737 32860 47871 14989 Face 95738 32860 22214 47871 Face 95739 37382 47872 49111 Face 95740 37382 14585 47872 Face 95741 30163 47873 8180 Face 95742 30163 20368 47873 Face 95743 27026 47874 1608 Face 95744 27026 35924 47874 Face 95745 16713 47875 29895 Face 95746 16713 32247 47875 Face 95747 2413 47876 18907 Face 95748 2413 43395 47876 Face 95749 17251 47877 28658 Face 95750 17251 7817 47877 Face 95751 26352 47878 45310 Face 95752 26352 40624 47878 Face 95753 12422 47879 1862 Face 95754 12422 27320 47879 Face 95755 14931 47880 1507 Face 95756 14931 14932 47880 Face 95757 7509 47881 30179 Face 95758 7509 17834 47881 Face 95759 8185 47882 26634 Face 95760 8185 35055 47882 Face 95761 187 47883 10948 Face 95762 187 14108 47883 Face 95763 5288 47884 41566 Face 95764 5288 16315 47884 Face 95765 10773 47885 27313 Face 95766 10773 39068 47885 Face 95767 8757 47886 20743 Face 95768 8757 26272 47886 Face 95769 13972 47887 29485 Face 95770 13972 39706 47887 Face 95771 25662 47888 36478 Face 95772 25662 20862 47888 Face 95773 1590 47889 10411 Face 95774 1590 22746 47889 Face 95775 27819 47890 721 Face 95776 27819 44823 47890 Face 95777 2350 47891 30548 Face 95778 47892 42082 47891 Face 95779 2350 47892 47891 Face 95780 2350 37213 47892 Face 95781 49564 47893 21292 Face 95782 6647 34924 47893 Face 95783 15657 47894 37783 Face 95784 15657 12496 47894 Face 95785 10193 47895 2115 Face 95786 10193 42777 47895 Face 95787 11536 47896 14653 Face 95788 11536 36237 47896 Face 95789 8272 47897 33552 Face 95790 8272 9194 47897 Face 95791 7089 47898 28568 Face 95792 7089 731 47898 Face 95793 9484 47899 6559 Face 95794 9484 32980 47899 Face 95795 13242 47900 39353 Face 95796 13242 12458 47900 Face 95797 47997 47901 40848 Face 95798 14459 6135 47901 Face 95799 3809 47902 36331 Face 95800 47903 47620 47902 Face 95801 3809 47903 47902 Face 95802 47904 47620 47903 Face 95803 3809 47904 47903 Face 95804 3809 28765 47904 Face 95805 13137 47905 26171 Face 95806 13137 21043 47905 Face 95807 17284 47906 10955 Face 95808 17284 11499 47906 Face 95809 25276 47907 31275 Face 95810 25276 18638 47907 Face 95811 17978 47908 29495 Face 95812 17978 42445 47908 Face 95813 6142 47909 31824 Face 95814 6142 33297 47909 Face 95815 28389 47910 24903 Face 95816 28389 42377 47910 Face 95817 1780 47911 48061 Face 95818 1780 5273 47911 Face 95819 21757 47912 47215 Face 95820 21757 39832 47912 Face 95821 2645 47913 15587 Face 95822 2645 32620 47913 Face 95823 21751 47914 39244 Face 95824 21751 6121 47914 Face 95825 29900 47915 33063 Face 95826 47916 7031 47915 Face 95827 29900 47916 47915 Face 95828 29900 6661 47916 Face 95829 12153 47917 36187 Face 95830 49284 26157 47917 Face 95831 134 47918 34027 Face 95832 134 40509 47918 Face 95833 6591 47919 18556 Face 95834 6591 29317 47919 Face 95835 42330 47920 14286 Face 95836 42330 18253 47920 Face 95837 47922 47921 7497 Face 95838 12125 1223 47921 Face 95839 12125 47922 30668 Face 95840 12125 47921 47922 Face 95841 6998 47923 2299 Face 95842 6998 29103 47923 Face 95843 4475 47924 40878 Face 95844 4475 20675 47924 Face 95845 18537 47925 45986 Face 95846 18537 46515 47925 Face 95847 14971 47926 43877 Face 95848 14971 47832 47926 Face 95849 8207 47927 45362 Face 95850 8207 17597 47927 Face 95851 5354 47928 45433 Face 95852 5354 31319 47928 Face 95853 1683 47929 45147 Face 95854 1683 26373 47929 Face 95855 21912 47930 9057 Face 95856 21912 15439 47930 Face 95857 22488 47931 14582 Face 95858 22488 36724 47931 Face 95859 16696 47932 22690 Face 95860 16696 4600 47932 Face 95861 16509 47933 6111 Face 95862 16509 30896 47933 Face 95863 11377 47934 20732 Face 95864 11377 890 47934 Face 95865 4286 47935 14766 Face 95866 4286 22394 47935 Face 95867 13712 47936 9445 Face 95868 13712 47937 47936 Face 95869 30114 47937 13712 Face 95870 30114 20494 47937 Face 95871 8273 47938 22173 Face 95872 8273 8272 47938 Face 95873 18764 47939 10956 Face 95874 18764 18765 47939 Face 95875 3276 47940 30833 Face 95876 3276 15942 47940 Face 95877 21803 47941 889 Face 95878 21803 18438 47941 Face 95879 22650 47942 6319 Face 95880 22650 34635 47942 Face 95881 25822 47943 4399 Face 95882 25822 40027 47943 Face 95883 14726 47944 888 Face 95884 47945 36338 47944 Face 95885 14726 47945 47944 Face 95886 14726 37782 47945 Face 95887 35805 47946 35167 Face 95888 35805 25535 47946 Face 95889 5932 47947 34089 Face 95890 5932 10673 47947 Face 95891 116 47948 26379 Face 95892 116 14480 47948 Face 95893 5575 47949 18556 Face 95894 5575 36605 47949 Face 95895 16593 47950 8516 Face 95896 47951 19915 47950 Face 95897 16593 47951 47950 Face 95898 16593 10607 47951 Face 95899 24878 47952 24879 Face 95900 24878 9334 47952 Face 95901 12134 47953 26198 Face 95902 12134 36205 47953 Face 95903 10803 47954 24852 Face 95904 10803 42424 47954 Face 95905 17088 47955 28435 Face 95906 17088 39872 47955 Face 95907 456 47956 25386 Face 95908 456 19640 47956 Face 95909 11205 47957 27121 Face 95910 11205 26341 47957 Face 95911 28385 47958 30031 Face 95912 28385 42187 47958 Face 95913 31951 47959 10927 Face 95914 31951 42314 47959 Face 95915 6729 47960 10664 Face 95916 6729 18027 47960 Face 95917 460 47961 43097 Face 95918 460 9534 47961 Face 95919 18816 47962 19108 Face 95920 18816 1739 47962 Face 95921 13593 47963 28925 Face 95922 13593 31886 47963 Face 95923 47965 47964 21644 Face 95924 17529 1060 47964 Face 95925 17529 47965 13105 Face 95926 17529 47964 47965 Face 95927 33236 47966 32682 Face 95928 33236 29576 47966 Face 95929 8026 47967 1091 Face 95930 8026 34195 47967 Face 95931 10240 47968 8847 Face 95932 10240 4323 47968 Face 95933 11035 47969 18833 Face 95934 11035 41672 47969 Face 95935 47971 47970 11734 Face 95936 4001 38263 47970 Face 95937 4001 47971 36030 Face 95938 4001 47970 47971 Face 95939 3335 47972 9965 Face 95940 3335 37975 47972 Face 95941 49134 47973 3638 Face 95942 49135 18803 47973 Face 95943 14352 47974 33095 Face 95944 14352 32785 47974 Face 95945 8543 47975 17560 Face 95946 8543 29669 47975 Face 95947 26809 47976 870 Face 95948 26809 35771 47976 Face 95949 19703 47977 41144 Face 95950 19703 29454 47977 Face 95951 33952 47978 47163 Face 95952 33952 10230 47978 Face 95953 12186 47979 16283 Face 95954 12186 5374 47979 Face 95955 47981 47980 399 Face 95956 47981 34559 47980 Face 95957 15905 47981 47204 Face 95958 15905 49401 47981 Face 95959 49790 47982 18487 Face 95960 14441 4712 47982 Face 95961 12789 47983 40995 Face 95962 12789 37949 47983 Face 95963 9137 47984 35037 Face 95964 9137 35848 47984 Face 95965 7432 47985 3477 Face 95966 7432 27956 47985 Face 95967 14714 47986 21913 Face 95968 14714 42862 47986 Face 95969 9218 47987 18323 Face 95970 9218 656 47987 Face 95971 47989 47988 7504 Face 95972 15079 16008 47988 Face 95973 15079 47989 2389 Face 95974 15079 47988 47989 Face 95975 10501 47990 27709 Face 95976 10501 41191 47990 Face 95977 231 47991 29440 Face 95978 231 17208 47991 Face 95979 13622 47992 4162 Face 95980 13622 36430 47992 Face 95981 7326 47993 17130 Face 95982 7326 20084 47993 Face 95983 8736 47994 48177 Face 95984 8736 16302 47994 Face 95985 29473 47995 8577 Face 95986 29473 30304 47995 Face 95987 32997 47996 19707 Face 95988 32997 44492 47996 Face 95989 14459 47997 12060 Face 95990 14459 47901 47997 Face 95991 4092 47998 31921 Face 95992 4092 21976 47998 Face 95993 8939 47999 3107 Face 95994 8939 37581 47999 Face 95995 2926 48000 28294 Face 95996 2926 35497 48000 Face 95997 2136 48001 28463 Face 95998 2136 26477 48001 Face 95999 22600 48002 45493 Face 96000 22600 9556 48002 Face 96001 29380 48003 26607 Face 96002 29380 21670 48003 Face 96003 28324 48004 24613 Face 96004 28324 7190 48004 Face 96005 30197 48005 31321 Face 96006 30197 41151 48005 Face 96007 29243 48006 29242 Face 96008 29243 3253 48006 Face 96009 64 48007 29136 Face 96010 64 36375 48007 Face 96011 35722 48008 47713 Face 96012 35722 614 48008 Face 96013 3503 48009 18693 Face 96014 3503 28576 48009 Face 96015 4928 48010 12070 Face 96016 4928 35312 48010 Face 96017 8756 48011 496 Face 96018 8756 41847 48011 Face 96019 22058 48012 9455 Face 96020 22058 35716 48012 Face 96021 966 48013 24178 Face 96022 966 40778 48013 Face 96023 1551 48014 8294 Face 96024 1551 22588 48014 Face 96025 30297 48015 40580 Face 96026 30297 6945 48015 Face 96027 48017 48016 1690 Face 96028 10201 29631 48016 Face 96029 10201 48017 47685 Face 96030 10201 48016 48017 Face 96031 16273 48018 21002 Face 96032 16273 30147 48018 Face 96033 15786 48019 35682 Face 96034 15786 15245 48019 Face 96035 24742 48020 16916 Face 96036 24742 1196 48020 Face 96037 25451 48021 6031 Face 96038 25451 42017 48021 Face 96039 6279 48022 29184 Face 96040 6279 30299 48022 Face 96041 6639 48023 15718 Face 96042 6639 16883 48023 Face 96043 12997 48024 40894 Face 96044 12997 5150 48024 Face 96045 14120 48025 24327 Face 96046 14120 21282 48025 Face 96047 4895 48026 9247 Face 96048 4895 49487 48026 Face 96049 2443 48027 21221 Face 96050 2443 23614 48027 Face 96051 23328 48028 34770 Face 96052 23328 22038 48028 Face 96053 26825 48029 11078 Face 96054 26825 43543 48029 Face 96055 24857 48030 19944 Face 96056 24857 39809 48030 Face 96057 2526 48031 1278 Face 96058 2526 34804 48031 Face 96059 5045 48032 36497 Face 96060 5045 11653 48032 Face 96061 13932 48033 13795 Face 96062 13932 24692 48033 Face 96063 24318 48034 33906 Face 96064 24318 19970 48034 Face 96065 39085 48035 23003 Face 96066 39085 26832 48035 Face 96067 81 48036 22391 Face 96068 81 18133 48036 Face 96069 848 48037 47483 Face 96070 848 5174 48037 Face 96071 39635 48038 13959 Face 96072 39635 40970 48038 Face 96073 32438 48039 36559 Face 96074 32438 18165 48039 Face 96075 20442 48040 312 Face 96076 20442 3560 48040 Face 96077 4373 48041 18704 Face 96078 4373 38631 48041 Face 96079 7804 48042 1689 Face 96080 7804 14663 48042 Face 96081 16816 48043 41829 Face 96082 16816 46856 48043 Face 96083 37777 48044 27289 Face 96084 37777 3842 48044 Face 96085 11451 48045 28423 Face 96086 11451 9444 48045 Face 96087 1814 48046 39420 Face 96088 1814 32708 48046 Face 96089 9449 48047 39445 Face 96090 9449 43765 48047 Face 96091 2358 48048 39296 Face 96092 2358 47017 48048 Face 96093 22714 48049 10346 Face 96094 22714 30494 48049 Face 96095 21106 48050 18583 Face 96096 21106 12867 48050 Face 96097 7641 48051 22814 Face 96098 7641 40863 48051 Face 96099 32739 48052 15239 Face 96100 32739 3200 48052 Face 96101 11452 48053 36058 Face 96102 11452 47646 48053 Face 96103 9663 48054 3045 Face 96104 9663 22909 48054 Face 96105 9139 48055 34927 Face 96106 9139 44090 48055 Face 96107 9731 48056 25056 Face 96108 9731 21674 48056 Face 96109 10284 48057 29929 Face 96110 10284 39842 48057 Face 96111 25610 48058 20710 Face 96112 25610 39100 48058 Face 96113 7259 48059 14422 Face 96114 7259 531 48059 Face 96115 30579 48060 30664 Face 96116 30579 7135 48060 Face 96117 22752 48061 47911 Face 96118 22752 33367 48061 Face 96119 12908 48062 30682 Face 96120 48063 31607 48062 Face 96121 12908 48063 48062 Face 96122 12908 31831 48063 Face 96123 8160 48064 39147 Face 96124 8160 37875 48064 Face 96125 6511 48065 28042 Face 96126 6511 17538 48065 Face 96127 22143 48066 36476 Face 96128 22143 18168 48066 Face 96129 12981 48067 25895 Face 96130 48068 21792 48067 Face 96131 12981 48068 48067 Face 96132 12981 40493 48068 Face 96133 10107 48069 44651 Face 96134 10107 39425 48069 Face 96135 14618 48070 27545 Face 96136 14618 10030 48070 Face 96137 48072 48071 23251 Face 96138 10766 19257 48071 Face 96139 10766 48072 34508 Face 96140 10766 48071 48072 Face 96141 7688 48073 34306 Face 96142 7688 31793 48073 Face 96143 5926 48074 47670 Face 96144 5926 45834 48074 Face 96145 15600 48075 37665 Face 96146 15600 28600 48075 Face 96147 87 48076 44412 Face 96148 48077 18274 48076 Face 96149 87 48077 48076 Face 96150 87 22517 48077 Face 96151 28388 48078 28627 Face 96152 28388 1628 48078 Face 96153 31200 48079 23940 Face 96154 31200 8447 48079 Face 96155 16772 48080 26859 Face 96156 16772 17935 48080 Face 96157 27816 48081 11807 Face 96158 27816 33663 48081 Face 96159 17279 48082 504 Face 96160 17279 17504 48082 Face 96161 44606 48083 40544 Face 96162 44606 3912 48083 Face 96163 1077 48084 34468 Face 96164 1077 36135 48084 Face 96165 2620 48085 35162 Face 96166 2620 41292 48085 Face 96167 6723 48086 17966 Face 96168 6723 45709 48086 Face 96169 10898 48087 10897 Face 96170 10898 47741 48087 Face 96171 16199 48088 32067 Face 96172 16199 16198 48088 Face 96173 8720 48089 33126 Face 96174 8720 20717 48089 Face 96175 11732 48090 12700 Face 96176 11732 42366 48090 Face 96177 25848 48091 12669 Face 96178 25848 10315 48091 Face 96179 16806 48092 3009 Face 96180 16806 42680 48092 Face 96181 37478 48093 14209 Face 96182 37478 43765 48093 Face 96183 4115 48094 31518 Face 96184 4115 1353 48094 Face 96185 28969 48095 46347 Face 96186 28969 8094 48095 Face 96187 24822 48096 9470 Face 96188 24822 10861 48096 Face 96189 23726 48097 47764 Face 96190 23726 2200 48097 Face 96191 4168 48098 33593 Face 96192 4168 31156 48098 Face 96193 5550 48099 23328 Face 96194 5550 32619 48099 Face 96195 20315 48100 26182 Face 96196 20315 23888 48100 Face 96197 21665 48101 11919 Face 96198 21665 37243 48101 Face 96199 16781 48102 7276 Face 96200 16781 49501 48102 Face 96201 4623 48103 45794 Face 96202 4623 27352 48103 Face 96203 831 48104 47807 Face 96204 831 9827 48104 Face 96205 3642 48105 32164 Face 96206 3642 45665 48105 Face 96207 4752 48106 35777 Face 96208 4752 20111 48106 Face 96209 24557 48107 16914 Face 96210 24557 19590 48107 Face 96211 685 48108 25504 Face 96212 685 7094 48108 Face 96213 22757 48109 13329 Face 96214 22757 11416 48109 Face 96215 48111 48110 11284 Face 96216 11285 7094 48110 Face 96217 11285 48111 36321 Face 96218 11285 48110 48111 Face 96219 4270 48112 31247 Face 96220 4270 17596 48112 Face 96221 20096 48113 41039 Face 96222 20096 4392 48113 Face 96223 41668 48114 21880 Face 96224 41668 26544 48114 Face 96225 10907 48115 18441 Face 96226 10907 49747 48115 Face 96227 17301 48116 195 Face 96228 17301 25973 48116 Face 96229 14651 48117 1374 Face 96230 14651 45436 48117 Face 96231 10233 48118 22554 Face 96232 10233 640 48118 Face 96233 21716 48119 14637 Face 96234 21716 6268 48119 Face 96235 5341 48120 26568 Face 96236 5341 36621 48120 Face 96237 20767 48121 44012 Face 96238 20767 15837 48121 Face 96239 14617 48122 6710 Face 96240 14617 3119 48122 Face 96241 22200 48123 31007 Face 96242 22200 30256 48123 Face 96243 28308 48124 5160 Face 96244 28308 31042 48124 Face 96245 33250 48125 9349 Face 96246 33250 5036 48125 Face 96247 7956 48126 729 Face 96248 7956 37315 48126 Face 96249 13208 48127 45317 Face 96250 13208 28097 48127 Face 96251 30804 48128 5092 Face 96252 30804 45621 48128 Face 96253 22926 48129 4942 Face 96254 22926 5414 48129 Face 96255 4285 48130 33174 Face 96256 4285 46698 48130 Face 96257 10755 48131 31399 Face 96258 10755 4225 48131 Face 96259 24241 48132 20750 Face 96260 24241 36625 48132 Face 96261 1575 48133 45679 Face 96262 1575 46049 48133 Face 96263 26274 48134 913 Face 96264 26274 31513 48134 Face 96265 13778 48135 33004 Face 96266 13778 46267 48135 Face 96267 27050 48136 38282 Face 96268 27050 39249 48136 Face 96269 15111 48137 7173 Face 96270 15111 22854 48137 Face 96271 10304 48138 10797 Face 96272 10304 19667 48138 Face 96273 28126 48139 38983 Face 96274 28126 39953 48139 Face 96275 48141 48140 3210 Face 96276 48141 12390 48140 Face 96277 626 48141 3210 Face 96278 626 12390 48141 Face 96279 12656 48142 32415 Face 96280 12656 12251 48142 Face 96281 34247 48143 1357 Face 96282 34247 7687 48143 Face 96283 391 48144 32586 Face 96284 391 39713 48144 Face 96285 13302 48145 47759 Face 96286 13302 25373 48145 Face 96287 2917 48146 19024 Face 96288 2917 18856 48146 Face 96289 3989 48147 20821 Face 96290 3989 13576 48147 Face 96291 2353 48148 36416 Face 96292 2353 12874 48148 Face 96293 29902 48149 29901 Face 96294 29902 10250 48149 Face 96295 9196 48150 17752 Face 96296 9196 23763 48150 Face 96297 20245 48151 26256 Face 96298 20245 40139 48151 Face 96299 35065 48152 8327 Face 96300 35065 32229 48152 Face 96301 48154 48153 45894 Face 96302 1164 42316 48153 Face 96303 1164 48154 27683 Face 96304 1164 48153 48154 Face 96305 19314 48155 1782 Face 96306 19314 4148 48155 Face 96307 1016 48156 48951 Face 96308 1016 41092 48156 Face 96309 14811 48157 40832 Face 96310 14811 2995 48157 Face 96311 38436 48158 28912 Face 96312 38436 20699 48158 Face 96313 12466 48159 35362 Face 96314 12466 7607 48159 Face 96315 11792 48160 35115 Face 96316 11792 44510 48160 Face 96317 22743 48161 9748 Face 96318 48162 10664 48161 Face 96319 22743 48162 48161 Face 96320 22743 2284 48162 Face 96321 40991 48163 27890 Face 96322 40991 43175 48163 Face 96323 39258 48164 16254 Face 96324 39258 26294 48164 Face 96325 18562 48165 13687 Face 96326 18562 13686 48165 Face 96327 486 48166 44976 Face 96328 486 29083 48166 Face 96329 4429 48167 46514 Face 96330 4429 34126 48167 Face 96331 14287 48168 47276 Face 96332 14287 23816 48168 Face 96333 13593 48169 15936 Face 96334 13593 28925 48169 Face 96335 17637 48170 49669 Face 96336 17637 31115 48170 Face 96337 14403 48171 40189 Face 96338 14403 19854 48171 Face 96339 5336 48172 17696 Face 96340 5336 18090 48172 Face 96341 31837 48173 43353 Face 96342 31837 47289 48173 Face 96343 1219 48174 26821 Face 96344 1219 33085 48174 Face 96345 24441 48175 20397 Face 96346 24441 14975 48175 Face 96347 7072 48176 18612 Face 96348 7072 31486 48176 Face 96349 1116 48177 47994 Face 96350 48178 25069 48177 Face 96351 1116 48178 48177 Face 96352 1116 45685 48178 Face 96353 18794 48179 17102 Face 96354 18794 22052 48179 Face 96355 37849 48180 44164 Face 96356 37849 20308 48180 Face 96357 11594 48181 34929 Face 96358 11594 21185 48181 Face 96359 19363 48182 19362 Face 96360 19363 1101 48182 Face 96361 9101 48183 39544 Face 96362 9101 39114 48183 Face 96363 4337 48184 45539 Face 96364 4337 20919 48184 Face 96365 18791 48185 29232 Face 96366 18791 12708 48185 Face 96367 27643 48186 4754 Face 96368 27643 42887 48186 Face 96369 12339 48187 21079 Face 96370 12339 5746 48187 Face 96371 9498 48188 7047 Face 96372 9498 26042 48188 Face 96373 24765 48189 18142 Face 96374 24765 47865 48189 Face 96375 2077 48190 30930 Face 96376 2077 37823 48190 Face 96377 7471 48191 21065 Face 96378 7471 11068 48191 Face 96379 13140 48192 49131 Face 96380 13140 40325 48192 Face 96381 9789 48193 28365 Face 96382 9789 1823 48193 Face 96383 48285 48194 31598 Face 96384 16073 34659 48194 Face 96385 37013 48195 5462 Face 96386 37013 28595 48195 Face 96387 25480 48196 28806 Face 96388 25480 19858 48196 Face 96389 13509 48197 36861 Face 96390 13509 9824 48197 Face 96391 30927 48198 16809 Face 96392 30927 16808 48198 Face 96393 18361 48199 7857 Face 96394 18361 1536 48199 Face 96395 37505 48200 37504 Face 96396 37505 33398 48200 Face 96397 10404 48201 45615 Face 96398 10404 28446 48201 Face 96399 25666 48202 40879 Face 96400 25666 21574 48202 Face 96401 16206 48203 40378 Face 96402 16206 37925 48203 Face 96403 26638 48204 39581 Face 96404 26638 5495 48204 Face 96405 6426 48205 36307 Face 96406 6426 21959 48205 Face 96407 18511 48206 27577 Face 96408 18511 18512 48206 Face 96409 30654 48207 46818 Face 96410 30654 7373 48207 Face 96411 25487 48208 162 Face 96412 25487 7180 48208 Face 96413 13891 48209 22902 Face 96414 49424 29271 48209 Face 96415 7235 48210 34512 Face 96416 7235 24641 48210 Face 96417 17863 48211 41799 Face 96418 17863 24882 48211 Face 96419 14863 48212 4547 Face 96420 14863 47615 48212 Face 96421 19266 48213 34107 Face 96422 19266 4209 48213 Face 96423 32403 48214 25079 Face 96424 32403 8201 48214 Face 96425 559 48215 30754 Face 96426 559 21849 48215 Face 96427 8012 48216 44928 Face 96428 8012 26942 48216 Face 96429 1130 48217 26289 Face 96430 1130 35783 48217 Face 96431 5706 48218 15694 Face 96432 5706 10345 48218 Face 96433 19747 48219 33653 Face 96434 19747 3063 48219 Face 96435 372 48220 8144 Face 96436 372 47054 48220 Face 96437 14541 48221 31567 Face 96438 14541 44055 48221 Face 96439 13650 48222 44034 Face 96440 13650 46205 48222 Face 96441 1561 48223 27135 Face 96442 1561 3249 48223 Face 96443 618 48224 43080 Face 96444 618 29215 48224 Face 96445 582 48225 12337 Face 96446 582 40196 48225 Face 96447 26301 48226 1436 Face 96448 26301 42888 48226 Face 96449 10489 48227 17703 Face 96450 10489 24701 48227 Face 96451 28920 48228 44830 Face 96452 28920 47490 48228 Face 96453 18392 48229 30365 Face 96454 18392 26158 48229 Face 96455 26729 48230 33387 Face 96456 26729 19509 48230 Face 96457 1710 48231 35203 Face 96458 1710 10683 48231 Face 96459 2473 48232 9426 Face 96460 2473 7895 48232 Face 96461 17147 48233 36312 Face 96462 17147 17148 48233 Face 96463 26423 48234 38482 Face 96464 26423 38849 48234 Face 96465 18953 48235 1872 Face 96466 18953 8715 48235 Face 96467 10668 48236 4237 Face 96468 10668 26446 48236 Face 96469 13170 48237 40016 Face 96470 13170 31946 48237 Face 96471 7242 48238 35273 Face 96472 7242 26485 48238 Face 96473 4442 48239 30339 Face 96474 4442 26512 48239 Face 96475 16912 48240 29365 Face 96476 16912 16913 48240 Face 96477 11863 48241 34053 Face 96478 11863 16890 48241 Face 96479 1685 48242 42131 Face 96480 1685 37515 48242 Face 96481 32355 48243 23418 Face 96482 32355 19542 48243 Face 96483 1810 48244 32664 Face 96484 1810 17303 48244 Face 96485 26298 48245 12810 Face 96486 26298 6634 48245 Face 96487 17616 48246 30956 Face 96488 17616 18223 48246 Face 96489 15805 48247 42391 Face 96490 15805 34289 48247 Face 96491 24858 48248 1231 Face 96492 24858 16383 48248 Face 96493 11036 48249 36395 Face 96494 11036 13146 48249 Face 96495 12837 48250 46804 Face 96496 12837 19865 48250 Face 96497 20169 48251 38580 Face 96498 20169 29591 48251 Face 96499 40901 48252 9453 Face 96500 40901 7530 48252 Face 96501 24652 48253 46014 Face 96502 24652 25275 48253 Face 96503 37135 48254 46836 Face 96504 37135 29677 48254 Face 96505 10605 48255 10603 Face 96506 10605 33779 48255 Face 96507 7148 48256 19988 Face 96508 7148 18846 48256 Face 96509 2843 48257 37242 Face 96510 2843 46473 48257 Face 96511 29191 48258 1909 Face 96512 29191 42360 48258 Face 96513 5704 48259 41484 Face 96514 5704 31738 48259 Face 96515 31297 48260 766 Face 96516 31297 89 48260 Face 96517 17225 48261 27370 Face 96518 17225 1591 48261 Face 96519 31720 48262 17157 Face 96520 31720 15629 48262 Face 96521 19073 48263 30318 Face 96522 19073 26209 48263 Face 96523 26171 48264 19769 Face 96524 26171 47905 48264 Face 96525 26621 48265 44459 Face 96526 26621 14516 48265 Face 96527 14301 48266 10462 Face 96528 14301 1687 48266 Face 96529 18328 48267 25440 Face 96530 18328 2877 48267 Face 96531 7415 48268 15484 Face 96532 7415 24214 48268 Face 96533 24894 48269 28930 Face 96534 24894 33115 48269 Face 96535 24769 48270 37740 Face 96536 24769 36521 48270 Face 96537 14014 48271 15568 Face 96538 14014 38019 48271 Face 96539 35292 48272 25724 Face 96540 35292 42321 48272 Face 96541 7131 48273 18457 Face 96542 7131 16766 48273 Face 96543 22442 48274 29216 Face 96544 22442 73 48274 Face 96545 37597 48275 22621 Face 96546 37597 19522 48275 Face 96547 18258 48276 10446 Face 96548 18258 18259 48276 Face 96549 3083 48277 18410 Face 96550 3083 19701 48277 Face 96551 19003 48278 809 Face 96552 19003 43678 48278 Face 96553 6320 48279 48829 Face 96554 6320 9633 48279 Face 96555 32094 48280 45534 Face 96556 48281 1139 48280 Face 96557 32094 48281 48280 Face 96558 32094 9088 48281 Face 96559 8532 48282 31168 Face 96560 8532 40338 48282 Face 96561 9341 48283 3044 Face 96562 9341 42170 48283 Face 96563 8325 48284 42257 Face 96564 8325 35406 48284 Face 96565 16073 48285 9278 Face 96566 16073 48194 48285 Face 96567 7237 48286 44366 Face 96568 7237 19754 48286 Face 96569 9263 48287 3677 Face 96570 9263 10686 48287 Face 96571 31638 48288 38558 Face 96572 31638 20330 48288 Face 96573 15572 48289 44342 Face 96574 15572 27650 48289 Face 96575 18282 48290 14452 Face 96576 18282 4234 48290 Face 96577 1467 48291 39495 Face 96578 1467 20536 48291 Face 96579 16236 48292 25206 Face 96580 16236 19654 48292 Face 96581 16317 48293 47669 Face 96582 16317 33892 48293 Face 96583 25638 48294 43553 Face 96584 25638 25640 48294 Face 96585 19500 48295 27098 Face 96586 19500 20564 48295 Face 96587 39264 48296 16020 Face 96588 39264 11820 48296 Face 96589 18269 48297 5568 Face 96590 18269 43894 48297 Face 96591 6663 48298 37769 Face 96592 6663 9089 48298 Face 96593 40253 48299 3048 Face 96594 40253 8481 48299 Face 96595 3520 48300 28884 Face 96596 48301 3686 48300 Face 96597 3520 48301 48300 Face 96598 3520 43398 48301 Face 96599 15877 48302 36670 Face 96600 15877 45522 48302 Face 96601 6562 48303 6927 Face 96602 6562 15956 48303 Face 96603 12631 48304 40245 Face 96604 12631 32 48304 Face 96605 25656 48305 42793 Face 96606 25656 25342 48305 Face 96607 15923 48306 15924 Face 96608 15923 6977 48306 Face 96609 12009 48307 27734 Face 96610 12009 28562 48307 Face 96611 5571 48308 17016 Face 96612 5571 34855 48308 Face 96613 3868 48309 39856 Face 96614 3868 7906 48309 Face 96615 25814 48310 35091 Face 96616 25814 6775 48310 Face 96617 254 48311 16058 Face 96618 48312 4688 48311 Face 96619 254 48312 48311 Face 96620 254 38997 48312 Face 96621 10676 48313 36007 Face 96622 10676 24788 48313 Face 96623 21981 48314 6517 Face 96624 21981 1972 48314 Face 96625 18837 48315 46243 Face 96626 18837 44452 48315 Face 96627 36223 48316 32283 Face 96628 36223 10721 48316 Face 96629 29344 48317 38500 Face 96630 29344 47521 48317 Face 96631 17791 48318 25785 Face 96632 17791 11248 48318 Face 96633 38732 48319 464 Face 96634 38732 9106 48319 Face 96635 16030 48320 19977 Face 96636 16030 40011 48320 Face 96637 14073 48321 19339 Face 96638 14073 19309 48321 Face 96639 38606 48322 23759 Face 96640 38606 15809 48322 Face 96641 14657 48323 29442 Face 96642 14657 47689 48323 Face 96643 20167 48324 33615 Face 96644 20167 35807 48324 Face 96645 15396 48325 24825 Face 96646 15396 43170 48325 Face 96647 11223 48326 36049 Face 96648 11223 22097 48326 Face 96649 16168 48327 38345 Face 96650 16168 27617 48327 Face 96651 38010 48328 46902 Face 96652 38010 24328 48328 Face 96653 29692 48329 40942 Face 96654 29692 1761 48329 Face 96655 22934 48330 469 Face 96656 22934 9886 48330 Face 96657 2865 48331 40193 Face 96658 2865 44277 48331 Face 96659 20213 48332 4789 Face 96660 20213 12632 48332 Face 96661 12671 48333 33757 Face 96662 12671 30062 48333 Face 96663 24032 48334 44882 Face 96664 24032 22884 48334 Face 96665 36505 48335 3352 Face 96666 36505 36504 48335 Face 96667 28398 48336 22669 Face 96668 28398 8257 48336 Face 96669 10520 48337 18665 Face 96670 10520 26836 48337 Face 96671 2887 48338 8732 Face 96672 2887 45936 48338 Face 96673 20610 48339 7935 Face 96674 20610 43270 48339 Face 96675 25415 48340 13734 Face 96676 25415 3849 48340 Face 96677 12205 48341 19402 Face 96678 12205 23918 48341 Face 96679 24992 48342 798 Face 96680 24992 35815 48342 Face 96681 13218 48343 30739 Face 96682 13218 11636 48343 Face 96683 5666 48344 23804 Face 96684 5666 43055 48344 Face 96685 8480 48345 19798 Face 96686 8480 34898 48345 Face 96687 27369 48346 36281 Face 96688 27369 10147 48346 Face 96689 15167 48347 3103 Face 96690 15167 24147 48347 Face 96691 48349 48348 35995 Face 96692 21590 44385 48348 Face 96693 21590 48349 42569 Face 96694 21590 48348 48349 Face 96695 48351 48350 45306 Face 96696 15618 31817 48350 Face 96697 15618 48351 9717 Face 96698 15618 48350 48351 Face 96699 12581 48352 29199 Face 96700 12581 16601 48352 Face 96701 6839 48353 29200 Face 96702 6839 1299 48353 Face 96703 38095 48354 603 Face 96704 38095 21077 48354 Face 96705 19823 48355 25679 Face 96706 19823 19374 48355 Face 96707 34964 48356 5066 Face 96708 34964 8868 48356 Face 96709 14565 48357 46294 Face 96710 14565 671 48357 Face 96711 8852 48358 31707 Face 96712 8852 34162 48358 Face 96713 19294 48359 17591 Face 96714 19294 16882 48359 Face 96715 6362 48360 36060 Face 96716 6362 10014 48360 Face 96717 8360 48361 25895 Face 96718 8360 20237 48361 Face 96719 48364 48362 36659 Face 96720 48363 15661 48362 Face 96721 48364 48363 48362 Face 96722 48364 16769 48363 Face 96723 2103 48364 18378 Face 96724 2103 16769 48364 Face 96725 12041 48366 31984 Face 96726 12041 32440 48366 Face 96727 48365 48366 32440 Face 96728 48365 43038 48366 Face 96729 13945 48367 28729 Face 96730 13945 19790 48367 Face 96731 7977 48368 1846 Face 96732 7977 20444 48368 Face 96733 11667 48369 45896 Face 96734 11667 30286 48369 Face 96735 22770 48370 30509 Face 96736 22770 45910 48370 Face 96737 19750 48371 2729 Face 96738 19750 34799 48371 Face 96739 152 48372 7712 Face 96740 152 21942 48372 Face 96741 27100 48373 3034 Face 96742 27100 27098 48373 Face 96743 13260 48374 39178 Face 96744 13260 3990 48374 Face 96745 2435 48375 32110 Face 96746 2435 37693 48375 Face 96747 9241 48376 35269 Face 96748 9241 32205 48376 Face 96749 13964 48377 33147 Face 96750 13964 32641 48377 Face 96751 26856 48378 21308 Face 96752 26856 29197 48378 Face 96753 21454 48379 10321 Face 96754 21454 4449 48379 Face 96755 11872 48380 19820 Face 96756 11872 31996 48380 Face 96757 48382 48381 19337 Face 96758 14839 14973 48381 Face 96759 48608 48382 35225 Face 96760 14839 48381 48382 Face 96761 9284 48383 5102 Face 96762 9284 26194 48383 Face 96763 19978 48384 48320 Face 96764 19978 40366 48384 Face 96765 48386 48385 32386 Face 96766 993 38835 48385 Face 96767 993 48386 43629 Face 96768 993 48385 48386 Face 96769 28255 48387 28256 Face 96770 28255 4413 48387 Face 96771 8949 48388 36148 Face 96772 8949 20158 48388 Face 96773 22267 48389 2342 Face 96774 22267 18615 48389 Face 96775 48391 48390 37292 Face 96776 10793 2526 48390 Face 96777 10793 48391 38144 Face 96778 10793 48390 48391 Face 96779 36269 48392 20927 Face 96780 36269 329 48392 Face 96781 5533 48393 21442 Face 96782 5533 45906 48393 Face 96783 2813 48394 21650 Face 96784 2813 34731 48394 Face 96785 5169 48395 40403 Face 96786 5169 33561 48395 Face 96787 28808 48396 22680 Face 96788 28808 33613 48396 Face 96789 2436 48397 23207 Face 96790 2436 22873 48397 Face 96791 7416 48398 32291 Face 96792 7416 35267 48398 Face 96793 15025 48399 4775 Face 96794 15025 8643 48399 Face 96795 10924 48400 37576 Face 96796 10924 47785 48400 Face 96797 4894 48401 44086 Face 96798 4894 42826 48401 Face 96799 19212 48402 6365 Face 96800 19212 38971 48402 Face 96801 4686 48403 834 Face 96802 4686 19610 48403 Face 96803 22706 48404 6889 Face 96804 22706 12582 48404 Face 96805 6858 48405 14613 Face 96806 6858 22430 48405 Face 96807 4648 48406 3972 Face 96808 4648 6395 48406 Face 96809 22617 48407 31593 Face 96810 22617 11351 48407 Face 96811 6376 48408 25071 Face 96812 6376 7461 48408 Face 96813 6978 48409 37162 Face 96814 6978 26273 48409 Face 96815 15802 48410 30107 Face 96816 15802 47067 48410 Face 96817 33910 48411 27314 Face 96818 33910 14772 48411 Face 96819 28748 48412 11165 Face 96820 28748 19178 48412 Face 96821 689 48413 23477 Face 96822 689 13096 48413 Face 96823 21359 48414 16083 Face 96824 21359 17891 48414 Face 96825 4696 48415 29676 Face 96826 4696 22500 48415 Face 96827 22747 48416 41640 Face 96828 22747 22746 48416 Face 96829 14539 48417 29702 Face 96830 14539 30766 48417 Face 96831 12390 48418 32208 Face 96832 12390 28182 48418 Face 96833 4964 48419 8958 Face 96834 4964 27886 48419 Face 96835 5992 48420 32870 Face 96836 5992 40465 48420 Face 96837 30335 48421 40241 Face 96838 30335 26919 48421 Face 96839 1317 48422 28796 Face 96840 1317 22878 48422 Face 96841 2452 48423 39941 Face 96842 2452 12045 48423 Face 96843 19156 48424 19942 Face 96844 19156 11228 48424 Face 96845 33200 48425 20307 Face 96846 33200 7266 48425 Face 96847 25401 48426 42717 Face 96848 25401 417 48426 Face 96849 10422 48427 27443 Face 96850 49453 44192 48427 Face 96851 13184 48428 7438 Face 96852 13184 32692 48428 Face 96853 13706 48429 27128 Face 96854 13706 5973 48429 Face 96855 32246 48430 15491 Face 96856 32246 6234 48430 Face 96857 7910 48431 29741 Face 96858 7910 35149 48431 Face 96859 11011 48432 10374 Face 96860 11011 49143 48432 Face 96861 1246 48433 23137 Face 96862 1246 30942 48433 Face 96863 7371 48434 15112 Face 96864 7371 42137 48434 Face 96865 23160 48435 27933 Face 96866 23160 14968 48435 Face 96867 48437 48436 9191 Face 96868 12127 44373 48436 Face 96869 12127 48437 44734 Face 96870 12127 48436 48437 Face 96871 29890 48438 45307 Face 96872 29890 18706 48438 Face 96873 22668 48439 5199 Face 96874 22668 4471 48439 Face 96875 23287 48440 7475 Face 96876 23287 42270 48440 Face 96877 20813 48441 35397 Face 96878 20813 31845 48441 Face 96879 8589 48442 9712 Face 96880 8589 5488 48442 Face 96881 20336 48443 2759 Face 96882 20336 39930 48443 Face 96883 10929 48444 29706 Face 96884 10929 24649 48444 Face 96885 10237 48445 36886 Face 96886 10237 29739 48445 Face 96887 12495 48446 24586 Face 96888 12495 42 48446 Face 96889 33639 48447 7778 Face 96890 48448 10470 48447 Face 96891 33639 48448 48447 Face 96892 33639 38764 48448 Face 96893 14850 48449 43625 Face 96894 14850 2195 48449 Face 96895 37785 48450 37786 Face 96896 37785 45 48450 Face 96897 5187 48451 5186 Face 96898 5187 47687 48451 Face 96899 16959 48452 26378 Face 96900 16959 8559 48452 Face 96901 43506 48453 2914 Face 96902 49844 23405 48453 Face 96903 26164 48454 1734 Face 96904 26164 12112 48454 Face 96905 15533 48455 42389 Face 96906 15533 28335 48455 Face 96907 7820 48456 36038 Face 96908 7820 37379 48456 Face 96909 21689 48457 16244 Face 96910 21689 24201 48457 Face 96911 3160 48458 30054 Face 96912 3160 6804 48458 Face 96913 48751 48459 16379 Face 96914 12135 24516 48459 Face 96915 6251 48460 29449 Face 96916 48461 47247 48460 Face 96917 6251 48461 48460 Face 96918 6251 32301 48461 Face 96919 36143 48462 43365 Face 96920 36143 5357 48462 Face 96921 7938 48463 43861 Face 96922 7938 6496 48463 Face 96923 12610 48464 4946 Face 96924 12610 16803 48464 Face 96925 25365 48465 31085 Face 96926 25365 25364 48465 Face 96927 11365 48466 24796 Face 96928 11365 34044 48466 Face 96929 23246 48467 27290 Face 96930 23246 40962 48467 Face 96931 32292 48468 18439 Face 96932 32292 21803 48468 Face 96933 15697 48469 33303 Face 96934 15697 39601 48469 Face 96935 35525 48470 44460 Face 96936 35525 2576 48470 Face 96937 4376 48471 30921 Face 96938 4376 14869 48471 Face 96939 30750 48472 14380 Face 96940 30750 49333 48472 Face 96941 414 48473 19612 Face 96942 414 35357 48473 Face 96943 6072 48474 23135 Face 96944 6072 26210 48474 Face 96945 22602 48475 24224 Face 96946 22602 36797 48475 Face 96947 33110 48476 12973 Face 96948 33110 21866 48476 Face 96949 29336 48477 12061 Face 96950 29336 23181 48477 Face 96951 20057 48478 40742 Face 96952 20057 29508 48478 Face 96953 19199 48479 5703 Face 96954 19199 37428 48479 Face 96955 15821 48480 8997 Face 96956 15821 35286 48480 Face 96957 2035 48481 25774 Face 96958 2035 45081 48481 Face 96959 15986 48482 26053 Face 96960 15986 22966 48482 Face 96961 24325 48483 13722 Face 96962 49856 4160 48483 Face 96963 19951 48484 40600 Face 96964 19951 3097 48484 Face 96965 27279 48485 36382 Face 96966 27279 9989 48485 Face 96967 12073 48486 46046 Face 96968 12073 33011 48486 Face 96969 33138 48487 4013 Face 96970 33138 22899 48487 Face 96971 1426 48488 37046 Face 96972 1426 16824 48488 Face 96973 2942 48489 10246 Face 96974 2942 43962 48489 Face 96975 44196 48490 29464 Face 96976 44196 19130 48490 Face 96977 14381 48491 41493 Face 96978 14381 31463 48491 Face 96979 21502 48492 15840 Face 96980 21502 21827 48492 Face 96981 11126 48493 11125 Face 96982 11126 23775 48493 Face 96983 25938 48494 31351 Face 96984 25938 37408 48494 Face 96985 20451 48495 47690 Face 96986 20451 29934 48495 Face 96987 24503 48496 39545 Face 96988 24503 249 48496 Face 96989 32360 48497 16357 Face 96990 32360 38715 48497 Face 96991 14458 48498 43414 Face 96992 14458 8151 48498 Face 96993 17548 48499 21458 Face 96994 17548 3 48499 Face 96995 4543 48500 39117 Face 96996 4543 31264 48500 Face 96997 36216 48501 15622 Face 96998 36216 3838 48501 Face 96999 2793 48502 43375 Face 97000 2793 34159 48502 Face 97001 6777 48503 14206 Face 97002 6777 34355 48503 Face 97003 4845 48504 19152 Face 97004 4845 42307 48504 Face 97005 9727 48505 7575 Face 97006 9727 9186 48505 Face 97007 9153 48506 41124 Face 97008 9153 7633 48506 Face 97009 19825 48507 22539 Face 97010 19825 47862 48507 Face 97011 13565 48508 24270 Face 97012 13565 14026 48508 Face 97013 48508 48509 32643 Face 97014 48508 14026 48509 Face 97015 15967 48510 746 Face 97016 15967 8295 48510 Face 97017 21070 48511 44831 Face 97018 21070 33054 48511 Face 97019 48513 48512 3313 Face 97020 17476 43190 48512 Face 97021 17476 48513 18045 Face 97022 17476 48512 48513 Face 97023 22181 48514 10216 Face 97024 22181 41275 48514 Face 97025 17001 48515 31448 Face 97026 17001 29678 48515 Face 97027 21039 48516 9755 Face 97028 21039 47186 48516 Face 97029 2574 48517 38773 Face 97030 2574 17356 48517 Face 97031 36168 48518 2160 Face 97032 36168 5140 48518 Face 97033 3478 48519 32611 Face 97034 3478 32927 48519 Face 97035 6751 48520 30643 Face 97036 6751 23216 48520 Face 97037 339 48521 40071 Face 97038 339 17787 48521 Face 97039 12348 48522 36656 Face 97040 12348 40935 48522 Face 97041 30061 48523 21861 Face 97042 30061 30060 48523 Face 97043 18435 48524 47341 Face 97044 18435 791 48524 Face 97045 12574 48525 34197 Face 97046 12574 13533 48525 Face 97047 2250 48526 21854 Face 97048 2250 38577 48526 Face 97049 38578 48527 34499 Face 97050 38578 48526 48527 Face 97051 16598 48528 8428 Face 97052 16598 43809 48528 Face 97053 28656 48529 38202 Face 97054 28656 28655 48529 Face 97055 17777 48530 38939 Face 97056 17777 23760 48530 Face 97057 18999 48531 19125 Face 97058 18999 23087 48531 Face 97059 11095 48532 23048 Face 97060 11095 25762 48532 Face 97061 37645 48533 10220 Face 97062 37645 45567 48533 Face 97063 17452 48534 29224 Face 97064 17452 2864 48534 Face 97065 10193 48535 21004 Face 97066 10193 17357 48535 Face 97067 4905 48536 37432 Face 97068 4905 30064 48536 Face 97069 6856 48537 29148 Face 97070 6856 13253 48537 Face 97071 2455 48538 30598 Face 97072 2455 17780 48538 Face 97073 31075 48539 45121 Face 97074 31075 24815 48539 Face 97075 14053 48540 14052 Face 97076 14053 22758 48540 Face 97077 48542 48541 4638 Face 97078 44497 21740 48541 Face 97079 44497 48542 11424 Face 97080 44497 48541 48542 Face 97081 34946 48543 25676 Face 97082 34946 7567 48543 Face 97083 16146 48544 38911 Face 97084 16146 35507 48544 Face 97085 20522 48545 47270 Face 97086 20522 30474 48545 Face 97087 32177 48546 4236 Face 97088 32177 5769 48546 Face 97089 5752 48547 37474 Face 97090 5752 40459 48547 Face 97091 21290 48548 46271 Face 97092 21290 21725 48548 Face 97093 2285 48549 15638 Face 97094 2285 29823 48549 Face 97095 25496 48550 5925 Face 97096 25496 5145 48550 Face 97097 2151 48551 30028 Face 97098 2151 8390 48551 Face 97099 17107 48552 24207 Face 97100 17107 14200 48552 Face 97101 4370 48553 16213 Face 97102 4370 36442 48553 Face 97103 16274 48554 45047 Face 97104 16274 4776 48554 Face 97105 48556 48555 20456 Face 97106 8809 42835 48555 Face 97107 8809 48556 33550 Face 97108 8809 48555 48556 Face 97109 13002 48557 5632 Face 97110 13002 46095 48557 Face 97111 13388 48558 14339 Face 97112 13388 21778 48558 Face 97113 11603 48559 39999 Face 97114 11603 28380 48559 Face 97115 34421 48560 8161 Face 97116 34421 44300 48560 Face 97117 15517 48561 46845 Face 97118 15517 652 48561 Face 97119 10881 48562 47236 Face 97120 10881 46558 48562 Face 97121 48564 48563 13771 Face 97122 24734 8701 48563 Face 97123 24734 48564 40820 Face 97124 24734 48563 48564 Face 97125 17768 48565 46320 Face 97126 17768 1743 48565 Face 97127 17164 48566 556 Face 97128 17164 13994 48566 Face 97129 15567 48567 39939 Face 97130 15567 18115 48567 Face 97131 26100 48568 9445 Face 97132 26100 37478 48568 Face 97133 22156 48569 43855 Face 97134 22156 2483 48569 Face 97135 18355 48570 45806 Face 97136 18355 31924 48570 Face 97137 14596 48571 20623 Face 97138 14596 1566 48571 Face 97139 16169 48572 39624 Face 97140 16169 24243 48572 Face 97141 10852 48573 14817 Face 97142 10852 26490 48573 Face 97143 1466 48574 29291 Face 97144 1466 21552 48574 Face 97145 2572 48575 20247 Face 97146 2572 43677 48575 Face 97147 28635 48576 5073 Face 97148 28635 35209 48576 Face 97149 31032 48577 31948 Face 97150 31032 16594 48577 Face 97151 12446 48578 33705 Face 97152 12446 44120 48578 Face 97153 4479 48579 35106 Face 97154 4479 8092 48579 Face 97155 22700 48580 11805 Face 97156 22700 28836 48580 Face 97157 6886 48581 44996 Face 97158 6886 29509 48581 Face 97159 357 48582 13312 Face 97160 357 17354 48582 Face 97161 31723 48583 31724 Face 97162 31723 31722 48583 Face 97163 36480 48584 4091 Face 97164 36480 37786 48584 Face 97165 20372 48585 5846 Face 97166 20372 18733 48585 Face 97167 14623 48586 3911 Face 97168 14623 29663 48586 Face 97169 29332 48587 10889 Face 97170 29332 27802 48587 Face 97171 29346 48588 17909 Face 97172 48589 37946 48588 Face 97173 29346 48589 48588 Face 97174 29346 41177 48589 Face 97175 17689 48590 18172 Face 97176 17689 38249 48590 Face 97177 34793 48591 5812 Face 97178 34793 24213 48591 Face 97179 29157 48592 29156 Face 97180 29157 46362 48592 Face 97181 18089 48593 28737 Face 97182 18089 44147 48593 Face 97183 1286 48594 25774 Face 97184 1286 13059 48594 Face 97185 12893 48595 46933 Face 97186 12893 19718 48595 Face 97187 237 48596 22744 Face 97188 237 17591 48596 Face 97189 16477 48597 41019 Face 97190 16477 23713 48597 Face 97191 17492 48598 19661 Face 97192 17492 30985 48598 Face 97193 914 48599 37794 Face 97194 914 34071 48599 Face 97195 48601 48600 14782 Face 97196 453 3449 48600 Face 97197 453 48601 22476 Face 97198 453 48600 48601 Face 97199 2464 48602 12397 Face 97200 2464 38488 48602 Face 97201 23979 48603 9585 Face 97202 23979 89 48603 Face 97203 7753 48604 4521 Face 97204 7753 28099 48604 Face 97205 19844 48605 37654 Face 97206 19844 49030 48605 Face 97207 35417 48606 40448 Face 97208 35417 6813 48606 Face 97209 8397 48607 44789 Face 97210 8397 23996 48607 Face 97211 14839 48608 9574 Face 97212 14839 48382 48608 Face 97213 6608 48609 33989 Face 97214 6608 27927 48609 Face 97215 8916 48610 3241 Face 97216 8916 1180 48610 Face 97217 11105 48611 21158 Face 97218 11105 34938 48611 Face 97219 11173 48612 29543 Face 97220 48613 30451 48612 Face 97221 11173 48613 48612 Face 97222 11173 2975 48613 Face 97223 19732 48614 6622 Face 97224 48615 36844 48614 Face 97225 19732 48615 48614 Face 97226 19732 6622 48615 Face 97227 5902 48616 37361 Face 97228 5902 22125 48616 Face 97229 24721 48617 9428 Face 97230 24721 37542 48617 Face 97231 29863 48618 37140 Face 97232 29863 13707 48618 Face 97233 1817 48619 32089 Face 97234 1817 18507 48619 Face 97235 30325 48620 4604 Face 97236 30325 5310 48620 Face 97237 3732 48621 38868 Face 97238 3732 25197 48621 Face 97239 3732 48622 25197 Face 97240 3732 33685 48622 Face 97241 29928 48623 21790 Face 97242 29928 38155 48623 Face 97243 5340 48624 10124 Face 97244 5340 21225 48624 Face 97245 23729 48625 8935 Face 97246 23729 47783 48625 Face 97247 6626 48626 42723 Face 97248 6626 21583 48626 Face 97249 25959 48627 7095 Face 97250 25959 45656 48627 Face 97251 49189 48628 34675 Face 97252 1480 127 48628 Face 97253 3026 48629 13732 Face 97254 3026 26203 48629 Face 97255 22188 48630 39525 Face 97256 22188 23797 48630 Face 97257 14251 48631 3069 Face 97258 49964 10526 48631 Face 97259 9289 48632 27718 Face 97260 9289 26655 48632 Face 97261 28505 48633 16348 Face 97262 28505 28506 48633 Face 97263 18486 48634 3949 Face 97264 18486 11219 48634 Face 97265 14748 48635 23909 Face 97266 14748 28896 48635 Face 97267 11382 48636 39671 Face 97268 11382 44411 48636 Face 97269 8239 48637 33314 Face 97270 8239 31743 48637 Face 97271 3425 48638 34304 Face 97272 3425 23363 48638 Face 97273 48640 48639 42587 Face 97274 48640 27254 48639 Face 97275 14600 48640 42587 Face 97276 14600 31706 48640 Face 97277 7422 48641 10503 Face 97278 48706 25289 48641 Face 97279 16722 48642 7223 Face 97280 16722 30316 48642 Face 97281 3074 48643 20260 Face 97282 3074 18131 48643 Face 97283 48645 48644 8175 Face 97284 32546 17648 48644 Face 97285 32546 48645 42300 Face 97286 32546 48644 48645 Face 97287 4290 48646 34452 Face 97288 4290 18607 48646 Face 97289 4819 48647 25826 Face 97290 4819 32430 48647 Face 97291 2997 48648 31354 Face 97292 2997 1084 48648 Face 97293 10806 48649 17608 Face 97294 10806 34811 48649 Face 97295 30352 48650 13521 Face 97296 30352 21011 48650 Face 97297 28017 48651 4222 Face 97298 28017 37515 48651 Face 97299 2134 48652 24643 Face 97300 2134 19414 48652 Face 97301 16829 48653 41729 Face 97302 16829 8370 48653 Face 97303 20435 48654 16027 Face 97304 20435 31312 48654 Face 97305 48656 48655 40415 Face 97306 3701 45534 48655 Face 97307 3701 48656 32095 Face 97308 3701 48655 48656 Face 97309 23669 48657 43987 Face 97310 23669 30810 48657 Face 97311 22439 48658 10108 Face 97312 22439 7814 48658 Face 97313 22924 48659 36348 Face 97314 22924 37301 48659 Face 97315 6321 48660 44220 Face 97316 6321 16551 48660 Face 97317 18508 48661 24076 Face 97318 49489 38401 48661 Face 97319 27670 48662 11809 Face 97320 27670 3064 48662 Face 97321 18783 48663 44874 Face 97322 18783 20338 48663 Face 97323 5619 48664 28287 Face 97324 5619 2857 48664 Face 97325 46308 48665 32315 Face 97326 46308 25409 48665 Face 97327 13225 48666 38482 Face 97328 48667 29175 48666 Face 97329 13225 48667 48666 Face 97330 13225 18310 48667 Face 97331 6159 48668 36396 Face 97332 6159 28406 48668 Face 97333 10290 48669 38617 Face 97334 10290 47518 48669 Face 97335 1181 48670 35435 Face 97336 1181 43070 48670 Face 97337 28138 48671 23897 Face 97338 28138 13717 48671 Face 97339 15351 48672 29052 Face 97340 15351 25143 48672 Face 97341 11373 48673 7998 Face 97342 11373 40867 48673 Face 97343 33504 48674 4856 Face 97344 33504 28077 48674 Face 97345 22863 48675 173 Face 97346 22863 3841 48675 Face 97347 20833 48676 16019 Face 97348 20833 21634 48676 Face 97349 32441 48677 19462 Face 97350 32441 29929 48677 Face 97351 3763 48678 46592 Face 97352 3763 35341 48678 Face 97353 2728 48679 12219 Face 97354 2728 11909 48679 Face 97355 8397 48680 43640 Face 97356 8397 18057 48680 Face 97357 21135 48681 9299 Face 97358 21135 44039 48681 Face 97359 24777 48682 8411 Face 97360 24777 2805 48682 Face 97361 5311 48683 35084 Face 97362 5311 24701 48683 Face 97363 11264 48684 11265 Face 97364 11264 38516 48684 Face 97365 18629 48685 35804 Face 97366 18629 25586 48685 Face 97367 41895 48686 5280 Face 97368 41895 12456 48686 Face 97369 11631 48687 3910 Face 97370 11631 42413 48687 Face 97371 12119 48688 49205 Face 97372 12119 10838 48688 Face 97373 26438 48689 2310 Face 97374 26438 19700 48689 Face 97375 33734 48690 48 Face 97376 33734 22240 48690 Face 97377 6400 48691 37217 Face 97378 6400 33360 48691 Face 97379 29281 48692 41592 Face 97380 29281 29612 48692 Face 97381 10424 48693 180 Face 97382 10424 42301 48693 Face 97383 9423 48694 43557 Face 97384 9423 29721 48694 Face 97385 22610 48695 47145 Face 97386 22610 22674 48695 Face 97387 2836 48696 5315 Face 97388 2836 14788 48696 Face 97389 37017 48697 19441 Face 97390 37017 12100 48697 Face 97391 22845 48698 24747 Face 97392 22845 23747 48698 Face 97393 15067 48699 26632 Face 97394 15067 1963 48699 Face 97395 10869 48700 35705 Face 97396 10869 5483 48700 Face 97397 1537 48701 14590 Face 97398 1537 23238 48701 Face 97399 15004 48702 21505 Face 97400 48703 22053 48702 Face 97401 15004 48703 48702 Face 97402 15004 4944 48703 Face 97403 26315 48704 40712 Face 97404 26315 14021 48704 Face 97405 6654 48705 49324 Face 97406 6654 26736 48705 Face 97407 7422 48706 48641 Face 97408 7422 33187 48706 Face 97409 31325 48707 20358 Face 97410 31325 24260 48707 Face 97411 28310 48708 23921 Face 97412 28310 35870 48708 Face 97413 24053 48709 19209 Face 97414 24053 24054 48709 Face 97415 36909 48710 45740 Face 97416 36909 4293 48710 Face 97417 16341 48711 32720 Face 97418 16341 22433 48711 Face 97419 14007 48712 38034 Face 97420 14007 7333 48712 Face 97421 1865 48713 20651 Face 97422 1865 29957 48713 Face 97423 20949 48714 5051 Face 97424 20949 20549 48714 Face 97425 11149 48715 26574 Face 97426 11149 35000 48715 Face 97427 3124 48716 23900 Face 97428 3124 5879 48716 Face 97429 27877 48717 19033 Face 97430 27877 42976 48717 Face 97431 20940 48718 10644 Face 97432 20940 36991 48718 Face 97433 33946 48719 20519 Face 97434 33946 42741 48719 Face 97435 18382 48720 29989 Face 97436 18382 18257 48720 Face 97437 10339 48721 24016 Face 97438 10339 12084 48721 Face 97439 417 48722 42642 Face 97440 417 29400 48722 Face 97441 31682 48723 18332 Face 97442 31682 2182 48723 Face 97443 6953 48724 16257 Face 97444 6953 25272 48724 Face 97445 16716 48725 19014 Face 97446 16716 28601 48725 Face 97447 12735 48726 16668 Face 97448 12735 6012 48726 Face 97449 18721 48727 24340 Face 97450 18721 7222 48727 Face 97451 6933 48728 39683 Face 97452 6933 32407 48728 Face 97453 6822 48729 21892 Face 97454 6822 28452 48729 Face 97455 22145 48730 18359 Face 97456 22145 7302 48730 Face 97457 6224 48731 33505 Face 97458 6224 37647 48731 Face 97459 26961 48732 13459 Face 97460 26961 6070 48732 Face 97461 39940 48733 10120 Face 97462 39940 10024 48733 Face 97463 25830 48734 5346 Face 97464 25830 44602 48734 Face 97465 9790 48735 22513 Face 97466 9790 42515 48735 Face 97467 9627 48736 2243 Face 97468 9627 45558 48736 Face 97469 27593 48737 21064 Face 97470 27593 5430 48737 Face 97471 36493 48738 35897 Face 97472 36493 4849 48738 Face 97473 1171 48739 44529 Face 97474 1171 29328 48739 Face 97475 48741 48740 1450 Face 97476 20972 1605 48740 Face 97477 20972 48741 4788 Face 97478 20972 48740 48741 Face 97479 23944 48742 20132 Face 97480 23944 19772 48742 Face 97481 27081 48743 30817 Face 97482 27081 8324 48743 Face 97483 23589 48744 46889 Face 97484 23589 48276 48744 Face 97485 42990 48745 36059 Face 97486 48999 13868 48745 Face 97487 39304 48746 19372 Face 97488 39304 39804 48746 Face 97489 7901 48747 7902 Face 97490 7901 36228 48747 Face 97491 33238 48748 4637 Face 97492 33238 38687 48748 Face 97493 15354 48749 20389 Face 97494 15354 189 48749 Face 97495 10211 48750 24278 Face 97496 10211 39020 48750 Face 97497 12135 48751 26425 Face 97498 12135 48459 48751 Face 97499 12231 48752 14325 Face 97500 12231 4944 48752 Face 97501 12708 48753 48185 Face 97502 12708 24592 48753 Face 97503 12084 48754 29551 Face 97504 12084 29481 48754 Face 97505 15492 48755 7002 Face 97506 15492 5980 48755 Face 97507 1232 48756 38777 Face 97508 1232 26283 48756 Face 97509 8949 48757 2209 Face 97510 48758 38895 48757 Face 97511 8949 48758 48757 Face 97512 8949 36148 48758 Face 97513 9871 48759 47284 Face 97514 9871 36713 48759 Face 97515 18200 48760 3666 Face 97516 18200 39021 48760 Face 97517 23468 48761 33427 Face 97518 23468 17139 48761 Face 97519 15629 48762 12505 Face 97520 15629 23169 48762 Face 97521 11888 48763 27977 Face 97522 11888 11978 48763 Face 97523 34281 48764 43756 Face 97524 34281 11735 48764 Face 97525 39168 48765 3625 Face 97526 39168 16753 48765 Face 97527 14891 48766 35865 Face 97528 14891 696 48766 Face 97529 24257 48767 6428 Face 97530 24257 39509 48767 Face 97531 16128 48768 32416 Face 97532 16128 37323 48768 Face 97533 27973 48769 989 Face 97534 27973 47634 48769 Face 97535 39196 48770 5078 Face 97536 39196 24145 48770 Face 97537 14684 48771 39599 Face 97538 14684 5252 48771 Face 97539 36847 48772 1582 Face 97540 36847 21544 48772 Face 97541 7556 48773 45972 Face 97542 7556 39774 48773 Face 97543 5505 48774 11292 Face 97544 5505 49221 48774 Face 97545 5505 48775 1313 Face 97546 5505 11292 48775 Face 97547 2168 48776 10318 Face 97548 2168 38969 48776 Face 97549 24448 48777 45051 Face 97550 24448 13885 48777 Face 97551 5803 48778 10834 Face 97552 48779 39207 48778 Face 97553 5803 48779 48778 Face 97554 5803 33785 48779 Face 97555 14491 48780 38945 Face 97556 14491 40482 48780 Face 97557 13062 48781 37195 Face 97558 13062 27951 48781 Face 97559 28367 48782 35752 Face 97560 28367 10102 48782 Face 97561 20714 48783 22163 Face 97562 20714 46214 48783 Face 97563 1344 48784 13820 Face 97564 1344 33886 48784 Face 97565 8594 48785 23370 Face 97566 8594 40075 48785 Face 97567 1673 48786 29729 Face 97568 1673 35211 48786 Face 97569 3375 48787 17904 Face 97570 3375 30541 48787 Face 97571 26986 48788 3254 Face 97572 26986 8507 48788 Face 97573 10820 48789 3989 Face 97574 10820 5854 48789 Face 97575 24372 48790 27144 Face 97576 49397 6658 48790 Face 97577 4636 48791 25168 Face 97578 4636 30905 48791 Face 97579 23946 48792 37921 Face 97580 23946 45721 48792 Face 97581 14464 48793 27667 Face 97582 14464 157 48793 Face 97583 1126 48794 31064 Face 97584 1126 14594 48794 Face 97585 2613 48795 11823 Face 97586 2613 13772 48795 Face 97587 32816 48796 19764 Face 97588 32816 5191 48796 Face 97589 7205 48797 12305 Face 97590 7205 23959 48797 Face 97591 28683 48798 1839 Face 97592 28683 25260 48798 Face 97593 1253 48799 29522 Face 97594 1253 36441 48799 Face 97595 33156 48800 22546 Face 97596 33156 467 48800 Face 97597 10582 48801 28631 Face 97598 10582 29641 48801 Face 97599 4970 48802 35448 Face 97600 4970 21433 48802 Face 97601 2245 48803 42946 Face 97602 2245 24444 48803 Face 97603 28227 48804 42919 Face 97604 28227 26276 48804 Face 97605 25526 48805 996 Face 97606 25526 21901 48805 Face 97607 3249 48806 27886 Face 97608 3249 25540 48806 Face 97609 26572 48807 30400 Face 97610 26572 3070 48807 Face 97611 17844 48808 20470 Face 97612 17844 7462 48808 Face 97613 17944 48809 38106 Face 97614 17944 14215 48809 Face 97615 5262 48810 10863 Face 97616 5262 24578 48810 Face 97617 13158 48811 41939 Face 97618 49118 1909 48811 Face 97619 9932 48812 44065 Face 97620 9932 21212 48812 Face 97621 25581 48813 24118 Face 97622 25581 37805 48813 Face 97623 1860 48814 31033 Face 97624 1860 21850 48814 Face 97625 17574 48815 31124 Face 97626 17574 13851 48815 Face 97627 7571 48816 27547 Face 97628 7571 43134 49446 Face 97629 426 48817 25829 Face 97630 426 31217 48817 Face 97631 27238 48818 16621 Face 97632 27238 1341 48818 Face 97633 31596 48819 20077 Face 97634 31596 5904 48819 Face 97635 17196 48820 21033 Face 97636 17196 3971 48820 Face 97637 11915 48821 5015 Face 97638 11915 40225 48821 Face 97639 10608 48822 16303 Face 97640 10608 12379 48822 Face 97641 9467 48823 33848 Face 97642 9467 21956 48823 Face 97643 9129 48824 41827 Face 97644 9129 16697 48824 Face 97645 10216 48825 42433 Face 97646 10216 25550 48825 Face 97647 32590 48826 8634 Face 97648 32590 14720 48826 Face 97649 31539 48827 533 Face 97650 31539 22039 48827 Face 97651 12106 48828 32118 Face 97652 12106 38174 48828 Face 97653 24170 48829 48279 Face 97654 24170 27962 48829 Face 97655 26562 48830 14481 Face 97656 26562 12337 48830 Face 97657 41589 48831 5557 Face 97658 41589 13504 48831 Face 97659 6243 48832 22545 Face 97660 6243 42019 48832 Face 97661 17849 48833 46957 Face 97662 17849 47532 48833 Face 97663 21127 48834 43233 Face 97664 21127 35569 48834 Face 97665 15950 48835 4047 Face 97666 15950 5735 48835 Face 97667 14204 48836 44193 Face 97668 14204 14205 48836 Face 97669 18366 48837 10968 Face 97670 18366 10045 48837 Face 97671 23519 48838 47753 Face 97672 23519 13262 48838 Face 97673 48838 48839 6295 Face 97674 48838 5438 48839 Face 97675 31768 48840 7882 Face 97676 31768 39689 48840 Face 97677 15166 48841 6490 Face 97678 15166 34128 48841 Face 97679 13720 48842 33718 Face 97680 13720 19420 48842 Face 97681 14294 48843 16084 Face 97682 14294 2332 48843 Face 97683 29300 48844 33460 Face 97684 29300 3151 48844 Face 97685 5614 48845 32940 Face 97686 5614 2000 48845 Face 97687 28834 48846 11591 Face 97688 28834 47319 48846 Face 97689 23824 48847 26630 Face 97690 23824 30413 48847 Face 97691 3854 48848 19132 Face 97692 48849 21882 48848 Face 97693 3854 48849 48848 Face 97694 3854 40665 48849 Face 97695 33255 48850 27194 Face 97696 33255 17405 48850 Face 97697 21451 48851 8644 Face 97698 49144 12441 48851 Face 97699 41046 48852 18117 Face 97700 41046 37246 48852 Face 97701 9517 48853 48612 Face 97702 9517 37751 48853 Face 97703 19447 48854 14705 Face 97704 19447 9808 48854 Face 97705 30923 48855 10203 Face 97706 30923 8789 48855 Face 97707 15225 48856 3960 Face 97708 15225 23205 48856 Face 97709 34673 48857 42645 Face 97710 34673 25471 48857 Face 97711 27554 48858 19018 Face 97712 27554 5838 48858 Face 97713 32074 48859 25651 Face 97714 32074 30827 48859 Face 97715 15264 48860 7271 Face 97716 15264 22041 48860 Face 97717 27061 48861 9879 Face 97718 27061 49626 48861 Face 97719 395 48862 32973 Face 97720 395 36749 48862 Face 97721 34292 48863 42807 Face 97722 34292 21113 48863 Face 97723 3602 48864 9220 Face 97724 3602 16817 48864 Face 97725 12996 48865 33376 Face 97726 12996 30954 48865 Face 97727 13514 48866 4415 Face 97728 13514 38086 48866 Face 97729 1525 48867 39113 Face 97730 1525 36181 48867 Face 97731 22197 48868 33782 Face 97732 22197 17576 48868 Face 97733 17521 48869 23426 Face 97734 17521 39081 48869 Face 97735 24707 48870 37752 Face 97736 24707 1969 48870 Face 97737 33349 48871 19219 Face 97738 33349 2224 48871 Face 97739 19355 48872 11199 Face 97740 19355 29100 48872 Face 97741 21402 48873 21403 Face 97742 21402 41745 48873 Face 97743 29294 48874 13973 Face 97744 29294 6300 48874 Face 97745 45298 48875 30949 Face 97746 45298 16369 48875 Face 97747 5284 48876 37325 Face 97748 5284 10156 48876 Face 97749 29495 48877 17978 Face 97750 29495 12588 48877 Face 97751 9403 48878 36500 Face 97752 9403 34377 48878 Face 97753 34890 48879 6441 Face 97754 34890 8164 48879 Face 97755 42095 48880 18082 Face 97756 42095 25445 48880 Face 97757 10152 48881 41524 Face 97758 10152 49438 48881 Face 97759 15619 48882 4399 Face 97760 15619 17770 48882 Face 97761 4139 48883 11249 Face 97762 4139 17703 48883 Face 97763 11715 48884 48781 Face 97764 11715 11716 48884 Face 97765 6514 48885 41178 Face 97766 6514 16818 48885 Face 97767 3055 48886 18214 Face 97768 3055 16540 48886 Face 97769 14711 48887 44296 Face 97770 48888 6060 48887 Face 97771 14711 48888 48887 Face 97772 14711 44102 48888 Face 97773 31437 48889 40546 Face 97774 31437 4218 48889 Face 97775 18393 48890 11728 Face 97776 48892 18317 48890 Face 97777 48892 48891 23943 Face 97778 18393 14173 48891 Face 97779 18393 48892 48890 Face 97780 18393 48891 48892 Face 97781 13587 48893 40313 Face 97782 13587 4781 48893 Face 97783 17906 48894 21663 Face 97784 17906 45499 48894 Face 97785 30999 48895 17695 Face 97786 30999 12901 48895 Face 97787 13181 48896 28624 Face 97788 13181 8771 48896 Face 97789 8930 48897 8296 Face 97790 8930 20422 48897 Face 97791 33570 48898 86 Face 97792 33570 27961 48898 Face 97793 16944 48899 6673 Face 97794 16944 32495 48899 Face 97795 5242 48900 37314 Face 97796 5242 13067 48900 Face 97797 19032 48901 29194 Face 97798 19032 27575 48901 Face 97799 8670 48902 16672 Face 97800 8670 49293 48902 Face 97801 29882 48903 38688 Face 97802 29882 10607 48903 Face 97803 22975 48904 47832 Face 97804 22975 6927 48904 Face 97805 7293 48905 23601 Face 97806 7293 20832 48905 Face 97807 11321 48906 12803 Face 97808 11321 7154 48906 Face 97809 2307 48907 25530 Face 97810 2307 14628 48907 Face 97811 8945 48908 33322 Face 97812 8945 40724 48908 Face 97813 28702 48909 39998 Face 97814 28702 46122 48909 Face 97815 4205 48910 49901 Face 97816 4205 19533 48910 Face 97817 12056 48911 10990 Face 97818 12056 14608 48911 Face 97819 18863 48912 28244 Face 97820 18863 8979 48912 Face 97821 32021 48913 18357 Face 97822 32021 23357 48913 Face 97823 10591 48914 565 Face 97824 10591 44631 48914 Face 97825 1329 48915 7639 Face 97826 1329 31811 48915 Face 97827 4774 48916 21341 Face 97828 4774 49748 48916 Face 97829 28691 48917 21051 Face 97830 28691 29258 48917 Face 97831 25511 48918 44873 Face 97832 25511 11913 48918 Face 97833 8980 48919 22668 Face 97834 8980 19737 48919 Face 97835 26475 48920 6094 Face 97836 26475 16349 48920 Face 97837 31364 48921 17053 Face 97838 31364 7289 48921 Face 97839 2108 48922 33323 Face 97840 2108 7370 48922 Face 97841 1960 48923 28574 Face 97842 1960 45236 48923 Face 97843 12891 48924 6646 Face 97844 12891 39423 48924 Face 97845 7851 48925 23831 Face 97846 7851 35649 48925 Face 97847 4327 48926 33386 Face 97848 4327 29514 48926 Face 97849 5914 48927 16965 Face 97850 5914 13680 48927 Face 97851 27874 48928 44049 Face 97852 27874 176 48928 Face 97853 16748 48929 39053 Face 97854 16748 13167 48929 Face 97855 34731 48930 23460 Face 97856 34731 21649 48930 Face 97857 24613 48931 49112 Face 97858 24613 4161 48931 Face 97859 7608 48932 36365 Face 97860 7608 34138 48932 Face 97861 19826 48933 39349 Face 97862 19826 45339 48933 Face 97863 15411 48934 27738 Face 97864 15411 18596 48934 Face 97865 24358 48935 46912 Face 97866 48936 433 48935 Face 97867 24358 48936 48935 Face 97868 24358 12620 48936 Face 97869 11252 48937 38744 Face 97870 11252 46069 48937 Face 97871 13755 48938 34913 Face 97872 13755 24875 48938 Face 97873 12316 48939 29753 Face 97874 12316 35395 48939 Face 97875 27293 48940 33278 Face 97876 27293 6566 48940 Face 97877 25751 48941 36430 Face 97878 25751 37626 48941 Face 97879 16622 48942 28953 Face 97880 16622 36767 48942 Face 97881 11660 48943 36416 Face 97882 11660 34536 48943 Face 97883 5804 48944 17435 Face 97884 5804 19193 48944 Face 97885 20504 48945 7257 Face 97886 20504 16909 48945 Face 97887 18873 48946 33938 Face 97888 18873 25476 48946 Face 97889 5513 48947 31190 Face 97890 5513 44805 48947 Face 97891 30344 48948 19353 Face 97892 30344 25983 48948 Face 97893 13395 48949 2448 Face 97894 13395 44494 48949 Face 97895 26824 48950 28408 Face 97896 48951 48156 48950 Face 97897 26824 48951 48950 Face 97898 26824 13738 48951 Face 97899 2122 48952 45116 Face 97900 2122 27691 48952 Face 97901 48954 48953 4658 Face 97902 8472 45078 48953 Face 97903 8472 48954 21175 Face 97904 8472 48953 48954 Face 97905 15394 48955 21551 Face 97906 15394 25 48955 Face 97907 49392 48956 25269 Face 97908 17572 6958 48956 Face 97909 22965 48957 25217 Face 97910 22965 9681 48957 Face 97911 4097 48958 24490 Face 97912 4097 24426 48958 Face 97913 17133 48959 45645 Face 97914 17133 8797 48959 Face 97915 38467 48960 34307 Face 97916 38467 17020 48960 Face 97917 17166 48961 8854 Face 97918 17166 6771 48961 Face 97919 28664 48962 1149 Face 97920 28664 27178 48962 Face 97921 6110 48963 45877 Face 97922 6110 24937 48963 Face 97923 12394 48964 36045 Face 97924 12394 2555 48964 Face 97925 10693 48965 43583 Face 97926 10693 32364 48965 Face 97927 22007 48966 6205 Face 97928 22007 10888 48966 Face 97929 1577 48967 28245 Face 97930 1577 13045 48967 Face 97931 8318 48968 40004 Face 97932 8318 1660 48968 Face 97933 10564 48969 6406 Face 97934 10564 43577 48969 Face 97935 11061 48970 37362 Face 97936 11061 42571 48970 Face 97937 5509 48971 16887 Face 97938 5509 33033 48971 Face 97939 18815 48972 43104 Face 97940 18815 46346 48972 Face 97941 18120 48973 27232 Face 97942 18120 2872 48973 Face 97943 14766 48974 24916 Face 97944 14766 34374 48974 Face 97945 7189 48975 45070 Face 97946 7189 25435 48975 Face 97947 15271 48976 2247 Face 97948 15271 5726 48976 Face 97949 20868 48977 12985 Face 97950 20868 24796 48977 Face 97951 24110 48978 27294 Face 97952 24110 19245 48978 Face 97953 38568 48979 38569 Face 97954 38568 21242 48979 Face 97955 6092 48980 47357 Face 97956 6092 6091 48980 Face 97957 3084 48981 19955 Face 97958 3084 30842 48981 Face 97959 29919 48982 28996 Face 97960 29919 47751 48982 Face 97961 18949 48983 7592 Face 97962 18949 6755 48983 Face 97963 42064 48984 11783 Face 97964 42064 30027 48984 Face 97965 5246 48985 7545 Face 97966 5246 28377 48985 Face 97967 16289 48986 45413 Face 97968 16289 35027 48986 Face 97969 21888 48987 21889 Face 97970 21888 18389 48987 Face 97971 1509 48988 45352 Face 97972 1509 21275 48988 Face 97973 27915 48989 17720 Face 97974 27915 13855 48989 Face 97975 14423 48990 4216 Face 97976 14423 19807 48990 Face 97977 49583 48991 8140 Face 97978 555 35317 48991 Face 97979 12043 48992 24513 Face 97980 12043 33639 48992 Face 97981 14556 48993 4784 Face 97982 14556 25304 48993 Face 97983 18752 48994 41633 Face 97984 18752 6620 48994 Face 97985 374 48995 16154 Face 97986 374 16155 48995 Face 97987 7018 48996 11875 Face 97988 7018 30319 48996 Face 97989 3419 48997 17141 Face 97990 3419 43821 48997 Face 97991 18671 48998 4994 Face 97992 18671 47702 48998 Face 97993 42990 48999 48745 Face 97994 42990 24306 48999 Face 97995 19593 49000 18716 Face 97996 19593 19594 49000 Face 97997 26866 49001 12875 Face 97998 26866 14944 49001 Face 97999 6428 49002 13394 Face 98000 6428 27078 49002 Face 98001 24407 49003 8260 Face 98002 24407 37965 49003 Face 98003 27742 49004 27743 Face 98004 27742 29622 49004 Face 98005 9809 49005 49187 Face 98006 9809 41903 49005 Face 98007 20341 49006 12409 Face 98008 20341 3988 49006 Face 98009 33525 49007 2051 Face 98010 33525 36634 49007 Face 98011 25937 49008 8257 Face 98012 25937 313 49008 Face 98013 19406 49009 20958 Face 98014 19406 5556 49009 Face 98015 1611 49010 41088 Face 98016 1611 37671 49010 Face 98017 27044 49011 22547 Face 98018 27044 9000 49011 Face 98019 18985 49012 8044 Face 98020 18985 36100 49012 Face 98021 1059 49013 12898 Face 98022 1059 39756 49013 Face 98023 28362 49014 4180 Face 98024 28362 42188 49014 Face 98025 10095 49015 22219 Face 98026 10095 29283 49015 Face 98027 11959 49016 847 Face 98028 11959 29329 49016 Face 98029 23471 49017 4797 Face 98030 23471 17126 49017 Face 98031 17377 49018 35533 Face 98032 17377 31762 49018 Face 98033 3725 49019 38014 Face 98034 3725 35284 49019 Face 98035 29820 49020 24861 Face 98036 29820 790 49020 Face 98037 16977 49021 34165 Face 98038 16977 36591 49021 Face 98039 24354 49022 17222 Face 98040 24354 20088 49022 Face 98041 49944 49023 5268 Face 98042 11398 12497 49023 Face 98043 30564 49024 27275 Face 98044 30564 30563 49024 Face 98045 822 49025 26748 Face 98046 822 27620 49025 Face 98047 7096 49026 30830 Face 98048 7096 9653 49026 Face 98049 22041 49027 1410 Face 98050 22041 17149 49027 Face 98051 35854 49028 27628 Face 98052 35854 19349 49028 Face 98053 14997 49029 21677 Face 98054 14997 22146 49029 Face 98055 23951 49030 36158 Face 98056 23951 9920 49030 Face 98057 13300 49031 15795 Face 98058 13300 43621 49031 Face 98059 15011 49032 8764 Face 98060 15011 16627 49032 Face 98061 6845 49033 30526 Face 98062 6845 31698 49033 Face 98063 9981 49034 31480 Face 98064 9981 4486 49034 Face 98065 8950 49035 30859 Face 98066 8950 45041 49035 Face 98067 28249 49036 14640 Face 98068 28249 9960 49036 Face 98069 20720 49037 30002 Face 98070 20720 48127 49037 Face 98071 37386 49038 6540 Face 98072 37386 37387 49038 Face 98073 8317 49039 33190 Face 98074 8317 16501 49039 Face 98075 9619 49040 27848 Face 98076 9619 31548 49040 Face 98077 14489 49041 44565 Face 98078 14489 2786 49041 Face 98079 17104 49042 34075 Face 98080 17104 196 49042 Face 98081 2331 49043 12763 Face 98082 2331 9687 49043 Face 98083 6333 49044 27141 Face 98084 6333 40246 49044 Face 98085 8009 49045 48373 Face 98086 8009 30337 49045 Face 98087 23880 49046 29672 Face 98088 23880 34861 49046 Face 98089 41650 49047 24615 Face 98090 41650 13361 49047 Face 98091 10198 49048 33276 Face 98092 49416 36092 49048 Face 98093 4190 49049 26922 Face 98094 49050 24046 49049 Face 98095 4190 49050 49049 Face 98096 4190 34576 49050 Face 98097 3310 49051 42249 Face 98098 3310 45109 49051 Face 98099 2018 49052 30334 Face 98100 2018 15630 49052 Face 98101 22916 49053 36307 Face 98102 22916 37513 49053 Face 98103 1372 49054 32669 Face 98104 1372 34403 49054 Face 98105 12105 49055 16706 Face 98106 12105 39867 49055 Face 98107 40771 49056 38830 Face 98108 40771 14 49056 Face 98109 3008 49057 39763 Face 98110 3008 41662 49057 Face 98111 16902 49058 10562 Face 98112 16902 18478 49058 Face 98113 25756 49059 3859 Face 98114 25756 21750 49059 Face 98115 7641 49060 39133 Face 98116 7641 42469 49060 Face 98117 10519 49061 18199 Face 98118 10519 31998 49061 Face 98119 16863 49062 29287 Face 98120 16863 46342 49062 Face 98121 3818 49063 44214 Face 98122 3818 25099 49063 Face 98123 23191 49064 20010 Face 98124 23191 23458 49064 Face 98125 20609 49065 18873 Face 98126 20609 539 49065 Face 98127 20478 49066 34585 Face 98128 20478 40904 49066 Face 98129 7297 49067 29359 Face 98130 7297 35243 49067 Face 98131 3554 49068 11435 Face 98132 3554 17854 49068 Face 98133 6761 49069 20897 Face 98134 6761 8216 49069 Face 98135 33474 49070 6983 Face 98136 33474 11678 49070 Face 98137 32389 49071 6202 Face 98138 32389 4461 49071 Face 98139 14405 49072 4876 Face 98140 14405 25820 49072 Face 98141 23540 49073 1392 Face 98142 23540 10978 49073 Face 98143 34560 49074 14465 Face 98144 34560 43195 49074 Face 98145 19486 49075 19487 Face 98146 19486 47725 49075 Face 98147 26752 49076 42100 Face 98148 26752 1066 49077 Face 98149 49076 49077 43057 Face 98150 49076 26752 49077 Face 98151 14544 49078 26737 Face 98152 14544 2019 49078 Face 98153 20542 49079 4530 Face 98154 20542 40783 49079 Face 98155 11710 49080 34137 Face 98156 49081 22653 49080 Face 98157 11710 49081 49080 Face 98158 11710 14781 49081 Face 98159 16837 49082 34319 Face 98160 16837 16836 49082 Face 98161 25105 49083 13717 Face 98162 25105 2436 49083 Face 98163 16411 49084 46682 Face 98164 16411 33707 49084 Face 98165 22003 49085 32613 Face 98166 22003 16591 49085 Face 98167 6355 49086 18082 Face 98168 6355 14856 49086 Face 98169 12078 49087 45748 Face 98170 12078 37966 49087 Face 98171 25219 49088 6682 Face 98172 25219 9716 49088 Face 98173 495 49089 21278 Face 98174 495 42757 49089 Face 98175 12349 49090 23314 Face 98176 12349 38178 49090 Face 98177 4132 49091 28259 Face 98178 4132 34761 49091 Face 98179 11691 49092 22596 Face 98180 11691 5266 49092 Face 98181 16974 49093 23456 Face 98182 16974 13659 49093 Face 98183 9360 49094 182 Face 98184 9360 43258 49094 Face 98185 10391 49095 26240 Face 98186 10391 10622 49095 Face 98187 18635 49096 34423 Face 98188 18635 46625 49096 Face 98189 185 49097 36741 Face 98190 185 36742 49097 Face 98191 49099 49098 25746 Face 98192 598 21345 49098 Face 98193 598 49099 7934 Face 98194 598 49098 49099 Face 98195 4336 49100 15740 Face 98196 4336 1324 49100 Face 98197 3700 49101 31133 Face 98198 3700 37882 49101 Face 98199 4058 49102 10229 Face 98200 4058 38217 49102 Face 98201 1977 49103 40547 Face 98202 1977 10196 49103 Face 98203 2669 49104 21887 Face 98204 49451 16567 49104 Face 98205 9902 49105 33564 Face 98206 9902 3379 49105 Face 98207 29348 49106 42093 Face 98208 29348 14547 49106 Face 98209 15638 49107 25346 Face 98210 15638 48549 49107 Face 98211 8380 49108 4679 Face 98212 8380 4553 49108 Face 98213 7003 49109 16962 Face 98214 7003 4880 49109 Face 98215 40311 49110 7203 Face 98216 40311 35788 49110 Face 98217 15455 49111 11084 Face 98218 15455 46355 49111 Face 98219 28324 49112 37110 Face 98220 28324 24613 49112 Face 98221 20256 49113 12820 Face 98222 20256 12821 49113 Face 98223 18860 49114 15263 Face 98224 18860 19162 49114 Face 98225 33261 49115 8984 Face 98226 33261 27544 49115 Face 98227 37054 49116 15173 Face 98228 37054 47266 49116 Face 98229 5119 49117 27235 Face 98230 5119 33578 49117 Face 98231 13158 49118 48811 Face 98232 13158 36449 49118 Face 98233 49121 49119 32249 Face 98234 13644 22302 49119 Face 98235 13644 49120 1788 Face 98236 13644 49119 49120 Face 98237 49120 49121 6782 Face 98238 49120 49119 49121 Face 98239 8387 49122 25194 Face 98240 8387 19223 49122 Face 98241 11486 49123 38755 Face 98242 11486 22403 49123 Face 98243 41520 49124 10491 Face 98244 41520 17065 49124 Face 98245 3149 49125 36397 Face 98246 3149 24058 49125 Face 98247 49127 49126 1176 Face 98248 5805 28090 49126 Face 98249 5805 49127 16087 Face 98250 5805 49126 49127 Face 98251 32499 49128 15476 Face 98252 32499 18824 49128 Face 98253 49704 49129 12802 Face 98254 19043 31051 49129 Face 98255 22200 49130 35952 Face 98256 22200 31007 49130 Face 98257 22570 49131 25341 Face 98258 22570 2598 49131 Face 98259 4833 49132 23814 Face 98260 4833 24961 49132 Face 98261 2254 49133 43472 Face 98262 2254 18432 49133 Face 98263 24827 49134 10931 Face 98264 49135 47973 49134 Face 98265 24827 49135 49134 Face 98266 24827 18803 49135 Face 98267 12602 49136 24035 Face 98268 12602 20287 49136 Face 98269 674 49137 28567 Face 98270 674 26978 49137 Face 98271 9545 49138 35200 Face 98272 9545 1498 49138 Face 98273 12229 49139 2119 Face 98274 12229 41256 49139 Face 98275 14908 49140 21281 Face 98276 14908 42616 49140 Face 98277 3116 49141 29868 Face 98278 3116 23020 49141 Face 98279 11942 49142 25508 Face 98280 11942 11941 49142 Face 98281 2861 49143 34241 Face 98282 2861 48432 49143 Face 98283 21451 49144 48851 Face 98284 21451 8799 49144 Face 98285 15705 49145 28483 Face 98286 15705 29521 49145 Face 98287 36358 49146 2958 Face 98288 36358 32513 49146 Face 98289 43301 49147 3146 Face 98290 43301 25279 49147 Face 98291 9123 49148 41030 Face 98292 9123 37619 49148 Face 98293 18918 49149 35914 Face 98294 18918 26569 49149 Face 98295 15478 49150 20897 Face 98296 49476 38167 49150 Face 98297 17528 49151 41299 Face 98298 17528 31753 49151 Face 98299 25040 49152 30543 Face 98300 25040 2164 49152 Face 98301 49154 49153 33080 Face 98302 15014 23190 49153 Face 98303 15014 49154 31582 Face 98304 15014 49153 49154 Face 98305 3542 49155 7246 Face 98306 3542 25065 49155 Face 98307 8319 49156 15982 Face 98308 8319 641 49156 Face 98309 13572 49157 37075 Face 98310 13572 22391 49157 Face 98311 1117 49158 37948 Face 98312 1117 22506 49158 Face 98313 27176 49159 27275 Face 98314 27176 28811 49159 Face 98315 32689 49160 15584 Face 98316 32689 15289 49160 Face 98317 17409 49161 23875 Face 98318 17409 32031 49161 Face 98319 2932 49162 7327 Face 98320 2932 2935 49162 Face 98321 18726 49163 14300 Face 98322 18726 469 49163 Face 98323 18272 49164 14034 Face 98324 49165 1603 49164 Face 98325 18272 49165 49164 Face 98326 18272 6439 49165 Face 98327 49501 49166 7166 Face 98328 24773 16688 49166 Face 98329 5265 49167 35322 Face 98330 5265 35321 49167 Face 98331 16081 49168 4290 Face 98332 16081 28869 49168 Face 98333 13405 49169 17294 Face 98334 13405 38187 49169 Face 98335 13243 49170 36024 Face 98336 13243 43262 49170 Face 98337 21622 49171 14536 Face 98338 21622 26623 49171 Face 98339 23298 49172 1589 Face 98340 23298 49385 49172 Face 98341 49174 49173 11432 Face 98342 49175 38342 49173 Face 98343 49175 49174 14778 Face 98344 49175 49173 49174 Face 98345 502 49175 14778 Face 98346 502 38342 49175 Face 98347 18335 49176 11050 Face 98348 18335 966 49176 Face 98349 23588 49177 39631 Face 98350 23588 30047 49177 Face 98351 12554 49178 10857 Face 98352 12554 33112 49178 Face 98353 11866 49179 2276 Face 98354 11866 21804 49179 Face 98355 18815 49180 37441 Face 98356 18815 34675 49180 Face 98357 40835 49181 29696 Face 98358 40835 3270 49181 Face 98359 33994 49182 19638 Face 98360 33994 47360 49182 Face 98361 30947 49183 21655 Face 98362 30947 31520 49183 Face 98363 26227 49184 7591 Face 98364 26227 5077 49184 Face 98365 22875 49185 3414 Face 98366 22875 5023 49185 Face 98367 26959 49186 33617 Face 98368 26959 10372 49186 Face 98369 25001 49187 39218 Face 98370 25001 33652 49187 Face 98371 1480 49188 41974 Face 98372 49189 2993 49188 Face 98373 1480 49189 49188 Face 98374 1480 48628 49189 Face 98375 28098 49190 34268 Face 98376 28098 36359 49190 Face 98377 9339 49191 38531 Face 98378 9339 11655 49191 Face 98379 2194 49192 24919 Face 98380 2194 25321 49192 Face 98381 860 49193 43953 Face 98382 860 31511 49193 Face 98383 5875 49194 47845 Face 98384 5875 29422 49194 Face 98385 32821 49195 32819 Face 98386 32821 8804 49195 Face 98387 17867 49196 6387 Face 98388 17867 33733 49196 Face 98389 22328 49197 12682 Face 98390 22328 12683 49197 Face 98391 22857 49198 46133 Face 98392 22857 33065 49198 Face 98393 40771 49199 17868 Face 98394 40771 27891 49199 Face 98395 816 49200 45937 Face 98396 816 29289 49200 Face 98397 2308 49201 33975 Face 98398 2308 22206 49201 Face 98399 6812 49202 34407 Face 98400 6812 18193 49202 Face 98401 14547 49203 18051 Face 98402 14547 3652 49203 Face 98403 2763 49204 22454 Face 98404 2763 14647 49204 Face 98405 40286 49205 40285 Face 98406 40286 12119 49205 Face 98407 8994 49206 45984 Face 98408 8994 38628 49206 Face 98409 8985 49207 35072 Face 98410 8985 34212 49207 Face 98411 13169 49208 26463 Face 98412 13169 13337 49208 Face 98413 9471 49209 26453 Face 98414 9471 24982 49209 Face 98415 25679 49210 19823 Face 98416 25679 36495 49210 Face 98417 15320 49211 41991 Face 98418 15320 16963 49211 Face 98419 46763 49212 22691 Face 98420 46763 26281 49212 Face 98421 12805 49213 10851 Face 98422 12805 24793 49213 Face 98423 49215 49214 31796 Face 98424 8309 5644 49214 Face 98425 8309 49215 30405 Face 98426 8309 49214 49215 Face 98427 40682 49216 17270 Face 98428 40682 15526 49216 Face 98429 12228 49217 40715 Face 98430 12228 21088 49217 Face 98431 33218 49218 11618 Face 98432 33218 21048 49218 Face 98433 11471 49219 16374 Face 98434 11471 48256 49219 Face 98435 26377 49220 17938 Face 98436 26377 37560 49220 Face 98437 23016 49221 13211 Face 98438 23016 48774 49221 Face 98439 16575 49222 41407 Face 98440 16575 41408 49222 Face 98441 27868 49223 13564 Face 98442 27868 8023 49223 Face 98443 2670 49224 21787 Face 98444 2670 38240 49224 Face 98445 18362 49225 35169 Face 98446 18362 7650 49225 Face 98447 28943 49226 31662 Face 98448 28943 45505 49226 Face 98449 20872 49227 3507 Face 98450 20872 30581 49227 Face 98451 1152 49228 49227 Face 98452 1152 47791 49228 Face 98453 13123 49229 13325 Face 98454 13123 47093 49229 Face 98455 10822 49230 34719 Face 98456 10822 22782 49230 Face 98457 6837 49231 35251 Face 98458 6837 2415 49231 Face 98459 25245 49232 9023 Face 98460 25245 13130 49232 Face 98461 16255 49233 9756 Face 98462 16255 5883 49233 Face 98463 8313 49234 45957 Face 98464 8313 43542 49234 Face 98465 15456 49235 37760 Face 98466 15456 33491 49235 Face 98467 10090 49236 20577 Face 98468 10090 21181 49236 Face 98469 6489 49237 30623 Face 98470 6489 4372 49237 Face 98471 11996 49238 38948 Face 98472 11996 11997 49238 Face 98473 13608 49239 10614 Face 98474 13608 42478 49239 Face 98475 13804 49240 46570 Face 98476 13804 21212 49240 Face 98477 15868 49241 31006 Face 98478 15868 12850 49241 Face 98479 17297 49242 18402 Face 98480 17297 5809 49242 Face 98481 7832 49243 40663 Face 98482 7832 30840 49243 Face 98483 16786 49244 11313 Face 98484 16786 20818 49244 Face 98485 38757 49245 2343 Face 98486 38757 10601 49245 Face 98487 22645 49246 38573 Face 98488 22645 17781 49246 Face 98489 4508 49247 31427 Face 98490 4508 36693 49247 Face 98491 7853 49248 3383 Face 98492 7853 38336 49248 Face 98493 9744 49249 42636 Face 98494 9744 28742 49249 Face 98495 34510 49250 7104 Face 98496 34510 10098 49250 Face 98497 6653 49251 31659 Face 98498 6653 29228 49251 Face 98499 20091 49252 7503 Face 98500 20091 37851 49252 Face 98501 11758 49253 37595 Face 98502 11758 23297 49253 Face 98503 24227 49254 30000 Face 98504 24227 4495 49254 Face 98505 37545 49255 6215 Face 98506 37545 20217 49255 Face 98507 30765 49256 11604 Face 98508 30765 10832 49256 Face 98509 2737 49257 21579 Face 98510 2737 26188 49257 Face 98511 36950 49258 2980 Face 98512 36950 44955 49258 Face 98513 37524 49259 15016 Face 98514 37524 43767 49259 Face 98515 11481 49260 17105 Face 98516 11481 30059 49260 Face 98517 26264 49261 21028 Face 98518 26264 4715 49261 Face 98519 11291 49262 36434 Face 98520 49588 40697 49262 Face 98521 28035 49263 28034 Face 98522 28035 30861 49263 Face 98523 6920 49264 17530 Face 98524 6920 15328 49264 Face 98525 21127 49265 35569 Face 98526 21127 41035 49265 Face 98527 23014 49266 44768 Face 98528 23014 30143 49266 Face 98529 14909 49267 21828 Face 98530 14909 27269 49267 Face 98531 6603 49268 28701 Face 98532 6603 36516 49268 Face 98533 13308 49269 42134 Face 98534 13308 43561 49269 Face 98535 4948 49270 31846 Face 98536 4948 20608 49270 Face 98537 3524 49271 44434 Face 98538 3524 22805 49271 Face 98539 22073 49272 22989 Face 98540 22073 30509 49272 Face 98541 14470 49273 4032 Face 98542 14470 6781 49273 Face 98543 38050 49274 32858 Face 98544 38050 12832 49274 Face 98545 2279 49275 9795 Face 98546 2279 18542 49275 Face 98547 17736 49276 8031 Face 98548 17736 31733 49276 Face 98549 2451 49277 21379 Face 98550 2451 35220 49277 Face 98551 7998 49278 17691 Face 98552 7998 16490 49278 Face 98553 18286 49279 45120 Face 98554 18286 35699 49279 Face 98555 17199 49280 41197 Face 98556 17199 26260 49280 Face 98557 27562 49281 26014 Face 98558 27562 35128 49281 Face 98559 24034 49282 39834 Face 98560 24034 6175 49282 Face 98561 29122 49283 13391 Face 98562 29122 44874 49283 Face 98563 12153 49284 47917 Face 98564 12153 17859 49284 Face 98565 15811 49285 10319 Face 98566 15811 14937 49285 Face 98567 28621 49286 6776 Face 98568 28621 35602 49286 Face 98569 25954 49287 8794 Face 98570 25954 3889 49287 Face 98571 4602 49288 27334 Face 98572 4602 7671 49288 Face 98573 15166 49289 36895 Face 98574 15166 6490 49289 Face 98575 29961 49290 699 Face 98576 29961 27321 49290 Face 98577 13474 49291 4195 Face 98578 13474 15707 49291 Face 98579 32245 49292 10331 Face 98580 32245 23837 49292 Face 98581 17546 49293 34820 Face 98582 17546 12198 49293 Face 98583 24299 49294 2015 Face 98584 24299 1541 49294 Face 98585 13072 49295 41327 Face 98586 13072 30626 49295 Face 98587 18339 49296 7088 Face 98588 18339 36256 49296 Face 98589 8054 49297 23872 Face 98590 8054 26957 49297 Face 98591 22538 49298 19258 Face 98592 22538 32475 49298 Face 98593 17478 49299 25966 Face 98594 17478 29570 49299 Face 98595 49299 49300 25966 Face 98596 49299 3795 49300 Face 98597 12021 49301 3955 Face 98598 12021 7626 49301 Face 98599 15147 49302 43713 Face 98600 15147 28737 49302 Face 98601 29972 49303 23582 Face 98602 29972 31695 49303 Face 98603 6048 49304 30365 Face 98604 6048 36071 49304 Face 98605 17410 49305 31185 Face 98606 17410 47153 49305 Face 98607 22322 49306 8320 Face 98608 22322 29173 49306 Face 98609 22064 49307 33532 Face 98610 22064 8407 49307 Face 98611 31163 49308 15374 Face 98612 31163 11606 49308 Face 98613 24681 49309 5185 Face 98614 24681 25174 49309 Face 98615 4762 49310 19400 Face 98616 4762 24747 49310 Face 98617 32622 49311 34719 Face 98618 32622 30811 49311 Face 98619 11272 49312 149 Face 98620 11272 7949 49312 Face 98621 5780 49313 39652 Face 98622 5780 23634 49313 Face 98623 17230 49314 367 Face 98624 17230 43742 49314 Face 98625 20034 49315 6378 Face 98626 20034 2483 49315 Face 98627 1999 49316 36945 Face 98628 1999 30913 49316 Face 98629 2202 49317 28286 Face 98630 2202 24524 49317 Face 98631 13050 49318 945 Face 98632 13050 45468 49318 Face 98633 18064 49319 47382 Face 98634 18064 7389 49319 Face 98635 16800 49320 3301 Face 98636 16800 9328 49320 Face 98637 24735 49321 16649 Face 98638 24735 17470 49321 Face 98639 18991 49322 38110 Face 98640 18991 23281 49322 Face 98641 1098 49323 21847 Face 98642 1098 14299 49323 Face 98643 16166 49324 3943 Face 98644 16166 6654 49324 Face 98645 2412 49325 40684 Face 98646 49326 12586 49325 Face 98647 2412 49326 49325 Face 98648 2412 12587 49326 Face 98649 21507 49327 7770 Face 98650 21507 41800 49327 Face 98651 41663 49328 41662 Face 98652 41663 19135 49328 Face 98653 15280 49329 40194 Face 98654 15280 20848 49329 Face 98655 20320 49330 10907 Face 98656 20320 11045 49330 Face 98657 9472 49331 41021 Face 98658 9472 1696 49331 Face 98659 26361 49332 38826 Face 98660 26361 15944 49332 Face 98661 13123 49333 15184 Face 98662 13123 13325 49333 Face 98663 5011 49334 22696 Face 98664 5011 13191 49334 Face 98665 5026 49335 13902 Face 98666 5026 24315 49335 Face 98667 13042 49336 32774 Face 98668 13042 39164 49336 Face 98669 20087 49337 41957 Face 98670 20087 36897 49337 Face 98671 15900 49338 3761 Face 98672 15900 42817 49338 Face 98673 18353 49339 47350 Face 98674 18353 1418 49339 Face 98675 2474 49340 16558 Face 98676 2474 34677 49340 Face 98677 22219 49341 36323 Face 98678 22219 15083 49341 Face 98679 18645 49342 15927 Face 98680 18645 19524 49342 Face 98681 225 49343 14493 Face 98682 225 38624 49343 Face 98683 14669 49344 43744 Face 98684 14669 26351 49344 Face 98685 2417 49345 15645 Face 98686 2417 38361 49345 Face 98687 15290 49346 23058 Face 98688 15290 1718 49346 Face 98689 9689 49347 44177 Face 98690 9689 37160 49347 Face 98691 32372 49348 27965 Face 98692 32372 18896 49348 Face 98693 3122 49349 10604 Face 98694 3122 22046 49349 Face 98695 11118 49350 22809 Face 98696 11118 17265 49350 Face 98697 7211 49351 29751 Face 98698 7211 40466 49351 Face 98699 49353 49352 15878 Face 98700 1741 20092 49352 Face 98701 1741 49353 19141 Face 98702 1741 49352 49353 Face 98703 2787 49354 11346 Face 98704 2787 42749 49354 Face 98705 3726 49355 20014 Face 98706 3726 10644 49355 Face 98707 3980 49356 15928 Face 98708 3980 39741 49356 Face 98709 20696 49357 4310 Face 98710 20696 35902 49357 Face 98711 49395 49358 36068 Face 98712 21439 12067 49358 Face 98713 7300 49359 41205 Face 98714 7300 45679 49359 Face 98715 6783 49360 6782 Face 98716 6783 36966 49360 Face 98717 13909 49361 39584 Face 98718 13909 25097 49361 Face 98719 3455 49362 32064 Face 98720 3455 9879 49362 Face 98721 21917 49363 30298 Face 98722 21917 44879 49363 Face 98723 31761 49364 13806 Face 98724 31761 37410 49364 Face 98725 42145 49365 41432 Face 98726 42145 13596 49365 Face 98727 14710 49366 23772 Face 98728 14710 34010 49366 Face 98729 24764 49367 2110 Face 98730 24764 27227 49367 Face 98731 24984 49368 39388 Face 98732 24984 48644 49368 Face 98733 21610 49369 47089 Face 98734 21610 40235 49369 Face 98735 35422 49370 43887 Face 98736 35422 9814 49370 Face 98737 19562 49371 43671 Face 98738 19562 28183 49371 Face 98739 4122 49372 17130 Face 98740 4122 8444 49372 Face 98741 12168 49373 39361 Face 98742 12168 17289 49373 Face 98743 36332 49374 4282 Face 98744 36332 2578 49374 Face 98745 986 49375 10915 Face 98746 986 35349 49375 Face 98747 21477 49376 11178 Face 98748 21477 7213 49376 Face 98749 44644 49377 15125 Face 98750 44644 44645 49377 Face 98751 15472 49378 41595 Face 98752 15472 34394 49378 Face 98753 6420 49379 30882 Face 98754 6420 13388 49379 Face 98755 35947 49380 47036 Face 98756 35947 291 49380 Face 98757 16835 49381 44464 Face 98758 16835 38531 49381 Face 98759 11064 49382 42752 Face 98760 11064 21420 49382 Face 98761 27046 49383 19278 Face 98762 27046 40077 49383 Face 98763 36564 49384 3284 Face 98764 36564 8918 49384 Face 98765 3617 49385 13809 Face 98766 3617 49172 49385 Face 98767 17803 49386 37546 Face 98768 17803 48897 49386 Face 98769 49388 49387 8622 Face 98770 32902 24969 49387 Face 98771 32902 49388 41746 Face 98772 32902 49387 49388 Face 98773 2205 49389 27107 Face 98774 2205 33145 49389 Face 98775 49494 49390 30414 Face 98776 14769 4248 49390 Face 98777 23606 49391 20392 Face 98778 23606 7593 49391 Face 98779 17572 49392 4376 Face 98780 17572 48956 49392 Face 98781 18932 49393 14398 Face 98782 18932 41085 49393 Face 98783 26671 49394 64 Face 98784 26671 23106 49394 Face 98785 21439 49395 1545 Face 98786 21439 49358 49395 Face 98787 6033 49396 23479 Face 98788 6033 33495 49396 Face 98789 24372 49397 48790 Face 98790 24372 21086 49397 Face 98791 31934 49398 6900 Face 98792 31934 2295 49398 Face 98793 4082 49399 16738 Face 98794 4082 17082 49399 Face 98795 25515 49400 29012 Face 98796 25515 24288 49400 Face 98797 34559 49401 47079 Face 98798 34559 47981 49401 Face 98799 3718 49402 34930 Face 98800 3718 27981 49402 Face 98801 11281 49403 32762 Face 98802 11281 4050 49403 Face 98803 49405 49404 22120 Face 98804 10932 24134 49404 Face 98805 10932 49405 7709 Face 98806 10932 49404 49405 Face 98807 49407 49406 44744 Face 98808 49407 23235 49406 Face 98809 14573 49407 40423 Face 98810 14573 23235 49407 Face 98811 23084 49408 22081 Face 98812 23084 31287 49408 Face 98813 14022 49409 25941 Face 98814 14022 14023 49409 Face 98815 25192 49410 14269 Face 98816 25192 26810 49410 Face 98817 33279 49411 24979 Face 98818 33279 37726 49411 Face 98819 28749 49412 3601 Face 98820 28749 2902 49412 Face 98821 7009 49413 36837 Face 98822 7009 14011 49413 Face 98823 21364 49414 7308 Face 98824 21364 26853 49414 Face 98825 32464 49415 1211 Face 98826 32464 22802 49415 Face 98827 10198 49416 49048 Face 98828 10198 32766 49416 Face 98829 17003 49417 17004 Face 98830 17003 26436 49417 Face 98831 20429 49418 2475 Face 98832 20429 22793 49418 Face 98833 42113 49419 12262 Face 98834 42113 21906 49419 Face 98835 28196 49420 1260 Face 98836 28196 31928 49420 Face 98837 31361 49421 7400 Face 98838 31361 2363 49421 Face 98839 15608 49422 6006 Face 98840 49586 898 49422 Face 98841 20995 49423 33052 Face 98842 20995 9280 49423 Face 98843 13891 49424 48209 Face 98844 13891 3345 49424 Face 98845 32106 49425 894 Face 98846 32106 26192 49425 Face 98847 19674 49426 3421 Face 98848 19674 24114 49426 Face 98849 35154 49427 17112 Face 98850 35154 21802 49427 Face 98851 3134 49428 28869 Face 98852 3134 10599 49428 Face 98853 12223 49429 2571 Face 98854 12223 18846 49429 Face 98855 11790 49430 21151 Face 98856 11790 17086 49430 Face 98857 826 49431 30169 Face 98858 826 19982 49431 Face 98859 8906 49432 24873 Face 98860 8906 26818 49432 Face 98861 9486 49433 33118 Face 98862 9486 29561 49433 Face 98863 30819 49434 17964 Face 98864 30819 1717 49434 Face 98865 10214 49435 19857 Face 98866 10214 35676 49435 Face 98867 4388 49436 29101 Face 98868 4388 23958 49436 Face 98869 16774 49437 27810 Face 98870 16774 35290 49437 Face 98871 34679 49438 5847 Face 98872 34679 3473 49438 Face 98873 49440 49439 9159 Face 98874 30026 11783 49439 Face 98875 49591 49440 20056 Face 98876 30026 49439 49440 Face 98877 8199 49441 42485 Face 98878 8199 19497 49441 Face 98879 29845 49442 3061 Face 98880 29845 26842 49442 Face 98881 9583 49443 23423 Face 98882 9583 21126 49443 Face 98883 23212 49444 8737 Face 98884 23212 23213 49444 Face 98885 42461 49445 12544 Face 98886 42461 6875 49445 Face 98887 48816 49446 43134 Face 98888 48816 7571 49446 Face 98889 13313 49447 39830 Face 98890 13313 2154 49447 Face 98891 20665 49448 214 Face 98892 20665 41259 49448 Face 98893 1187 49449 11801 Face 98894 1187 34158 49449 Face 98895 22397 49450 44043 Face 98896 22397 32193 49450 Face 98897 2669 49451 49104 Face 98898 2669 7726 49451 Face 98899 7130 49452 4303 Face 98900 7130 44704 49452 Face 98901 10422 49453 48427 Face 98902 10422 3746 49453 Face 98903 32110 49454 2435 Face 98904 32110 39256 49454 Face 98905 30032 49455 3976 Face 98906 30032 885 49455 Face 98907 4995 49456 44612 Face 98908 4995 39177 49456 Face 98909 28531 49457 3914 Face 98910 28531 372 49457 Face 98911 27954 49458 6579 Face 98912 27954 24460 49458 Face 98913 20373 49459 39802 Face 98914 20373 48585 49459 Face 98915 5513 49460 21525 Face 98916 5513 35063 49460 Face 98917 10527 49461 17127 Face 98918 10527 37252 49461 Face 98919 6955 49462 31469 Face 98920 6955 4270 49462 Face 98921 942 49463 47533 Face 98922 942 13366 49463 Face 98923 15096 49464 9049 Face 98924 15096 40046 49464 Face 98925 45379 49465 17758 Face 98926 45379 14936 49465 Face 98927 1042 49466 14916 Face 98928 1042 22335 49466 Face 98929 22081 49467 10885 Face 98930 22081 34156 49467 Face 98931 6842 49468 29190 Face 98932 6842 26114 49468 Face 98933 35308 49469 19758 Face 98934 35308 10708 49469 Face 98935 16848 49470 31063 Face 98936 16848 43091 49470 Face 98937 21068 49471 5550 Face 98938 21068 23005 49471 Face 98939 11849 49472 9417 Face 98940 11849 13015 49472 Face 98941 29324 49473 34447 Face 98942 29324 5679 49473 Face 98943 21267 49474 5945 Face 98944 21267 1360 49474 Face 98945 41850 49475 9102 Face 98946 41850 40214 49475 Face 98947 15478 49476 49150 Face 98948 15478 1306 49476 Face 98949 28886 49477 34170 Face 98950 28886 23681 49477 Face 98951 4169 49478 22677 Face 98952 4169 13039 49478 Face 98953 22401 49479 43768 Face 98954 22401 5824 49479 Face 98955 21692 49480 20725 Face 98956 21692 42912 49480 Face 98957 7645 49481 28037 Face 98958 7645 20591 49481 Face 98959 29302 49482 36697 Face 98960 29302 21455 49905 Face 98961 36419 49483 28049 Face 98962 36419 26097 49483 Face 98963 11594 49484 21185 Face 98964 11594 17007 49484 Face 98965 3694 49485 14712 Face 98966 3694 23491 49485 Face 98967 15561 49486 20169 Face 98968 15561 29358 49486 Face 98969 13152 49487 4895 Face 98970 13152 39750 49487 Face 98971 771 49488 29250 Face 98972 771 19916 49488 Face 98973 18508 49489 48661 Face 98974 18508 13076 49489 Face 98975 36034 49490 15177 Face 98976 36034 41214 49490 Face 98977 33488 49491 8780 Face 98978 33488 34112 49491 Face 98979 16801 49492 34714 Face 98980 16801 34223 49492 Face 98981 4338 49493 10989 Face 98982 4338 46199 49493 Face 98983 14769 49494 23824 Face 98984 14769 49390 49494 Face 98985 17698 49495 1819 Face 98986 17698 21695 49495 Face 98987 7785 49496 24833 Face 98988 7785 20807 49496 Face 98989 33005 49497 20959 Face 98990 33005 13873 49497 Face 98991 20954 49498 34704 Face 98992 20954 1570 49498 Face 98993 34802 49499 37692 Face 98994 34802 46929 49499 Face 98995 6621 49500 43825 Face 98996 6621 47101 49500 Face 98997 24773 49501 16781 Face 98998 24773 49166 49501 Face 98999 13602 49502 25384 Face 99000 49884 10636 49502 Face 99001 6810 49503 23139 Face 99002 6810 13481 49503 Face 99003 35521 49504 2837 Face 99004 35521 28950 49504 Face 99005 49506 49505 12111 Face 99006 1934 3366 49505 Face 99007 1934 49506 28721 Face 99008 1934 49505 49506 Face 99009 971 49507 15902 Face 99010 971 11837 49507 Face 99011 15679 49508 6305 Face 99012 15679 20605 49508 Face 99013 29399 49509 5679 Face 99014 29399 30050 49509 Face 99015 9098 49510 22593 Face 99016 9098 12102 49510 Face 99017 15927 49511 9821 Face 99018 15927 49342 49511 Face 99019 12482 49512 28455 Face 99020 12482 28817 49512 Face 99021 6700 49513 44019 Face 99022 6700 30917 49513 Face 99023 13176 49514 35108 Face 99024 49515 7543 49514 Face 99025 13176 49515 49514 Face 99026 13176 31822 49515 Face 99027 2226 49516 10795 Face 99028 2226 42340 49516 Face 99029 23263 49517 35579 Face 99030 49851 39444 49517 Face 99031 49519 49518 44952 Face 99032 7458 22908 49518 Face 99033 7458 49519 9861 Face 99034 7458 49518 49519 Face 99035 21369 49520 20528 Face 99036 21369 39574 49520 Face 99037 13696 49521 8917 Face 99038 13696 10458 49521 Face 99039 18825 49522 22014 Face 99040 18825 2834 49522 Face 99041 457 49523 31230 Face 99042 457 21229 49523 Face 99043 36912 49524 25641 Face 99044 36912 9152 49524 Face 99045 49526 49525 6134 Face 99046 710 43396 49525 Face 99047 710 49526 25602 Face 99048 710 49525 49526 Face 99049 3663 49527 46881 Face 99050 3663 21543 49527 Face 99051 22735 49528 37144 Face 99052 22735 401 49528 Face 99053 14398 49529 8925 Face 99054 14398 49393 49529 Face 99055 20714 49530 46215 Face 99056 20714 22163 49530 Face 99057 19479 49531 3477 Face 99058 19479 34357 49531 Face 99059 17853 49532 16803 Face 99060 17853 17854 49532 Face 99061 39858 49533 11488 Face 99062 39858 40956 49533 Face 99063 19177 49534 31600 Face 99064 19177 34284 49534 Face 99065 27153 49535 14632 Face 99066 27153 2956 49535 Face 99067 23013 49536 26716 Face 99068 23013 9131 49536 Face 99069 6880 49537 22992 Face 99070 6880 1066 49537 Face 99071 4670 49538 35862 Face 99072 4670 27429 49538 Face 99073 11962 49539 24554 Face 99074 11962 13235 49539 Face 99075 1944 49540 19852 Face 99076 1944 36719 49540 Face 99077 36813 49541 34349 Face 99078 36813 2900 49541 Face 99079 3945 49542 47149 Face 99080 3945 24809 49542 Face 99081 11493 49543 16531 Face 99082 11493 37477 49543 Face 99083 16587 49544 44604 Face 99084 16587 37175 49544 Face 99085 9897 49545 14523 Face 99086 9897 28388 49545 Face 99087 11497 49546 38479 Face 99088 11497 27991 49546 Face 99089 23898 49547 21573 Face 99090 23898 31684 49547 Face 99091 21686 49548 39912 Face 99092 21686 32132 49548 Face 99093 17533 49549 2570 Face 99094 17533 32231 49549 Face 99095 23572 49550 41276 Face 99096 23572 11069 49550 Face 99097 3859 49551 35502 Face 99098 3859 43051 49551 Face 99099 40428 49552 10038 Face 99100 40428 21900 49552 Face 99101 9161 49553 13276 Face 99102 9161 33174 49553 Face 99103 29958 49554 28418 Face 99104 29958 9418 49554 Face 99105 17826 49555 15338 Face 99106 17826 41041 49555 Face 99107 27674 49556 39307 Face 99108 27674 3171 49556 Face 99109 12588 49557 43442 Face 99110 12588 35940 49557 Face 99111 2361 49558 16396 Face 99112 2361 21060 49558 Face 99113 24262 49559 47806 Face 99114 24262 20325 49559 Face 99115 32805 49560 32806 Face 99116 32805 349 49560 Face 99117 31520 49561 33907 Face 99118 31520 13822 49561 Face 99119 32840 49562 22949 Face 99120 32840 27968 49562 Face 99121 24836 49563 42041 Face 99122 24836 3643 49563 Face 99123 6647 49564 39589 Face 99124 6647 47893 49564 Face 99125 4355 49565 14985 Face 99126 4355 35918 49565 Face 99127 24971 49566 278 Face 99128 24971 8461 49566 Face 99129 12707 49567 42496 Face 99130 12707 31576 49567 Face 99131 33605 49568 26491 Face 99132 33605 31429 49568 Face 99133 25802 49569 4932 Face 99134 25802 2973 49569 Face 99135 32535 49570 18764 Face 99136 32535 3277 49570 Face 99137 30320 49571 36873 Face 99138 30320 12664 49571 Face 99139 9299 49572 25885 Face 99140 9299 19537 49572 Face 99141 7899 49573 35306 Face 99142 7899 26722 49573 Face 99143 8953 49574 19824 Face 99144 8953 17700 49574 Face 99145 30315 49575 49706 Face 99146 30315 40909 49575 Face 99147 29358 49576 21641 Face 99148 29358 29359 49576 Face 99149 8953 49577 24819 Face 99150 8953 36960 49577 Face 99151 27320 49578 47879 Face 99152 27320 9773 49578 Face 99153 14772 49579 34494 Face 99154 14772 17358 49579 Face 99155 6619 49580 28493 Face 99156 6619 15747 49580 Face 99157 6182 49581 46978 Face 99158 6182 12019 49581 Face 99159 1653 49582 35407 Face 99160 1653 15499 49582 Face 99161 555 49583 23812 Face 99162 555 48991 49583 Face 99163 27183 49584 25883 Face 99164 27183 5463 49584 Face 99165 36802 49585 30497 Face 99166 36802 36801 49585 Face 99167 15608 49586 49422 Face 99168 15608 23165 49586 Face 99169 11349 49587 1333 Face 99170 11349 22444 49587 Face 99171 11291 49588 49262 Face 99172 11291 8843 49588 Face 99173 11124 49589 19612 Face 99174 11124 33019 49589 Face 99175 6343 49590 18168 Face 99176 6343 13359 49590 Face 99177 30026 49591 42525 Face 99178 30026 49440 49591 Face 99179 39944 49592 30556 Face 99180 39944 36329 49592 Face 99181 24317 49593 591 Face 99182 24317 4685 49593 Face 99183 22834 49594 44141 Face 99184 22834 12241 49594 Face 99185 632 49595 26339 Face 99186 632 28408 49595 Face 99187 27465 49596 30554 Face 99188 27465 45687 49596 Face 99189 20466 49597 3092 Face 99190 20466 17404 49597 Face 99191 4578 49598 30266 Face 99192 4578 18265 49598 Face 99193 16447 49599 17870 Face 99194 16447 41313 49599 Face 99195 9440 49600 22364 Face 99196 9440 36408 49600 Face 99197 6704 49601 17470 Face 99198 6704 40506 49601 Face 99199 40674 49602 22471 Face 99200 40674 43549 49602 Face 99201 39561 49603 45907 Face 99202 39561 14796 49603 Face 99203 2650 49604 11781 Face 99204 2650 26359 49604 Face 99205 25530 49605 2307 Face 99206 25530 12518 49605 Face 99207 7735 49606 22688 Face 99208 7735 14105 49606 Face 99209 22486 49607 4935 Face 99210 22486 10190 49607 Face 99211 20 49608 24740 Face 99212 20 11214 49608 Face 99213 10043 49609 40210 Face 99214 10043 40211 49609 Face 99215 19493 49610 15 Face 99216 19493 45023 49610 Face 99217 13293 49611 11559 Face 99218 13293 31871 49611 Face 99219 23337 49612 38792 Face 99220 23337 47560 49612 Face 99221 26204 49613 13422 Face 99222 26204 13421 49613 Face 99223 26600 49614 20013 Face 99224 26600 38546 49614 Face 99225 27762 49615 16733 Face 99226 27762 10190 49615 Face 99227 10835 49616 31712 Face 99228 10835 13672 49616 Face 99229 228 49617 9012 Face 99230 228 7358 49617 Face 99231 29284 49618 25878 Face 99232 29284 1641 49618 Face 99233 25352 49619 9258 Face 99234 25352 17631 49619 Face 99235 28580 49620 5484 Face 99236 28580 10355 49620 Face 99237 5051 49621 13187 Face 99238 5051 3439 49621 Face 99239 41060 49622 41059 Face 99240 41060 12459 49622 Face 99241 23889 49623 17424 Face 99242 50000 23326 49623 Face 99243 6570 49624 46269 Face 99244 6570 26023 49624 Face 99245 21506 49625 39156 Face 99246 21506 4624 49625 Face 99247 12666 49626 27061 Face 99248 12666 41257 49626 Face 99249 4893 49627 23095 Face 99250 4893 46031 49627 Face 99251 28008 49628 43928 Face 99252 28008 27802 49628 Face 99253 18673 49629 12704 Face 99254 18673 38493 49629 Face 99255 11597 49630 18278 Face 99256 11597 21243 49630 Face 99257 29749 49631 22396 Face 99258 29749 6109 49631 Face 99259 15403 49632 8529 Face 99260 15403 23755 49632 Face 99261 8046 49633 35111 Face 99262 8046 18437 49633 Face 99263 18613 49634 36681 Face 99264 18613 3831 49634 Face 99265 7773 49635 4815 Face 99266 7773 42403 49635 Face 99267 37297 49636 632 Face 99268 37297 13738 49636 Face 99269 14427 49637 1758 Face 99270 14427 36417 49637 Face 99271 18611 49638 4786 Face 99272 18611 9491 49638 Face 99273 3483 49639 32821 Face 99274 3483 29877 49639 Face 99275 3322 49640 48755 Face 99276 3322 10378 49640 Face 99277 2691 49641 38293 Face 99278 2691 41916 49641 Face 99279 37341 49642 31787 Face 99280 37341 23574 49642 Face 99281 30983 49643 36598 Face 99282 30983 14139 49643 Face 99283 22429 49644 36188 Face 99284 22429 7765 49644 Face 99285 7678 49645 29851 Face 99286 7678 29522 49645 Face 99287 2236 49646 19590 Face 99288 2236 4690 49646 Face 99289 31062 49647 17968 Face 99290 31062 10699 49647 Face 99291 4629 49648 29042 Face 99292 4629 43092 49648 Face 99293 20753 49649 14520 Face 99294 20753 12002 49649 Face 99295 15761 49650 40780 Face 99296 15761 27743 49650 Face 99297 13255 49651 44440 Face 99298 13255 20640 49651 Face 99299 726 49652 21237 Face 99300 726 8258 49652 Face 99301 30362 49653 13553 Face 99302 30362 18610 49653 Face 99303 115 49654 27612 Face 99304 115 31536 49654 Face 99305 14029 49655 32124 Face 99306 14029 17312 49655 Face 99307 5461 49656 18168 Face 99308 5461 38560 49656 Face 99309 265 49657 23714 Face 99310 265 20963 49657 Face 99311 29746 49658 9489 Face 99312 29746 27821 49658 Face 99313 26931 49659 30693 Face 99314 26931 12763 49659 Face 99315 30656 49660 39188 Face 99316 30656 10589 49660 Face 99317 190 49661 39248 Face 99318 190 11948 49661 Face 99319 25672 49662 16276 Face 99320 25672 15234 49662 Face 99321 29526 49663 3651 Face 99322 29526 19116 49663 Face 99323 24350 49664 12406 Face 99324 24350 12407 49664 Face 99325 5554 49665 35661 Face 99326 5554 5978 49665 Face 99327 34028 49666 24200 Face 99328 34028 27865 49666 Face 99329 10682 49667 29265 Face 99330 10682 5177 49667 Face 99331 1250 49668 8844 Face 99332 1250 15592 49668 Face 99333 7562 49669 10287 Face 99334 7562 45060 49669 Face 99335 8333 49670 17383 Face 99336 8333 27372 49670 Face 99337 2747 49671 11568 Face 99338 2747 6386 49671 Face 99339 17441 49672 45097 Face 99340 17441 30644 49672 Face 99341 8208 49673 21256 Face 99342 8208 39917 49673 Face 99343 6447 49674 26099 Face 99344 6447 47109 49674 Face 99345 4416 49675 35847 Face 99346 4416 32493 49675 Face 99347 22955 49676 45563 Face 99348 22955 17920 49676 Face 99349 233 49677 16822 Face 99350 233 30652 49677 Face 99351 5979 49678 44821 Face 99352 5979 22536 49678 Face 99353 36461 49679 14658 Face 99354 36461 14591 49679 Face 99355 2213 49680 39194 Face 99356 2213 27139 49680 Face 99357 5349 49681 21974 Face 99358 5349 31688 49681 Face 99359 1413 49682 18950 Face 99360 1413 23396 49682 Face 99361 145 49683 46102 Face 99362 145 49846 49683 Face 99363 15302 49684 13740 Face 99364 15302 47507 49684 Face 99365 11482 49685 1705 Face 99366 11482 41664 49685 Face 99367 35428 49686 15349 Face 99368 35428 46740 49686 Face 99369 2762 49687 41438 Face 99370 2762 46560 49687 Face 99371 25066 49688 37382 Face 99372 25066 42325 49688 Face 99373 3358 49689 30295 Face 99374 3358 18484 49689 Face 99375 17635 49690 16896 Face 99376 17635 2684 49690 Face 99377 28241 49691 28751 Face 99378 28241 28724 49691 Face 99379 2313 49692 16102 Face 99380 2313 43635 49692 Face 99381 21347 49693 42486 Face 99382 21347 10762 49693 Face 99383 9349 49694 29170 Face 99384 9349 28429 49694 Face 99385 13784 49695 17559 Face 99386 13784 49838 49695 Face 99387 18046 49696 44396 Face 99388 18046 43357 49696 Face 99389 10728 49697 30250 Face 99390 10728 10972 49697 Face 99391 706 49698 9355 Face 99392 706 20414 49698 Face 99393 30261 49699 27168 Face 99394 30261 19652 49699 Face 99395 26524 49700 19740 Face 99396 26524 16585 49700 Face 99397 26244 49701 47086 Face 99398 26244 26245 49701 Face 99399 28421 49702 43576 Face 99400 28421 16559 49702 Face 99401 24930 49703 9658 Face 99402 24930 15219 49703 Face 99403 19043 49704 2300 Face 99404 19043 49129 49704 Face 99405 20459 49705 16034 Face 99406 20459 44883 49705 Face 99407 45788 49706 27985 Face 99408 45788 30315 49706 Face 99409 12931 49707 7119 Face 99410 12931 30117 49707 Face 99411 25727 49708 20120 Face 99412 25727 6271 49708 Face 99413 3298 49709 8224 Face 99414 3298 16904 49709 Face 99415 5928 49710 20980 Face 99416 5928 20331 49710 Face 99417 45662 49711 16157 Face 99418 45662 4949 49711 Face 99419 30848 49712 39215 Face 99420 30848 29313 49712 Face 99421 14615 49713 46329 Face 99422 14615 40202 49713 Face 99423 2948 49714 43686 Face 99424 2948 39707 49714 Face 99425 19358 49715 19455 Face 99426 19358 18911 49715 Face 99427 24884 49716 17144 Face 99428 24884 41921 49716 Face 99429 6136 49717 17273 Face 99430 6136 12060 49717 Face 99431 242 49718 17244 Face 99432 242 38641 49718 Face 99433 17772 49719 14066 Face 99434 17772 10568 49719 Face 99435 1828 49720 10089 Face 99436 1828 36259 49720 Face 99437 32073 49721 47564 Face 99438 32073 12325 49721 Face 99439 7498 49722 21007 Face 99440 7498 18486 49722 Face 99441 13223 49723 47166 Face 99442 13223 3278 49723 Face 99443 31747 49724 9978 Face 99444 31747 20758 49724 Face 99445 19542 49725 34757 Face 99446 19542 32355 49725 Face 99447 30254 49726 1078 Face 99448 30254 697 49726 Face 99449 16681 49727 17421 Face 99450 16681 37857 49727 Face 99451 13201 49728 13202 Face 99452 13201 3967 49728 Face 99453 2094 49729 46575 Face 99454 2094 12084 49729 Face 99455 29365 49730 3977 Face 99456 29365 29786 49730 Face 99457 15125 49731 21381 Face 99458 15125 49377 49731 Face 99459 12046 49732 13138 Face 99460 12046 35478 49732 Face 99461 5787 49733 16450 Face 99462 5787 260 49733 Face 99463 25361 49734 11772 Face 99464 25361 10488 49734 Face 99465 10366 49735 31593 Face 99466 10366 46707 49735 Face 99467 23137 49736 2689 Face 99468 23137 13372 49736 Face 99469 1826 49737 29614 Face 99470 1826 33618 49737 Face 99471 8710 49738 6213 Face 99472 8710 26739 49738 Face 99473 7494 49739 37829 Face 99474 7494 36619 49739 Face 99475 19133 49740 17512 Face 99476 19133 30958 49740 Face 99477 14602 49741 17433 Face 99478 14602 28993 49741 Face 99479 6017 49742 45396 Face 99480 6017 41686 49742 Face 99481 13821 49743 13822 Face 99482 13821 28112 49743 Face 99483 12058 49744 41819 Face 99484 12058 10004 49744 Face 99485 12462 49745 3034 Face 99486 12462 24874 49745 Face 99487 10678 49746 2819 Face 99488 10678 3566 49746 Face 99489 18984 49747 26822 Face 99490 18984 39229 49747 Face 99491 28016 49748 20978 Face 99492 28016 48916 49748 Face 99493 38622 49749 7367 Face 99494 38622 7368 49749 Face 99495 21870 49750 24514 Face 99496 21870 26169 49750 Face 99497 2257 49751 32161 Face 99498 2257 3627 49751 Face 99499 18574 49752 7080 Face 99500 18574 8696 49752 Face 99501 46854 49754 33706 Face 99502 46854 20010 49753 Face 99503 49753 49754 46854 Face 99504 49753 33706 49754 Face 99505 21874 49755 29562 Face 99506 21874 4990 49755 Face 99507 8152 49756 32501 Face 99508 8152 27940 49756 Face 99509 8187 49757 38213 Face 99510 8187 30798 49757 Face 99511 16771 49758 46012 Face 99512 16771 15375 49758 Face 99513 14586 49759 36102 Face 99514 49834 955 49759 Face 99515 18585 49760 26402 Face 99516 18585 44614 49760 Face 99517 17810 49761 32403 Face 99518 17810 27978 49761 Face 99519 12216 49762 44641 Face 99520 12216 21524 49762 Face 99521 31359 49763 18836 Face 99522 31359 19604 49763 Face 99523 6806 49764 40143 Face 99524 6806 26998 49764 Face 99525 14332 49765 33347 Face 99526 14332 905 49765 Face 99527 25758 49766 43853 Face 99528 25758 18063 49766 Face 99529 17078 49767 3469 Face 99530 17078 6011 49767 Face 99531 14186 49768 16433 Face 99532 14186 8288 49768 Face 99533 30499 49769 6153 Face 99534 30499 7355 49769 Face 99535 41481 49770 27392 Face 99536 41481 45007 49770 Face 99537 2713 49771 11631 Face 99538 2713 41547 49771 Face 99539 4910 49772 18836 Face 99540 4910 29137 49772 Face 99541 31632 49773 8823 Face 99542 31632 1485 49773 Face 99543 18277 49774 11036 Face 99544 18277 26955 49774 Face 99545 28813 49775 37955 Face 99546 28813 34801 49775 Face 99547 6379 49776 22632 Face 99548 6379 27230 49776 Face 99549 6374 49777 18489 Face 99550 6374 40842 49777 Face 99551 3613 49778 33503 Face 99552 3613 41707 49778 Face 99553 14627 49779 27825 Face 99554 14627 14805 49779 Face 99555 4478 49780 24775 Face 99556 4478 26234 49780 Face 99557 17760 49781 36902 Face 99558 17760 7159 49781 Face 99559 26167 49782 16046 Face 99560 26167 4346 49782 Face 99561 2222 49783 23521 Face 99562 2222 7540 49783 Face 99563 24890 49784 16016 Face 99564 24890 17114 49784 Face 99565 24228 49785 3250 Face 99566 24228 23999 49785 Face 99567 4540 49786 32986 Face 99568 4540 35965 49786 Face 99569 27005 49787 23123 Face 99570 27005 77 49787 Face 99571 7114 49788 19247 Face 99572 7114 12957 49788 Face 99573 2192 49789 15562 Face 99574 2192 20401 49789 Face 99575 14441 49790 14440 Face 99576 14441 47982 49790 Face 99577 31306 49791 35204 Face 99578 31306 7090 49791 Face 99579 16927 49792 3025 Face 99580 16927 2894 49792 Face 99581 36065 49793 11914 Face 99582 36065 18071 49793 Face 99583 23280 49794 45550 Face 99584 23280 24920 49794 Face 99585 27687 49795 15060 Face 99586 27687 14203 49795 Face 99587 23292 49796 9844 Face 99588 23292 2706 49796 Face 99589 4759 49797 3887 Face 99590 4759 36980 49797 Face 99591 2205 49798 4126 Face 99592 2205 27107 49798 Face 99593 16675 49799 20282 Face 99594 16675 3712 49799 Face 99595 31437 49800 4218 Face 99596 31437 16012 49800 Face 99597 36737 49801 10876 Face 99598 36737 4373 49801 Face 99599 9188 49802 31948 Face 99600 9188 24926 49802 Face 99601 18517 49803 32717 Face 99602 18517 5429 49803 Face 99603 15867 49804 3984 Face 99604 15867 2876 49804 Face 99605 929 49805 30157 Face 99606 929 17918 49805 Face 99607 2488 49806 19168 Face 99608 2488 31676 49806 Face 99609 22441 49807 200 Face 99610 22441 26665 49807 Face 99611 16453 49808 22246 Face 99612 16453 30384 49808 Face 99613 19568 49809 29031 Face 99614 19568 29021 49809 Face 99615 30418 49810 2405 Face 99616 30418 20349 49810 Face 99617 16728 49811 5543 Face 99618 16728 35991 49811 Face 99619 24946 49812 22156 Face 99620 24946 11454 49812 Face 99621 832 49813 16449 Face 99622 832 24561 49813 Face 99623 24859 49814 35801 Face 99624 24859 17940 49814 Face 99625 12792 49815 27271 Face 99626 12792 37148 49815 Face 99627 16197 49816 30582 Face 99628 16197 17341 49816 Face 99629 25237 49817 20582 Face 99630 25237 32098 49817 Face 99631 14677 49818 17555 Face 99632 14677 9890 49818 Face 99633 29413 49819 36408 Face 99634 29413 161 49819 Face 99635 42482 49820 30935 Face 99636 42482 19276 49820 Face 99637 8323 49821 24638 Face 99638 8323 24986 49821 Face 99639 31263 49822 27391 Face 99640 31263 39123 49822 Face 99641 31338 49823 13989 Face 99642 31338 25721 49823 Face 99643 12358 49824 40388 Face 99644 12358 15046 49824 Face 99645 16352 49825 41569 Face 99646 16352 18560 49825 Face 99647 14017 49826 14018 Face 99648 14017 4151 49826 Face 99649 31497 49827 41197 Face 99650 31497 20177 49827 Face 99651 39079 49828 2127 Face 99652 39079 30912 49828 Face 99653 5555 49829 12146 Face 99654 5555 27815 49829 Face 99655 9409 49830 30496 Face 99656 9409 15466 49830 Face 99657 11244 49831 39789 Face 99658 11244 22694 49831 Face 99659 11768 49832 29377 Face 99660 11768 20415 49832 Face 99661 8586 49833 39973 Face 99662 8586 25598 49833 Face 99663 14586 49834 49759 Face 99664 14586 31058 49834 Face 99665 9944 49835 31512 Face 99666 9944 31155 49835 Face 99667 28015 49836 11801 Face 99668 28015 9083 49836 Face 99669 3129 49837 24092 Face 99670 3129 20591 49837 Face 99671 26139 49838 26140 Face 99672 26139 49695 49838 Face 99673 2848 49839 45907 Face 99674 2848 8725 49839 Face 99675 33172 49840 1166 Face 99676 33172 25158 49840 Face 99677 31647 49841 8215 Face 99678 31647 445 49841 Face 99679 22016 49842 47575 Face 99680 22016 859 49842 Face 99681 23485 49843 3952 Face 99682 23485 43225 49843 Face 99683 43506 49844 48453 Face 99684 43506 2969 49844 Face 99685 35690 49845 40087 Face 99686 35690 15655 49845 Face 99687 2079 49846 34807 Face 99688 2079 49683 49846 Face 99689 22385 49847 7822 Face 99690 22385 2808 49847 Face 99691 22788 49848 9194 Face 99692 22788 16410 49848 Face 99693 7152 49849 43035 Face 99694 7152 28105 49849 Face 99695 32623 49850 9171 Face 99696 32623 45258 49850 Face 99697 23263 49851 49517 Face 99698 23263 6288 49851 Face 99699 19416 49852 9220 Face 99700 19416 11370 49852 Face 99701 17233 49853 7972 Face 99702 17233 31137 49853 Face 99703 21769 49854 11955 Face 99704 21769 47962 49854 Face 99705 39612 49855 31053 Face 99706 39612 6593 49855 Face 99707 24325 49856 48483 Face 99708 24325 17513 49856 Face 99709 31406 49857 16039 Face 99710 31406 22627 49857 Face 99711 3269 49858 19563 Face 99712 3269 26347 49858 Face 99713 13914 49859 41528 Face 99714 13914 7282 49859 Face 99715 27773 49860 46488 Face 99716 27773 13356 49860 Face 99717 8668 49861 23713 Face 99718 49936 11079 49861 Face 99719 20692 49862 15286 Face 99720 20692 28487 49862 Face 99721 8057 49863 32904 Face 99722 8057 33719 49863 Face 99723 27084 49864 20212 Face 99724 27084 4247 49864 Face 99725 34269 49865 30013 Face 99726 34269 19931 49865 Face 99727 11328 49866 12412 Face 99728 11328 23847 49866 Face 99729 32138 49867 24024 Face 99730 32138 6735 49867 Face 99731 22775 49868 22776 Face 99732 22775 14156 49868 Face 99733 19671 49869 3608 Face 99734 19671 25645 49869 Face 99735 19108 49870 18816 Face 99736 19108 11396 49870 Face 99737 14820 49871 16475 Face 99738 14820 29136 49871 Face 99739 34701 49872 16396 Face 99740 34701 43578 49872 Face 99741 19422 49873 27049 Face 99742 19422 3341 49873 Face 99743 12765 49874 18875 Face 99744 12765 26664 49874 Face 99745 26403 49875 35578 Face 99746 26403 35139 49875 Face 99747 18805 49876 13600 Face 99748 18805 20963 49876 Face 99749 21001 49877 20810 Face 99750 21001 22063 49877 Face 99751 15429 49878 22365 Face 99752 15429 43679 49878 Face 99753 30449 49879 9946 Face 99754 30449 29368 49879 Face 99755 20344 49880 30256 Face 99756 20344 41572 49880 Face 99757 7273 49881 29519 Face 99758 7273 23594 49881 Face 99759 19270 49882 28810 Face 99760 19270 9697 49882 Face 99761 30539 49883 19229 Face 99762 30539 23783 49883 Face 99763 13602 49884 49502 Face 99764 13602 25905 49884 Face 99765 15865 49885 31788 Face 99766 15865 27778 49885 Face 99767 4246 49886 13793 Face 99768 4246 35758 49886 Face 99769 5935 49887 13291 Face 99770 5935 40602 49887 Face 99771 5882 49888 24435 Face 99772 5882 29282 49888 Face 99773 24280 49889 12438 Face 99774 24280 44146 49889 Face 99775 39406 49890 29810 Face 99776 39406 29779 49890 Face 99777 27285 49891 45344 Face 99778 27285 953 49891 Face 99779 12219 49892 32993 Face 99780 12219 23081 49892 Face 99781 6751 49893 18547 Face 99782 6751 17037 49893 Face 99783 41196 49894 37672 Face 99784 41196 44261 49894 Face 99785 19775 49895 41771 Face 99786 19775 46427 49895 Face 99787 1179 49896 17019 Face 99788 1179 31204 49896 Face 99789 10606 49897 43394 Face 99790 10606 21854 49897 Face 99791 24593 49898 16916 Face 99792 24593 1269 49898 Face 99793 1711 49899 37795 Face 99794 1711 23072 49899 Face 99795 2197 49900 20377 Face 99796 2197 22967 49900 Face 99797 3736 49901 12976 Face 99798 3736 15818 49901 Face 99799 259 49902 12983 Face 99800 259 11998 49902 Face 99801 24640 49903 3339 Face 99802 24640 31067 49903 Face 99803 8798 49904 48621 Face 99804 8798 34551 49904 Face 99805 49482 49905 36095 Face 99806 49482 29302 49905 Face 99807 13483 49906 8872 Face 99808 13483 43902 49906 Face 99809 16944 49907 7193 Face 99810 16944 6673 49907 Face 99811 18940 49908 38744 Face 99812 18940 4285 49908 Face 99813 16228 49909 36374 Face 99814 16228 24251 49909 Face 99815 9175 49910 26316 Face 99816 9175 10273 49910 Face 99817 6293 49911 13486 Face 99818 6293 42682 49911 Face 99819 7574 49912 31512 Face 99820 7574 34645 49912 Face 99821 27470 49913 24240 Face 99822 27470 9534 49913 Face 99823 19044 49914 42967 Face 99824 19044 13458 49914 Face 99825 12116 49915 15540 Face 99826 12116 11551 49915 Face 99827 5402 49916 24484 Face 99828 5402 15337 49916 Face 99829 10643 49917 25651 Face 99830 10643 13907 49917 Face 99831 12615 49918 18817 Face 99832 12615 12230 49918 Face 99833 14155 49919 44948 Face 99834 14155 3571 49919 Face 99835 1723 49920 32673 Face 99836 1723 6618 49920 Face 99837 7768 49921 22621 Face 99838 7768 40351 49921 Face 99839 22406 49922 8343 Face 99840 22406 38275 49922 Face 99841 33672 49923 45330 Face 99842 33672 1075 49923 Face 99843 14753 49924 45096 Face 99844 14753 16737 49924 Face 99845 20579 49925 36151 Face 99846 20579 35067 49925 Face 99847 2698 49926 4965 Face 99848 2698 23770 49926 Face 99849 15683 49927 15684 Face 99850 15683 12067 49927 Face 99851 13375 49928 32406 Face 99852 13375 27474 49928 Face 99853 23074 49929 13079 Face 99854 23074 5277 49929 Face 99855 27230 49930 20529 Face 99856 27230 18453 49930 Face 99857 28320 49931 8048 Face 99858 28320 39254 49931 Face 99859 9074 49932 24812 Face 99860 9074 4852 49932 Face 99861 31804 49933 12988 Face 99862 31804 11447 49933 Face 99863 10859 49934 40267 Face 99864 10859 24934 49934 Face 99865 6651 49935 26416 Face 99866 6651 27646 49935 Face 99867 8668 49936 49861 Face 99868 8668 19205 49936 Face 99869 23932 49937 16754 Face 99870 23932 13665 49937 Face 99871 2780 49938 43164 Face 99872 2780 23725 49938 Face 99873 11437 49939 25594 Face 99874 11437 30100 49939 Face 99875 1988 49940 41922 Face 99876 1988 19888 49940 Face 99877 38955 49941 34768 Face 99878 38955 47752 49941 Face 99879 17679 49942 38264 Face 99880 17679 6931 49942 Face 99881 6179 49943 41425 Face 99882 6179 889 49943 Face 99883 11398 49944 17327 Face 99884 11398 49023 49944 Face 99885 14768 49945 21054 Face 99886 14768 16049 49945 Face 99887 20207 49946 8202 Face 99888 20207 48920 49946 Face 99889 23322 49947 12379 Face 99890 23322 29724 49947 Face 99891 29069 49948 39250 Face 99892 29069 22454 49948 Face 99893 9678 49949 25992 Face 99894 9678 47662 49949 Face 99895 16365 49950 6855 Face 99896 16365 44026 49950 Face 99897 26897 49951 8717 Face 99898 26897 4390 49951 Face 99899 17670 49952 3084 Face 99900 17670 5986 49952 Face 99901 39118 49953 34015 Face 99902 39118 20910 49953 Face 99903 22288 49954 11913 Face 99904 22288 4068 49954 Face 99905 28525 49955 6985 Face 99906 28525 10073 49955 Face 99907 12199 49956 45412 Face 99908 12199 20506 49956 Face 99909 23528 49957 13081 Face 99910 23528 38434 49957 Face 99911 11688 49958 11687 Face 99912 11688 26995 49958 Face 99913 41206 49959 1842 Face 99914 41206 14492 49959 Face 99915 19832 49960 29930 Face 99916 19832 25548 49960 Face 99917 5598 49961 38934 Face 99918 5598 42784 49961 Face 99919 11656 49962 8313 Face 99920 11656 21513 49962 Face 99921 6306 49963 40271 Face 99922 6306 28711 49963 Face 99923 14251 49964 48631 Face 99924 14251 32516 49964 Face 99925 33147 49965 15057 Face 99926 33147 23988 49965 Face 99927 16744 49966 7617 Face 99928 16744 3927 49966 Face 99929 13510 49967 13353 Face 99930 13510 28364 49967 Face 99931 3456 49968 22361 Face 99932 3456 22194 49968 Face 99933 35208 49969 32791 Face 99934 35208 7178 49969 Face 99935 29645 49970 6708 Face 99936 29645 27565 49970 Face 99937 4506 49971 26238 Face 99938 4506 40289 49971 Face 99939 8123 49972 26026 Face 99940 8123 18893 49972 Face 99941 17965 49973 30954 Face 99942 17965 3019 49973 Face 99943 24415 49974 9288 Face 99944 24415 3967 49974 Face 99945 10737 49975 30301 Face 99946 10737 15078 49975 Face 99947 29817 49976 18880 Face 99948 29817 15891 49976 Face 99949 4440 49977 36957 Face 99950 4440 27201 49977 Face 99951 1899 49978 37352 Face 99952 1899 15209 49978 Face 99953 14660 49979 21707 Face 99954 14660 14080 49979 Face 99955 28057 49980 24757 Face 99956 28057 14929 49980 Face 99957 27196 49981 23482 Face 99958 27196 1592 49981 Face 99959 3113 49982 16132 Face 99960 3113 6500 49982 Face 99961 34868 49983 14242 Face 99962 34868 45336 49983 Face 99963 3013 49984 7844 Face 99964 3013 31245 49984 Face 99965 4869 49985 22501 Face 99966 4869 44454 49985 Face 99967 16730 49986 6114 Face 99968 16730 26478 49986 Face 99969 13058 49987 33034 Face 99970 13058 8143 49987 Face 99971 26621 49988 38867 Face 99972 26621 44459 49988 Face 99973 5212 49989 43946 Face 99974 5212 38741 49989 Face 99975 49991 49990 37708 Face 99976 43368 32716 49990 Face 99977 43368 49991 37708 Face 99978 43368 49990 49991 Face 99979 13725 49992 4297 Face 99980 13725 25776 49992 Face 99981 3753 49993 14201 Face 99982 3753 43807 49993 Face 99983 34325 49994 12747 Face 99984 34325 27814 49994 Face 99985 26136 49995 10824 Face 99986 26136 35093 49995 Face 99987 17463 49996 34387 Face 99988 17463 48895 49996 Face 99989 26609 49997 40658 Face 99990 26609 2899 49997 Face 99991 4774 49998 7450 Face 99992 4774 34754 49998 Face 99993 15240 49999 48052 Face 99994 15240 27799 49999 Face 99995 23889 50000 49623 Face 99996 23889 23326 50000 Face 99997 10564 50001 18803 Face 99998 10564 6406 50001 Face 99999 13185 50002 37566 Face 100000 13185 45060 50002 ================================================ FILE: models/tyra_1k.m ================================================ # ||||||||Created on 2002/10/11 18:04:45 using: # |||||||| filtermesh tyra_c8.cut.m -removekey wid # ||||||||(Timing on cpu=x86 Family 15 Model 0 Stepping 10, GenuineIntel host=?) # |||||||| (_readmesh: 1.52) # |||||||| (Filtermesh: 1.95) # |||||||Created on 2002/10/11 18:05:16 using: # ||||||| MeshSimplify tyra_c8.cut.m -minqem -qemvolume 0 -vsgeom -strict_sharp 1 # ||||||| -prog tyra_c8.cut.prog -simplify # |||||||Materials=8: 8 with matid (0 unused), 0 without matid # |||||||nmaterials=8 # |||||||Found 0/0 existing wid's # |||||||PM: bounding box 0.300821 0.000266531 0.183176 0.699274 1 0.816824 # |||||||parameters: diam=0.999733 fitcol=0 colfac=0 fitnor=0 norfac=0.02 # |||||||No points sampled. # |||||||INITIAL : v=50002 f=100000 e=150000 (sha=1531: bnd=0 dis=1531 sca=1531) # |||||||Qems=6 # |||||||PM: nvertices=50002 nwedges=51539 nfaces=100000 # |||||||Stop. No more good edge collapses. # |||||||PM: necols=49990 # |||||||FINAL : v=12 f=20 e=30 (sha=17: bnd=0 dis=17 sca=17) # |||||||number of retired edge points: 0/0 # |||||||Time: u126.57 r127.15 rate:789.94 f/sec # ||||||Created on 2002/10/11 18:07:40 using: # |||||| Filterprog -fbase tyra_c8.cut.base.m -fprog tyra_c8.cut.rprog -pm_encode # ||||||Found 8 materials # ||||||Read Genus: c=1 b=0 v=12 f=20 e=30 genus=0 # |||||Created on 2002/10/11 14:08:16 using: # ||||| ..\data\ctfparam -pack 256 tyra_c8.cut.pm # |||||Computing arc-length boundary... # |||||Coarse Mesh L^2 Stretch Efficiency: 0.339152 # |||||Coarse Mesh L^i Stretch Efficiency: 0.074470 # |||||Optimizing coarse mesh... # |||||Coarse Mesh L^2 Stretch Efficiency: 0.822216 # |||||Coarse Mesh L^i Stretch Efficiency: 0.408511 # |||||Optimizing coarse-to-fine... # |||||(Timing on cpu=x86-L15-R000a host=VAIO) # ||||| (_ctf: 493.63) # |||||Fine Mesh L^2 Stretch Efficiency: 0.782117 # |||||Fine Mesh L^i Stretch Efficiency: 0.016913 # |||||Intra-Rectangle Efficiency: 0.555071 # |||||Square Packing Efficiency: 39.51 # ||||Created on 2002/10/11 18:16:48 using: # |||| ctfparam -noctf -tpackdilate -1 -tpack 256 t2.m # ||||Packing... # ||||Scale: # 60% # ||||Resolution: 304x208 - Resolution/Budget: 63232/65536 # ||||Discrete Packing Efficiency: 41264/63232 = 65.26% # ||||Discrete Packing Efficiency (dilated texels outside): 39319/63232 = 62.18% # ||||Packing Efficiency (chart_area/rect_area): 62.19% # ||||(Timing on cpu=x86 Family 15 Model 0 Stepping 10, GenuineIntel host=?) # |||| (_tpack: 1363.85) # ||||Square Packing Efficiency: 42.55 # |||Created on 2002/10/21 22:23:47 using: # ||| ctfparam -noctf -tpack 256 -tpackdilate -1 tyra_c8.param.m # |||Packing... # |||Scale: # 60% # |||Resolution: 304x208 - Resolution/Budget: 63232/65536 # |||Discrete Packing Efficiency: 41270/63232 = 65.27% # |||Discrete Packing Efficiency (dilated texels outside): 39319/63232 = 62.18% # |||Packing Efficiency (chart_area/rect_area): 62.19% # |||(Timing on cpu=x86-L6-R0803 host=ROCKET) # ||| (_tpack: 42271.20) # |||Square Packing Efficiency: 42.55 # ||Created on 2003/11/15 21:35:58 using: # || C:\cygwin\home\Zoe\hh_src\bin\filtermesh.exe tyra_c8.param2.m -removeinfo # ||(Timing on cpu=x86-L6-R0806 host=BUTTERCUP) # || (_readmesh: 3.75) # || (Filtermesh: 4.07) # |Created on 2003/11/15 22:39:22 using: # | C:\cygwin\home\Zoe\hh_src\bin\filtermesh.exe tyra_50k.m -qemc -nfaces 1000 # | -reduce # |(Timing on cpu=x86-L6-R0806 host=BUTTERCUP) # | (_readmesh: 2.37) # |Sred: (150000 )1.35971e-010:1e+030 av=6.30667e+028 sd=2.43084e+029 # | (__initpq: 3.25) # |Reduced 49500 times, deleted 148500 edges, 99000 faces # | (_reduce: 57.53) # | (Filtermesh: 59.90) # Created on 2003/11/15 23:17:09 using: # C:\cygwin\home\Zoe\hh_src\bin\filtermesh.exe t.m -renumber # (Timing on cpu=x86-L6-R0806 host=BUTTERCUP) # (_readmesh: 0.02) # (_renumber: 0.00) # (Filtermesh: 0.02) Vertex 1 0.482171 0.540291 0.58884 Vertex 2 0.445478 0.457864 0.621793 Vertex 3 0.372988 0.358514 0.461911 Vertex 4 0.556807 0.405078 0.395888 Vertex 5 0.62346 0.493899 0.316352 Vertex 6 0.527646 0.40033 0.532344 Vertex 7 0.550908 0.513028 0.426742 Vertex 8 0.491258 0.489039 0.390379 Vertex 9 0.434136 0.480161 0.423216 Vertex 10 0.469522 0.339441 0.418121 Vertex 11 0.60485 0.506962 0.229411 Vertex 12 0.423782 0.167886 0.511576 Vertex 13 0.462066 0.224477 0.617015 Vertex 14 0.426963 0.261544 0.693624 Vertex 15 0.404647 0.871912 0.404564 Vertex 16 0.465874 0.777297 0.386116 Vertex 17 0.516865 0.737511 0.456956 Vertex 18 0.356938 0.229232 0.510137 Vertex 19 0.554575 0.042096 0.758294 Vertex 20 0.45444 0.089477 0.707674 Vertex 21 0.453607 0.613911 0.504577 Vertex 22 0.437388 0.154489 0.586429 Vertex 23 0.381929 0.489199 0.489914 Vertex 24 0.425298 0.43357 0.389122 Vertex 25 0.411963 0.354927 0.436707 Vertex 26 0.401649 0.366345 0.237884 Vertex 27 0.579893 0.458095 0.487496 Vertex 28 0.504706 0.402941 0.592624 Vertex 29 0.391751 0.25441 0.634895 Vertex 30 0.490855 0.226346 0.563586 Vertex 31 0.515309 0.134149 0.705618 Vertex 32 0.442692 0.235461 0.776741 Vertex 33 0.477688 0.711797 0.499935 Vertex 34 0.379398 0.41447 0.571692 Vertex 35 0.382442 0.331252 0.613526 Vertex 36 0.518062 0.640207 0.533235 Vertex 37 0.48842 0.0842845 0.725003 Vertex 38 0.496636 0.0391144 0.67595 Vertex 39 0.345046 0.928388 0.266366 Vertex 40 0.439378 0.77528 0.427931 Vertex 41 0.435213 0.189147 0.792144 Vertex 42 0.432582 0.859187 0.407309 Vertex 43 0.424102 0.298363 0.640796 Vertex 44 0.329776 0.920631 0.275147 Vertex 45 0.311631 0.982494 0.235721 Vertex 46 0.407589 0.851129 0.343769 Vertex 47 0.363722 0.402815 0.388511 Vertex 48 0.494546 0.256606 0.473641 Vertex 49 0.374093 0.385973 0.530144 Vertex 50 0.577445 0.508108 0.368855 Vertex 51 0.479924 0.7571 0.499558 Vertex 52 0.516571 0.452239 0.410684 Vertex 53 0.373203 0.196792 0.555357 Vertex 54 0.493211 0.172504 0.712917 Vertex 55 0.507531 0.112745 0.655175 Vertex 56 0.381968 0.353099 0.301488 Vertex 57 0.362783 0.403835 0.312852 Vertex 58 0.523064 0.632819 0.430243 Vertex 59 0.495808 0.627615 0.407005 Vertex 60 0.497492 0.528761 0.38749 Vertex 61 0.581805 0.503442 0.450446 Vertex 62 0.415217 0.162432 0.612469 Vertex 63 0.408627 0.394358 0.286837 Vertex 64 0.362477 0.275467 0.227705 Vertex 65 0.455945 0.136992 0.794206 Vertex 66 0.426874 0.38996 0.419594 Vertex 67 0.374419 0.307911 0.195256 Vertex 68 0.3216 0.984768 0.220896 Vertex 69 0.494055 0.070336 0.641771 Vertex 70 0.54962 0.00631268 0.75921 Vertex 71 0.560001 0.00702372 0.747631 Vertex 72 0.539357 0.626892 0.508769 Vertex 73 0.457302 0.118631 0.643735 Vertex 74 0.533888 0.478262 0.582784 Vertex 75 0.608717 0.454473 0.339344 Vertex 76 0.386026 0.236677 0.691392 Vertex 77 0.485804 0.421684 0.37947 Vertex 78 0.423823 0.21068 0.472039 Vertex 79 0.506262 0.364302 0.448171 Vertex 80 0.36635 0.435919 0.541569 Vertex 81 0.383299 0.183236 0.486237 Vertex 82 0.440122 0.430737 0.399873 Vertex 83 0.53111 0.0244117 0.73021 Vertex 84 0.499705 0.167987 0.788361 Vertex 85 0.354735 0.385821 0.471785 Vertex 86 0.394775 0.243653 0.463395 Vertex 87 0.602195 0.534049 0.253717 Vertex 88 0.625828 0.518706 0.286213 Vertex 89 0.616042 0.52435 0.221081 Vertex 90 0.662036 0.460476 0.213998 Vertex 91 0.627433 0.455989 0.206029 Vertex 92 0.581587 0.445203 0.322349 Vertex 93 0.520391 0.164441 0.787559 Vertex 94 0.48087 0.145425 0.650721 Vertex 95 0.525075 0.335175 0.510066 Vertex 96 0.395961 0.428791 0.37626 Vertex 97 0.501272 0.690652 0.531655 Vertex 98 0.353676 0.227009 0.524978 Vertex 99 0.396371 0.411479 0.600329 Vertex 100 0.478369 0.445839 0.614205 Vertex 101 0.444066 0.412285 0.639316 Vertex 102 0.480085 0.299101 0.625629 Vertex 103 0.458267 0.174507 0.646531 Vertex 104 0.61876 0.489863 0.260356 Vertex 105 0.499866 0.418116 0.407885 Vertex 106 0.395867 0.181639 0.622646 Vertex 107 0.387188 0.464697 0.579391 Vertex 108 0.52098 0.381722 0.48427 Vertex 109 0.354807 0.93644 0.306411 Vertex 110 0.497383 0.19977 0.513726 Vertex 111 0.477179 0.168838 0.507994 Vertex 112 0.456461 0.354984 0.411294 Vertex 113 0.542362 0.571887 0.530933 Vertex 114 0.437091 0.0984388 0.667527 Vertex 115 0.48968 0.258812 0.595174 Vertex 116 0.530983 0.0576253 0.721994 Vertex 117 0.425317 0.14784 0.711988 Vertex 118 0.378674 0.338415 0.466359 Vertex 119 0.459095 0.198126 0.586949 Vertex 120 0.358364 0.331888 0.225039 Vertex 121 0.420374 0.393554 0.346666 Vertex 122 0.446704 0.606036 0.472363 Vertex 123 0.529075 0.41755 0.417097 Vertex 124 0.551534 0.0338384 0.783348 Vertex 125 0.399845 0.322742 0.224176 Vertex 126 0.591686 0.480339 0.404559 Vertex 127 0.503652 0.56572 0.576609 Vertex 128 0.501126 0.0403351 0.633577 Vertex 129 0.476708 0.072464 0.744604 Vertex 130 0.469282 0.584435 0.427507 Vertex 131 0.594715 0.509206 0.373045 Vertex 132 0.509027 0.0195362 0.640553 Vertex 133 0.458528 0.573976 0.552768 Vertex 134 0.349764 0.159667 0.470763 Vertex 135 0.467026 0.163848 0.53963 Vertex 136 0.405769 0.872628 0.335124 Vertex 137 0.469628 0.210897 0.705247 Vertex 138 0.381442 0.425298 0.359457 Vertex 139 0.480646 0.143487 0.799179 Vertex 140 0.45852 0.0978047 0.660175 Vertex 141 0.511841 0.104239 0.71654 Vertex 142 0.353422 0.907505 0.331735 Vertex 143 0.552841 0.0178017 0.72576 Vertex 144 0.425922 0.116571 0.689798 Vertex 145 0.442461 0.252204 0.745381 Vertex 146 0.474061 0.217952 0.48521 Vertex 147 0.387601 0.388823 0.606613 Vertex 148 0.491801 0.755022 0.414663 Vertex 149 0.462251 0.735523 0.423348 Vertex 150 0.531082 0.398719 0.458636 Vertex 151 0.409327 0.278378 0.227093 Vertex 152 0.515783 0.575476 0.412272 Vertex 153 0.320688 0.966106 0.208448 Vertex 154 0.308265 0.994373 0.21294 Vertex 155 0.32671 0.957238 0.233391 Vertex 156 0.532097 0.0699154 0.796621 Vertex 157 0.522557 0.139105 0.791258 Vertex 158 0.469234 0.398746 0.386984 Vertex 159 0.661942 0.415582 0.216916 Vertex 160 0.390454 0.259944 0.221674 Vertex 161 0.401871 0.268875 0.227735 Vertex 162 0.367283 0.314766 0.246518 Vertex 163 0.366867 0.349114 0.567005 Vertex 164 0.408304 0.36681 0.627915 Vertex 165 0.524149 0.0260553 0.655716 Vertex 166 0.417584 0.261648 0.723156 Vertex 167 0.45316 0.513642 0.58929 Vertex 168 0.388284 0.213915 0.69955 Vertex 169 0.398315 0.363331 0.370898 Vertex 170 0.426872 0.168328 0.555201 Vertex 171 0.441028 0.788762 0.403126 Vertex 172 0.4059 0.451513 0.599006 Vertex 173 0.656779 0.492118 0.194708 Vertex 174 0.362186 0.183032 0.457766 Vertex 175 0.358235 0.185852 0.503029 Vertex 176 0.398911 0.188888 0.569098 Vertex 177 0.550602 0.477758 0.386876 Vertex 178 0.460481 0.267648 0.625724 Vertex 179 0.504739 0.401942 0.440686 Vertex 180 0.560689 0.456238 0.3356 Vertex 181 0.500287 0.182871 0.764183 Vertex 182 0.498425 0.108876 0.641613 Vertex 183 0.371615 0.341852 0.217666 Vertex 184 0.608964 0.520856 0.323217 Vertex 185 0.592607 0.518934 0.290146 Vertex 186 0.465964 0.194095 0.481304 Vertex 187 0.454562 0.163705 0.799145 Vertex 188 0.642098 0.467767 0.188827 Vertex 189 0.402673 0.170643 0.496373 Vertex 190 0.371201 0.179518 0.500632 Vertex 191 0.410648 0.464729 0.406962 Vertex 192 0.671613 0.452489 0.197374 Vertex 193 0.516889 0.0611611 0.673322 Vertex 194 0.392653 0.409844 0.286221 Vertex 195 0.373264 0.171871 0.474515 Vertex 196 0.502719 0.0937404 0.804358 Vertex 197 0.361241 0.311046 0.517398 Vertex 198 0.478411 0.510721 0.403402 Vertex 199 0.474872 0.0794947 0.728194 Vertex 200 0.412422 0.323506 0.637016 Vertex 201 0.382655 0.863478 0.355302 Vertex 202 0.368661 0.883468 0.307448 Vertex 203 0.533749 0.431834 0.567168 Vertex 204 0.408841 0.522676 0.504217 Vertex 205 0.594085 0.512269 0.251289 Vertex 206 0.388638 0.355184 0.347464 Vertex 207 0.376167 0.344089 0.403039 Vertex 208 0.368929 0.369526 0.309542 Vertex 209 0.619353 0.53812 0.278274 Vertex 210 0.455209 0.192935 0.613758 Vertex 211 0.557116 0.54176 0.474086 Vertex 212 0.51856 0.377786 0.545239 Vertex 213 0.387671 0.255176 0.206246 Vertex 214 0.415799 0.238673 0.199719 Vertex 215 0.458382 0.0835254 0.733089 Vertex 216 0.392264 0.316929 0.203525 Vertex 217 0.657242 0.479497 0.218729 Vertex 218 0.442328 0.269098 0.438242 Vertex 219 0.333668 0.280162 0.212549 Vertex 220 0.356283 0.261596 0.211083 Vertex 221 0.336624 0.27645 0.229207 Vertex 222 0.364178 0.237196 0.210739 Vertex 223 0.361713 0.250683 0.222086 Vertex 224 0.504462 0.0402161 0.727079 Vertex 225 0.411813 0.271627 0.647387 Vertex 226 0.428325 0.264556 0.649981 Vertex 227 0.396179 0.330606 0.445371 Vertex 228 0.558561 0.502975 0.404382 Vertex 229 0.537024 0.0569141 0.711558 Vertex 230 0.507514 0.195508 0.470707 Vertex 231 0.457113 0.834692 0.404636 Vertex 232 0.455335 0.171757 0.489477 Vertex 233 0.360076 0.375391 0.353415 Vertex 234 0.49468 0.627511 0.550809 Vertex 235 0.481275 0.0726012 0.705767 Vertex 236 0.498117 0.154227 0.67995 Vertex 237 0.457705 0.439872 0.386893 Vertex 238 0.605709 0.487132 0.20541 Vertex 239 0.521428 0.103147 0.71475 Vertex 240 0.492093 0.581503 0.395437 Vertex 241 0.432849 0.530645 0.478072 Vertex 242 0.480517 0.197553 0.7873 Vertex 243 0.615514 0.49129 0.22945 Vertex 244 0.381323 0.328326 0.26215 Vertex 245 0.515935 0.352988 0.573461 Vertex 246 0.494714 0.395747 0.611211 Vertex 247 0.543579 0.447807 0.383344 Vertex 248 0.472501 0.176549 0.687108 Vertex 249 0.518789 0.349084 0.482905 Vertex 250 0.604994 0.493621 0.383842 Vertex 251 0.457688 0.143996 0.652211 Vertex 252 0.404745 0.170461 0.527972 Vertex 253 0.496851 0.175636 0.491795 Vertex 254 0.504987 0.169257 0.453056 Vertex 255 0.522138 0.150086 0.459401 Vertex 256 0.509899 0.283061 0.547371 Vertex 257 0.477319 0.111134 0.795812 Vertex 258 0.460679 0.128148 0.808145 Vertex 259 0.541531 0.0074319 0.730657 Vertex 260 0.489149 0.193767 0.463491 Vertex 261 0.428548 0.815714 0.436998 Vertex 262 0.531888 0.0950463 0.793071 Vertex 263 0.368841 0.0940704 0.473834 Vertex 264 0.35007 0.1367 0.456603 Vertex 265 0.340154 0.107985 0.461819 Vertex 266 0.348193 0.0947188 0.45388 Vertex 267 0.606141 0.464991 0.214617 Vertex 268 0.61651 0.448123 0.203763 Vertex 269 0.515122 0.296362 0.484613 Vertex 270 0.475382 0.699701 0.420296 Vertex 271 0.596667 0.428947 0.386085 Vertex 272 0.371897 0.214502 0.484169 Vertex 273 0.447396 0.326136 0.639762 Vertex 274 0.573802 0.505174 0.499038 Vertex 275 0.491962 0.755504 0.494431 Vertex 276 0.382794 0.264542 0.197294 Vertex 277 0.639514 0.478705 0.227076 Vertex 278 0.485619 0.542137 0.389891 Vertex 279 0.446887 0.108334 0.726342 Vertex 280 0.447327 0.535491 0.441025 Vertex 281 0.533234 0.155105 0.457611 Vertex 282 0.520323 0.0459032 0.771227 Vertex 283 0.595053 0.435674 0.19191 Vertex 284 0.449037 0.158486 0.523171 Vertex 285 0.534473 0.0895423 0.772623 Vertex 286 0.421115 0.395685 0.386355 Vertex 287 0.531816 0.519832 0.419662 Vertex 288 0.478691 0.181579 0.483814 Vertex 289 0.490003 0.21107 0.491143 Vertex 290 0.492138 0.22826 0.507714 Vertex 291 0.40762 0.345494 0.231808 Vertex 292 0.609452 0.507132 0.196771 Vertex 293 0.596841 0.5196 0.209912 Vertex 294 0.307963 0.982563 0.204296 Vertex 295 0.517944 0.506169 0.593972 Vertex 296 0.476607 0.38015 0.406849 Vertex 297 0.58205 0.478681 0.306428 Vertex 298 0.528933 0.134209 0.772451 Vertex 299 0.355027 0.115564 0.473472 Vertex 300 0.396393 0.177814 0.68505 Vertex 301 0.659806 0.438504 0.220197 Vertex 302 0.629955 0.498434 0.26649 Vertex 303 0.372718 0.266671 0.233628 Vertex 304 0.464213 0.800216 0.476936 Vertex 305 0.372942 0.42181 0.323379 Vertex 306 0.596599 0.486386 0.279509 Vertex 307 0.599361 0.450436 0.315977 Vertex 308 0.56144 0.477609 0.534361 Vertex 309 0.549031 0.555321 0.450858 Vertex 310 0.457076 0.232645 0.46283 Vertex 311 0.394435 0.383166 0.239381 Vertex 312 0.515443 0.107459 0.698169 Vertex 313 0.391326 0.470625 0.432013 Vertex 314 0.408517 0.3692 0.26898 Vertex 315 0.486465 0.354574 0.627113 Vertex 316 0.451698 0.394043 0.400135 Vertex 317 0.463991 0.209317 0.662643 Vertex 318 0.408278 0.423379 0.330846 Vertex 319 0.500623 0.306987 0.451078 Vertex 320 0.406122 0.361578 0.310969 Vertex 321 0.592831 0.459506 0.430245 Vertex 322 0.376893 0.400447 0.282246 Vertex 323 0.544421 0.0597441 0.721579 Vertex 324 0.514267 0.0287862 0.752363 Vertex 325 0.550568 0.568708 0.483508 Vertex 326 0.355298 0.301228 0.197738 Vertex 327 0.380778 0.240085 0.227794 Vertex 328 0.445267 0.576212 0.526814 Vertex 329 0.336481 0.941467 0.299438 Vertex 330 0.572655 0.429158 0.472751 Vertex 331 0.45738 0.676213 0.480937 Vertex 332 0.650094 0.421132 0.206398 Vertex 333 0.371295 0.276752 0.588169 Vertex 334 0.533034 0.488046 0.410563 Vertex 335 0.363621 0.449793 0.493379 Vertex 336 0.388123 0.432911 0.591654 Vertex 337 0.394312 0.297212 0.237346 Vertex 338 0.449001 0.133086 0.766427 Vertex 339 0.5241 0.174951 0.459446 Vertex 340 0.523839 0.050038 0.64402 Vertex 341 0.490823 0.0671215 0.73257 Vertex 342 0.369329 0.351097 0.275343 Vertex 343 0.532656 0.103283 0.727324 Vertex 344 0.363119 0.271048 0.486766 Vertex 345 0.457875 0.47396 0.403083 Vertex 346 0.637041 0.445474 0.191616 Vertex 347 0.368496 0.439341 0.437808 Vertex 348 0.477867 0.0516571 0.650416 Vertex 349 0.308895 0.955475 0.227223 Vertex 350 0.502246 0.327343 0.60167 Vertex 351 0.44209 0.137081 0.629061 Vertex 352 0.441884 0.125303 0.662417 Vertex 353 0.544245 0.149419 0.443578 Vertex 354 0.546283 0.156251 0.430298 Vertex 355 0.477314 0.269247 0.44536 Vertex 356 0.616221 0.505204 0.351428 Vertex 357 0.416836 0.181827 0.488238 Vertex 358 0.446436 0.198052 0.472852 Vertex 359 0.400833 0.511056 0.550467 Vertex 360 0.687507 0.452859 0.212382 Vertex 361 0.382967 0.22292 0.636143 Vertex 362 0.561638 0.406929 0.469733 Vertex 363 0.55808 0.400345 0.442122 Vertex 364 0.656348 0.421254 0.230058 Vertex 365 0.557276 0.425112 0.367809 Vertex 366 0.420235 0.238643 0.767487 Vertex 367 0.367879 0.925251 0.304299 Vertex 368 0.465257 0.225771 0.773666 Vertex 369 0.406444 0.36873 0.408469 Vertex 370 0.568791 0.510422 0.426436 Vertex 371 0.366753 0.160564 0.459288 Vertex 372 0.463492 0.100613 0.763559 Vertex 373 0.383574 0.250479 0.603926 Vertex 374 0.388538 0.170354 0.512351 Vertex 375 0.647093 0.497986 0.233946 Vertex 376 0.360055 0.204058 0.475823 Vertex 377 0.527616 0.3937 0.431651 Vertex 378 0.433751 0.219614 0.789444 Vertex 379 0.360064 0.113585 0.462001 Vertex 380 0.398995 0.258813 0.678546 Vertex 381 0.378758 0.381555 0.589368 Vertex 382 0.612479 0.451726 0.192356 Vertex 383 0.40394 0.282373 0.632576 Vertex 384 0.307094 0.956511 0.248535 Vertex 385 0.601266 0.458785 0.394457 Vertex 386 0.352188 0.275868 0.199396 Vertex 387 0.412103 0.834297 0.372555 Vertex 388 0.540782 0.636513 0.464167 Vertex 389 0.405572 0.892425 0.367651 Vertex 390 0.401742 0.246943 0.728316 Vertex 391 0.433877 0.278016 0.638256 Vertex 392 0.334598 0.245849 0.216564 Vertex 393 0.415439 0.510173 0.574924 Vertex 394 0.322141 0.238687 0.2272 Vertex 395 0.650031 0.446072 0.223276 Vertex 396 0.428489 0.343138 0.647447 Vertex 397 0.544103 0.529036 0.56232 Vertex 398 0.409566 0.241386 0.213749 Vertex 399 0.591651 0.431743 0.206035 Vertex 400 0.679092 0.477271 0.208101 Vertex 401 0.533607 0.143654 0.442599 Vertex 402 0.509576 0.177126 0.449512 Vertex 403 0.489697 0.181259 0.529524 Vertex 404 0.427351 0.167377 0.769152 Vertex 405 0.500096 0.079311 0.773015 Vertex 406 0.455326 0.176588 0.568449 Vertex 407 0.481508 0.109139 0.648285 Vertex 408 0.35325 0.304708 0.23122 Vertex 409 0.396537 0.343791 0.268442 Vertex 410 0.393677 0.3421 0.216561 Vertex 411 0.404577 0.328694 0.205347 Vertex 412 0.450832 0.243569 0.722885 Vertex 413 0.486913 0.790636 0.461708 Vertex 414 0.368106 0.22624 0.233547 Vertex 415 0.656423 0.448331 0.200355 Vertex 416 0.491401 0.171809 0.477606 Vertex 417 0.371253 0.356706 0.351515 Vertex 418 0.517387 0.114578 0.681191 Vertex 419 0.643641 0.438293 0.214514 Vertex 420 0.569428 0.489225 0.337271 Vertex 421 0.481285 0.200218 0.479515 Vertex 422 0.50441 0.0889488 0.711702 Vertex 423 0.472167 0.625956 0.530115 Vertex 424 0.522972 0.0254272 0.641722 Vertex 425 0.479059 0.0464166 0.660796 Vertex 426 0.405727 0.194729 0.738358 Vertex 427 0.398656 0.296992 0.442956 Vertex 428 0.425601 0.133131 0.676981 Vertex 429 0.456653 0.712396 0.453076 Vertex 430 0.617722 0.475821 0.369911 Vertex 431 0.382883 0.217848 0.590878 Vertex 432 0.496178 0.557164 0.380373 Vertex 433 0.519287 0.363897 0.453407 Vertex 434 0.481623 0.72212 0.401134 Vertex 435 0.330958 0.960389 0.253955 Vertex 436 0.389535 0.182073 0.553932 Vertex 437 0.640476 0.512644 0.227908 Vertex 438 0.398906 0.280406 0.196198 Vertex 439 0.41953 0.260042 0.212099 Vertex 440 0.332871 0.925365 0.257179 Vertex 441 0.36418 0.220682 0.561219 Vertex 442 0.505972 0.169706 0.473162 Vertex 443 0.516003 0.152097 0.452756 Vertex 444 0.319644 0.990793 0.204082 Vertex 445 0.351609 0.18195 0.462675 Vertex 446 0.371567 0.3841 0.244845 Vertex 447 0.360521 0.168138 0.47915 Vertex 448 0.454977 0.74495 0.461782 Vertex 449 0.42312 0.247051 0.220337 Vertex 450 0.446731 0.247617 0.6325 Vertex 451 0.578003 0.497418 0.406781 Vertex 452 0.536025 0.126841 0.437313 Vertex 453 0.542721 0.127996 0.446697 Vertex 454 0.419602 0.375228 0.316937 Vertex 455 0.420471 0.400297 0.320003 Vertex 456 0.46873 0.419832 0.374682 Vertex 457 0.564133 0.546924 0.501069 Vertex 458 0.632087 0.490015 0.2446 Vertex 459 0.321675 0.258713 0.222323 Vertex 460 0.380143 0.198638 0.475915 Vertex 461 0.400317 0.297006 0.209148 Vertex 462 0.389187 0.43027 0.333527 Vertex 463 0.476829 0.192555 0.569286 Vertex 464 0.488759 0.377525 0.429216 Vertex 465 0.345591 0.26169 0.225356 Vertex 466 0.358521 0.350996 0.404739 Vertex 467 0.685558 0.459005 0.195056 Vertex 468 0.390609 0.351295 0.436116 Vertex 469 0.503494 0.085147 0.728274 Vertex 470 0.418396 0.215097 0.777212 Vertex 471 0.638957 0.460049 0.216216 Vertex 472 0.515907 0.732414 0.485831 Vertex 473 0.591814 0.514336 0.328498 Vertex 474 0.442309 0.166827 0.558607 Vertex 475 0.537685 0.117188 0.794341 Vertex 476 0.36314 0.139328 0.472649 Vertex 477 0.376796 0.231848 0.206691 Vertex 478 0.363554 0.362772 0.26525 Vertex 479 0.427755 0.429723 0.615486 Vertex 480 0.561146 0.0206003 0.737285 Vertex 481 0.455606 0.202934 0.799106 Vertex 482 0.377219 0.475527 0.526277 Vertex 483 0.301588 0.976474 0.225504 Vertex 484 0.517512 0.040828 0.632229 Vertex 485 0.502771 0.455885 0.394147 Vertex 486 0.466618 0.164135 0.661107 Vertex 487 0.476241 0.450879 0.377291 Vertex 488 0.57221 0.414291 0.361344 Vertex 489 0.368847 0.207016 0.22276 Vertex 490 0.608496 0.483681 0.186341 Vertex 491 0.409791 0.889144 0.359532 Vertex 492 0.40538 0.89348 0.356395 Vertex 493 0.42958 0.879699 0.360203 Vertex 494 0.521032 0.144146 0.726602 Vertex 495 0.415157 0.415814 0.371559 Vertex 496 0.584283 0.4094 0.378265 Vertex 497 0.452544 0.232302 0.657804 Vertex 498 0.323802 0.251276 0.209094 Vertex 499 0.625763 0.501051 0.186134 Vertex 500 0.598587 0.531078 0.296088 Vertex 501 0.655618 0.433077 0.195795 Vertex 502 0.417389 0.370889 0.343717 Face 1 294 153 349 Face 2 94 55 182 Face 3 81 460 357 Face 4 75 307 302 Face 5 336 172 107 Face 6 170 284 474 Face 7 61 126 451 Face 8 146 289 421 Face 9 292 499 490 Face 10 81 195 460 Face 11 126 321 385 Face 12 157 139 262 Face 13 391 178 273 Face 14 31 418 236 Face 15 306 297 205 Face 16 117 106 428 Face 17 49 197 163 Face 18 22 351 62 Face 19 280 122 130 Face 20 415 346 188 Face 21 114 348 425 Face 22 140 348 114 Face 23 291 314 409 Face 24 251 103 486 Face 25 105 52 179 Face 26 187 481 41 Face 27 500 209 87 Face 28 171 434 149 Face 29 43 391 273 Face 30 167 479 2 Face 31 211 309 325 Face 32 474 406 22 Face 33 309 7 287 Face 34 114 425 20 Face 35 310 48 146 Face 36 139 157 84 Face 37 313 204 241 Face 38 272 344 86 Face 39 133 234 423 Face 40 367 435 109 Face 41 39 440 155 Face 42 210 317 103 Face 43 280 198 345 Face 44 234 127 97 Face 45 290 146 48 Face 46 304 42 15 Face 47 133 423 328 Face 48 126 250 451 Face 49 89 499 292 Face 50 7 228 334 Face 51 158 316 456 Face 52 490 283 238 Face 53 199 279 20 Face 54 144 428 114 Face 55 110 290 30 Face 56 101 396 273 Face 57 66 82 316 Face 58 391 43 225 Face 59 432 278 240 Face 60 75 496 307 Face 61 273 396 43 Face 62 52 287 334 Face 63 68 153 444 Face 64 398 161 160 Face 65 151 161 449 Face 66 382 283 490 Face 67 374 53 190 Face 68 59 434 58 Face 69 254 401 443 Face 70 190 53 175 Face 71 312 422 193 Face 72 13 317 210 Face 73 431 361 373 Face 74 196 257 405 Face 75 355 218 10 Face 76 385 330 271 Face 77 419 471 91 Face 78 414 303 223 Face 79 187 139 481 Face 80 383 43 200 Face 81 360 400 217 Face 82 57 305 322 Face 83 322 305 194 Face 84 156 405 282 Face 85 403 463 135 Face 86 248 236 486 Face 87 95 108 212 Face 88 378 41 481 Face 89 259 70 324 Face 90 368 145 32 Face 91 176 436 252 Face 92 118 344 197 Face 93 326 219 120 Face 94 423 21 328 Face 95 25 112 427 Face 96 115 30 256 Face 97 445 264 134 Face 98 176 170 62 Face 99 466 3 85 Face 100 4 365 488 Face 101 379 263 299 Face 102 128 348 69 Face 103 329 142 15 Face 104 282 124 156 Face 105 98 441 333 Face 106 7 370 228 Face 107 44 142 384 Face 108 401 452 255 Face 109 192 415 188 Face 110 86 78 460 Face 111 217 90 360 Face 112 136 367 491 Face 113 491 367 492 Face 114 493 491 492 Face 115 389 491 493 Face 116 219 498 459 Face 117 315 350 246 Face 118 339 402 230 Face 119 235 193 422 Face 120 336 80 34 Face 121 78 357 460 Face 122 416 111 288 Face 123 117 279 338 Face 124 345 9 280 Face 125 86 344 427 Face 126 101 1 2 Face 127 291 125 411 Face 128 96 191 495 Face 129 25 427 227 Face 130 92 488 365 Face 131 450 13 178 Face 132 26 411 410 Face 133 304 275 413 Face 134 180 420 297 Face 135 50 451 131 Face 136 330 203 362 Face 137 265 134 264 Face 138 246 203 74 Face 139 182 484 69 Face 140 374 436 53 Face 141 259 324 224 Face 142 41 378 470 Face 143 199 129 215 Face 144 71 70 259 Face 145 71 143 480 Face 146 411 26 291 Face 147 61 457 274 Face 148 54 31 236 Face 149 437 88 375 Face 150 71 480 19 Face 151 310 146 358 Face 152 91 268 346 Face 153 118 49 3 Face 154 46 201 202 Face 155 46 387 201 Face 156 458 104 243 Face 157 160 337 303 Face 158 36 397 113 Face 159 237 316 82 Face 160 6 108 150 Face 161 137 412 181 Face 162 226 497 450 Face 163 82 286 24 Face 164 78 86 218 Face 165 254 402 401 Face 166 296 105 464 Face 167 142 329 384 Face 168 62 106 176 Face 169 495 24 286 Face 170 261 142 201 Face 171 203 6 362 Face 172 305 462 194 Face 173 384 45 483 Face 174 216 461 438 Face 175 258 257 196 Face 176 141 469 422 Face 177 416 288 254 Face 178 268 283 382 Face 179 443 416 254 Face 180 227 468 25 Face 181 3 468 227 Face 182 162 64 303 Face 183 344 18 197 Face 184 351 210 103 Face 185 454 121 502 Face 186 213 214 398 Face 187 213 276 214 Face 188 203 308 74 Face 189 392 386 220 Face 190 392 498 386 Face 191 239 312 31 Face 192 447 134 299 Face 193 443 442 416 Face 194 183 216 67 Face 195 421 186 146 Face 196 146 290 289 Face 197 162 342 478 Face 198 350 256 245 Face 199 340 418 193 Face 200 17 72 388 Face 201 245 28 246 Face 202 65 41 338 Face 203 275 51 97 Face 204 482 80 359 Face 205 148 136 231 Face 206 352 73 140 Face 207 71 19 124 Face 208 408 221 465 Face 209 17 413 472 Face 210 472 413 275 Face 211 423 33 21 Face 212 40 201 387 Face 213 165 424 340 Face 214 381 163 35 Face 215 328 241 204 Face 216 68 45 435 Face 217 380 29 76 Face 218 219 459 221 Face 219 31 494 343 Face 220 103 248 486 Face 221 465 221 394 Face 222 264 379 266 Face 223 373 35 333 Face 224 72 113 325 Face 225 417 466 233 Face 226 400 437 375 Face 227 124 70 71 Face 228 149 270 429 Face 229 36 72 472 Face 230 311 26 410 Face 231 349 44 384 Face 232 170 12 284 Face 233 202 440 39 Face 234 90 471 395 Face 235 445 174 264 Face 236 388 325 309 Face 237 120 478 446 Face 238 188 490 499 Face 239 198 8 487 Face 240 10 112 296 Face 241 264 266 265 Face 242 206 417 56 Face 243 224 341 83 Face 244 167 172 479 Face 245 363 4 496 Face 246 183 120 446 Face 247 43 383 225 Face 248 348 128 132 Face 249 96 47 313 Face 250 316 237 456 Face 251 312 193 418 Face 252 51 261 33 Face 253 318 121 455 Face 254 275 97 36 Face 255 82 66 286 Face 256 45 154 483 Face 257 420 473 185 Face 258 125 337 151 Face 259 199 235 37 Face 260 473 184 500 Face 261 272 174 376 Face 262 272 460 174 Face 263 332 501 159 Face 264 231 413 17 Face 265 167 1 133 Face 266 195 447 476 Face 267 40 429 448 Face 268 337 160 161 Face 269 383 373 29 Face 270 211 325 113 Face 271 440 44 349 Face 272 181 242 84 Face 273 359 328 204 Face 274 218 427 112 Face 275 1 234 133 Face 276 179 464 105 Face 277 385 250 126 Face 278 55 484 182 Face 279 117 144 279 Face 280 117 428 144 Face 281 90 395 301 Face 282 6 203 28 Face 283 177 52 334 Face 284 263 379 476 Face 285 219 386 498 Face 286 225 29 380 Face 287 27 330 321 Face 288 304 15 261 Face 289 358 78 310 Face 290 93 157 298 Face 291 106 117 300 Face 292 246 295 100 Face 293 168 426 390 Face 294 470 426 41 Face 295 8 77 487 Face 296 14 380 166 Face 297 464 79 319 Face 298 397 295 74 Face 299 150 4 363 Face 300 122 280 241 Face 301 124 282 70 Face 302 245 246 350 Face 303 463 406 135 Face 304 183 446 311 Face 305 389 492 109 Face 306 54 248 137 Face 307 98 333 163 Face 308 177 50 420 Face 309 63 455 454 Face 310 59 270 434 Face 311 322 446 478 Face 312 65 139 187 Face 313 44 202 201 Face 314 301 364 159 Face 315 18 445 98 Face 316 18 376 445 Face 317 130 278 198 Face 318 266 379 299 Face 319 107 393 359 Face 320 460 195 371 Face 321 459 498 394 Face 322 222 386 276 Face 323 301 415 90 Face 324 312 239 141 Face 325 365 247 180 Face 326 473 420 50 Face 327 475 262 298 Face 328 386 219 326 Face 329 350 115 256 Face 330 150 363 6 Face 331 131 451 250 Face 332 401 353 452 Face 333 271 362 496 Face 334 129 324 282 Face 335 129 282 405 Face 336 119 210 406 Face 337 467 360 192 Face 338 166 32 145 Face 339 188 467 192 Face 340 101 100 1 Face 341 234 33 423 Face 342 116 229 143 Face 343 19 343 285 Face 344 306 92 297 Face 345 97 127 36 Face 346 441 53 431 Face 347 295 127 100 Face 348 21 122 241 Face 349 374 190 81 Face 350 250 356 131 Face 351 324 341 224 Face 352 132 425 348 Face 353 77 8 485 Face 354 377 79 179 Face 355 188 382 490 Face 356 492 367 109 Face 357 243 91 277 Face 358 252 170 176 Face 359 435 45 109 Face 360 68 444 45 Face 361 1 127 234 Face 362 62 352 428 Face 363 186 421 288 Face 364 189 374 81 Face 365 77 296 158 Face 366 10 218 112 Face 367 465 392 220 Face 368 130 198 280 Face 369 441 175 53 Face 370 152 240 59 Face 371 438 276 386 Face 372 144 20 279 Face 373 152 60 432 Face 374 152 287 60 Face 375 291 26 314 Face 376 274 308 27 Face 377 270 130 122 Face 378 39 155 435 Face 379 442 443 255 Face 380 90 217 471 Face 381 482 23 335 Face 382 230 289 110 Face 383 193 235 38 Face 384 207 3 466 Face 385 32 242 368 Face 386 38 235 20 Face 387 149 434 270 Face 388 502 320 454 Face 389 98 134 175 Face 390 106 62 428 Face 391 191 24 495 Face 392 105 485 52 Face 393 16 58 434 Face 394 477 327 489 Face 395 293 11 205 Face 396 39 136 202 Face 397 225 383 29 Face 398 56 342 244 Face 399 298 181 93 Face 400 205 87 293 Face 401 205 11 306 Face 402 18 344 272 Face 403 209 184 88 Face 404 369 468 207 Face 405 59 130 270 Face 406 397 308 274 Face 407 238 399 267 Face 408 300 426 168 Face 409 387 171 40 Face 410 244 342 162 Face 411 286 169 121 Face 412 337 125 409 Face 413 78 358 232 Face 414 253 339 110 Face 415 66 468 369 Face 416 314 26 63 Face 417 223 220 222 Face 418 29 361 76 Face 419 298 494 181 Face 420 168 76 361 Face 421 273 100 101 Face 422 389 109 15 Face 423 181 145 368 Face 424 404 426 117 Face 425 14 226 225 Face 426 202 44 440 Face 427 217 277 471 Face 428 281 339 442 Face 429 243 11 238 Face 430 3 227 118 Face 431 189 81 357 Face 432 309 58 388 Face 433 221 408 219 Face 434 344 118 427 Face 435 198 487 345 Face 436 319 48 355 Face 437 480 323 19 Face 438 466 47 233 Face 439 48 310 355 Face 440 96 495 318 Face 441 362 6 363 Face 442 55 418 340 Face 443 287 7 334 Face 444 346 268 382 Face 445 180 92 365 Face 446 132 424 165 Face 447 109 329 15 Face 448 331 122 21 Face 449 401 255 443 Face 450 394 221 459 Face 451 132 165 38 Face 452 173 188 499 Face 453 490 238 292 Face 454 66 25 468 Face 455 84 157 93 Face 456 292 238 11 Face 457 437 400 173 Face 458 141 422 312 Face 459 356 5 88 Face 460 371 379 264 Face 461 250 385 430 Face 462 123 52 247 Face 463 42 304 413 Face 464 156 124 285 Face 465 112 158 296 Face 466 488 496 4 Face 467 87 205 185 Face 468 194 318 63 Face 469 137 497 412 Face 470 248 317 137 Face 471 343 323 239 Face 472 39 367 136 Face 473 370 61 451 Face 474 4 150 377 Face 475 216 410 411 Face 476 277 217 375 Face 477 343 239 31 Face 478 271 330 362 Face 479 300 168 106 Face 480 420 185 297 Face 481 76 168 390 Face 482 10 319 355 Face 483 239 323 229 Face 484 381 34 49 Face 485 284 111 135 Face 486 226 412 497 Face 487 374 189 252 Face 488 239 116 141 Face 489 347 335 23 Face 490 7 211 370 Face 491 80 335 85 Face 492 307 496 488 Face 493 292 11 293 Face 494 100 315 246 Face 495 464 319 10 Face 496 444 153 294 Face 497 461 439 438 Face 498 331 21 33 Face 499 366 390 470 Face 500 260 289 230 Face 501 464 179 79 Face 502 210 22 406 Face 503 130 240 278 Face 504 30 290 256 Face 505 463 115 119 Face 506 463 30 115 Face 507 115 350 102 Face 508 220 386 222 Face 509 64 465 220 Face 510 247 177 420 Face 511 164 101 2 Face 512 129 199 341 Face 513 438 439 214 Face 514 285 262 156 Face 515 447 299 476 Face 516 287 52 485 Face 517 98 445 134 Face 518 341 469 83 Face 519 150 108 377 Face 520 176 431 53 Face 521 176 106 431 Face 522 296 77 105 Face 523 337 161 151 Face 524 6 212 108 Face 525 303 414 327 Face 526 116 469 141 Face 527 400 360 467 Face 528 324 129 341 Face 529 64 223 303 Face 530 304 51 275 Face 531 213 327 477 Face 532 407 94 182 Face 533 229 116 239 Face 534 1 167 2 Face 535 414 223 222 Face 536 438 67 216 Face 537 261 15 142 Face 538 269 48 319 Face 539 320 409 314 Face 540 168 361 106 Face 541 181 494 54 Face 542 399 268 267 Face 543 11 104 306 Face 544 147 381 35 Face 545 403 253 110 Face 546 236 248 54 Face 547 369 286 66 Face 548 104 11 243 Face 549 188 346 382 Face 550 462 318 194 Face 551 138 47 96 Face 552 240 152 432 Face 553 171 16 434 Face 554 42 413 231 Face 555 143 323 480 Face 556 169 502 121 Face 557 310 78 218 Face 558 89 293 87 Face 559 481 242 32 Face 560 313 191 96 Face 561 373 383 35 Face 562 57 208 233 Face 563 269 95 256 Face 564 203 27 308 Face 565 370 211 61 Face 566 151 449 439 Face 567 314 454 320 Face 568 302 458 375 Face 569 380 14 225 Face 570 85 49 34 Face 571 249 95 269 Face 572 73 62 351 Face 573 1 100 127 Face 574 402 260 230 Face 575 211 113 457 Face 576 452 453 255 Face 577 34 99 336 Face 578 404 338 41 Face 579 60 287 8 Face 580 121 318 495 Face 581 271 430 385 Face 582 118 227 427 Face 583 482 335 80 Face 584 476 299 263 Face 585 327 414 489 Face 586 440 153 155 Face 587 84 242 139 Face 588 272 376 18 Face 589 99 479 172 Face 590 233 47 57 Face 591 251 94 73 Face 592 241 280 9 Face 593 216 183 410 Face 594 143 229 323 Face 595 245 256 95 Face 596 366 166 390 Face 597 340 193 165 Face 598 422 469 37 Face 599 38 425 132 Face 600 155 68 435 Face 601 197 98 163 Face 602 36 472 275 Face 603 189 12 252 Face 604 271 496 75 Face 605 214 449 398 Face 606 165 193 38 Face 607 16 136 148 Face 608 55 340 484 Face 609 307 306 104 Face 610 70 282 324 Face 611 394 498 392 Face 612 398 160 213 Face 613 368 242 181 Face 614 371 264 174 Face 615 302 375 88 Face 616 348 140 69 Face 617 183 311 410 Face 618 162 303 337 Face 619 72 17 472 Face 620 201 40 261 Face 621 487 456 237 Face 622 487 77 456 Face 623 345 237 82 Face 624 167 393 172 Face 625 294 349 483 Face 626 478 342 208 Face 627 318 462 96 Face 628 302 88 5 Face 629 335 347 47 Face 630 22 62 170 Face 631 169 206 502 Face 632 466 417 207 Face 633 419 395 471 Face 634 29 373 361 Face 635 81 190 195 Face 636 406 474 135 Face 637 59 240 130 Face 638 65 187 41 Face 639 107 359 80 Face 640 178 13 115 Face 641 102 178 115 Face 642 319 433 269 Face 643 258 139 65 Face 644 151 439 461 Face 645 363 496 362 Face 646 441 98 175 Face 647 91 346 332 Face 648 76 390 380 Face 649 184 209 500 Face 650 230 110 339 Face 651 357 78 232 Face 652 166 145 14 Face 653 253 111 416 Face 654 33 97 51 Face 655 298 157 475 Face 656 323 343 19 Face 657 119 13 210 Face 658 131 356 184 Face 659 255 453 281 Face 660 447 195 190 Face 661 316 112 25 Face 662 200 164 35 Face 663 253 442 339 Face 664 27 321 274 Face 665 215 129 372 Face 666 430 356 250 Face 667 283 399 238 Face 668 320 502 206 Face 669 347 23 313 Face 670 298 285 343 Face 671 317 497 137 Face 672 86 427 218 Face 673 15 42 389 Face 674 83 116 259 Face 675 254 260 402 Face 676 409 125 291 Face 677 31 312 418 Face 678 377 433 79 Face 679 206 207 417 Face 680 201 142 44 Face 681 433 249 269 Face 682 454 314 63 Face 683 79 433 319 Face 684 175 447 190 Face 685 175 134 447 Face 686 405 257 372 Face 687 278 60 8 Face 688 268 91 267 Face 689 75 302 5 Face 690 258 65 257 Face 691 133 393 167 Face 692 180 247 420 Face 693 219 408 120 Face 694 465 394 392 Face 695 463 119 406 Face 696 433 108 249 Face 697 426 404 41 Face 698 488 92 307 Face 699 422 37 235 Face 700 407 140 73 Face 701 365 4 123 Face 702 181 54 137 Face 703 73 352 62 Face 704 359 204 23 Face 705 80 336 107 Face 706 163 381 49 Face 707 341 37 469 Face 708 222 477 489 Face 709 356 88 184 Face 710 313 241 191 Face 711 225 226 391 Face 712 407 73 94 Face 713 16 387 46 Face 714 99 34 381 Face 715 99 381 147 Face 716 371 195 476 Face 717 269 256 290 Face 718 441 431 373 Face 719 202 136 46 Face 720 61 321 126 Face 721 95 249 108 Face 722 104 302 307 Face 723 369 207 169 Face 724 153 68 155 Face 725 194 446 322 Face 726 158 456 77 Face 727 117 426 300 Face 728 22 210 351 Face 729 461 216 125 Face 730 293 89 292 Face 731 103 317 248 Face 732 428 140 114 Face 733 349 153 440 Face 734 437 209 88 Face 735 24 191 9 Face 736 444 154 45 Face 737 419 364 395 Face 738 458 243 277 Face 739 164 2 479 Face 740 98 197 18 Face 741 301 395 364 Face 742 360 90 192 Face 743 317 13 497 Face 744 173 467 188 Face 745 212 28 245 Face 746 12 232 284 Face 747 328 21 241 Face 748 55 94 236 Face 749 235 199 20 Face 750 236 94 486 Face 751 402 354 401 Face 752 330 385 321 Face 753 390 426 470 Face 754 421 289 260 Face 755 361 431 106 Face 756 393 133 359 Face 757 448 331 33 Face 758 57 47 305 Face 759 128 484 132 Face 760 326 67 386 Face 761 152 59 58 Face 762 267 243 238 Face 763 279 215 372 Face 764 501 346 415 Face 765 103 251 351 Face 766 49 85 3 Face 767 375 217 400 Face 768 313 23 204 Face 769 337 244 162 Face 770 149 429 40 Face 771 327 213 160 Face 772 36 295 397 Face 773 177 228 50 Face 774 251 73 351 Face 775 259 116 143 Face 776 16 46 136 Face 777 63 26 311 Face 778 417 208 56 Face 779 156 196 405 Face 780 271 75 430 Face 781 42 231 389 Face 782 176 53 436 Face 783 236 418 55 Face 784 366 32 166 Face 785 224 83 259 Face 786 255 281 442 Face 787 320 206 56 Face 788 147 479 99 Face 789 147 164 479 Face 790 108 433 377 Face 791 169 286 369 Face 792 211 7 309 Face 793 356 430 5 Face 794 123 4 377 Face 795 337 409 244 Face 796 144 114 20 Face 797 154 294 483 Face 798 304 261 51 Face 799 12 170 252 Face 800 231 17 148 Face 801 366 470 378 Face 802 13 450 497 Face 803 403 30 463 Face 804 330 27 203 Face 805 124 19 285 Face 806 31 54 494 Face 807 212 6 28 Face 808 146 186 358 Face 809 232 111 284 Face 810 36 127 295 Face 811 121 454 455 Face 812 388 72 325 Face 813 49 118 197 Face 814 265 299 134 Face 815 77 485 105 Face 816 462 305 138 Face 817 40 171 149 Face 818 429 270 122 Face 819 45 329 109 Face 820 354 339 353 Face 821 94 251 486 Face 822 34 80 85 Face 823 474 284 135 Face 824 36 113 72 Face 825 253 416 442 Face 826 483 349 384 Face 827 148 17 388 Face 828 421 260 288 Face 829 453 353 281 Face 830 257 65 372 Face 831 334 228 177 Face 832 424 132 484 Face 833 276 438 214 Face 834 453 452 353 Face 835 262 139 196 Face 836 415 159 501 Face 837 359 133 328 Face 838 409 320 56 Face 839 110 289 290 Face 840 58 309 287 Face 841 346 501 332 Face 842 353 339 281 Face 843 473 500 185 Face 844 216 411 125 Face 845 438 386 67 Face 846 383 200 35 Face 847 85 335 47 Face 848 489 414 222 Face 849 477 276 213 Face 850 477 222 276 Face 851 444 294 154 Face 852 332 419 91 Face 853 450 391 226 Face 854 450 178 391 Face 855 180 297 92 Face 856 10 296 464 Face 857 205 297 185 Face 858 412 145 181 Face 859 186 232 358 Face 860 186 288 232 Face 861 478 208 57 Face 862 232 288 111 Face 863 279 199 215 Face 864 473 50 184 Face 865 333 441 373 Face 866 437 173 89 Face 867 359 23 482 Face 868 412 226 14 Face 869 347 313 47 Face 870 140 428 352 Face 871 478 408 162 Face 872 47 466 85 Face 873 163 333 35 Face 874 9 345 82 Face 875 288 260 254 Face 876 123 377 179 Face 877 315 102 350 Face 878 465 64 408 Face 879 58 287 152 Face 880 461 125 151 Face 881 370 451 228 Face 882 194 63 311 Face 883 71 259 143 Face 884 460 272 86 Face 885 469 116 83 Face 886 316 25 66 Face 887 43 396 200 Face 888 161 398 449 Face 889 242 481 139 Face 890 449 214 439 Face 891 269 290 48 Face 892 415 192 90 Face 893 50 131 184 Face 894 371 476 379 Face 895 419 332 364 Face 896 61 274 321 Face 897 194 311 446 Face 898 158 112 316 Face 899 58 16 148 Face 900 474 22 170 Face 901 365 123 247 Face 902 357 12 189 Face 903 378 481 32 Face 904 299 265 266 Face 905 61 211 457 Face 906 200 396 164 Face 907 97 33 234 Face 908 345 487 237 Face 909 32 366 378 Face 910 285 298 262 Face 911 138 305 47 Face 912 462 138 96 Face 913 228 451 50 Face 914 20 425 38 Face 915 354 353 401 Face 916 196 139 258 Face 917 367 39 435 Face 918 307 92 306 Face 919 445 376 174 Face 920 484 128 69 Face 921 400 467 173 Face 922 164 396 101 Face 923 430 75 5 Face 924 120 183 326 Face 925 231 491 389 Face 926 231 136 491 Face 927 60 278 432 Face 928 301 159 415 Face 929 244 409 56 Face 930 261 448 33 Face 931 332 159 364 Face 932 357 232 12 Face 933 113 397 274 Face 934 495 286 121 Face 935 315 100 273 Face 936 295 246 74 Face 937 63 318 455 Face 938 179 52 123 Face 939 372 65 338 Face 940 89 173 499 Face 941 24 9 82 Face 942 277 91 471 Face 943 475 157 262 Face 944 203 246 28 Face 945 174 460 371 Face 946 208 417 233 Face 947 303 327 160 Face 948 326 183 67 Face 949 64 162 408 Face 950 279 372 338 Face 951 8 198 278 Face 952 354 402 339 Face 953 341 199 37 Face 954 3 207 468 Face 955 407 69 140 Face 956 93 181 84 Face 957 111 403 135 Face 958 57 322 478 Face 959 331 429 122 Face 960 429 331 448 Face 961 172 393 107 Face 962 166 380 390 Face 963 273 178 102 Face 964 277 375 458 Face 965 308 397 74 Face 966 113 274 457 Face 967 45 384 329 Face 968 148 388 58 Face 969 315 273 102 Face 970 262 196 156 Face 971 374 252 436 Face 972 261 40 448 Face 973 16 171 387 Face 974 191 241 9 Face 975 185 500 87 Face 976 268 399 283 Face 977 220 223 64 Face 978 253 403 111 Face 979 484 340 424 Face 980 355 310 218 Face 981 119 115 13 Face 982 117 338 404 Face 983 35 164 147 Face 984 120 408 478 Face 985 69 407 182 Face 986 302 104 458 Face 987 247 52 177 Face 988 89 209 437 Face 989 212 245 95 Face 990 342 56 208 Face 991 209 89 87 Face 992 99 172 336 Face 993 110 30 403 Face 994 389 493 492 Face 995 206 169 207 Face 996 243 267 91 Face 997 485 8 287 Face 998 343 494 298 Face 999 405 372 129 Face 1000 145 412 14 ================================================ FILE: models/tyra_20k.m ================================================ Vertex 1 0.858806 0.0819646 -0.620838 Vertex 2 0.718828 1.16675 -0.584247 Vertex 3 -0.163377 -2.84108 2.22252 Vertex 4 0.368357 -3.3594 1.81621 Vertex 5 -0.31648 4.54561 -0.944239 Vertex 6 -0.784149 -0.366341 -1.71279 Vertex 7 -1.00595 0.109139 -1.68166 Vertex 8 0.159844 -2.96075 1.56846 Vertex 9 0.762327 -3.71634 2.62977 Vertex 10 -0.898261 -1.32625 -0.104598 Vertex 11 -0.69899 0.780703 0.964406 Vertex 12 1.24748 0.819923 -0.811957 Vertex 13 -0.310795 0.876227 -0.567023 Vertex 14 -0.609718 0.210241 -1.78984 Vertex 15 0.688667 1.60688 0.699913 Vertex 16 1.82254 0.436576 -2.77343 Vertex 17 0.760767 -3.08555 2.61189 Vertex 18 0.6709 2.44109 -0.336096 Vertex 19 -0.41245 0.892067 1.05636 Vertex 20 0.025568 -1.38396 1.21871 Vertex 21 -0.0833491 -1.91369 3.03917 Vertex 22 1.60361 1.03285 -2.85043 Vertex 23 -0.683076 0.664096 -0.725326 Vertex 24 1.93684 0.597571 -2.72353 Vertex 25 0.505852 -2.99759 1.88921 Vertex 26 -0.896598 4.66311 -1.54616 Vertex 27 -1.15533 4.95145 -1.97082 Vertex 28 -1.18335 -1.24236 -2.66823 Vertex 29 -0.349607 -1.25025 1.59153 Vertex 30 -0.0838367 -2.9821 2.4106 Vertex 31 -0.695202 -0.755855 -0.368438 Vertex 32 0.370375 -1.88596 -0.00781047 Vertex 33 0.0498042 -2.72283 1.56192 Vertex 34 1.33932 0.8341 -2.85188 Vertex 35 -0.783832 -1.75123 2.00523 Vertex 36 0.428253 -0.327379 0.963657 Vertex 37 0.230123 -2.78108 3.06698 Vertex 38 -0.111538 -2.50357 3.09352 Vertex 39 -0.265147 -0.713534 1.52659 Vertex 40 0.142889 2.35957 0.450732 Vertex 41 0.912161 1.4455 0.273031 Vertex 42 0.210368 1.48265 -0.967251 Vertex 43 -0.773372 -0.839877 1.26838 Vertex 44 -0.09052 -2.23584 0.286368 Vertex 45 -0.400087 -0.121034 1.50094 Vertex 46 0.329912 -3.4769 1.77381 Vertex 47 -0.298335 0.339367 -0.838427 Vertex 48 1.33205 1.1342 -2.5639 Vertex 49 1.53706 0.772109 -2.87237 Vertex 50 0.796506 -3.61524 2.30884 Vertex 51 -0.306462 -2.16412 0.481707 Vertex 52 -0.359812 -2.75883 1.91665 Vertex 53 -0.818193 0.358091 -1.58432 Vertex 54 1.306 1.38836 -2.15195 Vertex 55 0.756929 1.82823 -0.279071 Vertex 56 0.456342 2.10044 0.649116 Vertex 57 -0.515833 -0.259122 -1.56166 Vertex 58 -1.08184 0.018873 -0.44013 Vertex 59 0.192071 -0.21246 1.37194 Vertex 60 1.72589 0.513758 -2.79719 Vertex 61 -0.479077 -2.11017 2.43892 Vertex 62 -0.687347 0.078604 -2.02355 Vertex 63 -1.35806 5.25043 -2.3631 Vertex 64 -0.271981 1.34338 0.861371 Vertex 65 -0.357567 -2.42818 1.61635 Vertex 66 -0.172843 4.0947 -1.0808 Vertex 67 0.106318 2.56504 -0.59199 Vertex 68 0.560758 -0.380325 0.121422 Vertex 69 -0.886648 -0.332997 -0.264346 Vertex 70 0.155202 -1.97641 2.23191 Vertex 71 1.14438 0.295412 -1.27137 Vertex 72 0.0614545 -1.63052 1.03663 Vertex 73 -0.817799 -1.56612 1.29713 Vertex 74 0.0919522 -2.41867 1.57077 Vertex 75 -0.232321 3.86485 -0.828875 Vertex 76 0.74928 -3.74205 2.39304 Vertex 77 0.251579 -3.21586 2.31234 Vertex 78 -0.509429 -2.27124 1.97499 Vertex 79 1.88876 0.141768 -2.54894 Vertex 80 -0.422877 -0.497567 1.55365 Vertex 81 -0.737971 4.9515 -1.42767 Vertex 82 -0.832759 -0.473891 -0.742949 Vertex 83 -0.253929 -2.37908 2.60796 Vertex 84 0.104143 -2.7449 2.90368 Vertex 85 0.392426 -0.587698 -0.285214 Vertex 86 -0.0895637 -1.59465 1.49716 Vertex 87 -1.04023 -2.71011 -0.21015 Vertex 88 1.42333 1.33799 -1.75475 Vertex 89 -0.939002 0.483463 0.660509 Vertex 90 -0.0235108 -2.39358 3.03807 Vertex 91 0.198424 -2.94768 2.24988 Vertex 92 -0.237898 1.69918 0.480884 Vertex 93 1.27934 0.751505 -0.844061 Vertex 94 0.477065 -3.1621 1.47581 Vertex 95 -1.34047 -1.48184 -2.49855 Vertex 96 0.314925 -0.0497155 -0.370503 Vertex 97 -1.15689 -1.00562 -2.74753 Vertex 98 -0.280045 -2.3327 2.57779 Vertex 99 -0.740106 -1.5545 2.16435 Vertex 100 0.77607 1.42737 0.670364 Vertex 101 0.568398 -2.75756 2.98289 Vertex 102 0.525952 -2.38394 -0.282602 Vertex 103 1.18805 0.66613 -0.335298 Vertex 104 0.827774 1.23481 -0.42902 Vertex 105 0.723008 -2.20511 -0.505406 Vertex 106 -0.0399391 -0.0624713 1.39028 Vertex 107 0.548065 0.047779 0.423625 Vertex 108 0.32116 -3.00806 2.7524 Vertex 109 -0.715069 4.46123 -1.21068 Vertex 110 0.295336 -1.45754 0.451503 Vertex 111 -0.886295 -2.89057 -0.148038 Vertex 112 0.668991 1.81434 0.506264 Vertex 113 -0.112097 -2.0585 1.33835 Vertex 114 0.82219 0.372538 0.421184 Vertex 115 -1.33067 -1.29707 -2.40687 Vertex 116 -0.330835 -2.65645 2.17426 Vertex 117 -1.02783 0.444371 0.256789 Vertex 118 0.271449 -3.49094 1.5627 Vertex 119 1.47949 1.0366 -1.62635 Vertex 120 0.127369 3.95128 -0.233103 Vertex 121 0.688864 2.39109 0.246113 Vertex 122 -0.776919 -0.853085 -0.313319 Vertex 123 -0.0938646 3.20181 -0.391516 Vertex 124 1.19558 0.835683 -0.431797 Vertex 125 -0.192304 -0.0964916 1.50199 Vertex 126 -0.064172 4.25743 -0.620468 Vertex 127 -0.729147 -1.90766 1.19442 Vertex 128 -0.0946878 -1.05483 1.4269 Vertex 129 0.483378 -2.3782 2.17169 Vertex 130 0.100593 0.135487 1.31022 Vertex 131 -0.90004 -2.00674 0.481283 Vertex 132 0.826118 -3.72682 2.43536 Vertex 133 0.194577 2.05877 0.660619 Vertex 134 2.08029 0.62058 -2.61537 Vertex 135 0.805567 0.658505 0.600434 Vertex 136 0.391483 0.97043 1.14404 Vertex 137 -0.447562 0.798413 -0.697623 Vertex 138 -0.633676 -2.09534 2.01525 Vertex 139 0.511389 -0.225213 0.620393 Vertex 140 -0.768545 -1.48139 -0.122274 Vertex 141 0.103487 3.19817 0.0967523 Vertex 142 -0.719406 -1.08689 1.27856 Vertex 143 0.689321 2.30213 0.286611 Vertex 144 0.000501016 2.38306 0.316778 Vertex 145 0.406951 -1.15802 0.535676 Vertex 146 -0.0685429 -1.66755 1.70289 Vertex 147 -0.0384189 1.11302 -0.668485 Vertex 148 -0.58445 -0.940431 -0.458467 Vertex 149 -1.41888 5.65806 -2.73456 Vertex 150 -0.0238832 3.97357 -0.10978 Vertex 151 0.514848 -3.39874 2.74424 Vertex 152 -0.606631 -2.02159 0.869858 Vertex 153 -0.19585 3.61319 -0.35506 Vertex 154 -1.11387 -2.8499 -0.359224 Vertex 155 -0.849754 -0.657609 -2.18211 Vertex 156 -0.188019 1.3042 0.913716 Vertex 157 0.723561 -3.16713 2.91974 Vertex 158 -1.07599 -1.39597 0.391079 Vertex 159 -1.02273 -1.42292 0.0908289 Vertex 160 0.374058 2.86484 -0.64011 Vertex 161 0.0375738 0.288016 -1.06529 Vertex 162 0.442901 -0.984883 0.570624 Vertex 163 -0.494826 1.42159 0.57649 Vertex 164 0.0292933 1.67496 -0.555883 Vertex 165 -0.408652 -1.38011 -2.52401 Vertex 166 -0.41492 -1.52544 -2.73865 Vertex 167 0.459841 -2.78729 3.01719 Vertex 168 -0.587799 -2.04081 0.934503 Vertex 169 -0.924124 -1.11183 -2.4073 Vertex 170 0.555138 -3.49994 1.67109 Vertex 171 0.644076 1.54743 0.799618 Vertex 172 -0.688253 -0.960901 -2.36888 Vertex 173 0.471502 -2.17217 2.64461 Vertex 174 0.664888 2.09748 -0.377192 Vertex 175 -0.209322 -2.11109 1.13363 Vertex 176 -0.0429274 0.582527 -0.91937 Vertex 177 0.587057 1.41568 -0.655476 Vertex 178 -0.0647681 1.27446 -0.584491 Vertex 179 -0.535581 4.7367 -0.95113 Vertex 180 0.56771 -2.92326 2.16945 Vertex 181 -1.03754 0.0179333 -0.788785 Vertex 182 -0.999308 0.103125 -0.910454 Vertex 183 -0.140325 -2.72043 1.70082 Vertex 184 -0.191547 -2.23721 0.401278 Vertex 185 -0.0119088 -2.23138 0.396137 Vertex 186 0.179147 -1.09264 1.19998 Vertex 187 -0.577117 0.311771 -1.58769 Vertex 188 0.614365 0.818295 -0.752061 Vertex 189 0.380454 -1.98468 -0.285158 Vertex 190 0.594769 -2.72589 2.5398 Vertex 191 1.38555 0.759319 -2.87189 Vertex 192 0.271747 -3.46025 1.70895 Vertex 193 -1.08548 -1.87012 0.259343 Vertex 194 -0.343612 1.55851 0.583123 Vertex 195 1.64367 0.840186 -2.85771 Vertex 196 -0.450665 -1.74699 2.8367 Vertex 197 -0.950902 -0.0765322 -2.10973 Vertex 198 2.10211 0.695628 -2.80872 Vertex 199 -0.536297 -2.04305 2.42138 Vertex 200 0.51203 -0.0422116 0.271791 Vertex 201 -0.00119535 -1.61961 2.80847 Vertex 202 0.192184 -2.93159 2.34513 Vertex 203 0.921588 1.07276 0.421665 Vertex 204 0.202005 3.85968 -0.206824 Vertex 205 -0.1071 2.35378 -0.356478 Vertex 206 -0.906333 -0.0370822 -2.331 Vertex 207 -0.54126 -2.04534 0.824602 Vertex 208 -0.258613 1.65314 0.19471 Vertex 209 -0.884893 -0.702431 1.17382 Vertex 210 -0.42467 4.65372 -1.1352 Vertex 211 0.973199 1.04894 -1.155 Vertex 212 0.708352 0.203136 0.505541 Vertex 213 -0.954858 -1.15916 -0.0699743 Vertex 214 0.37298 -2.19419 2.93245 Vertex 215 -1.04563 -0.0772137 -1.04589 Vertex 216 -0.666648 -0.270224 -1.15861 Vertex 217 0.616879 -3.57426 2.34969 Vertex 218 -0.27094 0.799323 -0.65823 Vertex 219 -0.630183 -0.00121261 -2.18455 Vertex 220 -0.855369 -1.61144 -2.5399 Vertex 221 -0.916086 -1.75311 -2.58076 Vertex 222 -0.454393 1.27708 -0.0412468 Vertex 223 -0.556356 -1.21304 -2.74862 Vertex 224 1.38877 0.743804 -0.963372 Vertex 225 -1.39834 5.81484 -2.62621 Vertex 226 1.13287 0.923006 -0.0962574 Vertex 227 -0.117127 -1.97332 3.04668 Vertex 228 0.871977 0.9096 -1.07178 Vertex 229 2.02718 0.847046 -2.62815 Vertex 230 0.457481 -1.02083 0.123997 Vertex 231 -0.99261 -0.948123 -2.4298 Vertex 232 0.0158622 1.75447 0.736727 Vertex 233 -0.54032 4.7304 -1.31511 Vertex 234 0.22125 -2.5333 1.5416 Vertex 235 -0.319201 -1.86581 -0.088763 Vertex 236 0.129318 1.41496 -0.829541 Vertex 237 -1.3813 5.72358 -2.66715 Vertex 238 -1.19347 -2.69769 -0.276684 Vertex 239 0.207247 3.57604 -0.707516 Vertex 240 0.3376 -3.31438 1.42448 Vertex 241 1.56375 1.04903 -2.06092 Vertex 242 -1.00014 -0.131456 -1.5319 Vertex 243 -0.920807 0.675812 0.481707 Vertex 244 0.429947 -2.66792 1.72972 Vertex 245 -0.764786 0.964141 0.500729 Vertex 246 0.132849 -0.38755 1.40047 Vertex 247 -1.20224 -0.963508 -2.67293 Vertex 248 -1.02201 -1.22483 0.167074 Vertex 249 -0.173 -2.10235 1.19899 Vertex 250 -1.01254 0.351472 0.481707 Vertex 251 0.568517 -2.41573 -0.312262 Vertex 252 0.232542 -1.94912 2.39225 Vertex 253 0.161075 1.57432 -0.87887 Vertex 254 -0.20358 0.201287 1.48826 Vertex 255 0.720841 2.43231 -0.101105 Vertex 256 -0.971206 -0.488828 0.917773 Vertex 257 0.602339 -2.58795 2.7524 Vertex 258 -0.203397 2.04824 -0.0675011 Vertex 259 0.572161 0.513704 -0.722226 Vertex 260 0.738685 2.24513 -0.21229 Vertex 261 -0.348428 -2.34731 1.17949 Vertex 262 -0.736088 -0.395714 -0.849808 Vertex 263 -0.624379 -1.09748 -2.43428 Vertex 264 -0.36305 1.05733 -0.39945 Vertex 265 0.503774 0.278817 -0.550255 Vertex 266 0.105689 4.04939 -0.510882 Vertex 267 0.226064 1.27365 -0.924475 Vertex 268 1.40027 1.17042 -2.71497 Vertex 269 -0.90139 -0.255704 0.412666 Vertex 270 0.300946 -1.29086 0.898982 Vertex 271 0.248187 -3.10822 2.6314 Vertex 272 0.116793 -3.13012 2.11011 Vertex 273 -0.389667 -2.19944 2.59316 Vertex 274 0.417186 3.27724 0.0972797 Vertex 275 0.227781 0.262057 1.22658 Vertex 276 0.513028 -2.94725 3.00955 Vertex 277 0.815477 -3.33203 2.79707 Vertex 278 0.372828 -1.08311 0.876334 Vertex 279 -0.0571211 2.95826 -0.406348 Vertex 280 0.411388 -2.44703 2.10224 Vertex 281 -1.211 5.09938 -1.65113 Vertex 282 -0.781502 -0.952209 -2.80234 Vertex 283 0.19153 -1.65018 0.824702 Vertex 284 -0.620211 -0.437977 -2.23976 Vertex 285 0.373873 0.361306 -0.741356 Vertex 286 -0.611159 -1.99962 2.2541 Vertex 287 -0.572211 -1.40139 -2.76776 Vertex 288 -0.986968 0.184232 -0.754106 Vertex 289 1.00406 0.184347 -1.1387 Vertex 290 -0.644885 -0.652329 -2.56481 Vertex 291 0.212373 -3.35476 1.5043 Vertex 292 -1.06009 5.11293 -1.94512 Vertex 293 0.188878 2.41617 -0.724521 Vertex 294 0.0961274 4.04378 -0.371909 Vertex 295 -1.57049 5.58584 -2.36399 Vertex 296 0.721927 0.0949497 -0.650878 Vertex 297 -0.229928 3.90535 -0.893392 Vertex 298 -0.0821916 2.10276 0.328392 Vertex 299 0.804592 -3.75416 2.59344 Vertex 300 -0.955331 -1.66453 -2.39478 Vertex 301 -0.125185 3.79779 -0.16288 Vertex 302 1.3316 0.506328 -1.27289 Vertex 303 -0.800714 0.87403 -0.214465 Vertex 304 -0.886587 -0.427394 -1.961 Vertex 305 0.160327 1.92464 -0.68461 Vertex 306 -1.05993 -1.49086 0.596206 Vertex 307 -0.212631 1.45411 -0.370972 Vertex 308 -0.492343 -1.32117 2.49436 Vertex 309 -0.959279 -1.77598 -2.48476 Vertex 310 0.470448 1.57414 -0.765783 Vertex 311 -1.12291 -2.69188 -0.13186 Vertex 312 1.76247 0.678445 -2.79217 Vertex 313 0.203888 -0.155419 -0.528076 Vertex 314 -0.404172 1.354 0.78948 Vertex 315 1.38249 0.88966 -0.962502 Vertex 316 0.511669 -2.29566 -0.244089 Vertex 317 1.49462 1.3635 -1.80299 Vertex 318 -0.538314 4.77436 -1.20323 Vertex 319 -0.359639 4.69696 -1.19417 Vertex 320 0.198014 1.7887 0.829021 Vertex 321 -0.570407 -2.12389 1.22391 Vertex 322 0.588217 0.869818 1.02858 Vertex 323 0.0236426 -2.96934 2.37926 Vertex 324 0.633615 2.59328 -0.361062 Vertex 325 -0.645067 0.348399 1.13558 Vertex 326 0.242947 -0.948012 1.19873 Vertex 327 -0.0845309 -1.77044 1.29395 Vertex 328 -0.935046 -1.63279 -2.6467 Vertex 329 0.7463 -3.50734 2.32589 Vertex 330 -0.897723 -0.33054 0.152609 Vertex 331 0.620477 -2.81415 2.82218 Vertex 332 -0.899187 0.296805 0.778911 Vertex 333 0.435099 2.12975 -0.612238 Vertex 334 0.54757 -0.379901 0.488046 Vertex 335 0.624659 2.88924 -0.16635 Vertex 336 0.811857 1.50633 -0.306159 Vertex 337 0.464553 -0.590883 -0.142418 Vertex 338 0.567949 -2.57746 2.61306 Vertex 339 -0.607742 -0.103953 -2.20657 Vertex 340 -0.929378 -1.95652 -0.174835 Vertex 341 0.0418858 4.08621 -0.35194 Vertex 342 -0.0970818 -0.51069 1.45195 Vertex 343 1.87406 0.117288 -2.48158 Vertex 344 -0.0186809 3.98552 -0.870294 Vertex 345 -0.673368 4.4861 -0.845587 Vertex 346 1.17768 0.805358 -1.81776 Vertex 347 -0.0410257 -2.90036 2.29892 Vertex 348 0.641686 0.151363 0.555321 Vertex 349 -0.699896 -1.73823 -0.0926075 Vertex 350 -0.998825 -1.68652 0.724595 Vertex 351 1.20407 1.21137 -1.28266 Vertex 352 1.99396 0.859685 -2.73297 Vertex 353 -0.673615 -1.97238 1.04053 Vertex 354 1.24893 1.16912 -2.32962 Vertex 355 0.138757 -2.19181 2.9948 Vertex 356 0.5771 3.0563 -0.0557258 Vertex 357 0.996498 1.29113 -0.276622 Vertex 358 -1.07173 -1.09487 0.358316 Vertex 359 -1.21709 -1.05294 -2.71078 Vertex 360 0.852811 -3.30354 2.56806 Vertex 361 0.348462 1.75072 0.848135 Vertex 362 1.75183 0.241155 -2.601 Vertex 363 0.783588 0.955686 0.740111 Vertex 364 -0.761057 -1.54583 2.1099 Vertex 365 -0.103514 2.79316 -0.254778 Vertex 366 -0.984932 -0.542361 -2.21513 Vertex 367 0.66466 1.14659 0.919653 Vertex 368 -0.176025 0.727988 1.31107 Vertex 369 -0.934416 -0.366515 -2.51305 Vertex 370 0.0986189 -2.48666 1.5515 Vertex 371 -1.48845 5.38032 -2.13036 Vertex 372 -1.03703 -1.99071 0.197767 Vertex 373 -0.221572 -1.53415 2.87402 Vertex 374 -0.527596 0.322528 -1.05588 Vertex 375 -1.03032 -2.53338 -0.247505 Vertex 376 -1.40479 5.55023 -2.1973 Vertex 377 1.00498 0.963491 -1.48195 Vertex 378 -0.730438 0.154173 1.08154 Vertex 379 -0.472848 -0.53689 -0.505952 Vertex 380 1.0786 0.306016 -1.31996 Vertex 381 0.938131 0.481372 -1.42598 Vertex 382 0.559405 -2.53162 2.56762 Vertex 383 -0.382093 -0.0712107 1.51565 Vertex 384 0.204896 -2.89335 1.54808 Vertex 385 -0.520236 1.36287 0.454462 Vertex 386 -0.617307 -0.879106 1.39846 Vertex 387 -0.876652 -0.799364 -2.27687 Vertex 388 0.527756 -0.780056 0.162521 Vertex 389 0.502846 -0.132391 0.555763 Vertex 390 -0.841946 -1.16158 -0.208687 Vertex 391 0.32116 0.496053 1.1829 Vertex 392 -0.978377 0.484429 -0.254951 Vertex 393 0.462817 3.06433 0.157349 Vertex 394 -0.812222 -0.476873 -2.01015 Vertex 395 -0.283229 -1.1739 1.46918 Vertex 396 -1.03276 -1.69037 0.0301035 Vertex 397 -0.752403 0.466265 -0.83216 Vertex 398 -0.842872 -1.80386 -0.0612496 Vertex 399 0.237781 -1.61211 0.409072 Vertex 400 0.432559 1.61242 -0.79987 Vertex 401 0.497525 1.62928 -0.735573 Vertex 402 -0.659459 -2.13433 1.76011 Vertex 403 -1.04951 -0.0809223 -0.973758 Vertex 404 0.422736 -0.872633 0.85094 Vertex 405 -0.44337 4.6212 -0.824987 Vertex 406 0.247204 -0.62841 -0.443952 Vertex 407 -1.49906 5.66941 -2.35439 Vertex 408 -0.256473 1.61058 -0.0312443 Vertex 409 -0.873406 -2.90077 -0.0839558 Vertex 410 0.771571 0.15138 0.321532 Vertex 411 0.504847 -0.617429 0.675144 Vertex 412 -0.909283 -2.07641 -0.16563 Vertex 413 -0.841835 -2.04067 0.520144 Vertex 414 -0.519025 -1.85371 2.68293 Vertex 415 0.39601 -3.46104 2.32824 Vertex 416 -1.30721 5.3148 -2.3219 Vertex 417 0.557638 -2.2656 2.93486 Vertex 418 -0.175439 -0.367937 1.48321 Vertex 419 -0.0345252 -0.263153 1.4158 Vertex 420 -1.12791 -1.9515 -0.0578193 Vertex 421 0.642186 -2.11177 -0.335071 Vertex 422 0.257956 -1.45981 0.0467843 Vertex 423 0.98129 1.4004 0.113025 Vertex 424 0.165082 2.13604 0.586599 Vertex 425 -0.0320554 -1.15923 1.35236 Vertex 426 0.47795 2.14538 -0.565229 Vertex 427 1.83589 0.680669 -2.56843 Vertex 428 1.24894 1.37518 -1.96547 Vertex 429 1.23429 0.370237 -0.88341 Vertex 430 0.319622 1.50512 -0.915368 Vertex 431 -0.370119 -1.23688 2.07485 Vertex 432 0.227778 3.5786 0.0444305 Vertex 433 -0.782228 -0.486019 -0.248492 Vertex 434 1.14962 0.177002 -1.01747 Vertex 435 0.045999 1.34223 -0.684176 Vertex 436 0.368128 0.446622 -0.817776 Vertex 437 0.19828 2.50833 0.430971 Vertex 438 0.0684765 2.4884 0.345193 Vertex 439 0.00906011 2.95222 0.0829722 Vertex 440 -0.407994 -1.31726 -2.55847 Vertex 441 0.000940803 3.20465 -0.00645502 Vertex 442 -0.881686 -0.619111 -0.116073 Vertex 443 -1.14798 -1.10729 -2.75522 Vertex 444 0.152696 -3.36885 1.68653 Vertex 445 0.697964 -3.55402 2.73332 Vertex 446 0.434301 2.94166 -0.574743 Vertex 447 0.273785 -2.83559 3.04237 Vertex 448 -0.132297 0.242412 1.38446 Vertex 449 0.764167 1.7428 -0.325617 Vertex 450 0.536626 -2.25591 2.73218 Vertex 451 0.15614 3.54536 -0.806726 Vertex 452 0.0461859 3.85516 -0.832007 Vertex 453 1.00589 0.151774 -0.43597 Vertex 454 -0.439048 4.67086 -0.957079 Vertex 455 -0.090066 3.02087 -0.139813 Vertex 456 -0.396843 -0.371872 1.55558 Vertex 457 -0.236475 4.32562 -0.468259 Vertex 458 -0.888552 0.0253396 -2.02352 Vertex 459 -0.110559 3.72571 -0.145162 Vertex 460 0.103789 1.3688 -0.787748 Vertex 461 1.22598 0.382204 -2.65375 Vertex 462 0.289327 1.53086 0.939669 Vertex 463 0.738998 1.54196 0.660052 Vertex 464 0.456285 3.36709 -0.0154948 Vertex 465 -0.895672 -0.0691215 0.762527 Vertex 466 0.590382 -2.47539 2.76486 Vertex 467 -0.755321 -0.788149 -2.31077 Vertex 468 1.43903 0.831047 -1.86192 Vertex 469 0.476429 -0.269968 -0.100618 Vertex 470 2.03143 0.736624 -2.78575 Vertex 471 1.49032 0.876256 -1.32497 Vertex 472 -0.643073 4.31811 -1.01848 Vertex 473 -0.629294 0.00933433 -2.12454 Vertex 474 0.581455 3.02266 -0.00237126 Vertex 475 -0.202705 1.03571 -0.570501 Vertex 476 -1.06609 -1.35394 0.326697 Vertex 477 0.751362 1.60415 0.58107 Vertex 478 0.356932 0.116311 1.05797 Vertex 479 -0.81054 -0.644021 1.27862 Vertex 480 0.750085 -3.42806 2.87267 Vertex 481 0.0106513 -2.19379 0.535864 Vertex 482 1.16374 0.265855 -0.776971 Vertex 483 0.439738 -1.98141 -0.252785 Vertex 484 0.584141 0.0635839 0.182782 Vertex 485 0.536097 -0.741026 0.384826 Vertex 486 -0.0963993 2.34451 0.114772 Vertex 487 -0.709379 -0.418393 1.33214 Vertex 488 -0.740546 -0.352905 1.3129 Vertex 489 1.51347 1.32629 -1.92812 Vertex 490 -0.227344 -1.38436 -0.34799 Vertex 491 -0.166341 -1.95138 1.00182 Vertex 492 0.154439 -1.95986 2.95558 Vertex 493 0.261196 -1.73535 0.125651 Vertex 494 0.192808 -0.0673363 -0.602816 Vertex 495 -0.432928 -2.19029 0.988811 Vertex 496 0.560629 -2.53158 2.40314 Vertex 497 0.332438 2.92589 0.402446 Vertex 498 -0.837336 -1.0652 -2.78313 Vertex 499 -0.71297 -0.940748 1.30774 Vertex 500 -1.0376 0.370375 -0.202735 Vertex 501 0.400564 -0.101042 0.96334 Vertex 502 -1.13357 -2.26179 -0.237075 Vertex 503 -0.675332 -1.47361 -0.179311 Vertex 504 0.224127 -1.42054 -0.0675827 Vertex 505 0.890717 0.384441 -1.25303 Vertex 506 -0.217001 -2.45038 2.53368 Vertex 507 -0.221871 3.61577 -0.555754 Vertex 508 -0.761171 4.52673 -1.03811 Vertex 509 -0.76008 -0.385095 -1.77364 Vertex 510 -0.0562306 -1.67041 1.80331 Vertex 511 -0.620583 -2.02646 0.976692 Vertex 512 -0.683535 0.987455 0.789028 Vertex 513 0.743715 -3.64579 2.67613 Vertex 514 -0.979175 -1.57214 0.811516 Vertex 515 -0.885823 -0.0859946 0.353913 Vertex 516 0.181716 3.43638 0.207207 Vertex 517 8.1535e-006 3.01076 0.0533316 Vertex 518 -1.04826 -0.644932 0.410231 Vertex 519 0.0169151 3.43774 -0.0185835 Vertex 520 -0.206232 -2.69004 1.71564 Vertex 521 0.428588 -2.96885 2.99453 Vertex 522 0.212483 2.76456 0.358175 Vertex 523 -0.719742 0.467691 1.07636 Vertex 524 0.666172 0.698491 -0.805558 Vertex 525 0.197012 -1.24244 -0.254112 Vertex 526 0.212797 -0.866121 1.27856 Vertex 527 0.43332 -2.33821 2.95472 Vertex 528 0.42512 -1.10381 0.493413 Vertex 529 1.15307 1.02411 -1.82076 Vertex 530 0.22348 -2.09513 -0.0554687 Vertex 531 1.59507 1.23048 -2.45862 Vertex 532 -0.753739 -1.41591 -0.167259 Vertex 533 1.22456 0.98347 -2.02296 Vertex 534 -1.00437 -1.44772 -2.47482 Vertex 535 -0.20231 -2.31915 2.82189 Vertex 536 0.112785 -1.50928 -0.092474 Vertex 537 1.90034 0.156947 -2.44231 Vertex 538 1.85702 0.921768 -2.5469 Vertex 539 1.84847 0.992759 -2.57006 Vertex 540 0.149973 -1.96765 -0.114132 Vertex 541 0.828055 1.68063 -0.0392542 Vertex 542 0.475985 0.76263 -0.739895 Vertex 543 -1.14435 5.20343 -2.03691 Vertex 544 -0.76456 -1.84558 1.56168 Vertex 545 -0.372512 1.40712 0.104634 Vertex 546 -0.813317 -0.337119 -1.53672 Vertex 547 0.135954 -2.95789 2.25673 Vertex 548 -0.318491 -2.14684 0.592247 Vertex 549 -1.28513 -1.41126 -2.61241 Vertex 550 0.464797 2.84724 0.277628 Vertex 551 0.843061 -3.72733 2.63948 Vertex 552 -0.145896 -0.867335 1.45457 Vertex 553 -0.0739114 0.496447 1.30578 Vertex 554 -0.127434 -2.45743 1.61258 Vertex 555 -0.640007 0.705204 1.05112 Vertex 556 -0.418921 -0.00585745 -0.728186 Vertex 557 0.172039 0.208055 -0.988466 Vertex 558 -0.937529 0.0379622 0.36752 Vertex 559 0.0930724 -3.05807 2.46548 Vertex 560 -0.108955 2.57496 0.00370733 Vertex 561 -1.53428 5.48134 -2.23845 Vertex 562 -0.0828404 2.30022 -0.382122 Vertex 563 -0.0981778 2.92559 -0.250598 Vertex 564 -0.146524 -2.49611 2.79216 Vertex 565 -0.228051 -1.91099 3.02495 Vertex 566 0.0730048 4.02932 -0.677241 Vertex 567 -0.164915 -2.44489 1.47269 Vertex 568 0.567546 2.45789 -0.489444 Vertex 569 1.55179 0.576416 -2.80642 Vertex 570 -0.429516 -2.10029 2.71231 Vertex 571 -0.66149 -0.441679 -2.11071 Vertex 572 0.255505 2.84479 -0.745179 Vertex 573 0.268973 2.6231 0.494916 Vertex 574 0.551915 2.98504 -0.370546 Vertex 575 1.43715 1.45206 -1.92104 Vertex 576 -0.0852814 -1.52375 2.24684 Vertex 577 -0.687631 -0.832184 -0.39281 Vertex 578 -0.165032 -2.0617 1.13632 Vertex 579 0.585309 0.0879624 -0.263003 Vertex 580 -0.323388 -2.16292 0.241876 Vertex 581 0.892519 1.3011 0.441163 Vertex 582 0.858196 1.15142 0.561428 Vertex 583 -0.890573 -0.291198 -0.137717 Vertex 584 0.8374 0.777552 -1.07837 Vertex 585 -0.844308 0.149269 -1.87019 Vertex 586 -0.738729 -0.907104 -2.79242 Vertex 587 1.29048 1.31299 -2.39374 Vertex 588 0.45511 -3.22039 1.43662 Vertex 589 -0.976954 -1.82634 0.669225 Vertex 590 -0.871519 -0.749072 -2.76022 Vertex 591 0.409335 -3.46048 2.39069 Vertex 592 -0.260828 -2.89234 1.79597 Vertex 593 -0.804803 -1.35714 -2.6499 Vertex 594 -0.430503 -0.640093 1.54614 Vertex 595 -1.24087 -1.39947 -2.54433 Vertex 596 -0.54681 -2.22247 2.02009 Vertex 597 0.307041 -3.26272 1.45349 Vertex 598 -0.513275 -1.04059 -0.472869 Vertex 599 0.739912 0.325851 0.599982 Vertex 600 -0.881419 0.328994 -0.80705 Vertex 601 -0.928153 -1.06935 0.978934 Vertex 602 0.211258 -2.96622 2.73082 Vertex 603 -0.870302 5.05633 -1.65653 Vertex 604 -0.341113 -2.50233 2.23106 Vertex 605 0.102074 -2.14465 0.465922 Vertex 606 -1.05724 0.403573 -0.0516663 Vertex 607 -0.604805 -0.0507803 -2.07532 Vertex 608 0.148881 -1.4044 1.09814 Vertex 609 0.540242 3.1111 -0.324824 Vertex 610 -0.103275 -2.58625 1.4887 Vertex 611 0.545927 -2.66789 2.22375 Vertex 612 -0.901934 4.65888 -1.27268 Vertex 613 1.42456 0.558087 -2.72557 Vertex 614 0.512299 -2.29772 2.52806 Vertex 615 0.587736 2.96699 -0.255835 Vertex 616 -0.735471 -1.18508 -2.7589 Vertex 617 0.521857 3.24369 -0.207625 Vertex 618 0.523137 3.17757 -0.329145 Vertex 619 0.301957 -1.77144 0.0470102 Vertex 620 0.22171 2.43629 0.481964 Vertex 621 -1.01423 -0.376466 -2.30728 Vertex 622 0.208901 -1.33416 -0.165894 Vertex 623 0.127614 -0.0848365 -0.724173 Vertex 624 0.49227 2.81212 -0.524974 Vertex 625 -0.128566 -2.30618 2.9461 Vertex 626 0.54769 1.01621 -0.681633 Vertex 627 1.00511 1.0748 -1.00207 Vertex 628 -0.43528 0.0850574 -1.37074 Vertex 629 -0.404566 0.0859495 1.36807 Vertex 630 -0.369858 3.96667 -0.804611 Vertex 631 1.00983 1.34564 -0.116771 Vertex 632 -0.821958 0.930005 0.241638 Vertex 633 0.318782 2.8482 0.483803 Vertex 634 0.756851 -2.18189 -0.407259 Vertex 635 0.294394 1.36721 1.0066 Vertex 636 -0.700447 1.07259 0.587397 Vertex 637 -1.23822 -0.97186 -2.60205 Vertex 638 -0.925907 0.611028 0.575936 Vertex 639 -0.861049 -1.38057 -0.106593 Vertex 640 -0.138308 2.19948 0.108912 Vertex 641 0.25776 1.61475 -1.00264 Vertex 642 -0.162033 -2.04448 1.08148 Vertex 643 -1.11396 -0.137986 -0.43133 Vertex 644 -0.987916 -0.291522 -0.273543 Vertex 645 0.380778 -3.49205 1.77068 Vertex 646 -0.179592 -2.4873 2.6536 Vertex 647 -0.236932 4.44938 -0.849317 Vertex 648 0.284119 -2.03549 2.86468 Vertex 649 0.194434 -0.497025 1.37952 Vertex 650 -0.790763 4.59677 -1.03751 Vertex 651 0.451461 -3.47763 1.7367 Vertex 652 -1.07093 -1.73241 0.0270533 Vertex 653 0.664295 2.26485 0.362989 Vertex 654 0.270506 -3.30829 1.91264 Vertex 655 -0.523868 4.19059 -0.955499 Vertex 656 0.0787831 -0.000985476 -0.854497 Vertex 657 -0.227446 -2.12805 1.08401 Vertex 658 -0.583455 1.10562 -0.205072 Vertex 659 -0.390674 -0.594287 -0.552985 Vertex 660 -0.572585 -0.630579 -2.60567 Vertex 661 1.65215 0.50093 -2.66037 Vertex 662 1.25829 1.31719 -2.05353 Vertex 663 -0.862157 -0.518877 1.20368 Vertex 664 0.50526 -0.814363 0.498131 Vertex 665 0.417331 -2.54598 1.7755 Vertex 666 0.258356 -3.26109 2.29772 Vertex 667 0.557403 -2.2986 -0.391098 Vertex 668 0.734999 -3.32457 2.19553 Vertex 669 -0.681856 -0.562526 -2.66273 Vertex 670 0.567279 -2.47945 2.22411 Vertex 671 0.022073 0.0246779 -0.897577 Vertex 672 -0.807634 -1.69128 1.58643 Vertex 673 -0.0117453 2.67713 -0.491151 Vertex 674 -0.205879 -1.36978 2.20198 Vertex 675 -0.0683302 1.94543 0.51254 Vertex 676 1.28064 1.32882 -1.76491 Vertex 677 -0.887114 -0.391611 -1.89735 Vertex 678 -0.442693 -1.34138 -2.48876 Vertex 679 -1.09494 0.00810733 -0.373678 Vertex 680 0.130228 1.50894 -0.814049 Vertex 681 0.238549 -2.96559 2.35039 Vertex 682 -0.263589 -0.382088 -0.633362 Vertex 683 -0.772121 -0.387267 -0.480558 Vertex 684 -1.15742 -2.76364 -0.276702 Vertex 685 0.116365 -2.69488 2.98755 Vertex 686 0.19109 0.706877 -0.955286 Vertex 687 0.0557472 -1.51475 -0.156212 Vertex 688 0.750903 -3.08469 2.37841 Vertex 689 -0.941537 -0.227412 -1.75147 Vertex 690 0.683831 -2.63122 -0.495227 Vertex 691 0.713099 -3.42373 2.32576 Vertex 692 0.340265 -1.26445 0.187356 Vertex 693 1.86699 0.286465 -2.64508 Vertex 694 0.30725 0.0331774 -0.39826 Vertex 695 -0.464639 -2.16349 2.29184 Vertex 696 0.379773 0.0950998 -0.393308 Vertex 697 -0.760239 -2.11906 0.429634 Vertex 698 0.388037 3.41319 -0.470492 Vertex 699 0.454972 -3.60015 1.51686 Vertex 700 0.859123 -3.66521 2.70761 Vertex 701 0.0286241 1.69861 0.779478 Vertex 702 -0.395914 -1.2391 1.71605 Vertex 703 -1.39992 -1.24932 -2.48257 Vertex 704 -1.1328 -2.0191 -0.106588 Vertex 705 0.582083 -3.22879 2.91718 Vertex 706 0.683706 2.57843 0.0832799 Vertex 707 0.561457 -0.461404 0.47988 Vertex 708 -0.14488 -1.57822 2.88357 Vertex 709 0.564168 -2.95943 2.19349 Vertex 710 -0.0976826 -2.16637 1.54613 Vertex 711 -0.298492 -2.18702 0.421637 Vertex 712 -0.779719 0.372569 1.02205 Vertex 713 0.753924 -3.1502 2.74226 Vertex 714 -1.15608 5.12953 -2.06873 Vertex 715 -0.572072 1.23349 0.169828 Vertex 716 0.363866 -0.980811 -0.221012 Vertex 717 0.549384 3.18184 -0.135484 Vertex 718 -0.786255 -1.76789 1.73601 Vertex 719 0.731891 -2.53016 -0.442846 Vertex 720 -1.08122 -1.86214 -0.121038 Vertex 721 -0.213753 0.760816 1.23656 Vertex 722 -0.134294 -2.06297 -0.0225446 Vertex 723 -1.00363 5.19748 -1.75664 Vertex 724 -0.159479 2.41325 -0.101194 Vertex 725 -0.632594 0.638477 -0.789268 Vertex 726 -0.0778689 -3.09421 1.73258 Vertex 727 0.369262 1.90399 -0.760672 Vertex 728 0.753862 -2.32962 -0.558577 Vertex 729 0.648678 -2.86318 2.29204 Vertex 730 0.105631 -1.8529 2.17428 Vertex 731 -0.355486 4.35907 -1.19063 Vertex 732 -0.662961 0.369992 -1.04735 Vertex 733 0.019458 0.485376 1.24046 Vertex 734 0.621686 2.43099 0.342316 Vertex 735 1.61386 1.12094 -2.12494 Vertex 736 -0.0571632 -1.81461 1.59664 Vertex 737 0.727615 1.41744 -0.488073 Vertex 738 -0.444947 -0.325404 -0.505443 Vertex 739 -0.024852 -0.372081 -0.691501 Vertex 740 -0.00904844 0.133526 -0.982302 Vertex 741 1.78388 0.241972 -2.55591 Vertex 742 -0.997685 -2.17694 -0.0656166 Vertex 743 -0.780622 -1.47469 1.58752 Vertex 744 0.41289 -2.51927 2.13457 Vertex 745 -1.03619 -1.16833 0.0827 Vertex 746 -1.06741 -0.00609297 -0.637369 Vertex 747 0.465501 -2.69889 2.05132 Vertex 748 -0.550911 0.459066 1.15272 Vertex 749 -0.874302 -0.0297087 0.687876 Vertex 750 0.567618 2.97584 0.0823621 Vertex 751 -0.792119 0.343098 -0.934326 Vertex 752 -1.34484 -1.33242 -2.69631 Vertex 753 -0.274332 -1.64116 2.94952 Vertex 754 -0.809778 -1.64336 1.02924 Vertex 755 0.339196 -2.32695 2.09358 Vertex 756 1.33233 0.923775 -2.70745 Vertex 757 0.704269 0.967773 -0.757838 Vertex 758 0.544815 -3.31262 2.81675 Vertex 759 1.81623 0.345224 -2.43213 Vertex 760 0.839622 -3.34316 2.33984 Vertex 761 -0.564125 4.73705 -1.36584 Vertex 762 0.32116 -2.93928 1.49461 Vertex 763 0.276487 -1.91972 2.5982 Vertex 764 -0.218453 0.775965 -0.716713 Vertex 765 0.351777 1.46487 -0.887402 Vertex 766 0.496649 -0.290497 -0.283403 Vertex 767 -0.999931 -0.833058 0.853328 Vertex 768 -0.878729 0.405011 0.835869 Vertex 769 1.46136 0.937815 -1.10891 Vertex 770 -0.725213 -1.33405 1.99496 Vertex 771 1.7236 0.55969 -2.55791 Vertex 772 -1.05821 -1.42085 0.275633 Vertex 773 -0.779556 4.80891 -1.62403 Vertex 774 -0.307371 1.52548 0.694592 Vertex 775 -0.241303 1.53352 0.734532 Vertex 776 0.77295 2.06927 0.0150401 Vertex 777 0.516417 -0.42793 0.719728 Vertex 778 0.00565302 -2.00331 1.90377 Vertex 779 -0.020922 0.124018 1.33192 Vertex 780 1.5135 1.22004 -2.64224 Vertex 781 -0.979943 -0.36069 0.6179 Vertex 782 -0.425127 0.746068 -0.743406 Vertex 783 -0.12292 2.65897 -0.234211 Vertex 784 -0.635502 -2.15353 0.351284 Vertex 785 0.284515 -2.78365 3.12454 Vertex 786 -0.0761323 3.10002 -0.116409 Vertex 787 1.27996 1.21813 -1.31511 Vertex 788 0.169874 3.25694 -0.803522 Vertex 789 0.769872 1.83918 -0.204552 Vertex 790 0.042537 -1.76006 2.07417 Vertex 791 -0.0761838 0.762925 -0.796104 Vertex 792 0.558893 -0.585399 0.352168 Vertex 793 0.862322 0.129979 -0.836787 Vertex 794 -0.317699 -1.40384 2.72553 Vertex 795 -1.59447 5.65618 -2.50546 Vertex 796 2.18111 0.561873 -2.71352 Vertex 797 0.255961 -1.20157 1.07903 Vertex 798 -0.632849 0.270443 1.16667 Vertex 799 0.294431 1.35938 -0.956752 Vertex 800 -0.150216 -1.97615 1.16634 Vertex 801 -0.316081 -2.43771 1.46642 Vertex 802 -0.182907 -1.86454 -0.114818 Vertex 803 0.496669 -2.30646 2.40243 Vertex 804 0.611026 -2.46267 -0.359075 Vertex 805 -1.049 -2.92128 -0.399644 Vertex 806 0.33 -1.35745 0.640222 Vertex 807 0.842272 0.505316 -1.31094 Vertex 808 -0.948014 0.159063 -0.971507 Vertex 809 0.281116 2.32759 0.615046 Vertex 810 2.21569 0.519723 -2.64785 Vertex 811 -0.446495 -0.951552 1.49665 Vertex 812 0.193434 -1.07772 -0.353238 Vertex 813 0.584289 3.03863 -0.154309 Vertex 814 1.31838 0.742369 -2.87135 Vertex 815 -0.0195834 -2.87613 2.5988 Vertex 816 1.11881 0.598147 -0.110323 Vertex 817 -0.334832 -1.28139 2.49753 Vertex 818 0.46622 1.30983 -0.785864 Vertex 819 -1.08649 -1.04327 0.536761 Vertex 820 0.501936 -2.33132 -0.36083 Vertex 821 0.263224 -1.36423 0.959915 Vertex 822 -0.994701 -1.13716 0.0154314 Vertex 823 0.201887 -0.246494 -0.522442 Vertex 824 0.391315 -3.29836 2.32807 Vertex 825 0.0930242 1.69374 0.818725 Vertex 826 0.509766 -2.47076 2.11019 Vertex 827 -1.00555 0.0313427 -1.70617 Vertex 828 0.423797 0.687344 1.14899 Vertex 829 0.392693 2.95859 0.282099 Vertex 830 0.955816 0.145525 -0.228774 Vertex 831 -1.31167 5.21415 -1.80974 Vertex 832 0.183757 2.7179 -0.731191 Vertex 833 -1.0873 -2.73367 -0.167557 Vertex 834 -0.390674 1.48389 0.649861 Vertex 835 0.799193 1.43819 0.610514 Vertex 836 0.117481 1.7699 -0.674615 Vertex 837 1.89192 0.790028 -2.80863 Vertex 838 -0.106879 -1.42236 -0.295952 Vertex 839 -0.398409 4.20503 -1.18041 Vertex 840 0.812199 1.63719 0.00238034 Vertex 841 -1.43825 5.49553 -2.13189 Vertex 842 0.663158 0.419518 0.819659 Vertex 843 -0.701754 -1.98446 1.9954 Vertex 844 -0.885775 -0.38045 -0.4157 Vertex 845 -0.518111 -0.882524 -0.482945 Vertex 846 -0.386752 -2.33689 1.33744 Vertex 847 0.838707 -3.38258 2.75091 Vertex 848 -0.938805 0.321005 0.691942 Vertex 849 -0.903189 0.279454 -1.62023 Vertex 850 0.50897 2.30136 -0.540532 Vertex 851 0.146093 1.89845 0.722632 Vertex 852 -0.51988 1.36853 0.628056 Vertex 853 0.366675 -2.95679 2.85414 Vertex 854 -0.481408 0.118239 -1.69314 Vertex 855 0.526221 -2.24298 2.67196 Vertex 856 0.223293 -1.56015 0.809818 Vertex 857 0.277185 -2.92412 2.25467 Vertex 858 0.803118 -3.50317 2.27243 Vertex 859 -1.06205 0.347286 0.00197193 Vertex 860 0.184925 -2.09186 0.0886116 Vertex 861 -0.0185509 3.59633 -0.0485788 Vertex 862 1.41167 0.755456 -1.66058 Vertex 863 -0.222162 1.50442 -0.315807 Vertex 864 0.317006 -2.03966 0.0625614 Vertex 865 -0.586075 0.40676 1.15815 Vertex 866 1.41294 0.6392 -2.63438 Vertex 867 -1.0204 0.542682 0.168925 Vertex 868 -0.708869 -0.353477 -1.42267 Vertex 869 -0.422174 -0.119655 -0.55688 Vertex 870 0.0644901 -2.13822 0.575145 Vertex 871 -1.02746 -1.59072 0.672753 Vertex 872 0.693129 0.109693 -0.369162 Vertex 873 -0.518482 -0.054328 -1.06203 Vertex 874 -0.273086 4.1519 -1.18445 Vertex 875 -0.929259 -1.78919 -0.0592633 Vertex 876 1.82517 0.53426 -2.54545 Vertex 877 0.553078 0.250792 0.868733 Vertex 878 0.270877 -2.13497 -0.174441 Vertex 879 -0.565486 4.80843 -1.18111 Vertex 880 0.128551 4.02221 -0.44706 Vertex 881 1.14343 0.165244 -0.957791 Vertex 882 -0.107894 2.24447 -0.319827 Vertex 883 1.03473 0.24573 -0.296466 Vertex 884 -0.55615 1.21019 0.768271 Vertex 885 -0.807781 0.651727 0.901313 Vertex 886 -0.428913 -1.43181 -2.56308 Vertex 887 -0.237244 4.1499 -0.263575 Vertex 888 0.0782399 3.3954 -0.844419 Vertex 889 -0.951572 4.99155 -1.82117 Vertex 890 0.310524 -1.30596 -0.0512 Vertex 891 -1.04079 -0.0833885 -1.13569 Vertex 892 -0.516093 -0.149308 -1.86334 Vertex 893 0.309709 -1.32787 0.142389 Vertex 894 0.302465 0.0337871 1.12774 Vertex 895 -0.728174 -1.9503 1.50856 Vertex 896 1.69512 0.401267 -2.64192 Vertex 897 -0.279896 -2.09458 2.92166 Vertex 898 -0.910825 -0.202064 0.244693 Vertex 899 -0.532684 -1.07418 1.49978 Vertex 900 -0.412688 -2.00035 2.80602 Vertex 901 0.71887 1.99494 -0.30959 Vertex 902 0.0274066 0.541973 -1.02555 Vertex 903 0.111791 2.23221 -0.572589 Vertex 904 0.317508 1.87103 0.825178 Vertex 905 0.305313 3.33771 -0.650715 Vertex 906 0.266536 3.59598 -0.601845 Vertex 907 0.639386 2.21333 -0.406283 Vertex 908 -0.621563 -0.0351606 -2.23968 Vertex 909 0.260686 -3.32703 1.46753 Vertex 910 0.0726636 -1.69192 2.40367 Vertex 911 -0.688489 4.39786 -1.10773 Vertex 912 -1.33865 5.43471 -2.38197 Vertex 913 0.43352 -2.91992 1.54175 Vertex 914 0.700456 -3.26329 2.18161 Vertex 915 0.75712 -3.28566 2.95858 Vertex 916 -1.38182 5.57575 -2.5548 Vertex 917 -0.680731 4.86416 -1.09755 Vertex 918 0.155005 3.60845 -0.775691 Vertex 919 -0.835139 -0.998491 -0.253244 Vertex 920 -0.92454 -0.315934 0.0318916 Vertex 921 -0.504784 -2.15911 1.03164 Vertex 922 -0.704057 1.12071 0.32159 Vertex 923 -0.287284 4.41168 -0.576564 Vertex 924 0.745889 1.08183 -0.686758 Vertex 925 0.572683 -3.20286 2.31699 Vertex 926 1.45797 0.86198 -1.58241 Vertex 927 -1.0999 5.28234 -1.87086 Vertex 928 0.824188 1.58881 0.427056 Vertex 929 -0.398135 -1.33089 -2.50041 Vertex 930 1.14704 0.445145 -0.396002 Vertex 931 -0.528406 -0.0753088 -1.88517 Vertex 932 0.619097 -2.78264 2.38492 Vertex 933 -1.02561 -0.548417 0.712782 Vertex 934 -0.123412 1.98022 0.341512 Vertex 935 1.33903 1.09066 -2.46643 Vertex 936 -0.807119 -1.49816 -2.47658 Vertex 937 -0.432616 4.33313 -1.31204 Vertex 938 0.395247 0.255126 -0.479718 Vertex 939 1.17427 0.437033 -2.70075 Vertex 940 -0.488551 4.5513 -0.641994 Vertex 941 -1.02209 -1.39941 0.72576 Vertex 942 0.0746586 3.101 0.102817 Vertex 943 0.3785 3.53642 -0.393354 Vertex 944 0.27095 -1.43293 0.0949712 Vertex 945 0.460317 -2.49224 2.1358 Vertex 946 0.197753 1.97931 -0.783041 Vertex 947 -1.11014 -0.0828007 -0.221316 Vertex 948 0.319888 0.29386 -0.789289 Vertex 949 -1.02726 0.0169224 -0.908948 Vertex 950 0.636721 1.2256 0.92471 Vertex 951 1.34167 1.09088 -2.66348 Vertex 952 0.300227 1.52099 -0.943334 Vertex 953 0.667487 0.218228 0.620306 Vertex 954 -0.483097 -2.2365 1.20849 Vertex 955 0.697136 0.0832142 -0.453952 Vertex 956 -0.306413 1.22226 -0.300067 Vertex 957 -0.952741 -0.863591 -2.7915 Vertex 958 0.419742 1.85677 0.767972 Vertex 959 0.244573 -2.06123 -0.232117 Vertex 960 0.530175 0.0377123 0.543315 Vertex 961 1.71995 1.06171 -2.79358 Vertex 962 -0.665369 -0.315866 -1.3233 Vertex 963 -0.327854 0.835781 1.08403 Vertex 964 -1.23111 5.24016 -2.18303 Vertex 965 0.859052 1.20719 -0.442437 Vertex 966 -0.248791 -2.34471 2.67165 Vertex 967 -0.129737 2.68758 -0.146218 Vertex 968 -0.467493 -1.83733 2.77141 Vertex 969 0.205256 -1.7464 0.675108 Vertex 970 -0.429789 0.671308 -0.790551 Vertex 971 -0.881443 -0.307289 -1.71754 Vertex 972 -0.522323 -0.100361 1.34644 Vertex 973 -0.194554 -1.40023 2.09979 Vertex 974 1.1789 0.480784 -2.84616 Vertex 975 -0.0166653 -2.04874 0.756102 Vertex 976 -0.290503 -2.39404 2.44324 Vertex 977 -1.08369 -1.12896 0.457981 Vertex 978 0.591919 -2.64107 2.26469 Vertex 979 -0.489586 1.34369 0.173366 Vertex 980 1.33932 0.827329 -2.59961 Vertex 981 -0.513132 4.29977 -1.18066 Vertex 982 -0.243397 -1.53827 -0.222724 Vertex 983 0.613732 2.81496 0.0820882 Vertex 984 -0.0897368 2.53401 0.0630133 Vertex 985 -0.0501989 -2.97486 2.35094 Vertex 986 -1.4697 5.56693 -2.24293 Vertex 987 1.28941 1.31262 -2.45687 Vertex 988 -0.179592 -0.0442235 1.47553 Vertex 989 -0.652524 -2.10868 1.36792 Vertex 990 -0.331932 1.28395 -0.124795 Vertex 991 -0.698081 0.370312 -1.26311 Vertex 992 -0.208464 -2.29777 1.27292 Vertex 993 -0.455518 -2.28509 1.31294 Vertex 994 -0.52526 0.566487 -0.884962 Vertex 995 0.413515 2.70672 0.422607 Vertex 996 1.29611 0.468044 -1.33249 Vertex 997 0.312635 -1.99451 -0.292176 Vertex 998 0.322633 -2.03202 -0.304784 Vertex 999 -0.957995 0.288778 -1.39266 Vertex 1000 -0.665249 4.89842 -1.22308 Vertex 1001 -0.633779 -0.301103 -2.37638 Vertex 1002 0.0620014 -1.29643 1.21504 Vertex 1003 -0.646174 1.17059 0.593771 Vertex 1004 -0.114594 4.26409 -0.478421 Vertex 1005 -0.884311 0.750634 -0.225455 Vertex 1006 0.478893 -0.795514 0.640179 Vertex 1007 -0.131226 4.0529 -0.148384 Vertex 1008 -0.0616628 2.79248 0.0431981 Vertex 1009 -0.556781 -0.194149 -0.603614 Vertex 1010 -1.05599 -0.989266 0.679468 Vertex 1011 0.531301 1.97633 -0.546393 Vertex 1012 -0.669637 -1.4255 2.26573 Vertex 1013 -0.559857 4.67225 -0.826714 Vertex 1014 -0.76503 0.394093 -0.897943 Vertex 1015 -0.764959 -1.94114 0.761242 Vertex 1016 0.460096 -3.37056 2.71179 Vertex 1017 -0.566645 -1.22419 1.80634 Vertex 1018 -0.822587 0.958698 0.10247 Vertex 1019 -1.34493 5.19706 -2.25844 Vertex 1020 -0.785937 -1.80732 1.37707 Vertex 1021 0.671918 2.63036 0.0930768 Vertex 1022 -0.094207 2.63913 0.0235225 Vertex 1023 -0.501819 1.11105 -0.282077 Vertex 1024 0.316027 0.148217 -0.59687 Vertex 1025 -0.0309799 2.11166 0.437395 Vertex 1026 2.00125 0.574529 -2.80516 Vertex 1027 1.44261 1.30824 -2.49867 Vertex 1028 -0.826059 -0.610526 -2.14389 Vertex 1029 -1.04558 -0.268008 -0.939749 Vertex 1030 0.104578 1.49351 0.939363 Vertex 1031 1.10726 1.08886 -0.980185 Vertex 1032 1.23366 1.14442 -1.05941 Vertex 1033 0.779599 1.94762 -0.0511566 Vertex 1034 1.27668 1.40113 -1.91722 Vertex 1035 -0.955207 0.563353 0.541613 Vertex 1036 -1.52468 5.3694 -2.21855 Vertex 1037 1.07578 1.15794 -1.19139 Vertex 1038 0.33708 1.19279 -0.869806 Vertex 1039 0.243601 -1.6066 0.567236 Vertex 1040 -0.0727097 2.41523 -0.411655 Vertex 1041 -0.875315 -0.358782 -1.80203 Vertex 1042 0.167985 3.37448 0.197618 Vertex 1043 0.913632 1.52909 0.204769 Vertex 1044 -0.0241874 0.645808 -0.888812 Vertex 1045 -0.0369431 -1.35705 -0.329612 Vertex 1046 -1.11409 -1.87766 0.077848 Vertex 1047 0.775656 1.29884 -0.471864 Vertex 1048 -0.118785 -2.0086 0.854775 Vertex 1049 0.559445 -2.495 2.67692 Vertex 1050 0.498613 -3.54922 2.44808 Vertex 1051 1.04159 0.661063 0.162723 Vertex 1052 1.4492 1.1174 -2.78234 Vertex 1053 0.762052 2.05417 0.0795193 Vertex 1054 -0.325884 -1.11365 1.48498 Vertex 1055 -0.974876 -2.11855 -0.0103582 Vertex 1056 0.740541 1.63444 -0.389508 Vertex 1057 0.253739 -2.84695 2.98097 Vertex 1058 0.313072 3.03432 0.387853 Vertex 1059 0.51484 -0.0419044 0.182532 Vertex 1060 0.671668 2.67805 0.00897597 Vertex 1061 -0.887104 -0.123582 0.296465 Vertex 1062 -0.541536 -1.13258 -2.45399 Vertex 1063 0.214869 -3.15473 1.99707 Vertex 1064 0.242549 2.38303 -0.77548 Vertex 1065 0.0942296 -1.89191 2.10812 Vertex 1066 0.488241 -3.17082 1.82551 Vertex 1067 0.451587 2.45474 -0.594273 Vertex 1068 -1.03453 4.75683 -1.51643 Vertex 1069 -1.05395 -1.14636 -2.70976 Vertex 1070 0.523226 -3.5404 2.3178 Vertex 1071 1.05264 0.372768 -0.216061 Vertex 1072 0.421889 1.59748 0.872672 Vertex 1073 -0.189552 1.97193 -0.163615 Vertex 1074 -1.10171 -0.73463 -2.56695 Vertex 1075 -0.257602 1.70095 0.0493995 Vertex 1076 -1.18996 -1.31143 -2.52718 Vertex 1077 0.581045 0.0275567 -0.369907 Vertex 1078 -0.890459 -1.03428 -2.39541 Vertex 1079 -1.09664 5.28098 -1.81065 Vertex 1080 -0.230245 -2.64253 2.27729 Vertex 1081 0.50249 1.24911 1.02064 Vertex 1082 -0.274177 4.45308 -0.679567 Vertex 1083 -0.0967519 0.46481 -0.930495 Vertex 1084 0.502356 -2.71538 2.16912 Vertex 1085 -0.115243 2.39496 0.0343721 Vertex 1086 -0.0323391 -3.00323 2.42421 Vertex 1087 0.925575 1.16191 -0.537741 Vertex 1088 -0.17726 2.25708 -0.0764375 Vertex 1089 -0.240426 -1.1822 -0.461469 Vertex 1090 -0.119205 -1.03878 -0.512134 Vertex 1091 1.72742 0.310555 -2.54936 Vertex 1092 0.782559 -3.50318 2.84938 Vertex 1093 0.0067354 1.05741 -0.717165 Vertex 1094 0.289513 -3.02307 2.12025 Vertex 1095 1.93358 0.853869 -2.57319 Vertex 1096 0.16659 -3.04573 2.08976 Vertex 1097 0.128325 -2.36864 1.57688 Vertex 1098 1.28927 1.21264 -1.38228 Vertex 1099 0.00353308 -0.885508 -0.538293 Vertex 1100 1.99712 0.598481 -2.63187 Vertex 1101 0.582467 1.49014 0.882124 Vertex 1102 0.419269 -2.71868 2.20105 Vertex 1103 0.431042 -2.71152 2.22046 Vertex 1104 -1.02623 0.0365814 -1.0444 Vertex 1105 -0.80556 -0.263103 1.24878 Vertex 1106 0.318725 1.23896 1.05899 Vertex 1107 -0.966363 -0.209811 -0.071289 Vertex 1108 0.189511 1.89934 0.756339 Vertex 1109 -0.586546 -2.19026 1.95043 Vertex 1110 -0.826058 -0.379667 -2.5421 Vertex 1111 -0.148574 -1.99062 1.07417 Vertex 1112 -0.433128 -1.54563 2.8118 Vertex 1113 -0.13694 1.69913 0.654031 Vertex 1114 -0.881465 -0.830881 1.13834 Vertex 1115 -0.890512 0.275337 -0.853644 Vertex 1116 -0.953425 0.190437 -0.846392 Vertex 1117 -0.135445 4.02381 -1.05705 Vertex 1118 -0.730876 4.88667 -1.12241 Vertex 1119 1.07802 1.11907 -1.03353 Vertex 1120 -0.848921 4.60557 -1.2224 Vertex 1121 0.253998 -2.67152 1.52943 Vertex 1122 -0.342029 0.778448 -0.665679 Vertex 1123 0.405172 2.45825 0.554419 Vertex 1124 0.341599 3.07849 0.282238 Vertex 1125 0.481339 -0.922082 0.277004 Vertex 1126 -0.565533 -2.22721 1.44319 Vertex 1127 0.528543 -3.28248 1.48084 Vertex 1128 -0.598168 4.29836 -0.783952 Vertex 1129 1.44828 0.743746 -1.28088 Vertex 1130 0.462134 0.569059 1.11767 Vertex 1131 1.27028 1.3595 -1.82892 Vertex 1132 0.194352 -2.86967 2.85452 Vertex 1133 0.4474 2.79555 -0.57007 Vertex 1134 -0.319593 -2.70718 1.75343 Vertex 1135 1.43376 1.02066 -1.11154 Vertex 1136 -0.534115 0.297805 -1.50472 Vertex 1137 -0.607116 -1.97137 2.3343 Vertex 1138 0.210888 -1.82996 2.60301 Vertex 1139 -0.462079 -1.25361 -0.404309 Vertex 1140 -1.02439 -1.73785 0.628844 Vertex 1141 0.56299 2.1429 0.531391 Vertex 1142 1.20966 1.04762 -2.08577 Vertex 1143 0.640618 1.13362 -0.627789 Vertex 1144 -0.136539 2.53304 -0.256835 Vertex 1145 0.799479 0.0829508 -0.0401268 Vertex 1146 -0.895277 -0.0853224 0.825967 Vertex 1147 -0.707675 -1.84741 2.0997 Vertex 1148 -0.996564 -1.63554 -2.55771 Vertex 1149 0.205096 2.3063 0.52033 Vertex 1150 -0.899741 -0.178891 0.162262 Vertex 1151 0.60171 2.27049 -0.45266 Vertex 1152 0.622311 2.69007 0.162094 Vertex 1153 0.427057 -0.743813 0.902984 Vertex 1154 -0.0736229 4.00979 -0.94299 Vertex 1155 -0.162726 0.0673284 1.44562 Vertex 1156 0.589941 -0.39606 0.182448 Vertex 1157 0.32816 -1.01327 1.02371 Vertex 1158 0.506913 -2.97628 2.25927 Vertex 1159 0.115173 0.349464 1.24261 Vertex 1160 1.03225 1.06261 -1.41823 Vertex 1161 0.472534 -2.25823 -0.22303 Vertex 1162 0.422691 2.60246 0.461695 Vertex 1163 1.10713 1.00568 -0.0172757 Vertex 1164 0.317016 -1.83473 0.328008 Vertex 1165 -0.0382326 2.31316 0.299982 Vertex 1166 0.405787 -2.1239 2.8431 Vertex 1167 -0.33789 1.31746 -0.0567324 Vertex 1168 0.606822 -2.76818 2.66263 Vertex 1169 -0.30152 -2.44797 2.35996 Vertex 1170 -0.366064 4.18001 -0.420969 Vertex 1171 -0.812276 -0.0392672 1.09862 Vertex 1172 0.235458 1.71439 0.875518 Vertex 1173 0.606186 -3.46537 1.62789 Vertex 1174 -0.981168 -1.46176 -2.64955 Vertex 1175 -0.185317 -2.55844 1.47166 Vertex 1176 0.76148 2.01543 0.171525 Vertex 1177 -0.586051 -0.997765 -2.51758 Vertex 1178 0.826195 1.52751 0.436993 Vertex 1179 0.33636 3.38366 -0.594846 Vertex 1180 -0.552489 -1.07279 -2.47715 Vertex 1181 0.562652 0.311246 0.929474 Vertex 1182 0.233809 -3.1033 2.0198 Vertex 1183 -0.557602 -1.64826 2.63245 Vertex 1184 -1.42065 5.50739 -2.65707 Vertex 1185 1.05873 1.05579 0.0829437 Vertex 1186 -0.677613 -2.16674 0.301832 Vertex 1187 0.196613 -1.89991 2.35934 Vertex 1188 0.582752 -3.01378 2.1805 Vertex 1189 -0.870797 -1.65735 0.946375 Vertex 1190 -0.617648 1.21318 0.613413 Vertex 1191 -0.242726 1.74644 0.172198 Vertex 1192 -0.962415 -1.79609 -2.54397 Vertex 1193 0.619232 -3.056 2.17792 Vertex 1194 -0.665043 -1.78375 2.3635 Vertex 1195 0.435452 -2.04538 -0.110573 Vertex 1196 1.78255 0.824849 -2.58076 Vertex 1197 0.642217 -2.80482 2.96731 Vertex 1198 -0.551252 -2.01715 -0.013632 Vertex 1199 -0.320923 -1.79127 -0.121172 Vertex 1200 0.0897493 -2.07712 1.98204 Vertex 1201 -0.752275 -0.837291 -2.78781 Vertex 1202 1.30848 1.12225 -1.05658 Vertex 1203 0.281985 3.34727 0.167062 Vertex 1204 -0.0498047 1.76881 -0.469311 Vertex 1205 0.401786 0.656737 -0.799496 Vertex 1206 -0.310433 -0.0942706 1.57304 Vertex 1207 0.525727 -3.48575 1.43752 Vertex 1208 -0.129069 -0.46215 1.46005 Vertex 1209 0.038499 -2.83644 1.63837 Vertex 1210 1.09356 1.1596 -0.333455 Vertex 1211 -0.539696 1.3536 0.571283 Vertex 1212 0.316064 -0.267434 -0.376026 Vertex 1213 -0.441384 1.36929 0.73576 Vertex 1214 -0.541176 -1.87372 2.63436 Vertex 1215 -0.522286 -1.22156 2.02842 Vertex 1216 0.331779 -2.41049 2.97062 Vertex 1217 -1.27744 5.38373 -1.89714 Vertex 1218 0.746961 -2.34168 -0.436902 Vertex 1219 -0.625767 -1.14736 -0.394102 Vertex 1220 0.619249 -2.85363 2.65696 Vertex 1221 0.422501 -2.40574 1.95411 Vertex 1222 -0.591171 -2.08116 2.15984 Vertex 1223 -1.03276 -1.12887 0.765684 Vertex 1224 -0.625215 -1.56234 -0.169981 Vertex 1225 0.75439 1.92206 0.249485 Vertex 1226 -0.277689 1.1669 -0.413693 Vertex 1227 -0.0871793 -3.06165 1.67954 Vertex 1228 -1.20541 5.10524 -2.08974 Vertex 1229 0.00775245 4.07208 -0.762875 Vertex 1230 0.0282744 3.99538 -0.793886 Vertex 1231 0.705915 1.92558 0.381949 Vertex 1232 0.839751 1.46847 -0.17407 Vertex 1233 -0.92995 -0.324889 -1.21261 Vertex 1234 -1.44002 5.60217 -2.28759 Vertex 1235 -1.21732 5.35496 -2.09218 Vertex 1236 -0.0780684 -2.01628 1.6312 Vertex 1237 0.0425985 -1.64684 2.42111 Vertex 1238 -0.700487 4.47551 -1.31745 Vertex 1239 0.276443 -2.89125 1.51415 Vertex 1240 -1.10495 -1.74746 0.20262 Vertex 1241 0.315949 2.06472 -0.75878 Vertex 1242 -0.25891 -1.32303 2.19448 Vertex 1243 -0.788476 -1.48571 1.51664 Vertex 1244 -0.438481 -0.361049 1.49896 Vertex 1245 0.830969 1.27442 -0.38213 Vertex 1246 -0.962837 -1.52593 -2.69178 Vertex 1247 -0.990506 -0.245854 -0.164329 Vertex 1248 0.340293 3.21949 -0.641023 Vertex 1249 0.286865 0.228302 -0.795251 Vertex 1250 0.454534 -0.8676 0.660074 Vertex 1251 0.378302 -3.42024 2.2627 Vertex 1252 -0.0141032 -1.54384 2.75777 Vertex 1253 0.96788 1.10484 -0.631353 Vertex 1254 -0.970061 -0.125993 0.0687625 Vertex 1255 -0.40396 -2.42725 1.73617 Vertex 1256 1.26761 0.439362 -2.83535 Vertex 1257 -0.0289092 2.3927 -0.468711 Vertex 1258 0.0931901 -1.94536 -0.0340168 Vertex 1259 -1.10599 -1.66335 0.351764 Vertex 1260 -0.916942 -1.05444 -0.154568 Vertex 1261 -0.20419 3.73447 -0.724783 Vertex 1262 0.649462 -2.87012 2.49731 Vertex 1263 1.35871 0.563184 -1.09112 Vertex 1264 1.73162 1.07615 -2.41458 Vertex 1265 0.187447 -3.12138 2.45448 Vertex 1266 -0.246219 -2.8021 2.134 Vertex 1267 0.175782 -2.81714 1.61077 Vertex 1268 -0.722166 1.06419 0.481081 Vertex 1269 -0.0971973 3.15383 -0.186055 Vertex 1270 0.673236 0.190895 -0.706901 Vertex 1271 0.0959544 -1.16678 -0.391273 Vertex 1272 -0.438691 0.130038 -1.48204 Vertex 1273 0.31209 3.26224 0.196777 Vertex 1274 -0.538649 -1.22035 1.89436 Vertex 1275 -0.708853 0.433195 -0.927225 Vertex 1276 -1.3258 5.16451 -2.20143 Vertex 1277 -0.148701 -1.52637 2.82736 Vertex 1278 0.778291 0.131106 0.261871 Vertex 1279 0.12566 -0.71217 1.40734 Vertex 1280 1.1753 0.395068 -2.77123 Vertex 1281 0.400544 3.55495 -0.258347 Vertex 1282 -0.466925 4.59873 -0.769422 Vertex 1283 1.27559 0.741953 -2.83578 Vertex 1284 0.126355 2.72727 0.291295 Vertex 1285 0.148459 3.44944 0.174748 Vertex 1286 -0.658105 4.6292 -0.80926 Vertex 1287 -0.909505 -1.37929 -0.0709718 Vertex 1288 1.47298 1.0739 -1.31408 Vertex 1289 0.186203 -3.04234 1.55091 Vertex 1290 -0.401125 -2.15615 0.411354 Vertex 1291 0.483676 2.16537 0.574008 Vertex 1292 -0.502825 -2.13649 0.301659 Vertex 1293 0.360449 0.817104 -0.830498 Vertex 1294 0.19906 2.47747 -0.736214 Vertex 1295 0.356677 -2.08626 2.46356 Vertex 1296 0.393234 -2.12647 2.4931 Vertex 1297 0.45036 -2.29811 2.24312 Vertex 1298 -0.449142 0.0508442 -1.25682 Vertex 1299 0.963011 0.305805 0.0228638 Vertex 1300 1.1525 0.311106 -0.684539 Vertex 1301 0.376108 -1.2434 0.495689 Vertex 1302 -0.821674 -1.46385 -2.62393 Vertex 1303 -1.00088 0.560901 0.0246328 Vertex 1304 -0.749355 0.704798 -0.594846 Vertex 1305 0.105915 -1.72325 2.86184 Vertex 1306 0.26581 0.786568 1.1827 Vertex 1307 -0.169114 -2.20248 2.98206 Vertex 1308 -1.02787 -0.00846055 0.169052 Vertex 1309 0.897874 0.571356 0.37181 Vertex 1310 0.29821 -1.09235 1.05865 Vertex 1311 0.35057 2.41766 -0.716214 Vertex 1312 0.409593 -3.26152 2.73088 Vertex 1313 -0.241852 -0.87907 -0.572429 Vertex 1314 1.05054 0.549715 0.042626 Vertex 1315 -0.0665614 -1.88872 -0.0681548 Vertex 1316 -0.827933 -0.918174 -2.37098 Vertex 1317 -0.753739 -1.17999 1.21775 Vertex 1318 -0.295011 0.538529 1.27024 Vertex 1319 -0.289829 4.48053 -0.734234 Vertex 1320 1.22682 0.361635 -1.27254 Vertex 1321 0.104564 -2.90864 1.60555 Vertex 1322 -0.0638258 -1.68837 1.50856 Vertex 1323 -0.231147 -1.381 1.97277 Vertex 1324 0.766834 -3.70437 2.34997 Vertex 1325 -0.159791 -0.42083 -0.677052 Vertex 1326 0.632173 -2.90244 2.7139 Vertex 1327 0.381367 -0.163998 1.03568 Vertex 1328 0.508264 -2.82685 1.85471 Vertex 1329 -0.972527 0.416141 0.600974 Vertex 1330 1.10337 0.319558 -2.7041 Vertex 1331 0.274038 -0.00619876 -0.452802 Vertex 1332 0.215047 -1.02018 1.19981 Vertex 1333 0.462269 -3.18915 2.36328 Vertex 1334 -0.376156 0.308026 -0.920838 Vertex 1335 0.616127 1.6864 -0.506595 Vertex 1336 -0.229274 4.33379 -1.02149 Vertex 1337 -0.664449 -0.621974 -0.379719 Vertex 1338 0.00784144 1.39999 -0.603248 Vertex 1339 0.60345 -3.63953 2.56229 Vertex 1340 -0.638089 -0.449534 -2.18996 Vertex 1341 0.142331 -1.57719 0.0345912 Vertex 1342 1.16622 0.881293 -1.85088 Vertex 1343 -1.04896 -0.0143253 -1.26775 Vertex 1344 0.47296 -2.60616 2.14426 Vertex 1345 -0.563599 -2.15308 0.271793 Vertex 1346 -0.586645 1.00352 0.901958 Vertex 1347 0.0142999 3.14939 -0.580319 Vertex 1348 0.405561 1.53949 0.903383 Vertex 1349 0.0988206 2.64693 -0.580762 Vertex 1350 0.117349 3.99983 -0.59168 Vertex 1351 -0.315595 -1.29889 1.98147 Vertex 1352 0.241868 -1.93321 0.535789 Vertex 1353 0.666895 0.0722827 0.0629436 Vertex 1354 0.512785 -2.95577 1.67073 Vertex 1355 -0.54932 -0.279949 -1.60639 Vertex 1356 0.589813 -2.51927 2.99634 Vertex 1357 -0.307994 4.19814 -0.357609 Vertex 1358 -1.36714 -1.33724 -2.4623 Vertex 1359 1.22547 1.29141 -1.76044 Vertex 1360 -1.30398 5.36502 -2.29599 Vertex 1361 -0.584114 -1.821 2.55384 Vertex 1362 0.710388 1.78549 0.453507 Vertex 1363 1.35603 1.21217 -1.51423 Vertex 1364 0.21696 3.8078 -0.13739 Vertex 1365 0.555685 -2.58022 2.21191 Vertex 1366 0.811433 0.689289 -1.17229 Vertex 1367 0.850492 -3.30434 2.45605 Vertex 1368 1.69632 0.694944 -2.55428 Vertex 1369 0.399067 -0.170999 -0.323178 Vertex 1370 1.38217 1.17013 -1.2441 Vertex 1371 0.0711829 -1.1329 1.27088 Vertex 1372 0.0369885 -0.673685 -0.586065 Vertex 1373 -0.915143 0.763131 0.205128 Vertex 1374 -0.198383 1.75667 -0.185767 Vertex 1375 -0.139933 -1.41793 2.62051 Vertex 1376 -0.0627491 2.08389 -0.397541 Vertex 1377 -1.41453 5.44412 -2.56998 Vertex 1378 1.4028 0.575909 -2.66651 Vertex 1379 -0.144312 -1.41434 2.40877 Vertex 1380 0.0460649 3.77627 0.0129093 Vertex 1381 -0.142262 -2.88796 2.18639 Vertex 1382 -1.47537 5.35875 -2.42143 Vertex 1383 -0.146283 3.43641 -0.507293 Vertex 1384 -0.0852065 -3.01157 1.67376 Vertex 1385 -0.470165 1.01388 0.997205 Vertex 1386 0.291951 -1.75926 0.0965479 Vertex 1387 0.230136 2.44743 -0.777981 Vertex 1388 0.602116 2.66108 -0.395272 Vertex 1389 -0.975925 -0.302397 -2.08935 Vertex 1390 1.8819 0.659876 -2.61692 Vertex 1391 -0.849485 0.0436679 0.814749 Vertex 1392 -0.875514 -0.958145 1.10799 Vertex 1393 1.53073 0.928189 -2.40709 Vertex 1394 -0.139702 4.09995 -0.175379 Vertex 1395 -0.345221 4.02782 -0.917781 Vertex 1396 0.0222702 -1.61906 2.74269 Vertex 1397 -0.272435 0.356182 1.4338 Vertex 1398 0.711628 2.08819 -0.278622 Vertex 1399 -0.655741 -1.89724 2.29407 Vertex 1400 -0.499239 0.165417 1.25572 Vertex 1401 0.417108 1.2091 -0.828251 Vertex 1402 -0.95552 -1.0263 -2.41425 Vertex 1403 -0.0899049 1.69231 -0.409999 Vertex 1404 1.05082 1.24467 -0.116928 Vertex 1405 -0.382174 -1.22796 2.13958 Vertex 1406 0.357632 1.42543 0.9715 Vertex 1407 -0.187562 3.84529 -0.873911 Vertex 1408 2.21295 0.596623 -2.5736 Vertex 1409 0.0980597 -1.68831 2.623 Vertex 1410 0.262009 2.89797 0.414077 Vertex 1411 -0.425353 0.0617743 -1.45681 Vertex 1412 0.149253 3.84633 -0.656469 Vertex 1413 -0.036454 2.1692 -0.43667 Vertex 1414 1.52913 1.26295 -1.96595 Vertex 1415 1.72562 0.373892 -2.71345 Vertex 1416 0.218492 2.10488 -0.779266 Vertex 1417 -0.966292 -0.479972 0.258282 Vertex 1418 0.262843 1.56046 -1.02453 Vertex 1419 -0.299083 -2.45847 1.71275 Vertex 1420 -0.457886 -1.3539 -2.72735 Vertex 1421 -0.170822 2.03443 0.172418 Vertex 1422 -0.956741 -2.09246 0.0577902 Vertex 1423 -0.189158 -2.27567 1.35475 Vertex 1424 -0.94205 -0.952877 -0.108167 Vertex 1425 -0.139248 -2.77623 2.2739 Vertex 1426 -0.747987 -0.35571 -1.00926 Vertex 1427 -0.514052 -1.46339 -2.56781 Vertex 1428 0.513905 -3.02994 2.98722 Vertex 1429 -0.582096 0.37194 -1.04001 Vertex 1430 1.4261 0.690406 -1.26528 Vertex 1431 -0.59718 -1.30774 -0.333904 Vertex 1432 -0.234542 1.2718 0.923326 Vertex 1433 0.626781 0.113675 -0.222621 Vertex 1434 -0.907772 -0.233939 0.479472 Vertex 1435 -0.0687233 -1.72871 1.20765 Vertex 1436 -0.142125 -3.00391 1.90601 Vertex 1437 0.205567 2.65319 0.391737 Vertex 1438 0.380408 1.09049 -0.814153 Vertex 1439 -0.995093 -0.21069 -1.2527 Vertex 1440 -0.812568 0.232013 -1.78205 Vertex 1441 0.555669 -3.54519 1.60832 Vertex 1442 -1.3159 -1.09683 -2.5452 Vertex 1443 0.214049 1.52155 0.952623 Vertex 1444 -0.671104 -0.336506 -1.49192 Vertex 1445 -0.180653 2.18385 -0.113806 Vertex 1446 0.631705 -3.10541 2.15674 Vertex 1447 -0.664783 4.35117 -0.974149 Vertex 1448 -0.524717 -0.149562 -0.707987 Vertex 1449 0.439053 3.20455 -0.493243 Vertex 1450 0.562154 -0.625154 0.163424 Vertex 1451 0.706096 0.428841 0.732733 Vertex 1452 0.741681 0.48939 0.660619 Vertex 1453 -0.654052 -2.07754 1.19776 Vertex 1454 1.34001 0.988413 -2.67391 Vertex 1455 -0.0121539 0.394913 1.26872 Vertex 1456 0.366385 -1.02118 -0.161423 Vertex 1457 -0.381281 -0.213253 1.54824 Vertex 1458 -0.704959 0.196074 -1.86638 Vertex 1459 1.39307 0.926189 -2.50654 Vertex 1460 1.41375 0.673108 -1.36271 Vertex 1461 -1.12243 -0.909254 -2.75001 Vertex 1462 -0.0692018 -1.97227 1.46171 Vertex 1463 0.182305 3.14673 0.189352 Vertex 1464 -1.0756 -1.50016 0.41323 Vertex 1465 -1.01554 0.280322 -0.404285 Vertex 1466 -0.192548 0.286205 1.45742 Vertex 1467 1.58375 1.11574 -2.81861 Vertex 1468 0.404659 -0.734909 -0.229635 Vertex 1469 -0.694179 -0.777006 1.33738 Vertex 1470 -0.443803 4.65756 -0.886611 Vertex 1471 -0.68084 -0.938808 -2.75673 Vertex 1472 -0.815509 0.64763 -0.51467 Vertex 1473 -0.0219917 -1.89446 1.71549 Vertex 1474 0.877126 0.976656 0.536136 Vertex 1475 -0.16705 2.18074 -0.195376 Vertex 1476 -0.92995 -1.21778 0.971271 Vertex 1477 0.762605 -3.07136 2.50168 Vertex 1478 -0.64935 -0.621185 -2.5133 Vertex 1479 0.425719 -3.45133 1.78332 Vertex 1480 0.667595 -3.67841 2.45356 Vertex 1481 0.398757 -1.13756 0.232415 Vertex 1482 0.545198 -3.10885 1.66193 Vertex 1483 -0.270089 4.19473 -0.307688 Vertex 1484 -0.698096 -0.32206 -1.268 Vertex 1485 0.491362 -2.62911 1.89502 Vertex 1486 0.166019 2.53626 -0.677264 Vertex 1487 1.06454 0.972031 0.102759 Vertex 1488 0.192328 -0.644276 -0.479195 Vertex 1489 0.239419 3.67727 -0.615257 Vertex 1490 0.702091 -3.35352 2.28972 Vertex 1491 0.273264 1.06629 -0.880727 Vertex 1492 -0.137943 4.14708 -0.97251 Vertex 1493 1.15209 0.518384 -0.321119 Vertex 1494 0.361148 -1.22642 0.697755 Vertex 1495 -0.206411 3.9828 -0.244875 Vertex 1496 -0.552368 -1.40504 -2.54728 Vertex 1497 0.569156 -3.43661 1.66971 Vertex 1498 0.500669 2.61496 0.373123 Vertex 1499 1.06041 1.17232 -0.0855921 Vertex 1500 -0.230997 -0.762376 -0.604039 Vertex 1501 -0.26731 0.273575 -0.792759 Vertex 1502 0.902537 1.13927 0.461324 Vertex 1503 -0.743199 -0.49416 -0.284926 Vertex 1504 -0.203022 -2.95628 1.77418 Vertex 1505 -0.697539 -0.346925 -0.866455 Vertex 1506 -0.102449 3.86846 -0.134635 Vertex 1507 -1.10269 5.07366 -1.4857 Vertex 1508 -0.734583 -1.90431 2.00009 Vertex 1509 -0.867535 -1.53216 -0.0414475 Vertex 1510 0.678126 1.99756 -0.3923 Vertex 1511 -0.881101 -1.5669 -2.69108 Vertex 1512 0.16498 3.80876 -0.0831194 Vertex 1513 -0.0124952 2.64658 0.189485 Vertex 1514 -1.12161 -2.80389 -0.248488 Vertex 1515 0.294254 3.70264 -0.112157 Vertex 1516 1.11966 0.342416 -2.71542 Vertex 1517 -0.940112 5.0409 -1.3281 Vertex 1518 0.803812 1.66024 -0.215634 Vertex 1519 1.24444 1.20682 -1.20686 Vertex 1520 -0.624196 -1.24485 1.93464 Vertex 1521 0.469647 1.96958 -0.6043 Vertex 1522 -0.688161 -0.740494 -2.68077 Vertex 1523 0.283676 -2.25654 2.95547 Vertex 1524 0.0385766 3.0836 -0.576284 Vertex 1525 0.350253 0.560219 -0.867258 Vertex 1526 -1.08949 -1.03275 0.468828 Vertex 1527 0.829711 -2.31939 -0.633464 Vertex 1528 1.22762 1.11279 -2.19644 Vertex 1529 0.154371 1.10761 1.1021 Vertex 1530 0.301715 -1.23027 -0.128398 Vertex 1531 0.0113339 2.48888 0.284234 Vertex 1532 0.322667 2.62993 -0.699335 Vertex 1533 0.000570583 4.16512 -0.440296 Vertex 1534 -0.742284 -1.30596 -2.65792 Vertex 1535 0.580344 1.35996 0.932781 Vertex 1536 -0.315625 -1.31648 2.57206 Vertex 1537 -0.0220902 4.05942 -0.82076 Vertex 1538 2.21711 0.569831 -2.5766 Vertex 1539 0.930837 0.675128 0.391683 Vertex 1540 0.859436 0.726892 0.560294 Vertex 1541 0.457929 -0.555862 -0.222137 Vertex 1542 0.101415 2.44589 0.384477 Vertex 1543 -1.06151 -0.136521 -0.834396 Vertex 1544 -0.763449 -1.37029 1.36807 Vertex 1545 -0.463583 -0.474798 1.50666 Vertex 1546 0.174133 -2.06952 0.471376 Vertex 1547 0.149874 -3.09873 2.54731 Vertex 1548 0.514907 0.845926 -0.715254 Vertex 1549 -1.06385 -0.00253939 0.105186 Vertex 1550 0.354185 -3.35513 1.40309 Vertex 1551 -0.342333 0.480727 1.24514 Vertex 1552 -1.00939 -1.35409 -2.58043 Vertex 1553 0.767432 -2.48999 -0.385691 Vertex 1554 0.895663 0.769957 -1.44476 Vertex 1555 -0.546625 4.79049 -1.10556 Vertex 1556 0.124451 -3.00058 2.60253 Vertex 1557 0.360116 0.281496 -0.611694 Vertex 1558 1.08579 0.360667 -0.32122 Vertex 1559 -0.75495 -1.26159 -2.51207 Vertex 1560 0.342981 -0.69658 1.10335 Vertex 1561 -0.489463 -1.231 -2.47105 Vertex 1562 0.835347 0.832207 0.640151 Vertex 1563 -0.628383 -0.348527 -2.44045 Vertex 1564 -0.682218 -1.85304 2.15468 Vertex 1565 0.221378 0.125508 -0.798223 Vertex 1566 -0.0265898 -0.780997 -0.585327 Vertex 1567 0.161692 -1.36966 -0.186425 Vertex 1568 0.289957 -3.29184 2.49883 Vertex 1569 -0.634091 4.78888 -0.984329 Vertex 1570 -0.1327 -1.95697 1.33575 Vertex 1571 1.30933 0.801948 -2.82105 Vertex 1572 0.277131 -1.18969 -0.208488 Vertex 1573 0.446973 3.3528 -0.371145 Vertex 1574 -0.00375637 1.45864 -0.584184 Vertex 1575 -0.0664507 -1.14458 1.38715 Vertex 1576 -0.163632 -1.64133 2.95542 Vertex 1577 0.726986 1.46738 0.730275 Vertex 1578 0.711953 1.16407 0.849872 Vertex 1579 -0.679798 -0.36338 -1.82689 Vertex 1580 -1.01127 -1.53537 -2.46718 Vertex 1581 -0.315966 -2.44593 1.56143 Vertex 1582 -0.495379 1.07078 -0.34105 Vertex 1583 -0.444651 -2.11334 2.63293 Vertex 1584 -0.677949 -2.06697 1.56395 Vertex 1585 1.67608 0.930431 -2.82433 Vertex 1586 0.134916 0.788199 -0.950881 Vertex 1587 1.58189 1.23531 -2.30399 Vertex 1588 -0.633392 4.85598 -1.12232 Vertex 1589 -0.418181 -1.86961 2.83229 Vertex 1590 -0.280604 1.28373 -0.32889 Vertex 1591 -0.830269 -2.07108 0.412527 Vertex 1592 0.647326 2.72449 0.0622153 Vertex 1593 0.477152 -0.404779 -0.169138 Vertex 1594 -1.15381 -0.813634 -2.55987 Vertex 1595 -0.25565 -2.18506 0.167759 Vertex 1596 -0.164417 -2.2091 0.150638 Vertex 1597 0.408005 -2.76313 2.19775 Vertex 1598 1.60807 0.596395 -2.65441 Vertex 1599 -1.27867 5.04691 -2.05558 Vertex 1600 -0.466839 -2.00267 0.00535621 Vertex 1601 0.458455 -0.372642 -0.295966 Vertex 1602 0.710357 2.15807 0.322158 Vertex 1603 1.77413 0.98609 -2.8035 Vertex 1604 -0.358685 -2.00442 0.0209139 Vertex 1605 -0.474696 -0.399328 1.46676 Vertex 1606 -0.903068 -0.243374 -0.0745578 Vertex 1607 -0.0635532 3.448 -0.666243 Vertex 1608 0.145324 1.37601 1.03006 Vertex 1609 1.69456 0.78895 -2.51809 Vertex 1610 -0.721497 -0.67483 -2.66387 Vertex 1611 0.770547 1.07282 0.760098 Vertex 1612 -0.00586141 -1.70734 1.99472 Vertex 1613 -0.628794 -0.953684 -2.68082 Vertex 1614 0.709563 2.46662 -0.206467 Vertex 1615 1.20027 0.88053 -0.790052 Vertex 1616 0.556553 -2.46695 2.12733 Vertex 1617 1.09376 1.0858 -0.116899 Vertex 1618 -0.139906 -2.84508 2.47654 Vertex 1619 -0.751176 -0.381176 -0.403072 Vertex 1620 -0.111532 0.319512 1.34141 Vertex 1621 1.21273 1.16274 -2.07993 Vertex 1622 0.277574 -2.19568 2.0244 Vertex 1623 -0.673299 -0.11774 -2.39414 Vertex 1624 0.427505 0.124142 0.91532 Vertex 1625 0.180685 -1.92384 -0.210409 Vertex 1626 1.35785 0.882257 -2.85858 Vertex 1627 -1.05787 -0.784763 -2.72686 Vertex 1628 1.39674 0.817248 -2.87248 Vertex 1629 0.394301 -1.11695 0.704983 Vertex 1630 0.289239 -3.39111 1.87976 Vertex 1631 -0.788024 0.164359 0.940271 Vertex 1632 1.39849 0.838086 -0.973933 Vertex 1633 -1.19913 -0.928917 -2.49377 Vertex 1634 -0.323258 -2.06325 2.8908 Vertex 1635 0.233508 2.18602 -0.758322 Vertex 1636 0.283218 1.46478 -0.999683 Vertex 1637 0.198825 -2.13979 2.96498 Vertex 1638 0.174614 -1.73731 0.0372228 Vertex 1639 -0.899553 4.63724 -1.33904 Vertex 1640 -0.027729 -2.78027 2.71228 Vertex 1641 0.0742379 0.997577 -0.781502 Vertex 1642 0.0411287 0.930001 -0.794132 Vertex 1643 -0.923485 -0.25861 0.0177586 Vertex 1644 -0.714321 -1.95786 -0.0261739 Vertex 1645 0.715596 -3.34961 2.23473 Vertex 1646 0.281693 -2.07899 2.27266 Vertex 1647 -0.952484 -2.95387 -0.132984 Vertex 1648 -0.847562 -0.703314 -2.69943 Vertex 1649 -0.971383 -0.263364 -2.30875 Vertex 1650 -0.872063 -0.947382 -0.218398 Vertex 1651 -1.01005 -0.194036 -1.18804 Vertex 1652 0.413346 -1.91156 -0.0596124 Vertex 1653 -0.0806797 4.22896 -0.805754 Vertex 1654 -0.862764 -0.0459491 0.942878 Vertex 1655 1.7041 0.360568 -2.604 Vertex 1656 -0.409709 4.06753 -0.910366 Vertex 1657 0.476603 -2.71124 2.12465 Vertex 1658 -1.25985 -1.11652 -2.45622 Vertex 1659 -0.206566 -1.3476 2.37017 Vertex 1660 -0.982646 -0.135213 -1.63154 Vertex 1661 -0.0682678 -2.60442 2.86749 Vertex 1662 -0.558891 0.301028 -1.20132 Vertex 1663 -0.115801 -1.10613 -0.484274 Vertex 1664 -0.985658 0.331701 -0.494666 Vertex 1665 -0.57118 -2.15543 1.32825 Vertex 1666 -0.389563 -2.31024 1.27833 Vertex 1667 0.178329 1.00338 -0.888148 Vertex 1668 -0.200434 -2.34751 1.39095 Vertex 1669 -0.316538 -2.31659 2.42358 Vertex 1670 -0.350232 -0.50409 1.57373 Vertex 1671 -0.0481402 4.19135 -0.427987 Vertex 1672 0.945219 0.383699 -1.32091 Vertex 1673 0.959309 0.130664 -0.345989 Vertex 1674 -0.470877 4.71382 -1.11871 Vertex 1675 -0.882497 -0.304004 -1.49458 Vertex 1676 -0.432643 0.397312 1.19928 Vertex 1677 -0.64968 -1.1635 -2.46596 Vertex 1678 -0.41327 4.18053 -0.467163 Vertex 1679 -0.306518 -2.27403 0.922012 Vertex 1680 -0.461339 4.04418 -0.734234 Vertex 1681 -0.645208 -0.389079 1.35734 Vertex 1682 -0.228281 0.515026 1.38159 Vertex 1683 0.769194 1.54816 0.565558 Vertex 1684 0.767973 1.50828 0.615425 Vertex 1685 -0.131305 -0.862055 -0.578783 Vertex 1686 1.03625 0.432156 -0.116524 Vertex 1687 0.533953 0.0126646 -0.198005 Vertex 1688 0.126816 0.574717 1.18831 Vertex 1689 -1.08904 -0.225155 -0.389619 Vertex 1690 1.15429 1.10456 -1.72897 Vertex 1691 -0.0185917 -2.18726 1.68563 Vertex 1692 1.44437 0.855469 -1.04608 Vertex 1693 0.341201 2.72366 0.541238 Vertex 1694 0.198099 -0.58723 1.36484 Vertex 1695 -0.361227 -1.76824 2.93107 Vertex 1696 -0.772592 -1.47462 2.05475 Vertex 1697 0.0898801 0.673501 -0.996091 Vertex 1698 0.789248 -3.21817 2.30352 Vertex 1699 -1.12199 5.21081 -1.5916 Vertex 1700 0.666999 -3.27601 2.99373 Vertex 1701 -1.04255 -0.378244 -0.575252 Vertex 1702 0.234497 -2.98062 1.52905 Vertex 1703 -0.511055 -1.69896 -0.121822 Vertex 1704 -0.232797 -1.32199 2.29908 Vertex 1705 0.0898011 -1.81823 0.888902 Vertex 1706 0.816557 -3.29562 2.75231 Vertex 1707 0.105029 -3.06591 2.11899 Vertex 1708 0.494717 -0.177237 -0.0150549 Vertex 1709 0.786423 -3.40177 2.94274 Vertex 1710 -0.046716 1.21884 -0.613757 Vertex 1711 0.915139 1.32517 -0.266044 Vertex 1712 0.371351 -2.88225 3.12525 Vertex 1713 -0.983329 -2.06669 0.103153 Vertex 1714 -0.933681 0.732017 0.0630133 Vertex 1715 -0.937423 5.00374 -1.29064 Vertex 1716 1.24691 0.358748 -2.72483 Vertex 1717 -0.991081 -0.511036 0.856223 Vertex 1718 -0.488394 -0.477492 -0.49206 Vertex 1719 -0.647658 -2.12302 1.30904 Vertex 1720 0.320372 1.10724 -0.870342 Vertex 1721 0.176527 3.31372 0.214309 Vertex 1722 -1.11267 -2.00092 0.032805 Vertex 1723 -0.0211192 -0.520516 1.4308 Vertex 1724 0.488968 0.237187 -0.506067 Vertex 1725 1.15103 0.870833 -0.194082 Vertex 1726 0.33991 -2.01953 2.63785 Vertex 1727 -0.337836 0.300707 1.35095 Vertex 1728 0.171771 -0.209654 -0.555136 Vertex 1729 1.06368 0.856551 -1.6522 Vertex 1730 0.096012 3.8628 -0.0876117 Vertex 1731 0.552497 -3.58277 2.30832 Vertex 1732 0.956437 1.04362 -0.928938 Vertex 1733 -0.190127 4.36161 -0.615199 Vertex 1734 -0.310385 -0.367648 -0.599567 Vertex 1735 -0.00819287 3.61005 -0.912608 Vertex 1736 1.34481 1.3626 -1.79509 Vertex 1737 -0.117863 2.34246 0.0562111 Vertex 1738 -0.900626 -0.576601 -0.00688283 Vertex 1739 0.600798 -2.41242 -0.368668 Vertex 1740 0.824693 -3.70437 2.33926 Vertex 1741 0.827061 -3.66584 2.34238 Vertex 1742 -0.981968 -0.333658 -2.34158 Vertex 1743 -1.02947 -0.272132 -1.02104 Vertex 1744 0.333966 -0.98109 -0.277507 Vertex 1745 0.0687073 4.04762 -0.310781 Vertex 1746 -0.321715 -1.26564 2.3831 Vertex 1747 1.02902 1.11172 -1.15963 Vertex 1748 0.688846 -3.29174 2.2459 Vertex 1749 -0.354514 0.986155 1.0296 Vertex 1750 -0.817276 -0.417131 -0.295399 Vertex 1751 0.151984 2.94946 0.210159 Vertex 1752 0.189879 0.574414 1.18708 Vertex 1753 -0.913764 -0.0961934 0.164357 Vertex 1754 0.176978 -2.33084 1.61112 Vertex 1755 -0.652926 -0.797466 -2.50955 Vertex 1756 0.0397491 1.78962 -0.557345 Vertex 1757 -0.817964 -1.55405 1.22534 Vertex 1758 0.126362 -2.42583 3.02323 Vertex 1759 0.468951 -2.93589 1.59883 Vertex 1760 0.321741 -3.35197 2.28463 Vertex 1761 -0.06572 -2.67529 1.52797 Vertex 1762 -0.260371 0.869192 -0.623412 Vertex 1763 0.0397923 -0.73893 -0.56679 Vertex 1764 0.382501 3.14342 0.186379 Vertex 1765 1.32818 0.487835 -2.66592 Vertex 1766 -0.0209888 -2.06868 1.83278 Vertex 1767 -1.10094 -0.164941 -0.505414 Vertex 1768 -0.915656 -0.204996 0.590909 Vertex 1769 -0.142351 2.57544 -0.145766 Vertex 1770 -1.15169 5.28495 -1.73814 Vertex 1771 0.246704 -3.21794 2.45094 Vertex 1772 0.316266 -1.31273 0.0828856 Vertex 1773 0.685119 0.831736 0.90926 Vertex 1774 -0.791153 -1.16724 -2.74999 Vertex 1775 0.749263 -3.25613 3.01211 Vertex 1776 -0.126924 0.185655 -0.923338 Vertex 1777 -0.0641108 0.0681472 1.36466 Vertex 1778 0.870851 0.584495 -1.40328 Vertex 1779 0.844417 1.18618 -0.489336 Vertex 1780 -0.31861 -2.79342 1.74914 Vertex 1781 -1.04534 0.0435268 0.1962 Vertex 1782 -0.899459 -1.70139 -0.0122537 Vertex 1783 -0.263302 -1.34238 2.07487 Vertex 1784 -0.145318 -1.51461 1.57414 Vertex 1785 -0.352467 -2.69933 1.77031 Vertex 1786 -0.896896 -1.25897 -2.75072 Vertex 1787 0.234497 -2.64888 3.04047 Vertex 1788 -1.13736 -2.90692 -0.278302 Vertex 1789 0.198534 3.1917 0.240003 Vertex 1790 1.23638 0.390704 -2.80394 Vertex 1791 -1.36707 5.45908 -2.47508 Vertex 1792 0.368933 1.40541 -0.879381 Vertex 1793 0.079122 -1.72108 0.0380785 Vertex 1794 -0.01412 4.20163 -0.596154 Vertex 1795 -0.366196 3.90461 -0.715669 Vertex 1796 -0.462088 -0.0128723 -0.983183 Vertex 1797 -0.897003 -0.271236 0.277599 Vertex 1798 -0.419834 4.39889 -1.2596 Vertex 1799 -0.507238 0.20297 -1.63603 Vertex 1800 0.137397 -0.120215 -0.672803 Vertex 1801 1.13782 0.205869 -1.12346 Vertex 1802 0.338465 2.8497 -0.680538 Vertex 1803 0.617439 1.42248 0.877814 Vertex 1804 0.279367 1.3903 -0.996628 Vertex 1805 0.64503 1.87152 0.546539 Vertex 1806 0.436494 -1.05879 0.246922 Vertex 1807 0.730391 1.78175 -0.354714 Vertex 1808 -0.87977 -0.552678 -0.105214 Vertex 1809 -0.966677 -0.868746 0.919086 Vertex 1810 -0.469684 1.41054 0.658244 Vertex 1811 0.162063 -2.30858 3.00209 Vertex 1812 0.489498 -2.11414 -0.361332 Vertex 1813 0.38539 -0.838269 0.958418 Vertex 1814 -1.54091 5.54284 -2.58599 Vertex 1815 0.155827 3.90327 -0.607368 Vertex 1816 0.115334 -1.0706 1.26774 Vertex 1817 1.35791 1.01857 -2.52809 Vertex 1818 -0.484289 -2.1738 2.23473 Vertex 1819 0.544538 -0.369302 0.420781 Vertex 1820 0.00741849 1.80623 0.700824 Vertex 1821 1.40536 1.44754 -2.07415 Vertex 1822 -0.713681 0.878327 -0.426052 Vertex 1823 0.287893 -3.28162 2.30378 Vertex 1824 -0.122197 3.65666 -0.171718 Vertex 1825 -0.146272 -2.28547 1.55738 Vertex 1826 0.281344 0.16891 -0.732294 Vertex 1827 -0.452629 -0.191928 -1.49191 Vertex 1828 -0.27302 4.10567 -0.316559 Vertex 1829 -0.221727 -2.5699 1.74312 Vertex 1830 -0.585873 -2.04904 2.23422 Vertex 1831 -1.05571 5.05849 -1.93873 Vertex 1832 -0.243027 4.41442 -0.639514 Vertex 1833 -0.307015 -1.04056 1.4715 Vertex 1834 0.71127 -2.19042 -0.348698 Vertex 1835 0.908887 1.30565 0.381151 Vertex 1836 0.402223 -2.79749 2.14519 Vertex 1837 -1.06667 -0.938868 0.637819 Vertex 1838 -0.500344 -2.30757 1.56071 Vertex 1839 0.991678 0.89452 0.282538 Vertex 1840 0.394555 1.46791 0.942885 Vertex 1841 0.28178 1.46284 0.967339 Vertex 1842 1.42585 0.983048 -2.88149 Vertex 1843 0.591593 0.646781 -0.74806 Vertex 1844 0.330038 2.98212 -0.676038 Vertex 1845 0.804882 -3.15622 2.5157 Vertex 1846 -1.39789 5.19656 -2.17283 Vertex 1847 0.252427 1.63646 0.906957 Vertex 1848 0.782291 1.88331 0.0915702 Vertex 1849 1.0039 1.37133 -0.0533199 Vertex 1850 0.0808597 -1.99034 0.760214 Vertex 1851 0.423855 3.43259 -0.0236982 Vertex 1852 -0.654837 1.18881 0.341799 Vertex 1853 -1.40662 5.19547 -1.97604 Vertex 1854 0.760072 0.464046 -1.02482 Vertex 1855 0.0836112 3.18263 -0.699354 Vertex 1856 0.649719 0.43728 -0.811908 Vertex 1857 -0.8192 4.55664 -1.20476 Vertex 1858 -0.790468 -2.11873 0.301804 Vertex 1859 0.429236 -1.10958 0.0490196 Vertex 1860 -0.768779 0.298838 1.03834 Vertex 1861 -0.570994 -0.140573 -1.03645 Vertex 1862 -0.509002 0.896267 -0.580862 Vertex 1863 0.0716893 -2.61029 3.16388 Vertex 1864 -0.610163 0.259396 -1.73389 Vertex 1865 -1.24505 4.99397 -2.00052 Vertex 1866 1.33562 0.611124 -2.62318 Vertex 1867 -0.873956 4.91938 -1.72935 Vertex 1868 0.156654 -2.9788 2.18962 Vertex 1869 -1.06542 -1.16322 0.643797 Vertex 1870 -0.0713589 -2.74031 2.66778 Vertex 1871 0.464931 -2.73106 2.00184 Vertex 1872 -0.806026 4.8807 -1.1113 Vertex 1873 -0.875504 0.0866539 0.581168 Vertex 1874 -0.318557 -2.38981 1.21917 Vertex 1875 1.65068 1.07678 -2.2462 Vertex 1876 0.712868 -3.24926 3.02765 Vertex 1877 -0.131761 1.19403 0.986799 Vertex 1878 1.40461 1.26315 -1.6562 Vertex 1879 0.548797 -3.06554 2.97092 Vertex 1880 -1.1927 -1.31563 -2.59638 Vertex 1881 -0.125081 -2.01415 -0.0549014 Vertex 1882 -0.126709 -0.348379 -0.695844 Vertex 1883 -0.00463546 -2.09365 0.040124 Vertex 1884 0.24924 0.916737 -0.891053 Vertex 1885 0.704883 -3.57959 2.3658 Vertex 1886 0.528091 -3.25206 1.73498 Vertex 1887 0.100223 3.03482 0.141533 Vertex 1888 -0.796258 -1.366 -2.5427 Vertex 1889 -0.159145 -2.91481 2.11336 Vertex 1890 -0.80644 4.65039 -1.03489 Vertex 1891 -0.758268 -1.8469 1.11172 Vertex 1892 0.49714 2.74478 -0.536732 Vertex 1893 -0.580806 -1.15368 -2.7377 Vertex 1894 -0.504556 -0.210279 -1.7098 Vertex 1895 0.195775 -1.60498 0.859352 Vertex 1896 -0.0911043 -1.76023 -0.10054 Vertex 1897 1.00087 1.22049 0.152215 Vertex 1898 0.178462 3.75541 -0.675286 Vertex 1899 -1.38375 5.7781 -2.65687 Vertex 1900 0.674428 1.31084 0.859405 Vertex 1901 0.281116 -0.604132 1.23342 Vertex 1902 -1.47807 5.32409 -2.10409 Vertex 1903 -0.952015 -1.72265 0.803949 Vertex 1904 0.177354 -0.923605 1.29193 Vertex 1905 0.611458 -2.78929 2.27602 Vertex 1906 -0.928369 5.09707 -1.73566 Vertex 1907 0.193039 -2.0907 2.13441 Vertex 1908 2.16876 0.603859 -2.58761 Vertex 1909 -1.04078 -0.0985441 0.00920211 Vertex 1910 -1.0493 5.19783 -1.88222 Vertex 1911 -0.830952 0.29869 -1.69433 Vertex 1912 0.778022 1.6013 0.521198 Vertex 1913 0.487401 -0.910684 0.19996 Vertex 1914 -0.851355 0.0258191 -2.13557 Vertex 1915 -0.880946 -1.40987 1.04687 Vertex 1916 0.174313 1.1289 -0.85798 Vertex 1917 0.159679 -2.86747 1.58277 Vertex 1918 -1.06139 -0.169152 -0.874199 Vertex 1919 -0.45198 4.65656 -1.20199 Vertex 1920 -0.142582 0.18204 1.40611 Vertex 1921 0.471998 0.999242 -0.736339 Vertex 1922 -0.0952296 3.46256 -0.176913 Vertex 1923 -1.49086 5.69003 -2.72489 Vertex 1924 0.305757 -1.34953 0.201945 Vertex 1925 -0.846844 0.709807 -0.37635 Vertex 1926 0.0661115 -1.35722 1.18839 Vertex 1927 0.317795 -0.696381 -0.35295 Vertex 1928 -1.37875 5.14066 -1.9637 Vertex 1929 0.216935 -0.836651 -0.415025 Vertex 1930 0.106343 -1.79504 -0.00282792 Vertex 1931 0.189289 1.20638 -0.883615 Vertex 1932 -0.411518 -2.5942 2.03265 Vertex 1933 -0.804791 -1.5217 1.39303 Vertex 1934 -0.101294 -1.55643 2.03247 Vertex 1935 0.515945 0.363173 -0.618672 Vertex 1936 0.827401 0.572409 -1.09209 Vertex 1937 -0.112099 1.10091 1.06113 Vertex 1938 1.58954 1.06598 -2.12807 Vertex 1939 0.0242026 -1.85664 1.94712 Vertex 1940 -0.19753 -2.24199 0.316691 Vertex 1941 0.650399 -3.66725 2.50787 Vertex 1942 0.339292 0.169555 -0.521359 Vertex 1943 0.261566 -0.678215 1.2582 Vertex 1944 -0.980558 -1.62085 -2.63458 Vertex 1945 0.192054 -1.8798 0.645249 Vertex 1946 2.00616 0.555734 -2.67112 Vertex 1947 -0.713137 -1.46999 2.19414 Vertex 1948 -1.05097 -1.04633 0.248347 Vertex 1949 -1.33256 5.24753 -1.85276 Vertex 1950 0.359315 -3.00831 1.46872 Vertex 1951 1.32894 0.862641 -0.903598 Vertex 1952 0.1681 -1.03627 -0.388739 Vertex 1953 -0.694157 0.526185 1.07985 Vertex 1954 0.556032 1.93936 0.641617 Vertex 1955 -0.448381 -1.54167 -0.204198 Vertex 1956 0.216326 -3.01411 2.31741 Vertex 1957 -0.0151295 3.89009 -0.0459433 Vertex 1958 0.289779 0.465527 1.19024 Vertex 1959 0.582095 -3.02723 2.99151 Vertex 1960 0.783867 -3.37684 2.98468 Vertex 1961 -0.863615 0.0170155 0.750735 Vertex 1962 0.729761 2.14122 -0.252504 Vertex 1963 1.51848 0.899498 -2.46706 Vertex 1964 0.211119 -0.758985 1.32935 Vertex 1965 0.0160016 -1.46664 -0.213158 Vertex 1966 -0.147886 -1.47968 1.41964 Vertex 1967 0.133989 3.39731 0.111133 Vertex 1968 0.530731 -0.141367 -0.355704 Vertex 1969 0.369871 -2.06738 2.61935 Vertex 1970 0.36192 1.8025 0.822503 Vertex 1971 0.145281 1.85911 -0.659313 Vertex 1972 -0.248065 -1.38424 1.65631 Vertex 1973 -0.482825 4.4059 -0.555461 Vertex 1974 1.73455 0.319181 -2.71211 Vertex 1975 -0.623682 -2.17386 0.251891 Vertex 1976 0.516088 2.73868 0.287039 Vertex 1977 1.31025 0.44503 -1.12304 Vertex 1978 0.30844 -0.511912 -0.381306 Vertex 1979 -0.393848 0.0611875 -0.801413 Vertex 1980 -0.935925 0.449841 -0.554783 Vertex 1981 1.20349 0.824603 -0.618247 Vertex 1982 -0.864438 -1.10949 -2.78137 Vertex 1983 -0.0131489 -2.27835 1.6398 Vertex 1984 -0.146908 1.6128 0.726107 Vertex 1985 0.538093 0.894814 -0.694788 Vertex 1986 -0.451862 4.37161 -1.33967 Vertex 1987 -1.22608 5.38801 -1.95849 Vertex 1988 1.78408 0.600984 -2.55145 Vertex 1989 -0.00258279 0.283139 1.2883 Vertex 1990 -0.110604 2.06597 -0.336351 Vertex 1991 1.07365 0.275856 -1.26801 Vertex 1992 -1.02301 -0.79287 -2.77172 Vertex 1993 1.51666 1.32552 -1.83158 Vertex 1994 -0.472675 -0.602767 1.51863 Vertex 1995 0.171328 -3.12784 2.0352 Vertex 1996 -0.850257 -0.405632 -0.469299 Vertex 1997 -0.153855 2.50868 -0.135484 Vertex 1998 -0.635954 0.476968 -0.956171 Vertex 1999 -0.112282 -3.0481 1.87338 Vertex 2000 -0.204936 1.76666 0.361671 Vertex 2001 -0.690174 -0.867114 1.33441 Vertex 2002 0.686727 2.64263 -0.157258 Vertex 2003 -0.05338 4.22267 -0.729511 Vertex 2004 -0.760537 -0.0336019 -2.35338 Vertex 2005 1.96318 0.580849 -2.79534 Vertex 2006 0.713176 -2.60568 -0.485996 Vertex 2007 1.05486 0.536192 -1.56097 Vertex 2008 -0.778227 0.855012 0.740909 Vertex 2009 1.1819 1.21619 -1.7724 Vertex 2010 0.237054 -1.88513 2.70268 Vertex 2011 0.322241 -1.39059 0.588392 Vertex 2012 -1.04457 -1.00647 0.207307 Vertex 2013 0.0838498 -1.73005 2.32394 Vertex 2014 -0.371558 3.90178 -0.660572 Vertex 2015 0.622655 2.31461 0.396909 Vertex 2016 -0.423199 -0.0760648 -1.56761 Vertex 2017 0.894283 0.900652 -1.28267 Vertex 2018 -0.580025 -2.08706 1.11871 Vertex 2019 -0.189123 -1.3639 2.56341 Vertex 2020 -0.312548 -2.83024 1.79634 Vertex 2021 1.18452 0.313463 -1.23909 Vertex 2022 -0.612131 0.557239 1.10951 Vertex 2023 -0.237287 1.70624 0.401648 Vertex 2024 -0.770526 -0.415269 1.29245 Vertex 2025 -0.752302 4.527 -1.37213 Vertex 2026 -1.34062 5.46984 -2.06094 Vertex 2027 -1.0907 0.107075 -0.221113 Vertex 2028 0.352473 -2.65725 1.57677 Vertex 2029 1.52764 0.853877 -2.50566 Vertex 2030 1.9524 0.74944 -2.57178 Vertex 2031 -1.07207 0.224119 0.195809 Vertex 2032 -0.475294 -2.08037 2.56298 Vertex 2033 -0.571059 0.659557 1.0886 Vertex 2034 0.643681 1.28641 0.899554 Vertex 2035 -1.01576 -2.74982 -0.0370189 Vertex 2036 -1.07353 4.80826 -1.50322 Vertex 2037 0.137748 1.03437 1.12351 Vertex 2038 0.412842 -2.15511 -0.333696 Vertex 2039 1.08567 0.721537 -1.65835 Vertex 2040 0.168165 -0.12851 1.36225 Vertex 2041 -0.534021 0.295809 -1.292 Vertex 2042 0.648862 -2.60383 -0.496509 Vertex 2043 -0.236677 -2.68785 2.36841 Vertex 2044 0.139599 -0.437121 -0.560532 Vertex 2045 0.396504 1.68678 -0.823923 Vertex 2046 0.225314 -1.60421 0.257092 Vertex 2047 -0.272386 0.479415 -0.797414 Vertex 2048 0.743522 0.094683 0.169455 Vertex 2049 -0.452039 0.0816375 -1.64563 Vertex 2050 0.284254 -1.37237 -0.0169808 Vertex 2051 -0.20175 0.335923 -0.843218 Vertex 2052 0.732335 0.118518 0.301659 Vertex 2053 0.827927 1.47866 -0.239012 Vertex 2054 -0.495591 -2.23319 1.28581 Vertex 2055 -0.586006 -0.062839 -2.00696 Vertex 2056 -0.267935 -1.58615 2.91823 Vertex 2057 0.396993 -1.8626 -0.0736783 Vertex 2058 0.316207 0.223465 1.14074 Vertex 2059 0.558809 -2.51265 2.13443 Vertex 2060 -1.09057 -0.977698 0.490314 Vertex 2061 1.27983 0.456713 -1.38698 Vertex 2062 -1.03912 -1.06863 0.740884 Vertex 2063 0.460755 1.65881 -0.771047 Vertex 2064 0.67174 -3.31077 2.87995 Vertex 2065 0.715775 -2.3208 -0.383277 Vertex 2066 -0.716587 -1.20294 1.3436 Vertex 2067 0.151871 2.46858 -0.657647 Vertex 2068 -0.0955508 -1.58378 1.3765 Vertex 2069 1.8798 0.110338 -2.53118 Vertex 2070 0.435272 1.38344 0.984483 Vertex 2071 0.524172 0.000257225 -0.144203 Vertex 2072 -0.598929 -0.992237 -2.615 Vertex 2073 -0.402486 -1.76671 -0.0904669 Vertex 2074 0.229389 3.40163 0.205972 Vertex 2075 -0.10731 0.747092 1.31849 Vertex 2076 -0.989337 -1.7079 -2.53959 Vertex 2077 -0.846885 0.825283 0.456236 Vertex 2078 0.817099 1.71444 -0.00158532 Vertex 2079 -0.0100543 -3.04595 2.12504 Vertex 2080 0.471885 -2.78406 1.73318 Vertex 2081 -0.168741 0.984427 -0.644007 Vertex 2082 0.507253 1.86967 -0.592548 Vertex 2083 0.513969 1.75586 -0.649617 Vertex 2084 0.555791 -3.24056 1.56089 Vertex 2085 -0.142643 -1.11434 1.43149 Vertex 2086 0.215507 0.865475 -0.915372 Vertex 2087 -0.528081 -1.58093 2.71231 Vertex 2088 0.247475 2.26479 0.587397 Vertex 2089 -0.864109 0.0422887 0.685334 Vertex 2090 -0.71613 0.966588 -0.250636 Vertex 2091 -1.06675 -2.33787 -0.295789 Vertex 2092 -0.616735 0.151601 -1.85059 Vertex 2093 -0.653183 0.198239 -1.83968 Vertex 2094 0.229208 -2.05728 0.336466 Vertex 2095 0.184444 -2.57616 1.54363 Vertex 2096 -0.787152 -0.619763 -0.240909 Vertex 2097 1.56263 0.533721 -2.74763 Vertex 2098 -1.54096 5.37566 -2.30375 Vertex 2099 1.42895 0.800672 -1.79406 Vertex 2100 1.23454 1.13979 -2.23508 Vertex 2101 1.50752 0.651646 -2.84611 Vertex 2102 -0.979112 4.70545 -1.40942 Vertex 2103 0.254107 -0.557781 -0.441502 Vertex 2104 -0.711234 -1.27087 -2.6956 Vertex 2105 -0.699468 -1.74182 2.25172 Vertex 2106 1.15422 0.936864 -0.291286 Vertex 2107 0.328718 -3.43432 1.80516 Vertex 2108 0.393754 -3.40592 1.78954 Vertex 2109 1.19776 0.532192 -2.82891 Vertex 2110 -0.110462 0.108913 -0.918999 Vertex 2111 -0.277622 0.743674 1.15323 Vertex 2112 -0.652211 -0.35091 -1.89062 Vertex 2113 1.04475 0.379483 -1.41957 Vertex 2114 -0.691463 -2.04621 0.642314 Vertex 2115 0.236407 -2.23238 1.7693 Vertex 2116 -0.846613 0.00736688 0.980015 Vertex 2117 0.39736 0.41338 -0.754149 Vertex 2118 0.738467 0.0789336 -0.255165 Vertex 2119 0.274636 -1.2986 0.979104 Vertex 2120 0.0513078 3.14027 0.0682241 Vertex 2121 1.11017 0.882983 -0.00732498 Vertex 2122 -0.409499 -2.24314 2.2603 Vertex 2123 0.255417 0.877788 1.16894 Vertex 2124 1.68045 0.430034 -2.58359 Vertex 2125 -0.172952 -2.39347 1.49875 Vertex 2126 1.63147 1.19809 -2.33312 Vertex 2127 0.566496 -2.5201 2.31687 Vertex 2128 0.609913 2.10708 0.512294 Vertex 2129 -0.605468 -0.0929006 -2.27619 Vertex 2130 0.828632 -3.63614 2.28474 Vertex 2131 -0.678725 -0.881372 -2.36052 Vertex 2132 0.93312 0.972146 0.401418 Vertex 2133 -1.01442 0.237957 -0.523181 Vertex 2134 0.529651 -0.591321 0.600463 Vertex 2135 1.48462 1.03012 -1.37387 Vertex 2136 -0.876677 -1.09081 -0.194361 Vertex 2137 1.03371 0.144166 -0.754514 Vertex 2138 -0.407336 0.0894151 -0.96654 Vertex 2139 0.0714667 3.29641 -0.777287 Vertex 2140 -0.609621 1.25998 0.431174 Vertex 2141 -1.03184 -0.835846 0.144836 Vertex 2142 1.28457 0.948623 -0.902516 Vertex 2143 -0.150124 3.41992 -0.394748 Vertex 2144 -0.464589 -1.48644 2.74559 Vertex 2145 0.48555 3.06637 -0.467038 Vertex 2146 -0.755729 -1.67072 2.1348 Vertex 2147 -0.62172 -0.332831 -2.04015 Vertex 2148 -0.559568 -2.25017 1.86438 Vertex 2149 0.862308 -3.43701 2.35198 Vertex 2150 0.402071 -3.31957 1.77137 Vertex 2151 -0.330657 3.88864 -0.474876 Vertex 2152 0.659113 2.74214 -0.0717986 Vertex 2153 -1.11428 -1.93453 -0.131083 Vertex 2154 -0.0307065 -1.74639 1.62925 Vertex 2155 0.239801 0.246766 -0.934922 Vertex 2156 -1.03113 -0.697179 0.30177 Vertex 2157 -1.0192 -0.770551 0.183244 Vertex 2158 -0.284589 -2.20222 0.279404 Vertex 2159 -0.489817 -1.42218 -0.294968 Vertex 2160 1.14768 0.37413 -2.68343 Vertex 2161 -0.357958 -2.23908 0.91186 Vertex 2162 -0.818827 0.889691 -0.155357 Vertex 2163 -0.607846 -1.36658 -2.5682 Vertex 2164 -0.652556 -1.28431 -2.53448 Vertex 2165 -0.938206 0.5423 0.601573 Vertex 2166 -0.501272 4.29388 -0.561188 Vertex 2167 -0.805607 -1.63467 1.64889 Vertex 2168 -0.994996 -2.55069 -0.19616 Vertex 2169 -0.773842 -1.61754 2.09482 Vertex 2170 -0.714878 0.751292 -0.598295 Vertex 2171 0.573717 -2.10235 -0.345031 Vertex 2172 -0.311683 -0.206748 1.58245 Vertex 2173 0.510691 -3.37252 1.42558 Vertex 2174 -0.236408 -2.39754 1.26128 Vertex 2175 0.436302 1.52298 -0.801616 Vertex 2176 0.117858 2.70465 -0.604455 Vertex 2177 0.23142 -1.86279 0.560861 Vertex 2178 -0.946388 -0.0862439 -2.29711 Vertex 2179 -0.853127 0.352581 0.89143 Vertex 2180 0.196 -1.84459 2.74272 Vertex 2181 0.979639 1.43486 0.062816 Vertex 2182 -1.57858 5.53069 -2.37992 Vertex 2183 -0.765872 -1.42256 2.03526 Vertex 2184 0.390056 -0.416994 1.05785 Vertex 2185 1.11146 1.18332 -1.26014 Vertex 2186 -0.185745 0.469402 1.42199 Vertex 2187 -0.515842 -0.131426 -0.861003 Vertex 2188 0.114826 -1.75381 0.906295 Vertex 2189 -0.83098 5.02985 -1.59509 Vertex 2190 -0.0802848 -2.62891 1.50696 Vertex 2191 -0.0962307 3.06148 -0.333933 Vertex 2192 -1.01169 -1.1202 -2.74377 Vertex 2193 -0.354087 -2.30819 2.29622 Vertex 2194 -0.793057 -1.70565 1.0671 Vertex 2195 -0.94142 -1.55137 0.913784 Vertex 2196 -1.07053 -1.24635 -2.57124 Vertex 2197 -0.266798 -2.2393 0.899912 Vertex 2198 0.870877 1.08945 0.541104 Vertex 2199 1.05742 1.11 -0.536304 Vertex 2200 -1.10554 -0.163274 -0.336459 Vertex 2201 0.460042 3.43021 -0.147959 Vertex 2202 0.294585 2.54432 0.575234 Vertex 2203 -1.02626 -0.893787 -2.41531 Vertex 2204 0.913401 1.50457 0.259221 Vertex 2205 -0.394948 0.770623 1.09409 Vertex 2206 -1.06416 -1.26076 0.573529 Vertex 2207 0.0457766 -0.550182 -0.618673 Vertex 2208 -0.968129 -0.150644 -1.83072 Vertex 2209 1.26779 0.443948 -0.901816 Vertex 2210 -0.653519 4.84351 -1.40621 Vertex 2211 -0.364027 0.118145 -0.7574 Vertex 2212 0.0822299 0.188303 1.29417 Vertex 2213 0.373887 -3.28167 2.66647 Vertex 2214 -0.817972 0.776146 -0.339682 Vertex 2215 0.520276 -3.13422 2.84146 Vertex 2216 -0.374666 0.161284 -0.936047 Vertex 2217 0.501033 -3.54826 2.58957 Vertex 2218 0.65786 -2.97195 2.8663 Vertex 2219 -0.901108 -0.64506 -2.19013 Vertex 2220 -1.21643 5.1698 -2.14305 Vertex 2221 -0.0627215 -1.68154 1.59505 Vertex 2222 -0.335733 1.36384 0.0111368 Vertex 2223 -1.00441 5.10116 -1.42062 Vertex 2224 0.66354 -2.61749 2.90509 Vertex 2225 -0.390674 -2.63538 2.06396 Vertex 2226 -0.36423 -2.64925 2.10719 Vertex 2227 0.277513 -2.02325 0.2817 Vertex 2228 -0.024566 -1.74418 -0.0598961 Vertex 2229 -1.07967 -1.23543 0.49008 Vertex 2230 -0.64777 -0.659251 1.37816 Vertex 2231 0.148953 3.05717 0.173409 Vertex 2232 0.287863 -2.05443 2.34126 Vertex 2233 0.453206 1.15921 -0.775109 Vertex 2234 0.791604 -3.3176 2.94695 Vertex 2235 -1.04931 -0.0474945 -0.834823 Vertex 2236 0.471395 -2.84517 2.28065 Vertex 2237 0.392736 1.84915 -0.763918 Vertex 2238 0.747737 -3.21743 2.96424 Vertex 2239 -0.998875 -2.2406 -0.0782018 Vertex 2240 -0.014918 2.73508 -0.484599 Vertex 2241 0.232669 3.72507 -0.586125 Vertex 2242 0.540436 -0.338599 0.565863 Vertex 2243 1.15375 0.74564 -0.184601 Vertex 2244 -1.07708 0.0864852 0.150133 Vertex 2245 0.445578 0.830697 -0.759856 Vertex 2246 -0.949823 0.19699 0.572336 Vertex 2247 -1.02041 -1.9043 0.34345 Vertex 2248 -1.12974 -1.99542 -0.150533 Vertex 2249 -0.860564 0.329802 -1.28538 Vertex 2250 -0.338039 -1.04262 -0.515252 Vertex 2251 0.0858206 -2.96775 1.62015 Vertex 2252 0.795769 -3.40872 2.26908 Vertex 2253 1.37327 1.18062 -1.29216 Vertex 2254 -0.96201 -0.0174679 -1.89601 Vertex 2255 -0.379771 4.02501 -0.473176 Vertex 2256 1.25939 1.20639 -2.12663 Vertex 2257 0.149605 0.114023 -0.929078 Vertex 2258 0.176522 -1.2262 1.14948 Vertex 2259 -0.686665 1.13486 0.471116 Vertex 2260 -0.0848404 -1.48767 2.52343 Vertex 2261 -0.230796 1.09865 -0.503405 Vertex 2262 -0.936242 0.638575 -0.206865 Vertex 2263 -0.179562 -2.18024 0.620732 Vertex 2264 -0.412067 -0.179915 1.48225 Vertex 2265 -0.224623 -1.72297 -0.144304 Vertex 2266 -1.25667 5.07501 -2.09675 Vertex 2267 1.53585 1.04248 -1.85179 Vertex 2268 -0.96984 -1.29245 0.874326 Vertex 2269 -0.15072 -2.25017 0.281786 Vertex 2270 0.279789 -0.552796 1.2582 Vertex 2271 0.583179 -2.67718 2.62787 Vertex 2272 0.227959 -1.55942 0.297261 Vertex 2273 -0.331983 -1.35318 2.65053 Vertex 2274 -0.716885 0.496204 -0.864263 Vertex 2275 -0.886926 -1.16929 1.05836 Vertex 2276 -1.00634 -2.23105 -0.295141 Vertex 2277 -1.1106 -1.96018 0.0729495 Vertex 2278 -0.952015 -0.437809 -0.903094 Vertex 2279 -0.176003 -0.743318 -0.608792 Vertex 2280 1.83251 0.556244 -2.71922 Vertex 2281 0.184612 0.111461 -0.869329 Vertex 2282 0.408506 3.00419 0.222678 Vertex 2283 -0.175544 2.30414 -0.135089 Vertex 2284 0.0434673 -1.67763 2.31394 Vertex 2285 -0.195848 -0.541213 1.48969 Vertex 2286 0.140507 3.5559 0.153739 Vertex 2287 0.322814 0.553614 1.17932 Vertex 2288 -0.937586 -0.447215 -2.54708 Vertex 2289 1.27226 0.511828 -0.873596 Vertex 2290 -0.643404 -1.25955 1.79253 Vertex 2291 -0.199836 4.07646 -1.126 Vertex 2292 0.292478 -1.95191 -0.272926 Vertex 2293 0.228816 -2.1612 1.95888 Vertex 2294 0.259065 -3.47739 1.63681 Vertex 2295 0.214295 2.86449 0.316449 Vertex 2296 0.293563 -0.66571 1.20348 Vertex 2297 0.579622 0.711173 1.01862 Vertex 2298 -0.889451 -0.678176 -0.0979664 Vertex 2299 1.30167 1.32753 -2.2681 Vertex 2300 -0.577134 -2.24168 1.55226 Vertex 2301 0.478655 -0.272278 -0.167852 Vertex 2302 0.0499859 1.41231 -0.676518 Vertex 2303 0.839746 0.210426 -0.913462 Vertex 2304 1.4743 0.874827 -2.86735 Vertex 2305 1.25471 0.907317 -1.97334 Vertex 2306 0.390979 2.18275 -0.655745 Vertex 2307 -1.0565 -1.42973 0.625798 Vertex 2308 0.236198 -3.19376 2.53346 Vertex 2309 0.0413737 -2.91012 2.62271 Vertex 2310 1.17592 1.10654 -1.91681 Vertex 2311 0.914271 0.152572 -0.0568772 Vertex 2312 0.412255 -2.81806 2.28839 Vertex 2313 2.23328 0.558402 -2.63281 Vertex 2314 -0.720921 -1.14318 -2.46583 Vertex 2315 -1.3653 5.56428 -2.30681 Vertex 2316 0.641496 -2.50344 -0.451511 Vertex 2317 1.67494 0.661649 -2.86606 Vertex 2318 -0.00325037 -0.952657 -0.520444 Vertex 2319 0.0287045 2.09927 -0.503664 Vertex 2320 0.167941 -2.46544 3.01178 Vertex 2321 -0.900091 -0.754849 -0.0862153 Vertex 2322 -0.95027 -0.907664 -2.38129 Vertex 2323 0.624318 2.87179 -0.225484 Vertex 2324 -0.942761 0.698979 0.263264 Vertex 2325 -0.808114 0.955701 -0.0460876 Vertex 2326 0.603935 2.36711 0.382064 Vertex 2327 -0.907203 0.72348 0.441509 Vertex 2328 0.632555 -3.37165 2.84477 Vertex 2329 0.493237 3.28281 -0.317675 Vertex 2330 -0.171449 -2.00397 0.951596 Vertex 2331 -0.436967 0.081907 1.33192 Vertex 2332 -0.279611 -1.30721 2.49811 Vertex 2333 0.150787 -2.84469 2.82088 Vertex 2334 0.20431 -2.46589 1.55821 Vertex 2335 -0.942831 -2.11513 -0.233016 Vertex 2336 -0.616836 -2.14025 1.98039 Vertex 2337 -0.968359 -0.80309 0.929445 Vertex 2338 -0.778621 0.741409 -0.468033 Vertex 2339 -0.287468 4.02677 -0.31729 Vertex 2340 0.00268102 4.12384 -0.365055 Vertex 2341 0.649251 0.47338 0.861788 Vertex 2342 -0.258684 -0.711559 -0.616266 Vertex 2343 -0.0781801 1.77771 -0.423927 Vertex 2344 -1.47927 5.51485 -2.18862 Vertex 2345 0.178436 -2.73347 2.99164 Vertex 2346 -1.15207 -2.57502 -0.110805 Vertex 2347 0.345927 3.63895 -0.14668 Vertex 2348 -0.129848 -2.13331 3.0362 Vertex 2349 1.36057 0.932269 -2.56772 Vertex 2350 0.777811 0.0731097 -0.313262 Vertex 2351 -0.629089 4.36221 -0.794257 Vertex 2352 0.892519 -3.50837 2.57235 Vertex 2353 -0.644751 4.53644 -0.798179 Vertex 2354 -0.412411 -1.36487 -0.358259 Vertex 2355 0.276244 -2.10606 2.92385 Vertex 2356 -0.104831 2.47462 -0.355969 Vertex 2357 -0.134582 2.3151 -0.297629 Vertex 2358 0.402334 2.66784 -0.608005 Vertex 2359 -0.802878 -1.70306 1.89553 Vertex 2360 -0.939997 -1.93476 0.564678 Vertex 2361 0.227689 -2.30255 2.98842 Vertex 2362 -0.957822 -0.941375 -2.78332 Vertex 2363 0.410628 -2.20473 2.39557 Vertex 2364 0.0120214 0.315198 -1.06746 Vertex 2365 0.669193 1.05075 0.929479 Vertex 2366 0.436077 -1.03049 0.00417324 Vertex 2367 0.878366 0.219853 0.182538 Vertex 2368 1.28251 0.432486 -2.66873 Vertex 2369 -0.329629 -1.92401 3.00082 Vertex 2370 0.558679 0.0244684 -0.290969 Vertex 2371 0.620062 0.110632 -0.32018 Vertex 2372 0.326909 1.36877 -0.910312 Vertex 2373 0.0135259 3.87202 -0.884251 Vertex 2374 -0.688544 1.04827 0.685164 Vertex 2375 0.394856 -2.25593 2.15481 Vertex 2376 1.51222 1.40664 -1.91571 Vertex 2377 -0.0911348 -1.54472 2.16714 Vertex 2378 -0.544508 -0.553854 1.44782 Vertex 2379 0.582311 -2.81066 2.98729 Vertex 2380 0.434802 0.230786 -0.447103 Vertex 2381 0.196674 -0.271136 1.36968 Vertex 2382 -1.39899 5.77483 -2.70275 Vertex 2383 -0.266828 3.79995 -0.735176 Vertex 2384 -0.806885 -2.99325 -0.17774 Vertex 2385 -0.776919 -1.79525 1.11211 Vertex 2386 0.563659 1.57165 -0.66299 Vertex 2387 0.285943 -2.04924 0.152325 Vertex 2388 -0.0818817 4.11371 -0.904666 Vertex 2389 -0.933643 0.260727 -0.786908 Vertex 2390 0.540779 -2.83005 2.20028 Vertex 2391 -0.529261 -1.71227 2.68787 Vertex 2392 -0.806925 0.91691 0.401418 Vertex 2393 1.10532 1.10047 -1.51069 Vertex 2394 0.227776 2.04307 0.706131 Vertex 2395 -1.50437 5.83994 -2.58507 Vertex 2396 -1.0418 -1.48805 0.243523 Vertex 2397 -0.00867842 0.674788 1.26973 Vertex 2398 -0.300387 1.04628 -0.448833 Vertex 2399 -0.816819 0.775197 0.745651 Vertex 2400 -1.02072 -1.03456 0.0554684 Vertex 2401 -0.0301956 -1.8509 -0.044283 Vertex 2402 0.305902 -2.26116 1.83227 Vertex 2403 -1.01511 0.136795 0.369133 Vertex 2404 1.45391 0.763167 -1.0948 Vertex 2405 -0.891119 -0.190605 0.945949 Vertex 2406 0.433578 0.226668 1.01233 Vertex 2407 0.732352 0.75343 -0.873786 Vertex 2408 0.5386 0.0212995 0.128078 Vertex 2409 1.23605 1.29881 -2.48709 Vertex 2410 -0.832527 -0.589711 -2.62389 Vertex 2411 -0.0420929 2.91991 0.0132014 Vertex 2412 -0.581205 -2.24789 1.64359 Vertex 2413 -0.105285 3.55358 -0.177085 Vertex 2414 -0.00108691 1.32188 -0.626198 Vertex 2415 0.366117 -2.90329 2.33596 Vertex 2416 0.767129 2.11703 0.0797517 Vertex 2417 0.240584 -1.73876 0.509543 Vertex 2418 -0.113553 2.78744 -0.164844 Vertex 2419 -0.10534 2.84935 -0.214234 Vertex 2420 0.314959 -1.32802 0.0278079 Vertex 2421 -1.12182 -0.75862 -2.4885 Vertex 2422 -0.508163 0.168445 -1.69689 Vertex 2423 -0.756734 4.87605 -1.58999 Vertex 2424 0.127968 -0.451309 1.40094 Vertex 2425 -0.349808 -2.29915 1.07398 Vertex 2426 -0.678649 -0.499131 -2.61863 Vertex 2427 0.624456 0.0563104 -0.475468 Vertex 2428 -0.6817 0.131144 -1.92733 Vertex 2429 0.50214 -3.56794 2.51809 Vertex 2430 0.50206 1.69303 -0.700938 Vertex 2431 0.277579 -3.27567 2.3801 Vertex 2432 1.93516 0.622581 -2.66597 Vertex 2433 -0.981294 -0.0171447 -1.82603 Vertex 2434 0.896498 -3.6823 2.47103 Vertex 2435 0.709145 0.0703875 -0.133032 Vertex 2436 0.81536 1.16194 -0.548827 Vertex 2437 -0.985865 -1.97486 0.238438 Vertex 2438 0.906071 -3.51975 2.43466 Vertex 2439 1.39469 1.08531 -2.8024 Vertex 2440 0.749535 0.0722252 -0.526055 Vertex 2441 0.269281 -0.160778 1.25794 Vertex 2442 1.70753 0.421793 -2.73548 Vertex 2443 -0.140721 4.13251 -0.225457 Vertex 2444 1.32372 0.996286 -0.952243 Vertex 2445 0.357005 -1.30008 0.576261 Vertex 2446 0.0959675 3.23432 -0.769533 Vertex 2447 -0.493317 -1.48079 -0.24395 Vertex 2448 0.331265 -0.579423 -0.357507 Vertex 2449 -0.606845 -1.43197 2.46582 Vertex 2450 0.0755155 1.77589 0.756586 Vertex 2451 -0.796325 -1.32143 -2.45021 Vertex 2452 0.418371 -2.88022 3.08054 Vertex 2453 -1.00275 0.576909 0.0894906 Vertex 2454 -0.396086 -2.49484 2.02519 Vertex 2455 0.0670236 3.92746 -0.129444 Vertex 2456 -0.516674 -1.01019 1.48606 Vertex 2457 -0.495081 -1.24243 -2.6803 Vertex 2458 -0.0735899 -2.29361 1.64851 Vertex 2459 -0.757272 1.03817 0.311851 Vertex 2460 0.660591 -3.37535 2.3316 Vertex 2461 -0.261047 -0.531634 1.54871 Vertex 2462 -0.714366 0.344808 -1.09817 Vertex 2463 0.68821 -3.69357 2.56247 Vertex 2464 -1.15848 -0.970589 -2.42861 Vertex 2465 0.734388 -2.44281 -0.385628 Vertex 2466 -0.00510893 2.76632 0.148742 Vertex 2467 -0.873603 -0.48423 -0.822782 Vertex 2468 0.527062 2.8251 -0.482181 Vertex 2469 -0.224801 3.77144 -0.315906 Vertex 2470 2.02724 0.54011 -2.72734 Vertex 2471 0.17564 2.23656 -0.66098 Vertex 2472 0.854381 1.51124 0.377007 Vertex 2473 1.63038 0.654376 -2.59383 Vertex 2474 0.14557 3.86786 -0.12925 Vertex 2475 0.577312 -2.60836 2.38344 Vertex 2476 -0.788562 -1.48546 1.75599 Vertex 2477 0.478662 2.04178 0.640151 Vertex 2478 -0.720445 -0.351922 -1.71202 Vertex 2479 -0.964158 -1.92623 0.488442 Vertex 2480 0.660868 1.37537 -0.566 Vertex 2481 1.39259 0.686291 -2.86444 Vertex 2482 -0.761796 -2.13543 0.371584 Vertex 2483 -0.83611 -0.314982 -2.51591 Vertex 2484 -0.0851263 -0.767075 1.45121 Vertex 2485 0.239419 -1.35503 1.01924 Vertex 2486 0.18118 -2.98369 2.33475 Vertex 2487 -1.09765 -0.144524 -0.22281 Vertex 2488 -0.880437 0.397083 -0.716466 Vertex 2489 -0.10714 -2.08583 1.4121 Vertex 2490 1.11114 0.941578 -0.0220446 Vertex 2491 -0.585462 0.496832 1.13423 Vertex 2492 0.670611 0.989251 0.939127 Vertex 2493 0.405086 -0.209226 0.985714 Vertex 2494 -0.123681 0.388647 -0.913484 Vertex 2495 -0.246934 1.45557 -0.2308 Vertex 2496 -0.234352 1.52559 -0.236416 Vertex 2497 -0.247411 1.51178 -0.160202 Vertex 2498 0.446336 -2.11507 2.67774 Vertex 2499 -0.644415 0.23611 1.16303 Vertex 2500 0.545269 2.64777 -0.485569 Vertex 2501 -0.332854 -1.43222 -0.313661 Vertex 2502 0.0106274 -1.76718 2.96522 Vertex 2503 0.679441 -2.13955 -0.410774 Vertex 2504 0.470256 -0.35583 -0.0758402 Vertex 2505 1.4963 1.24643 -1.78849 Vertex 2506 -0.00284248 4.18921 -0.517854 Vertex 2507 0.220443 1.06946 1.11705 Vertex 2508 0.191359 -2.09827 0.281313 Vertex 2509 -1.1001 -1.13567 -2.47334 Vertex 2510 0.25579 -1.47084 0.84019 Vertex 2511 -0.974106 -2.44636 -0.216435 Vertex 2512 0.0861236 -1.67912 2.83689 Vertex 2513 -0.879696 -1.32554 1.05978 Vertex 2514 -0.100639 3.02673 -0.276646 Vertex 2515 -0.421199 -2.14594 0.371411 Vertex 2516 -0.318045 0.605435 1.20073 Vertex 2517 1.22276 1.19596 -2.62122 Vertex 2518 -0.55385 -2.12848 0.351683 Vertex 2519 -0.804959 -0.129276 -2.42138 Vertex 2520 0.290413 -0.395184 1.24827 Vertex 2521 0.760072 1.69098 -0.353354 Vertex 2522 0.411868 2.53401 -0.636723 Vertex 2523 0.0454851 -0.444001 -0.643623 Vertex 2524 -0.438187 4.11405 -0.524007 Vertex 2525 0.567141 1.64307 -0.620612 Vertex 2526 1.20822 0.475207 -2.66561 Vertex 2527 -0.454603 4.23257 -1.11048 Vertex 2528 0.450775 2.34707 0.546666 Vertex 2529 -0.191419 2.00196 0.096651 Vertex 2530 1.07379 0.258801 -0.435604 Vertex 2531 1.14195 0.970395 -1.85893 Vertex 2532 1.23264 0.684925 -0.603893 Vertex 2533 1.16891 0.209853 -1.05623 Vertex 2534 0.489141 -0.571395 0.789456 Vertex 2535 -0.267897 3.79088 -0.390801 Vertex 2536 -0.104259 -2.13618 0.705379 Vertex 2537 -0.795648 -1.50217 1.45702 Vertex 2538 0.300616 3.25876 -0.67973 Vertex 2539 -0.107929 -2.30635 1.66412 Vertex 2540 0.313423 -2.31692 2.9627 Vertex 2541 -0.862785 -1.45382 -0.0810476 Vertex 2542 -0.226856 -2.17744 1.13092 Vertex 2543 -0.913792 -0.334212 -1.84357 Vertex 2544 -0.33289 4.33981 -0.409295 Vertex 2545 -0.133888 -1.71336 2.99495 Vertex 2546 -0.111617 0.234315 -0.937009 Vertex 2547 0.865469 -3.61147 2.3999 Vertex 2548 -0.154847 3.82095 -0.925674 Vertex 2549 1.03205 0.36676 -0.156673 Vertex 2550 -0.634161 4.41992 -0.765096 Vertex 2551 0.428436 2.30599 0.601376 Vertex 2552 -0.888438 0.249075 -0.923583 Vertex 2553 -0.637932 4.47077 -0.779393 Vertex 2554 -0.892982 4.85381 -1.17315 Vertex 2555 0.279373 0.115557 -0.669118 Vertex 2556 -0.644485 1.03694 -0.256605 Vertex 2557 -1.02706 0.140443 -0.638202 Vertex 2558 0.542022 -2.22301 2.93519 Vertex 2559 -0.104718 0.926259 -0.727661 Vertex 2560 -0.717412 1.05297 -0.0011503 Vertex 2561 -0.436015 -0.694768 -0.535122 Vertex 2562 0.350421 -3.06668 2.74192 Vertex 2563 0.0240704 -1.71152 -0.00682384 Vertex 2564 -0.517833 -1.85812 -0.084749 Vertex 2565 0.410032 3.52619 -0.147506 Vertex 2566 -0.828336 -1.12151 -2.7697 Vertex 2567 0.742074 1.85663 -0.334841 Vertex 2568 -1.02513 -0.0181974 -1.59156 Vertex 2569 -0.92189 -0.158611 -2.41686 Vertex 2570 0.585292 0.579341 -0.739362 Vertex 2571 -0.50728 -0.0910174 -0.94768 Vertex 2572 -0.338879 0.0453667 -0.6481 Vertex 2573 -0.655914 -0.449764 1.36517 Vertex 2574 -1.061 -1.21946 0.366114 Vertex 2575 -0.949621 -1.84701 -0.111169 Vertex 2576 -0.53249 -2.06206 0.919542 Vertex 2577 -0.939424 -0.370975 -2.00915 Vertex 2578 0.649629 -2.31638 -0.41448 Vertex 2579 -1.52127 5.58105 -2.64141 Vertex 2580 -0.469002 -0.709332 1.51162 Vertex 2581 1.06297 0.278356 -0.351001 Vertex 2582 1.04597 0.317774 -0.241255 Vertex 2583 -0.23691 -0.0896199 1.56013 Vertex 2584 0.764905 1.72458 0.325047 Vertex 2585 -0.0392433 -2.11356 1.76671 Vertex 2586 1.32192 0.489558 -1.0403 Vertex 2587 -0.902904 -1.65811 -2.61375 Vertex 2588 -0.0088224 0.180358 1.3154 Vertex 2589 0.115813 -2.00456 -0.0379347 Vertex 2590 0.267199 -2.73976 1.53423 Vertex 2591 -0.9277 -1.47547 -2.7072 Vertex 2592 -1.34326 5.14818 -1.84222 Vertex 2593 0.0763073 4.00793 -0.251418 Vertex 2594 0.522046 -2.33312 2.45575 Vertex 2595 0.965232 0.118749 -0.505414 Vertex 2596 -0.547708 -0.788528 1.45033 Vertex 2597 -0.938377 -1.10511 -0.115356 Vertex 2598 2.19099 0.538284 -2.59837 Vertex 2599 -0.768788 -0.415696 -2.53541 Vertex 2600 1.4388 0.730476 -1.3373 Vertex 2601 -0.0850811 1.14603 -0.636303 Vertex 2602 -0.694121 0.192445 1.11489 Vertex 2603 -1.57093 5.73386 -2.50382 Vertex 2604 0.716197 1.87766 0.352053 Vertex 2605 -0.651654 -2.09539 1.45894 Vertex 2606 0.0796112 0.630772 1.20318 Vertex 2607 -0.0727974 -1.26908 -0.400366 Vertex 2608 0.438233 -0.906699 0.769867 Vertex 2609 0.402393 3.3624 0.0588916 Vertex 2610 1.3269 0.846475 -2.66698 Vertex 2611 0.465593 -0.244814 0.829711 Vertex 2612 -0.807064 -1.72199 0.980798 Vertex 2613 -0.247265 -1.34266 2.55308 Vertex 2614 -0.545123 -0.563553 -2.62985 Vertex 2615 -0.64305 -1.83944 2.39406 Vertex 2616 -0.158536 -2.06435 0.894242 Vertex 2617 0.499735 -0.844696 0.274539 Vertex 2618 -0.520517 -1.51141 -2.66863 Vertex 2619 0.510587 -2.77551 2.19429 Vertex 2620 -0.112741 -1.8762 1.04394 Vertex 2621 0.723033 0.166556 -0.735686 Vertex 2622 0.112863 3.76283 -0.760515 Vertex 2623 -0.482411 -1.20937 1.79318 Vertex 2624 -0.545873 -1.35432 -0.32247 Vertex 2625 2.11714 0.580777 -2.63345 Vertex 2626 -0.912695 -0.502919 0.0814759 Vertex 2627 -0.441382 0.0113402 -1.30947 Vertex 2628 0.965093 0.77898 -1.57159 Vertex 2629 0.819978 0.570599 -1.12689 Vertex 2630 0.174645 2.94 -0.750821 Vertex 2631 0.966498 0.91502 -1.44441 Vertex 2632 0.939268 0.955941 -1.34357 Vertex 2633 0.728424 2.36197 -0.10548 Vertex 2634 -0.117076 -1.92613 1.24067 Vertex 2635 -0.757839 -0.352477 -1.67196 Vertex 2636 0.546933 -3.08602 2.89043 Vertex 2637 -0.297857 0.367759 1.38356 Vertex 2638 0.513489 1.70373 0.797314 Vertex 2639 -0.634474 -0.892547 -2.57345 Vertex 2640 0.00320915 -2.94154 2.34339 Vertex 2641 0.805057 0.501629 -1.16877 Vertex 2642 -0.958986 4.72922 -1.6915 Vertex 2643 0.255093 -3.15099 2.34295 Vertex 2644 -0.860222 -1.48416 -2.6892 Vertex 2645 0.675851 1.93837 -0.398603 Vertex 2646 -0.523537 -0.207032 -1.78442 Vertex 2647 0.769386 2.05644 -0.0933815 Vertex 2648 0.652844 -3.61689 2.3456 Vertex 2649 -0.581052 -0.62742 -2.68565 Vertex 2650 -0.290118 -2.85352 1.85089 Vertex 2651 -0.0282433 0.482891 1.27394 Vertex 2652 -1.10549 -1.73701 0.354086 Vertex 2653 -0.0631842 -1.75855 1.38188 Vertex 2654 -0.575538 -1.21581 1.7259 Vertex 2655 -0.918274 0.143886 0.573274 Vertex 2656 0.512369 -2.87027 2.27528 Vertex 2657 -0.0911306 2.71737 -0.335923 Vertex 2658 2.04195 0.578228 -2.75529 Vertex 2659 0.508158 -0.625264 0.0159223 Vertex 2660 0.688223 1.75688 -0.413557 Vertex 2661 -0.264942 1.35161 -0.29965 Vertex 2662 -0.278389 -2.47771 1.45889 Vertex 2663 -0.274907 1.22154 -0.392065 Vertex 2664 0.325553 -3.3913 1.84837 Vertex 2665 -1.06291 -0.772969 0.344564 Vertex 2666 0.198559 -2.75487 3.09213 Vertex 2667 -0.308188 -0.989506 -0.536089 Vertex 2668 1.46148 1.22371 -1.67577 Vertex 2669 -0.113705 -1.34096 -0.359555 Vertex 2670 1.38925 1.26749 -2.59407 Vertex 2671 -0.465535 -0.0613543 -0.860152 Vertex 2672 -0.437731 -0.0304978 -0.786282 Vertex 2673 -0.230541 -1.39509 1.73616 Vertex 2674 -0.498864 0.0274711 -1.78715 Vertex 2675 0.784647 1.64931 0.473435 Vertex 2676 -0.828793 -1.9923 0.655964 Vertex 2677 -1.0987 -1.88129 0.182759 Vertex 2678 -1.10801 -1.81996 0.10259 Vertex 2679 0.223161 -3.17024 2.35455 Vertex 2680 -0.952867 -1.40684 -2.69154 Vertex 2681 0.16909 -1.83886 0.767169 Vertex 2682 -0.502594 0.502912 1.15041 Vertex 2683 -0.831183 5.05012 -1.41879 Vertex 2684 -0.813021 5.02553 -1.36429 Vertex 2685 -0.779477 0.727919 0.895086 Vertex 2686 -0.872721 0.136742 0.661234 Vertex 2687 -1.05102 0.374122 0.106352 Vertex 2688 0.927198 0.432839 -1.35644 Vertex 2689 0.338359 -1.35156 0.600722 Vertex 2690 -0.507219 4.34065 -1.32007 Vertex 2691 -0.8543 4.62084 -1.48007 Vertex 2692 0.268646 -1.94423 2.75512 Vertex 2693 0.0903275 3.60495 -0.889834 Vertex 2694 -0.544749 -1.42321 2.54496 Vertex 2695 -0.228375 0.842805 -0.682689 Vertex 2696 0.909257 0.318332 0.182759 Vertex 2697 0.0774465 -1.67168 2.5732 Vertex 2698 -0.932541 0.601848 -0.289544 Vertex 2699 0.147869 1.17741 -0.785043 Vertex 2700 -1.0853 -1.04783 0.406261 Vertex 2701 -0.210495 -1.42537 1.84821 Vertex 2702 -0.632709 -1.77005 2.4631 Vertex 2703 -0.745807 0.235167 1.03502 Vertex 2704 -0.791158 0.239095 0.959698 Vertex 2705 0.826747 1.02265 0.640352 Vertex 2706 0.418264 -1.02001 0.712508 Vertex 2707 0.314748 -3.5126 1.63809 Vertex 2708 1.67252 0.477761 -2.80329 Vertex 2709 0.014896 3.49886 -0.872192 Vertex 2710 -1.02738 -1.55056 -2.60848 Vertex 2711 1.88175 0.69287 -2.56955 Vertex 2712 -0.0116684 -2.41621 1.58764 Vertex 2713 -0.592862 -0.201337 -0.950917 Vertex 2714 0.173369 -0.113749 -0.616762 Vertex 2715 0.667508 -3.49451 2.78709 Vertex 2716 0.30721 3.56097 -0.541881 Vertex 2717 1.46684 1.10442 -1.61446 Vertex 2718 2.15809 0.675437 -2.70621 Vertex 2719 -1.08887 -0.227573 -0.669436 Vertex 2720 0.00923324 -3.15037 1.97457 Vertex 2721 0.473804 -2.99548 2.99164 Vertex 2722 -0.634046 -1.00862 -2.72463 Vertex 2723 0.0886017 -2.11332 0.152472 Vertex 2724 0.223517 -1.52114 0.0649974 Vertex 2725 1.90248 0.689703 -2.81579 Vertex 2726 0.0135595 3.42572 -0.807976 Vertex 2727 0.753006 0.617222 -0.970265 Vertex 2728 -1.02769 0.515753 0.0630133 Vertex 2729 0.471086 -2.51774 2.18263 Vertex 2730 -0.00646211 1.43958 0.930729 Vertex 2731 -0.564866 -2.02433 2.3739 Vertex 2732 -0.485428 0.185215 -1.15693 Vertex 2733 -0.898328 4.96972 -1.24513 Vertex 2734 -1.39471 -1.33677 -2.6329 Vertex 2735 -0.12917 -1.54075 1.83568 Vertex 2736 0.183069 2.81206 0.284517 Vertex 2737 0.418964 1.2779 -0.824089 Vertex 2738 -0.432773 0.524064 -0.885335 Vertex 2739 -0.365344 0.686813 -0.747135 Vertex 2740 -0.110798 0.032995 -0.865417 Vertex 2741 0.489098 0.330557 1.02524 Vertex 2742 -1.05655 0.271157 0.249346 Vertex 2743 0.540414 -2.07372 -0.319057 Vertex 2744 1.34593 0.684297 -2.59409 Vertex 2745 -0.490725 4.09412 -0.735945 Vertex 2746 0.932577 1.44832 -0.0516662 Vertex 2747 -0.279159 1.3728 -0.238582 Vertex 2748 -1.23924 5.03512 -1.66938 Vertex 2749 1.75702 0.243634 -2.64167 Vertex 2750 1.26661 0.881195 -0.843409 Vertex 2751 -0.351487 -1.18911 1.51376 Vertex 2752 0.306238 -3.03019 1.49548 Vertex 2753 0.679013 2.6188 -0.25424 Vertex 2754 -0.464137 -2.2062 1.05899 Vertex 2755 1.48784 1.42916 -1.99228 Vertex 2756 -0.0801411 3.27852 -0.506498 Vertex 2757 -1.01453 0.281606 0.461382 Vertex 2758 -1.38873 5.69244 -2.57411 Vertex 2759 -0.996119 0.573943 0.292694 Vertex 2760 -0.298914 4.28632 -0.345091 Vertex 2761 -0.189711 3.8062 -0.812588 Vertex 2762 0.281496 1.95803 0.793395 Vertex 2763 -0.00850401 2.1961 0.41756 Vertex 2764 -0.254812 -2.2074 0.496174 Vertex 2765 0.0300963 -1.78745 -0.00625785 Vertex 2766 -0.523721 1.27466 0.112909 Vertex 2767 -0.395899 4.62035 -0.915399 Vertex 2768 -0.808663 0.969807 0.1721 Vertex 2769 0.106752 -1.45534 -0.163391 Vertex 2770 0.532247 -0.265785 0.560775 Vertex 2771 0.20773 -1.39968 1.03911 Vertex 2772 -0.467035 4.12908 -0.937067 Vertex 2773 -0.492905 0.375359 -0.994736 Vertex 2774 -0.933695 -2.90941 -0.171891 Vertex 2775 0.335046 2.15924 -0.718928 Vertex 2776 -0.670066 -1.18711 -2.78179 Vertex 2777 -1.03054 -0.43137 -2.27401 Vertex 2778 -1.04726 -0.514863 -2.30363 Vertex 2779 1.3128 0.504302 -1.41282 Vertex 2780 -0.181801 3.56089 -0.361307 Vertex 2781 -0.137971 4.30897 -0.560109 Vertex 2782 -0.857845 -1.2963 -0.149451 Vertex 2783 1.157 0.957087 -0.42568 Vertex 2784 -1.20577 -1.09085 -2.43959 Vertex 2785 0.0982989 -0.61464 -0.560539 Vertex 2786 -0.179957 -0.13667 -0.697434 Vertex 2787 1.31903 0.775762 -2.64804 Vertex 2788 -0.636387 -0.571453 -0.404309 Vertex 2789 0.753537 2.23272 -0.0940485 Vertex 2790 -1.01983 -2.54138 -0.0989734 Vertex 2791 0.148408 -3.09573 2.0935 Vertex 2792 -0.62696 -0.819944 1.38741 Vertex 2793 1.88266 0.337806 -2.47764 Vertex 2794 -0.385492 4.57016 -0.786853 Vertex 2795 0.137378 2.77433 -0.634957 Vertex 2796 0.0593525 -2.01554 3.01752 Vertex 2797 0.498419 -0.296775 0.779801 Vertex 2798 1.68385 0.409114 -2.80132 Vertex 2799 -0.955257 -0.650536 0.964319 Vertex 2800 0.108381 -2.81612 1.60594 Vertex 2801 0.0775182 -2.76211 1.59086 Vertex 2802 0.478356 -0.0609234 0.629535 Vertex 2803 -0.848137 4.65725 -1.60575 Vertex 2804 -1.04447 -1.18338 0.716063 Vertex 2805 0.315813 -1.98967 2.70022 Vertex 2806 0.423682 -2.52226 2.94825 Vertex 2807 -0.0627155 -2.56069 1.53171 Vertex 2808 0.521097 -0.13162 0.204607 Vertex 2809 -0.607746 -0.817608 -0.435748 Vertex 2810 -0.40563 0.43897 -0.914121 Vertex 2811 -1.10064 4.84007 -1.74924 Vertex 2812 0.822421 -3.20324 2.56163 Vertex 2813 -0.325763 -0.407341 1.5765 Vertex 2814 0.879703 0.159292 -0.911444 Vertex 2815 1.34093 1.36599 -2.29972 Vertex 2816 -0.113484 -2.522 2.91212 Vertex 2817 0.0869475 -1.69313 2.72515 Vertex 2818 -0.145486 2.25164 0.0572877 Vertex 2819 0.622538 1.21866 -0.619894 Vertex 2820 -0.305207 1.20461 0.943251 Vertex 2821 -0.659106 -1.50365 2.33364 Vertex 2822 0.306417 -0.341308 -0.401544 Vertex 2823 0.631964 -2.6303 2.82674 Vertex 2824 0.427921 -2.50693 2.06593 Vertex 2825 -0.799266 -1.40847 -2.48867 Vertex 2826 -0.19884 -2.21868 1.28357 Vertex 2827 0.23475 -1.64743 0.322932 Vertex 2828 -0.308707 1.58561 0.614898 Vertex 2829 -0.912087 -0.307434 -0.0392674 Vertex 2830 -0.800277 -1.13252 -2.45451 Vertex 2831 0.685359 2.19202 -0.345234 Vertex 2832 0.228646 -2.03464 2.92736 Vertex 2833 0.145662 0.656768 -0.997548 Vertex 2834 0.648719 0.606886 0.889156 Vertex 2835 0.133647 -1.14613 1.21232 Vertex 2836 0.146823 -1.62435 0.0862519 Vertex 2837 0.511518 1.84461 0.680737 Vertex 2838 -0.489884 -0.83861 1.48809 Vertex 2839 -0.275879 1.41182 0.809271 Vertex 2840 -0.211352 -1.39643 2.04004 Vertex 2841 0.194804 -3.25664 1.97164 Vertex 2842 0.161689 -3.24353 1.97164 Vertex 2843 0.50916 0.127617 0.779802 Vertex 2844 0.308776 -0.984368 1.07849 Vertex 2845 -1.08389 -0.0456463 -0.566825 Vertex 2846 -0.557943 0.208316 1.21339 Vertex 2847 0.812913 0.954265 -0.8627 Vertex 2848 1.20976 0.33245 -2.75742 Vertex 2849 0.22107 0.159064 -0.852079 Vertex 2850 0.535217 -0.406644 0.635384 Vertex 2851 0.194821 3.47868 -0.766591 Vertex 2852 -0.420173 -2.37431 1.477 Vertex 2853 -0.689256 4.44317 -0.924054 Vertex 2854 -0.154336 -2.11619 1.32935 Vertex 2855 0.370634 -1.26175 0.369509 Vertex 2856 0.352875 -1.2592 0.270685 Vertex 2857 -0.744907 -1.37599 1.7834 Vertex 2858 -0.673455 0.0519289 -2.08217 Vertex 2859 0.648123 0.096713 0.420781 Vertex 2860 -0.168434 1.38221 0.877768 Vertex 2861 -0.247932 0.0595835 1.54715 Vertex 2862 1.39241 1.29928 -2.53082 Vertex 2863 -0.958742 -0.332412 -1.13517 Vertex 2864 1.01622 0.604382 -1.57258 Vertex 2865 0.0835049 -2.27483 3.02098 Vertex 2866 0.0250093 -2.46639 1.55507 Vertex 2867 0.450988 0.369204 1.07764 Vertex 2868 -0.491852 -1.443 2.67696 Vertex 2869 -0.486312 -1.92226 2.71211 Vertex 2870 1.79594 0.265573 -2.47392 Vertex 2871 -0.0430157 1.82562 0.649092 Vertex 2872 0.516811 -0.479319 0.699913 Vertex 2873 0.754927 -3.18213 2.27206 Vertex 2874 0.244623 1.8751 0.815935 Vertex 2875 -0.382194 4.58256 -1.13232 Vertex 2876 0.996498 0.393555 -0.0369179 Vertex 2877 0.536174 -3.48587 2.33433 Vertex 2878 0.384132 -0.673342 1.01301 Vertex 2879 0.490222 -0.308908 -0.225614 Vertex 2880 0.218963 2.58117 -0.753645 Vertex 2881 -0.233461 -1.19992 1.44908 Vertex 2882 -0.694335 -1.11733 1.33308 Vertex 2883 -0.83235 -0.368821 -1.76202 Vertex 2884 1.27581 1.40505 -2.07232 Vertex 2885 -0.401053 1.50717 0.576947 Vertex 2886 -1.04281 0.343971 0.222875 Vertex 2887 0.325001 1.31033 1.02793 Vertex 2888 -0.915373 -0.315308 -2.49608 Vertex 2889 -0.950774 -0.326069 -2.41432 Vertex 2890 -0.539054 4.2816 -0.61013 Vertex 2891 0.42165 -2.93474 1.96961 Vertex 2892 0.83501 -2.36356 -0.602083 Vertex 2893 -0.0218019 0.29669 -1.04235 Vertex 2894 -0.818257 -1.6159 1.16707 Vertex 2895 -1.0074 -1.26532 -2.50424 Vertex 2896 -0.468766 0.0119746 -1.19231 Vertex 2897 0.345443 2.98079 0.352834 Vertex 2898 -1.41792 5.1998 -2.10484 Vertex 2899 0.435214 3.48552 -0.187017 Vertex 2900 0.911197 1.13431 -0.602888 Vertex 2901 -0.394202 1.43822 0.704124 Vertex 2902 -0.0755555 -1.45132 1.29719 Vertex 2903 0.710069 -3.7147 2.3637 Vertex 2904 -0.595103 -0.227347 1.34894 Vertex 2905 0.167927 -0.33659 1.39116 Vertex 2906 0.323022 3.3856 0.104755 Vertex 2907 -0.116255 2.63878 -0.0460467 Vertex 2908 -1.05666 -2.46622 -0.276143 Vertex 2909 0.252602 -0.46216 1.31369 Vertex 2910 0.0179965 -0.450673 1.41921 Vertex 2911 -0.059255 -2.23127 1.65792 Vertex 2912 1.17011 0.336897 -2.78114 Vertex 2913 0.460808 -3.4929 2.32309 Vertex 2914 0.559735 -0.526299 0.318829 Vertex 2915 0.0178218 0.702944 -0.901192 Vertex 2916 0.293028 2.6635 0.539391 Vertex 2917 -0.0681692 1.98416 0.462235 Vertex 2918 -0.695491 4.81909 -1.01176 Vertex 2919 0.0230105 3.28381 -0.672652 Vertex 2920 -0.0901881 2.40315 0.0929617 Vertex 2921 -0.969077 -1.35191 -2.68595 Vertex 2922 -0.973748 -1.89039 0.566697 Vertex 2923 0.870216 0.885229 -1.13827 Vertex 2924 -0.938941 -0.378638 0.330552 Vertex 2925 -0.727547 -1.39663 2.1001 Vertex 2926 -1.00799 -0.675999 0.833331 Vertex 2927 0.268743 0.380376 1.19978 Vertex 2928 0.211135 -1.88104 -0.19728 Vertex 2929 1.82264 1.0218 -2.80021 Vertex 2930 0.075966 2.09544 -0.537727 Vertex 2931 0.203306 2.6716 -0.752359 Vertex 2932 -0.136145 1.55455 0.777298 Vertex 2933 0.275079 -2.11693 -0.22533 Vertex 2934 0.324859 2.4879 0.619293 Vertex 2935 0.0877517 -1.64994 0.0320467 Vertex 2936 0.638184 1.89831 -0.4602 Vertex 2937 -0.847354 4.80744 -1.66934 Vertex 2938 0.717126 -3.01304 2.57295 Vertex 2939 0.530194 -2.83155 3.00129 Vertex 2940 -0.618331 -1.44739 -0.219311 Vertex 2941 0.640547 0.279558 -0.720514 Vertex 2942 0.293496 3.236 0.258732 Vertex 2943 -0.46764 4.20835 -1.03488 Vertex 2944 -0.350963 0.398576 -0.883418 Vertex 2945 1.27711 1.08877 -0.995773 Vertex 2946 0.331663 -1.03245 -0.239481 Vertex 2947 0.434815 -2.16792 2.56209 Vertex 2948 -0.464877 -0.930019 -0.503847 Vertex 2949 -0.0522046 -2.12967 0.0469608 Vertex 2950 1.39039 0.894359 -2.03934 Vertex 2951 -0.949476 -2.01809 -0.213039 Vertex 2952 0.392215 3.06601 -0.601634 Vertex 2953 0.643237 -3.64771 2.59777 Vertex 2954 0.819292 0.513416 -1.26226 Vertex 2955 -0.182211 0.956937 1.11417 Vertex 2956 -1.03649 -2.793 -0.0648763 Vertex 2957 0.837753 0.344795 -1.10732 Vertex 2958 1.13426 0.821857 -1.76412 Vertex 2959 -1.32494 -1.17114 -2.46249 Vertex 2960 0.289882 -3.47065 1.48334 Vertex 2961 -0.577324 0.050915 -1.89385 Vertex 2962 -0.56881 -1.21168 -2.49196 Vertex 2963 -0.86512 -1.49602 -2.36813 Vertex 2964 0.307094 2.29164 0.685742 Vertex 2965 0.69873 0.920082 -0.786113 Vertex 2966 -0.85419 0.447818 -0.692047 Vertex 2967 0.162117 -1.80741 2.79253 Vertex 2968 -0.394438 3.94971 -0.732157 Vertex 2969 0.241541 -3.41035 1.50236 Vertex 2970 -0.70363 0.096713 1.17914 Vertex 2971 0.882181 -3.73301 2.58761 Vertex 2972 -1.0128 -0.292008 -0.330856 Vertex 2973 -0.356139 -2.4516 1.75612 Vertex 2974 0.146631 -2.54677 3.08756 Vertex 2975 -1.24786 -1.31774 -2.66309 Vertex 2976 -0.0609225 -1.69617 1.27822 Vertex 2977 -0.411345 -2.07535 2.77141 Vertex 2978 -0.00603191 -2.12062 1.81436 Vertex 2979 0.809581 1.82047 -0.101151 Vertex 2980 0.0942056 -3.152 1.60003 Vertex 2981 0.526291 -0.0591808 -0.435389 Vertex 2982 -0.264542 -0.611958 1.53836 Vertex 2983 0.564174 -0.401541 0.257327 Vertex 2984 -0.789138 0.0213295 -2.2077 Vertex 2985 0.318723 0.761042 -0.871978 Vertex 2986 0.137891 -2.73794 2.95056 Vertex 2987 -0.376724 1.36738 0.0555813 Vertex 2988 -0.358577 -2.40136 1.46328 Vertex 2989 0.795249 -2.35334 -0.669145 Vertex 2990 -0.738863 -0.335465 -2.49609 Vertex 2991 -0.209138 0.905495 -0.642722 Vertex 2992 0.0819703 3.97357 -0.207096 Vertex 2993 0.217239 2.16972 0.615037 Vertex 2994 1.76282 0.424842 -2.45525 Vertex 2995 -0.756422 -1.77535 -0.0713719 Vertex 2996 1.43991 0.778324 -2.56399 Vertex 2997 1.46843 0.819795 -2.5381 Vertex 2998 0.0553253 -0.883218 1.41601 Vertex 2999 1.30757 1.13471 -2.43195 Vertex 3000 0.0614077 2.98918 -0.572656 Vertex 3001 0.206887 -0.698174 -0.448545 Vertex 3002 -1.07201 0.185785 -0.183011 Vertex 3003 -0.794086 0.404828 -0.831064 Vertex 3004 -0.582725 -1.35212 2.44511 Vertex 3005 0.687903 -3.08589 2.23368 Vertex 3006 -1.22179 -1.29679 -2.46695 Vertex 3007 0.846088 -3.50523 2.82083 Vertex 3008 0.833285 -3.41012 2.81613 Vertex 3009 0.946471 1.48774 0.0859804 Vertex 3010 -1.02305 -0.351795 -0.485594 Vertex 3011 -0.418721 -2.24259 1.16027 Vertex 3012 -0.280107 -2.28027 0.982041 Vertex 3013 0.250506 3.2552 0.294513 Vertex 3014 0.146343 1.51822 -0.898119 Vertex 3015 -0.521871 0.267083 -1.54706 Vertex 3016 0.528401 -3.51844 2.6461 Vertex 3017 -0.302504 4.36705 -0.465483 Vertex 3018 1.44184 0.836365 -1.74436 Vertex 3019 -0.830453 -1.56354 -2.49375 Vertex 3020 -0.553353 -1.30158 2.38124 Vertex 3021 0.552629 3.09712 0.00271233 Vertex 3022 -0.219683 1.43246 0.815448 Vertex 3023 0.360749 2.65384 -0.655743 Vertex 3024 0.102809 -0.884091 -0.485338 Vertex 3025 0.361277 -3.38839 2.27691 Vertex 3026 1.39159 1.0233 -1.04306 Vertex 3027 1.21902 1.24495 -1.90536 Vertex 3028 -1.04531 0.116701 -1.29267 Vertex 3029 -1.05338 -1.29022 0.29023 Vertex 3030 -0.755907 0.384012 -1.53892 Vertex 3031 -0.306342 4.19155 -1.2144 Vertex 3032 0.459843 -3.05732 1.8918 Vertex 3033 -0.00367588 -2.16236 1.74234 Vertex 3034 -0.854526 0.87876 -0.0565119 Vertex 3035 -0.762795 -1.10243 1.21917 Vertex 3036 -0.0137739 -2.127 0.662042 Vertex 3037 -0.725454 -1.92713 1.32357 Vertex 3038 0.031548 -3.00129 1.64157 Vertex 3039 1.21148 1.183 -1.94514 Vertex 3040 -1.07836 -0.696718 -2.37862 Vertex 3041 2.04614 0.769714 -2.57388 Vertex 3042 0.3669 -2.58761 1.64568 Vertex 3043 -0.170694 -2.73013 2.30542 Vertex 3044 -1.59075 5.64813 -2.59961 Vertex 3045 -0.605919 0.344464 -1.33316 Vertex 3046 2.08196 0.686065 -2.56873 Vertex 3047 0.753965 1.92711 -0.254472 Vertex 3048 0.52883 -0.752369 0.263962 Vertex 3049 -0.849358 -1.92517 0.720809 Vertex 3050 0.165925 3.19907 -0.792545 Vertex 3051 -0.0703144 3.12536 -0.444122 Vertex 3052 -1.05875 -1.64452 0.556732 Vertex 3053 -0.735804 -2.13162 0.202267 Vertex 3054 0.385088 1.14782 -0.822811 Vertex 3055 0.00158264 -1.97918 1.82532 Vertex 3056 -0.422899 -1.21958 -0.431735 Vertex 3057 -0.375416 -1.16567 -0.469994 Vertex 3058 0.823631 1.53079 -0.155326 Vertex 3059 -0.733188 -1.34979 1.50687 Vertex 3060 -1.00497 0.447644 -0.196361 Vertex 3061 -1.0213 0.468095 -0.106469 Vertex 3062 -0.238124 -1.39654 2.69113 Vertex 3063 -1.01118 -0.0875791 -1.59156 Vertex 3064 0.902077 -3.67372 2.61152 Vertex 3065 -0.127006 2.64579 -0.104766 Vertex 3066 -0.364811 -0.734762 -0.570784 Vertex 3067 -0.64814 -1.00888 1.37553 Vertex 3068 -0.737856 0.377441 -1.30816 Vertex 3069 1.13947 0.87227 -0.116928 Vertex 3070 -0.988515 -0.0656632 -1.72119 Vertex 3071 0.548619 -0.694934 0.201183 Vertex 3072 0.51832 2.46024 -0.542597 Vertex 3073 1.75952 0.841399 -2.82243 Vertex 3074 1.69115 0.841761 -2.82866 Vertex 3075 -0.148849 -1.46015 2.11103 Vertex 3076 -0.0198044 -2.22159 0.491417 Vertex 3077 0.367383 1.62095 0.883791 Vertex 3078 0.535413 -2.14667 -0.217752 Vertex 3079 1.46692 0.964744 -2.22799 Vertex 3080 0.135075 -2.96491 2.65093 Vertex 3081 0.325158 1.81288 -0.838803 Vertex 3082 -1.08323 -0.835096 0.452075 Vertex 3083 -1.11609 4.91669 -1.48275 Vertex 3084 -0.151974 0.0924006 -0.855307 Vertex 3085 -0.0696617 0.206412 1.3394 Vertex 3086 -0.932313 -1.62721 -2.40683 Vertex 3087 0.0705379 1.21784 -0.713822 Vertex 3088 1.59769 0.711634 -2.58383 Vertex 3089 -0.936995 -0.621315 1.01769 Vertex 3090 -0.258786 4.3704 -0.536035 Vertex 3091 -1.04004 0.423518 0.189201 Vertex 3092 0.91563 1.25944 -0.373278 Vertex 3093 -0.102091 2.78449 -0.0771826 Vertex 3094 0.895295 0.482636 -1.36598 Vertex 3095 0.325637 -3.31025 2.29532 Vertex 3096 -0.830413 4.59871 -1.15196 Vertex 3097 -0.96858 -2.93537 -0.0366198 Vertex 3098 0.313629 -3.14197 2.67586 Vertex 3099 0.299633 -3.05633 2.711 Vertex 3100 1.69079 0.63869 -2.56482 Vertex 3101 0.810679 -3.64095 2.74128 Vertex 3102 -0.306687 0.652831 -0.7311 Vertex 3103 0.191896 -0.499528 -0.506355 Vertex 3104 0.561233 -0.501829 0.416162 Vertex 3105 0.502762 -0.104051 0.0424962 Vertex 3106 0.785668 0.571068 -1.078 Vertex 3107 -0.29218 -2.41871 1.25411 Vertex 3108 -0.17663 1.1249 1.00108 Vertex 3109 0.526261 -0.359678 0.68004 Vertex 3110 0.307238 -0.141312 -0.38262 Vertex 3111 0.300304 -1.79532 0.262912 Vertex 3112 0.25929 1.31753 -0.957765 Vertex 3113 0.674582 -2.55905 -0.352261 Vertex 3114 0.250492 3.81291 -0.437354 Vertex 3115 -0.0305419 -2.33506 3.01881 Vertex 3116 -0.89617 -0.333218 -1.29744 Vertex 3117 -0.823837 -0.429549 -1.9237 Vertex 3118 -0.0773245 -2.15183 0.661245 Vertex 3119 0.498976 -3.04958 1.56797 Vertex 3120 -0.958642 -0.394969 -2.46357 Vertex 3121 -0.347573 -2.36587 1.27833 Vertex 3122 0.431859 0.932342 -0.767201 Vertex 3123 -1.00115 -1.36054 -2.50051 Vertex 3124 -0.886787 -0.493936 -0.763847 Vertex 3125 0.637182 -2.88497 2.86628 Vertex 3126 0.81883 0.307989 -1.02615 Vertex 3127 -1.10224 -2.86744 -0.276907 Vertex 3128 1.22298 1.18834 -1.99978 Vertex 3129 -0.641136 1.17833 0.203093 Vertex 3130 -0.980459 4.84479 -1.28407 Vertex 3131 0.431088 3.13272 0.151729 Vertex 3132 -0.192092 -0.419372 1.48996 Vertex 3133 1.72676 0.533318 -2.49956 Vertex 3134 0.348719 3.63508 -0.386033 Vertex 3135 -0.723831 -0.505787 1.33529 Vertex 3136 -0.198432 -2.75726 1.71563 Vertex 3137 0.860233 0.455672 0.361729 Vertex 3138 0.341951 3.47718 0.0398619 Vertex 3139 1.65008 0.582135 -2.59629 Vertex 3140 0.370202 -0.0406756 0.993438 Vertex 3141 0.524982 -2.98394 1.8135 Vertex 3142 0.197126 0.877847 1.15845 Vertex 3143 -0.627898 -1.2444 1.70568 Vertex 3144 1.2701 1.24677 -1.60266 Vertex 3145 1.38038 1.12876 -1.13798 Vertex 3146 -0.978152 -0.387526 -2.38123 Vertex 3147 0.284072 -3.12268 1.99407 Vertex 3148 -1.10827 4.99677 -1.96003 Vertex 3149 -0.810569 -1.47382 1.31828 Vertex 3150 0.165418 3.96589 -0.436258 Vertex 3151 0.164653 -1.96312 0.655344 Vertex 3152 -0.374537 -2.31542 1.20878 Vertex 3153 0.833583 0.724757 -1.04735 Vertex 3154 -0.191774 4.30475 -0.980225 Vertex 3155 -1.06349 0.114819 -0.416938 Vertex 3156 -0.582388 -1.41923 -2.62834 Vertex 3157 -0.825601 0.297731 -1.05086 Vertex 3158 0.186417 -0.000230769 1.31105 Vertex 3159 -0.129713 2.43698 -0.0185835 Vertex 3160 -0.152889 2.50187 -0.212985 Vertex 3161 -0.752405 4.55117 -1.48023 Vertex 3162 -0.682319 -1.16511 1.39802 Vertex 3163 1.1934 1.18557 -1.79097 Vertex 3164 -0.027306 1.90881 -0.476845 Vertex 3165 0.60459 2.56208 0.282099 Vertex 3166 -0.948141 -0.797225 -2.77954 Vertex 3167 -0.163623 2.43764 -0.193314 Vertex 3168 -0.527221 -1.21686 -0.400469 Vertex 3169 -0.0679709 2.6082 -0.399088 Vertex 3170 -0.178473 0.850556 1.20935 Vertex 3171 -0.420905 -0.708503 1.53923 Vertex 3172 -0.693909 -1.6805 2.29895 Vertex 3173 0.310883 -1.92416 0.38123 Vertex 3174 0.569176 -3.09709 2.9316 Vertex 3175 0.107455 1.03327 -0.808884 Vertex 3176 -0.64037 0.340469 -1.09821 Vertex 3177 -0.92266 -2.87286 -0.0223138 Vertex 3178 0.541027 1.91913 -0.559369 Vertex 3179 -1.26378 5.08459 -1.71034 Vertex 3180 -1.03942 0.468489 -0.0242222 Vertex 3181 -0.463168 -2.11998 0.81989 Vertex 3182 -0.239893 1.57579 -0.197217 Vertex 3183 1.93226 0.847618 -2.8018 Vertex 3184 0.975284 1.1063 0.27723 Vertex 3185 0.948551 1.1395 0.341915 Vertex 3186 -0.183693 4.38006 -0.695113 Vertex 3187 0.601544 2.92261 0.0251736 Vertex 3188 -0.140077 -2.17169 0.0786031 Vertex 3189 -1.01226 -0.530343 -2.47017 Vertex 3190 0.3941 -0.831549 -0.224032 Vertex 3191 0.334543 -0.577653 1.15835 Vertex 3192 0.0803256 1.40892 -0.724006 Vertex 3193 0.478373 -0.195629 -0.156154 Vertex 3194 -0.169769 3.89519 -0.207447 Vertex 3195 0.490331 -2.16347 2.72152 Vertex 3196 -1.39784 -1.21347 -2.54681 Vertex 3197 -0.109525 1.93362 -0.36011 Vertex 3198 1.19915 0.617152 -1.67703 Vertex 3199 -1.03552 0.287215 0.381064 Vertex 3200 -0.196197 -2.47158 2.57775 Vertex 3201 -0.0851794 -0.580845 -0.651256 Vertex 3202 0.817077 -3.37403 2.86563 Vertex 3203 -0.91275 -1.5405 0.960225 Vertex 3204 -0.155369 -1.49777 -0.24206 Vertex 3205 -0.051981 2.04557 0.443278 Vertex 3206 0.543589 2.19708 0.513069 Vertex 3207 0.970865 0.756783 0.341405 Vertex 3208 -0.599396 -1.518 2.47326 Vertex 3209 -0.455038 4.25226 -0.517195 Vertex 3210 1.71591 0.866414 -2.48296 Vertex 3211 -1.04174 0.209714 0.341749 Vertex 3212 -0.339429 -1.99184 2.90136 Vertex 3213 0.0228952 -2.82016 2.73224 Vertex 3214 0.292218 -1.28058 -0.110559 Vertex 3215 -0.749442 -1.823 1.04729 Vertex 3216 0.209499 -0.940152 -0.391504 Vertex 3217 0.603255 1.89121 0.606903 Vertex 3218 -0.0757285 2.32965 0.20292 Vertex 3219 0.0932394 0.453012 -1.07722 Vertex 3220 -1.06262 4.83175 -1.83482 Vertex 3221 1.59258 0.578645 -2.70789 Vertex 3222 -0.989671 -0.722083 0.133521 Vertex 3223 -0.169213 -1.46795 2.75732 Vertex 3224 -0.349563 1.52246 0.649433 Vertex 3225 -0.044578 1.60011 0.806853 Vertex 3226 -0.683786 -1.29906 2.0331 Vertex 3227 -0.736548 0.846927 0.854117 Vertex 3228 -0.968969 -0.639313 -2.23268 Vertex 3229 0.0345429 -1.86336 2.99856 Vertex 3230 1.07466 0.161452 -0.825595 Vertex 3231 -0.134398 1.99949 -0.290917 Vertex 3232 -0.0515845 -2.10684 0.701536 Vertex 3233 0.19296 1.43481 -0.928843 Vertex 3234 -0.545067 -1.75256 -0.112606 Vertex 3235 0.615122 1.78269 -0.497799 Vertex 3236 -0.236023 4.42999 -0.709751 Vertex 3237 -1.05786 -0.3711 -0.635199 Vertex 3238 -0.00426545 0.556806 -0.973563 Vertex 3239 1.24627 0.663876 -2.82247 Vertex 3240 0.688979 -3.01497 2.26853 Vertex 3241 0.187814 -2.63189 3.09552 Vertex 3242 0.484557 -0.293956 -0.0351051 Vertex 3243 1.86208 0.969712 -2.79485 Vertex 3244 -0.528135 -0.356837 1.41525 Vertex 3245 0.255314 -1.55414 0.461054 Vertex 3246 -1.08145 -1.82322 0.360931 Vertex 3247 -1.05944 -1.80922 0.423756 Vertex 3248 -1.33655 5.0928 -1.89076 Vertex 3249 0.904333 -3.70489 2.50824 Vertex 3250 -0.306001 4.43583 -1.09582 Vertex 3251 -0.997455 0.335811 -0.397936 Vertex 3252 1.13135 1.05543 -0.92438 Vertex 3253 0.694224 1.41415 -0.534446 Vertex 3254 0.0190784 4.15893 -0.587385 Vertex 3255 -1.09086 -0.236608 -0.505683 Vertex 3256 -0.176977 -2.20427 0.58107 Vertex 3257 0.0144825 1.06494 1.19234 Vertex 3258 -0.992032 -1.49563 0.794329 Vertex 3259 0.335966 -1.99467 -0.320665 Vertex 3260 0.911913 1.53148 0.150412 Vertex 3261 0.334439 -1.33952 0.371712 Vertex 3262 -1.38096 5.51326 -2.13826 Vertex 3263 -0.597461 0.785071 -0.66752 Vertex 3264 0.436464 -1.95099 -0.0895369 Vertex 3265 -0.700015 0.834339 -0.523919 Vertex 3266 -0.27087 3.94598 -0.889491 Vertex 3267 -0.730222 -2.15439 0.331584 Vertex 3268 -0.873091 0.515753 0.840445 Vertex 3269 0.656677 -3.16964 2.17226 Vertex 3270 -0.997024 -1.83497 0.60963 Vertex 3271 0.775885 1.60608 -0.338244 Vertex 3272 -0.334068 -2.15536 0.373919 Vertex 3273 1.10864 1.119 -0.365905 Vertex 3274 -0.343961 -1.28261 -0.421053 Vertex 3275 0.0396216 -1.86941 0.889803 Vertex 3276 -0.62895 -0.929047 -2.63115 Vertex 3277 -1.18186 -2.60243 -0.251098 Vertex 3278 0.171652 -1.7769 2.62671 Vertex 3279 -1.11235 -2.83663 -0.323711 Vertex 3280 -1.20199 5.36729 -1.91357 Vertex 3281 -0.946883 -0.179963 -2.34531 Vertex 3282 0.63824 2.81778 -0.0257894 Vertex 3283 0.739912 2.04517 -0.233713 Vertex 3284 0.832699 1.39513 0.550497 Vertex 3285 -0.627738 4.49565 -1.40619 Vertex 3286 -0.425417 -0.01901 -1.59654 Vertex 3287 0.898326 0.879101 -1.33734 Vertex 3288 0.178407 -1.47473 1.01862 Vertex 3289 -0.209372 3.9281 -0.249457 Vertex 3290 0.403843 1.05557 1.11964 Vertex 3291 1.83246 0.631484 -2.77493 Vertex 3292 -1.02109 -1.83442 0.480643 Vertex 3293 -0.526909 -0.421234 1.43422 Vertex 3294 0.726491 -2.16187 -0.401513 Vertex 3295 0.544659 -0.605182 0.0716914 Vertex 3296 0.21557 3.20553 0.289618 Vertex 3297 -0.478149 0.125334 -1.10794 Vertex 3298 0.528713 -0.677816 0.0445056 Vertex 3299 -1.39422 5.65963 -2.71758 Vertex 3300 -1.07139 -1.10531 0.611764 Vertex 3301 -0.436801 -0.750947 -0.534425 Vertex 3302 -0.354018 -0.645942 1.56541 Vertex 3303 0.132265 3.05055 -0.714263 Vertex 3304 -0.879585 -0.69604 -2.20746 Vertex 3305 0.208581 2.70619 0.378218 Vertex 3306 0.322862 -2.06838 2.82961 Vertex 3307 0.0669527 -0.596945 1.41438 Vertex 3308 -0.626186 4.42717 -1.32899 Vertex 3309 0.303026 2.92211 0.459027 Vertex 3310 1.06388 1.11187 0.0188301 Vertex 3311 1.47141 0.817658 -1.11944 Vertex 3312 0.647952 -2.54281 2.97358 Vertex 3313 -0.101024 -1.53831 -0.194487 Vertex 3314 -0.425696 -0.122888 -1.50883 Vertex 3315 -0.224591 1.63626 -0.195263 Vertex 3316 0.356433 -2.5986 2.98861 Vertex 3317 -0.44772 1.44604 0.351697 Vertex 3318 -0.956428 -1.33311 -0.0442103 Vertex 3319 -0.786512 -1.06171 -2.43589 Vertex 3320 0.370755 -2.37231 2.95184 Vertex 3321 -0.309756 3.99338 -0.358216 Vertex 3322 -0.341177 3.95948 -0.435561 Vertex 3323 -0.0564807 2.22353 0.314326 Vertex 3324 -1.05064 -0.661644 0.658629 Vertex 3325 -0.261443 -0.0152074 -0.650047 Vertex 3326 0.443098 -0.854166 0.789624 Vertex 3327 0.277598 -3.17807 1.95601 Vertex 3328 -0.110037 2.16252 -0.331241 Vertex 3329 -0.552058 4.57567 -0.675804 Vertex 3330 -0.376512 -0.778281 1.54021 Vertex 3331 0.683426 -3.01695 2.75206 Vertex 3332 0.674255 -2.97447 2.68211 Vertex 3333 -1.18878 4.95605 -1.98557 Vertex 3334 -0.866946 -0.522685 -2.59402 Vertex 3335 0.807533 -3.22622 2.36807 Vertex 3336 0.364621 -3.46968 1.40966 Vertex 3337 1.30118 1.43798 -1.99583 Vertex 3338 0.383567 2.81246 -0.630833 Vertex 3339 0.845483 -3.27214 2.52417 Vertex 3340 1.32417 0.648767 -2.59828 Vertex 3341 -1.07027 -2.14571 -0.306965 Vertex 3342 0.505394 1.11456 -0.715616 Vertex 3343 -0.16191 -1.75202 -0.12738 Vertex 3344 -0.391104 -2.34641 1.41193 Vertex 3345 0.448516 0.320181 -0.534987 Vertex 3346 0.858407 0.963261 -0.894581 Vertex 3347 -0.715133 4.93095 -1.38357 Vertex 3348 -0.599088 1.17555 0.0224312 Vertex 3349 -0.000753706 -2.1924 0.21508 Vertex 3350 -0.739847 -1.92469 1.55512 Vertex 3351 -0.243397 4.43628 -0.952354 Vertex 3352 -0.0185534 -2.56083 3.15159 Vertex 3353 -0.819049 -0.201321 -2.45469 Vertex 3354 -0.270132 -0.852274 1.48952 Vertex 3355 0.528115 -2.37223 2.36681 Vertex 3356 0.304667 2.73985 0.519819 Vertex 3357 -1.02012 4.77378 -1.64241 Vertex 3358 -0.235213 4.28476 -1.04822 Vertex 3359 2.1051 0.726394 -2.77662 Vertex 3360 -0.977608 -0.970446 0.00552919 Vertex 3361 0.732098 1.67166 0.570983 Vertex 3362 1.12592 0.396698 -1.45834 Vertex 3363 0.0773314 0.474526 1.21643 Vertex 3364 0.172239 1.51624 -0.92858 Vertex 3365 -0.885503 -2.03452 0.281671 Vertex 3366 -0.731251 -2.08022 0.0994277 Vertex 3367 -0.954453 -2.37142 -0.203704 Vertex 3368 -0.920213 5.07442 -1.39514 Vertex 3369 0.199486 0.607664 -0.971012 Vertex 3370 0.426232 -2.11437 -0.134578 Vertex 3371 -0.610546 0.0396555 -1.99327 Vertex 3372 -0.544022 -1.1664 1.5816 Vertex 3373 -0.89143 -0.874496 -2.79586 Vertex 3374 -0.53591 0.021779 -1.83554 Vertex 3375 1.10851 1.09603 -0.261364 Vertex 3376 -0.496643 -0.106918 -1.82879 Vertex 3377 -1.07575 0.231439 -0.014603 Vertex 3378 -1.06289 5.14376 -1.50838 Vertex 3379 -0.62335 4.28899 -0.945619 Vertex 3380 0.378473 -1.07257 -0.105139 Vertex 3381 -0.553477 -2.29126 1.58651 Vertex 3382 0.543433 1.49829 -0.707158 Vertex 3383 -0.822269 -0.730031 -2.73995 Vertex 3384 1.32225 1.42007 -1.88984 Vertex 3385 0.550951 -3.59822 2.58183 Vertex 3386 1.2217 0.58832 -2.82534 Vertex 3387 0.249096 -2.15552 2.09635 Vertex 3388 -1.00685 -1.56467 0.103341 Vertex 3389 -0.562548 4.21051 -0.777035 Vertex 3390 0.974727 1.20538 -0.443233 Vertex 3391 0.0998528 1.14579 1.11414 Vertex 3392 -0.594288 0.424929 -0.996851 Vertex 3393 0.363299 0.498014 -0.843794 Vertex 3394 -0.582431 -0.85158 1.43288 Vertex 3395 -0.77814 0.936134 -0.139583 Vertex 3396 0.283092 -3.44143 1.77519 Vertex 3397 0.246722 -1.44446 -0.00524949 Vertex 3398 -0.49787 -2.13979 0.185117 Vertex 3399 -0.615271 -2.16531 0.190109 Vertex 3400 -0.396818 -1.24517 2.36243 Vertex 3401 0.262734 1.15885 1.08683 Vertex 3402 -0.89183 -0.0880646 0.213458 Vertex 3403 0.346768 -0.408261 -0.366603 Vertex 3404 0.816929 0.115657 -0.760029 Vertex 3405 0.811655 0.0920487 -0.705487 Vertex 3406 0.503592 -0.504983 -0.000149214 Vertex 3407 -0.145596 -1.99609 0.899554 Vertex 3408 -0.622491 -0.600056 1.39718 Vertex 3409 0.480698 2.25833 0.544953 Vertex 3410 -0.447809 0.598484 -0.844439 Vertex 3411 0.608546 -2.73033 2.77216 Vertex 3412 -0.755299 -0.765108 -2.75422 Vertex 3413 -0.163507 3.51134 -0.545756 Vertex 3414 0.352791 -0.890979 1.01822 Vertex 3415 -0.00893782 -2.04469 3.03583 Vertex 3416 0.741174 -3.33674 2.95318 Vertex 3417 0.591741 -3.62162 2.37895 Vertex 3418 0.286308 1.48872 -0.924366 Vertex 3419 0.206874 -1.80851 0.620193 Vertex 3420 -1.42424 5.23655 -2.26874 Vertex 3421 0.948105 0.112673 -0.427739 Vertex 3422 0.709789 2.03719 0.341799 Vertex 3423 -0.477556 4.16235 -0.570017 Vertex 3424 -0.365949 -2.60244 1.81423 Vertex 3425 -0.987047 -2.85174 -0.0183515 Vertex 3426 -0.0822063 -0.215149 1.42028 Vertex 3427 -0.608822 4.81079 -1.34687 Vertex 3428 0.481847 -3.22785 1.80295 Vertex 3429 0.4433 -3.17992 1.85818 Vertex 3430 0.570979 -2.37755 2.72753 Vertex 3431 -1.01519 -1.82916 0.55192 Vertex 3432 -1.30019 -1.3552 -2.67993 Vertex 3433 0.307798 -1.32012 0.824453 Vertex 3434 -0.200551 -2.08059 1.05893 Vertex 3435 0.504238 -0.894019 0.119806 Vertex 3436 -0.138859 3.55104 -0.632537 Vertex 3437 -0.948056 0.116187 -1.79354 Vertex 3438 -0.398644 -0.0162072 1.43811 Vertex 3439 -0.660682 -2.05693 1.1287 Vertex 3440 0.271457 1.65497 -0.967973 Vertex 3441 -0.844308 -0.454201 -0.631505 Vertex 3442 1.43774 1.06474 -1.16703 Vertex 3443 -0.0507314 -2.57035 2.96872 Vertex 3444 0.790215 -3.2134 2.73464 Vertex 3445 0.089649 1.35549 -0.731503 Vertex 3446 0.154601 -1.17469 -0.340139 Vertex 3447 -0.968178 -0.134093 -2.08495 Vertex 3448 -0.0121776 -2.63754 1.52095 Vertex 3449 0.0313075 1.15086 1.14765 Vertex 3450 0.0474404 1.52579 0.899381 Vertex 3451 -0.066619 4.16755 -0.358136 Vertex 3452 0.552 2.6155 0.323292 Vertex 3453 -0.393127 -2.31651 2.21673 Vertex 3454 0.472965 -2.97421 1.88016 Vertex 3455 -0.921792 -1.99162 0.252241 Vertex 3456 0.983613 1.07713 -0.686523 Vertex 3457 0.662326 1.28464 -0.578472 Vertex 3458 -0.242487 -1.3693 2.63262 Vertex 3459 -0.983851 0.257076 0.550091 Vertex 3460 -0.25371 1.67632 0.106943 Vertex 3461 0.990266 1.06154 -1.30002 Vertex 3462 0.00867558 4.12236 -0.703543 Vertex 3463 0.19535 -2.14092 2.08448 Vertex 3464 0.234945 0.0493733 -0.692831 Vertex 3465 0.236526 -1.69067 0.542357 Vertex 3466 -0.0479713 0.759584 1.29186 Vertex 3467 -0.0313151 -0.70058 -0.605902 Vertex 3468 -1.02996 5.21093 -1.81165 Vertex 3469 0.0513089 -2.13596 1.82048 Vertex 3470 0.270965 -1.51441 0.422072 Vertex 3471 -0.65667 -1.35205 -0.272926 Vertex 3472 -0.835849 0.0483666 0.901951 Vertex 3473 0.15876 0.728089 1.17529 Vertex 3474 0.202505 0.801261 1.17076 Vertex 3475 0.254838 -0.791959 1.24337 Vertex 3476 0.474619 -2.79469 1.96771 Vertex 3477 0.0212006 -2.22962 3.0273 Vertex 3478 0.10304 -1.93021 0.800017 Vertex 3479 -0.498759 4.68079 -1.28282 Vertex 3480 -0.338863 1.59326 0.481198 Vertex 3481 -0.746115 0.360924 -1.23482 Vertex 3482 1.89465 0.266992 -2.50359 Vertex 3483 -0.510737 -0.0507995 -1.83838 Vertex 3484 -0.958216 -1.0861 0.919196 Vertex 3485 0.0185518 0.224931 -1.04128 Vertex 3486 0.704879 0.70195 -0.854084 Vertex 3487 0.0447051 1.38905 0.995069 Vertex 3488 -0.453035 -1.62204 2.81559 Vertex 3489 -0.0650709 -1.51269 2.64424 Vertex 3490 -0.622148 -1.2102 -0.367157 Vertex 3491 0.874976 0.9358 -0.969468 Vertex 3492 -0.0881695 -1.52797 1.32898 Vertex 3493 -0.280746 -1.24497 2.36107 Vertex 3494 -0.78762 4.562 -1.41442 Vertex 3495 1.88266 0.239877 -2.41906 Vertex 3496 0.60146 -2.75554 2.59671 Vertex 3497 -1.32881 -1.11858 -2.60208 Vertex 3498 0.879419 1.49 0.332834 Vertex 3499 0.361713 2.74572 0.493353 Vertex 3500 0.739358 -2.33081 -0.527076 Vertex 3501 -0.194054 3.63759 -0.627405 Vertex 3502 -0.177856 2.2374 -0.144204 Vertex 3503 0.414661 -3.13041 2.3643 Vertex 3504 1.39981 0.618289 -1.22155 Vertex 3505 0.253679 2.14553 -0.783502 Vertex 3506 0.733271 1.83474 0.309865 Vertex 3507 -0.85192 -1.22711 -2.42441 Vertex 3508 -1.25525 5.29832 -2.20553 Vertex 3509 0.568488 0.776545 1.04011 Vertex 3510 -0.615512 -1.37254 -2.63124 Vertex 3511 -0.548349 0.989627 0.946472 Vertex 3512 0.494717 -2.60048 2.19675 Vertex 3513 -0.323299 0.24089 -0.826085 Vertex 3514 0.266094 -1.51063 0.648866 Vertex 3515 0.901172 0.0875547 -0.546597 Vertex 3516 -0.524918 1.17426 -0.147915 Vertex 3517 -0.122594 -1.48213 2.21435 Vertex 3518 0.700439 1.97836 0.40716 Vertex 3519 0.681193 2.03993 0.412474 Vertex 3520 0.598036 -3.37418 1.65004 Vertex 3521 -0.337209 -1.10335 -0.495933 Vertex 3522 0.554648 -2.46318 2.29176 Vertex 3523 -1.06391 -0.192697 -0.804414 Vertex 3524 1.28534 1.25523 -2.67458 Vertex 3525 0.274516 -1.86782 -0.198651 Vertex 3526 0.245577 2.32462 -0.780498 Vertex 3527 -0.76399 -1.00074 1.25372 Vertex 3528 -1.022 0.517377 0.236686 Vertex 3529 -1.01805 4.81919 -1.7894 Vertex 3530 0.363839 2.10406 -0.707083 Vertex 3531 1.3649 0.931421 -2.08909 Vertex 3532 1.31741 0.927507 -2.06047 Vertex 3533 0.373885 -2.20558 2.25587 Vertex 3534 0.000234179 2.13513 -0.471677 Vertex 3535 0.934771 0.914733 -1.38817 Vertex 3536 0.410886 1.91565 0.744487 Vertex 3537 0.361741 0.152434 -0.433477 Vertex 3538 -0.723022 -1.07862 -2.44222 Vertex 3539 -0.459777 -0.0743449 1.38221 Vertex 3540 0.0794514 3.97285 -0.71234 Vertex 3541 0.373101 -0.05419 -0.342064 Vertex 3542 -0.859508 -1.31549 -2.40728 Vertex 3543 -0.957435 -0.105236 -2.22443 Vertex 3544 0.353983 2.19285 0.73852 Vertex 3545 0.414832 3.35319 -0.448381 Vertex 3546 -0.431372 -2.12407 0.225848 Vertex 3547 0.686042 2.47417 -0.29635 Vertex 3548 -1.27644 -1.04692 -2.52453 Vertex 3549 -0.456006 4.06438 -0.842695 Vertex 3550 0.169791 1.65171 0.880499 Vertex 3551 0.02352 -3.19649 1.85029 Vertex 3552 0.026539 3.78589 -0.912349 Vertex 3553 -0.856045 0.262328 0.861621 Vertex 3554 -1.02137 -0.889701 0.791475 Vertex 3555 1.43634 0.920493 -2.87851 Vertex 3556 -0.907342 0.331773 -1.39266 Vertex 3557 -0.590409 -0.428011 -2.32613 Vertex 3558 0.403612 -2.17051 2.44172 Vertex 3559 0.605527 0.441299 0.934274 Vertex 3560 -1.08455 -0.878712 0.404768 Vertex 3561 0.0674238 -1.81729 2.07354 Vertex 3562 1.29667 0.698578 -2.65046 Vertex 3563 -0.642415 -2.15137 1.66842 Vertex 3564 0.468585 -0.380465 -0.12262 Vertex 3565 0.515273 -0.665403 0.620306 Vertex 3566 0.566089 -0.293847 0.298849 Vertex 3567 -0.226529 0.227766 -0.79017 Vertex 3568 -0.869916 -0.403096 -1.05398 Vertex 3569 0.103029 -2.66032 3.0583 Vertex 3570 -1.51265 5.75745 -2.7163 Vertex 3571 -0.821107 -1.55581 -0.0620304 Vertex 3572 0.137776 -3.22883 1.56469 Vertex 3573 0.488305 -2.72519 1.81316 Vertex 3574 -1.0382 -0.667822 0.348212 Vertex 3575 0.734162 0.372768 0.640352 Vertex 3576 1.78964 0.7454 -2.81303 Vertex 3577 -0.729741 1.07395 0.0864723 Vertex 3578 0.474845 -0.177583 0.799787 Vertex 3579 -0.726126 0.985924 0.660908 Vertex 3580 -0.533797 -1.52501 2.69403 Vertex 3581 -0.663068 -0.285328 -0.933373 Vertex 3582 0.735585 0.512277 -0.986388 Vertex 3583 -0.942842 0.709298 0.183047 Vertex 3584 -0.371768 -0.116677 1.55493 Vertex 3585 0.335399 -0.0282491 1.08778 Vertex 3586 -0.793062 0.384608 -1.40052 Vertex 3587 0.921391 0.139929 -0.116842 Vertex 3588 -1.31073 5.41312 -1.94605 Vertex 3589 0.475758 -0.555849 -0.0899891 Vertex 3590 0.795827 1.08945 0.700365 Vertex 3591 0.813568 1.19355 0.656682 Vertex 3592 -0.408326 -2.56022 1.91437 Vertex 3593 -0.395145 -2.50333 1.90066 Vertex 3594 0.131097 2.78198 0.260121 Vertex 3595 0.574687 2.70378 0.237991 Vertex 3596 1.5056 1.31832 -2.4038 Vertex 3597 0.493252 0.208859 0.901524 Vertex 3598 -0.582572 4.81964 -1.22741 Vertex 3599 -0.417595 -1.73605 2.89271 Vertex 3600 0.825884 -3.23632 2.46031 Vertex 3601 0.176219 -1.55202 0.956631 Vertex 3602 -0.582217 4.71167 -0.880125 Vertex 3603 0.196154 -2.15261 1.87849 Vertex 3604 -1.25469 -1.12841 -2.70632 Vertex 3605 -0.477145 -0.0955542 -0.698647 Vertex 3606 -0.99848 -0.0789839 0.116878 Vertex 3607 1.65751 0.437256 -2.62774 Vertex 3608 -0.215858 -1.31111 1.43166 Vertex 3609 1.37235 0.778382 -1.84506 Vertex 3610 -0.345465 -2.25378 2.57801 Vertex 3611 -0.972589 -1.54987 0.0474104 Vertex 3612 0.48857 -2.8374 1.92535 Vertex 3613 -0.980945 -1.07431 -2.76753 Vertex 3614 -0.858001 4.83787 -1.1166 Vertex 3615 -0.530217 -2.10251 1.06821 Vertex 3616 -0.182397 -0.284163 1.48624 Vertex 3617 0.986931 0.168974 -0.276189 Vertex 3618 0.587765 -2.54273 2.72309 Vertex 3619 -0.708417 -1.65272 2.25387 Vertex 3620 0.256071 0.179574 -0.800556 Vertex 3621 0.811617 0.568535 -1.2812 Vertex 3622 0.650171 2.36451 0.32153 Vertex 3623 -0.989023 0.173824 -1.124 Vertex 3624 0.120793 3.66745 0.0648698 Vertex 3625 -0.619696 -1.69521 2.49314 Vertex 3626 -0.952015 5.14652 -1.54802 Vertex 3627 -1.00708 5.13972 -1.50036 Vertex 3628 -0.92139 -0.184851 0.0383291 Vertex 3629 1.22191 0.321997 -1.16142 Vertex 3630 -0.753385 -1.11076 -2.77787 Vertex 3631 0.430201 0.409408 -0.636437 Vertex 3632 -0.977988 -0.389947 0.753771 Vertex 3633 0.366686 -0.0887616 1.03801 Vertex 3634 -0.805132 -2.09644 0.371637 Vertex 3635 1.12428 0.700229 -0.0419727 Vertex 3636 -0.926668 -2.70857 -0.110037 Vertex 3637 -1.34994 -1.14638 -2.5491 Vertex 3638 -0.516804 -0.761518 -0.486079 Vertex 3639 0.0732079 1.70436 -0.615717 Vertex 3640 0.862536 1.44556 0.38129 Vertex 3641 -0.763767 -0.635512 1.31706 Vertex 3642 -0.573346 1.11313 0.83162 Vertex 3643 0.292582 -1.39103 0.249712 Vertex 3644 -0.258487 -2.50792 1.58696 Vertex 3645 1.36078 0.826236 -1.90916 Vertex 3646 -1.33246 -1.174 -2.65277 Vertex 3647 0.621184 -2.85069 2.97504 Vertex 3648 0.0605928 0.402236 1.24004 Vertex 3649 -0.146081 2.14681 -0.269474 Vertex 3650 -1.5047 5.71195 -2.39751 Vertex 3651 -1.31437 -1.4492 -2.56213 Vertex 3652 0.842837 0.158407 0.171804 Vertex 3653 0.0983897 -2.03437 0.0404996 Vertex 3654 0.685261 0.0827455 -0.182652 Vertex 3655 -1.03049 -0.0813923 -1.45211 Vertex 3656 0.453779 -2.8781 1.96992 Vertex 3657 -1.04903 -2.14414 -0.0490415 Vertex 3658 -0.474532 -2.34441 1.61722 Vertex 3659 -0.365753 -0.948109 1.5002 Vertex 3660 -1.4061 -1.28619 -2.52662 Vertex 3661 -0.473895 -1.74503 -0.11052 Vertex 3662 -0.776017 -0.415853 -0.671633 Vertex 3663 0.321333 2.7361 -0.70668 Vertex 3664 0.525645 -0.733008 0.0387924 Vertex 3665 -0.104819 -2.96023 2.15401 Vertex 3666 -0.245005 -2.44972 2.48808 Vertex 3667 -0.149019 2.14703 0.14336 Vertex 3668 0.560714 -3.32508 1.52974 Vertex 3669 0.00569519 -1.84542 1.89633 Vertex 3670 -1.27576 5.20758 -1.74808 Vertex 3671 1.17557 0.315899 -2.7491 Vertex 3672 0.35007 -0.83202 1.04321 Vertex 3673 -0.862246 -0.929841 -2.7943 Vertex 3674 -0.747021 4.54478 -0.983334 Vertex 3675 0.22631 -2.92311 2.80091 Vertex 3676 -0.798073 -0.348949 -1.4867 Vertex 3677 1.5677 1.25498 -2.53274 Vertex 3678 -0.82987 -1.09363 1.14774 Vertex 3679 0.0123866 -1.26433 1.2676 Vertex 3680 -0.239498 -2.29412 2.77244 Vertex 3681 0.548786 2.8533 0.182694 Vertex 3682 0.513369 1.54635 -0.735941 Vertex 3683 1.13425 1.02134 -0.475494 Vertex 3684 0.22129 -2.62406 1.5333 Vertex 3685 1.11362 1.08375 -0.427015 Vertex 3686 0.967921 0.113512 -0.709806 Vertex 3687 0.265128 0.0891944 1.17742 Vertex 3688 0.500032 -2.76495 1.89237 Vertex 3689 0.491517 -0.366634 -0.00185814 Vertex 3690 0.503444 -0.164559 0.633365 Vertex 3691 -0.112598 0.55554 1.35472 Vertex 3692 0.957915 0.17142 -0.156587 Vertex 3693 0.382329 -0.947391 -0.177888 Vertex 3694 -1.09982 -0.191017 -0.590156 Vertex 3695 1.01819 0.823353 0.242782 Vertex 3696 -0.552371 -1.23181 2.22238 Vertex 3697 0.480843 -0.177182 -0.103058 Vertex 3698 -0.386315 0.541551 1.17568 Vertex 3699 1.15863 1.04864 -1.89138 Vertex 3700 0.264026 2.04268 0.748634 Vertex 3701 -1.00853 0.343497 -0.334216 Vertex 3702 -0.24511 -0.333943 1.54227 Vertex 3703 -0.504255 -1.2257 2.25892 Vertex 3704 0.44574 -2.75722 2.25155 Vertex 3705 -0.198126 -2.60013 1.68131 Vertex 3706 -0.133854 -2.4127 1.59517 Vertex 3707 0.244323 -3.20011 2.34868 Vertex 3708 -0.856098 0.576676 -0.540758 Vertex 3709 0.41688 2.06498 -0.650301 Vertex 3710 0.539172 -2.42794 2.18998 Vertex 3711 0.708577 0.871586 -0.816379 Vertex 3712 -0.0555529 -2.89923 2.2204 Vertex 3713 0.653872 0.499639 -0.829733 Vertex 3714 0.448414 0.133661 -0.393847 Vertex 3715 -0.304514 1.32222 -0.101442 Vertex 3716 0.437406 2.64064 0.42229 Vertex 3717 -1.07063 -1.81524 -0.0810235 Vertex 3718 -0.660504 -0.761949 -2.57837 Vertex 3719 -1.08298 -1.55705 0.456361 Vertex 3720 1.37983 0.712769 -1.74365 Vertex 3721 -0.169072 4.22615 -0.367441 Vertex 3722 -0.822923 0.328124 -1.64552 Vertex 3723 0.855368 1.30388 -0.311745 Vertex 3724 -0.999676 -0.135675 0.0175759 Vertex 3725 0.360334 -2.17009 -0.154214 Vertex 3726 -0.286861 -2.51532 2.31652 Vertex 3727 -0.196931 -1.12279 -0.486137 Vertex 3728 -0.0978965 2.28445 0.172513 Vertex 3729 0.507014 -0.235884 0.0369873 Vertex 3730 -0.3201 -2.40422 1.31791 Vertex 3731 -0.874315 -1.02225 -0.20954 Vertex 3732 -0.0177471 2.08413 -0.450863 Vertex 3733 -0.819054 0.289547 0.950914 Vertex 3734 -0.483779 0.233544 -1.36875 Vertex 3735 1.19874 0.337479 -2.68348 Vertex 3736 -0.040224 -1.53065 -0.180738 Vertex 3737 1.34375 0.97847 -2.76308 Vertex 3738 0.738095 0.906151 0.839532 Vertex 3739 0.193676 2.29163 -0.693984 Vertex 3740 -0.49874 0.668819 -0.79873 Vertex 3741 0.710295 -3.19707 3.04321 Vertex 3742 -0.926186 -0.399032 -1.01734 Vertex 3743 -0.0749017 -1.68442 2.96373 Vertex 3744 -0.26878 -2.55047 1.7673 Vertex 3745 -0.44638 -2.40989 2.00804 Vertex 3746 1.0056 1.12788 0.182567 Vertex 3747 -0.489437 -2.1132 0.929142 Vertex 3748 1.41221 0.84869 -2.51853 Vertex 3749 -0.349854 -1.69918 2.92947 Vertex 3750 -0.317361 4.07582 -1.04067 Vertex 3751 -1.00245 -0.909502 -2.77708 Vertex 3752 1.81488 0.294769 -2.69053 Vertex 3753 -0.942819 -0.694117 0.0180279 Vertex 3754 -1.42275 5.66826 -2.41258 Vertex 3755 -0.95264 -2.96213 -0.0615485 Vertex 3756 -0.36708 4.31014 -1.25014 Vertex 3757 -0.229045 -1.68607 2.98367 Vertex 3758 -1.01568 -1.2353 -2.67101 Vertex 3759 0.120163 0.887925 1.15894 Vertex 3760 1.39986 0.704226 -2.59353 Vertex 3761 1.12149 0.453971 -0.315877 Vertex 3762 -0.926392 -0.442073 1.02044 Vertex 3763 -1.1123 4.83912 -1.59425 Vertex 3764 1.37967 0.687231 -1.67645 Vertex 3765 0.419057 -1.14792 0.387299 Vertex 3766 -0.658192 -0.503576 1.36961 Vertex 3767 -1.46461 5.5895 -2.69781 Vertex 3768 -0.890786 0.647345 0.675882 Vertex 3769 0.11326 3.01529 -0.653945 Vertex 3770 -0.631016 -1.8412 -0.0913619 Vertex 3771 -0.458646 0.419608 -0.948989 Vertex 3772 -0.127174 4.31642 -0.62192 Vertex 3773 1.44343 1.09354 -2.84025 Vertex 3774 0.503717 -0.428123 0.779346 Vertex 3775 0.0826487 0.256513 -1.05599 Vertex 3776 0.839894 1.54659 -0.0197606 Vertex 3777 1.33986 0.507393 -1.14291 Vertex 3778 -0.5829 4.23496 -0.857568 Vertex 3779 0.906185 0.192318 0.0526538 Vertex 3780 -1.07844 -0.648492 -2.42504 Vertex 3781 -1.00793 -0.257873 -0.224147 Vertex 3782 0.649373 1.61701 0.749624 Vertex 3783 -0.56354 -2.26843 1.70908 Vertex 3784 0.0225802 -1.75232 2.00452 Vertex 3785 1.50525 0.897588 -1.91817 Vertex 3786 -0.64652 -0.305473 -0.463245 Vertex 3787 0.326427 -2.03661 2.48597 Vertex 3788 0.668427 2.69647 -0.166413 Vertex 3789 0.36519 3.31223 -0.577234 Vertex 3790 -0.584277 1.25253 0.652477 Vertex 3791 -0.624826 4.36555 -1.15691 Vertex 3792 0.881924 0.630883 0.441682 Vertex 3793 0.439896 -1.9088 -0.166538 Vertex 3794 -0.0568989 3.16285 -0.0810499 Vertex 3795 -0.195121 -1.32845 -0.383013 Vertex 3796 -1.24247 -1.1889 -2.4344 Vertex 3797 0.192526 0.443071 -1.02084 Vertex 3798 -0.486671 0.985384 -0.466276 Vertex 3799 0.0631887 3.53834 -0.897112 Vertex 3800 -1.05111 0.19175 -0.397738 Vertex 3801 0.045398 3.22204 -0.65322 Vertex 3802 -0.258516 -2.30967 2.71373 Vertex 3803 -0.372969 1.27251 0.877975 Vertex 3804 -0.294786 1.26272 0.911226 Vertex 3805 -0.420286 1.0522 1.00052 Vertex 3806 1.68715 1.15156 -2.44845 Vertex 3807 0.595619 2.28048 0.443475 Vertex 3808 -1.01768 -0.870111 0.0696357 Vertex 3809 -0.957416 -0.799791 -2.31068 Vertex 3810 2.02694 0.608509 -2.60326 Vertex 3811 -0.207092 -1.59751 -0.182736 Vertex 3812 -0.126665 1.51879 -0.472357 Vertex 3813 -1.25908 -1.02014 -2.62812 Vertex 3814 -1.59454 5.60032 -2.491 Vertex 3815 1.7971 0.740969 -2.5883 Vertex 3816 -0.063743 1.63727 -0.482413 Vertex 3817 -1.31377 5.08765 -2.11597 Vertex 3818 -1.02436 -0.14515 -0.0406243 Vertex 3819 -0.339864 0.728344 1.11949 Vertex 3820 0.365105 -0.596318 1.08809 Vertex 3821 -0.623225 -1.96494 2.29413 Vertex 3822 -0.901518 -0.533483 1.12534 Vertex 3823 1.32985 0.757313 -0.890869 Vertex 3824 -0.33043 1.14484 -0.316623 Vertex 3825 1.23685 0.872664 -1.92279 Vertex 3826 -0.666579 4.73094 -1.49898 Vertex 3827 0.45326 -0.753548 -0.0970553 Vertex 3828 0.206926 2.02474 -0.791832 Vertex 3829 0.390867 -2.75109 3.02603 Vertex 3830 1.45626 1.38 -2.26543 Vertex 3831 0.201154 -3.10834 2.58351 Vertex 3832 0.464908 -0.967637 0.496073 Vertex 3833 -0.182582 -0.0514534 -0.72 Vertex 3834 0.463906 -0.786099 0.712448 Vertex 3835 0.275461 0.72003 -0.909055 Vertex 3836 -0.971888 -1.32089 -2.46084 Vertex 3837 0.130871 1.59155 -0.818013 Vertex 3838 0.223728 0.00123922 1.26263 Vertex 3839 0.101622 3.33937 -0.824937 Vertex 3840 0.57623 2.52792 -0.469764 Vertex 3841 0.802549 1.55689 0.481198 Vertex 3842 0.471914 -0.503745 0.888538 Vertex 3843 -1.09232 0.16396 0.105309 Vertex 3844 -0.851903 4.94396 -1.19579 Vertex 3845 0.0866716 -1.59105 -0.0140947 Vertex 3846 0.685191 0.0712591 -0.52856 Vertex 3847 -0.805564 4.9529 -1.624 Vertex 3848 -0.372229 4.5017 -0.661362 Vertex 3849 0.685895 -3.69103 2.37029 Vertex 3850 -0.0429605 -1.84583 1.67587 Vertex 3851 -1.11391 -2.31006 -0.276651 Vertex 3852 -0.580192 -0.248557 -2.25277 Vertex 3853 -1.06689 -0.671092 0.506434 Vertex 3854 -0.995861 -0.420537 0.67737 Vertex 3855 -0.836624 0.890797 0.28893 Vertex 3856 1.50275 1.02331 -1.71928 Vertex 3857 -0.669752 -1.26198 1.90822 Vertex 3858 0.0598946 1.20254 1.11684 Vertex 3859 0.260552 -1.98906 0.436034 Vertex 3860 0.431311 -0.559295 0.957971 Vertex 3861 -0.712502 -1.01116 -2.79113 Vertex 3862 -1.01728 -2.76117 -0.179496 Vertex 3863 0.435896 3.45301 -0.0918108 Vertex 3864 -0.973878 -0.167383 -1.59144 Vertex 3865 -0.977342 -2.88828 -0.148549 Vertex 3866 -0.894478 -0.0740986 0.55857 Vertex 3867 -0.572635 -0.107769 1.32628 Vertex 3868 0.397459 -2.78423 1.57546 Vertex 3869 1.3876 1.1867 -1.43235 Vertex 3870 -0.139534 -2.23428 0.218592 Vertex 3871 0.0936997 -2.02937 0.700115 Vertex 3872 -0.91762 -0.602736 -2.62499 Vertex 3873 -0.0718251 3.39191 -0.14716 Vertex 3874 -0.527696 -1.22129 1.95027 Vertex 3875 -0.724901 -0.458547 -2.01685 Vertex 3876 -0.524438 -0.148087 -0.770451 Vertex 3877 0.787752 1.42593 -0.391372 Vertex 3878 -1.03373 -1.00108 0.745351 Vertex 3879 0.880078 -3.51779 2.63222 Vertex 3880 -0.377376 3.95566 -0.529708 Vertex 3881 -0.893993 5.11213 -1.58268 Vertex 3882 -1.53976 5.54193 -2.28142 Vertex 3883 0.126758 -1.59465 0.999257 Vertex 3884 -0.560013 -2.09283 0.511621 Vertex 3885 0.381085 -1.94259 -0.239298 Vertex 3886 -1.08157 -1.69523 0.110384 Vertex 3887 -0.0893103 3.87468 -1.01227 Vertex 3888 0.0548434 -2.30967 1.61617 Vertex 3889 0.0716108 -2.3702 1.58995 Vertex 3890 -1.07931 -0.753166 0.500174 Vertex 3891 0.328189 -2.77932 1.49844 Vertex 3892 0.963953 0.361126 0.0429385 Vertex 3893 -0.392427 -2.18036 2.67273 Vertex 3894 -0.102689 -2.51168 3.03015 Vertex 3895 -0.088857 -1.61275 1.61612 Vertex 3896 -0.341458 -1.28045 1.7111 Vertex 3897 -0.00547545 -1.93943 0.855642 Vertex 3898 -0.522895 0.281872 1.20063 Vertex 3899 0.488343 -0.211513 -0.215773 Vertex 3900 0.413745 -0.661414 -0.260248 Vertex 3901 -0.194499 1.51916 -0.379514 Vertex 3902 -1.01856 -1.51002 0.699727 Vertex 3903 -0.196162 -0.210696 1.49523 Vertex 3904 -0.107775 -2.84881 2.33563 Vertex 3905 -0.188649 0.41735 1.43594 Vertex 3906 1.38086 1.41359 -2.20009 Vertex 3907 1.64122 0.55784 -2.84008 Vertex 3908 0.752213 1.37433 0.730578 Vertex 3909 0.0789849 0.076869 1.32859 Vertex 3910 1.44674 0.785812 -1.45228 Vertex 3911 0.750419 1.98234 0.218537 Vertex 3912 -0.203536 0.867569 1.15018 Vertex 3913 1.06318 0.343584 -1.37677 Vertex 3914 -1.00763 0.463962 0.373892 Vertex 3915 -0.372034 0.0515144 1.46064 Vertex 3916 0.671212 2.34078 -0.355517 Vertex 3917 0.268997 -0.132281 -0.440555 Vertex 3918 0.243976 2.49394 0.489571 Vertex 3919 -1.12033 -1.03638 -2.778 Vertex 3920 -1.02336 -0.414737 -0.719304 Vertex 3921 -0.965989 4.69518 -1.47709 Vertex 3922 -0.393741 4.44158 -0.500945 Vertex 3923 0.266238 -2.18582 2.946 Vertex 3924 0.539164 2.48674 0.386672 Vertex 3925 -0.236014 1.36465 -0.356268 Vertex 3926 0.1347 -2.06761 0.0889243 Vertex 3927 -0.168718 2.38665 -0.172556 Vertex 3928 -1.11675 -1.8802 -0.0374167 Vertex 3929 -1.20119 5.1823 -1.6473 Vertex 3930 0.747606 -3.36517 2.18805 Vertex 3931 -0.903155 5.10035 -1.66479 Vertex 3932 -0.129768 -2.67843 1.64656 Vertex 3933 -0.185506 -2.06823 0.987237 Vertex 3934 0.60548 0.0906547 -0.128333 Vertex 3935 0.253514 3.04812 0.368054 Vertex 3936 1.51911 1.01462 -1.8 Vertex 3937 0.81061 0.0748497 -0.144285 Vertex 3938 -0.161618 0.906011 -0.682769 Vertex 3939 0.567969 -2.33736 2.79225 Vertex 3940 -0.743517 -0.382373 -0.752501 Vertex 3941 -1.20145 -1.13338 -2.73086 Vertex 3942 0.18219 -1.80753 2.49286 Vertex 3943 -0.211816 1.33365 -0.433574 Vertex 3944 -0.0233773 -1.73357 1.76125 Vertex 3945 0.114678 2.16347 0.538447 Vertex 3946 -0.101937 1.961 0.412484 Vertex 3947 1.33417 1.03956 -2.70052 Vertex 3948 -0.113275 1.08607 -0.651158 Vertex 3949 0.532785 0.665336 1.06271 Vertex 3950 0.0959205 2.05948 0.585205 Vertex 3951 -1.39851 -1.34431 -2.54468 Vertex 3952 -1.08518 0.186649 -0.0509837 Vertex 3953 0.595283 2.99143 -0.113794 Vertex 3954 0.725122 1.71523 -0.389877 Vertex 3955 0.916677 1.31639 0.321282 Vertex 3956 -0.117776 3.28417 -0.364794 Vertex 3957 1.77279 1.0063 -2.46491 Vertex 3958 -0.63967 -0.490563 -0.407045 Vertex 3959 0.582611 0.115643 0.619936 Vertex 3960 1.59642 0.561599 -2.75699 Vertex 3961 0.582566 -3.32688 1.67267 Vertex 3962 -0.876393 0.280519 -1.66985 Vertex 3963 0.26864 -2.8986 2.326 Vertex 3964 0.354445 2.92551 -0.657277 Vertex 3965 0.43197 -0.162773 0.919283 Vertex 3966 0.533062 -3.02782 1.72496 Vertex 3967 -0.906115 -0.176639 0.404683 Vertex 3968 0.456481 -0.803633 0.769583 Vertex 3969 1.08305 0.87227 0.0824344 Vertex 3970 1.17247 0.903557 -0.448074 Vertex 3971 1.17807 0.886215 -0.361309 Vertex 3972 1.19653 0.818283 -0.358091 Vertex 3973 0.263762 -3.27896 1.95572 Vertex 3974 0.927449 0.984779 -1.15798 Vertex 3975 -0.426052 -1.22337 2.18948 Vertex 3976 -0.734977 1.05989 0.401418 Vertex 3977 0.775589 0.0654811 -0.198635 Vertex 3978 0.174787 -0.874328 -0.441099 Vertex 3979 0.0716395 0.537717 1.20949 Vertex 3980 -0.655602 -0.0308691 -2.30174 Vertex 3981 -0.725127 -0.0377866 1.23061 Vertex 3982 1.22267 0.55609 -2.72796 Vertex 3983 0.868274 -3.38819 2.38485 Vertex 3984 -0.705996 -0.472064 -0.367151 Vertex 3985 -0.567366 0.2775 -1.63546 Vertex 3986 0.311675 0.712855 1.18548 Vertex 3987 0.793453 1.85597 -0.0169321 Vertex 3988 0.418144 -2.4379 2.02435 Vertex 3989 0.375905 -2.88929 1.49441 Vertex 3990 0.851247 0.360154 0.351341 Vertex 3991 -0.154556 3.46876 -0.346509 Vertex 3992 -0.991745 0.0203608 0.271606 Vertex 3993 -0.987634 0.510212 -0.185853 Vertex 3994 0.362064 2.3468 -0.699621 Vertex 3995 0.167129 1.46131 0.982947 Vertex 3996 -0.0856648 -0.123796 -0.764913 Vertex 3997 0.507045 -0.184397 -0.345066 Vertex 3998 0.52363 0.649723 -0.724995 Vertex 3999 0.527699 0.183165 0.816572 Vertex 4000 0.549804 0.0487314 0.0830784 Vertex 4001 0.385119 -1.20573 0.333235 Vertex 4002 -0.293447 -2.72892 2.14461 Vertex 4003 0.252728 -2.01428 -0.261444 Vertex 4004 -1.08802 5.17815 -1.96043 Vertex 4005 0.446326 -3.01511 2.31706 Vertex 4006 0.541693 0.105596 -0.499914 Vertex 4007 0.341794 1.99499 -0.743438 Vertex 4008 -1.42107 5.70252 -2.72537 Vertex 4009 1.14469 1.17344 -1.40368 Vertex 4010 -0.202926 -1.42141 1.92047 Vertex 4011 -0.323373 -2.36543 2.34711 Vertex 4012 0.512347 -2.223 -0.212334 Vertex 4013 0.260631 -1.94581 2.46488 Vertex 4014 -1.07233 0.157101 0.19808 Vertex 4015 0.712588 -2.18168 -0.475165 Vertex 4016 -0.777032 -0.421722 -1.89729 Vertex 4017 0.623078 1.66537 0.74505 Vertex 4018 -0.898812 0.573815 0.716397 Vertex 4019 -0.707792 -1.91682 2.05475 Vertex 4020 0.846591 0.452716 -1.25403 Vertex 4021 -0.0152911 1.30327 1.0141 Vertex 4022 0.845226 0.768094 0.599982 Vertex 4023 -0.274956 -1.34607 1.61117 Vertex 4024 1.31261 1.16427 -1.12396 Vertex 4025 -1.02624 -1.21217 0.0419284 Vertex 4026 1.18731 0.50862 -2.85476 Vertex 4027 -0.294634 -2.37195 1.14501 Vertex 4028 -0.80992 -1.3975 1.15919 Vertex 4029 1.45215 1.12415 -1.48661 Vertex 4030 0.75546 2.09309 0.159388 Vertex 4031 -0.926577 -0.850777 -0.0572311 Vertex 4032 -0.0895972 -1.7764 3.01579 Vertex 4033 0.786642 -2.31333 -0.605281 Vertex 4034 0.12286 3.91603 -0.167374 Vertex 4035 -0.5388 -0.281321 -1.48457 Vertex 4036 -0.0698391 1.95788 -0.421689 Vertex 4037 -1.07477 -1.28278 0.398472 Vertex 4038 -0.407251 1.51462 0.390288 Vertex 4039 -0.0994999 -2.83952 2.2498 Vertex 4040 0.398824 -2.01664 -0.0551947 Vertex 4041 -1.03814 4.79209 -1.43198 Vertex 4042 1.23055 1.31386 -1.81293 Vertex 4043 1.20176 0.829758 -1.86582 Vertex 4044 0.528441 -3.01325 1.65421 Vertex 4045 -0.0229784 3.39411 -0.0697339 Vertex 4046 0.128086 -1.76177 2.84201 Vertex 4047 0.392038 -2.46785 2.94986 Vertex 4048 0.0605056 -1.99323 0.0135094 Vertex 4049 0.189888 -3.15714 2.51284 Vertex 4050 0.264154 0.434998 -0.964381 Vertex 4051 0.768951 0.371288 -0.952584 Vertex 4052 0.0848497 2.75884 -0.574482 Vertex 4053 -0.391361 0.209726 1.31247 Vertex 4054 1.31143 1.11637 -2.3446 Vertex 4055 -0.415665 -1.57687 -2.72494 Vertex 4056 -1.18292 -0.946305 -2.45047 Vertex 4057 0.793396 1.78357 -0.224167 Vertex 4058 0.0656487 1.16265 -0.739677 Vertex 4059 0.191602 1.56599 -0.953604 Vertex 4060 -0.914106 -0.971384 -0.159899 Vertex 4061 0.149685 -2.24713 2.99965 Vertex 4062 0.265897 -1.06909 1.11886 Vertex 4063 -0.624967 -1.69668 -0.115975 Vertex 4064 -0.830559 0.573584 -0.59084 Vertex 4065 -0.943985 -0.302156 -1.90054 Vertex 4066 0.40092 1.2436 1.0528 Vertex 4067 0.740994 2.31765 0.127732 Vertex 4068 -0.0503925 -1.86936 1.37407 Vertex 4069 0.176186 -2.93142 2.72905 Vertex 4070 0.283782 -1.47775 0.523542 Vertex 4071 1.371 0.570871 -1.15362 Vertex 4072 0.049046 -1.81587 1.9999 Vertex 4073 -0.361124 -0.257212 1.57065 Vertex 4074 0.126631 0.0143471 1.33688 Vertex 4075 1.10739 1.06289 -0.510637 Vertex 4076 0.759657 -2.51915 -0.343889 Vertex 4077 -0.710604 -1.40346 2.1646 Vertex 4078 -0.986276 -0.224374 -2.24492 Vertex 4079 -0.0401801 -0.43878 -0.686659 Vertex 4080 -0.227711 3.96589 -1.03068 Vertex 4081 -0.908551 -0.822665 -2.79073 Vertex 4082 -0.00207535 -0.1542 -0.752624 Vertex 4083 -0.78453 0.115611 1.00153 Vertex 4084 -0.904467 -0.35087 0.0832969 Vertex 4085 -0.741937 -3.02414 -0.165268 Vertex 4086 0.185233 -2.68065 1.57677 Vertex 4087 1.23024 0.706106 -0.538919 Vertex 4088 -0.361001 0.487242 -0.862635 Vertex 4089 -1.09716 0.0464876 -0.275252 Vertex 4090 1.27231 0.39627 -2.75887 Vertex 4091 -0.0616098 2.81813 -0.38546 Vertex 4092 -0.813703 -1.58351 1.12063 Vertex 4093 -0.727407 -0.809783 -0.358783 Vertex 4094 -0.332286 -1.28283 1.76604 Vertex 4095 0.101218 -0.0790415 1.36133 Vertex 4096 0.159503 3.51402 0.166166 Vertex 4097 -0.0200808 -2.92463 2.31586 Vertex 4098 -0.871742 -0.754632 -0.16912 Vertex 4099 -0.377983 -2.69317 2.01192 Vertex 4100 -0.870985 0.85931 0.00288053 Vertex 4101 0.637865 1.80637 0.570831 Vertex 4102 0.0540407 2.33037 -0.547814 Vertex 4103 -0.911529 -0.311835 0.974842 Vertex 4104 -0.0915897 -1.95923 0.870156 Vertex 4105 -0.0240227 1.88937 0.626402 Vertex 4106 -0.397279 -0.263045 -0.542457 Vertex 4107 0.0375602 -3.02052 2.44039 Vertex 4108 0.350863 0.269821 -0.706397 Vertex 4109 -1.11279 -0.0355079 -0.193155 Vertex 4110 -0.921265 0.203367 -0.956082 Vertex 4111 -0.130309 2.49114 -0.294927 Vertex 4112 0.380735 -1.18264 0.177652 Vertex 4113 0.0221572 2.74645 -0.529529 Vertex 4114 0.363052 3.42492 0.0525817 Vertex 4115 0.240806 -1.87181 2.61045 Vertex 4116 -0.540859 -0.167772 1.35822 Vertex 4117 -0.403387 0.142337 1.33808 Vertex 4118 -0.946203 -1.01802 -0.113395 Vertex 4119 0.749288 -3.43854 2.29125 Vertex 4120 1.11708 1.09637 -1.646 Vertex 4121 1.19633 0.415705 -0.663099 Vertex 4122 0.63548 2.79549 -0.266253 Vertex 4123 -0.0285381 -1.65166 2.87847 Vertex 4124 1.49018 0.587732 -2.78609 Vertex 4125 -0.0643691 -2.06649 3.0485 Vertex 4126 0.469393 1.86039 0.708311 Vertex 4127 0.264541 -1.34986 -0.0957118 Vertex 4128 -0.833269 -2.04209 0.101726 Vertex 4129 -0.988628 -1.40979 -2.62182 Vertex 4130 -0.115546 -2.47375 1.58073 Vertex 4131 0.0599342 -2.62658 3.08002 Vertex 4132 -1.10567 -2.07706 -0.0572786 Vertex 4133 0.170917 -1.71608 0.854393 Vertex 4134 -0.967748 -0.446001 -0.64522 Vertex 4135 0.286031 0.561302 -0.937121 Vertex 4136 0.642442 -2.9081 2.2642 Vertex 4137 0.552201 -0.44353 0.550838 Vertex 4138 1.03755 1.19655 -0.405963 Vertex 4139 -1.56081 5.73799 -2.68829 Vertex 4140 1.51064 1.38926 -1.86371 Vertex 4141 -0.266256 0.521501 1.32314 Vertex 4142 1.22842 0.417562 -0.83853 Vertex 4143 0.658737 0.690021 0.898727 Vertex 4144 -0.600679 -0.664096 -2.65325 Vertex 4145 -0.392755 -2.48312 1.98575 Vertex 4146 1.23034 0.350874 -1.21694 Vertex 4147 -0.514809 0.734594 1.08685 Vertex 4148 -0.455046 4.56538 -1.27523 Vertex 4149 -0.623961 1.16893 0.113208 Vertex 4150 0.359509 -3.30649 1.83085 Vertex 4151 -0.818174 -1.505 1.10828 Vertex 4152 0.677713 0.112681 -0.268527 Vertex 4153 -0.958279 -0.157521 -2.25406 Vertex 4154 -0.744817 1.06726 0.236643 Vertex 4155 0.767511 -2.26161 -0.555213 Vertex 4156 1.14273 0.825316 -0.144364 Vertex 4157 -1.48069 5.28825 -2.16024 Vertex 4158 -0.708557 4.58744 -1.48801 Vertex 4159 -0.128508 -2.13804 1.41491 Vertex 4160 0.501497 -2.91877 2.26905 Vertex 4161 -0.530348 -1.42361 -2.77687 Vertex 4162 0.260474 -1.74856 0.0344314 Vertex 4163 -0.0804383 -2.71658 1.65261 Vertex 4164 1.0391 1.08127 -0.597883 Vertex 4165 0.675827 1.50874 0.780284 Vertex 4166 -0.524846 4.18138 -0.690376 Vertex 4167 1.18946 0.864451 -0.655913 Vertex 4168 1.97206 0.903662 -2.65926 Vertex 4169 0.543561 -0.206491 0.175452 Vertex 4170 -0.286359 -1.34472 2.61169 Vertex 4171 -0.145468 -1.51517 1.76592 Vertex 4172 -0.160194 3.8632 -0.987062 Vertex 4173 1.49469 0.942973 -1.78726 Vertex 4174 1.85197 1.02192 -2.78059 Vertex 4175 -0.51115 4.44586 -1.36592 Vertex 4176 0.540174 2.40286 -0.504034 Vertex 4177 -0.449536 -2.13539 0.883744 Vertex 4178 -1.01904 -2.31571 -0.0834416 Vertex 4179 0.523358 -2.20752 2.75206 Vertex 4180 -0.960213 -1.02349 0.914343 Vertex 4181 -0.0921929 -2.67575 2.69499 Vertex 4182 0.560222 -2.37072 2.65577 Vertex 4183 -0.754864 -1.38198 1.98756 Vertex 4184 -0.0502745 -3.08825 1.98513 Vertex 4185 0.45911 -0.982762 0.180056 Vertex 4186 -0.1167 -2.4589 2.98292 Vertex 4187 -1.04516 -0.395053 -0.785106 Vertex 4188 1.8331 0.397795 -2.44967 Vertex 4189 0.0817277 -2.20738 1.71255 Vertex 4190 0.522207 -0.176353 0.520688 Vertex 4191 -0.285806 4.02806 -1.01659 Vertex 4192 -1.40617 5.4607 -2.06429 Vertex 4193 1.51076 0.948026 -2.05371 Vertex 4194 -0.00418727 -3.16576 1.67484 Vertex 4195 -0.375676 -1.56262 -2.71976 Vertex 4196 0.79803 0.317762 -0.951586 Vertex 4197 -0.548906 -1.48961 -0.222212 Vertex 4198 -0.128343 0.909591 1.21907 Vertex 4199 -0.93078 4.85244 -1.23292 Vertex 4200 -1.10931 0.0492143 -0.0683363 Vertex 4201 -1.52789 5.81704 -2.59934 Vertex 4202 -0.199551 3.90347 -0.954231 Vertex 4203 -0.790761 -1.48301 1.81827 Vertex 4204 -1.00674 -0.524271 0.36583 Vertex 4205 -0.0697785 -1.50823 2.38884 Vertex 4206 0.751423 2.17805 0.152927 Vertex 4207 -0.704273 -0.507416 -2.1162 Vertex 4208 0.0320358 2.83152 0.163005 Vertex 4209 -0.932678 -0.366198 -1.09194 Vertex 4210 -0.567368 0.73237 1.07057 Vertex 4211 -1.39377 5.60456 -2.66919 Vertex 4212 -0.858828 -1.04458 1.10799 Vertex 4213 -0.939831 -1.18113 -2.77232 Vertex 4214 -1.19205 -1.21977 -2.45701 Vertex 4215 0.692102 2.23803 0.319851 Vertex 4216 -1.04264 -0.983217 0.132254 Vertex 4217 0.242517 2.06016 -0.7926 Vertex 4218 0.382629 -0.679724 -0.299307 Vertex 4219 0.844765 -2.30302 -0.520325 Vertex 4220 0.364549 -3.0022 2.7912 Vertex 4221 0.476868 -0.753663 -0.0298032 Vertex 4222 0.572016 1.69714 -0.568253 Vertex 4223 0.734556 1.22519 0.799787 Vertex 4224 0.8233 0.742269 -1.13704 Vertex 4225 1.38424 1.42082 -1.85346 Vertex 4226 -0.310482 0.664602 1.17122 Vertex 4227 0.805156 0.632682 -1.07426 Vertex 4228 -0.885044 -2.07379 -0.0594983 Vertex 4229 0.210692 -0.399943 -0.504587 Vertex 4230 0.623272 -3.15687 3.01125 Vertex 4231 -0.0902196 -0.229907 -0.723988 Vertex 4232 0.192015 -1.46858 -0.0569925 Vertex 4233 -0.312169 -0.841354 -0.575182 Vertex 4234 0.13869 1.94737 0.689178 Vertex 4235 0.509751 -0.172923 -0.269615 Vertex 4236 -0.166425 2.26137 -0.197684 Vertex 4237 1.43784 1.33679 -2.42855 Vertex 4238 -0.836874 -1.01458 -2.40293 Vertex 4239 0.130518 -2.54438 1.5494 Vertex 4240 -1.36368 -1.41927 -2.42454 Vertex 4241 0.198558 -3.05764 2.61623 Vertex 4242 0.101021 -3.3065 1.7402 Vertex 4243 0.0748869 1.08761 1.14744 Vertex 4244 -0.910222 -0.665856 1.13996 Vertex 4245 0.0526484 1.28165 -0.68773 Vertex 4246 0.143848 -2.00543 2.18234 Vertex 4247 0.121596 -1.83704 2.22698 Vertex 4248 -1.13408 -2.09771 -0.149066 Vertex 4249 -0.229875 1.78835 0.221823 Vertex 4250 0.00742087 -2.11012 3.0283 Vertex 4251 -0.764177 4.78101 -0.98068 Vertex 4252 0.795606 -3.32238 2.87005 Vertex 4253 -0.184074 -2.83962 1.71173 Vertex 4254 0.396776 -0.579106 1.02815 Vertex 4255 -0.434727 4.48199 -0.545661 Vertex 4256 -0.772871 -0.440852 -0.890202 Vertex 4257 1.86356 0.172571 -2.56779 Vertex 4258 0.867564 -3.46038 2.654 Vertex 4259 -1.59259 5.70594 -2.54475 Vertex 4260 -0.582518 -0.297743 -2.17961 Vertex 4261 0.341884 2.86248 0.432056 Vertex 4262 -0.33419 -0.519631 -0.584904 Vertex 4263 0.611223 1.94284 0.583465 Vertex 4264 -0.864349 0.00688394 -2.22837 Vertex 4265 0.836121 0.773911 -1.0181 Vertex 4266 -1.07307 -0.888447 0.31811 Vertex 4267 -0.845248 0.911669 0.142052 Vertex 4268 -0.073473 -2.49198 1.57818 Vertex 4269 -0.914837 0.710484 -0.171451 Vertex 4270 0.571646 2.96034 -0.326357 Vertex 4271 -0.754179 0.986557 -0.0799972 Vertex 4272 0.592033 0.996231 1.02004 Vertex 4273 -0.592253 -1.10132 1.47653 Vertex 4274 -1.08045 -2.58543 -0.0915128 Vertex 4275 -0.865207 5.04497 -1.36245 Vertex 4276 -0.758181 0.21293 -1.84718 Vertex 4277 -0.950629 0.419569 0.673441 Vertex 4278 0.913584 1.29842 -0.316339 Vertex 4279 -0.575711 -0.203285 -0.725194 Vertex 4280 -1.07233 -0.833952 0.348461 Vertex 4281 -0.0511591 3.27543 -0.0970505 Vertex 4282 0.129263 1.34861 -0.859849 Vertex 4283 0.926429 0.0929247 -0.619785 Vertex 4284 -0.588282 -1.33218 2.35241 Vertex 4285 0.07677 -1.67121 2.67536 Vertex 4286 -0.099233 -1.46831 2.59817 Vertex 4287 0.433609 3.02764 0.186548 Vertex 4288 0.281554 -2.53935 2.99586 Vertex 4289 -1.01282 -2.81222 -0.145063 Vertex 4290 -0.238215 3.64942 -0.51472 Vertex 4291 0.847911 0.833947 -1.04937 Vertex 4292 0.239727 0.614318 1.18802 Vertex 4293 1.18791 0.272291 -0.852901 Vertex 4294 0.508928 -2.79715 1.80541 Vertex 4295 -0.686188 -2.04294 1.48774 Vertex 4296 -0.95865 -2.64117 -0.116759 Vertex 4297 0.553771 -2.24141 2.85143 Vertex 4298 -0.734208 -0.813253 1.30733 Vertex 4299 -0.732458 -0.435336 -1.96201 Vertex 4300 0.145324 0.951764 1.14496 Vertex 4301 0.305857 2.39873 -0.749453 Vertex 4302 0.0768061 -1.42845 -0.212615 Vertex 4303 0.0558049 3.01563 0.111816 Vertex 4304 0.366001 0.65241 -0.844563 Vertex 4305 -0.968581 -1.27611 -0.0488637 Vertex 4306 -0.199907 -2.07867 0.00303918 Vertex 4307 -0.213358 -2.17527 0.111281 Vertex 4308 -0.622819 -1.24293 1.86256 Vertex 4309 -0.407617 0.253149 -0.970006 Vertex 4310 -0.548121 -0.958808 1.46276 Vertex 4311 -1.21911 5.22574 -1.67526 Vertex 4312 1.27494 0.664601 -0.855471 Vertex 4313 -1.04534 -0.601968 0.460873 Vertex 4314 -0.510953 1.3379 0.247139 Vertex 4315 0.805441 -3.5525 2.30453 Vertex 4316 2.04041 0.643726 -2.58766 Vertex 4317 -0.665546 -0.8404 -2.67028 Vertex 4318 -0.644357 -0.836115 -2.59363 Vertex 4319 0.416193 -0.950973 -0.0509885 Vertex 4320 -0.0128675 -1.58618 2.42993 Vertex 4321 -1.3214 5.47303 -2.27635 Vertex 4322 -0.57779 -1.40712 2.50144 Vertex 4323 -0.93966 -0.693304 1.02255 Vertex 4324 -0.634762 4.83286 -1.06424 Vertex 4325 0.153273 -3.31955 1.81394 Vertex 4326 0.00382638 -1.92432 1.95345 Vertex 4327 -0.534629 0.0250188 1.29886 Vertex 4328 -1.11163 -2.88258 -0.391435 Vertex 4329 -0.249517 -1.0296 1.45258 Vertex 4330 1.14736 0.316715 -2.67894 Vertex 4331 1.046 0.934708 -1.59412 Vertex 4332 0.62018 2.00012 0.538885 Vertex 4333 0.470009 -2.42487 2.93256 Vertex 4334 -0.896324 0.306045 -1.22318 Vertex 4335 -0.815127 -1.63489 1.23007 Vertex 4336 0.529641 -3.52442 1.4752 Vertex 4337 -0.117284 -2.1879 0.615725 Vertex 4338 0.561286 -2.46792 2.55304 Vertex 4339 -0.113724 -2.49688 1.52493 Vertex 4340 -0.711177 -1.99464 1.55015 Vertex 4341 -0.791888 -1.29545 -0.19852 Vertex 4342 0.782509 1.90294 -0.129906 Vertex 4343 -0.622347 -0.205984 -1.04355 Vertex 4344 0.811349 0.547452 -1.19889 Vertex 4345 -1.12036 -1.0814 -2.45902 Vertex 4346 -0.585758 -2.17341 2.0351 Vertex 4347 0.873502 0.276308 -1.10399 Vertex 4348 -1.07666 -0.794207 0.559659 Vertex 4349 -0.383929 -2.53975 1.85248 Vertex 4350 -0.831277 0.334463 -0.876057 Vertex 4351 -0.186591 1.63302 0.679185 Vertex 4352 -0.700416 -0.567011 -2.1766 Vertex 4353 -0.541388 -1.62145 2.68168 Vertex 4354 0.833526 0.170935 -0.859648 Vertex 4355 0.0229696 -0.0644327 1.37007 Vertex 4356 0.573896 0.627072 1.0095 Vertex 4357 1.42926 0.94612 -1.06023 Vertex 4358 0.0310949 1.87902 -0.526738 Vertex 4359 -0.836533 4.9794 -1.66362 Vertex 4360 -0.564791 1.04944 -0.327441 Vertex 4361 -1.01972 0.418264 0.312764 Vertex 4362 1.87103 0.385921 -2.48283 Vertex 4363 0.161758 -0.359156 -0.558594 Vertex 4364 0.546082 0.0646396 -0.155933 Vertex 4365 0.235606 -1.60341 0.195366 Vertex 4366 -0.474624 -1.1444 1.56477 Vertex 4367 1.44169 1.12527 -1.30084 Vertex 4368 0.631096 -2.68777 2.8326 Vertex 4369 -0.861828 4.60051 -1.38646 Vertex 4370 0.203118 0.00057452 -0.680138 Vertex 4371 -0.298873 -0.777146 1.52533 Vertex 4372 0.534636 -2.24658 -0.388508 Vertex 4373 0.946527 0.364839 0.102759 Vertex 4374 -0.779381 0.533445 -0.705507 Vertex 4375 -0.029152 -3.1179 1.65554 Vertex 4376 1.50899 1.34446 -2.18699 Vertex 4377 -0.420422 4.37541 -0.478956 Vertex 4378 -0.865293 0.691761 0.700596 Vertex 4379 0.43419 -2.75271 1.68476 Vertex 4380 -0.298756 1.64594 0.456356 Vertex 4381 -0.507122 1.19715 0.832874 Vertex 4382 1.45238 0.651587 -2.8412 Vertex 4383 1.87958 0.401352 -2.54103 Vertex 4384 -0.591077 -0.279776 -0.456491 Vertex 4385 -0.697622 -1.25625 1.59099 Vertex 4386 -0.961408 -1.38541 -0.01007 Vertex 4387 -0.936654 -1.75173 -2.46665 Vertex 4388 0.019512 -0.0675675 -0.805033 Vertex 4389 0.11857 3.80729 -0.729167 Vertex 4390 -0.226942 -1.34213 2.24439 Vertex 4391 0.115156 -0.811945 -0.502498 Vertex 4392 -0.960672 -1.2502 -2.44427 Vertex 4393 -1.05982 -0.140667 -0.106177 Vertex 4394 0.0213279 2.25201 0.417022 Vertex 4395 0.0545941 -1.73184 2.89762 Vertex 4396 -1.40174 5.76253 -2.58366 Vertex 4397 -0.616828 -1.35903 -2.71059 Vertex 4398 0.0523919 -3.05202 1.62015 Vertex 4399 -0.935539 -0.274965 0.531662 Vertex 4400 0.285843 -2.96705 2.78317 Vertex 4401 0.725105 0.130195 0.361705 Vertex 4402 -0.733439 0.109125 1.12949 Vertex 4403 0.39298 -0.375547 -0.331793 Vertex 4404 -1.29429 -1.43037 -2.49839 Vertex 4405 1.16003 0.815579 -0.20624 Vertex 4406 0.0508319 -1.22524 1.24643 Vertex 4407 0.967909 0.809974 0.351596 Vertex 4408 0.388412 0.746476 -0.812706 Vertex 4409 -0.349536 0.239936 -0.892655 Vertex 4410 -0.810223 -1.39313 -2.61475 Vertex 4411 -0.2162 1.83731 0.13612 Vertex 4412 -0.970292 -0.0972606 -1.95035 Vertex 4413 0.76498 0.354694 0.557893 Vertex 4414 -1.51138 5.48362 -2.55154 Vertex 4415 -0.530071 -1.89553 -0.07376 Vertex 4416 -0.591169 -1.90365 -0.0805813 Vertex 4417 -0.0617493 4.05468 -0.896663 Vertex 4418 0.914344 0.170183 -1.01633 Vertex 4419 0.715526 0.524862 0.719959 Vertex 4420 -0.983776 5.05639 -1.35464 Vertex 4421 -0.458466 0.93375 -0.540412 Vertex 4422 1.5471 1.00628 -1.93814 Vertex 4423 0.512036 -2.95344 1.89219 Vertex 4424 0.314668 -2.7268 3.07906 Vertex 4425 -0.00544794 3.77187 -0.00335672 Vertex 4426 0.250091 0.207863 1.21056 Vertex 4427 -0.246656 0.132067 1.52832 Vertex 4428 -1.44061 5.82805 -2.60293 Vertex 4429 0.152398 -0.288836 -0.571206 Vertex 4430 -0.609563 0.288326 -1.6887 Vertex 4431 -1.46734 5.63753 -2.7188 Vertex 4432 0.331839 -1.85894 0.0900198 Vertex 4433 0.330697 -1.88186 0.163233 Vertex 4434 -0.538828 -1.1728 -2.69846 Vertex 4435 -0.460621 -2.42941 1.802 Vertex 4436 0.104084 -2.0083 2.09646 Vertex 4437 0.218822 -3.29438 1.93738 Vertex 4438 0.267748 -2.57419 1.53896 Vertex 4439 0.181704 3.71368 -0.0140749 Vertex 4440 -0.168059 4.35451 -0.833853 Vertex 4441 1.54455 0.694975 -2.87234 Vertex 4442 0.73575 1.23404 -0.553763 Vertex 4443 0.635817 -2.46158 -0.438363 Vertex 4444 -1.02567 -1.2947 0.0611626 Vertex 4445 0.923925 0.817146 -1.47374 Vertex 4446 -0.805749 -1.53788 1.87304 Vertex 4447 -0.785115 -1.44526 1.9849 Vertex 4448 1.872 0.606568 -2.7439 Vertex 4449 -1.44205 5.79367 -2.66943 Vertex 4450 -1.08997 4.89366 -1.43766 Vertex 4451 -0.955768 4.71152 -1.33304 Vertex 4452 -0.770309 0.849172 -0.324934 Vertex 4453 -0.105168 -2.21375 1.5928 Vertex 4454 0.0610158 -0.175872 1.38439 Vertex 4455 -0.583125 -1.3562 -2.76961 Vertex 4456 0.441137 -2.70144 2.99737 Vertex 4457 1.59097 0.710894 -2.89201 Vertex 4458 0.546202 2.33574 0.460483 Vertex 4459 -0.39159 -2.07316 0.102218 Vertex 4460 1.71039 0.424512 -2.4968 Vertex 4461 0.0103328 -1.78399 0.961912 Vertex 4462 0.839707 1.24803 0.590728 Vertex 4463 0.00915869 0.998127 1.20039 Vertex 4464 -0.783273 -1.79771 1.84319 Vertex 4465 -0.218682 0.633521 1.31615 Vertex 4466 0.0375858 3.72992 -0.922655 Vertex 4467 -0.432196 -1.2205 2.05749 Vertex 4468 -0.624427 4.86341 -1.2347 Vertex 4469 0.392849 -2.36616 2.02604 Vertex 4470 -0.0947458 -1.61754 2.89537 Vertex 4471 -0.351044 0.903757 -0.536535 Vertex 4472 0.121831 -1.47965 1.0773 Vertex 4473 -1.02369 -1.96782 -0.253784 Vertex 4474 -0.991126 -1.59763 -2.48867 Vertex 4475 -0.282999 -2.43964 1.3293 Vertex 4476 -0.636734 -1.3044 -2.74007 Vertex 4477 0.204182 -3.0009 2.68108 Vertex 4478 -0.814742 0.819211 -0.280446 Vertex 4479 0.340061 3.67399 -0.196361 Vertex 4480 -0.890892 -0.400765 0.0529649 Vertex 4481 -0.899396 -0.46833 0.0225849 Vertex 4482 -1.01225 -0.502662 0.432279 Vertex 4483 -0.0866598 2.96901 -0.340817 Vertex 4484 0.727725 0.576164 -0.941903 Vertex 4485 0.348346 -1.12773 0.92882 Vertex 4486 -1.06486 -1.42073 0.337276 Vertex 4487 0.787355 1.91795 0.00711207 Vertex 4488 -0.150258 0.477186 -0.872835 Vertex 4489 -0.523088 -1.26114 2.33068 Vertex 4490 -0.894896 4.84455 -1.71501 Vertex 4491 0.299355 -1.8793 0.441058 Vertex 4492 -1.01175 -1.4404 -2.551 Vertex 4493 -1.1117 -0.864583 -2.41309 Vertex 4494 1.70001 0.487323 -2.52236 Vertex 4495 -0.416447 4.00537 -0.611708 Vertex 4496 0.440859 -2.10567 2.76343 Vertex 4497 0.547771 -3.18327 1.78152 Vertex 4498 -0.865385 -0.426851 -0.168878 Vertex 4499 -0.653808 1.08284 0.733391 Vertex 4500 0.539846 0.0989624 0.650856 Vertex 4501 -0.682308 -0.36194 -0.440426 Vertex 4502 -0.31836 -1.49138 2.8283 Vertex 4503 0.0311251 3.9166 -0.834227 Vertex 4504 -0.780957 0.901247 0.600607 Vertex 4505 1.0041 0.33709 -0.0968248 Vertex 4506 -0.96317 -2.76308 -0.18736 Vertex 4507 -0.557799 -0.182929 -2.08991 Vertex 4508 -1.044 5.23783 -1.74448 Vertex 4509 0.339292 -0.641019 -0.352695 Vertex 4510 1.82736 0.251514 -2.4241 Vertex 4511 0.513028 -0.0419159 0.0824583 Vertex 4512 -0.378407 -1.87092 2.8889 Vertex 4513 0.334995 1.56403 0.913944 Vertex 4514 0.961501 0.152653 -1.04503 Vertex 4515 -0.22251 -2.00792 3.00332 Vertex 4516 0.403791 -0.0418872 0.899296 Vertex 4517 -0.583562 -0.374629 -0.400104 Vertex 4518 -1.40831 -1.28825 -2.59297 Vertex 4519 -0.530303 0.244023 -1.60557 Vertex 4520 -1.44579 5.38523 -2.0566 Vertex 4521 -0.568707 -0.436723 -2.45233 Vertex 4522 0.307092 1.69367 -0.905662 Vertex 4523 0.881611 1.3855 0.381319 Vertex 4524 0.397428 -1.06372 0.792026 Vertex 4525 0.151371 1.2512 -0.845908 Vertex 4526 -0.214443 4.42405 -0.775287 Vertex 4527 0.626159 -2.16961 -0.445536 Vertex 4528 -1.04954 0.446709 0.0511684 Vertex 4529 -0.157856 -1.46338 2.05498 Vertex 4530 1.50891 1.36689 -2.04749 Vertex 4531 1.54015 0.547695 -2.73206 Vertex 4532 -0.978666 0.241177 -0.713967 Vertex 4533 1.20532 0.493459 -0.521469 Vertex 4534 -0.162972 0.545194 1.38835 Vertex 4535 -0.0263158 -2.21921 0.303673 Vertex 4536 -0.639612 -1.97886 -0.0379034 Vertex 4537 -0.784861 0.0949199 -1.98651 Vertex 4538 -0.719548 0.587713 1.02955 Vertex 4539 0.99028 0.136299 -0.992803 Vertex 4540 -0.342619 -1.89535 2.97022 Vertex 4541 -0.829701 -1.01921 1.1583 Vertex 4542 -0.832889 0.929179 0.00776219 Vertex 4543 -1.57149 5.44353 -2.3964 Vertex 4544 -0.0378409 0.378314 -1.01537 Vertex 4545 0.855272 1.02265 0.58107 Vertex 4546 -0.356779 -2.14762 0.513635 Vertex 4547 0.11635 -0.235246 -0.639923 Vertex 4548 -0.263755 0.101491 -0.713448 Vertex 4549 -0.492202 -0.339008 -0.470138 Vertex 4550 -0.80301 -1.70286 1.80083 Vertex 4551 -0.737885 -1.93667 1.8059 Vertex 4552 0.884145 1.17292 0.50107 Vertex 4553 0.558441 -0.239249 0.242157 Vertex 4554 0.425081 -3.53235 1.43653 Vertex 4555 -0.16125 -1.48914 1.87317 Vertex 4556 0.11201 1.5528 -0.777167 Vertex 4557 0.0948341 1.48155 -0.727134 Vertex 4558 -0.678392 -2.03162 1.38146 Vertex 4559 0.0254622 3.08157 0.0625614 Vertex 4560 0.10548 -1.71061 2.52451 Vertex 4561 0.61867 0.678035 0.958628 Vertex 4562 -1.00334 -2.89333 -0.0332044 Vertex 4563 -1.13636 -2.16175 -0.212565 Vertex 4564 -0.752629 -0.919166 1.27241 Vertex 4565 0.397488 0.169868 1.00855 Vertex 4566 -0.845585 0.29869 0.901035 Vertex 4567 -0.199878 0.0513428 1.50728 Vertex 4568 -0.547554 0.584872 1.11522 Vertex 4569 0.550933 -0.01113 -0.455753 Vertex 4570 0.509754 3.25797 -0.274372 Vertex 4571 -0.46006 -1.22315 1.96019 Vertex 4572 0.214107 3.51964 0.0980883 Vertex 4573 1.05298 0.856041 0.162435 Vertex 4574 0.0411334 3.62041 0.0318676 Vertex 4575 0.528257 -0.828217 0.067811 Vertex 4576 1.10601 0.160447 -0.890277 Vertex 4577 1.19368 1.16358 -1.0949 Vertex 4578 -0.126998 -1.91318 1.13383 Vertex 4579 -0.0686137 -1.20652 1.36522 Vertex 4580 -0.460791 4.51664 -0.588535 Vertex 4581 -1.21263 -2.70385 -0.141692 Vertex 4582 0.485549 -2.79526 2.25855 Vertex 4583 -0.101069 -2.01985 3.05316 Vertex 4584 0.00119622 -1.94304 1.77454 Vertex 4585 0.327765 -2.52593 1.61548 Vertex 4586 0.158838 1.44867 -0.877585 Vertex 4587 0.468585 -0.0363012 0.700365 Vertex 4588 2.09519 0.778593 -2.6379 Vertex 4589 -0.00272466 -0.233323 -0.717842 Vertex 4590 -1.06798 -0.936849 0.282354 Vertex 4591 0.0912738 -2.16452 0.391461 Vertex 4592 1.10652 0.315653 -0.474359 Vertex 4593 -0.403451 -1.22133 1.66377 Vertex 4594 0.252727 -1.14435 1.1042 Vertex 4595 -0.932773 -0.289567 -1.36725 Vertex 4596 0.147914 3.98268 -0.372027 Vertex 4597 0.767117 2.12584 0.00188668 Vertex 4598 -0.185111 1.51383 0.779058 Vertex 4599 0.510175 -0.366942 0.744627 Vertex 4600 0.0376675 -2.6091 1.53981 Vertex 4601 -0.549531 -2.02365 0.774811 Vertex 4602 1.34509 0.891056 -2.62911 Vertex 4603 -0.121108 -2.64848 1.5483 Vertex 4604 0.316707 -3.33694 1.86921 Vertex 4605 -0.76161 -0.575266 -2.13062 Vertex 4606 0.0899225 1.75472 -0.625293 Vertex 4607 -0.855798 0.316759 -1.16237 Vertex 4608 -0.818508 0.315093 -1.10594 Vertex 4609 -0.69502 1.12391 0.167487 Vertex 4610 -0.699644 1.12828 0.2567 Vertex 4611 0.558864 2.15237 -0.500145 Vertex 4612 -0.969866 -0.988144 -0.043065 Vertex 4613 -0.0594995 2.34827 -0.423076 Vertex 4614 -1.14685 5.25197 -1.67105 Vertex 4615 -0.478991 -2.31765 2.00441 Vertex 4616 0.327991 -3.38102 2.30181 Vertex 4617 -0.920225 -0.848174 1.03922 Vertex 4618 0.123884 3.94399 -0.647085 Vertex 4619 1.55587 1.03612 -1.98557 Vertex 4620 0.581738 1.27017 -0.658255 Vertex 4621 2.16704 0.696201 -2.64254 Vertex 4622 0.768855 1.25405 0.740139 Vertex 4623 1.51342 0.964476 -2.87872 Vertex 4624 0.55112 -0.527775 0.540075 Vertex 4625 -1.07341 -1.51481 0.538339 Vertex 4626 -0.851759 -1.17152 1.10503 Vertex 4627 -0.99051 -0.582952 -2.58395 Vertex 4628 -0.664069 0.282812 -1.74732 Vertex 4629 -0.10037 0.999241 -0.689139 Vertex 4630 -0.851368 -1.27505 1.09367 Vertex 4631 0.152184 2.72551 -0.664083 Vertex 4632 -0.804871 4.58543 -1.46361 Vertex 4633 -0.102449 3.07655 -0.230552 Vertex 4634 0.431152 -2.87908 2.30039 Vertex 4635 -0.0926401 2.77422 -0.306744 Vertex 4636 0.139762 -1.97113 0.71012 Vertex 4637 -0.0437849 4.23607 -0.565542 Vertex 4638 -0.524311 -0.10663 -1.14848 Vertex 4639 -0.843314 -3.04727 -0.0878911 Vertex 4640 0.92795 1.08254 -0.722961 Vertex 4641 0.0440418 3.29 -0.732237 Vertex 4642 1.1641 1.19334 -1.33233 Vertex 4643 -1.04863 -2.64321 -0.0745723 Vertex 4644 -0.255966 -2.62235 2.35615 Vertex 4645 -0.957281 -0.307966 -2.00531 Vertex 4646 1.35158 0.512388 -2.70843 Vertex 4647 0.79851 1.01894 0.700365 Vertex 4648 -0.351821 3.8774 -0.559601 Vertex 4649 -0.746735 -0.759701 1.30632 Vertex 4650 0.519049 0.013144 0.494834 Vertex 4651 -0.726636 -1.8678 1.00128 Vertex 4652 -0.250454 3.84165 -0.325986 Vertex 4653 -0.64309 -0.280031 -0.756024 Vertex 4654 -0.889853 -1.24633 1.05278 Vertex 4655 1.05083 1.03127 -0.691382 Vertex 4656 -0.114036 -0.287564 -0.708498 Vertex 4657 -0.444886 1.3865 0.168994 Vertex 4658 -0.930549 4.78567 -1.2122 Vertex 4659 -0.746798 0.764811 -0.51848 Vertex 4660 -1.10354 -1.76234 0.132597 Vertex 4661 0.395642 -0.517387 1.04795 Vertex 4662 0.428955 0.551841 -0.741644 Vertex 4663 -0.614966 -2.18229 1.44982 Vertex 4664 0.640923 2.56336 0.20296 Vertex 4665 -0.685184 -2.00577 0.711469 Vertex 4666 -1.43523 5.25721 -2.03242 Vertex 4667 -0.629947 0.709923 -0.725086 Vertex 4668 -0.455023 4.25398 -1.18519 Vertex 4669 -0.416457 -0.883123 1.50603 Vertex 4670 0.49716 -2.74236 2.99495 Vertex 4671 0.297869 2.22507 0.700254 Vertex 4672 1.33034 1.38563 -2.2236 Vertex 4673 1.37792 0.688743 -0.960011 Vertex 4674 -0.580441 4.36404 -1.23693 Vertex 4675 -0.42998 0.0738513 -1.55335 Vertex 4676 -0.680343 -2.05696 1.9455 Vertex 4677 -1.41101 5.40609 -2.53208 Vertex 4678 -0.21161 0.483396 -0.807365 Vertex 4679 -0.117243 2.69818 -0.0746156 Vertex 4680 0.828565 0.715446 -1.31429 Vertex 4681 0.2728 -0.700627 -0.395252 Vertex 4682 -0.446677 0.115973 -1.29218 Vertex 4683 -1.06577 -0.813056 0.631781 Vertex 4684 -0.273379 1.57431 0.20292 Vertex 4685 -0.554389 4.5213 -0.640495 Vertex 4686 -0.920934 -0.110685 -2.37831 Vertex 4687 -0.0832126 -2.10462 1.59847 Vertex 4688 -0.146833 -1.34543 1.37905 Vertex 4689 0.324121 -1.89433 0.315379 Vertex 4690 0.970145 1.34879 -0.198466 Vertex 4691 0.374289 -1.1781 0.729835 Vertex 4692 0.629515 0.0706164 0.126157 Vertex 4693 -0.434918 -0.127607 -1.57901 Vertex 4694 1.74442 0.399145 -2.80089 Vertex 4695 -0.0437849 3.65986 -0.926972 Vertex 4696 0.292454 -1.18706 1.0189 Vertex 4697 0.0820538 1.56916 -0.654538 Vertex 4698 0.261293 -1.76881 -0.0349938 Vertex 4699 0.419763 -2.3804 2.11874 Vertex 4700 0.238708 3.12277 0.337164 Vertex 4701 -0.357082 0.222612 1.35702 Vertex 4702 0.505793 1.90324 0.669176 Vertex 4703 -0.848464 -1.27805 -2.741 Vertex 4704 -0.216059 -1.10835 1.45012 Vertex 4705 0.220686 3.41579 -0.754251 Vertex 4706 0.513301 3.21476 0.019008 Vertex 4707 0.727081 2.43331 -0.0202563 Vertex 4708 -0.0369539 -1.7044 1.88497 Vertex 4709 -0.311827 4.30487 -0.372541 Vertex 4710 -0.416527 -0.870621 -0.534083 Vertex 4711 0.543032 -2.73348 2.22613 Vertex 4712 0.658948 -2.22224 -0.477184 Vertex 4713 1.6759 0.443861 -2.7583 Vertex 4714 0.38012 1.74827 -0.824806 Vertex 4715 -0.552492 -1.48556 2.62789 Vertex 4716 -0.551119 -1.48332 2.57815 Vertex 4717 -0.0288635 4.14619 -0.770382 Vertex 4718 -0.891031 -0.561055 1.16897 Vertex 4719 0.576823 2.89478 0.109799 Vertex 4720 0.449756 -2.62914 2.02006 Vertex 4721 -0.580444 -0.299786 -2.29612 Vertex 4722 -0.494795 -0.151068 -1.78264 Vertex 4723 0.536123 0.518191 1.04182 Vertex 4724 -0.369852 -2.13574 0.293855 Vertex 4725 -0.974964 -1.07864 -2.44734 Vertex 4726 -0.317551 0.829344 -0.613052 Vertex 4727 0.14736 3.774 -0.0449651 Vertex 4728 1.11045 1.03187 -0.870715 Vertex 4729 -0.54246 0.977094 -0.445535 Vertex 4730 0.890423 0.339826 -1.19876 Vertex 4731 1.34235 1.15804 -2.71938 Vertex 4732 -0.887249 -1.48384 1.01861 Vertex 4733 -0.569274 -1.73729 2.60335 Vertex 4734 0.677053 -3.20463 2.22685 Vertex 4735 0.326764 -0.503546 1.1782 Vertex 4736 -0.783409 -1.56423 2.05506 Vertex 4737 0.202876 2.21482 -0.704713 Vertex 4738 0.381404 0.291149 -0.535649 Vertex 4739 -1.39198 -1.44991 -2.44083 Vertex 4740 -1.04563 0.396227 -0.135945 Vertex 4741 0.768283 1.91584 0.170422 Vertex 4742 -1.22659 5.27976 -2.15774 Vertex 4743 -0.226742 -2.15589 0.906338 Vertex 4744 -0.279696 1.47909 0.755887 Vertex 4745 1.21711 1.09067 -2.14839 Vertex 4746 -0.391833 -1.36925 -2.59328 Vertex 4747 0.242004 -1.71276 0.275422 Vertex 4748 0.627847 0.165041 0.620076 Vertex 4749 0.755941 0.845427 0.799703 Vertex 4750 -0.0255267 3.43182 -0.728533 Vertex 4751 -0.124389 -2.26615 1.61091 Vertex 4752 0.00831977 -2.35061 1.60766 Vertex 4753 -0.621664 -2.05403 1.04785 Vertex 4754 -0.639644 -1.17399 1.47868 Vertex 4755 -0.443904 -0.0391806 -1.6735 Vertex 4756 -0.722622 -1.21287 -2.49933 Vertex 4757 -1.56585 5.46027 -2.32913 Vertex 4758 0.872383 0.0825822 -0.373582 Vertex 4759 0.278215 0.818677 -0.883598 Vertex 4760 0.694867 0.148756 0.440768 Vertex 4761 1.07513 0.897604 -1.65758 Vertex 4762 -0.376728 4.27575 -0.440803 Vertex 4763 -0.866812 -1.17207 -2.77353 Vertex 4764 -0.596709 -0.222708 -0.79129 Vertex 4765 -0.740303 0.364649 -1.60636 Vertex 4766 0.585585 -2.60818 2.67018 Vertex 4767 -0.604453 -1.61701 2.50802 Vertex 4768 -0.70995 0.384723 -1.48573 Vertex 4769 -0.803281 -1.01124 -2.79329 Vertex 4770 -1.10167 -0.0447305 -0.114378 Vertex 4771 -0.123704 1.3483 0.912817 Vertex 4772 0.577938 2.76608 0.191932 Vertex 4773 -0.0638838 2.93569 -0.0362354 Vertex 4774 0.570726 0.0934483 -0.0782137 Vertex 4775 1.42165 0.776915 -1.72036 Vertex 4776 0.534097 -0.178093 0.351596 Vertex 4777 -0.923242 -2.06533 0.108138 Vertex 4778 -0.722079 0.811854 0.908207 Vertex 4779 0.0421431 -1.70734 2.19453 Vertex 4780 -0.457925 -1.5114 -2.61559 Vertex 4781 0.587651 1.99476 -0.493561 Vertex 4782 0.307695 -0.733795 1.14848 Vertex 4783 0.117733 1.21585 -0.765884 Vertex 4784 -0.096683 2.83152 -0.0920006 Vertex 4785 -0.136579 0.116437 1.40161 Vertex 4786 -0.970494 -0.944022 0.904366 Vertex 4787 0.572918 -2.63936 2.47085 Vertex 4788 0.529706 -3.0364 1.88509 Vertex 4789 -0.16359 1.20331 -0.531538 Vertex 4790 0.432811 -2.10927 2.61945 Vertex 4791 0.513869 -2.89973 1.74302 Vertex 4792 0.56883 -3.14524 1.7695 Vertex 4793 1.27819 0.690533 -2.75673 Vertex 4794 -0.095034 -3.03423 2.01514 Vertex 4795 -0.166495 -0.808414 -0.592734 Vertex 4796 0.687722 2.27322 -0.332635 Vertex 4797 0.334086 -3.54868 1.57301 Vertex 4798 0.5067 2.98634 -0.455071 Vertex 4799 -0.53445 1.22781 0.000723264 Vertex 4800 1.01568 0.211959 -1.18277 Vertex 4801 0.335591 -0.750904 -0.323539 Vertex 4802 -1.02224 0.18265 -1.49725 Vertex 4803 1.57492 1.15987 -2.72776 Vertex 4804 -0.805429 -0.558224 1.28123 Vertex 4805 -0.569098 0.881011 -0.575904 Vertex 4806 -0.786053 -2.12053 0.241983 Vertex 4807 0.875722 0.259709 0.232018 Vertex 4808 0.617018 -2.73189 2.30668 Vertex 4809 0.22855 -1.65185 0.61114 Vertex 4810 0.0882507 3.8144 -0.0495031 Vertex 4811 -0.0508496 -0.191245 -0.743749 Vertex 4812 0.783872 0.0796857 -0.640307 Vertex 4813 -0.104854 0.458414 1.33122 Vertex 4814 0.720039 2.38172 0.168982 Vertex 4815 -0.361067 4.13088 -1.08426 Vertex 4816 1.10042 1.03757 -1.61202 Vertex 4817 -1.06091 5.10618 -1.46297 Vertex 4818 -0.856008 -1.57455 -2.44525 Vertex 4819 0.868661 0.099246 -0.116529 Vertex 4820 -0.143805 -1.38902 2.5832 Vertex 4821 0.318714 -2.14171 2.25128 Vertex 4822 0.803532 0.629963 -1.17516 Vertex 4823 0.123879 -2.1324 2.99478 Vertex 4824 -0.555749 -2.10371 1.17229 Vertex 4825 0.488483 -0.139568 -0.175943 Vertex 4826 0.430103 0.368621 -0.586049 Vertex 4827 1.06832 0.443591 -1.4982 Vertex 4828 -0.105191 1.56817 -0.477667 Vertex 4829 -0.789882 -1.44642 1.92015 Vertex 4830 -0.88308 -1.67006 -2.54915 Vertex 4831 -0.633294 -0.512862 -2.68403 Vertex 4832 1.03623 0.163571 -0.667299 Vertex 4833 -0.398308 -1.29034 2.51261 Vertex 4834 -0.436529 -1.31762 2.53713 Vertex 4835 -0.749285 4.84838 -1.05248 Vertex 4836 -1.11321 -2.71911 -0.25193 Vertex 4837 1.42825 0.825919 -1.66228 Vertex 4838 -0.220925 -1.81624 -0.132293 Vertex 4839 -0.518142 4.4885 -0.596115 Vertex 4840 0.998188 1.16408 -0.512407 Vertex 4841 0.227949 2.74229 -0.75902 Vertex 4842 0.481563 -0.889267 0.504592 Vertex 4843 1.03211 1.13836 0.112921 Vertex 4844 1.63553 0.862758 -2.45175 Vertex 4845 1.21819 1.25197 -1.66806 Vertex 4846 0.379158 0.540236 1.16308 Vertex 4847 -0.994097 0.199576 -1.18362 Vertex 4848 1.09979 0.787649 -1.69744 Vertex 4849 -0.20231 0.0843005 -0.780018 Vertex 4850 0.180636 -2.70738 3.07236 Vertex 4851 -0.633565 -1.22294 1.62951 Vertex 4852 0.49508 1.63235 0.838741 Vertex 4853 -0.779078 1.01821 0.0824917 Vertex 4854 0.265467 3.76919 -0.156583 Vertex 4855 -0.120827 1.85943 -0.351099 Vertex 4856 1.84502 0.853258 -2.81843 Vertex 4857 -0.298823 1.48322 0.13975 Vertex 4858 -0.0177638 2.8858 0.0630133 Vertex 4859 0.420168 -3.48404 2.34352 Vertex 4860 0.655149 -2.65255 -0.504355 Vertex 4861 0.528291 2.09941 0.580688 Vertex 4862 -0.0730221 2.47732 0.106544 Vertex 4863 -0.494496 0.420729 1.17701 Vertex 4864 0.619722 2.1174 -0.438593 Vertex 4865 -0.886787 -2.03316 0.401533 Vertex 4866 -0.786822 0.558112 -0.658387 Vertex 4867 0.0831383 3.74338 -0.814869 Vertex 4868 -0.00810632 -1.06747 1.38299 Vertex 4869 0.150674 -3.10874 1.56925 Vertex 4870 -0.106792 -1.58598 1.75601 Vertex 4871 0.342024 -0.921655 -0.272811 Vertex 4872 0.475354 2.55986 0.421637 Vertex 4873 0.757908 1.84749 0.262567 Vertex 4874 -0.980177 -0.468752 0.31598 Vertex 4875 -0.217856 1.72941 -0.0951709 Vertex 4876 -0.236547 -0.446241 1.53078 Vertex 4877 0.70279 0.356251 0.699855 Vertex 4878 -1.1083 0.0258457 -0.133436 Vertex 4879 -0.881837 -1.94886 -0.119153 Vertex 4880 0.874578 0.698534 -1.44405 Vertex 4881 0.469284 0.613058 -0.726349 Vertex 4882 -0.969028 -0.144241 -1.77097 Vertex 4883 0.54998 3.04017 0.0824344 Vertex 4884 0.51146 2.59104 -0.538641 Vertex 4885 0.26446 -2.91076 2.87501 Vertex 4886 -0.641992 -0.803403 -2.39914 Vertex 4887 0.225922 2.92978 -0.765398 Vertex 4888 1.25427 0.470629 -2.87369 Vertex 4889 0.225793 -2.59856 3.01381 Vertex 4890 -0.20844 -0.729878 1.49525 Vertex 4891 0.548712 -2.06296 -0.25815 Vertex 4892 -0.114623 -2.92152 2.44556 Vertex 4893 -0.123617 -1.519 1.38769 Vertex 4894 -0.242957 -1.42819 2.74633 Vertex 4895 0.700556 -2.59743 -0.408263 Vertex 4896 0.429465 -2.17512 2.93177 Vertex 4897 0.463288 -3.59637 1.56874 Vertex 4898 -1.03211 -0.849131 0.753667 Vertex 4899 1.30646 0.759086 -2.71837 Vertex 4900 0.481572 -0.429249 0.856324 Vertex 4901 -0.624485 -2.14477 0.136697 Vertex 4902 -0.309998 0.22313 -0.765083 Vertex 4903 -0.201027 3.6997 -0.309243 Vertex 4904 -1.19648 4.93408 -1.64152 Vertex 4905 -0.389679 -1.45687 -0.292279 Vertex 4906 1.62599 1.20334 -2.22111 Vertex 4907 0.242808 -1.92772 -0.25108 Vertex 4908 0.322369 -1.38981 0.446475 Vertex 4909 -0.0348484 -3.14251 1.80619 Vertex 4910 0.374584 -2.40079 2.0939 Vertex 4911 -0.634798 -0.345077 -0.406681 Vertex 4912 -1.09213 -0.219802 -0.448086 Vertex 4913 0.628803 -2.53406 -0.399231 Vertex 4914 0.431075 -2.94896 2.30549 Vertex 4915 0.305698 0.971686 -0.861931 Vertex 4916 -0.165699 2.33523 -0.0686931 Vertex 4917 0.381749 -1.17617 0.122747 Vertex 4918 -0.677822 -1.03173 -0.398933 Vertex 4919 -0.729684 -1.07485 -0.348724 Vertex 4920 -0.0758559 0.61426 1.31952 Vertex 4921 -0.216732 4.15446 -1.10255 Vertex 4922 -0.822906 -1.41448 -2.43029 Vertex 4923 -0.925051 -0.272801 0.878467 Vertex 4924 -0.847916 -1.45273 1.08078 Vertex 4925 -0.960473 -1.48306 -2.39225 Vertex 4926 0.266752 -2.46233 1.58607 Vertex 4927 0.0699716 2.94245 0.146276 Vertex 4928 -0.856492 -0.782309 1.18842 Vertex 4929 0.660908 1.75152 0.620636 Vertex 4930 0.595102 -2.35247 -0.384469 Vertex 4931 -0.969259 -1.94433 0.387133 Vertex 4932 0.475715 -3.30412 1.68338 Vertex 4933 -0.604607 0.334076 -1.2638 Vertex 4934 0.524896 3.10281 -0.375726 Vertex 4935 -0.870901 -1.61522 -2.64294 Vertex 4936 0.642856 -2.49616 -0.303029 Vertex 4937 0.101004 2.97707 -0.617875 Vertex 4938 0.840428 0.827302 -1.14054 Vertex 4939 -0.242228 -0.560445 -0.641677 Vertex 4940 0.830906 0.071146 -0.241289 Vertex 4941 -0.675457 0.0273431 1.23254 Vertex 4942 0.802222 0.896346 -0.896308 Vertex 4943 1.29154 0.505643 -1.46693 Vertex 4944 0.0449384 -3.19756 1.63412 Vertex 4945 1.1638 1.1982 -1.71856 Vertex 4946 -0.458822 -2.39844 1.68552 Vertex 4947 0.553406 2.56164 0.348641 Vertex 4948 0.148768 2.00776 0.655709 Vertex 4949 1.12912 0.527625 -1.58608 Vertex 4950 -0.503526 0.260109 -1.09397 Vertex 4951 0.339052 -2.15686 -0.279182 Vertex 4952 1.36384 0.963448 -2.13275 Vertex 4953 -0.856184 0.849859 -0.135854 Vertex 4954 1.44782 0.728916 -1.20165 Vertex 4955 -0.307301 -1.44537 2.78338 Vertex 4956 0.950512 0.106308 -0.565315 Vertex 4957 -0.0445931 -1.53094 2.57075 Vertex 4958 -0.229702 0.973212 1.05706 Vertex 4959 -0.934433 -0.93477 0.999514 Vertex 4960 -0.401324 -2.13214 0.665535 Vertex 4961 0.811759 -3.29442 2.31176 Vertex 4962 0.57518 3.05504 -0.213956 Vertex 4963 -0.75982 0.334368 -1.04572 Vertex 4964 -0.0260693 -0.365603 1.42364 Vertex 4965 0.717365 2.46568 0.0297333 Vertex 4966 0.466816 -0.121205 0.70037 Vertex 4967 0.998257 0.729968 0.281902 Vertex 4968 1.13724 1.0124 -0.355911 Vertex 4969 -1.08298 0.219964 0.045818 Vertex 4970 -0.439369 1.47072 0.416512 Vertex 4971 -0.184837 -2.41655 1.43128 Vertex 4972 -0.961264 0.380854 -0.546154 Vertex 4973 -0.237504 -2.22591 0.441307 Vertex 4974 0.571085 -0.448654 0.117886 Vertex 4975 -0.405106 0.00234417 -0.663448 Vertex 4976 0.376926 2.21462 0.715221 Vertex 4977 1.51351 1.2519 -2.59541 Vertex 4978 -0.0530302 0.846273 1.27544 Vertex 4979 -0.883557 -1.43502 -2.70662 Vertex 4980 0.623133 -2.43091 -0.267109 Vertex 4981 -0.277759 -2.47076 2.41308 Vertex 4982 0.630697 -2.86049 2.5824 Vertex 4983 0.801681 0.203073 0.343738 Vertex 4984 1.20961 0.820137 -0.701637 Vertex 4985 1.38922 1.4576 -1.98412 Vertex 4986 0.322809 -1.99629 0.120185 Vertex 4987 1.75473 0.374996 -2.45995 Vertex 4988 -0.351668 -2.56375 2.21218 Vertex 4989 0.139644 -1.81154 0.84413 Vertex 4990 -0.851228 -2.00062 -0.0530363 Vertex 4991 0.368678 1.36442 1.00045 Vertex 4992 -0.546669 0.313847 -1.36847 Vertex 4993 0.760981 0.417696 -0.979486 Vertex 4994 -1.09643 -0.721861 -2.41968 Vertex 4995 0.16437 3.2842 0.165425 Vertex 4996 0.090134 -0.315418 -0.635969 Vertex 4997 1.57587 0.878267 -2.45979 Vertex 4998 -1.11216 -1.14819 -2.72174 Vertex 4999 -0.798388 -0.965658 -0.296062 Vertex 5000 0.119214 0.998527 -0.824933 Vertex 5001 -0.711647 -0.356322 -0.4988 Vertex 5002 0.566258 -3.16034 2.86641 Vertex 5003 -0.696856 -1.97319 1.22523 Vertex 5004 1.34864 1.11514 -2.6044 Vertex 5005 1.71775 0.566627 -2.82003 Vertex 5006 0.540246 -0.779713 0.109589 Vertex 5007 -0.21817 1.34244 0.88307 Vertex 5008 0.213994 -1.87826 2.42309 Vertex 5009 -0.361749 1.09659 0.988555 Vertex 5010 0.37986 0.33715 1.12407 Vertex 5011 -0.660619 0.338337 -1.15054 Vertex 5012 -0.606816 0.326106 -1.20828 Vertex 5013 -0.958846 0.351016 -0.624424 Vertex 5014 1.97362 0.556435 -2.75953 Vertex 5015 -0.650795 -2.04642 0.0104037 Vertex 5016 -0.482923 0.688772 1.10372 Vertex 5017 -0.616814 -1.37632 2.38276 Vertex 5018 -1.28002 5.34788 -1.84145 Vertex 5019 -0.132645 2.55169 -0.065506 Vertex 5020 0.14839 2.26381 -0.618138 Vertex 5021 -0.50899 4.72232 -1.24366 Vertex 5022 0.831987 0.633451 -1.09241 Vertex 5023 -0.477005 -0.223616 -1.5417 Vertex 5024 -1.59049 5.56176 -2.53246 Vertex 5025 -0.639499 -2.04866 2.06994 Vertex 5026 1.01605 0.491294 0.0427126 Vertex 5027 -1.33768 -1.39876 -2.63674 Vertex 5028 0.874994 0.218896 -1.03189 Vertex 5029 -0.757215 1.01465 -0.0256451 Vertex 5030 -0.379402 -1.55391 2.85889 Vertex 5031 0.678171 -2.46768 -0.431409 Vertex 5032 1.48665 0.931718 -1.18519 Vertex 5033 0.345145 0.439177 1.17181 Vertex 5034 0.380687 -2.34312 2.11362 Vertex 5035 0.507776 -0.0447504 -0.0535211 Vertex 5036 -0.509755 4.63441 -0.79286 Vertex 5037 -0.505134 -1.19106 1.65097 Vertex 5038 0.531415 1.07233 1.05509 Vertex 5039 -0.812257 -1.25272 1.14545 Vertex 5040 0.0250991 -1.09434 1.34426 Vertex 5041 -0.54157 -0.226953 1.37331 Vertex 5042 0.200726 3.78922 -0.602042 Vertex 5043 -1.03073 0.127587 0.31367 Vertex 5044 -0.167078 -2.65122 1.67522 Vertex 5045 1.97248 0.627156 -2.83347 Vertex 5046 -1.02049 5.20939 -1.63993 Vertex 5047 0.798479 0.48628 -1.12168 Vertex 5048 -0.962976 -1.56666 0.863876 Vertex 5049 0.739858 2.23857 0.204488 Vertex 5050 -0.172481 1.83992 0.384195 Vertex 5051 -0.712309 0.584479 -0.761065 Vertex 5052 -0.0723623 -1.67457 1.33395 Vertex 5053 -0.04777 1.04452 1.18177 Vertex 5054 0.261408 0.228209 -0.855103 Vertex 5055 1.28221 0.671717 -1.7443 Vertex 5056 -0.856564 -0.435858 1.19909 Vertex 5057 -0.611356 0.180502 1.19736 Vertex 5058 0.475102 3.14763 0.114868 Vertex 5059 -0.872466 -0.303964 -1.6116 Vertex 5060 0.0483298 3.56043 0.0184413 Vertex 5061 0.00498844 3.51982 -0.0281497 Vertex 5062 0.861923 1.60008 0.262695 Vertex 5063 -0.257361 4.03879 -1.1038 Vertex 5064 0.33898 3.56709 -0.0260153 Vertex 5065 -0.682012 -0.334962 -1.56172 Vertex 5066 0.150159 -1.89291 -0.0834991 Vertex 5067 -0.83109 0.568556 0.901674 Vertex 5068 0.296186 -1.43837 0.589954 Vertex 5069 0.956607 1.28647 -0.325957 Vertex 5070 1.06471 1.14012 -1.29704 Vertex 5071 1.08371 1.14539 -1.35243 Vertex 5072 -0.894815 0.507508 -0.571183 Vertex 5073 -0.653524 0.919014 0.903938 Vertex 5074 -0.442185 -2.44678 1.87161 Vertex 5075 1.50664 1.24671 -1.87972 Vertex 5076 -0.0203261 -3.1365 1.91549 Vertex 5077 0.977644 0.575996 -1.53177 Vertex 5078 -0.633203 -1.63154 2.4378 Vertex 5079 0.489679 2.5063 0.432738 Vertex 5080 -0.915418 -1.77505 0.803178 Vertex 5081 -0.571721 -1.50245 2.52323 Vertex 5082 0.0528629 0.0642113 -0.936437 Vertex 5083 0.145512 -2.66615 3.14657 Vertex 5084 -0.90472 0.794824 0.0988723 Vertex 5085 0.494544 -0.670759 -0.0093057 Vertex 5086 0.267589 2.38424 0.569754 Vertex 5087 0.517296 0.901675 1.08809 Vertex 5088 -0.674235 -1.85434 2.22447 Vertex 5089 -0.125613 2.07067 0.249839 Vertex 5090 -0.852142 -1.36687 1.08934 Vertex 5091 0.63235 1.53039 -0.532312 Vertex 5092 0.34186 3.5783 -0.45277 Vertex 5093 0.702145 2.5127 0.0650346 Vertex 5094 -0.653344 -1.265 1.99102 Vertex 5095 1.49671 0.767296 -2.57618 Vertex 5096 0.682052 1.39674 0.822272 Vertex 5097 -0.905688 -0.9507 -2.37965 Vertex 5098 0.35323 -1.17625 0.859196 Vertex 5099 -1.23467 -2.74861 -0.268654 Vertex 5100 -1.04156 -1.04384 0.139742 Vertex 5101 0.15526 2.65413 -0.678178 Vertex 5102 0.402907 2.13865 0.704126 Vertex 5103 -0.105297 -2.13902 1.50183 Vertex 5104 -1.33811 5.51439 -2.18599 Vertex 5105 -0.0478109 -1.36666 1.29425 Vertex 5106 0.802412 0.632125 -1.2293 Vertex 5107 -0.751662 -2.05654 0.597035 Vertex 5108 0.72733 0.0990779 0.226978 Vertex 5109 0.907325 0.989347 0.461382 Vertex 5110 0.532884 -2.40314 2.28651 Vertex 5111 0.0625006 -2.96775 2.39485 Vertex 5112 0.225949 -0.35927 1.34557 Vertex 5113 0.501001 -2.01194 -0.202827 Vertex 5114 -0.400358 -1.47937 -2.62119 Vertex 5115 -0.923246 -1.00862 0.994861 Vertex 5116 -0.309308 0.771252 -0.648599 Vertex 5117 1.31033 1.45193 -2.05583 Vertex 5118 1.33035 0.521843 -1.35218 Vertex 5119 0.407544 -2.58584 1.73541 Vertex 5120 -0.964988 -0.0463914 0.200898 Vertex 5121 0.087055 -1.05817 -0.444462 Vertex 5122 0.706146 -3.63638 2.36615 Vertex 5123 -1.01163 -0.589557 0.305246 Vertex 5124 -0.92821 -1.59675 -2.68593 Vertex 5125 -0.832322 0.678576 0.830798 Vertex 5126 0.424249 -3.27152 1.836 Vertex 5127 0.0417969 -1.71758 0.979325 Vertex 5128 -0.132359 1.91042 0.411941 Vertex 5129 -0.62534 -0.746746 -0.420995 Vertex 5130 0.249014 -2.10906 2.13013 Vertex 5131 0.414807 -1.8754 -0.123418 Vertex 5132 -0.910464 -0.363298 0.244786 Vertex 5133 -0.140277 -2.33884 1.61273 Vertex 5134 0.498592 -3.10302 1.53366 Vertex 5135 -0.992644 5.00305 -1.86298 Vertex 5136 0.293913 -1.98983 0.333747 Vertex 5137 -0.58997 -0.308359 -1.54559 Vertex 5138 -0.239498 -2.41618 2.54262 Vertex 5139 -0.272605 -0.28335 -0.630289 Vertex 5140 0.395683 -2.42307 1.8441 Vertex 5141 -0.439418 -2.32257 1.42458 Vertex 5142 -0.510442 -2.08957 2.36897 Vertex 5143 1.46348 0.970165 -2.30716 Vertex 5144 1.21247 0.286045 -0.984612 Vertex 5145 -0.0539617 -1.49574 2.74232 Vertex 5146 0.991171 1.03643 -1.36245 Vertex 5147 -0.90626 -2.92359 -0.0409078 Vertex 5148 0.243739 3.64726 -0.00250593 Vertex 5149 0.985163 1.31611 0.124939 Vertex 5150 1.20505 0.490837 -1.55443 Vertex 5151 1.90666 0.177655 -2.51044 Vertex 5152 -0.188519 3.53154 -0.460582 Vertex 5153 1.20149 1.10177 -0.996368 Vertex 5154 0.19963 -0.106971 -0.563083 Vertex 5155 0.0791677 3.33622 0.0485197 Vertex 5156 0.843702 0.566059 -1.34736 Vertex 5157 1.58489 1.23163 -2.36366 Vertex 5158 -0.499349 0.0779506 1.29405 Vertex 5159 -0.172273 3.95483 -0.212357 Vertex 5160 0.741892 0.845384 -0.854283 Vertex 5161 -0.861864 -0.742805 -2.24038 Vertex 5162 -0.296147 -0.77264 -0.592421 Vertex 5163 -0.243039 0.882644 1.09702 Vertex 5164 0.481392 -0.00390084 -0.416385 Vertex 5165 0.397627 -1.02502 -0.0826039 Vertex 5166 0.0838498 -1.42479 1.1376 Vertex 5167 -1.06217 -0.101928 -0.784402 Vertex 5168 0.338523 -2.41701 1.74122 Vertex 5169 -0.0497073 3.24852 -0.549572 Vertex 5170 -1.01724 0.0388152 -0.968854 Vertex 5171 0.292143 0.126464 1.14746 Vertex 5172 -0.878205 -0.433143 -0.967814 Vertex 5173 -1.14687 5.0245 -2.00621 Vertex 5174 0.654699 2.61792 0.140911 Vertex 5175 0.618684 2.6477 0.20195 Vertex 5176 -0.282279 0.587772 -0.757448 Vertex 5177 0.472912 -0.969276 0.41731 Vertex 5178 -0.565688 -1.09865 -0.440214 Vertex 5179 -1.03976 -2.3735 -0.0837301 Vertex 5180 1.25774 1.21179 -2.19269 Vertex 5181 -0.711965 -0.357355 -0.62382 Vertex 5182 0.701588 -3.11201 2.9066 Vertex 5183 -0.441642 0.0125348 -1.65039 Vertex 5184 0.247918 -0.282911 1.30828 Vertex 5185 0.353864 -2.07338 2.77462 Vertex 5186 0.412751 -3.00221 2.85142 Vertex 5187 0.340119 0.370112 -0.805591 Vertex 5188 -0.901989 -0.179545 0.869916 Vertex 5189 -0.682459 4.72445 -0.875182 Vertex 5190 0.382713 2.60226 0.536929 Vertex 5191 -0.914391 -0.149832 0.0949225 Vertex 5192 -1.02982 0.210993 -0.463903 Vertex 5193 0.609397 -3.4119 1.60421 Vertex 5194 0.188257 -1.12886 -0.334332 Vertex 5195 -0.747863 0.846283 -0.392166 Vertex 5196 -0.34085 1.42092 0.767078 Vertex 5197 0.0645204 -0.65191 1.4155 Vertex 5198 -0.917421 -1.08498 -2.78261 Vertex 5199 0.265282 -0.0146521 1.20809 Vertex 5200 -0.346768 3.84195 -0.626418 Vertex 5201 -1.07508 -1.67725 0.492958 Vertex 5202 -1.06151 -2.00526 0.142505 Vertex 5203 -0.803368 -1.69555 1.68624 Vertex 5204 0.815114 -3.41699 2.31261 Vertex 5205 1.24277 0.672399 -0.810081 Vertex 5206 -0.434291 -2.09974 0.131654 Vertex 5207 1.63076 0.50769 -2.75139 Vertex 5208 -0.832326 -0.178275 1.1599 Vertex 5209 0.230407 1.78358 -0.881182 Vertex 5210 0.644429 -2.9827 2.95296 Vertex 5211 0.990772 1.07191 -1.20188 Vertex 5212 0.595622 -2.17869 -0.256649 Vertex 5213 0.232715 -0.452062 -0.469341 Vertex 5214 1.22452 0.730365 -0.671941 Vertex 5215 0.701624 2.6018 -0.0459385 Vertex 5216 0.443861 2.3789 -0.587229 Vertex 5217 0.0501029 -3.1598 2.02322 Vertex 5218 -0.119008 3.29192 -0.285616 Vertex 5219 1.2167 1.23528 -2.41209 Vertex 5220 0.335009 2.80968 0.482484 Vertex 5221 0.708708 1.56861 0.699913 Vertex 5222 0.769117 0.523063 -1.05764 Vertex 5223 0.147597 -3.04719 2.58214 Vertex 5224 0.935608 0.23817 0.0477672 Vertex 5225 0.910056 0.167945 0.00282765 Vertex 5226 -1.36216 -1.20034 -2.45822 Vertex 5227 -1.08623 -0.0756814 -0.632255 Vertex 5228 -0.152631 -2.87089 2.39021 Vertex 5229 -0.524506 4.13021 -0.813914 Vertex 5230 1.76004 0.28197 -2.67049 Vertex 5231 -0.978147 0.619096 0.0312379 Vertex 5232 1.41507 0.758585 -1.52178 Vertex 5233 1.88979 0.34636 -2.60936 Vertex 5234 0.0911255 1.28085 -0.761113 Vertex 5235 0.167329 -0.768541 1.37861 Vertex 5236 -0.428701 4.55968 -0.725355 Vertex 5237 -0.114794 -1.56273 1.55155 Vertex 5238 -0.168146 -1.48187 1.61606 Vertex 5239 -0.641905 -1.27235 -0.331116 Vertex 5240 0.279119 2.27085 0.643951 Vertex 5241 0.583529 -2.70442 2.98766 Vertex 5242 -0.0392613 2.53299 0.185812 Vertex 5243 -0.979916 -0.190851 -2.12967 Vertex 5244 -0.98592 -0.19826 -2.19187 Vertex 5245 -0.971604 0.552306 0.485384 Vertex 5246 -0.864378 0.864833 0.176611 Vertex 5247 2.1613 0.529381 -2.66153 Vertex 5248 1.31959 0.842069 -2.73782 Vertex 5249 0.245682 -0.194178 -0.477941 Vertex 5250 -1.12325 -2.94944 -0.376802 Vertex 5251 0.50188 -0.013984 0.575708 Vertex 5252 0.152055 -1.76343 2.71269 Vertex 5253 -0.831947 0.197428 0.839203 Vertex 5254 0.172517 1.89014 -0.738044 Vertex 5255 -0.586998 -1.39471 -0.273231 Vertex 5256 0.191629 -1.8225 0.690149 Vertex 5257 -0.799661 -0.749044 -2.26045 Vertex 5258 -0.44799 4.44514 -1.28349 Vertex 5259 -0.617081 4.85556 -1.17622 Vertex 5260 0.858598 -3.73727 2.52178 Vertex 5261 -1.01553 0.492772 0.298042 Vertex 5262 -0.936696 -1.46377 -0.0256259 Vertex 5263 0.179017 -1.87857 2.86204 Vertex 5264 0.876174 1.00529 -0.862124 Vertex 5265 1.13744 1.05618 -1.69788 Vertex 5266 -0.567952 1.26645 0.287991 Vertex 5267 -0.969624 0.471262 0.582099 Vertex 5268 1.10112 0.349804 -0.395902 Vertex 5269 -0.225925 1.79388 -0.031581 Vertex 5270 -0.425647 -2.34782 2.09506 Vertex 5271 1.2129 0.791923 -0.543419 Vertex 5272 0.848414 -3.46748 2.84382 Vertex 5273 -1.01969 -0.717763 0.242498 Vertex 5274 -0.517715 -0.0371423 1.32698 Vertex 5275 -0.406593 -1.80654 2.87079 Vertex 5276 -0.855381 -1.77208 0.862991 Vertex 5277 0.162884 3.39094 -0.832021 Vertex 5278 0.0112666 -1.71007 2.05469 Vertex 5279 -0.82674 -2.95596 -0.13856 Vertex 5280 -0.880155 -0.362399 -1.19275 Vertex 5281 0.218355 -3.40912 1.73743 Vertex 5282 -0.363857 4.58043 -0.875567 Vertex 5283 0.21508 -1.84954 2.47602 Vertex 5284 0.394231 -2.95063 2.92657 Vertex 5285 -1.08481 5.23558 -1.92188 Vertex 5286 0.609714 -3.49362 2.72982 Vertex 5287 0.366032 2.71448 -0.654603 Vertex 5288 0.0568731 -3.03781 2.15452 Vertex 5289 -1.08284 -0.675912 -2.49939 Vertex 5290 -0.663999 -1.40978 -0.229017 Vertex 5291 -0.33157 -1.26825 2.24427 Vertex 5292 0.626952 -2.74656 2.8321 Vertex 5293 -0.316351 0.922304 1.05442 Vertex 5294 0.297725 1.02963 1.1372 Vertex 5295 1.68735 0.371516 -2.76786 Vertex 5296 0.748678 -3.21983 3.01196 Vertex 5297 -0.881833 -0.215091 1.01982 Vertex 5298 -1.02282 -0.708682 0.789797 Vertex 5299 -1.00088 -0.944767 0.830937 Vertex 5300 -1.04041 0.140814 -1.34243 Vertex 5301 0.18729 -3.41344 1.64891 Vertex 5302 1.65343 1.1745 -2.60634 Vertex 5303 0.77152 0.924451 -0.840625 Vertex 5304 -0.172956 2.20312 -0.0166109 Vertex 5305 0.16226 -2.03427 -0.0901331 Vertex 5306 -0.800088 -0.693524 -2.21692 Vertex 5307 1.79887 0.555454 -2.76031 Vertex 5308 0.588254 -2.87804 2.24005 Vertex 5309 -0.219998 -2.1268 0.0589427 Vertex 5310 -0.0348352 -2.52313 1.55755 Vertex 5311 -0.726353 -2.15223 0.271908 Vertex 5312 1.37568 1.32127 -2.46818 Vertex 5313 -0.666662 0.570174 -0.841671 Vertex 5314 0.0169703 -3.20247 1.76461 Vertex 5315 -0.5992 -0.282777 -1.86806 Vertex 5316 -0.188103 -0.674115 -0.625715 Vertex 5317 -0.864035 0.163109 0.720814 Vertex 5318 1.03746 1.2299 -0.330868 Vertex 5319 0.34859 -1.31687 0.438877 Vertex 5320 -1.25569 5.16426 -1.7172 Vertex 5321 -0.136942 1.59326 -0.436489 Vertex 5322 -0.629795 -2.08578 0.54509 Vertex 5323 0.35729 0.961154 -0.823238 Vertex 5324 0.812585 -3.44817 2.86428 Vertex 5325 -1.39179 5.30108 -2.40394 Vertex 5326 -0.858049 0.360289 -1.42055 Vertex 5327 1.09273 1.03968 0.00299095 Vertex 5328 0.315648 2.46355 -0.743939 Vertex 5329 -0.0447511 4.00608 -0.132869 Vertex 5330 1.03536 0.468233 -0.0567906 Vertex 5331 -1.07307 0.209171 -0.0996705 Vertex 5332 -0.370555 1.24169 -0.158139 Vertex 5333 -0.869766 -1.57548 0.993438 Vertex 5334 -0.907457 -1.27357 -2.4233 Vertex 5335 -0.0448954 2.03249 -0.434547 Vertex 5336 -0.749898 -1.8961 1.9453 Vertex 5337 -1.03961 -1.46906 0.158022 Vertex 5338 -0.734323 -1.91645 0.811858 Vertex 5339 1.03664 0.192433 -0.415817 Vertex 5340 -0.643315 0.968094 -0.384524 Vertex 5341 0.663754 -2.90046 2.35454 Vertex 5342 -0.174623 -2.17979 1.32659 Vertex 5343 0.472566 0.00614604 0.769525 Vertex 5344 -0.418278 -1.35808 -2.67213 Vertex 5345 0.621311 0.963193 -0.694693 Vertex 5346 -0.556521 -2.06251 2.29433 Vertex 5347 1.3486 0.563977 -1.01729 Vertex 5348 -0.221476 4.00812 -1.09396 Vertex 5349 -0.565539 -0.477211 -2.51108 Vertex 5350 -0.936582 -1.47401 0.953789 Vertex 5351 0.486521 -2.33019 -0.289296 Vertex 5352 -0.766185 -0.499565 -2.57734 Vertex 5353 0.779029 1.65357 -0.305943 Vertex 5354 -1.00494 0.204732 -0.672452 Vertex 5355 -0.13519 -2.49485 1.47523 Vertex 5356 0.660141 2.72852 -0.0115265 Vertex 5357 -1.3821 5.56207 -2.24313 Vertex 5358 1.54337 0.991388 -2.03133 Vertex 5359 0.890217 0.945565 -1.02881 Vertex 5360 0.328679 -1.22862 0.898872 Vertex 5361 -0.66585 0.173358 1.15944 Vertex 5362 -0.379175 -1.31714 2.57093 Vertex 5363 -0.939643 -2.19158 -0.0966732 Vertex 5364 -0.457991 -0.0754986 -1.72547 Vertex 5365 0.154844 2.18294 -0.629034 Vertex 5366 -0.981624 0.154686 -1.04942 Vertex 5367 0.972096 1.17252 0.261972 Vertex 5368 0.538604 -0.463859 0.0661739 Vertex 5369 0.526543 -0.101335 -0.282406 Vertex 5370 -1.0085 -1.71809 0.680838 Vertex 5371 0.703727 0.985354 0.889416 Vertex 5372 0.836655 0.958878 0.630329 Vertex 5373 -1.0379 -1.52624 0.64348 Vertex 5374 0.01841 3.72505 0.0137218 Vertex 5375 -1.06146 -2.38155 -0.291595 Vertex 5376 -0.230648 4.26471 -0.346529 Vertex 5377 -0.76611 -0.695571 1.30655 Vertex 5378 0.841981 0.280579 0.326613 Vertex 5379 1.87819 1.00432 -2.63625 Vertex 5380 0.732194 1.96809 0.306738 Vertex 5381 -0.375416 -0.378903 -0.552023 Vertex 5382 0.140224 3.4723 -0.843565 Vertex 5383 -1.06669 0.251921 -0.175547 Vertex 5384 -0.951912 -0.354566 0.850711 Vertex 5385 0.720636 2.19411 0.268019 Vertex 5386 0.399512 -3.5893 1.51773 Vertex 5387 -0.777145 4.95304 -1.24671 Vertex 5388 0.315346 -2.06989 2.40572 Vertex 5389 -0.313149 -1.30225 1.81584 Vertex 5390 -0.0659316 2.98762 -0.0557139 Vertex 5391 -1.3055 -1.24596 -2.40983 Vertex 5392 -0.193847 2.11542 -0.038145 Vertex 5393 -0.472502 1.38845 0.222678 Vertex 5394 -0.957197 -0.492842 -2.56493 Vertex 5395 -0.999358 -0.696535 -2.66937 Vertex 5396 -0.931381 -2.8365 -0.146199 Vertex 5397 -0.237836 -2.63092 1.74278 Vertex 5398 0.0470147 -0.255343 -0.675596 Vertex 5399 1.11368 0.899773 -1.71644 Vertex 5400 0.794009 0.68867 -0.996809 Vertex 5401 0.462947 -2.15021 -0.17465 Vertex 5402 -0.915687 -0.676535 -2.66965 Vertex 5403 -0.797475 -1.76294 1.40591 Vertex 5404 -0.0375381 -1.66776 1.94002 Vertex 5405 0.581737 2.37927 -0.461795 Vertex 5406 1.13236 0.986587 -0.244445 Vertex 5407 -0.438423 -1.27341 2.43309 Vertex 5408 0.915805 -3.60493 2.50382 Vertex 5409 -1.01312 -1.0179 0.811122 Vertex 5410 -1.21722 5.38594 -2.04117 Vertex 5411 -1.27434 5.44034 -2.07425 Vertex 5412 0.252024 0.645186 -0.938169 Vertex 5413 -0.981791 -0.233954 -2.0662 Vertex 5414 0.444424 -0.0572399 -0.383463 Vertex 5415 0.0851621 -0.954912 1.36749 Vertex 5416 -0.56785 4.37757 -1.31512 Vertex 5417 -0.934815 5.11355 -1.47386 Vertex 5418 -1.14762 4.88238 -1.76936 Vertex 5419 -0.63674 -0.153007 1.30888 Vertex 5420 -1.09582 0.0962972 0.0852343 Vertex 5421 -0.114537 3.41169 -0.553872 Vertex 5422 -0.109106 3.67409 -0.819965 Vertex 5423 1.62718 1.17295 -2.15378 Vertex 5424 0.674274 0.578445 0.829656 Vertex 5425 0.474489 -0.340051 -0.163644 Vertex 5426 0.317201 -0.1979 1.17829 Vertex 5427 -0.643098 1.00876 0.839763 Vertex 5428 -0.0757656 1.88143 0.569598 Vertex 5429 -0.399605 -2.54296 2.0848 Vertex 5430 0.8971 -3.57878 2.60759 Vertex 5431 -0.724728 -1.69225 2.19408 Vertex 5432 0.0272215 -1.24499 -0.391734 Vertex 5433 -0.457301 4.35124 -0.528654 Vertex 5434 -0.495081 4.73799 -1.0401 Vertex 5435 -0.91063 -0.888821 -0.1385 Vertex 5436 0.300143 -2.35386 1.7169 Vertex 5437 0.182204 -2.08551 0.0227965 Vertex 5438 1.37014 1.0507 -2.44515 Vertex 5439 -1.06404 0.316573 -0.163254 Vertex 5440 -0.393724 -0.964707 -0.524476 Vertex 5441 -1.34119 5.52607 -2.27532 Vertex 5442 -0.382062 -2.43439 2.0966 Vertex 5443 0.2425 2.23562 -0.773605 Vertex 5444 -0.79884 -1.43091 -0.125269 Vertex 5445 1.09934 0.716245 0.0427126 Vertex 5446 0.589511 1.48616 -0.659987 Vertex 5447 -0.207662 1.67464 0.625091 Vertex 5448 0.779714 -3.25978 2.83178 Vertex 5449 0.825737 1.56283 -0.0845886 Vertex 5450 1.20348 0.338746 -0.826778 Vertex 5451 -0.185577 2.06838 0.0857744 Vertex 5452 0.75352 2.29631 0.0485484 Vertex 5453 0.211715 0.0642453 -0.755048 Vertex 5454 -0.980904 -2.59868 -0.153077 Vertex 5455 -0.245673 -1.48751 2.82914 Vertex 5456 -1.34321 5.34819 -1.90029 Vertex 5457 -0.377993 -1.2673 2.44572 Vertex 5458 0.555239 -0.63086 0.421788 Vertex 5459 -0.483371 0.561212 1.13596 Vertex 5460 -0.390791 -1.66514 2.90426 Vertex 5461 -0.91572 -0.0296517 0.283929 Vertex 5462 0.546067 2.01309 0.603368 Vertex 5463 0.458498 0.690915 -0.741479 Vertex 5464 0.86551 1.07062 -0.758477 Vertex 5465 0.293456 -0.289354 1.2383 Vertex 5466 -0.958649 -0.392848 -2.09565 Vertex 5467 0.341599 -0.944873 1.01856 Vertex 5468 0.256515 -2.00569 2.33867 Vertex 5469 0.158364 -2.17882 1.77808 Vertex 5470 0.807909 1.33793 -0.392986 Vertex 5471 0.50337 -0.51394 0.739601 Vertex 5472 0.722959 -3.15104 2.24588 Vertex 5473 -1.03109 0.073266 -1.58358 Vertex 5474 0.381114 -3.22405 1.44267 Vertex 5475 0.163729 -3.04234 2.33283 Vertex 5476 0.563962 -0.0542126 -0.375743 Vertex 5477 -0.485913 -1.19849 -2.53619 Vertex 5478 -0.353125 -2.59804 2.18655 Vertex 5479 -1.10394 4.86306 -1.49253 Vertex 5480 0.100943 -0.421517 -0.60478 Vertex 5481 -0.392467 -1.89372 -0.0393479 Vertex 5482 0.139574 3.25195 0.124795 Vertex 5483 -0.639685 -0.860304 -2.39842 Vertex 5484 -0.332825 -2.29687 2.36387 Vertex 5485 -0.701654 -2.03188 1.61197 Vertex 5486 -1.15258 4.92785 -1.93433 Vertex 5487 -0.0834151 -1.68683 -0.115327 Vertex 5488 1.17871 1.0585 -2.02546 Vertex 5489 -0.398164 -2.20186 2.49345 Vertex 5490 0.560667 3.0602 -0.285651 Vertex 5491 0.154731 2.8471 0.245614 Vertex 5492 0.485835 -0.434476 -0.034614 Vertex 5493 0.291826 1.206 -0.907805 Vertex 5494 -0.955428 -1.15015 -2.43516 Vertex 5495 -1.17291 -2.48441 -0.206242 Vertex 5496 0.420264 -3.04767 1.46872 Vertex 5497 -0.66947 0.777626 -0.619843 Vertex 5498 0.758552 2.11871 -0.080803 Vertex 5499 -0.129544 -1.43892 1.35556 Vertex 5500 -0.573519 -0.246307 -1.93048 Vertex 5501 -0.0495786 1.72847 0.7139 Vertex 5502 0.530709 0.124897 0.710022 Vertex 5503 -1.22338 -2.60183 -0.20053 Vertex 5504 -0.911418 -1.87529 0.71295 Vertex 5505 -0.907458 0.528818 -0.514494 Vertex 5506 -0.240532 -2.89206 1.7253 Vertex 5507 0.130008 2.93255 -0.677635 Vertex 5508 0.945758 0.484532 0.202709 Vertex 5509 -0.337264 1.0414 1.01117 Vertex 5510 -0.984587 -1.69882 0.0010899 Vertex 5511 -0.448956 1.27522 0.819804 Vertex 5512 -0.203721 1.79225 -0.131222 Vertex 5513 0.244573 -0.0611925 1.25765 Vertex 5514 -0.674351 4.76239 -0.921504 Vertex 5515 0.199218 0.33974 1.22466 Vertex 5516 0.118106 0.78628 1.17202 Vertex 5517 0.457315 -2.85414 3.04325 Vertex 5518 0.730126 -3.47236 2.84416 Vertex 5519 0.70276 2.58466 -0.18428 Vertex 5520 -0.223152 1.83691 0.0350452 Vertex 5521 0.677389 1.22716 0.879652 Vertex 5522 1.83568 0.309456 -2.42645 Vertex 5523 0.256782 -1.49798 0.743463 Vertex 5524 -1.04397 -1.55604 0.199792 Vertex 5525 0.560489 0.386777 -0.684585 Vertex 5526 -0.618182 -1.33842 2.29202 Vertex 5527 0.562479 -0.0846203 -0.339884 Vertex 5528 0.267003 3.21226 0.312304 Vertex 5529 0.23976 -1.64082 0.481864 Vertex 5530 0.417663 3.29082 -0.484115 Vertex 5531 -0.0801557 -1.58048 2.08986 Vertex 5532 -0.316417 -2.08668 0.0844946 Vertex 5533 -0.871672 -2.95417 -0.162595 Vertex 5534 0.658014 2.75582 -0.170648 Vertex 5535 0.393248 -2.23605 2.20934 Vertex 5536 -0.692288 -0.847845 -2.72989 Vertex 5537 0.252687 -2.09266 0.0577206 Vertex 5538 0.332473 -2.14328 -0.108809 Vertex 5539 0.876365 1.37952 -0.194643 Vertex 5540 -1.01666 -0.511752 -2.253 Vertex 5541 -1.10966 -0.0725807 -0.413876 Vertex 5542 0.360185 -2.14212 2.39342 Vertex 5543 -0.666564 0.335042 -1.65077 Vertex 5544 -0.570601 -0.487116 -2.42851 Vertex 5545 0.357006 -2.8273 3.11892 Vertex 5546 -0.681456 -1.29407 1.71121 Vertex 5547 0.00264614 -1.56583 -0.134448 Vertex 5548 -0.21493 1.8786 0.0730999 Vertex 5549 0.26083 3.42052 -0.688792 Vertex 5550 -1.33451 -1.22346 -2.6718 Vertex 5551 -0.52452 -2.28843 1.90358 Vertex 5552 0.47291 -0.631598 0.814535 Vertex 5553 1.09534 0.427888 -0.275679 Vertex 5554 1.33845 1.43601 -2.12624 Vertex 5555 -0.93655 4.92681 -1.78596 Vertex 5556 0.477012 3.25743 0.0467891 Vertex 5557 -0.593021 -1.14876 -2.46952 Vertex 5558 0.741791 -2.43612 -0.303597 Vertex 5559 -0.169641 4.14419 -1.02618 Vertex 5560 0.466562 3.3886 -0.250711 Vertex 5561 -0.0476547 -1.65617 1.24662 Vertex 5562 0.462382 0.504671 -0.686609 Vertex 5563 -0.945289 -1.69782 -2.60111 Vertex 5564 1.28769 1.15287 -2.48907 Vertex 5565 0.193514 2.58004 0.403177 Vertex 5566 1.17369 1.08875 -1.84026 Vertex 5567 -0.122589 2.02397 0.303419 Vertex 5568 0.637816 2.84 -0.136253 Vertex 5569 0.00630924 -0.621273 -0.618324 Vertex 5570 0.328337 -2.32049 1.80901 Vertex 5571 0.119132 -3.02543 2.33362 Vertex 5572 -0.285383 -2.30525 1.04685 Vertex 5573 0.17127 1.71468 0.852886 Vertex 5574 1.07604 0.988491 -1.60181 Vertex 5575 -0.441705 -0.062982 -1.32283 Vertex 5576 -0.0916751 0.82101 -0.767227 Vertex 5577 1.18353 0.350482 -1.33473 Vertex 5578 -0.428915 1.16378 0.923984 Vertex 5579 -0.091687 1.4954 0.847641 Vertex 5580 0.845116 -3.34924 2.68276 Vertex 5581 0.137083 0.724752 -0.969792 Vertex 5582 -0.146795 3.5153 -0.289914 Vertex 5583 1.45567 0.587352 -2.68697 Vertex 5584 -0.0331948 4.21956 -0.651724 Vertex 5585 1.73651 1.11648 -2.4958 Vertex 5586 -0.629878 0.352341 -1.54957 Vertex 5587 0.835995 1.60081 -0.162264 Vertex 5588 -0.940968 0.556065 -0.330856 Vertex 5589 -0.814242 -1.63664 1.53174 Vertex 5590 -0.984726 -0.43516 0.397033 Vertex 5591 -0.637279 4.42472 -1.27429 Vertex 5592 -0.209175 -2.63757 2.47745 Vertex 5593 0.0392394 3.22674 0.0334877 Vertex 5594 0.22 -0.321039 -0.506702 Vertex 5595 0.835498 0.255176 -0.966035 Vertex 5596 -0.243565 -2.19157 0.551041 Vertex 5597 -0.768946 -1.12871 -0.298841 Vertex 5598 0.84085 -3.48331 2.33949 Vertex 5599 -1.05075 -1.88209 -0.172258 Vertex 5600 0.123724 1.20515 1.09011 Vertex 5601 -0.0385163 2.4525 0.205882 Vertex 5602 -0.961042 5.05482 -1.81614 Vertex 5603 0.11712 -2.89724 2.71574 Vertex 5604 -0.409083 -0.568054 1.56851 Vertex 5605 0.796306 1.37799 0.657741 Vertex 5606 -0.150124 -2.45456 2.84199 Vertex 5607 -0.760247 -0.395334 -0.584144 Vertex 5608 0.645686 -2.84411 2.33555 Vertex 5609 -0.191315 1.2879 -0.480829 Vertex 5610 1.30377 0.824328 -0.865468 Vertex 5611 -1.02127 -0.127029 -1.40725 Vertex 5612 1.24793 0.41123 -1.36254 Vertex 5613 -0.302567 -1.64994 -0.157645 Vertex 5614 -0.828235 -2.03074 0.0388284 Vertex 5615 0.589755 -3.50625 1.60532 Vertex 5616 -0.168698 -2.49021 2.72099 Vertex 5617 1.00654 0.298945 -1.2742 Vertex 5618 0.746552 2.36357 0.0345981 Vertex 5619 0.73496 2.4121 0.0696756 Vertex 5620 0.193018 3.14994 -0.783477 Vertex 5621 -0.103999 2.48374 0.0327498 Vertex 5622 -0.346823 -1.27534 1.88802 Vertex 5623 0.395075 1.00352 -0.793343 Vertex 5624 0.346492 1.01683 -0.831093 Vertex 5625 0.547661 -2.26334 2.78735 Vertex 5626 -0.828877 0.294842 -0.97341 Vertex 5627 -1.27709 5.43587 -2.16693 Vertex 5628 -0.313923 4.48491 -1.07635 Vertex 5629 -0.979724 -1.08204 -0.0285427 Vertex 5630 -0.367191 -2.02353 2.85136 Vertex 5631 0.431085 2.90721 0.271446 Vertex 5632 0.504812 -0.79382 0.0195637 Vertex 5633 0.828545 0.160234 0.222053 Vertex 5634 -0.250757 -0.813226 -0.592466 Vertex 5635 -0.0696354 0.227705 -0.984043 Vertex 5636 -0.261512 -0.154461 1.57486 Vertex 5637 0.227169 -1.76365 0.570392 Vertex 5638 0.732011 0.633194 0.724997 Vertex 5639 1.31984 1.27889 -1.66562 Vertex 5640 0.463855 -2.28062 2.96246 Vertex 5641 -0.395519 0.195634 -0.976526 Vertex 5642 0.0875754 -2.4677 3.09437 Vertex 5643 0.4919 1.82124 -0.648901 Vertex 5644 -1.01252 0.103544 -1.07387 Vertex 5645 0.391033 -0.0959435 -0.337036 Vertex 5646 0.930595 1.48106 0.0104758 Vertex 5647 0.59909 0.522982 0.959057 Vertex 5648 0.686042 0.22967 -0.746136 Vertex 5649 0.136069 -2.87496 2.77762 Vertex 5650 -0.842683 -0.457722 -2.5641 Vertex 5651 0.43557 1.93883 -0.652446 Vertex 5652 0.176013 -0.834108 1.34788 Vertex 5653 -0.291623 4.29963 -1.11817 Vertex 5654 -0.322918 4.31124 -1.16275 Vertex 5655 0.818689 1.65241 0.258254 Vertex 5656 -0.178539 -2.13883 0.737623 Vertex 5657 0.0828018 -0.763172 -0.533285 Vertex 5658 1.50559 1.17008 -1.80848 Vertex 5659 -1.25954 5.37193 -2.17425 Vertex 5660 -0.689138 -0.678147 -2.28588 Vertex 5661 -0.321093 3.84681 -0.707789 Vertex 5662 -0.280042 -2.02851 -0.00548393 Vertex 5663 -0.776043 -1.45303 1.69128 Vertex 5664 -1.19814 -2.53006 -0.162762 Vertex 5665 0.129662 3.09887 0.143812 Vertex 5666 -0.156075 -1.78131 3.02478 Vertex 5667 -0.257418 4.30297 -0.377719 Vertex 5668 0.340919 0.204232 -0.591368 Vertex 5669 0.314613 0.0969962 1.10754 Vertex 5670 -0.0888807 2.84765 -0.297633 Vertex 5671 0.55384 -2.5121 2.61995 Vertex 5672 -1.00683 4.77548 -1.73292 Vertex 5673 0.323407 -2.60359 1.57053 Vertex 5674 -1.05213 -1.9232 -0.207358 Vertex 5675 0.416209 -3.04591 2.80619 Vertex 5676 -0.321648 0.0902206 1.52258 Vertex 5677 -1.02676 -1.2999 0.183357 Vertex 5678 0.554467 -0.454209 0.324497 Vertex 5679 -0.389344 -1.61855 -0.164636 Vertex 5680 0.371324 0.317945 -0.652253 Vertex 5681 0.568315 -2.4407 2.68316 Vertex 5682 0.071603 -3.1377 2.07556 Vertex 5683 1.46288 1.2835 -2.55779 Vertex 5684 -0.37432 -1.81564 -0.0737478 Vertex 5685 0.495284 -2.24297 2.582 Vertex 5686 -0.0283828 3.11135 -0.507577 Vertex 5687 0.71433 -3.04203 2.32876 Vertex 5688 0.458419 1.79184 -0.718721 Vertex 5689 0.251975 3.78127 -0.488555 Vertex 5690 0.373147 -3.11043 1.96309 Vertex 5691 -0.02046 0.985384 -0.74088 Vertex 5692 1.56924 0.994871 -2.19522 Vertex 5693 0.0764757 1.30386 1.06938 Vertex 5694 0.336369 2.05114 0.774052 Vertex 5695 0.388182 0.569448 -0.805928 Vertex 5696 0.957561 0.537212 -1.48772 Vertex 5697 1.33219 0.740749 -2.59684 Vertex 5698 0.538337 -2.40625 2.93555 Vertex 5699 -0.838521 -1.52048 -2.40436 Vertex 5700 0.864017 0.740362 -1.3944 Vertex 5701 0.0549048 3.14307 -0.621746 Vertex 5702 0.10173 2.46372 -0.599881 Vertex 5703 -0.975119 -0.8488 0.0271952 Vertex 5704 -1.09756 0.0997318 -0.154847 Vertex 5705 -0.0195234 -1.40161 1.25794 Vertex 5706 -0.78245 -1.80449 0.912187 Vertex 5707 0.409844 3.49635 -0.0728393 Vertex 5708 -1.15564 5.33165 -1.93663 Vertex 5709 -0.347114 -2.78491 1.85459 Vertex 5710 1.40576 0.633162 -1.16945 Vertex 5711 -0.625734 1.22417 0.527202 Vertex 5712 -0.203184 1.93433 0.0904615 Vertex 5713 -0.867206 -0.382416 -0.243109 Vertex 5714 0.326431 -1.89122 0.244089 Vertex 5715 -1.5746 5.50902 -2.51921 Vertex 5716 -0.600031 0.614577 1.1024 Vertex 5717 1.36767 1.18987 -1.3529 Vertex 5718 -0.759661 4.9708 -1.48275 Vertex 5719 -1.01679 0.185621 -1.25542 Vertex 5720 0.241093 -1.56348 0.727902 Vertex 5721 -0.704442 4.59326 -0.894675 Vertex 5722 -0.12081 3.71537 -0.886868 Vertex 5723 0.483742 -2.64502 2.95538 Vertex 5724 -0.046281 -1.55535 2.32663 Vertex 5725 -0.0806413 -2.86024 2.5576 Vertex 5726 -1.11756 5.11299 -2.02021 Vertex 5727 -0.336366 -2.21879 2.74221 Vertex 5728 0.432455 1.80694 0.788826 Vertex 5729 0.368648 2.37085 0.662616 Vertex 5730 -0.170563 2.0296 -0.194305 Vertex 5731 0.542491 -0.491164 0.600434 Vertex 5732 -1.46923 5.26536 -2.23024 Vertex 5733 0.55337 3.10876 -0.256317 Vertex 5734 -0.016925 1.7028 -0.519401 Vertex 5735 1.02981 0.869934 -1.60869 Vertex 5736 -1.10479 -1.78416 0.0525072 Vertex 5737 0.31762 2.29858 -0.735601 Vertex 5738 0.263449 -1.91233 2.52824 Vertex 5739 -0.916338 -0.18095 0.680253 Vertex 5740 -0.810543 0.428985 -0.781572 Vertex 5741 0.832305 0.621663 0.521169 Vertex 5742 -0.893065 -0.07335 0.251564 Vertex 5743 1.9235 0.950733 -2.74685 Vertex 5744 -0.165927 -0.678984 1.47969 Vertex 5745 -0.542823 -0.207694 -1.88753 Vertex 5746 1.40762 0.687459 -1.01718 Vertex 5747 -0.83397 0.819363 0.560458 Vertex 5748 0.695633 2.5997 0.0211417 Vertex 5749 -0.697371 -1.5873 2.27454 Vertex 5750 0.599251 1.55254 -0.595057 Vertex 5751 0.419657 3.45735 -0.359369 Vertex 5752 -0.672287 -2.09514 1.90564 Vertex 5753 -0.26545 0.41276 -0.815906 Vertex 5754 -0.852522 -0.669133 -0.184365 Vertex 5755 1.2362 1.16875 -2.26248 Vertex 5756 0.877739 0.434605 -1.29667 Vertex 5757 -1.4338 5.7074 -2.45224 Vertex 5758 0.446076 -3.34144 1.40203 Vertex 5759 -0.896252 -0.46091 -0.609147 Vertex 5760 0.99446 0.119265 -0.809391 Vertex 5761 -0.0329388 3.31924 -0.6081 Vertex 5762 1.08312 1.09155 -0.0424581 Vertex 5763 -0.133403 -2.97338 1.68733 Vertex 5764 0.560772 -2.57403 2.46278 Vertex 5765 -0.00665138 -2.89108 1.68535 Vertex 5766 -0.175736 3.9686 -1.07762 Vertex 5767 -0.141673 1.04008 -0.643244 Vertex 5768 0.935879 0.770681 0.421463 Vertex 5769 -0.835798 4.70727 -1.62749 Vertex 5770 2.03313 0.809921 -2.74211 Vertex 5771 -0.135601 0.85511 1.25493 Vertex 5772 -0.5791 0.108397 -1.83707 Vertex 5773 0.216042 -0.754774 -0.428456 Vertex 5774 -0.984773 -1.6484 -2.47406 Vertex 5775 -0.869733 -1.85804 -0.0820318 Vertex 5776 -0.417666 0.986195 1.03042 Vertex 5777 1.3384 1.25817 -2.62305 Vertex 5778 -0.692467 -1.96403 1.15858 Vertex 5779 -0.544277 -2.15519 0.215107 Vertex 5780 -0.39452 -1.01157 1.49348 Vertex 5781 -0.00630954 -2.64072 2.92862 Vertex 5782 -0.134035 -2.19463 3.03707 Vertex 5783 1.44919 1.4405 -1.88566 Vertex 5784 1.13446 0.707106 -1.69853 Vertex 5785 -1.13685 -2.48294 -0.25324 Vertex 5786 -0.205614 -2.11883 0.816388 Vertex 5787 0.159204 -0.0338303 -0.730746 Vertex 5788 -0.921064 -1.18809 -0.110107 Vertex 5789 -0.00275409 3.12213 0.010885 Vertex 5790 -1.04618 0.0271414 -1.19316 Vertex 5791 -0.945349 -0.0562051 -2.20447 Vertex 5792 -0.552449 -0.470007 1.42798 Vertex 5793 0.727963 -2.40797 -0.362406 Vertex 5794 -0.706196 0.985864 0.738746 Vertex 5795 -0.633195 1.068 -0.203164 Vertex 5796 -1.03551 -0.548273 0.566452 Vertex 5797 -1.05738 -1.17873 -2.6685 Vertex 5798 2.01054 0.819793 -2.57586 Vertex 5799 -0.317102 3.81649 -0.51537 Vertex 5800 -1.01382 -0.583606 0.787408 Vertex 5801 -0.44525 -1.67701 2.86401 Vertex 5802 0.45127 -2.55265 2.14558 Vertex 5803 1.31605 1.30879 -2.50938 Vertex 5804 -0.259457 -1.28637 -0.407773 Vertex 5805 0.216873 -3.04951 2.33988 Vertex 5806 -0.508649 -2.06056 0.765067 Vertex 5807 0.797025 1.8175 0.119954 Vertex 5808 0.805053 1.77289 0.0399484 Vertex 5809 -1.00636 -0.417253 -0.86342 Vertex 5810 -0.153284 -1.47935 1.48934 Vertex 5811 0.071195 -3.23332 1.61675 Vertex 5812 -0.483185 0.192716 -1.09734 Vertex 5813 0.475815 3.30486 0.00790638 Vertex 5814 -0.274687 -2.80433 2.07417 Vertex 5815 -0.365381 1.53308 0.284032 Vertex 5816 -0.547268 -0.144334 -1.977 Vertex 5817 1.47421 1.00234 -1.5651 Vertex 5818 -0.623701 -0.503518 -2.3303 Vertex 5819 -0.844805 0.111673 0.77282 Vertex 5820 -0.863128 -0.564355 -2.112 Vertex 5821 -0.825129 -1.53876 -2.57772 Vertex 5822 -1.13708 -2.36103 -0.157126 Vertex 5823 -0.51729 1.05263 0.931267 Vertex 5824 -1.10399 4.8362 -1.71097 Vertex 5825 1.80124 0.872278 -2.54 Vertex 5826 0.360875 2.54448 -0.696813 Vertex 5827 0.108179 -1.22674 1.20006 Vertex 5828 -0.529658 0.448739 -0.968585 Vertex 5829 -0.908354 0.567383 -0.454737 Vertex 5830 -0.731197 -1.15951 1.26058 Vertex 5831 -0.258607 -1.29819 2.42357 Vertex 5832 1.15978 0.570542 -1.62645 Vertex 5833 -0.187243 -2.13228 1.26418 Vertex 5834 -0.339957 -2.27549 0.991659 Vertex 5835 -0.238912 -2.19067 1.04414 Vertex 5836 1.12621 0.230611 -0.742213 Vertex 5837 -0.301556 -1.59712 -0.186541 Vertex 5838 0.935283 0.611011 0.341915 Vertex 5839 -1.10365 -1.81211 0.242157 Vertex 5840 -0.990195 -0.608831 0.203747 Vertex 5841 -0.312892 -2.14681 0.682986 Vertex 5842 -0.155109 -2.16287 0.670787 Vertex 5843 0.360747 -1.88573 -0.189926 Vertex 5844 0.631935 1.95983 -0.465026 Vertex 5845 1.19983 0.733013 -0.356516 Vertex 5846 -0.826128 -0.40394 -1.86123 Vertex 5847 0.505033 -0.114958 0.398965 Vertex 5848 0.558494 -0.42818 0.411191 Vertex 5849 0.419128 2.00625 -0.651956 Vertex 5850 -0.823382 -0.467632 -0.207395 Vertex 5851 -0.554799 -1.46718 -2.61468 Vertex 5852 -1.10773 0.0323813 -0.198609 Vertex 5853 -1.15368 -0.850309 -2.62356 Vertex 5854 -0.298499 3.92436 -0.83847 Vertex 5855 -0.837233 -2.96028 -0.094939 Vertex 5856 0.334023 0.614294 1.17939 Vertex 5857 0.249136 -0.536296 1.31281 Vertex 5858 0.115868 1.68634 -0.687415 Vertex 5859 -1.01011 -0.467512 0.51926 Vertex 5860 1.48408 0.797216 -2.86186 Vertex 5861 -0.786641 -1.76513 1.92046 Vertex 5862 -0.771723 -1.82517 1.96029 Vertex 5863 0.0998528 2.40521 -0.593904 Vertex 5864 -0.916039 -1.2056 -2.42142 Vertex 5865 -0.0397999 -0.0860986 -0.798607 Vertex 5866 0.65669 -2.92595 2.63171 Vertex 5867 0.274169 -1.80249 -0.076232 Vertex 5868 1.68811 1.08102 -2.3297 Vertex 5869 -0.58565 0.325038 -1.10994 Vertex 5870 0.78621 -3.35192 2.28017 Vertex 5871 0.314242 -3.52852 1.51387 Vertex 5872 0.362066 2.51874 0.592662 Vertex 5873 -0.216691 -2.4203 2.6623 Vertex 5874 -1.19437 5.25747 -2.10508 Vertex 5875 -1.03543 -1.94184 0.263579 Vertex 5876 0.435094 -1.09511 0.4393 Vertex 5877 -1.22869 5.3183 -1.78501 Vertex 5878 -0.577504 4.37607 -0.676269 Vertex 5879 -0.193123 2.04035 -0.12402 Vertex 5880 -0.965853 -1.2594 -2.72143 Vertex 5881 -0.972241 -0.238975 -1.33256 Vertex 5882 0.0524555 -0.723933 1.42552 Vertex 5883 -0.978832 0.633105 0.186662 Vertex 5884 0.568568 -2.64507 2.53832 Vertex 5885 1.85464 0.456014 -2.70399 Vertex 5886 -0.460945 0.848379 -0.638346 Vertex 5887 1.25235 1.37107 -2.02989 Vertex 5888 0.772395 1.997 0.00643062 Vertex 5889 -0.181521 -1.98981 -0.0665924 Vertex 5890 1.48058 1.03935 -2.88035 Vertex 5891 1.13842 0.957295 -0.597751 Vertex 5892 1.61378 1.20438 -2.40865 Vertex 5893 -0.152501 -1.41867 2.23938 Vertex 5894 -0.440644 -0.996064 -0.497246 Vertex 5895 0.517475 -2.85468 1.80212 Vertex 5896 0.212252 -1.49245 0.010358 Vertex 5897 -0.439872 0.149016 -1.03415 Vertex 5898 0.758473 2.21967 0.0090202 Vertex 5899 0.190362 -1.76456 0.759714 Vertex 5900 0.275717 2.56758 0.51513 Vertex 5901 0.305241 -2.2151 1.97676 Vertex 5902 -0.950289 -0.626853 0.0893756 Vertex 5903 1.23689 0.513299 -0.778862 Vertex 5904 0.789588 1.55057 -0.34164 Vertex 5905 -0.729325 4.47722 -1.01257 Vertex 5906 -1.3414 5.08884 -1.98948 Vertex 5907 0.722235 0.243965 -0.792886 Vertex 5908 0.395905 1.45511 -0.852052 Vertex 5909 1.25749 1.25062 -2.29232 Vertex 5910 0.907351 1.22932 0.426247 Vertex 5911 -0.132032 3.41913 -0.285104 Vertex 5912 -0.690179 0.647031 1.04046 Vertex 5913 0.564642 2.23559 -0.493054 Vertex 5914 -0.0594154 -0.301949 -0.710306 Vertex 5915 0.239529 2.93756 0.36011 Vertex 5916 0.760831 0.251915 0.478288 Vertex 5917 -0.945165 -1.28585 0.936819 Vertex 5918 0.466803 0.11455 0.834438 Vertex 5919 -0.329804 4.2406 -1.23379 Vertex 5920 -0.889524 4.97385 -1.73993 Vertex 5921 -0.0741841 -2.36644 3.00048 Vertex 5922 -0.501202 -0.220872 -1.32276 Vertex 5923 1.17643 0.841175 -0.269002 Vertex 5924 0.17214 1.65915 -0.852212 Vertex 5925 -0.241076 -2.57322 2.43211 Vertex 5926 0.12949 -0.841695 1.38756 Vertex 5927 0.261013 2.80288 0.432797 Vertex 5928 1.82683 1.06076 -2.61701 Vertex 5929 -0.446336 -1.30703 -2.66745 Vertex 5930 -0.462956 -1.23636 2.31621 Vertex 5931 -0.628628 0.649009 1.06743 Vertex 5932 -0.567596 -0.896648 1.4368 Vertex 5933 -0.675206 -2.10267 1.83441 Vertex 5934 0.306282 -1.97872 2.55107 Vertex 5935 0.443949 -3.32848 1.72962 Vertex 5936 -0.692669 -1.22714 1.41727 Vertex 5937 -0.450383 -1.24844 -2.54165 Vertex 5938 0.188795 -2.1424 2.00144 Vertex 5939 -0.926318 -0.283868 -1.7744 Vertex 5940 1.21012 0.393896 -0.768716 Vertex 5941 0.259746 -0.261968 -0.460101 Vertex 5942 -0.301255 1.3294 -0.174162 Vertex 5943 -0.120454 2.7261 -0.205837 Vertex 5944 -0.0592675 1.42472 -0.548319 Vertex 5945 -0.941849 -0.241449 -2.35691 Vertex 5946 0.420177 3.49588 -0.293677 Vertex 5947 0.0761367 -2.99726 2.35632 Vertex 5948 0.704778 -2.49334 -0.299982 Vertex 5949 1.3068 0.462553 -2.7606 Vertex 5950 0.140382 3.10739 -0.755376 Vertex 5951 -0.389744 -2.22262 0.986439 Vertex 5952 -0.385099 4.35689 -0.438325 Vertex 5953 0.379257 3.59234 -0.32122 Vertex 5954 -0.633762 -2.13144 1.5272 Vertex 5955 -0.738226 -0.405264 -0.91033 Vertex 5956 1.29778 1.22178 -2.70973 Vertex 5957 1.21571 1.23487 -1.61633 Vertex 5958 -0.769853 0.973957 0.441509 Vertex 5959 0.391293 0.116289 0.998699 Vertex 5960 -0.561275 -1.05167 -2.56878 Vertex 5961 0.876997 1.52377 0.0405783 Vertex 5962 0.144464 -1.52096 1.02759 Vertex 5963 -0.861027 0.610125 0.808274 Vertex 5964 0.561798 2.05242 -0.500273 Vertex 5965 -0.784317 -1.30437 -2.50252 Vertex 5966 -0.977398 -2.69748 -0.05204 Vertex 5967 -0.982704 -0.404327 -2.1702 Vertex 5968 -0.252485 3.67884 -0.577636 Vertex 5969 -0.482467 4.09785 -0.677692 Vertex 5970 0.355735 -0.390927 1.12805 Vertex 5971 -0.807573 -1.5723 1.49949 Vertex 5972 0.915001 0.693523 -1.50261 Vertex 5973 0.597821 -3.50356 2.35597 Vertex 5974 0.125426 -3.17236 2.04304 Vertex 5975 -0.0682972 3.57561 -0.799661 Vertex 5976 -0.0992621 -1.59856 1.68134 Vertex 5977 1.0794 1.03934 -1.54304 Vertex 5978 -0.655149 -0.684474 -2.69451 Vertex 5979 -0.957944 0.155562 -1.73819 Vertex 5980 0.558268 -0.345497 0.302054 Vertex 5981 -0.811742 -1.5798 1.3821 Vertex 5982 0.525688 1.48856 0.910106 Vertex 5983 0.358868 -1.30629 0.621147 Vertex 5984 -0.888231 0.0560524 0.499858 Vertex 5985 -0.876423 0.0203802 0.546483 Vertex 5986 -1.00784 -1.64438 0.0700223 Vertex 5987 0.35712 0.199495 -0.463262 Vertex 5988 -0.662145 0.993096 -0.307363 Vertex 5989 -0.755322 -1.23886 -2.72289 Vertex 5990 0.356861 -2.22163 2.13099 Vertex 5991 -0.913038 0.383122 0.761902 Vertex 5992 0.832609 -3.61256 2.33775 Vertex 5993 -0.302212 -0.086161 -0.610243 Vertex 5994 0.292163 2.18193 0.717281 Vertex 5995 -0.576805 -1.28289 -2.76887 Vertex 5996 -0.0565528 -2.71119 1.58395 Vertex 5997 -0.00919263 3.72277 -0.963843 Vertex 5998 -1.14264 4.9949 -1.51547 Vertex 5999 -0.677036 -2.03612 1.24337 Vertex 6000 0.594509 -3.33341 2.83921 Vertex 6001 0.675014 0.570527 -0.85087 Vertex 6002 0.723407 1.01606 -0.740006 Vertex 6003 -0.968955 -2.7028 -0.216489 Vertex 6004 -0.287553 -2.37027 2.5032 Vertex 6005 -0.798609 4.71575 -1.02795 Vertex 6006 0.266669 1.9971 -0.794448 Vertex 6007 -0.196023 -2.93222 1.95797 Vertex 6008 1.9218 0.740218 -2.80699 Vertex 6009 -0.671449 -1.06753 -2.79229 Vertex 6010 -1.0532 0.0401372 -1.31263 Vertex 6011 -0.98931 0.274202 -0.634591 Vertex 6012 0.0564345 -3.20842 1.91441 Vertex 6013 0.315336 -3.05634 2.06006 Vertex 6014 -0.453883 0.215351 -1.03465 Vertex 6015 -0.458667 -0.549637 1.52917 Vertex 6016 0.239307 -0.00386912 -0.564427 Vertex 6017 0.395238 1.85583 0.795229 Vertex 6018 -0.414985 -0.0285628 -1.52318 Vertex 6019 1.2384 1.28821 -2.42054 Vertex 6020 0.872386 1.59037 0.185014 Vertex 6021 -0.40947 -0.306601 1.53449 Vertex 6022 -0.554016 -0.28261 1.38578 Vertex 6023 -0.139591 -1.46226 2.16464 Vertex 6024 0.581611 1.19818 -0.649705 Vertex 6025 -0.620939 -0.892176 -2.47448 Vertex 6026 0.00504884 4.01204 -0.195425 Vertex 6027 -0.220676 -2.55712 1.59624 Vertex 6028 -0.511737 4.1395 -0.711747 Vertex 6029 0.326928 -1.31515 0.737285 Vertex 6030 -0.143779 4.22412 -0.939452 Vertex 6031 -0.154339 4.28635 -0.907652 Vertex 6032 -0.113652 4.22771 -0.882227 Vertex 6033 -0.122598 -2.38694 2.94123 Vertex 6034 1.11855 0.649478 -1.65308 Vertex 6035 -0.246726 -2.21227 0.960252 Vertex 6036 0.00837571 -1.59605 2.68537 Vertex 6037 -1.34945 5.12565 -2.13233 Vertex 6038 -0.964008 -0.123591 -2.15961 Vertex 6039 -0.089459 1.42448 0.894937 Vertex 6040 -0.795341 -1.74326 1.1128 Vertex 6041 -0.841119 -0.248004 1.17695 Vertex 6042 -0.866778 -0.276686 1.09941 Vertex 6043 -0.607342 0.884221 0.970017 Vertex 6044 0.527425 1.17304 1.03184 Vertex 6045 0.576516 1.12036 1.01164 Vertex 6046 1.67408 0.781044 -2.86561 Vertex 6047 -0.325422 -1.25703 2.15468 Vertex 6048 0.795203 0.697684 0.650741 Vertex 6049 -0.923583 0.750322 -0.0174489 Vertex 6050 -0.894757 0.79898 -0.0767499 Vertex 6051 0.598832 -2.42771 2.81954 Vertex 6052 -0.974392 -0.456528 -0.775049 Vertex 6053 -0.976683 -1.73589 0.739243 Vertex 6054 -0.101812 2.96901 -0.181226 Vertex 6055 -0.942232 0.252664 0.641319 Vertex 6056 1.29946 1.22784 -1.54908 Vertex 6057 -1.37442 -1.48476 -2.55496 Vertex 6058 -0.025037 3.49593 -0.812922 Vertex 6059 0.311072 -2.23338 2.08075 Vertex 6060 -0.526567 0.817887 -0.666472 Vertex 6061 -0.619639 0.774156 1.03274 Vertex 6062 -0.3628 4.1037 -1.01254 Vertex 6063 -0.519496 -1.47574 -2.75154 Vertex 6064 1.31239 0.745484 -1.82901 Vertex 6065 1.26888 0.770363 -1.84942 Vertex 6066 -0.173867 1.88617 0.291744 Vertex 6067 1.38171 0.678657 -1.46419 Vertex 6068 -0.398308 1.30668 -0.024876 Vertex 6069 -0.238784 1.71295 -0.0351044 Vertex 6070 0.271183 -1.49059 0.340897 Vertex 6071 0.627734 0.735634 0.959615 Vertex 6072 -0.385595 -2.14246 2.75715 Vertex 6073 0.757563 1.32239 0.740457 Vertex 6074 0.526324 -3.41606 2.35167 Vertex 6075 1.46553 0.992578 -1.16227 Vertex 6076 -0.308736 0.482265 1.28904 Vertex 6077 -0.988909 -0.533015 0.282921 Vertex 6078 -1.06219 -0.248131 -0.865395 Vertex 6079 -0.298487 -0.300834 1.58095 Vertex 6080 0.71762 1.3479 0.789792 Vertex 6081 0.0478922 4.10556 -0.641302 Vertex 6082 -0.0976971 -1.47711 2.33905 Vertex 6083 -0.449655 -0.178531 -1.55664 Vertex 6084 -0.792471 4.55537 -1.1267 Vertex 6085 -0.482524 4.51028 -1.32151 Vertex 6086 -0.370477 -1.55753 -2.67159 Vertex 6087 -0.174167 -2.23342 0.496258 Vertex 6088 0.690128 2.06043 -0.33848 Vertex 6089 -0.292366 -0.627571 -0.615547 Vertex 6090 0.457799 1.88016 -0.662385 Vertex 6091 0.856992 1.56789 0.341433 Vertex 6092 -0.653594 -0.293854 -0.855807 Vertex 6093 -0.476175 -1.41062 -2.51722 Vertex 6094 1.10831 0.987108 -0.754291 Vertex 6095 0.550287 -3.47306 2.70797 Vertex 6096 0.223844 -0.503634 -0.471672 Vertex 6097 0.326963 2.60792 0.578668 Vertex 6098 0.304916 1.56957 -0.989112 Vertex 6099 0.444484 -3.41282 1.74819 Vertex 6100 1.43895 0.843198 -1.92917 Vertex 6101 0.50985 0.76839 1.0907 Vertex 6102 -0.480269 0.189235 -1.271 Vertex 6103 -0.153225 -2.5762 2.61239 Vertex 6104 0.133248 0.148044 -0.972366 Vertex 6105 0.612901 2.79039 -0.335639 Vertex 6106 -0.825433 0.0457471 -2.09174 Vertex 6107 0.48629 -0.12246 -0.0768077 Vertex 6108 -0.912755 0.323966 -0.753996 Vertex 6109 -0.0156535 -1.73692 1.92434 Vertex 6110 1.38088 0.746398 -1.78966 Vertex 6111 0.386536 2.25795 0.689386 Vertex 6112 -0.0215519 -2.91876 2.56298 Vertex 6113 1.23292 0.652924 -0.52668 Vertex 6114 -0.467066 -2.11095 2.49345 Vertex 6115 -0.134433 2.60462 -0.202991 Vertex 6116 -0.314644 -2.64134 1.76717 Vertex 6117 0.399384 -2.21708 2.32027 Vertex 6118 -1.04738 0.448212 0.11745 Vertex 6119 -0.0228713 2.53366 -0.482524 Vertex 6120 -0.7898 0.0810945 1.06418 Vertex 6121 0.0788984 -1.84192 2.96255 Vertex 6122 0.127912 0.0646803 -0.893988 Vertex 6123 0.255357 3.27753 -0.735467 Vertex 6124 -0.26682 3.85038 -0.784237 Vertex 6125 0.901287 0.356145 0.221996 Vertex 6126 -0.161421 -2.09775 0.789624 Vertex 6127 0.472114 -2.65554 2.10422 Vertex 6128 -0.768406 0.497072 -0.758837 Vertex 6129 0.291369 -1.23686 0.981372 Vertex 6130 0.32696 -2.48749 2.98781 Vertex 6131 -0.077834 -0.41298 1.44307 Vertex 6132 -0.194325 3.56296 -0.550589 Vertex 6133 1.43701 1.41331 -2.16407 Vertex 6134 -0.271598 -0.258608 1.56653 Vertex 6135 -0.215236 -2.92909 1.7214 Vertex 6136 0.324512 -3.2227 2.63285 Vertex 6137 -1.44071 5.76628 -2.72279 Vertex 6138 -0.504676 0.274601 -1.42096 Vertex 6139 -0.0957164 4.27234 -0.776373 Vertex 6140 -0.473518 -1.12007 -0.460301 Vertex 6141 0.549854 0.432618 1.01161 Vertex 6142 0.0600952 1.26195 1.09469 Vertex 6143 1.0261 0.167748 -0.535448 Vertex 6144 -0.679304 -2.12206 0.464021 Vertex 6145 0.623878 -2.37067 -0.238455 Vertex 6146 -0.114902 3.77205 -0.943083 Vertex 6147 -0.0737623 3.72208 -0.951913 Vertex 6148 0.91043 0.839553 0.490936 Vertex 6149 -0.342463 -0.868018 1.51179 Vertex 6150 0.204086 -1.9218 0.59535 Vertex 6151 -0.086576 -1.17583 -0.450509 Vertex 6152 -0.567583 -2.01122 0.709261 Vertex 6153 -0.720754 0.367329 1.07783 Vertex 6154 0.851062 -3.44038 2.77147 Vertex 6155 -0.568733 -0.582569 -2.55528 Vertex 6156 0.663428 -2.41448 -0.388086 Vertex 6157 -0.764555 4.68449 -1.56223 Vertex 6158 -0.86825 5.09073 -1.52897 Vertex 6159 0.499772 -0.0972632 0.247178 Vertex 6160 0.210365 2.53279 -0.744425 Vertex 6161 -0.154792 4.26039 -0.430821 Vertex 6162 -0.272947 3.7661 -0.679712 Vertex 6163 0.643422 0.881548 -0.755958 Vertex 6164 -0.263952 1.64073 0.579345 Vertex 6165 0.0926228 3.50913 0.0786846 Vertex 6166 -0.0994592 3.49393 -0.644083 Vertex 6167 -0.587313 -1.02633 -0.451246 Vertex 6168 -0.728348 1.03096 0.541104 Vertex 6169 -0.912409 0.402861 -0.663968 Vertex 6170 -1.15437 -0.858094 -2.45563 Vertex 6171 -0.738935 -1.46943 2.12954 Vertex 6172 -0.174665 -1.4047 2.1746 Vertex 6173 -1.03888 -1.64346 0.625367 Vertex 6174 -0.153015 0.636685 -0.78985 Vertex 6175 -1.03276 -1.50387 0.107523 Vertex 6176 -0.558854 -0.2004 -2.04902 Vertex 6177 -1.20279 -1.35743 -2.5472 Vertex 6178 -0.886984 0.54422 0.780515 Vertex 6179 0.384224 2.2671 -0.672124 Vertex 6180 0.618963 2.49828 0.292175 Vertex 6181 0.100338 -1.78386 2.23377 Vertex 6182 0.124167 -0.999141 -0.438901 Vertex 6183 -0.812321 -1.30529 -2.71216 Vertex 6184 1.83025 0.782299 -2.82043 Vertex 6185 0.0707972 1.48279 -0.662302 Vertex 6186 -0.602073 1.21602 0.233129 Vertex 6187 -0.516727 -1.12527 -2.53178 Vertex 6188 -0.50493 0.760304 -0.726737 Vertex 6189 -0.677988 0.031797 -2.14583 Vertex 6190 -1.00044 0.395343 -0.29094 Vertex 6191 -0.869188 -0.429409 -0.546274 Vertex 6192 -0.0298779 -1.6619 2.02005 Vertex 6193 1.74254 0.726592 -2.55727 Vertex 6194 -0.868082 -3.06535 -0.121822 Vertex 6195 -0.902767 -1.63071 0.0164163 Vertex 6196 -0.241142 4.22252 -1.08575 Vertex 6197 -0.932553 -0.75881 -2.26818 Vertex 6198 -0.895156 -1.10284 1.04823 Vertex 6199 0.459145 -2.55049 2.01969 Vertex 6200 -0.762394 -1.85848 1.87064 Vertex 6201 0.498849 -2.3377 2.31612 Vertex 6202 -0.497955 -2.39138 1.82259 Vertex 6203 -0.862748 4.72323 -1.12505 Vertex 6204 0.388306 2.60662 -0.641177 Vertex 6205 -0.413119 0.364038 -0.940739 Vertex 6206 0.821533 0.496015 0.471146 Vertex 6207 -0.936482 -0.257888 0.735207 Vertex 6208 0.635711 -2.92007 2.82232 Vertex 6209 0.219235 -2.81845 1.57355 Vertex 6210 -0.509372 4.21774 -0.585304 Vertex 6211 -0.757755 -1.40562 1.53672 Vertex 6212 1.16835 0.976439 -0.823378 Vertex 6213 1.27326 1.07144 -2.18567 Vertex 6214 -0.0809838 -3.09122 1.83261 Vertex 6215 -0.484114 -0.0446608 -1.78797 Vertex 6216 0.120675 -2.1084 0.515888 Vertex 6217 -1.16234 5.19574 -1.6113 Vertex 6218 0.144747 2.53776 0.380295 Vertex 6219 -0.527139 -0.522478 -0.469966 Vertex 6220 0.0222703 2.05302 0.531816 Vertex 6221 0.424908 3.40375 -0.390076 Vertex 6222 -0.0809684 2.5159 -0.394306 Vertex 6223 0.452767 -2.27018 2.33874 Vertex 6224 -0.0862367 -1.97426 -0.0586703 Vertex 6225 1.25752 0.615669 -0.834893 Vertex 6226 -0.446523 -0.0545827 -0.632039 Vertex 6227 -0.499138 -2.32873 1.9295 Vertex 6228 0.319179 3.65956 -0.436513 Vertex 6229 -0.581058 -0.165244 -1.10351 Vertex 6230 -0.595571 -2.12852 2.08496 Vertex 6231 0.226393 3.1554 0.306698 Vertex 6232 0.32392 -2.91333 2.94201 Vertex 6233 0.00354634 2.31259 0.363641 Vertex 6234 -0.808646 -0.337984 -1.58659 Vertex 6235 -0.745002 -0.352122 -1.50679 Vertex 6236 -0.579171 -0.36378 -2.29271 Vertex 6237 -0.548632 -2.24467 1.92855 Vertex 6238 -0.213784 -0.287665 -0.665891 Vertex 6239 0.662958 0.137083 0.490311 Vertex 6240 0.645971 -3.22367 2.28654 Vertex 6241 1.44481 1.24463 -2.62568 Vertex 6242 1.02437 0.158894 -0.605177 Vertex 6243 0.272465 3.79089 -0.268822 Vertex 6244 0.535549 -3.06695 1.62955 Vertex 6245 -1.34418 5.3157 -2.39609 Vertex 6246 -0.744115 4.7848 -1.58492 Vertex 6247 -0.322062 -2.40687 1.38593 Vertex 6248 -0.382277 -0.0316563 -0.60409 Vertex 6249 0.358314 2.29543 0.70336 Vertex 6250 -0.209204 1.99569 -0.0750674 Vertex 6251 -0.140899 -0.754519 1.46926 Vertex 6252 -0.103005 1.89871 0.501925 Vertex 6253 0.201295 0.957555 1.14575 Vertex 6254 0.329424 1.55948 -0.909363 Vertex 6255 -0.41964 -0.423605 1.53603 Vertex 6256 -0.392825 1.41863 0.158918 Vertex 6257 -1.06439 4.86137 -1.40247 Vertex 6258 0.245269 3.18598 -0.756758 Vertex 6259 -0.77814 -1.24758 1.20738 Vertex 6260 1.47476 0.920085 -1.48683 Vertex 6261 1.38736 0.816887 -2.54413 Vertex 6262 0.403819 0.0329806 0.911757 Vertex 6263 -0.917041 -2.99177 -0.146989 Vertex 6264 -0.114623 3.93822 -0.14148 Vertex 6265 -0.0330084 1.12049 1.14544 Vertex 6266 -0.0800021 1.06106 1.14082 Vertex 6267 0.318256 -2.87351 2.29524 Vertex 6268 -1.54587 5.45915 -2.50805 Vertex 6269 -0.0370501 -2.18406 0.166165 Vertex 6270 0.528818 -2.68513 2.96589 Vertex 6271 -1.12718 -1.21398 -2.50632 Vertex 6272 1.60153 1.14426 -2.0675 Vertex 6273 0.395654 -0.979628 -0.118688 Vertex 6274 -0.772732 0.60125 0.97792 Vertex 6275 -0.241502 -2.28214 1.16025 Vertex 6276 -0.584878 1.1649 -0.0434989 Vertex 6277 0.809423 1.49678 0.49061 Vertex 6278 0.114333 -1.22745 -0.343855 Vertex 6279 0.0230104 2.41568 -0.533401 Vertex 6280 0.215931 3.51715 -0.717865 Vertex 6281 -0.304516 1.27278 -0.243436 Vertex 6282 -0.946827 0.139019 0.507918 Vertex 6283 1.44939 1.16159 -1.57215 Vertex 6284 -1.0676 -1.03171 0.634141 Vertex 6285 -0.6246 -1.92184 2.35397 Vertex 6286 1.3105 0.883454 -2.00143 Vertex 6287 -1.12213 -2.35903 -0.256321 Vertex 6288 -0.701441 1.02395 -0.142334 Vertex 6289 1.04282 1.17621 0.0200145 Vertex 6290 -0.0096901 -1.81555 1.82831 Vertex 6291 -0.25845 -0.498874 -0.635447 Vertex 6292 0.116808 1.3178 -0.80745 Vertex 6293 -0.814383 -1.25547 -2.45669 Vertex 6294 0.377052 -2.8848 2.16442 Vertex 6295 0.0752966 1.96484 0.638193 Vertex 6296 1.34026 0.944699 -0.942585 Vertex 6297 0.202699 -1.71705 0.084912 Vertex 6298 0.310507 1.62066 0.908091 Vertex 6299 1.2791 1.21123 -1.46984 Vertex 6300 -1.00729 -0.044221 -1.65145 Vertex 6301 -0.599583 -1.0828 -2.72099 Vertex 6302 0.285319 -0.427146 -0.415324 Vertex 6303 -0.146183 2.20884 -0.268974 Vertex 6304 0.0444791 2.33045 0.395674 Vertex 6305 0.11407 -1.75182 2.39844 Vertex 6306 0.24164 0.0470599 1.22771 Vertex 6307 -0.488158 1.12179 0.906982 Vertex 6308 -0.976606 0.186003 -1.6665 Vertex 6309 -0.805156 0.89994 0.480909 Vertex 6310 0.50886 -0.238344 -0.282769 Vertex 6311 -1.05878 0.342138 0.0414291 Vertex 6312 -0.639728 0.111531 1.21338 Vertex 6313 0.679895 -2.9628 2.31099 Vertex 6314 0.113462 2.91399 -0.623909 Vertex 6315 -0.739048 -0.985777 -0.346489 Vertex 6316 0.480709 0.47928 1.0984 Vertex 6317 0.628327 -2.55303 2.8515 Vertex 6318 0.711712 2.5654 -0.123175 Vertex 6319 -0.0905585 -1.78186 1.09928 Vertex 6320 -0.735546 -1.61569 2.18915 Vertex 6321 -0.0849122 -1.81537 1.03982 Vertex 6322 -0.193701 1.57887 0.725935 Vertex 6323 -0.0162375 -1.6491 -0.0803144 Vertex 6324 1.46857 0.872465 -1.42165 Vertex 6325 0.147684 2.86564 -0.675784 Vertex 6326 -0.404304 1.15317 -0.277828 Vertex 6327 1.96063 0.706137 -2.81492 Vertex 6328 -0.441 -1.83642 -0.0688086 Vertex 6329 0.543635 -2.41244 2.42412 Vertex 6330 -0.336539 1.22572 -0.201044 Vertex 6331 -0.796718 -1.39892 1.23357 Vertex 6332 -0.982351 0.503706 0.526581 Vertex 6333 0.547903 0.0198655 0.183187 Vertex 6334 -0.713926 -1.33855 1.67108 Vertex 6335 -0.467605 4.06071 -0.789358 Vertex 6336 -0.0973653 -2.22591 0.540989 Vertex 6337 -0.034959 3.04817 -0.0219869 Vertex 6338 0.494294 -2.36713 2.23514 Vertex 6339 -0.803388 0.368942 -1.33146 Vertex 6340 -0.807296 0.274416 -1.73846 Vertex 6341 0.322924 0.819397 1.17704 Vertex 6342 0.182661 -2.78108 2.95564 Vertex 6343 -0.988145 -0.0205337 -1.76616 Vertex 6344 0.192784 -1.71171 0.779688 Vertex 6345 0.439867 3.02028 -0.554504 Vertex 6346 1.02884 1.19024 0.0824344 Vertex 6347 0.188196 2.87934 -0.744601 Vertex 6348 0.846863 1.31832 0.55579 Vertex 6349 0.228358 1.25646 1.05034 Vertex 6350 -0.782212 0.038032 1.11992 Vertex 6351 -0.876474 0.201791 -1.77933 Vertex 6352 -0.0712747 -2.06186 1.67123 Vertex 6353 0.984279 0.25813 -1.21972 Vertex 6354 1.44545 0.933446 -2.46093 Vertex 6355 0.992765 0.156785 -0.381093 Vertex 6356 0.763915 -2.24528 -0.383871 Vertex 6357 0.145143 -2.20925 1.72149 Vertex 6358 -0.683114 1.12696 0.531145 Vertex 6359 0.652505 0.933963 -0.736174 Vertex 6360 0.449833 2.22164 -0.594956 Vertex 6361 -0.919668 -0.24718 0.110177 Vertex 6362 -0.0641264 -2.75681 1.69278 Vertex 6363 0.957074 1.37481 0.178106 Vertex 6364 -0.49507 -0.0316529 -1.14466 Vertex 6365 -0.815383 4.80686 -1.05671 Vertex 6366 -0.388165 -2.48113 1.8452 Vertex 6367 1.46259 1.17209 -1.64145 Vertex 6368 0.859052 1.20682 0.553059 Vertex 6369 -1.2936 5.04627 -1.85156 Vertex 6370 -1.01038 0.266824 -0.467975 Vertex 6371 -0.457973 -2.40554 1.91621 Vertex 6372 0.150842 -0.0570055 1.34646 Vertex 6373 0.449872 -3.43871 2.3053 Vertex 6374 0.521084 2.81707 0.232274 Vertex 6375 0.819895 -2.32728 -0.454811 Vertex 6376 -0.0148567 -1.70017 2.92449 Vertex 6377 1.15428 0.972621 -0.495847 Vertex 6378 -0.435961 -1.3795 2.64063 Vertex 6379 0.6659 -2.74897 2.92114 Vertex 6380 1.54082 1.27984 -2.01847 Vertex 6381 -0.0821605 2.83631 -0.0366391 Vertex 6382 0.644809 -2.74095 2.98659 Vertex 6383 0.67343 -2.66241 2.98266 Vertex 6384 -0.205265 1.93117 -0.0805452 Vertex 6385 0.829855 1.59771 0.0851933 Vertex 6386 0.786507 0.748486 -0.949788 Vertex 6387 0.381814 -3.1217 1.45386 Vertex 6388 0.0240633 4.04821 -0.252649 Vertex 6389 -1.13836 -1.03315 -2.44171 Vertex 6390 0.945868 1.08905 0.361671 Vertex 6391 1.23972 1.30496 -2.61162 Vertex 6392 0.45207 -3.28196 1.41323 Vertex 6393 -0.194382 1.58599 -0.325405 Vertex 6394 -0.512607 -2.08966 1.01934 Vertex 6395 0.671974 -3.49297 2.35594 Vertex 6396 -0.166503 0.750394 -0.752599 Vertex 6397 0.0609738 0.11322 -0.972514 Vertex 6398 -0.779129 -0.0847357 -2.39896 Vertex 6399 0.498896 -2.89064 1.90805 Vertex 6400 -0.368955 -1.33331 -0.388369 Vertex 6401 -0.749358 -1.40147 1.62122 Vertex 6402 -0.168232 0.0157122 -0.772071 Vertex 6403 -0.717671 4.77916 -0.948993 Vertex 6404 0.420268 -3.39822 1.39365 Vertex 6405 -0.54662 -0.104368 -1.08384 Vertex 6406 0.569094 -3.6166 2.50796 Vertex 6407 0.14253 -0.754374 -0.4979 Vertex 6408 1.11089 1.17611 -1.3143 Vertex 6409 -0.126949 0.585834 -0.835792 Vertex 6410 -0.138718 0.698612 -0.783343 Vertex 6411 -0.783548 1.00488 0.261799 Vertex 6412 1.29251 1.31417 -2.33574 Vertex 6413 -0.666989 0.755475 1.01079 Vertex 6414 1.18557 0.562953 -0.391273 Vertex 6415 0.577672 2.87313 -0.363739 Vertex 6416 0.556044 2.85673 -0.417974 Vertex 6417 0.0222101 -3.01279 2.526 Vertex 6418 -0.790667 -1.45813 1.4171 Vertex 6419 1.23907 0.566429 -0.684691 Vertex 6420 -0.340466 4.52397 -0.739846 Vertex 6421 0.690181 1.08238 -0.644471 Vertex 6422 1.71651 0.37645 -2.53722 Vertex 6423 -0.352044 4.25624 -1.25614 Vertex 6424 1.69461 0.610397 -2.84735 Vertex 6425 -0.41277 0.88256 -0.590697 Vertex 6426 1.79766 0.498853 -2.7594 Vertex 6427 -0.000507239 0.743592 -0.858038 Vertex 6428 -1.05901 -0.727531 0.381949 Vertex 6429 -0.0650145 3.83107 -0.0798542 Vertex 6430 -0.060086 -3.01716 2.13451 Vertex 6431 0.579835 -3.27236 1.62479 Vertex 6432 0.434503 -1.04601 0.530624 Vertex 6433 -0.383177 0.553631 -0.842102 Vertex 6434 1.31443 0.538043 -0.946927 Vertex 6435 -0.892752 -1.5333 -2.406 Vertex 6436 0.807134 -3.35816 2.91647 Vertex 6437 -0.811112 -1.45077 -2.56239 Vertex 6438 0.86039 0.816519 -1.29634 Vertex 6439 -0.702149 -0.566554 -0.327512 Vertex 6440 -1.55026 5.65603 -2.67797 Vertex 6441 -0.127631 -2.00746 1.30808 Vertex 6442 -1.23228 -2.63333 -0.157981 Vertex 6443 0.0817179 4.05897 -0.612623 Vertex 6444 1.66506 1.1471 -2.29765 Vertex 6445 -0.816279 0.342466 -1.22992 Vertex 6446 -1.10331 -0.0826277 -0.478483 Vertex 6447 0.410992 -2.93633 3.04056 Vertex 6448 -0.778597 4.57209 -1.51256 Vertex 6449 1.47574 0.972349 -1.49876 Vertex 6450 0.482611 -2.59278 1.9608 Vertex 6451 0.701905 -2.97995 2.40823 Vertex 6452 0.815119 1.63459 0.164736 Vertex 6453 1.4676 1.07712 -1.42005 Vertex 6454 -1.20495 5.35584 -1.8642 Vertex 6455 -0.498653 -1.51214 -2.73201 Vertex 6456 -0.865063 4.73162 -1.65451 Vertex 6457 0.72754 1.09167 0.842305 Vertex 6458 0.340587 1.14762 1.09883 Vertex 6459 1.11521 1.11302 -0.315877 Vertex 6460 -0.424285 0.024668 -1.39283 Vertex 6461 -0.230122 -0.927723 1.46385 Vertex 6462 -1.01554 -2.31203 -0.291452 Vertex 6463 0.757938 0.068668 -0.106189 Vertex 6464 -0.920425 -1.28653 1.00528 Vertex 6465 -0.354482 4.4152 -0.486492 Vertex 6466 0.649844 1.95293 0.511874 Vertex 6467 0.680292 1.94146 0.441682 Vertex 6468 0.299792 1.01397 -0.885816 Vertex 6469 -0.20325 -2.19759 2.93662 Vertex 6470 -0.747821 0.249547 -1.80228 Vertex 6471 0.378673 -2.8004 1.52652 Vertex 6472 0.341651 -2.69505 1.54071 Vertex 6473 -0.201056 -1.4329 1.64635 Vertex 6474 -0.142923 -2.18864 1.437 Vertex 6475 0.798679 0.413003 0.503259 Vertex 6476 -0.906403 -0.531339 0.0326969 Vertex 6477 1.3033 0.52312 -2.85605 Vertex 6478 0.513745 -0.170305 0.0805281 Vertex 6479 0.31074 -2.15449 2.12073 Vertex 6480 1.26269 1.03437 -2.12169 Vertex 6481 -1.39419 -1.36809 -2.59898 Vertex 6482 -1.04664 -0.806676 0.716026 Vertex 6483 1.60763 0.818882 -2.51083 Vertex 6484 -0.193143 -2.24048 0.241729 Vertex 6485 0.110116 -0.227289 1.38955 Vertex 6486 1.21378 1.2525 -2.46806 Vertex 6487 -1.04203 -1.7209 0.56762 Vertex 6488 -0.0912016 -1.59287 1.84322 Vertex 6489 -0.785404 -0.42696 -0.94771 Vertex 6490 1.80298 1.02584 -2.52368 Vertex 6491 0.513114 -2.32644 2.95947 Vertex 6492 -0.0833884 2.12835 -0.372537 Vertex 6493 -1.02359 -1.07943 0.792729 Vertex 6494 -0.513712 -1.58587 -0.159659 Vertex 6495 -0.54955 -0.163287 -0.891283 Vertex 6496 -0.18634 4.08815 -0.214865 Vertex 6497 -0.485662 -2.19461 1.11262 Vertex 6498 0.020639 -2.58468 3.1399 Vertex 6499 0.305712 -2.08449 0.00365205 Vertex 6500 -0.522933 -2.35869 1.704 Vertex 6501 -0.810093 -1.71154 1.4346 Vertex 6502 0.5409 1.41937 0.937564 Vertex 6503 0.161235 2.07928 -0.630145 Vertex 6504 -0.509661 -0.623466 1.48501 Vertex 6505 0.525468 3.04959 -0.395262 Vertex 6506 -0.121923 -0.0632464 -0.772181 Vertex 6507 0.45957 -3.06339 2.84137 Vertex 6508 -0.210668 -2.51891 2.50656 Vertex 6509 0.643566 1.73255 0.671099 Vertex 6510 -1.0987 5.27106 -1.75089 Vertex 6511 -0.899117 -0.283692 -1.5716 Vertex 6512 -0.523914 -2.12987 1.12631 Vertex 6513 0.261675 -0.387263 1.2957 Vertex 6514 -0.301072 -1.30031 1.56368 Vertex 6515 0.982202 0.506691 0.150529 Vertex 6516 -1.05206 -0.531148 -2.39012 Vertex 6517 0.136522 -2.96991 2.30699 Vertex 6518 -1.06618 -0.645459 -2.34598 Vertex 6519 0.475529 -1.02265 0.0506565 Vertex 6520 -1.50163 5.3078 -2.25492 Vertex 6521 0.303301 -1.78953 0.12822 Vertex 6522 -0.194253 4.34273 -0.546015 Vertex 6523 -0.367542 0.296736 1.28949 Vertex 6524 -0.986149 4.73269 -1.60703 Vertex 6525 0.781379 -2.19424 -0.453922 Vertex 6526 -0.882773 0.328235 0.821429 Vertex 6527 0.246677 -1.43896 0.920994 Vertex 6528 0.429441 -0.769289 -0.170137 Vertex 6529 -1.04155 -1.19605 0.286738 Vertex 6530 -0.896213 -2.02459 -0.114731 Vertex 6531 0.185979 -1.77193 -0.0306625 Vertex 6532 1.48933 1.38424 -2.12779 Vertex 6533 0.711784 -3.06247 2.70761 Vertex 6534 -1.00041 -1.35702 0.0261568 Vertex 6535 -0.803637 -0.874311 1.22373 Vertex 6536 0.54101 0.0573611 -0.113736 Vertex 6537 0.492611 3.33407 -0.067114 Vertex 6538 -1.4148 5.57556 -2.70763 Vertex 6539 -0.243282 -2.42467 1.31554 Vertex 6540 1.37225 1.06327 -2.38187 Vertex 6541 -0.729343 -1.97417 1.72827 Vertex 6542 0.351935 -2.19581 2.1914 Vertex 6543 0.0185109 -2.96476 2.54997 Vertex 6544 0.0351028 -1.68292 2.84942 Vertex 6545 0.0906038 -2.64958 3.13015 Vertex 6546 -0.709153 0.0221438 -2.20457 Vertex 6547 1.08256 0.538748 -0.0761695 Vertex 6548 0.789893 1.04672 -0.753196 Vertex 6549 0.0478947 2.41661 0.353007 Vertex 6550 -0.515359 -1.35189 -2.78989 Vertex 6551 0.900249 0.838514 -1.395 Vertex 6552 -1.09443 -1.61741 0.420653 Vertex 6553 0.0414267 -0.370446 -0.64697 Vertex 6554 -0.864635 0.643058 -0.439007 Vertex 6555 -1.01984 -1.66081 0.681117 Vertex 6556 -0.384791 0.952482 -0.50605 Vertex 6557 0.158987 -3.20233 2.01232 Vertex 6558 -0.802515 0.745784 -0.403786 Vertex 6559 0.0977749 0.173369 -1.01249 Vertex 6560 -1.14953 5.0732 -1.5512 Vertex 6561 -0.0965932 -2.02091 1.39014 Vertex 6562 -0.12867 -1.20754 1.39693 Vertex 6563 -1.1739 5.17394 -2.10171 Vertex 6564 -0.718623 -0.319664 -1.19314 Vertex 6565 0.33427 1.7435 -0.856694 Vertex 6566 -0.723021 0.255151 1.07949 Vertex 6567 0.474047 -3.18762 2.79347 Vertex 6568 -0.568313 -0.21112 -1.21293 Vertex 6569 -0.768942 0.146236 -1.92053 Vertex 6570 0.668486 0.0890606 0.326477 Vertex 6571 0.252857 -0.377715 -0.457126 Vertex 6572 0.486776 -3.05527 2.29848 Vertex 6573 -0.0428776 -1.51291 2.70773 Vertex 6574 -0.29349 -2.14084 0.129766 Vertex 6575 0.12361 -3.03644 1.58896 Vertex 6576 -0.866531 0.215318 0.78406 Vertex 6577 1.01663 1.05188 -0.798779 Vertex 6578 -0.110734 0.998522 1.16596 Vertex 6579 -0.897319 0.809258 -0.00421006 Vertex 6580 1.8468 0.671195 -2.64877 Vertex 6581 0.903169 0.0948041 -0.310828 Vertex 6582 -0.71508 -0.311222 -1.05403 Vertex 6583 0.112892 -3.22275 1.93165 Vertex 6584 1.3806 1.35707 -2.37799 Vertex 6585 0.0932189 1.5412 -0.704771 Vertex 6586 -0.294642 -0.471274 1.56622 Vertex 6587 0.110618 3.5708 0.123898 Vertex 6588 -0.565079 4.25228 -0.994728 Vertex 6589 -0.287651 -1.35034 -0.370071 Vertex 6590 0.571757 1.68792 0.765492 Vertex 6591 0.105686 1.54103 0.908166 Vertex 6592 -0.282187 3.74299 -0.604156 Vertex 6593 -0.917648 0.747448 0.266865 Vertex 6594 0.324441 -3.49116 1.72315 Vertex 6595 0.952807 1.0074 -1.29528 Vertex 6596 -1.05728 -2.67371 -0.256975 Vertex 6597 -0.260599 -2.19191 0.870426 Vertex 6598 -0.150523 1.8544 -0.281373 Vertex 6599 1.55411 0.689396 -2.60968 Vertex 6600 0.444754 -3.09503 1.47383 Vertex 6601 0.110227 -3.019 2.42465 Vertex 6602 -0.0906727 -1.61406 -0.145827 Vertex 6603 -1.29312 5.43209 -2.21597 Vertex 6604 -0.812946 5.02855 -1.52666 Vertex 6605 0.551617 2.24974 0.493814 Vertex 6606 1.0441 0.98675 -1.53896 Vertex 6607 -0.551411 -1.22733 2.11905 Vertex 6608 -0.46617 -2.35839 1.96561 Vertex 6609 0.268346 -0.997475 1.14362 Vertex 6610 0.390429 -2.68106 1.64024 Vertex 6611 -0.602544 4.30186 -1.06736 Vertex 6612 0.293322 -2.82023 3.1518 Vertex 6613 -0.966397 -0.902494 0.0223669 Vertex 6614 0.497112 -0.863055 0.44248 Vertex 6615 0.00857465 2.70743 0.194066 Vertex 6616 -0.590462 0.607072 -0.842796 Vertex 6617 0.467615 1.18573 1.05416 Vertex 6618 0.432073 -2.75092 2.07456 Vertex 6619 -0.768674 4.49829 -1.18861 Vertex 6620 0.427543 -0.281454 -0.331917 Vertex 6621 -0.380858 -1.06676 1.49969 Vertex 6622 0.311988 -0.436468 1.20849 Vertex 6623 -0.721275 4.50647 -0.948873 Vertex 6624 -0.0414222 4.10286 -0.287552 Vertex 6625 1.2293 0.313573 -1.05935 Vertex 6626 -0.728627 -0.180001 1.27483 Vertex 6627 -0.187478 -1.23507 1.4224 Vertex 6628 0.0604901 -1.67155 2.78753 Vertex 6629 -1.08481 -0.0279368 -0.503452 Vertex 6630 -0.414537 -0.459359 -0.534824 Vertex 6631 -0.415676 -1.2319 1.90533 Vertex 6632 0.264202 -1.95734 2.85231 Vertex 6633 -0.532235 -0.107764 -1.92524 Vertex 6634 1.00793 1.25248 0.0875104 Vertex 6635 1.08385 0.243363 -1.21646 Vertex 6636 -1.2881 -1.27149 -2.70276 Vertex 6637 -0.567707 -2.15396 0.160156 Vertex 6638 1.1376 0.325678 -2.73926 Vertex 6639 0.209009 -1.47761 0.960623 Vertex 6640 -0.816261 0.0640817 -2.03164 Vertex 6641 -0.00351304 0.824942 -0.823224 Vertex 6642 -0.677041 -1.61067 2.3323 Vertex 6643 -0.822438 0.690901 -0.442065 Vertex 6644 -1.03978 4.95138 -1.3738 Vertex 6645 -0.92111 -0.669961 -0.0361103 Vertex 6646 0.531915 -0.236399 0.505894 Vertex 6647 -0.140558 -2.2418 0.431174 Vertex 6648 -1.10599 -1.75494 0.281786 Vertex 6649 -0.748134 -1.92286 1.74605 Vertex 6650 -0.969835 -1.04333 -0.0663905 Vertex 6651 0.55499 -2.49439 2.46071 Vertex 6652 0.559054 -0.632099 0.253689 Vertex 6653 -0.291485 0.429608 1.35252 Vertex 6654 -0.460581 0.0696097 -1.05419 Vertex 6655 -0.676939 -0.626277 -2.66204 Vertex 6656 0.888875 0.7561 0.520827 Vertex 6657 0.709731 1.90369 -0.363511 Vertex 6658 -0.934852 -0.268037 -2.44011 Vertex 6659 0.363367 -2.14583 2.89945 Vertex 6660 0.434146 1.74164 0.810877 Vertex 6661 -0.540946 -0.23626 -1.28296 Vertex 6662 0.442372 2.96667 0.216544 Vertex 6663 1.64958 1.06993 -2.81784 Vertex 6664 -0.0330793 -1.92389 -0.0387445 Vertex 6665 -1.02154 -0.225289 -1.08486 Vertex 6666 0.442445 -1.05019 0.341695 Vertex 6667 0.543635 -3.01149 1.8547 Vertex 6668 0.0654852 3.43768 0.0282142 Vertex 6669 -1.22181 -2.85191 -0.222917 Vertex 6670 -0.0787762 2.22353 0.256501 Vertex 6671 -0.680209 -1.32038 2.11564 Vertex 6672 -0.513756 0.083517 -1.77571 Vertex 6673 -0.492577 -0.106858 -0.817035 Vertex 6674 -0.32928 0.397753 1.29733 Vertex 6675 -0.884067 -0.100308 0.897277 Vertex 6676 -0.0344735 1.3709 -0.572257 Vertex 6677 -1.03814 0.0121837 -1.5366 Vertex 6678 0.211958 -1.84459 2.66775 Vertex 6679 0.713291 1.32673 -0.533265 Vertex 6680 -0.594743 -0.237404 -0.528735 Vertex 6681 0.288627 -1.37764 0.112493 Vertex 6682 0.458759 -0.647098 -0.101718 Vertex 6683 -0.487821 -1.58441 2.76142 Vertex 6684 0.758092 -2.47993 -0.321551 Vertex 6685 -0.308452 4.45234 -0.633419 Vertex 6686 -0.424543 -2.12169 0.575766 Vertex 6687 -0.016931 2.29219 -0.463361 Vertex 6688 0.417062 -0.463228 -0.298629 Vertex 6689 -0.70732 -1.28136 1.85478 Vertex 6690 -0.0885854 -0.90107 -0.558593 Vertex 6691 1.88538 0.279753 -2.4417 Vertex 6692 -0.957337 -0.55095 0.967855 Vertex 6693 -0.217784 1.22975 -0.479534 Vertex 6694 0.410417 -3.46895 1.39244 Vertex 6695 -0.156969 3.57365 -0.276547 Vertex 6696 1.25399 1.19775 -2.68416 Vertex 6697 0.871692 1.55469 0.0920389 Vertex 6698 -0.621441 -0.360865 -2.12666 Vertex 6699 -0.29897 1.37935 -0.0968691 Vertex 6700 -0.063475 3.66746 -0.0920151 Vertex 6701 1.23091 0.562683 -1.62402 Vertex 6702 0.911478 0.153822 -0.952267 Vertex 6703 -0.165182 0.798879 1.27156 Vertex 6704 -0.676041 0.895613 -0.466952 Vertex 6705 -0.645306 0.900654 -0.49571 Vertex 6706 -0.146191 3.73718 -0.18967 Vertex 6707 -1.08983 -1.94503 0.152784 Vertex 6708 0.615095 1.49837 -0.590625 Vertex 6709 0.108722 1.41095 1.00203 Vertex 6710 0.28324 -0.0814056 -0.415639 Vertex 6711 0.253487 1.82363 -0.847354 Vertex 6712 0.135499 -0.564082 1.39977 Vertex 6713 1.37727 0.575851 -1.27273 Vertex 6714 -1.01351 0.0668266 -0.849233 Vertex 6715 -0.968013 -0.24036 -1.92545 Vertex 6716 -1.3673 5.15893 -2.16548 Vertex 6717 0.552026 -0.620633 0.478705 Vertex 6718 -0.587941 -0.49748 -0.430917 Vertex 6719 -0.768789 -1.84243 1.20832 Vertex 6720 -0.692385 0.942961 0.823734 Vertex 6721 0.0992519 2.392 0.407177 Vertex 6722 -0.722154 0.696545 -0.654092 Vertex 6723 -0.404456 -2.1541 0.471289 Vertex 6724 -0.166024 1.03946 1.05478 Vertex 6725 -0.169714 4.15985 -0.24383 Vertex 6726 -0.904849 -2.0952 -0.106068 Vertex 6727 1.52483 1.14038 -2.7802 Vertex 6728 0.333764 0.432329 -0.867147 Vertex 6729 0.413549 -3.2378 2.35278 Vertex 6730 0.440908 -0.921851 0.692583 Vertex 6731 0.274408 -1.44873 0.296978 Vertex 6732 0.472912 0.913034 1.12088 Vertex 6733 0.322327 0.0745183 -0.439148 Vertex 6734 1.21779 1.19878 -2.49234 Vertex 6735 -1.06764 -0.956282 -2.76211 Vertex 6736 -0.205245 2.0485 0.00914418 Vertex 6737 0.485111 -0.214548 0.734988 Vertex 6738 0.101716 3.69044 -0.81094 Vertex 6739 0.553328 3.14647 -0.0543216 Vertex 6740 -0.930896 -0.445599 0.203509 Vertex 6741 -0.60236 -1.77004 2.53307 Vertex 6742 -0.962663 0.568367 -0.203423 Vertex 6743 -0.674293 -0.539831 -0.378404 Vertex 6744 -1.01209 -0.81943 0.0583744 Vertex 6745 0.249754 -3.16266 2.58769 Vertex 6746 -0.100348 -1.94486 1.39387 Vertex 6747 -0.541772 -0.982916 -0.473724 Vertex 6748 -0.972513 -0.102101 -1.8469 Vertex 6749 -0.430136 -0.0061844 1.38425 Vertex 6750 -0.773614 -1.84172 1.46129 Vertex 6751 0.832487 1.63478 -0.0782955 Vertex 6752 -0.0830737 -1.46009 -0.254124 Vertex 6753 -0.989034 0.544509 0.394069 Vertex 6754 0.245169 1.32891 1.0287 Vertex 6755 -1.07233 -0.602582 -2.38854 Vertex 6756 0.795645 1.88914 -0.0678544 Vertex 6757 -0.642036 -0.326326 -1.40723 Vertex 6758 1.05793 1.02629 -0.748022 Vertex 6759 -0.975091 -0.740978 -2.72968 Vertex 6760 -0.309176 1.0791 -0.404627 Vertex 6761 -0.49395 -0.905673 1.48407 Vertex 6762 0.225853 3.74576 -0.07251 Vertex 6763 1.14427 0.209073 -0.84994 Vertex 6764 0.0727476 2.7112 0.256764 Vertex 6765 -0.79659 -1.06126 1.19827 Vertex 6766 0.130527 -0.920508 1.34896 Vertex 6767 0.509408 0.449183 1.0648 Vertex 6768 1.48448 1.18774 -1.73913 Vertex 6769 1.35045 0.589508 -1.49981 Vertex 6770 -0.481486 -0.109779 -0.631099 Vertex 6771 0.0486904 -1.93667 3.01812 Vertex 6772 0.780147 -2.20682 -0.509762 Vertex 6773 1.83194 0.446226 -2.48213 Vertex 6774 -0.653769 -0.690479 -2.44238 Vertex 6775 -0.0983895 -1.57014 1.96526 Vertex 6776 0.905335 0.921916 0.481198 Vertex 6777 -0.985773 -1.45053 0.0288416 Vertex 6778 0.246954 1.69429 -0.932701 Vertex 6779 -0.506327 -2.3531 1.86047 Vertex 6780 0.202065 -1.83203 -0.115567 Vertex 6781 0.369458 -0.538588 -0.310627 Vertex 6782 -0.102264 4.22717 -0.424384 Vertex 6783 1.15381 1.20371 -1.21561 Vertex 6784 1.15515 1.17395 -1.63045 Vertex 6785 0.499874 0.0248076 0.667812 Vertex 6786 -0.483464 0.343498 1.1941 Vertex 6787 0.780797 1.83936 0.0461966 Vertex 6788 -0.577583 4.64156 -1.40787 Vertex 6789 -0.0606864 -2.03497 1.72257 Vertex 6790 -1.36279 -1.43308 -2.5841 Vertex 6791 0.887565 0.91525 -1.21769 Vertex 6792 -0.504161 0.251311 -1.3015 Vertex 6793 0.319703 -2.86682 3.04024 Vertex 6794 1.47256 0.874616 -2.49083 Vertex 6795 -1.5475 5.39212 -2.38181 Vertex 6796 -1.05279 0.330391 0.145622 Vertex 6797 0.759558 -3.07144 2.43826 Vertex 6798 0.449656 0.851816 1.13851 Vertex 6799 0.756798 -3.11623 2.69255 Vertex 6800 -0.883739 -0.0398344 0.424083 Vertex 6801 0.47023 2.92498 -0.535228 Vertex 6802 -0.950832 -0.408324 0.927681 Vertex 6803 -0.928739 -0.392264 0.987149 Vertex 6804 -0.613363 1.15284 0.730043 Vertex 6805 -1.12506 5.124 -1.54133 Vertex 6806 0.147812 1.68331 -0.770947 Vertex 6807 -0.575953 -2.23647 1.49909 Vertex 6808 -0.561775 -1.86949 2.58294 Vertex 6809 -0.595283 -2.22309 1.77697 Vertex 6810 -0.759052 -0.515727 -2.06606 Vertex 6811 -0.672316 -0.429605 -2.05535 Vertex 6812 0.615432 -3.43875 1.64175 Vertex 6813 0.190952 -1.64199 0.114238 Vertex 6814 -0.262786 -1.31473 1.4841 Vertex 6815 0.969559 1.27513 0.20195 Vertex 6816 0.465492 -2.22248 2.52474 Vertex 6817 0.356434 -0.745404 1.04817 Vertex 6818 0.354243 -1.03729 0.95382 Vertex 6819 0.51976 2.51907 -0.538953 Vertex 6820 0.0665537 -1.83177 -0.00809304 Vertex 6821 0.0269378 0.996401 -0.75354 Vertex 6822 -0.636838 -0.406559 -2.5242 Vertex 6823 0.221523 -1.989 0.525882 Vertex 6824 -0.299795 -2.82842 1.93824 Vertex 6825 0.0885668 -2.68935 1.6036 Vertex 6826 -0.810754 -0.959043 1.19786 Vertex 6827 0.20203 1.07858 -0.882176 Vertex 6828 0.0742872 -1.75972 2.18162 Vertex 6829 0.426061 -3.4749 2.47789 Vertex 6830 1.73545 0.830226 -2.53449 Vertex 6831 0.672419 1.48897 -0.49909 Vertex 6832 -1.17175 -2.63747 -0.119928 Vertex 6833 -0.860867 -1.08578 -2.41275 Vertex 6834 -1.29539 5.12153 -2.15632 Vertex 6835 -1.17686 -1.13615 -2.44495 Vertex 6836 -0.568708 -0.511282 -2.59565 Vertex 6837 0.991638 0.909549 -1.50531 Vertex 6838 0.315263 1.62364 -0.934875 Vertex 6839 0.471279 -0.144366 0.755051 Vertex 6840 0.752446 -3.27925 2.25579 Vertex 6841 -0.549832 -1.80392 2.63292 Vertex 6842 -0.936185 0.693891 -0.0858067 Vertex 6843 -0.246899 0.418836 1.41929 Vertex 6844 -0.816491 -1.65426 1.43692 Vertex 6845 -0.227226 -2.34144 1.228 Vertex 6846 -0.618268 -0.95409 1.4025 Vertex 6847 -0.0995287 3.98469 -1.00995 Vertex 6848 0.503889 -0.261853 0.710301 Vertex 6849 -0.8869 0.0172482 0.425137 Vertex 6850 1.89392 0.308708 -2.5577 Vertex 6851 -0.0776883 3.58707 -0.124475 Vertex 6852 -0.61275 -2.20028 1.69674 Vertex 6853 -1.36812 -1.46422 -2.45005 Vertex 6854 -0.490511 -0.236025 -1.41714 Vertex 6855 -0.586636 -0.432367 -0.411093 Vertex 6856 -0.74873 -1.90267 1.48859 Vertex 6857 -0.703341 -1.31104 -2.61388 Vertex 6858 -0.130558 -2.47959 3.04458 Vertex 6859 -0.335186 3.89622 -0.763894 Vertex 6860 1.26206 0.35631 -1.00932 Vertex 6861 0.580361 0.0870311 0.540306 Vertex 6862 -1.33134 5.21094 -2.30601 Vertex 6863 -0.80419 0.108211 0.909491 Vertex 6864 1.08119 1.00602 0.0531057 Vertex 6865 -1.07535 5.18587 -1.56187 Vertex 6866 0.0414717 0.773981 -0.893519 Vertex 6867 -0.570423 -0.25113 -2.12487 Vertex 6868 0.943893 1.46283 0.174352 Vertex 6869 0.0632536 -2.17678 0.505908 Vertex 6870 1.1744 1.01402 -1.9653 Vertex 6871 0.200261 -2.53839 3.01549 Vertex 6872 -0.927495 -0.71738 -2.71381 Vertex 6873 -0.575257 -0.149486 -2.13882 Vertex 6874 0.26921 -2.6288 2.99978 Vertex 6875 -0.749541 0.0637993 -2.05902 Vertex 6876 0.979042 0.722624 -1.59253 Vertex 6877 0.153849 -1.90807 0.744939 Vertex 6878 -0.695943 -2.12147 0.134534 Vertex 6879 1.2881 0.633286 -2.87103 Vertex 6880 -1.21224 -2.90918 -0.324679 Vertex 6881 -0.00969256 -1.64205 2.17955 Vertex 6882 0.614651 0.0668063 -0.548044 Vertex 6883 0.805951 -3.41563 2.90864 Vertex 6884 -0.303585 -0.68139 1.55146 Vertex 6885 -0.396136 3.95385 -0.640638 Vertex 6886 0.500784 -3.11686 2.32522 Vertex 6887 0.646556 -2.85626 2.43013 Vertex 6888 0.870437 0.150197 0.0822899 Vertex 6889 0.0486049 -2.19374 0.333269 Vertex 6890 0.612698 -3.18494 2.91766 Vertex 6891 -0.920499 0.239293 -1.67993 Vertex 6892 -0.795182 -1.52202 1.64142 Vertex 6893 -0.975075 -0.355982 0.694673 Vertex 6894 0.926053 1.13956 0.401764 Vertex 6895 0.490535 2.87589 -0.506865 Vertex 6896 0.516712 2.90963 -0.450889 Vertex 6897 0.368194 1.31837 -0.850875 Vertex 6898 -0.247128 -1.66332 -0.154719 Vertex 6899 -0.207603 -1.03065 -0.517299 Vertex 6900 -1.0941 -0.906312 0.484872 Vertex 6901 0.233722 0.773752 -0.907114 Vertex 6902 0.986932 1.01041 0.272192 Vertex 6903 1.26132 1.2935 -1.7154 Vertex 6904 1.44525 0.955086 -2.16271 Vertex 6905 0.146429 1.19795 -0.842597 Vertex 6906 1.21986 0.454182 -0.719704 Vertex 6907 1.03315 1.29016 -0.0522119 Vertex 6908 -0.806133 -1.65375 1.73612 Vertex 6909 -1.05644 -0.990548 -2.45676 Vertex 6910 -0.256023 -1.4306 -0.316754 Vertex 6911 -1.02938 0.0881298 -1.14328 Vertex 6912 -0.0990469 3.16434 -0.341368 Vertex 6913 -0.953466 -0.310179 0.756956 Vertex 6914 1.75619 0.474671 -2.47483 Vertex 6915 0.554411 -0.290231 0.181464 Vertex 6916 -0.403533 4.10697 -0.975702 Vertex 6917 0.741218 1.88812 0.302111 Vertex 6918 0.654173 -2.17147 -0.3107 Vertex 6919 0.916 0.962988 -1.25011 Vertex 6920 -0.892478 0.699246 0.560977 Vertex 6921 -0.874918 0.711692 0.62071 Vertex 6922 -0.866659 0.762508 0.561088 Vertex 6923 -0.762454 4.92522 -1.56106 Vertex 6924 0.493946 3.3541 -0.148994 Vertex 6925 -0.680512 4.55481 -0.845986 Vertex 6926 -1.06778 0.280481 0.0224697 Vertex 6927 -0.200551 0.142554 -0.806159 Vertex 6928 -0.319475 -2.43486 2.26836 Vertex 6929 -0.622287 -0.220143 -1.12366 Vertex 6930 -0.117762 -0.508714 -0.669876 Vertex 6931 0.301484 3.43533 -0.632284 Vertex 6932 0.224724 -1.26691 1.08906 Vertex 6933 -0.0691235 1.14599 1.0714 Vertex 6934 0.488655 0.337974 -0.57107 Vertex 6935 -0.98089 -0.399782 0.458464 Vertex 6936 0.815614 0.307886 0.411527 Vertex 6937 -0.867954 -1.36217 -2.71384 Vertex 6938 0.864675 0.823295 0.580331 Vertex 6939 0.398824 -1.18404 0.481707 Vertex 6940 -0.370352 -0.165395 1.55849 Vertex 6941 -0.106977 -1.48741 2.69777 Vertex 6942 0.446475 -3.50798 2.55221 Vertex 6943 1.43356 0.927498 -2.0958 Vertex 6944 -1.39285 5.51328 -2.60791 Vertex 6945 -1.03404 -0.0219133 -1.00367 Vertex 6946 1.49345 1.30875 -1.76967 Vertex 6947 -0.647437 -1.33194 -2.58444 Vertex 6948 0.217129 3.33351 0.244478 Vertex 6949 0.30781 3.60151 -0.50587 Vertex 6950 1.24228 0.416256 -2.64881 Vertex 6951 -0.84736 -0.139896 1.08109 Vertex 6952 -0.913692 -0.901714 1.05961 Vertex 6953 -0.99775 -1.48129 -2.43126 Vertex 6954 -0.585499 -0.68662 1.42228 Vertex 6955 1.43697 0.791236 -1.03535 Vertex 6956 0.338869 -1.92053 0.104922 Vertex 6957 0.479726 1.81524 0.757255 Vertex 6958 1.13875 0.351629 -1.37667 Vertex 6959 -0.0778101 -3.07423 1.92247 Vertex 6960 -1.37099 5.13011 -2.04357 Vertex 6961 -1.08037 -0.884312 0.578141 Vertex 6962 -0.853441 -1.16267 -2.42467 Vertex 6963 -0.0885432 -2.2431 0.458898 Vertex 6964 0.420398 -2.21419 -0.204284 Vertex 6965 0.584174 0.472104 0.979104 Vertex 6966 -0.287753 0.942041 -0.529144 Vertex 6967 1.42618 1.15436 -1.41241 Vertex 6968 -1.00768 0.211554 -1.33629 Vertex 6969 0.22833 -3.21346 1.97627 Vertex 6970 0.752972 2.2464 0.122353 Vertex 6971 1.03958 0.686494 -1.6156 Vertex 6972 0.568058 -3.61166 2.4481 Vertex 6973 -0.216294 3.78253 -0.764697 Vertex 6974 -0.932125 -1.34062 -2.41763 Vertex 6975 -0.0187829 2.24708 0.36321 Vertex 6976 -1.45598 5.27527 -2.2965 Vertex 6977 -0.2662 -2.20831 2.861 Vertex 6978 0.942261 0.203084 -1.12289 Vertex 6979 -1.10014 0.138073 -0.00203485 Vertex 6980 -0.192113 1.76219 0.449138 Vertex 6981 0.0502574 2.00897 0.588305 Vertex 6982 -1.01919 0.132259 -0.718252 Vertex 6983 -0.277076 1.09454 0.993078 Vertex 6984 1.36536 0.940732 -2.84533 Vertex 6985 -0.4753 -2.16784 0.95945 Vertex 6986 -0.39472 -1.415 -2.62064 Vertex 6987 1.33596 0.658246 -2.87353 Vertex 6988 -1.38038 -1.22501 -2.6221 Vertex 6989 1.54764 1.27261 -2.25399 Vertex 6990 -0.304812 -2.29622 2.52826 Vertex 6991 -0.436491 4.01422 -0.682281 Vertex 6992 1.0358 1.06641 -0.938097 Vertex 6993 0.401786 -1.13279 0.620479 Vertex 6994 -0.317905 1.59707 0.55454 Vertex 6995 -0.60589 -2.19812 1.62449 Vertex 6996 0.458098 -0.309927 0.887907 Vertex 6997 1.37848 0.550926 -2.77228 Vertex 6998 -0.818419 0.0696061 0.9618 Vertex 6999 -0.813689 -1.35724 -2.42123 Vertex 7000 -0.565294 -0.531772 -2.51687 Vertex 7001 -0.707946 0.379143 -1.35321 Vertex 7002 -0.121002 -2.79811 2.3293 Vertex 7003 -0.348994 -2.26745 2.43863 Vertex 7004 -1.03886 -0.148951 -1.05022 Vertex 7005 -0.505757 4.27241 -1.13192 Vertex 7006 0.166388 -2.41508 1.56555 Vertex 7007 -1.02388 -0.647295 0.76904 Vertex 7008 -0.489548 -0.269847 -0.485549 Vertex 7009 0.0306346 2.68275 0.238225 Vertex 7010 -0.818028 0.0182877 1.04762 Vertex 7011 0.384648 -2.48512 1.77038 Vertex 7012 -0.631272 -2.1564 1.86999 Vertex 7013 -0.377254 -2.42723 1.54339 Vertex 7014 -0.448481 -0.798072 1.51235 Vertex 7015 0.57507 -3.41896 1.5488 Vertex 7016 -0.448244 4.68908 -1.04457 Vertex 7017 0.820402 0.0763256 -0.535679 Vertex 7018 -0.272634 -1.25636 1.46337 Vertex 7019 -0.60919 -1.90723 2.41375 Vertex 7020 1.07758 0.243341 -0.535506 Vertex 7021 0.0196791 2.89317 0.112498 Vertex 7022 1.18366 1.18931 -1.55141 Vertex 7023 1.3057 0.490299 -0.971458 Vertex 7024 -1.44471 5.76713 -2.5259 Vertex 7025 -0.823508 0.807387 0.650581 Vertex 7026 -0.388769 -1.44725 2.75549 Vertex 7027 -0.478976 4.29391 -1.2725 Vertex 7028 -0.763127 -1.37821 1.87734 Vertex 7029 -0.752321 0.0368928 1.17008 Vertex 7030 -0.898256 -3.0452 -0.125437 Vertex 7031 0.405672 -0.869342 -0.164058 Vertex 7032 -0.449783 0.304406 -0.993609 Vertex 7033 -0.0552019 2.68357 -0.424668 Vertex 7034 -0.699418 4.92206 -1.29068 Vertex 7035 0.296242 -3.0737 2.36134 Vertex 7036 -0.155162 1.6161 -0.391395 Vertex 7037 0.241754 2.2805 -0.775041 Vertex 7038 0.0665993 0.369904 -1.07936 Vertex 7039 0.539251 3.15944 0.00288053 Vertex 7040 0.0295782 -2.41261 3.05951 Vertex 7041 -0.0297071 1.61669 -0.521612 Vertex 7042 0.417476 -0.00166917 0.844956 Vertex 7043 -0.751521 -0.737052 -0.320948 Vertex 7044 0.260614 -2.39712 1.62586 Vertex 7045 -0.227193 -1.34172 2.44619 Vertex 7046 0.373306 2.1177 0.746788 Vertex 7047 -0.088854 3.11132 -0.382045 Vertex 7048 -0.907725 -0.101302 0.671495 Vertex 7049 -0.868366 0.247143 -1.72385 Vertex 7050 -1.07158 4.97243 -1.42596 Vertex 7051 0.234102 -1.90693 2.83483 Vertex 7052 0.242591 2.60346 0.452727 Vertex 7053 -0.26013 -2.84877 1.72344 Vertex 7054 1.32051 1.12645 -2.62898 Vertex 7055 0.217922 -1.34723 1.05916 Vertex 7056 -0.998494 -0.387706 -0.529908 Vertex 7057 -0.588082 0.51042 -0.928252 Vertex 7058 1.29371 0.454282 -1.26021 Vertex 7059 0.922756 0.39174 0.172386 Vertex 7060 -0.234001 1.7503 0.259778 Vertex 7061 0.534241 0.724902 1.066 Vertex 7062 -0.22314 3.68273 -0.370433 Vertex 7063 -0.203678 0.248607 1.4894 Vertex 7064 -0.768175 -1.84935 1.30663 Vertex 7065 0.791138 -3.58809 2.77383 Vertex 7066 1.28685 1.11767 -2.27906 Vertex 7067 -0.615526 -0.307096 -1.64176 Vertex 7068 1.21727 0.769628 -0.603528 Vertex 7069 -1.05115 -0.854392 0.690173 Vertex 7070 -0.44463 -0.114542 -1.64443 Vertex 7071 -0.398647 -2.44761 2.03432 Vertex 7072 -0.949812 -0.321231 -0.309566 Vertex 7073 -1.09295 -0.117109 -0.157952 Vertex 7074 0.0499401 -3.04912 2.51119 Vertex 7075 -0.295984 -1.80969 2.98586 Vertex 7076 -0.179302 -1.37597 2.48103 Vertex 7077 -0.0986764 -1.90855 1.31934 Vertex 7078 -1.02488 -0.159558 -1.13555 Vertex 7079 -0.628626 4.3165 -0.877025 Vertex 7080 -0.00564128 -2.03884 0.00377947 Vertex 7081 0.51932 -0.38246 0.0617587 Vertex 7082 0.319905 -2.02408 2.77244 Vertex 7083 -0.152047 1.33975 -0.481866 Vertex 7084 0.157976 2.67678 0.335113 Vertex 7085 -0.11146 1.64173 -0.425835 Vertex 7086 0.0131293 -0.802209 1.43294 Vertex 7087 0.251658 -1.50736 0.253141 Vertex 7088 0.716707 1.28555 0.809867 Vertex 7089 -0.633139 -0.843661 -2.48743 Vertex 7090 -0.0860776 3.65525 -0.873247 Vertex 7091 -0.955885 0.623971 0.416623 Vertex 7092 -0.705625 -0.0099388 -2.31103 Vertex 7093 0.21983 -1.6071 0.769925 Vertex 7094 -0.7534 -1.39969 1.72103 Vertex 7095 -0.630291 0.827125 -0.601846 Vertex 7096 -1.23094 -2.77973 -0.286998 Vertex 7097 1.43037 0.690949 -1.12836 Vertex 7098 -0.163603 2.09375 0.152508 Vertex 7099 -0.726981 4.70329 -0.913171 Vertex 7100 1.31889 0.584188 -1.59638 Vertex 7101 -0.0737622 3.0455 -0.409948 Vertex 7102 -0.0504332 2.67875 0.102886 Vertex 7103 1.57813 1.11752 -1.98726 Vertex 7104 1.16487 1.13702 -1.04477 Vertex 7105 1.01818 1.06088 -0.876418 Vertex 7106 1.723 0.31136 -2.61826 Vertex 7107 -0.036168 -1.59585 1.22853 Vertex 7108 1.48938 0.966439 -1.6444 Vertex 7109 -0.131372 -2.79624 1.72232 Vertex 7110 -0.978791 -0.176014 -0.018098 Vertex 7111 0.284377 1.42421 -0.983847 Vertex 7112 1.22249 1.20539 -1.40189 Vertex 7113 -1.29549 -1.39596 -2.46071 Vertex 7114 0.292086 3.17582 0.315261 Vertex 7115 -0.807394 -0.393463 -1.80763 Vertex 7116 0.545411 -3.13532 1.6118 Vertex 7117 0.154289 2.61057 0.360793 Vertex 7118 0.0244635 -1.79606 1.94416 Vertex 7119 0.599084 -2.42928 2.93487 Vertex 7120 -0.89258 -0.866468 -2.33089 Vertex 7121 0.151588 2.33156 -0.641433 Vertex 7122 -0.174722 4.31405 -0.502226 Vertex 7123 -0.307591 -1.28153 2.19194 Vertex 7124 -0.457157 4.18312 -0.515547 Vertex 7125 0.403694 -0.3701 1.02773 Vertex 7126 0.153073 -2.05438 -0.0329002 Vertex 7127 -0.404317 -2.60667 1.88066 Vertex 7128 0.349997 0.375528 1.15707 Vertex 7129 0.0675656 -2.07836 0.0869401 Vertex 7130 -1.38963 5.65489 -2.50781 Vertex 7131 -0.179251 -2.60434 2.54211 Vertex 7132 -0.439592 1.47668 0.501099 Vertex 7133 -0.470996 0.207905 -1.50049 Vertex 7134 1.03314 1.02328 -1.47728 Vertex 7135 0.41308 0.499208 1.14271 Vertex 7136 2.16478 0.644967 -2.59145 Vertex 7137 -0.12255 3.59109 -0.679543 Vertex 7138 0.286534 -1.39927 0.0516251 Vertex 7139 -0.670502 -0.31435 -0.680412 Vertex 7140 -0.793412 -0.372549 -1.28064 Vertex 7141 -0.981682 -1.18384 0.85954 Vertex 7142 0.820775 0.643792 -1.31971 Vertex 7143 -1.37945 -1.27427 -2.44257 Vertex 7144 0.384067 0.366692 -0.688827 Vertex 7145 -0.0552632 -1.69573 1.16502 Vertex 7146 0.160945 1.29406 1.06014 Vertex 7147 -0.271184 -2.32746 1.09529 Vertex 7148 -0.239936 -2.23745 1.09807 Vertex 7149 1.76681 0.549736 -2.51489 Vertex 7150 0.437997 -0.515278 -0.264547 Vertex 7151 -0.00303405 1.22812 -0.668321 Vertex 7152 -0.127802 -1.44184 2.29922 Vertex 7153 0.446829 -0.892335 -0.0161222 Vertex 7154 -1.01453 0.158471 -1.59624 Vertex 7155 -0.0132998 0.895942 1.24388 Vertex 7156 -0.0845568 2.00687 -0.381665 Vertex 7157 -0.608118 -1.02973 -2.42775 Vertex 7158 -0.137113 1.70899 -0.333316 Vertex 7159 -0.0415496 -2.44148 3.08043 Vertex 7160 1.41899 0.717025 -1.42305 Vertex 7161 0.465012 -2.91888 3.03294 Vertex 7162 -0.838018 -2.05246 0.462632 Vertex 7163 0.161562 -3.07704 2.44168 Vertex 7164 0.739426 0.997512 0.829596 Vertex 7165 -0.673907 0.831669 0.95137 Vertex 7166 0.863356 1.36099 0.480753 Vertex 7167 -0.259667 1.64315 0.0278597 Vertex 7168 1.51895 0.933755 -1.97837 Vertex 7169 -1.0569 4.90373 -1.88312 Vertex 7170 1.46685 0.728846 -2.86073 Vertex 7171 -0.102879 -0.0610749 1.41837 Vertex 7172 -0.0507469 -0.124153 1.39781 Vertex 7173 0.871021 0.194313 -0.963112 Vertex 7174 -0.863837 -1.71063 0.915096 Vertex 7175 0.325585 3.62917 -0.0783508 Vertex 7176 0.373704 3.56897 -0.0948873 Vertex 7177 -0.00529407 0.906429 -0.768913 Vertex 7178 -0.0654652 -2.01181 0.815422 Vertex 7179 0.174508 -1.65962 0.87945 Vertex 7180 -0.959952 -1.47384 0.893556 Vertex 7181 -0.00130415 -1.55823 1.16871 Vertex 7182 -1.0551 -0.228072 -0.268305 Vertex 7183 0.576203 -0.492044 0.15836 Vertex 7184 -1.03766 -1.10941 0.0968901 Vertex 7185 -0.389311 -2.15889 0.819904 Vertex 7186 0.166654 -2.05904 2.96349 Vertex 7187 0.0840631 0.927905 -0.830043 Vertex 7188 0.606243 -2.12956 -0.396923 Vertex 7189 -0.698805 -1.15959 -0.345361 Vertex 7190 0.595225 0.103034 -0.181724 Vertex 7191 -1.45427 5.43854 -2.10401 Vertex 7192 -0.999163 -2.41865 -0.26597 Vertex 7193 -0.249375 0.470337 1.38783 Vertex 7194 -1.39534 5.38248 -2.48654 Vertex 7195 -1.3196 5.10382 -1.80671 Vertex 7196 -0.926931 0.426777 -0.604494 Vertex 7197 -0.562914 -1.58838 2.62069 Vertex 7198 0.203897 1.96193 0.72616 Vertex 7199 1.18054 1.01983 -0.897449 Vertex 7200 0.238157 -1.53067 0.183823 Vertex 7201 0.807204 1.11283 -0.699442 Vertex 7202 -0.504862 -1.28874 2.42257 Vertex 7203 0.71503 0.0799739 0.122121 Vertex 7204 -0.0427298 -0.627891 1.44105 Vertex 7205 -0.0137163 2.9477 -0.479935 Vertex 7206 -1.16198 -2.76486 -0.169103 Vertex 7207 -0.473069 -0.638359 -0.508971 Vertex 7208 -0.559219 -0.184935 -0.808908 Vertex 7209 0.0632944 -1.48526 1.12783 Vertex 7210 -0.0300209 3.923 -0.93152 Vertex 7211 -0.756503 -0.384166 -0.964511 Vertex 7212 0.0294304 -1.98249 0.805428 Vertex 7213 -0.608426 -1.50828 -0.194335 Vertex 7214 1.84482 0.712367 -2.8092 Vertex 7215 -0.918528 -0.489851 1.05632 Vertex 7216 0.574891 -0.328764 0.22937 Vertex 7217 -0.32645 1.37626 0.817497 Vertex 7218 -0.781544 -0.154805 1.23341 Vertex 7219 -0.121278 2.16865 0.20722 Vertex 7220 0.282803 3.53446 0.0426693 Vertex 7221 0.533205 1.79977 -0.587026 Vertex 7222 0.325831 -2.46841 1.65777 Vertex 7223 -0.746561 -3.04663 -0.129795 Vertex 7224 1.74411 0.934811 -2.46347 Vertex 7225 0.803461 1.4658 0.560474 Vertex 7226 1.10299 0.597575 -1.61683 Vertex 7227 0.914526 0.547806 0.322042 Vertex 7228 0.221632 -3.15701 2.40659 Vertex 7229 0.513332 -0.799687 0.335644 Vertex 7230 0.494198 0.0541779 0.721442 Vertex 7231 -0.458412 1.46156 0.560688 Vertex 7232 -0.932175 -0.275272 -1.43714 Vertex 7233 -0.255496 0.602127 1.27868 Vertex 7234 -0.0622925 2.88276 -0.375529 Vertex 7235 0.322323 1.07982 1.12271 Vertex 7236 -1.03316 -1.23213 0.228259 Vertex 7237 0.961116 0.640983 -1.54779 Vertex 7238 -0.436717 -0.811291 -0.53118 Vertex 7239 -0.276283 -2.52947 2.37882 Vertex 7240 -0.473271 -1.54678 -2.6868 Vertex 7241 0.143757 -2.01969 0.630416 Vertex 7242 0.178008 1.84299 0.789028 Vertex 7243 0.678557 0.296066 0.699971 Vertex 7244 -1.11513 -0.0843631 -0.353633 Vertex 7245 -0.0451093 -1.58531 2.23434 Vertex 7246 1.97256 0.83046 -2.77995 Vertex 7247 0.499957 3.30507 -0.254951 Vertex 7248 -0.106761 -1.56074 1.90544 Vertex 7249 -0.646919 -0.9012 -2.67505 Vertex 7250 0.108337 -3.3109 1.6567 Vertex 7251 1.23579 1.2476 -2.36849 Vertex 7252 0.496829 -0.893759 0.0492299 Vertex 7253 -0.819254 -0.0934378 1.14331 Vertex 7254 -1.05266 -1.37552 0.654286 Vertex 7255 0.808182 0.120739 0.161867 Vertex 7256 -0.986577 -0.63121 -2.6174 Vertex 7257 -0.327742 1.44163 0.114531 Vertex 7258 0.520257 1.20601 -0.710144 Vertex 7259 -0.889121 -0.837639 -0.16675 Vertex 7260 0.482587 3.25017 -0.381413 Vertex 7261 0.903326 0.0877281 -0.490281 Vertex 7262 -0.0861746 4.27568 -0.675327 Vertex 7263 0.602877 -2.5395 2.79467 Vertex 7264 -1.08792 -0.795788 -2.67897 Vertex 7265 -0.764704 1.00349 0.391481 Vertex 7266 1.8484 0.50212 -2.65951 Vertex 7267 -0.0576079 -1.71457 1.43231 Vertex 7268 -0.175349 -2.71128 2.51212 Vertex 7269 1.42147 1.01145 -2.40734 Vertex 7270 0.598392 -2.93823 2.21913 Vertex 7271 0.732734 -3.02939 2.41328 Vertex 7272 -0.956781 -0.33407 -0.371516 Vertex 7273 -0.284765 1.64742 0.369444 Vertex 7274 -0.192292 -0.473565 1.4866 Vertex 7275 0.686017 0.489246 0.790196 Vertex 7276 -0.0589322 -0.563334 1.44563 Vertex 7277 -1.06141 -1.57954 0.562284 Vertex 7278 -0.112828 1.27606 -0.52365 Vertex 7279 0.596646 -2.71123 2.69493 Vertex 7280 -0.257073 -1.36487 1.84073 Vertex 7281 -0.959302 -0.753663 0.956605 Vertex 7282 0.81234 0.761201 0.660624 Vertex 7283 0.483104 -3.39405 1.71195 Vertex 7284 0.508725 -0.0993806 0.137293 Vertex 7285 1.35381 1.21228 -2.68161 Vertex 7286 0.253085 -2.35975 2.99014 Vertex 7287 0.282915 -1.12525 -0.241452 Vertex 7288 -0.24552 1.70483 0.326683 Vertex 7289 1.77345 1.09125 -2.55564 Vertex 7290 0.177521 -3.35667 1.54367 Vertex 7291 0.679682 -3.10708 2.99247 Vertex 7292 -0.588383 -1.97872 2.39412 Vertex 7293 -0.99783 -2.50526 -0.124043 Vertex 7294 1.00753 0.260224 -0.176811 Vertex 7295 -0.149647 -2.22801 1.48668 Vertex 7296 -1.09358 0.136557 -0.108653 Vertex 7297 -0.81467 -1.22353 -0.216172 Vertex 7298 -0.881628 0.798922 0.33081 Vertex 7299 0.108169 2.32138 -0.589202 Vertex 7300 -0.720258 4.52553 -1.44079 Vertex 7301 -0.000886751 -3.11059 2.0652 Vertex 7302 -1.07484 -0.116581 -0.705437 Vertex 7303 -0.6642 -0.358112 -2.49336 Vertex 7304 0.929712 0.976685 -1.08086 Vertex 7305 -0.444478 -1.91967 2.7812 Vertex 7306 -0.944328 -0.868261 0.970076 Vertex 7307 -0.997039 -0.545363 -2.54672 Vertex 7308 0.669591 -2.71711 2.98676 Vertex 7309 -0.751516 -1.88693 1.39224 Vertex 7310 0.612449 1.03916 0.994506 Vertex 7311 1.38336 0.671447 -1.59812 Vertex 7312 -0.48924 -2.14356 0.242041 Vertex 7313 0.163465 -1.96707 -0.16954 Vertex 7314 -0.916567 0.656111 -0.265941 Vertex 7315 0.412335 -0.813425 0.90321 Vertex 7316 1.39131 1.39333 -2.26804 Vertex 7317 -0.538999 -0.596241 -2.60313 Vertex 7318 0.471006 2.07281 -0.583827 Vertex 7319 0.30442 0.32625 1.17855 Vertex 7320 -0.461529 -2.01356 2.71225 Vertex 7321 0.593917 -2.48107 2.97247 Vertex 7322 -1.42232 5.1983 -2.04796 Vertex 7323 0.484911 0.100609 -0.416981 Vertex 7324 0.172883 3.93721 -0.503135 Vertex 7325 0.238703 -0.614924 1.30287 Vertex 7326 0.45661 1.71849 -0.763301 Vertex 7327 0.176926 -3.17126 2.04051 Vertex 7328 -0.963514 0.365712 0.64189 Vertex 7329 -0.791865 -0.378844 -1.33242 Vertex 7330 -0.808745 -1.59746 1.81084 Vertex 7331 -0.188004 -2.96727 1.84229 Vertex 7332 1.2661 1.23563 -2.05729 Vertex 7333 0.344262 -2.2851 2.07615 Vertex 7334 -0.219051 3.60319 -0.490945 Vertex 7335 -0.0949189 3.34513 -0.531495 Vertex 7336 0.542437 1.77259 0.729067 Vertex 7337 0.420881 2.30154 -0.626418 Vertex 7338 0.204029 -2.02758 0.501464 Vertex 7339 0.60901 -3.26792 2.88112 Vertex 7340 -0.0694359 -2.87092 2.31229 Vertex 7341 -0.0857635 2.73384 0.00408954 Vertex 7342 -0.817985 -0.387698 -1.09094 Vertex 7343 0.543768 -0.239818 0.421365 Vertex 7344 -0.293254 -1.29896 2.13843 Vertex 7345 -0.0505985 -2.55173 3.05866 Vertex 7346 -0.978761 0.0678988 -1.78103 Vertex 7347 -0.989937 0.553358 -0.0489933 Vertex 7348 1.74769 0.665957 -2.5542 Vertex 7349 -0.463954 -0.16056 -1.66641 Vertex 7350 0.719107 -3.34415 2.89432 Vertex 7351 -1.07608 -0.755915 0.424916 Vertex 7352 -0.447049 1.19376 -0.196166 Vertex 7353 -0.647482 -0.926826 -2.37053 Vertex 7354 -1.097 -0.109959 -0.555007 Vertex 7355 1.17 0.895048 -0.579104 Vertex 7356 -0.362307 -1.53118 -0.227073 Vertex 7357 0.125451 -1.81393 2.27659 Vertex 7358 -0.0670179 2.75725 -0.386686 Vertex 7359 0.453405 -0.958147 0.00682242 Vertex 7360 0.542154 1.01052 1.05996 Vertex 7361 1.31725 0.545446 -1.51674 Vertex 7362 1.16307 0.382539 -0.562668 Vertex 7363 2.03509 0.834198 -2.69302 Vertex 7364 -0.0338774 3.17903 -0.534622 Vertex 7365 -0.466329 -0.0698554 -1.24521 Vertex 7366 0.518407 -3.4487 1.70179 Vertex 7367 0.175474 2.19478 0.555848 Vertex 7368 -1.42084 5.72925 -2.50103 Vertex 7369 -0.360214 0.105781 1.44028 Vertex 7370 -0.401853 4.45957 -1.21975 Vertex 7371 0.632418 2.33514 -0.411859 Vertex 7372 -0.283802 -2.00996 2.97775 Vertex 7373 0.386478 -3.52055 1.7151 Vertex 7374 0.295744 -1.78446 0.316458 Vertex 7375 0.359251 -2.00549 0.00351017 Vertex 7376 -1.07031 -1.49893 0.355899 Vertex 7377 -1.14047 -2.33589 -0.209884 Vertex 7378 0.531989 0.0179764 0.0172731 Vertex 7379 0.794875 -3.16227 2.43128 Vertex 7380 -0.0899363 -2.02083 1.53451 Vertex 7381 -0.0997912 -2.43824 3.03093 Vertex 7382 0.145058 1.51284 -0.868022 Vertex 7383 0.132381 2.0812 -0.577649 Vertex 7384 -0.666777 -1.70643 2.37085 Vertex 7385 -0.712443 0.686022 1.01058 Vertex 7386 0.0506972 2.52611 -0.555936 Vertex 7387 0.0169727 2.47194 -0.533227 Vertex 7388 -0.311274 4.12811 -1.17272 Vertex 7389 -0.261621 -0.384594 1.5567 Vertex 7390 -0.890702 0.775293 -0.145636 Vertex 7391 -0.482517 -0.293984 1.43086 Vertex 7392 0.458604 -0.825518 -0.0480116 Vertex 7393 -0.0707195 2.28336 0.243892 Vertex 7394 -0.415647 -0.00109589 -1.4528 Vertex 7395 -0.000222474 0.818498 1.24516 Vertex 7396 -0.25094 4.01694 -0.279751 Vertex 7397 0.570894 -2.89801 3.00603 Vertex 7398 0.771172 0.723701 0.710162 Vertex 7399 -0.012524 3.02554 -0.500104 Vertex 7400 -0.806388 4.60933 -1.54766 Vertex 7401 0.205625 2.97057 0.268036 Vertex 7402 -0.756979 0.930906 -0.193118 Vertex 7403 -0.244877 -2.06507 2.96427 Vertex 7404 -1.08821 -2.43529 -0.101456 Vertex 7405 -0.965971 -1.55295 -2.42263 Vertex 7406 0.664863 -3.17011 3.05514 Vertex 7407 -0.791494 -3.06743 -0.138364 Vertex 7408 -0.250713 3.89934 -0.305969 Vertex 7409 -0.80445 0.498841 0.951481 Vertex 7410 -1.06097 -1.51465 0.300671 Vertex 7411 -0.493221 -2.2782 1.39484 Vertex 7412 1.55553 1.1112 -1.90489 Vertex 7413 -0.0126214 -1.56892 2.53336 Vertex 7414 0.45526 -2.58501 1.83563 Vertex 7415 -0.368782 -0.127637 -0.577276 Vertex 7416 0.825406 -3.71346 2.37864 Vertex 7417 0.558294 -0.564632 0.240139 Vertex 7418 0.64593 -3.60095 2.64914 Vertex 7419 -0.570346 -2.10969 0.0664718 Vertex 7420 -0.529346 4.15637 -0.752886 Vertex 7421 0.239407 -0.123883 1.29329 Vertex 7422 -1.0623 -0.034496 -0.716397 Vertex 7423 -0.16131 0.199322 -0.872805 Vertex 7424 0.610173 -2.62416 3.0065 Vertex 7425 -0.419574 4.05543 -0.544991 Vertex 7426 -0.999784 -1.12166 -2.47135 Vertex 7427 -0.418805 -0.0787292 1.44215 Vertex 7428 0.713577 2.51872 -0.185512 Vertex 7429 0.399997 -3.44665 2.27744 Vertex 7430 0.16286 -2.04685 0.530763 Vertex 7431 -0.794907 0.965707 0.321648 Vertex 7432 -1.15417 -0.882041 -2.68088 Vertex 7433 -1.08717 -2.8826 -0.310317 Vertex 7434 -0.767222 4.67882 -0.985517 Vertex 7435 -1.0646 0.343522 -0.0721015 Vertex 7436 1.60575 0.951951 -2.31615 Vertex 7437 1.01158 0.219593 -0.246265 Vertex 7438 -0.451535 -0.169279 -1.37263 Vertex 7439 -0.765646 -1.86297 -0.0548642 Vertex 7440 0.946626 0.854626 0.406258 Vertex 7441 -0.388713 -1.61162 2.87824 Vertex 7442 0.737395 2.08859 -0.193277 Vertex 7443 0.766475 0.90589 0.779803 Vertex 7444 -1.07677 -1.17549 0.574694 Vertex 7445 1.11997 0.992875 -0.0882454 Vertex 7446 -1.08159 -0.0635601 -0.0443582 Vertex 7447 -0.813131 -0.394929 1.24901 Vertex 7448 -0.08515 2.027 0.392169 Vertex 7449 0.609855 0.0878411 -0.041302 Vertex 7450 -0.657417 -0.724426 -2.51573 Vertex 7451 -0.892203 -0.139532 0.200975 Vertex 7452 0.347369 -3.40736 2.34345 Vertex 7453 -1.03449 0.33264 -0.263016 Vertex 7454 0.458152 0.0478647 0.831717 Vertex 7455 -0.112229 4.16968 -0.921891 Vertex 7456 -1.01344 5.08988 -1.88951 Vertex 7457 0.168147 3.58154 0.0988613 Vertex 7458 -0.29587 -2.19787 0.336622 Vertex 7459 -0.353194 -2.13102 2.81903 Vertex 7460 1.4214 1.13135 -1.23561 Vertex 7461 0.0553579 -0.139705 -0.740409 Vertex 7462 -1.0826 -1.65016 0.214344 Vertex 7463 -0.875794 -1.76648 -0.0307238 Vertex 7464 -0.20651 1.90741 0.0126391 Vertex 7465 0.470016 1.56447 0.878955 Vertex 7466 1.69397 1.1386 -2.7098 Vertex 7467 -0.163022 1.76624 0.517486 Vertex 7468 1.57923 0.918695 -2.37637 Vertex 7469 -0.940173 -1.64799 0.86993 Vertex 7470 -0.156811 -0.0962464 1.45221 Vertex 7471 1.29833 1.29831 -2.09493 Vertex 7472 0.262962 0.355114 -0.960354 Vertex 7473 0.795324 0.366246 -1.01582 Vertex 7474 -1.02284 0.340195 0.421564 Vertex 7475 -0.707933 4.43257 -1.03467 Vertex 7476 -0.616908 -0.249441 -0.853249 Vertex 7477 0.631402 2.68414 -0.333166 Vertex 7478 -0.951688 -0.528686 0.179274 Vertex 7479 0.864976 -3.68113 2.42844 Vertex 7480 -0.541918 -0.734659 1.45006 Vertex 7481 0.387137 -1.20068 0.56599 Vertex 7482 -0.0899301 0.337265 -0.966334 Vertex 7483 -1.05621 -2.08723 -0.301819 Vertex 7484 -0.263139 1.52962 -0.0245852 Vertex 7485 0.209408 -3.22564 1.5246 Vertex 7486 -1.01482 4.74725 -1.46653 Vertex 7487 0.360697 3.26303 0.148442 Vertex 7488 0.706725 2.11329 0.362168 Vertex 7489 -0.0435974 0.251583 1.31353 Vertex 7490 -0.501362 -2.19571 1.32439 Vertex 7491 -0.897755 -0.602667 -0.0588749 Vertex 7492 0.282233 -1.36923 0.879799 Vertex 7493 0.16736 3.9173 -0.556091 Vertex 7494 1.44934 1.37925 -1.79477 Vertex 7495 0.955041 1.23522 0.281902 Vertex 7496 0.492527 -0.0964242 0.489748 Vertex 7497 0.49976 3.14036 -0.408013 Vertex 7498 1.46342 0.89083 -1.67304 Vertex 7499 0.341732 -2.82505 1.49182 Vertex 7500 -0.061908 3.17488 -0.472485 Vertex 7501 -0.423108 1.42019 0.214592 Vertex 7502 0.414272 -1.08135 0.645162 Vertex 7503 1.08722 1.01528 -0.802587 Vertex 7504 0.849983 1.42414 0.44352 Vertex 7505 -1.01345 5.17329 -1.56357 Vertex 7506 -0.656584 0.597619 1.07631 Vertex 7507 -0.699476 0.267795 -1.7832 Vertex 7508 -0.166151 2.16013 0.0662629 Vertex 7509 -0.814575 -1.46971 1.18161 Vertex 7510 -0.223182 -2.4753 1.40073 Vertex 7511 0.0470222 -1.63832 2.63302 Vertex 7512 1.37636 0.774843 -2.56299 Vertex 7513 -0.452318 -1.0112 1.50243 Vertex 7514 1.21041 0.608165 -0.434719 Vertex 7515 0.693248 0.900814 0.909433 Vertex 7516 -0.995448 -0.607396 0.867365 Vertex 7517 -0.830207 -0.33719 -1.67551 Vertex 7518 -1.04784 -1.26241 0.675074 Vertex 7519 -0.455556 -1.20781 1.71123 Vertex 7520 -0.130708 4.07095 -1.01089 Vertex 7521 -0.558857 1.07555 0.874379 Vertex 7522 1.28481 0.601877 -1.66414 Vertex 7523 0.214208 -1.18272 -0.270035 Vertex 7524 1.47653 0.711802 -2.61111 Vertex 7525 -0.751051 -1.65795 -0.0958638 Vertex 7526 -0.148614 0.0405365 -0.824834 Vertex 7527 -0.83101 -1.45781 -2.40452 Vertex 7528 -0.0261331 2.45683 -0.482007 Vertex 7529 -0.463786 0.0805037 -1.19791 Vertex 7530 0.0609606 -0.114372 1.37317 Vertex 7531 0.72347 -2.24328 -0.525784 Vertex 7532 -0.370241 4.15816 -1.13945 Vertex 7533 0.0241474 2.90017 -0.524063 Vertex 7534 0.269617 -2.43349 2.99271 Vertex 7535 0.258042 -1.2734 1.03909 Vertex 7536 -0.891611 -0.0960661 0.410787 Vertex 7537 0.215853 -2.04443 0.423594 Vertex 7538 0.409737 -2.113 2.56824 Vertex 7539 -0.951813 -0.744489 -0.0226226 Vertex 7540 -0.810482 -0.741021 1.25897 Vertex 7541 0.0646967 3.70428 0.0365303 Vertex 7542 0.755938 2.27421 -0.0572762 Vertex 7543 0.74251 2.28409 -0.130363 Vertex 7544 1.33002 0.509346 -2.77995 Vertex 7545 0.746122 0.0787196 0.0724979 Vertex 7546 -0.277359 0.219877 1.4981 Vertex 7547 -0.5057 4.24937 -1.07252 Vertex 7548 -1.07904 -2.23871 -0.302085 Vertex 7549 0.931235 1.22616 0.351938 Vertex 7550 -0.787238 -0.361803 -1.20825 Vertex 7551 -0.11758 -1.55148 1.65631 Vertex 7552 -1.02615 -0.503519 0.597982 Vertex 7553 -1.06345 -2.03939 0.0880607 Vertex 7554 0.967276 0.244931 -0.0521326 Vertex 7555 -0.221856 0.573135 1.35941 Vertex 7556 0.118658 -2.30534 1.61903 Vertex 7557 -1.07202 -0.355323 -0.818652 Vertex 7558 -0.499963 -1.33556 -2.50982 Vertex 7559 -0.35671 -2.04161 0.062637 Vertex 7560 -0.62293 -1.99037 0.737668 Vertex 7561 0.229536 -2.15798 2.04323 Vertex 7562 -0.622021 1.24196 0.371882 Vertex 7563 0.838366 -3.64339 2.75772 Vertex 7564 0.521617 1.54609 0.873734 Vertex 7565 0.0566774 -3.18769 1.97539 Vertex 7566 0.412918 -3.0279 1.95007 Vertex 7567 -1.07386 0.128591 -0.296414 Vertex 7568 -0.684726 4.50007 -1.41331 Vertex 7569 0.429713 -2.63078 2.97338 Vertex 7570 0.154092 3.2162 0.143784 Vertex 7571 0.825139 0.992277 -0.821681 Vertex 7572 0.0852247 -0.492778 -0.605027 Vertex 7573 0.102583 1.34816 1.04441 Vertex 7574 0.0322534 -1.58348 -0.0782636 Vertex 7575 -1.03437 -0.625004 0.703927 Vertex 7576 -0.475179 0.63658 1.11605 Vertex 7577 -0.209365 -1.25155 -0.428825 Vertex 7578 -0.815238 -1.62202 1.29826 Vertex 7579 -0.597646 -0.418943 1.38936 Vertex 7580 1.41329 1.37306 -2.32896 Vertex 7581 0.431969 -3.32113 2.72068 Vertex 7582 0.325445 -3.14942 1.96769 Vertex 7583 -0.242237 -0.152206 -0.646541 Vertex 7584 0.133531 -2.59427 3.13488 Vertex 7585 -0.250939 -1.09133 -0.497299 Vertex 7586 -0.688648 -2.00298 1.30593 Vertex 7587 -0.644098 0.866458 -0.547807 Vertex 7588 0.0286493 -1.67388 2.24431 Vertex 7589 0.170041 1.74636 -0.776093 Vertex 7590 -0.904537 -0.191685 0.535734 Vertex 7591 0.871819 0.0821327 -0.433778 Vertex 7592 -0.660383 -0.528234 -2.23091 Vertex 7593 1.22768 0.759408 -0.734119 Vertex 7594 0.233965 2.37861 0.519472 Vertex 7595 -0.054089 -1.72426 1.09351 Vertex 7596 0.812422 0.642447 -1.12314 Vertex 7597 -0.642859 -1.98548 0.939328 Vertex 7598 -0.0658641 2.40273 0.164971 Vertex 7599 0.826065 1.44527 0.51055 Vertex 7600 0.738054 2.12311 0.248925 Vertex 7601 -0.14423 2.08604 -0.261478 Vertex 7602 1.1289 0.958035 -0.698135 Vertex 7603 -0.255175 -2.16117 0.81747 Vertex 7604 1.18972 1.12211 -2.05315 Vertex 7605 0.397233 1.13548 1.09532 Vertex 7606 -1.40653 -1.39927 -2.54438 Vertex 7607 1.03735 0.180362 -0.475715 Vertex 7608 -0.314232 -2.21279 0.86161 Vertex 7609 1.21004 1.26258 -2.5845 Vertex 7610 -0.200347 4.36916 -0.938945 Vertex 7611 -0.261801 -2.58649 2.31168 Vertex 7612 0.236958 -2.06909 0.256801 Vertex 7613 1.86505 0.373515 -2.68975 Vertex 7614 0.981408 0.331143 -0.0269286 Vertex 7615 -1.01021 -0.655722 -2.62187 Vertex 7616 0.612987 -2.86173 2.79223 Vertex 7617 -0.403038 0.627139 1.13208 Vertex 7618 -1.13079 5.17221 -1.57117 Vertex 7619 0.908546 0.23175 0.122488 Vertex 7620 0.0891353 2.57124 0.329757 Vertex 7621 -0.00735391 3.83417 -0.941281 Vertex 7622 -0.978476 -0.208015 -1.40725 Vertex 7623 0.632591 0.0978004 -0.395141 Vertex 7624 -0.184235 -1.44381 1.71616 Vertex 7625 -0.322008 1.21603 -0.232973 Vertex 7626 -0.505113 1.33246 0.702958 Vertex 7627 -0.355033 -2.69346 2.06704 Vertex 7628 1.28724 0.482092 -1.43292 Vertex 7629 1.07388 0.18184 -0.71469 Vertex 7630 0.0756199 3.82227 -0.791516 Vertex 7631 0.24399 1.94498 -0.81065 Vertex 7632 -0.541684 4.23271 -0.667313 Vertex 7633 -0.278742 4.48944 -0.979361 Vertex 7634 -0.0658053 -1.51247 2.4661 Vertex 7635 -0.134763 -2.98088 2.01518 Vertex 7636 0.851859 -3.41708 2.71128 Vertex 7637 -0.779621 0.602895 -0.638636 Vertex 7638 0.123445 -1.83197 2.90706 Vertex 7639 0.487378 1.45955 -0.752426 Vertex 7640 -0.613071 4.71686 -1.44063 Vertex 7641 0.173821 -1.281 1.12917 Vertex 7642 0.407242 1.37555 -0.838198 Vertex 7643 0.185562 -2.26207 1.68341 Vertex 7644 -0.261129 -0.948572 -0.550569 Vertex 7645 1.24259 0.46564 -1.47715 Vertex 7646 0.593965 2.98642 -0.1959 Vertex 7647 -0.293897 -1.53098 2.86708 Vertex 7648 -0.42168 4.1809 -1.08013 Vertex 7649 0.326291 -3.27116 1.87338 Vertex 7650 -0.194105 -2.12203 2.97192 Vertex 7651 -0.999882 0.191264 0.447003 Vertex 7652 -1.04618 -0.606479 -2.48559 Vertex 7653 -0.0966827 -2.44644 1.60467 Vertex 7654 0.225012 -3.44299 1.57545 Vertex 7655 0.830278 1.13774 -0.603782 Vertex 7656 -0.298492 -0.143184 -0.612382 Vertex 7657 0.818557 0.678117 -1.07164 Vertex 7658 0.457466 -3.51962 2.48796 Vertex 7659 -0.0582833 -1.96705 1.57406 Vertex 7660 0.321457 -3.13397 2.3523 Vertex 7661 0.198947 -2.82853 2.93128 Vertex 7662 1.18979 0.871612 -0.72111 Vertex 7663 0.532016 0.577602 -0.714135 Vertex 7664 -0.768995 -1.35196 1.29648 Vertex 7665 0.459109 2.55071 -0.585326 Vertex 7666 -0.0242533 -1.21763 1.3199 Vertex 7667 -0.931457 0.273847 -1.18849 Vertex 7668 0.183913 2.79448 -0.720471 Vertex 7669 -0.441099 0.18298 1.28378 Vertex 7670 -0.873062 -0.0169607 0.859707 Vertex 7671 1.54821 1.27877 -2.36908 Vertex 7672 -0.313998 -0.0170554 -0.607782 Vertex 7673 -0.0468279 -1.60028 2.16467 Vertex 7674 -0.474063 -1.29079 -2.48416 Vertex 7675 -0.503778 -1.28858 -2.74368 Vertex 7676 -1.00853 4.76855 -1.39197 Vertex 7677 -0.493573 4.66239 -0.841616 Vertex 7678 0.814451 1.28966 0.640525 Vertex 7679 -0.361307 0.160528 -0.879032 Vertex 7680 1.2376 0.607137 -0.586007 Vertex 7681 -0.962038 4.77663 -1.27289 Vertex 7682 0.0303511 -3.14615 1.62385 Vertex 7683 -0.498775 -0.162839 -1.24916 Vertex 7684 -0.0669026 1.37034 0.933435 Vertex 7685 -0.011726 1.38332 0.969575 Vertex 7686 1.10857 0.983003 -1.66612 Vertex 7687 -0.915647 -0.151718 0.615737 Vertex 7688 -0.378604 0.608645 -0.801934 Vertex 7689 0.642769 -2.54702 -0.472543 Vertex 7690 -0.75969 -1.8568 1.71608 Vertex 7691 0.518123 -3.20671 1.50499 Vertex 7692 -1.36301 5.26461 -1.90601 Vertex 7693 0.417322 -2.48655 1.83029 Vertex 7694 0.294095 -0.217728 -0.417897 Vertex 7695 0.140469 1.74902 -0.72305 Vertex 7696 -0.0718538 -2.06419 -0.0188717 Vertex 7697 0.218877 -3.05569 2.08398 Vertex 7698 0.271263 1.76961 0.85531 Vertex 7699 0.142747 -2.49434 3.05679 Vertex 7700 -0.187997 1.97693 0.155992 Vertex 7701 0.152405 0.576793 -1.00789 Vertex 7702 0.464338 -0.971461 0.294545 Vertex 7703 -0.0297722 -0.74427 1.43731 Vertex 7704 -0.96803 -1.41366 -2.42534 Vertex 7705 0.795359 1.68353 0.403502 Vertex 7706 0.823094 1.65611 0.33525 Vertex 7707 0.0916615 3.6216 0.0901458 Vertex 7708 -0.79397 -0.494774 1.28932 Vertex 7709 1.2178 1.05748 -0.953145 Vertex 7710 -1.07801 -1.61673 0.507848 Vertex 7711 -0.0770527 4.0492 -0.168386 Vertex 7712 -0.217801 3.87206 -0.261258 Vertex 7713 1.12009 0.976979 -0.648111 Vertex 7714 -0.0874868 -2.52947 2.961 Vertex 7715 -1.19255 -0.883946 -2.55933 Vertex 7716 -0.257862 4.40574 -1.02643 Vertex 7717 -0.234066 -1.35414 2.13221 Vertex 7718 0.00933896 3.33252 -0.675414 Vertex 7719 -1.00618 -0.169736 -1.32251 Vertex 7720 -1.28695 5.27443 -1.78431 Vertex 7721 0.393052 -3.27669 1.41971 Vertex 7722 0.402329 0.489935 -0.763003 Vertex 7723 0.356435 -0.301268 -0.34567 Vertex 7724 -0.126989 -2.08359 3.05057 Vertex 7725 0.747473 -3.19525 2.81704 Vertex 7726 0.261986 -3.40488 1.82475 Vertex 7727 -0.458577 1.42 0.29221 Vertex 7728 0.210226 -1.69538 0.139495 Vertex 7729 -0.995226 0.0955921 -1.00658 Vertex 7730 0.644693 2.80259 -0.204444 Vertex 7731 -0.919162 -2.77716 -0.125113 Vertex 7732 1.62575 1.10397 -2.18237 Vertex 7733 0.380872 -3.01442 2.03694 Vertex 7734 -0.812165 -0.662918 -2.6612 Vertex 7735 0.550147 -3.05983 1.84013 Vertex 7736 -0.779506 -0.260487 -2.48649 Vertex 7737 -0.453099 -1.22023 2.23922 Vertex 7738 1.19843 0.480047 -2.74117 Vertex 7739 -0.4249 4.00429 -0.776488 Vertex 7740 0.493079 -0.975615 0.0929006 Vertex 7741 -0.0913118 -1.89518 1.19276 Vertex 7742 0.258829 2.65888 -0.748948 Vertex 7743 0.539022 -2.15754 -0.395485 Vertex 7744 -0.0839031 -2.8027 2.59258 Vertex 7745 -1.03107 0.180016 -0.519023 Vertex 7746 0.252695 3.02345 -0.765986 Vertex 7747 0.291079 2.94241 -0.726321 Vertex 7748 -0.979659 -2.11111 -0.279664 Vertex 7749 -0.358649 -1.24637 2.19436 Vertex 7750 -1.0439 -0.0454299 -0.904023 Vertex 7751 -1.18195 -2.85135 -0.354765 Vertex 7752 1.37688 1.09521 -1.09142 Vertex 7753 0.292672 -1.02139 -0.292147 Vertex 7754 -0.53598 -1.36602 2.52623 Vertex 7755 -0.896794 -1.39883 -2.39194 Vertex 7756 0.358141 1.63721 -0.865988 Vertex 7757 1.09429 0.614703 -0.0056593 Vertex 7758 0.80269 -3.68385 2.69713 Vertex 7759 -0.395005 0.473127 1.19628 Vertex 7760 -1.0777 4.80697 -1.64072 Vertex 7761 -1.01164 -0.589898 -2.26234 Vertex 7762 -0.983326 -2.37007 -0.116266 Vertex 7763 -0.658784 -1.32867 -2.66035 Vertex 7764 0.249192 -1.55216 0.548987 Vertex 7765 -0.390864 -1.94756 -0.00934642 Vertex 7766 -0.868578 -2.03407 0.143096 Vertex 7767 0.482774 -3.44357 2.66208 Vertex 7768 -1.36405 -1.17869 -2.50731 Vertex 7769 0.613173 2.55639 -0.399487 Vertex 7770 -0.566029 -0.0584285 -1.94266 Vertex 7771 -0.686633 1.105 0.069546 Vertex 7772 -0.426295 -1.21248 1.77584 Vertex 7773 1.75856 0.32036 -2.48325 Vertex 7774 0.202106 3.69058 -0.678404 Vertex 7775 -0.17644 4.24851 -0.976582 Vertex 7776 0.482932 -2.20831 -0.361432 Vertex 7777 -0.119243 -1.4592 2.65037 Vertex 7778 0.29511 -0.0409737 1.16823 Vertex 7779 -1.10018 0.0536071 0.0205048 Vertex 7780 -0.271156 3.74949 -0.440226 Vertex 7781 0.301024 0.383993 -0.895737 Vertex 7782 -0.724211 4.85587 -1.5421 Vertex 7783 -0.966093 0.449712 -0.376995 Vertex 7784 0.15204 -3.36507 1.6209 Vertex 7785 -0.147433 0.431964 1.40043 Vertex 7786 -0.405682 4.49345 -0.598543 Vertex 7787 0.472811 -0.369091 0.874115 Vertex 7788 -0.609401 -0.0768002 -2.14377 Vertex 7789 0.204009 -3.09758 2.36744 Vertex 7790 0.622981 0.199889 -0.647114 Vertex 7791 0.670188 0.145823 -0.664708 Vertex 7792 -0.639322 -0.843611 -2.54972 Vertex 7793 0.47347 -0.448056 -0.126685 Vertex 7794 0.112409 3.9076 -0.691758 Vertex 7795 -0.152473 0.305765 -0.8872 Vertex 7796 -0.689622 1.13608 0.381122 Vertex 7797 0.577643 0.172625 -0.572598 Vertex 7798 0.513878 -3.35162 1.67043 Vertex 7799 -0.651 -1.23873 -2.76267 Vertex 7800 0.377502 0.765597 1.17142 Vertex 7801 -0.997515 -1.4087 0.788345 Vertex 7802 -0.948996 -0.914799 -0.0319353 Vertex 7803 0.104253 1.12998 -0.772245 Vertex 7804 -0.0984471 1.16489 1.02943 Vertex 7805 0.111596 -0.0157133 -0.809495 Vertex 7806 -0.936781 -1.81609 0.735275 Vertex 7807 0.752337 0.190878 0.421125 Vertex 7808 -0.857343 0.677864 0.76033 Vertex 7809 0.264947 2.45933 0.535567 Vertex 7810 0.803901 1.81231 -0.162921 Vertex 7811 -0.17919 -1.67555 -0.149127 Vertex 7812 -0.115278 -2.53559 3.07865 Vertex 7813 0.0831888 -2.80577 2.80212 Vertex 7814 -0.296089 -1.27246 2.31791 Vertex 7815 -0.787836 -1.76909 1.61149 Vertex 7816 -0.678689 -1.48793 2.27431 Vertex 7817 -0.240147 0.651987 1.26114 Vertex 7818 -0.988544 -0.44078 0.800887 Vertex 7819 -0.45696 -1.93351 -0.0359852 Vertex 7820 0.508053 -2.64703 2.18591 Vertex 7821 0.393099 -3.42441 2.42937 Vertex 7822 -0.171918 3.49433 -0.412768 Vertex 7823 1.24179 1.21612 -1.53227 Vertex 7824 0.472925 -2.42815 2.11922 Vertex 7825 -1.02236 -1.84016 -0.132738 Vertex 7826 0.205567 2.24447 0.551863 Vertex 7827 2.11892 0.58097 -2.71895 Vertex 7828 -0.992812 0.520363 0.447061 Vertex 7829 -0.172593 -2.93404 2.0368 Vertex 7830 -0.534456 0.935889 -0.505685 Vertex 7831 -0.573233 -1.24292 2.16931 Vertex 7832 1.80862 0.241064 -2.63354 Vertex 7833 -0.0854102 -0.056174 -0.810648 Vertex 7834 1.65221 1.13648 -2.23948 Vertex 7835 0.501616 2.39162 0.474147 Vertex 7836 1.41173 1.19977 -1.55256 Vertex 7837 -0.305633 3.83365 -0.450449 Vertex 7838 -0.17888 3.74894 -0.239109 Vertex 7839 -1.50245 5.31814 -2.20178 Vertex 7840 -1.25219 -1.00299 -2.54633 Vertex 7841 0.0368166 2.15847 -0.514811 Vertex 7842 0.586916 1.32659 -0.654103 Vertex 7843 -0.985228 -0.469253 -2.46136 Vertex 7844 0.387918 -1.1844 0.270028 Vertex 7845 0.362059 -2.29094 1.94594 Vertex 7846 0.334911 0.0594139 1.05788 Vertex 7847 -0.545693 1.32322 0.405744 Vertex 7848 0.100763 -2.35822 3.01622 Vertex 7849 0.326626 -0.298637 1.1782 Vertex 7850 0.219459 1.46292 0.982807 Vertex 7851 1.81529 0.517315 -2.51696 Vertex 7852 -0.224021 -2.13801 1.01139 Vertex 7853 -1.04848 -0.201482 -0.188442 Vertex 7854 -0.715005 -1.34982 2.06276 Vertex 7855 -1.05831 0.175649 0.250055 Vertex 7856 0.280332 -3.19743 1.48996 Vertex 7857 -1.07168 -1.33953 0.562073 Vertex 7858 0.145735 1.08379 -0.836269 Vertex 7859 0.302926 -0.853515 1.13343 Vertex 7860 -0.145384 -2.44759 1.52504 Vertex 7861 1.47191 1.02676 -1.48973 Vertex 7862 -0.731947 -1.93765 1.61321 Vertex 7863 -0.693297 -0.284133 -1.11329 Vertex 7864 -0.324412 0.193245 1.46468 Vertex 7865 -0.571356 1.30972 0.51153 Vertex 7866 1.47904 0.923825 -1.57593 Vertex 7867 1.00891 0.193741 -0.316223 Vertex 7868 -0.446396 -2.30591 1.36796 Vertex 7869 -0.479923 -0.203477 -0.512318 Vertex 7870 -0.378334 -1.34282 2.62157 Vertex 7871 -0.209425 -2.24896 2.89452 Vertex 7872 -0.0611219 -1.84353 3.02957 Vertex 7873 0.453022 -1.01753 0.456811 Vertex 7874 -0.125446 0.657535 1.35318 Vertex 7875 -1.07791 -1.356 0.504372 Vertex 7876 -0.285931 -0.930372 1.48489 Vertex 7877 0.592226 -3.08536 2.98501 Vertex 7878 -0.156989 1.97566 0.255058 Vertex 7879 -0.650406 -0.29368 -0.545407 Vertex 7880 -0.368665 1.00557 -0.450708 Vertex 7881 0.667626 -3.22549 3.00316 Vertex 7882 -0.268165 3.98649 -0.974107 Vertex 7883 -0.0319689 -1.52321 1.22886 Vertex 7884 0.441432 -0.228278 0.896839 Vertex 7885 0.501721 -3.04892 2.88668 Vertex 7886 -0.212847 1.80066 0.302573 Vertex 7887 0.655822 2.48002 0.240349 Vertex 7888 0.75251 2.19228 -0.151119 Vertex 7889 0.0814846 -3.26516 1.81041 Vertex 7890 0.0243733 -2.07576 0.700626 Vertex 7891 1.49264 0.996313 -1.30005 Vertex 7892 -0.874458 5.01169 -1.30651 Vertex 7893 0.25773 3.47848 -0.679654 Vertex 7894 -0.96883 -2.30121 -0.256518 Vertex 7895 0.493621 -3.58138 1.49144 Vertex 7896 -0.405965 4.29305 -1.29452 Vertex 7897 -0.00496561 3.82985 -0.01626 Vertex 7898 0.277128 -1.75575 0.195028 Vertex 7899 0.21109 -0.314496 1.36796 Vertex 7900 0.625092 -2.80481 2.45157 Vertex 7901 -0.379494 -2.37388 2.15292 Vertex 7902 0.169521 -1.95882 2.28072 Vertex 7903 0.862324 -3.39637 2.59722 Vertex 7904 0.0662268 2.86764 -0.564888 Vertex 7905 -0.823964 -0.894075 -0.267407 Vertex 7906 -0.90888 -0.777608 1.09948 Vertex 7907 -0.123718 3.32762 -0.401024 Vertex 7908 -0.573563 -0.262097 -1.80063 Vertex 7909 0.231449 0.103001 1.22697 Vertex 7910 1.1731 0.399785 -2.65832 Vertex 7911 0.507175 -0.418715 0.0176601 Vertex 7912 0.366924 -3.17889 2.71065 Vertex 7913 -0.160315 1.56218 -0.407316 Vertex 7914 -1.21096 -2.58977 -0.137958 Vertex 7915 -0.0892224 -2.17791 0.0979177 Vertex 7916 0.748238 2.05202 0.245424 Vertex 7917 0.361241 3.39316 -0.535737 Vertex 7918 -0.0538053 3.7336 -0.0743873 Vertex 7919 -0.71939 -1.99615 1.89556 Vertex 7920 -0.724785 -1.96503 1.94538 Vertex 7921 -0.099292 -3.00053 2.09038 Vertex 7922 -0.0984471 4.27388 -0.551052 Vertex 7923 -0.722829 -0.241419 1.2977 Vertex 7924 1.31205 1.04977 -0.976587 Vertex 7925 0.62221 -2.47384 -0.407103 Vertex 7926 -0.452376 0.465797 1.1731 Vertex 7927 -0.539638 -1.29917 -0.360242 Vertex 7928 0.531329 -2.88681 2.22466 Vertex 7929 -0.636642 -2.13745 1.42453 Vertex 7930 1.1404 0.728337 -0.124066 Vertex 7931 -1.02806 -1.22635 0.107372 Vertex 7932 0.355643 0.0489441 -0.373436 Vertex 7933 -1.19086 -0.908574 -2.62665 Vertex 7934 0.244863 3.34288 -0.737753 Vertex 7935 -0.740851 0.391495 -1.4382 Vertex 7936 -0.295141 4.36817 -1.09716 Vertex 7937 -0.864429 4.59626 -1.30788 Vertex 7938 0.900445 0.0983287 -0.765187 Vertex 7939 -0.957909 0.662332 -0.0109834 Vertex 7940 0.617422 0.812154 0.998479 Vertex 7941 -0.449582 -1.08728 1.52216 Vertex 7942 0.642275 2.04333 0.497329 Vertex 7943 -1.01427 -0.50447 0.754289 Vertex 7944 1.20448 1.18152 -1.87219 Vertex 7945 -0.910202 -1.25345 -0.113131 Vertex 7946 1.09563 0.256591 -0.592571 Vertex 7947 0.747288 0.362089 -0.895925 Vertex 7948 0.083485 -3.04666 2.54719 Vertex 7949 -0.0826686 1.86805 -0.423511 Vertex 7950 -0.572123 -0.321496 -0.423437 Vertex 7951 0.570466 -2.30525 -0.234311 Vertex 7952 0.486962 -0.592046 -0.0341093 Vertex 7953 -0.551137 -0.62873 1.45052 Vertex 7954 0.763788 0.973367 -0.793649 Vertex 7955 -0.0471463 -0.522395 -0.66946 Vertex 7956 0.504908 1.36145 0.979164 Vertex 7957 -0.0585285 -1.10363 1.39803 Vertex 7958 0.78877 1.77252 0.142505 Vertex 7959 -1.01781 -1.74141 -0.0351255 Vertex 7960 0.530422 1.60688 -0.698392 Vertex 7961 -0.894613 -0.428978 -0.0989879 Vertex 7962 0.450527 -1.06752 0.0804013 Vertex 7963 1.00805 0.97915 0.233384 Vertex 7964 -0.719603 -1.91141 -0.049604 Vertex 7965 -0.626302 -0.875861 -0.431018 Vertex 7966 0.266956 -2.18881 1.90845 Vertex 7967 1.23118 0.430272 -1.43434 Vertex 7968 -0.850132 0.0904492 -1.9509 Vertex 7969 1.51595 1.34819 -1.98255 Vertex 7970 0.316959 2.78842 0.503779 Vertex 7971 0.445352 -0.869885 0.730175 Vertex 7972 0.376973 -2.20192 -0.267109 Vertex 7973 -1.05562 -1.12327 0.312766 Vertex 7974 -1.10718 -2.36325 -0.0992763 Vertex 7975 1.35429 0.526285 -1.19527 Vertex 7976 0.841983 -3.29674 2.63245 Vertex 7977 -0.325277 3.98601 -0.884823 Vertex 7978 1.46897 1.1545 -2.72906 Vertex 7979 0.0898876 3.27144 0.0738869 Vertex 7980 -0.537307 1.2962 0.222284 Vertex 7981 0.504865 -0.853032 0.180486 Vertex 7982 -0.0487963 -2.11623 1.69448 Vertex 7983 1.65734 0.943567 -2.36921 Vertex 7984 -0.304465 4.51858 -0.823027 Vertex 7985 0.298914 -0.746847 -0.363185 Vertex 7986 0.524382 -0.542211 0.660052 Vertex 7987 -0.0104725 -1.83127 3.01141 Vertex 7988 0.153655 -0.489876 -0.536447 Vertex 7989 0.764794 1.12831 -0.625231 Vertex 7990 1.51489 1.27552 -2.53774 Vertex 7991 0.270281 -1.91651 0.49099 Vertex 7992 -0.120627 -1.93057 0.909606 Vertex 7993 -0.577672 -0.358162 -2.36925 Vertex 7994 -0.5098 -2.11037 0.0954978 Vertex 7995 0.289298 -2.30876 1.74623 Vertex 7996 -0.409202 -2.41633 1.6379 Vertex 7997 0.284361 2.4467 0.587481 Vertex 7998 0.437306 -3.1097 2.78794 Vertex 7999 -0.163305 2.33167 -0.223916 Vertex 8000 0.244546 0.0305393 -0.636022 Vertex 8001 0.685243 -2.9727 2.61055 Vertex 8002 0.46336 -0.158703 -0.369294 Vertex 8003 0.579289 -2.53251 2.18081 Vertex 8004 -0.179088 -2.9434 1.69244 Vertex 8005 -0.182197 4.38379 -0.76094 Vertex 8006 -1.38133 5.60102 -2.42557 Vertex 8007 -0.712612 0.91256 -0.365544 Vertex 8008 0.994335 0.483294 0.102759 Vertex 8009 1.91452 0.978021 -2.68358 Vertex 8010 -0.250948 -1.48315 -0.276284 Vertex 8011 0.745949 2.34945 -0.0185281 Vertex 8012 -0.52124 4.3651 -0.601875 Vertex 8013 0.549567 -0.68576 0.296876 Vertex 8014 1.25249 0.359295 -2.78135 Vertex 8015 0.106006 -2.53386 3.12127 Vertex 8016 -0.813473 -1.53133 1.33829 Vertex 8017 -1.15361 4.86966 -1.67656 Vertex 8018 -0.796272 -1.68022 1.97287 Vertex 8019 -0.478424 -0.211887 -1.61151 Vertex 8020 -0.263131 1.66126 0.281786 Vertex 8021 0.406143 -0.996251 0.838739 Vertex 8022 1.35111 1.05868 -2.75941 Vertex 8023 -0.0128365 1.23529 1.06731 Vertex 8024 -0.507677 -2.05721 2.48832 Vertex 8025 -0.900309 0.204289 0.697452 Vertex 8026 -0.650446 -0.69767 -2.60931 Vertex 8027 -0.0774927 3.37451 -0.587083 Vertex 8028 1.03682 1.26581 -0.246795 Vertex 8029 0.723261 0.50034 -0.932148 Vertex 8030 -0.509517 -0.148255 -0.594072 Vertex 8031 -0.24911 -0.214392 -0.64299 Vertex 8032 -0.759249 -1.36344 1.93283 Vertex 8033 -0.361367 -0.912489 -0.547519 Vertex 8034 0.378014 -2.08834 -0.0708276 Vertex 8035 0.140865 3.33518 0.12642 Vertex 8036 -0.208463 4.1934 -1.04711 Vertex 8037 1.26355 0.53625 -1.57553 Vertex 8038 -0.290859 -1.32549 1.75609 Vertex 8039 -0.762829 -0.368194 -1.40217 Vertex 8040 -0.637536 -1.20092 1.54572 Vertex 8041 0.0566425 -2.87139 2.69012 Vertex 8042 -0.0440332 -1.57263 2.81562 Vertex 8043 1.46498 1.42248 -2.08618 Vertex 8044 1.26117 0.48976 -2.64197 Vertex 8045 1.49448 1.30241 -2.47462 Vertex 8046 -0.076125 -1.27034 1.34457 Vertex 8047 -0.75888 -0.0129312 1.19423 Vertex 8048 0.238287 -1.57299 0.361155 Vertex 8049 -0.0596438 0.329437 1.30276 Vertex 8050 0.392618 -0.925731 0.908289 Vertex 8051 -0.690229 -0.33212 -0.783819 Vertex 8052 0.0921878 -0.0582459 -0.780195 Vertex 8053 -0.965538 0.307028 0.616788 Vertex 8054 0.666501 -2.92889 2.57226 Vertex 8055 -0.960598 -0.220399 -1.83082 Vertex 8056 -0.572493 4.25631 -0.743988 Vertex 8057 -0.349145 0.161452 -0.790383 Vertex 8058 0.560434 -0.687547 0.120925 Vertex 8059 1.48082 1.34462 -2.36378 Vertex 8060 0.309253 3.72606 -0.206481 Vertex 8061 0.0322486 2.18814 0.465053 Vertex 8062 0.277586 -2.82962 1.51359 Vertex 8063 -0.427299 -1.6901 -0.128534 Vertex 8064 0.0434674 -2.22606 1.67169 Vertex 8065 -0.0356428 -1.64363 1.19105 Vertex 8066 -0.0181664 -1.82505 1.76842 Vertex 8067 0.589407 -2.33198 2.93779 Vertex 8068 1.08738 0.202667 -1.15179 Vertex 8069 -0.499206 -2.11466 0.405932 Vertex 8070 -0.589584 0.934568 -0.476203 Vertex 8071 -0.590089 -1.03598 1.4374 Vertex 8072 0.458428 2.39916 0.512571 Vertex 8073 0.545457 -3.04733 1.77399 Vertex 8074 0.473782 -0.463222 -0.212984 Vertex 8075 0.612138 -3.14974 2.24213 Vertex 8076 -0.0522455 0.716804 -0.824903 Vertex 8077 0.558039 -2.5401 2.51385 Vertex 8078 -0.209516 -0.382758 -0.655255 Vertex 8079 -0.692956 -0.444058 -2.55488 Vertex 8080 -0.425782 -0.0461281 -1.38365 Vertex 8081 0.448537 3.09264 -0.524974 Vertex 8082 0.515967 -2.52012 2.15474 Vertex 8083 1.65741 0.823855 -2.4917 Vertex 8084 0.658141 -3.28234 2.30507 Vertex 8085 -0.289092 -1.88852 3.01099 Vertex 8086 0.673262 1.22177 -0.590683 Vertex 8087 -0.235612 -1.83702 3.02809 Vertex 8088 -1.0805 -1.23043 -2.64036 Vertex 8089 0.248073 -1.72779 0.455167 Vertex 8090 0.484441 -0.726249 0.662774 Vertex 8091 -0.850077 -0.0234751 -2.33031 Vertex 8092 -0.250379 1.56187 -0.100734 Vertex 8093 0.123057 2.98505 0.176412 Vertex 8094 0.851033 0.508691 0.411955 Vertex 8095 0.0697733 1.879 0.694768 Vertex 8096 -0.30122 4.09089 -1.11744 Vertex 8097 -1.0901 5.23267 -1.64625 Vertex 8098 -0.383102 -2.50054 2.13486 Vertex 8099 -0.0518333 -1.8583 1.46268 Vertex 8100 -0.0439675 3.5066 -0.0822205 Vertex 8101 -0.86395 -1.21326 -0.176042 Vertex 8102 2.18637 0.504833 -2.63719 Vertex 8103 -0.269839 1.5477 0.0466703 Vertex 8104 -1.11252 -0.851789 -2.73997 Vertex 8105 -0.0682678 -1.87218 1.54656 Vertex 8106 -0.00312842 3.37276 -0.697776 Vertex 8107 -0.295521 -0.0148024 1.56324 Vertex 8108 -0.178711 -1.38566 2.31663 Vertex 8109 -0.837627 -0.839774 -0.237104 Vertex 8110 -0.103831 -0.677331 1.46508 Vertex 8111 0.14646 2.45127 0.414106 Vertex 8112 0.404114 1.78762 -0.791018 Vertex 8113 -0.255335 0.808137 1.13729 Vertex 8114 -1.22019 -2.66283 -0.240154 Vertex 8115 -0.709523 -0.688978 1.33798 Vertex 8116 1.45243 0.78479 -1.38181 Vertex 8117 -0.881924 -0.394426 -2.55129 Vertex 8118 -0.207125 -1.41906 1.58161 Vertex 8119 -0.496711 -2.2592 2.04996 Vertex 8120 0.543178 -2.37755 2.49172 Vertex 8121 0.127419 -0.978788 1.30615 Vertex 8122 -0.925251 -1.29752 -2.73045 Vertex 8123 0.590866 -2.70652 2.26104 Vertex 8124 -0.210197 -0.813697 1.47585 Vertex 8125 -1.05739 -2.5051 -0.0972284 Vertex 8126 -1.03959 -1.15684 0.211689 Vertex 8127 -0.584566 1.27069 0.599727 Vertex 8128 0.0523604 -0.366413 1.40852 Vertex 8129 -0.999288 -0.748541 0.861058 Vertex 8130 -0.327297 -2.74129 2.05463 Vertex 8131 -0.0599514 2.73405 0.0635227 Vertex 8132 -0.382903 0.0630146 -0.72356 Vertex 8133 1.59341 1.23412 -2.11091 Vertex 8134 -0.686379 -2.07387 1.69215 Vertex 8135 0.689171 -2.30129 -0.46327 Vertex 8136 0.676701 -3.02321 2.82313 Vertex 8137 0.231085 -2.04038 2.214 Vertex 8138 -0.84499 4.90513 -1.14318 Vertex 8139 -0.19017 -1.44946 1.78597 Vertex 8140 0.291144 -1.4306 0.658824 Vertex 8141 0.780839 2.00014 -0.0682101 Vertex 8142 -0.508633 -1.79337 2.71457 Vertex 8143 -0.365427 1.16569 0.95151 Vertex 8144 -0.972702 4.71889 -1.54988 Vertex 8145 -0.701583 -1.83484 -0.0759124 Vertex 8146 -1.05306 -1.12075 0.699167 Vertex 8147 0.366356 -1.17296 0.79451 Vertex 8148 -0.87748 5.0894 -1.46178 Vertex 8149 -0.391275 1.4678 0.238239 Vertex 8150 0.5042 -3.10309 1.86252 Vertex 8151 -1.02459 -0.0906557 0.0593118 Vertex 8152 -0.62481 -1.15523 -2.77248 Vertex 8153 -0.57334 1.15153 -0.103936 Vertex 8154 0.551754 -0.509439 0.210882 Vertex 8155 1.40023 0.983717 -2.47246 Vertex 8156 -0.30777 -2.02746 2.93199 Vertex 8157 -0.0275561 -1.29971 1.29508 Vertex 8158 -1.00918 0.457669 0.456271 Vertex 8159 -0.119927 -1.816 -0.10469 Vertex 8160 -0.91478 -0.439088 -2.0303 Vertex 8161 -0.972372 -0.346927 0.546923 Vertex 8162 -0.447659 -2.12359 0.735088 Vertex 8163 -0.206837 1.70787 -0.20712 Vertex 8164 0.144978 1.75707 0.814395 Vertex 8165 0.303569 2.87737 0.473793 Vertex 8166 -1.0443 4.76543 -1.57502 Vertex 8167 0.606148 2.93768 -0.134433 Vertex 8168 -0.080466 -2.9224 2.32917 Vertex 8169 0.0980021 -1.65309 0.989291 Vertex 8170 0.643681 2.80859 -0.079288 Vertex 8171 -0.871371 -2.07103 0.01768 Vertex 8172 0.0414843 0.124133 1.31751 Vertex 8173 -0.0979948 -2.0546 1.5863 Vertex 8174 -0.530298 -0.182078 -0.552278 Vertex 8175 -0.665037 -1.01967 -2.39316 Vertex 8176 -0.648576 -2.10829 1.25759 Vertex 8177 -0.425768 -1.18409 1.6268 Vertex 8178 0.71353 -2.41547 -0.274004 Vertex 8179 0.222151 -1.67131 0.674492 Vertex 8180 1.26035 0.406325 -1.30237 Vertex 8181 0.439007 -0.0428791 0.769772 Vertex 8182 0.663693 2.66413 0.0722958 Vertex 8183 -0.815196 -1.4925 1.25746 Vertex 8184 -0.916223 0.191565 0.642073 Vertex 8185 -0.448797 -2.36671 1.52735 Vertex 8186 -0.999876 0.061664 0.318198 Vertex 8187 -0.403144 1.10612 -0.343897 Vertex 8188 0.898468 0.708598 0.471276 Vertex 8189 0.425341 -3.5443 1.69664 Vertex 8190 0.563902 1.7573 -0.54745 Vertex 8191 -0.259852 3.95469 -0.304806 Vertex 8192 0.362468 -0.983772 0.958486 Vertex 8193 -0.0825762 4.17781 -0.86395 Vertex 8194 -0.459892 -0.0684899 -0.747507 Vertex 8195 -0.20224 -2.76806 2.36709 Vertex 8196 1.53392 1.30142 -2.09568 Vertex 8197 0.101706 -3.01146 2.23853 Vertex 8198 -0.805259 -1.6586 1.10993 Vertex 8199 -0.69539 -1.28949 -0.283823 Vertex 8200 0.28252 -1.98877 2.80251 Vertex 8201 -0.395361 0.764189 -0.70847 Vertex 8202 0.544041 -2.3269 2.60561 Vertex 8203 0.496924 -3.57309 1.60558 Vertex 8204 -0.718164 -1.29825 1.4361 Vertex 8205 0.642471 -3.05418 2.98941 Vertex 8206 0.426367 2.00876 0.698775 Vertex 8207 -0.5065 -2.21787 1.38379 Vertex 8208 -0.55862 4.77871 -1.01186 Vertex 8209 0.0411744 0.337277 1.25951 Vertex 8210 0.388977 -2.08827 2.72262 Vertex 8211 -0.985431 4.93443 -1.29602 Vertex 8212 1.09389 0.818896 0.0674432 Vertex 8213 0.596816 2.89557 -0.306287 Vertex 8214 -0.153925 0.950706 1.16625 Vertex 8215 -1.04819 -0.90803 0.701105 Vertex 8216 0.453407 -1.93845 -0.201811 Vertex 8217 -0.599059 0.563358 -0.887952 Vertex 8218 0.383057 -2.81331 2.22504 Vertex 8219 -0.890461 -0.434536 -0.0250881 Vertex 8220 0.493804 -2.98506 1.60786 Vertex 8221 -0.6577 -0.614718 -2.30729 Vertex 8222 -1.40982 5.62142 -2.72158 Vertex 8223 -0.225315 -0.0100685 1.53964 Vertex 8224 -0.806017 -0.682084 -0.251706 Vertex 8225 -0.00153486 -2.95909 2.20717 Vertex 8226 0.37467 1.24247 -0.849329 Vertex 8227 1.1903 0.930038 -1.9084 Vertex 8228 0.532074 1.86904 -0.555639 Vertex 8229 0.736477 0.676313 -0.906485 Vertex 8230 -0.913098 -0.172389 0.733802 Vertex 8231 -1.5773 5.58839 -2.58863 Vertex 8232 1.48155 0.652223 -2.64176 Vertex 8233 -0.166718 1.92695 -0.236329 Vertex 8234 0.683002 -2.62664 -0.437838 Vertex 8235 -1.10475 -2.08026 -0.264117 Vertex 8236 0.468587 -2.56259 2.94362 Vertex 8237 0.979732 1.13386 -0.575892 Vertex 8238 -1.06735 0.266429 -0.0711448 Vertex 8239 0.390445 -0.737335 0.983057 Vertex 8240 -0.237785 1.17049 -0.486929 Vertex 8241 0.220642 -2.21962 2.97493 Vertex 8242 0.57854 2.49637 0.342698 Vertex 8243 0.332091 -1.25608 -0.0469143 Vertex 8244 0.842294 1.47628 -0.113849 Vertex 8245 -0.543283 0.627842 -0.824695 Vertex 8246 -0.622105 -2.05871 0.606128 Vertex 8247 -0.830831 4.63764 -1.09084 Vertex 8248 -0.209978 -2.4315 1.3772 Vertex 8249 0.139633 -2.09006 2.09659 Vertex 8250 -0.399546 -1.40666 2.70373 Vertex 8251 0.0625108 3.70354 -0.883554 Vertex 8252 1.26415 0.398052 -1.21314 Vertex 8253 0.37271 1.90198 0.788037 Vertex 8254 -0.915993 -0.202123 -2.44382 Vertex 8255 -1.24755 -2.82055 -0.23605 Vertex 8256 0.413537 -1.11079 -0.0298532 Vertex 8257 0.650391 0.0958667 -0.600756 Vertex 8258 1.14055 0.949192 -0.160477 Vertex 8259 0.774292 -3.46338 2.23784 Vertex 8260 0.717765 0.779112 0.849555 Vertex 8261 -0.452475 0.153099 -1.54513 Vertex 8262 -1.48056 5.80505 -2.54435 Vertex 8263 -0.362064 -0.00683816 1.51317 Vertex 8264 1.51675 1.17016 -2.70709 Vertex 8265 -0.0997887 -1.51562 2.77535 Vertex 8266 0.131301 -2.72521 1.61052 Vertex 8267 -0.145386 -2.03355 1.1985 Vertex 8268 -0.923316 0.30193 -1.32336 Vertex 8269 -0.539095 -1.44295 -0.260445 Vertex 8270 0.462507 1.11084 1.08013 Vertex 8271 -0.551113 -1.64862 -0.125901 Vertex 8272 0.7809 -3.74372 2.46199 Vertex 8273 -0.799132 -1.16243 1.163 Vertex 8274 0.186035 1.16771 1.08152 Vertex 8275 -0.917798 -2.20085 -0.19172 Vertex 8276 -0.917048 -1.38293 -2.71338 Vertex 8277 -0.116981 4.31452 -0.715347 Vertex 8278 0.459076 -2.13762 2.90063 Vertex 8279 -0.310578 -0.980891 1.48658 Vertex 8280 1.80048 1.08518 -2.68847 Vertex 8281 -0.607492 -0.932869 -2.52267 Vertex 8282 0.258379 -2.73136 3.09625 Vertex 8283 0.128578 2.25708 0.490172 Vertex 8284 0.0466485 3.86891 -0.0587508 Vertex 8285 0.549667 -2.29671 2.69244 Vertex 8286 -0.67657 -2.07647 0.0566629 Vertex 8287 -0.779813 -0.401231 -0.333893 Vertex 8288 -0.465526 -0.405355 -0.496163 Vertex 8289 0.360263 -2.35118 2.06966 Vertex 8290 -0.290715 0.278229 1.45682 Vertex 8291 0.139271 -2.11292 0.446222 Vertex 8292 -0.017421 -3.05823 1.64261 Vertex 8293 -1.0544 0.12514 -0.473186 Vertex 8294 -0.0236574 -0.188044 1.39855 Vertex 8295 0.816233 0.721975 -1.2198 Vertex 8296 0.567722 1.86759 0.641665 Vertex 8297 0.0761054 -0.952848 -0.480334 Vertex 8298 0.373231 -0.890638 -0.218595 Vertex 8299 0.324861 -1.09119 1.00883 Vertex 8300 -1.10051 -1.68208 0.29266 Vertex 8301 0.200193 1.82968 -0.801785 Vertex 8302 -0.227447 -2.74318 2.23445 Vertex 8303 0.290537 -0.871749 -0.337974 Vertex 8304 0.778233 0.306771 -0.897403 Vertex 8305 -0.854427 -2.06601 0.331724 Vertex 8306 1.35859 0.61371 -1.5601 Vertex 8307 0.175273 2.1436 -0.665705 Vertex 8308 -0.121953 -0.166277 1.43215 Vertex 8309 -0.746839 0.610386 -0.683516 Vertex 8310 0.792333 -2.35202 -0.50065 Vertex 8311 -0.129667 -2.04959 1.2583 Vertex 8312 -0.741264 -1.33735 1.83558 Vertex 8313 -1.55042 5.66733 -2.38173 Vertex 8314 0.894281 0.647757 -1.47014 Vertex 8315 1.29903 0.42048 -1.043 Vertex 8316 -0.85563 0.487513 -0.64986 Vertex 8317 1.18207 0.780449 -0.290385 Vertex 8318 0.977956 1.24265 -0.375841 Vertex 8319 -1.15619 4.92834 -1.55179 Vertex 8320 0.00159939 1.49009 0.898811 Vertex 8321 0.473904 1.22572 -0.780089 Vertex 8322 0.0120166 0.0584478 1.34216 Vertex 8323 -0.195203 0.414361 -0.836839 Vertex 8324 0.701444 -3.66922 2.62391 Vertex 8325 -0.603542 -0.285526 -1.31314 Vertex 8326 -0.206637 -2.85586 2.11447 Vertex 8327 1.84482 0.215766 -2.5938 Vertex 8328 -1.08369 -1.17344 0.502267 Vertex 8329 -0.0124099 3.7721 -0.966275 Vertex 8330 1.96743 0.760353 -2.78428 Vertex 8331 -0.642929 -0.946445 -0.428499 Vertex 8332 -0.10759 2.63947 -0.306142 Vertex 8333 1.28951 1.17019 -2.6965 Vertex 8334 -0.94593 -1.73686 -2.60174 Vertex 8335 -0.813106 -0.402333 -1.01564 Vertex 8336 0.119355 2.84855 -0.613256 Vertex 8337 -0.410749 4.57036 -1.20148 Vertex 8338 -0.604011 1.11359 -0.146055 Vertex 8339 1.74327 1.12059 -2.63885 Vertex 8340 -0.295621 -1.3213 1.87809 Vertex 8341 -0.154934 -2.63252 1.58732 Vertex 8342 -0.108359 2.70301 -0.273516 Vertex 8343 0.853553 1.48997 -0.0526072 Vertex 8344 -0.254721 -2.79005 1.71678 Vertex 8345 1.00742 1.08717 -1.09999 Vertex 8346 1.58471 1.19443 -2.66001 Vertex 8347 -0.443976 1.4545 0.626027 Vertex 8348 -0.670853 -1.82801 2.29659 Vertex 8349 0.595081 1.28795 0.941266 Vertex 8350 0.321669 -0.0952995 1.13806 Vertex 8351 -0.826494 -1.57201 1.05337 Vertex 8352 0.0395026 -2.73599 2.84932 Vertex 8353 0.0939136 -2.06254 2.05596 Vertex 8354 -0.00239301 -1.89084 1.91028 Vertex 8355 0.52282 -0.135867 0.281983 Vertex 8356 -0.0283738 -2.67861 2.85361 Vertex 8357 -0.806017 -1.58628 1.58664 Vertex 8358 -0.352646 -2.75255 1.78338 Vertex 8359 0.404676 -0.904515 -0.112102 Vertex 8360 0.301429 2.11891 -0.757157 Vertex 8361 -1.34326 5.49937 -2.35023 Vertex 8362 1.31726 0.853497 -1.95026 Vertex 8363 -0.320153 3.7993 -0.60233 Vertex 8364 0.678495 1.70634 -0.440402 Vertex 8365 0.779032 0.234457 -0.85273 Vertex 8366 -0.379461 0.432786 1.22859 Vertex 8367 -1.12121 -1.20136 -2.67841 Vertex 8368 0.260657 -3.07919 2.056 Vertex 8369 1.53253 0.97043 -1.89027 Vertex 8370 -0.129831 3.35136 -0.328259 Vertex 8371 -1.12049 4.86998 -1.54196 Vertex 8372 1.43344 1.05724 -2.86587 Vertex 8373 0.180602 -0.70999 1.37277 Vertex 8374 -0.913015 -0.462636 -0.869467 Vertex 8375 -0.147639 -1.92261 1.0827 Vertex 8376 0.248008 1.23015 -0.922821 Vertex 8377 0.321914 -1.90995 -0.23374 Vertex 8378 0.360002 3.11231 -0.632761 Vertex 8379 -0.11927 -2.54771 1.47814 Vertex 8380 0.192778 0.786238 -0.936785 Vertex 8381 0.0253557 -1.87739 -0.0127433 Vertex 8382 -0.815299 0.452712 -0.732013 Vertex 8383 -1.00884 -0.998552 -2.76407 Vertex 8384 0.388907 -0.242168 1.03318 Vertex 8385 -1.10685 -2.15283 -0.0834758 Vertex 8386 -1.12579 -0.800043 -2.61359 Vertex 8387 0.487935 2.66086 -0.542883 Vertex 8388 -0.468124 0.15312 -1.6115 Vertex 8389 -1.3965 5.34458 -2.44514 Vertex 8390 0.824046 0.110375 0.0823186 Vertex 8391 0.428441 -0.403327 0.978074 Vertex 8392 -1.04983 -1.76057 0.496301 Vertex 8393 0.782692 1.71459 -0.281605 Vertex 8394 0.696991 -2.55358 -0.478279 Vertex 8395 -1.44034 5.65159 -2.35638 Vertex 8396 -1.012 -0.665924 0.225326 Vertex 8397 1.45149 1.39602 -2.21496 Vertex 8398 -0.12158 3.36036 -0.47801 Vertex 8399 -1.3757 5.19389 -1.90192 Vertex 8400 -0.564068 -1.99714 2.44345 Vertex 8401 -0.639459 -1.95301 2.24427 Vertex 8402 0.471292 0.166131 -0.42816 Vertex 8403 0.626209 2.74329 0.107412 Vertex 8404 1.24945 0.521418 -2.88882 Vertex 8405 0.385018 -0.223946 -0.318309 Vertex 8406 -0.473249 -2.08502 0.620887 Vertex 8407 0.719528 1.84478 -0.384321 Vertex 8408 1.21066 0.771873 -0.447802 Vertex 8409 0.309356 0.6063 -0.918302 Vertex 8410 1.15272 0.987773 -1.90218 Vertex 8411 0.350387 -3.36473 2.54911 Vertex 8412 -0.46305 -1.47143 -2.75314 Vertex 8413 0.557453 0.0662788 -0.211106 Vertex 8414 -0.531531 -0.372385 -0.438242 Vertex 8415 -0.884137 -1.63985 -2.45801 Vertex 8416 -1.00956 -1.19409 -2.70391 Vertex 8417 -0.267903 3.70864 -0.495105 Vertex 8418 -1.0544 -0.304576 -0.45341 Vertex 8419 -0.245145 -2.49695 2.45715 Vertex 8420 1.29102 1.34219 -2.11959 Vertex 8421 0.217436 3.25838 -0.77845 Vertex 8422 -0.52412 -1.99893 2.52818 Vertex 8423 0.452751 -0.165465 0.859419 Vertex 8424 1.64705 0.498269 -2.81017 Vertex 8425 -0.147958 2.39926 -0.268248 Vertex 8426 0.529934 3.11286 0.0523653 Vertex 8427 -0.090025 4.08899 -0.232521 Vertex 8428 -0.0327669 -1.45884 1.24878 Vertex 8429 0.105405 0.272606 1.27103 Vertex 8430 1.39388 1.03847 -2.32566 Vertex 8431 0.241866 -1.11779 -0.28445 Vertex 8432 -1.04301 -0.0341908 -1.20058 Vertex 8433 -0.960668 -0.218692 -1.5019 Vertex 8434 2.20969 0.619614 -2.63615 Vertex 8435 -0.930754 0.228359 -1.05596 Vertex 8436 -0.100842 2.58991 -0.335524 Vertex 8437 -0.0228882 0.498853 -0.991871 Vertex 8438 0.0244863 0.496163 -1.05118 Vertex 8439 0.12836 -1.69448 0.0779526 Vertex 8440 -0.0597159 -1.52459 1.27873 Vertex 8441 0.614069 0.598003 0.948774 Vertex 8442 -0.517938 -2.09563 2.31428 Vertex 8443 -1.06402 -0.723061 0.604049 Vertex 8444 -0.869649 -0.371603 1.15471 Vertex 8445 0.442603 -0.81711 -0.10037 Vertex 8446 -1.17113 -1.19052 -2.71497 Vertex 8447 0.285481 -0.481621 1.25815 Vertex 8448 0.505331 -0.0389823 0.3546 Vertex 8449 -0.547935 -0.26731 -1.66333 Vertex 8450 0.403705 -1.15559 0.0243421 Vertex 8451 0.320162 -2.70259 3.01755 Vertex 8452 0.58293 2.63598 0.264545 Vertex 8453 0.891564 -3.46719 2.4174 Vertex 8454 0.466831 -3.2862 2.77099 Vertex 8455 0.426547 -2.31467 2.13928 Vertex 8456 0.43446 -2.74163 2.15964 Vertex 8457 -0.922374 -1.70907 0.852857 Vertex 8458 -0.807921 -1.68876 1.27167 Vertex 8459 0.301089 0.870775 -0.873681 Vertex 8460 1.26026 0.69722 -2.84304 Vertex 8461 1.46761 0.781828 -1.23192 Vertex 8462 -0.368938 1.55557 0.437505 Vertex 8463 0.343712 0.00219145 -0.356354 Vertex 8464 0.286084 -1.93812 2.6531 Vertex 8465 -0.239013 -2.22881 0.371271 Vertex 8466 1.18301 0.502735 -0.435801 Vertex 8467 -0.160045 0.357501 1.39694 Vertex 8468 -0.510644 1.15028 -0.213518 Vertex 8469 -0.36864 1.18969 -0.247842 Vertex 8470 0.628474 0.21337 0.694772 Vertex 8471 1.11619 1.02357 -0.176657 Vertex 8472 -0.877607 -0.887806 1.12331 Vertex 8473 -0.505156 -2.23906 2.10488 Vertex 8474 0.175337 0.366532 -1.05298 Vertex 8475 -0.160118 -3.00203 1.77757 Vertex 8476 1.44777 1.28662 -1.71469 Vertex 8477 0.723699 1.93339 -0.304965 Vertex 8478 0.285058 3.70164 -0.485882 Vertex 8479 -1.08141 -0.319255 -0.702355 Vertex 8480 -0.593437 -0.549598 -2.6978 Vertex 8481 0.583037 1.81683 0.628419 Vertex 8482 -1.28789 -1.09604 -2.65151 Vertex 8483 -0.313606 1.1393 0.973886 Vertex 8484 0.00792438 -1.63187 2.33012 Vertex 8485 -0.0174201 -0.68737 1.43758 Vertex 8486 0.225952 -2.31202 1.66955 Vertex 8487 0.32204 -1.3964 0.531278 Vertex 8488 0.712059 2.31104 -0.266486 Vertex 8489 -0.921052 -1.14128 0.991412 Vertex 8490 1.23484 1.2601 -1.97253 Vertex 8491 -0.311702 -2.791 2.00343 Vertex 8492 0.491052 -3.24303 2.36492 Vertex 8493 -0.235618 -0.434135 -0.650547 Vertex 8494 -0.948825 -1.66064 0.0337184 Vertex 8495 -0.965004 -0.275464 -1.24765 Vertex 8496 -0.719312 -1.23153 -0.301497 Vertex 8497 -0.0589299 -1.66818 1.39917 Vertex 8498 1.13558 0.993689 -1.7135 Vertex 8499 1.21181 0.522342 -2.67595 Vertex 8500 0.0708248 -1.27387 -0.348325 Vertex 8501 0.0415181 2.25312 -0.521157 Vertex 8502 -1.02753 -1.41353 0.154332 Vertex 8503 0.354725 0.243394 -0.554026 Vertex 8504 0.974259 0.676898 0.312105 Vertex 8505 -1.05075 -0.745753 -2.67437 Vertex 8506 1.31869 1.38958 -1.83754 Vertex 8507 -1.3607 -1.28447 -2.67784 Vertex 8508 0.435291 -3.12243 1.89012 Vertex 8509 -0.237519 -2.51206 1.46721 Vertex 8510 -0.504161 4.74462 -1.16985 Vertex 8511 -0.71485 -0.60533 1.34444 Vertex 8512 0.539994 -0.322028 0.481111 Vertex 8513 -0.148159 3.77261 -0.865296 Vertex 8514 -1.06947 -1.01423 -2.76797 Vertex 8515 -0.672114 -1.98256 2.06511 Vertex 8516 -0.0680154 0.686322 1.32349 Vertex 8517 0.49348 0.273633 0.970449 Vertex 8518 -0.556266 -1.96053 -0.0493059 Vertex 8519 0.575804 0.556435 0.998091 Vertex 8520 -1.07576 -1.29566 0.485968 Vertex 8521 0.261212 -2.208 1.8434 Vertex 8522 1.13087 0.526597 -0.2412 Vertex 8523 -0.65032 -1.95015 2.17931 Vertex 8524 -0.901378 -0.509431 -0.0461541 Vertex 8525 0.120396 -1.71694 2.66295 Vertex 8526 0.74344 1.59156 -0.386658 Vertex 8527 -0.919326 0.306257 -1.51583 Vertex 8528 1.33088 0.94501 -2.63282 Vertex 8529 0.486122 -0.920048 0.46241 Vertex 8530 0.229283 3.85308 -0.309904 Vertex 8531 1.14688 0.931072 -1.83684 Vertex 8532 -0.839066 -0.300245 1.21538 Vertex 8533 -0.78653 4.89662 -1.62785 Vertex 8534 -0.528369 -0.0872397 -1.01952 Vertex 8535 0.880987 -3.55676 2.70835 Vertex 8536 -1.53171 5.61757 -2.3309 Vertex 8537 0.0201311 -1.42268 -0.248861 Vertex 8538 0.628476 1.09739 0.968966 Vertex 8539 0.223084 1.56128 -0.994073 Vertex 8540 -0.205221 1.99815 0.0420492 Vertex 8541 -0.553781 -1.47154 -2.6976 Vertex 8542 1.17029 0.692059 -0.254689 Vertex 8543 -0.21535 -1.6004 2.93037 Vertex 8544 0.404804 3.14127 -0.571839 Vertex 8545 -1.22636 4.9673 -1.9453 Vertex 8546 -1.08643 -2.93411 -0.413675 Vertex 8547 0.532021 -0.679527 0.540527 Vertex 8548 -0.136025 1.42744 -0.483314 Vertex 8549 -0.511747 1.38848 0.511405 Vertex 8550 1.69803 1.11983 -2.38941 Vertex 8551 -1.04682 0.0912707 -1.24282 Vertex 8552 0.154376 0.508806 1.19593 Vertex 8553 -0.654145 4.58673 -1.45189 Vertex 8554 -0.0707459 2.56812 0.103285 Vertex 8555 0.599124 2.73681 -0.395133 Vertex 8556 -0.843143 0.470209 0.896632 Vertex 8557 0.606989 -2.80189 2.73517 Vertex 8558 -0.889061 -0.463397 1.13934 Vertex 8559 -0.240121 -1.36481 1.54136 Vertex 8560 0.528631 -0.299334 0.640266 Vertex 8561 -0.0529089 -2.53752 3.11523 Vertex 8562 -0.165012 -2.22912 1.38872 Vertex 8563 -0.566626 -0.0135826 -1.90537 Vertex 8564 0.570834 0.0557267 0.253487 Vertex 8565 -0.963146 -1.34814 0.888594 Vertex 8566 0.180229 3.91011 -0.259225 Vertex 8567 -0.433966 0.034829 -0.980042 Vertex 8568 0.499427 2.19976 -0.543508 Vertex 8569 0.331834 3.17588 0.242721 Vertex 8570 0.633288 0.733896 -0.777657 Vertex 8571 0.541148 0.0354143 0.352506 Vertex 8572 0.0463012 4.10964 -0.42524 Vertex 8573 -1.25657 5.42116 -2.01923 Vertex 8574 0.195127 -2.92391 2.30264 Vertex 8575 0.464149 1.46308 0.935405 Vertex 8576 -0.361112 -0.712238 1.55584 Vertex 8577 0.219443 1.5953 0.921448 Vertex 8578 0.46229 2.78863 0.312107 Vertex 8579 -1.01095 -2.57811 -0.0903545 Vertex 8580 -1.06075 -0.821157 0.294121 Vertex 8581 -0.122478 2.59474 -0.270966 Vertex 8582 0.682375 -2.24726 -0.328292 Vertex 8583 0.049004 -2.6979 2.91821 Vertex 8584 -0.118065 0.3961 1.34525 Vertex 8585 -1.05017 -2.10119 -0.00491904 Vertex 8586 0.239079 1.38639 -0.970763 Vertex 8587 -0.630061 -0.480498 -2.64506 Vertex 8588 1.46015 1.41486 -1.8396 Vertex 8589 -0.964939 -0.159571 -1.70371 Vertex 8590 -0.744387 0.413816 1.0579 Vertex 8591 0.612126 1.72898 0.712559 Vertex 8592 -1.17095 -2.92733 -0.366114 Vertex 8593 0.359579 -2.74189 1.53818 Vertex 8594 -0.518624 1.29545 0.168898 Vertex 8595 0.309916 -1.84142 0.39655 Vertex 8596 0.60346 2.15784 0.488826 Vertex 8597 1.19267 0.259425 -1.10829 Vertex 8598 1.36842 0.638104 -1.42752 Vertex 8599 -0.311199 0.972904 -0.478592 Vertex 8600 0.479483 -0.484283 -0.0845231 Vertex 8601 -1.18644 5.06883 -1.6046 Vertex 8602 0.617742 1.177 0.959369 Vertex 8603 0.325488 -0.207185 -0.358331 Vertex 8604 -0.681488 -0.315635 1.3327 Vertex 8605 1.10442 1.077 -0.206634 Vertex 8606 -1.40295 5.30428 -1.96945 Vertex 8607 0.080197 0.740902 -0.952764 Vertex 8608 0.747245 1.78571 0.277047 Vertex 8609 0.0623257 0.845543 1.19584 Vertex 8610 -1.00713 -2.03893 -0.282053 Vertex 8611 0.0688514 1.43859 0.96236 Vertex 8612 -1.16093 -1.26663 -2.52967 Vertex 8613 -0.639872 -1.62614 -0.139685 Vertex 8614 -0.789884 -1.77628 1.29059 Vertex 8615 0.556268 -3.48969 1.5313 Vertex 8616 -0.683583 -0.334229 -1.3725 Vertex 8617 0.386198 -2.27815 2.94933 Vertex 8618 -1.1848 -2.92731 -0.278275 Vertex 8619 0.765307 0.0745616 -0.578953 Vertex 8620 1.23659 0.629351 -0.674476 Vertex 8621 -0.940228 -0.546936 -2.59355 Vertex 8622 -0.417637 -0.0724654 -1.46176 Vertex 8623 -0.487735 -0.225809 1.40742 Vertex 8624 -0.0468183 -1.81062 1.53275 Vertex 8625 -0.810339 0.34119 0.971184 Vertex 8626 -0.0687773 2.88454 -0.0357256 Vertex 8627 0.28651 2.57496 -0.738791 Vertex 8628 -0.696917 -0.798123 -2.34075 Vertex 8629 -0.0270151 1.65483 0.781171 Vertex 8630 -0.605176 4.35397 -0.727409 Vertex 8631 0.850069 -3.5635 2.79162 Vertex 8632 -1.54901 5.7913 -2.6269 Vertex 8633 0.0494882 -2.89116 1.64266 Vertex 8634 0.94107 0.321085 -1.2449 Vertex 8635 -1.14256 5.31966 -1.85372 Vertex 8636 -0.872293 0.598118 -0.484344 Vertex 8637 0.821852 0.835442 -0.987112 Vertex 8638 -1.55141 5.42537 -2.45486 Vertex 8639 -1.23986 -2.67705 -0.180056 Vertex 8640 -0.61421 -0.149413 -2.32005 Vertex 8641 -0.0706016 3.22938 -0.502138 Vertex 8642 -0.80899 -1.0657 -0.268702 Vertex 8643 0.292264 -2.11338 2.18513 Vertex 8644 0.128724 0.282699 -1.05316 Vertex 8645 0.207397 0.287374 -1.0093 Vertex 8646 0.224243 -2.99838 2.17119 Vertex 8647 -0.90528 -1.93368 0.65127 Vertex 8648 0.0661258 0.00768445 1.34699 Vertex 8649 -0.0647969 2.08459 0.392823 Vertex 8650 -0.222224 1.60462 -0.242974 Vertex 8651 0.367865 -1.18795 -0.0577545 Vertex 8652 -0.294418 -1.52735 -0.236501 Vertex 8653 -0.573231 -1.25787 2.26777 Vertex 8654 0.126887 2.61088 -0.612237 Vertex 8655 -0.755849 -0.646468 -0.284135 Vertex 8656 -0.44541 -2.05568 0.0622586 Vertex 8657 0.760228 2.16877 -0.0540458 Vertex 8658 0.0010849 2.62367 -0.498867 Vertex 8659 0.151443 -1.45984 -0.10354 Vertex 8660 0.818528 -3.22029 2.64453 Vertex 8661 -0.200055 1.71018 0.56372 Vertex 8662 0.219774 -1.57639 0.108898 Vertex 8663 -0.992442 5.00106 -1.32922 Vertex 8664 0.349791 -2.99251 2.35646 Vertex 8665 0.169845 1.80383 -0.740634 Vertex 8666 -0.856746 0.770733 -0.275621 Vertex 8667 -0.916005 4.63837 -1.45035 Vertex 8668 -0.0531251 2.86536 0.0130139 Vertex 8669 -0.991872 -0.253831 -1.1605 Vertex 8670 -0.155121 -1.01245 1.4426 Vertex 8671 0.0727369 -0.194149 -0.680642 Vertex 8672 0.359025 3.65085 -0.255408 Vertex 8673 -1.01369 -0.792468 0.111856 Vertex 8674 -0.906857 -2.10423 -0.0142857 Vertex 8675 -0.889007 0.733781 0.511208 Vertex 8676 -0.466133 -1.40134 -2.76646 Vertex 8677 -1.29499 5.07607 -1.77613 Vertex 8678 -0.068068 3.92217 -0.0726047 Vertex 8679 0.41651 -1.12114 0.332052 Vertex 8680 -1.09845 4.8396 -1.79432 Vertex 8681 0.241829 -1.5823 0.65165 Vertex 8682 0.247331 -0.891974 -0.36989 Vertex 8683 0.101688 3.09925 -0.674689 Vertex 8684 -0.995378 -0.170974 -1.4621 Vertex 8685 0.291793 3.52348 -0.606657 Vertex 8686 -1.04396 -1.40772 0.223834 Vertex 8687 0.747967 0.288667 0.549329 Vertex 8688 -0.809175 -1.61152 1.9204 Vertex 8689 0.42509 -1.09115 0.160938 Vertex 8690 0.102374 0.618347 -1.02513 Vertex 8691 -0.0179897 1.82306 -0.503418 Vertex 8692 -0.653294 1.13628 0.647981 Vertex 8693 0.789535 0.548124 0.560462 Vertex 8694 -0.661885 -1.06606 1.35927 Vertex 8695 -1.0729 -1.41673 0.546048 Vertex 8696 -1.08637 -0.279832 -0.597724 Vertex 8697 0.115041 -1.31083 -0.284578 Vertex 8698 1.44674 1.19083 -2.68671 Vertex 8699 -1.05294 -0.148411 -0.954517 Vertex 8700 -0.26569 1.60202 0.0858399 Vertex 8701 0.813293 1.58648 -0.247782 Vertex 8702 -0.455718 0.161723 -1.34678 Vertex 8703 0.710107 2.44515 0.129837 Vertex 8704 0.0596259 3.45719 -0.868343 Vertex 8705 -1.03343 -1.35246 0.205454 Vertex 8706 -0.41739 -2.57903 1.96764 Vertex 8707 0.327947 -0.815202 -0.322174 Vertex 8708 -0.260648 -2.86816 1.94584 Vertex 8709 0.684167 0.507148 -0.87443 Vertex 8710 0.522449 2.10975 -0.536946 Vertex 8711 1.82476 0.176483 -2.50784 Vertex 8712 -0.692443 -0.298382 -1.004 Vertex 8713 1.96302 0.653979 -2.5867 Vertex 8714 -0.0836459 -1.32305 1.33181 Vertex 8715 -0.093666 -1.39277 1.32327 Vertex 8716 0.833757 -2.29772 -0.568241 Vertex 8717 0.660167 2.41752 0.295251 Vertex 8718 2.12094 0.62603 -2.76132 Vertex 8719 0.597135 0.083181 0.470429 Vertex 8720 -0.156407 3.74193 -0.790444 Vertex 8721 -0.239467 -0.632876 -0.631154 Vertex 8722 1.77423 1.07917 -2.76112 Vertex 8723 0.235659 -1.61151 0.137508 Vertex 8724 0.596918 -2.37585 2.91169 Vertex 8725 0.372975 -0.292445 1.08303 Vertex 8726 -0.0973513 -0.979799 -0.53561 Vertex 8727 -0.414994 -2.54889 2.01963 Vertex 8728 0.076418 -2.83686 2.75723 Vertex 8729 1.50334 0.952412 -2.18674 Vertex 8730 1.34857 1.24169 -1.58481 Vertex 8731 0.0521419 3.62967 -0.915896 Vertex 8732 -0.464334 1.33425 0.114916 Vertex 8733 0.035413 -1.6505 -0.036892 Vertex 8734 -1.12405 -0.804859 -2.42991 Vertex 8735 -0.358177 4.43001 -1.17565 Vertex 8736 -0.653178 4.41305 -0.824744 Vertex 8737 1.26127 0.722902 -2.83604 Vertex 8738 -0.00526055 3.26079 -0.608652 Vertex 8739 -0.633346 -1.41797 2.42351 Vertex 8740 0.311495 2.36939 0.661876 Vertex 8741 0.478147 -0.84709 0.585299 Vertex 8742 0.656797 -2.11481 -0.367007 Vertex 8743 -0.440774 -2.12971 0.321555 Vertex 8744 0.0227275 1.54686 -0.565473 Vertex 8745 0.124595 0.428627 1.22122 Vertex 8746 -0.991791 -2.60642 -0.212019 Vertex 8747 -1.02728 -1.28209 -2.59433 Vertex 8748 0.302894 0.0854773 -0.545418 Vertex 8749 -0.672726 -0.338741 -1.75194 Vertex 8750 0.317345 -1.36506 0.317016 Vertex 8751 -1.0282 -0.537925 0.485579 Vertex 8752 -0.884234 -0.0350189 0.491164 Vertex 8753 -0.28198 4.23038 -1.15144 Vertex 8754 0.119726 -2.0693 0.595439 Vertex 8755 -0.70263 -0.628284 -2.23409 Vertex 8756 -0.0964809 -2.59155 2.79243 Vertex 8757 0.610397 -2.76354 2.48984 Vertex 8758 -0.782362 -1.67703 2.05479 Vertex 8759 -0.00133292 -0.924519 1.42638 Vertex 8760 0.544755 1.43141 -0.712866 Vertex 8761 0.234437 -1.68549 0.406677 Vertex 8762 0.824133 1.35639 0.600837 Vertex 8763 0.414925 0.27258 1.06337 Vertex 8764 0.557262 -3.11461 1.81789 Vertex 8765 -1.30765 -1.11277 -2.4925 Vertex 8766 0.666112 0.999813 -0.715275 Vertex 8767 -0.0291759 1.17964 -0.650671 Vertex 8768 -0.0565569 -1.90085 1.59634 Vertex 8769 -0.944186 -0.440893 -0.584092 Vertex 8770 -0.31847 -1.26131 1.51686 Vertex 8771 0.724954 2.32577 -0.184759 Vertex 8772 0.728487 -3.01677 2.4906 Vertex 8773 -0.00725023 -1.88935 1.80885 Vertex 8774 -0.775042 -1.76601 1.05131 Vertex 8775 0.114676 -1.72983 2.78007 Vertex 8776 -1.04951 -0.787946 -2.35414 Vertex 8777 -0.0678014 -2.36428 1.62002 Vertex 8778 0.299139 2.23303 -0.747117 Vertex 8779 -0.0633982 -1.61648 1.99518 Vertex 8780 -0.729285 0.530241 -0.795523 Vertex 8781 0.294616 3.10722 0.354339 Vertex 8782 -1.03336 -1.277 0.732909 Vertex 8783 0.371709 -2.94581 2.11863 Vertex 8784 -1.18346 4.92371 -1.8418 Vertex 8785 0.0203907 -0.241014 1.39882 Vertex 8786 0.343871 3.31371 0.125905 Vertex 8787 -1.321 5.40897 -2.32765 Vertex 8788 0.989234 0.340228 -1.31422 Vertex 8789 -0.281546 -1.34767 1.6863 Vertex 8790 0.623823 0.950033 0.994946 Vertex 8791 -0.599823 -0.167471 -2.24938 Vertex 8792 -0.56851 1.22264 0.0828856 Vertex 8793 -1.02407 -2.85622 -0.0842059 Vertex 8794 1.24101 0.74053 -0.801448 Vertex 8795 0.58005 0.762252 -0.737872 Vertex 8796 -1.08574 -0.830893 0.509841 Vertex 8797 0.0146953 3.31145 -0.0172975 Vertex 8798 -0.931657 4.80388 -1.72341 Vertex 8799 0.221428 3.05995 0.292469 Vertex 8800 -0.88362 -0.326293 -1.38506 Vertex 8801 0.121704 -2.23367 1.67655 Vertex 8802 0.784378 0.81515 -0.921377 Vertex 8803 1.67596 0.452139 -2.69033 Vertex 8804 -0.799893 -0.412667 -0.535535 Vertex 8805 0.107962 0.223295 -1.03996 Vertex 8806 -0.235558 -1.88749 -0.108731 Vertex 8807 0.26806 2.12678 0.712524 Vertex 8808 0.232098 2.13063 0.656038 Vertex 8809 -0.390249 -1.19711 1.58516 Vertex 8810 -0.952254 5.15951 -1.60208 Vertex 8811 -1.05803 -0.719659 -2.6176 Vertex 8812 0.771254 1.51595 -0.395097 Vertex 8813 0.255763 2.21448 0.643284 Vertex 8814 0.584641 -3.42797 2.35887 Vertex 8815 -0.033509 -2.81928 2.64773 Vertex 8816 0.211744 -1.00894 -0.365193 Vertex 8817 0.156104 -0.998909 1.26449 Vertex 8818 -0.329164 -1.20229 -0.457342 Vertex 8819 0.0630553 -2.16698 0.236437 Vertex 8820 0.394572 2.95929 -0.611577 Vertex 8821 1.88084 0.415504 -2.60381 Vertex 8822 1.22188 0.976354 -0.867366 Vertex 8823 -1.13298 -2.201 -0.105391 Vertex 8824 0.456594 -0.686329 0.853756 Vertex 8825 0.133889 -3.1061 2.4945 Vertex 8826 -0.382595 -2.68341 1.82018 Vertex 8827 0.0482053 1.46402 -0.615702 Vertex 8828 1.20022 0.273347 -0.908152 Vertex 8829 0.411698 -3.36401 2.3142 Vertex 8830 0.0875249 -1.94759 2.06653 Vertex 8831 0.757933 1.1237 0.780173 Vertex 8832 0.432939 -3.57065 1.47085 Vertex 8833 0.277172 -0.822895 1.18873 Vertex 8834 0.195445 1.95136 -0.810803 Vertex 8835 0.178801 2.40156 0.457911 Vertex 8836 0.131854 -2.11667 1.93694 Vertex 8837 -0.795052 -0.965349 -2.39634 Vertex 8838 -1.16943 5.12205 -1.60177 Vertex 8839 -0.0862897 -1.59348 1.43689 Vertex 8840 -0.315634 0.093426 -0.6671 Vertex 8841 -0.632026 -1.08752 -0.413421 Vertex 8842 -0.570117 -1.19841 1.63894 Vertex 8843 -0.0771802 -2.15399 3.04679 Vertex 8844 -0.757683 -2.01736 0.0273538 Vertex 8845 -1.09582 5.06504 -1.97914 Vertex 8846 -0.483092 0.204686 -1.56299 Vertex 8847 -0.598403 4.43474 -0.712568 Vertex 8848 1.35928 0.630645 -0.965036 Vertex 8849 -0.834886 4.88542 -1.68702 Vertex 8850 -0.685021 -0.0665111 -2.37126 Vertex 8851 -0.185662 -1.4016 1.41715 Vertex 8852 0.474278 2.33375 -0.56583 Vertex 8853 -0.108984 2.41961 -0.354257 Vertex 8854 0.307464 -0.552911 1.20852 Vertex 8855 -0.762689 4.51447 -1.09234 Vertex 8856 -0.174179 3.6749 -0.695402 Vertex 8857 -0.676084 -1.95628 0.903326 Vertex 8858 0.0351438 0.62431 -0.973979 Vertex 8859 0.860118 0.883154 -1.01836 Vertex 8860 -1.03128 -1.5635 -2.54232 Vertex 8861 0.838297 0.428838 -1.18455 Vertex 8862 -0.846489 -0.363966 -1.33752 Vertex 8863 -0.771846 4.51162 -1.28376 Vertex 8864 -0.486419 -1.21541 2.11713 Vertex 8865 0.204742 1.90279 -0.809791 Vertex 8866 0.318192 -1.1547 -0.179611 Vertex 8867 -0.944398 -1.87361 0.661333 Vertex 8868 -0.679399 4.89482 -1.16519 Vertex 8869 -0.58908 -0.481537 -2.37561 Vertex 8870 0.520806 -2.38341 -0.33596 Vertex 8871 0.0395592 0.431572 -1.07723 Vertex 8872 0.528387 -3.59062 2.36726 Vertex 8873 0.388095 -2.33353 1.96053 Vertex 8874 -0.581616 -1.25723 -0.366842 Vertex 8875 -1.04113 -0.836687 0.212828 Vertex 8876 0.807646 -2.3534 -0.54054 Vertex 8877 0.537037 -0.706587 0.482993 Vertex 8878 0.714874 2.52988 -0.0648727 Vertex 8879 -0.877429 0.70339 -0.320492 Vertex 8880 0.522604 -0.786193 0.440327 Vertex 8881 -0.12618 -1.29459 -0.392638 Vertex 8882 -0.407119 1.50883 0.466221 Vertex 8883 1.0722 0.644234 0.0800449 Vertex 8884 -0.451263 0.931522 1.04521 Vertex 8885 -0.0458905 -3.1293 1.71627 Vertex 8886 -0.639286 0.928069 -0.445199 Vertex 8887 0.134587 3.96722 -0.287822 Vertex 8888 0.385026 -2.90621 3.09864 Vertex 8889 -0.799039 -1.58229 1.69118 Vertex 8890 -0.0754431 1.48749 -0.522032 Vertex 8891 0.017957 0.592124 1.24466 Vertex 8892 -0.380716 -1.49621 2.81105 Vertex 8893 0.0973484 -1.56894 1.04877 Vertex 8894 -0.652813 -0.244797 1.32884 Vertex 8895 0.072875 -0.785294 1.42356 Vertex 8896 -0.916237 -0.476296 -0.688967 Vertex 8897 0.532766 -2.53637 2.97295 Vertex 8898 0.50818 -2.911 1.82599 Vertex 8899 -0.912611 -1.51999 -0.0246212 Vertex 8900 0.888534 1.05605 0.501267 Vertex 8901 0.441808 -0.455201 0.947852 Vertex 8902 -0.0784445 1.67703 0.725578 Vertex 8903 0.927736 0.775355 -1.50747 Vertex 8904 0.134203 -1.73392 2.58802 Vertex 8905 0.748581 2.16574 -0.20077 Vertex 8906 0.63225 0.544151 0.90409 Vertex 8907 -0.638291 0.965282 0.880532 Vertex 8908 -0.502926 1.3607 0.336649 Vertex 8909 -0.40292 4.12216 -0.455289 Vertex 8910 0.129561 3.15485 -0.759346 Vertex 8911 -1.21802 -1.00395 -2.46988 Vertex 8912 0.0398764 -1.62894 2.50841 Vertex 8913 -0.768487 -1.10465 -2.46283 Vertex 8914 -0.188102 0.127781 1.48252 Vertex 8915 0.0609005 -1.02565 1.3531 Vertex 8916 -0.968556 -0.606511 0.148684 Vertex 8917 0.425691 -2.80436 2.02625 Vertex 8918 -0.730156 -1.30299 1.90648 Vertex 8919 -0.405294 1.48774 0.298155 Vertex 8920 -0.847277 0.907986 0.0749928 Vertex 8921 1.27328 0.985934 -2.09345 Vertex 8922 -0.0425591 -2.73298 2.76247 Vertex 8923 0.472212 3.38984 -0.0872151 Vertex 8924 0.780615 0.0777655 -0.381038 Vertex 8925 -1.01108 -0.32735 -0.407989 Vertex 8926 0.188469 -0.571435 -0.494507 Vertex 8927 0.313891 -3.31981 2.45328 Vertex 8928 0.459414 3.37488 -0.307455 Vertex 8929 1.15799 0.931873 -0.77777 Vertex 8930 -0.718114 -0.730656 -2.287 Vertex 8931 1.51641 1.32177 -2.3258 Vertex 8932 1.07949 1.15162 -1.11888 Vertex 8933 -0.662932 -0.72508 -2.35527 Vertex 8934 -0.942718 -2.01263 0.183617 Vertex 8935 0.769234 1.00602 0.769891 Vertex 8936 -0.700544 -1.27909 1.50756 Vertex 8937 -0.636408 -1.28309 2.1554 Vertex 8938 0.639973 -2.23226 -0.276689 Vertex 8939 -0.104507 3.92695 -1.03144 Vertex 8940 0.0659022 0.773245 1.20364 Vertex 8941 0.28745 1.76663 -0.884244 Vertex 8942 0.488795 -0.223473 -0.0391964 Vertex 8943 -0.788295 -1.71802 -0.0757176 Vertex 8944 -0.470593 -1.22201 -2.58891 Vertex 8945 -0.637122 -0.756769 1.38001 Vertex 8946 -1.08062 -0.978272 0.574408 Vertex 8947 0.165634 -1.82976 -0.0735484 Vertex 8948 0.649161 -3.22313 2.93605 Vertex 8949 0.550495 0.831178 1.05757 Vertex 8950 -0.927642 0.709298 0.34402 Vertex 8951 -0.260564 1.61118 0.644748 Vertex 8952 0.396949 -3.45044 2.53297 Vertex 8953 0.85233 0.66771 -1.39071 Vertex 8954 -0.882899 0.283504 -1.11179 Vertex 8955 0.112791 -1.87798 -0.0426577 Vertex 8956 -0.354322 -2.31371 1.13894 Vertex 8957 -0.468524 -2.30011 2.07406 Vertex 8958 -0.00510532 1.19251 1.10666 Vertex 8959 0.0925075 -2.58455 1.55432 Vertex 8960 -1.02894 -1.17894 0.767963 Vertex 8961 -1.07657 -0.0303547 0.0264549 Vertex 8962 -0.723701 -1.88671 1.06413 Vertex 8963 1.26596 1.31736 -2.54514 Vertex 8964 -0.554872 0.230773 -1.68792 Vertex 8965 0.0103935 -2.70711 1.543 Vertex 8966 0.991068 0.25739 -0.121896 Vertex 8967 0.870666 -3.50523 2.7705 Vertex 8968 0.653646 0.349449 0.799334 Vertex 8969 -0.927138 -2.71175 -0.170379 Vertex 8970 0.349765 -3.54161 1.47707 Vertex 8971 -0.981197 0.54621 -0.132585 Vertex 8972 -1.07999 0.0647691 -0.366843 Vertex 8973 -0.174954 -2.33318 1.48075 Vertex 8974 -0.0534437 -0.87006 1.43808 Vertex 8975 -0.50422 0.869605 1.04428 Vertex 8976 0.108852 2.65963 0.304419 Vertex 8977 0.718731 2.21149 -0.28059 Vertex 8978 -0.0422754 -1.07642 -0.484659 Vertex 8979 -0.989721 -0.33226 -1.05035 Vertex 8980 -0.944703 0.470048 -0.46371 Vertex 8981 0.398742 2.76222 0.407525 Vertex 8982 -0.537138 0.706681 -0.753147 Vertex 8983 0.318045 -1.7976 -0.0117056 Vertex 8984 -0.948938 -0.273184 -1.8411 Vertex 8985 0.365908 -2.851 2.27554 Vertex 8986 -0.536892 -2.10042 0.453564 Vertex 8987 0.768992 -3.14586 2.35015 Vertex 8988 -0.933822 -0.577685 -2.17207 Vertex 8989 0.0414123 -0.504912 1.41677 Vertex 8990 0.477144 -3.5399 2.37834 Vertex 8991 0.897345 0.932072 -1.14319 Vertex 8992 -0.577774 -0.271962 -1.74481 Vertex 8993 -1.06139 0.0332656 -0.585906 Vertex 8994 -1.04367 0.0919641 0.241745 Vertex 8995 0.694245 2.40555 -0.279012 Vertex 8996 -0.812336 -1.69199 1.49685 Vertex 8997 -0.764936 0.885961 -0.268255 Vertex 8998 1.24464 0.602954 -2.71072 Vertex 8999 -1.12017 -2.92158 -0.408953 Vertex 9000 -0.426708 0.244819 1.25305 Vertex 9001 -0.603336 -0.362279 -2.20766 Vertex 9002 -0.0420207 2.36672 0.242666 Vertex 9003 2.14048 0.683126 -2.57684 Vertex 9004 0.113945 3.51881 -0.866866 Vertex 9005 1.64381 0.753769 -2.54378 Vertex 9006 -0.00129022 -0.317485 -0.685752 Vertex 9007 -0.521943 -1.20359 1.71556 Vertex 9008 0.23795 -2.0179 2.27959 Vertex 9009 -1.01783 -1.60138 -2.59004 Vertex 9010 0.8885 0.0964533 -0.19653 Vertex 9011 0.0650347 -3.10248 1.60962 Vertex 9012 -0.743021 -1.27423 1.3039 Vertex 9013 -0.259287 1.03674 -0.511324 Vertex 9014 -0.799217 0.386527 -1.48823 Vertex 9015 -0.667208 -2.14103 0.393903 Vertex 9016 -0.740726 -0.35877 -1.32271 Vertex 9017 -0.570217 -1.79955 -0.103343 Vertex 9018 0.420636 -3.43429 2.59689 Vertex 9019 0.0401769 2.54702 0.298299 Vertex 9020 0.674344 2.20109 0.376353 Vertex 9021 0.404891 2.36156 0.611411 Vertex 9022 -0.0961708 -2.24 0.351596 Vertex 9023 0.372236 -3.23119 1.88596 Vertex 9024 -0.145341 2.3629 -0.0172471 Vertex 9025 1.22313 0.496476 -0.591313 Vertex 9026 -0.167853 -0.584571 -0.643258 Vertex 9027 -0.346326 -2.14976 0.442614 Vertex 9028 -1.06342 0.221736 -0.272536 Vertex 9029 0.609099 2.92482 -0.0423296 Vertex 9030 -0.887455 0.0994892 -1.89747 Vertex 9031 -1.0624 -0.348523 -0.877788 Vertex 9032 -0.884595 -0.0405009 0.624367 Vertex 9033 -1.07133 -0.304391 -0.525483 Vertex 9034 0.974452 1.43004 -0.000127224 Vertex 9035 0.301607 1.29255 -0.900999 Vertex 9036 1.18714 0.328235 -0.754905 Vertex 9037 0.519809 3.25169 -0.0865542 Vertex 9038 0.658403 -2.2891 -0.254031 Vertex 9039 -0.08301 -1.62675 1.54902 Vertex 9040 1.17442 1.14582 -1.75795 Vertex 9041 0.112652 -2.13745 0.224289 Vertex 9042 -1.04699 -0.187885 -0.992412 Vertex 9043 0.886538 -3.596 2.67276 Vertex 9044 0.315345 0.481312 -0.907215 Vertex 9045 -0.324479 -0.275919 -0.595269 Vertex 9046 -1.28667 -1.33818 -2.44052 Vertex 9047 -0.357102 -2.11665 0.172164 Vertex 9048 -0.170916 4.03074 -1.09712 Vertex 9049 -0.094522 -2.6337 2.73712 Vertex 9050 -1.08711 -2.27507 -0.0805669 Vertex 9051 0.396594 3.06233 0.207255 Vertex 9052 1.15021 0.651309 -0.190665 Vertex 9053 -0.868709 0.340721 -1.34106 Vertex 9054 0.316248 -2.10765 2.36924 Vertex 9055 -0.979973 -2.65692 -0.214658 Vertex 9056 -0.967715 5.17075 -1.68982 Vertex 9057 1.32668 0.636866 -1.6817 Vertex 9058 -0.503253 0.235851 -1.2226 Vertex 9059 0.488444 2.66912 0.358444 Vertex 9060 -0.572069 -1.27018 -2.50767 Vertex 9061 -0.570088 4.29975 -0.676939 Vertex 9062 -0.543055 -2.3237 1.66916 Vertex 9063 0.231331 -0.124631 -0.495106 Vertex 9064 0.109035 -2.13567 1.8488 Vertex 9065 -1.04338 0.0650238 -1.5019 Vertex 9066 -0.0691979 -1.63905 1.47115 Vertex 9067 -0.151888 -0.00476141 1.44433 Vertex 9068 -1.00294 -2.92139 -0.0815066 Vertex 9069 1.25255 1.28709 -2.65932 Vertex 9070 -0.0367755 0.0893335 -0.94861 Vertex 9071 -0.64443 0.355513 -1.29575 Vertex 9072 -1.01568 4.86395 -1.82551 Vertex 9073 -0.704769 4.89216 -1.45231 Vertex 9074 0.367534 3.51866 -0.0165884 Vertex 9075 0.0399797 -0.299123 1.39982 Vertex 9076 -0.586584 4.63451 -0.758297 Vertex 9077 -0.981252 -1.89076 -0.170463 Vertex 9078 -0.575384 -0.125291 -2.06635 Vertex 9079 -0.243609 -1.28351 2.38384 Vertex 9080 -1.074 -2.01925 -0.283568 Vertex 9081 1.62334 1.20672 -2.53905 Vertex 9082 -0.231139 -2.53786 1.53105 Vertex 9083 -0.818597 -1.53632 1.15922 Vertex 9084 0.222277 1.73154 -0.906707 Vertex 9085 0.373005 2.84138 0.39214 Vertex 9086 -0.809771 -1.65284 1.83568 Vertex 9087 0.156654 -0.691911 -0.499409 Vertex 9088 0.739303 -2.59112 -0.465623 Vertex 9089 0.0747463 -1.88239 2.03877 Vertex 9090 -0.789644 -1.78621 1.49763 Vertex 9091 -0.56648 -0.221426 -2.20049 Vertex 9092 0.307254 0.220882 -0.74088 Vertex 9093 -1.39774 5.24459 -2.31519 Vertex 9094 0.0909176 -1.90511 2.98645 Vertex 9095 -1.0036 -0.421361 -0.585674 Vertex 9096 0.876626 0.348107 0.282238 Vertex 9097 -0.614632 0.00778053 -2.0733 Vertex 9098 1.16227 0.924997 -0.524758 Vertex 9099 -0.266138 0.197151 -0.745973 Vertex 9100 -1.11668 -2.55124 -0.258732 Vertex 9101 0.672033 -2.38857 -0.244957 Vertex 9102 -1.04617 -0.0138734 -1.1129 Vertex 9103 -0.557035 1.25425 0.713733 Vertex 9104 -0.0291615 -1.21529 -0.421281 Vertex 9105 -0.0915668 1.34806 -0.537484 Vertex 9106 0.595346 -2.24354 -0.236726 Vertex 9107 -0.106322 3.25678 -0.240575 Vertex 9108 -0.253589 1.02775 1.01952 Vertex 9109 -0.356283 4.58769 -0.972544 Vertex 9110 0.277585 -2.97007 2.1958 Vertex 9111 -1.45662 5.26008 -2.11092 Vertex 9112 -0.995347 -2.3687 -0.274271 Vertex 9113 -0.30551 -1.95798 3.00161 Vertex 9114 -0.974846 -1.20907 -0.0328367 Vertex 9115 -0.171062 -2.49764 1.43105 Vertex 9116 -0.181712 -1.44016 1.99021 Vertex 9117 0.907037 -3.54068 2.52281 Vertex 9118 -0.987792 -1.19537 -2.46509 Vertex 9119 0.280653 0.317348 -0.888541 Vertex 9120 -0.458212 0.484729 -0.920281 Vertex 9121 -0.805675 -2.07795 0.4724 Vertex 9122 0.495544 -0.0764505 -0.116683 Vertex 9123 -0.547594 -1.13069 1.53231 Vertex 9124 0.468696 1.0476 1.09811 Vertex 9125 1.12659 0.848051 -0.0545661 Vertex 9126 0.12221 -1.78681 2.32259 Vertex 9127 -1.39147 5.40525 -1.99739 Vertex 9128 0.580501 0.150327 0.680271 Vertex 9129 -0.483928 0.0401878 -1.10143 Vertex 9130 -0.016163 2.84008 0.0928221 Vertex 9131 -0.437284 -0.305814 1.48054 Vertex 9132 0.244971 -0.203076 1.29817 Vertex 9133 0.0820976 3.88652 -0.756952 Vertex 9134 -0.740961 -1.91594 1.66645 Vertex 9135 0.473467 0.676398 1.11425 Vertex 9136 -0.33651 0.553865 -0.805682 Vertex 9137 0.15841 1.31377 -0.882166 Vertex 9138 -0.715794 -0.664303 -0.322156 Vertex 9139 0.379168 -3.33749 2.62204 Vertex 9140 0.428294 -2.18105 2.49325 Vertex 9141 -0.645266 0.0888532 -1.96889 Vertex 9142 0.446374 -0.702579 -0.139203 Vertex 9143 0.472832 -3.00835 2.92114 Vertex 9144 -0.197116 -1.4134 1.4967 Vertex 9145 -0.917778 -1.60037 0.92539 Vertex 9146 0.253523 -2.08479 0.117663 Vertex 9147 -1.57567 5.75333 -2.56482 Vertex 9148 -0.35121 4.05114 -0.41142 Vertex 9149 -0.13918 -2.24321 3.00463 Vertex 9150 -0.783406 0.7045 -0.507279 Vertex 9151 -1.55895 5.71255 -2.43984 Vertex 9152 -1.02489 -0.41275 -0.644893 Vertex 9153 -0.792316 -1.41118 1.30816 Vertex 9154 -0.8832 0.314371 -1.57123 Vertex 9155 0.117076 -1.28135 1.17943 Vertex 9156 -0.271911 1.44823 -0.151158 Vertex 9157 0.460627 1.93666 0.695436 Vertex 9158 -0.731787 4.46707 -1.11763 Vertex 9159 0.0170304 -1.95557 -0.00887766 Vertex 9160 0.940176 1.40397 -0.124781 Vertex 9161 0.569212 -0.566848 0.142886 Vertex 9162 0.867022 0.0880287 -0.675544 Vertex 9163 1.53885 1.13622 -1.85546 Vertex 9164 0.624485 0.260361 0.767012 Vertex 9165 -0.317692 0.0485088 1.54136 Vertex 9166 0.193155 2.10771 -0.703858 Vertex 9167 -0.75703 1.03572 0.0333747 Vertex 9168 0.396906 1.97312 -0.691851 Vertex 9169 -0.9525 0.633989 -0.112967 Vertex 9170 0.0453589 -1.17389 -0.411203 Vertex 9171 0.583632 0.914995 -0.700637 Vertex 9172 -0.0310748 -2.18128 0.600617 Vertex 9173 1.54537 1.05418 -2.87342 Vertex 9174 -0.293363 1.38612 -0.176258 Vertex 9175 -0.0250923 3.32259 -0.07251 Vertex 9176 -0.692194 0.00582642 -2.24597 Vertex 9177 -0.382402 0.0988427 -0.870299 Vertex 9178 0.295622 -1.78952 0.376322 Vertex 9179 0.0142999 -0.56405 1.4245 Vertex 9180 0.474668 -2.04143 -0.291729 Vertex 9181 0.0487456 2.61971 0.272291 Vertex 9182 -0.348409 -2.39018 2.21962 Vertex 9183 0.868088 -3.48222 2.71454 Vertex 9184 0.355233 -2.9032 3.01105 Vertex 9185 0.136798 -2.79674 2.86254 Vertex 9186 0.304928 3.03852 -0.704086 Vertex 9187 -1.39554 5.61516 -2.3545 Vertex 9188 -0.842371 -0.0765936 1.03662 Vertex 9189 0.151487 -1.32881 -0.233482 Vertex 9190 -0.523919 -0.676196 1.47418 Vertex 9191 -0.0604393 1.71419 -0.461437 Vertex 9192 -0.866973 -0.0996763 0.972179 Vertex 9193 -0.008736 2.83242 -0.484233 Vertex 9194 -0.911564 -0.132077 0.548688 Vertex 9195 0.0680487 -2.16783 3.00904 Vertex 9196 -1.07109 -0.173464 -0.739577 Vertex 9197 0.203116 -1.1329 1.16068 Vertex 9198 0.690322 1.88199 0.426292 Vertex 9199 -0.139798 -2.68509 2.58263 Vertex 9200 1.24575 1.17669 -1.11961 Vertex 9201 0.468896 -0.689357 -0.0616315 Vertex 9202 -0.429041 -1.27773 -2.51402 Vertex 9203 0.344109 -2.26195 2.00861 Vertex 9204 0.363607 3.00276 -0.63735 Vertex 9205 -1.02393 -0.9533 0.0752091 Vertex 9206 -1.11961 4.88797 -1.90835 Vertex 9207 0.107424 1.42446 -0.770398 Vertex 9208 -0.675332 -1.99229 1.10141 Vertex 9209 0.210297 3.06623 -0.772522 Vertex 9210 -0.796119 -1.89122 0.79949 Vertex 9211 -0.424031 0.823538 1.07529 Vertex 9212 0.116096 -1.94641 2.16605 Vertex 9213 -0.864053 0.35136 -1.49232 Vertex 9214 -0.0434646 -2.02246 1.77653 Vertex 9215 -0.511044 -1.41089 2.59024 Vertex 9216 1.66421 1.02266 -2.30834 Vertex 9217 -1.06344 0.16377 -0.345347 Vertex 9218 -0.828793 -1.22764 -2.74733 Vertex 9219 0.164694 -1.77022 2.55323 Vertex 9220 -0.294983 -2.45742 1.62125 Vertex 9221 0.442132 -0.645942 -0.211362 Vertex 9222 -0.280713 -1.30017 2.25181 Vertex 9223 0.668318 1.89102 0.491021 Vertex 9224 -0.800431 -0.316919 1.26686 Vertex 9225 0.740252 -3.72807 2.57272 Vertex 9226 1.96027 0.907285 -2.73064 Vertex 9227 0.025527 2.11811 0.505355 Vertex 9228 -0.019507 -1.76274 1.85803 Vertex 9229 1.49855 0.910674 -1.2515 Vertex 9230 -0.696856 -0.943166 -0.385893 Vertex 9231 0.0732134 -2.16602 1.77568 Vertex 9232 0.339864 -3.1625 1.47067 Vertex 9233 1.09559 1.0333 -0.594 Vertex 9234 -1.57559 5.76417 -2.64933 Vertex 9235 -0.998305 -1.11362 0.839719 Vertex 9236 0.681828 0.654263 0.844488 Vertex 9237 -0.093511 3.99525 -0.102471 Vertex 9238 -0.335627 4.06765 -0.97018 Vertex 9239 -0.648394 0.415895 -0.994401 Vertex 9240 0.349986 -3.38197 2.41375 Vertex 9241 -0.0273552 -1.64607 2.10465 Vertex 9242 -0.979332 -2.4959 -0.179505 Vertex 9243 1.0308 1.30035 -0.165479 Vertex 9244 -1.03185 -1.55672 0.142216 Vertex 9245 0.389789 2.02512 0.741298 Vertex 9246 1.6242 0.998835 -2.27626 Vertex 9247 1.00347 1.3693 0.0281205 Vertex 9248 -1.04985 0.252691 -0.327652 Vertex 9249 0.232899 -0.899737 1.23127 Vertex 9250 -0.988762 -2.43867 -0.126876 Vertex 9251 -0.224221 -2.2574 1.22028 Vertex 9252 1.09485 0.227227 -0.659841 Vertex 9253 1.28364 0.558992 -2.63341 Vertex 9254 -0.416786 1.36765 0.100552 Vertex 9255 -1.31871 5.30833 -1.85381 Vertex 9256 -0.367579 -1.25295 1.80582 Vertex 9257 -0.531424 -1.12373 -2.62555 Vertex 9258 0.272088 3.67363 -0.0462053 Vertex 9259 -0.63787 -1.45332 2.37895 Vertex 9260 -0.903415 0.13429 -1.83228 Vertex 9261 -0.768404 4.91883 -1.17856 Vertex 9262 -0.984359 -0.375262 -0.982867 Vertex 9263 0.713448 1.83292 0.396423 Vertex 9264 0.239416 1.00337 -0.891968 Vertex 9265 0.562989 1.12186 -0.66878 Vertex 9266 1.18439 0.852448 -0.514037 Vertex 9267 -0.222015 1.68893 -0.137903 Vertex 9268 0.614833 1.58981 -0.543121 Vertex 9269 0.629174 1.02383 -0.653479 Vertex 9270 0.773893 0.6062 -1.03747 Vertex 9271 -0.246844 -1.96562 3.01046 Vertex 9272 -0.499239 -1.72305 2.74212 Vertex 9273 -0.702394 -1.7625 2.19451 Vertex 9274 -0.919199 -0.063726 -2.35573 Vertex 9275 0.0398644 4.05998 -0.718231 Vertex 9276 -0.700129 0.868509 0.891538 Vertex 9277 0.430018 -0.336092 -0.326597 Vertex 9278 0.729111 -3.27166 2.98936 Vertex 9279 1.73174 0.781192 -2.82375 Vertex 9280 0.0270941 -1.92921 2.0021 Vertex 9281 -0.0382735 -2.27005 3.037 Vertex 9282 -0.586731 -2.11783 0.411642 Vertex 9283 1.67409 0.520334 -2.59938 Vertex 9284 0.670256 2.55739 -0.303369 Vertex 9285 0.493067 0.975353 1.09862 Vertex 9286 0.177451 3.63836 0.043936 Vertex 9287 -0.104992 3.22189 -0.31331 Vertex 9288 -1.08105 -1.35973 0.440826 Vertex 9289 -0.794724 -1.50937 1.99543 Vertex 9290 0.0944448 -1.88992 0.844774 Vertex 9291 0.198818 1.62117 -0.918958 Vertex 9292 -0.815011 0.919524 0.341799 Vertex 9293 -0.33836 -1.96191 2.94727 Vertex 9294 -0.808603 4.55971 -1.33902 Vertex 9295 0.749207 2.11809 -0.147056 Vertex 9296 0.123291 1.63072 -0.733694 Vertex 9297 -0.874166 -1.84975 0.774584 Vertex 9298 -0.5814 -1.04385 -2.6462 Vertex 9299 -0.931214 -0.780297 1.02266 Vertex 9300 -0.291495 -2.62463 2.24561 Vertex 9301 -1.11976 -2.41759 -0.254384 Vertex 9302 -0.891943 -0.98112 -2.78823 Vertex 9303 0.0698179 -1.3798 -0.259989 Vertex 9304 1.0683 0.806667 0.137363 Vertex 9305 0.235374 0.689338 1.18458 Vertex 9306 -0.851773 -3.05445 -0.156995 Vertex 9307 -1.07592 0.242494 0.122784 Vertex 9308 -0.176141 -1.41905 2.67015 Vertex 9309 0.0119469 -2.14693 0.12878 Vertex 9310 1.40376 0.635129 -1.30107 Vertex 9311 0.406608 2.41501 -0.643258 Vertex 9312 -0.588606 -0.278039 -2.055 Vertex 9313 0.31905 2.13826 0.749763 Vertex 9314 -0.213984 -2.71268 2.42777 Vertex 9315 -0.647375 1.20225 0.48211 Vertex 9316 -1.14193 -2.42292 -0.139694 Vertex 9317 -0.0809974 -2.88229 1.70696 Vertex 9318 -0.675147 -1.23192 1.52069 Vertex 9319 0.00235142 -2.76552 2.78553 Vertex 9320 0.55985 0.941802 1.04918 Vertex 9321 -0.34541 -0.627908 -0.580294 Vertex 9322 0.198189 -2.75825 1.60129 Vertex 9323 -0.207044 -2.12886 0.954018 Vertex 9324 -0.0660049 0.00546105 1.38232 Vertex 9325 -0.980829 -0.850581 -2.36352 Vertex 9326 -0.647459 -0.770968 -2.44417 Vertex 9327 -0.593363 4.76435 -0.957791 Vertex 9328 0.158445 1.54384 0.930032 Vertex 9329 1.83904 0.544321 -2.61248 Vertex 9330 -0.718099 -1.26381 1.35861 Vertex 9331 -0.385944 -1.24821 1.97266 Vertex 9332 0.768346 -3.25673 2.8971 Vertex 9333 -1.25898 5.01121 -1.75349 Vertex 9334 0.505993 2.92544 0.186938 Vertex 9335 -0.312038 -0.44213 -0.603609 Vertex 9336 1.405 1.01703 -2.26714 Vertex 9337 0.630661 0.567141 -0.782893 Vertex 9338 -1.12242 -2.01008 -0.0271281 Vertex 9339 -0.503988 -0.51505 1.47843 Vertex 9340 0.0225465 1.88972 0.662033 Vertex 9341 -0.273475 -1.13964 -0.479648 Vertex 9342 -1.07165 -2.91219 -0.338252 Vertex 9343 1.71349 1.00286 -2.80933 Vertex 9344 0.678235 1.68575 0.671573 Vertex 9345 0.451213 -2.73008 1.73557 Vertex 9346 -0.423959 -0.0777124 -0.582941 Vertex 9347 0.012937 -1.9412 1.8788 Vertex 9348 0.559787 -2.41158 2.56984 Vertex 9349 -0.654111 4.34658 -1.08549 Vertex 9350 -0.0104365 -1.66473 1.10121 Vertex 9351 0.513666 -2.16637 2.8991 Vertex 9352 -0.475115 -2.12154 0.507667 Vertex 9353 0.0300674 1.63157 0.828461 Vertex 9354 0.139896 -2.63964 1.57454 Vertex 9355 -0.665424 4.8237 -1.46932 Vertex 9356 0.685513 -3.26767 2.95314 Vertex 9357 -1.44615 5.31292 -2.0505 Vertex 9358 0.44137 1.41915 -0.805555 Vertex 9359 -0.781303 0.802086 0.810636 Vertex 9360 -1.0564 -0.618128 0.584522 Vertex 9361 1.0531 0.723422 0.162262 Vertex 9362 -1.04025 -0.0183705 -1.49191 Vertex 9363 0.638398 -2.89794 2.93695 Vertex 9364 -0.109835 2.75147 -0.0858067 Vertex 9365 -0.944658 -1.02706 -2.77723 Vertex 9366 -0.432334 1.03695 -0.419644 Vertex 9367 0.784185 0.321726 0.485591 Vertex 9368 0.867048 0.797615 -1.35078 Vertex 9369 0.0571725 -2.04594 2.01203 Vertex 9370 0.0351679 -2.04316 1.95375 Vertex 9371 -1.08499 -2.05798 0.0175039 Vertex 9372 -0.0190136 3.6679 -0.0479118 Vertex 9373 -0.0512168 -1.98848 3.04607 Vertex 9374 0.390898 1.59846 -0.84157 Vertex 9375 -0.489134 0.248235 -1.46839 Vertex 9376 0.490986 1.38575 -0.757633 Vertex 9377 -0.853117 -0.35521 -0.338488 Vertex 9378 0.436825 2.22644 0.611536 Vertex 9379 -0.945372 -0.0511914 -2.0027 Vertex 9380 0.504683 -2.49021 2.93801 Vertex 9381 0.289328 2.78292 -0.729988 Vertex 9382 -0.150309 3.42161 -0.451345 Vertex 9383 0.68223 0.361097 0.749768 Vertex 9384 -0.92511 -0.357741 -1.93133 Vertex 9385 2.00848 0.640119 -2.82081 Vertex 9386 0.665516 0.632696 -0.811209 Vertex 9387 -0.114804 -0.325203 1.45139 Vertex 9388 -1.30685 5.47508 -2.14547 Vertex 9389 -0.295127 1.39861 -0.00639728 Vertex 9390 0.541953 -0.0307837 -0.287403 Vertex 9391 0.547476 -3.28849 2.34976 Vertex 9392 -0.0877679 3.28748 -0.178314 Vertex 9393 -0.160107 1.08464 -0.600331 Vertex 9394 0.64472 -2.93806 2.75625 Vertex 9395 0.913306 0.191462 -1.071 Vertex 9396 0.800214 1.73346 -0.200003 Vertex 9397 0.327565 -2.17598 -0.218522 Vertex 9398 0.108197 2.15063 -0.562673 Vertex 9399 0.324347 1.48972 0.94317 Vertex 9400 -0.0445528 2.24293 -0.408658 Vertex 9401 -0.960798 -1.96071 0.306827 Vertex 9402 0.42367 1.88506 -0.709416 Vertex 9403 0.670216 1.56924 0.760781 Vertex 9404 0.00840384 2.20033 -0.488286 Vertex 9405 -0.747081 1.06868 0.142644 Vertex 9406 0.693244 1.54601 -0.4573 Vertex 9407 -0.544933 1.30138 0.337749 Vertex 9408 0.871398 1.10907 -0.689924 Vertex 9409 -0.822183 -0.799076 -2.79651 Vertex 9410 0.367909 0.0191367 0.976056 Vertex 9411 0.278913 -0.104447 1.21558 Vertex 9412 -0.228776 1.76784 0.039296 Vertex 9413 0.0659119 -2.19188 0.43631 Vertex 9414 -1.58652 5.71988 -2.61479 Vertex 9415 0.318768 -2.11892 2.31612 Vertex 9416 -0.340659 -0.347041 1.58155 Vertex 9417 -0.273831 4.33171 -0.425235 Vertex 9418 0.216099 0.435857 1.20542 Vertex 9419 0.49628 1.97591 0.660136 Vertex 9420 -0.788224 -1.19802 -2.4774 Vertex 9421 0.541126 3.18495 -0.216403 Vertex 9422 0.886726 0.413271 0.28207 Vertex 9423 -1.21298 -2.83332 -0.314385 Vertex 9424 -1.19613 -2.55737 -0.226403 Vertex 9425 -0.156031 -2.38486 2.85686 Vertex 9426 0.296304 -2.00912 0.206634 Vertex 9427 -0.0847189 -1.87729 0.959114 Vertex 9428 0.522977 -3.55893 1.53697 Vertex 9429 0.558893 0.460115 -0.711828 Vertex 9430 1.11247 0.548905 -0.151802 Vertex 9431 0.0377696 1.97 -0.514175 Vertex 9432 -0.324911 -2.56387 1.78956 Vertex 9433 -0.525951 0.795864 1.06085 Vertex 9434 -0.555879 4.30114 -1.1175 Vertex 9435 0.224219 -0.675013 1.32717 Vertex 9436 -1.2337 4.97196 -1.81972 Vertex 9437 1.38107 1.44525 -1.90519 Vertex 9438 -0.0960332 0.658798 -0.827052 Vertex 9439 0.778013 1.85045 0.199321 Vertex 9440 1.1564 1.05674 -1.7641 Vertex 9441 1.46263 1.08913 -1.5552 Vertex 9442 -1.1095 -0.0113087 -0.294682 Vertex 9443 -0.603977 -0.298517 -1.96545 Vertex 9444 0.00616685 -2.50491 3.12205 Vertex 9445 -0.014894 1.97092 0.559027 Vertex 9446 -0.718777 -2.00865 1.8258 Vertex 9447 -0.101206 1.21487 -0.565737 Vertex 9448 0.673841 2.13167 0.421733 Vertex 9449 -1.08678 -2.32493 -0.0857201 Vertex 9450 -0.2427 1.75225 0.117267 Vertex 9451 0.283263 -2.01851 2.41628 Vertex 9452 -1.03145 -2.62116 -0.248665 Vertex 9453 1.23457 0.660241 -0.740786 Vertex 9454 -0.16224 3.65106 -0.251365 Vertex 9455 -0.00278966 4.17159 -0.663771 Vertex 9456 1.90128 0.897158 -2.81219 Vertex 9457 -0.0947458 3.08331 -0.177138 Vertex 9458 0.332873 -0.769051 1.09088 Vertex 9459 0.407511 -2.87009 2.02045 Vertex 9460 1.12995 0.893075 -1.7878 Vertex 9461 0.355665 -2.04277 2.70764 Vertex 9462 -0.134073 -1.41537 2.49851 Vertex 9463 -1.06797 0.0454228 -0.498881 Vertex 9464 -1.43106 5.47728 -2.60804 Vertex 9465 0.634682 1.34426 0.889901 Vertex 9466 -1.22172 4.96486 -1.71157 Vertex 9467 -0.559626 0.752403 -0.708809 Vertex 9468 -0.46567 -1.78288 2.78786 Vertex 9469 0.83806 1.56936 0.0362879 Vertex 9470 -0.748727 -0.65776 -2.20637 Vertex 9471 1.61447 1.14626 -2.77637 Vertex 9472 -0.172987 2.10393 -0.171006 Vertex 9473 -0.749788 4.96402 -1.30184 Vertex 9474 0.602956 -2.94537 2.99013 Vertex 9475 1.33374 1.07123 -2.57613 Vertex 9476 -0.574752 -0.412346 -2.41188 Vertex 9477 -1.09795 -1.80539 -0.0280727 Vertex 9478 -0.918646 -0.0166328 -2.07987 Vertex 9479 1.7571 0.776899 -2.57876 Vertex 9480 -0.468393 -2.23902 2.18274 Vertex 9481 0.870853 1.25714 0.506177 Vertex 9482 -0.675506 -1.27038 1.66052 Vertex 9483 -0.409939 -2.44789 1.80006 Vertex 9484 -1.071 -2.28377 -0.300965 Vertex 9485 -0.248038 1.27218 -0.418979 Vertex 9486 -0.7529 -0.558553 -2.60781 Vertex 9487 -0.106677 3.39421 -0.216235 Vertex 9488 -1.10067 -1.69064 0.415543 Vertex 9489 0.804514 0.0748738 -0.455218 Vertex 9490 -0.21679 -2.18206 1.2145 Vertex 9491 -0.229875 -2.22505 1.17504 Vertex 9492 0.554682 2.31527 -0.504644 Vertex 9493 0.599734 -3.4464 2.78057 Vertex 9494 -0.970806 -0.164895 -1.90044 Vertex 9495 1.25794 1.16784 -2.39404 Vertex 9496 0.144211 2.38575 -0.651064 Vertex 9497 -0.888985 -0.324167 -0.192801 Vertex 9498 0.483524 -0.627156 0.747268 Vertex 9499 -1.27118 5.20256 -2.20443 Vertex 9500 0.703074 2.5144 -0.245952 Vertex 9501 -0.937956 -2.12919 -0.0605985 Vertex 9502 -1.11499 -2.82051 -0.286939 Vertex 9503 -0.58519 0.826141 1.02324 Vertex 9504 1.25602 0.822497 -1.88811 Vertex 9505 -0.275674 -2.44862 1.38934 Vertex 9506 0.317232 -2.18535 2.92401 Vertex 9507 1.21098 0.450939 -2.81111 Vertex 9508 0.567785 -0.530379 0.10014 Vertex 9509 -0.165596 -2.59043 1.52836 Vertex 9510 0.0858033 0.805857 -0.919582 Vertex 9511 -0.736121 -0.894394 -0.357158 Vertex 9512 0.573312 0.184475 0.740084 Vertex 9513 -0.0761852 3.2264 -0.135858 Vertex 9514 -1.05199 -1.08713 -2.74794 Vertex 9515 -1.05832 -0.753639 0.656437 Vertex 9516 0.526945 0.502321 -0.686333 Vertex 9517 -0.237844 -2.65299 2.40973 Vertex 9518 1.28872 0.581149 -0.882545 Vertex 9519 -0.770766 0.500007 1.00824 Vertex 9520 -0.863879 4.65213 -1.17249 Vertex 9521 -0.754681 0.797017 -0.457296 Vertex 9522 1.13489 0.772901 -0.0869459 Vertex 9523 -0.998423 0.312679 0.537001 Vertex 9524 0.219988 -2.09488 0.177368 Vertex 9525 -0.943416 -0.804499 -0.0200735 Vertex 9526 -0.763027 -1.3318 1.8756 Vertex 9527 0.175061 -1.99993 0.585486 Vertex 9528 -0.927412 -0.716591 -2.23347 Vertex 9529 0.310812 -2.11343 -0.0455587 Vertex 9530 -0.484262 -1.35015 2.56149 Vertex 9531 0.0522241 -1.74613 2.12918 Vertex 9532 0.557218 -3.21617 2.86557 Vertex 9533 1.32848 1.20744 -1.43467 Vertex 9534 -0.850783 0.803038 -0.230012 Vertex 9535 -1.00658 -0.450034 -2.39755 Vertex 9536 -0.649981 -1.22578 -2.49966 Vertex 9537 -0.822674 -0.453692 -0.680769 Vertex 9538 -0.645957 -1.31255 2.23725 Vertex 9539 0.151784 -1.79158 2.42316 Vertex 9540 0.161425 -1.83553 2.35033 Vertex 9541 0.28026 -1.81602 0.466365 Vertex 9542 0.121892 3.47446 0.120338 Vertex 9543 -0.812634 -1.36757 -0.144541 Vertex 9544 -0.811593 4.99107 -1.29662 Vertex 9545 0.562927 1.21879 0.993498 Vertex 9546 1.21633 1.30631 -1.88474 Vertex 9547 -0.226801 -0.0790332 -0.66622 Vertex 9548 -0.295055 1.52831 0.187411 Vertex 9549 0.350811 -1.09693 -0.160706 Vertex 9550 0.412962 -3.1927 2.74927 Vertex 9551 -0.656822 -0.0626974 1.26984 Vertex 9552 -0.959187 -0.695028 0.073976 Vertex 9553 -0.0225228 -0.0226512 -0.849637 Vertex 9554 0.985504 0.854506 -1.56036 Vertex 9555 -0.925902 -0.403724 -0.506602 Vertex 9556 0.0500026 0.236433 1.28746 Vertex 9557 -0.906915 -1.57671 0.00743304 Vertex 9558 -0.753797 -0.3496 -1.07883 Vertex 9559 0.299638 -2.83858 3.11751 Vertex 9560 0.343111 -2.86574 3.13119 Vertex 9561 -1.40763 5.54009 -2.68774 Vertex 9562 -0.714066 -0.35309 -0.931085 Vertex 9563 0.513985 -0.0465561 -0.210618 Vertex 9564 -1.08674 -1.10334 0.535979 Vertex 9565 0.495823 -2.08629 -0.183803 Vertex 9566 0.293997 -0.626384 -0.404823 Vertex 9567 -0.623688 4.69019 -0.818852 Vertex 9568 -0.124373 3.47223 -0.585437 Vertex 9569 -0.7774 -0.079354 1.20918 Vertex 9570 -0.573518 -1.54761 2.56195 Vertex 9571 0.177099 -1.88334 0.700086 Vertex 9572 -0.28958 -2.29646 2.65351 Vertex 9573 0.989277 0.997509 -1.40955 Vertex 9574 -0.245645 -1.37103 1.90799 Vertex 9575 -0.758565 -1.39169 1.45324 Vertex 9576 1.18738 0.219067 -0.978561 Vertex 9577 -0.769682 4.99208 -1.35585 Vertex 9578 -1.14796 -2.40234 -0.202709 Vertex 9579 0.306041 -0.9266 1.10836 Vertex 9580 -1.22937 5.27027 -1.72698 Vertex 9581 -0.510425 -1.1665 -2.46872 Vertex 9582 0.310881 1.45878 -0.942773 Vertex 9583 -0.113399 4.15588 -0.30366 Vertex 9584 1.33741 0.567507 -2.83682 Vertex 9585 0.406684 2.847 0.342261 Vertex 9586 0.160296 -3.29707 1.54567 Vertex 9587 -0.0651503 -1.91648 0.890428 Vertex 9588 0.358552 0.183782 1.08352 Vertex 9589 -0.952212 -0.297171 0.684369 Vertex 9590 0.100258 1.8192 -0.602271 Vertex 9591 0.332533 0.285718 1.15213 Vertex 9592 -0.686948 4.79588 -1.52124 Vertex 9593 -1.13008 -1.24673 -2.58869 Vertex 9594 -0.582732 -0.206237 -0.877773 Vertex 9595 0.459217 1.09015 -0.752371 Vertex 9596 -1.09567 -0.925605 -2.43129 Vertex 9597 0.367313 3.02634 0.281916 Vertex 9598 -0.726147 -0.261753 -2.47176 Vertex 9599 -0.69452 -1.00414 1.32854 Vertex 9600 -0.142732 -1.59157 -0.175264 Vertex 9601 -1.02995 -1.16273 0.153337 Vertex 9602 -0.0864256 1.24859 0.989613 Vertex 9603 0.555078 -2.44456 2.4833 Vertex 9604 -0.953871 -2.28914 -0.118677 Vertex 9605 -0.525075 -2.12412 2.23925 Vertex 9606 0.75533 1.71614 0.510867 Vertex 9607 -0.853317 0.844975 0.355584 Vertex 9608 -0.989157 -0.328198 -2.15953 Vertex 9609 -1.40492 -1.42013 -2.49978 Vertex 9610 -1.54359 5.42681 -2.2468 Vertex 9611 -0.478354 -2.27337 2.13474 Vertex 9612 0.171678 0.9064 -0.910697 Vertex 9613 -0.107167 3.16237 -0.252082 Vertex 9614 -0.699368 -0.336222 -1.62901 Vertex 9615 -0.954834 -0.361837 -0.435248 Vertex 9616 0.237766 -0.0441657 -0.514297 Vertex 9617 -0.364458 1.56016 0.356437 Vertex 9618 -0.742524 0.72359 0.955726 Vertex 9619 0.108644 1.91163 -0.569591 Vertex 9620 -0.403884 1.29711 0.84085 Vertex 9621 0.565381 -2.39113 -0.252829 Vertex 9622 0.122118 -1.90438 2.2046 Vertex 9623 0.392878 -3.0465 2.36479 Vertex 9624 -0.185567 -0.970639 -0.541233 Vertex 9625 0.531631 2.66413 0.312408 Vertex 9626 -0.334161 1.57599 0.303251 Vertex 9627 -0.628439 -0.600328 -2.7177 Vertex 9628 -0.0292205 2.59611 -0.456427 Vertex 9629 -0.933638 -1.69944 -2.45243 Vertex 9630 -0.0311578 -1.40955 -0.284954 Vertex 9631 -0.630541 -0.268066 -1.23065 Vertex 9632 0.18454 -1.58741 0.90926 Vertex 9633 -0.613015 -0.564272 -2.46231 Vertex 9634 0.73503 -2.5531 -0.364909 Vertex 9635 -0.838614 -1.56665 -2.64801 Vertex 9636 -1.22184 -2.88729 -0.272733 Vertex 9637 -0.10391 2.86495 -0.159833 Vertex 9638 -0.958135 -2.18092 -0.255038 Vertex 9639 -0.659274 -1.92234 -0.0606821 Vertex 9640 0.199091 -1.92645 2.90347 Vertex 9641 0.199884 3.26227 0.25522 Vertex 9642 -0.56814 -2.07063 0.0257482 Vertex 9643 0.544772 2.72871 -0.487916 Vertex 9644 0.698629 -3.71634 2.4234 Vertex 9645 -0.839326 -0.686247 1.23813 Vertex 9646 -0.0332711 -1.7401 1.54989 Vertex 9647 1.23662 0.326814 -0.941095 Vertex 9648 -0.671534 0.519032 -0.886824 Vertex 9649 0.714556 -2.359 -0.33427 Vertex 9650 -1.06482 -1.32906 0.627368 Vertex 9651 -0.198186 4.40024 -0.883453 Vertex 9652 -0.453314 1.11112 -0.315 Vertex 9653 -0.360221 0.158821 1.40167 Vertex 9654 0.353144 3.11638 0.242938 Vertex 9655 0.0470102 0.865862 -0.832237 Vertex 9656 -1.05517 0.0822335 -0.551337 Vertex 9657 0.50287 -0.742618 0.585421 Vertex 9658 0.493352 -0.0528041 0.530968 Vertex 9659 0.082109 1.62508 -0.627845 Vertex 9660 1.6728 1.15396 -2.65569 Vertex 9661 -1.09309 -0.939637 0.427559 Vertex 9662 -1.00844 -0.205311 -0.115217 Vertex 9663 -1.27013 5.00928 -1.9233 Vertex 9664 -1.07418 -1.43254 0.45495 Vertex 9665 1.39002 0.62426 -1.08537 Vertex 9666 -0.155026 0.606144 1.37234 Vertex 9667 -0.97926 0.370918 -0.446165 Vertex 9668 1.00837 0.655458 0.232249 Vertex 9669 -0.545645 0.369309 1.17625 Vertex 9670 0.974457 1.04256 -1.05988 Vertex 9671 -0.418892 -1.09597 -0.483478 Vertex 9672 0.799899 0.255094 0.401447 Vertex 9673 -0.185146 1.39863 -0.419013 Vertex 9674 -0.633406 -1.97748 0.817986 Vertex 9675 -0.853773 -1.62884 -0.0272531 Vertex 9676 0.687808 2.45243 0.190463 Vertex 9677 0.0699618 2.2019 -0.540487 Vertex 9678 0.203462 2.90912 0.284036 Vertex 9679 -0.316168 0.150062 1.50234 Vertex 9680 -1.06077 -0.999261 0.281902 Vertex 9681 -1.07881 -0.98203 0.350961 Vertex 9682 0.243748 1.40755 0.999192 Vertex 9683 -0.911749 -2.14855 -0.156919 Vertex 9684 1.65406 0.896844 -2.41428 Vertex 9685 1.55894 1.18534 -1.94735 Vertex 9686 0.21886 1.14633 -0.894709 Vertex 9687 -0.0488805 -0.468411 1.43729 Vertex 9688 1.31292 0.627653 -0.901603 Vertex 9689 -1.16519 -2.86024 -0.238175 Vertex 9690 1.83086 0.635806 -2.63726 Vertex 9691 -0.799325 0.988829 0.017898 Vertex 9692 -0.963831 0.24516 -1.57001 Vertex 9693 -0.906805 -0.141297 0.485563 Vertex 9694 1.27409 0.658742 -2.68059 Vertex 9695 0.627394 0.411659 0.889046 Vertex 9696 0.0738209 4.0945 -0.49858 Vertex 9697 -0.116962 -1.54068 1.45671 Vertex 9698 -1.23647 -1.35881 -2.49764 Vertex 9699 -0.130482 2.48892 -0.0359228 Vertex 9700 0.640288 -3.66243 2.39526 Vertex 9701 0.214785 -3.36388 1.81093 Vertex 9702 0.72357 -3.72045 2.49534 Vertex 9703 -0.148308 -1.50405 1.67879 Vertex 9704 -0.705104 -0.397379 -1.88255 Vertex 9705 -0.169117 1.46498 -0.433691 Vertex 9706 -1.33808 5.36982 -2.39091 Vertex 9707 -0.114592 1.76927 -0.366119 Vertex 9708 -0.608428 -0.342089 1.36862 Vertex 9709 0.0206298 -1.48398 1.17116 Vertex 9710 0.168639 1.71273 -0.81996 Vertex 9711 0.755076 -3.3994 2.22795 Vertex 9712 -0.948597 -1.15625 0.927371 Vertex 9713 1.28597 1.27877 -2.14457 Vertex 9714 1.5758 1.25471 -2.17703 Vertex 9715 0.497138 -3.42331 1.40386 Vertex 9716 0.532232 -0.159956 0.152628 Vertex 9717 -1.00715 -0.450132 0.592915 Vertex 9718 0.638282 1.45253 -0.550512 Vertex 9719 0.266055 -0.96954 -0.337701 Vertex 9720 0.266298 1.51072 -0.998008 Vertex 9721 0.463346 -2.21383 2.94697 Vertex 9722 0.249383 2.47755 -0.776995 Vertex 9723 -1.04639 -1.77403 -0.0653618 Vertex 9724 -0.250065 -2.38218 1.19298 Vertex 9725 -0.536611 -2.16785 1.26388 Vertex 9726 -0.068817 -2.81695 1.71005 Vertex 9727 1.50728 0.953195 -2.34031 Vertex 9728 -1.1098 -2.6518 -0.274706 Vertex 9729 0.58095 2.42654 0.390461 Vertex 9730 0.426722 -1.02752 0.610471 Vertex 9731 -0.253993 -2.51264 1.69349 Vertex 9732 -0.550101 -0.158573 -1.16315 Vertex 9733 -0.656292 1.10675 -0.00203237 Vertex 9734 0.535943 -0.646098 0.541104 Vertex 9735 0.421384 -0.0962307 0.87422 Vertex 9736 -1.01786 -1.36479 0.107015 Vertex 9737 -0.2829 -1.24354 -0.433537 Vertex 9738 2.21248 0.537101 -2.6853 Vertex 9739 -0.470326 -1.64976 -0.139361 Vertex 9740 0.33368 -3.40757 1.41203 Vertex 9741 -0.220692 0.955466 -0.605419 Vertex 9742 -0.531235 4.65987 -1.35689 Vertex 9743 -0.925338 -0.477156 -2.09469 Vertex 9744 1.16805 0.615294 -0.288378 Vertex 9745 -0.872267 -2.96589 -0.0634126 Vertex 9746 -1.04238 -0.65329 -2.57575 Vertex 9747 -0.622533 -0.949732 -2.43505 Vertex 9748 0.677105 0.771463 -0.813628 Vertex 9749 -0.490982 4.11693 -0.88121 Vertex 9750 -0.760593 0.187356 1.00484 Vertex 9751 -0.19724 1.65729 -0.265243 Vertex 9752 -0.985624 -0.731971 -2.28548 Vertex 9753 -0.698466 -0.22097 -2.44609 Vertex 9754 0.547968 -0.356267 0.359505 Vertex 9755 -0.749553 0.0329616 -2.15486 Vertex 9756 2.1003 0.740249 -2.57037 Vertex 9757 -0.942622 4.6659 -1.39807 Vertex 9758 0.845782 0.809096 -1.23439 Vertex 9759 0.592693 2.61428 -0.434569 Vertex 9760 0.213146 1.36086 -0.929887 Vertex 9761 0.227632 0.534 -0.970659 Vertex 9762 0.24705 2.996 0.37299 Vertex 9763 1.54766 0.649963 -2.64499 Vertex 9764 -0.289589 1.61399 0.294069 Vertex 9765 -0.288039 1.58809 0.244291 Vertex 9766 0.539952 -3.08115 2.27721 Vertex 9767 1.02502 1.10561 -1.234 Vertex 9768 -0.207949 -2.33006 1.31845 Vertex 9769 -0.948708 0.662264 0.360365 Vertex 9770 -0.967018 0.637412 0.308265 Vertex 9771 -0.250853 -1.36992 1.78597 Vertex 9772 -1.03284 -0.691106 -2.30332 Vertex 9773 -0.59265 0.988464 -0.395693 Vertex 9774 0.469096 3.40289 -0.197217 Vertex 9775 1.58646 1.19769 -2.00594 Vertex 9776 2.07018 0.57469 -2.68048 Vertex 9777 -0.0334495 -1.82982 0.969305 Vertex 9778 0.478661 -0.840127 0.0118626 Vertex 9779 -0.94205 -0.219395 -1.63516 Vertex 9780 -1.04148 -0.718315 0.722469 Vertex 9781 -0.82603 4.55829 -1.28106 Vertex 9782 -0.610236 -0.658402 -0.424144 Vertex 9783 -0.33168 -1.96784 -0.0225158 Vertex 9784 0.0308942 1.34022 1.02497 Vertex 9785 0.293593 1.88016 -0.813923 Vertex 9786 0.163098 -0.65222 1.38782 Vertex 9787 1.46351 1.05177 -1.23659 Vertex 9788 0.0684766 2.2577 0.45637 Vertex 9789 -0.225491 -2.8726 2.04387 Vertex 9790 0.613954 1.38875 -0.600036 Vertex 9791 0.316375 -2.91579 2.35793 Vertex 9792 -1.01707 0.200074 -0.579324 Vertex 9793 -0.206411 4.29099 -0.438421 Vertex 9794 -0.667556 -0.30124 -2.44228 Vertex 9795 -0.964716 0.487482 -0.328178 Vertex 9796 0.536384 0.606062 1.05294 Vertex 9797 -0.424642 0.00198792 -0.84362 Vertex 9798 -0.583328 4.43139 -1.36542 Vertex 9799 -1.11885 4.86563 -1.8549 Vertex 9800 -0.887498 -1.13936 -0.167802 Vertex 9801 -0.895038 -0.00797133 0.355182 Vertex 9802 -0.437269 -2.31122 2.14457 Vertex 9803 -0.926064 -0.573335 1.05596 Vertex 9804 0.652281 2.5124 -0.352493 Vertex 9805 0.0501667 -2.6472 2.9992 Vertex 9806 0.498859 -3.3314 2.36246 Vertex 9807 -1.03048 0.125402 -1.19096 Vertex 9808 -0.869761 0.0311333 0.618308 Vertex 9809 0.619753 0.31776 0.829854 Vertex 9810 -1.03461 -1.45647 0.68428 Vertex 9811 0.354364 -1.94052 0.0388008 Vertex 9812 0.14478 -1.66275 0.929464 Vertex 9813 -0.192668 1.89293 0.205123 Vertex 9814 0.221843 -1.89383 2.77263 Vertex 9815 -0.124002 -2.04851 0.824858 Vertex 9816 -0.869691 0.256933 -1.01066 Vertex 9817 -1.58538 5.53634 -2.43465 Vertex 9818 0.442785 2.71654 -0.581775 Vertex 9819 -0.0801126 2.1747 0.299867 Vertex 9820 1.42271 0.671831 -1.20685 Vertex 9821 -1.02468 -0.383807 -0.916478 Vertex 9822 -1.24798 -2.71921 -0.213493 Vertex 9823 0.737995 -3.53412 2.8006 Vertex 9824 0.514253 3.27751 -0.136801 Vertex 9825 0.250324 -1.50327 0.111856 Vertex 9826 -1.03359 0.0417538 -1.10577 Vertex 9827 0.647537 0.0772965 0.237782 Vertex 9828 -0.153682 0.495698 1.40233 Vertex 9829 0.715682 -3.11993 2.81962 Vertex 9830 0.0415565 0.661152 1.23031 Vertex 9831 -0.888327 -0.396265 0.127562 Vertex 9832 -0.904025 -0.337689 -0.333606 Vertex 9833 0.69499 -2.34511 -0.265926 Vertex 9834 -0.434178 -0.15375 -1.44217 Vertex 9835 0.408922 -2.7875 3.07401 Vertex 9836 -0.746509 -1.93427 1.86549 Vertex 9837 1.51805 0.591893 -2.70019 Vertex 9838 -0.627214 -2.11174 0.0769921 Vertex 9839 0.810807 0.939316 0.690544 Vertex 9840 0.158403 -3.26813 1.89369 Vertex 9841 -0.753403 0.871155 0.790566 Vertex 9842 0.658928 0.832104 -0.782027 Vertex 9843 0.343877 -1.24772 0.792122 Vertex 9844 -0.820619 0.188234 -1.83893 Vertex 9845 -0.723984 -1.34524 1.57044 Vertex 9846 0.194365 2.98641 -0.77059 Vertex 9847 -0.571997 0.336808 -1.45699 Vertex 9848 -1.05709 -0.265285 -0.360083 Vertex 9849 -0.378662 -1.24021 2.27183 Vertex 9850 -0.925037 -0.623565 0.0285916 Vertex 9851 0.500469 -2.88057 3.01368 Vertex 9852 0.0593814 2.77949 0.216104 Vertex 9853 0.781872 1.69428 0.237015 Vertex 9854 1.2591 1.00912 -0.925542 Vertex 9855 -0.945472 -0.503133 -2.15153 Vertex 9856 -0.336865 -1.28336 1.64642 Vertex 9857 0.0255679 -2.32042 3.03249 Vertex 9858 -0.410682 4.24131 -1.24062 Vertex 9859 -1.29115 -1.17609 -2.69873 Vertex 9860 0.0728776 -1.73129 2.2489 Vertex 9861 -0.648626 -0.657555 -2.35904 Vertex 9862 0.0343757 4.14726 -0.512388 Vertex 9863 0.662189 -2.69927 2.90179 Vertex 9864 0.0546128 -1.34396 -0.303898 Vertex 9865 0.117377 -1.11447 -0.404974 Vertex 9866 -0.447591 0.127899 1.306 Vertex 9867 -0.0876886 2.91302 -0.0904865 Vertex 9868 -1.12628 -2.78525 -0.218597 Vertex 9869 -1.12324 -1.95176 0.00351017 Vertex 9870 -0.449627 -1.59152 -0.176836 Vertex 9871 0.641017 2.40582 -0.378163 Vertex 9872 -0.431686 -2.18451 2.35148 Vertex 9873 -0.97009 0.097511 0.404014 Vertex 9874 -0.787706 5.01501 -1.43085 Vertex 9875 -0.926383 4.68618 -1.63608 Vertex 9876 0.0714522 0.924581 1.1756 Vertex 9877 -0.0649617 -1.90578 1.50433 Vertex 9878 0.161363 -1.88953 2.28545 Vertex 9879 -0.934418 -2.28799 -0.189028 Vertex 9880 -0.706209 -1.59477 -0.130064 Vertex 9881 -0.00754386 -2.83388 1.67707 Vertex 9882 -1.21133 4.99904 -1.62507 Vertex 9883 -0.65106 -1.5547 2.37446 Vertex 9884 0.431414 3.20527 0.127222 Vertex 9885 -0.0109136 2.5618 0.227322 Vertex 9886 1.5786 1.22904 -2.58921 Vertex 9887 -0.986268 -0.662298 0.15432 Vertex 9888 -0.771221 -1.01997 -0.311896 Vertex 9889 -0.689638 -2.15823 0.221837 Vertex 9890 -0.744216 -2.08991 0.526151 Vertex 9891 -1.00437 -0.429803 -2.21591 Vertex 9892 0.450079 -2.98064 1.91279 Vertex 9893 -0.390494 -2.70519 1.91468 Vertex 9894 0.544617 -3.01419 2.23202 Vertex 9895 -1.05949 0.273404 -0.24476 Vertex 9896 0.454236 -2.49906 1.99529 Vertex 9897 0.373637 2.46831 -0.697596 Vertex 9898 0.579314 -3.3369 1.58115 Vertex 9899 1.51118 1.10954 -2.83879 Vertex 9900 1.17419 0.444442 -1.50816 Vertex 9901 -0.232273 4.07255 -0.264683 Vertex 9902 -0.230995 3.70207 -0.655772 Vertex 9903 -0.0482628 0.951102 1.22292 Vertex 9904 -0.801385 -0.535291 -0.224233 Vertex 9905 1.84648 0.187659 -2.43779 Vertex 9906 1.25824 0.369908 -1.11626 Vertex 9907 -0.150373 -1.49098 1.96523 Vertex 9908 0.428609 -2.86531 1.57536 Vertex 9909 0.991282 0.476569 -1.47528 Vertex 9910 -1.00067 -0.280562 -2.25949 Vertex 9911 1.02375 0.605319 0.162723 Vertex 9912 -1.04097 -1.19486 -2.5106 Vertex 9913 0.838352 0.893049 -0.961694 Vertex 9914 -0.568039 -0.233709 -1.98747 Vertex 9915 -1.00475 -1.28974 -2.65287 Vertex 9916 0.145576 -1.53358 -0.0210477 Vertex 9917 0.277453 3.46171 0.0963938 Vertex 9918 -0.084541 -1.85112 1.12191 Vertex 9919 0.678612 1.85194 -0.429049 Vertex 9920 -0.783131 0.640091 -0.585596 Vertex 9921 0.353305 -1.30788 0.659855 Vertex 9922 -0.543339 1.19211 -0.0819898 Vertex 9923 -0.935017 4.91308 -1.23266 Vertex 9924 0.394808 -1.20657 0.435364 Vertex 9925 -0.32061 -0.580755 1.5713 Vertex 9926 -0.182878 -2.52903 2.5685 Vertex 9927 -0.0849913 -2.23649 3.0335 Vertex 9928 0.358884 -1.2359 0.0308834 Vertex 9929 0.712293 2.523 -0.00113345 Vertex 9930 -0.922158 -0.694854 1.08135 Vertex 9931 0.30819 -3.22025 1.93212 Vertex 9932 -0.0635784 -1.58135 1.30613 Vertex 9933 0.122704 0.356614 -1.06777 Vertex 9934 -0.246857 3.68159 -0.436497 Vertex 9935 0.101165 -2.16099 0.305047 Vertex 9936 -0.937636 0.306331 -1.44708 Vertex 9937 0.681004 2.53008 0.116935 Vertex 9938 1.07349 0.440293 -0.206211 Vertex 9939 0.343022 -2.94845 2.16892 Vertex 9940 0.734104 0.311266 -0.84476 Vertex 9941 0.600981 0.0676644 0.301987 Vertex 9942 -0.118094 3.81274 -0.976837 Vertex 9943 -0.470925 1.43173 0.478882 Vertex 9944 -0.202638 3.58512 -0.414202 Vertex 9945 -0.208654 -2.67978 2.30564 Vertex 9946 -0.811608 -1.33248 1.14946 Vertex 9947 -0.915532 -0.441665 0.14695 Vertex 9948 -0.67012 0.35266 -1.21049 Vertex 9949 0.180596 -2.09064 0.391385 Vertex 9950 -0.144235 -2.89161 1.70513 Vertex 9951 0.65147 -2.59773 2.9944 Vertex 9952 0.793893 1.69125 0.0695593 Vertex 9953 0.779541 1.95226 0.0569634 Vertex 9954 -0.523824 -2.28688 1.52437 Vertex 9955 0.301345 2.51707 -0.74557 Vertex 9956 0.283208 3.77789 -0.349051 Vertex 9957 -0.178005 3.82135 -0.222238 Vertex 9958 -0.475265 -1.6866 2.78491 Vertex 9959 -0.699005 -0.393648 -2.51387 Vertex 9960 0.362585 -1.14647 -0.104069 Vertex 9961 -0.509771 -2.07847 0.859737 Vertex 9962 0.934737 1.3322 0.251845 Vertex 9963 -0.585705 -1.88913 2.49342 Vertex 9964 -1.02145 4.839 -1.34549 Vertex 9965 -0.10823 -1.45663 2.46364 Vertex 9966 0.72902 1.7712 0.391782 Vertex 9967 -0.376344 -1.94273 2.87511 Vertex 9968 -0.417205 4.3023 -0.489254 Vertex 9969 0.177195 1.38958 -0.889636 Vertex 9970 -1.18903 4.90759 -1.74475 Vertex 9971 -0.903727 -1.98094 0.558782 Vertex 9972 -0.0860346 -1.50286 2.29413 Vertex 9973 1.27712 1.15412 -2.55416 Vertex 9974 -0.292422 3.76936 -0.508695 Vertex 9975 -0.0625665 0.296672 -1.00678 Vertex 9976 -0.177884 -2.81959 2.39925 Vertex 9977 -0.391029 -1.53777 -2.64408 Vertex 9978 -0.0505895 0.543062 1.29048 Vertex 9979 1.50106 0.952659 -2.11755 Vertex 9980 -1.04493 -1.10625 0.245143 Vertex 9981 -0.873207 0.826824 0.272533 Vertex 9982 1.19006 1.13252 -1.8117 Vertex 9983 -0.944482 0.51948 -0.371969 Vertex 9984 -0.908119 -3.01289 -0.0759495 Vertex 9985 -0.977226 -0.164155 -1.9778 Vertex 9986 0.454416 -0.404832 0.928482 Vertex 9987 0.0631814 -3.2609 1.69788 Vertex 9988 0.352606 3.48762 -0.484262 Vertex 9989 -0.94991 -0.294763 0.597299 Vertex 9990 0.524017 -0.837909 0.123516 Vertex 9991 -0.277591 -2.48278 1.5393 Vertex 9992 -0.200925 -0.636086 1.48787 Vertex 9993 -0.320355 -2.19106 2.81116 Vertex 9994 -0.296281 -2.15207 2.86915 Vertex 9995 1.0755 1.19975 -0.258638 Vertex 9996 -0.109609 0.528761 -0.886729 Vertex 9997 0.674087 2.68332 -0.0723947 Vertex 9998 -0.0583024 1.55301 0.832018 Vertex 9999 0.112382 -0.555299 -0.560156 Vertex 10000 0.11301 0.859093 -0.906739 Vertex 10001 0.361287 -2.05802 2.541 Vertex 10002 0.49425 -0.514674 0.802063 Vertex 10003 0.532764 -3.17171 1.55127 Vertex 10004 0.665857 2.67793 -0.235362 Vertex 10005 1.15847 0.261184 -1.18935 Vertex 10006 0.635624 0.876308 0.984072 Vertex 10007 -0.349731 1.09393 -0.358716 Vertex 10008 -1.05004 5.04463 -1.41112 Vertex 10009 -0.0202804 -1.73136 1.03611 Vertex 10010 0.0597831 1.10155 -0.759175 Vertex 10011 -0.306059 -2.16606 0.183047 Vertex 10012 -0.437067 -0.00431585 -0.905401 Vertex 10013 -0.920707 -1.39092 0.998123 Vertex 10014 1.23935 0.59398 -0.783013 Vertex 10015 0.415887 0.0348386 -0.363066 Vertex 10016 -0.552562 1.31973 0.614997 Vertex 10017 0.280986 -2.51586 1.573 Vertex 10018 1.85891 0.590719 -2.68471 Vertex 10019 -0.20971 -2.79181 2.21334 Vertex 10020 -0.547166 4.17664 -0.903141 Vertex 10021 0.363693 2.42403 0.639984 Vertex 10022 -0.323038 -1.58062 2.89742 Vertex 10023 1.75725 0.625502 -2.79547 Vertex 10024 0.884219 1.43332 -0.0955916 Vertex 10025 0.167454 -2.09886 0.138079 Vertex 10026 -0.572211 0.938656 0.960422 Vertex 10027 0.644868 -2.79812 2.88984 Vertex 10028 1.35538 1.3222 -1.73682 Vertex 10029 -0.1334 -2.46995 2.9256 Vertex 10030 0.692828 0.27581 0.647413 Vertex 10031 0.37162 -3.40938 2.49033 Vertex 10032 0.816728 1.43044 -0.310447 Vertex 10033 -0.439963 -2.27051 1.24453 Vertex 10034 -0.893334 4.77591 -1.16643 Vertex 10035 -0.90202 -0.222326 0.339656 Vertex 10036 -1.50981 5.75855 -2.46597 Vertex 10037 -0.0418189 2.58833 0.154662 Vertex 10038 -0.429201 -1.48058 -0.260135 Vertex 10039 -0.689226 4.41208 -0.972575 Vertex 10040 -0.171506 3.48714 -0.487392 Vertex 10041 0.0636153 -1.7874 2.93939 Vertex 10042 -0.0396603 2.99114 -0.0061713 Vertex 10043 -0.976813 0.261508 -1.48 Vertex 10044 -1.05585 -2.70452 -0.0682678 Vertex 10045 0.778404 1.92603 -0.196758 Vertex 10046 -0.620181 -0.228442 -2.33666 Vertex 10047 1.1615 0.433608 -0.455842 Vertex 10048 -0.886179 -0.271707 -2.48719 Vertex 10049 0.0862582 2.32038 0.428143 Vertex 10050 -0.541665 -2.05466 0.987975 Vertex 10051 0.943453 0.710192 -1.54543 Vertex 10052 1.18466 0.399474 -1.43374 Vertex 10053 -1.37788 5.51483 -2.52377 Vertex 10054 -1.38802 5.58446 -2.6135 Vertex 10055 0.467271 -2.84527 1.66516 Vertex 10056 0.292715 2.98942 0.421418 Vertex 10057 -0.647459 0.448803 1.1133 Vertex 10058 1.60344 0.630299 -2.86735 Vertex 10059 -0.506668 -2.06443 0.683582 Vertex 10060 0.346724 -0.226919 1.12812 Vertex 10061 -0.141723 3.70328 -0.757439 Vertex 10062 0.214917 -2.07797 -0.13426 Vertex 10063 -0.8712 -1.98318 0.617718 Vertex 10064 -0.0930967 3.23541 -0.440327 Vertex 10065 -0.662883 4.41952 -1.18855 Vertex 10066 -0.803224 -1.50807 1.92528 Vertex 10067 0.972038 0.407472 -1.39159 Vertex 10068 -0.274033 4.49713 -0.887183 Vertex 10069 -0.837134 -2.07441 0.227108 Vertex 10070 -0.881912 -2.02413 0.197228 Vertex 10071 1.26917 0.571181 -2.87527 Vertex 10072 0.177115 0.24602 1.26561 Vertex 10073 -0.651184 -0.249163 -1.01765 Vertex 10074 -0.66256 0.74322 -0.665585 Vertex 10075 -0.6623 -0.235832 -2.38981 Vertex 10076 1.48724 0.843205 -1.23288 Vertex 10077 1.71166 1.14053 -2.56394 Vertex 10078 0.461889 2.26832 -0.574146 Vertex 10079 -0.80368 0.738905 0.830509 Vertex 10080 1.09056 1.13306 -0.186593 Vertex 10081 -0.0586161 -0.964536 1.43068 Vertex 10082 -0.631928 1.20519 0.282611 Vertex 10083 0.985533 0.433144 0.0430539 Vertex 10084 -0.450012 -0.159541 -0.542224 Vertex 10085 -0.437227 -0.243773 1.4643 Vertex 10086 0.183442 -1.33648 1.10393 Vertex 10087 0.651169 2.7277 -0.254477 Vertex 10088 -0.511245 -1.94708 2.63784 Vertex 10089 0.697459 2.33251 0.241001 Vertex 10090 -0.0127499 -2.99466 2.16294 Vertex 10091 -0.454681 0.745128 1.09338 Vertex 10092 -1.01052 5.14203 -1.85609 Vertex 10093 -1.11984 -2.94151 -0.327227 Vertex 10094 -0.572835 4.47395 -0.684693 Vertex 10095 -0.658146 -0.774237 -2.36959 Vertex 10096 0.43818 2.86939 -0.570239 Vertex 10097 0.436586 -2.56363 2.07212 Vertex 10098 0.320946 3.45927 -0.580537 Vertex 10099 -0.266775 1.47972 -0.105877 Vertex 10100 0.379468 2.3288 0.674017 Vertex 10101 -0.107155 -2.07484 1.46953 Vertex 10102 -0.676712 -1.33255 2.20176 Vertex 10103 -0.993042 -2.61806 -0.0738296 Vertex 10104 -0.158298 3.92768 -1.04401 Vertex 10105 0.852416 -2.27739 -0.467995 Vertex 10106 -0.591784 0.317633 1.16758 Vertex 10107 -0.106819 -2.09014 0.765968 Vertex 10108 -0.146797 2.28232 -0.256835 Vertex 10109 -0.178195 -0.219851 -0.690726 Vertex 10110 -0.118944 4.19564 -0.365506 Vertex 10111 -0.481416 4.69013 -0.921461 Vertex 10112 0.254444 -3.00871 2.71293 Vertex 10113 -0.550117 -1.93673 2.54342 Vertex 10114 0.64035 2.20622 0.426868 Vertex 10115 -0.0287866 -0.571727 -0.648538 Vertex 10116 -0.587467 -2.17614 1.38981 Vertex 10117 1.61503 0.931316 -2.85125 Vertex 10118 0.630291 2.01226 -0.456586 Vertex 10119 -0.0746848 -1.83727 1.27635 Vertex 10120 -0.322358 -2.17312 0.801591 Vertex 10121 0.546112 -3.42571 1.46071 Vertex 10122 -0.62983 -0.310967 -1.70125 Vertex 10123 0.388366 -2.95068 1.47478 Vertex 10124 -0.428464 0.32562 1.22594 Vertex 10125 0.46723 3.16235 -0.461012 Vertex 10126 -1.07858 -0.291549 -0.78413 Vertex 10127 0.785677 1.72222 0.122773 Vertex 10128 -0.80506 -1.96022 -0.0379262 Vertex 10129 0.478951 -1.97444 -0.160955 Vertex 10130 -0.889983 -0.373435 -0.136025 Vertex 10131 -0.331498 4.53724 -1.05548 Vertex 10132 -0.602189 -0.237925 -0.69052 Vertex 10133 -0.66263 4.40158 -0.87853 Vertex 10134 0.183259 3.93001 -0.362588 Vertex 10135 -0.0431551 -0.83475 -0.571213 Vertex 10136 -0.0573652 1.19994 1.04003 Vertex 10137 -0.740601 -0.613888 -2.63137 Vertex 10138 1.80114 0.951163 -2.50028 Vertex 10139 -0.807123 0.16507 0.890272 Vertex 10140 -0.380199 1.5362 0.510876 Vertex 10141 -0.0276978 -1.96908 1.71369 Vertex 10142 0.103832 -1.96998 2.99416 Vertex 10143 -0.798979 -1.56541 1.75105 Vertex 10144 0.203005 -1.39586 -0.116414 Vertex 10145 0.923338 0.504107 0.267608 Vertex 10146 0.24836 -2.07296 2.16631 Vertex 10147 -0.613098 -0.461198 -2.5975 Vertex 10148 -0.0762549 -2.57027 2.91633 Vertex 10149 -0.403076 -1.58772 -2.67962 Vertex 10150 0.423497 -0.960621 0.787042 Vertex 10151 -0.762752 0.340368 -1.16724 Vertex 10152 0.141661 -0.181564 1.38064 Vertex 10153 0.475297 0.797122 1.12296 Vertex 10154 0.378852 1.97225 0.770478 Vertex 10155 -0.402235 -1.32984 -2.62666 Vertex 10156 -0.0532094 4.15251 -0.82179 Vertex 10157 -0.138222 1.74431 0.592805 Vertex 10158 0.525466 0.0489369 0.606002 Vertex 10159 0.726319 0.0901943 -0.314786 Vertex 10160 0.440084 2.46462 0.502151 Vertex 10161 0.738888 0.066672 -0.0263614 Vertex 10162 -0.9398 0.24012 -1.12551 Vertex 10163 0.223613 -1.84599 2.54154 Vertex 10164 -0.998684 -1.79254 -0.0871383 Vertex 10165 0.295876 0.943842 1.1608 Vertex 10166 -0.178046 -2.3066 2.88312 Vertex 10167 0.358488 2.77391 -0.66417 Vertex 10168 0.910113 1.38814 0.277871 Vertex 10169 0.271548 -3.2439 2.53002 Vertex 10170 -0.626289 -1.54392 2.428 Vertex 10171 1.32556 1.19524 -1.23669 Vertex 10172 -0.330696 0.713269 -0.700953 Vertex 10173 -0.504647 0.235452 -1.16866 Vertex 10174 0.535354 0.0364465 -0.0612397 Vertex 10175 0.833814 1.0975 0.620508 Vertex 10176 -1.13335 -2.28502 -0.143901 Vertex 10177 0.707556 -3.02383 2.64235 Vertex 10178 0.602779 0.485602 -0.763092 Vertex 10179 -0.798135 -0.457014 -0.819924 Vertex 10180 -0.0565815 0.0380424 -0.902535 Vertex 10181 -0.946943 0.329009 -0.683783 Vertex 10182 1.12294 0.786944 -0.0247642 Vertex 10183 -0.811651 -0.127527 1.19033 Vertex 10184 1.54604 1.27845 -2.43832 Vertex 10185 0.466324 -2.26066 2.43448 Vertex 10186 -0.942676 -0.290972 -0.217102 Vertex 10187 -1.58387 5.62081 -2.41279 Vertex 10188 0.0265437 -1.15483 1.29923 Vertex 10189 0.71655 2.46283 -0.146737 Vertex 10190 -0.906758 4.70321 -1.2071 Vertex 10191 0.421334 0.439795 -0.69037 Vertex 10192 0.254876 3.53828 -0.665179 Vertex 10193 0.428724 2.16207 0.640352 Vertex 10194 1.20222 0.350346 -2.79126 Vertex 10195 -1.03683 -1.06706 -2.47075 Vertex 10196 -0.00799575 0.349905 -1.05667 Vertex 10197 0.371154 -0.928365 0.958711 Vertex 10198 -0.136539 -0.237144 1.45639 Vertex 10199 -1.39389 -1.48588 -2.50486 Vertex 10200 0.613868 -2.11998 -0.293845 Vertex 10201 -0.480275 4.61357 -1.29569 Vertex 10202 -0.632455 4.85274 -1.31631 Vertex 10203 -0.102721 3.11397 -0.306738 Vertex 10204 -1.00145 -1.55907 0.750463 Vertex 10205 0.0373442 -2.08311 1.88874 Vertex 10206 0.98359 1.05547 -0.752374 Vertex 10207 -0.0291473 -1.29154 -0.375332 Vertex 10208 0.0768554 1.01633 1.15827 Vertex 10209 -0.357323 -2.15389 0.735287 Vertex 10210 -0.173415 -1.92064 -0.107472 Vertex 10211 -0.240746 1.18521 0.96226 Vertex 10212 -1.05404 -0.0927491 -0.874199 Vertex 10213 1.90857 0.927141 -2.59214 Vertex 10214 1.21732 0.578442 -0.48631 Vertex 10215 -0.0658787 -2.92228 2.5131 Vertex 10216 -0.0973799 -2.96922 2.36044 Vertex 10217 0.105917 -2.07909 2.99006 Vertex 10218 1.46462 0.901247 -1.72753 Vertex 10219 0.361005 -1.83672 -0.0362149 Vertex 10220 -0.368926 0.37086 1.25484 Vertex 10221 -1.02774 -0.517238 0.662727 Vertex 10222 -1.01422 -0.360592 -2.2391 Vertex 10223 0.487869 -3.33856 2.76469 Vertex 10224 0.657332 1.6362 -0.478848 Vertex 10225 -0.381995 4.61678 -1.04032 Vertex 10226 0.632149 -2.49915 2.89935 Vertex 10227 0.627156 2.86436 -0.0776543 Vertex 10228 1.00778 1.06766 0.197498 Vertex 10229 0.979115 0.120388 -0.615098 Vertex 10230 1.2837 0.412042 -0.964583 Vertex 10231 0.364208 2.55634 0.585515 Vertex 10232 0.197779 -2.00155 -0.206083 Vertex 10233 -0.944398 -0.291263 -1.30726 Vertex 10234 -0.976613 -0.673692 0.910399 Vertex 10235 -0.076142 -2.93789 1.69388 Vertex 10236 -0.743817 -1.84431 0.931099 Vertex 10237 -0.547269 -0.273909 -1.36754 Vertex 10238 -0.699733 -1.30764 1.80075 Vertex 10239 -0.0442813 -1.81574 1.38395 Vertex 10240 -1.04255 -0.0181974 -1.43218 Vertex 10241 -1.0406 -0.0676378 -1.35243 Vertex 10242 1.38012 0.854411 -1.97692 Vertex 10243 0.303347 3.11637 -0.694631 Vertex 10244 -0.249089 -1.95912 -0.0692652 Vertex 10245 0.730409 2.0906 0.302093 Vertex 10246 0.480878 -0.515223 -0.142656 Vertex 10247 -1.04429 -0.582279 0.513518 Vertex 10248 -0.148502 -1.19723 -0.446618 Vertex 10249 0.41228 0.4254 1.13084 Vertex 10250 0.317017 -1.96051 0.267877 Vertex 10251 0.0375424 -1.55703 1.11358 Vertex 10252 -0.0373914 -1.72906 2.97142 Vertex 10253 -0.293946 -2.27068 2.72933 Vertex 10254 -0.0871526 1.30045 0.953363 Vertex 10255 -0.637593 -2.01475 2.13974 Vertex 10256 -0.235668 -2.15706 0.665917 Vertex 10257 1.22134 0.67106 -0.446932 Vertex 10258 -0.513247 4.5787 -1.35728 Vertex 10259 0.167048 0.522838 -1.00933 Vertex 10260 -1.14278 -2.50889 -0.123687 Vertex 10261 0.771073 0.572523 0.615439 Vertex 10262 -0.245549 4.10873 -1.14493 Vertex 10263 -0.793845 -0.21032 1.24239 Vertex 10264 -0.696884 -1.29422 1.9689 Vertex 10265 -1.03908 -1.60888 0.138082 Vertex 10266 -0.0447367 -1.03204 1.41808 Vertex 10267 -0.740815 -1.87625 0.872549 Vertex 10268 -0.76268 -2.00127 0.690034 Vertex 10269 -0.428773 -1.30351 -0.393095 Vertex 10270 -0.0378913 -1.7859 1.46166 Vertex 10271 -1.06106 -1.1588 0.367753 Vertex 10272 1.09211 0.160094 -1.06314 Vertex 10273 -0.437428 -0.153495 1.43279 Vertex 10274 -0.133784 1.15635 -0.585901 Vertex 10275 0.754134 0.440828 0.615352 Vertex 10276 0.027814 1.60437 -0.554319 Vertex 10277 -0.226116 0.614091 -0.75282 Vertex 10278 -0.0736518 0.141528 1.35099 Vertex 10279 -0.735405 -0.568858 -0.285132 Vertex 10280 1.17426 1.11991 -1.9753 Vertex 10281 0.501889 0.43963 -0.645744 Vertex 10282 -0.922537 -0.232531 0.803836 Vertex 10283 0.241808 -1.04856 -0.319126 Vertex 10284 -0.1519 -1.28335 1.39555 Vertex 10285 0.175075 1.96891 -0.713873 Vertex 10286 0.608826 1.52598 0.840141 Vertex 10287 -0.13982 1.82886 0.487447 Vertex 10288 -0.334384 -1.70121 -0.130178 Vertex 10289 1.35392 1.11598 -2.58525 Vertex 10290 1.17358 0.197449 -0.921225 Vertex 10291 0.732311 0.444885 -0.927073 Vertex 10292 0.491458 0.933179 -0.719203 Vertex 10293 1.28071 1.3025 -2.65302 Vertex 10294 1.41538 0.779807 -1.58621 Vertex 10295 -0.171309 -2.26161 2.93094 Vertex 10296 0.418389 -1.087 0.571023 Vertex 10297 -1.23395 -1.20665 -2.71169 Vertex 10298 1.23173 1.31923 -1.95289 Vertex 10299 0.120252 -3.01911 2.16025 Vertex 10300 0.364867 -0.802185 -0.287695 Vertex 10301 -0.605199 -0.247105 -0.614448 Vertex 10302 -0.212704 1.84302 -0.0547855 Vertex 10303 0.513652 -3.22415 2.81522 Vertex 10304 -1.11596 -2.20238 -0.276974 Vertex 10305 0.530864 1.30456 0.987797 Vertex 10306 -0.903128 -1.73264 -2.5464 Vertex 10307 1.10026 1.12139 -1.45368 Vertex 10308 -0.271043 1.57007 0.686876 Vertex 10309 -0.974819 0.242043 -1.23808 Vertex 10310 -0.060831 0.906032 -0.754225 Vertex 10311 1.38105 1.01084 -2.84652 Vertex 10312 0.363356 -2.76144 3.08375 Vertex 10313 0.109503 -0.691269 -0.533913 Vertex 10314 1.05119 0.779065 -1.64248 Vertex 10315 -0.0784044 -1.81182 1.20628 Vertex 10316 -0.984651 4.77117 -1.32245 Vertex 10317 0.890183 0.0902761 -0.256518 Vertex 10318 -0.78631 -0.790033 -0.295153 Vertex 10319 -0.126462 -1.88592 -0.103525 Vertex 10320 0.58389 -2.58248 2.28219 Vertex 10321 0.561181 3.11154 -0.145336 Vertex 10322 -0.995216 -1.29338 0.811014 Vertex 10323 -0.25891 -2.71122 1.73023 Vertex 10324 -0.0745075 -1.61597 1.89553 Vertex 10325 -0.992084 -2.78889 -0.0185713 Vertex 10326 -0.104427 -2.71621 2.62282 Vertex 10327 1.38833 0.612792 -2.84076 Vertex 10328 1.36533 0.590886 -1.3497 Vertex 10329 -0.174739 -1.42605 -0.304477 Vertex 10330 -0.985978 -0.46693 0.852377 Vertex 10331 1.13708 1.13367 -1.57273 Vertex 10332 -0.790618 -0.00532861 -2.29231 Vertex 10333 -0.805493 -1.7039 1.33763 Vertex 10334 0.503181 -0.089854 0.325385 Vertex 10335 0.792369 0.838798 0.725208 Vertex 10336 0.387197 -1.1836 0.642816 Vertex 10337 -0.0812637 -1.74933 1.14529 Vertex 10338 1.06804 1.20997 -0.181779 Vertex 10339 -0.309107 -2.54171 2.25813 Vertex 10340 0.448595 -0.589715 0.908378 Vertex 10341 -0.472773 -1.34068 -0.360067 Vertex 10342 -0.108215 3.33314 -0.225714 Vertex 10343 -0.628583 1.1151 -0.0865902 Vertex 10344 0.00231808 -1.11663 -0.466138 Vertex 10345 -0.20563 -2.42051 2.72691 Vertex 10346 1.20354 1.25829 -1.81367 Vertex 10347 0.528338 -0.285384 0.112378 Vertex 10348 1.65388 1.16978 -2.37881 Vertex 10349 -0.463051 -1.25523 -2.63622 Vertex 10350 -0.116928 -1.51655 2.08488 Vertex 10351 0.0526057 -2.09561 0.655373 Vertex 10352 1.10775 1.07975 -1.57362 Vertex 10353 -0.592735 -1.23833 1.97969 Vertex 10354 1.03428 0.554682 0.0951683 Vertex 10355 -0.0879721 -2.20427 0.168103 Vertex 10356 -0.732147 4.73532 -1.55907 Vertex 10357 0.443108 0.186694 0.96177 Vertex 10358 0.284873 -2.99722 2.35674 Vertex 10359 -0.793742 -2.09507 0.182351 Vertex 10360 -0.802955 -1.7022 1.16653 Vertex 10361 0.435856 2.52709 0.487519 Vertex 10362 -0.927058 -0.210945 -0.0244614 Vertex 10363 0.65481 0.135862 -0.311181 Vertex 10364 -0.416385 -2.46043 1.94708 Vertex 10365 1.17584 0.725632 -1.74422 Vertex 10366 1.52603 1.08731 -1.80968 Vertex 10367 1.37902 0.669567 -1.52116 Vertex 10368 0.288447 -1.41377 0.726035 Vertex 10369 -0.407059 -2.65503 1.97624 Vertex 10370 0.340972 -2.08926 -0.311356 Vertex 10371 0.500071 2.38891 -0.540705 Vertex 10372 0.479811 -3.53391 1.69353 Vertex 10373 -1.08043 -1.58442 0.35241 Vertex 10374 0.44747 -3.50885 2.40813 Vertex 10375 -1.20517 -2.80459 -0.197279 Vertex 10376 1.15384 1.18176 -1.13779 Vertex 10377 -0.924913 5.03047 -1.77451 Vertex 10378 0.77085 1.74278 0.185093 Vertex 10379 0.130671 2.52605 -0.62109 Vertex 10380 -0.390251 -0.659224 -0.554355 Vertex 10381 -0.702341 4.50481 -0.894231 Vertex 10382 -0.328508 4.10501 -0.374629 Vertex 10383 0.330012 -3.29635 2.57039 Vertex 10384 0.688349 0.420513 -0.849575 Vertex 10385 -0.931856 -0.475314 -0.804947 Vertex 10386 -1.19633 5.04443 -2.04664 Vertex 10387 -0.913983 -2.82474 -0.0528815 Vertex 10388 -0.36051 -2.19024 0.873518 Vertex 10389 -0.722965 -1.01228 -2.40922 Vertex 10390 0.620292 2.86398 0.0145114 Vertex 10391 -0.613553 0.323346 -1.63128 Vertex 10392 -0.212754 -2.34889 2.74424 Vertex 10393 1.81938 0.617774 -2.58942 Vertex 10394 0.260926 3.1117 -0.74597 Vertex 10395 1.84279 0.384134 -2.75144 Vertex 10396 0.290697 -1.45601 0.391683 Vertex 10397 0.297215 -1.41595 0.374209 Vertex 10398 -0.40413 -2.23948 1.08144 Vertex 10399 1.30562 1.33661 -2.18912 Vertex 10400 -0.272352 0.727853 -0.680413 Vertex 10401 0.250084 -1.7389 0.365327 Vertex 10402 0.375908 -0.730274 -0.275396 Vertex 10403 -0.0733273 1.05963 -0.685503 Vertex 10404 0.738219 2.00084 -0.24029 Vertex 10405 0.44809 2.62663 -0.576855 Vertex 10406 -0.182465 1.88029 -0.191476 Vertex 10407 -0.823979 -0.872639 -2.80333 Vertex 10408 -0.378677 4.01002 -0.867724 Vertex 10409 0.184439 -1.80701 2.70271 Vertex 10410 0.0341198 -0.971 1.40137 Vertex 10411 -0.571269 -1.85513 -0.0946566 Vertex 10412 -1.07462 -1.20471 0.438192 Vertex 10413 -0.359309 4.45081 -0.571215 Vertex 10414 -0.932198 -0.24865 0.660535 Vertex 10415 0.53273 2.44621 0.421963 Vertex 10416 0.957376 1.02265 0.342319 Vertex 10417 -0.383901 -2.24444 2.334 Vertex 10418 -0.679945 -1.90455 2.11481 Vertex 10419 -0.748614 -1.82518 2.04504 Vertex 10420 0.875319 0.889124 0.560515 Vertex 10421 -0.328383 -1.47857 -0.276874 Vertex 10422 0.367936 3.20677 0.176731 Vertex 10423 -1.04275 -0.587875 0.638373 Vertex 10424 -1.08665 -0.152014 -0.654488 Vertex 10425 -1.02691 -0.322526 -0.960917 Vertex 10426 0.469352 -2.26769 -0.327917 Vertex 10427 0.00714537 1.15965 -0.712934 Vertex 10428 0.32489 -2.25105 1.90226 Vertex 10429 0.300179 3.73238 -0.412683 Vertex 10430 0.154153 -2.05073 2.14594 Vertex 10431 -0.433811 1.32182 0.0442989 Vertex 10432 -0.176418 -1.92922 3.04359 Vertex 10433 -0.0675863 -2.16932 1.62915 Vertex 10434 -0.983906 0.303411 -0.567854 Vertex 10435 0.801322 0.429137 -1.08589 Vertex 10436 -0.552507 -1.53839 -0.185095 Vertex 10437 -0.906217 -2.01699 0.331625 Vertex 10438 2.12341 0.751563 -2.69245 Vertex 10439 -0.62457 -0.551408 -2.37937 Vertex 10440 0.926881 0.993093 -0.988282 Vertex 10441 0.51166 3.01634 0.142149 Vertex 10442 -0.828238 -0.853878 -2.33075 Vertex 10443 1.34829 0.894905 -2.78824 Vertex 10444 -0.0742706 3.53245 -0.71608 Vertex 10445 0.164561 -3.02282 2.12014 Vertex 10446 -1.07266 -1.48549 0.4923 Vertex 10447 -0.749648 -0.72228 -2.71055 Vertex 10448 -0.0147425 -2.9621 1.67834 Vertex 10449 -0.775784 -3.0128 -0.111815 Vertex 10450 -0.317029 3.80265 -0.656866 Vertex 10451 -0.603393 4.5329 -0.730019 Vertex 10452 0.46374 -2.67159 1.79566 Vertex 10453 -0.621283 -1.25072 2.07647 Vertex 10454 -0.784016 -1.30941 1.22425 Vertex 10455 -0.139603 -2.76222 2.53774 Vertex 10456 0.383666 1.68771 0.854385 Vertex 10457 1.72868 0.45734 -2.80118 Vertex 10458 1.06038 0.204676 -0.595182 Vertex 10459 0.203375 -1.96369 2.32943 Vertex 10460 1.64401 0.71776 -2.88918 Vertex 10461 0.944274 1.01857 -1.21778 Vertex 10462 1.55129 1.00097 -2.11376 Vertex 10463 0.788002 -3.15372 2.66263 Vertex 10464 0.794323 -3.13832 2.60158 Vertex 10465 0.295605 2.4087 0.62882 Vertex 10466 -1.49797 5.32648 -2.32854 Vertex 10467 -0.993074 -1.63115 0.752699 Vertex 10468 -0.0482797 3.98872 -0.0957382 Vertex 10469 0.575805 -3.38588 2.80057 Vertex 10470 1.46008 0.844206 -1.48611 Vertex 10471 0.138344 -1.88796 2.93582 Vertex 10472 0.766831 0.130791 -0.726449 Vertex 10473 -0.605068 0.0995407 -1.89574 Vertex 10474 0.305364 -3.18856 2.33111 Vertex 10475 -0.565545 4.3335 -1.17704 Vertex 10476 0.325321 -1.83965 -0.1249 Vertex 10477 0.177151 0.0790263 1.30068 Vertex 10478 0.747593 0.568266 -0.996832 Vertex 10479 -0.964742 0.0424184 -1.84552 Vertex 10480 0.583071 2.06895 0.553923 Vertex 10481 -0.611116 -0.946375 -2.58044 Vertex 10482 -0.218904 0.701095 -0.730503 Vertex 10483 -0.373438 3.90888 -0.599639 Vertex 10484 0.440483 -0.803258 0.838565 Vertex 10485 0.554586 -0.562878 0.487543 Vertex 10486 0.1248 0.945555 -0.862653 Vertex 10487 0.975625 0.569588 0.232615 Vertex 10488 -0.955729 0.268717 -1.28821 Vertex 10489 -0.79209 -1.44032 1.3606 Vertex 10490 1.3301 0.543476 -1.43438 Vertex 10491 -0.607145 -2.17992 1.54576 Vertex 10492 0.702624 1.753 0.558037 Vertex 10493 -0.9429 -2.76078 -0.0481353 Vertex 10494 0.59346 -2.2403 -0.435125 Vertex 10495 -0.30602 -2.4805 1.76046 Vertex 10496 -0.346673 -2.49597 1.79874 Vertex 10497 -0.118152 -3.04084 1.70936 Vertex 10498 0.0112762 -2.59532 3.06051 Vertex 10499 0.0533725 2.59084 -0.549555 Vertex 10500 -0.291438 -1.73107 2.98276 Vertex 10501 1.8516 1.04149 -2.71369 Vertex 10502 0.391993 0.627413 1.16134 Vertex 10503 0.356007 -2.99418 2.10369 Vertex 10504 1.22014 1.19989 -1.48534 Vertex 10505 0.380951 3.20013 -0.589289 Vertex 10506 0.306068 1.69332 0.882339 Vertex 10507 -0.186374 2.11562 0.0269343 Vertex 10508 -0.65818 1.07101 -0.139659 Vertex 10509 0.222267 3.8785 -0.37166 Vertex 10510 0.486239 -2.69166 1.93158 Vertex 10511 -1.10569 5.01123 -1.46587 Vertex 10512 1.37473 1.12691 -2.74766 Vertex 10513 0.574794 -3.06442 2.23472 Vertex 10514 0.728806 2.28212 0.203303 Vertex 10515 -1.04795 -1.33318 0.69557 Vertex 10516 -0.924768 0.0749748 0.450903 Vertex 10517 0.55466 -3.11439 1.73179 Vertex 10518 1.02897 1.24857 -0.00220067 Vertex 10519 -0.435913 -2.37656 2.04492 Vertex 10520 -1.03448 0.356242 0.279705 Vertex 10521 0.501169 -0.843691 0.366244 Vertex 10522 0.850947 0.588466 0.461834 Vertex 10523 -0.0624631 3.0442 -0.0764231 Vertex 10524 0.788684 -3.74911 2.53292 Vertex 10525 0.991339 0.555527 0.182538 Vertex 10526 -0.0483625 -2.70378 2.80618 Vertex 10527 0.0125657 3.66364 -0.930832 Vertex 10528 0.441356 -2.46426 1.92769 Vertex 10529 -0.188442 2.12766 -0.0958608 Vertex 10530 1.22602 1.18278 -2.44232 Vertex 10531 -0.0208285 -1.87787 0.914476 Vertex 10532 0.0364754 -1.62466 2.56829 Vertex 10533 -0.160699 -1.86213 3.04648 Vertex 10534 0.0107498 -1.00346 -0.494038 Vertex 10535 0.227283 -1.68431 0.178017 Vertex 10536 0.434503 -2.80877 1.63516 Vertex 10537 0.106258 -0.309088 1.39588 Vertex 10538 0.595323 0.369479 0.925345 Vertex 10539 -0.551632 0.145333 -1.7767 Vertex 10540 -1.06597 -0.828802 -2.3828 Vertex 10541 0.567468 -3.27777 1.69414 Vertex 10542 1.72544 0.975783 -2.41916 Vertex 10543 -1.53376 5.7908 -2.55109 Vertex 10544 1.76407 1.06655 -2.47367 Vertex 10545 -0.558612 4.5119 -1.38436 Vertex 10546 -0.753513 -1.81526 0.99332 Vertex 10547 0.877088 -3.45581 2.57266 Vertex 10548 0.617088 -3.30713 2.32854 Vertex 10549 0.867023 -3.38001 2.5366 Vertex 10550 -0.953693 -0.479256 0.95749 Vertex 10551 1.20738 0.66064 -1.71745 Vertex 10552 0.146309 0.664314 1.18044 Vertex 10553 0.805041 1.71495 -0.113983 Vertex 10554 2.13886 0.674389 -2.76457 Vertex 10555 -0.955445 -1.4083 0.914966 Vertex 10556 0.446674 -3.00965 1.50931 Vertex 10557 0.717377 2.39544 -0.181599 Vertex 10558 1.55355 0.838997 -2.87029 Vertex 10559 -0.0043233 -2.76151 1.63042 Vertex 10560 0.371308 -2.5365 1.69547 Vertex 10561 -0.335272 -2.42919 1.66878 Vertex 10562 -0.585693 -1.41095 -2.68768 Vertex 10563 0.277655 0.174377 1.1776 Vertex 10564 0.148585 -0.174452 -0.610018 Vertex 10565 0.488824 -0.369875 0.819034 Vertex 10566 -0.381511 0.253474 1.28583 Vertex 10567 0.0800641 -1.55219 -0.0603468 Vertex 10568 -0.146722 1.25708 0.946637 Vertex 10569 -0.271211 -2.14768 0.746735 Vertex 10570 -0.34986 1.49117 0.200032 Vertex 10571 0.103953 -3.26684 1.59484 Vertex 10572 0.144425 0.470635 -1.04236 Vertex 10573 -0.647126 -0.873188 -2.62469 Vertex 10574 -1.30612 5.04661 -1.9697 Vertex 10575 -0.366119 -2.19968 2.71204 Vertex 10576 0.869964 -3.60053 2.74428 Vertex 10577 -0.163351 0.831645 -0.719941 Vertex 10578 -0.366677 -0.807475 -0.560734 Vertex 10579 -0.214042 4.21615 -0.289099 Vertex 10580 1.70193 1.01221 -2.37029 Vertex 10581 -1.47349 5.40365 -2.48914 Vertex 10582 -0.0585188 -3.05979 2.05964 Vertex 10583 1.19531 0.629879 -0.377363 Vertex 10584 0.518175 -0.11255 -0.398499 Vertex 10585 -0.685744 -1.94963 0.969719 Vertex 10586 -0.89309 -1.46533 -2.37058 Vertex 10587 0.832166 0.757215 -1.26938 Vertex 10588 1.36561 0.53521 -2.66274 Vertex 10589 1.64729 1.18687 -2.47821 Vertex 10590 -0.710407 -1.96634 0.758762 Vertex 10591 -0.681766 -1.94245 0.819384 Vertex 10592 0.237841 -3.33999 1.87493 Vertex 10593 0.145603 -1.41183 -0.154876 Vertex 10594 -0.702912 -0.787531 -2.70956 Vertex 10595 -0.914432 -0.0203138 -2.26428 Vertex 10596 -1.09684 -2.49486 -0.272391 Vertex 10597 -0.876032 -0.483641 -0.125147 Vertex 10598 0.541866 -3.35707 1.46687 Vertex 10599 0.367482 -0.461609 1.10807 Vertex 10600 -0.508406 -0.69117 -0.490694 Vertex 10601 0.829399 0.196944 0.276861 Vertex 10602 -0.0946037 1.80832 0.593644 Vertex 10603 -0.632675 -1.10348 -2.77465 Vertex 10604 -0.134777 -0.107341 -0.740469 Vertex 10605 0.457625 2.72304 0.362598 Vertex 10606 -0.608308 4.77699 -1.40384 Vertex 10607 0.394764 -2.0598 -0.326796 Vertex 10608 1.01557 0.428188 -1.45351 Vertex 10609 -0.485913 1.30927 0.748653 Vertex 10610 0.0351798 -0.835036 -0.541087 Vertex 10611 1.3056 0.800293 -1.88177 Vertex 10612 -0.0284844 3.57605 -0.874519 Vertex 10613 2.05995 0.810003 -2.61857 Vertex 10614 -0.291567 1.43402 -0.0669866 Vertex 10615 0.571342 -0.442104 0.202841 Vertex 10616 0.089205 4.0688 -0.428456 Vertex 10617 -1.03112 -0.601546 0.379747 Vertex 10618 2.07403 0.658385 -2.82006 Vertex 10619 -1.04561 0.0782776 -0.635086 Vertex 10620 -0.430153 -2.16227 2.51337 Vertex 10621 -0.429325 -2.18004 2.43604 Vertex 10622 -0.823436 0.109468 0.845246 Vertex 10623 -0.803748 0.879796 0.545971 Vertex 10624 -0.0451513 3.82932 -0.980149 Vertex 10625 -0.00201795 1.94716 0.598129 Vertex 10626 0.543511 1.72023 -0.61134 Vertex 10627 -0.0409391 4.22201 -0.496073 Vertex 10628 0.382739 0.842572 1.16354 Vertex 10629 -0.636497 -1.11121 1.43384 Vertex 10630 0.756597 0.605036 0.660937 Vertex 10631 0.98008 0.122641 -0.916037 Vertex 10632 -0.706009 -2.03767 1.77077 Vertex 10633 0.871734 -3.37702 2.45991 Vertex 10634 -1.02317 -0.135439 -1.22664 Vertex 10635 -0.867555 -0.380662 -1.13786 Vertex 10636 -0.0757252 -2.48205 3.09463 Vertex 10637 0.913543 -3.61128 2.55778 Vertex 10638 -0.908482 -0.14253 0.780029 Vertex 10639 0.206221 2.34547 -0.729786 Vertex 10640 0.264345 -1.44463 0.178466 Vertex 10641 0.577418 1.852 -0.529663 Vertex 10642 -0.451092 1.20964 0.87393 Vertex 10643 -0.458839 0.0282685 1.34006 Vertex 10644 -1.43419 5.23215 -2.1967 Vertex 10645 -1.04789 0.283603 0.318763 Vertex 10646 0.450901 0.0780144 -0.377662 Vertex 10647 1.70753 1.10949 -2.77138 Vertex 10648 -0.533037 0.504055 -0.925481 Vertex 10649 -0.742158 -1.29909 -2.55683 Vertex 10650 -0.121298 -0.594809 1.46222 Vertex 10651 -0.889349 0.770816 0.388661 Vertex 10652 -0.238642 1.42274 -0.313246 Vertex 10653 -0.560666 1.09165 -0.260782 Vertex 10654 -0.498463 4.15313 -0.642011 Vertex 10655 0.526276 -0.16588 0.446179 Vertex 10656 -0.866532 -0.340548 -0.293644 Vertex 10657 -0.970719 -1.76587 -2.57929 Vertex 10658 0.676833 -3.03898 2.9069 Vertex 10659 -0.024763 -2.98552 2.496 Vertex 10660 -1.07645 -0.244253 -0.749326 Vertex 10661 -1.00419 -0.289909 -1.09389 Vertex 10662 -0.686925 0.297702 1.12236 Vertex 10663 0.906763 1.20556 -0.465467 Vertex 10664 0.479885 -0.399883 -0.239708 Vertex 10665 -0.503751 -1.22097 2.17432 Vertex 10666 0.0459935 2.04302 -0.515308 Vertex 10667 -0.820835 -0.358145 -1.41717 Vertex 10668 0.54843 -0.203802 0.281643 Vertex 10669 0.375538 2.90544 0.342255 Vertex 10670 0.469425 -0.710528 0.75971 Vertex 10671 -1.07676 -1.60406 0.268349 Vertex 10672 -0.120002 -2.56386 2.72228 Vertex 10673 -0.671518 4.88622 -1.35624 Vertex 10674 -0.924688 -0.0257651 -2.14727 Vertex 10675 0.267742 -1.44375 0.771236 Vertex 10676 0.618568 2.8526 -0.276189 Vertex 10677 -0.611385 -0.517127 1.39646 Vertex 10678 0.550128 -2.60026 2.98316 Vertex 10679 1.34088 1.06136 -2.25726 Vertex 10680 -0.277805 -2.23647 2.81169 Vertex 10681 -1.03523 0.492745 0.153465 Vertex 10682 0.772541 1.57704 -0.372822 Vertex 10683 -0.495137 4.3986 -1.35205 Vertex 10684 0.0582397 2.69479 -0.557131 Vertex 10685 0.19262 1.76566 -0.827978 Vertex 10686 -0.000918312 3.9286 -0.0825305 Vertex 10687 0.0737693 -3.23587 1.86735 Vertex 10688 1.02883 0.162455 -1.09398 Vertex 10689 -1.02975 0.0820801 -0.738817 Vertex 10690 0.0449311 3.49388 0.0120189 Vertex 10691 0.075966 2.8909 0.172059 Vertex 10692 -0.456751 0.175566 -1.41551 Vertex 10693 1.01609 1.32163 0.00757958 Vertex 10694 0.00894471 -1.97309 3.03114 Vertex 10695 -0.941732 0.611783 0.507565 Vertex 10696 -1.07917 -1.73299 0.446778 Vertex 10697 0.243659 2.66088 0.448172 Vertex 10698 1.26079 0.613081 -2.65769 Vertex 10699 -1.05268 -1.05341 0.689337 Vertex 10700 -1.05044 0.0484222 -1.41221 Vertex 10701 0.192629 3.04045 0.230767 Vertex 10702 -0.630916 -0.088852 -2.32713 Vertex 10703 -0.829817 -0.465835 -0.892783 Vertex 10704 0.179416 2.04453 -0.679418 Vertex 10705 -0.704514 -1.53645 -0.141012 Vertex 10706 0.0107955 -1.06199 -0.476116 Vertex 10707 0.59515 1.5983 0.810893 Vertex 10708 0.243178 -1.83856 -0.146408 Vertex 10709 -0.0298694 0.21372 -1.01604 Vertex 10710 -0.149441 -2.54079 1.44867 Vertex 10711 0.0410878 3.38202 0.00531903 Vertex 10712 1.09869 0.147091 -0.983831 Vertex 10713 0.583432 0.0768401 0.0262733 Vertex 10714 0.0605352 4.10901 -0.581347 Vertex 10715 -0.543984 -2.19845 2.1099 Vertex 10716 0.327516 3.71837 -0.292669 Vertex 10717 -0.503994 -2.28681 1.45983 Vertex 10718 -0.521046 -2.16844 2.18952 Vertex 10719 0.185187 3.3477 -0.810619 Vertex 10720 -0.0749618 0.150152 -0.959312 Vertex 10721 -1.24723 -1.25519 -2.42752 Vertex 10722 -0.622345 -0.308348 -1.82085 Vertex 10723 0.350033 -1.24286 0.108894 Vertex 10724 0.586624 1.92951 -0.513813 Vertex 10725 -1.23237 -1.36865 -2.61454 Vertex 10726 0.859861 0.864732 -1.18781 Vertex 10727 0.766907 1.99488 -0.155787 Vertex 10728 -0.268492 1.12293 -0.453461 Vertex 10729 -0.684221 4.66354 -0.853359 Vertex 10730 -0.862073 -0.510747 -2.06726 Vertex 10731 -0.760248 -0.861742 -2.35657 Vertex 10732 -0.0137889 -1.56763 2.62059 Vertex 10733 1.4544 0.886416 -2.01154 Vertex 10734 0.911933 0.277928 -1.17793 Vertex 10735 -0.480044 -0.15611 1.39073 Vertex 10736 0.227314 -3.10943 1.52939 Vertex 10737 1.22244 0.928836 -0.828759 Vertex 10738 -1.03616 -0.844297 -2.77693 Vertex 10739 0.167029 0.0592373 -0.830006 Vertex 10740 1.85575 0.789435 -2.58728 Vertex 10741 -0.894214 -1.01834 1.05916 Vertex 10742 -0.763993 -1.86646 1.80587 Vertex 10743 0.199965 -0.0546404 1.31576 Vertex 10744 -0.168006 -0.942255 1.45378 Vertex 10745 -0.287056 3.89004 -0.37587 Vertex 10746 -0.773501 -2.08011 0.133419 Vertex 10747 -0.576509 0.110832 1.24197 Vertex 10748 -0.553247 -0.234336 -0.486819 Vertex 10749 -0.25396 0.528063 -0.776031 Vertex 10750 -0.44275 -2.13064 2.5634 Vertex 10751 1.66781 1.1719 -2.53279 Vertex 10752 0.802421 0.156658 -0.797299 Vertex 10753 0.522582 1.31968 -0.726676 Vertex 10754 -0.656619 -0.706643 -0.395295 Vertex 10755 0.754102 -3.61211 2.72084 Vertex 10756 -0.575629 -1.3361 -2.53298 Vertex 10757 0.499445 -0.0360548 0.429094 Vertex 10758 -0.364314 4.50658 -1.16222 Vertex 10759 -0.756701 -1.77459 2.07495 Vertex 10760 1.21757 1.24879 -2.64223 Vertex 10761 1.06685 1.14252 -0.454258 Vertex 10762 -1.49402 5.44919 -2.16019 Vertex 10763 0.639096 2.05837 -0.409833 Vertex 10764 -0.888239 -0.614897 1.18278 Vertex 10765 0.371837 -2.80985 2.26559 Vertex 10766 -0.763591 -1.82621 1.67139 Vertex 10767 -1.1682 -0.848124 -2.5118 Vertex 10768 -0.0338762 1.53599 -0.536254 Vertex 10769 0.24568 -3.04929 2.66119 Vertex 10770 1.26017 0.501273 -1.52051 Vertex 10771 1.79819 0.916469 -2.81439 Vertex 10772 0.852562 1.35188 -0.266224 Vertex 10773 1.8613 0.472851 -2.57352 Vertex 10774 -1.10536 -1.98669 -0.209348 Vertex 10775 0.539188 0.355728 0.992319 Vertex 10776 -0.284844 1.45635 0.0266411 Vertex 10777 0.436123 -2.23944 -0.295006 Vertex 10778 -1.06724 -0.33023 -0.575584 Vertex 10779 -0.502053 -1.1901 -2.6354 Vertex 10780 1.2831 1.27079 -2.23874 Vertex 10781 -0.457598 -0.136361 -1.30535 Vertex 10782 -0.0305539 -2.19588 3.04006 Vertex 10783 -0.806136 0.423185 0.987483 Vertex 10784 0.162918 3.66307 -0.737566 Vertex 10785 -0.36212 -2.44064 2.17193 Vertex 10786 -0.819905 -1.83275 0.837883 Vertex 10787 1.58881 1.2314 -2.05146 Vertex 10788 0.704394 1.61603 -0.442001 Vertex 10789 0.862181 0.126351 0.00775016 Vertex 10790 -1.02911 -0.77516 0.77015 Vertex 10791 0.261617 3.29052 0.254647 Vertex 10792 1.241 0.746962 -1.80796 Vertex 10793 -0.0321541 2.9053 -0.437933 Vertex 10794 0.273057 0.021548 -0.499207 Vertex 10795 -0.663701 -0.385589 -1.9857 Vertex 10796 -0.0828761 -2.28589 3.00759 Vertex 10797 -0.925653 0.44975 0.741995 Vertex 10798 -0.447564 4.41282 -0.501354 Vertex 10799 -0.915187 0.0280834 -1.95342 Vertex 10800 -0.190879 1.13819 -0.54631 Vertex 10801 0.404221 3.24865 -0.540699 Vertex 10802 0.0127352 -1.99247 1.98666 Vertex 10803 0.240988 -1.26635 -0.184735 Vertex 10804 -0.434288 4.15396 -1.00461 Vertex 10805 -0.487798 -0.0116213 -1.05055 Vertex 10806 -0.689736 -0.407246 -0.40853 Vertex 10807 -0.58342 4.23778 -0.919414 Vertex 10808 -1.17141 5.29429 -2.04212 Vertex 10809 -0.747336 -1.22558 1.26811 Vertex 10810 -0.723238 -1.77948 2.12986 Vertex 10811 1.30926 1.30367 -2.60589 Vertex 10812 1.21382 1.2231 -2.53874 Vertex 10813 0.889302 -3.46725 2.51341 Vertex 10814 -0.622658 -2.03087 0.660398 Vertex 10815 -0.0890226 3.60991 -0.751459 Vertex 10816 1.4858 1.10158 -1.69925 Vertex 10817 -0.552311 -2.06238 0.621782 Vertex 10818 0.768308 1.37645 -0.449575 Vertex 10819 -0.029483 2.00565 0.511774 Vertex 10820 -0.559141 -2.26349 1.80087 Vertex 10821 0.511547 3.08018 0.112214 Vertex 10822 1.92611 0.644911 -2.81484 Vertex 10823 1.31456 0.468362 -1.20956 Vertex 10824 0.326344 0.188662 -0.661645 Vertex 10825 0.193806 2.05385 -0.730804 Vertex 10826 -0.407366 -1.14386 1.53278 Vertex 10827 0.166811 0.012549 -0.774743 Vertex 10828 0.636539 -2.98717 2.22989 Vertex 10829 1.21592 1.15659 -2.15585 Vertex 10830 0.371144 1.51431 -0.869594 Vertex 10831 0.324706 0.677663 -0.891449 Vertex 10832 0.111854 1.59747 0.881686 Vertex 10833 0.0219553 1.58065 0.857345 Vertex 10834 -0.957226 -1.23386 0.901174 Vertex 10835 0.500329 -2.15902 2.81935 Vertex 10836 -0.952705 -0.34025 0.431786 Vertex 10837 -0.630147 1.05661 0.808276 Vertex 10838 -0.507828 4.59848 -0.720482 Vertex 10839 -1.17525 5.027 -1.56954 Vertex 10840 0.703954 -2.14738 -0.365876 Vertex 10841 -0.720205 -1.9137 1.12579 Vertex 10842 -1.28535 5.29802 -2.26723 Vertex 10843 -0.747378 0.296329 -1.7346 Vertex 10844 0.370414 -0.47442 -0.32676 Vertex 10845 -0.0269839 1.98406 -0.460712 Vertex 10846 0.769208 1.98943 0.105379 Vertex 10847 -0.974578 -1.41144 0.848112 Vertex 10848 0.461387 -0.229361 -0.338567 Vertex 10849 -1.02138 0.384214 0.379254 Vertex 10850 -0.524603 0.94102 0.999854 Vertex 10851 -1.13247 5.2713 -1.98818 Vertex 10852 -0.99882 0.411615 0.517342 Vertex 10853 -1.04654 0.109735 -1.41217 Vertex 10854 0.717482 0.241251 0.545413 Vertex 10855 -0.0377411 -1.92767 1.6562 Vertex 10856 0.822402 -2.24031 -0.445332 Vertex 10857 -0.641665 -0.606205 -2.40664 Vertex 10858 0.55243 -2.46169 2.34832 Vertex 10859 -1.0213 -1.86493 0.409208 Vertex 10860 1.31386 0.697509 -0.882811 Vertex 10861 -0.268976 1.57583 0.133861 Vertex 10862 -0.130078 3.65464 -0.723731 Vertex 10863 0.346724 -2.38301 1.78614 Vertex 10864 -0.910087 -0.260879 0.190628 Vertex 10865 -0.318516 -1.2874 2.05861 Vertex 10866 1.22738 0.502057 -0.662278 Vertex 10867 0.434954 -1.08375 0.381674 Vertex 10868 -0.00792841 -1.90771 3.02756 Vertex 10869 -0.917495 0.509784 0.715644 Vertex 10870 -0.244622 0.710452 1.21256 Vertex 10871 -0.780682 -0.3622 -1.1381 Vertex 10872 0.0572326 3.795 -0.843452 Vertex 10873 -0.74004 -1.33434 -0.218726 Vertex 10874 -0.452686 1.08303 0.962929 Vertex 10875 1.43102 0.716614 -1.05698 Vertex 10876 -1.07233 -1.76291 -0.0247943 Vertex 10877 -1.11292 -0.103286 -0.300566 Vertex 10878 -0.955428 0.683159 0.114421 Vertex 10879 -0.12297 -2.52665 2.85904 Vertex 10880 0.922903 1.05801 -0.817707 Vertex 10881 -0.0891525 2.97401 -0.110919 Vertex 10882 0.174933 -2.37642 3.00554 Vertex 10883 -0.150282 -1.93636 0.95685 Vertex 10884 1.48515 0.889549 -1.83157 Vertex 10885 0.144283 -2.13198 0.29087 Vertex 10886 -0.419176 -1.43613 -2.71579 Vertex 10887 0.0599138 -2.66543 1.56147 Vertex 10888 0.290245 3.60344 -0.0169706 Vertex 10889 -0.0987188 1.61408 0.756881 Vertex 10890 0.626741 2.47997 -0.402319 Vertex 10891 -0.736992 4.62485 -0.943142 Vertex 10892 1.19522 0.253786 -1.03288 Vertex 10893 -0.44994 4.08101 -0.603535 Vertex 10894 0.0913922 -1.83027 2.12421 Vertex 10895 -0.661813 -2.11182 1.62128 Vertex 10896 -0.0382614 3.21003 -0.0569061 Vertex 10897 1.13618 0.952142 -1.77314 Vertex 10898 0.280933 0.0712218 -0.614713 Vertex 10899 -0.0108812 -1.76921 1.71613 Vertex 10900 0.407708 -0.62002 0.988125 Vertex 10901 0.404927 -3.57129 1.59727 Vertex 10902 0.0301252 3.3788 -0.781729 Vertex 10903 0.130869 3.28073 -0.815855 Vertex 10904 -1.01114 -1.23188 0.787491 Vertex 10905 -0.487963 1.22833 -0.092342 Vertex 10906 -0.583542 -1.63976 2.56819 Vertex 10907 -0.90883 -0.298732 0.373071 Vertex 10908 -0.30327 1.13474 -0.372423 Vertex 10909 -1.09713 -1.80908 0.301787 Vertex 10910 -0.184198 0.538599 -0.819766 Vertex 10911 -0.179656 -2.39346 2.79156 Vertex 10912 -1.00935 -2.16766 -0.30159 Vertex 10913 0.442079 3.44165 -0.284361 Vertex 10914 -0.767038 -1.24656 -0.245044 Vertex 10915 0.207886 3.83783 -0.53935 Vertex 10916 0.908413 -3.60679 2.44229 Vertex 10917 -0.122449 -2.59982 2.68196 Vertex 10918 0.139483 -1.75845 2.47807 Vertex 10919 -1.08647 -0.181667 -0.260859 Vertex 10920 1.46826 0.972741 -2.38906 Vertex 10921 0.440327 1.32419 1.01078 Vertex 10922 0.535679 0.0520607 -0.484317 Vertex 10923 -0.0557403 0.41902 -0.982404 Vertex 10924 -0.0056822 0.423698 -1.04204 Vertex 10925 -0.909891 -0.00991463 -2.20334 Vertex 10926 0.766257 1.17932 0.755189 Vertex 10927 0.250381 -1.80667 0.516058 Vertex 10928 1.71891 0.70233 -2.82343 Vertex 10929 -1.025 0.191719 -1.43232 Vertex 10930 0.22057 0.181645 -0.906993 Vertex 10931 -0.999646 -2.03649 0.152811 Vertex 10932 0.330926 0.915485 -0.846047 Vertex 10933 0.228456 3.62866 -0.666633 Vertex 10934 0.226114 3.46593 0.151964 Vertex 10935 -0.166907 -2.00874 1.02689 Vertex 10936 0.0317643 0.722121 1.23383 Vertex 10937 0.0964056 0.540202 -1.04567 Vertex 10938 0.0331801 -1.99663 2.03373 Vertex 10939 -0.123866 -2.93502 2.38117 Vertex 10940 0.37848 3.60391 -0.204389 Vertex 10941 0.347564 -0.132009 1.09805 Vertex 10942 1.3441 1.00541 -2.60914 Vertex 10943 -0.89157 -0.293486 1.02994 Vertex 10944 -0.591014 -0.307737 -1.41236 Vertex 10945 -0.477371 -2.02858 2.64282 Vertex 10946 -0.528188 -2.32353 1.77088 Vertex 10947 0.680727 -3.41007 2.85261 Vertex 10948 -0.691319 1.05684 -0.061301 Vertex 10949 -0.109118 -0.666913 -0.629647 Vertex 10950 -0.183729 -0.489801 -0.660532 Vertex 10951 1.2937 1.023 -2.14942 Vertex 10952 1.36713 0.994007 -2.18011 Vertex 10953 0.0274355 -2.55198 1.53583 Vertex 10954 -0.648174 -0.533357 -2.28956 Vertex 10955 0.701247 -3.06521 2.7721 Vertex 10956 0.357607 -2.32219 1.87342 Vertex 10957 0.160325 -2.11426 0.193482 Vertex 10958 0.208923 3.88742 -0.455448 Vertex 10959 0.345623 -1.32686 0.512458 Vertex 10960 1.62276 0.785025 -2.88983 Vertex 10961 0.753121 -2.57433 -0.415471 Vertex 10962 0.328289 -1.9459 0.17415 Vertex 10963 -0.173786 -2.04095 3.0199 Vertex 10964 0.267541 -1.51314 0.588655 Vertex 10965 0.924604 0.104215 -0.824269 Vertex 10966 0.275307 -0.732908 1.21343 Vertex 10967 -1.08894 -2.64428 -0.110618 Vertex 10968 0.552514 -2.47031 2.40372 Vertex 10969 1.03721 1.09867 -1.34996 Vertex 10970 -1.22562 4.96978 -1.89323 Vertex 10971 -0.652974 0.368384 -1.40913 Vertex 10972 1.53364 0.954994 -2.26914 Vertex 10973 1.63926 1.19843 -2.28944 Vertex 10974 0.150139 -2.11515 2.03976 Vertex 10975 0.833685 0.434507 0.41692 Vertex 10976 0.737661 2.37352 0.108936 Vertex 10977 0.185577 0.157634 1.27634 Vertex 10978 -0.89479 -0.417594 1.09926 Vertex 10979 -0.135375 1.81395 -0.325756 Vertex 10980 0.674942 0.0748453 -0.0364901 Vertex 10981 -0.166211 1.76005 -0.262599 Vertex 10982 0.0328519 -2.96755 2.29566 Vertex 10983 1.11955 1.07176 -0.331142 Vertex 10984 -0.136058 4.31407 -0.819224 Vertex 10985 0.700949 0.622346 -0.872817 Vertex 10986 1.48731 0.943768 -1.39811 Vertex 10987 1.14353 1.14981 -1.47729 Vertex 10988 0.601128 -2.65788 2.73305 Vertex 10989 0.800073 1.74999 -0.0495192 Vertex 10990 0.435157 0.747193 1.14523 Vertex 10991 -0.834444 -0.366598 -1.24781 Vertex 10992 -0.614433 -1.83879 2.47338 Vertex 10993 0.366542 0.257957 1.11671 Vertex 10994 -0.704144 -0.098174 1.26145 Vertex 10995 -1.18814 5.35859 -1.9937 Vertex 10996 0.469654 -3.48107 1.40739 Vertex 10997 -0.835183 -2.02956 0.573535 Vertex 10998 -0.965651 0.16195 -0.918727 Vertex 10999 0.731015 -3.10414 2.27899 Vertex 11000 -1.02171 -1.49821 -2.58927 Vertex 11001 -0.469167 0.137412 -1.2172 Vertex 11002 -0.988373 -0.770089 0.038231 Vertex 11003 0.246923 0.515166 1.19267 Vertex 11004 0.263645 -2.69258 3.05767 Vertex 11005 -0.423889 0.6877 1.11311 Vertex 11006 -1.04372 -0.93009 0.195467 Vertex 11007 -1.04247 -0.461251 -2.34439 Vertex 11008 -0.20827 1.97725 -0.0142098 Vertex 11009 0.246689 0.110466 -0.730633 Vertex 11010 0.70727 0.667872 0.794624 Vertex 11011 0.75665 1.78961 0.223592 Vertex 11012 -0.26273 -2.68394 2.236 Vertex 11013 -0.292606 -2.16349 0.531323 Vertex 11014 0.117817 3.74755 -0.00631318 Vertex 11015 -1.36729 5.53196 -2.45355 Vertex 11016 -0.115676 -1.64407 2.93811 Vertex 11017 0.273656 2.74974 0.467603 Vertex 11018 -0.490413 1.27765 0.0336751 Vertex 11019 0.390629 2.66188 0.481736 Vertex 11020 0.565911 2.77063 -0.445451 Vertex 11021 0.215974 -2.40162 1.58326 Vertex 11022 0.372024 0.905305 1.15893 Vertex 11023 -1.09877 -2.21546 -0.0761526 Vertex 11024 -0.416584 1.25993 -0.105877 Vertex 11025 -0.75707 0.960644 0.560861 Vertex 11026 -0.0622877 -2.21057 0.223452 Vertex 11027 -0.704629 -1.52677 2.23368 Vertex 11028 0.758166 2.17259 0.0795968 Vertex 11029 -0.118719 -0.0132461 -0.813586 Vertex 11030 0.616545 1.77582 0.640352 Vertex 11031 0.384351 -3.1724 1.91992 Vertex 11032 0.123658 1.84286 0.748042 Vertex 11033 1.55472 0.906621 -2.8668 Vertex 11034 0.218604 -1.52483 0.87871 Vertex 11035 0.593819 -2.69102 2.37548 Vertex 11036 0.262566 -0.490505 -0.424673 Vertex 11037 1.49233 1.34927 -2.29159 Vertex 11038 -0.72038 -1.96027 1.41941 Vertex 11039 -0.83562 -0.572273 -0.170553 Vertex 11040 -0.119231 -0.381676 1.45885 Vertex 11041 0.488752 -0.900204 0.382162 Vertex 11042 1.37745 0.962916 -0.992272 Vertex 11043 0.320134 -1.83158 0.198178 Vertex 11044 0.291375 -1.38658 0.800017 Vertex 11045 -0.669664 -0.49499 -2.16593 Vertex 11046 -0.902461 0.619414 -0.380286 Vertex 11047 0.126929 3.59796 -0.834434 Vertex 11048 0.859292 -3.53787 2.36411 Vertex 11049 0.726533 1.60858 0.625488 Vertex 11050 0.6982 0.579356 0.777433 Vertex 11051 -0.503128 -2.1963 1.17894 Vertex 11052 -0.125754 3.50226 -0.236489 Vertex 11053 -1.3361 5.22348 -2.34108 Vertex 11054 0.213236 -0.411198 1.35948 Vertex 11055 -0.738952 -0.1553 -2.43691 Vertex 11056 -1.05166 -1.35828 0.272874 Vertex 11057 -0.198623 0.375311 1.44565 Vertex 11058 0.643537 2.77391 0.0182828 Vertex 11059 0.416367 -3.16285 1.44192 Vertex 11060 -0.631825 -1.76792 -0.104362 Vertex 11061 -0.378031 1.22872 0.908322 Vertex 11062 0.0778001 -2.94924 2.61103 Vertex 11063 0.465822 -0.913813 0.550978 Vertex 11064 -0.431927 -1.21932 1.85424 Vertex 11065 0.593312 -2.71262 2.4713 Vertex 11066 -0.664011 -0.181497 -2.3966 Vertex 11067 -0.918841 0.575828 0.651284 Vertex 11068 0.155985 1.96215 -0.629875 Vertex 11069 0.315495 -3.32307 2.3628 Vertex 11070 -0.598401 0.234111 1.19098 Vertex 11071 0.119654 -1.37433 1.13853 Vertex 11072 0.71474 2.25859 0.271816 Vertex 11073 -0.075311 -0.765429 -0.601844 Vertex 11074 -0.908226 -0.365803 1.02981 Vertex 11075 -0.80308 -1.15835 -0.253744 Vertex 11076 -0.968359 5.13776 -1.77152 Vertex 11077 0.176246 -0.0555929 -0.664123 Vertex 11078 0.262259 -0.797848 -0.379277 Vertex 11079 0.280164 0.274655 -0.827733 Vertex 11080 0.739431 0.738662 0.779772 Vertex 11081 -0.897514 -0.388252 -0.0792485 Vertex 11082 0.541827 0.709077 -0.729649 Vertex 11083 0.182588 -0.798686 -0.455697 Vertex 11084 0.573143 -3.20505 1.68559 Vertex 11085 -0.204551 -0.152261 1.52214 Vertex 11086 -0.812236 -0.375846 -0.390929 Vertex 11087 1.11482 0.638547 -0.0571944 Vertex 11088 0.466141 -2.5527 1.91026 Vertex 11089 -0.590043 0.00578803 1.27966 Vertex 11090 0.106654 1.99003 -0.557298 Vertex 11091 -0.902536 0.489819 0.778216 Vertex 11092 -0.685126 -1.74221 2.31408 Vertex 11093 -0.244193 -2.21158 0.216811 Vertex 11094 -0.306555 0.172118 -0.716806 Vertex 11095 -0.796736 -1.75525 1.20714 Vertex 11096 -1.05615 -0.195517 -0.921163 Vertex 11097 0.311589 1.93227 -0.790085 Vertex 11098 0.6861 -2.9474 2.4629 Vertex 11099 -1.04651 -0.620789 -2.30415 Vertex 11100 -0.0514163 -2.95823 2.17629 Vertex 11101 0.141137 2.97543 -0.711491 Vertex 11102 -0.492294 -2.39953 1.74908 Vertex 11103 0.360091 2.64714 0.559585 Vertex 11104 -0.871183 0.366336 -0.766807 Vertex 11105 0.577256 -2.3241 2.84526 Vertex 11106 -0.521771 1.01627 -0.397572 Vertex 11107 0.501488 -0.10981 -0.231251 Vertex 11108 0.739295 1.49309 -0.452488 Vertex 11109 -0.660182 1.18759 0.411301 Vertex 11110 -0.727313 0.372846 -0.978285 Vertex 11111 1.47567 0.88223 -1.11954 Vertex 11112 0.508726 0.382873 1.04401 Vertex 11113 -1.03918 -1.10531 0.183973 Face 1 9057 7311 7100 Face 2 471 9229 10076 Face 3 1697 902 8858 Face 4 3145 10171 4024 Face 5 3582 5222 1854 Face 6 4548 6927 4849 Face 7 6784 7022 5957 Face 8 1212 8603 7723 Face 9 6901 3835 8380 Face 10 3301 7238 3638 Face 11 2318 10610 3024 Face 12 4937 3303 11101 Face 13 6456 10356 6157 Face 14 5534 7730 2152 Face 15 4233 10578 5162 Face 16 597 240 909 Face 17 3213 8041 8728 Face 18 843 4676 5025 Face 19 372 5875 6707 Face 20 10570 5815 9765 Face 21 6556 6425 4421 Face 22 1650 3731 4060 Face 23 873 8534 6405 Face 24 203 6894 1502 Face 25 5330 1686 9938 Face 26 2242 2850 4137 Face 27 4692 1353 2048 Face 28 5373 871 3902 Face 29 10197 8192 8050 Face 30 3411 10988 4368 Face 31 6387 5496 6600 Face 32 4010 9907 4555 Face 33 5242 9885 8554 Face 34 4114 1851 3138 Face 35 2885 8347 834 Face 36 9795 6190 392 Face 37 5917 1476 10834 Face 38 2762 10154 5694 Face 39 1706 7976 8660 Face 40 591 6829 7821 Face 41 927 3468 5285 Face 42 2469 4903 7838 Face 43 7324 1350 3150 Face 44 2036 8166 1068 Face 45 2579 1184 1814 Face 46 8573 5411 3588 Face 47 10862 8856 1261 Face 48 8879 11046 7314 Face 49 8192 8021 8050 Face 50 5160 8802 2407 Face 51 4484 10985 2727 Face 52 8619 3846 296 Face 53 6223 6117 2363 Face 54 4926 7044 7222 Face 55 3157 4963 4608 Face 56 8421 6123 6258 Face 57 7642 2737 6897 Face 58 9748 524 8570 Face 59 6894 5910 1502 Face 60 6094 6758 4655 Face 61 5397 3705 520 Face 62 394 4299 3117 Face 63 14 8964 10539 Face 64 2869 10088 7320 Face 65 8563 3374 931 Face 66 10092 1910 11076 Face 67 1377 4414 9464 Face 68 2334 10017 234 Face 69 10934 2906 9917 Face 70 1033 4342 5888 Face 71 6141 6767 11112 Face 72 6206 10522 5741 Face 73 4758 6581 4940 Face 74 6978 6353 4800 Face 75 8936 4385 9318 Face 76 9083 2894 1757 Face 77 3833 2572 6402 Face 78 10128 7439 7964 Face 79 5657 6407 4391 Face 80 3211 7855 5043 Face 81 9292 3855 9607 Face 82 1501 3567 9099 Face 83 3278 10409 6678 Face 84 708 8543 1576 Face 85 2487 947 10877 Face 86 10470 7866 6260 Face 87 3596 8059 8931 Face 88 1264 8550 5868 Face 89 2498 173 4790 Face 90 1197 6382 101 Face 91 10887 8959 9354 Face 92 5631 9334 829 Face 93 6175 159 6777 Face 94 1259 9488 6552 Face 95 6749 5274 3539 Face 96 8891 3979 2606 Face 97 3616 9387 3903 Face 98 3785 10733 7168 Face 99 2985 4304 10831 Face 100 4408 542 1205 Face 101 1666 846 993 Face 102 2399 7025 4378 Face 103 6274 5912 7385 Face 104 8208 1555 4324 Face 105 5256 3419 969 Face 106 3859 3173 7991 Face 107 5596 6087 3256 Face 108 5865 6506 7833 Face 109 1912 3841 928 Face 110 7921 4794 10582 Face 111 7635 1436 1999 Face 112 326 2844 9579 Face 113 3601 11034 6639 Face 114 3503 4005 6886 Face 115 5346 1137 1830 Face 116 3574 2156 2665 Face 117 10251 9350 72 Face 118 9932 5052 2976 Face 119 4537 2428 6875 Face 120 9613 1269 9513 Face 121 10281 10384 5525 Face 122 513 445 7418 Face 123 9 551 7758 Face 124 9443 2112 10795 Face 125 4167 7662 7602 Face 126 5214 9453 8794 Face 127 1127 588 7691 Face 128 5475 5805 7789 Face 129 10272 10688 8068 Face 130 3936 3856 4173 Face 131 1993 6946 2505 Face 132 5288 7301 5682 Face 133 7804 1877 3108 Face 134 133 8808 424 Face 135 9812 8169 2188 Face 136 6202 6371 6779 Face 137 9347 4584 8773 Face 138 6569 4276 1458 Face 139 4802 10929 10043 Face 140 8288 738 5381 Face 141 3296 5528 3013 Face 142 10357 3597 2406 Face 143 6618 3476 1871 Face 144 8736 2553 10133 Face 145 3102 10482 10277 Face 146 2584 9966 1362 Face 147 10364 6366 3593 Face 148 2961 10473 5772 Face 149 219 6546 6189 Face 150 5889 6224 1881 Face 151 2919 8738 5761 Face 152 5527 10584 5476 Face 153 8006 11015 916 Face 154 9151 10036 2603 Face 155 7130 8006 916 Face 156 2238 9278 915 Face 157 10921 4991 4066 Face 158 7851 7149 6914 Face 159 1774 5989 9218 Face 160 2164 1559 10649 Face 161 3497 1442 3813 Face 162 8054 5866 11098 Face 163 7687 9194 1768 Face 164 7218 9569 10183 Face 165 4804 3135 7708 Face 166 1536 817 5362 Face 167 6709 1608 3995 Face 168 320 11032 2450 Face 169 8174 10084 7869 Face 170 1009 1448 6770 Face 171 5596 2263 548 Face 172 5578 8143 11061 Face 173 6061 4210 9433 Face 174 3596 8931 7671 Face 175 10128 4879 5775 Face 176 8275 7894 9638 Face 177 350 10467 6555 Face 178 7134 377 9573 Face 179 10188 4406 1371 Face 180 6562 2881 6627 Face 181 5695 3393 4304 Face 182 5566 9982 2310 Face 183 10447 3383 1648 Face 184 8539 4059 641 Face 185 2376 1993 489 Face 186 8439 1638 1930 Face 187 1453 2018 4824 Face 188 1811 2865 7848 Face 189 10471 6121 9094 Face 190 8372 5890 1842 Face 191 7466 8722 10647 Face 192 8629 10889 3225 Face 193 6980 2023 92 Face 194 10997 2676 10063 Face 195 10128 1644 8844 Face 196 5237 3895 9039 Face 197 600 3003 4350 Face 198 229 352 4168 Face 199 5791 10674 10925 Face 200 10128 4990 4879 Face 201 9601 11113 7184 Face 202 7069 6482 4683 Face 203 2079 5288 10090 Face 204 10701 2231 7401 Face 205 9513 3794 10896 Face 206 386 2792 2001 Face 207 7389 3702 2813 Face 208 6834 2266 3817 Face 209 7619 4373 2367 Face 210 7132 10140 8882 Face 211 7332 2256 3128 Face 212 8059 3596 4237 Face 213 9557 1509 9675 Face 214 10667 8862 8800 Face 215 7796 1852 10082 Face 216 922 3976 7796 Face 217 4772 3681 1976 Face 218 1996 8804 683 Face 219 2568 3063 3655 Face 220 113 8311 6441 Face 221 5646 2181 9034 Face 222 10024 5646 9160 Face 223 7524 3088 9005 Face 224 2097 569 5207 Face 225 5980 2983 7216 Face 226 3276 1471 7249 Face 227 5937 10155 5929 Face 228 9148 8909 2255 Face 229 2166 8012 2890 Face 230 9409 590 3412 Face 231 1095 4168 10213 Face 232 6323 7574 8733 Face 233 1231 6917 5380 Face 234 10559 9726 6362 Face 235 1488 3001 9087 Face 236 8765 1442 3637 Face 237 8612 1076 1880 Face 238 2921 5880 8122 Face 239 8809 4366 8177 Face 240 3608 9144 8851 Face 241 6543 2309 6112 Face 242 2809 845 148 Face 243 757 2965 6359 Face 244 1406 2070 8575 Face 245 10891 650 3674 Face 246 5714 4433 11043 Face 247 8377 3525 5843 Face 248 3448 10953 4600 Face 249 5662 5889 4306 Face 250 5881 7719 7622 Face 251 7244 9442 679 Face 252 8479 4187 3920 Face 253 10126 10660 9031 Face 254 6241 8698 7285 Face 255 1842 6984 10311 Face 256 10861 9548 4684 Face 257 4823 10217 4250 Face 258 1454 8528 10942 Face 259 7524 6483 5095 Face 260 7512 6261 980 Face 261 11027 6320 2821 Face 262 10861 8103 4857 Face 263 8755 4352 9470 Face 264 7778 8350 3585 Face 265 5199 3838 9411 Face 266 6262 9410 4516 Face 267 7460 2253 3145 Face 268 10030 8687 599 Face 269 8719 6570 2859 Face 270 9280 4326 1939 Face 271 3298 5085 2659 Face 272 3664 4221 5085 Face 273 6212 4728 7503 Face 274 8794 10014 5205 Face 275 9949 2094 7537 Face 276 530 878 5538 Face 277 7359 7153 7252 Face 278 2050 504 4127 Face 279 7345 10498 6498 Face 280 6688 10664 8074 Face 281 7690 6649 10742 Face 282 2953 3385 1339 Face 283 1930 1638 6531 Face 284 9558 1426 7342 Face 285 8797 9513 441 Face 286 7541 5374 9372 Face 287 6130 4288 3316 Face 288 10046 8640 3852 Face 289 9484 7548 6462 Face 290 502 6287 7377 Face 291 8232 5583 9837 Face 292 1765 8044 2368 Face 293 8027 1607 5761 Face 294 5986 6195 8494 Face 295 3659 7876 6149 Face 296 4530 7969 8196 Face 297 3159 1085 5621 Face 298 5730 3231 1073 Face 299 724 2283 4916 Face 300 4111 6222 2356 Face 301 3767 4431 149 Face 302 5042 2241 1898 Face 303 615 4270 5490 Face 304 6975 6233 3323 Face 305 8283 1149 40 Face 306 7046 4976 3544 Face 307 7225 6277 1683 Face 308 8496 7189 3490 Face 309 6465 923 6685 Face 310 9074 5707 7176 Face 311 4769 498 5198 Face 312 5461 558 3992 Face 313 1368 9005 2473 Face 314 3146 2889 3120 Face 315 3678 4541 4212 Face 316 4606 9590 1971 Face 317 3816 9191 5734 Face 318 9156 10099 2497 Face 319 1652 7375 4040 Face 320 5675 2562 7998 Face 321 4124 6997 4382 Face 322 613 4646 6997 Face 323 6655 5978 1610 Face 324 9959 7303 6822 Face 325 4050 3797 9761 Face 326 6269 10355 7915 Face 327 9949 8291 4591 Face 328 3915 8263 9165 Face 329 7369 629 3915 Face 330 9363 10027 3647 Face 331 6755 7652 3780 Face 332 5281 4325 7250 Face 333 10901 8189 7373 Face 334 3463 10974 8249 Face 335 2773 7032 374 Face 336 6205 4309 7032 Face 337 254 4427 8914 Face 338 1143 2819 8086 Face 339 9171 1548 1985 Face 340 5562 4662 7663 Face 341 207 9961 2576 Face 342 9352 6723 4546 Face 343 8955 5066 1258 Face 344 8761 2827 399 Face 345 9633 6155 7000 Face 346 3044 6440 8231 Face 347 10286 1101 1803 Face 348 5901 7845 10428 Face 349 7333 4469 9203 Face 350 1342 2958 9460 Face 351 7226 6971 6034 Face 352 6491 2558 5640 Face 353 7975 3504 4071 Face 354 3555 2304 1628 Face 355 3555 4623 11033 Face 356 7214 6008 6327 Face 357 9279 3073 4856 Face 358 6924 9037 9824 Face 359 9711 1645 3930 Face 360 402 8134 3563 Face 361 10820 7012 6809 Face 362 3482 2793 6691 Face 363 5885 7266 8821 Face 364 3064 5430 9043 Face 365 7834 1875 6444 Face 366 241 10462 1938 Face 367 5478 4988 604 Face 368 8358 2020 5709 Face 369 1078 4238 8837 Face 370 10579 887 6725 Face 371 3194 9957 1506 Face 372 3586 7001 7935 Face 373 8264 8698 780 Face 374 6065 5055 10792 Face 375 8188 3207 5768 Face 376 5840 9887 8396 Face 377 8141 5888 4342 Face 378 9104 6151 10344 Face 379 8881 10248 2607 Face 380 2599 9959 8079 Face 381 1110 2483 2990 Face 382 6467 1231 3518 Face 383 11104 2488 5740 Face 384 2389 4532 10181 Face 385 9579 5467 10197 Face 386 739 5914 9006 Face 387 4262 6630 9335 Face 388 9089 9280 1939 Face 389 7099 10729 5189 Face 390 3123 6974 3836 Face 391 2710 9009 8860 Face 392 10980 1353 7449 Face 393 10087 7477 6105 Face 394 3030 5586 4765 Face 395 1662 9058 2041 Face 396 3403 6302 2822 Face 397 3181 7185 4177 Face 398 4156 1725 3069 Face 399 7346 10479 6343 Face 400 6891 7049 5979 Face 401 6840 1698 4961 Face 402 1617 7445 8471 Face 403 1499 10518 6289 Face 404 920 2829 11081 Face 405 2604 3506 6917 Face 406 6395 5973 8814 Face 407 6735 1461 3751 Face 408 4415 6328 7819 Face 409 9017 3234 6328 Face 410 3692 8966 3587 Face 411 3251 3701 7783 Face 412 1918 8699 11096 Face 413 7750 6945 403 Face 414 5601 4862 7598 Face 415 3081 727 8112 Face 416 2267 3936 4173 Face 417 1031 4728 3252 Face 418 1119 627 6992 Face 419 9105 178 7278 Face 420 332 6576 3553 Face 421 10797 4277 5991 Face 422 4450 3083 8371 Face 423 3130 8211 9964 Face 424 3035 6765 8273 Face 425 7568 7300 3285 Face 426 3787 10001 1295 Face 427 756 4602 2349 Face 428 4793 8998 9694 Face 429 1571 814 1283 Face 430 7954 2965 757 Face 431 5515 275 7319 Face 432 978 4808 8123 Face 433 3930 1645 1748 Face 434 6118 10681 4528 Face 435 10695 243 7091 Face 436 2154 736 8624 Face 437 1282 5236 405 Face 438 2846 2499 5057 Face 439 2846 3898 798 Face 440 7669 4053 9000 Face 441 263 8175 3538 Face 442 9060 2164 10756 Face 443 9449 7974 7404 Face 444 2631 6551 3535 Face 445 1778 381 5156 Face 446 7868 993 846 Face 447 4011 1169 976 Face 448 5867 6531 4698 Face 449 3525 8377 4907 Face 450 1464 4486 7376 Face 451 10412 977 10271 Face 452 3793 10129 8216 Face 453 829 4287 2282 Face 454 750 4883 10441 Face 455 11084 1482 10517 Face 456 3049 1015 9210 Face 457 3152 1666 10033 Face 458 8055 4065 8984 Face 459 5413 9608 1389 Face 460 3496 4982 7900 Face 461 978 2475 11035 Face 462 9603 9348 8077 Face 463 557 6104 6559 Face 464 2281 1565 10739 Face 465 6777 3611 6175 Face 466 639 5444 2541 Face 467 4305 6534 4444 Face 468 1552 9915 2921 Face 469 4612 5629 9205 Face 470 1403 2343 1204 Face 471 5512 10302 10406 Face 472 5307 5005 10023 Face 473 1380 5374 7541 Face 474 11046 5588 2698 Face 475 6943 9979 10733 Face 476 8729 5692 9979 Face 477 7003 3610 5489 Face 478 3923 1523 9506 Face 479 5035 2071 10174 Face 480 2092 5772 10473 Face 481 9399 1840 1348 Face 482 8389 7194 9706 Face 483 9023 3429 11031 Face 484 5484 4011 1669 Face 485 4624 7986 2134 Face 486 3842 3860 10340 Face 487 10081 10744 8670 Face 488 16 7613 10395 Face 489 8292 7682 4375 Face 490 8292 4398 9011 Face 491 1668 8562 7295 Face 492 775 3022 4598 Face 493 2901 1810 314 Face 494 2233 9595 1438 Face 495 65 9220 10561 Face 496 65 1581 9220 Face 497 1255 7996 10561 Face 498 8100 4045 519 Face 499 3887 10104 8939 Face 500 6119 7528 1040 Face 501 6160 1294 2067 Face 502 10347 68 7081 Face 503 10410 10081 10266 Face 504 1964 8373 5235 Face 505 9833 9101 8178 Face 506 3978 3024 11083 Face 507 1202 7752 4024 Face 508 1632 6955 1692 Face 509 3396 5281 192 Face 510 2842 6557 6583 Face 511 10295 1307 6469 Face 512 2995 8145 7439 Face 513 3234 9017 11060 Face 514 2791 1707 272 Face 515 8679 3765 7844 Face 516 8021 278 4524 Face 517 985 10216 8168 Face 518 8154 10615 2983 Face 519 6227 4615 78 Face 520 8159 10319 802 Face 521 4013 5283 5738 Face 522 5579 8320 9998 Face 523 2685 9359 10079 Face 524 512 5794 9841 Face 525 8252 10823 1977 Face 526 996 5118 302 Face 527 3457 2480 6679 Face 528 7209 10251 8893 Face 529 9709 7181 10251 Face 530 229 7363 352 Face 531 8614 11095 6719 Face 532 2537 9575 6418 Face 533 8450 8651 8256 Face 534 8450 9928 8651 Face 535 4721 3852 9001 Face 536 1983 8064 3888 Face 537 2911 10433 1691 Face 538 2045 400 9374 Face 539 2414 178 6676 Face 540 2699 7803 4783 Face 541 7148 5572 5835 Face 542 6885 1795 2014 Face 543 3266 297 75 Face 544 9225 2463 9702 Face 545 6160 9955 9722 Face 546 10405 4884 7665 Face 547 10229 6143 4956 Face 548 2581 2582 883 Face 549 9489 8924 955 Face 550 7261 3421 7591 Face 551 3879 4258 8535 Face 552 8829 9806 6373 Face 553 6872 5395 5402 Face 554 8743 2518 1292 Face 555 2909 5857 2270 Face 556 3271 8701 5904 Face 557 8190 7221 10641 Face 558 8112 2237 5688 Face 559 10820 2148 7012 Face 560 6227 78 5551 Face 561 6520 10466 6976 Face 562 146 3944 2154 Face 563 5606 10029 9425 Face 564 7341 7102 2466 Face 565 6849 8752 5985 Face 566 36 6996 2493 Face 567 8441 5647 8906 Face 568 5087 6798 10153 Face 569 5362 6378 7870 Face 570 3400 5930 7202 Face 571 10673 3347 7034 Face 572 233 761 10606 Face 573 5135 7456 5602 Face 574 2019 3458 9308 Face 575 7668 6347 572 Face 576 7668 8336 6325 Face 577 4256 10179 10703 Face 578 8807 3700 9313 Face 579 5464 4640 10880 Face 580 598 6140 5178 Face 581 7406 7291 4230 Face 582 11049 3361 9344 Face 583 5200 4648 10483 Face 584 7982 6789 2585 Face 585 6066 7878 9813 Face 586 8251 2693 8731 Face 587 8338 658 10508 Face 588 8746 9452 375 Face 589 6103 646 9926 Face 590 3213 1640 8815 Face 591 4218 85 9221 Face 592 10277 6410 6174 Face 593 5680 3631 4826 Face 594 5090 9946 2513 Face 595 4663 10491 5954 Face 596 4865 1591 131 Face 597 6878 9838 4901 Face 598 1907 8249 10430 Face 599 1907 3463 8249 Face 600 8418 9848 4912 Face 601 10265 396 3886 Face 602 7797 7790 8257 Face 603 3515 9162 4283 Face 604 1 3405 9162 Face 605 460 236 4282 Face 606 4029 7836 6967 Face 607 7649 4150 9023 Face 608 9932 2068 5052 Face 609 1966 9144 5810 Face 610 5363 6726 9501 Face 611 8969 7731 4506 Face 612 8840 2211 8057 Face 613 2672 10012 9797 Face 614 3384 9437 4985 Face 615 6056 1363 8730 Face 616 5245 10695 7091 Face 617 3199 7651 7474 Face 618 1521 3178 2082 Face 619 9289 4736 1696 Face 620 4447 2183 4183 Face 621 3193 2301 3899 Face 622 4402 7029 2970 Face 623 7010 1654 9188 Face 624 6259 8273 5039 Face 625 2811 5672 5824 Face 626 6520 2098 10466 Face 627 6520 1036 2098 Face 628 10822 2725 6327 Face 629 6498 8015 9444 Face 630 3071 6652 8013 Face 631 9898 2084 6431 Face 632 8513 8720 2761 Face 633 10902 3839 4641 Face 634 9110 91 8646 Face 635 8751 5859 4482 Face 636 9998 3225 10889 Face 637 8822 10737 2142 Face 638 5132 10907 1797 Face 639 6398 2004 8850 Face 640 1914 6106 6875 Face 641 8893 4472 7209 Face 642 3288 2771 608 Face 643 359 97 443 Face 644 6729 1333 8492 Face 645 6199 10097 4720 Face 646 712 8590 10783 Face 647 1286 2353 9076 Face 648 7343 4776 10655 Face 649 7989 924 6421 Face 650 10123 5496 1950 Face 651 3868 10536 9908 Face 652 4268 3706 8777 Face 653 4268 7653 3706 Face 654 2616 2330 3933 Face 655 2616 3407 2330 Face 656 4707 9929 4965 Face 657 3840 9759 7769 Face 658 7146 6142 5600 Face 659 8082 5802 2729 Face 660 4835 2918 917 Face 661 4767 10170 5078 Face 662 3659 6621 8279 Face 663 7941 10826 1054 Face 664 2007 4827 5077 Face 665 380 5617 8788 Face 666 4499 6804 8692 Face 667 3202 5324 3008 Face 668 10606 7640 3826 Face 669 3285 8553 6788 Face 670 6481 6790 9609 Face 671 10611 3645 3609 Face 672 9504 8362 3645 Face 673 2141 9205 4216 Face 674 4724 8743 3546 Face 675 1290 6723 8069 Face 676 8688 4736 9289 Face 677 7920 4676 843 Face 678 80 1670 6255 Face 679 4217 10825 1416 Face 680 3912 8113 3170 Face 681 559 7074 4107 Face 682 9584 6879 10327 Face 683 3747 10050 2576 Face 684 10788 9406 10224 Face 685 1684 835 7225 Face 686 7913 4828 3812 Face 687 5054 2155 9119 Face 688 8474 3797 7472 Face 689 816 9430 9052 Face 690 3761 930 1493 Face 691 2923 4938 4291 Face 692 8541 2618 5851 Face 693 10562 8541 5851 Face 694 2776 10603 8152 Face 695 104 2436 1047 Face 696 5539 10032 2053 Face 697 10698 9694 8998 Face 698 3359 470 10438 Face 699 4951 2933 10370 Face 700 736 8105 8099 Face 701 10543 9147 10036 Face 702 10579 6725 3721 Face 703 10449 5855 4639 Face 704 4095 7530 2040 Face 705 3909 779 8322 Face 706 6963 185 3076 Face 707 10355 6269 11026 Face 708 1945 6150 2177 Face 709 6216 4591 8291 Face 710 2094 5136 3859 Face 711 4986 6956 10962 Face 712 9827 6570 9941 Face 713 3930 668 5870 Face 714 10569 5786 7603 Face 715 4411 6066 9813 Face 716 7886 5050 6066 Face 717 4148 7370 1798 Face 718 5630 9967 900 Face 719 3018 4775 2099 Face 720 3018 4837 4775 Face 721 6793 6232 9184 Face 722 10769 271 3099 Face 723 6173 6555 10467 Face 724 1048 7178 4104 Face 725 9322 1267 2800 Face 726 7499 3989 1239 Face 727 2095 9354 4239 Face 728 3040 6518 3780 Face 729 8776 10540 9325 Face 730 9791 8664 10358 Face 731 1158 9766 6572 Face 732 2430 2525 7960 Face 733 2083 7221 10626 Face 734 6833 6962 2830 Face 735 67 10499 1349 Face 736 7568 1238 2025 Face 737 8842 5037 3372 Face 738 8842 9007 5037 Face 739 1184 6944 9464 Face 740 4211 2758 10054 Face 741 1638 4162 6531 Face 742 493 7898 6521 Face 743 4871 3190 8298 Face 744 2805 1726 8464 Face 745 1909 7446 3818 Face 746 1909 8961 7446 Face 747 5942 9174 2747 Face 748 7681 10316 4451 Face 749 10964 8681 1039 Face 750 4397 3510 7763 Face 751 2289 6225 10014 Face 752 7607 2530 5339 Face 753 708 1576 4470 Face 754 4289 5396 3865 Face 755 4506 7731 5396 Face 756 8108 6172 674 Face 757 6020 3260 6697 Face 758 8104 1627 10738 Face 759 1383 3413 9568 Face 760 1383 9382 10040 Face 761 8934 2437 10931 Face 762 294 10616 341 Face 763 1694 9786 9435 Face 764 1047 2436 4442 Face 765 3136 4253 8344 Face 766 7704 534 6953 Face 767 5307 3291 4448 Face 768 5305 530 7126 Face 769 3338 1133 10167 Face 770 7557 4187 8479 Face 771 10425 9262 9821 Face 772 5475 2486 5805 Face 773 9432 3424 4349 Face 774 7336 8591 11030 Face 775 5883 5231 2453 Face 776 5883 10878 5231 Face 777 6805 8838 6560 Face 778 4614 4311 3929 Face 779 5342 992 2826 Face 780 4159 10101 5103 Face 781 361 7698 10506 Face 782 1415 8803 2442 Face 783 3271 1056 5353 Face 784 10275 8693 10261 Face 785 1451 4877 3575 Face 786 6088 901 1510 Face 787 5888 2647 776 Face 788 740 10720 10709 Face 789 9553 11029 2740 Face 790 2683 6604 8148 Face 791 10870 368 721 Face 792 5676 2861 4427 Face 793 1375 9308 7777 Face 794 3020 7202 4489 Face 795 5526 4284 4489 Face 796 6395 2460 691 Face 797 6395 8814 2460 Face 798 5098 9843 8147 Face 799 4594 797 4696 Face 800 540 1258 5066 Face 801 2784 8911 1658 Face 802 5709 2650 6824 Face 803 6707 193 2677 Face 804 5924 9291 253 Face 805 10027 9363 3125 Face 806 8312 10238 2857 Face 807 2654 9007 8842 Face 808 642 1111 578 Face 809 10636 7159 7381 Face 810 9767 3461 10461 Face 811 1484 9016 962 Face 812 4477 602 3080 Face 813 7115 1041 5846 Face 814 9110 9939 6294 Face 815 5498 776 2647 Face 816 4902 9099 11094 Face 817 47 5753 2051 Face 818 1284 7084 3305 Face 819 7102 1022 8554 Face 820 2742 7855 3211 Face 821 9898 7015 3668 Face 822 5386 8970 8832 Face 823 7638 6121 10471 Face 824 2985 3835 6901 Face 825 2985 10831 3835 Face 826 859 2687 4528 Face 827 5658 3856 10366 Face 828 9441 7861 5817 Face 829 8566 10509 10134 Face 830 5898 7542 5452 Face 831 10114 653 3807 Face 832 2831 1962 174 Face 833 8977 260 8905 Face 834 2815 7580 6584 Face 835 2852 7013 8185 Face 836 2371 7623 872 Face 837 5141 2852 8185 Face 838 2852 3344 2988 Face 839 7305 2869 7320 Face 840 3488 2391 9958 Face 841 1527 4033 8716 Face 842 6469 6977 7871 Face 843 458 4537 6640 Face 844 9030 3437 9260 Face 845 7003 10417 2193 Face 846 3041 4316 3046 Face 847 1618 7268 9976 Face 848 7365 4638 7683 Face 849 694 96 1331 Face 850 8224 7043 10318 Face 851 10588 1765 613 Face 852 6289 10518 6634 Face 853 6458 3401 2507 Face 854 6458 4066 1106 Face 855 9183 4258 6154 Face 856 10567 9916 3845 Face 857 8500 6278 8697 Face 858 5547 687 536 Face 859 1870 8815 1640 Face 860 10659 6543 6112 Face 861 3551 2720 5076 Face 862 11102 10946 6500 Face 863 958 8253 904 Face 864 6365 6203 6005 Face 865 5349 4521 5544 Face 866 3950 133 424 Face 867 2756 5169 10064 Face 868 3041 8713 4316 Face 869 812 1952 8816 Face 870 8651 9960 8256 Face 871 7287 2946 9549 Face 872 8317 5845 3972 Face 873 10288 5613 2265 Face 874 3370 1195 8034 Face 875 3078 10200 4891 Face 876 478 6262 5959 Face 877 478 5669 7846 Face 878 4565 5959 1624 Face 879 3442 6075 9787 Face 880 3026 11042 4357 Face 881 8107 1206 2583 Face 882 10862 7137 3501 Face 883 6805 6560 1507 Face 884 5505 3708 5072 Face 885 6578 4198 9903 Face 886 3170 6703 5771 Face 887 11002 3222 9552 Face 888 5808 2078 10989 Face 889 2540 8617 1523 Face 890 4047 2806 9380 Face 891 9651 7610 647 Face 892 9455 2003 5584 Face 893 2942 3013 5528 Face 894 9139 9018 1016 Face 895 7658 2429 6942 Face 896 672 2167 5589 Face 897 10585 7597 353 Face 898 2894 9083 4092 Face 899 8601 8838 281 Face 900 9882 9466 4904 Face 901 5022 4227 7657 Face 902 2045 7756 4522 Face 903 3406 3295 7952 Face 904 8411 10031 8952 Face 905 5133 8973 1825 Face 906 567 9115 4971 Face 907 2349 1817 10942 Face 908 6354 10920 7269 Face 909 3748 1459 2349 Face 910 1886 10541 11084 Face 911 7491 2298 6645 Face 912 426 4611 8710 Face 913 8568 4611 426 Face 914 4754 4273 10629 Face 915 9123 899 4273 Face 916 6928 4011 2193 Face 917 5530 3789 3545 Face 918 10505 1248 10801 Face 919 1743 10661 8979 Face 920 1743 6665 10661 Face 921 11096 8699 9042 Face 922 3789 1248 2538 Face 923 8792 4799 4149 Face 924 5332 990 6330 Face 925 1037 6783 2185 Face 926 7246 352 5770 Face 927 9243 4690 631 Face 928 4278 3723 10772 Face 929 3092 1711 5069 Face 930 7799 616 2776 Face 931 8131 7341 2466 Face 932 4344 2641 2629 Face 933 4020 8861 2954 Face 934 2802 8181 4966 Face 935 7376 4486 7410 Face 936 2196 2895 9912 Face 937 7056 1701 9095 Face 938 1503 6743 10279 Face 939 3522 670 5110 Face 940 2588 779 8172 Face 941 2479 131 9971 Face 942 5168 7222 7044 Face 943 5168 7011 7222 Face 944 4948 133 3950 Face 945 3700 8807 2394 Face 946 1522 10447 1610 Face 947 1201 9409 3412 Face 948 864 9811 4986 Face 949 5365 4737 8307 Face 950 1474 6148 6776 Face 951 4561 2834 4143 Face 952 10270 7267 1322 Face 953 2496 2497 3182 Face 954 8876 2892 8716 Face 955 5996 4603 1761 Face 956 4486 772 7410 Face 957 7235 136 7605 Face 958 9263 3506 9198 Face 959 6452 6385 9952 Face 960 3979 1688 2606 Face 961 8745 9418 8552 Face 962 4088 9136 2047 Face 963 2738 994 3410 Face 964 1235 5627 5411 Face 965 1234 376 5357 Face 966 8006 8361 11015 Face 967 8006 2315 5441 Face 968 8114 5503 3277 Face 969 1321 8633 1209 Face 970 7165 9503 6043 Face 971 6061 9433 9503 Face 972 4457 10460 10058 Face 973 6570 5108 2052 Face 974 6570 9827 5108 Face 975 10697 5565 7052 Face 976 10668 2808 8355 Face 977 2083 2430 5688 Face 978 2251 6575 3038 Face 979 1702 2752 10736 Face 980 2609 274 5813 Face 981 5150 4949 6701 Face 982 5380 3422 3519 Face 983 5380 10245 3422 Face 984 8724 6051 3939 Face 985 5993 7656 7415 Face 986 9053 2249 6339 Face 987 8268 10488 4334 Face 988 10017 4926 7222 Face 989 1109 2336 7012 Face 990 10718 9605 1222 Face 991 1492 5559 7775 Face 992 3358 7775 8036 Face 993 7370 4148 10758 Face 994 768 11091 5991 Face 995 7409 9519 6274 Face 996 10783 8590 9519 Face 997 8981 10605 8578 Face 998 4872 3924 1498 Face 999 10670 5552 8824 Face 1000 863 2496 6393 Face 1001 7884 2493 6996 Face 1002 3571 7525 9675 Face 1003 10341 2354 2159 Face 1004 5290 532 3471 Face 1005 5255 8269 2940 Face 1006 10873 9543 2782 Face 1007 2658 9776 2470 Face 1008 8718 198 2718 Face 1009 7289 10077 5585 Face 1010 8339 7466 9660 Face 1011 8339 10077 7289 Face 1012 6251 8485 8110 Face 1013 725 8245 6616 Face 1014 3444 1706 8660 Face 1015 3815 10740 9479 Face 1016 2030 5798 1095 Face 1017 5929 7675 2457 Face 1018 10842 11053 416 Face 1019 5660 8933 9861 Face 1020 8628 10731 2131 Face 1021 3000 4937 6314 Face 1022 5686 7500 7364 Face 1023 8641 7364 7500 Face 1024 9249 1904 8817 Face 1025 7957 2085 425 Face 1026 7404 9316 10260 Face 1027 3434 657 7852 Face 1028 8606 4666 1853 Face 1029 8606 5456 9127 Face 1030 1900 5096 9465 Face 1031 3594 522 2736 Face 1032 4303 4559 517 Face 1033 2231 10701 1463 Face 1034 7319 2927 5515 Face 1035 10406 1073 8233 Face 1036 1749 5293 5509 Face 1037 8908 9943 3317 Face 1038 3035 8273 5830 Face 1039 1921 10292 3122 Face 1040 10292 626 9171 Face 1041 4067 143 10514 Face 1042 10089 3622 143 Face 1043 8703 10976 5619 Face 1044 1367 3335 3600 Face 1045 4091 9193 2240 Face 1046 7399 1524 3000 Face 1047 7323 10922 10646 Face 1048 987 5803 8963 Face 1049 5803 2670 10811 Face 1050 4507 6176 6867 Face 1051 10141 1473 4584 Face 1052 8066 6290 8773 Face 1053 3336 4554 8970 Face 1054 240 9740 909 Face 1055 6404 6694 3336 Face 1056 3325 9547 7672 Face 1057 9335 6291 4262 Face 1058 6238 1882 8078 Face 1059 3765 4001 7844 Face 1060 1301 2855 9924 Face 1061 528 145 9924 Face 1062 4691 1494 10336 Face 1063 6192 10324 8779 Face 1064 4072 9089 1939 Face 1065 4708 9228 510 Face 1066 2663 8240 1226 Face 1067 2601 147 3948 Face 1068 7280 9771 5389 Face 1069 7540 4928 43 Face 1070 7281 8129 2337 Face 1071 8444 8558 5056 Face 1072 10978 3762 7215 Face 1073 9563 5369 9390 Face 1074 6310 3997 4235 Face 1075 7672 9547 5993 Face 1076 8085 565 8087 Face 1077 9966 2584 9263 Face 1078 6437 4410 1888 Face 1079 5821 936 3019 Face 1080 6437 2825 936 Face 1081 8389 1382 7194 Face 1082 9015 6144 697 Face 1083 6144 5322 9890 Face 1084 6144 3884 5322 Face 1085 4967 9361 9304 Face 1086 816 9052 7930 Face 1087 1092 9823 3007 Face 1088 9493 5286 2715 Face 1089 8589 3070 4882 Face 1090 11019 995 8981 Face 1091 2916 11103 1693 Face 1092 9184 8888 9560 Face 1093 11089 5274 4327 Face 1094 9065 10853 4802 Face 1095 577 2809 7965 Face 1096 8662 2724 9825 Face 1097 3299 4008 237 Face 1098 7010 2116 1654 Face 1099 4402 4083 6120 Face 1100 8118 5810 9144 Face 1101 10226 2224 6317 Face 1102 5879 6384 6250 Face 1103 7098 5089 7219 Face 1104 5451 2529 1421 Face 1105 10176 502 7377 Face 1106 10774 4473 9080 Face 1107 10332 2004 8091 Face 1108 4307 3188 1596 Face 1109 4491 7991 3173 Face 1110 8089 2417 10927 Face 1111 2285 342 7274 Face 1112 7711 9237 150 Face 1113 10819 1025 3205 Face 1114 8261 8388 8846 Face 1115 5012 4933 9948 Face 1116 10514 143 4215 Face 1117 5543 4628 10843 Face 1118 10427 10010 1093 Face 1119 818 7258 8321 Face 1120 1038 1401 3054 Face 1121 5493 9035 1038 Face 1122 423 2181 3009 Face 1123 10693 9247 5149 Face 1124 10693 6907 1849 Face 1125 6114 10750 1583 Face 1126 10621 7003 5489 Face 1127 640 7219 3728 Face 1128 640 3667 7219 Face 1129 2479 2360 2922 Face 1130 4931 131 2479 Face 1131 7762 9449 5179 Face 1132 742 9501 3657 Face 1133 7339 9532 758 Face 1134 8323 4488 1083 Face 1135 5275 4512 1695 Face 1136 968 2869 7305 Face 1137 2827 2046 8048 Face 1138 9492 10371 5405 Face 1139 9897 2522 9311 Face 1140 2306 6360 426 Face 1141 3994 1311 9311 Face 1142 591 10374 6829 Face 1143 511 353 7597 Face 1144 6525 6772 4015 Face 1145 5574 5977 4816 Face 1146 10346 7944 3163 Face 1147 5799 5200 8363 Face 1148 2695 10577 764 Face 1149 10426 667 820 Face 1150 4372 10494 667 Face 1151 10904 7141 9235 Face 1152 1455 733 2651 Face 1153 3648 3363 733 Face 1154 5765 9726 9881 Face 1155 5554 1821 6133 Face 1156 3337 3384 4985 Face 1157 7431 7265 2459 Face 1158 4542 1018 9691 Face 1159 3489 4286 7777 Face 1160 2260 9462 4286 Face 1161 10732 6036 7511 Face 1162 7634 4320 4205 Face 1163 6626 10994 7218 Face 1164 6626 5419 10994 Face 1165 3073 10771 4856 Face 1166 8402 3537 2380 Face 1167 563 2514 4483 Face 1168 10881 10523 455 Face 1169 9073 6923 81 Face 1170 8524 10597 1808 Face 1171 1995 2791 5974 Face 1172 1995 7697 2791 Face 1173 7160 3910 2600 Face 1174 9835 5517 167 Face 1175 4664 8452 3165 Face 1176 7458 3272 580 Face 1177 2575 340 9077 Face 1178 5248 2610 756 Face 1179 5609 3943 7083 Face 1180 7662 8929 7602 Face 1181 6094 8929 6212 Face 1182 9429 10178 1856 Face 1183 3022 2860 5579 Face 1184 3530 3709 5849 Face 1185 3530 2306 333 Face 1186 8352 8583 8356 Face 1187 8205 5182 10658 Face 1188 5457 4833 817 Face 1189 1659 8108 1704 Face 1190 32 4432 9811 Face 1191 2291 1117 9048 Face 1192 7520 4417 1154 Face 1193 7857 7254 9650 Face 1194 4486 11056 772 Face 1195 2 1143 8086 Face 1196 1886 5935 4932 Face 1197 1886 5126 5935 Face 1198 4035 5023 6854 Face 1199 1894 4722 7349 Face 1200 500 3060 392 Face 1201 5439 7435 4740 Face 1202 8914 4427 2861 Face 1203 10846 9953 5888 Face 1204 6855 10806 4911 Face 1205 8288 4549 738 Face 1206 572 9381 4841 Face 1207 9381 3663 7742 Face 1208 1802 3338 10167 Face 1209 572 7747 1802 Face 1210 3160 4111 8425 Face 1211 560 984 8554 Face 1212 1769 3160 1997 Face 1213 7070 2016 4693 Face 1214 6215 2674 854 Face 1215 6565 3081 8112 Face 1216 6559 8805 557 Face 1217 1744 4871 716 Face 1218 8816 6182 3216 Face 1219 8366 1676 6674 Face 1220 10057 325 865 Face 1221 748 2491 10057 Face 1222 6874 3316 4288 Face 1223 4047 6130 3316 Face 1224 4350 5626 2552 Face 1225 814 6879 8460 Face 1226 4888 9507 2109 Face 1227 1453 3439 2018 Face 1228 1938 10462 5692 Face 1229 3660 1358 7143 Face 1230 2734 6481 3951 Face 1231 4589 4811 4082 Face 1232 9516 7663 259 Face 1233 9516 5562 7663 Face 1234 8013 5458 485 Face 1235 9990 3435 4575 Face 1236 3619 5431 3172 Face 1237 6320 2146 5431 Face 1238 5947 5288 8197 Face 1239 10982 3712 8225 Face 1240 10829 4745 1621 Face 1241 2305 8921 6286 Face 1242 1142 6213 6480 Face 1243 5924 6778 641 Face 1244 6432 162 9730 Face 1245 5177 11041 4842 Face 1246 9505 6539 8248 Face 1247 5828 3392 1998 Face 1248 10782 3477 9195 Face 1249 7465 1348 8575 Face 1250 5664 7914 10260 Face 1251 10768 8744 1574 Face 1252 4227 7596 2629 Face 1253 615 5490 4962 Face 1254 3248 10574 6369 Face 1255 1846 1019 1276 Face 1256 7839 371 1036 Face 1257 4521 6822 9476 Face 1258 10572 10937 10259 Face 1259 2439 10311 8022 Face 1260 2439 9899 8372 Face 1261 10160 7835 5079 Face 1262 5344 10155 4746 Face 1263 886 4780 5114 Face 1264 596 10715 6230 Face 1265 8119 9611 8473 Face 1266 10077 3806 5585 Face 1267 6989 9714 4906 Face 1268 10751 10589 3806 Face 1269 6724 4958 2955 Face 1270 3234 8271 1703 Face 1271 2939 167 9851 Face 1272 4670 7569 4456 Face 1273 349 8943 7525 Face 1274 10369 8826 9893 Face 1275 3592 4349 7127 Face 1276 10364 2454 4145 Face 1277 7272 844 9832 Face 1278 9802 3453 9480 Face 1279 2603 4259 795 Face 1280 5295 4713 2798 Face 1281 4245 435 3445 Face 1282 2625 7827 796 Face 1283 1999 7331 8475 Face 1284 3727 7585 1090 Face 1285 2489 4159 2854 Face 1286 2489 10101 4159 Face 1287 8481 7336 11030 Face 1288 6957 958 5728 Face 1289 4595 7232 3116 Face 1290 5283 9540 3942 Face 1291 4054 2999 6540 Face 1292 5438 935 8155 Face 1293 9514 8514 8383 Face 1294 5221 4165 1577 Face 1295 15 171 9403 Face 1296 1727 6674 6523 Face 1297 7546 9679 4427 Face 1298 4053 4117 9653 Face 1299 1397 6674 1727 Face 1300 5636 2172 6134 Face 1301 2572 4548 4849 Face 1302 8523 10255 286 Face 1303 2206 2229 8520 Face 1304 8328 977 10412 Face 1305 5960 2072 1177 Face 1306 6263 7030 9984 Face 1307 2774 111 5533 Face 1308 9984 4639 5855 Face 1309 3853 3890 3324 Face 1310 3274 10269 3056 Face 1311 6151 8978 10344 Face 1312 3181 5806 8162 Face 1313 3547 9804 9284 Face 1314 9871 5405 568 Face 1315 6478 10347 3729 Face 1316 4765 53 3030 Face 1317 173 2947 7538 Face 1318 11105 3939 5625 Face 1319 10346 4042 9546 Face 1320 10346 9040 2009 Face 1321 1055 8171 1422 Face 1322 1422 8585 1055 Face 1323 3537 696 6733 Face 1324 9671 6140 598 Face 1325 3521 3057 9671 Face 1326 7638 2967 4046 Face 1327 5368 3406 5492 Face 1328 3901 3812 8548 Face 1329 7475 10039 5905 Face 1330 6996 4599 2797 Face 1331 1570 6561 6441 Face 1332 8251 11047 2693 Face 1333 4177 5951 495 Face 1334 6361 330 10864 Face 1335 3659 5780 6621 Face 1336 5780 811 7513 Face 1337 9376 8760 177 Face 1338 4172 3887 9942 Face 1339 4080 4191 5063 Face 1340 4892 5725 1618 Face 1341 6417 4107 7074 Face 1342 5222 5047 10435 Face 1343 4889 2974 3241 Face 1344 8747 8088 3758 Face 1345 8135 4712 7531 Face 1346 10913 6221 5751 Face 1347 613 5583 1378 Face 1348 7890 975 3232 Face 1349 5603 8728 8041 Face 1350 1021 5174 5748 Face 1351 5037 8177 4366 Face 1352 5238 1784 8118 Face 1353 454 10225 7016 Face 1354 7677 5036 405 Face 1355 2918 1569 4324 Face 1356 1013 5036 7677 Face 1357 417 11105 4297 Face 1358 7497 4934 6505 Face 1359 5733 10321 5490 Face 1360 5839 10909 1240 Face 1361 6173 5373 7277 Face 1362 167 4670 3829 Face 1363 3038 4398 8292 Face 1364 10597 11039 1808 Face 1365 3492 8440 5499 Face 1366 5510 5986 8494 Face 1367 7959 10876 652 Face 1368 6714 10689 1116 Face 1369 7302 5227 746 Face 1370 8473 10715 8119 Face 1371 5996 8341 4603 Face 1372 3932 5044 8341 Face 1373 10384 2941 5525 Face 1374 5028 4418 5595 Face 1375 4993 3582 1854 Face 1376 10384 8709 8029 Face 1377 9462 4820 1375 Face 1378 2772 10804 6916 Face 1379 9296 9659 5858 Face 1380 7988 11036 6096 Face 1381 8926 3103 2103 Face 1382 4996 4429 4363 Face 1383 7572 2044 7988 Face 1384 4497 8150 1066 Face 1385 9022 185 6963 Face 1386 3974 6919 6791 Face 1387 1029 9031 6078 Face 1388 1977 10823 3777 Face 1389 7862 9134 7690 Face 1390 4551 10742 6649 Face 1391 1758 7286 10882 Face 1392 3342 2233 7258 Face 1393 7035 10358 8664 Face 1394 3529 8798 2642 Face 1395 3529 5555 8798 Face 1396 6008 8330 6327 Face 1397 4649 6954 8115 Face 1398 6535 8472 6826 Face 1399 8903 2631 6837 Face 1400 4445 6551 2631 Face 1401 2718 796 7827 Face 1402 8434 7136 1908 Face 1403 1172 1847 10506 Face 1404 3077 10506 1847 Face 1405 4747 10535 4365 Face 1406 9641 7570 1789 Face 1407 6889 4535 3349 Face 1408 6869 481 3076 Face 1409 8249 8353 4436 Face 1410 8493 6291 682 Face 1411 4402 6120 6350 Face 1412 2818 1737 1088 Face 1413 2818 486 1737 Face 1414 5385 1602 7600 Face 1415 10634 10241 7719 Face 1416 9807 8551 5790 Face 1417 3843 6979 5420 Face 1418 4510 3495 5522 Face 1419 6680 10748 4384 Face 1420 4126 2837 4702 Face 1421 10044 5966 4643 Face 1422 2035 2956 10325 Face 1423 2956 4289 8793 Face 1424 561 3882 4757 Face 1425 2878 1560 8239 Face 1426 3985 4430 10391 Face 1427 8634 10734 4730 Face 1428 6353 6978 10734 Face 1429 2064 7339 6000 Face 1430 7350 9356 2064 Face 1431 3998 11082 1843 Face 1432 3174 6890 4230 Face 1433 1277 708 8265 Face 1434 6239 8719 2859 Face 1435 9695 842 2341 Face 1436 1181 877 9809 Face 1437 8517 3597 877 Face 1438 8677 9333 3179 Face 1439 6369 10574 9663 Face 1440 7954 5303 2965 Face 1441 5264 1732 3491 Face 1442 2340 8572 1533 Face 1443 4733 10906 6741 Face 1444 6683 2087 4353 Face 1445 7110 5191 1254 Face 1446 7419 6637 4901 Face 1447 7419 7994 6637 Face 1448 5837 5679 7356 Face 1449 1561 9060 7674 Face 1450 7059 2696 4373 Face 1451 8415 3019 4818 Face 1452 8415 220 3019 Face 1453 1326 9394 5866 Face 1454 3125 2218 6208 Face 1455 4917 4112 10723 Face 1456 8450 4917 10723 Face 1457 3866 9693 9194 Face 1458 2271 7279 190 Face 1459 10327 2481 4382 Face 1460 6987 6879 814 Face 1461 10901 7373 2707 Face 1462 5875 372 2437 Face 1463 3246 2652 10909 Face 1464 1758 7040 5642 Face 1465 8035 7979 5482 Face 1466 9998 2932 5579 Face 1467 194 2885 3224 Face 1468 775 4598 6322 Face 1469 5526 1012 4284 Face 1470 7162 413 131 Face 1471 10382 1357 1170 Face 1472 10773 8821 7266 Face 1473 8967 10576 8535 Face 1474 6663 961 9343 Face 1475 9480 9611 9802 Face 1476 9480 8473 9611 Face 1477 5399 10897 9460 Face 1478 4005 3503 9623 Face 1479 8584 8467 1620 Face 1480 2321 4031 9525 Face 1481 4098 7259 2321 Face 1482 968 8142 2869 Face 1483 4697 9659 9296 Face 1484 4606 1971 836 Face 1485 3202 6436 6883 Face 1486 6114 61 10620 Face 1487 61 199 5142 Face 1488 10945 1583 7320 Face 1489 1598 9763 9837 Face 1490 4271 10948 6288 Face 1491 8153 3516 8338 Face 1492 7206 311 4581 Face 1493 2778 6516 7761 Face 1494 9840 2842 6583 Face 1495 8886 1822 8007 Face 1496 8202 8120 2594 Face 1497 3430 5681 4182 Face 1498 8860 1148 4474 Face 1499 1580 4474 7405 Face 1500 1215 8864 4467 Face 1501 6689 8312 8918 Face 1502 8144 26 8667 Face 1503 823 5941 5594 Face 1504 6710 5645 3110 Face 1505 4123 6544 201 Face 1506 8957 8119 4615 Face 1507 2608 6730 7971 Face 1508 8625 1860 712 Face 1509 10354 9911 6515 Face 1510 6547 5330 9938 Face 1511 7942 6466 3518 Face 1512 8638 10581 1382 Face 1513 10517 8764 4792 Face 1514 2132 203 5109 Face 1515 3695 1839 4407 Face 1516 10416 203 2132 Face 1517 120 8566 8887 Face 1518 9483 2973 6366 Face 1519 4372 667 10426 Face 1520 717 10321 9421 Face 1521 4706 5058 7039 Face 1522 2380 3537 5987 Face 1523 6492 1376 1990 Face 1524 8425 4111 8853 Face 1525 3328 1990 3649 Face 1526 4734 3269 5472 Face 1527 8756 8356 1661 Face 1528 8756 10526 8356 Face 1529 5485 8134 6541 Face 1530 5954 10491 10895 Face 1531 1362 7705 2584 Face 1532 4096 2286 6587 Face 1533 1880 2975 28 Face 1534 470 10618 9385 Face 1535 1793 2765 2401 Face 1536 9674 207 152 Face 1537 9674 6152 4601 Face 1538 3047 10727 10045 Face 1539 10205 2978 1766 Face 1540 3469 3033 2978 Face 1541 6344 4133 5899 Face 1542 4133 6344 283 Face 1543 7419 4901 9838 Face 1544 10977 10072 2212 Face 1545 7909 3687 5171 Face 1546 7879 6680 4384 Face 1547 2174 9768 6539 Face 1548 992 5342 9768 Face 1549 2022 5459 4568 Face 1550 7506 1953 2022 Face 1551 4809 3465 1039 Face 1552 5637 10927 2417 Face 1553 11034 2510 6639 Face 1554 8179 5720 7093 Face 1555 2711 10740 3815 Face 1556 9239 1998 3392 Face 1557 2616 1048 3407 Face 1558 8283 9788 8061 Face 1559 9968 4377 5433 Face 1560 7901 10519 5442 Face 1561 7901 5270 10519 Face 1562 3784 790 3561 Face 1563 6082 9965 4205 Face 1564 1661 8356 5781 Face 1565 7228 7789 7660 Face 1566 6618 1836 8917 Face 1567 8646 91 1868 Face 1568 1865 8545 9663 Face 1569 5476 10584 2981 Face 1570 8937 7831 6607 Face 1571 6671 10102 8937 Face 1572 10497 1999 5763 Face 1573 4949 9900 4827 Face 1574 4949 5150 9900 Face 1575 5924 253 3837 Face 1576 583 10130 2829 Face 1577 2040 59 9132 Face 1578 8781 8569 7114 Face 1579 5718 6604 9874 Face 1580 5718 3847 6604 Face 1581 7041 4828 3816 Face 1582 3147 6013 1182 Face 1583 5690 7566 7733 Face 1584 4846 10502 2287 Face 1585 5148 10888 7175 Face 1586 3055 4584 9347 Face 1587 10721 3006 4214 Face 1588 3730 1666 3121 Face 1589 6247 2988 3344 Face 1590 8716 4033 4155 Face 1591 2857 10238 6334 Face 1592 5546 3143 9482 Face 1593 5554 5117 1821 Face 1594 11006 2141 4216 Face 1595 3222 11002 8673 Face 1596 2476 6892 10143 Face 1597 2476 2857 5663 Face 1598 9930 7906 209 Face 1599 8705 5677 9736 Face 1600 4642 351 7112 Face 1601 5070 10969 9767 Face 1602 5 10225 9109 Face 1603 5 10131 10225 Face 1604 6955 3311 1692 Face 1605 9127 5456 3588 Face 1606 1901 2296 3820 Face 1607 5376 1357 1483 Face 1608 4839 3329 4685 Face 1609 3966 4791 3141 Face 1610 9233 2199 4075 Face 1611 1253 9408 2900 Face 1612 717 9421 9037 Face 1613 9640 492 2832 Face 1614 1245 3723 3092 Face 1615 5903 6906 5940 Face 1616 9453 5214 2532 Face 1617 8351 4092 4151 Face 1618 6897 1792 7642 Face 1619 430 6254 10830 Face 1620 5600 8274 6349 Face 1621 9736 6534 159 Face 1622 8217 7057 9648 Face 1623 5313 5051 725 Face 1624 8198 2894 4092 Face 1625 1891 11095 2385 Face 1626 2923 4291 228 Face 1627 7304 9670 211 Face 1628 9485 8240 2663 Face 1629 5547 3736 687 Face 1630 5547 6602 3736 Face 1631 8371 2036 5479 Face 1632 5824 5672 7760 Face 1633 2214 1925 8879 Face 1634 1472 9920 3708 Face 1635 7372 565 9113 Face 1636 8272 5260 10524 Face 1637 6232 4885 4400 Face 1638 6417 6543 10659 Face 1639 1556 4477 11062 Face 1640 8607 6866 9510 Face 1641 1697 1044 2915 Face 1642 2559 3938 4629 Face 1643 9172 4337 6336 Face 1644 9172 3118 4337 Face 1645 7457 7707 6587 Face 1646 3536 9157 10154 Face 1647 3312 9951 2224 Face 1648 1498 9059 3716 Face 1649 9114 213 5788 Face 1650 2196 9912 6271 Face 1651 2196 8612 9593 Face 1652 2667 8033 7644 Face 1653 9671 6747 5894 Face 1654 10978 11074 3762 Face 1655 1105 6041 8532 Face 1656 3961 9898 6431 Face 1657 5615 8615 7015 Face 1658 3677 8045 531 Face 1659 5683 1027 8045 Face 1660 8125 2790 7293 Face 1661 3233 7382 3364 Face 1662 4586 236 7382 Face 1663 1946 24 2470 Face 1664 9178 9541 8595 Face 1665 2558 9721 5640 Face 1666 1104 215 6945 Face 1667 1104 9102 215 Face 1668 9826 5790 9102 Face 1669 9558 7863 6582 Face 1670 10871 9558 7342 Face 1671 1453 5778 9208 Face 1672 2431 1771 3707 Face 1673 8071 4310 3067 Face 1674 2456 7513 811 Face 1675 6182 3978 3216 Face 1676 6182 5121 8297 Face 1677 1194 8348 2615 Face 1678 4990 8171 4228 Face 1679 10128 8844 5614 Face 1680 9918 6319 10315 Face 1681 8640 11066 1623 Face 1682 2129 3980 908 Face 1683 1238 8863 2025 Face 1684 9636 9423 6880 Face 1685 9377 11086 8287 Face 1686 9377 844 11086 Face 1687 8972 9442 4089 Face 1688 1944 5563 1148 Face 1689 8415 4830 220 Face 1690 10306 5563 4830 Face 1691 9071 3045 10971 Face 1692 7264 7432 5853 Face 1693 3747 3615 6394 Face 1694 5882 5197 8485 Face 1695 1279 8373 9786 Face 1696 2218 3125 9363 Face 1697 3087 7151 4245 Face 1698 20 1926 3679 Face 1699 10458 7020 6143 Face 1700 5940 4121 9036 Face 1701 661 1598 3221 Face 1702 3561 9531 6828 Face 1703 572 4887 7747 Face 1704 6800 8752 6849 Face 1705 9067 7171 9324 Face 1706 6301 8152 10603 Face 1707 4434 7675 223 Face 1708 4741 1848 10846 Face 1709 9439 9952 5807 Face 1710 1559 2451 5965 Face 1711 9420 2314 2830 Face 1712 6293 1559 9420 Face 1713 6293 2451 1559 Face 1714 10796 5921 3115 Face 1715 4870 146 5976 Face 1716 4512 4540 7075 Face 1717 9967 9293 4512 Face 1718 8848 4673 9688 Face 1719 5746 10875 6955 Face 1720 10730 5820 6810 Face 1721 155 5306 1028 Face 1722 9731 9220 3644 Face 1723 9640 6632 7051 Face 1724 3266 7882 297 Face 1725 3750 4191 9238 Face 1726 3690 2802 4966 Face 1727 5445 8212 9304 Face 1728 8414 7950 7008 Face 1729 4731 10512 8022 Face 1730 48 2517 7054 Face 1731 3896 8789 9856 Face 1732 5389 9771 8038 Face 1733 689 8055 5939 Face 1734 2230 3408 8511 Face 1735 9339 1545 5792 Face 1736 8393 1518 5353 Face 1737 8026 290 7450 Face 1738 660 5978 2649 Face 1739 6127 1344 7820 Face 1740 6127 747 4720 Face 1741 9885 1513 10037 Face 1742 1971 8665 836 Face 1743 1971 5254 8665 Face 1744 9903 5053 6578 Face 1745 10596 375 9100 Face 1746 17 2938 6533 Face 1747 17 1477 2938 Face 1748 21 9373 10868 Face 1749 10432 10963 227 Face 1750 5872 2934 1123 Face 1751 3599 3749 5460 Face 1752 4310 6761 2838 Face 1753 6846 3067 4310 Face 1754 8981 550 9585 Face 1755 2804 7518 8782 Face 1756 5576 10310 6641 Face 1757 5576 10577 10310 Face 1758 7280 8340 9574 Face 1759 11064 1274 4571 Face 1760 5859 6935 4482 Face 1761 2071 1687 4364 Face 1762 10642 3803 5511 Face 1763 8678 6429 1957 Face 1764 8678 6264 1506 Face 1765 6308 6891 5979 Face 1766 4802 10043 9692 Face 1767 1265 1771 4049 Face 1768 1967 5155 8035 Face 1769 7384 9883 6642 Face 1770 2366 6519 7962 Face 1771 4319 7153 7359 Face 1772 6261 7512 2996 Face 1773 4866 4374 8316 Face 1774 23 725 5051 Face 1775 1911 3722 10843 Face 1776 2636 7885 2215 Face 1777 3174 1879 7885 Face 1778 6178 4018 10869 Face 1779 6274 7385 885 Face 1780 1706 3444 5448 Face 1781 3151 7241 9527 Face 1782 4636 1850 3871 Face 1783 1897 7495 5367 Face 1784 5149 6363 9962 Face 1785 9256 7519 7772 Face 1786 5713 10130 9497 Face 1787 3516 8468 8338 Face 1788 264 9366 1582 Face 1789 4719 750 9334 Face 1790 10205 1200 8836 Face 1791 3055 778 1766 Face 1792 7307 8621 3872 Face 1793 8811 9746 7256 Face 1794 7652 6516 3189 Face 1795 1074 5289 9746 Face 1796 851 8095 11032 Face 1797 9382 5421 8398 Face 1798 1302 2644 6937 Face 1799 10439 8221 10857 Face 1800 3825 1342 8227 Face 1801 4776 5847 10655 Face 1802 4553 4169 10668 Face 1803 8002 5414 10584 Face 1804 1121 4086 3684 Face 1805 5220 11017 7970 Face 1806 1410 522 5927 Face 1807 5915 7401 9678 Face 1808 9762 8799 7401 Face 1809 8087 5666 2545 Face 1810 10500 8087 2545 Face 1811 7075 4540 8085 Face 1812 2073 5684 6328 Face 1813 483 189 3885 Face 1814 2109 3982 3386 Face 1815 3386 3982 8998 Face 1816 6406 1339 3385 Face 1817 7506 4538 1953 Face 1818 1059 4511 2408 Face 1819 2926 7516 5800 Face 1820 2926 10234 7516 Face 1821 4213 3613 5198 Face 1822 1863 7584 8015 Face 1823 4206 4030 2416 Face 1824 9297 7806 5504 Face 1825 754 8351 5333 Face 1826 9033 3010 8418 Face 1827 7092 2004 10332 Face 1828 7092 8850 2004 Face 1829 10352 2393 10331 Face 1830 3304 3228 9528 Face 1831 7684 6039 4771 Face 1832 10815 7137 10862 Face 1833 5936 8936 4754 Face 1834 2015 143 3622 Face 1835 2273 3458 4170 Face 1836 6941 7777 3223 Face 1837 4396 7024 2758 Face 1838 684 9502 9423 Face 1839 6152 8246 10817 Face 1840 527 4333 5698 Face 1841 527 3320 4333 Face 1842 121 9676 8717 Face 1843 8703 4965 5093 Face 1844 6851 6700 1824 Face 1845 2936 2645 9919 Face 1846 8228 3178 10641 Face 1847 492 7186 2832 Face 1848 492 10217 7186 Face 1849 1808 11039 5754 Face 1850 7491 6645 9850 Face 1851 6645 7539 3753 Face 1852 9988 2716 5092 Face 1853 5549 2851 7893 Face 1854 6221 698 5751 Face 1855 5549 7893 6931 Face 1856 8801 1754 7556 Face 1857 6357 2115 7643 Face 1858 3051 7101 7047 Face 1859 7205 7533 10793 Face 1860 6404 9740 1550 Face 1861 2284 2013 9860 Face 1862 4193 10462 7168 Face 1863 9979 5692 10462 Face 1864 3704 2312 8218 Face 1865 5806 10059 8162 Face 1866 2334 234 4239 Face 1867 9582 765 1792 Face 1868 10423 9360 3324 Face 1869 8751 4204 10617 Face 1870 1152 4772 3595 Face 1871 8403 1060 1592 Face 1872 3971 5923 3972 Face 1873 4894 9308 3062 Face 1874 552 10744 10081 Face 1875 9241 6192 5531 Face 1876 8433 242 3864 Face 1877 10666 3732 2319 Face 1878 10666 10845 3732 Face 1879 4701 4053 9653 Face 1880 3137 9422 10145 Face 1881 9096 4807 6125 Face 1882 2037 1529 4243 Face 1883 2704 1860 3733 Face 1884 571 9001 6698 Face 1885 9044 6728 7781 Face 1886 7025 6921 4378 Face 1887 6610 244 4379 Face 1888 8605 1617 8471 Face 1889 1210 4138 5318 Face 1890 964 9499 3508 Face 1891 1825 8973 7295 Face 1892 2392 7265 7431 Face 1893 9841 2374 3579 Face 1894 7899 2905 5112 Face 1895 10537 9075 8128 Face 1896 7432 247 7933 Face 1897 3945 9227 3950 Face 1898 1025 298 8649 Face 1899 9277 1601 4403 Face 1900 9910 1742 621 Face 1901 7595 6319 6321 Face 1902 6490 5928 7289 Face 1903 3957 10138 6490 Face 1904 4289 4506 5396 Face 1905 3862 9055 6003 Face 1906 6762 1512 4727 Face 1907 4854 204 1364 Face 1908 6762 1364 1512 Face 1909 8060 10716 6243 Face 1910 4509 2448 85 Face 1911 2103 3103 6096 Face 1912 3054 1401 2233 Face 1913 4757 2182 4543 Face 1914 1286 6925 2353 Face 1915 10271 6529 10412 Face 1916 9601 7931 248 Face 1917 26 8144 9875 Face 1918 4399 10836 8161 Face 1919 6611 3379 472 Face 1920 9434 7005 7547 Face 1921 3478 6877 9290 Face 1922 2584 10378 8608 Face 1923 7076 1659 7045 Face 1924 1553 2465 5558 Face 1925 2313 9738 796 Face 1926 1329 10852 9523 Face 1927 1060 9997 5356 Face 1928 6807 10491 4663 Face 1929 9062 3783 2412 Face 1930 6100 10242 10733 Face 1931 7115 5846 4016 Face 1932 751 5626 4350 Face 1933 10169 6136 6745 Face 1934 8411 9018 9139 Face 1935 9589 9989 8161 Face 1936 3632 6913 6893 Face 1937 5575 8080 2627 Face 1938 7702 6666 1806 Face 1939 10687 7889 9840 Face 1940 7120 5097 1316 Face 1941 5387 9261 7034 Face 1942 9923 2554 3844 Face 1943 6612 9559 5545 Face 1944 2934 7997 10465 Face 1945 5900 5565 3918 Face 1946 7764 4070 10964 Face 1947 6711 8865 9785 Face 1948 3698 1551 1318 Face 1949 7926 1676 7759 Face 1950 6107 1708 3697 Face 1951 4511 7284 3105 Face 1952 9451 4013 3787 Face 1953 9088 4895 2006 Face 1954 6404 9715 10996 Face 1955 10380 3066 2561 Face 1956 4262 6291 6089 Face 1957 680 3837 253 Face 1958 1466 8290 7063 Face 1959 5277 10719 3839 Face 1960 7934 6123 8421 Face 1961 3547 9500 1614 Face 1962 1959 8205 5210 Face 1963 3769 3000 1524 Face 1964 8098 5478 604 Face 1965 2454 10364 8727 Face 1966 3171 7014 3330 Face 1967 2596 3394 2838 Face 1968 7480 6954 2596 Face 1969 3693 716 4871 Face 1970 8359 4319 6273 Face 1971 9416 3702 6079 Face 1972 8896 5759 4134 Face 1973 9753 1623 11066 Face 1974 7943 7818 3854 Face 1975 6692 7215 10550 Face 1976 155 5820 2219 Face 1977 1753 5742 5120 Face 1978 5352 2599 8079 Face 1979 5352 3334 5650 Face 1980 6466 3217 1805 Face 1981 698 3545 3789 Face 1982 5671 9348 1049 Face 1983 10407 3373 4081 Face 1984 4769 5198 9365 Face 1985 1186 784 9015 Face 1986 2297 3509 3949 Face 1987 11097 7631 6006 Face 1988 5151 3495 537 Face 1989 5151 3482 3495 Face 1990 4086 1121 9322 Face 1991 10775 6141 11112 Face 1992 8517 877 1181 Face 1993 2201 2899 3863 Face 1994 3457 4620 7842 Face 1995 3457 2819 4620 Face 1996 7842 10753 177 Face 1997 2754 10398 6497 Face 1998 7028 4447 4183 Face 1999 6736 258 11008 Face 2000 6736 5392 258 Face 2001 4148 9742 10201 Face 2002 2570 259 7663 Face 2003 9337 6001 3713 Face 2004 3381 9062 2412 Face 2005 3658 6500 3381 Face 2006 8977 8488 260 Face 2007 8011 5452 7542 Face 2008 9342 10093 8546 Face 2009 8956 3152 3011 Face 2010 3532 6286 8921 Face 2011 6286 2950 10242 Face 2012 8051 262 1505 Face 2013 6489 7211 5955 Face 2014 4775 6110 2099 Face 2015 7311 9057 3764 Face 2016 7311 6769 8306 Face 2017 9441 6367 6283 Face 2018 4050 9044 7781 Face 2019 4050 4135 9044 Face 2020 5360 9843 5098 Face 2021 7343 3566 10668 Face 2022 3632 7818 5384 Face 2023 4046 1305 4395 Face 2024 10846 3911 4741 Face 2025 8903 5972 1554 Face 2026 2446 4641 2139 Face 2027 3801 8738 2919 Face 2028 6326 8187 9652 Face 2029 6326 3824 10007 Face 2030 7797 1935 7790 Face 2031 8518 4415 7819 Face 2032 1198 5015 4536 Face 2033 9415 4821 1646 Face 2034 6456 2642 8798 Face 2035 7400 6157 3826 Face 2036 7794 1815 1412 Face 2037 9862 1533 8572 Face 2038 9478 197 9379 Face 2039 6683 3488 1112 Face 2040 4563 10176 11023 Face 2041 4265 8802 8637 Face 2042 4265 5400 6386 Face 2043 8328 7444 977 Face 2044 1869 8146 3300 Face 2045 3343 8159 4838 Face 2046 7862 544 3350 Face 2047 9760 9137 9969 Face 2048 5254 305 10285 Face 2049 6087 6963 6336 Face 2050 2585 2978 3033 Face 2051 5447 4351 1984 Face 2052 6164 8951 4351 Face 2053 6200 10742 4551 Face 2054 4731 7285 268 Face 2055 4948 2394 133 Face 2056 2874 904 2762 Face 2057 6367 7836 6283 Face 2058 9571 1945 2681 Face 2059 5607 683 8804 Face 2060 5050 7060 2000 Face 2061 8561 3352 9444 Face 2062 9693 7536 3967 Face 2063 9032 2089 9808 Face 2064 3947 10942 951 Face 2065 8022 3947 951 Face 2066 70 9008 8137 Face 2067 5122 9700 2648 Face 2068 4654 2275 6198 Face 2069 7565 6012 6583 Face 2070 7565 2720 6012 Face 2071 1321 1209 2800 Face 2072 3457 4442 8086 Face 2073 333 3709 3530 Face 2074 4611 5964 8710 Face 2075 2546 10709 10720 Face 2076 10196 161 2893 Face 2077 3247 8392 10696 Face 2078 2924 10907 5132 Face 2079 1914 458 6106 Face 2080 4264 10595 10925 Face 2081 5897 3297 5812 Face 2082 6121 7987 3229 Face 2083 6376 3743 10252 Face 2084 6376 2502 4395 Face 2085 5360 270 9843 Face 2086 2119 821 7492 Face 2087 7492 2510 10675 Face 2088 4189 8064 3033 Face 2089 7334 9934 4290 Face 2090 153 4903 7062 Face 2091 7062 2469 7780 Face 2092 4559 6337 517 Face 2093 10932 8459 1884 Face 2094 5581 8607 1586 Face 2095 2086 4759 8380 Face 2096 10000 10486 9612 Face 2097 10195 4725 1402 Face 2098 10721 4214 3796 Face 2099 10803 525 1572 Face 2100 3214 8243 890 Face 2101 10803 1572 8866 Face 2102 4993 10435 7473 Face 2103 4601 5806 207 Face 2104 5403 9090 6501 Face 2105 6745 6136 3098 Face 2106 9456 4856 10771 Face 2107 9456 3183 4856 Face 2108 5002 6890 3174 Face 2109 3614 6365 1872 Face 2110 2554 10034 6365 Face 2111 3549 1656 10408 Face 2112 2222 10431 2987 Face 2113 4599 777 2850 Face 2114 6304 6721 6549 Face 2115 10575 3893 5727 Face 2116 8238 6926 7435 Face 2117 9654 8569 8781 Face 2118 5058 4706 9884 Face 2119 274 10422 9884 Face 2120 1273 2942 8569 Face 2121 6870 8227 8410 Face 2122 5171 9588 2058 Face 2123 7397 2939 9851 Face 2124 5996 8965 10559 Face 2125 6442 8639 7914 Face 2126 8639 8114 9822 Face 2127 10187 795 3814 Face 2128 10187 8313 9151 Face 2129 9264 9612 1667 Face 2130 643 7354 1767 Face 2131 7244 5541 643 Face 2132 5798 229 1095 Face 2133 5459 3698 7617 Face 2134 3698 1318 2516 Face 2135 9332 915 2234 Face 2136 9332 2238 915 Face 2137 10592 9701 7726 Face 2138 3651 6790 549 Face 2139 3651 6057 6790 Face 2140 4594 4696 4485 Face 2141 7234 563 279 Face 2142 945 7824 826 Face 2143 9170 6278 5432 Face 2144 8896 4134 3920 Face 2145 10018 4448 2432 Face 2146 876 9329 10393 Face 2147 10018 10393 9329 Face 2148 11078 8707 8303 Face 2149 10027 1197 3647 Face 2150 5292 4368 9863 Face 2151 3192 4557 9207 Face 2152 6812 7015 5193 Face 2153 4106 5381 738 Face 2154 7056 3010 10778 Face 2155 7009 6615 1513 Face 2156 9852 2466 6764 Face 2157 3883 5962 4472 Face 2158 7093 6344 8179 Face 2159 1895 9812 7179 Face 2160 9627 2649 5978 Face 2161 466 1049 5681 Face 2162 3618 4766 5671 Face 2163 10803 622 525 Face 2164 3214 4127 10803 Face 2165 1530 8243 3214 Face 2166 6889 4591 9413 Face 2167 2044 4363 4229 Face 2168 2044 7572 5480 Face 2169 4108 285 7144 Face 2170 4108 948 285 Face 2171 7292 1137 2731 Face 2172 7019 1399 6285 Face 2173 2124 6422 4494 Face 2174 2124 896 1655 Face 2175 10924 10923 8437 Face 2176 10923 2494 1083 Face 2177 5315 7908 10722 Face 2178 2646 1894 8992 Face 2179 10441 4287 6662 Face 2180 4431 3767 6440 Face 2181 6011 10181 4532 Face 2182 1664 1465 9667 Face 2183 2845 9463 8993 Face 2184 2571 1861 8534 Face 2185 3669 9228 7118 Face 2186 7118 4072 1939 Face 2187 1612 5404 6192 Face 2188 6109 9228 4708 Face 2189 235 10244 9783 Face 2190 802 10319 10210 Face 2191 4838 802 8806 Face 2192 670 2059 3710 Face 2193 7413 4320 7634 Face 2194 2269 1940 6484 Face 2195 1478 6774 290 Face 2196 3572 2980 4869 Face 2197 4944 4194 7682 Face 2198 3572 9586 10571 Face 2199 3572 7485 9586 Face 2200 5726 292 8845 Face 2201 10814 8246 6152 Face 2202 7037 10639 3526 Face 2203 10639 9496 293 Face 2204 5399 4848 1729 Face 2205 2958 10365 4848 Face 2206 8737 4793 1283 Face 2207 2150 5935 5126 Face 2208 10987 7022 10331 Face 2209 4009 7112 10504 Face 2210 4960 8406 6686 Face 2211 2223 5417 3627 Face 2212 7892 2733 9544 Face 2213 5752 4676 7919 Face 2214 5752 2336 138 Face 2215 725 8982 3740 Face 2216 3263 6060 6188 Face 2217 6389 4345 10195 Face 2218 1058 1124 8781 Face 2219 2897 829 9597 Face 2220 7059 6515 5508 Face 2221 7059 4373 6515 Face 2222 7805 4388 656 Face 2223 8887 4596 1745 Face 2224 10134 10958 3150 Face 2225 9293 9967 3212 Face 2226 2165 10695 1035 Face 2227 1507 10008 4817 Face 2228 1507 10511 10008 Face 2229 5918 3999 3597 Face 2230 6210 3423 7124 Face 2231 6210 10654 3423 Face 2232 9061 1128 8056 Face 2233 1954 4332 5462 Face 2234 1954 4263 4332 Face 2235 10956 7845 8873 Face 2236 10863 5436 5570 Face 2237 2957 8861 4730 Face 2238 3759 5516 3474 Face 2239 7155 7395 8609 Face 2240 8257 7791 296 Face 2241 972 3539 5274 Face 2242 4116 10735 3539 Face 2243 8948 9356 7881 Face 2244 2088 1149 7826 Face 2245 2157 8875 8580 Face 2246 2157 2141 8875 Face 2247 2790 2168 7293 Face 2248 1920 4785 10278 Face 2249 7740 3435 4185 Face 2250 9825 7200 8662 Face 2251 10640 6731 7087 Face 2252 306 7277 5373 Face 2253 3994 9311 5216 Face 2254 749 465 1961 Face 2255 5567 8649 298 Face 2256 8944 5477 5937 Face 2257 7398 11080 5638 Face 2258 7282 10335 7398 Face 2259 7832 741 362 Face 2260 4782 6817 1560 Face 2261 970 3740 8982 Face 2262 8245 725 3740 Face 2263 9 2463 299 Face 2264 10424 7302 2719 Face 2265 8927 9240 10031 Face 2266 7617 7576 5459 Face 2267 1798 731 3756 Face 2268 412 6530 6726 Face 2269 9830 10936 2397 Face 2270 4920 2397 8516 Face 2271 3446 6278 1271 Face 2272 3357 7760 5672 Face 2273 7706 5062 5655 Face 2274 2675 1912 928 Face 2275 6413 9618 7385 Face 2276 56 4861 1291 Face 2277 518 10617 3574 Face 2278 1407 8513 2761 Face 2279 10635 4209 2863 Face 2280 7838 9957 4652 Face 2281 459 6429 301 Face 2282 10662 1860 6566 Face 2283 7447 488 9224 Face 2284 3744 9432 10496 Face 2285 6713 7975 302 Face 2286 6792 9058 6102 Face 2287 4604 2664 4 Face 2288 654 10592 4604 Face 2289 3395 2162 2325 Face 2290 4271 6288 3395 Face 2291 3034 2162 4953 Face 2292 3197 4036 7949 Face 2293 3197 3231 7156 Face 2294 459 1824 6700 Face 2295 2118 3654 1433 Face 2296 3977 3937 2435 Face 2297 2435 10980 7449 Face 2298 6501 10333 5403 Face 2299 6844 5981 10333 Face 2300 6844 10333 6501 Face 2301 9798 3285 4175 Face 2302 3308 1238 3285 Face 2303 9045 7415 8031 Face 2304 2837 8296 4702 Face 2305 8481 4101 3217 Face 2306 4851 8040 4385 Face 2307 4851 9482 3143 Face 2308 6376 4123 3743 Face 2309 373 8265 3223 Face 2310 7688 3410 970 Face 2311 6433 2738 3410 Face 2312 8334 5563 10306 Face 2313 5563 1944 2587 Face 2314 4250 3415 4125 Face 2315 8419 4981 5925 Face 2316 7931 4025 4444 Face 2317 1971 305 5254 Face 2318 10519 5270 8957 Face 2319 9817 4543 2182 Face 2320 8374 10385 6052 Face 2321 10287 6252 5128 Face 2322 5428 2871 9340 Face 2323 10557 2633 8771 Face 2324 9393 2081 475 Face 2325 10403 1093 4629 Face 2326 2717 119 10816 Face 2327 3719 7277 306 Face 2328 2701 1323 4010 Face 2329 4314 8908 7727 Face 2330 2766 10431 11018 Face 2331 2709 10612 3799 Face 2332 801 2662 9991 Face 2333 801 9505 2662 Face 2334 1253 3456 4640 Face 2335 4164 4655 3456 Face 2336 10652 863 307 Face 2337 8406 10817 3884 Face 2338 2592 8399 1928 Face 2339 2592 831 1949 Face 2340 8933 9326 6774 Face 2341 5837 5613 5679 Face 2342 8918 770 10264 Face 2343 8918 7028 8032 Face 2344 9526 8312 7028 Face 2345 7322 1853 4666 Face 2346 8352 9319 7813 Face 2347 6718 2788 3958 Face 2348 379 10600 9782 Face 2349 522 1284 3305 Face 2350 522 6764 1284 Face 2351 9629 300 5774 Face 2352 9629 2076 309 Face 2353 310 2175 400 Face 2354 3682 3382 7639 Face 2355 4380 7273 3480 Face 2356 2023 7288 7273 Face 2357 2348 7650 6469 Face 2358 8460 1283 814 Face 2359 7981 2617 1913 Face 2360 388 3048 2617 Face 2361 17 6533 6799 Face 2362 2956 833 4289 Face 2363 3291 5307 10023 Face 2364 7954 7571 5303 Face 2365 7386 6119 10499 Face 2366 5750 2525 9268 Face 2367 10705 7525 140 Face 2368 9880 8613 7525 Face 2369 2447 10038 1955 Face 2370 8269 2159 2447 Face 2371 7185 10120 10388 Face 2372 7572 2523 5480 Face 2373 731 1798 8735 Face 2374 9731 3705 1829 Face 2375 4605 9470 4352 Face 2376 1028 5306 9470 Face 2377 6717 3565 8547 Face 2378 9734 2134 3565 Face 2379 10118 5844 4781 Face 2380 1510 10118 10763 Face 2381 2542 9491 7148 Face 2382 7076 2613 2019 Face 2383 119 3856 10816 Face 2384 3909 4074 10477 Face 2385 8648 4355 4074 Face 2386 4074 6372 3158 Face 2387 3917 3110 5249 Face 2388 7153 4319 8359 Face 2389 10102 9538 8937 Face 2390 11061 3803 10642 Face 2391 7217 5196 314 Face 2392 6325 6347 7668 Face 2393 11101 9846 2630 Face 2394 92 8661 6980 Face 2395 92 5447 8661 Face 2396 9854 7924 7709 Face 2397 2444 11042 7924 Face 2398 8560 2797 4599 Face 2399 6848 6737 2611 Face 2400 1159 5515 8745 Face 2401 1457 4073 2172 Face 2402 10085 7391 9131 Face 2403 5351 1161 10777 Face 2404 9621 7951 316 Face 2405 2494 7482 7795 Face 2406 10196 2893 9975 Face 2407 3157 4608 8954 Face 2408 3806 5892 10348 Face 2409 4880 1554 5972 Face 2410 4871 9719 8303 Face 2411 4198 2955 3912 Face 2412 3906 7316 4672 Face 2413 2182 4757 3882 Face 2414 5750 9268 5091 Face 2415 3763 2036 8371 Face 2416 8166 2036 3763 Face 2417 5591 4674 10065 Face 2418 8966 7554 3587 Face 2419 3084 7423 2110 Face 2420 8588 4140 2376 Face 2421 88 8476 7494 Face 2422 1372 5569 2785 Face 2423 9813 5712 4411 Face 2424 591 2913 10374 Face 2425 46 3396 192 Face 2426 3396 2107 7726 Face 2427 10616 8572 341 Face 2428 1350 566 6443 Face 2429 3520 7798 1497 Face 2430 4588 9003 4621 Face 2431 6342 7661 1057 Face 2432 7530 4355 7172 Face 2433 10558 11033 195 Face 2434 49 5860 10558 Face 2435 5220 8981 9085 Face 2436 3499 11019 8981 Face 2437 6140 3168 3490 Face 2438 6140 3056 3168 Face 2439 5434 1555 8208 Face 2440 233 3427 318 Face 2441 3598 5259 879 Face 2442 318 3427 3598 Face 2443 319 318 3598 Face 2444 21 10432 227 Face 2445 3006 1076 8612 Face 2446 8985 10765 2312 Face 2447 5388 9054 2232 Face 2448 5388 1295 5542 Face 2449 9415 2232 9054 Face 2450 8178 4936 5948 Face 2451 2257 6122 5082 Face 2452 4370 11077 5787 Face 2453 8790 10006 7515 Face 2454 6101 7061 3509 Face 2455 627 10440 1732 Face 2456 5571 6601 5947 Face 2457 10860 9688 4673 Face 2458 4312 9518 9688 Face 2459 9784 3487 7685 Face 2460 5659 1235 3508 Face 2461 1553 5558 6684 Face 2462 642 3933 10935 Face 2463 3434 7852 3933 Face 2464 6356 3294 1834 Face 2465 2540 3320 8617 Face 2466 10557 8488 8995 Face 2467 3611 5986 3388 Face 2468 9557 9675 6195 Face 2469 9284 7769 324 Face 2470 712 1860 6153 Face 2471 1332 4062 6609 Face 2472 7111 2372 799 Face 2473 8944 10779 5477 Face 2474 3462 1229 4717 Face 2475 5368 7911 4974 Face 2476 10708 6780 10476 Face 2477 2281 2257 10930 Face 2478 6132 3413 5152 Face 2479 3501 7137 3436 Face 2480 6472 1121 5673 Face 2481 8593 3891 2590 Face 2482 691 1490 9711 Face 2483 691 2460 1490 Face 2484 858 329 4119 Face 2485 858 4315 329 Face 2486 10841 127 8962 Face 2487 3650 10036 9151 Face 2488 1779 1087 2436 Face 2489 7501 7727 6256 Face 2490 5544 9633 7000 Face 2491 6696 3524 5956 Face 2492 6391 10811 9069 Face 2493 10437 131 4931 Face 2494 10069 1858 8305 Face 2495 10183 5208 7218 Face 2496 4923 5384 4103 Face 2497 2406 8517 8763 Face 2498 2867 8763 2741 Face 2499 8557 331 7616 Face 2500 3411 4368 5292 Face 2501 2610 980 756 Face 2502 5313 8217 9648 Face 2503 5313 6616 8217 Face 2504 10318 8109 4098 Face 2505 4060 1424 5435 Face 2506 7183 9161 9508 Face 2507 8154 7417 9161 Face 2508 2179 6526 3553 Face 2509 10356 6456 773 Face 2510 6788 4158 3826 Face 2511 10757 8448 8571 Face 2512 8710 7318 426 Face 2513 1819 9754 8512 Face 2514 9029 10227 8167 Face 2515 8170 2152 5568 Face 2516 7208 2187 3876 Face 2517 6495 2713 2571 Face 2518 4279 1448 1009 Face 2519 5988 8007 2090 Face 2520 3798 8070 4729 Face 2521 5341 1262 11098 Face 2522 7900 4982 1262 Face 2523 5608 6887 5341 Face 2524 7329 8862 10667 Face 2525 7676 7486 2102 Face 2526 10553 6751 5587 Face 2527 336 3877 8812 Face 2528 336 10032 3877 Face 2529 5834 3012 5572 Face 2530 5112 5184 2381 Face 2531 6513 5970 7849 Face 2532 6622 5970 2520 Face 2533 2285 7274 4876 Face 2534 2813 6586 4876 Face 2535 2446 8910 1855 Face 2536 2446 1855 3801 Face 2537 8927 2431 11069 Face 2538 9041 10885 9935 Face 2539 9466 9436 9970 Face 2540 9333 8677 6369 Face 2541 246 2905 10537 Face 2542 2361 1811 10882 Face 2543 8408 5271 9266 Face 2544 8408 4087 5271 Face 2545 9057 7100 7522 Face 2546 2682 5459 2491 Face 2547 134 3046 4316 Face 2548 516 10934 1285 Face 2549 2074 2906 10934 Face 2550 5018 9255 7720 Face 2551 473 7788 339 Face 2552 8791 339 6873 Face 2553 2171 4891 10200 Face 2554 1194 7384 11092 Face 2555 7384 3625 5078 Face 2556 1094 8783 9110 Face 2557 6013 5690 7733 Face 2558 9735 7042 4516 Face 2559 8898 3141 4791 Face 2560 7444 7518 1869 Face 2561 8328 2229 7444 Face 2562 9187 1234 2315 Face 2563 9489 7261 7591 Face 2564 7230 7454 5343 Face 2565 8556 11091 768 Face 2566 3434 175 657 Face 2567 1009 8030 8174 Face 2568 6624 341 2340 Face 2569 6624 6026 6388 Face 2570 6624 7711 6026 Face 2571 9992 10650 2285 Face 2572 342 1208 7274 Face 2573 2232 9008 5468 Face 2574 2232 9415 1646 Face 2575 10977 275 10072 Face 2576 1154 4417 344 Face 2577 7793 3564 5492 Face 2578 8074 10664 1593 Face 2579 2553 345 10133 Face 2580 4720 1871 10510 Face 2581 8683 3769 1524 Face 2582 8683 3303 3769 Face 2583 1855 5950 8683 Face 2584 5399 2958 4848 Face 2585 10107 3232 975 Face 2586 10306 309 1192 Face 2587 3335 1698 7379 Face 2588 4798 6505 574 Face 2589 2861 8223 4567 Face 2590 5667 9793 9417 Face 2591 10097 1344 6127 Face 2592 10982 4097 3712 Face 2593 10982 2640 4097 Face 2594 8876 8310 728 Face 2595 9128 3959 8470 Face 2596 10105 4219 4155 Face 2597 1922 11052 5911 Face 2598 6045 5038 7310 Face 2599 6617 1081 10921 Face 2600 6762 4854 1364 Face 2601 10821 4883 8426 Face 2602 1717 6692 10550 Face 2603 1752 8552 11003 Face 2604 3270 1140 3431 Face 2605 6783 1519 351 Face 2606 2185 6783 4642 Face 2607 6556 4471 6425 Face 2608 8856 9902 1261 Face 2609 3652 2367 5633 Face 2610 3587 4819 830 Face 2611 6463 2435 3937 Face 2612 3652 3779 2367 Face 2613 10789 2311 3779 Face 2614 4644 9945 2043 Face 2615 10828 1188 7270 Face 2616 4061 355 2865 Face 2617 4061 1637 355 Face 2618 10084 4106 738 Face 2619 383 3438 7427 Face 2620 152 511 7597 Face 2621 5025 6230 10255 Face 2622 2336 1109 4346 Face 2623 6598 10406 3231 Face 2624 10981 5512 10406 Face 2625 2008 3579 7025 Face 2626 1943 2296 1901 Face 2627 2610 5248 4899 Face 2628 5697 7512 2787 Face 2629 4883 3021 8426 Face 2630 474 3953 356 Face 2631 5099 9822 8114 Face 2632 9164 9809 3999 Face 2633 10141 4584 9214 Face 2634 7582 9931 11031 Face 2635 9994 6977 6469 Face 2636 4913 2042 3113 Face 2637 7858 1667 10486 Face 2638 9587 9427 7992 Face 2639 8120 3355 2594 Face 2640 6329 10858 3355 Face 2641 9876 4463 7155 Face 2642 2613 7076 7045 Face 2643 3722 9154 53 Face 2644 7106 2749 362 Face 2645 7106 1415 1974 Face 2646 10399 10780 9713 Face 2647 2299 6412 10780 Face 2648 753 3749 10500 Face 2649 3757 2545 1576 Face 2650 1948 5100 11113 Face 2651 7973 1948 9980 Face 2652 1054 4704 1833 Face 2653 2085 8670 4704 Face 2654 903 2471 5365 Face 2655 8826 8358 9893 Face 2656 8826 1785 8358 Face 2657 9181 7117 8976 Face 2658 4745 6213 1142 Face 2659 2086 1884 8459 Face 2660 10549 360 7903 Face 2661 10633 3983 1367 Face 2662 239 6280 2851 Face 2663 1104 9826 9102 Face 2664 3928 2277 1046 Face 2665 5736 2678 4660 Face 2666 1970 361 6660 Face 2667 1132 9185 2333 Face 2668 6342 2986 84 Face 2669 5854 6859 630 Face 2670 5661 2014 1795 Face 2671 3926 2723 7129 Face 2672 10388 5951 4177 Face 2673 6928 1169 4011 Face 2674 9778 7252 7153 Face 2675 8452 3595 9625 Face 2676 7046 9245 56 Face 2677 5371 3738 7164 Face 2678 3914 6753 5261 Face 2679 3741 7291 7406 Face 2680 3741 157 7291 Face 2681 9741 1762 13 Face 2682 9741 6966 475 Face 2683 2346 6832 10967 Face 2684 8724 5698 7119 Face 2685 2169 4736 8018 Face 2686 99 1947 6171 Face 2687 4858 7021 439 Face 2688 1008 2466 9130 Face 2689 9364 967 4679 Face 2690 563 5670 2419 Face 2691 2411 4858 439 Face 2692 9637 2418 4784 Face 2693 2347 7176 10940 Face 2694 10940 1281 5953 Face 2695 5048 7469 9145 Face 2696 4397 4455 287 Face 2697 2136 1260 3731 Face 2698 213 5629 2597 Face 2699 9372 861 7541 Face 2700 10394 9186 7746 Face 2701 6022 8623 5041 Face 2702 7391 2264 8623 Face 2703 8053 1329 9523 Face 2704 2217 6942 2429 Face 2705 3016 7767 6942 Face 2706 3385 2953 7418 Face 2707 6998 7010 6120 Face 2708 1391 1961 7670 Face 2709 8304 9940 7947 Face 2710 8365 10752 5907 Face 2711 9400 1413 882 Face 2712 9398 2930 7841 Face 2713 366 8988 9855 Face 2714 9063 6710 3917 Face 2715 9063 5154 9616 Face 2716 9666 7555 4534 Face 2717 7874 2075 368 Face 2718 4052 10684 4113 Face 2719 3000 7533 7399 Face 2720 7564 5982 10286 Face 2721 10387 10325 3425 Face 2722 7731 3636 10493 Face 2723 8117 369 2888 Face 2724 5394 7307 2288 Face 2725 8732 10431 2766 Face 2726 8732 9254 10431 Face 2727 5981 7578 10333 Face 2728 3618 1049 466 Face 2729 129 1297 6338 Face 2730 8455 2375 1297 Face 2731 1836 6294 8917 Face 2732 10931 372 7553 Face 2733 10931 2437 372 Face 2734 7070 4693 7349 Face 2735 2670 5803 5312 Face 2736 4132 8385 3657 Face 2737 1410 3309 10056 Face 2738 6318 5215 8878 Face 2739 11012 8302 9945 Face 2740 536 7574 5547 Face 2741 5455 4502 7647 Face 2742 6421 6002 5345 Face 2743 9858 6423 5919 Face 2744 6331 4028 7509 Face 2745 5488 7604 1142 Face 2746 6378 5362 4834 Face 2747 5218 10342 8370 Face 2748 8797 5155 10711 Face 2749 660 8026 4144 Face 2750 660 9633 1478 Face 2751 1479 645 651 Face 2752 9086 8688 7330 Face 2753 8987 688 7379 Face 2754 10999 5687 688 Face 2755 10258 3285 6788 Face 2756 4175 3285 10545 Face 2757 718 5203 7815 Face 2758 3994 7337 6179 Face 2759 3994 5216 7337 Face 2760 5494 9118 5864 Face 2761 1924 692 3261 Face 2762 893 10723 692 Face 2763 2420 8243 9928 Face 2764 375 9452 9100 Face 2765 986 376 1234 Face 2766 2344 841 376 Face 2767 6606 377 7134 Face 2768 4331 9554 6837 Face 2769 7686 4761 5574 Face 2770 148 7965 2809 Face 2771 11044 7492 10675 Face 2772 5530 10801 3789 Face 2773 10125 8544 1449 Face 2774 10232 2933 10062 Face 2775 3560 4280 8580 Face 2776 8796 6900 6961 Face 2777 6718 6219 2788 Face 2778 6219 6855 1718 Face 2779 6730 1250 7971 Face 2780 4842 6614 664 Face 2781 6730 11063 8741 Face 2782 7873 5177 3832 Face 2783 9041 8819 2723 Face 2784 9548 10570 9765 Face 2785 9548 4857 10570 Face 2786 29 8809 4593 Face 2787 2751 10826 8809 Face 2788 10605 8981 995 Face 2789 3913 380 8788 Face 2790 7573 5693 7146 Face 2791 382 9348 4338 Face 2792 44 4535 9022 Face 2793 9689 1788 3127 Face 2794 118 5871 4797 Face 2795 4763 9218 1786 Face 2796 4763 1774 9218 Face 2797 8498 7686 5265 Face 2798 132 5260 8272 Face 2799 10273 45 7427 Face 2800 9659 164 3639 Face 2801 5848 334 707 Face 2802 7858 2699 1916 Face 2803 6746 6561 1570 Face 2804 1702 1239 762 Face 2805 1321 1917 8 Face 2806 8832 4336 7895 Face 2807 10996 1207 4336 Face 2808 7626 10016 9103 Face 2809 9943 8908 385 Face 2810 9943 7231 7132 Face 2811 852 1810 163 Face 2812 5793 6156 9649 Face 2813 6846 386 499 Face 2814 5932 2838 386 Face 2815 1875 5868 6444 Face 2816 7985 8707 11078 Face 2817 10827 4370 5787 Face 2818 467 5257 387 Face 2819 467 10442 10731 Face 2820 999 10043 10929 Face 2821 5326 9213 9936 Face 2822 21 10533 10432 Face 2823 9990 5006 388 Face 2824 6483 4997 2029 Face 2825 9684 7983 7468 Face 2826 10655 389 4190 Face 2827 9084 8941 4522 Face 2828 9609 1358 3951 Face 2829 2556 4360 5988 Face 2830 7402 3395 6288 Face 2831 11037 6989 7671 Face 2832 3328 882 1413 Face 2833 11006 4266 8580 Face 2834 8069 2515 1290 Face 2835 8069 2518 8743 Face 2836 7502 10296 9730 Face 2837 9279 10928 6046 Face 2838 9536 4756 2164 Face 2839 6813 8662 8723 Face 2840 6813 2836 8662 Face 2841 9525 11002 7539 Face 2842 3267 2482 1858 Face 2843 1975 9889 3399 Face 2844 1619 8287 11086 Face 2845 8287 1503 1750 Face 2846 945 5802 744 Face 2847 2824 5802 10097 Face 2848 2824 945 744 Face 2849 938 8503 4738 Face 2850 10382 2339 1828 Face 2851 10382 9148 2339 Face 2852 1112 7026 2144 Face 2853 6124 5661 6859 Face 2854 1407 2761 75 Face 2855 3122 1548 1293 Face 2856 10111 7677 1470 Face 2857 3602 1013 7677 Face 2858 1696 364 6171 Face 2859 8262 4428 2395 Face 2860 3731 390 2136 Face 2861 5597 8496 11075 Face 2862 1786 4213 4763 Face 2863 6937 8276 2921 Face 2864 3688 3476 1328 Face 2865 10117 195 11033 Face 2866 5523 8140 10368 Face 2867 11073 1566 10135 Face 2868 187 9847 1136 Face 2869 5586 3030 4768 Face 2870 8969 6003 9055 Face 2871 4296 5966 3636 Face 2872 9055 4296 8969 Face 2873 10646 696 3714 Face 2874 6038 4153 4078 Face 2875 1381 3665 3712 Face 2876 4099 9893 8491 Face 2877 1308 3992 1781 Face 2878 3992 9873 8186 Face 2879 8213 10676 6415 Face 2880 10989 10553 9396 Face 2881 10691 5491 1751 Face 2882 11040 4964 9387 Face 2883 10617 10247 8751 Face 2884 10497 726 6214 Face 2885 5693 6142 7146 Face 2886 4021 10254 9602 Face 2887 8890 10768 1574 Face 2888 7135 5033 10249 Face 2889 4292 11003 391 Face 2890 3114 10958 10509 Face 2891 3114 10915 10958 Face 2892 4138 1210 10761 Face 2893 10316 7681 3130 Face 2894 920 4084 6361 Face 2895 9103 10016 8127 Face 2896 7939 7347 1303 Face 2897 7939 9169 7347 Face 2898 2254 2433 10479 Face 2899 8402 7797 4006 Face 2900 8402 1724 7797 Face 2901 10821 10441 4883 Face 2902 4326 9347 8354 Face 2903 427 9690 1390 Face 2904 6810 4207 3875 Face 2905 9303 9864 8697 Face 2906 1045 2669 10207 Face 2907 8500 5432 6278 Face 2908 1431 3471 5239 Face 2909 2751 8770 7018 Face 2910 5241 10678 6270 Face 2911 7403 10963 4515 Face 2912 7403 7650 10963 Face 2913 10811 2670 5777 Face 2914 10652 2495 2496 Face 2915 2918 4835 4251 Face 2916 11073 10135 6690 Face 2917 7429 415 7452 Face 2918 1400 9866 7669 Face 2919 1400 5158 9866 Face 2920 5005 3907 6424 Face 2921 9786 1694 6712 Face 2922 7220 5064 10888 Face 2923 6147 7090 5722 Face 2924 1351 10865 1783 Face 2925 5986 396 10265 Face 2926 5986 5510 396 Face 2927 145 6993 7481 Face 2928 145 10296 6993 Face 2929 6993 10296 7502 Face 2930 4929 6509 9344 Face 2931 4309 4409 2216 Face 2932 2379 2939 7397 Face 2933 1197 101 2379 Face 2934 5775 398 7439 Face 2935 2658 10618 8718 Face 2936 8371 3083 8319 Face 2937 10959 5319 1301 Face 2938 3261 2856 2855 Face 2939 1338 6676 1574 Face 2940 4186 7714 3894 Face 2941 10029 10879 2816 Face 2942 399 3470 3245 Face 2943 2272 7087 6070 Face 2944 9604 9879 8275 Face 2945 1384 5763 10235 Face 2946 7960 310 401 Face 2947 7326 8112 5688 Face 2948 2083 10626 2430 Face 2949 35 8018 5862 Face 2950 4617 7906 9299 Face 2951 5299 1809 3554 Face 2952 4617 9299 7306 Face 2953 3001 11083 9087 Face 2954 6754 6349 2887 Face 2955 5776 3805 1385 Face 2956 321 9725 8176 Face 2957 7004 9042 8699 Face 2958 8091 2004 6398 Face 2959 7374 3111 7898 Face 2960 1501 47 2051 Face 2961 5605 6348 8762 Face 2962 9328 8577 10832 Face 2963 9328 1443 8577 Face 2964 1030 6709 3995 Face 2965 1030 8320 8611 Face 2966 2024 7708 3135 Face 2967 1095 10740 2030 Face 2968 1196 10740 5825 Face 2969 2149 5204 3983 Face 2970 4509 4218 1927 Face 2971 3900 9142 1468 Face 2972 9691 2325 4542 Face 2973 8502 8686 8705 Face 2974 8502 5337 8686 Face 2975 10891 5721 10729 Face 2976 10891 3674 5721 Face 2977 2628 5735 10314 Face 2978 5735 4331 4761 Face 2979 6543 11062 2309 Face 2980 7159 5642 7040 Face 2981 8029 4993 10291 Face 2982 4984 5214 7593 Face 2983 6992 4728 1031 Face 2984 8924 2350 10159 Face 2985 8924 4758 4940 Face 2986 8924 9489 4758 Face 2987 5 9109 5282 Face 2988 5 10068 7633 Face 2989 5210 2218 9363 Face 2990 8795 1843 11082 Face 2991 757 6359 8766 Face 2992 4647 3590 8935 Face 2993 2663 10908 3824 Face 2994 1226 8240 10728 Face 2995 7264 8505 1627 Face 2996 6309 2392 9607 Face 2997 7025 4504 10623 Face 2998 4554 10996 4336 Face 2999 9876 3759 4300 Face 3000 3001 1488 406 Face 3001 8838 3929 281 Face 3002 3177 5147 409 Face 3003 4807 10601 5633 Face 3004 1462 8099 9877 Face 3005 2428 2092 10473 Face 3006 5495 9316 9578 Face 3007 2534 5552 9498 Face 3008 9683 6726 5363 Face 3009 9683 2335 412 Face 3010 1175 10710 8379 Face 3011 7135 6316 4723 Face 3012 6674 6653 6076 Face 3013 6674 1676 10220 Face 3014 239 10933 10192 Face 3015 10784 2622 7774 Face 3016 3868 6610 4379 Face 3017 3868 8593 6610 Face 3018 6471 9908 3989 Face 3019 9121 413 1591 Face 3020 9121 10997 413 Face 3021 445 2715 5286 Face 3022 10186 9497 583 Face 3023 2869 414 10088 Face 3024 2869 8142 414 Face 3025 958 1970 5728 Face 3026 904 2874 7698 Face 3027 4700 8799 3935 Face 3028 10701 7401 8799 Face 3029 5105 20 8157 Face 3030 5293 9108 5509 Face 3031 5486 8545 3333 Face 3032 5486 8784 8545 Face 3033 4169 6915 10347 Face 3034 9276 7165 6043 Face 3035 1880 10725 2975 Face 3036 1880 6177 10725 Face 3037 6406 2429 6972 Face 3038 6406 2217 2429 Face 3039 8785 6485 4454 Face 3040 8262 7024 4428 Face 3041 4734 6840 914 Face 3042 9123 8040 3372 Face 3043 10631 5760 10965 Face 3044 4418 10631 6702 Face 3045 4418 4514 4539 Face 3046 4919 8642 9888 Face 3047 11075 390 8642 Face 3048 7649 9931 654 Face 3049 3014 253 3364 Face 3050 7495 7549 5367 Face 3051 1835 581 5910 Face 3052 45 3584 383 Face 3053 9988 943 5751 Face 3054 1885 217 6395 Face 3055 1695 3749 3599 Face 3056 9188 9192 6951 Face 3057 9730 6730 2706 Face 3058 162 3832 6730 Face 3059 936 4922 5699 Face 3060 1400 10747 5158 Face 3061 1360 8787 4321 Face 3062 9810 941 2307 Face 3063 2114 8246 10814 Face 3064 6697 3009 5646 Face 3065 1043 2204 3260 Face 3066 3935 9762 10056 Face 3067 5430 2352 3879 Face 3068 5430 3064 10637 Face 3069 9168 9402 727 Face 3070 5651 6090 9402 Face 3071 8748 1942 3537 Face 3072 3605 1448 6673 Face 3073 10084 8174 8030 Face 3074 8116 6324 471 Face 3075 8116 3910 10470 Face 3076 3132 418 7389 Face 3077 8933 5660 8930 Face 3078 693 6850 8327 Face 3079 693 7832 3752 Face 3080 2791 7697 1096 Face 3081 4493 6170 9596 Face 3082 6683 2391 3488 Face 3083 6683 4353 2391 Face 3084 8402 2380 1724 Face 3085 10631 4539 10712 Face 3086 1353 10713 7449 Face 3087 9827 4692 5108 Face 3088 4692 10713 1353 Face 3089 2847 5303 7571 Face 3090 6929 6229 4343 Face 3091 15 3782 171 Face 3092 15 9344 3782 Face 3093 7610 4440 6031 Face 3094 10338 9995 8028 Face 3095 4619 2267 4422 Face 3096 5323 4915 5624 Face 3097 6015 6504 1994 Face 3098 6015 2378 6504 Face 3099 80 6015 5604 Face 3100 9339 2378 6015 Face 3101 3092 10663 104 Face 3102 3092 3390 10663 Face 3103 7461 5865 4388 Face 3104 9148 3321 2339 Face 3105 3880 2151 3322 Face 3106 8294 419 4454 Face 3107 7271 5687 6451 Face 3108 132 1324 7416 Face 3109 132 8272 1324 Face 3110 8915 8121 5415 Face 3111 9129 7529 11001 Face 3112 9723 7959 10164 Face 3113 4372 10426 7776 Face 3114 1928 3248 2592 Face 3115 10574 5906 1599 Face 3116 3248 1928 5906 Face 3117 9444 3352 6498 Face 3118 10558 195 10960 Face 3119 2050 7138 3397 Face 3120 8397 7316 3906 Face 3121 8059 4237 7580 Face 3122 10104 5348 5766 Face 3123 8051 7139 3940 Face 3124 10073 2713 7476 Face 3125 9247 423 5149 Face 3126 6059 7333 9203 Face 3127 1742 2889 3146 Face 3128 8191 7408 3289 Face 3129 10745 7837 4652 Face 3130 425 4868 7957 Face 3131 425 4406 10188 Face 3132 6613 3808 5703 Face 3133 8927 1568 1771 Face 3134 9805 3443 5781 Face 3135 7345 9805 10498 Face 3136 7345 3443 9805 Face 3137 2605 4663 5954 Face 3138 4637 3772 7922 Face 3139 2003 10156 8193 Face 3140 3186 8005 3236 Face 3141 10984 6031 4440 Face 3142 10984 6139 6031 Face 3143 2659 7952 3295 Face 3144 9956 3114 8530 Face 3145 8478 2241 5689 Face 3146 8691 7949 3164 Face 3147 8691 2343 7949 Face 3148 10393 9690 427 Face 3149 1344 5802 8082 Face 3150 1572 7287 8866 Face 3151 1572 7523 7287 Face 3152 9149 1307 10295 Face 3153 295 8313 10187 Face 3154 7638 5263 2967 Face 3155 13 4471 6556 Face 3156 1196 9479 10740 Face 3157 1878 7836 6367 Face 3158 1878 8730 7836 Face 3159 4925 6435 10586 Face 3160 9306 5533 2384 Face 3161 9306 6263 5533 Face 3162 1607 10444 4750 Face 3163 11108 737 6831 Face 3164 9740 2969 909 Face 3165 4198 3170 5771 Face 3166 7104 5153 1032 Face 3167 8315 10230 6860 Face 3168 8550 6444 5868 Face 3169 1417 6077 4874 Face 3170 6429 7918 4425 Face 3171 7567 9217 8972 Face 3172 3002 5383 9028 Face 3173 6559 740 10709 Face 3174 9070 10720 740 Face 3175 6397 6559 6104 Face 3176 6397 740 6559 Face 3177 9070 740 6397 Face 3178 7958 9439 4873 Face 3179 2255 8909 2524 Face 3180 2580 7480 2596 Face 3181 2580 9190 7480 Face 3182 5464 6548 7201 Face 3183 3577 9405 4609 Face 3184 6991 6885 4495 Face 3185 2968 1795 6885 Face 3186 2368 1716 5949 Face 3187 448 254 1920 Face 3188 10252 2545 4032 Face 3189 10252 3743 2545 Face 3190 1823 3095 2431 Face 3191 7488 7600 1602 Face 3192 4030 1176 1053 Face 3193 5351 9621 316 Face 3194 8203 1441 10372 Face 3195 2121 1487 3969 Face 3196 8410 8227 2531 Face 3197 26 2803 7400 Face 3198 5169 2756 5761 Face 3199 4838 235 1199 Face 3200 4838 8806 235 Face 3201 7220 432 4572 Face 3202 9074 7176 5064 Face 3203 10597 5850 11039 Face 3204 10726 2923 6791 Face 3205 9098 6377 3970 Face 3206 8597 10005 3629 Face 3207 8597 1801 10005 Face 3208 9572 10253 3610 Face 3209 5727 3893 3610 Face 3210 7156 5335 4036 Face 3211 7620 6218 7117 Face 3212 3675 1132 5649 Face 3213 6419 10866 5903 Face 3214 4533 7362 9025 Face 3215 9624 1685 6690 Face 3216 7997 5086 10465 Face 3217 7997 7809 5086 Face 3218 10839 5998 6560 Face 3219 8978 10706 10344 Face 3220 10534 8297 5121 Face 3221 8297 2318 3024 Face 3222 8978 1090 2318 Face 3223 3219 8871 10937 Face 3224 4795 5634 1500 Face 3225 4795 1500 2279 Face 3226 4211 10054 6944 Face 3227 9676 4664 7887 Face 3228 1680 7739 6991 Face 3229 10445 1707 2791 Face 3230 1624 5918 3597 Face 3231 9114 822 213 Face 3232 1394 2443 6496 Face 3233 2215 9532 5002 Face 3234 8454 10223 10303 Face 3235 6567 8454 10303 Face 3236 6567 7998 9550 Face 3237 7700 1421 2529 Face 3238 5751 5946 10913 Face 3239 5751 943 5953 Face 3240 7094 2857 6334 Face 3241 9608 10222 9891 Face 3242 9608 9910 10222 Face 3243 7241 4636 3871 Face 3244 7744 10326 10455 Face 3245 3031 839 5919 Face 3246 4927 439 7021 Face 3247 10602 5501 2871 Face 3248 10602 10157 5501 Face 3249 6980 2000 2023 Face 3250 7467 10602 10287 Face 3251 7824 3710 826 Face 3252 11017 2916 3356 Face 3253 1437 5565 10697 Face 3254 9540 5008 1187 Face 3255 604 4988 10339 Face 3256 9058 2732 6102 Face 3257 4950 5812 2732 Face 3258 7756 2045 9374 Face 3259 2120 441 5789 Face 3260 2120 5593 441 Face 3261 10176 5822 9316 Face 3262 2250 6899 3521 Face 3263 2875 8337 210 Face 3264 10000 7187 10486 Face 3265 10000 9655 7187 Face 3266 3245 5529 399 Face 3267 1701 7056 10778 Face 3268 857 6294 8985 Face 3269 10231 6097 2202 Face 3270 4872 1498 3716 Face 3271 10160 5079 10361 Face 3272 7491 442 2298 Face 3273 7811 5487 3343 Face 3274 10069 4806 1858 Face 3275 10070 7766 10359 Face 3276 2506 1533 9862 Face 3277 10110 9583 3451 Face 3278 2079 6430 10582 Face 3279 9818 2358 5287 Face 3280 9818 1892 8387 Face 3281 8768 3850 1473 Face 3282 8768 8105 736 Face 3283 5921 7381 90 Face 3284 6033 4186 7381 Face 3285 4908 10397 3261 Face 3286 5532 9047 4459 Face 3287 5532 6574 9047 Face 3288 3109 2850 2242 Face 3289 3109 4599 2850 Face 3290 5919 6423 3756 Face 3291 9514 443 8514 Face 3292 178 1710 9447 Face 3293 178 2414 1710 Face 3294 1363 6056 6299 Face 3295 7654 5301 7290 Face 3296 7654 2294 5301 Face 3297 1972 6473 8118 Face 3298 1972 2673 6473 Face 3299 6524 9875 8144 Face 3300 8445 6528 3827 Face 3301 7392 8359 8445 Face 3302 5327 3310 6864 Face 3303 10495 3744 10496 Face 3304 10495 2973 1419 Face 3305 7421 5513 10743 Face 3306 5460 753 10022 Face 3307 3225 9353 8629 Face 3308 10833 10832 9353 Face 3309 10141 6789 10855 Face 3310 7528 6119 7387 Face 3311 4102 6279 5863 Face 3312 935 9475 1817 Face 3313 6382 6379 7308 Face 3314 1197 10027 6379 Face 3315 5813 274 5556 Face 3316 4116 8623 10735 Face 3317 4116 5041 8623 Face 3318 160 8820 10096 Face 3319 1802 7747 3964 Face 3320 1113 5447 1984 Face 3321 4453 1825 7295 Face 3322 785 9559 6612 Face 3323 6793 9184 9560 Face 3324 37 6342 1057 Face 3325 510 10324 4708 Face 3326 4870 9703 4171 Face 3327 8467 1466 448 Face 3328 464 8923 1851 Face 3329 3954 449 2521 Face 3330 1807 55 449 Face 3331 9713 8420 10399 Face 3332 10597 11081 10130 Face 3333 10597 8219 7961 Face 3334 8355 10334 4776 Face 3335 6159 200 10334 Face 3336 9798 3308 3285 Face 3337 5416 4674 5591 Face 3338 5965 2825 1888 Face 3339 8557 3411 331 Face 3340 3536 10154 8253 Face 3341 10526 8922 9319 Face 3342 7497 10125 1449 Face 3343 7497 2145 10125 Face 3344 2172 5636 6940 Face 3345 9119 7781 5187 Face 3346 2851 451 239 Face 3347 5382 11047 451 Face 3348 10057 6153 325 Face 3349 10887 3448 4600 Face 3350 3881 3626 8148 Face 3351 8097 6865 7505 Face 3352 5046 8097 7505 Face 3353 4414 1814 9464 Face 3354 6930 7955 3201 Face 3355 7468 9727 10920 Face 3356 6021 4073 1457 Face 3357 10252 2502 6376 Face 3358 10252 4032 2502 Face 3359 7987 10041 2502 Face 3360 2830 3319 6833 Face 3361 1412 4389 9133 Face 3362 5325 9093 10466 Face 3363 6110 3609 2099 Face 3364 6110 5055 6064 Face 3365 4832 10229 3686 Face 3366 6242 6143 10229 Face 3367 6355 453 7607 Face 3368 3602 7677 10111 Face 3369 1368 2473 3100 Face 3370 3409 2551 9378 Face 3371 6602 5487 7811 Face 3372 10513 9894 1188 Face 3373 786 455 10523 Face 3374 786 9457 455 Face 3375 4508 9056 723 Face 3376 4508 8097 5046 Face 3377 10615 4974 1156 Face 3378 1061 3967 515 Face 3379 10035 3967 1061 Face 3380 6717 2134 9734 Face 3381 5686 3051 7500 Face 3382 1831 5135 3148 Face 3383 1831 7456 5135 Face 3384 3349 2723 8819 Face 3385 7391 3244 1605 Face 3386 1004 2781 7122 Face 3387 6782 10110 1671 Face 3388 9356 8948 7339 Face 3389 4835 1872 6365 Face 3390 9261 3844 8138 Face 3391 9261 5387 3844 Face 3392 10925 1914 4264 Face 3393 10925 10674 1914 Face 3394 8015 7584 2974 Face 3395 459 7918 6429 Face 3396 5055 10365 10792 Face 3397 3198 5784 10365 Face 3398 3192 9207 460 Face 3399 3035 9599 3527 Face 3400 8694 8071 3067 Face 3401 4188 6773 2994 Face 3402 6774 7450 290 Face 3403 8828 5144 9647 Face 3404 1753 1254 5191 Face 3405 8842 4851 3143 Face 3406 6950 2368 2526 Face 3407 7556 3888 8801 Face 3408 68 4974 7911 Face 3409 68 1156 4974 Face 3410 9886 3677 531 Face 3411 6241 2670 5683 Face 3412 4477 10769 10112 Face 3413 1989 9556 8429 Face 3414 4741 9439 1848 Face 3415 2769 10593 8659 Face 3416 2769 3736 4302 Face 3417 6298 4513 3077 Face 3418 6298 1847 4513 Face 3419 9399 1348 4513 Face 3420 9419 4702 1954 Face 3421 4096 6587 9542 Face 3422 1912 1683 3841 Face 3423 5221 1577 463 Face 3424 3118 2536 4337 Face 3425 2536 10107 5656 Face 3426 8142 9272 2391 Face 3427 8142 9468 9272 Face 3428 8251 3552 10872 Face 3429 4466 5997 8329 Face 3430 6816 614 2594 Face 3431 8536 1234 407 Face 3432 2344 376 986 Face 3433 5312 4237 1027 Face 3434 5312 6584 4237 Face 3435 2609 5813 464 Face 3436 2906 8786 274 Face 3437 1146 6675 7670 Face 3438 10226 6317 466 Face 3439 7119 6051 8724 Face 3440 10226 466 6051 Face 3441 7263 466 6317 Face 3442 327 2653 10239 Face 3443 1296 7538 2947 Face 3444 1296 10001 7538 Face 3445 4200 4878 4770 Face 3446 5704 2027 5852 Face 3447 5745 7908 5315 Face 3448 555 5931 2033 Face 3449 7325 1901 5857 Face 3450 7325 1943 1901 Face 3451 468 2099 3609 Face 3452 8266 2800 2801 Face 3453 8814 6074 9391 Face 3454 8814 5973 2877 Face 3455 7547 6588 9434 Face 3456 7547 655 6588 Face 3457 182 949 6714 Face 3458 3729 8942 6478 Face 3459 9268 2525 1335 Face 3460 10650 7204 7276 Face 3461 7401 1751 9678 Face 3462 7401 2231 8093 Face 3463 7163 5571 5475 Face 3464 10338 1404 1499 Face 3465 10986 7891 471 Face 3466 6084 3096 1857 Face 3467 5396 111 2774 Face 3468 5772 3374 2961 Face 3469 6672 854 2674 Face 3470 2053 8701 3058 Face 3471 5551 2148 6779 Face 3472 7079 1447 3379 Face 3473 7079 3778 1128 Face 3474 10807 655 10020 Face 3475 10696 2652 3247 Face 3476 9488 1259 2652 Face 3477 9775 7103 6272 Face 3478 10018 6580 9690 Face 3479 10018 2432 6580 Face 3480 62 2858 6875 Face 3481 4883 750 474 Face 3482 6967 4367 6453 Face 3483 5717 787 2253 Face 3484 9160 5539 10024 Face 3485 4690 5069 1711 Face 3486 8897 7321 9380 Face 3487 6622 4735 10599 Face 3488 8447 2270 4735 Face 3489 8520 2229 4037 Face 3490 3072 10371 1067 Face 3491 3020 3004 7202 Face 3492 3020 4284 5017 Face 3493 11049 477 2675 Face 3494 7482 2546 7795 Face 3495 8564 1059 6333 Face 3496 8564 200 1059 Face 3497 1520 10353 1274 Face 3498 9588 478 5959 Face 3499 9588 5171 478 Face 3500 8934 4777 7766 Face 3501 3834 1006 8090 Face 3502 10670 3834 8090 Face 3503 10670 10484 3968 Face 3504 3731 8642 390 Face 3505 8374 10703 2467 Face 3506 3671 1716 3735 Face 3507 6601 4107 5947 Face 3508 7993 4721 6236 Face 3509 6445 2249 4334 Face 3510 4608 4607 8954 Face 3511 6445 4334 4607 Face 3512 4159 5342 2854 Face 3513 6474 8562 5342 Face 3514 2962 9060 1561 Face 3515 209 479 10764 Face 3516 209 4928 7540 Face 3517 5017 4284 1012 Face 3518 263 5557 1180 Face 3519 926 10294 4837 Face 3520 7115 9704 509 Face 3521 7073 4770 4109 Face 3522 4393 3818 7446 Face 3523 3148 5135 7169 Face 3524 6867 4260 3852 Face 3525 6867 9312 4260 Face 3526 2427 1077 4569 Face 3527 9314 8195 9976 Face 3528 5925 7611 4644 Face 3529 3305 1437 10697 Face 3530 2032 8422 8024 Face 3531 682 6238 8078 Face 3532 5226 2959 703 Face 3533 10947 7350 2328 Face 3534 2715 9823 5518 Face 3535 9172 481 870 Face 3536 9172 6336 3076 Face 3537 10581 4414 1377 Face 3538 9930 4323 8129 Face 3539 4921 10262 874 Face 3540 5740 6128 397 Face 3541 4070 4908 8487 Face 3542 8855 6619 9158 Face 3543 8855 6084 6619 Face 3544 8390 7545 1145 Face 3545 4293 5450 482 Face 3546 4293 429 5450 Face 3547 11005 7576 7617 Face 3548 6010 10700 10241 Face 3549 6010 3028 10853 Face 3550 9882 281 2748 Face 3551 8216 483 3885 Face 3552 5113 4891 9180 Face 3553 6115 3065 783 Face 3554 4000 7378 10713 Face 3555 2408 4511 7378 Face 3556 6333 484 8564 Face 3557 1003 9315 6358 Face 3558 790 9531 3561 Face 3559 6881 7673 7245 Face 3560 7588 6881 8484 Face 3561 7588 4779 6881 Face 3562 6191 1996 9555 Face 3563 1165 3218 7393 Face 3564 9002 7598 486 Face 3565 9708 7579 3244 Face 3566 9406 10788 8526 Face 3567 1835 4523 581 Face 3568 6759 1627 8505 Face 3569 1992 10738 1627 Face 3570 7336 2837 4126 Face 3571 47 4309 1334 Face 3572 5415 10410 8915 Face 3573 2433 2254 6748 Face 3574 10264 5094 3857 Face 3575 7854 6671 3226 Face 3576 65 7013 1581 Face 3577 7566 2891 7733 Face 3578 10226 6051 7119 Face 3579 2084 7116 11084 Face 3580 10411 9017 2564 Face 3581 4536 9639 4416 Face 3582 872 955 8924 Face 3583 955 2427 3846 Face 3584 173 5685 6816 Face 3585 9044 1525 3393 Face 3586 2996 5095 2997 Face 3587 9336 10952 10679 Face 3588 489 7969 2376 Face 3589 1444 5137 10944 Face 3590 1444 5065 5137 Face 3591 9815 5786 6126 Face 3592 7356 10038 4905 Face 3593 9074 3138 5707 Face 3594 7220 9917 3138 Face 3595 1369 3110 5645 Face 3596 1324 1741 1740 Face 3597 10828 3005 1193 Face 3598 10828 3240 3005 Face 3599 3005 5472 3269 Face 3600 7171 9067 7470 Face 3601 6486 10812 6734 Face 3602 5219 6734 10530 Face 3603 5116 10400 1122 Face 3604 5116 218 10400 Face 3605 95 4404 6853 Face 3606 10199 6057 95 Face 3607 10941 3633 8350 Face 3608 3559 8906 6965 Face 3609 5293 5163 4958 Face 3610 819 9564 3300 Face 3611 1837 6961 8946 Face 3612 9550 8454 6567 Face 3613 7581 10223 8454 Face 3614 6727 7978 8264 Face 3615 10935 491 8375 Face 3616 3087 4245 5234 Face 3617 2617 10521 1125 Face 3618 492 10142 10217 Face 3619 9640 10471 492 Face 3620 2060 8946 6961 Face 3621 1948 7973 2700 Face 3622 9680 4590 11006 Face 3623 5399 9460 2958 Face 3624 9629 8415 3086 Face 3625 9273 10810 1564 Face 3626 2868 3580 2144 Face 3627 884 4381 10609 Face 3628 2917 3205 7448 Face 3629 3706 7860 2125 Face 3630 7369 9679 7864 Face 3631 278 8021 6818 Face 3632 10545 10258 6085 Face 3633 10545 3285 10258 Face 3634 6396 6410 10482 Face 3635 4372 7743 10494 Face 3636 4588 7363 10613 Face 3637 10438 470 5770 Face 3638 10772 3723 10032 Face 3639 1340 11045 7592 Face 3640 7761 11099 3228 Face 3641 3136 7109 4253 Face 3642 3136 183 7109 Face 3643 8376 5493 9686 Face 3644 4335 11095 8458 Face 3645 4335 10360 11095 Face 3646 34 1571 10443 Face 3647 5695 7722 3393 Face 3648 4662 5562 7722 Face 3649 1036 9610 2098 Face 3650 3389 7420 4166 Face 3651 3389 5229 7420 Face 3652 4697 6185 8827 Face 3653 8041 2309 5603 Face 3654 10858 9603 10968 Face 3655 10056 2897 1058 Face 3656 10056 3309 497 Face 3657 7451 5742 3402 Face 3658 10086 7055 2485 Face 3659 10086 7641 1002 Face 3660 4763 2566 1774 Face 3661 3527 499 4564 Face 3662 4541 3678 6765 Face 3663 6865 6217 7618 Face 3664 5456 9255 5018 Face 3665 5456 7692 9255 Face 3666 6578 5053 6266 Face 3667 8033 10578 4233 Face 3668 3066 5162 10578 Face 3669 8033 4710 10578 Face 3670 845 3638 7238 Face 3671 7569 2806 3316 Face 3672 6055 3459 2246 Face 3673 9248 3701 1465 Face 3674 500 392 6190 Face 3675 9248 9028 9895 Face 3676 500 7453 5439 Face 3677 5564 10812 9973 Face 3678 5564 6734 10812 Face 3679 1327 3965 501 Face 3680 2239 9050 4178 Face 3681 3615 4824 2018 Face 3682 3624 4439 7541 Face 3683 547 2486 6517 Face 3684 9977 166 5114 Face 3685 5679 9739 9870 Face 3686 10288 2073 8063 Face 3687 5679 10288 8063 Face 3688 5679 5613 10288 Face 3689 6222 6119 1040 Face 3690 10082 11109 7562 Face 3691 3129 4149 4609 Face 3692 3129 715 4149 Face 3693 5795 10653 2556 Face 3694 187 1136 3015 Face 3695 4389 1898 2622 Face 3696 10304 7548 502 Face 3697 633 4261 8165 Face 3698 9832 7072 7272 Face 3699 9100 3277 9424 Face 3700 9728 238 3277 Face 3701 3957 7224 10138 Face 3702 7451 1061 5742 Face 3703 532 5290 503 Face 3704 4253 5506 7053 Face 3705 10506 3077 10456 Face 3706 7624 9703 6473 Face 3707 8139 4171 9703 Face 3708 1690 4945 9040 Face 3709 4658 10034 2554 Face 3710 8677 3179 5320 Face 3711 8635 3280 5877 Face 3712 6014 7032 4309 Face 3713 2745 10654 6028 Face 3714 5969 10893 10654 Face 3715 2311 3587 7554 Face 3716 10387 7731 10493 Face 3717 6602 5547 6323 Face 3718 9604 3367 9879 Face 3719 8236 2806 7569 Face 3720 6939 1301 9924 Face 3721 7713 4167 7602 Face 3722 11084 10517 4497 Face 3723 6578 6724 2955 Face 3724 6578 1937 6724 Face 3725 2378 3408 7953 Face 3726 8433 9779 6511 Face 3727 8405 7723 8603 Face 3728 11106 4729 9773 Face 3729 3798 7880 6556 Face 3730 11106 9773 4360 Face 3731 1262 8054 11098 Face 3732 961 6663 10647 Face 3733 3179 2748 281 Face 3734 7048 7687 5739 Face 3735 10144 10593 1567 Face 3736 7020 2530 7607 Face 3737 930 3761 1558 Face 3738 6301 4434 1893 Face 3739 9257 10779 4434 Face 3740 6301 2722 1613 Face 3741 5960 6187 9298 Face 3742 4020 505 8861 Face 3743 2688 10067 1672 Face 3744 8390 7255 2048 Face 3745 6888 3779 3652 Face 3746 4132 8585 9371 Face 3747 7037 3739 10639 Face 3748 4737 5365 2471 Face 3749 5020 7121 3739 Face 3750 5138 3666 5873 Face 3751 5609 7278 4789 Face 3752 5609 7083 7278 Face 3753 3501 507 5968 Face 3754 3501 6132 507 Face 3755 879 318 319 Face 3756 5905 508 9158 Face 3757 6 7517 2883 Face 3758 4581 8639 10375 Face 3759 9307 6926 4969 Face 3760 6796 859 6926 Face 3761 212 4760 4401 Face 3762 3722 4765 10843 Face 3763 8176 1719 4558 Face 3764 3615 10050 6394 Face 3765 3227 6720 9359 Face 3766 6720 10837 512 Face 3767 9630 1045 9864 Face 3768 1965 3313 6752 Face 3769 9630 1965 6752 Face 3770 9385 2005 5045 Face 3771 4228 9501 6726 Face 3772 8674 1055 9501 Face 3773 8863 1857 9781 Face 3774 5922 7438 10781 Face 3775 8325 6757 10944 Face 3776 10210 5889 10244 Face 3777 10210 10319 5889 Face 3778 5891 7355 4167 Face 3779 5185 8210 9461 Face 3780 9 8324 2463 Face 3781 3258 10204 514 Face 3782 1053 776 2416 Face 3783 3173 3859 5136 Face 3784 8251 4867 6738 Face 3785 9674 8857 10591 Face 3786 9674 152 7597 Face 3787 4621 9003 8434 Face 3788 5055 10551 10365 Face 3789 5535 6117 1297 Face 3790 6479 8643 5990 Face 3791 2786 4811 4231 Face 3792 10604 6506 3996 Face 3793 5379 10501 5928 Face 3794 4212 6198 4626 Face 3795 8922 1870 1640 Face 3796 4303 517 439 Face 3797 1887 942 4303 Face 3798 2081 3948 4629 Face 3799 5624 1491 1720 Face 3800 7142 5106 4680 Face 3801 7142 3621 5106 Face 3802 7008 7950 4384 Face 3803 10191 5562 10281 Face 3804 2796 6771 10694 Face 3805 9930 9299 7906 Face 3806 6668 519 10711 Face 3807 6668 10690 519 Face 3808 5862 1508 10419 Face 3809 9446 5933 7919 Face 3810 5397 10323 1134 Face 3811 6286 8362 2305 Face 3812 6770 10084 8030 Face 3813 8194 556 6226 Face 3814 7161 6447 521 Face 3815 2295 5491 2736 Face 3816 1414 6380 7969 Face 3817 5103 7295 6474 Face 3818 6688 8074 7150 Face 3819 5307 4448 2280 Face 3820 10057 523 8590 Face 3821 10985 8229 2727 Face 3822 524 9748 2407 Face 3823 6001 9386 10985 Face 3824 9337 2570 1843 Face 3825 8697 525 9189 Face 3826 6278 3446 7523 Face 3827 6111 10100 6249 Face 3828 6111 9378 2551 Face 3829 7881 4230 8948 Face 3830 5536 586 1201 Face 3831 4317 10573 7249 Face 3832 5652 526 8833 Face 3833 5652 6766 526 Face 3834 8868 7034 9261 Face 3835 1000 10202 7034 Face 3836 3448 5310 10953 Face 3837 3448 2807 5310 Face 3838 785 4424 8282 Face 3839 1004 10627 4637 Face 3840 6782 1671 10627 Face 3841 208 10861 9765 Face 3842 208 8700 10861 Face 3843 9890 10997 9121 Face 3844 5107 10268 2676 Face 3845 7407 9306 4085 Face 3846 10449 4639 9306 Face 3847 3327 6969 9931 Face 3848 3273 10761 1210 Face 3849 10107 7178 9815 Face 3850 10107 975 7178 Face 3851 9958 9272 9468 Face 3852 4076 6684 5948 Face 3853 9634 3113 4895 Face 3854 1548 10292 1985 Face 3855 8459 4759 2086 Face 3856 1553 9634 719 Face 3857 4474 5774 3086 Face 3858 1559 4756 9420 Face 3859 1559 2164 4756 Face 3860 7057 5828 1998 Face 3861 10648 9120 5828 Face 3862 7264 1627 8104 Face 3863 10375 6669 1514 Face 3864 6345 2952 8081 Face 3865 5260 132 2434 Face 3866 884 3642 4381 Face 3867 1724 2380 3345 Face 3868 8937 3696 7831 Face 3869 8937 9538 3696 Face 3870 8332 2657 3169 Face 3871 8332 8342 2657 Face 3872 5876 7873 528 Face 3873 3412 10447 10594 Face 3874 242 5611 3655 Face 3875 3699 5566 2310 Face 3876 5886 6425 4726 Face 3877 37 2345 6342 Face 3878 981 10475 4674 Face 3879 6499 530 9529 Face 3880 5537 5437 530 Face 3881 1188 10828 1193 Face 3882 8565 10322 10847 Face 3883 3607 661 8803 Face 3884 5157 1587 2126 Face 3885 3463 5938 10974 Face 3886 3463 3387 1622 Face 3887 5035 4511 3105 Face 3888 8990 10374 2913 Face 3889 7105 1732 10880 Face 3890 8561 7345 6498 Face 3891 5213 11036 7988 Face 3892 5213 6571 6302 Face 3893 4229 5594 6571 Face 3894 140 5444 503 Face 3895 721 3170 8113 Face 3896 5488 1142 533 Face 3897 8860 1580 534 Face 3898 1580 8860 4474 Face 3899 9240 8927 11069 Face 3900 5637 4809 8179 Face 3901 5304 1445 10529 Face 3902 2818 1088 5304 Face 3903 686 5412 3369 Face 3904 5581 686 2833 Face 3905 3680 3802 10392 Face 3906 6977 10166 7871 Face 3907 6977 10680 10166 Face 3908 9531 6881 4779 Face 3909 9251 6275 9491 Face 3910 5694 9313 3700 Face 3911 7046 3544 9313 Face 3912 6490 539 5928 Face 3913 4039 3712 347 Face 3914 10062 540 10232 Face 3915 10062 5305 540 Face 3916 1973 4839 8012 Face 3917 4377 9968 5952 Face 3918 3278 5252 10409 Face 3919 8904 3278 9219 Face 3920 450 3939 8285 Face 3921 6465 10413 3922 Face 3922 4377 3922 10798 Face 3923 7901 5442 10785 Face 3924 3961 10541 7798 Face 3925 42 4059 8539 Face 3926 4646 5949 7544 Face 3927 1765 2368 5949 Face 3928 1282 405 5036 Face 3929 83 5138 5873 Face 3930 2490 7445 1163 Face 3931 2490 8258 7445 Face 3932 2038 4951 10370 Face 3933 7972 9397 4951 Face 3934 840 541 2078 Face 3935 2878 10900 4254 Face 3936 8824 5552 10340 Face 3937 1604 8656 1600 Face 3938 3398 6637 7994 Face 3939 2245 542 4408 Face 3940 1936 4227 2629 Face 3941 6643 1925 6558 Face 3942 6453 4367 1288 Face 3943 9656 7745 9792 Face 3944 5192 3800 1465 Face 3945 7456 10092 5602 Face 3946 292 5726 4004 Face 3947 9090 6750 544 Face 3948 9085 9585 4261 Face 3949 550 9334 5631 Face 3950 7625 8469 6330 Face 3951 457 3090 3017 Face 3952 4248 10774 8235 Face 3953 2987 545 7257 Face 3954 2065 6375 10856 Face 3955 6974 5334 3836 Face 3956 6974 3542 5334 Face 3957 1690 4120 6784 Face 3958 10718 695 9605 Face 3959 3676 1675 546 Face 3960 1420 7675 5929 Face 3961 4540 4512 9293 Face 3962 2691 26 7400 Face 3963 6422 4987 4460 Face 3964 6422 7773 4987 Face 3965 10415 5079 7835 Face 3966 5001 10806 683 Face 3967 2322 1402 5097 Face 3968 231 10195 1402 Face 3969 5571 547 6517 Face 3970 10256 548 2263 Face 3971 3423 2524 7124 Face 3972 1395 9238 4191 Face 3973 6481 549 6790 Face 3974 8578 550 8981 Face 3975 10211 2820 8483 Face 3976 4771 6039 2860 Face 3977 156 4771 2860 Face 3978 10568 10254 4771 Face 3979 9171 188 1548 Face 3980 10383 6136 10169 Face 3981 2971 299 5260 Face 3982 5637 3465 4809 Face 3983 9597 1124 1058 Face 3984 3691 553 9978 Face 3985 3691 4813 553 Face 3986 7951 9106 4012 Face 3987 7060 7288 2000 Face 3988 5514 1569 2918 Face 3989 9567 3602 5189 Face 3990 3125 6208 7616 Face 3991 4130 7653 4268 Face 3992 7656 5993 7583 Face 3993 2293 8836 5938 Face 3994 2293 3603 8836 Face 3995 1447 7475 911 Face 3996 7688 970 2739 Face 3997 1547 7948 8825 Face 3998 721 2111 10870 Face 3999 5572 2425 5834 Face 4000 6938 6148 10420 Face 4001 5741 3792 8188 Face 4002 5101 2931 8654 Face 4003 6175 5524 2396 Face 4004 5016 10091 4147 Face 4005 8380 9510 10000 Face 4006 2672 9797 1979 Face 4007 10442 387 7120 Face 4008 1316 8837 10731 Face 4009 1316 5097 8837 Face 4010 4801 10300 8707 Face 4011 4801 10402 10300 Face 4012 340 6530 2951 Face 4013 190 5884 2271 Face 4014 10786 9297 3049 Face 4015 5913 1151 907 Face 4016 850 10371 9492 Face 4017 7030 6194 4639 Face 4018 5655 9853 2584 Face 4019 10859 2479 3292 Face 4020 2553 8847 10451 Face 4021 2553 8736 2550 Face 4022 6059 6479 5990 Face 4023 3387 5130 6479 Face 4024 3387 6479 6059 Face 4025 4135 4050 9761 Face 4026 3775 557 8805 Face 4027 6231 1463 10701 Face 4028 6231 10701 8799 Face 4029 4007 3530 5849 Face 4030 6252 675 5128 Face 4031 4105 9340 9445 Face 4032 4920 9978 8891 Face 4033 5519 7428 9500 Face 4034 10083 6515 4373 Face 4035 5026 10354 8008 Face 4036 9801 6849 558 Face 4037 3569 685 4850 Face 4038 6688 3403 4403 Face 4039 6845 992 9768 Face 4040 10520 10645 3199 Face 4041 6796 6926 9307 Face 4042 6553 2523 4079 Face 4043 9325 2322 7120 Face 4044 2803 9875 5769 Face 4045 10658 2218 5210 Face 4046 2344 561 9610 Face 4047 4613 562 205 Face 4048 4516 3633 501 Face 4049 3140 8350 3633 Face 4050 9466 9882 2748 Face 4051 8996 672 5589 Face 4052 4463 10208 3257 Face 4053 1968 8002 10584 Face 4054 8744 10276 4697 Face 4055 2355 6659 1166 Face 4056 198 3359 10554 Face 4057 2690 937 7027 Face 4058 5349 5544 7000 Face 4059 799 3112 8586 Face 4060 10981 10406 6598 Face 4061 5774 4474 1148 Face 4062 2445 5983 9921 Face 4063 5616 6103 10672 Face 4064 2577 4065 4645 Face 4065 9384 2543 4065 Face 4066 9834 8622 7438 Face 4067 4693 2016 3314 Face 4068 6048 1540 4022 Face 4069 130 3909 10477 Face 4070 130 8172 3909 Face 4071 2406 8763 9588 Face 4072 2051 5753 8323 Face 4073 10221 5796 10423 Face 4074 7552 9717 5796 Face 4075 10533 565 10432 Face 4076 9865 1952 812 Face 4077 9865 5121 1952 Face 4078 2619 8456 1084 Face 4079 8009 4168 9226 Face 4080 7913 3812 3901 Face 4081 11004 2666 8282 Face 4082 8480 6836 2614 Face 4083 6005 7434 4251 Face 4084 11080 4749 8260 Face 4085 7860 567 2125 Face 4086 7860 5355 567 Face 4087 10942 3947 1454 Face 4088 337 9221 1541 Face 4089 7769 9284 9804 Face 4090 1943 9435 1964 Face 4091 1943 7325 9435 Face 4092 8480 8587 6836 Face 4093 2600 8116 8461 Face 4094 7240 4780 2618 Face 4095 7014 6149 3330 Face 4096 7014 2838 4669 Face 4097 5524 3388 10265 Face 4098 6582 7863 10073 Face 4099 3289 3194 5159 Face 4100 7396 6496 9901 Face 4101 2261 10800 9393 Face 4102 2261 8240 10800 Face 4103 3432 752 6636 Face 4104 4946 6500 3658 Face 4105 7143 703 3660 Face 4106 115 5391 7143 Face 4107 394 8160 10730 Face 4108 4829 7028 4203 Face 4109 2977 570 6072 Face 4110 2977 7320 570 Face 4111 3705 9731 6027 Face 4112 6789 9214 1766 Face 4113 3151 4636 7241 Face 4114 2681 9290 6877 Face 4115 1676 10124 10220 Face 4116 6786 3898 10124 Face 4117 6786 10124 1676 Face 4118 1340 9001 571 Face 4119 3676 10667 1675 Face 4120 3594 2736 5491 Face 4121 11035 4808 978 Face 4122 4477 10112 602 Face 4123 7705 2675 928 Face 4124 5639 8730 1878 Face 4125 5639 3144 8730 Face 4126 8777 3706 5133 Face 4127 1080 11012 9945 Face 4128 67 10379 7386 Face 4129 67 8654 10379 Face 4130 7124 8909 1678 Face 4131 8047 4941 7029 Face 4132 3981 9551 4941 Face 4133 7859 9579 3414 Face 4134 9005 1368 1609 Face 4135 5992 4315 11048 Face 4136 10693 6634 10518 Face 4137 1397 8290 11057 Face 4138 759 4987 7773 Face 4139 1941 9702 2463 Face 4140 1012 1947 99 Face 4141 2624 1431 7927 Face 4142 5255 5290 3471 Face 4143 5900 7052 5565 Face 4144 6896 574 6415 Face 4145 7220 9074 5064 Face 4146 7220 3138 9074 Face 4147 7813 8728 5649 Face 4148 5657 10313 6407 Face 4149 1763 1372 10313 Face 4150 1372 1763 3467 Face 4151 4369 4632 3494 Face 4152 6300 3063 2568 Face 4153 810 2313 2598 Face 4154 4985 2755 1821 Face 4155 10680 5727 10253 Face 4156 8676 6550 1420 Face 4157 2977 900 7320 Face 4158 4093 577 9511 Face 4159 4093 5129 577 Face 4160 7820 1084 1657 Face 4161 4711 2619 1084 Face 4162 4711 1084 7820 Face 4163 4711 2390 2619 Face 4164 7883 7181 9709 Face 4165 7107 8065 7181 Face 4166 3635 8883 7757 Face 4167 3635 10182 5445 Face 4168 10690 6668 6165 Face 4169 9728 9100 9452 Face 4170 9635 4935 1511 Face 4171 9635 5821 4935 Face 4172 8267 578 800 Face 4173 8267 8311 249 Face 4174 9769 2327 8950 Face 4175 7091 243 2327 Face 4176 4100 5084 8920 Face 4177 10878 5883 2324 Face 4178 8413 1687 2370 Face 4179 9872 695 2122 Face 4180 3657 11023 742 Face 4181 128 8670 2085 Face 4182 128 10081 8670 Face 4183 116 2226 4002 Face 4184 116 5478 2226 Face 4185 7422 7302 746 Face 4186 6078 9031 10660 Face 4187 3823 5610 93 Face 4188 9047 6574 10011 Face 4189 9481 581 7166 Face 4190 9481 5910 581 Face 4191 2705 5372 4545 Face 4192 9026 4939 10950 Face 4193 1398 3283 10727 Face 4194 4155 6772 10856 Face 4195 10519 7071 5442 Face 4196 6569 9844 4276 Face 4197 6569 7968 585 Face 4198 4899 2787 2610 Face 4199 3861 6009 3630 Face 4200 282 10407 586 Face 4201 1651 8495 8669 Face 4202 1439 7719 5881 Face 4203 9919 6657 8407 Face 4204 6657 2645 8477 Face 4205 4173 3018 10884 Face 4206 10577 2559 10310 Face 4207 2299 2815 6412 Face 4208 9320 7310 7360 Face 4209 8790 7515 2492 Face 4210 8085 8087 7075 Face 4211 2320 1758 7699 Face 4212 8359 7392 7153 Face 4213 8016 1933 3149 Face 4214 30 10659 10215 Face 4215 3317 7727 8908 Face 4216 7372 3212 1634 Face 4217 7372 9293 3212 Face 4218 5498 7888 8657 Face 4219 9859 3646 8482 Face 4220 10297 6636 5550 Face 4221 7651 9873 6282 Face 4222 2403 8186 9873 Face 4223 6573 10732 3489 Face 4224 9570 4716 5081 Face 4225 3664 8058 5006 Face 4226 3270 6053 1140 Face 4227 8867 589 3270 Face 4228 7806 6053 589 Face 4229 4329 4704 8670 Face 4230 4651 10546 10236 Face 4231 4651 3215 10546 Face 4232 6759 4081 3166 Face 4233 6759 6872 590 Face 4234 6872 5402 1648 Face 4235 9395 5028 6978 Face 4236 5781 8356 8583 Face 4237 9753 11055 1623 Face 4238 7736 10048 3353 Face 4239 1820 11032 8095 Face 4240 1820 2871 5501 Face 4241 8218 8985 6294 Face 4242 9935 9949 4591 Face 4243 3144 6056 8730 Face 4244 7823 6299 6056 Face 4245 7941 7513 899 Face 4246 415 7821 7452 Face 4247 9843 1494 4691 Face 4248 8027 5421 1607 Face 4249 7335 8398 5421 Face 4250 7053 2020 1780 Face 4251 7331 6007 8708 Face 4252 4410 593 1888 Face 4253 127 5003 3037 Face 4254 9135 7061 6101 Face 4255 3135 8511 3766 Face 4256 5973 1070 2877 Face 4257 4959 7306 1809 Face 4258 109 9158 6619 Face 4259 27 5486 3333 Face 4260 3148 5173 8845 Face 4261 5486 7169 9206 Face 4262 5662 1604 10244 Face 4263 906 1489 8478 Face 4264 10933 10784 7774 Face 4265 8955 1930 6531 Face 4266 6820 2401 2765 Face 4267 8264 780 8346 Face 4268 8113 3819 2111 Face 4269 963 2205 3819 Face 4270 2699 6905 1916 Face 4271 3244 6022 9708 Face 4272 737 11108 3877 Face 4273 10726 2017 9758 Face 4274 8295 1366 4224 Face 4275 1635 8307 4737 Face 4276 6713 3504 7975 Face 4277 5540 9855 9891 Face 4278 3651 549 595 Face 4279 596 8119 10715 Face 4280 8096 10262 5063 Face 4281 240 597 7721 Face 4282 9264 10932 1884 Face 4283 9264 5624 4915 Face 4284 1981 4167 7355 Face 4285 9176 6546 219 Face 4286 2397 10936 3466 Face 4287 468 3609 3645 Face 4288 8761 5529 8089 Face 4289 8761 399 5529 Face 4290 7612 9524 2387 Face 4291 148 6167 8331 Face 4292 148 845 6747 Face 4293 69 7072 9832 Face 4294 6206 5741 8693 Face 4295 9367 4413 8687 Face 4296 6206 10275 6475 Face 4297 2279 5316 10949 Face 4298 882 2357 562 Face 4299 1088 4916 2283 Face 4300 8521 10428 2402 Face 4301 8521 7966 10428 Face 4302 4959 5115 1392 Face 4303 4786 4180 5115 Face 4304 4786 5409 4180 Face 4305 4786 3878 5409 Face 4306 9574 8340 1351 Face 4307 215 7004 403 Face 4308 4925 7405 6435 Face 4309 6143 7020 7607 Face 4310 8406 9352 6686 Face 4311 171 4165 5221 Face 4312 10286 1803 4165 Face 4313 8207 10717 1126 Face 4314 5508 10145 9422 Face 4315 5838 1539 1309 Face 4316 2388 8193 10156 Face 4317 3923 9506 2355 Face 4318 3923 1637 8241 Face 4319 3923 2355 1637 Face 4320 4402 6312 5361 Face 4321 8947 8955 6531 Face 4322 4295 1584 4340 Face 4323 357 5318 8318 Face 4324 357 8028 5318 Face 4325 357 5069 4690 Face 4326 7 5979 3437 Face 4327 764 6396 10482 Face 4328 9296 4556 6585 Face 4329 9712 3484 9235 Face 4330 7785 8467 8584 Face 4331 49 10960 4441 Face 4332 6710 1331 96 Face 4333 6710 9063 9616 Face 4334 801 2988 6247 Face 4335 3453 9802 7901 Face 4336 3644 9991 8509 Face 4337 3675 602 4400 Face 4338 2878 8824 10340 Face 4339 2878 8239 8824 Face 4340 2591 2680 4979 Face 4341 7876 3354 6149 Face 4342 7876 6461 3354 Face 4343 4942 3491 9913 Face 4344 3415 2796 9373 Face 4345 3415 4250 2796 Face 4346 5223 1547 4241 Face 4347 807 4020 2954 Face 4348 5756 505 4020 Face 4349 7934 2538 6123 Face 4350 4428 6137 8632 Face 4351 1906 603 4359 Face 4352 9056 8810 3931 Face 4353 2898 4666 9111 Face 4354 1750 5713 10656 Face 4355 7172 8294 4454 Face 4356 6216 605 4591 Face 4357 5985 9808 1873 Face 4358 1482 3966 10517 Face 4359 1482 4044 3966 Face 4360 505 5756 1672 Face 4361 4476 4397 7763 Face 4362 4064 5072 3708 Face 4363 23 4667 725 Face 4364 4121 7362 1300 Face 4365 3180 4528 2728 Face 4366 3061 7435 606 Face 4367 5978 4144 8026 Face 4368 2914 5678 3104 Face 4369 8154 2983 5678 Face 4370 7319 275 2058 Face 4371 9418 11003 8552 Face 4372 2927 7128 5033 Face 4373 7068 1981 7355 Face 4374 6321 9918 2620 Face 4375 7497 609 4934 Face 4376 9421 10321 5733 Face 4377 6399 8898 5895 Face 4378 6399 4423 8898 Face 4379 7006 1754 11021 Face 4380 4495 2255 7425 Face 4381 8384 36 2493 Face 4382 9027 4546 6723 Face 4383 3580 9570 7197 Face 4384 5024 795 3044 Face 4385 5024 5715 9817 Face 4386 6695 7822 5582 Face 4387 6815 5149 9962 Face 4388 6634 10693 5149 Face 4389 1477 1845 6797 Face 4390 17 6799 10464 Face 4391 6288 5795 2556 Face 4392 6713 10328 9310 Face 4393 2623 7519 9007 Face 4394 10939 8168 10216 Face 4395 1455 4813 8584 Face 4396 1031 1119 6992 Face 4397 3252 7709 5153 Face 4398 7189 1219 3490 Face 4399 4918 6167 8841 Face 4400 978 8123 611 Face 4401 7937 612 1639 Face 4402 7937 9781 612 Face 4403 189 997 3885 Face 4404 1431 5239 8874 Face 4405 7357 9540 4247 Face 4406 4247 2013 9126 Face 4407 9964 10316 3130 Face 4408 9964 4041 7676 Face 4409 10872 7621 2373 Face 4410 4330 1330 6638 Face 4411 1516 2160 6638 Face 4412 6415 4270 8213 Face 4413 7066 4054 10679 Face 4414 7066 354 4054 Face 4415 1599 6960 6037 Face 4416 1599 5906 6960 Face 4417 7947 10384 10291 Face 4418 7947 9940 10384 Face 4419 3630 6009 2776 Face 4420 2872 5731 4137 Face 4421 2534 411 7986 Face 4422 2872 10002 5471 Face 4423 2329 5560 7247 Face 4424 7497 1449 7260 Face 4425 7497 618 609 Face 4426 7497 7260 618 Face 4427 4162 493 6521 Face 4428 8111 8835 620 Face 4429 6721 6304 40 Face 4430 1128 2351 7079 Face 4431 3149 8183 73 Face 4432 3580 6683 2144 Face 4433 10717 5141 8185 Face 4434 5357 2315 1234 Face 4435 3431 1140 6487 Face 4436 9142 6528 1468 Face 4437 9142 6682 9201 Face 4438 10500 2545 3757 Face 4439 3162 5936 4754 Face 4440 2066 9012 9330 Face 4441 621 3146 9535 Face 4442 10222 9910 621 Face 4443 4620 9265 7258 Face 4444 8406 10059 10817 Face 4445 8211 2733 1715 Face 4446 4277 7328 848 Face 4447 89 2165 5267 Face 4448 4516 3140 3633 Face 4449 4516 9410 3140 Face 4450 8671 7461 1800 Face 4451 8671 10564 4547 Face 4452 6416 2468 6896 Face 4453 10298 10346 9546 Face 4454 7596 5022 7657 Face 4455 5964 1011 7318 Face 4456 10995 1235 5410 Face 4457 5285 4004 10851 Face 4458 3913 2113 6958 Face 4459 2021 5577 1320 Face 4460 6033 10166 535 Face 4461 5921 10796 625 Face 4462 7854 4183 2183 Face 4463 9595 1921 5623 Face 4464 626 1921 9595 Face 4465 3312 10678 9951 Face 4466 7896 937 3756 Face 4467 161 7038 8644 Face 4468 2364 10196 7038 Face 4469 82 3662 9537 Face 4470 3940 7139 3662 Face 4471 2118 3977 3654 Face 4472 2118 2350 4940 Face 4473 5158 2331 9866 Face 4474 5158 10643 629 Face 4475 230 7740 4185 Face 4476 7962 6519 7740 Face 4477 7977 5854 630 Face 4478 5295 2442 4713 Face 4479 156 10568 4771 Face 4480 5446 5750 6708 Face 4481 3601 9632 11034 Face 4482 9632 9812 1895 Face 4483 9752 6197 3228 Face 4484 5161 3304 6197 Face 4485 2401 1896 2228 Face 4486 2401 10319 8159 Face 4487 7353 2131 172 Face 4488 10173 4950 2732 Face 4489 10173 1662 4950 Face 4490 9405 4154 4609 Face 4491 9405 6411 4154 Face 4492 4610 2459 922 Face 4493 4759 2985 6901 Face 4494 1293 2245 4408 Face 4495 250 10852 8158 Face 4496 250 9523 10852 Face 4497 6525 634 6356 Face 4498 9682 635 1841 Face 4499 6754 2887 635 Face 4500 6168 636 1268 Face 4501 4504 7025 3579 Face 4502 1849 9160 9034 Face 4503 6060 4805 5886 Face 4504 2338 9521 4659 Face 4505 6558 2214 5195 Face 4506 7123 7749 5291 Face 4507 7123 7344 6047 Face 4508 4734 2873 6840 Face 4509 9996 6409 1044 Face 4510 986 8536 3882 Face 4511 986 1234 8536 Face 4512 2301 469 5425 Face 4513 4083 6863 6998 Face 4514 9750 2704 1631 Face 4515 5418 9970 8784 Face 4516 7713 7602 4655 Face 4517 7933 637 7715 Face 4518 3624 7541 7707 Face 4519 2341 5424 8906 Face 4520 2341 7275 5424 Face 4521 2488 2966 5740 Face 4522 6436 2234 1960 Face 4523 3202 277 4252 Face 4524 2165 11067 638 Face 4525 9378 5102 10193 Face 4526 4976 7046 5102 Face 4527 6031 3154 7610 Face 4528 2846 1400 3898 Face 4529 2846 10747 1400 Face 4530 2223 4817 10008 Face 4531 2223 3627 4817 Face 4532 6855 8288 1718 Face 4533 8414 7008 4549 Face 4534 10 9543 639 Face 4535 2818 640 3728 Face 4536 2818 5304 640 Face 4537 8524 1738 6476 Face 4538 9488 2652 10696 Face 4539 520 3705 5044 Face 4540 4694 5295 2798 Face 4541 1974 5295 4694 Face 4542 6529 3029 2574 Face 4543 3569 6545 4131 Face 4544 7411 993 7868 Face 4545 228 4291 8859 Face 4546 4707 8703 5619 Face 4547 5212 4012 9106 Face 4548 2109 8404 4026 Face 4549 3386 3239 6879 Face 4550 7426 10195 2509 Face 4551 3781 7182 644 Face 4552 9839 5372 2705 Face 4553 1562 6938 10420 Face 4554 6594 645 46 Face 4555 2201 5560 2899 Face 4556 6924 7247 5560 Face 4557 1256 9507 4888 Face 4558 6537 8923 464 Face 4559 2201 1851 8923 Face 4560 6924 2201 8923 Face 4561 6924 5560 9774 Face 4562 5064 7175 10888 Face 4563 3581 8712 10073 Face 4564 9562 7211 1426 Face 4565 2084 10003 7116 Face 4566 1127 7691 2084 Face 4567 8386 5853 1594 Face 4568 646 3200 9926 Face 4569 8133 10787 6272 Face 4570 9473 3347 9577 Face 4571 1112 3488 5030 Face 4572 7323 10646 3714 Face 4573 6227 5551 6779 Face 4574 3351 647 7610 Face 4575 7984 1319 647 Face 4576 10118 5964 10763 Face 4577 10118 4781 5964 Face 4578 648 2832 2355 Face 4579 648 8200 6632 Face 4580 2744 7512 5697 Face 4581 3760 7524 7512 Face 4582 9105 6676 178 Face 4583 10671 7410 5524 Face 4584 3974 211 10461 Face 4585 8083 9005 1609 Face 4586 4844 4997 6483 Face 4587 9538 5526 8653 Face 4588 8815 8041 3213 Face 4589 815 2309 8041 Face 4590 10475 981 9434 Face 4591 3238 8858 902 Face 4592 5666 4032 2545 Face 4593 33 6825 2801 Face 4594 396 5510 652 Face 4595 3650 5757 10036 Face 4596 407 8395 3754 Face 4597 6596 9728 9452 Face 4598 87 833 4836 Face 4599 9655 6641 7177 Face 4600 6866 6427 6641 Face 4601 9510 9655 10000 Face 4602 9510 6641 9655 Face 4603 1455 1620 8049 Face 4604 1455 8584 1620 Face 4605 6297 4162 1638 Face 4606 7605 3290 8270 Face 4607 1592 2152 11058 Face 4608 1592 1060 5356 Face 4609 5049 4215 5385 Face 4610 5049 10514 11072 Face 4611 5864 6962 169 Face 4612 5864 3507 6962 Face 4613 3466 10936 8940 Face 4614 10476 5867 10219 Face 4615 6334 9845 6401 Face 4616 9181 1513 9885 Face 4617 4075 2199 10761 Face 4618 2772 655 10804 Face 4619 1359 4845 6903 Face 4620 4945 6784 4845 Face 4621 10346 4945 4845 Face 4622 7145 8065 5561 Face 4623 9184 6232 5284 Face 4624 3447 5243 5413 Face 4625 4939 6291 10950 Face 4626 7805 656 10739 Face 4627 7748 8610 2335 Face 4628 9216 9246 7436 Face 4629 5088 8523 8401 Face 4630 5088 10418 8523 Face 4631 2542 7148 5835 Face 4632 4900 3842 10002 Face 4633 9334 750 10441 Face 4634 6546 9755 6189 Face 4635 2984 1914 9755 Face 4636 8546 805 9342 Face 4637 5795 658 10653 Face 4638 9127 7191 4520 Face 4639 841 2344 7191 Face 4640 10816 3856 5658 Face 4641 4262 659 6630 Face 4642 4262 6089 9321 Face 4643 1077 5476 4569 Face 4644 1254 1909 3724 Face 4645 3606 1549 8151 Face 4646 3606 5120 1308 Face 4647 5688 9402 6090 Face 4648 5688 2237 9402 Face 4649 6843 7193 6653 Face 4650 1397 11057 6843 Face 4651 488 7923 9224 Face 4652 5263 2180 2967 Face 4653 9814 6678 2180 Face 4654 9428 8615 1441 Face 4655 8532 7447 9224 Face 4656 8444 5056 7447 Face 4657 10802 4326 9280 Face 4658 7269 10920 8430 Face 4659 3822 10764 4718 Face 4660 124 9098 3970 Face 4661 996 2061 10490 Face 4662 7967 7645 7628 Face 4663 5612 10052 7967 Face 4664 5315 9443 9914 Face 4665 10722 2112 9443 Face 4666 5666 8087 10533 Face 4667 1006 8741 9657 Face 4668 8741 11063 4842 Face 4669 4891 9565 3078 Face 4670 10307 2393 1160 Face 4671 6042 11074 8444 Face 4672 9376 818 9358 Face 4673 9376 10753 818 Face 4674 1401 2737 8321 Face 4675 6295 4948 3950 Face 4676 244 665 7414 Face 4677 244 6610 5119 Face 4678 665 7693 7414 Face 4679 10560 7222 7011 Face 4680 6348 9481 7166 Face 4681 3591 4647 10175 Face 4682 4980 804 4936 Face 4683 9626 9765 5815 Face 4684 5091 6831 9718 Face 4685 10049 40 6304 Face 4686 8277 7262 6139 Face 4687 4930 667 2578 Face 4688 4930 820 667 Face 4689 8632 9147 10543 Face 4690 8632 9414 9147 Face 4691 6508 7131 6103 Face 4692 6508 5925 7131 Face 4693 3754 9187 8006 Face 4694 3754 8395 9187 Face 4695 1132 4885 1057 Face 4696 5394 8621 7307 Face 4697 2288 3334 8621 Face 4698 7212 3871 1850 Face 4699 9700 1480 3417 Face 4700 3893 6072 570 Face 4701 1155 1777 4785 Face 4702 8744 10768 7041 Face 4703 5450 429 4142 Face 4704 9486 669 10137 Face 4705 5352 2426 669 Face 4706 9486 5352 669 Face 4707 8826 6116 1134 Face 4708 7127 4349 3424 Face 4709 9892 2891 7566 Face 4710 1279 8895 5926 Face 4711 7703 2484 7086 Face 4712 237 4008 2382 Face 4713 1299 3892 5224 Face 4714 2876 10083 3892 Face 4715 5542 9415 9054 Face 4716 5542 4821 9415 Face 4717 3637 3196 7768 Face 4718 6988 4518 3196 Face 4719 1365 670 2127 Face 4720 8003 2059 670 Face 4721 3589 3406 7952 Face 4722 9627 4831 8480 Face 4723 3998 1843 7663 Face 4724 9070 671 10180 Face 4725 9090 544 7815 Face 4726 10935 2330 491 Face 4727 10935 3933 2330 Face 4728 5338 9210 1015 Face 4729 5340 8886 8007 Face 4730 6971 7226 2864 Face 4731 7632 10654 6210 Face 4732 2890 7632 2166 Face 4733 394 10730 6810 Face 4734 7852 6035 4743 Face 4735 9004 11047 5382 Face 4736 3799 8731 2693 Face 4737 10205 3469 2978 Face 4738 10205 9064 3469 Face 4739 10672 9049 8756 Face 4740 9828 4813 3691 Face 4741 9828 7785 4813 Face 4742 8145 7964 7439 Face 4743 3770 9639 7964 Face 4744 10499 10684 1349 Face 4745 3169 2657 7033 Face 4746 3075 4529 973 Face 4747 3904 5228 9976 Face 4748 3904 8168 10939 Face 4749 9494 4412 9985 Face 4750 7705 3361 2675 Face 4751 6089 2342 9321 Face 4752 6066 5128 934 Face 4753 4975 2572 6248 Face 4754 556 1979 8132 Face 4755 7530 4454 2040 Face 4756 7530 7172 4454 Face 4757 9384 677 2543 Face 4758 3117 4016 5846 Face 4759 2030 8713 3041 Face 4760 2030 2711 8713 Face 4761 409 5147 9745 Face 4762 8890 8548 3812 Face 4763 9256 5622 5389 Face 4764 7370 8735 1798 Face 4765 7370 10758 8735 Face 4766 4180 9235 3484 Face 4767 4180 5409 9235 Face 4768 3261 10397 8750 Face 4769 4931 2247 9401 Face 4770 9865 3446 1271 Face 4771 9865 5194 3446 Face 4772 10501 8009 5743 Face 4773 1566 10610 1099 Face 4774 1763 4391 10610 Face 4775 5541 7244 679 Face 4776 2990 2483 7736 Face 4777 11038 7586 4558 Face 4778 8493 682 8078 Face 4779 6024 2819 9265 Face 4780 6024 4620 2819 Face 4781 6450 9896 6199 Face 4782 10528 5140 1221 Face 4783 10956 10863 5570 Face 4784 5876 9924 3765 Face 4785 4806 3053 5311 Face 4786 6878 3399 9889 Face 4787 8168 4097 985 Face 4788 8168 3904 7340 Face 4789 2102 7486 3921 Face 4790 7672 5993 6248 Face 4791 2828 774 10308 Face 4792 194 8462 10140 Face 4793 6994 4380 3480 Face 4794 6109 5404 3784 Face 4795 8888 5545 1712 Face 4796 6832 7914 8639 Face 4797 9474 276 1428 Face 4798 5838 8504 1539 Face 4799 1051 9361 4967 Face 4800 5921 625 6033 Face 4801 7837 10745 2151 Face 4802 3985 8964 4430 Face 4803 3985 4519 8964 Face 4804 2903 9644 3849 Face 4805 988 4567 8223 Face 4806 3378 7505 6865 Face 4807 4626 4654 5039 Face 4808 8273 6765 3678 Face 4809 7842 9790 3457 Face 4810 7842 177 9790 Face 4811 529 10897 8498 Face 4812 529 8531 10897 Face 4813 7631 946 6006 Face 4814 5739 6207 8230 Face 4815 2345 4850 685 Face 4816 9232 5474 597 Face 4817 7146 5600 6349 Face 4818 9217 9028 9248 Face 4819 9217 7567 9028 Face 4820 2624 10341 2159 Face 4821 2624 7927 10341 Face 4822 5187 2117 285 Face 4823 2769 687 3736 Face 4824 2769 536 687 Face 4825 2234 3416 1960 Face 4826 2234 915 3416 Face 4827 3864 9779 8433 Face 4828 8589 689 9779 Face 4829 6203 6365 10034 Face 4830 8619 7017 2440 Face 4831 1 3515 7017 Face 4832 4873 10378 7958 Face 4833 11011 8608 10378 Face 4834 31 10754 5129 Face 4835 31 9138 10754 Face 4836 885 2685 5125 Face 4837 8781 4700 3935 Face 4838 2184 8391 7125 Face 4839 2184 8901 8391 Face 4840 6657 8477 2567 Face 4841 1443 9328 3995 Face 4842 3457 9790 2480 Face 4843 1866 3340 3562 Face 4844 5809 4187 9031 Face 4845 6948 10791 1203 Face 4846 7844 2856 692 Face 4847 6280 7893 2851 Face 4848 8821 7613 5885 Face 4849 11091 6178 10869 Face 4850 8248 7510 9505 Face 4851 891 8432 10634 Face 4852 1647 6263 9984 Face 4853 2774 5533 6263 Face 4854 3865 1647 9068 Face 4855 883 6355 2581 Face 4856 9581 2962 1561 Face 4857 4459 5206 8656 Face 4858 4960 10209 8162 Face 4859 5841 10569 10209 Face 4860 7897 1380 4810 Face 4861 3137 7227 10975 Face 4862 114 10975 6475 Face 4863 3328 6492 1990 Face 4864 6303 882 3328 Face 4865 5981 5971 2537 Face 4866 5981 6844 5971 Face 4867 1396 6628 4285 Face 4868 1396 201 6628 Face 4869 9480 1818 10718 Face 4870 9480 10715 8473 Face 4871 1246 2680 2591 Face 4872 2472 3498 6091 Face 4873 2472 3640 3498 Face 4874 7932 6733 696 Face 4875 696 3537 3714 Face 4876 7114 5528 6231 Face 4877 5537 9146 860 Face 4878 864 2387 9146 Face 4879 8903 4445 2631 Face 4880 1927 4681 4509 Face 4881 2342 5162 3066 Face 4882 7917 698 3789 Face 4883 4009 10307 1160 Face 4884 4009 10504 10987 Face 4885 1000 7034 8868 Face 4886 7853 7182 1247 Face 4887 2487 10877 10919 Face 4888 4897 699 9428 Face 4889 10517 8073 8764 Face 4890 10517 3966 8073 Face 4891 6790 10199 9609 Face 4892 3785 6100 10733 Face 4893 6490 10544 3957 Face 4894 9320 5087 10153 Face 4895 9320 7360 9285 Face 4896 1298 4682 11001 Face 4897 5605 7678 6348 Face 4898 6073 7088 4622 Face 4899 232 701 2450 Face 4900 1820 5501 232 Face 4901 4723 6316 6767 Face 4902 7519 702 4593 Face 4903 7519 9256 702 Face 4904 7799 8152 223 Face 4905 7319 2058 9591 Face 4906 5056 7708 2024 Face 4907 5056 663 7708 Face 4908 3051 7399 7101 Face 4909 5686 1524 7399 Face 4910 7695 8665 7589 Face 4911 7332 10298 5887 Face 4912 5343 4587 6785 Face 4913 4518 703 3196 Face 4914 7711 8427 1007 Face 4915 7711 6624 8427 Face 4916 5329 6026 7711 Face 4917 2964 4671 6111 Face 4918 6372 4095 2040 Face 4919 6372 4074 4095 Face 4920 420 9338 1722 Face 4921 420 2153 704 Face 4922 3890 4348 4683 Face 4923 3890 8796 4348 Face 4924 3010 9615 8925 Face 4925 7056 9555 9615 Face 4926 1959 9474 1428 Face 4927 9544 5387 9473 Face 4928 9544 3844 5387 Face 4929 7892 9544 9577 Face 4930 46 1479 2108 Face 4931 9532 705 6890 Face 4932 9451 5388 2232 Face 4933 8962 3215 4651 Face 4934 1891 2385 3215 Face 4935 1456 5165 3380 Face 4936 123 7500 3051 Face 4937 10064 8641 7500 Face 4938 8490 3039 3027 Face 4939 8490 3128 3039 Face 4940 8598 10328 10490 Face 4941 3681 9334 550 Face 4942 9143 6507 7885 Face 4943 8285 4182 8202 Face 4944 985 4107 1086 Face 4945 3002 9028 7567 Face 4946 2577 304 677 Face 4947 489 1993 5075 Face 4948 5093 706 9937 Face 4949 3104 707 4624 Face 4950 3104 5678 5848 Face 4951 2785 5569 2207 Face 4952 9606 7705 1362 Face 4953 9606 3361 7705 Face 4954 9336 10679 8430 Face 4955 217 1731 5973 Face 4956 411 2534 9498 Face 4957 4058 7803 10010 Face 4958 1435 10315 10337 Face 4959 7484 8103 408 Face 4960 971 1041 2883 Face 4961 971 5939 1041 Face 4962 543 5726 714 Face 4963 8765 1658 3548 Face 4964 8771 2633 7543 Face 4965 705 9532 7339 Face 4966 3031 5919 8753 Face 4967 8547 3565 9657 Face 4968 4757 9610 561 Face 4969 1576 11016 4123 Face 4970 1576 2545 11016 Face 4971 9883 2821 5749 Face 4972 10170 9883 5078 Face 4973 9564 977 7444 Face 4974 358 10271 977 Face 4975 2582 7294 7437 Face 4976 8243 8651 9928 Face 4977 8651 1530 8866 Face 4978 199 5346 5142 Face 4979 2731 1137 5346 Face 4980 8082 1616 2059 Face 4981 1990 7156 3231 Face 4982 7035 9623 3503 Face 4983 2764 711 4973 Face 4984 9027 3272 711 Face 4985 2896 7529 9129 Face 4986 6364 2896 9129 Face 4987 873 6405 6364 Face 4988 5185 3306 1166 Face 4989 114 3990 10975 Face 4990 6354 1459 3748 Face 4991 4904 8319 9882 Face 4992 6691 5522 3495 Face 4993 7090 5422 5722 Face 4994 6204 1532 3023 Face 4995 6204 5826 1532 Face 4996 9341 1089 3521 Face 4997 9124 9285 5038 Face 4998 6450 11088 9896 Face 4999 9590 1756 4358 Face 5000 3704 8218 1597 Face 5001 2670 6241 7285 Face 5002 8111 6218 1542 Face 5003 9948 4933 9071 Face 5004 8784 9799 5418 Face 5005 9799 3220 8680 Face 5006 2268 7141 10322 Face 5007 9712 9235 7141 Face 5008 6969 6557 2842 Face 5009 7463 1782 8943 Face 5010 3444 713 7725 Face 5011 5726 10386 714 Face 5012 9786 5197 1279 Face 5013 6712 3307 5197 Face 5014 10758 8337 2875 Face 5015 10758 4148 8337 Face 5016 1982 4763 4213 Face 5017 4306 5532 5662 Face 5018 5309 4307 6574 Face 5019 5266 6186 10082 Face 5020 8594 8732 2766 Face 5021 7980 4314 979 Face 5022 5266 9407 4314 Face 5023 5323 5623 1921 Face 5024 169 6962 6833 Face 5025 9911 10525 6515 Face 5026 10487 10145 5508 Face 5027 7031 8298 3190 Face 5028 7031 8359 8298 Face 5029 10939 4892 5228 Face 5030 30 10215 4892 Face 5031 9253 3982 8499 Face 5032 6570 4401 4760 Face 5033 1988 3100 771 Face 5034 6740 1417 2924 Face 5035 6273 1456 3693 Face 5036 7047 10203 6912 Face 5037 4633 1269 9613 Face 5038 9971 10997 10063 Face 5039 298 7219 5089 Face 5040 2763 4394 3323 Face 5041 4706 6739 717 Face 5042 4706 717 9037 Face 5043 1746 3400 5457 Face 5044 5291 7749 9849 Face 5045 1064 3526 10639 Face 5046 1553 719 2465 Face 5047 1207 10121 8615 Face 5048 8523 10418 8515 Face 5049 1793 2563 2935 Face 5050 2563 1793 2401 Face 5051 5063 4191 3750 Face 5052 3750 9238 6062 Face 5053 8235 9080 7483 Face 5054 10774 9080 8235 Face 5055 7555 7233 2516 Face 5056 7095 2170 3265 Face 5057 490 3795 10329 Face 5058 4087 2532 7068 Face 5059 1503 10279 9904 Face 5060 433 9904 5850 Face 5061 8585 1422 7553 Face 5062 6249 10100 2964 Face 5063 4976 6111 4671 Face 5064 10408 7977 630 Face 5065 10880 1732 5264 Face 5066 5700 6551 1554 Face 5067 51 711 2764 Face 5068 2949 7696 7080 Face 5069 2949 5309 722 Face 5070 7697 10445 1096 Face 5071 7697 8646 10445 Face 5072 2273 7870 6378 Face 5073 1536 5362 7870 Face 5074 1670 2813 6255 Face 5075 3514 8140 5523 Face 5076 10964 4070 8140 Face 5077 1377 1791 4677 Face 5078 10053 11015 1791 Face 5079 10137 6655 1610 Face 5080 10137 669 6655 Face 5081 7760 3357 8166 Face 5082 4751 5133 1825 Face 5083 4751 2539 5133 Face 5084 5524 6175 9244 Face 5085 11076 1910 3468 Face 5086 1974 7613 3752 Face 5087 6607 8864 1215 Face 5088 1212 5941 7694 Face 5089 3159 724 9024 Face 5090 5019 1769 1997 Face 5091 8206 9419 2477 Face 5092 4033 8876 728 Face 5093 4138 8318 5318 Face 5094 4085 9306 2384 Face 5095 7749 1405 3975 Face 5096 932 5608 1905 Face 5097 6404 5758 2173 Face 5098 6404 240 5758 Face 5099 1065 730 9212 Face 5100 1065 10894 730 Face 5101 9081 10589 10751 Face 5102 2007 4949 4827 Face 5103 7226 5832 4949 Face 5104 4224 4938 9758 Face 5105 22 1467 6663 Face 5106 10923 7482 2494 Face 5107 8460 6879 3239 Face 5108 4623 9173 22 Face 5109 4041 7486 7676 Face 5110 46 2107 3396 Face 5111 4 2664 2107 Face 5112 2441 9132 5426 Face 5113 2441 7421 9132 Face 5114 5072 4064 8316 Face 5115 10728 2398 6760 Face 5116 5755 354 7066 Face 5117 593 1534 1888 Face 5118 1800 10564 8671 Face 5119 4887 7746 7747 Face 5120 9846 9209 7746 Face 5121 7936 731 8735 Face 5122 3358 6196 5653 Face 5123 7754 308 4322 Face 5124 2462 4963 732 Face 5125 10226 7119 3312 Face 5126 9042 6665 1743 Face 5127 6170 4493 8734 Face 5128 10631 4418 4539 Face 5129 153 7062 9944 Face 5130 4968 3683 3685 Face 5131 4115 6678 2010 Face 5132 733 3979 8891 Face 5133 1796 6654 8567 Face 5134 3924 9729 8242 Face 5135 10415 7835 9729 Face 5136 8180 5577 5612 Face 5137 7732 1938 5692 Face 5138 5807 1848 9439 Face 5139 5139 8031 6238 Face 5140 3850 736 2154 Face 5141 3850 8768 736 Face 5142 3850 8066 8773 Face 5143 1113 5501 10157 Face 5144 8071 3162 10629 Face 5145 1643 10362 2829 Face 5146 1643 2829 920 Face 5147 7612 2094 2508 Face 5148 7612 2227 2094 Face 5149 7008 738 4549 Face 5150 7008 7869 738 Face 5151 4079 1325 1882 Face 5152 7798 5935 7283 Face 5153 1004 7922 3772 Face 5154 6782 10627 1004 Face 5155 9391 10548 8814 Face 5156 546 6511 6234 Face 5157 2928 540 6780 Face 5158 6466 9198 6467 Face 5159 6466 9223 9198 Face 5160 8327 741 7832 Face 5161 9845 4385 8936 Face 5162 9845 6334 9482 Face 5163 5437 3653 7126 Face 5164 10880 10206 6577 Face 5165 7784 7290 5301 Face 5166 10571 9586 7290 Face 5167 1523 8241 2361 Face 5168 1523 3923 8241 Face 5169 9604 2239 4178 Face 5170 5363 9501 742 Face 5171 6401 743 5663 Face 5172 5802 2824 744 Face 5173 7931 745 4025 Face 5174 7931 9601 745 Face 5175 5074 6366 10364 Face 5176 5841 548 10256 Face 5177 10569 10256 5656 Face 5178 10569 5841 10256 Face 5179 10474 3503 6729 Face 5180 3378 7618 6805 Face 5181 6267 857 8985 Face 5182 9384 2577 677 Face 5183 9384 4065 2577 Face 5184 3237 8696 8479 Face 5185 10619 2557 6982 Face 5186 3244 3293 1605 Face 5187 3244 7579 3293 Face 5188 5469 3603 8521 Face 5189 7926 4863 1676 Face 5190 10712 4539 10272 Face 5191 1336 7610 3154 Face 5192 10644 1846 2898 Face 5193 678 6093 165 Face 5194 678 7558 6093 Face 5195 3359 198 10618 Face 5196 1632 3823 224 Face 5197 1951 5610 3823 Face 5198 1014 751 4350 Face 5199 5027 3432 549 Face 5200 6481 2734 752 Face 5201 10832 3550 825 Face 5202 10832 8577 3550 Face 5203 10353 3874 1274 Face 5204 4989 5899 4133 Face 5205 8253 10154 2762 Face 5206 1222 1830 286 Face 5207 4346 596 6230 Face 5208 3944 510 9228 Face 5209 5704 5852 4878 Face 5210 3476 3612 1328 Face 5211 9849 7814 5291 Face 5212 9849 5930 3400 Face 5213 10041 4395 2502 Face 5214 10041 4046 4395 Face 5215 5712 7464 5548 Face 5216 8822 2142 9854 Face 5217 8822 7199 6212 Face 5218 1543 9196 5167 Face 5219 10891 10729 7099 Face 5220 3024 4391 11083 Face 5221 3024 10610 4391 Face 5222 5034 8455 4699 Face 5223 3153 584 4224 Face 5224 3247 5875 2247 Face 5225 6548 7954 6002 Face 5226 758 10303 10223 Face 5227 6658 5945 2569 Face 5228 3983 760 1367 Face 5229 1246 1511 5124 Face 5230 9742 7640 761 Face 5231 3984 1619 10806 Face 5232 3984 8287 1619 Face 5233 2513 10013 1915 Face 5234 2489 113 6561 Face 5235 1673 4758 3421 Face 5236 762 10123 1950 Face 5237 3989 762 1239 Face 5238 3989 10123 762 Face 5239 4831 8587 8480 Face 5240 7107 7883 8440 Face 5241 7107 7181 7883 Face 5242 3462 3254 10714 Face 5243 9455 1794 3254 Face 5244 811 4310 2456 Face 5245 5253 5819 10622 Face 5246 5253 6576 5819 Face 5247 2701 4555 8139 Face 5248 8952 9018 8411 Face 5249 5652 3475 1964 Face 5250 8922 4181 1870 Face 5251 6052 3124 8896 Face 5252 2679 2643 3707 Face 5253 7228 7163 7789 Face 5254 8984 4065 2543 Face 5255 11075 10914 7297 Face 5256 8216 5113 483 Face 5257 9032 7048 749 Face 5258 9032 3866 7048 Face 5259 2322 5097 7120 Face 5260 10400 764 10482 Face 5261 3945 7367 8283 Face 5262 3945 424 7367 Face 5263 9740 6404 3336 Face 5264 10004 2002 7477 Face 5265 1534 6183 5989 Face 5266 4160 7928 1158 Face 5267 2656 2236 7928 Face 5268 8890 4828 10768 Face 5269 8890 3812 4828 Face 5270 7820 611 4711 Face 5271 8343 5449 3776 Face 5272 4376 8397 6133 Face 5273 5298 8129 10234 Face 5274 9515 4683 6482 Face 5275 1014 4350 3003 Face 5276 5296 1876 1775 Face 5277 3741 1876 5296 Face 5278 4688 5499 8715 Face 5279 4688 3608 8851 Face 5280 9475 48 10289 Face 5281 9475 935 48 Face 5282 332 5991 848 Face 5283 2179 10783 8556 Face 5284 5635 9975 3485 Face 5285 5032 11111 3311 Face 5286 6075 1135 769 Face 5287 9454 4903 153 Face 5288 2891 9892 6399 Face 5289 4753 3615 2018 Face 5290 7854 770 4183 Face 5291 1328 5895 4294 Face 5292 1328 6399 5895 Face 5293 5932 386 6846 Face 5294 3387 3463 1907 Face 5295 7458 2158 8465 Face 5296 8674 8171 1055 Face 5297 8686 772 11056 Face 5298 8686 2396 772 Face 5299 14 4628 1864 Face 5300 1458 6470 7507 Face 5301 7707 5060 6165 Face 5302 4574 861 5060 Face 5303 7707 4574 5060 Face 5304 9727 7468 10972 Face 5305 9856 4023 6514 Face 5306 4593 9856 29 Face 5307 4593 3896 9856 Face 5308 1382 5325 10466 Face 5309 7697 8368 1094 Face 5310 6699 9156 9174 Face 5311 775 774 4744 Face 5312 6138 10692 9375 Face 5313 3845 8733 7574 Face 5314 1691 3033 8064 Face 5315 6236 284 3557 Face 5316 1053 5888 776 Face 5317 1496 3156 1427 Face 5318 1496 2163 3156 Face 5319 2850 2872 4137 Face 5320 3774 10002 777 Face 5321 42 9720 7111 Face 5322 6494 10436 1955 Face 5323 3838 10743 5513 Face 5324 3838 3158 10743 Face 5325 2206 7857 9650 Face 5326 4785 1777 10278 Face 5327 4696 6129 4485 Face 5328 6241 780 8698 Face 5329 1220 1326 5866 Face 5330 10887 4600 8959 Face 5331 9717 3854 781 Face 5332 137 8201 6188 Face 5333 137 1122 8201 Face 5334 3141 8898 4423 Face 5335 9637 9867 6054 Face 5336 439 517 10042 Face 5337 680 236 4557 Face 5338 5943 967 2418 Face 5339 5943 2657 8342 Face 5340 327 10315 1435 Face 5341 9153 8183 3149 Face 5342 6830 1609 9479 Face 5343 6830 3210 1609 Face 5344 1353 7545 7203 Face 5345 47 6205 2944 Face 5346 1975 784 1186 Face 5347 7140 7550 10991 Face 5348 8400 8422 10113 Face 5349 199 8024 8422 Face 5350 3794 5789 441 Face 5351 1269 9457 786 Face 5352 8944 10349 10779 Face 5353 5937 5929 10349 Face 5354 7760 3763 8017 Face 5355 6098 3440 6838 Face 5356 2854 113 2489 Face 5357 8945 2792 2596 Face 5358 7934 8421 788 Face 5359 10445 1868 10299 Face 5360 55 4342 789 Face 5361 55 3047 4342 Face 5362 8711 343 9905 Face 5363 2735 8139 4555 Face 5364 385 8908 7847 Face 5365 9241 9531 5278 Face 5366 9241 6881 9531 Face 5367 5576 6641 791 Face 5368 368 4465 7874 Face 5369 6915 7216 1156 Face 5370 3566 9754 7216 Face 5371 4632 2691 7400 Face 5372 4632 4369 2691 Face 5373 8099 4068 10270 Face 5374 8099 1462 4068 Face 5375 123 9287 3956 Face 5376 6570 8719 107 Face 5377 10965 793 10631 Face 5378 7938 3404 793 Face 5379 6634 1897 6346 Face 5380 6815 7495 1897 Face 5381 8444 11074 10978 Face 5382 2948 5894 6747 Face 5383 8033 2667 5440 Face 5384 8033 1313 7644 Face 5385 8033 4233 1313 Face 5386 5590 6935 2924 Face 5387 6935 781 8161 Face 5388 6325 11101 2630 Face 5389 6314 4937 5507 Face 5390 6325 6314 5507 Face 5391 9624 7644 1313 Face 5392 5910 7549 1835 Face 5393 5239 8496 3490 Face 5394 8199 10914 8496 Face 5395 10873 8199 3471 Face 5396 10873 10914 8199 Face 5397 4508 6510 8097 Face 5398 5708 3280 8635 Face 5399 4527 10494 7188 Face 5400 6297 10535 493 Face 5401 2273 3062 3458 Face 5402 9151 795 10187 Face 5403 9151 2603 795 Face 5404 4621 8434 2718 Face 5405 10554 2718 198 Face 5406 6932 7535 797 Face 5407 10906 9570 4767 Face 5408 9615 844 7272 Face 5409 3409 6605 4458 Face 5410 6035 6597 4743 Face 5411 2197 7608 6597 Face 5412 6035 2197 6597 Face 5413 10274 9393 10800 Face 5414 10274 3948 9393 Face 5415 4869 7485 3572 Face 5416 10736 2752 9232 Face 5417 10937 902 1697 Face 5418 10392 966 5873 Face 5419 7252 7740 7359 Face 5420 4437 10592 654 Face 5421 4437 9840 10592 Face 5422 2499 2846 11070 Face 5423 5113 9565 4891 Face 5424 4100 6579 5084 Face 5425 4100 6050 6579 Face 5426 3793 5843 5131 Face 5427 8216 3885 5843 Face 5428 8449 7067 10122 Face 5429 708 4123 8042 Face 5430 3359 10438 2718 Face 5431 10438 7363 4588 Face 5432 3258 3902 10204 Face 5433 8343 5961 5646 Face 5434 8343 3776 5961 Face 5435 7151 10427 8767 Face 5436 3147 5690 6013 Face 5437 3327 9931 7582 Face 5438 3147 1063 3327 Face 5439 10707 7564 10286 Face 5440 7465 8575 5982 Face 5441 3613 4213 2192 Face 5442 346 1342 4043 Face 5443 7338 1546 7537 Face 5444 6823 7430 1546 Face 5445 6094 7503 6758 Face 5446 7503 4728 7105 Face 5447 10594 1522 4317 Face 5448 9998 1984 2932 Face 5449 9998 10889 1984 Face 5450 6776 2132 5109 Face 5451 4407 7440 5768 Face 5452 4407 1839 7440 Face 5453 6035 3012 1679 Face 5454 4899 5697 2787 Face 5455 3562 2744 5697 Face 5456 3669 8773 6290 Face 5457 1939 4326 8354 Face 5458 8957 9802 9611 Face 5459 5306 5257 8930 Face 5460 2436 7655 7989 Face 5461 2436 2900 7655 Face 5462 569 10058 3907 Face 5463 10237 5922 6661 Face 5464 10237 4035 6854 Face 5465 5574 6606 5977 Face 5466 5574 4761 4331 Face 5467 1932 8706 2225 Face 5468 5429 8727 8706 Face 5469 5540 7761 366 Face 5470 963 3819 8113 Face 5471 7735 3141 4788 Face 5472 8073 3966 3141 Face 5473 3345 4738 4826 Face 5474 3859 1352 6823 Face 5475 2306 6179 6360 Face 5476 2306 8778 6179 Face 5477 7058 10823 8252 Face 5478 6978 4514 4418 Face 5479 6201 803 3355 Face 5480 6223 10185 803 Face 5481 6201 6223 803 Face 5482 9785 727 3081 Face 5483 9678 2295 5915 Face 5484 9678 5491 2295 Face 5485 3390 4138 10761 Face 5486 7411 5141 10717 Face 5487 8036 7775 5559 Face 5488 7515 1773 4749 Face 5489 3007 7065 8631 Face 5490 4913 804 7925 Face 5491 4913 4936 804 Face 5492 2252 5204 9711 Face 5493 8178 4980 4936 Face 5494 9101 6145 4980 Face 5495 2574 3029 4037 Face 5496 9220 1419 10561 Face 5497 9220 9731 1419 Face 5498 8911 3548 1658 Face 5499 3893 10620 273 Face 5500 7089 6025 8281 Face 5501 727 9785 11097 Face 5502 8487 10959 2011 Face 5503 7737 10665 3703 Face 5504 8185 7013 7996 Face 5505 3621 807 2954 Face 5506 5156 3094 807 Face 5507 8707 4871 8303 Face 5508 8707 10300 3190 Face 5509 9816 5626 3157 Face 5510 8435 5366 4110 Face 5511 8176 1665 1719 Face 5512 9701 4325 5281 Face 5513 9840 7889 4325 Face 5514 1420 6550 7675 Face 5515 10665 6607 7831 Face 5516 2250 5440 2667 Face 5517 156 10211 1877 Face 5518 1432 2820 10211 Face 5519 5980 9754 2983 Face 5520 3854 9717 7943 Face 5521 1613 3276 2072 Face 5522 1047 10818 5470 Face 5523 1149 809 5086 Face 5524 1149 2088 809 Face 5525 5468 252 9451 Face 5526 9950 5506 4253 Face 5527 2100 1528 10829 Face 5528 2054 7490 9725 Face 5529 5242 4862 5601 Face 5530 5242 8554 4862 Face 5531 3144 5639 4845 Face 5532 7228 2679 3707 Face 5533 7608 10120 6597 Face 5534 7608 10388 10120 Face 5535 5719 10309 6968 Face 5536 4847 7667 10309 Face 5537 6761 4310 811 Face 5538 10829 5180 2100 Face 5539 10829 2256 5180 Face 5540 5775 340 2575 Face 5541 5386 4797 5871 Face 5542 734 3622 8717 Face 5543 9729 4458 2326 Face 5544 8431 5194 10283 Face 5545 1974 10395 7613 Face 5546 6088 174 1398 Face 5547 467 8628 8930 Face 5548 1697 2915 8607 Face 5549 4203 2476 10143 Face 5550 356 10321 6739 Face 5551 2481 6987 191 Face 5552 3445 6292 5234 Face 5553 3445 460 6292 Face 5554 10359 4806 10069 Face 5555 10359 3053 4806 Face 5556 2097 5207 3960 Face 5557 9952 6385 840 Face 5558 10215 10659 6112 Face 5559 4998 1069 8367 Face 5560 6547 9430 816 Face 5561 6228 10716 3134 Face 5562 10429 6243 10716 Face 5563 10429 10716 6228 Face 5564 2613 2332 1536 Face 5565 2737 818 8321 Face 5566 3517 2377 6023 Face 5567 5893 6023 6172 Face 5568 518 7351 3853 Face 5569 3574 6428 7351 Face 5570 6839 8423 3578 Face 5571 6839 9735 8423 Face 5572 10977 5171 10563 Face 5573 10977 7909 5171 Face 5574 1563 9476 6822 Face 5575 9379 2254 10799 Face 5576 1410 10056 9762 Face 5577 5233 7613 8821 Face 5578 1426 8712 3581 Face 5579 6000 10469 2328 Face 5580 8179 6344 969 Face 5581 1280 3671 6638 Face 5582 3878 10699 2062 Face 5583 1010 3554 8215 Face 5584 1010 5299 3554 Face 5585 1928 8399 1853 Face 5586 90 7159 7040 Face 5587 90 7381 7159 Face 5588 43 4298 7540 Face 5589 1469 6954 4649 Face 5590 4298 2001 1469 Face 5591 1918 11096 3523 Face 5592 8870 820 4930 Face 5593 8721 4939 9026 Face 5594 6527 7492 821 Face 5595 188 9748 8570 Face 5596 3095 10474 824 Face 5597 5716 4568 2033 Face 5598 2917 10819 3205 Face 5599 2917 7448 3946 Face 5600 5088 2105 9273 Face 5601 8348 1194 11092 Face 5602 1154 344 7210 Face 5603 8423 2493 7884 Face 5604 2257 557 10930 Face 5605 6397 2257 5082 Face 5606 6104 557 2257 Face 5607 9353 825 701 Face 5608 9353 10832 825 Face 5609 2649 9627 8480 Face 5610 3733 3553 2704 Face 5611 3733 8625 4566 Face 5612 3011 3152 10033 Face 5613 92 4380 6164 Face 5614 6995 10491 2300 Face 5615 6995 10895 10491 Face 5616 586 3861 282 Face 5617 586 1471 3861 Face 5618 5130 10146 8643 Face 5619 1907 8137 10146 Face 5620 3221 2097 3960 Face 5621 9928 10723 2420 Face 5622 9928 8450 10723 Face 5623 8647 2360 9971 Face 5624 8647 2922 2360 Face 5625 8082 945 826 Face 5626 8637 9913 8859 Face 5627 554 7653 4130 Face 5628 7 3437 7346 Face 5629 10023 10928 312 Face 5630 11022 10165 6341 Face 5631 10103 4643 5966 Face 5632 10103 8579 4643 Face 5633 1293 2985 4759 Face 5634 11005 2205 10091 Face 5635 2578 667 10494 Face 5636 497 829 2897 Face 5637 10669 5631 829 Face 5638 3948 10403 4629 Face 5639 1673 6581 4758 Face 5640 3692 3587 830 Face 5641 87 4836 6596 Face 5642 4456 3829 4670 Face 5643 3142 3759 3474 Face 5644 3670 831 7195 Face 5645 3670 7720 831 Face 5646 3555 1628 6984 Face 5647 4689 8595 3173 Face 5648 10250 4689 3173 Face 5649 10250 10962 5714 Face 5650 5363 9604 8275 Face 5651 1741 7479 7416 Face 5652 3228 2219 8988 Face 5653 6389 10195 6909 Face 5654 11073 1685 4795 Face 5655 3443 1661 5781 Face 5656 6610 2028 3042 Face 5657 6608 6779 6371 Face 5658 5196 2901 314 Face 5659 3224 2885 834 Face 5660 4009 4642 7112 Face 5661 5071 5070 6408 Face 5662 7770 5816 2055 Face 5663 931 892 6633 Face 5664 10113 7019 8400 Face 5665 10113 9963 7019 Face 5666 9963 10992 7019 Face 5667 446 8820 6345 Face 5668 3830 11037 7580 Face 5669 3830 4376 11037 Face 5670 6554 6643 8636 Face 5671 7858 10486 3175 Face 5672 3890 7351 8796 Face 5673 3908 4622 5605 Face 5674 5858 836 7695 Face 5675 3639 164 4606 Face 5676 10859 4931 2479 Face 5677 3905 2186 7193 Face 5678 837 8330 6008 Face 5679 6752 838 9630 Face 5680 8286 5015 7419 Face 5681 8844 1644 5015 Face 5682 4344 3621 2954 Face 5683 8399 8606 1853 Face 5684 16 5885 7613 Face 5685 10972 5143 9727 Face 5686 10972 3079 5143 Face 5687 8429 5515 1159 Face 5688 10072 275 5515 Face 5689 9134 6649 7690 Face 5690 7496 2802 389 Face 5691 10542 1264 10580 Face 5692 3957 10544 1264 Face 5693 6185 6585 4557 Face 5694 6185 4697 6585 Face 5695 2204 6868 3260 Face 5696 8983 5867 4698 Face 5697 8451 4424 10312 Face 5698 11004 8282 4424 Face 5699 6862 9093 63 Face 5700 3306 648 2355 Face 5701 1478 9633 10857 Face 5702 10649 1534 6857 Face 5703 1888 10649 5965 Face 5704 1888 1534 10649 Face 5705 932 4808 11035 Face 5706 2341 842 7275 Face 5707 234 4438 3684 Face 5708 6257 4450 2036 Face 5709 163 9943 8549 Face 5710 163 7231 9943 Face 5711 6871 2320 7699 Face 5712 2628 9554 5735 Face 5713 10418 843 8515 Face 5714 4019 1508 843 Face 5715 183 6362 7109 Face 5716 183 4163 6362 Face 5717 5682 272 1707 Face 5718 2935 8733 3845 Face 5719 9197 2835 4594 Face 5720 5440 2948 4710 Face 5721 4839 940 3329 Face 5722 3344 846 3730 Face 5723 3344 7868 846 Face 5724 3470 8048 6070 Face 5725 1467 9173 9899 Face 5726 1467 22 9173 Face 5727 360 3339 2812 Face 5728 4149 715 8792 Face 5729 4258 7636 6154 Face 5730 7903 360 5580 Face 5731 8053 848 7328 Face 5732 10064 7907 2756 Face 5733 8370 2143 8398 Face 5734 8951 10308 6322 Face 5735 10930 557 2155 Face 5736 5012 5011 1662 Face 5737 759 2870 5522 Face 5738 9154 3722 849 Face 5739 5913 9492 1151 Face 5740 6293 3542 2451 Face 5741 7588 9860 4779 Face 5742 1237 910 2284 Face 5743 7242 1108 851 Face 5744 6295 8095 4234 Face 5745 163 1211 852 Face 5746 6232 853 5284 Face 5747 1519 6783 10376 Face 5748 10260 2346 8125 Face 5749 10539 8964 2422 Face 5750 2785 1488 10313 Face 5751 8926 406 1488 Face 5752 3144 7823 6056 Face 5753 3144 5957 7823 Face 5754 5925 7239 7611 Face 5755 7757 6547 816 Face 5756 5026 5330 6547 Face 5757 461 2368 6950 Face 5758 461 1716 2368 Face 5759 11034 9632 856 Face 5760 7921 7635 4794 Face 5761 4202 7882 4080 Face 5762 237 1899 2758 Face 5763 2114 5322 8246 Face 5764 2114 5107 5322 Face 5765 7214 3291 10023 Face 5766 2725 4448 3291 Face 5767 3963 8574 857 Face 5768 9536 2164 9060 Face 5769 6867 9091 6873 Face 5770 6733 10794 8748 Face 5771 6733 1331 10794 Face 5772 7435 859 606 Face 5773 859 6796 6311 Face 5774 2531 8531 529 Face 5775 10240 10241 10700 Face 5776 2750 2142 10737 Face 5777 4652 2535 2469 Face 5778 7712 3289 7408 Face 5779 7055 10086 2771 Face 5780 3926 860 10025 Face 5781 1470 454 10111 Face 5782 259 10178 9429 Face 5783 259 9337 10178 Face 5784 8079 10147 8587 Face 5785 9014 5326 3586 Face 5786 7311 862 10367 Face 5787 10583 9744 6414 Face 5788 5845 8317 8542 Face 5789 2586 1977 3777 Face 5790 7023 2586 6434 Face 5791 408 9267 8092 Face 5792 5537 6499 864 Face 5793 9480 3453 2122 Face 5794 7469 1903 8457 Face 5795 7469 10467 6053 Face 5796 1808 7491 8524 Face 5797 4225 575 9437 Face 5798 9669 865 325 Face 5799 6786 4863 9669 Face 5800 271 6745 3098 Face 5801 11052 3991 5911 Face 5802 5582 7822 3991 Face 5803 6471 3989 7499 Face 5804 8075 4734 925 Face 5805 8075 3269 4734 Face 5806 5883 2453 867 Face 5807 9170 1271 6278 Face 5808 10344 5121 9865 Face 5809 10444 7137 10815 Face 5810 4362 2793 4383 Face 5811 5522 6691 2793 Face 5812 4362 759 2793 Face 5813 1444 868 6235 Face 5814 6757 1444 10944 Face 5815 188 9171 6163 Face 5816 4805 7587 6705 Face 5817 7095 3265 7587 Face 5818 8922 10526 4181 Face 5819 6620 7723 8405 Face 5820 2403 3211 5043 Face 5821 2335 8275 9638 Face 5822 7415 9346 5993 Face 5823 6216 6869 605 Face 5824 6672 3374 5772 Face 5825 2763 298 1025 Face 5826 2763 9819 298 Face 5827 2511 9242 2168 Face 5828 8393 4057 9396 Face 5829 449 55 4057 Face 5830 6487 6173 3052 Face 5831 10363 2371 872 Face 5832 10805 8534 873 Face 5833 9196 3523 6078 Face 5834 9196 1543 3523 Face 5835 3865 8793 4289 Face 5836 3865 9068 8793 Face 5837 10785 8098 604 Face 5838 2454 5429 8098 Face 5839 5442 2454 8098 Face 5840 398 875 7463 Face 5841 398 5775 875 Face 5842 1988 876 10393 Face 5843 1988 7149 876 Face 5844 3695 4573 1487 Face 5845 3695 4967 9304 Face 5846 1658 3796 6835 Face 5847 8928 6221 5560 Face 5848 10710 5355 8379 Face 5849 9115 567 5355 Face 5850 7380 4687 10101 Face 5851 10124 6523 10220 Face 5852 9000 10566 6523 Face 5853 4294 5895 4791 Face 5854 1070 1731 8872 Face 5855 7864 9679 7546 Face 5856 3430 8285 3939 Face 5857 3430 4182 8285 Face 5858 10062 878 530 Face 5859 2870 8711 9905 Face 5860 6026 2992 2593 Face 5861 6026 2593 6388 Face 5862 939 7910 461 Face 5863 294 1745 4596 Face 5864 9295 7888 5498 Face 5865 10290 6763 4576 Face 5866 3023 5287 2358 Face 5867 1532 7742 5287 Face 5868 6593 2324 10651 Face 5869 5084 3583 1373 Face 5870 2407 3486 524 Face 5871 3197 6598 3231 Face 5872 7258 9265 3342 Face 5873 8579 2168 2790 Face 5874 4524 10150 8021 Face 5875 6303 4236 882 Face 5876 164 1756 4606 Face 5877 164 5734 1756 Face 5878 2267 9163 10366 Face 5879 830 7437 7294 Face 5880 1673 6355 883 Face 5881 8664 9623 7035 Face 5882 9103 6804 884 Face 5883 10100 9021 5729 Face 5884 10100 2551 9021 Face 5885 8507 6636 752 Face 5886 8507 5550 6636 Face 5887 5963 885 5125 Face 5888 5963 5067 885 Face 5889 9318 4754 8936 Face 5890 8040 9318 4385 Face 5891 8040 4754 9318 Face 5892 5114 6986 886 Face 5893 4156 2243 4405 Face 5894 11087 816 7930 Face 5895 3635 11087 7930 Face 5896 1007 1394 6496 Face 5897 8912 4560 1237 Face 5898 8525 3278 8904 Face 5899 183 520 5044 Face 5900 583 10362 1606 Face 5901 2829 10362 583 Face 5902 4836 9728 6596 Face 5903 4836 238 9728 Face 5904 7632 9061 8056 Face 5905 255 10557 10189 Face 5906 4995 7570 9641 Face 5907 8035 5482 4995 Face 5908 5185 4496 8210 Face 5909 5185 1166 4496 Face 5910 2139 4641 3839 Face 5911 170 10372 1441 Face 5912 746 2845 8993 Face 5913 746 5227 2845 Face 5914 7032 4950 374 Face 5915 7032 6014 4950 Face 5916 3143 5546 2290 Face 5917 3847 6923 8533 Face 5918 4359 2189 3847 Face 5919 1709 3416 7350 Face 5920 4781 10724 1011 Face 5921 2420 890 8243 Face 5922 2420 2050 890 Face 5923 7361 6769 10490 Face 5924 10339 5478 9300 Face 5925 5397 6116 3744 Face 5926 891 10634 7078 Face 5927 7004 891 7078 Face 5928 215 9102 891 Face 5929 475 6966 9013 Face 5930 5747 10623 2077 Face 5931 3263 7095 4805 Face 5932 3263 2170 5497 Face 5933 2629 5047 5222 Face 5934 9115 10710 1175 Face 5935 9115 5355 10710 Face 5936 8280 5928 10501 Face 5937 8507 2734 6988 Face 5938 8507 752 2734 Face 5939 5837 3811 6898 Face 5940 6243 9956 8530 Face 5941 434 9576 881 Face 5942 434 2533 9576 Face 5943 11109 9315 7562 Face 5944 11109 6358 9315 Face 5945 5488 533 6870 Face 5946 6865 8097 1699 Face 5947 3381 2300 9954 Face 5948 3381 6995 2300 Face 5949 5816 6633 892 Face 5950 7150 8074 1541 Face 5951 1772 893 6681 Face 5952 1772 10723 893 Face 5953 9410 3585 3140 Face 5954 7846 5669 894 Face 5955 10085 6021 1457 Face 5956 11038 895 6856 Face 5957 4295 4340 3350 Face 5958 2605 4558 989 Face 5959 4295 895 11038 Face 5960 10337 7145 1435 Face 5961 10953 8959 4600 Face 5962 7403 897 9994 Face 5963 1797 898 10864 Face 5964 2456 899 7513 Face 5965 8071 4273 899 Face 5966 2456 8071 899 Face 5967 427 2711 3815 Face 5968 265 1935 7797 Face 5969 265 6934 1935 Face 5970 1726 2805 9461 Face 5971 4293 6763 10290 Face 5972 2973 10561 1419 Face 5973 2973 1255 10561 Face 5974 828 7800 3986 Face 5975 7941 899 4366 Face 5976 7661 6342 84 Face 5977 10200 6918 421 Face 5978 5212 8938 6918 Face 5979 1194 2702 3625 Face 5980 3625 6741 10906 Face 5981 9740 2960 2969 Face 5982 9740 3336 2960 Face 5983 10875 2404 6955 Face 5984 10076 5032 3311 Face 5985 5351 820 8870 Face 5986 5351 10426 820 Face 5987 10727 10404 1398 Face 5988 8871 8438 10937 Face 5989 10924 8437 8438 Face 5990 106 8648 9324 Face 5991 10444 6166 3436 Face 5992 10444 1607 6166 Face 5993 269 1434 3967 Face 5994 9857 3477 9281 Face 5995 2865 355 3477 Face 5996 522 3305 11017 Face 5997 4102 8501 6687 Face 5998 3768 638 11067 Face 5999 8474 9933 3797 Face 6000 7848 1758 10882 Face 6001 1126 4663 10116 Face 6002 1126 6807 4663 Face 6003 3897 9290 3275 Face 6004 1850 4636 3478 Face 6005 2544 4762 1357 Face 6006 4473 340 2951 Face 6007 6097 5900 2202 Face 6008 6097 573 5900 Face 6009 5898 6970 11028 Face 6010 5898 5452 6970 Face 6011 96 3541 5645 Face 6012 10192 906 8685 Face 6013 10192 10933 906 Face 6014 3249 10637 3064 Face 6015 2434 5408 10637 Face 6016 2831 174 4864 Face 6017 2874 2762 7198 Face 6018 2762 5694 3700 Face 6019 8246 5322 10817 Face 6020 9995 10080 3375 Face 6021 10338 1499 1617 Face 6022 10457 4694 2798 Face 6023 5845 10257 8408 Face 6024 291 7485 909 Face 6025 196 9468 5275 Face 6026 8930 9470 5306 Face 6027 8930 5660 9470 Face 6028 8755 9470 5660 Face 6029 10572 7038 3219 Face 6030 3582 10478 5222 Face 6031 8029 4484 3582 Face 6032 7682 2980 4944 Face 6033 7682 8292 9011 Face 6034 6998 6863 3472 Face 6035 5428 4105 9445 Face 6036 7964 1644 10128 Face 6037 4952 8921 10952 Face 6038 9961 4177 3747 Face 6039 6747 6167 148 Face 6040 6620 8405 10848 Face 6041 8331 9230 577 Face 6042 2366 7962 1859 Face 6043 416 9706 1360 Face 6044 416 11053 6245 Face 6045 10074 4667 23 Face 6046 10074 3263 4667 Face 6047 4333 4047 9380 Face 6048 5251 10158 6785 Face 6049 10556 1759 3119 Face 6050 668 914 6840 Face 6051 8109 7259 4098 Face 6052 8109 5435 7259 Face 6053 1377 10053 1791 Face 6054 6847 8939 10104 Face 6055 6847 7210 8939 Face 6056 10470 6324 8116 Face 6057 6449 10986 6260 Face 6058 5259 1588 1555 Face 6059 4324 917 2918 Face 6060 8978 10534 10706 Face 6061 8978 2318 10534 Face 6062 37 4850 2345 Face 6063 3209 6210 7124 Face 6064 988 8223 2583 Face 6065 2731 8400 7292 Face 6066 7947 10291 4993 Face 6067 8433 8684 242 Face 6068 4518 3660 703 Face 6069 576 5724 7245 Face 6070 124 3972 5845 Face 6071 6416 6105 11020 Face 6072 6415 10676 6105 Face 6073 10784 11047 6738 Face 6074 239 451 11047 Face 6075 6315 9511 9230 Face 6076 10437 3365 8305 Face 6077 10065 9158 109 Face 6078 911 7475 9158 Face 6079 8219 920 11081 Face 6080 4480 4084 920 Face 6081 898 1150 10864 Face 6082 8222 3299 237 Face 6083 5276 9297 10786 Face 6084 2529 5712 7700 Face 6085 11008 7464 5712 Face 6086 8540 11008 5712 Face 6087 11008 258 6250 Face 6088 5100 2400 7184 Face 6089 4887 9846 7746 Face 6090 8973 1668 7295 Face 6091 2785 8926 1488 Face 6092 7988 3103 8926 Face 6093 9999 8926 2785 Face 6094 4610 922 10082 Face 6095 1733 1832 923 Face 6096 5172 2278 9262 Face 6097 4281 9392 9513 Face 6098 6421 924 6002 Face 6099 806 6029 8140 Face 6100 5289 3780 7652 Face 6101 448 3085 7489 Face 6102 10851 1235 10995 Face 6103 5874 4742 1235 Face 6104 5817 6449 7866 Face 6105 1074 9746 8811 Face 6106 6594 2707 7373 Face 6107 4473 10774 5674 Face 6108 5603 11062 4069 Face 6109 5603 2309 11062 Face 6110 10873 4341 10914 Face 6111 4814 8703 9676 Face 6112 4814 10976 8703 Face 6113 4508 1079 6510 Face 6114 4508 723 1079 Face 6115 6091 1178 2472 Face 6116 6091 7706 928 Face 6117 678 929 440 Face 6118 4592 10047 5268 Face 6119 4592 7362 10047 Face 6120 11064 9256 7772 Face 6121 6215 4722 3376 Face 6122 7911 3689 7081 Face 6123 5492 3564 2504 Face 6124 6091 2204 5062 Face 6125 5177 7702 11041 Face 6126 5177 6666 7702 Face 6127 1112 2144 6683 Face 6128 7936 3358 5653 Face 6129 7936 1336 3358 Face 6130 5567 934 7448 Face 6131 1421 7878 298 Face 6132 2970 7029 4941 Face 6133 1165 3323 6233 Face 6134 10472 2621 10752 Face 6135 5304 10529 5392 Face 6136 113 2854 8311 Face 6137 9931 9023 11031 Face 6138 9931 7649 9023 Face 6139 4381 5511 10609 Face 6140 4381 3642 7521 Face 6141 2823 4368 10988 Face 6142 2823 9863 4368 Face 6143 10967 4643 4274 Face 6144 2138 9177 10012 Face 6145 8461 10076 3311 Face 6146 7088 5096 1900 Face 6147 6979 7296 4200 Face 6148 6979 3843 3952 Face 6149 1722 5202 2277 Face 6150 7744 1870 10326 Face 6151 7744 8815 1870 Face 6152 1872 8138 3614 Face 6153 10547 3879 2352 Face 6154 10795 4299 3875 Face 6155 2044 5213 7988 Face 6156 5383 9895 9028 Face 6157 10804 7648 4815 Face 6158 9775 9685 7103 Face 6159 649 5857 2909 Face 6160 7786 5236 940 Face 6161 3051 7047 6912 Face 6162 9764 9765 9626 Face 6163 9707 2343 1403 Face 6164 10981 6598 10979 Face 6165 4876 7389 2813 Face 6166 4876 3132 7389 Face 6167 10322 941 7801 Face 6168 41 10168 6868 Face 6169 5031 4443 7925 Face 6170 5665 2231 1463 Face 6171 5665 942 1887 Face 6172 3050 8421 6258 Face 6173 788 8421 3050 Face 6174 6949 5092 2716 Face 6175 3134 5953 943 Face 6176 8652 5837 7356 Face 6177 7835 4458 9729 Face 6178 5108 2048 1278 Face 6179 7203 7545 2048 Face 6180 3828 10825 4217 Face 6181 946 10285 10825 Face 6182 2721 9143 1428 Face 6183 8843 2348 5782 Face 6184 8277 3186 3772 Face 6185 8277 8005 3186 Face 6186 6364 7365 2896 Face 6187 6364 4638 7365 Face 6188 10989 2979 3987 Face 6189 6429 8678 1506 Face 6190 4109 947 7073 Face 6191 9120 2810 3771 Face 6192 8974 10081 8759 Face 6193 8974 552 10081 Face 6194 2998 8974 8759 Face 6195 5058 8426 7039 Face 6196 7096 9423 8255 Face 6197 5099 7096 10375 Face 6198 4501 5001 3786 Face 6199 175 578 249 Face 6200 10396 4070 6070 Face 6201 2895 3836 5334 Face 6202 4475 6247 6539 Face 6203 7026 8892 4955 Face 6204 8538 8602 6045 Face 6205 8892 4502 4955 Face 6206 8892 5030 4502 Face 6207 8072 10160 1123 Face 6208 6655 9627 5978 Face 6209 6098 6254 952 Face 6210 9720 6098 952 Face 6211 1578 6457 8831 Face 6212 367 8538 2365 Face 6213 2964 5240 4671 Face 6214 4983 7807 4401 Face 6215 4983 9672 7807 Face 6216 10030 953 10854 Face 6217 8470 4748 953 Face 6218 9512 9164 3999 Face 6219 9164 8968 9809 Face 6220 9944 5152 7822 Face 6221 9725 954 2054 Face 6222 5225 3779 2311 Face 6223 5224 7619 3779 Face 6224 7142 4680 8953 Face 6225 1328 4294 3688 Face 6226 8474 8644 9933 Face 6227 3846 8619 2440 Face 6228 6335 1680 6991 Face 6229 6335 3549 7739 Face 6230 8691 4358 1756 Face 6231 8691 3164 4358 Face 6232 7955 2207 10115 Face 6233 2637 6653 6674 Face 6234 5122 3849 9700 Face 6235 9471 6663 1467 Face 6236 9471 7466 10647 Face 6237 394 6810 3875 Face 6238 5210 9474 1959 Face 6239 3536 8253 958 Face 6240 4003 10232 4907 Face 6241 4003 959 10232 Face 6242 5501 8902 8629 Face 6243 8902 10889 8629 Face 6244 690 2006 8234 Face 6245 2847 4942 5303 Face 6246 5764 6651 8077 Face 6247 10968 9603 6651 Face 6248 10158 5251 960 Face 6249 7050 3083 4450 Face 6250 1092 5518 9823 Face 6251 8571 8448 8564 Face 6252 7506 5716 5931 Face 6253 4225 1736 7494 Face 6254 8549 385 7865 Face 6255 2302 8827 6185 Face 6256 2302 2414 1338 Face 6257 36 7125 8391 Face 6258 8725 7849 5970 Face 6259 10565 4599 6996 Face 6260 36 9986 7787 Face 6261 10565 6996 7787 Face 6262 8325 962 6757 Face 6263 5512 1374 9267 Face 6264 5512 10981 1374 Face 6265 10981 7158 9751 Face 6266 3026 7924 11042 Face 6267 1202 2945 7924 Face 6268 10867 8679 6666 Face 6269 158 4486 9664 Face 6270 5032 9229 7891 Face 6271 5032 10076 9229 Face 6272 680 4556 3837 Face 6273 4580 7786 940 Face 6274 10413 3848 7786 Face 6275 9499 964 2220 Face 6276 5338 10591 10267 Face 6277 10392 3802 966 Face 6278 6820 1930 8955 Face 6279 2213 6136 10383 Face 6280 2213 7912 6136 Face 6281 6940 2264 1457 Face 6282 10273 8623 2264 Face 6283 8572 9696 9862 Face 6284 8572 10616 9696 Face 6285 9782 5129 1337 Face 6286 9782 10600 3638 Face 6287 8729 9979 6943 Face 6288 10263 7923 6626 Face 6289 1059 2808 7284 Face 6290 8367 1069 5797 Face 6291 4708 5404 6109 Face 6292 7108 4173 3856 Face 6293 10577 6396 764 Face 6294 10577 5576 6396 Face 6295 5275 968 1589 Face 6296 5275 9468 968 Face 6297 5230 2749 7106 Face 6298 7935 10971 4768 Face 6299 4768 3030 9014 Face 6300 5637 969 3419 Face 6301 5637 8179 969 Face 6302 4959 4786 5115 Face 6303 4959 1809 4786 Face 6304 7517 971 2883 Face 6305 3497 3813 8482 Face 6306 5419 9551 10994 Face 6307 4116 3539 972 Face 6308 4574 7541 861 Face 6309 5440 5894 2948 Face 6310 5440 2250 5894 Face 6311 5755 7066 2100 Face 6312 1515 4479 8060 Face 6313 1515 9258 2347 Face 6314 4922 7755 7527 Face 6315 4922 6999 7755 Face 6316 6620 4403 7723 Face 6317 6321 6319 9918 Face 6318 8023 4021 9602 Face 6319 1121 4438 5673 Face 6320 1121 3684 4438 Face 6321 3959 4500 6861 Face 6322 9128 9512 5502 Face 6323 8025 6576 332 Face 6324 8025 5317 6576 Face 6325 10833 8320 3450 Face 6326 10833 9998 8320 Face 6327 6172 3075 973 Face 6328 1104 5170 7729 Face 6329 757 6002 7954 Face 6330 5616 10345 5873 Face 6331 10911 10392 10345 Face 6332 7099 5514 6403 Face 6333 257 3618 7263 Face 6334 1538 1408 1908 Face 6335 7212 975 7890 Face 6336 7212 7178 975 Face 6337 538 539 6490 Face 6338 6004 1669 976 Face 6339 4699 4910 5034 Face 6340 358 977 2700 Face 6341 257 6317 2823 Face 6342 257 7263 6317 Face 6343 8732 4657 9254 Face 6344 4215 653 9020 Face 6345 6485 10152 4454 Face 6346 5721 10381 6925 Face 6347 4001 3765 9924 Face 6348 8321 2233 1401 Face 6349 7214 2725 3291 Face 6350 10958 7324 3150 Face 6351 4686 6398 2519 Face 6352 150 10686 6026 Face 6353 150 8678 10686 Face 6354 9726 7109 6362 Face 6355 3674 6623 5721 Face 6356 336 5904 8701 Face 6357 3901 6393 7913 Face 6358 9331 4467 431 Face 6359 839 4668 9858 Face 6360 2527 7547 7005 Face 6361 9861 8933 6774 Face 6362 7886 6066 4249 Face 6363 3681 10390 4719 Face 6364 3681 4772 983 Face 6365 6774 1478 10857 Face 6366 7050 4450 6644 Face 6367 2497 10099 8092 Face 6368 172 10731 8837 Face 6369 172 2131 10731 Face 6370 3694 3255 1767 Face 6371 5019 5621 560 Face 6372 7003 1669 6990 Face 6373 2129 8640 10702 Face 6374 2640 985 4097 Face 6375 323 4107 985 Face 6376 9159 6224 6664 Face 6377 1047 737 10818 Face 6378 10448 5765 2251 Face 6379 10448 10235 5765 Face 6380 6936 9367 5916 Face 6381 114 6475 9367 Face 6382 4100 4953 6050 Face 6383 4100 3034 4953 Face 6384 4134 9152 3920 Face 6385 9095 3237 9152 Face 6386 4134 9095 9152 Face 6387 8769 7056 9095 Face 6388 7373 10372 651 Face 6389 3756 5654 5919 Face 6390 5369 1968 5527 Face 6391 4461 9777 3275 Face 6392 4461 6321 9777 Face 6393 587 5312 987 Face 6394 6063 8676 8412 Face 6395 8801 4189 6357 Face 6396 19 5293 1749 Face 6397 19 9433 9211 Face 6398 19 8975 9433 Face 6399 125 988 2583 Face 6400 125 7470 988 Face 6401 7929 2605 989 Face 6402 1056 2521 5353 Face 6403 10788 8364 3954 Face 6404 6328 2564 9017 Face 6405 10975 6206 6475 Face 6406 508 8855 9158 Face 6407 144 7598 9002 Face 6408 144 5601 7598 Face 6409 4724 3272 8743 Face 6410 2003 4717 10156 Face 6411 126 5584 2003 Face 6412 10905 222 11024 Face 6413 6330 8469 5332 Face 6414 5083 7584 1863 Face 6415 3241 2974 7584 Face 6416 7488 3519 10245 Face 6417 2128 7942 3519 Face 6418 7092 9176 3980 Face 6419 7092 10332 9176 Face 6420 7900 6887 932 Face 6421 1262 5341 6887 Face 6422 3056 7927 3168 Face 6423 1139 10341 7927 Face 6424 10586 7527 7755 Face 6425 588 11059 94 Face 6426 3068 7001 6339 Face 6427 3068 991 7001 Face 6428 9948 991 10151 Face 6429 5465 7849 5426 Face 6430 2861 8107 8223 Face 6431 9251 992 6845 Face 6432 9251 2826 992 Face 6433 5432 8500 1045 Face 6434 1880 9593 8612 Face 6435 1880 28 9593 Face 6436 6934 3345 4826 Face 6437 6616 994 8217 Face 6438 6616 8245 994 Face 6439 9059 995 3716 Face 6440 9059 10605 995 Face 6441 4078 9910 9608 Face 6442 4078 1649 9910 Face 6443 7058 996 302 Face 6444 8180 2061 996 Face 6445 7558 10756 1496 Face 6446 998 3259 189 Face 6447 4003 998 959 Face 6448 105 7531 4015 Face 6449 1201 10594 5536 Face 6450 5108 4692 2048 Face 6451 4197 8269 2447 Face 6452 4197 2940 8269 Face 6453 7213 503 2940 Face 6454 7213 1224 503 Face 6455 8268 999 10488 Face 6456 3556 9936 999 Face 6457 9053 6339 5326 Face 6458 6903 4042 1359 Face 6459 676 1131 4042 Face 6460 6666 7873 10867 Face 6461 6666 5177 7873 Face 6462 8868 4468 1000 Face 6463 4713 8803 5207 Face 6464 4246 4436 9212 Face 6465 1002 3679 1926 Face 6466 4406 425 7666 Face 6467 5827 4406 9155 Face 6468 429 8828 9647 Face 6469 4850 2666 11004 Face 6470 8692 2374 4499 Face 6471 7865 5711 1003 Face 6472 3098 7912 2562 Face 6473 3098 6136 7912 Face 6474 2060 6961 6900 Face 6475 11076 1906 5602 Face 6476 5865 3996 6506 Face 6477 5865 4082 3996 Face 6478 7660 10474 2643 Face 6479 8158 10849 7474 Face 6480 10044 833 2956 Face 6481 9807 3623 5719 Face 6482 5366 8435 3623 Face 6483 7739 2968 6991 Face 6484 7739 630 2968 Face 6485 1255 11102 4946 Face 6486 6161 1004 9793 Face 6487 7390 9534 1005 Face 6488 9169 6842 4269 Face 6489 8741 1250 6730 Face 6490 7139 4653 10132 Face 6491 9072 7169 5555 Face 6492 9914 6176 5816 Face 6493 5745 5500 9914 Face 6494 10299 5288 1707 Face 6495 1394 1007 2443 Face 6496 8668 1008 9130 Face 6497 2418 967 9364 Face 6498 2355 1166 3306 Face 6499 6572 6886 4005 Face 6500 6787 1848 5807 Face 6501 98 9572 3610 Face 6502 4235 4825 3899 Face 6503 4235 11107 4825 Face 6504 10572 10259 3797 Face 6505 8216 5843 3793 Face 6506 3435 1913 4185 Face 6507 4365 2046 2827 Face 6508 2876 1686 5330 Face 6509 7614 8966 4505 Face 6510 3419 10927 5637 Face 6511 9541 8089 10927 Face 6512 4213 5198 1982 Face 6513 3349 11026 6269 Face 6514 1673 883 7867 Face 6515 9368 4680 10587 Face 6516 5700 8953 4680 Face 6517 4289 833 3862 Face 6518 1305 2512 4395 Face 6519 8775 6628 2512 Face 6520 2966 6128 8382 Face 6521 8316 4374 6128 Face 6522 3285 1238 7568 Face 6523 4213 1786 5880 Face 6524 3011 10398 2425 Face 6525 3011 6497 10398 Face 6526 4992 4933 2041 Face 6527 3045 9071 4933 Face 6528 5595 3126 5028 Face 6529 4196 4051 7473 Face 6530 1837 1010 8215 Face 6531 1837 8946 1010 Face 6532 6506 10604 3833 Face 6533 10440 9670 7304 Face 6534 10440 627 9670 Face 6535 5176 3102 10277 Face 6536 9014 53 9213 Face 6537 9014 3030 53 Face 6538 9283 2124 4494 Face 6539 7478 8916 5840 Face 6540 6476 7491 9850 Face 6541 6188 9467 3263 Face 6542 10268 1015 2676 Face 6543 10590 5338 1015 Face 6544 2934 10021 1123 Face 6545 8958 6933 6265 Face 6546 9003 3046 134 Face 6547 76 2903 1324 Face 6548 8272 9644 2903 Face 6549 4977 6241 5683 Face 6550 4977 780 6241 Face 6551 10227 10390 3282 Face 6552 9029 3187 10390 Face 6553 7767 1016 9018 Face 6554 10223 7581 1016 Face 6555 9649 6156 2065 Face 6556 9260 3437 6351 Face 6557 2658 8718 7827 Face 6558 3426 419 8294 Face 6559 10198 9387 419 Face 6560 4685 10094 4839 Face 6561 4674 3791 10065 Face 6562 4674 10475 3791 Face 6563 1677 263 2314 Face 6564 7954 6548 7571 Face 6565 9590 9619 1971 Face 6566 3293 1545 1605 Face 6567 3293 5792 1545 Face 6568 5496 10123 10556 Face 6569 3262 2026 9388 Face 6570 2797 6848 2611 Face 6571 7307 9746 7652 Face 6572 4627 7256 9746 Face 6573 7307 4627 9746 Face 6574 3340 2744 3562 Face 6575 9821 9262 2278 Face 6576 5977 6606 7134 Face 6577 3748 980 6261 Face 6578 2768 9691 1018 Face 6579 10842 1019 6862 Face 6580 10842 1276 1019 Face 6581 10770 8037 4943 Face 6582 99 6320 11027 Face 6583 5364 7070 7349 Face 6584 5364 4755 7070 Face 6585 832 7668 4841 Face 6586 832 4631 7668 Face 6587 10548 2460 8814 Face 6588 10548 925 6240 Face 6589 7064 7309 1020 Face 6590 5174 8182 1152 Face 6591 7952 2659 5085 Face 6592 2560 7771 9733 Face 6593 2560 9167 7771 Face 6594 7459 5630 900 Face 6595 7459 1634 5630 Face 6596 226 8258 2490 Face 6597 9125 8212 10182 Face 6598 9125 2490 2121 Face 6599 6454 5877 3280 Face 6600 622 10803 4127 Face 6601 6450 4720 10510 Face 6602 7743 4372 7776 Face 6603 8524 8219 10597 Face 6604 6615 7102 1513 Face 6605 6615 2466 7102 Face 6606 6615 6764 2466 Face 6607 9436 9663 8545 Face 6608 153 6695 9454 Face 6609 153 9944 2780 Face 6610 458 9478 9379 Face 6611 10515 10904 8782 Face 6612 10322 7141 10904 Face 6613 3715 990 1167 Face 6614 6281 6330 990 Face 6615 9652 1582 1023 Face 6616 6746 1462 6561 Face 6617 8746 2168 5454 Face 6618 9482 4385 9845 Face 6619 9482 4851 4385 Face 6620 10781 7365 7683 Face 6621 10781 8622 8080 Face 6622 9227 1025 10819 Face 6623 5418 8680 5824 Face 6624 5418 8017 9970 Face 6625 9907 1934 6775 Face 6626 9907 4529 1934 Face 6627 9840 6583 10687 Face 6628 5773 11078 1929 Face 6629 5773 7985 11078 Face 6630 1044 1697 8858 Face 6631 2161 5951 10388 Face 6632 7972 10777 6964 Face 6633 2005 2658 5014 Face 6634 2862 1027 5683 Face 6635 2862 5312 1027 Face 6636 2670 5312 2862 Face 6637 7392 5632 9778 Face 6638 10261 10630 1452 Face 6639 135 1540 6048 Face 6640 2068 3492 4893 Face 6641 9932 8440 3492 Face 6642 3829 8451 10312 Face 6643 508 650 8855 Face 6644 508 3674 650 Face 6645 65 7996 7013 Face 6646 9798 5416 5591 Face 6647 9798 10683 5416 Face 6648 6691 3495 3482 Face 6649 10899 2154 3944 Face 6650 9177 8057 1979 Face 6651 2149 5598 5204 Face 6652 8204 9575 3059 Face 6653 5661 1795 6859 Face 6654 10936 3473 8940 Face 6655 10936 2606 10552 Face 6656 1846 10644 1019 Face 6657 7753 7287 10283 Face 6658 8987 10999 688 Face 6659 3450 8320 1030 Face 6660 6591 9328 10832 Face 6661 9200 4577 1032 Face 6662 4487 1033 5888 Face 6663 6756 4342 1033 Face 6664 6773 10773 7851 Face 6665 9477 3717 3928 Face 6666 3907 2317 6424 Face 6667 3907 10058 2317 Face 6668 6875 9755 1914 Face 6669 6875 2858 9755 Face 6670 428 1034 3337 Face 6671 7913 6393 7036 Face 6672 2165 1035 5267 Face 6673 6292 4525 4783 Face 6674 10607 1812 2038 Face 6675 8721 5316 2342 Face 6676 10847 7801 3258 Face 6677 10847 10322 7801 Face 6678 3131 1764 9051 Face 6679 10297 3604 3941 Face 6680 7615 5395 8811 Face 6681 3872 5402 5395 Face 6682 3371 7770 2055 Face 6683 2961 3374 8563 Face 6684 1253 8237 4164 Face 6685 4798 6801 446 Face 6686 6895 624 10096 Face 6687 9934 9944 7062 Face 6688 10511 5998 3083 Face 6689 1887 2231 5665 Face 6690 4527 2503 4015 Face 6691 7195 2592 3248 Face 6692 3071 3048 388 Face 6693 10641 10724 2936 Face 6694 3790 6804 9103 Face 6695 3790 8692 6804 Face 6696 4369 9781 7937 Face 6697 4369 3494 9294 Face 6698 371 10762 1036 Face 6699 2421 5289 1074 Face 6700 4994 3780 5289 Face 6701 1747 1037 9767 Face 6702 5099 684 7096 Face 6703 5099 238 684 Face 6704 8226 1038 9035 Face 6705 6915 4169 4553 Face 6706 5529 1039 3465 Face 6707 7764 10964 1039 Face 6708 8317 2243 8542 Face 6709 9091 6867 3852 Face 6710 8344 4253 7053 Face 6711 205 1040 4613 Face 6712 2356 6222 1040 Face 6713 9698 3006 9046 Face 6714 2473 9005 3088 Face 6715 10696 8392 5201 Face 6716 1629 4691 10336 Face 6717 1629 8147 4691 Face 6718 4146 3629 2021 Face 6719 7467 6980 8661 Face 6720 6432 9730 10296 Face 6721 4183 8032 7028 Face 6722 4183 770 8032 Face 6723 2543 677 1041 Face 6724 2433 6748 6343 Face 6725 348 6861 8719 Face 6726 4932 5935 7798 Face 6727 9826 6911 5790 Face 6728 2054 993 8207 Face 6729 929 165 440 Face 6730 1042 4995 1721 Face 6731 11073 4795 2279 Face 6732 8384 10060 8725 Face 6733 8384 1327 10060 Face 6734 6972 3417 1480 Face 6735 6020 5062 1043 Face 6736 2417 3465 5637 Face 6737 6009 6301 10603 Face 6738 11088 7414 7693 Face 6739 4282 9969 9137 Face 6740 236 9969 4282 Face 6741 9954 3658 3381 Face 6742 4567 8914 2861 Face 6743 141 7570 4995 Face 6744 7362 4592 7946 Face 6745 838 2669 1045 Face 6746 537 3495 9905 Face 6747 7307 7843 2288 Face 6748 9003 7136 8434 Face 6749 8456 1657 1084 Face 6750 2677 1046 6707 Face 6751 6844 6501 8996 Face 6752 5470 1245 1047 Face 6753 6727 9899 1052 Face 6754 8839 8497 2068 Face 6755 2424 2910 8989 Face 6756 4421 3798 6556 Face 6757 9566 2448 4509 Face 6758 9815 7178 1048 Face 6759 3097 3425 4562 Face 6760 1954 3217 4263 Face 6761 5870 760 5204 Face 6762 6903 676 4042 Face 6763 9868 833 7206 Face 6764 684 4836 833 Face 6765 10487 9668 8504 Face 6766 10487 10525 9668 Face 6767 2439 10512 1052 Face 6768 5406 8258 1725 Face 6769 469 2504 5425 Face 6770 4030 1053 2416 Face 6771 10788 3954 1056 Face 6772 173 6816 2947 Face 6773 2264 45 10273 Face 6774 10274 2601 3948 Face 6775 8767 147 2601 Face 6776 7999 8425 2357 Face 6777 7999 3927 8425 Face 6778 1007 6264 9237 Face 6779 5862 5336 1508 Face 6780 3791 10475 9434 Face 6781 3363 8745 8552 Face 6782 9628 673 8658 Face 6783 6323 5487 6602 Face 6784 4672 2815 2299 Face 6785 4672 5554 3906 Face 6786 7403 4515 7372 Face 6787 4219 8310 8876 Face 6788 6494 8271 8613 Face 6789 6185 4557 2302 Face 6790 6811 571 6698 Face 6791 5294 10165 136 Face 6792 2316 719 8394 Face 6793 5986 3611 6195 Face 6794 5099 10375 9822 Face 6795 5215 1060 5748 Face 6796 5215 2002 9997 Face 6797 8595 4491 3173 Face 6798 7374 9178 8595 Face 6799 7974 9316 7404 Face 6800 9449 10176 9316 Face 6801 395 4704 1054 Face 6802 2881 2085 4704 Face 6803 7233 7817 2516 Face 6804 4465 368 7817 Face 6805 3686 4283 9162 Face 6806 2962 1062 5557 Face 6807 2962 9581 1062 Face 6808 3169 9628 6119 Face 6809 8919 5815 8149 Face 6810 2807 4268 5310 Face 6811 2742 3211 10645 Face 6812 2742 10645 10520 Face 6813 10125 2145 8081 Face 6814 9006 6553 739 Face 6815 9006 4996 6553 Face 6816 6004 5138 83 Face 6817 976 3666 5138 Face 6818 2685 4778 9359 Face 6819 11 7165 9276 Face 6820 4886 5483 7089 Face 6821 404 2608 3326 Face 6822 10150 6730 2608 Face 6823 8050 8021 10150 Face 6824 151 7767 6095 Face 6825 5691 10310 2559 Face 6826 2410 7734 3872 Face 6827 1610 10447 7734 Face 6828 7748 7483 8610 Face 6829 3915 629 6749 Face 6830 3411 7279 10988 Face 6831 3411 8557 7279 Face 6832 2689 2445 9921 Face 6833 10959 1301 2445 Face 6834 1363 3869 7836 Face 6835 10358 3963 9791 Face 6836 2548 4172 9942 Face 6837 1447 7079 10133 Face 6838 1050 8872 3417 Face 6839 4436 1065 9212 Face 6840 4879 6530 340 Face 6841 4879 4990 6530 Face 6842 7407 4085 7223 Face 6843 7435 5439 8238 Face 6844 9480 695 1818 Face 6845 9480 2122 695 Face 6846 398 7463 2995 Face 6847 1232 10024 5539 Face 6848 1466 7063 254 Face 6849 1730 4727 1512 Face 6850 9621 4980 6145 Face 6851 94 6600 5134 Face 6852 94 11059 6600 Face 6853 4339 4130 4268 Face 6854 4339 7860 4130 Face 6855 5355 7860 4339 Face 6856 8802 6386 2407 Face 6857 8802 4265 6386 Face 6858 6386 8229 2407 Face 6859 2240 7033 7358 Face 6860 673 9628 7033 Face 6861 7004 6665 9042 Face 6862 7004 7078 6665 Face 6863 8144 7486 1068 Face 6864 1344 1365 3512 Face 6865 9056 4508 5046 Face 6866 8768 9877 8105 Face 6867 10277 10910 10749 Face 6868 1587 7671 6989 Face 6869 531 10184 5157 Face 6870 3951 7606 9609 Face 6871 8463 7932 10015 Face 6872 1707 5288 5682 Face 6873 454 7016 10111 Face 6874 11036 1978 6096 Face 6875 8239 1560 6817 Face 6876 8416 2192 4213 Face 6877 8416 5797 1069 Face 6878 5458 8013 792 Face 6879 5668 8503 1942 Face 6880 6039 5579 2860 Face 6881 2913 2877 1070 Face 6882 1557 5680 4826 Face 6883 5680 4108 7144 Face 6884 2549 7294 1071 Face 6885 8611 6709 1030 Face 6886 63 5325 8389 Face 6887 7795 7423 2051 Face 6888 1776 2110 7423 Face 6889 6042 10943 11074 Face 6890 5208 5297 10943 Face 6891 4852 3077 1072 Face 6892 9950 7109 9317 Face 6893 5879 1073 6384 Face 6894 5879 5730 1073 Face 6895 258 5879 6250 Face 6896 6431 2084 11084 Face 6897 485 8877 8880 Face 6898 10955 3331 8136 Face 6899 5866 9394 3332 Face 6900 10177 8001 3332 Face 6901 7383 5365 8307 Face 6902 9401 2437 3455 Face 6903 9401 5875 2437 Face 6904 4364 8413 7190 Face 6905 4364 1687 8413 Face 6906 322 8949 3509 Face 6907 6768 8476 2668 Face 6908 10360 2894 8198 Face 6909 10360 4335 2894 Face 6910 5180 9713 10780 Face 6911 10451 3329 9076 Face 6912 366 9855 5540 Face 6913 555 7385 5912 Face 6914 1429 3392 5828 Face 6915 6673 8194 3605 Face 6916 8534 10805 1796 Face 6917 2187 6673 1448 Face 6918 2187 2671 6673 Face 6919 2571 2187 6495 Face 6920 7998 2215 6507 Face 6921 6015 1994 5604 Face 6922 9698 1076 3006 Face 6923 6177 1880 1076 Face 6924 5097 1078 8837 Face 6925 5097 1402 1078 Face 6926 2586 5347 6434 Face 6927 2586 1263 5347 Face 6928 1237 4320 8912 Face 6929 2284 7588 8484 Face 6930 3438 3915 6749 Face 6931 2261 475 9013 Face 6932 7424 10678 5241 Face 6933 2905 2424 11054 Face 6934 4964 2910 2424 Face 6935 246 10537 8128 Face 6936 9945 4644 7611 Face 6937 10305 1081 6044 Face 6938 4550 6908 718 Face 6939 10213 4168 8009 Face 6940 8801 8064 4189 Face 6941 8801 3888 8064 Face 6942 4632 3161 3494 Face 6943 5684 5481 6328 Face 6944 8499 2526 8044 Face 6945 2181 9247 9034 Face 6946 3896 8038 8789 Face 6947 10089 4814 121 Face 6948 2518 9282 784 Face 6949 4038 5815 8919 Face 6950 9617 9626 5815 Face 6951 7418 445 5286 Face 6952 3016 7418 5286 Face 6953 3016 3385 7418 Face 6954 3236 4526 1319 Face 6955 6685 1082 1319 Face 6956 6685 923 1082 Face 6957 3848 6685 6420 Face 6958 3848 10413 6685 Face 6959 10421 7356 4905 Face 6960 8126 7236 6529 Face 6961 7575 5800 933 Face 6962 2494 8323 1083 Face 6963 7646 615 813 Face 6964 7950 4517 4911 Face 6965 10898 6016 8000 Face 6966 5575 10781 8080 Face 6967 6155 6836 7000 Face 6968 6155 2614 6836 Face 6969 10760 10812 7609 Face 6970 2867 2741 11112 Face 6971 6699 10776 10614 Face 6972 6699 9389 10776 Face 6973 9024 1085 3159 Face 6974 9024 1737 1085 Face 6975 1258 4048 9159 Face 6976 8631 10576 8967 Face 6977 10041 6121 7638 Face 6978 10041 7987 6121 Face 6979 10504 7022 10987 Face 6980 10504 7823 7022 Face 6981 6695 2413 1824 Face 6982 9974 6592 8417 Face 6983 7780 9974 8417 Face 6984 4840 8237 1087 Face 6985 3720 3764 5055 Face 6986 4707 2633 10557 Face 6987 8011 7543 2633 Face 6988 3502 1088 2283 Face 6989 5144 8828 10892 Face 6990 7680 4533 9025 Face 6991 10844 1978 3403 Face 6992 1663 3727 1090 Face 6993 10248 1089 3727 Face 6994 1663 1090 8978 Face 6995 5595 8304 4196 Face 6996 2303 8365 8304 Face 6997 2303 8304 5595 Face 6998 10586 7704 4925 Face 6999 8090 411 10670 Face 7000 5324 1092 3007 Face 7001 480 1092 5324 Face 7002 3319 2830 8913 Face 7003 4157 7839 5732 Face 7004 10644 2898 9111 Face 7005 7200 10640 7087 Face 7006 147 10427 1093 Face 7007 1961 2089 749 Face 7008 10713 10174 4774 Face 7009 1577 5096 6080 Face 7010 4201 4428 8632 Face 7011 9262 10425 8979 Face 7012 6243 8530 204 Face 7013 4009 1160 5071 Face 7014 6755 3780 6518 Face 7015 6508 8419 5925 Face 7016 6508 506 3666 Face 7017 6508 9926 3200 Face 7018 2827 4747 4365 Face 7019 5542 2363 4821 Face 7020 5542 3558 2363 Face 7021 9863 7308 6379 Face 7022 6383 9863 2224 Face 7023 6383 7308 9863 Face 7024 10567 3845 7574 Face 7025 1094 8646 7697 Face 7026 1094 9110 8646 Face 7027 6013 7733 1094 Face 7028 2971 3249 3064 Face 7029 4311 9580 3670 Face 7030 6064 10611 3609 Face 7031 9504 3825 8362 Face 7032 4043 1342 3825 Face 7033 9504 6065 10792 Face 7034 9703 7551 1784 Face 7035 9703 4870 5976 Face 7036 7803 4058 4783 Face 7037 2444 7924 9854 Face 7038 74 3889 1097 Face 7039 7238 3066 10578 Face 7040 9533 6299 1098 Face 7041 9496 7299 5863 Face 7042 5982 1101 10286 Face 7043 6502 1803 1101 Face 7044 5982 6502 1101 Face 7045 2741 10775 11112 Face 7046 3704 1597 1103 Face 7047 9224 1105 8532 Face 7048 9224 7923 1105 Face 7049 2887 1106 4066 Face 7050 9104 9170 5432 Face 7051 543 4004 5726 Face 7052 543 10851 4004 Face 7053 4970 4038 8919 Face 7054 8882 8462 4038 Face 7055 4970 7132 8882 Face 7056 4789 8240 6693 Face 7057 9084 5209 8941 Face 7058 9662 3818 4393 Face 7059 3724 1909 3818 Face 7060 3486 2407 8229 Face 7061 7083 9673 8548 Face 7062 1496 1427 6093 Face 7063 10682 9406 3271 Face 7064 6100 468 3645 Face 7065 3947 8022 3737 Face 7066 6058 10444 5975 Face 7067 4234 4948 6295 Face 7068 7198 1108 2874 Face 7069 7198 851 1108 Face 7070 10151 6445 4607 Face 7071 663 4804 7708 Face 7072 596 1109 6237 Face 7073 596 4346 1109 Face 7074 4927 10691 1751 Face 7075 4927 7021 10691 Face 7076 8221 10954 7592 Face 7077 1597 8218 1836 Face 7078 2599 8117 1110 Face 7079 5542 9054 5388 Face 7080 3886 5736 4660 Face 7081 3938 2081 4629 Face 7082 5352 2410 3334 Face 7083 9486 10137 2410 Face 7084 3872 3334 2410 Face 7085 7256 3872 5395 Face 7086 7147 8956 2425 Face 7087 4027 261 8956 Face 7088 8375 800 1111 Face 7089 6892 8357 8889 Face 7090 743 5971 8357 Face 7091 95 6853 10199 Face 7092 5031 2465 719 Face 7093 6156 5793 2465 Face 7094 1447 10039 7475 Face 7095 1447 10133 10039 Face 7096 1483 1828 887 Face 7097 1357 10382 1828 Face 7098 9286 5148 4439 Face 7099 9286 432 5148 Face 7100 10094 8012 4839 Face 7101 8472 1114 6952 Face 7102 8472 6535 1114 Face 7103 5692 10972 9246 Face 7104 4350 2552 1115 Face 7105 10104 1117 6847 Face 7106 5766 9048 1117 Face 7107 5950 5620 9209 Face 7108 8910 3050 5620 Face 7109 4232 3397 5896 Face 7110 504 2050 3397 Face 7111 8828 10290 9576 Face 7112 8828 4293 10290 Face 7113 9635 2644 5821 Face 7114 2172 4073 6134 Face 7115 1119 8345 627 Face 7116 3086 7405 4474 Face 7117 8864 3975 1405 Face 7118 10886 1420 5344 Face 7119 1734 5139 682 Face 7120 239 10784 10933 Face 7121 239 918 10784 Face 7122 9781 1120 612 Face 7123 521 9184 5284 Face 7124 7287 8431 10283 Face 7125 4726 1122 137 Face 7126 5872 10361 1162 Face 7127 9995 3375 1210 Face 7128 9972 6082 5724 Face 7129 3975 10665 7737 Face 7130 9584 7544 6477 Face 7131 363 7443 10335 Face 7132 9654 8781 1124 Face 7133 957 2362 3751 Face 7134 9474 5210 9363 Face 7135 7260 5530 1573 Face 7136 1449 10801 5530 Face 7137 1913 1125 4185 Face 7138 1913 2617 1125 Face 7139 10439 9633 5544 Face 7140 3058 5587 5449 Face 7141 10982 5947 2640 Face 7142 3668 1127 2084 Face 7143 3668 10598 1127 Face 7144 8295 10587 4680 Face 7145 3831 6745 271 Face 7146 4049 2308 6745 Face 7147 1547 3831 4241 Face 7148 4049 6745 3831 Face 7149 6295 10625 8095 Face 7150 6295 6981 10625 Face 7151 8630 2351 1128 Face 7152 1380 11014 4727 Face 7153 9820 5710 3504 Face 7154 4954 2404 7097 Face 7155 8461 4954 1129 Face 7156 2600 1129 4954 Face 7157 2600 8461 1129 Face 7158 4723 1130 7135 Face 7159 9796 3949 9135 Face 7160 7075 8087 10500 Face 7161 676 6903 10028 Face 7162 9789 8708 6007 Face 7163 6824 2650 8708 Face 7164 6770 3605 6226 Face 7165 6770 1448 3605 Face 7166 6942 9018 8952 Face 7167 6942 7767 9018 Face 7168 331 3125 7616 Face 7169 5292 10027 331 Face 7170 6722 8309 9920 Face 7171 5536 7249 1471 Face 7172 5536 4317 7249 Face 7173 640 7508 3667 Face 7174 640 5304 7508 Face 7175 1365 8003 670 Face 7176 10320 978 1365 Face 7177 3591 3590 4647 Face 7178 6348 7678 4462 Face 7179 2333 5649 1132 Face 7180 204 8566 4034 Face 7181 204 10509 8566 Face 7182 9818 1133 1892 Face 7183 9818 5287 1133 Face 7184 1785 8826 1134 Face 7185 3215 2385 8774 Face 7186 3573 9345 244 Face 7187 4294 4791 2080 Face 7188 5112 6513 5184 Face 7189 5112 11054 6513 Face 7190 1346 6043 3511 Face 7191 8907 6720 5073 Face 7192 3442 1135 6075 Face 7193 1041 5939 2543 Face 7194 7577 5804 9737 Face 7195 1089 7577 9737 Face 7196 10202 3598 3427 Face 7197 4992 1136 9847 Face 7198 4992 6138 1136 Face 7199 1716 2848 8014 Face 7200 1716 4090 5949 Face 7201 286 1830 1137 Face 7202 8604 6022 2904 Face 7203 8894 8604 2904 Face 7204 9177 7679 8057 Face 7205 6669 8255 9423 Face 7206 4243 10208 2037 Face 7207 4243 3257 10208 Face 7208 3942 3278 1138 Face 7209 392 2698 5588 Face 7210 6742 2262 2698 Face 7211 392 6742 2698 Face 7212 392 3060 3993 Face 7213 6137 3570 8632 Face 7214 10626 8190 4222 Face 7215 10626 7221 8190 Face 7216 3365 10069 8305 Face 7217 8254 3353 10048 Face 7218 2569 4686 2519 Face 7219 95 3651 4404 Face 7220 3341 7548 10304 Face 7221 10912 7748 2276 Face 7222 1139 7927 3056 Face 7223 10269 10341 1139 Face 7224 3990 9096 9422 Face 7225 350 5370 6053 Face 7226 350 6173 5370 Face 7227 8258 5406 8471 Face 7228 9785 7631 11097 Face 7229 8865 8834 7631 Face 7230 10856 6356 2065 Face 7231 6556 6966 13 Face 7232 5992 11048 2547 Face 7233 7559 8656 1604 Face 7234 4833 5362 817 Face 7235 4833 4834 5362 Face 7236 6679 4442 3457 Face 7237 10460 4441 10960 Face 7238 2176 4052 2795 Face 7239 9320 8949 322 Face 7240 9320 10153 8949 Face 7241 2244 1549 1308 Face 7242 5420 7779 1549 Face 7243 6275 7148 9491 Face 7244 7147 5572 7148 Face 7245 34 814 1571 Face 7246 74 2334 370 Face 7247 2904 5419 8894 Face 7248 4116 3867 5419 Face 7249 9107 9287 6912 Face 7250 4376 6532 4530 Face 7251 7951 9621 6145 Face 7252 2564 6328 4416 Face 7253 8136 9829 10955 Face 7254 10658 5182 9829 Face 7255 8581 1144 6115 Face 7256 8581 6222 1144 Face 7257 479 9645 7540 Face 7258 4707 8011 2633 Face 7259 11000 2710 8860 Face 7260 3822 9803 9930 Face 7261 7215 8558 8444 Face 7262 3822 663 8558 Face 7263 5963 4018 6178 Face 7264 5963 7808 3768 Face 7265 8343 5646 10024 Face 7266 8516 2075 7874 Face 7267 2519 3353 2569 Face 7268 10419 1508 1147 Face 7269 4196 3126 5595 Face 7270 6278 525 8697 Face 7271 2076 1148 5563 Face 7272 62 6875 2428 Face 7273 7166 581 4523 Face 7274 3612 6399 1328 Face 7275 7451 1150 898 Face 7276 606 4528 3180 Face 7277 606 859 4528 Face 7278 9206 7169 9799 Face 7279 146 2154 2221 Face 7280 1152 8182 8403 Face 7281 6884 9992 2982 Face 7282 39 5744 9992 Face 7283 3105 1708 6107 Face 7284 6601 5571 7163 Face 7285 6527 2485 6639 Face 7286 6527 821 2485 Face 7287 3721 10110 6782 Face 7288 10484 1153 7315 Face 7289 10484 10670 1153 Face 7290 1366 8295 5106 Face 7291 3740 970 3410 Face 7292 4067 4814 10089 Face 7293 6847 1154 7210 Face 7294 4567 1155 8914 Face 7295 9584 10071 6879 Face 7296 6477 8404 10071 Face 7297 8993 9463 9656 Face 7298 4963 3157 5626 Face 7299 2795 8336 7668 Face 7300 2012 1948 9681 Face 7301 2955 4958 5163 Face 7302 2142 5610 1951 Face 7303 2750 12 5610 Face 7304 4653 7476 9594 Face 7305 4653 8051 6092 Face 7306 7003 6990 3610 Face 7307 5472 2873 4734 Face 7308 7742 4841 9381 Face 7309 7742 2880 2931 Face 7310 3894 38 6858 Face 7311 2844 5467 9579 Face 7312 6818 8021 8192 Face 7313 1157 2844 6609 Face 7314 9477 9723 3717 Face 7315 9477 7959 9723 Face 7316 4261 5220 9085 Face 7317 6994 6164 4380 Face 7318 6994 8951 6164 Face 7319 2477 4861 56 Face 7320 346 2958 1342 Face 7321 346 10365 2958 Face 7322 6951 5297 5208 Face 7323 10662 6153 1860 Face 7324 9757 8667 4369 Face 7325 9757 3921 8667 Face 7326 10179 82 2467 Face 7327 8277 10984 8005 Face 7328 8277 6139 10984 Face 7329 7928 709 1158 Face 7330 2096 9904 10279 Face 7331 5398 4996 9006 Face 7332 7496 389 10655 Face 7333 6156 7925 804 Face 7334 10359 10746 3053 Face 7335 10359 4128 10746 Face 7336 6070 6731 10397 Face 7337 8416 5880 3758 Face 7338 182 808 7729 Face 7339 10969 5146 3461 Face 7340 10969 1160 5146 Face 7341 6415 6105 6416 Face 7342 257 4766 3618 Face 7343 257 2823 10988 Face 7344 104 965 1779 Face 7345 11103 6097 5190 Face 7346 10401 7374 4747 Face 7347 7651 3459 2757 Face 7348 6864 1163 7445 Face 7349 1487 2121 2490 Face 7350 3111 5714 11043 Face 7351 7374 8595 1164 Face 7352 6369 9663 9436 Face 7353 144 1165 6233 Face 7354 144 3218 1165 Face 7355 4325 9701 10592 Face 7356 7112 6299 7823 Face 7357 7112 1098 6299 Face 7358 5571 5947 8197 Face 7359 8289 755 5034 Face 7360 5656 5786 10569 Face 7361 8403 4772 1152 Face 7362 11058 983 4772 Face 7363 2189 3881 6604 Face 7364 9154 9213 53 Face 7365 8527 9936 9213 Face 7366 3284 8762 6348 Face 7367 7504 1178 6277 Face 7368 5564 48 935 Face 7369 8802 4942 8637 Face 7370 1168 1220 3496 Face 7371 8557 7616 1220 Face 7372 8557 1220 1168 Face 7373 8295 4680 5106 Face 7374 3542 7755 6999 Face 7375 4981 976 1169 Face 7376 10292 9171 1985 Face 7377 8290 7864 7546 Face 7378 7322 6960 1853 Face 7379 5950 3303 8683 Face 7380 5950 8910 5620 Face 7381 5950 1855 8910 Face 7382 10425 1029 1743 Face 7383 10184 3596 7671 Face 7384 8045 4237 3596 Face 7385 6371 10364 3745 Face 7386 10555 8565 10847 Face 7387 9233 7713 4655 Face 7388 5891 4167 7713 Face 7389 3788 2002 10004 Face 7390 1678 4762 3209 Face 7391 1678 8909 1170 Face 7392 2386 3682 7960 Face 7393 1597 8456 1102 Face 7394 1597 1836 8456 Face 7395 8183 7509 1757 Face 7396 5573 1172 7698 Face 7397 3550 1847 1172 Face 7398 5615 7015 1173 Face 7399 214 1523 8617 Face 7400 8121 6766 5415 Face 7401 8121 8817 1904 Face 7402 6746 7077 4068 Face 7403 1996 683 11086 Face 7404 11086 844 1996 Face 7405 9733 7771 4149 Face 7406 214 6659 9506 Face 7407 214 8278 6659 Face 7408 8257 6882 7797 Face 7409 8850 3980 10702 Face 7410 8850 7092 3980 Face 7411 4275 3368 1517 Face 7412 4275 2683 8148 Face 7413 7892 2684 4275 Face 7414 7080 3653 7129 Face 7415 1246 2710 1174 Face 7416 2222 6068 10431 Face 7417 8509 9115 1175 Face 7418 6313 3240 10828 Face 7419 8983 10219 5867 Face 7420 10687 5314 7889 Face 7421 3551 5076 5314 Face 7422 10924 10196 4544 Face 7423 10924 7038 10196 Face 7424 9733 10343 10948 Face 7425 9143 7885 1879 Face 7426 5569 10949 3201 Face 7427 7660 2643 7228 Face 7428 10017 5673 4438 Face 7429 10017 4585 5673 Face 7430 6567 2215 7998 Face 7431 9567 9076 5036 Face 7432 9179 7276 3307 Face 7433 849 6891 6308 Face 7434 465 10638 1146 Face 7435 8600 3406 3589 Face 7436 8812 5904 336 Face 7437 2472 1178 7504 Face 7438 2514 10203 2191 Face 7439 7633 10131 5 Face 7440 3250 10758 10131 Face 7441 7633 5628 10131 Face 7442 3351 7610 7716 Face 7443 7614 7554 8966 Face 7444 1299 5224 7554 Face 7445 1754 8486 7044 Face 7446 6476 2626 8524 Face 7447 1826 11009 3620 Face 7448 5453 1565 11009 Face 7449 9533 1363 6299 Face 7450 9533 3869 1363 Face 7451 3195 4496 10835 Face 7452 3195 2498 4496 Face 7453 905 1179 3789 Face 7454 905 6931 1179 Face 7455 6648 1240 10909 Face 7456 6516 6755 6518 Face 7457 3097 5147 3177 Face 7458 3755 9745 5147 Face 7459 4509 85 4218 Face 7460 2091 6287 3851 Face 7461 3206 8596 10114 Face 7462 583 1606 1107 Face 7463 5890 8372 9173 Face 7464 8372 1842 10311 Face 7465 5350 4732 10013 Face 7466 6427 2915 8076 Face 7467 4669 6149 7014 Face 7468 741 1091 362 Face 7469 2456 4310 8071 Face 7470 7197 9570 10906 Face 7471 7197 1183 4353 Face 7472 7197 10906 1183 Face 7473 3292 3431 6487 Face 7474 2264 10085 1457 Face 7475 2264 7391 10085 Face 7476 2756 7335 5761 Face 7477 2756 8398 7335 Face 7478 2289 6434 9518 Face 7479 10230 2289 2209 Face 7480 10230 7023 2289 Face 7481 4854 6243 204 Face 7482 9368 5700 4680 Face 7483 9368 6551 5700 Face 7484 5010 2867 10249 Face 7485 252 10459 1187 Face 7486 252 5468 10459 Face 7487 10852 5267 6332 Face 7488 10852 1329 5267 Face 7489 6039 8320 5579 Face 7490 2786 9547 3833 Face 7491 7583 5993 9547 Face 7492 6306 10477 3838 Face 7493 9812 3883 8169 Face 7494 9812 3601 3883 Face 7495 6864 1185 1487 Face 7496 6864 3310 1185 Face 7497 3071 8058 1450 Face 7498 5152 10040 7822 Face 7499 2639 7792 8281 Face 7500 6914 7149 3133 Face 7501 9876 10208 4463 Face 7502 9876 4300 10208 Face 7503 5311 1186 3267 Face 7504 760 4961 1367 Face 7505 69 9497 10186 Face 7506 69 9377 10656 Face 7507 2745 5229 3549 Face 7508 2745 4166 7420 Face 7509 9160 4690 5539 Face 7510 5589 6844 8996 Face 7511 5589 5971 6844 Face 7512 9878 9540 1187 Face 7513 8583 9805 5781 Face 7514 8678 1957 10686 Face 7515 8457 7174 7469 Face 7516 7865 8127 10016 Face 7517 7865 1003 1190 Face 7518 1120 9781 1857 Face 7519 7605 4066 6458 Face 7520 7605 6617 4066 Face 7521 10884 8369 4173 Face 7522 10884 3785 8369 Face 7523 4161 8676 6063 Face 7524 7896 9858 7027 Face 7525 5100 4216 9205 Face 7526 5100 7184 11113 Face 7527 6011 5013 10181 Face 7528 5354 9792 10434 Face 7529 7060 1191 208 Face 7530 9459 2891 3656 Face 7531 3656 8917 9459 Face 7532 184 6087 4973 Face 7533 6647 6963 6087 Face 7534 6174 10910 10277 Face 7535 6174 6409 10910 Face 7536 2366 4319 7359 Face 7537 2366 6273 4319 Face 7538 1446 1193 3005 Face 7539 8811 8505 8386 Face 7540 2680 1174 4129 Face 7541 483 5113 9180 Face 7542 2751 395 1054 Face 7543 2702 1194 2615 Face 7544 4755 2016 7070 Face 7545 288 10689 6982 Face 7546 3264 1652 4040 Face 7547 5451 1421 7098 Face 7548 6267 9791 3963 Face 7549 6267 2415 9791 Face 7550 6830 1196 5825 Face 7551 6830 9479 1196 Face 7552 1111 642 10935 Face 7553 1414 5075 9685 Face 7554 993 7411 8207 Face 7555 8596 1141 2128 Face 7556 2138 10012 8567 Face 7557 243 8675 2327 Face 7558 10695 638 6920 Face 7559 6382 1197 6379 Face 7560 8748 2555 1024 Face 7561 7229 2617 3048 Face 7562 3826 6157 10356 Face 7563 9872 61 5142 Face 7564 9642 1198 1600 Face 7565 9642 5015 1198 Face 7566 9642 8656 7419 Face 7567 3609 6110 6064 Face 7568 7725 9829 5182 Face 7569 9332 157 2238 Face 7570 9332 7725 157 Face 7571 293 1064 10639 Face 7572 293 1387 1064 Face 7573 5694 7046 9313 Face 7574 5058 10821 8426 Face 7575 3131 9051 393 Face 7576 5723 7569 4670 Face 7577 9841 9359 6720 Face 7578 2008 7025 2399 Face 7579 10407 4081 9409 Face 7580 4380 2023 7273 Face 7581 8252 3629 4146 Face 7582 10879 10029 5606 Face 7583 8039 7329 10667 Face 7584 7140 6564 7550 Face 7585 7140 9016 1484 Face 7586 7924 7752 1202 Face 7587 8550 3806 10348 Face 7588 8550 1264 3806 Face 7589 3409 9378 1291 Face 7590 4961 5870 6840 Face 7591 1273 1203 10791 Face 7592 3216 3978 1929 Face 7593 9083 4151 4092 Face 7594 5734 9191 1204 Face 7595 2462 3176 5011 Face 7596 10507 5304 5392 Face 7597 5726 8845 5173 Face 7598 3260 3009 6697 Face 7599 8299 4594 4485 Face 7600 4062 186 4594 Face 7601 3557 9476 7993 Face 7602 8869 5544 9476 Face 7603 3557 8869 9476 Face 7604 4264 1914 2984 Face 7605 60 8424 3907 Face 7606 60 2708 8424 Face 7607 6707 2277 5202 Face 7608 6707 1046 2277 Face 7609 2755 2376 7969 Face 7610 8611 3487 6709 Face 7611 2730 7685 3487 Face 7612 5930 4489 7202 Face 7613 3703 8653 4489 Face 7614 5930 3703 4489 Face 7615 5930 7737 3703 Face 7616 4662 1205 5463 Face 7617 4662 7722 5695 Face 7618 5636 2583 1206 Face 7619 8614 6719 7064 Face 7620 8411 8927 10031 Face 7621 8411 1568 8927 Face 7622 4115 10163 1138 Face 7623 5155 1967 6668 Face 7624 9419 1954 2477 Face 7625 9715 1207 10996 Face 7626 9715 10121 1207 Face 7627 10598 3668 10121 Face 7628 9687 6131 1208 Face 7629 9881 1209 5765 Face 7630 10559 2801 1209 Face 7631 3375 6459 1210 Face 7632 7865 10016 1211 Face 7633 9118 5494 7426 Face 7634 825 2450 701 Face 7635 10751 5302 9081 Face 7636 10077 8339 9660 Face 7637 8445 3827 4221 Face 7638 3718 7450 1755 Face 7639 10549 10547 10813 Face 7640 905 5549 6931 Face 7641 905 7934 5549 Face 7642 7809 7594 5086 Face 7643 904 6017 958 Face 7644 904 1970 6017 Face 7645 9310 1430 3504 Face 7646 5158 5274 10643 Face 7647 5158 4327 5274 Face 7648 10609 5511 1213 Face 7649 4435 1255 9483 Face 7650 4435 11102 1255 Face 7651 7559 5662 5532 Face 7652 5001 7879 3786 Face 7653 7451 1753 5191 Face 7654 11094 2572 8840 Face 7655 5644 9826 1104 Face 7656 5644 6911 9826 Face 7657 7336 6660 6590 Face 7658 7336 6957 6660 Face 7659 4475 6539 9505 Face 7660 2822 5594 5941 Face 7661 414 1214 10088 Face 7662 414 6841 1214 Face 7663 379 6630 659 Face 7664 1718 8288 6630 Face 7665 7472 3797 4050 Face 7666 330 5132 10864 Face 7667 3874 10353 1215 Face 7668 9216 7983 10580 Face 7669 238 5099 8114 Face 7670 8051 4653 7139 Face 7671 9814 5263 7051 Face 7672 9814 2180 5263 Face 7673 10920 9727 5143 Face 7674 5877 1217 5018 Face 7675 6454 3280 1217 Face 7676 8310 6375 1218 Face 7677 5597 7189 8496 Face 7678 8841 6167 5178 Face 7679 2382 4449 1899 Face 7680 8410 529 3699 Face 7681 7616 1326 1220 Face 7682 4724 580 3272 Face 7683 8786 1273 7487 Face 7684 8786 1203 1273 Face 7685 3620 9092 1826 Face 7686 862 7311 3764 Face 7687 6972 1480 1941 Face 7688 7105 4728 6992 Face 7689 6035 5835 3012 Face 7690 3988 9896 10528 Face 7691 3988 2824 9896 Face 7692 5642 8015 2974 Face 7693 5642 9444 8015 Face 7694 4426 10977 2058 Face 7695 10891 7434 1890 Face 7696 10891 7099 7434 Face 7697 6230 1222 10255 Face 7698 25 3454 9892 Face 7699 25 9892 3032 Face 7700 1245 5470 3723 Face 7701 902 8437 3238 Face 7702 9235 6493 1223 Face 7703 6434 5347 8848 Face 7704 5842 5656 10256 Face 7705 5842 2536 5656 Face 7706 4741 1225 9439 Face 7707 5788 2597 9800 Face 7708 2968 6885 6991 Face 7709 8541 4161 6063 Face 7710 3075 10350 4529 Face 7711 2663 1226 10908 Face 7712 4468 10202 1000 Face 7713 7071 3745 10364 Face 7714 10770 4943 7645 Face 7715 780 9886 8346 Face 7716 780 4977 9886 Face 7717 2029 5095 6483 Face 7718 8024 6114 2032 Face 7719 1384 726 10497 Face 7720 1227 726 1384 Face 7721 6736 8540 5451 Face 7722 1760 4616 3095 Face 7723 1811 4061 2865 Face 7724 2361 8241 4061 Face 7725 10386 1228 714 Face 7726 2266 6834 2220 Face 7727 774 5196 4744 Face 7728 3224 834 5196 Face 7729 10542 3957 1264 Face 7730 10542 7224 3957 Face 7731 925 6886 9766 Face 7732 925 1333 6886 Face 7733 4503 7210 344 Face 7734 9890 5322 5107 Face 7735 1537 1230 344 Face 7736 1229 9275 1230 Face 7737 3882 8536 295 Face 7738 8830 1065 4436 Face 7739 10738 957 3751 Face 7740 2562 5675 4220 Face 7741 7650 7403 9994 Face 7742 9198 1231 6467 Face 7743 3627 7505 3378 Face 7744 5539 2053 1232 Face 7745 7743 2171 7188 Face 7746 9498 10670 411 Face 7747 2863 8669 1233 Face 7748 1155 9324 1777 Face 7749 1155 9067 9324 Face 7750 2464 6389 6909 Face 7751 7485 597 909 Face 7752 9536 1677 4756 Face 7753 4153 3543 3281 Face 7754 4153 6038 3543 Face 7755 6603 5659 1360 Face 7756 5627 1235 5659 Face 7757 3638 845 2809 Face 7758 7206 10375 9868 Face 7759 10287 10602 5428 Face 7760 1990 1376 7156 Face 7761 7897 6429 4425 Face 7762 1237 2284 8484 Face 7763 7140 8862 7329 Face 7764 7959 875 10164 Face 7765 3413 3436 9568 Face 7766 3413 6132 3436 Face 7767 6132 3501 3436 Face 7768 6132 7334 507 Face 7769 495 921 6985 Face 7770 495 6497 921 Face 7771 9404 1413 6687 Face 7772 384 1917 6209 Face 7773 1239 1702 384 Face 7774 384 8062 1239 Face 7775 1886 3428 5126 Face 7776 4497 1066 3428 Face 7777 5483 2131 9747 Face 7778 5091 9406 6831 Face 7779 59 10537 2381 Face 7780 6485 8785 10537 Face 7781 5098 4485 6129 Face 7782 4181 6103 9199 Face 7783 10917 10672 6103 Face 7784 10716 8672 3134 Face 7785 10716 4479 8672 Face 7786 5280 10991 10871 Face 7787 7639 5908 2175 Face 7788 2678 1240 4660 Face 7789 2678 5839 1240 Face 7790 2176 8654 1349 Face 7791 2176 5101 8654 Face 7792 3056 10269 1139 Face 7793 4694 16 1974 Face 7794 9442 947 4109 Face 7795 2580 594 6504 Face 7796 8661 10157 7467 Face 7797 8661 1113 10157 Face 7798 6889 9413 185 Face 7799 9222 1242 7344 Face 7800 4390 674 7717 Face 7801 1704 8108 674 Face 7802 9222 7814 1704 Face 7803 5460 5801 3599 Face 7804 5460 7441 5801 Face 7805 743 1243 5971 Face 7806 743 6211 1243 Face 7807 6401 6211 743 Face 7808 6033 7381 5921 Face 7809 8948 6890 7339 Face 7810 11064 4571 6631 Face 7811 1605 1545 6255 Face 7812 3365 10437 3455 Face 7813 2591 2644 1246 Face 7814 8017 8319 4904 Face 7815 3763 8371 8319 Face 7816 1455 3648 733 Face 7817 3648 1159 8745 Face 7818 6258 1248 10243 Face 7819 6258 2538 1248 Face 7820 1006 1250 8741 Face 7821 1006 3834 1250 Face 7822 679 8972 58 Face 7823 679 9442 8972 Face 7824 558 6849 10516 Face 7825 6573 5145 1252 Face 7826 6235 9614 1444 Face 7827 6234 2635 9614 Face 7828 1890 6005 6203 Face 7829 5668 1942 1024 Face 7830 5668 10824 1557 Face 7831 10458 6242 4832 Face 7832 7298 9607 9981 Face 7833 2327 8675 2077 Face 7834 3606 1254 1753 Face 7835 3606 8151 1254 Face 7836 8609 9876 7155 Face 7837 1865 10574 1599 Face 7838 824 8829 3095 Face 7839 5344 5929 10155 Face 7840 5344 1420 5929 Face 7841 10176 9050 11023 Face 7842 10176 9449 9050 Face 7843 1255 2973 9483 Face 7844 1790 9507 1256 Face 7845 5964 4864 10763 Face 7846 6687 1257 4102 Face 7847 4613 1040 1257 Face 7848 8464 2010 2692 Face 7849 2182 295 9817 Face 7850 8689 8450 1859 Face 7851 8689 4917 8450 Face 7852 8381 1258 9159 Face 7853 8381 8955 1258 Face 7854 8300 2652 1259 Face 7855 2597 1260 2136 Face 7856 4060 3731 1260 Face 7857 4118 2597 6650 Face 7858 4118 1260 2597 Face 7859 2109 4026 974 Face 7860 7856 7485 10736 Face 7861 7996 1255 4946 Face 7862 4071 1263 3777 Face 7863 3784 3561 4072 Face 7864 9133 4503 3540 Face 7865 452 2373 4503 Face 7866 8324 2953 2463 Face 7867 8324 7418 2953 Face 7868 8844 10746 4128 Face 7869 5585 3806 1264 Face 7870 5814 8708 9789 Face 7871 1917 2800 1267 Face 7872 3794 9513 1269 Face 7873 1269 786 3794 Face 7874 5276 5080 9297 Face 7875 7174 8457 5080 Face 7876 5706 5276 10786 Face 7877 2941 7790 1935 Face 7878 4021 5693 7573 Face 7879 4021 8023 6142 Face 7880 8260 1773 6071 Face 7881 8260 4749 1773 Face 7882 2830 6962 9420 Face 7883 8314 4880 5972 Face 7884 5696 381 1778 Face 7885 9865 1271 9170 Face 7886 628 1272 10692 Face 7887 628 1411 1272 Face 7888 1905 8123 4808 Face 7889 4711 611 8123 Face 7890 7789 7163 5475 Face 7891 6380 8133 8196 Face 7892 4604 4150 7649 Face 7893 858 9711 5204 Face 7894 2105 3172 5431 Face 7895 2105 11092 3172 Face 7896 5252 3278 2817 Face 7897 3403 1978 6302 Face 7898 1089 9737 8818 Face 7899 1089 10248 7577 Face 7900 8878 5215 9929 Face 7901 504 10144 4127 Face 7902 7430 6216 1546 Face 7903 10254 7684 4771 Face 7904 4021 9784 7685 Face 7905 9486 2410 5352 Face 7906 7417 2914 6652 Face 7907 5548 7464 5520 Face 7908 1998 9239 1275 Face 7909 6704 6705 1822 Face 7910 6834 9499 2220 Face 7911 8891 2397 4920 Face 7912 8891 9830 2397 Face 7913 4344 2954 8861 Face 7914 9485 6693 8240 Face 7915 2950 6943 10733 Face 7916 5352 8079 2426 Face 7917 6941 3223 8265 Face 7918 6104 2257 6397 Face 7919 7693 5140 10528 Face 7920 2052 5108 1278 Face 7921 39 9992 6884 Face 7922 7789 7035 7660 Face 7923 7789 5805 7035 Face 7924 5882 8895 1279 Face 7925 2109 7738 3982 Face 7926 9507 1790 1280 Face 7927 3894 7381 4186 Face 7928 5953 5946 5751 Face 7929 10838 1282 5036 Face 7930 10838 5236 1282 Face 7931 3948 5767 9393 Face 7932 8737 1283 8460 Face 7933 8976 7084 1284 Face 7934 7701 8690 2833 Face 7935 316 4012 1161 Face 7936 1967 9542 6668 Face 7937 728 8310 3500 Face 7938 10607 998 189 Face 7939 10607 9180 1812 Face 7940 3423 10654 10893 Face 7941 10729 5721 1286 Face 7942 4359 5920 1906 Face 7943 1863 6545 5083 Face 7944 8662 2836 1341 Face 7945 2928 3525 4907 Face 7946 2928 10708 3525 Face 7947 9909 5077 4827 Face 7948 5262 4386 1287 Face 7949 9348 8120 8202 Face 7950 9348 9603 8120 Face 7951 9857 7848 2865 Face 7952 5460 3749 753 Face 7953 6409 9438 1044 Face 7954 9787 1288 4367 Face 7955 9787 7891 1288 Face 7956 718 7690 4464 Face 7957 718 10766 7690 Face 7958 8 1289 6575 Face 7959 8 384 1702 Face 7960 2638 10456 4852 Face 7961 2638 6660 10456 Face 7962 9027 6723 1290 Face 7963 3220 7169 3529 Face 7964 367 7088 5521 Face 7965 4003 4907 2292 Face 7966 5569 3467 10949 Face 7967 8325 6661 6568 Face 7968 6266 1937 6578 Face 7969 6266 6265 1937 Face 7970 7840 3813 3548 Face 7971 2628 6971 6876 Face 7972 2628 10314 6971 Face 7973 941 3902 3258 Face 7974 585 9844 6569 Face 7975 2642 9875 6524 Face 7976 8738 5169 5761 Face 7977 8738 3801 5169 Face 7978 9253 8998 3982 Face 7979 9253 10698 8998 Face 7980 7410 2396 5524 Face 7981 9707 10981 10979 Face 7982 1287 3318 10 Face 7983 1287 4386 3318 Face 7984 5463 11082 3998 Face 7985 8009 5379 10213 Face 7986 1445 1088 3502 Face 7987 3206 3409 1291 Face 7988 3999 2843 9512 Face 7989 3999 5918 2843 Face 7990 7536 9693 8752 Face 7991 7536 8752 515 Face 7992 2147 4260 9312 Face 7993 3432 2975 549 Face 7994 3432 6636 2975 Face 7995 6301 9257 4434 Face 7996 5691 4629 1093 Face 7997 2863 8979 10661 Face 7998 8456 1103 1102 Face 7999 8815 815 8041 Face 8000 2307 10446 4625 Face 8001 6125 9422 9096 Face 8002 7059 5508 9422 Face 8003 7378 4511 5035 Face 8004 6676 9105 5944 Face 8005 2499 2602 5361 Face 8006 4179 3195 10835 Face 8007 855 173 3195 Face 8008 11017 5220 5927 Face 8009 4414 10581 6268 Face 8010 233 9742 761 Face 8011 2582 1558 1071 Face 8012 5268 930 1558 Face 8013 8559 9144 3608 Face 8014 8559 8118 9144 Face 8015 9402 2237 727 Face 8016 6590 10707 4017 Face 8017 7733 10503 1094 Face 8018 5318 8028 9995 Face 8019 6779 6608 6227 Face 8020 1425 7002 3043 Face 8021 4039 347 7340 Face 8022 1296 5542 1295 Face 8023 1296 9140 3558 Face 8024 7808 5963 5125 Face 8025 4073 9416 6079 Face 8026 4073 6021 9416 Face 8027 6074 6373 9806 Face 8028 6074 2913 6373 Face 8029 7198 3700 2394 Face 8030 559 4107 6601 Face 8031 8903 9554 2628 Face 8032 6556 7880 8599 Face 8033 7820 3512 1365 Face 8034 7902 1187 10459 Face 8035 7902 9878 1187 Face 8036 8261 1272 4675 Face 8037 5473 9065 7154 Face 8038 390 7297 8101 Face 8039 1297 6223 6201 Face 8040 9193 4113 2240 Face 8041 7533 7904 4113 Face 8042 4031 5703 9525 Face 8043 1657 6618 747 Face 8044 10760 6391 3524 Face 8045 10760 7609 6391 Face 8046 6004 83 98 Face 8047 6644 4450 6257 Face 8048 299 10524 5260 Face 8049 9225 9702 10524 Face 8050 7614 1299 7554 Face 8051 7614 3892 1299 Face 8052 4016 9704 7115 Face 8053 3989 913 10123 Face 8054 3507 3542 6293 Face 8055 3507 5864 5334 Face 8056 7757 1314 6547 Face 8057 7757 8883 10354 Face 8058 7481 2445 1301 Face 8059 36 8725 7125 Face 8060 36 8384 8725 Face 8061 7051 5263 9640 Face 8062 5821 3019 220 Face 8063 5821 2644 1302 Face 8064 11009 3464 5453 Face 8065 3061 1303 7347 Face 8066 3061 2728 1303 Face 8067 5701 8683 1524 Face 8068 2366 7359 7740 Face 8069 10008 7050 6644 Face 8070 10008 10511 7050 Face 8071 2381 10537 2905 Face 8072 4108 1557 10824 Face 8073 3701 9248 7453 Face 8074 2886 6796 2031 Face 8075 9694 1866 3562 Face 8076 2041 6792 3734 Face 8077 9920 1304 6722 Face 8078 7726 9701 5281 Face 8079 4709 2760 5667 Face 8080 8775 1305 4046 Face 8081 8775 2512 1305 Face 8082 3474 9305 3986 Face 8083 3473 9305 3474 Face 8084 1633 6170 10767 Face 8085 8911 2464 4056 Face 8086 4510 9905 3495 Face 8087 8749 10722 8992 Face 8088 8749 1579 10722 Face 8089 4955 4502 5455 Face 8090 8768 7659 9877 Face 8091 10145 7227 3137 Face 8092 10145 10487 7227 Face 8093 1309 7227 5838 Face 8094 4712 4527 4015 Face 8095 3916 4796 7371 Face 8096 5881 4595 10233 Face 8097 5881 7622 4595 Face 8098 7104 1032 4577 Face 8099 8932 7104 10376 Face 8100 1119 1031 7104 Face 8101 4301 1311 5737 Face 8102 9897 9311 1311 Face 8103 4798 6896 6801 Face 8104 4798 574 6896 Face 8105 10190 4658 4451 Face 8106 10190 10034 4658 Face 8107 9550 1312 8454 Face 8108 7912 2213 1312 Face 8109 3290 9124 8270 Face 8110 136 10165 11022 Face 8111 6107 5035 3105 Face 8112 6107 4825 9122 Face 8113 5055 9057 7522 Face 8114 2868 4715 3580 Face 8115 8186 2403 5043 Face 8116 8392 3247 3292 Face 8117 119 7108 3856 Face 8118 5817 7866 7108 Face 8119 119 5817 7108 Face 8120 119 9441 5817 Face 8121 10354 5026 1314 Face 8122 8188 5768 6656 Face 8123 2263 6087 4337 Face 8124 10898 2555 8748 Face 8125 10731 7120 1316 Face 8126 765 10830 5908 Face 8127 765 430 10830 Face 8128 6042 8444 8532 Face 8129 1704 674 4390 Face 8130 5830 1317 6259 Face 8131 2825 6999 4922 Face 8132 2995 7439 398 Face 8133 196 5801 9958 Face 8134 3143 2654 8842 Face 8135 7234 5670 563 Face 8136 10793 9193 7234 Face 8137 9649 8178 5558 Face 8138 4032 7872 7987 Face 8139 11055 8850 1623 Face 8140 11055 6398 8850 Face 8141 568 10890 9871 Face 8142 568 3840 10890 Face 8143 179 3602 10111 Face 8144 81 3347 9073 Face 8145 4141 1318 6076 Face 8146 7555 2516 1318 Face 8147 6420 1319 7984 Face 8148 6420 6685 1319 Face 8149 159 6175 8502 Face 8150 954 3011 10033 Face 8151 11051 6497 3011 Face 8152 310 3682 2175 Face 8153 310 7960 3682 Face 8154 1244 1605 6255 Face 8155 8180 1320 5577 Face 8156 8252 8180 7058 Face 8157 8252 1320 8180 Face 8158 2251 8633 1321 Face 8159 6077 5840 5123 Face 8160 6077 7478 5840 Face 8161 10030 8470 953 Face 8162 3948 147 10403 Face 8163 830 10317 6581 Face 8164 5372 1474 4545 Face 8165 1474 6776 5109 Face 8166 9898 3961 3520 Face 8167 8704 9004 5382 Face 8168 9039 1322 9066 Face 8169 9039 2221 1322 Face 8170 9649 9833 8178 Face 8171 733 9978 553 Face 8172 733 8891 9978 Face 8173 2825 4922 936 Face 8174 9574 1323 2701 Face 8175 284 7592 5818 Face 8176 4702 9157 4126 Face 8177 5122 50 1324 Face 8178 4463 5053 9903 Face 8179 7224 3210 5825 Face 8180 10330 7818 1717 Face 8181 6802 5384 7818 Face 8182 3563 6852 402 Face 8183 6995 3381 2412 Face 8184 2321 7539 6645 Face 8185 6569 4537 7968 Face 8186 2994 4460 4987 Face 8187 3281 3543 2178 Face 8188 10357 1624 3597 Face 8189 8722 9343 961 Face 8190 6716 6037 2898 Face 8191 2298 5754 4098 Face 8192 2298 442 5754 Face 8193 10454 9946 4028 Face 8194 5039 4630 9946 Face 8195 10230 2586 7023 Face 8196 7616 9394 1326 Face 8197 2971 3064 551 Face 8198 4241 10769 4477 Face 8199 2503 1834 10840 Face 8200 421 6918 1834 Face 8201 1327 2493 3965 Face 8202 10941 10060 1327 Face 8203 1296 1295 10001 Face 8204 10965 5760 7938 Face 8205 5760 3686 7938 Face 8206 5760 2137 3686 Face 8207 610 8379 2807 Face 8208 10408 7739 3549 Face 8209 10408 630 7739 Face 8210 3195 173 2498 Face 8211 4675 5183 2049 Face 8212 10394 6258 10243 Face 8213 5620 3050 6258 Face 8214 1329 8053 7328 Face 8215 8292 4375 8885 Face 8216 4375 7682 4194 Face 8217 6638 1330 1516 Face 8218 2210 10202 3427 Face 8219 7478 2626 8916 Face 8220 9320 4272 7310 Face 8221 9320 322 8790 Face 8222 8129 9780 10790 Face 8223 1447 911 9349 Face 8224 6687 4613 1257 Face 8225 3918 437 620 Face 8226 1816 1332 8817 Face 8227 186 4062 1332 Face 8228 8165 5927 633 Face 8229 6071 4561 4143 Face 8230 4561 4356 8441 Face 8231 2297 3949 4561 Face 8232 6205 1334 4309 Face 8233 6205 47 1334 Face 8234 7582 11031 5690 Face 8235 3176 5869 5011 Face 8236 9919 2567 2660 Face 8237 3235 8364 1335 Face 8238 946 5254 10285 Face 8239 9782 2788 6219 Face 8240 8391 8901 9986 Face 8241 5238 6473 9703 Face 8242 5238 8118 6473 Face 8243 10195 231 6909 Face 8244 3745 6608 6371 Face 8245 11045 1340 571 Face 8246 5375 6287 2091 Face 8247 3499 5220 7970 Face 8248 3499 8981 5220 Face 8249 2908 9301 5375 Face 8250 2908 5785 9301 Face 8251 511 168 10050 Face 8252 5905 3674 508 Face 8253 5905 6623 3674 Face 8254 2801 2800 1209 Face 8255 8432 1343 10634 Face 8256 118 2294 7654 Face 8257 955 872 7623 Face 8258 11018 4799 2766 Face 8259 11018 222 4799 Face 8260 11053 6862 63 Face 8261 2518 784 1975 Face 8262 10837 1346 7521 Face 8263 10837 5427 1346 Face 8264 10133 2550 8736 Face 8265 2351 8630 2550 Face 8266 3602 9327 5514 Face 8267 6021 9131 1244 Face 8268 6021 10085 9131 Face 8269 3379 6611 6588 Face 8270 7154 9065 4802 Face 8271 282 4769 9302 Face 8272 5701 1347 3801 Face 8273 5701 1524 1347 Face 8274 4852 7465 7564 Face 8275 4852 1072 7465 Face 8276 3019 936 5699 Face 8277 4294 3573 3688 Face 8278 4294 2080 3573 Face 8279 8654 67 1349 Face 8280 4327 5158 10747 Face 8281 266 1350 6443 Face 8282 880 3150 1350 Face 8283 3549 9749 1656 Face 8284 9673 3943 3925 Face 8285 9673 7083 3943 Face 8286 5429 5478 8098 Face 8287 1932 2226 5478 Face 8288 301 9957 7838 Face 8289 2207 2523 7572 Face 8290 2207 7955 2523 Face 8291 9374 10830 7756 Face 8292 400 2175 9374 Face 8293 6155 7317 2614 Face 8294 1385 8884 5776 Face 8295 10850 6043 8975 Face 8296 7756 6254 6838 Face 8297 7756 10830 6254 Face 8298 7273 8020 9764 Face 8299 10227 9029 10390 Face 8300 140 1509 5444 Face 8301 140 7525 3571 Face 8302 4976 5994 3544 Face 8303 9091 8791 6873 Face 8304 6169 10181 5013 Face 8305 6169 6108 10181 Face 8306 5443 4737 7037 Face 8307 6823 1352 9527 Face 8308 7261 2595 3421 Face 8309 3515 4283 4956 Face 8310 4791 1354 10055 Face 8311 7115 2883 1041 Face 8312 509 6 2883 Face 8313 10303 9532 6567 Face 8314 5137 7067 1355 Face 8315 7321 8897 1356 Face 8316 8592 10093 8618 Face 8317 4998 8446 443 Face 8318 8367 28 8446 Face 8319 1483 1357 1828 Face 8320 7840 3548 8911 Face 8321 6838 4522 7756 Face 8322 3440 6778 4522 Face 8323 10346 4845 1359 Face 8324 6739 10321 717 Face 8325 9265 1143 9269 Face 8326 7533 9193 10793 Face 8327 7533 4113 9193 Face 8328 3227 9359 4778 Face 8329 206 10595 8091 Face 8330 3371 2961 7770 Face 8331 400 401 310 Face 8332 5445 1051 8883 Face 8333 421 1834 2503 Face 8334 5421 9568 1607 Face 8335 1481 1806 8679 Face 8336 6928 3453 9182 Face 8337 3508 1360 5659 Face 8338 10842 416 1360 Face 8339 30 4892 10939 Face 8340 3999 9809 877 Face 8341 2919 4641 3801 Face 8342 9963 1361 10992 Face 8343 9963 6808 1361 Face 8344 6494 1224 10436 Face 8345 3725 9397 6964 Face 8346 195 9279 6046 Face 8347 195 3074 9279 Face 8348 6780 5867 10476 Face 8349 6780 6531 5867 Face 8350 10708 2928 6780 Face 8351 9356 915 9278 Face 8352 9356 3416 915 Face 8353 2474 1364 204 Face 8354 10421 6910 8010 Face 8355 9013 8599 2398 Face 8356 10449 4085 2384 Face 8357 7416 1324 1740 Face 8358 3863 5707 3138 Face 8359 3863 2899 2565 Face 8360 2173 6392 1127 Face 8361 2173 5758 6392 Face 8362 7931 5677 248 Face 8363 7596 7657 4224 Face 8364 1381 3712 4039 Face 8365 8576 3330 4371 Face 8366 8576 3171 3330 Face 8367 3418 952 430 Face 8368 406 8926 2103 Face 8369 8102 5247 810 Face 8370 2598 5247 8102 Face 8371 4186 10029 2816 Face 8372 4186 6033 10029 Face 8373 7076 1379 1659 Face 8374 1379 8108 1659 Face 8375 1379 7152 8108 Face 8376 360 1367 3339 Face 8377 360 10549 1367 Face 8378 3430 3939 6051 Face 8379 1988 1368 3100 Face 8380 7348 6193 1368 Face 8381 1369 8405 8603 Face 8382 2069 79 537 Face 8383 4367 2253 7460 Face 8384 4367 3869 5717 Face 8385 10188 1371 1816 Face 8386 1372 3467 5569 Face 8387 8519 5647 8441 Face 8388 4723 6141 6965 Face 8389 9265 4620 6024 Face 8390 6250 6384 11008 Face 8391 1373 5246 5084 Face 8392 1943 10966 2296 Face 8393 8833 7859 4782 Face 8394 8163 9267 1374 Face 8395 4365 8662 7200 Face 8396 5139 9045 8031 Face 8397 5139 1734 9045 Face 8398 10179 3940 3662 Face 8399 2739 8201 10172 Face 8400 809 10465 5086 Face 8401 3732 1376 6492 Face 8402 5335 7156 1376 Face 8403 10862 5422 10815 Face 8404 10862 10061 5422 Face 8405 9408 7655 2900 Face 8406 9594 4764 4653 Face 8407 1448 4279 7208 Face 8408 6495 2187 7208 Face 8409 273 5489 3610 Face 8410 2145 6505 4798 Face 8411 2145 7497 6505 Face 8412 791 6427 8076 Face 8413 791 6641 6427 Face 8414 9410 478 7846 Face 8415 4884 9759 3840 Face 8416 10019 1266 3 Face 8417 6795 1382 10466 Face 8418 6795 8638 1382 Face 8419 7593 5214 8794 Face 8420 6205 7032 2773 Face 8421 5208 10943 6042 Face 8422 5421 9382 1383 Face 8423 5692 8729 10972 Face 8424 2664 7726 2107 Face 8425 9354 4086 8266 Face 8426 8750 3643 1924 Face 8427 2424 8989 6712 Face 8428 10850 10874 5823 Face 8429 1385 3805 10874 Face 8430 10850 1385 10874 Face 8431 10850 8884 1385 Face 8432 6366 4349 3593 Face 8433 10496 9432 4349 Face 8434 1635 1416 8307 Face 8435 619 4162 1386 Face 8436 10922 2427 4569 Face 8437 1513 9181 7009 Face 8438 9427 10883 7992 Face 8439 9427 2620 491 Face 8440 5782 10782 8843 Face 8441 5128 6066 5050 Face 8442 1796 8567 10012 Face 8443 1813 404 7315 Face 8444 7477 324 9759 Face 8445 1142 8921 533 Face 8446 10856 6525 6356 Face 8447 2111 4226 10870 Face 8448 3408 3766 8511 Face 8449 3408 5792 10677 Face 8450 3767 6538 1184 Face 8451 3767 8222 6538 Face 8452 6460 1411 628 Face 8453 224 4673 5746 Face 8454 224 3823 4673 Face 8455 6822 8079 9959 Face 8456 4212 1392 10741 Face 8457 4212 6826 1392 Face 8458 7468 6354 1393 Face 8459 4997 7468 1393 Face 8460 526 1904 9249 Face 8461 87 3862 833 Face 8462 10521 11041 1125 Face 8463 9337 9386 6001 Face 8464 8354 9347 8773 Face 8465 6910 490 10329 Face 8466 2441 9411 7421 Face 8467 3271 8812 10682 Face 8468 295 10187 9817 Face 8469 6735 97 1461 Face 8470 8514 3919 97 Face 8471 2381 5184 9132 Face 8472 9920 4064 3708 Face 8473 9920 7637 4064 Face 8474 2972 8925 7272 Face 8475 1962 1398 174 Face 8476 6589 3274 5804 Face 8477 2354 10269 3274 Face 8478 7828 8158 6332 Face 8479 5966 2035 10493 Face 8480 5966 10044 2035 Face 8481 9675 7525 8943 Face 8482 5332 10905 11024 Face 8483 5332 7352 10905 Face 8484 8348 1399 2615 Face 8485 5088 8401 1399 Face 8486 4712 4015 7531 Face 8487 7029 6350 8047 Face 8488 7029 4402 6350 Face 8489 8226 6897 2737 Face 8490 8226 2737 1401 Face 8491 7056 9615 3010 Face 8492 10095 8933 8628 Face 8493 10095 9326 8933 Face 8494 2516 7817 4226 Face 8495 7085 7036 7158 Face 8496 5822 10176 7377 Face 8497 7674 7558 678 Face 8498 3312 2224 10226 Face 8499 10518 1499 6907 Face 8500 103 10583 5845 Face 8501 661 2124 9283 Face 8502 2288 8621 5394 Face 8503 8648 3909 8322 Face 8504 8648 4074 3909 Face 8505 7749 7123 1405 Face 8506 656 5082 6122 Face 8507 3491 8859 9913 Face 8508 2572 8132 2211 Face 8509 2572 4975 8132 Face 8510 1979 8057 2211 Face 8511 2314 263 3538 Face 8512 4285 7511 6036 Face 8513 4285 2697 7511 Face 8514 10429 9956 6243 Face 8515 10429 3114 9956 Face 8516 6021 456 9416 Face 8517 1840 8575 1348 Face 8518 635 2887 4991 Face 8519 297 1407 75 Face 8520 297 4202 1407 Face 8521 8254 10048 6658 Face 8522 208 8020 7060 Face 8523 208 9764 8020 Face 8524 8904 9219 4560 Face 8525 8904 1409 8525 Face 8526 8904 4560 1409 Face 8527 6253 10208 4300 Face 8528 2295 522 1410 Face 8529 57 1894 8019 Face 8530 2089 1873 9808 Face 8531 1411 4675 1272 Face 8532 292 7456 1831 Face 8533 292 1910 7456 Face 8534 4444 5677 7931 Face 8535 4308 1520 1274 Face 8536 731 5654 3756 Face 8537 731 7936 5654 Face 8538 1815 7493 10915 Face 8539 4254 3820 2878 Face 8540 4735 8854 3820 Face 8541 254 8914 4785 Face 8542 2495 10652 2747 Face 8543 5468 9008 10459 Face 8544 1134 1780 8358 Face 8545 1134 520 8344 Face 8546 2262 9169 4269 Face 8547 2262 8971 9169 Face 8548 10017 2334 4926 Face 8549 3534 3732 1413 Face 8550 1071 9938 2549 Face 8551 1071 1558 9938 Face 8552 5412 3835 10831 Face 8553 2802 5251 6785 Face 8554 11016 3743 4123 Face 8555 11016 2545 3743 Face 8556 3996 4811 2786 Face 8557 614 8202 2594 Face 8558 3657 8385 11023 Face 8559 3754 8006 7130 Face 8560 8281 6025 9747 Face 8561 2628 10051 8903 Face 8562 9780 9515 10790 Face 8563 3324 3890 8443 Face 8564 5298 7007 9780 Face 8565 5298 9780 8129 Face 8566 10 639 1287 Face 8567 5944 9105 8548 Face 8568 492 10471 9094 Face 8569 10350 6023 2377 Face 8570 4013 9451 252 Face 8571 154 7751 3279 Face 8572 32 2057 10219 Face 8573 7264 8104 7432 Face 8574 7478 1417 6740 Face 8575 6620 10848 766 Face 8576 10067 381 10608 Face 8577 5603 5649 8728 Face 8578 5603 4069 5649 Face 8579 8779 5531 6192 Face 8580 1934 4529 10350 Face 8581 122 4093 9511 Face 8582 4363 2044 5480 Face 8583 9097 3371 2055 Face 8584 2609 2906 274 Face 8585 7301 10582 4184 Face 8586 5759 8769 4134 Face 8587 4193 10733 9979 Face 8588 5155 7979 8035 Face 8589 5155 5593 7979 Face 8590 2446 3050 8910 Face 8591 2446 788 3050 Face 8592 10059 8406 8162 Face 8593 9819 7219 298 Face 8594 1498 3924 4947 Face 8595 10905 4799 222 Face 8596 7535 4696 797 Face 8597 5826 9897 5328 Face 8598 10105 4155 10856 Face 8599 8327 3482 5151 Face 8600 8327 6850 3482 Face 8601 9154 9692 10043 Face 8602 9154 849 9692 Face 8603 9323 4743 5786 Face 8604 7246 837 3183 Face 8605 4 2150 4150 Face 8606 7433 3127 1788 Face 8607 773 2937 8849 Face 8608 9126 6305 9540 Face 8609 770 3226 10264 Face 8610 9941 6570 8571 Face 8611 8487 2011 5068 Face 8612 9093 6976 10466 Face 8613 9093 3420 6976 Face 8614 7192 2908 5375 Face 8615 1688 10552 2606 Face 8616 1752 5856 10552 Face 8617 11035 11065 932 Face 8618 11035 4787 11065 Face 8619 9678 1751 5491 Face 8620 6321 10009 7595 Face 8621 6321 4461 10009 Face 8622 3921 8144 8667 Face 8623 168 2576 10050 Face 8624 168 207 2576 Face 8625 5089 7098 1421 Face 8626 10725 549 2975 Face 8627 9200 1032 4024 Face 8628 4401 6570 2052 Face 8629 4506 4289 3862 Face 8630 10327 4382 6997 Face 8631 10608 4827 2113 Face 8632 9768 1423 1668 Face 8633 9768 5342 1423 Face 8634 5883 9770 2324 Face 8635 5883 867 2759 Face 8636 4396 2758 1899 Face 8637 4452 5195 4478 Face 8638 681 202 3963 Face 8639 681 3963 10358 Face 8640 4612 7802 1424 Face 8641 5622 6631 9331 Face 8642 9831 4480 9947 Face 8643 6740 9831 9947 Face 8644 2589 5305 7126 Face 8645 2589 540 5305 Face 8646 6332 5245 7828 Face 8647 5933 7012 5752 Face 8648 9704 4299 10795 Face 8649 6 509 2478 Face 8650 6646 2770 7343 Face 8651 8560 2242 2770 Face 8652 5398 4547 4996 Face 8653 5851 2618 1427 Face 8654 428 5887 10298 Face 8655 428 3337 5887 Face 8656 3950 6220 10819 Face 8657 3950 9227 6220 Face 8658 6462 2091 9484 Face 8659 6462 9112 2091 Face 8660 139 6848 8560 Face 8661 139 2770 6646 Face 8662 139 8560 2770 Face 8663 2865 3477 9857 Face 8664 1484 9631 6564 Face 8665 1484 8325 9631 Face 8666 4906 9714 8133 Face 8667 7355 9266 5271 Face 8668 4954 1430 2600 Face 8669 4954 7097 9820 Face 8670 8874 7927 1431 Face 8671 5007 1432 156 Face 8672 2860 3022 5007 Face 8673 3857 8918 10264 Face 8674 7190 8413 1433 Face 8675 10693 10518 6907 Face 8676 5457 5407 308 Face 8677 8975 9503 9433 Face 8678 8975 6043 9503 Face 8679 1434 7590 3967 Face 8680 4399 1768 7590 Face 8681 4399 7590 1434 Face 8682 7145 5561 1435 Face 8683 4662 5463 4881 Face 8684 10435 2957 3126 Face 8685 830 4819 9010 Face 8686 10719 7934 788 Face 8687 5277 4705 7934 Face 8688 435 3192 3445 Face 8689 9581 5477 6187 Face 8690 9581 1561 5477 Face 8691 5160 9748 3711 Face 8692 5160 2407 9748 Face 8693 5470 10032 3723 Face 8694 1486 8654 2931 Face 8695 2233 8321 7258 Face 8696 4593 8177 7519 Face 8697 10387 5396 7731 Face 8698 6777 159 6534 Face 8699 3266 7977 7882 Face 8700 3266 5854 7977 Face 8701 10928 3576 7214 Face 8702 312 7214 10023 Face 8703 6832 4581 311 Face 8704 6832 8639 4581 Face 8705 3113 2042 4895 Face 8706 3337 1821 5117 Face 8707 10098 698 7917 Face 8708 10657 10306 1192 Face 8709 681 2486 202 Face 8710 10387 3177 409 Face 8711 5951 10398 495 Face 8712 4886 8628 5483 Face 8713 3734 6138 4992 Face 8714 3734 10692 6138 Face 8715 9426 2227 7612 Face 8716 9426 10250 2227 Face 8717 9789 7829 1889 Face 8718 6007 1436 7635 Face 8719 1294 293 2067 Face 8720 9598 7736 11055 Face 8721 9598 2990 7736 Face 8722 4404 595 9698 Face 8723 9208 3439 1453 Face 8724 4784 8668 8626 Face 8725 3093 1008 8668 Face 8726 5541 6446 643 Face 8727 6629 7354 6446 Face 8728 58 5541 679 Face 8729 58 6446 5541 Face 8730 568 6819 3840 Face 8731 568 5405 4176 Face 8732 6436 3202 4252 Face 8733 2192 9514 8383 Face 8734 3305 7084 1437 Face 8735 8333 7054 2517 Face 8736 8333 951 7054 Face 8737 1443 3995 1841 Face 8738 659 7207 379 Face 8739 10380 2561 7207 Face 8740 5110 3710 6338 Face 8741 5811 4944 2980 Face 8742 7955 4079 2523 Face 8743 5135 5555 7169 Face 8744 5135 889 5555 Face 8745 1651 10634 1439 Face 8746 5248 1571 4899 Face 8747 7545 8390 2048 Face 8748 2491 1953 10057 Face 8749 7742 6160 2880 Face 8750 5490 574 6505 Face 8751 5490 4270 574 Face 8752 6351 7049 1440 Face 8753 9451 3787 5388 Face 8754 108 10112 3099 Face 8755 108 4400 10112 Face 8756 108 4220 4400 Face 8757 6888 10789 3779 Face 8758 9373 10963 4583 Face 8759 2739 970 782 Face 8760 3171 2580 7014 Face 8761 1905 4711 8123 Face 8762 168 152 207 Face 8763 3548 1442 8765 Face 8764 3548 3813 1442 Face 8765 7758 700 3101 Face 8766 1062 6187 1180 Face 8767 1062 9581 6187 Face 8768 9622 9878 7902 Face 8769 462 8577 1443 Face 8770 5473 7 827 Face 8771 6308 5979 7 Face 8772 1005 8879 7314 Face 8773 1005 8666 8879 Face 8774 2348 7724 10963 Face 8775 2596 7014 2580 Face 8776 2596 2838 7014 Face 8777 6359 5345 8766 Face 8778 12 4984 7593 Face 8779 5164 10646 10922 Face 8780 5585 10544 7289 Face 8781 10460 6046 10928 Face 8782 4036 3197 7156 Face 8783 523 10057 1953 Face 8784 3855 9292 7431 Face 8785 11013 51 2764 Face 8786 6951 2405 5297 Face 8787 6951 9192 2405 Face 8788 9514 4998 443 Face 8789 8025 2686 5317 Face 8790 2655 5984 1873 Face 8791 4700 6231 8799 Face 8792 408 6069 9267 Face 8793 408 1075 6069 Face 8794 8378 1449 8544 Face 8795 10505 10801 1449 Face 8796 3295 1450 8058 Face 8797 3621 4344 5106 Face 8798 7494 8476 6946 Face 8799 9866 4117 7669 Face 8800 9866 2331 4117 Face 8801 1452 4419 1451 Face 8802 1452 10630 4419 Face 8803 10275 1451 3575 Face 8804 10275 1452 1451 Face 8805 10275 10261 1452 Face 8806 3204 6752 3313 Face 8807 3594 6764 522 Face 8808 8765 2959 1658 Face 8809 8765 3637 2959 Face 8810 756 8528 1454 Face 8811 2204 1043 5062 Face 8812 10337 10315 6319 Face 8813 447 9559 785 Face 8814 4805 1862 5886 Face 8815 615 8167 2323 Face 8816 4813 1455 2651 Face 8817 2405 5188 10282 Face 8818 9549 1456 3380 Face 8819 9549 2946 1456 Face 8820 5529 7764 1039 Face 8821 5529 3245 7764 Face 8822 8874 5239 3490 Face 8823 5702 6279 7387 Face 8824 7647 4502 5030 Face 8825 2093 1458 4628 Face 8826 6568 9732 6229 Face 8827 2130 50 5992 Face 8828 1459 6354 8155 Face 8829 2307 4625 306 Face 8830 8598 7160 1460 Face 8831 10990 6798 10628 Face 8832 236 680 7382 Face 8833 10059 5806 4601 Face 8834 4878 4200 5704 Face 8835 7310 8538 6045 Face 8836 7310 2365 8538 Face 8837 519 5061 8100 Face 8838 519 10690 5061 Face 8839 88 10028 8476 Face 8840 1736 676 10028 Face 8841 7472 8645 8474 Face 8842 8705 3029 5677 Face 8843 8705 8686 11056 Face 8844 2732 5812 3297 Face 8845 9664 1464 10446 Face 8846 9664 4486 1464 Face 8847 1224 10705 503 Face 8848 706 5748 5174 Face 8849 706 5093 5748 Face 8850 112 4929 10492 Face 8851 7886 7060 5050 Face 8852 134 2625 7136 Face 8853 9033 10778 3010 Face 8854 9123 4754 8040 Face 8855 9123 4273 4754 Face 8856 5882 1279 5197 Face 8857 276 7161 2721 Face 8858 10108 2357 882 Face 8859 6370 1465 1664 Face 8860 6370 5192 1465 Face 8861 11057 8290 1466 Face 8862 6588 10807 3379 Face 8863 6853 4240 4739 Face 8864 7378 5035 10174 Face 8865 6727 1467 9899 Face 8866 6727 9471 1467 Face 8867 8138 3844 2554 Face 8868 4325 10592 9840 Face 8869 8945 1469 2001 Face 8870 8945 6954 1469 Face 8871 8262 10543 10036 Face 8872 7574 536 10567 Face 8873 3084 4849 6927 Face 8874 10685 9710 7589 Face 8875 10685 5924 9710 Face 8876 405 1470 7677 Face 8877 139 3690 6737 Face 8878 4190 389 3690 Face 8879 9126 9540 7357 Face 8880 2100 5180 5755 Face 8881 8835 8111 40 Face 8882 9252 10458 4832 Face 8883 4297 10835 2558 Face 8884 4297 4179 10835 Face 8885 9390 5369 5527 Face 8886 8773 4584 1473 Face 8887 5319 3261 2855 Face 8888 7213 4197 10436 Face 8889 7213 2940 4197 Face 8890 3920 6052 8896 Face 8891 3920 4187 6052 Face 8892 4139 9414 9234 Face 8893 10812 8963 7609 Face 8894 542 8795 11082 Face 8895 5081 3208 9570 Face 8896 3208 9259 10170 Face 8897 5789 3794 10523 Face 8898 5372 1562 10420 Face 8899 6029 10368 8140 Face 8900 3433 7492 11044 Face 8901 3649 7601 1475 Face 8902 8489 9712 1476 Face 8903 4605 1028 9470 Face 8904 9665 8848 1263 Face 8905 9665 4673 8848 Face 8906 9484 502 7548 Face 8907 2108 1479 6099 Face 8908 10130 4498 10597 Face 8909 10130 5713 4498 Face 8910 9644 9702 1480 Face 8911 2540 1216 3320 Face 8912 7286 7534 2540 Face 8913 9949 9935 10885 Face 8914 4737 5443 1635 Face 8915 4198 8214 2955 Face 8916 9582 430 765 Face 8917 2216 4409 7679 Face 8918 9177 2216 7679 Face 8919 6995 3563 10895 Face 8920 6995 6852 3563 Face 8921 8476 1878 2668 Face 8922 6146 8513 2548 Face 8923 6564 7140 1484 Face 8924 9900 10052 3362 Face 8925 6026 2455 2992 Face 8926 277 5448 9332 Face 8927 230 7962 7740 Face 8928 3573 1485 10510 Face 8929 10452 244 7414 Face 8930 6769 8598 10490 Face 8931 9404 3534 1413 Face 8932 2319 2930 10666 Face 8933 404 8050 10150 Face 8934 404 1813 8050 Face 8935 9205 5629 2400 Face 8936 8685 2716 9988 Face 8937 7380 1462 7659 Face 8938 2880 1486 2931 Face 8939 6160 2067 1486 Face 8940 8387 2358 9818 Face 8941 8387 10405 2358 Face 8942 10267 10591 8857 Face 8943 3102 7688 2739 Face 8944 3102 9136 7688 Face 8945 1487 1839 3695 Face 8946 10228 1487 1185 Face 8947 10228 7963 1487 Face 8948 144 6549 1531 Face 8949 2250 9671 5894 Face 8950 2250 3521 9671 Face 8951 1001 10046 4721 Face 8952 9794 10075 10046 Face 8953 4244 9930 209 Face 8954 10422 8569 9654 Face 8955 9447 4789 7278 Face 8956 9447 10274 4789 Face 8957 4575 5006 9990 Face 8958 4575 3664 5006 Face 8959 5948 3113 4076 Face 8960 2241 8478 1489 Face 8961 1645 9711 1490 Face 8962 1050 6972 2429 Face 8963 1050 3417 6972 Face 8964 9901 1828 7396 Face 8965 10727 2647 8141 Face 8966 9858 5919 839 Face 8967 7455 1492 6030 Face 8968 6236 9001 284 Face 8969 8066 3944 6290 Face 8970 8066 10899 3944 Face 8971 10686 1957 8284 Face 8972 9938 9430 6547 Face 8973 7715 1594 5853 Face 8974 10108 7999 2357 Face 8975 4236 3927 7999 Face 8976 11000 1174 2710 Face 8977 6496 5159 1007 Face 8978 7396 8191 3289 Face 8979 6169 4972 7196 Face 8980 1089 9341 3727 Face 8981 4525 6905 4783 Face 8982 2423 8533 6923 Face 8983 10316 7676 2102 Face 8984 10316 9964 7676 Face 8985 6153 10057 8590 Face 8986 3603 2293 7966 Face 8987 748 4863 7926 Face 8988 10237 10944 4035 Face 8989 3911 10245 5380 Face 8990 9439 5380 6917 Face 8991 8838 6217 3929 Face 8992 8838 6805 6217 Face 8993 3239 3386 4793 Face 8994 8125 7762 7404 Face 8995 7992 4104 9587 Face 8996 7992 10883 4104 Face 8997 1497 170 1173 Face 8998 3452 8452 9625 Face 8999 6240 1748 8084 Face 9000 10400 10482 3102 Face 9001 10014 6419 5903 Face 9002 10871 7342 10635 Face 9003 562 9400 882 Face 9004 5762 1617 1499 Face 9005 937 2690 10683 Face 9006 9949 7537 1546 Face 9007 4467 9331 1215 Face 9008 4902 1501 9099 Face 9009 3956 10064 123 Face 9010 10064 5169 8641 Face 9011 4552 1502 5910 Face 9012 2198 1474 8900 Face 9013 4790 7538 1969 Face 9014 5121 10344 10706 Face 9015 7048 3866 7687 Face 9016 6135 592 5506 Face 9017 9562 1505 262 Face 9018 3581 6092 1505 Face 9019 2114 10268 5107 Face 9020 10590 1015 10268 Face 9021 3562 4793 9694 Face 9022 8079 6822 10147 Face 9023 7602 6094 4655 Face 9024 5251 4650 960 Face 9025 7986 4624 2872 Face 9026 3310 6289 4843 Face 9027 3310 1499 6289 Face 9028 7920 1508 5336 Face 9029 7920 843 1508 Face 9030 2898 6960 7322 Face 9031 8899 1509 3611 Face 9032 3571 9675 1509 Face 9033 11051 6512 6497 Face 9034 11051 321 6512 Face 9035 10330 6802 7818 Face 9036 3762 6803 6802 Face 9037 8678 150 10468 Face 9038 5844 1510 2645 Face 9039 5844 10118 1510 Face 9040 883 7437 7867 Face 9041 86 8839 9697 Face 9042 4853 9691 2768 Face 9043 4853 9167 9691 Face 9044 543 5874 10851 Face 9045 543 6563 5874 Face 9046 10819 9445 6981 Face 9047 9749 3549 5229 Face 9048 1514 684 9868 Face 9049 8960 10904 9235 Face 9050 6762 1515 4854 Face 9051 1705 4989 2188 Face 9052 4330 2160 1516 Face 9053 1580 7405 6953 Face 9054 8663 1715 1517 Face 9055 9031 10425 9821 Face 9056 9031 1029 10425 Face 9057 4033 2892 8876 Face 9058 4033 2989 2892 Face 9059 9200 1519 10376 Face 9060 898 1797 10035 Face 9061 7555 9666 4465 Face 9062 3086 4818 6435 Face 9063 8985 2415 6267 Face 9064 302 10823 7058 Face 9065 9035 5493 8376 Face 9066 9035 3112 799 Face 9067 9035 267 3112 Face 9068 114 6936 3990 Face 9069 114 9367 6936 Face 9070 1396 4285 6036 Face 9071 4172 1407 4202 Face 9072 5546 9482 6334 Face 9073 9052 8522 9744 Face 9074 8456 3704 1103 Face 9075 8456 2619 3704 Face 9076 10773 4383 8821 Face 9077 6773 4383 10773 Face 9078 1782 8494 6195 Face 9079 1782 5510 8494 Face 9080 10730 9743 9855 Face 9081 2540 1523 2361 Face 9082 3142 3474 6341 Face 9083 10043 9936 8527 Face 9084 6611 9434 6588 Face 9085 6611 3791 9434 Face 9086 509 2883 7115 Face 9087 7550 6564 10871 Face 9088 5030 8892 1112 Face 9089 671 5082 656 Face 9090 671 9070 5082 Face 9091 415 7429 6373 Face 9092 7002 3904 9976 Face 9093 8195 7002 9976 Face 9094 8980 9983 5829 Face 9095 9667 3251 7783 Face 9096 5588 9795 392 Face 9097 9983 7783 9795 Face 9098 4135 1525 9044 Face 9099 2642 5672 3529 Face 9100 1827 9834 7438 Face 9101 6799 10463 10464 Face 9102 819 1526 977 Face 9103 2989 1527 2892 Face 9104 1121 6472 2590 Face 9105 6552 7710 3719 Face 9106 5201 3052 7710 Face 9107 5201 7710 6552 Face 9108 10829 1528 4745 Face 9109 3079 10952 9336 Face 9110 7257 4857 10776 Face 9111 3263 4805 6060 Face 9112 6486 6019 2409 Face 9113 8085 9113 565 Face 9114 1529 2507 3401 Face 9115 1529 2037 2507 Face 9116 8274 1529 3401 Face 9117 5600 3391 1529 Face 9118 4621 2718 10438 Face 9119 5258 6085 4148 Face 9120 6353 10734 8634 Face 9121 1185 4843 3746 Face 9122 1185 3310 4843 Face 9123 10785 604 6928 Face 9124 5111 4107 323 Face 9125 6405 4638 6364 Face 9126 10803 1530 3214 Face 9127 8087 565 10533 Face 9128 1252 1396 6036 Face 9129 215 891 7004 Face 9130 5601 144 1531 Face 9131 5660 8221 8755 Face 9132 5660 9861 8221 Face 9133 4332 6466 7942 Face 9134 3705 5397 1829 Face 9135 8627 1532 5826 Face 9136 4343 2713 10073 Face 9137 855 8285 8202 Face 9138 1671 1533 2506 Face 9139 3451 2340 1533 Face 9140 1671 3451 1533 Face 9141 5122 217 1885 Face 9142 5122 2648 217 Face 9143 10083 5330 5026 Face 9144 10083 2876 5330 Face 9145 10244 5889 5662 Face 9146 888 8704 5382 Face 9147 5277 888 5382 Face 9148 2631 9573 377 Face 9149 2017 2632 3535 Face 9150 6499 7375 864 Face 9151 6499 4040 7375 Face 9152 10305 8349 1535 Face 9153 8349 2034 9465 Face 9154 725 6616 5313 Face 9155 10880 6577 7105 Face 9156 2273 1536 7870 Face 9157 2273 4170 1536 Face 9158 5199 7778 894 Face 9159 7879 5607 5181 Face 9160 5001 683 5607 Face 9161 10156 4417 2388 Face 9162 4717 1229 1537 Face 9163 352 9226 4168 Face 9164 352 7246 9226 Face 9165 8780 5051 5313 Face 9166 5466 9743 8160 Face 9167 1540 5741 8188 Face 9168 8188 6656 1540 Face 9169 9221 85 1541 Face 9170 438 1542 6218 Face 9171 10371 5216 1067 Face 9172 7082 5185 9461 Face 9173 7750 2235 949 Face 9174 1543 2235 10212 Face 9175 10212 3523 1543 Face 9176 10212 7750 403 Face 9177 10212 2235 7750 Face 9178 9784 6709 3487 Face 9179 9784 4021 7573 Face 9180 9575 10489 6418 Face 9181 9575 8204 1544 Face 9182 4856 6184 9279 Face 9183 4856 837 6184 Face 9184 4938 10726 9758 Face 9185 10124 9000 6523 Face 9186 3898 1400 9000 Face 9187 4866 8316 4064 Face 9188 10770 5150 8037 Face 9189 10770 9900 5150 Face 9190 4049 1547 8825 Face 9191 4049 3831 1547 Face 9192 1548 3122 10292 Face 9193 8706 10369 2225 Face 9194 8706 7127 10369 Face 9195 9190 2580 6504 Face 9196 7771 3577 4609 Face 9197 1549 8961 8151 Face 9198 7779 7446 8961 Face 9199 7779 8961 1549 Face 9200 9606 10492 3361 Face 9201 240 6404 1550 Face 9202 1551 8366 6674 Face 9203 7759 1676 8366 Face 9204 7759 1551 3698 Face 9205 7759 8366 1551 Face 9206 2069 8711 79 Face 9207 4971 8973 2125 Face 9208 7814 3493 9079 Face 9209 9962 7495 6815 Face 9210 937 1798 3756 Face 9211 5258 4148 1798 Face 9212 7780 7837 9974 Face 9213 7780 2535 7837 Face 9214 4365 8723 8662 Face 9215 1553 4076 9634 Face 9216 4488 9996 1083 Face 9217 10910 6409 9996 Face 9218 10617 8396 3574 Face 9219 10617 4204 5123 Face 9220 10734 6978 4347 Face 9221 10734 4347 4730 Face 9222 9556 2588 2212 Face 9223 9556 1989 7489 Face 9224 10793 279 7399 Face 9225 5700 1554 4880 Face 9226 879 5259 1555 Face 9227 9920 9150 1304 Face 9228 5223 4477 1556 Face 9229 3234 11060 4063 Face 9230 10439 5818 8221 Face 9231 9113 8085 2369 Face 9232 172 8837 10389 Face 9233 8983 4698 619 Face 9234 8075 925 9766 Face 9235 9982 7944 2310 Face 9236 9040 3163 7944 Face 9237 2296 1560 3820 Face 9238 9839 1562 5372 Face 9239 2733 8211 9923 Face 9240 9600 3204 3313 Face 9241 3811 982 3204 Face 9242 6602 7811 3811 Face 9243 268 8698 1052 Face 9244 268 7285 8698 Face 9245 6791 2017 10726 Face 9246 6595 2632 2017 Face 9247 855 5685 173 Face 9248 855 8202 5685 Face 9249 2391 4353 1183 Face 9250 4486 158 476 Face 9251 8825 7163 1265 Face 9252 5088 1564 10418 Face 9253 5088 9273 1564 Face 9254 2622 10784 6738 Face 9255 2359 8688 9086 Face 9256 8018 4736 8688 Face 9257 3620 1565 2849 Face 9258 6134 3903 5636 Face 9259 6134 3616 3903 Face 9260 2611 6737 8423 Face 9261 1763 1566 11073 Face 9262 1763 10610 1566 Face 9263 322 10006 8790 Face 9264 6232 1057 4885 Face 9265 6232 447 1057 Face 9266 5912 7506 5931 Face 9267 761 7640 10606 Face 9268 4302 10593 2769 Face 9269 1567 8697 9189 Face 9270 4302 1567 10593 Face 9271 4302 8697 1567 Face 9272 8208 9327 179 Face 9273 8208 4324 1569 Face 9274 4821 2363 6117 Face 9275 2161 5834 5951 Face 9276 6662 4287 829 Face 9277 441 10896 3794 Face 9278 9537 8896 82 Face 9279 9164 9383 8968 Face 9280 4877 1451 9383 Face 9281 3169 6222 8436 Face 9282 3169 6119 6222 Face 9283 10854 348 212 Face 9284 953 4748 348 Face 9285 8029 10291 10384 Face 9286 853 5186 5284 Face 9287 7400 4158 6448 Face 9288 3369 4135 9761 Face 9289 10641 3235 8190 Face 9290 10641 2936 3235 Face 9291 5560 2329 8928 Face 9292 7632 4166 10654 Face 9293 7632 3389 4166 Face 9294 6870 8410 3699 Face 9295 2914 8154 5678 Face 9296 211 9670 8345 Face 9297 9799 8680 5418 Face 9298 8680 3529 2811 Face 9299 4579 1575 6562 Face 9300 11001 2732 3297 Face 9301 11001 6102 2732 Face 9302 4248 4563 8823 Face 9303 3659 6149 4669 Face 9304 3908 1577 6080 Face 9305 100 1684 1577 Face 9306 5189 5514 7099 Face 9307 4025 822 9114 Face 9308 1421 7700 7878 Face 9309 3925 2661 10652 Face 9310 10477 3158 3838 Face 9311 7088 1578 4223 Face 9312 7088 367 1578 Face 9313 2533 10892 9576 Face 9314 2533 8597 10892 Face 9315 3537 6733 8748 Face 9316 9265 626 3342 Face 9317 7193 6843 3905 Face 9318 7193 9828 1682 Face 9319 6953 534 1580 Face 9320 4925 6953 7405 Face 9321 3875 4299 394 Face 9322 801 1581 2988 Face 9323 10324 7248 8779 Face 9324 10324 6488 7248 Face 9325 8674 4228 8171 Face 9326 8674 9501 4228 Face 9327 9355 10606 3826 Face 9328 9473 5387 7034 Face 9329 10235 9950 9317 Face 9330 3354 4371 6149 Face 9331 8944 5937 10349 Face 9332 3893 1583 10620 Face 9333 3893 570 1583 Face 9334 5954 1584 4295 Face 9335 5954 10895 5485 Face 9336 3074 1585 10771 Face 9337 6808 9963 10113 Face 9338 2554 3614 8138 Face 9339 7309 6750 1020 Face 9340 4279 1009 10301 Face 9341 6491 527 5698 Face 9342 868 8039 6235 Face 9343 6925 345 2353 Face 9344 6925 10381 345 Face 9345 694 1331 6733 Face 9346 5054 3620 2849 Face 9347 590 4081 6759 Face 9348 590 9409 4081 Face 9349 8868 5259 4468 Face 9350 8868 917 1588 Face 9351 8887 10134 4596 Face 9352 10572 3219 10937 Face 9353 298 5089 1421 Face 9354 9485 1590 3925 Face 9355 8072 7835 10160 Face 9356 3126 7473 10435 Face 9357 8305 1591 4865 Face 9358 7162 131 1591 Face 9359 7519 8177 5037 Face 9360 7454 5959 6262 Face 9361 10194 2848 1280 Face 9362 388 8058 3071 Face 9363 388 5006 8058 Face 9364 11024 222 1167 Face 9365 4692 4000 10713 Face 9366 4692 484 4000 Face 9367 514 10467 7469 Face 9368 514 10204 10467 Face 9369 2177 3419 1945 Face 9370 2177 10927 3419 Face 9371 658 5795 10508 Face 9372 1922 4045 8100 Face 9373 7611 9300 1080 Face 9374 5625 4179 4297 Face 9375 8074 1593 7793 Face 9376 6484 3870 2269 Face 9377 1102 1103 1597 Face 9378 7510 9115 8509 Face 9379 4044 1354 3966 Face 9380 1865 1599 10386 Face 9381 7819 1600 8518 Face 9382 7765 1604 1600 Face 9383 9020 1602 4215 Face 9384 10124 3898 9000 Face 9385 204 4034 2474 Face 9386 8023 8958 6142 Face 9387 8722 1603 9343 Face 9388 9030 10479 7346 Face 9389 10799 2254 10479 Face 9390 7765 235 9783 Face 9391 166 9977 4195 Face 9392 1131 8506 1034 Face 9393 1736 4225 3384 Face 9394 2110 1776 10720 Face 9395 3382 5446 177 Face 9396 1244 7391 1605 Face 9397 1029 9042 1743 Face 9398 1029 11096 9042 Face 9399 6964 9397 7972 Face 9400 8261 4675 8388 Face 9401 10519 3745 7071 Face 9402 7573 7146 1608 Face 9403 7573 6709 9784 Face 9404 7573 1608 6709 Face 9405 3934 4364 7190 Face 9406 5788 7945 9114 Face 9407 8393 9396 1518 Face 9408 1217 5456 5018 Face 9409 6193 1609 1368 Face 9410 1522 1610 5978 Face 9411 4190 3690 139 Face 9412 5254 946 8865 Face 9413 5181 3662 7139 Face 9414 5181 5607 3662 Face 9415 4622 10926 3591 Face 9416 4223 1578 10926 Face 9417 3610 10253 5727 Face 9418 556 2672 1979 Face 9419 493 10535 7898 Face 9420 5208 10263 7218 Face 9421 7980 8594 715 Face 9422 7980 979 8594 Face 9423 5872 1162 5190 Face 9424 2201 3863 1851 Face 9425 5278 1612 6192 Face 9426 3784 5404 1612 Face 9427 3784 1612 5278 Face 9428 2986 2345 685 Face 9429 3078 9565 5401 Face 9430 3078 4012 5212 Face 9431 6374 8578 1976 Face 9432 6374 550 8578 Face 9433 165 4746 440 Face 9434 2722 1471 1613 Face 9435 8322 9324 8648 Face 9436 10242 6100 3645 Face 9437 9879 7894 8275 Face 9438 3367 9112 7894 Face 9439 7467 10157 10602 Face 9440 7428 1614 9500 Face 9441 5111 5947 4107 Face 9442 323 2640 5947 Face 9443 4497 10517 4792 Face 9444 894 6306 5199 Face 9445 3687 7909 6306 Face 9446 7253 10183 9569 Face 9447 10101 1462 7380 Face 9448 4731 8333 7285 Face 9449 3566 6915 4553 Face 9450 8529 3832 5177 Face 9451 11063 6730 3832 Face 9452 10104 4202 5348 Face 9453 5008 9540 5283 Face 9454 8155 935 1817 Face 9455 6381 3093 8668 Face 9456 2839 4744 5196 Face 9457 64 5007 3022 Face 9458 4942 8802 5160 Face 9459 9474 7397 276 Face 9460 7665 2358 10405 Face 9461 10080 1617 8605 Face 9462 7240 9977 4780 Face 9463 4911 4517 6855 Face 9464 489 1414 7969 Face 9465 10455 7268 1618 Face 9466 6831 9406 11108 Face 9467 528 6432 10296 Face 9468 528 7873 6432 Face 9469 8239 1153 8824 Face 9470 448 1620 8467 Face 9471 448 7489 1620 Face 9472 10584 5527 1968 Face 9473 3880 3322 2255 Face 9474 6059 9203 1622 Face 9475 2967 8775 4046 Face 9476 5269 5520 10302 Face 9477 10357 4565 1624 Face 9478 2937 773 6456 Face 9479 6654 10805 9129 Face 9480 8551 3028 1343 Face 9481 5719 6968 5300 Face 9482 8259 858 4119 Face 9483 3970 6377 2783 Face 9484 919 9888 8642 Face 9485 6460 2627 8080 Face 9486 9676 5093 9937 Face 9487 9676 8703 5093 Face 9488 5742 5461 5120 Face 9489 9801 558 5461 Face 9490 8113 5163 963 Face 9491 55 2567 3047 Face 9492 1807 2660 2567 Face 9493 8630 1128 9061 Face 9494 4941 11089 6312 Face 9495 209 9645 479 Face 9496 4487 6756 1033 Face 9497 4487 3987 6756 Face 9498 5676 9679 7369 Face 9499 5676 4427 9679 Face 9500 34 191 814 Face 9501 34 1626 1628 Face 9502 10549 10633 1367 Face 9503 528 9924 5876 Face 9504 2598 2625 5247 Face 9505 279 10793 7234 Face 9506 3690 389 2802 Face 9507 10687 3551 5314 Face 9508 10687 6583 6012 Face 9509 1630 4604 10592 Face 9510 4462 3591 6368 Face 9511 6923 3847 5718 Face 9512 6863 4083 1631 Face 9513 5849 9168 4007 Face 9514 1781 3992 8994 Face 9515 2244 4014 3843 Face 9516 1951 1632 315 Face 9517 1951 3823 1632 Face 9518 7840 1633 637 Face 9519 1633 10767 7715 Face 9520 8638 4543 9817 Face 9521 8638 6795 4543 Face 9522 5968 9902 3501 Face 9523 1377 6944 10053 Face 9524 9411 8350 7778 Face 9525 10791 2942 1273 Face 9526 3013 2942 10791 Face 9527 484 9827 9941 Face 9528 484 4692 9827 Face 9529 10295 6469 7871 Face 9530 4240 9046 1358 Face 9531 4240 7113 9046 Face 9532 102 9621 5351 Face 9533 5725 8815 7744 Face 9534 10215 6112 815 Face 9535 3734 6792 6102 Face 9536 9436 8784 9970 Face 9537 6156 4930 2578 Face 9538 85 7150 1541 Face 9539 85 6781 7150 Face 9540 520 3136 8344 Face 9541 9994 1634 7459 Face 9542 9994 897 1634 Face 9543 6596 9452 9055 Face 9544 5821 220 4935 Face 9545 466 7263 3618 Face 9546 9508 5368 4974 Face 9547 3295 3406 5368 Face 9548 8934 3455 2437 Face 9549 6347 6325 2630 Face 9550 9720 1636 7111 Face 9551 8241 1637 4061 Face 9552 6426 2280 7266 Face 9553 6426 5307 2280 Face 9554 5586 10391 5543 Face 9555 7983 7436 7468 Face 9556 6761 4669 2838 Face 9557 9319 8922 1640 Face 9558 4098 8224 10318 Face 9559 4700 7114 6231 Face 9560 7187 1641 5000 Face 9561 7187 1642 1641 Face 9562 347 4097 8168 Face 9563 10133 10381 2853 Face 9564 9107 9613 9513 Face 9565 9107 6912 9613 Face 9566 6361 3628 1643 Face 9567 8511 8115 2230 Face 9568 8511 3641 5377 Face 9569 1748 1645 1490 Face 9570 8137 1646 4821 Face 9571 196 3599 5801 Face 9572 8830 9280 9089 Face 9573 8830 10938 9280 Face 9574 249 5833 9490 Face 9575 2774 1647 3865 Face 9576 2774 6263 1647 Face 9577 6872 1648 590 Face 9578 5517 9851 167 Face 9579 9282 6144 9015 Face 9580 5376 10579 3721 Face 9581 5376 9793 5667 Face 9582 3281 1649 4153 Face 9583 10869 4277 10797 Face 9584 89 1329 4277 Face 9585 9719 7753 10283 Face 9586 7028 2857 4203 Face 9587 5028 4347 6978 Face 9588 5028 3126 4347 Face 9589 5575 7365 10781 Face 9590 7905 1650 8109 Face 9591 7905 919 1650 Face 9592 2439 3773 9899 Face 9593 10868 6771 9094 Face 9594 10868 9373 6771 Face 9595 4626 3678 4212 Face 9596 4626 8273 3678 Face 9597 32 1652 2057 Face 9598 32 9811 1652 Face 9599 7567 8972 4089 Face 9600 6139 1653 6031 Face 9601 6139 2003 1653 Face 9602 2038 7776 10777 Face 9603 9582 952 3418 Face 9604 6675 1654 7670 Face 9605 6675 9192 1654 Face 9606 9309 1883 7129 Face 9607 7958 10378 10127 Face 9608 7707 6165 6587 Face 9609 2964 10100 8740 Face 9610 6168 11025 636 Face 9611 6127 7820 1657 Face 9612 5088 1399 8348 Face 9613 6054 455 4633 Face 9614 2514 6054 4633 Face 9615 2514 563 6054 Face 9616 2959 3796 1658 Face 9617 9360 3853 3324 Face 9618 9229 471 7891 Face 9619 150 5329 7711 Face 9620 8589 1660 3063 Face 9621 7253 9188 6951 Face 9622 7253 1171 9188 Face 9623 9303 9630 9864 Face 9624 8537 1965 9630 Face 9625 5232 926 10470 Face 9626 6067 8598 10367 Face 9627 3167 8425 3927 Face 9628 5590 4204 6935 Face 9629 1662 5869 4950 Face 9630 6326 7352 8469 Face 9631 5207 3907 8424 Face 9632 5207 569 3907 Face 9633 6151 1663 8978 Face 9634 10248 3727 1663 Face 9635 4972 1664 9667 Face 9636 10434 9792 2133 Face 9637 1665 989 1719 Face 9638 846 1666 3730 Face 9639 3839 10719 10903 Face 9640 6827 1667 7858 Face 9641 1849 9247 10693 Face 9642 1849 9034 9247 Face 9643 3023 1532 5287 Face 9644 9131 7391 1244 Face 9645 7712 4652 9957 Face 9646 1756 9590 4606 Face 9647 7586 11038 3037 Face 9648 2709 3799 8704 Face 9649 2461 4876 6586 Face 9650 18 9871 10890 Face 9651 1494 2445 7481 Face 9652 1494 6029 9921 Face 9653 8237 1253 2900 Face 9654 8788 1672 2113 Face 9655 2432 24 1946 Face 9656 8751 5796 5859 Face 9657 8754 870 6216 Face 9658 7016 1674 10111 Face 9659 210 1919 1674 Face 9660 5602 10377 889 Face 9661 6511 546 1675 Face 9662 6528 7031 3190 Face 9663 10372 10901 8203 Face 9664 320 5573 7698 Face 9665 1649 5945 2889 Face 9666 1038 1720 5493 Face 9667 263 1677 5557 Face 9668 4458 2015 2326 Face 9669 4458 3807 2015 Face 9670 4723 9796 1130 Face 9671 9272 9958 2391 Face 9672 5495 9424 5664 Face 9673 926 7498 7866 Face 9674 926 4837 7498 Face 9675 5180 5909 5755 Face 9676 1170 4762 1678 Face 9677 230 8689 7962 Face 9678 9231 3469 9064 Face 9679 9936 10043 999 Face 9680 10595 5791 10925 Face 9681 10298 1131 1034 Face 9682 9546 4042 1131 Face 9683 4964 8128 9075 Face 9684 7739 1680 6335 Face 9685 3564 5425 2504 Face 9686 488 487 1681 Face 9687 7184 745 9601 Face 9688 3741 5296 2238 Face 9689 854 2422 8388 Face 9690 7555 1318 4141 Face 9691 463 1683 11049 Face 9692 463 1684 1683 Face 9693 463 1577 1684 Face 9694 7344 10865 1405 Face 9695 9923 3844 2733 Face 9696 5863 5702 9496 Face 9697 5863 6279 5702 Face 9698 1369 8002 10848 Face 9699 3951 1358 3660 Face 9700 4597 5498 8657 Face 9701 4597 5898 11028 Face 9702 7861 10986 6449 Face 9703 7861 2135 10986 Face 9704 5391 10721 3796 Face 9705 9046 3006 10721 Face 9706 2549 4505 7294 Face 9707 1686 2876 4505 Face 9708 2549 1686 4505 Face 9709 2549 9938 1686 Face 9710 9390 1687 2071 Face 9711 9390 2370 1687 Face 9712 1849 631 9160 Face 9713 5852 4109 4878 Face 9714 1752 10552 1688 Face 9715 5206 3398 7994 Face 9716 5206 3546 3398 Face 9717 5622 8340 5389 Face 9718 10084 869 9045 Face 9719 3481 3068 6339 Face 9720 4819 3937 9010 Face 9721 6680 8174 7869 Face 9722 6680 1009 8174 Face 9723 10063 2676 8647 Face 9724 4044 1482 6244 Face 9725 274 9884 5556 Face 9726 2177 9541 10927 Face 9727 7991 8595 9541 Face 9728 6784 10331 7022 Face 9729 6784 4120 10331 Face 9730 1689 9848 2200 Face 9731 10718 6230 10715 Face 9732 1143 7989 6421 Face 9733 3268 5067 5963 Face 9734 3268 8556 5067 Face 9735 2911 1691 8064 Face 9736 9634 4076 3113 Face 9737 769 11111 5032 Face 9738 4357 315 1692 Face 9739 690 4860 2042 Face 9740 4978 5771 6703 Face 9741 7482 9975 2546 Face 9742 573 2916 7052 Face 9743 7697 1995 1063 Face 9744 8757 3496 7900 Face 9745 5004 10289 48 Face 9746 3345 938 4738 Face 9747 8036 5559 4921 Face 9748 1427 3156 5851 Face 9749 4964 2424 8128 Face 9750 2760 5376 5667 Face 9751 237 2382 1899 Face 9752 6001 10985 4484 Face 9753 3599 5275 1695 Face 9754 2925 1696 6171 Face 9755 2183 4447 1696 Face 9756 1766 778 10205 Face 9757 7204 5744 8110 Face 9758 8346 4803 8264 Face 9759 7581 9139 1016 Face 9760 8987 7379 1698 Face 9761 10881 5390 10523 Face 9762 9867 4773 5390 Face 9763 1446 10513 1188 Face 9764 6217 4614 3929 Face 9765 6217 1699 8097 Face 9766 10112 4400 602 Face 9767 3237 1701 10778 Face 9768 3237 9095 1701 Face 9769 8568 426 6360 Face 9770 7817 10870 4226 Face 9771 7817 368 10870 Face 9772 1289 1702 10736 Face 9773 1289 8 1702 Face 9774 6225 8794 5205 Face 9775 8345 1747 211 Face 9776 9739 1703 8271 Face 9777 3661 3234 1703 Face 9778 4971 1668 8973 Face 9779 7814 1659 1704 Face 9780 2446 10903 788 Face 9781 9421 617 9037 Face 9782 618 7260 617 Face 9783 277 5580 1706 Face 9784 277 847 5580 Face 9785 277 1706 5448 Face 9786 6478 1708 3105 Face 9787 6478 3697 1708 Face 9788 1960 3416 1709 Face 9789 73 8183 1757 Face 9790 7578 4335 8458 Face 9791 7578 1757 4335 Face 9792 73 7578 5981 Face 9793 73 1757 7578 Face 9794 3575 4413 10275 Face 9795 1711 4278 10772 Face 9796 10890 9804 18 Face 9797 3256 2263 5596 Face 9798 9560 1712 5545 Face 9799 1422 1713 7553 Face 9800 1422 4777 1713 Face 9801 7802 4031 1424 Face 9802 7038 9933 8644 Face 9803 10521 7229 8880 Face 9804 9713 5180 2256 Face 9805 381 10067 3094 Face 9806 5084 6579 1714 Face 9807 5545 9559 9560 Face 9808 4978 4198 5771 Face 9809 699 7895 9428 Face 9810 699 8832 7895 Face 9811 10228 6902 7963 Face 9812 3184 6390 10416 Face 9813 7892 4275 1517 Face 9814 7892 1715 2733 Face 9815 7892 1517 1715 Face 9816 3087 4058 10427 Face 9817 4751 4453 2911 Face 9818 6383 7424 5241 Face 9819 6421 5345 9269 Face 9820 9360 5796 3853 Face 9821 4832 2137 7629 Face 9822 1104 7729 5644 Face 9823 7943 1717 7818 Face 9824 7943 5800 1717 Face 9825 9553 656 4388 Face 9826 379 1718 6630 Face 9827 10663 3390 4840 Face 9828 8063 3661 1703 Face 9829 607 473 9097 Face 9830 6913 781 6893 Face 9831 9589 8161 781 Face 9832 6444 8550 10348 Face 9833 3300 7444 1869 Face 9834 3300 9564 7444 Face 9835 10805 6654 1796 Face 9836 9970 4904 9466 Face 9837 304 8160 394 Face 9838 9641 1721 4995 Face 9839 9641 6948 1721 Face 9840 386 2001 499 Face 9841 7553 5202 1722 Face 9842 9432 3744 6116 Face 9843 8352 10526 9319 Face 9844 8352 8356 10526 Face 9845 1844 9186 9204 Face 9846 7747 7746 9186 Face 9847 10051 7237 5972 Face 9848 3726 7611 7239 Face 9849 1633 7840 8911 Face 9850 8989 2910 9687 Face 9851 2031 9307 4014 Face 9852 2031 4014 7855 Face 9853 9999 7988 8926 Face 9854 9999 7572 7988 Face 9855 6320 5749 2821 Face 9856 3619 3172 6642 Face 9857 265 7797 1724 Face 9858 7506 5912 4538 Face 9859 5455 3223 4894 Face 9860 659 10380 7207 Face 9861 659 4262 9321 Face 9862 2974 7699 5642 Face 9863 1727 8290 1397 Face 9864 4701 9653 8290 Face 9865 9752 8776 3809 Face 9866 6969 3327 1063 Face 9867 3858 3391 5600 Face 9868 3449 4243 3391 Face 9869 10665 3696 3703 Face 9870 313 1728 10564 Face 9871 313 823 1728 Face 9872 7411 10717 8207 Face 9873 1590 956 6281 Face 9874 10631 4576 3230 Face 9875 10631 10712 4576 Face 9876 2455 8284 1730 Face 9877 354 9495 4054 Face 9878 1731 1070 5973 Face 9879 2348 10963 7650 Face 9880 342 7276 1723 Face 9881 5770 7363 10438 Face 9882 5770 352 7363 Face 9883 8691 1204 2343 Face 9884 932 6887 5608 Face 9885 2791 1096 10445 Face 9886 6033 9425 10029 Face 9887 7453 9895 5439 Face 9888 7453 9248 9895 Face 9889 10762 9610 1036 Face 9890 10762 2344 9610 Face 9891 9335 6630 5381 Face 9892 4542 3034 4100 Face 9893 8920 4542 4100 Face 9894 5133 2458 8777 Face 9895 5133 2539 2458 Face 9896 8327 79 4257 Face 9897 9024 1088 1737 Face 9898 542 11082 5463 Face 9899 1593 5425 7793 Face 9900 8877 8547 9657 Face 9901 6282 9873 10516 Face 9902 8082 1365 1344 Face 9903 8281 9747 1177 Face 9904 4053 7669 4117 Face 9905 10373 7410 10671 Face 9906 677 304 3117 Face 9907 7491 1738 8524 Face 9908 3302 9925 5604 Face 9909 8947 5066 8955 Face 9910 7658 6829 10374 Face 9911 7658 6942 8952 Face 9912 5313 2274 8780 Face 9913 2349 10942 8528 Face 9914 3940 262 8051 Face 9915 3940 10179 262 Face 9916 7990 3677 4977 Face 9917 7990 8045 3677 Face 9918 533 8227 6870 Face 9919 533 2305 8227 Face 9920 10127 6452 9952 Face 9921 8622 6018 7394 Face 9922 3314 8622 9834 Face 9923 70 9622 7902 Face 9924 70 9212 9622 Face 9925 1649 2889 1742 Face 9926 677 5846 1041 Face 9927 677 3117 5846 Face 9928 7510 4971 9115 Face 9929 7510 8248 4971 Face 9930 10413 7786 4255 Face 9931 5891 9233 4075 Face 9932 4897 8203 10901 Face 9933 10901 699 4897 Face 9934 294 341 1745 Face 9935 9563 9122 4825 Face 9936 8912 7413 10532 Face 9937 10802 9369 9370 Face 9938 8932 1037 1747 Face 9939 2918 6403 5514 Face 9940 2918 4251 6403 Face 9941 8210 4496 2498 Face 9942 3857 1520 4308 Face 9943 9315 1003 5711 Face 9944 5776 1749 5509 Face 9945 5776 19 1749 Face 9946 3222 8396 9887 Face 9947 10410 4868 8915 Face 9948 22 10117 4623 Face 9949 4623 10117 11033 Face 9950 1885 329 4315 Face 9951 7938 3686 9162 Face 9952 9172 3036 3232 Face 9953 9172 870 3036 Face 9954 3426 10198 419 Face 9955 10449 2384 5855 Face 9956 3859 7537 2094 Face 9957 10540 8734 4493 Face 9958 8776 4994 8734 Face 9959 10948 10343 10508 Face 9960 4214 6835 3796 Face 9961 4214 6271 6835 Face 9962 8513 6146 5722 Face 9963 10126 8479 10660 Face 9964 2362 9365 8383 Face 9965 437 3918 5565 Face 9966 2426 8587 4831 Face 9967 2426 8079 8587 Face 9968 2389 1116 10689 Face 9969 1115 2552 1116 Face 9970 1251 7452 3025 Face 9971 1331 9616 10794 Face 9972 1331 6710 9616 Face 9973 9697 5810 1784 Face 9974 5120 3606 1753 Face 9975 5416 2690 4674 Face 9976 10141 9214 6789 Face 9977 9094 3229 10868 Face 9978 9094 6121 3229 Face 9979 224 6955 1632 Face 9980 224 5746 6955 Face 9981 3091 2687 2886 Face 9982 117 3528 3091 Face 9983 117 5261 3528 Face 9984 4361 3914 5261 Face 9985 792 2914 3104 Face 9986 10562 4161 8541 Face 9987 287 10562 4397 Face 9988 287 4161 10562 Face 9989 1999 4794 7635 Face 9990 4184 10582 4794 Face 9991 3385 3016 2217 Face 9992 4881 7663 4662 Face 9993 3784 5278 790 Face 9994 7299 4102 5863 Face 9995 903 8501 4102 Face 9996 9666 3691 7874 Face 9997 6924 8923 6537 Face 9998 9208 4753 3439 Face 9999 10585 4651 10267 Face 10000 10585 8962 4651 Face 10001 5009 8143 5578 Face 10002 8483 2820 8143 Face 10003 7478 6077 1417 Face 10004 7950 4911 3786 Face 10005 1204 8691 1756 Face 10006 8017 3763 8319 Face 10007 6536 3934 4774 Face 10008 10679 10952 6213 Face 10009 9046 4404 9698 Face 10010 7484 10614 10776 Face 10011 9954 6807 1126 Face 10012 3421 6355 1673 Face 10013 9538 1012 5526 Face 10014 7802 6613 4031 Face 10015 10417 7003 10621 Face 10016 1485 11088 6450 Face 10017 1485 3573 7414 Face 10018 1783 7344 7717 Face 10019 6573 6036 10732 Face 10020 6573 1252 6036 Face 10021 10436 4197 1955 Face 10022 11103 11019 3499 Face 10023 5190 1162 11019 Face 10024 11019 3716 995 Face 10025 11019 1162 3716 Face 10026 8808 8813 2993 Face 10027 8808 5994 8813 Face 10028 7903 4258 10549 Face 10029 2768 9981 632 Face 10030 2768 5246 9981 Face 10031 1251 3025 6373 Face 10032 1760 3095 3025 Face 10033 3025 4616 1760 Face 10034 1513 7102 8554 Face 10035 6898 3811 7811 Face 10036 5814 8491 8708 Face 10037 4002 8130 8491 Face 10038 1762 2695 218 Face 10039 6395 691 329 Face 10040 10179 2467 10703 Face 10041 5094 10453 10353 Face 10042 3226 10453 5094 Face 10043 9884 3131 5058 Face 10044 9884 10422 1764 Face 10045 10854 8687 10030 Face 10046 59 6485 10537 Face 10047 4005 1158 6572 Face 10048 210 10225 10131 Face 10049 6983 10211 8483 Face 10050 6983 3108 10211 Face 10051 1872 9261 8138 Face 10052 3925 3943 9485 Face 10053 4315 5598 11048 Face 10054 11084 10541 6431 Face 10055 2858 62 3371 Face 10056 6115 1144 1769 Face 10057 8864 10665 3975 Face 10058 3981 10994 9551 Face 10059 9569 7218 10994 Face 10060 10297 3646 9859 Face 10061 9580 4614 1770 Face 10062 1771 1265 7228 Face 10063 8092 7484 408 Face 10064 2420 1772 6681 Face 10065 2420 10723 1772 Face 10066 453 6143 7607 Face 10067 453 6355 3421 Face 10068 4661 4735 3820 Face 10069 4661 10599 4735 Face 10070 9646 2154 8624 Face 10071 9549 8866 7287 Face 10072 8992 8449 10122 Face 10073 4819 1145 3937 Face 10074 9677 9398 7841 Face 10075 903 5365 9398 Face 10076 903 9398 9677 Face 10077 3650 407 3754 Face 10078 7806 8867 5504 Face 10079 7806 589 8867 Face 10080 6453 4029 6967 Face 10081 7941 5780 7513 Face 10082 7941 6621 5780 Face 10083 2089 5819 2686 Face 10084 9961 207 5806 Face 10085 6188 8982 9467 Face 10086 6188 970 8982 Face 10087 11068 11090 7383 Face 10088 8954 7667 10162 Face 10089 8954 4334 7667 Face 10090 4607 4334 8954 Face 10091 1541 10246 337 Face 10092 1541 8074 10246 Face 10093 1845 7379 688 Face 10094 20 5705 9709 Face 10095 10148 3443 3894 Face 10096 7679 3513 8057 Face 10097 7679 4409 3513 Face 10098 317 4140 7494 Face 10099 2347 10940 8672 Face 10100 33 10887 6825 Face 10101 8965 3448 10887 Face 10102 33 8965 10887 Face 10103 705 7339 6890 Face 10104 616 5989 1774 Face 10105 5645 5414 8002 Face 10106 5645 3541 5414 Face 10107 313 10564 5154 Face 10108 1876 9278 1775 Face 10109 2546 1776 7423 Face 10110 2546 10720 1776 Face 10111 578 8267 249 Face 10112 151 9493 10469 Face 10113 151 6095 9493 Face 10114 7718 8106 2919 Face 10115 4750 10902 8106 Face 10116 8495 1233 8669 Face 10117 787 1519 10171 Face 10118 787 351 1519 Face 10119 5237 9697 1784 Face 10120 6592 5968 8417 Face 10121 8314 5696 1778 Face 10122 898 10035 1061 Face 10123 585 6351 9844 Face 10124 9686 1491 6827 Face 10125 965 10663 1779 Face 10126 134 1946 9776 Face 10127 8358 1780 2020 Face 10128 6682 7952 9201 Face 10129 6682 337 7952 Face 10130 8278 9721 2558 Face 10131 8278 2558 9351 Face 10132 1956 2486 681 Face 10133 7689 2042 4913 Face 10134 4210 2033 4147 Face 10135 2246 3459 7651 Face 10136 5229 2745 7420 Face 10137 2022 5716 7506 Face 10138 2022 4568 5716 Face 10139 2244 3843 5420 Face 10140 2244 1308 1781 Face 10141 6692 7516 2799 Face 10142 6692 1717 7516 Face 10143 3835 5412 686 Face 10144 1341 9916 5896 Face 10145 8888 9184 2452 Face 10146 8888 1712 9560 Face 10147 2057 10476 10219 Face 10148 5131 5843 10476 Face 10149 5572 3012 5835 Face 10150 1134 8358 1785 Face 10151 7131 9199 6103 Face 10152 7131 5592 7268 Face 10153 8122 1786 4703 Face 10154 5616 10672 8756 Face 10155 7585 3521 6899 Face 10156 37 8282 2666 Face 10157 1787 6874 4889 Face 10158 11004 1787 4850 Face 10159 11004 6874 1787 Face 10160 4124 613 6997 Face 10161 4124 9837 613 Face 10162 5256 2681 1945 Face 10163 6359 6163 9171 Face 10164 6359 2965 6163 Face 10165 8618 7433 1788 Face 10166 8019 1894 7349 Face 10167 4496 1166 10835 Face 10168 6337 10523 5390 Face 10169 1916 6905 1931 Face 10170 11080 7398 4749 Face 10171 11010 5638 11080 Face 10172 3296 1789 6231 Face 10173 3296 9641 1789 Face 10174 5949 1790 1256 Face 10175 5949 4090 1790 Face 10176 4582 7928 2236 Face 10177 9038 8938 9106 Face 10178 9038 8582 8938 Face 10179 7194 1791 9706 Face 10180 7194 4677 1791 Face 10181 5908 1792 765 Face 10182 5908 7642 1792 Face 10183 1874 4027 9724 Face 10184 10961 719 9634 Face 10185 4637 1794 126 Face 10186 2506 9862 1794 Face 10187 8613 4063 7525 Face 10188 8613 8271 4063 Face 10189 5599 720 7825 Face 10190 10513 8075 9766 Face 10191 10513 1446 8075 Face 10192 6859 1795 2968 Face 10193 601 5115 4180 Face 10194 6198 4212 5115 Face 10195 5519 9284 2753 Face 10196 10864 5132 1797 Face 10197 7825 2575 9077 Face 10198 937 1986 5258 Face 10199 8964 1799 2422 Face 10200 8964 4519 1799 Face 10201 8597 5144 10892 Face 10202 2533 1801 8597 Face 10203 6175 2396 5337 Face 10204 7565 5217 2720 Face 10205 9381 572 1802 Face 10206 3208 2449 9259 Face 10207 6870 3699 2310 Face 10208 10149 6086 9977 Face 10209 587 6584 5312 Face 10210 587 2815 6584 Face 10211 5821 6437 936 Face 10212 5821 1302 6437 Face 10213 799 8586 1804 Face 10214 4264 2984 10332 Face 10215 4264 8091 10595 Face 10216 4264 10332 8091 Face 10217 8286 8844 5015 Face 10218 8286 3366 8844 Face 10219 1362 1805 112 Face 10220 1362 9223 1805 Face 10221 4185 7702 1806 Face 10222 8301 5254 8865 Face 10223 6179 5737 3994 Face 10224 8778 5737 6179 Face 10225 7574 6323 5547 Face 10226 5836 1300 9252 Face 10227 8778 2775 1635 Face 10228 5443 8778 1635 Face 10229 442 1808 5754 Face 10230 442 7491 1808 Face 10231 7168 5358 4422 Face 10232 3785 7168 8369 Face 10233 6997 4646 7544 Face 10234 6518 9772 11099 Face 10235 9267 9751 3315 Face 10236 1810 8347 7231 Face 10237 280 4699 7824 Face 10238 2361 4061 1811 Face 10239 7743 1812 2171 Face 10240 10571 7250 5811 Face 10241 10571 7290 7784 Face 10242 374 4950 5869 Face 10243 6817 7315 8239 Face 10244 5715 1814 4414 Face 10245 5715 6440 1814 Face 10246 10794 9616 6016 Face 10247 6187 5477 9257 Face 10248 2076 1192 309 Face 10249 2076 10657 1192 Face 10250 8352 7813 9185 Face 10251 1350 7324 7493 Face 10252 2524 3423 10893 Face 10253 9197 1816 2835 Face 10254 186 1332 1816 Face 10255 6037 6834 3817 Face 10256 8573 5410 5411 Face 10257 3280 5708 10995 Face 10258 695 10718 1818 Face 10259 334 1819 8512 Face 10260 334 5848 1819 Face 10261 5577 380 6958 Face 10262 1642 9655 7177 Face 10263 7601 9472 1475 Face 10264 5730 5879 9472 Face 10265 8370 9487 5911 Face 10266 5911 2143 8370 Face 10267 3995 9682 7850 Face 10268 3995 1608 9682 Face 10269 4452 8007 1822 Face 10270 3914 4361 10849 Face 10271 4731 8022 951 Face 10272 7929 4663 2605 Face 10273 4963 5626 11110 Face 10274 545 6256 7257 Face 10275 5105 8157 8714 Face 10276 828 10502 1130 Face 10277 828 3986 5856 Face 10278 10916 9117 5408 Face 10279 3561 10894 1065 Face 10280 60 5005 5307 Face 10281 60 3907 5005 Face 10282 3248 5906 10574 Face 10283 1741 50 2130 Face 10284 9725 1665 8176 Face 10285 9725 7490 1665 Face 10286 5903 10866 6906 Face 10287 7417 8154 2914 Face 10288 461 7910 3735 Face 10289 7806 5080 6053 Face 10290 7806 9297 5080 Face 10291 8845 1831 3148 Face 10292 8845 292 1831 Face 10293 3186 1832 1733 Face 10294 3186 3236 1832 Face 10295 8279 1833 6461 Face 10296 9251 9490 2826 Face 10297 9251 9491 9490 Face 10298 2584 7706 5655 Face 10299 7289 5928 8280 Face 10300 7048 465 749 Face 10301 10214 6113 7514 Face 10302 3055 9214 4584 Face 10303 3055 1766 9214 Face 10304 8456 1836 6618 Face 10305 5658 5075 2505 Face 10306 5658 9163 5075 Face 10307 1837 7069 6961 Face 10308 1837 8215 7069 Face 10309 838 10329 3795 Face 10310 3658 9954 1838 Face 10311 7640 9742 6788 Face 10312 4029 6283 7836 Face 10313 4029 9441 6283 Face 10314 7744 10455 5725 Face 10315 635 1406 1841 Face 10316 635 4991 1406 Face 10317 7850 1841 3995 Face 10318 1841 1840 9399 Face 10319 10481 3276 10573 Face 10320 10481 2639 8281 Face 10321 10481 10573 2639 Face 10322 6323 2228 5487 Face 10323 6323 2563 2228 Face 10324 8335 7342 1426 Face 10325 9769 7091 2327 Face 10326 9770 5245 7091 Face 10327 790 5278 9531 Face 10328 3112 267 8586 Face 10329 2931 832 4841 Face 10330 5737 1311 3994 Face 10331 3653 7080 4048 Face 10332 3555 1842 4623 Face 10333 3555 6984 1842 Face 10334 3651 595 4404 Face 10335 3964 1844 8820 Face 10336 10839 6560 8601 Face 10337 8232 7524 3760 Face 10338 7423 3567 2051 Face 10339 7423 3084 3567 Face 10340 2692 8200 2805 Face 10341 2692 6632 8200 Face 10342 2168 8746 375 Face 10343 1325 4079 6930 Face 10344 3101 10576 7065 Face 10345 9631 6568 6929 Face 10346 9631 8325 6568 Face 10347 828 9135 6101 Face 10348 10990 10153 6798 Face 10349 10153 10990 6101 Face 10350 2810 4088 2944 Face 10351 2810 9120 4088 Face 10352 10954 8221 5818 Face 10353 7601 5730 9472 Face 10354 3718 8026 7450 Face 10355 3987 4487 6787 Face 10356 315 1632 1692 Face 10357 9166 10825 6503 Face 10358 9166 1416 10825 Face 10359 7212 1850 3478 Face 10360 2796 10142 6771 Face 10361 445 10755 7065 Face 10362 445 513 10755 Face 10363 11053 10842 6862 Face 10364 2259 11109 7796 Face 10365 11109 10082 1852 Face 10366 6899 1090 7585 Face 10367 6899 9624 1090 Face 10368 10435 1854 5222 Face 10369 10435 4993 1854 Face 10370 10062 530 5305 Face 10371 4631 832 5101 Face 10372 1511 1246 2644 Face 10373 10553 10989 541 Face 10374 4905 10038 2354 Face 10375 3826 10356 9592 Face 10376 10384 9429 1856 Face 10377 3339 1367 3600 Face 10378 3634 1858 2482 Face 10379 4987 4188 2994 Face 10380 518 3853 4313 Face 10381 7354 10424 3694 Face 10382 3500 8135 7531 Face 10383 1917 1267 6209 Face 10384 10344 9170 9104 Face 10385 10344 9865 9170 Face 10386 340 5775 4879 Face 10387 2408 7378 4000 Face 10388 8256 1859 8450 Face 10389 8256 2366 1859 Face 10390 8939 7210 3887 Face 10391 10688 10272 4539 Face 10392 4343 6229 1861 Face 10393 1861 2571 2713 Face 10394 6592 8363 10450 Face 10395 8639 9822 10375 Face 10396 8825 7948 559 Face 10397 3032 9892 7566 Face 10398 279 7101 7399 Face 10399 4483 2191 7101 Face 10400 279 4483 7101 Face 10401 4421 1862 4805 Face 10402 4421 7830 3798 Face 10403 2386 3382 3682 Face 10404 2386 5446 3382 Face 10405 2299 10780 10399 Face 10406 6498 4131 1863 Face 10407 8964 14 1864 Face 10408 4628 10391 4430 Face 10409 6134 3702 3616 Face 10410 2429 7658 1050 Face 10411 7781 9119 7472 Face 10412 2884 5554 54 Face 10413 5117 5554 2884 Face 10414 2200 10919 10877 Face 10415 3771 5828 9120 Face 10416 4271 3395 2325 Face 10417 4359 1867 5920 Face 10418 8849 1867 4359 Face 10419 5744 10650 9992 Face 10420 5744 7204 10650 Face 10421 670 3522 2127 Face 10422 5110 3355 10858 Face 10423 4745 7604 1621 Face 10424 6163 9842 188 Face 10425 10326 1870 4181 Face 10426 4578 9918 7741 Face 10427 4578 2620 9918 Face 10428 9689 1514 6669 Face 10429 9237 6264 8678 Face 10430 747 6618 1871 Face 10431 8139 9703 7624 Face 10432 10328 6713 5118 Face 10433 8758 8018 35 Face 10434 8875 11006 8580 Face 10435 2686 2655 1873 Face 10436 3152 1874 1666 Face 10437 3152 4027 1874 Face 10438 3120 7843 9535 Face 10439 10851 5708 927 Face 10440 1877 10211 3108 Face 10441 7327 5974 6557 Face 10442 10073 7863 4343 Face 10443 708 1277 373 Face 10444 3201 5316 8721 Face 10445 3201 10949 5316 Face 10446 3741 7406 7881 Face 10447 93 12 8794 Face 10448 93 5610 12 Face 10449 420 3928 2153 Face 10450 420 9869 3928 Face 10451 6211 9575 1243 Face 10452 2256 7332 9713 Face 10453 4134 8769 9095 Face 10454 9823 2715 445 Face 10455 3524 9069 10293 Face 10456 2735 4171 8139 Face 10457 2735 6488 4870 Face 10458 96 5645 6710 Face 10459 2200 7244 643 Face 10460 2200 10877 7244 Face 10461 1061 515 5742 Face 10462 8644 8645 557 Face 10463 1019 9093 6862 Face 10464 8830 9089 1065 Face 10465 4656 1882 6238 Face 10466 8382 6128 5740 Face 10467 7080 1883 2949 Face 10468 2177 7991 9541 Face 10469 1352 3859 7991 Face 10470 2177 1352 7991 Face 10471 2177 6150 1352 Face 10472 2739 10172 3102 Face 10473 7297 10914 4341 Face 10474 871 6173 10467 Face 10475 871 5373 6173 Face 10476 5990 7333 6059 Face 10477 5990 2375 7333 Face 10478 626 5345 9171 Face 10479 626 9269 5345 Face 10480 2221 10270 1322 Face 10481 9130 7021 4858 Face 10482 4208 10691 7021 Face 10483 9612 1884 2086 Face 10484 9612 9264 1884 Face 10485 1189 5333 9145 Face 10486 1189 754 5333 Face 10487 8093 1887 4303 Face 10488 8093 2231 1887 Face 10489 242 8684 5611 Face 10490 7623 1077 2427 Face 10491 7623 2371 1077 Face 10492 3 1266 8326 Face 10493 650 10891 1890 Face 10494 4830 9629 10306 Face 10495 7183 8154 9161 Face 10496 1253 4640 9408 Face 10497 926 7866 10470 Face 10498 2033 7576 5016 Face 10499 2033 4568 7576 Face 10500 3312 7321 1356 Face 10501 3312 7119 7321 Face 10502 2556 5988 6288 Face 10503 2915 6866 8607 Face 10504 6427 6866 2915 Face 10505 792 8013 6652 Face 10506 4373 3892 10083 Face 10507 4373 5224 3892 Face 10508 127 1891 8962 Face 10509 6719 11095 1891 Face 10510 8219 4480 920 Face 10511 223 8152 1893 Face 10512 9790 5446 9718 Face 10513 280 945 2824 Face 10514 280 7824 945 Face 10515 7093 1895 283 Face 10516 9090 8996 6501 Face 10517 9090 672 8996 Face 10518 8159 3343 1896 Face 10519 462 4513 8577 Face 10520 3746 1897 5367 Face 10521 216 6564 9631 Face 10522 7863 10871 6564 Face 10523 4389 1412 1898 Face 10524 7686 5399 4761 Face 10525 8498 10897 5399 Face 10526 5788 8101 7945 Face 10527 5788 9800 8101 Face 10528 9747 7089 5483 Face 10529 6025 7089 9747 Face 10530 2034 1900 9465 Face 10531 7483 3341 8235 Face 10532 2270 1901 8854 Face 10533 2270 5857 1901 Face 10534 6236 4721 9001 Face 10535 2708 4713 5207 Face 10536 3717 10164 7825 Face 10537 3717 9723 10164 Face 10538 9111 9357 1902 Face 10539 6962 3507 9420 Face 10540 3937 4940 9010 Face 10541 3977 2118 4940 Face 10542 6743 3958 2788 Face 10543 3984 10806 3958 Face 10544 434 10712 10272 Face 10545 434 881 10712 Face 10546 10247 3853 5796 Face 10547 6053 1903 7469 Face 10548 6053 5080 1903 Face 10549 702 3896 4593 Face 10550 702 9256 3896 Face 10551 5272 5324 3007 Face 10552 1944 1148 9009 Face 10553 15 9403 5221 Face 10554 15 11049 9344 Face 10555 15 5221 11049 Face 10556 1905 5308 2390 Face 10557 1905 2390 4711 Face 10558 5643 5688 6090 Face 10559 8125 7404 10260 Face 10560 11054 2909 6513 Face 10561 3931 1906 11076 Face 10562 2235 7422 181 Face 10563 2235 1543 5167 Face 10564 280 3988 4910 Face 10565 8710 5964 7318 Face 10566 3452 4947 8452 Face 10567 8151 1909 1254 Face 10568 8151 8961 1909 Face 10569 4004 1910 292 Face 10570 3916 8488 4796 Face 10571 3916 8995 8488 Face 10572 9433 10091 9211 Face 10573 5155 8797 5593 Face 10574 7580 7316 3830 Face 10575 9142 3900 9221 Face 10576 4164 9233 4655 Face 10577 7049 3962 1911 Face 10578 11049 1683 1912 Face 10579 10949 11073 2279 Face 10580 6728 5187 7781 Face 10581 6728 436 5187 Face 10582 7111 9582 2372 Face 10583 7111 1636 9582 Face 10584 3594 5491 9852 Face 10585 1587 5157 7671 Face 10586 11104 3003 600 Face 10587 458 1914 9478 Face 10588 2503 3294 4015 Face 10589 4732 1915 10013 Face 10590 4732 4924 1915 Face 10591 10212 1918 3523 Face 10592 10212 8699 1918 Face 10593 5359 3491 10440 Face 10594 10201 1919 4148 Face 10595 3479 5021 1919 Face 10596 2510 5523 10675 Face 10597 5768 6148 6656 Face 10598 5768 7440 6148 Face 10599 6941 3489 7777 Face 10600 3433 10368 6029 Face 10601 626 10292 1921 Face 10602 6226 6248 9346 Face 10603 7959 5510 1782 Face 10604 8257 3846 6882 Face 10605 5886 1862 6425 Face 10606 3873 4045 1922 Face 10607 974 4026 4888 Face 10608 1923 6137 4008 Face 10609 3570 1923 6440 Face 10610 3570 6137 1923 Face 10611 3570 6440 4139 Face 10612 5727 6977 9993 Face 10613 5727 10680 6977 Face 10614 893 1924 6681 Face 10615 893 692 1924 Face 10616 5829 9983 11046 Face 10617 11046 1925 6643 Face 10618 11046 8879 1925 Face 10619 1755 7792 3718 Face 10620 669 2426 4831 Face 10621 9754 7343 8512 Face 10622 7985 1927 4218 Face 10623 7985 4681 1927 Face 10624 5860 7170 191 Face 10625 1628 2304 5860 Face 10626 7170 49 4441 Face 10627 7170 5860 49 Face 10628 9427 9777 6321 Face 10629 9427 10531 9777 Face 10630 6960 5906 1928 Face 10631 2314 3538 2830 Face 10632 9684 3210 7224 Face 10633 9684 8083 3210 Face 10634 616 1774 3630 Face 10635 8303 8682 1929 Face 10636 314 9620 7217 Face 10637 314 5511 9620 Face 10638 10703 6489 4256 Face 10639 682 9335 5381 Face 10640 682 6291 9335 Face 10641 7726 5281 3396 Face 10642 3934 2435 7449 Face 10643 5996 3932 8341 Face 10644 837 4856 3183 Face 10645 6084 8855 650 Face 10646 8376 1931 267 Face 10647 8376 9686 1931 Face 10648 5429 1932 5478 Face 10649 5429 8706 1932 Face 10650 423 6363 5149 Face 10651 423 9247 2181 Face 10652 6485 59 10152 Face 10653 2086 10000 9612 Face 10654 10281 1935 4826 Face 10655 8753 5919 5654 Face 10656 9385 2658 1026 Face 10657 482 1300 5836 Face 10658 482 5450 1300 Face 10659 5222 10478 3106 Face 10660 5461 5742 515 Face 10661 8440 2902 5499 Face 10662 8440 8428 2902 Face 10663 9481 6348 6368 Face 10664 732 9239 1429 Face 10665 732 11110 9239 Face 10666 10136 6933 8023 Face 10667 7804 3108 1937 Face 10668 10538 9809 9695 Face 10669 3559 10538 9695 Face 10670 10775 1181 10538 Face 10671 735 1938 7732 Face 10672 735 6272 1938 Face 10673 9031 7557 10126 Face 10674 2142 2444 9854 Face 10675 5385 4215 1602 Face 10676 195 1585 3074 Face 10677 3669 7118 1939 Face 10678 3390 8318 4138 Face 10679 4635 2657 5943 Face 10680 9022 6647 184 Face 10681 6972 1941 6406 Face 10682 1024 1942 8748 Face 10683 7919 5336 9836 Face 10684 7919 7920 5336 Face 10685 4804 4718 479 Face 10686 663 3822 4718 Face 10687 7526 2740 11029 Face 10688 3151 6150 1945 Face 10689 6877 3151 1945 Face 10690 6013 1094 8368 Face 10691 7686 8498 5399 Face 10692 782 6188 8201 Face 10693 9366 11106 1582 Face 10694 3707 2643 10474 Face 10695 77 10474 666 Face 10696 66 2291 10262 Face 10697 66 1117 2291 Face 10698 9922 6276 4799 Face 10699 8153 10343 6276 Face 10700 771 9283 4494 Face 10701 4978 3466 7395 Face 10702 8176 1453 321 Face 10703 2470 9776 1946 Face 10704 4890 5744 39 Face 10705 6251 8110 5744 Face 10706 193 5875 3247 Face 10707 193 6707 5875 Face 10708 338 5671 4766 Face 10709 4077 1947 1012 Face 10710 9829 6799 6533 Face 10711 2012 5100 1948 Face 10712 8399 2592 1949 Face 10713 7692 8399 1949 Face 10714 9220 9991 3644 Face 10715 8651 8243 1530 Face 10716 6334 10238 5546 Face 10717 2142 1951 6296 Face 10718 6182 1952 5121 Face 10719 6329 9603 10858 Face 10720 4308 1017 2290 Face 10721 4308 1274 1017 Face 10722 9029 474 750 Face 10723 6294 9459 8917 Face 10724 4271 5029 10948 Face 10725 2325 9691 5029 Face 10726 9167 5029 9691 Face 10727 2560 10948 5029 Face 10728 2653 7267 10270 Face 10729 5001 4501 10806 Face 10730 4604 1630 2664 Face 10731 3024 3978 6182 Face 10732 785 10312 4424 Face 10733 151 10223 1016 Face 10734 4886 9326 10095 Face 10735 6976 5732 6520 Face 10736 2110 10720 9070 Face 10737 6402 6506 3833 Face 10738 7356 1955 10038 Face 10739 5805 1956 681 Face 10740 5805 2486 1956 Face 10741 564 5616 8756 Face 10742 6264 1007 5159 Face 10743 11003 9418 1958 Face 10744 8187 6326 10007 Face 10745 1879 7877 1959 Face 10746 5999 8176 7586 Face 10747 781 3854 6893 Face 10748 8612 2196 6271 Face 10749 5967 9891 9855 Face 10750 8905 1962 8977 Face 10751 9295 7442 1962 Face 10752 7391 6022 3244 Face 10753 7391 8623 6022 Face 10754 9160 2746 9034 Face 10755 7680 10214 4533 Face 10756 7680 6113 10214 Face 10757 10214 6414 4533 Face 10758 933 10423 7575 Face 10759 2029 4997 1963 Face 10760 8702 628 10692 Face 10761 8540 2529 5451 Face 10762 8540 5712 2529 Face 10763 6731 6070 7087 Face 10764 1333 3503 6886 Face 10765 3366 6878 3053 Face 10766 3366 8286 6878 Face 10767 7027 9858 4668 Face 10768 2591 4979 2644 Face 10769 3736 1965 4302 Face 10770 4893 1966 9697 Face 10771 8940 8609 7395 Face 10772 5516 3759 8609 Face 10773 1285 1967 8035 Face 10774 1285 9542 1967 Face 10775 5417 8148 3626 Face 10776 3368 4275 8148 Face 10777 3612 3656 6399 Face 10778 6365 6005 4251 Face 10779 4535 6889 185 Face 10780 4648 5200 5799 Face 10781 2151 4648 5799 Face 10782 3524 5777 7285 Face 10783 1614 10189 10557 Face 10784 3755 9984 9745 Face 10785 7226 6034 3198 Face 10786 3938 10577 2695 Face 10787 9375 10692 7133 Face 10788 8789 2673 1972 Face 10789 2452 9835 10312 Face 10790 2452 5517 9835 Face 10791 7174 5706 2612 Face 10792 3755 1647 9984 Face 10793 6914 4460 2994 Face 10794 169 5494 5864 Face 10795 828 10990 7800 Face 10796 828 6101 10990 Face 10797 9337 259 2570 Face 10798 1186 9889 1975 Face 10799 1241 3530 4007 Face 10800 3595 4772 1976 Face 10801 7985 4218 4801 Face 10802 8315 9906 1977 Face 10803 1978 11036 5213 Face 10804 6302 1978 5213 Face 10805 8132 1979 2211 Face 10806 8966 7294 4505 Face 10807 3145 3442 9787 Face 10808 7196 4972 1980 Face 10809 3834 7971 1250 Face 10810 3968 10484 3326 Face 10811 3834 10670 3968 Face 10812 4027 9251 9724 Face 10813 5214 1981 7068 Face 10814 5214 4984 1981 Face 10815 2911 8064 1983 Face 10816 2781 6522 7122 Face 10817 3772 1733 6522 Face 10818 4174 2929 8722 Face 10819 6779 10820 10946 Face 10820 6779 2148 10820 Face 10821 1153 8239 7315 Face 10822 10889 1113 1984 Face 10823 937 10683 1986 Face 10824 31 5129 4093 Face 10825 3280 1987 1217 Face 10826 3280 10995 1987 Face 10827 10298 9546 1131 Face 10828 3984 1503 8287 Face 10829 2709 6058 10612 Face 10830 2709 8704 6058 Face 10831 8209 1455 8049 Face 10832 7601 3649 1990 Face 10833 6768 10816 5658 Face 10834 6768 6367 10816 Face 10835 2377 7673 5531 Face 10836 2377 7245 7673 Face 10837 4444 9736 5677 Face 10838 4444 6534 9736 Face 10839 380 1991 5617 Face 10840 4628 7507 10843 Face 10841 4628 1458 7507 Face 10842 6759 1992 1627 Face 10843 6759 3166 1992 Face 10844 5589 8357 5971 Face 10845 594 1994 6504 Face 10846 594 5604 1994 Face 10847 1247 644 10186 Face 10848 11006 4590 4266 Face 10849 901 8477 1510 Face 10850 901 3047 8477 Face 10851 7928 5308 7270 Face 10852 7928 2390 5308 Face 10853 4912 9848 1689 Face 10854 5063 3750 8096 Face 10855 9555 1996 844 Face 10856 724 5019 1997 Face 10857 8178 9101 4980 Face 10858 1697 5581 2833 Face 10859 8402 7323 3714 Face 10860 8402 4006 7323 Face 10861 4834 5457 308 Face 10862 6214 6959 1999 Face 10863 10287 5050 6980 Face 10864 4217 8360 1241 Face 10865 2386 7960 2525 Face 10866 1768 4399 10414 Face 10867 4656 4589 5914 Face 10868 669 4831 9627 Face 10869 5519 2002 5215 Face 10870 5519 2753 2002 Face 10871 24 10822 2005 Face 10872 2042 2006 690 Face 10873 8394 9088 2006 Face 10874 7520 66 5559 Face 10875 5334 4392 2895 Face 10876 8642 4919 5597 Face 10877 5974 7565 6557 Face 10878 7226 2007 2864 Face 10879 7226 4949 2007 Face 10880 8031 10109 6238 Face 10881 7390 6050 4953 Face 10882 4269 6842 6049 Face 10883 7390 4953 9534 Face 10884 9841 2008 9359 Face 10885 9841 3579 2008 Face 10886 10402 1468 10300 Face 10887 8308 7470 3903 Face 10888 7172 8308 3426 Face 10889 1191 3460 208 Face 10890 9945 8302 3043 Face 10891 3858 5600 6142 Face 10892 10824 9092 4108 Face 10893 10362 1107 1606 Face 10894 4945 2009 9040 Face 10895 4945 10346 2009 Face 10896 10640 7200 9825 Face 10897 10480 7942 2128 Face 10898 9814 2010 6678 Face 10899 10642 6307 5578 Face 10900 10642 4381 6307 Face 10901 8140 2011 806 Face 10902 10736 4869 1289 Face 10903 10736 7485 4869 Face 10904 3730 6539 6247 Face 10905 5088 8348 11092 Face 10906 3002 5331 5383 Face 10907 8499 7738 2526 Face 10908 5834 10398 5951 Face 10909 10432 4515 10963 Face 10910 10432 7372 4515 Face 10911 3108 6983 9108 Face 10912 7664 9153 10489 Face 10913 8689 1806 1481 Face 10914 912 1791 11015 Face 10915 910 6305 2013 Face 10916 8774 10546 3215 Face 10917 8774 2612 10546 Face 10918 5661 5200 2014 Face 10919 8726 2318 1090 Face 10920 6563 964 5874 Face 10921 9088 719 4895 Face 10922 3286 6018 2016 Face 10923 2470 5014 2658 Face 10924 2470 24 5014 Face 10925 227 9373 21 Face 10926 227 10963 9373 Face 10927 8720 8513 5722 Face 10928 5938 7561 2293 Face 10929 8514 97 6735 Face 10930 1114 7906 4617 Face 10931 4928 209 7906 Face 10932 10430 4246 8137 Face 10933 10430 4436 4246 Face 10934 2389 10181 6108 Face 10935 2881 3608 6627 Face 10936 8119 78 4615 Face 10937 1711 5539 4690 Face 10938 9111 4666 9357 Face 10939 592 2020 7053 Face 10940 2650 5709 2020 Face 10941 380 71 1991 Face 10942 71 5577 2021 Face 10943 6828 4247 730 Face 10944 6181 2013 4247 Face 10945 2491 2022 1953 Face 10946 2491 5459 2022 Face 10947 4894 4955 5455 Face 10948 4894 794 4955 Face 10949 7027 4674 2690 Face 10950 9567 10729 9076 Face 10951 9567 5189 10729 Face 10952 7288 2023 2000 Face 10953 7447 5056 2024 Face 10954 5454 4296 9055 Face 10955 5454 8579 4296 Face 10956 2753 9284 7477 Face 10957 1042 8035 4995 Face 10958 7300 7568 2025 Face 10959 5522 2870 4510 Face 10960 9127 2026 4192 Face 10961 9127 3588 2026 Face 10962 6173 6487 1140 Face 10963 618 9421 609 Face 10964 618 617 9421 Face 10965 7443 8935 7164 Face 10966 7443 363 8935 Face 10967 5673 2028 6472 Face 10968 5673 3042 2028 Face 10969 8849 4490 1867 Face 10970 1963 6794 2029 Face 10971 580 2158 7458 Face 10972 580 11093 2158 Face 10973 2030 10740 2711 Face 10974 2626 6740 9947 Face 10975 10088 8422 2032 Face 10976 11037 8059 7580 Face 10977 11037 8931 8059 Face 10978 6479 5130 8643 Face 10979 10594 1201 3412 Face 10980 2047 9136 10749 Face 10981 9497 10130 583 Face 10982 9232 2752 6387 Face 10983 11059 9232 6387 Face 10984 11059 5474 9232 Face 10985 1904 6766 8121 Face 10986 6766 5652 5926 Face 10987 6766 5926 5415 Face 10988 10496 2973 10495 Face 10989 662 7471 7332 Face 10990 10044 2956 2035 Face 10991 948 9119 5187 Face 10992 4258 7903 5580 Face 10993 4058 10010 10427 Face 10994 10005 1801 8068 Face 10995 4731 951 8333 Face 10996 9897 1311 5328 Face 10997 10208 6253 2037 Face 10998 711 3272 7458 Face 10999 7972 4951 2038 Face 11000 827 7346 6343 Face 11001 4848 10314 1729 Face 11002 2039 6971 10314 Face 11003 4848 2039 10314 Face 11004 4848 10365 5784 Face 11005 11043 7898 3111 Face 11006 109 5591 10065 Face 11007 109 1238 5591 Face 11008 146 4870 510 Face 11009 5383 8238 5439 Face 11010 5383 5331 8238 Face 11011 482 6763 4293 Face 11012 5836 3230 6763 Face 11013 9199 7268 10455 Face 11014 7834 4906 7732 Face 11015 7834 6444 4906 Face 11016 10152 2040 4454 Face 11017 10152 59 2040 Face 11018 8768 10855 7659 Face 11019 10855 1473 10141 Face 11020 10982 5288 5947 Face 11021 6882 2427 10922 Face 11022 4992 2041 3734 Face 11023 9357 4520 1902 Face 11024 9357 9127 4520 Face 11025 427 1390 2711 Face 11026 4644 2043 9517 Face 11027 9307 3843 4014 Face 11028 7103 4619 241 Face 11029 7103 2267 4619 Face 11030 10434 5013 6011 Face 11031 4972 6169 5013 Face 11032 4008 149 1923 Face 11033 6988 3637 3497 Face 11034 6988 3196 3637 Face 11035 10749 4678 2047 Face 11036 2047 4678 5753 Face 11037 2804 8960 9235 Face 11038 9773 4729 8070 Face 11039 8816 10283 812 Face 11040 2378 5792 3408 Face 11041 2378 9339 5792 Face 11042 854 2049 5183 Face 11043 9561 4211 1184 Face 11044 473 2858 3371 Face 11045 473 6189 2858 Face 11046 473 219 6189 Face 11047 410 4401 2052 Face 11048 181 746 10689 Face 11049 6159 8355 2808 Face 11050 1332 9249 8817 Face 11051 3301 2561 3066 Face 11052 10631 3230 5760 Face 11053 78 596 6237 Face 11054 8265 6573 6941 Face 11055 8265 5145 6573 Face 11056 607 9078 6873 Face 11057 8543 373 2056 Face 11058 4994 2421 8734 Face 11059 3141 25 6667 Face 11060 3141 4423 25 Face 11061 9681 1526 2060 Face 11062 4943 2779 2061 Face 11063 8185 9954 10717 Face 11064 1739 6156 804 Face 11065 2207 5569 10115 Face 11066 1174 11000 4492 Face 11067 9052 9744 8542 Face 11068 9052 9430 8522 Face 11069 7643 1754 8801 Face 11070 6493 2062 1223 Face 11071 4517 7950 8414 Face 11072 4667 8982 725 Face 11073 4667 9467 8982 Face 11074 6083 8019 7349 Face 11075 2430 401 2063 Face 11076 8260 4143 9236 Face 11077 8260 6071 4143 Face 11078 7350 2064 2328 Face 11079 6726 9683 412 Face 11080 9285 6732 5087 Face 11081 136 9124 3290 Face 11082 136 6732 9285 Face 11083 1672 8788 5617 Face 11084 4886 7089 9326 Face 11085 8280 8339 7289 Face 11086 8722 7466 8339 Face 11087 4966 8181 6839 Face 11088 9496 2067 293 Face 11089 9496 5702 2067 Face 11090 6210 2166 7632 Face 11091 10658 8136 2218 Face 11092 752 3432 5027 Face 11093 9932 3492 2068 Face 11094 8575 2070 6502 Face 11095 552 6461 10744 Face 11096 9378 4976 5102 Face 11097 7733 8783 10503 Face 11098 9116 9907 4010 Face 11099 2845 7354 6629 Face 11100 2845 5227 7354 Face 11101 9122 2071 5035 Face 11102 2072 5960 9298 Face 11103 10481 2072 3276 Face 11104 2072 10481 1177 Face 11105 6464 10013 2513 Face 11106 6464 5917 10013 Face 11107 2614 2649 8480 Face 11108 6018 4675 1411 Face 11109 6018 3286 4675 Face 11110 1042 6948 2074 Face 11111 6703 368 2075 Face 11112 541 10989 2078 Face 11113 11100 3665 6430 Face 11114 2080 10055 10536 Face 11115 615 8213 4270 Face 11116 615 2323 8213 Face 11117 5745 2646 7908 Face 11118 5126 9023 4150 Face 11119 3842 8901 3860 Face 11120 3842 4900 8901 Face 11121 2083 2082 7221 Face 11122 5643 6090 2082 Face 11123 5643 2083 5688 Face 11124 840 5449 6751 Face 11125 7422 746 181 Face 11126 1177 1180 5960 Face 11127 176 1083 9996 Face 11128 5249 7694 5941 Face 11129 10799 10479 9030 Face 11130 7208 3876 1448 Face 11131 106 9324 7171 Face 11132 3668 2084 9898 Face 11133 5458 8877 485 Face 11134 5242 5601 1531 Face 11135 6683 3580 2087 Face 11136 2193 3453 6928 Face 11137 5240 2088 8813 Face 11138 5240 809 2088 Face 11139 7803 2699 7858 Face 11140 2495 9174 9156 Face 11141 3890 3853 7351 Face 11142 5675 6507 9143 Face 11143 10217 1637 7186 Face 11144 10217 4823 1637 Face 11145 5133 2125 8973 Face 11146 10432 565 9271 Face 11147 5988 2090 6288 Face 11148 1453 5003 5778 Face 11149 5999 7586 5003 Face 11150 10111 1674 5434 Face 11151 185 9022 4535 Face 11152 8091 6398 4686 Face 11153 5724 6082 4205 Face 11154 10798 4839 1973 Face 11155 4255 4580 4839 Face 11156 2093 2092 2428 Face 11157 14 2092 2093 Face 11158 263 7157 8175 Face 11159 4228 6530 4990 Face 11160 8180 5612 2061 Face 11161 8624 10270 9646 Face 11162 7916 10245 3911 Face 11163 7916 7600 10245 Face 11164 2979 6756 3987 Face 11165 3525 10476 5843 Face 11166 234 2095 4239 Face 11167 234 3684 2095 Face 11168 6451 11098 8772 Face 11169 5487 1896 3343 Face 11170 5487 2228 1896 Face 11171 5754 11039 2096 Face 11172 3634 8305 1858 Face 11173 3634 1591 8305 Face 11174 468 10884 2099 Face 11175 569 2101 10058 Face 11176 4124 4382 2101 Face 11177 2069 343 8711 Face 11178 6096 1978 2103 Face 11179 9954 2300 6807 Face 11180 4921 8753 8036 Face 11181 2108 2107 46 Face 11182 516 1285 1042 Face 11183 456 6255 2813 Face 11184 721 8113 2111 Face 11185 1579 509 9704 Face 11186 1579 2112 10722 Face 11187 1579 9704 2112 Face 11188 9323 2616 3933 Face 11189 9323 5786 2616 Face 11190 10659 1086 4107 Face 11191 10659 30 1086 Face 11192 1412 1815 10915 Face 11193 1630 7726 2664 Face 11194 10224 9268 1335 Face 11195 10224 9406 9268 Face 11196 2817 3278 8525 Face 11197 9536 2962 1677 Face 11198 4191 4080 7882 Face 11199 5091 9268 9406 Face 11200 1454 3737 756 Face 11201 5469 2115 6357 Face 11202 5469 8521 2115 Face 11203 8235 4563 4248 Face 11204 3472 2116 6998 Face 11205 3472 1654 2116 Face 11206 7144 2117 10191 Face 11207 7076 9462 1379 Face 11208 9143 5186 5675 Face 11209 7732 5423 735 Face 11210 7732 4906 5423 Face 11211 7848 9857 7040 Face 11212 6129 2119 270 Face 11213 7535 6129 4696 Face 11214 7535 2119 6129 Face 11215 5359 228 8859 Face 11216 10732 4957 3489 Face 11217 7413 7634 4957 Face 11218 10783 7409 8556 Face 11219 10783 9519 7409 Face 11220 9423 7751 6880 Face 11221 10941 9411 5426 Face 11222 10941 8350 9411 Face 11223 2900 1087 8237 Face 11224 10879 8756 1661 Face 11225 10879 564 8756 Face 11226 6253 2123 10165 Face 11227 6477 10071 9584 Face 11228 8511 4804 3641 Face 11229 8511 3135 4804 Face 11230 9452 8746 9055 Face 11231 8588 575 4225 Face 11232 8588 5783 575 Face 11233 7494 8588 4225 Face 11234 6991 4495 10893 Face 11235 6997 9584 10327 Face 11236 8986 9352 3884 Face 11237 28 10297 8446 Face 11238 28 6636 10297 Face 11239 1389 9608 2577 Face 11240 567 4971 2125 Face 11241 496 2127 10858 Face 11242 3597 8517 2406 Face 11243 3466 6703 2075 Face 11244 3466 4978 6703 Face 11245 3783 9062 10946 Face 11246 1840 1841 1406 Face 11247 1141 10480 2128 Face 11248 8851 9144 1966 Face 11249 339 8640 2129 Face 11250 7202 3004 308 Face 11251 5992 1741 2130 Face 11252 3581 9562 1426 Face 11253 3581 1505 9562 Face 11254 6879 6987 10327 Face 11255 6135 5506 9950 Face 11256 9902 6162 1261 Face 11257 2091 502 9484 Face 11258 4057 7810 9396 Face 11259 1839 2132 7440 Face 11260 1839 6902 2132 Face 11261 1664 2133 6370 Face 11262 1664 10434 2133 Face 11263 4152 872 10159 Face 11264 8832 8970 4554 Face 11265 3981 9569 10994 Face 11266 8047 7253 9569 Face 11267 7891 2135 1288 Face 11268 9800 2597 2136 Face 11269 5944 1574 6676 Face 11270 3230 2137 5760 Face 11271 3230 7629 2137 Face 11272 5683 7990 4977 Face 11273 7117 7084 8976 Face 11274 7117 1437 7084 Face 11275 10903 2139 3839 Face 11276 10903 2446 2139 Face 11277 9980 11113 9601 Face 11278 9980 1948 11113 Face 11279 9407 7562 2140 Face 11280 8673 2141 2157 Face 11281 6761 811 4669 Face 11282 3344 5141 7868 Face 11283 4968 3685 10983 Face 11284 3243 5743 9456 Face 11285 3243 4174 5743 Face 11286 10799 458 9379 Face 11287 9478 1914 10674 Face 11288 940 10838 3329 Face 11289 2146 10759 10810 Face 11290 8758 35 10419 Face 11291 8758 2146 6320 Face 11292 8758 10759 2146 Face 11293 5106 4822 1366 Face 11294 4265 584 3153 Face 11295 8310 1218 3500 Face 11296 6698 2147 10795 Face 11297 4589 7461 8671 Face 11298 2884 5887 3337 Face 11299 1109 2148 6237 Face 11300 1109 7012 2148 Face 11301 2150 5126 4150 Face 11302 2151 10745 3321 Face 11303 875 7959 1782 Face 11304 2248 2153 10774 Face 11305 193 3246 10909 Face 11306 7546 7063 8290 Face 11307 6754 9682 1608 Face 11308 6754 635 9682 Face 11309 3649 1475 6303 Face 11310 2157 8580 5273 Face 11311 3222 8673 2157 Face 11312 2758 7024 7368 Face 11313 10038 2159 2354 Face 11314 10038 2447 2159 Face 11315 9050 2239 11023 Face 11316 9050 9449 4178 Face 11317 7910 939 2160 Face 11318 6641 9510 6866 Face 11319 8307 9166 6503 Face 11320 8307 1416 9166 Face 11321 303 9534 2162 Face 11322 4795 1685 1313 Face 11323 10756 6947 2163 Face 11324 2165 10869 4018 Face 11325 5433 2166 3209 Face 11326 8889 8357 2167 Face 11327 9242 7293 2168 Face 11328 364 4736 2169 Face 11329 1304 9150 2170 Face 11330 9348 4182 1049 Face 11331 289 6978 4800 Face 11332 9715 6404 2173 Face 11333 1944 9009 2710 Face 11334 7741 2634 800 Face 11335 6098 6838 6254 Face 11336 3819 11005 7617 Face 11337 6845 9768 2174 Face 11338 9861 6774 10857 Face 11339 10684 2176 1349 Face 11340 10684 4052 2176 Face 11341 874 8753 4921 Face 11342 1245 104 1047 Face 11343 50 1741 1324 Face 11344 7078 8669 6665 Face 11345 7078 1651 8669 Face 11346 1504 5763 8475 Face 11347 320 7698 2874 Face 11348 6526 2179 768 Face 11349 3251 1465 3701 Face 11350 2042 8394 2006 Face 11351 1234 8395 407 Face 11352 941 7254 2307 Face 11353 5515 9418 8745 Face 11354 6055 848 8053 Face 11355 6055 8025 848 Face 11356 2925 2183 1696 Face 11357 2925 7854 2183 Face 11358 6205 2810 2944 Face 11359 5970 2184 7125 Face 11360 5970 6622 10599 Face 11361 9828 7193 2186 Face 11362 1343 10241 10634 Face 11363 2794 6420 5282 Face 11364 9037 5813 4706 Face 11365 3017 923 6465 Face 11366 610 2190 9509 Face 11367 7 7154 6308 Face 11368 7283 5935 6099 Face 11369 3475 10966 1964 Face 11370 8833 4782 10966 Face 11371 7047 2191 10203 Face 11372 7047 7101 2191 Face 11373 1069 2192 8416 Face 11374 1069 9514 2192 Face 11375 3696 9538 8653 Face 11376 3203 7180 2195 Face 11377 5048 7180 3258 Face 11378 5048 2195 7180 Face 11379 514 5048 3258 Face 11380 5034 755 7333 Face 11381 6973 1261 6162 Face 11382 6973 8720 1261 Face 11383 7464 6384 10302 Face 11384 5550 3646 10297 Face 11385 6727 1052 7978 Face 11386 6035 1679 2197 Face 11387 9747 7157 1177 Face 11388 582 2198 1502 Face 11389 4419 5638 11050 Face 11390 4419 10630 5638 Face 11391 2602 2703 378 Face 11392 6336 6963 3076 Face 11393 1716 3671 2848 Face 11394 8237 2199 9233 Face 11395 4840 10761 2199 Face 11396 5724 4205 4320 Face 11397 7809 2934 2202 Face 11398 1361 4733 6741 Face 11399 1361 6841 4733 Face 11400 10137 1610 7734 Face 11401 4152 10363 872 Face 11402 3739 9496 10639 Face 11403 9674 7560 6152 Face 11404 41 6868 2204 Face 11405 9211 2205 19 Face 11406 9211 10091 2205 Face 11407 7444 2206 7518 Face 11408 7444 2229 2206 Face 11409 9494 2208 4882 Face 11410 9494 8055 2208 Face 11411 9494 6748 4412 Face 11412 9494 4882 6748 Face 11413 2258 4594 2835 Face 11414 7426 2509 9912 Face 11415 4440 8005 10984 Face 11416 9651 647 8005 Face 11417 8863 109 6619 Face 11418 4297 11105 5625 Face 11419 4142 429 2209 Face 11420 2289 5903 4142 Face 11421 2289 10014 5903 Face 11422 9073 2210 9355 Face 11423 9073 3347 10673 Face 11424 10154 9157 8206 Face 11425 9084 6778 5924 Face 11426 8286 9838 6878 Face 11427 8286 7419 9838 Face 11428 3461 9767 10969 Face 11429 9164 7243 9383 Face 11430 9302 4769 9365 Face 11431 8172 2212 2588 Face 11432 9664 8695 7875 Face 11433 9664 10446 8695 Face 11434 10015 10646 5164 Face 11435 2213 10383 9139 Face 11436 2214 6558 1925 Face 11437 4478 5195 2214 Face 11438 1495 6496 7396 Face 11439 6567 9532 2215 Face 11440 5641 2216 5897 Face 11441 1104 6945 5170 Face 11442 9081 531 10589 Face 11443 9081 9886 531 Face 11444 3874 4571 1274 Face 11445 3874 1215 4571 Face 11446 3385 2217 6406 Face 11447 2508 9524 7612 Face 11448 3472 7670 1654 Face 11449 3472 1391 7670 Face 11450 527 8617 3320 Face 11451 5640 9721 8617 Face 11452 9891 5967 9608 Face 11453 1413 3732 6492 Face 11454 3201 8721 9026 Face 11455 1228 2220 6563 Face 11456 1228 2266 2220 Face 11457 8051 1505 6092 Face 11458 9646 10270 2221 Face 11459 2935 8439 1793 Face 11460 5187 436 2117 Face 11461 7013 2988 1581 Face 11462 4099 2225 10369 Face 11463 2226 1932 2225 Face 11464 3915 9165 5676 Face 11465 4639 9984 7030 Face 11466 559 6601 7163 Face 11467 8090 1006 9657 Face 11468 9508 4974 7183 Face 11469 8094 10975 7227 Face 11470 8094 6206 10975 Face 11471 10428 5570 2402 Face 11472 532 9543 10873 Face 11473 5444 639 9543 Face 11474 532 5444 9543 Face 11475 532 503 5444 Face 11476 6071 7940 3509 Face 11477 6071 1773 7940 Face 11478 2563 2401 2228 Face 11479 1810 7626 1213 Face 11480 4037 2229 10412 Face 11481 10800 8240 4789 Face 11482 6954 2230 8115 Face 11483 5880 1786 8122 Face 11484 8069 8986 2518 Face 11485 6908 5203 718 Face 11486 6908 2167 5203 Face 11487 8242 4947 3924 Face 11488 8039 6757 8616 Face 11489 868 1444 6757 Face 11490 2990 9959 2599 Face 11491 2271 5884 338 Face 11492 5468 9451 2232 Face 11493 3054 1720 1038 Face 11494 13 6966 9741 Face 11495 2879 6310 2301 Face 11496 9293 7372 9113 Face 11497 4199 3130 7681 Face 11498 912 9706 1791 Face 11499 8787 1360 9706 Face 11500 9756 9003 4588 Face 11501 3341 4563 8235 Face 11502 838 3204 8010 Face 11503 10676 4122 6105 Face 11504 2312 4582 2236 Face 11505 3369 5412 4135 Face 11506 1395 10408 1656 Face 11507 10658 5210 8205 Face 11508 727 2237 8112 Face 11509 157 3741 2238 Face 11510 4094 9256 5389 Face 11511 7961 8219 11081 Face 11512 742 2239 5363 Face 11513 742 11023 2239 Face 11514 7774 2241 1489 Face 11515 7774 1898 2241 Face 11516 3866 8752 9693 Face 11517 5420 1549 2244 Face 11518 9012 1544 8204 Face 11519 5936 9330 8204 Face 11520 5936 2066 9330 Face 11521 9390 2071 9563 Face 11522 8175 172 10389 Face 11523 9881 9726 10559 Face 11524 1095 229 4168 Face 11525 10539 6672 5772 Face 11526 5396 2774 3865 Face 11527 8574 2486 547 Face 11528 1548 2245 1293 Face 11529 1548 542 2245 Face 11530 6093 886 165 Face 11531 2655 8184 2246 Face 11532 9650 7518 2206 Face 11533 3532 2950 6286 Face 11534 7809 7997 2934 Face 11535 704 10774 4248 Face 11536 5258 4175 6085 Face 11537 5258 10683 4175 Face 11538 8268 4334 2249 Face 11539 8 6575 2251 Face 11540 1370 3145 2253 Face 11541 8729 6943 6904 Face 11542 1171 8047 6350 Face 11543 1171 7253 8047 Face 11544 3410 8245 3740 Face 11545 8672 5953 3134 Face 11546 8672 10940 5953 Face 11547 9148 2255 3321 Face 11548 5112 2381 7899 Face 11549 10173 9058 1662 Face 11550 10173 2732 9058 Face 11551 9352 8406 3884 Face 11552 2382 6137 4449 Face 11553 3641 479 5377 Face 11554 3503 1333 6729 Face 11555 6739 4706 7039 Face 11556 4564 6826 3527 Face 11557 6826 4564 6535 Face 11558 8476 10028 1878 Face 11559 3830 7316 8397 Face 11560 5706 10546 2612 Face 11561 5706 10236 10546 Face 11562 2257 2281 6122 Face 11563 9753 10075 9794 Face 11564 797 2258 6932 Face 11565 797 4594 2258 Face 11566 8875 2141 11006 Face 11567 11109 2259 6358 Face 11568 1147 10418 1564 Face 11569 4019 843 10418 Face 11570 7634 2260 4957 Face 11571 7634 9965 2260 Face 11572 8634 505 1672 Face 11573 10441 6662 9334 Face 11574 2155 7472 9119 Face 11575 9693 3967 7590 Face 11576 910 2013 2284 Face 11577 357 9243 8028 Face 11578 9117 10916 2438 Face 11579 6048 10630 10261 Face 11580 6048 5638 10630 Face 11581 2507 5294 7235 Face 11582 6253 10165 5294 Face 11583 3993 8971 6742 Face 11584 5842 10256 2263 Face 11585 4108 5680 1557 Face 11586 10386 2266 1228 Face 11587 759 5522 2793 Face 11588 7921 10582 6430 Face 11589 7412 2267 7103 Face 11590 7412 9163 2267 Face 11591 8570 8795 188 Face 11592 8570 1843 8795 Face 11593 4723 6965 8519 Face 11594 9796 4723 8519 Face 11595 9257 6301 9298 Face 11596 9753 11066 10075 Face 11597 10834 2268 5917 Face 11598 10834 7141 2268 Face 11599 1350 4618 3540 Face 11600 2195 5048 9145 Face 11601 5405 10371 4176 Face 11602 6889 8819 9935 Face 11603 44 9022 2269 Face 11604 2972 7272 7072 Face 11605 1023 1582 4360 Face 11606 5724 8484 7245 Face 11607 5724 4320 8484 Face 11608 935 6540 2999 Face 11609 10290 881 9576 Face 11610 8854 4735 2270 Face 11611 66 4921 5559 Face 11612 66 10262 4921 Face 11613 2271 4766 7279 Face 11614 1974 1415 5295 Face 11615 4301 5737 1064 Face 11616 6083 5023 8019 Face 11617 3521 3727 9341 Face 11618 315 11042 1951 Face 11619 315 4357 11042 Face 11620 3583 10878 2324 Face 11621 1714 7939 10878 Face 11622 1714 10878 5084 Face 11623 381 3094 5156 Face 11624 6072 5727 7459 Face 11625 4626 6198 2275 Face 11626 5002 9532 6890 Face 11627 2575 7825 10164 Face 11628 7548 3341 2276 Face 11629 3941 359 443 Face 11630 3941 3604 359 Face 11631 7536 515 3967 Face 11632 5266 7562 9407 Face 11633 5266 10082 7562 Face 11634 4975 6226 556 Face 11635 3809 6197 9752 Face 11636 7229 485 8880 Face 11637 7229 3048 485 Face 11638 9847 4768 4992 Face 11639 9847 5586 4768 Face 11640 139 6737 6848 Face 11641 2342 5316 2279 Face 11642 10018 2280 4448 Face 11643 10739 6122 2281 Face 11644 7956 10305 1535 Face 11645 7956 10921 10305 Face 11646 115 1358 9046 Face 11647 9597 4287 9051 Face 11648 9597 829 2282 Face 11649 4236 2283 3927 Face 11650 4236 3502 2283 Face 11651 7356 5679 1955 Face 11652 9580 4311 4614 Face 11653 2942 7114 8569 Face 11654 10728 10908 1226 Face 11655 2982 9992 2285 Face 11656 9259 5017 1012 Face 11657 5856 391 2287 Face 11658 7201 9408 5464 Face 11659 10493 10325 10387 Face 11660 2061 7967 7628 Face 11661 2061 5612 7967 Face 11662 981 4668 2527 Face 11663 981 7027 4668 Face 11664 5719 4847 10309 Face 11665 2694 9530 7754 Face 11666 9215 6378 9530 Face 11667 216 7863 6564 Face 11668 10589 5892 3806 Face 11669 10589 531 5892 Face 11670 1097 7556 1754 Face 11671 1097 3889 7556 Face 11672 5745 5816 892 Face 11673 6689 2290 10238 Face 11674 3857 4308 2290 Face 11675 3145 7752 3442 Face 11676 3145 4024 7752 Face 11677 7071 10364 4145 Face 11678 6985 4177 495 Face 11679 505 4730 8861 Face 11680 3517 7152 576 Face 11681 5893 8108 7152 Face 11682 7807 9672 5916 Face 11683 1843 524 9337 Face 11684 1843 8570 524 Face 11685 8330 5770 470 Face 11686 3885 8377 5843 Face 11687 3885 2292 8377 Face 11688 3885 997 2292 Face 11689 9105 7083 8548 Face 11690 5433 8012 2166 Face 11691 192 5281 2294 Face 11692 1700 9356 9278 Face 11693 6071 2297 4561 Face 11694 6071 3509 2297 Face 11695 4352 8755 7592 Face 11696 4678 10749 10910 Face 11697 2896 1298 7529 Face 11698 4293 8828 429 Face 11699 7501 5393 7727 Face 11700 5328 9955 5826 Face 11701 1008 8131 2466 Face 11702 1008 3093 7341 Face 11703 7527 5699 4922 Face 11704 10393 10018 9690 Face 11705 951 9475 7054 Face 11706 9570 4715 4716 Face 11707 9715 2173 10121 Face 11708 2879 2301 5425 Face 11709 3485 3775 6559 Face 11710 1236 7380 7659 Face 11711 1236 4687 8173 Face 11712 6702 7173 4418 Face 11713 11033 2304 3555 Face 11714 10558 5860 2304 Face 11715 7914 5503 6442 Face 11716 2770 8512 7343 Face 11717 2770 2242 8512 Face 11718 533 8921 2305 Face 11719 10169 1771 1568 Face 11720 10169 6745 2308 Face 11721 6380 8196 7969 Face 11722 4208 9130 2466 Face 11723 4208 7021 9130 Face 11724 4819 2311 10789 Face 11725 4819 3587 2311 Face 11726 4634 2312 2236 Face 11727 4634 8985 2312 Face 11728 8434 2313 796 Face 11729 1538 2598 2313 Face 11730 8539 9720 42 Face 11731 1276 6834 6037 Face 11732 6580 1390 9690 Face 11733 6871 4288 7534 Face 11734 6871 6874 4288 Face 11735 9692 849 6308 Face 11736 10700 6010 10853 Face 11737 5933 10632 402 Face 11738 5933 9446 10632 Face 11739 8101 7297 4341 Face 11740 5441 5357 376 Face 11741 361 10506 10456 Face 11742 8354 8773 1939 Face 11743 10924 8438 8871 Face 11744 10529 5879 5392 Face 11745 10529 9472 5879 Face 11746 10412 2229 8328 Face 11747 6916 6062 9238 Face 11748 6947 2164 6857 Face 11749 10221 7943 9717 Face 11750 10221 933 7943 Face 11751 8455 129 4699 Face 11752 571 4207 11045 Face 11753 571 6811 4207 Face 11754 3413 10040 5152 Face 11755 3413 1383 10040 Face 11756 2308 1771 10169 Face 11757 2308 4049 1771 Face 11758 2414 3192 435 Face 11759 8715 5105 8714 Face 11760 5105 8428 5705 Face 11761 3817 1599 6037 Face 11762 3817 2266 1599 Face 11763 11038 6856 7309 Face 11764 2882 3162 8694 Face 11765 155 2219 3304 Face 11766 8833 3475 5652 Face 11767 5388 3787 1295 Face 11768 6973 2383 6124 Face 11769 6973 6162 2383 Face 11770 10534 2318 8297 Face 11771 5762 7445 1617 Face 11772 5327 6864 7445 Face 11773 6062 10804 4815 Face 11774 3132 4876 7274 Face 11775 3701 6190 7783 Face 11776 1744 9719 4871 Face 11777 1744 7753 9719 Face 11778 1758 7534 7286 Face 11779 5166 11071 1926 Face 11780 5211 211 1747 Face 11781 407 8313 8536 Face 11782 3650 9151 8313 Face 11783 3829 9835 167 Face 11784 593 1302 6937 Face 11785 2411 439 10042 Face 11786 231 1402 2322 Face 11787 1278 10601 4983 Face 11788 7730 4122 2323 Face 11789 2927 9418 5515 Face 11790 7441 5460 10022 Face 11791 3194 6264 5159 Face 11792 3194 1506 6264 Face 11793 1902 371 4157 Face 11794 1902 4520 371 Face 11795 3622 9729 2326 Face 11796 5358 7168 10462 Face 11797 9059 1498 9625 Face 11798 2997 6794 3748 Face 11799 2997 2029 6794 Face 11800 8293 9463 58 Face 11801 8293 9656 9463 Face 11802 9545 10305 6044 Face 11803 3961 7798 3520 Face 11804 7966 8521 3603 Face 11805 6000 2328 2064 Face 11806 913 3989 9908 Face 11807 913 9908 1759 Face 11808 1771 2431 8927 Face 11809 629 2331 5158 Face 11810 2941 10384 9940 Face 11811 1603 10771 1585 Face 11812 536 9916 10567 Face 11813 6595 9573 2632 Face 11814 1160 7134 9573 Face 11815 5146 9573 6595 Face 11816 24 4448 10822 Face 11817 7813 2333 9185 Face 11818 7813 5649 2333 Face 11819 2334 7006 11021 Face 11820 4386 6777 6534 Face 11821 1188 9894 709 Face 11822 1697 8690 10937 Face 11823 1697 2833 8690 Face 11824 6004 976 5138 Face 11825 8897 9380 8236 Face 11826 8104 10738 1461 Face 11827 7306 9299 2337 Face 11828 390 11075 7297 Face 11829 6558 9521 2338 Face 11830 3257 6265 5053 Face 11831 3257 3449 6265 Face 11832 6693 9485 5609 Face 11833 303 4478 9534 Face 11834 3395 7402 8997 Face 11835 450 855 3195 Face 11836 6624 2340 3451 Face 11837 2552 9816 4110 Face 11838 267 9760 8586 Face 11839 10177 3331 6533 Face 11840 9707 7949 2343 Face 11841 2536 3232 10107 Face 11842 6850 4383 2793 Face 11843 5233 8821 4383 Face 11844 3992 8186 8994 Face 11845 7914 6832 2346 Face 11846 1232 3058 8244 Face 11847 6352 6789 7982 Face 11848 4912 1689 643 Face 11849 1657 8456 6618 Face 11850 2196 9593 8088 Face 11851 497 3309 4261 Face 11852 497 10669 829 Face 11853 497 4261 10669 Face 11854 7175 2347 9258 Face 11855 4125 2348 4250 Face 11856 980 3748 2349 Face 11857 4077 2925 6171 Face 11858 8338 10343 8153 Face 11859 8338 10508 10343 Face 11860 2137 4832 3686 Face 11861 1440 4276 9844 Face 11862 6901 8380 4759 Face 11863 4925 7704 6953 Face 11864 7436 7983 9216 Face 11865 613 9837 5583 Face 11866 9177 1979 10012 Face 11867 4734 1748 6240 Face 11868 6312 10747 5057 Face 11869 7938 3405 3404 Face 11870 1201 10407 9409 Face 11871 4695 5997 10527 Face 11872 7334 5152 9944 Face 11873 10133 2351 2550 Face 11874 10133 7079 2351 Face 11875 218 764 10400 Face 11876 4388 5865 9553 Face 11877 8653 3703 3696 Face 11878 9117 2352 5430 Face 11879 10813 10547 2352 Face 11880 10063 8647 9971 Face 11881 5829 8636 3708 Face 11882 2553 2353 345 Face 11883 2553 10451 2353 Face 11884 716 2946 1744 Face 11885 716 1456 2946 Face 11886 7692 8606 8399 Face 11887 8994 5043 7855 Face 11888 4015 3294 634 Face 11889 8380 10000 2086 Face 11890 7113 6853 4404 Face 11891 7113 4240 6853 Face 11892 855 450 8285 Face 11893 3309 8165 4261 Face 11894 5401 3725 6964 Face 11895 5538 8034 9529 Face 11896 5538 3725 3370 Face 11897 2114 4665 10268 Face 11898 5765 8633 2251 Face 11899 8948 4230 6890 Face 11900 842 1451 7275 Face 11901 842 8968 1451 Face 11902 205 8853 1040 Face 11903 205 8425 8853 Face 11904 205 2357 8425 Face 11905 205 562 2357 Face 11906 3694 8696 3255 Face 11907 6228 6949 906 Face 11908 9223 6466 1805 Face 11909 3023 2358 6204 Face 11910 2428 4537 6569 Face 11911 8018 2359 5861 Face 11912 8018 8688 2359 Face 11913 2359 4464 5861 Face 11914 3071 1450 6652 Face 11915 2479 9971 2360 Face 11916 2048 5633 1278 Face 11917 2048 3652 5633 Face 11918 1249 9092 3620 Face 11919 6461 4329 8670 Face 11920 5961 9469 6697 Face 11921 8638 6268 10581 Face 11922 7286 2361 10882 Face 11923 1164 8595 4689 Face 11924 10376 6783 1037 Face 11925 2952 9186 8378 Face 11926 5309 5532 4306 Face 11927 7470 8308 7172 Face 11928 9140 2363 3558 Face 11929 9140 6223 2363 Face 11930 6271 3006 8612 Face 11931 6457 2365 2492 Face 11932 6457 367 2365 Face 11933 8418 8925 9848 Face 11934 7250 10571 7784 Face 11935 6782 6161 3721 Face 11936 6782 1004 6161 Face 11937 11043 4433 6521 Face 11938 2696 2367 4373 Face 11939 4807 5633 2367 Face 11940 190 3496 8757 Face 11941 8773 1473 3850 Face 11942 9113 2369 4540 Face 11943 10350 5531 1934 Face 11944 10350 2377 5531 Face 11945 579 8413 2370 Face 11946 579 2370 2371 Face 11947 4561 8441 2834 Face 11948 5739 10414 6207 Face 11949 7621 3887 7210 Face 11950 8278 9351 10835 Face 11951 3196 703 7768 Face 11952 8692 636 2374 Face 11953 7898 11043 6521 Face 11954 1351 9331 10865 Face 11955 6542 3533 5535 Face 11956 8861 10435 5047 Face 11957 48 9973 2517 Face 11958 48 5564 9973 Face 11959 9803 3089 9930 Face 11960 575 2376 2755 Face 11961 5783 8588 2376 Face 11962 576 7245 2377 Face 11963 5930 3975 7737 Face 11964 10263 6041 1105 Face 11965 10263 5208 6041 Face 11966 5183 4755 854 Face 11967 1886 11084 4497 Face 11968 10796 9281 9927 Face 11969 369 2288 3120 Face 11970 369 8117 2288 Face 11971 10540 8776 8734 Face 11972 5211 9767 10461 Face 11973 5211 1747 9767 Face 11974 10450 2383 6162 Face 11975 5661 6124 2383 Face 11976 4452 8997 8007 Face 11977 8218 10765 8985 Face 11978 4630 5039 4654 Face 11979 9100 9424 5495 Face 11980 7888 8905 260 Face 11981 6490 7289 10544 Face 11982 57 5023 4035 Face 11983 10996 6694 6404 Face 11984 7503 6577 6758 Face 11985 7503 7105 6577 Face 11986 3828 4217 6006 Face 11987 2500 4884 8387 Face 11988 2500 9759 4884 Face 11989 4977 3677 9886 Face 11990 4137 707 334 Face 11991 707 3104 5848 Face 11992 6040 2385 11095 Face 11993 6040 8774 2385 Face 11994 5750 2386 2525 Face 11995 5750 5446 2386 Face 11996 4115 763 5738 Face 11997 6722 1304 2170 Face 11998 6964 10777 1161 Face 11999 364 1696 4736 Face 12000 3667 7098 7219 Face 12001 9426 7612 2387 Face 12002 2387 864 4986 Face 12003 8122 6183 6937 Face 12004 9713 7471 8420 Face 12005 9713 7332 7471 Face 12006 7455 2388 1492 Face 12007 7455 8193 2388 Face 12008 1200 8353 8249 Face 12009 1200 9369 8353 Face 12010 7722 2117 436 Face 12011 7121 9496 3739 Face 12012 245 2392 6309 Face 12013 245 7265 2392 Face 12014 7100 8306 7361 Face 12015 6701 7522 7100 Face 12016 10987 10331 2393 Face 12017 4664 9937 5174 Face 12018 4664 9676 9937 Face 12019 4670 101 6270 Face 12020 177 5446 9790 Face 12021 3198 6701 5832 Face 12022 133 2394 8808 Face 12023 7481 6993 10336 Face 12024 10907 10035 1797 Face 12025 10907 269 10035 Face 12026 116 11012 5478 Face 12027 4155 3500 7531 Face 12028 10137 7734 2410 Face 12029 2605 5954 4295 Face 12030 5736 3928 1046 Face 12031 5736 9477 3928 Face 12032 8516 2397 3466 Face 12033 9359 2008 2399 Face 12034 10046 11066 8640 Face 12035 6664 2401 8381 Face 12036 7995 2402 5570 Face 12037 10280 5488 6870 Face 12038 4854 8060 6243 Face 12039 4854 1515 8060 Face 12040 7651 2403 9873 Face 12041 7651 3211 2403 Face 12042 4433 10962 6956 Face 12043 4433 5714 10962 Face 12044 3311 2404 8461 Face 12045 3311 6955 2404 Face 12046 9605 695 5142 Face 12047 8658 6119 9628 Face 12048 8658 10499 6119 Face 12049 8658 10684 10499 Face 12050 3528 5261 6753 Face 12051 2163 3510 3156 Face 12052 2163 6947 3510 Face 12053 1969 7538 10001 Face 12054 905 2538 7934 Face 12055 905 3789 2538 Face 12056 9666 4534 3691 Face 12057 42 8586 3233 Face 12058 4567 9067 1155 Face 12059 7008 4384 7869 Face 12060 5344 6986 10886 Face 12061 2164 6947 10756 Face 12062 8963 10812 2409 Face 12063 9209 3303 5950 Face 12064 9209 9846 3303 Face 12065 9867 2411 4773 Face 12066 8626 8668 2411 Face 12067 7587 3265 6705 Face 12068 6027 9082 9509 Face 12069 6660 5728 1970 Face 12070 4914 8664 2415 Face 12071 2799 9803 6692 Face 12072 2777 10222 621 Face 12073 2777 9891 10222 Face 12074 2416 11028 4206 Face 12075 4597 2416 776 Face 12076 4597 11028 2416 Face 12077 863 3901 307 Face 12078 863 6393 3901 Face 12079 8665 7695 836 Face 12080 27 5173 5486 Face 12081 8940 5516 8609 Face 12082 8940 3473 5516 Face 12083 2419 2418 9637 Face 12084 365 5943 2418 Face 12085 365 2418 2419 Face 12086 2050 2420 7138 Face 12087 9563 2071 9122 Face 12088 1222 6230 10718 Face 12089 1806 6666 8679 Face 12090 9741 2081 2991 Face 12091 4994 5289 2421 Face 12092 6395 217 5973 Face 12093 418 11040 9387 Face 12094 418 3132 11040 Face 12095 1667 9612 10486 Face 12096 7856 9232 597 Face 12097 7856 10736 9232 Face 12098 836 3639 4606 Face 12099 9488 10696 5201 Face 12100 1769 3065 6115 Face 12101 3647 1197 2379 Face 12102 773 2423 7782 Face 12103 773 8533 2423 Face 12104 246 8128 2424 Face 12105 4601 207 9674 Face 12106 3274 9737 5804 Face 12107 3786 4384 7950 Face 12108 3786 7879 4384 Face 12109 10786 9210 10267 Face 12110 10786 3049 9210 Face 12111 8359 7031 8445 Face 12112 8279 7876 3659 Face 12113 660 6155 9633 Face 12114 8244 8343 10024 Face 12115 6882 3846 2427 Face 12116 1622 3387 6059 Face 12117 8719 960 107 Face 12118 6861 10158 960 Face 12119 10191 3631 7144 Face 12120 2370 1077 2371 Face 12121 4419 7275 1451 Face 12122 4419 11050 7275 Face 12123 3494 3161 7300 Face 12124 10958 10134 10509 Face 12125 401 2430 7960 Face 12126 9190 6954 7480 Face 12127 9190 7953 6954 Face 12128 8713 1390 2432 Face 12129 6343 10479 2433 Face 12130 3085 448 1920 Face 12131 709 180 7270 Face 12132 6806 9296 5858 Face 12133 9619 9590 4358 Face 12134 3654 3977 2435 Face 12135 8700 7167 8103 Face 12136 4376 6989 11037 Face 12137 222 11018 10431 Face 12138 410 4983 4401 Face 12139 9688 6434 8848 Face 12140 9688 9518 6434 Face 12141 8884 19 5776 Face 12142 3052 7277 7710 Face 12143 628 4682 1298 Face 12144 2461 9925 2982 Face 12145 1670 5604 9925 Face 12146 294 880 266 Face 12147 294 4596 880 Face 12148 10613 3041 4588 Face 12149 4686 2178 9274 Face 12150 7511 2697 10532 Face 12151 10916 11048 2438 Face 12152 906 10933 1489 Face 12153 955 2440 7017 Face 12154 3 1381 4039 Face 12155 6183 593 6937 Face 12156 6183 1534 593 Face 12157 3313 1965 3736 Face 12158 5426 9411 2441 Face 12159 10433 4687 7982 Face 12160 1534 2104 7763 Face 12161 4455 5995 7675 Face 12162 4455 4476 5995 Face 12163 2680 1552 2921 Face 12164 5885 6426 7266 Face 12165 4713 2442 8803 Face 12166 373 10022 2056 Face 12167 5518 480 10947 Face 12168 2142 6296 2444 Face 12169 2528 7835 8072 Face 12170 9038 7951 6145 Face 12171 6320 364 2169 Face 12172 871 10204 3902 Face 12173 871 10467 10204 Face 12174 8739 9259 2449 Face 12175 232 2450 1820 Face 12176 2825 2451 6999 Face 12177 2825 5965 2451 Face 12178 6960 1928 1853 Face 12179 6644 8211 8663 Face 12180 9474 9363 3647 Face 12181 4037 476 158 Face 12182 7267 2653 8497 Face 12183 3 4039 1425 Face 12184 5545 8888 2452 Face 12185 7586 8176 4558 Face 12186 1303 2453 5231 Face 12187 1303 2728 2453 Face 12188 7071 2454 5442 Face 12189 6026 10686 2455 Face 12190 5391 5226 7143 Face 12191 6341 1306 7800 Face 12192 4441 10058 2101 Face 12193 5037 9007 7519 Face 12194 9988 5092 943 Face 12195 1403 9191 3816 Face 12196 1403 1204 9191 Face 12197 5891 7713 9233 Face 12198 10349 5929 2457 Face 12199 151 1016 7767 Face 12200 4765 5543 10843 Face 12201 4765 5586 5543 Face 12202 2719 3694 10424 Face 12203 2307 7254 7857 Face 12204 7622 8684 8433 Face 12205 7232 4595 7622 Face 12206 3449 3257 4243 Face 12207 6411 7431 2459 Face 12208 2678 1046 2677 Face 12209 3031 7532 839 Face 12210 874 7388 7532 Face 12211 1670 9925 2461 Face 12212 4608 4963 2462 Face 12213 8702 4682 628 Face 12214 607 9097 2055 Face 12215 6389 2464 8911 Face 12216 887 6496 6725 Face 12217 7067 5065 9614 Face 12218 7067 5137 5065 Face 12219 10385 3124 6052 Face 12220 10385 8374 2467 Face 12221 1892 11020 9643 Face 12222 624 6896 2468 Face 12223 827 3070 6300 Face 12224 827 6343 3070 Face 12225 1705 9290 4989 Face 12226 2669 8881 2607 Face 12227 3795 7577 8881 Face 12228 3128 1621 10280 Face 12229 8716 4155 4219 Face 12230 1512 2474 1730 Face 12231 10827 7805 10739 Face 12232 8048 2272 6070 Face 12233 10860 3823 93 Face 12234 339 8791 8640 Face 12235 2127 2475 10320 Face 12236 2127 496 2475 Face 12237 4203 2857 2476 Face 12238 3526 1064 5737 Face 12239 4434 10779 7675 Face 12240 56 8206 2477 Face 12241 5035 6107 9122 Face 12242 3680 10166 10680 Face 12243 3199 3211 7651 Face 12244 9020 653 10114 Face 12245 191 7170 2481 Face 12246 2483 1110 8117 Face 12247 8117 2888 2483 Face 12248 6251 8124 552 Face 12249 7535 2485 2119 Face 12250 6932 10086 2485 Face 12251 4393 7853 1247 Face 12252 7073 947 2487 Face 12253 441 5593 8797 Face 12254 8664 4914 4005 Face 12255 6169 2488 6108 Face 12256 6169 2966 2488 Face 12257 9743 5466 9855 Face 12258 911 9158 10065 Face 12259 5094 10353 1520 Face 12260 4612 6650 5629 Face 12261 4612 4118 6650 Face 12262 6650 2597 5629 Face 12263 10101 2489 6561 Face 12264 3140 3585 8350 Face 12265 9411 5513 7421 Face 12266 9182 10785 6928 Face 12267 9182 7901 10785 Face 12268 5996 3448 8965 Face 12269 1218 2065 8135 Face 12270 5137 4035 10944 Face 12271 10120 10569 7603 Face 12272 10120 10209 10569 Face 12273 6375 10105 10856 Face 12274 4661 4254 3860 Face 12275 4661 3820 4254 Face 12276 1327 8384 2493 Face 12277 490 6589 3795 Face 12278 2497 2495 9156 Face 12279 2497 2496 2495 Face 12280 2497 8092 3182 Face 12281 10662 2499 798 Face 12282 10662 2602 2499 Face 12283 111 10387 409 Face 12284 7240 4055 10149 Face 12285 182 6714 1116 Face 12286 9176 908 3980 Face 12287 9643 8555 2500 Face 12288 8387 1892 9643 Face 12289 75 5854 3266 Face 12290 6124 6859 5854 Face 12291 2354 6589 2501 Face 12292 2354 2501 4905 Face 12293 10612 4695 1735 Face 12294 10612 7090 4695 Face 12295 3877 10818 737 Face 12296 9843 6029 1494 Face 12297 10440 7304 5359 Face 12298 154 8592 7751 Face 12299 154 4328 8592 Face 12300 645 7373 651 Face 12301 645 6594 7373 Face 12302 3689 5492 2504 Face 12303 856 5720 5523 Face 12304 8476 2505 6946 Face 12305 8476 6768 2505 Face 12306 7564 7465 5982 Face 12307 8206 56 9245 Face 12308 9872 5142 695 Face 12309 8210 4790 1969 Face 12310 10920 6354 7468 Face 12311 4637 2506 1794 Face 12312 10627 1671 2506 Face 12313 8907 1346 5427 Face 12314 6253 2507 2037 Face 12315 6253 5294 2507 Face 12316 4174 10501 5743 Face 12317 4174 8722 10501 Face 12318 7462 10265 3886 Face 12319 5391 9046 10721 Face 12320 5391 115 9046 Face 12321 308 7754 9530 Face 12322 3369 2833 686 Face 12323 5106 4344 4822 Face 12324 9649 8582 9038 Face 12325 9649 2065 8582 Face 12326 6152 10817 10059 Face 12327 9949 2508 2094 Face 12328 9949 10885 2508 Face 12329 4112 692 10723 Face 12330 4112 1481 7844 Face 12331 10156 4717 1537 Face 12332 75 6124 5854 Face 12333 4345 6389 6835 Face 12334 4345 2509 10195 Face 12335 4345 6835 2509 Face 12336 2341 3559 9695 Face 12337 2341 8906 3559 Face 12338 8231 5024 3044 Face 12339 9382 7822 10040 Face 12340 9382 2143 7822 Face 12341 6544 2512 6628 Face 12342 10548 1490 2460 Face 12343 4630 2513 9946 Face 12344 4630 6464 2513 Face 12345 3481 10151 991 Face 12346 9031 4187 7557 Face 12347 103 5845 8542 Face 12348 4780 886 1427 Face 12349 4960 8162 8406 Face 12350 8743 1290 2515 Face 12351 2803 5769 6157 Face 12352 8969 3636 7731 Face 12353 6546 9176 9755 Face 12354 9366 7880 3798 Face 12355 9366 264 7880 Face 12356 11048 8453 2438 Face 12357 5598 2149 8453 Face 12358 11048 5598 8453 Face 12359 1147 1564 10810 Face 12360 1496 10756 2163 Face 12361 2622 6738 4867 Face 12362 6696 2517 10760 Face 12363 1292 1345 5779 Face 12364 690 8234 4860 Face 12365 6398 11055 2519 Face 12366 2878 3820 1560 Face 12367 3954 2521 1056 Face 12368 346 10792 10365 Face 12369 346 9504 10792 Face 12370 734 9729 3622 Face 12371 4544 10196 9975 Face 12372 4544 7482 10923 Face 12373 3435 7981 1913 Face 12374 9990 388 7981 Face 12375 6204 2522 5826 Face 12376 2857 7028 8312 Face 12377 10192 6280 239 Face 12378 5836 7629 3230 Face 12379 3778 8056 1128 Face 12380 3778 3389 8056 Face 12381 1280 6638 2160 Face 12382 4816 5265 7686 Face 12383 1655 6422 2124 Face 12384 5968 4290 8417 Face 12385 3366 3053 10746 Face 12386 952 6254 430 Face 12387 3315 9751 8650 Face 12388 7683 5922 10781 Face 12389 8909 7124 2524 Face 12390 6873 5816 6176 Face 12391 982 8652 8010 Face 12392 6117 5535 3533 Face 12393 2528 9021 2551 Face 12394 4458 2528 3409 Face 12395 4458 7835 2528 Face 12396 6006 4217 1241 Face 12397 336 8701 2053 Face 12398 2286 7457 6587 Face 12399 7874 4920 8516 Face 12400 7874 3691 4920 Face 12401 7680 2532 4087 Face 12402 7680 8620 2532 Face 12403 6419 7680 10866 Face 12404 4638 9732 7683 Face 12405 3078 5212 10200 Face 12406 1782 6195 9675 Face 12407 10340 5552 2534 Face 12408 103 9744 10583 Face 12409 103 8542 9744 Face 12410 3384 3337 1034 Face 12411 8506 1736 3384 Face 12412 3930 5870 9711 Face 12413 3807 4458 6605 Face 12414 7780 2469 2535 Face 12415 4882 689 8589 Face 12416 6257 9964 6644 Face 12417 6111 4976 9378 Face 12418 5842 4337 2536 Face 12419 1243 2537 5971 Face 12420 1243 9575 2537 Face 12421 179 5434 8208 Face 12422 1509 2541 5444 Face 12423 5262 1287 2541 Face 12424 175 2542 657 Face 12425 1509 5262 2541 Face 12426 1509 8899 5262 Face 12427 2546 9975 5635 Face 12428 328 2587 1944 Face 12429 6630 8288 5381 Face 12430 6566 2602 10662 Face 12431 6566 2703 2602 Face 12432 4172 2548 1407 Face 12433 8847 2553 2550 Face 12434 8847 8012 10094 Face 12435 412 2951 6530 Face 12436 10100 6111 2551 Face 12437 7243 8470 10030 Face 12438 7243 9164 8470 Face 12439 6487 5201 8392 Face 12440 6191 8804 1996 Face 12441 10824 1024 2555 Face 12442 584 4265 4291 Face 12443 9656 8293 7745 Face 12444 9656 9792 2557 Face 12445 5970 7125 8725 Face 12446 7477 8555 6105 Face 12447 1388 2500 8555 Face 12448 8627 9955 6160 Face 12449 8627 5826 9955 Face 12450 4440 9651 8005 Face 12451 4440 7610 9651 Face 12452 2571 1796 10012 Face 12453 6016 8748 10794 Face 12454 1167 6068 2222 Face 12455 172 9747 7353 Face 12456 8175 7157 9747 Face 12457 7549 5910 3185 Face 12458 12 7662 4984 Face 12459 1615 8929 7662 Face 12460 2522 9897 5826 Face 12461 10453 8937 6607 Face 12462 10453 6671 8937 Face 12463 3024 6182 8297 Face 12464 3099 2562 108 Face 12465 8733 2935 2563 Face 12466 5063 5348 4080 Face 12467 5707 3863 2565 Face 12468 3351 5628 7633 Face 12469 1670 2461 6586 Face 12470 10973 6444 2126 Face 12471 3035 8694 9599 Face 12472 5830 2882 8694 Face 12473 827 2568 5473 Face 12474 827 6300 2568 Face 12475 8953 4880 8314 Face 12476 8953 5700 4880 Face 12477 562 6687 9400 Face 12478 562 4613 6687 Face 12479 11014 7541 4439 Face 12480 7839 6520 5732 Face 12481 7839 1036 6520 Face 12482 7663 1843 2570 Face 12483 10648 5828 7057 Face 12484 5685 614 6816 Face 12485 2671 2187 2571 Face 12486 10999 5472 3005 Face 12487 10999 2873 5472 Face 12488 4506 3862 6003 Face 12489 7672 6248 2572 Face 12490 487 2573 1681 Face 12491 3766 10677 7579 Face 12492 10412 6529 2574 Face 12493 875 2575 10164 Face 12494 875 5775 2575 Face 12495 9961 3747 2576 Face 12496 10568 9602 10254 Face 12497 8396 5273 2156 Face 12498 3973 9931 6969 Face 12499 6711 9785 3081 Face 12500 10852 6332 8158 Face 12501 8000 2555 10898 Face 12502 1752 11003 4292 Face 12503 2579 1814 6440 Face 12504 6440 3767 2579 Face 12505 2021 10005 71 Face 12506 9226 5743 8009 Face 12507 3183 9456 5743 Face 12508 3171 594 2580 Face 12509 6552 9488 5201 Face 12510 8514 6735 8383 Face 12511 10322 10515 941 Face 12512 10322 10904 10515 Face 12513 9237 8678 10468 Face 12514 5268 1558 2581 Face 12515 1558 2582 2581 Face 12516 8223 8107 2583 Face 12517 885 9618 2685 Face 12518 885 7385 9618 Face 12519 5439 9895 5383 Face 12520 6660 361 10456 Face 12521 10182 4156 9125 Face 12522 10182 9522 4156 Face 12523 8315 1977 2586 Face 12524 7489 2588 9556 Face 12525 7489 3085 2588 Face 12526 5775 7439 10128 Face 12527 813 10321 356 Face 12528 4962 5490 10321 Face 12529 813 356 3953 Face 12530 9063 3917 5249 Face 12531 313 9063 5249 Face 12532 7734 10447 1648 Face 12533 7734 5402 3872 Face 12534 7734 1648 5402 Face 12535 5051 4374 8309 Face 12536 8199 5239 3471 Face 12537 10052 5612 5577 Face 12538 3891 8062 2590 Face 12539 2867 11112 6767 Face 12540 2867 6316 10249 Face 12541 2867 6767 6316 Face 12542 6209 9322 2590 Face 12543 6209 1267 9322 Face 12544 9803 7215 6692 Face 12545 3822 8558 7215 Face 12546 7195 831 2592 Face 12547 8983 4432 32 Face 12548 8983 6521 4432 Face 12549 9196 10660 2719 Face 12550 9196 6078 10660 Face 12551 1745 6388 2593 Face 12552 8134 10895 3563 Face 12553 8134 5485 10895 Face 12554 803 2594 3355 Face 12555 6143 2595 4956 Face 12556 6143 453 2595 Face 12557 1080 9945 7611 Face 12558 38 7381 6858 Face 12559 2792 386 2596 Face 12560 1538 1908 2598 Face 12561 8540 6736 11008 Face 12562 3810 134 4316 Face 12563 3810 1100 134 Face 12564 5773 1929 11083 Face 12565 10495 1419 3744 Face 12566 3725 5538 9397 Face 12567 5361 378 4402 Face 12568 5925 9517 5592 Face 12569 5925 4644 9517 Face 12570 5432 2607 9104 Face 12571 10207 2669 2607 Face 12572 422 3397 944 Face 12573 7384 5078 9883 Face 12574 6996 2797 2611 Face 12575 343 537 9905 Face 12576 2194 2612 8774 Face 12577 9811 6956 4986 Face 12578 9811 4432 6956 Face 12579 966 9572 98 Face 12580 966 3802 9572 Face 12581 10848 8002 3997 Face 12582 7330 6908 9086 Face 12583 10143 8889 6908 Face 12584 1428 9143 1879 Face 12585 963 5163 5293 Face 12586 465 8230 10638 Face 12587 465 7048 8230 Face 12588 2957 10435 8861 Face 12589 7019 2615 1399 Face 12590 7019 10992 2615 Face 12591 1878 10028 5639 Face 12592 962 8325 1484 Face 12593 1897 6634 5149 Face 12594 8386 1074 8811 Face 12595 8429 10072 5515 Face 12596 9815 2616 5786 Face 12597 9815 1048 2616 Face 12598 502 3851 6287 Face 12599 7981 388 2617 Face 12600 6858 7381 3894 Face 12601 1539 8504 3207 Face 12602 8375 491 2620 Face 12603 1526 819 2060 Face 12604 1894 1355 8449 Face 12605 6461 8670 10744 Face 12606 1342 8531 8227 Face 12607 1589 4512 5275 Face 12608 1589 9967 4512 Face 12609 5907 2621 5648 Face 12610 5907 10752 2621 Face 12611 10872 7630 2622 Face 12612 10872 452 7630 Face 12613 4291 4938 584 Face 12614 220 2587 4935 Face 12615 220 4830 2587 Face 12616 2624 5255 3471 Face 12617 8827 1338 1574 Face 12618 8827 2302 1338 Face 12619 10688 4539 4514 Face 12620 6476 9850 2626 Face 12621 4582 2312 3704 Face 12622 1298 2627 628 Face 12623 6260 7866 6449 Face 12624 299 9225 10524 Face 12625 299 2463 9225 Face 12626 3106 2629 5222 Face 12627 3106 1936 2629 Face 12628 5447 6164 4351 Face 12629 5447 92 6164 Face 12630 1264 5868 10580 Face 12631 9143 5284 5186 Face 12632 2168 375 2511 Face 12633 4370 10827 5453 Face 12634 8000 4370 3464 Face 12635 2632 9573 3535 Face 12636 1670 6586 2813 Face 12637 5069 357 8318 Face 12638 1570 2634 7077 Face 12639 6032 6031 1653 Face 12640 2761 8720 6973 Face 12641 5134 10556 3119 Face 12642 5134 6600 10556 Face 12643 823 5249 5941 Face 12644 1397 2637 6674 Face 12645 1397 6843 2637 Face 12646 3300 6284 819 Face 12647 3300 10699 6284 Face 12648 6512 4824 3615 Face 12649 4331 6837 6606 Face 12650 7792 10573 4317 Face 12651 8861 2641 4344 Face 12652 4761 5399 5735 Face 12653 10255 8523 8515 Face 12654 10585 10267 8857 Face 12655 9404 7841 3534 Face 12656 9404 9677 7841 Face 12657 72 8893 10251 Face 12658 5148 7175 9258 Face 12659 7090 5975 5422 Face 12660 4329 1833 4704 Face 12661 1091 7773 6422 Face 12662 1005 2262 4269 Face 12663 1005 7314 2262 Face 12664 7757 11087 3635 Face 12665 7757 816 11087 Face 12666 4979 6937 2644 Face 12667 1510 8477 2645 Face 12668 4623 1842 5890 Face 12669 29 2751 8809 Face 12670 5745 892 2646 Face 12671 3659 811 5780 Face 12672 6528 8445 7031 Face 12673 8517 10775 2741 Face 12674 7794 1412 9133 Face 12675 7436 9246 10972 Face 12676 1114 4928 7906 Face 12677 4241 271 10769 Face 12678 4241 3831 271 Face 12679 4661 3860 8901 Face 12680 9653 629 7369 Face 12681 3629 6625 8597 Face 12682 8358 5709 9893 Face 12683 592 2650 2020 Face 12684 592 8708 2650 Face 12685 8885 4194 4909 Face 12686 4926 11021 7044 Face 12687 4926 2334 11021 Face 12688 553 2651 733 Face 12689 553 4813 2651 Face 12690 7732 9246 1875 Face 12691 2113 1672 10067 Face 12692 1492 7520 5559 Face 12693 1492 4417 7520 Face 12694 8497 2653 5052 Face 12695 8477 3047 2567 Face 12696 1017 2623 9007 Face 12697 18 8995 9871 Face 12698 3547 1614 8995 Face 12699 1790 4090 8014 Face 12700 6282 2655 2246 Face 12701 7939 6842 9169 Face 12702 7939 6049 6842 Face 12703 4728 6212 7199 Face 12704 555 4210 6061 Face 12705 331 3411 5292 Face 12706 5624 6468 1491 Face 12707 2317 10460 10928 Face 12708 1307 5782 2348 Face 12709 1307 9149 5782 Face 12710 4160 2656 7928 Face 12711 4160 2236 2656 Face 12712 335 5568 2323 Face 12713 335 10227 5568 Face 12714 3295 8058 3298 Face 12715 3295 3298 2659 Face 12716 5877 5018 7720 Face 12717 1341 5896 2724 Face 12718 10940 2565 1281 Face 12719 2 2436 7989 Face 12720 8364 2660 3954 Face 12721 3 1425 10019 Face 12722 2747 10652 2661 Face 12723 700 551 3064 Face 12724 684 238 4836 Face 12725 6038 5791 3543 Face 12726 197 9478 10674 Face 12727 8509 2662 9505 Face 12728 8509 9991 2662 Face 12729 9475 10942 1817 Face 12730 579 4152 1433 Face 12731 9965 1379 9462 Face 12732 3664 5632 4221 Face 12733 3664 4575 5632 Face 12734 8580 2665 2156 Face 12735 2665 7351 6428 Face 12736 8580 4280 2665 Face 12737 3814 795 5024 Face 12738 9681 9661 3560 Face 12739 9681 2060 9661 Face 12740 6367 2668 1878 Face 12741 6367 6768 2668 Face 12742 3795 2669 838 Face 12743 3795 8881 2669 Face 12744 2640 323 985 Face 12745 484 6333 2408 Face 12746 8194 6673 2671 Face 12747 10279 9138 8655 Face 12748 1571 4793 4899 Face 12749 1571 1283 4793 Face 12750 665 7011 7693 Face 12751 665 244 5119 Face 12752 7146 6754 1608 Face 12753 7146 6349 6754 Face 12754 8618 9689 9636 Face 12755 6414 1493 8466 Face 12756 6414 8522 1493 Face 12757 556 8194 2672 Face 12758 7624 6473 2673 Face 12759 4350 2389 600 Face 12760 4350 1115 2389 Face 12761 3374 2674 6215 Face 12762 3374 6672 2674 Face 12763 603 2189 4359 Face 12764 603 3881 2189 Face 12765 4762 1170 1357 Face 12766 10997 5107 2676 Face 12767 2678 193 5839 Face 12768 3906 5554 6133 Face 12769 3716 1162 4872 Face 12770 793 3404 10752 Face 12771 135 5741 1540 Face 12772 135 8693 5741 Face 12773 135 10261 8693 Face 12774 135 6048 10261 Face 12775 5440 4710 8033 Face 12776 858 8259 9711 Face 12777 9248 3800 9217 Face 12778 9248 1465 3800 Face 12779 3320 4047 4333 Face 12780 7228 2643 2679 Face 12781 6369 8677 7195 Face 12782 327 2976 5052 Face 12783 9021 8072 1123 Face 12784 8412 8676 10886 Face 12785 4989 2681 5899 Face 12786 7155 4978 7395 Face 12787 3698 2682 7926 Face 12788 3698 5459 2682 Face 12789 2684 2683 4275 Face 12790 9874 6604 2683 Face 12791 9577 2684 7892 Face 12792 9874 2683 2684 Face 12793 6452 5655 5062 Face 12794 594 3171 8576 Face 12795 11 4778 2685 Face 12796 350 6053 10467 Face 12797 8966 3692 7294 Face 12798 128 10266 10081 Face 12799 128 2085 10266 Face 12800 800 2634 8267 Face 12801 3880 4495 6885 Face 12802 620 7594 7809 Face 12803 5756 4020 807 Face 12804 5756 3094 1672 Face 12805 5756 807 3094 Face 12806 10959 2689 806 Face 12807 10959 2445 2689 Face 12808 2986 685 8583 Face 12809 8667 2691 4369 Face 12810 8667 26 2691 Face 12811 8250 2144 7026 Face 12812 8250 2868 2144 Face 12813 8250 6378 2868 Face 12814 2805 8464 2692 Face 12815 68 6915 1156 Face 12816 6595 6919 10461 Face 12817 6595 2017 6919 Face 12818 902 8438 8437 Face 12819 902 10937 8438 Face 12820 9916 1341 3845 Face 12821 3552 7621 10872 Face 12822 8329 10624 7621 Face 12823 3208 2694 2449 Face 12824 9208 353 4753 Face 12825 9647 2209 429 Face 12826 8444 7447 8532 Face 12827 1762 2991 2695 Face 12828 4807 2696 6125 Face 12829 4807 2367 2696 Face 12830 1905 729 5308 Face 12831 1409 2697 4285 Face 12832 4560 8912 2697 Face 12833 6603 5441 5104 Face 12834 4321 8361 5441 Face 12835 5365 7383 9398 Face 12836 7314 11046 2698 Face 12837 6273 5165 1456 Face 12838 9681 1948 2700 Face 12839 8659 10593 10144 Face 12840 4913 3113 4936 Face 12841 713 9829 7725 Face 12842 794 2273 6378 Face 12843 7280 9574 2701 Face 12844 2704 2703 1860 Face 12845 10175 2705 4545 Face 12846 10175 4647 2705 Face 12847 7348 1988 10393 Face 12848 923 1832 3236 Face 12849 3090 1733 923 Face 12850 9717 781 6935 Face 12851 7172 106 7171 Face 12852 8660 7976 2812 Face 12853 3077 4852 10456 Face 12854 7923 488 8604 Face 12855 2707 6594 192 Face 12856 192 118 2707 Face 12857 698 6221 1573 Face 12858 6669 9423 9636 Face 12859 8165 1410 5927 Face 12860 6455 2618 8541 Face 12861 6455 7240 2618 Face 12862 1223 2804 9235 Face 12863 1223 2062 8146 Face 12864 10253 3680 10680 Face 12865 10932 4915 5323 Face 12866 5169 3801 7364 Face 12867 8489 3484 9712 Face 12868 8713 2711 1390 Face 12869 2866 2712 4752 Face 12870 2866 4268 2712 Face 12871 9594 7476 2713 Face 12872 5132 6740 2924 Face 12873 5154 2714 11077 Face 12874 919 7905 4999 Face 12875 7905 9511 4999 Face 12876 10189 7428 8878 Face 12877 10189 1614 7428 Face 12878 347 3712 4097 Face 12879 906 2716 8685 Face 12880 906 6949 2716 Face 12881 966 83 5873 Face 12882 11080 8260 9236 Face 12883 7301 2720 5217 Face 12884 7301 5076 2720 Face 12885 9754 1819 5848 Face 12886 5030 7441 10022 Face 12887 6009 2722 6301 Face 12888 6009 3861 2722 Face 12889 4120 4816 10352 Face 12890 4989 9290 2681 Face 12891 944 9825 2724 Face 12892 7214 6327 2725 Face 12893 8704 2726 6058 Face 12894 8704 888 2726 Face 12895 5996 4163 3932 Face 12896 5996 10559 4163 Face 12897 5400 2727 8229 Face 12898 9270 4484 2727 Face 12899 867 2728 4528 Face 12900 867 2453 2728 Face 12901 8947 6531 6780 Face 12902 945 2729 5802 Face 12903 945 8082 2729 Face 12904 424 3945 3950 Face 12905 8611 2730 3487 Face 12906 8611 8320 2730 Face 12907 4394 6975 3323 Face 12908 10049 6233 6975 Face 12909 199 2731 5346 Face 12910 199 8422 8400 Face 12911 2421 10767 6170 Face 12912 9982 5566 9440 Face 12913 3676 6235 8039 Face 12914 3844 9544 2733 Face 12915 4555 9907 7248 Face 12916 8531 1342 9460 Face 12917 4031 2321 7259 Face 12918 522 2295 2736 Face 12919 870 6869 6216 Face 12920 870 481 6869 Face 12921 8073 7735 8764 Face 12922 8073 3141 7735 Face 12923 4426 2058 275 Face 12924 7793 10246 8074 Face 12925 1175 9509 9082 Face 12926 5576 791 6396 Face 12927 355 4823 9195 Face 12928 355 1637 4823 Face 12929 10505 10243 1248 Face 12930 10505 1449 8378 Face 12931 1518 8701 5353 Face 12932 6830 5825 3210 Face 12933 6347 4887 572 Face 12934 6883 1709 480 Face 12935 9520 10190 612 Face 12936 9520 6203 10190 Face 12937 8517 2741 8763 Face 12938 10698 9253 1866 Face 12939 10698 1866 9694 Face 12940 2031 2742 2886 Face 12941 651 6099 1479 Face 12942 9788 10049 4394 Face 12943 9788 8283 10049 Face 12944 418 9387 3616 Face 12945 418 3702 7389 Face 12946 418 3616 3702 Face 12947 9180 4891 1812 Face 12948 6651 9603 8077 Face 12949 3760 7512 2744 Face 12950 6335 2745 3549 Face 12951 6335 6991 2745 Face 12952 6281 5942 2747 Face 12953 9665 5746 4673 Face 12954 9665 10875 5746 Face 12955 11022 6798 136 Face 12956 1615 2750 10737 Face 12957 7120 3809 9325 Face 12958 4165 1803 5096 Face 12959 5796 9360 10423 Face 12960 623 1800 8052 Face 12961 623 5787 11077 Face 12962 623 8052 5787 Face 12963 462 1443 1841 Face 12964 1950 6387 2752 Face 12965 6690 1685 11073 Face 12966 5398 9006 4589 Face 12967 7463 875 1782 Face 12968 578 1111 800 Face 12969 2994 6773 6914 Face 12970 495 2754 6497 Face 12971 495 10398 2754 Face 12972 4530 2755 7969 Face 12973 7043 31 4093 Face 12974 9138 7043 8224 Face 12975 9138 31 7043 Face 12976 7474 2757 9523 Face 12977 7474 7651 2757 Face 12978 250 8158 7474 Face 12979 237 2758 4211 Face 12980 9770 2759 6753 Face 12981 9770 5883 2759 Face 12982 7872 10868 7987 Face 12983 7872 10533 21 Face 12984 6973 6124 2761 Face 12985 9677 8501 903 Face 12986 8287 1750 9377 Face 12987 6724 3108 9108 Face 12988 6724 1937 3108 Face 12989 2763 8061 9788 Face 12990 6201 6338 1297 Face 12991 9405 2768 6411 Face 12992 9405 3577 2768 Face 12993 1522 5978 8026 Face 12994 9216 10580 5868 Face 12995 8089 10401 8761 Face 12996 2799 10234 8129 Face 12997 3715 6699 5942 Face 12998 2079 7301 5288 Face 12999 6639 2771 3288 Face 13000 6639 7055 2771 Face 13001 9749 655 2772 Face 13002 9689 9502 1514 Face 13003 10795 6811 6698 Face 13004 10795 3875 6811 Face 13005 9795 7783 6190 Face 13006 1429 2773 374 Face 13007 1429 5828 2773 Face 13008 5104 9388 6603 Face 13009 3368 4420 1517 Face 13010 3505 2775 8360 Face 13011 3505 1635 2775 Face 13012 616 3630 2776 Face 13013 5540 2778 7761 Face 13014 5118 996 10490 Face 13015 6695 153 2780 Face 13016 291 9586 7485 Face 13017 291 7290 9586 Face 13018 2972 9848 8925 Face 13019 2972 7182 9848 Face 13020 1408 2313 8434 Face 13021 9331 1351 5622 Face 13022 5622 1351 8340 Face 13023 2806 4047 3316 Face 13024 5167 7422 2235 Face 13025 5167 9196 7302 Face 13026 3772 2781 1004 Face 13027 3772 6522 2781 Face 13028 8101 2782 7945 Face 13029 8101 4341 2782 Face 13030 2106 3971 4968 Face 13031 2079 10582 7301 Face 13032 4741 3911 5380 Face 13033 10417 9872 2122 Face 13034 3968 7971 3834 Face 13035 9048 5348 5063 Face 13036 5197 3307 8485 Face 13037 162 6432 3832 Face 13038 6590 4852 10707 Face 13039 8396 5123 5840 Face 13040 8396 10617 5123 Face 13041 9999 2785 2207 Face 13042 657 2542 5835 Face 13043 7583 9547 2786 Face 13044 4228 6726 6530 Face 13045 1337 2788 9782 Face 13046 1337 6743 2788 Face 13047 6538 4211 9561 Face 13048 8657 2789 5898 Face 13049 8657 7888 2789 Face 13050 8031 7656 7583 Face 13051 8004 5763 1504 Face 13052 5172 8374 2278 Face 13053 5172 10703 8374 Face 13054 1347 7364 3801 Face 13055 1524 5686 7364 Face 13056 3441 6191 5759 Face 13057 405 2794 5282 Face 13058 405 5236 2794 Face 13059 4323 9930 2799 Face 13060 4023 1972 8118 Face 13061 8620 9453 2532 Face 13062 9669 3898 6786 Face 13063 7082 9461 2805 Face 13064 8747 9915 1552 Face 13065 8747 3758 9915 Face 13066 4109 4089 9442 Face 13067 5852 2027 4089 Face 13068 7787 4900 10565 Face 13069 1215 10353 10453 Face 13070 4387 309 10306 Face 13071 4339 2807 8379 Face 13072 4339 4268 2807 Face 13073 4469 8289 4910 Face 13074 4910 3988 4469 Face 13075 6923 7782 2423 Face 13076 8624 736 8099 Face 13077 5129 2809 577 Face 13078 8680 2811 5824 Face 13079 10464 2812 1845 Face 13080 45 6940 3584 Face 13081 45 2264 6940 Face 13082 1118 917 8868 Face 13083 1118 4835 917 Face 13084 700 9043 10576 Face 13085 9329 10773 7266 Face 13086 9416 456 2813 Face 13087 793 2814 10631 Face 13088 4354 2303 2814 Face 13089 793 4354 2814 Face 13090 793 10752 4354 Face 13091 6475 4413 9367 Face 13092 8945 2596 6954 Face 13093 7714 4186 2816 Face 13094 10148 7714 2816 Face 13095 10148 3894 7714 Face 13096 954 9725 11051 Face 13097 9950 5763 8004 Face 13098 4803 8346 9660 Face 13099 5966 10493 3636 Face 13100 2003 3462 4717 Face 13101 6628 2817 4285 Face 13102 6628 8775 2817 Face 13103 2819 3457 8086 Face 13104 7057 1998 9648 Face 13105 4376 9714 6989 Face 13106 4376 8196 9714 Face 13107 7753 2946 7287 Face 13108 4687 6352 7982 Face 13109 4687 1236 6352 Face 13110 9303 8537 9630 Face 13111 2851 5382 451 Face 13112 2949 6269 7915 Face 13113 9259 2821 9883 Face 13114 9259 1012 2821 Face 13115 11053 63 6245 Face 13116 7912 7998 2562 Face 13117 2824 6199 9896 Face 13118 7577 3795 5804 Face 13119 10248 8881 7577 Face 13120 7352 3516 10905 Face 13121 7699 1758 5642 Face 13122 5342 2826 5833 Face 13123 1656 6916 9238 Face 13124 29 8770 2751 Face 13125 194 3224 2828 Face 13126 827 7 7346 Face 13127 671 9553 10180 Face 13128 2355 2832 1637 Face 13129 9076 10729 1286 Face 13130 4358 3164 9431 Face 13131 2243 7930 9052 Face 13132 8542 2243 9052 Face 13133 5054 10930 2155 Face 13134 5719 8551 9807 Face 13135 5719 3028 8551 Face 13136 519 4045 10711 Face 13137 3005 3269 1446 Face 13138 2916 10697 7052 Face 13139 2916 11017 10697 Face 13140 5307 6426 60 Face 13141 5517 2452 7161 Face 13142 5257 5161 387 Face 13143 869 9346 7415 Face 13144 6686 548 4960 Face 13145 7847 7865 385 Face 13146 598 6747 9671 Face 13147 598 6167 6747 Face 13148 3803 7217 9620 Face 13149 3921 7486 8144 Face 13150 2284 9860 7588 Face 13151 5492 7911 5368 Face 13152 10265 3388 5986 Face 13153 9116 2840 973 Face 13154 1157 5467 2844 Face 13155 8268 3556 999 Face 13156 9053 5326 3556 Face 13157 9053 8268 2249 Face 13158 9053 3556 8268 Face 13159 3286 2016 4755 Face 13160 8917 3476 6618 Face 13161 7553 9371 8585 Face 13162 9843 3433 6029 Face 13163 9843 270 3433 Face 13164 385 8549 9943 Face 13165 6393 9751 7036 Face 13166 4623 5890 9173 Face 13167 7571 3346 4942 Face 13168 7571 4942 2847 Face 13169 1157 8299 6818 Face 13170 1157 1310 8299 Face 13171 2912 1280 2848 Face 13172 10930 5054 2849 Face 13173 668 3930 1748 Face 13174 7111 799 1804 Face 13175 7654 7290 291 Face 13176 7654 291 2969 Face 13177 10018 7266 2280 Face 13178 5382 4705 5277 Face 13179 5382 2851 4705 Face 13180 4983 5378 9672 Face 13181 4915 10932 9264 Face 13182 2988 7013 2852 Face 13183 10039 10133 2853 Face 13184 1212 2822 5941 Face 13185 4001 9924 2855 Face 13186 4001 2856 7844 Face 13187 4387 10306 9629 Face 13188 1522 10594 10447 Face 13189 10082 3129 4610 Face 13190 6186 715 3129 Face 13191 6186 3129 10082 Face 13192 9552 9850 3753 Face 13193 9552 5902 9850 Face 13194 10700 9065 9362 Face 13195 10700 10853 9065 Face 13196 6189 9755 2858 Face 13197 6184 7214 3576 Face 13198 6184 837 7214 Face 13199 6570 6239 2859 Face 13200 6868 423 3009 Face 13201 5007 156 2860 Face 13202 617 7247 6924 Face 13203 5232 10294 926 Face 13204 5232 862 10294 Face 13205 2670 2862 5683 Face 13206 8669 2863 10661 Face 13207 9696 266 6443 Face 13208 2599 5352 5650 Face 13209 5049 5385 4206 Face 13210 5310 2866 10953 Face 13211 5310 4268 2866 Face 13212 3824 10908 10007 Face 13213 5010 8763 2867 Face 13214 9685 5075 7412 Face 13215 9772 8776 9752 Face 13216 3040 4994 8776 Face 13217 8701 1518 5587 Face 13218 1302 593 6437 Face 13219 9205 2141 3808 Face 13220 218 2695 764 Face 13221 4114 2906 2609 Face 13222 8181 9735 6839 Face 13223 5955 4256 6489 Face 13224 9617 8462 7273 Face 13225 2796 4250 10217 Face 13226 10846 5888 1053 Face 13227 1507 3378 6805 Face 13228 1507 4817 3378 Face 13229 10866 7680 9025 Face 13230 4249 6066 4411 Face 13231 4395 2512 6544 Face 13232 7773 2870 759 Face 13233 9871 8995 3916 Face 13234 1820 9340 2871 Face 13235 777 2872 2850 Face 13236 777 10002 2872 Face 13237 4537 6875 6640 Face 13238 9530 4834 308 Face 13239 9530 6378 4834 Face 13240 10248 6151 2607 Face 13241 7242 2874 1108 Face 13242 8378 10243 10505 Face 13243 7980 5266 4314 Face 13244 7980 715 5266 Face 13245 10131 2875 210 Face 13246 10131 10758 2875 Face 13247 7614 2876 3892 Face 13248 7614 4505 2876 Face 13249 9987 7889 5314 Face 13250 9987 4325 7889 Face 13251 6074 2877 2913 Face 13252 6074 8814 2877 Face 13253 10521 2617 7229 Face 13254 10874 5578 6307 Face 13255 10874 5009 5578 Face 13256 3435 7740 7252 Face 13257 1601 766 2879 Face 13258 10119 327 10239 Face 13259 2558 417 4297 Face 13260 10901 4797 5386 Face 13261 3814 5024 9817 Face 13262 395 2881 4704 Face 13263 1120 9520 612 Face 13264 10938 9369 10802 Face 13265 10938 4436 9369 Face 13266 8818 3521 1089 Face 13267 8818 3057 3521 Face 13268 1140 5370 6173 Face 13269 1140 6053 5370 Face 13270 8795 1548 188 Face 13271 854 6672 10539 Face 13272 3646 5550 6988 Face 13273 2886 2687 6796 Face 13274 6643 9150 1472 Face 13275 6643 6558 9150 Face 13276 2889 2888 3120 Face 13277 6453 9441 4029 Face 13278 431 1405 10865 Face 13279 10424 5227 7302 Face 13280 10424 7354 5227 Face 13281 7632 2890 9061 Face 13282 7539 2321 9525 Face 13283 6689 3857 2290 Face 13284 800 4578 7741 Face 13285 800 8375 4578 Face 13286 8006 9187 2315 Face 13287 9975 2893 3485 Face 13288 1069 4998 9514 Face 13289 4441 2101 7170 Face 13290 3252 4728 7199 Face 13291 10056 497 2897 Face 13292 9023 5126 3428 Face 13293 9035 799 2372 Face 13294 10802 9280 10938 Face 13295 7322 4666 2898 Face 13296 5946 2899 10913 Face 13297 1281 2565 2899 Face 13298 6002 924 6548 Face 13299 226 9125 3069 Face 13300 226 2490 9125 Face 13301 834 2901 5196 Face 13302 834 8347 2901 Face 13303 7946 1300 7362 Face 13304 8715 2902 8428 Face 13305 8715 5499 2902 Face 13306 3849 5122 2903 Face 13307 4116 2904 5041 Face 13308 4116 5419 2904 Face 13309 246 2424 2905 Face 13310 10298 3027 10346 Face 13311 10298 8490 3027 Face 13312 3656 3476 8917 Face 13313 3656 3612 3476 Face 13314 3648 8745 3363 Face 13315 1769 2907 3065 Face 13316 1769 5019 2907 Face 13317 6820 8381 2401 Face 13318 8447 2909 2270 Face 13319 8447 2520 2909 Face 13320 8437 1083 176 Face 13321 3671 2912 2848 Face 13322 3671 1280 2912 Face 13323 5219 10530 9495 Face 13324 5036 9076 10838 Face 13325 3399 5779 1345 Face 13326 7312 1292 5779 Face 13327 7479 10916 2434 Face 13328 6771 10142 9094 Face 13329 7665 1067 2522 Face 13330 7665 6819 1067 Face 13331 403 7004 8699 Face 13332 3624 9286 4439 Face 13333 1191 4411 9450 Face 13334 9391 925 10548 Face 13335 9391 8492 925 Face 13336 8374 5809 2278 Face 13337 8374 6052 5809 Face 13338 9462 2260 9965 Face 13339 1427 2618 4780 Face 13340 2634 1570 6441 Face 13341 11102 6500 4946 Face 13342 10583 10257 5845 Face 13343 4678 4488 8323 Face 13344 4678 10910 4488 Face 13345 1210 5318 9995 Face 13346 8018 8758 2169 Face 13347 10315 327 10119 Face 13348 5346 1222 9605 Face 13349 1085 2920 4862 Face 13350 1085 486 2920 Face 13351 8122 6937 2921 Face 13352 170 7366 10372 Face 13353 3866 9808 5985 Face 13354 3866 9032 9808 Face 13355 2479 2922 3431 Face 13356 4476 2104 7799 Face 13357 4476 7763 2104 Face 13358 10540 4493 9596 Face 13359 10907 2924 10836 Face 13360 7256 4627 3872 Face 13361 5298 2926 7007 Face 13362 5298 10234 2926 Face 13363 3659 4669 811 Face 13364 10161 1145 7545 Face 13365 3623 10162 7667 Face 13366 3623 8435 10162 Face 13367 3228 11099 9772 Face 13368 7313 540 2928 Face 13369 1603 8722 2929 Face 13370 4734 914 1748 Face 13371 10666 2930 11090 Face 13372 832 2931 5101 Face 13373 1174 4492 4129 Face 13374 6322 4598 2932 Face 13375 10062 2933 878 Face 13376 10526 9049 4181 Face 13377 10526 8756 9049 Face 13378 2202 2934 5872 Face 13379 6787 5808 10989 Face 13380 10588 1866 1765 Face 13381 10588 1378 1866 Face 13382 11079 948 5054 Face 13383 5698 4333 9380 Face 13384 8798 2937 6456 Face 13385 4490 8849 2937 Face 13386 8001 5866 3332 Face 13387 2938 11098 5866 Face 13388 8772 11098 2938 Face 13389 934 7878 6066 Face 13390 2939 2379 101 Face 13391 101 167 2939 Face 13392 2186 7785 9828 Face 13393 2186 3905 7785 Face 13394 1759 10055 1354 Face 13395 1759 9908 10055 Face 13396 503 5255 2940 Face 13397 1953 9519 8590 Face 13398 5907 2941 9940 Face 13399 5907 5648 2941 Face 13400 3462 9455 3254 Face 13401 3462 2003 9455 Face 13402 6401 7094 6334 Face 13403 6401 5663 7094 Face 13404 2879 5425 10664 Face 13405 2188 4461 1705 Face 13406 2188 8169 5127 Face 13407 5528 7114 2942 Face 13408 7547 2943 655 Face 13409 7547 2527 2943 Face 13410 9308 3458 3062 Face 13411 5753 2944 4088 Face 13412 852 7626 1810 Face 13413 852 10016 7626 Face 13414 5153 2945 1032 Face 13415 5153 7709 2945 Face 13416 94 7691 588 Face 13417 94 10003 7691 Face 13418 221 8334 10306 Face 13419 10445 8646 1868 Face 13420 3367 7894 9879 Face 13421 2947 6816 9140 Face 13422 4140 1993 2376 Face 13423 1993 7494 6946 Face 13424 421 2171 10200 Face 13425 845 2948 6747 Face 13426 845 4710 2948 Face 13427 9309 2949 1883 Face 13428 9309 6269 2949 Face 13429 10733 10242 2950 Face 13430 1800 11077 2714 Face 13431 2951 2335 8610 Face 13432 10401 8089 9541 Face 13433 2952 9204 9186 Face 13434 6345 8820 9204 Face 13435 10521 664 6614 Face 13436 3425 10325 2956 Face 13437 359 3604 8482 Face 13438 9331 4571 1215 Face 13439 9331 6631 4571 Face 13440 4347 3126 2957 Face 13441 8505 8811 5395 Face 13442 6429 7897 1957 Face 13443 10783 8625 712 Face 13444 2179 4566 8625 Face 13445 7755 7704 10586 Face 13446 3430 466 5681 Face 13447 1630 10592 7726 Face 13448 786 10523 3794 Face 13449 5397 3744 1829 Face 13450 9867 9637 4784 Face 13451 6984 1626 10443 Face 13452 2267 4173 8369 Face 13453 6679 1047 4442 Face 13454 3796 2959 5391 Face 13455 118 2960 5871 Face 13456 118 2969 2960 Face 13457 552 8124 6461 Face 13458 3371 10473 2961 Face 13459 4722 5364 7349 Face 13460 2544 5952 4762 Face 13461 646 5873 3200 Face 13462 7493 4618 1350 Face 13463 1815 7794 4618 Face 13464 6435 5699 2963 Face 13465 413 10997 131 Face 13466 3245 4070 7764 Face 13467 3711 6163 2965 Face 13468 8316 2966 6169 Face 13469 8316 6128 2966 Face 13470 1601 10664 6688 Face 13471 20 5166 1926 Face 13472 9709 7209 5166 Face 13473 8579 5454 2168 Face 13474 630 6859 2968 Face 13475 1276 9499 6834 Face 13476 438 7620 9019 Face 13477 438 6218 7620 Face 13478 6312 2970 4941 Face 13479 6312 4402 2970 Face 13480 735 5423 6272 Face 13481 10553 5587 1518 Face 13482 6191 5607 8804 Face 13483 6191 3441 5607 Face 13484 7182 2972 644 Face 13485 3541 8463 10015 Face 13486 5723 4670 6270 Face 13487 3741 7881 1876 Face 13488 7334 9944 9934 Face 13489 4031 5435 1424 Face 13490 43 6535 4564 Face 13491 3447 197 6038 Face 13492 7732 1875 7834 Face 13493 10285 10704 10825 Face 13494 7459 2977 6072 Face 13495 7459 900 2977 Face 13496 8877 664 8880 Face 13497 8877 9657 664 Face 13498 3439 4753 2018 Face 13499 2979 4342 6756 Face 13500 7810 789 4342 Face 13501 7810 4342 2979 Face 13502 2980 7682 9011 Face 13503 10755 513 3101 Face 13504 2042 4860 8234 Face 13505 6884 2982 3302 Face 13506 7118 6109 3784 Face 13507 7118 9228 6109 Face 13508 9176 2984 9755 Face 13509 9176 10332 2984 Face 13510 1482 11084 7116 Face 13511 3950 6981 6295 Face 13512 3950 10819 6981 Face 13513 1826 9092 10824 Face 13514 9836 6200 4551 Face 13515 9836 5336 6200 Face 13516 3470 4070 3245 Face 13517 3470 6070 4070 Face 13518 7887 8717 9676 Face 13519 9729 7887 6180 Face 13520 734 8717 7887 Face 13521 10529 1475 9472 Face 13522 9502 684 1514 Face 13523 9254 2987 10431 Face 13524 9254 545 2987 Face 13525 753 8543 2056 Face 13526 753 3757 8543 Face 13527 638 3768 6920 Face 13528 6260 6324 10470 Face 13529 6260 10986 6324 Face 13530 9952 2078 5808 Face 13531 9952 840 2078 Face 13532 2599 1110 2990 Face 13533 120 8887 2992 Face 13534 7367 2993 2088 Face 13535 7367 424 2993 Face 13536 7140 3116 8862 Face 13537 1684 7225 1683 Face 13538 2849 2281 10930 Face 13539 2849 1565 2281 Face 13540 146 510 3944 Face 13541 349 8145 2995 Face 13542 7271 8772 6797 Face 13543 7271 6451 8772 Face 13544 2997 3748 2996 Face 13545 165 929 678 Face 13546 5415 5926 2998 Face 13547 7583 2786 10109 Face 13548 8164 2450 825 Face 13549 8164 320 2450 Face 13550 166 7240 6455 Face 13551 8493 8078 1325 Face 13552 5289 7652 9746 Face 13553 4495 7425 10893 Face 13554 7904 7533 3000 Face 13555 8850 10702 1623 Face 13556 5773 11083 3001 Face 13557 4416 10411 2564 Face 13558 4416 3770 10411 Face 13559 6623 2853 10381 Face 13560 397 3003 5740 Face 13561 397 1014 3003 Face 13562 666 2431 77 Face 13563 191 1628 5860 Face 13564 5795 6288 10508 Face 13565 4322 3004 2449 Face 13566 4322 308 3004 Face 13567 6366 5074 9483 Face 13568 8871 3219 7038 Face 13569 7390 4269 6050 Face 13570 7390 1005 4269 Face 13571 907 4611 5913 Face 13572 6154 8967 9183 Face 13573 5272 3008 5324 Face 13574 5272 3007 3008 Face 13575 417 8067 11105 Face 13576 2614 660 2649 Face 13577 2614 7317 660 Face 13578 1130 9796 9135 Face 13579 961 10647 8722 Face 13580 1275 1014 397 Face 13581 9580 7720 3670 Face 13582 10782 4250 8843 Face 13583 10782 9195 4250 Face 13584 8993 10619 746 Face 13585 8993 9656 10619 Face 13586 4928 1114 6535 Face 13587 7382 3014 3364 Face 13588 5777 3524 10293 Face 13589 9588 5959 4565 Face 13590 7300 4158 3285 Face 13591 7278 7083 9105 Face 13592 7767 3016 6095 Face 13593 1218 6375 2065 Face 13594 3017 9417 457 Face 13595 2544 5667 9417 Face 13596 2544 9417 3017 Face 13597 10911 5606 9425 Face 13598 10911 564 5606 Face 13599 10634 7719 1439 Face 13600 10884 3018 2099 Face 13601 8210 2498 4790 Face 13602 9542 1285 4096 Face 13603 286 8401 8523 Face 13604 1137 1399 8401 Face 13605 8344 1780 1134 Face 13606 9285 5087 9320 Face 13607 474 3021 4883 Face 13608 356 6739 3021 Face 13609 3594 9852 6764 Face 13610 1132 1057 7661 Face 13611 2839 3022 775 Face 13612 2839 64 3022 Face 13613 10070 3455 8934 Face 13614 3158 6372 10743 Face 13615 4022 7282 6048 Face 13616 10900 2878 10340 Face 13617 7924 3026 7752 Face 13618 1354 4791 3966 Face 13619 7944 3027 3039 Face 13620 7944 10346 3027 Face 13621 6670 3728 7219 Face 13622 9182 3453 7901 Face 13623 3029 8705 11056 Face 13624 4842 11063 3832 Face 13625 881 4576 10712 Face 13626 881 10290 4576 Face 13627 2256 1621 3128 Face 13628 874 7532 3031 Face 13629 3032 8150 4788 Face 13630 3032 8508 8150 Face 13631 10224 8364 10788 Face 13632 10224 1335 8364 Face 13633 6212 10737 8822 Face 13634 6212 8929 10737 Face 13635 2325 3034 4542 Face 13636 2325 2162 3034 Face 13637 142 3035 5830 Face 13638 142 8694 3035 Face 13639 10351 3036 870 Face 13640 7890 3232 3036 Face 13641 9126 2013 6305 Face 13642 7309 3037 11038 Face 13643 10448 3038 1384 Face 13644 10448 2251 3038 Face 13645 2310 7944 3039 Face 13646 9772 3040 8776 Face 13647 9772 6518 3040 Face 13648 8432 9102 5790 Face 13649 5325 1382 8389 Face 13650 2217 3016 6942 Face 13651 5611 7719 10241 Face 13652 7622 5611 8684 Face 13653 551 9 299 Face 13654 2822 7723 4403 Face 13655 2713 4343 1861 Face 13656 7192 9112 3367 Face 13657 4083 4402 378 Face 13658 8195 3043 7002 Face 13659 169 1402 4725 Face 13660 10562 5851 3156 Face 13661 2484 8974 7086 Face 13662 4139 6440 3044 Face 13663 393 10821 5058 Face 13664 2208 689 4882 Face 13665 2208 8055 689 Face 13666 2572 2211 8840 Face 13667 4992 3045 4933 Face 13668 4992 10971 3045 Face 13669 953 348 10854 Face 13670 6476 1738 7491 Face 13671 3042 5119 6610 Face 13672 810 9738 2313 Face 13673 8469 956 3824 Face 13674 3428 1886 4497 Face 13675 328 1944 4935 Face 13676 7812 7345 38 Face 13677 9477 5736 652 Face 13678 6686 4546 548 Face 13679 6686 9352 4546 Face 13680 1694 7325 5857 Face 13681 1694 9435 7325 Face 13682 6760 10007 10908 Face 13683 6760 264 10007 Face 13684 9982 9040 7944 Face 13685 7046 56 5102 Face 13686 5686 7399 3051 Face 13687 4972 10434 1664 Face 13688 4972 5013 10434 Face 13689 10970 9436 8545 Face 13690 236 4586 9969 Face 13691 5450 5940 9036 Face 13692 5450 4142 5940 Face 13693 9286 7457 432 Face 13694 9889 5311 3053 Face 13695 3053 6878 9889 Face 13696 6214 8885 4909 Face 13697 377 6837 2631 Face 13698 377 6606 6837 Face 13699 4726 6425 13 Face 13700 2233 1438 3054 Face 13701 2106 4968 5406 Face 13702 754 8198 8351 Face 13703 6245 63 8389 Face 13704 3057 3056 6140 Face 13705 711 7458 4973 Face 13706 2671 2571 10012 Face 13707 9575 6211 3059 Face 13708 3061 3060 500 Face 13709 3061 3993 3060 Face 13710 6350 7010 1171 Face 13711 949 2235 181 Face 13712 2836 2935 1341 Face 13713 794 3062 2273 Face 13714 794 4894 3062 Face 13715 242 3063 1660 Face 13716 242 3655 3063 Face 13717 1445 1475 10529 Face 13718 6133 1821 8043 Face 13719 6623 5905 2853 Face 13720 927 8635 1079 Face 13721 8292 726 1227 Face 13722 8292 8885 726 Face 13723 10626 2525 2430 Face 13724 10626 4222 2525 Face 13725 5933 5752 7919 Face 13726 9061 5878 8630 Face 13727 2890 8012 5878 Face 13728 12 1615 7662 Face 13729 10601 5378 4983 Face 13730 10601 4807 5378 Face 13731 991 3068 3481 Face 13732 8258 3069 1725 Face 13733 8258 226 3069 Face 13734 6343 4882 3070 Face 13735 3074 3073 9279 Face 13736 3074 10771 3073 Face 13737 4985 9437 575 Face 13738 9597 1058 2897 Face 13739 3075 6023 10350 Face 13740 185 9413 3076 Face 13741 1072 3077 7465 Face 13742 468 3785 10884 Face 13743 468 6100 3785 Face 13744 6452 10127 10378 Face 13745 6452 10378 9853 Face 13746 6693 5609 4789 Face 13747 6262 4516 7042 Face 13748 9219 3278 3942 Face 13749 3942 9540 9539 Face 13750 5661 2383 10450 Face 13751 11062 4477 3080 Face 13752 3431 3292 2479 Face 13753 3082 6900 8796 Face 13754 7582 3147 3327 Face 13755 7515 10006 1773 Face 13756 7366 1497 7798 Face 13757 7366 170 1497 Face 13758 7526 4849 3084 Face 13759 5248 756 10443 Face 13760 5385 7600 4206 Face 13761 10278 3085 1920 Face 13762 10278 2588 3085 Face 13763 300 9629 3086 Face 13764 908 473 339 Face 13765 4058 3087 4783 Face 13766 2049 8388 4675 Face 13767 6599 2473 3088 Face 13768 1251 6373 7429 Face 13769 5392 6736 10507 Face 13770 8325 10237 6661 Face 13771 8325 10944 10237 Face 13772 923 3017 3090 Face 13773 2746 5646 9034 Face 13774 983 10390 3681 Face 13775 983 11058 3282 Face 13776 9231 5469 6357 Face 13777 2418 3093 4784 Face 13778 2418 7341 3093 Face 13779 3179 281 5320 Face 13780 5809 9821 2278 Face 13781 127 6719 1891 Face 13782 8385 4248 8823 Face 13783 2138 5897 2216 Face 13784 5172 6489 10703 Face 13785 8236 9380 2806 Face 13786 2185 5070 1037 Face 13787 2185 6408 5070 Face 13788 650 8247 6084 Face 13789 5067 7409 6274 Face 13790 918 11047 10784 Face 13791 10754 9138 1337 Face 13792 1770 8635 5877 Face 13793 9580 1770 5877 Face 13794 5737 8778 7037 Face 13795 3099 3098 2562 Face 13796 3099 271 3098 Face 13797 3139 3100 2473 Face 13798 3139 771 3100 Face 13799 3101 700 7563 Face 13800 10401 9178 7374 Face 13801 10401 9541 9178 Face 13802 5598 4315 858 Face 13803 5204 5598 858 Face 13804 7988 6096 3103 Face 13805 10233 8495 5881 Face 13806 10233 3116 8495 Face 13807 2452 6447 7161 Face 13808 10086 608 2771 Face 13809 10086 1002 11071 Face 13810 422 944 2724 Face 13811 122 10318 4093 Face 13812 122 8109 10318 Face 13813 2391 4733 6841 Face 13814 4227 1936 3106 Face 13815 601 6198 5115 Face 13816 4082 7461 4589 Face 13817 3935 8799 9762 Face 13818 8949 6101 3509 Face 13819 5639 6903 4845 Face 13820 5639 10028 6903 Face 13821 1874 9724 3107 Face 13822 4030 4206 7600 Face 13823 5191 1150 7451 Face 13824 1369 8603 3110 Face 13825 1408 8434 1908 Face 13826 7883 8428 8440 Face 13827 7374 1164 3111 Face 13828 7509 4151 9083 Face 13829 7509 4924 4151 Face 13830 6089 8721 2342 Face 13831 7446 4200 4770 Face 13832 7446 7779 4200 Face 13833 9699 5019 724 Face 13834 9699 5621 5019 Face 13835 6380 10787 8133 Face 13836 6380 9775 10787 Face 13837 9857 9281 3115 Face 13838 3852 8791 9091 Face 13839 3852 8640 8791 Face 13840 9870 1955 5679 Face 13841 304 394 3117 Face 13842 5614 8171 10128 Face 13843 3232 3118 9172 Face 13844 3232 2536 3118 Face 13845 7642 5908 9358 Face 13846 3494 7300 2025 Face 13847 8220 3119 1759 Face 13848 8220 4044 3119 Face 13849 1653 8193 6032 Face 13850 1653 2003 8193 Face 13851 7046 5694 9245 Face 13852 1874 3121 1666 Face 13853 1874 3107 3121 Face 13854 5323 3122 10932 Face 13855 5323 1921 3122 Face 13856 11051 3011 954 Face 13857 546 6234 9614 Face 13858 3153 5400 4265 Face 13859 10243 8378 9186 Face 13860 9951 7424 6383 Face 13861 6910 2501 6589 Face 13862 9098 9266 7355 Face 13863 9098 124 9266 Face 13864 6181 9860 2013 Face 13865 7489 8049 1620 Face 13866 7489 8209 8049 Face 13867 9731 3744 1419 Face 13868 4190 6646 7343 Face 13869 5184 6513 5465 Face 13870 9832 9377 69 Face 13871 9832 844 9377 Face 13872 8490 7332 3128 Face 13873 9923 3130 4199 Face 13874 9923 8211 3130 Face 13875 6731 10640 3643 Face 13876 2290 5546 10238 Face 13877 1375 4286 9462 Face 13878 7693 7011 5140 Face 13879 11040 1208 6131 Face 13880 3132 7274 1208 Face 13881 67 7386 10499 Face 13882 487 488 2024 Face 13883 487 3135 2573 Face 13884 487 2024 3135 Face 13885 6984 1628 1626 Face 13886 3990 3137 10975 Face 13887 3990 9422 3137 Face 13888 878 9397 5538 Face 13889 878 2933 9397 Face 13890 5859 5796 9717 Face 13891 8522 9938 5553 Face 13892 8522 9430 9938 Face 13893 4446 8688 9289 Face 13894 4981 3666 976 Face 13895 4981 8419 3666 Face 13896 5503 8639 6442 Face 13897 5503 8114 8639 Face 13898 342 10650 7276 Face 13899 342 2285 10650 Face 13900 625 10295 10166 Face 13901 625 9149 10295 Face 13902 93 8794 6225 Face 13903 6113 10257 7514 Face 13904 4087 8408 10257 Face 13905 8063 9739 5679 Face 13906 8063 1703 9739 Face 13907 621 1742 3146 Face 13908 3721 9793 5376 Face 13909 3721 6161 9793 Face 13910 7582 5690 3147 Face 13911 5486 3148 7169 Face 13912 5486 5173 3148 Face 13913 1507 6560 5998 Face 13914 4596 3150 880 Face 13915 4596 10134 3150 Face 13916 8301 8665 5254 Face 13917 9509 3705 6027 Face 13918 8341 9509 4603 Face 13919 8341 3705 9509 Face 13920 261 4027 3152 Face 13921 4821 6542 8643 Face 13922 7808 2399 4378 Face 13923 7808 10079 2399 Face 13924 10161 1353 10980 Face 13925 10161 7545 1353 Face 13926 4445 1554 6551 Face 13927 3358 3154 7775 Face 13928 3358 1336 3154 Face 13929 693 8327 7832 Face 13930 8293 58 3155 Face 13931 8469 3824 6326 Face 13932 7268 9199 7131 Face 13933 6752 3204 838 Face 13934 10147 6836 8587 Face 13935 20 9709 5166 Face 13936 9666 7874 4465 Face 13937 9577 9874 2684 Face 13938 9577 3347 9874 Face 13939 9055 87 6596 Face 13940 9055 3862 87 Face 13941 6794 6354 3748 Face 13942 1306 3986 7800 Face 13943 1306 3474 3986 Face 13944 10023 5005 6424 Face 13945 7762 9250 3367 Face 13946 9699 3159 5621 Face 13947 9699 724 3159 Face 13948 1144 6222 4111 Face 13949 1144 3160 1769 Face 13950 1144 4111 3160 Face 13951 1067 9311 2522 Face 13952 9047 5206 4459 Face 13953 1514 9868 10375 Face 13954 7388 10262 8096 Face 13955 6448 4158 3161 Face 13956 2066 5936 3162 Face 13957 9040 10346 3163 Face 13958 4947 8242 3165 Face 13959 8191 10745 7408 Face 13960 8191 3321 10745 Face 13961 957 3166 4081 Face 13962 957 1992 3166 Face 13963 301 1506 9957 Face 13964 301 6429 1506 Face 13965 1997 3167 724 Face 13966 3160 8425 3167 Face 13967 9147 2603 10036 Face 13968 2603 9147 4259 Face 13969 1294 6160 9722 Face 13970 166 4055 7240 Face 13971 9638 7748 2335 Face 13972 9638 2276 7748 Face 13973 6038 4078 5244 Face 13974 4175 10545 6085 Face 13975 8874 3490 3168 Face 13976 5675 7998 6507 Face 13977 10059 4601 6152 Face 13978 8150 8764 7735 Face 13979 2589 1258 540 Face 13980 4336 9428 7895 Face 13981 2471 5020 3739 Face 13982 3372 4366 9123 Face 13983 51 9027 711 Face 13984 51 4546 9027 Face 13985 9722 1387 1294 Face 13986 1371 4406 2835 Face 13987 6808 6841 1361 Face 13988 2109 10071 8404 Face 13989 2109 3386 10071 Face 13990 2215 5002 3174 Face 13991 3174 2636 2215 Face 13992 3233 4586 7382 Face 13993 3691 9978 4920 Face 13994 1095 5825 10740 Face 13995 1969 1726 9461 Face 13996 5031 2316 4443 Face 13997 732 3176 2462 Face 13998 732 1429 3176 Face 13999 3425 3177 10387 Face 14000 3425 3097 3177 Face 14001 10724 10641 3178 Face 14002 749 2089 9032 Face 14003 4808 932 1905 Face 14004 4846 1130 10502 Face 14005 5492 3689 7911 Face 14006 3061 606 3180 Face 14007 9961 5806 3181 Face 14008 1122 4726 218 Face 14009 8092 3315 3182 Face 14010 5319 2855 1301 Face 14011 5909 6412 587 Face 14012 3185 3184 7549 Face 14013 6390 3184 3185 Face 14014 1733 3772 3186 Face 14015 7042 8181 5343 Face 14016 7042 7454 6262 Face 14017 7042 5343 7454 Face 14018 4719 3187 750 Face 14019 2949 3188 5309 Face 14020 9490 5833 2826 Face 14021 10180 9553 2740 Face 14022 9254 6256 545 Face 14023 4657 7501 6256 Face 14024 1468 3190 10300 Face 14025 1468 6528 3190 Face 14026 8854 3191 3820 Face 14027 8854 1901 3191 Face 14028 3607 8803 896 Face 14029 2302 4557 3192 Face 14030 10929 6968 999 Face 14031 10929 5300 6968 Face 14032 4825 3193 3899 Face 14033 4825 3697 3193 Face 14034 4825 6107 3697 Face 14035 7712 9957 3194 Face 14036 5975 7090 10612 Face 14037 4320 7413 8912 Face 14038 837 7246 8330 Face 14039 157 5182 7291 Face 14040 3198 10365 10551 Face 14041 1622 2293 7561 Face 14042 7024 10036 5757 Face 14043 7024 8262 10036 Face 14044 10276 9659 4697 Face 14045 7856 597 7485 Face 14046 5558 5948 6684 Face 14047 360 2812 7976 Face 14048 8094 1309 6206 Face 14049 7474 10849 3199 Face 14050 2103 2448 9566 Face 14051 4240 1358 9609 Face 14052 506 6508 3200 Face 14053 10115 5569 3201 Face 14054 2396 7410 772 Face 14055 4007 727 11097 Face 14056 4007 9168 727 Face 14057 9753 9794 9598 Face 14058 6383 2224 9951 Face 14059 3132 1208 11040 Face 14060 9545 8349 10305 Face 14061 5350 3203 4732 Face 14062 5350 7180 3203 Face 14063 9950 8004 6135 Face 14064 10570 8149 5815 Face 14065 7448 8649 5567 Face 14066 3205 1025 8649 Face 14067 7448 3205 8649 Face 14068 1291 4861 1141 Face 14069 3695 3207 4967 Face 14070 3695 5768 3207 Face 14071 5081 2694 3208 Face 14072 7124 1678 3209 Face 14073 6058 4750 10444 Face 14074 2730 6039 7685 Face 14075 1119 7104 8932 Face 14076 286 3821 8401 Face 14077 286 1137 3821 Face 14078 4082 4811 3996 Face 14079 8153 9922 3516 Face 14080 8153 6276 9922 Face 14081 8895 5882 7086 Face 14082 10281 5562 9516 Face 14083 6613 9205 3808 Face 14084 6613 3360 9205 Face 14085 10044 4643 10967 Face 14086 7541 11014 1380 Face 14087 9719 3216 8682 Face 14088 9719 8816 3216 Face 14089 8296 8481 3217 Face 14090 9072 3529 7169 Face 14091 1474 10420 6148 Face 14092 1474 5372 10420 Face 14093 5884 11065 4787 Face 14094 486 3218 9002 Face 14095 3728 7393 3218 Face 14096 2242 334 8512 Face 14097 4318 3718 7792 Face 14098 7336 8481 2837 Face 14099 10893 7425 2524 Face 14100 354 5755 5909 Face 14101 2082 6090 5651 Face 14102 9837 4531 3221 Face 14103 8396 3222 5273 Face 14104 9308 4894 3223 Face 14105 774 3224 5196 Face 14106 1675 8800 7232 Face 14107 1675 10667 8800 Face 14108 1603 4174 3243 Face 14109 2929 4174 1603 Face 14110 10833 3225 9998 Face 14111 10833 9353 3225 Face 14112 2316 4913 7925 Face 14113 1477 17 1845 Face 14114 5987 1942 938 Face 14115 5987 3537 1942 Face 14116 9960 8866 9549 Face 14117 9960 8651 8866 Face 14118 9276 3227 4778 Face 14119 9276 6720 3227 Face 14120 7987 10868 3229 Face 14121 1123 10361 5872 Face 14122 5730 7601 3231 Face 14123 4063 8271 3234 Face 14124 1082 3236 1319 Face 14125 1082 923 3236 Face 14126 8145 3770 7964 Face 14127 9565 5113 10129 Face 14128 8479 3920 3237 Face 14129 176 3238 8437 Face 14130 176 8858 3238 Face 14131 2832 6632 9640 Face 14132 6645 2298 2321 Face 14133 6279 7528 7387 Face 14134 1787 4889 3241 Face 14135 2660 3235 9919 Face 14136 3235 2660 8364 Face 14137 7442 9295 10727 Face 14138 9923 4199 2554 Face 14139 9498 5552 10670 Face 14140 3242 8942 10347 Face 14141 469 3193 3697 Face 14142 469 8942 3242 Face 14143 469 2301 3193 Face 14144 4091 4635 5670 Face 14145 3247 3246 193 Face 14146 3247 2652 3246 Face 14147 701 232 5501 Face 14148 8806 10244 235 Face 14149 2635 6234 7517 Face 14150 345 10381 10133 Face 14151 2704 9750 2703 Face 14152 680 253 7382 Face 14153 1 8619 4812 Face 14154 1 7017 8619 Face 14155 1782 9675 8943 Face 14156 2434 10637 3249 Face 14157 9809 842 9695 Face 14158 9809 8968 842 Face 14159 8735 3250 7936 Face 14160 8735 10758 3250 Face 14161 3542 3507 5334 Face 14162 1465 3251 9667 Face 14163 11093 1595 1596 Face 14164 7199 7709 3252 Face 14165 1833 8279 6621 Face 14166 6831 737 3253 Face 14167 3253 2480 9718 Face 14168 9862 3254 1794 Face 14169 9862 10714 3254 Face 14170 8418 3255 9033 Face 14171 8418 4912 3255 Face 14172 1601 2879 10664 Face 14173 609 5733 5490 Face 14174 9401 10437 4931 Face 14175 2263 3256 6087 Face 14176 1403 7085 7158 Face 14177 2033 5016 4147 Face 14178 997 3259 998 Face 14179 997 189 3259 Face 14180 2725 10822 4448 Face 14181 9600 6602 3811 Face 14182 9428 8203 4897 Face 14183 9428 1441 8203 Face 14184 2863 4209 8979 Face 14185 4077 6671 2925 Face 14186 4077 10102 6671 Face 14187 4148 10258 9742 Face 14188 4148 6085 10258 Face 14189 4225 9437 3384 Face 14190 9900 7967 10052 Face 14191 9900 7645 7967 Face 14192 8750 1924 3261 Face 14193 376 841 3262 Face 14194 2323 8167 335 Face 14195 515 6849 9801 Face 14196 3944 9228 6290 Face 14197 3987 6787 10989 Face 14198 7824 4699 129 Face 14199 9467 4667 3263 Face 14200 5131 10129 3793 Face 14201 5131 1652 3264 Face 14202 9521 6705 3265 Face 14203 697 2482 3267 Face 14204 697 3267 9015 Face 14205 8100 2413 1922 Face 14206 5136 10250 3173 Face 14207 6178 3268 5963 Face 14208 11091 8556 3268 Face 14209 4236 6303 1475 Face 14210 5703 11002 9525 Face 14211 10802 778 4326 Face 14212 10180 2110 9070 Face 14213 6861 960 8719 Face 14214 589 6053 3270 Face 14215 5353 8701 3271 Face 14216 6069 4875 9267 Face 14217 7730 5534 10087 Face 14218 5156 3621 7142 Face 14219 2413 6851 1824 Face 14220 7809 3918 620 Face 14221 1357 4709 2544 Face 14222 1357 2760 4709 Face 14223 6623 10381 5721 Face 14224 7923 5419 6626 Face 14225 7923 8894 5419 Face 14226 7923 8604 8894 Face 14227 9737 3274 3056 Face 14228 4962 813 615 Face 14229 8932 10376 1037 Face 14230 1910 10092 7456 Face 14231 323 5947 5111 Face 14232 7249 10573 3276 Face 14233 7455 6032 8193 Face 14234 7455 6030 6032 Face 14235 9153 6331 8183 Face 14236 9153 7664 6331 Face 14237 1113 8661 5447 Face 14238 2558 10835 9351 Face 14239 804 4980 251 Face 14240 6813 7728 6297 Face 14241 9502 3279 7751 Face 14242 3607 896 2124 Face 14243 9254 4657 6256 Face 14244 10668 8355 4776 Face 14245 542 1548 8795 Face 14246 2569 5945 3281 Face 14247 3465 8089 5529 Face 14248 10227 8170 5568 Face 14249 7442 3283 1398 Face 14250 7442 10727 3283 Face 14251 3284 6348 7166 Face 14252 9448 3519 7488 Face 14253 247 7432 1461 Face 14254 758 10223 151 Face 14255 6551 9368 3287 Face 14256 6438 3287 9368 Face 14257 6438 2017 3287 Face 14258 3601 3288 5962 Face 14259 3601 6639 3288 Face 14260 9146 10025 860 Face 14261 9146 9524 10025 Face 14262 1761 2190 3448 Face 14263 6176 9914 9312 Face 14264 7344 7123 9222 Face 14265 10633 10813 8453 Face 14266 10633 10549 10813 Face 14267 4 2108 2150 Face 14268 136 3290 7605 Face 14269 9344 10492 4929 Face 14270 6231 5528 3296 Face 14271 854 8388 2049 Face 14272 1930 6820 2765 Face 14273 3880 6885 10483 Face 14274 2645 2936 5844 Face 14275 3664 3298 8058 Face 14276 3664 5085 3298 Face 14277 8222 4008 3299 Face 14278 44 3870 11026 Face 14279 44 2269 3870 Face 14280 201 1396 8042 Face 14281 4640 10206 10880 Face 14282 563 9637 6054 Face 14283 6931 7893 10098 Face 14284 10098 1179 6931 Face 14285 644 7072 10186 Face 14286 3066 7238 3301 Face 14287 594 8576 3302 Face 14288 8806 802 10210 Face 14289 7884 2611 8423 Face 14290 7884 6996 2611 Face 14291 8182 1060 8403 Face 14292 6391 9069 3524 Face 14293 5984 10516 6849 Face 14294 10683 5258 1986 Face 14295 3304 5161 5306 Face 14296 5499 4688 8851 Face 14297 3936 10366 3856 Face 14298 10960 6046 10460 Face 14299 6326 1023 8468 Face 14300 6326 9652 1023 Face 14301 10293 9069 10811 Face 14302 9223 1362 9198 Face 14303 6483 9005 8083 Face 14304 290 660 1478 Face 14305 5591 3308 9798 Face 14306 5591 1238 3308 Face 14307 794 7026 4955 Face 14308 9600 3811 3204 Face 14309 9600 3313 6602 Face 14310 9834 1827 3314 Face 14311 2415 8985 4634 Face 14312 10397 6731 3643 Face 14313 296 10472 3405 Face 14314 296 2621 10472 Face 14315 9354 8266 6825 Face 14316 8451 7569 3316 Face 14317 2121 8212 9125 Face 14318 4970 3317 9943 Face 14319 4305 3318 6534 Face 14320 7945 10 3318 Face 14321 9426 2387 4986 Face 14322 8837 3319 10389 Face 14323 8837 4238 3319 Face 14324 3321 2255 3322 Face 14325 304 2577 8160 Face 14326 6460 8080 7394 Face 14327 9236 5424 11050 Face 14328 9236 2834 5424 Face 14329 9819 3323 6670 Face 14330 9819 2763 3323 Face 14331 9780 3324 8443 Face 14332 8546 4328 805 Face 14333 8999 5250 4328 Face 14334 3833 3325 2572 Face 14335 3833 9547 3325 Face 14336 7107 5561 8065 Face 14337 7971 3968 3326 Face 14338 338 8077 382 Face 14339 338 5884 8077 Face 14340 5820 1028 4605 Face 14341 6303 3328 3649 Face 14342 4371 3330 6149 Face 14343 3471 532 10873 Face 14344 1670 80 5604 Face 14345 3332 3331 10177 Face 14346 3332 8136 3331 Face 14347 1198 8518 1600 Face 14348 1198 4536 8518 Face 14349 982 8010 3204 Face 14350 27 1865 10386 Face 14351 6078 11096 1029 Face 14352 4961 3335 1367 Face 14353 4961 1698 3335 Face 14354 7657 3153 4224 Face 14355 10096 1133 3338 Face 14356 7180 10847 3258 Face 14357 7076 2019 9462 Face 14358 7430 6823 9527 Face 14359 8754 7430 9527 Face 14360 8754 6216 7430 Face 14361 11111 1692 3311 Face 14362 3324 7575 10423 Face 14363 3324 9780 7575 Face 14364 10171 2253 787 Face 14365 9035 6897 8226 Face 14366 3133 4494 6914 Face 14367 10996 4554 6694 Face 14368 2667 6899 2250 Face 14369 2667 7644 6899 Face 14370 3265 4659 9521 Face 14371 4032 10533 7872 Face 14372 4032 5666 10533 Face 14373 10319 6224 5889 Face 14374 10319 1315 6224 Face 14375 10304 4563 3341 Face 14376 6314 8336 3000 Face 14377 6314 6325 8336 Face 14378 3777 1263 2586 Face 14379 10541 1886 4932 Face 14380 10463 713 3444 Face 14381 9658 2802 7496 Face 14382 10102 1012 9538 Face 14383 3018 7498 4837 Face 14384 178 9447 7278 Face 14385 2749 7832 362 Face 14386 7529 1298 11001 Face 14387 6670 7219 9819 Face 14388 6941 6573 3489 Face 14389 10288 2265 1199 Face 14390 3491 3346 5264 Face 14391 3491 4942 3346 Face 14392 4187 5809 6052 Face 14393 5718 9874 3347 Face 14394 4149 4799 3348 Face 14395 4805 7095 7587 Face 14396 10715 9480 10718 Face 14397 9309 3349 6269 Face 14398 9309 2723 3349 Face 14399 6743 1337 6439 Face 14400 895 3350 544 Face 14401 895 4295 3350 Face 14402 10948 10508 6288 Face 14403 10068 3351 7633 Face 14404 10068 647 3351 Face 14405 11055 3353 2519 Face 14406 11055 7736 3353 Face 14407 6671 7854 2925 Face 14408 818 2737 7642 Face 14409 1625 10232 7313 Face 14410 6979 7779 5420 Face 14411 6979 4200 7779 Face 14412 6524 3357 2642 Face 14413 10898 8748 6016 Face 14414 289 8068 10688 Face 14415 7802 3360 6613 Face 14416 9707 7158 10981 Face 14417 9707 1403 7158 Face 14418 3164 4036 9431 Face 14419 3979 3363 8552 Face 14420 3979 733 3363 Face 14421 4059 42 3364 Face 14422 3364 253 4059 Face 14423 10070 3365 3455 Face 14424 10070 10069 3365 Face 14425 10746 8844 3366 Face 14426 7977 1395 7882 Face 14427 3242 2504 469 Face 14428 2511 3367 9250 Face 14429 2223 4420 3368 Face 14430 2833 3369 7701 Face 14431 142 5830 8694 Face 14432 9558 10871 7863 Face 14433 9565 3370 5401 Face 14434 9565 1195 3370 Face 14435 10132 4764 4279 Face 14436 3673 3373 10407 Face 14437 957 4081 3373 Face 14438 399 2827 8048 Face 14439 931 3376 892 Face 14440 931 3483 3376 Face 14441 7996 65 10561 Face 14442 5331 3377 8238 Face 14443 3952 4969 3377 Face 14444 30 985 1086 Face 14445 30 10216 985 Face 14446 72 8169 3883 Face 14447 8760 3382 177 Face 14448 8760 7639 3382 Face 14449 2419 9637 563 Face 14450 6191 8769 5759 Face 14451 10119 7741 10315 Face 14452 10119 2634 7741 Face 14453 590 1648 3383 Face 14454 10914 11075 8496 Face 14455 8 2251 1321 Face 14456 7174 2612 1189 Face 14457 1346 8907 6043 Face 14458 400 2063 401 Face 14459 400 2045 2063 Face 14460 9244 6175 3388 Face 14461 6784 4945 1690 Face 14462 4840 3390 10761 Face 14463 4243 1529 3391 Face 14464 436 6728 3393 Face 14465 386 2838 3394 Face 14466 8914 1155 4785 Face 14467 1323 1351 1783 Face 14468 10935 8375 1111 Face 14469 285 2117 7144 Face 14470 8469 7352 5332 Face 14471 134 9776 2625 Face 14472 303 3395 8997 Face 14473 303 2162 3395 Face 14474 6637 3398 5779 Face 14475 6637 5779 3399 Face 14476 7732 5692 9246 Face 14477 503 10705 140 Face 14478 1106 3401 6458 Face 14479 6349 8274 3401 Face 14480 1370 10171 3145 Face 14481 4121 9025 7362 Face 14482 2307 306 5373 Face 14483 8673 6744 3808 Face 14484 8673 11002 6744 Face 14485 1753 3402 5742 Face 14486 1753 7451 3402 Face 14487 3403 2822 4403 Face 14488 1208 342 9687 Face 14489 10472 10752 3404 Face 14490 1193 1446 1188 Face 14491 4104 3407 1048 Face 14492 4104 10883 3407 Face 14493 6954 3408 2230 Face 14494 5855 5279 5533 Face 14495 3139 1598 661 Face 14496 3139 2473 1598 Face 14497 4193 7168 10733 Face 14498 6111 6249 2964 Face 14499 8584 4813 7785 Face 14500 1813 7859 3414 Face 14501 3734 8702 10692 Face 14502 3734 6102 8702 Face 14503 9442 7244 10877 Face 14504 6499 8034 4040 Face 14505 6499 9529 8034 Face 14506 9582 3418 430 Face 14507 511 152 168 Face 14508 10087 3788 10004 Face 14509 5650 3334 2288 Face 14510 2421 6170 8734 Face 14511 6370 2133 5192 Face 14512 5732 3420 10644 Face 14513 5732 6976 3420 Face 14514 4560 2697 1409 Face 14515 4851 3372 8040 Face 14516 2595 453 3421 Face 14517 3519 3422 10245 Face 14518 515 6800 6849 Face 14519 8294 7172 3426 Face 14520 2039 6034 6971 Face 14521 10606 3427 233 Face 14522 10606 2210 3427 Face 14523 3429 9023 3428 Face 14524 1066 3429 3428 Face 14525 1066 8508 3429 Face 14526 4580 940 4839 Face 14527 5445 10182 8212 Face 14528 5532 5309 6574 Face 14529 3099 10112 10769 Face 14530 270 2119 7492 Face 14531 642 3434 3933 Face 14532 642 175 3434 Face 14533 5725 10215 815 Face 14534 5725 4892 10215 Face 14535 6188 782 970 Face 14536 3597 3999 877 Face 14537 10347 3689 3242 Face 14538 223 5995 7799 Face 14539 9990 7981 3435 Face 14540 7346 3437 9030 Face 14541 8263 3438 383 Face 14542 8263 3915 3438 Face 14543 810 5247 9738 Face 14544 8048 2046 2272 Face 14545 3662 3441 9537 Face 14546 3662 5607 3441 Face 14547 1885 50 5122 Face 14548 7496 5847 10757 Face 14549 6137 2382 4008 Face 14550 1845 17 10464 Face 14551 3447 6038 5243 Face 14552 100 835 1684 Face 14553 3908 5605 100 Face 14554 8958 6265 3449 Face 14555 8252 1977 9906 Face 14556 6591 3450 1030 Face 14557 6591 10833 3450 Face 14558 9507 7738 2109 Face 14559 9719 10283 8816 Face 14560 8915 5040 1816 Face 14561 1498 4947 3452 Face 14562 8134 10632 6541 Face 14563 8134 402 10632 Face 14564 3889 74 2866 Face 14565 9880 7525 10705 Face 14566 4423 9892 3454 Face 14567 4423 3454 25 Face 14568 1501 3513 47 Face 14569 7733 2891 8783 Face 14570 11085 3903 7470 Face 14571 10834 9712 7141 Face 14572 10834 1476 9712 Face 14573 7049 6351 5979 Face 14574 9844 6351 1440 Face 14575 123 6912 9287 Face 14576 7167 3460 1075 Face 14577 6854 5922 10237 Face 14578 10439 8869 5818 Face 14579 10461 3461 6595 Face 14580 3988 10528 1221 Face 14581 9658 4650 5251 Face 14582 6207 10282 8230 Face 14583 5680 7144 3631 Face 14584 9275 1229 3462 Face 14585 9592 7782 9355 Face 14586 10702 8640 1623 Face 14587 10410 8759 10081 Face 14588 10410 2998 8759 Face 14589 723 11076 3468 Face 14590 10739 1565 10827 Face 14591 4296 10103 5966 Face 14592 4296 8579 10103 Face 14593 4612 3360 7802 Face 14594 1391 3472 10622 Face 14595 8852 7337 5216 Face 14596 7337 8852 850 Face 14597 3731 919 8642 Face 14598 3474 5516 3473 Face 14599 6688 10844 3403 Face 14600 6688 7150 10844 Face 14601 10510 3476 3688 Face 14602 10510 1871 3476 Face 14603 6190 7453 500 Face 14604 6190 3701 7453 Face 14605 5384 6913 3632 Face 14606 69 10656 5713 Face 14607 7307 3189 7843 Face 14608 7307 7652 3189 Face 14609 4676 138 5025 Face 14610 4676 5752 138 Face 14611 8194 2671 2672 Face 14612 233 3479 9742 Face 14613 233 5021 3479 Face 14614 5484 7003 2193 Face 14615 8462 194 3480 Face 14616 6445 3481 6339 Face 14617 8100 5061 861 Face 14618 1013 9567 5036 Face 14619 1013 3602 9567 Face 14620 1365 8082 8003 Face 14621 10298 1034 428 Face 14622 7189 8841 1219 Face 14623 7189 4918 8841 Face 14624 1227 1384 8292 Face 14625 931 3374 3483 Face 14626 3974 7304 211 Face 14627 601 3484 8489 Face 14628 601 4180 3484 Face 14629 7613 5233 693 Face 14630 403 8699 10212 Face 14631 358 7973 10271 Face 14632 1695 7075 10500 Face 14633 1695 4512 7075 Face 14634 7279 1168 3496 Face 14635 10791 9641 3013 Face 14636 510 4870 6488 Face 14637 9412 4411 5520 Face 14638 5520 5269 9412 Face 14639 8663 8211 1715 Face 14640 5801 7441 3488 Face 14641 6288 2090 7402 Face 14642 9319 3213 8728 Face 14643 3490 5178 6140 Face 14644 1219 5178 3490 Face 14645 10051 5972 8903 Face 14646 4224 584 4938 Face 14647 1518 9396 10553 Face 14648 9100 5495 10596 Face 14649 10678 5723 6270 Face 14650 10678 8236 5723 Face 14651 7814 1746 3493 Face 14652 161 3485 2893 Face 14653 1118 8868 9261 Face 14654 7461 8052 1800 Face 14655 7461 4388 8052 Face 14656 10010 7803 7858 Face 14657 440 10155 5937 Face 14658 440 4746 10155 Face 14659 41 2204 3498 Face 14660 5613 6898 2265 Face 14661 8716 4219 8876 Face 14662 1784 5810 8118 Face 14663 356 3021 474 Face 14664 1445 3502 1475 Face 14665 5324 3202 6883 Face 14666 6713 9310 3504 Face 14667 10031 9240 7821 Face 14668 4217 3505 8360 Face 14669 4217 1416 3505 Face 14670 10913 5560 6221 Face 14671 10913 2899 5560 Face 14672 8608 3506 9263 Face 14673 1700 7881 9356 Face 14674 4442 2436 2 Face 14675 5482 7979 141 Face 14676 8242 6180 3165 Face 14677 8645 2155 557 Face 14678 10850 10026 6043 Face 14679 10850 5823 3511 Face 14680 7820 1344 3512 Face 14681 2658 7827 9776 Face 14682 10068 7984 647 Face 14683 10068 5 7984 Face 14684 47 3513 4409 Face 14685 10964 8140 3514 Face 14686 5492 8600 7793 Face 14687 7261 9489 3515 Face 14688 5893 3517 6023 Face 14689 5893 7152 3517 Face 14690 9902 5968 6592 Face 14691 3519 3518 5380 Face 14692 10858 2127 3522 Face 14693 2467 3124 10385 Face 14694 1539 8188 3792 Face 14695 8250 794 6378 Face 14696 8250 7026 794 Face 14697 6911 9807 5790 Face 14698 2115 8521 2402 Face 14699 6696 10760 3524 Face 14700 3926 3653 860 Face 14701 3926 7129 3653 Face 14702 2935 2836 8439 Face 14703 6353 8634 5617 Face 14704 71 10005 6635 Face 14705 675 9445 10819 Face 14706 9285 9124 136 Face 14707 7010 6350 6120 Face 14708 4366 10826 7941 Face 14709 6765 3035 3527 Face 14710 619 6521 8983 Face 14711 619 1386 6521 Face 14712 867 3528 2759 Face 14713 9072 5555 3529 Face 14714 9327 1569 5514 Face 14715 1569 9327 8208 Face 14716 11104 6108 2488 Face 14717 11104 600 6108 Face 14718 6117 3533 4821 Face 14719 2319 3732 3534 Face 14720 4126 3536 958 Face 14721 4126 9157 3536 Face 14722 10389 3319 3538 Face 14723 1625 4907 10232 Face 14724 1625 2928 4907 Face 14725 7427 3438 6749 Face 14726 3540 7794 9133 Face 14727 3540 4618 7794 Face 14728 4975 556 8132 Face 14729 2620 9427 6321 Face 14730 5021 8510 1919 Face 14731 6217 6805 7618 Face 14732 3086 6435 7405 Face 14733 5455 7647 373 Face 14734 10586 5699 7527 Face 14735 10586 2963 5699 Face 14736 8248 1668 4971 Face 14737 8248 6539 1668 Face 14738 8671 4547 5398 Face 14739 10309 4334 10488 Face 14740 6123 2538 6258 Face 14741 1573 3545 698 Face 14742 1573 5530 3545 Face 14743 720 5674 2153 Face 14744 720 5599 5674 Face 14745 8467 7785 11057 Face 14746 18 3547 8995 Face 14747 18 9804 3547 Face 14748 9253 8499 8044 Face 14749 10496 4349 6366 Face 14750 6012 3551 10687 Face 14751 10917 9049 10672 Face 14752 10945 10088 2032 Face 14753 10945 7320 10088 Face 14754 5573 3550 1172 Face 14755 6012 2720 3551 Face 14756 8329 3552 8251 Face 14757 8329 7621 3552 Face 14758 5253 2704 3553 Face 14759 6571 5594 2822 Face 14760 5989 616 7799 Face 14761 284 5818 3557 Face 14762 1296 3558 5542 Face 14763 7285 5956 3524 Face 14764 6141 3559 6965 Face 14765 6141 10538 3559 Face 14766 8468 658 8338 Face 14767 8468 10653 658 Face 14768 4590 3560 4266 Face 14769 4590 9681 3560 Face 14770 4899 4793 3562 Face 14771 9087 11083 6407 Face 14772 3852 4721 10046 Face 14773 4523 10168 3640 Face 14774 8890 5944 8548 Face 14775 5425 3564 7793 Face 14776 10653 8468 1023 Face 14777 411 3565 2134 Face 14778 411 9657 3565 Face 14779 1206 8263 383 Face 14780 1206 8107 8263 Face 14781 857 9110 6294 Face 14782 4150 4604 4 Face 14783 2051 3567 1501 Face 14784 10635 3568 4209 Face 14785 10635 7342 3568 Face 14786 9767 1037 5070 Face 14787 1509 140 3571 Face 14788 10239 2653 10270 Face 14789 5811 2980 3572 Face 14790 9744 8522 6414 Face 14791 3573 10452 7414 Face 14792 518 3574 7351 Face 14793 599 3575 10030 Face 14794 599 4413 3575 Face 14795 9279 3576 10928 Face 14796 9279 6184 3576 Face 14797 9167 3577 7771 Face 14798 4853 2768 3577 Face 14799 2 8086 4442 Face 14800 7301 5217 5682 Face 14801 8423 6737 3578 Face 14802 636 3579 2374 Face 14803 636 11025 3579 Face 14804 3694 1767 7354 Face 14805 5615 1441 8615 Face 14806 10878 3583 5084 Face 14807 3584 6940 1206 Face 14808 71 380 5577 Face 14809 1378 10588 613 Face 14810 894 3585 9410 Face 14811 894 7778 3585 Face 14812 6339 7001 3586 Face 14813 123 3051 6912 Face 14814 6506 11029 7833 Face 14815 1217 8573 3588 Face 14816 337 3589 7952 Face 14817 10246 8600 3589 Face 14818 10364 8706 8727 Face 14819 3593 4349 3592 Face 14820 1976 9059 3595 Face 14821 2194 8774 6040 Face 14822 8106 5761 1607 Face 14823 5689 2241 10915 Face 14824 7907 8398 2756 Face 14825 8062 384 6209 Face 14826 5574 4816 7686 Face 14827 3601 9812 9632 Face 14828 5189 3602 5514 Face 14829 9683 5363 8275 Face 14830 8209 8429 1159 Face 14831 7702 4185 1125 Face 14832 9064 3603 5469 Face 14833 9064 8836 3603 Face 14834 9859 8482 3604 Face 14835 213 2597 5788 Face 14836 6093 7558 1496 Face 14837 7373 8189 10372 Face 14838 6229 6929 6568 Face 14839 3887 7621 10624 Face 14840 10280 7604 5488 Face 14841 8449 1355 7067 Face 14842 3979 8552 1688 Face 14843 3388 6175 3611 Face 14844 2103 9566 406 Face 14845 8383 3613 2192 Face 14846 8383 9365 3613 Face 14847 2554 6365 3614 Face 14848 9689 6669 9636 Face 14849 830 7867 7437 Face 14850 830 1673 3617 Face 14851 10843 1440 6340 Face 14852 4276 1440 6470 Face 14853 4568 5459 7576 Face 14854 8393 5353 2521 Face 14855 3618 5671 1049 Face 14856 2036 7486 4041 Face 14857 10824 5668 1024 Face 14858 6320 3619 5749 Face 14859 6320 5431 3619 Face 14860 1362 10492 9606 Face 14861 5156 807 3621 Face 14862 110 10396 10397 Face 14863 4336 8615 9428 Face 14864 2326 2015 3622 Face 14865 10174 2071 4364 Face 14866 5644 3623 6911 Face 14867 9217 3155 8972 Face 14868 9217 3800 3155 Face 14869 7707 9286 3624 Face 14870 10185 9140 6816 Face 14871 2702 6741 3625 Face 14872 5121 10706 10534 Face 14873 5136 2227 10250 Face 14874 3626 3627 5417 Face 14875 3626 7505 3627 Face 14876 1944 2710 1246 Face 14877 5431 2146 10810 Face 14878 7119 9380 7321 Face 14879 7119 5698 9380 Face 14880 903 7299 5020 Face 14881 903 4102 7299 Face 14882 3017 6465 5952 Face 14883 8724 11105 8067 Face 14884 9833 9649 9038 Face 14885 3485 10709 5635 Face 14886 10362 7110 1107 Face 14887 10362 3628 7110 Face 14888 5191 7110 3628 Face 14889 9196 2719 7302 Face 14890 7183 10615 8154 Face 14891 7183 4974 10615 Face 14892 944 7138 6681 Face 14893 944 3397 7138 Face 14894 5716 2033 5931 Face 14895 866 1866 1378 Face 14896 387 6197 3809 Face 14897 5945 6658 2889 Face 14898 498 3630 2566 Face 14899 498 4769 3630 Face 14900 3854 7818 3632 Face 14901 4079 739 6553 Face 14902 501 3633 1327 Face 14903 284 1340 7592 Face 14904 3634 697 1591 Face 14905 9522 3635 7930 Face 14906 9522 10182 3635 Face 14907 8969 4296 3636 Face 14908 939 461 6950 Face 14909 3637 1442 3497 Face 14910 7139 7879 5181 Face 14911 4944 9987 5314 Face 14912 8574 3963 202 Face 14913 5129 3638 2809 Face 14914 5129 9782 3638 Face 14915 7106 1091 6422 Face 14916 3707 1771 7228 Face 14917 7504 3640 2472 Face 14918 479 3641 4804 Face 14919 6804 3642 884 Face 14920 10837 7521 3642 Face 14921 10837 3642 6804 Face 14922 6681 1924 3643 Face 14923 4722 892 3376 Face 14924 3176 1429 5869 Face 14925 1995 7327 6557 Face 14926 11057 1466 8467 Face 14927 6027 3644 9082 Face 14928 6027 9731 3644 Face 14929 1083 8437 10923 Face 14930 3497 3646 6988 Face 14931 3497 8482 3646 Face 14932 8209 1159 3648 Face 14933 9977 7240 10149 Face 14934 9102 8432 891 Face 14935 4803 9660 7466 Face 14936 6958 10052 5577 Face 14937 1356 8897 3312 Face 14938 9913 8637 4942 Face 14939 5103 10101 4687 Face 14940 2589 7126 3653 Face 14941 5999 5003 1453 Face 14942 4305 7945 3318 Face 14943 3934 7190 3654 Face 14944 9362 2568 3655 Face 14945 8836 9064 10205 Face 14946 1601 6688 4403 Face 14947 6399 3656 2891 Face 14948 5523 10368 10675 Face 14949 8585 3657 1055 Face 14950 8585 4132 3657 Face 14951 4518 3951 3660 Face 14952 126 3772 4637 Face 14953 3661 6328 3234 Face 14954 2073 6328 3661 Face 14955 9639 1644 7964 Face 14956 4536 5015 1644 Face 14957 4536 1644 9639 Face 14958 9068 4562 8793 Face 14959 9068 3097 4562 Face 14960 76 1324 8272 Face 14961 10167 9381 1802 Face 14962 5287 7742 3663 Face 14963 5939 8984 2543 Face 14964 243 10695 8675 Face 14965 3447 9379 197 Face 14966 3447 4412 9379 Face 14967 9078 5816 6873 Face 14968 3665 11100 3712 Face 14969 506 3200 3666 Face 14970 9143 521 5284 Face 14971 9143 2721 521 Face 14972 1215 10453 6607 Face 14973 3765 10867 5876 Face 14974 8679 10867 3765 Face 14975 2857 7094 5663 Face 14976 6146 6147 5722 Face 14977 5451 3667 7508 Face 14978 5451 7098 3667 Face 14979 6147 5997 4695 Face 14980 6147 8329 5997 Face 14981 8568 5913 4611 Face 14982 1939 8773 3669 Face 14983 7859 9458 4782 Face 14984 7859 1813 3672 Face 14985 3373 3673 2362 Face 14986 10231 2202 5872 Face 14987 8857 7597 10585 Face 14988 465 1146 1961 Face 14989 7230 6785 5502 Face 14990 8157 20 3679 Face 14991 9757 2102 3921 Face 14992 9890 5107 10997 Face 14993 535 3680 10392 Face 14994 535 10166 3680 Face 14995 6871 2974 4889 Face 14996 7212 9290 3897 Face 14997 2292 4907 8377 Face 14998 4075 3685 3683 Face 14999 4075 6377 9098 Face 15000 4075 2783 6377 Face 15001 3076 481 9172 Face 15002 9354 2095 3684 Face 15003 3273 3685 10761 Face 15004 894 3687 6306 Face 15005 894 5171 3687 Face 15006 4534 9828 3691 Face 15007 830 7294 3692 Face 15008 8359 6273 3693 Face 15009 9066 8839 86 Face 15010 8448 5847 10334 Face 15011 8448 10757 5847 Face 15012 4552 5910 9481 Face 15013 664 10521 8880 Face 15014 6134 6079 3702 Face 15015 1931 6905 4525 Face 15016 138 2336 6230 Face 15017 7111 8586 42 Face 15018 7318 3709 333 Face 15019 7318 5849 3709 Face 15020 1266 9789 8326 Face 15021 1266 5814 9789 Face 15022 9230 9511 577 Face 15023 11100 10090 8225 Face 15024 2693 11047 3799 Face 15025 10178 3713 1856 Face 15026 10178 9337 3713 Face 15027 11110 751 1014 Face 15028 8025 2655 2686 Face 15029 1365 611 7820 Face 15030 9118 7426 9912 Face 15031 1522 8026 3718 Face 15032 9493 10947 2328 Face 15033 2715 5518 10947 Face 15034 2715 10947 9493 Face 15035 5831 9079 1746 Face 15036 1616 8082 826 Face 15037 6257 2036 4041 Face 15038 9964 6257 4041 Face 15039 10849 10520 3199 Face 15040 10849 4361 10520 Face 15041 1613 1471 3276 Face 15042 9390 5476 1077 Face 15043 9390 5527 5476 Face 15044 10239 10270 4068 Face 15045 12 2750 1615 Face 15046 53 4765 3722 Face 15047 10774 2153 5674 Face 15048 4159 6474 5342 Face 15049 4159 5103 6474 Face 15050 710 7295 5103 Face 15051 710 4453 7295 Face 15052 7110 1254 3724 Face 15053 1997 3160 3167 Face 15054 9566 4681 406 Face 15055 486 3728 3218 Face 15056 486 2818 3728 Face 15057 10347 8942 3729 Face 15058 5232 3910 7160 Face 15059 5734 1204 1756 Face 15060 9078 2055 5816 Face 15061 6247 3344 3730 Face 15062 9425 535 10392 Face 15063 9425 6033 535 Face 15064 7611 10339 9300 Face 15065 7611 3726 10339 Face 15066 5335 3732 10845 Face 15067 5335 1376 3732 Face 15068 3209 9968 5433 Face 15069 4330 6638 3735 Face 15070 9707 4855 7949 Face 15071 10979 6598 4855 Face 15072 9707 10979 4855 Face 15073 1464 7410 10373 Face 15074 3737 10443 756 Face 15075 3737 6984 10443 Face 15076 4749 3738 7515 Face 15077 7443 7164 3738 Face 15078 8975 8884 10850 Face 15079 10393 427 7348 Face 15080 7284 9716 6478 Face 15081 3008 277 3202 Face 15082 6413 9503 7165 Face 15083 1312 7581 8454 Face 15084 1312 2213 7581 Face 15085 4482 4204 8751 Face 15086 6077 5123 4204 Face 15087 9958 5801 3488 Face 15088 7878 7700 9813 Face 15089 6874 11004 8451 Face 15090 5789 942 2120 Face 15091 4271 2325 5029 Face 15092 6818 8192 1157 Face 15093 3751 2362 8383 Face 15094 11002 9552 3753 Face 15095 10372 8189 10901 Face 15096 4677 10581 1377 Face 15097 5757 3754 7130 Face 15098 5757 3650 3754 Face 15099 2808 4169 9716 Face 15100 931 5816 7770 Face 15101 8994 2244 1781 Face 15102 9068 3755 3097 Face 15103 9068 1647 3755 Face 15104 4788 25 3032 Face 15105 9040 9440 1690 Face 15106 7054 9475 5004 Face 15107 7839 4157 371 Face 15108 9111 1902 4157 Face 15109 866 3760 2744 Face 15110 866 8232 3760 Face 15111 8522 3761 1493 Face 15112 8522 5553 3761 Face 15113 10550 3762 6802 Face 15114 10550 7215 3762 Face 15115 1217 3588 5456 Face 15116 370 10953 2866 Face 15117 6110 3764 3720 Face 15118 6110 862 3764 Face 15119 3135 3766 2573 Face 15120 4018 5963 3768 Face 15121 4937 3769 3303 Face 15122 77 3707 10474 Face 15123 3782 10286 171 Face 15124 3277 9100 9728 Face 15125 5303 3711 2965 Face 15126 9017 3770 11060 Face 15127 9017 10411 3770 Face 15128 6205 2773 3771 Face 15129 6205 3771 2810 Face 15130 7800 10628 6341 Face 15131 7800 10990 10628 Face 15132 11079 5054 9119 Face 15133 1527 2989 4033 Face 15134 1052 3773 2439 Face 15135 1052 9899 3773 Face 15136 4900 3774 4599 Face 15137 4900 10002 3774 Face 15138 161 3775 3485 Face 15139 161 8644 3775 Face 15140 2502 4032 7987 Face 15141 7762 8125 9250 Face 15142 6827 1916 9686 Face 15143 7273 9764 9626 Face 15144 4863 865 9669 Face 15145 1247 3781 644 Face 15146 1247 7182 3781 Face 15147 6809 6852 3783 Face 15148 9902 6592 6162 Face 15149 2053 3058 1232 Face 15150 4072 7118 3784 Face 15151 9626 9617 7273 Face 15152 11092 2105 5088 Face 15153 8124 3354 6461 Face 15154 2152 3788 5534 Face 15155 2152 9997 3788 Face 15156 5820 10730 9855 Face 15157 4652 7408 10745 Face 15158 4652 7712 7408 Face 15159 8127 3790 9103 Face 15160 8127 1190 3790 Face 15161 9545 6045 8602 Face 15162 84 2986 8583 Face 15163 1665 7490 8207 Face 15164 7181 9350 10251 Face 15165 3529 5672 2811 Face 15166 1309 10522 6206 Face 15167 1309 1539 3792 Face 15168 4158 7300 3161 Face 15169 5288 10299 8197 Face 15170 3367 2511 7192 Face 15171 9226 3183 5743 Face 15172 9226 7246 3183 Face 15173 3295 9161 1450 Face 15174 3295 9508 9161 Face 15175 5140 10956 1221 Face 15176 5140 10863 10956 Face 15177 10138 538 6490 Face 15178 3201 9026 6930 Face 15179 6740 5132 9831 Face 15180 3471 1431 2624 Face 15181 3602 179 9327 Face 15182 2396 8686 5337 Face 15183 6619 1857 8863 Face 15184 5508 10525 10487 Face 15185 6527 6639 2510 Face 15186 9371 9338 4132 Face 15187 9371 7553 1722 Face 15188 4201 10543 8262 Face 15189 4201 8632 10543 Face 15190 1625 7313 2928 Face 15191 8293 5192 7745 Face 15192 8293 3800 5192 Face 15193 8293 3155 3800 Face 15194 10253 3802 3680 Face 15195 3804 11061 8143 Face 15196 64 7217 3803 Face 15197 64 3803 3804 Face 15198 5509 3805 5776 Face 15199 5009 10874 3805 Face 15200 9090 5403 6750 Face 15201 6605 10114 3807 Face 15202 7625 6330 956 Face 15203 576 6082 9972 Face 15204 1330 4330 1516 Face 15205 528 10296 145 Face 15206 7176 2347 7175 Face 15207 4829 10066 9289 Face 15208 10911 10345 5616 Face 15209 8546 5250 8999 Face 15210 359 8482 3813 Face 15211 2265 4838 1199 Face 15212 2265 3343 4838 Face 15213 5649 4069 3675 Face 15214 427 3815 6193 Face 15215 9552 9887 5902 Face 15216 872 8924 10159 Face 15217 9469 6385 6697 Face 15218 1107 3818 9662 Face 15219 1107 7110 3818 Face 15220 11073 3467 1763 Face 15221 8988 5820 9855 Face 15222 2205 11005 3819 Face 15223 11078 8303 1929 Face 15224 6913 5384 4923 Face 15225 10121 3668 7015 Face 15226 3453 2193 10417 Face 15227 513 7758 3101 Face 15228 513 9 7758 Face 15229 1137 8401 3821 Face 15230 5065 1444 9614 Face 15231 5481 7819 6328 Face 15232 9926 6508 6103 Face 15233 7877 8205 1959 Face 15234 7877 7291 8205 Face 15235 2305 3825 8227 Face 15236 2305 8362 3825 Face 15237 1386 4162 6521 Face 15238 9142 3827 6528 Face 15239 9201 4221 3827 Face 15240 341 6388 1745 Face 15241 341 6624 6388 Face 15242 472 3379 1447 Face 15243 946 10825 3828 Face 15244 8451 3829 7569 Face 15245 9863 6379 5292 Face 15246 4177 9961 3181 Face 15247 2001 2792 8945 Face 15248 311 833 10044 Face 15249 6806 5924 3837 Face 15250 5199 6306 3838 Face 15251 6256 8149 10570 Face 15252 5209 10685 6711 Face 15253 6006 946 3828 Face 15254 10139 5253 10622 Face 15255 2658 9385 10618 Face 15256 1079 8635 1770 Face 15257 6277 3841 1683 Face 15258 1178 928 3841 Face 15259 563 4483 279 Face 15260 4969 3952 3843 Face 15261 2871 5428 10602 Face 15262 728 3500 4155 Face 15263 332 848 8025 Face 15264 9911 10354 8883 Face 15265 1051 9911 8883 Face 15266 9668 10525 9911 Face 15267 1051 9668 9911 Face 15268 1051 4967 9668 Face 15269 9793 457 9417 Face 15270 549 10725 595 Face 15271 6297 8439 2836 Face 15272 6930 9026 10950 Face 15273 8990 8872 1050 Face 15274 8990 1070 8872 Face 15275 2287 391 4846 Face 15276 4847 5719 3623 Face 15277 1115 1116 2389 Face 15278 8849 3847 8533 Face 15279 8849 4359 3847 Face 15280 5236 3848 6420 Face 15281 5236 7786 3848 Face 15282 10260 7914 2346 Face 15283 4286 1375 7777 Face 15284 3721 9583 10110 Face 15285 95 6057 3651 Face 15286 3072 6819 568 Face 15287 502 2091 3851 Face 15288 3688 3573 10510 Face 15289 10528 11088 7693 Face 15290 511 10050 4753 Face 15291 2180 10409 2967 Face 15292 2180 6678 10409 Face 15293 4260 9001 3852 Face 15294 6865 7618 3378 Face 15295 10022 7647 5030 Face 15296 5346 9605 8442 Face 15297 3632 6893 3854 Face 15298 9607 3855 9981 Face 15299 10647 6663 9471 Face 15300 8958 3858 6142 Face 15301 8958 3449 3858 Face 15302 8790 7310 4272 Face 15303 9291 641 4059 Face 15304 9291 5924 641 Face 15305 5844 10724 4781 Face 15306 10900 3860 4254 Face 15307 10900 10340 3860 Face 15308 8656 5206 7994 Face 15309 5302 8346 9886 Face 15310 5302 9660 8346 Face 15311 4769 3861 3630 Face 15312 10813 9117 2438 Face 15313 6124 75 2761 Face 15314 10831 8409 5412 Face 15315 3136 520 183 Face 15316 8589 3864 242 Face 15317 8589 9779 3864 Face 15318 2652 6648 10909 Face 15319 9391 9806 8492 Face 15320 7154 9692 6308 Face 15321 7154 4802 9692 Face 15322 1919 210 4148 Face 15323 2206 8520 7857 Face 15324 972 3867 4116 Face 15325 10116 1665 8207 Face 15326 6471 3868 9908 Face 15327 6471 8593 3868 Face 15328 10355 11026 3870 Face 15329 5425 1593 10664 Face 15330 10474 7660 3503 Face 15331 3871 7890 10351 Face 15332 3871 7212 7890 Face 15333 3871 8754 7241 Face 15334 3871 10351 8754 Face 15335 5975 10815 5422 Face 15336 2227 5136 2094 Face 15337 264 1582 8187 Face 15338 8418 3010 8925 Face 15339 2059 1616 3710 Face 15340 5183 3286 4755 Face 15341 3873 9392 9175 Face 15342 9487 8370 10342 Face 15343 3873 9487 9392 Face 15344 10394 5620 6258 Face 15345 10394 9209 5620 Face 15346 2982 2285 2461 Face 15347 1448 3876 2187 Face 15348 1143 9265 2819 Face 15349 7155 9903 4198 Face 15350 7698 1970 904 Face 15351 7698 361 1970 Face 15352 201 6544 6628 Face 15353 1010 3878 5299 Face 15354 1010 10699 3878 Face 15355 9043 5430 3879 Face 15356 10652 2496 863 Face 15357 2461 2285 4876 Face 15358 54 8420 2884 Face 15359 1594 2421 1074 Face 15360 1594 10767 2421 Face 15361 8810 3881 3931 Face 15362 8810 3626 3881 Face 15363 295 2182 3882 Face 15364 8893 3883 4472 Face 15365 8893 72 3883 Face 15366 5990 6542 2375 Face 15367 5990 8643 6542 Face 15368 5322 3884 10817 Face 15369 3886 652 5736 Face 15370 3886 396 652 Face 15371 253 3014 7382 Face 15372 10382 1170 9148 Face 15373 3889 3888 7556 Face 15374 4752 1983 3888 Face 15375 8593 6471 3891 Face 15376 1862 4421 6425 Face 15377 2627 7365 5575 Face 15378 1298 2896 7365 Face 15379 1298 7365 2627 Face 15380 4148 210 8337 Face 15381 6712 5197 9786 Face 15382 146 3895 5976 Face 15383 2221 9039 3895 Face 15384 6565 4522 8941 Face 15385 3896 9256 4094 Face 15386 10106 3898 9669 Face 15387 3898 10106 798 Face 15388 6310 3899 2301 Face 15389 6310 4235 3899 Face 15390 333 426 7318 Face 15391 4218 3900 1468 Face 15392 4218 9221 3900 Face 15393 1707 10445 10299 Face 15394 10772 10032 5539 Face 15395 9810 3902 941 Face 15396 9810 5373 3902 Face 15397 8471 5406 8605 Face 15398 9051 1124 9597 Face 15399 313 5154 9063 Face 15400 7564 10707 4852 Face 15401 7001 9071 10971 Face 15402 991 9948 9071 Face 15403 10586 6435 2963 Face 15404 10177 6533 2938 Face 15405 9398 7383 2930 Face 15406 9553 7833 11029 Face 15407 164 9659 10276 Face 15408 6929 4343 7863 Face 15409 160 10096 3338 Face 15410 6538 9561 1184 Face 15411 6853 4739 9609 Face 15412 11057 3905 6843 Face 15413 11057 7785 3905 Face 15414 778 9347 4326 Face 15415 8938 8582 6918 Face 15416 5391 2959 5226 Face 15417 5678 9754 5848 Face 15418 100 1577 3908 Face 15419 3109 8560 4599 Face 15420 3109 2242 8560 Face 15421 10470 3910 5232 Face 15422 1348 7465 3077 Face 15423 3911 10846 1176 Face 15424 9429 10384 10281 Face 15425 5163 3912 2955 Face 15426 5163 8113 3912 Face 15427 9354 6825 10887 Face 15428 4941 9551 11089 Face 15429 10122 7067 9614 Face 15430 1001 9794 10046 Face 15431 7235 6458 2507 Face 15432 380 3913 6958 Face 15433 2881 7018 3608 Face 15434 7044 5436 5168 Face 15435 7044 8486 7995 Face 15436 2735 4555 7248 Face 15437 6710 3110 3917 Face 15438 7809 5900 3918 Face 15439 7477 10087 10004 Face 15440 6327 470 9385 Face 15441 6327 8330 470 Face 15442 8439 6297 1638 Face 15443 443 3919 8514 Face 15444 443 97 3919 Face 15445 2141 8673 3808 Face 15446 7837 2151 5799 Face 15447 4255 3922 10413 Face 15448 92 2023 4380 Face 15449 857 8574 9110 Face 15450 11008 6384 7464 Face 15451 7428 6318 8878 Face 15452 7428 5519 6318 Face 15453 888 3839 10902 Face 15454 3924 10415 9729 Face 15455 724 3927 2283 Face 15456 3928 720 2153 Face 15457 9142 9201 3827 Face 15458 4311 281 3929 Face 15459 1388 9759 2500 Face 15460 1388 7477 9759 Face 15461 9084 5924 10685 Face 15462 603 3931 3881 Face 15463 603 1906 3931 Face 15464 5017 9259 8739 Face 15465 10663 1087 1779 Face 15466 10663 4840 1087 Face 15467 1100 1946 134 Face 15468 9508 3295 5368 Face 15469 9489 7017 3515 Face 15470 9489 955 7017 Face 15471 1436 7331 1999 Face 15472 4999 9511 6315 Face 15473 10564 1728 4547 Face 15474 1058 8781 3935 Face 15475 7720 1949 831 Face 15476 7720 9255 1949 Face 15477 10284 6562 6627 Face 15478 7880 2398 8599 Face 15479 7880 264 2398 Face 15480 4845 5957 3144 Face 15481 23 6722 10074 Face 15482 23 8309 6722 Face 15483 551 299 2971 Face 15484 4798 446 6345 Face 15485 2302 3192 2414 Face 15486 1490 8084 1748 Face 15487 1490 10548 8084 Face 15488 10430 8249 4436 Face 15489 5380 3518 1231 Face 15490 7657 5400 3153 Face 15491 3977 4940 3937 Face 15492 1379 9965 6082 Face 15493 1095 538 5825 Face 15494 1095 10213 538 Face 15495 4756 1677 2314 Face 15496 2200 9848 7182 Face 15497 10113 10088 1214 Face 15498 440 9202 678 Face 15499 440 5937 9202 Face 15500 570 7320 1583 Face 15501 1583 2032 6114 Face 15502 443 8446 3941 Face 15503 500 5439 4740 Face 15504 9219 3942 9539 Face 15505 9630 838 1045 Face 15506 1882 1325 8078 Face 15507 5224 4373 7619 Face 15508 265 1724 3345 Face 15509 9355 3826 9592 Face 15510 7639 2175 3682 Face 15511 8283 8061 3945 Face 15512 1990 3231 7601 Face 15513 9358 5908 7639 Face 15514 1449 5530 7260 Face 15515 2998 10410 5415 Face 15516 7296 6979 3952 Face 15517 8167 3953 9029 Face 15518 8167 813 3953 Face 15519 9222 5291 7814 Face 15520 1807 449 3954 Face 15521 8370 3956 5218 Face 15522 8370 7907 3956 Face 15523 9736 8502 8705 Face 15524 591 7821 415 Face 15525 938 2380 5987 Face 15526 2155 8645 7472 Face 15527 10084 9346 869 Face 15528 10084 6770 9346 Face 15529 6855 3958 10806 Face 15530 6855 6718 3958 Face 15531 7563 10576 3101 Face 15532 2169 8758 6320 Face 15533 1500 2342 2279 Face 15534 9128 4500 3959 Face 15535 1240 8300 7462 Face 15536 3722 3962 849 Face 15537 3722 1911 3962 Face 15538 10074 2170 3263 Face 15539 7747 1844 3964 Face 15540 9284 5519 9500 Face 15541 3965 2493 8423 Face 15542 5052 2068 8497 Face 15543 8200 3306 7082 Face 15544 8200 648 3306 Face 15545 2991 3938 2695 Face 15546 9304 4573 3695 Face 15547 8212 2121 3969 Face 15548 124 3970 3971 Face 15549 675 3946 5128 Face 15550 7446 4770 4393 Face 15551 8991 7304 3974 Face 15552 1268 7796 3976 Face 15553 4577 9200 10376 Face 15554 6172 6023 3075 Face 15555 6251 2484 7703 Face 15556 1182 7697 1063 Face 15557 6065 6064 5055 Face 15558 1689 2200 643 Face 15559 6743 1503 3984 Face 15560 187 3985 10391 Face 15561 7641 10086 6932 Face 15562 8462 8882 10140 Face 15563 5797 8088 8367 Face 15564 724 3167 3927 Face 15565 5067 6274 885 Face 15566 2517 9973 10812 Face 15567 8685 10098 7893 Face 15568 8685 9988 10098 Face 15569 2609 464 1851 Face 15570 558 9873 3992 Face 15571 5120 5461 3992 Face 15572 9548 10861 4857 Face 15573 6690 8726 9624 Face 15574 1968 4235 3997 Face 15575 7663 4881 3998 Face 15576 4000 484 2408 Face 15577 5814 4002 8491 Face 15578 1266 8302 4002 Face 15579 1682 4534 7555 Face 15580 1682 9828 4534 Face 15581 4221 5632 7392 Face 15582 997 998 4003 Face 15583 6246 7782 9592 Face 15584 6246 773 7782 Face 15585 8039 868 6757 Face 15586 10288 1199 2073 Face 15587 7671 5157 10184 Face 15588 7188 421 8742 Face 15589 7188 2171 421 Face 15590 1933 6418 10489 Face 15591 1777 8322 779 Face 15592 1777 9324 8322 Face 15593 9188 1171 7010 Face 15594 4006 10922 7323 Face 15595 1418 641 9720 Face 15596 1544 10489 9575 Face 15597 3191 1901 3820 Face 15598 6557 6969 1063 Face 15599 976 1669 4011 Face 15600 61 8024 199 Face 15601 61 6114 8024 Face 15602 252 5008 4013 Face 15603 260 8488 8771 Face 15604 8436 6222 8581 Face 15605 3117 4299 4016 Face 15606 3460 7167 8700 Face 15607 4017 8591 6590 Face 15608 4018 3768 11067 Face 15609 1147 4019 10418 Face 15610 1147 1508 4019 Face 15611 3783 10946 10820 Face 15612 6332 10695 5245 Face 15613 6656 6148 4022 Face 15614 9321 10380 659 Face 15615 9321 3066 10380 Face 15616 6687 1413 9400 Face 15617 529 5566 3699 Face 15618 529 9440 5566 Face 15619 1710 2414 4245 Face 15620 160 1802 3964 Face 15621 160 3338 1802 Face 15622 6097 2916 573 Face 15623 2505 6768 5658 Face 15624 9831 330 4084 Face 15625 9831 5132 330 Face 15626 7578 8458 10333 Face 15627 3653 5437 860 Face 15628 1829 3744 9731 Face 15629 815 8815 5725 Face 15630 5909 10780 6412 Face 15631 4453 710 10433 Face 15632 7916 1176 4030 Face 15633 322 7940 10006 Face 15634 322 3509 7940 Face 15635 4865 10437 8305 Face 15636 9241 5531 7673 Face 15637 3611 5262 8899 Face 15638 3611 6777 5262 Face 15639 6537 9037 6924 Face 15640 120 4034 8566 Face 15641 4034 120 2455 Face 15642 476 4037 3029 Face 15643 4444 9114 4305 Face 15644 11103 2916 6097 Face 15645 1007 9237 7711 Face 15646 1163 6864 2490 Face 15647 3499 1693 11103 Face 15648 6290 9228 3669 Face 15649 1195 4040 8034 Face 15650 1195 10129 4040 Face 15651 23 5051 8309 Face 15652 7457 9286 7707 Face 15653 4115 2010 763 Face 15654 4485 6818 8299 Face 15655 9175 10711 4045 Face 15656 10454 9012 6259 Face 15657 10454 7664 9012 Face 15658 1216 6130 4047 Face 15659 9521 6558 5195 Face 15660 1764 3131 9884 Face 15661 9587 10531 9427 Face 15662 4993 7473 4051 Face 15663 10773 9329 7851 Face 15664 9969 4586 3233 Face 15665 4756 2314 9420 Face 15666 8336 2795 4052 Face 15667 9495 2999 4054 Face 15668 3706 2125 5133 Face 15669 1236 10855 6352 Face 15670 1236 7659 10855 Face 15671 7282 1562 10335 Face 15672 7282 4022 1562 Face 15673 739 1882 5914 Face 15674 739 4079 1882 Face 15675 222 6068 1167 Face 15676 222 10431 6068 Face 15677 666 1823 2431 Face 15678 318 1555 8510 Face 15679 318 879 1555 Face 15680 6380 9685 9775 Face 15681 6380 1414 9685 Face 15682 3580 4715 9570 Face 15683 1202 1032 2945 Face 15684 1202 4024 1032 Face 15685 6814 7018 6514 Face 15686 3600 2812 3339 Face 15687 3600 1845 2812 Face 15688 1633 4056 2464 Face 15689 1633 8911 4056 Face 15690 4057 55 789 Face 15691 4077 6171 1947 Face 15692 10014 8620 6419 Face 15693 1650 4060 8109 Face 15694 1245 3092 104 Face 15695 1345 1975 3399 Face 15696 1345 2518 1975 Face 15697 1157 4062 1310 Face 15698 1157 6609 4062 Face 15699 1463 1789 7570 Face 15700 4438 234 10017 Face 15701 4063 11060 349 Face 15702 5793 5558 2465 Face 15703 1022 7102 7341 Face 15704 8270 6617 7605 Face 15705 9033 3255 8696 Face 15706 10527 8251 8731 Face 15707 10728 2261 9013 Face 15708 10728 8240 2261 Face 15709 9331 431 10865 Face 15710 10119 10239 4068 Face 15711 9995 10338 10080 Face 15712 9473 7034 3347 Face 15713 2436 1087 2900 Face 15714 110 10397 4070 Face 15715 10841 9208 127 Face 15716 9665 4071 5710 Face 15717 3538 8175 10389 Face 15718 4074 3158 10477 Face 15719 10826 2751 1054 Face 15720 8517 1181 10775 Face 15721 4202 4080 5348 Face 15722 9750 1631 4083 Face 15723 9750 4083 378 Face 15724 330 6361 4084 Face 15725 8331 6167 4918 Face 15726 3956 7907 10064 Face 15727 3240 5687 3005 Face 15728 3240 6313 5687 Face 15729 6445 6339 2249 Face 15730 8740 10465 809 Face 15731 10151 3481 6445 Face 15732 77 2431 3707 Face 15733 9354 3684 4086 Face 15734 6113 4087 10257 Face 15735 6113 7680 4087 Face 15736 2027 7567 4089 Face 15737 1716 8014 4090 Face 15738 10406 6384 1073 Face 15739 10406 10302 6384 Face 15740 998 10370 959 Face 15741 998 10607 10370 Face 15742 8198 4092 8351 Face 15743 8644 557 3775 Face 15744 4812 8619 296 Face 15745 8130 4099 8491 Face 15746 7627 2225 4099 Face 15747 9127 9357 8606 Face 15748 10077 10751 3806 Face 15749 10077 5302 10751 Face 15750 10943 2405 4103 Face 15751 4028 9946 5090 Face 15752 9340 4105 5428 Face 15753 2432 1946 1100 Face 15754 9045 4106 10084 Face 15755 9045 5381 4106 Face 15756 8647 3049 5504 Face 15757 5792 7579 10677 Face 15758 2863 5280 10635 Face 15759 5852 4089 4109 Face 15760 4110 10998 2552 Face 15761 10998 4110 808 Face 15762 5840 8916 9887 Face 15763 6062 6916 10804 Face 15764 4903 2469 7062 Face 15765 2609 1851 4114 Face 15766 948 5187 285 Face 15767 1764 10422 9654 Face 15768 5800 7007 2926 Face 15769 4118 4612 1424 Face 15770 4060 1260 4118 Face 15771 3742 9262 8979 Face 15772 4119 329 691 Face 15773 930 8466 1493 Face 15774 10047 4533 8466 Face 15775 686 8380 3835 Face 15776 686 5581 8380 Face 15777 149 4008 8222 Face 15778 6906 4121 5940 Face 15779 978 611 1365 Face 15780 6376 6544 4123 Face 15781 7724 2348 4125 Face 15782 307 9705 8548 Face 15783 311 10044 10967 Face 15784 622 4127 10144 Face 15785 5614 8844 4128 Face 15786 1552 2680 4129 Face 15787 9702 9644 8272 Face 15788 3706 554 4130 Face 15789 6636 28 2975 Face 15790 7729 808 5366 Face 15791 10498 4131 6498 Face 15792 10498 9805 4131 Face 15793 9812 4133 7179 Face 15794 9812 2188 4133 Face 15795 1351 1323 9574 Face 15796 7788 607 6873 Face 15797 3546 1292 7312 Face 15798 4853 3577 9167 Face 15799 6828 10894 3561 Face 15800 6828 730 10894 Face 15801 6585 4697 9296 Face 15802 7816 11027 2821 Face 15803 1156 7216 2983 Face 15804 5341 4136 5608 Face 15805 6313 10828 4136 Face 15806 7220 10888 432 Face 15807 6807 2300 10491 Face 15808 7528 1257 1040 Face 15809 707 4137 4624 Face 15810 4605 6810 5820 Face 15811 474 9029 3953 Face 15812 1993 4140 317 Face 15813 7537 3859 6823 Face 15814 1682 4141 7193 Face 15815 1682 7555 4141 Face 15816 7383 8307 6503 Face 15817 5978 660 4144 Face 15818 7071 4145 2454 Face 15819 2113 3913 8788 Face 15820 4014 8994 7855 Face 15821 4014 2244 8994 Face 15822 933 10221 10423 Face 15823 8714 10284 4688 Face 15824 7638 10471 5263 Face 15825 1752 1688 8552 Face 15826 2118 1433 4152 Face 15827 5274 3867 972 Face 15828 10340 10002 3842 Face 15829 7531 6772 4155 Face 15830 8432 5790 1343 Face 15831 1343 5790 8551 Face 15832 10644 4157 5732 Face 15833 2634 10119 7077 Face 15834 7400 3826 4158 Face 15835 575 2755 4985 Face 15836 1812 7776 2038 Face 15837 979 4657 8732 Face 15838 4314 7727 5393 Face 15839 7237 8314 5972 Face 15840 11103 5190 11019 Face 15841 3007 8967 6154 Face 15842 4693 3314 6083 Face 15843 692 2856 3261 Face 15844 9604 5363 2239 Face 15845 4451 2102 9757 Face 15846 2102 4451 10316 Face 15847 4169 6478 9716 Face 15848 4169 10347 6478 Face 15849 2613 4170 3458 Face 15850 2613 1536 4170 Face 15851 8577 1847 3550 Face 15852 4171 2735 4870 Face 15853 6371 5074 10364 Face 15854 7372 897 7403 Face 15855 8156 1634 897 Face 15856 2143 9382 8398 Face 15857 3072 568 4176 Face 15858 8185 3658 1838 Face 15859 7762 4178 9449 Face 15860 7762 9604 4178 Face 15861 450 4179 5625 Face 15862 450 3195 4179 Face 15863 8202 4182 9348 Face 15864 2218 9394 6208 Face 15865 7287 7523 8431 Face 15866 8381 9159 6664 Face 15867 5076 7301 4184 Face 15868 8689 4185 1806 Face 15869 8689 230 4185 Face 15870 1789 1463 6231 Face 15871 759 4188 4987 Face 15872 6464 1476 5917 Face 15873 4654 8489 1476 Face 15874 4190 7343 10655 Face 15875 6820 8955 8381 Face 15876 10374 1050 7658 Face 15877 10374 8990 1050 Face 15878 7191 9127 4192 Face 15879 9979 10462 4193 Face 15880 4944 5314 4194 Face 15881 10202 10673 7034 Face 15882 166 4195 4055 Face 15883 8304 7947 4196 Face 15884 2447 1955 4197 Face 15885 4658 2554 4199 Face 15886 419 8785 4454 Face 15887 7330 4446 4203 Face 15888 6077 4204 4874 Face 15889 11013 4546 51 Face 15890 11013 548 4546 Face 15891 262 5955 9562 Face 15892 262 4256 5955 Face 15893 262 10179 4256 Face 15894 4996 4363 5480 Face 15895 3277 238 8114 Face 15896 4229 6571 5213 Face 15897 10781 7438 8622 Face 15898 4352 11045 4207 Face 15899 2779 10490 2061 Face 15900 2779 4943 10490 Face 15901 5491 4208 9852 Face 15902 5491 10691 4208 Face 15903 964 6563 2220 Face 15904 555 2033 4210 Face 15905 8222 4211 6538 Face 15906 8222 237 4211 Face 15907 8357 5589 2167 Face 15908 7759 3698 7926 Face 15909 7600 7916 4030 Face 15910 196 9958 9468 Face 15911 432 10888 5148 Face 15912 9490 175 249 Face 15913 653 4215 143 Face 15914 4888 2109 974 Face 15915 5248 10443 1571 Face 15916 8486 7643 2115 Face 15917 10402 4801 4218 Face 15918 5186 853 4220 Face 15919 2224 2823 6317 Face 15920 2224 9863 2823 Face 15921 5873 3666 3200 Face 15922 7559 4459 8656 Face 15923 1335 2525 4222 Face 15924 9319 1640 3213 Face 15925 9222 4390 1242 Face 15926 9222 1704 4390 Face 15927 4622 4223 10926 Face 15928 4622 7088 4223 Face 15929 8701 5587 3058 Face 15930 3894 3443 7345 Face 15931 4229 5213 2044 Face 15932 7962 8689 1859 Face 15933 4589 4231 4811 Face 15934 4589 4656 4231 Face 15935 4232 8659 10144 Face 15936 4232 536 8659 Face 15937 4232 9916 536 Face 15938 4232 5896 9916 Face 15939 9933 7038 10572 Face 15940 10636 7345 8561 Face 15941 7198 4948 4234 Face 15942 9295 8905 7888 Face 15943 5369 11107 4235 Face 15944 3949 4356 4561 Face 15945 490 6910 6589 Face 15946 467 10731 8628 Face 15947 10108 882 4236 Face 15948 854 10539 2422 Face 15949 4399 8161 9989 Face 15950 6833 4238 1078 Face 15951 6833 3319 4238 Face 15952 370 4239 8959 Face 15953 370 2334 4239 Face 15954 11010 9236 11050 Face 15955 4325 4242 7250 Face 15956 4325 9987 4242 Face 15957 10764 4244 209 Face 15958 9930 10764 3822 Face 15959 9930 4244 10764 Face 15960 4222 3235 1335 Face 15961 8093 4927 1751 Face 15962 5234 4245 3445 Face 15963 7199 9854 7709 Face 15964 7199 8822 9854 Face 15965 4247 9622 730 Face 15966 4617 4959 6952 Face 15967 1191 4249 4411 Face 15968 1191 7060 4249 Face 15969 3822 7215 9803 Face 15970 9332 4252 277 Face 15971 6970 4067 10514 Face 15972 930 10047 8466 Face 15973 930 5268 10047 Face 15974 7599 6277 7225 Face 15975 7109 9950 4253 Face 15976 5753 4678 8323 Face 15977 1308 1549 3606 Face 15978 2084 7691 10003 Face 15979 1613 9298 6301 Face 15980 1613 2072 9298 Face 15981 3374 6215 3483 Face 15982 10798 4255 4839 Face 15983 10798 3922 4255 Face 15984 1866 866 2744 Face 15985 5723 8236 7569 Face 15986 79 8711 4257 Face 15987 3044 795 4259 Face 15988 3456 10206 4640 Face 15989 6860 6625 9906 Face 15990 633 5220 4261 Face 15991 6590 8591 7336 Face 15992 6466 4263 3217 Face 15993 6466 4332 4263 Face 15994 8604 488 1681 Face 15995 488 7447 2024 Face 15996 175 642 578 Face 15997 8610 4473 2951 Face 15998 321 1453 4824 Face 15999 3082 7351 3560 Face 16000 3560 8580 4266 Face 16001 6775 8779 7248 Face 16002 1934 5531 8779 Face 16003 1018 4267 2768 Face 16004 1018 8920 4267 Face 16005 2000 6980 5050 Face 16006 4494 3133 7149 Face 16007 9719 8682 8303 Face 16008 8790 4272 9320 Face 16009 3752 2749 5230 Face 16010 8901 10599 4661 Face 16011 8901 2184 10599 Face 16012 6287 9578 7377 Face 16013 1222 286 10255 Face 16014 9733 10948 2560 Face 16015 6470 1458 4276 Face 16016 3092 4278 1711 Face 16017 3092 3723 4278 Face 16018 7065 9823 445 Face 16019 7351 4280 3560 Face 16020 7351 2665 4280 Face 16021 7147 6275 4027 Face 16022 7194 10581 4677 Face 16023 7194 1382 10581 Face 16024 9175 9392 4281 Face 16025 6292 4282 9137 Face 16026 6292 460 4282 Face 16027 6991 5969 2745 Face 16028 6991 10893 5969 Face 16029 10753 7258 818 Face 16030 4283 10229 4956 Face 16031 4283 3686 10229 Face 16032 1454 3947 3737 Face 16033 3726 1169 6928 Face 16034 3726 7239 1169 Face 16035 4957 4286 3489 Face 16036 4957 2260 4286 Face 16037 393 4287 10441 Face 16038 10659 4107 6417 Face 16039 2286 4096 4572 Face 16040 507 4290 5968 Face 16041 507 7334 4290 Face 16042 3747 4177 6985 Face 16043 8637 4291 4265 Face 16044 8637 8859 4291 Face 16045 3028 5300 10853 Face 16046 3028 5719 5300 Face 16047 5856 4292 391 Face 16048 5856 1752 4292 Face 16049 5820 8988 2219 Face 16050 7758 551 700 Face 16051 7433 9342 4328 Face 16052 4010 1323 9116 Face 16053 8452 5174 5175 Face 16054 8452 4664 5174 Face 16055 43 2001 4298 Face 16056 3220 9799 7169 Face 16057 2995 8943 349 Face 16058 1685 9624 1313 Face 16059 10368 3433 11044 Face 16060 6253 4300 3759 Face 16061 5328 1311 4301 Face 16062 1525 4304 3393 Face 16063 1525 8409 4304 Face 16064 637 3813 7840 Face 16065 1428 1879 1959 Face 16066 5400 8229 6386 Face 16067 3679 8046 8157 Face 16068 5309 4306 722 Face 16069 5309 3188 4307 Face 16070 1550 9740 240 Face 16071 4088 2738 6433 Face 16072 4409 4309 47 Face 16073 2834 9236 4143 Face 16074 5409 3878 2062 Face 16075 280 4910 4699 Face 16076 9152 3237 3920 Face 16077 718 7815 10766 Face 16078 2398 10728 9013 Face 16079 4312 9688 10860 Face 16080 93 4312 10860 Face 16081 93 6225 4312 Face 16082 10247 10617 4313 Face 16083 4103 6803 11074 Face 16084 4103 5384 6803 Face 16085 4943 7361 10490 Face 16086 4943 8037 7361 Face 16087 50 1885 4315 Face 16088 8980 9667 7783 Face 16089 8980 4972 9667 Face 16090 6539 9768 1668 Face 16091 4318 7792 4317 Face 16092 4317 3718 4318 Face 16093 4317 1522 3718 Face 16094 3224 774 2828 Face 16095 6603 4321 5441 Face 16096 6603 1360 4321 Face 16097 4322 2694 7754 Face 16098 2799 8129 4323 Face 16099 9748 9842 3711 Face 16100 9748 188 9842 Face 16101 1588 917 4324 Face 16102 7701 10937 8690 Face 16103 11089 4327 10747 Face 16104 1833 4329 6461 Face 16105 3043 10019 1425 Face 16106 5856 9305 10552 Face 16107 5856 3986 9305 Face 16108 1446 3269 8075 Face 16109 10480 4332 7942 Face 16110 10480 5462 4332 Face 16111 3162 4754 10629 Face 16112 644 2972 7072 Face 16113 1207 8615 4336 Face 16114 5671 4338 9348 Face 16115 5671 382 4338 Face 16116 792 6652 2914 Face 16117 8159 1896 2401 Face 16118 10143 6892 8889 Face 16119 1459 1817 2349 Face 16120 1459 8155 1817 Face 16121 8082 2059 8003 Face 16122 10270 8624 8099 Face 16123 4444 4025 9114 Face 16124 7435 6926 859 Face 16125 6230 2336 4346 Face 16126 2957 4730 4347 Face 16127 6961 4683 4348 Face 16128 1984 6322 2932 Face 16129 4351 8951 6322 Face 16130 1984 4351 6322 Face 16131 7253 5208 10183 Face 16132 7253 6951 5208 Face 16133 1587 6989 4906 Face 16134 9064 5469 9231 Face 16135 2087 7197 4353 Face 16136 1474 203 8900 Face 16137 10967 6832 311 Face 16138 4164 3456 1253 Face 16139 1440 7049 6340 Face 16140 8365 4354 10752 Face 16141 4355 106 7172 Face 16142 1450 7417 6652 Face 16143 8519 4356 9796 Face 16144 8519 8441 4356 Face 16145 769 4357 1692 Face 16146 769 1135 4357 Face 16147 8677 3670 7195 Face 16148 5328 9722 9955 Face 16149 2873 8987 1698 Face 16150 10190 6203 10034 Face 16151 8071 8694 3162 Face 16152 7784 444 7250 Face 16153 10815 5975 10444 Face 16154 1563 7303 9794 Face 16155 7096 684 9423 Face 16156 898 1061 7451 Face 16157 5988 4360 9773 Face 16158 117 4361 5261 Face 16159 117 3091 4361 Face 16160 2931 4841 7742 Face 16161 3297 5897 6654 Face 16162 8743 2515 8069 Face 16163 9797 10012 1979 Face 16164 5594 4363 4429 Face 16165 5594 4229 4363 Face 16166 4366 3372 5037 Face 16167 4274 2346 10967 Face 16168 5241 6270 101 Face 16169 9787 7460 3145 Face 16170 3417 217 2648 Face 16171 1754 7643 8486 Face 16172 1968 5369 4235 Face 16173 39 8576 4371 Face 16174 8886 6704 1822 Face 16175 8070 8886 9773 Face 16176 8070 6705 8886 Face 16177 4038 9617 5815 Face 16178 4038 8462 9617 Face 16179 7097 10875 9665 Face 16180 7097 2404 10875 Face 16181 7742 1532 8627 Face 16182 8780 4374 5051 Face 16183 8780 6128 4374 Face 16184 5648 7790 2941 Face 16185 2621 296 7791 Face 16186 4194 8885 4375 Face 16187 2794 5236 6420 Face 16188 3768 4378 6921 Face 16189 3768 7808 4378 Face 16190 1055 3657 9501 Face 16191 2080 9345 3573 Face 16192 2080 10536 4379 Face 16193 4362 4383 6773 Face 16194 8092 9267 3315 Face 16195 7237 6971 2864 Face 16196 402 6809 7012 Face 16197 6534 3318 4386 Face 16198 2622 9133 4389 Face 16199 91 547 1868 Face 16200 91 8574 547 Face 16201 2471 3739 4737 Face 16202 5864 4392 5334 Face 16203 5864 9118 4392 Face 16204 510 6488 10324 Face 16205 5805 10358 7035 Face 16206 5805 681 10358 Face 16207 10109 2786 4231 Face 16208 9788 4394 2763 Face 16209 10352 4816 5977 Face 16210 7617 2516 4226 Face 16211 7617 3698 2516 Face 16212 225 4396 1899 Face 16213 4428 7024 4396 Face 16214 225 4428 4396 Face 16215 7599 3284 7504 Face 16216 7599 835 3284 Face 16217 6701 8037 5150 Face 16218 2601 10274 9447 Face 16219 5055 3198 10551 Face 16220 5055 7522 3198 Face 16221 8416 8088 5797 Face 16222 10562 3156 4397 Face 16223 7204 8485 3307 Face 16224 7204 8110 8485 Face 16225 6575 4398 3038 Face 16226 4869 2980 4398 Face 16227 10447 3412 3383 Face 16228 9980 8126 7973 Face 16229 9980 9601 8126 Face 16230 10278 779 2588 Face 16231 1725 4156 4405 Face 16232 1002 4406 3679 Face 16233 1002 9155 4406 Face 16234 5768 3695 4407 Face 16235 779 10278 1777 Face 16236 2985 4408 4304 Face 16237 2985 1293 4408 Face 16238 593 4410 6437 Face 16239 8906 2834 8441 Face 16240 8906 5424 2834 Face 16241 599 8687 4413 Face 16242 10388 4177 7185 Face 16243 6268 5715 4414 Face 16244 5609 9485 3943 Face 16245 7149 1988 771 Face 16246 990 5942 6281 Face 16247 990 3715 5942 Face 16248 8713 2432 1100 Face 16249 9117 10637 5408 Face 16250 9117 5430 10637 Face 16251 4416 4415 8518 Face 16252 4416 6328 4415 Face 16253 1099 2318 6690 Face 16254 7799 2776 8152 Face 16255 5573 8164 825 Face 16256 1537 4417 10156 Face 16257 1537 344 4417 Face 16258 267 9035 8376 Face 16259 4420 8663 1517 Face 16260 4420 10008 8663 Face 16261 8369 7168 4422 Face 16262 5183 4675 3286 Face 16263 4190 139 6646 Face 16264 4760 6239 6570 Face 16265 6364 10805 873 Face 16266 6364 9129 10805 Face 16267 754 2612 2194 Face 16268 275 10977 4426 Face 16269 1633 9596 6170 Face 16270 4547 4429 4996 Face 16271 41 3640 10168 Face 16272 3498 3640 41 Face 16273 1405 6047 7344 Face 16274 1864 4430 8964 Face 16275 1864 4628 4430 Face 16276 278 8147 4524 Face 16277 278 5098 8147 Face 16278 1923 4431 6440 Face 16279 1923 149 4431 Face 16280 4433 4432 6521 Face 16281 4433 6956 4432 Face 16282 5074 4435 9483 Face 16283 1545 9339 6015 Face 16284 256 10330 1717 Face 16285 10550 6802 10330 Face 16286 9258 4439 5148 Face 16287 434 10272 2533 Face 16288 1504 7331 592 Face 16289 954 10033 2054 Face 16290 8870 251 102 Face 16291 8870 1739 251 Face 16292 5217 7565 5974 Face 16293 1694 649 6712 Face 16294 1694 5857 649 Face 16295 2316 7925 4443 Face 16296 5474 11059 7721 Face 16297 8301 8865 6711 Face 16298 5374 7918 6700 Face 16299 4445 8903 1554 Face 16300 10187 3814 9817 Face 16301 7983 10542 10580 Face 16302 7983 9684 10542 Face 16303 8972 3155 58 Face 16304 3960 5207 3221 Face 16305 4829 4446 10066 Face 16306 4829 4203 4446 Face 16307 4829 9289 4447 Face 16308 9365 2362 9302 Face 16309 1574 8744 8827 Face 16310 4428 4449 6137 Face 16311 4428 225 4449 Face 16312 612 10190 4451 Face 16313 7637 9920 8309 Face 16314 5658 10366 9163 Face 16315 72 10009 5127 Face 16316 72 9350 10009 Face 16317 4455 6550 287 Face 16318 3829 4456 7569 Face 16319 3513 1501 4902 Face 16320 3513 4902 8057 Face 16321 10460 4457 4441 Face 16322 5217 5974 5682 Face 16323 1577 4165 5096 Face 16324 7559 5532 4459 Face 16325 5127 10009 4461 Face 16326 3591 4462 7678 Face 16327 1393 1963 4997 Face 16328 1393 6354 1963 Face 16329 4788 8150 7735 Face 16330 8251 4466 8329 Face 16331 8251 10527 4466 Face 16332 3647 7397 9474 Face 16333 3647 2379 7397 Face 16334 5636 3903 11085 Face 16335 8864 1405 4467 Face 16336 3598 4468 5259 Face 16337 3598 10202 4468 Face 16338 1995 6557 1063 Face 16339 1221 4469 3988 Face 16340 4123 4470 1576 Face 16341 4123 708 4470 Face 16342 8655 2096 10279 Face 16343 5727 9994 7459 Face 16344 5727 9993 9994 Face 16345 13 6425 4471 Face 16346 608 4472 3288 Face 16347 608 7209 4472 Face 16348 8610 9080 4473 Face 16349 585 7968 9030 Face 16350 8548 9673 307 Face 16351 7727 8919 8149 Face 16352 249 8311 5833 Face 16353 9505 6247 4475 Face 16354 8666 1005 9534 Face 16355 2347 4479 1515 Face 16356 2347 8672 4479 Face 16357 8524 4480 8219 Face 16358 4481 2626 4480 Face 16359 8524 4481 4480 Face 16360 8524 2626 4481 Face 16361 6533 3331 10955 Face 16362 4204 4482 6935 Face 16363 3675 4069 3080 Face 16364 602 3675 3080 Face 16365 631 4690 9160 Face 16366 6773 4188 4362 Face 16367 1783 973 2840 Face 16368 7703 8485 6251 Face 16369 1693 3499 3356 Face 16370 5942 6699 9174 Face 16371 6413 11 9618 Face 16372 6413 7165 11 Face 16373 8798 4490 2937 Face 16374 8798 5555 4490 Face 16375 8595 7991 4491 Face 16376 8211 6644 9964 Face 16377 3123 1552 4492 Face 16378 628 2627 6460 Face 16379 4492 8860 534 Face 16380 4852 6590 2638 Face 16381 8206 9157 9419 Face 16382 355 9195 3477 Face 16383 1941 1480 9702 Face 16384 8233 1073 3231 Face 16385 7665 6204 2358 Face 16386 7665 2522 6204 Face 16387 1395 1656 9238 Face 16388 74 7006 2334 Face 16389 7639 9376 9358 Face 16390 86 9697 5237 Face 16391 3880 2255 4495 Face 16392 6131 2910 4964 Face 16393 1058 3935 10056 Face 16394 1755 7089 7792 Face 16395 5596 11013 2764 Face 16396 5596 548 11013 Face 16397 6638 3671 3735 Face 16398 512 4499 2374 Face 16399 512 6804 4499 Face 16400 580 9047 10011 Face 16401 6376 4395 6544 Face 16402 5994 9313 3544 Face 16403 5994 8807 9313 Face 16404 9136 4088 6433 Face 16405 4911 10806 4501 Face 16406 4503 344 1230 Face 16407 98 83 966 Face 16408 11025 4504 3579 Face 16409 11025 10623 4504 Face 16410 8693 10275 6206 Face 16411 10405 8387 4884 Face 16412 6873 6176 4507 Face 16413 1611 7164 8935 Face 16414 1611 6457 7164 Face 16415 922 7796 10082 Face 16416 4514 6978 10688 Face 16417 37 2666 4850 Face 16418 11093 6484 2158 Face 16419 11093 1596 6484 Face 16420 8266 9322 2800 Face 16421 2734 4518 6988 Face 16422 2734 3951 4518 Face 16423 4519 8846 1799 Face 16424 3015 7133 8846 Face 16425 3015 4519 187 Face 16426 3015 8846 4519 Face 16427 2841 4437 6969 Face 16428 7111 1804 8586 Face 16429 9476 5544 4521 Face 16430 6565 2045 4522 Face 16431 1649 4078 4153 Face 16432 9137 4525 6292 Face 16433 647 4526 8005 Face 16434 647 1319 4526 Face 16435 2786 10604 3996 Face 16436 5855 9745 9984 Face 16437 9116 4529 9907 Face 16438 9116 973 4529 Face 16439 11081 2829 10130 Face 16440 1575 425 2085 Face 16441 1575 4579 425 Face 16442 10993 2058 9588 Face 16443 8196 4376 4530 Face 16444 2097 3221 4531 Face 16445 1164 5714 3111 Face 16446 1164 4689 5714 Face 16447 2598 8102 810 Face 16448 288 5354 4532 Face 16449 288 2389 10689 Face 16450 288 4532 2389 Face 16451 4700 8781 7114 Face 16452 10399 4672 2299 Face 16453 7155 4463 9903 Face 16454 3756 9858 7896 Face 16455 3756 6423 9858 Face 16456 10980 2435 10161 Face 16457 499 9599 6846 Face 16458 499 3527 9599 Face 16459 6826 4541 6765 Face 16460 5406 3375 8605 Face 16461 6674 10220 6523 Face 16462 6740 2626 7478 Face 16463 624 2468 1892 Face 16464 10970 8545 8784 Face 16465 1151 7371 4796 Face 16466 1151 9492 7371 Face 16467 10383 1568 8411 Face 16468 10383 10169 1568 Face 16469 3799 10612 8731 Face 16470 870 8754 10351 Face 16471 10519 6608 3745 Face 16472 8740 10021 10465 Face 16473 8740 5729 10021 Face 16474 2198 4545 1474 Face 16475 2198 10175 4545 Face 16476 5288 8225 10090 Face 16477 5288 10982 8225 Face 16478 5188 10638 10282 Face 16479 10616 266 9696 Face 16480 10616 294 266 Face 16481 3808 6744 5703 Face 16482 8742 2503 7188 Face 16483 4548 9099 3567 Face 16484 11094 4548 2572 Face 16485 11094 9099 4548 Face 16486 8288 8414 4549 Face 16487 10632 4551 6541 Face 16488 10632 9446 4551 Face 16489 6368 4552 9481 Face 16490 582 1502 4552 Face 16491 2085 2881 6562 Face 16492 10668 3566 4553 Face 16493 8832 4554 4336 Face 16494 8828 9576 10892 Face 16495 2082 8228 10641 Face 16496 4557 6585 4556 Face 16497 4556 680 4557 Face 16498 3079 6904 4952 Face 16499 942 4559 4303 Face 16500 942 5789 4559 Face 16501 5319 8487 4908 Face 16502 5319 4908 3261 Face 16503 1406 8575 1840 Face 16504 3004 3020 5017 Face 16505 1881 4306 5889 Face 16506 7191 371 4520 Face 16507 2001 4564 499 Face 16508 2001 43 4564 Face 16509 1275 397 2274 Face 16510 9588 4565 2406 Face 16511 3553 4566 2179 Face 16512 3553 3733 4566 Face 16513 4152 579 2371 Face 16514 7857 8520 7875 Face 16515 715 8594 2766 Face 16516 10136 9602 1877 Face 16517 8090 9657 411 Face 16518 7260 4570 617 Face 16519 2329 617 4570 Face 16520 10934 4572 4096 Face 16521 3969 4573 9304 Face 16522 3969 1487 4573 Face 16523 7707 7541 4574 Face 16524 3230 4576 6763 Face 16525 10376 7104 4577 Face 16526 425 4579 7666 Face 16527 2390 7928 4582 Face 16528 2619 2390 4582 Face 16529 8474 8645 8644 Face 16530 171 10286 4165 Face 16531 10560 4585 7222 Face 16532 3042 5673 4585 Face 16533 5599 9077 5674 Face 16534 5599 7825 9077 Face 16535 8181 4587 5343 Face 16536 8181 2802 4587 Face 16537 3444 8660 10463 Face 16538 1158 4005 4914 Face 16539 3849 9644 1480 Face 16540 247 359 3813 Face 16541 247 97 359 Face 16542 8957 6608 10519 Face 16543 6889 9935 4591 Face 16544 5268 2530 4592 Face 16545 7334 6132 5152 Face 16546 8197 547 5571 Face 16547 5735 9554 4331 Face 16548 4685 3329 10094 Face 16549 6635 4800 6353 Face 16550 9809 10538 1181 Face 16551 5579 4598 3022 Face 16552 5579 2932 4598 Face 16553 10565 4900 4599 Face 16554 980 4602 756 Face 16555 980 2349 4602 Face 16556 2190 4603 9509 Face 16557 2190 1761 4603 Face 16558 1615 10737 8929 Face 16559 6810 4605 4207 Face 16560 7385 555 6413 Face 16561 4608 10151 4607 Face 16562 4610 3129 4609 Face 16563 5463 3998 4881 Face 16564 554 3706 7653 Face 16565 3515 1 9162 Face 16566 5114 10886 6986 Face 16567 8000 3464 2555 Face 16568 8097 6510 4614 Face 16569 6608 4615 6227 Face 16570 6608 8957 4615 Face 16571 1494 7481 10336 Face 16572 6952 1114 4617 Face 16573 10084 738 7869 Face 16574 2511 9250 9242 Face 16575 4422 5358 4619 Face 16576 7842 4620 10753 Face 16577 9043 8535 10576 Face 16578 9043 3879 8535 Face 16579 10438 4588 4621 Face 16580 4622 3591 7678 Face 16581 3719 4625 10446 Face 16582 2275 4654 4626 Face 16583 7307 3872 4627 Face 16584 2817 8775 5252 Face 16585 5626 9816 2552 Face 16586 737 6679 3253 Face 16587 7023 6434 2289 Face 16588 5691 2559 4629 Face 16589 1173 7015 6812 Face 16590 10977 130 10477 Face 16591 4012 6964 1161 Face 16592 6998 6120 4083 Face 16593 4793 8460 3239 Face 16594 2795 4631 2176 Face 16595 2795 7668 4631 Face 16596 6043 5073 9276 Face 16597 6043 8907 5073 Face 16598 5926 8895 2998 Face 16599 9457 1269 4633 Face 16600 2657 4635 7358 Face 16601 2203 10540 9596 Face 16602 3772 7262 8277 Face 16603 3772 126 7262 Face 16604 10627 2506 4637 Face 16605 8301 6711 10685 Face 16606 5464 9408 4640 Face 16607 9215 2868 6378 Face 16608 1675 8433 6511 Face 16609 8106 4641 2919 Face 16610 8106 10902 4641 Face 16611 4009 2185 4642 Face 16612 1166 6659 8278 Face 16613 9751 6393 8650 Face 16614 1389 2577 4645 Face 16615 8890 1574 5944 Face 16616 1765 4646 613 Face 16617 1765 5949 4646 Face 16618 363 4647 8935 Face 16619 9839 2705 4647 Face 16620 10483 4648 3880 Face 16621 1823 10474 3095 Face 16622 3526 5737 7037 Face 16623 4298 1469 4649 Face 16624 9658 10757 4650 Face 16625 10301 7879 7139 Face 16626 7953 6504 2378 Face 16627 2038 10777 7972 Face 16628 8313 295 8536 Face 16629 5625 3939 450 Face 16630 672 7815 5203 Face 16631 672 5203 2167 Face 16632 2469 7838 4652 Face 16633 4797 2707 118 Face 16634 4797 10901 2707 Face 16635 2046 7087 2272 Face 16636 8953 1778 7142 Face 16637 8953 8314 1778 Face 16638 4654 1476 6464 Face 16639 5393 7501 4657 Face 16640 9082 3644 8509 Face 16641 5395 6759 8505 Face 16642 9629 5774 2076 Face 16643 1340 284 9001 Face 16644 2170 4659 3265 Face 16645 2170 9150 4659 Face 16646 2784 6835 6389 Face 16647 8591 4929 11030 Face 16648 8591 6509 4929 Face 16649 9231 4189 3033 Face 16650 3209 2166 6210 Face 16651 6000 7339 758 Face 16652 9396 2979 10989 Face 16653 9396 7810 2979 Face 16654 293 1294 1387 Face 16655 10590 10268 4665 Face 16656 5738 5934 4013 Face 16657 763 1726 5934 Face 16658 5994 4976 4671 Face 16659 6957 5728 6660 Face 16660 3184 5367 7549 Face 16661 3184 3746 5367 Face 16662 6395 329 1885 Face 16663 7812 3894 7345 Face 16664 129 3710 7824 Face 16665 773 8849 8533 Face 16666 7436 10972 7468 Face 16667 7496 10757 9658 Face 16668 2907 4679 3065 Face 16669 2907 7341 4679 Face 16670 7985 5773 4681 Face 16671 9765 4684 9548 Face 16672 9765 10861 4684 Face 16673 9036 1300 5450 Face 16674 6766 1904 526 Face 16675 524 9386 9337 Face 16676 524 3486 9386 Face 16677 11083 1929 3978 Face 16678 2569 3281 4686 Face 16679 7380 8173 4687 Face 16680 5714 4689 10250 Face 16681 11009 1826 2555 Face 16682 9243 357 4690 Face 16683 8147 9843 4691 Face 16684 6253 3142 2123 Face 16685 6253 3759 3142 Face 16686 3714 3537 8402 Face 16687 7454 1624 5959 Face 16688 7454 5918 1624 Face 16689 5850 1750 433 Face 16690 3316 6874 8451 Face 16691 6147 4695 7090 Face 16692 132 7416 7479 Face 16693 6796 2687 6311 Face 16694 1727 4701 8290 Face 16695 1727 4053 4701 Face 16696 4822 7596 1366 Face 16697 9654 1124 9051 Face 16698 10387 111 5396 Face 16699 210 7016 10225 Face 16700 210 1674 7016 Face 16701 1847 8577 4513 Face 16702 10677 3766 3408 Face 16703 6183 4703 5989 Face 16704 6183 8122 4703 Face 16705 5549 4705 2851 Face 16706 5549 7934 4705 Face 16707 3685 4075 10761 Face 16708 4707 8878 9929 Face 16709 255 10189 8878 Face 16710 255 8878 4707 Face 16711 7238 4710 845 Face 16712 7238 10578 4710 Face 16713 5800 7575 7007 Face 16714 2967 10409 5252 Face 16715 8323 2494 2051 Face 16716 3755 5147 3097 Face 16717 8632 9234 9414 Face 16718 7890 3036 10351 Face 16719 4758 7591 3421 Face 16720 4758 9489 7591 Face 16721 2708 2798 4713 Face 16722 3830 8397 4376 Face 16723 6565 4714 2045 Face 16724 6565 8112 4714 Face 16725 2868 9215 4716 Face 16726 4245 2414 435 Face 16727 6369 9436 9333 Face 16728 9884 4706 5556 Face 16729 1214 6808 10113 Face 16730 1214 6841 6808 Face 16731 605 9413 4591 Face 16732 605 6869 9413 Face 16733 56 1291 5102 Face 16734 892 4722 2646 Face 16735 4121 10866 9025 Face 16736 4121 6906 10866 Face 16737 8867 2922 8647 Face 16738 5778 127 9208 Face 16739 7426 4725 10195 Face 16740 7426 169 4725 Face 16741 9724 6845 2174 Face 16742 649 2424 6712 Face 16743 10789 1145 4819 Face 16744 11014 4439 4727 Face 16745 5850 5713 1750 Face 16746 5850 4498 5713 Face 16747 619 4698 4162 Face 16748 3984 3958 6743 Face 16749 2801 10559 33 Face 16750 2815 4672 7316 Face 16751 534 7704 3123 Face 16752 379 6219 1718 Face 16753 379 9782 6219 Face 16754 1183 4733 2391 Face 16755 1183 10906 4733 Face 16756 1557 4826 4738 Face 16757 3061 4740 7435 Face 16758 3061 500 4740 Face 16759 1877 10568 156 Face 16760 1877 9602 10568 Face 16761 1242 7717 7344 Face 16762 1242 4390 7717 Face 16763 1277 8265 373 Face 16764 3508 1235 4742 Face 16765 8793 3425 2956 Face 16766 8793 4562 3425 Face 16767 2839 775 4744 Face 16768 462 9399 4513 Face 16769 462 1841 9399 Face 16770 1528 6213 4745 Face 16771 6986 4746 886 Face 16772 4206 11028 6970 Face 16773 3959 4748 8470 Face 16774 7443 3738 4749 Face 16775 6058 2726 4750 Face 16776 2458 4752 8777 Face 16777 2458 1983 4752 Face 16778 7772 2623 11064 Face 16779 840 9469 3776 Face 16780 2996 7524 5095 Face 16781 2996 7512 7524 Face 16782 6795 9610 4757 Face 16783 8198 754 2194 Face 16784 1381 3 8326 Face 16785 212 6239 4760 Face 16786 122 7905 8109 Face 16787 122 9511 7905 Face 16788 1810 2901 8347 Face 16789 7543 7888 260 Face 16790 9185 84 8352 Face 16791 2271 338 4766 Face 16792 6282 2246 7651 Face 16793 9570 3208 4767 Face 16794 5689 10915 3114 Face 16795 282 3861 4769 Face 16796 10404 10727 3047 Face 16797 2411 5390 4773 Face 16798 1078 1402 169 Face 16799 862 6110 4775 Face 16800 10668 4776 7343 Face 16801 4777 8934 1713 Face 16802 9276 4778 11 Face 16803 7683 6661 5922 Face 16804 7683 6568 6661 Face 16805 6828 4779 9860 Face 16806 5114 4780 9977 Face 16807 1011 5964 4781 Face 16808 10298 7332 8490 Face 16809 2296 4782 1560 Face 16810 2296 10966 4782 Face 16811 5785 10596 5495 Face 16812 2318 1099 10610 Face 16813 4715 2868 4716 Face 16814 5234 6292 4783 Face 16815 4774 3934 7449 Face 16816 904 8253 2762 Face 16817 9794 2990 9598 Face 16818 6888 8390 10789 Face 16819 6888 3652 8390 Face 16820 990 11024 1167 Face 16821 990 5332 11024 Face 16822 5025 8515 843 Face 16823 5025 10255 8515 Face 16824 2077 6922 5747 Face 16825 2077 8675 6922 Face 16826 10274 10800 4789 Face 16827 5021 233 318 Face 16828 5021 318 8510 Face 16829 8506 1131 1736 Face 16830 10788 1056 3271 Face 16831 8167 7646 813 Face 16832 3257 5053 4463 Face 16833 113 6441 6561 Face 16834 1758 7848 7040 Face 16835 688 6797 1845 Face 16836 7121 5020 7299 Face 16837 585 9260 6351 Face 16838 7645 9900 10770 Face 16839 9199 10326 4181 Face 16840 5676 7369 3915 Face 16841 8068 4800 6635 Face 16842 8068 289 4800 Face 16843 6375 8310 4219 Face 16844 1337 9138 6439 Face 16845 3750 4815 8096 Face 16846 3750 6062 4815 Face 16847 957 10738 1992 Face 16848 9930 8129 7281 Face 16849 3124 82 8896 Face 16850 6727 4803 9471 Face 16851 6727 8264 4803 Face 16852 3208 10170 4767 Face 16853 663 4718 4804 Face 16854 3626 8810 7505 Face 16855 5902 2626 9850 Face 16856 3720 5055 6110 Face 16857 4727 4810 1380 Face 16858 4727 1730 4810 Face 16859 10401 4747 8761 Face 16860 2474 2455 1730 Face 16861 4931 10859 2247 Face 16862 4812 3405 1 Face 16863 4812 296 3405 Face 16864 3307 8989 1723 Face 16865 3307 6712 8989 Face 16866 121 4814 9676 Face 16867 7532 4815 7648 Face 16868 3019 5699 4818 Face 16869 172 8175 9747 Face 16870 5067 8556 7409 Face 16871 5326 9936 3556 Face 16872 2019 1375 4820 Face 16873 2019 9308 1375 Face 16874 10273 10735 8623 Face 16875 10273 3539 10735 Face 16876 8643 8137 4821 Face 16877 2629 4822 4344 Face 16878 2629 7596 4822 Face 16879 4989 4133 2188 Face 16880 11107 9563 4825 Face 16881 5321 4828 7036 Face 16882 5321 3816 4828 Face 16883 8415 9629 4830 Face 16884 2254 4412 6748 Face 16885 4423 6399 9892 Face 16886 8221 7592 8755 Face 16887 4833 5457 4834 Face 16888 1619 683 10806 Face 16889 1619 11086 683 Face 16890 2492 7310 8790 Face 16891 4837 862 4775 Face 16892 4837 10294 862 Face 16893 664 8741 4842 Face 16894 3914 8158 6753 Face 16895 7897 8284 1957 Face 16896 10070 8934 7766 Face 16897 1897 4843 6346 Face 16898 1897 3746 4843 Face 16899 8083 9684 4844 Face 16900 7135 1130 4846 Face 16901 3623 7667 4847 Face 16902 2332 5831 1746 Face 16903 817 2332 1746 Face 16904 4531 4124 569 Face 16905 4531 9837 4124 Face 16906 2547 11048 10916 Face 16907 8061 9227 3945 Face 16908 8061 1025 9227 Face 16909 6402 4849 7526 Face 16910 6402 2572 4849 Face 16911 963 19 2205 Face 16912 963 5293 19 Face 16913 3877 5470 10818 Face 16914 6706 7838 9454 Face 16915 1377 9464 6944 Face 16916 2342 3066 9321 Face 16917 6680 7879 10301 Face 16918 3197 7949 4855 Face 16919 8668 4858 2411 Face 16920 8668 9130 4858 Face 16921 8544 10125 8081 Face 16922 415 6373 4859 Face 16923 1141 4861 10480 Face 16924 6542 4821 3533 Face 16925 5621 1085 4862 Face 16926 748 865 4863 Face 16927 5964 4611 4864 Face 16928 4397 4476 4455 Face 16929 8324 513 7418 Face 16930 5548 4411 5712 Face 16931 1343 6010 10241 Face 16932 8309 4866 4064 Face 16933 8309 4374 4866 Face 16934 8251 10872 4867 Face 16935 5040 4868 425 Face 16936 5040 10188 1816 Face 16937 5040 425 10188 Face 16938 6575 4869 4398 Face 16939 6575 1289 4869 Face 16940 7935 4768 9014 Face 16941 7853 2487 10919 Face 16942 8298 3693 4871 Face 16943 10361 4872 1162 Face 16944 5079 3924 4872 Face 16945 949 6945 7750 Face 16946 949 5170 6945 Face 16947 471 6324 10986 Face 16948 10690 6165 5060 Face 16949 11011 10378 4873 Face 16950 5590 4874 4204 Face 16951 5590 2924 4874 Face 16952 4875 5512 9267 Face 16953 4875 6069 5269 Face 16954 5269 5512 4875 Face 16955 624 1133 10096 Face 16956 2026 5411 9388 Face 16957 2026 3588 5411 Face 16958 2156 3574 8396 Face 16959 7243 4877 9383 Face 16960 10030 3575 4877 Face 16961 8039 9016 7140 Face 16962 107 10757 8571 Face 16963 107 4650 10757 Face 16964 8724 3939 11105 Face 16965 4109 4770 4878 Face 16966 1225 4741 5380 Face 16967 6748 4882 6343 Face 16968 7484 10099 10614 Face 16969 6819 4884 3840 Face 16970 6819 7665 4884 Face 16971 3675 4400 4885 Face 16972 6477 4888 8404 Face 16973 8319 10839 9882 Face 16974 5998 10839 8319 Face 16975 6251 4890 8124 Face 16976 6251 5744 4890 Face 16977 1472 9150 9920 Face 16978 979 4314 4657 Face 16979 3788 9997 2002 Face 16980 8141 4342 10727 Face 16981 22 6663 1585 Face 16982 5499 4893 3492 Face 16983 5499 1966 4893 Face 16984 5915 2295 1410 Face 16985 8062 7499 1239 Face 16986 3891 7499 8062 Face 16987 6159 2808 1059 Face 16988 10808 10851 5874 Face 16989 1734 5381 9045 Face 16990 1734 682 5381 Face 16991 3417 1731 217 Face 16992 7298 10651 9607 Face 16993 4985 1821 3337 Face 16994 4616 11069 3095 Face 16995 214 4896 8278 Face 16996 214 8617 4896 Face 16997 8254 6658 2569 Face 16998 9149 10796 9927 Face 16999 10457 60 6426 Face 17000 10457 2708 60 Face 17001 3399 4901 6637 Face 17002 3399 6878 4901 Face 17003 2701 9771 7280 Face 17004 3228 8988 366 Face 17005 525 6278 7523 Face 17006 5989 7799 2104 Face 17007 4906 8133 5423 Face 17008 7928 7270 180 Face 17009 9641 3296 3013 Face 17010 1211 10016 852 Face 17011 96 8463 3541 Face 17012 5431 9273 2105 Face 17013 5431 10810 9273 Face 17014 6968 10488 999 Face 17015 6968 10309 10488 Face 17016 5314 4909 4194 Face 17017 5314 5076 4909 Face 17018 4501 3786 4911 Face 17019 8029 6001 4484 Face 17020 8029 8709 6001 Face 17021 4914 2415 4634 Face 17022 6006 1241 4007 Face 17023 734 7887 9729 Face 17024 10485 2134 6717 Face 17025 10485 4624 2134 Face 17026 1180 1177 7157 Face 17027 7483 7748 3341 Face 17028 9024 4916 1088 Face 17029 9024 724 4916 Face 17030 8689 4112 4917 Face 17031 8331 4918 6315 Face 17032 7280 5389 8340 Face 17033 715 2766 8792 Face 17034 1150 6361 10864 Face 17035 1150 5191 6361 Face 17036 475 2081 9741 Face 17037 9909 10608 381 Face 17038 9909 4827 10608 Face 17039 9983 8980 7783 Face 17040 32 10219 8983 Face 17041 2723 10957 9041 Face 17042 641 3440 6098 Face 17043 10282 6207 4923 Face 17044 8859 3491 5359 Face 17045 5831 7045 1659 Face 17046 5831 1659 9079 Face 17047 1173 170 5615 Face 17048 2190 610 2807 Face 17049 4303 4927 8093 Face 17050 4303 439 4927 Face 17051 7629 9252 4832 Face 17052 7629 5836 9252 Face 17053 5490 6505 4934 Face 17054 2046 4365 7200 Face 17055 10046 10075 11066 Face 17056 6500 9062 3381 Face 17057 3622 121 8717 Face 17058 3622 10089 121 Face 17059 10638 8230 10282 Face 17060 3000 3769 4937 Face 17061 6463 10161 2435 Face 17062 5232 10367 862 Face 17063 509 1579 8749 Face 17064 4949 5832 6701 Face 17065 1868 547 8197 Face 17066 631 6907 9243 Face 17067 3532 4952 3531 Face 17068 3532 8921 4952 Face 17069 2162 9534 4953 Face 17070 5740 3003 11104 Face 17071 8461 2404 4954 Face 17072 4956 2595 3515 Face 17073 10022 753 2056 Face 17074 8593 2590 6472 Face 17075 7542 2789 7543 Face 17076 7542 5898 2789 Face 17077 2789 7888 7543 Face 17078 4958 9108 5293 Face 17079 4958 6724 9108 Face 17080 4959 1392 6952 Face 17081 5841 4960 548 Face 17082 5841 10209 4960 Face 17083 7185 8162 10209 Face 17084 7185 3181 8162 Face 17085 813 4962 10321 Face 17086 11110 732 4963 Face 17087 2140 7847 9407 Face 17088 4428 4201 2395 Face 17089 228 5359 7304 Face 17090 7220 4572 9917 Face 17091 6446 7354 643 Face 17092 4707 4965 8703 Face 17093 10516 9873 558 Face 17094 6839 3690 4966 Face 17095 8504 4967 3207 Face 17096 8504 9668 4967 Face 17097 260 8771 7543 Face 17098 9281 10782 9927 Face 17099 9281 3477 10782 Face 17100 447 6793 9560 Face 17101 447 6232 6793 Face 17102 3262 4192 2026 Face 17103 3262 841 4192 Face 17104 5161 6197 387 Face 17105 2775 2306 3530 Face 17106 6159 10334 8355 Face 17107 8163 9751 9267 Face 17108 8576 39 6884 Face 17109 3460 8700 208 Face 17110 10453 3226 6671 Face 17111 5264 5464 10880 Face 17112 7571 6548 5464 Face 17113 5702 7386 10379 Face 17114 5702 7387 7386 Face 17115 8465 4973 7458 Face 17116 8465 184 4973 Face 17117 10315 7741 9918 Face 17118 9814 2692 2010 Face 17119 9814 7051 2692 Face 17120 3478 9290 7212 Face 17121 5555 1867 4490 Face 17122 5555 5920 1867 Face 17123 6854 7438 5922 Face 17124 6854 1827 7438 Face 17125 7190 1433 3654 Face 17126 8977 2831 4796 Face 17127 8977 1962 2831 Face 17128 1408 1538 2313 Face 17129 1220 4982 3496 Face 17130 410 1278 4983 Face 17131 4167 4984 7662 Face 17132 4167 1981 4984 Face 17133 10451 9076 2353 Face 17134 5478 10339 4988 Face 17135 10128 8171 4990 Face 17136 4523 7504 7166 Face 17137 4523 3640 7504 Face 17138 4391 6407 11083 Face 17139 6836 5349 7000 Face 17140 9656 2557 10619 Face 17141 8367 8446 4998 Face 17142 1495 7396 3289 Face 17143 8826 7127 3424 Face 17144 8826 10369 7127 Face 17145 9888 4999 6315 Face 17146 9888 919 4999 Face 17147 3175 10486 5000 Face 17148 1651 7078 10634 Face 17149 7517 6 2478 Face 17150 8991 6791 2923 Face 17151 5618 8011 4707 Face 17152 2316 7689 4913 Face 17153 1457 2172 6940 Face 17154 7898 4747 7374 Face 17155 7054 5004 48 Face 17156 2065 6156 2578 Face 17157 539 5379 5928 Face 17158 539 10213 5379 Face 17159 5007 64 3804 Face 17160 1167 2222 9389 Face 17161 1187 5008 252 Face 17162 5009 8483 8143 Face 17163 5009 6983 8483 Face 17164 9165 8107 2861 Face 17165 7319 5010 7128 Face 17166 9591 10993 5010 Face 17167 7319 9591 5010 Face 17168 5012 9948 5011 Face 17169 2005 5014 24 Face 17170 11005 5016 7576 Face 17171 560 2907 5019 Face 17172 1766 2585 6789 Face 17173 903 5020 2471 Face 17174 4227 5022 7596 Face 17175 1827 6854 5023 Face 17176 3046 9756 3041 Face 17177 3046 9003 9756 Face 17178 7051 6632 2692 Face 17179 138 6230 5025 Face 17180 4460 4494 6422 Face 17181 10083 5026 8008 Face 17182 6481 5027 549 Face 17183 6481 752 5027 Face 17184 5176 9136 3102 Face 17185 987 8963 2409 Face 17186 5145 8265 1252 Face 17187 583 1247 10186 Face 17188 583 1107 1247 Face 17189 8500 9864 1045 Face 17190 8500 8697 9864 Face 17191 402 6852 6809 Face 17192 719 2316 5031 Face 17193 9294 9781 4369 Face 17194 9294 8863 9781 Face 17195 1958 2927 5033 Face 17196 263 1180 7157 Face 17197 10731 10442 7120 Face 17198 10454 5039 9946 Face 17199 10454 6259 5039 Face 17200 8915 4868 5040 Face 17201 2904 6022 5041 Face 17202 2449 3004 8739 Face 17203 3584 1206 383 Face 17204 10915 2241 5042 Face 17205 8994 8186 5043 Face 17206 3705 8341 5044 Face 17207 5079 10415 3924 Face 17208 473 3371 9097 Face 17209 10822 6327 9385 Face 17210 2641 5047 2629 Face 17211 2641 8861 5047 Face 17212 8398 7907 8370 Face 17213 10950 8493 1325 Face 17214 514 7469 5048 Face 17215 6970 5049 4206 Face 17216 6970 10514 5049 Face 17217 1498 3452 9625 Face 17218 2947 9140 1296 Face 17219 1954 8296 3217 Face 17220 5128 5050 10287 Face 17221 6319 7595 10337 Face 17222 6225 9518 4312 Face 17223 6225 2289 9518 Face 17224 8775 2967 5252 Face 17225 6624 9583 2443 Face 17226 6624 3451 9583 Face 17227 1848 9953 10846 Face 17228 6787 4487 9953 Face 17229 2946 7753 1744 Face 17230 8558 663 5056 Face 17231 6864 1487 2490 Face 17232 5361 5057 2499 Face 17233 5361 6312 5057 Face 17234 6272 241 1938 Face 17235 9216 1875 9246 Face 17236 9216 5868 1875 Face 17237 7230 2843 5918 Face 17238 3131 393 5058 Face 17239 9779 5059 6511 Face 17240 9779 971 5059 Face 17241 5061 5060 861 Face 17242 10690 5060 5061 Face 17243 697 9121 1591 Face 17244 7176 7175 5064 Face 17245 4535 44 11026 Face 17246 6780 5066 8947 Face 17247 6780 540 5066 Face 17248 5110 6201 3355 Face 17249 5110 6338 6201 Face 17250 1389 4645 5413 Face 17251 2011 8140 5068 Face 17252 848 5991 4277 Face 17253 10509 8530 3114 Face 17254 10509 204 8530 Face 17255 4070 8487 5068 Face 17256 4070 5068 8140 Face 17257 8696 10778 9033 Face 17258 9660 5302 10077 Face 17259 9383 1451 8968 Face 17260 10012 2672 2671 Face 17261 5952 2544 3017 Face 17262 5071 10969 5070 Face 17263 1980 5072 7196 Face 17264 2923 10726 4938 Face 17265 7285 5777 2670 Face 17266 6214 4909 5076 Face 17267 5077 5696 7237 Face 17268 2864 5077 7237 Face 17269 2864 2007 5077 Face 17270 9526 8918 8312 Face 17271 1483 10579 5376 Face 17272 6592 5799 8363 Face 17273 8083 1609 3210 Face 17274 7815 544 7862 Face 17275 9201 5085 4221 Face 17276 9201 7952 5085 Face 17277 6775 7248 9907 Face 17278 6488 2735 7248 Face 17279 9448 2128 3519 Face 17280 8767 10427 147 Face 17281 1915 4924 2513 Face 17282 4924 5090 2513 Face 17283 4924 4028 5090 Face 17284 8908 9407 7847 Face 17285 8908 4314 9407 Face 17286 9929 5215 5093 Face 17287 10477 6306 7909 Face 17288 2997 5095 2029 Face 17289 7532 8096 4815 Face 17290 5096 1803 1535 Face 17291 10335 4749 7398 Face 17292 112 4101 4929 Face 17293 8962 1891 3215 Face 17294 8715 8428 5105 Face 17295 4978 7155 4198 Face 17296 8311 2634 6441 Face 17297 8311 8267 2634 Face 17298 9117 10813 2352 Face 17299 4067 10089 143 Face 17300 1662 2041 5012 Face 17301 1474 5109 203 Face 17302 4160 4634 2236 Face 17303 4160 4914 4634 Face 17304 14 10539 2092 Face 17305 9499 10842 3508 Face 17306 11068 9619 11090 Face 17307 1122 218 5116 Face 17308 6701 7100 8037 Face 17309 8416 4213 5880 Face 17310 1790 2848 10194 Face 17311 10621 61 9872 Face 17312 10621 10620 61 Face 17313 10490 10328 5118 Face 17314 16 10395 1974 Face 17315 10560 5119 3042 Face 17316 10560 665 5119 Face 17317 7011 665 10560 Face 17318 7710 7277 3719 Face 17319 521 6447 9184 Face 17320 1944 5124 4935 Face 17321 1944 1246 5124 Face 17322 6773 7851 6914 Face 17323 10079 5125 2685 Face 17324 10079 7808 5125 Face 17325 1945 3419 5256 Face 17326 4720 6450 6199 Face 17327 2012 11006 4216 Face 17328 2012 9680 11006 Face 17329 10139 6863 1631 Face 17330 10622 3472 6863 Face 17331 3946 934 5128 Face 17332 5557 1062 1180 Face 17333 10754 1337 5129 Face 17334 7986 411 2134 Face 17335 1907 5130 3387 Face 17336 1907 10146 5130 Face 17337 10328 1460 9310 Face 17338 2106 1725 5923 Face 17339 2106 5406 1725 Face 17340 1355 57 5137 Face 17341 6850 2793 3482 Face 17342 6582 10073 8712 Face 17343 3275 1705 4461 Face 17344 3275 9290 1705 Face 17345 9450 3460 1191 Face 17346 9450 1075 3460 Face 17347 2547 1741 5992 Face 17348 6625 6860 5144 Face 17349 7718 2919 5761 Face 17350 6595 3461 5146 Face 17351 8272 10524 9702 Face 17352 4015 634 6525 Face 17353 79 5151 537 Face 17354 79 8327 5151 Face 17355 7104 1031 5153 Face 17356 494 5154 11077 Face 17357 6016 9616 5154 Face 17358 494 6016 5154 Face 17359 8380 5581 1586 Face 17360 10172 1122 10400 Face 17361 7257 10570 4857 Face 17362 2675 3361 11049 Face 17363 6147 10624 8329 Face 17364 6146 9942 10624 Face 17365 194 6994 3480 Face 17366 194 2828 6994 Face 17367 4233 5162 5634 Face 17368 6055 8053 3459 Face 17369 6469 7650 9994 Face 17370 3182 8650 2496 Face 17371 6297 7728 10535 Face 17372 63 9093 5325 Face 17373 7885 6507 2215 Face 17374 383 7427 45 Face 17375 2981 5164 10922 Face 17376 6273 2366 5165 Face 17377 4132 4248 8385 Face 17378 608 5166 7209 Face 17379 608 11071 5166 Face 17380 7129 1883 7080 Face 17381 6959 5076 4184 Face 17382 1175 9082 8509 Face 17383 1527 8716 2892 Face 17384 182 7729 5170 Face 17385 949 182 5170 Face 17386 5669 478 5171 Face 17387 3819 7617 4226 Face 17388 10386 5173 27 Face 17389 10386 5726 5173 Face 17390 5175 5174 1152 Face 17391 5813 6537 464 Face 17392 5813 9037 6537 Face 17393 7404 5179 9449 Face 17394 7404 7762 5179 Face 17395 2934 10465 10021 Face 17396 158 9288 4037 Face 17397 1433 8413 579 Face 17398 2050 4127 890 Face 17399 5270 9802 8957 Face 17400 4220 5675 5186 Face 17401 364 99 6171 Face 17402 6675 2405 9192 Face 17403 6675 5188 2405 Face 17404 6675 1146 5188 Face 17405 9968 3209 4762 Face 17406 3056 8818 9737 Face 17407 3056 3057 8818 Face 17408 996 7058 8180 Face 17409 3520 5193 7015 Face 17410 156 1432 10211 Face 17411 812 5194 9865 Face 17412 812 10283 5194 Face 17413 2804 1869 7518 Face 17414 5866 4982 1220 Face 17415 8054 1262 4982 Face 17416 1822 5195 4452 Face 17417 10421 2501 6910 Face 17418 10421 4905 2501 Face 17419 8581 8332 8436 Face 17420 8411 9139 10383 Face 17421 9506 1523 214 Face 17422 10666 9431 10845 Face 17423 10666 11090 9431 Face 17424 8491 6824 8708 Face 17425 10390 983 3282 Face 17426 229 3041 10613 Face 17427 229 5798 3041 Face 17428 1535 9465 5096 Face 17429 1535 8349 9465 Face 17430 3352 8561 6498 Face 17431 1200 10974 8836 Face 17432 1200 8249 10974 Face 17433 8097 4614 6217 Face 17434 939 6950 2526 Face 17435 3052 5201 6487 Face 17436 372 5202 7553 Face 17437 372 6707 5202 Face 17438 10072 8429 9556 Face 17439 1783 10865 7344 Face 17440 1699 6217 6865 Face 17441 101 4670 167 Face 17442 8664 4005 9623 Face 17443 7692 5456 8606 Face 17444 7701 10259 10937 Face 17445 9277 6620 766 Face 17446 9277 766 1601 Face 17447 6225 5205 10014 Face 17448 1275 9239 11110 Face 17449 1014 1275 11110 Face 17450 3325 7672 2572 Face 17451 106 4355 8648 Face 17452 11077 1800 623 Face 17453 5209 6711 8941 Face 17454 8941 6711 3081 Face 17455 7674 9202 5937 Face 17456 622 10144 1567 Face 17457 5462 4861 2477 Face 17458 5462 10480 4861 Face 17459 10200 5212 6918 Face 17460 7068 2532 5214 Face 17461 5271 4087 7068 Face 17462 5748 5093 5215 Face 17463 5216 9311 1067 Face 17464 7579 9708 1681 Face 17465 9107 10342 5218 Face 17466 9012 10809 6259 Face 17467 9012 2066 10809 Face 17468 3639 836 5858 Face 17469 7251 6019 5219 Face 17470 633 5927 5220 Face 17471 7948 1547 5223 Face 17472 5224 5225 2311 Face 17473 5224 3779 5225 Face 17474 6276 10343 9733 Face 17475 10309 7667 4334 Face 17476 10939 5228 3904 Face 17477 3436 7137 10444 Face 17478 7939 5231 10878 Face 17479 7939 1303 5231 Face 17480 7924 2945 7709 Face 17481 4997 4844 9684 Face 17482 1165 7393 3323 Face 17483 7812 38 3894 Face 17484 1784 7551 5237 Face 17485 1784 5238 9703 Face 17486 9412 6069 1075 Face 17487 8199 8496 5239 Face 17488 6770 6226 9346 Face 17489 101 6383 5241 Face 17490 980 2610 2787 Face 17491 5244 5243 6038 Face 17492 5244 5413 5243 Face 17493 7914 5664 9424 Face 17494 10485 792 3104 Face 17495 10485 5458 792 Face 17496 8920 5246 4267 Face 17497 8920 5084 5246 Face 17498 3370 3725 5401 Face 17499 1546 8291 9949 Face 17500 1546 6216 8291 Face 17501 219 473 908 Face 17502 4250 9195 4823 Face 17503 2159 8269 5255 Face 17504 5899 5256 969 Face 17505 5899 2681 5256 Face 17506 1798 937 5258 Face 17507 1588 5259 8868 Face 17508 2434 3249 5260 Face 17509 6516 2778 11007 Face 17510 587 6412 2815 Face 17511 6843 6653 2637 Face 17512 8531 9460 10897 Face 17513 7571 5264 3346 Face 17514 7571 5464 5264 Face 17515 1690 9440 5265 Face 17516 387 10442 467 Face 17517 2952 8544 8081 Face 17518 2952 8378 8544 Face 17519 1435 2976 327 Face 17520 621 11007 2777 Face 17521 621 9535 11007 Face 17522 1329 89 5267 Face 17523 10511 1507 5998 Face 17524 7136 9003 134 Face 17525 2290 2654 3143 Face 17526 9373 4125 3415 Face 17527 4583 7724 4125 Face 17528 7068 7355 5271 Face 17529 4232 504 3397 Face 17530 4232 10144 504 Face 17531 2663 3824 956 Face 17532 2688 3094 10067 Face 17533 2688 1672 3094 Face 17534 3867 5274 11089 Face 17535 446 10096 8820 Face 17536 7174 5276 5706 Face 17537 7174 5080 5276 Face 17538 2316 8394 7689 Face 17539 6578 2955 8214 Face 17540 2384 5279 5855 Face 17541 3553 6526 332 Face 17542 10080 10338 1617 Face 17543 10635 5280 10871 Face 17544 3214 890 4127 Face 17545 662 7332 5887 Face 17546 7064 3037 7309 Face 17547 7064 6719 3037 Face 17548 10163 4115 5283 Face 17549 2054 10033 993 Face 17550 2450 11032 1820 Face 17551 10851 927 5285 Face 17552 10503 8783 1094 Face 17553 6095 3016 5286 Face 17554 1643 3628 10362 Face 17555 2111 3819 4226 Face 17556 4538 9519 1953 Face 17557 4538 6274 9519 Face 17558 5900 7809 2202 Face 17559 3107 6539 3730 Face 17560 10209 10120 7185 Face 17561 9222 7123 5291 Face 17562 3554 767 4898 Face 17563 3554 1809 767 Face 17564 6563 714 1228 Face 17565 3459 9523 2757 Face 17566 10934 9917 4572 Face 17567 7027 937 7896 Face 17568 4786 5299 3878 Face 17569 4786 1809 5299 Face 17570 5281 5301 2294 Face 17571 444 7784 5301 Face 17572 8897 10678 3312 Face 17573 1991 6353 5617 Face 17574 415 4859 591 Face 17575 6037 6960 2898 Face 17576 6134 4073 6079 Face 17577 7270 5308 4136 Face 17578 4935 5124 1511 Face 17579 8112 2045 4714 Face 17580 8112 7326 2045 Face 17581 1858 5311 3267 Face 17582 1858 4806 5311 Face 17583 8681 3514 5523 Face 17584 8681 10964 3514 Face 17585 10502 828 5856 Face 17586 3067 9599 8694 Face 17587 7948 5223 1556 Face 17588 641 1418 8539 Face 17589 5819 5317 2686 Face 17590 5819 6576 5317 Face 17591 339 2129 908 Face 17592 8281 1177 10481 Face 17593 3747 921 3615 Face 17594 3747 6985 921 Face 17595 3670 8677 5320 Face 17596 7036 7085 5321 Face 17597 9245 5694 10154 Face 17598 267 4525 9137 Face 17599 267 1931 4525 Face 17600 5762 5327 7445 Face 17601 5991 6526 768 Face 17602 3683 2783 4075 Face 17603 3683 4968 2783 Face 17604 1719 989 4558 Face 17605 150 6026 5329 Face 17606 5331 3002 7296 Face 17607 3952 5331 7296 Face 17608 3952 3377 5331 Face 17609 4732 5333 8351 Face 17610 382 8077 9348 Face 17611 1872 1118 9261 Face 17612 1872 4835 1118 Face 17613 10845 4036 5335 Face 17614 283 6344 7093 Face 17615 919 3731 1650 Face 17616 7350 480 1709 Face 17617 8141 2647 5888 Face 17618 9773 8886 5340 Face 17619 6175 5337 8502 Face 17620 5434 1674 1555 Face 17621 10267 9210 5338 Face 17622 6355 5339 2581 Face 17623 6355 7607 5339 Face 17624 8007 5988 5340 Face 17625 6313 4136 5341 Face 17626 9697 8839 2068 Face 17627 675 2917 3946 Face 17628 675 10819 2917 Face 17629 1070 8990 2913 Face 17630 8306 7100 7311 Face 17631 6594 46 192 Face 17632 1263 8848 5347 Face 17633 876 7851 9329 Face 17634 876 7149 7851 Face 17635 8470 9512 9128 Face 17636 6836 10147 5349 Face 17637 11017 3305 10697 Face 17638 2424 649 11054 Face 17639 9168 5651 9402 Face 17640 4494 7149 771 Face 17641 2063 7326 2430 Face 17642 5354 288 6982 Face 17643 11088 1485 7414 Face 17644 2152 5356 9997 Face 17645 2152 1592 5356 Face 17646 241 5358 10462 Face 17647 241 4619 5358 Face 17648 6129 5360 5098 Face 17649 6129 270 5360 Face 17650 270 7492 3433 Face 17651 1022 560 8554 Face 17652 1380 4425 5374 Face 17653 1380 7897 4425 Face 17654 3049 2676 1015 Face 17655 3049 8647 2676 Face 17656 6457 5371 7164 Face 17657 6457 2492 5371 Face 17658 5031 7925 6156 Face 17659 2091 7192 5375 Face 17660 8115 8511 5377 Face 17661 1455 8209 3648 Face 17662 3990 9672 5378 Face 17663 8009 10501 5379 Face 17664 10827 1565 5453 Face 17665 353 8962 10585 Face 17666 5180 10780 5909 Face 17667 3417 2648 9700 Face 17668 5218 3956 9287 Face 17669 8832 699 5386 Face 17670 4991 2887 4066 Face 17671 10042 5390 2411 Face 17672 10042 6337 5390 Face 17673 10042 517 6337 Face 17674 4657 4314 5393 Face 17675 11056 4486 476 Face 17676 2409 6019 987 Face 17677 4589 8671 5398 Face 17678 431 4467 1405 Face 17679 422 5896 3397 Face 17680 422 2724 5896 Face 17681 9270 2727 5400 Face 17682 4012 3078 5401 Face 17683 6964 4012 5401 Face 17684 9686 1916 1931 Face 17685 1020 6750 5403 Face 17686 1383 9568 5421 Face 17687 6813 6297 2836 Face 17688 3508 10842 1360 Face 17689 10324 5404 4708 Face 17690 10324 6192 5404 Face 17691 437 8111 620 Face 17692 437 6218 8111 Face 17693 4212 4541 6826 Face 17694 1381 1889 3665 Face 17695 10983 3375 5406 Face 17696 5406 4968 10983 Face 17697 7202 5407 3400 Face 17698 308 5407 7202 Face 17699 2062 9235 5409 Face 17700 8565 10013 5917 Face 17701 10555 5350 10013 Face 17702 7861 6449 5817 Face 17703 5646 3009 2181 Face 17704 10995 5410 1987 Face 17705 5410 1235 5411 Face 17706 685 9805 8583 Face 17707 685 3569 9805 Face 17708 5413 6715 9985 Face 17709 5164 2981 5414 Face 17710 11108 9406 8812 Face 17711 1240 3886 4660 Face 17712 1240 7462 3886 Face 17713 6708 9718 5446 Face 17714 6708 5091 9718 Face 17715 8865 946 8834 Face 17716 4122 10087 6105 Face 17717 4122 7730 10087 Face 17718 3368 5417 2223 Face 17719 3368 8148 5417 Face 17720 2468 11020 1892 Face 17721 2468 6416 11020 Face 17722 9563 11107 5369 Face 17723 2962 9536 9060 Face 17724 7293 9250 8125 Face 17725 7293 9242 9250 Face 17726 268 10512 4731 Face 17727 268 1052 10512 Face 17728 297 7882 4202 Face 17729 1054 1833 6621 Face 17730 496 6651 5764 Face 17731 6720 5427 10837 Face 17732 6720 8907 5427 Face 17733 6252 10287 5428 Face 17734 5287 10167 1133 Face 17735 5287 9381 10167 Face 17736 1629 2706 4524 Face 17737 1629 7502 2706 Face 17738 8274 5600 1529 Face 17739 3079 8729 6904 Face 17740 994 2738 10648 Face 17741 8109 4060 5435 Face 17742 7995 5436 7044 Face 17743 7995 5570 5436 Face 17744 7126 530 5437 Face 17745 935 5438 6540 Face 17746 10020 3389 3778 Face 17747 10020 5229 3389 Face 17748 2315 5357 5441 Face 17749 8883 3635 5445 Face 17750 6063 6455 8541 Face 17751 7725 5448 3444 Face 17752 7725 9332 5448 Face 17753 994 7057 8217 Face 17754 6736 5451 10507 Face 17755 4067 6970 5452 Face 17756 760 3983 5204 Face 17757 7559 1604 5662 Face 17758 5691 1642 7177 Face 17759 5691 1641 1642 Face 17760 6717 5458 10485 Face 17761 2477 1954 5462 Face 17762 317 7494 1993 Face 17763 206 8091 4686 Face 17764 5872 5190 10231 Face 17765 9132 5465 5426 Face 17766 2577 9608 5466 Face 17767 8192 5467 1157 Face 17768 8192 10197 5467 Face 17769 2002 2753 7477 Face 17770 2478 9614 2635 Face 17771 2478 8749 9614 Face 17772 7986 5471 10002 Face 17773 7986 2872 5471 Face 17774 3925 10652 307 Face 17775 3735 2160 4330 Face 17776 3735 7910 2160 Face 17777 7 5473 7154 Face 17778 7721 597 5474 Face 17779 7996 3658 8185 Face 17780 7996 4946 3658 Face 17781 1710 7151 8767 Face 17782 9249 326 9579 Face 17783 4450 5479 2036 Face 17784 4450 8371 5479 Face 17785 4160 1158 4914 Face 17786 6553 5480 2523 Face 17787 3581 10073 6092 Face 17788 141 4995 5482 Face 17789 8628 2131 5483 Face 17790 2193 4011 5484 Face 17791 1584 5954 5485 Face 17792 3333 1865 27 Face 17793 9988 698 10098 Face 17794 9988 5751 698 Face 17795 6158 8148 6604 Face 17796 10535 6813 8723 Face 17797 6044 6045 9545 Face 17798 950 8349 9545 Face 17799 169 7426 5494 Face 17800 6600 5496 10556 Face 17801 7095 5497 2170 Face 17802 7095 3263 5497 Face 17803 1961 1391 2089 Face 17804 505 8634 4730 Face 17805 7716 1336 7936 Face 17806 7716 7610 1336 Face 17807 7762 3367 9604 Face 17808 1428 276 2721 Face 17809 2647 9295 5498 Face 17810 8392 3292 6487 Face 17811 1908 2625 2598 Face 17812 3832 6432 7873 Face 17813 9340 1820 8095 Face 17814 5315 5500 5745 Face 17815 5315 9914 5500 Face 17816 9443 2147 9312 Face 17817 7721 6392 5758 Face 17818 2843 5502 9512 Face 17819 2843 7230 5502 Face 17820 9424 5503 7914 Face 17821 9424 3277 5503 Face 17822 9297 5504 3049 Face 17823 8867 8647 5504 Face 17824 4616 3025 7452 Face 17825 5829 3708 5505 Face 17826 5802 1344 10097 Face 17827 5507 11101 6325 Face 17828 11101 3303 9846 Face 17829 11101 5507 4937 Face 17830 8576 6884 3302 Face 17831 5009 5509 6983 Face 17832 5009 3805 5509 Face 17833 104 1779 2436 Face 17834 2318 8726 6690 Face 17835 10357 2406 4565 Face 17836 1213 5511 314 Face 17837 5512 5269 10302 Face 17838 2981 10584 5414 Face 17839 9411 3838 5513 Face 17840 6030 1492 7775 Face 17841 5623 1438 9595 Face 17842 180 709 7928 Face 17843 1388 8555 7477 Face 17844 950 8602 367 Face 17845 7161 9851 5517 Face 17846 480 5518 1092 Face 17847 950 367 5521 Face 17848 1935 5525 2941 Face 17849 1935 10281 5525 Face 17850 7085 3816 5321 Face 17851 5054 1249 3620 Face 17852 5651 9168 5849 Face 17853 3916 7371 9871 Face 17854 391 5033 4846 Face 17855 11003 1958 5033 Face 17856 2375 5535 1297 Face 17857 2375 6542 5535 Face 17858 8468 7352 6326 Face 17859 9529 530 5538 Face 17860 9648 1275 2274 Face 17861 6772 7531 105 Face 17862 4658 7681 4451 Face 17863 1565 3620 11009 Face 17864 10473 9141 2428 Face 17865 10473 3371 9141 Face 17866 6237 2148 5551 Face 17867 8564 9941 8571 Face 17868 8564 484 9941 Face 17869 1558 5553 9938 Face 17870 1558 3761 5553 Face 17871 5813 5556 4706 Face 17872 4747 2827 8761 Face 17873 5793 9649 5558 Face 17874 6935 10836 2924 Face 17875 9932 2976 5561 Face 17876 2076 8334 10657 Face 17877 2076 5563 8334 Face 17878 1338 2414 6676 Face 17879 7117 5565 1437 Face 17880 10001 5934 1726 Face 17881 661 3607 2124 Face 17882 7878 5567 298 Face 17883 7878 934 5567 Face 17884 1188 709 7270 Face 17885 6307 4381 7521 Face 17886 5475 5571 2486 Face 17887 825 3550 5573 Face 17888 5265 4816 4120 Face 17889 2133 7745 5192 Face 17890 2133 9792 7745 Face 17891 5578 11061 10642 Face 17892 2631 3535 9573 Face 17893 7636 4258 5580 Face 17894 3149 10489 9153 Face 17895 3149 1933 10489 Face 17896 6057 10199 6790 Face 17897 1794 5584 126 Face 17898 1794 9455 5584 Face 17899 9983 5588 11046 Face 17900 9983 9795 5588 Face 17901 9592 10356 6246 Face 17902 7268 5592 9314 Face 17903 141 5593 2120 Face 17904 141 7979 5593 Face 17905 4043 9504 346 Face 17906 4973 6087 2764 Face 17907 8970 2960 3336 Face 17908 8970 5871 2960 Face 17909 1149 8283 7367 Face 17910 889 5135 5602 Face 17911 835 5605 3284 Face 17912 835 100 5605 Face 17913 9076 3329 10838 Face 17914 564 10879 5606 Face 17915 6345 9204 2952 Face 17916 729 1905 5608 Face 17917 901 10404 3047 Face 17918 8652 982 5837 Face 17919 2 7989 1143 Face 17920 10981 8163 1374 Face 17921 10981 9751 8163 Face 17922 7622 7719 5611 Face 17923 10813 2438 8453 Face 17924 3165 6180 4664 Face 17925 1563 7993 9476 Face 17926 5564 2999 9495 Face 17927 646 6103 5616 Face 17928 9787 6075 7891 Face 17929 4067 8011 5618 Face 17930 4169 2808 10668 Face 17931 182 10998 808 Face 17932 8430 10679 4054 Face 17933 8430 4054 6540 Face 17934 91 9110 8574 Face 17935 5618 5619 10976 Face 17936 5618 4707 5619 Face 17937 4065 8055 6715 Face 17938 984 5621 4862 Face 17939 984 560 5621 Face 17940 729 4136 5308 Face 17941 5624 5623 5323 Face 17942 5624 1438 5623 Face 17943 2508 10885 9041 Face 17944 6009 10603 2776 Face 17945 2174 3107 9724 Face 17946 2174 6539 3107 Face 17947 6588 655 10807 Face 17948 353 511 4753 Face 17949 2677 193 2678 Face 17950 2064 9356 7339 Face 17951 9388 5627 6603 Face 17952 9388 5411 5627 Face 17953 3250 5628 3351 Face 17954 3250 10131 5628 Face 17955 213 822 5629 Face 17956 3212 9967 5630 Face 17957 10669 550 5631 Face 17958 5632 7252 9778 Face 17959 4795 1313 5634 Face 17960 2546 5635 10709 Face 17961 11085 2583 5636 Face 17962 2831 907 4796 Face 17963 1599 2266 10386 Face 17964 527 5640 8617 Face 17965 527 6491 5640 Face 17966 6014 5641 5897 Face 17967 6014 4309 5641 Face 17968 748 2682 2491 Face 17969 748 7926 2682 Face 17970 1174 2680 1246 Face 17971 7608 2161 10388 Face 17972 6965 5647 8519 Face 17973 6965 8906 5647 Face 17974 1270 2621 7791 Face 17975 1270 5648 2621 Face 17976 1270 7790 5648 Face 17977 376 5104 5441 Face 17978 376 3262 5104 Face 17979 6769 10367 8598 Face 17980 6769 7311 10367 Face 17981 10669 9585 550 Face 17982 10669 4261 9585 Face 17983 10010 1641 1093 Face 17984 9853 10378 2584 Face 17985 2791 272 5682 Face 17986 5651 1521 2082 Face 17987 5654 7936 5653 Face 17988 1763 5657 4391 Face 17989 1763 10313 5657 Face 17990 9326 1755 7450 Face 17991 6892 5663 743 Face 17992 6892 2476 5663 Face 17993 1813 10197 8050 Face 17994 6146 10624 6147 Face 17995 5495 5664 10260 Face 17996 141 5665 1463 Face 17997 141 942 5665 Face 17998 3965 8423 9735 Face 17999 10134 8887 8566 Face 18000 5171 894 5669 Face 18001 1793 1930 2765 Face 18002 8508 5690 11031 Face 18003 1739 804 251 Face 18004 1590 2661 3925 Face 18005 1590 6281 2661 Face 18006 6281 2747 2661 Face 18007 7236 5677 3029 Face 18008 190 7279 3496 Face 18009 3506 8608 4873 Face 18010 502 4563 10304 Face 18011 502 10176 4563 Face 18012 10622 6863 10139 Face 18013 1049 4182 5681 Face 18014 348 3959 6861 Face 18015 348 4748 3959 Face 18016 7271 688 5687 Face 18017 1940 184 8465 Face 18018 1940 9022 184 Face 18019 4067 5452 8011 Face 18020 6753 2759 3528 Face 18021 7338 6823 1546 Face 18022 1205 5695 4304 Face 18023 1205 4662 5695 Face 18024 10414 7687 1768 Face 18025 8724 8067 5698 Face 18026 10662 325 6153 Face 18027 10662 10106 325 Face 18028 9373 10694 6771 Face 18029 3464 4370 5453 Face 18030 170 1441 5615 Face 18031 82 3124 2467 Face 18032 6549 438 1531 Face 18033 6549 1542 438 Face 18034 1855 5701 3801 Face 18035 1855 8683 5701 Face 18036 316 7951 4012 Face 18037 7066 10679 6213 Face 18038 5703 4031 6613 Face 18039 7296 5704 4200 Face 18040 7296 2027 5704 Face 18041 5105 5705 20 Face 18042 927 5708 8635 Face 18043 5708 10851 10995 Face 18044 52 5709 8491 Face 18045 3504 5710 4071 Face 18046 7865 2140 5711 Face 18047 572 4841 7668 Face 18048 8600 10246 7793 Face 18049 6268 9817 5715 Face 18050 2253 4367 5717 Face 18051 81 5718 3347 Face 18052 81 6923 5718 Face 18053 8453 3983 10633 Face 18054 4767 3625 10906 Face 18055 4767 5078 3625 Face 18056 9528 6197 3304 Face 18057 2158 1940 8465 Face 18058 2158 6484 1940 Face 18059 6925 1286 5721 Face 18060 10512 2439 8022 Face 18061 8083 4844 6483 Face 18062 2983 9754 5678 Face 18063 7540 5377 479 Face 18064 7540 4649 5377 Face 18065 2016 6018 3314 Face 18066 973 1783 7717 Face 18067 2600 3910 8116 Face 18068 6462 7894 9112 Face 18069 2276 9638 7894 Face 18070 6631 5622 11064 Face 18071 7502 9730 2706 Face 18072 4624 5731 2872 Face 18073 4624 4137 5731 Face 18074 3776 9469 5961 Face 18075 609 9421 5733 Face 18076 9414 3044 4259 Face 18077 9414 4139 3044 Face 18078 763 5934 5738 Face 18079 9565 10129 1195 Face 18080 9009 1148 8860 Face 18081 7025 5747 6922 Face 18082 7025 10623 5747 Face 18083 354 7251 9495 Face 18084 354 5909 7251 Face 18085 6642 5749 3619 Face 18086 6642 9883 5749 Face 18087 2097 4531 569 Face 18088 5235 1279 5926 Face 18089 6083 7349 4693 Face 18090 7012 2336 5752 Face 18091 775 10308 774 Face 18092 775 6322 10308 Face 18093 47 2944 5753 Face 18094 8076 1044 9438 Face 18095 8076 2915 1044 Face 18096 4147 9433 4210 Face 18097 4147 10091 9433 Face 18098 4018 11067 2165 Face 18099 3310 5762 1499 Face 18100 1482 7116 5134 Face 18101 10851 10808 1235 Face 18102 5874 1235 10808 Face 18103 4136 10828 7270 Face 18104 5884 5764 8077 Face 18105 5884 4787 5764 Face 18106 7786 4580 4255 Face 18107 10104 5766 1117 Face 18108 4341 10873 2782 Face 18109 187 5586 9847 Face 18110 10025 2723 3926 Face 18111 10025 10957 2723 Face 18112 2081 5767 3948 Face 18113 2081 9393 5767 Face 18114 7080 6224 9159 Face 18115 7080 722 6224 Face 18116 7915 3188 2949 Face 18117 6456 6157 5769 Face 18118 4579 8046 7666 Face 18119 4579 6562 8046 Face 18120 10476 3525 10708 Face 18121 2092 10539 5772 Face 18122 127 5778 5003 Face 18123 575 5783 2376 Face 18124 1308 5120 3992 Face 18125 2039 5784 6034 Face 18126 2039 4848 5784 Face 18127 4164 8237 9233 Face 18128 5495 9301 5785 Face 18129 5354 2557 9792 Face 18130 5354 6982 2557 Face 18131 10379 1486 2067 Face 18132 10379 8654 1486 Face 18133 10461 211 5211 Face 18134 5096 7088 6080 Face 18135 7133 8261 8846 Face 18136 7133 1272 8261 Face 18137 911 3791 9349 Face 18138 911 10065 3791 Face 18139 9550 7912 1312 Face 18140 986 3882 2344 Face 18141 419 9387 4964 Face 18142 4031 7259 5435 Face 18143 6337 5789 10523 Face 18144 6337 4559 5789 Face 18145 3742 8979 4209 Face 18146 2178 3543 5791 Face 18147 3293 7579 5792 Face 18148 8420 7471 662 Face 18149 2374 5794 512 Face 18150 2374 9841 5794 Face 18151 11050 5638 11010 Face 18152 70 8137 4246 Face 18153 2484 6251 552 Face 18154 4453 10433 2911 Face 18155 187 10391 5586 Face 18156 7516 1717 5800 Face 18157 541 6751 10553 Face 18158 541 840 6751 Face 18159 10429 8478 5689 Face 18160 10429 6228 8478 Face 18161 987 5312 5803 Face 18162 5807 5808 6787 Face 18163 5807 9952 5808 Face 18164 785 6612 5545 Face 18165 1966 5810 9697 Face 18166 2212 130 10977 Face 18167 2212 8172 130 Face 18168 6014 5812 4950 Face 18169 491 10883 9427 Face 18170 5519 5215 6318 Face 18171 4230 7291 7877 Face 18172 1266 4002 5814 Face 18173 9835 3829 10312 Face 18174 8419 6508 3666 Face 18175 8874 3168 7927 Face 18176 8869 3557 5818 Face 18177 11052 5582 3991 Face 18178 927 1079 3468 Face 18179 11027 1012 99 Face 18180 4411 9412 9450 Face 18181 6602 3313 3736 Face 18182 9578 5822 7377 Face 18183 9578 9316 5822 Face 18184 6307 7521 5823 Face 18185 8443 4683 9515 Face 18186 8443 3890 4683 Face 18187 6599 7524 8232 Face 18188 8439 1930 1793 Face 18189 8084 10548 6240 Face 18190 1713 10931 7553 Face 18191 1713 8934 10931 Face 18192 8017 5824 7760 Face 18193 8017 5418 5824 Face 18194 10138 5825 538 Face 18195 4636 3151 6877 Face 18196 2066 5830 10809 Face 18197 2066 2882 5830 Face 18198 7237 10051 6971 Face 18199 8698 7978 1052 Face 18200 8698 8264 7978 Face 18201 10797 11091 10869 Face 18202 3198 5832 7226 Face 18203 4636 6877 3478 Face 18204 8256 5165 2366 Face 18205 10487 5838 7227 Face 18206 10487 8504 5838 Face 18207 5244 9608 5413 Face 18208 5244 4078 9608 Face 18209 10909 5839 193 Face 18210 10917 6103 4181 Face 18211 1199 5684 2073 Face 18212 7751 8592 6880 Face 18213 7496 10655 5847 Face 18214 9535 6516 11007 Face 18215 10449 7407 7223 Face 18216 3546 8743 1292 Face 18217 7510 8509 9505 Face 18218 2234 4252 9332 Face 18219 409 9745 5855 Face 18220 1526 9681 2700 Face 18221 2189 6604 3847 Face 18222 9106 7951 9038 Face 18223 3405 7938 9162 Face 18224 10170 9259 9883 Face 18225 10121 7015 8615 Face 18226 8139 2673 2701 Face 18227 6200 5862 4464 Face 18228 6200 5336 5862 Face 18229 5862 5861 4464 Face 18230 5862 8018 5861 Face 18231 8468 3516 7352 Face 18232 2126 10348 5892 Face 18233 8054 4982 5866 Face 18234 2608 404 10150 Face 18235 7683 9732 6568 Face 18236 1384 3038 8292 Face 18237 6276 3348 4799 Face 18238 6276 9733 3348 Face 18239 8970 5386 5871 Face 18240 10345 10392 5873 Face 18241 3508 5874 964 Face 18242 3508 4742 5874 Face 18243 10867 7873 5876 Face 18244 5877 7720 9580 Face 18245 5878 8847 8630 Face 18246 8847 5878 8012 Face 18247 258 5392 5879 Face 18248 373 3223 5455 Face 18249 5250 10093 8592 Face 18250 10262 2291 5063 Face 18251 137 5886 4726 Face 18252 456 1244 6255 Face 18253 456 6021 1244 Face 18254 6058 5975 10612 Face 18255 4400 4220 853 Face 18256 6333 1059 2408 Face 18257 6372 2040 10743 Face 18258 7858 1916 6827 Face 18259 3412 590 3383 Face 18260 5630 1634 3212 Face 18261 8108 5893 6172 Face 18262 129 8455 1297 Face 18263 3531 6943 2950 Face 18264 3531 4952 6943 Face 18265 3531 2950 3532 Face 18266 4681 9566 4509 Face 18267 10992 1361 6741 Face 18268 2702 10992 6741 Face 18269 2702 2615 10992 Face 18270 762 2752 1702 Face 18271 762 1950 2752 Face 18272 2369 8085 4540 Face 18273 6728 9044 3393 Face 18274 6344 5899 969 Face 18275 1622 9203 5901 Face 18276 8209 1989 8429 Face 18277 6680 10301 1009 Face 18278 5902 8916 2626 Face 18279 10535 8723 4365 Face 18280 7437 883 2582 Face 18281 8812 3271 5904 Face 18282 6621 7941 1054 Face 18283 231 2322 2203 Face 18284 3448 2190 2807 Face 18285 131 10997 9971 Face 18286 5992 50 4315 Face 18287 8568 850 5913 Face 18288 9762 5915 1410 Face 18289 9762 7401 5915 Face 18290 10213 539 538 Face 18291 6392 588 1127 Face 18292 1792 2372 9582 Face 18293 1792 6897 2372 Face 18294 8681 8179 4809 Face 18295 889 5920 5555 Face 18296 889 10377 5920 Face 18297 8295 4224 9758 Face 18298 8173 7380 1236 Face 18299 8345 9670 627 Face 18300 3971 2106 5923 Face 18301 1519 4024 10171 Face 18302 8394 2042 7689 Face 18303 5925 5592 7131 Face 18304 8416 3758 8088 Face 18305 8797 10711 9175 Face 18306 6841 8142 2391 Face 18307 6841 414 8142 Face 18308 4650 107 960 Face 18309 3897 10531 9587 Face 18310 5371 7515 3738 Face 18311 2222 2987 7257 Face 18312 7279 8557 1168 Face 18313 4310 5932 6846 Face 18314 4310 2838 5932 Face 18315 7012 5933 402 Face 18316 10088 10113 8422 Face 18317 3787 5934 10001 Face 18318 3787 4013 5934 Face 18319 3004 5017 8739 Face 18320 10101 6561 1462 Face 18321 8055 8984 5939 Face 18322 4142 5903 5940 Face 18323 2619 4582 3704 Face 18324 4128 7766 4777 Face 18325 74 370 2866 Face 18326 7079 3379 10807 Face 18327 6966 8599 9013 Face 18328 783 967 5943 Face 18329 8433 7232 7622 Face 18330 8433 1675 7232 Face 18331 830 6581 1673 Face 18332 368 6703 721 Face 18333 1526 2700 977 Face 18334 6207 6913 4923 Face 18335 1281 5946 5953 Face 18336 1281 2899 5946 Face 18337 5558 8178 5948 Face 18338 1263 4071 9665 Face 18339 4108 9092 948 Face 18340 10276 8744 7041 Face 18341 10319 2401 1315 Face 18342 1429 9239 3392 Face 18343 1553 6684 4076 Face 18344 8333 5956 7285 Face 18345 8333 6696 5956 Face 18346 245 1268 5958 Face 18347 10960 49 10558 Face 18348 1180 6187 5960 Face 18349 3468 1079 723 Face 18350 1857 6619 6084 Face 18351 6957 7336 4126 Face 18352 6697 5646 5961 Face 18353 3601 5962 3883 Face 18354 3870 1596 10355 Face 18355 10838 940 5236 Face 18356 10649 1559 5965 Face 18357 10399 54 4672 Face 18358 10399 8420 54 Face 18359 5466 5967 9855 Face 18360 5466 9608 5967 Face 18361 7037 8778 5443 Face 18362 10654 2745 5969 Face 18363 4865 131 10437 Face 18364 6462 2276 7894 Face 18365 6462 7548 2276 Face 18366 2486 5571 6517 Face 18367 7319 7128 2927 Face 18368 1042 1721 6948 Face 18369 962 8616 6757 Face 18370 86 9039 9066 Face 18371 86 5237 9039 Face 18372 5349 6822 4521 Face 18373 5349 10147 6822 Face 18374 2393 5977 7134 Face 18375 2393 10352 5977 Face 18376 10605 1976 8578 Face 18377 9754 5980 7216 Face 18378 1660 8589 242 Face 18379 5441 8361 8006 Face 18380 5985 1873 5984 Face 18381 6849 5985 5984 Face 18382 1113 8902 5501 Face 18383 1113 10889 8902 Face 18384 4162 4698 6531 Face 18385 5989 2104 1534 Face 18386 4476 7799 5995 Face 18387 1761 3448 5996 Face 18388 3771 2773 5828 Face 18389 10527 5997 4466 Face 18390 2248 10774 704 Face 18391 1453 8176 5999 Face 18392 8032 770 8918 Face 18393 4506 6003 8969 Face 18394 6990 6004 98 Face 18395 6990 1669 6004 Face 18396 7434 6005 1890 Face 18397 10830 9374 2175 Face 18398 4130 7860 3706 Face 18399 1343 3028 6010 Face 18400 5354 6011 4532 Face 18401 5354 10434 6011 Face 18402 2587 4830 5563 Face 18403 8076 9438 791 Face 18404 10397 4908 4070 Face 18405 4161 287 6550 Face 18406 3377 6926 8238 Face 18407 3377 4969 6926 Face 18408 5897 5812 6014 Face 18409 496 10968 6651 Face 18410 496 10858 10968 Face 18411 958 6017 1970 Face 18412 8622 3314 6018 Face 18413 1790 8014 2848 Face 18414 587 987 6019 Face 18415 3615 4753 10050 Face 18416 6452 5062 6020 Face 18417 10151 2462 9948 Face 18418 10151 4608 2462 Face 18419 566 1350 3540 Face 18420 3599 196 5275 Face 18421 10974 5938 8836 Face 18422 7392 8445 4221 Face 18423 11077 6016 494 Face 18424 11077 4370 6016 Face 18425 4166 6028 10654 Face 18426 4166 2745 6028 Face 18427 2282 4287 9597 Face 18428 7775 3154 6031 Face 18429 7775 6032 6030 Face 18430 7775 6031 6032 Face 18431 5784 3198 6034 Face 18432 10628 11022 6341 Face 18433 10628 6798 11022 Face 18434 197 5791 6038 Face 18435 8198 6040 10360 Face 18436 8198 2194 6040 Face 18437 6635 6353 1991 Face 18438 6369 7195 3248 Face 18439 6042 8532 6041 Face 18440 6041 5208 6042 Face 18441 9545 8602 950 Face 18442 2040 9132 7421 Face 18443 10960 195 6046 Face 18444 1405 7123 6047 Face 18445 9877 8099 8105 Face 18446 6050 4269 6049 Face 18447 4101 11030 4929 Face 18448 4101 8481 11030 Face 18449 3233 9760 9969 Face 18450 10041 7638 4046 Face 18451 9810 2307 5373 Face 18452 10881 455 6054 Face 18453 1106 6349 3401 Face 18454 10702 3980 2129 Face 18455 1416 1635 3505 Face 18456 8184 8025 6055 Face 18457 1190 8692 3790 Face 18458 1190 1003 8692 Face 18459 3500 1218 8135 Face 18460 1762 4726 13 Face 18461 391 11003 5033 Face 18462 8451 11004 4424 Face 18463 137 6060 5886 Face 18464 137 6188 6060 Face 18465 6413 6061 9503 Face 18466 6413 555 6061 Face 18467 4033 728 4155 Face 18468 2482 697 3634 Face 18469 6065 10611 6064 Face 18470 7317 6155 660 Face 18471 6262 478 9410 Face 18472 7160 6067 10367 Face 18473 7160 8598 6067 Face 18474 8986 6144 9282 Face 18475 3742 4209 3568 Face 18476 5122 1324 2903 Face 18477 3198 7522 6701 Face 18478 125 2583 11085 Face 18479 5414 10015 5164 Face 18480 5414 3541 10015 Face 18481 8042 1396 1252 Face 18482 3908 6073 4622 Face 18483 3908 6080 6073 Face 18484 5011 9948 2462 Face 18485 1968 3997 8002 Face 18486 9806 9391 6074 Face 18487 4484 9270 10478 Face 18488 5032 6075 769 Face 18489 5032 7891 6075 Face 18490 4492 534 3123 Face 18491 7193 6076 6653 Face 18492 7193 4141 6076 Face 18493 421 2503 8742 Face 18494 7088 6073 6080 Face 18495 6081 9275 3462 Face 18496 6443 566 9275 Face 18497 3462 10714 6081 Face 18498 8344 7053 1780 Face 18499 3314 1827 6083 Face 18500 684 833 9868 Face 18501 7509 9083 1757 Face 18502 5176 10277 10749 Face 18503 1398 10404 6088 Face 18504 2804 8146 1869 Face 18505 2804 1223 8146 Face 18506 8819 6889 3349 Face 18507 9103 884 7626 Face 18508 358 2700 7973 Face 18509 8784 5486 9206 Face 18510 8017 4904 9970 Face 18511 11033 10558 2304 Face 18512 3116 8800 8862 Face 18513 8929 6094 7602 Face 18514 3272 1290 8743 Face 18515 3272 9027 1290 Face 18516 1249 5054 948 Face 18517 9345 4379 244 Face 18518 9720 641 6098 Face 18519 2108 6099 5935 Face 18520 9596 2464 6909 Face 18521 11002 3753 7539 Face 18522 2586 10230 8315 Face 18523 6696 8333 2517 Face 18524 3400 7814 9849 Face 18525 8949 10153 6101 Face 18526 6640 6875 6106 Face 18527 600 2389 6108 Face 18528 7001 10971 7935 Face 18529 5880 2921 9915 Face 18530 1464 6552 3719 Face 18531 7422 5167 7302 Face 18532 666 10474 1823 Face 18533 6115 783 8581 Face 18534 2636 3174 7885 Face 18535 1134 6116 5397 Face 18536 11106 4360 1582 Face 18537 2687 3091 6118 Face 18538 10194 1280 1790 Face 18539 5762 3310 5327 Face 18540 7059 6125 2696 Face 18541 7059 9422 6125 Face 18542 10107 9815 6126 Face 18543 6127 1657 747 Face 18544 3593 8706 10364 Face 18545 7637 8309 4064 Face 18546 3033 7982 2585 Face 18547 10614 10099 9156 Face 18548 7534 4288 6130 Face 18549 4964 11040 6131 Face 18550 8397 3906 6133 Face 18551 5495 10260 9316 Face 18552 8004 1504 6135 Face 18553 4723 6767 6141 Face 18554 1696 4447 9289 Face 18555 4017 10707 3782 Face 18556 3914 10849 8158 Face 18557 9328 1030 3995 Face 18558 9328 6591 1030 Face 18559 5693 4021 6142 Face 18560 6242 10458 6143 Face 18561 9264 6468 5624 Face 18562 9942 6146 2548 Face 18563 2373 7210 4503 Face 18564 2373 7621 7210 Face 18565 115 7143 1358 Face 18566 1520 3857 5094 Face 18567 8656 7994 7419 Face 18568 10248 1663 6151 Face 18569 1969 9461 8210 Face 18570 4510 2870 9905 Face 18571 9338 9371 1722 Face 18572 7560 10590 4665 Face 18573 2841 9840 4437 Face 18574 3008 6154 847 Face 18575 3008 3007 6154 Face 18576 7664 10489 1544 Face 18577 7187 5000 10486 Face 18578 2803 6157 7400 Face 18579 3881 6158 6604 Face 18580 2880 6160 1486 Face 18581 10620 10750 6114 Face 18582 10620 1583 10750 Face 18583 6592 10450 6162 Face 18584 7875 158 9664 Face 18585 3190 4871 8707 Face 18586 9823 7065 3007 Face 18587 8145 11060 3770 Face 18588 8145 349 11060 Face 18589 9542 6165 6668 Face 18590 7472 4050 7781 Face 18591 9294 2025 8863 Face 18592 9294 3494 2025 Face 18593 8386 7264 5853 Face 18594 2964 809 5240 Face 18595 2964 8740 809 Face 18596 9568 3436 6166 Face 18597 245 6168 1268 Face 18598 3681 6374 1976 Face 18599 10950 1325 6930 Face 18600 9269 1143 6421 Face 18601 6039 2730 8320 Face 18602 1803 6502 1535 Face 18603 3850 10899 8066 Face 18604 3850 2154 10899 Face 18605 10341 10269 2354 Face 18606 9438 6409 6174 Face 18607 3096 9520 1120 Face 18608 11091 3268 6178 Face 18609 6872 6759 5395 Face 18610 8242 9729 6180 Face 18611 6828 6181 4247 Face 18612 6828 9860 6181 Face 18613 715 6186 5266 Face 18614 7107 9932 5561 Face 18615 7107 8440 9932 Face 18616 7963 1839 1487 Face 18617 7963 6902 1839 Face 18618 10427 7151 3087 Face 18619 10492 9344 3361 Face 18620 7483 9080 8610 Face 18621 3220 3529 8680 Face 18622 2565 7176 5707 Face 18623 7296 3002 2027 Face 18624 9444 7159 10636 Face 18625 9444 5642 7159 Face 18626 7348 427 6193 Face 18627 9306 4639 6194 Face 18628 8036 6196 3358 Face 18629 8036 8753 6196 Face 18630 8489 6198 601 Face 18631 8489 4654 6198 Face 18632 245 10623 11025 Face 18633 245 6309 10623 Face 18634 2240 673 7033 Face 18635 2240 4113 673 Face 18636 4464 10742 6200 Face 18637 9343 1603 1585 Face 18638 4435 6371 6202 Face 18639 10648 7057 994 Face 18640 841 7191 4192 Face 18641 10414 9589 6207 Face 18642 6208 9394 7616 Face 18643 4656 10109 4231 Face 18644 4656 6238 10109 Face 18645 726 8885 6214 Face 18646 3483 6215 3376 Face 18647 959 2933 10232 Face 18648 959 10370 2933 Face 18649 5565 6218 437 Face 18650 5565 7117 6218 Face 18651 6718 6855 6219 Face 18652 10819 6220 9227 Face 18653 887 10579 1483 Face 18654 1297 6117 6223 Face 18655 4473 9077 340 Face 18656 4975 6248 6226 Face 18657 7002 4039 3904 Face 18658 7002 1425 4039 Face 18659 6304 144 6233 Face 18660 546 6235 3676 Face 18661 546 9614 6235 Face 18662 3983 8453 2149 Face 18663 348 6239 212 Face 18664 348 8719 6239 Face 18665 5375 9301 6287 Face 18666 378 2703 9750 Face 18667 4832 6242 10229 Face 18668 1482 3119 6244 Face 18669 1920 254 4785 Face 18670 9706 416 6245 Face 18671 773 6246 10356 Face 18672 2719 10660 8479 Face 18673 9346 6248 5993 Face 18674 6492 3328 1413 Face 18675 7415 9045 869 Face 18676 5428 9445 6252 Face 18677 9349 3791 6611 Face 18678 7828 6753 8158 Face 18679 2339 3321 8191 Face 18680 8160 2577 5466 Face 18681 8592 4328 5250 Face 18682 6477 1256 4888 Face 18683 59 2381 9132 Face 18684 7228 1265 7163 Face 18685 2487 7853 4393 Face 18686 6266 5053 6265 Face 18687 2514 4633 10203 Face 18688 327 5052 2653 Face 18689 5477 10779 9257 Face 18690 2842 9840 2841 Face 18691 756 2349 8528 Face 18692 7751 9423 9502 Face 18693 7103 241 6272 Face 18694 3911 1176 7916 Face 18695 9251 4027 6275 Face 18696 8604 9708 6022 Face 18697 8604 1681 9708 Face 18698 1178 3841 6277 Face 18699 55 1807 2567 Face 18700 7982 3033 1691 Face 18701 38 7345 10636 Face 18702 6469 1307 2348 Face 18703 1257 6279 4102 Face 18704 1257 7528 6279 Face 18705 2073 3661 8063 Face 18706 2888 369 3120 Face 18707 526 9249 8833 Face 18708 8863 1238 109 Face 18709 3065 967 783 Face 18710 3065 4679 967 Face 18711 8946 819 6284 Face 18712 4912 643 1767 Face 18713 1137 6285 1399 Face 18714 1137 7019 6285 Face 18715 9301 9578 6287 Face 18716 10839 8601 9882 Face 18717 7113 4404 9046 Face 18718 6346 4843 6289 Face 18719 6086 10149 4055 Face 18720 3235 2936 9919 Face 18721 4939 6089 6291 Face 18722 6177 9698 595 Face 18723 6177 1076 9698 Face 18724 9420 3507 6293 Face 18725 11042 6296 1951 Face 18726 11042 2444 6296 Face 18727 10552 3473 10936 Face 18728 3077 1847 6298 Face 18729 1495 5159 6496 Face 18730 1495 3289 5159 Face 18731 9161 7417 1450 Face 18732 6233 10049 6304 Face 18733 10918 4560 9219 Face 18734 10918 6305 4560 Face 18735 10918 9539 6305 Face 18736 3405 10472 3404 Face 18737 9276 5073 6720 Face 18738 2077 6309 9607 Face 18739 8143 2820 3804 Face 18740 4892 1618 5228 Face 18741 4489 8653 5526 Face 18742 10848 6310 766 Face 18743 10848 3997 6310 Face 18744 859 6311 2687 Face 18745 980 2787 7512 Face 18746 2520 5970 6513 Face 18747 1672 5617 8634 Face 18748 4649 7540 4298 Face 18749 8938 5212 9106 Face 18750 4096 1285 10934 Face 18751 99 364 6320 Face 18752 932 8757 7900 Face 18753 932 11065 8757 Face 18754 2138 6654 5897 Face 18755 2247 5875 9401 Face 18756 7852 5835 6035 Face 18757 2035 10325 10493 Face 18758 5234 4783 3087 Face 18759 5699 6435 4818 Face 18760 4820 9462 2019 Face 18761 7852 9323 3933 Face 18762 6331 10454 4028 Face 18763 6331 7664 10454 Face 18764 8608 9263 2584 Face 18765 1873 2089 2686 Face 18766 9029 750 3187 Face 18767 8503 5668 1557 Face 18768 4337 6087 6336 Face 18769 129 6338 3710 Face 18770 10347 6915 68 Face 18771 1911 6340 7049 Face 18772 1911 10843 6340 Face 18773 867 10681 3528 Face 18774 867 4528 10681 Face 18775 8156 7372 1634 Face 18776 2145 6345 8081 Face 18777 2145 4798 6345 Face 18778 6289 6634 6346 Face 18779 6794 1963 6354 Face 18780 7205 7399 7533 Face 18781 5303 5160 3711 Face 18782 5303 4942 5160 Face 18783 636 6358 1268 Face 18784 636 1003 6358 Face 18785 7337 8568 6360 Face 18786 6179 7337 6360 Face 18787 607 7788 473 Face 18788 7457 2286 4572 Face 18789 9693 7590 9194 Face 18790 6851 8100 861 Face 18791 6851 2413 8100 Face 18792 10168 6363 6868 Face 18793 10168 9962 6363 Face 18794 8387 9643 2500 Face 18795 4362 4188 759 Face 18796 6929 216 9631 Face 18797 6929 7863 216 Face 18798 1160 10969 5071 Face 18799 1231 2604 6917 Face 18800 1231 9198 2604 Face 18801 4027 8956 7147 Face 18802 4117 629 9653 Face 18803 4117 2331 629 Face 18804 3780 4994 3040 Face 18805 3681 550 6374 Face 18806 10021 9021 1123 Face 18807 10021 5729 9021 Face 18808 10143 7330 4203 Face 18809 6381 8668 4784 Face 18810 4784 3093 6381 Face 18811 6383 101 6382 Face 18812 9469 840 6385 Face 18813 1026 2005 9385 Face 18814 203 6390 3185 Face 18815 203 10416 6390 Face 18816 8892 7026 1112 Face 18817 8088 8747 2196 Face 18818 8963 6391 7609 Face 18819 10596 5785 2908 Face 18820 8369 4422 2267 Face 18821 9322 8266 4086 Face 18822 8650 6393 2496 Face 18823 477 11049 1912 Face 18824 6394 10050 3747 Face 18825 2388 4417 1492 Face 18826 9761 7701 3369 Face 18827 6396 791 6410 Face 18828 5098 278 4485 Face 18829 9806 8829 824 Face 18830 6400 6589 2354 Face 18831 6589 6400 3274 Face 18832 228 8991 2923 Face 18833 228 7304 8991 Face 18834 1391 5819 2089 Face 18835 1391 10622 5819 Face 18836 9686 5493 1720 Face 18837 3059 6211 9845 Face 18838 6211 6401 9845 Face 18839 7243 10030 4877 Face 18840 3091 10520 4361 Face 18841 4251 7099 6403 Face 18842 7348 1368 1988 Face 18843 10313 9087 6407 Face 18844 4009 6408 2185 Face 18845 4009 5071 6408 Face 18846 9438 6174 6410 Face 18847 7431 6411 2768 Face 18848 6563 543 714 Face 18849 2222 10776 9389 Face 18850 2222 7257 10776 Face 18851 6416 6896 6415 Face 18852 9689 3127 9502 Face 18853 7680 6419 8620 Face 18854 1655 7106 6422 Face 18855 16 10457 6426 Face 18856 8873 1221 10956 Face 18857 1221 8873 4469 Face 18858 2665 6428 3574 Face 18859 7838 4903 9454 Face 18860 8776 9325 3809 Face 18861 2079 10090 11100 Face 18862 2079 11100 6430 Face 18863 472 1447 9349 Face 18864 1172 10506 7698 Face 18865 7688 6433 3410 Face 18866 8727 5429 2454 Face 18867 7128 5010 10249 Face 18868 165 886 4746 Face 18869 1709 6436 1960 Face 18870 1709 6883 6436 Face 18871 1184 9464 1814 Face 18872 6597 7603 5786 Face 18873 9368 10587 6438 Face 18874 6743 6439 10279 Face 18875 796 2718 8434 Face 18876 1530 10803 8866 Face 18877 10371 3072 4176 Face 18878 2452 9184 6447 Face 18879 6313 5341 6451 Face 18880 7861 6453 2135 Face 18881 7861 9441 6453 Face 18882 5877 6454 1217 Face 18883 9875 6456 5769 Face 18884 9875 2642 6456 Face 18885 646 5616 5873 Face 18886 70 7902 9008 Face 18887 1729 5735 5399 Face 18888 1729 10314 5735 Face 18889 3273 6459 3375 Face 18890 3273 1210 6459 Face 18891 7876 8279 6461 Face 18892 10161 6463 1145 Face 18893 4654 6464 4630 Face 18894 10031 7821 6829 Face 18895 6467 3518 6466 Face 18896 9264 1491 6468 Face 18897 10843 7507 6470 Face 18898 2028 6610 6472 Face 18899 5994 4671 8813 Face 18900 9757 4369 1639 Face 18901 4049 8825 1265 Face 18902 4413 6475 10275 Face 18903 4400 853 6232 Face 18904 8435 4110 9816 Face 18905 7333 8289 4469 Face 18906 7333 755 8289 Face 18907 9906 3629 8252 Face 18908 9906 6625 3629 Face 18909 10951 6480 6213 Face 18910 10951 1142 6480 Face 18911 703 7143 5226 Face 18912 6366 2973 10496 Face 18913 3206 1291 1141 Face 18914 7007 7575 9780 Face 18915 10790 9515 6482 Face 18916 8621 3334 3872 Face 18917 9165 8263 8107 Face 18918 4826 3631 10281 Face 18919 2248 704 2153 Face 18920 5219 6486 6734 Face 18921 5219 6019 6486 Face 18922 10492 1362 112 Face 18923 8335 6489 5172 Face 18924 8335 7211 6489 Face 18925 6795 4757 4543 Face 18926 8936 5936 8204 Face 18927 417 6491 8067 Face 18928 417 2558 6491 Face 18929 4352 4207 4605 Face 18930 2062 6493 9235 Face 18931 452 9133 7630 Face 18932 9594 6495 7208 Face 18933 9594 2713 6495 Face 18934 9901 887 1828 Face 18935 5537 530 6499 Face 18936 6268 8638 9817 Face 18937 5277 3839 888 Face 18938 7953 9190 6504 Face 18939 1693 3356 2916 Face 18940 6549 144 6304 Face 18941 8591 4017 6509 Face 18942 1770 4614 6510 Face 18943 1770 6510 1079 Face 18944 3615 921 6512 Face 18945 8008 10354 6515 Face 18946 14 2093 4628 Face 18947 10005 8068 6635 Face 18948 123 10064 7500 Face 18949 2082 2083 5643 Face 18950 3090 6522 1733 Face 18951 3090 457 6522 Face 18952 1727 6523 4053 Face 18953 8166 3357 6524 Face 18954 6525 10856 6772 Face 18955 332 6526 5991 Face 18956 2642 3357 5672 Face 18957 10394 10243 9186 Face 18958 7973 6529 10271 Face 18959 7973 8126 6529 Face 18960 374 5869 1429 Face 18961 223 1893 4434 Face 18962 4764 7208 4279 Face 18963 4764 9594 7208 Face 18964 6133 6532 4376 Face 18965 6133 8043 6532 Face 18966 4609 4154 4610 Face 18967 278 6818 4485 Face 18968 43 4928 6535 Face 18969 4364 6536 10174 Face 18970 4364 3934 6536 Face 18971 805 4328 9342 Face 18972 7269 8430 6540 Face 18973 5283 3942 1138 Face 18974 9372 6700 6851 Face 18975 7918 459 6700 Face 18976 6649 9134 6541 Face 18977 5925 4981 7239 Face 18978 10919 7182 7853 Face 18979 10919 2200 7182 Face 18980 7948 6543 6417 Face 18981 7948 11062 6543 Face 18982 9107 5218 9287 Face 18983 1863 4131 6545 Face 18984 1987 8573 1217 Face 18985 1987 5410 8573 Face 18986 2971 5260 3249 Face 18987 7844 1481 8679 Face 18988 4112 8689 1481 Face 18989 2021 3629 10005 Face 18990 10716 8060 4479 Face 18991 334 2242 4137 Face 18992 4996 5480 6553 Face 18993 6643 6554 11046 Face 18994 6173 350 6555 Face 18995 8062 6209 2590 Face 18996 1064 5328 4301 Face 18997 1064 1387 5328 Face 18998 8696 3237 10778 Face 18999 10370 10607 2038 Face 19000 10032 336 2053 Face 19001 7538 4790 173 Face 19002 653 2015 3807 Face 19003 653 143 2015 Face 19004 1860 2703 6566 Face 19005 457 7122 6522 Face 19006 457 9793 7122 Face 19007 9336 5143 3079 Face 19008 9336 8430 5143 Face 19009 10249 6316 7135 Face 19010 10859 3247 2247 Face 19011 10859 3292 3247 Face 19012 10320 2475 978 Face 19013 7700 5712 9813 Face 19014 2822 6302 6571 Face 19015 5253 3553 6576 Face 19016 9851 276 7397 Face 19017 9851 7161 276 Face 19018 201 8042 4123 Face 19019 10886 8676 1420 Face 19020 1941 2953 1339 Face 19021 1941 2463 2953 Face 19022 410 2052 1278 Face 19023 6050 6049 6579 Face 19024 6095 5286 9493 Face 19025 1390 6580 2432 Face 19026 1426 6582 8712 Face 19027 1426 9558 6582 Face 19028 6557 7565 6583 Face 19029 7042 9735 8181 Face 19030 7580 4237 6584 Face 19031 76 8272 2903 Face 19032 8391 9986 36 Face 19033 1700 1876 7881 Face 19034 4578 8375 2620 Face 19035 5804 3795 6589 Face 19036 8636 1472 3708 Face 19037 8636 6643 1472 Face 19038 1373 2324 6593 Face 19039 9801 5461 515 Face 19040 1156 2983 10615 Face 19041 4724 3546 9047 Face 19042 4855 6598 3197 Face 19043 7524 6599 3088 Face 19044 2663 1590 9485 Face 19045 2663 956 1590 Face 19046 4732 3203 5333 Face 19047 8959 4239 9354 Face 19048 1116 2552 10998 Face 19049 710 4687 10433 Face 19050 6874 6871 4889 Face 19051 1011 3178 1521 Face 19052 3206 1141 8596 Face 19053 3206 10114 6605 Face 19054 8613 1224 6494 Face 19055 8613 9880 1224 Face 19056 4331 6606 5574 Face 19057 4947 3165 8452 Face 19058 9761 10259 7701 Face 19059 9761 3797 10259 Face 19060 5174 1060 8182 Face 19061 11041 6614 4842 Face 19062 11041 10521 6614 Face 19063 10976 4814 4067 Face 19064 316 1161 5351 Face 19065 2289 4142 2209 Face 19066 3157 8954 9816 Face 19067 4 2107 2108 Face 19068 3125 331 10027 Face 19069 8447 6622 2520 Face 19070 8447 4735 6622 Face 19071 6156 2465 5031 Face 19072 2074 10934 516 Face 19073 5144 8597 6625 Face 19074 8256 3380 5165 Face 19075 6654 2138 8567 Face 19076 7218 10263 6626 Face 19077 58 6629 6446 Face 19078 9463 2845 6629 Face 19079 2832 648 6632 Face 19080 6716 2898 1276 Face 19081 5816 931 6633 Face 19082 250 7474 9523 Face 19083 4681 3001 406 Face 19084 1816 8121 8915 Face 19085 1816 8817 8121 Face 19086 10339 6928 604 Face 19087 8529 5177 4842 Face 19088 3954 2660 1807 Face 19089 1991 71 6635 Face 19090 10307 4009 10987 Face 19091 5914 1882 4656 Face 19092 458 6640 6106 Face 19093 9766 1158 9894 Face 19094 3172 7384 6642 Face 19095 8663 10008 6644 Face 19096 10952 3079 4952 Face 19097 3753 9850 6645 Face 19098 184 6647 6087 Face 19099 8300 1240 6648 Face 19100 2652 8300 6648 Face 19101 8405 1369 10848 Face 19102 10172 8201 1122 Face 19103 8165 3309 1410 Face 19104 4022 1540 6656 Face 19105 9919 2645 6657 Face 19106 9051 1764 9654 Face 19107 9696 10714 9862 Face 19108 9696 6443 10714 Face 19109 5656 6126 5786 Face 19110 5927 522 11017 Face 19111 8137 1907 10430 Face 19112 2263 4337 5842 Face 19113 7073 4393 4770 Face 19114 7231 2885 7132 Face 19115 7231 8347 2885 Face 19116 829 9334 6662 Face 19117 1315 6664 6224 Face 19118 1315 2401 6664 Face 19119 1737 486 1085 Face 19120 509 8749 2478 Face 19121 4788 6667 25 Face 19122 4788 3141 6667 Face 19123 1743 8979 10425 Face 19124 704 4248 4132 Face 19125 1273 10422 274 Face 19126 1273 8569 10422 Face 19127 3323 7393 6670 Face 19128 3147 1182 1063 Face 19129 10822 5045 2005 Face 19130 10957 2508 9041 Face 19131 10957 9524 2508 Face 19132 4295 4558 2605 Face 19133 1098 5717 3869 Face 19134 8373 9435 9786 Face 19135 5473 2568 6677 Face 19136 955 7623 2427 Face 19137 1138 3278 6678 Face 19138 1047 6679 737 Face 19139 7589 8665 8301 Face 19140 637 247 3813 Face 19141 4540 9293 9113 Face 19142 1895 856 9632 Face 19143 7383 11090 2930 Face 19144 8265 708 8042 Face 19145 6452 6697 6385 Face 19146 6452 6020 6697 Face 19147 1167 9389 6699 Face 19148 9372 5374 6700 Face 19149 2455 10686 8284 Face 19150 7644 9624 6899 Face 19151 6448 4632 7400 Face 19152 2814 6702 10631 Face 19153 2814 7173 6702 Face 19154 8070 4805 6705 Face 19155 301 6706 459 Face 19156 301 7838 6706 Face 19157 338 382 5671 Face 19158 5161 5257 5306 Face 19159 2126 1587 4906 Face 19160 4628 5543 10391 Face 19161 9004 8704 3799 Face 19162 10611 9504 3645 Face 19163 10611 6065 9504 Face 19164 8055 9985 6715 Face 19165 6141 10775 10538 Face 19166 10776 8103 7484 Face 19167 657 5835 7852 Face 19168 1276 6037 6716 Face 19169 2708 10457 2798 Face 19170 5458 6717 8877 Face 19171 512 9841 6720 Face 19172 8111 6721 40 Face 19173 1542 6549 6721 Face 19174 8111 1542 6721 Face 19175 2978 2585 1766 Face 19176 516 1042 2074 Face 19177 1233 5280 2863 Face 19178 3116 1233 8495 Face 19179 3116 5280 1233 Face 19180 9352 8069 6723 Face 19181 7393 3728 6670 Face 19182 2443 9583 6725 Face 19183 4809 1039 8681 Face 19184 2590 9322 1121 Face 19185 7245 8484 6881 Face 19186 1739 8870 4930 Face 19187 1639 4451 9757 Face 19188 1639 612 4451 Face 19189 7350 10947 480 Face 19190 4048 1258 2589 Face 19191 8061 2763 1025 Face 19192 9200 4024 1519 Face 19193 6798 6732 136 Face 19194 6798 5087 6732 Face 19195 6860 9647 5144 Face 19196 1131 676 1736 Face 19197 3690 6839 6737 Face 19198 3400 5407 5457 Face 19199 8971 7347 9169 Face 19200 8971 3061 7347 Face 19201 7039 3021 6739 Face 19202 7251 587 6019 Face 19203 7251 5909 587 Face 19204 3993 6742 392 Face 19205 11002 5703 6744 Face 19206 8572 2340 341 Face 19207 10448 1384 10235 Face 19208 1692 11111 769 Face 19209 9756 4588 3041 Face 19210 5449 5587 6751 Face 19211 5245 6753 7828 Face 19212 5245 9770 6753 Face 19213 10206 6758 6577 Face 19214 10206 4655 6758 Face 19215 7324 10958 7493 Face 19216 10908 10728 6760 Face 19217 10881 9867 5390 Face 19218 10881 6054 9867 Face 19219 9258 6762 4439 Face 19220 9258 1515 6762 Face 19221 7318 1521 5849 Face 19222 3527 6826 6765 Face 19223 2306 426 333 Face 19224 8030 1009 6770 Face 19225 8905 9295 1962 Face 19226 8257 296 3846 Face 19227 1934 8779 6775 Face 19228 8599 6966 6556 Face 19229 7440 6776 6148 Face 19230 7440 2132 6776 Face 19231 1205 4304 4408 Face 19232 6677 2568 9362 Face 19233 9065 6677 9362 Face 19234 9132 5184 5465 Face 19235 9985 3447 5413 Face 19236 10001 1726 1969 Face 19237 3126 4196 7473 Face 19238 928 1178 6091 Face 19239 1848 6787 9953 Face 19240 4688 6627 3608 Face 19241 6352 10855 6789 Face 19242 1865 3333 8545 Face 19243 6919 2017 6791 Face 19244 2041 9058 6792 Face 19245 1762 218 4726 Face 19246 10973 2126 4906 Face 19247 8409 1525 4135 Face 19248 6305 910 4560 Face 19249 4236 1475 3502 Face 19250 688 7271 6797 Face 19251 713 10463 6799 Face 19252 713 6799 9829 Face 19253 515 8752 6800 Face 19254 907 4864 4611 Face 19255 907 2831 4864 Face 19256 10096 6801 6895 Face 19257 10096 446 6801 Face 19258 6803 5384 6802 Face 19259 9710 6806 7589 Face 19260 9710 5924 6806 Face 19261 1628 191 34 Face 19262 4066 6617 10921 Face 19263 6809 3783 10820 Face 19264 2320 7534 1758 Face 19265 2320 6871 7534 Face 19266 3875 4207 6811 Face 19267 7728 6813 10535 Face 19268 1897 5149 6815 Face 19269 8930 8628 8933 Face 19270 9458 7315 6817 Face 19271 9458 3672 1813 Face 19272 2290 1017 2654 Face 19273 3072 1067 6819 Face 19274 1641 6821 1093 Face 19275 1641 5691 6821 Face 19276 1622 5901 2293 Face 19277 7338 7537 6823 Face 19278 8491 5709 6824 Face 19279 3663 9381 5287 Face 19280 6450 10510 1485 Face 19281 9088 8394 719 Face 19282 2767 454 1470 Face 19283 2767 10225 454 Face 19284 9531 4779 6828 Face 19285 9857 90 7040 Face 19286 9857 3115 90 Face 19287 8534 1796 2571 Face 19288 82 10179 3662 Face 19289 10035 269 3967 Face 19290 3689 10347 7081 Face 19291 2606 9830 8891 Face 19292 3440 4522 6838 Face 19293 3578 6737 6839 Face 19294 1813 7315 9458 Face 19295 1830 1222 5346 Face 19296 6840 5870 668 Face 19297 7369 7864 9653 Face 19298 282 3673 10407 Face 19299 282 9302 3673 Face 19300 9724 9251 6845 Face 19301 66 7520 1117 Face 19302 6847 1117 7520 Face 19303 1081 6617 6044 Face 19304 225 1899 4449 Face 19305 1900 5521 7088 Face 19306 1900 2034 5521 Face 19307 10532 2697 8912 Face 19308 9288 8520 4037 Face 19309 9288 7875 8520 Face 19310 2797 8560 6848 Face 19311 5233 4383 6850 Face 19312 861 9372 6851 Face 19313 2412 6852 6995 Face 19314 2412 3783 6852 Face 19315 8656 9642 1600 Face 19316 4951 9397 2933 Face 19317 7993 1001 4721 Face 19318 8117 5650 2288 Face 19319 8117 2599 5650 Face 19320 544 6750 6856 Face 19321 8315 6860 9906 Face 19322 7706 7705 928 Face 19323 592 7331 8708 Face 19324 4377 6465 3922 Face 19325 7284 6478 3105 Face 19326 673 10684 8658 Face 19327 7712 3194 3289 Face 19328 10617 518 4313 Face 19329 3893 273 3610 Face 19330 4850 3241 5083 Face 19331 4850 1787 3241 Face 19332 9711 8259 4119 Face 19333 9307 4969 3843 Face 19334 8592 9636 6880 Face 19335 9241 7673 6881 Face 19336 2014 10483 6885 Face 19337 409 5855 5533 Face 19338 6855 4517 8414 Face 19339 3962 6891 849 Face 19340 3962 7049 6891 Face 19341 3798 4729 11106 Face 19342 10564 2714 5154 Face 19343 6892 743 8357 Face 19344 3185 6894 203 Face 19345 3185 5910 6894 Face 19346 6896 6895 6801 Face 19347 2458 4751 2911 Face 19348 9661 2060 6900 Face 19349 10416 2132 6902 Face 19350 309 4387 9629 Face 19351 6943 4952 6904 Face 19352 7877 3174 4230 Face 19353 9264 6827 1491 Face 19354 1404 6907 1499 Face 19355 1404 9243 6907 Face 19356 8214 4198 6578 Face 19357 6910 10329 8010 Face 19358 782 8201 2739 Face 19359 3467 11073 10949 Face 19360 8618 9636 8592 Face 19361 10910 9996 4488 Face 19362 4873 6917 3506 Face 19363 4873 9439 6917 Face 19364 6438 9758 2017 Face 19365 1409 4285 8525 Face 19366 1586 8607 9510 Face 19367 1999 10497 6214 Face 19368 6921 6920 3768 Face 19369 8675 10695 6920 Face 19370 6922 6921 7025 Face 19371 6920 6921 6922 Face 19372 582 10175 2198 Face 19373 7276 7204 3307 Face 19374 8463 96 694 Face 19375 3567 6927 4548 Face 19376 3567 3084 6927 Face 19377 10339 3726 6928 Face 19378 4267 5246 2768 Face 19379 10963 7724 4583 Face 19380 5315 10722 9443 Face 19381 1937 6933 7804 Face 19382 1937 6265 6933 Face 19383 1935 6934 4826 Face 19384 8508 1066 8150 Face 19385 9672 3990 6936 Face 19386 4979 2680 6937 Face 19387 4022 6938 1562 Face 19388 4022 6148 6938 Face 19389 6939 7481 1301 Face 19390 145 6939 9924 Face 19391 145 7481 6939 Face 19392 4048 2589 3653 Face 19393 1184 4211 6944 Face 19394 9661 6900 3560 Face 19395 9885 9019 9181 Face 19396 2372 6897 9035 Face 19397 7763 6947 6857 Face 19398 7763 3510 6947 Face 19399 10129 3264 4040 Face 19400 155 3304 5306 Face 19401 8803 661 5207 Face 19402 5118 6713 302 Face 19403 3710 5110 670 Face 19404 10572 3797 9933 Face 19405 4766 10988 7279 Face 19406 7953 3408 6954 Face 19407 6214 5076 6959 Face 19408 2329 7260 1573 Face 19409 8237 4840 2199 Face 19410 9218 4703 1786 Face 19411 10600 3301 3638 Face 19412 10600 2561 3301 Face 19413 2480 3253 6679 Face 19414 7583 10109 8031 Face 19415 822 745 7184 Face 19416 822 4025 745 Face 19417 3869 6967 7836 Face 19418 3869 4367 6967 Face 19419 9445 675 6252 Face 19420 2045 7326 2063 Face 19421 7018 395 2751 Face 19422 7018 2881 395 Face 19423 2841 6969 2842 Face 19424 8525 4285 2817 Face 19425 3451 1671 10110 Face 19426 4394 10049 6975 Face 19427 6814 8559 3608 Face 19428 3499 7970 3356 Face 19429 1656 2772 6916 Face 19430 1656 9749 2772 Face 19431 9445 10625 6981 Face 19432 7664 1544 9012 Face 19433 7620 9181 9019 Face 19434 2835 1816 1371 Face 19435 9181 7620 7117 Face 19436 3600 3335 7379 Face 19437 9326 7450 6774 Face 19438 98 3610 6990 Face 19439 384 8 1917 Face 19440 10623 6309 2077 Face 19441 1629 6993 7502 Face 19442 1629 10336 6993 Face 19443 1646 9008 2232 Face 19444 1646 8137 9008 Face 19445 866 5583 8232 Face 19446 866 1378 5583 Face 19447 10014 8794 9453 Face 19448 36 7787 6996 Face 19449 2706 10150 4524 Face 19450 991 9071 7001 Face 19451 261 3152 8956 Face 19452 5484 1669 7003 Face 19453 7378 10174 10713 Face 19454 26 9875 2803 Face 19455 981 7005 9434 Face 19456 981 2527 7005 Face 19457 1097 7006 74 Face 19458 1097 1754 7006 Face 19459 3518 3519 7942 Face 19460 6764 7009 9181 Face 19461 6764 6615 7009 Face 19462 542 5463 1205 Face 19463 7695 6806 5858 Face 19464 7695 7589 6806 Face 19465 3608 7018 6814 Face 19466 1865 9663 10574 Face 19467 7292 8400 7019 Face 19468 4592 7020 7946 Face 19469 4592 2530 7020 Face 19470 5689 3114 10429 Face 19471 8594 979 8732 Face 19472 5465 6513 7849 Face 19473 9098 5891 4075 Face 19474 9098 7355 5891 Face 19475 9306 7030 6263 Face 19476 9306 6194 7030 Face 19477 419 4964 9075 Face 19478 7652 6755 6516 Face 19479 7213 10436 1224 Face 19480 251 9621 102 Face 19481 251 4980 9621 Face 19482 691 9711 4119 Face 19483 141 2120 942 Face 19484 6271 2509 6835 Face 19485 6271 9912 2509 Face 19486 8911 2784 6389 Face 19487 8273 4626 5039 Face 19488 5141 3344 2852 Face 19489 10301 10132 4279 Face 19490 5172 3742 3568 Face 19491 7841 2319 3534 Face 19492 7841 2930 2319 Face 19493 573 7052 5900 Face 19494 5498 4597 776 Face 19495 2485 7055 6639 Face 19496 10461 6919 3974 Face 19497 4028 4924 7509 Face 19498 649 2909 11054 Face 19499 668 1748 914 Face 19500 5908 10830 2175 Face 19501 157 7725 5182 Face 19502 6918 8582 1834 Face 19503 3949 7061 9135 Face 19504 3949 3509 7061 Face 19505 8461 471 10076 Face 19506 8461 8116 471 Face 19507 1020 8614 7064 Face 19508 10755 3101 7065 Face 19509 8412 10886 166 Face 19510 4898 6482 7069 Face 19511 5113 8216 10129 Face 19512 7948 7074 559 Face 19513 7948 6417 7074 Face 19514 3317 8919 7727 Face 19515 3317 4970 8919 Face 19516 10162 8435 8954 Face 19517 7406 4230 7881 Face 19518 9159 4048 7080 Face 19519 68 7911 7081 Face 19520 3816 7085 1403 Face 19521 11068 10285 305 Face 19522 8408 124 5845 Face 19523 9568 6166 1607 Face 19524 856 1895 7093 Face 19525 856 7093 5720 Face 19526 2584 7705 7706 Face 19527 5710 7097 9665 Face 19528 5710 9820 7097 Face 19529 8459 1293 4759 Face 19530 8459 10932 1293 Face 19531 933 5800 7943 Face 19532 9974 5799 6592 Face 19533 9974 7837 5799 Face 19534 4533 10047 7362 Face 19535 3742 5172 9262 Face 19536 9718 2480 9790 Face 19537 9685 7412 7103 Face 19538 1655 896 7106 Face 19539 1598 2473 9763 Face 19540 7866 7498 7108 Face 19541 3724 3818 7110 Face 19542 7746 9209 10394 Face 19543 2435 3934 3654 Face 19544 3253 9718 6831 Face 19545 787 7112 351 Face 19546 787 1098 7112 Face 19547 10360 6040 11095 Face 19548 4558 4295 11038 Face 19549 9256 11064 5622 Face 19550 266 880 1350 Face 19551 2717 10816 6367 Face 19552 8234 2006 4895 Face 19553 387 3809 7120 Face 19554 9793 1004 7122 Face 19555 8224 8655 9138 Face 19556 11010 11080 9236 Face 19557 9010 4940 10317 Face 19558 7368 7130 2758 Face 19559 7368 5757 7130 Face 19560 4970 8882 4038 Face 19561 1160 2393 7134 Face 19562 5829 6554 8636 Face 19563 5829 11046 6554 Face 19564 4846 5033 7135 Face 19565 5923 8317 3972 Face 19566 5923 2243 8317 Face 19567 7145 9350 8065 Face 19568 7148 6275 7147 Face 19569 7331 1504 8475 Face 19570 10015 696 10646 Face 19571 8747 2895 2196 Face 19572 10293 10811 5777 Face 19573 4245 7151 1710 Face 19574 9778 7153 7392 Face 19575 10961 9634 4895 Face 19576 2951 412 2335 Face 19577 4666 8606 9357 Face 19578 10692 1272 7133 Face 19579 3938 2991 2081 Face 19580 1591 413 7162 Face 19581 1736 88 7494 Face 19582 925 4734 6240 Face 19583 7163 8825 559 Face 19584 7738 939 2526 Face 19585 8159 802 4838 Face 19586 2922 3270 3431 Face 19587 2922 8867 3270 Face 19588 7172 7171 7470 Face 19589 1466 254 448 Face 19590 5595 4418 7173 Face 19591 1189 7469 7174 Face 19592 2565 10940 7176 Face 19593 10310 7177 6641 Face 19594 10310 5691 7177 Face 19595 3897 7178 7212 Face 19596 3897 9587 7178 Face 19597 339 7788 6873 Face 19598 283 1895 7179 Face 19599 4023 8118 8559 Face 19600 1626 34 10443 Face 19601 747 1871 4720 Face 19602 5324 6883 480 Face 19603 9763 8232 9837 Face 19604 4766 257 10988 Face 19605 9089 4072 3561 Face 19606 1800 2714 10564 Face 19607 8149 6256 7727 Face 19608 2712 8777 4752 Face 19609 2712 4268 8777 Face 19610 149 8222 3767 Face 19611 1359 4042 10346 Face 19612 7411 7868 5141 Face 19613 2604 9198 3506 Face 19614 3700 7198 2762 Face 19615 4199 7681 4658 Face 19616 7989 7655 7201 Face 19617 2048 1353 7203 Face 19618 5127 4461 2188 Face 19619 3110 7694 5249 Face 19620 9310 1460 2600 Face 19621 7399 7205 10793 Face 19622 10600 7207 2561 Face 19623 10600 379 7207 Face 19624 10251 7209 9709 Face 19625 1138 6678 4115 Face 19626 2505 5075 1993 Face 19627 1426 7211 8335 Face 19628 9947 4480 2626 Face 19629 2791 5682 5974 Face 19630 305 1971 11068 Face 19631 6915 3566 7216 Face 19632 2839 7217 64 Face 19633 2839 5196 7217 Face 19634 408 8103 7167 Face 19635 7394 1411 6460 Face 19636 7394 6018 1411 Face 19637 1309 8094 7227 Face 19638 349 7525 4063 Face 19639 674 973 7717 Face 19640 674 6172 973 Face 19641 1229 1230 1537 Face 19642 3228 9772 9752 Face 19643 4465 7233 7555 Face 19644 4465 7817 7233 Face 19645 4091 7234 9193 Face 19646 4091 5670 7234 Face 19647 1741 7416 1740 Face 19648 5294 136 7235 Face 19649 248 7236 9601 Face 19650 248 5677 7236 Face 19651 9325 10540 2203 Face 19652 9325 2203 2322 Face 19653 6788 3826 7640 Face 19654 4981 1169 7239 Face 19655 651 7366 6099 Face 19656 8754 9527 7241 Face 19657 320 2874 7242 Face 19658 1510 10763 6088 Face 19659 886 6093 1427 Face 19660 617 2329 7247 Face 19661 6785 7230 5343 Face 19662 8148 6158 3881 Face 19663 7466 9471 4803 Face 19664 941 10515 7254 Face 19665 3652 7255 8390 Face 19666 3652 2048 7255 Face 19667 7615 8811 7256 Face 19668 3515 2595 7261 Face 19669 2003 7262 126 Face 19670 2003 6139 7262 Face 19671 1268 7265 5958 Face 19672 3976 2459 7265 Face 19673 1268 3976 7265 Face 19674 4587 2802 6785 Face 19675 9066 7267 8497 Face 19676 9066 1322 7267 Face 19677 10267 5706 10786 Face 19678 6760 2398 264 Face 19679 4919 4918 7189 Face 19680 6140 9671 3057 Face 19681 9299 7281 2337 Face 19682 9299 9930 7281 Face 19683 10544 5585 1264 Face 19684 7366 7283 6099 Face 19685 7366 7798 7283 Face 19686 2808 9716 7284 Face 19687 2540 2361 7286 Face 19688 7196 8316 6169 Face 19689 7196 5072 8316 Face 19690 8373 1964 9435 Face 19691 6516 11099 7761 Face 19692 6516 6518 11099 Face 19693 1893 8152 6301 Face 19694 7019 1137 7292 Face 19695 521 2721 7161 Face 19696 10651 7298 6593 Face 19697 4739 4240 9609 Face 19698 918 239 11047 Face 19699 10126 7557 8479 Face 19700 256 10550 10330 Face 19701 900 7305 7320 Face 19702 900 9967 7305 Face 19703 4617 7306 4959 Face 19704 5311 9889 1186 Face 19705 6382 7308 6383 Face 19706 4930 6156 1739 Face 19707 9943 7132 4970 Face 19708 3763 7760 8166 Face 19709 10591 5338 10590 Face 19710 3398 7312 5779 Face 19711 3398 3546 7312 Face 19712 540 7313 10232 Face 19713 1629 4524 8147 Face 19714 9364 7341 2418 Face 19715 9364 4679 7341 Face 19716 9524 9146 2387 Face 19717 280 2824 3988 Face 19718 3020 4489 4284 Face 19719 7580 2815 7316 Face 19720 1976 10605 9059 Face 19721 7624 2673 8139 Face 19722 1563 1001 7993 Face 19723 1563 9794 1001 Face 19724 4777 8171 4128 Face 19725 4777 1422 8171 Face 19726 2197 1679 2161 Face 19727 7326 5688 2430 Face 19728 5172 3568 8335 Face 19729 1995 5974 7327 Face 19730 9006 5914 4589 Face 19731 4277 1329 7328 Face 19732 8039 7140 7329 Face 19733 10143 6908 7330 Face 19734 1436 6007 7331 Face 19735 8992 7908 2646 Face 19736 7366 651 10372 Face 19737 1836 8218 6294 Face 19738 8027 5761 7335 Face 19739 6341 2123 3142 Face 19740 6341 10165 2123 Face 19741 3904 4039 7340 Face 19742 8789 4023 9856 Face 19743 4023 8789 1972 Face 19744 2907 1022 7341 Face 19745 9960 3380 8256 Face 19746 9960 9549 3380 Face 19747 2324 1373 3583 Face 19748 3846 2440 955 Face 19749 6541 4551 6649 Face 19750 3416 9356 7350 Face 19751 2131 7353 9747 Face 19752 9370 10205 778 Face 19753 4247 9126 7357 Face 19754 7033 2657 7358 Face 19755 343 2069 537 Face 19756 3774 777 4599 Face 19757 5038 7360 7310 Face 19758 5038 9285 7360 Face 19759 8037 7100 7361 Face 19760 8641 5169 7364 Face 19761 10104 3887 4172 Face 19762 525 7523 1572 Face 19763 7367 2088 7826 Face 19764 5454 9055 8746 Face 19765 4751 2458 2539 Face 19766 9811 7375 1652 Face 19767 9811 864 7375 Face 19768 7410 1464 7376 Face 19769 264 8187 10007 Face 19770 1194 3625 7384 Face 19771 7387 6119 7386 Face 19772 4895 2042 8234 Face 19773 7532 7388 8096 Face 19774 1011 1521 7318 Face 19775 10905 3516 9922 Face 19776 8583 8352 84 Face 19777 8080 8622 7394 Face 19778 2339 8191 7396 Face 19779 6048 7398 5638 Face 19780 6048 7282 7398 Face 19781 9176 219 908 Face 19782 2090 8007 8997 Face 19783 1980 5505 5072 Face 19784 8980 5829 5505 Face 19785 2873 1698 6840 Face 19786 9048 5063 2291 Face 19787 10449 9306 7407 Face 19788 11023 8385 8823 Face 19789 7211 9562 5955 Face 19790 2898 1846 1276 Face 19791 10334 200 8448 Face 19792 9057 5055 3764 Face 19793 7251 5219 9495 Face 19794 8924 4940 2350 Face 19795 10993 8763 5010 Face 19796 8820 160 3964 Face 19797 10254 4021 7685 Face 19798 10929 10853 5300 Face 19799 10929 4802 10853 Face 19800 10678 7424 9951 Face 19801 3539 7427 6749 Face 19802 3539 10273 7427 Face 19803 189 483 10607 Face 19804 9829 6533 10955 Face 19805 3192 460 3445 Face 19806 9628 3169 7033 Face 19807 8069 9352 8986 Face 19808 154 7433 4328 Face 19809 154 3279 7433 Face 19810 7099 4251 7434 Face 19811 9255 7692 1949 Face 19812 4810 1730 8284 Face 19813 4749 10335 7443 Face 19814 5870 4961 760 Face 19815 934 3946 7448 Face 19816 10991 3116 7140 Face 19817 4429 823 5594 Face 19818 4429 1728 823 Face 19819 9317 5765 10235 Face 19820 4367 7460 9787 Face 19821 4082 5865 7461 Face 19822 5774 1148 2076 Face 19823 5524 7462 10671 Face 19824 5524 10265 7462 Face 19825 7463 8943 2995 Face 19826 10302 5520 7464 Face 19827 693 5233 6850 Face 19828 1365 2127 10320 Face 19829 5833 8311 2854 Face 19830 2534 10002 10340 Face 19831 2534 7986 10002 Face 19832 9145 7469 1189 Face 19833 6092 7476 4653 Face 19834 6092 10073 7476 Face 19835 2442 5295 1415 Face 19836 2434 132 7479 Face 19837 622 9189 525 Face 19838 622 1567 9189 Face 19839 10835 1166 8278 Face 19840 789 7810 4057 Face 19841 10119 4068 7077 Face 19842 1989 8209 7489 Face 19843 2054 8207 7490 Face 19844 1317 8273 6259 Face 19845 1815 4618 7493 Face 19846 9314 9976 7268 Face 19847 5191 3628 6361 Face 19848 10901 5386 699 Face 19849 4173 10218 3018 Face 19850 4173 7108 7498 Face 19851 3891 6471 7499 Face 19852 2846 5057 10747 Face 19853 5083 3241 7584 Face 19854 6094 6212 7503 Face 19855 997 4003 2292 Face 19856 2547 10916 7479 Face 19857 1434 10836 4399 Face 19858 1434 10907 10836 Face 19859 4366 899 9123 Face 19860 10507 7508 5304 Face 19861 10507 5451 7508 Face 19862 6414 7514 10583 Face 19863 6414 10214 7514 Face 19864 10191 10281 3631 Face 19865 4480 9831 4084 Face 19866 5059 971 7517 Face 19867 175 9490 2542 Face 19868 8782 7518 9650 Face 19869 2623 7772 7519 Face 19870 4412 3447 9985 Face 19871 33 10559 8965 Face 19872 8135 10494 4712 Face 19873 8135 2578 10494 Face 19874 5194 7523 3446 Face 19875 5194 8431 7523 Face 19876 57 1355 1894 Face 19877 3005 5687 10999 Face 19878 5736 1046 2678 Face 19879 10203 9613 6912 Face 19880 10203 4633 9613 Face 19881 10019 8302 1266 Face 19882 1757 2894 4335 Face 19883 5405 9871 7371 Face 19884 6932 2485 7535 Face 19885 9094 10142 492 Face 19886 952 9582 9720 Face 19887 393 9051 4287 Face 19888 10766 7815 7862 Face 19889 7543 8011 7542 Face 19890 254 7546 4427 Face 19891 3955 7549 7495 Face 19892 3955 1835 7549 Face 19893 7551 3895 5237 Face 19894 7551 5976 3895 Face 19895 5976 7551 9703 Face 19896 10221 7552 5796 Face 19897 10221 9717 7552 Face 19898 7893 10192 8685 Face 19899 7893 6280 10192 Face 19900 788 10903 10719 Face 19901 10500 3749 1695 Face 19902 9060 7558 7674 Face 19903 9060 10756 7558 Face 19904 4665 2114 10814 Face 19905 3463 7561 5938 Face 19906 3463 1622 7561 Face 19907 2043 8195 9314 Face 19908 8833 10966 3475 Face 19909 2027 3002 7567 Face 19910 2179 8625 10783 Face 19911 7572 9999 2207 Face 19912 1149 5086 7594 Face 19913 2573 7579 1681 Face 19914 2573 3766 7579 Face 19915 2213 9139 7581 Face 19916 6354 7269 8155 Face 19917 6274 4538 5912 Face 19918 3521 7585 3727 Face 19919 10317 4940 6581 Face 19920 1768 9194 7590 Face 19921 3161 4632 6448 Face 19922 8794 12 7593 Face 19923 7594 40 1149 Face 19924 7594 8835 40 Face 19925 9350 7595 10009 Face 19926 9350 7145 7595 Face 19927 7599 7504 6277 Face 19928 7225 835 7599 Face 19929 4053 10566 9000 Face 19930 6597 10120 7603 Face 19931 6458 7235 7605 Face 19932 108 2562 4220 Face 19933 704 9338 420 Face 19934 6481 7606 3951 Face 19935 6481 9609 7606 Face 19936 4891 2171 2743 Face 19937 8843 4250 2348 Face 19938 8495 1439 5881 Face 19939 8495 1651 1439 Face 19940 6788 9742 10258 Face 19941 4044 6244 3119 Face 19942 921 6497 6512 Face 19943 3798 11106 9366 Face 19944 1775 9278 5296 Face 19945 693 3752 7613 Face 19946 2151 3880 4648 Face 19947 7256 5395 7615 Face 19948 7619 2367 3779 Face 19949 6599 9763 2473 Face 19950 956 8469 7625 Face 19951 2974 6871 7699 Face 19952 2226 7627 4002 Face 19953 2226 2225 7627 Face 19954 4943 7628 7645 Face 19955 4943 2061 7628 Face 19956 6165 9542 6587 Face 19957 2622 7630 9133 Face 19958 16 4694 10457 Face 19959 11039 9904 2096 Face 19960 2156 5273 8580 Face 19961 6735 3751 8383 Face 19962 8582 6356 1834 Face 19963 8582 2065 6356 Face 19964 2328 10469 9493 Face 19965 4205 9965 7634 Face 19966 9296 3837 4556 Face 19967 9296 6806 3837 Face 19968 847 277 3008 Face 19969 847 7636 5580 Face 19970 847 6154 7636 Face 19971 2258 7641 6932 Face 19972 2258 5827 7641 Face 19973 9358 818 7642 Face 19974 291 909 2969 Face 19975 615 7646 8167 Face 19976 2943 7648 10804 Face 19977 2420 6681 7138 Face 19978 5629 822 2400 Face 19979 2969 118 7654 Face 19980 9408 7201 7655 Face 19981 8031 7415 7656 Face 19982 9404 8501 9677 Face 19983 3503 7660 7035 Face 19984 9185 7661 84 Face 19985 9185 1132 7661 Face 19986 6550 8676 4161 Face 19987 9157 4702 9419 Face 19988 3679 7666 8046 Face 19989 3679 4406 7666 Face 19990 2555 1826 10824 Face 19991 5979 6351 3437 Face 19992 1249 948 9092 Face 19993 3694 2719 8696 Face 19994 2856 4001 2855 Face 19995 4718 10764 479 Face 19996 10361 5079 4872 Face 19997 8590 712 6153 Face 19998 6550 4455 7675 Face 19999 4622 7678 5605 Face 20000 1857 3096 1120 Face 20001 3279 9502 3127 Face 20002 672 9090 7815 Face 20003 7685 7684 10254 Face 20004 7685 6039 7684 Face 20005 9136 6433 7688 Face 20006 11051 9725 321 Face 20007 656 6122 10739 Face 20008 9355 2210 10606 Face 20009 5917 2268 8565 Face 20010 8603 1212 7694 Face 20011 722 7696 2949 Face 20012 722 7080 7696 Face 20013 1256 7544 5949 Face 20014 1256 6477 7544 Face 20015 5882 7703 7086 Face 20016 5882 8485 7703 Face 20017 11000 8860 4492 Face 20018 1594 7715 10767 Face 20019 3250 3351 7716 Face 20020 8106 7718 5761 Face 20021 9379 4412 2254 Face 20022 10658 9829 8136 Face 20023 5568 7730 2323 Face 20024 5568 2152 7730 Face 20025 3681 4719 9334 Face 20026 6315 4919 9888 Face 20027 6315 4918 4919 Face 20028 8124 4371 3354 Face 20029 1306 6341 3474 Face 20030 1280 7738 9507 Face 20031 1280 939 7738 Face 20032 54 5554 4672 Face 20033 475 2261 9393 Face 20034 1805 4101 112 Face 20035 1805 3217 4101 Face 20036 1461 97 247 Face 20037 7747 9186 1844 Face 20038 10066 4446 9289 Face 20039 1119 8932 8345 Face 20040 1234 9187 8395 Face 20041 6348 4462 6368 Face 20042 10074 6722 2170 Face 20043 7544 9584 6997 Face 20044 1552 2895 8747 Face 20045 1552 3123 2895 Face 20046 4787 2475 5764 Face 20047 4787 11035 2475 Face 20048 5481 235 7765 Face 20049 2128 9448 8596 Face 20050 2959 7768 703 Face 20051 2959 3637 7768 Face 20052 503 5290 5255 Face 20053 9794 7303 2990 Face 20054 594 3302 5604 Face 20055 4149 7771 4609 Face 20056 1091 741 7773 Face 20057 2014 5200 10483 Face 20058 10663 965 104 Face 20059 1310 4062 4594 Face 20060 1774 2566 3630 Face 20061 8169 72 5127 Face 20062 8417 7062 7780 Face 20063 9073 7782 6923 Face 20064 9073 9355 7782 Face 20065 1691 10433 7982 Face 20066 2057 1652 5131 Face 20067 399 8048 3470 Face 20068 5702 10379 2067 Face 20069 7955 6930 4079 Face 20070 7791 7790 1270 Face 20071 7791 8257 7790 Face 20072 6705 6704 8886 Face 20073 7089 8281 7792 Face 20074 9205 3360 4612 Face 20075 1057 447 37 Face 20076 2494 7795 2051 Face 20077 9872 10417 10621 Face 20078 2259 1268 6358 Face 20079 2259 7796 1268 Face 20080 9314 9517 2043 Face 20081 9314 5592 9517 Face 20082 1491 9686 1720 Face 20083 5984 6282 10516 Face 20084 5984 2655 6282 Face 20085 941 3258 7801 Face 20086 10829 1621 2256 Face 20087 10136 7804 6933 Face 20088 10136 1877 7804 Face 20089 8052 4388 7805 Face 20090 212 4401 7807 Face 20091 212 5916 10854 Face 20092 212 7807 5916 Face 20093 2265 7811 3343 Face 20094 2265 6898 7811 Face 20095 5230 7106 1974 Face 20096 5624 1720 1438 Face 20097 1212 7723 2822 Face 20098 1012 7816 2821 Face 20099 588 6392 7721 Face 20100 7454 7230 5918 Face 20101 10827 5787 7805 Face 20102 6552 1464 10373 Face 20103 10311 6984 3737 Face 20104 5837 982 3811 Face 20105 2622 4867 10872 Face 20106 7765 1600 7819 Face 20107 1216 4047 3320 Face 20108 6375 4219 10105 Face 20109 7367 7826 1149 Face 20110 5837 6898 5613 Face 20111 7635 7829 6007 Face 20112 4805 7830 4421 Face 20113 4805 8070 7830 Face 20114 347 8168 7340 Face 20115 3752 7832 2749 Face 20116 9553 5865 7833 Face 20117 9986 4900 7787 Face 20118 6424 2317 10928 Face 20119 722 1881 6224 Face 20120 3120 2288 7843 Face 20121 1679 3012 5834 Face 20122 10855 8768 1473 Face 20123 8725 5426 7849 Face 20124 1278 5633 10601 Face 20125 1841 7850 9682 Face 20126 8351 4924 4732 Face 20127 4151 4924 8351 Face 20128 2559 10577 3938 Face 20129 7586 3037 5003 Face 20130 7822 2780 9944 Face 20131 7822 6695 2780 Face 20132 2742 2031 7855 Face 20133 8695 7857 7875 Face 20134 8695 2307 7857 Face 20135 9249 7859 8833 Face 20136 9249 9579 7859 Face 20137 8265 8042 1252 Face 20138 3345 2380 938 Face 20139 8296 2837 8481 Face 20140 4149 3348 9733 Face 20141 3617 7867 830 Face 20142 3617 1673 7867 Face 20143 6069 9412 5269 Face 20144 10166 10295 7871 Face 20145 814 191 6987 Face 20146 3260 6868 3009 Face 20147 5001 5607 7879 Face 20148 8744 4697 8827 Face 20149 3138 2906 4114 Face 20150 3138 9917 2906 Face 20151 7060 7886 4249 Face 20152 2760 1357 5376 Face 20153 4542 8920 1018 Face 20154 2785 10313 1372 Face 20155 7899 2381 2905 Face 20156 1262 6887 7900 Face 20157 4214 3006 6271 Face 20158 5597 11075 8642 Face 20159 708 373 8543 Face 20160 9448 9020 10114 Face 20161 7488 1602 9020 Face 20162 5923 4405 2243 Face 20163 5923 1725 4405 Face 20164 8336 7904 3000 Face 20165 8336 4052 7904 Face 20166 6078 3523 11096 Face 20167 7975 4071 3777 Face 20168 2943 10804 655 Face 20169 8992 10722 7908 Face 20170 5551 78 6237 Face 20171 4747 7898 10535 Face 20172 9550 7998 7912 Face 20173 7036 4828 7913 Face 20174 105 4015 6772 Face 20175 1179 7917 3789 Face 20176 1179 10098 7917 Face 20177 4425 7918 5374 Face 20178 7920 7919 4676 Face 20179 1004 4637 7922 Face 20180 3867 9551 5419 Face 20181 3867 11089 9551 Face 20182 4652 7837 2535 Face 20183 10116 4663 7929 Face 20184 1002 1926 11071 Face 20185 694 7932 8463 Face 20186 694 6733 7932 Face 20187 7152 6082 576 Face 20188 7152 1379 6082 Face 20189 10116 8207 1126 Face 20190 10719 5277 7934 Face 20191 9014 3586 7935 Face 20192 3250 7716 7936 Face 20193 793 10965 7938 Face 20194 2853 5905 10039 Face 20195 10977 10477 7909 Face 20196 1300 7946 9252 Face 20197 4051 4196 7947 Face 20198 1556 11062 7948 Face 20199 7949 4036 3164 Face 20200 5262 6777 4386 Face 20201 4324 1555 1588 Face 20202 3689 2504 3242 Face 20203 6502 7956 1535 Face 20204 6502 2070 7956 Face 20205 10266 4868 10410 Face 20206 10266 7957 4868 Face 20207 10266 2085 7957 Face 20208 7702 1125 11041 Face 20209 9952 7958 10127 Face 20210 9952 9439 7958 Face 20211 652 5510 7959 Face 20212 9277 4403 6620 Face 20213 10206 3456 4655 Face 20214 1461 10738 3751 Face 20215 10597 7961 11081 Face 20216 1145 10789 8390 Face 20217 8331 7965 148 Face 20218 8331 577 7965 Face 20219 10228 3184 6902 Face 20220 10228 3746 3184 Face 20221 10799 7968 458 Face 20222 10799 9030 7968 Face 20223 6812 5193 3520 Face 20224 5545 10312 785 Face 20225 5545 2452 10312 Face 20226 9449 9316 7974 Face 20227 10823 7975 3777 Face 20228 10823 302 7975 Face 20229 5580 360 7976 Face 20230 946 7631 8834 Face 20231 10796 3115 9281 Face 20232 4801 8707 7985 Face 20233 4550 4464 2359 Face 20234 4668 839 2527 Face 20235 6236 3557 7993 Face 20236 2432 4448 24 Face 20237 2115 7995 8486 Face 20238 2115 2402 7995 Face 20239 1034 8506 3384 Face 20240 9535 3189 6516 Face 20241 9535 7843 3189 Face 20242 2307 8695 10446 Face 20243 6016 4370 8000 Face 20244 2938 8001 10177 Face 20245 2938 5866 8001 Face 20246 1369 5645 8002 Face 20247 8769 9555 7056 Face 20248 8769 6191 9555 Face 20249 3757 1576 8543 Face 20250 6515 10083 8008 Face 20251 9278 2238 5296 Face 20252 5844 2936 10724 Face 20253 4810 8284 7897 Face 20254 3048 3071 8013 Face 20255 73 8016 3149 Face 20256 73 5981 8016 Face 20257 1824 9454 6695 Face 20258 2443 6725 6496 Face 20259 5023 57 8019 Face 20260 7288 8020 7273 Face 20261 7288 7060 8020 Face 20262 9771 2673 8789 Face 20263 9771 2701 2673 Face 20264 2337 767 1809 Face 20265 2337 8129 767 Face 20266 7335 5421 8027 Face 20267 1347 1524 7364 Face 20268 5506 592 7053 Face 20269 3582 4993 8029 Face 20270 1042 1285 8035 Face 20271 4094 8038 3896 Face 20272 4094 5389 8038 Face 20273 177 10753 9376 Face 20274 9775 6272 10787 Face 20275 477 1912 2675 Face 20276 9240 7452 7821 Face 20277 247 637 7933 Face 20278 2368 8044 2526 Face 20279 8247 9520 3096 Face 20280 1027 4237 8045 Face 20281 8714 8157 8046 Face 20282 3981 8047 9569 Face 20283 3981 4941 8047 Face 20284 9349 6611 472 Face 20285 6988 5550 8507 Face 20286 4902 11094 8057 Face 20287 5952 6465 4377 Face 20288 8548 9705 3901 Face 20289 9350 7181 8065 Face 20290 10233 4595 3116 Face 20291 9720 9582 1636 Face 20292 174 10763 4864 Face 20293 9533 1098 3869 Face 20294 5523 5720 8681 Face 20295 6685 10413 6465 Face 20296 1592 11058 8403 Face 20297 2178 4686 3281 Face 20298 9207 236 460 Face 20299 9207 4557 236 Face 20300 10732 10532 7413 Face 20301 10732 7511 10532 Face 20302 28 8367 8088 Face 20303 3465 2417 8089 Face 20304 4260 6698 9001 Face 20305 4260 2147 6698 Face 20306 7966 5901 10428 Face 20307 11068 1971 9619 Face 20308 4393 7073 2487 Face 20309 1751 7401 8093 Face 20310 3823 10860 4673 Face 20311 1723 9687 342 Face 20312 1314 5026 6547 Face 20313 7381 38 10636 Face 20314 5481 7765 7819 Face 20315 10861 8700 8103 Face 20316 9438 6410 791 Face 20317 1461 7432 8104 Face 20318 5634 5162 1500 Face 20319 1607 4750 8106 Face 20320 5499 8851 1966 Face 20321 5377 4649 8115 Face 20322 8957 9611 8119 Face 20323 4641 2446 3801 Face 20324 6329 8120 9603 Face 20325 6329 3355 8120 Face 20326 9263 9198 1362 Face 20327 1943 1964 10966 Face 20328 7188 2503 4527 Face 20329 9601 7236 8126 Face 20330 1167 6699 3715 Face 20331 1190 8127 7865 Face 20332 767 8129 10790 Face 20333 7627 8130 4002 Face 20334 7627 4099 8130 Face 20335 80 1545 6015 Face 20336 80 6255 1545 Face 20337 7341 8131 1008 Face 20338 4162 6297 493 Face 20339 9015 3267 1186 Face 20340 1287 639 2541 Face 20341 9945 3043 8195 Face 20342 6051 466 3430 Face 20343 1068 8166 8144 Face 20344 2062 10699 3300 Face 20345 2062 3300 8146 Face 20346 69 10186 7072 Face 20347 7372 8156 897 Face 20348 6935 8161 10836 Face 20349 7063 7546 254 Face 20350 10962 9426 4986 Face 20351 10962 10250 9426 Face 20352 320 8164 5573 Face 20353 3282 8170 10227 Face 20354 3282 2152 8170 Face 20355 779 3909 8172 Face 20356 4593 8809 8177 Face 20357 9390 1077 2370 Face 20358 8179 8681 5720 Face 20359 326 1332 6609 Face 20360 326 9249 1332 Face 20361 10942 9475 951 Face 20362 8733 2563 6323 Face 20363 5820 155 1028 Face 20364 6055 2246 8184 Face 20365 1400 7669 9000 Face 20366 10297 9859 3604 Face 20367 569 4124 2101 Face 20368 2600 1430 9310 Face 20369 6313 6451 5687 Face 20370 3863 3138 1851 Face 20371 638 10695 2165 Face 20372 9111 4157 10644 Face 20373 1539 3207 8188 Face 20374 9439 1225 5380 Face 20375 10 7945 2782 Face 20376 3235 4222 8190 Face 20377 8345 8932 1747 Face 20378 8133 9714 8196 Face 20379 2365 7310 2492 Face 20380 10093 5250 8546 Face 20381 1551 6076 1318 Face 20382 1551 6674 6076 Face 20383 3243 9456 10771 Face 20384 7291 5182 8205 Face 20385 4898 8215 3554 Face 20386 4898 7069 8215 Face 20387 1354 8220 1759 Face 20388 1354 4044 8220 Face 20389 9861 10857 8221 Face 20390 2096 8224 5754 Face 20391 2096 8655 8224 Face 20392 3712 11100 8225 Face 20393 8930 5257 467 Face 20394 1401 1038 8226 Face 20395 2082 3178 8228 Face 20396 3466 2075 8516 Face 20397 496 5764 2475 Face 20398 9684 7468 4997 Face 20399 5935 2150 2108 Face 20400 5715 8231 6440 Face 20401 5715 5024 8231 Face 20402 9763 6599 8232 Face 20403 3231 10406 8233 Face 20404 10709 3485 6559 Face 20405 910 1237 4560 Face 20406 5449 8244 3058 Face 20407 8343 8244 5449 Face 20408 3410 994 8245 Face 20409 5597 4919 7189 Face 20410 1890 8247 650 Face 20411 1890 6203 8247 Face 20412 8470 9164 9512 Face 20413 7604 4745 1142 Face 20414 5533 111 409 Face 20415 7882 1395 4191 Face 20416 4146 1320 8252 Face 20417 8960 2804 10904 Face 20418 2569 3353 8254 Face 20419 10375 8255 6669 Face 20420 10375 7096 8255 Face 20421 2395 4201 8262 Face 20422 8682 3216 1929 Face 20423 6825 8266 2801 Face 20424 10352 10331 4120 Face 20425 2635 7517 2478 Face 20426 8446 10297 3941 Face 20427 6494 9739 8271 Face 20428 2581 2530 5268 Face 20429 2581 5339 2530 Face 20430 2680 8276 6937 Face 20431 2680 2921 8276 Face 20432 8722 8339 8280 Face 20433 8722 8280 10501 Face 20434 10920 5143 8430 Face 20435 37 785 8282 Face 20436 2021 1320 4146 Face 20437 1589 7305 9967 Face 20438 1589 968 7305 Face 20439 9730 162 6730 Face 20440 1765 9253 8044 Face 20441 1765 1866 9253 Face 20442 4791 5895 8898 Face 20443 3048 8013 485 Face 20444 4910 8289 5034 Face 20445 3546 5206 9047 Face 20446 5285 1910 4004 Face 20447 5285 3468 1910 Face 20448 4794 6959 4184 Face 20449 4794 1999 6959 Face 20450 2077 9607 10651 Face 20451 9807 6911 3623 Face 20452 1310 4594 8299 Face 20453 1020 5403 8614 Face 20454 10373 1259 6552 Face 20455 10373 10671 8300 Face 20456 10019 3043 8302 Face 20457 3342 9595 2233 Face 20458 1364 2474 1512 Face 20459 6769 7361 8306 Face 20460 10198 3426 8308 Face 20461 4026 8404 4888 Face 20462 718 4464 4550 Face 20463 1863 8015 6498 Face 20464 2699 4783 6905 Face 20465 8553 4158 6788 Face 20466 574 4270 6415 Face 20467 721 6703 3170 Face 20468 6359 9171 5345 Face 20469 3092 8318 3390 Face 20470 3092 5069 8318 Face 20471 4712 10494 4527 Face 20472 7862 5485 6541 Face 20473 8951 2828 10308 Face 20474 8951 6994 2828 Face 20475 1889 8326 9789 Face 20476 1889 1381 8326 Face 20477 7201 6548 924 Face 20478 1068 7486 2036 Face 20479 3605 8194 6226 Face 20480 3169 8436 8332 Face 20481 751 11110 5626 Face 20482 2113 3362 10052 Face 20483 6177 595 10725 Face 20484 783 8342 8332 Face 20485 783 5943 8342 Face 20486 9107 9513 9392 Face 20487 10811 6391 8963 Face 20488 2268 10322 8565 Face 20489 9962 10168 3955 Face 20490 9989 10414 4399 Face 20491 10882 1811 7848 Face 20492 7303 1563 6822 Face 20493 9898 3520 7015 Face 20494 10557 255 4707 Face 20495 5282 7984 5 Face 20496 5282 6420 7984 Face 20497 3693 8298 8359 Face 20498 3322 2151 3321 Face 20499 3530 8360 2775 Face 20500 3530 1241 8360 Face 20501 912 8361 4321 Face 20502 912 11015 8361 Face 20503 8958 8023 6933 Face 20504 5200 10450 8363 Face 20505 4128 10359 7766 Face 20506 2303 4354 8365 Face 20507 9504 4043 3825 Face 20508 1182 6013 8368 Face 20509 10311 2439 8372 Face 20510 1279 5235 8373 Face 20511 1801 10272 8068 Face 20512 1801 2533 10272 Face 20513 4796 907 1151 Face 20514 5564 10530 6734 Face 20515 1586 9510 8380 Face 20516 5740 2966 8382 Face 20517 8741 664 9657 Face 20518 1799 8388 2422 Face 20519 1799 8846 8388 Face 20520 1314 7757 10354 Face 20521 3115 5921 90 Face 20522 2879 766 6310 Face 20523 10280 6870 2310 Face 20524 1810 1213 314 Face 20525 8620 10014 9453 Face 20526 2731 199 8400 Face 20527 801 6247 9505 Face 20528 7554 5224 2311 Face 20529 11058 4772 8403 Face 20530 7045 2332 2613 Face 20531 7045 5831 2332 Face 20532 2567 8407 6657 Face 20533 2567 9919 8407 Face 20534 7246 5770 8330 Face 20535 588 7721 11059 Face 20536 3069 9125 4156 Face 20537 10831 4304 8409 Face 20538 2531 529 8410 Face 20539 6455 8412 166 Face 20540 6455 6063 8412 Face 20541 2799 3089 9803 Face 20542 4290 9934 8417 Face 20543 183 3932 4163 Face 20544 183 5044 3932 Face 20545 833 311 7206 Face 20546 8426 3021 7039 Face 20547 2443 8427 6624 Face 20548 2443 1007 8427 Face 20549 9709 8428 7883 Face 20550 9709 5705 8428 Face 20551 69 5713 9497 Face 20552 6272 5423 8133 Face 20553 5957 4845 6784 Face 20554 10527 1735 4695 Face 20555 5142 8442 9605 Face 20556 5142 5346 8442 Face 20557 2074 1203 2906 Face 20558 2074 6948 1203 Face 20559 8992 1894 8449 Face 20560 5175 3595 8452 Face 20561 3480 7273 8462 Face 20562 3077 4513 1348 Face 20563 8508 7566 5690 Face 20564 8508 3032 7566 Face 20565 763 2010 8464 Face 20566 6935 5859 9717 Face 20567 11037 7671 8931 Face 20568 4533 6414 8466 Face 20569 7303 9959 2990 Face 20570 631 1849 6907 Face 20571 7445 8258 8471 Face 20572 5763 1999 8475 Face 20573 6228 906 8478 Face 20574 8696 2719 8479 Face 20575 8997 4478 303 Face 20576 8997 4452 4478 Face 20577 10117 22 1585 Face 20578 3912 3170 4198 Face 20579 3798 7830 8070 Face 20580 10959 8487 5319 Face 20581 1333 925 8492 Face 20582 39 4371 4890 Face 20583 4371 8124 4890 Face 20584 5653 6196 8753 Face 20585 5654 5653 8753 Face 20586 10653 4360 2556 Face 20587 10653 1023 4360 Face 20588 10552 9305 3473 Face 20589 2991 1762 9741 Face 20590 5270 7901 9802 Face 20591 9404 6687 8501 Face 20592 9736 159 8502 Face 20593 938 1942 8503 Face 20594 1366 7596 4224 Face 20595 1438 1720 3054 Face 20596 1135 3442 7752 Face 20597 1674 8510 1555 Face 20598 1674 1919 8510 Face 20599 8295 9758 10587 Face 20600 2377 3517 576 Face 20601 1714 6579 6049 Face 20602 4536 4416 8518 Face 20603 3061 3180 2728 Face 20604 8763 10993 9588 Face 20605 9509 8379 610 Face 20606 3271 8526 10788 Face 20607 3271 9406 8526 Face 20608 9154 8527 9213 Face 20609 9154 10043 8527 Face 20610 4842 3832 8529 Face 20611 7160 10367 5232 Face 20612 2769 8659 536 Face 20613 1861 6405 8534 Face 20614 9183 8535 4258 Face 20615 4154 2459 4610 Face 20616 10459 9008 7902 Face 20617 4302 8537 9303 Face 20618 4302 1965 8537 Face 20619 1418 9720 8539 Face 20620 8508 11031 3429 Face 20621 3449 3391 3858 Face 20622 8877 6717 8547 Face 20623 1211 8549 7865 Face 20624 1211 163 8549 Face 20625 4158 8553 3285 Face 20626 984 4862 8554 Face 20627 11020 8555 9643 Face 20628 11020 6105 8555 Face 20629 768 2179 8556 Face 20630 386 3394 2596 Face 20631 6514 4023 8559 Face 20632 8332 8581 783 Face 20633 7237 5696 8314 Face 20634 1423 5342 8562 Face 20635 1423 8562 1668 Face 20636 7770 8563 931 Face 20637 7770 2961 8563 Face 20638 7201 924 7989 Face 20639 10555 10013 8565 Face 20640 202 2486 8574 Face 20641 4274 8579 2790 Face 20642 4274 4643 8579 Face 20643 5759 8896 3441 Face 20644 7494 4140 8588 Face 20645 7740 6519 2366 Face 20646 6472 6610 8593 Face 20647 2514 2191 4483 Face 20648 3086 8415 4818 Face 20649 10328 8598 1460 Face 20650 7930 4156 9522 Face 20651 7930 2243 4156 Face 20652 8600 5492 3406 Face 20653 281 9882 8601 Face 20654 3375 10080 8605 Face 20655 3759 9876 8609 Face 20656 8379 5355 4339 Face 20657 850 10078 7337 Face 20658 850 8568 10078 Face 20659 9212 70 4246 Face 20660 9329 7266 10018 Face 20661 10333 8458 8614 Face 20662 962 8039 8616 Face 20663 1788 9689 8618 Face 20664 10922 7797 6882 Face 20665 10922 4006 7797 Face 20666 9141 62 2428 Face 20667 10547 4258 3879 Face 20668 10547 10549 4258 Face 20669 1503 9904 433 Face 20670 5916 8687 10854 Face 20671 5916 9367 8687 Face 20672 6145 9833 9038 Face 20673 6145 9101 9833 Face 20674 3733 1860 8625 Face 20675 8503 1557 4738 Face 20676 8603 7694 3110 Face 20677 9867 8626 2411 Face 20678 9867 4784 8626 Face 20679 6160 7742 8627 Face 20680 9925 3302 2982 Face 20681 3007 8631 8967 Face 20682 5765 1209 8633 Face 20683 5632 4575 7252 Face 20684 300 3086 5774 Face 20685 4163 10559 6362 Face 20686 6857 2164 10649 Face 20687 2527 7648 2943 Face 20688 2527 839 7648 Face 20689 3970 2783 3971 Face 20690 5131 10476 2057 Face 20691 5278 6192 9241 Face 20692 10421 8652 7356 Face 20693 10421 8010 8652 Face 20694 2623 1274 11064 Face 20695 4118 1424 4060 Face 20696 9015 784 9282 Face 20697 449 8393 2521 Face 20698 449 4057 8393 Face 20699 78 8119 596 Face 20700 2216 5641 4309 Face 20701 6397 5082 9070 Face 20702 3735 1716 461 Face 20703 2178 10595 206 Face 20704 2178 5791 10595 Face 20705 4478 8666 9534 Face 20706 2214 8879 8666 Face 20707 4478 2214 8666 Face 20708 9556 2212 10072 Face 20709 5958 7265 245 Face 20710 4737 3739 7037 Face 20711 2777 2778 5540 Face 20712 2777 11007 2778 Face 20713 10636 8561 9444 Face 20714 3273 10983 3685 Face 20715 6963 6647 9022 Face 20716 2888 10048 2483 Face 20717 6444 10348 2126 Face 20718 1003 636 8692 Face 20719 3378 4817 3627 Face 20720 3592 8706 3593 Face 20721 3592 7127 8706 Face 20722 3713 8709 1856 Face 20723 3713 6001 8709 Face 20724 5982 8575 6502 Face 20725 741 8327 8711 Face 20726 2400 5100 9205 Face 20727 1135 3026 4357 Face 20728 1135 7752 3026 Face 20729 4688 8715 8714 Face 20730 6574 1595 10011 Face 20731 6574 4307 1595 Face 20732 11088 10528 9896 Face 20733 2718 7827 8718 Face 20734 9760 3233 8586 Face 20735 7846 894 9410 Face 20736 1090 9624 8726 Face 20737 3079 10972 8729 Face 20738 4487 5888 9953 Face 20739 7433 3279 3127 Face 20740 2799 7516 10234 Face 20741 7657 4227 5400 Face 20742 1363 7836 8730 Face 20743 2034 950 5521 Face 20744 2034 8349 950 Face 20745 8409 4135 5412 Face 20746 1031 3252 5153 Face 20747 8184 2655 8025 Face 20748 7186 1637 2832 Face 20749 5092 3134 943 Face 20750 8319 3083 5998 Face 20751 8460 4793 8737 Face 20752 5581 1697 8607 Face 20753 6365 4251 4835 Face 20754 3156 3510 4397 Face 20755 3294 10840 1834 Face 20756 3294 2503 10840 Face 20757 7277 3052 6173 Face 20758 8751 10247 5796 Face 20759 3866 5985 8752 Face 20760 9142 337 6682 Face 20761 9142 9221 337 Face 20762 371 7191 10762 Face 20763 4500 10158 6861 Face 20764 4500 6785 10158 Face 20765 3284 5605 8762 Face 20766 4497 4792 8764 Face 20767 7921 3665 1889 Face 20768 7921 6430 3665 Face 20769 5847 4776 10334 Face 20770 2744 3340 1866 Face 20771 6002 8766 5345 Face 20772 6002 757 8766 Face 20773 2895 9118 9912 Face 20774 2895 4392 9118 Face 20775 1710 8767 2601 Face 20776 808 4110 5366 Face 20777 6514 8770 29 Face 20778 6514 7018 8770 Face 20779 2393 10307 10987 Face 20780 5117 2884 3337 Face 20781 4316 8713 1100 Face 20782 9468 8142 968 Face 20783 8780 397 6128 Face 20784 397 8780 2274 Face 20785 10904 2804 8782 Face 20786 419 9075 8785 Face 20787 2906 1203 8786 Face 20788 912 8787 9706 Face 20789 912 4321 8787 Face 20790 4720 10097 6127 Face 20791 10231 5190 6097 Face 20792 8038 9771 8789 Face 20793 11050 5424 7275 Face 20794 5739 7687 10414 Face 20795 4799 8792 2766 Face 20796 5644 5366 3623 Face 20797 5644 7729 5366 Face 20798 9596 1633 2464 Face 20799 9365 5198 3613 Face 20800 6961 4348 8796 Face 20801 337 10246 3589 Face 20802 3116 7232 8800 Face 20803 6357 7643 8801 Face 20804 4091 7358 4635 Face 20805 4091 2240 7358 Face 20806 6746 1570 7077 Face 20807 3775 8805 6559 Face 20808 8808 8807 5994 Face 20809 8808 2394 8807 Face 20810 2993 424 8808 Face 20811 10640 6681 3643 Face 20812 10640 944 6681 Face 20813 7743 7188 10494 Face 20814 2993 8813 2088 Face 20815 8472 1392 6826 Face 20816 8472 6952 1392 Face 20817 8816 1952 6182 Face 20818 8334 221 10657 Face 20819 7269 5438 8155 Face 20820 7269 6540 5438 Face 20821 1153 10670 8824 Face 20822 7869 10748 6680 Face 20823 7869 4384 10748 Face 20824 4115 5738 5283 Face 20825 3025 8829 6373 Face 20826 3025 3095 8829 Face 20827 3297 9129 11001 Face 20828 3297 6654 9129 Face 20829 4436 10938 8830 Face 20830 10926 1578 8831 Face 20831 10513 9766 9894 Face 20832 620 8835 7594 Face 20833 6228 5092 6949 Face 20834 6228 3134 5092 Face 20835 9521 1822 6705 Face 20836 9521 5195 1822 Face 20837 4420 2223 10008 Face 20838 9066 8497 8839 Face 20839 3372 4851 8842 Face 20840 4681 5773 3001 Face 20841 10371 8852 5216 Face 20842 10371 850 8852 Face 20843 6089 4939 8721 Face 20844 2356 8853 4111 Face 20845 2356 1040 8853 Face 20846 3501 8856 10862 Face 20847 3501 9902 8856 Face 20848 10159 2118 4152 Face 20849 10449 7223 4085 Face 20850 10439 5544 8869 Face 20851 102 5351 8870 Face 20852 7038 10924 8871 Face 20853 5083 3569 4850 Face 20854 5083 6545 3569 Face 20855 7082 3306 5185 Face 20856 1731 3417 8872 Face 20857 8873 7845 4469 Face 20858 920 6361 1643 Face 20859 10869 89 4277 Face 20860 10869 2165 89 Face 20861 9048 5766 5348 Face 20862 1317 5830 8273 Face 20863 6835 2784 1658 Face 20864 3123 3836 2895 Face 20865 2546 7423 7795 Face 20866 552 8974 2484 Face 20867 10241 3655 5611 Face 20868 2520 6513 2909 Face 20869 4885 1132 3675 Face 20870 1093 6821 5691 Face 20871 19 8884 8975 Face 20872 874 10262 7388 Face 20873 710 5103 4687 Face 20874 366 7761 3228 Face 20875 5827 2835 4406 Face 20876 5827 2258 2835 Face 20877 1021 5748 1060 Face 20878 1021 1060 5174 Face 20879 9914 9443 9312 Face 20880 3955 4523 1835 Face 20881 3955 10168 4523 Face 20882 1502 8900 203 Face 20883 1502 2198 8900 Face 20884 582 4552 6368 Face 20885 1611 8831 6457 Face 20886 1611 3591 8831 Face 20887 4900 9986 8901 Face 20888 9264 1667 6827 Face 20889 5408 2434 10916 Face 20890 3985 187 4519 Face 20891 7050 10511 3083 Face 20892 9148 1170 8909 Face 20893 3538 8913 2830 Face 20894 3538 3319 8913 Face 20895 5520 4411 5548 Face 20896 4460 6914 4494 Face 20897 1142 10951 8921 Face 20898 16 6426 5885 Face 20899 8056 3389 7632 Face 20900 9615 7272 8925 Face 20901 1573 8928 2329 Face 20902 1573 6221 8928 Face 20903 10946 9062 6500 Face 20904 9845 8936 3059 Face 20905 1711 10772 5539 Face 20906 10557 8771 8488 Face 20907 1595 4307 1596 Face 20908 3082 3560 6900 Face 20909 5449 840 3776 Face 20910 7395 3466 8940 Face 20911 3081 6565 8941 Face 20912 3697 8942 469 Face 20913 3697 6478 8942 Face 20914 591 4859 2913 Face 20915 2324 8950 10651 Face 20916 2324 9769 8950 Face 20917 3011 2425 8956 Face 20918 4247 9878 9622 Face 20919 4247 9540 9878 Face 20920 6750 7309 6856 Face 20921 7306 2337 1809 Face 20922 7041 164 10276 Face 20923 3975 9849 7749 Face 20924 3975 5930 9849 Face 20925 10811 8963 5803 Face 20926 2510 7492 6527 Face 20927 9760 267 9137 Face 20928 2998 7086 8974 Face 20929 4933 5012 2041 Face 20930 9181 8976 6764 Face 20931 4322 2449 2694 Face 20932 4796 8488 8977 Face 20933 5230 1974 3752 Face 20934 2047 5753 4088 Face 20935 2873 10999 8987 Face 20936 1723 8989 9687 Face 20937 3356 7970 11017 Face 20938 58 9463 6629 Face 20939 8991 3974 6791 Face 20940 10557 8995 1614 Face 20941 6400 2354 3274 Face 20942 3386 8998 4793 Face 20943 144 9002 3218 Face 20944 10876 9477 652 Face 20945 8562 6474 7295 Face 20946 3799 11047 9004 Face 20947 6483 7524 9005 Face 20948 2654 1017 9007 Face 20949 830 9010 10317 Face 20950 2980 9011 4398 Face 20951 5093 4965 9929 Face 20952 9954 1126 10717 Face 20953 5618 10976 4067 Face 20954 9014 9213 5326 Face 20955 8039 962 9016 Face 20956 3162 2882 2066 Face 20957 1531 9019 9885 Face 20958 1531 438 9019 Face 20959 9021 2528 8072 Face 20960 5823 1346 3511 Face 20961 5823 7521 1346 Face 20962 7089 1755 9326 Face 20963 9376 7639 8760 Face 20964 1300 9036 4121 Face 20965 1649 1742 9910 Face 20966 700 3064 9043 Face 20967 4585 10017 7222 Face 20968 2701 4010 4555 Face 20969 7990 5683 8045 Face 20970 4181 9049 10917 Face 20971 5763 9950 10235 Face 20972 11074 6803 3762 Face 20973 11076 9056 3931 Face 20974 1710 2601 9447 Face 20975 10227 335 8167 Face 20976 2890 5878 9061 Face 20977 9065 5473 6677 Face 20978 5745 9914 5816 Face 20979 10537 8785 9075 Face 20980 6081 6443 9275 Face 20981 6081 10714 6443 Face 20982 2055 9078 607 Face 20983 9539 10918 9219 Face 20984 6607 10665 8864 Face 20985 1714 6049 7939 Face 20986 4550 9086 6908 Face 20987 4550 2359 9086 Face 20988 10313 1488 9087 Face 20989 1065 9089 3561 Face 20990 8458 11095 8614 Face 20991 365 5670 4635 Face 20992 365 2419 5670 Face 20993 7947 4993 4051 Face 20994 5378 9096 3990 Face 20995 5378 4807 9096 Face 20996 9492 5405 7371 Face 20997 10428 10956 5570 Face 20998 10428 7845 10956 Face 20999 10015 7932 696 Face 21000 6779 10946 6202 Face 21001 2113 10067 10608 Face 21002 2767 9109 10225 Face 21003 2767 5282 9109 Face 21004 4948 7198 2394 Face 21005 7425 2255 2524 Face 21006 7192 2091 9112 Face 21007 1341 2724 8662 Face 21008 7604 10280 1621 Face 21009 3364 42 3233 Face 21010 5945 1649 3281 Face 21011 9120 2738 4088 Face 21012 1059 7284 4511 Face 21013 634 3294 6356 Face 21014 8270 9124 5038 Face 21015 4716 2694 5081 Face 21016 452 4503 9133 Face 21017 7862 6541 9134 Face 21018 828 1130 9135 Face 21019 5176 10749 9136 Face 21020 62 9141 3371 Face 21021 2613 3458 2019 Face 21022 8997 7402 2090 Face 21023 3203 9145 5333 Face 21024 3203 2195 9145 Face 21025 5537 864 9146 Face 21026 1881 722 4306 Face 21027 4259 9147 9414 Face 21028 817 1536 2332 Face 21029 5782 9149 9927 Face 21030 9499 1276 10842 Face 21031 2338 9150 6558 Face 21032 2338 4659 9150 Face 21033 1642 7187 9655 Face 21034 7641 9155 1002 Face 21035 7641 5827 9155 Face 21036 6699 10614 9156 Face 21037 9921 806 2689 Face 21038 9921 6029 806 Face 21039 7971 3326 2608 Face 21040 7412 5075 9163 Face 21041 2861 5676 9165 Face 21042 7570 141 1463 Face 21043 9852 4208 2466 Face 21044 3757 753 10500 Face 21045 9174 2495 2747 Face 21046 4768 10971 4992 Face 21047 1933 8016 5981 Face 21048 1723 9179 3307 Face 21049 1723 7276 9179 Face 21050 624 6895 6896 Face 21051 3479 10201 9742 Face 21052 3479 1919 10201 Face 21053 1676 4863 6786 Face 21054 8967 8535 9183 Face 21055 9192 9188 1654 Face 21056 10599 2184 5970 Face 21057 186 9197 4594 Face 21058 186 1816 9197 Face 21059 10455 10326 9199 Face 21060 10446 1464 3719 Face 21061 7674 678 9202 Face 21062 2327 10651 8950 Face 21063 2327 2077 10651 Face 21064 10886 5114 166 Face 21065 7845 9203 4469 Face 21066 7845 5901 9203 Face 21067 1844 9204 8820 Face 21068 5304 1088 1445 Face 21069 7158 7036 9751 Face 21070 7449 10713 4774 Face 21071 6778 3440 641 Face 21072 10983 3273 3375 Face 21073 9317 9726 5765 Face 21074 9317 7109 9726 Face 21075 10150 2706 6730 Face 21076 10883 2330 3407 Face 21077 10883 491 2330 Face 21078 2364 161 10196 Face 21079 2364 7038 161 Face 21080 2694 9215 9530 Face 21081 1534 7763 6857 Face 21082 8331 6315 9230 Face 21083 3033 3469 9231 Face 21084 1618 5725 10455 Face 21085 3388 5524 9244 Face 21086 2825 6437 1888 Face 21087 312 10928 7214 Face 21088 10497 5763 1384 Face 21089 1251 7429 7452 Face 21090 1982 2566 4763 Face 21091 5198 498 2566 Face 21092 9298 6187 9257 Face 21093 2171 1812 2743 Face 21094 8251 6738 11047 Face 21095 2310 3128 10280 Face 21096 2310 3039 3128 Face 21097 6357 4189 9231 Face 21098 585 9030 9260 Face 21099 1362 9966 9263 Face 21100 124 8408 9266 Face 21101 3106 9270 4227 Face 21102 3106 10478 9270 Face 21103 7372 9271 565 Face 21104 7372 10432 9271 Face 21105 7224 10542 9684 Face 21106 3540 1230 9275 Face 21107 1828 2339 7396 Face 21108 10087 5534 3788 Face 21109 3139 661 9283 Face 21110 324 7769 9759 Face 21111 3082 8796 7351 Face 21112 4498 5850 10597 Face 21113 158 7875 9288 Face 21114 2594 10185 6816 Face 21115 2594 803 10185 Face 21116 2392 9292 9607 Face 21117 2392 7431 9292 Face 21118 2405 4923 4103 Face 21119 3336 6694 4554 Face 21120 4827 3362 2113 Face 21121 4827 9900 3362 Face 21122 11012 1080 9300 Face 21123 8697 4302 9303 Face 21124 9077 4473 5674 Face 21125 2031 6796 9307 Face 21126 436 3393 7722 Face 21127 6180 7887 4664 Face 21128 9642 7419 5015 Face 21129 7129 2723 9309 Face 21130 6867 6176 9312 Face 21131 2140 9315 5711 Face 21132 2140 7562 9315 Face 21133 7852 4743 9323 Face 21134 4746 6986 5344 Face 21135 363 9839 4647 Face 21136 9012 8204 9330 Face 21137 1435 5561 2976 Face 21138 5811 9987 4944 Face 21139 5811 7250 9987 Face 21140 988 9067 4567 Face 21141 988 7470 9067 Face 21142 6245 8389 9706 Face 21143 704 4132 9338 Face 21144 8095 10625 9340 Face 21145 1585 6663 9343 Face 21146 4017 3782 9344 Face 21147 4379 9345 2080 Face 21148 4379 10536 3868 Face 21149 10142 2796 10217 Face 21150 8783 9459 6294 Face 21151 2399 10079 9359 Face 21152 5445 9361 1051 Face 21153 5445 9304 9361 Face 21154 10240 10700 9362 Face 21155 4113 7904 4052 Face 21156 1200 9370 9369 Face 21157 1200 10205 9370 Face 21158 10135 1099 6690 Face 21159 4120 1690 5265 Face 21160 3015 9375 7133 Face 21161 3015 6138 9375 Face 21162 3982 7738 8499 Face 21163 654 3973 4437 Face 21164 654 9931 3973 Face 21165 1917 1321 2800 Face 21166 7966 2293 5901 Face 21167 5862 10419 35 Face 21168 5045 10822 9385 Face 21169 5104 3262 9388 Face 21170 8136 9394 2218 Face 21171 8136 3332 9394 Face 21172 4418 9395 6978 Face 21173 4418 5028 9395 Face 21174 7488 9020 9448 Face 21175 3455 10437 9401 Face 21176 269 10907 1434 Face 21177 171 5221 9403 Face 21178 4957 10732 7413 Face 21179 1182 8368 7697 Face 21180 5533 5279 2384 Face 21181 1075 9450 9412 Face 21182 4340 7862 3350 Face 21183 1216 7534 6130 Face 21184 2813 3702 9416 Face 21185 2927 1958 9418 Face 21186 7041 5734 164 Face 21187 7041 3816 5734 Face 21188 10541 3961 6431 Face 21189 408 7167 1075 Face 21190 9516 259 9429 Face 21191 3409 3206 6605 Face 21192 2740 2110 10180 Face 21193 2740 3084 2110 Face 21194 8980 1980 4972 Face 21195 8980 5505 1980 Face 21196 2639 10573 7792 Face 21197 4139 9234 8632 Face 21198 8046 10284 8714 Face 21199 8046 6562 10284 Face 21200 10594 4317 5536 Face 21201 4991 2070 1406 Face 21202 4991 10921 2070 Face 21203 2717 9441 119 Face 21204 2717 6367 9441 Face 21205 2777 5540 9891 Face 21206 8335 3568 7342 Face 21207 9836 9446 7919 Face 21208 9836 4551 9446 Face 21209 10279 6439 9138 Face 21210 1961 1146 7670 Face 21211 313 5249 823 Face 21212 1500 5162 2342 Face 21213 8797 4281 9513 Face 21214 8797 9175 4281 Face 21215 10771 1603 3243 Face 21216 6762 4727 4439 Face 21217 1728 4429 4547 Face 21218 9583 3721 6725 Face 21219 7082 2805 8200 Face 21220 1432 3804 2820 Face 21221 1432 5007 3804 Face 21222 235 5684 1199 Face 21223 4352 7592 11045 Face 21224 4633 455 9457 Face 21225 4782 9458 6817 Face 21226 2891 9459 8783 Face 21227 2065 2578 8135 Face 21228 9915 3758 5880 Face 21229 5739 8230 7048 Face 21230 9243 1404 8028 Face 21231 9577 9544 9473 Face 21232 3175 5000 1641 Face 21233 10199 6853 9609 Face 21234 6778 9084 4522 Face 21235 3815 9479 6193 Face 21236 181 6714 949 Face 21237 181 10689 6714 Face 21238 4934 609 5490 Face 21239 8778 2306 2775 Face 21240 709 9894 1158 Face 21241 10807 3778 7079 Face 21242 10807 10020 3778 Face 21243 1922 9487 3873 Face 21244 1922 5911 9487 Face 21245 2537 1933 5981 Face 21246 2537 6418 1933 Face 21247 3936 2267 10366 Face 21248 9491 2542 9490 Face 21249 850 9492 5913 Face 21250 9985 8055 9494 Face 21251 7121 7299 9496 Face 21252 9500 3547 9284 Face 21253 7170 4382 2481 Face 21254 7170 2101 4382 Face 21255 6659 2355 9506 Face 21256 4583 4125 9373 Face 21257 9780 8443 9515 Face 21258 10281 9516 9429 Face 21259 9022 1940 2269 Face 21260 5134 3119 1482 Face 21261 11052 6695 5582 Face 21262 11052 2413 6695 Face 21263 10648 2738 9120 Face 21264 3459 8053 9523 Face 21265 4017 9344 6509 Face 21266 8918 9526 7028 Face 21267 6197 9528 3228 Face 21268 9877 7659 1462 Face 21269 1152 3595 5175 Face 21270 4316 1100 3810 Face 21271 7231 163 1810 Face 21272 10303 758 9532 Face 21273 5508 6515 10525 Face 21274 1323 2840 9116 Face 21275 3441 8896 9537 Face 21276 6668 10711 5155 Face 21277 9540 6305 9539 Face 21278 2623 1017 1274 Face 21279 3976 922 2459 Face 21280 9846 4887 2630 Face 21281 2547 7479 1741 Face 21282 6795 10466 2098 Face 21283 5146 1160 9573 Face 21284 10329 838 8010 Face 21285 671 656 9553 Face 21286 10596 2908 375 Face 21287 3611 9557 6195 Face 21288 3611 1509 9557 Face 21289 9560 9559 447 Face 21290 2743 1812 4891 Face 21291 977 9564 819 Face 21292 1026 2658 2005 Face 21293 6529 7236 3029 Face 21294 6877 9571 2681 Face 21295 6877 1945 9571 Face 21296 1471 586 5536 Face 21297 127 3037 6719 Face 21298 1370 2253 10171 Face 21299 5229 10020 9749 Face 21300 9704 10795 2112 Face 21301 1633 7715 637 Face 21302 9301 5495 9578 Face 21303 6202 11102 4435 Face 21304 6202 10946 11102 Face 21305 8202 614 5685 Face 21306 9085 8981 9585 Face 21307 6913 6207 9589 Face 21308 7635 1889 7829 Face 21309 7635 7921 1889 Face 21310 2058 10993 9591 Face 21311 3590 1611 8935 Face 21312 3590 3591 1611 Face 21313 4195 6086 4055 Face 21314 4195 9977 6086 Face 21315 10148 10879 1661 Face 21316 10148 2816 10879 Face 21317 3342 626 9595 Face 21318 3067 6846 9599 Face 21319 7722 10191 2117 Face 21320 7722 5562 10191 Face 21321 7736 2483 10048 Face 21322 9458 7859 3672 Face 21323 6091 3498 2204 Face 21324 11 2685 9618 Face 21325 1093 10403 147 Face 21326 3803 9620 5511 Face 21327 9627 6655 669 Face 21328 9589 781 6913 Face 21329 730 9622 9212 Face 21330 221 10306 10657 Face 21331 3595 9059 9625 Face 21332 6983 5509 9108 Face 21333 5636 1206 6940 Face 21334 2087 3580 7197 Face 21335 10032 5470 3877 Face 21336 5100 2012 4216 Face 21337 5209 9084 10685 Face 21338 11056 476 3029 Face 21339 365 4635 5943 Face 21340 470 3359 10618 Face 21341 85 2448 6781 Face 21342 209 7540 9645 Face 21343 8631 7065 10576 Face 21344 2870 741 8711 Face 21345 2870 7773 741 Face 21346 935 2999 5564 Face 21347 10575 6072 3893 Face 21348 10575 5727 6072 Face 21349 326 6609 2844 Face 21350 1275 9648 1998 Face 21351 2274 5313 9648 Face 21352 7864 8290 9653 Face 21353 5251 2802 9658 Face 21354 5869 1662 5011 Face 21355 2405 10943 5297 Face 21356 1415 896 8803 Face 21357 1415 7106 896 Face 21358 7608 2197 2161 Face 21359 1412 5042 1898 Face 21360 1412 10915 5042 Face 21361 2448 1978 6781 Face 21362 2448 2103 1978 Face 21363 46 645 1479 Face 21364 1216 2540 7534 Face 21365 5652 5235 5926 Face 21366 5652 1964 5235 Face 21367 1247 9662 4393 Face 21368 1247 1107 9662 Face 21369 2157 5273 3222 Face 21370 778 3055 9347 Face 21371 1861 6229 6405 Face 21372 6764 8976 1284 Face 21373 9672 6936 5916 Face 21374 307 9673 3925 Face 21375 3255 4912 1767 Face 21376 9968 4762 5952 Face 21377 9681 9680 2012 Face 21378 9681 4590 9680 Face 21379 1955 9870 6494 Face 21380 8275 2335 9683 Face 21381 7180 10555 10847 Face 21382 1746 7814 3400 Face 21383 7470 125 11085 Face 21384 4369 7937 1639 Face 21385 9996 1044 176 Face 21386 2910 6131 9687 Face 21387 6783 351 4642 Face 21388 307 3901 9705 Face 21389 8813 4671 5240 Face 21390 654 4604 7649 Face 21391 7330 8688 4446 Face 21392 407 3650 8313 Face 21393 3562 5697 4899 Face 21394 6867 6873 4507 Face 21395 10458 7946 7020 Face 21396 10458 9252 7946 Face 21397 2373 452 10872 Face 21398 10531 3275 9777 Face 21399 10531 3897 3275 Face 21400 826 3710 1616 Face 21401 8026 660 290 Face 21402 6945 215 403 Face 21403 4896 9721 8278 Face 21404 4896 8617 9721 Face 21405 7457 4572 432 Face 21406 4500 5502 6785 Face 21407 4500 9128 5502 Face 21408 289 10688 6978 Face 21409 10071 3386 6879 Face 21410 5207 661 3221 Face 21411 306 4625 3719 Face 21412 4638 6405 9732 Face 21413 9167 2560 5029 Face 21414 52 9893 5709 Face 21415 52 8491 9893 Face 21416 6717 9734 3565 Face 21417 501 3965 9735 Face 21418 4751 1825 4453 Face 21419 796 9738 5247 Face 21420 11068 10704 10285 Face 21421 11068 7383 10704 Face 21422 6494 9870 9739 Face 21423 200 6159 1059 Face 21424 10730 8160 9743 Face 21425 9735 4516 501 Face 21426 7865 7847 2140 Face 21427 3226 5094 10264 Face 21428 2485 821 2119 Face 21429 2346 4274 8125 Face 21430 10020 655 9749 Face 21431 10570 7257 6256 Face 21432 865 748 10057 Face 21433 9773 5340 5988 Face 21434 2344 3882 561 Face 21435 9598 11055 9753 Face 21436 3566 7343 9754 Face 21437 8067 6491 5698 Face 21438 9535 3146 3120 Face 21439 6102 4682 8702 Face 21440 6102 11001 4682 Face 21441 2913 4859 6373 Face 21442 9764 208 9765 Face 21443 9927 10782 5782 Face 21444 6886 6572 9766 Face 21445 5091 6708 5750 Face 21446 10642 5511 4381 Face 21447 1513 8554 10037 Face 21448 9770 9769 2324 Face 21449 9770 7091 9769 Face 21450 7872 21 10868 Face 21451 3175 10010 7858 Face 21452 3175 1641 10010 Face 21453 1313 4233 5634 Face 21454 2201 9774 5560 Face 21455 2201 6924 9774 Face 21456 2431 3095 11069 Face 21457 9779 689 971 Face 21458 1604 9783 10244 Face 21459 1604 7765 9783 Face 21460 6007 7829 9789 Face 21461 2415 8664 9791 Face 21462 8916 5902 9887 Face 21463 4175 10683 9798 Face 21464 9800 390 8101 Face 21465 9800 2136 390 Face 21466 231 9596 6909 Face 21467 231 2203 9596 Face 21468 1595 11093 580 Face 21469 3569 4131 9805 Face 21470 8492 9806 824 Face 21471 8895 7086 2998 Face 21472 3107 3730 3121 Face 21473 1430 9820 3504 Face 21474 1430 4954 9820 Face 21475 5809 9031 9821 Face 21476 362 1091 7106 Face 21477 617 9824 9037 Face 21478 617 6924 9824 Face 21479 9830 2606 10936 Face 21480 6215 5364 4722 Face 21481 6363 423 6868 Face 21482 763 8464 1726 Face 21483 8043 4530 6532 Face 21484 8043 2755 4530 Face 21485 3221 1598 9837 Face 21486 10335 9839 363 Face 21487 10335 1562 9839 Face 21488 2528 2551 3409 Face 21489 3711 9842 6163 Face 21490 5557 1677 2962 Face 21491 2518 1345 1292 Face 21492 3873 9175 4045 Face 21493 6689 8918 3857 Face 21494 3031 8753 874 Face 21495 8728 7813 9319 Face 21496 28 8088 9593 Face 21497 2277 3928 9869 Face 21498 822 7184 2400 Face 21499 1219 8841 5178 Face 21500 10559 1209 9881 Face 21501 4305 9114 7945 Face 21502 5905 9158 7475 Face 21503 1323 1783 2840 Face 21504 2135 6453 1288 Face 21505 5242 1531 9885 Face 21506 9081 5302 9886 Face 21507 6457 1578 367 Face 21508 9466 9333 9436 Face 21509 9466 2748 9333 Face 21510 9635 1511 2644 Face 21511 697 9890 9121 Face 21512 697 6144 9890 Face 21513 9180 10607 483 Face 21514 8125 4274 2790 Face 21515 11039 5850 9904 Face 21516 9909 5696 5077 Face 21517 9909 381 5696 Face 21518 7462 8300 10671 Face 21519 4311 5320 281 Face 21520 5983 1494 9921 Face 21521 10796 9149 625 Face 21522 274 7487 1273 Face 21523 2451 3542 6999 Face 21524 3089 2799 9930 Face 21525 4098 2321 2298 Face 21526 3542 6974 7755 Face 21527 4340 5485 7862 Face 21528 4340 1584 5485 Face 21529 7062 8417 9934 Face 21530 8819 9041 9935 Face 21531 8783 9939 9110 Face 21532 8783 6294 9939 Face 21533 8365 9940 8304 Face 21534 8365 5907 9940 Face 21535 3887 10624 9942 Face 21536 5038 6044 8270 Face 21537 5038 6045 6044 Face 21538 444 5301 5281 Face 21539 8601 6560 8838 Face 21540 8865 7631 9785 Face 21541 2911 1983 2458 Face 21542 1189 2612 754 Face 21543 9982 9440 9040 Face 21544 4932 7798 10541 Face 21545 3955 7495 9962 Face 21546 3435 7252 4575 Face 21547 5046 8810 9056 Face 21548 5046 7505 8810 Face 21549 4936 3113 5948 Face 21550 2046 7200 7087 Face 21551 576 9972 5724 Face 21552 120 2992 2455 Face 21553 206 4686 9274 Face 21554 7482 4544 9975 Face 21555 10247 4313 3853 Face 21556 9981 6593 7298 Face 21557 1373 9981 5246 Face 21558 1373 6593 9981 Face 21559 2625 1908 7136 Face 21560 7250 4242 9987 Face 21561 10414 9989 9589 Face 21562 1581 9991 9220 Face 21563 1581 801 9991 Face 21564 9993 6977 9994 Face 21565 5281 7250 444 Face 21566 1722 9869 420 Face 21567 1722 2277 9869 Face 21568 10060 10941 5426 Face 21569 107 8571 6570 Face 21570 6958 2113 10052 Face 21571 2303 7173 2814 Face 21572 1060 5215 9997 Face 21573 5834 2161 1679 Face 21574 5134 10003 94 Face 21575 5134 7116 10003 Face 21576 57 4035 5137 Face 21577 7940 1773 10006 Face 21578 4535 11026 3349 Face 21579 8897 8236 10678 Face 21580 5853 7933 7715 Face 21581 10095 8628 4886 Face 21582 3570 4139 8632 Face 21583 580 10011 1595 Face 21584 8887 2593 2992 Face 21585 8887 1745 2593 Face 21586 6006 4007 11097 Face 21587 4098 5754 8224 Face 21588 9659 3639 5858 Face 21589 4095 4355 7530 Face 21590 4095 4074 4355 Face 21591 3511 10026 10850 Face 21592 3511 6043 10026 Face 21593 1666 993 10033 Face 21594 3096 6084 8247 Face 21595 2143 3991 7822 Face 21596 2143 5911 3991 Face 21597 8554 9885 10037 Face 21598 10645 3211 3199 Face 21599 10154 8206 9245 Face 21600 4342 3047 10045 Face 21601 11023 8823 4563 Face 21602 2888 6658 10048 Face 21603 40 10049 8283 Face 21604 6876 10051 2628 Face 21605 6876 6971 10051 Face 21606 916 10053 6944 Face 21607 916 11015 10053 Face 21608 916 10054 2758 Face 21609 916 6944 10054 Face 21610 9173 8372 9899 Face 21611 2080 4791 10055 Face 21612 10583 7514 10257 Face 21613 9647 6860 2209 Face 21614 6860 10230 2209 Face 21615 4441 4457 10058 Face 21616 5426 8725 10060 Face 21617 6339 3586 5326 Face 21618 8720 5422 10061 Face 21619 10070 10359 10069 Face 21620 8568 7337 10078 Face 21621 4435 5074 6371 Face 21622 11054 5112 2905 Face 21623 6603 5627 5659 Face 21624 7774 1489 10933 Face 21625 8784 9206 9799 Face 21626 5787 8052 7805 Face 21627 6590 6660 2638 Face 21628 5892 5157 2126 Face 21629 5892 531 5157 Face 21630 5033 7128 10249 Face 21631 7433 10093 9342 Face 21632 7433 8618 10093 Face 21633 5364 6215 854 Face 21634 10451 10094 3329 Face 21635 10451 8847 10094 Face 21636 9270 5400 4227 Face 21637 1812 7743 7776 Face 21638 2824 10097 6199 Face 21639 7484 8092 10099 Face 21640 8675 6920 6922 Face 21641 2694 4716 9215 Face 21642 5156 7142 1778 Face 21643 325 10106 9669 Face 21644 4236 7999 10108 Face 21645 1417 4874 2924 Face 21646 8247 6203 9520 Face 21647 4497 8764 8150 Face 21648 2647 10727 9295 Face 21649 5722 5422 8720 Face 21650 1596 3870 6484 Face 21651 6405 6229 9732 Face 21652 989 1665 10116 Face 21653 3770 4416 9639 Face 21654 4526 3236 8005 Face 21655 4377 10798 5433 Face 21656 8749 10122 9614 Face 21657 8749 8992 10122 Face 21658 8657 5898 4597 Face 21659 9700 3849 1480 Face 21660 7706 6091 5062 Face 21661 10301 7139 10132 Face 21662 7778 5199 9411 Face 21663 5538 3370 8034 Face 21664 1099 10135 1566 Face 21665 8023 9602 10136 Face 21666 5825 10138 7224 Face 21667 7915 1596 3188 Face 21668 7915 10355 1596 Face 21669 2986 6342 2345 Face 21670 2582 1071 7294 Face 21671 2704 10139 1631 Face 21672 2704 5253 10139 Face 21673 2885 194 10140 Face 21674 4935 2587 328 Face 21675 10482 6410 10277 Face 21676 3973 6969 4437 Face 21677 37 447 785 Face 21678 8137 8643 10146 Face 21679 1661 3443 10148 Face 21680 1035 6332 5267 Face 21681 1035 10695 6332 Face 21682 10160 10361 1123 Face 21683 10400 3102 10172 Face 21684 5283 1138 10163 Face 21685 7597 8857 9674 Face 21686 4311 3670 5320 Face 21687 9652 8187 1582 Face 21688 6536 4774 10174 Face 21689 2698 2262 7314 Face 21690 6424 10928 10023 Face 21691 531 8045 10184 Face 21692 9619 9431 11090 Face 21693 9619 4358 9431 Face 21694 6223 9140 10185 Face 21695 6829 8952 10031 Face 21696 6829 7658 8952 Face 21697 1291 10193 5102 Face 21698 1291 9378 10193 Face 21699 4136 729 5608 Face 21700 3414 10197 1813 Face 21701 3414 9579 10197 Face 21702 2885 10140 7132 Face 21703 8045 3596 10184 Face 21704 1746 9079 3493 Face 21705 3903 10198 8308 Face 21706 3903 9387 10198 Face 21707 405 2767 1470 Face 21708 405 5282 2767 Face 21709 6597 5786 4743 Face 21710 582 3591 10175 Face 21711 582 6368 3591 Face 21712 5432 10207 2607 Face 21713 5432 1045 10207 Face 21714 2544 4709 5667 Face 21715 2428 1458 2093 Face 21716 2428 6569 1458 Face 21717 7498 10218 4173 Face 21718 7498 3018 10218 Face 21719 5292 6379 10027 Face 21720 6812 1497 1173 Face 21721 6812 3520 1497 Face 21722 1387 9722 5328 Face 21723 3746 10228 1185 Face 21724 5912 5931 555 Face 21725 9587 4104 7178 Face 21726 3767 1184 2579 Face 21727 10267 4651 10236 Face 21728 8312 6689 10238 Face 21729 3655 10240 9362 Face 21730 3655 10241 10240 Face 21731 2116 7010 6998 Face 21732 8362 10242 3645 Face 21733 8362 6286 10242 Face 21734 8806 10210 10244 Face 21735 9572 3802 10253 Face 21736 6847 7520 1154 Face 21737 10407 1201 586 Face 21738 2350 2118 10159 Face 21739 321 4824 6512 Face 21740 6436 4252 2234 Face 21741 1105 7923 10263 Face 21742 2070 10921 7956 Face 21743 10236 5706 10267 Face 21744 1845 3600 7379 Face 21745 5140 7011 5168 Face 21746 3228 3304 2219 Face 21747 3424 6116 8826 Face 21748 3424 9432 6116 Face 21749 4688 10284 6627 Face 21750 6980 7467 10287 Face 21751 566 3540 9275 Face 21752 5004 9475 10289 Face 21753 2758 7130 916 Face 21754 2920 7598 4862 Face 21755 2920 486 7598 Face 21756 662 5887 8420 Face 21757 1868 8197 10299 Face 21758 8324 9 513 Face 21759 5596 2764 6087 Face 21760 4503 1230 3540 Face 21761 9440 529 8498 Face 21762 9440 8498 5265 Face 21763 1339 6406 1941 Face 21764 10282 4923 2405 Face 21765 8531 2531 8227 Face 21766 11012 4002 8302 Face 21767 11012 116 4002 Face 21768 3737 8022 10311 Face 21769 10991 5280 3116 Face 21770 7043 4093 10318 Face 21771 8327 4257 8711 Face 21772 240 7721 5758 Face 21773 10812 10760 2517 Face 21774 520 10323 5397 Face 21775 520 1134 10323 Face 21776 2142 2750 5610 Face 21777 2550 8630 8847 Face 21778 8012 5433 1973 Face 21779 6987 2481 10327 Face 21780 6524 8144 8166 Face 21781 7595 7145 10337 Face 21782 8028 1404 10338 Face 21783 8244 10024 1232 Face 21784 5457 817 1746 Face 21785 3889 4752 3888 Face 21786 3889 2866 4752 Face 21787 9392 10342 9107 Face 21788 9392 9487 10342 Face 21789 5757 7368 7024 Face 21790 10598 2173 1127 Face 21791 10598 10121 2173 Face 21792 770 7854 3226 Face 21793 2708 5207 8424 Face 21794 5200 5661 10450 Face 21795 580 4724 9047 Face 21796 2221 3895 146 Face 21797 4152 2371 10363 Face 21798 9269 626 9265 Face 21799 192 2294 118 Face 21800 6855 8414 8288 Face 21801 9976 5228 1618 Face 21802 10402 4218 1468 Face 21803 9893 4099 10369 Face 21804 5651 5849 1521 Face 21805 2252 5870 5204 Face 21806 2252 9711 5870 Face 21807 5008 5283 4013 Face 21808 4128 8171 5614 Face 21809 7675 5995 223 Face 21810 1906 10377 5602 Face 21811 1906 5920 10377 Face 21812 2624 2159 5255 Face 21813 989 10116 7929 Face 21814 9413 6869 3076 Face 21815 1856 8709 10384 Face 21816 1700 9278 1876 Face 21817 625 10166 6033 Face 21818 3789 10801 1248 Face 21819 4764 10132 4653 Face 21820 10397 10396 6070 Face 21821 110 4070 10396 Face 21822 1440 10843 6470 Face 21823 901 6088 10404 Face 21824 8840 8057 11094 Face 21825 1395 7977 10408 Face 21826 2574 4037 10412 Face 21827 8185 1838 9954 Face 21828 6902 3184 10416 Face 21829 2122 3453 10417 Face 21830 1147 10810 10419 Face 21831 2887 6349 1106 Face 21832 7831 3696 10665 Face 21833 10777 7776 10426 Face 21834 5481 5684 235 Face 21835 7441 5030 3488 Face 21836 4581 10375 7206 Face 21837 2425 10398 5834 Face 21838 3491 1732 10440 Face 21839 3573 244 10452 Face 21840 8629 701 5501 Face 21841 8629 9353 701 Face 21842 1552 4129 4492 Face 21843 1950 5496 6387 Face 21844 1504 592 6135 Face 21845 3260 6020 1043 Face 21846 4234 851 7198 Face 21847 4234 8095 851 Face 21848 1261 10061 10862 Face 21849 1261 8720 10061 Face 21850 2317 10058 10460 Face 21851 29 9856 6514 Face 21852 8660 10464 10463 Face 21853 8660 2812 10464 Face 21854 815 6112 2309 Face 21855 9237 10468 150 Face 21856 758 10469 6000 Face 21857 758 151 10469 Face 21858 10471 9640 5263 Face 21859 796 5247 2625 Face 21860 176 1044 8858 Face 21861 3582 4484 10478 Face 21862 2602 378 5361 Face 21863 5595 7173 2303 Face 21864 7955 10115 3201 Face 21865 1894 2646 4722 Face 21866 404 10484 7315 Face 21867 404 3326 10484 Face 21868 2548 8513 1407 Face 21869 7827 2625 9776 Face 21870 482 5836 6763 Face 21871 2888 2889 6658 Face 21872 7112 7823 10504 Face 21873 10305 10921 1081 Face 21874 3091 2886 10520 Face 21875 7487 274 8786 Face 21876 9104 2607 6151 Face 21877 9650 10515 8782 Face 21878 9650 7254 10515 Face 21879 9283 771 3139 Face 21880 2886 2742 10520 Face 21881 2375 5034 7333 Face 21882 2375 8455 5034 Face 21883 3792 10522 1309 Face 21884 3792 5741 10522 Face 21885 4472 5962 3288 Face 21886 1735 8731 10612 Face 21887 1735 10527 8731 Face 21888 1477 8772 2938 Face 21889 6797 8772 1477 Face 21890 10 2782 9543 Face 21891 1398 1962 7442 Face 21892 9908 10536 10055 Face 21893 523 1953 8590 Face 21894 8379 9509 1175 Face 21895 8589 6300 3070 Face 21896 8589 3063 6300 Face 21897 8596 9448 10114 Face 21898 8971 3993 3061 Face 21899 3535 3287 2017 Face 21900 3535 6551 3287 Face 21901 256 1717 10550 Face 21902 8296 1954 4702 Face 21903 2718 10554 3359 Face 21904 7180 5350 10555 Face 21905 10502 5856 2287 Face 21906 837 6008 7214 Face 21907 3042 4585 10560 Face 21908 2058 10563 5171 Face 21909 2058 10977 10563 Face 21910 4053 6523 10566 Face 21911 4202 10104 4172 Face 21912 1659 7814 9079 Face 21913 5811 3572 10571 Face 21914 1503 433 1750 Face 21915 2262 6742 8971 Face 21916 6974 7704 7755 Face 21917 6974 3123 7704 Face 21918 8986 9282 2518 Face 21919 4624 10485 3104 Face 21920 9758 6438 10587 Face 21921 7560 10591 10590 Face 21922 7560 9674 10591 Face 21923 8936 8204 3059 Face 21924 5939 971 689 Face 21925 2786 3833 10604 Face 21926 7626 884 10609 Face 21927 7626 10609 1213 Face 21928 229 10613 7363 Face 21929 10689 746 10619 Face 21930 10689 10619 6982 Face 21931 10724 3178 1011 Face 21932 5489 273 10620 Face 21933 5489 10620 10621 Face 21934 9333 2748 3179 Face 21935 179 10111 5434 Face 21936 9445 9340 10625 Face 21937 4273 8071 10629 Face 21938 824 6729 8492 Face 21939 824 10474 6729 Face 21940 4674 7027 981 Face 21941 9825 944 10640 Face 21942 7221 2082 10641 Face 21943 7774 2622 1898 Face 21944 6749 10643 5274 Face 21945 6749 629 10643 Face 21946 7968 4537 458 Face 21947 9284 324 7477 Face 21948 10117 1585 195 Face 21949 5983 2445 1494 Face 21950 2981 4569 5476 Face 21951 9704 4016 4299 Face 21952 1982 5198 2566 Face 21953 6665 8669 10661 Face 21954 798 10106 10662 Face 21955 6213 2100 7066 Face 21956 6213 1528 2100 Face 21957 8039 10667 3676 Face 21958 7844 692 4112 Face 21959 2210 10673 10202 Face 21960 2210 9073 10673 Face 21961 5791 197 10674 Face 21962 10333 8614 5403 Face 21963 2323 10676 8213 Face 21964 2323 4122 10676 Face 21965 3091 10681 6118 Face 21966 3091 3528 10681 Face 21967 1019 3420 9093 Face 21968 1019 10644 3420 Face 21969 8353 9369 4436 Face 21970 8812 9406 10682 Face 21971 5416 10683 2690 Face 21972 673 4113 10684 Face 21973 7589 8301 10685 Face 21974 3861 1471 2722 Face 21975 9373 2796 10694 Face 21976 2176 4631 5101 Face 21977 10045 10727 4342 Face 21978 6284 1010 8946 Face 21979 6284 10699 1010 Face 21980 7823 5957 7022 Face 21981 6503 10704 7383 Face 21982 6503 10825 10704 Face 21983 9880 10705 1224 Face 21984 5223 4241 4477 Face 21985 6234 5059 7517 Face 21986 6234 6511 5059 Face 21987 10286 3782 10707 Face 21988 6992 1732 7105 Face 21989 6992 627 1732 Face 21990 6957 4126 958 Face 21991 11076 5602 10092 Face 21992 716 3693 1456 Face 21993 8300 1259 10373 Face 21994 5616 564 10911 Face 21995 8986 3884 6144 Face 21996 2908 2511 375 Face 21997 2908 7192 2511 Face 21998 632 3855 7431 Face 21999 632 7431 2768 Face 22000 3643 8750 10397 Face 22001 5115 10741 1392 Face 22002 5115 4212 10741 Face 22003 9442 10877 947 Face 22004 4464 7690 10742 Face 22005 2040 7421 10743 Face 22006 4968 3971 2783 Face 22007 6312 11089 10747 Face 22008 5564 9495 10530 Face 22009 10844 6781 1978 Face 22010 10844 7150 6781 Face 22011 2740 7526 3084 Face 22012 1561 5937 5477 Face 22013 1561 7674 5937 Face 22014 3041 5798 2030 Face 22015 6150 3151 9527 Face 22016 10419 10759 8758 Face 22017 10419 10810 10759 Face 22018 7191 2344 10762 Face 22019 174 6088 10763 Face 22020 8954 8435 9816 Face 22021 8218 2312 10765 Face 22022 3015 1136 6138 Face 22023 7862 7690 10766 Face 22024 10426 5351 10777 Face 22025 9304 8212 3969 Face 22026 1575 2085 6562 Face 22027 6238 682 5139 Face 22028 5442 8098 10785 Face 22029 6496 887 9901 Face 22030 4898 10790 6482 Face 22031 4898 767 10790 Face 22032 6948 9641 10791 Face 22033 2060 819 8946 Face 22034 3174 7877 1879 Face 22035 706 5174 9937 Face 22036 4154 6411 2459 Face 22037 6347 2630 4887 Face 22038 2147 9443 10795 Face 22039 10028 88 1736 Face 22040 11091 10797 5991 Face 22041 598 5178 6167 Face 22042 1973 5433 10798 Face 22043 2884 8420 5887 Face 22044 8043 1821 2755 Face 22045 9370 778 10802 Face 22046 5830 6259 10809 Face 22047 6486 2409 10812 Face 22048 7560 10814 6152 Face 22049 7560 4665 10814 Face 22050 8546 8999 4328 Face 22051 10618 198 8718 Face 22052 9479 1609 6193 Face 22053 6514 8559 6814 Face 22054 393 10441 10821 Face 22055 4366 8809 10826 Face 22056 10833 6591 10832 Face 22057 6804 512 10837 Face 22058 7976 1706 5580 Face 22059 353 10841 8962 Face 22060 353 9208 10841 Face 22061 9431 4036 10845 Face 22062 1176 10846 1053 Face 22063 2221 2154 9646 Face 22064 879 319 3598 Face 22065 9633 10439 10857 Face 22066 8538 367 8602 Face 22067 5168 10863 5140 Face 22068 5168 5436 10863 Face 22069 3855 632 9981 Face 22070 6934 265 3345 Face 22071 9477 10876 7959 Face 22072 8889 2167 6908 Face 22073 2068 4893 9697 Face 22074 7769 10890 3840 Face 22075 7769 9804 10890 Face 22076 7260 2329 4570 Face 22077 8270 6044 6617 Face 22078 7258 10753 4620 Face 22079 2138 2216 9177 Face 22080 8386 1594 1074 Face 22081 4034 2455 2474 Face 22082 3748 6261 2996 Face 22083 441 9513 10896 Face 22084 7563 700 10576 Face 22085 9796 4356 3949 Face 22086 6307 5823 10874 Face 22087 5523 2510 856 Face 22088 7933 5853 7432 Face 22089 2726 10902 4750 Face 22090 2726 888 10902 Face 22091 7647 10022 373 Face 22092 9922 4799 10905 Face 22093 253 9291 4059 Face 22094 9425 10392 10911 Face 22095 860 5437 5537 Face 22096 3341 10912 2276 Face 22097 3341 7748 10912 Face 22098 3284 7166 7504 Face 22099 1280 2160 939 Face 22100 459 6706 9454 Face 22101 3972 124 3971 Face 22102 7179 4133 283 Face 22103 4569 2981 10922 Face 22104 10924 4544 10923 Face 22105 10941 1327 3633 Face 22106 8457 1903 5080 Face 22107 8831 3591 10926 Face 22108 10107 6126 5656 Face 22109 1293 10932 3122 Face 22110 10100 5729 8740 Face 22111 844 9615 9555 Face 22112 10638 5188 1146 Face 22113 10216 30 10939 Face 22114 10776 4857 8103 Face 22115 2032 1583 10945 Face 22116 489 5075 1414 Face 22117 9377 1750 10656 Face 22118 6291 8493 10950 Face 22119 4645 6715 5413 Face 22120 4645 4065 6715 Face 22121 10952 10951 6213 Face 22122 10952 8921 10951 Face 22123 370 8959 10953 Face 22124 5818 7592 10954 Face 22125 6795 2098 9610 Face 22126 10025 9524 10957 Face 22127 10915 7493 10958 Face 22128 2746 9160 5646 Face 22129 4895 719 10961 Face 22130 1145 6463 3937 Face 22131 957 3373 2362 Face 22132 9218 5989 4703 Face 22133 9436 10970 8784 Face 22134 4906 6444 10973 Face 22135 10245 7600 7488 Face 22136 1133 624 1892 Face 22137 1460 7160 2600 Face 22138 8444 10978 7215 Face 22139 7264 8386 8505 Face 22140 8195 2043 9945 Face 22141 6746 4068 1462 Face 22142 10102 4077 1012 Face 22143 3486 10985 9386 Face 22144 3486 8229 10985 Face 22145 2135 7891 10986 Face 22146 7550 10871 10991 Face 22147 5655 6452 9853 Face 22148 182 1116 10998 Face 22149 913 10556 10123 Face 22150 913 1759 10556 Face 22151 857 6267 3963 Face 22152 3845 1341 2935 Face 22153 806 2011 10959 Face 22154 10091 5016 11005 Face 22155 2555 3464 11009 Face 22156 8608 11011 4873 Face 22157 9300 5478 11012 Face 22158 1754 7044 11021 Face 22159 1078 169 6833 Face 22160 3522 5110 10858 Face 22161 245 11025 6168 Face 22162 1012 11027 7816 Face 22163 9274 2178 206 Face 22164 6402 11029 6506 Face 22165 6402 7526 11029 Face 22166 560 1022 2907 Face 22167 7242 11032 320 Face 22168 7242 851 11032 Face 22169 856 2510 11034 Face 22170 4829 4447 7028 Face 22171 7452 9240 4616 Face 22172 459 9454 1824 Face 22173 4528 2687 6118 Face 22174 7509 8183 6331 Face 22175 10368 11044 10675 Face 22176 4320 1237 8484 Face 22177 7041 10768 4828 Face 22178 5221 463 11049 Face 22179 8650 3182 3315 Face 22180 1922 2413 11052 Face 22181 956 6330 6281 Face 22182 3282 11058 2152 Face 22183 6387 6600 11059 Face 22184 2854 5342 5833 Face 22185 3803 11061 3804 Face 22186 3080 4069 11062 Face 22187 4755 5364 854 Face 22188 3673 9302 2362 Face 22189 4683 6961 7069 Face 22190 190 11065 5884 Face 22191 190 8757 11065 Face 22192 1827 5023 6083 Face 22193 4616 9240 11069 Face 22194 798 11070 2846 Face 22195 798 2499 11070 Face 22196 7648 839 7532 Face 22197 608 10086 11071 Face 22198 7515 5371 2492 Face 22199 4215 11072 10514 Face 22200 4215 5049 11072 Face 22201 7687 3866 9194 Face 22202 3223 7777 9308 Face 22203 10943 4103 11074 Face 22204 10779 2457 7675 Face 22205 10779 10349 2457 Face 22206 723 9056 11076 Face 22207 1352 6150 9527 Face 22208 948 11079 9119 Face 22209 3717 720 3928 Face 22210 3717 7825 720 Face 22211 3264 10129 5131 Face 22212 9552 3222 9887 Face 22213 7147 2425 5572 Face 22214 3187 4719 10390 Face 22215 1098 787 5717 Face 22216 7384 3172 11092 Face 22217 6451 5341 11098 Face 22218 8448 200 8564 Face 22219 6837 9554 8903 Face 22220 8812 3877 11108 Face 22221 1852 7796 11109 Face 22222 544 6856 895 ================================================ FILE: scenes/GenerateBallsOnAPlane.php ================================================ function() { */ /* return 'FlatColor ' . GenerateBallsOnAPlane::getRandomColor(); */ /* }, */ 'ShinyColor' => function() { return 'ShinyColor ' . GenerateBallsOnAPlane::getRandomColor() . ' ' . GenerateBallsOnAPlane::getRandomSpecularReflective(); }, 'Checkerboard' => function() { return 'Checkerboard ' . GenerateBallsOnAPlane::getRandomColor() . ' ' . GenerateBallsOnAPlane::getRandomColor() . ' ' . rand(1, 20) . ' ' . GenerateBallsOnAPlane::getRandomSpecularReflective(); }, 'Glass' => function() { return 'Glass ' . (rand(1, 1000) / 200) . ' ' . rand(3, 150); }, 'Turbulence' => function() { return 'Turbulence ' . GenerateBallsOnAPlane::getRandomColor() . ' ' . GenerateBallsOnAPlane::getRandomColor() . ' ' . rand(1, 20) . ' ' . GenerateBallsOnAPlane::getRandomSpecularReflective(); }, 'Marble' => function() { return 'Marble ' . GenerateBallsOnAPlane::getRandomColor() . ' ' . GenerateBallsOnAPlane::getRandomColor() . ' ' . rand(1, 20) . ' ' . GenerateBallsOnAPlane::getRandomSpecularReflective(); }, 'CrissCross' => function() { return 'CrissCross ' . GenerateBallsOnAPlane::getRandomColor() . ' ' . GenerateBallsOnAPlane::getRandomColor() . ' ' . GenerateBallsOnAPlane::getRandomColor() . ' ' . rand(1, 20) . ' ' . GenerateBallsOnAPlane::getRandomSpecularReflective(); } ); $material = $materials[array_rand($materials)]; $material = $material(); $normalMap = self::getRandomNormalMap(); return "$material $normalMap"; } private static function getRandomNormalMap() { $normalMaps = array( 'NormalMap' => function() { return 'NormalMap ' . rand(1, 1000)/50 . ' ' . (rand(0, 1000) / 800); }, 'null' => function() { return 'null'; } ); $normalMap = $normalMaps[array_rand($normalMaps)]; return $normalMap(); } public static function getRandomColor() { return implode(' ', array( 'r' => rand(0, 1000)/1000, 'g' => rand(0, 1000)/1000, 'b' => rand(0, 1000)/1000 )); } public static function getRandomSpecularReflective() { return rand(3, 150) . ' ' . (rand(0, 70) / 100.0); } } ================================================ FILE: scenes/allMaterials.scn ================================================ cameraUp 0.0 1.0 0.0 cameraPosition 0.0 0.0 1000.0 cameraLookAt 110.0 0.0 0.0 cameraScreenWidth 2500 light 400 100 500 0.9 sphere 0.0 0.0 -9999999.0 9999899.0 CrissCross 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.05 -1 -1 null sphere -300.0 150.0 0.0 150 FlatColor 0.6 0.2 0.9 null sphere 300.0 150.0 0.0 125 ShinyColor 0.6 0.2 0.9 100 0.9 null sphere 0.0 150.0 0.0 100 Checkerboard 0.3 0.2 0.1 0.7 0.8 0.9 50 50 0.7 null sphere 600.0 125.0 0.0 140 Turbulence 0.0509 0.1803 0.0509 0.1607 0.2784 0.1607 0.75 -1 -1 null sphere -275.0 -150.0 150.0 125 Glass 2.0 50 null sphere 0.0 -150.0 0.0 150 Wood 0.1043 0.0737 0.0517 0.4215 0.2686 0.1888 0.01 -1 -1 null sphere 315.0 -150.0 0.0 150 Marble 0.4 0.3 0.2 0.6 0.7 0.8 0.5 50 0.15 NormalMap 0.5 0.25 sphere 625.0 -175.0 0.0 125 CrissCross 0.3 0.35 0.29 0.25 0.1 0.17 0.75 0.65 0.82 0.1 50 0.15 NormalMap 25 0.9 ================================================ FILE: scenes/ballsInAPit.scn ================================================ cameraUp 0 1 0 cameraPosition 995 400 0 cameraLookAt 100 0 0 cameraScreenWidth 1500 #dispersion 5.0 light 900 900 0 0.7 triangle 1000 10000 10000 1000 -10000 0 1000 0 -10000 FlatColor 1.0000 0.8901 0.8705 null triangle -1000 10000 10000 -1000 0 -10000 -1000 -10000 0 FlatColor 0.6941 0.4980 0.4627 null triangle 10000 10000 1000 -10000 0 1000 0 -100000 1000 FlatColor 0.9921 0.7960 0.7647 null triangle 10000 10000 -1000 0 -100000 -1000 -10000 0 -1000 FlatColor 0.9921 0.7960 0.7647 null triangle 10000 0 10000 0 0 -10000 -10000 0 10000 FlatColor 0.7647 0.9921 0.8941 null triangle 10000 1000 10000 -10000 1000 10000 0 1000 -10000 FlatColor 0.7647 0.9921 0.8941 null sphere 0 75 0 75 Glass 2.0 50 null sphere -998 20 -999 20 Turbulence 0.389 0.159 0.438 0.868 0.038 0.393 18 34 0.64 NormalMap 18.82 0.255 sphere -995 25 -926 25 Marble 0.928 0.242 0.878 0.455 0.481 0.09 13 116 0.48 null sphere -1005 18 -855 18 Glass 3.12 18 NormalMap 16.58 0.5975 sphere -994 16 -826 16 Glass 4.67 94 NormalMap 16.22 0.09375 sphere -984 24 -766 24 CrissCross 0.288 0.628 0.613 0.378 0.252 0.719 0.409 0.08 0.196 9 39 0.39 null sphere -1003 25 -702 25 Turbulence 0.78 0.66 0.594 0.357 0.25 0.288 16 27 0 NormalMap 15.84 0.775 sphere -995 15 -644 15 ShinyColor 0.535 0.259 0.372 17 0.15 null sphere -998 21 -612 21 Checkerboard 0.558 0.236 0.844 0.151 0.594 0.094 9 56 0.18 NormalMap 8.48 0.06125 sphere -1003 24 -571 24 CrissCross 0.18 0.097 0.392 0.394 0.674 0.624 0.896 0.13 0.808 10 57 0.46 null sphere -995 15 -516 15 Glass 2.78 93 NormalMap 19.22 0.3975 sphere -997 24 -440 24 Glass 1.66 130 null sphere -982 24 -396 24 Turbulence 0.16 0.855 0.504 0.164 0.344 0.252 5 136 0.61 NormalMap 17.22 0.225 sphere -991 23 -315 23 Turbulence 0.791 0.448 0.988 0.546 0.301 0.751 16 80 0.11 null sphere -999 19 -266 19 Marble 0.068 0.523 0.5 0.794 0.285 0.966 10 148 0.63 NormalMap 0.38 0.86 sphere -998 15 -193 15 CrissCross 0.246 0.974 0.375 0.736 0.738 0.834 0.441 0.4 0.153 11 139 0.46 NormalMap 4.18 0.77375 sphere -990 17 -133 17 Turbulence 0.437 0.565 0.974 0.424 0.033 0.895 20 33 0.09 null sphere -993 22 -90 22 ShinyColor 0.565 0.827 0.012 35 0.09 NormalMap 16.78 1.1325 sphere -978 18 -24 18 Marble 0.819 0.418 0.094 0.713 0.395 0.297 18 54 0.62 null sphere -1002 15 31 15 Checkerboard 0.071 0.002 0.355 0.91 0.909 0.771 6 119 0.28 null sphere -995 23 50 23 CrissCross 0.972 0.612 0.358 0.004 0.9 0.403 0.126 0.752 0.275 6 124 0.19 null sphere -975 19 129 19 Turbulence 0.631 0.601 0.09 0.863 0.038 0.867 10 117 0.35 NormalMap 7.74 1.0675 sphere -998 18 171 18 ShinyColor 0.532 0.852 0.861 122 0.33 null sphere -975 21 236 21 Turbulence 0.827 0.756 0.901 0.866 0.622 0.389 13 20 0.6 NormalMap 19.42 0.39375 sphere -977 17 279 17 Glass 2.845 36 null sphere -989 19 332 19 CrissCross 0.741 0.454 0.759 0.13 0.095 0.877 0.98 0.122 0.848 6 67 0.05 NormalMap 15.7 1.0425 sphere -993 25 383 25 Turbulence 0.501 0.981 0.999 0.263 0.361 0.84 18 76 0.41 NormalMap 5.16 0.88875 sphere -984 16 452 16 Turbulence 0.185 0.742 0.889 0.144 0.737 0.291 7 82 0.18 null sphere -983 21 496 21 Marble 0.178 0.691 0.863 0.579 0.824 0.553 3 122 0.38 NormalMap 17.22 0.905 sphere -979 23 578 23 ShinyColor 0.197 0.075 0.297 120 0.57 NormalMap 7.28 0.6775 sphere -1002 18 638 18 Glass 2.115 21 null sphere -1004 23 674 23 CrissCross 0.208 0.701 0.007 0.284 0.999 0.799 0.093 0.055 0.162 13 22 0.32 null sphere -999 15 737 15 ShinyColor 0.923 0.863 0.823 111 0.64 NormalMap 12.08 1.0325 sphere -990 18 807 18 Checkerboard 0.802 0.767 0.186 0.6 0.861 0.241 16 76 0.26 NormalMap 4.88 0.57375 sphere -985 17 836 17 Turbulence 0.33 0.809 0.261 0.934 0.635 0.245 5 20 0.02 null sphere -990 20 911 20 Glass 4.07 19 NormalMap 1.16 0.715 sphere -998 18 991 18 Marble 0.581 0.193 0.104 0.215 0.438 0.313 7 73 0 null sphere -937 23 -978 23 CrissCross 0.231 0.966 0.809 0.108 0.677 0.65 0.881 0.609 0.82 10 121 0.65 null sphere -939 15 -947 15 Checkerboard 0.704 0.803 0.79 0.484 0.682 0.75 2 102 0.09 null sphere -960 22 -893 22 CrissCross 0.784 0.442 0.495 0.022 0.679 0.509 0.738 0.921 0.169 16 95 0.68 null sphere -956 18 -835 18 CrissCross 0.292 0.989 0.312 0.65 0.97 0.83 0.468 0.754 0.272 20 117 0.67 NormalMap 10.28 1.09 sphere -946 18 -768 18 Turbulence 0.792 0.596 0.6 0.71 0.163 0.416 7 118 0.5 NormalMap 1.82 0.4475 sphere -936 25 -738 25 Turbulence 0.261 0.325 0.014 0.903 0.609 0.51 11 69 0.08 null sphere -955 19 -647 19 Turbulence 0.329 0.252 0.41 0.687 0.535 0.331 11 87 0.37 NormalMap 7.66 0.83375 sphere -940 22 -595 22 Checkerboard 0.98 0.768 0.305 0.762 0.373 0.211 3 88 0.58 null sphere -945 25 -543 25 CrissCross 0.263 0.027 0.507 0.93 0.589 0.214 0.611 0.053 0.53 17 7 0.21 NormalMap 15.9 0.83875 sphere -954 25 -483 25 CrissCross 0.021 0.188 0.485 0.761 0.914 0.61 0.023 0.942 0.116 20 81 0.23 null sphere -942 19 -412 19 Marble 0.076 0.94 0.957 0.524 0.852 0.569 10 118 0.41 null sphere -934 21 -354 21 Turbulence 0.324 0.892 0.656 0.183 0.258 0.272 7 111 0.48 NormalMap 10.52 0.03375 sphere -931 20 -292 20 Turbulence 0.142 0.955 0.367 0.493 0.555 0.244 18 17 0.16 NormalMap 3.36 0.7025 sphere -938 24 -261 24 ShinyColor 0.087 0.077 0.78 41 0.42 null sphere -953 23 -213 23 Marble 0.852 0.978 0.051 0.095 0.845 0.147 7 8 0.22 null sphere -947 22 -168 22 Glass 4.93 25 null sphere -938 21 -107 21 Glass 2.21 121 null sphere -953 15 -58 15 Turbulence 0.43 0.457 0.906 0.901 0.693 0.635 9 107 0.44 null sphere -957 23 9 23 Checkerboard 0.177 0.507 0.543 0.981 0.446 0.963 17 74 0.16 null sphere -958 16 71 16 Checkerboard 0.863 0.306 0.655 0.31 0.014 0.275 19 83 0.27 null sphere -937 16 100 16 Turbulence 0.295 0.249 0.579 0.523 0.086 0.429 2 38 0.38 NormalMap 17.12 0.705 sphere -955 16 155 16 Glass 3.61 132 null sphere -955 25 208 25 CrissCross 0.293 0.353 0.317 0.722 0.408 0.559 0.265 0.424 0.414 17 47 0.4 NormalMap 9.86 0.93875 sphere -947 21 266 21 Marble 0.121 0.993 0.618 0.103 0.707 0.447 7 3 0.56 null sphere -931 17 321 17 Turbulence 0.866 0.428 0.952 0.407 0.017 0.423 17 66 0.21 NormalMap 16.1 0.4875 sphere -961 23 373 23 Marble 0.59 0.228 0.463 0.8 0.216 0.094 9 8 0.02 null sphere -952 21 427 21 Checkerboard 0.905 0.305 0.515 0.71 0.695 0.017 11 106 0.44 NormalMap 3.16 0.7025 sphere -957 19 493 19 Marble 0.995 0 0.001 0.894 0.458 0.577 4 141 0.4 NormalMap 16.8 1.1025 sphere -944 21 561 21 ShinyColor 0.279 0.488 0.066 67 0.03 null sphere -939 18 587 18 Turbulence 0.694 0.532 0.174 0.152 0.109 0.374 2 104 0.5 null sphere -957 20 652 20 CrissCross 0.18 0.707 0.158 0.507 0.431 0.312 0.794 0.125 0.844 2 124 0.26 NormalMap 19.44 0.60625 sphere -956 15 709 15 CrissCross 0.994 0.303 0.21 0.592 0.161 0.166 0.772 0.868 0.325 6 47 0.45 NormalMap 8.5 0.60125 sphere -935 17 752 17 Glass 1.37 79 NormalMap 5.2 0.315 sphere -957 22 801 22 Turbulence 0.597 0.908 0.078 0.465 0.233 0.357 16 131 0.3 NormalMap 7.06 0.71875 sphere -931 17 861 17 Turbulence 0.329 0.179 0.317 0.557 0.9 0.45 2 93 0.62 null sphere -931 23 923 23 CrissCross 0.192 0.359 0.332 0.402 0.328 0.979 0.954 0.312 0.898 1 97 0.05 NormalMap 3.98 1.22125 sphere -943 18 981 18 ShinyColor 0.513 0.157 0.853 78 0.07 null sphere -880 22 -979 22 ShinyColor 0.05 0.257 0.339 7 0.14 null sphere -902 18 -938 18 CrissCross 0.893 0.085 0.184 0.745 0.597 0.289 0.567 0.464 0.107 5 20 0.58 NormalMap 2.58 1.095 sphere -874 20 -889 20 ShinyColor 0.831 0.785 0.412 126 0.24 null sphere -891 22 -822 22 Turbulence 0.068 0.206 0.884 0.533 0.313 0.113 14 23 0.14 null sphere -874 17 -783 17 CrissCross 0.681 0.398 0.938 0.36 0.785 0.67 0.933 0.256 0.587 5 51 0.56 NormalMap 17.18 0.13375 sphere -895 20 -726 20 Marble 0.08 0.901 0.927 0.961 0.679 0.509 4 56 0.64 NormalMap 14.4 0.865 sphere -873 22 -663 22 Glass 0.17 22 NormalMap 5.58 0.80125 sphere -874 22 -591 22 Marble 0.897 0.749 0.04 0.406 0.942 0.4 7 13 0.08 NormalMap 17.42 0.96625 sphere -882 17 -537 17 CrissCross 0.259 0.709 0.93 0.051 0.416 0.392 0.021 0.203 0.755 19 143 0.56 NormalMap 17.88 0.24375 sphere -893 25 -468 25 Checkerboard 0.595 0.093 0.762 0.823 0.532 0.47 4 41 0.32 NormalMap 10.36 0.20625 sphere -884 21 -422 21 CrissCross 0.834 0.63 0.249 0.471 0.595 0.564 0.112 0.43 0.652 15 80 0.29 null sphere -893 22 -359 22 Turbulence 0.4 0.086 0.511 0.992 0.871 0.77 11 92 0.58 NormalMap 4.76 0.09 sphere -883 24 -274 24 CrissCross 0.843 0.587 0.868 0.157 0.928 0.764 0.989 0.433 0.771 8 79 0.2 NormalMap 7.8 0.06375 sphere -875 25 -225 25 Glass 0.33 89 null sphere -899 21 -142 21 Glass 2.95 20 NormalMap 7.06 0.12875 sphere -887 16 -100 16 CrissCross 0.333 0.972 0.662 0.28 0.994 0.728 0.864 0.933 0.056 15 76 0.12 NormalMap 4.4 0.1625 sphere -895 23 -33 23 ShinyColor 0.349 0.088 0.285 127 0.09 null sphere -888 16 41 16 Marble 0.38 0.626 0.367 0.436 0.362 0.866 13 102 0.06 null sphere -880 25 75 25 Turbulence 0.934 0.033 0.889 0.495 0.182 0.359 10 101 0.56 NormalMap 8.52 0.29375 sphere -884 15 165 15 Turbulence 0.554 0.298 0.235 0.449 0.281 0.95 11 93 0.53 null sphere -882 24 197 24 ShinyColor 0.035 0.666 0.729 126 0.57 NormalMap 1.44 0.40125 sphere -894 22 262 22 ShinyColor 0.836 0.705 0.697 22 0.66 NormalMap 8.34 1.1125 sphere -883 15 320 15 CrissCross 0.527 0.172 0.176 0.363 0.977 0.33 0.434 0.297 0.536 3 87 0.1 NormalMap 8.18 1.075 sphere -878 20 371 20 Marble 0.246 0.805 0.657 0.629 0.297 0.163 2 125 0.23 NormalMap 3.76 0.39 sphere -884 21 430 21 Checkerboard 0.274 0.981 0.591 0.133 0.928 0.133 19 6 0.06 null sphere -902 25 499 25 Glass 3.875 109 NormalMap 2.22 1.21375 sphere -885 19 549 19 ShinyColor 0.674 0.547 0.214 143 0.37 null sphere -902 25 592 25 ShinyColor 0.638 0.242 0.112 90 0.18 null sphere -872 17 669 17 Checkerboard 0.585 0.388 0.512 0.139 0.206 0.544 17 114 0.53 null sphere -880 24 720 24 Marble 0.645 0.084 0.709 0.645 0.288 0.605 17 42 0.15 NormalMap 7.12 1.005 sphere -873 24 781 24 Turbulence 0.515 0.65 0.733 0.355 0.385 0.234 5 91 0.54 null sphere -879 23 820 23 ShinyColor 0.366 0.884 0.339 89 0.64 null sphere -892 21 901 21 Checkerboard 0.298 0.145 0.602 0.948 0.879 0.957 7 19 0.11 null sphere -894 25 961 25 Turbulence 0.229 0.063 0.695 0.133 0.759 0.083 9 50 0.29 NormalMap 5.94 0.62875 sphere -824 16 -996 16 ShinyColor 0.957 0.433 0.227 134 0.22 NormalMap 17.42 0.75125 sphere -814 21 -932 21 Checkerboard 0.533 0.418 0.308 0.292 0.502 0.756 13 138 0.09 null sphere -827 18 -867 18 Turbulence 0.814 0.278 0.419 0.907 0.148 0.019 14 115 0.68 NormalMap 9.76 0.175 sphere -830 24 -793 24 Turbulence 0.338 0.471 0.746 0.147 0.824 0.271 12 76 0.6 null sphere -843 17 -740 17 Checkerboard 0.229 0.16 0.008 0.351 0.647 0.149 1 84 0.42 null sphere -835 20 -691 20 Checkerboard 0.289 0.806 0.303 0.87 0.303 0.16 17 137 0.58 NormalMap 18.62 0.51 sphere -824 25 -620 25 Turbulence 0.994 0.845 0.73 0.945 0.806 0.532 10 16 0.47 NormalMap 2.5 1.205 sphere -818 19 -569 19 CrissCross 0.827 0.245 0.359 0.464 0.891 0.341 0.451 0.182 0.473 9 7 0.14 NormalMap 16.68 0.9175 sphere -831 25 -512 25 ShinyColor 0.371 0.528 0.478 33 0.05 NormalMap 17.54 0.66375 sphere -815 22 -450 22 CrissCross 0.957 0.089 0.672 0.984 0.291 0.06 0.818 0.025 0.907 15 67 0.13 null sphere -843 17 -371 17 CrissCross 0.136 0.406 0.516 0.912 0.18 0.132 0.138 0.136 0.221 17 20 0.36 null sphere -822 23 -311 23 CrissCross 0.48 0.086 0.668 0.806 0.91 0.19 0.046 0.045 0.596 12 144 0.55 null sphere -815 25 -269 25 CrissCross 0.936 0.522 0.126 0.71 0.207 0.874 0.493 0.688 0.96 4 75 0.61 NormalMap 10.8 1.145 sphere -816 16 -174 16 CrissCross 0.141 0.653 0.637 0.106 0.207 0.288 0.042 0.729 0.415 16 141 0.2 NormalMap 12.48 0.31125 sphere -840 16 -124 16 Checkerboard 0.701 0.758 0.908 0.422 0.555 0.878 2 42 0.53 null sphere -828 18 -80 18 Turbulence 0.31 0.276 0.351 0.555 0.9 0.601 20 5 0.51 null sphere -830 19 -17 19 Marble 0.292 0.616 0.663 0.698 0.975 0.177 7 95 0.52 null sphere -842 25 23 25 Marble 0.273 0.518 0.109 0.689 0.949 0.772 11 141 0.22 NormalMap 3.78 0.755 sphere -834 24 52 24 ShinyColor 0.612 0.631 0.764 41 0.22 null sphere -843 19 138 19 Turbulence 0.38 0.451 0.93 0.329 0.222 0.455 6 81 0.62 NormalMap 2.76 1.135 sphere -815 19 167 19 ShinyColor 0.547 0.096 0.314 130 0.64 null sphere -837 20 215 20 CrissCross 0.094 0.212 0.905 0.358 0.746 0.779 0.811 0.884 0.686 3 50 0.42 NormalMap 7.48 0.18625 sphere -843 22 277 22 Marble 0.041 0.099 0.96 0.562 0.865 0.95 1 144 0.11 null sphere -840 22 358 22 Glass 4.925 104 NormalMap 2.7 0.28875 sphere -822 16 394 16 Glass 3.95 74 NormalMap 14.98 0.05375 sphere -842 22 422 22 CrissCross 0.557 0.05 0.69 0.669 0.034 0.378 0.155 0.169 0.61 7 49 0.2 null sphere -829 23 493 23 CrissCross 0.997 0.777 0.279 0.316 0.543 0.948 0.765 0.099 0.998 10 116 0.02 null sphere -836 19 553 19 Glass 2.295 109 null sphere -815 24 617 24 CrissCross 0.132 0.451 0.74 0.232 0.449 0.194 0.001 0.481 0.027 19 103 0.33 NormalMap 4 0.25125 sphere -823 19 672 19 ShinyColor 0.326 0.511 0.967 39 0.12 null sphere -813 19 736 19 CrissCross 0.734 0.354 0.769 0.659 0.036 0.238 0.838 0.235 0.44 20 96 0.07 null sphere -823 18 784 18 Glass 1.61 124 NormalMap 2.58 0.4 sphere -842 22 831 22 Turbulence 0.446 0.8 0.423 0.283 0.035 0.863 5 102 0.68 NormalMap 7.54 0.48375 sphere -842 15 899 15 Checkerboard 0.176 0.319 0.308 0.305 0.64 0.845 20 105 0.18 NormalMap 9.6 0.02125 sphere -818 25 926 25 CrissCross 0.503 0.899 0.213 0.869 0.948 0.27 0.724 0.448 0.466 18 116 0.54 NormalMap 8.16 0.77375 sphere -777 24 -988 24 Checkerboard 0.504 0.709 0.163 0.713 0.561 0.027 4 15 0.6 null sphere -766 20 -948 20 Turbulence 0.147 0.579 0.365 0.555 0.197 0.549 14 13 0.09 NormalMap 19.24 0.36125 sphere -780 22 -882 22 Turbulence 0.335 0.285 0.298 0.403 0.823 0.229 15 15 0.43 null sphere -776 16 -821 16 Checkerboard 0.965 0.392 0.288 0.198 0.354 0.578 19 6 0.02 NormalMap 5.14 0.6375 sphere -768 21 -784 21 Glass 0.505 149 NormalMap 14.18 0.66625 sphere -774 20 -736 20 Glass 3.7 57 NormalMap 18.76 0.905 sphere -771 24 -690 24 Checkerboard 0.613 0.26 0.577 0.458 0.547 0.447 15 100 0.38 null sphere -786 17 -618 17 CrissCross 0.232 0.04 0.172 0.956 0.113 0.045 0.704 0.217 0.304 15 125 0.4 NormalMap 5.78 0.14 sphere -771 25 -572 25 CrissCross 0.8 0.247 0.751 0.662 0.792 0.986 0.894 0.833 0.157 17 143 0.14 null sphere -764 17 -517 17 Glass 1.38 43 null sphere -792 21 -426 21 Marble 0.341 0.521 0.081 0.234 0.354 0.239 2 47 0.31 null sphere -780 24 -383 24 Glass 3.565 5 NormalMap 5.34 1.22625 sphere -768 18 -310 18 CrissCross 0.88 0.115 0.819 0.119 0.198 0.118 0.562 0.833 0.582 11 110 0.02 null sphere -767 23 -230 23 Checkerboard 0.776 0.631 0.499 0.636 0.845 0.2 4 119 0.7 NormalMap 5.06 1.0975 sphere -764 15 -193 15 Glass 3.86 13 null sphere -776 16 -140 16 Glass 0.565 26 null sphere -769 22 -59 22 Glass 3.805 104 NormalMap 16.62 0.855 sphere -787 15 -5 15 CrissCross 0.189 0.262 0.766 0.574 0.507 0.878 0.733 0.382 0.489 11 18 0.21 NormalMap 12.2 0.13625 sphere -770 19 45 19 Turbulence 0.723 0.073 0.009 0.035 0.778 0.611 20 87 0.56 NormalMap 6.8 0.46625 sphere -791 17 87 17 Glass 0.03 22 null sphere -766 17 153 17 Marble 0.76 0.614 0.151 0.537 0.224 0.104 3 6 0.22 NormalMap 7.96 0.0525 sphere -790 20 211 20 ShinyColor 0.353 0.379 0.269 27 0.35 null sphere -772 18 277 18 CrissCross 0.296 0.179 0.172 0.407 0.203 0.492 0.858 0.601 0.535 11 18 0.48 null sphere -779 18 300 18 Turbulence 0.753 0.293 0.978 0.753 0.634 0.894 11 90 0.68 null sphere -764 17 356 17 ShinyColor 0.574 0.16 0.599 103 0.59 NormalMap 18.44 1.0975 sphere -792 19 414 19 CrissCross 0.377 0.563 0.594 0.89 0.152 0.554 0.699 0.921 0.687 19 135 0.22 null sphere -790 21 461 21 ShinyColor 0.066 0.192 0.86 76 0.19 NormalMap 7.42 1.135 sphere -769 25 523 25 Turbulence 0.552 0.975 0.962 0.473 0.661 0.878 8 146 0.61 null sphere -771 25 574 25 ShinyColor 0.952 0.403 0.544 36 0.57 null sphere -765 25 655 25 Glass 2.73 138 NormalMap 10.16 0.48875 sphere -771 19 726 19 Glass 3.55 86 null sphere -774 25 764 25 Glass 1.5 61 null sphere -775 17 821 17 Turbulence 0.944 0.307 0.702 0.701 0.095 0.955 6 51 0.47 null sphere -786 20 893 20 Glass 3.485 111 NormalMap 13.54 0 sphere -775 25 963 25 Checkerboard 0.414 0.066 0.13 0.721 0.768 0.831 17 109 0.08 NormalMap 7.72 1.22375 sphere -717 19 -978 19 ShinyColor 0.169 0.907 0.771 136 0.23 NormalMap 18.08 1.155 sphere -713 20 -949 20 Glass 4.28 148 null sphere -714 22 -859 22 ShinyColor 0.786 0.41 0.379 37 0.1 NormalMap 6.2 0.39125 sphere -733 15 -825 15 Checkerboard 0.419 0.913 0.658 0.265 0.048 0.383 11 40 0.16 null sphere -711 18 -755 18 Marble 0.754 0.802 0.623 0.062 0.114 0.782 3 51 0.19 null sphere -736 21 -688 21 CrissCross 0.101 0.657 0.298 0.014 0.389 0.545 0.004 0.908 0.202 8 100 0 null sphere -713 23 -658 23 ShinyColor 0.533 0.901 0.754 19 0 null sphere -720 17 -605 17 CrissCross 0.041 0.744 0.187 0.243 0.118 0.849 0.247 0.116 0.572 8 135 0.31 null sphere -718 22 -543 22 Turbulence 0.624 0.45 0.461 0.822 0.175 0.351 7 138 0.44 NormalMap 13.14 1.02375 sphere -719 23 -458 23 Glass 3.935 103 NormalMap 14.76 0.81 sphere -717 19 -404 19 Marble 0.157 0.31 0.185 0.509 0.629 0.098 3 149 0.53 null sphere -726 21 -349 21 Glass 2.72 105 null sphere -711 19 -279 19 Marble 0.76 0.05 0.679 0.269 0.679 0.777 9 101 0.37 NormalMap 5.18 0.0775 sphere -725 22 -212 22 Turbulence 0.636 0.596 0.484 0.023 0.52 0.39 6 3 0.7 NormalMap 9.96 0.94125 sphere -739 16 -170 16 CrissCross 0.547 0.792 0.373 0.03 0.652 0.733 0.721 0.056 0.783 8 99 0.18 NormalMap 3.46 0.82125 sphere -719 16 -116 16 Marble 0.485 0.803 0.854 0.899 0.288 0.651 12 126 0.31 null sphere -721 22 -92 22 Marble 0.976 0.383 0.981 0.151 0.032 0.653 17 67 0.27 null sphere -717 20 -3 20 CrissCross 0.468 0.899 0.968 0.054 0.049 0.427 0.999 0.853 0.153 7 125 0.38 NormalMap 19.62 0.71 sphere -739 23 52 23 Glass 4.8 87 NormalMap 14.54 1.16125 sphere -717 18 116 18 CrissCross 0.849 0.532 0.189 0.17 0.36 0.725 0.473 0.34 0.292 9 24 0.2 null sphere -721 15 163 15 ShinyColor 0.313 0.649 0.357 97 0.27 null sphere -731 21 199 21 Checkerboard 0.223 0.833 0.307 0.583 0.558 0.78 19 128 0.14 NormalMap 2.88 1.23375 sphere -709 18 249 18 ShinyColor 0.998 0.597 0.664 55 0.16 NormalMap 7.08 0.84375 sphere -710 25 305 25 Checkerboard 0.969 0.439 0.405 0.552 0.997 0.185 10 128 0.27 null sphere -731 17 351 17 Turbulence 0.966 0.722 0.361 0.009 0.075 0.035 2 8 0.7 null sphere -737 23 396 23 Checkerboard 0.685 0.808 0.925 0.079 0.353 0.916 10 91 0.14 null sphere -732 17 454 17 CrissCross 0.032 0.639 0.354 0.676 0.734 0.133 0.758 0.234 0.465 17 139 0.19 null sphere -725 22 503 22 Marble 0.59 0.851 0.402 0.196 0.329 0.397 17 132 0.3 NormalMap 4.54 0.13 sphere -713 18 560 18 Turbulence 0.459 0.361 0.722 0.135 0.819 0.944 1 18 0.2 NormalMap 11.78 1.09625 sphere -737 25 611 25 Marble 0.672 0.921 0.599 0.031 0.783 0.043 18 74 0.28 null sphere -737 22 681 22 Checkerboard 0.693 0.907 0.482 0.281 0.784 0.727 6 129 0.21 null sphere -735 20 740 20 Turbulence 0.799 0.305 0.66 0.206 0.258 0.599 20 141 0.47 null sphere -725 17 799 17 Marble 0.27 0.465 0.868 0.016 0.94 0.024 9 52 0.55 null sphere -734 17 871 17 Marble 0.322 0.935 0.208 0.577 0.394 0.451 3 97 0.29 null sphere -721 19 927 19 Glass 3.295 63 NormalMap 3.46 1.23125 sphere -716 18 973 18 ShinyColor 0.53 0.043 0.566 129 0.69 null sphere -693 20 -985 20 Marble 0.047 0.169 0.972 0.19 0.828 0.378 5 3 0.25 NormalMap 6.94 0.165 sphere -673 20 -957 20 ShinyColor 0.515 0.114 0.807 142 0.34 NormalMap 9.74 0.6175 sphere -686 25 -900 25 Glass 4.81 85 NormalMap 15.8 1.165 sphere -684 23 -813 23 ShinyColor 0.427 0.996 0.602 16 0.09 null sphere -676 19 -766 19 Checkerboard 0.226 0.152 0.983 0.464 0.171 0.775 1 38 0.52 null sphere -664 20 -723 20 Turbulence 0.866 0.053 0.344 0.997 0.688 0.949 5 21 0.35 null sphere -670 17 -660 17 Marble 0.026 0.312 0.656 0.552 0.845 0.623 18 102 0.35 NormalMap 18.52 0.4475 sphere -682 17 -625 17 Glass 3.585 87 null sphere -670 20 -552 20 Checkerboard 0.149 0.623 0.08 0.461 0.278 0.632 7 136 0.35 null sphere -670 24 -495 24 Checkerboard 0.249 0.389 0.707 0.437 0.105 0.278 5 55 0.03 null sphere -688 17 -421 17 Glass 0.635 133 NormalMap 0.58 0.48 sphere -687 19 -382 19 Turbulence 0.642 0.843 0.992 0.078 0.949 0.27 7 47 0.22 NormalMap 8.42 1.01375 sphere -680 21 -337 21 CrissCross 0.113 0.335 0.715 0.315 0.617 0.891 0.707 0.07 0.176 7 138 0.11 NormalMap 17.24 0.5475 sphere -670 16 -253 16 Glass 0.89 5 NormalMap 0.46 0.71125 sphere -677 23 -201 23 Turbulence 0.474 0.381 0.889 0.545 0.557 0.237 10 110 0.47 NormalMap 3.26 0.49125 sphere -688 25 -164 25 Glass 2.555 75 NormalMap 1.6 1.2175 sphere -670 21 -92 21 Glass 4.665 94 null sphere -664 17 -44 17 Glass 1.275 113 null sphere -671 20 -8 20 Turbulence 0.175 0.358 0.668 0.925 0.247 0.126 4 50 0.04 null sphere -679 25 62 25 CrissCross 0.913 0.03 0.291 0.389 0.741 0.354 0.377 0.942 0.688 9 20 0.03 NormalMap 0.84 0.3675 sphere -675 17 110 17 Marble 0.31 0.814 0.7 0.043 0.741 0.289 11 99 0.22 null sphere -680 16 141 16 Glass 4.505 147 NormalMap 3.9 0.265 sphere -678 23 199 23 Turbulence 0.655 0.118 0.762 0.699 0.86 0.051 5 78 0.26 NormalMap 11.14 0.53875 sphere -680 25 240 25 CrissCross 0.027 0.079 0.953 0.537 0.434 0.65 0.882 0.739 0.712 11 129 0.33 NormalMap 14.34 0.65625 sphere -666 17 314 17 CrissCross 0.604 0.313 0.685 0.418 0.026 0.831 0.446 0.106 0.783 20 82 0.3 null sphere -689 19 361 19 Glass 0.465 15 NormalMap 11.56 1.0875 sphere -674 17 396 17 CrissCross 0.507 0.101 0.572 0.29 0.084 0.112 0.723 0.95 0.391 18 55 0.37 NormalMap 19.8 0.4775 sphere -679 15 470 15 Glass 4.595 146 NormalMap 18.24 0.25625 sphere -667 21 505 21 ShinyColor 0.963 0.632 0.386 9 0.52 NormalMap 19.94 0.1675 sphere -673 18 589 18 Checkerboard 0.09 0.421 0.511 0.757 0.08 0.847 16 150 0.57 null sphere -678 20 642 20 Turbulence 0.98 0.891 0.973 0.088 0.888 0.107 2 37 0.54 null sphere -663 21 690 21 Checkerboard 0.173 0.16 0.074 0.989 0.104 0.985 1 98 0.34 null sphere -679 23 726 23 Glass 2.57 84 NormalMap 15 0.4 sphere -689 18 801 18 CrissCross 0.471 0.624 0.994 0.456 0.633 0.636 0.939 0.524 0.876 1 41 0.24 NormalMap 17.72 0.985 sphere -683 19 850 19 ShinyColor 0.659 0.164 0.474 120 0.36 null sphere -666 17 889 17 Glass 0.59 25 null sphere -691 22 971 22 Checkerboard 0.819 0.774 0.36 0.218 0.111 0.787 8 116 0.67 null sphere -609 24 -980 24 Turbulence 0.981 0.608 0.38 0.744 0.664 0.053 8 111 0.7 NormalMap 17.6 1.00625 sphere -631 17 -948 17 ShinyColor 0.391 0.023 0.978 37 0.41 NormalMap 17.42 0.5125 sphere -628 22 -912 22 CrissCross 0.459 0.788 0.123 0.195 0.774 0.493 0.074 0.579 0.635 7 92 0.63 NormalMap 19.88 1.14125 sphere -616 17 -836 17 ShinyColor 0.911 0.929 0.796 8 0.67 null sphere -628 23 -772 23 CrissCross 0.508 0.264 0.934 0.822 0.866 0.822 0.16 0.86 0.735 10 15 0.16 NormalMap 3.72 0.1825 sphere -626 25 -741 25 Glass 3.73 105 null sphere -619 20 -671 20 CrissCross 0.599 0.908 0.281 0.333 0.386 0.369 0.569 0.628 0.554 15 121 0.38 null sphere -601 20 -617 20 ShinyColor 0.714 0.23 0.77 41 0.46 NormalMap 2.06 0.7175 sphere -622 24 -564 24 CrissCross 0.379 0.243 0.242 0.094 0.042 0.778 0.991 0.959 0.279 10 141 0.37 null sphere -603 19 -486 19 Checkerboard 0.977 0.066 0.889 0.298 0.104 0.366 11 65 0.12 NormalMap 2.24 0.69375 sphere -611 18 -433 18 ShinyColor 0.64 0.386 0.41 17 0.22 null sphere -628 22 -351 22 ShinyColor 0.558 0.883 0.07 95 0.54 NormalMap 14.6 0.17 sphere -622 16 -308 16 CrissCross 0.749 0.157 0.234 0.159 0.255 0.553 0.094 0.973 0.52 16 14 0.27 null sphere -623 25 -263 25 Glass 1.055 24 NormalMap 4.94 0.51125 sphere -631 22 -180 22 Glass 3.755 141 NormalMap 6.08 0.035 sphere -606 24 -146 24 CrissCross 0.536 0.953 0.237 0.718 0.163 0.382 0.213 0.41 0.791 12 14 0.57 NormalMap 11.88 0.74 sphere -615 18 -72 18 Glass 2.35 57 NormalMap 13.72 0.0725 sphere -610 16 -26 16 CrissCross 0.643 0.221 0.043 0.22 0.299 0.861 0.679 0.893 0.453 4 38 0.69 null sphere -621 15 36 15 Checkerboard 0.963 0.82 0.214 0.659 0.453 0.926 7 51 0.25 NormalMap 11.56 1.2475 sphere -625 21 73 21 Marble 0.771 0.915 0.042 0.655 0.449 0.069 1 55 0.35 NormalMap 6.32 0.39875 sphere -608 25 109 25 Checkerboard 0.542 0.401 0.676 0.54 0.743 0.297 16 59 0.55 null sphere -610 22 190 22 Glass 4.195 54 NormalMap 6.78 0.49625 sphere -611 22 258 22 Glass 2.645 60 NormalMap 4.1 1.15875 sphere -610 20 300 20 Marble 0.133 0.621 0.834 0.475 0.699 0.672 17 22 0 NormalMap 17.5 0.83625 sphere -628 21 373 21 Glass 5 126 NormalMap 2.9 0.41875 sphere -612 22 415 22 ShinyColor 0.609 0.124 0.252 37 0.67 null sphere -630 21 495 21 CrissCross 0.38 0.123 0.038 0.492 0.122 0.873 0.531 0.267 0.208 6 142 0.58 NormalMap 1.22 0.54125 sphere -611 18 543 18 ShinyColor 0.593 0.024 0.593 99 0.47 NormalMap 11.66 1.2175 sphere -620 16 583 16 Marble 0.426 0.623 0.503 0.68 0.564 0.326 20 95 0.53 NormalMap 18.76 0.52875 sphere -631 25 658 25 Marble 0.487 0.961 0.358 0.87 0.363 0.591 6 41 0.67 null sphere -620 15 699 15 Turbulence 0.788 0.695 0.597 0.613 0.672 0.612 10 38 0.19 null sphere -627 20 774 20 CrissCross 0.211 0.448 0.99 0.3 0.813 0.123 0.716 0.169 0.881 18 144 0.4 NormalMap 11.42 0.31 sphere -616 15 802 15 ShinyColor 0.672 0.902 0.473 123 0.55 null sphere -629 19 856 19 Marble 0.791 0.66 0.511 0.672 0.55 0.469 5 8 0.02 NormalMap 2.72 0.09125 sphere -629 20 924 20 Turbulence 0.363 0.789 0.455 0.795 0.87 0.133 9 62 0.56 NormalMap 14.82 0.74 sphere -623 17 965 17 Marble 0.764 0.833 0.992 0.275 0.916 0.65 14 72 0.08 null sphere -559 21 -991 21 ShinyColor 0.178 0.275 0.451 138 0.61 NormalMap 3.4 0.1625 sphere -564 24 -938 24 CrissCross 0.398 0.287 0.442 0.87 0.408 0.327 0.704 0.316 0.668 7 17 0.1 NormalMap 5.48 0.52 sphere -575 17 -880 17 Turbulence 0.053 0.145 0.902 0.7 0.624 0.384 7 58 0.55 null sphere -579 15 -822 15 CrissCross 0.719 0.371 0.943 0.91 0.654 0.288 0.271 0.066 0.719 11 20 0.61 NormalMap 16.4 0.61 sphere -557 16 -755 16 Glass 4.085 125 null sphere -565 18 -699 18 Turbulence 0.24 0.623 0.608 0.511 0.69 0.327 1 122 0.13 NormalMap 12.6 0.84875 sphere -567 23 -644 23 Glass 1.935 11 null sphere -578 25 -596 25 CrissCross 0.287 0.245 0.583 0.614 0.279 0.393 0.806 0.737 0.022 10 3 0.57 NormalMap 17.2 0.475 sphere -560 25 -542 25 Glass 3.18 74 NormalMap 19.9 1.2225 sphere -561 22 -473 22 Glass 2.88 37 NormalMap 7.64 1.21625 sphere -553 24 -422 24 Turbulence 0.794 0.437 0.467 0.448 0.757 0.484 2 38 0.56 NormalMap 4.36 0.48875 sphere -556 25 -341 25 Turbulence 0.395 0.671 0.093 0.876 0.537 0.069 4 66 0.64 null sphere -582 18 -292 18 ShinyColor 0.534 0.23 0.269 52 0.21 NormalMap 14.56 0.07625 sphere -559 21 -235 21 Checkerboard 0.422 0.932 0.736 0.515 0.807 0.272 12 146 0.49 NormalMap 16.18 0.3575 sphere -573 15 -186 15 ShinyColor 0.87 0.567 0.38 33 0.62 null sphere -567 18 -110 18 Checkerboard 0.776 0.005 0 0.511 0.52 0.808 16 18 0.55 NormalMap 11.9 0.73625 sphere -563 23 -67 23 ShinyColor 0.782 0.979 0.687 26 0.13 null sphere -574 20 -2 20 CrissCross 0.498 0.421 0.527 0.281 0.526 0.307 0.768 0.12 0.896 11 136 0.4 null sphere -561 21 45 21 CrissCross 0.58 0.986 0.745 0.3 0.972 0.646 0.019 0.47 0.066 11 114 0.42 null sphere -582 23 112 23 Marble 0.354 0.173 0.15 0.629 0.712 0.079 9 86 0.46 NormalMap 6.14 1.2 sphere -553 25 173 25 ShinyColor 0.527 0.582 0.612 59 0.07 NormalMap 2.64 0.2025 sphere -556 19 240 19 ShinyColor 0.211 0.939 0.285 56 0.4 null sphere -580 21 302 21 Checkerboard 0.718 0.819 0.04 0.548 0.838 0.567 3 69 0.67 NormalMap 15.48 0.09875 sphere -567 22 353 22 Turbulence 0.925 0.839 0.807 0.923 0.279 0.777 10 59 0.09 NormalMap 8.82 1.06625 sphere -571 20 393 20 ShinyColor 0.53 0.453 0.996 115 0.16 NormalMap 3.14 1.17875 sphere -576 19 459 19 Glass 3.705 45 NormalMap 0.42 0.08 sphere -577 19 537 19 Checkerboard 0.086 0.321 0.451 0.09 0.369 0.982 11 56 0.52 null sphere -582 22 586 22 Glass 2.185 69 null sphere -559 25 638 25 Glass 1.145 8 NormalMap 11.02 0.61375 sphere -569 25 711 25 Marble 0.231 0.766 0.44 0.186 0.05 0.665 13 77 0.44 NormalMap 0.84 0.77375 sphere -583 16 741 16 Glass 1.52 119 null sphere -575 16 826 16 Marble 0.477 0.901 0.199 0.528 0.566 0.822 1 32 0.12 NormalMap 16.34 0.38375 sphere -570 24 852 24 ShinyColor 0.598 0.714 0.842 40 0.15 null sphere -561 20 908 20 Checkerboard 0.281 0.721 0.088 0.481 0.248 0.655 7 44 0.6 NormalMap 6.96 0.83625 sphere -568 21 970 21 Marble 0.064 0.921 0.935 0.447 0.407 0.467 4 102 0.5 NormalMap 19.16 0.54 sphere -525 22 -983 22 Glass 1.53 95 null sphere -502 17 -938 17 ShinyColor 0.555 0.055 0.08 73 0.7 null sphere -511 22 -901 22 ShinyColor 0.516 0.6 0.514 144 0.19 null sphere -500 21 -840 21 Turbulence 0.104 0.279 0.99 0.12 0.835 0.045 5 48 0.02 null sphere -505 19 -779 19 Turbulence 0.221 0.542 0.625 0.915 0.78 0.203 17 50 0.28 null sphere -528 24 -715 24 Turbulence 0.166 0.801 0.875 0.359 0.294 0.303 3 144 0.56 NormalMap 4.38 1 sphere -515 23 -659 23 Marble 0.058 0.605 0.766 0.886 0.626 0.485 17 74 0.17 null sphere -528 24 -618 24 ShinyColor 0.118 0.301 0.951 76 0.36 null sphere -509 16 -549 16 Marble 0.287 0.602 0.895 0.914 0.087 0.726 8 52 0.5 NormalMap 7.78 0.69875 sphere -506 23 -530 23 ShinyColor 0.666 0.665 0.554 64 0.54 null sphere -516 22 -470 22 CrissCross 0.538 0.919 0.956 0.933 0.256 0.661 0.976 0.644 0.22 1 58 0.66 NormalMap 8.24 0.7525 sphere -528 25 -393 25 Marble 0.322 0.79 0.229 0.658 0.415 0.06 18 144 0.69 null sphere -502 20 -332 20 Marble 0.668 0.262 0.935 0.633 0.279 0.554 9 134 0.39 null sphere -525 22 -276 22 ShinyColor 0.176 0.418 0.042 26 0.18 null sphere -520 23 -211 23 Glass 3.765 31 NormalMap 13.74 1.035 sphere -520 17 -143 17 Checkerboard 0.468 0.663 0.819 0.584 0.193 0.908 16 93 0.67 null sphere -509 18 -77 18 Checkerboard 0.343 0.103 0.283 0.095 0.298 0.698 16 21 0.27 NormalMap 7.74 1.215 sphere -515 20 -20 20 Checkerboard 0.672 0.256 0.785 0.283 0.206 0.701 4 15 0 null sphere -526 25 45 25 Checkerboard 0.987 0.908 0.974 0.113 0.298 0.997 10 42 0.57 NormalMap 14.2 0.36125 sphere -499 23 100 23 Turbulence 0.399 0.926 0.227 0.194 0.677 0.812 3 117 0.35 NormalMap 19.26 0.60875 sphere -510 25 148 25 Checkerboard 0.806 0.744 0.128 0.515 0.033 0.507 5 150 0.1 null sphere -509 25 235 25 Turbulence 0.952 0.357 0.523 0.283 0.32 0.009 11 40 0.43 NormalMap 3.8 0.88625 sphere -503 25 290 25 Marble 0.393 0.196 0.47 0.377 0.832 0.378 12 101 0.68 null sphere -501 16 354 16 ShinyColor 0.419 0.897 0.755 73 0.06 NormalMap 6.82 0.0225 sphere -498 22 400 22 Glass 3.7 23 null sphere -507 25 472 25 Turbulence 0.453 0.147 0.903 0.598 0.567 0.799 8 9 0.62 null sphere -525 16 553 16 Marble 0.973 0.494 0.307 0.946 0.473 0.012 12 64 0.23 null sphere -511 25 597 25 Marble 0.55 0.973 0.164 0.666 0.076 0.051 9 81 0.62 NormalMap 14.36 1.07 sphere -504 15 664 15 ShinyColor 0.382 0.703 0.367 34 0.26 NormalMap 3.84 1.19875 sphere -518 23 716 23 Turbulence 0.762 0.481 0.375 0.814 0.909 0.903 14 36 0.44 null sphere -518 18 792 18 Checkerboard 0.048 0.949 0.414 0.199 0.139 0.372 15 132 0.5 null sphere -513 23 821 23 Turbulence 0.776 0.58 0.429 0.396 0.132 0.473 1 74 0.57 null sphere -523 23 895 23 Marble 0.332 0.695 0.385 0.64 0.507 0.884 15 121 0.53 null sphere -515 16 976 16 CrissCross 0.009 0.544 0.459 0.179 0.795 0.428 0.489 0.419 0.126 14 114 0.58 NormalMap 7.82 0.41 sphere -467 16 -984 16 ShinyColor 0.233 0.861 0.557 26 0.11 NormalMap 2.62 1.19 sphere -459 24 -942 24 Checkerboard 0.504 0.707 0.63 0.923 0.834 0.304 14 100 0.25 NormalMap 19.7 0.38125 sphere -488 16 -887 16 Marble 0.877 0.255 0.531 0.829 0.421 0.351 16 22 0.44 null sphere -471 21 -861 21 Turbulence 0.292 0.812 0.533 0.456 0.924 0.538 7 27 0.55 NormalMap 19.22 0.22125 sphere -467 17 -775 17 Checkerboard 0.519 0.766 0.69 0.45 0.399 0.027 1 144 0.14 null sphere -474 16 -732 16 Turbulence 0.24 0.927 0.952 0.264 0.887 0.128 4 18 0.59 null sphere -473 19 -676 19 CrissCross 0.749 0.04 0.842 0.852 0.515 0.68 0.488 0.447 0.443 14 104 0.26 null sphere -485 23 -635 23 Checkerboard 0.097 0.476 0.424 0.603 0.063 0.286 11 103 0.11 NormalMap 9.86 1.13625 sphere -465 18 -562 18 ShinyColor 0.248 0.368 0.456 137 0.03 null sphere -480 15 -547 15 Glass 2.695 50 null sphere -468 24 -501 24 ShinyColor 0.013 0.555 0.913 65 0.63 null sphere -467 25 -419 25 Glass 1.785 116 NormalMap 12.44 1.1175 sphere -488 20 -356 20 Turbulence 0.43 0.034 0.233 0.434 0.048 0.789 7 72 0.48 NormalMap 16.16 0.72375 sphere -459 20 -270 20 Checkerboard 0.132 0.049 0.389 0.754 0.944 0.095 5 146 0.24 NormalMap 11.16 0.9075 sphere -465 25 -235 25 Glass 3.85 43 null sphere -466 20 -180 20 CrissCross 0.907 0.396 0.872 0.002 0.617 0.844 0.342 0.625 0.4 2 121 0.27 null sphere -476 21 -116 21 CrissCross 0.593 0.147 0.616 0.472 0.665 0.258 0.4 0.572 0.655 6 87 0.19 NormalMap 18.34 1.12 sphere -467 25 -48 25 Marble 0.295 0.357 0.627 0.666 0.351 0.379 16 142 0.37 NormalMap 8.34 0.23875 sphere -465 23 -2 23 ShinyColor 0.337 0.572 0.203 40 0.33 null sphere -487 21 40 21 CrissCross 0.299 0.204 0.421 0.07 0.148 0.948 0.458 0.565 0.138 3 59 0.63 NormalMap 9.42 0.2975 sphere -473 22 122 22 Turbulence 0.777 0.695 0.353 0.272 0.109 0.987 3 25 0.2 NormalMap 11.48 0.44375 sphere -463 20 167 20 Marble 0.895 0.799 0.299 0.569 0.29 0.744 20 5 0.25 null sphere -486 18 213 18 Checkerboard 0.312 0.601 0.523 0.886 0.957 0.001 9 117 0.03 NormalMap 13.78 0.5875 sphere -477 15 280 15 Turbulence 0.895 0.735 0.411 0.872 0.531 0.461 5 91 0.44 null sphere -479 16 356 16 ShinyColor 0.318 0.224 0.848 56 0.2 null sphere -482 21 405 21 Checkerboard 0.054 0.913 0.025 0.79 0.324 0.897 7 119 0.07 null sphere -478 22 477 22 ShinyColor 0.156 0.815 0.351 59 0.46 null sphere -470 21 527 21 CrissCross 0.9 0.768 0.839 0.797 0.088 0.624 0.896 0.009 0.029 11 110 0.26 NormalMap 15.14 0.655 sphere -460 16 570 16 Marble 0.668 0.112 0.081 0.27 0.988 0.059 16 134 0.58 null sphere -471 17 640 17 Checkerboard 0.651 0.646 0.343 0.408 0.17 0.407 11 14 0.09 NormalMap 12.98 0.07125 sphere -466 23 696 23 CrissCross 0.775 0.406 0.377 0.692 0.655 0.958 0.618 0.933 0.049 6 88 0.27 null sphere -463 17 767 17 Turbulence 0.278 0.716 0.052 0.165 0.712 0.859 3 75 0.39 null sphere -471 21 831 21 Marble 0.328 0.142 0.812 0.128 0.335 0.635 2 130 0.07 NormalMap 1.98 0.48 sphere -471 16 883 16 ShinyColor 0.663 0.973 0.56 84 0.61 NormalMap 2.64 0.53 sphere -460 18 926 18 CrissCross 0.272 0.418 0.83 0.136 0.524 0.883 0.234 0.909 0.652 8 70 0.09 NormalMap 2.44 0.13 sphere -416 25 -981 25 Glass 1.545 22 null sphere -428 24 -920 24 ShinyColor 0.483 0.368 0.275 3 0.17 null sphere -418 24 -863 24 Glass 1.22 27 NormalMap 13.76 1.21375 sphere -426 20 -779 20 Checkerboard 0.105 0.408 0.899 0.169 0.947 0.037 14 49 0.22 null sphere -415 21 -717 21 Glass 2.205 98 NormalMap 12.16 0.9525 sphere -421 21 -656 21 Checkerboard 0.085 0.715 0.206 0.493 0.613 0.376 9 99 0.01 null sphere -405 18 -599 18 Glass 1.49 79 null sphere -408 17 -524 17 Glass 2.575 15 NormalMap 4.6 0.36 sphere -409 24 -480 24 Marble 0.249 0.245 0.64 0.041 0.751 0.846 7 42 0.35 NormalMap 0.64 0.935 sphere -412 23 -382 23 Checkerboard 0.049 0.129 0.324 0.338 0.862 0.166 1 7 0.46 null sphere -423 15 -352 15 Glass 2.8 90 NormalMap 1.08 1.0925 sphere -403 23 -311 23 Glass 2.385 132 NormalMap 16.02 0.2675 sphere -423 25 -269 25 Glass 3.725 149 NormalMap 2.14 0.875 sphere -421 17 -207 17 Turbulence 0.114 0.813 0.155 0.496 0.64 0.193 20 79 0.25 null sphere -400 23 -145 23 Turbulence 0.848 0.713 0.217 0.548 0.199 0.437 17 44 0.02 NormalMap 4.64 0.05125 sphere -423 15 -86 15 Turbulence 0.752 0.476 0.933 0.142 0.216 0.882 12 89 0.52 NormalMap 13.92 0.7375 sphere -425 25 -19 25 Marble 0.496 0.426 0.301 0.54 0.623 0.031 5 4 0.52 NormalMap 15.3 0.2625 sphere -416 24 15 24 Checkerboard 0.983 0.577 0.706 0.573 0.363 0.619 15 54 0.68 null sphere -426 22 88 22 ShinyColor 0.649 0.403 0.054 132 0.29 null sphere -409 25 115 25 CrissCross 0.141 0.453 0.53 0.761 0.163 0.879 0.73 0.82 0.492 2 83 0.42 null sphere -410 17 170 17 Marble 0.082 0.95 0.83 0.982 0.539 0.264 18 107 0.28 NormalMap 4.72 0.2075 sphere -402 16 228 16 Turbulence 0.844 0.403 0.459 0.11 0.02 0.584 16 66 0 null sphere -409 21 261 21 ShinyColor 0.925 0.935 0.85 51 0.17 NormalMap 9.94 0.91125 sphere -429 19 331 19 Glass 1.085 42 NormalMap 6.56 0.36125 sphere -407 16 351 16 Glass 1.905 33 NormalMap 10.5 0.1625 sphere -415 19 403 19 Glass 3.29 54 NormalMap 9.28 0.90375 sphere -400 20 442 20 Turbulence 0.386 0.307 0.075 0.162 0.853 0.233 11 11 0.32 NormalMap 3.8 0.785 sphere -428 22 514 22 Checkerboard 0.558 0.958 0.353 0.021 0.68 0.387 10 94 0.49 NormalMap 17.7 0.3525 sphere -411 17 560 17 CrissCross 0.042 0.69 0.859 0.483 0.34 0.901 0.383 0.948 0.084 19 136 0.31 null sphere -423 20 621 20 Checkerboard 0.797 0.373 0.357 0.385 0.909 0.79 17 103 0.54 NormalMap 18.18 1.00875 sphere -421 23 659 23 CrissCross 0.188 0.578 0.794 0.012 0.04 0.997 0.527 0.954 0.083 7 51 0.31 null sphere -401 20 729 20 CrissCross 0.235 0.254 0.766 0.539 0.006 0.381 0.749 0.194 0.959 11 33 0.7 null sphere -428 21 776 21 ShinyColor 0.766 0.514 0.292 47 0.3 NormalMap 3.24 0.3075 sphere -404 15 818 15 Checkerboard 0.948 0.815 0.094 0.328 0.563 0.289 6 18 0.35 NormalMap 12.86 0.2875 sphere -421 17 872 17 Checkerboard 0.032 0.618 0.353 0.458 0.906 0.515 15 150 0.39 null sphere -426 21 938 21 Glass 0.06 112 NormalMap 10.16 0.03 sphere -359 17 -1005 17 Glass 4.07 26 NormalMap 5.44 0.08125 sphere -364 25 -924 25 Turbulence 0.36 0.976 0.866 0.812 0.182 0.877 12 76 0.27 null sphere -345 24 -885 24 Glass 2.17 57 null sphere -344 21 -816 21 ShinyColor 0.198 0.727 0.437 53 0.06 NormalMap 4.14 1.1225 sphere -352 15 -769 15 Checkerboard 0.537 0.59 0.863 0.201 0.737 0.483 9 145 0.65 null sphere -359 17 -707 17 CrissCross 0.509 0.176 0.05 0.407 0.772 0.134 0.855 0.861 0.602 18 61 0.13 null sphere -365 17 -624 17 ShinyColor 0.779 0.511 0.762 148 0.52 NormalMap 13.56 0.07375 sphere -340 16 -584 16 Turbulence 0.77 0.597 0.87 0.631 0.199 0.749 1 60 0.34 null sphere -359 21 -512 21 Marble 0.681 0.07 0.516 0.249 0.17 0.338 14 118 0.23 NormalMap 15.88 0.1325 sphere -343 22 -447 22 Marble 0.633 0.614 0.023 0.847 0.466 0.433 12 14 0.58 NormalMap 15.22 1.1225 sphere -363 15 -389 15 Glass 3.98 97 NormalMap 10.34 0.38 sphere -343 19 -353 19 Glass 1.9 37 NormalMap 4.54 0.8725 sphere -341 23 -303 23 CrissCross 0.25 0.22 0.315 0.469 0.015 0.956 0.795 0.532 0.26 18 146 0.69 null sphere -363 24 -231 24 ShinyColor 0.322 0.524 0.828 20 0.21 NormalMap 18.88 1.05125 sphere -353 18 -183 18 Turbulence 0.626 0.471 0.826 0.157 0.731 0.684 3 107 0.26 null sphere -362 25 -128 25 CrissCross 0.32 0.797 0.319 0.632 0.185 0.519 0.192 0.796 0.034 5 65 0.35 NormalMap 11.58 0.29375 sphere -336 22 -70 22 Marble 0.811 0.742 0.027 0.067 0.119 0.984 14 68 0.55 null sphere -357 20 21 20 Glass 0.165 82 null sphere -359 20 58 20 ShinyColor 0.457 0.75 0.493 126 0.39 NormalMap 17.2 0.785 sphere -357 24 123 24 CrissCross 0.348 0.279 0.614 0.529 0.312 0.148 0.288 0.581 0.414 16 120 0.55 null sphere -363 17 162 17 CrissCross 0.638 0.403 0.26 0.503 0.991 0.011 0.631 0.338 0.291 5 131 0.42 NormalMap 3.12 0.23 sphere -335 24 240 24 Glass 4.64 47 NormalMap 8.36 0.30375 sphere -365 17 323 17 Glass 2.015 64 NormalMap 0.68 0.945 sphere -346 18 351 18 CrissCross 0.068 0.359 0.484 0.189 0.286 0.788 0.401 0.704 0.03 7 145 0.03 NormalMap 17.32 0.6025 sphere -338 17 421 17 Glass 2.91 44 NormalMap 5.08 0.0725 sphere -342 23 479 23 Checkerboard 0.288 0.991 0.392 0.075 0.392 0.096 3 110 0.04 NormalMap 19.82 1.16 sphere -359 19 534 19 ShinyColor 0.499 0.2 0.276 14 0.34 null sphere -363 15 582 15 Turbulence 0.86 0.783 0.249 0.252 0.879 0.356 20 142 0.36 null sphere -363 19 636 19 CrissCross 0.344 0.979 0.923 0.425 0.045 0.207 0.311 0.915 0.599 10 117 0.27 null sphere -365 15 669 15 Glass 3.835 60 NormalMap 9.44 1.14875 sphere -343 19 730 19 Checkerboard 0.321 0.683 0.496 0.366 0.891 0.807 6 75 0.2 NormalMap 17.42 0.03 sphere -362 16 765 16 Glass 2.02 74 NormalMap 10.78 1.1975 sphere -355 17 813 17 Checkerboard 0.156 0.901 0.777 0.653 0.266 0.667 10 84 0.11 null sphere -344 23 854 23 CrissCross 0.092 0.266 0.434 0.049 0.626 0.671 0.383 0.712 0.25 10 131 0.1 NormalMap 10.42 0.52125 sphere -336 25 923 25 Glass 2.525 40 NormalMap 7.84 0.03125 sphere -270 24 -1003 24 ShinyColor 0.086 0.139 0.743 115 0.37 NormalMap 0.16 1.25 sphere -283 16 -924 16 Checkerboard 0.822 0.54 0.251 0.551 0.108 0.357 2 56 0.44 NormalMap 7.78 0.47125 sphere -290 17 -884 17 Checkerboard 0.674 0.1 0.874 0.196 0.555 0.881 4 132 0.02 NormalMap 14.4 0.76625 sphere -286 20 -816 20 ShinyColor 0.261 0.231 0.147 95 0.6 null sphere -283 15 -787 15 Turbulence 0.711 0.248 0.442 0.266 0.128 0.637 3 27 0.06 null sphere -262 19 -720 19 Checkerboard 0.813 0.642 0.817 0.664 0.236 0.83 18 43 0.05 NormalMap 16.94 0.8675 sphere -278 16 -658 16 Turbulence 0.813 0.07 0.257 0.675 0.851 0.965 2 118 0.38 null sphere -266 17 -634 17 CrissCross 0.572 0.399 0.595 0.664 0.804 0.369 0.199 0.474 0.273 8 45 0.24 null sphere -289 21 -560 21 ShinyColor 0.613 0.953 0.499 125 0.52 null sphere -290 19 -535 19 Turbulence 0.239 0.278 0.47 0.438 0.752 0.743 17 8 0.06 NormalMap 0.04 0.35 sphere -283 15 -491 15 CrissCross 0.762 0.325 0.63 0.765 0.4 0.136 0.34 0.875 0.237 12 25 0.5 NormalMap 18.12 0.5625 sphere -274 25 -428 25 Marble 0.465 0.642 0.284 0.134 0.125 0.24 7 134 0.4 null sphere -260 16 -336 16 Turbulence 0.589 0.899 0.486 0.416 0.843 0.022 14 119 0.59 null sphere -278 19 -292 19 Marble 0.003 0.855 0.08 0.97 0.946 0.072 17 43 0.45 null sphere -266 22 -231 22 Turbulence 0.656 0.303 0.105 0.57 0.743 0.522 16 49 0.04 NormalMap 4.32 0.615 sphere -273 15 -196 15 ShinyColor 0.644 0.99 0.288 45 0.56 null sphere -285 19 -149 19 CrissCross 0.432 0.541 0.997 0.2 0.858 0.059 0.407 0.073 0.552 13 24 0.08 null sphere -277 23 -86 23 Checkerboard 0.574 0.072 0.435 0.742 0.108 0.642 5 73 0.35 NormalMap 19.02 1.17125 sphere -286 25 -13 25 ShinyColor 0.544 0.507 0.558 26 0.46 null sphere -267 19 51 19 Turbulence 0.396 0.736 0.821 0.505 0.377 0.057 20 133 0.06 null sphere -261 24 107 24 CrissCross 0.126 0.621 0.072 0.576 0.366 0.329 0.08 0.691 0.63 4 15 0.25 null sphere -273 15 190 15 ShinyColor 0.506 0.442 0.802 60 0.28 null sphere -268 20 251 20 Glass 4.275 64 null sphere -265 17 310 17 Checkerboard 0.637 0.917 0.921 0.674 0.49 0.544 17 150 0.7 null sphere -270 20 348 20 ShinyColor 0.37 0.844 0.812 34 0.01 null sphere -286 24 423 24 Glass 4.205 65 NormalMap 15.22 0.1225 sphere -263 18 475 18 Marble 0.575 0.96 0.05 0.946 0.803 0.863 4 125 0.37 null sphere -284 25 510 25 Turbulence 0.404 0.642 0.229 0.948 0.947 0.131 10 38 0.45 NormalMap 18.3 0.825 sphere -268 24 612 24 Glass 2.53 18 null sphere -287 23 659 23 CrissCross 0.864 0.824 0.99 0.996 0.312 0.227 0.636 0.722 0.142 6 107 0.01 NormalMap 12.76 0.86625 sphere -284 22 725 22 Checkerboard 0.162 0.398 0.227 0.682 0.902 0.699 2 82 0.4 NormalMap 8 0.49875 sphere -268 19 761 19 ShinyColor 0.433 0.484 0.328 23 0.35 NormalMap 15.56 0.24 sphere -278 20 836 20 ShinyColor 0.497 0.76 0.503 110 0.31 NormalMap 8.46 0.65625 sphere -270 25 897 25 Turbulence 0.106 0.768 0.543 0.591 0.095 0.683 2 66 0.32 NormalMap 6.94 1.20375 sphere -288 25 958 25 Turbulence 0.974 0.317 0.671 0.914 0.315 0.32 6 108 0.06 null sphere -198 19 -979 19 ShinyColor 0.873 0.282 0.509 26 0.44 NormalMap 16.6 0.71625 sphere -214 15 -946 15 Glass 1.065 16 null sphere -215 17 -885 17 Checkerboard 0.69 0.992 0.43 0.472 0.843 0.479 7 21 0.7 NormalMap 15.08 0.5725 sphere -192 18 -842 18 Checkerboard 0.225 0.027 0.182 0.438 0.121 0.176 20 82 0.29 NormalMap 0.7 0.82125 sphere -202 22 -784 22 Glass 2.705 94 NormalMap 0.82 0.4625 sphere -201 19 -724 19 Marble 0.908 0.364 0.449 0.084 0.33 0.985 11 82 0.01 NormalMap 16.2 0.93 sphere -193 20 -670 20 CrissCross 0.487 0.892 0.987 0.11 0.593 0.286 0.836 0.519 0.614 15 133 0.04 null sphere -199 18 -634 18 Turbulence 0.073 0.751 0.612 0.766 0.232 0.532 13 114 0.58 NormalMap 12.92 1.01 sphere -220 17 -589 17 CrissCross 0.856 0.818 0.964 0.608 0.885 0.46 0.169 0.695 0.769 5 69 0.27 NormalMap 13.58 1.14125 sphere -200 19 -510 19 ShinyColor 0.541 0.974 0.316 97 0.02 NormalMap 6.88 1.04375 sphere -208 16 -455 16 Glass 4.09 134 NormalMap 10.26 0.82125 sphere -221 25 -399 25 Glass 0.345 104 null sphere -208 25 -338 25 Glass 4.125 40 NormalMap 5.8 1.03125 sphere -222 22 -308 22 Turbulence 0.944 0.539 0.3 0.543 0.175 0.25 16 39 0.66 null sphere -196 22 -262 22 Glass 2.655 98 null sphere -206 23 -191 23 Checkerboard 0.824 0.444 0.405 0.767 0.983 0.705 7 26 0.67 NormalMap 8.06 1.11125 sphere -221 23 -119 23 Checkerboard 0.27 0.038 0.293 0.801 0.682 0.837 13 25 0.44 NormalMap 12.42 0.61875 sphere -193 19 -62 19 Marble 0.364 0.605 0.483 0.252 0.451 0.276 7 5 0.65 NormalMap 5.7 1.20375 sphere -203 15 -8 15 Glass 4.32 64 null sphere -196 21 40 21 CrissCross 0.05 0.895 0.641 0.327 0.194 0.656 0.251 0.563 0.94 5 36 0.01 null sphere -196 22 120 22 ShinyColor 0.482 0.759 0.919 10 0.44 null sphere -219 21 188 21 Checkerboard 0.442 0.398 0.481 0.637 0.053 0.732 4 150 0.67 NormalMap 0.4 1.00375 sphere -208 23 219 23 Turbulence 0.433 0.534 0.731 0.417 0.069 0.637 20 28 0.13 null sphere -197 16 290 16 Turbulence 0.486 0.889 0.209 0.288 0.037 0.96 15 9 0.21 NormalMap 10.56 0.51 sphere -218 15 342 15 ShinyColor 0.777 0.091 0.305 145 0.59 null sphere -196 19 409 19 Marble 0.574 0.755 0.241 0.533 0.495 0.283 17 114 0.57 NormalMap 8.78 1.09125 sphere -222 20 461 20 Glass 2.36 142 null sphere -203 21 520 21 Turbulence 0.561 0.583 0.325 0.094 0.078 0.608 19 125 0.29 NormalMap 5.36 0.36375 sphere -213 23 590 23 CrissCross 0.369 0.928 0.123 0.993 0.289 0.002 0.981 0.117 0.086 11 106 0.29 null sphere -204 21 626 21 Turbulence 0.686 0.023 0.032 0.134 0.628 0.881 2 28 0.31 NormalMap 2.02 0.70375 sphere -205 19 680 19 Turbulence 0.064 0.572 0.988 0.083 0.14 0.594 11 134 0.33 NormalMap 3.88 0.1925 sphere -214 17 743 17 ShinyColor 0.342 0.073 0.546 116 0.12 NormalMap 3.6 0.705 sphere -220 21 784 21 Turbulence 0.267 0.475 0.223 0.861 0.996 0.108 7 39 0.21 NormalMap 10.36 0.65875 sphere -203 19 842 19 Checkerboard 0.88 0.667 0.287 0.058 0.23 0.963 13 47 0.2 NormalMap 11.64 0.85125 sphere -218 24 899 24 Checkerboard 0.559 0.039 0.396 0.861 0.523 0.914 8 46 0.23 NormalMap 8.24 1.03 sphere -207 18 952 18 Marble 0.74 0.125 0.604 0.42 0.352 0.452 12 121 0.11 null sphere -157 17 -1004 17 Checkerboard 0.368 0.631 0.432 0.191 0.831 0.723 14 50 0.05 NormalMap 15.38 0.065 sphere -174 20 -954 20 Marble 0.643 0.23 0.695 0.844 0.353 0.917 12 60 0.37 null sphere -150 15 -878 15 Marble 0.074 0.867 0.456 0.582 0.045 0.484 11 88 0.68 NormalMap 18.18 0.75875 sphere -166 21 -846 21 Checkerboard 0.987 0.044 0.608 0.744 0.201 0.628 14 30 0.26 NormalMap 9.92 0.23125 sphere -178 21 -786 21 ShinyColor 0.097 0.294 0.66 102 0.18 null sphere -174 25 -734 25 CrissCross 0.242 0.95 0.57 0.935 0.138 0.941 0.257 0.634 0.126 13 33 0.12 NormalMap 7.08 0.345 sphere -150 15 -646 15 CrissCross 0.115 0.417 0.488 0.615 0.165 0.429 0.858 0.114 1 16 40 0.66 NormalMap 17.76 0.0825 sphere -172 15 -618 15 Marble 0.772 0.144 1 0.611 0.747 0.714 16 130 0.09 NormalMap 9.56 0.37 sphere -167 18 -543 18 ShinyColor 0.664 0.621 0.176 84 0.48 null sphere -177 25 -484 25 CrissCross 0.102 0.435 0.633 0.867 0.297 0.764 0.119 0.775 0.06 17 19 0.33 NormalMap 4.74 0.16875 sphere -158 19 -424 19 Turbulence 0.414 0.172 0.893 0.958 0.093 0.385 13 4 0.34 NormalMap 12.94 0.4425 sphere -165 19 -393 19 CrissCross 0.077 0.861 0.913 0.765 0.651 0.164 0.093 0.372 0.337 11 83 0.16 NormalMap 12.76 0.77 sphere -176 22 -348 22 CrissCross 0.179 0.205 0.984 0.122 0.963 0.482 0.199 0.824 0.395 20 73 0.39 NormalMap 16.92 1.1225 sphere -176 19 -293 19 ShinyColor 0.744 0.14 0.68 128 0.23 null sphere -172 22 -207 22 Marble 0.086 0.187 0.225 0.482 0.151 0.699 1 33 0.38 null sphere -155 15 -126 15 Marble 0.621 0.959 0.176 0.307 0.192 0.798 4 96 0.28 NormalMap 0.66 0.61 sphere -149 17 -93 17 Checkerboard 0.71 0.502 0.949 0.484 0.438 0.015 6 62 0.58 NormalMap 0.92 0.6 sphere -166 22 -34 22 Turbulence 0.261 0.888 0.307 0.293 0.375 0.656 12 54 0.11 null sphere -170 15 24 15 Marble 0.873 0.896 0.624 0.384 0.562 0.061 2 82 0.49 null sphere -149 19 85 19 Turbulence 0.801 0.306 0.522 0.666 0.316 0.827 1 116 0.1 null sphere -164 20 155 20 Checkerboard 0.975 0.984 0.609 0.667 0.543 0.291 13 149 0.19 null sphere -149 22 217 22 Turbulence 0.328 0.408 0.05 0.474 0.06 0.666 16 89 0.12 null sphere -165 22 272 22 Checkerboard 0.149 0.937 0.011 0.431 0.802 0.823 8 71 0.56 NormalMap 8.66 0.37875 sphere -160 22 330 22 Checkerboard 0.947 0.434 0.869 0.532 0.61 0.544 1 130 0.13 null sphere -153 20 374 20 Glass 1.82 99 null sphere -165 16 430 16 Checkerboard 0.102 0.633 0.204 0.048 0.066 0.072 12 103 0.43 null sphere -172 16 495 16 Checkerboard 0.773 0.186 0.42 0.022 0.549 0.074 15 108 0.57 null sphere -171 23 527 23 Glass 2.245 85 null sphere -159 19 603 19 Turbulence 0.038 0.083 0.321 0.458 0.106 0.871 11 127 0.41 NormalMap 14.54 0.95875 sphere -178 20 639 20 Turbulence 0.09 0.454 0.431 0.265 0.827 0.092 6 49 0 null sphere -156 22 682 22 Glass 2.975 36 NormalMap 6.42 1.24125 sphere -178 23 741 23 CrissCross 0.388 0.929 0.241 0.48 0.18 0.557 0.489 0.743 0.008 11 60 0.55 NormalMap 2.8 0.5275 sphere -159 23 794 23 ShinyColor 0.642 0.219 0.85 103 0.34 null sphere -151 20 864 20 Glass 1.64 7 null sphere -169 22 906 22 Marble 0.03 0.523 0.932 0.085 0.164 0.151 19 128 0.45 NormalMap 2.06 0.11125 sphere -150 15 994 15 Checkerboard 0.071 0.896 0.722 0.889 0.666 0.393 5 124 0.59 null sphere -132 16 -1004 16 Glass 0.855 40 null sphere -124 25 -946 25 Glass 4.665 50 NormalMap 13.08 0.26 sphere -126 15 -868 15 Checkerboard 0.749 0.608 0.195 0.9 0.848 0.235 3 40 0.3 NormalMap 10.1 0.3225 sphere -134 24 -812 24 Checkerboard 0.667 0.478 0.985 0.987 0.618 0.638 4 65 0.48 null sphere -115 23 -757 23 Glass 0.81 126 NormalMap 11.78 0.17625 sphere -138 24 -675 24 ShinyColor 0.474 0.881 0.077 23 0.25 NormalMap 2.54 1.22125 sphere -127 18 -618 18 Marble 0.138 0.623 0.95 0.167 0.784 0.784 9 58 0.65 NormalMap 4.38 1.225 sphere -125 17 -541 17 Glass 1.91 109 NormalMap 1.62 0.0525 sphere -139 20 -482 20 Glass 2.79 51 NormalMap 14.52 0.1375 sphere -125 16 -416 16 Turbulence 0.946 0.291 0.056 0.267 0.887 0.178 13 92 0.19 null sphere -119 17 -360 17 Turbulence 0.688 0.075 0.895 0.799 0.008 0.069 6 131 0.34 null sphere -109 25 -296 25 Glass 4.23 75 NormalMap 11.5 0.17375 sphere -115 23 -249 23 Checkerboard 0.716 0.548 0.847 0.791 0.443 0.645 16 78 0.65 null sphere -116 19 -176 19 Glass 1.23 93 null sphere -112 20 -107 20 CrissCross 0.153 0.675 0.255 0.597 0.32 0.055 0.109 0.247 0.72 3 26 0.06 null sphere -138 20 -60 20 ShinyColor 0.926 0.432 0.975 60 0.21 null sphere -133 22 13 22 ShinyColor 0.37 0.478 0.402 146 0.56 NormalMap 1.54 0.05625 sphere -133 16 46 16 ShinyColor 0.205 0.719 0.521 39 0.29 null sphere -122 21 104 21 Checkerboard 0.129 0.189 0.386 0.933 0.336 0.757 9 112 0.51 NormalMap 3.92 1 sphere -109 19 164 19 Checkerboard 0.664 0.358 0.551 0.91 0.775 0.151 2 95 0.51 null sphere -111 23 210 23 Marble 0.496 0.674 0.458 0.692 0.473 0.713 2 69 0.12 null sphere -138 15 289 15 Checkerboard 0.825 0.461 0.909 0.463 0.238 0.141 6 24 0.39 NormalMap 19.66 0.4 sphere -114 17 317 17 CrissCross 0.574 0.276 0.496 0.408 0.339 0.529 0.151 0.176 0.713 20 97 0.44 NormalMap 17.52 0.95375 sphere -129 15 379 15 ShinyColor 0.646 0.59 0.234 71 0.48 null sphere -123 18 424 18 Turbulence 0.158 0.281 0.461 0.334 0.995 0.437 20 94 0.62 null sphere -118 24 497 24 Turbulence 0.812 0.03 0.029 0.782 0.271 0.358 7 81 0.18 NormalMap 5.6 0.71375 sphere -139 21 547 21 Turbulence 0.345 0.456 0.548 0.932 0.322 0.252 14 31 0.42 NormalMap 5.92 0.5175 sphere -133 18 583 18 CrissCross 0.514 0.967 0.713 0.546 0.603 0.267 0.014 0.211 0.437 8 101 0.69 NormalMap 19.78 0.29625 sphere -113 16 641 16 Glass 4 69 NormalMap 9.66 1.21125 sphere -120 19 702 19 Glass 2.43 32 NormalMap 10 0.51625 sphere -137 24 781 24 ShinyColor 0.068 0.115 0.136 39 0.67 NormalMap 14.48 0.2575 sphere -119 20 829 20 ShinyColor 0.624 0.042 0.43 41 0.36 NormalMap 17.14 0.8825 sphere -134 15 883 15 Checkerboard 0.214 0.551 0.932 0.366 0.619 0.046 11 131 0 null sphere -136 25 942 25 Checkerboard 0.485 0.701 0.548 0.743 0.218 0.918 12 139 0.54 null sphere -135 16 976 16 Checkerboard 0.707 0.298 0.118 0.21 0.165 0.119 18 114 0.23 null sphere -68 25 -1000 25 Marble 0.321 0.223 0.671 0.407 0.349 0.8 11 105 0.34 null sphere -70 23 -907 23 Turbulence 0.306 0.566 0.372 0.783 0.552 0.045 20 15 0.32 NormalMap 10.76 0.59375 sphere -84 23 -870 23 ShinyColor 0.947 0.632 0.801 65 0.17 NormalMap 4.06 1.2375 sphere -62 16 -795 16 Checkerboard 0.601 0.408 0.403 0.384 0.961 0.448 7 9 0.64 null sphere -78 19 -739 19 Turbulence 0.258 0.902 0.346 0.457 0.103 0.336 6 39 0.13 null sphere -73 16 -689 16 Glass 4.44 77 null sphere -59 18 -655 18 CrissCross 0.265 0.87 0.609 0.369 0.205 0.873 0.617 0.389 0.431 15 92 0.41 NormalMap 4.42 0.16625 sphere -88 18 -604 18 CrissCross 0.504 0.002 0.588 0.869 0.526 0.739 0.134 0.395 0.348 11 91 0.15 NormalMap 19.8 0.81375 sphere -81 21 -546 21 Turbulence 0.394 0.859 0.358 0.002 0.116 0.975 12 122 0.34 null sphere -84 16 -479 16 Turbulence 0.705 0.104 0.092 0.356 0.93 0.685 12 145 0.35 null sphere -73 19 -409 19 Marble 0.408 0.527 0.835 0.755 0.633 0.973 5 23 0.32 NormalMap 4.76 0.2025 sphere -72 18 -381 18 ShinyColor 0.116 0.215 0.513 16 0.61 NormalMap 9.1 0.47125 sphere -88 24 -317 24 Turbulence 0.276 0.155 0.93 0.248 0.392 0.064 15 93 0.21 null sphere -82 19 -263 19 Glass 2.96 43 NormalMap 0.92 0.815 sphere -68 24 -223 24 Checkerboard 0.727 0.935 0.373 0.883 0.865 0.622 6 140 0.23 null sphere -62 24 -164 24 ShinyColor 0.512 0.085 0.428 102 0.48 null sphere -80 18 -98 18 ShinyColor 0.604 0.228 0.108 52 0.11 NormalMap 4.28 0.03375 sphere -83 19 118 19 Checkerboard 0.208 0.22 0.566 0.294 0.648 0.238 20 55 0.12 null sphere -66 18 154 18 Marble 0.608 0.703 0.41 0.096 0.66 0.84 10 128 0.33 null sphere -74 24 242 24 CrissCross 0.599 0.347 0.917 0.316 0.41 0.429 0.142 0.805 0.104 9 64 0.57 null sphere -58 22 280 22 ShinyColor 0.654 0.218 0.839 83 0.48 null sphere -58 23 334 23 Turbulence 0.896 0.035 0.725 0.037 0.841 0.829 10 40 0.45 NormalMap 15.28 0.13 sphere -75 23 378 23 Glass 4.725 50 null sphere -88 21 467 21 Turbulence 0.487 0.655 0.001 0.525 0.495 0.831 1 113 0.33 NormalMap 10.24 0.715 sphere -58 17 509 17 CrissCross 0.632 0.669 0.106 0.644 0.662 0.086 0.235 0.281 0.363 15 141 0.25 NormalMap 8.64 0.24375 sphere -68 16 556 16 Glass 4.745 36 null sphere -82 17 624 17 Marble 0.14 0.965 0.713 0.422 0.327 0.435 8 105 0.48 null sphere -71 25 682 25 Marble 0.181 0.211 0.864 0.448 0.413 0.673 5 39 0.1 NormalMap 14.46 0.36375 sphere -66 19 725 19 Checkerboard 0.08 0.554 0.862 0.968 0.495 0.831 11 10 0.34 NormalMap 12.3 0.12625 sphere -79 23 767 23 CrissCross 0.56 0.695 0.285 0.622 0.129 1 0.01 0 0.071 2 84 0.66 NormalMap 0.98 0.95375 sphere -81 16 850 16 Glass 2.545 102 NormalMap 15.06 0.495 sphere -77 17 871 17 Checkerboard 0.471 0.397 0.192 0.47 0.408 0.193 11 76 0.52 NormalMap 11.14 0.99375 sphere -61 16 926 16 ShinyColor 0.606 0.85 0.18 20 0.36 null sphere -22 15 -977 15 Turbulence 0.541 0.846 0.664 0.734 0.387 0.162 10 130 0.51 NormalMap 1.96 1.0625 sphere -4 21 -941 21 Checkerboard 0.889 0.959 0.561 0.756 0.875 0.281 17 26 0.13 null sphere -29 25 -893 25 Marble 0.656 0.501 0.535 0.754 0.35 0.703 7 32 0.33 null sphere -6 23 -845 23 Checkerboard 0.961 0.775 0.263 0.659 0.281 0.826 13 51 0.16 NormalMap 2.2 0.03625 sphere -9 19 -788 19 CrissCross 0.083 0.566 0.299 0.449 0.307 0.094 0.57 0.923 0.17 11 106 0.3 NormalMap 19.58 0.32375 sphere -15 18 -738 18 Glass 3.93 33 null sphere -21 19 -668 19 CrissCross 0.884 0.399 0.226 0.054 0.93 0.925 0.489 0.118 0.903 15 139 0.14 NormalMap 19.08 0.78375 sphere -18 15 -588 15 Checkerboard 0.621 0.989 0.399 0.051 0.479 0.78 1 42 0.43 NormalMap 3.08 0.01 sphere -1 17 -550 17 Checkerboard 0.406 0.445 0.977 0.616 0.687 0.931 5 69 0.66 null sphere -29 23 -498 23 ShinyColor 0.098 0.963 0.937 24 0.16 null sphere -28 21 -438 21 CrissCross 0.525 0.602 0.421 0.455 0.844 0.873 0.387 0.499 0.298 18 40 0.24 NormalMap 8.24 0.5525 sphere -12 18 -387 18 Checkerboard 0.945 0.448 0.164 0.537 0.941 0.744 17 75 0.51 null sphere -16 25 -350 25 Turbulence 0.739 0.93 0.496 0.103 0.341 0.939 9 105 0.37 null sphere -30 25 -267 25 Turbulence 0.461 0.252 0.858 0.476 0.584 0.84 19 115 0.49 null sphere -19 20 -210 20 Turbulence 0.394 0.807 0.065 0.978 0.42 1 1 32 0.33 null sphere 0 19 -137 19 Marble 0.159 0.666 0.749 0.004 0.207 0.112 7 129 0.58 null sphere 0 19 -104 19 Glass 0.265 71 NormalMap 15.46 0.28875 sphere -21 20 86 20 Turbulence 0.366 0.487 0.27 0.479 0.834 0.122 6 71 0.03 null sphere -7 22 120 22 Turbulence 0.572 0.732 0.686 0.317 0.589 0.22 13 138 0.43 NormalMap 7.9 0.85125 sphere -1 24 182 24 Checkerboard 0.377 0.174 0.125 0.884 0.067 0.169 12 123 0.14 NormalMap 12.28 0.8825 sphere -17 17 247 17 Checkerboard 0.444 0.121 0.94 0.061 0.357 0.333 15 145 0.15 null sphere -18 23 309 23 Glass 0.32 133 null sphere 0 21 388 21 Glass 1.45 68 null sphere -7 21 436 21 Turbulence 0.769 0.857 0.823 0.186 0.961 0.717 10 22 0.55 NormalMap 2.4 0.06125 sphere -30 22 495 22 CrissCross 0.206 0.254 0.889 0.975 0.967 0.248 0.702 0.894 0.302 10 113 0.08 null sphere -4 16 564 16 Turbulence 0.682 0.696 0.831 0.188 0.132 0.547 20 4 0.58 NormalMap 5.24 0.885 sphere -1 17 613 17 ShinyColor 0.258 0.336 0.872 59 0.7 null sphere -4 19 649 19 Turbulence 0.215 0.704 0.255 0.347 0.25 0.238 8 13 0.3 null sphere -8 24 701 24 Marble 0.787 0.42 0.599 0.924 0.845 0.447 12 37 0.68 NormalMap 5.96 0.2275 sphere -14 21 749 21 Turbulence 0.501 0.244 0.811 0.346 0.976 0.267 7 145 0.04 NormalMap 6.8 1.06125 sphere -7 25 808 25 CrissCross 0.533 0.935 0.497 0.062 0.333 0.288 0.947 0.8 0.507 9 9 0.22 null sphere 0 16 879 16 Marble 0.267 0.248 0.647 0.61 0.896 0.998 8 127 0.37 NormalMap 6.74 0.74125 sphere -14 21 930 21 ShinyColor 0.988 0.509 0.449 118 0.37 NormalMap 17.8 0.64375 sphere 22 24 -975 24 ShinyColor 0.442 0.229 0.749 10 0.08 null sphere 41 18 -923 18 CrissCross 0.399 0.421 0.507 0.181 0.95 0.542 0.07 0.465 0.221 5 48 0.28 NormalMap 8.14 1.0475 sphere 44 16 -863 16 Turbulence 0.121 0.822 0.052 0.568 0.748 0.464 10 122 0.61 null sphere 43 24 -838 24 Checkerboard 0.335 0.62 0.473 0.536 0.026 0.311 20 29 0.14 null sphere 25 15 -760 15 Glass 3.065 118 null sphere 39 21 -704 21 CrissCross 0.4 0.138 0.673 0.427 0.45 0.639 0.609 0.652 0.161 14 31 0.14 null sphere 19 18 -660 18 ShinyColor 0.8 0.097 0.7 64 0.58 NormalMap 17.56 0.5225 sphere 19 22 -626 22 ShinyColor 0.221 0.002 0.485 102 0.45 NormalMap 6.46 1.00375 sphere 17 20 -547 20 Checkerboard 0.02 0.459 0.752 0.076 0.258 0.85 16 102 0.48 NormalMap 10.98 0.12125 sphere 22 17 -497 17 Marble 0.328 0.842 0.395 0.13 0.628 0.911 3 58 0.2 NormalMap 7.86 0.9275 sphere 17 20 -427 20 Marble 0.587 0.767 0.426 0.768 0.451 0.689 4 23 0.31 NormalMap 9.34 0.34875 sphere 45 21 -375 21 CrissCross 0.901 0.141 0.573 0.71 0.387 0.244 0.199 0.797 0.465 16 86 0.63 null sphere 21 22 -333 22 Marble 0.203 0.151 0.948 0.482 0.982 0.889 4 85 0.56 NormalMap 2.56 0.62375 sphere 38 19 -256 19 Glass 3.64 8 NormalMap 6.16 0.95 sphere 39 18 -198 18 Glass 4.12 73 null sphere 31 24 -170 24 Glass 0.835 67 null sphere 27 18 -69 18 ShinyColor 0.386 0.014 0.385 24 0.15 null sphere 37 16 81 16 Checkerboard 0.962 0.92 0.149 0.629 0.675 0.291 16 19 0.57 null sphere 47 15 128 15 Checkerboard 0.618 0.542 0.224 0.328 0.413 0.275 14 93 0.26 null sphere 30 17 183 17 Glass 4.335 130 null sphere 17 20 254 20 Glass 4.505 150 null sphere 43 25 292 25 CrissCross 0.743 0.173 0.727 0.935 0.744 0.768 0.802 0.605 0.604 16 42 0.07 null sphere 21 23 356 23 CrissCross 0.487 0.472 0.268 0.35 0.943 0.019 0.665 0.686 0.193 8 94 0.66 NormalMap 8.46 0.67625 sphere 42 17 434 17 Marble 0.973 0.543 0.861 0.92 0.536 0.675 15 6 0.1 null sphere 18 15 473 15 Turbulence 0.589 0.819 0.68 0.352 0.02 0.491 5 4 0.27 null sphere 26 22 507 22 Turbulence 0.881 0.12 0.288 0.254 0.21 0.299 6 148 0.35 null sphere 23 18 569 18 Marble 0.205 0.562 0.01 0.644 0.218 0.332 19 120 0.13 null sphere 28 15 612 15 Turbulence 0.18 0.338 0.615 0.822 0.65 0.816 3 49 0.02 null sphere 40 16 654 16 CrissCross 0.665 0.859 0.873 0.702 0.239 0.197 0.949 0.918 0.814 4 17 0.1 null sphere 18 21 710 21 Checkerboard 0.307 0.92 0.18 0.062 0.2 0.987 1 123 0.52 null sphere 32 22 764 22 Glass 4.09 76 NormalMap 18.32 0.81375 sphere 31 24 824 24 CrissCross 0.099 0.938 0.41 0.085 0.974 0.223 0.821 0.776 0.84 5 67 0.23 NormalMap 6.74 0.0175 sphere 32 16 879 16 ShinyColor 0.165 0.633 0.907 94 0.19 null sphere 18 22 938 22 Glass 4.545 146 NormalMap 14.6 0.935 sphere 22 25 983 25 CrissCross 0.251 0.745 0.268 0.885 0.652 0.886 0.157 0.457 0.07 15 29 0.09 NormalMap 0.1 0.16 sphere 92 16 -986 16 Turbulence 0.905 0.867 0.553 0.494 0.513 0.228 12 116 0.69 null sphere 115 23 -947 23 Marble 0.268 0.082 0.697 0.181 0.182 0.78 17 7 0.07 NormalMap 1.24 0.01625 sphere 105 21 -872 21 Checkerboard 0.563 0.817 0.972 0.212 0.441 0.723 1 80 0.38 null sphere 91 21 -821 21 Turbulence 0.06 0.793 0.154 0.478 0.855 0.168 16 72 0.48 null sphere 93 16 -751 16 Marble 0.022 0.905 0.88 0.521 0.472 0.934 3 112 0.12 null sphere 119 22 -709 22 Checkerboard 0.472 0.982 0.783 0.032 0.294 0.565 4 65 0.22 NormalMap 19.88 0.99625 sphere 115 15 -639 15 Glass 4.495 68 null sphere 99 23 -588 23 Checkerboard 0.478 0.792 0.479 0.46 0.574 0.511 16 23 0.47 NormalMap 9.18 0.20125 sphere 90 17 -561 17 ShinyColor 0.766 0.221 0.415 149 0.08 null sphere 111 16 -509 16 ShinyColor 0.39 0.493 0.608 29 0.69 NormalMap 15.14 0.60375 sphere 94 24 -433 24 Glass 3.05 51 NormalMap 13.7 0.1125 sphere 92 16 -376 16 Checkerboard 0.956 0.122 0.746 0.442 0.253 0.135 19 130 0.22 null sphere 113 19 -329 19 CrissCross 0.179 0.347 0.619 0.27 0.995 0.718 0.354 0.762 0.675 8 109 0.56 NormalMap 3.2 0.0625 sphere 118 16 -292 16 ShinyColor 0.841 0.667 0.392 90 0.45 null sphere 98 23 -218 23 Turbulence 0.605 0.23 0.593 0.366 0.906 0.988 2 107 0.09 NormalMap 15.08 0.505 sphere 120 22 -181 22 Turbulence 0.301 0.666 0.442 0.261 0.455 0.706 4 65 0.22 null sphere 97 24 -113 24 Marble 0.613 0.261 0.775 0.951 0.927 0.772 6 67 0.3 NormalMap 10.66 0.92125 sphere 120 25 -52 25 Checkerboard 0.566 0.996 0.822 0.229 0.917 0.721 10 33 0.37 null sphere 95 16 0 16 Checkerboard 0.22 0.644 0.426 0.654 0.08 0.448 4 124 0.09 NormalMap 16.34 0.3475 sphere 116 25 78 25 Checkerboard 0.753 0.512 0.558 0.957 0.036 0.285 11 13 0.27 null sphere 108 24 134 24 Marble 0.799 0.862 0.585 0.615 0.14 0.426 12 148 0.18 NormalMap 1.16 0.02 sphere 120 21 206 21 Turbulence 0.217 0.356 0.539 0.069 0.94 0.438 7 29 0.29 NormalMap 12.02 0.27125 sphere 115 17 250 17 Glass 4.38 120 NormalMap 17.84 0.85125 sphere 108 24 327 24 CrissCross 0.653 0.895 0.896 0.001 0.07 0.314 0.076 0.672 0.532 1 129 0.25 NormalMap 9.42 0.975 sphere 107 18 366 18 Glass 0.51 129 null sphere 91 21 423 21 ShinyColor 0.703 0.306 0.915 107 0.26 NormalMap 15.62 0.06 sphere 118 23 479 23 Turbulence 0.723 0.475 0.315 0.961 0.728 0.323 2 89 0.68 null sphere 104 21 552 21 Marble 0.692 0.768 0.184 0.452 0.563 0.09 12 69 0.33 NormalMap 9.84 0.23625 sphere 94 23 627 23 ShinyColor 0.212 0.268 0.095 112 0.22 null sphere 108 16 689 16 Turbulence 0.358 0.845 0.777 0.922 0.935 0.353 8 62 0.59 null sphere 112 22 747 22 CrissCross 0.518 0.018 0.813 0.689 0.623 0.336 0.323 0.214 0.997 13 87 0.59 NormalMap 9.88 0.96875 sphere 95 24 817 24 CrissCross 0.195 0.463 0.606 0.088 0.159 0.654 0.606 0.177 0.467 6 121 0.57 null sphere 108 17 887 17 Checkerboard 0.415 0.469 0.947 0.592 0.079 0.674 8 73 0.05 null sphere 119 18 924 18 Marble 0.256 0.468 0.874 0.875 0.483 0.674 3 13 0.22 null sphere 147 16 -994 16 CrissCross 0.108 0.878 0.152 0.462 0.368 0.756 0.423 0.034 0.827 14 77 0.49 null sphere 139 22 -936 22 Marble 0.738 0.208 0.076 0.418 0.065 0.919 20 42 0.01 null sphere 143 17 -871 17 Checkerboard 0.591 0.749 0.703 0.144 0.735 0.077 17 120 0.54 NormalMap 19.98 0.22875 sphere 166 18 -843 18 Turbulence 0.305 0.733 0.325 0.149 0.152 0.815 8 51 0.51 null sphere 139 18 -792 18 ShinyColor 0.111 0.3 0.883 132 0.47 null sphere 168 17 -735 17 CrissCross 0.189 0.778 0.608 0.003 0.138 0.937 0.73 0.746 0.267 1 18 0.21 null sphere 140 23 -683 23 Turbulence 0.142 0.335 0.586 0.708 0.658 0.308 12 45 0.54 null sphere 144 23 -628 23 Marble 0.876 0.047 0.243 0.288 0.856 0.319 12 51 0.19 null sphere 145 17 -577 17 Turbulence 0.314 0.459 0.273 0.686 0.223 0.475 20 109 0.3 null sphere 147 19 -506 19 Checkerboard 0.034 0.31 0.488 0.311 0.241 0.145 15 78 0.27 null sphere 157 21 -453 21 ShinyColor 0.913 0.94 0.237 60 0.66 null sphere 146 17 -374 17 Marble 0.985 0.161 0.343 0.225 0.306 0.073 15 105 0.66 NormalMap 12.7 0.60625 sphere 153 24 -319 24 Glass 3.81 105 null sphere 144 17 -257 17 Glass 1.125 130 NormalMap 11.36 0.11 sphere 163 22 -207 22 Turbulence 0.787 0.774 0.555 0.503 0.603 0.291 13 56 0.69 null sphere 163 22 -136 22 Turbulence 0.573 0.628 0.7 0.662 0.182 0.341 10 66 0.64 NormalMap 6.34 1.21 sphere 154 15 -71 15 Turbulence 0.795 0.882 0.683 0.675 0.596 0.513 20 77 0.15 NormalMap 12.72 0.995 sphere 152 18 -25 18 Marble 0.906 0.555 0.662 0.996 0.078 0.419 14 135 0.55 null sphere 149 19 38 19 Turbulence 0.677 0.398 0.96 0.652 0.733 0.417 17 63 0.25 NormalMap 19.94 0.95625 sphere 151 21 88 21 CrissCross 0.209 0.293 0.16 0.572 0.552 0.102 0.902 0.315 0.267 12 108 0.16 NormalMap 8.92 0.805 sphere 138 24 136 24 Marble 0.036 0.032 0.038 0.022 0.554 0.667 16 116 0.68 null sphere 145 15 208 15 Marble 0.986 0.155 0.085 0.841 0.156 0.521 14 139 0.18 NormalMap 2.26 0.36875 sphere 147 16 244 16 Checkerboard 0.444 0.778 0.989 0.78 0.29 0.006 1 20 0.2 null sphere 157 24 313 24 Glass 2.43 28 NormalMap 14.9 0.335 sphere 150 15 343 15 Checkerboard 0.118 0.431 0.518 0.897 0.42 0.297 4 66 0.22 NormalMap 14.38 0.1825 sphere 138 20 416 20 Glass 2.98 73 NormalMap 12.62 0.275 sphere 146 23 483 23 ShinyColor 0.619 0.002 0.196 10 0.36 NormalMap 9.42 1.02125 sphere 142 24 526 24 Turbulence 0.301 0.151 0.619 0.292 0.242 0.214 16 78 0.59 null sphere 168 17 593 17 Marble 0.991 0.388 0.308 0.269 0.285 0.438 18 136 0.5 NormalMap 0.82 0.01875 sphere 147 22 650 22 Checkerboard 0.3 0.718 0.063 0.342 0.341 0.312 7 9 0.12 NormalMap 18.82 0.12125 sphere 153 25 694 25 Turbulence 0.672 0.236 0.45 0.713 0.251 0 8 85 0.56 NormalMap 12.7 0.11375 sphere 151 22 775 22 ShinyColor 0.746 0.346 0.189 7 0.2 NormalMap 16.12 0.27125 sphere 150 24 848 24 Glass 3.245 139 null sphere 152 18 926 18 Checkerboard 0.804 0.507 0.791 0.237 0.811 0.801 20 26 0.7 NormalMap 8.88 0.34625 sphere 139 22 988 22 ShinyColor 0.594 0.12 0.549 122 0.54 NormalMap 14.74 0.83625 sphere 186 16 -988 16 Glass 0.07 24 null sphere 207 15 -960 15 Checkerboard 0.956 0.159 0.132 0.664 0.238 0.726 16 119 0.37 null sphere 203 17 -911 17 CrissCross 0.586 0.797 0.871 0.4 0.923 0.925 0.204 0.06 0.422 6 5 0.41 NormalMap 13.62 1.025 sphere 201 20 -856 20 ShinyColor 0.863 0.949 0.239 78 0.18 null sphere 211 16 -828 16 Turbulence 0.629 0.914 0.353 0.69 0.335 0.639 15 138 0.04 NormalMap 14.74 0.25 sphere 210 18 -743 18 Glass 3.57 15 null sphere 210 24 -713 24 Marble 0.245 0.114 0.905 0.581 0.753 0.61 10 122 0.7 NormalMap 0.2 1.06 sphere 205 24 -637 24 CrissCross 0.022 0.385 0.345 0.365 0.997 0.931 0.698 0.757 0.145 19 131 0.03 null sphere 196 15 -576 15 Marble 0.221 0.613 0.045 0.045 0.107 0.842 12 87 0.61 null sphere 209 25 -525 25 Marble 0.393 0.2 0.702 0.414 0.634 0.359 14 14 0.61 NormalMap 8.18 0.105 sphere 187 19 -497 19 Turbulence 0.652 0.71 0.389 0.601 0.557 0.316 7 84 0.13 null sphere 192 15 -416 15 CrissCross 0.203 0.601 0.274 0.658 0.731 0.494 0.954 0.429 0.286 3 14 0.7 null sphere 213 24 -390 24 ShinyColor 0.872 0.695 0.585 144 0.7 null sphere 197 17 -325 17 Marble 0.49 0.169 0.281 0.92 0.455 0.394 1 69 0.63 null sphere 186 22 -248 22 CrissCross 0.167 0.433 0.123 0.634 0.592 0.525 0.303 0.351 0.2 13 127 0.26 null sphere 206 18 -195 18 Marble 0.384 0.642 0.654 0.185 0.949 0.149 20 126 0.22 NormalMap 19.12 1.1875 sphere 190 20 -153 20 Glass 0.255 120 null sphere 187 22 -109 22 ShinyColor 0.429 0.229 0.272 123 0.61 null sphere 213 15 -31 15 Marble 0.088 0.594 0.733 0.77 0.478 0.927 17 43 0.62 null sphere 204 24 26 24 Glass 0.435 119 null sphere 184 15 74 15 CrissCross 0.356 0.552 0.729 0.835 0.479 0.549 0.109 0.36 0.243 10 144 0.06 NormalMap 14.32 0.4525 sphere 196 23 132 23 CrissCross 0.153 0.027 0.63 0.916 0.847 0.59 0.271 0.399 0.319 3 132 0.61 NormalMap 4.76 0.13875 sphere 189 17 197 17 Marble 0.867 0.356 0.542 0.363 0.086 0.131 3 38 0.11 null sphere 196 18 221 18 CrissCross 0.641 0.453 0.715 0.841 0.337 0.626 0.402 0.317 0.281 9 30 0.45 null sphere 203 15 298 15 Glass 1.24 116 null sphere 211 15 347 15 Turbulence 0.167 0.435 0.617 0.794 0.837 0.934 2 39 0.08 null sphere 191 19 384 19 CrissCross 0.064 0.43 0.941 0.143 0.363 0.896 0.97 0.816 0.49 5 148 0.65 null sphere 209 23 437 23 Glass 2.895 150 null sphere 203 15 521 15 Checkerboard 0.983 0.24 0.118 0.126 0.603 0.013 2 64 0.35 NormalMap 8.04 0.535 sphere 188 16 536 16 ShinyColor 0.2 0.927 0.594 64 0.35 null sphere 212 25 588 25 CrissCross 0.019 0.601 0.385 0.115 0.019 0.889 0.461 0.421 0.317 14 91 0.35 null sphere 189 21 656 21 ShinyColor 0.818 0.036 0.529 122 0.69 null sphere 202 24 739 24 CrissCross 0.504 0.212 0.778 0.821 0.886 0.377 0.327 0.569 0.007 1 29 0.16 NormalMap 5.9 0.06125 sphere 209 24 773 24 Turbulence 0.197 0.655 0.516 0.833 0.993 0.131 12 54 0.45 null sphere 198 22 851 22 CrissCross 0.726 0.795 0.165 0.55 0.654 0.341 0.979 0.236 0.258 6 67 0.64 null sphere 209 25 904 25 Turbulence 0.328 0.89 0.787 0.58 0.403 0.604 1 24 0.4 null sphere 201 18 967 18 Marble 0.254 0.313 0.533 0.159 0.226 0.383 9 117 0.02 null sphere 271 21 -1003 21 Glass 3.73 104 NormalMap 9.76 1.21375 sphere 249 21 -922 21 Turbulence 0.078 0.411 0.327 0.305 0.794 0.742 2 124 0.38 null sphere 245 19 -882 19 Checkerboard 0.559 0.336 0.75 0.741 0.824 0.72 11 61 0.67 NormalMap 6.2 0.90125 sphere 266 20 -837 20 Checkerboard 0.214 0.546 0.184 0.036 0.086 0.042 5 49 0.32 NormalMap 12.68 0.06875 sphere 254 17 -793 17 CrissCross 0.585 0.92 0.548 0.594 0.397 0.348 0.014 0.201 0.453 5 113 0.45 NormalMap 16.68 0.85 sphere 246 16 -719 16 Checkerboard 0.221 0.975 0.591 0.373 0.909 0.806 5 56 0.29 NormalMap 18.94 0.42 sphere 264 20 -659 20 CrissCross 0.048 0.514 0.739 0.532 0.662 0.884 0.351 0.444 0.083 12 64 0.47 null sphere 263 17 -607 17 Glass 4.42 28 null sphere 250 24 -559 24 Turbulence 0.072 0.094 0.758 0.956 0.446 0.201 1 5 0.43 null sphere 246 17 -482 17 ShinyColor 0.417 0.268 0.325 47 0.31 NormalMap 3.06 0.215 sphere 263 19 -434 19 Marble 0.626 0.787 0.789 0.827 0.827 0.807 9 83 0.54 NormalMap 14.72 1.15625 sphere 252 24 -407 24 ShinyColor 0.642 0.737 0.445 120 0.64 null sphere 272 19 -327 19 Glass 4.515 91 null sphere 247 23 -271 23 CrissCross 0.818 0.889 0.682 0.46 0.626 0.127 0.253 0.535 0.764 10 22 0.12 NormalMap 19.52 0.5625 sphere 252 16 -222 16 ShinyColor 0.082 0.282 0.919 41 0.17 NormalMap 16.54 1.18375 sphere 256 19 -160 19 Checkerboard 0.225 0.935 0.284 0.478 0.47 0.047 20 91 0.15 NormalMap 11.52 0.83875 sphere 242 23 -107 23 Checkerboard 0.805 0.794 0.364 0.051 0.265 0.19 20 34 0.43 NormalMap 19.56 1.15 sphere 268 17 -32 17 CrissCross 0.035 0.5 0.854 0.701 0.237 0.878 0.224 0.112 0.984 1 137 0.24 NormalMap 3.44 0.6725 sphere 246 19 -2 19 Checkerboard 0.18 0.563 0.922 0.094 0.244 0.244 2 132 0.11 NormalMap 18.26 0.83625 sphere 270 21 54 21 Checkerboard 0.955 0.867 0.926 0.302 0.947 0.096 17 6 0.34 null sphere 265 15 103 15 Turbulence 0.908 0.526 0.389 0.146 0.438 0.057 5 10 0.68 NormalMap 17.78 1.2275 sphere 270 23 146 23 Checkerboard 0.306 0.727 0.484 0.293 0.303 0.325 7 11 0.51 NormalMap 18.24 0.47375 sphere 270 24 220 24 Turbulence 0.394 0.955 0.415 0.283 0.937 0.58 1 127 0.03 null sphere 252 20 268 20 Marble 0.317 0.742 0.767 0.863 0.56 0.672 16 80 0.01 null sphere 246 23 322 23 CrissCross 0.37 0.124 0.939 0.702 0.77 0.709 0.358 0.764 0.539 15 14 0.19 null sphere 264 17 381 17 Glass 3.04 42 NormalMap 6 1.18375 sphere 256 15 460 15 CrissCross 0.148 0.899 0.402 0.688 0.645 0.483 0.969 0.157 0.425 17 53 0.11 NormalMap 10.82 0.86375 sphere 271 16 497 16 Marble 0.234 0.98 0.211 0.102 0.419 0.752 15 87 0.46 NormalMap 5.12 0.3675 sphere 256 17 538 17 ShinyColor 0.794 0.215 0.211 52 0.64 NormalMap 9.66 1.08125 sphere 265 25 591 25 Checkerboard 0.732 0.39 0.354 0.835 0.81 0.105 12 58 0.53 null sphere 268 18 639 18 Marble 0.63 0.516 0.592 0.113 0.38 0.598 1 25 0.06 NormalMap 5.84 1.03375 sphere 262 22 708 22 Glass 2.54 144 null sphere 243 20 761 20 CrissCross 0.112 0.099 0.199 0.711 0.143 0.348 0.806 0.597 0.64 13 68 0.2 NormalMap 1.9 0.04625 sphere 258 16 812 16 Checkerboard 0.783 0.314 0.162 0.475 0.731 0.518 16 40 0.35 null sphere 244 23 875 23 ShinyColor 0.882 0.343 0.785 79 0.55 NormalMap 16.16 1.1 sphere 242 18 920 18 Marble 0.918 0.08 0.842 0.436 0.859 0.093 19 70 0.32 null sphere 254 18 967 18 Checkerboard 0.928 0.417 0.251 0.736 0.296 0.36 2 47 0 null sphere 317 17 -988 17 ShinyColor 0.122 0.438 0.143 12 0.63 null sphere 323 16 -946 16 CrissCross 0.21 0.24 0.333 0.283 0.542 0.346 0.177 0.64 0.115 14 128 0.56 NormalMap 18 1.15625 sphere 326 15 -886 15 Marble 0.276 0.324 0.015 0.999 0.799 0.96 20 4 0.14 NormalMap 5.86 0.92875 sphere 307 20 -826 20 ShinyColor 0.232 0.569 0.404 22 0.35 NormalMap 3.5 0.60125 sphere 298 23 -775 23 CrissCross 0.718 0.539 0.671 0.727 0.739 0.976 0.019 0.481 0.628 10 130 0.28 null sphere 303 15 -702 15 ShinyColor 0.402 0.94 0.831 35 0 NormalMap 16.32 0.72125 sphere 300 23 -632 23 Turbulence 0.433 0.3 0.199 0.915 0.928 0.688 16 50 0.23 null sphere 319 16 -582 16 CrissCross 0.541 0.274 0.546 0.276 0.43 0.2 0.729 0.124 0.524 19 85 0.58 NormalMap 9.46 0.94 sphere 298 17 -533 17 ShinyColor 0.36 0.486 0.231 18 0.7 null sphere 310 20 -460 20 ShinyColor 0.758 0.466 0.28 30 0.47 NormalMap 6.26 0.2375 sphere 296 24 -420 24 CrissCross 0.723 0.2 0.424 0.954 0.304 0.416 0.691 0.09 0.746 4 88 0.47 NormalMap 6.66 0.16375 sphere 320 20 -349 20 Marble 0.384 0.045 0.77 0.203 0.64 0.61 3 56 0.57 null sphere 296 25 -311 25 Checkerboard 0.78 0.393 0.317 0.112 0.525 0.755 13 50 0.14 NormalMap 6.22 0.70125 sphere 325 18 -260 18 ShinyColor 0.148 0.853 0.692 45 0.15 null sphere 322 21 -195 21 CrissCross 0.716 0.485 0.772 0.348 0.808 0.971 0.813 0.118 0.532 20 66 0.33 NormalMap 10.28 0.7825 sphere 324 17 -159 17 Turbulence 0.612 0.332 0.149 0.178 0.031 0.753 3 10 0.33 null sphere 320 19 -86 19 CrissCross 0.495 0.426 0.845 0.701 0.342 0.105 0.41 0.114 0.898 15 110 0.16 null sphere 297 22 -48 22 ShinyColor 0.667 0.128 0.922 17 0.65 null sphere 315 16 -5 16 Checkerboard 0.468 0.804 0.826 0.81 0.909 0.235 19 122 0.68 null sphere 305 21 71 21 Turbulence 0.732 0.521 0.362 0.651 0.07 0.01 18 36 0.45 null sphere 326 19 139 19 Turbulence 0.704 0.798 0.787 0.738 0.655 0.34 1 25 0.66 null sphere 304 19 184 19 ShinyColor 0.34 0.573 0.911 87 0.15 null sphere 319 17 253 17 Marble 0.195 0.384 0.087 0.85 0.724 0.119 20 100 0.53 null sphere 309 15 282 15 Glass 4.635 34 null sphere 309 16 343 16 Checkerboard 0.157 0.204 0.423 0.352 0.588 0.511 5 49 0.44 NormalMap 19.46 0.4825 sphere 311 24 414 24 Turbulence 0.701 0.248 0.465 0.597 0.931 0.655 15 56 0.29 NormalMap 8.68 0.71375 sphere 324 24 451 24 Checkerboard 0.453 0.998 0.325 0.426 0.384 0.273 6 135 0.16 null sphere 303 23 534 23 CrissCross 0.306 0.931 0.531 0.878 0.484 0.387 0.801 0.625 0.755 19 14 0.53 NormalMap 10.1 0.17 sphere 296 23 592 23 Turbulence 0.812 0.13 0.291 0.651 0.869 0.182 5 145 0.34 NormalMap 9.94 0.45625 sphere 301 24 640 24 Checkerboard 0.349 0.391 0.343 0.854 0.527 0.868 13 85 0.44 null sphere 325 25 707 25 CrissCross 0.916 0.984 0.414 0.281 0.63 0.298 0.447 0.902 0.937 11 40 0.23 null sphere 318 23 788 23 Turbulence 0.575 0.473 0.417 0.821 0.06 0.369 5 133 0.2 NormalMap 17.3 0.8775 sphere 296 20 860 20 Marble 0.312 0.75 0.118 0.061 0.471 0.528 9 16 0.04 null sphere 311 17 908 17 CrissCross 0.551 0.345 0.837 0.551 0.236 0.232 0.488 0.667 0.879 16 147 0.44 null sphere 310 19 936 19 Marble 0.347 0.591 0.007 0.082 0.068 0.856 20 63 0.28 NormalMap 4.96 1.1975 sphere 357 19 -994 19 Turbulence 0.251 0.086 0.465 0.732 0.277 0.925 20 23 0.65 NormalMap 9.68 0.63875 sphere 367 21 -943 21 Marble 0.661 0.44 0.719 0.106 0.671 0.077 7 133 0.04 NormalMap 2.66 0.1875 sphere 363 24 -862 24 Turbulence 0.047 0.192 0.727 0.614 0.772 0.023 4 115 0.51 NormalMap 0.04 0.485 sphere 365 22 -822 22 Glass 4.315 28 NormalMap 0.28 0.00625 sphere 373 19 -755 19 ShinyColor 0.447 0.165 0.054 97 0.63 null sphere 355 24 -696 24 Checkerboard 0.03 0.344 0.896 0.525 0.493 0.694 7 80 0.39 NormalMap 13.72 0.7125 sphere 350 22 -647 22 Checkerboard 0.713 0.758 0.071 0.352 0.65 0.74 16 86 0.4 null sphere 357 16 -575 16 ShinyColor 0.764 0.274 0.703 15 0.56 NormalMap 11.64 0.60375 sphere 356 15 -511 15 Turbulence 0.546 0.93 0.413 0.196 0.669 0.176 16 38 0.08 null sphere 364 17 -487 17 Turbulence 0.526 0.198 0.643 0.008 0.026 0.724 5 131 0.05 null sphere 370 20 -436 20 CrissCross 0.466 0.234 0.061 0.676 0.69 0.297 0.649 0.419 0.235 15 142 0.3 NormalMap 19.08 0.575 sphere 360 16 -404 16 ShinyColor 0.05 0.28 0.69 107 0.58 NormalMap 0.5 0.68125 sphere 361 21 -332 21 Glass 2.54 112 null sphere 377 19 -261 19 CrissCross 0 0.135 0.242 0.281 0.826 0.946 0.105 0.25 0.97 14 28 0.39 NormalMap 11.18 0.465 sphere 377 21 -213 21 Glass 3.78 103 null sphere 361 19 -147 19 CrissCross 0.833 0.771 0.7 0.802 0.421 0.871 0.356 0.451 0.428 15 139 0.03 null sphere 359 19 -106 19 ShinyColor 0.898 0.669 0.598 54 0.03 NormalMap 19.92 0.545 sphere 353 24 -45 24 Marble 0.729 0.874 0.745 0.157 0.601 0.667 5 34 0.56 null sphere 372 22 0 22 Marble 0.351 0.882 0.111 0.234 0.984 0.271 19 129 0.09 NormalMap 2.98 1.0725 sphere 350 24 82 24 Glass 1.79 122 null sphere 364 20 142 20 Turbulence 0.179 0.257 0.323 0.414 0.24 0.594 8 17 0.51 null sphere 354 16 190 16 ShinyColor 0.699 0.818 0.263 11 0.44 NormalMap 10.48 0.2025 sphere 352 25 235 25 Turbulence 0.723 0.879 0.416 0.964 0.472 0.779 2 31 0.43 NormalMap 15.56 0.975 sphere 377 19 288 19 Checkerboard 0.199 0.819 0.194 0.723 0.981 0.728 15 13 0.05 null sphere 358 20 358 20 Marble 0.172 0.346 0.588 0.95 0.126 0.03 7 5 0.12 null sphere 361 18 397 18 Checkerboard 0.813 0.385 0.168 0.353 0.924 0.794 18 30 0.21 null sphere 371 21 455 21 Turbulence 0.309 0.719 0.082 0.482 0.233 0.257 18 86 0.44 null sphere 358 23 532 23 ShinyColor 0.189 0.686 0.009 58 0.69 null sphere 364 19 578 19 Glass 2.265 11 null sphere 374 15 625 15 Marble 0.107 0.763 0.032 0.221 0.952 0.718 5 50 0.49 NormalMap 2.1 1.19875 sphere 370 21 693 21 CrissCross 0.929 0.627 0.713 0.325 0.243 0.13 0.671 0.74 0.271 16 77 0.21 NormalMap 9.08 0.0275 sphere 372 23 724 23 Marble 0.806 0.784 0.104 0.192 0.169 0.681 3 17 0.21 null sphere 352 25 782 25 CrissCross 0.555 0.106 0.022 0.278 0.431 0.904 0.961 0.302 0.36 7 18 0.1 NormalMap 6 0.39125 sphere 362 19 835 19 Turbulence 0.932 0.239 0.424 0.806 0.031 0.957 14 43 0.36 null sphere 356 17 909 17 Glass 3.135 107 NormalMap 18.54 0.02375 sphere 363 18 970 18 Marble 0.138 0.199 0.004 0.169 0.155 0.685 9 101 0.33 null sphere 423 17 -990 17 Glass 3.615 115 NormalMap 5.52 0.125 sphere 438 17 -919 17 ShinyColor 0.454 0.129 0.263 99 0.09 NormalMap 16.18 1.025 sphere 426 20 -864 20 Turbulence 0.187 0.074 0.395 0.022 0.287 0.117 16 79 0.27 null sphere 420 21 -801 21 ShinyColor 0.242 0.006 0.669 58 0.31 NormalMap 3.94 0.39625 sphere 446 20 -727 20 Glass 3.27 88 NormalMap 13.5 1.08625 sphere 429 20 -669 20 CrissCross 0.92 0.925 0.29 0.589 0.301 0.73 0.066 0.498 0.046 1 148 0.69 null sphere 420 25 -639 25 Marble 0.329 0.789 0.577 0.899 0.33 0.48 12 93 0.28 null sphere 436 23 -565 23 Glass 1.445 101 null sphere 443 24 -510 24 Glass 0.475 129 null sphere 423 19 -431 19 CrissCross 0.293 0.365 0.354 0.597 0.045 0.427 0.886 0.711 0.401 13 131 0.21 NormalMap 2.04 0.6575 sphere 436 18 -387 18 Turbulence 0.718 0.281 0.158 0.546 0.592 0.645 6 134 0.66 null sphere 437 22 -348 22 Checkerboard 0.044 0.268 0.369 0.509 0.369 0.896 12 98 0.36 null sphere 435 24 -295 24 Marble 0.563 0.663 0.339 0.205 0.908 0.875 18 88 0.2 NormalMap 13.06 0.42375 sphere 443 15 -227 15 CrissCross 0.456 0.869 0.593 0.195 0.048 0.349 0.481 0.821 0.751 1 74 0.06 NormalMap 7.84 1.2075 sphere 425 25 -201 25 Marble 0.925 0.564 0.89 0.499 0.999 0.86 10 70 0.51 NormalMap 13 0.97125 sphere 435 16 -150 16 Checkerboard 0.278 0.422 0.473 0.243 0.563 0.444 11 150 0.04 NormalMap 19.82 0.8925 sphere 425 25 -88 25 CrissCross 0.995 0.38 0.807 0.431 0.511 0.405 0.619 0.685 0.486 18 18 0.68 NormalMap 13.4 0.50375 sphere 431 22 -13 22 Checkerboard 0.301 0.571 0.464 0.744 0.986 0.74 1 135 0.33 NormalMap 17.78 1.065 sphere 428 18 41 18 Checkerboard 0.774 0.835 0.153 0.733 0.975 0.823 3 94 0.34 null sphere 437 23 99 23 Marble 0.594 0.468 0.534 0.482 0.319 0.417 17 103 0.5 null sphere 444 21 141 21 Turbulence 0.193 0.956 0.533 0.338 0.749 0.2 2 3 0.43 null sphere 431 18 198 18 Glass 3.16 72 null sphere 446 17 227 17 CrissCross 0.724 0.192 0.321 0.473 0.393 0.374 0.478 0.005 0.128 10 14 0.33 null sphere 438 23 301 23 CrissCross 0.501 0.058 0.745 0.291 0.827 0.404 0.275 0.55 0.596 12 6 0.7 null sphere 447 16 347 16 CrissCross 0.817 0.89 0.892 0.124 0.305 0.531 0.376 0.806 0.59 3 17 0.29 null sphere 447 16 441 16 ShinyColor 0.939 0.489 0.106 8 0.33 NormalMap 12.26 0.505 sphere 419 20 488 20 Marble 0.815 0.81 0.079 0.404 0.931 0.176 17 70 0.38 null sphere 438 23 546 23 CrissCross 0.135 0.908 0.599 0.214 0.299 0.908 0.182 0.582 0.341 10 61 0.1 null sphere 436 22 595 22 Glass 3.885 29 null sphere 439 21 640 21 Marble 0.522 0.786 0.339 0.704 0.368 0.681 4 116 0.59 null sphere 422 19 718 19 CrissCross 0.676 0.207 0.983 0.402 0.378 0.562 0.234 0.686 0.048 14 33 0.59 NormalMap 18.24 0.25375 sphere 447 15 780 15 Turbulence 0.719 0.883 0.84 0.309 0.452 0.282 2 125 0.68 NormalMap 16.26 0.45 sphere 435 19 830 19 Turbulence 0.264 0.466 0.462 0.95 0.538 0.431 10 47 0.68 null sphere 426 23 910 23 Glass 0.305 85 NormalMap 17.48 1.14625 sphere 432 17 936 17 Marble 0.383 0.392 0.985 0.921 0.823 0.451 5 119 0.24 null sphere 431 15 978 15 Turbulence 0.884 0.289 0.087 0.898 0.537 0.598 6 33 0.26 NormalMap 2.78 0.50625 sphere 483 19 -995 19 Glass 0.94 62 null sphere 489 15 -951 15 Checkerboard 0.203 0.488 0.371 0.29 0.385 0.908 18 98 0.08 NormalMap 16.42 0.3175 sphere 493 19 -895 19 Checkerboard 0.893 0.56 0.278 0.079 0.963 0.889 8 59 0.68 NormalMap 8.3 0.70875 sphere 470 21 -836 21 Marble 0.536 0.052 0.905 0.791 0.715 0.283 12 116 0.1 null sphere 491 25 -768 25 Checkerboard 0.045 0.842 0.189 0.46 0.408 0.33 2 71 0.59 null sphere 499 23 -710 23 Marble 0.164 0.313 0.318 0.878 0.974 0.018 18 108 0.48 null sphere 470 21 -663 21 Marble 0.249 0.364 0.468 0.028 0.353 0.266 18 39 0.6 NormalMap 8.46 0.02375 sphere 496 23 -584 23 CrissCross 0.169 0.104 0.284 0.357 0.102 0.647 0.622 0.564 0.853 18 140 0.22 null sphere 485 23 -530 23 CrissCross 0.583 0.45 0.125 0.991 0.892 0.64 0.241 0.06 0.745 11 64 0.6 NormalMap 0.8 0.51375 sphere 479 25 -488 25 Marble 0.373 0.741 0.099 0.835 0.629 0.791 4 34 0.17 NormalMap 4.06 0.16375 sphere 474 19 -403 19 Turbulence 0.65 0.963 0.164 0.561 0.302 0.509 8 139 0.31 null sphere 474 22 -340 22 Marble 0.161 0.73 0.333 0.121 0.173 0.526 17 23 0.09 NormalMap 5.64 0.9825 sphere 479 19 -288 19 CrissCross 0.206 0.348 0.807 0.855 0.663 0.768 0.696 0.19 0.97 18 139 0.21 null sphere 476 23 -213 23 CrissCross 0.16 0.916 0.818 0.724 0.31 0.481 0.359 0.517 0.83 4 57 0.34 null sphere 497 24 -160 24 Turbulence 0.709 0.929 0.001 0.89 0.444 0.754 9 62 0.6 null sphere 488 18 -109 18 Checkerboard 0.98 0.819 0.518 0.472 0.753 0.585 4 100 0.36 null sphere 496 19 -58 19 Glass 4.115 99 NormalMap 4.56 0.63375 sphere 474 21 16 21 Turbulence 0.304 0.757 0.845 0.776 0.509 0.429 19 27 0.66 null sphere 497 16 75 16 Marble 0.913 0.566 0.993 0.905 0.114 0.168 4 46 0.35 NormalMap 12.4 0.99625 sphere 486 20 136 20 Marble 0.59 0.186 0.325 0.519 0.663 0.841 8 25 0.12 null sphere 499 24 213 24 Checkerboard 0.151 0.49 0.289 0.771 0.287 0.175 5 130 0.4 NormalMap 7.26 0.16375 sphere 491 21 264 21 CrissCross 0.896 0.427 0.028 0.639 0.256 0.999 0.497 0.253 0.159 13 112 0.31 NormalMap 0.6 0.78 sphere 475 24 345 24 Marble 0.886 0.681 0.289 0.696 0.398 0.881 14 46 0.21 null sphere 482 22 408 22 Checkerboard 0.56 0.293 0.496 0.59 0.917 0.148 10 19 0.65 null sphere 484 20 463 20 Glass 3.075 100 null sphere 495 21 532 21 Turbulence 0.348 0.907 0.414 0.844 0.496 0.331 20 147 0.31 null sphere 476 21 595 21 ShinyColor 0.459 0.146 0.386 13 0.57 NormalMap 19.66 0.9625 sphere 478 24 657 24 ShinyColor 0.647 0.284 0.442 84 0.49 NormalMap 1 0.0375 sphere 483 15 712 15 CrissCross 0.432 0.872 0.307 0.505 0.676 0.6 0.487 0.446 0.485 7 113 0.46 NormalMap 7.86 1.16625 sphere 488 25 771 25 Turbulence 0.134 0.606 0.75 0.49 0.388 0.723 5 48 0.1 NormalMap 12.34 0.82625 sphere 473 17 842 17 CrissCross 0.283 0.709 0.293 0.915 0.84 0.288 0.576 0.249 0.308 15 129 0.04 NormalMap 4.86 0.9775 sphere 498 21 902 21 CrissCross 0.087 0.203 0.426 0.438 0.065 0.774 0.721 0.774 0.066 13 93 0.25 NormalMap 17.28 0.82875 sphere 491 22 959 22 Marble 0.037 0.681 0.035 0.302 0.066 0.781 16 25 0.69 NormalMap 11.84 0.06 sphere 523 24 -976 24 Glass 1.505 11 NormalMap 0.38 0.975 sphere 530 25 -932 25 Turbulence 0.758 0.075 0.239 0.538 0.849 0.393 11 10 0.69 null sphere 523 19 -892 19 Turbulence 0.517 0.48 0.148 0.297 0.68 0.127 12 64 0.43 NormalMap 3.78 0.99 sphere 522 17 -839 17 ShinyColor 0.424 0.119 0.161 63 0.48 NormalMap 14.1 0.10375 sphere 550 25 -790 25 Checkerboard 0.223 0.831 0.193 0.52 0.511 0.32 2 140 0.66 NormalMap 2.3 0.915 sphere 545 19 -750 19 Checkerboard 0.177 0.652 0.595 0.867 0.836 0.3 20 15 0.17 null sphere 522 24 -680 24 ShinyColor 0.534 0.941 0.421 96 0.61 NormalMap 0.7 1.22625 sphere 533 20 -619 20 Glass 3.65 76 null sphere 538 25 -582 25 Glass 3.93 50 NormalMap 4.32 0.52375 sphere 548 16 -514 16 ShinyColor 0.201 0.424 0.002 46 0.65 NormalMap 3.04 0.58875 sphere 528 17 -461 17 Glass 3.87 53 NormalMap 19.22 0.94375 sphere 524 23 -397 23 Turbulence 0.332 0.04 0.14 0.534 0.464 0.143 17 59 0.35 null sphere 523 16 -346 16 ShinyColor 0.852 0.468 0.785 32 0.66 null sphere 522 20 -289 20 Glass 2.87 128 NormalMap 14.28 0.47625 sphere 528 24 -242 24 Checkerboard 0.892 0.076 0.367 0.947 0.5 0.379 16 146 0.11 null sphere 537 25 -159 25 Checkerboard 0.857 0.484 0.153 0.429 0.33 0.344 3 108 0 NormalMap 18.44 0.0475 sphere 550 16 -101 16 CrissCross 0.021 0.668 0.805 0.931 0.613 0.307 0.332 0.581 0.31 4 12 0.32 null sphere 525 23 -28 23 Checkerboard 0.846 0.124 0.139 0.776 0.564 0.619 14 77 0.33 NormalMap 8.2 0.62125 sphere 535 17 38 17 Glass 4.165 143 NormalMap 5.92 0.7075 sphere 532 16 100 16 Checkerboard 0.783 0.757 0.212 0.923 0.533 0.777 11 30 0.19 NormalMap 10.18 0.8625 sphere 550 20 158 20 ShinyColor 0.427 0.703 0.295 41 0.46 null sphere 542 17 193 17 Marble 0.843 0.654 0.859 0.62 0.195 0.043 19 34 0.39 null sphere 542 20 222 20 Turbulence 0.023 0.003 0.738 0.239 0.197 0.396 16 24 0.68 NormalMap 17.58 0.365 sphere 526 20 293 20 Checkerboard 0.776 0.941 0.746 0.366 0.668 0.8 18 53 0.68 null sphere 544 25 333 25 Turbulence 0.755 0.765 0.065 0.168 0.644 0.357 9 29 0.36 NormalMap 18.12 0.87875 sphere 535 24 382 24 Marble 0.086 0.563 0.627 0.052 0.296 0.046 16 42 0.47 null sphere 527 25 429 25 Glass 3.935 138 NormalMap 9.78 1.2375 sphere 535 25 489 25 CrissCross 0.022 0.872 0.227 0.069 0.627 0.496 0.734 0.483 0.52 4 62 0.5 NormalMap 13.62 0.40875 sphere 529 20 554 20 CrissCross 0.079 0.396 0.527 0.475 0.214 0.458 0.497 0.085 0.685 12 108 0.12 NormalMap 3.92 0.87625 sphere 534 21 611 21 Glass 3.735 148 null sphere 540 20 666 20 Turbulence 0.15 0.487 0.612 0.647 0.573 0.296 5 45 0.33 null sphere 524 25 704 25 Marble 0.311 0.687 0.809 0.525 0.156 0.404 9 118 0.05 null sphere 539 16 766 16 Glass 0.1 51 null sphere 539 21 793 21 Turbulence 0.045 0.732 0.799 0.854 0.257 0.955 6 100 0.52 NormalMap 6.68 0.84625 sphere 529 20 863 20 Checkerboard 0.533 0.247 0.399 0.135 0.748 0.901 15 51 0.7 null sphere 531 15 907 15 Checkerboard 0.403 0.832 0.425 0.062 0.57 0.763 8 39 0.23 null sphere 538 16 971 16 Turbulence 0.848 0.156 0.442 0.84 0.122 0.71 6 32 0.01 NormalMap 1.54 0.23875 sphere 612 21 -991 21 Marble 0.197 0.482 0.267 0.745 0.789 0.633 14 37 0.52 null sphere 601 19 -930 19 Turbulence 0.787 0.112 0.833 0.695 0.728 0.697 4 18 0.67 null sphere 595 16 -902 16 Checkerboard 0.005 0.53 0.318 0.751 0.069 0.706 19 69 0.15 null sphere 589 23 -827 23 CrissCross 0.705 0.596 0.475 0.52 0.702 0.569 0.818 0.073 0.407 19 14 0.66 NormalMap 16.62 0.0075 sphere 600 23 -774 23 Glass 1.82 98 null sphere 611 17 -709 17 Turbulence 0.055 0.53 0.812 0.874 0.604 0.218 16 104 0.11 NormalMap 10.28 0.2025 sphere 605 18 -649 18 Checkerboard 0.14 0.251 0.802 0.922 0.484 0.393 3 49 0.44 null sphere 614 16 -568 16 Turbulence 0.555 0.271 0.306 0.556 0.785 0.468 10 12 0.06 null sphere 592 22 -553 22 Marble 0.059 0.605 0.854 0.514 0.725 0.758 10 100 0.37 NormalMap 16.14 0.1125 sphere 606 16 -496 16 Checkerboard 0.211 0.666 0.686 0.166 0.906 0.382 8 143 0 NormalMap 7.62 0.91125 sphere 596 19 -433 19 Checkerboard 0.678 0.453 0.716 0.213 0.54 0.522 7 136 0.45 null sphere 593 15 -387 15 Turbulence 0.794 0.732 0.148 0.857 0.112 0.878 19 84 0.15 null sphere 615 20 -340 20 Turbulence 0.399 0.143 0.987 0.442 0.357 0.065 14 38 0.58 NormalMap 0.46 1.22375 sphere 589 23 -279 23 Checkerboard 0.691 0.419 0.216 0.535 0.925 0.488 2 133 0.33 null sphere 610 24 -226 24 CrissCross 0.712 0.037 0.745 0.691 0.949 0.5 0.817 0.716 0.366 17 63 0.55 NormalMap 18.86 0.8875 sphere 604 25 -168 25 CrissCross 0.435 0.985 0.598 0.317 0.906 0.32 0.029 0.944 0.065 15 134 0.4 null sphere 586 18 -72 18 CrissCross 0.923 0.747 0 0.909 0.366 0.761 0.022 0.801 0.746 13 20 0.46 null sphere 612 15 -22 15 Glass 2.52 115 NormalMap 4.42 0.195 sphere 588 22 1 22 Checkerboard 0.769 0.67 0.91 0.134 0.431 0.932 19 29 0.39 NormalMap 16.56 0.61625 sphere 601 19 52 19 Checkerboard 0.469 0.003 0.575 0.229 0.112 0.796 8 29 0.31 NormalMap 4.04 0.14 sphere 610 25 115 25 ShinyColor 0.213 0.306 0.039 60 0.6 NormalMap 4.36 0.43875 sphere 612 22 170 22 Marble 0.057 0.665 0.291 0.443 0.844 0.735 19 9 0.6 NormalMap 0.3 0.7875 sphere 612 16 225 16 ShinyColor 0.233 0.911 0.25 69 0.18 null sphere 605 24 266 24 Checkerboard 0.53 0.787 0.858 0.822 0.23 0.702 12 23 0.52 NormalMap 10.2 0.95125 sphere 613 17 338 17 Checkerboard 0.109 0.22 0.288 0.56 0.482 0.832 14 91 0.52 NormalMap 12.6 0.5775 sphere 593 16 374 16 Glass 2.69 94 null sphere 616 21 416 21 CrissCross 0.757 0.519 0.394 0.589 0.169 0.99 0.321 0.461 0.618 16 142 0.55 NormalMap 5.76 0.94875 sphere 595 18 465 18 ShinyColor 0.237 0.253 0.671 34 0.45 NormalMap 1.22 0.40875 sphere 593 15 528 15 CrissCross 0.169 0.241 0.021 0.114 0.018 0.053 0.401 0.778 0.564 15 13 0.49 null sphere 602 20 599 20 Turbulence 0.601 0.146 0.523 0.139 0.78 0.439 17 62 0.48 NormalMap 12.88 0.8725 sphere 609 22 643 22 Marble 0.117 0.826 0.951 0.641 0.346 0.531 6 140 0.31 NormalMap 10.6 0.73125 sphere 597 22 712 22 Glass 2.665 63 null sphere 592 21 760 21 Glass 4.34 88 null sphere 596 17 808 17 ShinyColor 0.787 0.945 0.659 58 0.65 NormalMap 14.74 0.43875 sphere 599 20 868 20 Glass 4.96 120 NormalMap 10.14 0.82125 sphere 602 20 927 20 CrissCross 0.723 0.479 0.918 0.382 0.852 0.846 0.71 0.588 0.197 12 16 0.46 null sphere 677 15 -999 15 Turbulence 0.874 0.167 0.433 0.217 0.657 0.026 19 96 0.53 NormalMap 10.94 0.1625 sphere 682 19 -937 19 Turbulence 0.323 0.931 0.133 0.29 0.931 0.825 10 67 0.12 NormalMap 9.6 0.0575 sphere 664 25 -899 25 Checkerboard 0.842 0.688 0.562 0.388 0.819 0.803 16 100 0.44 NormalMap 1.06 0.69 sphere 670 19 -819 19 Turbulence 0.85 0.74 0.547 0.329 0.787 0.102 5 10 0.22 NormalMap 4.48 0.19625 sphere 672 23 -754 23 Turbulence 0.697 0.399 0.77 0.304 0.775 0.251 1 68 0.47 null sphere 660 18 -690 18 ShinyColor 0.248 0.085 0.188 86 0.18 NormalMap 14.44 0.1675 sphere 681 17 -647 17 Checkerboard 0.002 0.291 0.567 0.773 0.595 0.342 1 97 0.55 null sphere 674 17 -605 17 ShinyColor 0.743 0.776 0.13 140 0.24 NormalMap 6.86 0.0775 sphere 666 20 -557 20 Turbulence 0.215 0.087 0.099 0.81 0.429 0.123 10 34 0.57 null sphere 659 18 -524 18 ShinyColor 0.898 0.189 0.982 38 0.41 NormalMap 6.02 0.14625 sphere 670 21 -455 21 Marble 0.615 0.58 0.507 0.738 0.03 0.719 11 111 0.22 null sphere 658 21 -395 21 Checkerboard 0.571 0.397 0.399 0.871 0.515 0.264 11 148 0.32 NormalMap 19.5 1.21125 sphere 674 15 -327 15 Turbulence 0.87 0.169 0.592 0.433 0.211 0.026 2 48 0.25 null sphere 680 17 -252 17 Checkerboard 0.302 0.763 0.495 0.357 0.738 0.463 4 119 0.03 null sphere 675 15 -220 15 Marble 0.724 0.708 0.608 0.59 0.086 0.538 18 131 0.24 null sphere 668 19 -142 19 ShinyColor 0.867 0.181 0.922 138 0.54 NormalMap 5.6 0.99 sphere 686 20 -102 20 Marble 0.981 0.499 0.181 0.518 0.351 0.046 18 148 0.67 NormalMap 7.52 0.4475 sphere 662 20 -28 20 Checkerboard 0.449 0.701 0.416 0.24 0.603 0.933 5 110 0.08 null sphere 658 22 9 22 Marble 0.859 0.888 0.954 0.234 0.246 0.452 15 72 0.09 NormalMap 12.14 0.72625 sphere 681 15 76 15 Checkerboard 0.199 0.072 0.655 0.297 0.099 0.36 8 95 0.17 null sphere 667 19 106 19 Marble 0.784 0.964 0.506 0.391 0.544 0.376 9 56 0.6 NormalMap 8.2 0.06125 sphere 666 15 173 15 Glass 3.36 105 null sphere 684 15 212 15 Marble 0.297 0.462 0.408 0.841 0.839 0.823 5 105 0.13 null sphere 658 22 257 22 ShinyColor 0.81 0.343 0.776 77 0 null sphere 659 21 317 21 CrissCross 0.206 0.6 0.918 0.029 0.805 0.607 0.221 0.42 0.346 18 17 0.3 NormalMap 4.1 0.3025 sphere 679 25 361 25 Turbulence 0.502 0.084 0.936 0.965 0.701 0.734 15 118 0.66 NormalMap 13.96 1.2125 sphere 661 18 416 18 Checkerboard 0.647 0.084 0.079 0.852 0.326 0.455 17 13 0.59 NormalMap 8.98 0.33125 sphere 666 25 473 25 Checkerboard 0.264 0.638 0.83 0.204 0.96 0.527 4 15 0.59 NormalMap 12.7 0.60375 sphere 673 18 530 18 ShinyColor 0.894 0.947 0.966 146 0.55 NormalMap 8.34 0.06625 sphere 668 19 571 19 Marble 1 0.88 0.811 0.174 0.968 0.643 11 92 0.08 null sphere 656 19 634 19 Turbulence 0.389 0.971 0.231 0.389 0.338 0.635 19 94 0.06 null sphere 669 22 672 22 CrissCross 0.38 0.874 0.645 0.824 0.892 0.231 0.213 0.875 0.786 8 41 0.53 null sphere 673 17 735 17 Marble 0.674 0.899 0.894 0.061 0.725 0.322 2 103 0.49 null sphere 673 23 789 23 Glass 4.77 16 null sphere 661 15 844 15 Glass 0.34 72 null sphere 677 24 885 24 CrissCross 0.683 0.241 0.651 0.373 0.579 0.78 0.327 0.673 0.531 19 130 0.38 NormalMap 15.22 1.1125 sphere 685 25 927 25 CrissCross 0.578 0.983 0.486 0.445 0.672 0.399 0.128 0.913 0.05 11 75 0.58 null sphere 752 15 -978 15 CrissCross 0.445 0.669 0.915 0.08 0.284 0.013 0.659 0.267 0.5 3 141 0.63 NormalMap 17.04 1.18625 sphere 749 18 -930 18 Checkerboard 0.327 0.532 0.038 0.201 0.316 0.827 14 5 0.4 NormalMap 9.24 0.30125 sphere 741 20 -903 20 Turbulence 0.731 0.483 0.539 0.582 0.432 0.274 19 34 0.59 NormalMap 7.02 0.2075 sphere 736 19 -828 19 Checkerboard 0.298 0.788 0.178 0.759 0.029 0.249 7 85 0.23 null sphere 727 23 -757 23 CrissCross 0.461 0.019 0.395 0.628 0.985 0.785 0.997 0.265 1 1 86 0.55 NormalMap 6.46 1.02125 sphere 736 21 -688 21 ShinyColor 0.72 0.699 0.935 121 0.07 NormalMap 9.18 1.1675 sphere 755 15 -632 15 ShinyColor 0.374 0.995 0.047 26 0.7 NormalMap 3.18 0.01 sphere 731 25 -575 25 Turbulence 0.431 0.95 0.854 0.129 0.885 0.652 5 27 0.07 NormalMap 1.44 0.1925 sphere 731 19 -515 19 CrissCross 0.43 0.456 0.778 0.635 0.655 0.541 0.286 0.478 0.675 15 66 0.37 null sphere 739 15 -476 15 CrissCross 0.898 0.418 0.929 0.572 0.84 0.509 0.404 0.269 0.965 4 136 0.43 null sphere 753 19 -429 19 Turbulence 0.833 0.313 0.397 0.072 0.863 0.842 10 128 0.35 NormalMap 5.36 0.54125 sphere 754 16 -368 16 Turbulence 0.526 0.233 0.472 0.623 0.631 0.38 3 85 0.09 null sphere 726 18 -311 18 ShinyColor 0.903 0.495 0.007 63 0.6 NormalMap 16.82 0.96375 sphere 728 23 -238 23 Glass 1.08 127 null sphere 755 24 -203 24 ShinyColor 0.969 0.696 0.994 42 0.53 NormalMap 8.48 0.825 sphere 727 19 -131 19 Glass 0.435 105 NormalMap 16.9 0.475 sphere 743 24 -56 24 Glass 1.42 65 NormalMap 6.2 0.48625 sphere 745 18 15 18 Checkerboard 0.32 0.866 0.508 0.387 0.241 0.213 6 60 0.21 null sphere 740 19 39 19 Checkerboard 0.422 0.394 0.365 0.706 0.815 0.572 1 33 0.33 NormalMap 17.14 0.16875 sphere 739 25 114 25 Marble 0.148 0.955 0.124 0.783 0.099 0.489 6 21 0.31 NormalMap 11 1.05625 sphere 745 17 181 17 CrissCross 0.242 0.653 0.466 0.763 0.094 0.309 0.523 0.749 0.447 14 107 0.4 NormalMap 16.06 0.075 sphere 740 25 234 25 Glass 3.675 5 NormalMap 0.1 1.095 sphere 743 21 293 21 Marble 0.082 0.119 0.089 0.53 0.791 0.793 3 39 0.42 NormalMap 19.46 0.6575 sphere 725 16 346 16 Glass 3.02 113 null sphere 731 20 398 20 Turbulence 0.062 0.886 0.192 0.592 0.677 0.986 14 139 0.41 null sphere 726 20 441 20 CrissCross 0.517 0.744 0.933 0.03 0.951 0.102 0.791 0.931 0.869 18 149 0.53 NormalMap 11.7 0.53875 sphere 735 18 502 18 ShinyColor 0.247 0.758 0.659 48 0.61 NormalMap 10.92 0.905 sphere 734 19 555 19 ShinyColor 0.252 0.36 0.083 55 0.1 NormalMap 4.48 0.055 sphere 728 25 604 25 Checkerboard 0.868 0.763 0.85 0.999 0.009 0.608 14 49 0.33 null sphere 732 22 654 22 ShinyColor 0.381 0.775 0.374 71 0.09 null sphere 740 21 702 21 Checkerboard 0.741 0.897 0.944 0.503 0.747 0.942 11 55 0.42 null sphere 726 22 752 22 Glass 1.585 52 null sphere 733 15 830 15 Glass 1.685 124 null sphere 755 19 885 19 Marble 0.778 0.417 0.205 0.934 0.352 0.764 3 101 0.06 null sphere 747 22 932 22 Marble 0.407 0.927 0.043 0.797 0.907 0.751 14 38 0.04 NormalMap 8.26 1.045 sphere 792 23 -994 23 Marble 0.036 0.24 0.027 0.409 0.597 0.484 19 45 0.54 NormalMap 4.34 1.0075 sphere 803 16 -932 16 Marble 0.108 0.396 0.218 0.307 0.779 0.092 4 40 0.43 NormalMap 5.86 1.06875 sphere 800 22 -904 22 CrissCross 0.099 0.081 0.125 0.932 0.447 0.739 0.194 0.225 0.188 7 95 0.28 null sphere 806 23 -843 23 CrissCross 0.792 0.283 0.162 0.555 0.25 0.12 0.124 0.35 0.201 5 44 0.46 null sphere 810 16 -761 16 Turbulence 0.172 0.554 0.196 0.446 0.503 0.165 5 26 0.41 NormalMap 8.8 0.93625 sphere 812 22 -701 22 ShinyColor 0.07 0.958 0.322 109 0.67 null sphere 788 21 -654 21 Turbulence 0.539 0.988 0.583 0.042 0.152 0.82 4 112 0.6 null sphere 797 18 -616 18 Glass 3.455 24 NormalMap 9.78 0.92375 sphere 811 15 -549 15 ShinyColor 0.815 0.668 0.167 55 0.46 null sphere 804 21 -500 21 Glass 4.265 85 NormalMap 19.88 1.16 sphere 805 16 -421 16 ShinyColor 0.105 0.702 0.309 28 0.37 NormalMap 4.02 0.43125 sphere 807 19 -373 19 ShinyColor 0.094 0.318 0.689 104 0.61 NormalMap 18.42 1.12375 sphere 794 20 -291 20 Checkerboard 0.047 0.025 0.069 0.186 0.131 0.771 10 47 0.21 null sphere 813 20 -250 20 ShinyColor 0.99 0.438 0.363 103 0.09 NormalMap 15.74 0.06 sphere 802 23 -203 23 CrissCross 0.935 0.093 0.362 0.429 0.395 0.663 0.11 0.899 0.309 13 116 0.46 null sphere 799 15 -162 15 CrissCross 0.824 0.673 0.733 0.346 0.42 0.696 0.938 0.354 0.789 6 119 0.13 null sphere 802 17 -103 17 Turbulence 0.285 0.049 0.234 0.567 0.273 0.502 20 39 0.21 null sphere 796 16 -68 16 ShinyColor 0.693 0.516 0.382 73 0.49 NormalMap 7.42 0.97875 sphere 805 25 -19 25 ShinyColor 0.246 0.556 0.427 46 0.56 null sphere 811 25 38 25 Marble 0.349 0.995 0.763 0.866 0.377 0.239 12 109 0.43 NormalMap 6.74 0.65125 sphere 806 24 102 24 Checkerboard 0.526 0.222 0.083 0.094 0.514 0.052 19 18 0.58 null sphere 788 22 184 22 Glass 3.565 78 null sphere 812 16 256 16 ShinyColor 0.507 0.071 0.469 91 0.42 null sphere 808 17 306 17 Glass 0.195 45 null sphere 787 19 330 19 ShinyColor 0.564 0.939 0.457 65 0.07 NormalMap 5.22 0.17125 sphere 804 18 403 18 Glass 3.1 77 null sphere 800 19 480 19 CrissCross 0.78 0.966 0.589 0.719 0.423 0.008 0.82 0.725 0.269 20 81 0.42 null sphere 786 24 514 24 Turbulence 0.212 0.826 0.037 0.867 0.233 0.006 11 12 0.02 NormalMap 0.62 0.775 sphere 805 19 582 19 Marble 0.373 0.648 0.029 0.236 0.671 0.178 13 78 0.38 null sphere 804 24 625 24 Checkerboard 0.67 0.863 0.436 0.7 0.483 0.468 4 19 0.22 NormalMap 0.18 0.15875 sphere 801 20 675 20 Marble 0.873 0.261 0.13 0.596 0.633 0.956 4 38 0.55 NormalMap 18.16 0.81375 sphere 790 21 723 21 Turbulence 0.253 0.661 0.137 0.762 0.162 0.828 6 136 0.13 NormalMap 4.82 0.0775 sphere 806 19 795 19 Glass 0.575 26 NormalMap 15.32 1.1275 sphere 789 24 840 24 ShinyColor 0.65 0.519 0.397 49 0.46 NormalMap 9.48 0.605 sphere 806 19 900 19 Marble 0.656 0.31 0.239 0.803 0.425 0.394 18 31 0.21 null sphere 793 25 939 25 Turbulence 0.79 0.847 0.603 0.247 0.219 0.276 15 126 0 NormalMap 16.32 0.50625 sphere 864 22 -988 22 ShinyColor 0.782 0.742 0.335 47 0.59 null sphere 857 23 -939 23 Turbulence 0.428 0.735 0.249 0.705 0.454 0.08 15 139 0.63 NormalMap 0.86 0.0275 sphere 853 25 -869 25 Glass 0.245 24 null sphere 836 22 -812 22 Marble 0.133 0.156 0.96 0.587 0.237 0.675 11 22 0.56 null sphere 858 20 -769 20 Checkerboard 0.499 0.313 0.191 0.384 0.607 0.404 2 92 0.22 null sphere 857 24 -692 24 ShinyColor 0.648 0.433 0.259 50 0.66 NormalMap 2.38 0.61125 sphere 836 22 -649 22 ShinyColor 0.269 0.324 0.54 89 0.36 null sphere 860 15 -580 15 CrissCross 0.848 0.567 0.224 0.107 0.891 0.163 0.501 0.008 0.653 2 104 0.46 NormalMap 14.54 1.16 sphere 851 17 -527 17 Glass 0.97 76 NormalMap 3.08 0.905 sphere 855 25 -485 25 Marble 0.446 0.435 0.108 0.098 0.486 0.795 16 123 0.37 null sphere 855 17 -387 17 Glass 1.935 10 NormalMap 2.2 0.3925 sphere 847 23 -366 23 Glass 0.305 17 null sphere 865 25 -291 25 Turbulence 0.274 0.835 0.914 0.252 0.727 0.64 9 19 0.48 null sphere 866 15 -262 15 Glass 1.28 150 NormalMap 15.18 0.20875 sphere 840 23 -219 23 CrissCross 0.74 0.142 0.484 0.379 0.567 0.598 0.066 0.317 0.822 2 58 0.56 NormalMap 11.22 0.9175 sphere 858 23 -151 23 Turbulence 0.029 0.205 0.873 0.646 0.128 0.699 11 134 0.31 null sphere 865 17 -74 17 CrissCross 0.495 0.319 0.864 0.311 0.05 0.461 0.886 0.95 0.385 5 147 0.41 NormalMap 12.5 0.89875 sphere 854 16 -34 16 Glass 0.425 142 null sphere 853 24 28 24 Checkerboard 0.634 0.125 0.387 0.685 0.586 0.273 13 146 0.34 null sphere 844 17 91 17 Turbulence 0.857 0.587 0.32 0.797 0.503 0.967 11 57 0.38 null sphere 859 20 138 20 ShinyColor 0.344 0.283 0.794 49 0.54 NormalMap 17.54 0.4025 sphere 856 16 199 16 ShinyColor 0.213 0.277 0.895 121 0.42 null sphere 856 17 255 17 ShinyColor 0.307 0.735 0.534 12 0.52 null sphere 858 20 315 20 Glass 2.685 114 null sphere 862 25 377 25 Turbulence 0.017 0.6 0.762 0.128 0.659 0.068 18 31 0.09 null sphere 847 21 426 21 CrissCross 0.313 0.378 0.418 0.298 0.233 0.108 0.083 0.686 0.49 4 107 0.06 null sphere 857 15 511 15 ShinyColor 0.303 0.825 0.677 142 0.13 null sphere 864 23 540 23 CrissCross 0.961 0.602 0.56 0.451 0.773 0.263 0.54 0.705 0.095 6 107 0.56 NormalMap 16.78 0.1175 sphere 837 20 585 20 Turbulence 0.308 0.974 0.705 0.529 0.614 0.558 1 75 0.36 null sphere 845 19 663 19 ShinyColor 0.408 0.797 0.832 32 0.01 null sphere 846 17 701 17 Glass 4.575 8 NormalMap 12.4 0.70625 sphere 855 16 751 16 Glass 3.34 104 NormalMap 3.54 1.01625 sphere 855 25 813 25 Turbulence 0.499 0.699 0.399 0.143 0.426 0.434 2 71 0.31 null sphere 855 24 864 24 Turbulence 0.59 0.811 0.397 0.403 0.692 0.371 1 117 0.26 NormalMap 2.88 0.55375 sphere 862 24 929 24 Glass 3.655 109 null sphere 928 19 -1001 19 Marble 0.768 0.297 0.802 0.139 0.344 0.573 11 107 0.5 null sphere 916 23 -923 23 ShinyColor 0.632 0.557 0.789 58 0.22 null sphere 902 20 -883 20 Marble 0.209 0.749 0.397 0.553 0.322 0.905 6 8 0.6 null sphere 912 19 -801 19 ShinyColor 0.981 0.506 0.398 46 0.05 NormalMap 0.22 0.77125 sphere 913 15 -738 15 Glass 0.755 24 null sphere 928 20 -703 20 Glass 0.195 29 null sphere 907 20 -653 20 CrissCross 0.846 0.411 0.434 0.787 0.81 0.668 0.938 0.958 0.299 13 66 0.59 null sphere 900 19 -615 19 Glass 3.87 14 NormalMap 7.56 1.105 sphere 920 18 -547 18 Turbulence 0.332 0.801 0.909 0.269 0.758 0.207 19 30 0.02 null sphere 903 24 -501 24 Turbulence 0.806 0.827 0.62 0.689 0.448 0.969 8 7 0.55 null sphere 924 17 -443 17 Glass 2.24 115 NormalMap 19.22 1.10125 sphere 900 24 -391 24 CrissCross 0.194 0.262 0.788 0.163 0.652 0.816 0.939 0.587 0.834 20 129 0.46 null sphere 925 15 -338 15 CrissCross 0.585 0.994 0.68 0.098 0.568 0.252 0.438 0.763 0.515 5 140 0.11 NormalMap 17.3 0.9425 sphere 917 23 -290 23 CrissCross 0.882 0.639 0.62 0.499 0.301 0.532 0.084 0.294 0.211 4 130 0.32 null sphere 916 24 -229 24 Marble 0.506 0.293 0.927 0.506 0.05 0.628 7 121 0.36 null sphere 928 18 -185 18 Checkerboard 0.275 0.442 0.625 0.896 0.067 0.603 15 94 0.53 null sphere 907 19 -125 19 Checkerboard 0.659 0.739 0.823 0.003 0.537 0.332 20 144 0.24 NormalMap 18.12 0.5425 sphere 920 15 -55 15 Turbulence 0.347 0.98 0.043 0.979 0.013 0.691 8 44 0.59 NormalMap 9.54 0.62625 sphere 914 18 6 18 CrissCross 0.407 0.613 0.267 0.116 0.906 0.96 0.722 0.265 0.255 2 39 0.21 NormalMap 5.18 1.2375 sphere 924 20 63 20 ShinyColor 0.333 0.286 0.315 127 0.44 null sphere 901 25 119 25 CrissCross 0.165 0.875 0.602 0.234 0.119 0.901 0.282 0.377 0.891 15 138 0.51 NormalMap 18.66 0.06875 sphere 926 17 179 17 Glass 0.57 49 NormalMap 8.82 0.0225 sphere 918 24 257 24 ShinyColor 0.502 0.479 0.283 94 0.26 null sphere 927 17 313 17 Glass 4.67 17 null sphere 900 16 342 16 Checkerboard 0.845 0.497 0.728 0.729 0.124 0.604 16 95 0.05 NormalMap 4.96 0.57875 sphere 921 17 413 17 ShinyColor 0.725 0.352 0.008 117 0.2 NormalMap 14.32 0.40125 sphere 910 24 460 24 Marble 0.37 0.98 0.908 0.147 0.606 0.991 5 129 0.32 null sphere 907 23 515 23 ShinyColor 0.27 0.685 0.366 58 0.28 null sphere 916 15 559 15 CrissCross 0.854 0.724 0.079 0.845 0.933 0.934 0.298 0.767 0.033 10 76 0.2 NormalMap 11.5 0.70625 sphere 928 25 593 25 Marble 0.4 0.336 0.478 0.894 0.282 0.054 8 23 0.55 NormalMap 19.62 0.89 sphere 913 18 649 18 Turbulence 0.547 0.272 0.239 0.488 0.211 0.721 3 138 0.34 null sphere 919 16 726 16 Glass 2.83 77 null sphere 924 25 767 25 Turbulence 0.744 0.21 0.362 0.984 0.698 0.574 15 123 0.34 NormalMap 12.5 0.85375 sphere 909 23 820 23 Checkerboard 0.987 0.768 0.577 0.576 0.313 0.791 11 23 0.34 null sphere 913 15 854 15 Glass 4.77 25 null sphere 902 20 901 20 CrissCross 0.234 0.13 0.816 0.547 0.922 0.36 0.684 0.403 0.286 9 84 0.21 null sphere 928 18 969 18 Glass 4.07 50 NormalMap 4.46 0.73 sphere 959 15 -983 15 Marble 0.89 0.515 0.699 0.176 0.921 0.247 10 120 0.1 NormalMap 2.26 0.135 sphere 980 21 -918 21 Glass 3.12 126 null sphere 977 15 -872 15 Glass 3.47 37 null sphere 971 19 -802 19 Glass 1.725 136 null sphere 962 22 -762 22 Marble 0.811 0.616 0.866 0.983 0.013 0.208 20 107 0.31 null sphere 974 25 -674 25 Marble 0.635 0.452 0.267 0.361 0.784 0.355 4 112 0.19 null sphere 972 19 -645 19 Glass 0.525 48 null sphere 981 20 -575 20 Turbulence 0.909 0.316 0.655 0.176 0.677 0.439 11 129 0.12 null sphere 952 24 -513 24 Turbulence 0.506 0.806 0.594 0.711 0.962 0.101 14 129 0.55 NormalMap 10.74 1.23625 sphere 971 24 -479 24 Checkerboard 0.748 0.381 0.261 0.558 0.001 0.233 10 3 0.61 NormalMap 8.16 0.45375 sphere 957 25 -425 25 Checkerboard 0.154 0.278 0.987 0.939 0.411 0.522 19 69 0.26 null sphere 964 22 -345 22 Turbulence 0.432 0.291 0.01 0.861 0.698 0.374 7 93 0.38 NormalMap 4.7 0.8425 sphere 972 20 -280 20 Checkerboard 0.391 0.376 0.557 0.961 0.045 0.459 13 71 0.52 null sphere 979 22 -243 22 Glass 0.28 10 null sphere 960 24 -167 24 Turbulence 0.113 0.807 0.677 0.67 0.768 0.723 3 59 0.13 null sphere 969 24 -117 24 Glass 1.2 49 NormalMap 17.38 1.14125 sphere 957 23 -46 23 ShinyColor 0.116 0.068 0.408 37 0.62 NormalMap 18.02 0.80375 sphere 952 15 32 15 CrissCross 0.026 0.765 0.341 0.266 0.078 0.621 0.134 0.992 0.325 18 29 0.69 null sphere 968 19 68 19 Turbulence 0.451 0.588 0.265 0.354 0.516 0.883 4 6 0.7 NormalMap 15.74 0.4225 sphere 981 24 112 24 Turbulence 0.262 0.424 0.324 0.31 0.805 0.846 5 42 0.19 null sphere 977 19 162 19 Glass 4.625 104 NormalMap 14.22 0.03125 sphere 982 21 240 21 CrissCross 0.79 0.841 0.135 0.636 0.073 0.405 0.904 0.871 0.948 13 40 0.53 null sphere 954 25 285 25 Glass 1.105 57 NormalMap 13.54 1.00375 sphere 960 21 368 21 Checkerboard 0.784 0.05 0.694 0.858 0.456 0.598 15 62 0.15 null sphere 970 16 434 16 Glass 0.105 136 NormalMap 7.82 0.055 sphere 966 17 469 17 Marble 0.644 0.213 0.042 0.099 0.811 0.77 11 7 0.53 null sphere 976 17 516 17 ShinyColor 0.996 0.145 0.908 64 0.38 null sphere 957 19 578 19 Marble 0.921 0.036 0.524 0.732 0.807 0.027 16 86 0.48 null sphere 970 20 670 20 Marble 0.826 0.43 0.994 0.235 0.617 0.182 1 61 0.63 NormalMap 16.44 1.0125 sphere 968 18 712 18 Turbulence 0.019 0.904 0.02 0.532 0.488 0.987 1 35 0.61 null sphere 966 19 772 19 ShinyColor 0.66 0.967 0.407 84 0 NormalMap 7.18 0.1 sphere 981 24 830 24 Glass 1.12 48 NormalMap 15.12 0.99875 sphere 952 23 874 23 Turbulence 0.979 0.485 0.162 0.638 0.451 0.57 4 70 0.56 null sphere 967 19 911 19 Marble 0.358 0.63 0.016 0.374 0.426 0.033 6 30 0.37 null sphere 967 18 961 18 Checkerboard 0.337 0.207 0.868 0.883 0.745 0.239 7 39 0.39 null ================================================ FILE: scenes/ballsOnAPlane.scn ================================================ dispersion 2.0 cameraPosition 0.0 0.0 150.0 cameraUp 0.0 1.0 0.0 cameraLookAt 0.0 0.0 5.0 cameraScreenWidth 575 light 0 0 40 0.9 sphere 0 0 -10000 10000 ShinyColor 0.7 0.3 0.4 -1 0.4 null sphere -150 -153 7 7 ShinyColor 0.175 0.21 0.131 100 0.46 null sphere -152 -135 4 4 ShinyColor 0.94 0.785 0.899 72 0.17 null sphere -152 -107 3 3 ShinyColor 0.191 0.545 0.015 69 0.4 null sphere -151 -87 4 4 ShinyColor 0.302 0.406 0.574 67 0.04 null sphere -148 -73 7 7 ShinyColor 0.992 0.481 0.612 134 0.67 null sphere -147 -54 5 5 ShinyColor 1 0.357 0.973 5 0.57 null sphere -145 -24 7 7 ShinyColor 0.327 0.251 0.372 136 0.48 null sphere -154 -12 6 6 ShinyColor 0.975 0.132 0.151 89 0.01 null sphere -148 6 6 6 ShinyColor 0.082 0.914 0.974 11 0.65 null sphere -148 25 5 5 ShinyColor 0.629 0.067 0.796 3 0.68 null sphere -154 42 5 5 ShinyColor 0.767 0.602 0.708 138 0.13 null sphere -148 60 7 7 ShinyColor 0.254 0.467 0.847 36 0.37 null sphere -154 76 6 6 ShinyColor 0.663 0.067 0.814 70 0.04 null sphere -150 97 5 5 ShinyColor 0.079 0.647 0.167 119 0.4 null sphere -149 121 7 7 ShinyColor 0.517 0.248 0.369 56 0.33 null sphere -150 134 5 5 ShinyColor 0.227 0.672 0.648 9 0.09 null sphere -136 -148 6 6 ShinyColor 0.297 0.35 0.8 15 0.64 null sphere -133 -146 5 5 ShinyColor 0.016 0.397 0.872 59 0.62 null sphere -135 -116 3 3 ShinyColor 0.583 0.444 0.748 95 0.4 null sphere -131 -99 3 3 ShinyColor 0.275 0.979 0.501 14 0.04 null sphere -131 -80 4 4 ShinyColor 0.166 0.932 0.778 8 0.22 null sphere -129 -74 5 5 ShinyColor 0.933 0.588 0.015 103 0.15 null sphere -131 -48 7 7 ShinyColor 0.811 0.507 0.803 49 0.41 null sphere -130 -27 6 6 ShinyColor 0.192 0.696 0.575 146 0.52 null sphere -133 1 6 6 ShinyColor 0.105 0.651 0.214 20 0.23 null sphere -133 14 7 7 ShinyColor 0.298 0.898 0.447 17 0.14 null sphere -128 39 5 5 ShinyColor 0.583 0.033 0.192 26 0 null sphere -132 65 6 6 ShinyColor 0.249 0.564 0.413 71 0.48 null sphere -134 77 7 7 ShinyColor 0.335 0.517 0.876 118 0.43 null sphere -132 94 6 6 ShinyColor 0.08 0.607 0.687 43 0.54 null sphere -130 122 6 6 ShinyColor 0.571 0.563 0.222 148 0.01 null sphere -128 141 7 7 ShinyColor 0.896 0.637 0.463 117 0.29 null sphere -105 -146 7 7 ShinyColor 0.746 0.489 0.572 5 0.18 null sphere -112 -136 7 7 ShinyColor 0.633 0.139 0.096 94 0.11 null sphere -112 -130 4 4 ShinyColor 0.982 0.941 0.756 114 0.25 null sphere -106 -107 5 5 ShinyColor 0.476 0.247 0.981 10 0.18 null sphere -107 -93 7 7 ShinyColor 0.356 0.931 0.024 69 0.38 null sphere -103 -80 6 6 ShinyColor 0.187 0.257 0.7 142 0 null sphere -106 -64 4 4 ShinyColor 0.112 0.126 0.529 16 0.12 null sphere -107 -42 6 6 ShinyColor 0.369 0.633 0.556 61 0.06 null sphere -107 -23 7 7 ShinyColor 0.299 0.185 0.119 150 0.09 null sphere -103 -10 6 6 ShinyColor 0.189 0.862 0.837 109 0.67 null sphere -109 -6 6 6 ShinyColor 0.908 0.865 0.422 71 0.18 null sphere -103 8 5 5 ShinyColor 0.705 0.347 0.752 124 0.24 null sphere -108 40 6 6 ShinyColor 0.116 0.978 0.565 144 0.49 null sphere -110 65 5 5 ShinyColor 1 0.709 0.325 65 0.12 null sphere -104 87 7 7 ShinyColor 0.306 0.132 0.323 11 0.67 null sphere -102 110 6 6 ShinyColor 0.614 0.192 0.702 29 0.1 null sphere -111 139 5 5 ShinyColor 0.57 0.607 0.206 135 0.02 null sphere -90 -146 7 7 ShinyColor 0.425 0.037 0.258 74 0.7 null sphere -82 -125 3 3 ShinyColor 0.518 0.195 0.845 105 0.24 null sphere -87 -102 7 7 ShinyColor 0.019 0.456 0.097 138 0.34 null sphere -87 -88 4 4 ShinyColor 0.378 0.019 0.334 97 0.35 null sphere -81 -77 5 5 ShinyColor 0.064 0.751 0.763 137 0.31 null sphere -82 -58 3 3 ShinyColor 0.73 0.573 0.457 125 0.34 null sphere -82 -41 7 7 ShinyColor 0.176 0.765 0.918 78 0.28 null sphere -81 -27 3 3 ShinyColor 0.533 0.404 0.823 46 0.22 null sphere -86 -9 7 7 ShinyColor 0.466 0.839 0.525 139 0.47 null sphere -81 11 4 4 ShinyColor 0.867 0.067 0.015 119 0.41 null sphere -87 29 5 5 ShinyColor 0.489 0.915 0.949 49 0.14 null sphere -85 44 6 6 ShinyColor 0.56 0.192 0.53 15 0.08 null sphere -81 54 7 7 ShinyColor 0.232 0.032 0.056 39 0.57 null sphere -91 68 3 3 ShinyColor 0.565 0.541 0.961 79 0.6 null sphere -87 93 5 5 ShinyColor 0.124 0.339 0.697 99 0.3 null sphere -86 119 3 3 ShinyColor 0.51 0.024 0.047 86 0.19 null sphere -81 148 4 4 ShinyColor 0.984 0.45 0.793 142 0.68 null sphere -81 -146 4 4 ShinyColor 0.203 0.233 0.941 129 0.46 null sphere -80 -125 6 6 ShinyColor 0.688 0.569 0.77 40 0.59 null sphere -73 -102 6 6 ShinyColor 0.762 0.969 0.497 107 0.66 null sphere -74 -92 6 6 ShinyColor 0.917 0.425 0.947 129 0.2 null sphere -71 -62 3 3 ShinyColor 0.714 0.47 0.722 74 0.51 null sphere -80 -47 6 6 ShinyColor 0.882 0.103 0.605 59 0.57 null sphere -75 -34 6 6 ShinyColor 0.343 0.126 0.167 45 0.69 null sphere -75 -14 6 6 ShinyColor 0.745 0.154 0.146 72 0.45 null sphere -73 10 4 4 ShinyColor 0.392 0.93 0.476 150 0.21 null sphere -72 30 6 6 ShinyColor 0.572 0.257 0.872 112 0.38 null sphere -77 47 6 6 ShinyColor 0.118 0.191 0.784 42 0.46 null sphere -74 58 3 3 ShinyColor 0.061 0.569 0.112 82 0.4 null sphere -80 72 6 6 ShinyColor 0.846 0.824 0.995 109 0.39 null sphere -73 103 3 3 ShinyColor 0.382 0.102 0.21 27 0.26 null sphere -76 123 6 6 ShinyColor 0.687 0.619 0.332 121 0.11 null sphere -71 151 5 5 ShinyColor 0.716 0.844 0.295 107 0.39 null sphere -63 -153 3 3 ShinyColor 0.993 0.337 0.362 26 0.5 null sphere -67 -137 5 5 ShinyColor 0.895 0.407 0.842 105 0.4 null sphere -64 -113 4 4 ShinyColor 0.257 0.581 0.682 146 0.1 null sphere -66 -96 5 5 ShinyColor 0.427 0.142 0.79 119 0.21 null sphere -69 -76 7 7 ShinyColor 0.556 0.598 0.215 61 0.2 null sphere -67 -64 7 7 ShinyColor 0.594 0.579 0.455 43 0.38 null sphere -61 -43 7 7 ShinyColor 0.217 0.298 0.106 4 0.06 null sphere -68 -26 4 4 ShinyColor 0.916 0.011 0.803 22 0.29 null sphere -63 -14 4 4 ShinyColor 0.42 0.896 0.812 132 0.12 null sphere -59 6 4 4 ShinyColor 0.949 0.341 0.64 11 0.24 null sphere -60 35 7 7 ShinyColor 0.054 0.75 0.931 129 0.62 null sphere -61 52 4 4 ShinyColor 0.024 0.305 0.149 126 0.12 null sphere -62 68 4 4 ShinyColor 0.992 0.252 0.658 96 0.21 null sphere -61 83 3 3 ShinyColor 0.69 0.911 0.941 94 0.54 null sphere -62 100 7 7 ShinyColor 0.974 0.637 0.149 21 0.33 null sphere -62 126 6 6 ShinyColor 0.986 0.97 0.997 98 0.42 null sphere -59 131 5 5 ShinyColor 0.148 0.765 0.416 16 0.27 null sphere -35 -150 3 3 ShinyColor 0.878 0.159 0.338 150 0.44 null sphere -41 -130 3 3 ShinyColor 0.286 0.614 0.182 140 0.15 null sphere -43 -114 3 3 ShinyColor 0.319 0.327 0.501 63 0.5 null sphere -44 -92 7 7 ShinyColor 0.245 0.467 0.999 89 0.33 null sphere -35 -70 7 7 ShinyColor 0.093 0.217 0.508 43 0.1 null sphere -37 -53 4 4 ShinyColor 0.81 0.212 0.652 49 0.44 null sphere -34 -38 5 5 ShinyColor 0.775 0.666 0.052 117 0.17 null sphere -39 -13 4 4 ShinyColor 0.392 0.52 0.554 136 0.56 null sphere -38 7 5 5 ShinyColor 0.885 0.235 0.729 82 0.38 null sphere -39 25 4 4 ShinyColor 0.128 0.06 0.988 29 0.59 null sphere -42 50 3 3 ShinyColor 0.575 0.126 0.647 21 0.01 null sphere -37 63 4 4 ShinyColor 0.166 0.887 0.49 135 0.3 null sphere -41 86 5 5 ShinyColor 0.646 0.708 0.591 96 0.63 null sphere -38 102 6 6 ShinyColor 0.717 0.237 0.73 56 0.25 null sphere -42 126 7 7 ShinyColor 0.449 0.572 0.696 141 0.33 null sphere -37 144 5 5 ShinyColor 0.242 0.088 0.262 126 0.51 null sphere -14 -145 3 3 ShinyColor 0.457 0.157 0.923 124 0.37 null sphere -15 -133 5 5 ShinyColor 0.167 0.658 0.131 18 0.08 null sphere -13 -108 6 6 ShinyColor 0.078 0.781 0.899 137 0.35 null sphere -21 -99 3 3 ShinyColor 0.284 0.249 0.246 33 0.04 null sphere -15 -84 7 7 ShinyColor 0.133 0.655 0.63 42 0.54 null sphere -13 -56 4 4 ShinyColor 0.479 0.67 0.989 58 0.41 null sphere -14 -38 4 4 ShinyColor 0.837 0.866 0.469 15 0.05 null sphere -12 -24 4 4 ShinyColor 0.933 0.37 0.996 86 0.45 null sphere -21 7 7 7 ShinyColor 0.358 0.076 0.578 54 0.32 null sphere -13 22 5 5 ShinyColor 0.102 0.745 0.281 87 0.58 null sphere -15 37 4 4 ShinyColor 0.019 0.246 0.717 5 0.57 null sphere -21 51 4 4 ShinyColor 0.033 0.862 0.446 93 0.14 null sphere -22 81 6 6 ShinyColor 0.46 0.886 0.422 112 0.32 null sphere -16 102 5 5 ShinyColor 0.915 0.949 0.657 96 0.68 null sphere -14 111 5 5 ShinyColor 0.103 0.624 0.348 84 0.16 null sphere -22 136 4 4 ShinyColor 0.684 0.059 0.118 18 0.56 null sphere -5 -152 4 4 ShinyColor 0.057 0.233 0.965 105 0.14 null sphere 4 -132 3 3 ShinyColor 0.036 0.645 0.508 89 0.62 null sphere 3 -110 4 4 ShinyColor 0.57 0.723 0.386 102 0.37 null sphere -2 -98 4 4 ShinyColor 0.729 0.163 0.548 105 0.6 null sphere -1 -77 3 3 ShinyColor 0.686 0.714 0.789 31 0.21 null sphere -3 -62 7 7 ShinyColor 0.603 0.125 0.643 149 0.56 null sphere 3 -51 3 3 ShinyColor 0.146 0.316 0.219 105 0 null sphere -5 -32 3 3 ShinyColor 0.278 0.283 0.832 12 0.33 null sphere 2 -20 4 4 ShinyColor 0.655 0.069 0.417 47 0.04 null sphere -6 -7 3 3 ShinyColor 0.067 0.196 0.369 45 0.63 null sphere -3 15 7 7 ShinyColor 0.449 0.791 0.24 44 0.6 null sphere 0 33 7 7 ShinyColor 0.888 0.106 0.95 48 0.28 null sphere 3 41 5 5 ShinyColor 0.922 0.087 0.768 45 0.26 null sphere 2 71 3 3 ShinyColor 0.69 0.438 0.973 140 0.51 null sphere -5 89 3 3 ShinyColor 0.011 0.313 0.206 145 0.43 null sphere -5 112 7 7 ShinyColor 0.713 0.401 0.075 74 0.49 null sphere -3 133 3 3 ShinyColor 0.542 0.873 0.567 79 0.56 null sphere -2 146 6 6 ShinyColor 0.55 0.43 0.085 114 0.27 null sphere 18 -146 4 4 ShinyColor 0.557 0.247 0.424 8 0.66 null sphere 12 -134 4 4 ShinyColor 0.841 0.93 0.872 55 0.51 null sphere 11 -118 5 5 ShinyColor 0.732 0.006 0.559 75 0.28 null sphere 17 -104 6 6 ShinyColor 0.105 0.663 0.949 81 0.49 null sphere 18 -75 5 5 ShinyColor 0.181 0.027 0.391 10 0.27 null sphere 9 -61 6 6 ShinyColor 0.558 0.037 0.793 20 0.37 null sphere 13 -43 5 5 ShinyColor 0.081 0.053 0.148 7 0.41 null sphere 19 -25 3 3 ShinyColor 0.449 0.908 0.132 127 0.68 null sphere 10 -2 4 4 ShinyColor 0.958 0.157 0.306 114 0.19 null sphere 16 22 7 7 ShinyColor 0.137 0.293 0.941 45 0.23 null sphere 11 50 7 7 ShinyColor 0.347 0.961 0.767 73 0.56 null sphere 17 70 5 5 ShinyColor 0.031 0.855 0.752 52 0.42 null sphere 14 87 4 4 ShinyColor 0.433 0.815 0.674 58 0.07 null sphere 11 102 5 5 ShinyColor 0.093 0.588 0.37 130 0.04 null sphere 9 130 5 5 ShinyColor 0.657 0.965 0.337 63 0.21 null sphere 33 -154 7 7 ShinyColor 0.92 0.926 0.526 46 0.01 null sphere 30 -128 5 5 ShinyColor 0.352 0.352 0.97 34 0.29 null sphere 33 -126 4 4 ShinyColor 0.138 0.038 0.619 84 0.24 null sphere 36 -103 3 3 ShinyColor 0.663 0.967 0.018 30 0.18 null sphere 32 -81 5 5 ShinyColor 0.049 0.655 0.83 5 0.61 null sphere 35 -58 4 4 ShinyColor 0.946 0.871 0.271 86 0.29 null sphere 32 -46 3 3 ShinyColor 0.493 0.084 0.139 78 0.19 null sphere 38 -29 7 7 ShinyColor 0.463 0.899 0.514 46 0.65 null sphere 28 -20 4 4 ShinyColor 0.31 0.991 0.146 88 0.39 null sphere 35 10 6 6 ShinyColor 0.852 0.456 0.699 149 0.68 null sphere 33 30 4 4 ShinyColor 0.383 0.421 0.137 135 0.5 null sphere 30 33 4 4 ShinyColor 0.533 0.443 0.313 103 0.01 null sphere 30 58 4 4 ShinyColor 0.829 0.399 0.663 80 0.27 null sphere 36 70 5 5 ShinyColor 0.018 0.538 0.877 26 0.3 null sphere 35 98 4 4 ShinyColor 0.036 0.381 0.788 54 0.04 null sphere 31 107 6 6 ShinyColor 0.509 0.855 0.164 28 0.27 null sphere 37 125 7 7 ShinyColor 0.335 0.351 0.495 34 0.35 null sphere 61 -148 3 3 ShinyColor 0.681 0.031 0.853 7 0.06 null sphere 58 -125 3 3 ShinyColor 0.903 0.545 0.179 13 0.65 null sphere 62 -114 7 7 ShinyColor 0.141 0.416 0.33 55 0.65 null sphere 61 -84 7 7 ShinyColor 0.707 0.586 0.837 85 0.43 null sphere 63 -70 7 7 ShinyColor 0.882 0.223 0.458 11 0.21 null sphere 55 -58 7 7 ShinyColor 0.009 0.332 0.274 53 0.48 null sphere 63 -32 5 5 ShinyColor 0.647 0.546 0.09 74 0.07 null sphere 57 -13 6 6 ShinyColor 0.24 0.456 0.957 106 0.36 null sphere 57 0 4 4 ShinyColor 0.167 0.438 0.605 68 0.55 null sphere 58 8 5 5 ShinyColor 0.882 0.778 0.024 146 0.18 null sphere 61 28 4 4 ShinyColor 0.407 0.697 0.709 56 0.27 null sphere 59 45 3 3 ShinyColor 0.749 0.703 0.485 55 0.1 null sphere 62 65 6 6 ShinyColor 0.262 0.522 0.552 45 0.35 null sphere 55 87 7 7 ShinyColor 0.427 0.894 0.568 23 0.18 null sphere 63 109 7 7 ShinyColor 0.922 0.187 0.599 63 0.38 null sphere 56 129 4 4 ShinyColor 0.958 0.79 0.833 78 0.05 null sphere 59 147 7 7 ShinyColor 0.363 0.928 0.704 140 0.04 null sphere 84 -152 4 4 ShinyColor 0.758 0.52 0.922 27 0.04 null sphere 77 -134 3 3 ShinyColor 0.203 0.983 0.979 108 0.04 null sphere 81 -108 7 7 ShinyColor 0.916 0.735 0.55 128 0.56 null sphere 77 -100 3 3 ShinyColor 0.547 0.104 0.593 72 0.19 null sphere 76 -71 4 4 ShinyColor 0.25 0.103 0.31 36 0.57 null sphere 84 -58 4 4 ShinyColor 0.699 0.836 0.075 39 0.48 null sphere 79 -44 3 3 ShinyColor 0.496 0.646 0.21 16 0.08 null sphere 77 -18 6 6 ShinyColor 0.575 0.835 0.748 133 0.04 null sphere 81 2 3 3 ShinyColor 0.939 0.115 0.011 5 0.25 null sphere 76 17 7 7 ShinyColor 0.228 0.613 0.635 67 0.49 null sphere 79 52 5 5 ShinyColor 0.09 0.573 0.336 127 0.32 null sphere 82 74 7 7 ShinyColor 0.888 0.936 0.936 136 0.67 null sphere 84 83 6 6 ShinyColor 0.829 0.649 0.324 71 0.06 null sphere 75 98 4 4 ShinyColor 0.507 0.563 0.784 127 0.28 null sphere 83 114 4 4 ShinyColor 0.623 0.843 0.176 85 0.52 null sphere 78 125 4 4 ShinyColor 0.045 0.795 0.927 57 0.18 null sphere 80 133 7 7 ShinyColor 0.682 0.526 0.432 71 0.26 null sphere 101 -148 7 7 ShinyColor 0.259 0.504 0.03 124 0.17 null sphere 101 -139 7 7 ShinyColor 0.627 0.92 0.88 150 0.12 null sphere 102 -105 4 4 ShinyColor 0.331 0.439 0.693 120 0.57 null sphere 99 -96 3 3 ShinyColor 0.276 0.422 0.67 48 0.17 null sphere 105 -69 5 5 ShinyColor 0.869 0.124 0.507 113 0.08 null sphere 100 -50 5 5 ShinyColor 0.776 0.666 0.994 72 0.32 null sphere 105 -27 3 3 ShinyColor 0.132 0.5 0.578 121 0.57 null sphere 97 7 4 4 ShinyColor 0.858 0.602 0.338 57 0.24 null sphere 105 30 4 4 ShinyColor 0.548 0.749 0.05 83 0.15 null sphere 97 38 5 5 ShinyColor 0.367 0.611 0.067 142 0.29 null sphere 96 55 5 5 ShinyColor 0.344 0 0.099 104 0.25 null sphere 99 79 3 3 ShinyColor 0.8 0.99 0.865 128 0.37 null sphere 104 86 7 7 ShinyColor 0.442 0.66 0.452 78 0.43 null sphere 99 114 5 5 ShinyColor 0.867 0.338 0.526 145 0.01 null sphere 96 128 7 7 ShinyColor 0.28 0.106 0.848 24 0.67 null sphere 98 143 5 5 ShinyColor 0.159 0.696 0.179 93 0.14 null sphere 110 -150 3 3 ShinyColor 0.021 0.808 0.639 149 0.58 null sphere 119 -126 4 4 ShinyColor 0.274 0.942 0.107 64 0.63 null sphere 111 -110 3 3 ShinyColor 0.376 0.437 0.343 149 0.45 null sphere 111 -99 7 7 ShinyColor 0.345 0.305 0.74 148 0.2 null sphere 116 -77 4 4 ShinyColor 0.956 0.837 0.291 12 0.18 null sphere 118 -64 4 4 ShinyColor 0.065 0.782 0.727 63 0.54 null sphere 111 -44 7 7 ShinyColor 0.164 0.946 0.125 136 0.66 null sphere 113 -31 3 3 ShinyColor 0.794 0.068 0.874 15 0.09 null sphere 116 -18 6 6 ShinyColor 0.972 0.095 0.462 106 0.35 null sphere 109 -1 6 6 ShinyColor 0.861 0.628 0.615 148 0.37 null sphere 109 17 5 5 ShinyColor 0.04 0.783 0.584 138 0.61 null sphere 110 31 3 3 ShinyColor 0.823 0.367 0.168 45 0.04 null sphere 110 49 7 7 ShinyColor 0.804 0.573 0.609 64 0.39 null sphere 119 57 7 7 ShinyColor 0.478 0.186 0.735 12 0.07 null sphere 110 90 3 3 ShinyColor 0.217 0.566 0.539 60 0.6 null sphere 113 114 6 6 ShinyColor 0.348 0.542 0.344 144 0.68 null sphere 119 132 4 4 ShinyColor 0.877 0.343 0.431 93 0.28 null sphere 110 144 7 7 ShinyColor 0.352 0.893 0.525 134 0.19 null sphere 131 -153 3 3 ShinyColor 0.091 0.776 0.451 10 0.52 null sphere 130 -138 4 4 ShinyColor 0.537 0.562 0.823 25 0.68 null sphere 124 -128 4 4 ShinyColor 0.499 0.922 0.846 60 0.14 null sphere 128 -105 3 3 ShinyColor 0.645 0.056 0.897 17 0.07 null sphere 125 -87 6 6 ShinyColor 0.645 0.831 0.232 72 0.69 null sphere 126 -73 7 7 ShinyColor 0.663 0.846 0.773 78 0.16 null sphere 124 -43 6 6 ShinyColor 0.242 0.155 0.751 23 0.17 null sphere 130 -21 3 3 ShinyColor 0.372 0.755 0.896 92 0.15 null sphere 123 7 3 3 ShinyColor 0.894 0.882 0.996 101 0.27 null sphere 124 27 3 3 ShinyColor 0.814 0.596 0.305 86 0.52 null sphere 128 47 5 5 ShinyColor 0.572 0.631 0.285 72 0.16 null sphere 123 69 5 5 ShinyColor 0.189 0.443 0.444 30 0.07 null sphere 131 94 6 6 ShinyColor 0.898 0.768 0.366 32 0.23 null sphere 131 103 3 3 ShinyColor 0.284 0.181 0.648 87 0.46 null sphere 133 133 6 6 ShinyColor 0.556 0.112 0.069 150 0.21 null sphere 130 142 6 6 ShinyColor 0.484 0.824 0.555 128 0.01 null ================================================ FILE: scenes/ballsOnAPlaneClose.scn ================================================ dispersion 0 cameraPosition 0.0 0.0 25.0 cameraUp 0.0 1.0 0.0 cameraLookAt 0.0 0.0 9.0 cameraScreenWidth 96 light -20 60 40 0.5 light 0 60 40 0.5 light -20 60 40 0.5 light -20 60 40 0.5 light 0 60 40 0.5 light -20 60 40 0.5 sphere 0 0 -10000 10000 ShinyColor 0.7 0.3 0.4 -1 0.4 null sphere -150 -148 3 3 ShinyColor 0.986 0.714 0.744 116 0.5 null sphere -151 -127 5 5 ShinyColor 0.122 0.587 0.969 34 0.03 null sphere -151 -115 4 4 ShinyColor 0.03 0.941 0.541 48 0.38 null sphere -152 -101 4 4 ShinyColor 0.402 0.221 0.049 24 0.7 null sphere -149 -82 4 4 ShinyColor 0.077 0.294 0.907 9 0.35 null sphere -155 -63 7 7 ShinyColor 0.411 0.366 0.857 143 0.47 null sphere -152 -44 7 7 ShinyColor 0.693 0.14 0.106 112 0.2 null sphere -149 -30 6 6 ShinyColor 0.937 0.781 0.974 127 0.58 null sphere -153 -16 3 3 ShinyColor 0.163 0.928 0.503 5 0.62 null sphere -150 2 3 3 ShinyColor 0.414 0.226 0.292 80 0.68 null sphere -150 15 4 4 ShinyColor 0.155 0.132 0.097 22 0.69 null sphere -147 34 3 3 ShinyColor 0.913 0.334 0.051 64 0.25 null sphere -147 58 3 3 ShinyColor 0.921 0.874 0.352 34 0.28 null sphere -155 77 7 7 ShinyColor 0.326 0.953 0.12 65 0.05 null sphere -148 95 5 5 ShinyColor 0.814 0.786 0.854 131 0.14 null sphere -147 108 4 4 ShinyColor 0.92 0.897 0.13 43 0.07 null sphere -146 123 4 4 ShinyColor 0.889 0.86 0.343 4 0.2 null sphere -149 135 7 7 ShinyColor 0.149 0.929 0.764 3 0.56 null sphere -138 -153 7 7 ShinyColor 0.679 0.082 0.979 143 0.13 null sphere -145 -138 7 7 ShinyColor 0.982 0.897 0.277 149 0.12 null sphere -138 -112 3 3 ShinyColor 0.96 0.746 0.837 145 0.38 null sphere -145 -101 4 4 ShinyColor 0.978 0.241 0.441 144 0.13 null sphere -138 -87 5 5 ShinyColor 0.669 0.708 0.393 143 0.49 null sphere -138 -74 5 5 ShinyColor 0.869 0.343 0.21 107 0.21 null sphere -141 -49 3 3 ShinyColor 0.836 0.858 0.311 43 0.57 null sphere -144 -40 6 6 ShinyColor 0.769 0.908 0.344 26 0.6 null sphere -141 -15 3 3 ShinyColor 0.967 0.707 0.46 29 0.29 null sphere -136 -1 7 7 ShinyColor 0.991 0.077 0.665 47 0.25 null sphere -144 27 3 3 ShinyColor 0.899 0.519 0.951 38 0.48 null sphere -142 44 3 3 ShinyColor 0.532 0.272 0.831 149 0.31 null sphere -142 53 7 7 ShinyColor 0.185 0.154 0.075 128 0.32 null sphere -144 78 3 3 ShinyColor 0.304 0.591 0.599 40 0.59 null sphere -145 90 4 4 ShinyColor 0.243 0.226 0.637 13 0.15 null sphere -136 95 5 5 ShinyColor 0.972 0.65 0.636 9 0.35 null sphere -137 104 3 3 ShinyColor 0.909 0.658 0.758 78 0.64 null sphere -136 125 5 5 ShinyColor 0.336 0.954 0.708 147 0.01 null sphere -143 150 5 5 ShinyColor 0.826 0.87 0.176 71 0.65 null sphere -131 -146 5 5 ShinyColor 0.415 0.565 0.316 139 0.33 null sphere -132 -131 3 3 ShinyColor 0.787 0.573 0.9 115 0.42 null sphere -126 -109 4 4 ShinyColor 0.771 0.591 0.524 37 0.35 null sphere -127 -91 6 6 ShinyColor 0.456 0.123 0.256 117 0.03 null sphere -128 -74 4 4 ShinyColor 0.949 0.972 0.873 128 0.51 null sphere -130 -54 4 4 ShinyColor 0.902 0.187 0.986 66 0.29 null sphere -134 -36 4 4 ShinyColor 0.895 0.846 0.458 25 0.43 null sphere -133 -20 3 3 ShinyColor 0.6 0.21 0.042 72 0.04 null sphere -128 4 4 4 ShinyColor 0.125 0.229 0.549 19 0.46 null sphere -133 27 7 7 ShinyColor 0.617 0.066 0.839 14 0.15 null sphere -135 51 7 7 ShinyColor 0.174 0.357 0.052 35 0.58 null sphere -128 66 4 4 ShinyColor 0.135 0.969 0.547 104 0.05 null sphere -129 82 7 7 ShinyColor 0.674 0.101 0.89 78 0.12 null sphere -128 94 6 6 ShinyColor 0.6 0.386 0.084 99 0.42 null sphere -130 124 6 6 ShinyColor 0.912 0.824 0.575 70 0.36 null sphere -135 140 3 3 ShinyColor 0.984 0.01 0.247 132 0.37 null sphere -113 -153 4 4 ShinyColor 0.782 0.58 0.303 67 0.12 null sphere -107 -132 7 7 ShinyColor 0.688 0.728 0.38 24 0.16 null sphere -111 -128 7 7 ShinyColor 0.38 0.381 0.202 40 0.64 null sphere -111 -103 5 5 ShinyColor 0.616 0.59 0.008 138 0.01 null sphere -113 -90 3 3 ShinyColor 0.025 0.654 0.767 62 0.56 null sphere -109 -88 7 7 ShinyColor 0.565 0.777 0.191 116 0.02 null sphere -113 -75 4 4 ShinyColor 0.695 0.108 0.792 107 0.01 null sphere -114 -63 7 7 ShinyColor 0.2 0.061 0.514 146 0.33 null sphere -106 -33 4 4 ShinyColor 0.716 0.491 0.142 137 0.18 null sphere -108 -19 5 5 ShinyColor 0.854 0.133 0.605 98 0.59 null sphere -107 -4 5 5 ShinyColor 0.588 0.993 0.559 18 0.68 null sphere -105 10 4 4 ShinyColor 0.293 0.647 0.834 67 0.39 null sphere -109 20 3 3 ShinyColor 0.054 0.598 0.179 100 0.17 null sphere -108 34 3 3 ShinyColor 0.203 0.331 0.076 115 0.3 null sphere -106 46 6 6 ShinyColor 0.193 0.256 0.364 6 0.49 null sphere -112 64 7 7 ShinyColor 0.345 0.532 0.461 80 0.13 null sphere -110 75 4 4 ShinyColor 0.565 0.613 0.614 97 0.26 null sphere -114 94 6 6 ShinyColor 0.88 0.091 0.896 39 0.08 null sphere -113 113 6 6 ShinyColor 0.099 0.231 0.171 85 0.53 null sphere -112 124 6 6 ShinyColor 0.578 0.409 0.288 31 0.03 null sphere -108 138 3 3 ShinyColor 0.365 0.704 0.228 41 0.67 null sphere -114 147 6 6 ShinyColor 0.75 0.683 0.965 139 0.17 null sphere -96 -154 3 3 ShinyColor 0.593 0.538 0.47 119 0.41 null sphere -93 -132 3 3 ShinyColor 0.677 0.66 0.39 141 0.43 null sphere -89 -127 5 5 ShinyColor 0.466 0.002 0.483 60 0.17 null sphere -88 -110 7 7 ShinyColor 0.936 0.813 0.338 63 0.42 null sphere -90 -89 5 5 ShinyColor 0.783 0.915 0.154 28 0.6 null sphere -90 -68 4 4 ShinyColor 0.154 0.945 0.231 97 0.23 null sphere -96 -50 3 3 ShinyColor 0.803 0.166 0.872 23 0.4 null sphere -95 -32 4 4 ShinyColor 0.605 0.873 0.217 115 0.03 null sphere -86 -18 7 7 ShinyColor 0.182 0.86 0.944 64 0.35 null sphere -93 -8 3 3 ShinyColor 0.396 0.081 0.289 42 0.15 null sphere -93 23 7 7 ShinyColor 0.592 0.578 0.698 122 0.23 null sphere -87 41 5 5 ShinyColor 0.859 0.878 0.444 121 0.2 null sphere -94 61 4 4 ShinyColor 0.305 0.672 0.439 90 0.66 null sphere -89 80 5 5 ShinyColor 0.501 0.542 0.004 32 0.24 null sphere -94 86 6 6 ShinyColor 0.813 0.06 0.515 40 0.61 null sphere -86 118 5 5 ShinyColor 0.299 0.294 0.144 112 0.63 null sphere -93 125 4 4 ShinyColor 0.771 0.26 0.892 117 0.32 null sphere -92 135 4 4 ShinyColor 0.037 0.283 0.38 84 0.38 null sphere -88 141 4 4 ShinyColor 0.209 0.484 0.642 55 0.15 null sphere -73 -153 7 7 ShinyColor 0.644 0.457 0.863 65 0.65 null sphere -79 -134 7 7 ShinyColor 0.354 0.859 0.237 137 0.28 null sphere -81 -117 6 6 ShinyColor 0.344 0.149 0.255 106 0.26 null sphere -72 -102 4 4 ShinyColor 0.965 0.302 0.79 125 0.51 null sphere -80 -97 5 5 ShinyColor 0.117 0.376 0.366 55 0.2 null sphere -76 -64 5 5 ShinyColor 0.163 0.243 0.65 64 0.66 null sphere -82 -56 7 7 ShinyColor 0.409 0.978 0.165 32 0.57 null sphere -74 -40 7 7 ShinyColor 0.243 0.264 0.303 93 0.43 null sphere -78 -18 4 4 ShinyColor 0.954 0.299 0.516 92 0.5 null sphere -72 0 6 6 ShinyColor 0.786 0.944 0.615 143 0.1 null sphere -82 13 7 7 ShinyColor 0.974 0.399 0.251 43 0 null sphere -78 38 7 7 ShinyColor 0.654 0.277 0.298 28 0.62 null sphere -77 63 3 3 ShinyColor 0.14 0.724 0.104 114 0.47 null sphere -77 72 4 4 ShinyColor 0.5 0.266 0.729 114 0.38 null sphere -78 84 7 7 ShinyColor 0.406 0.773 0.221 107 0.66 null sphere -76 104 6 6 ShinyColor 0.733 0.744 0.384 126 0.35 null sphere -75 120 4 4 ShinyColor 0.002 0.073 0.644 111 0.58 null sphere -78 129 5 5 ShinyColor 0.39 0 0.361 93 0.5 null sphere -78 147 4 4 ShinyColor 0.086 0.608 0.059 72 0.31 null sphere -61 -154 7 7 ShinyColor 0.233 0.176 0.548 145 0 null sphere -59 -134 3 3 ShinyColor 0.837 0.329 0.383 69 0.02 null sphere -58 -115 5 5 ShinyColor 0.547 0.171 0.534 5 0.43 null sphere -62 -109 6 6 ShinyColor 0.048 0.556 0.828 91 0.36 null sphere -53 -90 6 6 ShinyColor 0.979 0.112 0.99 56 0.39 null sphere -56 -77 6 6 ShinyColor 0.195 0.032 0.785 110 0.03 null sphere -57 -68 3 3 ShinyColor 0.248 0.592 0.7 14 0.13 null sphere -58 -54 3 3 ShinyColor 0.181 0.154 0.293 28 0.36 null sphere -57 -26 6 6 ShinyColor 0.179 0.769 0.712 145 0.35 null sphere -60 -15 7 7 ShinyColor 0.464 0.608 0.499 27 0.48 null sphere -57 -1 5 5 ShinyColor 0.769 0.388 0.717 12 0.39 null sphere -55 18 5 5 ShinyColor 0.433 0.98 0.257 24 0.66 null sphere -60 33 4 4 ShinyColor 0.213 0.54 0.873 108 0.5 null sphere -63 55 6 6 ShinyColor 0.653 0.915 0.997 57 0.69 null sphere -54 72 5 5 ShinyColor 0.38 0.743 0.381 97 0.63 null sphere -55 91 5 5 ShinyColor 0.059 0.845 0.009 140 0.39 null sphere -53 110 6 6 ShinyColor 0.565 0.457 0.549 86 0.58 null sphere -59 122 5 5 ShinyColor 0.832 0.797 0.169 34 0.3 null sphere -54 135 3 3 ShinyColor 0.297 0.911 0.012 48 0.59 null sphere -60 147 7 7 ShinyColor 0.967 0.091 0.284 79 0.46 null sphere -51 -150 3 3 ShinyColor 0.371 0.253 0.367 89 0.48 null sphere -51 -133 4 4 ShinyColor 0.812 0.186 0.302 20 0.02 null sphere -53 -118 7 7 ShinyColor 0.326 0.489 0.25 127 0.1 null sphere -46 -103 4 4 ShinyColor 0.11 0.272 0.592 73 0.6 null sphere -46 -85 3 3 ShinyColor 0.268 0.606 0.365 87 0.51 null sphere -47 -65 7 7 ShinyColor 0.83 0.081 0.329 14 0.65 null sphere -48 -54 4 4 ShinyColor 0.143 0.496 0.613 111 0.69 null sphere -47 -39 7 7 ShinyColor 0.054 0.716 0.415 65 0.2 null sphere -48 -36 5 5 ShinyColor 0.568 0.834 0.65 135 0.64 null sphere -53 -11 6 6 ShinyColor 0.695 0.52 0.249 48 0.18 null sphere -54 -2 4 4 ShinyColor 0.08 0.154 0.941 76 0.4 null sphere -52 25 6 6 ShinyColor 0.957 0.522 0.473 92 0.29 null sphere -48 40 5 5 ShinyColor 0.541 0.436 0.075 120 0.52 null sphere -51 49 3 3 ShinyColor 0.745 0.681 0.268 104 0.12 null sphere -48 57 7 7 ShinyColor 0.451 0.187 0.387 139 0.56 null sphere -46 84 3 3 ShinyColor 0.527 0.134 0.488 92 0.65 null sphere -46 98 5 5 ShinyColor 0.053 0.496 0.214 50 0.12 null sphere -55 113 4 4 ShinyColor 0.958 0.655 0.581 54 0.41 null sphere -47 125 6 6 ShinyColor 0.943 0.875 0.88 66 0.33 null sphere -52 143 5 5 ShinyColor 0.943 0.798 0.91 26 0.08 null sphere -36 -147 6 6 ShinyColor 0.14 0.407 0.256 74 0.7 null sphere -29 -131 4 4 ShinyColor 0.821 0.853 0.259 40 0.23 null sphere -30 -118 4 4 ShinyColor 0.681 0.606 0.237 127 0.51 null sphere -38 -101 3 3 ShinyColor 0.681 0.651 0.547 141 0.09 null sphere -30 -87 5 5 ShinyColor 0.15 0.232 0.4 63 0.34 null sphere -34 -67 4 4 ShinyColor 0.726 0.148 0.886 145 0.7 null sphere -34 -49 7 7 ShinyColor 0.513 0.296 0.452 11 0.16 null sphere -30 -38 3 3 ShinyColor 0.349 0.508 0.238 113 0.65 null sphere -34 -21 7 7 ShinyColor 0.67 0.846 0.095 85 0.57 null sphere -37 -4 6 6 ShinyColor 0.902 0.969 0.077 55 0.01 null sphere -32 3 4 4 ShinyColor 0.627 0.462 0.807 131 0.15 null sphere -31 27 6 6 ShinyColor 0.638 0.783 0.553 111 0.24 null sphere -33 47 4 4 ShinyColor 0.284 0.363 0.238 56 0.5 null sphere -31 69 6 6 ShinyColor 0.957 0.515 0.246 116 0.26 null sphere -28 79 6 6 ShinyColor 0.675 0.787 0.382 36 0.36 null sphere -35 98 3 3 ShinyColor 0.603 0.509 0.414 127 0.61 null sphere -33 118 7 7 ShinyColor 0.327 0.747 0.51 87 0.36 null sphere -28 133 3 3 ShinyColor 0.598 0.531 0.968 148 0.53 null sphere -35 143 7 7 ShinyColor 0.399 0.423 0.434 123 0.18 null sphere -7 -147 4 4 ShinyColor 0.173 0.481 0.877 113 0.7 null sphere -6 -133 7 7 ShinyColor 0.586 0.154 0.927 86 0.64 null sphere -14 -118 3 3 ShinyColor 0.66 0.656 0.625 73 0.65 null sphere -13 -96 3 3 ShinyColor 0.659 0.951 0.634 82 0.49 null sphere -11 -82 7 7 ShinyColor 0.435 0.198 0.08 56 0.54 null sphere -16 -70 3 3 ShinyColor 0.221 0.915 0.662 128 0.27 null sphere -8 -42 5 5 ShinyColor 0.961 0.532 0.502 90 0.04 null sphere -12 -26 7 7 ShinyColor 0.296 0.11 0.028 58 0.33 null sphere -8 -8 6 6 ShinyColor 0.252 0.042 0.539 138 0.63 null sphere -9 6 4 4 ShinyColor 0.216 0.694 0.902 109 0.2 null sphere -11 20 5 5 ShinyColor 0.336 0.637 0.704 56 0.01 null sphere -12 40 7 7 ShinyColor 0.008 0.675 0.019 83 0.41 null sphere -16 57 4 4 ShinyColor 0.454 0.788 0.902 55 0.35 null sphere -12 72 6 6 ShinyColor 0.018 0.031 0.304 109 0.28 null sphere -10 85 4 4 ShinyColor 0.53 0.711 0.996 84 0.18 null sphere -8 107 3 3 ShinyColor 0.941 0.123 0.816 127 0.34 null sphere -8 122 6 6 ShinyColor 0.471 0.767 0.76 117 0.34 null sphere -12 129 6 6 ShinyColor 0.71 0.238 0.507 107 0.55 null sphere -14 140 7 7 ShinyColor 0.272 0.437 0.081 16 0.19 null sphere 0 -154 3 3 ShinyColor 0.837 0.925 0.799 93 0.29 null sphere 4 -131 5 5 ShinyColor 0.512 0.901 0.008 35 0.48 null sphere 6 -115 5 5 ShinyColor 0.203 0.706 0.547 46 0.69 null sphere -1 -99 7 7 ShinyColor 0.334 0.309 0.786 22 0.65 null sphere 2 -87 6 6 ShinyColor 0.128 0.513 0.651 23 0.51 null sphere -2 -75 3 3 ShinyColor 0.702 0.475 0.885 39 0.54 null sphere 1 -52 7 7 ShinyColor 0.33 0.5 0.135 20 0.44 null sphere 3 -35 4 4 ShinyColor 0.471 0.812 0.83 21 0.67 null sphere 5 -20 6 6 ShinyColor 0.036 0.498 0.207 139 0.52 null sphere 9 0 7 7 ShinyColor 0.928 0.773 0.458 12 0.63 null sphere -2 15 7 7 ShinyColor 0.52 0.283 0.615 54 0.28 null sphere 5 22 6 6 ShinyColor 0.599 0.458 0.204 122 0.26 null sphere -3 42 4 4 ShinyColor 0.129 0.979 0.997 89 0.02 null sphere -3 65 5 5 ShinyColor 0.965 0.609 0.774 88 0.68 null sphere 5 81 5 5 ShinyColor 0.577 0.645 0.024 118 0.32 null sphere -2 97 6 6 ShinyColor 0.455 0.706 0.761 69 0.2 null sphere 6 122 5 5 ShinyColor 0.462 0.929 0.035 37 0.36 null sphere 3 138 5 5 ShinyColor 0.219 0.441 0.106 39 0.15 null sphere 6 152 4 4 ShinyColor 0.736 0.244 0.93 76 0.49 null sphere 15 -153 5 5 ShinyColor 0.655 0.192 0.496 134 0.49 null sphere 16 -142 6 6 ShinyColor 0.574 0.797 0.874 123 0.01 null sphere 23 -130 6 6 ShinyColor 0.709 0.465 0.619 33 0.11 null sphere 15 -114 6 6 ShinyColor 0.656 0.689 0.961 25 0.41 null sphere 22 -97 7 7 ShinyColor 0.655 0.591 0.795 81 0.29 null sphere 22 -69 3 3 ShinyColor 0.563 0.495 0.645 29 0.49 null sphere 15 -53 3 3 ShinyColor 0.975 0.659 0.744 141 0.57 null sphere 17 -42 6 6 ShinyColor 0.451 0.865 0.206 39 0.27 null sphere 16 -21 7 7 ShinyColor 0.533 0.052 0.338 29 0.16 null sphere 15 -17 7 7 ShinyColor 0.31 0.219 0.647 10 0.1 null sphere 21 13 5 5 ShinyColor 0.368 0.362 0.452 87 0.43 null sphere 20 21 6 6 ShinyColor 0.509 0.731 0.73 128 0.64 null sphere 22 36 3 3 ShinyColor 0.883 0.529 0.35 81 0.41 null sphere 23 57 7 7 ShinyColor 0.547 0.626 0.261 150 0.14 null sphere 17 85 3 3 ShinyColor 0.067 0.041 0.772 121 0.63 null sphere 21 107 7 7 ShinyColor 0.906 0.458 0.509 40 0.7 null sphere 23 117 3 3 ShinyColor 0.876 0.598 0.645 23 0.42 null sphere 17 140 5 5 ShinyColor 0.481 0.301 0.578 40 0.07 null sphere 28 -150 7 7 ShinyColor 0.147 0.968 0.35 62 0.67 null sphere 36 -129 3 3 ShinyColor 0.809 0.091 0.828 142 0.48 null sphere 27 -112 5 5 ShinyColor 0.61 0.208 0.063 130 0.21 null sphere 27 -91 4 4 ShinyColor 0.007 0.919 0.273 55 0.22 null sphere 31 -80 4 4 ShinyColor 0.669 0.972 0.385 76 0.65 null sphere 35 -62 3 3 ShinyColor 0.351 0.812 0.283 64 0.47 null sphere 31 -43 6 6 ShinyColor 0.777 0.766 0.637 10 0.08 null sphere 36 -22 5 5 ShinyColor 0.216 0.114 0.414 91 0.43 null sphere 34 -12 7 7 ShinyColor 0.856 0.548 0.689 23 0.68 null sphere 36 12 5 5 ShinyColor 0.627 0.611 0.252 41 0.46 null sphere 36 24 6 6 ShinyColor 0.383 0.514 0.782 121 0.08 null sphere 34 33 4 4 ShinyColor 0.667 0.029 0.873 55 0.11 null sphere 35 53 5 5 ShinyColor 0.384 0.372 0.164 97 0.45 null sphere 35 74 4 4 ShinyColor 0.525 0.15 0.823 48 0.67 null sphere 26 87 7 7 ShinyColor 0.401 0.394 0.902 43 0.53 null sphere 31 105 7 7 ShinyColor 0.021 0.351 0.227 30 0.7 null sphere 36 116 6 6 ShinyColor 0.308 0.244 0.93 22 0.39 null sphere 28 132 6 6 ShinyColor 0.123 0.355 0.19 6 0.44 null sphere 34 139 3 3 ShinyColor 0.594 0.428 0.415 124 0.43 null sphere 42 -151 5 5 ShinyColor 0.709 0.648 0.336 127 0.14 null sphere 42 -138 6 6 ShinyColor 0.574 0.524 0.896 91 0.1 null sphere 47 -114 6 6 ShinyColor 0.486 0.67 0.172 48 0.2 null sphere 48 -86 4 4 ShinyColor 0.318 0.685 0.04 99 0.37 null sphere 42 -69 3 3 ShinyColor 0.139 0.263 0.56 8 0.61 null sphere 44 -48 3 3 ShinyColor 0.315 0.09 0.78 75 0.28 null sphere 42 -26 3 3 ShinyColor 0.779 0.293 0.724 124 0.67 null sphere 46 -21 6 6 ShinyColor 0.851 0.823 0.01 63 0.6 null sphere 45 -11 6 6 ShinyColor 0.836 0.746 0.818 94 0.16 null sphere 41 0 6 6 ShinyColor 0.336 0.38 0.949 11 0.14 null sphere 40 22 7 7 ShinyColor 0.005 0.562 0.815 5 0.69 null sphere 39 34 4 4 ShinyColor 0.824 0.234 0.065 98 0.6 null sphere 43 56 5 5 ShinyColor 0.184 0.932 0.837 22 0.7 null sphere 41 71 6 6 ShinyColor 0.292 0.299 0.3 18 0.22 null sphere 40 80 3 3 ShinyColor 0.525 0.193 0.411 90 0.59 null sphere 45 102 5 5 ShinyColor 0.149 0.974 0.416 149 0.07 null sphere 39 121 4 4 ShinyColor 0.874 1 0.616 28 0.07 null sphere 47 128 7 7 ShinyColor 0.061 0.662 0.009 72 0.17 null sphere 39 149 5 5 ShinyColor 0.627 0.687 0.495 9 0.47 null sphere 65 -154 3 3 ShinyColor 0.61 0.157 0.627 119 0.18 null sphere 58 -129 3 3 ShinyColor 0.209 0.357 0.056 103 0.43 null sphere 65 -117 7 7 ShinyColor 0.379 0.124 0.43 65 0.56 null sphere 62 -101 3 3 ShinyColor 0.505 0.379 0.188 22 0.11 null sphere 61 -82 4 4 ShinyColor 0.44 0.809 0.744 76 0.34 null sphere 66 -70 7 7 ShinyColor 0.838 0.486 0.96 42 0.64 null sphere 65 -52 3 3 ShinyColor 0.813 0.756 0.448 3 0.63 null sphere 63 -40 3 3 ShinyColor 0.967 0.444 0.862 108 0.66 null sphere 60 -24 3 3 ShinyColor 0.172 0.092 0.657 22 0.25 null sphere 64 -13 3 3 ShinyColor 0.73 0.158 0.896 29 0.11 null sphere 63 11 6 6 ShinyColor 0.664 0.33 0.237 80 0.02 null sphere 58 30 3 3 ShinyColor 0.276 0.688 0.222 141 0.58 null sphere 64 49 7 7 ShinyColor 0.849 0.973 0.001 113 0.1 null sphere 67 69 7 7 ShinyColor 0.731 0.436 0.221 146 0.68 null sphere 66 79 6 6 ShinyColor 0.968 0.643 0.348 31 0.4 null sphere 57 93 3 3 ShinyColor 0.916 0.724 0.99 138 0.33 null sphere 67 101 7 7 ShinyColor 0.887 0.81 0.284 18 0.55 null sphere 67 109 6 6 ShinyColor 0.583 0.05 0.379 140 0.17 null sphere 57 126 7 7 ShinyColor 0.031 0.942 0.698 6 0.6 null sphere 67 136 4 4 ShinyColor 0.783 0.047 0.05 12 0.11 null sphere 76 -151 4 4 ShinyColor 0.334 0.444 0.641 42 0.48 null sphere 75 -132 4 4 ShinyColor 0.732 0.563 0.034 114 0.29 null sphere 71 -123 3 3 ShinyColor 0.138 0.407 0.205 33 0.39 null sphere 68 -100 7 7 ShinyColor 0.348 0.118 0.356 149 0.27 null sphere 76 -87 4 4 ShinyColor 0.082 0.472 0.768 20 0.15 null sphere 69 -75 6 6 ShinyColor 0.294 0.684 0.082 76 0.63 null sphere 72 -57 4 4 ShinyColor 0.318 0.078 0.437 102 0.04 null sphere 75 -41 5 5 ShinyColor 0.856 0.65 0.928 95 0.54 null sphere 68 -27 4 4 ShinyColor 0.759 0.586 0.041 127 0.06 null sphere 74 -4 4 4 ShinyColor 0.939 0.654 0.294 58 0.23 null sphere 68 8 6 6 ShinyColor 0.498 0.867 0.412 65 0.34 null sphere 71 20 7 7 ShinyColor 0.661 0.02 0.456 106 0.61 null sphere 71 36 7 7 ShinyColor 0.563 0.1 0.622 129 0.33 null sphere 75 66 4 4 ShinyColor 0.434 0.49 0.096 128 0.64 null sphere 73 78 4 4 ShinyColor 0.363 0.551 0.308 124 0.17 null sphere 77 82 5 5 ShinyColor 0.854 0.079 0.624 73 0.66 null sphere 69 96 5 5 ShinyColor 0.384 0.204 0.908 74 0.03 null sphere 68 108 7 7 ShinyColor 0.364 0.68 0.508 102 0.35 null sphere 77 124 4 4 ShinyColor 0.385 0.5 0.44 4 0.69 null sphere 72 141 7 7 ShinyColor 0.82 0.915 0.082 110 0.28 null sphere 73 146 7 7 ShinyColor 0.419 0.573 0.547 140 0.17 null sphere 95 -152 5 5 ShinyColor 0.293 0.835 0.888 47 0.57 null sphere 88 -138 4 4 ShinyColor 0.03 0.709 0.37 115 0.07 null sphere 92 -124 3 3 ShinyColor 0.985 0.284 0.723 137 0.37 null sphere 92 -108 7 7 ShinyColor 0.064 0.971 0.769 143 0.19 null sphere 93 -89 3 3 ShinyColor 0.971 0.821 0.72 53 0.41 null sphere 95 -79 5 5 ShinyColor 0.062 0.373 0.841 119 0.2 null sphere 95 -54 4 4 ShinyColor 0.818 0.052 0.204 89 0 null sphere 88 -46 7 7 ShinyColor 0.231 0.128 0.777 143 0.33 null sphere 89 -34 3 3 ShinyColor 0.869 0.304 0.536 108 0.06 null sphere 93 -7 3 3 ShinyColor 0.879 0.521 0.119 15 0.07 null sphere 89 -3 6 6 ShinyColor 0.229 0.574 0.845 3 0.37 null sphere 89 16 6 6 ShinyColor 0.462 0.495 0.908 150 0.14 null sphere 89 34 5 5 ShinyColor 0.352 0.522 0.043 72 0.42 null sphere 87 49 7 7 ShinyColor 0.881 0.655 0.512 110 0.46 null sphere 86 62 6 6 ShinyColor 0.625 0.799 0.159 81 0.56 null sphere 92 75 3 3 ShinyColor 0.138 0 0.696 29 0.33 null sphere 86 88 6 6 ShinyColor 0.004 0.344 0.413 79 0.04 null sphere 87 95 7 7 ShinyColor 0.772 0.722 0.688 140 0.18 null sphere 94 112 7 7 ShinyColor 0.959 0.238 0.946 99 0.29 null sphere 94 128 5 5 ShinyColor 0.512 0.487 0.762 139 0 null sphere 121 -154 5 5 ShinyColor 0.71 0.818 0.133 97 0.05 null sphere 120 -130 7 7 ShinyColor 0.815 0.958 0.827 72 0.26 null sphere 112 -110 7 7 ShinyColor 0.643 0.214 0.603 87 0.15 null sphere 119 -98 6 6 ShinyColor 0.219 0.08 0.483 55 0.51 null sphere 118 -81 6 6 ShinyColor 0.54 0.227 0.647 57 0.49 null sphere 112 -65 4 4 ShinyColor 0.961 0.798 0.551 86 0.26 null sphere 121 -42 4 4 ShinyColor 0.6 0.762 0.448 15 0.08 null sphere 111 -18 3 3 ShinyColor 0.776 0.369 0.278 65 0.52 null sphere 114 -5 6 6 ShinyColor 0.682 0.054 0.4 37 0.43 null sphere 117 18 5 5 ShinyColor 0.98 0.301 0.305 66 0.27 null sphere 111 25 5 5 ShinyColor 0.072 0.281 0.795 54 0.49 null sphere 112 46 5 5 ShinyColor 0.753 0.558 0.472 25 0.56 null sphere 119 55 6 6 ShinyColor 0.335 0.681 0.922 97 0.07 null sphere 118 71 5 5 ShinyColor 0.131 0.399 0.845 140 0.53 null sphere 111 85 4 4 ShinyColor 0.492 0.451 0.889 145 0.42 null sphere 116 99 6 6 ShinyColor 0.143 0.806 0.436 12 0.31 null sphere 116 106 6 6 ShinyColor 0.068 0.381 0.095 138 0.21 null sphere 119 130 3 3 ShinyColor 0.094 0.41 0.612 148 0.26 null sphere 115 142 3 3 ShinyColor 0.183 0.882 0.939 94 0.67 null sphere 136 -151 3 3 ShinyColor 0.957 0.796 0.107 131 0.07 null sphere 136 -129 5 5 ShinyColor 0.961 0.28 0.106 142 0.46 null sphere 127 -125 6 6 ShinyColor 0.266 0.944 0.678 134 0.63 null sphere 129 -101 5 5 ShinyColor 0.218 0.906 0.261 51 0.55 null sphere 128 -100 3 3 ShinyColor 0.603 0.191 0.426 107 0.09 null sphere 135 -91 3 3 ShinyColor 0.481 0.43 0.036 26 0.22 null sphere 131 -78 3 3 ShinyColor 0.831 0.35 0.074 16 0.47 null sphere 137 -55 6 6 ShinyColor 0.098 0.563 0.878 80 0.19 null sphere 130 -45 6 6 ShinyColor 0.397 0.236 0.199 67 0.27 null sphere 133 -27 5 5 ShinyColor 0.783 0.712 0.841 129 0.57 null sphere 129 -17 6 6 ShinyColor 0.946 0.566 0.231 124 0.06 null sphere 134 5 5 5 ShinyColor 0.467 0.204 0.828 101 0.45 null sphere 137 24 3 3 ShinyColor 0.488 0.62 0.773 51 0.33 null sphere 129 37 4 4 ShinyColor 0.855 0.781 0.879 15 0.42 null sphere 131 58 4 4 ShinyColor 0.034 0.134 0.602 130 0.56 null sphere 137 68 7 7 ShinyColor 0.041 0.724 0.542 123 0.03 null sphere 136 76 4 4 ShinyColor 0.21 0.06 0.005 16 0.1 null sphere 135 90 6 6 ShinyColor 0.133 0.088 0.863 111 0.67 null sphere 127 108 4 4 ShinyColor 0.959 0.686 0.934 77 0.35 null sphere 136 135 6 6 ShinyColor 0.114 0.094 0.786 20 0.13 null ================================================ FILE: scenes/bunny.scn ================================================ cameraPosition 1.711963 2.333467 10.445557 cameraUp 0.042266 0.963630 -0.263875 cameraLookAt 0.421718 -0.592129 -2.875471 cameraScreenWidth 48 light 300 100 300 0.9 sphere -0.25242182248784 1.4702436565844 -0.14246467095896 0.2 ShinyColor 1 1 1 50 0 null sphere -0.83458205052257 1.6822529555343 -0.11840810560874 0.2 ShinyColor 1 1 1 50 0 null sphere -1.856726474684 2.2717253410226 1.4246734531152 0.2 ShinyColor 1 1 1 50 0 null sphere 0.83882032624974 1.6473795892172 0.40919217834931 0.2 ShinyColor 1 1 1 50 0 null sphere 0.3474779591325 1.5268804264467 -0.13727260649489 0.2 ShinyColor 1 1 1 50 0 null sphere 2.5284911716762 0.63648463806123 1.0173127287044 0.2 ShinyColor 1 1 1 50 0 null sphere 2.8329192180866 0.55756525820725 0.38509234579522 0.2 ShinyColor 1 1 1 50 0 null sphere -0.20733739605809 0.6056783889077 1.3643157037203 0.2 ShinyColor 1 1 1 50 0 null sphere 2.4146118910974 1.1357016362823 0.44847879946084 0.2 ShinyColor 1 1 1 50 0 null sphere -1.6741821415678 2.9018256309423 -1.0968959210681 0.2 ShinyColor 1 1 1 50 0 null sphere 3.0327271655459 0.020100051767448 -0.14562317684128 0.2 ShinyColor 1 1 1 50 0 null sphere -0.27202186583973 3.3779379422982 -0.63999424822923 0.2 ShinyColor 1 1 1 50 0 null sphere -2.572841965892 1.8066028994489 1.6690898877617 0.2 ShinyColor 1 1 1 50 0 null sphere -1.8806965056265 1.2862715057406 1.8741331668889 0.2 ShinyColor 1 1 1 50 0 null sphere 1.3561230156874 1.6744648588381 0.40599040526313 0.2 ShinyColor 1 1 1 50 0 null sphere 2.8491876867407 0.55462308834427 -0.087904726882279 0.2 ShinyColor 1 1 1 50 0 null sphere 2.7743786912541 0.4256435536158 -0.56561792478131 0.2 ShinyColor 1 1 1 50 0 null sphere -2.8583622442124 1.8091123972732 0.37475148407093 0.2 ShinyColor 1 1 1 50 0 null sphere -2.4439056983674 0.64219590897172 0.97672809147689 0.2 ShinyColor 1 1 1 50 0 null sphere -1.8098680928957 2.7618129592277 0.40862970469904 0.2 ShinyColor 1 1 1 50 0 null sphere -2.344261327861 2.6198965305429 0.92978317528086 0.2 ShinyColor 1 1 1 50 0 null sphere 1.3563393517067 1.3058282818886 1.1329659646418 0.2 ShinyColor 1 1 1 50 0 null sphere -1.1355054534198 2.2792105672916 0.43433042379622 0.2 ShinyColor 1 1 1 50 0 null sphere -2.2754232065081 1.7404906119397 1.856480147711 0.2 ShinyColor 1 1 1 50 0 null sphere 0.84288744341327 1.5407691988881 0.82295644893245 0.2 ShinyColor 1 1 1 50 0 null sphere -0.9745947222372 1.5999154665748 0.8014526486104 0.2 ShinyColor 1 1 1 50 0 null sphere -2.4679189965137 0.021181731864132 -0.60581315717405 0.2 ShinyColor 1 1 1 50 0 null sphere 1.8530468521035 1.53038506996 0.43671012000893 0.2 ShinyColor 1 1 1 50 0 null sphere -2.8253061004578 1.2106837005844 -0.076222581838104 0.2 ShinyColor 1 1 1 50 0 null sphere -0.17376204585705 3.7515502476925 -0.70619307014622 0.2 ShinyColor 1 1 1 50 0 null sphere -2.3537801127118 2.2255159672923 1.4822188342587 0.2 ShinyColor 1 1 1 50 0 null sphere 0.30719619233203 0.6925156670694 1.4307741288605 0.2 ShinyColor 1 1 1 50 0 null sphere 0.2230414808101 3.8733906937829 -1.1582055489481 0.2 ShinyColor 1 1 1 50 0 null sphere -0.53287983795578 3.2737505153857 -0.9294085748977 0.2 ShinyColor 1 1 1 50 0 null sphere 1.350368477573 1.5462208665754 0.84199401863407 0.2 ShinyColor 1 1 1 50 0 null sphere -0.78534397252156 1.6307649829321 0.39335638173387 0.2 ShinyColor 1 1 1 50 0 null sphere 1.9149189536337 1.1915163292712 1.0369993064641 0.2 ShinyColor 1 1 1 50 0 null sphere -0.80572282554307 3.232560137304 -0.26491085790347 0.2 ShinyColor 1 1 1 50 0 null sphere -2.78740402987 1.7340437985634 -0.059910845980126 0.2 ShinyColor 1 1 1 50 0 null sphere -1.3829938595408 2.2786913608452 0.99853476222602 0.2 ShinyColor 1 1 1 50 0 null sphere 3.0135597942326 0.048872742339213 0.39807250695541 0.2 ShinyColor 1 1 1 50 0 null sphere 2.8825467009224 -0.0065092786109505 0.87046383877877 0.2 ShinyColor 1 1 1 50 0 null sphere -1.3415871454398 2.6930181050786 0.36501636320078 0.2 ShinyColor 1 1 1 50 0 null sphere 0.20655667613665 2.9183537028196 -0.67568969141976 0.2 ShinyColor 1 1 1 50 0 null sphere -2.059563126414 -1.1557294805307 0.42087432339349 0.2 ShinyColor 1 1 1 50 0 null sphere -1.817612922388 2.7229157429509 -0.1136919803872 0.2 ShinyColor 1 1 1 50 0 null sphere -2.8166093924804 1.1373890572331 1.4180103037196 0.2 ShinyColor 1 1 1 50 0 null sphere 2.2802672230894 1.1094384435349 0.87301660380694 0.2 ShinyColor 1 1 1 50 0 null sphere 2.9116655291251 -0.029613965476097 -0.60620256200886 0.2 ShinyColor 1 1 1 50 0 null sphere -1.9393668340706 3.1576213402059 -1.2074868941529 0.2 ShinyColor 1 1 1 50 0 null sphere 0.83085916073815 1.3155634027588 1.1398887172605 0.2 ShinyColor 1 1 1 50 0 null sphere 2.3970886735311 0.041344248866301 1.4583786049279 0.2 ShinyColor 1 1 1 50 0 null sphere 0.3407282753292 3.0201614335194 -0.99474205273735 0.2 ShinyColor 1 1 1 50 0 null sphere -2.2070610243977 3.4167053569633 -2.1436161170262 0.2 ShinyColor 1 1 1 50 0 null sphere -2.5975475393002 0.56518028608789 -0.21835534654224 0.2 ShinyColor 1 1 1 50 0 null sphere 2.7012138495145 0.78398253604491 0.53137876207061 0.2 ShinyColor 1 1 1 50 0 null sphere 0.81303307274482 -2.1458561738304 1.6656717786562 0.2 ShinyColor 1 1 1 50 0 null sphere 1.3752903870006 -2.1037571844675 1.6607825846192 0.2 ShinyColor 1 1 1 50 0 null sphere -1.3212515596221 2.8245936720391 -0.081198310282845 0.2 ShinyColor 1 1 1 50 0 null sphere -2.845122479829 1.1462588340259 0.9260189285444 0.2 ShinyColor 1 1 1 50 0 null sphere -1.4764077526903 1.5588548901047 1.3638397644778 0.2 ShinyColor 1 1 1 50 0 null sphere 0.33553621086512 1.5265342888158 0.41083633209627 0.2 ShinyColor 1 1 1 50 0 null sphere -1.7845567786334 2.66125997744 0.97041107971227 0.2 ShinyColor 1 1 1 50 0 null sphere -0.7898004945199 3.3365312281972 -0.60330365934975 0.2 ShinyColor 1 1 1 50 0 null sphere -1.3797055520469 -2.1235735638387 1.4892713884891 0.2 ShinyColor 1 1 1 50 0 null sphere -2.2061524131165 2.8079357985502 -1.0959873097869 0.2 ShinyColor 1 1 1 50 0 null sphere -0.7813201225619 2.7572699028216 -0.098808062256843 0.2 ShinyColor 1 1 1 50 0 null sphere -0.74956199492329 -2.1702156096077 1.4822621014626 0.2 ShinyColor 1 1 1 50 0 null sphere -0.0013855056496686 -0.1584204313891 1.8146840287752 0.2 ShinyColor 1 1 1 50 0 null sphere 0.48498113302283 1.4687725716529 0.78747734176125 0.2 ShinyColor 1 1 1 50 0 null sphere -2.7202100622641 -0.10619691632125 -0.063848161532052 0.2 ShinyColor 1 1 1 50 0 null sphere -1.8813455136845 2.831819295085 -0.66275279746344 0.2 ShinyColor 1 1 1 50 0 null sphere -1.8423184957962 2.1873110262774 -0.69303984017056 0.2 ShinyColor 1 1 1 50 0 null sphere 1.9142266783719 0.60442363999555 1.4385622255566 0.2 ShinyColor 1 1 1 50 0 null sphere -0.48022365084925 3.4138497215081 -0.34166687756409 0.2 ShinyColor 1 1 1 50 0 null sphere -1.7759898722676 1.0762524981686 -0.79238134024992 0.2 ShinyColor 1 1 1 50 0 null sphere -1.8549957865293 3.3780677439098 -2.2559810454696 0.2 ShinyColor 1 1 1 50 0 null sphere -2.8356036949782 2.3245978641484 0.45847352355419 0.2 ShinyColor 1 1 1 50 0 null sphere 1.3920780621011 1.0175389025207 1.313866144011 0.2 ShinyColor 1 1 1 50 0 null sphere 2.4403558773984 0.032301403258032 -1.1353171981023 0.2 ShinyColor 1 1 1 50 0 null sphere 1.3450033442935 0.58698695683702 1.5190824919537 0.2 ShinyColor 1 1 1 50 0 null sphere -1.9584476709761 1.6574175805144 1.8089294906608 0.2 ShinyColor 1 1 1 50 0 null sphere 1.3569883597647 1.6672825029962 -0.11451405726068 0.2 ShinyColor 1 1 1 50 0 null sphere 1.8955352463012 -2.163595727416 1.4726135150002 0.2 ShinyColor 1 1 1 50 0 null sphere 1.7383022274474 -0.058343388843995 1.8399088086298 0.2 ShinyColor 1 1 1 50 0 null sphere 0.83964240312322 0.99884747045 1.3742238934059 0.2 ShinyColor 1 1 1 50 0 null sphere -2.4118447003017 1.1097413139619 -0.52079310157477 0.2 ShinyColor 1 1 1 50 0 null sphere -2.3067919293119 2.2477553100801 -0.5336001939195 0.2 ShinyColor 1 1 1 50 0 null sphere 1.3502819431653 0.60152473733644 -1.2694022628871 0.2 ShinyColor 1 1 1 50 0 null sphere 0.26444819491112 1.1911269244364 1.0541763863994 0.2 ShinyColor 1 1 1 50 0 null sphere 0.84184903052045 1.6394616909095 -0.10763457184578 0.2 ShinyColor 1 1 1 50 0 null sphere -2.7666790392176 2.1815997553669 0.89092922620801 0.2 ShinyColor 1 1 1 50 0 null sphere 0.76855438716922 1.3391007616626 -0.78995837683335 0.2 ShinyColor 1 1 1 50 0 null sphere -1.8967486382613 3.7468773896748 -2.7135317263665 0.2 ShinyColor 1 1 1 50 0 null sphere -0.19418416608243 1.3814593542487 0.54193595981424 0.2 ShinyColor 1 1 1 50 0 null sphere -2.5717602857953 2.4516736419067 1.0526187670602 0.2 ShinyColor 1 1 1 50 0 null sphere -2.7459107813612 -0.058473190455597 0.40936524716478 0.2 ShinyColor 1 1 1 50 0 null sphere -0.22499041523596 1.3006362174245 -0.64034038586017 0.2 ShinyColor 1 1 1 50 0 null sphere -0.23070168614644 1.1104768564277 0.95946447713384 0.2 ShinyColor 1 1 1 50 0 null sphere -2.279014384429 1.2257406875302 1.8586867751083 0.2 ShinyColor 1 1 1 50 0 null sphere 2.538009956527 0.69982782452298 -0.68680936281367 0.2 ShinyColor 1 1 1 50 0 null sphere -1.8311988244023 0.024599840969649 -1.0956411721559 0.2 ShinyColor 1 1 1 50 0 null sphere -2.1753894311668 -0.049387077643461 -0.9578783950424 0.2 ShinyColor 1 1 1 50 0 null sphere -2.4677026604944 0.12065303355509 0.97984333015534 0.2 ShinyColor 1 1 1 50 0 null sphere -2.6094460203637 1.9288327503741 -0.28213120504266 0.2 ShinyColor 1 1 1 50 0 null sphere -0.16839691257751 -2.1870898191159 1.8585569734967 0.2 ShinyColor 1 1 1 50 0 null sphere 0.33125275768226 -2.160653557553 1.8709746610066 0.2 ShinyColor 1 1 1 50 0 null sphere -1.7441452102213 3.404417471065 -2.816074999532 0.2 ShinyColor 1 1 1 50 0 null sphere -0.19314575318961 3.4000042162706 -1.0817956669184 0.2 ShinyColor 1 1 1 50 0 null sphere -1.335313400879 1.8470577350649 1.0645605153275 0.2 ShinyColor 1 1 1 50 0 null sphere -1.783691434556 1.7608694649612 1.5689695780127 0.2 ShinyColor 1 1 1 50 0 null sphere -0.74203350145038 2.7309201756664 -0.68949192945344 0.2 ShinyColor 1 1 1 50 0 null sphere -1.2609370774311 -0.90270287231466 1.3526335586761 0.2 ShinyColor 1 1 1 50 0 null sphere -0.68916097832452 -0.070588007538446 -1.3425671046267 0.2 ShinyColor 1 1 1 50 0 null sphere 0.35046339619934 -0.0063362097954816 1.9547832348976 0.2 ShinyColor 1 1 1 50 0 null sphere 0.83968567032708 0.073881186174522 1.9826040469843 0.2 ShinyColor 1 1 1 50 0 null sphere 2.9317847789234 -1.0845981973729 0.91459638672343 0.2 ShinyColor 1 1 1 50 0 null sphere 2.3347838999622 1.063748276251 -0.53476840842392 0.2 ShinyColor 1 1 1 50 0 null sphere -0.33718227486391 -2.0443513135577 1.5867523988022 0.2 ShinyColor 1 1 1 50 0 null sphere -1.2353661599455 1.1354420330591 1.1652432987268 0.2 ShinyColor 1 1 1 50 0 null sphere 2.9274580585367 -0.55245485700874 -0.61598095008287 0.2 ShinyColor 1 1 1 50 0 null sphere 2.3846709860212 -2.1535577361188 0.95431567987362 0.2 ShinyColor 1 1 1 50 0 null sphere -0.26721920621046 0.15617540793016 -1.3898148912498 0.2 ShinyColor 1 1 1 50 0 null sphere 2.7504086603116 0.55371447706305 0.78977050356622 0.2 ShinyColor 1 1 1 50 0 null sphere -0.13460522635713 -0.079241448311908 -1.6236741281527 0.2 ShinyColor 1 1 1 50 0 null sphere 0.34912211287946 -2.0997333345078 1.506924407667 0.2 ShinyColor 1 1 1 50 0 null sphere 1.2614976408295 -1.9283519399894 1.806939199283 0.2 ShinyColor 1 1 1 50 0 null sphere 2.9705089263847 -2.0116845746378 0.83866244393629 0.2 ShinyColor 1 1 1 50 0 null sphere 0.088956416025287 3.8471275010354 -0.8536909681299 0.2 ShinyColor 1 1 1 50 0 null sphere 0.85504552769998 -1.5498071733542 1.9660759751069 0.2 ShinyColor 1 1 1 50 0 null sphere 1.3275233939311 -1.5854593493409 1.9403752560098 0.2 ShinyColor 1 1 1 50 0 null sphere -2.7229791633116 0.58123241872267 0.38318858882506 0.2 ShinyColor 1 1 1 50 0 null sphere -1.3520578087757 -1.9602398692396 0.95790685779461 0.2 ShinyColor 1 1 1 50 0 null sphere -0.18328083070786 -1.6443460138043 1.3608975946148 0.2 ShinyColor 1 1 1 50 0 null sphere 0.83998854075416 0.58728982726409 1.5414083691492 0.2 ShinyColor 1 1 1 50 0 null sphere 0.17202944745053 -1.6279477435386 1.5662437441691 0.2 ShinyColor 1 1 1 50 0 null sphere 0.39974474140422 -1.5094821393499 1.8372262419901 0.2 ShinyColor 1 1 1 50 0 null sphere -1.3604083791221 2.339395247871 -0.47960272349309 0.2 ShinyColor 1 1 1 50 0 null sphere -2.9317434219714 1.1571189021966 0.41334582992057 0.2 ShinyColor 1 1 1 50 0 null sphere -1.5781289489824 2.8596833743755 -1.6331063785957 0.2 ShinyColor 1 1 1 50 0 null sphere -2.6046000935306 0.62809080051097 0.57490556916113 0.2 ShinyColor 1 1 1 50 0 null sphere 2.5550139676468 -1.6558118228292 1.1527390768091 0.2 ShinyColor 1 1 1 50 0 null sphere 2.9490483932665 -1.570099491968 1.0002221831768 0.2 ShinyColor 1 1 1 50 0 null sphere -0.78188259621218 1.0759496277416 1.0064959277376 0.2 ShinyColor 1 1 1 50 0 null sphere -1.8478566978912 2.7863021966166 -2.2091659308852 0.2 ShinyColor 1 1 1 50 0 null sphere 2.2769789155954 0.46869442146378 1.3527200930839 0.2 ShinyColor 1 1 1 50 0 null sphere -0.17328610661451 3.730176248982 -0.99504492316442 0.2 ShinyColor 1 1 1 50 0 null sphere -2.2015228223027 -0.047569855081033 1.2937036270089 0.2 ShinyColor 1 1 1 50 0 null sphere 0.27085174108348 0.27135270462495 1.6106791625408 0.2 ShinyColor 1 1 1 50 0 null sphere -1.1986323038622 -1.5395961132416 0.90663522121184 0.2 ShinyColor 1 1 1 50 0 null sphere -0.77058985600281 -1.5898726041354 1.3258078922784 0.2 ShinyColor 1 1 1 50 0 null sphere -2.5059508687131 1.008971996155 1.6608691190269 0.2 ShinyColor 1 1 1 50 0 null sphere 1.7229856372783 1.5038622739893 0.77255015642703 0.2 ShinyColor 1 1 1 50 0 null sphere -0.58423800894628 1.3602151571498 0.71548071452604 0.2 ShinyColor 1 1 1 50 0 null sphere -1.4731627124003 1.1933768190375 1.364402238128 0.2 ShinyColor 1 1 1 50 0 null sphere -1.9403187125557 2.6799081423068 -1.7169149524867 0.2 ShinyColor 1 1 1 50 0 null sphere -1.3871042439082 2.6069596365865 0.86574771355723 0.2 ShinyColor 1 1 1 50 0 null sphere -0.97853203778913 -1.5557780474879 1.2038809117803 0.2 ShinyColor 1 1 1 50 0 null sphere 0.63438278797667 3.7788951205366 -1.5657826093782 0.2 ShinyColor 1 1 1 50 0 null sphere -2.7189553133519 0.59460198471767 0.0011391786766568 0.2 ShinyColor 1 1 1 50 0 null sphere -2.3193826856372 2.6678798596317 -0.083188601660742 0.2 ShinyColor 1 1 1 50 0 null sphere -0.18085786729129 1.4602056652872 0.26792475772253 0.2 ShinyColor 1 1 1 50 0 null sphere -2.4380213586414 2.6854463444018 0.40200982250734 0.2 ShinyColor 1 1 1 50 0 null sphere -2.3433094493759 0.51360577907805 -0.63363396926073 0.2 ShinyColor 1 1 1 50 0 null sphere 0.022800861312161 1.3235245682703 0.69665948084376 0.2 ShinyColor 1 1 1 50 0 null sphere -1.7762927426947 2.9263148683312 -2.6744614412743 0.2 ShinyColor 1 1 1 50 0 null sphere -2.2974894804804 -0.943027906319 0.38959213499742 0.2 ShinyColor 1 1 1 50 0 null sphere 0.68002968805669 3.5003841292427 -1.5115688029324 0.2 ShinyColor 1 1 1 50 0 null sphere -1.3516684039409 -1.6277314075193 -0.04307990367574 0.2 ShinyColor 1 1 1 50 0 null sphere 0.30230699829502 1.2934971287864 -0.70061160084734 0.2 ShinyColor 1 1 1 50 0 null sphere -1.9127142364883 2.3402605919484 -1.1454417238072 0.2 ShinyColor 1 1 1 50 0 null sphere -0.68639187727701 1.3357691869648 -0.77979058392453 0.2 ShinyColor 1 1 1 50 0 null sphere -1.865206846642 2.4173627492399 -1.6081412019643 0.2 ShinyColor 1 1 1 50 0 null sphere -1.238135260993 -1.5913869562707 0.40348090743883 0.2 ShinyColor 1 1 1 50 0 null sphere 0.36638572722252 -1.0430184144564 1.9344043818761 0.2 ShinyColor 1 1 1 50 0 null sphere 0.83574835477516 -1.0649548868171 2.0771861546382 0.2 ShinyColor 1 1 1 50 0 null sphere 1.4051014904652 -1.0817425619176 2.0290297567339 0.2 ShinyColor 1 1 1 50 0 null sphere 0.47901025888914 1.0664308428907 1.271810421852 0.2 ShinyColor 1 1 1 50 0 null sphere 3.4302229674749 -1.5822143090509 0.78669853209164 0.2 ShinyColor 1 1 1 50 0 null sphere 1.3225476654863 0.036801192460233 1.9533121499661 0.2 ShinyColor 1 1 1 50 0 null sphere -0.76652273883928 -1.0766802990651 1.3989294668142 0.2 ShinyColor 1 1 1 50 0 null sphere -0.16956512708193 -1.0492488918133 1.4094001301501 0.2 ShinyColor 1 1 1 50 0 null sphere -0.54378317333034 3.0127194744542 -0.91915424758115 0.2 ShinyColor 1 1 1 50 0 null sphere -1.3295155955608 -1.163474310023 1.1144043341827 0.2 ShinyColor 1 1 1 50 0 null sphere -2.1972393691198 2.7360257057227 -0.62169222099335 0.2 ShinyColor 1 1 1 50 0 null sphere -1.2906616464879 1.3059148162963 -0.77477158827592 0.2 ShinyColor 1 1 1 50 0 null sphere 1.864296325109 0.59101080679668 -1.170623236458 0.2 ShinyColor 1 1 1 50 0 null sphere 3.4114450009965 -1.154647800434 0.77847776335685 0.2 ShinyColor 1 1 1 50 0 null sphere -2.6621022074703 0.090539059663439 -0.23843132913667 0.2 ShinyColor 1 1 1 50 0 null sphere -2.208272506106 3.002032475099 -1.6525333531322 0.2 ShinyColor 1 1 1 50 0 null sphere -0.80944380507566 1.519957673828 -0.5071206651527 0.2 ShinyColor 1 1 1 50 0 null sphere -0.25545052675855 -0.54055637594523 1.5166162613333 0.2 ShinyColor 1 1 1 50 0 null sphere -1.2788496998322 0.60680333620825 -1.1683733418569 0.2 ShinyColor 1 1 1 50 0 null sphere -2.0329537960356 0.76728139535213 -0.77338703775216 0.2 ShinyColor 1 1 1 50 0 null sphere -1.2970651926603 -0.014730047345741 -1.2815603471738 0.2 ShinyColor 1 1 1 50 0 null sphere -1.0133621369023 -1.1383793317799 1.2527728521504 0.2 ShinyColor 1 1 1 50 0 null sphere -0.94846133110134 2.285916983891 -0.067352805045304 0.2 ShinyColor 1 1 1 50 0 null sphere -2.3798269694399 1.6143234454626 -0.56851682744042 0.2 ShinyColor 1 1 1 50 0 null sphere -0.71018883940404 0.58889071380718 -1.2249235773115 0.2 ShinyColor 1 1 1 50 0 null sphere 0.8249748210122 0.036411787625427 -1.7884789076833 0.2 ShinyColor 1 1 1 50 0 null sphere 0.84011834236576 0.59771722339611 -1.3269909112345 0.2 ShinyColor 1 1 1 50 0 null sphere -0.17718015496257 2.854318241096 -0.63320129722206 0.2 ShinyColor 1 1 1 50 0 null sphere 0.32852692383861 0.60425057118008 -1.3074774022903 0.2 ShinyColor 1 1 1 50 0 null sphere -2.7318056729005 1.9693308531939 1.339307259885 0.2 ShinyColor 1 1 1 50 0 null sphere -1.8217665739592 1.5605855782594 -0.73885980906605 0.2 ShinyColor 1 1 1 50 0 null sphere 3.1047237927811 -0.9004097105097 0.5725691401523 0.2 ShinyColor 1 1 1 50 0 null sphere -0.67362805213615 1.0749544820526 -0.99612660326111 0.2 ShinyColor 1 1 1 50 0 null sphere 0.63697882020871 3.2544533424609 -1.2263081278352 0.2 ShinyColor 1 1 1 50 0 null sphere -1.2057281252964 2.818103591459 -0.48721775137374 0.2 ShinyColor 1 1 1 50 0 null sphere 1.3282156691929 0.042815333797789 -1.6712680524067 0.2 ShinyColor 1 1 1 50 0 null sphere -2.2479917992562 -0.84805639383024 0.78803981541153 0.2 ShinyColor 1 1 1 50 0 null sphere -1.6061228298845 2.4926476839691 -1.0156401122053 0.2 ShinyColor 1 1 1 50 0 null sphere -1.8783600766177 -1.0276152898796 0.96154130291947 0.2 ShinyColor 1 1 1 50 0 null sphere -1.2606774742079 -0.4965103624083 -1.2379902728794 0.2 ShinyColor 1 1 1 50 0 null sphere -0.79131484665525 -0.58010260027996 1.4903098013819 0.2 ShinyColor 1 1 1 50 0 null sphere 0.29477850482211 -0.57776617127112 2.0462501038731 0.2 ShinyColor 1 1 1 50 0 null sphere 0.8388635934536 -0.55678157739547 2.1356401470629 0.2 ShinyColor 1 1 1 50 0 null sphere 1.4041496119801 -0.48162644427795 2.0498845489979 0.2 ShinyColor 1 1 1 50 0 null sphere -2.5804137265688 2.3239055888865 -0.1117016890093 0.2 ShinyColor 1 1 1 50 0 null sphere 2.6998292989907 0.78199224466701 -0.25045961181178 0.2 ShinyColor 1 1 1 50 0 null sphere -1.8570293451111 -0.51883623960384 1.3962036329705 0.2 ShinyColor 1 1 1 50 0 null sphere -1.3199102763023 -0.56526194935347 1.518346949488 0.2 ShinyColor 1 1 1 50 0 null sphere 2.7489375753801 -0.18247699673932 -0.96527708690371 0.2 ShinyColor 1 1 1 50 0 null sphere -1.682922116749 -2.2793787649649 1.3491721823667 0.2 ShinyColor 1 1 1 50 0 null sphere -1.9246127175519 3.2975042103089 -1.7208955352425 0.2 ShinyColor 1 1 1 50 0 null sphere -1.5752733135271 2.7439003368266 -1.264859206481 0.2 ShinyColor 1 1 1 50 0 null sphere -1.5964309762183 3.0302859592243 -2.0798835257296 0.2 ShinyColor 1 1 1 50 0 null sphere -1.873384348173 0.0020143605509103 1.4605419651212 0.2 ShinyColor 1 1 1 50 0 null sphere -1.0368994958061 2.0324577036363 0.27489077754516 0.2 ShinyColor 1 1 1 50 0 null sphere -2.2944607762097 0.77026683241897 1.4428456787395 0.2 ShinyColor 1 1 1 50 0 null sphere 1.8747669884449 -0.56456967409159 1.8797146361878 0.2 ShinyColor 1 1 1 50 0 null sphere 1.3289512116587 1.3558884367631 -0.79666479343278 0.2 ShinyColor 1 1 1 50 0 null sphere -1.310521293063 0.051814912202191 1.5474657776907 0.2 ShinyColor 1 1 1 50 0 null sphere -0.77033025277961 -0.0090187764352549 1.5068811404631 0.2 ShinyColor 1 1 1 50 0 null sphere -0.19362169243215 0.073059109301043 1.5592777243464 0.2 ShinyColor 1 1 1 50 0 null sphere 1.9895981475087 -0.22544133017957 1.7649267443278 0.2 ShinyColor 1 1 1 50 0 null sphere 1.843095395214 1.5290437866401 -0.14345981664791 0.2 ShinyColor 1 1 1 50 0 null sphere -0.15680130194107 0.62285546884303 -1.2629554495108 0.2 ShinyColor 1 1 1 50 0 null sphere 1.900813845173 0.10762960519103 1.7011508858274 0.2 ShinyColor 1 1 1 50 0 null sphere 0.84375278749061 1.0513305887411 -1.0577391015682 0.2 ShinyColor 1 1 1 50 0 null sphere -1.1868636244103 3.042790181142 -0.23687370979745 0.2 ShinyColor 1 1 1 50 0 null sphere 2.6477788527383 0.15297363484398 -0.88588176780719 0.2 ShinyColor 1 1 1 50 0 null sphere -2.8477617792649 1.6913823355503 0.91247629373393 0.2 ShinyColor 1 1 1 50 0 null sphere -1.8382513786327 0.63293672734411 1.3815360508595 0.2 ShinyColor 1 1 1 50 0 null sphere -0.81238597493864 0.54493123467799 1.3728393428822 0.2 ShinyColor 1 1 1 50 0 null sphere 1.4227977768469 0.26075223967746 1.7472737251499 0.2 ShinyColor 1 1 1 50 0 null sphere -1.3026899291631 0.50079868673333 1.4148085306335 0.2 ShinyColor 1 1 1 50 0 null sphere -1.7962821908814 1.0121737692411 1.6833680650379 0.2 ShinyColor 1 1 1 50 0 null sphere -1.0714699916961 2.0769363892119 -0.25327198006316 0.2 ShinyColor 1 1 1 50 0 null sphere -1.300742904989 1.7348658754369 -0.57526651124372 0.2 ShinyColor 1 1 1 50 0 null sphere 0.46018902520686 3.8755973211801 -1.5022230868971 0.2 ShinyColor 1 1 1 50 0 null sphere -0.18042519525262 3.0053207825929 -0.98556940551748 0.2 ShinyColor 1 1 1 50 0 null sphere -1.3325010326276 0.82006738407025 1.2516911720537 0.2 ShinyColor 1 1 1 50 0 null sphere -0.67479626664057 0.78627569784988 1.2394465533592 0.2 ShinyColor 1 1 1 50 0 null sphere -0.28634331031981 0.78506421614159 1.2375427963891 0.2 ShinyColor 1 1 1 50 0 null sphere 2.180276714952 0.79125142629462 1.2289758900233 0.2 ShinyColor 1 1 1 50 0 null sphere -0.93452929145607 2.3844796743008 -0.46151703227655 0.2 ShinyColor 1 1 1 50 0 null sphere 0.30490303052706 -2.4700140652043 1.8324668495647 0.2 ShinyColor 1 1 1 50 0 null sphere 0.32653663246072 3.3817887234424 -1.1489896345243 0.2 ShinyColor 1 1 1 50 0 null sphere -1.3654706419745 -2.4827346231413 1.4680704585941 0.2 ShinyColor 1 1 1 50 0 null sphere 1.3508444168156 -2.4755522672993 1.4559123743074 0.2 ShinyColor 1 1 1 50 0 null sphere -0.75345604327135 -2.4734321743098 1.438432423945 0.2 ShinyColor 1 1 1 50 0 null sphere -1.777158086772 0.5388305589327 -1.0081116187324 0.2 ShinyColor 1 1 1 50 0 null sphere 2.2123809802215 -2.0080068623091 1.2840550405464 0.2 ShinyColor 1 1 1 50 0 null sphere 2.7402408674028 -0.45891116224761 -0.97769477441363 0.2 ShinyColor 1 1 1 50 0 null sphere -2.5544101370445 -0.5431091409734 0.44095030598792 0.2 ShinyColor 1 1 1 50 0 null sphere 3.4024454225921 -1.9354910286275 0.4217829346747 0.2 ShinyColor 1 1 1 50 0 null sphere 1.905054031152 -1.6752820645695 1.6343463230562 0.2 ShinyColor 1 1 1 50 0 null sphere 1.4153990849856 1.12146672621 -1.0272789900456 0.2 ShinyColor 1 1 1 50 0 null sphere -0.26315208904693 2.8012293819508 -0.32301871269727 0.2 ShinyColor 1 1 1 50 0 null sphere 2.3369039929517 -1.5337117735156 1.3984967947755 0.2 ShinyColor 1 1 1 50 0 null sphere 3.6148441263767 -1.6147945135629 0.41464384603659 0.2 ShinyColor 1 1 1 50 0 null sphere 1.8281249426759 -0.103341280866 -1.5295679597412 0.2 ShinyColor 1 1 1 50 0 null sphere 1.7292161146352 -1.4601142597373 1.8054248471476 0.2 ShinyColor 1 1 1 50 0 null sphere 2.6874548786847 -0.021869135983848 1.2194138379687 0.2 ShinyColor 1 1 1 50 0 null sphere 0.23831480377526 3.2052585316638 -0.85286889125642 0.2 ShinyColor 1 1 1 50 0 null sphere 1.7487296235794 -1.0638299395165 1.8875460000878 0.2 ShinyColor 1 1 1 50 0 null sphere 2.0093279924722 -1.047388402047 1.7303995156417 0.2 ShinyColor 1 1 1 50 0 null sphere 2.3912043338052 -1.0526670009188 1.4483838808345 0.2 ShinyColor 1 1 1 50 0 null sphere 2.6922575383139 -1.0588974782757 1.2201061132305 0.2 ShinyColor 1 1 1 50 0 null sphere 3.5852493589315 -1.042802078437 0.37648217222562 0.2 ShinyColor 1 1 1 50 0 null sphere 2.4693449039895 -0.59771235225395 -1.1963239555552 0.2 ShinyColor 1 1 1 50 0 null sphere -2.1910088917629 3.6076435276298 -2.5586351365215 0.2 ShinyColor 1 1 1 50 0 null sphere -1.7372657248064 -1.3644072047828 0.39500053548083 0.2 ShinyColor 1 1 1 50 0 null sphere -2.3889996166598 -0.47059330729178 0.96097882926919 0.2 ShinyColor 1 1 1 50 0 null sphere 1.9194620100398 1.262647612429 -0.66578150173415 0.2 ShinyColor 1 1 1 50 0 null sphere 2.4260777001222 -0.55284426184355 1.5017756104068 0.2 ShinyColor 1 1 1 50 0 null sphere 2.7075308612791 -0.56573788859601 1.2267259954222 0.2 ShinyColor 1 1 1 50 0 null sphere 2.9129635452411 -0.55089723766952 0.91507232596597 0.2 ShinyColor 1 1 1 50 0 null sphere 3.0901427450778 -0.56050255692806 0.40356744184656 0.2 ShinyColor 1 1 1 50 0 null sphere -2.310642710456 -0.93225437255604 -0.068607553957456 0.2 ShinyColor 1 1 1 50 0 null sphere -0.17354570983772 1.0208272100146 -1.0015350037445 0.2 ShinyColor 1 1 1 50 0 null sphere -2.665433782168 0.91702918793691 -0.18767889900031 0.2 ShinyColor 1 1 1 50 0 null sphere 0.48325044486814 3.5344786858902 -1.4893727273485 0.2 ShinyColor 1 1 1 50 0 null sphere 1.8547342730543 -2.4710092108933 -0.62177875540109 0.2 ShinyColor 1 1 1 50 0 null sphere 1.8000012601622 -2.4435778036414 -1.0667386799726 0.2 ShinyColor 1 1 1 50 0 null sphere 1.9346055313934 -2.4442268116994 0.98992458865643 0.2 ShinyColor 1 1 1 50 0 null sphere 2.9829266138946 -2.2158625096877 -0.11434098844521 0.2 ShinyColor 1 1 1 50 0 null sphere 2.0771277009323 -2.2377124476407 -0.70857276635892 0.2 ShinyColor 1 1 1 50 0 null sphere 1.9263847626586 -2.1435197448215 -1.1964104899629 0.2 ShinyColor 1 1 1 50 0 null sphere 2.892454890608 -2.0202947482074 -0.51862974138141 0.2 ShinyColor 1 1 1 50 0 null sphere 2.9888974880283 -2.2120982629512 0.40144734885706 0.2 ShinyColor 1 1 1 50 0 null sphere 3.3175119014005 -1.9871520700451 -0.11408138522201 0.2 ShinyColor 1 1 1 50 0 null sphere 2.3349569687777 0.55631050929509 -0.98128595233462 0.2 ShinyColor 1 1 1 50 0 null sphere 2.4256882952874 -2.0686674821311 -0.63263882357179 0.2 ShinyColor 1 1 1 50 0 null sphere 0.30183105905248 0.10741326917169 -1.6954111521647 0.2 ShinyColor 1 1 1 50 0 null sphere -0.26652693094858 -2.5104256336164 -1.5943822311345 0.2 ShinyColor 1 1 1 50 0 null sphere 2.2250582709547 -1.9354910286275 -1.082574476588 0.2 ShinyColor 1 1 1 50 0 null sphere 3.4963352549841 -1.0248029216282 -0.11010080246621 0.2 ShinyColor 1 1 1 50 0 null sphere 3.349962304301 -1.6117225420884 -0.47263670367045 0.2 ShinyColor 1 1 1 50 0 null sphere 3.5533614296813 -1.6485429325795 -0.14350308385178 0.2 ShinyColor 1 1 1 50 0 null sphere 2.950519478198 -1.6006461378983 -0.62688428545743 0.2 ShinyColor 1 1 1 50 0 null sphere -1.5842728919316 3.2493045452007 -2.6461646899451 0.2 ShinyColor 1 1 1 50 0 null sphere 2.5744409421832 -1.6504466895496 -0.77555039794553 0.2 ShinyColor 1 1 1 50 0 null sphere 2.3756281404129 -1.5691908806868 -1.1261878180863 0.2 ShinyColor 1 1 1 50 0 null sphere 0.32878652706182 1.0205676067914 -1.0481770495135 0.2 ShinyColor 1 1 1 50 0 null sphere -0.70941002973443 -2.4473420503778 -1.5079776250115 0.2 ShinyColor 1 1 1 50 0 null sphere 0.87395329579 -2.1320972030006 -1.5478699869771 0.2 ShinyColor 1 1 1 50 0 null sphere -1.7747351233555 -2.5076997997727 -0.54554194218688 0.2 ShinyColor 1 1 1 50 0 null sphere 3.1554329557136 -0.91321680285442 -0.13047965548772 0.2 ShinyColor 1 1 1 50 0 null sphere 2.1764259338078 -0.42434066635762 -1.4291015123613 0.2 ShinyColor 1 1 1 50 0 null sphere -0.19530911338298 -2.1512645743138 -1.5904881827864 0.2 ShinyColor 1 1 1 50 0 null sphere 2.0422110674114 -1.7625520147698 -1.3884736079299 0.2 ShinyColor 1 1 1 50 0 null sphere -0.076410837155594 -2.4732591054944 1.838221387679 0.2 ShinyColor 1 1 1 50 0 null sphere 1.7958476085909 1.0084095225047 -0.99456898392188 0.2 ShinyColor 1 1 1 50 0 null sphere 2.4716813329984 -1.0524939321033 -1.1593304962486 0.2 ShinyColor 1 1 1 50 0 null sphere 2.9080310840003 -1.0731756555519 -0.60390940020389 0.2 ShinyColor 1 1 1 50 0 null sphere 3.326165342174 -1.2372448926167 -0.44087857603184 0.2 ShinyColor 1 1 1 50 0 null sphere -2.7665925048098 1.5569944003384 1.4866753562571 0.2 ShinyColor 1 1 1 50 0 null sphere 3.0860756279143 -0.54916654951483 -0.11447079005681 0.2 ShinyColor 1 1 1 50 0 null sphere -1.9537315457546 2.491046797426 -2.0410728438607 0.2 ShinyColor 1 1 1 50 0 null sphere -0.76037879589012 -2.1330490814857 -1.1280050406487 0.2 ShinyColor 1 1 1 50 0 null sphere -2.0153873112655 3.7004084127213 -2.4187089992146 0.2 ShinyColor 1 1 1 50 0 null sphere -2.1921338390635 3.6918847735595 -2.4051230972002 0.2 ShinyColor 1 1 1 50 0 null sphere 2.4145253566896 1.1323700615845 -0.11698028788112 0.2 ShinyColor 1 1 1 50 0 null sphere -2.2393816256866 3.261592431099 -1.6580715552272 0.2 ShinyColor 1 1 1 50 0 null sphere 1.9753632374364 0.023258557649763 -1.3922378546664 0.2 ShinyColor 1 1 1 50 0 null sphere -0.0040248050855748 -0.53882568779054 1.843759589774 0.2 ShinyColor 1 1 1 50 0 null sphere -1.7162378637269 -2.4661200168563 0.33671961187156 0.2 ShinyColor 1 1 1 50 0 null sphere -1.7038634434208 -2.4768070162115 0.90888511581294 0.2 ShinyColor 1 1 1 50 0 null sphere -1.6891093269021 -2.200762255538 0.95215231968026 0.2 ShinyColor 1 1 1 50 0 null sphere -1.6844797360883 -2.470446737243 1.3131306015453 0.2 ShinyColor 1 1 1 50 0 null sphere -1.8263961647731 -2.5221943130683 -0.10975466483527 0.2 ShinyColor 1 1 1 50 0 null sphere -1.8416694877382 -2.1834553739911 -0.076049513022635 0.2 ShinyColor 1 1 1 50 0 null sphere -1.3829073251331 -2.127381077779 0.50109171936349 0.2 ShinyColor 1 1 1 50 0 null sphere -1.647399742374 -2.2019304700424 0.24936312726345 0.2 ShinyColor 1 1 1 50 0 null sphere -1.4721675667113 -1.9550478047755 -0.093313127365694 0.2 ShinyColor 1 1 1 50 0 null sphere 0.086749788628054 -1.1544314644147 1.5860168563364 0.2 ShinyColor 1 1 1 50 0 null sphere -1.650644782664 -0.89383309552186 1.2765698142774 0.2 ShinyColor 1 1 1 50 0 null sphere 0.26323671320284 -0.4893712737702 -2.0280926827005 0.2 ShinyColor 1 1 1 50 0 null sphere -0.7499513997581 -2.5080892046076 -1.1929491136535 0.2 ShinyColor 1 1 1 50 0 null sphere 0.79983657556529 -2.4958013187092 -1.2399805642573 0.2 ShinyColor 1 1 1 50 0 null sphere -1.7432798661439 -2.2278475251589 -0.53909512881065 0.2 ShinyColor 1 1 1 50 0 null sphere -0.56260440701262 -2.1807295401474 -1.5076747545844 0.2 ShinyColor 1 1 1 50 0 null sphere -1.3097424833934 -2.1216698068686 -0.69355904661697 0.2 ShinyColor 1 1 1 50 0 null sphere -0.70482370612449 -2.1761432165375 -0.79778974073333 0.2 ShinyColor 1 1 1 50 0 null sphere -0.29599189678222 -2.0623072031626 -1.0899731684493 0.2 ShinyColor 1 1 1 50 0 null sphere -0.23152376301992 -1.5572923996233 -1.1664263176829 0.2 ShinyColor 1 1 1 50 0 null sphere -0.75782603086195 -1.5633930753686 -0.85433997618791 0.2 ShinyColor 1 1 1 50 0 null sphere -1.2824408777532 -1.5432305583664 -0.59516942502269 0.2 ShinyColor 1 1 1 50 0 null sphere -0.034528183812033 -1.5333656358847 -1.5883680897969 0.2 ShinyColor 1 1 1 50 0 null sphere -1.2907049136918 1.0876317727857 -0.94390308819326 0.2 ShinyColor 1 1 1 50 0 null sphere 0.27353430772326 -1.6292024924508 -1.7439569549038 0.2 ShinyColor 1 1 1 50 0 null sphere -1.8767159228707 -1.0234616383083 -0.64860442179883 0.2 ShinyColor 1 1 1 50 0 null sphere -2.0622024258499 -1.1640367836733 -0.12602313348938 0.2 ShinyColor 1 1 1 50 0 null sphere 0.20184055091511 -1.0836030516839 -1.9467936066338 0.2 ShinyColor 1 1 1 50 0 null sphere -0.15970020460018 -1.0772427727154 -1.622246310425 0.2 ShinyColor 1 1 1 50 0 null sphere -0.32095707341366 -1.1188658228358 -1.2099098575695 0.2 ShinyColor 1 1 1 50 0 null sphere 0.3299980087701 -2.5091276175004 -1.4864738246894 0.2 ShinyColor 1 1 1 50 0 null sphere -2.2490734793529 -0.8249517069651 -0.54255650512003 0.2 ShinyColor 1 1 1 50 0 null sphere 1.7544841616937 1.4615902158109 -0.4805113347743 0.2 ShinyColor 1 1 1 50 0 null sphere -2.5587368574312 -0.53073472066735 -0.13562845274793 0.2 ShinyColor 1 1 1 50 0 null sphere -2.3348723446217 -0.53943142864468 -0.6424172116458 0.2 ShinyColor 1 1 1 50 0 null sphere -0.24164828872487 -0.55613256933746 -1.7172610901177 0.2 ShinyColor 1 1 1 50 0 null sphere -0.43812466148635 -0.45527671712275 -1.3469370922173 0.2 ShinyColor 1 1 1 50 0 null sphere -1.8498037220653 -0.52787908521211 -1.076041128804 0.2 ShinyColor 1 1 1 50 0 null sphere -1.1208378713087 -2.5136706739064 -0.92343770076402 0.2 ShinyColor 1 1 1 50 0 null sphere 1.7990493816771 -0.51247596063534 -1.6293853990631 0.2 ShinyColor 1 1 1 50 0 null sphere 0.47334225518252 -0.19022182623157 -2.0106992667458 0.2 ShinyColor 1 1 1 50 0 null sphere 0.34925191449106 -2.1225351509459 -1.589319968282 0.2 ShinyColor 1 1 1 50 0 null sphere 0.26198196429068 0.24236367803385 -1.4379280219503 0.2 ShinyColor 1 1 1 50 0 null sphere -1.3049398237642 -2.5372513000141 -0.63307149561046 0.2 ShinyColor 1 1 1 50 0 null sphere 1.4024621910293 0.23877250011286 -1.4298370548271 0.2 ShinyColor 1 1 1 50 0 null sphere 0.45426141827703 1.4600325964717 -0.47432412462128 0.2 ShinyColor 1 1 1 50 0 null sphere 1.8565514956167 -1.6057516679547 -1.5454037563567 0.2 ShinyColor 1 1 1 50 0 null sphere 0.68582749337491 -0.5587286015695 -2.0087955097756 0.2 ShinyColor 1 1 1 50 0 null sphere 1.3253167665338 -2.3013585045295 -1.3148328269478 0.2 ShinyColor 1 1 1 50 0 null sphere 1.8584552525869 -1.0552630331508 -1.617357116388 0.2 ShinyColor 1 1 1 50 0 null sphere 0.84790643906187 1.5469564090412 -0.48860230189749 0.2 ShinyColor 1 1 1 50 0 null sphere 1.3695791160901 1.5456583929251 -0.50244780713503 0.2 ShinyColor 1 1 1 50 0 null sphere 1.3407631583145 -2.4949359746319 -1.1411150034205 0.2 ShinyColor 1 1 1 50 0 null sphere 2.3888679047963 -2.4406789009823 -0.1536708767606 0.2 ShinyColor 1 1 1 50 0 null sphere 1.368973375236 -2.0059300365235 -1.5065498072838 0.2 ShinyColor 1 1 1 50 0 null sphere 1.7182695120568 -1.9459616919634 -1.4534609481386 0.2 ShinyColor 1 1 1 50 0 null sphere 1.35984399522 -1.59294457561 -1.6819117845581 0.2 ShinyColor 1 1 1 50 0 null sphere 0.83306578813538 -1.6305870429745 -1.7772727018816 0.2 ShinyColor 1 1 1 50 0 null sphere -0.40156387421847 -1.5229815069565 -0.86260401212657 0.2 ShinyColor 1 1 1 50 0 null sphere 0.80230280618572 -1.0535323449961 -1.920314077867 0.2 ShinyColor 1 1 1 50 0 null sphere 1.343186121731 -1.0686758663497 -1.7896038549838 0.2 ShinyColor 1 1 1 50 0 null sphere -1.3665955892751 -1.1751564550672 -0.77983385112839 0.2 ShinyColor 1 1 1 50 0 null sphere -0.73087056285261 -0.96613259318415 -1.0638397773135 0.2 ShinyColor 1 1 1 50 0 null sphere 0.33817551030103 -0.94220582944552 -2.0191796387038 0.2 ShinyColor 1 1 1 50 0 null sphere -1.3065839775111 -0.86644495547385 -1.0628013644206 0.2 ShinyColor 1 1 1 50 0 null sphere -1.6614615836308 -0.91092364104945 -0.9646280788457 0.2 ShinyColor 1 1 1 50 0 null sphere 1.3444841378471 -0.5740884589424 -1.8328277916473 0.2 ShinyColor 1 1 1 50 0 null sphere 0.9520505987705 -0.51368744234363 -1.9541490312912 0.2 ShinyColor 1 1 1 50 0 null sphere 0.021156707565203 -0.46830014548681 -1.9708069047801 0.2 ShinyColor 1 1 1 50 0 null sphere -0.68634861007315 -0.57049728102141 -1.2208564601479 0.2 ShinyColor 1 1 1 50 0 null sphere -2.0852205783073 -0.63258571857101 -0.89319392526076 0.2 ShinyColor 1 1 1 50 0 null sphere 0.31697458040604 -2.4688458506999 -1.2106886672391 0.2 ShinyColor 1 1 1 50 0 null sphere -0.26778167986073 -2.4434912692336 -1.1426293555558 0.2 ShinyColor 1 1 1 50 0 null sphere 0.83799824937626 -2.3450583804355 -0.99340076941746 0.2 ShinyColor 1 1 1 50 0 null sphere 0.32913266469276 -2.3393903767289 -1.0337258034218 0.2 ShinyColor 1 1 1 50 0 null sphere 1.4244419305939 -2.4559954911513 -0.64652759601319 0.2 ShinyColor 1 1 1 50 0 null sphere 1.2846888621024 -2.3330300977604 -0.67568969141976 0.2 ShinyColor 1 1 1 50 0 null sphere 0.84150289288951 -2.3094062044488 -0.62143261777015 0.2 ShinyColor 1 1 1 50 0 null sphere 0.3363582877386 -2.3242035881715 -0.61814431027623 0.2 ShinyColor 1 1 1 50 0 null sphere -0.76336423295697 -2.5174781878468 -0.61013987756078 0.2 ShinyColor 1 1 1 50 0 null sphere 1.9171688482349 -2.4755522672993 -0.14899801874293 0.2 ShinyColor 1 1 1 50 0 null sphere -0.19578505262552 -2.3335060370029 -0.61736550060662 0.2 ShinyColor 1 1 1 50 0 null sphere 1.320038167662 -2.4871478779358 -0.12360017007281 0.2 ShinyColor 1 1 1 50 0 null sphere 1.1432483726602 -2.3680765328929 -0.32405712559009 0.2 ShinyColor 1 1 1 50 0 null sphere 0.8454834756453 -2.3356261299924 -0.10962486322367 0.2 ShinyColor 1 1 1 50 0 null sphere -0.73874519395646 -2.50990642717 -0.10971139763141 0.2 ShinyColor 1 1 1 50 0 null sphere 0.32515208193696 -2.3367078100891 -0.10586061648722 0.2 ShinyColor 1 1 1 50 0 null sphere 2.3385914139025 -2.4438374068646 0.4460125688404 0.2 ShinyColor 1 1 1 50 0 null sphere -1.2823543433454 -2.5399338666539 -0.11265356749438 0.2 ShinyColor 1 1 1 50 0 null sphere -0.13348027905658 -2.3439767003388 -0.1740497297821 0.2 ShinyColor 1 1 1 50 0 null sphere 1.0574927745952 -2.4483371960668 0.082438254743343 0.2 ShinyColor 1 1 1 50 0 null sphere 1.9344757297818 -2.472393761417 0.48547225876739 0.2 ShinyColor 1 1 1 50 0 null sphere -0.38269937333232 -2.5339197253163 -0.054805315923783 0.2 ShinyColor 1 1 1 50 0 null sphere 1.3303790293863 -2.4977050756794 0.41299969228964 0.2 ShinyColor 1 1 1 50 0 null sphere 1.0817656759647 -2.4739081135524 0.215268570616 0.2 ShinyColor 1 1 1 50 0 null sphere 2.5441106322723 -2.3669515855924 0.5437099151728 0.2 ShinyColor 1 1 1 50 0 null sphere 0.84327684824807 -2.3427219514267 0.40084160800292 0.2 ShinyColor 1 1 1 50 0 null sphere -0.42644251644218 -2.4777588946966 0.406033672467 0.2 ShinyColor 1 1 1 50 0 null sphere 0.32796445018834 -2.3419431417571 0.40538466440899 0.2 ShinyColor 1 1 1 50 0 null sphere -0.034701252627502 -2.3608509098471 0.40075507359519 0.2 ShinyColor 1 1 1 50 0 null sphere -1.3385584411691 -2.5375109032373 0.3930535113068 0.2 ShinyColor 1 1 1 50 0 null sphere 1.1478346962701 -2.3650910958261 0.60138509792793 0.2 ShinyColor 1 1 1 50 0 null sphere 1.5322205354273 -2.4584617217717 0.91788469421734 0.2 ShinyColor 1 1 1 50 0 null sphere 1.3364797051316 -2.3263669483648 0.91810103023668 0.2 ShinyColor 1 1 1 50 0 null sphere 0.84033467838509 -2.3116993662538 0.92952357205765 0.2 ShinyColor 1 1 1 50 0 null sphere -0.3325526840501 -2.4576396448983 0.89919326214666 0.2 ShinyColor 1 1 1 50 0 null sphere -0.1031499691456 -2.339347109525 1.0316774403884 0.2 ShinyColor 1 1 1 50 0 null sphere 0.32359446259774 -2.3248958634333 0.91619727326652 0.2 ShinyColor 1 1 1 50 0 null sphere -0.71615971353773 -2.5074834637534 0.93134079462008 0.2 ShinyColor 1 1 1 50 0 null sphere 1.757988805207 -2.4537455965502 1.4203467327285 0.2 ShinyColor 1 1 1 50 0 null sphere -1.2998342937078 -2.5124159249943 0.9238988355549 0.2 ShinyColor 1 1 1 50 0 null sphere -1.7593752659826 -1.3503453635259 -0.11191802502864 0.2 ShinyColor 1 1 1 50 0 null sphere 0.81510989853045 -2.4786242387739 1.5989104830889 0.2 ShinyColor 1 1 1 50 0 null sphere -0.23342751999008 -2.4906092542452 1.5080493549675 0.2 ShinyColor 1 1 1 50 0 null sphere 0.31606596912483 -2.4882728252363 1.6197220081491 0.2 ShinyColor 1 1 1 50 0 null ================================================ FILE: scenes/dragon.scn ================================================ cameraPosition 1.711963 3.333467 10.445557 cameraUp 0.042266 0.963630 -0.263875 cameraLookAt 0.421718 -0.592129 -2.875471 cameraScreenWidth 38 light 300 100 300 0.9 sphere 1.8506240443655 -2.331073097549 -1.8516202250188 0.05 ShinyColor 1 1 1 50 0 null sphere 1.863738663504 -2.2228663755728 -1.8420176564293 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9825259934631 -2.1633837979211 -1.8433958028472 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8273733806048 -2.347388572884 -1.7862694110068 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9867938017251 -2.3064442873704 -1.724564016552 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9471387499573 -2.2899509866912 -1.8436625408636 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8387986589729 -2.1962814866074 -1.7234526081504 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9839041398811 -2.1895685798619 -1.7983170780798 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1118939314052 -2.1425337763077 -1.8341044286102 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9922619310608 -1.9995177431945 -1.7498596717716 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0411194443936 -2.0378391048804 -1.828991949963 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1136721848477 -2.0523318704368 -1.8373052848067 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1765779003762 -2.1538701420037 -1.7138500395609 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1626630671886 -2.0097871568249 -1.733099633076 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1201628099128 -2.2881282769126 -1.6946004460458 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8249727384574 -1.9861808423757 -1.6789518157518 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7866958331076 -1.8169355709855 -1.7381676553871 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7796717320097 -1.7041943027309 -1.7063369187663 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6084703818327 -1.8176913286986 -1.7119828734463 0.05 ShinyColor 1 1 1 50 0 null sphere 1.920598317328 -1.8718391460228 -1.6664595853182 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5792181127036 -1.9658642967951 -1.6857091788333 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4323788346889 -1.9768005554665 -1.6737059680964 0.05 ShinyColor 1 1 1 50 0 null sphere 1.461586647482 -1.888332446702 -1.6749507455062 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6525710672068 -1.7261112764097 -1.6702828302196 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9819480610943 -2.198859954099 -1.5556299395143 0.05 ShinyColor 1 1 1 50 0 null sphere 1.438113702041 -1.9853361719905 -1.5902169689709 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1725323737945 -2.172586259486 -1.5576304746371 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8524912104801 -2.1181717041454 -1.608710804773 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2058301695054 -1.9758669724092 -1.6112003595925 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7949647116152 -2.0372611725116 -1.5430487964086 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6244302064792 -1.9806238003679 -1.5570525422683 0.05 ShinyColor 1 1 1 50 0 null sphere 2.028582757624 -1.9238086028799 -1.5953294476181 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4833702521527 -1.8711278446458 -1.5607868744975 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9886609678398 -1.8203142525263 -1.5587863393747 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5748613917694 -1.8066661573551 -1.5363358896631 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6411013325027 -1.6611161130862 -1.5098399133698 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7938533032136 -1.6520025641934 -1.5413594556382 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1744884525813 -1.8554347580157 -1.5010375588294 0.05 ShinyColor 1 1 1 50 0 null sphere -0.53032394613713 2.4109064449002 -1.5437156414495 0.05 ShinyColor 1 1 1 50 0 null sphere -0.71864098569814 2.386588829074 -1.5306899349832 0.05 ShinyColor 1 1 1 50 0 null sphere -0.56362174184799 2.5279599777529 -1.538380881122 0.05 ShinyColor 1 1 1 50 0 null sphere -0.70886059176438 2.8968586544001 -1.5420263006791 0.05 ShinyColor 1 1 1 50 0 null sphere -0.59114021387071 2.9316679655371 -1.5306899349832 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2779383465989 -1.9910265830065 -1.5081505725994 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9247327565818 -1.709973626419 -1.5232212705247 0.05 ShinyColor 1 1 1 50 0 null sphere -0.73744601585261 2.5509439034973 -1.5150413046891 0.05 ShinyColor 1 1 1 50 0 null sphere -0.65449049275987 2.9931955346477 -1.527755816803 0.05 ShinyColor 1 1 1 50 0 null sphere -0.8722376267943 2.8815212184585 -1.4945469337643 0.05 ShinyColor 1 1 1 50 0 null sphere -0.71103895223144 1.8540908357166 -1.4972143139281 0.05 ShinyColor 1 1 1 50 0 null sphere -0.7602521162527 1.9152182978026 -1.4860557735764 0.05 ShinyColor 1 1 1 50 0 null sphere -0.85863398795915 2.3356418679463 -1.4769422246835 0.05 ShinyColor 1 1 1 50 0 null sphere 1.63638896088 -1.4626185725669 -1.4860557735764 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7327258411276 -1.4567058798706 -1.482943830052 0.05 ShinyColor 1 1 1 50 0 null sphere -0.90242347898077 2.5863311470031 -1.4724521347412 0.05 ShinyColor 1 1 1 50 0 null sphere 2.04996625527 -2.1399553088161 -1.4363091335223 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1564391801399 -2.1121256424409 -1.4003884139838 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9963963703147 -2.039661814659 -1.3555319708967 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3239061980876 -2.00916476812 -1.3807831697802 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8217718822609 -1.9691540656637 -1.3887853102715 0.05 ShinyColor 1 1 1 50 0 null sphere 2.344845132373 -1.8146238415103 -1.3802941500835 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6109599366522 -1.7932848002002 -1.3772266628952 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9745238529719 -1.6540030993162 -1.378515896641 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6239411867825 -1.3848199844574 -1.3697135421006 0.05 ShinyColor 1 1 1 50 0 null sphere -0.72033032646852 1.8407094785618 -1.3734923306659 0.05 ShinyColor 1 1 1 50 0 null sphere -0.60060941345204 1.8648937253798 -1.4664505293728 0.05 ShinyColor 1 1 1 50 0 null sphere -0.6425761946951 1.9109060332046 -1.4370204348993 0.05 ShinyColor 1 1 1 50 0 null sphere -0.89535492154683 2.1837345676205 -1.4053675236228 0.05 ShinyColor 1 1 1 50 0 null sphere -0.9573715103541 2.3768084351402 -1.4103910895979 0.05 ShinyColor 1 1 1 50 0 null sphere -0.67494040734864 2.338976093151 -1.3405501856436 0.05 ShinyColor 1 1 1 50 0 null sphere -0.59011771814128 2.4033488677696 -1.4087017488275 0.05 ShinyColor 1 1 1 50 0 null sphere -0.59914235436198 2.5473429402762 -1.4240836411051 0.05 ShinyColor 1 1 1 50 0 null sphere -0.71201699162482 2.5774398797906 -1.3432620221434 0.05 ShinyColor 1 1 1 50 0 null sphere -0.88575235295731 2.7337928137226 -1.4316412182358 0.05 ShinyColor 1 1 1 50 0 null sphere -0.78248028428398 2.7316144532555 -1.3649567141419 0.05 ShinyColor 1 1 1 50 0 null sphere -0.7262874755009 2.9122405466777 -1.394120070599 0.05 ShinyColor 1 1 1 50 0 null sphere -0.89575502857139 2.9294451487339 -1.3548651258557 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0929633353449 -2.4272766087884 -1.4113691289912 0.05 ShinyColor 1 1 1 50 0 null sphere -0.90958094908685 -2.3953125031595 -1.3782936149607 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0962086478775 -2.3005315946741 -1.4774757007163 0.05 ShinyColor 1 1 1 50 0 null sphere -0.96310637770617 -2.3096006872308 -1.4685844335038 0.05 ShinyColor 1 1 1 50 0 null sphere -0.90051185653008 -2.1966371372959 -1.4586706705618 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0527303512083 -2.1688519272568 -1.4639165182172 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1959242096658 -2.2185541109747 -1.4615603324059 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8080793307536 -1.4596844543868 -1.3751816714363 0.05 ShinyColor 1 1 1 50 0 null sphere -0.90193445928409 1.8252831299481 -1.3792716543541 0.05 ShinyColor 1 1 1 50 0 null sphere -0.8465863208862 1.9151293851305 -1.4626272844714 0.05 ShinyColor 1 1 1 50 0 null sphere -0.92256219921712 2.2466402831491 -1.4648056449384 0.05 ShinyColor 1 1 1 50 0 null sphere -0.77692324227616 2.1834233732681 -1.3341484732506 0.05 ShinyColor 1 1 1 50 0 null sphere -0.97235329560719 2.5219583723845 -1.438887601014 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0600656466586 2.5888651581587 -1.4677842194546 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1006098251477 2.7300584814934 -1.3895855243206 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3110661200678 -2.4253205300017 -1.3782047022886 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2834142790369 -2.3022209354444 -1.4523134145049 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3273815954028 -2.1753425523219 -1.4099020699012 0.05 ShinyColor 1 1 1 50 0 null sphere -0.70583756091212 -2.1909911826159 -1.3837172879603 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1793419963145 -2.1397774834718 -1.4480900625789 0.05 ShinyColor 1 1 1 50 0 null sphere -0.84698642791076 -2.1341315287919 -1.4500905977017 0.05 ShinyColor 1 1 1 50 0 null sphere -0.74958259559769 -2.1325311006936 -1.4515576567918 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1739105202125 -1.7738573813409 -1.4124805373928 0.05 ShinyColor 1 1 1 50 0 null sphere -0.9108257264966 1.9935503619449 -1.3876739018699 0.05 ShinyColor 1 1 1 50 0 null sphere -0.71908554905877 1.9556735636196 -1.3722475532562 0.05 ShinyColor 1 1 1 50 0 null sphere -1.102254709582 2.2069407750452 -1.4151923738926 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1451550738824 2.5287601918021 -1.4121693430404 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4522594434025 -2.3709504309972 -1.3545539315033 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1053221967703 -2.0032965317598 -1.3921195354762 0.05 ShinyColor 1 1 1 50 0 null sphere -0.92474055968418 -1.9839135692365 -1.4067456700407 0.05 ShinyColor 1 1 1 50 0 null sphere -0.70748244534644 -1.9960056926455 -1.4314189365555 0.05 ShinyColor 1 1 1 50 0 null sphere -0.7234422699929 -1.8027095434455 -1.4086572924914 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5380070891736 -1.6910796835924 -1.3830059865833 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4384693527295 -1.6312859115883 -1.3738035250184 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4545180900481 -1.4675976822059 -1.3819390345178 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0644668239288 2.899614947236 -1.3592218467899 0.05 ShinyColor 1 1 1 50 0 null sphere -0.78510320811167 -2.3078668901244 -1.3846064146816 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3084431962402 -1.9982285094486 -1.3688244153794 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3115106834285 2.5446755601125 -1.366423773232 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1335964265061 -2.4544394301227 -1.3589551087735 0.05 ShinyColor 1 1 1 50 0 null sphere -0.62421572790126 -2.0194341817505 -1.3372159604389 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0909199906686 -1.9988064418175 -1.3882962905748 0.05 ShinyColor 1 1 1 50 0 null sphere -0.90246793531684 -1.8444984993443 -1.3712695138628 0.05 ShinyColor 1 1 1 50 0 null sphere -0.60572189209923 -1.8224926129933 -1.3198779893745 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7437065561351 -1.8660153659986 -1.3149877924076 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1765334440402 -1.655292333062 -1.3205448344154 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8706293955937 -1.6118584927289 -1.3986990732134 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4848014814003 -2.1914357459765 -1.3870959695011 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0692697550061 -2.1481352746516 -1.3677574633139 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2562975608213 -2.0076532526939 -1.3392609518978 0.05 ShinyColor 1 1 1 50 0 null sphere -0.72530943610753 -1.6713855267167 -1.3444623432171 0.05 ShinyColor 1 1 1 50 0 null sphere -0.90695802525916 -1.6581819949061 -1.3417060503812 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3185706143688 -1.510320221162 -1.3496192782003 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0947860451235 1.8450661994959 -1.3273021974969 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0988315717052 2.0209354649594 -1.3481522191103 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2871930676023 2.1931593108658 -1.336549115398 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0984759210167 2.3902787049672 -1.3662904042238 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2852814451516 2.7260129549117 -1.2945823341549 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6584923863968 -2.1781433014938 -1.3518420950035 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2398931728142 -2.1660511780848 -1.3179219105877 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8959345006982 -2.0047191345138 -1.3139208403421 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4869798418674 -1.9987619854814 -1.342995284127 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2712690727982 -1.6131477264747 -1.32094494144 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0065402180393 -2.4575958299831 -1.3307253353738 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6434216884716 -2.3134683884683 -1.3129872572848 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9489264532848 -2.1257292812761 -1.3264130707757 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6698287520927 -1.9774229441714 -1.3205448344154 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2073511348164 -1.8854427848579 -1.3260574200872 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0749601660221 -1.8902885254887 -1.325924051079 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3721857790515 -1.6784096278146 -1.3233011272513 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3172900071166 2.3961024849914 -1.3048517477853 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1161250864335 -1.8291610634027 -1.3213895048006 0.05 ShinyColor 1 1 1 50 0 null sphere -1.046150813471 -1.7015713789032 -1.3246792736692 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8292936295491 -2.178943515543 -1.2992502494415 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8444532401465 -2.0060083682596 -1.3021399112855 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9351355392204 -1.5132098830061 -1.3054296801542 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3114662270924 2.8632941206729 -1.3106755278095 0.05 ShinyColor 1 1 1 50 0 null sphere -0.9476355727564 -2.4599075594584 -1.2225186133975 0.05 ShinyColor 1 1 1 50 0 null sphere -0.85485519939383 -2.4406135096072 -1.1881983219572 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4772439042697 -2.4387907998286 -1.1885539726457 0.05 ShinyColor 1 1 1 50 0 null sphere -0.75967418388389 -2.3520120318345 -1.1847307277443 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6662277888717 -2.3652600199812 -1.1990456679564 0.05 ShinyColor 1 1 1 50 0 null sphere -0.6363967639824 -2.1443120297502 -1.2803563066149 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1137610975198 -2.0795836044431 -1.3112090038423 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1786673481712 -2.0093870498003 -1.1877093022605 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8473437253818 -2.0451744003307 -1.2689310282468 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3798322688543 -2.0045413091695 -1.1990012116204 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2329579843885 -1.870594368613 -1.2158501629881 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0658466171293 -1.8381856996234 -1.1710826325731 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4672778818893 -1.8529007468601 -1.3078747786376 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5530786104901 -1.8017315040521 -1.1863756121786 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6668860074189 -1.7791921416684 -1.2130494138162 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1066558868522 -1.6648059889794 -1.1805962884905 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1820015733759 -1.5833619813128 -1.2504816487808 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2673569152247 -1.5852291474274 -1.2311431425936 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0011087419373 -1.4763111240742 -1.1896653810472 0.05 ShinyColor 1 1 1 50 0 null sphere 1.274647754339 -1.5355269637095 -1.2652856086897 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5785068113266 -1.413627690226 -1.2146053855783 0.05 ShinyColor 1 1 1 50 0 null sphere -0.80195215947938 1.8451551121681 -1.1797071617692 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0840720681324 1.7829162416805 -1.2138051715292 0.05 ShinyColor 1 1 1 50 0 null sphere -0.78239137161186 2.0350725798273 -1.200823921399 0.05 ShinyColor 1 1 1 50 0 null sphere -0.77799019434166 2.2079632707746 -1.2005127270465 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4901362417278 2.3612931738544 -1.2227408950778 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4476804407881 2.5265373749989 -1.2995614437939 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4783108563352 2.898903645859 -1.2128715884719 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6000767608106 3.2601558327033 -1.2990724240972 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4815561688678 3.2657573310472 -1.1878426712687 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4775550986221 3.317460049888 -1.304629466105 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4487918491897 3.3814771738181 -1.3114757418587 0.05 ShinyColor 1 1 1 50 0 null sphere -1.446168925362 3.3845446610064 -1.2607510624113 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0967421239102 -2.4586627820486 -1.2009572904071 0.05 ShinyColor 1 1 1 50 0 null sphere -0.67809680720909 -2.2488733321694 -1.2074034591362 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3851764790667 -2.1221727743911 -1.2764886053774 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4144287481959 -2.1919247656732 -1.216472551693 0.05 ShinyColor 1 1 1 50 0 null sphere -3.276703019074 -2.1812107886822 -1.1462759970502 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8994465512471 -2.1350651118492 -1.2100708393 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3199145777268 -1.9958723236373 -1.1892208176866 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9879052101267 -1.9578621563038 -1.2204291656025 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9022473004191 -1.8281830240093 -1.1985566482598 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4955599147275 -1.8720614277031 -1.2764886053774 0.05 ShinyColor 1 1 1 50 0 null sphere -1.306175923101 -1.8738841374817 -1.2791559855412 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8448447206774 -1.8750400022193 -1.2086037802099 0.05 ShinyColor 1 1 1 50 0 null sphere -0.64462118615398 -1.6744085575689 -1.2763552363692 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5755282368104 -1.7036608266981 -1.1742834887696 0.05 ShinyColor 1 1 1 50 0 null sphere 2.447894919366 -1.6689848845693 -1.2830681431147 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7886074555582 -1.4163395267258 -1.2145164729062 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2031261361079 1.8931234987796 -1.2886696414586 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2602525279483 1.9881266889453 -1.2860911739669 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3692594639737 1.9896826607074 -1.2583059639278 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3862417843496 2.1615063995892 -1.2934264694173 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4997832666534 2.5815743190444 -1.2496814347317 0.05 ShinyColor 1 1 1 50 0 null sphere -0.82049045161747 2.6999170856429 -1.2650633270094 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4591946318283 2.7721141754085 -1.2936042947615 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4338545202726 2.8150145397089 -1.3079636913097 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3192460859034 2.9383808722825 -1.1729053423517 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1224378861544 2.9157081408906 -1.1737500127369 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6441329898486 3.2374831013114 -1.1887317979899 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3583676616384 3.2615339791213 -1.2247858865367 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2963955291672 -2.4581293060159 -1.2145609292423 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8079545882391 -2.3136906701486 -1.189487555703 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0759826617516 -2.1989933231072 -1.1812186771954 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8898876156024 -2.2278454852118 -1.249903716412 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9732432457197 -1.9966725376865 -1.2799561995903 0.05 ShinyColor 1 1 1 50 0 null sphere -0.60545515408286 -2.1278631854071 -1.1666814553029 0.05 ShinyColor 1 1 1 50 0 null sphere -0.5472173538409 -1.9935605941621 -1.208692692882 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7209543619559 -2.0079199907103 -1.1952668793911 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5186694063776 -1.9654197334345 -1.1707269818846 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7119297257352 -1.824404235444 -1.1883316909654 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6675170226175 -1.8176913286986 -1.2395453901094 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1867217481009 -1.7857272230696 -1.2507039304611 0.05 ShinyColor 1 1 1 50 0 null sphere -0.52890134338313 -1.6512912628164 -1.2396343027816 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5160020262139 -1.6799655995768 -1.1496546785909 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4354463218772 -1.6099468702782 -1.1833081249903 0.05 ShinyColor 1 1 1 50 0 null sphere 2.349068484299 -1.5794053674032 -1.1940221019814 0.05 ShinyColor 1 1 1 50 0 null sphere -0.72584291214028 -1.5847845840668 -1.2100263829639 0.05 ShinyColor 1 1 1 50 0 null sphere -0.90557987884122 -1.5848290404029 -1.2030467382021 0.05 ShinyColor 1 1 1 50 0 null sphere 1.439536304795 -1.4743995016235 -1.1662368919423 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1300843759572 1.6584829570414 -1.20295782553 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2808802678814 1.6521257009844 -1.168904272106 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3108882947236 1.7800710361725 -1.2497703474038 0.05 ShinyColor 1 1 1 50 0 null sphere -0.92051720775824 1.8220822737516 -1.1676150383602 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4912476501294 2.1525262197046 -1.2222518753811 0.05 ShinyColor 1 1 1 50 0 null sphere -0.77390021142391 2.3804983110334 -1.212249199767 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3557891941468 2.6952047140203 -1.2514596881742 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5084077958496 2.7281913153787 -1.2577724878951 0.05 ShinyColor 1 1 1 50 0 null sphere -0.9118926785621 2.7449068977382 -1.1772620632858 0.05 ShinyColor 1 1 1 50 0 null sphere -0.97519850111519 2.8983257134902 -1.2091817125787 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6658721381832 3.0812190800515 -1.1846418150722 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0084971202173 -2.1930806304109 -1.1933997132765 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0614001601318 -2.0002290445715 -1.2549717387232 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8248924522789 -1.8156018809036 -1.217939610783 0.05 ShinyColor 1 1 1 50 0 null sphere -0.77772345632529 2.5497880387597 -1.2366557282654 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0126760158072 -1.8290721507306 -1.205091729661 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4610173416069 -1.7691894660543 -1.2386118070521 0.05 ShinyColor 1 1 1 50 0 null sphere -1.273544972431 -1.7763913924965 -1.214338647562 0.05 ShinyColor 1 1 1 50 0 null sphere -0.52925699407163 -1.4741772199432 -1.2407457111831 0.05 ShinyColor 1 1 1 50 0 null sphere -0.52325538870318 -1.275813048432 -1.2292315201429 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8025753715755 3.0810412547073 -1.1779289083267 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1910792924263 -1.9964057996701 -1.2106487716688 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1863224644676 -1.816535463961 -1.1715716522698 0.05 ShinyColor 1 1 1 50 0 null sphere -0.49160247742664 -1.8452098007213 -1.2063809634068 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6481785164303 -1.627551579359 -1.2314987932821 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4690194820981 -1.6292853764654 -1.1805518321544 0.05 ShinyColor 1 1 1 50 0 null sphere -1.84983245681 -1.6548922260375 -1.2168726587175 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8342282828521 -1.444924950814 -1.2316766186264 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6592481441098 -1.4765334057545 -1.1914436344898 0.05 ShinyColor 1 1 1 50 0 null sphere -0.72161956021433 -1.4589731530098 -1.1743724014417 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0258795476178 -1.4764889494184 -1.2322100946591 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1717407862391 -1.4724878791728 -1.2026910875136 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1846775800333 -1.3025757627417 -1.2315877059542 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0095640722828 -1.2789694482924 -1.2355443198638 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8315609026883 -1.2982190418075 -1.1857532234737 0.05 ShinyColor 1 1 1 50 0 null sphere -0.71126123391176 -1.2932399321685 -1.2084704112017 0.05 ShinyColor 1 1 1 50 0 null sphere -0.70076953860099 -1.1117691683612 -1.2014018537678 0.05 ShinyColor 1 1 1 50 0 null sphere -0.52365549572774 -1.1219496693195 -1.2070478084477 0.05 ShinyColor 1 1 1 50 0 null sphere -0.56166566306124 -0.90824806186674 -1.1850419220967 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4896472220312 1.9691882897826 -1.1896209247112 0.05 ShinyColor 1 1 1 50 0 null sphere -1.658670211741 2.7414837598614 -1.1798849871135 0.05 ShinyColor 1 1 1 50 0 null sphere -1.361612974171 3.1412795900721 -1.1970895891697 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4471469647554 3.0863760150348 -1.171038176237 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0200113112575 -1.6476902995953 -1.1757505478597 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2027713088107 -1.1146143738692 -1.2151388616111 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3645923720784 -1.124439224139 -1.2013573974317 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4171833942492 1.7149425038408 -1.1394297212966 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6401319196029 2.5580124609312 -1.1803295504741 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1885452812707 -2.1275964473907 -1.1244479360435 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5446405331318 -1.8113340726416 -1.1419192761161 0.05 ShinyColor 1 1 1 50 0 null sphere -0.43803259247125 -1.7901284003398 -1.1525887967711 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3184458718542 -1.6903239258793 -1.1419637324521 0.05 ShinyColor 1 1 1 50 0 null sphere -0.39695493794944 -1.6334198157193 -1.1422749268046 0.05 ShinyColor 1 1 1 50 0 null sphere -0.39717721962975 -1.4638633499766 -1.1486766391976 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1909817532605 -1.4679088765583 -1.1336059412724 0.05 ShinyColor 1 1 1 50 0 null sphere -0.40949162471908 -1.2884386478738 -1.1386739635835 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3939780102158 -1.304220647176 -1.1663702609505 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0084971202173 -1.0894076313217 -1.1579235570986 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1706207513438 -1.3071103090201 -1.186642350195 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1997396514648 -1.1174595793772 -1.195889268096 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9882608608152 -1.1267064972782 -1.1806852011626 0.05 ShinyColor 1 1 1 50 0 null sphere -0.68138657607772 -0.94954799806886 -1.1374291861737 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0482760911084 1.2467283724299 -1.2058919437101 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2369487813579 1.2466394597578 -1.1953557920633 0.05 ShinyColor 1 1 1 50 0 null sphere 0.87805278032484 1.2501070539707 -1.1971340455058 0.05 ShinyColor 1 1 1 50 0 null sphere 1.053655307772 1.4235312209507 -1.1990012116204 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4296225418531 1.4328670515238 -1.2061586817265 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2371710630382 1.4250427363768 -1.2077591098247 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5989122695793 1.4102832328041 -1.1995346876531 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8056786886063 1.4283769615815 -1.1957558990878 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2267682803996 1.5932210557015 -1.1889540796702 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4470494255896 1.5894867234723 -1.2080258478411 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6085148381688 1.5725933157685 -1.2124270251113 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8002105592706 1.594999309144 -1.201535222776 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4873354925559 1.8039885449741 -1.1474763181239 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6388426858571 2.2205888702164 -1.1265373838384 0.05 ShinyColor 1 1 1 50 0 null sphere -0.85241010091039 2.402237459368 -1.1296937836989 0.05 ShinyColor 1 1 1 50 0 null sphere -0.87935064056431 2.582018882405 -1.1460537153699 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8187574779023 2.9498506069867 -1.1419637324521 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5439736880909 -1.9702210177292 -1.1324945328708 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3631253129884 -1.9943163518751 -1.1354286510509 0.05 ShinyColor 1 1 1 50 0 null sphere -2.372772337914 -1.8115118979859 -1.1397853719851 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1839662786563 -1.6365317592436 -1.1258260824614 0.05 ShinyColor 1 1 1 50 0 null sphere -1.684232604977 -1.3219142689289 -1.1130671140115 0.05 ShinyColor 1 1 1 50 0 null sphere 2.01440118642 -1.2999083825779 -1.1858421361459 0.05 ShinyColor 1 1 1 50 0 null sphere 2.355470196692 -1.2831928002184 -1.1370290791492 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8776176668491 -1.1364868912119 -1.1244923923795 0.05 ShinyColor 1 1 1 50 0 null sphere -2.375617543422 -0.91144891806325 -1.1401854790096 0.05 ShinyColor 1 1 1 50 0 null sphere -2.190190165705 -0.94834767699517 -1.1396964593129 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9732346192261 -0.93278795937328 -1.158901596492 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1824016804004 -0.9144719489155 -1.136895710141 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9954183309213 -0.73140075700987 -1.170993719901 0.05 ShinyColor 1 1 1 50 0 null sphere 0.69920494034516 0.71463048609709 -1.1813965025396 0.05 ShinyColor 1 1 1 50 0 null sphere 0.70267253455804 0.89845743571579 -1.1908212457849 0.05 ShinyColor 1 1 1 50 0 null sphere 0.88472123073423 0.88978845018359 -1.1810408518511 0.05 ShinyColor 1 1 1 50 0 null sphere 0.69782679392722 1.0667691240486 -1.1843750770558 0.05 ShinyColor 1 1 1 50 0 null sphere 0.87694137192328 1.0712147576549 -1.1969562201615 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0507211895918 1.063434898844 -1.184508446064 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2496632934718 1.0503647360416 -1.1509883686728 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3985031066093 1.2426828458482 -1.1765952182449 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9859046750039 1.2562420283473 -1.1709048072288 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6128715591029 1.2565532226997 -1.1643252694916 0.05 ShinyColor 1 1 1 50 0 null sphere 0.87427399175953 1.4529168590881 -1.1623691907048 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8124805080238 1.2227219509561 -1.1543670502136 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0013310236176 1.41450658473 -1.1918881978504 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1724434611224 1.4363791020728 -1.1692154664585 0.05 ShinyColor 1 1 1 50 0 null sphere 1.046586750338 1.6234958205601 -1.1542781375414 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0062212205845 1.614871291364 -1.1769508689334 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6250970515201 1.7884732836883 -1.1572567120576 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7896744076237 1.8130131811948 -1.1427194901652 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4219315957142 1.8022992042037 -1.1423193831406 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9704338700541 -1.8884213593741 -1.125514888109 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5270350006598 -1.512454125293 -1.1329835525675 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3732613576106 -1.4446582127976 -1.1301828033955 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8133696347451 -1.3044873851924 -1.1562786726643 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3579152951754 -1.1270176916306 -1.1302272597316 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5386833840994 -1.0976320534933 -1.1302717160677 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5970451034647 -1.1006550843455 -1.156767692361 0.05 ShinyColor 1 1 1 50 0 null sphere 1.594466635973 -0.92425234284927 -1.161791258336 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7883851738779 -0.92216289505433 -1.178818035048 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7676240649367 -0.7277997937888 -1.173838925409 0.05 ShinyColor 1 1 1 50 0 null sphere -0.54681724681634 -0.77341199458899 -1.130538454084 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9798586132994 -0.53405908122816 -1.1780178209989 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7835838895832 -0.51129743716412 -1.1470762110993 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1763556186959 -0.52423423095833 -1.1528110784514 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9579860959566 -0.35072115130615 -1.1602352865738 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1976057473338 -0.34169651508545 -1.1663702609505 0.05 ShinyColor 1 1 1 50 0 null sphere 0.5431187444295 0.35702371880984 -1.1605909372623 0.05 ShinyColor 1 1 1 50 0 null sphere 0.53369400118424 0.53898350231391 -1.1743724014417 0.05 ShinyColor 1 1 1 50 0 null sphere 0.35675778365524 0.53893904597785 -1.1576568190822 0.05 ShinyColor 1 1 1 50 0 null sphere 0.52026818769334 0.71765351694935 -1.1756171788515 0.05 ShinyColor 1 1 1 50 0 null sphere 0.52702555077485 0.9011692722156 -1.1672149313357 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0649027607958 0.88907714880659 -1.1484099011812 0.05 ShinyColor 1 1 1 50 0 null sphere 0.52213535380797 1.079083529138 -1.1477875124763 0.05 ShinyColor 1 1 1 50 0 null sphere 0.70209460218922 1.2426828458482 -1.1652588525489 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4294002601727 1.0813063459411 -1.1288491133137 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1980058543584 1.2473952174708 -1.1690820974503 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1769780074008 1.60633567484 -1.1439198112389 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2446397274967 1.7819826586232 -1.1341394173051 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9893278128807 1.7815825515986 -1.1357843017394 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6645829044373 2.3708068297718 -1.1283156372809 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8001755528194 -2.1031454625563 -1.1401410226736 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5934885965797 -1.2819924791447 -1.1471206674354 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8074569420488 -1.1189710948033 -1.1649476581965 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5168108667567 -0.94625822920023 -1.1235143529862 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5933107712354 -0.71610777740435 -1.1308051921004 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1972500966453 -0.69779176694657 -1.1257371697893 0.05 ShinyColor 1 1 1 50 0 null sphere 2.364005813216 -0.35103234565859 -1.1279599865924 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0212919185097 -0.18000882082591 -1.1407189550424 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1989838937518 -0.15649141904881 -1.1633472300982 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3724525170679 -0.15191241643437 -1.1416080817636 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1830685254414 0.01275385234136 -1.1413413437472 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3752532662398 0.021822944898122 -1.1534334671563 0.05 ShinyColor 1 1 1 50 0 null sphere 0.35031161492617 0.19947046380412 -1.1659256975898 0.05 ShinyColor 1 1 1 50 0 null sphere 0.17359767907748 0.19693645264856 -1.1481431631648 0.05 ShinyColor 1 1 1 50 0 null sphere 0.53605018699555 0.17955402524809 -1.1441865492552 0.05 ShinyColor 1 1 1 50 0 null sphere 0.16612901461897 0.36529259731748 -1.1352063693706 0.05 ShinyColor 1 1 1 50 0 null sphere 0.35373475280298 0.38014101356237 -1.1635250554425 0.05 ShinyColor 1 1 1 50 0 null sphere 0.72365592517957 0.53440449969947 -1.1538780305169 0.05 ShinyColor 1 1 1 50 0 null sphere 2.338398963644 0.54360696126442 -1.1466316477387 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5422312644908 0.5444516316496 -1.1505438053122 0.05 ShinyColor 1 1 1 50 0 null sphere 0.34911129385248 0.7224548012441 -1.1402299353457 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3403994987668 0.72610022080123 -1.1551672642627 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5465879854249 0.7112962608924 -1.152544340435 0.05 ShinyColor 1 1 1 50 0 null sphere 0.90330397920838 0.71716449725266 -1.1451645886486 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3717856720269 0.90112481587954 -1.1595239851968 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5300946847457 0.89961330045341 -1.1464982787305 0.05 ShinyColor 1 1 1 50 0 null sphere 0.36320395238431 0.90308089466629 -1.1250258684123 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2138759429414 0.91668453350144 -1.1155122124949 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3754755479201 1.0665912987044 -1.1576123627461 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1779115904581 1.0638350058685 -1.1512995630253 0.05 ShinyColor 1 1 1 50 0 null sphere 0.5507207778962 1.2453057696759 -1.1258260824614 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3729859931006 1.2391263389632 -1.1528999911235 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3815660659607 1.4370459471137 -1.1358732144115 0.05 ShinyColor 1 1 1 50 0 null sphere 0.71694301843412 1.4250427363768 -1.1250703247483 0.05 ShinyColor 1 1 1 50 0 null sphere 0.90694939876551 1.5901980248493 -1.1277377049121 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6313740213986 2.9093508848337 -1.1153788434867 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9317654841733 -2.2731909479956 -1.1192910010602 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3331086596525 -1.4388344327734 -1.1132004830196 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4916041242092 -1.2551408521629 -1.1287602006415 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3273737923004 -0.98222340507485 -1.1220917502322 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8224387273019 -0.34178542775757 -1.1208469728224 0.05 ShinyColor 1 1 1 50 0 null sphere 0.35720234701586 -0.15644696271275 -1.1273820542236 0.05 ShinyColor 1 1 1 50 0 null sphere 0.18333361667518 -0.19245659492343 -1.1335170286002 0.05 ShinyColor 1 1 1 50 0 null sphere 0.0040412133348698 -0.17476297317053 -1.1296937836989 0.05 ShinyColor 1 1 1 50 0 null sphere 0.3543126851718 0.02231196459481 -1.1474763181239 0.05 ShinyColor 1 1 1 50 0 null sphere 0.0099094496951279 0.026446403848629 -1.1237810910025 0.05 ShinyColor 1 1 1 50 0 null sphere 0.17457571847086 0.019511215422869 -1.1456980646814 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5300502284097 -0.0075626932392311 -1.1228475079452 0.05 ShinyColor 1 1 1 50 0 null sphere 0.50177435189132 0.027869006602631 -1.1244479360435 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1933823954079 0.18844529246061 -1.1207580601503 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3510245630857 0.19653634562399 -1.1453868703289 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5558349033259 0.19204625568167 -1.1329390962314 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5440539742694 0.36422564525198 -1.1439198112389 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3540031376019 0.36760432679273 -1.1433418788701 0.05 ShinyColor 1 1 1 50 0 null sphere 0.71943257325362 0.37627331232493 -1.1233365276419 0.05 ShinyColor 1 1 1 50 0 null sphere 0.19106901915007 0.5516980144278 -1.1258260824614 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1995173697845 0.90490360444486 -1.1317387751577 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5526785034655 1.0796614615068 -1.1362733214361 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9901280269298 1.084773940154 -1.1211581671748 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5400973603598 1.2456169640283 -1.1293381330104 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5927414653602 1.9967067618053 -1.1122224436263 0.05 ShinyColor 1 1 1 50 0 null sphere 2.20623027653 -1.9500822974929 -0.99957008804373 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2709236953859 -1.8171133963298 -0.99139012220822 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6258536326245 -1.859880391622 -1.1214693615273 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8064789026554 -1.8393860206971 -1.0599417924167 0.05 ShinyColor 1 1 1 50 0 null sphere -0.34658590919056 -1.6411996745302 -1.0010816034699 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2930168476264 -1.6259956075968 -1.0291780078614 0.05 ShinyColor 1 1 1 50 0 null sphere -0.93869984920783 -1.5710475762235 -1.0571410432447 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4468271439093 -1.3065323766512 -1.1105331028559 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4524730985892 -1.1135029654676 -1.1213804488552 0.05 ShinyColor 1 1 1 50 0 null sphere -0.41535986107934 -1.1279512746879 -1.104931604512 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4683440105635 -0.91389401654669 -1.1143118914212 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3706298072893 -0.90286884520317 -1.0085058115923 0.05 ShinyColor 1 1 1 50 0 null sphere -0.56157675038911 -0.71077301707684 -1.0430483847129 0.05 ShinyColor 1 1 1 50 0 null sphere 1.660528751362 -0.5418389400391 -1.112711463323 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3042120412118 -0.51067504845925 -1.11488982379 0.05 ShinyColor 1 1 1 50 0 null sphere 0.16399511048797 -0.35343298780597 -1.1268485781908 0.05 ShinyColor 1 1 1 50 0 null sphere 0.014221714293197 -0.34663116838839 -1.1296048710267 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8894788820842 -0.19868048197219 -1.104931604512 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4701675437334 -0.16942821284302 -1.1207580601503 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0486325651882 -0.011030287452111 -1.1109776662165 0.05 ShinyColor 1 1 1 50 0 null sphere 0.49097146222811 -0.10043197927392 -1.1067098579545 0.05 ShinyColor 1 1 1 50 0 null sphere 0.051298298569373 0.19609178226337 -1.1266262965105 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2365939540607 0.37276126177599 -1.118401874339 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6828021991206 0.39036597085676 -1.1158234068473 0.05 ShinyColor 1 1 1 50 0 null sphere 2.707964485332 0.55280942282937 -1.1137339590524 0.05 ShinyColor 1 1 1 50 0 null sphere 0.86209295567838 0.5701029375577 -1.1173793786095 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2328151654954 0.55547680299312 -1.1216471868715 0.05 ShinyColor 1 1 1 50 0 null sphere 0.21978781224648 0.7203208971131 -1.1044425848153 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2018290992598 0.74735034943914 -1.1145786294376 0.05 ShinyColor 1 1 1 50 0 null sphere 2.715744344143 0.7314794374648 -1.1156455815031 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0144003630287 0.71814253664604 -1.1048871481759 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7063196008977 0.89579005555203 -1.1075989846758 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0695714994736 0.94567006461423 -1.1055095368808 0.05 ShinyColor 1 1 1 50 0 null sphere 0.38249800223546 1.0447632376977 -1.1159123195195 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6576843692453 1.0574332934755 -1.1110221225526 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6457692477892 1.1373213293799 -1.1174238349456 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8415104954727 1.1232731271842 -1.12053577847 0.05 ShinyColor 1 1 1 50 0 null sphere 0.75255254362023 1.5581894628842 -1.0967960950126 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3492018533072 1.5726822284406 -1.109910714151 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1068781685325 1.6246516852977 -1.0261994333452 0.05 ShinyColor 1 1 1 50 0 null sphere -1.323247156149 1.5897090051526 -1.0515395449009 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0812182361308 1.7510855050597 -1.113467221036 0.05 ShinyColor 1 1 1 50 0 null sphere -1.030457726841 1.7552199443135 -1.0830590871692 0.05 ShinyColor 1 1 1 50 0 null sphere -0.86290179622116 1.9661208025943 -1.0247768305912 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8138672809354 2.6013573885922 -1.0965293569962 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8442309584662 2.758910643598 -1.0379359060657 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0120972600471 2.793053109694 -1.0987966301354 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1248829846378 -2.4500827091885 -0.98361026339727 0.05 ShinyColor 1 1 1 50 0 null sphere -0.96968591544343 -2.4576847426552 -1.0491833590896 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4950708950308 -2.4168293698137 -0.99868096132248 0.05 ShinyColor 1 1 1 50 0 null sphere -0.89531046521076 -2.3972685819462 -0.98534406050371 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6574254343313 -2.3627704651617 -1.0101062396906 0.05 ShinyColor 1 1 1 50 0 null sphere -1.831294164672 -2.2986199722234 -1.0216204307308 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0188109901838 -2.2134416323275 -0.97511910320932 0.05 ShinyColor 1 1 1 50 0 null sphere -0.70690451297763 -2.1919247656732 -0.98970078143784 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0704256197437 -2.2007715765497 -0.99814748528973 0.05 ShinyColor 1 1 1 50 0 null sphere -0.61812520986069 -2.1299970895381 -1.0512283505484 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8960234133703 -2.1612498937901 -0.99058990815909 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7551412843881 -2.1130147691622 -1.0038823526418 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3392530839141 -2.0222349309224 -1.0240210728781 0.05 ShinyColor 1 1 1 50 0 null sphere -0.54463888634927 -1.9976505770798 -0.99703607688817 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5376164320339 -2.0365498711346 -1.0185529435424 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3895768329456 -2.0569553293873 -0.98609981821678 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3644059202406 -2.0032520754237 -1.0191308759113 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5275606735902 -2.0507314423385 -1.0194865265998 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6194074638954 -1.9568396605744 -1.11488982379 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7124990316104 -2.004141202145 -1.0299782219105 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9967964773392 -1.8853983285219 -1.0180639238458 0.05 ShinyColor 1 1 1 50 0 null sphere 2.700807015226 -1.8156907935758 -0.99179022923278 0.05 ShinyColor 1 1 1 50 0 null sphere -0.43496510528293 -1.8460100147704 -1.0173970788048 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6341661440769 -1.8312949675337 -1.0363799343035 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8904663713625 -1.7609205875467 -1.0091726566332 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7697229626166 -1.7491841148262 -1.0273108417468 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5371624187884 -1.6975258523215 -1.0874158081034 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5494331909329 -1.6458675898168 -0.98325461270877 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4280673934821 -1.5764712492231 -1.0517618265812 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3905104160029 -1.6281739680639 -1.048783252065 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4632846147461 -1.4552388207805 -0.9883226350199 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4175312418353 -1.4866694503767 -1.0536734490319 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5735816079086 -1.3174241789866 -1.0486054267207 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8236032185331 -1.0722030292655 -1.0065941891416 0.05 ShinyColor 1 1 1 50 0 null sphere -0.76780969338334 -1.0926974001903 -1.0638984063263 0.05 ShinyColor 1 1 1 50 0 null sphere -0.32809207338853 -1.0973653154769 -1.0581190826381 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0441955580756 -0.97519930397696 -1.0950622979061 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9781334426866 -1.0092973137369 -1.0734565185797 0.05 ShinyColor 1 1 1 50 0 null sphere -0.72819909795159 -0.90575850704724 -1.019664351944 0.05 ShinyColor 1 1 1 50 0 null sphere -0.45754892400271 -0.94390204338892 -1.0978630470781 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5898081705714 -0.87521700417226 -1.0680773019161 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1655613555264 -0.86303596809112 -1.040958936918 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3548564344807 -0.74211473400095 -1.0109953664118 0.05 ShinyColor 1 1 1 50 0 null sphere -0.63324036412196 -0.83596205942902 -1.0742567326288 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3970805038553 -0.88753140926159 -1.0634093866296 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5149787070932 -0.80746554801291 -1.1128003759951 0.05 ShinyColor 1 1 1 50 0 null sphere -0.17000534235006 -0.51294232159844 -1.1034645454219 0.05 ShinyColor 1 1 1 50 0 null sphere 0.00097372614655292 -0.54499533989955 -1.1025309623646 0.05 ShinyColor 1 1 1 50 0 null sphere 0.15630416434915 -0.4967157589356 -1.10066379625 0.05 ShinyColor 1 1 1 50 0 null sphere -0.17231707182531 -0.3400960869872 -1.1039091087826 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7288581398902 -0.33373883093025 -1.070789138416 0.05 ShinyColor 1 1 1 50 0 null sphere 0.31479100241218 -0.34658671205233 -1.104220303135 0.05 ShinyColor 1 1 1 50 0 null sphere -0.14026405352421 -0.15658033172094 -1.105642905889 0.05 ShinyColor 1 1 1 50 0 null sphere 0.74019368219484 0.18555563061654 -1.0477607563355 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6772896134489 0.1873783403951 -1.0998191258648 0.05 ShinyColor 1 1 1 50 0 null sphere 0.67070842892905 0.23267934684286 -1.1103552775116 0.05 ShinyColor 1 1 1 50 0 null sphere 0.045296693200928 0.31132260533753 -1.1129782013393 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1551499463941 0.54378478660867 -1.0762572677517 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1177621677655 0.70827323004015 -1.0641206880066 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1092701841862 0.70338303307326 -1.0409144805819 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5835748336377 1.032893395969 -1.0743011889649 0.05 ShinyColor 1 1 1 50 0 null sphere 0.48390290479417 1.2975864208855 -1.0852819039724 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5057326125834 1.4221975308688 -1.1103552775116 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5813528402259 1.4280657672291 -1.0779910648581 0.05 ShinyColor 1 1 1 50 0 null sphere 0.57401589799298 1.3820090030683 -1.0915947036932 0.05 ShinyColor 1 1 1 50 0 null sphere 0.85386853350681 1.6647068440901 -1.0751458593501 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1563502674678 1.7331696016265 -1.105642905889 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5382379973475 1.741394023798 -1.0588748403512 0.05 ShinyColor 1 1 1 50 0 null sphere 1.424598975878 1.9865707171831 -0.99952563170767 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5200467294043 1.9075273516638 -1.0923060050702 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6040692045625 1.9931057985843 -1.0042824596664 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8114135559583 1.914729278106 -1.0879048278 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7985656748363 1.9980404518872 -1.0008148654535 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6716959182074 1.9750565261429 -1.0302005035908 0.05 ShinyColor 1 1 1 50 0 null sphere -0.8504984784597 2.1821785958583 -1.0151298056656 0.05 ShinyColor 1 1 1 50 0 null sphere -0.85352150931196 2.2611330487054 -1.0959958809634 0.05 ShinyColor 1 1 1 50 0 null sphere -0.9538150034691 2.5371624393179 -1.0119734058052 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8625025125879 2.5495213007433 -1.0449155508275 0.05 ShinyColor 1 1 1 50 0 null sphere -1.7441597459893 2.7263241492641 -1.0982631541026 0.05 ShinyColor 1 1 1 50 0 null sphere -0.98257825290157 2.6707537291859 -1.0674104568752 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1316848040554 2.8499572198541 -1.0223317321078 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8468094259578 2.8637386840335 -1.0574077812611 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9203402058053 2.9660771696495 -1.0959069682913 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8269374437378 3.0643256723478 -0.99596912482266 0.05 ShinyColor 1 1 1 50 0 null sphere -1.672896239281 3.134877877679 -0.98516623515946 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6116354081868 3.2041853056006 -1.0527398659746 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5377489776509 3.207341705461 -1.0518062829172 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3560559321632 -2.4543949737866 -1.0852819039724 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4106491362393 -1.5139656407192 -1.079369211276 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5358381785914 -1.4580840262885 -1.0096172199939 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3651163982263 -1.1234167284095 -1.0738566256043 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4115296364669 -1.0722474856015 -1.0755904227107 0.05 ShinyColor 1 1 1 50 0 null sphere -0.15213389525291 -0.64168787083562 -1.0989744554796 0.05 ShinyColor 1 1 1 50 0 null sphere -0.16720459317812 -0.73522400191125 -1.0812808337267 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5617023162949 -0.53272539114628 -1.0513172632206 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3957031808286 -0.5563317055955 -1.0548293137695 0.05 ShinyColor 1 1 1 50 0 null sphere 0.34768869109848 -0.53125833205621 -1.0304227852711 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5336067352947 -0.38095145982869 -1.0300226782466 0.05 ShinyColor 1 1 1 50 0 null sphere -0.21561754315025 -0.14946731795093 -1.0791469295957 0.05 ShinyColor 1 1 1 50 0 null sphere 0.41415091351201 -0.2732337575491 -1.0811030083825 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7943867792464 -0.15546892331938 -1.0229096644766 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5809971895374 -0.19138964285793 -1.0717227214733 0.05 ShinyColor 1 1 1 50 0 null sphere 0.55312142004358 -0.1606703146387 -1.047360649311 0.05 ShinyColor 1 1 1 50 0 null sphere -0.14257578299946 -0.023166867197191 -1.0927505684309 0.05 ShinyColor 1 1 1 50 0 null sphere 0.57619425846005 -0.022322196812002 -1.0771463944729 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9514065582193 0.02871367698782 -1.0372690610248 0.05 ShinyColor 1 1 1 50 0 null sphere -0.19134438366009 0.038405158249458 -1.0564741982038 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7220126875278 -0.011563763484862 -1.0373135173608 0.05 ShinyColor 1 1 1 50 0 null sphere -0.043171415563571 0.18551117428048 -1.0873268954312 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9855045679793 0.18448867855104 -0.99863650498642 0.05 ShinyColor 1 1 1 50 0 null sphere -0.040904142424381 0.37471734056274 -1.0554072461383 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1395902287722 0.35368949360515 -1.0717227214733 0.05 ShinyColor 1 1 1 50 0 null sphere 0.89067837976661 0.36822671549761 -1.0021040991993 0.05 ShinyColor 1 1 1 50 0 null sphere -0.015519574532658 0.5513423637393 -1.0339348358201 0.05 ShinyColor 1 1 1 50 0 null sphere 0.93313418070636 0.49554966198079 -1.0486498830568 0.05 ShinyColor 1 1 1 50 0 null sphere 0.1149153154749 0.74112646239038 -1.0545181194171 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4091726272643 0.89427854012591 -1.0017039921747 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7746489894259 1.067702707106 -1.0746568396534 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7365499094203 1.2359254827667 -1.0528287786467 0.05 ShinyColor 1 1 1 50 0 null sphere 0.34764423476241 1.258198107134 -1.0194420702637 0.05 ShinyColor 1 1 1 50 0 null sphere 0.88934468968473 1.8006543197694 -0.99063436449516 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2249019376762 1.8123463361539 -1.0425593650162 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0564560569439 1.8425321883404 -1.0394474214918 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6488453614712 1.8082118969001 -1.0245545489109 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3619155420298 1.9001920562135 -1.079369211276 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9849710919466 1.9660318899222 -1.00401572165 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8424527050237 2.3512015855682 -1.0282444248041 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9840461353829 2.9136631494317 -1.0037934399697 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3162675113872 -2.4501716218607 -1.003304420273 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0993205914019 -2.453283565385 -1.0647875330475 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1684954737065 -2.1532922096349 -0.97969810582377 0.05 ShinyColor 1 1 1 50 0 null sphere -2.6407995880351 -1.7346468929337 -1.063720580982 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5399281615092 -1.6506244177755 -0.97711963833214 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3681394290785 -1.46337433028 -1.0659878541212 0.05 ShinyColor 1 1 1 50 0 null sphere -0.32222383702827 -1.4745773269677 -1.0255325883043 0.05 ShinyColor 1 1 1 50 0 null sphere -0.79203839653743 -1.2751906597271 -1.0578968009578 0.05 ShinyColor 1 1 1 50 0 null sphere 1.357825559112 -1.348276876214 -1.0731453242273 0.05 ShinyColor 1 1 1 50 0 null sphere -0.32213492435615 -1.2854600733576 -1.0501613984829 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7134856974974 -1.1214606496228 -0.99374630801954 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7171311170546 -0.92687526667696 -0.99548010512598 0.05 ShinyColor 1 1 1 50 0 null sphere -0.34222918825643 -0.92580831461146 -1.064431882359 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0094307032746 -0.91384956021063 -0.98556634218402 0.05 ShinyColor 1 1 1 50 0 null sphere -0.17333956755475 -0.90518057467843 -1.0666991554982 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2431290354619 -0.8169792039303 -1.0705668567356 0.05 ShinyColor 1 1 1 50 0 null sphere -0.39135343960556 -0.72837772615762 -1.0638984063263 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5445960767958 -0.75087263220527 -1.0172637097966 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4218871393782 -0.70228185688889 -1.0236654221896 0.05 ShinyColor 1 1 1 50 0 null sphere -0.0052946172382683 -0.72837772615762 -1.0737677129321 0.05 ShinyColor 1 1 1 50 0 null sphere 0.16408402316009 -0.72064232368273 -1.0521174772697 0.05 ShinyColor 1 1 1 50 0 null sphere -0.36263464650914 -0.53116941938409 -1.0581190826381 0.05 ShinyColor 1 1 1 50 0 null sphere 0.39116698776766 -0.3668143449608 -1.0719005468175 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7728262796473 0.1813322786906 -1.0528287786467 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0853979551119 0.21507463776208 -1.0638984063263 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7712258515491 0.33323957901637 -1.0812363773907 0.05 ShinyColor 1 1 1 50 0 null sphere 2.883433643771 0.54245109652679 -1.0338014668119 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8881460153936 0.71134071722846 -1.0339348358201 0.05 ShinyColor 1 1 1 50 0 null sphere 1.241972347333 0.74583883401301 -0.97227389770132 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8904577448689 0.89490092883078 -1.027444210755 0.05 ShinyColor 1 1 1 50 0 null sphere 0.16559553858622 0.89041083888846 -1.041003393254 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9881719481431 0.88094163930714 -1.0272219290746 0.05 ShinyColor 1 1 1 50 0 null sphere 0.18395600538006 1.0765050616464 -0.98205429163508 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7909636413696 1.0249801681498 -1.0559407221711 0.05 ShinyColor 1 1 1 50 0 null sphere 0.29847552707722 1.1115811107997 -1.0502947674911 0.05 ShinyColor 1 1 1 50 0 null sphere 0.51742298218534 1.4714106948901 -1.0166857774278 0.05 ShinyColor 1 1 1 50 0 null sphere 0.69431474337827 1.6263854824042 -1.0205090223292 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5536120865228 1.6203838770357 -1.0153076310099 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4087288872949 1.6437679098046 -1.0737677129321 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4950708950308 1.5979778836602 -1.0602085304331 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3792543364854 1.7878953513195 -0.99881433033067 0.05 ShinyColor 1 1 1 50 0 null sphere -0.90891410404591 1.7975868325811 -0.98516623515946 0.05 ShinyColor 1 1 1 50 0 null sphere -0.89615513559595 2.3749857253617 -0.99356848267529 0.05 ShinyColor 1 1 1 50 0 null sphere -1.715529865565 2.8772978665326 -1.0717671778093 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4410564467148 2.962876313453 -0.97463008351263 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4851571320888 3.0818859250925 -1.0106397157233 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4447821524504 -1.8220925059688 -0.98538851683977 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3925459575769 -1.660226986365 -1.030333872599 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6234607935795 -1.2730567555961 -0.99716944589635 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5372521548518 -1.2759908737763 -0.98970078143784 0.05 ShinyColor 1 1 1 50 0 null sphere 0.22094367698411 -0.59643132072393 -1.0574522375972 0.05 ShinyColor 1 1 1 50 0 null sphere -0.36979211661522 -0.33889576591351 -1.0234431405093 0.05 ShinyColor 1 1 1 50 0 null sphere -0.36654680408265 -0.16360443281882 -0.9920125109131 0.05 ShinyColor 1 1 1 50 0 null sphere 0.70142775714828 0.033959524643202 -0.99223479259341 0.05 ShinyColor 1 1 1 50 0 null sphere -0.19730153269247 0.19929263845987 -1.0067275581498 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8952145728275 0.35413405696578 -1.0040601779861 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0403184069532 0.55569908467343 -0.9854774295119 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2666900701838 0.84968883505516 -1.0425593650162 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4878245122526 1.4673651683084 -0.97414106381595 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3124887228218 1.4253539307293 -0.99610249383085 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2555759861681 1.9723891459791 -0.9803649508647 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2079187939091 1.893434693132 -1.0510060688681 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2935503236592 2.9035715611455 -0.97596377359451 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5439206052612 -1.4667974681568 -0.98107625224171 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2644672533806 -1.281503459448 -1.0229096644766 0.05 ShinyColor 1 1 1 50 0 null sphere -1.7377580335963 -1.1921462239623 -1.0549626827777 0.05 ShinyColor 1 1 1 50 0 null sphere -0.0082287354183974 -0.91442749257944 -1.0384693820985 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3693405735435 -0.70734987920002 -1.0093949383136 0.05 ShinyColor 1 1 1 50 0 null sphere 0.52244654816041 -0.33218285916806 -0.98872274204447 0.05 ShinyColor 1 1 1 50 0 null sphere 0.00066253179411498 0.70209379932745 -0.98321015637271 0.05 ShinyColor 1 1 1 50 0 null sphere 2.892013716631 1.0747268082038 -1.0008148654535 0.05 ShinyColor 1 1 1 50 0 null sphere 2.714321741389 1.44860459449 -0.99810302895367 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6540467527905 1.6082917536267 -0.98818926601172 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0670374883181 1.8791197529198 -1.0497612914584 0.05 ShinyColor 1 1 1 50 0 null sphere -1.7023263337545 2.1729316779573 -1.0170858844524 0.05 ShinyColor 1 1 1 50 0 null sphere -0.0021382173778264 3.6308772191291 -1.0040601779861 0.05 ShinyColor 1 1 1 50 0 null sphere 0.17497582549542 3.6352339400632 -0.98974523777391 0.05 ShinyColor 1 1 1 50 0 null sphere 0.17728755497067 3.7666024131281 -0.99774737826517 0.05 ShinyColor 1 1 1 50 0 null sphere 0.30225431564254 3.8008782482323 -1.0312674556563 0.05 ShinyColor 1 1 1 50 0 null sphere -0.78999340507855 -2.3089338421899 -0.99965900071586 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2579869015917 -2.1880126080997 -0.96582772897225 0.05 ShinyColor 1 1 1 50 0 null sphere -2.6590266858208 -2.0776719819924 -0.96440512621824 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1282538630762 -1.9052703107418 -0.9952133671096 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0666912875145 -1.7933292565363 -0.97667507497151 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7107294046616 -1.7091734123699 -0.94684487347353 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1558690508734 -1.6284407060803 -0.98494395347915 0.05 ShinyColor 1 1 1 50 0 null sphere -0.92051720775824 -1.4718654904679 -0.99694716421604 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2403719192347 -1.4805789323362 -0.97551921023389 0.05 ShinyColor 1 1 1 50 0 null sphere -0.80924299859364 -1.4467476605926 -1.0340237484922 0.05 ShinyColor 1 1 1 50 0 null sphere -0.92309567524987 -1.2994193628812 -0.98978969410997 0.05 ShinyColor 1 1 1 50 0 null sphere -0.18240866011152 -1.3140899537819 -0.97734192001245 0.05 ShinyColor 1 1 1 50 0 null sphere -0.91464897139798 -1.1047006109272 -0.9736075877832 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4987529678216 -1.1106577599596 -0.96845065279994 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6974805931236 -1.156403329768 -0.96338263048881 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2265015423832 -1.1290626830895 -0.97245172304557 0.05 ShinyColor 1 1 1 50 0 null sphere -0.17725172512826 -1.1043005039026 -1.0280221431238 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2759369880848 -0.93407719311909 -0.97778648337308 0.05 ShinyColor 1 1 1 50 0 null sphere 0.18689012356019 -0.91331608417787 -0.97156259632432 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3059005585909 -0.76171997820454 -0.94835638889966 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2121071393839 -0.77265623687593 -0.96133763902993 0.05 ShinyColor 1 1 1 50 0 null sphere -0.7227309686159 -0.75727434459828 -0.95502483930904 0.05 ShinyColor 1 1 1 50 0 null sphere 0.33764155914834 -0.70508260606083 -0.96169328971843 0.05 ShinyColor 1 1 1 50 0 null sphere -0.5346362107352 -0.53708211208041 -0.97956473681558 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4584302476216 -0.53806015147379 -0.97307411175044 0.05 ShinyColor 1 1 1 50 0 null sphere 2.525293400451 -0.54459523287498 -0.95249082815348 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6019797567676 -0.34720910075721 -0.98449939011852 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7161889075036 -0.17187331132646 -0.97809767772551 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8391098533253 -0.0056955271246034 -0.97298519907832 0.05 ShinyColor 1 1 1 50 0 null sphere -0.33622758288798 0.0095085398087927 -0.95827015184161 0.05 ShinyColor 1 1 1 50 0 null sphere 2.9069510455481 0.19649188928793 -0.96236013475937 0.05 ShinyColor 1 1 1 50 0 null sphere 0.8352413286966 0.19911481311562 -0.95418016892386 0.05 ShinyColor 1 1 1 50 0 null sphere -0.1731617422105 0.37814047843956 -0.95862580253011 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9951515929049 0.3607580510391 -0.96387165018549 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0101778344941 0.5444516316496 -0.9709846639555 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9868382580612 0.72654478416186 -0.98152081560233 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6159390462913 0.94655919133548 -0.98307678736452 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8142587614663 0.9441585491881 -0.98409928309396 0.05 ShinyColor 1 1 1 50 0 null sphere 0.56285735764128 1.618472254585 -0.9532910422026 0.05 ShinyColor 1 1 1 50 0 null sphere 0.71796551416356 1.7407716350932 -0.94342173559672 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0634801580418 1.933223113908 -0.95835906451374 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1393679470919 1.951005648333 -0.96471632057068 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0648669309534 2.7256573042232 -0.95742548145642 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0136540552006 2.7501972017297 -0.95458027594842 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3757945453749 -1.5454407266514 -0.98956741242965 0.05 ShinyColor 1 1 1 50 0 null sphere 0.0067085934986235 -1.1243947678029 -0.97520801588145 0.05 ShinyColor 1 1 1 50 0 null sphere 2.87418672587 1.2616212450109 -0.95787004481705 0.05 ShinyColor 1 1 1 50 0 null sphere 0.37667422221127 1.4195301507051 -0.94311054124428 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0111645003811 2.3771640858287 -0.96204894040693 0.05 ShinyColor 1 1 1 50 0 null sphere 0.044274197471489 3.7309484316059 -0.95275756616985 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4463039411527 -2.158360231946 -0.93217428257289 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3129785659098 -2.0956323417617 -0.99476880374897 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5730839617182 -2.1109253213672 -0.93386362334326 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7319264504698 -2.1315530613003 -0.9518684394486 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2606440084793 -1.6366651282518 -0.95515820831723 0.05 ShinyColor 1 1 1 50 0 null sphere -2.6927245885562 -1.3003084896025 -0.94328836658853 0.05 ShinyColor 1 1 1 50 0 null sphere -0.89864469041546 -0.92812004408671 -0.93137406852376 0.05 ShinyColor 1 1 1 50 0 null sphere -2.701838137449 -0.76905527365486 -0.93955403435927 0.05 ShinyColor 1 1 1 50 0 null sphere 0.48372507944992 -0.49275914502604 -0.94502216369497 0.05 ShinyColor 1 1 1 50 0 null sphere -0.49653713072958 -0.34672008106052 -0.94933442829304 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6675981321872 -0.3220468145458 -0.95382451823535 0.05 ShinyColor 1 1 1 50 0 null sphere 0.65674913940541 -0.14715558847568 -0.94835638889966 0.05 ShinyColor 1 1 1 50 0 null sphere 0.044452022815739 0.8625811725133 -0.95484701396479 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6984063730786 1.5899757431689 -0.94133228780177 0.05 ShinyColor 1 1 1 50 0 null sphere -0.95208120636266 1.609892181725 -0.94844530157178 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5204032034841 1.7523747388055 -0.94911214661272 0.05 ShinyColor 1 1 1 50 0 null sphere -0.16893839028456 3.4518515538051 -0.96200448407087 0.05 ShinyColor 1 1 1 50 0 null sphere -0.00031550759926137 3.5001755911051 -0.95169061410435 0.05 ShinyColor 1 1 1 50 0 null sphere -0.18191964041483 3.6004690852623 -0.95017909867822 0.05 ShinyColor 1 1 1 50 0 null sphere 0.26895651993168 3.6977840049032 -0.98094288323352 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0912295382385 -1.4811124083689 -0.95235745914529 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8570265801498 0.024623694070064 -0.95035692402247 0.05 ShinyColor 1 1 1 50 0 null sphere -0.13092822295107 0.53129255617509 -0.93653100350702 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0276133447242 2.5418303546045 -0.94755617485053 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8643252223664 -2.2639884864306 -0.9385759949659 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6138940548324 -1.9545279310991 -0.94453314399828 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7792716249851 -1.9468814412964 -0.9500901860061 0.05 ShinyColor 1 1 1 50 0 null sphere -0.04210446349807 -1.2855934423658 -0.93773132458071 0.05 ShinyColor 1 1 1 50 0 null sphere 0.11918312373691 -1.0688688040608 -0.94853421424391 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0152466801965 0.56245644775494 -0.93617535281852 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0224486066386 0.7362362654235 -0.93506394441695 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0147132041637 0.88627639963465 -0.93519731342514 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1096789177044 1.4115724665499 -0.96080416299718 0.05 ShinyColor 1 1 1 50 0 null sphere -0.33560519418311 3.4445607146909 -0.94404412430159 0.05 ShinyColor 1 1 1 50 0 null sphere -0.95741596669016 -2.3269831146313 -0.83143622505512 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6633825833637 -2.3086226478375 -0.81783258621998 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0597116427527 -2.2068176382542 -0.80609611349946 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7036163908915 -2.1191941998749 -0.81369814696616 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8347094994464 -1.9760447977534 -0.93653100350702 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5767824641051 -2.0626012840672 -0.84984114818502 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4289659700883 -1.9988064418175 -0.93501948808089 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3761868492971 -2.0509537240188 -0.82441212395724 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9599421747434 -1.9509714242141 -0.93035157279432 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3898443943533 -1.8383635249677 -0.92110465489331 0.05 ShinyColor 1 1 1 50 0 null sphere -0.36605778438596 -1.8439650233116 -0.83654870370232 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2352149842515 -1.8395193897053 -0.83330339116975 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8973571034522 -1.7160641444596 -0.91248012569717 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2812359185699 -1.4681756145747 -0.92523909414713 0.05 ShinyColor 1 1 1 50 0 null sphere -0.20752648998686 -1.462663028903 -0.93617535281852 0.05 ShinyColor 1 1 1 50 0 null sphere -2.6047899558245 -1.5253909190872 -0.81494292437591 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5293911864711 -1.3379185499114 -0.92243834497519 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1142134639828 -1.2797252060055 -0.94431086231797 0.05 ShinyColor 1 1 1 50 0 null sphere 1.165240711289 -1.3075993287167 -0.92506126880288 0.05 ShinyColor 1 1 1 50 0 null sphere -1.083049572403 -1.1115468866808 -0.92817321232726 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6620044369457 -1.0828725499205 -0.84303932876745 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1820452063206 -1.0707804265115 -0.90358885848466 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8159122723943 -1.0036958153931 -0.89171901675596 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5180470176728 -1.083939501986 -0.79680473926238 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8679261855875 -0.96928661128064 -0.91416946646755 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4451386265302 -0.96733053249389 -0.91136871729561 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9946267433658 -0.86081315128799 -0.82743515480949 0.05 ShinyColor 1 1 1 50 0 null sphere 0.32208184152644 -0.82693742320832 -0.91385827211511 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4462500349317 -0.74020311155026 -0.92755082362238 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5837176525308 -0.64097656945862 -0.90541156826322 0.05 ShinyColor 1 1 1 50 0 null sphere -2.343653437793 -0.65609172371989 -0.90181060504216 0.05 ShinyColor 1 1 1 50 0 null sphere -0.65675776589906 -0.57989356370866 -0.92750636728632 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3434661625638 -0.63070715582817 -0.91870401274593 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4968499718646 -0.63088498117242 -0.91230230035292 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7235242029539 -0.3894870763527 -0.83868260783332 0.05 ShinyColor 1 1 1 50 0 null sphere 0.72663449969576 -0.19859156930006 -0.82450103662936 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6819567053442 -0.16769441573658 -0.93693111053158 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6023354074561 -0.16769441573658 -0.8196997523346 0.05 ShinyColor 1 1 1 50 0 null sphere 0.75193015491535 -0.05126327158873 -0.88545067337113 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7630450623223 0.026490860184692 -0.87255833591299 0.05 ShinyColor 1 1 1 50 0 null sphere -0.3136437641682 0.15074631947955 -0.90821231743517 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8778757783719 0.15354706865149 -0.92297182100794 0.05 ShinyColor 1 1 1 50 0 null sphere 0.91397349986339 0.18017641395297 -0.84299487243139 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0096879914061 0.4105046910931 -0.9132803397463 0.05 ShinyColor 1 1 1 50 0 null sphere 1.129008797398 0.50132898566892 -0.85939926043847 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8816101106011 0.7751800158143 -0.91252458203323 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5271597431743 0.85684630516123 -0.9035444021486 0.05 ShinyColor 1 1 1 50 0 null sphere -0.042593483194758 0.90050242717467 -0.83432588689919 0.05 ShinyColor 1 1 1 50 0 null sphere 3.063926368185 1.0837069880885 -0.8273017858013 0.05 ShinyColor 1 1 1 50 0 null sphere 0.2214326966808 1.2486844512167 -0.91332479608236 0.05 ShinyColor 1 1 1 50 0 null sphere 2.9426939397424 1.3062554064177 -0.88007145670756 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2957286841263 1.2535746481835 -0.93373025433508 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1380420601124 1.2614434196666 -0.93577524579395 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8331535276842 1.3973908953459 -0.92946244607307 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6219937344894 1.5336940217137 -0.91741477900012 0.05 ShinyColor 1 1 1 50 0 null sphere -1.7775019980363 1.6628841343115 -0.9472449804981 0.05 ShinyColor 1 1 1 50 0 null sphere -1.7994189717151 1.7890956723932 -0.93702002320371 0.05 ShinyColor 1 1 1 50 0 null sphere 2.564414976186 1.8412874109306 -0.82592363938336 0.05 ShinyColor 1 1 1 50 0 null sphere 0.88263178293929 1.9662097152664 -0.80249515027839 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2613561332475 1.9199306694253 -0.94191022017059 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8127558725339 2.006398243067 -0.93870936397408 0.05 ShinyColor 1 1 1 50 0 null sphere -0.81506677861784 1.9947062266825 -0.91768151701649 0.05 ShinyColor 1 1 1 50 0 null sphere -0.82729227103504 2.1621287882941 -0.91874846908199 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8310718829916 2.2121421663645 -0.93248547692532 0.05 ShinyColor 1 1 1 50 0 null sphere -0.84645295187801 2.3887671895411 -0.86224446594648 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1382207088479 2.3989476904994 -0.91274686371355 0.05 ShinyColor 1 1 1 50 0 null sphere -0.89179841466182 2.5347173408345 -0.82983579695687 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0213005450033 2.9470498578147 -0.86224446594648 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4861351714822 2.9842598110991 -0.8674458572658 0.05 ShinyColor 1 1 1 50 0 null sphere -0.18387571920158 3.4033052348248 -0.79764940964757 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8628948165101 -2.1386660750703 -0.91981542114749 0.05 ShinyColor 1 1 1 50 0 null sphere -0.54334965260346 -2.0138771397427 -0.83939390921032 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4424704229751 -1.9563506408777 -0.9125690383693 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3312851264827 -1.8112451599695 -0.93319677830233 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1931592903363 -1.6636501242418 -0.88060493274031 0.05 ShinyColor 1 1 1 50 0 null sphere -2.6945472983348 -1.4275425234135 -0.80885240633534 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3674375775865 -0.60172162471538 -0.81560976941685 0.05 ShinyColor 1 1 1 50 0 null sphere -0.78261365329217 -0.68876713072587 -0.88416143962532 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3776530849959 -0.49084752257535 -0.81569868208897 0.05 ShinyColor 1 1 1 50 0 null sphere -0.58256014101064 -0.33738425048738 -0.85793220134841 0.05 ShinyColor 1 1 1 50 0 null sphere -0.53401382203032 -0.15369066987687 -0.81205326253184 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8732086864766 -0.16436019053189 -0.81387597231041 0.05 ShinyColor 1 1 1 50 0 null sphere 2.9430495904309 0.03618234144633 -0.85157494529146 0.05 ShinyColor 1 1 1 50 0 null sphere -0.38188424002423 0.19978165815656 -0.7991609250737 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0026210807547 0.41783998654343 -0.92688397858144 0.05 ShinyColor 1 1 1 50 0 null sphere 1.409706103297 0.73059031074355 -0.81272010757278 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7609111581913 0.85093361246491 -0.87940461166663 0.05 ShinyColor 1 1 1 50 0 null sphere 0.16617347095503 1.2703346868791 -0.83428143056312 0.05 ShinyColor 1 1 1 50 0 null sphere -0.9628396396898 1.4267320771472 -0.92808429965513 0.05 ShinyColor 1 1 1 50 0 null sphere -0.82062382062566 1.8272836650709 -0.91545870021336 0.05 ShinyColor 1 1 1 50 0 null sphere 0.69876037698453 1.8483559683646 -0.81520966239229 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3543143319543 1.9739895740774 -0.82045551004767 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2053411498087 2.0288042364425 -0.83712663607113 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3744077724634 2.0632134405549 -0.90154386702578 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8531580555211 2.0717046007429 -0.89687595173921 0.05 ShinyColor 1 1 1 50 0 null sphere -0.304263477259 3.5697942133791 -0.91759260434437 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2679434740872 -2.4046927900687 -0.81987757767885 0.05 ShinyColor 1 1 1 50 0 null sphere -1.837695877065 -2.2331802455393 -0.81209771886791 0.05 ShinyColor 1 1 1 50 0 null sphere -0.74940477025344 -2.1908133572717 -0.81014164008115 0.05 ShinyColor 1 1 1 50 0 null sphere -3.5548663138175 -2.2174427025731 -0.8771817948635 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4568400927995 -2.0072086893333 -0.83930499653819 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8691187035588 -1.87130566999 -0.80080580950802 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0553104654825 -1.790306225684 -0.79231464932007 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2694549895133 -1.336229209141 -0.91843727472956 0.05 ShinyColor 1 1 1 50 0 null sphere 0.038494873783356 -1.3145789734786 -0.87402539500306 0.05 ShinyColor 1 1 1 50 0 null sphere 0.19631486680545 -1.1239946607784 -0.86464510809385 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4624757742033 -0.35903448614985 -0.80983044572872 0.05 ShinyColor 1 1 1 50 0 null sphere -0.42216168049691 0.036804730151206 -0.85077473124234 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2380157334234 0.58579602418779 -0.80191721790958 0.05 ShinyColor 1 1 1 50 0 null sphere -0.098875204649962 0.67439750196047 -0.89869866151778 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9139743232547 0.67688705677998 -0.90194397405034 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5994902019481 0.83986398478533 -0.85779883234022 0.05 ShinyColor 1 1 1 50 0 null sphere 0.022935156161459 1.0536989612463 -0.80698524022071 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0266797616669 2.185512821063 -0.85166385796359 0.05 ShinyColor 1 1 1 50 0 null sphere -0.47444233170649 3.3943695112762 -0.91630337059855 0.05 ShinyColor 1 1 1 50 0 null sphere -0.055085713628338 3.4654996489763 -0.83934945287426 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4615952739757 -2.363748504555 -0.80760762892559 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7119655555777 -2.2174427025731 -0.81681009049054 0.05 ShinyColor 1 1 1 50 0 null sphere 2.9021942175894 -2.1904132502471 -0.86059958151216 0.05 ShinyColor 1 1 1 50 0 null sphere -2.281859130666 -2.0971438571878 -0.90141049801759 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5885539432767 -2.041084417413 -0.89420857157546 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8224387273019 -2.0499756846255 -0.8734919189703 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4003702727239 -2.0024074050385 -0.85730981264353 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2740800952463 -1.7779918205947 -0.80987490206478 0.05 ShinyColor 1 1 1 50 0 null sphere -0.31351039516001 -1.7006822521819 -0.89358618287058 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7250801747161 -1.6536029922917 -0.81734356652329 0.05 ShinyColor 1 1 1 50 0 null sphere -0.18512049661133 -1.6577818878815 -0.82974688428474 0.05 ShinyColor 1 1 1 50 0 null sphere -0.13897481977839 -1.5042297031215 -0.88994076331345 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6935161761117 -1.4651525837225 -0.8223226761623 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4890692896623 -1.2486946834338 -0.88602860573995 0.05 ShinyColor 1 1 1 50 0 null sphere -0.007873084729897 -1.4732436368858 -0.80969707672053 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3446306537951 -1.2676330825965 -0.89514215463277 0.05 ShinyColor 1 1 1 50 0 null sphere -1.274256273808 -1.0827836372484 -0.85144157628327 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1323961054324 -1.0408168560053 -0.882516555191 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8674379892821 -0.96284044255157 -0.80654067686009 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8445421528186 -0.94283509132342 -0.79382616474619 0.05 ShinyColor 1 1 1 50 0 null sphere -0.9534593527806 -0.87579493654107 -0.88291666221557 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2043622870241 -0.87228288599213 -0.85410895644703 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8212478561131 -0.87139375927088 -0.88127177778125 0.05 ShinyColor 1 1 1 50 0 null sphere 0.3741402110557 -0.93443284380759 -0.81245336955641 0.05 ShinyColor 1 1 1 50 0 null sphere 0.39716859313611 -0.75838575299985 -0.87851548494537 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2167750546704 -0.69436862906976 -0.81538748773654 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5202253781398 -0.72806653180518 -0.81560976941685 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7642103769448 -0.70063697245458 -0.8258791830473 0.05 ShinyColor 1 1 1 50 0 null sphere 0.55009838919132 -0.55628724925944 -0.83761565576782 0.05 ShinyColor 1 1 1 50 0 null sphere -0.63577437527753 -0.46106177741343 -0.88714001414151 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5509438829678 -0.30021875353908 -0.89269705614933 0.05 ShinyColor 1 1 1 50 0 null sphere 0.67413156680587 -0.35165473436346 -0.80067244049983 0.05 ShinyColor 1 1 1 50 0 null sphere -0.45021362855239 -0.10701151701118 -0.90172169237003 0.05 ShinyColor 1 1 1 50 0 null sphere 0.85573569962144 0.019111108398306 -0.79582669986901 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7958982946725 0.17457491560909 -0.80120591653258 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9086395629272 0.36693748175179 -0.85717644363534 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0828203110116 0.35324493024452 -0.80133928554077 0.05 ShinyColor 1 1 1 50 0 null sphere -0.2678092816877 0.38472001617682 -0.84806289474252 0.05 ShinyColor 1 1 1 50 0 null sphere -0.21281679397831 0.54809705120673 -0.82045551004767 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3585010306466 1.118871949914 -0.90723427804179 0.05 ShinyColor 1 1 1 50 0 null sphere -1.493781661285 1.0647685889258 -0.87873776662569 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3017747458308 1.0525875528447 -0.8962980193704 0.05 ShinyColor 1 1 1 50 0 null sphere -0.90780269564435 1.2441054486022 -0.85793220134841 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0089408601867 1.2933630689595 -0.91390272845117 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4904474360803 1.2459726147168 -0.89074097736258 0.05 ShinyColor 1 1 1 50 0 null sphere 0.32666084414088 1.4630084473743 -0.86059958151216 0.05 ShinyColor 1 1 1 50 0 null sphere 2.9021497612533 1.4769677368979 -0.82490114365392 0.05 ShinyColor 1 1 1 50 0 null sphere -0.83738385932125 1.5977556019799 -0.89211912378052 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8649920674074 1.576549929678 -0.89140782240352 0.05 ShinyColor 1 1 1 50 0 null sphere 0.51737852584928 1.6782660265892 -0.85784328867628 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8882427311681 1.7763811602793 -0.89394183355908 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7383281628628 1.6578605683365 -0.85130820727509 0.05 ShinyColor 1 1 1 50 0 null sphere 0.84942289990055 1.8885444961651 -0.89131890973139 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4211322050564 1.8883666708209 -0.88425035229744 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8864644777256 1.9040153011149 -0.88994076331345 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0453864292643 2.0247587098608 -0.82739069847343 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2140093119496 2.0573896605307 -0.85722089997141 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0146679244364 2.0538776099818 -0.88522839169082 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2148634322197 2.346800408298 -0.84610681595577 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1829437829268 2.5601463650622 -0.85855459005328 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1878339798937 2.7329925996735 -0.86428945740535 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6562251132576 3.0580128726269 -0.833481216514 0.05 ShinyColor 1 1 1 50 0 null sphere -0.35729988618164 3.3091022587082 -0.82663494076036 0.05 ShinyColor 1 1 1 50 0 null sphere -0.54486116802959 3.2738928405467 -0.8400162979152 0.05 ShinyColor 1 1 1 50 0 null sphere -0.55575297036491 3.4724348374021 -0.85148603261934 0.05 ShinyColor 1 1 1 50 0 null sphere -0.38081728795873 3.5682382416169 -0.81423162299891 0.05 ShinyColor 1 1 1 50 0 null sphere 0.0032409992857436 3.6225194279493 -0.83717109240719 0.05 ShinyColor 1 1 1 50 0 null sphere 0.12629613750692 3.664975228889 -0.87602593012587 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0991427660576 -2.3744624815461 -0.80694078388465 0.05 ShinyColor 1 1 1 50 0 null sphere -2.774968810272 -1.2860824620625 -0.81360923429403 0.05 ShinyColor 1 1 1 50 0 null sphere 0.15812687412771 -1.2688334036702 -0.80831893030259 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0219151306058 0.18822301078029 -0.81867725660517 0.05 ShinyColor 1 1 1 50 0 null sphere 0.9796355082278 0.32385929210717 -0.88087167075669 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0831743149175 0.38085231493938 -0.79422627177076 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1108792387781 1.0705034562779 -0.881093952437 0.05 ShinyColor 1 1 1 50 0 null sphere -1.535703986192 1.3808975946667 -0.88193862282219 0.05 ShinyColor 1 1 1 50 0 null sphere -0.84983163341876 1.4355344316876 -0.88389470160894 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0247236828802 2.0027528235098 -0.84508432022633 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4377238682926 -2.1539145983397 -0.81881062561335 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2609654761079 -2.198193109058 -0.78133393431261 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0080970131928 -2.1592938150033 -0.78640195662375 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8901551770101 -2.1747646199531 -0.80133928554077 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5379634562288 -2.1417780185947 -0.78462370318124 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1891232136395 -2.1071465328019 -0.83565957698106 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6017130187512 -2.1649397696833 -0.81218663154003 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4677224452499 -2.0829622859839 -0.85935480410241 0.05 ShinyColor 1 1 1 50 0 null sphere 2.9342916922265 -1.984269219925 -0.82592363938336 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3728612505861 -2.0345937923478 -0.77564352329661 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0017311306422 -2.0409955047408 -0.84970777917683 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3892664619844 -1.8657041716461 -0.82934677726018 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7586447084434 -1.7679002323085 -0.81494292437591 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9223860206554 -1.7593201594484 -0.81165315550728 0.05 ShinyColor 1 1 1 50 0 null sphere -2.860947364217 -1.7195317386724 -0.8557982972174 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7264669476277 -1.7183758739348 -0.84415073716901 0.05 ShinyColor 1 1 1 50 0 null sphere -2.551842459574 -1.6240395288101 -0.8053403557864 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1205620935461 -1.6369318662682 -0.79000291984481 0.05 ShinyColor 1 1 1 50 0 null sphere 1.109092358842 -1.2887498422262 -0.81458727368741 0.05 ShinyColor 1 1 1 50 0 null sphere 2.616962365412 -1.2513176072615 -0.8219670254738 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8157352704413 -1.0982544421981 -0.87344746263424 0.05 ShinyColor 1 1 1 50 0 null sphere 0.30323235503591 -1.0928307691985 -0.79124769725456 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4594091104062 -0.89139911049903 -0.79235910565613 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8572574883238 -0.78763802212901 -0.76261781683027 0.05 ShinyColor 1 1 1 50 0 null sphere -0.90504640280847 -0.72624382202661 -0.80809664862228 0.05 ShinyColor 1 1 1 50 0 null sphere 0.52346904388985 -0.71459626197822 -0.78106719629624 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7009045543917 -0.60625617099376 -0.76670779974803 0.05 ShinyColor 1 1 1 50 0 null sphere -0.76469774985896 -0.55201944099743 -0.80814110495834 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5865097752091 -0.59923206989587 -0.84512877656239 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3016327503289 -0.58251648753635 -0.78951390014812 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6622633718597 -0.5331699545069 -0.78088937095199 0.05 ShinyColor 1 1 1 50 0 null sphere -0.67387345528314 -0.379039837378 -0.78844694808262 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7977662841784 -0.26887703661497 -0.84664029198852 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6863134262783 -0.017120805492682 -0.78991400717269 0.05 ShinyColor 1 1 1 50 0 null sphere -0.32680283964272 0.35111102611352 -0.77924448651767 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9204204919837 0.54285120355135 -0.8554426465289 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1218085177384 0.54458500065779 -0.80160602355714 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8779202347079 0.5502754116738 -0.76292901118271 0.05 ShinyColor 1 1 1 50 0 null sphere -0.16533742706349 0.70591704422883 -0.7804003512553 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8081237870897 0.74410503690657 -0.8081855612944 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1143398532799 0.70209379932745 -0.81885508194942 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1070934705017 0.9124611815755 -0.80631839517977 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2907495744873 0.89383397676528 -0.86504521511842 0.05 ShinyColor 1 1 1 50 0 null sphere 0.089841941935615 1.0985109479973 -0.86722357558548 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0352520314246 1.2639329744861 -0.78760227769743 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6478673220778 1.4385130062038 -0.83797130645632 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8210247510415 1.4505162169407 -0.78200077935355 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0106310243483 1.6174497588556 -0.8453510582427 0.05 ShinyColor 1 1 1 50 0 null sphere -0.73402287797579 1.7899403427783 -0.84134998799707 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9830680959895 1.798209221286 -0.85037462421777 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6871144637187 1.7902070807947 -0.77195364740341 0.05 ShinyColor 1 1 1 50 0 null sphere 0.54480808519988 1.7763367039432 -0.77995578789467 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5112896545913 1.9243763030315 -0.77217592908373 0.05 ShinyColor 1 1 1 50 0 null sphere -0.7227309686159 1.9881711452813 -0.83690435439082 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2642449717003 2.1063360865356 -0.77871101048492 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4090837145922 2.1282086038784 -0.79307040703313 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5833970082935 2.1362107443696 -0.79769386598364 0.05 ShinyColor 1 1 1 50 0 null sphere -0.73086647811535 2.2040955695372 -0.81667672148235 0.05 ShinyColor 1 1 1 50 0 null sphere -0.73082202177928 2.3687618383129 -0.7782664471243 0.05 ShinyColor 1 1 1 50 0 null sphere -0.96243953266523 2.6936487422581 -0.77813307811611 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0575316355031 2.7557097874015 -0.82192256913773 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1375974967517 2.8713407175002 -0.77586580497692 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1860112701151 2.8923685644578 -0.80698524022071 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2899493604381 2.9426486805445 -0.80694078388465 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5040955312515 3.0065768918025 -0.81232000054822 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8478319216872 3.0423197859968 -0.77639928100967 0.05 ShinyColor 1 1 1 50 0 null sphere -0.4836892496075 3.5430759554055 -0.81427607933497 0.05 ShinyColor 1 1 1 50 0 null sphere -0.17187250846469 3.6122944706549 -0.78502381020581 0.05 ShinyColor 1 1 1 50 0 null sphere -0.87090393671242 -2.2312241667525 -0.82201148180986 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7979432861314 -2.1776542817971 -0.79591561254113 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2101424341035 -2.0481529748469 -0.80574046281096 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2921190944115 -1.9912488646868 -0.78066708927167 0.05 ShinyColor 1 1 1 50 0 null sphere 1.089887221663 -1.4706207130582 -0.77920003018161 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6467925669099 -1.3063990076431 -0.76457389561703 0.05 ShinyColor 1 1 1 50 0 null sphere -1.477421729614 -1.101722036411 -0.83188078841575 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1298534677832 -1.118748813123 -0.81111967947453 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8556570602255 -1.1085683121646 -0.78533500455824 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0982091830003 -0.90051265939186 -0.80138374187683 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1407452701185 -0.97310985618202 -0.77795525277186 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2343258575302 -0.71517419434703 -0.7959600688772 0.05 ShinyColor 1 1 1 50 0 null sphere 1.004664425431 0.24281539146512 -0.77190919106735 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8565367370618 0.33355077336881 -0.77742177673911 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3080344627219 0.68146605939442 -0.85353102407821 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4782663999991 0.90903804369868 -0.86291131098741 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0926521409925 0.91170542386243 -0.80529589945033 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6577810850198 1.075527022253 -0.83685989805475 0.05 ShinyColor 1 1 1 50 0 null sphere -0.92518512304481 1.0836180754164 -0.7876467340335 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6452443982501 1.2365478714716 -0.831347312383 0.05 ShinyColor 1 1 1 50 0 null sphere -0.74896020689281 1.4287770686061 -0.81640998346597 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8610276503954 1.604201770709 -0.77084223900185 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0081859258649 1.4967063501097 -0.78204523568961 0.05 ShinyColor 1 1 1 50 0 null sphere 0.36395971009737 1.592154103636 -0.78044480759136 0.05 ShinyColor 1 1 1 50 0 null sphere -0.71450654644432 1.6166940011425 -0.81165315550728 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7893187569352 2.1385224738449 -0.80276188829477 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3677487719389 2.3657388074607 -0.80280634463083 0.05 ShinyColor 1 1 1 50 0 null sphere -0.72886594299253 3.2575329088757 -0.82401201693267 0.05 ShinyColor 1 1 1 50 0 null sphere -0.71881881104239 3.4549634973295 -0.78377903279605 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0507306394768 -0.81440073643867 -0.77266494878041 0.05 ShinyColor 1 1 1 50 0 null sphere 0.61629387358848 -0.40233495747478 -0.84988560452108 0.05 ShinyColor 1 1 1 50 0 null sphere -0.4898686803202 0.010219841185794 -0.76506291531372 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4896027656951 0.72383294766204 -0.82996916596506 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6595148821262 0.71809808030997 -0.81232000054822 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6626268256506 0.90014677648617 -0.83432588689919 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0060433952402 2.1163832184857 -0.79489311681169 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0343629047034 -2.1745867946088 -0.78337892577149 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4334457867544 -2.1490688577089 -0.76003934933865 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9888832495201 -2.1473350606025 -0.78115610896836 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2268221866206 -2.0712702695994 -0.77519895993598 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7546522646914 -1.7497175908589 -0.77737732040305 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5741150839413 -0.57002425710277 -0.78613521860737 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0052884609184 0.040850256732899 -0.7651962843219 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3062648357731 0.70636160758946 -0.79871636171308 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6002015033251 0.77082329488017 -0.76710790677259 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1625819576189 0.74019287933307 -0.75697186215033 0.05 ShinyColor 1 1 1 50 0 null sphere 0.21378620687804 1.4236645899589 -0.76150640842871 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1739191467061 1.9826141032735 -0.76426270126459 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1995704526142 2.1921812714724 -0.76630769272347 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3630808566523 2.7505528524182 -0.77213147274766 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8063541601409 1.0782833150889 -0.77364298817379 0.05 ShinyColor 1 1 1 50 0 null sphere -0.91664950652079 3.2777160854481 -0.77920003018161 0.05 ShinyColor 1 1 1 50 0 null sphere -1.7273552509577 -2.255008306546 -0.78844694808262 0.05 ShinyColor 1 1 1 50 0 null sphere 2.900504876819 -2.3037324508706 -0.75728305650277 0.05 ShinyColor 1 1 1 50 0 null sphere -0.59660834320641 -2.1507137421432 -0.75421556931445 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1474590002552 -2.117149208416 -0.75541589038814 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0185364490651 -2.0378391048804 -0.76208434079752 0.05 ShinyColor 1 1 1 50 0 null sphere -0.21784035995338 -1.7804369190782 -0.77297614313285 0.05 ShinyColor 1 1 1 50 0 null sphere -0.036858615842688 -1.5789608040426 -0.76115075774021 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0273013269805 -0.78879388686664 -0.7565272987897 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5013392384156 0.53409330534703 -0.77719949505879 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8478319216872 0.7026272753602 -0.77644373734573 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8359176236225 0.89325604439647 -0.77604363032117 0.05 ShinyColor 1 1 1 50 0 null sphere 0.076193846764408 1.1868012314176 -0.78818021006625 0.05 ShinyColor 1 1 1 50 0 null sphere -0.7522944320975 1.2607321182896 -0.75648284245364 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1680064540098 1.6077138212579 -0.76746355746109 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3701938704223 2.2518416744684 -0.73643303488943 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3651258481112 2.5340060394575 -0.76941963624785 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9987167262836 3.0322281977106 -0.75488241435539 0.05 ShinyColor 1 1 1 50 0 null sphere -0.87134850007304 3.4025050207757 -0.76728573211684 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0284946683431 -2.311112202657 -0.74296811629062 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7737154063686 -2.2828824292572 -0.73923378406137 0.05 ShinyColor 1 1 1 50 0 null sphere -0.41229237389103 -1.9673758122212 -0.76941963624785 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3252476912718 -0.97275420549352 -0.74519093309375 0.05 ShinyColor 1 1 1 50 0 null sphere 0.47847923179453 -0.86134662732074 -0.743946155684 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6573809779952 0.5221345509462 -0.78035589491924 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3311603839681 0.58659623823691 -0.75959478597802 0.05 ShinyColor 1 1 1 50 0 null sphere -1.827070812746 0.56276764210738 -0.76026163101896 0.05 ShinyColor 1 1 1 50 0 null sphere -0.9931144045484 0.93411141723796 -0.75741642551095 0.05 ShinyColor 1 1 1 50 0 null sphere -1.7813696992737 1.263844061814 -0.75421556931445 0.05 ShinyColor 1 1 1 50 0 null sphere -0.58167101428939 1.4362012767285 -0.74114540651206 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1329304048564 1.4783458833159 -0.73358782938142 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1491125111832 1.8165252317438 -0.76644106173165 0.05 ShinyColor 1 1 1 50 0 null sphere 0.75188569857929 1.9285107422854 -0.75826109589614 0.05 ShinyColor 1 1 1 50 0 null sphere -0.55179635645535 1.9810136751752 -0.76635214905953 0.05 ShinyColor 1 1 1 50 0 null sphere 2.355514653028 2.0528551142523 -0.70682511507176 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1207851986177 2.1114041088467 -0.76381813790396 0.05 ShinyColor 1 1 1 50 0 null sphere -0.54868441293097 2.1914255137593 -0.75657175512577 0.05 ShinyColor 1 1 1 50 0 null sphere -0.78510320811167 2.4959514157879 -0.75559371573239 0.05 ShinyColor 1 1 1 50 0 null sphere -0.92314013158593 3.137723083187 -0.7428792036185 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2987517149785 -2.4032701873146 -0.6183125499712 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3282723689066 -2.0107207398822 -0.73927824039743 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1344324703976 -1.790261769348 -0.74492419507737 0.05 ShinyColor 1 1 1 50 0 null sphere 0.12656287552329 -1.4258531826432 -0.73341000403717 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0578342033618 -1.118793269459 -0.62782620588859 0.05 ShinyColor 1 1 1 50 0 null sphere 0.3997915169638 -1.1176818610575 -0.64307472915804 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6551581611921 -0.98449067821404 -0.75168155815888 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4946707880062 -0.99471563550843 -0.73381011106173 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1650184296087 -0.81813506866793 -0.73425467442236 0.05 ShinyColor 1 1 1 50 0 null sphere -0.99106941308952 -0.70188174986433 -0.67752838960653 0.05 ShinyColor 1 1 1 50 0 null sphere -0.87512728863836 -0.62394979274666 -0.75057014975732 0.05 ShinyColor 1 1 1 50 0 null sphere -0.62674973905683 -0.16071477097476 -0.67948446839328 0.05 ShinyColor 1 1 1 50 0 null sphere 1.499241164127 -0.1930789836283 -0.62711490451158 0.05 ShinyColor 1 1 1 50 0 null sphere -0.29852860990693 0.4906594650139 -0.72656372828354 0.05 ShinyColor 1 1 1 50 0 null sphere -0.12977235821344 0.85164491384191 -0.73047588585704 0.05 ShinyColor 1 1 1 50 0 null sphere -0.17702944344795 0.90708196491192 -0.63333879156034 0.05 ShinyColor 1 1 1 50 0 null sphere -0.81324406883928 1.168618589968 -0.75501578336358 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0281390176546 1.3779634764866 -0.73252087731592 0.05 ShinyColor 1 1 1 50 0 null sphere -0.60403255132886 1.6183388855769 -0.75394883129807 0.05 ShinyColor 1 1 1 50 0 null sphere -0.55864263220898 1.7944748890567 -0.75603827909302 0.05 ShinyColor 1 1 1 50 0 null sphere -0.46470639410879 1.9948395956907 -0.75070351876551 0.05 ShinyColor 1 1 1 50 0 null sphere -0.45772674934696 2.1039354443882 -0.75359318060957 0.05 ShinyColor 1 1 1 50 0 null sphere -0.42785209151292 2.0359617065486 -0.7204287539069 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4960942141515 2.314791846333 -0.74167888254481 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1934799345736 3.0239148628669 -0.74541321477406 0.05 ShinyColor 1 1 1 50 0 null sphere -0.70214768501893 3.1521713924074 -0.72878654508666 0.05 ShinyColor 1 1 1 50 0 null sphere -0.55673100975829 3.2440626390487 -0.6319606451424 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0698015842563 3.2648237479899 -0.74261246560212 0.05 ShinyColor 1 1 1 50 0 null sphere -0.33742790396167 3.5538788450687 -0.68681976384361 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0860656235441 -2.3683719635055 -0.64200777709254 0.05 ShinyColor 1 1 1 50 0 null sphere -0.93274270017544 -2.3969129312577 -0.62889315795409 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1260318696644 -2.1670292174782 -0.6974003718265 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8550338481294 -2.242249338096 -0.69700026480193 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5494331909329 -2.1913023769684 -0.62631469046246 0.05 ShinyColor 1 1 1 50 0 null sphere -2.926342634565 -2.1955701852304 -0.62880424528196 0.05 ShinyColor 1 1 1 50 0 null sphere -3.275991717697 -2.1756982030104 -0.63116043109328 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7276672687014 -2.1479574493074 -0.62667034115096 0.05 ShinyColor 1 1 1 50 0 null sphere 2.063436525097 -2.2385150058668 -0.69411060295787 0.05 ShinyColor 1 1 1 50 0 null sphere -2.164583316133 -2.1760538536989 -0.64005169830579 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2285473572334 -2.1827223041083 -0.67077102652502 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3565371487575 -2.1785434085184 -0.63049358605234 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5294809225345 -2.0648241008704 -0.68086261481122 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1746749044192 -2.0826955479675 -0.72171798765272 0.05 ShinyColor 1 1 1 50 0 null sphere -0.35316544692782 -2.0205900464881 -0.68815345392548 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2231673171785 -2.0253024181107 -0.6641470324517 0.05 ShinyColor 1 1 1 50 0 null sphere -0.15444562472816 -1.8479216372211 -0.66032378755032 0.05 ShinyColor 1 1 1 50 0 null sphere 2.9202434900308 -1.8024428054291 -0.65076567529687 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9048257679107 -1.780348006406 -0.62773729321646 0.05 ShinyColor 1 1 1 50 0 null sphere -2.718864914161 -1.6465788911938 -0.62391404831508 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5876298101043 -1.6347979621372 -0.69108757210561 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7346024571272 -1.4628408542472 -0.65890118479632 0.05 ShinyColor 1 1 1 50 0 null sphere -2.829027714924 -1.2529624916959 -0.72771959302116 0.05 ShinyColor 1 1 1 50 0 null sphere 0.31661371219075 -1.2682999276374 -0.6284041382574 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9147395308527 -1.1417327388673 -0.63511704500285 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4783475095689 -0.92687526667696 -0.62849305092952 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1066114305161 -0.76443181470435 -0.63204955781453 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9878249239482 -0.84076334372377 -0.71349356548114 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1528023870764 -0.6964580768647 -0.6897983383598 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5740175447755 -0.73940289750113 -0.64694243039549 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3794852446594 -0.5050290937793 -0.66983744346771 0.05 ShinyColor 1 1 1 50 0 null sphere 1.266156594151 -0.53854917117047 -0.61755679225813 0.05 ShinyColor 1 1 1 50 0 null sphere 0.65639348871691 -0.48364559613321 -0.74705809920838 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7625124096808 -0.44848063430772 -0.71464943021877 0.05 ShinyColor 1 1 1 50 0 null sphere -0.77487825081728 -0.35383309483053 -0.61511169377469 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4079278498545 -0.33898467858563 -0.63298314087184 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8291080011025 -0.31466706275941 -0.73372119838961 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5057317891922 -0.24749353896888 -0.74350159232337 0.05 ShinyColor 1 1 1 50 0 null sphere -0.57344659211781 0.0063076836122881 -0.6316049944539 0.05 ShinyColor 1 1 1 50 0 null sphere 3.051878701112 0.018711001373743 -0.62778174955252 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1147399603045 0.19964828914837 -0.63862909555179 0.05 ShinyColor 1 1 1 50 0 null sphere -0.40722435157989 0.36462575227654 -0.63791779417479 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8244923452544 0.38080785860331 -0.73758889962705 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5429503689702 0.41183838117498 -0.74118986284812 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6820542445099 0.38912119344701 -0.74319039797093 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2746563808326 0.51884478207757 -0.68144054718004 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2128995503306 0.55116453839505 -0.62520328206089 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2246360230511 0.73468029366131 -0.6367174731011 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9715094486133 0.72618913347336 -0.73825574466799 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6231409727334 0.72730054187492 -0.64667569237911 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2297485016983 0.91148314218212 -0.62658142847883 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0106746572931 0.86747136948018 -0.72394080445585 0.05 ShinyColor 1 1 1 50 0 null sphere -0.89726654399752 0.88107500831533 -0.64374157419898 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8823744948078 1.1027342999233 -0.72287385239034 0.05 ShinyColor 1 1 1 50 0 null sphere -0.054018761562837 1.0931761876698 -0.67779512762291 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1227421007957 1.2431274092088 -0.68681976384361 0.05 ShinyColor 1 1 1 50 0 null sphere -0.66413751768544 1.2498403159543 -0.71118183600589 0.05 ShinyColor 1 1 1 50 0 null sphere -2.211484750679 1.4570512983419 -0.64827612047736 0.05 ShinyColor 1 1 1 50 0 null sphere 0.34235393077097 1.6562156839022 -0.70109024771969 0.05 ShinyColor 1 1 1 50 0 null sphere 0.52049046937366 1.833062988759 -0.69291028188418 0.05 ShinyColor 1 1 1 50 0 null sphere 0.6968932108699 2.0178679777711 -0.64618667268242 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5328065212455 2.0225803493937 -0.65650054264894 0.05 ShinyColor 1 1 1 50 0 null sphere 0.89499064436468 2.070370910661 -0.68721987086817 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1981836797026 2.1796001283667 -0.66690332528758 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0746386983935 2.0974448193231 -0.73536608282392 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2364153053252 2.2013837330374 -0.68659748216329 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0120005442726 2.2020505780783 -0.69731145915437 0.05 ShinyColor 1 1 1 50 0 null sphere -0.56468869391349 2.3562251515433 -0.75088134410976 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3296052355972 2.9142855381366 -0.73300989701261 0.05 ShinyColor 1 1 1 50 0 null sphere -1.349565307098 3.0107113310563 -0.74319039797093 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4917811261622 3.0974011863783 -0.68059587679485 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6683172366666 3.1116272139183 -0.63951822227304 0.05 ShinyColor 1 1 1 50 0 null sphere -0.40340110667851 3.2987439324057 -0.67437198974609 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1082118586144 3.4232661297169 -0.64792046978886 0.05 ShinyColor 1 1 1 50 0 null sphere -0.52152159159674 3.4855494565405 -0.61991297806945 0.05 ShinyColor 1 1 1 50 0 null sphere -0.48715684382038 3.5428981300612 -0.68877584263036 0.05 ShinyColor 1 1 1 50 0 null sphere 1.605803001669 -2.3434319589744 -0.62778174955252 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8059009702866 -2.362992746842 -0.64872068383799 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8709858696734 -1.6358649142027 -0.62262481456927 0.05 ShinyColor 1 1 1 50 0 null sphere 0.17484245648723 -1.4795564366067 -0.62209133853652 0.05 ShinyColor 1 1 1 50 0 null sphere 0.22556713593462 -1.3382297442638 -0.69215452417111 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9255868768519 -0.89682278349866 -0.66463605214839 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2785685384061 -0.88873173033528 -0.64405276855142 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1471556090052 -0.84636484206766 -0.71682779068584 0.05 ShinyColor 1 1 1 50 0 null sphere -0.88904212182594 -0.54437295119467 -0.62578121442971 0.05 ShinyColor 1 1 1 50 0 null sphere 0.84951181257268 -0.15177904742618 -0.64094082502704 0.05 ShinyColor 1 1 1 50 0 null sphere 0.92206455302678 -0.0018722822232229 -0.62351394129052 0.05 ShinyColor 1 1 1 50 0 null sphere 1.73868299016 0.20084861022206 -0.64160767006798 0.05 ShinyColor 1 1 1 50 0 null sphere 0.97745714776073 0.13149672596446 -0.66107954526338 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6058560844987 0.32754916800036 -0.7214957059724 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9750659554983 0.54618542875604 -0.72972012814398 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0176995817823 0.89570114287991 -0.69126539744986 0.05 ShinyColor 1 1 1 50 0 null sphere -0.86179038781959 1.0405398857717 -0.71051499096495 0.05 ShinyColor 1 1 1 50 0 null sphere -0.46128325623197 1.7617994820507 -0.66868157873008 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4593193743428 2.2229450560277 -0.68686422017967 0.05 ShinyColor 1 1 1 50 0 null sphere 1.595133481014 2.1985385275294 -0.7092702135552 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5772714838017 2.3607596978216 -0.68984279469586 0.05 ShinyColor 1 1 1 50 0 null sphere -0.54619485811146 2.3604485034692 -0.63978496028941 0.05 ShinyColor 1 1 1 50 0 null sphere -0.67840800156152 2.5629026578981 -0.66001259319788 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5513089835412 2.7466406948447 -0.63431683095372 0.05 ShinyColor 1 1 1 50 0 null sphere -1.095897453525 3.1335441875972 -0.73056479852917 0.05 ShinyColor 1 1 1 50 0 null sphere -0.74224730014736 -2.3549906063507 -0.62551447641333 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5536557194676 -2.2705680241679 -0.70691402774388 0.05 ShinyColor 1 1 1 50 0 null sphere -0.54904006361947 -2.2098406691064 -0.67606133051647 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0801084745117 -1.9892927859001 -0.63107151842115 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2328690717164 -1.8512114060898 -0.62266927090533 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0907866216604 -1.8141792781496 -0.61311115865188 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7550523717159 -1.7382033998187 -0.65810097074719 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7391283769119 -1.4562613165099 -0.61413365438132 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4886613795354 -1.0968762957802 -0.61600082049594 0.05 ShinyColor 1 1 1 50 0 null sphere 0.51186594017752 -0.92282974009526 -0.6269815355034 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6686728873551 -0.89780082289204 -0.62889315795409 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0954442636708 -0.91496096861219 -0.60582031953762 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0077413625043 -0.75736325727041 -0.64147430105979 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1960044958443 -0.6736519764646 -0.6363618224126 0.05 ShinyColor 1 1 1 50 0 null sphere 0.69146953787027 -0.53872699651473 -0.62129112448739 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5445516204597 -0.48880253111647 -0.66957070545133 0.05 ShinyColor 1 1 1 50 0 null sphere 0.75788730394774 -0.36877042374755 -0.63587280271591 0.05 ShinyColor 1 1 1 50 0 null sphere 2.9314909430546 -0.20534893238157 -0.63116043109328 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6326101723147 0.0010173796208434 -0.62849305092952 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0244569448638 0.3563568737689 -0.7038020842195 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4789332450401 0.3503108120644 -0.68922040599098 0.05 ShinyColor 1 1 1 50 0 null sphere -0.2663866789337 0.58428450876166 -0.70046785901481 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0541093210175 0.54951965396074 -0.70775869812907 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0603776644023 0.74228232712801 -0.70415773490801 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7556208541998 0.67644249341935 -0.63213847048665 0.05 ShinyColor 1 1 1 50 0 null sphere -0.23926831393553 0.73161280647299 -0.6450308079448 0.05 ShinyColor 1 1 1 50 0 null sphere -1.074558412215 0.70462781048302 -0.6529884921 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2191234373794 1.0682806394748 -0.61955732738095 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8798849399883 1.2438387105858 -0.68450803436835 0.05 ShinyColor 1 1 1 50 0 null sphere -0.0044944031891422 1.2426828458482 -0.65045448094443 0.05 ShinyColor 1 1 1 50 0 null sphere -0.53788152326776 1.2470395667823 -0.63689529844535 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0761074042661 1.4492714395309 -0.63311650988003 0.05 ShinyColor 1 1 1 50 0 null sphere 2.9115300481625 1.6507475545665 -0.66681441261545 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2467830815127 1.7642890368703 -0.70375762788344 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7326377518468 1.8502231344792 -0.67090439553321 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3646812847506 1.9526505327673 -0.63391672392916 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3734391829549 2.1462134199837 -0.61862374432364 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5497974681151 2.5627248325539 -0.64303027282198 0.05 ShinyColor 1 1 1 50 0 null sphere -0.88037313629374 2.7538870776229 -0.67930664304903 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4268756989021 2.9263332052096 -0.6384957265436 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0866949919601 2.9283337403324 -0.66623648024664 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3017747458308 3.0962008653046 -0.69326593257268 0.05 ShinyColor 1 1 1 50 0 null sphere -0.94123386036339 3.0565013572007 -0.63040467338021 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1334630574979 3.0571682022417 -0.69331038890874 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1760077711098 3.2879854990785 -0.71980636520203 0.05 ShinyColor 1 1 1 50 0 null sphere -0.2479817558038 3.4345580390768 -0.69126539744986 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0073770853221 -2.3512562741215 -0.62071319211858 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0036958359226 -2.2193543250238 -0.6753055728034 0.05 ShinyColor 1 1 1 50 0 null sphere 0.016622356440575 -1.6588932962831 -0.65116578232143 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0324496354701 -1.4717765777958 -0.64142984472373 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7462944735116 -0.54028296827692 -0.6482316641413 0.05 ShinyColor 1 1 1 50 0 null sphere -0.80070738206963 -0.48369005246927 -0.69913416893294 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8408078205893 0.1730189438469 -0.69615559441674 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6455555926026 0.17795359714984 -0.65276621041968 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8948222689054 0.29820798619907 -0.72051766657903 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8034558718031 0.36271412982585 -0.61720114156963 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3745942243012 0.45198245263948 -0.69971210130175 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8223942709658 0.55534343398493 -0.62013525974976 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0242346631835 1.0630792481555 -0.62884870161802 0.05 ShinyColor 1 1 1 50 0 null sphere -0.72739888390247 1.0802393938756 -0.67241591095934 0.05 ShinyColor 1 1 1 50 0 null sphere -0.49471442095102 1.42873261227 -0.63902920257635 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3700160450781 1.4317111867862 -0.64120756304342 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3575238146445 1.5954883288407 -0.67108222087746 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0026288838571 1.5240025404521 -0.69411060295787 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8692598756694 1.4427808144658 -0.63178281979815 0.05 ShinyColor 1 1 1 50 0 null sphere -0.50116058968009 1.5922874726442 -0.64249679678923 0.05 ShinyColor 1 1 1 50 0 null sphere 0.17133040593829 1.5857079349069 -0.62747055520009 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0526328120425 2.1960934290459 -0.66779245200883 0.05 ShinyColor 1 1 1 50 0 null sphere 1.807590311057 2.2507747224029 -0.6710377645414 0.05 ShinyColor 1 1 1 50 0 null sphere -0.73731264684442 2.7224119916906 -0.61635647118444 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5457963978695 2.8977033247853 -0.63244966483909 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3520112289727 3.0365404623087 -0.62200242586439 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2923944589216 3.2993218647745 -0.6883757356058 0.05 ShinyColor 1 1 1 50 0 null sphere -0.94314548281408 3.4472725511907 -0.62471426236421 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6583145610525 -2.366593710063 -0.61675657820901 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8376514207289 -2.3334737396964 -0.61159964322575 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0351170156339 -1.3010642473155 -0.6294710903229 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8484543103921 -0.85356676850979 -0.64343037984654 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0084971202173 0.18840083612454 -0.68939823133523 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1688066680589 0.55036432434593 -0.67259373630359 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1902346220411 0.71836481832635 -0.64418613755961 0.05 ShinyColor 1 1 1 50 0 null sphere 0.13718793984224 1.4642976811201 -0.65303294843606 0.05 ShinyColor 1 1 1 50 0 null sphere -1.891754781717 1.554499586991 -0.60021882119373 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1888120192871 2.155682619565 -0.6027528323493 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7786936926163 2.3664501088377 -0.60448662945574 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4126846778132 2.3605374161413 -0.62444752434783 0.05 ShinyColor 1 1 1 50 0 null sphere -0.60247657956667 2.5495657570794 -0.65192154003449 0.05 ShinyColor 1 1 1 50 0 null sphere -0.64430999180154 2.6604398592194 -0.69491081700699 0.05 ShinyColor 1 1 1 50 0 null sphere -0.7602521162527 3.1322994101874 -0.60955465176687 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1191925736218 -2.4196301189857 -0.609643564439 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4755545634993 -2.3767742110214 -0.62649251580671 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8973484769585 -2.3579691808669 -0.61986852173339 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7385504445431 -2.2983087778709 -0.60004099584948 0.05 ShinyColor 1 1 1 50 0 null sphere 3.247308754443 -2.3503671474002 -0.58403671486696 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3965025714864 -2.2390040255635 -0.62480317503633 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2269032961903 -2.1920136783454 -0.58892691183384 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6557727467946 -2.2497624588906 -0.60959910810294 0.05 ShinyColor 1 1 1 50 0 null sphere -3.08051720803 -2.2087737170409 -0.57910206156402 0.05 ShinyColor 1 1 1 50 0 null sphere -0.39859982238376 -2.1674737808388 -0.59248341871885 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2787821935928 -2.1508915674875 -0.59448395384166 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3352964700045 -1.9942718955391 -0.61013258413569 0.05 ShinyColor 1 1 1 50 0 null sphere -2.345120496883 -2.0543768618957 -0.65961248617332 0.05 ShinyColor 1 1 1 50 0 null sphere -0.22784303556746 -1.9930715744654 -0.59546199323504 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1397672307251 -1.9651529954181 -0.59897404378398 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0805513910898 -1.8319173562386 -0.6078653109965 0.05 ShinyColor 1 1 1 50 0 null sphere -0.031212661162742 -1.7941739269215 -0.5767458757527 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0382289591583 -1.6522693022098 -0.62226916388077 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6478595189754 -1.3335618289773 -0.60839878702925 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9016693680503 -1.296440788365 -0.60808759267681 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5728616800379 -1.2307343236646 -0.61382246002888 0.05 ShinyColor 1 1 1 50 0 null sphere -1.454037696845 -0.90002363969517 -0.60555358152124 0.05 ShinyColor 1 1 1 50 0 null sphere 1.142479067225 -0.7545180517624 -0.58963821321084 0.05 ShinyColor 1 1 1 50 0 null sphere 0.59851133916345 -0.77167819748255 -0.59950751981673 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8982017738374 -0.70245968223314 -0.62306937792989 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1974365484832 -0.53259202213809 -0.63769551249447 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6282987311079 -0.6715180723336 -0.59999653951342 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7174336849134 -0.54263915408823 -0.60044110287405 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3422658414901 -0.43696644326752 -0.64471961359236 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8494690030192 -0.35645601865822 -0.59866284943154 0.05 ShinyColor 1 1 1 50 0 null sphere -0.68312037318416 -0.18956693307936 -0.59617329461204 0.05 ShinyColor 1 1 1 50 0 null sphere 0.79336346012566 -0.2649204227054 -0.6457421093218 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5445866269108 -0.1180366883547 -0.60012990852161 0.05 ShinyColor 1 1 1 50 0 null sphere 2.9955969796568 -0.10221023271643 -0.60555358152124 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0218340210361 0.0010173796208434 -0.65801205807507 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8165791174352 0.0011952049650938 -0.62715936084765 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2042383679008 -0.0043173807066638 -0.64792046978886 0.05 ShinyColor 1 1 1 50 0 null sphere -0.5204990958673 0.17208536078958 -0.58901582450597 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2066834663842 0.18862311780486 -0.65756749471444 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0305380130194 0.19858133708287 -0.59475069185804 0.05 ShinyColor 1 1 1 50 0 null sphere -0.45568175788809 0.24659418003044 -0.64618667268242 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4778218366385 0.20573880718894 -0.58732648373559 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1031352098096 0.32728242998399 -0.63485030698647 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1721853495997 0.35724600049015 -0.67512774745915 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3197351056 0.37058290130892 -0.59808491706273 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1786665247799 0.42833168185419 -0.64943198521499 0.05 ShinyColor 1 1 1 50 0 null sphere -0.35085371745256 0.54467391332992 -0.60173033661986 0.05 ShinyColor 1 1 1 50 0 null sphere 1.25690967625 0.52804724364252 -0.61217757559456 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1401315079073 0.56401241951713 -0.59688459598904 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3531576438254 0.61184743712045 -0.61173301223394 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4546070027202 0.66764013887896 -0.60390869708693 0.05 ShinyColor 1 1 1 50 0 null sphere -0.94830241779734 0.74290471583288 -0.58439236555546 0.05 ShinyColor 1 1 1 50 0 null sphere -0.15435671205604 1.074148875835 -0.59710687766936 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9686642431053 1.2286790999885 -0.60159696761167 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9971607545214 1.5990448357257 -0.60012990852161 0.05 ShinyColor 1 1 1 50 0 null sphere 0.34013111396784 1.8027437675644 -0.63036021704415 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8560929970925 1.7978535705975 -0.613911372701 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3896212892817 1.7844277571066 -0.62560338908546 0.05 ShinyColor 1 1 1 50 0 null sphere 0.53876202349537 2.0049311839769 -0.61982406539732 0.05 ShinyColor 1 1 1 50 0 null sphere 2.696539206964 1.9507833666527 -0.60457554212787 0.05 ShinyColor 1 1 1 50 0 null sphere -0.51467531584311 1.9808803061671 -0.59475069185804 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2040605425565 2.0465867708675 -0.59315026375979 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3766314126578 2.1584389124009 -0.63831790119935 0.05 ShinyColor 1 1 1 50 0 null sphere 0.90041431736431 2.1821341395223 -0.61986852173339 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0933198094247 2.1216735224772 -0.6616574776322 0.05 ShinyColor 1 1 1 50 0 null sphere -0.53147981087476 2.1495921015245 -0.60657607725068 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5426844543451 2.17911110867 -0.62324720327414 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6181618630944 2.3402208705607 -0.61057714749631 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9895945508971 2.3222160544554 -0.61195529391425 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7079731118257 2.2200553941836 -0.59034951458785 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7189982831692 2.3516016925928 -0.59741807202179 0.05 ShinyColor 1 1 1 50 0 null sphere -0.94790231077278 2.8730300582706 -0.60719846595556 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1845442110251 3.0974900990504 -0.611066167193 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0217006520279 3.1023802960173 -0.61337789666825 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2783462567258 3.4593202182636 -0.64440841923992 0.05 ShinyColor 1 1 1 50 0 null sphere -0.37926131619654 3.4339356503719 -0.62462534969208 0.05 ShinyColor 1 1 1 50 0 null sphere -0.71993021944396 3.4826597946965 -0.61079942917662 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4552738477612 -2.2963082427481 -0.59630666362023 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4260318519082 -2.162628040208 -0.58568159930128 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1547062064247 0.33844097033569 -0.64734253742005 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1848031459391 0.38187481066881 -0.59559536224323 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1729411073127 0.89441190913409 -0.59519525521866 0.05 ShinyColor 1 1 1 50 0 null sphere -0.56922324019187 1.067035862065 -0.59163874833366 0.05 ShinyColor 1 1 1 50 0 null sphere 0.0047969710479333 1.4238868716392 -0.60226381265261 0.05 ShinyColor 1 1 1 50 0 null sphere 0.19698171184639 1.8027882239004 -0.58159161638352 0.05 ShinyColor 1 1 1 50 0 null sphere -2.6721857612953 2.7958538588659 -0.59804046072667 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7073507231208 2.8803653537209 -0.57412295192501 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8471206203102 3.1079373380251 -0.61573408247957 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4800446534416 3.2807391163003 -0.62022417242189 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4605283219102 3.4348692334292 -0.59532862422685 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1025659039344 3.8040791044288 -0.62262481456927 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1010543885083 3.917220479708 -0.59826274240698 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5593555803685 -2.1111031467115 -0.5811470530229 0.05 ShinyColor 1 1 1 50 0 null sphere 0.11046968186864 -1.5878520712551 -0.59666231430873 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5402838121977 -0.34289683615914 -0.63969604761729 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3808633910773 -0.34520856563439 -0.64107419403523 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3821526248232 0.0021287880224073 -0.63276085919153 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6594259694541 0.020178060463808 -0.58132487836715 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3912217173799 0.20356044672188 -0.62386959197902 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3837975092575 0.37849612912806 -0.61155518688969 0.05 ShinyColor 1 1 1 50 0 null sphere -0.71401752674764 0.89503429783897 -0.59132755398122 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5250352889282 1.4281546799012 -0.58350323883421 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5262356100019 1.5904203065296 -0.59141646665335 0.05 ShinyColor 1 1 1 50 0 null sphere 0.7337030571297 2.1789777396618 -0.57834630385095 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0533441134195 2.3157254293903 -0.57594566170358 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2931946729707 3.6077154680405 -0.63302759720791 0.05 ShinyColor 1 1 1 50 0 null sphere -1.164049016709 3.6462591114067 -0.57874641087552 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3018192021668 3.7867855897005 -0.59439504116954 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1637744755902 -2.3152910982468 -0.58826006679291 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0134762298563 -2.2985755158873 -0.59737361568573 0.05 ShinyColor 1 1 1 50 0 null sphere -0.58429393811708 -2.3129349124355 -0.59154983566153 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3613915158819 -2.1482241873237 -0.58923810618628 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0155134182128 -1.8537898735814 -0.57292263085132 0.05 ShinyColor 1 1 1 50 0 null sphere 0.45758475384513 -1.0589105847828 -0.58385888952271 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7269115109883 -0.33840674621682 -0.60413097876724 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1722742622718 -0.34516410929833 -0.61733451057782 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5613116591553 -0.14444375197586 -0.610354865816 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1831216082711 -0.16796115375296 -0.63151608178178 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3624140116114 -0.16818343543327 -0.63622845340441 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0104531990041 -0.19112290484155 -0.61133290520938 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3621028172589 0.54791922586248 -0.59146092298941 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1991180861512 1.2352586377258 -0.59772926637423 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2300580492682 2.3369755580282 -0.59177211734185 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1897814321868 2.3246166966028 -0.5749676223102 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8740175270193 -1.4297653402167 -0.59003832023541 0.05 ShinyColor 1 1 1 50 0 null sphere 0.64803569753715 -0.69352395868457 -0.5746119716217 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0326813670354 -0.55504247184969 -0.57976890660496 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8603241521208 -0.13613041713216 -0.59092744695666 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5353491588947 0.02022251679987 -0.60221935631655 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5292141845181 0.18457759122316 -0.5854148612849 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3265377484089 0.69386937715588 -0.57336719421195 0.05 ShinyColor 1 1 1 50 0 null sphere -0.61283490586924 0.97523352809583 -0.59039397092391 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0513007687432 1.5888643347674 -0.57959108126071 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4885810933569 1.8201261949648 -0.59328363276797 0.05 ShinyColor 1 1 1 50 0 null sphere 0.37316217166232 1.9565182340048 -0.57954662492464 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4176740607284 -2.0541545802153 -0.5565626991803 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1892487795453 -2.0526430647892 -0.55322847397561 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0274807991073 -1.1190155511394 -0.5583409526228 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0309928496563 -0.9050916620063 -0.57163339710551 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8631693576288 -0.78114739706388 -0.57163339710551 0.05 ShinyColor 1 1 1 50 0 null sphere -1.196768880051 -0.79492886124327 -0.56425364531912 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0171652823582 -0.63386355568861 -0.56074159477018 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9002467652963 -0.5476627200633 -0.57430077726926 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0130316664957 -0.33942924194626 -0.56989959999907 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7095290835879 -0.17205113667071 -0.57910206156402 0.05 ShinyColor 1 1 1 50 0 null sphere 0.82332703063183 -0.2808357910158 -0.55860769063918 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6767997703609 0.13283041604634 -0.55758519490974 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5040074419706 0.36200282844885 -0.57287817451526 0.05 ShinyColor 1 1 1 50 0 null sphere -0.46786279396923 0.32337027241048 -0.55531792177055 0.05 ShinyColor 1 1 1 50 0 null sphere -0.31110975301263 0.72463316171117 -0.55722954422124 0.05 ShinyColor 1 1 1 50 0 null sphere -0.74069132838517 0.77331284969968 -0.55327293031167 0.05 ShinyColor 1 1 1 50 0 null sphere -2.167472977977 1.0579223131722 -0.46004799358848 0.05 ShinyColor 1 1 1 50 0 null sphere -0.15244508960535 1.2297905083901 -0.55651824284424 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2068979449622 1.3809865073388 -0.55811867094249 0.05 ShinyColor 1 1 1 50 0 null sphere -0.50049374463915 1.7782483263939 -0.5774571771297 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0342739920312 1.7315247171921 -0.55509564009023 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5061413461016 1.9065493122704 -0.56247539187662 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8531588789124 1.9131288500077 -0.57616794338389 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6807127513257 2.1157163734448 -0.56100833278655 0.05 ShinyColor 1 1 1 50 0 null sphere 0.50684237420245 2.1162498494776 -0.57305599985951 0.05 ShinyColor 1 1 1 50 0 null sphere 2.527471760918 2.1695974527526 -0.57750163346577 0.05 ShinyColor 1 1 1 50 0 null sphere 2.383210950395 2.2699798595819 -0.56007474972924 0.05 ShinyColor 1 1 1 50 0 null sphere -2.859569217799 2.3132803309068 -0.55963018636862 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7780268475754 2.3509348475518 -0.51299548983899 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4304227559022 2.3289734175369 -0.51917492055168 0.05 ShinyColor 1 1 1 50 0 null sphere -2.6475124947806 2.4928394722635 -0.55531792177055 0.05 ShinyColor 1 1 1 50 0 null sphere -0.659558515071 3.2008510803959 -0.57550109834295 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5899407161883 3.2254798905745 -0.56718776349925 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4209177264784 3.614472831122 -0.57692370109695 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1504462012651 -2.2906622880682 -0.54722686860716 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0262804780336 -0.72860000783793 -0.55207260923798 0.05 ShinyColor 1 1 1 50 0 null sphere -2.859524761463 -0.33831783354469 -0.5554957471148 0.05 ShinyColor 1 1 1 50 0 null sphere -1.7921281326008 -0.21610736570871 -0.51859698818287 0.05 ShinyColor 1 1 1 50 0 null sphere -2.6697851191479 0.013509610054424 -0.56981068732694 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1677841723295 1.5825515350465 -0.55433988237717 0.05 ShinyColor 1 1 1 50 0 null sphere 0.0031520866136185 1.5675697497934 -0.56443147066337 0.05 ShinyColor 1 1 1 50 0 null sphere 2.9226441321781 1.8364861266359 -0.46418243284229 0.05 ShinyColor 1 1 1 50 0 null sphere -0.65413484207136 2.4366022071444 -0.55198369656585 0.05 ShinyColor 1 1 1 50 0 null sphere -0.51983225082636 -2.3537013726049 -0.45831419648204 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0338277818881 -1.8333399589926 -0.45426866990034 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8422312467346 -1.6141257658681 -0.55491781474598 0.05 ShinyColor 1 1 1 50 0 null sphere 0.38889971462847 -1.2727900175798 -0.46720546369455 0.05 ShinyColor 1 1 1 50 0 null sphere -0.86459113699153 -0.44465738940634 -0.55954127369649 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6624045439703 -0.16324878213032 -0.46067038229335 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1788888064602 0.43099906201795 -0.45733615708866 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2471292823162 0.52369052270839 -0.44155415778645 0.05 ShinyColor 1 1 1 50 0 null sphere -0.76065222327726 0.73441355564493 -0.44786695750733 0.05 ShinyColor 1 1 1 50 0 null sphere 3.3263521199623 1.0547214569757 -0.53037791723945 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7831932324435 2.9237547377179 -0.45573572899041 0.05 ShinyColor 1 1 1 50 0 null sphere -0.7422028438113 3.2603781143837 -0.49583534411884 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0989649407134 -2.4336783211814 -0.44915619125315 0.05 ShinyColor 1 1 1 50 0 null sphere -0.93567681835557 -2.4367458083698 -0.43826438891782 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8428886418906 -2.4463928332953 -0.53793549437008 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1981392233666 -2.3863767796109 -0.50174803681516 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0140986185612 -2.3861100415945 -0.46138168367035 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6016685624152 -2.4183853415759 -0.46507155956355 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4206868183045 -2.3486333502938 -0.43066235545112 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3536030305773 -2.3590805892685 -0.44182089580283 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9125611703856 -1.6558702654309 -0.5149960249618 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9665756187016 -1.470531800386 -0.53629060993577 0.05 ShinyColor 1 1 1 50 0 null sphere 0.31385741935487 -1.4323882640444 -0.43559700875407 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1095471954788 -1.2777246708827 -0.47525206052187 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5309393551309 -1.2842597522839 -0.44853380254827 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1199944344535 -0.92238517673464 -0.49556860610246 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3499209577865 -0.84103008174015 -0.51050593501948 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0910978160128 -0.54543990326017 -0.45866984717054 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1251052663181 -0.69112331653719 -0.45017868698259 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9635517644581 -0.55366432543175 -0.53833560139465 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9359007468184 -0.35801199042041 -0.51988622192868 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8367178376716 -0.36845922939511 -0.48169822925094 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3899230337492 -0.30515340684202 -0.47311815639087 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9173624546803 -0.15658033172094 -0.48561038682445 0.05 ShinyColor 1 1 1 50 0 null sphere 0.88654394051279 -0.17036179590033 -0.44706674345821 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5841972223426 0.00052835992415535 -0.45866984717054 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7755467426408 0.014709931128113 -0.52299816545306 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4830232279578 0.029602803709071 -0.44110959442582 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7420266652496 0.18568899962473 -0.49187873020927 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1707104874072 0.25908641046402 -0.54402601241066 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5825617877932 0.38832097939789 -0.51757449245343 0.05 ShinyColor 1 1 1 50 0 null sphere -0.44243376974144 0.41690640348611 -0.53313421007533 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2249097407786 0.34719886854002 -0.49050058379133 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5621118732044 0.53965034735485 -0.45964788656391 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0725134207561 0.52662464088852 -0.51410689824055 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3978457114532 0.74374938621807 -0.47334043807118 0.05 ShinyColor 1 1 1 50 0 null sphere 3.303412650554 0.69915968114732 -0.51063930402767 0.05 ShinyColor 1 1 1 50 0 null sphere -0.36930309691853 0.89925764976491 -0.45991462458029 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2528291432172 0.93393359189371 -0.47849737305444 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2997672309969 1.2656667715926 -0.523665010494 0.05 ShinyColor 1 1 1 50 0 null sphere -0.12097000367306 1.3804530313061 -0.50125901711847 0.05 ShinyColor 1 1 1 50 0 null sphere -2.382775013528 1.4932387558968 -0.51712992909281 0.05 ShinyColor 1 1 1 50 0 null sphere -0.044060542284823 1.4530057717602 -0.44439936329445 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7315794262749 1.4517165380144 -0.45720278808047 0.05 ShinyColor 1 1 1 50 0 null sphere -0.59216270960015 1.4207749281148 -0.45480214593309 0.05 ShinyColor 1 1 1 50 0 null sphere -0.56428858688893 1.5931321430294 -0.46275983008829 0.05 ShinyColor 1 1 1 50 0 null sphere 0.0049747963921835 1.5914872585951 -0.49970304535628 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5425955416729 1.6336763215184 -0.45569127265434 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5994107391609 1.8307512592838 -0.50806083653604 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8951701164915 1.9366017954487 -0.45898104152297 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7272585351832 1.9981738208954 -0.4392424283112 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5400170741813 2.146391245328 -0.46742774537486 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7237551111279 2.1483917804508 -0.45751398243291 0.05 ShinyColor 1 1 1 50 0 null sphere -0.63408503450715 2.1946263699559 -0.46507155956355 0.05 ShinyColor 1 1 1 50 0 null sphere -2.924208730434 2.3769418041484 -0.50410422262647 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2322364097353 2.2811828562697 -0.52468750622344 0.05 ShinyColor 1 1 1 50 0 null sphere -0.63666350199878 2.360315134461 -0.5399360294929 0.05 ShinyColor 1 1 1 50 0 null sphere -0.75220551942538 2.569926758996 -0.45173465874478 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5380609953946 3.0315613526697 -0.4673832890388 0.05 ShinyColor 1 1 1 50 0 null sphere -0.60616645545986 3.4040609925379 -0.53100030594433 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1365750010223 3.8079468056662 -0.49805816092197 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1850332307218 -2.3505005164084 -0.4565803993756 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6214079990182 -1.3277380489531 -0.5378021253619 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1359542591 -1.0909636030839 -0.48525473613595 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8280043958033 -0.7090392199704 -0.50005869604478 0.05 ShinyColor 1 1 1 50 0 null sphere 0.66848561212593 -0.73624649764069 -0.44017601136851 0.05 ShinyColor 1 1 1 50 0 null sphere 0.79923169648592 -0.39233228186071 -0.47614118724312 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0160024379095 -0.14751123916418 -0.45035651232684 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1168277613169 0.34599854746633 -0.43928688464726 0.05 ShinyColor 1 1 1 50 0 null sphere -0.85352150931196 0.68773440277924 -0.52313153446125 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6041153076812 0.72289936460473 -0.51210636311774 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5764634666502 0.92250831352563 -0.52233132041213 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6619530008986 0.86760473848837 -0.54593763486135 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7926101725864 0.89081094591303 -0.52562108928076 0.05 ShinyColor 1 1 1 50 0 null sphere 3.8052357720282 1.0767717996627 -0.52339827247763 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5924677476328 1.078372227761 -0.51419581091268 0.05 ShinyColor 1 1 1 50 0 null sphere -0.25958485951612 1.0988221423498 -0.45804745846566 0.05 ShinyColor 1 1 1 50 0 null sphere -0.1941895891681 1.251040637028 -0.44257665351589 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9458136863691 1.4185076549756 -0.44471055764689 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1946357993113 1.6238959275847 -0.45115672637596 0.05 ShinyColor 1 1 1 50 0 null sphere -0.55437482394698 1.7734025857631 -0.46636079330936 0.05 ShinyColor 1 1 1 50 0 null sphere -0.63933088216253 3.3070572672493 -0.52255360209244 0.05 ShinyColor 1 1 1 50 0 null sphere -0.87699445475299 -2.4559954018848 -0.44635544208121 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7762930504689 -2.4591073454092 -0.44057611839307 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9616759718498 -2.4621748325975 -0.4118128689606 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3146226269529 -2.4343007098863 -0.44262110985195 0.05 ShinyColor 1 1 1 50 0 null sphere -0.70726016366613 -2.4366124393616 -0.43862003960632 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0667262939656 -2.440435684263 -0.48494354178351 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6550247921839 -2.4363012450091 -0.41176841262453 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2804287248096 -2.3949123961349 -0.45124563904809 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8295159112294 -2.4285658425342 -0.4211931558698 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8747646582388 -2.3781523574393 -0.42248238961561 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7250801747161 -2.3115567660176 -0.42701693589399 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3534338317267 -2.2469172533826 -0.49890283130716 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2934099749399 -2.1387105314063 -0.4695171931698 0.05 ShinyColor 1 1 1 50 0 null sphere -0.33422704776517 -2.2087292607049 -0.44902282224496 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2504635075209 -2.1996157118121 -0.44431045062233 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4159308137371 -2.2570532980049 -0.51170625609317 0.05 ShinyColor 1 1 1 50 0 null sphere 2.555168058285 -2.2455391069647 -0.46271537375223 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4264319589327 -2.1764984170595 -0.50614921408535 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2561197354771 -2.1314641486281 -0.4864995135457 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0870967457672 -2.1679183441994 -0.47987551947238 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9138948604675 -2.149869071758 -0.43795319456538 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7201986042429 -2.171163656732 -0.42181554457467 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5441070570991 -2.2021497229676 -0.44564414070421 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2406403040337 -1.9966725376865 -0.44070948740126 0.05 ShinyColor 1 1 1 50 0 null sphere -0.15413443037573 -2.0252135054386 -0.44182089580283 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1129600600794 -2.0101872638495 -0.44022046770457 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2675894701812 -2.0038744641286 -0.476052274571 0.05 ShinyColor 1 1 1 50 0 null sphere 3.141369305606 -1.9402574472231 -0.48738864026695 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2349585195113 -1.8697496982278 -0.48454343475895 0.05 ShinyColor 1 1 1 50 0 null sphere 0.01880071690764 -1.8237373904031 -0.44524403367964 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0899777811176 -1.8156018809036 -0.43466342569675 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0849183853001 -1.8372965729022 -0.44297676054045 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9652419286197 -1.7630989480138 -0.49018938943889 0.05 ShinyColor 1 1 1 50 0 null sphere 0.9948395751612 -1.6751198589459 -0.44937847293346 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0070222580249 -1.7168643585087 -0.43475233836888 0.05 ShinyColor 1 1 1 50 0 null sphere 0.1596828458899 -1.643867054694 -0.4472001124664 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8883238407378 -1.6139479405239 -0.43679732982776 0.05 ShinyColor 1 1 1 50 0 null sphere 0.24663943922827 -1.5338376229391 -0.42266021495986 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7047191727995 -1.4609736881326 -0.43115137514781 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1107030602164 -1.4653748654028 -0.43279625958212 0.05 ShinyColor 1 1 1 50 0 null sphere 0.990438397891 -1.2909282026933 -0.44115405076189 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4564305358901 -1.1394654657281 -0.44604424772877 0.05 ShinyColor 1 1 1 50 0 null sphere 0.48923766512167 -1.0928752255346 -0.42630563451699 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5048434858622 -0.91580563899738 -0.42648345986124 0.05 ShinyColor 1 1 1 50 0 null sphere 0.5777946865583 -0.91469423059581 -0.44230991549951 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0495208685181 -0.93927858443841 -0.43355201729519 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6716070055352 -0.76220899790123 -0.4178589306651 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6163033234734 -0.83236109620795 -0.47151772829262 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4940483993014 -0.84592027870703 -0.47663020693981 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1154051585629 -0.75460696443453 -0.43541918340982 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2811914622338 -0.78470390394888 -0.42497194443511 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5776185079966 -0.76763267090086 -0.42377162336142 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1257293018056 -0.7624757359176 -0.48000888848057 0.05 ShinyColor 1 1 1 50 0 null sphere 2.670976813728 -0.6451554650485 -0.42301586564836 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0220554793251 -0.57162468520102 -0.4268835668858 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8271597254181 -0.54797391441574 -0.44888945323677 0.05 ShinyColor 1 1 1 50 0 null sphere -0.95710477233773 -0.50658506554149 -0.45088998835959 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2413944149642 -0.51649882848344 -0.43933134098332 0.05 ShinyColor 1 1 1 50 0 null sphere 2.735660782699 -0.54877412846486 -0.44804478285158 0.05 ShinyColor 1 1 1 50 0 null sphere -0.88201802072806 -0.38335210197607 -0.431284744156 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3359974981053 -0.37823962332888 -0.41456916179647 0.05 ShinyColor 1 1 1 50 0 null sphere 2.877076387714 -0.36508054785436 -0.43666396081957 0.05 ShinyColor 1 1 1 50 0 null sphere -0.80835387187239 -0.31284435298085 -0.48569929949657 0.05 ShinyColor 1 1 1 50 0 null sphere 0.82292692360727 -0.32671472983237 -0.4157250265341 0.05 ShinyColor 1 1 1 50 0 null sphere -0.76420873016227 -0.17720807165397 -0.43155148217237 0.05 ShinyColor 1 1 1 50 0 null sphere 2.9709681694782 -0.22344266115903 -0.44657772376152 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4704334583585 -0.17378493377715 -0.41825903768967 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5806048856152 -0.051885660293606 -0.47045077622712 0.05 ShinyColor 1 1 1 50 0 null sphere 0.95656266981133 0.028313569963257 -0.43533027073769 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1059376057641 0.0032846527600339 -0.44075394373732 0.05 ShinyColor 1 1 1 50 0 null sphere -0.70401485113356 -0.0053398764361032 -0.42612780917274 0.05 ShinyColor 1 1 1 50 0 null sphere -0.64528803119491 0.061255714985615 -0.45257932912997 0.05 ShinyColor 1 1 1 50 0 null sphere -0.58847283370696 0.1813322786906 -0.44960075461377 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0312493143964 0.19782557936981 -0.43977590434395 0.05 ShinyColor 1 1 1 50 0 null sphere 3.144214511114 0.13967669179997 -0.48374322070982 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3050200583633 0.18822301078029 -0.43039561743475 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1990291734791 0.19120158529648 -0.42572770214818 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7172644860628 0.35400068795759 -0.4359082031065 0.05 ShinyColor 1 1 1 50 0 null sphere -0.53632555150557 0.38623153160295 -0.45466877692491 0.05 ShinyColor 1 1 1 50 0 null sphere 1.768557647994 0.35729045682622 -0.43515244539344 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2680254070482 0.36169163409641 -0.44128741977007 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0982536393364 0.36493694662898 -0.42968431605775 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2805620938178 0.5318704885439 -0.48414332773438 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7969207904019 0.54654107944455 -0.429862141402 0.05 ShinyColor 1 1 1 50 0 null sphere -0.91313745597185 0.55223149046055 -0.4511122700399 0.05 ShinyColor 1 1 1 50 0 null sphere -0.41349269496472 0.59064176481861 -0.5056157380526 0.05 ShinyColor 1 1 1 50 0 null sphere -0.40771337127658 0.75112913800446 -0.47178446630899 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3489787482356 0.61246982582533 -0.48009780115269 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7164992784648 0.66226092221539 -0.43226278354937 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5979342301859 0.69124645332819 -0.45084553202353 0.05 ShinyColor 1 1 1 50 0 null sphere -0.71881881104239 0.88805465307715 -0.43279625958212 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3254263400073 0.8816973970202 -0.42230456427136 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4420275063971 1.074148875835 -0.45506888394947 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0370380879695 1.2665114419777 -0.43648613547532 0.05 ShinyColor 1 1 1 50 0 null sphere -0.61705825779519 1.2628215660845 -0.48312083200495 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2418850814434 1.4531835971044 -0.44488838299114 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5505087694921 1.4600743291941 -0.44724456880246 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9024243023721 1.4778568636192 -0.48103138421 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2099209758144 1.5536993729419 -0.43332973561488 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7216212069969 1.6277191724861 -0.46431580185048 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1062932564526 1.6396334705508 -0.45449095158066 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0012062811031 1.6222954994864 -0.41888142639454 0.05 ShinyColor 1 1 1 50 0 null sphere 0.17586495221667 1.6202949643636 -0.42034848548461 0.05 ShinyColor 1 1 1 50 0 null sphere 0.20222755950177 1.7659339213046 -0.47289587471056 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0366301778426 1.7647780565669 -0.44648881108939 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5231236664775 1.9350902800226 -0.43675287349169 0.05 ShinyColor 1 1 1 50 0 null sphere -0.59892007268166 2.004308795272 -0.41848131936998 0.05 ShinyColor 1 1 1 50 0 null sphere 0.35066726561467 1.8144802402849 -0.4565803993756 0.05 ShinyColor 1 1 1 50 0 null sphere 0.41139462067613 1.9478492484726 -0.48943363172583 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3761510194547 1.977990644323 -0.42995105407412 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1858334447709 2.0369397459419 -0.42661682886943 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7071642712829 2.1067361935602 -0.47374054509574 0.05 ShinyColor 1 1 1 50 0 null sphere 0.51977916799665 1.9819028018965 -0.47196229165324 0.05 ShinyColor 1 1 1 50 0 null sphere 0.69524832643559 2.0054202036736 -0.42457183741055 0.05 ShinyColor 1 1 1 50 0 null sphere -2.37281679425 2.1955154966771 -0.46040364427698 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1717852425751 2.2077409890943 -0.44822260819583 0.05 ShinyColor 1 1 1 50 0 null sphere 0.73921564280146 2.171286793523 -0.49454611037302 0.05 ShinyColor 1 1 1 50 0 null sphere 2.542364633499 2.165596382507 -0.46858361011249 0.05 ShinyColor 1 1 1 50 0 null sphere 0.88507688142273 2.1474581973935 -0.48907798103733 0.05 ShinyColor 1 1 1 50 0 null sphere -2.900068939952 2.1916477954397 -0.44177643946676 0.05 ShinyColor 1 1 1 50 0 null sphere -0.663826323333 2.2572208911319 -0.42901747101681 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2338368378335 2.1939595249149 -0.44782250117127 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0561004062554 2.1792444776782 -0.4514679207284 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1920042489899 2.1998722176112 -0.4388867776227 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3539142249298 2.1793778466864 -0.43893123395876 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1014116859794 2.3493344194536 -0.44813369552371 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1220291526362 2.3151919533575 -0.51552950099455 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6031356215052 2.209652611545 -0.42283804030411 0.05 ShinyColor 1 1 1 50 0 null sphere -0.70579310457606 2.3992588848518 -0.44213209015526 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1459919411652 2.3482674673881 -0.50014760871691 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6265641106102 2.2952310584654 -0.48223170528369 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9744349402998 2.3285733105124 -0.48992265142252 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7554080224044 2.4204201008176 -0.5059713887411 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7229993534148 2.5368067886294 -0.43359647363125 0.05 ShinyColor 1 1 1 50 0 null sphere -2.6159929525122 2.6182063399599 -0.49023384577496 0.05 ShinyColor 1 1 1 50 0 null sphere -2.615148282127 2.687913874906 -0.49641327648765 0.05 ShinyColor 1 1 1 50 0 null sphere -0.79683968083219 2.7066299923884 -0.49525741175002 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7286897644308 2.7311254335589 -0.43773091288507 0.05 ShinyColor 1 1 1 50 0 null sphere -0.87286001549917 2.7670906094335 -0.42088196151736 0.05 ShinyColor 1 1 1 50 0 null sphere -0.96941917742706 2.8975699557771 -0.43933134098332 0.05 ShinyColor 1 1 1 50 0 null sphere -0.91051453214416 3.1014022566239 -0.46765002705517 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3628141186359 3.0855758009857 -0.44053166205701 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2032603285074 3.1427466491621 -0.44142078877826 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0149432889464 3.1582174541119 -0.48307637566888 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8288046098524 3.2014290127647 -0.4420876338192 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6248389399974 3.2728258884812 -0.42426064305811 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5076964944726 3.448917435625 -0.41968164044367 0.05 ShinyColor 1 1 1 50 0 null sphere -0.72135282219796 3.4138858428077 -0.50552682538048 0.05 ShinyColor 1 1 1 50 0 null sphere -0.93500997331463 3.4225992846759 -0.46089266397366 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1276837338098 3.4641215025584 -0.42221565159924 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1604925098239 3.6414578271119 -0.48076464619363 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4269637881829 3.6170068422775 -0.44506620833539 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2937281490034 3.7769162830946 -0.4709397959238 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4851126757528 -2.4364790703534 -0.41648078424716 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4106413331369 -2.3503226910641 -0.41247971400153 0.05 ShinyColor 1 1 1 50 0 null sphere 0.97759051676892 -1.4710208200827 -0.42821725696768 0.05 ShinyColor 1 1 1 50 0 null sphere 1.010310380111 -1.1304852858435 -0.42750595559068 0.05 ShinyColor 1 1 1 50 0 null sphere 0.7395268371539 -0.55566486055456 -0.43421886233613 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0757159237352 -0.33751761949557 -0.42532759512361 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9024695820994 0.030091823405759 -0.43568592142619 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6757328182954 0.1723076424699 -0.44786695750733 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4060248538975 0.14625622953723 -0.47885302374294 0.05 ShinyColor 1 1 1 50 0 null sphere -0.54810648056215 0.53853893895328 -0.42910638368893 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4888033750372 0.69564763059838 -0.40638919596096 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4350462148527 0.67648694975541 -0.42350488534505 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7959443977911 0.73232410784999 -0.46982838752224 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4272680028243 0.90063579618285 -0.46965056217799 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9551425372312 0.89827961037154 -0.43195158919694 0.05 ShinyColor 1 1 1 50 0 null sphere 3.3274190720278 0.96340814270319 -0.51268429548655 0.05 ShinyColor 1 1 1 50 0 null sphere -0.33711670960923 1.0495645219924 -0.44288784786833 0.05 ShinyColor 1 1 1 50 0 null sphere -0.69605716697836 1.0925537989649 -0.41825903768967 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9903519553927 1.0752158279005 -0.46898371713705 0.05 ShinyColor 1 1 1 50 0 null sphere -0.59678616855066 1.0864188245883 -0.50997245898673 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4367816587417 1.2559752903309 -0.42728367391037 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6048266090582 1.2778922640098 -0.45995908091635 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7685148384405 1.2566865917079 -0.48098692787394 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9767483165576 1.260998856306 -0.44742239414671 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3754841744138 1.5945992021195 -0.43084018079537 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9040247304703 1.547386573221 -0.43675287349169 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7065060527356 1.8027437675644 -0.4215488065583 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4205979056324 2.207518707414 -0.43741971853263 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7994992578936 2.2156542169134 -0.42897301468074 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8286276078995 2.9535849392159 -0.42506085710724 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8889540325451 3.171776636611 -0.49916956932353 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3633475946687 -2.3192921684925 -0.41314655904247 0.05 ShinyColor 1 1 1 50 0 null sphere -0.075224433864679 -1.9582178069923 -0.42390499236961 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0608675074903 -1.6415108688826 -0.42528313878755 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6005143444601 0.54294011622348 -0.4673832890388 0.05 ShinyColor 1 1 1 50 0 null sphere 3.420688465087 0.71276331998247 -0.46836132843217 0.05 ShinyColor 1 1 1 50 0 null sphere -0.66542675143126 1.229746052054 -0.41007907185416 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0708615566107 -2.4043371393802 -0.41590285187835 0.05 ShinyColor 1 1 1 50 0 null sphere -0.42691850845561 -2.309022754862 -0.41368003507522 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5301391410818 -2.2954635723629 -0.40434420450209 0.05 ShinyColor 1 1 1 50 0 null sphere -0.2453588319761 -2.1503580914547 -0.40927885780503 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7614462810066 0.55227594679662 -0.42523868245149 0.05 ShinyColor 1 1 1 50 0 null sphere -0.51778725936749 0.67679814410785 -0.4167919785996 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0047097051584 2.2186772477657 -0.42679465421368 0.05 ShinyColor 1 1 1 50 0 null sphere -2.6959699010888 3.0153347900068 -0.40296605808415 0.05 ShinyColor 1 1 1 50 0 null sphere -0.88646365433432 3.2587332299493 -0.42141543755011 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4233113889147 0.53729416154353 -0.42995105407412 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8972681907801 2.5191576232126 -0.4175032799766 0.05 ShinyColor 1 1 1 50 0 null sphere 3.3672074928038 -2.2022830919758 -0.39985411455977 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7182775319073 0.25050633760394 -0.40145454265802 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6071383385334 0.3881876103897 -0.41296873369822 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7799845731447 1.4094385624189 -0.41665860959141 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0078302751764 3.1933379596013 -0.39896498783852 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2036962653744 -2.4562176835652 -0.37558095506961 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6374122800007 -2.2638551174225 -0.42061522350098 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0895418442507 -2.0007180642681 -0.40781179871496 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1834249995211 -1.8752622838996 -0.37669236347117 0.05 ShinyColor 1 1 1 50 0 null sphere 0.10486818352476 -1.7558970215716 -0.38553917434762 0.05 ShinyColor 1 1 1 50 0 null sphere 0.97643465203129 -1.6074128591227 -0.39807586111726 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5954010424216 -1.4054032680544 -0.36957934970116 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2040613659478 -1.2548741141465 -0.38567254335581 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2309129929296 -1.1027889884765 -0.38980698260963 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2209103173155 -0.90869262522737 -0.40243258205139 0.05 ShinyColor 1 1 1 50 0 null sphere 0.63909997398857 -0.821736031889 -0.39860933715001 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4920923205146 -0.80586511991466 -0.39242990643732 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2108187290293 -0.7274441431003 -0.3882954671835 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8008782277028 -0.48044473993671 -0.38340527021662 0.05 ShinyColor 1 1 1 50 0 null sphere -1.7080612011065 -0.33769544483982 -0.38522797999518 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0572665442692 -0.1736071084329 -0.39051828398663 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5381490846754 -0.11812560102682 -0.37767040286455 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8788632676502 0.17413035224846 -0.38620601938856 0.05 ShinyColor 1 1 1 50 0 null sphere -0.6790303902664 0.17755349012528 -0.38620601938856 0.05 ShinyColor 1 1 1 50 0 null sphere -1.179697647003 0.24619407300587 -0.38482787297062 0.05 ShinyColor 1 1 1 50 0 null sphere -0.97137525621381 0.41352772194536 -0.37851507324974 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4190435806527 0.37067181398105 -0.3817603857823 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9007279818906 0.76491060218385 -0.38833992351956 0.05 ShinyColor 1 1 1 50 0 null sphere 4.1128291612451 1.0793947234904 -0.38780644748681 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1183487266279 1.1818665781146 -0.37522530438111 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6131399439019 1.3880550647728 -0.3904293713145 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8790855493305 1.4509163239652 -0.38540580533943 0.05 ShinyColor 1 1 1 50 0 null sphere 0.13345360761299 1.5070646764123 -0.38007104501193 0.05 ShinyColor 1 1 1 50 0 null sphere 0.32274868656738 1.685956972728 -0.39167414872425 0.05 ShinyColor 1 1 1 50 0 null sphere 0.5254251226766 1.8604925481096 -0.39371914018313 0.05 ShinyColor 1 1 1 50 0 null sphere 0.87116204823515 2.0430302639825 -0.39972074555158 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3732082747809 2.0655251700302 -0.39314120781432 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5556570779817 2.0449418864332 -0.39927618219095 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0575777386217 2.2257902615357 -0.38531689266731 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3194691909749 2.2779820000732 -0.39892053150245 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2177975503999 2.2784265634338 -0.40461094251846 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2569199495262 2.3891228402296 -0.38340527021662 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0597116427527 2.4750569378385 -0.39025154597025 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0452616867498 2.9723010566983 -0.37935974363493 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0331251070047 3.0748618239946 -0.38171592944624 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1335527935613 3.1791119320613 -0.3958975006502 0.05 ShinyColor 1 1 1 50 0 null sphere -1.262119694063 3.6149618508187 -0.39972074555158 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4966721465203 -2.2977753018382 -0.37224672986492 0.05 ShinyColor 1 1 1 50 0 null sphere 0.97830181814592 -1.3320058572151 -0.39829814279758 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1683526548134 -0.6389760343358 -0.37958202531524 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0141438982885 -0.034414320221019 -0.37758149019242 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1860923796849 0.077793472000888 -0.37687018881542 0.05 ShinyColor 1 1 1 50 0 null sphere -0.65248995763705 0.38031883890662 -0.38340527021662 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7402850650408 0.42410832992825 -0.39154077971607 0.05 ShinyColor 1 1 1 50 0 null sphere -2.6631611250746 0.50661928966036 -0.37829279156942 0.05 ShinyColor 1 1 1 50 0 null sphere 4.1398586135711 1.2405489417172 -0.3948305485847 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9353594676833 1.4235312209507 -0.39020708963419 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8516115336438 1.6057577424712 -0.37922637462674 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6988501130479 -2.4622192889336 -0.37500302270079 0.05 ShinyColor 1 1 1 50 0 null sphere -0.91789428393055 -2.4118947165108 -0.26906357386371 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2979873307718 -2.2890618599699 -0.37246901154523 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1387002786596 -2.0906532321227 -0.37624780011055 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1556484159757 -1.6632500172172 -0.3290351712121 0.05 ShinyColor 1 1 1 50 0 null sphere 0.20182745247721 -1.6620496961435 -0.27377594548634 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1934363016289 -1.4454584268467 -0.36624512449647 0.05 ShinyColor 1 1 1 50 0 null sphere 2.482704230503 -1.1063010390255 -0.2706195456259 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3135573216699 -0.9050916620063 -0.27844386077291 0.05 ShinyColor 1 1 1 50 0 null sphere -3.202060830825 -0.59025189001124 -0.36606729915222 0.05 ShinyColor 1 1 1 50 0 null sphere -1.7290890480641 -0.53872699651473 -0.3633554626524 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1294105512051 -0.066600707530314 -0.33383645550686 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2431368385643 0.12193861371101 -0.35055203786638 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2975888705298 0.18355509549372 -0.30738493554964 0.05 ShinyColor 1 1 1 50 0 null sphere 3.8402673648455 0.52626899020002 -0.29858258100925 0.05 ShinyColor 1 1 1 50 0 null sphere -2.570336295376 0.70889561874502 -0.25808285885626 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2108623619741 1.0857075232113 -0.26350653185589 0.05 ShinyColor 1 1 1 50 0 null sphere 3.440560447307 1.2228997763004 -0.27306464410934 0.05 ShinyColor 1 1 1 50 0 null sphere 4.0857107962469 1.3798306426012 -0.37486965369261 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7401150427989 1.4798129424059 -0.28675719561661 0.05 ShinyColor 1 1 1 50 0 null sphere -0.62017020131957 1.4939056009377 -0.30667363417264 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6949832352018 1.9015257462954 -0.36522262876703 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5136902967386 1.9509611919969 -0.2980491049765 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0878422302041 2.103757619044 -0.32116639972903 0.05 ShinyColor 1 1 1 50 0 null sphere -2.577449309146 2.2304137204862 -0.35037421252213 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1668069563274 2.2775374367125 -0.35793178965277 0.05 ShinyColor 1 1 1 50 0 null sphere -0.68227570279897 2.3822321081399 -0.27573202427309 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3944225735764 3.144791640621 -0.3016056118615 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0111192206537 3.3202163427239 -0.37073521443879 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5405863800565 -2.3901555681762 -0.28862436173124 0.05 ShinyColor 1 1 1 50 0 null sphere 3.459054283109 -2.1689408399289 -0.29964953307475 0.05 ShinyColor 1 1 1 50 0 null sphere 3.3579161185667 -2.0438407102488 -0.36384448234909 0.05 ShinyColor 1 1 1 50 0 null sphere 0.67888839476456 -0.72975587257555 -0.2655070669787 0.05 ShinyColor 1 1 1 50 0 null sphere 2.9166425268097 -0.39575541973752 -0.31120818045102 0.05 ShinyColor 1 1 1 50 0 null sphere -0.7129950310182 0.18706714604267 -0.2716864976914 0.05 ShinyColor 1 1 1 50 0 null sphere 3.8227071121008 0.36960486191555 -0.27564311160097 0.05 ShinyColor 1 1 1 50 0 null sphere -0.80835387187239 0.9438028984996 -0.32699017975323 0.05 ShinyColor 1 1 1 50 0 null sphere 4.1603529844959 0.89356723874891 -0.2734647511339 0.05 ShinyColor 1 1 1 50 0 null sphere -0.052907353161273 1.2867390748862 -0.36233296692296 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2560221963113 1.2552195326179 -0.33463666955599 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4948860899754 1.3637819052826 -0.28822425470667 0.05 ShinyColor 1 1 1 50 0 null sphere 3.602603792255 1.4529613154241 -0.27101965265046 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9900852173763 1.4833249929549 -0.34952954213695 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9390571466789 1.6123817365445 -0.32116639972903 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5195671595925 1.5897534614886 -0.2745317031994 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8703190246325 1.7581985188297 -0.34517282120281 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1598178616806 2.0985562277247 -0.32067738003234 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3729946195943 2.3351528482496 -0.27839940443685 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3663253457936 3.57046105842 -0.35633136155452 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9762226436272 -2.0592670588625 -0.27635441297797 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0745497857214 -0.92211843871826 -0.26457348392139 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5960312342289 -0.22642123567522 -0.35032975618607 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9930715949949 0.038938634282209 -0.3553977784972 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6092722426644 0.20444957344313 -0.33245830908892 0.05 ShinyColor 1 1 1 50 0 null sphere -0.55175190011928 0.53689405451897 -0.28346742674798 0.05 ShinyColor 1 1 1 50 0 null sphere -0.95177001201022 0.55334289886212 -0.30658472150051 0.05 ShinyColor 1 1 1 50 0 null sphere 1.614338618193 0.75544140260253 -0.27110856532259 0.05 ShinyColor 1 1 1 50 0 null sphere 4.1627980829794 1.4313999924338 -0.32801267548267 0.05 ShinyColor 1 1 1 50 0 null sphere 0.041295622955297 1.3812087890192 -0.33690394269518 0.05 ShinyColor 1 1 1 50 0 null sphere 3.766736584998 1.5220909180014 -0.3590876543904 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0171661057495 1.5885086840789 -0.25430407029094 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3720165802009 1.6197170319948 -0.25190342814356 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8895772446412 1.7652226199276 -0.26181719108551 0.05 ShinyColor 1 1 1 50 0 null sphere -2.735224845832 1.8383977490865 -0.27573202427309 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2436711379883 2.0360950755568 -0.25652688709407 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3606715880113 2.0047533586326 -0.27884396779747 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4356788768338 2.3956134652947 -0.25643797442194 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0811840530709 2.5601908213983 -0.29471487977181 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1082563149504 3.2692249252601 -0.3265456163926 0.05 ShinyColor 1 1 1 50 0 null sphere -1.172629089569 3.4109961809636 -0.34472825784219 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3781873844199 -2.4354565746239 -0.33939349751468 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6638271467243 -2.4035813816671 -0.24701323117668 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5587237417787 -2.4517720499589 -0.3113415494592 0.05 ShinyColor 1 1 1 50 0 null sphere -1.492359058531 -2.3572134231538 -0.23910000335754 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1868559405003 -2.4296327945997 -0.23287611630878 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4463397709951 -2.3969129312577 -0.2695525935604 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3777069912169 -2.3780189884311 -0.26715195141302 0.05 ShinyColor 1 1 1 50 0 null sphere -2.55188691591 -2.3244935598118 -0.25870524756113 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7555413914126 -2.2133971759914 -0.2741760525109 0.05 ShinyColor 1 1 1 50 0 null sphere -0.2057037802083 -2.1712081130681 -0.26319533750345 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2127645345399 -2.2084180663524 -0.27831049176472 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1435904756265 -2.110036194646 -0.22896395873528 0.05 ShinyColor 1 1 1 50 0 null sphere -0.12021424595999 -2.0668246359932 -0.25639351808588 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4259343127424 -2.0081422723906 -0.24856920293887 0.05 ShinyColor 1 1 1 50 0 null sphere -0.030412447113616 -1.9794679356302 -0.25954991794632 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0813071488029 -1.9854695409987 -0.254348526627 0.05 ShinyColor 1 1 1 50 0 null sphere 3.3171496583973 -1.9296768392402 -0.26315088116739 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1256403891335 -1.8228038073458 -0.27546528625672 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0641041935292 -1.768255882997 -0.23785522594779 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5796190431194 -1.4135387775538 -0.2352323021201 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3182696932925 -1.1279068183519 -0.25999448130695 0.05 ShinyColor 1 1 1 50 0 null sphere 0.5900201789755 -0.93701131129922 -0.24901376629949 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5582355454733 -0.91802845580051 -0.24919159164374 0.05 ShinyColor 1 1 1 50 0 null sphere 0.63958899368526 -0.81977995310224 -0.29916051337806 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3117790682274 -0.72233166445311 -0.25132549577475 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5831388967707 -0.74020311155026 -0.33259167809711 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4949819823587 -0.71904189558448 -0.28769077867392 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3207576013295 -0.70446021735596 -0.28840208005092 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1498588190113 -0.7346905258785 -0.2839119901086 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1744073430115 -0.66787265277647 -0.33068005564642 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6953388858903 -0.72255394613342 -0.24559062842268 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1006542814837 -0.53085822503165 -0.29462596709968 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2516193722586 -0.56588981784895 -0.27613213129766 0.05 ShinyColor 1 1 1 50 0 null sphere 0.7449949664896 -0.54597337929292 -0.24447922002111 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7702478121557 -0.58238311852816 -0.29747117260769 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1697410745075 -0.32324713561949 -0.3237004108846 0.05 ShinyColor 1 1 1 50 0 null sphere -0.96070573555879 -0.3144447810791 -0.27791038474016 0.05 ShinyColor 1 1 1 50 0 null sphere 3.102292186207 -0.18485456145673 -0.26497359094595 0.05 ShinyColor 1 1 1 50 0 null sphere -0.87859488285124 -0.1483114532133 -0.25821622786444 0.05 ShinyColor 1 1 1 50 0 null sphere 0.86462696683395 -0.18094240388322 -0.27150867234715 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1422670588208 -0.15422414590962 -0.27177541036352 0.05 ShinyColor 1 1 1 50 0 null sphere -0.79621729212731 -0.11376888009269 -0.34677324930107 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0666468311784 0.00088401061265559 -0.26452902758533 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4298979063631 -0.040415925589465 -0.34521727753888 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2227244006004 0.0076858300302276 -0.2554154786925 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6197622911926 0.018444263357368 -0.25843850954476 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2784351693979 0.018088612668867 -0.25345939990575 0.05 ShinyColor 1 1 1 50 0 null sphere 0.91361784917489 -0.0013388061904723 -0.24096716947217 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9457255970883 0.20636119589382 -0.27590984961734 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8709944961671 0.339374553393 -0.25554884770069 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0854502145503 0.35057755008077 -0.27324246945359 0.05 ShinyColor 1 1 1 50 0 null sphere -0.68801057015104 0.35626796109678 -0.29600411351762 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4324693941436 0.18715605871479 -0.28982468280492 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4286461492422 0.27313461265979 -0.34961845480907 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6930724361423 0.27878056733973 -0.35753168262821 0.05 ShinyColor 1 1 1 50 0 null sphere -0.97519850111519 0.42619777772319 -0.30338386530401 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0796178080325 0.37511744758731 -0.26692966973271 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7219768576854 0.52609116485577 -0.26857455416702 0.05 ShinyColor 1 1 1 50 0 null sphere 1.769268949371 0.68506702261549 -0.25319266188937 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3064784909598 0.66857372193628 -0.25812731519232 0.05 ShinyColor 1 1 1 50 0 null sphere -0.51231913003179 0.65968245472377 -0.31841010689315 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4137960862148 0.73090150509599 -0.26510695995414 0.05 ShinyColor 1 1 1 50 0 null sphere 3.8702309353517 0.66906274163297 -0.24594627911118 0.05 ShinyColor 1 1 1 50 0 null sphere -0.92696337648731 0.7123632129579 -0.257905033512 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9504301656085 0.74815056348827 -0.27888842413353 0.05 ShinyColor 1 1 1 50 0 null sphere -0.36254573383702 0.73236856418606 -0.25674916877438 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3843754416263 0.90405893405967 -0.24230085955405 0.05 ShinyColor 1 1 1 50 0 null sphere -0.87352686054011 0.86964972994725 -0.24607964811936 0.05 ShinyColor 1 1 1 50 0 null sphere -0.33818366167473 0.85613500378423 -0.32703463608929 0.05 ShinyColor 1 1 1 50 0 null sphere 4.0404542461352 0.86635996107862 -0.33917121583437 0.05 ShinyColor 1 1 1 50 0 null sphere 4.1814697441257 1.0440963926567 -0.33370308649867 0.05 ShinyColor 1 1 1 50 0 null sphere -0.78479201375924 1.0607675186802 -0.25750492648744 0.05 ShinyColor 1 1 1 50 0 null sphere -0.1544011683921 1.0743267011793 -0.29351455869812 0.05 ShinyColor 1 1 1 50 0 null sphere -0.70294789906806 1.2542859495605 -0.26501804728201 0.05 ShinyColor 1 1 1 50 0 null sphere -0.0058725496070817 1.2507738990116 -0.26190610375764 0.05 ShinyColor 1 1 1 50 0 null sphere 4.32097372669 1.2488178202248 -0.31294197755746 0.05 ShinyColor 1 1 1 50 0 null sphere 4.2402410204004 1.3394198331203 -0.34472825784219 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1978733087415 1.3605365927501 -0.33068005564642 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0826424856673 1.4446479805804 -0.29026924616555 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0232932770238 1.5827293603907 -0.33116907534311 0.05 ShinyColor 1 1 1 50 0 null sphere 0.34390990253316 1.6296752512728 -0.25554884770069 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1922796135 1.6302976399777 -0.24892485362737 0.05 ShinyColor 1 1 1 50 0 null sphere 0.53422747721699 1.7949194524174 -0.2755986552649 0.05 ShinyColor 1 1 1 50 0 null sphere 2.726413864798 1.8051444097117 -0.26261740513464 0.05 ShinyColor 1 1 1 50 0 null sphere 0.65252578747947 1.8610704804784 -0.24687986216849 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5695360813269 1.8715177194532 -0.23656599220198 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5882435723156 1.8872997187554 -0.257905033512 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3661038875046 1.9618085379962 -0.25408178861062 0.05 ShinyColor 1 1 1 50 0 null sphere 0.89085620511086 2.0061759613867 -0.26012785031513 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1349309399793 2.1405230089677 -0.26857455416702 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0276038948393 2.0528106579163 -0.22345137306352 0.05 ShinyColor 1 1 1 50 0 null sphere -2.912827908402 2.2080521834467 -0.26506250361808 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8258618651787 2.1341212965747 -0.25932763626601 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0758492927434 2.2164099746265 -0.26688521339664 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1837439969759 2.3255502796601 -0.28884664341155 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2825712554343 2.2989209343586 -0.27190877937171 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4561732477586 2.5451201234731 -0.28204482399398 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2543414820346 2.5440976277437 -0.27017498226527 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9125167140495 2.6026910786741 -0.28737958432148 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8367631173989 2.6977387251759 -0.24696877484061 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8068884595649 2.7549984860245 -0.29969398941081 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0503297090609 2.9647434795676 -0.2456795410948 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8019093499259 2.9220209406115 -0.25892752924144 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5452184655006 3.1030026847222 -0.25759383915957 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1307512209981 3.0807745166909 -0.27693234534678 0.05 ShinyColor 1 1 1 50 0 null sphere -2.193702216254 3.2062747533955 -0.26933031188008 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6551581611921 3.2340599634346 -0.25341494356969 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4807559548186 3.2654016803587 -0.23696609922654 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4695085017948 3.4173978933566 -0.31423121130327 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3030639795766 3.4522961171657 -0.31640957177034 0.05 ShinyColor 1 1 1 50 0 null sphere 1.624252381135 -2.4607966861796 -0.22047279854733 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7263685850707 -2.4600409284665 -0.28586806889536 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8065678153275 -2.4348341859191 -0.24034478076729 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9805254583403 -2.4299439889522 -0.25385950693031 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0496995172537 -2.4551951878357 -0.29920496971413 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1923598996784 -2.4570623539503 -0.2598166559627 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0166770860528 -2.4402134025826 -0.24519052139811 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8328056800981 -2.4348341859191 -0.26786325279002 0.05 ShinyColor 1 1 1 50 0 null sphere -0.55166298744716 -2.4173183895104 -0.26315088116739 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4435373750406 -2.412739386896 -0.25314820555331 0.05 ShinyColor 1 1 1 50 0 null sphere 3.238773137919 -2.4190966429529 -0.24865811561099 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2509097176641 -1.8737063121374 -0.23616588517741 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0358727733469 -1.8408530797872 -0.23781076961173 0.05 ShinyColor 1 1 1 50 0 null sphere 2.99928685555 -1.7172644655333 -0.29644867687825 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8903243758607 -1.6636945805779 -0.23861098366085 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6665311801217 -1.5056523058755 -0.26630728102783 0.05 ShinyColor 1 1 1 50 0 null sphere 0.33657460708284 -1.4620406401981 -0.24794681423399 0.05 ShinyColor 1 1 1 50 0 null sphere 0.9775016040968 -1.4670642061732 -0.25617123640557 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3061331135475 -1.3104445342247 -0.2539928759385 0.05 ShinyColor 1 1 1 50 0 null sphere 0.98025789693267 -1.331205643166 -0.30876308196758 0.05 ShinyColor 1 1 1 50 0 null sphere 0.41481775855295 -1.3122227876672 -0.24399020032442 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0263591174296 -1.1145699175331 -0.255771129381 0.05 ShinyColor 1 1 1 50 0 null sphere 0.50324141098138 -1.1054119123042 -0.25128103943868 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6360419366852 -0.56277787432457 -0.27519854824034 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2747913966233 -0.5357928783346 -0.26083915169213 0.05 ShinyColor 1 1 1 50 0 null sphere 2.864272962928 -0.52436759996652 -0.23634371052166 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4152631453048 -0.34289683615914 -0.23412089371853 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6358196550049 -0.39202108750827 -0.29018033349343 0.05 ShinyColor 1 1 1 50 0 null sphere 3.035518769441 -0.31084381785803 -0.24785790156187 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4482139168209 -0.18458782344035 -0.26199501642976 0.05 ShinyColor 1 1 1 50 0 null sphere -0.78834852064424 0.022223051922686 -0.27884396779747 0.05 ShinyColor 1 1 1 50 0 null sphere 0.96714327779422 0.13545333987403 -0.25923872359388 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6844018038276 0.13371954276759 -0.28128906628091 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7481077334053 0.2376140001458 -0.23269829096453 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7927879979307 0.18582236863291 -0.25634906174982 0.05 ShinyColor 1 1 1 50 0 null sphere 1.000396617169 0.25228459104645 -0.24096716947217 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8105783354581 0.40494764908528 -0.29253651930474 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2207666750311 0.57357053177058 -0.26328425017558 0.05 ShinyColor 1 1 1 50 0 null sphere -0.21517297978962 0.91912963198488 -0.23652153586591 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2391732449436 1.0808617825805 -0.28240047468248 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4380708924875 1.0693475915403 -0.26608499934752 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0661125317544 1.2707792502397 -0.25128103943868 0.05 ShinyColor 1 1 1 50 0 null sphere 4.3321322670417 1.437979530171 -0.257905033512 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9158509392542 1.424464804008 -0.25154777745506 0.05 ShinyColor 1 1 1 50 0 null sphere 0.17328648472504 1.4561177152846 -0.2352323021201 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6309669346629 1.6002451567994 -0.25141440844687 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9482962614775 1.6218509361258 -0.27755473405166 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7786064267267 1.6388777128378 -0.2699082442489 0.05 ShinyColor 1 1 1 50 0 null sphere -0.61852531688525 1.6412338986491 -0.25297038020906 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8961926122209 1.6462574646241 -0.25857187855294 0.05 ShinyColor 1 1 1 50 0 null sphere -0.60585526110742 1.7785150644103 -0.24527943407024 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4989394196595 1.9092166924342 -0.29102500387861 0.05 ShinyColor 1 1 1 50 0 null sphere -0.61159012845949 1.9728337093397 -0.24661312415211 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2649118167413 2.1168277818464 -0.2752430045764 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9711451714311 2.1236296012639 -0.27653223832222 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4117510947559 2.1303869643455 -0.25030300004531 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7311348629143 2.2251678728308 -0.30356169064826 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5358381785914 2.3108352324234 -0.26248403612645 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2044614729724 2.250863635075 -0.24345672429167 0.05 ShinyColor 1 1 1 50 0 null sphere -0.76007429090845 2.5691710012829 -0.26199501642976 0.05 ShinyColor 1 1 1 50 0 null sphere -0.87183751976973 2.761089004065 -0.25897198557751 0.05 ShinyColor 1 1 1 50 0 null sphere -2.720287516915 3.0489437800701 -0.24479041437355 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0186776211757 3.2202784992552 -0.25954991794632 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8397408685238 3.230770194566 -0.25056973806168 0.05 ShinyColor 1 1 1 50 0 null sphere -0.73944655097542 -2.446881852992 -0.25608232373344 0.05 ShinyColor 1 1 1 50 0 null sphere -0.73428961599216 -2.453283565385 -0.2644401149132 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3499131546842 -2.4614190748845 -0.24652421147999 0.05 ShinyColor 1 1 1 50 0 null sphere -1.297640306577 -2.3489890009823 -0.25999448130695 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0898069354845 -2.3549461500146 -0.22594092788302 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8731642301405 -2.3811753882916 -0.25319266188937 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5687725205114 -2.3426762012614 -0.23585469082497 0.05 ShinyColor 1 1 1 50 0 null sphere -0.37041450532009 -2.3264496385985 -0.2380775076281 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3079900063859 -2.3166247883287 -0.24034478076729 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7255247380767 -2.3505449727445 -0.23229818393997 0.05 ShinyColor 1 1 1 50 0 null sphere 3.550678791734 -2.1843671885426 -0.22651886025184 0.05 ShinyColor 1 1 1 50 0 null sphere -2.885131611035 -2.1494689647335 -0.2301198234729 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0629569552852 -1.9680426572622 -0.22758581231734 0.05 ShinyColor 1 1 1 50 0 null sphere 0.061345430519512 -1.8509446680734 -0.26097252070032 0.05 ShinyColor 1 1 1 50 0 null sphere 0.13505403571124 -1.7675001252839 -0.23349850501366 0.05 ShinyColor 1 1 1 50 0 null sphere 0.99430609912844 -1.6701407493069 -0.23132014454659 0.05 ShinyColor 1 1 1 50 0 null sphere -3.239759803806 -1.6423110829318 -0.22491843215358 0.05 ShinyColor 1 1 1 50 0 null sphere 0.97554552531004 -1.6102580646307 -0.27835494810078 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7539323368207 -1.5834508939849 -0.23336513600547 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2672338194927 -1.4766223184266 -0.26368435720014 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5076886913702 -1.3005307712828 -0.24625747346361 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3294624167041 -0.44563542879972 -0.28533459286261 0.05 ShinyColor 1 1 1 50 0 null sphere -3.231891032323 -0.34583095433927 -0.23176470790722 0.05 ShinyColor 1 1 1 50 0 null sphere 0.81239077196044 -0.34645334304414 -0.25314820555331 0.05 ShinyColor 1 1 1 50 0 null sphere 1.503464516053 -0.18218718129298 -0.252925923873 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1558245945374 0.19551384989455 -0.25088093241412 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7966985087216 0.36102478905547 -0.25843850954476 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8405324560793 0.54236218385466 -0.23038656148928 0.05 ShinyColor 1 1 1 50 0 null sphere 4.1217648847936 0.75721965604503 -0.23803305129204 0.05 ShinyColor 1 1 1 50 0 null sphere 4.3480920916881 1.0633015298358 -0.25959437428238 0.05 ShinyColor 1 1 1 50 0 null sphere -0.086294061544257 1.1220283497744 -0.24132282016067 0.05 ShinyColor 1 1 1 50 0 null sphere -2.134753114635 1.1840893949178 -0.23300948531697 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9594173252043 1.4539838111536 -0.22242887733408 0.05 ShinyColor 1 1 1 50 0 null sphere -0.66658261616888 1.4176629845905 -0.23465436975128 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0600228371051 1.4783458833159 -0.23705501189866 0.05 ShinyColor 1 1 1 50 0 null sphere 0.228679079459 1.5463196211555 -0.296982152911 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0607341384821 1.6272746091254 -0.22949743476803 0.05 ShinyColor 1 1 1 50 0 null sphere 0.75744274058711 1.9406473220304 -0.25959437428238 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2111649298329 2.0459643821626 -0.23874435266904 0.05 ShinyColor 1 1 1 50 0 null sphere -0.61888096757375 2.1798668663831 -0.22185094496527 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0803830156305 2.2241453771014 -0.24430139467686 0.05 ShinyColor 1 1 1 50 0 null sphere -0.66587131479188 2.2648229245986 -0.28657937027236 0.05 ShinyColor 1 1 1 50 0 null sphere -0.95723814134591 2.876897759508 -0.23981130473454 0.05 ShinyColor 1 1 1 50 0 null sphere -1.494492962662 -0.33791772652013 -0.2304754741614 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3591678756875 -0.11381333642876 -0.24394574398836 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4727546377187 0.82950565848275 -0.23838870198054 0.05 ShinyColor 1 1 1 50 0 null sphere 4.1246545466377 1.6145600970115 -0.24350118062773 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3138668692398 3.2561992187938 -0.25617123640557 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0693944975207 -2.4074490829045 -0.2391444596936 0.05 ShinyColor 1 1 1 50 0 null sphere 0.99857390739045 -1.2852377916773 -0.22287344069471 0.05 ShinyColor 1 1 1 50 0 null sphere 0.44816001059987 -1.2401590669098 -0.23403198104641 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6145180903198 0.010531035538232 -0.23541012746435 0.05 ShinyColor 1 1 1 50 0 null sphere -0.55913165190567 0.36658183106329 -0.23398752471035 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4061956995306 0.92126353611588 -0.24061151878367 0.05 ShinyColor 1 1 1 50 0 null sphere 3.250153959951 0.91606214479656 -0.24114499481642 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2973299356158 1.0018628733973 -0.23469882608735 0.05 ShinyColor 1 1 1 50 0 null sphere 1.630698549864 2.1325653248125 -0.2247850631454 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1752442102943 -2.4378572167713 -0.21842780708845 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1370109378893 0.48705850179284 -0.22936406575984 0.05 ShinyColor 1 1 1 50 0 null sphere -0.42727415914411 0.5708142389347 -0.22131746893252 0.05 ShinyColor 1 1 1 50 0 null sphere 4.3242190392225 0.94193573238497 -0.21873900144089 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1142064842717 1.2546860565851 -0.23429871906278 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7340689810944 2.3050559087353 -0.22011714785883 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0856288632859 2.3110575141037 -0.23945565404604 0.05 ShinyColor 1 1 1 50 0 null sphere -2.354322958448 3.1845356050609 -0.22349582939958 0.05 ShinyColor 1 1 1 50 0 null sphere 2.498308404461 -2.4576847426552 -0.20806948078587 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2737227977753 -0.55170824664499 -0.21482684386738 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0921631212958 -0.4162053343263 -0.21158153133482 0.05 ShinyColor 1 1 1 50 0 null sphere 0.79207422637985 -0.39202108750827 -0.20540210062212 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7585566191625 0.0050629062025363 -0.21078131728569 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0439279966679 0.52684692256883 -0.21318195943307 0.05 ShinyColor 1 1 1 50 0 null sphere 3.3599166536895 0.72227697589985 -0.20482416825331 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2665138916221 0.7477504564637 -0.22731907430096 0.05 ShinyColor 1 1 1 50 0 null sphere 4.4818167505643 1.243260778217 -0.21669400998201 0.05 ShinyColor 1 1 1 50 0 null sphere 4.32244078578 1.5795285041942 -0.20660242169581 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0612581646299 2.0817961890291 -0.19940049525367 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8608584515448 2.2671346540739 -0.22358474207171 0.05 ShinyColor 1 1 1 50 0 null sphere -3.5979445034621 2.5633916775948 -0.21398217348219 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4680430894873 2.6548383608755 -0.20326819649112 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2725224767016 3.1197182670817 -0.2070914413925 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2000055660899 -0.70406011033139 -0.22260670267833 0.05 ShinyColor 1 1 1 50 0 null sphere -1.503028579186 -0.52587911539264 -0.21629390295745 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4446504302248 0.0415615581099 -0.20433514855662 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0338380551643 0.14465580143898 -0.20766937376131 0.05 ShinyColor 1 1 1 50 0 null sphere 4.436115637092 1.3873882197318 -0.22007269152276 0.05 ShinyColor 1 1 1 50 0 null sphere -2.6770315019261 1.5524545955321 -0.19579953203261 0.05 ShinyColor 1 1 1 50 0 null sphere -2.6724080429756 -2.2863500234701 -0.19593290104079 0.05 ShinyColor 1 1 1 50 0 null sphere 0.26735609183343 -1.5709586635514 -0.19966723327005 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3536466635221 -0.46057275771674 -0.20166776839286 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1885016483259 -0.19934732701312 -0.19926712624549 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5589904797951 -0.11532485185488 -0.20642459635156 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2897200990467 0.59766586591649 -0.1915317237706 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1343452045081 1.1169603274633 -0.19646637707354 0.05 ShinyColor 1 1 1 50 0 null sphere 0.088774989870113 1.3446212244397 -0.21287076508063 0.05 ShinyColor 1 1 1 50 0 null sphere -0.64933355777661 1.5619682514495 -0.1883308675741 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6535062970467 1.7278348412989 -0.19282095751641 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9496744078955 1.730724503143 -0.19699985310629 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1912476678856 2.0802846736029 -0.19499931798348 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0186784445669 2.6321656294836 -0.19837799952423 0.05 ShinyColor 1 1 1 50 0 null sphere -3.5882085658644 2.6842684553489 -0.19597735737686 0.05 ShinyColor 1 1 1 50 0 null sphere -0.81173255341315 2.7004061053396 -0.19873365021273 0.05 ShinyColor 1 1 1 50 0 null sphere -0.64737747898986 0.061077889641365 -0.18424088465634 0.05 ShinyColor 1 1 1 50 0 null sphere -2.6553812662637 0.66528395306765 -0.18788630421347 0.05 ShinyColor 1 1 1 50 0 null sphere 2.974435763691 1.4949725530032 -0.19744441646692 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1971706338581 1.553076984237 -0.18650815779553 0.05 ShinyColor 1 1 1 50 0 null sphere -0.56815628812637 2.5225807610894 -0.19335443354916 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5277384989344 -2.443325346107 -0.081280010335445 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2072972285955 -2.3738400928412 -0.069854731967367 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6447039425063 -2.1841004505262 -0.094216804129651 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4810157131239 -1.9877368141379 -0.15178775933067 0.05 ShinyColor 1 1 1 50 0 null sphere 3.434158734914 -1.827249440952 -0.087548353720266 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1036242295063 -1.1184376187705 -0.10030732217022 0.05 ShinyColor 1 1 1 50 0 null sphere 0.66906354449474 -0.69819187397114 -0.11408878634962 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2723360248637 -0.7242432869038 -0.095283756195152 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3243499380569 -0.56486732211951 -0.13938444156921 0.05 ShinyColor 1 1 1 50 0 null sphere 2.897704127647 -0.52103337476183 -0.098128961703156 0.05 ShinyColor 1 1 1 50 0 null sphere -0.74798216749943 -0.1851212994731 -0.11520019475118 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1756093108678 -0.11852570805139 -0.17788362859939 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5901115618215 -0.08856213754522 -0.17517179209958 0.05 ShinyColor 1 1 1 50 0 null sphere -0.56682259804449 0.23983681694893 -0.18192915518109 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1636933660205 0.38929901879126 -0.1597009871498 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2681143197203 0.52057857918401 -0.14329659914272 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1172364948351 0.5380499192566 -0.099462651785033 0.05 ShinyColor 1 1 1 50 0 null sphere 3.8596947837048 0.53489351939615 -0.09697309696553 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8221275329494 0.74352710453776 -0.10457513043223 0.05 ShinyColor 1 1 1 50 0 null sphere 4.1704001164461 0.75579705329103 -0.14516376525735 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4500741032244 0.87311732416013 -0.14187399638872 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0890441980603 1.0520096204759 -0.086792596007203 0.05 ShinyColor 1 1 1 50 0 null sphere 4.517826382775 1.0653465212946 -0.10119644889147 0.05 ShinyColor 1 1 1 50 0 null sphere -0.79835119625832 1.1306528789706 -0.13169349543039 0.05 ShinyColor 1 1 1 50 0 null sphere 0.046630383282804 1.2079179910473 -0.11275509626774 0.05 ShinyColor 1 1 1 50 0 null sphere 0.13029720775255 1.2951857787381 -0.08274706942551 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5148469848675 1.3125237498025 -0.16690291359194 0.05 ShinyColor 1 1 1 50 0 null sphere 4.485862277146 1.4241091533195 -0.091638336638022 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8942451599278 1.4793683790453 -0.10293024599791 0.05 ShinyColor 1 1 1 50 0 null sphere -3.195659118432 1.477012193234 -0.1832183889269 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6013590148453 1.6108702211183 -0.11262172725955 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3878430358392 1.602823624291 -0.1023523136291 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1221283385845 1.6601722978117 -0.17583863714052 0.05 ShinyColor 1 1 1 50 0 null sphere 4.3432018947213 1.6706639931225 -0.12466939433251 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7464192160261 1.6556377515333 -0.078123610475003 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6853806666123 1.7682456507798 -0.14160725837234 0.05 ShinyColor 1 1 1 50 0 null sphere 0.58050652305811 1.7582874315018 -0.13182686443858 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3604048499949 1.9368240771291 -0.1258697154062 0.05 ShinyColor 1 1 1 50 0 null sphere -0.52819004200613 2.0148894032549 -0.15169884665854 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7256128273576 2.1147827903875 -0.17788362859939 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8961123260424 2.3713403058045 -0.088704218457893 0.05 ShinyColor 1 1 1 50 0 null sphere -0.54254943855433 2.4084168900807 -0.19397682225404 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4632418051925 2.7435287513203 -0.10204111927666 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2616323211488 2.6947156943236 -0.091327142285584 0.05 ShinyColor 1 1 1 50 0 null sphere -0.71121677757569 2.7111200823307 -0.16192380395293 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5835842835226 3.1401237253344 -0.11502236940693 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2807399191621 -2.4179407782153 -0.099107001096533 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6605373778556 -2.3356521001635 -0.098128961703156 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6586179523026 -0.88566424314696 -0.1189789833165 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3939771868245 -0.48489037354296 -0.16521357282156 0.05 ShinyColor 1 1 1 50 0 null sphere -0.91727189522567 -0.37237138696862 -0.1211128874475 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2956858745728 -0.34191879676576 -0.09039355922827 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6664414440583 -0.028101520500135 -0.095995057572153 0.05 ShinyColor 1 1 1 50 0 null sphere -0.6797416916434 -0.038815497491213 -0.14614180465072 0.05 ShinyColor 1 1 1 50 0 null sphere 3.8327542440509 -0.011786045165174 -0.16405770808394 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2821250452911 0.17897609287928 -0.11631160315274 0.05 ShinyColor 1 1 1 50 0 null sphere -0.53730359089895 0.18306607579704 -0.092305181678961 0.05 ShinyColor 1 1 1 50 0 null sphere 3.8790777462281 0.14452243243079 -0.17245995559976 0.05 ShinyColor 1 1 1 50 0 null sphere 0.92135325164978 0.18231031808397 -0.088570849449705 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0209354444299 0.38987695116008 -0.10639784021079 0.05 ShinyColor 1 1 1 50 0 null sphere 4.5396099874457 0.94366952949141 -0.095995057572153 0.05 ShinyColor 1 1 1 50 0 null sphere 4.5808210109757 1.2722018529937 -0.075722968327625 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3819303431428 2.0353393178437 -0.091060404269209 0.05 ShinyColor 1 1 1 50 0 null sphere -0.48640108610732 2.326172668365 -0.17130409086213 0.05 ShinyColor 1 1 1 50 0 null sphere -0.34098441084668 2.360981979502 -0.16752530229682 0.05 ShinyColor 1 1 1 50 0 null sphere -0.39482103381844 2.4286000666531 -0.18099557212377 0.05 ShinyColor 1 1 1 50 0 null sphere -0.36103421841089 2.5671704661601 -0.12506950135707 0.05 ShinyColor 1 1 1 50 0 null sphere -0.55357460989785 2.599045659117 -0.17530516110776 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8016870682456 2.7688244065399 -0.15258797337979 0.05 ShinyColor 1 1 1 50 0 null sphere -0.72517606709934 -2.4455037065741 -0.079012737196254 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4089058892479 -2.4196301189857 -0.091460511293772 0.05 ShinyColor 1 1 1 50 0 null sphere -2.011075587709 -2.4066488688554 -0.078212523147128 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8513439722362 -2.3653933889893 -0.069854731967367 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7862068134109 -2.3954014158316 -0.087815091736642 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0012421109455 -2.3661936030385 -0.05238339189478 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4927591655555 -2.307555695772 -0.086036838294139 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2914164195282 -2.2965749807645 -0.096706358949154 0.05 ShinyColor 1 1 1 50 0 null sphere -0.37045896165615 -2.3513007304575 -0.082658156753385 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2192996159411 -2.2030388496889 -0.073100044499934 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7937293840904 -2.2506071292758 -0.13565010933996 0.05 ShinyColor 1 1 1 50 0 null sphere -0.1782742208577 -2.1919247656732 -0.094350173137838 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1023008127006 -2.0054304358908 -0.080390883614194 0.05 ShinyColor 1 1 1 50 0 null sphere -0.021787917917479 -2.0095204188085 -0.087237159367828 0.05 ShinyColor 1 1 1 50 0 null sphere 0.22996831320481 -1.6568927611603 -0.079412844220817 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0382289591583 -1.6621386088157 -0.096395164596716 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2891507931716 -1.6472012798987 -0.078568173835629 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0483650037805 -1.4696871300008 -0.075011666950624 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3559686662736 -1.3498773043122 -0.12231320852119 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5432093038842 -1.2939067772095 -0.072122005106557 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5441873432776 -1.12092717359 -0.07927947521263 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2177436441789 -0.89291062592516 -0.060163250705728 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3399643852911 -0.52481216332714 -0.097995592694969 0.05 ShinyColor 1 1 1 50 0 null sphere 0.77638113974976 -0.33342763657781 -0.096750815285217 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4198507744129 -0.17342928308865 -0.063097368885857 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4726562751616 -0.38135156685325 -0.090349102892208 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3600570024088 -0.1490227545903 -0.12169081981631 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2293125648313 -0.16862799879389 -0.074300365573623 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7784730577185 -0.19716896654606 -0.11373313566112 0.05 ShinyColor 1 1 1 50 0 null sphere 0.82679462484471 -0.13399651300116 -0.091371598621647 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5993584797225 -0.17516308019509 -0.1110212991613 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3231137871408 0.019600128094995 -0.11004325976792 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4024169109653 -0.028946190885324 -0.1308488250452 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2393066139518 -0.0037839046739132 -0.081324466671508 0.05 ShinyColor 1 1 1 50 0 null sphere -3.147335081132 0.0065744216286637 -0.080301970942069 0.05 ShinyColor 1 1 1 50 0 null sphere -0.60109843314873 0.01813306900493 -0.077234483753752 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0546880767776 0.18288825045279 -0.079590669565068 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7674462395925 0.16586147374082 -0.076967745737377 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2451373736871 0.34257540958951 -0.063275194230107 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9462068136826 0.19311320774718 -0.081769030032133 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8520021907835 0.3657371606781 -0.084391953859824 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2646911818435 0.36520368464535 -0.11342194130868 0.05 ShinyColor 1 1 1 50 0 null sphere 1.880098595175 0.54471836966598 -0.11880115797225 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8473437253818 0.48039005138345 -0.085058798900763 0.05 ShinyColor 1 1 1 50 0 null sphere 3.3641400056155 0.55872211552569 -0.057629239550162 0.05 ShinyColor 1 1 1 50 0 null sphere -0.35169838783775 0.54791922586248 -0.073411238852372 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4169541328578 0.72703380385855 -0.07581188099975 0.05 ShinyColor 1 1 1 50 0 null sphere -2.6753421611558 0.67928769892736 -0.075233948630937 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7808292435298 0.72112111116223 -0.067943109516676 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4338014374429 0.78918376167401 -0.14383007517547 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9506524472888 0.7758913171913 -0.13911770355284 0.05 ShinyColor 1 1 1 50 0 null sphere -0.24775947412348 0.7484617578407 -0.074522647253936 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1711105944318 0.85208947720254 -0.15272134238798 0.05 ShinyColor 1 1 1 50 0 null sphere -0.92354023861049 0.90348100169086 -0.076389813368563 0.05 ShinyColor 1 1 1 50 0 null sphere 4.358628243335 0.92259722619776 -0.10244122630122 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4023358013956 0.92121907977982 -0.080879903310882 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2966186342388 1.0109764222901 -0.081991311712446 0.05 ShinyColor 1 1 1 50 0 null sphere -0.10816657888704 1.0060417689872 -0.13711716843002 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5043552895568 1.0199566021748 -0.15552209155992 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2003706666633 1.0995779000628 -0.074166996565435 0.05 ShinyColor 1 1 1 50 0 null sphere -0.025344424802484 1.0868189316129 -0.088793131130018 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0324068259166 1.2256116128002 -0.080213058269944 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6101613693857 1.2592206028635 -0.099151457432595 0.05 ShinyColor 1 1 1 50 0 null sphere 4.6693335760762 1.2628660224206 -0.08136892300757 0.05 ShinyColor 1 1 1 50 0 null sphere -0.78585896582474 1.2599763605765 -0.071544072737744 0.05 ShinyColor 1 1 1 50 0 null sphere -0.72979952604985 1.4390909385726 -0.08621466363839 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0654020537687 1.4247759983605 -0.1016410122521 0.05 ShinyColor 1 1 1 50 0 null sphere 4.4309587021088 1.4384685498677 -0.075145035958811 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2693677236237 1.4151289734349 -0.092972026719899 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2788813795411 1.6462130082881 -0.095283756195152 0.05 ShinyColor 1 1 1 50 0 null sphere 4.4894632403671 1.6008230891682 -0.091638336638022 0.05 ShinyColor 1 1 1 50 0 null sphere 2.852892140896 1.5892644417919 -0.12173527615238 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9990723769721 1.6089585986677 -0.074389278245748 0.05 ShinyColor 1 1 1 50 0 null sphere 0.39939140993924 1.5818402336695 -0.095817232227903 0.05 ShinyColor 1 1 1 50 0 null sphere 4.185292989027 1.683823068597 -0.10239676996516 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0662911804899 1.7517523501006 -0.080613165294507 0.05 ShinyColor 1 1 1 50 0 null sphere 3.8346214101655 1.7503742036827 -0.095683863219715 0.05 ShinyColor 1 1 1 50 0 null sphere 4.1131403555975 1.7781149573857 -0.077234483753752 0.05 ShinyColor 1 1 1 50 0 null sphere -0.5461504017754 1.8006098634334 -0.073944714885122 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5510336190312 1.8264834510218 -0.089059869146394 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5405505502141 1.9587410508079 -0.079368387884755 0.05 ShinyColor 1 1 1 50 0 null sphere 0.721833215401 1.811723947449 -0.070566033344368 0.05 ShinyColor 1 1 1 50 0 null sphere 0.90410419325751 1.9340677842932 -0.094616911154214 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1902259955474 1.975189895151 -0.073944714885122 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2358818292924 2.0300045575162 -0.081813486368196 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4386027217377 2.0460532948348 -0.054072732665157 0.05 ShinyColor 1 1 1 50 0 null sphere 1.578818005679 2.0941105941184 -0.12298005356213 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7999882775903 2.0515658805065 -0.064208777287421 0.05 ShinyColor 1 1 1 50 0 null sphere -2.166050375223 2.1151828974121 -0.079901863917506 0.05 ShinyColor 1 1 1 50 0 null sphere -0.48240001586169 2.2118754283481 -0.1561444802648 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2546082200509 2.3125245731938 -0.088704218457893 0.05 ShinyColor 1 1 1 50 0 null sphere -3.086918920423 2.3697398777063 -0.069098974254303 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0393053611087 2.210363912922 -0.079323931548692 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0334371247484 2.331151778004 -0.069098974254303 0.05 ShinyColor 1 1 1 50 0 null sphere -0.16933849730912 2.3375979467331 -0.12160190714419 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3532560063825 2.4020151776877 -0.083858477827074 0.05 ShinyColor 1 1 1 50 0 null sphere -0.0095624255002743 2.3949466202538 -0.083236089122198 0.05 ShinyColor 1 1 1 50 0 null sphere -3.5890087799135 2.4372690521853 -0.084969886228638 0.05 ShinyColor 1 1 1 50 0 null sphere -0.19592338627454 2.5331169127362 -0.10862065701392 0.05 ShinyColor 1 1 1 50 0 null sphere -0.53494740508764 2.7244125268134 -0.15049852558485 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0617121778755 2.6835571539719 -0.080346427278131 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6379107495824 2.7523311058607 -0.095861688563966 0.05 ShinyColor 1 1 1 50 0 null sphere -0.91496016575042 2.9021934147276 -0.094083435121463 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1577806733241 3.0252485529488 -0.092038443662585 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3718387548566 3.2048521506415 -0.078790455515942 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1878784362298 3.2304590002136 -0.076967745737377 0.05 ShinyColor 1 1 1 50 0 null sphere -2.015387852307 3.2227235977387 -0.072699937475371 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6656498565028 3.2072083364528 -0.087103790359641 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4993300767992 -2.4587961510568 -0.084080759507386 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5741056340564 -2.4605299481632 -0.066476050426612 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6527488925511 -2.4422583940415 -0.08136892300757 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3712077396581 -2.4234533638871 -0.091682792974085 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5559238159981 -2.4585738693765 -0.091504967629834 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1929020022048 -2.4396799265499 -0.07910164986838 0.05 ShinyColor 1 1 1 50 0 null sphere -0.91460451506192 -2.3847318951766 -0.079412844220817 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7160999948315 -2.4268765017639 -0.089015412810331 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3793074193152 -2.4284769298621 -0.08657031432689 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4223333495213 -2.4229198878543 -0.085281080581076 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6315004106957 -2.3625037271453 -0.072210917778682 0.05 ShinyColor 1 1 1 50 0 null sphere -0.53481403607945 -2.4249204229771 -0.072788850147496 0.05 ShinyColor 1 1 1 50 0 null sphere 3.062548221767 -2.4104721137568 -0.073366782516309 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5499752934593 -2.3822867966931 -0.090749209916771 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8952145728275 -2.3883328583976 -0.071899723426244 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1144802019992 -2.318225216427 -0.067809740508489 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3089235894432 -2.3092005802063 -0.081680117360008 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7024605261539 -2.3329402636637 -0.075233948630937 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8946452669524 -2.2156644491306 -0.074744928934248 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1639070212071 -2.1264850389891 -0.12053495507869 0.05 ShinyColor 1 1 1 50 0 null sphere -3.014499548977 -2.122128318055 -0.077323396425877 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5742406498471 -2.0101428075134 -0.067720827836364 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1256745721933 -2.0013849093091 -0.069454624942804 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1621390410408 -1.8716613206785 -0.12684775479957 0.05 ShinyColor 1 1 1 50 0 null sphere 0.074104398969468 -1.8809971512517 -0.08328054545826 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0730827266313 -1.8201808835181 -0.083191632786135 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2585562074669 -1.8190694751165 -0.071855267090182 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0722397030287 -1.7901284003398 -0.080124145597818 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2328246153803 -1.7872831948318 -0.068565498221552 0.05 ShinyColor 1 1 1 50 0 null sphere 0.1221616982531 -1.8140903654775 -0.075678511991562 0.05 ShinyColor 1 1 1 50 0 null sphere 2.878498990468 -1.6811659206505 -0.064297689959546 0.05 ShinyColor 1 1 1 50 0 null sphere 2.758377970427 -1.5875408769027 -0.10626447120261 0.05 ShinyColor 1 1 1 50 0 null sphere 0.27815898149663 -1.5670020496418 -0.080479796286319 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3380083065043 -1.476933512779 -0.075500686647312 0.05 ShinyColor 1 1 1 50 0 null sphere 0.34417664054953 -1.4639522626488 -0.091282685949522 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6790678668914 -1.4795564366067 -0.060652270402416 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5863764062009 -1.3993127500138 -0.12302450989819 0.05 ShinyColor 1 1 1 50 0 null sphere 0.41375080648744 -1.3046207542005 -0.07581188099975 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3879772282386 -1.2866603944313 -0.067009526459363 0.05 ShinyColor 1 1 1 50 0 null sphere 0.44615947547705 -1.2373138614018 -0.14160725837234 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0699707831069 -1.2939067772095 -0.081769030032133 0.05 ShinyColor 1 1 1 50 0 null sphere 0.49675078591625 -1.0854510174121 -0.08621466363839 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4028701008196 -1.1079459234598 -0.073633520532684 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1371887632335 -0.95955067368294 -0.11857887629193 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5451653826709 -0.89664495815441 -0.031177719592937 0.05 ShinyColor 1 1 1 50 0 null sphere 0.57517176273061 -0.92109594298882 -0.069632450287054 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4056263936555 -0.90895936324374 -0.073855802212997 0.05 ShinyColor 1 1 1 50 0 null sphere 0.62629654920255 -0.82898241466719 -0.11946800301319 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4074935597701 -0.75180621526259 -0.038424102371135 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7203233467574 -0.7444264634762 -0.069365712270678 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8111476413332 -0.66258234878502 -0.1467641933556 0.05 ShinyColor 1 1 1 50 0 null sphere 0.7092520722953 -0.5407719879736 -0.077990241466815 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4272663560417 -0.51258667090994 -0.059051842304164 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3563226701795 -0.45590484243017 -0.13253816581558 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2729225837262 -0.49733814764048 -0.062652805525231 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1058556728031 -0.50809658096762 -0.082835982097635 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0510784870629 -0.34903181053577 -0.11911235232469 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4097147297907 -0.35912339882197 -0.085325536917138 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0805600175835 -0.40664722207285 -0.14845353412598 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5125780649458 -0.27390060259004 -0.11635605948881 0.05 ShinyColor 1 1 1 50 0 null sphere 3.066060272316 -0.16453801587614 -0.088882043802143 0.05 ShinyColor 1 1 1 50 0 null sphere -0.83707266496881 -0.22731036239648 -0.14040693729865 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6002904159972 -0.17271798171165 -0.079501756892943 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4422053317413 -0.13626378614035 -0.056651200156786 0.05 ShinyColor 1 1 1 50 0 null sphere 0.86653858928464 0.017599592972179 -0.091238229613459 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9469625713956 0.012531570661047 -0.072122005106557 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9196741841556 0.37289463078418 -0.087370528376016 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9129090179717 0.38040775157875 -0.079857407581443 0.05 ShinyColor 1 1 1 50 0 null sphere -0.48306686090263 0.32634884692667 -0.11022108511217 0.05 ShinyColor 1 1 1 50 0 null sphere -0.43260891947162 0.38743185267663 -0.058029346574725 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0859750640894 0.53387102366671 -0.071143965713181 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7564749744699 0.56854696579551 -0.089015412810331 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1676858097724 0.59046393947436 -0.12902611526664 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0391711687092 0.68297757482055 -0.064386602631671 0.05 ShinyColor 1 1 1 50 0 null sphere -0.2991509986118 0.6672400318544 -0.087281615703891 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2485963414063 0.72605576446517 -0.075900793671875 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1747560139889 0.71769797328541 -0.14187399638872 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5712698784333 0.75766421940565 -0.095283756195152 0.05 ShinyColor 1 1 1 50 0 null sphere -0.97902174601657 0.77313502435543 -0.085458905925326 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4471827945978 0.84150886921965 -0.071944179762307 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6115823253571 0.8795634928892 -0.054428383353657 0.05 ShinyColor 1 1 1 50 0 null sphere 4.1617311309139 0.90730424659224 -0.1099543470958 0.05 ShinyColor 1 1 1 50 0 null sphere -2.485069042808 0.85760206287429 -0.077679047114378 0.05 ShinyColor 1 1 1 50 0 null sphere -0.16360362995705 0.89032192621634 -0.078745999179879 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1036258762888 0.9131724829525 -0.067676371500301 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6234982702044 1.0724595350647 -0.094394629473901 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1272399938404 1.1815109274261 -0.12249103386544 0.05 ShinyColor 1 1 1 50 0 null sphere -2.043084149674 1.26953447283 -0.072877762819621 0.05 ShinyColor 1 1 1 50 0 null sphere 0.2124080604601 1.4081493286731 -0.095283756195152 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0081781227625 1.3640930996351 -0.12613645342257 0.05 ShinyColor 1 1 1 50 0 null sphere -1.944346627279 1.4284214179176 -0.078568173835629 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6278994474746 1.4493603522031 -0.082835982097635 0.05 ShinyColor 1 1 1 50 0 null sphere 2.9030388879746 1.4587850954483 -0.068209847533052 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9053139642161 1.5545884996631 -0.080968815983007 0.05 ShinyColor 1 1 1 50 0 null sphere 0.30216540297041 1.4836806436434 -0.067631915164238 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7505178254376 1.5195569068458 -0.05585098610766 0.05 ShinyColor 1 1 1 50 0 null sphere -2.6544476832064 1.5430743086229 -0.12484721967676 0.05 ShinyColor 1 1 1 50 0 null sphere -0.70108073295343 1.6026457989468 -0.064920078664422 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5394391418125 1.5685477891868 -0.074922754278499 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1904124473853 1.6226066938389 -0.078168066811066 0.05 ShinyColor 1 1 1 50 0 null sphere 0.5160448357674 1.6602167541478 -0.065542467369298 0.05 ShinyColor 1 1 1 50 0 null sphere -0.63910860048222 1.7131642503983 -0.082835982097635 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7987896032991 1.6874684881541 -0.060919008418792 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6364795203347 1.7609103553295 -0.079946320253568 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9010025230093 1.777625937689 -0.079057193532317 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9722137702792 1.8529794273151 -0.069321255934616 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7355360401845 1.820926409014 -0.078523717499566 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5964766209808 1.8681390379124 -0.1225354902015 0.05 ShinyColor 1 1 1 50 0 null sphere -0.33320455203573 1.9929724295761 -0.1103099977843 0.05 ShinyColor 1 1 1 50 0 null sphere -0.36081193673058 2.183378916932 -0.085636731269576 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0519215106655 1.9779017316509 -0.073544607860559 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9933733394624 2.0279151097212 -0.081769030032133 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4508384874311 2.3378646847494 -0.076034162680063 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7348691951435 2.3937462991801 -0.079946320253568 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5635789322945 2.4024152847123 -0.077990241466815 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1920573318196 2.3913901133688 -0.06540909836111 0.05 ShinyColor 1 1 1 50 0 null sphere -0.033746672318308 2.4929728412717 -0.085325536917138 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6802331815139 2.5055984407135 -0.07790132879469 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8992687259029 2.7062298853638 -0.080968815983007 0.05 ShinyColor 1 1 1 50 0 null sphere -0.35378783563269 2.7320590166162 -0.10310807134216 0.05 ShinyColor 1 1 1 50 0 null sphere -0.20192499164298 2.7727810204495 -0.0936833280969 0.05 ShinyColor 1 1 1 50 0 null sphere -2.79204004332 2.9005929866293 -0.07616753168825 0.05 ShinyColor 1 1 1 50 0 null sphere -0.15506801343304 2.9028158034325 -0.081635661023946 0.05 ShinyColor 1 1 1 50 0 null sphere -0.033346565293745 2.9193535604477 -0.08639248898264 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0927410536646 2.9838152477385 -0.074211452901498 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7107738609976 3.0861981896905 -0.075189492294874 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3036863682815 3.0897991529116 -0.083502827138573 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4667077526229 3.1389234042607 -0.06887669257399 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5450842731012 3.1882699372902 -0.13196023344677 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8424971613597 3.2183224204685 -0.080346427278131 0.05 ShinyColor 1 1 1 50 0 null sphere 2.9581647446921 -1.7493174838344 -0.074700472598186 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9370043521176 -0.14453266464799 -0.044914727436269 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5991806543782 0.88494270955277 -0.082702613089447 0.05 ShinyColor 1 1 1 50 0 null sphere -0.86792536219623 1.0441853053289 -0.060429988722103 0.05 ShinyColor 1 1 1 50 0 null sphere -0.54695061582453 2.9066835046699 -0.05082742013259 0.05 ShinyColor 1 1 1 50 0 null sphere -0.3465414528545 2.91526357753 -0.087681722728454 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0825535729952 0.18733388405904 -0.068387672877302 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2502873289592 0.18991235155067 -0.067631915164238 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1063377127887 0.35195569649871 -0.060163250705728 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1302996779264 0.55232040313268 -0.068609954557615 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1239424218694 0.71174082425303 -0.071232878385306 0.05 ShinyColor 1 1 1 50 0 null sphere 3.951497117674 0.92566471338608 -0.10097416721116 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4447924257266 1.4325558571714 -0.050605138452277 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4362568092026 1.5810844759564 -0.05064959478834 0.05 ShinyColor 1 1 1 50 0 null sphere -0.34454091773168 1.809590043318 -0.063586388582545 0.05 ShinyColor 1 1 1 50 0 null sphere -0.16764915653875 1.8501342218071 -0.070877227696806 0.05 ShinyColor 1 1 1 50 0 null sphere -0.18827689647177 1.9715444755939 -0.070388208000117 0.05 ShinyColor 1 1 1 50 0 null sphere -3.8147580544392 2.5964671916254 -0.058874016959914 0.05 ShinyColor 1 1 1 50 0 null sphere -3.8100456828166 2.7265464309444 -0.047226456911522 0.05 ShinyColor 1 1 1 50 0 null sphere -0.73411179064791 2.8974365867689 -0.05949640566479 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4918264058895 3.1800899714547 -0.054561752361845 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7698040721863 0.89410071478166 -0.089015412810331 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8963704375652 -0.35272168642896 -0.07754567810619 0.05 ShinyColor 1 1 1 50 0 null sphere 2.9019719359091 -0.1620929173927 -0.058518366271413 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0479220872024 0.020978274512934 -0.076701007721001 0.05 ShinyColor 1 1 1 50 0 null sphere 4.12767757749 1.0653909776307 -0.060607814066354 0.05 ShinyColor 1 1 1 50 0 null sphere 2.674577776949 -2.4586183257125 -0.032378040666627 0.05 ShinyColor 1 1 1 50 0 null sphere -0.25522813858199 -2.2776365816018 -0.045670485149333 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2979889775544 -1.7085065673289 -0.021975258027987 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4115749161942 -1.6654283776843 -0.024375900175365 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1684415674855 -1.0642898014463 -0.029088271797997 0.05 ShinyColor 1 1 1 50 0 null sphere 0.61851669039161 -0.8072432663326 -0.058473909935351 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3847319157061 -0.63297442896736 -0.044870271100207 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7230351832572 -0.52787965051546 -0.057495870541974 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3600039195791 -0.65364662523645 -0.031844564633876 0.05 ShinyColor 1 1 1 50 0 null sphere -0.9559489076001 -0.510497223115 -0.03851301504326 0.05 ShinyColor 1 1 1 50 0 null sphere -0.78865971499668 -0.33662849277432 -0.043047561321642 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7549548325502 -0.36303555639548 -0.042869735977391 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5528999617545 -0.29435051717882 -0.048693516001587 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6212309970652 -0.32306931027524 -0.018952227175733 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7821184772757 -0.33676186178251 -0.042113978264328 0.05 ShinyColor 1 1 1 50 0 null sphere 0.78682837872447 -0.19983634670981 -0.036645848928633 0.05 ShinyColor 1 1 1 50 0 null sphere -0.64711074097348 -0.11390224910088 -0.041002569862764 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2972776761774 -0.10118773698699 -0.029621747830748 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4114929832332 0.020133604127745 -0.045670485149333 0.05 ShinyColor 1 1 1 50 0 null sphere 2.9532745477253 0.017021660603366 -0.020908305962486 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7363712606847 0.060633326280739 -0.040291268485763 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9265554663604 0.56223416607463 -0.029088271797997 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9251773199424 0.67213022882128 -0.026287522626056 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7868736584518 0.87685165638938 -0.02064156794611 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7853637898082 1.0715259520073 -0.052161110214467 0.05 ShinyColor 1 1 1 50 0 null sphere 4.3276866334354 1.076994081343 -0.03869084038751 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9583878497637 1.0963325875303 -0.054828490378221 0.05 ShinyColor 1 1 1 50 0 null sphere 2.9584759390446 1.3105232146797 -0.022908841085301 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9064698289537 1.4779457762913 -0.037045955953196 0.05 ShinyColor 1 1 1 50 0 null sphere 4.5503239644367 1.7326805819298 -0.029043815461934 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1954812930877 1.7397491393637 -0.037979539010509 0.05 ShinyColor 1 1 1 50 0 null sphere 4.3926817967589 1.7462397644289 -0.038868665731761 0.05 ShinyColor 1 1 1 50 0 null sphere -2.6750309668033 1.9165075315485 -0.026643173314556 0.05 ShinyColor 1 1 1 50 0 null sphere 0.86080372193257 1.8512011738726 -0.024642638191741 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3828997560426 1.8700506603631 -0.033267167387878 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6550606220263 2.0498765397362 -0.037446062977759 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5521894837688 -0.72717740508393 -0.031711195625688 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6000245013721 -0.58736222816717 -0.028021319732495 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5946461080998 0.7795811930845 -0.027621212707932 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6167923431701 3.1691537127833 -0.016596041364417 0.05 ShinyColor 1 1 1 50 0 null sphere 3.534363316399 -1.8756623909242 -0.017618537093856 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9120198912505 -0.28999379624469 -0.021130587642798 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7972328081457 -0.22388722451966 -0.009082920569844 0.05 ShinyColor 1 1 1 50 0 null sphere 0.93513471582917 0.32070289224673 -0.01179475706966 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2930971338049 0.82199253768818 -0.016462672356229 0.05 ShinyColor 1 1 1 50 0 null sphere -0.077180512651432 0.9687429030307 -0.030822068904437 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7642914865146 1.2212993482021 -0.017840818774169 0.05 ShinyColor 1 1 1 50 0 null sphere 4.3468473142784 1.1843116765981 -0.0026367518407725 0.05 ShinyColor 1 1 1 50 0 null sphere -3.5595342291041 1.4768788242258 -0.018107556790544 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3827313805832 1.7446393363306 -0.0079270558322173 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8358739906777 2.8663616078612 -0.011661388061473 0.05 ShinyColor 1 1 1 50 0 null sphere 3.993419442581 -0.3700152011573 0.071738698391894 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4165165492082 0.11647048437532 -0.01143910638116 0.05 ShinyColor 1 1 1 50 0 null sphere 3.3444458487397 0.41437239233055 -0.034289663117317 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1179391697184 0.64554533985587 -0.017218430069293 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9401607519781 1.1896019805895 -0.019396790536358 0.05 ShinyColor 1 1 1 50 0 null sphere 4.1335902701863 1.2023609490395 -0.0093052022501568 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4995609849731 -2.3233376950742 0.10974886572538 0.05 ShinyColor 1 1 1 50 0 null sphere -1.655113704856 -2.2989756229119 0.092544263669173 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0733511114302 -1.7645215507678 0.040841544828413 0.05 ShinyColor 1 1 1 50 0 null sphere 2.484838134634 -0.71183996914234 0.010344498289496 0.05 ShinyColor 1 1 1 50 0 null sphere 3.791587676857 1.3101675639912 0.00798831247818 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4715106837002 1.8070115758264 0.069338056244516 0.05 ShinyColor 1 1 1 50 0 null sphere -0.55473047463548 1.7121417546689 0.044309139041293 0.05 ShinyColor 1 1 1 50 0 null sphere -0.55072940438984 1.7867839429179 0.12757585648647 0.05 ShinyColor 1 1 1 50 0 null sphere -2.75082901979 1.8925900227468 0.0023868141342971 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3731732683298 2.2626445641316 0.064759053630072 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2070843968001 2.7726921077774 0.003409309863736 0.05 ShinyColor 1 1 1 50 0 null sphere -3.903448444884 2.8501795015344 -0.0009029547343325 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4162411846982 -2.3897999174877 0.098990432398245 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5749503044416 -2.4580848496798 0.096723159259054 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5399195350155 -2.4006028071509 0.089210038464481 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7441074865509 -2.4583960440322 0.084319841497599 0.05 ShinyColor 1 1 1 50 0 null sphere -0.75616213333495 -2.4306997466653 0.086364832956477 0.05 ShinyColor 1 1 1 50 0 null sphere -2.191568312123 -2.4242535779362 0.092055243972485 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4346922109467 -2.4246981412968 0.1013021618735 0.05 ShinyColor 1 1 1 50 0 null sphere 3.633812140171 -2.3790414841606 0.09161068061186 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5381943644028 -2.4093162490192 0.095033818488677 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6815121419835 -2.4223864118216 0.098279131021244 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0784191337414 -2.401358564864 0.098234674685181 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0272576940357 -2.3683719635055 0.10410291104544 0.05 ShinyColor 1 1 1 50 0 null sphere -0.34716384155937 -2.3434764153105 0.10183563790625 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7263780349556 -2.3553907133753 0.091210573587297 0.05 ShinyColor 1 1 1 50 0 null sphere -0.9237625202908 -2.370861518325 0.10334715333238 0.05 ShinyColor 1 1 1 50 0 null sphere 1.838176270268 -2.3666381663991 0.092544263669173 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3608494133555 -2.3514340994657 0.092366438324923 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8975263023028 -2.4271432397802 0.073783689850772 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0971866872709 -2.3030211494936 0.099879559119496 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3222160339259 -2.3019541974281 0.043508924992167 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9945292042 -2.3386751310157 0.11557264574958 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1868917703427 -2.3325401566391 0.10174672523412 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3120441594612 -2.2986644285594 0.082052568358409 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8529452237257 -2.2908401134124 0.10419182371756 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2758036190766 -2.1781433014938 0.11063799244664 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7388624622868 -2.1841893631983 0.10210237592262 0.05 ShinyColor 1 1 1 50 0 null sphere -2.922119282639 -2.2467394280384 0.074406078555648 0.05 ShinyColor 1 1 1 50 0 null sphere -0.1869432063899 -2.2015717905988 0.10019075347193 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0539323190645 -2.1235953771451 0.10872636999595 0.05 ShinyColor 1 1 1 50 0 null sphere -3.147335081132 -2.0328599952414 0.11028234175814 0.05 ShinyColor 1 1 1 50 0 null sphere -0.0076508030495842 -1.997028188375 0.080718878276532 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6846701886265 -2.0902086687621 0.023548030100077 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2057848897781 -2.0049858725302 0.10814843762713 0.05 ShinyColor 1 1 1 50 0 null sphere 3.656618240571 -1.9768894681386 0.06160265376963 0.05 ShinyColor 1 1 1 50 0 null sphere 1.139633861717 -1.930299227945 0.016924036026755 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1467024191509 -1.8285831310339 0.077962585440653 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2571866875426 -1.835029299763 0.10823735029926 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6178967718606 -1.8320062689107 0.10614790250432 0.05 ShinyColor 1 1 1 50 0 null sphere 0.10762447636064 -1.8295611704273 0.094100235431363 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1828915234884 -1.7558970215716 0.045153809426482 0.05 ShinyColor 1 1 1 50 0 null sphere 0.21058535068153 -1.6660507663892 0.11143820649576 0.05 ShinyColor 1 1 1 50 0 null sphere 2.9057062681383 -1.5990550679429 0.095033818488677 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4304688590208 -1.5963432314431 0.1034360660045 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3360522277176 -1.6475569305872 0.090454815874233 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2489536388774 -1.6468900855462 0.095522838185365 0.05 ShinyColor 1 1 1 50 0 null sphere 0.3235489006165 -1.445636252191 0.10156889988987 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7228129015769 -1.4508376435103 0.092811001685549 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3680607896826 -1.5097422887932 0.052533561212867 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1357661604795 -1.4511932941988 0.11241624588914 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4151400495729 -1.4458585338713 0.11992936668371 0.05 ShinyColor 1 1 1 50 0 null sphere 0.38098648680934 -1.2959962250044 0.098190218349119 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5684605027677 -1.2693668797029 0.10245802661112 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4212750239495 -1.2889276675705 0.07738465307184 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1330543239797 -1.3215141619043 0.0131897037975 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1998277407457 -1.2753240287353 0.11014897274995 0.05 ShinyColor 1 1 1 50 0 null sphere 0.4178407894052 -1.1397322037445 0.12117414409346 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2577988029713 -1.1212828242785 0.094455886119864 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5271161102295 -1.1259951959012 0.063247538203945 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4488824086443 -1.1141698105085 0.10152444355381 0.05 ShinyColor 1 1 1 50 0 null sphere 0.454650635665 -1.0888296989529 0.069915988613329 0.05 ShinyColor 1 1 1 50 0 null sphere -3.434434099424 -0.89806756090842 0.073783689850772 0.05 ShinyColor 1 1 1 50 0 null sphere 0.52595859870935 -0.91184902508781 0.084319841497599 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5362741154584 -0.9599507807075 0.024614982165578 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3865451755997 -0.91638357136619 0.038129708328597 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2896739959281 -0.93981206047116 0.042708710943041 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4295336291809 -0.89717843418716 0.12744248747828 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4242535984657 -0.70183729352827 0.10739267991407 0.05 ShinyColor 1 1 1 50 0 null sphere 0.56143475488728 -0.72508795728899 0.1276647691586 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4434484623685 -0.72588817133811 0.058001690548563 0.05 ShinyColor 1 1 1 50 0 null sphere 0.65626011970872 -0.53592624734278 0.055067572368433 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5184915810334 -0.5230783662207 0.072894563129521 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4356241472215 -0.60207727540388 0.0091886335518691 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3806419327883 -0.53539277131003 0.10610344616825 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3292043051814 -0.58398354662641 0.087387328685916 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0913629072467 -0.60550041328069 0.080229858579844 0.05 ShinyColor 1 1 1 50 0 null sphere -0.89784447636633 -0.51329797228694 0.10588116448794 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6199845728729 -0.54166111469485 0.095700663529615 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4747988057863 -0.50760756127093 0.11868458927396 0.05 ShinyColor 1 1 1 50 0 null sphere 3.780962612538 -0.43718872494783 0.0042984365849872 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7725603650222 -0.53708211208041 0.070182726629705 0.05 ShinyColor 1 1 1 50 0 null sphere 0.67893285110063 -0.35965687485472 0.093077739701924 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6548836200733 -0.33280524787294 0.05119987113099 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6441243633549 -0.34445280792133 0.051866716171929 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5726402217489 -0.38330764564001 0.051777803499804 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5096525732593 -0.37966222608288 0.058446253909188 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3253827070625 -0.34347476852795 0.10597007716007 0.05 ShinyColor 1 1 1 50 0 null sphere -0.76318623443283 -0.35623373697791 0.082986151415723 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5325920426676 -0.15595794301606 0.056623544130623 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7124990316104 -0.15040090100824 0.105925620824 0.05 ShinyColor 1 1 1 50 0 null sphere -0.6768964861354 -0.24300344902656 0.097701198652431 0.05 ShinyColor 1 1 1 50 0 null sphere 0.7103190243608 -0.15751391477825 0.10410291104544 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2584314649523 -0.15782510913069 0.10045749148831 0.05 ShinyColor 1 1 1 50 0 null sphere 4.0356529618405 -0.15880314852407 0.077784760096403 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8293747391189 -0.10296599042949 0.040219156123538 0.05 ShinyColor 1 1 1 50 0 null sphere 3.3872128440319 -0.18063120953079 0.06369210156457 0.05 ShinyColor 1 1 1 50 0 null sphere -0.61083437074643 -0.15862532317982 0.11948480332309 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2204212976188 -0.053219350375483 0.094811536808364 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8107022545813 -0.023033498189003 0.082363762710847 0.05 ShinyColor 1 1 1 50 0 null sphere 3.3010564647427 -0.17849730539978 0.092499807333111 0.05 ShinyColor 1 1 1 50 0 null sphere 3.286341417506 -0.019121340615497 0.0492882486803 0.05 ShinyColor 1 1 1 50 0 null sphere -0.54068227243971 -0.0096965973702343 0.094678167800176 0.05 ShinyColor 1 1 1 50 0 null sphere 0.75153004789079 0.0056408385713496 0.10205791958656 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8672070811081 0.014354280439612 0.063603188892445 0.05 ShinyColor 1 1 1 50 0 null sphere 4.0386315363566 0.014576562119925 0.11041571076632 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5039621622433 0.032003445856449 0.103080415316 0.05 ShinyColor 1 1 1 50 0 null sphere 0.81105708187856 0.068813292116251 0.042619798270916 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1443120502797 0.05214216609279 0.12215218348684 0.05 ShinyColor 1 1 1 50 0 null sphere 3.3320425309783 0.15661455583981 0.021102931616636 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0718482224978 0.19751438501737 0.091343942595484 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4246965150438 0.18564454328866 0.10254693928325 0.05 ShinyColor 1 1 1 50 0 null sphere -0.49480333362314 0.12087166164551 0.057868321540375 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8492458979476 0.18626693199354 0.047687820582048 0.05 ShinyColor 1 1 1 50 0 null sphere 2.9911958023866 0.17319676919115 0.026659973624456 0.05 ShinyColor 1 1 1 50 0 null sphere 0.82683908118077 0.20938422674607 0.075428574285087 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3666365401461 0.23770291281792 0.054000620302932 0.05 ShinyColor 1 1 1 50 0 null sphere 4.0021773407853 0.19155723598499 0.09214415664461 0.05 ShinyColor 1 1 1 50 0 null sphere 0.88845556296348 0.36649291839117 0.077429109407902 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0290281443759 0.37854058546412 0.04755445157386 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9363819634128 0.32692677929549 0.094366973447738 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2991518220031 0.37280571811205 0.08485331753035 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9711451714311 0.37662896301343 0.11059353611057 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9431915859327 0.36404781990773 0.11259407123339 0.05 ShinyColor 1 1 1 50 0 null sphere -0.36227899582064 0.33919672804875 0.099924015455559 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4025502799735 0.38294176273432 0.11312754726614 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8663710372166 0.4867473074404 0.074628360235961 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2204196508363 0.52613562119183 0.12157425111803 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0279595455278 0.57148108397564 0.027682469353895 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4339809095697 0.53587155878953 0.070049357621517 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0112892428956 0.54422934996929 0.11214950787276 0.05 ShinyColor 1 1 1 50 0 null sphere -0.30524151665238 0.50750841638162 0.044486964385544 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7799845731447 0.52893637036377 0.086987221661353 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7455387157985 0.58335092570435 0.10188009424231 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1461331132757 0.58081691454878 0.045776198131358 0.05 ShinyColor 1 1 1 50 0 null sphere -0.22619815113314 0.55561017200131 0.10970440938932 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0226708883189 0.54667444845273 0.077962585440653 0.05 ShinyColor 1 1 1 50 0 null sphere -0.15480127541667 0.7171200409166 0.069382512580578 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0647693917876 0.73050139807143 0.093611215734675 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5024436671061 0.68533376063186 0.020702824592073 0.05 ShinyColor 1 1 1 50 0 null sphere -2.6659174179105 0.67617575540298 0.099390539422808 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7237917643616 0.64358926106912 0.025726390567142 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1073671882292 0.7282785812683 0.10734822357801 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5881554830347 0.68960156889387 0.034839939459968 0.05 ShinyColor 1 1 1 50 0 null sphere -2.563934582983 0.75584150962709 0.11299417825795 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0168462849034 0.71489722411347 0.10917093335657 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9671885575216 0.88876595445415 0.11259407123339 0.05 ShinyColor 1 1 1 50 0 null sphere -0.98057771777876 0.92459776132057 0.050132919065489 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0239156657287 0.87791860845488 0.047287713557485 0.05 ShinyColor 1 1 1 50 0 null sphere -2.472976919399 0.83924159608045 0.088987756784168 0.05 ShinyColor 1 1 1 50 0 null sphere 1.230591525301 0.90161383557623 0.090854922898796 0.05 ShinyColor 1 1 1 50 0 null sphere -2.377795903889 0.92677612178764 0.085431249899163 0.05 ShinyColor 1 1 1 50 0 null sphere -0.1067884324691 0.84991111673547 0.056090068097872 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4397585864753 0.95096036860567 0.026393235608081 0.05 ShinyColor 1 1 1 50 0 null sphere -0.022276937614167 0.91188324920668 0.10290258997175 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8079459617455 0.94900428981892 0.042975448959416 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6685308918533 0.96340814270319 0.01545697693669 0.05 ShinyColor 1 1 1 50 0 null sphere 0.040851059594671 1.0406732547799 0.06507024798251 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1851221433939 1.0660133663356 0.097212178955742 0.05 ShinyColor 1 1 1 50 0 null sphere -0.929586300315 1.0901531568176 0.068982405556015 0.05 ShinyColor 1 1 1 50 0 null sphere -0.92656326946275 1.2407712233975 0.10401399837331 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9810231045307 1.2601986422569 0.081874743014158 0.05 ShinyColor 1 1 1 50 0 null sphere 0.22076585163986 1.2541525805523 0.075917593981775 0.05 ShinyColor 1 1 1 50 0 null sphere 4.3498258887946 1.2796705174523 0.026126497591705 0.05 ShinyColor 1 1 1 50 0 null sphere 4.5336972947493 1.2665114419777 0.027860294698145 0.05 ShinyColor 1 1 1 50 0 null sphere 4.1260771493917 1.2919849225416 0.024348244149203 0.05 ShinyColor 1 1 1 50 0 null sphere 4.674846161748 1.2541525805523 0.019858154206884 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9440284532155 1.2867835312223 0.019813697870821 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8800105058941 1.2431718655449 0.078051498112778 0.05 ShinyColor 1 1 1 50 0 null sphere -0.90935866740653 1.4197079760493 0.10290258997175 0.05 ShinyColor 1 1 1 50 0 null sphere 0.37071707317888 1.4446479805804 0.052444648540742 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4435476483168 1.4109945341811 0.12024056103615 0.05 ShinyColor 1 1 1 50 0 null sphere 2.848624332634 1.4084160666894 0.024748351173766 0.05 ShinyColor 1 1 1 50 0 null sphere 4.483017071638 1.4459372143262 0.047598907909923 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6413338874592 1.4380684428432 0.076317701006338 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2526965976003 1.4041038020914 0.08623146394829 0.05 ShinyColor 1 1 1 50 0 null sphere -1.83560642927 1.4397133272775 0.11268298390551 0.05 ShinyColor 1 1 1 50 0 null sphere -0.79586164143881 1.406682269583 0.0086551575191184 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0761604870958 1.4299329333437 0.097967936668806 0.05 ShinyColor 1 1 1 50 0 null sphere 4.3247525152553 1.4443812425641 0.074984010924461 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6811136817415 1.4735890553572 0.015945996633379 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7145526495629 1.5032858878469 0.103791716693 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7193897637001 1.4370459471137 0.1020134632505 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8464537752693 1.5886865094231 0.10285813363569 0.05 ShinyColor 1 1 1 50 0 null sphere 4.5345864214706 1.6223844121586 0.080140945907719 0.05 ShinyColor 1 1 1 50 0 null sphere -2.51778890615 1.5515654688109 0.074317165883523 0.05 ShinyColor 1 1 1 50 0 null sphere -0.9083361716771 1.5889977037756 0.13544462796955 0.05 ShinyColor 1 1 1 50 0 null sphere -0.71886326737846 1.6598166471232 0.079785295219218 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7869197615704 1.5910426952344 0.022481078034575 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3808189347413 1.6028680806271 0.11770654988058 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6396000903527 1.6155381364049 0.053867251294744 0.05 ShinyColor 1 1 1 50 0 null sphere 0.54120712197881 1.5791283971697 0.067870997154451 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6770236988238 1.5965997372423 0.026082041255643 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1875672418773 1.6447904055341 0.10374726035694 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0113423257253 1.6406559662803 0.10228020126687 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6550169890815 1.5910871515705 0.0669818704332 0.05 ShinyColor 1 1 1 50 0 null sphere 0.69587071514046 1.6221176741422 0.10050194782437 0.05 ShinyColor 1 1 1 50 0 null sphere 4.1620867816024 1.6245183162896 0.075695312301462 0.05 ShinyColor 1 1 1 50 0 null sphere 4.6176308572355 1.7380597985933 0.052666930221055 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5372521548518 1.6341653412151 0.094544798791989 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9781264629755 1.8162140373913 0.047109888213235 0.05 ShinyColor 1 1 1 50 0 null sphere 4.0801537542391 1.7872285062785 0.047821189590236 0.05 ShinyColor 1 1 1 50 0 null sphere 4.3335993261317 1.629097318904 0.11543927674139 0.05 ShinyColor 1 1 1 50 0 null sphere 0.75602013783311 1.7311246101676 0.040841544828413 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2602541747309 1.8083452659083 0.097967936668806 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0598450117609 1.7997651930482 0.10450301807 0.05 ShinyColor 1 1 1 50 0 null sphere 4.3813454310629 1.752019088117 0.053422687934119 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9148728998608 1.8376419913735 0.064092208589134 0.05 ShinyColor 1 1 1 50 0 null sphere 4.5309410019135 1.7766034419596 0.098456956365494 0.05 ShinyColor 1 1 1 50 0 null sphere -0.392375935335 1.8485782500449 0.063291994540007 0.05 ShinyColor 1 1 1 50 0 null sphere 0.89374586695493 1.7674898930668 0.060357876359878 0.05 ShinyColor 1 1 1 50 0 null sphere 2.37965444351 1.7786484334185 0.065826005695573 0.05 ShinyColor 1 1 1 50 0 null sphere -0.20894909274087 1.8500453091349 0.030616587534024 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7269115109883 1.9519392313903 0.08987688350542 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1969833586289 1.8161251247192 0.09543392551324 0.05 ShinyColor 1 1 1 50 0 null sphere 1.053699764108 1.8059001674248 0.080674421940469 0.05 ShinyColor 1 1 1 50 0 null sphere 1.246240155595 1.9293998690066 0.04355338132823 0.05 ShinyColor 1 1 1 50 0 null sphere -0.21566199948631 1.9458931696858 0.040352525131725 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5421509783123 2.0023971728213 0.097790111324556 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0039984037814 1.9320227928343 0.055200941376621 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4117510947559 1.9474935977841 0.056934738483061 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6114045000129 1.9494941329069 0.081785830342033 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8205715611872 1.9574518170621 0.060802439720504 0.05 ShinyColor 1 1 1 50 0 null sphere -0.36472409430408 2.0074651951325 0.08294169507966 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3917107370766 2.0533885902851 0.10734822357801 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1768088085502 2.1122043228959 0.093789041078925 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9929818589315 2.1928036601773 0.096545333914804 0.05 ShinyColor 1 1 1 50 0 null sphere -0.37961696688504 2.2180993153969 0.08329734576816 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4549729266849 2.3580034049858 0.10388062936513 0.05 ShinyColor 1 1 1 50 0 null sphere -3.268122946214 2.3751190943699 0.053422687934119 0.05 ShinyColor 1 1 1 50 0 null sphere -0.1807637756772 2.3664945651737 0.049866181049114 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9887140506695 2.3451999801998 0.10552551379944 0.05 ShinyColor 1 1 1 50 0 null sphere -0.063043397783537 2.3894784909181 0.016568385338254 0.05 ShinyColor 1 1 1 50 0 null sphere -3.5977222217818 2.4306006017759 0.085964725931914 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3698826760699 2.4138850194164 0.10405845470938 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8974460161243 2.475412588527 0.10174672523412 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7235328294476 2.445582387029 0.055289854048746 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5402838121977 2.4330012439233 0.10245802661112 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6861458742102 2.53013833822 0.094989362152614 0.05 ShinyColor 1 1 1 50 0 null sphere -0.17449543229238 2.503864643607 0.038485359017098 0.05 ShinyColor 1 1 1 50 0 null sphere -3.767723250885 2.6030911856987 0.085786900587664 0.05 ShinyColor 1 1 1 50 0 null sphere -0.37450448823785 2.546498269891 0.087209503341666 0.05 ShinyColor 1 1 1 50 0 null sphere -3.8606814495919 2.6884028946027 0.11014897274995 0.05 ShinyColor 1 1 1 50 0 null sphere -0.35743325518982 2.7527756692213 0.051644434491616 0.05 ShinyColor 1 1 1 50 0 null sphere -3.9708442503549 2.7685576685235 0.075473030621149 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0856296866771 2.780960986285 0.025726390567142 0.05 ShinyColor 1 1 1 50 0 null sphere -3.373351093674 2.8066122921931 0.029193984780022 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6396445466888 2.8926353024741 0.09716772261968 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4712439456838 2.889701184294 0.05640126245031 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9025584947715 2.8933466038511 0.087831892046542 0.05 ShinyColor 1 1 1 50 0 null sphere -0.19672360032366 2.8827215395322 0.026082041255643 0.05 ShinyColor 1 1 1 50 0 null sphere -3.8322738508479 2.9143744508087 0.051422152811303 0.05 ShinyColor 1 1 1 50 0 null sphere -0.55593079570916 2.9184199773904 0.094855993144427 0.05 ShinyColor 1 1 1 50 0 null sphere -0.37259286578716 2.880454266393 0.067337521121701 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8082666059828 2.9612758853547 0.088809931439918 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0502407963888 2.981370149255 0.048977054327862 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0961197352054 3.0825083137973 0.061380372089317 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7328242036847 3.1013578002879 0.097034353611492 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3070205934862 3.1225634725897 0.030972238222525 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4698196961473 3.1317214778186 0.10992669106964 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5595334057128 3.1629742820706 0.11192722619245 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6639605157325 3.1261199794747 0.10370280402088 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4960942141515 3.1795564954219 0.060891352392629 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3829083825362 3.1928933962407 0.07929627552253 0.05 ShinyColor 1 1 1 50 0 null sphere -1.85547841149 3.1849357120855 0.0579572342125 0.05 ShinyColor 1 1 1 50 0 null sphere -1.7170413809912 3.1804011658071 0.024392700485265 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1890343009674 3.2014734691008 0.10605898983219 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0268131306751 3.2010289057401 0.085075599210663 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3549453471529 -2.4371903717304 0.090321446866045 0.05 ShinyColor 1 1 1 50 0 null sphere -0.56682259804449 -2.4309220283456 0.1005908604965 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8593905690635 -2.3458326011218 0.087387328685916 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1868473140067 -2.1762761353792 0.11041571076632 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1330543239797 -1.6580486258979 0.10672583487313 0.05 ShinyColor 1 1 1 50 0 null sphere 0.26895651993168 -1.5710920325595 0.034751026787842 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3383100509718 -1.1282624690404 0.099390539422808 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3775649957151 -0.73597975962431 0.098323587357306 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6237205518848 -0.52814638853184 0.12233000883109 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9700798661482 -0.52476770699108 0.11921806530671 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6703091452958 -0.21135053775002 0.018835658477445 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8075458547209 -0.17680796462941 0.11997382301977 0.05 ShinyColor 1 1 1 50 0 null sphere 2.9075734342529 0.18662258268204 0.1142389556677 0.05 ShinyColor 1 1 1 50 0 null sphere 3.3679632505168 0.18475541656741 0.11219396420883 0.05 ShinyColor 1 1 1 50 0 null sphere -0.42780763517686 0.16586147374082 0.13620038568261 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0201368771633 0.69080188996756 0.072494456104958 0.05 ShinyColor 1 1 1 50 0 null sphere 2.9989756611976 1.0761938672939 0.031994733951964 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7867863925622 1.4364680147449 0.02968300447671 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8923335374771 1.4681653823575 0.096545333914804 0.05 ShinyColor 1 1 1 50 0 null sphere -3.5266365404178 1.6480357180667 0.011322537682872 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4736795942823 1.776203334935 0.027193449657207 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4201636155479 1.9265991198347 0.081652461333846 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1854777940824 2.3875224121313 0.090543728546358 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0237909232141 2.4464270574142 0.037951882984347 0.05 ShinyColor 1 1 1 50 0 null sphere -3.09474323557 2.4975073875501 0.11170494451214 0.05 ShinyColor 1 1 1 50 0 null sphere -0.51956551280999 2.5744168489383 0.12535303968334 0.05 ShinyColor 1 1 1 50 0 null sphere -0.54072672877577 2.7494859003527 0.12188544547046 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2410934938879 2.8908125926956 0.061736022777818 0.05 ShinyColor 1 1 1 50 0 null sphere -3.9740895628875 2.9281114586521 0.10721485456982 0.05 ShinyColor 1 1 1 50 0 null sphere -0.87997302926918 2.9725233383786 0.098812607053995 0.05 ShinyColor 1 1 1 50 0 null sphere -0.7169071885917 2.98345959705 0.10983777839751 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2483312501725 -2.412739386896 0.098990432398245 0.05 ShinyColor 1 1 1 50 0 null sphere -3.192813912924 -1.9594625844021 0.11988491034765 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0688610214879 -1.69223554833 0.12384152425722 0.05 ShinyColor 1 1 1 50 0 null sphere 3.3603612170501 0.032092358528575 0.13082116901904 0.05 ShinyColor 1 1 1 50 0 null sphere 0.91953054187121 0.52884745769164 0.12353032990478 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7870514837961 1.0666357550405 0.12415271860966 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6034912721937 1.0815730839575 0.12259674684747 0.05 ShinyColor 1 1 1 50 0 null sphere -3.8557467962889 1.4214862294918 0.094900449480489 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1203484383595 3.2721590434402 0.092855458021611 0.05 ShinyColor 1 1 1 50 0 null sphere -0.89744436934177 3.2793165135463 0.10361389134875 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3135034154489 -2.1430672523405 0.091744049620047 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7267703388778 -2.0239242716928 0.13024323665023 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5614816813972 -1.6719190027494 0.12166316379015 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5342735803356 -0.34712018808508 0.13211040276485 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4453172752657 -0.37588343751756 0.11783991888877 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5989139163618 0.56414578852532 0.12513075800303 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4235764801485 1.0538323302544 0.12032947370827 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8952145728275 1.0774386447037 0.12246337783928 0.05 ShinyColor 1 1 1 50 0 null sphere 0.15270320112808 1.1113143727833 0.12450836929816 0.05 ShinyColor 1 1 1 50 0 null sphere -3.8575250497314 1.3304841095718 0.092988827029799 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9110488315682 1.3155023243187 0.11108255580726 0.05 ShinyColor 1 1 1 50 0 null sphere 4.1491944441442 1.4550507632191 0.080140945907719 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9468736587235 1.4270432714997 0.061869391786005 0.05 ShinyColor 1 1 1 50 0 null sphere 3.945806706658 1.5950882218161 0.068493385859327 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0676248705718 2.9038382991619 0.11992936668371 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2895492534136 3.2252576088942 0.12086294974103 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8296937365737 3.1517268290468 0.13091008169116 0.05 ShinyColor 1 1 1 50 0 null sphere -0.8938434061207 3.4207321185613 0.11930697797884 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0690380234409 -2.236514470744 0.10703702922557 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5922438191699 -0.71881961390416 0.13722288141205 0.05 ShinyColor 1 1 1 50 0 null sphere -4.0037419390412 1.4311332544174 0.12806487618316 0.05 ShinyColor 1 1 1 50 0 null sphere 0.51217713452996 1.4717663455786 0.12699792411766 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2250789396292 1.7878508949834 0.13010986764204 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6914267283168 -2.4374571097468 0.14909272314075 0.05 ShinyColor 1 1 1 50 0 null sphere 2.894858922139 -2.4564399652455 0.15496095950101 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7137001760754 -2.2863500234701 0.13949015455124 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3404439551028 -2.0123656243165 0.11752872453633 0.05 ShinyColor 1 1 1 50 0 null sphere 1.177332834698 -1.8643704815643 0.14117949532162 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8438230483392 -1.5256576571036 0.14660316832125 0.05 ShinyColor 1 1 1 50 0 null sphere 2.643991817738 -1.3213807928961 0.1626963619759 0.05 ShinyColor 1 1 1 50 0 null sphere 3.304835253308 -0.34058510668388 0.15576117355014 0.05 ShinyColor 1 1 1 50 0 null sphere 4.0724183517642 -0.19321235263649 0.13895667851849 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5761147956728 -0.17560764355572 0.15051532589475 0.05 ShinyColor 1 1 1 50 0 null sphere 0.77113529209438 0.16772863985545 0.13922341653486 0.05 ShinyColor 1 1 1 50 0 null sphere 1.939047696794 0.19413570347661 0.14091275730524 0.05 ShinyColor 1 1 1 50 0 null sphere 3.8597392400409 0.40574786313441 0.13664494904324 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1173612373496 0.83252868933501 0.11908469629852 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0499740583724 0.90388110871542 0.13540017163348 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0138755134896 1.0281365680103 0.14126840799374 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0484189100015 1.1471017233137 0.12930965359291 0.05 ShinyColor 1 1 1 50 0 null sphere 0.32426020199351 1.28940645505 0.13851211515786 0.05 ShinyColor 1 1 1 50 0 null sphere -2.588118829801 1.5382730243282 0.14442480785418 0.05 ShinyColor 1 1 1 50 0 null sphere -0.65102289854699 1.7433945589208 0.1395346108873 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8954899373376 1.9183746976631 0.14233536005924 0.05 ShinyColor 1 1 1 50 0 null sphere -0.348319706297 2.3641828356985 0.10050194782437 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4380795189811 3.0584574359875 0.13131018871573 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2116539495296 -2.0044079401613 0.14718110069006 0.05 ShinyColor 1 1 1 50 0 null sphere 2.390990809206 -1.2226877268372 0.13984580523974 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2479747760927 -1.0666459872577 0.14695881900975 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2417064327079 -0.91207130676812 0.15567226087801 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3616051710686 -0.57829313561041 0.15078206391113 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7798067478004 -0.67938684381667 0.14740338237038 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9065962182508 -0.6740076271531 0.15411628911582 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5786043504923 -0.3512546273389 0.1644746154184 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7896744076237 -0.32889309029943 0.14242427273137 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7480641004605 0.0055074695631624 0.15567226087801 0.05 ShinyColor 1 1 1 50 0 null sphere 2.9183763239161 0.35253362886752 0.14878152878831 0.05 ShinyColor 1 1 1 50 0 null sphere -0.26225223967988 0.42037399769899 0.15985115646789 0.05 ShinyColor 1 1 1 50 0 null sphere 2.908329191966 0.90290306932204 0.149981849862 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9303787112618 1.0297369961085 0.15140445261601 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7421069514281 1.2533079101672 0.16216288594315 0.05 ShinyColor 1 1 1 50 0 null sphere -3.8504564922975 1.6207839840603 0.13931232920699 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6642733568675 1.82661682003 0.14424698250993 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3771204323544 1.636210332674 0.1457140416 0.05 ShinyColor 1 1 1 50 0 null sphere 0.89374586695493 1.6150491167082 0.15144890895207 0.05 ShinyColor 1 1 1 50 0 null sphere -0.54361639061983 2.0036419502311 0.14518056556725 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8017665310328 1.8537796413642 0.13806755179724 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4294002601727 1.8211931470303 0.14531393457543 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9070477613226 2.2725583270735 0.15820627203358 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2842605962047 2.5168458937373 0.13900113485455 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7200652352347 2.4707891295765 0.14246872906743 0.05 ShinyColor 1 1 1 50 0 null sphere -0.96163931861611 3.0837530912071 0.12295239753597 0.05 ShinyColor 1 1 1 50 0 null sphere -3.8268946341843 3.0210696573589 0.15389400743551 0.05 ShinyColor 1 1 1 50 0 null sphere -3.26105438878 3.0818859250925 0.15736160164839 0.05 ShinyColor 1 1 1 50 0 null sphere -1.650845896594 -2.2580757937343 0.16202951693496 0.05 ShinyColor 1 1 1 50 0 null sphere 0.074771244010406 -1.8787743344485 0.1474922950425 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7506862008969 -0.49560435053404 0.15389400743551 0.05 ShinyColor 1 1 1 50 0 null sphere 4.0819320076816 -0.28065796567155 0.15256031735363 0.05 ShinyColor 1 1 1 50 0 null sphere 2.9383372188082 0.71689775923628 0.14371350647718 0.05 ShinyColor 1 1 1 50 0 null sphere 1.253353169365 1.0369389225507 0.16789775329522 0.05 ShinyColor 1 1 1 50 0 null sphere -4.0331275771785 1.5470309225325 0.16420787740202 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9939512718312 1.7883843710162 0.16438570274627 0.05 ShinyColor 1 1 1 50 0 null sphere 1.584508416695 1.8405761095536 0.14660316832125 0.05 ShinyColor 1 1 1 50 0 null sphere -0.50405025152415 2.1878690068743 0.16225179861527 0.05 ShinyColor 1 1 1 50 0 null sphere -0.5620657700858 2.3790312519434 0.15691703828776 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3706298072893 -1.827249440952 0.16603058718059 0.05 ShinyColor 1 1 1 50 0 null sphere 0.59290984081957 -0.50671843454968 0.16025126349246 0.05 ShinyColor 1 1 1 50 0 null sphere 2.559435866547 -0.21450693761046 0.16674188855759 0.05 ShinyColor 1 1 1 50 0 null sphere 2.9428273087505 0.54614097241998 0.15642801859108 0.05 ShinyColor 1 1 1 50 0 null sphere 0.95562908675402 0.67399739493591 0.16469689709871 0.05 ShinyColor 1 1 1 50 0 null sphere -0.063665786488413 0.7362362654235 0.16940926872134 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2699448326013 0.95887359642481 0.16220734227921 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5619254213665 1.4690989654148 0.1644746154184 0.05 ShinyColor 1 1 1 50 0 null sphere -3.8099123138084 1.7224111682993 0.16322983800865 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4432809103005 2.545742512178 0.16945372505741 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3747728730368 3.1692426254554 0.16825340398372 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0094307032746 3.1684868677423 0.16278527464802 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0629108521666 3.371474498204 0.16438570274627 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4796811996508 -1.7935959945527 0.17545533042585 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3515572157272 -1.0653567535118 0.16371885770534 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2429956664537 -0.73344574846875 0.17109860949172 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9236213481802 0.013598522726549 0.16429679007415 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0117416093586 1.472033083595 0.16296309999227 0.05 ShinyColor 1 1 1 50 0 null sphere -0.68672133640522 2.5773954234545 0.17234338690147 0.05 ShinyColor 1 1 1 50 0 null sphere -0.70263670471562 2.7260129549117 0.16994274475409 0.05 ShinyColor 1 1 1 50 0 null sphere -3.9611527690932 3.0125784971709 0.16616395618878 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1681311965243 -2.001340452973 0.26379007018216 0.05 ShinyColor 1 1 1 50 0 null sphere -0.048906282915642 -1.9893372422361 0.25996682528078 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3779651027396 -1.6500464854067 0.26876917982117 0.05 ShinyColor 1 1 1 50 0 null sphere 0.22063248263167 -1.4922264923846 0.27677132031243 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4231771965153 -1.4945382218598 0.29166419289339 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1093146405223 -1.4535050236741 0.26107823368235 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6863150730608 -0.68449932246387 0.17398827133579 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0399269264223 -0.61639221561602 0.26681310103442 0.05 ShinyColor 1 1 1 50 0 null sphere 0.61393768777716 -0.38819784260689 0.16829786031978 0.05 ShinyColor 1 1 1 50 0 null sphere 0.54445243451138 -0.32929319732399 0.27548208656662 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6083456393182 -0.13768638889435 0.25938889291197 0.05 ShinyColor 1 1 1 50 0 null sphere 2.799633450293 0.14710089992242 0.17750032188473 0.05 ShinyColor 1 1 1 50 0 null sphere 0.71663182408168 0.35884642858841 0.26072258299385 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7824296716281 0.36493694662898 0.25476543396146 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8468983386299 1.2421493698155 0.2464076427817 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6524479714748 1.4736335116932 0.26387898285429 0.05 ShinyColor 1 1 1 50 0 null sphere 0.68297837768232 1.4846142267007 0.17407718400791 0.05 ShinyColor 1 1 1 50 0 null sphere -1.7350906534326 1.5621016204577 0.17545533042585 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0527217247147 1.6456795322553 0.17403272767185 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2910624156222 1.8585809256589 0.25098664539615 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6121260746661 1.8531572526593 0.26450137155916 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2152643626356 2.587709293421 0.21431016814453 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9187406010983 2.938736522971 0.28930800708207 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1448899826485 3.0321392850385 0.17727804020442 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6518683923234 3.0778848548468 0.26241192376422 0.05 ShinyColor 1 1 1 50 0 null sphere -2.257674883848 3.1697316451521 0.17372153331941 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0807753195527 -2.4341228845421 0.25952226192016 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9963519139786 -2.3555685387195 0.28086130323019 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2574003427292 -2.399980418446 0.28166151727931 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5938903503868 -2.3355631874914 0.25943334924803 0.05 ShinyColor 1 1 1 50 0 null sphere 1.82257209631 -2.3736178111609 0.27846066108281 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1008765631641 -2.3324957003031 0.27499306686993 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5477438501626 -2.3526788768755 0.27130319097674 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3572484501345 -2.3122680673946 0.28961920143451 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0432627984095 -2.1243066785221 0.26392343919035 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9970632153556 -2.1827223041083 0.30749064853166 0.05 ShinyColor 1 1 1 50 0 null sphere 3.745397543688 -1.9947164588997 0.27970543849256 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2181001182587 -1.8779296640634 0.26525712927223 0.05 ShinyColor 1 1 1 50 0 null sphere 3.727659465599 -1.8457877330901 0.2994885080404 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3210609925796 -1.8004422703063 0.25267598616652 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6926278727817 -1.7848380963483 0.23000325477462 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4756801294051 -1.7162864261399 0.18239051885161 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5088890124439 -1.6221723626954 0.25249816082227 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8821444100252 -1.469109197632 0.28423998477094 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7517984326897 -1.3961563501534 0.23298182929081 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7218793185196 -1.3096887765117 0.30855760059716 0.05 ShinyColor 1 1 1 50 0 null sphere 0.30496615214235 -1.2943513405701 0.25054208203552 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3569817121181 -1.2821258481529 0.27721588367306 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1617294841313 -1.0947423916492 0.23800539526588 0.05 ShinyColor 1 1 1 50 0 null sphere 0.35653550197493 -1.1094574388859 0.25872204787103 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4135738045345 -1.103811484206 0.27761599069762 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4318556319324 -0.8964226764741 0.29762134192577 0.05 ShinyColor 1 1 1 50 0 null sphere 0.46283060150051 -0.73117847532956 0.26610179965742 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7455753690322 -0.79177246138283 0.20790845575152 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9875512062208 -0.70552716942146 0.21235408935778 0.05 ShinyColor 1 1 1 50 0 null sphere -0.91229278558666 -0.56504514746376 0.28326194537757 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8470675374805 -0.53730439376072 0.20159565603064 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2922088304749 -0.49938313909936 0.19137069873625 0.05 ShinyColor 1 1 1 50 0 null sphere -0.80426388895464 -0.49956096444361 0.29464276740958 0.05 ShinyColor 1 1 1 50 0 null sphere 3.3153269486188 -0.3967334591309 0.2550766283139 0.05 ShinyColor 1 1 1 50 0 null sphere -0.70090290760918 -0.39562205072934 0.28059456521381 0.05 ShinyColor 1 1 1 50 0 null sphere 3.3198614948971 -0.24113628291193 0.2005731603012 0.05 ShinyColor 1 1 1 50 0 null sphere 3.3840119878354 -0.14711113213961 0.27850511741887 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0045763361502 0.013865260742924 0.21226517668565 0.05 ShinyColor 1 1 1 50 0 null sphere 0.66692964036374 0.024401412389751 0.22955869141399 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4330473265124 0.19960383281231 0.27414839648474 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5010280440632 0.18995680788673 0.26645745034592 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0559773105234 0.17750903378922 0.27628230061574 0.05 ShinyColor 1 1 1 50 0 null sphere -0.33187086195385 0.1806209773136 0.24351798093763 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7247689803637 0.20142654259087 0.22333480436523 0.05 ShinyColor 1 1 1 50 0 null sphere 3.8965046299646 0.30123101705133 0.22649120422567 0.05 ShinyColor 1 1 1 50 0 null sphere 2.859293853289 0.38840989207001 0.19639426471132 0.05 ShinyColor 1 1 1 50 0 null sphere -0.17044990571069 0.3795186248575 0.27601556259937 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7261034938368 0.45869535938492 0.18888114391675 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8464101423245 0.48541361735852 0.22680239857811 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6153183043689 0.4795009246622 0.19932838289145 0.05 ShinyColor 1 1 1 50 0 null sphere -0.1407530732209 0.52351269736414 0.2127986527184 0.05 ShinyColor 1 1 1 50 0 null sphere 0.85746949672788 0.72423305468661 0.25454315228115 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2831030846845 0.70693953995827 0.29708786589302 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8553372393794 0.73401344862037 0.19670545906376 0.05 ShinyColor 1 1 1 50 0 null sphere -0.0072506960250211 0.69827055442607 0.23800539526588 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1780083062326 0.75966475452847 0.21586613990672 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0626354876566 0.91166096752637 0.20364064748952 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3575238146445 0.86631550474256 0.26556832362467 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1935243909097 0.94789288141736 0.28090575956625 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1036328559999 1.067747163442 0.22666902956992 0.05 ShinyColor 1 1 1 50 0 null sphere 0.20244984118209 1.0444520433452 0.20030642228482 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9875495594382 1.0899308751372 0.21035355423496 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7189896566755 1.0636127241882 0.2171998299886 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2440173387919 1.1022452802266 0.20657476566965 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0148988326103 1.0780165770725 0.26490147858373 0.05 ShinyColor 1 1 1 50 0 null sphere 0.277714418136 1.1579046129769 0.17034285177866 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4706112837027 1.1606164494767 0.18363529626136 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5428083734683 1.1658622971321 0.18310182022861 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8025667450819 1.1618167705504 0.18714734681031 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1028326419508 1.2469951104463 0.22391273673404 0.05 ShinyColor 1 1 1 50 0 null sphere 0.51791200188203 1.2588204958389 0.2214676382506 0.05 ShinyColor 1 1 1 50 0 null sphere -1.7825255640113 1.3680497135446 0.2092421458334 0.05 ShinyColor 1 1 1 50 0 null sphere -3.8350301436838 1.4821691282172 0.25458760861721 0.05 ShinyColor 1 1 1 50 0 null sphere 0.54400787115075 1.3796083609209 0.19386025355575 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8931782078623 1.4587406391123 0.27370383312411 0.05 ShinyColor 1 1 1 50 0 null sphere 0.7138755312458 1.4215306858279 0.20919768949734 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0781593754361 1.6011787398567 0.29513178710627 0.05 ShinyColor 1 1 1 50 0 null sphere -4.0310381293836 1.6415450930015 0.23893897832319 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8344061081963 1.6777325505564 0.29579863214721 0.05 ShinyColor 1 1 1 50 0 null sphere 2.188492198441 1.612781843569 0.21262082737415 0.05 ShinyColor 1 1 1 50 0 null sphere -0.9234068696023 1.6694192157127 0.23062564347949 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2537985561169 1.6506141855583 0.18021215838455 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2361485673088 1.6817336208021 0.18154584846642 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3513349340469 1.6811556884333 0.17963422601573 0.05 ShinyColor 1 1 1 50 0 null sphere -3.8238716033321 1.8372418843489 0.23796093892981 0.05 ShinyColor 1 1 1 50 0 null sphere -0.71241709864938 2.0093768175832 0.25405413258446 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3783738362578 2.0401850584745 0.28801877333626 0.05 ShinyColor 1 1 1 50 0 null sphere -0.55601970838129 2.2044956765617 0.20426303619439 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0023176895046 2.1206954830838 0.23969473603625 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8400076065402 2.2152541098889 0.27881631177131 0.05 ShinyColor 1 1 1 50 0 null sphere -0.59758638259979 2.3172814011525 0.1936824282115 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2033492411795 2.3754302887223 0.2738372021323 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5407728318944 2.4337570016364 0.28046119620562 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7181091564479 2.4788357264038 0.27957206948437 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6194613701164 2.5480542416532 0.21635515960341 0.05 ShinyColor 1 1 1 50 0 null sphere -3.7900403315884 2.7473964525578 0.280016632845 0.05 ShinyColor 1 1 1 50 0 null sphere -3.9724002221171 2.9041939498504 0.2453406907162 0.05 ShinyColor 1 1 1 50 0 null sphere -0.77461151280091 2.7628672575075 0.19790578013745 0.05 ShinyColor 1 1 1 50 0 null sphere -0.70979417482169 2.9017043950309 0.20679704734996 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6424452958607 2.9889277263857 0.19866153785051 0.05 ShinyColor 1 1 1 50 0 null sphere -0.93367628323276 2.9089507778091 0.26214518574785 0.05 ShinyColor 1 1 1 50 0 null sphere -0.9812445628197 3.1010910622715 0.21230963302172 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2375369870029 3.1447027279489 0.22106753122604 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4861368182648 3.1222967345733 0.22991434210249 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5569549382212 3.0839753728874 0.29086397884426 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0156101339873 3.1307434384252 0.27783827237793 0.05 ShinyColor 1 1 1 50 0 null sphere -0.97435383073 3.3947251619647 0.25787737748584 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3721944055451 -2.4324780001078 0.27437067816505 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4493628018474 -2.3785524644639 0.28841888036082 0.05 ShinyColor 1 1 1 50 0 null sphere -0.55668655342223 -2.4194078373054 0.28561813118888 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8589015493668 -2.3513896431296 0.28006108918106 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1890256744737 -2.3508117107608 0.25672151274822 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6702288591173 -2.3228931317135 0.28023891452531 0.05 ShinyColor 1 1 1 50 0 null sphere -1.495915565416 -2.3198701008613 0.27543763023055 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3195128239197 -2.3156912052714 0.28175042995144 0.05 ShinyColor 1 1 1 50 0 null sphere -0.20983821946212 -2.1753425523219 0.27908304978768 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9326998906219 -2.2306462343837 0.26872472348511 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3133247667134 -2.128485574112 0.22929195339761 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1810679903185 -2.0934984376307 0.18910342559706 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3367985355457 -1.9461701399194 0.20061761663726 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2075186868845 -1.8453431697295 0.28708519027895 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3389418895616 -1.6475124742511 0.27628230061574 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0677496130863 -1.5970545328201 0.24689666247839 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6130954875658 -1.6384433816943 0.28375096507425 0.05 ShinyColor 1 1 1 50 0 null sphere 0.16368391613553 -1.6496908347182 0.27019178257517 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5451209263349 -1.4792452422543 0.28290629468907 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1338100816928 -1.3466319917797 0.25254261715833 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4208749169249 -1.27154524017 0.27774935970581 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2231228608425 -1.2245548929519 0.27054743326367 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4763906073909 -0.99324857641836 0.19599415768676 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6075367987754 -0.92940927783252 0.23444888838087 0.05 ShinyColor 1 1 1 50 0 null sphere 0.46394200990208 -0.89002096408109 0.21106485561196 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1389233837312 -0.85556730363261 0.20635248398933 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7904318121194 -0.91691704739894 0.25801074649403 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7771377208541 -0.70121490482339 0.20110663633395 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1423465216081 -0.72642164737086 0.20466314321896 0.05 ShinyColor 1 1 1 50 0 null sphere -1.142754431735 -0.64279927923718 0.28890790005751 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6085609412874 -0.73286781609993 0.24991969333064 0.05 ShinyColor 1 1 1 50 0 null sphere -1.314755995961 -0.62408316175484 0.27748262168943 0.05 ShinyColor 1 1 1 50 0 null sphere 4.1130069865893 -0.53134724472834 0.27948315681225 0.05 ShinyColor 1 1 1 50 0 null sphere 0.5105767064317 -0.52365629858952 0.25876650420709 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5413874174969 -0.60123260501869 0.22306806634886 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1874252463755 -0.51396481732788 0.21564385822641 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4158427244562 -0.55108585794012 0.23000325477462 0.05 ShinyColor 1 1 1 50 0 null sphere 3.320439427266 -0.55575377322669 0.28206162430388 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3607160443474 -0.35085452031434 0.20390738550589 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8911682228546 -0.37895092470588 0.2027070644322 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9992415758227 -0.33431676329906 0.22880293370093 0.05 ShinyColor 1 1 1 50 0 null sphere 0.62309569300605 -0.19654657784118 0.21457690616091 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5125788883371 -0.13581922277972 0.21506592585759 0.05 ShinyColor 1 1 1 50 0 null sphere 4.0802871232473 -0.044906015531784 0.27050297692761 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2087292812344 -0.030991182344201 0.24262885421638 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5815829250085 0.010664404546419 0.280727934222 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6693319292937 0.029647260045134 0.20568563894839 0.05 ShinyColor 1 1 1 50 0 null sphere 3.3975267139984 0.019022195726181 0.28450672278732 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0352956643694 0.19057919659161 0.2095977965219 0.05 ShinyColor 1 1 1 50 0 null sphere 0.68457880578057 0.20244903832031 0.24769687652752 0.05 ShinyColor 1 1 1 50 0 null sphere -0.28670322451429 0.31030010960809 0.20901986415309 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4958196730328 0.33848542667175 0.2561435803794 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1543497323449 0.37876286714444 0.24529623438014 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3686815316049 0.41268305156017 0.24178418383119 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6201640449997 0.378451672792 0.28859670570507 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3169788127642 0.54400706828898 0.25458760861721 0.05 ShinyColor 1 1 1 50 0 null sphere 0.82981765569696 0.53129255617509 0.21977829748023 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7407818878398 0.5419620768301 0.28712964661501 0.05 ShinyColor 1 1 1 50 0 null sphere 2.159328841984 0.54818596387886 0.23782756992163 0.05 ShinyColor 1 1 1 50 0 null sphere 2.161507202451 0.7181869929821 0.22738033094692 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5599779690734 0.70858442439258 0.27761599069762 0.05 ShinyColor 1 1 1 50 0 null sphere 0.058989244708197 0.83995289745746 0.20581900795658 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1443104034972 0.89587896822416 0.22404610574223 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1726657428027 0.89961330045341 0.2446293893392 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0653926038838 0.94491430690116 0.2088864951449 0.05 ShinyColor 1 1 1 50 0 null sphere 0.18613436584712 0.87925229853676 0.25729944511703 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8282188743813 0.90637066353492 0.1995062082357 0.05 ShinyColor 1 1 1 50 0 null sphere 0.35742462869618 1.0754381095808 0.24551851606045 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4429149863358 1.2528633468065 0.20928660216946 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6424350225845 1.271668376961 0.21608842158703 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8089240011388 1.2241445537101 0.21039801057103 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6557282904585 1.258153650798 0.19688328440801 0.05 ShinyColor 1 1 1 50 0 null sphere 0.39494577633298 1.2334359279472 0.20439640520258 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5122676939846 1.4123282242629 0.2030627151207 0.05 ShinyColor 1 1 1 50 0 null sphere -4.0112550598358 1.4658091965462 0.27005841356698 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1436880147923 1.4505606732767 0.23533801510212 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6596927074705 1.41450658473 0.25374293823202 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7243774998328 1.486970412512 0.27939424414012 0.05 ShinyColor 1 1 1 50 0 null sphere 0.88227613225079 1.4335338965648 0.22124535657029 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6561362005855 1.6142489026591 0.26396789552641 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0627688566648 1.5673919244492 0.19901718853901 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3280406373414 1.5467641845161 0.20439640520258 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3750754408956 1.4495826338834 0.21955601579991 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2308138069813 1.5894867234723 0.21088703026771 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4209980126569 1.6155381364049 0.21022018522678 0.05 ShinyColor 1 1 1 50 0 null sphere 1.984570984922 1.609225336684 0.22449066910286 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9771023204635 1.7214331289059 0.19399362256394 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6002015033251 1.6236291895683 0.21502146952153 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7776267405508 1.6357213129773 0.21844460739835 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6489256476497 1.7277903849629 0.20079544198151 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8167483162858 1.7487737755844 0.19492720562125 0.05 ShinyColor 1 1 1 50 0 null sphere -0.76087450495758 1.8225268371122 0.23760528824131 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4417249385383 1.8443104417829 0.30073328545015 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1079912237166 1.8981026084186 0.23653833617581 0.05 ShinyColor 1 1 1 50 0 null sphere -0.61159012845949 1.8860549413456 0.19701665341619 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0545547077694 1.920464145458 0.29148636754914 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5441070570991 2.0055980290178 0.28183934262356 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1402657003068 2.0935326617496 0.23524910243 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8379626150813 2.3239498515618 0.29979970239284 0.05 ShinyColor 1 1 1 50 0 null sphere -0.73375613995941 2.3649385934115 0.24169527115907 0.05 ShinyColor 1 1 1 50 0 null sphere -0.75976309655601 2.5338726704493 0.20515216291564 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9182515814016 2.5319610479986 0.2876186663117 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0740710393009 2.5750392376432 0.2658795179771 0.05 ShinyColor 1 1 1 50 0 null sphere -0.93701050843745 2.5740167419138 0.27094754028824 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4682653711676 2.6230076242547 0.20177348137489 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4535058675948 2.7107644316422 0.29064169716395 0.05 ShinyColor 1 1 1 50 0 null sphere -3.9587521269459 3.0401414255297 0.2929534266392 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6350655440744 3.0861092770184 0.28877453104932 0.05 ShinyColor 1 1 1 50 0 null sphere -3.8483670445025 3.0950894569031 0.26801342210811 0.05 ShinyColor 1 1 1 50 0 null sphere -2.6974369601789 3.0620139428725 0.23493790807756 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1840551913284 3.1116272139183 0.29370918435227 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4832010533021 3.1089598337546 0.29473168008171 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3643700903981 3.1222967345733 0.27957206948437 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2995074726916 3.2358382168771 0.27259242472255 0.05 ShinyColor 1 1 1 50 0 null sphere -0.9656848451978 3.2950096001764 0.21546603288216 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0722466827398 3.3677401659747 0.26605734332135 0.05 ShinyColor 1 1 1 50 0 null sphere 1.599445745612 -2.449682602164 0.28801877333626 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6385673213471 -2.456795615934 0.27730479634518 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7393951149283 -2.4082048406176 0.27908304978768 0.05 ShinyColor 1 1 1 50 0 null sphere 2.9069955018841 -2.4595963651059 0.27285916273893 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0184030800569 -2.4576847426552 0.28779649165595 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2083283508185 -2.4302996396407 0.28397324675457 0.05 ShinyColor 1 1 1 50 0 null sphere -0.70726016366613 -2.4377238477631 0.2869073649347 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4518507098843 -2.350945079769 0.28446226645125 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5377942573782 -2.4055819167899 0.28712964661501 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7264669476277 -2.3503671474002 0.28312857636938 0.05 ShinyColor 1 1 1 50 0 null sphere -0.91278180528335 -2.3910891512335 0.28970811410664 0.05 ShinyColor 1 1 1 50 0 null sphere -0.36734701813178 -2.3316954862539 0.28166151727931 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8511225139471 -2.2891952289781 0.28121695391869 0.05 ShinyColor 1 1 1 50 0 null sphere 3.722635899624 -2.1591159896591 0.26414572087066 0.05 ShinyColor 1 1 1 50 0 null sphere -1.630262612997 -2.2577201430458 0.24178418383119 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3775641723238 -2.1956590979025 0.30251153889265 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1478685571647 -2.0185005986932 0.28606269454951 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2786488245846 -1.9986730728093 0.27943870047619 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1918358735306 -1.9595070407382 0.24938621729789 0.05 ShinyColor 1 1 1 50 0 null sphere 0.028892305193842 -1.8512558624258 0.30731282318741 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2590983099933 -1.8303169281403 0.29339798999983 0.05 ShinyColor 1 1 1 50 0 null sphere 0.091753564386305 -1.7919955664544 0.25031980035521 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4747020900118 -1.7705676124723 0.21475473150516 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1274083692998 -1.6620496961435 0.27485969786174 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2536660105 -1.5901193443943 0.28410661576275 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4282015858816 -1.5613560949618 0.27583773725512 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4134951651385 -1.4586619586573 0.27574882458299 0.05 ShinyColor 1 1 1 50 0 null sphere 0.28238233342257 -1.430698923274 0.22284578466854 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5467213544331 -1.3073325907004 0.27183666700949 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4478599129149 -1.1176374047214 0.28624051989376 0.05 ShinyColor 1 1 1 50 0 null sphere 0.38587668377622 -0.91629465869407 0.30202251919597 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9693685647712 -0.90344677757199 0.2839287904185 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4329225839979 -0.71650788442891 0.26250083643635 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9723010361688 -0.71753038015835 0.22435730009467 0.05 ShinyColor 1 1 1 50 0 null sphere 4.0648607746336 -0.63088498117242 0.24547405972439 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3891775493123 -0.60461128655944 0.2738372021323 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4776884676303 -0.56886839236514 0.29424266038502 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5711356860338 -0.47835529214177 0.29548743779477 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3450324076022 -0.49342599006697 0.31500376932623 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1964498825962 -0.3400960869872 0.23707181220856 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6068785802281 -0.37032639550974 0.27948315681225 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3201368594072 -0.35178810337165 0.28281738201694 0.05 ShinyColor 1 1 1 50 0 null sphere 4.1242988959492 -0.33849565888894 0.28881898738539 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3761423929611 -0.14942286161487 0.24685220614233 0.05 ShinyColor 1 1 1 50 0 null sphere -0.52899025605525 -0.18823324299748 0.27268133739468 0.05 ShinyColor 1 1 1 50 0 null sphere 0.54845350475701 -0.15120111505737 0.30304501492541 0.05 ShinyColor 1 1 1 50 0 null sphere -3.238292744716 -0.17600775058028 0.27850511741887 0.05 ShinyColor 1 1 1 50 0 null sphere -0.46821844465773 -0.027079024770696 0.22760261262724 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5396972533352 0.026757598201067 0.24525177804407 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5417945042325 0.061967016362616 0.24227320352788 0.05 ShinyColor 1 1 1 50 0 null sphere 4.0441885783645 0.056987906723609 0.29624319550783 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1485798585417 0.031203231807323 0.28913018173782 0.05 ShinyColor 1 1 1 50 0 null sphere -0.36405724926315 0.022089682914498 0.30549011340885 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9573208976982 0.19920372578775 0.28281738201694 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7316597124534 0.36711530709604 0.24494058369164 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9142060548199 0.35582339773615 0.28735192829532 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4368330947888 0.35377840627727 0.29184201823764 0.05 ShinyColor 1 1 1 50 0 null sphere 2.855737346404 0.54040610506791 0.20728606704665 0.05 ShinyColor 1 1 1 50 0 null sphere 0.87458518611196 0.89325604439647 0.27041406425549 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7300148280191 0.90201394260079 0.23191487722531 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0556558428948 1.069169766196 0.24627427377351 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1380428835036 1.019378669806 0.2363160544955 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2419278909969 1.2438831669219 0.23471562639725 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9416792471153 1.1791547416148 0.22618000987324 0.05 ShinyColor 1 1 1 50 0 null sphere 2.545921140384 1.243216321881 0.23324856730718 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2512739948463 1.4192189563526 0.28343977072182 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0779387405383 1.4269988151636 0.29353135900802 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4272321729819 1.4334449838927 0.28650725791013 0.05 ShinyColor 1 1 1 50 0 null sphere -4.1533375098917 1.617716496872 0.30362294729422 0.05 ShinyColor 1 1 1 50 0 null sphere -2.6375987318386 1.5187122364607 0.28641834523801 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5436180374024 1.5560555587532 0.28361759606607 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3886432498883 1.6067802382006 0.28548476218069 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1961917710735 1.6559934022218 0.28544030584463 0.05 ShinyColor 1 1 1 50 0 null sphere -0.79723978785675 1.6850678460068 0.24125070779844 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0255683532653 1.6711530128192 0.28944137609026 0.05 ShinyColor 1 1 1 50 0 null sphere -3.9873375510341 1.7971867255565 0.30949118365448 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8913999544198 1.9407362347026 0.28686290859863 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7098402779403 1.9752343514871 0.28641834523801 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1972142668029 2.0489874130149 0.30331175294178 0.05 ShinyColor 1 1 1 50 0 null sphere -0.7407802410573 2.1972048374475 0.26619071232954 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0180107761347 2.3454667182161 0.27903859345162 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3672152959061 2.3995256228682 0.29575417581115 0.05 ShinyColor 1 1 1 50 0 null sphere -3.7385154380919 2.5968228423139 0.2522314228059 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2744357459348 2.6562609636295 0.29135299854095 0.05 ShinyColor 1 1 1 50 0 null sphere -0.92402925830718 2.7393498557304 0.27228123037011 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7277561813735 2.908861865137 0.30509000638428 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0498867924828 2.9719898623458 0.23204824623349 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1181272683389 3.0827750518137 0.28206162430388 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8111109880995 3.1187846840244 0.29904394467978 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2637217689438 3.2082752885183 0.28913018173782 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4389241893663 3.2312147579266 0.29819927429459 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1034105743196 3.2745596855876 0.28637388890194 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0067633231109 -2.366549253727 0.28139477926294 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9819925174304 -0.91962888389876 0.25178685944527 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7938977595497 -0.92118485566095 0.26965830654242 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0116448935841 -0.53232528412172 0.23124803218437 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0328061095499 -0.16080368364688 0.23298182929081 0.05 ShinyColor 1 1 1 50 0 null sphere 4.1105618881059 -0.19485723707081 0.29753242925365 0.05 ShinyColor 1 1 1 50 0 null sphere 2.695872361923 0.54560749638723 0.25996682528078 0.05 ShinyColor 1 1 1 50 0 null sphere -0.0068061326643955 0.53858339528935 0.29237549427039 0.05 ShinyColor 1 1 1 50 0 null sphere 2.690893252284 0.71956513940004 0.25725498878097 0.05 ShinyColor 1 1 1 50 0 null sphere 1.991683998692 1.2513518313804 0.24618536110139 0.05 ShinyColor 1 1 1 50 0 null sphere 0.70471752601691 1.2413491557663 0.2529427241829 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5800183267527 1.4296661953273 0.22964760408612 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4093949089446 1.426554251803 0.23227052791381 0.05 ShinyColor 1 1 1 50 0 null sphere 1.052944006395 1.4290438066225 0.234537801053 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2295690295715 1.4200636267378 0.24116179512632 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5344958620159 0.19386896546024 0.27237014304224 0.05 ShinyColor 1 1 1 50 0 null sphere 0.71685410576199 0.54316239790379 0.29068615350001 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4044252491905 0.78598290547751 0.31104715541667 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1877364407279 1.089753049793 0.26143388437085 0.05 ShinyColor 1 1 1 50 0 null sphere 0.8828540646196 1.2396153586599 0.26036693230535 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0509434712721 1.2486844512167 0.25498771564178 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7839395402717 1.4176185282544 0.23676061785613 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3748976155513 1.2445500119628 0.26010019428897 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2001397584894 1.4261986011145 0.25387630724021 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9886165115037 1.4346008486303 0.25067545104371 0.05 ShinyColor 1 1 1 50 0 null sphere -3.8843322203771 2.8899234659743 0.30726836685135 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1365305446862 3.0651703427329 0.25360956922384 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6334120331464 -2.222288443204 0.3178934311703 0.05 ShinyColor 1 1 1 50 0 null sphere 3.3559600397799 -0.31413358672666 0.30686825982679 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2020958372761 -0.15702489508157 0.26112269001841 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1890256744737 0.023912392693063 0.27388165846836 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3550256333314 0.017243942283679 0.27148101632099 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1930267447194 0.19586950058305 0.27214786136192 0.05 ShinyColor 1 1 1 50 0 null sphere 0.16417293583222 0.72841195027649 0.29797699261427 0.05 ShinyColor 1 1 1 50 0 null sphere 0.36609361422838 0.91241672523943 0.28552921851676 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5343180366717 1.074104419499 0.26165616605116 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5441428869415 0.9001023201501 0.27841620474675 0.05 ShinyColor 1 1 1 50 0 null sphere 0.53751724608562 1.0739710504908 0.27797164138612 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6719181998877 1.2611322253142 0.31260312717886 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2869707859219 1.4357567133679 0.29633210817996 0.05 ShinyColor 1 1 1 50 0 null sphere -4.1348436740897 1.487681713889 0.29522069977839 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5084077958496 1.5732601608094 0.30446761767941 0.05 ShinyColor 1 1 1 50 0 null sphere -0.92442936533174 2.3942353188768 0.29739906024546 0.05 ShinyColor 1 1 1 50 0 null sphere -1.125683198687 2.9229989800049 0.30140013049109 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2594078575631 3.0722389001669 0.31442583695742 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9246010343562 -1.0941200029443 0.30308947126147 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0141789047397 -1.0746036714129 0.31060259205604 0.05 ShinyColor 1 1 1 50 0 null sphere 3.617496664836 -0.90358014658017 0.31384790458861 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5588134778421 0.36747095778454 0.2810835849105 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2705663979149 0.90063579618285 0.31807125651455 0.05 ShinyColor 1 1 1 50 0 null sphere 0.87245128198096 1.0609898003605 0.2734815514438 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2759456145784 1.0697032422288 0.31691539177693 0.05 ShinyColor 1 1 1 50 0 null sphere 0.71107478207386 1.0740599631629 0.28295075102513 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3807213955755 1.0884638160472 0.27734925268124 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8765507147836 1.1063352631443 0.31807125651455 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2208119547585 1.2421049134794 0.27317035709136 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4798668280974 1.4532280534405 0.29935513903221 0.05 ShinyColor 1 1 1 50 0 null sphere -3.8999363943351 1.5401401904428 0.32193895775199 0.05 ShinyColor 1 1 1 50 0 null sphere -0.92825261023312 1.8058112547527 0.30317838393359 0.05 ShinyColor 1 1 1 50 0 null sphere -0.91420440803735 1.9955953534038 0.30998020335117 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0609111404351 2.0698374346282 0.32024961698162 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8596495039775 -2.4435920841234 0.31340334122798 0.05 ShinyColor 1 1 1 50 0 null sphere -0.29039310040748 -2.2335803525638 0.32411731821906 0.05 ShinyColor 1 1 1 50 0 null sphere -0.11954740091905 -2.0537989295268 0.32238352111262 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1477249148803 -1.731268211393 0.30246708255659 0.05 ShinyColor 1 1 1 50 0 null sphere 3.063259523144 -1.5239683163332 0.326206766014 0.05 ShinyColor 1 1 1 50 0 null sphere 0.23903740576157 -1.3119115933148 0.33234174039063 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2384611201753 -1.2393588528607 0.3244285125715 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7862084601934 -1.0950980423377 0.29610982649965 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7799845731447 -1.3018644613647 0.29646547718815 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2791378442813 -1.1632051491855 0.32491753226819 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6025576891364 -1.0521087653652 0.31313660321161 0.05 ShinyColor 1 1 1 50 0 null sphere 4.089356215804 -0.73522400191125 0.32162776339956 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4268234394637 -0.72224275178098 0.33291967275945 0.05 ShinyColor 1 1 1 50 0 null sphere -0.5710904063065 -0.31817911330835 0.32571774631731 0.05 ShinyColor 1 1 1 50 0 null sphere -0.42367319592304 -0.13177369619803 0.32225015210443 0.05 ShinyColor 1 1 1 50 0 null sphere 0.55885628739565 0.0031068274157841 0.32891860251382 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3685403594944 0.17488610996152 0.2846400917955 0.05 ShinyColor 1 1 1 50 0 null sphere -0.18983286823396 0.18982343887855 0.33852117110333 0.05 ShinyColor 1 1 1 50 0 null sphere 0.56703625323116 0.18222140541185 0.33256402207095 0.05 ShinyColor 1 1 1 50 0 null sphere 2.357648557159 0.383430782431 0.29393146603258 0.05 ShinyColor 1 1 1 50 0 null sphere -0.0044944031891422 0.38178589799669 0.34754580732403 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3362206031769 0.54129523178916 0.28112804124656 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3973114120292 0.49892834352154 0.32558437730912 0.05 ShinyColor 1 1 1 50 0 null sphere 2.546632441761 0.55156464541961 0.28824105501657 0.05 ShinyColor 1 1 1 50 0 null sphere 0.70614012877092 0.71316342700703 0.30580130776128 0.05 ShinyColor 1 1 1 50 0 null sphere 2.340532867775 0.71867601267879 0.28379542141032 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5452987516791 0.72072100413766 0.28103912857444 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3410663438077 0.89694592028966 0.28268401300875 0.05 ShinyColor 1 1 1 50 0 null sphere 0.70382839929566 0.90410339039573 0.30482326836791 0.05 ShinyColor 1 1 1 50 0 null sphere 0.52573631702904 0.90161383557623 0.31144726244123 0.05 ShinyColor 1 1 1 50 0 null sphere -1.296262160159 1.2502848793149 0.30735727952347 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1109681514503 1.8072783138427 0.33078576862844 0.05 ShinyColor 1 1 1 50 0 null sphere -3.8583252637805 1.9537619411689 0.33549814025108 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2045948419806 1.9153072104748 0.31549278902292 0.05 ShinyColor 1 1 1 50 0 null sphere -0.95203675002659 2.1969380994311 0.32189450141593 0.05 ShinyColor 1 1 1 50 0 null sphere -3.639111070656 2.6841350863407 0.32411731821906 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1317292603915 2.748285579279 0.328340670145 0.05 ShinyColor 1 1 1 50 0 null sphere -1.305464621724 2.9661660823216 0.34385593143084 0.05 ShinyColor 1 1 1 50 0 null sphere 3.813593563208 -1.4673754005256 0.32345047317812 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6468378466373 -1.4695982173287 0.32571774631731 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6577741053087 -1.3092886694871 0.32776273777619 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9040177507592 -1.2999083825779 0.32962990389082 0.05 ShinyColor 1 1 1 50 0 null sphere 0.41766296406095 -0.68810028568493 0.33407553749707 0.05 ShinyColor 1 1 1 50 0 null sphere -1.120037244007 2.3772974548369 0.34687896228309 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1270168887688 2.5614355988081 0.33411999383314 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9430932233756 -1.9915600590393 0.35056883817628 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7694039651618 -1.6420443449154 0.34056616256221 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8060343392948 -1.0650455591594 0.34398930043903 0.05 ShinyColor 1 1 1 50 0 null sphere 0.35684669632736 0.71689775923628 0.32962990389082 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0642009093037 0.97198821556327 0.33976594851308 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4905808050885 1.2471729357905 0.34234441600471 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1347078349077 2.2079632707746 0.33425336284132 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5966989026611 2.8878340181794 0.34741243831584 0.05 ShinyColor 1 1 1 50 0 null sphere 0.067658230240396 -1.7165976204923 0.34954634244685 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8386216570199 -1.3599688925984 0.34736798197978 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6591522517266 -1.1164370836477 0.34701233129128 0.05 ShinyColor 1 1 1 50 0 null sphere 3.8202175572813 0.25730815702151 0.34465614547996 0.05 ShinyColor 1 1 1 50 0 null sphere 0.57614980212398 0.37076072665317 0.33918801614427 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5360526571694 0.26370986941452 0.3497241677911 0.05 ShinyColor 1 1 1 50 0 null sphere 0.53760615875774 0.53644949115834 0.34487842716028 0.05 ShinyColor 1 1 1 50 0 null sphere 0.16946323982366 0.55245377214087 0.34670113693884 0.05 ShinyColor 1 1 1 50 0 null sphere 0.53018195063529 0.71974296474429 0.33385325581676 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1350634855962 1.9925723225515 0.35110231420904 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6986809141973 2.2572208911319 0.35105785787297 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2403805457284 2.3027886355961 0.3522137226106 0.05 ShinyColor 1 1 1 50 0 null sphere -1.243670314597 2.7830504340799 0.3490128664141 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9736347262506 -2.3518342064903 0.46170967833269 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3649393962733 -2.2156644491306 0.47558005518421 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9544295890716 -1.9991176361699 0.38933476322284 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2040971957902 -1.5446405126023 0.35732620125779 0.05 ShinyColor 1 1 1 50 0 null sphere 3.3075915461439 -0.72326524751042 0.35128013955329 0.05 ShinyColor 1 1 1 50 0 null sphere 0.42837694105203 -0.52325619156495 0.35030210015991 0.05 ShinyColor 1 1 1 50 0 null sphere 0.35422377249967 0.6088244062682 0.35425871406948 0.05 ShinyColor 1 1 1 50 0 null sphere -1.714062806475 1.1450122755188 0.3543476267416 0.05 ShinyColor 1 1 1 50 0 null sphere -3.8305845100775 2.0110217020175 0.47553559884815 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6183396884386 -2.3968240185856 0.46402140780794 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7523310853312 -2.4567511595979 0.45513014059543 0.05 ShinyColor 1 1 1 50 0 null sphere 2.899793575442 -2.4109611334535 0.44668343674354 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0815755336018 -2.4573735483028 0.42792286292514 0.05 ShinyColor 1 1 1 50 0 null sphere -0.7303330020826 -2.4390130815089 0.4204986548027 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8202159104987 -2.4329225634684 0.45517459693149 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3685934423241 -2.4130061249124 0.45321851814474 0.05 ShinyColor 1 1 1 50 0 null sphere -0.89762219468602 -2.4359011379846 0.4674000893487 0.05 ShinyColor 1 1 1 50 0 null sphere -0.54966245232434 -2.365882408686 0.45726404472643 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2510875430084 -2.417007195158 0.457664151751 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1915238557869 -2.4385240618123 0.45015103095642 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0275244320521 -2.4181630598956 0.46895606111089 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5337931871326 -2.3902000245123 0.44450507627648 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1125685795485 -2.4112723278059 0.45855327847225 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7309928674124 -2.3631261158502 0.45175145905468 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7021493318015 -2.3360522071881 0.44552757200592 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8478763780233 -2.3773521433902 0.44286019184216 0.05 ShinyColor 1 1 1 50 0 null sphere 3.422822369218 -2.3276055033362 0.42783395025302 0.05 ShinyColor 1 1 1 50 0 null sphere -1.651557197971 -2.3672160987679 0.43801445121134 0.05 ShinyColor 1 1 1 50 0 null sphere -1.495204264039 -2.3532568092443 0.44148204542422 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2940837996919 -2.3535680035967 0.44010389900629 0.05 ShinyColor 1 1 1 50 0 null sphere -0.4230063508821 -2.3173805460418 0.40880663841824 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5003525725286 -2.3164469629845 0.39595875729616 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5220480879184 -2.3200479262055 0.43561380906397 0.05 ShinyColor 1 1 1 50 0 null sphere -2.836807573735 -2.2751914831184 0.39324692079634 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3822329110016 -2.2877726262241 0.45526350960362 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9257647021962 -2.1834336054853 0.45913121084106 0.05 ShinyColor 1 1 1 50 0 null sphere -0.36023400436177 -2.20099385823 0.4739351707499 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4626980558836 -2.1807217689855 0.46104283329175 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9871494524136 -2.1829445857886 0.37119657810931 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6023815105747 -2.1754759213301 0.43743651884253 0.05 ShinyColor 1 1 1 50 0 null sphere -0.24522546296792 -2.1315530613003 0.42178788854851 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0078310985677 -2.1206168026289 0.40609480191843 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1104807785361 -2.009876069497 0.43908140327685 0.05 ShinyColor 1 1 1 50 0 null sphere -0.17511782099726 -1.9959167799734 0.45650828701337 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3917012871917 -2.0325488008889 0.46535509788982 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6914720080441 -2.048953188896 0.44428279459617 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2719803741752 -1.9659532094672 0.4511290703498 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7435748339094 -1.9527941339927 0.45628600533306 0.05 ShinyColor 1 1 1 50 0 null sphere -0.068689352463482 -1.9214968734047 0.39404713484547 0.05 ShinyColor 1 1 1 50 0 null sphere -0.044238367629073 -1.8262269452226 0.41952061540932 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7922100655619 -1.8245820607883 0.44005944267022 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2352697138637 -1.8042655152077 0.45606372365275 0.05 ShinyColor 1 1 1 50 0 null sphere 1.185823994886 -1.8771294500142 0.44201552145698 0.05 ShinyColor 1 1 1 50 0 null sphere 1.109803660219 -1.8155574245676 0.47700265793821 0.05 ShinyColor 1 1 1 50 0 null sphere 0.0022185035563047 -1.6413330435384 0.46246543604575 0.05 ShinyColor 1 1 1 50 0 null sphere 3.8615619498195 -1.6435114040055 0.42485537573683 0.05 ShinyColor 1 1 1 50 0 null sphere 1.109848116555 -1.6485349699805 0.44868397186636 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3087560373751 -1.6335087283914 0.4417487834406 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5588143012334 -1.5738927817315 0.370974296429 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4161094624726 -1.4593732600343 0.41174075659837 0.05 ShinyColor 1 1 1 50 0 null sphere 0.12113920252366 -1.4568837052148 0.42667808551539 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1213623075952 -1.4555055587969 0.45224047875136 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2521989514099 -1.468397896255 0.41445259309819 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3508117312903 -1.5034739454084 0.45446329555449 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9225115865612 -1.467642138542 0.45281841112018 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1045594593462 -1.4401236665192 0.41596410852431 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5554800760287 -1.4671086625092 0.39084627864897 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4646994143977 -1.4741327636071 0.36643975015062 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3864212564764 -1.4305655542658 0.45264058577593 0.05 ShinyColor 1 1 1 50 0 null sphere 2.9584759390446 -1.4153170309963 0.37902089325632 0.05 ShinyColor 1 1 1 50 0 null sphere 0.14207813680913 -1.2917728730785 0.46482162185707 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1445240586838 -1.3468098171239 0.44081520038329 0.05 ShinyColor 1 1 1 50 0 null sphere 2.9117523298428 -1.2618537589084 0.45370753784143 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5846878888218 -1.282926062202 0.39142421101778 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9735474603611 -1.288616473218 0.456241548997 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3919782984843 -1.3161794015768 0.43801445121134 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3713411086663 -1.3223588322895 0.45032885630067 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5432982165563 -1.3265377278794 0.44406051291585 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7230796395933 -1.2984857798239 0.44903962255486 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1744439962452 -1.2666994995392 0.4497064675958 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2131201852284 -1.2270889041074 0.45144026470224 0.05 ShinyColor 1 1 1 50 0 null sphere 0.20178299614115 -1.1043449602387 0.46322119375882 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4101164835978 -1.1256395452127 0.43939259762928 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9989303814702 -1.2468275173192 0.47469092846296 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2738475402898 -1.1630717801773 0.45553024761999 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5821983340023 -1.1188821821312 0.38533369297721 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9346020631877 -1.1608934197103 0.40925120177887 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4369578373034 -1.0696245617738 0.4695339934797 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7970097030741 -1.105989844673 0.43361327394115 0.05 ShinyColor 1 1 1 50 0 null sphere 0.2849608009142 -1.0686020660444 0.38226620578889 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6090927705376 -1.0425506531117 0.46393249513582 0.05 ShinyColor 1 1 1 50 0 null sphere 4.0236052947675 -1.1047006109272 0.43623619776884 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4071379090816 -0.93687794229103 0.42481091940076 0.05 ShinyColor 1 1 1 50 0 null sphere 0.29843107074116 -0.94274617865129 0.40200481900067 0.05 ShinyColor 1 1 1 50 0 null sphere 4.1178527272201 -0.89171030485147 0.44961755492367 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4442947795363 -0.89611148212166 0.40391644145136 0.05 ShinyColor 1 1 1 50 0 null sphere 0.32790562155064 -0.7506058941889 0.41707551692588 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4057153063276 -0.72575480232992 0.40236046968917 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2949659467021 -0.70446021735596 0.43730314983434 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4207773777592 -0.7715003721383 0.36572844877362 0.05 ShinyColor 1 1 1 50 0 null sphere 4.1523953003407 -0.69365732769275 0.43979270465385 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2988406276506 -0.6527574985152 0.46179859100482 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1433323641038 -0.67089568362872 0.46139848398025 0.05 ShinyColor 1 1 1 50 0 null sphere 0.34155371672184 -0.53583733467066 0.4229882096222 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3620575375316 -0.63146291354123 0.40627262726268 0.05 ShinyColor 1 1 1 50 0 null sphere -0.90784715198041 -0.62123795624684 0.43508033303122 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5008057623829 -0.58989623932273 0.46206532902119 0.05 ShinyColor 1 1 1 50 0 null sphere 4.1640428603891 -0.55548703521031 0.45215156607924 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3177806735958 -0.53641526703947 0.44534974666167 0.05 ShinyColor 1 1 1 50 0 null sphere -0.72339781365684 -0.55433117047268 0.45068450698918 0.05 ShinyColor 1 1 1 50 0 null sphere 3.3271967903475 -0.53512603329366 0.45797534610344 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5974093806468 -0.49573771954223 0.44259345382579 0.05 ShinyColor 1 1 1 50 0 null sphere 0.453939334288 -0.33396111261056 0.37350830758457 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2583870086163 -0.33516143368425 0.44668343674354 0.05 ShinyColor 1 1 1 50 0 null sphere -0.53259121927632 -0.36379131410854 0.39929298250085 0.05 ShinyColor 1 1 1 50 0 null sphere 3.3697415039593 -0.36267990570698 0.43610282876065 0.05 ShinyColor 1 1 1 50 0 null sphere 4.1566631086027 -0.35805644675647 0.43499142035909 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6710735295025 -0.34738692610146 0.45615263632487 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2178872864633 -0.23011111156842 0.40480556817261 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6776530672397 -0.17618557592453 0.43490250768697 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4189991243167 -0.14351016891855 0.45597481098062 0.05 ShinyColor 1 1 1 50 0 null sphere -0.35632184678826 -0.19823591861156 0.40969576513949 0.05 ShinyColor 1 1 1 50 0 null sphere 4.1118066655156 -0.17889741242435 0.44303801718641 0.05 ShinyColor 1 1 1 50 0 null sphere 0.46194147477926 -0.14502168434467 0.37817622287114 0.05 ShinyColor 1 1 1 50 0 null sphere -0.29279374255486 -0.025745334688819 0.37866524256782 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4669230545921 0.0065744216286637 0.45535242227574 0.05 ShinyColor 1 1 1 50 0 null sphere 0.47945727118791 0.018711001373743 0.37541993003526 0.05 ShinyColor 1 1 1 50 0 null sphere 4.0050670026294 0.0083526750711661 0.45437438288237 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0961213819879 0.0065744216286637 0.45130689569405 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6628491073309 0.025112713766752 0.45597481098062 0.05 ShinyColor 1 1 1 50 0 null sphere -0.17711835612007 0.0012396613011564 0.40404981045955 0.05 ShinyColor 1 1 1 50 0 null sphere -0.14342045338465 0.15834835294625 0.37586449339588 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9250011413807 0.15150207719262 0.39209105605872 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0221460387798 0.14750100694699 0.41125173690168 0.05 ShinyColor 1 1 1 50 0 null sphere 0.48047976691735 0.19840351173862 0.37519764835494 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6186595092847 0.19431352882086 0.44806158316148 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4883954649103 0.13051868657109 0.3987595064681 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9570619627842 0.20822836200845 0.459086754505 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6036262879845 0.1863113883296 0.44401605657979 0.05 ShinyColor 1 1 1 50 0 null sphere 3.793010279611 0.17124069040439 0.45686393770187 0.05 ShinyColor 1 1 1 50 0 null sphere 0.0012849204989909 0.19453581050118 0.40631708359874 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6611527868494 0.28358185163449 0.37684253278926 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5121865844149 0.38525349220957 0.40129351762367 0.05 ShinyColor 1 1 1 50 0 null sphere 0.030581645964219 0.3303499171723 0.36906267397831 0.05 ShinyColor 1 1 1 50 0 null sphere 0.48399181746629 0.37613994331674 0.3734638512485 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7241918713861 0.28402641499511 0.37853187355964 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8598804121515 0.33395088039337 0.42778949391696 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7533630309456 0.39645648889733 0.49029510242092 0.05 ShinyColor 1 1 1 50 0 null sphere -2.6862339634911 0.51173176830756 0.41489715645881 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4822230139087 0.55112008205899 0.41427476775394 0.05 ShinyColor 1 1 1 50 0 null sphere 0.19751518787914 0.4871029581289 0.36710659519156 0.05 ShinyColor 1 1 1 50 0 null sphere 0.35524626822911 0.53493797573222 0.37017408237987 0.05 ShinyColor 1 1 1 50 0 null sphere 0.46220821279564 0.49972855757067 0.36924049932256 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5599779690734 0.56561284761538 0.47206800463527 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5101868726833 0.65852658998614 0.41934279006507 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4764881465566 0.70391650910602 0.42009854777813 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3677924048837 0.77100112022442 0.36915158665044 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3637921580293 0.7127188636464 0.44486072696498 0.05 ShinyColor 1 1 1 50 0 null sphere -2.296085158206 0.82079221661449 0.38288859449377 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1633385387232 0.87631818035663 0.3911574730014 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0028511655374 0.89378952042922 0.42289929695007 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3729048835309 1.0068419830363 0.36888484863406 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8433418317449 1.0166223769701 0.38835672382946 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5000500046698 1.0877525146702 0.38262185647739 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6471560207008 1.0906421765142 0.38960150123921 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4221625038882 1.1150931613487 0.36039368844611 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2447833697811 1.4306442347207 0.44810603949755 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0770496138171 1.4325114008353 0.44294910451429 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4259873955721 1.4482934001376 0.45108461401374 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8931782078623 1.462786165694 0.45032885630067 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6207061475261 1.4917272404707 0.43636956677703 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2763012652669 1.4928386488722 0.42552222077776 0.05 ShinyColor 1 1 1 50 0 null sphere -2.725222170218 1.5095097748957 0.43641402311309 0.05 ShinyColor 1 1 1 50 0 null sphere -4.1619620390878 1.5174230027148 0.39818157409929 0.05 ShinyColor 1 1 1 50 0 null sphere -4.0750943584216 1.5029746934945 0.36670648816699 0.05 ShinyColor 1 1 1 50 0 null sphere -3.7390044577886 1.5273367656568 0.40662827795118 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2894603407414 1.6024235172665 0.45023994362855 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5337042744604 1.5845076138332 0.44948418591549 0.05 ShinyColor 1 1 1 50 0 null sphere -4.0229915325563 1.5869971686528 0.46455488384069 0.05 ShinyColor 1 1 1 50 0 null sphere -3.8410762053883 1.5682365948344 0.45450775189056 0.05 ShinyColor 1 1 1 50 0 null sphere -4.2028618682654 1.6275858034779 0.44975092393186 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4968046921372 1.6002007004633 0.46144294031632 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3878874921752 1.6272301527894 0.43072361209708 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1352413109404 1.649725058837 0.37688698912532 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6572920653231 1.6202060516915 0.46237652337363 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1803653154352 1.6823560095069 0.43588054708034 0.05 ShinyColor 1 1 1 50 0 null sphere -4.1595169406044 1.7480624742074 0.46446597116857 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0141430748973 1.6932922681783 0.47593570587271 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8415191219663 1.68311176722 0.44917299156305 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1576028479799 1.7579317808133 0.39351365881272 0.05 ShinyColor 1 1 1 50 0 null sphere -4.0437526414975 1.8239938962023 0.42218799557307 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6304420851238 1.8653382887405 0.39289127010784 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6599610922694 1.9712332812415 0.46619976827501 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3016858331586 1.8019880098513 0.43281305989203 0.05 ShinyColor 1 1 1 50 0 null sphere -3.9527949779135 1.9477603358004 0.48442686606066 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4447479693905 1.9375353785061 0.44908407889092 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2508738878217 1.9286885676296 0.44606104803867 0.05 ShinyColor 1 1 1 50 0 null sphere -1.313288936871 2.0039086882475 0.41943170273719 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0660688988096 1.9395359136289 0.43917031594897 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9058038073041 1.9498053272593 0.44623887338292 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7162864466694 1.9568738846933 0.46468825284888 0.05 ShinyColor 1 1 1 50 0 null sphere -1.231578191188 1.9903495057484 0.36101607715099 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1820101998695 2.0286708674343 0.45619709266093 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5515757215576 1.9550956312508 0.45744187007068 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3803743713807 1.9624309267011 0.46411032048007 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0504194451243 2.0752166512918 0.40751740467243 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9968051038329 2.1224292801903 0.44343812421098 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8492989807773 2.1703087541296 0.44632778605504 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6567585892903 2.2006724316604 0.43739206250647 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3134223058792 2.209652611545 0.42525548276139 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6599149891508 2.3322187300695 0.45388536318568 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3197351056 2.3933906484916 0.41547508882763 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1175476891875 2.3845438376151 0.37795394119082 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0118758017581 2.3150585843493 0.45797534610344 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8477430090151 2.3172814011525 0.44646115506323 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1936133035818 2.3464892139456 0.44583876635836 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3733947266188 2.3781421252221 0.4438826875716 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5352157898866 2.4103285125314 0.45775306442312 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7230438097509 2.4709224985847 0.45001766194824 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2904383801348 2.5614355988081 0.41676432257344 0.05 ShinyColor 1 1 1 50 0 null sphere -2.924208730434 2.5350285351869 0.43223512752321 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0213458247307 2.5856198456261 0.43356881760509 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1369767548294 2.645947093663 0.43645847944916 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1688947573398 2.6827124835867 0.36764007122431 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2694121799598 2.7220563410021 0.4521960224153 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6814335025876 2.7574435845079 0.40827316238549 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3228470491244 2.7509529594428 0.39369148415697 0.05 ShinyColor 1 1 1 50 0 null sphere -3.46710950643 2.7920306139646 0.44094856939147 0.05 ShinyColor 1 1 1 50 0 null sphere -2.6733416260329 2.7821168510226 0.44926190423517 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5628231745814 2.7656235503434 0.46984518783214 0.05 ShinyColor 1 1 1 50 0 null sphere -3.8055111365382 2.9359802301351 0.39551419393554 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7491396790196 2.8329304431421 0.41938724640113 0.05 ShinyColor 1 1 1 50 0 null sphere -2.520634111658 2.8987702768508 0.43103480644952 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3007077937653 2.8976588684492 0.39155758002597 0.05 ShinyColor 1 1 1 50 0 null sphere -2.912827908402 2.891790632089 0.45859773480831 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4693751327866 2.9241103884064 0.40547241321355 0.05 ShinyColor 1 1 1 50 0 null sphere -3.8231603019551 3.0838864602153 0.45281841112018 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2940393433559 3.1038028987713 0.40187144999248 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6655609438307 3.0201805306376 0.37724263981382 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5197005286007 3.0468098759391 0.43179056416259 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4677302483523 3.0587241740039 0.38635618870665 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1063018829462 3.085131237625 0.45117352668586 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1874338728691 3.0794852829451 0.43845901457197 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9997836783491 3.0529448503157 0.42778949391696 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8545003720966 3.0741060662815 0.4045832864923 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3775291658727 3.0834863531907 0.43370218661328 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6432010535738 3.160395814579 0.39231333773903 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4531057605703 3.2491751176959 0.44628332971898 0.05 ShinyColor 1 1 1 50 0 null sphere -3.273857813566 3.2413952588849 0.44446061994042 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1340409898667 3.2616228917934 0.3897348702474 0.05 ShinyColor 1 1 1 50 0 null sphere -1.26429805453 3.2054300830103 0.4031606837383 0.05 ShinyColor 1 1 1 50 0 null sphere 0.10144504564794 -1.6000775636723 0.3817771860922 0.05 ShinyColor 1 1 1 50 0 null sphere 2.483371075544 -1.566424117273 0.36563953610149 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4200652529909 -1.509608919785 0.36924049932256 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5347634234236 -0.99480454818055 0.38355543953471 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2626906467207 -0.8985565806051 0.47126779058614 0.05 ShinyColor 1 1 1 50 0 null sphere 0.33719699578771 -0.33791772652013 0.43410229363784 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1666291309831 -0.156624788057 0.46780019637326 0.05 ShinyColor 1 1 1 50 0 null sphere 0.35386812181117 0.1949803738618 0.41036261018043 0.05 ShinyColor 1 1 1 50 0 null sphere 0.17422006778236 0.37533972926762 0.38773433512459 0.05 ShinyColor 1 1 1 50 0 null sphere 0.36195917497456 0.36982714359586 0.38853454917371 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4536820461565 0.89845743571579 0.40413872313167 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8460981245808 0.90125818488773 0.45250721676774 0.05 ShinyColor 1 1 1 50 0 null sphere -3.5469975423344 1.9020592223281 0.40084895426304 0.05 ShinyColor 1 1 1 50 0 null sphere -1.652268499348 2.9161971605873 0.44699463109598 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1597734053446 -2.3132016504519 0.43725869349828 0.05 ShinyColor 1 1 1 50 0 null sphere 0.3380416661729 -0.16929484383483 0.4313015444659 0.05 ShinyColor 1 1 1 50 0 null sphere 0.33452961562396 0.012087007300421 0.43294642890021 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4829787716218 2.201828296398 0.45486340257906 0.05 ShinyColor 1 1 1 50 0 null sphere 0.89356804161068 -2.1863232673293 0.47940330008559 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0873532105074 -2.1215503856862 0.48162611688872 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0632134200254 -1.9929382054572 0.47064540188127 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0610367063409 -1.3121338749951 0.45499677158724 0.05 ShinyColor 1 1 1 50 0 null sphere -0.37481568259029 -0.34191879676576 0.46313228108669 0.05 ShinyColor 1 1 1 50 0 null sphere 0.18053286750324 0.1960473259273 0.42574450245808 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1768532648862 0.7553524899304 0.48047025215109 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1688964041223 3.1728880450125 0.42432189970408 0.05 ShinyColor 1 1 1 50 0 null sphere 0.76348880229162 -2.2239777839743 0.46691106965201 0.05 ShinyColor 1 1 1 50 0 null sphere 0.78682837872447 -2.2772809309133 0.46539955422588 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4214886791362 -1.2949292729389 0.45344079982505 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4314024420781 -1.1086572248368 0.46242097970969 0.05 ShinyColor 1 1 1 50 0 null sphere -0.19836848475798 -0.17058407758065 0.45970914320988 0.05 ShinyColor 1 1 1 50 0 null sphere -0.012007523983715 0.012175919972547 0.44628332971898 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6445775532092 0.89814624136335 0.45526350960362 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4438127395507 2.5511217288415 0.48376002101972 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5101860492921 2.7375271459519 0.45788643343131 0.05 ShinyColor 1 1 1 50 0 null sphere 3.017736235016 -2.4422583940415 0.4937626966338 0.05 ShinyColor 1 1 1 50 0 null sphere 0.8168364055667 -2.2754582211348 0.47206800463527 0.05 ShinyColor 1 1 1 50 0 null sphere -0.11603535037011 -1.8364074461809 0.50020886536287 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9043734014477 -1.5902082570664 0.50647720874769 0.05 ShinyColor 1 1 1 50 0 null sphere 1.874408184159 -1.1853888608808 0.50189820613325 0.05 ShinyColor 1 1 1 50 0 null sphere 4.0805983175997 -1.0691799984132 0.48700533355229 0.05 ShinyColor 1 1 1 50 0 null sphere 0.19444770069082 -0.92238517673464 0.4987418062728 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3666381869286 -0.86259140473049 0.49531866839599 0.05 ShinyColor 1 1 1 50 0 null sphere -0.95719368500985 -0.66480516558815 0.5063438397395 0.05 ShinyColor 1 1 1 50 0 null sphere 3.3539595046571 -0.46417372093781 0.48340437033122 0.05 ShinyColor 1 1 1 50 0 null sphere -0.54045999075939 -0.52227815217158 0.50425439194456 0.05 ShinyColor 1 1 1 50 0 null sphere 0.19129130083038 0.021822944898122 0.45175145905468 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6197264613502 0.37347256315299 0.50118690475625 0.05 ShinyColor 1 1 1 50 0 null sphere -1.478177487327 1.9951507900431 0.48976162638817 0.05 ShinyColor 1 1 1 50 0 null sphere -1.460394952902 2.3591592697234 0.46090946428356 0.05 ShinyColor 1 1 1 50 0 null sphere -3.7037950396271 2.8728077765902 0.49047292776517 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4674207007824 2.8176819198727 0.49594105710086 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0105429350675 2.9668773836986 0.49327367693711 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8309385139835 2.8945024685888 0.49954202032193 0.05 ShinyColor 1 1 1 50 0 null sphere -3.7587875273365 3.1743995604387 0.47762504664309 0.05 ShinyColor 1 1 1 50 0 null sphere -3.636977166525 3.1778671546515 0.49425171633049 0.05 ShinyColor 1 1 1 50 0 null sphere 0.032804462767348 -1.4608847754605 0.5146571745832 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2589118581554 -1.3031981514465 0.49265128823223 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3675273136499 -1.2586084463758 0.49571877542055 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0825091166591 -1.1327081026466 0.48629403217529 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2686477957531 -1.0996325886161 0.48135937887234 0.05 ShinyColor 1 1 1 50 0 null sphere 0.1520808124232 -0.73464606954244 0.51959182788615 0.05 ShinyColor 1 1 1 50 0 null sphere 0.17248627067592 -0.33827337720863 0.49016173341273 0.05 ShinyColor 1 1 1 50 0 null sphere 0.18195547025724 -0.15373512621294 0.46828921606995 0.05 ShinyColor 1 1 1 50 0 null sphere -0.021699005245354 -0.14733341381993 0.48002568879047 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6331522748411 0.54863052723949 0.50887785089507 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6449332038977 0.73174617548118 0.48718315889654 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0414392652397 0.74521644530814 0.51865824482883 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4539487841729 1.7894513230817 0.49718583451062 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6598705328147 2.7441955963612 0.49465182335505 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8186693886215 -2.2682562946926 0.47558005518421 0.05 ShinyColor 1 1 1 50 0 null sphere 0.87903081971822 -2.0061417372678 0.50794426783776 0.05 ShinyColor 1 1 1 50 0 null sphere 0.19146912617463 -0.53428136290847 0.49785267955155 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5829540917154 0.076015218558386 0.52417083050059 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9836904846944 2.9717675806655 0.51336794083739 0.05 ShinyColor 1 1 1 50 0 null sphere -0.28581409779304 -2.0753602525172 0.52617136562341 0.05 ShinyColor 1 1 1 50 0 null sphere 0.92708811900185 -1.9026918432502 0.51474608725533 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1591160101886 -1.8881990776938 0.5114563183867 0.05 ShinyColor 1 1 1 50 0 null sphere -0.37214830242653 -0.48435689751021 0.52532669523822 0.05 ShinyColor 1 1 1 50 0 null sphere -0.17622922939882 -0.35685612568278 0.51367913518983 0.05 ShinyColor 1 1 1 50 0 null sphere -0.0031607131072653 -0.36072382692023 0.51470163091926 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8294714548934 0.71938731405579 0.53017243586904 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4395457546799 2.9126406537023 0.51901389551733 0.05 ShinyColor 1 1 1 50 0 null sphere 0.77037953438132 -2.0604229236002 0.51665770970602 0.05 ShinyColor 1 1 1 50 0 null sphere 0.063701616330828 -1.359657698246 0.52350398545965 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3899324836341 0.60504561770288 0.52817190074622 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6148362643833 2.4747457434861 0.52723831768891 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1840910211708 -2.3519675754985 0.64415848153345 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3655617849782 -2.1616944571507 0.60263626365101 0.05 ShinyColor 1 1 1 50 0 null sphere 0.77060181606163 -2.1513805871842 0.59152217963537 0.05 ShinyColor 1 1 1 50 0 null sphere 0.78349415351977 -2.0267250208647 0.56676000044853 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0883312499008 -1.8498777160079 0.61979640937116 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2144110657567 -0.92603059629177 0.62019651639572 0.05 ShinyColor 1 1 1 50 0 null sphere 0.030848383980595 -0.53099159403984 0.53559610886867 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6639605157325 1.6321648060923 0.59561216255313 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5038296166264 1.9200195820974 0.62139683746941 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6317296720871 2.000707832051 0.53061699922966 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1969030724505 2.0098658372798 0.63855698318956 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0009395430867 2.1106038947976 0.57614028735773 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8116358376387 -2.4574624609749 0.56507065967815 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0823757476509 -2.4292326875752 0.63473373828818 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2005040356715 -2.3995358550854 0.64998226155764 0.05 ShinyColor 1 1 1 50 0 null sphere -0.92536294838906 -2.402825623954 0.62797637520667 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9406036685561 -2.4569734412782 0.63046593002618 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2641132494747 -2.4396354702138 0.64051306197632 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0218784773722 -2.4307886593374 0.62170803182185 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8479652906954 -2.4245203159526 0.63273320316537 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2971957432163 -2.4381684111238 0.61241665758478 0.05 ShinyColor 1 1 1 50 0 null sphere -0.72424248404203 -2.3376081789502 0.63242200881293 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8016331620246 -2.4035813816671 0.65936254846684 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4682637243851 -2.4278100848212 0.64455858855801 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8890795984509 -2.3707281493169 0.6193963023466 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3691269183568 -2.3649043692927 0.65402778813933 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6561362005855 -2.4227420625101 0.62406421763317 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5390390347879 -2.3470773785316 0.62650931611661 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6580836528786 -2.330361796172 0.595523249881 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4120194795548 -2.3376081789502 0.63024364834586 0.05 ShinyColor 1 1 1 50 0 null sphere -2.6934358899332 -2.2899065303551 0.59752378500382 0.05 ShinyColor 1 1 1 50 0 null sphere -0.55735339846317 -2.2916403274616 0.61801815592866 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6920935733577 -2.3479220489168 0.641002081673 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0337396926072 -2.4074046265685 0.61299458995359 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5390304082943 -2.3422760942368 0.64255805343519 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3726747987482 -2.3437876096629 0.64024632395994 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7566972561502 -2.2350474116539 0.65482800218846 0.05 ShinyColor 1 1 1 50 0 null sphere -0.51271923705635 -2.2445610675713 0.63664536073887 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5141356834905 -2.2524298390544 0.53786338200786 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5921549064978 -2.1916135713208 0.63646753539462 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8839312899613 -2.1599162037082 0.60068018486426 0.05 ShinyColor 1 1 1 50 0 null sphere 0.88116472384922 -2.1706301806993 0.62219705151854 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5959353418457 -2.1719194144451 0.63251092148505 0.05 ShinyColor 1 1 1 50 0 null sphere -0.37454894457391 -2.1631170599047 0.62855430757549 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0546333471653 -2.1623168458556 0.63833470150925 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2292578352191 -2.1252847179154 0.63411134958331 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0654465101047 -1.98782572681 0.59636792026619 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4392251104426 -2.0236130773404 0.62299726556767 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2667789828559 -2.0290812066761 0.58778784740612 0.05 ShinyColor 1 1 1 50 0 null sphere -0.29715046348899 -2.0500201409615 0.6139281730109 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6893825602492 -2.0626901967394 0.63735666211587 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7586010754986 -1.953683260714 0.6301991920098 0.05 ShinyColor 1 1 1 50 0 null sphere 0.82901744164784 -1.9766671864583 0.64082425632875 0.05 ShinyColor 1 1 1 50 0 null sphere -0.1991686988071 -2.00058469526 0.65789548937678 0.05 ShinyColor 1 1 1 50 0 null sphere -0.14635457156478 -1.8510335807455 0.59912421310207 0.05 ShinyColor 1 1 1 50 0 null sphere 0.89748019918418 -1.8892660297593 0.6298435413213 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1300860227397 -1.8408975361232 0.64438076321376 0.05 ShinyColor 1 1 1 50 0 null sphere 3.8351993425344 -1.8177357850346 0.63597851569793 0.05 ShinyColor 1 1 1 50 0 null sphere -0.082470816642876 -1.7876833018563 0.64655912368082 0.05 ShinyColor 1 1 1 50 0 null sphere 1.151770441462 -1.6322639509816 0.57565126766104 0.05 ShinyColor 1 1 1 50 0 null sphere 3.8864574980145 -1.6911685962645 0.58214189272617 0.05 ShinyColor 1 1 1 50 0 null sphere -0.048639544899267 -1.6508911557918 0.63557840867337 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2306017985772 -1.6483126883002 0.62739844283786 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9286021046018 -1.6273737540147 0.6613186272536 0.05 ShinyColor 1 1 1 50 0 null sphere -0.019298363097975 -1.469109197632 0.62708724848542 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1515926161178 -1.521701043194 0.5670267384649 0.05 ShinyColor 1 1 1 50 0 null sphere 3.97705951091 -1.4625741162308 0.61841826295322 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2886173171388 -1.4789785042379 0.62971017231311 0.05 ShinyColor 1 1 1 50 0 null sphere 1.1932482030084 -1.4559945784936 0.65051573759039 0.05 ShinyColor 1 1 1 50 0 null sphere -0.011162853598527 -1.2866159380952 0.61415045469122 0.05 ShinyColor 1 1 1 50 0 null sphere 4.0394762067418 -1.3216030745764 0.61650664050253 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5884658539959 -1.3593909602296 0.59641237660225 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3047549671295 -1.2882163661935 0.63326667919812 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2420612600051 -1.2904836393327 0.63473373828818 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3749420718874 -1.3554788026561 0.58165287302948 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7227684452409 -1.3300942347644 0.63179962010805 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1925377250227 -1.3325393332478 0.5840090588408 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9934177957985 -1.2911504843736 0.62544236405111 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8790769228368 -1.2562522605645 0.63224418346868 0.05 ShinyColor 1 1 1 50 0 null sphere 1.964654546366 -1.1143031795167 0.65998493717172 0.05 ShinyColor 1 1 1 50 0 null sphere 4.1162522991219 -1.1089684191892 0.62393084862498 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3167034482541 -1.1548029016697 0.62277498388735 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3350741883242 -1.1146143738692 0.63446700027181 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0904223444783 -1.0872737271907 0.62944343429674 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4364688176067 -1.0559764666026 0.63024364834586 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8169261416301 -1.0413503320381 0.59067750925018 0.05 ShinyColor 1 1 1 50 0 null sphere 0.096510392344999 -1.0755817108062 0.54906637869563 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6159835026273 -0.97342105053446 0.6572731006719 0.05 ShinyColor 1 1 1 50 0 null sphere 4.1550626805045 -0.94430215041348 0.62508671336261 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3046660544574 -0.90824806186674 0.64335826748432 0.05 ShinyColor 1 1 1 50 0 null sphere 0.10308993008226 -0.90944838294043 0.55733525720326 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2989756434414 -0.71459626197822 0.62557573305929 0.05 ShinyColor 1 1 1 50 0 null sphere 4.1759571584539 -0.73126738800168 0.62895441460005 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1082563149504 -0.75705206291797 0.63824578883713 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2965663748004 -0.72393209255136 0.63219972713262 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3145337142807 -0.7145073493061 0.62557573305929 0.05 ShinyColor 1 1 1 50 0 null sphere -0.87975074758887 -0.74167017064032 0.61557305744522 0.05 ShinyColor 1 1 1 50 0 null sphere -0.74402555358987 -0.64844523391713 0.54519867745818 0.05 ShinyColor 1 1 1 50 0 null sphere -0.55041821003741 -0.72771088111668 0.61597316446978 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5279685837171 -0.62434989977122 0.62495334435442 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2339360237819 -0.52076663674545 0.62001869105147 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6375979084474 -0.5480183707518 0.64749270673814 0.05 ShinyColor 1 1 1 50 0 null sphere -0.34623025850206 -0.59540882499449 0.56942738061228 0.05 ShinyColor 1 1 1 50 0 null sphere 3.3623617521729 -0.5046734430908 0.62397530496104 0.05 ShinyColor 1 1 1 50 0 null sphere 4.1670214349053 -0.52001087903239 0.63646753539462 0.05 ShinyColor 1 1 1 50 0 null sphere -1.7100172798933 -0.38095145982869 0.58707654602912 0.05 ShinyColor 1 1 1 50 0 null sphere 4.124876828318 -0.34236336012639 0.62922115261643 0.05 ShinyColor 1 1 1 50 0 null sphere -3.236158840585 -0.39499966202446 0.57205030443997 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1355986084115 -0.3317827521435 0.66420828909766 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4161539188086 -0.33707305613494 0.64309152946794 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0777609151941 -0.16622735664652 0.61828489394503 0.05 ShinyColor 1 1 1 50 0 null sphere -1.789416296101 -0.18054229685866 0.63295548484568 0.05 ShinyColor 1 1 1 50 0 null sphere 4.0926459846727 -0.20783848720107 0.57556235498891 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4858614537547 -0.19192311889068 0.65344985577052 0.05 ShinyColor 1 1 1 50 0 null sphere 4.0117799093749 -0.15889206119619 0.64384728718101 0.05 ShinyColor 1 1 1 50 0 null sphere -1.7352684787768 -0.094874937266104 0.56040274439158 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0570442625889 -0.040060274900964 0.56924955526803 0.05 ShinyColor 1 1 1 50 0 null sphere -1.729000135392 0.02195631390631 0.57067215802203 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9324698058392 -0.034236494876769 0.59672357095469 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6197639379752 -0.011297025468486 0.61721794187953 0.05 ShinyColor 1 1 1 50 0 null sphere 3.797278087873 -0.0081406256080443 0.62815420055092 0.05 ShinyColor 1 1 1 50 0 null sphere -2.926342634565 0.0046183428419109 0.65736201334403 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8709944961671 0.17666436340403 0.59156663597143 0.05 ShinyColor 1 1 1 50 0 null sphere -1.7237542877366 0.19257973171442 0.56627098075184 0.05 ShinyColor 1 1 1 50 0 null sphere -1.7035711111642 0.36818225916155 0.55520135307226 0.05 ShinyColor 1 1 1 50 0 null sphere -2.6976147855231 0.31923583315666 0.59707922164319 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5330818857556 0.4943493409071 0.55582374177713 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3633920510048 0.52111205521676 0.58565394327511 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1810766168122 0.65568138447814 0.55337864329369 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8571677522604 0.65830430830583 0.55177821519544 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2537190933297 1.4539838111536 0.63193298911624 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0638460820065 1.4591407461368 0.63157733842774 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4633307178647 1.4974621078228 0.63917937189444 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8958455880261 1.4951948346836 0.64037969296813 0.05 ShinyColor 1 1 1 50 0 null sphere -2.76505504733 1.5223131996817 0.60934917039646 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6067024016664 1.5293817571157 0.59201119933206 0.05 ShinyColor 1 1 1 50 0 null sphere -3.681700240604 1.5491203703274 0.62219705151854 0.05 ShinyColor 1 1 1 50 0 null sphere -2.6730304316805 1.5613458627447 0.62361965427254 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5404171812059 1.5987336413733 0.61139416185534 0.05 ShinyColor 1 1 1 50 0 null sphere -3.8332518902413 1.5997561371027 0.64695923070539 0.05 ShinyColor 1 1 1 50 0 null sphere -4.1556047830309 1.6659071651638 0.61459501805184 0.05 ShinyColor 1 1 1 50 0 null sphere -4.0195683946795 1.6615949005657 0.63931274090263 0.05 ShinyColor 1 1 1 50 0 null sphere -1.831294164672 1.5983779906848 0.6406464309845 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3676598592668 1.6253185303387 0.63797905082075 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1810321604761 1.6258964627075 0.63051038636224 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0200113112575 1.6003340694715 0.63104386239499 0.05 ShinyColor 1 1 1 50 0 null sphere -4.1421345132039 1.7773147433366 0.6273539865018 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6127912729245 1.8589810326835 0.5403084804913 0.05 ShinyColor 1 1 1 50 0 null sphere -4.0681591699958 1.8529794273151 0.65091584461496 0.05 ShinyColor 1 1 1 50 0 null sphere -4.0163230821469 2.0051090093212 0.62802083154274 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7255333645704 1.8566693032083 0.61023829711771 0.05 ShinyColor 1 1 1 50 0 null sphere -2.6054568008654 1.879964423305 0.65816222739315 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2951968548761 1.9435369838745 0.62024097273179 0.05 ShinyColor 1 1 1 50 0 null sphere -2.900068939952 1.9089499544178 0.58076374630823 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4681320021594 1.9857260467979 0.63375569889481 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6367104285087 2.0456976441463 0.62210813884642 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8248479959429 2.1215846098051 0.55991372469489 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6914789877552 2.1313650037388 0.54559878448275 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1868559405003 2.3128802238823 0.6269983358133 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0140097058891 2.3654720694443 0.65104921362314 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3738837463155 2.3335524201514 0.63428917492756 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8586348113504 2.388722733205 0.60957145207677 0.05 ShinyColor 1 1 1 50 0 null sphere -1.7210869075729 2.3999701862288 0.56169197813739 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5493529047545 2.3811651560744 0.6291322399443 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7036163908915 2.4261549681697 0.64331381114826 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7961744825738 2.4719449943141 0.57765180278385 0.05 ShinyColor 1 1 1 50 0 null sphere -2.907893255099 2.5057318097217 0.63442254393574 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5376600649787 2.5845084372245 0.54724366891706 0.05 ShinyColor 1 1 1 50 0 null sphere -1.643732882824 2.562102443849 0.57485105361191 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8197355172957 2.712009209052 0.57702941407898 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5352157898866 2.7408613711566 0.62250824587098 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7236217421197 2.7666905024089 0.63593405936187 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2650110026896 2.7197890678629 0.63375569889481 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4532835859145 2.7874516113501 0.65069356293464 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1975254611553 2.7090306345358 0.62037434173998 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6425342085329 2.8899234659743 0.62237487686279 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1675174343131 2.8167038804793 0.53568502154079 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4554174900455 2.8127028102337 0.58552057426693 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3738837463155 2.9119738086614 0.56604869907152 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1852555124021 2.9148634705054 0.58694317702093 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9953380447428 2.9064612229896 0.56547076670271 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9554170783499 2.8567145829356 0.61561751378128 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0840292585789 2.9378029399137 0.65625060494246 0.05 ShinyColor 1 1 1 50 0 null sphere -3.147335081132 3.0625029625692 0.60121366089701 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1996149089503 3.0166684800887 0.5691606425959 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3684600733159 3.0244038825636 0.56369251326021 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2465171668876 3.091488493682 0.67652269418699 0.05 ShinyColor 1 1 1 50 0 null sphere -3.7484292010339 3.1472811954405 0.59321152040575 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6391999833282 3.1849801684216 0.63806796349287 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4509274001032 3.1314547398022 0.64158001404182 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4188299254661 3.2090755025675 0.56235882317833 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2705680446974 3.2018735761253 0.57151682840722 0.05 ShinyColor 1 1 1 50 0 null sphere -1.110079024729 -2.4282546481818 0.63424471859149 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5075116894172 -2.2494068082021 0.63820133250106 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3570261684542 -2.0375279105279 0.64798172643483 0.05 ShinyColor 1 1 1 50 0 null sphere -3.209173844595 -1.7841712513074 0.58636524465212 0.05 ShinyColor 1 1 1 50 0 null sphere -0.03152385551518 -0.70054805978245 0.59512314285644 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4780885746549 -0.66969536255503 0.66474176513041 0.05 ShinyColor 1 1 1 50 0 null sphere -0.48199990883712 -0.57949345668409 0.55595711078532 0.05 ShinyColor 1 1 1 50 0 null sphere -0.046950204128889 -0.5934972025438 0.57934114355423 0.05 ShinyColor 1 1 1 50 0 null sphere -0.15435671205604 -0.57629260048759 0.60152485524945 0.05 ShinyColor 1 1 1 50 0 null sphere -0.23575626338659 -0.49142545494416 0.54262020996655 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5441959697712 0.37418386452999 0.62499780069048 0.05 ShinyColor 1 1 1 50 0 null sphere -1.7217092962777 0.50439647285724 0.55253397290851 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8277376577869 0.55120899473111 0.57862984217723 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0365848981152 0.66639536146921 0.63340004820631 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0145431819218 0.67213022882128 0.56160306546527 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6619599806097 1.7738471491237 0.58387568983261 0.05 ShinyColor 1 1 1 50 0 null sphere -1.705527189951 1.9868819115355 0.55502352772801 0.05 ShinyColor 1 1 1 50 0 null sphere -3.078427760235 1.9272215085395 0.60703744092121 0.05 ShinyColor 1 1 1 50 0 null sphere -2.387709666831 1.9696328531432 0.67043217614642 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8521441862853 1.979413247077 0.59645683293832 0.05 ShinyColor 1 1 1 50 0 null sphere -3.8466332473961 2.1276751278456 0.637445574788 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0827400248331 2.5775732487988 0.65891798510622 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0109866750368 2.711297907675 0.62361965427254 0.05 ShinyColor 1 1 1 50 0 null sphere -3.7110858787413 3.0658371877739 0.65073801927071 0.05 ShinyColor 1 1 1 50 0 null sphere 2.255310071543 -2.2577645993819 0.58307547578349 0.05 ShinyColor 1 1 1 50 0 null sphere -0.028945388023551 -1.0873626398628 0.63686764241919 0.05 ShinyColor 1 1 1 50 0 null sphere -0.010940571918214 -0.916250202358 0.61028275345377 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8479652906954 0.37129420268592 0.61899619532204 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0236036479849 0.55387637489487 0.6544278951639 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2075281367694 0.53511580107647 0.62015206005966 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8800191323878 2.794475712448 0.65362768111477 0.05 ShinyColor 1 1 1 50 0 null sphere -2.377040146176 2.7336594447144 0.62566464573142 0.05 ShinyColor 1 1 1 50 0 null sphere -0.71392861407551 -0.76332040630279 0.63611188470612 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7149972129236 0.19364668377993 0.66963196209729 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1653304473524 0.5394725220106 0.65313866141808 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0032512725619 0.52649127188033 0.62001869105147 0.05 ShinyColor 1 1 1 50 0 null sphere -0.33422704776517 -0.74891655341852 0.64198012106638 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8316942716965 0.18715605871479 0.64189120839426 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1419464145835 0.40912654467516 0.65278301072958 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1270535420025 0.66177190251871 0.64709259971358 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8832199885843 1.8250163919317 0.64700368704145 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8248035396068 2.5516996612104 0.64851520246758 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9655086666361 -2.0583334758052 0.65945146113897 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4992419875183 -1.3808633705478 0.67474444074449 0.05 ShinyColor 1 1 1 50 0 null sphere -0.10852222957554 -0.86134662732074 0.6641638327616 0.05 ShinyColor 1 1 1 50 0 null sphere -0.19761272704491 -0.70966160867528 0.67536682944936 0.05 ShinyColor 1 1 1 50 0 null sphere -1.7642984662257 -0.37499431079631 0.68279103757181 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5219155423015 -0.086872796774842 0.61677337851891 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8346728462127 0.0015953119896567 0.66767588331054 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3973566917566 0.35822403988353 0.6721215169168 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8916214127088 1.5380507426479 0.66460839612222 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8409411895975 1.8054556040642 0.65669516830309 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0154767649791 1.9884378832977 0.64175783938607 0.05 ShinyColor 1 1 1 50 0 null sphere -4.0325051884737 2.1686638696953 0.65491691486059 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4476273579584 -2.1319976246609 0.70066248466896 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5548560405413 -2.0453077693389 0.69790619183308 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2166766921134 -1.8309393168452 0.68550287407163 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2006279547948 -1.6334198157193 0.69101545974339 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0548564522369 -1.3642367008604 0.66314133703216 0.05 ShinyColor 1 1 1 50 0 null sphere 2.140879462518 -1.3813968465806 0.68803688522719 0.05 ShinyColor 1 1 1 50 0 null sphere 4.0831767850913 -1.2486946834338 0.65931809213078 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7945646045906 -0.96115110178119 0.67616704349849 0.05 ShinyColor 1 1 1 50 0 null sphere -0.41904973697254 -0.89193258653178 0.68914829362876 0.05 ShinyColor 1 1 1 50 0 null sphere 3.560681467348 -0.13221825955866 0.69621685106271 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1280315813959 0.20693912826263 0.66580871719591 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0274713492224 0.37680678835768 0.66576426085985 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0263693907058 1.8654716577486 0.66478622146647 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3513357574382 -1.3818414099412 0.68332451360456 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0184022566656 0.17626425637946 0.67647823785093 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0186776211757 0.36996051260405 0.66176319061422 0.05 ShinyColor 1 1 1 50 0 null sphere -3.719399213585 2.097355906651 0.67785638426887 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1712525899336 2.634610727967 0.68599189376832 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9934264222921 2.5330724564001 0.70510811827522 0.05 ShinyColor 1 1 1 50 0 null sphere -0.83889537474737 -0.83178316383914 0.68594743743225 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0317836138205 0.0094196271366674 0.70261856345572 0.05 ShinyColor 1 1 1 50 0 null sphere 2.136656110592 -0.033258455483392 0.70604170133253 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5487305160496 0.23659150441636 0.70221845643115 0.05 ShinyColor 1 1 1 50 0 null sphere -2.173830234034 0.3520890655069 0.69203795547283 0.05 ShinyColor 1 1 1 50 0 null sphere -4.1340879163766 2.1581277180485 0.70124041703778 0.05 ShinyColor 1 1 1 50 0 null sphere -0.53334697698938 -0.93092079325865 0.71186548135673 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0188109901838 0.20609445787744 0.70426344789003 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8131028967287 -2.3059997240098 0.78121736561433 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6151832885782 -2.2276676598675 0.76401276355811 0.05 ShinyColor 1 1 1 50 0 null sphere -0.33324900837179 -2.2127303309505 0.7328044156422 0.05 ShinyColor 1 1 1 50 0 null sphere -0.20805996601961 -2.1065686004331 0.71084298562729 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3070127903838 -1.9710212317784 0.80958050802224 0.05 ShinyColor 1 1 1 50 0 null sphere -0.16453721301437 -1.0983878112063 0.84478992618379 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5279599572234 -0.99293738206592 0.76112310171405 0.05 ShinyColor 1 1 1 50 0 null sphere -0.73589004409042 -0.88410827138477 0.70244073811147 0.05 ShinyColor 1 1 1 50 0 null sphere 4.1605308098402 -0.9195844275627 0.81896079493144 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2022386561692 -0.69143451088963 0.75303204855066 0.05 ShinyColor 1 1 1 50 0 null sphere 3.3429787896497 -0.60758986107563 0.69346055822683 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7885724491071 0.069213399140814 0.69950661993134 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0126315594711 1.8208374963418 0.71342145311892 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1391542919052 2.6162947175093 0.7092870138651 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9726122305212 -2.3919338216187 0.81282582055481 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3471124055122 -2.419141099289 0.80077815348185 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8971261952782 -2.368727614194 0.80215629989979 0.05 ShinyColor 1 1 1 50 0 null sphere -0.94447917289596 -2.2991534482561 0.77895009247513 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5364963971387 -2.3783301827836 0.80860246862886 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4211330284477 -2.3464549898267 0.80362335898986 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5308146126164 -2.2875058882077 0.74427415034634 0.05 ShinyColor 1 1 1 50 0 null sphere -0.55077386072591 -2.4018920408967 0.80277868860467 0.05 ShinyColor 1 1 1 50 0 null sphere -0.34431863605137 -2.3877104696928 0.80011130844091 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7087288695387 -2.1621834768474 0.79059765252353 0.05 ShinyColor 1 1 1 50 0 null sphere -0.16595981576837 -2.1743645129285 0.75458802031285 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4254436462632 -2.2011272272382 0.79495437345766 0.05 ShinyColor 1 1 1 50 0 null sphere 0.88254287026716 -2.1643618373144 0.8237620792262 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8911332164034 -1.9919157097278 0.81780493019381 0.05 ShinyColor 1 1 1 50 0 null sphere -0.089583830412886 -1.9780897892123 0.7204455542168 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0404962322974 -1.8907330888494 0.73560516481414 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2556204425042 -1.8585467015401 0.75312096122279 0.05 ShinyColor 1 1 1 50 0 null sphere 0.003507737302119 -1.8368964658776 0.7998890267606 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9466513770432 -1.6463566095135 0.80704649686667 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2844281482727 -1.4800899126395 0.81082528543199 0.05 ShinyColor 1 1 1 50 0 null sphere 4.0264949566116 -1.461240426149 0.80918040099768 0.05 ShinyColor 1 1 1 50 0 null sphere -0.071490101635424 -1.3062211822988 0.80300097028498 0.05 ShinyColor 1 1 1 50 0 null sphere 2.9003715078108 -1.253051404368 0.80197847455554 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2451834768057 -1.0931419635509 0.77548249826226 0.05 ShinyColor 1 1 1 50 0 null sphere 4.1372801460795 -1.0987434618948 0.85065816254405 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1004250200923 -1.0807386457895 0.82313969052132 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9757241740456 -0.90704774079305 0.82118361173457 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1175476891875 -0.90006809603123 0.78579636822877 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3287597418207 -0.79666265834971 0.75365443725554 0.05 ShinyColor 1 1 1 50 0 null sphere 3.3011898337509 -0.75313990534446 0.79744392827716 0.05 ShinyColor 1 1 1 50 0 null sphere -0.23575626338659 -0.75313990534446 0.73547179580595 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4761324958681 -0.75394011939359 0.80673530251424 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1696077054993 -0.51503176939338 0.71808936840549 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8571232959243 -0.34520856563439 0.77077012663962 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9143394238281 -0.18596596985829 0.76894741686106 0.05 ShinyColor 1 1 1 50 0 null sphere 3.618207966213 -0.21495150097108 0.79130895390053 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7995009046761 -0.18209826862085 0.7926426439824 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9756438878671 0.059521917879175 0.71479959953686 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9862603256924 0.00021716557171711 0.82727412977514 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0075993670024 0.19186843033742 0.81944981462813 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1852913422445 0.39903495638896 0.82665174107026 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1148725059214 0.64612327222468 0.72778084966713 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2665225181157 1.4979955838555 0.83038607329952 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8954002012742 1.6322981751005 0.73925058437127 0.05 ShinyColor 1 1 1 50 0 null sphere -4.1143493031648 1.7876730696392 0.74729718119859 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0199223985854 1.7329473199461 0.75023129937872 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2632772055831 1.864315793011 0.80220075623585 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2464718871602 1.887032980739 0.72471336247881 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4694212359052 1.9471379470956 0.80393455334229 0.05 ShinyColor 1 1 1 50 0 null sphere -4.0144559160323 1.9983961025757 0.81424842330881 0.05 ShinyColor 1 1 1 50 0 null sphere -4.2073075018717 2.1821341395223 0.80251195058829 0.05 ShinyColor 1 1 1 50 0 null sphere -4.0182791609336 2.2221003856425 0.81055854741562 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3783738362578 2.3836991672299 0.81220343184993 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1942356922867 2.3982363891224 0.76605775501699 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0768717884728 2.39227924009 0.82891901420945 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9054037002795 2.4514061670532 0.75667746810779 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0336594064287 2.542941763006 0.74080655613346 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2093063902119 2.5365845069491 0.8002446774491 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3842420726181 2.6594173634899 0.77401543917219 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8850426983629 2.7629117138436 0.81713808515288 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4756895792901 2.7313032589031 0.8092693136698 0.05 ShinyColor 1 1 1 50 0 null sphere -3.262476991534 2.9421152045118 0.82687402275058 0.05 ShinyColor 1 1 1 50 0 null sphere -3.45288347889 3.0884654628297 0.79615469453135 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1007806707808 -2.4209193527315 0.80055587180154 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2521544950739 -2.4391909068532 0.80340107730954 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3127110045022 -2.3406312098025 0.79646588888378 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0133428608481 -2.3370302465814 0.80055587180154 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1378642347681 -2.3256938808855 0.78223986134376 0.05 ShinyColor 1 1 1 50 0 null sphere -0.73028854574653 -2.3432985899663 0.81549320071856 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8335622612024 -2.1135482451949 0.73231539594551 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0627244003287 -2.1733420171991 0.79699936491654 0.05 ShinyColor 1 1 1 50 0 null sphere 0.85947003185069 -1.9729773105651 0.80002239576879 0.05 ShinyColor 1 1 1 50 0 null sphere -0.022899326319043 -1.9857362790151 0.815804395071 0.05 ShinyColor 1 1 1 50 0 null sphere 0.88716632921767 -1.9051813980697 0.81202560650568 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0524652599745 -1.8114229853138 0.78628538792546 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1689853167944 -1.6778761517818 0.72346858506906 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0832735008658 -1.6436003166776 0.83660996034828 0.05 ShinyColor 1 1 1 50 0 null sphere 0.012310091842506 -1.6324417763259 0.7901530891629 0.05 ShinyColor 1 1 1 50 0 null sphere -0.026544745876173 -1.4692870229763 0.80886920664524 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1491483410256 -1.4351001005442 0.83714343638103 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3794321618297 -1.4182511491765 0.80228966890798 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3131469413691 -1.3044429288563 0.77654945032776 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4426927046554 -1.0934976142394 0.81478189934156 0.05 ShinyColor 1 1 1 50 0 null sphere -0.61621358741 -0.96426304530557 0.73836145765002 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2049418661754 -0.94541355881504 0.80531269976023 0.05 ShinyColor 1 1 1 50 0 null sphere -0.34218473192037 -0.92620842163602 0.79615469453135 0.05 ShinyColor 1 1 1 50 0 null sphere -0.9364770324047 -0.95412700068331 0.77841661644238 0.05 ShinyColor 1 1 1 50 0 null sphere -0.73700145249198 -0.96448532698588 0.74351839263327 0.05 ShinyColor 1 1 1 50 0 null sphere -0.18903265418484 -0.92051801062001 0.77966139385214 0.05 ShinyColor 1 1 1 50 0 null sphere 3.3852123089091 -0.53597070367885 0.7984664240066 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8010193998133 -0.51312014694269 0.81198115016962 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4645224124447 -0.37392735873081 0.79753284094929 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0469082179667 -0.37361616437837 0.77708292636051 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9847504570488 -0.34240781646245 0.83692115470072 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9527863514198 -0.20939445896326 0.75592171039473 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8950445505857 -0.15382403888506 0.73738341825664 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1702206443193 -0.16551605526951 0.79575458750678 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0211140931654 -0.13257391024716 0.82300632151313 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8432537424641 -0.031969221737578 0.73342680434707 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2363716723804 0.019955778783495 0.76703579441037 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7049500809734 -0.00058304847740858 0.76219005377955 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0240123815032 0.0081748497269157 0.7485864149444 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0618447234924 0.14452243243079 0.73080388051938 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5258355029774 0.16981808765039 0.73929504070733 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1935688472458 0.1935577711078 0.74240698423171 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3747284167007 0.19306875141111 0.75196509648516 0.05 ShinyColor 1 1 1 50 0 null sphere 2.032183720845 0.36093587638335 0.78650766960577 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0662372742689 0.54347359225623 0.75116488243603 0.05 ShinyColor 1 1 1 50 0 null sphere -3.059267079392 1.5003073133308 0.8096249643583 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4223864323511 1.5086651045105 0.77988367553245 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9094936831973 1.5234690644194 0.79473209177734 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2128628970969 1.5241803657964 0.76654677471368 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0205892436263 1.6001117877912 0.78175084164708 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6543595939255 1.5845076138332 0.81042517840743 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3964231086992 1.5920207346278 0.8443009064871 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5105869797079 1.6310533976908 0.84078885593816 0.05 ShinyColor 1 1 1 50 0 null sphere -3.8436546728799 1.6527036333532 0.81567102606281 0.05 ShinyColor 1 1 1 50 0 null sphere -4.0666921109058 1.8129242685227 0.80953605168618 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0894973879146 1.8796976852887 0.80833573061249 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9172290856722 1.8264834510218 0.81046963474349 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7245997815131 1.8159028430389 0.83096400566833 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1928575458688 1.7800710361725 0.78015041354882 0.05 ShinyColor 1 1 1 50 0 null sphere -2.374239397004 1.9124175486307 0.74334056728902 0.05 ShinyColor 1 1 1 50 0 null sphere -3.8254720314303 2.1511925296227 0.82887455787339 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5574884142539 2.3928571724588 0.8276742367997 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1467126924271 2.4802583291578 0.76836948449225 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2685675095746 2.5546337793905 0.81220343184993 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3222707635382 2.6575057410393 0.77463782787707 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7282896574063 2.7253461098707 0.79081993420384 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6037238271502 2.9122850030138 0.80335662097348 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0619789158919 2.854847416821 0.814381792317 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0480101764833 -2.4540393230981 0.76921415487743 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1342999247807 -2.4536836724096 0.76561319165637 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1841799338429 -2.4460816389429 0.81598222041525 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6573809779952 -2.3349407987865 0.8310084620044 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8451645415235 -2.3263607259264 0.83736571806134 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4938705739571 -2.3431652209581 0.80664638984211 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1773422845829 -2.3280500666968 0.79891098736723 0.05 ShinyColor 1 1 1 50 0 null sphere -2.379885351684 -2.3002648566577 0.79624360720347 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7324154701664 -2.365171107309 0.81984992165269 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5531761496558 -2.1969927879844 0.84492329519198 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6066048625007 -2.1629836908965 0.8089136629813 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2485074287342 -2.188901734821 0.81327038391543 0.05 ShinyColor 1 1 1 50 0 null sphere 3.687826588487 -2.0660244219441 0.75956712995186 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7483761182042 -1.979290110286 0.82331751586557 0.05 ShinyColor 1 1 1 50 0 null sphere -3.006630777494 -1.9374566980511 0.74974227968203 0.05 ShinyColor 1 1 1 50 0 null sphere 3.8540488290249 -1.8163131822806 0.80949159535012 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2939862605262 -1.6416886942269 0.81411505430062 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2153532753077 -1.4810234956968 0.76098973270586 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0730835500226 -1.4075816285214 0.77325968145913 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5453432080152 -1.3962897191616 0.81002507138287 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0604579505808 -1.3196914521258 0.79468763544128 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7444631372394 -1.3423641835177 0.7919313426054 0.05 ShinyColor 1 1 1 50 0 null sphere -3.215575556988 -1.302086743045 0.77303739977881 0.05 ShinyColor 1 1 1 50 0 null sphere 4.1098061303928 -1.2177975298704 0.80509041807992 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0553454719336 -1.0808720147977 0.77601597429501 0.05 ShinyColor 1 1 1 50 0 null sphere -0.5558863393731 -1.1127472077545 0.76805829013981 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1629306285963 -1.0095195954173 0.74689707417403 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2167758780617 -0.90095722275248 0.77223718572969 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6038913792183 -0.95354906831449 0.80806899259611 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7901189709844 -0.8831302319914 0.81767156118563 0.05 ShinyColor 1 1 1 50 0 null sphere 4.1421258867103 -0.7292223965428 0.8428783037331 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6163477798095 -0.66778374010434 0.81967209630844 0.05 ShinyColor 1 1 1 50 0 null sphere 4.1168302314907 -0.53734885009679 0.79517665513797 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0859853373656 -0.54379501882586 0.80046695912942 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6920124637879 -0.60034347829744 0.79877761835904 0.05 ShinyColor 1 1 1 50 0 null sphere 4.0710846616823 -0.38837566795114 0.773882070164 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2413063256833 0.1783537041744 0.76601329868093 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1856914492691 0.52813615631464 0.78961961313015 0.05 ShinyColor 1 1 1 50 0 null sphere -3.5067645581978 1.5464529901637 0.80268977593254 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7277561813735 1.5578782685318 0.76214559744349 0.05 ShinyColor 1 1 1 50 0 null sphere -3.9720001150925 1.6992938735468 0.82122806807063 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5579774339506 1.8295953945462 0.80717986587486 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4940492226926 1.9061492052459 0.76210114110742 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6135931337561 2.0324051996636 0.82891901420945 0.05 ShinyColor 1 1 1 50 0 null sphere -3.7228668077979 2.1043355514128 0.80793562358793 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7216656633329 2.4137516504082 0.81006952771893 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5401059868534 2.6905367987337 0.81038072207137 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2940409901384 3.0491660617504 0.73760569993695 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6528480784994 3.1153615461476 0.81015844039105 0.05 ShinyColor 1 1 1 50 0 null sphere -3.599989494921 3.1848467994134 0.78055052057339 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2991440189007 -1.8552124763354 0.8428783037331 0.05 ShinyColor 1 1 1 50 0 null sphere 4.0663278337236 -1.3514777324105 0.81144767413687 0.05 ShinyColor 1 1 1 50 0 null sphere -0.097230320215647 -1.1537359496042 0.7728151180985 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0284135587734 -0.16115933433538 0.7908643905399 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1855222504184 -0.0018278258871603 0.78668549495002 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5294364661984 0.012398201652859 0.78610756258121 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3745061350204 1.7845611261148 0.81042517840743 0.05 ShinyColor 1 1 1 50 0 null sphere -0.17147240144013 -2.3334737396964 0.8287411888652 0.05 ShinyColor 1 1 1 50 0 null sphere -0.070334236897797 -2.1848117519032 0.83003042261102 0.05 ShinyColor 1 1 1 50 0 null sphere 0.77744809181527 -1.9811128200646 0.83545409561065 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0517881416573 -1.9370121346905 0.8168713471365 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2218780834327 -1.9371010473626 0.82789651848002 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4221094210585 -1.8391637390168 0.81647124011194 0.05 ShinyColor 1 1 1 50 0 null sphere -0.70988308749382 -1.1283513817125 0.8042902040308 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3738845697068 2.988483163025 0.79308720734303 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0037847485947 -0.35347744414203 0.85354782438811 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7443828510609 -0.14857819122968 0.82247284548038 0.05 ShinyColor 1 1 1 50 0 null sphere -2.386331520413 0.007152353997477 0.80184510554735 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8096353025158 -2.2525632080626 0.85537053416668 0.05 ShinyColor 1 1 1 50 0 null sphere -0.54010434007089 -1.2777691272188 0.82220610746401 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1107825230036 -1.1126138387463 0.83629876599584 0.05 ShinyColor 1 1 1 50 0 null sphere -0.39646591825275 -1.0994992196079 0.85305880469143 0.05 ShinyColor 1 1 1 50 0 null sphere -0.90317923669384 -1.1072346220828 0.84341177976585 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2629643644482 -0.89335518928578 0.83403149285665 0.05 ShinyColor 1 1 1 50 0 null sphere -3.100433646586 -0.73073391196893 0.84523448954442 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8864208447808 -0.36263544937092 0.84892436543761 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3143480858341 -0.18458782344035 0.85883812837956 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3743291330674 1.8763190037479 0.8504803371998 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0806061207021 1.958074205767 0.86421734504313 0.05 ShinyColor 1 1 1 50 0 null sphere -4.3351639243876 2.2131646620939 0.84816860772454 0.05 ShinyColor 1 1 1 50 0 null sphere -2.892955926182 2.4367355761526 0.85008023017523 0.05 ShinyColor 1 1 1 50 0 null sphere -0.93358737056063 -2.2561197149476 0.85377010606843 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6262529162578 -2.2803484181017 0.8519029399538 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7592312673058 -2.051798394404 0.85954942975656 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4486943100239 -1.9298102082484 0.84732393733936 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9451032083834 -1.8247598861325 0.87097470812464 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3993477769944 -1.6724524787822 0.88502291032041 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1227062709533 -1.4600401050753 0.86083866350237 0.05 ShinyColor 1 1 1 50 0 null sphere -0.54752854819334 -1.4802677379837 0.83354247315996 0.05 ShinyColor 1 1 1 50 0 null sphere -0.69223392207698 -1.4311879429707 0.85123609491286 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1335091606165 -1.3140010411097 0.87377545729658 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6794679739159 -1.3729501427287 0.85239195965049 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3827655636431 -1.2756352230878 0.87070797010826 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1576395012136 -1.2821258481529 0.85892704105168 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1180828120028 -1.1312410435566 0.87408665164902 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1215059498796 -0.92669744133271 0.86528429710863 0.05 ShinyColor 1 1 1 50 0 null sphere -1.376550303088 -0.83084958078182 0.84781295703604 0.05 ShinyColor 1 1 1 50 0 null sphere 3.3556933017636 -0.63973179204887 0.8540368440848 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5482781495866 -0.32102431881636 0.85390347507661 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1905013600575 -0.16404899617945 0.84061103059391 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5370829560012 -0.17525199286722 0.85359228072418 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2945650162863 0.0017286809978445 0.83016379161921 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3780181855693 -0.18672172757136 0.86359495633825 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2935425205568 0.20191556228756 0.83460942522546 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2782495409513 0.32385929210717 0.85377010606843 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3839308782657 1.5205349462392 0.84554568389685 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1903679910493 1.6156715054131 0.82527359465232 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5223679087645 1.5169339830182 0.84665709229842 0.05 ShinyColor 1 1 1 50 0 null sphere -2.716019708653 1.5387620440249 0.84345623610191 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1894352313832 2.43349026362 0.83914397150384 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3773521639197 2.6150943964356 0.83687669836465 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3659260621603 2.5455646868337 0.86866297864939 0.05 ShinyColor 1 1 1 50 0 null sphere 0.66644062066705 -2.3332070016801 0.86483973374801 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6046026805953 -1.9204743776752 0.85363673706024 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5729497693188 -1.8178691540428 0.87973260632896 0.05 ShinyColor 1 1 1 50 0 null sphere -0.73780166654111 -1.3176909170029 0.84714611199511 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9246088374585 -0.51294232159844 0.88831267918904 0.05 ShinyColor 1 1 1 50 0 null sphere -0.35361001028844 -2.4535058470653 0.88320020054184 0.05 ShinyColor 1 1 1 50 0 null sphere 0.57881718228774 -2.3002204003216 0.87795435288646 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3778848165612 -2.245761388645 0.87057460110008 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2236213304241 -2.2605208922178 0.87146372782133 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2779906060373 -2.2338470905802 0.87986597533715 0.05 ShinyColor 1 1 1 50 0 null sphere 0.71236401581967 -2.1667180231258 0.87586490509152 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0941192000825 -2.2410045606863 0.86146105220725 0.05 ShinyColor 1 1 1 50 0 null sphere 0.77331365256145 -1.9048257473812 0.87341980660808 0.05 ShinyColor 1 1 1 50 0 null sphere -0.52823449834219 -1.5645124948223 0.86457299573163 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2614895022557 -1.2929731941522 0.87462012768177 0.05 ShinyColor 1 1 1 50 0 null sphere -0.83404963411655 -1.2585195337037 0.86403951969888 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1668950456082 -0.30813198135821 0.88231107382059 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1909817532605 -0.3227581159228 0.89178027340192 0.05 ShinyColor 1 1 1 50 0 null sphere 3.816438768716 -0.31039925449741 0.8938252648608 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2996330385974 -0.29977419017845 0.8851562793286 0.05 ShinyColor 1 1 1 50 0 null sphere 0.59499928861451 -2.2607876302341 0.87301969958352 0.05 ShinyColor 1 1 1 50 0 null sphere -0.43652107704512 -1.4645746513536 0.87510914737846 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0590876072652 -1.0489968218408 0.87048568842795 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7402484118071 -0.33387219993844 0.8793324993044 0.05 ShinyColor 1 1 1 50 0 null sphere 0.5961996096882 -2.3145353405338 0.91872081305583 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4505701026322 -2.2362921890637 0.8904910396561 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8328859662766 -2.223755502294 0.99958688835363 0.05 ShinyColor 1 1 1 50 0 null sphere 0.60833618943328 -2.2128192436226 0.93908181497248 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6681307848287 -1.8344069110581 0.9685119094459 0.05 ShinyColor 1 1 1 50 0 null sphere 0.05609958286413 -1.8278273733208 0.97024570655234 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2417064327079 -1.7657218718414 0.9706458135769 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2869629828196 -1.8280941113372 0.95815358314332 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1571504815169 -1.4688424596157 0.97055690090478 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2131210086197 -1.3051542302333 0.96842299677378 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2064081018742 -1.0981210731899 0.96695593768371 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0937112899556 -0.94519127713473 0.8821777048124 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0024868883552 -0.80782119870141 0.89226929309861 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9785249232175 -0.70112599215127 0.97940371178123 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5671798955155 -0.32804841991424 0.89338070150017 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0244927747062 -0.16338215113851 0.98682791990368 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2405155615191 1.8438214220862 1.0119902061151 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3014651982609 1.9103281008358 0.9201878721459 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4299884658178 1.9345568039899 0.97384666977341 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2649220900175 2.5664591647831 0.95979846757764 0.05 ShinyColor 1 1 1 50 0 null sphere -0.53503631775976 -2.4530612837047 0.94379418659512 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1966277079404 -2.3752182392592 0.97584720489622 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3657396103224 -2.4291437749031 0.99669722650956 0.05 ShinyColor 1 1 1 50 0 null sphere -0.747670973147 -2.4354565746239 0.97002342487203 0.05 ShinyColor 1 1 1 50 0 null sphere -0.18058595033295 -2.4123392798714 0.96731158837221 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0871325756096 -2.4305663776571 0.95864260284001 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2658915029172 -2.403492468995 0.98327141301867 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5369409604994 -2.4407468786154 0.997008420862 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0447648639507 -2.3184474981073 0.94210484582474 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4127307809318 -2.3207147712465 0.96451083920027 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7209457354623 -2.4207415273872 0.98189326660073 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8887239477624 -2.4185631669202 0.99411875901794 0.05 ShinyColor 1 1 1 50 0 null sphere -0.88184019538381 -2.333873846721 0.98482738478086 0.05 ShinyColor 1 1 1 50 0 null sphere 0.69778233759115 -2.3048883156082 0.94352744857874 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5855753687605 -2.3046215775918 0.97962599346154 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7496192488314 -2.3043103832394 0.97909251742879 0.05 ShinyColor 1 1 1 50 0 null sphere -0.079625611134872 -2.3071111324113 0.98665009455943 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0084971202173 -2.238692831211 1.0110121667217 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6596927074705 -2.1596050093557 0.96175454636439 0.05 ShinyColor 1 1 1 50 0 null sphere -0.96217279464886 -2.236514470744 0.94397201193937 0.05 ShinyColor 1 1 1 50 0 null sphere 0.8748963804644 -2.2493623518661 0.97162385297028 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9757241740456 -2.1760538536989 1.0101230400005 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4927077295084 -2.2512295179807 0.98135979056798 0.05 ShinyColor 1 1 1 50 0 null sphere -2.195880576721 -2.2334025272196 1.00696664014 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5144538575541 -2.1461347395288 0.95108502570938 0.05 ShinyColor 1 1 1 50 0 null sphere -0.01329675772953 -2.1726751721581 0.99149583519024 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5949128461162 -2.1655177020521 0.98029283850248 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3617916229065 -2.1637839049456 0.98918410571499 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1163029117778 -2.1662290034291 0.96562224760183 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4063718780923 -2.2472284477351 0.9739800387816 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2470848259802 -2.2203323644172 0.99505234207525 0.05 ShinyColor 1 1 1 50 0 null sphere 0.70338383593504 -2.1861454419851 0.99740852788657 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0395626492401 -2.2147753224094 0.97335765007672 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5385055587552 -2.1254625432597 0.91760940465427 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7140636298663 -1.9845804142774 0.93281347158766 0.05 ShinyColor 1 1 1 50 0 null sphere 0.71627617339318 -1.9981395967765 0.98682791990368 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7518437124171 -1.9786677215811 0.97593611756835 0.05 ShinyColor 1 1 1 50 0 null sphere 0.026980682743152 -2.0131658383657 0.96766723906071 0.05 ShinyColor 1 1 1 50 0 null sphere 1.045830992625 -1.9332778024612 0.9778921963551 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2309027196534 -1.956528466222 0.98051512018279 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4320231840004 -1.9674202685573 0.96664474333127 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5759283438349 -1.9326109574203 0.97771437101085 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8526784857093 -1.7954187043312 0.93654780381692 0.05 ShinyColor 1 1 1 50 0 null sphere 0.76811226124213 -1.8970458885703 0.96597789829033 0.05 ShinyColor 1 1 1 50 0 null sphere 0.87903081971822 -1.8926891676361 0.97709198230597 0.05 ShinyColor 1 1 1 50 0 null sphere 3.859072395 -1.8198252328296 0.96313269278233 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8796634816993 -1.6370207789403 0.96464420820846 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9595881708374 -1.6342200297684 0.99798646025538 0.05 ShinyColor 1 1 1 50 0 null sphere 0.010220644047566 -1.6470679108905 0.99176257320662 0.05 ShinyColor 1 1 1 50 0 null sphere -0.5284567800225 -1.5803389504606 0.97598057390441 0.05 ShinyColor 1 1 1 50 0 null sphere -0.71277274933788 -1.4568392488788 0.97793665269116 0.05 ShinyColor 1 1 1 50 0 null sphere -0.44261159508569 -1.5722923536332 1.0143463919264 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4424704229751 -1.4680867019026 0.9695788615114 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0232574471814 -1.4722211411564 0.91863190038371 0.05 ShinyColor 1 1 1 50 0 null sphere -0.35089817378863 -1.4715098397794 0.98816160998555 0.05 ShinyColor 1 1 1 50 0 null sphere 4.032452105644 -1.457017074223 0.98860617334618 0.05 ShinyColor 1 1 1 50 0 null sphere -0.066422079324291 -1.4482147196826 0.95197415243063 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3401327607504 -1.4646635640258 0.98718357059218 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5140459474271 -1.4531493729856 1.0075890288449 0.05 ShinyColor 1 1 1 50 0 null sphere -0.34445200505956 -1.2936844955292 0.96846745310984 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6840914328664 -1.3877541026375 0.97269080503578 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7719371529261 -1.349743935304 0.97233515434728 0.05 ShinyColor 1 1 1 50 0 null sphere 4.0865554666321 -1.2856378987018 0.96331051812658 0.05 ShinyColor 1 1 1 50 0 null sphere -0.8202237136011 -1.3264932715433 0.92672295354709 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4543847210399 -1.3204916661749 0.96931212349503 0.05 ShinyColor 1 1 1 50 0 null sphere -0.89042026824388 -1.2574525816382 0.97664741894535 0.05 ShinyColor 1 1 1 50 0 null sphere -0.16440384400618 -1.3050208612251 0.97140157128997 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8860565675987 -1.2776802145466 0.97606948657654 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2974102217943 -1.280747701735 1.008344786558 0.05 ShinyColor 1 1 1 50 0 null sphere -0.35352109761632 -1.1456448964408 0.92850120698959 0.05 ShinyColor 1 1 1 50 0 null sphere 4.1032710489916 -1.1391542713757 0.99389647733762 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5039535357497 -1.1363535222037 0.96037639994645 0.05 ShinyColor 1 1 1 50 0 null sphere -0.20525921684767 -1.1618270027676 0.92218840726871 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0722397030287 -1.1177707737296 0.96757832638859 0.05 ShinyColor 1 1 1 50 0 null sphere -0.99449255096634 -1.1503572680635 0.97775882734691 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0821604456817 -1.0687798913887 0.96562224760183 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5778399662856 -1.0714472715524 1.014035197574 0.05 ShinyColor 1 1 1 50 0 null sphere 4.109939499401 -0.92829786943096 0.97313536839641 0.05 ShinyColor 1 1 1 50 0 null sphere -1.181831551134 -0.98946978785304 0.97980381880579 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1858248182772 -0.92758656805396 0.9678006080689 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2442857235908 -0.90571405071118 1.0085226119022 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6487033659694 -0.93932304077447 0.98344923836292 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2960843348148 -0.91176011241568 0.98931747472318 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7634451693468 -0.85530056561623 0.97686970062566 0.05 ShinyColor 1 1 1 50 0 null sphere 3.3136820641844 -0.76949983701549 0.95228534678307 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3899761165789 -0.84525343366609 0.97366884442916 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1950272798422 -0.72891120219037 0.97922588643698 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8575147764552 -0.77763534651493 0.995585818108 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0229462528289 -0.90446927330142 0.92565600148159 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5052513959891 -0.76812169059755 0.99625266314894 0.05 ShinyColor 1 1 1 50 0 null sphere -2.994538654085 -0.6826766126853 0.89653710136061 0.05 ShinyColor 1 1 1 50 0 null sphere 4.0965581422462 -0.73660214832919 0.93908181497248 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6484452544466 -0.67640826930048 0.9916736605345 0.05 ShinyColor 1 1 1 50 0 null sphere 4.0733963911576 -0.62870662070535 0.91987667779346 0.05 ShinyColor 1 1 1 50 0 null sphere -1.7093059785163 -0.62768412497591 0.93828160092336 0.05 ShinyColor 1 1 1 50 0 null sphere 3.39152510863 -0.66916188652228 1.0135461778773 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8370734883601 -0.57326956963534 0.98309358767442 0.05 ShinyColor 1 1 1 50 0 null sphere 3.451229967962 -0.54757380739118 0.97224624167516 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9766594038854 -0.56019940683294 0.98496075378905 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0087638582337 -0.52316727889283 0.99016214510837 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7242885871606 -0.55495355917756 0.94859547088987 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3669399313961 -0.37503876713237 0.93761475588242 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6078496399104 -0.40157919976172 0.94917340325869 0.05 ShinyColor 1 1 1 50 0 null sphere -2.6830331072946 -0.425941271924 0.91943211443283 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9041955761035 -0.41571631462962 0.9428606035378 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1915238557869 -0.38086254715657 0.91556441319539 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3675709465946 -0.30999914747284 0.90298327008968 0.05 ShinyColor 1 1 1 50 0 null sphere 2.002353519347 -0.32969330434856 1.0058552317385 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3884123417143 -0.12781708228846 0.95393023121738 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3659618920027 0.018266438013118 0.9746913401586 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0425865034837 0.0085305004154165 0.95641978603688 0.05 ShinyColor 1 1 1 50 0 null sphere 2.308568762146 0.16550582305232 0.95290773548794 0.05 ShinyColor 1 1 1 50 0 null sphere 2.059880018212 0.1452337338078 0.92979044073541 0.05 ShinyColor 1 1 1 50 0 null sphere 2.182090486048 0.18351063915766 1.0120791187872 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1633743685656 0.30189786209226 0.948684383562 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0754047293828 1.5043972962485 0.99282952527212 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7198874098904 1.5144888845347 0.9352585700711 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5713143347694 1.6108702211183 0.92249960162115 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3859322367798 1.5332494583531 0.92983489707147 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2566087551738 1.5186233237885 1.0067443584597 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9203410291965 1.5083983664941 0.96171009002833 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4818690100028 1.5664138850558 0.97989273147792 0.05 ShinyColor 1 1 1 50 0 null sphere -3.629108395042 1.6024235172665 0.97095700792934 0.05 ShinyColor 1 1 1 50 0 null sphere -3.8234714963075 1.6604834921642 0.99349637031306 0.05 ShinyColor 1 1 1 50 0 null sphere -4.0040531333936 1.8071449448346 0.96042085628251 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7255778209065 1.6238959275847 0.97353547542097 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7688338358953 1.7311246101676 0.91796505534277 0.05 ShinyColor 1 1 1 50 0 null sphere -2.919940922172 1.7628219777802 0.9432162542263 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1038123281267 1.7944748890567 0.99660831383744 0.05 ShinyColor 1 1 1 50 0 null sphere -3.9174077344077 1.9286885676296 0.9446388569803 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1145263051178 1.9195305624007 0.93459172503017 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6420896451722 2.0080431275013 0.99420767169006 0.05 ShinyColor 1 1 1 50 0 null sphere -3.8319182001594 1.9893270100189 0.97406895145372 0.05 ShinyColor 1 1 1 50 0 null sphere -4.01143288518 2.1384335611728 0.92281079597359 0.05 ShinyColor 1 1 1 50 0 null sphere -3.9029149688513 2.0856194339305 0.9230330776539 0.05 ShinyColor 1 1 1 50 0 null sphere -4.2163321380924 2.2037843751847 0.93179097585822 0.05 ShinyColor 1 1 1 50 0 null sphere -4.341832374797 2.208941310168 0.92174384390808 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1201278034617 2.4098839491708 0.91978776512133 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7282007447341 2.4409144717424 0.92392220437515 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9040700101976 2.5206691386387 0.9847829284448 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4957830197991 2.4610531919788 0.89284722546742 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4249196201153 2.5466760952353 0.9154310441872 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3828647495914 2.6175839512551 0.93001272241572 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5535318003443 2.5679262238732 0.95028481166025 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4511052254475 2.7381495346567 0.95962064223339 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7152194946039 2.6681308053582 0.96571116027396 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9013581736978 2.7297028308049 1.0110566230578 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0787834109235 2.8359090176583 0.99305180695243 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4795128241914 2.8953026826379 1.0137684595576 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2686564222467 2.8877451055073 0.9865611818873 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6002562329374 2.9582973108385 0.97686970062566 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6139043281086 3.0736615029209 0.98011501315823 0.05 ShinyColor 1 1 1 50 0 null sphere -3.485603342232 3.0573015712499 0.97460242748647 0.05 ShinyColor 1 1 1 50 0 null sphere -0.3616121507797 -2.4552396441718 0.97553601054379 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8457424738923 -2.1925471543781 0.98927301838712 0.05 ShinyColor 1 1 1 50 0 null sphere 0.81536934647663 -2.2754582211348 0.94068224307074 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3202241252967 -2.1347094611607 0.93908181497248 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6088260325212 -1.6449784630955 0.99527462375556 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0245022245911 -1.1191489201475 0.93232445189097 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8840202026334 -0.70352663429864 0.95255208479944 0.05 ShinyColor 1 1 1 50 0 null sphere -2.8501000182177 -0.54748489471905 0.92979044073541 0.05 ShinyColor 1 1 1 50 0 null sphere 2.162885348869 -0.53557059665428 0.9782478470436 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1977835726781 -0.41785021876062 0.92534480712915 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3778848165612 -0.38437459770551 0.9331246659401 0.05 ShinyColor 1 1 1 50 0 null sphere -3.938969057398 1.7038728761612 0.93072402379272 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5594889493767 -2.0049414161941 0.99758635323082 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7371364682827 -1.8221369623048 0.99011768877231 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4874157787344 -1.6188381374907 0.95730891275813 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0170335601326 -1.3125784383557 0.92778990561259 0.05 ShinyColor 1 1 1 50 0 null sphere 2.308613218482 -1.1425774092525 1.0280833997697 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0332506729105 -0.52334510423708 0.99162920419843 0.05 ShinyColor 1 1 1 50 0 null sphere -2.19374667259 -0.53903819086716 1.0091894569431 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5398837051731 -0.42616355360432 0.93401379266135 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7858528095049 -0.40673613474498 0.97731426398629 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9069152157056 -0.9137606475385 0.98447173409236 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5228569284612 -0.54890749747305 0.96686702501159 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0626013045967 2.5532556329725 0.99776417857507 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7193539338577 2.5477430473008 0.99065116480506 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3008778160071 -1.632530688998 1.0463549538914 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9065595650171 -1.4589731530098 0.98398271439567 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9058482636401 -1.3074215033725 0.99025105778049 0.05 ShinyColor 1 1 1 50 0 null sphere 2.985105284346 -1.2003706461338 0.95793130146301 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7406929751677 -0.74135897628788 0.99696396452594 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3842420726181 -0.53477038260516 0.97887023574848 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2949729264132 -2.0357941134215 1.0118568371069 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4751100001387 -2.0036077261122 1.0158579073525 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7278801004968 -1.7778584515865 1.01972560859 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7393498352009 -1.645334113784 1.0467995172521 0.05 ShinyColor 1 1 1 50 0 null sphere -0.16707122416993 -1.4592398910261 1.0395086781378 0.05 ShinyColor 1 1 1 50 0 null sphere 4.0582812368963 -1.3413861441243 1.043198554031 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9124278013774 -1.1227943397047 0.99162920419843 0.05 ShinyColor 1 1 1 50 0 null sphere 4.050279096405 -0.88375262069627 1.0607143504397 0.05 ShinyColor 1 1 1 50 0 null sphere 4.0140916388501 -0.71908635192054 1.0341739178103 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3273293359644 -0.69103440386506 1.0365745599577 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3643170075684 -0.52432314363045 1.009767389312 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5847768014939 -0.54130546400635 1.0533345986533 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4626099666028 -0.34938746122427 1.011234448402 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0981569235619 0.03564886541358 1.0314620813105 0.05 ShinyColor 1 1 1 50 0 null sphere -2.9143394238281 1.6171385645032 1.0195922395818 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2758138923528 2.7036069615361 1.0425317089901 0.05 ShinyColor 1 1 1 50 0 null sphere -0.53405827836638 -2.4500382528525 1.0148354116231 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6009128047021 -1.481912622418 1.060225330743 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5501975751396 -0.70392674132321 1.0150576933034 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4654543487195 -2.2778588632822 1.0202146282867 0.05 ShinyColor 1 1 1 50 0 null sphere 3.677201524168 -2.073092979378 1.0163024707132 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6348860719476 -2.0215680858815 1.0387973767608 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7298011728324 -1.6478236686035 1.0330625094087 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2370385174213 -1.5862071868208 1.0679162768818 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2734038003205 -0.93927858443841 1.0449323511374 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4839045515767 -0.50774093027912 1.0465327792357 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4294097100577 -2.0662022472883 1.0393753091296 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5645030654669 -1.2739014259813 1.0710282204062 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7150416692596 -1.1085238558286 1.0488000523749 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7208654492838 -0.95332678663418 1.0352853262119 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3646812847506 -0.72757751210849 1.0548016577433 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7773171929809 -0.52552346470414 1.056668823858 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4538076120624 -0.20041427907863 1.0520898212435 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0715814844814 1.6628841343115 1.0626259728903 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0026202573634 -1.9944497208833 1.0576913195874 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9586529409975 -2.013432576382 1.1498493042451 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5848290609324 -1.8481883752375 1.0568911055383 0.05 ShinyColor 1 1 1 50 0 null sphere 0.96234199349946 -1.916028744069 1.0357298895725 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0086218627319 -1.6411996745302 1.0462215848833 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7055280133422 -1.4788451352297 1.058847184325 0.05 ShinyColor 1 1 1 50 0 null sphere -2.7115740750467 -1.3124450693476 1.04817766367 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5378831700503 -0.92700863568514 1.0586693589808 0.05 ShinyColor 1 1 1 50 0 null sphere -0.72882148665647 -2.4446590361889 1.1797684184152 0.05 ShinyColor 1 1 1 50 0 null sphere -0.19174449068465 -2.4217195667806 1.151182994327 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7156998878069 -2.4018031282246 1.1694990047847 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8998380317781 -2.4250093356492 1.1446479129258 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0877994206506 -2.3734399858167 1.1830581872838 0.05 ShinyColor 1 1 1 50 0 null sphere -0.9237625202908 -2.3380082859748 1.1685654217274 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3634278808472 -2.3265830076067 1.1238423476485 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2383730308945 -2.3277388723444 1.1717662779239 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8215496005806 -2.3233376950742 1.1501604985975 0.05 ShinyColor 1 1 1 50 0 null sphere -0.076558123946556 -2.3193810811646 1.1550506955644 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4294891728449 -2.2979531271824 1.1501604985975 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1285206010926 -2.1945032331649 1.0714283274307 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0966976675742 -2.1812552450182 1.1571401433594 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4457173822903 -2.1919692220093 1.2021744117907 0.05 ShinyColor 1 1 1 50 0 null sphere 0.77789265517589 -2.1578267559132 1.1486934395075 0.05 ShinyColor 1 1 1 50 0 null sphere 0.87769712963634 -2.2271341838348 1.1570956870233 0.05 ShinyColor 1 1 1 50 0 null sphere -1.7971516985759 -2.1797437295921 1.1364234907542 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5720622893801 -2.1438674663896 1.1298439530169 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8727188433886 -2.1806773126494 1.1097496891167 0.05 ShinyColor 1 1 1 50 0 null sphere 0.0065752244904358 -2.1588492516427 1.1975509528402 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3814413234462 -2.1880126080997 1.1650533711785 0.05 ShinyColor 1 1 1 50 0 null sphere -1.7558073060377 -2.0875857449344 1.0639596629722 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2803023355126 -2.0158776748655 1.1527834224252 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4440803009583 -2.0557994646497 1.1437143298685 0.05 ShinyColor 1 1 1 50 0 null sphere 0.76562270642262 -2.0493532959206 1.1069044836087 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4883143553406 -1.9895595239164 1.1620303403262 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6537800147741 -2.0069419513169 1.1648755458342 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4197976915832 -1.9962724306619 1.1710549765469 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2329921674483 -1.9839580255726 1.159718610851 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5507216012875 -1.9627523532707 1.193105319234 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0473425080511 -1.9803126060154 1.1518053830318 0.05 ShinyColor 1 1 1 50 0 null sphere 0.86298208239964 -1.9901374562853 1.1615857769656 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6529267178953 -1.8064883320108 1.1545172195317 0.05 ShinyColor 1 1 1 50 0 null sphere 0.00035133744167704 -1.8376966799267 1.1758562608417 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0438312808934 -1.8622365774333 1.0772521074549 0.05 ShinyColor 1 1 1 50 0 null sphere 3.8087478225771 -1.8234261960506 1.1823024295708 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0228034339358 -1.8275161789684 1.1535836364743 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9235340822907 -1.635375894506 1.1461149720158 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7531757557164 -1.6099024139422 1.1468707297289 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1683979345407 -1.6563148287915 1.1714106272354 0.05 ShinyColor 1 1 1 50 0 null sphere 2.074061589416 -1.7013046408868 1.1130839143214 0.05 ShinyColor 1 1 1 50 0 null sphere -0.065621865275165 -1.6226613823921 1.1269098348368 0.05 ShinyColor 1 1 1 50 0 null sphere -0.57411343715875 -1.655247876726 1.1501604985975 0.05 ShinyColor 1 1 1 50 0 null sphere -0.37174819540197 -1.6071461211063 1.1766120185548 0.05 ShinyColor 1 1 1 50 0 null sphere -0.17627368573488 -1.5161440011862 1.1484711578272 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3113250549819 -1.4466587479204 1.1461594283519 0.05 ShinyColor 1 1 1 50 0 null sphere -0.29723937616111 -1.5239683163332 1.1630972923917 0.05 ShinyColor 1 1 1 50 0 null sphere 2.177822677786 -1.4670197498371 1.1219751815339 0.05 ShinyColor 1 1 1 50 0 null sphere -0.74558152535206 -1.4765778620905 1.1380683751885 0.05 ShinyColor 1 1 1 50 0 null sphere 2.565126277563 -1.5085864240556 1.1718551905961 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9695908464515 -1.4761332987299 1.168965528752 0.05 ShinyColor 1 1 1 50 0 null sphere 2.722146056536 -1.4310990302985 1.1895043560129 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3336421356853 -1.2932843885046 1.1826136239232 0.05 ShinyColor 1 1 1 50 0 null sphere 2.9135750396214 -1.3028869570941 1.1841251393493 0.05 ShinyColor 1 1 1 50 0 null sphere -0.9219842668483 -1.3095998638396 1.1549173265562 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0654893196583 -1.2299785659515 1.2156891379537 0.05 ShinyColor 1 1 1 50 0 null sphere 3.095223628773 -1.1278179056797 1.1456259523191 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1337297955143 -1.1198602215245 1.1666093429407 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6649299286322 -1.0438398868576 1.1140174973787 0.05 ShinyColor 1 1 1 50 0 null sphere 2.387434302321 -0.92620842163602 1.1422472707784 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3267147503619 -0.95541623442912 1.1484267014911 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7901189709844 -0.90491383666205 1.1749671341204 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2815845895473 -0.95297113594568 1.1821246042265 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4667077526229 -0.9054473126948 1.2063977637167 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9609663172553 -0.91642802770225 1.1634529430802 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5228116487338 -0.78590422502257 1.1127727199689 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8739636207984 -0.77736860849856 1.1621192529984 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4389155628727 -0.73260107808356 1.1354454513608 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6632047580194 -0.75469587710665 1.1728776863255 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9458050598755 -0.56099962088207 1.1675873823341 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1950359063358 -0.72126471238761 1.1428696594833 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5503667739902 -0.53036920533496 1.1609633882607 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9301119732454 -0.38499698641038 1.1670983626374 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5441428869415 -0.35449993987147 1.1502049549336 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4958633059775 -0.22433178788028 1.1698991118093 0.05 ShinyColor 1 1 1 50 0 null sphere 2.009422076781 -0.15680261340125 1.1735000750304 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4253111006463 -0.11016791687162 1.1682986837111 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3482238139138 -0.020677312377687 1.1527389660892 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2587426593048 1.4495826338834 1.1965729134468 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1307973241167 1.4845697703646 1.1079269793381 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4450147074069 1.5002184006586 1.1863034998164 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4494603410132 1.6415006366655 1.1776789706203 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6482246195489 1.6123817365445 1.1721663849485 0.05 ShinyColor 1 1 1 50 0 null sphere -3.8530794161252 1.6278080851582 1.1997293133073 0.05 ShinyColor 1 1 1 50 0 null sphere -3.9466600035369 1.7899847991144 1.1062820949038 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4044705289178 1.8933902367959 1.0724508231602 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2519408398872 2.7463295004923 1.0973908276913 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3872214705256 2.7945201687841 1.0909446589622 0.05 ShinyColor 1 1 1 50 0 null sphere -3.0706923577601 2.7159213666255 1.0743624456109 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4261652209164 2.9119738086614 1.0949901855439 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5589468468503 -2.3556574513916 1.1798128747513 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6213182629548 -2.3372525282617 1.1891931616605 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0512546656246 -2.2332691582114 1.137001423123 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2473515639965 -2.2510516926364 1.1430474848275 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2057857131693 -2.1625391275359 1.1385129385491 0.05 ShinyColor 1 1 1 50 0 null sphere 0.032582181087035 -1.9901819126213 1.2017298484301 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6671988485539 -2.0282809926269 1.1637196810966 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7272149022384 -1.9583956323366 1.1529167914334 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1776003961057 -1.9995177431945 1.155450802589 0.05 ShinyColor 1 1 1 50 0 null sphere -2.55188691591 -1.8397861277217 1.1702103061617 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5876742664404 -1.645289657448 1.195239223365 0.05 ShinyColor 1 1 1 50 0 null sphere -2.6354648277076 -1.6458675898168 1.071606152775 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5946539112022 -1.2251772816567 1.0773410201271 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5552655974508 -1.1183042497623 1.0760962427173 0.05 ShinyColor 1 1 1 50 0 null sphere 4.0148029402271 -1.1082571178122 1.1555397152611 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3785874914445 -1.1070567967385 1.1459816030076 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2093944794928 -1.0050295054749 1.0844984902331 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4103379418868 -0.82524808243794 1.0721840851438 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4193539516139 -0.76625452448292 1.1185964999931 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9227766777951 -0.70677194683121 1.1994181189548 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8384960911141 -0.72882228951824 1.1989290992582 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4803480446917 -0.6816096606198 1.1562510166381 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1957830375553 -0.020766225049812 1.1622081656705 0.05 ShinyColor 1 1 1 50 0 null sphere -3.1041235224792 1.5812178449646 1.1153956437966 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2805707203115 1.7486848629123 1.1280656995744 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4696879739216 1.8052777787199 1.1803908071201 0.05 ShinyColor 1 1 1 50 0 null sphere -3.8505898613057 1.8055889730724 1.1941278149634 0.05 ShinyColor 1 1 1 50 0 null sphere -3.5042750033783 1.9095723431227 1.104992861158 0.05 ShinyColor 1 1 1 50 0 null sphere -0.35814455656683 -2.4472375036805 1.1751894158008 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4743986987617 -1.8944229647426 1.1506050619582 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7586438850521 -1.4817792534099 1.1606521939083 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5283250577969 -1.3264932715433 1.1506050619582 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2154327380949 -1.3192913451012 1.0920116110277 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3532560063825 -0.92794221874246 1.1254427757467 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9193996430369 -0.73557965259975 1.1180630239604 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0022287768325 -0.60839007512476 1.1189966070177 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7626910584163 -0.60967930887057 1.1136618466902 0.05 ShinyColor 1 1 1 50 0 null sphere -3.7788817912367 1.9122841796225 1.1184186746489 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6351989130825 1.9439815472351 1.1089939314036 0.05 ShinyColor 1 1 1 50 0 null sphere -2.197970024516 -2.3423650069089 1.1698101991372 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0143209002415 -2.348099874261 1.1612301262771 0.05 ShinyColor 1 1 1 50 0 null sphere 3.3826782977535 -2.2788813590116 1.1225531139027 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1946271728176 -1.8395193897053 1.1458037776634 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3774760830429 -1.646756716538 1.1783013593251 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5763379007444 -1.4592843473622 1.2044416849299 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6512373771249 -1.2819480228086 1.1295327586645 0.05 ShinyColor 1 1 1 50 0 null sphere 4.0052448279737 -1.2767466314893 1.1716329089157 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3893100949292 -1.2979967601272 1.1534058111301 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3356512973017 -1.1267954099503 1.1390019582458 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4435023685895 -1.0922083804936 1.0891219491836 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7006283664904 -0.99040337091036 1.1315332937873 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1449780719294 -0.63475268240986 1.1155290128048 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5974024009357 -0.62901781505779 1.1201524717553 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8907767423237 -0.62937346574629 1.1295772150006 0.05 ShinyColor 1 1 1 50 0 null sphere -0.53294686996482 -2.4449702305413 1.1866591505049 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8766840837918 -2.3167137010008 1.1928830375537 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5856729079263 -1.8998021814061 1.1775900579481 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0230709953435 -1.2105066907561 1.183902857669 0.05 ShinyColor 1 1 1 50 0 null sphere -3.2534523553133 1.6126040182248 1.1893709870047 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3528917292003 -2.184633926559 1.2104432902984 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6959159948678 -1.6949473848298 1.2056420060036 0.05 ShinyColor 1 1 1 50 0 null sphere -0.70832711573163 -1.6380877310058 1.2359167708622 0.05 ShinyColor 1 1 1 50 0 null sphere -0.17289500419413 -1.6484460573084 1.2326714583296 0.05 ShinyColor 1 1 1 50 0 null sphere 1.782072374157 -1.1171483850247 1.2240469291335 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2018821820895 -0.88922075003197 1.1892376179965 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4037061447111 -0.86810399040225 1.2232022587483 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7713600439485 -0.73331237946056 1.1800796127676 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0093417906025 -0.71539647602735 1.1970619331435 0.05 ShinyColor 1 1 1 50 0 null sphere -2.34436473917 -2.3248047541642 1.2358278581901 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9302453422536 -2.1770318930923 1.210887853659 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6906787737061 -2.1398219398079 1.239295452403 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3437781803075 -1.805199098265 1.230759835879 0.05 ShinyColor 1 1 1 50 0 null sphere -0.51418629614642 -1.8071107207157 1.2262252896006 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7690911240268 -1.2990192558567 1.1872815392098 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2020155510977 -1.2756352230878 1.2048862482905 0.05 ShinyColor 1 1 1 50 0 null sphere -2.189478864328 -1.0935420705755 1.204486141266 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2091207617653 -1.0345040562844 1.2019965864465 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6042042203533 -0.75425131374603 1.2013741977416 0.05 ShinyColor 1 1 1 50 0 null sphere -3.638399769279 1.8514234555529 1.1969285641353 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5087111870996 -1.6029227691803 1.2416960945503 0.05 ShinyColor 1 1 1 50 0 null sphere -0.87846151384305 -1.4441691931009 1.242140657911 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8098139512514 -1.3846421591132 1.2100431832738 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2816360255944 -1.0535313681192 1.2289815824365 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7964778738239 -0.89548909341679 1.2473865055664 0.05 ShinyColor 1 1 1 50 0 null sphere -3.5551330518339 1.5334272836974 1.199507031627 0.05 ShinyColor 1 1 1 50 0 null sphere -0.35689977915707 -1.8237818467392 1.2406735988209 0.05 ShinyColor 1 1 1 50 0 null sphere -0.17529564634151 -1.8328064829599 1.2460083591484 0.05 ShinyColor 1 1 1 50 0 null sphere 3.8679636622125 -1.6649393579876 1.234316342764 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0227676040934 -0.90513611834236 1.2437410860092 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4719013408398 -0.90855925621918 1.2389398017145 0.05 ShinyColor 1 1 1 50 0 null sphere 1.276070357093 -2.2715905198973 1.2283147373955 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4892393119042 -2.2567421036524 1.2339606920755 0.05 ShinyColor 1 1 1 50 0 null sphere 3.3016343971115 -2.2559863459394 1.2340940610836 0.05 ShinyColor 1 1 1 50 0 null sphere 2.339110265021 -2.010542914538 1.2425407649355 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3807213955755 -1.3009753346434 1.3727978295988 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9851044609548 -2.1849006645753 1.3652847088043 0.05 ShinyColor 1 1 1 50 0 null sphere 0.89392369229918 -2.2546526558575 1.3370549354045 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4182948026507 -1.9175402594951 1.253565936279 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1032694022091 -1.7549189821782 1.3193613136516 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1765334440402 -1.6359982832109 1.3533704107395 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1415104777165 -1.3362736654771 1.3223843445039 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0373492823219 -1.2041494346992 1.2507651871071 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0465962002229 -1.0798939754043 1.2481422632794 0.05 ShinyColor 1 1 1 50 0 null sphere 2.000219615216 -0.3599236128711 1.3258519387168 0.05 ShinyColor 1 1 1 50 0 null sphere -0.72775453459097 -2.3953569594955 1.3628396103208 0.05 ShinyColor 1 1 1 50 0 null sphere -0.34565232613325 -2.4394131885335 1.3504362925594 0.05 ShinyColor 1 1 1 50 0 null sphere -0.18071931934114 -2.3608143863749 1.3528369347068 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2053497763023 -2.4251871609935 1.3459462026171 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0150766579546 -2.4334560395011 1.3707083818039 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8201800806563 -2.3685497888498 1.3266076964298 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3923331257815 -2.3528122458836 1.3554154021984 0.05 ShinyColor 1 1 1 50 0 null sphere -0.88935331617838 -2.3136906701486 1.3320758257655 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6297649668067 -2.3112011153291 1.3186944686107 0.05 ShinyColor 1 1 1 50 0 null sphere 1.795542643984 -2.3286724554017 1.3563489852557 0.05 ShinyColor 1 1 1 50 0 null sphere 1.967499751874 -2.3262273569182 1.3568824612884 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8965482629094 -2.3078668901244 1.2817067970067 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4451378031389 -2.3001314876495 1.3164716518076 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0377415862441 -2.2984421468791 1.2860635179408 0.05 ShinyColor 1 1 1 50 0 null sphere -0.072512597364863 -2.2846162263637 1.3087807056688 0.05 ShinyColor 1 1 1 50 0 null sphere 2.6694652983019 -2.2824378658966 1.273437918499 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2757591627405 -2.2802595054295 1.3155825250863 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5426313715154 -2.1637394486096 1.3128706885865 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2595342468602 -2.1769429804201 1.3242515106185 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0778926374197 -2.149157770381 1.3319424567573 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2200109173181 -2.2242889783268 1.3732423929595 0.05 ShinyColor 1 1 1 50 0 null sphere -0.039259257990066 -2.1797437295921 1.3260742203971 0.05 ShinyColor 1 1 1 50 0 null sphere -1.669339732396 -2.1904132502471 1.3523923713461 0.05 ShinyColor 1 1 1 50 0 null sphere 0.7041395936481 -2.172586259486 1.3518588953134 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4498151683104 -2.2238888713022 1.2802841942526 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4989394196595 -2.1742311439203 1.3529258473789 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9428709416953 -2.0111653032429 1.3268744344462 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5836653930924 -1.9827132481628 1.329586270946 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6011437128761 -1.9818685777776 1.3560822472393 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2847924254549 -1.9851583466463 1.3370104790685 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5428178233533 -1.9962724306619 1.3427008900845 0.05 ShinyColor 1 1 1 50 0 null sphere 0.86907260044021 -1.9431915654032 1.3334984285195 0.05 ShinyColor 1 1 1 50 0 null sphere 1.3962802898061 -2.0307705474464 1.3162049137912 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6188287081353 -2.0057860865793 1.3177608855534 0.05 ShinyColor 1 1 1 50 0 null sphere 1.2302358746125 -1.9990287234978 1.3578160443458 0.05 ShinyColor 1 1 1 50 0 null sphere -0.046238902751888 -2.0081422723906 1.3079804916196 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0463644686577 -1.9709323191062 1.3775991138936 0.05 ShinyColor 1 1 1 50 0 null sphere -0.35689977915707 -1.9754224090485 1.3660849228534 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4927591655555 -1.8814417146123 1.3735535873119 0.05 ShinyColor 1 1 1 50 0 null sphere -0.17453988862844 -1.989248329564 1.3594609287801 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9893278128807 -1.8273383536242 1.3770211815248 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5481525836808 -1.8231594580343 1.3594609287801 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7285485923203 -1.8193362131329 1.3103366774309 0.05 ShinyColor 1 1 1 50 0 null sphere 1.6650632976404 -1.8280496550012 1.2892199178012 0.05 ShinyColor 1 1 1 50 0 null sphere -0.59260727296078 -1.8650817829413 1.3151379617257 0.05 ShinyColor 1 1 1 50 0 null sphere -0.72281988128802 -1.8090223431664 1.3643066694109 0.05 ShinyColor 1 1 1 50 0 null sphere -0.29972893098062 -1.6994819311082 1.2786393098183 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7858083531689 -1.6447561814152 1.3401668789289 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7036513973427 -1.6992596494279 1.2888198107767 0.05 ShinyColor 1 1 1 50 0 null sphere -0.7356677624101 -1.7070395082389 1.2711706453598 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5688606097923 -1.6692071662496 1.305402024128 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7467740433234 -1.6250175682034 1.3556821402148 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2919420924586 -1.4679533328944 1.3419895887075 0.05 ShinyColor 1 1 1 50 0 null sphere 3.8979272327186 -1.4659527977716 1.2867748193178 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7762041377968 -1.4838242448687 1.3415450253469 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7422403204363 -1.5136989027028 1.3066912578738 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8959258742045 -1.4504819928218 1.3498139038545 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8338195493339 -1.3030647824384 1.3482579320923 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3819303431428 -1.3770845819825 1.2589006966066 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2282003330385 -1.4368783539867 1.3633286300175 0.05 ShinyColor 1 1 1 50 0 null sphere 2.948828914119 -1.3531226168448 1.3124705815619 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9096637054392 -1.3125784383557 1.2888642671127 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1120795598518 -1.3156459255441 1.2885975290963 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0693500411846 -1.3046207542005 1.3499028165266 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0208115253067 -1.299952838914 1.3599944048128 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8769421953146 -1.1451558767441 1.3228289078645 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1223864501072 -1.1754306416027 1.2838851574737 0.05 ShinyColor 1 1 1 50 0 null sphere 3.9096192491031 -1.1615602647512 1.282640380064 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4658108227993 -1.0852731920679 1.3573714809851 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2549552442458 -1.1253283508602 1.3255852007004 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3973114120292 -1.0125426262695 1.2545439756724 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8633385564794 -0.95537177809306 1.3254518316922 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7766058916039 -0.98955870052517 1.2899756755143 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5314283748276 -0.92127376833307 1.3543484501329 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6594704257901 -0.8748168971477 1.2601010176802 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5988694600258 -0.84560908435459 1.2574780938526 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9167750724266 -0.84796527016591 1.3633730863536 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5725949420215 -0.74576015355808 1.3246960739791 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9891499875365 -0.73651323565707 1.3593275597719 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0064435022648 -0.5331699545069 1.3380329747979 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5967791888396 -0.53236974045778 1.3194057699877 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5414310504417 -0.35009876260127 1.3646623200994 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4747910026839 -0.23015556790448 1.318916750291 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0460540976965 -0.19565745111993 1.3018899735791 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3529806418725 -0.16476029755645 1.3511920502724 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1526603915746 -0.090918323356535 1.2901979571946 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1776448524417 -0.14897829825424 1.3759097731232 0.05 ShinyColor 1 1 1 50 0 null sphere -3.4613746390779 1.4798129424059 1.3215396741187 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3045771417853 1.4662537599068 1.2849076532032 0.05 ShinyColor 1 1 1 50 0 null sphere -3.3000425955069 1.544541367713 1.2809954956297 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6212396235589 1.5062200060271 1.3075803845951 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6843231644317 1.5893533544641 1.339544490224 0.05 ShinyColor 1 1 1 50 0 null sphere -3.7814602587284 1.6537705854187 1.3117592801849 0.05 ShinyColor 1 1 1 50 0 null sphere -3.469243410561 1.6043795960532 1.3294529019378 0.05 ShinyColor 1 1 1 50 0 null sphere -3.6697414862032 1.7332585142986 1.281929078687 0.05 ShinyColor 1 1 1 50 0 null sphere -3.825961051127 1.7269012582416 1.2858412362605 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0500543445509 -2.2462059520056 1.3321202821016 0.05 ShinyColor 1 1 1 50 0 null sphere 3.41286414994 -2.124262222186 1.321717499463 0.05 ShinyColor 1 1 1 50 0 null sphere 0.75797621661986 -2.0441519046013 1.3768433561805 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4149527743437 -1.9954277602767 1.2910870839159 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4141525602946 -1.87130566999 1.2875305770308 0.05 ShinyColor 1 1 1 50 0 null sphere -0.91327082498004 -1.6558258090948 1.3360768960112 0.05 ShinyColor 1 1 1 50 0 null sphere -0.96546256351749 -1.4695537609927 1.2865080813014 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4978280112579 -1.4702650623697 1.2918428416289 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3358727555908 -1.1357311334989 1.2897089374979 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7963445048157 -1.107367991091 1.321050654422 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5280574963892 -0.99013663289398 1.2861079742768 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4397602332579 -0.95586079778975 1.2970886892843 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8989122518231 -0.91336054051394 1.2707705383353 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6739187350105 -0.95523840908487 1.2869971009981 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8348062152209 -0.95955067368294 1.2799729999002 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6050044344024 -0.94603594751992 1.3106478717834 0.05 ShinyColor 1 1 1 50 0 null sphere -0.52427788443262 -2.4422583940415 1.3631508046733 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7248578930358 -2.1962814866074 1.345901746281 0.05 ShinyColor 1 1 1 50 0 null sphere -0.51880975509693 -1.9595070407382 1.3851566910242 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5316062001718 -1.8321396379189 1.3370993917406 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4953384564384 -1.6676067381514 1.3537705177641 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3765955828153 -1.4775559014839 1.3269188907823 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8510327778837 -1.1186599004508 1.2866414503096 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4283785878346 -1.1631162365134 1.3015787792266 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4911142811212 -1.1219052129834 1.3047351790871 0.05 ShinyColor 1 1 1 50 0 null sphere -1.7168190993109 -2.2985755158873 1.3782659589345 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0700168862255 -2.178232214166 1.3694636043941 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6188748112539 -1.8223592439851 1.3974710961136 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7193897637001 -1.6371541479485 1.3642622130748 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1212375650807 -1.4845355462457 1.3197169643401 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8556562368342 -1.2670996065637 1.3532370417313 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6439107081683 -1.2804809637186 1.359416472444 0.05 ShinyColor 1 1 1 50 0 null sphere -1.314711539625 -1.3037316274793 1.3152268743978 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6588480370853 -1.1231944467292 1.3015787792266 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5282719749672 -1.9972504700553 1.34376784215 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4107825052475 -1.5864294685011 1.3704861001236 0.05 ShinyColor 1 1 1 50 0 null sphere -1.082338271026 -1.5847401277308 1.3715530521891 0.05 ShinyColor 1 1 1 50 0 null sphere 3.7874976939392 -1.4685757215993 1.3790661729837 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2927501096101 -1.4329661964132 1.3434566477976 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4886691826378 -1.3063990076431 1.3311866990443 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4169096765217 -1.0929196818706 1.3589274527473 0.05 ShinyColor 1 1 1 50 0 null sphere -0.96043899754242 -2.196059204927 1.4034282451459 0.05 ShinyColor 1 1 1 50 0 null sphere 0.67328689642068 -2.3219150923202 1.3948926286219 0.05 ShinyColor 1 1 1 50 0 null sphere 0.84342129453211 -2.2799483110771 1.3701749057712 0.05 ShinyColor 1 1 1 50 0 null sphere 1.5869090588424 -2.1748535326252 1.3404780732814 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8954813108439 -2.1557817644544 1.3891133049338 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1315069787112 -2.0408176793966 1.4130752700715 0.05 ShinyColor 1 1 1 50 0 null sphere 1.4107285990265 -2.1810329633379 1.359416472444 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4352701433156 -2.0052970668826 1.4059177999655 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7869625711239 -1.9857362790151 1.366485029878 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7631784313305 -1.829383345083 1.3930699188434 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3955331585867 -1.3770401256465 1.3425230647402 0.05 ShinyColor 1 1 1 50 0 null sphere 3.807947608528 -1.303509345799 1.3591941907637 0.05 ShinyColor 1 1 1 50 0 null sphere 1.91064009805 -1.104567241919 1.4122305996863 0.05 ShinyColor 1 1 1 50 0 null sphere 3.614651459328 -1.101722036411 1.3644844947551 0.05 ShinyColor 1 1 1 50 0 null sphere 2.083352963653 -0.29079401029382 1.3649290581158 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4642634775307 -2.2965749807645 1.3872905951552 0.05 ShinyColor 1 1 1 50 0 null sphere 1.7934531961891 -2.17400886224 1.4104523462438 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0551684699806 -1.4617739021817 1.4253452188248 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2556665456228 -1.2951070982832 1.4153869995468 0.05 ShinyColor 1 1 1 50 0 null sphere 0.57881718228774 -2.3432985899663 1.4143200474813 0.05 ShinyColor 1 1 1 50 0 null sphere -0.15569040213792 -2.1695187722977 1.4229445766774 0.05 ShinyColor 1 1 1 50 0 null sphere 0.60224567139271 -2.2398486959487 1.4136087461043 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3697929400065 -1.9030474939387 1.4029836817853 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7373501234694 -1.8118675486744 1.4174764473417 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5894447167805 -1.302842500758 1.4135198334321 0.05 ShinyColor 1 1 1 50 0 null sphere 2.7248578930358 -2.0054748922268 1.4190324191039 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8651620896493 -1.6269291906541 1.422633382325 0.05 ShinyColor 1 1 1 50 0 null sphere 3.254421768213 -2.0526430647892 1.4274791229558 0.05 ShinyColor 1 1 1 50 0 null sphere -0.53147981087476 -2.3595696089652 1.4928743933038 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3781515545775 -2.402069866241 1.5314180366701 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8362288179749 -2.4202525076905 1.5234603525149 0.05 ShinyColor 1 1 1 50 0 null sphere -0.36810277584484 -2.3595696089652 1.4963864438528 0.05 ShinyColor 1 1 1 50 0 null sphere -0.70410376380568 -2.3104898139521 1.4718020900102 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8845886851173 -2.3173805460418 1.4677565634285 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0067991529533 -2.3341405847374 1.5358636702763 0.05 ShinyColor 1 1 1 50 0 null sphere -0.24309155883691 -2.3065776563786 1.4746472955182 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4858692568571 -2.3080891718047 1.5042107589998 0.05 ShinyColor 1 1 1 50 0 null sphere 0.75939881937387 -2.2897287050109 1.4544196626097 0.05 ShinyColor 1 1 1 50 0 null sphere -0.86165701881141 -2.1531588406267 1.4815380276079 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9857268496596 -2.2346028482933 1.5070115081717 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0368508127403 -2.1849006645753 1.4895846244352 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5389945784519 -2.1752980959858 1.5085674799339 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6250612216777 -2.2070843762706 1.5200816709741 0.05 ShinyColor 1 1 1 50 0 null sphere 0.73819314707202 -2.1885016277964 1.4754030532312 0.05 ShinyColor 1 1 1 50 0 null sphere 3.069616779201 -2.0357052007494 1.4476622995282 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8883682970739 -2.0493532959206 1.4357480014634 0.05 ShinyColor 1 1 1 50 0 null sphere -1.0783816571164 -1.9711990571226 1.4886954977139 0.05 ShinyColor 1 1 1 50 0 null sphere 0.89445716833193 -2.0167223452507 1.49585296782 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5863842093033 -2.011298672251 1.4841609514356 0.05 ShinyColor 1 1 1 50 0 null sphere -0.74162491144249 -1.9987175291453 1.4988315423362 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2858149211843 -1.8295167140912 1.5048331477047 0.05 ShinyColor 1 1 1 50 0 null sphere -0.75216106308931 -1.8701942615885 1.4557088963555 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5470856316153 -1.827960742329 1.5447104811528 0.05 ShinyColor 1 1 1 50 0 null sphere -0.84880913768932 -1.7831042992419 1.4496183783149 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8521355597916 -1.6411107618581 1.4849611654847 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6450151368587 -1.6376431676452 1.4388599449878 0.05 ShinyColor 1 1 1 50 0 null sphere 2.008710775404 -1.6471568235626 1.500076319746 0.05 ShinyColor 1 1 1 50 0 null sphere -0.99996068030204 -1.686500680978 1.4680677577809 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3761954757908 -1.5871407698781 1.5426654896939 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1343443811168 -1.5893191303452 1.4884287596976 0.05 ShinyColor 1 1 1 50 0 null sphere -1.1149692216959 -1.6521803895377 1.5131909388844 0.05 ShinyColor 1 1 1 50 0 null sphere -1.2865262225613 -1.4872029264095 1.5116794234583 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8497349176443 -1.4880031404586 1.4982980663035 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2433068608061 -1.5030293820478 1.4502407670198 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1767198958781 -1.4824460984508 1.5038106519752 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4159386168394 -1.4185623435289 1.5655605027661 0.05 ShinyColor 1 1 1 50 0 null sphere 3.6311003036711 -1.4403904045356 1.439704615373 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3323084456034 -1.2863936564149 1.5435990727512 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5096081169233 -1.3356957331083 1.4907849455089 0.05 ShinyColor 1 1 1 50 0 null sphere -1.971331623269 -1.3355623641001 1.4568203047571 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8461870372529 -1.3143122354622 1.4989204550083 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6580922793722 -1.3029314134302 1.53706399135 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8685844041348 -1.3001306642582 1.4706462252725 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4440280415199 -1.2617648462362 1.4275235792919 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4626099666028 -1.1231055340571 1.4891400610746 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9752796106849 -0.93354371708634 1.5445771121446 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5307170734506 -0.91567226998919 1.5272835974162 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0096443584613 -0.74847199005789 1.5153692993515 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5340068423192 -0.73500172023094 1.5668052801759 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0706829078752 -0.62666162924647 1.4604657243142 0.05 ShinyColor 1 1 1 50 0 null sphere 2.5298279467293 -0.53779341345741 1.5255942566459 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1162061960033 -0.50276182064011 1.534218785842 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1125607764461 -0.45683842548749 1.4457506770775 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1789785425236 -0.33520589002032 1.5410206052596 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4839934642488 -0.37241584330468 1.4910961398613 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3723636043957 -0.33951815461838 1.5480891626935 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2015179049073 -0.22210897107716 1.5003430577623 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3139924351456 -0.22139766970016 1.4813157459276 0.05 ShinyColor 1 1 1 50 0 null sphere 0.84244325513873 -2.2774587562576 1.4615326763797 0.05 ShinyColor 1 1 1 50 0 null sphere -0.40442360240795 -2.0452633130028 1.4642445128795 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8802772439105 -1.9559505338531 1.4593987722487 0.05 ShinyColor 1 1 1 50 0 null sphere 3.3802331992701 -1.9488819764192 1.4551754203228 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5695805376629 -1.9836468312201 1.515769406376 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5557468140451 -1.6565815668079 1.4697126422152 0.05 ShinyColor 1 1 1 50 0 null sphere 3.1098942196737 -1.5139211843831 1.4545530316179 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2733593439844 -1.4396346468225 1.4784705404196 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4729246599605 -1.4395457341504 1.4488181642658 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9643433520136 -1.0864290568055 1.5215487300642 0.05 ShinyColor 1 1 1 50 0 null sphere 0.87703028459541 -2.2093516494098 1.5202594963184 0.05 ShinyColor 1 1 1 50 0 null sphere -0.21588428116663 -2.2286456992609 1.4680233014449 0.05 ShinyColor 1 1 1 50 0 null sphere 1.8784981670767 -2.2114855535408 1.4815380276079 0.05 ShinyColor 1 1 1 50 0 null sphere -0.56539999529049 -2.0477084114863 1.4785149967556 0.05 ShinyColor 1 1 1 50 0 null sphere 1.0207576190857 -2.0485975382075 1.4821159599767 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2635797734419 -1.9555059704925 1.4764255489607 0.05 ShinyColor 1 1 1 50 0 null sphere 2.8911690462459 -1.8284053056897 1.4714464393217 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4245561663245 -1.8248932551407 1.4791373854605 0.05 ShinyColor 1 1 1 50 0 null sphere -0.92914173695437 -1.8384079813037 1.5110125784173 0.05 ShinyColor 1 1 1 50 0 null sphere 2.9350919062757 -1.6965922692642 1.467445369076 0.05 ShinyColor 1 1 1 50 0 null sphere 3.069661235537 -1.6537363612998 1.4844276894519 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4101523134402 -1.4854691293031 1.4671786310597 0.05 ShinyColor 1 1 1 50 0 null sphere 3.5612593997169 -1.511031522539 1.4625996284452 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2564223033359 -1.4687980032796 1.4730468674199 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0339261444451 -1.4212297236926 1.5494228527754 0.05 ShinyColor 1 1 1 50 0 null sphere 3.3848566582206 -1.3486769832385 1.4542418372655 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1885008249346 -2.4413248109842 1.5219932934248 0.05 ShinyColor 1 1 1 50 0 null sphere -0.35481033136213 -2.2022386356397 1.4993205620329 0.05 ShinyColor 1 1 1 50 0 null sphere 3.0719285086762 -1.961552032197 1.4742916448297 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4515481420255 -1.8213812045918 1.5403537602186 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1612849207707 -1.4708874510745 1.5451995008495 0.05 ShinyColor 1 1 1 50 0 null sphere 3.4172208708742 -1.6479570376117 1.4840275824274 0.05 ShinyColor 1 1 1 50 0 null sphere -0.71428426476401 -2.1941475824764 1.5034994576228 0.05 ShinyColor 1 1 1 50 0 null sphere -1.137775322096 -1.8353404941154 1.5273725100884 0.05 ShinyColor 1 1 1 50 0 null sphere 3.074640345176 -1.8246265171243 1.4930966749841 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2627795593928 -1.8278718296569 1.4896735371073 0.05 ShinyColor 1 1 1 50 0 null sphere 3.2595342468602 -1.6532473416032 1.4934523256726 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6930794158534 -2.3291170187623 1.5642712690203 0.05 ShinyColor 1 1 1 50 0 null sphere -0.55250765783235 -2.1761872227071 1.5040773899916 0.05 ShinyColor 1 1 1 50 0 null sphere -0.92442936533174 -1.9867143184084 1.5112793164337 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5419723295768 -1.9909376703344 1.552001320267 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4920042312338 -1.6959254242232 1.5436879854233 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9774135148159 -1.4444359311173 1.5858770483467 0.05 ShinyColor 1 1 1 50 0 null sphere 1.9577638142763 -1.3125784383557 1.5893446425596 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3968590455662 -1.1248393311635 1.5935679944855 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0151655706267 -2.4387907998286 1.5617817142008 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3156895790184 -1.6394658774238 1.5848990089533 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3136898672868 -1.5435291042008 1.5663162604792 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5389048423885 -2.2005048385333 1.5936569071577 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4802677585132 -2.3375637226142 1.6804356751518 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6652497494783 -2.3528122458836 1.7311603545992 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5191225962319 -2.1773875437808 1.7121774991004 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5459297668776 -1.997072644711 1.6966622378146 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4878689685887 -1.830761491501 1.7574785055482 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4094035354382 -1.689345886486 1.5945460338789 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4908030867688 -1.6568927611603 1.7123553244447 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1813878111646 -1.5090754437523 1.7066649134287 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9921371885463 -1.4142945352669 1.7242251661734 0.05 ShinyColor 1 1 1 50 0 null sphere -1.493114816244 -1.4770224254512 1.6764790612422 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8034644982968 -1.343297766575 1.6358904264171 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2066303835545 -1.3108446412493 1.6197527764264 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0296052533534 -1.1245725931472 1.6835920750122 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0618805533348 -0.81035520985698 1.6426477894986 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1957385812192 -0.58073823409385 1.6895047677085 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4026828255904 -0.47528780495345 1.6065047882797 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1943246049588 -2.4193633809693 1.7093322935924 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4238073883225 -2.0126323623329 1.7177789974443 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8887317508648 -1.3683266837782 1.628688499975 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6682727803305 -1.3431643975668 1.6772792752913 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0235678181425 -2.4116724348305 1.7445861680901 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3986014691663 -2.3577024428505 1.7523215705649 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4071807186351 -2.1989044104351 1.7107104400104 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5224115417093 -1.3531670731809 1.6406472543758 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3696517678959 -0.90993740263712 1.6909273704625 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3667621060519 -0.54690696235024 1.6574517494074 0.05 ShinyColor 1 1 1 50 0 null sphere -2.5031627715855 -1.8244931481162 1.7327607826974 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4788451557592 -1.7162864261399 1.674878633144 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3809523037495 -1.6416886942269 1.7335609967465 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0376963065168 -1.2706561134488 1.6548288255797 0.05 ShinyColor 1 1 1 50 0 null sphere 2.0497439735897 -0.95688329351919 1.6751009148243 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1727991118109 -0.74593797890233 1.7049755726583 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2379721004786 -0.41793913143274 1.6573628367353 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1645302333033 -1.2614091955477 1.65505110726 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3410663438077 -1.0482855204638 1.6753231965046 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4413153816288 -0.91176011241568 1.6518947073996 0.05 ShinyColor 1 1 1 50 0 null sphere -1.488802551646 -2.3112900280012 1.7412519428854 0.05 ShinyColor 1 1 1 50 0 null sphere 2.2103202594477 -1.1043005039026 1.6978625588883 0.05 ShinyColor 1 1 1 50 0 null sphere 2.4402484295633 -0.7722116735153 1.6654538898987 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8352063222455 -2.37441802521 1.7780173328091 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6485341671188 -1.4503486238136 1.7488984326881 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8196021482875 -1.4034027329316 1.7524549395731 0.05 ShinyColor 1 1 1 50 0 null sphere 2.1481258452962 -0.89482224837585 1.7305824222303 0.05 ShinyColor 1 1 1 50 0 null sphere 2.3534696615692 -0.69525775579101 1.7031973192158 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2747016605599 -1.5701139931662 1.7846857832185 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6175925572192 -1.6241728978182 1.7891314168247 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2205538432357 -2.3314732045736 1.8663076162293 0.05 ShinyColor 1 1 1 50 0 null sphere -1.3689927259574 -2.1382659680457 1.8160275001426 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4972937118339 -2.0278364292663 1.8470135663782 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4313213325084 -1.8317839872304 1.9045400652431 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2362469298658 -1.5484193011676 1.8190505309948 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0126760158072 -1.4667530118207 1.9299690894709 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8553450424818 -1.4771113381233 1.8610173122379 0.05 ShinyColor 1 1 1 50 0 null sphere -2.477956029038 -1.9867143184084 1.8451019439275 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3330728298101 -2.305466247977 1.8521705013615 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6046113070889 -2.3006649636823 1.8422122820834 0.05 ShinyColor 1 1 1 50 0 null sphere -1.5056070466776 -2.3100452505915 1.8620842643034 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3758842814383 -2.1757426593465 1.9059626679972 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6518683923234 -2.1957924669107 1.8629289346886 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6612486792327 -2.0001401318993 1.8541710364843 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6684061493387 -1.8152017738791 1.8188282493145 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6208823260878 -1.8739730501538 1.8146938100607 0.05 ShinyColor 1 1 1 50 0 null sphere -1.6919680074519 -1.6973035706412 1.8162053254868 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3836196839132 -1.6391546830713 1.9154763239145 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8572566649325 -2.3134683884683 1.8673301119588 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8332057871226 -1.6529806035868 1.8685748893685 0.05 ShinyColor 1 1 1 50 0 null sphere -1.835561972934 -1.818713824428 1.9156096929227 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0088083145698 -2.309689599903 1.9133424197835 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8460092119087 -2.1823221970837 1.9400606777571 0.05 ShinyColor 1 1 1 50 0 null sphere -1.4593724571726 -2.1878792390915 1.8894249109819 0.05 ShinyColor 1 1 1 50 0 null sphere -2.4167841106159 -2.0102761765216 1.94206121288 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1780091296239 -1.4947160472041 1.9310360415364 0.05 ShinyColor 1 1 1 50 0 null sphere -2.325159601991 -1.5255687444315 1.9417055621915 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8218694214267 -1.9828910735071 1.9571763671412 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9850241747763 -1.6620496961435 1.9565984347724 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1855667067545 -2.2204212770893 1.9738030368286 0.05 ShinyColor 1 1 1 50 0 null sphere -2.002584427521 -2.2435830281779 1.9664677413783 0.05 ShinyColor 1 1 1 50 0 null sphere -1.9832903776699 -1.7863496117745 1.9802492055577 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1940578669425 -2.1335535964231 2.0107017957605 0.05 ShinyColor 1 1 1 50 0 null sphere -1.8873536044468 -2.0456189636913 1.99749826395 0.05 ShinyColor 1 1 1 50 0 null sphere -2.026768674339 -1.8454765387377 2.0101238633917 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0535313886487 -1.6120363180732 2.0096793000311 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0158324156676 -2.1330645767264 2.0141249336374 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1917461374672 -2.0065418442923 2.030929428669 0.05 ShinyColor 1 1 1 50 0 null sphere -2.0216117393558 -1.9964502560061 2.0299069329396 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3469432066616 -1.9417689626492 2.023816414899 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3678821409471 -1.8184026300756 2.0895228795995 0.05 ShinyColor 1 1 1 50 0 null sphere -2.1889898446313 -1.8238263030752 2.0616487568882 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3356512973017 -1.5297476400214 2.1093948618194 0.05 ShinyColor 1 1 1 50 0 null sphere -2.2262887105878 -1.5283250372674 2.0985475158202 0.05 ShinyColor 1 1 1 50 0 null sphere -2.187344960197 -1.647468017915 2.1249990357774 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3855313063639 -1.641733150563 2.1134848447372 0.05 ShinyColor 1 1 1 50 0 null sphere -2.3451649532191 -1.605545693008 2.1788801150852 0.05 ShinyColor 1 1 1 50 0 null ================================================ FILE: scenes/line.scn ================================================ dispersion 5.0 cameraPosition 0.0 0.0 100.0 cameraUp 0.0 1.0 0.0 cameraLookAt 0.0 0.0 0.0 cameraScreenWidth 384 light 50 50 1000 0.9 sphere 10 0 0 30 ShinyColor 0.949 0.219 0.352 100 0.4 null sphere -40 10 -20 30 ShinyColor 0.7 0.7 0.0 50 0.2 null sphere 3400 0 -10000 2800 ShinyColor 0.960 0.647 0.011 -1 -1 null sphere -7 -0.5 90 2 ShinyColor 0.211 0.694 0.749 -1 -1 null ================================================ FILE: scenes/lineFar.scn ================================================ dispersion 5.0 cameraPosition 0.0 0.0 100.0 cameraUp 0.0 1.0 0.0 cameraLookAt 0.0 0.0 -9900.0 cameraScreenWidth 28800 light 50 50 1000 0.9 sphere 10 0 0 30 ShinyColor 0.949 0.219 0.352 100 0.4 null sphere -40 10 -20 30 ShinyColor 0.7 0.7 0.0 50 0.2 null sphere 3400 0 -10000 2800 ShinyColor 0.960 0.647 0.011 -1 -1 null sphere -7 -0.5 90 2 ShinyColor 0.211 0.694 0.749 -1 -1 null ================================================ FILE: scenes/modelTest1.scn ================================================ dispersion 5.0 maxReflections 20 cameraPosition 0 50 500.0 cameraUp 0 1 0 cameraLookAt 0 50 0 cameraScreenWidth 1920 light 0 100 200 .5 sphere -200 -25 0 100 ShinyColor 1 0 0 100 0.75 null sphere 200 -25 0 100 ShinyColor 0 1 0 100 0.75 null sphere 0 325 0 100 ShinyColor 0 0 1 100 0.75 null model ../models/gameguy1k.m 400 0 0 0 Marble 0.4 0.3 0.2 0.6 0.7 0.8 0.5 500 0.35 NormalMap 0.5 0.25 ================================================ FILE: scenes/modelTest2.scn ================================================ dispersion 5.0 maxReflections 20 cameraPosition 0 0 700.0 cameraUp 0 1 0 cameraLookAt 0 0 0 cameraScreenWidth 1920 light 0 100 100 .5 sphere -200 -25 0 100 ShinyColor 1 0 0 100 0.75 null sphere 200 -25 0 100 ShinyColor 0 1 0 100 0.75 null sphere 0 300 0 100 ShinyColor 0 0 1 100 0.75 null sphere 0 0 0 125 ShinyColor .8 .8 .8 50 0.75 null ================================================ FILE: scenes/modelTest3.scn ================================================ dispersion 5.0 maxReflections 20 cameraPosition 0 50 500.0 cameraUp 0 1 0 cameraLookAt 0 50 0 cameraScreenWidth 1920 light 0 100 200 .5 model ../models/gameguy1k.m 400 0 0 0 Marble 0.4 0.3 0.2 0.6 0.7 0.8 0.5 500 0.35 NormalMap 0.5 0.25 ================================================ FILE: scenes/texturesInYoFace.scn ================================================ cameraUp 0 1 0 cameraPosition 175 100 175 cameraLookAt 0 35 0 cameraScreenWidth 200 #dispersion 5.0 light 900 900 0 0.7 triangle 1000 10000 10000 1000 -10000 0 1000 0 -10000 FlatColor 1.0000 0.8901 0.8705 null triangle -1000 10000 10000 -1000 0 -10000 -1000 -10000 0 FlatColor 0.6941 0.4980 0.4627 null triangle 10000 10000 1000 -10000 0 1000 0 -100000 1000 FlatColor 0.9921 0.7960 0.7647 null triangle 10000 10000 -1000 0 -100000 -1000 -10000 0 -1000 FlatColor 0.9921 0.7960 0.7647 null triangle 10000 0 10000 0 0 -10000 -10000 0 10000 FlatColor 0.7647 0.9921 0.8941 null triangle 10000 1000 10000 -10000 1000 10000 0 1000 -10000 FlatColor 0.7647 0.9921 0.8941 null sphere -313 19 -293 19 CrissCross 0.261 0.027 0.765 0.376 0.592 0.216 0.244 0.771 0.807 9 79 0.49 NormalMap 5.14 1.19125 sphere -290 15 -229 15 CrissCross 0.259 0.377 0.707 0.969 0.776 0.365 0.924 0.979 0.626 20 113 0 null sphere -292 18 -183 18 Marble 0.084 0.411 0.092 0.136 0.229 0.679 11 87 0.47 NormalMap 16.64 0.04875 sphere -290 23 -133 23 CrissCross 0.537 0.823 0.219 0.497 0.068 0.533 0.263 0.734 0.36 15 134 0.31 NormalMap 19.68 0.72625 sphere -313 22 -56 22 Turbulence 0.767 0.365 0.04 0.567 0.18 0.235 6 147 0.03 null sphere -315 17 14 17 Turbulence 0.68 0.081 0.994 0.571 0.527 0.125 12 18 0.34 NormalMap 3.92 0.52625 sphere -310 19 67 19 Marble 0.681 0.046 0.061 0.737 0.015 0.573 13 33 0.41 null sphere -315 17 130 17 CrissCross 0.64 0.458 0.583 0.836 0.88 0.125 0.241 0.067 0.033 14 124 0.08 NormalMap 17.38 0.2275 sphere -292 24 168 24 Glass 1.68 44 NormalMap 3.78 0.64625 sphere -252 18 -315 18 Turbulence 0.464 0.274 0.024 0.343 0.4 0.266 9 67 0.67 NormalMap 11.1 0.4025 sphere -256 23 -243 23 Turbulence 0.073 0.827 0.424 0.085 0.015 0.942 3 10 0.19 null sphere -253 24 -194 24 CrissCross 0.272 0.068 0.088 0.505 0.623 0.41 0.607 0.36 0.839 12 128 0.69 null sphere -248 23 -134 23 CrissCross 0.797 0.58 0.352 0.315 0.815 0.219 0.177 0.45 0.354 9 79 0.31 null sphere -254 21 -54 21 Glass 1.765 102 null sphere -247 21 -17 21 Marble 0.937 0.264 0.635 0.288 0.58 0.449 11 114 0.63 null sphere -265 18 42 18 Glass 3.605 12 null sphere -248 20 90 20 Turbulence 0.169 0.041 0.693 0.637 0.096 0.629 19 111 0.65 NormalMap 3.62 0.53125 sphere -261 15 138 15 CrissCross 0.747 0.323 0.118 0.593 0.196 0.533 0.115 0.89 0.978 15 25 0.1 null sphere -255 24 205 24 Marble 0.771 0.818 0.404 0.85 0.104 0.848 7 105 0.31 NormalMap 8.84 0.96625 sphere -221 25 -311 25 Turbulence 0.872 0.012 0.181 0.634 0.86 0.967 10 52 0.46 NormalMap 14.56 1.02375 sphere -216 20 -223 20 Turbulence 0.051 0.345 0.521 0.456 0.787 0.294 20 124 0.18 NormalMap 19.44 0.15125 sphere -218 24 -193 24 Marble 0.971 0.328 0.87 0.054 0.055 0.688 19 91 0.64 null sphere -204 22 -111 22 Glass 1.915 121 NormalMap 4.08 0.075 sphere -217 16 -73 16 Glass 1.59 70 NormalMap 6.22 0.84375 sphere -206 22 -12 22 Turbulence 0.428 0.295 0.142 0.04 0.546 0.124 15 23 0.44 null sphere -200 25 43 25 Glass 4.51 101 NormalMap 18.4 1.2325 sphere -213 19 108 19 CrissCross 0.63 0.175 0.828 0.925 0.318 0.869 0.471 0.443 0.574 13 13 0.28 NormalMap 9.94 0.4075 sphere -210 25 184 25 CrissCross 0.384 0.097 0.934 0.785 0.977 0.869 0.729 0.376 0.498 19 33 0.3 NormalMap 1.44 1.11875 sphere -135 20 -314 20 Turbulence 0.372 0.501 0.214 0.761 0.264 0.866 9 143 0.35 null sphere -157 21 -252 21 CrissCross 0.601 0.226 0.442 0.673 0.12 0.107 0.318 0.626 0.844 8 42 0.05 null sphere -157 20 -206 20 CrissCross 0.023 0.094 0.306 0.045 0.398 0.622 0.443 0.201 0.842 1 66 0.2 null sphere -152 15 -150 15 Marble 0.134 0.206 0.603 0.631 0.238 0.76 11 35 0.29 NormalMap 4.82 0.64125 sphere -129 18 -98 18 Turbulence 0.036 0.772 0.54 0.32 0.489 0.086 15 80 0.18 null sphere -156 17 -16 17 Marble 0.621 0.233 0.361 0.039 0.499 0.602 12 13 0.63 NormalMap 5.3 0.77 sphere -145 18 14 18 Marble 0.332 0.401 0.462 0.279 0.323 0.161 11 59 0.04 NormalMap 1.34 0.2625 sphere -140 18 52 18 Turbulence 0.612 0.87 0.062 0.075 0.134 0.679 14 67 0.04 null sphere -145 25 128 25 CrissCross 0.206 0.048 0.657 0.606 0.115 0.868 0.627 0.415 0.44 14 34 0.43 NormalMap 1.68 0.845 sphere -147 17 175 17 CrissCross 0.365 0.758 0.096 0.711 0.187 0.764 0.379 0.778 0.97 9 67 0.4 null sphere -64 23 -310 23 Turbulence 0.256 0.032 0.563 0.474 0.387 0.587 3 122 0.26 null sphere -64 25 -257 25 Turbulence 0.1 0.665 0.69 0.535 0.24 0.232 17 68 0.13 null sphere -75 25 -191 25 Turbulence 0.091 0.355 0.67 0.218 0.163 0.047 2 52 0.13 null sphere -76 22 -131 22 Turbulence 0.14 0.584 0.407 0.978 0.025 0.598 12 55 0.68 NormalMap 17.56 0.72125 sphere -71 25 -67 25 CrissCross 0.941 0.317 0.862 0.926 0.538 0.368 0.605 0.022 0.974 19 32 0.08 null sphere -85 21 -23 21 Turbulence 0.141 0.794 0.74 0.602 0.754 0.408 9 59 0.2 NormalMap 1.28 0.295 sphere -86 25 27 25 Marble 0.266 0.714 0.473 0.381 0.246 0.078 10 121 0.19 NormalMap 14.4 0.55375 sphere -86 20 100 20 Marble 0.651 0.887 0.682 0.714 0.123 0.396 13 45 0.46 null sphere -68 17 154 17 Turbulence 0.476 0.053 0.815 0.758 0.176 0.534 5 68 0.03 NormalMap 6.14 0.39125 sphere -9 25 -307 25 CrissCross 0.269 0.318 0.249 0.319 0.242 0.448 0.083 0.64 0.028 2 20 0.05 null sphere -33 19 -240 19 Marble 0.801 0.434 0.596 0.765 0.296 0.869 9 44 0.38 null sphere -9 15 -193 15 CrissCross 0.046 0.855 0.568 0.955 0.729 0.826 0.396 0.804 0.525 18 41 0.37 null sphere -5 19 -126 19 Turbulence 0.533 0.651 0.823 0.388 0.66 0.692 10 20 0.45 NormalMap 12.08 0.8625 sphere -16 16 -88 16 Turbulence 0.611 0.522 0.924 0.874 0.051 0.609 12 29 0.04 null sphere -14 24 -30 24 Turbulence 0.26 0.349 0.58 0.378 0.993 0.804 20 104 0.62 NormalMap 6.56 0.8625 sphere -26 19 22 19 Turbulence 0.724 0.9 0.745 0.902 0.958 0.307 2 137 0.1 null sphere -12 24 70 24 Turbulence 0.142 0.255 0.125 0.825 0.137 0.278 4 125 0.3 null sphere -26 23 139 23 Turbulence 0.726 0.667 0.353 0.8 0.573 0.495 12 14 0.2 NormalMap 16.9 0.555 sphere 42 21 -312 21 Turbulence 0.39 0.564 0.122 0.819 0.082 0.25 19 135 0.39 null sphere 46 20 -226 20 Marble 0.849 0.923 0.741 0.299 0.767 0.185 5 114 0.54 NormalMap 17.34 0.22875 sphere 61 17 -170 17 Glass 4.15 7 null sphere 48 23 -134 23 Glass 2.985 22 NormalMap 8.82 0.7175 sphere 47 18 -66 18 Glass 2.505 125 null sphere 52 23 -14 23 Glass 1.015 95 NormalMap 0.66 0.81375 #This is the closest one to the camera. sphere 45 23 32 23 CrissCross 1 0 0 0 1 0 0 0 1 1 200 0.1 null sphere 41 16 91 16 Marble 0.61 0.927 0.288 0.493 0.199 0.477 5 99 0.22 NormalMap 17.18 1.18125 sphere 56 24 125 24 Marble 0.728 0.234 0.252 0.407 0.772 0.757 11 133 0.41 NormalMap 6.2 0.05875 sphere 48 17 179 17 Marble 0.09 0.134 0.602 0.949 0.078 0.934 17 102 0.24 NormalMap 10 0.7125 sphere 117 24 -300 24 Turbulence 0.389 0.166 0.153 0.699 0.213 0.771 19 84 0.62 NormalMap 7.22 0.2925 sphere 123 20 -244 20 Marble 0.246 0.113 0.735 0.746 0.684 0.949 10 77 0.4 null sphere 105 19 -168 19 Glass 2.31 97 NormalMap 0.2 0.65 sphere 121 19 -116 19 Marble 0.437 0.36 0.501 0.683 0.474 0.236 9 26 0.13 null sphere 121 24 -66 24 Marble 0.344 0.456 0.977 0.354 0.466 0.496 15 126 0.17 null sphere 102 24 -4 24 CrissCross 0.249 0.832 0.748 0.158 0.494 0.501 0.054 0.239 0.971 7 37 0.21 null sphere 102 15 68 15 Marble 0.331 0.692 0.87 0.157 0.83 0.069 10 99 0.52 NormalMap 18 0.71875 sphere 100 15 113 15 Glass 1.545 42 NormalMap 10.84 0.71625 sphere 124 17 147 17 CrissCross 0.669 0.216 0.07 0.538 0.373 0.9 0.608 0.857 0.55 8 136 0.31 null sphere 184 25 -306 25 Turbulence 0.846 0.829 0.164 0.077 0.687 0.293 10 51 0.12 null sphere 181 25 -234 25 Turbulence 0.623 0.362 0.491 0.525 0.812 0.418 5 50 0.29 NormalMap 18.82 0.8975 sphere 182 25 -188 25 Glass 3.21 148 NormalMap 2.12 0.385 sphere 174 25 -132 25 CrissCross 0.974 0.416 0.034 0.465 0.942 0.846 0.883 0.162 0.165 6 58 0.07 NormalMap 16.86 0.13 sphere 173 16 -63 16 Glass 3.61 50 NormalMap 7.1 0.33875 sphere 169 19 7 19 Glass 4.025 82 null sphere 186 20 58 20 Marble 0.067 0.958 0.197 0.91 0.062 0.775 1 51 0.7 NormalMap 1.02 0.395 sphere 183 19 100 19 CrissCross 0.525 0.438 0.551 0.364 0.442 0.081 0.05 0.329 0.776 19 78 0.59 null sphere 180 25 176 25 CrissCross 0.794 0.573 0.707 0.381 0.907 0.493 0.101 0.805 0.454 13 39 0 null ================================================ FILE: scenes/triangleSpheres.scn ================================================ dispersion 5.0 maxReflections 20 cameraPosition 0.0 0.0 700.0 cameraUp 0.0 1.0 0.0 cameraLookAt 0.0 0.0 0.0 cameraScreenWidth 1920 light 100 100 350 0.9 sphere 0 0 0 250 ShinyColor 0.937 0.874 0.733 100 0.8 null sphere -105 -75 500 100 ShinyColor 0.619 0.745 0.650 100 0.5 null sphere 105 -75 500 100 ShinyColor 0.200 0.364 0.415 5 0.8 null sphere 0 150 500 100 ShinyColor 0.839 0.309 0.164 100 0.5 null ================================================ FILE: scenes/triangleTest1.scn ================================================ dispersion 5.0 maxReflections 20 cameraPosition 0.0 0.0 700.0 cameraUp 0.0 1.0 0.0 cameraLookAt 0.0 0.0 0.0 cameraScreenWidth 1920 light 0 100 350 0.9 triangle 0 0 0 0 100 0 200 200 0 Checkerboard 0.3 0.2 0.1 1 1 1 50 50 0.7 null sphere -105 -75 500 100 ShinyColor 0.619 0.745 0.650 100 0.5 null sphere 105 -75 500 100 ShinyColor 0.200 0.364 0.415 5 0.8 null sphere 0 150 500 100 ShinyColor 0.839 0.309 0.164 100 0.5 null ================================================ FILE: scenes/tumbledStones.scn ================================================ cameraUp 0 0 -1 cameraPosition 0 2000 0 cameraLookAt 0 0 0 cameraScreenWidth 1500 light 100 1500 100 0.6 triangle 1000 10000 10000 1000 -10000 0 1000 0 -10000 FlatColor 1.0000 0.8901 0.8705 null triangle -1000 10000 10000 -1000 0 -10000 -1000 -10000 0 FlatColor 0.6941 0.4980 0.4627 null triangle 10000 10000 1000 -10000 0 1000 0 -100000 1000 FlatColor 0.9921 0.7960 0.7647 null triangle 10000 10000 -1000 0 -100000 -1000 -10000 0 -1000 FlatColor 0.9921 0.7960 0.7647 null triangle 10000 0 10000 0 0 -10000 -10000 0 10000 FlatColor 0.7647 0.9921 0.8941 null triangle 10000 3000 10000 -10000 3000 10000 0 3000 -10000 FlatColor 0.7647 0.9921 0.8941 null sphere 0 2000 0 250 Glass 1.5 50 NormalMap 5 0.025 sphere -500 20 -350 20 CrissCross 0.961 0.948 0.236 0.332 0.195 0.888 0.38 0.136 0.739 1 72 0.29 null sphere -500 20 -300 20 Glass 4.84 100 NormalMap 4.82 0.2425 sphere -500 20 -250 20 CrissCross 0.561 0.513 0.949 0.521 0.461 0.184 0.854 0.656 0.072 5 120 0.57 NormalMap 5.24 0.27875 sphere -500 20 -200 20 Marble 0.602 0.511 0.337 0.842 0.705 0.935 4 44 0.57 NormalMap 11.96 0.465 sphere -500 20 -150 20 Turbulence 0.73 0.747 0.779 0.802 0.981 0.572 13 38 0.59 null sphere -500 20 -100 20 Glass 3.5 13 null sphere -500 20 -50 20 Turbulence 0.525 0.783 0.243 0.122 0.154 0.906 14 10 0.02 NormalMap 15.9 1.00875 sphere -500 20 0 20 Marble 0.211 0.649 0.193 0.874 0.118 0.223 12 31 0.54 null sphere -500 20 50 20 ShinyColor 0.581 0.197 0.533 56 0.31 null sphere -500 20 100 20 CrissCross 0.182 0.92 0.135 0.56 0.733 0.151 0.772 0.381 0.345 13 76 0.4 NormalMap 13.8 0.4125 sphere -500 20 150 20 CrissCross 0.772 0.432 0.526 0.29 0.779 0.849 0.856 0.153 0.569 5 52 0.34 NormalMap 17.92 0.27625 sphere -500 20 200 20 Marble 0.102 0.416 0.53 0.793 0.747 0.358 12 15 0.54 null sphere -500 20 250 20 Checkerboard 0.482 0.83 0.786 0.331 0.685 0.94 18 136 0.19 NormalMap 5.08 0.2125 sphere -500 20 300 20 Turbulence 0.606 0.148 0.315 0.022 0.679 0.108 16 8 0.49 null sphere -450 20 -350 20 Turbulence 0.292 0.172 0.061 0.623 0.858 0 11 115 0.19 null sphere -450 20 -300 20 Turbulence 0.736 0.376 0.431 0.051 0.398 0.109 4 27 0.1 null sphere -450 20 -250 20 Checkerboard 0.832 0.294 0.397 0.123 0.467 0.458 15 51 0.32 NormalMap 1.68 0.9175 sphere -450 20 -200 20 Checkerboard 0.179 0.705 0.867 0.462 0.44 0.242 18 75 0.45 NormalMap 13.02 1.01 sphere -450 20 -150 20 ShinyColor 0.503 0.829 0.1 95 0.46 NormalMap 0.42 0.98 sphere -450 20 -100 20 Turbulence 0.939 0.801 0.269 0.672 0.983 0.366 18 104 0.16 NormalMap 2.54 0.59375 sphere -450 20 -50 20 Glass 1.045 42 null sphere -450 20 0 20 Marble 0.853 0.416 0.195 0.715 0.895 0.726 19 126 0.37 NormalMap 10.12 0.635 sphere -450 20 50 20 Glass 3.84 102 NormalMap 4.86 1.09625 sphere -450 20 100 20 Glass 1.04 44 NormalMap 19.6 0.04 sphere -450 20 150 20 CrissCross 0.469 0.685 0.365 0.369 0.518 0.891 0.539 0.023 0.399 2 59 0.42 null sphere -450 20 200 20 Checkerboard 0.927 0.855 0.443 0.01 0.062 0.725 10 9 0.53 NormalMap 8.32 0.25125 sphere -450 20 250 20 ShinyColor 0.206 0.841 0.578 134 0.14 null sphere -450 20 300 20 ShinyColor 0.486 0.432 0.496 86 0.57 NormalMap 8.1 1.0775 sphere -400 20 -350 20 ShinyColor 0.49 0.788 0.859 141 0.56 null sphere -400 20 -300 20 Marble 0.616 0.716 0.584 0.457 0.293 0.474 14 38 0.62 null sphere -400 20 -250 20 Turbulence 0.344 0.693 0.989 0.348 0.182 0.777 5 20 0.4 NormalMap 15.5 1.035 sphere -400 20 -200 20 ShinyColor 0.189 0.435 0.466 122 0.1 NormalMap 5.28 0.555 sphere -400 20 -150 20 CrissCross 0.722 0.942 0.698 0.85 0.286 0.391 0.838 0.635 0.573 13 127 0.48 NormalMap 19.36 0.58 sphere -400 20 -100 20 ShinyColor 0.056 0.654 0.453 80 0.32 null sphere -400 20 -50 20 Checkerboard 0.096 0.65 0.732 0.503 0.336 0.142 5 44 0.59 NormalMap 11.28 0.28875 sphere -400 20 0 20 Checkerboard 0.805 0.527 0.038 0.494 0.717 0.006 20 111 0.04 null sphere -400 20 50 20 Checkerboard 0.792 0.158 0.796 0.839 0.254 0.446 12 115 0.55 null sphere -400 20 100 20 ShinyColor 0.553 0.057 0.622 119 0.68 null sphere -400 20 150 20 Glass 1.07 131 NormalMap 18.98 1.16125 sphere -400 20 200 20 Checkerboard 0.515 0.726 0.928 0.673 0.522 0.767 19 146 0.23 null sphere -400 20 250 20 ShinyColor 0.668 0.808 0.603 110 0.3 NormalMap 13.9 0.31125 sphere -400 20 300 20 Checkerboard 0.108 0.058 0.405 0.974 0.099 0.354 19 114 0.34 NormalMap 9.58 0.52125 sphere -350 20 -350 20 ShinyColor 0 0.183 0.018 146 0.36 null sphere -350 20 -300 20 Turbulence 0.095 0.955 0.56 0.791 0.204 0.535 20 49 0.42 NormalMap 5.74 0.865 sphere -350 20 -250 20 Checkerboard 0.444 0.231 0.607 0.923 0.649 0.697 19 126 0.5 null sphere -350 20 -200 20 Marble 0.096 0.885 0.088 0.656 0.676 0.293 4 100 0.43 null sphere -350 20 -150 20 Turbulence 0.92 0.019 0.688 0.843 0.668 0.385 16 77 0.07 null sphere -350 20 -100 20 Turbulence 0.399 0.875 0.193 0.488 0.531 0.87 16 109 0.37 NormalMap 10.12 0.71625 sphere -350 20 -50 20 CrissCross 0.048 0.743 0.047 0.434 0.509 0.549 0.535 0.165 0.403 2 66 0.12 NormalMap 16.6 0.07 sphere -350 20 0 20 Marble 0.308 0.953 0.485 0.814 0.526 0.764 16 134 0.08 null sphere -350 20 50 20 CrissCross 0.142 0.112 0.266 0.196 0.543 0.448 0.559 0.372 0.504 3 104 0.06 null sphere -350 20 100 20 Turbulence 0.017 0.035 0.007 0.905 0.16 0.702 4 52 0.09 NormalMap 18.84 0.10875 sphere -350 20 150 20 Checkerboard 0.199 0.613 0.28 0.742 0.061 0.839 3 86 0.67 null sphere -350 20 200 20 Glass 4.925 130 NormalMap 0.06 1.12125 sphere -350 20 250 20 Glass 4.89 14 NormalMap 2.36 0.7 sphere -350 20 300 20 Marble 0.52 0.695 0.145 0.581 0.533 0.26 3 74 0.04 null sphere -300 20 -350 20 Marble 0.965 0.412 0.403 0.871 0.469 0.38 19 130 0.35 null sphere -300 20 -300 20 Turbulence 0.935 0.302 0.252 0.516 0.836 0.513 14 50 0.4 NormalMap 6 0.28625 sphere -300 20 -250 20 Marble 0.156 0.855 0.098 0.626 0.234 0.045 10 111 0.39 null sphere -300 20 -200 20 CrissCross 0.419 0.422 0.308 0.081 0.744 0.884 0.547 0.043 0.113 18 48 0.6 NormalMap 10.68 0.01625 sphere -300 20 -150 20 CrissCross 0.144 0.229 0.801 0.58 0.197 0.085 0.123 0.1 0.672 19 79 0.06 NormalMap 12.04 1.0475 sphere -300 20 -100 20 ShinyColor 0.148 0.881 0.223 5 0.13 NormalMap 6.86 0.90125 sphere -300 20 -50 20 ShinyColor 0.52 0.352 0.733 140 0.02 null sphere -300 20 0 20 CrissCross 0.556 0.414 0.698 0.075 0.508 0.925 0.676 0.345 0.035 17 36 0.18 null sphere -300 20 50 20 Checkerboard 0.133 0.433 0.707 0.485 0.166 0.638 11 6 0.5 null sphere -300 20 100 20 Turbulence 0.783 0.837 0.847 0.858 0.344 0.772 11 105 0.57 NormalMap 18.32 0.08125 sphere -300 20 150 20 Marble 0.839 0.096 0.947 0.004 0.734 0.46 1 69 0.16 null sphere -300 20 200 20 Checkerboard 0.967 0.241 0.966 0.813 0.098 0.31 12 96 0.7 NormalMap 19.82 1.145 sphere -300 20 250 20 Checkerboard 0.244 0.862 0.583 0.706 0.701 0.679 14 107 0.29 NormalMap 14.66 1.075 sphere -300 20 300 20 CrissCross 0.044 0.534 0.456 0.142 0.845 0.04 0.775 0.845 0.431 16 115 0.63 null sphere -250 20 -350 20 Marble 0.362 0.156 0.632 0.475 0.889 0.492 17 51 0.11 null sphere -250 20 -300 20 Turbulence 0.811 0.274 0.308 0.586 0.118 0.74 8 132 0.44 NormalMap 17.64 0.47375 sphere -250 20 -250 20 Turbulence 0.953 0.987 0.701 0.428 0.876 0.193 5 33 0.25 null sphere -250 20 -200 20 Marble 0.802 0.75 0.936 0.921 0.49 0.286 16 20 0.42 null sphere -250 20 -150 20 Marble 0.313 0.216 0.653 0.188 0.409 0.901 8 117 0.54 NormalMap 18.9 0.38875 sphere -250 20 -100 20 ShinyColor 0.387 0.661 0.82 23 0.42 null sphere -250 20 -50 20 Marble 0.241 0.924 0.491 0.569 0.438 0.716 18 99 0.26 NormalMap 1.26 0.33625 sphere -250 20 0 20 Glass 4.76 118 NormalMap 19.38 0.20625 sphere -250 20 50 20 ShinyColor 0.789 0.302 0.609 81 0.65 NormalMap 1.36 0.8425 sphere -250 20 100 20 CrissCross 0.331 0.495 0.366 0.985 0.863 0.436 0.047 0.132 0.898 18 28 0.6 null sphere -250 20 150 20 Marble 0.146 0.135 0.055 0.638 0.203 0.73 13 75 0.45 null sphere -250 20 200 20 ShinyColor 0.833 0.765 0.495 123 0.44 null sphere -250 20 250 20 CrissCross 0.457 0.497 0.227 0.994 0.103 0.353 0.14 0.238 0.409 16 68 0.09 NormalMap 18.66 0.98 sphere -250 20 300 20 CrissCross 0.537 0.595 0.339 0.4 0.354 0.169 0.144 0.287 0.848 11 113 0.24 null sphere -200 20 -350 20 Checkerboard 0.877 0.687 0.537 0.655 0.128 0.675 1 12 0.32 null sphere -200 20 -300 20 Glass 3.895 30 null sphere -200 20 -250 20 Checkerboard 0.288 0.731 0.467 0.136 0.278 0.21 10 10 0.67 null sphere -200 20 -200 20 CrissCross 0.521 0.805 0.852 0.45 0.068 0.223 0.099 0.299 0.001 6 21 0.08 null sphere -200 20 -150 20 CrissCross 0.024 0.934 0.932 0.954 0.115 0.756 0.569 0.834 0.235 7 36 0.53 NormalMap 1.6 0.2575 sphere -200 20 -100 20 Marble 0.59 0.611 0.424 0.461 0.918 0.833 2 105 0.26 null sphere -200 20 -50 20 CrissCross 0.924 0.828 0.596 0.236 0.055 0.352 0.353 0.134 0.558 11 67 0.61 NormalMap 14.82 0.5675 sphere -200 20 0 20 Checkerboard 0.916 0.554 0.998 0.979 0.244 0.373 19 138 0.54 null sphere -200 20 50 20 ShinyColor 0.795 0.884 0.052 95 0.34 NormalMap 13.56 1.04 sphere -200 20 100 20 Turbulence 0.248 0.253 0.207 0.99 0.707 0.844 4 95 0.28 NormalMap 12.02 0.80125 sphere -200 20 150 20 Turbulence 0.324 0.081 0.428 0.119 0.965 0.48 15 68 0.54 NormalMap 5.52 0.5125 sphere -200 20 200 20 CrissCross 0.468 0.625 0.642 0.622 0.247 0.039 0.773 0.848 0.68 6 57 0.16 null sphere -200 20 250 20 Checkerboard 0.815 0.285 0.504 0.556 0.729 0.272 20 3 0.48 NormalMap 13.4 0.3425 sphere -200 20 300 20 Glass 0.755 34 null sphere -150 20 -350 20 Turbulence 0.435 0.844 0.678 0.674 0.44 0.373 20 71 0.13 NormalMap 19.38 0.92875 sphere -150 20 -300 20 ShinyColor 0.241 0.718 0.012 139 0.65 null sphere -150 20 -250 20 Marble 0.987 0.529 0.942 0.741 0.075 0.248 4 138 0.65 null sphere -150 20 -200 20 Marble 0.793 0.229 0.13 0.033 0.947 0.143 20 131 0.58 NormalMap 9.5 0.12 sphere -150 20 -150 20 CrissCross 0.152 0.835 0.769 0.328 0.753 0.695 0.177 0.112 0.994 1 141 0.34 NormalMap 14.56 0.8875 sphere -150 20 -100 20 CrissCross 0.243 0.873 1 0.34 0.298 0.23 0.919 0.71 0.99 9 130 0.58 NormalMap 3.84 0.72125 sphere -150 20 -50 20 Marble 0.625 0.376 0.533 0.352 0.085 0.808 3 112 0.15 null sphere -150 20 0 20 Marble 0.497 0.727 0.713 0.487 0.166 0.576 7 58 0.54 null sphere -150 20 50 20 ShinyColor 0.577 0.173 0.525 32 0.39 NormalMap 11.08 0.79375 sphere -150 20 100 20 Turbulence 0.498 0.645 0.559 0.202 0.912 0.368 5 63 0.06 null sphere -150 20 150 20 Glass 3.18 41 NormalMap 18.24 0.495 sphere -150 20 200 20 Checkerboard 0.922 0.872 0.634 0.98 0.425 0.269 17 16 0.45 null sphere -150 20 250 20 Turbulence 0.864 0.998 0.611 0.959 0.916 0.507 5 63 0.5 null sphere -150 20 300 20 Glass 2.39 128 null sphere -100 20 -350 20 CrissCross 0.4 0.749 0.457 0.691 0.244 0.25 0.894 0.107 0.247 11 12 0.11 NormalMap 5.72 0.715 sphere -100 20 -300 20 Checkerboard 0.242 0.532 0.906 0.308 0.009 0.757 6 56 0.17 NormalMap 2.68 1.245 sphere -100 20 -250 20 ShinyColor 1 0.396 0.824 70 0.06 NormalMap 14.14 1.2275 sphere -100 20 -200 20 Turbulence 0.117 0.498 0.527 0.69 0.222 0.667 19 114 0.4 NormalMap 15.28 0.41125 sphere -100 20 -150 20 Checkerboard 0.571 0.797 0.255 0.567 0.872 0.255 20 105 0.5 NormalMap 15.26 0.5225 sphere -100 20 -100 20 ShinyColor 0.938 0.373 0.518 29 0.34 NormalMap 14.12 0.225 sphere -100 20 -50 20 Glass 4.97 142 NormalMap 15.14 0.34125 sphere -100 20 0 20 Marble 0.412 0.554 0.389 0.375 0.249 0.1 9 4 0.36 NormalMap 18.98 1.115 sphere -100 20 50 20 Checkerboard 0.382 0.993 0.834 0.562 0.231 0.205 14 36 0.1 NormalMap 19.64 0.52875 sphere -100 20 100 20 CrissCross 0.148 0.382 0.055 0.397 0.483 0.482 0.408 0.001 0.94 8 135 0.65 NormalMap 5.5 1.13625 sphere -100 20 150 20 Glass 2.62 78 NormalMap 13.46 0.67 sphere -100 20 200 20 Checkerboard 0.447 0.204 0.363 0.041 0.198 0.043 4 88 0.07 null sphere -100 20 250 20 Glass 2.605 55 null sphere -100 20 300 20 Turbulence 0.07 0.485 0.68 0.581 0.849 0.353 3 31 0.31 null sphere -50 20 -350 20 CrissCross 0.955 0.383 0.241 0.535 0.379 0.306 0.054 0.733 0.264 10 87 0.35 null sphere -50 20 -300 20 Turbulence 0.169 0.762 0.265 0.363 0.21 0.829 16 6 0.3 NormalMap 17.58 0.28625 sphere -50 20 -250 20 Marble 0.992 0.083 0.423 0.725 0.347 0.915 6 128 0.53 NormalMap 8.28 0.0875 sphere -50 20 -200 20 Glass 0.97 125 null sphere -50 20 -150 20 Turbulence 0.722 0.305 0.319 0.257 0.139 0.932 1 78 0.65 NormalMap 18.62 0.81 sphere -50 20 -100 20 Turbulence 0.595 0.968 0.724 0.666 0.4 0.286 19 90 0.08 null sphere -50 20 -50 20 CrissCross 0.178 0.852 0.869 0.109 0.886 0.376 0.032 0.002 0.306 14 72 0.1 null sphere -50 20 0 20 CrissCross 0.318 0.585 0.901 0.827 0.582 0.671 0.699 0.006 0.53 6 111 0.5 NormalMap 12.08 1.02125 sphere -50 20 50 20 ShinyColor 0.98 0.85 0.031 45 0.37 NormalMap 8.74 0.1925 sphere -50 20 100 20 Checkerboard 0.746 0.776 0.596 0.738 0.563 0.914 7 71 0.52 null sphere -50 20 150 20 CrissCross 0.878 0.249 0.189 0.907 0.229 0.038 0.939 0.515 0.569 9 143 0.51 null sphere -50 20 200 20 Turbulence 0.051 0.644 0.529 0.515 0.384 0.433 13 124 0.24 NormalMap 11.14 1.23625 sphere -50 20 250 20 Glass 4.375 53 NormalMap 18.28 0.35 sphere -50 20 300 20 Marble 0.43 0.069 0.675 0.919 0.8 0.882 20 68 0.29 NormalMap 16.58 1.055 sphere 0 20 -350 20 ShinyColor 0.653 0.186 0.449 34 0.12 NormalMap 12.88 0.515 sphere 0 20 -300 20 ShinyColor 0.985 0.88 0.923 42 0.61 NormalMap 19.66 0.995 sphere 0 20 -250 20 Turbulence 0.33 0.665 0.168 0.3 0.109 0.579 16 141 0.29 null sphere 0 20 -200 20 CrissCross 0.195 0.514 0.43 0.075 0.437 0.695 0.937 0.842 0.677 15 70 0.06 null sphere 0 20 -150 20 Marble 0.486 0.505 0.311 0.908 0.426 0.903 11 120 0.49 NormalMap 6.02 0.185 sphere 0 20 -100 20 Marble 0.273 0.507 0.092 0.95 0.239 0.545 1 126 0.2 NormalMap 2.04 0.23875 sphere 0 20 -50 20 CrissCross 0.109 0.688 0.101 0.906 0.391 0.401 0.205 0.539 0.897 1 20 0.33 NormalMap 7.82 1.2175 sphere 0 20 0 20 Glass 4.54 59 NormalMap 3.84 1.0475 sphere 0 20 50 20 ShinyColor 0.383 0.015 0.626 11 0.49 NormalMap 12.9 1.01125 sphere 0 20 100 20 ShinyColor 0.747 0.715 0.49 24 0.65 NormalMap 0.88 1.175 sphere 0 20 150 20 ShinyColor 0.51 0.209 0.536 74 0.4 null sphere 0 20 200 20 Marble 0.901 0.053 0.107 0.527 0.112 0.807 19 115 0.43 NormalMap 10.08 0.41375 sphere 0 20 250 20 CrissCross 0.701 0.205 0.399 0.237 0.69 0.971 0.113 0.387 0.449 8 23 0.08 NormalMap 0.74 0.215 sphere 0 20 300 20 CrissCross 0.992 0.538 0.546 0.322 0.063 0.197 0.573 0.618 0.894 16 50 0.07 NormalMap 11.12 0.98625 sphere 50 20 -350 20 ShinyColor 0.669 0.176 0.581 8 0.22 null sphere 50 20 -300 20 Glass 4.56 26 NormalMap 8.26 0.24875 sphere 50 20 -250 20 Marble 0.944 0.327 0.632 0.837 0.089 0.951 19 40 0.35 null sphere 50 20 -200 20 Turbulence 0.212 0.664 0.71 0.56 0.536 0.776 10 105 0.15 null sphere 50 20 -150 20 CrissCross 0.728 0.48 0.416 0.818 0.431 0.351 0.069 0.938 0.074 10 19 0.69 NormalMap 6.52 0.2325 sphere 50 20 -100 20 ShinyColor 0.035 0.747 0.618 123 0.15 NormalMap 0.54 0.12875 sphere 50 20 -50 20 Marble 0.786 0.418 0.803 0.266 0.834 0.62 14 30 0.48 null sphere 50 20 0 20 ShinyColor 0.747 0.234 0.559 13 0.29 null sphere 50 20 50 20 CrissCross 0.489 0.769 0.621 0.427 0.607 0.696 0.213 0.024 0.498 10 130 0.08 NormalMap 0.88 1.01 sphere 50 20 100 20 CrissCross 0.629 0.958 0.149 0.737 0.125 0.407 0.657 0.511 0.975 13 3 0.52 NormalMap 8.56 0.43875 sphere 50 20 150 20 Marble 0.235 0.536 0.295 0.278 0.343 0.104 12 46 0.46 NormalMap 16.04 0.36125 sphere 50 20 200 20 ShinyColor 0.951 0.025 0.2 55 0.48 null sphere 50 20 250 20 Glass 2.555 23 NormalMap 8.6 0.97625 sphere 50 20 300 20 Turbulence 0.383 0.196 0.317 0.727 0.3 0.898 1 145 0.01 null sphere 100 20 -350 20 ShinyColor 0.771 0.275 0.29 22 0.67 NormalMap 9.22 0.305 sphere 100 20 -300 20 CrissCross 0.636 0.77 0.031 0.537 0.809 0.415 0.733 0.126 0.141 1 6 0.11 null sphere 100 20 -250 20 Glass 3.765 79 NormalMap 17.64 0.5925 sphere 100 20 -200 20 Turbulence 0.88 0.473 0.992 0.846 0.657 0.627 13 104 0.11 NormalMap 2.06 1.12125 sphere 100 20 -150 20 Marble 0.922 0.615 0.386 0.163 0.745 0.138 14 27 0.01 NormalMap 11.76 0.4525 sphere 100 20 -100 20 Glass 1.73 108 NormalMap 0.04 0.4275 sphere 100 20 -50 20 Turbulence 0.793 0.402 0.677 0.036 0.33 0.252 9 40 0.61 null sphere 100 20 0 20 Glass 3.885 148 NormalMap 7.28 0.43375 sphere 100 20 50 20 ShinyColor 0.087 0.589 0.467 121 0.47 NormalMap 2.9 0.47125 sphere 100 20 100 20 ShinyColor 0.651 0.503 0.952 10 0.12 null sphere 100 20 150 20 Turbulence 0.256 0.05 0.91 0.222 0.146 0.686 5 61 0.03 null sphere 100 20 200 20 ShinyColor 0.143 0.985 0.94 124 0.32 NormalMap 3.94 0.76625 sphere 100 20 250 20 CrissCross 0.17 0.311 0.982 0.806 0.61 0.238 0.856 0.52 0.461 1 33 0.47 NormalMap 5.12 0.27875 sphere 100 20 300 20 Marble 0.186 0.353 0.416 0.382 0.966 0.151 2 81 0.66 null sphere 150 20 -350 20 ShinyColor 0.273 0.064 0.914 133 0.21 null sphere 150 20 -300 20 Marble 0.866 0.656 0.083 0.257 0.023 0.984 12 34 0.23 NormalMap 11.84 0.3775 sphere 150 20 -250 20 ShinyColor 0.674 0.833 0.095 97 0.64 NormalMap 18.18 1.225 sphere 150 20 -200 20 ShinyColor 0.792 0.282 0.887 31 0.03 null sphere 150 20 -150 20 Turbulence 0.912 0.928 0.157 0.895 0.517 0.367 5 80 0.68 null sphere 150 20 -100 20 Turbulence 0.282 0.98 0.176 0.262 0.096 0.968 11 148 0.11 null sphere 150 20 -50 20 Checkerboard 0.469 0.637 0.203 0.38 0.565 0.361 6 15 0.51 null sphere 150 20 0 20 Checkerboard 0.285 0.319 0.407 0.061 0.587 0.689 1 115 0.67 NormalMap 14.64 0.62 sphere 150 20 50 20 ShinyColor 0.894 0.086 0.762 130 0.11 NormalMap 9.96 0.44875 sphere 150 20 100 20 Checkerboard 0.721 0.886 0.144 0.448 0.392 0.75 3 67 0.02 NormalMap 16.8 0.12 sphere 150 20 150 20 ShinyColor 0.529 0.136 0.806 74 0.19 null sphere 150 20 200 20 Glass 0.775 46 NormalMap 7.72 0.98625 sphere 150 20 250 20 Turbulence 0.883 0.996 0.748 0.275 0.746 0.884 15 118 0.23 null sphere 150 20 300 20 Checkerboard 0.012 0.185 0.557 0.285 0.722 0.533 14 25 0.42 null sphere 200 20 -350 20 Glass 1.975 34 NormalMap 13.88 0.12125 sphere 200 20 -300 20 ShinyColor 0.442 0.372 0.825 51 0.05 null sphere 200 20 -250 20 Glass 3.52 76 NormalMap 5.22 0.975 sphere 200 20 -200 20 Turbulence 0.39 0.291 0.544 0.206 0.51 0.776 13 110 0.6 NormalMap 16.46 1.1725 sphere 200 20 -150 20 Checkerboard 0.762 0.061 0.274 0.366 0.725 0.902 17 116 0.42 NormalMap 19.92 1.0825 sphere 200 20 -100 20 ShinyColor 0.946 0.66 0.579 9 0.03 null sphere 200 20 -50 20 Marble 0.224 0.151 0.928 0.161 0.888 0.122 19 143 0.28 NormalMap 13.48 0.37375 sphere 200 20 0 20 ShinyColor 0.441 0.905 0.479 67 0.54 null sphere 200 20 50 20 Checkerboard 0.428 0.48 0.048 0.018 0.737 0.429 8 90 0.37 null sphere 200 20 100 20 CrissCross 0.983 0.984 0.253 0.282 0.12 0.694 0.186 0.599 0.13 20 32 0.36 NormalMap 7.56 1.17625 sphere 200 20 150 20 CrissCross 0.196 0.39 0.953 0.941 0.853 0.724 0.572 0.438 0.417 4 65 0.28 NormalMap 14.06 0.65125 sphere 200 20 200 20 ShinyColor 0.889 0.12 0.23 128 0.22 null sphere 200 20 250 20 Glass 0.615 98 null sphere 200 20 300 20 CrissCross 0.664 0.41 0.657 0.081 0.562 0.077 0.482 0.968 0.78 1 13 0.47 NormalMap 5.98 0.64125 sphere 250 20 -350 20 Checkerboard 0.744 0.139 0.725 0.842 0.262 0.368 11 38 0.25 NormalMap 12.14 0.36875 sphere 250 20 -300 20 Marble 0.04 0.251 0.561 0.522 0.219 0.34 11 45 0 null sphere 250 20 -250 20 Checkerboard 0.627 0.265 0.232 0.351 0.107 0.494 15 99 0.52 NormalMap 1.84 0.425 sphere 250 20 -200 20 Glass 1.655 11 null sphere 250 20 -150 20 CrissCross 0.816 0.559 0.067 0.401 0.08 0.16 0.027 0.346 0.392 8 70 0.62 NormalMap 2.08 0.77625 sphere 250 20 -100 20 Checkerboard 0.962 0.544 0.565 0.127 0.875 0.624 16 39 0.66 null sphere 250 20 -50 20 Turbulence 0.096 0.624 0.68 0.176 0.784 0.708 11 29 0.06 null sphere 250 20 0 20 Checkerboard 0.684 0.36 0.274 0.645 0.904 0.839 16 118 0.32 null sphere 250 20 50 20 Glass 4.295 13 null sphere 250 20 100 20 Marble 0.525 0.869 0.301 0.612 0.844 0.365 16 139 0.03 NormalMap 3.96 0.8675 sphere 250 20 150 20 ShinyColor 0.036 0.467 0.841 76 0.01 null sphere 250 20 200 20 Checkerboard 0.753 0.625 0.743 0.891 0.795 0.084 15 23 0.14 NormalMap 0.18 0.63875 sphere 250 20 250 20 CrissCross 0.801 0.974 0.619 0.863 0.009 0.085 0.703 0.508 0.101 12 62 0.46 null sphere 250 20 300 20 Glass 0.37 65 null sphere 300 20 -350 20 Glass 0.705 125 NormalMap 0.34 0.5925 sphere 300 20 -300 20 CrissCross 0.835 0.647 0.84 0.342 0.749 0.407 0.745 0.402 1 19 103 0.23 null sphere 300 20 -250 20 CrissCross 0.525 0.517 0.267 0.541 0.991 0.119 0.483 0.265 0.944 1 62 0.55 null sphere 300 20 -200 20 ShinyColor 0.439 0.648 0.867 127 0.45 null sphere 300 20 -150 20 Marble 0.247 0.12 0.098 0.439 0.645 0.615 15 30 0.42 null sphere 300 20 -100 20 Turbulence 0.548 0.404 0.513 0.669 0.844 0.161 11 104 0.57 NormalMap 4.18 0.98875 sphere 300 20 -50 20 ShinyColor 0.486 0.527 0.427 111 0.45 null sphere 300 20 0 20 Checkerboard 0.879 0.478 0.745 0.704 0.147 0.614 10 130 0.62 NormalMap 5.32 0.4975 sphere 300 20 50 20 Checkerboard 0.56 0.225 0.794 0.368 0.527 0.002 4 83 0.34 null sphere 300 20 100 20 CrissCross 0.274 0.1 0.378 0.979 0.248 0.993 0.452 0.108 0.878 10 58 0.19 NormalMap 9.66 1.045 sphere 300 20 150 20 Glass 4.585 44 NormalMap 9.18 0.96 sphere 300 20 200 20 ShinyColor 0.428 0.99 0.38 139 0.27 NormalMap 11.14 0.82375 sphere 300 20 250 20 ShinyColor 0.935 0.637 0.352 140 0.06 NormalMap 16.1 0.7025 sphere 300 20 300 20 Checkerboard 0.726 0.316 0.917 0.114 0.593 0.121 1 132 0.34 NormalMap 12.8 0.665 sphere 350 20 -350 20 Marble 0.915 0.395 0.673 0.018 0.33 0.31 8 40 0.28 null sphere 350 20 -300 20 Glass 3.435 148 NormalMap 16.02 0.7175 sphere 350 20 -250 20 Marble 0.085 0.195 0.236 0.714 0.107 0.075 15 6 0.33 NormalMap 0.82 1.00125 sphere 350 20 -200 20 Glass 0.55 38 NormalMap 1.42 1.1325 sphere 350 20 -150 20 Turbulence 0.557 0.461 0.498 0.388 0.907 0.161 15 149 0.25 null sphere 350 20 -100 20 Checkerboard 0.433 0.486 0.492 0.835 0.526 0.292 11 141 0.24 null sphere 350 20 -50 20 Glass 3.64 74 null sphere 350 20 0 20 ShinyColor 0.43 0.543 0.428 52 0.5 NormalMap 6.58 0.075 sphere 350 20 50 20 ShinyColor 0.033 0.524 0.101 72 0 null sphere 350 20 100 20 Marble 0.501 0.65 0.703 0.226 0.733 0.43 15 106 0.33 null sphere 350 20 150 20 ShinyColor 0.175 0.47 0.724 49 0.56 null sphere 350 20 200 20 Turbulence 0.319 0.086 0.601 0.855 0.972 0.447 7 33 0.67 null sphere 350 20 250 20 Marble 0.816 0.629 0.546 0.836 0.804 0.015 12 19 0.57 NormalMap 10.14 0.8075 sphere 350 20 300 20 Marble 0.546 0.828 0.056 0.994 0.154 0.263 19 22 0.12 NormalMap 16.84 0.64 sphere 400 20 -350 20 CrissCross 0.43 0.816 0.723 0.545 0.63 0.067 0.051 0.275 0.721 2 35 0.49 NormalMap 15.36 0.65125 sphere 400 20 -300 20 CrissCross 0.627 0.819 0.648 0.138 0.816 0.903 0.466 0.442 0.703 13 132 0.36 NormalMap 8.34 0.185 sphere 400 20 -250 20 Turbulence 0.518 0.645 0.834 0.654 0.412 0.354 17 28 0.02 NormalMap 17.52 1.045 sphere 400 20 -200 20 Turbulence 0.509 0.386 0.531 0.951 0.088 0.16 17 92 0.36 NormalMap 15.1 1.16625 sphere 400 20 -150 20 Checkerboard 0.073 0.225 0.823 0.907 0.879 0.234 6 110 0.28 NormalMap 0.5 0.3525 sphere 400 20 -100 20 ShinyColor 0.951 0.976 0.611 5 0.34 null sphere 400 20 -50 20 Checkerboard 0.708 0.258 0.692 0.22 0.498 0.446 4 33 0.44 NormalMap 8.64 0.55875 sphere 400 20 0 20 ShinyColor 0.31 0.681 0.395 8 0.06 null sphere 400 20 50 20 Glass 1.73 65 NormalMap 16.62 0.525 sphere 400 20 100 20 Turbulence 0.525 0.197 0.502 0.023 0.643 0.655 5 42 0.62 null sphere 400 20 150 20 ShinyColor 0.972 0.395 0.409 3 0.34 NormalMap 1.32 1.0675 sphere 400 20 200 20 Checkerboard 0.199 0.33 0.101 0.029 0.75 0.675 6 40 0.67 null sphere 400 20 250 20 Glass 0.565 13 NormalMap 19.88 0.91875 sphere 400 20 300 20 ShinyColor 0.008 0.707 0.472 64 0.5 null sphere 450 20 -350 20 Marble 0.75 0.955 0.036 0.5 0.629 0.332 16 89 0.1 NormalMap 0.84 1.2475 sphere 450 20 -300 20 Checkerboard 0.071 0.665 0.147 0.806 0.742 0.155 11 34 0.4 NormalMap 3.38 0.10625 sphere 450 20 -250 20 ShinyColor 0.977 0.505 0.857 148 0.18 null sphere 450 20 -200 20 Marble 0.505 0.718 0.064 0.502 0.02 0.218 12 104 0.25 NormalMap 8.56 0.65125 sphere 450 20 -150 20 Glass 0.59 122 NormalMap 2.42 0.9825 sphere 450 20 -100 20 CrissCross 0.692 0.226 0.139 0.203 0.249 0.645 0.921 0.314 0.146 19 81 0.51 null sphere 450 20 -50 20 ShinyColor 0.056 0.418 0.993 106 0.36 NormalMap 10.16 0.8625 sphere 450 20 0 20 Turbulence 0.061 0.309 0.995 0.85 0.001 0.22 20 33 0.33 null sphere 450 20 50 20 Glass 1.59 77 null sphere 450 20 100 20 Marble 0.144 0.704 0.957 0.835 0.935 0.25 5 23 0.22 null sphere 450 20 150 20 ShinyColor 0.517 0.356 0.151 109 0.58 null sphere 450 20 200 20 Marble 0.611 0.143 0.668 0.362 0.777 0.262 17 139 0.68 null sphere 450 20 250 20 Checkerboard 0.962 0.041 0.33 0.478 0.177 0.492 20 81 0.45 null sphere 450 20 300 20 Marble 0.9 0.06 0.089 0.043 0.728 0.452 17 149 0.18 null ================================================ FILE: src/Air.cpp ================================================ #include "Air.h" #include "Vector.h" #include "Color.h" Color Air::getColor(Vector point) { return Color(0.0, 0.0, 0.0); } double Air::getRefractiveIndex() { return AIR_REFRACTIVE_INDEX; } ================================================ FILE: src/Air.h ================================================ #ifndef __AIR_H__ #define __AIR_H__ #include "Material.h" class Air : public Material { public: Air() {} virtual Color getColor(Vector); virtual double getRefractiveIndex(); }; #endif ================================================ FILE: src/BSP.cpp ================================================ #include "BSP.h" #include #include "Object.h" #include "Intersection.h" using namespace std; void BSP::build() { // Make sure all objects are properly wrapped for (vector::iterator itr = objects.begin(); itr < objects.end(); itr++) { Boundaries curr = (*itr)->getBounds(); bounds.min = Vector(min(bounds.min.x, curr.min.x), min(bounds.min.y, curr.min.y), min(bounds.min.z, curr.min.z)); bounds.max = Vector(max(bounds.max.x, curr.max.x), max(bounds.max.y, curr.max.y), max(bounds.max.z, curr.max.z)); } // For debugging. if (true) { for (int i = 0; i < depth; i++) { cout << "\t"; } cout << objects.size() << " | " << bounds.min.x << ", " << bounds.min.y << ", " << bounds.min.z << " || " << bounds.max.x << ", " << bounds.max.y << ", " << bounds.max.z << " % " << axis << " X " << axisRetries << endl; } // We've hit our limit so this is a leaf node. No need to split again. if (objects.size() <= MIN_OBJECT_COUNT) { return; } // Where to split the bounds double splitValue = bounds.splitValue(axis); vector leftObjects; vector rightObjects; for (vector::iterator itr = objects.begin(); itr < objects.end(); itr++) { Object* obj = *itr; Boundaries curr = obj->getBounds(); double min, max; switch(axis) { case 'x': min = curr.min.x; max = curr.max.x; break; case 'y': min = curr.min.y; max = curr.max.y; break; case 'z': min = curr.min.z; max = curr.max.z; break; } if (min < splitValue) { leftObjects.push_back(obj); } if (max > splitValue) { rightObjects.push_back(obj); } } int newAxis = toggleAxis(); if (leftObjects.size() != objects.size() && rightObjects.size() != objects.size()) { // Since this split separated geometry a little bit, make children to // split up geometry further. left = new BSP(depth + 1, newAxis, leftObjects); right = new BSP(depth + 1, newAxis, rightObjects); } else if (axisRetries < 2) { axis = toggleAxis(); axisRetries++; build(); } else { // Do nothing since we're out of axis retries. } } char BSP::toggleAxis() { return axis == 'x' ? 'y' : (axis == 'y' ? 'z' : 'x'); } Intersection BSP::getClosestIntersection(const Ray& ray) { double distance; if (!bounds.intersect(ray, &distance)) { return Intersection(); } if (left != NULL && right != NULL) { Intersection leftIntersection = left->getClosestIntersection(ray); Intersection rightIntersection = right->getClosestIntersection(ray); return leftIntersection.distance < rightIntersection.distance ? leftIntersection : rightIntersection; } else { return getClosestObjectIntersection(ray); } } Intersection BSP::getClosestObjectIntersection(const Ray& ray) { // No children so just go through current objects like normal. Intersection closestIntersection; for (vector::iterator itr = objects.begin(); itr < objects.end(); itr++) { Intersection intersection = (*itr)->intersect(ray); if (intersection.didIntersect && intersection.distance < closestIntersection.distance) { closestIntersection = intersection; } } return closestIntersection; } ================================================ FILE: src/BSP.h ================================================ #ifndef __BSP_H__ #define __BSP_H__ #include #include #include "Boundaries.h" #include "Ray.h" class Object; class Intersection; #define MIN_OBJECT_COUNT 20 class BSP { private: int depth; int axisRetries; char axis; Boundaries bounds; std::vector objects; BSP* left; BSP* right; void build(); char toggleAxis(); public: BSP(int depth_, char axis_, std::vector objects_) : depth(depth_), axis(axis_), objects(objects_) { axisRetries = 0; left = right = NULL; build(); } Intersection getClosestIntersection(const Ray&); Intersection getClosestObjectIntersection(const Ray&); }; #endif ================================================ FILE: src/Boundaries.cpp ================================================ #include "Boundaries.h" #include // Returns the center value for the given axis. double Boundaries::splitValue(char axis) { switch(axis) { case 'x': return (min.x + max.x) / 2; case 'y': return (min.y + max.y) / 2; case 'z': return (min.z + max.z) / 2; default: return 0.0f; } } /** * Ray axis aligned bounding box intersection. * Adapted from: http://gamedev.stackexchange.com/a/18459 */ bool Boundaries::intersect(const Ray& ray, double* dist) { // lb is the corner of AABB with minimal coordinates - left bottom, rt is maximal corner // r.org is origin of ray double t1 = (min.x - ray.origin.x) * ray.fracDir.x; double t2 = (max.x - ray.origin.x) * ray.fracDir.x; double t3 = (min.y - ray.origin.y) * ray.fracDir.y; double t4 = (max.y - ray.origin.y) * ray.fracDir.y; double t5 = (min.z - ray.origin.z) * ray.fracDir.z; double t6 = (max.z - ray.origin.z) * ray.fracDir.z; double tmin = std::max(std::max(std::min(t1, t2), std::min(t3, t4)), std::min(t5, t6)); double tmax = std::min(std::min(std::max(t1, t2), std::max(t3, t4)), std::max(t5, t6)); // If tmax < 0, ray is intersecting AABB, but whole AABB is behind us. if (tmax < 0) { return false; } // If tmin > tmax, ray doesn't intersect AABB. if (tmin > tmax) { return false; } return true; } ================================================ FILE: src/Boundaries.h ================================================ #ifndef __BOUNDARIES_H__ #define __BOUNDARIES_H__ #include "Vector.h" #include "Ray.h" class Boundaries { public: Vector min, max; Boundaries() : min(Vector(0, 0, 0)), max(Vector(0, 0, 0)) {} double splitValue(char axis); bool intersect(const Ray&, double* dist); }; #endif ================================================ FILE: src/Camera.cpp ================================================ #include "Camera.h" void Camera::calculateWUV() { w = (lookAt - position).normalize(); u = up.cross(w).normalize(); v = w.cross(u); } ================================================ FILE: src/Camera.h ================================================ #ifndef __CAMERA_H__ #define __CAMERA_H__ #include "Vector.h" class Camera { public: Vector position; Vector up; Vector lookAt; Vector w, u, v; double screenWidth; Camera() { position = Vector(0.0, 0.0, 100.0); up = Vector(0.0, 1.0, 0.0); lookAt = Vector(0.0, 0.0, 0.0); screenWidth = 1000; calculateWUV(); } Camera(Vector position_, Vector up_, Vector lookAt_, double screenWidth_) : position(position_), up(up_), lookAt(lookAt_), screenWidth(screenWidth_) { calculateWUV(); } void calculateWUV(); }; #endif ================================================ FILE: src/Checkerboard.cpp ================================================ #include "Checkerboard.h" #include "Vector.h" // Offset points to move the origin which makes an ugly seam. #define POINT_OFFSET 3893343 Checkerboard::Checkerboard(std::istream& in) { in >> color1.r >> color1.g >> color1.b; in >> color2.r >> color2.g >> color2.b; in >> scale; in >> shininess; in >> reflectivity; } Color Checkerboard::getColor(Vector point) { bool x = (int)((point.x + POINT_OFFSET) / scale) % 2 == 0; bool y = (int)((point.y + POINT_OFFSET) / scale) % 2 == 0; bool z = (int)((point.z + POINT_OFFSET) / scale) % 2 == 0; if (x xor y xor z) { return color1; } else { return color2; } } double Checkerboard::getShininess() { return shininess; } double Checkerboard::getReflectivity() { return reflectivity; } ================================================ FILE: src/Checkerboard.h ================================================ #ifndef __CHECKERBOARD_H__ #define __CHECKERBOARD_H__ #include "Material.h" class Checkerboard : public Material { private: Color color1; Color color2; double scale; double shininess; double reflectivity; public: Checkerboard(std::istream&); virtual Color getColor(Vector); virtual double getShininess(); virtual double getReflectivity(); }; #endif ================================================ FILE: src/Color.cpp ================================================ #include "Color.h" Color Color::operator+ (Color const &c) const { Color other; other.r = NTZ(c.r) + NTZ(r); other.g = NTZ(c.g) + NTZ(g); other.b = NTZ(c.b) + NTZ(b); return other; } Color Color::operator* (double amount) const { Color other; other.r = r * amount; other.g = g * amount; other.b = b * amount; return other; } ================================================ FILE: src/Color.h ================================================ #ifndef __COLOR_H__ #define __COLOR_H__ /** * "NaN To Zero" * Converts a NaN value to zero. Otherwise adding values to NaN results in NaN. * When adding colors together we usually want to ignore it and use 0 instead. */ #define NTZ(X) (isnan((X)) ? 0.0 : (X)) #include class Color { public: double r; double g; double b; double f; // "filter" or "alpha" Color() : r(0.0), g(0.0), b(0.0), f(1.0) {} Color(double r_, double g_, double b_) : r(r_), g(g_), b(b_), f(1.0) {} Color(double r_, double g_, double b_, double f_) : r(r_), g(g_), b(b_), f(f_) {} Color operator + (Color const & c) const; Color operator * (double amount) const; }; #endif ================================================ FILE: src/CrissCross.cpp ================================================ #include "CrissCross.h" #include "Vector.h" #include "Color.h" CrissCross::CrissCross(std::istream& in) { in >> color1.r >> color1.g >> color1.b; in >> color2.r >> color2.g >> color2.b; in >> color3.r >> color3.g >> color3.b; in >> scale; in >> shininess; in >> reflectivity; } Color CrissCross::getColor(Vector point) { double x = point.x * scale * 0.5; double y = point.y * scale * 0.5; double z = point.z * scale * 0.5; double noiseCoefA = 0; double noiseCoefB = 0; double noiseCoefC = 0; for (int level = 1; level < 10; level++) { noiseCoefA += (1.0f / level) * fabsf(perlin.noise( level * 0.35 * x, level * 0.05 * y, level * z )); noiseCoefB += (1.0f / level) * fabsf(perlin.noise( level * x, level * 0.35 * y, level * 0.05 * z )); noiseCoefC += (1.0f / level) * fabsf(perlin.noise( level * 0.05 * x, level * y, level * 0.35 * z )); } noiseCoefA = 0.5f * sinf((x + z) * 0.05f + noiseCoefA) + 0.5f; noiseCoefB = 0.5f * sinf((y + x) * 0.05f + noiseCoefB) + 0.5f; noiseCoefC = 0.5f * sinf((z + y) * 0.05f + noiseCoefC) + 0.5f; return (color1 * noiseCoefA + color2 * (1.0f - noiseCoefA)) * 0.25 + (color2 * noiseCoefB + color3 * (1.0f - noiseCoefB)) * 0.25 + (color3 * noiseCoefC + color1 * (1.0f - noiseCoefC)) * 0.25; } double CrissCross::getShininess() { return shininess; } double CrissCross::getReflectivity() { return reflectivity; } ================================================ FILE: src/CrissCross.h ================================================ #ifndef __CRISS_CROSS_H__ #define __CRISS_CROSS_H__ #include "Material.h" class CrissCross : public Material { private: PerlinNoise perlin; Color color1; Color color2; Color color3; double scale; double shininess; double reflectivity; public: CrissCross(std::istream&); virtual Color getColor(Vector); virtual double getShininess(); virtual double getReflectivity(); }; #endif ================================================ FILE: src/FlatColor.cpp ================================================ #include "FlatColor.h" #include "Vector.h" #include "Color.h" FlatColor::FlatColor(std::istream& in) { in >> color.r >> color.g >> color.b; } Color FlatColor::getColor(Vector point) { return color; } ================================================ FILE: src/FlatColor.h ================================================ #ifndef __FLAT_COLOR_H__ #define __FLAT_COLOR_H__ #include "Material.h" class FlatColor : public Material { private: Color color; public: FlatColor(std::istream&); virtual Color getColor(Vector); }; #endif ================================================ FILE: src/Glass.cpp ================================================ #include "Glass.h" #include "Vector.h" #include "Color.h" Glass::Glass(std::istream& in) { in >> refractiveIndex; in >> shininess; } Color Glass::getColor(Vector point) { return Color(0.0, 0.0, 0.0); } double Glass::getRefractiveIndex() { return refractiveIndex; } double Glass::getShininess() { return shininess; } ================================================ FILE: src/Glass.h ================================================ #ifndef __GLASS_H__ #define __GLASS_H__ #include "Material.h" class Glass : public Material { private: double refractiveIndex; double shininess; public: Glass(std::istream&); virtual Color getColor(Vector); virtual double getRefractiveIndex(); virtual double getShininess(); }; #endif ================================================ FILE: src/Image.cpp ================================================ /** * Bob Somers * rsomers@calpoly.edu * CPE 473, Winter 2010 * Cal Poly, San Luis Obispo */ #include "Image.h" Image::Image(int width, int height) { _width = width; _height = height; _max = 1.0; _pixmap = (Color*)malloc(sizeof(Color) * _width * _height); } Image::~Image() { free(_pixmap); } void Image::WriteTga(const char *outfile, bool scale_color) { FILE *fp = fopen(outfile, "w"); if (fp == NULL) { perror("ERROR: Image::WriteTga() failed to open file for writing!\n"); exit(EXIT_FAILURE); } // write 24-bit uncompressed targa header // thanks to Paul Bourke (http://local.wasp.uwa.edu.au/~pbourke/dataformats/tga/) putc(0, fp); putc(0, fp); putc(2, fp); // type is uncompressed RGB putc(0, fp); putc(0, fp); putc(0, fp); putc(0, fp); putc(0, fp); putc(0, fp); // x origin, low byte putc(0, fp); // x origin, high byte putc(0, fp); // y origin, low byte putc(0, fp); // y origin, high byte putc(_width & 0xff, fp); // width, low byte putc((_width & 0xff00) >> 8, fp); // width, high byte putc(_height & 0xff, fp); // height, low byte putc((_height & 0xff00) >> 8, fp); // height, high byte putc(24, fp); // 24-bit color depth putc(0, fp); // write the raw pixel data in groups of 3 bytes (BGR order) for (int y = 0; y < _height; y++) { for (int x = 0; x < _width; x++) { // if color scaling is on, scale 0.0 -> _max as a 0 -> 255 unsigned byte unsigned char rbyte, gbyte, bbyte; Color* color = _pixmap + (x * _height + y); if (scale_color) { rbyte = (unsigned char)((color->r / _max) * 255); gbyte = (unsigned char)((color->g / _max) * 255); bbyte = (unsigned char)((color->b / _max) * 255); } else { double r = (color->r > 1.0) ? 1.0 : color->r; double g = (color->g > 1.0) ? 1.0 : color->g; double b = (color->b > 1.0) ? 1.0 : color->b; rbyte = (unsigned char)(r * 255); gbyte = (unsigned char)(g * 255); bbyte = (unsigned char)(b * 255); } putc(bbyte, fp); putc(gbyte, fp); putc(rbyte, fp); } } fclose(fp); } void Image::GenTestPattern() { Color pxl(0.0, 0.0, 0.0, 0.0); int i, j, color; float radius, dist; // draw a rotating color checkerboard (RGB) in a 25x25 pixel grid for (int x = 0; x < _width; x++) { for (int y = 0; y < _height; y++) { i = x / 25; j = y / 25; color = (i + j) % 3; switch (color) { case 0: // red pxl.r = 1.0; pxl.g = 0.0; pxl.b = 0.0; break; case 1: // green pxl.r = 0.0; pxl.g = 1.0; pxl.b = 0.0; break; case 2: // blue pxl.r = 0.0; pxl.g = 0.0; pxl.b = 1.0; break; } pixel(x, y, pxl); } } // draw a black circle in the top left quadrant (centered at (i, j)) pxl.r = 0.0; pxl.g = 0.0; pxl.b = 0.0; i = _width / 4; j = 3 * _height / 4; radius = (((float)_width / 4.0) < ((float)_height / 4.0)) ? (float)_width / 4.0 : (float)_height / 4.0; for (int x = 0; x < _width; x++) { for (int y = 0; y < _height; y++) { dist = sqrtf((float)((x - i) * (x - i)) + (float)((y - j) * (y - j))); if (dist <= (float)radius) { pixel(x, y, pxl); } } } // draw a white circle in the lower right quadrant (centered at (i, j)) pxl.r = 1.0; pxl.g = 1.0; pxl.b = 1.0; i = 3 * _width / 4; j = _height / 4; radius = (((float)_width / 4.0) < ((float)_height / 4.0)) ? (float)_width / 4.0 : (float)_height / 4.0; for (int x = 0; x < _width; x++) { for (int y = 0; y < _height; y++) { dist = sqrtf((float)((x - i) * (x - i)) + (float)((y - j) * (y - j))); if (dist <= (float)radius) { pixel(x, y, pxl); } } } } Color Image::pixel(int x, int y) { if (x < 0 || x > _width - 1 || y < 0 || y > _height - 1) { // catostrophically fail fprintf(stderr, "ERROR: Image::pixel(%d, %d) outside range of the image!\n", x, y); exit(EXIT_FAILURE); } return _pixmap[x * _height + y]; } void Image::pixel(int x, int y, Color pxl) { if (x < 0 || x > _width - 1 || y < 0 || y > _height - 1) { // catostrophically fail fprintf(stderr, "ERROR: Image::pixel(%d, %d, pixel) outside range of the image!\n", x, y); exit(EXIT_FAILURE); } _pixmap[x * _height + y] = pxl; // update the max color if necessary _max = (pxl.r > _max) ? pxl.r : _max; _max = (pxl.g > _max) ? pxl.g : _max; _max = (pxl.b > _max) ? pxl.b : _max; } ================================================ FILE: src/Image.h ================================================ /** * Bob Somers * rsomers@calpoly.edu * CPE 473, Winter 2010 * Cal Poly, San Luis Obispo */ #ifndef __IMAGE_H__ #define __IMAGE_H__ #include #include #include #include "Color.h" class Image { public: Image(int width, int height); ~Image(); // if scale_color is true, the output targa will have its color space scaled // to the global max, otherwise it will be clamped at 1.0 void WriteTga(const char *outfile, bool scale_color = true); void GenTestPattern(); // property accessors Color pixel(int x, int y); void pixel(int x, int y, Color pxl); int width() const { return _width; } int height() const { return _height; } double max() const { return _max; } private: int _width; int _height; Color *_pixmap; double _max; }; #endif ================================================ FILE: src/Intersection.cpp ================================================ #include "Intersection.h" Color Intersection::getColor() const { return endMaterial->getColor(intersection); } ================================================ FILE: src/Intersection.h ================================================ #ifndef __INTERSECTION_H__ #define __INTERSECTION_H__ #include #include "Vector.h" #include "Object.h" #include "Color.h" #include "Ray.h" #include "Material.h" class Intersection { public: Ray ray; bool didIntersect; Vector intersection; double distance; Vector normal; Material* startMaterial; Material* endMaterial; Object* object; Intersection(Ray ray_, Vector intersection_, double distance_, Vector normal_, Material* startMaterial_, Material* endMaterial_, Object* object_) : ray(ray_), didIntersect(true), intersection(intersection_), distance(distance_), normal(normal_), startMaterial(startMaterial_), endMaterial(endMaterial_), object(object_) {} Intersection() : ray(Ray()), didIntersect(false), intersection(Vector()), distance(std::numeric_limits::max()), normal(Vector()), startMaterial(NULL), endMaterial(NULL), object(NULL) {} Color getColor() const; }; #endif ================================================ FILE: src/Light.cpp ================================================ #include "Light.h" /** * Put Light code here! */ ================================================ FILE: src/Light.h ================================================ #ifndef __LIGHT_H__ #define __LIGHT_H__ #include "Vector.h" class Light { public: Vector position; double intensity; Light(Vector position_, double intensity_) : position(position_), intensity(intensity_) {} }; #endif ================================================ FILE: src/Makefile ================================================ CC = g++ CFLAGS = -O3 -Wall -fopenmp ALL_OBJECT_FILES = main.o RayTracer.o Image.o Ray.o Vector.o Sphere.o Triangle.o Intersection.o Object.o Color.o Light.o Camera.o Material.o Glass.o Air.o FlatColor.o ShinyColor.o Wood.o Turbulence.o Marble.o CrissCross.o Checkerboard.o PerlinNoise.o NormalMap.o Boundaries.o BSP.o RayTracer: $(ALL_OBJECT_FILES) $(CC) $(CFLAGS) $(ALL_OBJECT_FILES) -o RayTracer RayTracer.o: RayTracer.cpp RayTracer.h Vector.h Image.h Object.h Sphere.h Triangle.h Intersection.h Light.h $(CC) $(CFLAGS) RayTracer.cpp -c -o RayTracer.o main.o: main.cpp RayTracer.h $(CC) $(CFLAGS) main.cpp -c -o main.o Image.o: Image.cpp Image.h Color.h $(CC) $(CFLAGS) Image.cpp -c -o Image.o Ray.o: Ray.cpp Ray.h Vector.h $(CC) $(CFLAGS) Ray.cpp -c -o Ray.o Vector.o: Vector.cpp Vector.h $(CC) $(CFLAGS) Vector.cpp -c -o Vector.o Sphere.o: Sphere.cpp Sphere.h Ray.h Vector.h Object.h Intersection.h $(CC) $(CFLAGS) Sphere.cpp -c -o Sphere.o Triangle.o: Triangle.cpp Triangle.h Ray.h Vector.h Object.h Intersection.h $(CC) $(CFLAGS) Triangle.cpp -c -o Triangle.o Intersection.o: Intersection.cpp Intersection.h Vector.h $(CC) $(CFLAGS) Intersection.cpp -c -o Intersection.o Object.o: Object.cpp Object.h $(CC) $(CFLAGS) Object.cpp -c -o Object.o Color.o: Color.cpp Color.h $(CC) $(CFLAGS) Color.cpp -c -o Color.o Light.o: Light.cpp Light.h Vector.h $(CC) $(CFLAGS) Light.cpp -c -o Light.o Camera.o: Camera.cpp Camera.h $(CC) $(CFLAGS) Camera.cpp -c -o Camera.o Material.o: Material.cpp Material.h PerlinNoise.o $(CC) $(CFLAGS) Material.cpp -c -o Material.o ShinyColor.o: ShinyColor.cpp ShinyColor.h Material.h Vector.h Color.h $(CC) $(CFLAGS) ShinyColor.cpp -c -o ShinyColor.o Glass.o: Glass.cpp Glass.h Material.h Vector.h Color.h $(CC) $(CFLAGS) Glass.cpp -c -o Glass.o FlatColor.o: FlatColor.cpp FlatColor.h Material.h Vector.h Color.h $(CC) $(CFLAGS) FlatColor.cpp -c -o FlatColor.o Air.o: Air.cpp Air.h Material.h Vector.h Color.h $(CC) $(CFLAGS) Air.cpp -c -o Air.o Wood.o: Wood.cpp Wood.h Material.h Vector.h Color.h $(CC) $(CFLAGS) Wood.cpp -c -o Wood.o Turbulence.o: Turbulence.cpp Turbulence.h Material.h Vector.h Color.h $(CC) $(CFLAGS) Turbulence.cpp -c -o Turbulence.o CrissCross.o: CrissCross.cpp CrissCross.h Material.h Vector.h Color.h $(CC) $(CFLAGS) CrissCross.cpp -c -o CrissCross.o Marble.o: Marble.cpp Marble.h Material.h Vector.h Color.h $(CC) $(CFLAGS) Marble.cpp -c -o Marble.o Checkerboard.o: Checkerboard.cpp Checkerboard.h Material.h Vector.h Color.h $(CC) $(CFLAGS) Checkerboard.cpp -c -o Checkerboard.o NormalMap.o: NormalMap.cpp NormalMap.h Vector.h PerlinNoise.h $(CC) $(CFLAGS) NormalMap.cpp -c -o NormalMap.o PerlinNoise.o: PerlinNoise.h PerlinNoise.cpp $(CC) $(CFLAGS) PerlinNoise.cpp -c -o PerlinNoise.o Boundaries.o: Boundaries.h Boundaries.cpp $(CC) $(CFLAGS) Boundaries.cpp -c -o Boundaries.o BSP.o: BSP.h BSP.cpp $(CC) $(CFLAGS) BSP.cpp -c -o BSP.o clean: rm -rf *.o ================================================ FILE: src/Marble.cpp ================================================ #include "Marble.h" #include "Vector.h" #include "Color.h" Marble::Marble(std::istream& in) { in >> color1.r >> color1.g >> color1.b; in >> color2.r >> color2.g >> color2.b; in >> scale; in >> shininess; in >> reflectivity; } Color Marble::getColor(Vector point) { double x = point.x * scale; double y = point.y * scale; double z = point.z * scale; double noiseCoef = 0; for (int level = 1; level < 10; level ++) { noiseCoef += (1.0f / level) * fabsf(perlin.noise( level * 0.05 * x, level * 0.15 * y, level * 0.05 * z )); } noiseCoef = 0.5f * sinf((x + y) * 0.05f + noiseCoef) + 0.5f; return color1 * noiseCoef + color2 * (1.0f - noiseCoef); } double Marble::getShininess() { return shininess; } double Marble::getReflectivity() { return reflectivity; } ================================================ FILE: src/Marble.h ================================================ #ifndef __MARBLE_H__ #define __MARBLE_H__ #include "Material.h" class Marble : public Material { private: PerlinNoise perlin; Color color1; Color color2; double scale; double shininess; double reflectivity; public: Marble(std::istream&); virtual Color getColor(Vector); virtual double getShininess(); virtual double getReflectivity(); }; #endif ================================================ FILE: src/Material.cpp ================================================ #include "Material.h" #include "NormalMap.h" /** * Put Material code here! */ double Material::getShininess() { return NOT_SHINY; } double Material::getReflectivity() { return NOT_REFLECTIVE; } double Material::getRefractiveIndex() { return NOT_REFRACTIVE; } Vector Material::modifyNormal(const Vector& normal, const Vector& point) { if (normalMap != NULL) { return normalMap->modifyNormal(normal, point); } else { return normal; } } ================================================ FILE: src/Material.h ================================================ #ifndef __MATERIAL_H__ #define __MATERIAL_H__ #define NOT_SHINY -1 #define NOT_REFLECTIVE -1 #define NOT_REFRACTIVE -1 #define AIR_REFRACTIVE_INDEX 1 #include #include #include "Color.h" #include "PerlinNoise.h" class Vector; class Color; class NormalMap; class Material { private: NormalMap* normalMap; public: void setNormalMap(NormalMap* normalMap_) { normalMap = normalMap_; } virtual Color getColor(Vector) = 0; virtual double getShininess(); virtual double getReflectivity(); virtual double getRefractiveIndex(); Vector modifyNormal(const Vector&, const Vector&); }; #endif ================================================ FILE: src/NormalMap.cpp ================================================ #include "NormalMap.h" NormalMap::NormalMap(std::istream& in) { in >> scale; in >> amount; } Vector NormalMap::modifyNormal(const Vector& normal, const Vector& point) { Vector noise; double x = point.x / scale; double y = point.y / scale; double z = point.z / scale; noise.x = (float)(perlin.noise(x, y, z)); noise.y = (float)(perlin.noise(y, z, x)); noise.z = (float)(perlin.noise(z, x, y)); return (normal + noise * amount).normalize(); } ================================================ FILE: src/NormalMap.h ================================================ #ifndef __NORMAL_MAP_H__ #define __NORMAL_MAP_H__ #include #include "Vector.h" #include "PerlinNoise.h" class NormalMap { private: PerlinNoise perlin; double scale; double amount; public: NormalMap(std::istream&); Vector modifyNormal(const Vector&, const Vector&); }; #endif ================================================ FILE: src/Object.cpp ================================================ #include "Object.h" /** * Put Object code here! */ ================================================ FILE: src/Object.h ================================================ #ifndef __OBJECT_H__ #define __OBJECT_H__ class Intersection; class Boundaries; class Ray; /** * Base class for all objects that can be ray traced. */ class Object { public: virtual Intersection intersect(Ray) = 0; virtual Boundaries getBounds() = 0; }; #endif ================================================ FILE: src/PerlinNoise.cpp ================================================ /** * Taken from: http://www.codermind.com/articles/Raytracer-in-C++-Part-III-Textures.html */ #include "PerlinNoise.h" #include PerlinNoise::PerlinNoise() { int permutation[] = { 151,160,137,91,90,15, 131,13,201,95,96,53,194,233,7,225,140,36,103,30,69,142,8,99,37,240,21,10,23, 190,6,148,247,120,234,75,0,26,197,62,94,252,219,203,117,35,11,32,57,177,33, 88,237,149,56,87,174,20,125,136,171,168,68,175,74,165,71,134,139,48,27,166, 77,146,158,231,83,111,229,122,60,211,133,230,220,105,92,41,55,46,245,40,244, 102,143,54, 65,25,63,161, 1,216,80,73,209,76,132,187,208,89,18,169,200,196, 135,130,116,188,159,86,164,100,109,198,173,186,3,64,52,217,226,250,124,123, 5,202,38,147,118,126,255,82,85,212,207,206,59,227,47,16,58,17,182,189,28,42, 23,183,170,213,119,248,152, 2,44,154,163, 70,221,153,101,155,167,43,172,9, 129,22,39,253,19,98,108,110,79,113,224,232,178,185, 112,104,218,246,97,228, 251,34,242,193,238,210,144,12,191,179,162,241,81,51,145,235,249,14,239,107, 49,192,214, 31,181,199,106,157,184, 84,204,176,115,121,50,45,127,4,150,254, 138,236,205,93,222,114,67,29,24,72,243,141,128,195,78,66,215,61,156,180 }; for (int i = 0; i < 256; i++) { p[256+i] = p[i] = permutation[i]; } } double PerlinNoise::fade(double t) { return t * t * t * (t * (t * 6 - 15) + 10); } double PerlinNoise::lerp(double t, double a, double b) { return a + t * (b - a); } double PerlinNoise::grad(int hash, double x, double y, double z) { int h = hash & 15; // CONVERT LO 4 BITS OF HASH CODE double u = h<8||h==12||h==13 ? x : y, // INTO 12 GRADIENT DIRECTIONS. v = h < 4||h == 12||h == 13 ? y : z; return ((h & 1) == 0 ? u : -u) + ((h&2) == 0 ? v : -v); } double PerlinNoise::noise(double x, double y, double z) { int X = (int)floor(x) & 255, // FIND UNIT CUBE THAT Y = (int)floor(y) & 255, // CONTAINS POINT. Z = (int)floor(z) & 255; x -= floor(x); // FIND RELATIVE X,Y,Z y -= floor(y); // OF POINT IN CUBE. z -= floor(z); double u = fade(x), // COMPUTE FADE CURVES v = fade(y), // FOR EACH OF X,Y,Z. w = fade(z); int A = p[X]+Y, // HASH COORDINATES OF AA = p[A]+Z, // THE 8 CUBE CORNERS, AB = p[A+1]+Z, B = p[X+1]+Y, BA = p[B]+Z, BB = p[B+1]+Z; return lerp(w, lerp(v, lerp(u, grad(p[AA], x, y, z), // AND ADD grad(p[BA], x-1, y, z)), // BLENDED lerp(u, grad(p[AB], x, y-1, z), // RESULTS grad(p[BB], x-1, y-1, z))), // FROM 8 lerp(v, lerp(u, grad(p[AA+1], x, y, z-1), // CORNERS grad(p[BA+1], x-1, y, z-1)),// OF CUBE lerp(u, grad(p[AB+1], x, y-1, z-1 ), grad(p[BB+1], x-1, y-1, z-1 )))); } ================================================ FILE: src/PerlinNoise.h ================================================ #ifndef __PERLIN_NOISE_H__ #define __PERLIN_NOISE_H__ /** * Taken from: http://www.codermind.com/articles/Raytracer-in-C++-Part-III-Textures.html */ class PerlinNoise { private: int p[512]; double fade(double); double lerp(double, double, double); double grad(int, double, double, double); public: PerlinNoise(); double noise(double, double, double); }; #endif ================================================ FILE: src/Ray.cpp ================================================ #include "Ray.h" /** * Calculates the fractional direction for the ray to avoid doing it multiple times. */ void Ray::calcFracDirection() { fracDir.x = 1.0f / direction.x; fracDir.y = 1.0f / direction.y; fracDir.z = 1.0f / direction.z; } ================================================ FILE: src/Ray.h ================================================ #ifndef __RAY_H__ #define __RAY_H__ #include #include "Vector.h" class Material; class Ray { public: Vector origin; Vector direction; Vector fracDir; int reflectionsRemaining; Material* material; Ray() : origin(Vector()), direction(Vector()), reflectionsRemaining(-1), material(NULL) { calcFracDirection(); } Ray(Vector origin_, Vector direction_, int reflections, Material* material_) : origin(origin_), reflectionsRemaining(reflections), material(material_) { direction = direction_.normalize(); /* Move intersection slightly forward to avoid intersecting with itself. */ origin += (direction / 1000); calcFracDirection(); } private: void calcFracDirection(); }; #endif ================================================ FILE: src/RayTracer.cpp ================================================ #include #include "RayTracer.h" #include "Image.h" #include "Object.h" #include "Sphere.h" #include "Triangle.h" #include "Intersection.h" #include "Light.h" #include "Air.h" #include "ShinyColor.h" #include "FlatColor.h" #include "Checkerboard.h" #include "Marble.h" #include "Wood.h" #include "Glass.h" #include "NormalMap.h" #include "Turbulence.h" #include "CrissCross.h" #include "BSP.h" using namespace std; RayTracer::RayTracer(int width_, int height_, int maxReflections_, int superSamples_, int depthComplexity_) : width(width_), height(height_), maxReflections(maxReflections_), superSamples(superSamples_), camera(Camera()), imageScale(1), depthComplexity(depthComplexity_), dispersion(5.0f), raysCast(0), startingMaterial(new Air()) {} RayTracer::~RayTracer() { for (vector::iterator itr = objects.begin(); itr < objects.end(); itr++) { delete *itr; } for (vector::iterator itr = lights.begin(); itr < lights.end(); itr++) { delete *itr; } delete startingMaterial; } void RayTracer::traceRays(string fileName) { int columnsCompleted = 0; camera.calculateWUV(); Image image(width, height); // Reset depthComplexity to avoid unnecessary loops. if (dispersion < 0) { depthComplexity = 1; } imageScale = camera.screenWidth / (float)width; #pragma omp parallel for for (int x = 0; x < width; x++) { // Update percent complete. columnsCompleted++; float percentage = columnsCompleted/(float)width * 100; cout << '\r' << (int)percentage << '%'; fflush(stdout); for (int y = 0; y < height; y++) { image.pixel(x, y, castRayForPixel(x, y)); } } cout << "\rDone!" << endl; cout << "Rays cast: " << raysCast << endl; image.WriteTga(fileName.c_str(), false); } Color RayTracer::castRayForPixel(int x, int y) { double rayX = (x - width / 2)/2.0; double rayY = (y - height / 2)/2.0; double pixelWidth = rayX - (x + 1 - width / 2)/2.0; double sampleWidth = pixelWidth / superSamples; double sampleStartX = rayX - pixelWidth/2.0; double sampleStartY = rayY - pixelWidth/2.0; double sampleWeight = 1.0 / (superSamples * superSamples); Color color; for (int x = 0; x < superSamples; x++) { for (int y = 0; y < superSamples; y++) { Vector imagePlanePoint = camera.lookAt - (camera.u * (sampleStartX + (x * sampleWidth)) * imageScale) + (camera.v * (sampleStartY + (y * sampleWidth)) * imageScale); color = color + (castRayAtPoint(imagePlanePoint) * sampleWeight); } } return color; } Color RayTracer::castRayAtPoint(const Vector& point) { Color color; for (int i = 0; i < depthComplexity; i++) { Ray viewRay(camera.position, point - camera.position, maxReflections, startingMaterial); if (depthComplexity > 1) { Vector disturbance( (dispersion / RAND_MAX) * (1.0f * rand()), (dispersion / RAND_MAX) * (1.0f * rand()), 0.0f); viewRay.origin = viewRay.origin + disturbance; viewRay.direction = point - viewRay.origin; viewRay.direction = viewRay.direction.normalize(); } color = color + (castRay(viewRay) * (1 / (float)depthComplexity)); } return color; } Color RayTracer::castRay(const Ray& ray) { raysCast++; Intersection intersection = getClosestIntersection(ray); if (intersection.didIntersect) { return performLighting(intersection); } else { return Color(); } } bool RayTracer::isInShadow(const Ray& ray, double lightDistance) { Intersection intersection = getClosestIntersection(ray); return intersection.didIntersect && intersection.distance < lightDistance; } Intersection RayTracer::getClosestIntersection(const Ray& ray) { // Merely use the BSP for intersections. return bsp->getClosestIntersection(ray); } Color RayTracer::performLighting(const Intersection& intersection) { Color color = intersection.getColor(); Color ambientColor = getAmbientLighting(intersection, color); Color diffuseAndSpecularColor = getDiffuseAndSpecularLighting(intersection, color); Color reflectedColor = getReflectiveRefractiveLighting(intersection); return ambientColor + diffuseAndSpecularColor + reflectedColor; } Color RayTracer::getAmbientLighting(const Intersection& intersection, const Color& color) { return color * 0.2; } Color RayTracer::getDiffuseAndSpecularLighting(const Intersection& intersection, const Color& color) { Color diffuseColor(0.0, 0.0, 0.0); Color specularColor(0.0, 0.0, 0.0); for (vector::iterator itr = lights.begin(); itr < lights.end(); itr++) { Light* light = *itr; Vector lightOffset = light->position - intersection.intersection; double lightDistance = lightOffset.length(); /** * TODO: Be careful about normalizing lightOffset too. */ Vector lightDirection = lightOffset.normalize(); double dotProduct = intersection.normal.dot(lightDirection); /** * Intersection is facing light. */ if (dotProduct >= 0.0f) { Ray shadowRay = Ray(intersection.intersection, lightDirection, 1, intersection.ray.material); if (isInShadow(shadowRay, lightDistance)) { /** * Position is in shadow of another object - continue with other lights. */ continue; } diffuseColor = (diffuseColor + (color * dotProduct)) * light->intensity; specularColor = specularColor + getSpecularLighting(intersection, light); } } return diffuseColor + specularColor; } Color RayTracer::getSpecularLighting(const Intersection& intersection, Light* light) { Color specularColor(0.0, 0.0, 0.0); double shininess = intersection.endMaterial->getShininess(); if (shininess == NOT_SHINY) { /* Don't perform specular lighting on non shiny objects. */ return specularColor; } Vector view = (intersection.ray.origin - intersection.intersection).normalize(); Vector lightOffset = light->position - intersection.intersection; Vector reflected = reflectVector(lightOffset.normalize(), intersection.normal); double dot = view.dot(reflected); if (dot <= 0) { return specularColor; } double specularAmount = pow(dot, shininess) * light->intensity; specularColor.r = specularAmount; specularColor.g = specularAmount; specularColor.b = specularAmount; return specularColor; } Color RayTracer::getReflectiveRefractiveLighting(const Intersection& intersection) { double reflectivity = intersection.endMaterial->getReflectivity(); double startRefractiveIndex = intersection.startMaterial->getRefractiveIndex(); double endRefractiveIndex = intersection.endMaterial->getRefractiveIndex(); int reflectionsRemaining = intersection.ray.reflectionsRemaining; /** * Don't perform lighting if the object is not reflective or refractive or we have * hit our recursion limit. */ if (reflectivity == NOT_REFLECTIVE && endRefractiveIndex == NOT_REFRACTIVE || reflectionsRemaining <= 0) { return Color(); } // Default to exclusively reflective values. double reflectivePercentage = reflectivity; double refractivePercentage = 0; // Refractive index overrides the reflective property. if (endRefractiveIndex != NOT_REFRACTIVE) { reflectivePercentage = getReflectance(intersection.normal, intersection.ray.direction, startRefractiveIndex, endRefractiveIndex); refractivePercentage = 1 - reflectivePercentage; } // No ref{ra,le}ctive properties - bail early. if (refractivePercentage <= 0 && reflectivePercentage <= 0) { return Color(); } Color reflectiveColor; Color refractiveColor; if (reflectivePercentage > 0) { Vector reflected = reflectVector(intersection.ray.origin, intersection.normal); Ray reflectedRay(intersection.intersection, reflected, reflectionsRemaining - 1, intersection.ray.material); reflectiveColor = castRay(reflectedRay) * reflectivePercentage; } if (refractivePercentage > 0) { Vector refracted = refractVector(intersection.normal, intersection.ray.direction, startRefractiveIndex, endRefractiveIndex); Ray refractedRay = Ray(intersection.intersection, refracted, 1, intersection.endMaterial); refractiveColor = castRay(refractedRay) * refractivePercentage; } return reflectiveColor + refractiveColor; } double RayTracer::getReflectance(const Vector& normal, const Vector& incident, double n1, double n2) { double n = n1 / n2; double cosI = -normal.dot(incident); double sinT2 = n * n * (1.0 - cosI * cosI); if (sinT2 > 1.0) { // Total Internal Reflection. return 1.0; } double cosT = sqrt(1.0 - sinT2); double r0rth = (n1 * cosI - n2 * cosT) / (n1 * cosI + n2 * cosT); double rPar = (n2 * cosI - n1 * cosT) / (n2 * cosI + n1 * cosT); return (r0rth * r0rth + rPar * rPar) / 2.0; } Vector RayTracer::refractVector(const Vector& normal, const Vector& incident, double n1, double n2) { double n = n1 / n2; double cosI = -normal.dot(incident); double sinT2 = n * n * (1.0 - cosI * cosI); if (sinT2 > 1.0) { cerr << "Bad refraction vector!" << endl; exit(EXIT_FAILURE); } double cosT = sqrt(1.0 - sinT2); return incident * n + normal * (n * cosI - cosT); } Vector RayTracer::reflectVector(Vector vector, Vector normal) { return normal * 2 * vector.dot(normal) - vector; } void RayTracer::readScene(istream& in) { string type; in >> type; while (in.good()) { if (type[0] == '#') { // Ignore comment lines. getline(in, type); } else if (type.compare("model") == 0) { string model; int size; Vector translate; Material* material; in >> model; in >> size; in >> translate.x >> translate.y >> translate.z; material = readMaterial(in); readModel(model, size, translate, material); } else if (type.compare("material") == 0) { addMaterial(in); } else if (type.compare("triangle") == 0) { Vector v0, v1, v2; Material* material; in >> v0.x >> v0.y >> v0.z; in >> v1.x >> v1.y >> v1.z; in >> v2.x >> v2.y >> v2.z; material = readMaterial(in); addObject(new Triangle(v0, v1, v2, material)); } else if (type.compare("sphere") == 0) { Vector center; double radius; Material* material; in >> center.x >> center.y >> center.z; in >> radius; material = readMaterial(in); addObject(new Sphere(center, radius, material)); } else if (type.compare("light") == 0) { Vector position; double intensity; in >> position.x >> position.y >> position.z; in >> intensity; addLight(new Light(position, intensity)); } else if (type.compare("dispersion") == 0) { in >> dispersion; } else if (type.compare("maxReflections") == 0) { in >> maxReflections; } else if (type.compare("startingMaterial") == 0) { startingMaterial = readMaterial(in); } else if (type.compare("cameraUp") == 0) { in >> camera.up.x; in >> camera.up.y; in >> camera.up.z; } else if (type.compare("cameraPosition") == 0) { in >> camera.position.x; in >> camera.position.y; in >> camera.position.z; } else if (type.compare("cameraLookAt") == 0) { in >> camera.lookAt.x; in >> camera.lookAt.y; in >> camera.lookAt.z; } else if (type.compare("cameraScreenWidth") == 0) { in >> camera.screenWidth; } else { cerr << "Type not found: " << type << endl; exit(EXIT_FAILURE); } in >> type; } // Construct the top level BSP that contains all the objects.. bsp = new BSP(0, 'x', objects); } void RayTracer::readModel(string model, int size, Vector translate, Material* material) { string type; vector vertices; Vector centerOffset; double minX, maxX, minY, maxY, minZ, maxZ; double offX = 0.0, offY = 0.0, offZ = 0.0, scale = 0.0; cout << model; ifstream in; in.open(model.c_str(), ifstream::in); if (in.fail()) { cerr << "Failed opening model file" << endl; exit(EXIT_FAILURE); } in >> type; while (in.good()) { if (type.compare("Vertex") == 0) { int index; Vector v; in >> index; in >> v.x >> v.y >> v.z; minX = min(minX, v.x); minY = min(minY, v.y); minZ = min(minZ, v.z); maxX = max(maxX, v.x); maxY = max(maxY, v.y); maxZ = max(maxZ, v.z); vertices.push_back(v); } else if (type.compare("Face") == 0) { // We are guaranteed to have all Vertices before Faces so we set this // once for the first Face. if (scale == 0.0) { offX = (maxX + minX) / 2; offY = (maxY + minY) / 2; offZ = (maxZ + minZ) / 2; centerOffset = Vector(offX, offY, offZ); double distance = sqrt((maxX - minX) * (maxX - minX) + (maxY - minY) * (maxY - minY) + (maxZ - minZ) * (maxZ - minZ)); if (distance == 0.0) exit(EXIT_FAILURE); scale = size / distance; } int face, v0, v1, v2; in >> face >> v0 >> v1 >> v2; Vector a = (vertices[v0 - 1] - centerOffset) * scale + translate; Vector b = (vertices[v1 - 1] - centerOffset) * scale + translate; Vector c = (vertices[v2 - 1] - centerOffset) * scale + translate; addObject(new Triangle(a, b, c, material)); } in >> type; } in.close(); } /** * Parses the input stream and makes a new Material. */ Material* RayTracer::readMaterial(istream& in) { Material* material; string type; in >> type; if (type.compare("FlatColor") == 0) { material = new FlatColor(in); } else if (type.compare("ShinyColor") == 0) { material = new ShinyColor(in); } else if (type.compare("Checkerboard") == 0) { material = new Checkerboard(in); } else if (type.compare("Glass") == 0) { material = new Glass(in); } else if (type.compare("Turbulence") == 0) { material = new Turbulence(in); } else if (type.compare("Marble") == 0) { material = new Marble(in); } else if (type.compare("CrissCross") == 0) { material = new CrissCross(in); } else if (type.compare("Wood") == 0) { material = new Wood(in); } else if (materials.count(type) > 0) { material = materials[type]; // Stored material already has the NormalMap so return here to avoid // scene parsing problems below. return material; } else { cerr << "Material not found: " << type << endl; exit(EXIT_FAILURE); } material->setNormalMap(readNormalMap(in)); return material; } NormalMap* RayTracer::readNormalMap(istream& in) { string type; in >> type; if (type.compare("null") == 0) { return NULL; } else if (type.compare("NormalMap") == 0) { return new NormalMap(in); } else { cerr << "NormalMap not found: " << type << endl; exit(EXIT_FAILURE); } } void RayTracer::addMaterial(istream& in) { string materialName; in >> materialName; for (string::iterator itr = materialName.begin(); itr < materialName.end(); itr++) { if (isupper(*itr)) { cerr << "Invalid material name: " << materialName << endl; exit(EXIT_FAILURE); } } if (materials.count(materialName) > 0) { cerr << "Duplicate material name: " << materialName << endl; exit(EXIT_FAILURE); } Material* material = readMaterial(in); materials.insert(pair(materialName, material)); } ================================================ FILE: src/RayTracer.h ================================================ #ifndef __RAY_TRACER_H__ #define __RAY_TRACER_H__ #include #include #include #include #include #include "Vector.h" #include "Camera.h" class Ray; class Color; class Intersection; class Object; class Light; class Material; class NormalMap; class BSP; class RayTracer { public: int width; int height; int maxReflections; int superSamples; // Square root of number of samples to use for each pixel. Camera camera; double imageScale; int depthComplexity; double dispersion; unsigned long long raysCast; Material* startingMaterial; BSP* bsp; std::vector objects; std::vector lights; std::map materials; RayTracer(int, int, int, int, int); ~RayTracer(); void addObject(Object* object) { objects.push_back(object); } void addLight(Light* light) { lights.push_back(light); } void traceRays(std::string); void readScene(std::istream&); void readModel(std::string, int size, Vector translate, Material* material); private: Color castRayForPixel(int, int); Color castRayAtPoint(const Vector&); Color castRay(const Ray&); bool isInShadow(const Ray&, double); Intersection getClosestIntersection(const Ray&); Color performLighting(const Intersection&); Color getAmbientLighting(const Intersection&, const Color&); Color getDiffuseAndSpecularLighting(const Intersection&, const Color&); Color getSpecularLighting(const Intersection&, Light*); Color getReflectiveRefractiveLighting(const Intersection&); double getReflectance(const Vector&, const Vector&, double, double); Vector refractVector(const Vector&, const Vector&, double, double); Vector reflectVector(Vector, Vector); Material* readMaterial(std::istream&); NormalMap* readNormalMap(std::istream&); void addMaterial(std::istream&); }; #endif ================================================ FILE: src/ShinyColor.cpp ================================================ #include "ShinyColor.h" #include "Vector.h" #include "Color.h" ShinyColor::ShinyColor(std::istream& in) { in >> color.r >> color.g >> color.b; in >> shininess; in >> reflectivity; } Color ShinyColor::getColor(Vector point) { return color; } double ShinyColor::getShininess() { return shininess; } double ShinyColor::getReflectivity() { return reflectivity; } ================================================ FILE: src/ShinyColor.h ================================================ #ifndef __SHINY_COLOR_H__ #define __SHINY_COLOR_H__ #include "Material.h" class ShinyColor : public Material { public: Color color; double shininess; double reflectivity; ShinyColor(std::istream&); virtual Color getColor(Vector); virtual double getShininess(); virtual double getReflectivity(); }; #endif ================================================ FILE: src/Sphere.cpp ================================================ #include "Sphere.h" #include "Material.h" #include Intersection Sphere::intersect(Ray ray) { Vector deltap = ray.origin - center; double a = ray.direction.dot(ray.direction); double b = deltap.dot(ray.direction) * 2; double c = deltap.dot(deltap) - (radius * radius); double disc = b * b - 4 * a * c; if (disc < 0) { return Intersection(); // No intersection. } disc = sqrt(disc); double q; if (b < 0) { q = (-b - disc) * 0.5; } else { q = (-b + disc) * 0.5; } double r1 = q / a; double r2 = c / q; if (r1 > r2) { double tmp = r1; r1 = r2; r2 = tmp; } double distance = r1; if (distance < 0) { distance = r2; } if (distance < 0 || isnan(distance)) { return Intersection(); // No intersection. } Vector point = ray.origin + (ray.direction * distance); Vector normal = (point - center).normalize(); normal = material->modifyNormal(normal, point); // Normal needs to be flipped if this is a refractive ray. if (ray.direction.dot(normal) > 0) { normal = normal * -1; } return Intersection(ray, point, distance, normal, ray.material, material, this); } Boundaries Sphere::getBounds() { return bounds; } ================================================ FILE: src/Sphere.h ================================================ #ifndef __SPHERE_H__ #define __SPHERE_H__ #include #include "Vector.h" #include "Ray.h" #include "Intersection.h" #include "Object.h" #include "Boundaries.h" class Material; class Sphere : public Object { public: Vector center; double radius; Material* material; Boundaries bounds; Sphere(Vector center_, double radius_, Material* material_) : center(center_), radius(radius_), material(material_) { bounds.min = center - Vector(radius, radius, radius); bounds.max = center + Vector(radius, radius, radius); } virtual Intersection intersect(Ray); virtual Boundaries getBounds(); private: Color getColor(Vector); }; #endif ================================================ FILE: src/Triangle.cpp ================================================ #include #include #include "Triangle.h" #include "Material.h" Intersection Triangle::intersect(Ray ray) { Vector e1, e2, h, s, q, normal; double a, f, u, v, distance; e1 = Vector(v1.x - v0.x, v1.y - v0.y, v1.z - v0.z); e2 = Vector(v2.x - v0.x, v2.y - v0.y, v2.z - v0.z); normal = ((v1 - v0).cross(v2 - v0)).normalize(); h = ray.direction.cross(e2); a = e1.dot(h); if (a > -0.00001 && a < 0.00001) return Intersection(); f = 1 / a; s = Vector(ray.origin.x - v0.x, ray.origin.y - v0.y, ray.origin.z - v0.z); u = f * s.dot(h); if (u < 0.0 || u > 1.0) return Intersection(); q = s.cross(e1); v = f * ray.direction.dot(q); if (v < 0.0 || u + v > 1.0) return Intersection(); distance = f * e2.dot(q); // Ray Intersection if (distance > 0.00001) { Vector point = ray.origin + Vector(distance) * ray.direction; return Intersection(ray, point, distance, normal, ray.material, material, this); } return Intersection(); } Boundaries Triangle::getBounds() { return bounds; } ================================================ FILE: src/Triangle.h ================================================ #ifndef __TRIANGLE_H__ #define __TRIANGLE_H__ #include #include #include "Vector.h" #include "Ray.h" #include "Intersection.h" #include "Object.h" #include "Boundaries.h" class Material; class Triangle : public Object { public: Vector v0, v1, v2; Material* material; Boundaries bounds; Triangle(Vector v0_, Vector v1_, Vector v2_, Material* material_) : v0(v0_), v1(v1_), v2(v2_), material(material_) { bounds.min = Vector(std::min(v0.x, std::min(v1.x, v2.x)), std::min(v0.y, std::min(v1.y, v2.y)), std::min(v0.z, std::min(v1.z, v2.z))); bounds.max = Vector(std::max(v0.x, std::max(v1.x, v2.x)), std::max(v0.y, std::max(v1.y, v2.y)), std::max(v0.z, std::max(v1.z, v2.z))); } virtual Intersection intersect(Ray); virtual Boundaries getBounds(); private: Color getColor(Vector); }; #endif ================================================ FILE: src/Turbulence.cpp ================================================ #include "Turbulence.h" #include "Vector.h" #include "Color.h" Turbulence::Turbulence(std::istream& in) { in >> color1.r >> color1.g >> color1.b; in >> color2.r >> color2.g >> color2.b; in >> scale; in >> shininess; in >> reflectivity; } Color Turbulence::getColor(Vector point) { double x = point.x * scale; double y = point.y * scale; double z = point.z * scale; double noiseCoef = 0; for (int level = 1; level < 10; level ++) { noiseCoef += (1.0f / level) * fabsf(perlin.noise( level * 0.05 * x, level * 0.05 * y, level * 0.05 * z )); } return color1 * noiseCoef + color2 * (1.0f - noiseCoef); } double Turbulence::getShininess() { return shininess; } double Turbulence::getReflectivity() { return reflectivity; } ================================================ FILE: src/Turbulence.h ================================================ #ifndef __TURBULENCE_H__ #define __TURBULENCE_H__ #include "Material.h" class Turbulence : public Material { private: PerlinNoise perlin; Color color1; Color color2; double scale; double shininess; double reflectivity; public: Turbulence(std::istream&); virtual Color getColor(Vector); virtual double getShininess(); virtual double getReflectivity(); }; #endif ================================================ FILE: src/Vector.cpp ================================================ #include #include "Vector.h" Vector Vector::normalize() { return (*this) /= this->length(); } Vector Vector::cross(Vector const & v) const { return Vector(y*v.z - v.y*z, v.x*z - x*v.z, x*v.y - v.x*y); } double Vector::dot(Vector const & v) const { return x*v.x + y*v.y + z*v.z; } double Vector::length() const { return sqrtf(x*x + y*y + z*z); } Vector Vector::operator + (Vector const & v) const { return Vector(x+v.x, y+v.y, z+v.z); } Vector & Vector::operator += (Vector const & v) { x += v.x; y += v.y; z += v.z; return * this; } Vector Vector::operator - (Vector const & v) const { return Vector(x-v.x, y-v.y, z-v.z); } Vector & Vector::operator -= (Vector const & v) { x -= v.x; y -= v.y; z -= v.z; return * this; } Vector Vector::operator * (Vector const & v) const { return Vector(x*v.x, y*v.y, z*v.z); } Vector & Vector::operator *= (Vector const & v) { x *= v.x; y *= v.y; z *= v.z; return * this; } Vector Vector::operator / (Vector const & v) const { return Vector(x/v.x, y/v.y, z/v.z); } Vector & Vector::operator /= (Vector const & v) { x /= v.x; y /= v.y; z /= v.z; return * this; } Vector Vector::operator * (double const s) const { return Vector(x*s, y*s, z*s); } Vector & Vector::operator *= (double const s) { x *= s; y *= s; z *= s; return * this; } Vector Vector::operator / (double const s) const { return Vector(x/s, y/s, z/s); } Vector & Vector::operator /= (double const s) { x /= s; y /= s; z /= s; return * this; } ================================================ FILE: src/Vector.h ================================================ #ifndef __VECTOR_H__ #define __VECTOR_H__ class Vector { public: double x, y, z; Vector() : x(0), y(0), z(0) {} Vector(double in) : x(in), y(in), z(in) {} Vector(double in_x, double in_y, double in_z) : x(in_x), y(in_y), z(in_z) {} Vector normalize(); Vector cross(Vector const & v) const; double dot(Vector const & v) const; double length() const; Vector operator + (Vector const & v) const; Vector & operator += (Vector const & v); Vector operator - (Vector const & v) const; Vector & operator -= (Vector const & v); Vector operator * (Vector const & v) const; Vector & operator *= (Vector const & v); Vector operator / (Vector const & v) const; Vector & operator /= (Vector const & v); Vector operator * (double const s) const; Vector & operator *= (double const s); Vector operator / (double const s) const; Vector & operator /= (double const s); }; #endif ================================================ FILE: src/Wood.cpp ================================================ #include "Wood.h" #include "Vector.h" #include "Color.h" Wood::Wood(std::istream& in) { in >> color1.r >> color1.g >> color1.b; in >> color2.r >> color2.g >> color2.b; in >> scale; in >> shininess; in >> reflectivity; } Color Wood::getColor(Vector point) { double x = point.x * scale; double y = point.y * scale; double z = point.z * scale; double grain = perlin.noise(x, y, z) * 5; grain = grain - (int)grain; return color1 * grain + color2 * (1.0f - grain); } double Wood::getShininess() { return shininess; } double Wood::getReflectivity() { return reflectivity; } ================================================ FILE: src/Wood.h ================================================ #ifndef __WOOD_H__ #define __WOOD_H__ #include "Material.h" class Wood : public Material { private: PerlinNoise perlin; Color color1; Color color2; double scale; double shininess; double reflectivity; public: Wood(std::istream&); virtual Color getColor(Vector); virtual double getShininess(); virtual double getReflectivity(); }; #endif ================================================ FILE: src/main.cpp ================================================ #include #include #include #include #include #include "RayTracer.h" using namespace std; /** * RayTracer main. */ int main(int argc, char** argv) { if (argc < 4) { cerr << "Usage: " << argv[0] << " sceneFile superSamples " << "depthComplexity [outFile]" << endl; exit(EXIT_FAILURE); } srand((unsigned)time(0)); int maxReflections = 10; int superSamples = atoi(argv[2]); int depthComplexity = atoi(argv[3]); RayTracer rayTracer(1920, 1080, maxReflections, superSamples, depthComplexity); if (strcmp(argv[1], "-") == 0) { rayTracer.readScene(cin); } else { char* inFile = argv[1]; ifstream inFileStream; inFileStream.open(inFile, ifstream::in); if (inFileStream.fail()) { cerr << "Failed opening file" << endl; exit(EXIT_FAILURE); } rayTracer.readScene(inFileStream); inFileStream.close(); } string outFile; if (argc > 4) { outFile = argv[4]; } else { cerr << "No outFile specified - writing to out.tga" << endl; outFile = "out.tga"; } rayTracer.traceRays(outFile); exit(EXIT_SUCCESS); } ================================================ FILE: src/runAndOpenAll.sh ================================================ #!/bin/bash # Runs RayTracer on every scene file in scenes and opens the resulting images. make SUPER_SAMPLES=1 DEPTH_COMPLEXITY=5 cd ../scenes scenes=`ls *.scn` for scene in $scenes do sceneName=`echo $scene | sed 's/\..*//'` outFile=$sceneName outFile+="_$SUPER_SAMPLES" outFile+="_$DEPTH_COMPLEXITY" outFile+=".tga" ../src/RayTracer $scene $SUPER_SAMPLES $DEPTH_COMPLEXITY $outFile echo $outFile # So you can easily get output files in a list. done